From f53d3eaad43278d2c124cbf41bf7fa697ab964b6 Mon Sep 17 00:00:00 2001 From: Mark Mandel Date: Tue, 1 Jan 2019 12:42:52 +1100 Subject: [PATCH] Website for Agones This is a new static site for Agones, as well as the tools to enable people to write documentation for new features, without it displaying until the feature is released. Integration with cloudbuild for previews is also build in (preview is the current documentation + all the documentation for the new features), as well as a link checker that runs as part of the test suite. This also brings into the codebase all the redirect code for go-get as well as the chart redirects as well. Closes #410 --- .gitignore | 1 + CONTRIBUTING.md | 2 + README.md | 73 +- agones-logo.svg | 31 + build/Makefile | 12 +- build/build-image/Dockerfile | 20 +- build/includes/website.mk | 68 + cloudbuild.yaml | 24 +- docs/governance/templates/release_issue.md | 24 +- docs/videos_presentations.md | 11 - examples/autoscaler-webhook/README.md | 2 +- examples/cpp-simple/README.md | 3 +- examples/rust-simple/README.md | 2 +- examples/simple-udp/README.md | 2 +- install/helm/agones/README.md | 168 +- sdks/cpp/README.md | 145 +- sdks/rust/README.md | 45 +- site/.gcloudignore | 20 + site/.gitignore | 6 + site/app.yaml | 30 + site/assets/icons/logo.svg | 38 + site/assets/scss/_variables_project.scss | 6 + site/config.toml | 144 + site/content/en/_index.html | 69 + site/content/en/blog/_index.md | 13 + site/content/en/blog/news/_index.md | 8 + site/content/en/blog/news/new-agones-site.md | 26 + site/content/en/blog/releases/0.7.0.md | 54 + site/content/en/blog/releases/_index.md | 8 + site/content/en/community/_index.md | 8 + site/content/en/docs/Advanced/_index.md | 8 + .../en/docs/Advanced/limiting-resources.md | 14 +- .../Advanced/scheduling-and-autoscaling.md | 46 +- site/content/en/docs/Contribute/_index.md | 69 + site/content/en/docs/Examples/_index.md | 18 + .../content/en/docs/Getting Started/_index.md | 11 + .../en/docs/Getting Started/create-fleet.md | 77 +- .../Getting Started/create-fleetautoscaler.md | 518 +- .../docs/Getting Started/create-gameserver.md | 25 +- .../create-webhook-fleetautoscaler.md | 88 +- .../edit-first-gameserver-go.md | 23 +- .../en/docs/Guides/Client SDKs/_index.md | 64 +- .../content/en/docs/Guides/Client SDKs/cpp.md | 155 + .../en/docs/Guides/Client SDKs/rest.md | 15 +- .../en/docs/Guides/Client SDKs/rust.md | 60 + site/content/en/docs/Guides/_index.md | 11 + .../content/en/docs/Guides/access-api.md | 17 +- .../content/en/docs/Guides/health-checking.md | 20 +- .../content/en/docs/Guides}/metrics.md | 47 +- .../content/en/docs/Guides/ping-service.md | 23 +- .../en/docs/Guides}/troubleshooting.md | 25 +- .../content/en/docs/Installation/_index.md | 102 +- .../en/docs/Installation}/cloud-shell.png | Bin site/content/en/docs/Installation/helm.md | 181 + site/content/en/docs/Overview/_index.md | 54 + site/content/en/docs/Reference/_index.md | 10 + .../content/en/docs/Reference/fleet.md | 38 +- .../en/docs/Reference/fleetautoscaler.md | 28 +- .../content/en/docs/Reference/gameserver.md | 24 +- .../en/docs/Third Party Content/_index.md | 12 + .../videos-and-presentations.md | 28 + site/content/en/docs/Tutorials/_index.md | 8 + .../en/docs/Tutorials/allocator-service-go.md | 30 +- site/content/en/docs/_index.md | 24 + site/content/en/featured-background.jpg | Bin 0 -> 909346 bytes site/content/en/search.md | 6 + site/credits | 2 + site/handler.go | 189 + site/handler_test.go | 288 + site/layouts/partials/community_links.html | 29 + site/layouts/partials/favicons.html | 7 + site/layouts/shortcodes/feature.html | 6 + site/layouts/shortcodes/ghlink.html | 2 + site/layouts/shortcodes/pagelist.html | 13 + site/layouts/shortcodes/release-branch.html | 1 + site/layouts/shortcodes/release-version.html | 2 + site/layouts/shortcodes/youtube.html | 2 + site/main.go | 57 + .../static/diagrams}/gameserver-states.dot | 0 .../static/diagrams}/gameserver-states.png | Bin site/static/favicons/_head.html | 5 + .../favicons/apple-touch-icon-180x180.png | Bin 0 -> 5793 bytes site/static/favicons/browserconfig.xml | 12 + site/static/favicons/favicon-16x16.png | Bin 0 -> 496 bytes site/static/favicons/favicon-32x32.png | Bin 0 -> 934 bytes site/static/favicons/favicon.ico | Bin 0 -> 1150 bytes site/static/favicons/pwa-192x192.png | Bin 0 -> 6529 bytes site/static/favicons/pwa-512x512.png | Bin 0 -> 16906 bytes site/static/favicons/tile150x150.png | Bin 0 -> 8468 bytes site/static/favicons/tile310x150.png | Bin 0 -> 10525 bytes site/static/favicons/tile310x310.png | Bin 0 -> 18214 bytes site/static/favicons/tile70x70.png | Bin 0 -> 3398 bytes .../images}/grafana-dashboard-autoscalers.png | Bin .../images}/grafana-dashboard-controller.png | Bin site/themes/docsy/.gitignore | 6 + site/themes/docsy/CONTRIBUTING.md | 28 + site/themes/docsy/LICENSE | 201 + site/themes/docsy/README.md | 31 + site/themes/docsy/assets/icons/logo.svg | 3 + site/themes/docsy/assets/js/base.js | 65 + site/themes/docsy/assets/js/search.js | 43 + site/themes/docsy/assets/scss/_alerts.scss | 20 + site/themes/docsy/assets/scss/_blog.scss | 10 + site/themes/docsy/assets/scss/_boxes.scss | 99 + .../themes/docsy/assets/scss/_breadcrumb.scss | 7 + site/themes/docsy/assets/scss/_buttons.scss | 15 + site/themes/docsy/assets/scss/_code.scss | 52 + site/themes/docsy/assets/scss/_colors.scss | 41 + site/themes/docsy/assets/scss/_content.scss | 82 + .../docsy/assets/scss/_main-container.scss | 34 + site/themes/docsy/assets/scss/_nav.scss | 98 + site/themes/docsy/assets/scss/_search.scss | 16 + .../docsy/assets/scss/_sidebar-toc.scss | 57 + .../docsy/assets/scss/_sidebar-tree.scss | 132 + site/themes/docsy/assets/scss/_variables.scss | 131 + .../docsy/assets/scss/_variables_project.scss | 7 + .../docsy/assets/scss/blocks/_blocks.scss | 7 + .../docsy/assets/scss/blocks/_cover.scss | 15 + site/themes/docsy/assets/scss/main.scss | 56 + .../docsy/assets/scss/support/_functions.scss | 21 + .../docsy/assets/scss/support/_mixins.scss | 49 + .../docsy/assets/scss/support/_utilities.scss | 82 + .../assets/vendor/Font-Awesome/CHANGELOG.md | 583 + .../vendor/Font-Awesome/CODE_OF_CONDUCT.md | 74 + .../vendor/Font-Awesome/CONTRIBUTING.md | 25 + .../assets/vendor/Font-Awesome/LICENSE.txt | 34 + .../assets/vendor/Font-Awesome/README.md | 135 + .../assets/vendor/Font-Awesome/UPGRADING.md | 163 + .../advanced-options/metadata/categories.yml | 1501 + .../advanced-options/metadata/icons.json | 37840 ++++++++++++++++ .../advanced-options/metadata/icons.yml | 13048 ++++++ .../advanced-options/metadata/shims.json | 2307 + .../advanced-options/metadata/shims.yml | 295 + .../advanced-options/metadata/sponsors.yml | 566 + .../advanced-options/raw-svg/brands/500px.svg | 1 + .../raw-svg/brands/accessible-icon.svg | 1 + .../raw-svg/brands/accusoft.svg | 1 + .../advanced-options/raw-svg/brands/adn.svg | 1 + .../raw-svg/brands/adversal.svg | 1 + .../raw-svg/brands/affiliatetheme.svg | 1 + .../raw-svg/brands/algolia.svg | 1 + .../raw-svg/brands/amazon-pay.svg | 1 + .../raw-svg/brands/amazon.svg | 1 + .../raw-svg/brands/amilia.svg | 1 + .../raw-svg/brands/android.svg | 1 + .../raw-svg/brands/angellist.svg | 1 + .../raw-svg/brands/angrycreative.svg | 1 + .../raw-svg/brands/angular.svg | 1 + .../raw-svg/brands/app-store-ios.svg | 1 + .../raw-svg/brands/app-store.svg | 1 + .../advanced-options/raw-svg/brands/apper.svg | 1 + .../raw-svg/brands/apple-pay.svg | 1 + .../advanced-options/raw-svg/brands/apple.svg | 1 + .../raw-svg/brands/asymmetrik.svg | 1 + .../raw-svg/brands/audible.svg | 1 + .../raw-svg/brands/autoprefixer.svg | 1 + .../raw-svg/brands/avianex.svg | 1 + .../raw-svg/brands/aviato.svg | 1 + .../advanced-options/raw-svg/brands/aws.svg | 1 + .../raw-svg/brands/bandcamp.svg | 1 + .../raw-svg/brands/behance-square.svg | 1 + .../raw-svg/brands/behance.svg | 1 + .../raw-svg/brands/bimobject.svg | 1 + .../raw-svg/brands/bitbucket.svg | 1 + .../raw-svg/brands/bitcoin.svg | 1 + .../advanced-options/raw-svg/brands/bity.svg | 1 + .../raw-svg/brands/black-tie.svg | 1 + .../raw-svg/brands/blackberry.svg | 1 + .../raw-svg/brands/blogger-b.svg | 1 + .../raw-svg/brands/blogger.svg | 1 + .../raw-svg/brands/bluetooth-b.svg | 1 + .../raw-svg/brands/bluetooth.svg | 1 + .../advanced-options/raw-svg/brands/btc.svg | 1 + .../raw-svg/brands/buromobelexperte.svg | 1 + .../raw-svg/brands/buysellads.svg | 1 + .../raw-svg/brands/cc-amazon-pay.svg | 1 + .../raw-svg/brands/cc-amex.svg | 1 + .../raw-svg/brands/cc-apple-pay.svg | 1 + .../raw-svg/brands/cc-diners-club.svg | 1 + .../raw-svg/brands/cc-discover.svg | 1 + .../raw-svg/brands/cc-jcb.svg | 1 + .../raw-svg/brands/cc-mastercard.svg | 1 + .../raw-svg/brands/cc-paypal.svg | 1 + .../raw-svg/brands/cc-stripe.svg | 1 + .../raw-svg/brands/cc-visa.svg | 1 + .../raw-svg/brands/centercode.svg | 1 + .../raw-svg/brands/chrome.svg | 1 + .../raw-svg/brands/cloudscale.svg | 1 + .../raw-svg/brands/cloudsmith.svg | 1 + .../raw-svg/brands/cloudversify.svg | 1 + .../raw-svg/brands/codepen.svg | 1 + .../raw-svg/brands/codiepie.svg | 1 + .../raw-svg/brands/connectdevelop.svg | 1 + .../raw-svg/brands/contao.svg | 1 + .../raw-svg/brands/cpanel.svg | 1 + .../raw-svg/brands/creative-commons-by.svg | 1 + .../raw-svg/brands/creative-commons-nc-eu.svg | 1 + .../raw-svg/brands/creative-commons-nc-jp.svg | 1 + .../raw-svg/brands/creative-commons-nc.svg | 1 + .../raw-svg/brands/creative-commons-nd.svg | 1 + .../brands/creative-commons-pd-alt.svg | 1 + .../raw-svg/brands/creative-commons-pd.svg | 1 + .../raw-svg/brands/creative-commons-remix.svg | 1 + .../raw-svg/brands/creative-commons-sa.svg | 1 + .../brands/creative-commons-sampling-plus.svg | 1 + .../brands/creative-commons-sampling.svg | 1 + .../raw-svg/brands/creative-commons-share.svg | 1 + .../raw-svg/brands/creative-commons.svg | 1 + .../raw-svg/brands/css3-alt.svg | 1 + .../advanced-options/raw-svg/brands/css3.svg | 1 + .../raw-svg/brands/cuttlefish.svg | 1 + .../raw-svg/brands/d-and-d.svg | 1 + .../raw-svg/brands/dashcube.svg | 1 + .../raw-svg/brands/delicious.svg | 1 + .../raw-svg/brands/deploydog.svg | 1 + .../raw-svg/brands/deskpro.svg | 1 + .../raw-svg/brands/deviantart.svg | 1 + .../advanced-options/raw-svg/brands/digg.svg | 1 + .../raw-svg/brands/digital-ocean.svg | 1 + .../raw-svg/brands/discord.svg | 1 + .../raw-svg/brands/discourse.svg | 1 + .../raw-svg/brands/dochub.svg | 1 + .../raw-svg/brands/docker.svg | 1 + .../raw-svg/brands/draft2digital.svg | 1 + .../raw-svg/brands/dribbble-square.svg | 1 + .../raw-svg/brands/dribbble.svg | 1 + .../raw-svg/brands/dropbox.svg | 1 + .../raw-svg/brands/drupal.svg | 1 + .../raw-svg/brands/dyalog.svg | 1 + .../raw-svg/brands/earlybirds.svg | 1 + .../advanced-options/raw-svg/brands/ebay.svg | 1 + .../advanced-options/raw-svg/brands/edge.svg | 1 + .../raw-svg/brands/elementor.svg | 1 + .../advanced-options/raw-svg/brands/ember.svg | 1 + .../raw-svg/brands/empire.svg | 1 + .../raw-svg/brands/envira.svg | 1 + .../raw-svg/brands/erlang.svg | 1 + .../raw-svg/brands/ethereum.svg | 1 + .../advanced-options/raw-svg/brands/etsy.svg | 1 + .../raw-svg/brands/expeditedssl.svg | 1 + .../raw-svg/brands/facebook-f.svg | 1 + .../raw-svg/brands/facebook-messenger.svg | 1 + .../raw-svg/brands/facebook-square.svg | 1 + .../raw-svg/brands/facebook.svg | 1 + .../raw-svg/brands/firefox.svg | 1 + .../raw-svg/brands/first-order-alt.svg | 1 + .../raw-svg/brands/first-order.svg | 1 + .../raw-svg/brands/firstdraft.svg | 1 + .../raw-svg/brands/flickr.svg | 1 + .../raw-svg/brands/flipboard.svg | 1 + .../advanced-options/raw-svg/brands/fly.svg | 1 + .../raw-svg/brands/font-awesome-alt.svg | 1 + .../raw-svg/brands/font-awesome-flag.svg | 1 + .../raw-svg/brands/font-awesome-logo-full.svg | 1 + .../raw-svg/brands/font-awesome.svg | 1 + .../raw-svg/brands/fonticons-fi.svg | 1 + .../raw-svg/brands/fonticons.svg | 1 + .../raw-svg/brands/fort-awesome-alt.svg | 1 + .../raw-svg/brands/fort-awesome.svg | 1 + .../raw-svg/brands/forumbee.svg | 1 + .../raw-svg/brands/foursquare.svg | 1 + .../raw-svg/brands/free-code-camp.svg | 1 + .../raw-svg/brands/freebsd.svg | 1 + .../raw-svg/brands/fulcrum.svg | 1 + .../raw-svg/brands/galactic-republic.svg | 1 + .../raw-svg/brands/galactic-senate.svg | 1 + .../raw-svg/brands/get-pocket.svg | 1 + .../raw-svg/brands/gg-circle.svg | 1 + .../advanced-options/raw-svg/brands/gg.svg | 1 + .../raw-svg/brands/git-square.svg | 1 + .../advanced-options/raw-svg/brands/git.svg | 1 + .../raw-svg/brands/github-alt.svg | 1 + .../raw-svg/brands/github-square.svg | 1 + .../raw-svg/brands/github.svg | 1 + .../raw-svg/brands/gitkraken.svg | 1 + .../raw-svg/brands/gitlab.svg | 1 + .../raw-svg/brands/gitter.svg | 1 + .../raw-svg/brands/glide-g.svg | 1 + .../advanced-options/raw-svg/brands/glide.svg | 1 + .../raw-svg/brands/gofore.svg | 1 + .../raw-svg/brands/goodreads-g.svg | 1 + .../raw-svg/brands/goodreads.svg | 1 + .../raw-svg/brands/google-drive.svg | 1 + .../raw-svg/brands/google-play.svg | 1 + .../raw-svg/brands/google-plus-g.svg | 1 + .../raw-svg/brands/google-plus-square.svg | 1 + .../raw-svg/brands/google-plus.svg | 1 + .../raw-svg/brands/google-wallet.svg | 1 + .../raw-svg/brands/google.svg | 1 + .../raw-svg/brands/gratipay.svg | 1 + .../advanced-options/raw-svg/brands/grav.svg | 1 + .../raw-svg/brands/gripfire.svg | 1 + .../advanced-options/raw-svg/brands/grunt.svg | 1 + .../advanced-options/raw-svg/brands/gulp.svg | 1 + .../raw-svg/brands/hacker-news-square.svg | 1 + .../raw-svg/brands/hacker-news.svg | 1 + .../advanced-options/raw-svg/brands/hips.svg | 1 + .../raw-svg/brands/hire-a-helper.svg | 1 + .../advanced-options/raw-svg/brands/hooli.svg | 1 + .../raw-svg/brands/hornbill.svg | 1 + .../raw-svg/brands/hotjar.svg | 1 + .../advanced-options/raw-svg/brands/houzz.svg | 1 + .../advanced-options/raw-svg/brands/html5.svg | 1 + .../raw-svg/brands/hubspot.svg | 1 + .../advanced-options/raw-svg/brands/imdb.svg | 1 + .../raw-svg/brands/instagram.svg | 1 + .../raw-svg/brands/internet-explorer.svg | 1 + .../raw-svg/brands/ioxhost.svg | 1 + .../raw-svg/brands/itunes-note.svg | 1 + .../raw-svg/brands/itunes.svg | 1 + .../advanced-options/raw-svg/brands/java.svg | 1 + .../raw-svg/brands/jedi-order.svg | 1 + .../raw-svg/brands/jenkins.svg | 1 + .../advanced-options/raw-svg/brands/joget.svg | 1 + .../raw-svg/brands/joomla.svg | 1 + .../raw-svg/brands/js-square.svg | 1 + .../advanced-options/raw-svg/brands/js.svg | 1 + .../raw-svg/brands/jsfiddle.svg | 1 + .../raw-svg/brands/keybase.svg | 1 + .../raw-svg/brands/keycdn.svg | 1 + .../raw-svg/brands/kickstarter-k.svg | 1 + .../raw-svg/brands/kickstarter.svg | 1 + .../raw-svg/brands/korvue.svg | 1 + .../raw-svg/brands/laravel.svg | 1 + .../raw-svg/brands/lastfm-square.svg | 1 + .../raw-svg/brands/lastfm.svg | 1 + .../raw-svg/brands/leanpub.svg | 1 + .../advanced-options/raw-svg/brands/less.svg | 1 + .../advanced-options/raw-svg/brands/line.svg | 1 + .../raw-svg/brands/linkedin-in.svg | 1 + .../raw-svg/brands/linkedin.svg | 1 + .../raw-svg/brands/linode.svg | 1 + .../advanced-options/raw-svg/brands/linux.svg | 1 + .../advanced-options/raw-svg/brands/lyft.svg | 1 + .../raw-svg/brands/magento.svg | 1 + .../raw-svg/brands/mailchimp.svg | 1 + .../raw-svg/brands/mandalorian.svg | 1 + .../raw-svg/brands/mastodon.svg | 1 + .../raw-svg/brands/maxcdn.svg | 1 + .../raw-svg/brands/medapps.svg | 1 + .../raw-svg/brands/medium-m.svg | 1 + .../raw-svg/brands/medium.svg | 1 + .../advanced-options/raw-svg/brands/medrt.svg | 1 + .../raw-svg/brands/meetup.svg | 1 + .../raw-svg/brands/megaport.svg | 1 + .../raw-svg/brands/microsoft.svg | 1 + .../advanced-options/raw-svg/brands/mix.svg | 1 + .../raw-svg/brands/mixcloud.svg | 1 + .../raw-svg/brands/mizuni.svg | 1 + .../advanced-options/raw-svg/brands/modx.svg | 1 + .../raw-svg/brands/monero.svg | 1 + .../raw-svg/brands/napster.svg | 1 + .../raw-svg/brands/nimblr.svg | 1 + .../raw-svg/brands/nintendo-switch.svg | 1 + .../raw-svg/brands/node-js.svg | 1 + .../advanced-options/raw-svg/brands/node.svg | 1 + .../advanced-options/raw-svg/brands/npm.svg | 1 + .../advanced-options/raw-svg/brands/ns8.svg | 1 + .../raw-svg/brands/nutritionix.svg | 1 + .../raw-svg/brands/odnoklassniki-square.svg | 1 + .../raw-svg/brands/odnoklassniki.svg | 1 + .../raw-svg/brands/old-republic.svg | 1 + .../raw-svg/brands/opencart.svg | 1 + .../raw-svg/brands/openid.svg | 1 + .../advanced-options/raw-svg/brands/opera.svg | 1 + .../raw-svg/brands/optin-monster.svg | 1 + .../advanced-options/raw-svg/brands/osi.svg | 1 + .../advanced-options/raw-svg/brands/page4.svg | 1 + .../raw-svg/brands/pagelines.svg | 1 + .../raw-svg/brands/palfed.svg | 1 + .../raw-svg/brands/patreon.svg | 1 + .../raw-svg/brands/paypal.svg | 1 + .../raw-svg/brands/periscope.svg | 1 + .../raw-svg/brands/phabricator.svg | 1 + .../raw-svg/brands/phoenix-framework.svg | 1 + .../raw-svg/brands/phoenix-squadron.svg | 1 + .../advanced-options/raw-svg/brands/php.svg | 1 + .../raw-svg/brands/pied-piper-alt.svg | 1 + .../raw-svg/brands/pied-piper-hat.svg | 1 + .../raw-svg/brands/pied-piper-pp.svg | 1 + .../raw-svg/brands/pied-piper.svg | 1 + .../raw-svg/brands/pinterest-p.svg | 1 + .../raw-svg/brands/pinterest-square.svg | 1 + .../raw-svg/brands/pinterest.svg | 1 + .../raw-svg/brands/playstation.svg | 1 + .../raw-svg/brands/product-hunt.svg | 1 + .../raw-svg/brands/pushed.svg | 1 + .../raw-svg/brands/python.svg | 1 + .../advanced-options/raw-svg/brands/qq.svg | 1 + .../raw-svg/brands/quinscape.svg | 1 + .../advanced-options/raw-svg/brands/quora.svg | 1 + .../raw-svg/brands/r-project.svg | 1 + .../advanced-options/raw-svg/brands/r.svg | 1 + .../raw-svg/brands/ravelry.svg | 1 + .../advanced-options/raw-svg/brands/react.svg | 1 + .../raw-svg/brands/readme.svg | 1 + .../advanced-options/raw-svg/brands/rebel.svg | 1 + .../raw-svg/brands/red-river.svg | 1 + .../raw-svg/brands/reddit-alien.svg | 1 + .../raw-svg/brands/reddit-square.svg | 1 + .../raw-svg/brands/reddit.svg | 1 + .../raw-svg/brands/rendact.svg | 1 + .../raw-svg/brands/renren.svg | 1 + .../raw-svg/brands/replyd.svg | 1 + .../raw-svg/brands/researchgate.svg | 1 + .../raw-svg/brands/resolving.svg | 1 + .../advanced-options/raw-svg/brands/rev.svg | 1 + .../raw-svg/brands/rocketchat.svg | 1 + .../raw-svg/brands/rockrms.svg | 1 + .../raw-svg/brands/safari.svg | 1 + .../advanced-options/raw-svg/brands/sass.svg | 1 + .../raw-svg/brands/schlix.svg | 1 + .../raw-svg/brands/scribd.svg | 1 + .../raw-svg/brands/searchengin.svg | 1 + .../raw-svg/brands/sellcast.svg | 1 + .../raw-svg/brands/sellsy.svg | 1 + .../raw-svg/brands/servicestack.svg | 1 + .../raw-svg/brands/shirtsinbulk.svg | 1 + .../raw-svg/brands/shopware.svg | 1 + .../raw-svg/brands/simplybuilt.svg | 1 + .../raw-svg/brands/sistrix.svg | 1 + .../advanced-options/raw-svg/brands/sith.svg | 1 + .../raw-svg/brands/skyatlas.svg | 1 + .../advanced-options/raw-svg/brands/skype.svg | 1 + .../raw-svg/brands/slack-hash.svg | 1 + .../advanced-options/raw-svg/brands/slack.svg | 1 + .../raw-svg/brands/slideshare.svg | 1 + .../raw-svg/brands/snapchat-ghost.svg | 1 + .../raw-svg/brands/snapchat-square.svg | 1 + .../raw-svg/brands/snapchat.svg | 1 + .../raw-svg/brands/soundcloud.svg | 1 + .../raw-svg/brands/speakap.svg | 1 + .../raw-svg/brands/spotify.svg | 1 + .../raw-svg/brands/squarespace.svg | 1 + .../raw-svg/brands/stack-exchange.svg | 1 + .../raw-svg/brands/stack-overflow.svg | 1 + .../raw-svg/brands/staylinked.svg | 1 + .../raw-svg/brands/steam-square.svg | 1 + .../raw-svg/brands/steam-symbol.svg | 1 + .../advanced-options/raw-svg/brands/steam.svg | 1 + .../raw-svg/brands/sticker-mule.svg | 1 + .../raw-svg/brands/strava.svg | 1 + .../raw-svg/brands/stripe-s.svg | 1 + .../raw-svg/brands/stripe.svg | 1 + .../raw-svg/brands/studiovinari.svg | 1 + .../raw-svg/brands/stumbleupon-circle.svg | 1 + .../raw-svg/brands/stumbleupon.svg | 1 + .../raw-svg/brands/superpowers.svg | 1 + .../raw-svg/brands/supple.svg | 1 + .../raw-svg/brands/teamspeak.svg | 1 + .../raw-svg/brands/telegram-plane.svg | 1 + .../raw-svg/brands/telegram.svg | 1 + .../raw-svg/brands/tencent-weibo.svg | 1 + .../raw-svg/brands/themeco.svg | 1 + .../raw-svg/brands/themeisle.svg | 1 + .../raw-svg/brands/trade-federation.svg | 1 + .../raw-svg/brands/trello.svg | 1 + .../raw-svg/brands/tripadvisor.svg | 1 + .../raw-svg/brands/tumblr-square.svg | 1 + .../raw-svg/brands/tumblr.svg | 1 + .../raw-svg/brands/twitch.svg | 1 + .../raw-svg/brands/twitter-square.svg | 1 + .../raw-svg/brands/twitter.svg | 1 + .../advanced-options/raw-svg/brands/typo3.svg | 1 + .../advanced-options/raw-svg/brands/uber.svg | 1 + .../advanced-options/raw-svg/brands/uikit.svg | 1 + .../raw-svg/brands/uniregistry.svg | 1 + .../raw-svg/brands/untappd.svg | 1 + .../advanced-options/raw-svg/brands/usb.svg | 1 + .../raw-svg/brands/ussunnah.svg | 1 + .../raw-svg/brands/vaadin.svg | 1 + .../raw-svg/brands/viacoin.svg | 1 + .../raw-svg/brands/viadeo-square.svg | 1 + .../raw-svg/brands/viadeo.svg | 1 + .../advanced-options/raw-svg/brands/viber.svg | 1 + .../raw-svg/brands/vimeo-square.svg | 1 + .../raw-svg/brands/vimeo-v.svg | 1 + .../advanced-options/raw-svg/brands/vimeo.svg | 1 + .../advanced-options/raw-svg/brands/vine.svg | 1 + .../advanced-options/raw-svg/brands/vk.svg | 1 + .../advanced-options/raw-svg/brands/vnv.svg | 1 + .../advanced-options/raw-svg/brands/vuejs.svg | 1 + .../raw-svg/brands/weebly.svg | 1 + .../advanced-options/raw-svg/brands/weibo.svg | 1 + .../raw-svg/brands/weixin.svg | 1 + .../raw-svg/brands/whatsapp-square.svg | 1 + .../raw-svg/brands/whatsapp.svg | 1 + .../advanced-options/raw-svg/brands/whmcs.svg | 1 + .../raw-svg/brands/wikipedia-w.svg | 1 + .../raw-svg/brands/windows.svg | 1 + .../advanced-options/raw-svg/brands/wix.svg | 1 + .../raw-svg/brands/wolf-pack-battalion.svg | 1 + .../raw-svg/brands/wordpress-simple.svg | 1 + .../raw-svg/brands/wordpress.svg | 1 + .../raw-svg/brands/wpbeginner.svg | 1 + .../raw-svg/brands/wpexplorer.svg | 1 + .../raw-svg/brands/wpforms.svg | 1 + .../advanced-options/raw-svg/brands/xbox.svg | 1 + .../raw-svg/brands/xing-square.svg | 1 + .../advanced-options/raw-svg/brands/xing.svg | 1 + .../raw-svg/brands/y-combinator.svg | 1 + .../advanced-options/raw-svg/brands/yahoo.svg | 1 + .../raw-svg/brands/yandex-international.svg | 1 + .../raw-svg/brands/yandex.svg | 1 + .../advanced-options/raw-svg/brands/yelp.svg | 1 + .../advanced-options/raw-svg/brands/yoast.svg | 1 + .../raw-svg/brands/youtube-square.svg | 1 + .../raw-svg/brands/youtube.svg | 1 + .../raw-svg/regular/address-book.svg | 1 + .../raw-svg/regular/address-card.svg | 1 + .../raw-svg/regular/angry.svg | 1 + .../raw-svg/regular/arrow-alt-circle-down.svg | 1 + .../raw-svg/regular/arrow-alt-circle-left.svg | 1 + .../regular/arrow-alt-circle-right.svg | 1 + .../raw-svg/regular/arrow-alt-circle-up.svg | 1 + .../raw-svg/regular/bell-slash.svg | 1 + .../advanced-options/raw-svg/regular/bell.svg | 1 + .../raw-svg/regular/bookmark.svg | 1 + .../raw-svg/regular/building.svg | 1 + .../raw-svg/regular/calendar-alt.svg | 1 + .../raw-svg/regular/calendar-check.svg | 1 + .../raw-svg/regular/calendar-minus.svg | 1 + .../raw-svg/regular/calendar-plus.svg | 1 + .../raw-svg/regular/calendar-times.svg | 1 + .../raw-svg/regular/calendar.svg | 1 + .../raw-svg/regular/caret-square-down.svg | 1 + .../raw-svg/regular/caret-square-left.svg | 1 + .../raw-svg/regular/caret-square-right.svg | 1 + .../raw-svg/regular/caret-square-up.svg | 1 + .../raw-svg/regular/chart-bar.svg | 1 + .../raw-svg/regular/check-circle.svg | 1 + .../raw-svg/regular/check-square.svg | 1 + .../raw-svg/regular/circle.svg | 1 + .../raw-svg/regular/clipboard.svg | 1 + .../raw-svg/regular/clock.svg | 1 + .../raw-svg/regular/clone.svg | 1 + .../raw-svg/regular/closed-captioning.svg | 1 + .../raw-svg/regular/comment-alt.svg | 1 + .../raw-svg/regular/comment-dots.svg | 1 + .../raw-svg/regular/comment.svg | 1 + .../raw-svg/regular/comments.svg | 1 + .../raw-svg/regular/compass.svg | 1 + .../advanced-options/raw-svg/regular/copy.svg | 1 + .../raw-svg/regular/copyright.svg | 1 + .../raw-svg/regular/credit-card.svg | 1 + .../raw-svg/regular/dizzy.svg | 1 + .../raw-svg/regular/dot-circle.svg | 1 + .../advanced-options/raw-svg/regular/edit.svg | 1 + .../raw-svg/regular/envelope-open.svg | 1 + .../raw-svg/regular/envelope.svg | 1 + .../raw-svg/regular/eye-slash.svg | 1 + .../advanced-options/raw-svg/regular/eye.svg | 1 + .../raw-svg/regular/file-alt.svg | 1 + .../raw-svg/regular/file-archive.svg | 1 + .../raw-svg/regular/file-audio.svg | 1 + .../raw-svg/regular/file-code.svg | 1 + .../raw-svg/regular/file-excel.svg | 1 + .../raw-svg/regular/file-image.svg | 1 + .../raw-svg/regular/file-pdf.svg | 1 + .../raw-svg/regular/file-powerpoint.svg | 1 + .../raw-svg/regular/file-video.svg | 1 + .../raw-svg/regular/file-word.svg | 1 + .../advanced-options/raw-svg/regular/file.svg | 1 + .../advanced-options/raw-svg/regular/flag.svg | 1 + .../raw-svg/regular/flushed.svg | 1 + .../raw-svg/regular/folder-open.svg | 1 + .../raw-svg/regular/folder.svg | 1 + .../regular/font-awesome-logo-full.svg | 1 + .../raw-svg/regular/frown-open.svg | 1 + .../raw-svg/regular/frown.svg | 1 + .../raw-svg/regular/futbol.svg | 1 + .../advanced-options/raw-svg/regular/gem.svg | 1 + .../raw-svg/regular/grimace.svg | 1 + .../raw-svg/regular/grin-alt.svg | 1 + .../raw-svg/regular/grin-beam-sweat.svg | 1 + .../raw-svg/regular/grin-beam.svg | 1 + .../raw-svg/regular/grin-hearts.svg | 1 + .../raw-svg/regular/grin-squint-tears.svg | 1 + .../raw-svg/regular/grin-squint.svg | 1 + .../raw-svg/regular/grin-stars.svg | 1 + .../raw-svg/regular/grin-tears.svg | 1 + .../raw-svg/regular/grin-tongue-squint.svg | 1 + .../raw-svg/regular/grin-tongue-wink.svg | 1 + .../raw-svg/regular/grin-tongue.svg | 1 + .../raw-svg/regular/grin-wink.svg | 1 + .../advanced-options/raw-svg/regular/grin.svg | 1 + .../raw-svg/regular/hand-lizard.svg | 1 + .../raw-svg/regular/hand-paper.svg | 1 + .../raw-svg/regular/hand-peace.svg | 1 + .../raw-svg/regular/hand-point-down.svg | 1 + .../raw-svg/regular/hand-point-left.svg | 1 + .../raw-svg/regular/hand-point-right.svg | 1 + .../raw-svg/regular/hand-point-up.svg | 1 + .../raw-svg/regular/hand-pointer.svg | 1 + .../raw-svg/regular/hand-rock.svg | 1 + .../raw-svg/regular/hand-scissors.svg | 1 + .../raw-svg/regular/hand-spock.svg | 1 + .../raw-svg/regular/handshake.svg | 1 + .../advanced-options/raw-svg/regular/hdd.svg | 1 + .../raw-svg/regular/heart.svg | 1 + .../raw-svg/regular/hospital.svg | 1 + .../raw-svg/regular/hourglass.svg | 1 + .../raw-svg/regular/id-badge.svg | 1 + .../raw-svg/regular/id-card.svg | 1 + .../raw-svg/regular/image.svg | 1 + .../raw-svg/regular/images.svg | 1 + .../raw-svg/regular/keyboard.svg | 1 + .../raw-svg/regular/kiss-beam.svg | 1 + .../raw-svg/regular/kiss-wink-heart.svg | 1 + .../advanced-options/raw-svg/regular/kiss.svg | 1 + .../raw-svg/regular/laugh-beam.svg | 1 + .../raw-svg/regular/laugh-squint.svg | 1 + .../raw-svg/regular/laugh-wink.svg | 1 + .../raw-svg/regular/laugh.svg | 1 + .../raw-svg/regular/lemon.svg | 1 + .../raw-svg/regular/life-ring.svg | 1 + .../raw-svg/regular/lightbulb.svg | 1 + .../raw-svg/regular/list-alt.svg | 1 + .../advanced-options/raw-svg/regular/map.svg | 1 + .../raw-svg/regular/meh-blank.svg | 1 + .../raw-svg/regular/meh-rolling-eyes.svg | 1 + .../advanced-options/raw-svg/regular/meh.svg | 1 + .../raw-svg/regular/minus-square.svg | 1 + .../raw-svg/regular/money-bill-alt.svg | 1 + .../advanced-options/raw-svg/regular/moon.svg | 1 + .../raw-svg/regular/newspaper.svg | 1 + .../raw-svg/regular/object-group.svg | 1 + .../raw-svg/regular/object-ungroup.svg | 1 + .../raw-svg/regular/paper-plane.svg | 1 + .../raw-svg/regular/pause-circle.svg | 1 + .../raw-svg/regular/play-circle.svg | 1 + .../raw-svg/regular/plus-square.svg | 1 + .../raw-svg/regular/question-circle.svg | 1 + .../raw-svg/regular/registered.svg | 1 + .../raw-svg/regular/sad-cry.svg | 1 + .../raw-svg/regular/sad-tear.svg | 1 + .../advanced-options/raw-svg/regular/save.svg | 1 + .../raw-svg/regular/share-square.svg | 1 + .../raw-svg/regular/smile-beam.svg | 1 + .../raw-svg/regular/smile-wink.svg | 1 + .../raw-svg/regular/smile.svg | 1 + .../raw-svg/regular/snowflake.svg | 1 + .../raw-svg/regular/square.svg | 1 + .../raw-svg/regular/star-half.svg | 1 + .../advanced-options/raw-svg/regular/star.svg | 1 + .../raw-svg/regular/sticky-note.svg | 1 + .../raw-svg/regular/stop-circle.svg | 1 + .../advanced-options/raw-svg/regular/sun.svg | 1 + .../raw-svg/regular/surprise.svg | 1 + .../raw-svg/regular/thumbs-down.svg | 1 + .../raw-svg/regular/thumbs-up.svg | 1 + .../raw-svg/regular/times-circle.svg | 1 + .../raw-svg/regular/tired.svg | 1 + .../raw-svg/regular/trash-alt.svg | 1 + .../raw-svg/regular/user-circle.svg | 1 + .../advanced-options/raw-svg/regular/user.svg | 1 + .../raw-svg/regular/window-close.svg | 1 + .../raw-svg/regular/window-maximize.svg | 1 + .../raw-svg/regular/window-minimize.svg | 1 + .../raw-svg/regular/window-restore.svg | 1 + .../raw-svg/solid/address-book.svg | 1 + .../raw-svg/solid/address-card.svg | 1 + .../advanced-options/raw-svg/solid/adjust.svg | 1 + .../raw-svg/solid/align-center.svg | 1 + .../raw-svg/solid/align-justify.svg | 1 + .../raw-svg/solid/align-left.svg | 1 + .../raw-svg/solid/align-right.svg | 1 + .../raw-svg/solid/allergies.svg | 1 + .../raw-svg/solid/ambulance.svg | 1 + .../american-sign-language-interpreting.svg | 1 + .../advanced-options/raw-svg/solid/anchor.svg | 1 + .../raw-svg/solid/angle-double-down.svg | 1 + .../raw-svg/solid/angle-double-left.svg | 1 + .../raw-svg/solid/angle-double-right.svg | 1 + .../raw-svg/solid/angle-double-up.svg | 1 + .../raw-svg/solid/angle-down.svg | 1 + .../raw-svg/solid/angle-left.svg | 1 + .../raw-svg/solid/angle-right.svg | 1 + .../raw-svg/solid/angle-up.svg | 1 + .../advanced-options/raw-svg/solid/angry.svg | 1 + .../raw-svg/solid/archive.svg | 1 + .../raw-svg/solid/archway.svg | 1 + .../raw-svg/solid/arrow-alt-circle-down.svg | 1 + .../raw-svg/solid/arrow-alt-circle-left.svg | 1 + .../raw-svg/solid/arrow-alt-circle-right.svg | 1 + .../raw-svg/solid/arrow-alt-circle-up.svg | 1 + .../raw-svg/solid/arrow-circle-down.svg | 1 + .../raw-svg/solid/arrow-circle-left.svg | 1 + .../raw-svg/solid/arrow-circle-right.svg | 1 + .../raw-svg/solid/arrow-circle-up.svg | 1 + .../raw-svg/solid/arrow-down.svg | 1 + .../raw-svg/solid/arrow-left.svg | 1 + .../raw-svg/solid/arrow-right.svg | 1 + .../raw-svg/solid/arrow-up.svg | 1 + .../raw-svg/solid/arrows-alt-h.svg | 1 + .../raw-svg/solid/arrows-alt-v.svg | 1 + .../raw-svg/solid/arrows-alt.svg | 1 + .../solid/assistive-listening-systems.svg | 1 + .../raw-svg/solid/asterisk.svg | 1 + .../advanced-options/raw-svg/solid/at.svg | 1 + .../advanced-options/raw-svg/solid/atlas.svg | 1 + .../raw-svg/solid/audio-description.svg | 1 + .../advanced-options/raw-svg/solid/award.svg | 1 + .../raw-svg/solid/backspace.svg | 1 + .../raw-svg/solid/backward.svg | 1 + .../raw-svg/solid/balance-scale.svg | 1 + .../advanced-options/raw-svg/solid/ban.svg | 1 + .../raw-svg/solid/band-aid.svg | 1 + .../raw-svg/solid/barcode.svg | 1 + .../advanced-options/raw-svg/solid/bars.svg | 1 + .../raw-svg/solid/baseball-ball.svg | 1 + .../raw-svg/solid/basketball-ball.svg | 1 + .../advanced-options/raw-svg/solid/bath.svg | 1 + .../raw-svg/solid/battery-empty.svg | 1 + .../raw-svg/solid/battery-full.svg | 1 + .../raw-svg/solid/battery-half.svg | 1 + .../raw-svg/solid/battery-quarter.svg | 1 + .../raw-svg/solid/battery-three-quarters.svg | 1 + .../advanced-options/raw-svg/solid/bed.svg | 1 + .../advanced-options/raw-svg/solid/beer.svg | 1 + .../raw-svg/solid/bell-slash.svg | 1 + .../advanced-options/raw-svg/solid/bell.svg | 1 + .../raw-svg/solid/bezier-curve.svg | 1 + .../raw-svg/solid/bicycle.svg | 1 + .../raw-svg/solid/binoculars.svg | 1 + .../raw-svg/solid/birthday-cake.svg | 1 + .../raw-svg/solid/blender.svg | 1 + .../advanced-options/raw-svg/solid/blind.svg | 1 + .../advanced-options/raw-svg/solid/bold.svg | 1 + .../advanced-options/raw-svg/solid/bolt.svg | 1 + .../advanced-options/raw-svg/solid/bomb.svg | 1 + .../advanced-options/raw-svg/solid/bong.svg | 1 + .../raw-svg/solid/book-open.svg | 1 + .../advanced-options/raw-svg/solid/book.svg | 1 + .../raw-svg/solid/bookmark.svg | 1 + .../raw-svg/solid/bowling-ball.svg | 1 + .../raw-svg/solid/box-open.svg | 1 + .../advanced-options/raw-svg/solid/box.svg | 1 + .../advanced-options/raw-svg/solid/boxes.svg | 1 + .../raw-svg/solid/braille.svg | 1 + .../raw-svg/solid/briefcase-medical.svg | 1 + .../raw-svg/solid/briefcase.svg | 1 + .../raw-svg/solid/broadcast-tower.svg | 1 + .../advanced-options/raw-svg/solid/broom.svg | 1 + .../advanced-options/raw-svg/solid/brush.svg | 1 + .../advanced-options/raw-svg/solid/bug.svg | 1 + .../raw-svg/solid/building.svg | 1 + .../raw-svg/solid/bullhorn.svg | 1 + .../raw-svg/solid/bullseye.svg | 1 + .../advanced-options/raw-svg/solid/burn.svg | 1 + .../raw-svg/solid/bus-alt.svg | 1 + .../advanced-options/raw-svg/solid/bus.svg | 1 + .../raw-svg/solid/calculator.svg | 1 + .../raw-svg/solid/calendar-alt.svg | 1 + .../raw-svg/solid/calendar-check.svg | 1 + .../raw-svg/solid/calendar-minus.svg | 1 + .../raw-svg/solid/calendar-plus.svg | 1 + .../raw-svg/solid/calendar-times.svg | 1 + .../raw-svg/solid/calendar.svg | 1 + .../raw-svg/solid/camera-retro.svg | 1 + .../advanced-options/raw-svg/solid/camera.svg | 1 + .../raw-svg/solid/cannabis.svg | 1 + .../raw-svg/solid/capsules.svg | 1 + .../advanced-options/raw-svg/solid/car.svg | 1 + .../raw-svg/solid/caret-down.svg | 1 + .../raw-svg/solid/caret-left.svg | 1 + .../raw-svg/solid/caret-right.svg | 1 + .../raw-svg/solid/caret-square-down.svg | 1 + .../raw-svg/solid/caret-square-left.svg | 1 + .../raw-svg/solid/caret-square-right.svg | 1 + .../raw-svg/solid/caret-square-up.svg | 1 + .../raw-svg/solid/caret-up.svg | 1 + .../raw-svg/solid/cart-arrow-down.svg | 1 + .../raw-svg/solid/cart-plus.svg | 1 + .../raw-svg/solid/certificate.svg | 1 + .../raw-svg/solid/chalkboard-teacher.svg | 1 + .../raw-svg/solid/chalkboard.svg | 1 + .../raw-svg/solid/chart-area.svg | 1 + .../raw-svg/solid/chart-bar.svg | 1 + .../raw-svg/solid/chart-line.svg | 1 + .../raw-svg/solid/chart-pie.svg | 1 + .../raw-svg/solid/check-circle.svg | 1 + .../raw-svg/solid/check-double.svg | 1 + .../raw-svg/solid/check-square.svg | 1 + .../advanced-options/raw-svg/solid/check.svg | 1 + .../raw-svg/solid/chess-bishop.svg | 1 + .../raw-svg/solid/chess-board.svg | 1 + .../raw-svg/solid/chess-king.svg | 1 + .../raw-svg/solid/chess-knight.svg | 1 + .../raw-svg/solid/chess-pawn.svg | 1 + .../raw-svg/solid/chess-queen.svg | 1 + .../raw-svg/solid/chess-rook.svg | 1 + .../advanced-options/raw-svg/solid/chess.svg | 1 + .../raw-svg/solid/chevron-circle-down.svg | 1 + .../raw-svg/solid/chevron-circle-left.svg | 1 + .../raw-svg/solid/chevron-circle-right.svg | 1 + .../raw-svg/solid/chevron-circle-up.svg | 1 + .../raw-svg/solid/chevron-down.svg | 1 + .../raw-svg/solid/chevron-left.svg | 1 + .../raw-svg/solid/chevron-right.svg | 1 + .../raw-svg/solid/chevron-up.svg | 1 + .../advanced-options/raw-svg/solid/child.svg | 1 + .../advanced-options/raw-svg/solid/church.svg | 1 + .../raw-svg/solid/circle-notch.svg | 1 + .../advanced-options/raw-svg/solid/circle.svg | 1 + .../raw-svg/solid/clipboard-check.svg | 1 + .../raw-svg/solid/clipboard-list.svg | 1 + .../raw-svg/solid/clipboard.svg | 1 + .../advanced-options/raw-svg/solid/clock.svg | 1 + .../advanced-options/raw-svg/solid/clone.svg | 1 + .../raw-svg/solid/closed-captioning.svg | 1 + .../raw-svg/solid/cloud-download-alt.svg | 1 + .../raw-svg/solid/cloud-upload-alt.svg | 1 + .../advanced-options/raw-svg/solid/cloud.svg | 1 + .../raw-svg/solid/cocktail.svg | 1 + .../raw-svg/solid/code-branch.svg | 1 + .../advanced-options/raw-svg/solid/code.svg | 1 + .../advanced-options/raw-svg/solid/coffee.svg | 1 + .../advanced-options/raw-svg/solid/cog.svg | 1 + .../advanced-options/raw-svg/solid/cogs.svg | 1 + .../advanced-options/raw-svg/solid/coins.svg | 1 + .../raw-svg/solid/columns.svg | 1 + .../raw-svg/solid/comment-alt.svg | 1 + .../raw-svg/solid/comment-dots.svg | 1 + .../raw-svg/solid/comment-slash.svg | 1 + .../raw-svg/solid/comment.svg | 1 + .../raw-svg/solid/comments.svg | 1 + .../raw-svg/solid/compact-disc.svg | 1 + .../raw-svg/solid/compass.svg | 1 + .../raw-svg/solid/compress.svg | 1 + .../raw-svg/solid/concierge-bell.svg | 1 + .../raw-svg/solid/cookie-bite.svg | 1 + .../advanced-options/raw-svg/solid/cookie.svg | 1 + .../advanced-options/raw-svg/solid/copy.svg | 1 + .../raw-svg/solid/copyright.svg | 1 + .../advanced-options/raw-svg/solid/couch.svg | 1 + .../raw-svg/solid/credit-card.svg | 1 + .../raw-svg/solid/crop-alt.svg | 1 + .../advanced-options/raw-svg/solid/crop.svg | 1 + .../raw-svg/solid/crosshairs.svg | 1 + .../advanced-options/raw-svg/solid/crow.svg | 1 + .../advanced-options/raw-svg/solid/crown.svg | 1 + .../advanced-options/raw-svg/solid/cube.svg | 1 + .../advanced-options/raw-svg/solid/cubes.svg | 1 + .../advanced-options/raw-svg/solid/cut.svg | 1 + .../raw-svg/solid/database.svg | 1 + .../advanced-options/raw-svg/solid/deaf.svg | 1 + .../raw-svg/solid/desktop.svg | 1 + .../raw-svg/solid/diagnoses.svg | 1 + .../raw-svg/solid/dice-five.svg | 1 + .../raw-svg/solid/dice-four.svg | 1 + .../raw-svg/solid/dice-one.svg | 1 + .../raw-svg/solid/dice-six.svg | 1 + .../raw-svg/solid/dice-three.svg | 1 + .../raw-svg/solid/dice-two.svg | 1 + .../advanced-options/raw-svg/solid/dice.svg | 1 + .../raw-svg/solid/digital-tachograph.svg | 1 + .../advanced-options/raw-svg/solid/divide.svg | 1 + .../advanced-options/raw-svg/solid/dizzy.svg | 1 + .../advanced-options/raw-svg/solid/dna.svg | 1 + .../raw-svg/solid/dollar-sign.svg | 1 + .../raw-svg/solid/dolly-flatbed.svg | 1 + .../advanced-options/raw-svg/solid/dolly.svg | 1 + .../advanced-options/raw-svg/solid/donate.svg | 1 + .../raw-svg/solid/door-closed.svg | 1 + .../raw-svg/solid/door-open.svg | 1 + .../raw-svg/solid/dot-circle.svg | 1 + .../advanced-options/raw-svg/solid/dove.svg | 1 + .../raw-svg/solid/download.svg | 1 + .../raw-svg/solid/drafting-compass.svg | 1 + .../raw-svg/solid/drum-steelpan.svg | 1 + .../advanced-options/raw-svg/solid/drum.svg | 1 + .../raw-svg/solid/dumbbell.svg | 1 + .../advanced-options/raw-svg/solid/edit.svg | 1 + .../advanced-options/raw-svg/solid/eject.svg | 1 + .../raw-svg/solid/ellipsis-h.svg | 1 + .../raw-svg/solid/ellipsis-v.svg | 1 + .../raw-svg/solid/envelope-open.svg | 1 + .../raw-svg/solid/envelope-square.svg | 1 + .../raw-svg/solid/envelope.svg | 1 + .../advanced-options/raw-svg/solid/equals.svg | 1 + .../advanced-options/raw-svg/solid/eraser.svg | 1 + .../raw-svg/solid/euro-sign.svg | 1 + .../raw-svg/solid/exchange-alt.svg | 1 + .../raw-svg/solid/exclamation-circle.svg | 1 + .../raw-svg/solid/exclamation-triangle.svg | 1 + .../raw-svg/solid/exclamation.svg | 1 + .../raw-svg/solid/expand-arrows-alt.svg | 1 + .../advanced-options/raw-svg/solid/expand.svg | 1 + .../raw-svg/solid/external-link-alt.svg | 1 + .../solid/external-link-square-alt.svg | 1 + .../raw-svg/solid/eye-dropper.svg | 1 + .../raw-svg/solid/eye-slash.svg | 1 + .../advanced-options/raw-svg/solid/eye.svg | 1 + .../raw-svg/solid/fast-backward.svg | 1 + .../raw-svg/solid/fast-forward.svg | 1 + .../advanced-options/raw-svg/solid/fax.svg | 1 + .../raw-svg/solid/feather-alt.svg | 1 + .../raw-svg/solid/feather.svg | 1 + .../advanced-options/raw-svg/solid/female.svg | 1 + .../raw-svg/solid/fighter-jet.svg | 1 + .../raw-svg/solid/file-alt.svg | 1 + .../raw-svg/solid/file-archive.svg | 1 + .../raw-svg/solid/file-audio.svg | 1 + .../raw-svg/solid/file-code.svg | 1 + .../raw-svg/solid/file-contract.svg | 1 + .../raw-svg/solid/file-download.svg | 1 + .../raw-svg/solid/file-excel.svg | 1 + .../raw-svg/solid/file-export.svg | 1 + .../raw-svg/solid/file-image.svg | 1 + .../raw-svg/solid/file-import.svg | 1 + .../raw-svg/solid/file-invoice-dollar.svg | 1 + .../raw-svg/solid/file-invoice.svg | 1 + .../raw-svg/solid/file-medical-alt.svg | 1 + .../raw-svg/solid/file-medical.svg | 1 + .../raw-svg/solid/file-pdf.svg | 1 + .../raw-svg/solid/file-powerpoint.svg | 1 + .../raw-svg/solid/file-prescription.svg | 1 + .../raw-svg/solid/file-signature.svg | 1 + .../raw-svg/solid/file-upload.svg | 1 + .../raw-svg/solid/file-video.svg | 1 + .../raw-svg/solid/file-word.svg | 1 + .../advanced-options/raw-svg/solid/file.svg | 1 + .../raw-svg/solid/fill-drip.svg | 1 + .../advanced-options/raw-svg/solid/fill.svg | 1 + .../advanced-options/raw-svg/solid/film.svg | 1 + .../advanced-options/raw-svg/solid/filter.svg | 1 + .../raw-svg/solid/fingerprint.svg | 1 + .../raw-svg/solid/fire-extinguisher.svg | 1 + .../advanced-options/raw-svg/solid/fire.svg | 1 + .../raw-svg/solid/first-aid.svg | 1 + .../advanced-options/raw-svg/solid/fish.svg | 1 + .../raw-svg/solid/flag-checkered.svg | 1 + .../advanced-options/raw-svg/solid/flag.svg | 1 + .../advanced-options/raw-svg/solid/flask.svg | 1 + .../raw-svg/solid/flushed.svg | 1 + .../raw-svg/solid/folder-open.svg | 1 + .../advanced-options/raw-svg/solid/folder.svg | 1 + .../raw-svg/solid/font-awesome-logo-full.svg | 1 + .../advanced-options/raw-svg/solid/font.svg | 1 + .../raw-svg/solid/football-ball.svg | 1 + .../raw-svg/solid/forward.svg | 1 + .../advanced-options/raw-svg/solid/frog.svg | 1 + .../raw-svg/solid/frown-open.svg | 1 + .../advanced-options/raw-svg/solid/frown.svg | 1 + .../advanced-options/raw-svg/solid/futbol.svg | 1 + .../raw-svg/solid/gamepad.svg | 1 + .../raw-svg/solid/gas-pump.svg | 1 + .../advanced-options/raw-svg/solid/gavel.svg | 1 + .../advanced-options/raw-svg/solid/gem.svg | 1 + .../raw-svg/solid/genderless.svg | 1 + .../advanced-options/raw-svg/solid/gift.svg | 1 + .../raw-svg/solid/glass-martini-alt.svg | 1 + .../raw-svg/solid/glass-martini.svg | 1 + .../raw-svg/solid/glasses.svg | 1 + .../raw-svg/solid/globe-africa.svg | 1 + .../raw-svg/solid/globe-americas.svg | 1 + .../raw-svg/solid/globe-asia.svg | 1 + .../advanced-options/raw-svg/solid/globe.svg | 1 + .../raw-svg/solid/golf-ball.svg | 1 + .../raw-svg/solid/graduation-cap.svg | 1 + .../raw-svg/solid/greater-than-equal.svg | 1 + .../raw-svg/solid/greater-than.svg | 1 + .../raw-svg/solid/grimace.svg | 1 + .../raw-svg/solid/grin-alt.svg | 1 + .../raw-svg/solid/grin-beam-sweat.svg | 1 + .../raw-svg/solid/grin-beam.svg | 1 + .../raw-svg/solid/grin-hearts.svg | 1 + .../raw-svg/solid/grin-squint-tears.svg | 1 + .../raw-svg/solid/grin-squint.svg | 1 + .../raw-svg/solid/grin-stars.svg | 1 + .../raw-svg/solid/grin-tears.svg | 1 + .../raw-svg/solid/grin-tongue-squint.svg | 1 + .../raw-svg/solid/grin-tongue-wink.svg | 1 + .../raw-svg/solid/grin-tongue.svg | 1 + .../raw-svg/solid/grin-wink.svg | 1 + .../advanced-options/raw-svg/solid/grin.svg | 1 + .../raw-svg/solid/grip-horizontal.svg | 1 + .../raw-svg/solid/grip-vertical.svg | 1 + .../raw-svg/solid/h-square.svg | 1 + .../raw-svg/solid/hand-holding-heart.svg | 1 + .../raw-svg/solid/hand-holding-usd.svg | 1 + .../raw-svg/solid/hand-holding.svg | 1 + .../raw-svg/solid/hand-lizard.svg | 1 + .../raw-svg/solid/hand-paper.svg | 1 + .../raw-svg/solid/hand-peace.svg | 1 + .../raw-svg/solid/hand-point-down.svg | 1 + .../raw-svg/solid/hand-point-left.svg | 1 + .../raw-svg/solid/hand-point-right.svg | 1 + .../raw-svg/solid/hand-point-up.svg | 1 + .../raw-svg/solid/hand-pointer.svg | 1 + .../raw-svg/solid/hand-rock.svg | 1 + .../raw-svg/solid/hand-scissors.svg | 1 + .../raw-svg/solid/hand-spock.svg | 1 + .../raw-svg/solid/hands-helping.svg | 1 + .../advanced-options/raw-svg/solid/hands.svg | 1 + .../raw-svg/solid/handshake.svg | 1 + .../raw-svg/solid/hashtag.svg | 1 + .../advanced-options/raw-svg/solid/hdd.svg | 1 + .../raw-svg/solid/heading.svg | 1 + .../raw-svg/solid/headphones-alt.svg | 1 + .../raw-svg/solid/headphones.svg | 1 + .../raw-svg/solid/headset.svg | 1 + .../advanced-options/raw-svg/solid/heart.svg | 1 + .../raw-svg/solid/heartbeat.svg | 1 + .../raw-svg/solid/helicopter.svg | 1 + .../raw-svg/solid/highlighter.svg | 1 + .../raw-svg/solid/history.svg | 1 + .../raw-svg/solid/hockey-puck.svg | 1 + .../advanced-options/raw-svg/solid/home.svg | 1 + .../raw-svg/solid/hospital-alt.svg | 1 + .../raw-svg/solid/hospital-symbol.svg | 1 + .../raw-svg/solid/hospital.svg | 1 + .../raw-svg/solid/hot-tub.svg | 1 + .../advanced-options/raw-svg/solid/hotel.svg | 1 + .../raw-svg/solid/hourglass-end.svg | 1 + .../raw-svg/solid/hourglass-half.svg | 1 + .../raw-svg/solid/hourglass-start.svg | 1 + .../raw-svg/solid/hourglass.svg | 1 + .../raw-svg/solid/i-cursor.svg | 1 + .../raw-svg/solid/id-badge.svg | 1 + .../raw-svg/solid/id-card-alt.svg | 1 + .../raw-svg/solid/id-card.svg | 1 + .../advanced-options/raw-svg/solid/image.svg | 1 + .../advanced-options/raw-svg/solid/images.svg | 1 + .../advanced-options/raw-svg/solid/inbox.svg | 1 + .../advanced-options/raw-svg/solid/indent.svg | 1 + .../raw-svg/solid/industry.svg | 1 + .../raw-svg/solid/infinity.svg | 1 + .../raw-svg/solid/info-circle.svg | 1 + .../advanced-options/raw-svg/solid/info.svg | 1 + .../advanced-options/raw-svg/solid/italic.svg | 1 + .../advanced-options/raw-svg/solid/joint.svg | 1 + .../advanced-options/raw-svg/solid/key.svg | 1 + .../raw-svg/solid/keyboard.svg | 1 + .../raw-svg/solid/kiss-beam.svg | 1 + .../raw-svg/solid/kiss-wink-heart.svg | 1 + .../advanced-options/raw-svg/solid/kiss.svg | 1 + .../raw-svg/solid/kiwi-bird.svg | 1 + .../raw-svg/solid/language.svg | 1 + .../advanced-options/raw-svg/solid/laptop.svg | 1 + .../raw-svg/solid/laugh-beam.svg | 1 + .../raw-svg/solid/laugh-squint.svg | 1 + .../raw-svg/solid/laugh-wink.svg | 1 + .../advanced-options/raw-svg/solid/laugh.svg | 1 + .../advanced-options/raw-svg/solid/leaf.svg | 1 + .../advanced-options/raw-svg/solid/lemon.svg | 1 + .../raw-svg/solid/less-than-equal.svg | 1 + .../raw-svg/solid/less-than.svg | 1 + .../raw-svg/solid/level-down-alt.svg | 1 + .../raw-svg/solid/level-up-alt.svg | 1 + .../raw-svg/solid/life-ring.svg | 1 + .../raw-svg/solid/lightbulb.svg | 1 + .../advanced-options/raw-svg/solid/link.svg | 1 + .../raw-svg/solid/lira-sign.svg | 1 + .../raw-svg/solid/list-alt.svg | 1 + .../raw-svg/solid/list-ol.svg | 1 + .../raw-svg/solid/list-ul.svg | 1 + .../advanced-options/raw-svg/solid/list.svg | 1 + .../raw-svg/solid/location-arrow.svg | 1 + .../raw-svg/solid/lock-open.svg | 1 + .../advanced-options/raw-svg/solid/lock.svg | 1 + .../raw-svg/solid/long-arrow-alt-down.svg | 1 + .../raw-svg/solid/long-arrow-alt-left.svg | 1 + .../raw-svg/solid/long-arrow-alt-right.svg | 1 + .../raw-svg/solid/long-arrow-alt-up.svg | 1 + .../raw-svg/solid/low-vision.svg | 1 + .../raw-svg/solid/luggage-cart.svg | 1 + .../advanced-options/raw-svg/solid/magic.svg | 1 + .../advanced-options/raw-svg/solid/magnet.svg | 1 + .../advanced-options/raw-svg/solid/male.svg | 1 + .../raw-svg/solid/map-marked-alt.svg | 1 + .../raw-svg/solid/map-marked.svg | 1 + .../raw-svg/solid/map-marker-alt.svg | 1 + .../raw-svg/solid/map-marker.svg | 1 + .../raw-svg/solid/map-pin.svg | 1 + .../raw-svg/solid/map-signs.svg | 1 + .../advanced-options/raw-svg/solid/map.svg | 1 + .../advanced-options/raw-svg/solid/marker.svg | 1 + .../raw-svg/solid/mars-double.svg | 1 + .../raw-svg/solid/mars-stroke-h.svg | 1 + .../raw-svg/solid/mars-stroke-v.svg | 1 + .../raw-svg/solid/mars-stroke.svg | 1 + .../advanced-options/raw-svg/solid/mars.svg | 1 + .../advanced-options/raw-svg/solid/medal.svg | 1 + .../advanced-options/raw-svg/solid/medkit.svg | 1 + .../raw-svg/solid/meh-blank.svg | 1 + .../raw-svg/solid/meh-rolling-eyes.svg | 1 + .../advanced-options/raw-svg/solid/meh.svg | 1 + .../advanced-options/raw-svg/solid/memory.svg | 1 + .../raw-svg/solid/mercury.svg | 1 + .../raw-svg/solid/microchip.svg | 1 + .../raw-svg/solid/microphone-alt-slash.svg | 1 + .../raw-svg/solid/microphone-alt.svg | 1 + .../raw-svg/solid/microphone-slash.svg | 1 + .../raw-svg/solid/microphone.svg | 1 + .../raw-svg/solid/minus-circle.svg | 1 + .../raw-svg/solid/minus-square.svg | 1 + .../advanced-options/raw-svg/solid/minus.svg | 1 + .../raw-svg/solid/mobile-alt.svg | 1 + .../advanced-options/raw-svg/solid/mobile.svg | 1 + .../raw-svg/solid/money-bill-alt.svg | 1 + .../raw-svg/solid/money-bill-wave-alt.svg | 1 + .../raw-svg/solid/money-bill-wave.svg | 1 + .../raw-svg/solid/money-bill.svg | 1 + .../raw-svg/solid/money-check-alt.svg | 1 + .../raw-svg/solid/money-check.svg | 1 + .../raw-svg/solid/monument.svg | 1 + .../advanced-options/raw-svg/solid/moon.svg | 1 + .../raw-svg/solid/mortar-pestle.svg | 1 + .../raw-svg/solid/motorcycle.svg | 1 + .../raw-svg/solid/mouse-pointer.svg | 1 + .../advanced-options/raw-svg/solid/music.svg | 1 + .../advanced-options/raw-svg/solid/neuter.svg | 1 + .../raw-svg/solid/newspaper.svg | 1 + .../raw-svg/solid/not-equal.svg | 1 + .../raw-svg/solid/notes-medical.svg | 1 + .../raw-svg/solid/object-group.svg | 1 + .../raw-svg/solid/object-ungroup.svg | 1 + .../raw-svg/solid/outdent.svg | 1 + .../raw-svg/solid/paint-brush.svg | 1 + .../raw-svg/solid/paint-roller.svg | 1 + .../raw-svg/solid/palette.svg | 1 + .../advanced-options/raw-svg/solid/pallet.svg | 1 + .../raw-svg/solid/paper-plane.svg | 1 + .../raw-svg/solid/paperclip.svg | 1 + .../raw-svg/solid/parachute-box.svg | 1 + .../raw-svg/solid/paragraph.svg | 1 + .../raw-svg/solid/parking.svg | 1 + .../raw-svg/solid/passport.svg | 1 + .../advanced-options/raw-svg/solid/paste.svg | 1 + .../raw-svg/solid/pause-circle.svg | 1 + .../advanced-options/raw-svg/solid/pause.svg | 1 + .../advanced-options/raw-svg/solid/paw.svg | 1 + .../raw-svg/solid/pen-alt.svg | 1 + .../raw-svg/solid/pen-fancy.svg | 1 + .../raw-svg/solid/pen-nib.svg | 1 + .../raw-svg/solid/pen-square.svg | 1 + .../advanced-options/raw-svg/solid/pen.svg | 1 + .../raw-svg/solid/pencil-alt.svg | 1 + .../raw-svg/solid/pencil-ruler.svg | 1 + .../raw-svg/solid/people-carry.svg | 1 + .../raw-svg/solid/percent.svg | 1 + .../raw-svg/solid/percentage.svg | 1 + .../raw-svg/solid/phone-slash.svg | 1 + .../raw-svg/solid/phone-square.svg | 1 + .../raw-svg/solid/phone-volume.svg | 1 + .../advanced-options/raw-svg/solid/phone.svg | 1 + .../raw-svg/solid/piggy-bank.svg | 1 + .../advanced-options/raw-svg/solid/pills.svg | 1 + .../raw-svg/solid/plane-arrival.svg | 1 + .../raw-svg/solid/plane-departure.svg | 1 + .../advanced-options/raw-svg/solid/plane.svg | 1 + .../raw-svg/solid/play-circle.svg | 1 + .../advanced-options/raw-svg/solid/play.svg | 1 + .../advanced-options/raw-svg/solid/plug.svg | 1 + .../raw-svg/solid/plus-circle.svg | 1 + .../raw-svg/solid/plus-square.svg | 1 + .../advanced-options/raw-svg/solid/plus.svg | 1 + .../raw-svg/solid/podcast.svg | 1 + .../advanced-options/raw-svg/solid/poo.svg | 1 + .../raw-svg/solid/portrait.svg | 1 + .../raw-svg/solid/pound-sign.svg | 1 + .../raw-svg/solid/power-off.svg | 1 + .../raw-svg/solid/prescription-bottle-alt.svg | 1 + .../raw-svg/solid/prescription-bottle.svg | 1 + .../raw-svg/solid/prescription.svg | 1 + .../advanced-options/raw-svg/solid/print.svg | 1 + .../raw-svg/solid/procedures.svg | 1 + .../raw-svg/solid/project-diagram.svg | 1 + .../raw-svg/solid/puzzle-piece.svg | 1 + .../advanced-options/raw-svg/solid/qrcode.svg | 1 + .../raw-svg/solid/question-circle.svg | 1 + .../raw-svg/solid/question.svg | 1 + .../raw-svg/solid/quidditch.svg | 1 + .../raw-svg/solid/quote-left.svg | 1 + .../raw-svg/solid/quote-right.svg | 1 + .../advanced-options/raw-svg/solid/random.svg | 1 + .../raw-svg/solid/receipt.svg | 1 + .../raw-svg/solid/recycle.svg | 1 + .../raw-svg/solid/redo-alt.svg | 1 + .../advanced-options/raw-svg/solid/redo.svg | 1 + .../raw-svg/solid/registered.svg | 1 + .../raw-svg/solid/reply-all.svg | 1 + .../advanced-options/raw-svg/solid/reply.svg | 1 + .../raw-svg/solid/retweet.svg | 1 + .../advanced-options/raw-svg/solid/ribbon.svg | 1 + .../advanced-options/raw-svg/solid/road.svg | 1 + .../advanced-options/raw-svg/solid/robot.svg | 1 + .../advanced-options/raw-svg/solid/rocket.svg | 1 + .../raw-svg/solid/rss-square.svg | 1 + .../advanced-options/raw-svg/solid/rss.svg | 1 + .../raw-svg/solid/ruble-sign.svg | 1 + .../raw-svg/solid/ruler-combined.svg | 1 + .../raw-svg/solid/ruler-horizontal.svg | 1 + .../raw-svg/solid/ruler-vertical.svg | 1 + .../advanced-options/raw-svg/solid/ruler.svg | 1 + .../raw-svg/solid/rupee-sign.svg | 1 + .../raw-svg/solid/sad-cry.svg | 1 + .../raw-svg/solid/sad-tear.svg | 1 + .../advanced-options/raw-svg/solid/save.svg | 1 + .../advanced-options/raw-svg/solid/school.svg | 1 + .../raw-svg/solid/screwdriver.svg | 1 + .../raw-svg/solid/search-minus.svg | 1 + .../raw-svg/solid/search-plus.svg | 1 + .../advanced-options/raw-svg/solid/search.svg | 1 + .../raw-svg/solid/seedling.svg | 1 + .../advanced-options/raw-svg/solid/server.svg | 1 + .../raw-svg/solid/share-alt-square.svg | 1 + .../raw-svg/solid/share-alt.svg | 1 + .../raw-svg/solid/share-square.svg | 1 + .../advanced-options/raw-svg/solid/share.svg | 1 + .../raw-svg/solid/shekel-sign.svg | 1 + .../raw-svg/solid/shield-alt.svg | 1 + .../advanced-options/raw-svg/solid/ship.svg | 1 + .../raw-svg/solid/shipping-fast.svg | 1 + .../raw-svg/solid/shoe-prints.svg | 1 + .../raw-svg/solid/shopping-bag.svg | 1 + .../raw-svg/solid/shopping-basket.svg | 1 + .../raw-svg/solid/shopping-cart.svg | 1 + .../advanced-options/raw-svg/solid/shower.svg | 1 + .../raw-svg/solid/shuttle-van.svg | 1 + .../raw-svg/solid/sign-in-alt.svg | 1 + .../raw-svg/solid/sign-language.svg | 1 + .../raw-svg/solid/sign-out-alt.svg | 1 + .../advanced-options/raw-svg/solid/sign.svg | 1 + .../advanced-options/raw-svg/solid/signal.svg | 1 + .../raw-svg/solid/signature.svg | 1 + .../raw-svg/solid/sitemap.svg | 1 + .../advanced-options/raw-svg/solid/skull.svg | 1 + .../raw-svg/solid/sliders-h.svg | 1 + .../raw-svg/solid/smile-beam.svg | 1 + .../raw-svg/solid/smile-wink.svg | 1 + .../advanced-options/raw-svg/solid/smile.svg | 1 + .../raw-svg/solid/smoking-ban.svg | 1 + .../raw-svg/solid/smoking.svg | 1 + .../raw-svg/solid/snowflake.svg | 1 + .../raw-svg/solid/solar-panel.svg | 1 + .../raw-svg/solid/sort-alpha-down.svg | 1 + .../raw-svg/solid/sort-alpha-up.svg | 1 + .../raw-svg/solid/sort-amount-down.svg | 1 + .../raw-svg/solid/sort-amount-up.svg | 1 + .../raw-svg/solid/sort-down.svg | 1 + .../raw-svg/solid/sort-numeric-down.svg | 1 + .../raw-svg/solid/sort-numeric-up.svg | 1 + .../raw-svg/solid/sort-up.svg | 1 + .../advanced-options/raw-svg/solid/sort.svg | 1 + .../advanced-options/raw-svg/solid/spa.svg | 1 + .../raw-svg/solid/space-shuttle.svg | 1 + .../raw-svg/solid/spinner.svg | 1 + .../raw-svg/solid/splotch.svg | 1 + .../raw-svg/solid/spray-can.svg | 1 + .../raw-svg/solid/square-full.svg | 1 + .../advanced-options/raw-svg/solid/square.svg | 1 + .../advanced-options/raw-svg/solid/stamp.svg | 1 + .../raw-svg/solid/star-half-alt.svg | 1 + .../raw-svg/solid/star-half.svg | 1 + .../advanced-options/raw-svg/solid/star.svg | 1 + .../raw-svg/solid/step-backward.svg | 1 + .../raw-svg/solid/step-forward.svg | 1 + .../raw-svg/solid/stethoscope.svg | 1 + .../raw-svg/solid/sticky-note.svg | 1 + .../raw-svg/solid/stop-circle.svg | 1 + .../advanced-options/raw-svg/solid/stop.svg | 1 + .../raw-svg/solid/stopwatch.svg | 1 + .../raw-svg/solid/store-alt.svg | 1 + .../advanced-options/raw-svg/solid/store.svg | 1 + .../advanced-options/raw-svg/solid/stream.svg | 1 + .../raw-svg/solid/street-view.svg | 1 + .../raw-svg/solid/strikethrough.svg | 1 + .../raw-svg/solid/stroopwafel.svg | 1 + .../raw-svg/solid/subscript.svg | 1 + .../advanced-options/raw-svg/solid/subway.svg | 1 + .../raw-svg/solid/suitcase-rolling.svg | 1 + .../raw-svg/solid/suitcase.svg | 1 + .../advanced-options/raw-svg/solid/sun.svg | 1 + .../raw-svg/solid/superscript.svg | 1 + .../raw-svg/solid/surprise.svg | 1 + .../raw-svg/solid/swatchbook.svg | 1 + .../raw-svg/solid/swimmer.svg | 1 + .../raw-svg/solid/swimming-pool.svg | 1 + .../raw-svg/solid/sync-alt.svg | 1 + .../advanced-options/raw-svg/solid/sync.svg | 1 + .../raw-svg/solid/syringe.svg | 1 + .../raw-svg/solid/table-tennis.svg | 1 + .../advanced-options/raw-svg/solid/table.svg | 1 + .../raw-svg/solid/tablet-alt.svg | 1 + .../advanced-options/raw-svg/solid/tablet.svg | 1 + .../raw-svg/solid/tablets.svg | 1 + .../raw-svg/solid/tachometer-alt.svg | 1 + .../advanced-options/raw-svg/solid/tag.svg | 1 + .../advanced-options/raw-svg/solid/tags.svg | 1 + .../advanced-options/raw-svg/solid/tape.svg | 1 + .../advanced-options/raw-svg/solid/tasks.svg | 1 + .../advanced-options/raw-svg/solid/taxi.svg | 1 + .../raw-svg/solid/terminal.svg | 1 + .../raw-svg/solid/text-height.svg | 1 + .../raw-svg/solid/text-width.svg | 1 + .../raw-svg/solid/th-large.svg | 1 + .../raw-svg/solid/th-list.svg | 1 + .../advanced-options/raw-svg/solid/th.svg | 1 + .../raw-svg/solid/thermometer-empty.svg | 1 + .../raw-svg/solid/thermometer-full.svg | 1 + .../raw-svg/solid/thermometer-half.svg | 1 + .../raw-svg/solid/thermometer-quarter.svg | 1 + .../solid/thermometer-three-quarters.svg | 1 + .../raw-svg/solid/thermometer.svg | 1 + .../raw-svg/solid/thumbs-down.svg | 1 + .../raw-svg/solid/thumbs-up.svg | 1 + .../raw-svg/solid/thumbtack.svg | 1 + .../raw-svg/solid/ticket-alt.svg | 1 + .../raw-svg/solid/times-circle.svg | 1 + .../advanced-options/raw-svg/solid/times.svg | 1 + .../raw-svg/solid/tint-slash.svg | 1 + .../advanced-options/raw-svg/solid/tint.svg | 1 + .../advanced-options/raw-svg/solid/tired.svg | 1 + .../raw-svg/solid/toggle-off.svg | 1 + .../raw-svg/solid/toggle-on.svg | 1 + .../raw-svg/solid/toolbox.svg | 1 + .../advanced-options/raw-svg/solid/tooth.svg | 1 + .../raw-svg/solid/trademark.svg | 1 + .../advanced-options/raw-svg/solid/train.svg | 1 + .../raw-svg/solid/transgender-alt.svg | 1 + .../raw-svg/solid/transgender.svg | 1 + .../raw-svg/solid/trash-alt.svg | 1 + .../advanced-options/raw-svg/solid/trash.svg | 1 + .../advanced-options/raw-svg/solid/tree.svg | 1 + .../advanced-options/raw-svg/solid/trophy.svg | 1 + .../raw-svg/solid/truck-loading.svg | 1 + .../raw-svg/solid/truck-moving.svg | 1 + .../advanced-options/raw-svg/solid/truck.svg | 1 + .../advanced-options/raw-svg/solid/tshirt.svg | 1 + .../advanced-options/raw-svg/solid/tty.svg | 1 + .../advanced-options/raw-svg/solid/tv.svg | 1 + .../raw-svg/solid/umbrella-beach.svg | 1 + .../raw-svg/solid/umbrella.svg | 1 + .../raw-svg/solid/underline.svg | 1 + .../raw-svg/solid/undo-alt.svg | 1 + .../advanced-options/raw-svg/solid/undo.svg | 1 + .../raw-svg/solid/universal-access.svg | 1 + .../raw-svg/solid/university.svg | 1 + .../advanced-options/raw-svg/solid/unlink.svg | 1 + .../raw-svg/solid/unlock-alt.svg | 1 + .../advanced-options/raw-svg/solid/unlock.svg | 1 + .../advanced-options/raw-svg/solid/upload.svg | 1 + .../raw-svg/solid/user-alt-slash.svg | 1 + .../raw-svg/solid/user-alt.svg | 1 + .../raw-svg/solid/user-astronaut.svg | 1 + .../raw-svg/solid/user-check.svg | 1 + .../raw-svg/solid/user-circle.svg | 1 + .../raw-svg/solid/user-clock.svg | 1 + .../raw-svg/solid/user-cog.svg | 1 + .../raw-svg/solid/user-edit.svg | 1 + .../raw-svg/solid/user-friends.svg | 1 + .../raw-svg/solid/user-graduate.svg | 1 + .../raw-svg/solid/user-lock.svg | 1 + .../raw-svg/solid/user-md.svg | 1 + .../raw-svg/solid/user-minus.svg | 1 + .../raw-svg/solid/user-ninja.svg | 1 + .../raw-svg/solid/user-plus.svg | 1 + .../raw-svg/solid/user-secret.svg | 1 + .../raw-svg/solid/user-shield.svg | 1 + .../raw-svg/solid/user-slash.svg | 1 + .../raw-svg/solid/user-tag.svg | 1 + .../raw-svg/solid/user-tie.svg | 1 + .../raw-svg/solid/user-times.svg | 1 + .../advanced-options/raw-svg/solid/user.svg | 1 + .../raw-svg/solid/users-cog.svg | 1 + .../advanced-options/raw-svg/solid/users.svg | 1 + .../raw-svg/solid/utensil-spoon.svg | 1 + .../raw-svg/solid/utensils.svg | 1 + .../raw-svg/solid/vector-square.svg | 1 + .../raw-svg/solid/venus-double.svg | 1 + .../raw-svg/solid/venus-mars.svg | 1 + .../advanced-options/raw-svg/solid/venus.svg | 1 + .../advanced-options/raw-svg/solid/vial.svg | 1 + .../advanced-options/raw-svg/solid/vials.svg | 1 + .../raw-svg/solid/video-slash.svg | 1 + .../advanced-options/raw-svg/solid/video.svg | 1 + .../raw-svg/solid/volleyball-ball.svg | 1 + .../raw-svg/solid/volume-down.svg | 1 + .../raw-svg/solid/volume-off.svg | 1 + .../raw-svg/solid/volume-up.svg | 1 + .../raw-svg/solid/walking.svg | 1 + .../advanced-options/raw-svg/solid/wallet.svg | 1 + .../raw-svg/solid/warehouse.svg | 1 + .../raw-svg/solid/weight-hanging.svg | 1 + .../advanced-options/raw-svg/solid/weight.svg | 1 + .../raw-svg/solid/wheelchair.svg | 1 + .../advanced-options/raw-svg/solid/wifi.svg | 1 + .../raw-svg/solid/window-close.svg | 1 + .../raw-svg/solid/window-maximize.svg | 1 + .../raw-svg/solid/window-minimize.svg | 1 + .../raw-svg/solid/window-restore.svg | 1 + .../raw-svg/solid/wine-glass-alt.svg | 1 + .../raw-svg/solid/wine-glass.svg | 1 + .../raw-svg/solid/won-sign.svg | 1 + .../advanced-options/raw-svg/solid/wrench.svg | 1 + .../advanced-options/raw-svg/solid/x-ray.svg | 1 + .../raw-svg/solid/yen-sign.svg | 1 + .../svg-sprites/fa-brands.svg | 1499 + .../svg-sprites/fa-regular.svg | 615 + .../advanced-options/svg-sprites/fa-solid.svg | 2967 ++ .../fontawesome-common-types/LICENSE.txt | 34 + .../fontawesome-common-types/README.md | 27 + .../fontawesome-common-types/index.d.ts | 1286 + .../fontawesome-common-types/package.json | 54 + .../fontawesome-free-brands/LICENSE.txt | 34 + .../fontawesome-free-brands/README.md | 27 + .../fontawesome-free-brands/fa500px.d.ts | 3 + .../fontawesome-free-brands/fa500px.js | 1 + .../faAccessibleIcon.d.ts | 3 + .../faAccessibleIcon.js | 1 + .../fontawesome-free-brands/faAccusoft.d.ts | 3 + .../fontawesome-free-brands/faAccusoft.js | 1 + .../fontawesome-free-brands/faAdn.d.ts | 3 + .../fontawesome-free-brands/faAdn.js | 1 + .../fontawesome-free-brands/faAdversal.d.ts | 3 + .../fontawesome-free-brands/faAdversal.js | 1 + .../faAffiliatetheme.d.ts | 3 + .../faAffiliatetheme.js | 1 + .../fontawesome-free-brands/faAlgolia.d.ts | 3 + .../fontawesome-free-brands/faAlgolia.js | 1 + .../fontawesome-free-brands/faAmazon.d.ts | 3 + .../fontawesome-free-brands/faAmazon.js | 1 + .../fontawesome-free-brands/faAmazonPay.d.ts | 3 + .../fontawesome-free-brands/faAmazonPay.js | 1 + .../fontawesome-free-brands/faAmilia.d.ts | 3 + .../fontawesome-free-brands/faAmilia.js | 1 + .../fontawesome-free-brands/faAndroid.d.ts | 3 + .../fontawesome-free-brands/faAndroid.js | 1 + .../fontawesome-free-brands/faAngellist.d.ts | 3 + .../fontawesome-free-brands/faAngellist.js | 1 + .../faAngrycreative.d.ts | 3 + .../faAngrycreative.js | 1 + .../fontawesome-free-brands/faAngular.d.ts | 3 + .../fontawesome-free-brands/faAngular.js | 1 + .../fontawesome-free-brands/faAppStore.d.ts | 3 + .../fontawesome-free-brands/faAppStore.js | 1 + .../faAppStoreIos.d.ts | 3 + .../fontawesome-free-brands/faAppStoreIos.js | 1 + .../fontawesome-free-brands/faApper.d.ts | 3 + .../fontawesome-free-brands/faApper.js | 1 + .../fontawesome-free-brands/faApple.d.ts | 3 + .../fontawesome-free-brands/faApple.js | 1 + .../fontawesome-free-brands/faApplePay.d.ts | 3 + .../fontawesome-free-brands/faApplePay.js | 1 + .../fontawesome-free-brands/faAsymmetrik.d.ts | 3 + .../fontawesome-free-brands/faAsymmetrik.js | 1 + .../fontawesome-free-brands/faAudible.d.ts | 3 + .../fontawesome-free-brands/faAudible.js | 1 + .../faAutoprefixer.d.ts | 3 + .../fontawesome-free-brands/faAutoprefixer.js | 1 + .../fontawesome-free-brands/faAvianex.d.ts | 3 + .../fontawesome-free-brands/faAvianex.js | 1 + .../fontawesome-free-brands/faAviato.d.ts | 3 + .../fontawesome-free-brands/faAviato.js | 1 + .../fontawesome-free-brands/faAws.d.ts | 3 + .../fontawesome-free-brands/faAws.js | 1 + .../fontawesome-free-brands/faBandcamp.d.ts | 3 + .../fontawesome-free-brands/faBandcamp.js | 1 + .../fontawesome-free-brands/faBehance.d.ts | 3 + .../fontawesome-free-brands/faBehance.js | 1 + .../faBehanceSquare.d.ts | 3 + .../faBehanceSquare.js | 1 + .../fontawesome-free-brands/faBimobject.d.ts | 3 + .../fontawesome-free-brands/faBimobject.js | 1 + .../fontawesome-free-brands/faBitbucket.d.ts | 3 + .../fontawesome-free-brands/faBitbucket.js | 1 + .../fontawesome-free-brands/faBitcoin.d.ts | 3 + .../fontawesome-free-brands/faBitcoin.js | 1 + .../fontawesome-free-brands/faBity.d.ts | 3 + .../fontawesome-free-brands/faBity.js | 1 + .../fontawesome-free-brands/faBlackTie.d.ts | 3 + .../fontawesome-free-brands/faBlackTie.js | 1 + .../fontawesome-free-brands/faBlackberry.d.ts | 3 + .../fontawesome-free-brands/faBlackberry.js | 1 + .../fontawesome-free-brands/faBlogger.d.ts | 3 + .../fontawesome-free-brands/faBlogger.js | 1 + .../fontawesome-free-brands/faBloggerB.d.ts | 3 + .../fontawesome-free-brands/faBloggerB.js | 1 + .../fontawesome-free-brands/faBluetooth.d.ts | 3 + .../fontawesome-free-brands/faBluetooth.js | 1 + .../fontawesome-free-brands/faBluetoothB.d.ts | 3 + .../fontawesome-free-brands/faBluetoothB.js | 1 + .../fontawesome-free-brands/faBtc.d.ts | 3 + .../fontawesome-free-brands/faBtc.js | 1 + .../faBuromobelexperte.d.ts | 3 + .../faBuromobelexperte.js | 1 + .../fontawesome-free-brands/faBuysellads.d.ts | 3 + .../fontawesome-free-brands/faBuysellads.js | 1 + .../faCcAmazonPay.d.ts | 3 + .../fontawesome-free-brands/faCcAmazonPay.js | 1 + .../fontawesome-free-brands/faCcAmex.d.ts | 3 + .../fontawesome-free-brands/faCcAmex.js | 1 + .../fontawesome-free-brands/faCcApplePay.d.ts | 3 + .../fontawesome-free-brands/faCcApplePay.js | 1 + .../faCcDinersClub.d.ts | 3 + .../fontawesome-free-brands/faCcDinersClub.js | 1 + .../fontawesome-free-brands/faCcDiscover.d.ts | 3 + .../fontawesome-free-brands/faCcDiscover.js | 1 + .../fontawesome-free-brands/faCcJcb.d.ts | 3 + .../fontawesome-free-brands/faCcJcb.js | 1 + .../faCcMastercard.d.ts | 3 + .../fontawesome-free-brands/faCcMastercard.js | 1 + .../fontawesome-free-brands/faCcPaypal.d.ts | 3 + .../fontawesome-free-brands/faCcPaypal.js | 1 + .../fontawesome-free-brands/faCcStripe.d.ts | 3 + .../fontawesome-free-brands/faCcStripe.js | 1 + .../fontawesome-free-brands/faCcVisa.d.ts | 3 + .../fontawesome-free-brands/faCcVisa.js | 1 + .../fontawesome-free-brands/faCentercode.d.ts | 3 + .../fontawesome-free-brands/faCentercode.js | 1 + .../fontawesome-free-brands/faChrome.d.ts | 3 + .../fontawesome-free-brands/faChrome.js | 1 + .../fontawesome-free-brands/faCloudscale.d.ts | 3 + .../fontawesome-free-brands/faCloudscale.js | 1 + .../fontawesome-free-brands/faCloudsmith.d.ts | 3 + .../fontawesome-free-brands/faCloudsmith.js | 1 + .../faCloudversify.d.ts | 3 + .../fontawesome-free-brands/faCloudversify.js | 1 + .../fontawesome-free-brands/faCodepen.d.ts | 3 + .../fontawesome-free-brands/faCodepen.js | 1 + .../fontawesome-free-brands/faCodiepie.d.ts | 3 + .../fontawesome-free-brands/faCodiepie.js | 1 + .../faConnectdevelop.d.ts | 3 + .../faConnectdevelop.js | 1 + .../fontawesome-free-brands/faContao.d.ts | 3 + .../fontawesome-free-brands/faContao.js | 1 + .../fontawesome-free-brands/faCpanel.d.ts | 3 + .../fontawesome-free-brands/faCpanel.js | 1 + .../faCreativeCommons.d.ts | 3 + .../faCreativeCommons.js | 1 + .../faCreativeCommonsBy.d.ts | 3 + .../faCreativeCommonsBy.js | 1 + .../faCreativeCommonsNc.d.ts | 3 + .../faCreativeCommonsNc.js | 1 + .../faCreativeCommonsNcEu.d.ts | 3 + .../faCreativeCommonsNcEu.js | 1 + .../faCreativeCommonsNcJp.d.ts | 3 + .../faCreativeCommonsNcJp.js | 1 + .../faCreativeCommonsNd.d.ts | 3 + .../faCreativeCommonsNd.js | 1 + .../faCreativeCommonsPd.d.ts | 3 + .../faCreativeCommonsPd.js | 1 + .../faCreativeCommonsPdAlt.d.ts | 3 + .../faCreativeCommonsPdAlt.js | 1 + .../faCreativeCommonsRemix.d.ts | 3 + .../faCreativeCommonsRemix.js | 1 + .../faCreativeCommonsSa.d.ts | 3 + .../faCreativeCommonsSa.js | 1 + .../faCreativeCommonsSampling.d.ts | 3 + .../faCreativeCommonsSampling.js | 1 + .../faCreativeCommonsSamplingPlus.d.ts | 3 + .../faCreativeCommonsSamplingPlus.js | 1 + .../faCreativeCommonsShare.d.ts | 3 + .../faCreativeCommonsShare.js | 1 + .../fontawesome-free-brands/faCss3.d.ts | 3 + .../fontawesome-free-brands/faCss3.js | 1 + .../fontawesome-free-brands/faCss3Alt.d.ts | 3 + .../fontawesome-free-brands/faCss3Alt.js | 1 + .../fontawesome-free-brands/faCuttlefish.d.ts | 3 + .../fontawesome-free-brands/faCuttlefish.js | 1 + .../fontawesome-free-brands/faDAndD.d.ts | 3 + .../fontawesome-free-brands/faDAndD.js | 1 + .../fontawesome-free-brands/faDashcube.d.ts | 3 + .../fontawesome-free-brands/faDashcube.js | 1 + .../fontawesome-free-brands/faDelicious.d.ts | 3 + .../fontawesome-free-brands/faDelicious.js | 1 + .../fontawesome-free-brands/faDeploydog.d.ts | 3 + .../fontawesome-free-brands/faDeploydog.js | 1 + .../fontawesome-free-brands/faDeskpro.d.ts | 3 + .../fontawesome-free-brands/faDeskpro.js | 1 + .../fontawesome-free-brands/faDeviantart.d.ts | 3 + .../fontawesome-free-brands/faDeviantart.js | 1 + .../fontawesome-free-brands/faDigg.d.ts | 3 + .../fontawesome-free-brands/faDigg.js | 1 + .../faDigitalOcean.d.ts | 3 + .../fontawesome-free-brands/faDigitalOcean.js | 1 + .../fontawesome-free-brands/faDiscord.d.ts | 3 + .../fontawesome-free-brands/faDiscord.js | 1 + .../fontawesome-free-brands/faDiscourse.d.ts | 3 + .../fontawesome-free-brands/faDiscourse.js | 1 + .../fontawesome-free-brands/faDochub.d.ts | 3 + .../fontawesome-free-brands/faDochub.js | 1 + .../fontawesome-free-brands/faDocker.d.ts | 3 + .../fontawesome-free-brands/faDocker.js | 1 + .../faDraft2digital.d.ts | 3 + .../faDraft2digital.js | 1 + .../fontawesome-free-brands/faDribbble.d.ts | 3 + .../fontawesome-free-brands/faDribbble.js | 1 + .../faDribbbleSquare.d.ts | 3 + .../faDribbbleSquare.js | 1 + .../fontawesome-free-brands/faDropbox.d.ts | 3 + .../fontawesome-free-brands/faDropbox.js | 1 + .../fontawesome-free-brands/faDrupal.d.ts | 3 + .../fontawesome-free-brands/faDrupal.js | 1 + .../fontawesome-free-brands/faDyalog.d.ts | 3 + .../fontawesome-free-brands/faDyalog.js | 1 + .../fontawesome-free-brands/faEarlybirds.d.ts | 3 + .../fontawesome-free-brands/faEarlybirds.js | 1 + .../fontawesome-free-brands/faEbay.d.ts | 3 + .../fontawesome-free-brands/faEbay.js | 1 + .../fontawesome-free-brands/faEdge.d.ts | 3 + .../fontawesome-free-brands/faEdge.js | 1 + .../fontawesome-free-brands/faElementor.d.ts | 3 + .../fontawesome-free-brands/faElementor.js | 1 + .../fontawesome-free-brands/faEmber.d.ts | 3 + .../fontawesome-free-brands/faEmber.js | 1 + .../fontawesome-free-brands/faEmpire.d.ts | 3 + .../fontawesome-free-brands/faEmpire.js | 1 + .../fontawesome-free-brands/faEnvira.d.ts | 3 + .../fontawesome-free-brands/faEnvira.js | 1 + .../fontawesome-free-brands/faErlang.d.ts | 3 + .../fontawesome-free-brands/faErlang.js | 1 + .../fontawesome-free-brands/faEthereum.d.ts | 3 + .../fontawesome-free-brands/faEthereum.js | 1 + .../fontawesome-free-brands/faEtsy.d.ts | 3 + .../fontawesome-free-brands/faEtsy.js | 1 + .../faExpeditedssl.d.ts | 3 + .../fontawesome-free-brands/faExpeditedssl.js | 1 + .../fontawesome-free-brands/faFacebook.d.ts | 3 + .../fontawesome-free-brands/faFacebook.js | 1 + .../fontawesome-free-brands/faFacebookF.d.ts | 3 + .../fontawesome-free-brands/faFacebookF.js | 1 + .../faFacebookMessenger.d.ts | 3 + .../faFacebookMessenger.js | 1 + .../faFacebookSquare.d.ts | 3 + .../faFacebookSquare.js | 1 + .../fontawesome-free-brands/faFirefox.d.ts | 3 + .../fontawesome-free-brands/faFirefox.js | 1 + .../fontawesome-free-brands/faFirstOrder.d.ts | 3 + .../fontawesome-free-brands/faFirstOrder.js | 1 + .../faFirstOrderAlt.d.ts | 3 + .../faFirstOrderAlt.js | 1 + .../fontawesome-free-brands/faFirstdraft.d.ts | 3 + .../fontawesome-free-brands/faFirstdraft.js | 1 + .../fontawesome-free-brands/faFlickr.d.ts | 3 + .../fontawesome-free-brands/faFlickr.js | 1 + .../fontawesome-free-brands/faFlipboard.d.ts | 3 + .../fontawesome-free-brands/faFlipboard.js | 1 + .../fontawesome-free-brands/faFly.d.ts | 3 + .../fontawesome-free-brands/faFly.js | 1 + .../faFontAwesome.d.ts | 3 + .../fontawesome-free-brands/faFontAwesome.js | 1 + .../faFontAwesomeAlt.d.ts | 3 + .../faFontAwesomeAlt.js | 1 + .../faFontAwesomeFlag.d.ts | 3 + .../faFontAwesomeFlag.js | 1 + .../faFontAwesomeLogoFull.d.ts | 3 + .../faFontAwesomeLogoFull.js | 1 + .../fontawesome-free-brands/faFonticons.d.ts | 3 + .../fontawesome-free-brands/faFonticons.js | 1 + .../faFonticonsFi.d.ts | 3 + .../fontawesome-free-brands/faFonticonsFi.js | 1 + .../faFortAwesome.d.ts | 3 + .../fontawesome-free-brands/faFortAwesome.js | 1 + .../faFortAwesomeAlt.d.ts | 3 + .../faFortAwesomeAlt.js | 1 + .../fontawesome-free-brands/faForumbee.d.ts | 3 + .../fontawesome-free-brands/faForumbee.js | 1 + .../fontawesome-free-brands/faFoursquare.d.ts | 3 + .../fontawesome-free-brands/faFoursquare.js | 1 + .../faFreeCodeCamp.d.ts | 3 + .../fontawesome-free-brands/faFreeCodeCamp.js | 1 + .../fontawesome-free-brands/faFreebsd.d.ts | 3 + .../fontawesome-free-brands/faFreebsd.js | 1 + .../fontawesome-free-brands/faFulcrum.d.ts | 3 + .../fontawesome-free-brands/faFulcrum.js | 1 + .../faGalacticRepublic.d.ts | 3 + .../faGalacticRepublic.js | 1 + .../faGalacticSenate.d.ts | 3 + .../faGalacticSenate.js | 1 + .../fontawesome-free-brands/faGetPocket.d.ts | 3 + .../fontawesome-free-brands/faGetPocket.js | 1 + .../fontawesome-free-brands/faGg.d.ts | 3 + .../fontawesome-free-brands/faGg.js | 1 + .../fontawesome-free-brands/faGgCircle.d.ts | 3 + .../fontawesome-free-brands/faGgCircle.js | 1 + .../fontawesome-free-brands/faGit.d.ts | 3 + .../fontawesome-free-brands/faGit.js | 1 + .../fontawesome-free-brands/faGitSquare.d.ts | 3 + .../fontawesome-free-brands/faGitSquare.js | 1 + .../fontawesome-free-brands/faGithub.d.ts | 3 + .../fontawesome-free-brands/faGithub.js | 1 + .../fontawesome-free-brands/faGithubAlt.d.ts | 3 + .../fontawesome-free-brands/faGithubAlt.js | 1 + .../faGithubSquare.d.ts | 3 + .../fontawesome-free-brands/faGithubSquare.js | 1 + .../fontawesome-free-brands/faGitkraken.d.ts | 3 + .../fontawesome-free-brands/faGitkraken.js | 1 + .../fontawesome-free-brands/faGitlab.d.ts | 3 + .../fontawesome-free-brands/faGitlab.js | 1 + .../fontawesome-free-brands/faGitter.d.ts | 3 + .../fontawesome-free-brands/faGitter.js | 1 + .../fontawesome-free-brands/faGlide.d.ts | 3 + .../fontawesome-free-brands/faGlide.js | 1 + .../fontawesome-free-brands/faGlideG.d.ts | 3 + .../fontawesome-free-brands/faGlideG.js | 1 + .../fontawesome-free-brands/faGofore.d.ts | 3 + .../fontawesome-free-brands/faGofore.js | 1 + .../fontawesome-free-brands/faGoodreads.d.ts | 3 + .../fontawesome-free-brands/faGoodreads.js | 1 + .../fontawesome-free-brands/faGoodreadsG.d.ts | 3 + .../fontawesome-free-brands/faGoodreadsG.js | 1 + .../fontawesome-free-brands/faGoogle.d.ts | 3 + .../fontawesome-free-brands/faGoogle.js | 1 + .../faGoogleDrive.d.ts | 3 + .../fontawesome-free-brands/faGoogleDrive.js | 1 + .../fontawesome-free-brands/faGooglePlay.d.ts | 3 + .../fontawesome-free-brands/faGooglePlay.js | 1 + .../fontawesome-free-brands/faGooglePlus.d.ts | 3 + .../fontawesome-free-brands/faGooglePlus.js | 1 + .../faGooglePlusG.d.ts | 3 + .../fontawesome-free-brands/faGooglePlusG.js | 1 + .../faGooglePlusSquare.d.ts | 3 + .../faGooglePlusSquare.js | 1 + .../faGoogleWallet.d.ts | 3 + .../fontawesome-free-brands/faGoogleWallet.js | 1 + .../fontawesome-free-brands/faGratipay.d.ts | 3 + .../fontawesome-free-brands/faGratipay.js | 1 + .../fontawesome-free-brands/faGrav.d.ts | 3 + .../fontawesome-free-brands/faGrav.js | 1 + .../fontawesome-free-brands/faGripfire.d.ts | 3 + .../fontawesome-free-brands/faGripfire.js | 1 + .../fontawesome-free-brands/faGrunt.d.ts | 3 + .../fontawesome-free-brands/faGrunt.js | 1 + .../fontawesome-free-brands/faGulp.d.ts | 3 + .../fontawesome-free-brands/faGulp.js | 1 + .../fontawesome-free-brands/faHackerNews.d.ts | 3 + .../fontawesome-free-brands/faHackerNews.js | 1 + .../faHackerNewsSquare.d.ts | 3 + .../faHackerNewsSquare.js | 1 + .../fontawesome-free-brands/faHips.d.ts | 3 + .../fontawesome-free-brands/faHips.js | 1 + .../faHireAHelper.d.ts | 3 + .../fontawesome-free-brands/faHireAHelper.js | 1 + .../fontawesome-free-brands/faHooli.d.ts | 3 + .../fontawesome-free-brands/faHooli.js | 1 + .../fontawesome-free-brands/faHotjar.d.ts | 3 + .../fontawesome-free-brands/faHotjar.js | 1 + .../fontawesome-free-brands/faHouzz.d.ts | 3 + .../fontawesome-free-brands/faHouzz.js | 1 + .../fontawesome-free-brands/faHtml5.d.ts | 3 + .../fontawesome-free-brands/faHtml5.js | 1 + .../fontawesome-free-brands/faHubspot.d.ts | 3 + .../fontawesome-free-brands/faHubspot.js | 1 + .../fontawesome-free-brands/faImdb.d.ts | 3 + .../fontawesome-free-brands/faImdb.js | 1 + .../fontawesome-free-brands/faInstagram.d.ts | 3 + .../fontawesome-free-brands/faInstagram.js | 1 + .../faInternetExplorer.d.ts | 3 + .../faInternetExplorer.js | 1 + .../fontawesome-free-brands/faIoxhost.d.ts | 3 + .../fontawesome-free-brands/faIoxhost.js | 1 + .../fontawesome-free-brands/faItunes.d.ts | 3 + .../fontawesome-free-brands/faItunes.js | 1 + .../fontawesome-free-brands/faItunesNote.d.ts | 3 + .../fontawesome-free-brands/faItunesNote.js | 1 + .../fontawesome-free-brands/faJava.d.ts | 3 + .../fontawesome-free-brands/faJava.js | 1 + .../fontawesome-free-brands/faJediOrder.d.ts | 3 + .../fontawesome-free-brands/faJediOrder.js | 1 + .../fontawesome-free-brands/faJenkins.d.ts | 3 + .../fontawesome-free-brands/faJenkins.js | 1 + .../fontawesome-free-brands/faJoget.d.ts | 3 + .../fontawesome-free-brands/faJoget.js | 1 + .../fontawesome-free-brands/faJoomla.d.ts | 3 + .../fontawesome-free-brands/faJoomla.js | 1 + .../fontawesome-free-brands/faJs.d.ts | 3 + .../fontawesome-free-brands/faJs.js | 1 + .../fontawesome-free-brands/faJsSquare.d.ts | 3 + .../fontawesome-free-brands/faJsSquare.js | 1 + .../fontawesome-free-brands/faJsfiddle.d.ts | 3 + .../fontawesome-free-brands/faJsfiddle.js | 1 + .../fontawesome-free-brands/faKeybase.d.ts | 3 + .../fontawesome-free-brands/faKeybase.js | 1 + .../fontawesome-free-brands/faKeycdn.d.ts | 3 + .../fontawesome-free-brands/faKeycdn.js | 1 + .../faKickstarter.d.ts | 3 + .../fontawesome-free-brands/faKickstarter.js | 1 + .../faKickstarterK.d.ts | 3 + .../fontawesome-free-brands/faKickstarterK.js | 1 + .../fontawesome-free-brands/faKorvue.d.ts | 3 + .../fontawesome-free-brands/faKorvue.js | 1 + .../fontawesome-free-brands/faLaravel.d.ts | 3 + .../fontawesome-free-brands/faLaravel.js | 1 + .../fontawesome-free-brands/faLastfm.d.ts | 3 + .../fontawesome-free-brands/faLastfm.js | 1 + .../faLastfmSquare.d.ts | 3 + .../fontawesome-free-brands/faLastfmSquare.js | 1 + .../fontawesome-free-brands/faLeanpub.d.ts | 3 + .../fontawesome-free-brands/faLeanpub.js | 1 + .../fontawesome-free-brands/faLess.d.ts | 3 + .../fontawesome-free-brands/faLess.js | 1 + .../fontawesome-free-brands/faLine.d.ts | 3 + .../fontawesome-free-brands/faLine.js | 1 + .../fontawesome-free-brands/faLinkedin.d.ts | 3 + .../fontawesome-free-brands/faLinkedin.js | 1 + .../fontawesome-free-brands/faLinkedinIn.d.ts | 3 + .../fontawesome-free-brands/faLinkedinIn.js | 1 + .../fontawesome-free-brands/faLinode.d.ts | 3 + .../fontawesome-free-brands/faLinode.js | 1 + .../fontawesome-free-brands/faLinux.d.ts | 3 + .../fontawesome-free-brands/faLinux.js | 1 + .../fontawesome-free-brands/faLyft.d.ts | 3 + .../fontawesome-free-brands/faLyft.js | 1 + .../fontawesome-free-brands/faMagento.d.ts | 3 + .../fontawesome-free-brands/faMagento.js | 1 + .../faMandalorian.d.ts | 3 + .../fontawesome-free-brands/faMandalorian.js | 1 + .../fontawesome-free-brands/faMastodon.d.ts | 3 + .../fontawesome-free-brands/faMastodon.js | 1 + .../fontawesome-free-brands/faMaxcdn.d.ts | 3 + .../fontawesome-free-brands/faMaxcdn.js | 1 + .../fontawesome-free-brands/faMedapps.d.ts | 3 + .../fontawesome-free-brands/faMedapps.js | 1 + .../fontawesome-free-brands/faMedium.d.ts | 3 + .../fontawesome-free-brands/faMedium.js | 1 + .../fontawesome-free-brands/faMediumM.d.ts | 3 + .../fontawesome-free-brands/faMediumM.js | 1 + .../fontawesome-free-brands/faMedrt.d.ts | 3 + .../fontawesome-free-brands/faMedrt.js | 1 + .../fontawesome-free-brands/faMeetup.d.ts | 3 + .../fontawesome-free-brands/faMeetup.js | 1 + .../fontawesome-free-brands/faMicrosoft.d.ts | 3 + .../fontawesome-free-brands/faMicrosoft.js | 1 + .../fontawesome-free-brands/faMix.d.ts | 3 + .../fontawesome-free-brands/faMix.js | 1 + .../fontawesome-free-brands/faMixcloud.d.ts | 3 + .../fontawesome-free-brands/faMixcloud.js | 1 + .../fontawesome-free-brands/faMizuni.d.ts | 3 + .../fontawesome-free-brands/faMizuni.js | 1 + .../fontawesome-free-brands/faModx.d.ts | 3 + .../fontawesome-free-brands/faModx.js | 1 + .../fontawesome-free-brands/faMonero.d.ts | 3 + .../fontawesome-free-brands/faMonero.js | 1 + .../fontawesome-free-brands/faNapster.d.ts | 3 + .../fontawesome-free-brands/faNapster.js | 1 + .../faNintendoSwitch.d.ts | 3 + .../faNintendoSwitch.js | 1 + .../fontawesome-free-brands/faNode.d.ts | 3 + .../fontawesome-free-brands/faNode.js | 1 + .../fontawesome-free-brands/faNodeJs.d.ts | 3 + .../fontawesome-free-brands/faNodeJs.js | 1 + .../fontawesome-free-brands/faNpm.d.ts | 3 + .../fontawesome-free-brands/faNpm.js | 1 + .../fontawesome-free-brands/faNs8.d.ts | 3 + .../fontawesome-free-brands/faNs8.js | 1 + .../faNutritionix.d.ts | 3 + .../fontawesome-free-brands/faNutritionix.js | 1 + .../faOdnoklassniki.d.ts | 3 + .../faOdnoklassniki.js | 1 + .../faOdnoklassnikiSquare.d.ts | 3 + .../faOdnoklassnikiSquare.js | 1 + .../faOldRepublic.d.ts | 3 + .../fontawesome-free-brands/faOldRepublic.js | 1 + .../fontawesome-free-brands/faOpencart.d.ts | 3 + .../fontawesome-free-brands/faOpencart.js | 1 + .../fontawesome-free-brands/faOpenid.d.ts | 3 + .../fontawesome-free-brands/faOpenid.js | 1 + .../fontawesome-free-brands/faOpera.d.ts | 3 + .../fontawesome-free-brands/faOpera.js | 1 + .../faOptinMonster.d.ts | 3 + .../fontawesome-free-brands/faOptinMonster.js | 1 + .../fontawesome-free-brands/faOsi.d.ts | 3 + .../fontawesome-free-brands/faOsi.js | 1 + .../fontawesome-free-brands/faPage4.d.ts | 3 + .../fontawesome-free-brands/faPage4.js | 1 + .../fontawesome-free-brands/faPagelines.d.ts | 3 + .../fontawesome-free-brands/faPagelines.js | 1 + .../fontawesome-free-brands/faPalfed.d.ts | 3 + .../fontawesome-free-brands/faPalfed.js | 1 + .../fontawesome-free-brands/faPatreon.d.ts | 3 + .../fontawesome-free-brands/faPatreon.js | 1 + .../fontawesome-free-brands/faPaypal.d.ts | 3 + .../fontawesome-free-brands/faPaypal.js | 1 + .../fontawesome-free-brands/faPeriscope.d.ts | 3 + .../fontawesome-free-brands/faPeriscope.js | 1 + .../faPhabricator.d.ts | 3 + .../fontawesome-free-brands/faPhabricator.js | 1 + .../faPhoenixFramework.d.ts | 3 + .../faPhoenixFramework.js | 1 + .../faPhoenixSquadron.d.ts | 3 + .../faPhoenixSquadron.js | 1 + .../fontawesome-free-brands/faPhp.d.ts | 3 + .../fontawesome-free-brands/faPhp.js | 1 + .../fontawesome-free-brands/faPiedPiper.d.ts | 3 + .../fontawesome-free-brands/faPiedPiper.js | 1 + .../faPiedPiperAlt.d.ts | 3 + .../fontawesome-free-brands/faPiedPiperAlt.js | 1 + .../faPiedPiperHat.d.ts | 3 + .../fontawesome-free-brands/faPiedPiperHat.js | 1 + .../faPiedPiperPp.d.ts | 3 + .../fontawesome-free-brands/faPiedPiperPp.js | 1 + .../fontawesome-free-brands/faPinterest.d.ts | 3 + .../fontawesome-free-brands/faPinterest.js | 1 + .../fontawesome-free-brands/faPinterestP.d.ts | 3 + .../fontawesome-free-brands/faPinterestP.js | 1 + .../faPinterestSquare.d.ts | 3 + .../faPinterestSquare.js | 1 + .../faPlaystation.d.ts | 3 + .../fontawesome-free-brands/faPlaystation.js | 1 + .../faProductHunt.d.ts | 3 + .../fontawesome-free-brands/faProductHunt.js | 1 + .../fontawesome-free-brands/faPushed.d.ts | 3 + .../fontawesome-free-brands/faPushed.js | 1 + .../fontawesome-free-brands/faPython.d.ts | 3 + .../fontawesome-free-brands/faPython.js | 1 + .../fontawesome-free-brands/faQq.d.ts | 3 + .../fontawesome-free-brands/faQq.js | 1 + .../fontawesome-free-brands/faQuinscape.d.ts | 3 + .../fontawesome-free-brands/faQuinscape.js | 1 + .../fontawesome-free-brands/faQuora.d.ts | 3 + .../fontawesome-free-brands/faQuora.js | 1 + .../fontawesome-free-brands/faR.d.ts | 3 + .../fontawesome-free-brands/faR.js | 1 + .../fontawesome-free-brands/faRProject.d.ts | 3 + .../fontawesome-free-brands/faRProject.js | 1 + .../fontawesome-free-brands/faRavelry.d.ts | 3 + .../fontawesome-free-brands/faRavelry.js | 1 + .../fontawesome-free-brands/faReact.d.ts | 3 + .../fontawesome-free-brands/faReact.js | 1 + .../fontawesome-free-brands/faReadme.d.ts | 3 + .../fontawesome-free-brands/faReadme.js | 1 + .../fontawesome-free-brands/faRebel.d.ts | 3 + .../fontawesome-free-brands/faRebel.js | 1 + .../fontawesome-free-brands/faRedRiver.d.ts | 3 + .../fontawesome-free-brands/faRedRiver.js | 1 + .../fontawesome-free-brands/faReddit.d.ts | 3 + .../fontawesome-free-brands/faReddit.js | 1 + .../faRedditAlien.d.ts | 3 + .../fontawesome-free-brands/faRedditAlien.js | 1 + .../faRedditSquare.d.ts | 3 + .../fontawesome-free-brands/faRedditSquare.js | 1 + .../fontawesome-free-brands/faRendact.d.ts | 3 + .../fontawesome-free-brands/faRendact.js | 1 + .../fontawesome-free-brands/faRenren.d.ts | 3 + .../fontawesome-free-brands/faRenren.js | 1 + .../fontawesome-free-brands/faReplyd.d.ts | 3 + .../fontawesome-free-brands/faReplyd.js | 1 + .../faResearchgate.d.ts | 3 + .../fontawesome-free-brands/faResearchgate.js | 1 + .../fontawesome-free-brands/faResolving.d.ts | 3 + .../fontawesome-free-brands/faResolving.js | 1 + .../fontawesome-free-brands/faRocketchat.d.ts | 3 + .../fontawesome-free-brands/faRocketchat.js | 1 + .../fontawesome-free-brands/faRockrms.d.ts | 3 + .../fontawesome-free-brands/faRockrms.js | 1 + .../fontawesome-free-brands/faSafari.d.ts | 3 + .../fontawesome-free-brands/faSafari.js | 1 + .../fontawesome-free-brands/faSass.d.ts | 3 + .../fontawesome-free-brands/faSass.js | 1 + .../fontawesome-free-brands/faSchlix.d.ts | 3 + .../fontawesome-free-brands/faSchlix.js | 1 + .../fontawesome-free-brands/faScribd.d.ts | 3 + .../fontawesome-free-brands/faScribd.js | 1 + .../faSearchengin.d.ts | 3 + .../fontawesome-free-brands/faSearchengin.js | 1 + .../fontawesome-free-brands/faSellcast.d.ts | 3 + .../fontawesome-free-brands/faSellcast.js | 1 + .../fontawesome-free-brands/faSellsy.d.ts | 3 + .../fontawesome-free-brands/faSellsy.js | 1 + .../faServicestack.d.ts | 3 + .../fontawesome-free-brands/faServicestack.js | 1 + .../faShirtsinbulk.d.ts | 3 + .../fontawesome-free-brands/faShirtsinbulk.js | 1 + .../faSimplybuilt.d.ts | 3 + .../fontawesome-free-brands/faSimplybuilt.js | 1 + .../fontawesome-free-brands/faSistrix.d.ts | 3 + .../fontawesome-free-brands/faSistrix.js | 1 + .../fontawesome-free-brands/faSith.d.ts | 3 + .../fontawesome-free-brands/faSith.js | 1 + .../fontawesome-free-brands/faSkyatlas.d.ts | 3 + .../fontawesome-free-brands/faSkyatlas.js | 1 + .../fontawesome-free-brands/faSkype.d.ts | 3 + .../fontawesome-free-brands/faSkype.js | 1 + .../fontawesome-free-brands/faSlack.d.ts | 3 + .../fontawesome-free-brands/faSlack.js | 1 + .../fontawesome-free-brands/faSlackHash.d.ts | 3 + .../fontawesome-free-brands/faSlackHash.js | 1 + .../fontawesome-free-brands/faSlideshare.d.ts | 3 + .../fontawesome-free-brands/faSlideshare.js | 1 + .../fontawesome-free-brands/faSnapchat.d.ts | 3 + .../fontawesome-free-brands/faSnapchat.js | 1 + .../faSnapchatGhost.d.ts | 3 + .../faSnapchatGhost.js | 1 + .../faSnapchatSquare.d.ts | 3 + .../faSnapchatSquare.js | 1 + .../fontawesome-free-brands/faSoundcloud.d.ts | 3 + .../fontawesome-free-brands/faSoundcloud.js | 1 + .../fontawesome-free-brands/faSpeakap.d.ts | 3 + .../fontawesome-free-brands/faSpeakap.js | 1 + .../fontawesome-free-brands/faSpotify.d.ts | 3 + .../fontawesome-free-brands/faSpotify.js | 1 + .../faStackExchange.d.ts | 3 + .../faStackExchange.js | 1 + .../faStackOverflow.d.ts | 3 + .../faStackOverflow.js | 1 + .../fontawesome-free-brands/faStaylinked.d.ts | 3 + .../fontawesome-free-brands/faStaylinked.js | 1 + .../fontawesome-free-brands/faSteam.d.ts | 3 + .../fontawesome-free-brands/faSteam.js | 1 + .../faSteamSquare.d.ts | 3 + .../fontawesome-free-brands/faSteamSquare.js | 1 + .../faSteamSymbol.d.ts | 3 + .../fontawesome-free-brands/faSteamSymbol.js | 1 + .../faStickerMule.d.ts | 3 + .../fontawesome-free-brands/faStickerMule.js | 1 + .../fontawesome-free-brands/faStrava.d.ts | 3 + .../fontawesome-free-brands/faStrava.js | 1 + .../fontawesome-free-brands/faStripe.d.ts | 3 + .../fontawesome-free-brands/faStripe.js | 1 + .../fontawesome-free-brands/faStripeS.d.ts | 3 + .../fontawesome-free-brands/faStripeS.js | 1 + .../faStudiovinari.d.ts | 3 + .../fontawesome-free-brands/faStudiovinari.js | 1 + .../faStumbleupon.d.ts | 3 + .../fontawesome-free-brands/faStumbleupon.js | 1 + .../faStumbleuponCircle.d.ts | 3 + .../faStumbleuponCircle.js | 1 + .../faSuperpowers.d.ts | 3 + .../fontawesome-free-brands/faSuperpowers.js | 1 + .../fontawesome-free-brands/faSupple.d.ts | 3 + .../fontawesome-free-brands/faSupple.js | 1 + .../fontawesome-free-brands/faTeamspeak.d.ts | 3 + .../fontawesome-free-brands/faTeamspeak.js | 1 + .../fontawesome-free-brands/faTelegram.d.ts | 3 + .../fontawesome-free-brands/faTelegram.js | 1 + .../faTelegramPlane.d.ts | 3 + .../faTelegramPlane.js | 1 + .../faTencentWeibo.d.ts | 3 + .../fontawesome-free-brands/faTencentWeibo.js | 1 + .../fontawesome-free-brands/faThemeisle.d.ts | 3 + .../fontawesome-free-brands/faThemeisle.js | 1 + .../faTradeFederation.d.ts | 3 + .../faTradeFederation.js | 1 + .../fontawesome-free-brands/faTrello.d.ts | 3 + .../fontawesome-free-brands/faTrello.js | 1 + .../faTripadvisor.d.ts | 3 + .../fontawesome-free-brands/faTripadvisor.js | 1 + .../fontawesome-free-brands/faTumblr.d.ts | 3 + .../fontawesome-free-brands/faTumblr.js | 1 + .../faTumblrSquare.d.ts | 3 + .../fontawesome-free-brands/faTumblrSquare.js | 1 + .../fontawesome-free-brands/faTwitch.d.ts | 3 + .../fontawesome-free-brands/faTwitch.js | 1 + .../fontawesome-free-brands/faTwitter.d.ts | 3 + .../fontawesome-free-brands/faTwitter.js | 1 + .../faTwitterSquare.d.ts | 3 + .../faTwitterSquare.js | 1 + .../fontawesome-free-brands/faTypo3.d.ts | 3 + .../fontawesome-free-brands/faTypo3.js | 1 + .../fontawesome-free-brands/faUber.d.ts | 3 + .../fontawesome-free-brands/faUber.js | 1 + .../fontawesome-free-brands/faUikit.d.ts | 3 + .../fontawesome-free-brands/faUikit.js | 1 + .../faUniregistry.d.ts | 3 + .../fontawesome-free-brands/faUniregistry.js | 1 + .../fontawesome-free-brands/faUntappd.d.ts | 3 + .../fontawesome-free-brands/faUntappd.js | 1 + .../fontawesome-free-brands/faUsb.d.ts | 3 + .../fontawesome-free-brands/faUsb.js | 1 + .../fontawesome-free-brands/faUssunnah.d.ts | 3 + .../fontawesome-free-brands/faUssunnah.js | 1 + .../fontawesome-free-brands/faVaadin.d.ts | 3 + .../fontawesome-free-brands/faVaadin.js | 1 + .../fontawesome-free-brands/faViacoin.d.ts | 3 + .../fontawesome-free-brands/faViacoin.js | 1 + .../fontawesome-free-brands/faViadeo.d.ts | 3 + .../fontawesome-free-brands/faViadeo.js | 1 + .../faViadeoSquare.d.ts | 3 + .../fontawesome-free-brands/faViadeoSquare.js | 1 + .../fontawesome-free-brands/faViber.d.ts | 3 + .../fontawesome-free-brands/faViber.js | 1 + .../fontawesome-free-brands/faVimeo.d.ts | 3 + .../fontawesome-free-brands/faVimeo.js | 1 + .../faVimeoSquare.d.ts | 3 + .../fontawesome-free-brands/faVimeoSquare.js | 1 + .../fontawesome-free-brands/faVimeoV.d.ts | 3 + .../fontawesome-free-brands/faVimeoV.js | 1 + .../fontawesome-free-brands/faVine.d.ts | 3 + .../fontawesome-free-brands/faVine.js | 1 + .../fontawesome-free-brands/faVk.d.ts | 3 + .../fontawesome-free-brands/faVk.js | 1 + .../fontawesome-free-brands/faVnv.d.ts | 3 + .../fontawesome-free-brands/faVnv.js | 1 + .../fontawesome-free-brands/faVuejs.d.ts | 3 + .../fontawesome-free-brands/faVuejs.js | 1 + .../fontawesome-free-brands/faWeibo.d.ts | 3 + .../fontawesome-free-brands/faWeibo.js | 1 + .../fontawesome-free-brands/faWeixin.d.ts | 3 + .../fontawesome-free-brands/faWeixin.js | 1 + .../fontawesome-free-brands/faWhatsapp.d.ts | 3 + .../fontawesome-free-brands/faWhatsapp.js | 1 + .../faWhatsappSquare.d.ts | 3 + .../faWhatsappSquare.js | 1 + .../fontawesome-free-brands/faWhmcs.d.ts | 3 + .../fontawesome-free-brands/faWhmcs.js | 1 + .../fontawesome-free-brands/faWikipediaW.d.ts | 3 + .../fontawesome-free-brands/faWikipediaW.js | 1 + .../fontawesome-free-brands/faWindows.d.ts | 3 + .../fontawesome-free-brands/faWindows.js | 1 + .../faWolfPackBattalion.d.ts | 3 + .../faWolfPackBattalion.js | 1 + .../fontawesome-free-brands/faWordpress.d.ts | 3 + .../fontawesome-free-brands/faWordpress.js | 1 + .../faWordpressSimple.d.ts | 3 + .../faWordpressSimple.js | 1 + .../fontawesome-free-brands/faWpbeginner.d.ts | 3 + .../fontawesome-free-brands/faWpbeginner.js | 1 + .../fontawesome-free-brands/faWpexplorer.d.ts | 3 + .../fontawesome-free-brands/faWpexplorer.js | 1 + .../fontawesome-free-brands/faWpforms.d.ts | 3 + .../fontawesome-free-brands/faWpforms.js | 1 + .../fontawesome-free-brands/faXbox.d.ts | 3 + .../fontawesome-free-brands/faXbox.js | 1 + .../fontawesome-free-brands/faXing.d.ts | 3 + .../fontawesome-free-brands/faXing.js | 1 + .../fontawesome-free-brands/faXingSquare.d.ts | 3 + .../fontawesome-free-brands/faXingSquare.js | 1 + .../faYCombinator.d.ts | 3 + .../fontawesome-free-brands/faYCombinator.js | 1 + .../fontawesome-free-brands/faYahoo.d.ts | 3 + .../fontawesome-free-brands/faYahoo.js | 1 + .../fontawesome-free-brands/faYandex.d.ts | 3 + .../fontawesome-free-brands/faYandex.js | 1 + .../faYandexInternational.d.ts | 3 + .../faYandexInternational.js | 1 + .../fontawesome-free-brands/faYelp.d.ts | 3 + .../fontawesome-free-brands/faYelp.js | 1 + .../fontawesome-free-brands/faYoast.d.ts | 3 + .../fontawesome-free-brands/faYoast.js | 1 + .../fontawesome-free-brands/faYoutube.d.ts | 3 + .../fontawesome-free-brands/faYoutube.js | 1 + .../faYoutubeSquare.d.ts | 3 + .../faYoutubeSquare.js | 1 + .../fontawesome-free-brands/index.d.ts | 367 + .../fontawesome-free-brands/index.es.js | 848 + .../fontawesome-free-brands/index.js | 1221 + .../fontawesome-free-brands/package.json | 58 + .../fontawesome-free-brands/shakable.es.js | 736 + .../fontawesome-free-brands/shakable.js | 1109 + .../fontawesome-free-regular/LICENSE.txt | 34 + .../fontawesome-free-regular/README.md | 27 + .../faAddressBook.d.ts | 3 + .../fontawesome-free-regular/faAddressBook.js | 1 + .../faAddressCard.d.ts | 3 + .../fontawesome-free-regular/faAddressCard.js | 1 + .../faArrowAltCircleDown.d.ts | 3 + .../faArrowAltCircleDown.js | 1 + .../faArrowAltCircleLeft.d.ts | 3 + .../faArrowAltCircleLeft.js | 1 + .../faArrowAltCircleRight.d.ts | 3 + .../faArrowAltCircleRight.js | 1 + .../faArrowAltCircleUp.d.ts | 3 + .../faArrowAltCircleUp.js | 1 + .../fontawesome-free-regular/faBell.d.ts | 3 + .../fontawesome-free-regular/faBell.js | 1 + .../fontawesome-free-regular/faBellSlash.d.ts | 3 + .../fontawesome-free-regular/faBellSlash.js | 1 + .../fontawesome-free-regular/faBookmark.d.ts | 3 + .../fontawesome-free-regular/faBookmark.js | 1 + .../fontawesome-free-regular/faBuilding.d.ts | 3 + .../fontawesome-free-regular/faBuilding.js | 1 + .../fontawesome-free-regular/faCalendar.d.ts | 3 + .../fontawesome-free-regular/faCalendar.js | 1 + .../faCalendarAlt.d.ts | 3 + .../fontawesome-free-regular/faCalendarAlt.js | 1 + .../faCalendarCheck.d.ts | 3 + .../faCalendarCheck.js | 1 + .../faCalendarMinus.d.ts | 3 + .../faCalendarMinus.js | 1 + .../faCalendarPlus.d.ts | 3 + .../faCalendarPlus.js | 1 + .../faCalendarTimes.d.ts | 3 + .../faCalendarTimes.js | 1 + .../faCaretSquareDown.d.ts | 3 + .../faCaretSquareDown.js | 1 + .../faCaretSquareLeft.d.ts | 3 + .../faCaretSquareLeft.js | 1 + .../faCaretSquareRight.d.ts | 3 + .../faCaretSquareRight.js | 1 + .../faCaretSquareUp.d.ts | 3 + .../faCaretSquareUp.js | 1 + .../fontawesome-free-regular/faChartBar.d.ts | 3 + .../fontawesome-free-regular/faChartBar.js | 1 + .../faCheckCircle.d.ts | 3 + .../fontawesome-free-regular/faCheckCircle.js | 1 + .../faCheckSquare.d.ts | 3 + .../fontawesome-free-regular/faCheckSquare.js | 1 + .../fontawesome-free-regular/faCircle.d.ts | 3 + .../fontawesome-free-regular/faCircle.js | 1 + .../fontawesome-free-regular/faClipboard.d.ts | 3 + .../fontawesome-free-regular/faClipboard.js | 1 + .../fontawesome-free-regular/faClock.d.ts | 3 + .../fontawesome-free-regular/faClock.js | 1 + .../fontawesome-free-regular/faClone.d.ts | 3 + .../fontawesome-free-regular/faClone.js | 1 + .../faClosedCaptioning.d.ts | 3 + .../faClosedCaptioning.js | 1 + .../fontawesome-free-regular/faComment.d.ts | 3 + .../fontawesome-free-regular/faComment.js | 1 + .../faCommentAlt.d.ts | 3 + .../fontawesome-free-regular/faCommentAlt.js | 1 + .../faCommentDots.d.ts | 3 + .../fontawesome-free-regular/faCommentDots.js | 1 + .../fontawesome-free-regular/faComments.d.ts | 3 + .../fontawesome-free-regular/faComments.js | 1 + .../fontawesome-free-regular/faCompass.d.ts | 3 + .../fontawesome-free-regular/faCompass.js | 1 + .../fontawesome-free-regular/faCopy.d.ts | 3 + .../fontawesome-free-regular/faCopy.js | 1 + .../fontawesome-free-regular/faCopyright.d.ts | 3 + .../fontawesome-free-regular/faCopyright.js | 1 + .../faCreditCard.d.ts | 3 + .../fontawesome-free-regular/faCreditCard.js | 1 + .../fontawesome-free-regular/faDotCircle.d.ts | 3 + .../fontawesome-free-regular/faDotCircle.js | 1 + .../fontawesome-free-regular/faEdit.d.ts | 3 + .../fontawesome-free-regular/faEdit.js | 1 + .../fontawesome-free-regular/faEnvelope.d.ts | 3 + .../fontawesome-free-regular/faEnvelope.js | 1 + .../faEnvelopeOpen.d.ts | 3 + .../faEnvelopeOpen.js | 1 + .../fontawesome-free-regular/faEye.d.ts | 3 + .../fontawesome-free-regular/faEye.js | 1 + .../fontawesome-free-regular/faEyeSlash.d.ts | 3 + .../fontawesome-free-regular/faEyeSlash.js | 1 + .../fontawesome-free-regular/faFile.d.ts | 3 + .../fontawesome-free-regular/faFile.js | 1 + .../fontawesome-free-regular/faFileAlt.d.ts | 3 + .../fontawesome-free-regular/faFileAlt.js | 1 + .../faFileArchive.d.ts | 3 + .../fontawesome-free-regular/faFileArchive.js | 1 + .../fontawesome-free-regular/faFileAudio.d.ts | 3 + .../fontawesome-free-regular/faFileAudio.js | 1 + .../fontawesome-free-regular/faFileCode.d.ts | 3 + .../fontawesome-free-regular/faFileCode.js | 1 + .../fontawesome-free-regular/faFileExcel.d.ts | 3 + .../fontawesome-free-regular/faFileExcel.js | 1 + .../fontawesome-free-regular/faFileImage.d.ts | 3 + .../fontawesome-free-regular/faFileImage.js | 1 + .../fontawesome-free-regular/faFilePdf.d.ts | 3 + .../fontawesome-free-regular/faFilePdf.js | 1 + .../faFilePowerpoint.d.ts | 3 + .../faFilePowerpoint.js | 1 + .../fontawesome-free-regular/faFileVideo.d.ts | 3 + .../fontawesome-free-regular/faFileVideo.js | 1 + .../fontawesome-free-regular/faFileWord.d.ts | 3 + .../fontawesome-free-regular/faFileWord.js | 1 + .../fontawesome-free-regular/faFlag.d.ts | 3 + .../fontawesome-free-regular/faFlag.js | 1 + .../fontawesome-free-regular/faFolder.d.ts | 3 + .../fontawesome-free-regular/faFolder.js | 1 + .../faFolderOpen.d.ts | 3 + .../fontawesome-free-regular/faFolderOpen.js | 1 + .../faFontAwesomeLogoFull.d.ts | 3 + .../faFontAwesomeLogoFull.js | 1 + .../fontawesome-free-regular/faFrown.d.ts | 3 + .../fontawesome-free-regular/faFrown.js | 1 + .../fontawesome-free-regular/faFutbol.d.ts | 3 + .../fontawesome-free-regular/faFutbol.js | 1 + .../fontawesome-free-regular/faGem.d.ts | 3 + .../fontawesome-free-regular/faGem.js | 1 + .../faHandLizard.d.ts | 3 + .../fontawesome-free-regular/faHandLizard.js | 1 + .../fontawesome-free-regular/faHandPaper.d.ts | 3 + .../fontawesome-free-regular/faHandPaper.js | 1 + .../fontawesome-free-regular/faHandPeace.d.ts | 3 + .../fontawesome-free-regular/faHandPeace.js | 1 + .../faHandPointDown.d.ts | 3 + .../faHandPointDown.js | 1 + .../faHandPointLeft.d.ts | 3 + .../faHandPointLeft.js | 1 + .../faHandPointRight.d.ts | 3 + .../faHandPointRight.js | 1 + .../faHandPointUp.d.ts | 3 + .../fontawesome-free-regular/faHandPointUp.js | 1 + .../faHandPointer.d.ts | 3 + .../fontawesome-free-regular/faHandPointer.js | 1 + .../fontawesome-free-regular/faHandRock.d.ts | 3 + .../fontawesome-free-regular/faHandRock.js | 1 + .../faHandScissors.d.ts | 3 + .../faHandScissors.js | 1 + .../fontawesome-free-regular/faHandSpock.d.ts | 3 + .../fontawesome-free-regular/faHandSpock.js | 1 + .../fontawesome-free-regular/faHandshake.d.ts | 3 + .../fontawesome-free-regular/faHandshake.js | 1 + .../fontawesome-free-regular/faHdd.d.ts | 3 + .../fontawesome-free-regular/faHdd.js | 1 + .../fontawesome-free-regular/faHeart.d.ts | 3 + .../fontawesome-free-regular/faHeart.js | 1 + .../fontawesome-free-regular/faHospital.d.ts | 3 + .../fontawesome-free-regular/faHospital.js | 1 + .../fontawesome-free-regular/faHourglass.d.ts | 3 + .../fontawesome-free-regular/faHourglass.js | 1 + .../fontawesome-free-regular/faIdBadge.d.ts | 3 + .../fontawesome-free-regular/faIdBadge.js | 1 + .../fontawesome-free-regular/faIdCard.d.ts | 3 + .../fontawesome-free-regular/faIdCard.js | 1 + .../fontawesome-free-regular/faImage.d.ts | 3 + .../fontawesome-free-regular/faImage.js | 1 + .../fontawesome-free-regular/faImages.d.ts | 3 + .../fontawesome-free-regular/faImages.js | 1 + .../fontawesome-free-regular/faKeyboard.d.ts | 3 + .../fontawesome-free-regular/faKeyboard.js | 1 + .../fontawesome-free-regular/faLemon.d.ts | 3 + .../fontawesome-free-regular/faLemon.js | 1 + .../fontawesome-free-regular/faLifeRing.d.ts | 3 + .../fontawesome-free-regular/faLifeRing.js | 1 + .../fontawesome-free-regular/faLightbulb.d.ts | 3 + .../fontawesome-free-regular/faLightbulb.js | 1 + .../fontawesome-free-regular/faListAlt.d.ts | 3 + .../fontawesome-free-regular/faListAlt.js | 1 + .../fontawesome-free-regular/faMap.d.ts | 3 + .../fontawesome-free-regular/faMap.js | 1 + .../fontawesome-free-regular/faMeh.d.ts | 3 + .../fontawesome-free-regular/faMeh.js | 1 + .../faMinusSquare.d.ts | 3 + .../fontawesome-free-regular/faMinusSquare.js | 1 + .../faMoneyBillAlt.d.ts | 3 + .../faMoneyBillAlt.js | 1 + .../fontawesome-free-regular/faMoon.d.ts | 3 + .../fontawesome-free-regular/faMoon.js | 1 + .../fontawesome-free-regular/faNewspaper.d.ts | 3 + .../fontawesome-free-regular/faNewspaper.js | 1 + .../faObjectGroup.d.ts | 3 + .../fontawesome-free-regular/faObjectGroup.js | 1 + .../faObjectUngroup.d.ts | 3 + .../faObjectUngroup.js | 1 + .../faPaperPlane.d.ts | 3 + .../fontawesome-free-regular/faPaperPlane.js | 1 + .../faPauseCircle.d.ts | 3 + .../fontawesome-free-regular/faPauseCircle.js | 1 + .../faPlayCircle.d.ts | 3 + .../fontawesome-free-regular/faPlayCircle.js | 1 + .../faPlusSquare.d.ts | 3 + .../fontawesome-free-regular/faPlusSquare.js | 1 + .../faQuestionCircle.d.ts | 3 + .../faQuestionCircle.js | 1 + .../faRegistered.d.ts | 3 + .../fontawesome-free-regular/faRegistered.js | 1 + .../fontawesome-free-regular/faSave.d.ts | 3 + .../fontawesome-free-regular/faSave.js | 1 + .../faShareSquare.d.ts | 3 + .../fontawesome-free-regular/faShareSquare.js | 1 + .../fontawesome-free-regular/faSmile.d.ts | 3 + .../fontawesome-free-regular/faSmile.js | 1 + .../fontawesome-free-regular/faSnowflake.d.ts | 3 + .../fontawesome-free-regular/faSnowflake.js | 1 + .../fontawesome-free-regular/faSquare.d.ts | 3 + .../fontawesome-free-regular/faSquare.js | 1 + .../fontawesome-free-regular/faStar.d.ts | 3 + .../fontawesome-free-regular/faStar.js | 1 + .../fontawesome-free-regular/faStarHalf.d.ts | 3 + .../fontawesome-free-regular/faStarHalf.js | 1 + .../faStickyNote.d.ts | 3 + .../fontawesome-free-regular/faStickyNote.js | 1 + .../faStopCircle.d.ts | 3 + .../fontawesome-free-regular/faStopCircle.js | 1 + .../fontawesome-free-regular/faSun.d.ts | 3 + .../fontawesome-free-regular/faSun.js | 1 + .../faThumbsDown.d.ts | 3 + .../fontawesome-free-regular/faThumbsDown.js | 1 + .../fontawesome-free-regular/faThumbsUp.d.ts | 3 + .../fontawesome-free-regular/faThumbsUp.js | 1 + .../faTimesCircle.d.ts | 3 + .../fontawesome-free-regular/faTimesCircle.js | 1 + .../fontawesome-free-regular/faTrashAlt.d.ts | 3 + .../fontawesome-free-regular/faTrashAlt.js | 1 + .../fontawesome-free-regular/faUser.d.ts | 3 + .../fontawesome-free-regular/faUser.js | 1 + .../faUserCircle.d.ts | 3 + .../fontawesome-free-regular/faUserCircle.js | 1 + .../faWindowClose.d.ts | 3 + .../fontawesome-free-regular/faWindowClose.js | 1 + .../faWindowMaximize.d.ts | 3 + .../faWindowMaximize.js | 1 + .../faWindowMinimize.d.ts | 3 + .../faWindowMinimize.js | 1 + .../faWindowRestore.d.ts | 3 + .../faWindowRestore.js | 1 + .../fontawesome-free-regular/index.d.ts | 123 + .../fontawesome-free-regular/index.es.js | 360 + .../fontawesome-free-regular/index.js | 489 + .../fontawesome-free-regular/package.json | 59 + .../fontawesome-free-regular/shakable.es.js | 248 + .../fontawesome-free-regular/shakable.js | 377 + .../fontawesome-free-solid/LICENSE.txt | 34 + .../fontawesome-free-solid/README.md | 27 + .../fontawesome-free-solid/faAddressBook.d.ts | 3 + .../fontawesome-free-solid/faAddressBook.js | 1 + .../fontawesome-free-solid/faAddressCard.d.ts | 3 + .../fontawesome-free-solid/faAddressCard.js | 1 + .../fontawesome-free-solid/faAdjust.d.ts | 3 + .../fontawesome-free-solid/faAdjust.js | 1 + .../fontawesome-free-solid/faAlignCenter.d.ts | 3 + .../fontawesome-free-solid/faAlignCenter.js | 1 + .../faAlignJustify.d.ts | 3 + .../fontawesome-free-solid/faAlignJustify.js | 1 + .../fontawesome-free-solid/faAlignLeft.d.ts | 3 + .../fontawesome-free-solid/faAlignLeft.js | 1 + .../fontawesome-free-solid/faAlignRight.d.ts | 3 + .../fontawesome-free-solid/faAlignRight.js | 1 + .../fontawesome-free-solid/faAllergies.d.ts | 3 + .../fontawesome-free-solid/faAllergies.js | 1 + .../fontawesome-free-solid/faAmbulance.d.ts | 3 + .../fontawesome-free-solid/faAmbulance.js | 1 + .../faAmericanSignLanguageInterpreting.d.ts | 3 + .../faAmericanSignLanguageInterpreting.js | 1 + .../fontawesome-free-solid/faAnchor.d.ts | 3 + .../fontawesome-free-solid/faAnchor.js | 1 + .../faAngleDoubleDown.d.ts | 3 + .../faAngleDoubleDown.js | 1 + .../faAngleDoubleLeft.d.ts | 3 + .../faAngleDoubleLeft.js | 1 + .../faAngleDoubleRight.d.ts | 3 + .../faAngleDoubleRight.js | 1 + .../faAngleDoubleUp.d.ts | 3 + .../fontawesome-free-solid/faAngleDoubleUp.js | 1 + .../fontawesome-free-solid/faAngleDown.d.ts | 3 + .../fontawesome-free-solid/faAngleDown.js | 1 + .../fontawesome-free-solid/faAngleLeft.d.ts | 3 + .../fontawesome-free-solid/faAngleLeft.js | 1 + .../fontawesome-free-solid/faAngleRight.d.ts | 3 + .../fontawesome-free-solid/faAngleRight.js | 1 + .../fontawesome-free-solid/faAngleUp.d.ts | 3 + .../fontawesome-free-solid/faAngleUp.js | 1 + .../fontawesome-free-solid/faArchive.d.ts | 3 + .../fontawesome-free-solid/faArchive.js | 1 + .../faArrowAltCircleDown.d.ts | 3 + .../faArrowAltCircleDown.js | 1 + .../faArrowAltCircleLeft.d.ts | 3 + .../faArrowAltCircleLeft.js | 1 + .../faArrowAltCircleRight.d.ts | 3 + .../faArrowAltCircleRight.js | 1 + .../faArrowAltCircleUp.d.ts | 3 + .../faArrowAltCircleUp.js | 1 + .../faArrowCircleDown.d.ts | 3 + .../faArrowCircleDown.js | 1 + .../faArrowCircleLeft.d.ts | 3 + .../faArrowCircleLeft.js | 1 + .../faArrowCircleRight.d.ts | 3 + .../faArrowCircleRight.js | 1 + .../faArrowCircleUp.d.ts | 3 + .../fontawesome-free-solid/faArrowCircleUp.js | 1 + .../fontawesome-free-solid/faArrowDown.d.ts | 3 + .../fontawesome-free-solid/faArrowDown.js | 1 + .../fontawesome-free-solid/faArrowLeft.d.ts | 3 + .../fontawesome-free-solid/faArrowLeft.js | 1 + .../fontawesome-free-solid/faArrowRight.d.ts | 3 + .../fontawesome-free-solid/faArrowRight.js | 1 + .../fontawesome-free-solid/faArrowUp.d.ts | 3 + .../fontawesome-free-solid/faArrowUp.js | 1 + .../fontawesome-free-solid/faArrowsAlt.d.ts | 3 + .../fontawesome-free-solid/faArrowsAlt.js | 1 + .../fontawesome-free-solid/faArrowsAltH.d.ts | 3 + .../fontawesome-free-solid/faArrowsAltH.js | 1 + .../fontawesome-free-solid/faArrowsAltV.d.ts | 3 + .../fontawesome-free-solid/faArrowsAltV.js | 1 + .../faAssistiveListeningSystems.d.ts | 3 + .../faAssistiveListeningSystems.js | 1 + .../fontawesome-free-solid/faAsterisk.d.ts | 3 + .../fontawesome-free-solid/faAsterisk.js | 1 + .../fontawesome-free-solid/faAt.d.ts | 3 + .../fontawesome-free-solid/faAt.js | 1 + .../faAudioDescription.d.ts | 3 + .../faAudioDescription.js | 1 + .../fontawesome-free-solid/faBackward.d.ts | 3 + .../fontawesome-free-solid/faBackward.js | 1 + .../faBalanceScale.d.ts | 3 + .../fontawesome-free-solid/faBalanceScale.js | 1 + .../fontawesome-free-solid/faBan.d.ts | 3 + .../fontawesome-free-solid/faBan.js | 1 + .../fontawesome-free-solid/faBandAid.d.ts | 3 + .../fontawesome-free-solid/faBandAid.js | 1 + .../fontawesome-free-solid/faBarcode.d.ts | 3 + .../fontawesome-free-solid/faBarcode.js | 1 + .../fontawesome-free-solid/faBars.d.ts | 3 + .../fontawesome-free-solid/faBars.js | 1 + .../faBaseballBall.d.ts | 3 + .../fontawesome-free-solid/faBaseballBall.js | 1 + .../faBasketballBall.d.ts | 3 + .../faBasketballBall.js | 1 + .../fontawesome-free-solid/faBath.d.ts | 3 + .../fontawesome-free-solid/faBath.js | 1 + .../faBatteryEmpty.d.ts | 3 + .../fontawesome-free-solid/faBatteryEmpty.js | 1 + .../fontawesome-free-solid/faBatteryFull.d.ts | 3 + .../fontawesome-free-solid/faBatteryFull.js | 1 + .../fontawesome-free-solid/faBatteryHalf.d.ts | 3 + .../fontawesome-free-solid/faBatteryHalf.js | 1 + .../faBatteryQuarter.d.ts | 3 + .../faBatteryQuarter.js | 1 + .../faBatteryThreeQuarters.d.ts | 3 + .../faBatteryThreeQuarters.js | 1 + .../fontawesome-free-solid/faBed.d.ts | 3 + .../fontawesome-free-solid/faBed.js | 1 + .../fontawesome-free-solid/faBeer.d.ts | 3 + .../fontawesome-free-solid/faBeer.js | 1 + .../fontawesome-free-solid/faBell.d.ts | 3 + .../fontawesome-free-solid/faBell.js | 1 + .../fontawesome-free-solid/faBellSlash.d.ts | 3 + .../fontawesome-free-solid/faBellSlash.js | 1 + .../fontawesome-free-solid/faBicycle.d.ts | 3 + .../fontawesome-free-solid/faBicycle.js | 1 + .../fontawesome-free-solid/faBinoculars.d.ts | 3 + .../fontawesome-free-solid/faBinoculars.js | 1 + .../faBirthdayCake.d.ts | 3 + .../fontawesome-free-solid/faBirthdayCake.js | 1 + .../fontawesome-free-solid/faBlender.d.ts | 3 + .../fontawesome-free-solid/faBlender.js | 1 + .../fontawesome-free-solid/faBlind.d.ts | 3 + .../fontawesome-free-solid/faBlind.js | 1 + .../fontawesome-free-solid/faBold.d.ts | 3 + .../fontawesome-free-solid/faBold.js | 1 + .../fontawesome-free-solid/faBolt.d.ts | 3 + .../fontawesome-free-solid/faBolt.js | 1 + .../fontawesome-free-solid/faBomb.d.ts | 3 + .../fontawesome-free-solid/faBomb.js | 1 + .../fontawesome-free-solid/faBook.d.ts | 3 + .../fontawesome-free-solid/faBook.js | 1 + .../fontawesome-free-solid/faBookOpen.d.ts | 3 + .../fontawesome-free-solid/faBookOpen.js | 1 + .../fontawesome-free-solid/faBookmark.d.ts | 3 + .../fontawesome-free-solid/faBookmark.js | 1 + .../fontawesome-free-solid/faBowlingBall.d.ts | 3 + .../fontawesome-free-solid/faBowlingBall.js | 1 + .../fontawesome-free-solid/faBox.d.ts | 3 + .../fontawesome-free-solid/faBox.js | 1 + .../fontawesome-free-solid/faBoxOpen.d.ts | 3 + .../fontawesome-free-solid/faBoxOpen.js | 1 + .../fontawesome-free-solid/faBoxes.d.ts | 3 + .../fontawesome-free-solid/faBoxes.js | 1 + .../fontawesome-free-solid/faBraille.d.ts | 3 + .../fontawesome-free-solid/faBraille.js | 1 + .../fontawesome-free-solid/faBriefcase.d.ts | 3 + .../fontawesome-free-solid/faBriefcase.js | 1 + .../faBriefcaseMedical.d.ts | 3 + .../faBriefcaseMedical.js | 1 + .../faBroadcastTower.d.ts | 3 + .../faBroadcastTower.js | 1 + .../fontawesome-free-solid/faBroom.d.ts | 3 + .../fontawesome-free-solid/faBroom.js | 1 + .../fontawesome-free-solid/faBug.d.ts | 3 + .../fontawesome-free-solid/faBug.js | 1 + .../fontawesome-free-solid/faBuilding.d.ts | 3 + .../fontawesome-free-solid/faBuilding.js | 1 + .../fontawesome-free-solid/faBullhorn.d.ts | 3 + .../fontawesome-free-solid/faBullhorn.js | 1 + .../fontawesome-free-solid/faBullseye.d.ts | 3 + .../fontawesome-free-solid/faBullseye.js | 1 + .../fontawesome-free-solid/faBurn.d.ts | 3 + .../fontawesome-free-solid/faBurn.js | 1 + .../fontawesome-free-solid/faBus.d.ts | 3 + .../fontawesome-free-solid/faBus.js | 1 + .../fontawesome-free-solid/faCalculator.d.ts | 3 + .../fontawesome-free-solid/faCalculator.js | 1 + .../fontawesome-free-solid/faCalendar.d.ts | 3 + .../fontawesome-free-solid/faCalendar.js | 1 + .../fontawesome-free-solid/faCalendarAlt.d.ts | 3 + .../fontawesome-free-solid/faCalendarAlt.js | 1 + .../faCalendarCheck.d.ts | 3 + .../fontawesome-free-solid/faCalendarCheck.js | 1 + .../faCalendarMinus.d.ts | 3 + .../fontawesome-free-solid/faCalendarMinus.js | 1 + .../faCalendarPlus.d.ts | 3 + .../fontawesome-free-solid/faCalendarPlus.js | 1 + .../faCalendarTimes.d.ts | 3 + .../fontawesome-free-solid/faCalendarTimes.js | 1 + .../fontawesome-free-solid/faCamera.d.ts | 3 + .../fontawesome-free-solid/faCamera.js | 1 + .../fontawesome-free-solid/faCameraRetro.d.ts | 3 + .../fontawesome-free-solid/faCameraRetro.js | 1 + .../fontawesome-free-solid/faCapsules.d.ts | 3 + .../fontawesome-free-solid/faCapsules.js | 1 + .../fontawesome-free-solid/faCar.d.ts | 3 + .../fontawesome-free-solid/faCar.js | 1 + .../fontawesome-free-solid/faCaretDown.d.ts | 3 + .../fontawesome-free-solid/faCaretDown.js | 1 + .../fontawesome-free-solid/faCaretLeft.d.ts | 3 + .../fontawesome-free-solid/faCaretLeft.js | 1 + .../fontawesome-free-solid/faCaretRight.d.ts | 3 + .../fontawesome-free-solid/faCaretRight.js | 1 + .../faCaretSquareDown.d.ts | 3 + .../faCaretSquareDown.js | 1 + .../faCaretSquareLeft.d.ts | 3 + .../faCaretSquareLeft.js | 1 + .../faCaretSquareRight.d.ts | 3 + .../faCaretSquareRight.js | 1 + .../faCaretSquareUp.d.ts | 3 + .../fontawesome-free-solid/faCaretSquareUp.js | 1 + .../fontawesome-free-solid/faCaretUp.d.ts | 3 + .../fontawesome-free-solid/faCaretUp.js | 1 + .../faCartArrowDown.d.ts | 3 + .../fontawesome-free-solid/faCartArrowDown.js | 1 + .../fontawesome-free-solid/faCartPlus.d.ts | 3 + .../fontawesome-free-solid/faCartPlus.js | 1 + .../fontawesome-free-solid/faCertificate.d.ts | 3 + .../fontawesome-free-solid/faCertificate.js | 1 + .../fontawesome-free-solid/faChalkboard.d.ts | 3 + .../fontawesome-free-solid/faChalkboard.js | 1 + .../faChalkboardTeacher.d.ts | 3 + .../faChalkboardTeacher.js | 1 + .../fontawesome-free-solid/faChartArea.d.ts | 3 + .../fontawesome-free-solid/faChartArea.js | 1 + .../fontawesome-free-solid/faChartBar.d.ts | 3 + .../fontawesome-free-solid/faChartBar.js | 1 + .../fontawesome-free-solid/faChartLine.d.ts | 3 + .../fontawesome-free-solid/faChartLine.js | 1 + .../fontawesome-free-solid/faChartPie.d.ts | 3 + .../fontawesome-free-solid/faChartPie.js | 1 + .../fontawesome-free-solid/faCheck.d.ts | 3 + .../fontawesome-free-solid/faCheck.js | 1 + .../fontawesome-free-solid/faCheckCircle.d.ts | 3 + .../fontawesome-free-solid/faCheckCircle.js | 1 + .../fontawesome-free-solid/faCheckSquare.d.ts | 3 + .../fontawesome-free-solid/faCheckSquare.js | 1 + .../fontawesome-free-solid/faChess.d.ts | 3 + .../fontawesome-free-solid/faChess.js | 1 + .../fontawesome-free-solid/faChessBishop.d.ts | 3 + .../fontawesome-free-solid/faChessBishop.js | 1 + .../fontawesome-free-solid/faChessBoard.d.ts | 3 + .../fontawesome-free-solid/faChessBoard.js | 1 + .../fontawesome-free-solid/faChessKing.d.ts | 3 + .../fontawesome-free-solid/faChessKing.js | 1 + .../fontawesome-free-solid/faChessKnight.d.ts | 3 + .../fontawesome-free-solid/faChessKnight.js | 1 + .../fontawesome-free-solid/faChessPawn.d.ts | 3 + .../fontawesome-free-solid/faChessPawn.js | 1 + .../fontawesome-free-solid/faChessQueen.d.ts | 3 + .../fontawesome-free-solid/faChessQueen.js | 1 + .../fontawesome-free-solid/faChessRook.d.ts | 3 + .../fontawesome-free-solid/faChessRook.js | 1 + .../faChevronCircleDown.d.ts | 3 + .../faChevronCircleDown.js | 1 + .../faChevronCircleLeft.d.ts | 3 + .../faChevronCircleLeft.js | 1 + .../faChevronCircleRight.d.ts | 3 + .../faChevronCircleRight.js | 1 + .../faChevronCircleUp.d.ts | 3 + .../faChevronCircleUp.js | 1 + .../fontawesome-free-solid/faChevronDown.d.ts | 3 + .../fontawesome-free-solid/faChevronDown.js | 1 + .../fontawesome-free-solid/faChevronLeft.d.ts | 3 + .../fontawesome-free-solid/faChevronLeft.js | 1 + .../faChevronRight.d.ts | 3 + .../fontawesome-free-solid/faChevronRight.js | 1 + .../fontawesome-free-solid/faChevronUp.d.ts | 3 + .../fontawesome-free-solid/faChevronUp.js | 1 + .../fontawesome-free-solid/faChild.d.ts | 3 + .../fontawesome-free-solid/faChild.js | 1 + .../fontawesome-free-solid/faChurch.d.ts | 3 + .../fontawesome-free-solid/faChurch.js | 1 + .../fontawesome-free-solid/faCircle.d.ts | 3 + .../fontawesome-free-solid/faCircle.js | 1 + .../fontawesome-free-solid/faCircleNotch.d.ts | 3 + .../fontawesome-free-solid/faCircleNotch.js | 1 + .../fontawesome-free-solid/faClipboard.d.ts | 3 + .../fontawesome-free-solid/faClipboard.js | 1 + .../faClipboardCheck.d.ts | 3 + .../faClipboardCheck.js | 1 + .../faClipboardList.d.ts | 3 + .../fontawesome-free-solid/faClipboardList.js | 1 + .../fontawesome-free-solid/faClock.d.ts | 3 + .../fontawesome-free-solid/faClock.js | 1 + .../fontawesome-free-solid/faClone.d.ts | 3 + .../fontawesome-free-solid/faClone.js | 1 + .../faClosedCaptioning.d.ts | 3 + .../faClosedCaptioning.js | 1 + .../fontawesome-free-solid/faCloud.d.ts | 3 + .../fontawesome-free-solid/faCloud.js | 1 + .../faCloudDownloadAlt.d.ts | 3 + .../faCloudDownloadAlt.js | 1 + .../faCloudUploadAlt.d.ts | 3 + .../faCloudUploadAlt.js | 1 + .../fontawesome-free-solid/faCode.d.ts | 3 + .../fontawesome-free-solid/faCode.js | 1 + .../fontawesome-free-solid/faCodeBranch.d.ts | 3 + .../fontawesome-free-solid/faCodeBranch.js | 1 + .../fontawesome-free-solid/faCoffee.d.ts | 3 + .../fontawesome-free-solid/faCoffee.js | 1 + .../fontawesome-free-solid/faCog.d.ts | 3 + .../fontawesome-free-solid/faCog.js | 1 + .../fontawesome-free-solid/faCogs.d.ts | 3 + .../fontawesome-free-solid/faCogs.js | 1 + .../fontawesome-free-solid/faCoins.d.ts | 3 + .../fontawesome-free-solid/faCoins.js | 1 + .../fontawesome-free-solid/faColumns.d.ts | 3 + .../fontawesome-free-solid/faColumns.js | 1 + .../fontawesome-free-solid/faComment.d.ts | 3 + .../fontawesome-free-solid/faComment.js | 1 + .../fontawesome-free-solid/faCommentAlt.d.ts | 3 + .../fontawesome-free-solid/faCommentAlt.js | 1 + .../fontawesome-free-solid/faCommentDots.d.ts | 3 + .../fontawesome-free-solid/faCommentDots.js | 1 + .../faCommentSlash.d.ts | 3 + .../fontawesome-free-solid/faCommentSlash.js | 1 + .../fontawesome-free-solid/faComments.d.ts | 3 + .../fontawesome-free-solid/faComments.js | 1 + .../fontawesome-free-solid/faCompactDisc.d.ts | 3 + .../fontawesome-free-solid/faCompactDisc.js | 1 + .../fontawesome-free-solid/faCompass.d.ts | 3 + .../fontawesome-free-solid/faCompass.js | 1 + .../fontawesome-free-solid/faCompress.d.ts | 3 + .../fontawesome-free-solid/faCompress.js | 1 + .../fontawesome-free-solid/faCopy.d.ts | 3 + .../fontawesome-free-solid/faCopy.js | 1 + .../fontawesome-free-solid/faCopyright.d.ts | 3 + .../fontawesome-free-solid/faCopyright.js | 1 + .../fontawesome-free-solid/faCouch.d.ts | 3 + .../fontawesome-free-solid/faCouch.js | 1 + .../fontawesome-free-solid/faCreditCard.d.ts | 3 + .../fontawesome-free-solid/faCreditCard.js | 1 + .../fontawesome-free-solid/faCrop.d.ts | 3 + .../fontawesome-free-solid/faCrop.js | 1 + .../fontawesome-free-solid/faCrosshairs.d.ts | 3 + .../fontawesome-free-solid/faCrosshairs.js | 1 + .../fontawesome-free-solid/faCrow.d.ts | 3 + .../fontawesome-free-solid/faCrow.js | 1 + .../fontawesome-free-solid/faCrown.d.ts | 3 + .../fontawesome-free-solid/faCrown.js | 1 + .../fontawesome-free-solid/faCube.d.ts | 3 + .../fontawesome-free-solid/faCube.js | 1 + .../fontawesome-free-solid/faCubes.d.ts | 3 + .../fontawesome-free-solid/faCubes.js | 1 + .../fontawesome-free-solid/faCut.d.ts | 3 + .../fontawesome-free-solid/faCut.js | 1 + .../fontawesome-free-solid/faDatabase.d.ts | 3 + .../fontawesome-free-solid/faDatabase.js | 1 + .../fontawesome-free-solid/faDeaf.d.ts | 3 + .../fontawesome-free-solid/faDeaf.js | 1 + .../fontawesome-free-solid/faDesktop.d.ts | 3 + .../fontawesome-free-solid/faDesktop.js | 1 + .../fontawesome-free-solid/faDiagnoses.d.ts | 3 + .../fontawesome-free-solid/faDiagnoses.js | 1 + .../fontawesome-free-solid/faDice.d.ts | 3 + .../fontawesome-free-solid/faDice.js | 1 + .../fontawesome-free-solid/faDiceFive.d.ts | 3 + .../fontawesome-free-solid/faDiceFive.js | 1 + .../fontawesome-free-solid/faDiceFour.d.ts | 3 + .../fontawesome-free-solid/faDiceFour.js | 1 + .../fontawesome-free-solid/faDiceOne.d.ts | 3 + .../fontawesome-free-solid/faDiceOne.js | 1 + .../fontawesome-free-solid/faDiceSix.d.ts | 3 + .../fontawesome-free-solid/faDiceSix.js | 1 + .../fontawesome-free-solid/faDiceThree.d.ts | 3 + .../fontawesome-free-solid/faDiceThree.js | 1 + .../fontawesome-free-solid/faDiceTwo.d.ts | 3 + .../fontawesome-free-solid/faDiceTwo.js | 1 + .../fontawesome-free-solid/faDivide.d.ts | 3 + .../fontawesome-free-solid/faDivide.js | 1 + .../fontawesome-free-solid/faDna.d.ts | 3 + .../fontawesome-free-solid/faDna.js | 1 + .../fontawesome-free-solid/faDollarSign.d.ts | 3 + .../fontawesome-free-solid/faDollarSign.js | 1 + .../fontawesome-free-solid/faDolly.d.ts | 3 + .../fontawesome-free-solid/faDolly.js | 1 + .../faDollyFlatbed.d.ts | 3 + .../fontawesome-free-solid/faDollyFlatbed.js | 1 + .../fontawesome-free-solid/faDonate.d.ts | 3 + .../fontawesome-free-solid/faDonate.js | 1 + .../fontawesome-free-solid/faDoorClosed.d.ts | 3 + .../fontawesome-free-solid/faDoorClosed.js | 1 + .../fontawesome-free-solid/faDoorOpen.d.ts | 3 + .../fontawesome-free-solid/faDoorOpen.js | 1 + .../fontawesome-free-solid/faDotCircle.d.ts | 3 + .../fontawesome-free-solid/faDotCircle.js | 1 + .../fontawesome-free-solid/faDove.d.ts | 3 + .../fontawesome-free-solid/faDove.js | 1 + .../fontawesome-free-solid/faDownload.d.ts | 3 + .../fontawesome-free-solid/faDownload.js | 1 + .../fontawesome-free-solid/faDumbbell.d.ts | 3 + .../fontawesome-free-solid/faDumbbell.js | 1 + .../fontawesome-free-solid/faEdit.d.ts | 3 + .../fontawesome-free-solid/faEdit.js | 1 + .../fontawesome-free-solid/faEject.d.ts | 3 + .../fontawesome-free-solid/faEject.js | 1 + .../fontawesome-free-solid/faEllipsisH.d.ts | 3 + .../fontawesome-free-solid/faEllipsisH.js | 1 + .../fontawesome-free-solid/faEllipsisV.d.ts | 3 + .../fontawesome-free-solid/faEllipsisV.js | 1 + .../fontawesome-free-solid/faEnvelope.d.ts | 3 + .../fontawesome-free-solid/faEnvelope.js | 1 + .../faEnvelopeOpen.d.ts | 3 + .../fontawesome-free-solid/faEnvelopeOpen.js | 1 + .../faEnvelopeSquare.d.ts | 3 + .../faEnvelopeSquare.js | 1 + .../fontawesome-free-solid/faEquals.d.ts | 3 + .../fontawesome-free-solid/faEquals.js | 1 + .../fontawesome-free-solid/faEraser.d.ts | 3 + .../fontawesome-free-solid/faEraser.js | 1 + .../fontawesome-free-solid/faEuroSign.d.ts | 3 + .../fontawesome-free-solid/faEuroSign.js | 1 + .../fontawesome-free-solid/faExchangeAlt.d.ts | 3 + .../fontawesome-free-solid/faExchangeAlt.js | 1 + .../fontawesome-free-solid/faExclamation.d.ts | 3 + .../fontawesome-free-solid/faExclamation.js | 1 + .../faExclamationCircle.d.ts | 3 + .../faExclamationCircle.js | 1 + .../faExclamationTriangle.d.ts | 3 + .../faExclamationTriangle.js | 1 + .../fontawesome-free-solid/faExpand.d.ts | 3 + .../fontawesome-free-solid/faExpand.js | 1 + .../faExpandArrowsAlt.d.ts | 3 + .../faExpandArrowsAlt.js | 1 + .../faExternalLinkAlt.d.ts | 3 + .../faExternalLinkAlt.js | 1 + .../faExternalLinkSquareAlt.d.ts | 3 + .../faExternalLinkSquareAlt.js | 1 + .../fontawesome-free-solid/faEye.d.ts | 3 + .../fontawesome-free-solid/faEye.js | 1 + .../fontawesome-free-solid/faEyeDropper.d.ts | 3 + .../fontawesome-free-solid/faEyeDropper.js | 1 + .../fontawesome-free-solid/faEyeSlash.d.ts | 3 + .../fontawesome-free-solid/faEyeSlash.js | 1 + .../faFastBackward.d.ts | 3 + .../fontawesome-free-solid/faFastBackward.js | 1 + .../fontawesome-free-solid/faFastForward.d.ts | 3 + .../fontawesome-free-solid/faFastForward.js | 1 + .../fontawesome-free-solid/faFax.d.ts | 3 + .../fontawesome-free-solid/faFax.js | 1 + .../fontawesome-free-solid/faFeather.d.ts | 3 + .../fontawesome-free-solid/faFeather.js | 1 + .../fontawesome-free-solid/faFemale.d.ts | 3 + .../fontawesome-free-solid/faFemale.js | 1 + .../fontawesome-free-solid/faFighterJet.d.ts | 3 + .../fontawesome-free-solid/faFighterJet.js | 1 + .../fontawesome-free-solid/faFile.d.ts | 3 + .../fontawesome-free-solid/faFile.js | 1 + .../fontawesome-free-solid/faFileAlt.d.ts | 3 + .../fontawesome-free-solid/faFileAlt.js | 1 + .../fontawesome-free-solid/faFileArchive.d.ts | 3 + .../fontawesome-free-solid/faFileArchive.js | 1 + .../fontawesome-free-solid/faFileAudio.d.ts | 3 + .../fontawesome-free-solid/faFileAudio.js | 1 + .../fontawesome-free-solid/faFileCode.d.ts | 3 + .../fontawesome-free-solid/faFileCode.js | 1 + .../fontawesome-free-solid/faFileExcel.d.ts | 3 + .../fontawesome-free-solid/faFileExcel.js | 1 + .../fontawesome-free-solid/faFileImage.d.ts | 3 + .../fontawesome-free-solid/faFileImage.js | 1 + .../fontawesome-free-solid/faFileMedical.d.ts | 3 + .../fontawesome-free-solid/faFileMedical.js | 1 + .../faFileMedicalAlt.d.ts | 3 + .../faFileMedicalAlt.js | 1 + .../fontawesome-free-solid/faFilePdf.d.ts | 3 + .../fontawesome-free-solid/faFilePdf.js | 1 + .../faFilePowerpoint.d.ts | 3 + .../faFilePowerpoint.js | 1 + .../fontawesome-free-solid/faFileVideo.d.ts | 3 + .../fontawesome-free-solid/faFileVideo.js | 1 + .../fontawesome-free-solid/faFileWord.d.ts | 3 + .../fontawesome-free-solid/faFileWord.js | 1 + .../fontawesome-free-solid/faFilm.d.ts | 3 + .../fontawesome-free-solid/faFilm.js | 1 + .../fontawesome-free-solid/faFilter.d.ts | 3 + .../fontawesome-free-solid/faFilter.js | 1 + .../fontawesome-free-solid/faFire.d.ts | 3 + .../fontawesome-free-solid/faFire.js | 1 + .../faFireExtinguisher.d.ts | 3 + .../faFireExtinguisher.js | 1 + .../fontawesome-free-solid/faFirstAid.d.ts | 3 + .../fontawesome-free-solid/faFirstAid.js | 1 + .../fontawesome-free-solid/faFlag.d.ts | 3 + .../fontawesome-free-solid/faFlag.js | 1 + .../faFlagCheckered.d.ts | 3 + .../fontawesome-free-solid/faFlagCheckered.js | 1 + .../fontawesome-free-solid/faFlask.d.ts | 3 + .../fontawesome-free-solid/faFlask.js | 1 + .../fontawesome-free-solid/faFolder.d.ts | 3 + .../fontawesome-free-solid/faFolder.js | 1 + .../fontawesome-free-solid/faFolderOpen.d.ts | 3 + .../fontawesome-free-solid/faFolderOpen.js | 1 + .../fontawesome-free-solid/faFont.d.ts | 3 + .../fontawesome-free-solid/faFont.js | 1 + .../faFontAwesomeLogoFull.d.ts | 3 + .../faFontAwesomeLogoFull.js | 1 + .../faFootballBall.d.ts | 3 + .../fontawesome-free-solid/faFootballBall.js | 1 + .../fontawesome-free-solid/faForward.d.ts | 3 + .../fontawesome-free-solid/faForward.js | 1 + .../fontawesome-free-solid/faFrog.d.ts | 3 + .../fontawesome-free-solid/faFrog.js | 1 + .../fontawesome-free-solid/faFrown.d.ts | 3 + .../fontawesome-free-solid/faFrown.js | 1 + .../fontawesome-free-solid/faFutbol.d.ts | 3 + .../fontawesome-free-solid/faFutbol.js | 1 + .../fontawesome-free-solid/faGamepad.d.ts | 3 + .../fontawesome-free-solid/faGamepad.js | 1 + .../fontawesome-free-solid/faGasPump.d.ts | 3 + .../fontawesome-free-solid/faGasPump.js | 1 + .../fontawesome-free-solid/faGavel.d.ts | 3 + .../fontawesome-free-solid/faGavel.js | 1 + .../fontawesome-free-solid/faGem.d.ts | 3 + .../fontawesome-free-solid/faGem.js | 1 + .../fontawesome-free-solid/faGenderless.d.ts | 3 + .../fontawesome-free-solid/faGenderless.js | 1 + .../fontawesome-free-solid/faGift.d.ts | 3 + .../fontawesome-free-solid/faGift.js | 1 + .../faGlassMartini.d.ts | 3 + .../fontawesome-free-solid/faGlassMartini.js | 1 + .../fontawesome-free-solid/faGlasses.d.ts | 3 + .../fontawesome-free-solid/faGlasses.js | 1 + .../fontawesome-free-solid/faGlobe.d.ts | 3 + .../fontawesome-free-solid/faGlobe.js | 1 + .../fontawesome-free-solid/faGolfBall.d.ts | 3 + .../fontawesome-free-solid/faGolfBall.js | 1 + .../faGraduationCap.d.ts | 3 + .../fontawesome-free-solid/faGraduationCap.js | 1 + .../fontawesome-free-solid/faGreaterThan.d.ts | 3 + .../fontawesome-free-solid/faGreaterThan.js | 1 + .../faGreaterThanEqual.d.ts | 3 + .../faGreaterThanEqual.js | 1 + .../fontawesome-free-solid/faHSquare.d.ts | 3 + .../fontawesome-free-solid/faHSquare.js | 1 + .../fontawesome-free-solid/faHandHolding.d.ts | 3 + .../fontawesome-free-solid/faHandHolding.js | 1 + .../faHandHoldingHeart.d.ts | 3 + .../faHandHoldingHeart.js | 1 + .../faHandHoldingUsd.d.ts | 3 + .../faHandHoldingUsd.js | 1 + .../fontawesome-free-solid/faHandLizard.d.ts | 3 + .../fontawesome-free-solid/faHandLizard.js | 1 + .../fontawesome-free-solid/faHandPaper.d.ts | 3 + .../fontawesome-free-solid/faHandPaper.js | 1 + .../fontawesome-free-solid/faHandPeace.d.ts | 3 + .../fontawesome-free-solid/faHandPeace.js | 1 + .../faHandPointDown.d.ts | 3 + .../fontawesome-free-solid/faHandPointDown.js | 1 + .../faHandPointLeft.d.ts | 3 + .../fontawesome-free-solid/faHandPointLeft.js | 1 + .../faHandPointRight.d.ts | 3 + .../faHandPointRight.js | 1 + .../fontawesome-free-solid/faHandPointUp.d.ts | 3 + .../fontawesome-free-solid/faHandPointUp.js | 1 + .../fontawesome-free-solid/faHandPointer.d.ts | 3 + .../fontawesome-free-solid/faHandPointer.js | 1 + .../fontawesome-free-solid/faHandRock.d.ts | 3 + .../fontawesome-free-solid/faHandRock.js | 1 + .../faHandScissors.d.ts | 3 + .../fontawesome-free-solid/faHandScissors.js | 1 + .../fontawesome-free-solid/faHandSpock.d.ts | 3 + .../fontawesome-free-solid/faHandSpock.js | 1 + .../fontawesome-free-solid/faHands.d.ts | 3 + .../fontawesome-free-solid/faHands.js | 1 + .../faHandsHelping.d.ts | 3 + .../fontawesome-free-solid/faHandsHelping.js | 1 + .../fontawesome-free-solid/faHandshake.d.ts | 3 + .../fontawesome-free-solid/faHandshake.js | 1 + .../fontawesome-free-solid/faHashtag.d.ts | 3 + .../fontawesome-free-solid/faHashtag.js | 1 + .../fontawesome-free-solid/faHdd.d.ts | 3 + .../fontawesome-free-solid/faHdd.js | 1 + .../fontawesome-free-solid/faHeading.d.ts | 3 + .../fontawesome-free-solid/faHeading.js | 1 + .../fontawesome-free-solid/faHeadphones.d.ts | 3 + .../fontawesome-free-solid/faHeadphones.js | 1 + .../fontawesome-free-solid/faHeart.d.ts | 3 + .../fontawesome-free-solid/faHeart.js | 1 + .../fontawesome-free-solid/faHeartbeat.d.ts | 3 + .../fontawesome-free-solid/faHeartbeat.js | 1 + .../fontawesome-free-solid/faHelicopter.d.ts | 3 + .../fontawesome-free-solid/faHelicopter.js | 1 + .../fontawesome-free-solid/faHistory.d.ts | 3 + .../fontawesome-free-solid/faHistory.js | 1 + .../fontawesome-free-solid/faHockeyPuck.d.ts | 3 + .../fontawesome-free-solid/faHockeyPuck.js | 1 + .../fontawesome-free-solid/faHome.d.ts | 3 + .../fontawesome-free-solid/faHome.js | 1 + .../fontawesome-free-solid/faHospital.d.ts | 3 + .../fontawesome-free-solid/faHospital.js | 1 + .../fontawesome-free-solid/faHospitalAlt.d.ts | 3 + .../fontawesome-free-solid/faHospitalAlt.js | 1 + .../faHospitalSymbol.d.ts | 3 + .../faHospitalSymbol.js | 1 + .../fontawesome-free-solid/faHourglass.d.ts | 3 + .../fontawesome-free-solid/faHourglass.js | 1 + .../faHourglassEnd.d.ts | 3 + .../fontawesome-free-solid/faHourglassEnd.js | 1 + .../faHourglassHalf.d.ts | 3 + .../fontawesome-free-solid/faHourglassHalf.js | 1 + .../faHourglassStart.d.ts | 3 + .../faHourglassStart.js | 1 + .../fontawesome-free-solid/faICursor.d.ts | 3 + .../fontawesome-free-solid/faICursor.js | 1 + .../fontawesome-free-solid/faIdBadge.d.ts | 3 + .../fontawesome-free-solid/faIdBadge.js | 1 + .../fontawesome-free-solid/faIdCard.d.ts | 3 + .../fontawesome-free-solid/faIdCard.js | 1 + .../fontawesome-free-solid/faIdCardAlt.d.ts | 3 + .../fontawesome-free-solid/faIdCardAlt.js | 1 + .../fontawesome-free-solid/faImage.d.ts | 3 + .../fontawesome-free-solid/faImage.js | 1 + .../fontawesome-free-solid/faImages.d.ts | 3 + .../fontawesome-free-solid/faImages.js | 1 + .../fontawesome-free-solid/faInbox.d.ts | 3 + .../fontawesome-free-solid/faInbox.js | 1 + .../fontawesome-free-solid/faIndent.d.ts | 3 + .../fontawesome-free-solid/faIndent.js | 1 + .../fontawesome-free-solid/faIndustry.d.ts | 3 + .../fontawesome-free-solid/faIndustry.js | 1 + .../fontawesome-free-solid/faInfinity.d.ts | 3 + .../fontawesome-free-solid/faInfinity.js | 1 + .../fontawesome-free-solid/faInfo.d.ts | 3 + .../fontawesome-free-solid/faInfo.js | 1 + .../fontawesome-free-solid/faInfoCircle.d.ts | 3 + .../fontawesome-free-solid/faInfoCircle.js | 1 + .../fontawesome-free-solid/faItalic.d.ts | 3 + .../fontawesome-free-solid/faItalic.js | 1 + .../fontawesome-free-solid/faKey.d.ts | 3 + .../fontawesome-free-solid/faKey.js | 1 + .../fontawesome-free-solid/faKeyboard.d.ts | 3 + .../fontawesome-free-solid/faKeyboard.js | 1 + .../fontawesome-free-solid/faKiwiBird.d.ts | 3 + .../fontawesome-free-solid/faKiwiBird.js | 1 + .../fontawesome-free-solid/faLanguage.d.ts | 3 + .../fontawesome-free-solid/faLanguage.js | 1 + .../fontawesome-free-solid/faLaptop.d.ts | 3 + .../fontawesome-free-solid/faLaptop.js | 1 + .../fontawesome-free-solid/faLeaf.d.ts | 3 + .../fontawesome-free-solid/faLeaf.js | 1 + .../fontawesome-free-solid/faLemon.d.ts | 3 + .../fontawesome-free-solid/faLemon.js | 1 + .../fontawesome-free-solid/faLessThan.d.ts | 3 + .../fontawesome-free-solid/faLessThan.js | 1 + .../faLessThanEqual.d.ts | 3 + .../fontawesome-free-solid/faLessThanEqual.js | 1 + .../faLevelDownAlt.d.ts | 3 + .../fontawesome-free-solid/faLevelDownAlt.js | 1 + .../fontawesome-free-solid/faLevelUpAlt.d.ts | 3 + .../fontawesome-free-solid/faLevelUpAlt.js | 1 + .../fontawesome-free-solid/faLifeRing.d.ts | 3 + .../fontawesome-free-solid/faLifeRing.js | 1 + .../fontawesome-free-solid/faLightbulb.d.ts | 3 + .../fontawesome-free-solid/faLightbulb.js | 1 + .../fontawesome-free-solid/faLink.d.ts | 3 + .../fontawesome-free-solid/faLink.js | 1 + .../fontawesome-free-solid/faLiraSign.d.ts | 3 + .../fontawesome-free-solid/faLiraSign.js | 1 + .../fontawesome-free-solid/faList.d.ts | 3 + .../fontawesome-free-solid/faList.js | 1 + .../fontawesome-free-solid/faListAlt.d.ts | 3 + .../fontawesome-free-solid/faListAlt.js | 1 + .../fontawesome-free-solid/faListOl.d.ts | 3 + .../fontawesome-free-solid/faListOl.js | 1 + .../fontawesome-free-solid/faListUl.d.ts | 3 + .../fontawesome-free-solid/faListUl.js | 1 + .../faLocationArrow.d.ts | 3 + .../fontawesome-free-solid/faLocationArrow.js | 1 + .../fontawesome-free-solid/faLock.d.ts | 3 + .../fontawesome-free-solid/faLock.js | 1 + .../fontawesome-free-solid/faLockOpen.d.ts | 3 + .../fontawesome-free-solid/faLockOpen.js | 1 + .../faLongArrowAltDown.d.ts | 3 + .../faLongArrowAltDown.js | 1 + .../faLongArrowAltLeft.d.ts | 3 + .../faLongArrowAltLeft.js | 1 + .../faLongArrowAltRight.d.ts | 3 + .../faLongArrowAltRight.js | 1 + .../faLongArrowAltUp.d.ts | 3 + .../faLongArrowAltUp.js | 1 + .../fontawesome-free-solid/faLowVision.d.ts | 3 + .../fontawesome-free-solid/faLowVision.js | 1 + .../fontawesome-free-solid/faMagic.d.ts | 3 + .../fontawesome-free-solid/faMagic.js | 1 + .../fontawesome-free-solid/faMagnet.d.ts | 3 + .../fontawesome-free-solid/faMagnet.js | 1 + .../fontawesome-free-solid/faMale.d.ts | 3 + .../fontawesome-free-solid/faMale.js | 1 + .../fontawesome-free-solid/faMap.d.ts | 3 + .../fontawesome-free-solid/faMap.js | 1 + .../fontawesome-free-solid/faMapMarker.d.ts | 3 + .../fontawesome-free-solid/faMapMarker.js | 1 + .../faMapMarkerAlt.d.ts | 3 + .../fontawesome-free-solid/faMapMarkerAlt.js | 1 + .../fontawesome-free-solid/faMapPin.d.ts | 3 + .../fontawesome-free-solid/faMapPin.js | 1 + .../fontawesome-free-solid/faMapSigns.d.ts | 3 + .../fontawesome-free-solid/faMapSigns.js | 1 + .../fontawesome-free-solid/faMars.d.ts | 3 + .../fontawesome-free-solid/faMars.js | 1 + .../fontawesome-free-solid/faMarsDouble.d.ts | 3 + .../fontawesome-free-solid/faMarsDouble.js | 1 + .../fontawesome-free-solid/faMarsStroke.d.ts | 3 + .../fontawesome-free-solid/faMarsStroke.js | 1 + .../fontawesome-free-solid/faMarsStrokeH.d.ts | 3 + .../fontawesome-free-solid/faMarsStrokeH.js | 1 + .../fontawesome-free-solid/faMarsStrokeV.d.ts | 3 + .../fontawesome-free-solid/faMarsStrokeV.js | 1 + .../fontawesome-free-solid/faMedkit.d.ts | 3 + .../fontawesome-free-solid/faMedkit.js | 1 + .../fontawesome-free-solid/faMeh.d.ts | 3 + .../fontawesome-free-solid/faMeh.js | 1 + .../fontawesome-free-solid/faMemory.d.ts | 3 + .../fontawesome-free-solid/faMemory.js | 1 + .../fontawesome-free-solid/faMercury.d.ts | 3 + .../fontawesome-free-solid/faMercury.js | 1 + .../fontawesome-free-solid/faMicrochip.d.ts | 3 + .../fontawesome-free-solid/faMicrochip.js | 1 + .../fontawesome-free-solid/faMicrophone.d.ts | 3 + .../fontawesome-free-solid/faMicrophone.js | 1 + .../faMicrophoneAlt.d.ts | 3 + .../fontawesome-free-solid/faMicrophoneAlt.js | 1 + .../faMicrophoneAltSlash.d.ts | 3 + .../faMicrophoneAltSlash.js | 1 + .../faMicrophoneSlash.d.ts | 3 + .../faMicrophoneSlash.js | 1 + .../fontawesome-free-solid/faMinus.d.ts | 3 + .../fontawesome-free-solid/faMinus.js | 1 + .../fontawesome-free-solid/faMinusCircle.d.ts | 3 + .../fontawesome-free-solid/faMinusCircle.js | 1 + .../fontawesome-free-solid/faMinusSquare.d.ts | 3 + .../fontawesome-free-solid/faMinusSquare.js | 1 + .../fontawesome-free-solid/faMobile.d.ts | 3 + .../fontawesome-free-solid/faMobile.js | 1 + .../fontawesome-free-solid/faMobileAlt.d.ts | 3 + .../fontawesome-free-solid/faMobileAlt.js | 1 + .../fontawesome-free-solid/faMoneyBill.d.ts | 3 + .../fontawesome-free-solid/faMoneyBill.js | 1 + .../faMoneyBillAlt.d.ts | 3 + .../fontawesome-free-solid/faMoneyBillAlt.js | 1 + .../faMoneyBillWave.d.ts | 3 + .../fontawesome-free-solid/faMoneyBillWave.js | 1 + .../faMoneyBillWaveAlt.d.ts | 3 + .../faMoneyBillWaveAlt.js | 1 + .../fontawesome-free-solid/faMoneyCheck.d.ts | 3 + .../fontawesome-free-solid/faMoneyCheck.js | 1 + .../faMoneyCheckAlt.d.ts | 3 + .../fontawesome-free-solid/faMoneyCheckAlt.js | 1 + .../fontawesome-free-solid/faMoon.d.ts | 3 + .../fontawesome-free-solid/faMoon.js | 1 + .../fontawesome-free-solid/faMotorcycle.d.ts | 3 + .../fontawesome-free-solid/faMotorcycle.js | 1 + .../faMousePointer.d.ts | 3 + .../fontawesome-free-solid/faMousePointer.js | 1 + .../fontawesome-free-solid/faMusic.d.ts | 3 + .../fontawesome-free-solid/faMusic.js | 1 + .../fontawesome-free-solid/faNeuter.d.ts | 3 + .../fontawesome-free-solid/faNeuter.js | 1 + .../fontawesome-free-solid/faNewspaper.d.ts | 3 + .../fontawesome-free-solid/faNewspaper.js | 1 + .../fontawesome-free-solid/faNotEqual.d.ts | 3 + .../fontawesome-free-solid/faNotEqual.js | 1 + .../faNotesMedical.d.ts | 3 + .../fontawesome-free-solid/faNotesMedical.js | 1 + .../fontawesome-free-solid/faObjectGroup.d.ts | 3 + .../fontawesome-free-solid/faObjectGroup.js | 1 + .../faObjectUngroup.d.ts | 3 + .../fontawesome-free-solid/faObjectUngroup.js | 1 + .../fontawesome-free-solid/faOutdent.d.ts | 3 + .../fontawesome-free-solid/faOutdent.js | 1 + .../fontawesome-free-solid/faPaintBrush.d.ts | 3 + .../fontawesome-free-solid/faPaintBrush.js | 1 + .../fontawesome-free-solid/faPalette.d.ts | 3 + .../fontawesome-free-solid/faPalette.js | 1 + .../fontawesome-free-solid/faPallet.d.ts | 3 + .../fontawesome-free-solid/faPallet.js | 1 + .../fontawesome-free-solid/faPaperPlane.d.ts | 3 + .../fontawesome-free-solid/faPaperPlane.js | 1 + .../fontawesome-free-solid/faPaperclip.d.ts | 3 + .../fontawesome-free-solid/faPaperclip.js | 1 + .../faParachuteBox.d.ts | 3 + .../fontawesome-free-solid/faParachuteBox.js | 1 + .../fontawesome-free-solid/faParagraph.d.ts | 3 + .../fontawesome-free-solid/faParagraph.js | 1 + .../fontawesome-free-solid/faParking.d.ts | 3 + .../fontawesome-free-solid/faParking.js | 1 + .../fontawesome-free-solid/faPaste.d.ts | 3 + .../fontawesome-free-solid/faPaste.js | 1 + .../fontawesome-free-solid/faPause.d.ts | 3 + .../fontawesome-free-solid/faPause.js | 1 + .../fontawesome-free-solid/faPauseCircle.d.ts | 3 + .../fontawesome-free-solid/faPauseCircle.js | 1 + .../fontawesome-free-solid/faPaw.d.ts | 3 + .../fontawesome-free-solid/faPaw.js | 1 + .../fontawesome-free-solid/faPenSquare.d.ts | 3 + .../fontawesome-free-solid/faPenSquare.js | 1 + .../fontawesome-free-solid/faPencilAlt.d.ts | 3 + .../fontawesome-free-solid/faPencilAlt.js | 1 + .../fontawesome-free-solid/faPeopleCarry.d.ts | 3 + .../fontawesome-free-solid/faPeopleCarry.js | 1 + .../fontawesome-free-solid/faPercent.d.ts | 3 + .../fontawesome-free-solid/faPercent.js | 1 + .../fontawesome-free-solid/faPercentage.d.ts | 3 + .../fontawesome-free-solid/faPercentage.js | 1 + .../fontawesome-free-solid/faPhone.d.ts | 3 + .../fontawesome-free-solid/faPhone.js | 1 + .../fontawesome-free-solid/faPhoneSlash.d.ts | 3 + .../fontawesome-free-solid/faPhoneSlash.js | 1 + .../fontawesome-free-solid/faPhoneSquare.d.ts | 3 + .../fontawesome-free-solid/faPhoneSquare.js | 1 + .../fontawesome-free-solid/faPhoneVolume.d.ts | 3 + .../fontawesome-free-solid/faPhoneVolume.js | 1 + .../fontawesome-free-solid/faPiggyBank.d.ts | 3 + .../fontawesome-free-solid/faPiggyBank.js | 1 + .../fontawesome-free-solid/faPills.d.ts | 3 + .../fontawesome-free-solid/faPills.js | 1 + .../fontawesome-free-solid/faPlane.d.ts | 3 + .../fontawesome-free-solid/faPlane.js | 1 + .../fontawesome-free-solid/faPlay.d.ts | 3 + .../fontawesome-free-solid/faPlay.js | 1 + .../fontawesome-free-solid/faPlayCircle.d.ts | 3 + .../fontawesome-free-solid/faPlayCircle.js | 1 + .../fontawesome-free-solid/faPlug.d.ts | 3 + .../fontawesome-free-solid/faPlug.js | 1 + .../fontawesome-free-solid/faPlus.d.ts | 3 + .../fontawesome-free-solid/faPlus.js | 1 + .../fontawesome-free-solid/faPlusCircle.d.ts | 3 + .../fontawesome-free-solid/faPlusCircle.js | 1 + .../fontawesome-free-solid/faPlusSquare.d.ts | 3 + .../fontawesome-free-solid/faPlusSquare.js | 1 + .../fontawesome-free-solid/faPodcast.d.ts | 3 + .../fontawesome-free-solid/faPodcast.js | 1 + .../fontawesome-free-solid/faPoo.d.ts | 3 + .../fontawesome-free-solid/faPoo.js | 1 + .../fontawesome-free-solid/faPortrait.d.ts | 3 + .../fontawesome-free-solid/faPortrait.js | 1 + .../fontawesome-free-solid/faPoundSign.d.ts | 3 + .../fontawesome-free-solid/faPoundSign.js | 1 + .../fontawesome-free-solid/faPowerOff.d.ts | 3 + .../fontawesome-free-solid/faPowerOff.js | 1 + .../faPrescriptionBottle.d.ts | 3 + .../faPrescriptionBottle.js | 1 + .../faPrescriptionBottleAlt.d.ts | 3 + .../faPrescriptionBottleAlt.js | 1 + .../fontawesome-free-solid/faPrint.d.ts | 3 + .../fontawesome-free-solid/faPrint.js | 1 + .../fontawesome-free-solid/faProcedures.d.ts | 3 + .../fontawesome-free-solid/faProcedures.js | 1 + .../faProjectDiagram.d.ts | 3 + .../faProjectDiagram.js | 1 + .../fontawesome-free-solid/faPuzzlePiece.d.ts | 3 + .../fontawesome-free-solid/faPuzzlePiece.js | 1 + .../fontawesome-free-solid/faQrcode.d.ts | 3 + .../fontawesome-free-solid/faQrcode.js | 1 + .../fontawesome-free-solid/faQuestion.d.ts | 3 + .../fontawesome-free-solid/faQuestion.js | 1 + .../faQuestionCircle.d.ts | 3 + .../faQuestionCircle.js | 1 + .../fontawesome-free-solid/faQuidditch.d.ts | 3 + .../fontawesome-free-solid/faQuidditch.js | 1 + .../fontawesome-free-solid/faQuoteLeft.d.ts | 3 + .../fontawesome-free-solid/faQuoteLeft.js | 1 + .../fontawesome-free-solid/faQuoteRight.d.ts | 3 + .../fontawesome-free-solid/faQuoteRight.js | 1 + .../fontawesome-free-solid/faRandom.d.ts | 3 + .../fontawesome-free-solid/faRandom.js | 1 + .../fontawesome-free-solid/faReceipt.d.ts | 3 + .../fontawesome-free-solid/faReceipt.js | 1 + .../fontawesome-free-solid/faRecycle.d.ts | 3 + .../fontawesome-free-solid/faRecycle.js | 1 + .../fontawesome-free-solid/faRedo.d.ts | 3 + .../fontawesome-free-solid/faRedo.js | 1 + .../fontawesome-free-solid/faRedoAlt.d.ts | 3 + .../fontawesome-free-solid/faRedoAlt.js | 1 + .../fontawesome-free-solid/faRegistered.d.ts | 3 + .../fontawesome-free-solid/faRegistered.js | 1 + .../fontawesome-free-solid/faReply.d.ts | 3 + .../fontawesome-free-solid/faReply.js | 1 + .../fontawesome-free-solid/faReplyAll.d.ts | 3 + .../fontawesome-free-solid/faReplyAll.js | 1 + .../fontawesome-free-solid/faRetweet.d.ts | 3 + .../fontawesome-free-solid/faRetweet.js | 1 + .../fontawesome-free-solid/faRibbon.d.ts | 3 + .../fontawesome-free-solid/faRibbon.js | 1 + .../fontawesome-free-solid/faRoad.d.ts | 3 + .../fontawesome-free-solid/faRoad.js | 1 + .../fontawesome-free-solid/faRobot.d.ts | 3 + .../fontawesome-free-solid/faRobot.js | 1 + .../fontawesome-free-solid/faRocket.d.ts | 3 + .../fontawesome-free-solid/faRocket.js | 1 + .../fontawesome-free-solid/faRss.d.ts | 3 + .../fontawesome-free-solid/faRss.js | 1 + .../fontawesome-free-solid/faRssSquare.d.ts | 3 + .../fontawesome-free-solid/faRssSquare.js | 1 + .../fontawesome-free-solid/faRubleSign.d.ts | 3 + .../fontawesome-free-solid/faRubleSign.js | 1 + .../fontawesome-free-solid/faRuler.d.ts | 3 + .../fontawesome-free-solid/faRuler.js | 1 + .../faRulerCombined.d.ts | 3 + .../fontawesome-free-solid/faRulerCombined.js | 1 + .../faRulerHorizontal.d.ts | 3 + .../faRulerHorizontal.js | 1 + .../faRulerVertical.d.ts | 3 + .../fontawesome-free-solid/faRulerVertical.js | 1 + .../fontawesome-free-solid/faRupeeSign.d.ts | 3 + .../fontawesome-free-solid/faRupeeSign.js | 1 + .../fontawesome-free-solid/faSave.d.ts | 3 + .../fontawesome-free-solid/faSave.js | 1 + .../fontawesome-free-solid/faSchool.d.ts | 3 + .../fontawesome-free-solid/faSchool.js | 1 + .../fontawesome-free-solid/faScrewdriver.d.ts | 3 + .../fontawesome-free-solid/faScrewdriver.js | 1 + .../fontawesome-free-solid/faSearch.d.ts | 3 + .../fontawesome-free-solid/faSearch.js | 1 + .../fontawesome-free-solid/faSearchMinus.d.ts | 3 + .../fontawesome-free-solid/faSearchMinus.js | 1 + .../fontawesome-free-solid/faSearchPlus.d.ts | 3 + .../fontawesome-free-solid/faSearchPlus.js | 1 + .../fontawesome-free-solid/faSeedling.d.ts | 3 + .../fontawesome-free-solid/faSeedling.js | 1 + .../fontawesome-free-solid/faServer.d.ts | 3 + .../fontawesome-free-solid/faServer.js | 1 + .../fontawesome-free-solid/faShare.d.ts | 3 + .../fontawesome-free-solid/faShare.js | 1 + .../fontawesome-free-solid/faShareAlt.d.ts | 3 + .../fontawesome-free-solid/faShareAlt.js | 1 + .../faShareAltSquare.d.ts | 3 + .../faShareAltSquare.js | 1 + .../fontawesome-free-solid/faShareSquare.d.ts | 3 + .../fontawesome-free-solid/faShareSquare.js | 1 + .../fontawesome-free-solid/faShekelSign.d.ts | 3 + .../fontawesome-free-solid/faShekelSign.js | 1 + .../fontawesome-free-solid/faShieldAlt.d.ts | 3 + .../fontawesome-free-solid/faShieldAlt.js | 1 + .../fontawesome-free-solid/faShip.d.ts | 3 + .../fontawesome-free-solid/faShip.js | 1 + .../faShippingFast.d.ts | 3 + .../fontawesome-free-solid/faShippingFast.js | 1 + .../fontawesome-free-solid/faShoePrints.d.ts | 3 + .../fontawesome-free-solid/faShoePrints.js | 1 + .../fontawesome-free-solid/faShoppingBag.d.ts | 3 + .../fontawesome-free-solid/faShoppingBag.js | 1 + .../faShoppingBasket.d.ts | 3 + .../faShoppingBasket.js | 1 + .../faShoppingCart.d.ts | 3 + .../fontawesome-free-solid/faShoppingCart.js | 1 + .../fontawesome-free-solid/faShower.d.ts | 3 + .../fontawesome-free-solid/faShower.js | 1 + .../fontawesome-free-solid/faSign.d.ts | 3 + .../fontawesome-free-solid/faSign.js | 1 + .../fontawesome-free-solid/faSignInAlt.d.ts | 3 + .../fontawesome-free-solid/faSignInAlt.js | 1 + .../faSignLanguage.d.ts | 3 + .../fontawesome-free-solid/faSignLanguage.js | 1 + .../fontawesome-free-solid/faSignOutAlt.d.ts | 3 + .../fontawesome-free-solid/faSignOutAlt.js | 1 + .../fontawesome-free-solid/faSignal.d.ts | 3 + .../fontawesome-free-solid/faSignal.js | 1 + .../fontawesome-free-solid/faSitemap.d.ts | 3 + .../fontawesome-free-solid/faSitemap.js | 1 + .../fontawesome-free-solid/faSkull.d.ts | 3 + .../fontawesome-free-solid/faSkull.js | 1 + .../fontawesome-free-solid/faSlidersH.d.ts | 3 + .../fontawesome-free-solid/faSlidersH.js | 1 + .../fontawesome-free-solid/faSmile.d.ts | 3 + .../fontawesome-free-solid/faSmile.js | 1 + .../fontawesome-free-solid/faSmoking.d.ts | 3 + .../fontawesome-free-solid/faSmoking.js | 1 + .../fontawesome-free-solid/faSmokingBan.d.ts | 3 + .../fontawesome-free-solid/faSmokingBan.js | 1 + .../fontawesome-free-solid/faSnowflake.d.ts | 3 + .../fontawesome-free-solid/faSnowflake.js | 1 + .../fontawesome-free-solid/faSort.d.ts | 3 + .../fontawesome-free-solid/faSort.js | 1 + .../faSortAlphaDown.d.ts | 3 + .../fontawesome-free-solid/faSortAlphaDown.js | 1 + .../fontawesome-free-solid/faSortAlphaUp.d.ts | 3 + .../fontawesome-free-solid/faSortAlphaUp.js | 1 + .../faSortAmountDown.d.ts | 3 + .../faSortAmountDown.js | 1 + .../faSortAmountUp.d.ts | 3 + .../fontawesome-free-solid/faSortAmountUp.js | 1 + .../fontawesome-free-solid/faSortDown.d.ts | 3 + .../fontawesome-free-solid/faSortDown.js | 1 + .../faSortNumericDown.d.ts | 3 + .../faSortNumericDown.js | 1 + .../faSortNumericUp.d.ts | 3 + .../fontawesome-free-solid/faSortNumericUp.js | 1 + .../fontawesome-free-solid/faSortUp.d.ts | 3 + .../fontawesome-free-solid/faSortUp.js | 1 + .../faSpaceShuttle.d.ts | 3 + .../fontawesome-free-solid/faSpaceShuttle.js | 1 + .../fontawesome-free-solid/faSpinner.d.ts | 3 + .../fontawesome-free-solid/faSpinner.js | 1 + .../fontawesome-free-solid/faSquare.d.ts | 3 + .../fontawesome-free-solid/faSquare.js | 1 + .../fontawesome-free-solid/faSquareFull.d.ts | 3 + .../fontawesome-free-solid/faSquareFull.js | 1 + .../fontawesome-free-solid/faStar.d.ts | 3 + .../fontawesome-free-solid/faStar.js | 1 + .../fontawesome-free-solid/faStarHalf.d.ts | 3 + .../fontawesome-free-solid/faStarHalf.js | 1 + .../faStepBackward.d.ts | 3 + .../fontawesome-free-solid/faStepBackward.js | 1 + .../fontawesome-free-solid/faStepForward.d.ts | 3 + .../fontawesome-free-solid/faStepForward.js | 1 + .../fontawesome-free-solid/faStethoscope.d.ts | 3 + .../fontawesome-free-solid/faStethoscope.js | 1 + .../fontawesome-free-solid/faStickyNote.d.ts | 3 + .../fontawesome-free-solid/faStickyNote.js | 1 + .../fontawesome-free-solid/faStop.d.ts | 3 + .../fontawesome-free-solid/faStop.js | 1 + .../fontawesome-free-solid/faStopCircle.d.ts | 3 + .../fontawesome-free-solid/faStopCircle.js | 1 + .../fontawesome-free-solid/faStopwatch.d.ts | 3 + .../fontawesome-free-solid/faStopwatch.js | 1 + .../fontawesome-free-solid/faStore.d.ts | 3 + .../fontawesome-free-solid/faStore.js | 1 + .../fontawesome-free-solid/faStoreAlt.d.ts | 3 + .../fontawesome-free-solid/faStoreAlt.js | 1 + .../fontawesome-free-solid/faStream.d.ts | 3 + .../fontawesome-free-solid/faStream.js | 1 + .../fontawesome-free-solid/faStreetView.d.ts | 3 + .../fontawesome-free-solid/faStreetView.js | 1 + .../faStrikethrough.d.ts | 3 + .../fontawesome-free-solid/faStrikethrough.js | 1 + .../fontawesome-free-solid/faStroopwafel.d.ts | 3 + .../fontawesome-free-solid/faStroopwafel.js | 1 + .../fontawesome-free-solid/faSubscript.d.ts | 3 + .../fontawesome-free-solid/faSubscript.js | 1 + .../fontawesome-free-solid/faSubway.d.ts | 3 + .../fontawesome-free-solid/faSubway.js | 1 + .../fontawesome-free-solid/faSuitcase.d.ts | 3 + .../fontawesome-free-solid/faSuitcase.js | 1 + .../fontawesome-free-solid/faSun.d.ts | 3 + .../fontawesome-free-solid/faSun.js | 1 + .../fontawesome-free-solid/faSuperscript.d.ts | 3 + .../fontawesome-free-solid/faSuperscript.js | 1 + .../fontawesome-free-solid/faSync.d.ts | 3 + .../fontawesome-free-solid/faSync.js | 1 + .../fontawesome-free-solid/faSyncAlt.d.ts | 3 + .../fontawesome-free-solid/faSyncAlt.js | 1 + .../fontawesome-free-solid/faSyringe.d.ts | 3 + .../fontawesome-free-solid/faSyringe.js | 1 + .../fontawesome-free-solid/faTable.d.ts | 3 + .../fontawesome-free-solid/faTable.js | 1 + .../fontawesome-free-solid/faTableTennis.d.ts | 3 + .../fontawesome-free-solid/faTableTennis.js | 1 + .../fontawesome-free-solid/faTablet.d.ts | 3 + .../fontawesome-free-solid/faTablet.js | 1 + .../fontawesome-free-solid/faTabletAlt.d.ts | 3 + .../fontawesome-free-solid/faTabletAlt.js | 1 + .../fontawesome-free-solid/faTablets.d.ts | 3 + .../fontawesome-free-solid/faTablets.js | 1 + .../faTachometerAlt.d.ts | 3 + .../fontawesome-free-solid/faTachometerAlt.js | 1 + .../fontawesome-free-solid/faTag.d.ts | 3 + .../fontawesome-free-solid/faTag.js | 1 + .../fontawesome-free-solid/faTags.d.ts | 3 + .../fontawesome-free-solid/faTags.js | 1 + .../fontawesome-free-solid/faTape.d.ts | 3 + .../fontawesome-free-solid/faTape.js | 1 + .../fontawesome-free-solid/faTasks.d.ts | 3 + .../fontawesome-free-solid/faTasks.js | 1 + .../fontawesome-free-solid/faTaxi.d.ts | 3 + .../fontawesome-free-solid/faTaxi.js | 1 + .../fontawesome-free-solid/faTerminal.d.ts | 3 + .../fontawesome-free-solid/faTerminal.js | 1 + .../fontawesome-free-solid/faTextHeight.d.ts | 3 + .../fontawesome-free-solid/faTextHeight.js | 1 + .../fontawesome-free-solid/faTextWidth.d.ts | 3 + .../fontawesome-free-solid/faTextWidth.js | 1 + .../fontawesome-free-solid/faTh.d.ts | 3 + .../fontawesome-free-solid/faTh.js | 1 + .../fontawesome-free-solid/faThLarge.d.ts | 3 + .../fontawesome-free-solid/faThLarge.js | 1 + .../fontawesome-free-solid/faThList.d.ts | 3 + .../fontawesome-free-solid/faThList.js | 1 + .../fontawesome-free-solid/faThermometer.d.ts | 3 + .../fontawesome-free-solid/faThermometer.js | 1 + .../faThermometerEmpty.d.ts | 3 + .../faThermometerEmpty.js | 1 + .../faThermometerFull.d.ts | 3 + .../faThermometerFull.js | 1 + .../faThermometerHalf.d.ts | 3 + .../faThermometerHalf.js | 1 + .../faThermometerQuarter.d.ts | 3 + .../faThermometerQuarter.js | 1 + .../faThermometerThreeQuarters.d.ts | 3 + .../faThermometerThreeQuarters.js | 1 + .../fontawesome-free-solid/faThumbsDown.d.ts | 3 + .../fontawesome-free-solid/faThumbsDown.js | 1 + .../fontawesome-free-solid/faThumbsUp.d.ts | 3 + .../fontawesome-free-solid/faThumbsUp.js | 1 + .../fontawesome-free-solid/faThumbtack.d.ts | 3 + .../fontawesome-free-solid/faThumbtack.js | 1 + .../fontawesome-free-solid/faTicketAlt.d.ts | 3 + .../fontawesome-free-solid/faTicketAlt.js | 1 + .../fontawesome-free-solid/faTimes.d.ts | 3 + .../fontawesome-free-solid/faTimes.js | 1 + .../fontawesome-free-solid/faTimesCircle.d.ts | 3 + .../fontawesome-free-solid/faTimesCircle.js | 1 + .../fontawesome-free-solid/faTint.d.ts | 3 + .../fontawesome-free-solid/faTint.js | 1 + .../fontawesome-free-solid/faToggleOff.d.ts | 3 + .../fontawesome-free-solid/faToggleOff.js | 1 + .../fontawesome-free-solid/faToggleOn.d.ts | 3 + .../fontawesome-free-solid/faToggleOn.js | 1 + .../fontawesome-free-solid/faToolbox.d.ts | 3 + .../fontawesome-free-solid/faToolbox.js | 1 + .../fontawesome-free-solid/faTrademark.d.ts | 3 + .../fontawesome-free-solid/faTrademark.js | 1 + .../fontawesome-free-solid/faTrain.d.ts | 3 + .../fontawesome-free-solid/faTrain.js | 1 + .../fontawesome-free-solid/faTransgender.d.ts | 3 + .../fontawesome-free-solid/faTransgender.js | 1 + .../faTransgenderAlt.d.ts | 3 + .../faTransgenderAlt.js | 1 + .../fontawesome-free-solid/faTrash.d.ts | 3 + .../fontawesome-free-solid/faTrash.js | 1 + .../fontawesome-free-solid/faTrashAlt.d.ts | 3 + .../fontawesome-free-solid/faTrashAlt.js | 1 + .../fontawesome-free-solid/faTree.d.ts | 3 + .../fontawesome-free-solid/faTree.js | 1 + .../fontawesome-free-solid/faTrophy.d.ts | 3 + .../fontawesome-free-solid/faTrophy.js | 1 + .../fontawesome-free-solid/faTruck.d.ts | 3 + .../fontawesome-free-solid/faTruck.js | 1 + .../faTruckLoading.d.ts | 3 + .../fontawesome-free-solid/faTruckLoading.js | 1 + .../fontawesome-free-solid/faTruckMoving.d.ts | 3 + .../fontawesome-free-solid/faTruckMoving.js | 1 + .../fontawesome-free-solid/faTshirt.d.ts | 3 + .../fontawesome-free-solid/faTshirt.js | 1 + .../fontawesome-free-solid/faTty.d.ts | 3 + .../fontawesome-free-solid/faTty.js | 1 + .../fontawesome-free-solid/faTv.d.ts | 3 + .../fontawesome-free-solid/faTv.js | 1 + .../fontawesome-free-solid/faUmbrella.d.ts | 3 + .../fontawesome-free-solid/faUmbrella.js | 1 + .../fontawesome-free-solid/faUnderline.d.ts | 3 + .../fontawesome-free-solid/faUnderline.js | 1 + .../fontawesome-free-solid/faUndo.d.ts | 3 + .../fontawesome-free-solid/faUndo.js | 1 + .../fontawesome-free-solid/faUndoAlt.d.ts | 3 + .../fontawesome-free-solid/faUndoAlt.js | 1 + .../faUniversalAccess.d.ts | 3 + .../faUniversalAccess.js | 1 + .../fontawesome-free-solid/faUniversity.d.ts | 3 + .../fontawesome-free-solid/faUniversity.js | 1 + .../fontawesome-free-solid/faUnlink.d.ts | 3 + .../fontawesome-free-solid/faUnlink.js | 1 + .../fontawesome-free-solid/faUnlock.d.ts | 3 + .../fontawesome-free-solid/faUnlock.js | 1 + .../fontawesome-free-solid/faUnlockAlt.d.ts | 3 + .../fontawesome-free-solid/faUnlockAlt.js | 1 + .../fontawesome-free-solid/faUpload.d.ts | 3 + .../fontawesome-free-solid/faUpload.js | 1 + .../fontawesome-free-solid/faUser.d.ts | 3 + .../fontawesome-free-solid/faUser.js | 1 + .../fontawesome-free-solid/faUserAlt.d.ts | 3 + .../fontawesome-free-solid/faUserAlt.js | 1 + .../faUserAltSlash.d.ts | 3 + .../fontawesome-free-solid/faUserAltSlash.js | 1 + .../faUserAstronaut.d.ts | 3 + .../fontawesome-free-solid/faUserAstronaut.js | 1 + .../fontawesome-free-solid/faUserCheck.d.ts | 3 + .../fontawesome-free-solid/faUserCheck.js | 1 + .../fontawesome-free-solid/faUserCircle.d.ts | 3 + .../fontawesome-free-solid/faUserCircle.js | 1 + .../fontawesome-free-solid/faUserClock.d.ts | 3 + .../fontawesome-free-solid/faUserClock.js | 1 + .../fontawesome-free-solid/faUserCog.d.ts | 3 + .../fontawesome-free-solid/faUserCog.js | 1 + .../fontawesome-free-solid/faUserEdit.d.ts | 3 + .../fontawesome-free-solid/faUserEdit.js | 1 + .../fontawesome-free-solid/faUserFriends.d.ts | 3 + .../fontawesome-free-solid/faUserFriends.js | 1 + .../faUserGraduate.d.ts | 3 + .../fontawesome-free-solid/faUserGraduate.js | 1 + .../fontawesome-free-solid/faUserLock.d.ts | 3 + .../fontawesome-free-solid/faUserLock.js | 1 + .../fontawesome-free-solid/faUserMd.d.ts | 3 + .../fontawesome-free-solid/faUserMd.js | 1 + .../fontawesome-free-solid/faUserMinus.d.ts | 3 + .../fontawesome-free-solid/faUserMinus.js | 1 + .../fontawesome-free-solid/faUserNinja.d.ts | 3 + .../fontawesome-free-solid/faUserNinja.js | 1 + .../fontawesome-free-solid/faUserPlus.d.ts | 3 + .../fontawesome-free-solid/faUserPlus.js | 1 + .../fontawesome-free-solid/faUserSecret.d.ts | 3 + .../fontawesome-free-solid/faUserSecret.js | 1 + .../fontawesome-free-solid/faUserShield.d.ts | 3 + .../fontawesome-free-solid/faUserShield.js | 1 + .../fontawesome-free-solid/faUserSlash.d.ts | 3 + .../fontawesome-free-solid/faUserSlash.js | 1 + .../fontawesome-free-solid/faUserTag.d.ts | 3 + .../fontawesome-free-solid/faUserTag.js | 1 + .../fontawesome-free-solid/faUserTie.d.ts | 3 + .../fontawesome-free-solid/faUserTie.js | 1 + .../fontawesome-free-solid/faUserTimes.d.ts | 3 + .../fontawesome-free-solid/faUserTimes.js | 1 + .../fontawesome-free-solid/faUsers.d.ts | 3 + .../fontawesome-free-solid/faUsers.js | 1 + .../fontawesome-free-solid/faUsersCog.d.ts | 3 + .../fontawesome-free-solid/faUsersCog.js | 1 + .../faUtensilSpoon.d.ts | 3 + .../fontawesome-free-solid/faUtensilSpoon.js | 1 + .../fontawesome-free-solid/faUtensils.d.ts | 3 + .../fontawesome-free-solid/faUtensils.js | 1 + .../fontawesome-free-solid/faVenus.d.ts | 3 + .../fontawesome-free-solid/faVenus.js | 1 + .../fontawesome-free-solid/faVenusDouble.d.ts | 3 + .../fontawesome-free-solid/faVenusDouble.js | 1 + .../fontawesome-free-solid/faVenusMars.d.ts | 3 + .../fontawesome-free-solid/faVenusMars.js | 1 + .../fontawesome-free-solid/faVial.d.ts | 3 + .../fontawesome-free-solid/faVial.js | 1 + .../fontawesome-free-solid/faVials.d.ts | 3 + .../fontawesome-free-solid/faVials.js | 1 + .../fontawesome-free-solid/faVideo.d.ts | 3 + .../fontawesome-free-solid/faVideo.js | 1 + .../fontawesome-free-solid/faVideoSlash.d.ts | 3 + .../fontawesome-free-solid/faVideoSlash.js | 1 + .../faVolleyballBall.d.ts | 3 + .../faVolleyballBall.js | 1 + .../fontawesome-free-solid/faVolumeDown.d.ts | 3 + .../fontawesome-free-solid/faVolumeDown.js | 1 + .../fontawesome-free-solid/faVolumeOff.d.ts | 3 + .../fontawesome-free-solid/faVolumeOff.js | 1 + .../fontawesome-free-solid/faVolumeUp.d.ts | 3 + .../fontawesome-free-solid/faVolumeUp.js | 1 + .../fontawesome-free-solid/faWalking.d.ts | 3 + .../fontawesome-free-solid/faWalking.js | 1 + .../fontawesome-free-solid/faWallet.d.ts | 3 + .../fontawesome-free-solid/faWallet.js | 1 + .../fontawesome-free-solid/faWarehouse.d.ts | 3 + .../fontawesome-free-solid/faWarehouse.js | 1 + .../fontawesome-free-solid/faWeight.d.ts | 3 + .../fontawesome-free-solid/faWeight.js | 1 + .../fontawesome-free-solid/faWheelchair.d.ts | 3 + .../fontawesome-free-solid/faWheelchair.js | 1 + .../fontawesome-free-solid/faWifi.d.ts | 3 + .../fontawesome-free-solid/faWifi.js | 1 + .../fontawesome-free-solid/faWindowClose.d.ts | 3 + .../fontawesome-free-solid/faWindowClose.js | 1 + .../faWindowMaximize.d.ts | 3 + .../faWindowMaximize.js | 1 + .../faWindowMinimize.d.ts | 3 + .../faWindowMinimize.js | 1 + .../faWindowRestore.d.ts | 3 + .../fontawesome-free-solid/faWindowRestore.js | 1 + .../fontawesome-free-solid/faWineGlass.d.ts | 3 + .../fontawesome-free-solid/faWineGlass.js | 1 + .../fontawesome-free-solid/faWonSign.d.ts | 3 + .../fontawesome-free-solid/faWonSign.js | 1 + .../fontawesome-free-solid/faWrench.d.ts | 3 + .../fontawesome-free-solid/faWrench.js | 1 + .../fontawesome-free-solid/faXRay.d.ts | 3 + .../fontawesome-free-solid/faXRay.js | 1 + .../fontawesome-free-solid/faYenSign.d.ts | 3 + .../fontawesome-free-solid/faYenSign.js | 1 + .../fontawesome-free-solid/index.d.ts | 631 + .../fontawesome-free-solid/index.es.js | 1376 + .../fontawesome-free-solid/index.js | 2013 + .../fontawesome-free-solid/package.json | 59 + .../fontawesome-free-solid/shakable.es.js | 1264 + .../fontawesome-free-solid/shakable.js | 1901 + .../fontawesome-free-webfonts/LICENSE.txt | 34 + .../fontawesome-free-webfonts/README.md | 38 + .../css/fa-brands.css | 9 + .../css/fa-regular.css | 10 + .../css/fa-solid.css | 11 + .../css/fontawesome.css | 3173 ++ .../less/_animated.less | 19 + .../less/_bordered-pulled.less | 16 + .../fontawesome-free-webfonts/less/_core.less | 12 + .../less/_fixed-width.less | 6 + .../less/_icons.less | 992 + .../less/_larger.less | 27 + .../fontawesome-free-webfonts/less/_list.less | 18 + .../less/_mixins.less | 57 + .../less/_rotated-flipped.less | 23 + .../less/_screen-reader.less | 5 + .../less/_stacked.less | 22 + .../less/_variables.less | 1001 + .../less/fa-brands.less | 17 + .../less/fa-regular.less | 18 + .../less/fa-solid.less | 19 + .../less/fontawesome.less | 16 + .../fontawesome-free-webfonts/package.json | 55 + .../scss/_animated.scss | 20 + .../scss/_bordered-pulled.scss | 20 + .../fontawesome-free-webfonts/scss/_core.scss | 16 + .../scss/_fixed-width.scss | 6 + .../scss/_icons.scss | 992 + .../scss/_larger.scss | 23 + .../fontawesome-free-webfonts/scss/_list.scss | 18 + .../scss/_mixins.scss | 57 + .../scss/_rotated-flipped.scss | 23 + .../scss/_screen-reader.scss | 5 + .../scss/_stacked.scss | 31 + .../scss/_variables.scss | 1005 + .../scss/fa-brands.scss | 17 + .../scss/fa-regular.scss | 18 + .../scss/fa-solid.scss | 19 + .../scss/fontawesome.scss | 16 + .../webfonts/fa-brands-400.eot | Bin 0 -> 111620 bytes .../webfonts/fa-brands-400.svg | 1100 + .../webfonts/fa-brands-400.ttf | Bin 0 -> 111384 bytes .../webfonts/fa-brands-400.woff | Bin 0 -> 71560 bytes .../webfonts/fa-brands-400.woff2 | Bin 0 -> 61336 bytes .../webfonts/fa-regular-400.eot | Bin 0 -> 31272 bytes .../webfonts/fa-regular-400.svg | 368 + .../webfonts/fa-regular-400.ttf | Bin 0 -> 31044 bytes .../webfonts/fa-regular-400.woff | Bin 0 -> 14724 bytes .../webfonts/fa-regular-400.woff2 | Bin 0 -> 12196 bytes .../webfonts/fa-solid-900.eot | Bin 0 -> 133140 bytes .../webfonts/fa-solid-900.svg | 1892 + .../webfonts/fa-solid-900.ttf | Bin 0 -> 132920 bytes .../webfonts/fa-solid-900.woff | Bin 0 -> 63836 bytes .../webfonts/fa-solid-900.woff2 | Bin 0 -> 50372 bytes .../fontawesome-free/LICENSE.txt | 34 + .../fontawesome-free/README.md | 38 + .../fontawesome-free/css/all.css | 3572 ++ .../fontawesome-free/css/all.min.css | 5 + .../fontawesome-free/css/brands.css | 13 + .../fontawesome-free/css/brands.min.css | 5 + .../fontawesome-free/css/fontawesome.css | 3542 ++ .../fontawesome-free/css/fontawesome.min.css | 5 + .../fontawesome-free/css/regular.css | 14 + .../fontawesome-free/css/regular.min.css | 5 + .../fontawesome-free/css/solid.css | 15 + .../fontawesome-free/css/solid.min.css | 5 + .../fontawesome-free/css/svg-with-js.css | 345 + .../fontawesome-free/css/svg-with-js.min.css | 5 + .../fontawesome-free/css/v4-shims.css | 2170 + .../fontawesome-free/css/v4-shims.min.css | 5 + .../fontawesome-free/js/all.js | 3606 ++ .../fontawesome-free/js/all.min.js | 2460 + .../fontawesome-free/js/brands.js | 498 + .../fontawesome-free/js/brands.min.js | 425 + .../fontawesome-free/js/fontawesome.js | 1978 + .../fontawesome-free/js/fontawesome.min.js | 1054 + .../fontawesome-free/js/regular.js | 277 + .../fontawesome-free/js/regular.min.js | 204 + .../fontawesome-free/js/solid.js | 865 + .../fontawesome-free/js/solid.min.js | 792 + .../fontawesome-free/js/v4-shims.js | 91 + .../fontawesome-free/js/v4-shims.min.js | 40 + .../fontawesome-free/less/_animated.less | 19 + .../less/_bordered-pulled.less | 16 + .../fontawesome-free/less/_core.less | 12 + .../fontawesome-free/less/_fixed-width.less | 6 + .../fontawesome-free/less/_icons.less | 1115 + .../fontawesome-free/less/_larger.less | 27 + .../fontawesome-free/less/_list.less | 18 + .../fontawesome-free/less/_mixins.less | 57 + .../less/_rotated-flipped.less | 23 + .../fontawesome-free/less/_screen-reader.less | 5 + .../fontawesome-free/less/_shims.less | 2066 + .../fontawesome-free/less/_stacked.less | 22 + .../fontawesome-free/less/_variables.less | 1124 + .../fontawesome-free/less/brands.less | 21 + .../fontawesome-free/less/fa-brands.less | 17 + .../fontawesome-free/less/fa-regular.less | 18 + .../fontawesome-free/less/fa-solid.less | 19 + .../fontawesome-free/less/fontawesome.less | 16 + .../fontawesome-free/less/regular.less | 22 + .../fontawesome-free/less/solid.less | 23 + .../fontawesome-free/less/v4-shims.less | 6 + .../fontawesome-free/package.json | 55 + .../fontawesome-free/scss/_animated.scss | 20 + .../scss/_bordered-pulled.scss | 20 + .../fontawesome-free/scss/_core.scss | 16 + .../fontawesome-free/scss/_fixed-width.scss | 6 + .../fontawesome-free/scss/_icons.scss | 1115 + .../fontawesome-free/scss/_larger.scss | 23 + .../fontawesome-free/scss/_list.scss | 18 + .../fontawesome-free/scss/_mixins.scss | 57 + .../scss/_rotated-flipped.scss | 23 + .../fontawesome-free/scss/_screen-reader.scss | 5 + .../fontawesome-free/scss/_shims.scss | 2066 + .../fontawesome-free/scss/_stacked.scss | 31 + .../fontawesome-free/scss/_variables.scss | 1128 + .../fontawesome-free/scss/brands.scss | 21 + .../fontawesome-free/scss/fa-brands.scss | 17 + .../fontawesome-free/scss/fa-regular.scss | 18 + .../fontawesome-free/scss/fa-solid.scss | 19 + .../fontawesome-free/scss/fontawesome.scss | 16 + .../fontawesome-free/scss/regular.scss | 22 + .../fontawesome-free/scss/solid.scss | 23 + .../fontawesome-free/scss/v4-shims.scss | 6 + .../fontawesome-free/sprites/brands.svg | 1499 + .../fontawesome-free/sprites/regular.svg | 615 + .../fontawesome-free/sprites/solid.svg | 2967 ++ .../fontawesome-free/svgs/brands/500px.svg | 5 + .../svgs/brands/accessible-icon.svg | 5 + .../fontawesome-free/svgs/brands/accusoft.svg | 5 + .../fontawesome-free/svgs/brands/adn.svg | 5 + .../fontawesome-free/svgs/brands/adversal.svg | 5 + .../svgs/brands/affiliatetheme.svg | 5 + .../fontawesome-free/svgs/brands/algolia.svg | 5 + .../svgs/brands/amazon-pay.svg | 5 + .../fontawesome-free/svgs/brands/amazon.svg | 5 + .../fontawesome-free/svgs/brands/amilia.svg | 5 + .../fontawesome-free/svgs/brands/android.svg | 5 + .../svgs/brands/angellist.svg | 5 + .../svgs/brands/angrycreative.svg | 5 + .../fontawesome-free/svgs/brands/angular.svg | 5 + .../svgs/brands/app-store-ios.svg | 5 + .../svgs/brands/app-store.svg | 5 + .../fontawesome-free/svgs/brands/apper.svg | 5 + .../svgs/brands/apple-pay.svg | 5 + .../fontawesome-free/svgs/brands/apple.svg | 5 + .../svgs/brands/asymmetrik.svg | 5 + .../fontawesome-free/svgs/brands/audible.svg | 5 + .../svgs/brands/autoprefixer.svg | 5 + .../fontawesome-free/svgs/brands/avianex.svg | 5 + .../fontawesome-free/svgs/brands/aviato.svg | 5 + .../fontawesome-free/svgs/brands/aws.svg | 5 + .../fontawesome-free/svgs/brands/bandcamp.svg | 5 + .../svgs/brands/behance-square.svg | 5 + .../fontawesome-free/svgs/brands/behance.svg | 5 + .../svgs/brands/bimobject.svg | 5 + .../svgs/brands/bitbucket.svg | 5 + .../fontawesome-free/svgs/brands/bitcoin.svg | 5 + .../fontawesome-free/svgs/brands/bity.svg | 5 + .../svgs/brands/black-tie.svg | 5 + .../svgs/brands/blackberry.svg | 5 + .../svgs/brands/blogger-b.svg | 5 + .../fontawesome-free/svgs/brands/blogger.svg | 5 + .../svgs/brands/bluetooth-b.svg | 5 + .../svgs/brands/bluetooth.svg | 5 + .../fontawesome-free/svgs/brands/btc.svg | 5 + .../svgs/brands/buromobelexperte.svg | 5 + .../svgs/brands/buysellads.svg | 5 + .../svgs/brands/cc-amazon-pay.svg | 5 + .../fontawesome-free/svgs/brands/cc-amex.svg | 5 + .../svgs/brands/cc-apple-pay.svg | 5 + .../svgs/brands/cc-diners-club.svg | 5 + .../svgs/brands/cc-discover.svg | 5 + .../fontawesome-free/svgs/brands/cc-jcb.svg | 5 + .../svgs/brands/cc-mastercard.svg | 5 + .../svgs/brands/cc-paypal.svg | 5 + .../svgs/brands/cc-stripe.svg | 5 + .../fontawesome-free/svgs/brands/cc-visa.svg | 5 + .../svgs/brands/centercode.svg | 5 + .../fontawesome-free/svgs/brands/chrome.svg | 5 + .../svgs/brands/cloudscale.svg | 5 + .../svgs/brands/cloudsmith.svg | 5 + .../svgs/brands/cloudversify.svg | 5 + .../fontawesome-free/svgs/brands/codepen.svg | 5 + .../fontawesome-free/svgs/brands/codiepie.svg | 5 + .../svgs/brands/connectdevelop.svg | 5 + .../fontawesome-free/svgs/brands/contao.svg | 5 + .../fontawesome-free/svgs/brands/cpanel.svg | 5 + .../svgs/brands/creative-commons-by.svg | 5 + .../svgs/brands/creative-commons-nc-eu.svg | 5 + .../svgs/brands/creative-commons-nc-jp.svg | 5 + .../svgs/brands/creative-commons-nc.svg | 5 + .../svgs/brands/creative-commons-nd.svg | 5 + .../svgs/brands/creative-commons-pd-alt.svg | 5 + .../svgs/brands/creative-commons-pd.svg | 5 + .../svgs/brands/creative-commons-remix.svg | 5 + .../svgs/brands/creative-commons-sa.svg | 5 + .../brands/creative-commons-sampling-plus.svg | 5 + .../svgs/brands/creative-commons-sampling.svg | 5 + .../svgs/brands/creative-commons-share.svg | 5 + .../svgs/brands/creative-commons.svg | 5 + .../fontawesome-free/svgs/brands/css3-alt.svg | 5 + .../fontawesome-free/svgs/brands/css3.svg | 5 + .../svgs/brands/cuttlefish.svg | 5 + .../fontawesome-free/svgs/brands/d-and-d.svg | 5 + .../fontawesome-free/svgs/brands/dashcube.svg | 5 + .../svgs/brands/delicious.svg | 5 + .../svgs/brands/deploydog.svg | 5 + .../fontawesome-free/svgs/brands/deskpro.svg | 5 + .../svgs/brands/deviantart.svg | 5 + .../fontawesome-free/svgs/brands/digg.svg | 5 + .../svgs/brands/digital-ocean.svg | 5 + .../fontawesome-free/svgs/brands/discord.svg | 5 + .../svgs/brands/discourse.svg | 5 + .../fontawesome-free/svgs/brands/dochub.svg | 5 + .../fontawesome-free/svgs/brands/docker.svg | 5 + .../svgs/brands/draft2digital.svg | 5 + .../svgs/brands/dribbble-square.svg | 5 + .../fontawesome-free/svgs/brands/dribbble.svg | 5 + .../fontawesome-free/svgs/brands/dropbox.svg | 5 + .../fontawesome-free/svgs/brands/drupal.svg | 5 + .../fontawesome-free/svgs/brands/dyalog.svg | 5 + .../svgs/brands/earlybirds.svg | 5 + .../fontawesome-free/svgs/brands/ebay.svg | 5 + .../fontawesome-free/svgs/brands/edge.svg | 5 + .../svgs/brands/elementor.svg | 5 + .../fontawesome-free/svgs/brands/ember.svg | 5 + .../fontawesome-free/svgs/brands/empire.svg | 5 + .../fontawesome-free/svgs/brands/envira.svg | 5 + .../fontawesome-free/svgs/brands/erlang.svg | 5 + .../fontawesome-free/svgs/brands/ethereum.svg | 5 + .../fontawesome-free/svgs/brands/etsy.svg | 5 + .../svgs/brands/expeditedssl.svg | 5 + .../svgs/brands/facebook-f.svg | 1 + .../svgs/brands/facebook-messenger.svg | 1 + .../svgs/brands/facebook-square.svg | 1 + .../fontawesome-free/svgs/brands/facebook.svg | 1 + .../fontawesome-free/svgs/brands/firefox.svg | 5 + .../svgs/brands/first-order-alt.svg | 5 + .../svgs/brands/first-order.svg | 5 + .../svgs/brands/firstdraft.svg | 5 + .../fontawesome-free/svgs/brands/flickr.svg | 5 + .../svgs/brands/flipboard.svg | 5 + .../fontawesome-free/svgs/brands/fly.svg | 5 + .../svgs/brands/font-awesome-alt.svg | 5 + .../svgs/brands/font-awesome-flag.svg | 5 + .../svgs/brands/font-awesome-logo-full.svg | 5 + .../svgs/brands/font-awesome.svg | 5 + .../svgs/brands/fonticons-fi.svg | 5 + .../svgs/brands/fonticons.svg | 5 + .../svgs/brands/fort-awesome-alt.svg | 5 + .../svgs/brands/fort-awesome.svg | 5 + .../fontawesome-free/svgs/brands/forumbee.svg | 5 + .../svgs/brands/foursquare.svg | 5 + .../svgs/brands/free-code-camp.svg | 5 + .../fontawesome-free/svgs/brands/freebsd.svg | 5 + .../fontawesome-free/svgs/brands/fulcrum.svg | 5 + .../svgs/brands/galactic-republic.svg | 5 + .../svgs/brands/galactic-senate.svg | 5 + .../svgs/brands/get-pocket.svg | 5 + .../svgs/brands/gg-circle.svg | 5 + .../fontawesome-free/svgs/brands/gg.svg | 5 + .../svgs/brands/git-square.svg | 5 + .../fontawesome-free/svgs/brands/git.svg | 5 + .../svgs/brands/github-alt.svg | 5 + .../svgs/brands/github-square.svg | 5 + .../fontawesome-free/svgs/brands/github.svg | 5 + .../svgs/brands/gitkraken.svg | 5 + .../fontawesome-free/svgs/brands/gitlab.svg | 5 + .../fontawesome-free/svgs/brands/gitter.svg | 5 + .../fontawesome-free/svgs/brands/glide-g.svg | 5 + .../fontawesome-free/svgs/brands/glide.svg | 5 + .../fontawesome-free/svgs/brands/gofore.svg | 5 + .../svgs/brands/goodreads-g.svg | 5 + .../svgs/brands/goodreads.svg | 5 + .../svgs/brands/google-drive.svg | 5 + .../svgs/brands/google-play.svg | 5 + .../svgs/brands/google-plus-g.svg | 5 + .../svgs/brands/google-plus-square.svg | 5 + .../svgs/brands/google-plus.svg | 5 + .../svgs/brands/google-wallet.svg | 5 + .../fontawesome-free/svgs/brands/google.svg | 5 + .../fontawesome-free/svgs/brands/gratipay.svg | 5 + .../fontawesome-free/svgs/brands/grav.svg | 5 + .../fontawesome-free/svgs/brands/gripfire.svg | 5 + .../fontawesome-free/svgs/brands/grunt.svg | 5 + .../fontawesome-free/svgs/brands/gulp.svg | 5 + .../svgs/brands/hacker-news-square.svg | 5 + .../svgs/brands/hacker-news.svg | 5 + .../fontawesome-free/svgs/brands/hips.svg | 5 + .../svgs/brands/hire-a-helper.svg | 5 + .../fontawesome-free/svgs/brands/hooli.svg | 5 + .../fontawesome-free/svgs/brands/hornbill.svg | 5 + .../fontawesome-free/svgs/brands/hotjar.svg | 5 + .../fontawesome-free/svgs/brands/houzz.svg | 5 + .../fontawesome-free/svgs/brands/html5.svg | 5 + .../fontawesome-free/svgs/brands/hubspot.svg | 5 + .../fontawesome-free/svgs/brands/imdb.svg | 5 + .../svgs/brands/instagram.svg | 5 + .../svgs/brands/internet-explorer.svg | 5 + .../fontawesome-free/svgs/brands/ioxhost.svg | 5 + .../svgs/brands/itunes-note.svg | 5 + .../fontawesome-free/svgs/brands/itunes.svg | 5 + .../fontawesome-free/svgs/brands/java.svg | 5 + .../svgs/brands/jedi-order.svg | 5 + .../fontawesome-free/svgs/brands/jenkins.svg | 5 + .../fontawesome-free/svgs/brands/joget.svg | 5 + .../fontawesome-free/svgs/brands/joomla.svg | 5 + .../svgs/brands/js-square.svg | 5 + .../fontawesome-free/svgs/brands/js.svg | 5 + .../fontawesome-free/svgs/brands/jsfiddle.svg | 5 + .../fontawesome-free/svgs/brands/keybase.svg | 5 + .../fontawesome-free/svgs/brands/keycdn.svg | 5 + .../svgs/brands/kickstarter-k.svg | 5 + .../svgs/brands/kickstarter.svg | 5 + .../fontawesome-free/svgs/brands/korvue.svg | 5 + .../fontawesome-free/svgs/brands/laravel.svg | 5 + .../svgs/brands/lastfm-square.svg | 5 + .../fontawesome-free/svgs/brands/lastfm.svg | 5 + .../fontawesome-free/svgs/brands/leanpub.svg | 5 + .../fontawesome-free/svgs/brands/less.svg | 5 + .../fontawesome-free/svgs/brands/line.svg | 5 + .../svgs/brands/linkedin-in.svg | 5 + .../fontawesome-free/svgs/brands/linkedin.svg | 5 + .../fontawesome-free/svgs/brands/linode.svg | 5 + .../fontawesome-free/svgs/brands/linux.svg | 5 + .../fontawesome-free/svgs/brands/lyft.svg | 5 + .../fontawesome-free/svgs/brands/magento.svg | 5 + .../svgs/brands/mailchimp.svg | 5 + .../svgs/brands/mandalorian.svg | 5 + .../fontawesome-free/svgs/brands/mastodon.svg | 5 + .../fontawesome-free/svgs/brands/maxcdn.svg | 5 + .../fontawesome-free/svgs/brands/medapps.svg | 5 + .../fontawesome-free/svgs/brands/medium-m.svg | 5 + .../fontawesome-free/svgs/brands/medium.svg | 5 + .../fontawesome-free/svgs/brands/medrt.svg | 5 + .../fontawesome-free/svgs/brands/meetup.svg | 5 + .../fontawesome-free/svgs/brands/megaport.svg | 5 + .../svgs/brands/microsoft.svg | 5 + .../fontawesome-free/svgs/brands/mix.svg | 5 + .../fontawesome-free/svgs/brands/mixcloud.svg | 5 + .../fontawesome-free/svgs/brands/mizuni.svg | 5 + .../fontawesome-free/svgs/brands/modx.svg | 5 + .../fontawesome-free/svgs/brands/monero.svg | 5 + .../fontawesome-free/svgs/brands/napster.svg | 5 + .../fontawesome-free/svgs/brands/nimblr.svg | 5 + .../svgs/brands/nintendo-switch.svg | 5 + .../fontawesome-free/svgs/brands/node-js.svg | 5 + .../fontawesome-free/svgs/brands/node.svg | 5 + .../fontawesome-free/svgs/brands/npm.svg | 5 + .../fontawesome-free/svgs/brands/ns8.svg | 5 + .../svgs/brands/nutritionix.svg | 5 + .../svgs/brands/odnoklassniki-square.svg | 5 + .../svgs/brands/odnoklassniki.svg | 5 + .../svgs/brands/old-republic.svg | 5 + .../fontawesome-free/svgs/brands/opencart.svg | 5 + .../fontawesome-free/svgs/brands/openid.svg | 5 + .../fontawesome-free/svgs/brands/opera.svg | 5 + .../svgs/brands/optin-monster.svg | 5 + .../fontawesome-free/svgs/brands/osi.svg | 5 + .../fontawesome-free/svgs/brands/page4.svg | 5 + .../svgs/brands/pagelines.svg | 5 + .../fontawesome-free/svgs/brands/palfed.svg | 5 + .../fontawesome-free/svgs/brands/patreon.svg | 5 + .../fontawesome-free/svgs/brands/paypal.svg | 5 + .../svgs/brands/periscope.svg | 5 + .../svgs/brands/phabricator.svg | 5 + .../svgs/brands/phoenix-framework.svg | 5 + .../svgs/brands/phoenix-squadron.svg | 5 + .../fontawesome-free/svgs/brands/php.svg | 5 + .../svgs/brands/pied-piper-alt.svg | 5 + .../svgs/brands/pied-piper-hat.svg | 5 + .../svgs/brands/pied-piper-pp.svg | 5 + .../svgs/brands/pied-piper.svg | 5 + .../svgs/brands/pinterest-p.svg | 5 + .../svgs/brands/pinterest-square.svg | 5 + .../svgs/brands/pinterest.svg | 5 + .../svgs/brands/playstation.svg | 5 + .../svgs/brands/product-hunt.svg | 5 + .../fontawesome-free/svgs/brands/pushed.svg | 5 + .../fontawesome-free/svgs/brands/python.svg | 5 + .../fontawesome-free/svgs/brands/qq.svg | 5 + .../svgs/brands/quinscape.svg | 5 + .../fontawesome-free/svgs/brands/quora.svg | 5 + .../svgs/brands/r-project.svg | 5 + .../fontawesome-free/svgs/brands/ravelry.svg | 5 + .../fontawesome-free/svgs/brands/react.svg | 5 + .../fontawesome-free/svgs/brands/readme.svg | 5 + .../fontawesome-free/svgs/brands/rebel.svg | 5 + .../svgs/brands/red-river.svg | 5 + .../svgs/brands/reddit-alien.svg | 5 + .../svgs/brands/reddit-square.svg | 5 + .../fontawesome-free/svgs/brands/reddit.svg | 5 + .../fontawesome-free/svgs/brands/rendact.svg | 5 + .../fontawesome-free/svgs/brands/renren.svg | 5 + .../fontawesome-free/svgs/brands/replyd.svg | 5 + .../svgs/brands/researchgate.svg | 5 + .../svgs/brands/resolving.svg | 5 + .../fontawesome-free/svgs/brands/rev.svg | 5 + .../svgs/brands/rocketchat.svg | 5 + .../fontawesome-free/svgs/brands/rockrms.svg | 5 + .../fontawesome-free/svgs/brands/safari.svg | 5 + .../fontawesome-free/svgs/brands/sass.svg | 5 + .../fontawesome-free/svgs/brands/schlix.svg | 5 + .../fontawesome-free/svgs/brands/scribd.svg | 5 + .../svgs/brands/searchengin.svg | 5 + .../fontawesome-free/svgs/brands/sellcast.svg | 5 + .../fontawesome-free/svgs/brands/sellsy.svg | 5 + .../svgs/brands/servicestack.svg | 5 + .../svgs/brands/shirtsinbulk.svg | 5 + .../fontawesome-free/svgs/brands/shopware.svg | 5 + .../svgs/brands/simplybuilt.svg | 5 + .../fontawesome-free/svgs/brands/sistrix.svg | 5 + .../fontawesome-free/svgs/brands/sith.svg | 5 + .../fontawesome-free/svgs/brands/skyatlas.svg | 5 + .../fontawesome-free/svgs/brands/skype.svg | 5 + .../svgs/brands/slack-hash.svg | 5 + .../fontawesome-free/svgs/brands/slack.svg | 5 + .../svgs/brands/slideshare.svg | 5 + .../svgs/brands/snapchat-ghost.svg | 5 + .../svgs/brands/snapchat-square.svg | 5 + .../fontawesome-free/svgs/brands/snapchat.svg | 5 + .../svgs/brands/soundcloud.svg | 5 + .../fontawesome-free/svgs/brands/speakap.svg | 5 + .../fontawesome-free/svgs/brands/spotify.svg | 5 + .../svgs/brands/squarespace.svg | 5 + .../svgs/brands/stack-exchange.svg | 5 + .../svgs/brands/stack-overflow.svg | 5 + .../svgs/brands/staylinked.svg | 5 + .../svgs/brands/steam-square.svg | 5 + .../svgs/brands/steam-symbol.svg | 5 + .../fontawesome-free/svgs/brands/steam.svg | 5 + .../svgs/brands/sticker-mule.svg | 5 + .../fontawesome-free/svgs/brands/strava.svg | 5 + .../fontawesome-free/svgs/brands/stripe-s.svg | 5 + .../fontawesome-free/svgs/brands/stripe.svg | 5 + .../svgs/brands/studiovinari.svg | 5 + .../svgs/brands/stumbleupon-circle.svg | 5 + .../svgs/brands/stumbleupon.svg | 5 + .../svgs/brands/superpowers.svg | 5 + .../fontawesome-free/svgs/brands/supple.svg | 5 + .../svgs/brands/teamspeak.svg | 5 + .../svgs/brands/telegram-plane.svg | 5 + .../fontawesome-free/svgs/brands/telegram.svg | 5 + .../svgs/brands/tencent-weibo.svg | 5 + .../fontawesome-free/svgs/brands/themeco.svg | 5 + .../svgs/brands/themeisle.svg | 5 + .../svgs/brands/trade-federation.svg | 5 + .../fontawesome-free/svgs/brands/trello.svg | 5 + .../svgs/brands/tripadvisor.svg | 5 + .../svgs/brands/tumblr-square.svg | 5 + .../fontawesome-free/svgs/brands/tumblr.svg | 5 + .../fontawesome-free/svgs/brands/twitch.svg | 5 + .../svgs/brands/twitter-square.svg | 5 + .../fontawesome-free/svgs/brands/twitter.svg | 5 + .../fontawesome-free/svgs/brands/typo3.svg | 5 + .../fontawesome-free/svgs/brands/uber.svg | 5 + .../fontawesome-free/svgs/brands/uikit.svg | 5 + .../svgs/brands/uniregistry.svg | 5 + .../fontawesome-free/svgs/brands/untappd.svg | 5 + .../fontawesome-free/svgs/brands/usb.svg | 5 + .../fontawesome-free/svgs/brands/ussunnah.svg | 5 + .../fontawesome-free/svgs/brands/vaadin.svg | 5 + .../fontawesome-free/svgs/brands/viacoin.svg | 5 + .../svgs/brands/viadeo-square.svg | 5 + .../fontawesome-free/svgs/brands/viadeo.svg | 5 + .../fontawesome-free/svgs/brands/viber.svg | 5 + .../svgs/brands/vimeo-square.svg | 5 + .../fontawesome-free/svgs/brands/vimeo-v.svg | 5 + .../fontawesome-free/svgs/brands/vimeo.svg | 5 + .../fontawesome-free/svgs/brands/vine.svg | 5 + .../fontawesome-free/svgs/brands/vk.svg | 5 + .../fontawesome-free/svgs/brands/vnv.svg | 5 + .../fontawesome-free/svgs/brands/vuejs.svg | 5 + .../fontawesome-free/svgs/brands/weebly.svg | 5 + .../fontawesome-free/svgs/brands/weibo.svg | 5 + .../fontawesome-free/svgs/brands/weixin.svg | 5 + .../svgs/brands/whatsapp-square.svg | 5 + .../fontawesome-free/svgs/brands/whatsapp.svg | 5 + .../fontawesome-free/svgs/brands/whmcs.svg | 5 + .../svgs/brands/wikipedia-w.svg | 5 + .../fontawesome-free/svgs/brands/windows.svg | 5 + .../fontawesome-free/svgs/brands/wix.svg | 5 + .../svgs/brands/wolf-pack-battalion.svg | 5 + .../svgs/brands/wordpress-simple.svg | 5 + .../svgs/brands/wordpress.svg | 5 + .../svgs/brands/wpbeginner.svg | 5 + .../svgs/brands/wpexplorer.svg | 5 + .../fontawesome-free/svgs/brands/wpforms.svg | 5 + .../fontawesome-free/svgs/brands/xbox.svg | 5 + .../svgs/brands/xing-square.svg | 5 + .../fontawesome-free/svgs/brands/xing.svg | 5 + .../svgs/brands/y-combinator.svg | 5 + .../fontawesome-free/svgs/brands/yahoo.svg | 5 + .../svgs/brands/yandex-international.svg | 5 + .../fontawesome-free/svgs/brands/yandex.svg | 5 + .../fontawesome-free/svgs/brands/yelp.svg | 5 + .../fontawesome-free/svgs/brands/yoast.svg | 5 + .../svgs/brands/youtube-square.svg | 5 + .../fontawesome-free/svgs/brands/youtube.svg | 5 + .../svgs/regular/address-book.svg | 5 + .../svgs/regular/address-card.svg | 5 + .../fontawesome-free/svgs/regular/angry.svg | 5 + .../svgs/regular/arrow-alt-circle-down.svg | 5 + .../svgs/regular/arrow-alt-circle-left.svg | 5 + .../svgs/regular/arrow-alt-circle-right.svg | 5 + .../svgs/regular/arrow-alt-circle-up.svg | 5 + .../svgs/regular/bell-slash.svg | 5 + .../fontawesome-free/svgs/regular/bell.svg | 5 + .../svgs/regular/bookmark.svg | 5 + .../svgs/regular/building.svg | 5 + .../svgs/regular/calendar-alt.svg | 5 + .../svgs/regular/calendar-check.svg | 5 + .../svgs/regular/calendar-minus.svg | 5 + .../svgs/regular/calendar-plus.svg | 5 + .../svgs/regular/calendar-times.svg | 5 + .../svgs/regular/calendar.svg | 5 + .../svgs/regular/caret-square-down.svg | 5 + .../svgs/regular/caret-square-left.svg | 5 + .../svgs/regular/caret-square-right.svg | 5 + .../svgs/regular/caret-square-up.svg | 5 + .../svgs/regular/chart-bar.svg | 5 + .../svgs/regular/check-circle.svg | 5 + .../svgs/regular/check-square.svg | 5 + .../fontawesome-free/svgs/regular/circle.svg | 5 + .../svgs/regular/clipboard.svg | 5 + .../fontawesome-free/svgs/regular/clock.svg | 5 + .../fontawesome-free/svgs/regular/clone.svg | 5 + .../svgs/regular/closed-captioning.svg | 5 + .../svgs/regular/comment-alt.svg | 5 + .../svgs/regular/comment-dots.svg | 5 + .../fontawesome-free/svgs/regular/comment.svg | 5 + .../svgs/regular/comments.svg | 5 + .../fontawesome-free/svgs/regular/compass.svg | 5 + .../fontawesome-free/svgs/regular/copy.svg | 5 + .../svgs/regular/copyright.svg | 5 + .../svgs/regular/credit-card.svg | 5 + .../fontawesome-free/svgs/regular/dizzy.svg | 5 + .../svgs/regular/dot-circle.svg | 5 + .../fontawesome-free/svgs/regular/edit.svg | 5 + .../svgs/regular/envelope-open.svg | 5 + .../svgs/regular/envelope.svg | 5 + .../svgs/regular/eye-slash.svg | 5 + .../fontawesome-free/svgs/regular/eye.svg | 5 + .../svgs/regular/file-alt.svg | 5 + .../svgs/regular/file-archive.svg | 5 + .../svgs/regular/file-audio.svg | 5 + .../svgs/regular/file-code.svg | 5 + .../svgs/regular/file-excel.svg | 5 + .../svgs/regular/file-image.svg | 5 + .../svgs/regular/file-pdf.svg | 5 + .../svgs/regular/file-powerpoint.svg | 5 + .../svgs/regular/file-video.svg | 5 + .../svgs/regular/file-word.svg | 5 + .../fontawesome-free/svgs/regular/file.svg | 5 + .../fontawesome-free/svgs/regular/flag.svg | 5 + .../fontawesome-free/svgs/regular/flushed.svg | 5 + .../svgs/regular/folder-open.svg | 5 + .../fontawesome-free/svgs/regular/folder.svg | 5 + .../svgs/regular/font-awesome-logo-full.svg | 5 + .../svgs/regular/frown-open.svg | 5 + .../fontawesome-free/svgs/regular/frown.svg | 5 + .../fontawesome-free/svgs/regular/futbol.svg | 5 + .../fontawesome-free/svgs/regular/gem.svg | 5 + .../fontawesome-free/svgs/regular/grimace.svg | 5 + .../svgs/regular/grin-alt.svg | 5 + .../svgs/regular/grin-beam-sweat.svg | 5 + .../svgs/regular/grin-beam.svg | 5 + .../svgs/regular/grin-hearts.svg | 5 + .../svgs/regular/grin-squint-tears.svg | 5 + .../svgs/regular/grin-squint.svg | 5 + .../svgs/regular/grin-stars.svg | 5 + .../svgs/regular/grin-tears.svg | 5 + .../svgs/regular/grin-tongue-squint.svg | 5 + .../svgs/regular/grin-tongue-wink.svg | 5 + .../svgs/regular/grin-tongue.svg | 5 + .../svgs/regular/grin-wink.svg | 5 + .../fontawesome-free/svgs/regular/grin.svg | 5 + .../svgs/regular/hand-lizard.svg | 5 + .../svgs/regular/hand-paper.svg | 5 + .../svgs/regular/hand-peace.svg | 5 + .../svgs/regular/hand-point-down.svg | 5 + .../svgs/regular/hand-point-left.svg | 5 + .../svgs/regular/hand-point-right.svg | 5 + .../svgs/regular/hand-point-up.svg | 5 + .../svgs/regular/hand-pointer.svg | 5 + .../svgs/regular/hand-rock.svg | 5 + .../svgs/regular/hand-scissors.svg | 5 + .../svgs/regular/hand-spock.svg | 5 + .../svgs/regular/handshake.svg | 5 + .../fontawesome-free/svgs/regular/hdd.svg | 5 + .../fontawesome-free/svgs/regular/heart.svg | 5 + .../svgs/regular/hospital.svg | 5 + .../svgs/regular/hourglass.svg | 5 + .../svgs/regular/id-badge.svg | 5 + .../fontawesome-free/svgs/regular/id-card.svg | 5 + .../fontawesome-free/svgs/regular/image.svg | 5 + .../fontawesome-free/svgs/regular/images.svg | 5 + .../svgs/regular/keyboard.svg | 5 + .../svgs/regular/kiss-beam.svg | 5 + .../svgs/regular/kiss-wink-heart.svg | 5 + .../fontawesome-free/svgs/regular/kiss.svg | 5 + .../svgs/regular/laugh-beam.svg | 5 + .../svgs/regular/laugh-squint.svg | 5 + .../svgs/regular/laugh-wink.svg | 5 + .../fontawesome-free/svgs/regular/laugh.svg | 5 + .../fontawesome-free/svgs/regular/lemon.svg | 5 + .../svgs/regular/life-ring.svg | 5 + .../svgs/regular/lightbulb.svg | 5 + .../svgs/regular/list-alt.svg | 5 + .../fontawesome-free/svgs/regular/map.svg | 5 + .../svgs/regular/meh-blank.svg | 5 + .../svgs/regular/meh-rolling-eyes.svg | 5 + .../fontawesome-free/svgs/regular/meh.svg | 5 + .../svgs/regular/minus-square.svg | 5 + .../svgs/regular/money-bill-alt.svg | 5 + .../fontawesome-free/svgs/regular/moon.svg | 5 + .../svgs/regular/newspaper.svg | 5 + .../svgs/regular/object-group.svg | 5 + .../svgs/regular/object-ungroup.svg | 5 + .../svgs/regular/paper-plane.svg | 5 + .../svgs/regular/pause-circle.svg | 5 + .../svgs/regular/play-circle.svg | 5 + .../svgs/regular/plus-square.svg | 5 + .../svgs/regular/question-circle.svg | 5 + .../svgs/regular/registered.svg | 5 + .../fontawesome-free/svgs/regular/sad-cry.svg | 5 + .../svgs/regular/sad-tear.svg | 5 + .../fontawesome-free/svgs/regular/save.svg | 5 + .../svgs/regular/share-square.svg | 5 + .../svgs/regular/smile-beam.svg | 5 + .../svgs/regular/smile-wink.svg | 5 + .../fontawesome-free/svgs/regular/smile.svg | 5 + .../svgs/regular/snowflake.svg | 5 + .../fontawesome-free/svgs/regular/square.svg | 5 + .../svgs/regular/star-half.svg | 5 + .../fontawesome-free/svgs/regular/star.svg | 5 + .../svgs/regular/sticky-note.svg | 5 + .../svgs/regular/stop-circle.svg | 5 + .../fontawesome-free/svgs/regular/sun.svg | 5 + .../svgs/regular/surprise.svg | 5 + .../svgs/regular/thumbs-down.svg | 5 + .../svgs/regular/thumbs-up.svg | 5 + .../svgs/regular/times-circle.svg | 5 + .../fontawesome-free/svgs/regular/tired.svg | 5 + .../svgs/regular/trash-alt.svg | 5 + .../svgs/regular/user-circle.svg | 5 + .../fontawesome-free/svgs/regular/user.svg | 5 + .../svgs/regular/window-close.svg | 5 + .../svgs/regular/window-maximize.svg | 5 + .../svgs/regular/window-minimize.svg | 5 + .../svgs/regular/window-restore.svg | 5 + .../svgs/solid/address-book.svg | 5 + .../svgs/solid/address-card.svg | 5 + .../fontawesome-free/svgs/solid/adjust.svg | 5 + .../svgs/solid/align-center.svg | 5 + .../svgs/solid/align-justify.svg | 5 + .../svgs/solid/align-left.svg | 5 + .../svgs/solid/align-right.svg | 5 + .../fontawesome-free/svgs/solid/allergies.svg | 5 + .../fontawesome-free/svgs/solid/ambulance.svg | 5 + .../american-sign-language-interpreting.svg | 5 + .../fontawesome-free/svgs/solid/anchor.svg | 5 + .../svgs/solid/angle-double-down.svg | 5 + .../svgs/solid/angle-double-left.svg | 5 + .../svgs/solid/angle-double-right.svg | 5 + .../svgs/solid/angle-double-up.svg | 5 + .../svgs/solid/angle-down.svg | 5 + .../svgs/solid/angle-left.svg | 5 + .../svgs/solid/angle-right.svg | 5 + .../fontawesome-free/svgs/solid/angle-up.svg | 5 + .../fontawesome-free/svgs/solid/angry.svg | 5 + .../fontawesome-free/svgs/solid/archive.svg | 5 + .../fontawesome-free/svgs/solid/archway.svg | 5 + .../svgs/solid/arrow-alt-circle-down.svg | 5 + .../svgs/solid/arrow-alt-circle-left.svg | 5 + .../svgs/solid/arrow-alt-circle-right.svg | 5 + .../svgs/solid/arrow-alt-circle-up.svg | 5 + .../svgs/solid/arrow-circle-down.svg | 5 + .../svgs/solid/arrow-circle-left.svg | 5 + .../svgs/solid/arrow-circle-right.svg | 5 + .../svgs/solid/arrow-circle-up.svg | 5 + .../svgs/solid/arrow-down.svg | 5 + .../svgs/solid/arrow-left.svg | 5 + .../svgs/solid/arrow-right.svg | 5 + .../fontawesome-free/svgs/solid/arrow-up.svg | 5 + .../svgs/solid/arrows-alt-h.svg | 5 + .../svgs/solid/arrows-alt-v.svg | 5 + .../svgs/solid/arrows-alt.svg | 5 + .../solid/assistive-listening-systems.svg | 5 + .../fontawesome-free/svgs/solid/asterisk.svg | 5 + .../fontawesome-free/svgs/solid/at.svg | 5 + .../fontawesome-free/svgs/solid/atlas.svg | 5 + .../svgs/solid/audio-description.svg | 5 + .../fontawesome-free/svgs/solid/award.svg | 5 + .../fontawesome-free/svgs/solid/backspace.svg | 5 + .../fontawesome-free/svgs/solid/backward.svg | 5 + .../svgs/solid/balance-scale.svg | 5 + .../fontawesome-free/svgs/solid/ban.svg | 5 + .../fontawesome-free/svgs/solid/band-aid.svg | 5 + .../fontawesome-free/svgs/solid/barcode.svg | 5 + .../fontawesome-free/svgs/solid/bars.svg | 5 + .../svgs/solid/baseball-ball.svg | 5 + .../svgs/solid/basketball-ball.svg | 5 + .../fontawesome-free/svgs/solid/bath.svg | 5 + .../svgs/solid/battery-empty.svg | 5 + .../svgs/solid/battery-full.svg | 5 + .../svgs/solid/battery-half.svg | 5 + .../svgs/solid/battery-quarter.svg | 5 + .../svgs/solid/battery-three-quarters.svg | 5 + .../fontawesome-free/svgs/solid/bed.svg | 5 + .../fontawesome-free/svgs/solid/beer.svg | 5 + .../svgs/solid/bell-slash.svg | 5 + .../fontawesome-free/svgs/solid/bell.svg | 5 + .../svgs/solid/bezier-curve.svg | 5 + .../fontawesome-free/svgs/solid/bicycle.svg | 5 + .../svgs/solid/binoculars.svg | 5 + .../svgs/solid/birthday-cake.svg | 5 + .../fontawesome-free/svgs/solid/blender.svg | 5 + .../fontawesome-free/svgs/solid/blind.svg | 5 + .../fontawesome-free/svgs/solid/bold.svg | 5 + .../fontawesome-free/svgs/solid/bolt.svg | 5 + .../fontawesome-free/svgs/solid/bomb.svg | 5 + .../fontawesome-free/svgs/solid/bong.svg | 5 + .../fontawesome-free/svgs/solid/book-open.svg | 5 + .../fontawesome-free/svgs/solid/book.svg | 5 + .../fontawesome-free/svgs/solid/bookmark.svg | 5 + .../svgs/solid/bowling-ball.svg | 5 + .../fontawesome-free/svgs/solid/box-open.svg | 5 + .../fontawesome-free/svgs/solid/box.svg | 5 + .../fontawesome-free/svgs/solid/boxes.svg | 5 + .../fontawesome-free/svgs/solid/braille.svg | 5 + .../svgs/solid/briefcase-medical.svg | 5 + .../fontawesome-free/svgs/solid/briefcase.svg | 5 + .../svgs/solid/broadcast-tower.svg | 5 + .../fontawesome-free/svgs/solid/broom.svg | 5 + .../fontawesome-free/svgs/solid/brush.svg | 5 + .../fontawesome-free/svgs/solid/bug.svg | 5 + .../fontawesome-free/svgs/solid/building.svg | 5 + .../fontawesome-free/svgs/solid/bullhorn.svg | 5 + .../fontawesome-free/svgs/solid/bullseye.svg | 5 + .../fontawesome-free/svgs/solid/burn.svg | 5 + .../fontawesome-free/svgs/solid/bus-alt.svg | 5 + .../fontawesome-free/svgs/solid/bus.svg | 5 + .../svgs/solid/calculator.svg | 5 + .../svgs/solid/calendar-alt.svg | 5 + .../svgs/solid/calendar-check.svg | 5 + .../svgs/solid/calendar-minus.svg | 5 + .../svgs/solid/calendar-plus.svg | 5 + .../svgs/solid/calendar-times.svg | 5 + .../fontawesome-free/svgs/solid/calendar.svg | 5 + .../svgs/solid/camera-retro.svg | 5 + .../fontawesome-free/svgs/solid/camera.svg | 5 + .../fontawesome-free/svgs/solid/cannabis.svg | 5 + .../fontawesome-free/svgs/solid/capsules.svg | 5 + .../fontawesome-free/svgs/solid/car.svg | 5 + .../svgs/solid/caret-down.svg | 5 + .../svgs/solid/caret-left.svg | 5 + .../svgs/solid/caret-right.svg | 5 + .../svgs/solid/caret-square-down.svg | 5 + .../svgs/solid/caret-square-left.svg | 5 + .../svgs/solid/caret-square-right.svg | 5 + .../svgs/solid/caret-square-up.svg | 5 + .../fontawesome-free/svgs/solid/caret-up.svg | 5 + .../svgs/solid/cart-arrow-down.svg | 5 + .../fontawesome-free/svgs/solid/cart-plus.svg | 5 + .../svgs/solid/certificate.svg | 5 + .../svgs/solid/chalkboard-teacher.svg | 5 + .../svgs/solid/chalkboard.svg | 5 + .../svgs/solid/chart-area.svg | 5 + .../fontawesome-free/svgs/solid/chart-bar.svg | 5 + .../svgs/solid/chart-line.svg | 5 + .../fontawesome-free/svgs/solid/chart-pie.svg | 5 + .../svgs/solid/check-circle.svg | 5 + .../svgs/solid/check-double.svg | 5 + .../svgs/solid/check-square.svg | 5 + .../fontawesome-free/svgs/solid/check.svg | 5 + .../svgs/solid/chess-bishop.svg | 5 + .../svgs/solid/chess-board.svg | 5 + .../svgs/solid/chess-king.svg | 5 + .../svgs/solid/chess-knight.svg | 5 + .../svgs/solid/chess-pawn.svg | 5 + .../svgs/solid/chess-queen.svg | 5 + .../svgs/solid/chess-rook.svg | 5 + .../fontawesome-free/svgs/solid/chess.svg | 5 + .../svgs/solid/chevron-circle-down.svg | 5 + .../svgs/solid/chevron-circle-left.svg | 5 + .../svgs/solid/chevron-circle-right.svg | 5 + .../svgs/solid/chevron-circle-up.svg | 5 + .../svgs/solid/chevron-down.svg | 5 + .../svgs/solid/chevron-left.svg | 5 + .../svgs/solid/chevron-right.svg | 5 + .../svgs/solid/chevron-up.svg | 5 + .../fontawesome-free/svgs/solid/child.svg | 5 + .../fontawesome-free/svgs/solid/church.svg | 5 + .../svgs/solid/circle-notch.svg | 5 + .../fontawesome-free/svgs/solid/circle.svg | 5 + .../svgs/solid/clipboard-check.svg | 5 + .../svgs/solid/clipboard-list.svg | 5 + .../fontawesome-free/svgs/solid/clipboard.svg | 5 + .../fontawesome-free/svgs/solid/clock.svg | 5 + .../fontawesome-free/svgs/solid/clone.svg | 5 + .../svgs/solid/closed-captioning.svg | 5 + .../svgs/solid/cloud-download-alt.svg | 5 + .../svgs/solid/cloud-upload-alt.svg | 5 + .../fontawesome-free/svgs/solid/cloud.svg | 5 + .../fontawesome-free/svgs/solid/cocktail.svg | 5 + .../svgs/solid/code-branch.svg | 5 + .../fontawesome-free/svgs/solid/code.svg | 5 + .../fontawesome-free/svgs/solid/coffee.svg | 5 + .../fontawesome-free/svgs/solid/cog.svg | 5 + .../fontawesome-free/svgs/solid/cogs.svg | 5 + .../fontawesome-free/svgs/solid/coins.svg | 5 + .../fontawesome-free/svgs/solid/columns.svg | 5 + .../svgs/solid/comment-alt.svg | 5 + .../svgs/solid/comment-dots.svg | 5 + .../svgs/solid/comment-slash.svg | 5 + .../fontawesome-free/svgs/solid/comment.svg | 5 + .../fontawesome-free/svgs/solid/comments.svg | 5 + .../svgs/solid/compact-disc.svg | 5 + .../fontawesome-free/svgs/solid/compass.svg | 5 + .../fontawesome-free/svgs/solid/compress.svg | 5 + .../svgs/solid/concierge-bell.svg | 5 + .../svgs/solid/cookie-bite.svg | 5 + .../fontawesome-free/svgs/solid/cookie.svg | 5 + .../fontawesome-free/svgs/solid/copy.svg | 5 + .../fontawesome-free/svgs/solid/copyright.svg | 5 + .../fontawesome-free/svgs/solid/couch.svg | 5 + .../svgs/solid/credit-card.svg | 5 + .../fontawesome-free/svgs/solid/crop-alt.svg | 5 + .../fontawesome-free/svgs/solid/crop.svg | 5 + .../svgs/solid/crosshairs.svg | 5 + .../fontawesome-free/svgs/solid/crow.svg | 5 + .../fontawesome-free/svgs/solid/crown.svg | 5 + .../fontawesome-free/svgs/solid/cube.svg | 5 + .../fontawesome-free/svgs/solid/cubes.svg | 5 + .../fontawesome-free/svgs/solid/cut.svg | 5 + .../fontawesome-free/svgs/solid/database.svg | 5 + .../fontawesome-free/svgs/solid/deaf.svg | 5 + .../fontawesome-free/svgs/solid/desktop.svg | 5 + .../fontawesome-free/svgs/solid/diagnoses.svg | 5 + .../fontawesome-free/svgs/solid/dice-five.svg | 5 + .../fontawesome-free/svgs/solid/dice-four.svg | 5 + .../fontawesome-free/svgs/solid/dice-one.svg | 5 + .../fontawesome-free/svgs/solid/dice-six.svg | 5 + .../svgs/solid/dice-three.svg | 5 + .../fontawesome-free/svgs/solid/dice-two.svg | 5 + .../fontawesome-free/svgs/solid/dice.svg | 5 + .../svgs/solid/digital-tachograph.svg | 5 + .../fontawesome-free/svgs/solid/divide.svg | 5 + .../fontawesome-free/svgs/solid/dizzy.svg | 5 + .../fontawesome-free/svgs/solid/dna.svg | 5 + .../svgs/solid/dollar-sign.svg | 5 + .../svgs/solid/dolly-flatbed.svg | 5 + .../fontawesome-free/svgs/solid/dolly.svg | 5 + .../fontawesome-free/svgs/solid/donate.svg | 5 + .../svgs/solid/door-closed.svg | 5 + .../fontawesome-free/svgs/solid/door-open.svg | 5 + .../svgs/solid/dot-circle.svg | 5 + .../fontawesome-free/svgs/solid/dove.svg | 5 + .../fontawesome-free/svgs/solid/download.svg | 5 + .../svgs/solid/drafting-compass.svg | 5 + .../svgs/solid/drum-steelpan.svg | 5 + .../fontawesome-free/svgs/solid/drum.svg | 5 + .../fontawesome-free/svgs/solid/dumbbell.svg | 5 + .../fontawesome-free/svgs/solid/edit.svg | 5 + .../fontawesome-free/svgs/solid/eject.svg | 5 + .../svgs/solid/ellipsis-h.svg | 5 + .../svgs/solid/ellipsis-v.svg | 5 + .../svgs/solid/envelope-open.svg | 5 + .../svgs/solid/envelope-square.svg | 5 + .../fontawesome-free/svgs/solid/envelope.svg | 5 + .../fontawesome-free/svgs/solid/equals.svg | 5 + .../fontawesome-free/svgs/solid/eraser.svg | 5 + .../fontawesome-free/svgs/solid/euro-sign.svg | 5 + .../svgs/solid/exchange-alt.svg | 5 + .../svgs/solid/exclamation-circle.svg | 5 + .../svgs/solid/exclamation-triangle.svg | 5 + .../svgs/solid/exclamation.svg | 5 + .../svgs/solid/expand-arrows-alt.svg | 5 + .../fontawesome-free/svgs/solid/expand.svg | 5 + .../svgs/solid/external-link-alt.svg | 5 + .../svgs/solid/external-link-square-alt.svg | 5 + .../svgs/solid/eye-dropper.svg | 5 + .../fontawesome-free/svgs/solid/eye-slash.svg | 5 + .../fontawesome-free/svgs/solid/eye.svg | 5 + .../svgs/solid/fast-backward.svg | 1 + .../svgs/solid/fast-forward.svg | 1 + .../fontawesome-free/svgs/solid/fax.svg | 1 + .../svgs/solid/feather-alt.svg | 5 + .../fontawesome-free/svgs/solid/feather.svg | 5 + .../fontawesome-free/svgs/solid/female.svg | 5 + .../svgs/solid/fighter-jet.svg | 5 + .../fontawesome-free/svgs/solid/file-alt.svg | 5 + .../svgs/solid/file-archive.svg | 5 + .../svgs/solid/file-audio.svg | 5 + .../fontawesome-free/svgs/solid/file-code.svg | 5 + .../svgs/solid/file-contract.svg | 5 + .../svgs/solid/file-download.svg | 5 + .../svgs/solid/file-excel.svg | 5 + .../svgs/solid/file-export.svg | 5 + .../svgs/solid/file-image.svg | 5 + .../svgs/solid/file-import.svg | 5 + .../svgs/solid/file-invoice-dollar.svg | 5 + .../svgs/solid/file-invoice.svg | 5 + .../svgs/solid/file-medical-alt.svg | 5 + .../svgs/solid/file-medical.svg | 5 + .../fontawesome-free/svgs/solid/file-pdf.svg | 5 + .../svgs/solid/file-powerpoint.svg | 5 + .../svgs/solid/file-prescription.svg | 5 + .../svgs/solid/file-signature.svg | 5 + .../svgs/solid/file-upload.svg | 5 + .../svgs/solid/file-video.svg | 5 + .../fontawesome-free/svgs/solid/file-word.svg | 5 + .../fontawesome-free/svgs/solid/file.svg | 5 + .../fontawesome-free/svgs/solid/fill-drip.svg | 5 + .../fontawesome-free/svgs/solid/fill.svg | 5 + .../fontawesome-free/svgs/solid/film.svg | 5 + .../fontawesome-free/svgs/solid/filter.svg | 5 + .../svgs/solid/fingerprint.svg | 5 + .../svgs/solid/fire-extinguisher.svg | 5 + .../fontawesome-free/svgs/solid/fire.svg | 5 + .../fontawesome-free/svgs/solid/first-aid.svg | 5 + .../fontawesome-free/svgs/solid/fish.svg | 5 + .../svgs/solid/flag-checkered.svg | 5 + .../fontawesome-free/svgs/solid/flag.svg | 5 + .../fontawesome-free/svgs/solid/flask.svg | 5 + .../fontawesome-free/svgs/solid/flushed.svg | 5 + .../svgs/solid/folder-open.svg | 5 + .../fontawesome-free/svgs/solid/folder.svg | 5 + .../svgs/solid/font-awesome-logo-full.svg | 5 + .../fontawesome-free/svgs/solid/font.svg | 5 + .../svgs/solid/football-ball.svg | 5 + .../fontawesome-free/svgs/solid/forward.svg | 5 + .../fontawesome-free/svgs/solid/frog.svg | 5 + .../svgs/solid/frown-open.svg | 5 + .../fontawesome-free/svgs/solid/frown.svg | 5 + .../fontawesome-free/svgs/solid/futbol.svg | 5 + .../fontawesome-free/svgs/solid/gamepad.svg | 5 + .../fontawesome-free/svgs/solid/gas-pump.svg | 5 + .../fontawesome-free/svgs/solid/gavel.svg | 5 + .../fontawesome-free/svgs/solid/gem.svg | 5 + .../svgs/solid/genderless.svg | 5 + .../fontawesome-free/svgs/solid/gift.svg | 5 + .../svgs/solid/glass-martini-alt.svg | 5 + .../svgs/solid/glass-martini.svg | 5 + .../fontawesome-free/svgs/solid/glasses.svg | 5 + .../svgs/solid/globe-africa.svg | 5 + .../svgs/solid/globe-americas.svg | 5 + .../svgs/solid/globe-asia.svg | 5 + .../fontawesome-free/svgs/solid/globe.svg | 5 + .../fontawesome-free/svgs/solid/golf-ball.svg | 5 + .../svgs/solid/graduation-cap.svg | 5 + .../svgs/solid/greater-than-equal.svg | 5 + .../svgs/solid/greater-than.svg | 5 + .../fontawesome-free/svgs/solid/grimace.svg | 5 + .../fontawesome-free/svgs/solid/grin-alt.svg | 5 + .../svgs/solid/grin-beam-sweat.svg | 5 + .../fontawesome-free/svgs/solid/grin-beam.svg | 5 + .../svgs/solid/grin-hearts.svg | 5 + .../svgs/solid/grin-squint-tears.svg | 5 + .../svgs/solid/grin-squint.svg | 5 + .../svgs/solid/grin-stars.svg | 5 + .../svgs/solid/grin-tears.svg | 5 + .../svgs/solid/grin-tongue-squint.svg | 5 + .../svgs/solid/grin-tongue-wink.svg | 5 + .../svgs/solid/grin-tongue.svg | 5 + .../fontawesome-free/svgs/solid/grin-wink.svg | 5 + .../fontawesome-free/svgs/solid/grin.svg | 5 + .../svgs/solid/grip-horizontal.svg | 5 + .../svgs/solid/grip-vertical.svg | 5 + .../fontawesome-free/svgs/solid/h-square.svg | 5 + .../svgs/solid/hand-holding-heart.svg | 5 + .../svgs/solid/hand-holding-usd.svg | 5 + .../svgs/solid/hand-holding.svg | 5 + .../svgs/solid/hand-lizard.svg | 5 + .../svgs/solid/hand-paper.svg | 5 + .../svgs/solid/hand-peace.svg | 5 + .../svgs/solid/hand-point-down.svg | 5 + .../svgs/solid/hand-point-left.svg | 5 + .../svgs/solid/hand-point-right.svg | 5 + .../svgs/solid/hand-point-up.svg | 5 + .../svgs/solid/hand-pointer.svg | 5 + .../fontawesome-free/svgs/solid/hand-rock.svg | 5 + .../svgs/solid/hand-scissors.svg | 5 + .../svgs/solid/hand-spock.svg | 5 + .../svgs/solid/hands-helping.svg | 5 + .../fontawesome-free/svgs/solid/hands.svg | 5 + .../fontawesome-free/svgs/solid/handshake.svg | 5 + .../fontawesome-free/svgs/solid/hashtag.svg | 5 + .../fontawesome-free/svgs/solid/hdd.svg | 5 + .../fontawesome-free/svgs/solid/heading.svg | 5 + .../svgs/solid/headphones-alt.svg | 5 + .../svgs/solid/headphones.svg | 5 + .../fontawesome-free/svgs/solid/headset.svg | 5 + .../fontawesome-free/svgs/solid/heart.svg | 5 + .../fontawesome-free/svgs/solid/heartbeat.svg | 5 + .../svgs/solid/helicopter.svg | 5 + .../svgs/solid/highlighter.svg | 5 + .../fontawesome-free/svgs/solid/history.svg | 5 + .../svgs/solid/hockey-puck.svg | 5 + .../fontawesome-free/svgs/solid/home.svg | 5 + .../svgs/solid/hospital-alt.svg | 5 + .../svgs/solid/hospital-symbol.svg | 5 + .../fontawesome-free/svgs/solid/hospital.svg | 5 + .../fontawesome-free/svgs/solid/hot-tub.svg | 5 + .../fontawesome-free/svgs/solid/hotel.svg | 5 + .../svgs/solid/hourglass-end.svg | 5 + .../svgs/solid/hourglass-half.svg | 5 + .../svgs/solid/hourglass-start.svg | 5 + .../fontawesome-free/svgs/solid/hourglass.svg | 5 + .../fontawesome-free/svgs/solid/i-cursor.svg | 5 + .../fontawesome-free/svgs/solid/id-badge.svg | 5 + .../svgs/solid/id-card-alt.svg | 5 + .../fontawesome-free/svgs/solid/id-card.svg | 5 + .../fontawesome-free/svgs/solid/image.svg | 5 + .../fontawesome-free/svgs/solid/images.svg | 5 + .../fontawesome-free/svgs/solid/inbox.svg | 5 + .../fontawesome-free/svgs/solid/indent.svg | 5 + .../fontawesome-free/svgs/solid/industry.svg | 5 + .../fontawesome-free/svgs/solid/infinity.svg | 5 + .../svgs/solid/info-circle.svg | 5 + .../fontawesome-free/svgs/solid/info.svg | 5 + .../fontawesome-free/svgs/solid/italic.svg | 5 + .../fontawesome-free/svgs/solid/joint.svg | 5 + .../fontawesome-free/svgs/solid/key.svg | 5 + .../fontawesome-free/svgs/solid/keyboard.svg | 5 + .../fontawesome-free/svgs/solid/kiss-beam.svg | 5 + .../svgs/solid/kiss-wink-heart.svg | 5 + .../fontawesome-free/svgs/solid/kiss.svg | 5 + .../fontawesome-free/svgs/solid/kiwi-bird.svg | 5 + .../fontawesome-free/svgs/solid/language.svg | 5 + .../fontawesome-free/svgs/solid/laptop.svg | 5 + .../svgs/solid/laugh-beam.svg | 5 + .../svgs/solid/laugh-squint.svg | 5 + .../svgs/solid/laugh-wink.svg | 5 + .../fontawesome-free/svgs/solid/laugh.svg | 5 + .../fontawesome-free/svgs/solid/leaf.svg | 5 + .../fontawesome-free/svgs/solid/lemon.svg | 5 + .../svgs/solid/less-than-equal.svg | 5 + .../fontawesome-free/svgs/solid/less-than.svg | 5 + .../svgs/solid/level-down-alt.svg | 5 + .../svgs/solid/level-up-alt.svg | 5 + .../fontawesome-free/svgs/solid/life-ring.svg | 5 + .../fontawesome-free/svgs/solid/lightbulb.svg | 5 + .../fontawesome-free/svgs/solid/link.svg | 5 + .../fontawesome-free/svgs/solid/lira-sign.svg | 5 + .../fontawesome-free/svgs/solid/list-alt.svg | 5 + .../fontawesome-free/svgs/solid/list-ol.svg | 5 + .../fontawesome-free/svgs/solid/list-ul.svg | 5 + .../fontawesome-free/svgs/solid/list.svg | 5 + .../svgs/solid/location-arrow.svg | 5 + .../fontawesome-free/svgs/solid/lock-open.svg | 5 + .../fontawesome-free/svgs/solid/lock.svg | 5 + .../svgs/solid/long-arrow-alt-down.svg | 5 + .../svgs/solid/long-arrow-alt-left.svg | 5 + .../svgs/solid/long-arrow-alt-right.svg | 5 + .../svgs/solid/long-arrow-alt-up.svg | 5 + .../svgs/solid/low-vision.svg | 5 + .../svgs/solid/luggage-cart.svg | 5 + .../fontawesome-free/svgs/solid/magic.svg | 5 + .../fontawesome-free/svgs/solid/magnet.svg | 5 + .../fontawesome-free/svgs/solid/male.svg | 5 + .../svgs/solid/map-marked-alt.svg | 5 + .../svgs/solid/map-marked.svg | 5 + .../svgs/solid/map-marker-alt.svg | 5 + .../svgs/solid/map-marker.svg | 5 + .../fontawesome-free/svgs/solid/map-pin.svg | 5 + .../fontawesome-free/svgs/solid/map-signs.svg | 5 + .../fontawesome-free/svgs/solid/map.svg | 5 + .../fontawesome-free/svgs/solid/marker.svg | 5 + .../svgs/solid/mars-double.svg | 5 + .../svgs/solid/mars-stroke-h.svg | 5 + .../svgs/solid/mars-stroke-v.svg | 5 + .../svgs/solid/mars-stroke.svg | 5 + .../fontawesome-free/svgs/solid/mars.svg | 5 + .../fontawesome-free/svgs/solid/medal.svg | 5 + .../fontawesome-free/svgs/solid/medkit.svg | 5 + .../fontawesome-free/svgs/solid/meh-blank.svg | 5 + .../svgs/solid/meh-rolling-eyes.svg | 5 + .../fontawesome-free/svgs/solid/meh.svg | 5 + .../fontawesome-free/svgs/solid/memory.svg | 5 + .../fontawesome-free/svgs/solid/mercury.svg | 5 + .../fontawesome-free/svgs/solid/microchip.svg | 5 + .../svgs/solid/microphone-alt-slash.svg | 5 + .../svgs/solid/microphone-alt.svg | 5 + .../svgs/solid/microphone-slash.svg | 5 + .../svgs/solid/microphone.svg | 5 + .../svgs/solid/minus-circle.svg | 5 + .../svgs/solid/minus-square.svg | 5 + .../fontawesome-free/svgs/solid/minus.svg | 5 + .../svgs/solid/mobile-alt.svg | 5 + .../fontawesome-free/svgs/solid/mobile.svg | 5 + .../svgs/solid/money-bill-alt.svg | 5 + .../svgs/solid/money-bill-wave-alt.svg | 5 + .../svgs/solid/money-bill-wave.svg | 5 + .../svgs/solid/money-bill.svg | 5 + .../svgs/solid/money-check-alt.svg | 5 + .../svgs/solid/money-check.svg | 5 + .../fontawesome-free/svgs/solid/monument.svg | 5 + .../fontawesome-free/svgs/solid/moon.svg | 5 + .../svgs/solid/mortar-pestle.svg | 5 + .../svgs/solid/motorcycle.svg | 5 + .../svgs/solid/mouse-pointer.svg | 5 + .../fontawesome-free/svgs/solid/music.svg | 5 + .../fontawesome-free/svgs/solid/neuter.svg | 5 + .../fontawesome-free/svgs/solid/newspaper.svg | 5 + .../fontawesome-free/svgs/solid/not-equal.svg | 5 + .../svgs/solid/notes-medical.svg | 5 + .../svgs/solid/object-group.svg | 5 + .../svgs/solid/object-ungroup.svg | 5 + .../fontawesome-free/svgs/solid/outdent.svg | 5 + .../svgs/solid/paint-brush.svg | 5 + .../svgs/solid/paint-roller.svg | 5 + .../fontawesome-free/svgs/solid/palette.svg | 5 + .../fontawesome-free/svgs/solid/pallet.svg | 5 + .../svgs/solid/paper-plane.svg | 5 + .../fontawesome-free/svgs/solid/paperclip.svg | 5 + .../svgs/solid/parachute-box.svg | 5 + .../fontawesome-free/svgs/solid/paragraph.svg | 5 + .../fontawesome-free/svgs/solid/parking.svg | 5 + .../fontawesome-free/svgs/solid/passport.svg | 5 + .../fontawesome-free/svgs/solid/paste.svg | 5 + .../svgs/solid/pause-circle.svg | 5 + .../fontawesome-free/svgs/solid/pause.svg | 5 + .../fontawesome-free/svgs/solid/paw.svg | 5 + .../fontawesome-free/svgs/solid/pen-alt.svg | 5 + .../fontawesome-free/svgs/solid/pen-fancy.svg | 5 + .../fontawesome-free/svgs/solid/pen-nib.svg | 5 + .../svgs/solid/pen-square.svg | 5 + .../fontawesome-free/svgs/solid/pen.svg | 5 + .../svgs/solid/pencil-alt.svg | 5 + .../svgs/solid/pencil-ruler.svg | 5 + .../svgs/solid/people-carry.svg | 5 + .../fontawesome-free/svgs/solid/percent.svg | 5 + .../svgs/solid/percentage.svg | 5 + .../svgs/solid/phone-slash.svg | 5 + .../svgs/solid/phone-square.svg | 5 + .../svgs/solid/phone-volume.svg | 5 + .../fontawesome-free/svgs/solid/phone.svg | 5 + .../svgs/solid/piggy-bank.svg | 5 + .../fontawesome-free/svgs/solid/pills.svg | 5 + .../svgs/solid/plane-arrival.svg | 5 + .../svgs/solid/plane-departure.svg | 5 + .../fontawesome-free/svgs/solid/plane.svg | 5 + .../svgs/solid/play-circle.svg | 5 + .../fontawesome-free/svgs/solid/play.svg | 5 + .../fontawesome-free/svgs/solid/plug.svg | 5 + .../svgs/solid/plus-circle.svg | 5 + .../svgs/solid/plus-square.svg | 5 + .../fontawesome-free/svgs/solid/plus.svg | 5 + .../fontawesome-free/svgs/solid/podcast.svg | 5 + .../fontawesome-free/svgs/solid/poo.svg | 5 + .../fontawesome-free/svgs/solid/portrait.svg | 5 + .../svgs/solid/pound-sign.svg | 5 + .../fontawesome-free/svgs/solid/power-off.svg | 5 + .../svgs/solid/prescription-bottle-alt.svg | 5 + .../svgs/solid/prescription-bottle.svg | 5 + .../svgs/solid/prescription.svg | 5 + .../fontawesome-free/svgs/solid/print.svg | 5 + .../svgs/solid/procedures.svg | 5 + .../svgs/solid/project-diagram.svg | 5 + .../svgs/solid/puzzle-piece.svg | 5 + .../fontawesome-free/svgs/solid/qrcode.svg | 5 + .../svgs/solid/question-circle.svg | 5 + .../fontawesome-free/svgs/solid/question.svg | 5 + .../fontawesome-free/svgs/solid/quidditch.svg | 5 + .../svgs/solid/quote-left.svg | 5 + .../svgs/solid/quote-right.svg | 5 + .../fontawesome-free/svgs/solid/random.svg | 5 + .../fontawesome-free/svgs/solid/receipt.svg | 5 + .../fontawesome-free/svgs/solid/recycle.svg | 5 + .../fontawesome-free/svgs/solid/redo-alt.svg | 5 + .../fontawesome-free/svgs/solid/redo.svg | 5 + .../svgs/solid/registered.svg | 5 + .../fontawesome-free/svgs/solid/reply-all.svg | 5 + .../fontawesome-free/svgs/solid/reply.svg | 5 + .../fontawesome-free/svgs/solid/retweet.svg | 5 + .../fontawesome-free/svgs/solid/ribbon.svg | 5 + .../fontawesome-free/svgs/solid/road.svg | 5 + .../fontawesome-free/svgs/solid/robot.svg | 5 + .../fontawesome-free/svgs/solid/rocket.svg | 5 + .../svgs/solid/rss-square.svg | 5 + .../fontawesome-free/svgs/solid/rss.svg | 5 + .../svgs/solid/ruble-sign.svg | 5 + .../svgs/solid/ruler-combined.svg | 5 + .../svgs/solid/ruler-horizontal.svg | 5 + .../svgs/solid/ruler-vertical.svg | 5 + .../fontawesome-free/svgs/solid/ruler.svg | 5 + .../svgs/solid/rupee-sign.svg | 5 + .../fontawesome-free/svgs/solid/sad-cry.svg | 5 + .../fontawesome-free/svgs/solid/sad-tear.svg | 5 + .../fontawesome-free/svgs/solid/save.svg | 5 + .../fontawesome-free/svgs/solid/school.svg | 5 + .../svgs/solid/screwdriver.svg | 5 + .../svgs/solid/search-minus.svg | 5 + .../svgs/solid/search-plus.svg | 5 + .../fontawesome-free/svgs/solid/search.svg | 5 + .../fontawesome-free/svgs/solid/seedling.svg | 5 + .../fontawesome-free/svgs/solid/server.svg | 5 + .../svgs/solid/share-alt-square.svg | 5 + .../fontawesome-free/svgs/solid/share-alt.svg | 5 + .../svgs/solid/share-square.svg | 5 + .../fontawesome-free/svgs/solid/share.svg | 5 + .../svgs/solid/shekel-sign.svg | 5 + .../svgs/solid/shield-alt.svg | 5 + .../fontawesome-free/svgs/solid/ship.svg | 5 + .../svgs/solid/shipping-fast.svg | 5 + .../svgs/solid/shoe-prints.svg | 5 + .../svgs/solid/shopping-bag.svg | 5 + .../svgs/solid/shopping-basket.svg | 5 + .../svgs/solid/shopping-cart.svg | 5 + .../fontawesome-free/svgs/solid/shower.svg | 5 + .../svgs/solid/shuttle-van.svg | 5 + .../svgs/solid/sign-in-alt.svg | 5 + .../svgs/solid/sign-language.svg | 5 + .../svgs/solid/sign-out-alt.svg | 5 + .../fontawesome-free/svgs/solid/sign.svg | 5 + .../fontawesome-free/svgs/solid/signal.svg | 5 + .../fontawesome-free/svgs/solid/signature.svg | 5 + .../fontawesome-free/svgs/solid/sitemap.svg | 5 + .../fontawesome-free/svgs/solid/skull.svg | 5 + .../fontawesome-free/svgs/solid/sliders-h.svg | 5 + .../svgs/solid/smile-beam.svg | 5 + .../svgs/solid/smile-wink.svg | 5 + .../fontawesome-free/svgs/solid/smile.svg | 5 + .../svgs/solid/smoking-ban.svg | 5 + .../fontawesome-free/svgs/solid/smoking.svg | 5 + .../fontawesome-free/svgs/solid/snowflake.svg | 5 + .../svgs/solid/solar-panel.svg | 5 + .../svgs/solid/sort-alpha-down.svg | 5 + .../svgs/solid/sort-alpha-up.svg | 5 + .../svgs/solid/sort-amount-down.svg | 5 + .../svgs/solid/sort-amount-up.svg | 5 + .../fontawesome-free/svgs/solid/sort-down.svg | 5 + .../svgs/solid/sort-numeric-down.svg | 5 + .../svgs/solid/sort-numeric-up.svg | 5 + .../fontawesome-free/svgs/solid/sort-up.svg | 5 + .../fontawesome-free/svgs/solid/sort.svg | 5 + .../fontawesome-free/svgs/solid/spa.svg | 5 + .../svgs/solid/space-shuttle.svg | 5 + .../fontawesome-free/svgs/solid/spinner.svg | 5 + .../fontawesome-free/svgs/solid/splotch.svg | 5 + .../fontawesome-free/svgs/solid/spray-can.svg | 5 + .../svgs/solid/square-full.svg | 5 + .../fontawesome-free/svgs/solid/square.svg | 5 + .../fontawesome-free/svgs/solid/stamp.svg | 5 + .../svgs/solid/star-half-alt.svg | 5 + .../fontawesome-free/svgs/solid/star-half.svg | 5 + .../fontawesome-free/svgs/solid/star.svg | 5 + .../svgs/solid/step-backward.svg | 5 + .../svgs/solid/step-forward.svg | 5 + .../svgs/solid/stethoscope.svg | 5 + .../svgs/solid/sticky-note.svg | 5 + .../svgs/solid/stop-circle.svg | 5 + .../fontawesome-free/svgs/solid/stop.svg | 5 + .../fontawesome-free/svgs/solid/stopwatch.svg | 5 + .../fontawesome-free/svgs/solid/store-alt.svg | 5 + .../fontawesome-free/svgs/solid/store.svg | 5 + .../fontawesome-free/svgs/solid/stream.svg | 5 + .../svgs/solid/street-view.svg | 5 + .../svgs/solid/strikethrough.svg | 5 + .../svgs/solid/stroopwafel.svg | 5 + .../fontawesome-free/svgs/solid/subscript.svg | 5 + .../fontawesome-free/svgs/solid/subway.svg | 5 + .../svgs/solid/suitcase-rolling.svg | 5 + .../fontawesome-free/svgs/solid/suitcase.svg | 5 + .../fontawesome-free/svgs/solid/sun.svg | 5 + .../svgs/solid/superscript.svg | 5 + .../fontawesome-free/svgs/solid/surprise.svg | 5 + .../svgs/solid/swatchbook.svg | 5 + .../fontawesome-free/svgs/solid/swimmer.svg | 5 + .../svgs/solid/swimming-pool.svg | 5 + .../fontawesome-free/svgs/solid/sync-alt.svg | 5 + .../fontawesome-free/svgs/solid/sync.svg | 5 + .../fontawesome-free/svgs/solid/syringe.svg | 5 + .../svgs/solid/table-tennis.svg | 5 + .../fontawesome-free/svgs/solid/table.svg | 5 + .../svgs/solid/tablet-alt.svg | 5 + .../fontawesome-free/svgs/solid/tablet.svg | 5 + .../fontawesome-free/svgs/solid/tablets.svg | 5 + .../svgs/solid/tachometer-alt.svg | 5 + .../fontawesome-free/svgs/solid/tag.svg | 5 + .../fontawesome-free/svgs/solid/tags.svg | 5 + .../fontawesome-free/svgs/solid/tape.svg | 5 + .../fontawesome-free/svgs/solid/tasks.svg | 5 + .../fontawesome-free/svgs/solid/taxi.svg | 5 + .../fontawesome-free/svgs/solid/terminal.svg | 5 + .../svgs/solid/text-height.svg | 5 + .../svgs/solid/text-width.svg | 5 + .../fontawesome-free/svgs/solid/th-large.svg | 5 + .../fontawesome-free/svgs/solid/th-list.svg | 5 + .../fontawesome-free/svgs/solid/th.svg | 5 + .../svgs/solid/thermometer-empty.svg | 5 + .../svgs/solid/thermometer-full.svg | 5 + .../svgs/solid/thermometer-half.svg | 5 + .../svgs/solid/thermometer-quarter.svg | 5 + .../svgs/solid/thermometer-three-quarters.svg | 5 + .../svgs/solid/thermometer.svg | 5 + .../svgs/solid/thumbs-down.svg | 5 + .../fontawesome-free/svgs/solid/thumbs-up.svg | 5 + .../fontawesome-free/svgs/solid/thumbtack.svg | 5 + .../svgs/solid/ticket-alt.svg | 5 + .../svgs/solid/times-circle.svg | 5 + .../fontawesome-free/svgs/solid/times.svg | 5 + .../svgs/solid/tint-slash.svg | 5 + .../fontawesome-free/svgs/solid/tint.svg | 5 + .../fontawesome-free/svgs/solid/tired.svg | 5 + .../svgs/solid/toggle-off.svg | 5 + .../fontawesome-free/svgs/solid/toggle-on.svg | 5 + .../fontawesome-free/svgs/solid/toolbox.svg | 5 + .../fontawesome-free/svgs/solid/tooth.svg | 5 + .../fontawesome-free/svgs/solid/trademark.svg | 5 + .../fontawesome-free/svgs/solid/train.svg | 5 + .../svgs/solid/transgender-alt.svg | 5 + .../svgs/solid/transgender.svg | 5 + .../fontawesome-free/svgs/solid/trash-alt.svg | 5 + .../fontawesome-free/svgs/solid/trash.svg | 5 + .../fontawesome-free/svgs/solid/tree.svg | 5 + .../fontawesome-free/svgs/solid/trophy.svg | 5 + .../svgs/solid/truck-loading.svg | 5 + .../svgs/solid/truck-moving.svg | 5 + .../fontawesome-free/svgs/solid/truck.svg | 5 + .../fontawesome-free/svgs/solid/tshirt.svg | 5 + .../fontawesome-free/svgs/solid/tty.svg | 5 + .../fontawesome-free/svgs/solid/tv.svg | 5 + .../svgs/solid/umbrella-beach.svg | 5 + .../fontawesome-free/svgs/solid/umbrella.svg | 5 + .../fontawesome-free/svgs/solid/underline.svg | 5 + .../fontawesome-free/svgs/solid/undo-alt.svg | 5 + .../fontawesome-free/svgs/solid/undo.svg | 5 + .../svgs/solid/universal-access.svg | 5 + .../svgs/solid/university.svg | 5 + .../fontawesome-free/svgs/solid/unlink.svg | 5 + .../svgs/solid/unlock-alt.svg | 5 + .../fontawesome-free/svgs/solid/unlock.svg | 5 + .../fontawesome-free/svgs/solid/upload.svg | 5 + .../svgs/solid/user-alt-slash.svg | 5 + .../fontawesome-free/svgs/solid/user-alt.svg | 5 + .../svgs/solid/user-astronaut.svg | 5 + .../svgs/solid/user-check.svg | 5 + .../svgs/solid/user-circle.svg | 5 + .../svgs/solid/user-clock.svg | 5 + .../fontawesome-free/svgs/solid/user-cog.svg | 5 + .../fontawesome-free/svgs/solid/user-edit.svg | 5 + .../svgs/solid/user-friends.svg | 5 + .../svgs/solid/user-graduate.svg | 5 + .../fontawesome-free/svgs/solid/user-lock.svg | 5 + .../fontawesome-free/svgs/solid/user-md.svg | 5 + .../svgs/solid/user-minus.svg | 5 + .../svgs/solid/user-ninja.svg | 5 + .../fontawesome-free/svgs/solid/user-plus.svg | 5 + .../svgs/solid/user-secret.svg | 5 + .../svgs/solid/user-shield.svg | 5 + .../svgs/solid/user-slash.svg | 5 + .../fontawesome-free/svgs/solid/user-tag.svg | 5 + .../fontawesome-free/svgs/solid/user-tie.svg | 5 + .../svgs/solid/user-times.svg | 5 + .../fontawesome-free/svgs/solid/user.svg | 5 + .../fontawesome-free/svgs/solid/users-cog.svg | 5 + .../fontawesome-free/svgs/solid/users.svg | 5 + .../svgs/solid/utensil-spoon.svg | 5 + .../fontawesome-free/svgs/solid/utensils.svg | 5 + .../svgs/solid/vector-square.svg | 5 + .../svgs/solid/venus-double.svg | 5 + .../svgs/solid/venus-mars.svg | 5 + .../fontawesome-free/svgs/solid/venus.svg | 5 + .../fontawesome-free/svgs/solid/vial.svg | 5 + .../fontawesome-free/svgs/solid/vials.svg | 5 + .../svgs/solid/video-slash.svg | 5 + .../fontawesome-free/svgs/solid/video.svg | 5 + .../svgs/solid/volleyball-ball.svg | 5 + .../svgs/solid/volume-down.svg | 5 + .../svgs/solid/volume-off.svg | 5 + .../fontawesome-free/svgs/solid/volume-up.svg | 5 + .../fontawesome-free/svgs/solid/walking.svg | 5 + .../fontawesome-free/svgs/solid/wallet.svg | 5 + .../fontawesome-free/svgs/solid/warehouse.svg | 5 + .../svgs/solid/weight-hanging.svg | 5 + .../fontawesome-free/svgs/solid/weight.svg | 5 + .../svgs/solid/wheelchair.svg | 5 + .../fontawesome-free/svgs/solid/wifi.svg | 5 + .../svgs/solid/window-close.svg | 5 + .../svgs/solid/window-maximize.svg | 5 + .../svgs/solid/window-minimize.svg | 5 + .../svgs/solid/window-restore.svg | 5 + .../svgs/solid/wine-glass-alt.svg | 5 + .../svgs/solid/wine-glass.svg | 5 + .../fontawesome-free/svgs/solid/won-sign.svg | 5 + .../fontawesome-free/svgs/solid/wrench.svg | 5 + .../fontawesome-free/svgs/solid/x-ray.svg | 5 + .../fontawesome-free/svgs/solid/yen-sign.svg | 5 + .../webfonts/fa-brands-400.eot | Bin 0 -> 115208 bytes .../webfonts/fa-brands-400.svg | 1130 + .../webfonts/fa-brands-400.ttf | Bin 0 -> 114972 bytes .../webfonts/fa-brands-400.woff | Bin 0 -> 74020 bytes .../webfonts/fa-brands-400.woff2 | Bin 0 -> 63276 bytes .../webfonts/fa-regular-400.eot | Bin 0 -> 40792 bytes .../webfonts/fa-regular-400.svg | 467 + .../webfonts/fa-regular-400.ttf | Bin 0 -> 40564 bytes .../webfonts/fa-regular-400.woff | Bin 0 -> 18184 bytes .../webfonts/fa-regular-400.woff2 | Bin 0 -> 14948 bytes .../webfonts/fa-solid-900.eot | Bin 0 -> 160768 bytes .../webfonts/fa-solid-900.svg | 2231 + .../webfonts/fa-solid-900.ttf | Bin 0 -> 160548 bytes .../webfonts/fa-solid-900.woff | Bin 0 -> 76632 bytes .../webfonts/fa-solid-900.woff2 | Bin 0 -> 59612 bytes .../fontawesome-svg-core/LICENSE.txt | 34 + .../fontawesome-svg-core/README.md | 27 + .../fontawesome-svg-core/index.d.ts | 113 + .../fontawesome-svg-core/index.es.js | 1928 + .../fontawesome-svg-core/index.js | 1948 + .../fontawesome-svg-core/package.json | 60 + .../fontawesome-svg-core/styles.css | 345 + .../use-with-node-js/fontawesome/LICENSE.txt | 34 + .../use-with-node-js/fontawesome/README.md | 27 + .../use-with-node-js/fontawesome/index.d.ts | 120 + .../use-with-node-js/fontawesome/index.es.js | 1805 + .../use-with-node-js/fontawesome/index.js | 1823 + .../use-with-node-js/fontawesome/package.json | 60 + .../use-with-node-js/fontawesome/styles.css | 345 + .../free-brands-svg-icons/LICENSE.txt | 34 + .../free-brands-svg-icons/README.md | 27 + .../free-brands-svg-icons/fa500px.d.ts | 10 + .../free-brands-svg-icons/fa500px.js | 29 + .../faAccessibleIcon.d.ts | 10 + .../free-brands-svg-icons/faAccessibleIcon.js | 29 + .../free-brands-svg-icons/faAccusoft.d.ts | 10 + .../free-brands-svg-icons/faAccusoft.js | 29 + .../free-brands-svg-icons/faAdn.d.ts | 10 + .../free-brands-svg-icons/faAdn.js | 29 + .../free-brands-svg-icons/faAdversal.d.ts | 10 + .../free-brands-svg-icons/faAdversal.js | 29 + .../faAffiliatetheme.d.ts | 10 + .../free-brands-svg-icons/faAffiliatetheme.js | 29 + .../free-brands-svg-icons/faAlgolia.d.ts | 10 + .../free-brands-svg-icons/faAlgolia.js | 29 + .../free-brands-svg-icons/faAmazon.d.ts | 10 + .../free-brands-svg-icons/faAmazon.js | 29 + .../free-brands-svg-icons/faAmazonPay.d.ts | 10 + .../free-brands-svg-icons/faAmazonPay.js | 29 + .../free-brands-svg-icons/faAmilia.d.ts | 10 + .../free-brands-svg-icons/faAmilia.js | 29 + .../free-brands-svg-icons/faAndroid.d.ts | 10 + .../free-brands-svg-icons/faAndroid.js | 29 + .../free-brands-svg-icons/faAngellist.d.ts | 10 + .../free-brands-svg-icons/faAngellist.js | 29 + .../faAngrycreative.d.ts | 10 + .../free-brands-svg-icons/faAngrycreative.js | 29 + .../free-brands-svg-icons/faAngular.d.ts | 10 + .../free-brands-svg-icons/faAngular.js | 29 + .../free-brands-svg-icons/faAppStore.d.ts | 10 + .../free-brands-svg-icons/faAppStore.js | 29 + .../free-brands-svg-icons/faAppStoreIos.d.ts | 10 + .../free-brands-svg-icons/faAppStoreIos.js | 29 + .../free-brands-svg-icons/faApper.d.ts | 10 + .../free-brands-svg-icons/faApper.js | 29 + .../free-brands-svg-icons/faApple.d.ts | 10 + .../free-brands-svg-icons/faApple.js | 29 + .../free-brands-svg-icons/faApplePay.d.ts | 10 + .../free-brands-svg-icons/faApplePay.js | 29 + .../free-brands-svg-icons/faAsymmetrik.d.ts | 10 + .../free-brands-svg-icons/faAsymmetrik.js | 29 + .../free-brands-svg-icons/faAudible.d.ts | 10 + .../free-brands-svg-icons/faAudible.js | 29 + .../free-brands-svg-icons/faAutoprefixer.d.ts | 10 + .../free-brands-svg-icons/faAutoprefixer.js | 29 + .../free-brands-svg-icons/faAvianex.d.ts | 10 + .../free-brands-svg-icons/faAvianex.js | 29 + .../free-brands-svg-icons/faAviato.d.ts | 10 + .../free-brands-svg-icons/faAviato.js | 29 + .../free-brands-svg-icons/faAws.d.ts | 10 + .../free-brands-svg-icons/faAws.js | 29 + .../free-brands-svg-icons/faBandcamp.d.ts | 10 + .../free-brands-svg-icons/faBandcamp.js | 29 + .../free-brands-svg-icons/faBehance.d.ts | 10 + .../free-brands-svg-icons/faBehance.js | 29 + .../faBehanceSquare.d.ts | 10 + .../free-brands-svg-icons/faBehanceSquare.js | 29 + .../free-brands-svg-icons/faBimobject.d.ts | 10 + .../free-brands-svg-icons/faBimobject.js | 29 + .../free-brands-svg-icons/faBitbucket.d.ts | 10 + .../free-brands-svg-icons/faBitbucket.js | 29 + .../free-brands-svg-icons/faBitcoin.d.ts | 10 + .../free-brands-svg-icons/faBitcoin.js | 29 + .../free-brands-svg-icons/faBity.d.ts | 10 + .../free-brands-svg-icons/faBity.js | 29 + .../free-brands-svg-icons/faBlackTie.d.ts | 10 + .../free-brands-svg-icons/faBlackTie.js | 29 + .../free-brands-svg-icons/faBlackberry.d.ts | 10 + .../free-brands-svg-icons/faBlackberry.js | 29 + .../free-brands-svg-icons/faBlogger.d.ts | 10 + .../free-brands-svg-icons/faBlogger.js | 29 + .../free-brands-svg-icons/faBloggerB.d.ts | 10 + .../free-brands-svg-icons/faBloggerB.js | 29 + .../free-brands-svg-icons/faBluetooth.d.ts | 10 + .../free-brands-svg-icons/faBluetooth.js | 29 + .../free-brands-svg-icons/faBluetoothB.d.ts | 10 + .../free-brands-svg-icons/faBluetoothB.js | 29 + .../free-brands-svg-icons/faBtc.d.ts | 10 + .../free-brands-svg-icons/faBtc.js | 29 + .../faBuromobelexperte.d.ts | 10 + .../faBuromobelexperte.js | 29 + .../free-brands-svg-icons/faBuysellads.d.ts | 10 + .../free-brands-svg-icons/faBuysellads.js | 29 + .../free-brands-svg-icons/faCcAmazonPay.d.ts | 10 + .../free-brands-svg-icons/faCcAmazonPay.js | 29 + .../free-brands-svg-icons/faCcAmex.d.ts | 10 + .../free-brands-svg-icons/faCcAmex.js | 29 + .../free-brands-svg-icons/faCcApplePay.d.ts | 10 + .../free-brands-svg-icons/faCcApplePay.js | 29 + .../free-brands-svg-icons/faCcDinersClub.d.ts | 10 + .../free-brands-svg-icons/faCcDinersClub.js | 29 + .../free-brands-svg-icons/faCcDiscover.d.ts | 10 + .../free-brands-svg-icons/faCcDiscover.js | 29 + .../free-brands-svg-icons/faCcJcb.d.ts | 10 + .../free-brands-svg-icons/faCcJcb.js | 29 + .../free-brands-svg-icons/faCcMastercard.d.ts | 10 + .../free-brands-svg-icons/faCcMastercard.js | 29 + .../free-brands-svg-icons/faCcPaypal.d.ts | 10 + .../free-brands-svg-icons/faCcPaypal.js | 29 + .../free-brands-svg-icons/faCcStripe.d.ts | 10 + .../free-brands-svg-icons/faCcStripe.js | 29 + .../free-brands-svg-icons/faCcVisa.d.ts | 10 + .../free-brands-svg-icons/faCcVisa.js | 29 + .../free-brands-svg-icons/faCentercode.d.ts | 10 + .../free-brands-svg-icons/faCentercode.js | 29 + .../free-brands-svg-icons/faChrome.d.ts | 10 + .../free-brands-svg-icons/faChrome.js | 29 + .../free-brands-svg-icons/faCloudscale.d.ts | 10 + .../free-brands-svg-icons/faCloudscale.js | 29 + .../free-brands-svg-icons/faCloudsmith.d.ts | 10 + .../free-brands-svg-icons/faCloudsmith.js | 29 + .../free-brands-svg-icons/faCloudversify.d.ts | 10 + .../free-brands-svg-icons/faCloudversify.js | 29 + .../free-brands-svg-icons/faCodepen.d.ts | 10 + .../free-brands-svg-icons/faCodepen.js | 29 + .../free-brands-svg-icons/faCodiepie.d.ts | 10 + .../free-brands-svg-icons/faCodiepie.js | 29 + .../faConnectdevelop.d.ts | 10 + .../free-brands-svg-icons/faConnectdevelop.js | 29 + .../free-brands-svg-icons/faContao.d.ts | 10 + .../free-brands-svg-icons/faContao.js | 29 + .../free-brands-svg-icons/faCpanel.d.ts | 10 + .../free-brands-svg-icons/faCpanel.js | 29 + .../faCreativeCommons.d.ts | 10 + .../faCreativeCommons.js | 29 + .../faCreativeCommonsBy.d.ts | 10 + .../faCreativeCommonsBy.js | 29 + .../faCreativeCommonsNc.d.ts | 10 + .../faCreativeCommonsNc.js | 29 + .../faCreativeCommonsNcEu.d.ts | 10 + .../faCreativeCommonsNcEu.js | 29 + .../faCreativeCommonsNcJp.d.ts | 10 + .../faCreativeCommonsNcJp.js | 29 + .../faCreativeCommonsNd.d.ts | 10 + .../faCreativeCommonsNd.js | 29 + .../faCreativeCommonsPd.d.ts | 10 + .../faCreativeCommonsPd.js | 29 + .../faCreativeCommonsPdAlt.d.ts | 10 + .../faCreativeCommonsPdAlt.js | 29 + .../faCreativeCommonsRemix.d.ts | 10 + .../faCreativeCommonsRemix.js | 29 + .../faCreativeCommonsSa.d.ts | 10 + .../faCreativeCommonsSa.js | 29 + .../faCreativeCommonsSampling.d.ts | 10 + .../faCreativeCommonsSampling.js | 29 + .../faCreativeCommonsSamplingPlus.d.ts | 10 + .../faCreativeCommonsSamplingPlus.js | 29 + .../faCreativeCommonsShare.d.ts | 10 + .../faCreativeCommonsShare.js | 29 + .../free-brands-svg-icons/faCss3.d.ts | 10 + .../free-brands-svg-icons/faCss3.js | 29 + .../free-brands-svg-icons/faCss3Alt.d.ts | 10 + .../free-brands-svg-icons/faCss3Alt.js | 29 + .../free-brands-svg-icons/faCuttlefish.d.ts | 10 + .../free-brands-svg-icons/faCuttlefish.js | 29 + .../free-brands-svg-icons/faDAndD.d.ts | 10 + .../free-brands-svg-icons/faDAndD.js | 29 + .../free-brands-svg-icons/faDashcube.d.ts | 10 + .../free-brands-svg-icons/faDashcube.js | 29 + .../free-brands-svg-icons/faDelicious.d.ts | 10 + .../free-brands-svg-icons/faDelicious.js | 29 + .../free-brands-svg-icons/faDeploydog.d.ts | 10 + .../free-brands-svg-icons/faDeploydog.js | 29 + .../free-brands-svg-icons/faDeskpro.d.ts | 10 + .../free-brands-svg-icons/faDeskpro.js | 29 + .../free-brands-svg-icons/faDeviantart.d.ts | 10 + .../free-brands-svg-icons/faDeviantart.js | 29 + .../free-brands-svg-icons/faDigg.d.ts | 10 + .../free-brands-svg-icons/faDigg.js | 29 + .../free-brands-svg-icons/faDigitalOcean.d.ts | 10 + .../free-brands-svg-icons/faDigitalOcean.js | 29 + .../free-brands-svg-icons/faDiscord.d.ts | 10 + .../free-brands-svg-icons/faDiscord.js | 29 + .../free-brands-svg-icons/faDiscourse.d.ts | 10 + .../free-brands-svg-icons/faDiscourse.js | 29 + .../free-brands-svg-icons/faDochub.d.ts | 10 + .../free-brands-svg-icons/faDochub.js | 29 + .../free-brands-svg-icons/faDocker.d.ts | 10 + .../free-brands-svg-icons/faDocker.js | 29 + .../faDraft2digital.d.ts | 10 + .../free-brands-svg-icons/faDraft2digital.js | 29 + .../free-brands-svg-icons/faDribbble.d.ts | 10 + .../free-brands-svg-icons/faDribbble.js | 29 + .../faDribbbleSquare.d.ts | 10 + .../free-brands-svg-icons/faDribbbleSquare.js | 29 + .../free-brands-svg-icons/faDropbox.d.ts | 10 + .../free-brands-svg-icons/faDropbox.js | 29 + .../free-brands-svg-icons/faDrupal.d.ts | 10 + .../free-brands-svg-icons/faDrupal.js | 29 + .../free-brands-svg-icons/faDyalog.d.ts | 10 + .../free-brands-svg-icons/faDyalog.js | 29 + .../free-brands-svg-icons/faEarlybirds.d.ts | 10 + .../free-brands-svg-icons/faEarlybirds.js | 29 + .../free-brands-svg-icons/faEbay.d.ts | 10 + .../free-brands-svg-icons/faEbay.js | 29 + .../free-brands-svg-icons/faEdge.d.ts | 10 + .../free-brands-svg-icons/faEdge.js | 29 + .../free-brands-svg-icons/faElementor.d.ts | 10 + .../free-brands-svg-icons/faElementor.js | 29 + .../free-brands-svg-icons/faEmber.d.ts | 10 + .../free-brands-svg-icons/faEmber.js | 29 + .../free-brands-svg-icons/faEmpire.d.ts | 10 + .../free-brands-svg-icons/faEmpire.js | 29 + .../free-brands-svg-icons/faEnvira.d.ts | 10 + .../free-brands-svg-icons/faEnvira.js | 29 + .../free-brands-svg-icons/faErlang.d.ts | 10 + .../free-brands-svg-icons/faErlang.js | 29 + .../free-brands-svg-icons/faEthereum.d.ts | 10 + .../free-brands-svg-icons/faEthereum.js | 29 + .../free-brands-svg-icons/faEtsy.d.ts | 10 + .../free-brands-svg-icons/faEtsy.js | 29 + .../free-brands-svg-icons/faExpeditedssl.d.ts | 10 + .../free-brands-svg-icons/faExpeditedssl.js | 29 + .../free-brands-svg-icons/faFacebook.d.ts | 10 + .../free-brands-svg-icons/faFacebook.js | 29 + .../free-brands-svg-icons/faFacebookF.d.ts | 10 + .../free-brands-svg-icons/faFacebookF.js | 29 + .../faFacebookMessenger.d.ts | 10 + .../faFacebookMessenger.js | 29 + .../faFacebookSquare.d.ts | 10 + .../free-brands-svg-icons/faFacebookSquare.js | 29 + .../free-brands-svg-icons/faFirefox.d.ts | 10 + .../free-brands-svg-icons/faFirefox.js | 29 + .../free-brands-svg-icons/faFirstOrder.d.ts | 10 + .../free-brands-svg-icons/faFirstOrder.js | 29 + .../faFirstOrderAlt.d.ts | 10 + .../free-brands-svg-icons/faFirstOrderAlt.js | 29 + .../free-brands-svg-icons/faFirstdraft.d.ts | 10 + .../free-brands-svg-icons/faFirstdraft.js | 29 + .../free-brands-svg-icons/faFlickr.d.ts | 10 + .../free-brands-svg-icons/faFlickr.js | 29 + .../free-brands-svg-icons/faFlipboard.d.ts | 10 + .../free-brands-svg-icons/faFlipboard.js | 29 + .../free-brands-svg-icons/faFly.d.ts | 10 + .../free-brands-svg-icons/faFly.js | 29 + .../free-brands-svg-icons/faFontAwesome.d.ts | 10 + .../free-brands-svg-icons/faFontAwesome.js | 29 + .../faFontAwesomeAlt.d.ts | 10 + .../free-brands-svg-icons/faFontAwesomeAlt.js | 29 + .../faFontAwesomeFlag.d.ts | 10 + .../faFontAwesomeFlag.js | 29 + .../faFontAwesomeLogoFull.d.ts | 10 + .../faFontAwesomeLogoFull.js | 29 + .../free-brands-svg-icons/faFonticons.d.ts | 10 + .../free-brands-svg-icons/faFonticons.js | 29 + .../free-brands-svg-icons/faFonticonsFi.d.ts | 10 + .../free-brands-svg-icons/faFonticonsFi.js | 29 + .../free-brands-svg-icons/faFortAwesome.d.ts | 10 + .../free-brands-svg-icons/faFortAwesome.js | 29 + .../faFortAwesomeAlt.d.ts | 10 + .../free-brands-svg-icons/faFortAwesomeAlt.js | 29 + .../free-brands-svg-icons/faForumbee.d.ts | 10 + .../free-brands-svg-icons/faForumbee.js | 29 + .../free-brands-svg-icons/faFoursquare.d.ts | 10 + .../free-brands-svg-icons/faFoursquare.js | 29 + .../free-brands-svg-icons/faFreeCodeCamp.d.ts | 10 + .../free-brands-svg-icons/faFreeCodeCamp.js | 29 + .../free-brands-svg-icons/faFreebsd.d.ts | 10 + .../free-brands-svg-icons/faFreebsd.js | 29 + .../free-brands-svg-icons/faFulcrum.d.ts | 10 + .../free-brands-svg-icons/faFulcrum.js | 29 + .../faGalacticRepublic.d.ts | 10 + .../faGalacticRepublic.js | 29 + .../faGalacticSenate.d.ts | 10 + .../free-brands-svg-icons/faGalacticSenate.js | 29 + .../free-brands-svg-icons/faGetPocket.d.ts | 10 + .../free-brands-svg-icons/faGetPocket.js | 29 + .../free-brands-svg-icons/faGg.d.ts | 10 + .../free-brands-svg-icons/faGg.js | 29 + .../free-brands-svg-icons/faGgCircle.d.ts | 10 + .../free-brands-svg-icons/faGgCircle.js | 29 + .../free-brands-svg-icons/faGit.d.ts | 10 + .../free-brands-svg-icons/faGit.js | 29 + .../free-brands-svg-icons/faGitSquare.d.ts | 10 + .../free-brands-svg-icons/faGitSquare.js | 29 + .../free-brands-svg-icons/faGithub.d.ts | 10 + .../free-brands-svg-icons/faGithub.js | 29 + .../free-brands-svg-icons/faGithubAlt.d.ts | 10 + .../free-brands-svg-icons/faGithubAlt.js | 29 + .../free-brands-svg-icons/faGithubSquare.d.ts | 10 + .../free-brands-svg-icons/faGithubSquare.js | 29 + .../free-brands-svg-icons/faGitkraken.d.ts | 10 + .../free-brands-svg-icons/faGitkraken.js | 29 + .../free-brands-svg-icons/faGitlab.d.ts | 10 + .../free-brands-svg-icons/faGitlab.js | 29 + .../free-brands-svg-icons/faGitter.d.ts | 10 + .../free-brands-svg-icons/faGitter.js | 29 + .../free-brands-svg-icons/faGlide.d.ts | 10 + .../free-brands-svg-icons/faGlide.js | 29 + .../free-brands-svg-icons/faGlideG.d.ts | 10 + .../free-brands-svg-icons/faGlideG.js | 29 + .../free-brands-svg-icons/faGofore.d.ts | 10 + .../free-brands-svg-icons/faGofore.js | 29 + .../free-brands-svg-icons/faGoodreads.d.ts | 10 + .../free-brands-svg-icons/faGoodreads.js | 29 + .../free-brands-svg-icons/faGoodreadsG.d.ts | 10 + .../free-brands-svg-icons/faGoodreadsG.js | 29 + .../free-brands-svg-icons/faGoogle.d.ts | 10 + .../free-brands-svg-icons/faGoogle.js | 29 + .../free-brands-svg-icons/faGoogleDrive.d.ts | 10 + .../free-brands-svg-icons/faGoogleDrive.js | 29 + .../free-brands-svg-icons/faGooglePlay.d.ts | 10 + .../free-brands-svg-icons/faGooglePlay.js | 29 + .../free-brands-svg-icons/faGooglePlus.d.ts | 10 + .../free-brands-svg-icons/faGooglePlus.js | 29 + .../free-brands-svg-icons/faGooglePlusG.d.ts | 10 + .../free-brands-svg-icons/faGooglePlusG.js | 29 + .../faGooglePlusSquare.d.ts | 10 + .../faGooglePlusSquare.js | 29 + .../free-brands-svg-icons/faGoogleWallet.d.ts | 10 + .../free-brands-svg-icons/faGoogleWallet.js | 29 + .../free-brands-svg-icons/faGratipay.d.ts | 10 + .../free-brands-svg-icons/faGratipay.js | 29 + .../free-brands-svg-icons/faGrav.d.ts | 10 + .../free-brands-svg-icons/faGrav.js | 29 + .../free-brands-svg-icons/faGripfire.d.ts | 10 + .../free-brands-svg-icons/faGripfire.js | 29 + .../free-brands-svg-icons/faGrunt.d.ts | 10 + .../free-brands-svg-icons/faGrunt.js | 29 + .../free-brands-svg-icons/faGulp.d.ts | 10 + .../free-brands-svg-icons/faGulp.js | 29 + .../free-brands-svg-icons/faHackerNews.d.ts | 10 + .../free-brands-svg-icons/faHackerNews.js | 29 + .../faHackerNewsSquare.d.ts | 10 + .../faHackerNewsSquare.js | 29 + .../free-brands-svg-icons/faHips.d.ts | 10 + .../free-brands-svg-icons/faHips.js | 29 + .../free-brands-svg-icons/faHireAHelper.d.ts | 10 + .../free-brands-svg-icons/faHireAHelper.js | 29 + .../free-brands-svg-icons/faHooli.d.ts | 10 + .../free-brands-svg-icons/faHooli.js | 29 + .../free-brands-svg-icons/faHornbill.d.ts | 10 + .../free-brands-svg-icons/faHornbill.js | 29 + .../free-brands-svg-icons/faHotjar.d.ts | 10 + .../free-brands-svg-icons/faHotjar.js | 29 + .../free-brands-svg-icons/faHouzz.d.ts | 10 + .../free-brands-svg-icons/faHouzz.js | 29 + .../free-brands-svg-icons/faHtml5.d.ts | 10 + .../free-brands-svg-icons/faHtml5.js | 29 + .../free-brands-svg-icons/faHubspot.d.ts | 10 + .../free-brands-svg-icons/faHubspot.js | 29 + .../free-brands-svg-icons/faImdb.d.ts | 10 + .../free-brands-svg-icons/faImdb.js | 29 + .../free-brands-svg-icons/faInstagram.d.ts | 10 + .../free-brands-svg-icons/faInstagram.js | 29 + .../faInternetExplorer.d.ts | 10 + .../faInternetExplorer.js | 29 + .../free-brands-svg-icons/faIoxhost.d.ts | 10 + .../free-brands-svg-icons/faIoxhost.js | 29 + .../free-brands-svg-icons/faItunes.d.ts | 10 + .../free-brands-svg-icons/faItunes.js | 29 + .../free-brands-svg-icons/faItunesNote.d.ts | 10 + .../free-brands-svg-icons/faItunesNote.js | 29 + .../free-brands-svg-icons/faJava.d.ts | 10 + .../free-brands-svg-icons/faJava.js | 29 + .../free-brands-svg-icons/faJediOrder.d.ts | 10 + .../free-brands-svg-icons/faJediOrder.js | 29 + .../free-brands-svg-icons/faJenkins.d.ts | 10 + .../free-brands-svg-icons/faJenkins.js | 29 + .../free-brands-svg-icons/faJoget.d.ts | 10 + .../free-brands-svg-icons/faJoget.js | 29 + .../free-brands-svg-icons/faJoomla.d.ts | 10 + .../free-brands-svg-icons/faJoomla.js | 29 + .../free-brands-svg-icons/faJs.d.ts | 10 + .../free-brands-svg-icons/faJs.js | 29 + .../free-brands-svg-icons/faJsSquare.d.ts | 10 + .../free-brands-svg-icons/faJsSquare.js | 29 + .../free-brands-svg-icons/faJsfiddle.d.ts | 10 + .../free-brands-svg-icons/faJsfiddle.js | 29 + .../free-brands-svg-icons/faKeybase.d.ts | 10 + .../free-brands-svg-icons/faKeybase.js | 29 + .../free-brands-svg-icons/faKeycdn.d.ts | 10 + .../free-brands-svg-icons/faKeycdn.js | 29 + .../free-brands-svg-icons/faKickstarter.d.ts | 10 + .../free-brands-svg-icons/faKickstarter.js | 29 + .../free-brands-svg-icons/faKickstarterK.d.ts | 10 + .../free-brands-svg-icons/faKickstarterK.js | 29 + .../free-brands-svg-icons/faKorvue.d.ts | 10 + .../free-brands-svg-icons/faKorvue.js | 29 + .../free-brands-svg-icons/faLaravel.d.ts | 10 + .../free-brands-svg-icons/faLaravel.js | 29 + .../free-brands-svg-icons/faLastfm.d.ts | 10 + .../free-brands-svg-icons/faLastfm.js | 29 + .../free-brands-svg-icons/faLastfmSquare.d.ts | 10 + .../free-brands-svg-icons/faLastfmSquare.js | 29 + .../free-brands-svg-icons/faLeanpub.d.ts | 10 + .../free-brands-svg-icons/faLeanpub.js | 29 + .../free-brands-svg-icons/faLess.d.ts | 10 + .../free-brands-svg-icons/faLess.js | 29 + .../free-brands-svg-icons/faLine.d.ts | 10 + .../free-brands-svg-icons/faLine.js | 29 + .../free-brands-svg-icons/faLinkedin.d.ts | 10 + .../free-brands-svg-icons/faLinkedin.js | 29 + .../free-brands-svg-icons/faLinkedinIn.d.ts | 10 + .../free-brands-svg-icons/faLinkedinIn.js | 29 + .../free-brands-svg-icons/faLinode.d.ts | 10 + .../free-brands-svg-icons/faLinode.js | 29 + .../free-brands-svg-icons/faLinux.d.ts | 10 + .../free-brands-svg-icons/faLinux.js | 29 + .../free-brands-svg-icons/faLyft.d.ts | 10 + .../free-brands-svg-icons/faLyft.js | 29 + .../free-brands-svg-icons/faMagento.d.ts | 10 + .../free-brands-svg-icons/faMagento.js | 29 + .../free-brands-svg-icons/faMailchimp.d.ts | 10 + .../free-brands-svg-icons/faMailchimp.js | 29 + .../free-brands-svg-icons/faMandalorian.d.ts | 10 + .../free-brands-svg-icons/faMandalorian.js | 29 + .../free-brands-svg-icons/faMastodon.d.ts | 10 + .../free-brands-svg-icons/faMastodon.js | 29 + .../free-brands-svg-icons/faMaxcdn.d.ts | 10 + .../free-brands-svg-icons/faMaxcdn.js | 29 + .../free-brands-svg-icons/faMedapps.d.ts | 10 + .../free-brands-svg-icons/faMedapps.js | 29 + .../free-brands-svg-icons/faMedium.d.ts | 10 + .../free-brands-svg-icons/faMedium.js | 29 + .../free-brands-svg-icons/faMediumM.d.ts | 10 + .../free-brands-svg-icons/faMediumM.js | 29 + .../free-brands-svg-icons/faMedrt.d.ts | 10 + .../free-brands-svg-icons/faMedrt.js | 29 + .../free-brands-svg-icons/faMeetup.d.ts | 10 + .../free-brands-svg-icons/faMeetup.js | 29 + .../free-brands-svg-icons/faMegaport.d.ts | 10 + .../free-brands-svg-icons/faMegaport.js | 29 + .../free-brands-svg-icons/faMicrosoft.d.ts | 10 + .../free-brands-svg-icons/faMicrosoft.js | 29 + .../free-brands-svg-icons/faMix.d.ts | 10 + .../free-brands-svg-icons/faMix.js | 29 + .../free-brands-svg-icons/faMixcloud.d.ts | 10 + .../free-brands-svg-icons/faMixcloud.js | 29 + .../free-brands-svg-icons/faMizuni.d.ts | 10 + .../free-brands-svg-icons/faMizuni.js | 29 + .../free-brands-svg-icons/faModx.d.ts | 10 + .../free-brands-svg-icons/faModx.js | 29 + .../free-brands-svg-icons/faMonero.d.ts | 10 + .../free-brands-svg-icons/faMonero.js | 29 + .../free-brands-svg-icons/faNapster.d.ts | 10 + .../free-brands-svg-icons/faNapster.js | 29 + .../free-brands-svg-icons/faNimblr.d.ts | 10 + .../free-brands-svg-icons/faNimblr.js | 29 + .../faNintendoSwitch.d.ts | 10 + .../free-brands-svg-icons/faNintendoSwitch.js | 29 + .../free-brands-svg-icons/faNode.d.ts | 10 + .../free-brands-svg-icons/faNode.js | 29 + .../free-brands-svg-icons/faNodeJs.d.ts | 10 + .../free-brands-svg-icons/faNodeJs.js | 29 + .../free-brands-svg-icons/faNpm.d.ts | 10 + .../free-brands-svg-icons/faNpm.js | 29 + .../free-brands-svg-icons/faNs8.d.ts | 10 + .../free-brands-svg-icons/faNs8.js | 29 + .../free-brands-svg-icons/faNutritionix.d.ts | 10 + .../free-brands-svg-icons/faNutritionix.js | 29 + .../faOdnoklassniki.d.ts | 10 + .../free-brands-svg-icons/faOdnoklassniki.js | 29 + .../faOdnoklassnikiSquare.d.ts | 10 + .../faOdnoklassnikiSquare.js | 29 + .../free-brands-svg-icons/faOldRepublic.d.ts | 10 + .../free-brands-svg-icons/faOldRepublic.js | 29 + .../free-brands-svg-icons/faOpencart.d.ts | 10 + .../free-brands-svg-icons/faOpencart.js | 29 + .../free-brands-svg-icons/faOpenid.d.ts | 10 + .../free-brands-svg-icons/faOpenid.js | 29 + .../free-brands-svg-icons/faOpera.d.ts | 10 + .../free-brands-svg-icons/faOpera.js | 29 + .../free-brands-svg-icons/faOptinMonster.d.ts | 10 + .../free-brands-svg-icons/faOptinMonster.js | 29 + .../free-brands-svg-icons/faOsi.d.ts | 10 + .../free-brands-svg-icons/faOsi.js | 29 + .../free-brands-svg-icons/faPage4.d.ts | 10 + .../free-brands-svg-icons/faPage4.js | 29 + .../free-brands-svg-icons/faPagelines.d.ts | 10 + .../free-brands-svg-icons/faPagelines.js | 29 + .../free-brands-svg-icons/faPalfed.d.ts | 10 + .../free-brands-svg-icons/faPalfed.js | 29 + .../free-brands-svg-icons/faPatreon.d.ts | 10 + .../free-brands-svg-icons/faPatreon.js | 29 + .../free-brands-svg-icons/faPaypal.d.ts | 10 + .../free-brands-svg-icons/faPaypal.js | 29 + .../free-brands-svg-icons/faPeriscope.d.ts | 10 + .../free-brands-svg-icons/faPeriscope.js | 29 + .../free-brands-svg-icons/faPhabricator.d.ts | 10 + .../free-brands-svg-icons/faPhabricator.js | 29 + .../faPhoenixFramework.d.ts | 10 + .../faPhoenixFramework.js | 29 + .../faPhoenixSquadron.d.ts | 10 + .../faPhoenixSquadron.js | 29 + .../free-brands-svg-icons/faPhp.d.ts | 10 + .../free-brands-svg-icons/faPhp.js | 29 + .../free-brands-svg-icons/faPiedPiper.d.ts | 10 + .../free-brands-svg-icons/faPiedPiper.js | 29 + .../free-brands-svg-icons/faPiedPiperAlt.d.ts | 10 + .../free-brands-svg-icons/faPiedPiperAlt.js | 29 + .../free-brands-svg-icons/faPiedPiperHat.d.ts | 10 + .../free-brands-svg-icons/faPiedPiperHat.js | 29 + .../free-brands-svg-icons/faPiedPiperPp.d.ts | 10 + .../free-brands-svg-icons/faPiedPiperPp.js | 29 + .../free-brands-svg-icons/faPinterest.d.ts | 10 + .../free-brands-svg-icons/faPinterest.js | 29 + .../free-brands-svg-icons/faPinterestP.d.ts | 10 + .../free-brands-svg-icons/faPinterestP.js | 29 + .../faPinterestSquare.d.ts | 10 + .../faPinterestSquare.js | 29 + .../free-brands-svg-icons/faPlaystation.d.ts | 10 + .../free-brands-svg-icons/faPlaystation.js | 29 + .../free-brands-svg-icons/faProductHunt.d.ts | 10 + .../free-brands-svg-icons/faProductHunt.js | 29 + .../free-brands-svg-icons/faPushed.d.ts | 10 + .../free-brands-svg-icons/faPushed.js | 29 + .../free-brands-svg-icons/faPython.d.ts | 10 + .../free-brands-svg-icons/faPython.js | 29 + .../free-brands-svg-icons/faQq.d.ts | 10 + .../free-brands-svg-icons/faQq.js | 29 + .../free-brands-svg-icons/faQuinscape.d.ts | 10 + .../free-brands-svg-icons/faQuinscape.js | 29 + .../free-brands-svg-icons/faQuora.d.ts | 10 + .../free-brands-svg-icons/faQuora.js | 29 + .../free-brands-svg-icons/faRProject.d.ts | 10 + .../free-brands-svg-icons/faRProject.js | 29 + .../free-brands-svg-icons/faRavelry.d.ts | 10 + .../free-brands-svg-icons/faRavelry.js | 29 + .../free-brands-svg-icons/faReact.d.ts | 10 + .../free-brands-svg-icons/faReact.js | 29 + .../free-brands-svg-icons/faReadme.d.ts | 10 + .../free-brands-svg-icons/faReadme.js | 29 + .../free-brands-svg-icons/faRebel.d.ts | 10 + .../free-brands-svg-icons/faRebel.js | 29 + .../free-brands-svg-icons/faRedRiver.d.ts | 10 + .../free-brands-svg-icons/faRedRiver.js | 29 + .../free-brands-svg-icons/faReddit.d.ts | 10 + .../free-brands-svg-icons/faReddit.js | 29 + .../free-brands-svg-icons/faRedditAlien.d.ts | 10 + .../free-brands-svg-icons/faRedditAlien.js | 29 + .../free-brands-svg-icons/faRedditSquare.d.ts | 10 + .../free-brands-svg-icons/faRedditSquare.js | 29 + .../free-brands-svg-icons/faRendact.d.ts | 10 + .../free-brands-svg-icons/faRendact.js | 29 + .../free-brands-svg-icons/faRenren.d.ts | 10 + .../free-brands-svg-icons/faRenren.js | 29 + .../free-brands-svg-icons/faReplyd.d.ts | 10 + .../free-brands-svg-icons/faReplyd.js | 29 + .../free-brands-svg-icons/faResearchgate.d.ts | 10 + .../free-brands-svg-icons/faResearchgate.js | 29 + .../free-brands-svg-icons/faResolving.d.ts | 10 + .../free-brands-svg-icons/faResolving.js | 29 + .../free-brands-svg-icons/faRev.d.ts | 10 + .../free-brands-svg-icons/faRev.js | 29 + .../free-brands-svg-icons/faRocketchat.d.ts | 10 + .../free-brands-svg-icons/faRocketchat.js | 29 + .../free-brands-svg-icons/faRockrms.d.ts | 10 + .../free-brands-svg-icons/faRockrms.js | 29 + .../free-brands-svg-icons/faSafari.d.ts | 10 + .../free-brands-svg-icons/faSafari.js | 29 + .../free-brands-svg-icons/faSass.d.ts | 10 + .../free-brands-svg-icons/faSass.js | 29 + .../free-brands-svg-icons/faSchlix.d.ts | 10 + .../free-brands-svg-icons/faSchlix.js | 29 + .../free-brands-svg-icons/faScribd.d.ts | 10 + .../free-brands-svg-icons/faScribd.js | 29 + .../free-brands-svg-icons/faSearchengin.d.ts | 10 + .../free-brands-svg-icons/faSearchengin.js | 29 + .../free-brands-svg-icons/faSellcast.d.ts | 10 + .../free-brands-svg-icons/faSellcast.js | 29 + .../free-brands-svg-icons/faSellsy.d.ts | 10 + .../free-brands-svg-icons/faSellsy.js | 29 + .../free-brands-svg-icons/faServicestack.d.ts | 10 + .../free-brands-svg-icons/faServicestack.js | 29 + .../free-brands-svg-icons/faShirtsinbulk.d.ts | 10 + .../free-brands-svg-icons/faShirtsinbulk.js | 29 + .../free-brands-svg-icons/faShopware.d.ts | 10 + .../free-brands-svg-icons/faShopware.js | 29 + .../free-brands-svg-icons/faSimplybuilt.d.ts | 10 + .../free-brands-svg-icons/faSimplybuilt.js | 29 + .../free-brands-svg-icons/faSistrix.d.ts | 10 + .../free-brands-svg-icons/faSistrix.js | 29 + .../free-brands-svg-icons/faSith.d.ts | 10 + .../free-brands-svg-icons/faSith.js | 29 + .../free-brands-svg-icons/faSkyatlas.d.ts | 10 + .../free-brands-svg-icons/faSkyatlas.js | 29 + .../free-brands-svg-icons/faSkype.d.ts | 10 + .../free-brands-svg-icons/faSkype.js | 29 + .../free-brands-svg-icons/faSlack.d.ts | 10 + .../free-brands-svg-icons/faSlack.js | 29 + .../free-brands-svg-icons/faSlackHash.d.ts | 10 + .../free-brands-svg-icons/faSlackHash.js | 29 + .../free-brands-svg-icons/faSlideshare.d.ts | 10 + .../free-brands-svg-icons/faSlideshare.js | 29 + .../free-brands-svg-icons/faSnapchat.d.ts | 10 + .../free-brands-svg-icons/faSnapchat.js | 29 + .../faSnapchatGhost.d.ts | 10 + .../free-brands-svg-icons/faSnapchatGhost.js | 29 + .../faSnapchatSquare.d.ts | 10 + .../free-brands-svg-icons/faSnapchatSquare.js | 29 + .../free-brands-svg-icons/faSoundcloud.d.ts | 10 + .../free-brands-svg-icons/faSoundcloud.js | 29 + .../free-brands-svg-icons/faSpeakap.d.ts | 10 + .../free-brands-svg-icons/faSpeakap.js | 29 + .../free-brands-svg-icons/faSpotify.d.ts | 10 + .../free-brands-svg-icons/faSpotify.js | 29 + .../free-brands-svg-icons/faSquarespace.d.ts | 10 + .../free-brands-svg-icons/faSquarespace.js | 29 + .../faStackExchange.d.ts | 10 + .../free-brands-svg-icons/faStackExchange.js | 29 + .../faStackOverflow.d.ts | 10 + .../free-brands-svg-icons/faStackOverflow.js | 29 + .../free-brands-svg-icons/faStaylinked.d.ts | 10 + .../free-brands-svg-icons/faStaylinked.js | 29 + .../free-brands-svg-icons/faSteam.d.ts | 10 + .../free-brands-svg-icons/faSteam.js | 29 + .../free-brands-svg-icons/faSteamSquare.d.ts | 10 + .../free-brands-svg-icons/faSteamSquare.js | 29 + .../free-brands-svg-icons/faSteamSymbol.d.ts | 10 + .../free-brands-svg-icons/faSteamSymbol.js | 29 + .../free-brands-svg-icons/faStickerMule.d.ts | 10 + .../free-brands-svg-icons/faStickerMule.js | 29 + .../free-brands-svg-icons/faStrava.d.ts | 10 + .../free-brands-svg-icons/faStrava.js | 29 + .../free-brands-svg-icons/faStripe.d.ts | 10 + .../free-brands-svg-icons/faStripe.js | 29 + .../free-brands-svg-icons/faStripeS.d.ts | 10 + .../free-brands-svg-icons/faStripeS.js | 29 + .../free-brands-svg-icons/faStudiovinari.d.ts | 10 + .../free-brands-svg-icons/faStudiovinari.js | 29 + .../free-brands-svg-icons/faStumbleupon.d.ts | 10 + .../free-brands-svg-icons/faStumbleupon.js | 29 + .../faStumbleuponCircle.d.ts | 10 + .../faStumbleuponCircle.js | 29 + .../free-brands-svg-icons/faSuperpowers.d.ts | 10 + .../free-brands-svg-icons/faSuperpowers.js | 29 + .../free-brands-svg-icons/faSupple.d.ts | 10 + .../free-brands-svg-icons/faSupple.js | 29 + .../free-brands-svg-icons/faTeamspeak.d.ts | 10 + .../free-brands-svg-icons/faTeamspeak.js | 29 + .../free-brands-svg-icons/faTelegram.d.ts | 10 + .../free-brands-svg-icons/faTelegram.js | 29 + .../faTelegramPlane.d.ts | 10 + .../free-brands-svg-icons/faTelegramPlane.js | 29 + .../free-brands-svg-icons/faTencentWeibo.d.ts | 10 + .../free-brands-svg-icons/faTencentWeibo.js | 29 + .../free-brands-svg-icons/faThemeco.d.ts | 10 + .../free-brands-svg-icons/faThemeco.js | 29 + .../free-brands-svg-icons/faThemeisle.d.ts | 10 + .../free-brands-svg-icons/faThemeisle.js | 29 + .../faTradeFederation.d.ts | 10 + .../faTradeFederation.js | 29 + .../free-brands-svg-icons/faTrello.d.ts | 10 + .../free-brands-svg-icons/faTrello.js | 29 + .../free-brands-svg-icons/faTripadvisor.d.ts | 10 + .../free-brands-svg-icons/faTripadvisor.js | 29 + .../free-brands-svg-icons/faTumblr.d.ts | 10 + .../free-brands-svg-icons/faTumblr.js | 29 + .../free-brands-svg-icons/faTumblrSquare.d.ts | 10 + .../free-brands-svg-icons/faTumblrSquare.js | 29 + .../free-brands-svg-icons/faTwitch.d.ts | 10 + .../free-brands-svg-icons/faTwitch.js | 29 + .../free-brands-svg-icons/faTwitter.d.ts | 10 + .../free-brands-svg-icons/faTwitter.js | 29 + .../faTwitterSquare.d.ts | 10 + .../free-brands-svg-icons/faTwitterSquare.js | 29 + .../free-brands-svg-icons/faTypo3.d.ts | 10 + .../free-brands-svg-icons/faTypo3.js | 29 + .../free-brands-svg-icons/faUber.d.ts | 10 + .../free-brands-svg-icons/faUber.js | 29 + .../free-brands-svg-icons/faUikit.d.ts | 10 + .../free-brands-svg-icons/faUikit.js | 29 + .../free-brands-svg-icons/faUniregistry.d.ts | 10 + .../free-brands-svg-icons/faUniregistry.js | 29 + .../free-brands-svg-icons/faUntappd.d.ts | 10 + .../free-brands-svg-icons/faUntappd.js | 29 + .../free-brands-svg-icons/faUsb.d.ts | 10 + .../free-brands-svg-icons/faUsb.js | 29 + .../free-brands-svg-icons/faUssunnah.d.ts | 10 + .../free-brands-svg-icons/faUssunnah.js | 29 + .../free-brands-svg-icons/faVaadin.d.ts | 10 + .../free-brands-svg-icons/faVaadin.js | 29 + .../free-brands-svg-icons/faViacoin.d.ts | 10 + .../free-brands-svg-icons/faViacoin.js | 29 + .../free-brands-svg-icons/faViadeo.d.ts | 10 + .../free-brands-svg-icons/faViadeo.js | 29 + .../free-brands-svg-icons/faViadeoSquare.d.ts | 10 + .../free-brands-svg-icons/faViadeoSquare.js | 29 + .../free-brands-svg-icons/faViber.d.ts | 10 + .../free-brands-svg-icons/faViber.js | 29 + .../free-brands-svg-icons/faVimeo.d.ts | 10 + .../free-brands-svg-icons/faVimeo.js | 29 + .../free-brands-svg-icons/faVimeoSquare.d.ts | 10 + .../free-brands-svg-icons/faVimeoSquare.js | 29 + .../free-brands-svg-icons/faVimeoV.d.ts | 10 + .../free-brands-svg-icons/faVimeoV.js | 29 + .../free-brands-svg-icons/faVine.d.ts | 10 + .../free-brands-svg-icons/faVine.js | 29 + .../free-brands-svg-icons/faVk.d.ts | 10 + .../free-brands-svg-icons/faVk.js | 29 + .../free-brands-svg-icons/faVnv.d.ts | 10 + .../free-brands-svg-icons/faVnv.js | 29 + .../free-brands-svg-icons/faVuejs.d.ts | 10 + .../free-brands-svg-icons/faVuejs.js | 29 + .../free-brands-svg-icons/faWeebly.d.ts | 10 + .../free-brands-svg-icons/faWeebly.js | 29 + .../free-brands-svg-icons/faWeibo.d.ts | 10 + .../free-brands-svg-icons/faWeibo.js | 29 + .../free-brands-svg-icons/faWeixin.d.ts | 10 + .../free-brands-svg-icons/faWeixin.js | 29 + .../free-brands-svg-icons/faWhatsapp.d.ts | 10 + .../free-brands-svg-icons/faWhatsapp.js | 29 + .../faWhatsappSquare.d.ts | 10 + .../free-brands-svg-icons/faWhatsappSquare.js | 29 + .../free-brands-svg-icons/faWhmcs.d.ts | 10 + .../free-brands-svg-icons/faWhmcs.js | 29 + .../free-brands-svg-icons/faWikipediaW.d.ts | 10 + .../free-brands-svg-icons/faWikipediaW.js | 29 + .../free-brands-svg-icons/faWindows.d.ts | 10 + .../free-brands-svg-icons/faWindows.js | 29 + .../free-brands-svg-icons/faWix.d.ts | 10 + .../free-brands-svg-icons/faWix.js | 29 + .../faWolfPackBattalion.d.ts | 10 + .../faWolfPackBattalion.js | 29 + .../free-brands-svg-icons/faWordpress.d.ts | 10 + .../free-brands-svg-icons/faWordpress.js | 29 + .../faWordpressSimple.d.ts | 10 + .../faWordpressSimple.js | 29 + .../free-brands-svg-icons/faWpbeginner.d.ts | 10 + .../free-brands-svg-icons/faWpbeginner.js | 29 + .../free-brands-svg-icons/faWpexplorer.d.ts | 10 + .../free-brands-svg-icons/faWpexplorer.js | 29 + .../free-brands-svg-icons/faWpforms.d.ts | 10 + .../free-brands-svg-icons/faWpforms.js | 29 + .../free-brands-svg-icons/faXbox.d.ts | 10 + .../free-brands-svg-icons/faXbox.js | 29 + .../free-brands-svg-icons/faXing.d.ts | 10 + .../free-brands-svg-icons/faXing.js | 29 + .../free-brands-svg-icons/faXingSquare.d.ts | 10 + .../free-brands-svg-icons/faXingSquare.js | 29 + .../free-brands-svg-icons/faYCombinator.d.ts | 10 + .../free-brands-svg-icons/faYCombinator.js | 29 + .../free-brands-svg-icons/faYahoo.d.ts | 10 + .../free-brands-svg-icons/faYahoo.js | 29 + .../free-brands-svg-icons/faYandex.d.ts | 10 + .../free-brands-svg-icons/faYandex.js | 29 + .../faYandexInternational.d.ts | 10 + .../faYandexInternational.js | 29 + .../free-brands-svg-icons/faYelp.d.ts | 10 + .../free-brands-svg-icons/faYelp.js | 29 + .../free-brands-svg-icons/faYoast.d.ts | 10 + .../free-brands-svg-icons/faYoast.js | 29 + .../free-brands-svg-icons/faYoutube.d.ts | 10 + .../free-brands-svg-icons/faYoutube.js | 29 + .../faYoutubeSquare.d.ts | 10 + .../free-brands-svg-icons/faYoutubeSquare.js | 29 + .../free-brands-svg-icons/index.d.ts | 377 + .../free-brands-svg-icons/index.es.js | 755 + .../free-brands-svg-icons/index.js | 1139 + .../free-brands-svg-icons/package.json | 58 + .../free-regular-svg-icons/LICENSE.txt | 34 + .../free-regular-svg-icons/README.md | 27 + .../free-regular-svg-icons/faAddressBook.d.ts | 10 + .../free-regular-svg-icons/faAddressBook.js | 29 + .../free-regular-svg-icons/faAddressCard.d.ts | 10 + .../free-regular-svg-icons/faAddressCard.js | 29 + .../free-regular-svg-icons/faAngry.d.ts | 10 + .../free-regular-svg-icons/faAngry.js | 29 + .../faArrowAltCircleDown.d.ts | 10 + .../faArrowAltCircleDown.js | 29 + .../faArrowAltCircleLeft.d.ts | 10 + .../faArrowAltCircleLeft.js | 29 + .../faArrowAltCircleRight.d.ts | 10 + .../faArrowAltCircleRight.js | 29 + .../faArrowAltCircleUp.d.ts | 10 + .../faArrowAltCircleUp.js | 29 + .../free-regular-svg-icons/faBell.d.ts | 10 + .../free-regular-svg-icons/faBell.js | 29 + .../free-regular-svg-icons/faBellSlash.d.ts | 10 + .../free-regular-svg-icons/faBellSlash.js | 29 + .../free-regular-svg-icons/faBookmark.d.ts | 10 + .../free-regular-svg-icons/faBookmark.js | 29 + .../free-regular-svg-icons/faBuilding.d.ts | 10 + .../free-regular-svg-icons/faBuilding.js | 29 + .../free-regular-svg-icons/faCalendar.d.ts | 10 + .../free-regular-svg-icons/faCalendar.js | 29 + .../free-regular-svg-icons/faCalendarAlt.d.ts | 10 + .../free-regular-svg-icons/faCalendarAlt.js | 29 + .../faCalendarCheck.d.ts | 10 + .../free-regular-svg-icons/faCalendarCheck.js | 29 + .../faCalendarMinus.d.ts | 10 + .../free-regular-svg-icons/faCalendarMinus.js | 29 + .../faCalendarPlus.d.ts | 10 + .../free-regular-svg-icons/faCalendarPlus.js | 29 + .../faCalendarTimes.d.ts | 10 + .../free-regular-svg-icons/faCalendarTimes.js | 29 + .../faCaretSquareDown.d.ts | 10 + .../faCaretSquareDown.js | 29 + .../faCaretSquareLeft.d.ts | 10 + .../faCaretSquareLeft.js | 29 + .../faCaretSquareRight.d.ts | 10 + .../faCaretSquareRight.js | 29 + .../faCaretSquareUp.d.ts | 10 + .../free-regular-svg-icons/faCaretSquareUp.js | 29 + .../free-regular-svg-icons/faChartBar.d.ts | 10 + .../free-regular-svg-icons/faChartBar.js | 29 + .../free-regular-svg-icons/faCheckCircle.d.ts | 10 + .../free-regular-svg-icons/faCheckCircle.js | 29 + .../free-regular-svg-icons/faCheckSquare.d.ts | 10 + .../free-regular-svg-icons/faCheckSquare.js | 29 + .../free-regular-svg-icons/faCircle.d.ts | 10 + .../free-regular-svg-icons/faCircle.js | 29 + .../free-regular-svg-icons/faClipboard.d.ts | 10 + .../free-regular-svg-icons/faClipboard.js | 29 + .../free-regular-svg-icons/faClock.d.ts | 10 + .../free-regular-svg-icons/faClock.js | 29 + .../free-regular-svg-icons/faClone.d.ts | 10 + .../free-regular-svg-icons/faClone.js | 29 + .../faClosedCaptioning.d.ts | 10 + .../faClosedCaptioning.js | 29 + .../free-regular-svg-icons/faComment.d.ts | 10 + .../free-regular-svg-icons/faComment.js | 29 + .../free-regular-svg-icons/faCommentAlt.d.ts | 10 + .../free-regular-svg-icons/faCommentAlt.js | 29 + .../free-regular-svg-icons/faCommentDots.d.ts | 10 + .../free-regular-svg-icons/faCommentDots.js | 29 + .../free-regular-svg-icons/faComments.d.ts | 10 + .../free-regular-svg-icons/faComments.js | 29 + .../free-regular-svg-icons/faCompass.d.ts | 10 + .../free-regular-svg-icons/faCompass.js | 29 + .../free-regular-svg-icons/faCopy.d.ts | 10 + .../free-regular-svg-icons/faCopy.js | 29 + .../free-regular-svg-icons/faCopyright.d.ts | 10 + .../free-regular-svg-icons/faCopyright.js | 29 + .../free-regular-svg-icons/faCreditCard.d.ts | 10 + .../free-regular-svg-icons/faCreditCard.js | 29 + .../free-regular-svg-icons/faDizzy.d.ts | 10 + .../free-regular-svg-icons/faDizzy.js | 29 + .../free-regular-svg-icons/faDotCircle.d.ts | 10 + .../free-regular-svg-icons/faDotCircle.js | 29 + .../free-regular-svg-icons/faEdit.d.ts | 10 + .../free-regular-svg-icons/faEdit.js | 29 + .../free-regular-svg-icons/faEnvelope.d.ts | 10 + .../free-regular-svg-icons/faEnvelope.js | 29 + .../faEnvelopeOpen.d.ts | 10 + .../free-regular-svg-icons/faEnvelopeOpen.js | 29 + .../free-regular-svg-icons/faEye.d.ts | 10 + .../free-regular-svg-icons/faEye.js | 29 + .../free-regular-svg-icons/faEyeSlash.d.ts | 10 + .../free-regular-svg-icons/faEyeSlash.js | 29 + .../free-regular-svg-icons/faFile.d.ts | 10 + .../free-regular-svg-icons/faFile.js | 29 + .../free-regular-svg-icons/faFileAlt.d.ts | 10 + .../free-regular-svg-icons/faFileAlt.js | 29 + .../free-regular-svg-icons/faFileArchive.d.ts | 10 + .../free-regular-svg-icons/faFileArchive.js | 29 + .../free-regular-svg-icons/faFileAudio.d.ts | 10 + .../free-regular-svg-icons/faFileAudio.js | 29 + .../free-regular-svg-icons/faFileCode.d.ts | 10 + .../free-regular-svg-icons/faFileCode.js | 29 + .../free-regular-svg-icons/faFileExcel.d.ts | 10 + .../free-regular-svg-icons/faFileExcel.js | 29 + .../free-regular-svg-icons/faFileImage.d.ts | 10 + .../free-regular-svg-icons/faFileImage.js | 29 + .../free-regular-svg-icons/faFilePdf.d.ts | 10 + .../free-regular-svg-icons/faFilePdf.js | 29 + .../faFilePowerpoint.d.ts | 10 + .../faFilePowerpoint.js | 29 + .../free-regular-svg-icons/faFileVideo.d.ts | 10 + .../free-regular-svg-icons/faFileVideo.js | 29 + .../free-regular-svg-icons/faFileWord.d.ts | 10 + .../free-regular-svg-icons/faFileWord.js | 29 + .../free-regular-svg-icons/faFlag.d.ts | 10 + .../free-regular-svg-icons/faFlag.js | 29 + .../free-regular-svg-icons/faFlushed.d.ts | 10 + .../free-regular-svg-icons/faFlushed.js | 29 + .../free-regular-svg-icons/faFolder.d.ts | 10 + .../free-regular-svg-icons/faFolder.js | 29 + .../free-regular-svg-icons/faFolderOpen.d.ts | 10 + .../free-regular-svg-icons/faFolderOpen.js | 29 + .../faFontAwesomeLogoFull.d.ts | 10 + .../faFontAwesomeLogoFull.js | 29 + .../free-regular-svg-icons/faFrown.d.ts | 10 + .../free-regular-svg-icons/faFrown.js | 29 + .../free-regular-svg-icons/faFrownOpen.d.ts | 10 + .../free-regular-svg-icons/faFrownOpen.js | 29 + .../free-regular-svg-icons/faFutbol.d.ts | 10 + .../free-regular-svg-icons/faFutbol.js | 29 + .../free-regular-svg-icons/faGem.d.ts | 10 + .../free-regular-svg-icons/faGem.js | 29 + .../free-regular-svg-icons/faGrimace.d.ts | 10 + .../free-regular-svg-icons/faGrimace.js | 29 + .../free-regular-svg-icons/faGrin.d.ts | 10 + .../free-regular-svg-icons/faGrin.js | 29 + .../free-regular-svg-icons/faGrinAlt.d.ts | 10 + .../free-regular-svg-icons/faGrinAlt.js | 29 + .../free-regular-svg-icons/faGrinBeam.d.ts | 10 + .../free-regular-svg-icons/faGrinBeam.js | 29 + .../faGrinBeamSweat.d.ts | 10 + .../free-regular-svg-icons/faGrinBeamSweat.js | 29 + .../free-regular-svg-icons/faGrinHearts.d.ts | 10 + .../free-regular-svg-icons/faGrinHearts.js | 29 + .../free-regular-svg-icons/faGrinSquint.d.ts | 10 + .../free-regular-svg-icons/faGrinSquint.js | 29 + .../faGrinSquintTears.d.ts | 10 + .../faGrinSquintTears.js | 29 + .../free-regular-svg-icons/faGrinStars.d.ts | 10 + .../free-regular-svg-icons/faGrinStars.js | 29 + .../free-regular-svg-icons/faGrinTears.d.ts | 10 + .../free-regular-svg-icons/faGrinTears.js | 29 + .../free-regular-svg-icons/faGrinTongue.d.ts | 10 + .../free-regular-svg-icons/faGrinTongue.js | 29 + .../faGrinTongueSquint.d.ts | 10 + .../faGrinTongueSquint.js | 29 + .../faGrinTongueWink.d.ts | 10 + .../faGrinTongueWink.js | 29 + .../free-regular-svg-icons/faGrinWink.d.ts | 10 + .../free-regular-svg-icons/faGrinWink.js | 29 + .../free-regular-svg-icons/faHandLizard.d.ts | 10 + .../free-regular-svg-icons/faHandLizard.js | 29 + .../free-regular-svg-icons/faHandPaper.d.ts | 10 + .../free-regular-svg-icons/faHandPaper.js | 29 + .../free-regular-svg-icons/faHandPeace.d.ts | 10 + .../free-regular-svg-icons/faHandPeace.js | 29 + .../faHandPointDown.d.ts | 10 + .../free-regular-svg-icons/faHandPointDown.js | 29 + .../faHandPointLeft.d.ts | 10 + .../free-regular-svg-icons/faHandPointLeft.js | 29 + .../faHandPointRight.d.ts | 10 + .../faHandPointRight.js | 29 + .../free-regular-svg-icons/faHandPointUp.d.ts | 10 + .../free-regular-svg-icons/faHandPointUp.js | 29 + .../free-regular-svg-icons/faHandPointer.d.ts | 10 + .../free-regular-svg-icons/faHandPointer.js | 29 + .../free-regular-svg-icons/faHandRock.d.ts | 10 + .../free-regular-svg-icons/faHandRock.js | 29 + .../faHandScissors.d.ts | 10 + .../free-regular-svg-icons/faHandScissors.js | 29 + .../free-regular-svg-icons/faHandSpock.d.ts | 10 + .../free-regular-svg-icons/faHandSpock.js | 29 + .../free-regular-svg-icons/faHandshake.d.ts | 10 + .../free-regular-svg-icons/faHandshake.js | 29 + .../free-regular-svg-icons/faHdd.d.ts | 10 + .../free-regular-svg-icons/faHdd.js | 29 + .../free-regular-svg-icons/faHeart.d.ts | 10 + .../free-regular-svg-icons/faHeart.js | 29 + .../free-regular-svg-icons/faHospital.d.ts | 10 + .../free-regular-svg-icons/faHospital.js | 29 + .../free-regular-svg-icons/faHourglass.d.ts | 10 + .../free-regular-svg-icons/faHourglass.js | 29 + .../free-regular-svg-icons/faIdBadge.d.ts | 10 + .../free-regular-svg-icons/faIdBadge.js | 29 + .../free-regular-svg-icons/faIdCard.d.ts | 10 + .../free-regular-svg-icons/faIdCard.js | 29 + .../free-regular-svg-icons/faImage.d.ts | 10 + .../free-regular-svg-icons/faImage.js | 29 + .../free-regular-svg-icons/faImages.d.ts | 10 + .../free-regular-svg-icons/faImages.js | 29 + .../free-regular-svg-icons/faKeyboard.d.ts | 10 + .../free-regular-svg-icons/faKeyboard.js | 29 + .../free-regular-svg-icons/faKiss.d.ts | 10 + .../free-regular-svg-icons/faKiss.js | 29 + .../free-regular-svg-icons/faKissBeam.d.ts | 10 + .../free-regular-svg-icons/faKissBeam.js | 29 + .../faKissWinkHeart.d.ts | 10 + .../free-regular-svg-icons/faKissWinkHeart.js | 29 + .../free-regular-svg-icons/faLaugh.d.ts | 10 + .../free-regular-svg-icons/faLaugh.js | 29 + .../free-regular-svg-icons/faLaughBeam.d.ts | 10 + .../free-regular-svg-icons/faLaughBeam.js | 29 + .../free-regular-svg-icons/faLaughSquint.d.ts | 10 + .../free-regular-svg-icons/faLaughSquint.js | 29 + .../free-regular-svg-icons/faLaughWink.d.ts | 10 + .../free-regular-svg-icons/faLaughWink.js | 29 + .../free-regular-svg-icons/faLemon.d.ts | 10 + .../free-regular-svg-icons/faLemon.js | 29 + .../free-regular-svg-icons/faLifeRing.d.ts | 10 + .../free-regular-svg-icons/faLifeRing.js | 29 + .../free-regular-svg-icons/faLightbulb.d.ts | 10 + .../free-regular-svg-icons/faLightbulb.js | 29 + .../free-regular-svg-icons/faListAlt.d.ts | 10 + .../free-regular-svg-icons/faListAlt.js | 29 + .../free-regular-svg-icons/faMap.d.ts | 10 + .../free-regular-svg-icons/faMap.js | 29 + .../free-regular-svg-icons/faMeh.d.ts | 10 + .../free-regular-svg-icons/faMeh.js | 29 + .../free-regular-svg-icons/faMehBlank.d.ts | 10 + .../free-regular-svg-icons/faMehBlank.js | 29 + .../faMehRollingEyes.d.ts | 10 + .../faMehRollingEyes.js | 29 + .../free-regular-svg-icons/faMinusSquare.d.ts | 10 + .../free-regular-svg-icons/faMinusSquare.js | 29 + .../faMoneyBillAlt.d.ts | 10 + .../free-regular-svg-icons/faMoneyBillAlt.js | 29 + .../free-regular-svg-icons/faMoon.d.ts | 10 + .../free-regular-svg-icons/faMoon.js | 29 + .../free-regular-svg-icons/faNewspaper.d.ts | 10 + .../free-regular-svg-icons/faNewspaper.js | 29 + .../free-regular-svg-icons/faObjectGroup.d.ts | 10 + .../free-regular-svg-icons/faObjectGroup.js | 29 + .../faObjectUngroup.d.ts | 10 + .../free-regular-svg-icons/faObjectUngroup.js | 29 + .../free-regular-svg-icons/faPaperPlane.d.ts | 10 + .../free-regular-svg-icons/faPaperPlane.js | 29 + .../free-regular-svg-icons/faPauseCircle.d.ts | 10 + .../free-regular-svg-icons/faPauseCircle.js | 29 + .../free-regular-svg-icons/faPlayCircle.d.ts | 10 + .../free-regular-svg-icons/faPlayCircle.js | 29 + .../free-regular-svg-icons/faPlusSquare.d.ts | 10 + .../free-regular-svg-icons/faPlusSquare.js | 29 + .../faQuestionCircle.d.ts | 10 + .../faQuestionCircle.js | 29 + .../free-regular-svg-icons/faRegistered.d.ts | 10 + .../free-regular-svg-icons/faRegistered.js | 29 + .../free-regular-svg-icons/faSadCry.d.ts | 10 + .../free-regular-svg-icons/faSadCry.js | 29 + .../free-regular-svg-icons/faSadTear.d.ts | 10 + .../free-regular-svg-icons/faSadTear.js | 29 + .../free-regular-svg-icons/faSave.d.ts | 10 + .../free-regular-svg-icons/faSave.js | 29 + .../free-regular-svg-icons/faShareSquare.d.ts | 10 + .../free-regular-svg-icons/faShareSquare.js | 29 + .../free-regular-svg-icons/faSmile.d.ts | 10 + .../free-regular-svg-icons/faSmile.js | 29 + .../free-regular-svg-icons/faSmileBeam.d.ts | 10 + .../free-regular-svg-icons/faSmileBeam.js | 29 + .../free-regular-svg-icons/faSmileWink.d.ts | 10 + .../free-regular-svg-icons/faSmileWink.js | 29 + .../free-regular-svg-icons/faSnowflake.d.ts | 10 + .../free-regular-svg-icons/faSnowflake.js | 29 + .../free-regular-svg-icons/faSquare.d.ts | 10 + .../free-regular-svg-icons/faSquare.js | 29 + .../free-regular-svg-icons/faStar.d.ts | 10 + .../free-regular-svg-icons/faStar.js | 29 + .../free-regular-svg-icons/faStarHalf.d.ts | 10 + .../free-regular-svg-icons/faStarHalf.js | 29 + .../free-regular-svg-icons/faStickyNote.d.ts | 10 + .../free-regular-svg-icons/faStickyNote.js | 29 + .../free-regular-svg-icons/faStopCircle.d.ts | 10 + .../free-regular-svg-icons/faStopCircle.js | 29 + .../free-regular-svg-icons/faSun.d.ts | 10 + .../free-regular-svg-icons/faSun.js | 29 + .../free-regular-svg-icons/faSurprise.d.ts | 10 + .../free-regular-svg-icons/faSurprise.js | 29 + .../free-regular-svg-icons/faThumbsDown.d.ts | 10 + .../free-regular-svg-icons/faThumbsDown.js | 29 + .../free-regular-svg-icons/faThumbsUp.d.ts | 10 + .../free-regular-svg-icons/faThumbsUp.js | 29 + .../free-regular-svg-icons/faTimesCircle.d.ts | 10 + .../free-regular-svg-icons/faTimesCircle.js | 29 + .../free-regular-svg-icons/faTired.d.ts | 10 + .../free-regular-svg-icons/faTired.js | 29 + .../free-regular-svg-icons/faTrashAlt.d.ts | 10 + .../free-regular-svg-icons/faTrashAlt.js | 29 + .../free-regular-svg-icons/faUser.d.ts | 10 + .../free-regular-svg-icons/faUser.js | 29 + .../free-regular-svg-icons/faUserCircle.d.ts | 10 + .../free-regular-svg-icons/faUserCircle.js | 29 + .../free-regular-svg-icons/faWindowClose.d.ts | 10 + .../free-regular-svg-icons/faWindowClose.js | 29 + .../faWindowMaximize.d.ts | 10 + .../faWindowMaximize.js | 29 + .../faWindowMinimize.d.ts | 10 + .../faWindowMinimize.js | 29 + .../faWindowRestore.d.ts | 10 + .../free-regular-svg-icons/faWindowRestore.js | 29 + .../free-regular-svg-icons/index.d.ts | 156 + .../free-regular-svg-icons/index.es.js | 313 + .../free-regular-svg-icons/index.js | 476 + .../free-regular-svg-icons/package.json | 59 + .../free-solid-svg-icons/LICENSE.txt | 34 + .../free-solid-svg-icons/README.md | 27 + .../free-solid-svg-icons/faAddressBook.d.ts | 10 + .../free-solid-svg-icons/faAddressBook.js | 29 + .../free-solid-svg-icons/faAddressCard.d.ts | 10 + .../free-solid-svg-icons/faAddressCard.js | 29 + .../free-solid-svg-icons/faAdjust.d.ts | 10 + .../free-solid-svg-icons/faAdjust.js | 29 + .../free-solid-svg-icons/faAlignCenter.d.ts | 10 + .../free-solid-svg-icons/faAlignCenter.js | 29 + .../free-solid-svg-icons/faAlignJustify.d.ts | 10 + .../free-solid-svg-icons/faAlignJustify.js | 29 + .../free-solid-svg-icons/faAlignLeft.d.ts | 10 + .../free-solid-svg-icons/faAlignLeft.js | 29 + .../free-solid-svg-icons/faAlignRight.d.ts | 10 + .../free-solid-svg-icons/faAlignRight.js | 29 + .../free-solid-svg-icons/faAllergies.d.ts | 10 + .../free-solid-svg-icons/faAllergies.js | 29 + .../free-solid-svg-icons/faAmbulance.d.ts | 10 + .../free-solid-svg-icons/faAmbulance.js | 29 + .../faAmericanSignLanguageInterpreting.d.ts | 10 + .../faAmericanSignLanguageInterpreting.js | 29 + .../free-solid-svg-icons/faAnchor.d.ts | 10 + .../free-solid-svg-icons/faAnchor.js | 29 + .../faAngleDoubleDown.d.ts | 10 + .../free-solid-svg-icons/faAngleDoubleDown.js | 29 + .../faAngleDoubleLeft.d.ts | 10 + .../free-solid-svg-icons/faAngleDoubleLeft.js | 29 + .../faAngleDoubleRight.d.ts | 10 + .../faAngleDoubleRight.js | 29 + .../free-solid-svg-icons/faAngleDoubleUp.d.ts | 10 + .../free-solid-svg-icons/faAngleDoubleUp.js | 29 + .../free-solid-svg-icons/faAngleDown.d.ts | 10 + .../free-solid-svg-icons/faAngleDown.js | 29 + .../free-solid-svg-icons/faAngleLeft.d.ts | 10 + .../free-solid-svg-icons/faAngleLeft.js | 29 + .../free-solid-svg-icons/faAngleRight.d.ts | 10 + .../free-solid-svg-icons/faAngleRight.js | 29 + .../free-solid-svg-icons/faAngleUp.d.ts | 10 + .../free-solid-svg-icons/faAngleUp.js | 29 + .../free-solid-svg-icons/faAngry.d.ts | 10 + .../free-solid-svg-icons/faAngry.js | 29 + .../free-solid-svg-icons/faArchive.d.ts | 10 + .../free-solid-svg-icons/faArchive.js | 29 + .../free-solid-svg-icons/faArchway.d.ts | 10 + .../free-solid-svg-icons/faArchway.js | 29 + .../faArrowAltCircleDown.d.ts | 10 + .../faArrowAltCircleDown.js | 29 + .../faArrowAltCircleLeft.d.ts | 10 + .../faArrowAltCircleLeft.js | 29 + .../faArrowAltCircleRight.d.ts | 10 + .../faArrowAltCircleRight.js | 29 + .../faArrowAltCircleUp.d.ts | 10 + .../faArrowAltCircleUp.js | 29 + .../faArrowCircleDown.d.ts | 10 + .../free-solid-svg-icons/faArrowCircleDown.js | 29 + .../faArrowCircleLeft.d.ts | 10 + .../free-solid-svg-icons/faArrowCircleLeft.js | 29 + .../faArrowCircleRight.d.ts | 10 + .../faArrowCircleRight.js | 29 + .../free-solid-svg-icons/faArrowCircleUp.d.ts | 10 + .../free-solid-svg-icons/faArrowCircleUp.js | 29 + .../free-solid-svg-icons/faArrowDown.d.ts | 10 + .../free-solid-svg-icons/faArrowDown.js | 29 + .../free-solid-svg-icons/faArrowLeft.d.ts | 10 + .../free-solid-svg-icons/faArrowLeft.js | 29 + .../free-solid-svg-icons/faArrowRight.d.ts | 10 + .../free-solid-svg-icons/faArrowRight.js | 29 + .../free-solid-svg-icons/faArrowUp.d.ts | 10 + .../free-solid-svg-icons/faArrowUp.js | 29 + .../free-solid-svg-icons/faArrowsAlt.d.ts | 10 + .../free-solid-svg-icons/faArrowsAlt.js | 29 + .../free-solid-svg-icons/faArrowsAltH.d.ts | 10 + .../free-solid-svg-icons/faArrowsAltH.js | 29 + .../free-solid-svg-icons/faArrowsAltV.d.ts | 10 + .../free-solid-svg-icons/faArrowsAltV.js | 29 + .../faAssistiveListeningSystems.d.ts | 10 + .../faAssistiveListeningSystems.js | 29 + .../free-solid-svg-icons/faAsterisk.d.ts | 10 + .../free-solid-svg-icons/faAsterisk.js | 29 + .../free-solid-svg-icons/faAt.d.ts | 10 + .../free-solid-svg-icons/faAt.js | 29 + .../free-solid-svg-icons/faAtlas.d.ts | 10 + .../free-solid-svg-icons/faAtlas.js | 29 + .../faAudioDescription.d.ts | 10 + .../faAudioDescription.js | 29 + .../free-solid-svg-icons/faAward.d.ts | 10 + .../free-solid-svg-icons/faAward.js | 29 + .../free-solid-svg-icons/faBackspace.d.ts | 10 + .../free-solid-svg-icons/faBackspace.js | 29 + .../free-solid-svg-icons/faBackward.d.ts | 10 + .../free-solid-svg-icons/faBackward.js | 29 + .../free-solid-svg-icons/faBalanceScale.d.ts | 10 + .../free-solid-svg-icons/faBalanceScale.js | 29 + .../free-solid-svg-icons/faBan.d.ts | 10 + .../free-solid-svg-icons/faBan.js | 29 + .../free-solid-svg-icons/faBandAid.d.ts | 10 + .../free-solid-svg-icons/faBandAid.js | 29 + .../free-solid-svg-icons/faBarcode.d.ts | 10 + .../free-solid-svg-icons/faBarcode.js | 29 + .../free-solid-svg-icons/faBars.d.ts | 10 + .../free-solid-svg-icons/faBars.js | 29 + .../free-solid-svg-icons/faBaseballBall.d.ts | 10 + .../free-solid-svg-icons/faBaseballBall.js | 29 + .../faBasketballBall.d.ts | 10 + .../free-solid-svg-icons/faBasketballBall.js | 29 + .../free-solid-svg-icons/faBath.d.ts | 10 + .../free-solid-svg-icons/faBath.js | 29 + .../free-solid-svg-icons/faBatteryEmpty.d.ts | 10 + .../free-solid-svg-icons/faBatteryEmpty.js | 29 + .../free-solid-svg-icons/faBatteryFull.d.ts | 10 + .../free-solid-svg-icons/faBatteryFull.js | 29 + .../free-solid-svg-icons/faBatteryHalf.d.ts | 10 + .../free-solid-svg-icons/faBatteryHalf.js | 29 + .../faBatteryQuarter.d.ts | 10 + .../free-solid-svg-icons/faBatteryQuarter.js | 29 + .../faBatteryThreeQuarters.d.ts | 10 + .../faBatteryThreeQuarters.js | 29 + .../free-solid-svg-icons/faBed.d.ts | 10 + .../free-solid-svg-icons/faBed.js | 29 + .../free-solid-svg-icons/faBeer.d.ts | 10 + .../free-solid-svg-icons/faBeer.js | 29 + .../free-solid-svg-icons/faBell.d.ts | 10 + .../free-solid-svg-icons/faBell.js | 29 + .../free-solid-svg-icons/faBellSlash.d.ts | 10 + .../free-solid-svg-icons/faBellSlash.js | 29 + .../free-solid-svg-icons/faBezierCurve.d.ts | 10 + .../free-solid-svg-icons/faBezierCurve.js | 29 + .../free-solid-svg-icons/faBicycle.d.ts | 10 + .../free-solid-svg-icons/faBicycle.js | 29 + .../free-solid-svg-icons/faBinoculars.d.ts | 10 + .../free-solid-svg-icons/faBinoculars.js | 29 + .../free-solid-svg-icons/faBirthdayCake.d.ts | 10 + .../free-solid-svg-icons/faBirthdayCake.js | 29 + .../free-solid-svg-icons/faBlender.d.ts | 10 + .../free-solid-svg-icons/faBlender.js | 29 + .../free-solid-svg-icons/faBlind.d.ts | 10 + .../free-solid-svg-icons/faBlind.js | 29 + .../free-solid-svg-icons/faBold.d.ts | 10 + .../free-solid-svg-icons/faBold.js | 29 + .../free-solid-svg-icons/faBolt.d.ts | 10 + .../free-solid-svg-icons/faBolt.js | 29 + .../free-solid-svg-icons/faBomb.d.ts | 10 + .../free-solid-svg-icons/faBomb.js | 29 + .../free-solid-svg-icons/faBong.d.ts | 10 + .../free-solid-svg-icons/faBong.js | 29 + .../free-solid-svg-icons/faBook.d.ts | 10 + .../free-solid-svg-icons/faBook.js | 29 + .../free-solid-svg-icons/faBookOpen.d.ts | 10 + .../free-solid-svg-icons/faBookOpen.js | 29 + .../free-solid-svg-icons/faBookmark.d.ts | 10 + .../free-solid-svg-icons/faBookmark.js | 29 + .../free-solid-svg-icons/faBowlingBall.d.ts | 10 + .../free-solid-svg-icons/faBowlingBall.js | 29 + .../free-solid-svg-icons/faBox.d.ts | 10 + .../free-solid-svg-icons/faBox.js | 29 + .../free-solid-svg-icons/faBoxOpen.d.ts | 10 + .../free-solid-svg-icons/faBoxOpen.js | 29 + .../free-solid-svg-icons/faBoxes.d.ts | 10 + .../free-solid-svg-icons/faBoxes.js | 29 + .../free-solid-svg-icons/faBraille.d.ts | 10 + .../free-solid-svg-icons/faBraille.js | 29 + .../free-solid-svg-icons/faBriefcase.d.ts | 10 + .../free-solid-svg-icons/faBriefcase.js | 29 + .../faBriefcaseMedical.d.ts | 10 + .../faBriefcaseMedical.js | 29 + .../faBroadcastTower.d.ts | 10 + .../free-solid-svg-icons/faBroadcastTower.js | 29 + .../free-solid-svg-icons/faBroom.d.ts | 10 + .../free-solid-svg-icons/faBroom.js | 29 + .../free-solid-svg-icons/faBrush.d.ts | 10 + .../free-solid-svg-icons/faBrush.js | 29 + .../free-solid-svg-icons/faBug.d.ts | 10 + .../free-solid-svg-icons/faBug.js | 29 + .../free-solid-svg-icons/faBuilding.d.ts | 10 + .../free-solid-svg-icons/faBuilding.js | 29 + .../free-solid-svg-icons/faBullhorn.d.ts | 10 + .../free-solid-svg-icons/faBullhorn.js | 29 + .../free-solid-svg-icons/faBullseye.d.ts | 10 + .../free-solid-svg-icons/faBullseye.js | 29 + .../free-solid-svg-icons/faBurn.d.ts | 10 + .../free-solid-svg-icons/faBurn.js | 29 + .../free-solid-svg-icons/faBus.d.ts | 10 + .../free-solid-svg-icons/faBus.js | 29 + .../free-solid-svg-icons/faBusAlt.d.ts | 10 + .../free-solid-svg-icons/faBusAlt.js | 29 + .../free-solid-svg-icons/faCalculator.d.ts | 10 + .../free-solid-svg-icons/faCalculator.js | 29 + .../free-solid-svg-icons/faCalendar.d.ts | 10 + .../free-solid-svg-icons/faCalendar.js | 29 + .../free-solid-svg-icons/faCalendarAlt.d.ts | 10 + .../free-solid-svg-icons/faCalendarAlt.js | 29 + .../free-solid-svg-icons/faCalendarCheck.d.ts | 10 + .../free-solid-svg-icons/faCalendarCheck.js | 29 + .../free-solid-svg-icons/faCalendarMinus.d.ts | 10 + .../free-solid-svg-icons/faCalendarMinus.js | 29 + .../free-solid-svg-icons/faCalendarPlus.d.ts | 10 + .../free-solid-svg-icons/faCalendarPlus.js | 29 + .../free-solid-svg-icons/faCalendarTimes.d.ts | 10 + .../free-solid-svg-icons/faCalendarTimes.js | 29 + .../free-solid-svg-icons/faCamera.d.ts | 10 + .../free-solid-svg-icons/faCamera.js | 29 + .../free-solid-svg-icons/faCameraRetro.d.ts | 10 + .../free-solid-svg-icons/faCameraRetro.js | 29 + .../free-solid-svg-icons/faCannabis.d.ts | 10 + .../free-solid-svg-icons/faCannabis.js | 29 + .../free-solid-svg-icons/faCapsules.d.ts | 10 + .../free-solid-svg-icons/faCapsules.js | 29 + .../free-solid-svg-icons/faCar.d.ts | 10 + .../free-solid-svg-icons/faCar.js | 29 + .../free-solid-svg-icons/faCaretDown.d.ts | 10 + .../free-solid-svg-icons/faCaretDown.js | 29 + .../free-solid-svg-icons/faCaretLeft.d.ts | 10 + .../free-solid-svg-icons/faCaretLeft.js | 29 + .../free-solid-svg-icons/faCaretRight.d.ts | 10 + .../free-solid-svg-icons/faCaretRight.js | 29 + .../faCaretSquareDown.d.ts | 10 + .../free-solid-svg-icons/faCaretSquareDown.js | 29 + .../faCaretSquareLeft.d.ts | 10 + .../free-solid-svg-icons/faCaretSquareLeft.js | 29 + .../faCaretSquareRight.d.ts | 10 + .../faCaretSquareRight.js | 29 + .../free-solid-svg-icons/faCaretSquareUp.d.ts | 10 + .../free-solid-svg-icons/faCaretSquareUp.js | 29 + .../free-solid-svg-icons/faCaretUp.d.ts | 10 + .../free-solid-svg-icons/faCaretUp.js | 29 + .../free-solid-svg-icons/faCartArrowDown.d.ts | 10 + .../free-solid-svg-icons/faCartArrowDown.js | 29 + .../free-solid-svg-icons/faCartPlus.d.ts | 10 + .../free-solid-svg-icons/faCartPlus.js | 29 + .../free-solid-svg-icons/faCertificate.d.ts | 10 + .../free-solid-svg-icons/faCertificate.js | 29 + .../free-solid-svg-icons/faChalkboard.d.ts | 10 + .../free-solid-svg-icons/faChalkboard.js | 29 + .../faChalkboardTeacher.d.ts | 10 + .../faChalkboardTeacher.js | 29 + .../free-solid-svg-icons/faChartArea.d.ts | 10 + .../free-solid-svg-icons/faChartArea.js | 29 + .../free-solid-svg-icons/faChartBar.d.ts | 10 + .../free-solid-svg-icons/faChartBar.js | 29 + .../free-solid-svg-icons/faChartLine.d.ts | 10 + .../free-solid-svg-icons/faChartLine.js | 29 + .../free-solid-svg-icons/faChartPie.d.ts | 10 + .../free-solid-svg-icons/faChartPie.js | 29 + .../free-solid-svg-icons/faCheck.d.ts | 10 + .../free-solid-svg-icons/faCheck.js | 29 + .../free-solid-svg-icons/faCheckCircle.d.ts | 10 + .../free-solid-svg-icons/faCheckCircle.js | 29 + .../free-solid-svg-icons/faCheckDouble.d.ts | 10 + .../free-solid-svg-icons/faCheckDouble.js | 29 + .../free-solid-svg-icons/faCheckSquare.d.ts | 10 + .../free-solid-svg-icons/faCheckSquare.js | 29 + .../free-solid-svg-icons/faChess.d.ts | 10 + .../free-solid-svg-icons/faChess.js | 29 + .../free-solid-svg-icons/faChessBishop.d.ts | 10 + .../free-solid-svg-icons/faChessBishop.js | 29 + .../free-solid-svg-icons/faChessBoard.d.ts | 10 + .../free-solid-svg-icons/faChessBoard.js | 29 + .../free-solid-svg-icons/faChessKing.d.ts | 10 + .../free-solid-svg-icons/faChessKing.js | 29 + .../free-solid-svg-icons/faChessKnight.d.ts | 10 + .../free-solid-svg-icons/faChessKnight.js | 29 + .../free-solid-svg-icons/faChessPawn.d.ts | 10 + .../free-solid-svg-icons/faChessPawn.js | 29 + .../free-solid-svg-icons/faChessQueen.d.ts | 10 + .../free-solid-svg-icons/faChessQueen.js | 29 + .../free-solid-svg-icons/faChessRook.d.ts | 10 + .../free-solid-svg-icons/faChessRook.js | 29 + .../faChevronCircleDown.d.ts | 10 + .../faChevronCircleDown.js | 29 + .../faChevronCircleLeft.d.ts | 10 + .../faChevronCircleLeft.js | 29 + .../faChevronCircleRight.d.ts | 10 + .../faChevronCircleRight.js | 29 + .../faChevronCircleUp.d.ts | 10 + .../free-solid-svg-icons/faChevronCircleUp.js | 29 + .../free-solid-svg-icons/faChevronDown.d.ts | 10 + .../free-solid-svg-icons/faChevronDown.js | 29 + .../free-solid-svg-icons/faChevronLeft.d.ts | 10 + .../free-solid-svg-icons/faChevronLeft.js | 29 + .../free-solid-svg-icons/faChevronRight.d.ts | 10 + .../free-solid-svg-icons/faChevronRight.js | 29 + .../free-solid-svg-icons/faChevronUp.d.ts | 10 + .../free-solid-svg-icons/faChevronUp.js | 29 + .../free-solid-svg-icons/faChild.d.ts | 10 + .../free-solid-svg-icons/faChild.js | 29 + .../free-solid-svg-icons/faChurch.d.ts | 10 + .../free-solid-svg-icons/faChurch.js | 29 + .../free-solid-svg-icons/faCircle.d.ts | 10 + .../free-solid-svg-icons/faCircle.js | 29 + .../free-solid-svg-icons/faCircleNotch.d.ts | 10 + .../free-solid-svg-icons/faCircleNotch.js | 29 + .../free-solid-svg-icons/faClipboard.d.ts | 10 + .../free-solid-svg-icons/faClipboard.js | 29 + .../faClipboardCheck.d.ts | 10 + .../free-solid-svg-icons/faClipboardCheck.js | 29 + .../free-solid-svg-icons/faClipboardList.d.ts | 10 + .../free-solid-svg-icons/faClipboardList.js | 29 + .../free-solid-svg-icons/faClock.d.ts | 10 + .../free-solid-svg-icons/faClock.js | 29 + .../free-solid-svg-icons/faClone.d.ts | 10 + .../free-solid-svg-icons/faClone.js | 29 + .../faClosedCaptioning.d.ts | 10 + .../faClosedCaptioning.js | 29 + .../free-solid-svg-icons/faCloud.d.ts | 10 + .../free-solid-svg-icons/faCloud.js | 29 + .../faCloudDownloadAlt.d.ts | 10 + .../faCloudDownloadAlt.js | 29 + .../faCloudUploadAlt.d.ts | 10 + .../free-solid-svg-icons/faCloudUploadAlt.js | 29 + .../free-solid-svg-icons/faCocktail.d.ts | 10 + .../free-solid-svg-icons/faCocktail.js | 29 + .../free-solid-svg-icons/faCode.d.ts | 10 + .../free-solid-svg-icons/faCode.js | 29 + .../free-solid-svg-icons/faCodeBranch.d.ts | 10 + .../free-solid-svg-icons/faCodeBranch.js | 29 + .../free-solid-svg-icons/faCoffee.d.ts | 10 + .../free-solid-svg-icons/faCoffee.js | 29 + .../free-solid-svg-icons/faCog.d.ts | 10 + .../free-solid-svg-icons/faCog.js | 29 + .../free-solid-svg-icons/faCogs.d.ts | 10 + .../free-solid-svg-icons/faCogs.js | 29 + .../free-solid-svg-icons/faCoins.d.ts | 10 + .../free-solid-svg-icons/faCoins.js | 29 + .../free-solid-svg-icons/faColumns.d.ts | 10 + .../free-solid-svg-icons/faColumns.js | 29 + .../free-solid-svg-icons/faComment.d.ts | 10 + .../free-solid-svg-icons/faComment.js | 29 + .../free-solid-svg-icons/faCommentAlt.d.ts | 10 + .../free-solid-svg-icons/faCommentAlt.js | 29 + .../free-solid-svg-icons/faCommentDots.d.ts | 10 + .../free-solid-svg-icons/faCommentDots.js | 29 + .../free-solid-svg-icons/faCommentSlash.d.ts | 10 + .../free-solid-svg-icons/faCommentSlash.js | 29 + .../free-solid-svg-icons/faComments.d.ts | 10 + .../free-solid-svg-icons/faComments.js | 29 + .../free-solid-svg-icons/faCompactDisc.d.ts | 10 + .../free-solid-svg-icons/faCompactDisc.js | 29 + .../free-solid-svg-icons/faCompass.d.ts | 10 + .../free-solid-svg-icons/faCompass.js | 29 + .../free-solid-svg-icons/faCompress.d.ts | 10 + .../free-solid-svg-icons/faCompress.js | 29 + .../free-solid-svg-icons/faConciergeBell.d.ts | 10 + .../free-solid-svg-icons/faConciergeBell.js | 29 + .../free-solid-svg-icons/faCookie.d.ts | 10 + .../free-solid-svg-icons/faCookie.js | 29 + .../free-solid-svg-icons/faCookieBite.d.ts | 10 + .../free-solid-svg-icons/faCookieBite.js | 29 + .../free-solid-svg-icons/faCopy.d.ts | 10 + .../free-solid-svg-icons/faCopy.js | 29 + .../free-solid-svg-icons/faCopyright.d.ts | 10 + .../free-solid-svg-icons/faCopyright.js | 29 + .../free-solid-svg-icons/faCouch.d.ts | 10 + .../free-solid-svg-icons/faCouch.js | 29 + .../free-solid-svg-icons/faCreditCard.d.ts | 10 + .../free-solid-svg-icons/faCreditCard.js | 29 + .../free-solid-svg-icons/faCrop.d.ts | 10 + .../free-solid-svg-icons/faCrop.js | 29 + .../free-solid-svg-icons/faCropAlt.d.ts | 10 + .../free-solid-svg-icons/faCropAlt.js | 29 + .../free-solid-svg-icons/faCrosshairs.d.ts | 10 + .../free-solid-svg-icons/faCrosshairs.js | 29 + .../free-solid-svg-icons/faCrow.d.ts | 10 + .../free-solid-svg-icons/faCrow.js | 29 + .../free-solid-svg-icons/faCrown.d.ts | 10 + .../free-solid-svg-icons/faCrown.js | 29 + .../free-solid-svg-icons/faCube.d.ts | 10 + .../free-solid-svg-icons/faCube.js | 29 + .../free-solid-svg-icons/faCubes.d.ts | 10 + .../free-solid-svg-icons/faCubes.js | 29 + .../free-solid-svg-icons/faCut.d.ts | 10 + .../free-solid-svg-icons/faCut.js | 29 + .../free-solid-svg-icons/faDatabase.d.ts | 10 + .../free-solid-svg-icons/faDatabase.js | 29 + .../free-solid-svg-icons/faDeaf.d.ts | 10 + .../free-solid-svg-icons/faDeaf.js | 29 + .../free-solid-svg-icons/faDesktop.d.ts | 10 + .../free-solid-svg-icons/faDesktop.js | 29 + .../free-solid-svg-icons/faDiagnoses.d.ts | 10 + .../free-solid-svg-icons/faDiagnoses.js | 29 + .../free-solid-svg-icons/faDice.d.ts | 10 + .../free-solid-svg-icons/faDice.js | 29 + .../free-solid-svg-icons/faDiceFive.d.ts | 10 + .../free-solid-svg-icons/faDiceFive.js | 29 + .../free-solid-svg-icons/faDiceFour.d.ts | 10 + .../free-solid-svg-icons/faDiceFour.js | 29 + .../free-solid-svg-icons/faDiceOne.d.ts | 10 + .../free-solid-svg-icons/faDiceOne.js | 29 + .../free-solid-svg-icons/faDiceSix.d.ts | 10 + .../free-solid-svg-icons/faDiceSix.js | 29 + .../free-solid-svg-icons/faDiceThree.d.ts | 10 + .../free-solid-svg-icons/faDiceThree.js | 29 + .../free-solid-svg-icons/faDiceTwo.d.ts | 10 + .../free-solid-svg-icons/faDiceTwo.js | 29 + .../faDigitalTachograph.d.ts | 10 + .../faDigitalTachograph.js | 29 + .../free-solid-svg-icons/faDivide.d.ts | 10 + .../free-solid-svg-icons/faDivide.js | 29 + .../free-solid-svg-icons/faDizzy.d.ts | 10 + .../free-solid-svg-icons/faDizzy.js | 29 + .../free-solid-svg-icons/faDna.d.ts | 10 + .../free-solid-svg-icons/faDna.js | 29 + .../free-solid-svg-icons/faDollarSign.d.ts | 10 + .../free-solid-svg-icons/faDollarSign.js | 29 + .../free-solid-svg-icons/faDolly.d.ts | 10 + .../free-solid-svg-icons/faDolly.js | 29 + .../free-solid-svg-icons/faDollyFlatbed.d.ts | 10 + .../free-solid-svg-icons/faDollyFlatbed.js | 29 + .../free-solid-svg-icons/faDonate.d.ts | 10 + .../free-solid-svg-icons/faDonate.js | 29 + .../free-solid-svg-icons/faDoorClosed.d.ts | 10 + .../free-solid-svg-icons/faDoorClosed.js | 29 + .../free-solid-svg-icons/faDoorOpen.d.ts | 10 + .../free-solid-svg-icons/faDoorOpen.js | 29 + .../free-solid-svg-icons/faDotCircle.d.ts | 10 + .../free-solid-svg-icons/faDotCircle.js | 29 + .../free-solid-svg-icons/faDove.d.ts | 10 + .../free-solid-svg-icons/faDove.js | 29 + .../free-solid-svg-icons/faDownload.d.ts | 10 + .../free-solid-svg-icons/faDownload.js | 29 + .../faDraftingCompass.d.ts | 10 + .../free-solid-svg-icons/faDraftingCompass.js | 29 + .../free-solid-svg-icons/faDrum.d.ts | 10 + .../free-solid-svg-icons/faDrum.js | 29 + .../free-solid-svg-icons/faDrumSteelpan.d.ts | 10 + .../free-solid-svg-icons/faDrumSteelpan.js | 29 + .../free-solid-svg-icons/faDumbbell.d.ts | 10 + .../free-solid-svg-icons/faDumbbell.js | 29 + .../free-solid-svg-icons/faEdit.d.ts | 10 + .../free-solid-svg-icons/faEdit.js | 29 + .../free-solid-svg-icons/faEject.d.ts | 10 + .../free-solid-svg-icons/faEject.js | 29 + .../free-solid-svg-icons/faEllipsisH.d.ts | 10 + .../free-solid-svg-icons/faEllipsisH.js | 29 + .../free-solid-svg-icons/faEllipsisV.d.ts | 10 + .../free-solid-svg-icons/faEllipsisV.js | 29 + .../free-solid-svg-icons/faEnvelope.d.ts | 10 + .../free-solid-svg-icons/faEnvelope.js | 29 + .../free-solid-svg-icons/faEnvelopeOpen.d.ts | 10 + .../free-solid-svg-icons/faEnvelopeOpen.js | 29 + .../faEnvelopeSquare.d.ts | 10 + .../free-solid-svg-icons/faEnvelopeSquare.js | 29 + .../free-solid-svg-icons/faEquals.d.ts | 10 + .../free-solid-svg-icons/faEquals.js | 29 + .../free-solid-svg-icons/faEraser.d.ts | 10 + .../free-solid-svg-icons/faEraser.js | 29 + .../free-solid-svg-icons/faEuroSign.d.ts | 10 + .../free-solid-svg-icons/faEuroSign.js | 29 + .../free-solid-svg-icons/faExchangeAlt.d.ts | 10 + .../free-solid-svg-icons/faExchangeAlt.js | 29 + .../free-solid-svg-icons/faExclamation.d.ts | 10 + .../free-solid-svg-icons/faExclamation.js | 29 + .../faExclamationCircle.d.ts | 10 + .../faExclamationCircle.js | 29 + .../faExclamationTriangle.d.ts | 10 + .../faExclamationTriangle.js | 29 + .../free-solid-svg-icons/faExpand.d.ts | 10 + .../free-solid-svg-icons/faExpand.js | 29 + .../faExpandArrowsAlt.d.ts | 10 + .../free-solid-svg-icons/faExpandArrowsAlt.js | 29 + .../faExternalLinkAlt.d.ts | 10 + .../free-solid-svg-icons/faExternalLinkAlt.js | 29 + .../faExternalLinkSquareAlt.d.ts | 10 + .../faExternalLinkSquareAlt.js | 29 + .../free-solid-svg-icons/faEye.d.ts | 10 + .../free-solid-svg-icons/faEye.js | 29 + .../free-solid-svg-icons/faEyeDropper.d.ts | 10 + .../free-solid-svg-icons/faEyeDropper.js | 29 + .../free-solid-svg-icons/faEyeSlash.d.ts | 10 + .../free-solid-svg-icons/faEyeSlash.js | 29 + .../free-solid-svg-icons/faFastBackward.d.ts | 10 + .../free-solid-svg-icons/faFastBackward.js | 29 + .../free-solid-svg-icons/faFastForward.d.ts | 10 + .../free-solid-svg-icons/faFastForward.js | 29 + .../free-solid-svg-icons/faFax.d.ts | 10 + .../free-solid-svg-icons/faFax.js | 29 + .../free-solid-svg-icons/faFeather.d.ts | 10 + .../free-solid-svg-icons/faFeather.js | 29 + .../free-solid-svg-icons/faFeatherAlt.d.ts | 10 + .../free-solid-svg-icons/faFeatherAlt.js | 29 + .../free-solid-svg-icons/faFemale.d.ts | 10 + .../free-solid-svg-icons/faFemale.js | 29 + .../free-solid-svg-icons/faFighterJet.d.ts | 10 + .../free-solid-svg-icons/faFighterJet.js | 29 + .../free-solid-svg-icons/faFile.d.ts | 10 + .../free-solid-svg-icons/faFile.js | 29 + .../free-solid-svg-icons/faFileAlt.d.ts | 10 + .../free-solid-svg-icons/faFileAlt.js | 29 + .../free-solid-svg-icons/faFileArchive.d.ts | 10 + .../free-solid-svg-icons/faFileArchive.js | 29 + .../free-solid-svg-icons/faFileAudio.d.ts | 10 + .../free-solid-svg-icons/faFileAudio.js | 29 + .../free-solid-svg-icons/faFileCode.d.ts | 10 + .../free-solid-svg-icons/faFileCode.js | 29 + .../free-solid-svg-icons/faFileContract.d.ts | 10 + .../free-solid-svg-icons/faFileContract.js | 29 + .../free-solid-svg-icons/faFileDownload.d.ts | 10 + .../free-solid-svg-icons/faFileDownload.js | 29 + .../free-solid-svg-icons/faFileExcel.d.ts | 10 + .../free-solid-svg-icons/faFileExcel.js | 29 + .../free-solid-svg-icons/faFileExport.d.ts | 10 + .../free-solid-svg-icons/faFileExport.js | 29 + .../free-solid-svg-icons/faFileImage.d.ts | 10 + .../free-solid-svg-icons/faFileImage.js | 29 + .../free-solid-svg-icons/faFileImport.d.ts | 10 + .../free-solid-svg-icons/faFileImport.js | 29 + .../free-solid-svg-icons/faFileInvoice.d.ts | 10 + .../free-solid-svg-icons/faFileInvoice.js | 29 + .../faFileInvoiceDollar.d.ts | 10 + .../faFileInvoiceDollar.js | 29 + .../free-solid-svg-icons/faFileMedical.d.ts | 10 + .../free-solid-svg-icons/faFileMedical.js | 29 + .../faFileMedicalAlt.d.ts | 10 + .../free-solid-svg-icons/faFileMedicalAlt.js | 29 + .../free-solid-svg-icons/faFilePdf.d.ts | 10 + .../free-solid-svg-icons/faFilePdf.js | 29 + .../faFilePowerpoint.d.ts | 10 + .../free-solid-svg-icons/faFilePowerpoint.js | 29 + .../faFilePrescription.d.ts | 10 + .../faFilePrescription.js | 29 + .../free-solid-svg-icons/faFileSignature.d.ts | 10 + .../free-solid-svg-icons/faFileSignature.js | 29 + .../free-solid-svg-icons/faFileUpload.d.ts | 10 + .../free-solid-svg-icons/faFileUpload.js | 29 + .../free-solid-svg-icons/faFileVideo.d.ts | 10 + .../free-solid-svg-icons/faFileVideo.js | 29 + .../free-solid-svg-icons/faFileWord.d.ts | 10 + .../free-solid-svg-icons/faFileWord.js | 29 + .../free-solid-svg-icons/faFill.d.ts | 10 + .../free-solid-svg-icons/faFill.js | 29 + .../free-solid-svg-icons/faFillDrip.d.ts | 10 + .../free-solid-svg-icons/faFillDrip.js | 29 + .../free-solid-svg-icons/faFilm.d.ts | 10 + .../free-solid-svg-icons/faFilm.js | 29 + .../free-solid-svg-icons/faFilter.d.ts | 10 + .../free-solid-svg-icons/faFilter.js | 29 + .../free-solid-svg-icons/faFingerprint.d.ts | 10 + .../free-solid-svg-icons/faFingerprint.js | 29 + .../free-solid-svg-icons/faFire.d.ts | 10 + .../free-solid-svg-icons/faFire.js | 29 + .../faFireExtinguisher.d.ts | 10 + .../faFireExtinguisher.js | 29 + .../free-solid-svg-icons/faFirstAid.d.ts | 10 + .../free-solid-svg-icons/faFirstAid.js | 29 + .../free-solid-svg-icons/faFish.d.ts | 10 + .../free-solid-svg-icons/faFish.js | 29 + .../free-solid-svg-icons/faFlag.d.ts | 10 + .../free-solid-svg-icons/faFlag.js | 29 + .../free-solid-svg-icons/faFlagCheckered.d.ts | 10 + .../free-solid-svg-icons/faFlagCheckered.js | 29 + .../free-solid-svg-icons/faFlask.d.ts | 10 + .../free-solid-svg-icons/faFlask.js | 29 + .../free-solid-svg-icons/faFlushed.d.ts | 10 + .../free-solid-svg-icons/faFlushed.js | 29 + .../free-solid-svg-icons/faFolder.d.ts | 10 + .../free-solid-svg-icons/faFolder.js | 29 + .../free-solid-svg-icons/faFolderOpen.d.ts | 10 + .../free-solid-svg-icons/faFolderOpen.js | 29 + .../free-solid-svg-icons/faFont.d.ts | 10 + .../free-solid-svg-icons/faFont.js | 29 + .../faFontAwesomeLogoFull.d.ts | 10 + .../faFontAwesomeLogoFull.js | 29 + .../free-solid-svg-icons/faFootballBall.d.ts | 10 + .../free-solid-svg-icons/faFootballBall.js | 29 + .../free-solid-svg-icons/faForward.d.ts | 10 + .../free-solid-svg-icons/faForward.js | 29 + .../free-solid-svg-icons/faFrog.d.ts | 10 + .../free-solid-svg-icons/faFrog.js | 29 + .../free-solid-svg-icons/faFrown.d.ts | 10 + .../free-solid-svg-icons/faFrown.js | 29 + .../free-solid-svg-icons/faFrownOpen.d.ts | 10 + .../free-solid-svg-icons/faFrownOpen.js | 29 + .../free-solid-svg-icons/faFutbol.d.ts | 10 + .../free-solid-svg-icons/faFutbol.js | 29 + .../free-solid-svg-icons/faGamepad.d.ts | 10 + .../free-solid-svg-icons/faGamepad.js | 29 + .../free-solid-svg-icons/faGasPump.d.ts | 10 + .../free-solid-svg-icons/faGasPump.js | 29 + .../free-solid-svg-icons/faGavel.d.ts | 10 + .../free-solid-svg-icons/faGavel.js | 29 + .../free-solid-svg-icons/faGem.d.ts | 10 + .../free-solid-svg-icons/faGem.js | 29 + .../free-solid-svg-icons/faGenderless.d.ts | 10 + .../free-solid-svg-icons/faGenderless.js | 29 + .../free-solid-svg-icons/faGift.d.ts | 10 + .../free-solid-svg-icons/faGift.js | 29 + .../free-solid-svg-icons/faGlassMartini.d.ts | 10 + .../free-solid-svg-icons/faGlassMartini.js | 29 + .../faGlassMartiniAlt.d.ts | 10 + .../free-solid-svg-icons/faGlassMartiniAlt.js | 29 + .../free-solid-svg-icons/faGlasses.d.ts | 10 + .../free-solid-svg-icons/faGlasses.js | 29 + .../free-solid-svg-icons/faGlobe.d.ts | 10 + .../free-solid-svg-icons/faGlobe.js | 29 + .../free-solid-svg-icons/faGlobeAfrica.d.ts | 10 + .../free-solid-svg-icons/faGlobeAfrica.js | 29 + .../free-solid-svg-icons/faGlobeAmericas.d.ts | 10 + .../free-solid-svg-icons/faGlobeAmericas.js | 29 + .../free-solid-svg-icons/faGlobeAsia.d.ts | 10 + .../free-solid-svg-icons/faGlobeAsia.js | 29 + .../free-solid-svg-icons/faGolfBall.d.ts | 10 + .../free-solid-svg-icons/faGolfBall.js | 29 + .../free-solid-svg-icons/faGraduationCap.d.ts | 10 + .../free-solid-svg-icons/faGraduationCap.js | 29 + .../free-solid-svg-icons/faGreaterThan.d.ts | 10 + .../free-solid-svg-icons/faGreaterThan.js | 29 + .../faGreaterThanEqual.d.ts | 10 + .../faGreaterThanEqual.js | 29 + .../free-solid-svg-icons/faGrimace.d.ts | 10 + .../free-solid-svg-icons/faGrimace.js | 29 + .../free-solid-svg-icons/faGrin.d.ts | 10 + .../free-solid-svg-icons/faGrin.js | 29 + .../free-solid-svg-icons/faGrinAlt.d.ts | 10 + .../free-solid-svg-icons/faGrinAlt.js | 29 + .../free-solid-svg-icons/faGrinBeam.d.ts | 10 + .../free-solid-svg-icons/faGrinBeam.js | 29 + .../free-solid-svg-icons/faGrinBeamSweat.d.ts | 10 + .../free-solid-svg-icons/faGrinBeamSweat.js | 29 + .../free-solid-svg-icons/faGrinHearts.d.ts | 10 + .../free-solid-svg-icons/faGrinHearts.js | 29 + .../free-solid-svg-icons/faGrinSquint.d.ts | 10 + .../free-solid-svg-icons/faGrinSquint.js | 29 + .../faGrinSquintTears.d.ts | 10 + .../free-solid-svg-icons/faGrinSquintTears.js | 29 + .../free-solid-svg-icons/faGrinStars.d.ts | 10 + .../free-solid-svg-icons/faGrinStars.js | 29 + .../free-solid-svg-icons/faGrinTears.d.ts | 10 + .../free-solid-svg-icons/faGrinTears.js | 29 + .../free-solid-svg-icons/faGrinTongue.d.ts | 10 + .../free-solid-svg-icons/faGrinTongue.js | 29 + .../faGrinTongueSquint.d.ts | 10 + .../faGrinTongueSquint.js | 29 + .../faGrinTongueWink.d.ts | 10 + .../free-solid-svg-icons/faGrinTongueWink.js | 29 + .../free-solid-svg-icons/faGrinWink.d.ts | 10 + .../free-solid-svg-icons/faGrinWink.js | 29 + .../faGripHorizontal.d.ts | 10 + .../free-solid-svg-icons/faGripHorizontal.js | 29 + .../free-solid-svg-icons/faGripVertical.d.ts | 10 + .../free-solid-svg-icons/faGripVertical.js | 29 + .../free-solid-svg-icons/faHSquare.d.ts | 10 + .../free-solid-svg-icons/faHSquare.js | 29 + .../free-solid-svg-icons/faHandHolding.d.ts | 10 + .../free-solid-svg-icons/faHandHolding.js | 29 + .../faHandHoldingHeart.d.ts | 10 + .../faHandHoldingHeart.js | 29 + .../faHandHoldingUsd.d.ts | 10 + .../free-solid-svg-icons/faHandHoldingUsd.js | 29 + .../free-solid-svg-icons/faHandLizard.d.ts | 10 + .../free-solid-svg-icons/faHandLizard.js | 29 + .../free-solid-svg-icons/faHandPaper.d.ts | 10 + .../free-solid-svg-icons/faHandPaper.js | 29 + .../free-solid-svg-icons/faHandPeace.d.ts | 10 + .../free-solid-svg-icons/faHandPeace.js | 29 + .../free-solid-svg-icons/faHandPointDown.d.ts | 10 + .../free-solid-svg-icons/faHandPointDown.js | 29 + .../free-solid-svg-icons/faHandPointLeft.d.ts | 10 + .../free-solid-svg-icons/faHandPointLeft.js | 29 + .../faHandPointRight.d.ts | 10 + .../free-solid-svg-icons/faHandPointRight.js | 29 + .../free-solid-svg-icons/faHandPointUp.d.ts | 10 + .../free-solid-svg-icons/faHandPointUp.js | 29 + .../free-solid-svg-icons/faHandPointer.d.ts | 10 + .../free-solid-svg-icons/faHandPointer.js | 29 + .../free-solid-svg-icons/faHandRock.d.ts | 10 + .../free-solid-svg-icons/faHandRock.js | 29 + .../free-solid-svg-icons/faHandScissors.d.ts | 10 + .../free-solid-svg-icons/faHandScissors.js | 29 + .../free-solid-svg-icons/faHandSpock.d.ts | 10 + .../free-solid-svg-icons/faHandSpock.js | 29 + .../free-solid-svg-icons/faHands.d.ts | 10 + .../free-solid-svg-icons/faHands.js | 29 + .../free-solid-svg-icons/faHandsHelping.d.ts | 10 + .../free-solid-svg-icons/faHandsHelping.js | 29 + .../free-solid-svg-icons/faHandshake.d.ts | 10 + .../free-solid-svg-icons/faHandshake.js | 29 + .../free-solid-svg-icons/faHashtag.d.ts | 10 + .../free-solid-svg-icons/faHashtag.js | 29 + .../free-solid-svg-icons/faHdd.d.ts | 10 + .../free-solid-svg-icons/faHdd.js | 29 + .../free-solid-svg-icons/faHeading.d.ts | 10 + .../free-solid-svg-icons/faHeading.js | 29 + .../free-solid-svg-icons/faHeadphones.d.ts | 10 + .../free-solid-svg-icons/faHeadphones.js | 29 + .../free-solid-svg-icons/faHeadphonesAlt.d.ts | 10 + .../free-solid-svg-icons/faHeadphonesAlt.js | 29 + .../free-solid-svg-icons/faHeadset.d.ts | 10 + .../free-solid-svg-icons/faHeadset.js | 29 + .../free-solid-svg-icons/faHeart.d.ts | 10 + .../free-solid-svg-icons/faHeart.js | 29 + .../free-solid-svg-icons/faHeartbeat.d.ts | 10 + .../free-solid-svg-icons/faHeartbeat.js | 29 + .../free-solid-svg-icons/faHelicopter.d.ts | 10 + .../free-solid-svg-icons/faHelicopter.js | 29 + .../free-solid-svg-icons/faHighlighter.d.ts | 10 + .../free-solid-svg-icons/faHighlighter.js | 29 + .../free-solid-svg-icons/faHistory.d.ts | 10 + .../free-solid-svg-icons/faHistory.js | 29 + .../free-solid-svg-icons/faHockeyPuck.d.ts | 10 + .../free-solid-svg-icons/faHockeyPuck.js | 29 + .../free-solid-svg-icons/faHome.d.ts | 10 + .../free-solid-svg-icons/faHome.js | 29 + .../free-solid-svg-icons/faHospital.d.ts | 10 + .../free-solid-svg-icons/faHospital.js | 29 + .../free-solid-svg-icons/faHospitalAlt.d.ts | 10 + .../free-solid-svg-icons/faHospitalAlt.js | 29 + .../faHospitalSymbol.d.ts | 10 + .../free-solid-svg-icons/faHospitalSymbol.js | 29 + .../free-solid-svg-icons/faHotTub.d.ts | 10 + .../free-solid-svg-icons/faHotTub.js | 29 + .../free-solid-svg-icons/faHotel.d.ts | 10 + .../free-solid-svg-icons/faHotel.js | 29 + .../free-solid-svg-icons/faHourglass.d.ts | 10 + .../free-solid-svg-icons/faHourglass.js | 29 + .../free-solid-svg-icons/faHourglassEnd.d.ts | 10 + .../free-solid-svg-icons/faHourglassEnd.js | 29 + .../free-solid-svg-icons/faHourglassHalf.d.ts | 10 + .../free-solid-svg-icons/faHourglassHalf.js | 29 + .../faHourglassStart.d.ts | 10 + .../free-solid-svg-icons/faHourglassStart.js | 29 + .../free-solid-svg-icons/faICursor.d.ts | 10 + .../free-solid-svg-icons/faICursor.js | 29 + .../free-solid-svg-icons/faIdBadge.d.ts | 10 + .../free-solid-svg-icons/faIdBadge.js | 29 + .../free-solid-svg-icons/faIdCard.d.ts | 10 + .../free-solid-svg-icons/faIdCard.js | 29 + .../free-solid-svg-icons/faIdCardAlt.d.ts | 10 + .../free-solid-svg-icons/faIdCardAlt.js | 29 + .../free-solid-svg-icons/faImage.d.ts | 10 + .../free-solid-svg-icons/faImage.js | 29 + .../free-solid-svg-icons/faImages.d.ts | 10 + .../free-solid-svg-icons/faImages.js | 29 + .../free-solid-svg-icons/faInbox.d.ts | 10 + .../free-solid-svg-icons/faInbox.js | 29 + .../free-solid-svg-icons/faIndent.d.ts | 10 + .../free-solid-svg-icons/faIndent.js | 29 + .../free-solid-svg-icons/faIndustry.d.ts | 10 + .../free-solid-svg-icons/faIndustry.js | 29 + .../free-solid-svg-icons/faInfinity.d.ts | 10 + .../free-solid-svg-icons/faInfinity.js | 29 + .../free-solid-svg-icons/faInfo.d.ts | 10 + .../free-solid-svg-icons/faInfo.js | 29 + .../free-solid-svg-icons/faInfoCircle.d.ts | 10 + .../free-solid-svg-icons/faInfoCircle.js | 29 + .../free-solid-svg-icons/faItalic.d.ts | 10 + .../free-solid-svg-icons/faItalic.js | 29 + .../free-solid-svg-icons/faJoint.d.ts | 10 + .../free-solid-svg-icons/faJoint.js | 29 + .../free-solid-svg-icons/faKey.d.ts | 10 + .../free-solid-svg-icons/faKey.js | 29 + .../free-solid-svg-icons/faKeyboard.d.ts | 10 + .../free-solid-svg-icons/faKeyboard.js | 29 + .../free-solid-svg-icons/faKiss.d.ts | 10 + .../free-solid-svg-icons/faKiss.js | 29 + .../free-solid-svg-icons/faKissBeam.d.ts | 10 + .../free-solid-svg-icons/faKissBeam.js | 29 + .../free-solid-svg-icons/faKissWinkHeart.d.ts | 10 + .../free-solid-svg-icons/faKissWinkHeart.js | 29 + .../free-solid-svg-icons/faKiwiBird.d.ts | 10 + .../free-solid-svg-icons/faKiwiBird.js | 29 + .../free-solid-svg-icons/faLanguage.d.ts | 10 + .../free-solid-svg-icons/faLanguage.js | 29 + .../free-solid-svg-icons/faLaptop.d.ts | 10 + .../free-solid-svg-icons/faLaptop.js | 29 + .../free-solid-svg-icons/faLaugh.d.ts | 10 + .../free-solid-svg-icons/faLaugh.js | 29 + .../free-solid-svg-icons/faLaughBeam.d.ts | 10 + .../free-solid-svg-icons/faLaughBeam.js | 29 + .../free-solid-svg-icons/faLaughSquint.d.ts | 10 + .../free-solid-svg-icons/faLaughSquint.js | 29 + .../free-solid-svg-icons/faLaughWink.d.ts | 10 + .../free-solid-svg-icons/faLaughWink.js | 29 + .../free-solid-svg-icons/faLeaf.d.ts | 10 + .../free-solid-svg-icons/faLeaf.js | 29 + .../free-solid-svg-icons/faLemon.d.ts | 10 + .../free-solid-svg-icons/faLemon.js | 29 + .../free-solid-svg-icons/faLessThan.d.ts | 10 + .../free-solid-svg-icons/faLessThan.js | 29 + .../free-solid-svg-icons/faLessThanEqual.d.ts | 10 + .../free-solid-svg-icons/faLessThanEqual.js | 29 + .../free-solid-svg-icons/faLevelDownAlt.d.ts | 10 + .../free-solid-svg-icons/faLevelDownAlt.js | 29 + .../free-solid-svg-icons/faLevelUpAlt.d.ts | 10 + .../free-solid-svg-icons/faLevelUpAlt.js | 29 + .../free-solid-svg-icons/faLifeRing.d.ts | 10 + .../free-solid-svg-icons/faLifeRing.js | 29 + .../free-solid-svg-icons/faLightbulb.d.ts | 10 + .../free-solid-svg-icons/faLightbulb.js | 29 + .../free-solid-svg-icons/faLink.d.ts | 10 + .../free-solid-svg-icons/faLink.js | 29 + .../free-solid-svg-icons/faLiraSign.d.ts | 10 + .../free-solid-svg-icons/faLiraSign.js | 29 + .../free-solid-svg-icons/faList.d.ts | 10 + .../free-solid-svg-icons/faList.js | 29 + .../free-solid-svg-icons/faListAlt.d.ts | 10 + .../free-solid-svg-icons/faListAlt.js | 29 + .../free-solid-svg-icons/faListOl.d.ts | 10 + .../free-solid-svg-icons/faListOl.js | 29 + .../free-solid-svg-icons/faListUl.d.ts | 10 + .../free-solid-svg-icons/faListUl.js | 29 + .../free-solid-svg-icons/faLocationArrow.d.ts | 10 + .../free-solid-svg-icons/faLocationArrow.js | 29 + .../free-solid-svg-icons/faLock.d.ts | 10 + .../free-solid-svg-icons/faLock.js | 29 + .../free-solid-svg-icons/faLockOpen.d.ts | 10 + .../free-solid-svg-icons/faLockOpen.js | 29 + .../faLongArrowAltDown.d.ts | 10 + .../faLongArrowAltDown.js | 29 + .../faLongArrowAltLeft.d.ts | 10 + .../faLongArrowAltLeft.js | 29 + .../faLongArrowAltRight.d.ts | 10 + .../faLongArrowAltRight.js | 29 + .../faLongArrowAltUp.d.ts | 10 + .../free-solid-svg-icons/faLongArrowAltUp.js | 29 + .../free-solid-svg-icons/faLowVision.d.ts | 10 + .../free-solid-svg-icons/faLowVision.js | 29 + .../free-solid-svg-icons/faLuggageCart.d.ts | 10 + .../free-solid-svg-icons/faLuggageCart.js | 29 + .../free-solid-svg-icons/faMagic.d.ts | 10 + .../free-solid-svg-icons/faMagic.js | 29 + .../free-solid-svg-icons/faMagnet.d.ts | 10 + .../free-solid-svg-icons/faMagnet.js | 29 + .../free-solid-svg-icons/faMale.d.ts | 10 + .../free-solid-svg-icons/faMale.js | 29 + .../free-solid-svg-icons/faMap.d.ts | 10 + .../free-solid-svg-icons/faMap.js | 29 + .../free-solid-svg-icons/faMapMarked.d.ts | 10 + .../free-solid-svg-icons/faMapMarked.js | 29 + .../free-solid-svg-icons/faMapMarkedAlt.d.ts | 10 + .../free-solid-svg-icons/faMapMarkedAlt.js | 29 + .../free-solid-svg-icons/faMapMarker.d.ts | 10 + .../free-solid-svg-icons/faMapMarker.js | 29 + .../free-solid-svg-icons/faMapMarkerAlt.d.ts | 10 + .../free-solid-svg-icons/faMapMarkerAlt.js | 29 + .../free-solid-svg-icons/faMapPin.d.ts | 10 + .../free-solid-svg-icons/faMapPin.js | 29 + .../free-solid-svg-icons/faMapSigns.d.ts | 10 + .../free-solid-svg-icons/faMapSigns.js | 29 + .../free-solid-svg-icons/faMarker.d.ts | 10 + .../free-solid-svg-icons/faMarker.js | 29 + .../free-solid-svg-icons/faMars.d.ts | 10 + .../free-solid-svg-icons/faMars.js | 29 + .../free-solid-svg-icons/faMarsDouble.d.ts | 10 + .../free-solid-svg-icons/faMarsDouble.js | 29 + .../free-solid-svg-icons/faMarsStroke.d.ts | 10 + .../free-solid-svg-icons/faMarsStroke.js | 29 + .../free-solid-svg-icons/faMarsStrokeH.d.ts | 10 + .../free-solid-svg-icons/faMarsStrokeH.js | 29 + .../free-solid-svg-icons/faMarsStrokeV.d.ts | 10 + .../free-solid-svg-icons/faMarsStrokeV.js | 29 + .../free-solid-svg-icons/faMedal.d.ts | 10 + .../free-solid-svg-icons/faMedal.js | 29 + .../free-solid-svg-icons/faMedkit.d.ts | 10 + .../free-solid-svg-icons/faMedkit.js | 29 + .../free-solid-svg-icons/faMeh.d.ts | 10 + .../free-solid-svg-icons/faMeh.js | 29 + .../free-solid-svg-icons/faMehBlank.d.ts | 10 + .../free-solid-svg-icons/faMehBlank.js | 29 + .../faMehRollingEyes.d.ts | 10 + .../free-solid-svg-icons/faMehRollingEyes.js | 29 + .../free-solid-svg-icons/faMemory.d.ts | 10 + .../free-solid-svg-icons/faMemory.js | 29 + .../free-solid-svg-icons/faMercury.d.ts | 10 + .../free-solid-svg-icons/faMercury.js | 29 + .../free-solid-svg-icons/faMicrochip.d.ts | 10 + .../free-solid-svg-icons/faMicrochip.js | 29 + .../free-solid-svg-icons/faMicrophone.d.ts | 10 + .../free-solid-svg-icons/faMicrophone.js | 29 + .../free-solid-svg-icons/faMicrophoneAlt.d.ts | 10 + .../free-solid-svg-icons/faMicrophoneAlt.js | 29 + .../faMicrophoneAltSlash.d.ts | 10 + .../faMicrophoneAltSlash.js | 29 + .../faMicrophoneSlash.d.ts | 10 + .../free-solid-svg-icons/faMicrophoneSlash.js | 29 + .../free-solid-svg-icons/faMinus.d.ts | 10 + .../free-solid-svg-icons/faMinus.js | 29 + .../free-solid-svg-icons/faMinusCircle.d.ts | 10 + .../free-solid-svg-icons/faMinusCircle.js | 29 + .../free-solid-svg-icons/faMinusSquare.d.ts | 10 + .../free-solid-svg-icons/faMinusSquare.js | 29 + .../free-solid-svg-icons/faMobile.d.ts | 10 + .../free-solid-svg-icons/faMobile.js | 29 + .../free-solid-svg-icons/faMobileAlt.d.ts | 10 + .../free-solid-svg-icons/faMobileAlt.js | 29 + .../free-solid-svg-icons/faMoneyBill.d.ts | 10 + .../free-solid-svg-icons/faMoneyBill.js | 29 + .../free-solid-svg-icons/faMoneyBillAlt.d.ts | 10 + .../free-solid-svg-icons/faMoneyBillAlt.js | 29 + .../free-solid-svg-icons/faMoneyBillWave.d.ts | 10 + .../free-solid-svg-icons/faMoneyBillWave.js | 29 + .../faMoneyBillWaveAlt.d.ts | 10 + .../faMoneyBillWaveAlt.js | 29 + .../free-solid-svg-icons/faMoneyCheck.d.ts | 10 + .../free-solid-svg-icons/faMoneyCheck.js | 29 + .../free-solid-svg-icons/faMoneyCheckAlt.d.ts | 10 + .../free-solid-svg-icons/faMoneyCheckAlt.js | 29 + .../free-solid-svg-icons/faMonument.d.ts | 10 + .../free-solid-svg-icons/faMonument.js | 29 + .../free-solid-svg-icons/faMoon.d.ts | 10 + .../free-solid-svg-icons/faMoon.js | 29 + .../free-solid-svg-icons/faMortarPestle.d.ts | 10 + .../free-solid-svg-icons/faMortarPestle.js | 29 + .../free-solid-svg-icons/faMotorcycle.d.ts | 10 + .../free-solid-svg-icons/faMotorcycle.js | 29 + .../free-solid-svg-icons/faMousePointer.d.ts | 10 + .../free-solid-svg-icons/faMousePointer.js | 29 + .../free-solid-svg-icons/faMusic.d.ts | 10 + .../free-solid-svg-icons/faMusic.js | 29 + .../free-solid-svg-icons/faNeuter.d.ts | 10 + .../free-solid-svg-icons/faNeuter.js | 29 + .../free-solid-svg-icons/faNewspaper.d.ts | 10 + .../free-solid-svg-icons/faNewspaper.js | 29 + .../free-solid-svg-icons/faNotEqual.d.ts | 10 + .../free-solid-svg-icons/faNotEqual.js | 29 + .../free-solid-svg-icons/faNotesMedical.d.ts | 10 + .../free-solid-svg-icons/faNotesMedical.js | 29 + .../free-solid-svg-icons/faObjectGroup.d.ts | 10 + .../free-solid-svg-icons/faObjectGroup.js | 29 + .../free-solid-svg-icons/faObjectUngroup.d.ts | 10 + .../free-solid-svg-icons/faObjectUngroup.js | 29 + .../free-solid-svg-icons/faOutdent.d.ts | 10 + .../free-solid-svg-icons/faOutdent.js | 29 + .../free-solid-svg-icons/faPaintBrush.d.ts | 10 + .../free-solid-svg-icons/faPaintBrush.js | 29 + .../free-solid-svg-icons/faPaintRoller.d.ts | 10 + .../free-solid-svg-icons/faPaintRoller.js | 29 + .../free-solid-svg-icons/faPalette.d.ts | 10 + .../free-solid-svg-icons/faPalette.js | 29 + .../free-solid-svg-icons/faPallet.d.ts | 10 + .../free-solid-svg-icons/faPallet.js | 29 + .../free-solid-svg-icons/faPaperPlane.d.ts | 10 + .../free-solid-svg-icons/faPaperPlane.js | 29 + .../free-solid-svg-icons/faPaperclip.d.ts | 10 + .../free-solid-svg-icons/faPaperclip.js | 29 + .../free-solid-svg-icons/faParachuteBox.d.ts | 10 + .../free-solid-svg-icons/faParachuteBox.js | 29 + .../free-solid-svg-icons/faParagraph.d.ts | 10 + .../free-solid-svg-icons/faParagraph.js | 29 + .../free-solid-svg-icons/faParking.d.ts | 10 + .../free-solid-svg-icons/faParking.js | 29 + .../free-solid-svg-icons/faPassport.d.ts | 10 + .../free-solid-svg-icons/faPassport.js | 29 + .../free-solid-svg-icons/faPaste.d.ts | 10 + .../free-solid-svg-icons/faPaste.js | 29 + .../free-solid-svg-icons/faPause.d.ts | 10 + .../free-solid-svg-icons/faPause.js | 29 + .../free-solid-svg-icons/faPauseCircle.d.ts | 10 + .../free-solid-svg-icons/faPauseCircle.js | 29 + .../free-solid-svg-icons/faPaw.d.ts | 10 + .../free-solid-svg-icons/faPaw.js | 29 + .../free-solid-svg-icons/faPen.d.ts | 10 + .../free-solid-svg-icons/faPen.js | 29 + .../free-solid-svg-icons/faPenAlt.d.ts | 10 + .../free-solid-svg-icons/faPenAlt.js | 29 + .../free-solid-svg-icons/faPenFancy.d.ts | 10 + .../free-solid-svg-icons/faPenFancy.js | 29 + .../free-solid-svg-icons/faPenNib.d.ts | 10 + .../free-solid-svg-icons/faPenNib.js | 29 + .../free-solid-svg-icons/faPenSquare.d.ts | 10 + .../free-solid-svg-icons/faPenSquare.js | 29 + .../free-solid-svg-icons/faPencilAlt.d.ts | 10 + .../free-solid-svg-icons/faPencilAlt.js | 29 + .../free-solid-svg-icons/faPencilRuler.d.ts | 10 + .../free-solid-svg-icons/faPencilRuler.js | 29 + .../free-solid-svg-icons/faPeopleCarry.d.ts | 10 + .../free-solid-svg-icons/faPeopleCarry.js | 29 + .../free-solid-svg-icons/faPercent.d.ts | 10 + .../free-solid-svg-icons/faPercent.js | 29 + .../free-solid-svg-icons/faPercentage.d.ts | 10 + .../free-solid-svg-icons/faPercentage.js | 29 + .../free-solid-svg-icons/faPhone.d.ts | 10 + .../free-solid-svg-icons/faPhone.js | 29 + .../free-solid-svg-icons/faPhoneSlash.d.ts | 10 + .../free-solid-svg-icons/faPhoneSlash.js | 29 + .../free-solid-svg-icons/faPhoneSquare.d.ts | 10 + .../free-solid-svg-icons/faPhoneSquare.js | 29 + .../free-solid-svg-icons/faPhoneVolume.d.ts | 10 + .../free-solid-svg-icons/faPhoneVolume.js | 29 + .../free-solid-svg-icons/faPiggyBank.d.ts | 10 + .../free-solid-svg-icons/faPiggyBank.js | 29 + .../free-solid-svg-icons/faPills.d.ts | 10 + .../free-solid-svg-icons/faPills.js | 29 + .../free-solid-svg-icons/faPlane.d.ts | 10 + .../free-solid-svg-icons/faPlane.js | 29 + .../free-solid-svg-icons/faPlaneArrival.d.ts | 10 + .../free-solid-svg-icons/faPlaneArrival.js | 29 + .../faPlaneDeparture.d.ts | 10 + .../free-solid-svg-icons/faPlaneDeparture.js | 29 + .../free-solid-svg-icons/faPlay.d.ts | 10 + .../free-solid-svg-icons/faPlay.js | 29 + .../free-solid-svg-icons/faPlayCircle.d.ts | 10 + .../free-solid-svg-icons/faPlayCircle.js | 29 + .../free-solid-svg-icons/faPlug.d.ts | 10 + .../free-solid-svg-icons/faPlug.js | 29 + .../free-solid-svg-icons/faPlus.d.ts | 10 + .../free-solid-svg-icons/faPlus.js | 29 + .../free-solid-svg-icons/faPlusCircle.d.ts | 10 + .../free-solid-svg-icons/faPlusCircle.js | 29 + .../free-solid-svg-icons/faPlusSquare.d.ts | 10 + .../free-solid-svg-icons/faPlusSquare.js | 29 + .../free-solid-svg-icons/faPodcast.d.ts | 10 + .../free-solid-svg-icons/faPodcast.js | 29 + .../free-solid-svg-icons/faPoo.d.ts | 10 + .../free-solid-svg-icons/faPoo.js | 29 + .../free-solid-svg-icons/faPortrait.d.ts | 10 + .../free-solid-svg-icons/faPortrait.js | 29 + .../free-solid-svg-icons/faPoundSign.d.ts | 10 + .../free-solid-svg-icons/faPoundSign.js | 29 + .../free-solid-svg-icons/faPowerOff.d.ts | 10 + .../free-solid-svg-icons/faPowerOff.js | 29 + .../free-solid-svg-icons/faPrescription.d.ts | 10 + .../free-solid-svg-icons/faPrescription.js | 29 + .../faPrescriptionBottle.d.ts | 10 + .../faPrescriptionBottle.js | 29 + .../faPrescriptionBottleAlt.d.ts | 10 + .../faPrescriptionBottleAlt.js | 29 + .../free-solid-svg-icons/faPrint.d.ts | 10 + .../free-solid-svg-icons/faPrint.js | 29 + .../free-solid-svg-icons/faProcedures.d.ts | 10 + .../free-solid-svg-icons/faProcedures.js | 29 + .../faProjectDiagram.d.ts | 10 + .../free-solid-svg-icons/faProjectDiagram.js | 29 + .../free-solid-svg-icons/faPuzzlePiece.d.ts | 10 + .../free-solid-svg-icons/faPuzzlePiece.js | 29 + .../free-solid-svg-icons/faQrcode.d.ts | 10 + .../free-solid-svg-icons/faQrcode.js | 29 + .../free-solid-svg-icons/faQuestion.d.ts | 10 + .../free-solid-svg-icons/faQuestion.js | 29 + .../faQuestionCircle.d.ts | 10 + .../free-solid-svg-icons/faQuestionCircle.js | 29 + .../free-solid-svg-icons/faQuidditch.d.ts | 10 + .../free-solid-svg-icons/faQuidditch.js | 29 + .../free-solid-svg-icons/faQuoteLeft.d.ts | 10 + .../free-solid-svg-icons/faQuoteLeft.js | 29 + .../free-solid-svg-icons/faQuoteRight.d.ts | 10 + .../free-solid-svg-icons/faQuoteRight.js | 29 + .../free-solid-svg-icons/faRandom.d.ts | 10 + .../free-solid-svg-icons/faRandom.js | 29 + .../free-solid-svg-icons/faReceipt.d.ts | 10 + .../free-solid-svg-icons/faReceipt.js | 29 + .../free-solid-svg-icons/faRecycle.d.ts | 10 + .../free-solid-svg-icons/faRecycle.js | 29 + .../free-solid-svg-icons/faRedo.d.ts | 10 + .../free-solid-svg-icons/faRedo.js | 29 + .../free-solid-svg-icons/faRedoAlt.d.ts | 10 + .../free-solid-svg-icons/faRedoAlt.js | 29 + .../free-solid-svg-icons/faRegistered.d.ts | 10 + .../free-solid-svg-icons/faRegistered.js | 29 + .../free-solid-svg-icons/faReply.d.ts | 10 + .../free-solid-svg-icons/faReply.js | 29 + .../free-solid-svg-icons/faReplyAll.d.ts | 10 + .../free-solid-svg-icons/faReplyAll.js | 29 + .../free-solid-svg-icons/faRetweet.d.ts | 10 + .../free-solid-svg-icons/faRetweet.js | 29 + .../free-solid-svg-icons/faRibbon.d.ts | 10 + .../free-solid-svg-icons/faRibbon.js | 29 + .../free-solid-svg-icons/faRoad.d.ts | 10 + .../free-solid-svg-icons/faRoad.js | 29 + .../free-solid-svg-icons/faRobot.d.ts | 10 + .../free-solid-svg-icons/faRobot.js | 29 + .../free-solid-svg-icons/faRocket.d.ts | 10 + .../free-solid-svg-icons/faRocket.js | 29 + .../free-solid-svg-icons/faRss.d.ts | 10 + .../free-solid-svg-icons/faRss.js | 29 + .../free-solid-svg-icons/faRssSquare.d.ts | 10 + .../free-solid-svg-icons/faRssSquare.js | 29 + .../free-solid-svg-icons/faRubleSign.d.ts | 10 + .../free-solid-svg-icons/faRubleSign.js | 29 + .../free-solid-svg-icons/faRuler.d.ts | 10 + .../free-solid-svg-icons/faRuler.js | 29 + .../free-solid-svg-icons/faRulerCombined.d.ts | 10 + .../free-solid-svg-icons/faRulerCombined.js | 29 + .../faRulerHorizontal.d.ts | 10 + .../free-solid-svg-icons/faRulerHorizontal.js | 29 + .../free-solid-svg-icons/faRulerVertical.d.ts | 10 + .../free-solid-svg-icons/faRulerVertical.js | 29 + .../free-solid-svg-icons/faRupeeSign.d.ts | 10 + .../free-solid-svg-icons/faRupeeSign.js | 29 + .../free-solid-svg-icons/faSadCry.d.ts | 10 + .../free-solid-svg-icons/faSadCry.js | 29 + .../free-solid-svg-icons/faSadTear.d.ts | 10 + .../free-solid-svg-icons/faSadTear.js | 29 + .../free-solid-svg-icons/faSave.d.ts | 10 + .../free-solid-svg-icons/faSave.js | 29 + .../free-solid-svg-icons/faSchool.d.ts | 10 + .../free-solid-svg-icons/faSchool.js | 29 + .../free-solid-svg-icons/faScrewdriver.d.ts | 10 + .../free-solid-svg-icons/faScrewdriver.js | 29 + .../free-solid-svg-icons/faSearch.d.ts | 10 + .../free-solid-svg-icons/faSearch.js | 29 + .../free-solid-svg-icons/faSearchMinus.d.ts | 10 + .../free-solid-svg-icons/faSearchMinus.js | 29 + .../free-solid-svg-icons/faSearchPlus.d.ts | 10 + .../free-solid-svg-icons/faSearchPlus.js | 29 + .../free-solid-svg-icons/faSeedling.d.ts | 10 + .../free-solid-svg-icons/faSeedling.js | 29 + .../free-solid-svg-icons/faServer.d.ts | 10 + .../free-solid-svg-icons/faServer.js | 29 + .../free-solid-svg-icons/faShare.d.ts | 10 + .../free-solid-svg-icons/faShare.js | 29 + .../free-solid-svg-icons/faShareAlt.d.ts | 10 + .../free-solid-svg-icons/faShareAlt.js | 29 + .../faShareAltSquare.d.ts | 10 + .../free-solid-svg-icons/faShareAltSquare.js | 29 + .../free-solid-svg-icons/faShareSquare.d.ts | 10 + .../free-solid-svg-icons/faShareSquare.js | 29 + .../free-solid-svg-icons/faShekelSign.d.ts | 10 + .../free-solid-svg-icons/faShekelSign.js | 29 + .../free-solid-svg-icons/faShieldAlt.d.ts | 10 + .../free-solid-svg-icons/faShieldAlt.js | 29 + .../free-solid-svg-icons/faShip.d.ts | 10 + .../free-solid-svg-icons/faShip.js | 29 + .../free-solid-svg-icons/faShippingFast.d.ts | 10 + .../free-solid-svg-icons/faShippingFast.js | 29 + .../free-solid-svg-icons/faShoePrints.d.ts | 10 + .../free-solid-svg-icons/faShoePrints.js | 29 + .../free-solid-svg-icons/faShoppingBag.d.ts | 10 + .../free-solid-svg-icons/faShoppingBag.js | 29 + .../faShoppingBasket.d.ts | 10 + .../free-solid-svg-icons/faShoppingBasket.js | 29 + .../free-solid-svg-icons/faShoppingCart.d.ts | 10 + .../free-solid-svg-icons/faShoppingCart.js | 29 + .../free-solid-svg-icons/faShower.d.ts | 10 + .../free-solid-svg-icons/faShower.js | 29 + .../free-solid-svg-icons/faShuttleVan.d.ts | 10 + .../free-solid-svg-icons/faShuttleVan.js | 29 + .../free-solid-svg-icons/faSign.d.ts | 10 + .../free-solid-svg-icons/faSign.js | 29 + .../free-solid-svg-icons/faSignInAlt.d.ts | 10 + .../free-solid-svg-icons/faSignInAlt.js | 29 + .../free-solid-svg-icons/faSignLanguage.d.ts | 10 + .../free-solid-svg-icons/faSignLanguage.js | 29 + .../free-solid-svg-icons/faSignOutAlt.d.ts | 10 + .../free-solid-svg-icons/faSignOutAlt.js | 29 + .../free-solid-svg-icons/faSignal.d.ts | 10 + .../free-solid-svg-icons/faSignal.js | 29 + .../free-solid-svg-icons/faSignature.d.ts | 10 + .../free-solid-svg-icons/faSignature.js | 29 + .../free-solid-svg-icons/faSitemap.d.ts | 10 + .../free-solid-svg-icons/faSitemap.js | 29 + .../free-solid-svg-icons/faSkull.d.ts | 10 + .../free-solid-svg-icons/faSkull.js | 29 + .../free-solid-svg-icons/faSlidersH.d.ts | 10 + .../free-solid-svg-icons/faSlidersH.js | 29 + .../free-solid-svg-icons/faSmile.d.ts | 10 + .../free-solid-svg-icons/faSmile.js | 29 + .../free-solid-svg-icons/faSmileBeam.d.ts | 10 + .../free-solid-svg-icons/faSmileBeam.js | 29 + .../free-solid-svg-icons/faSmileWink.d.ts | 10 + .../free-solid-svg-icons/faSmileWink.js | 29 + .../free-solid-svg-icons/faSmoking.d.ts | 10 + .../free-solid-svg-icons/faSmoking.js | 29 + .../free-solid-svg-icons/faSmokingBan.d.ts | 10 + .../free-solid-svg-icons/faSmokingBan.js | 29 + .../free-solid-svg-icons/faSnowflake.d.ts | 10 + .../free-solid-svg-icons/faSnowflake.js | 29 + .../free-solid-svg-icons/faSolarPanel.d.ts | 10 + .../free-solid-svg-icons/faSolarPanel.js | 29 + .../free-solid-svg-icons/faSort.d.ts | 10 + .../free-solid-svg-icons/faSort.js | 29 + .../free-solid-svg-icons/faSortAlphaDown.d.ts | 10 + .../free-solid-svg-icons/faSortAlphaDown.js | 29 + .../free-solid-svg-icons/faSortAlphaUp.d.ts | 10 + .../free-solid-svg-icons/faSortAlphaUp.js | 29 + .../faSortAmountDown.d.ts | 10 + .../free-solid-svg-icons/faSortAmountDown.js | 29 + .../free-solid-svg-icons/faSortAmountUp.d.ts | 10 + .../free-solid-svg-icons/faSortAmountUp.js | 29 + .../free-solid-svg-icons/faSortDown.d.ts | 10 + .../free-solid-svg-icons/faSortDown.js | 29 + .../faSortNumericDown.d.ts | 10 + .../free-solid-svg-icons/faSortNumericDown.js | 29 + .../free-solid-svg-icons/faSortNumericUp.d.ts | 10 + .../free-solid-svg-icons/faSortNumericUp.js | 29 + .../free-solid-svg-icons/faSortUp.d.ts | 10 + .../free-solid-svg-icons/faSortUp.js | 29 + .../free-solid-svg-icons/faSpa.d.ts | 10 + .../free-solid-svg-icons/faSpa.js | 29 + .../free-solid-svg-icons/faSpaceShuttle.d.ts | 10 + .../free-solid-svg-icons/faSpaceShuttle.js | 29 + .../free-solid-svg-icons/faSpinner.d.ts | 10 + .../free-solid-svg-icons/faSpinner.js | 29 + .../free-solid-svg-icons/faSplotch.d.ts | 10 + .../free-solid-svg-icons/faSplotch.js | 29 + .../free-solid-svg-icons/faSprayCan.d.ts | 10 + .../free-solid-svg-icons/faSprayCan.js | 29 + .../free-solid-svg-icons/faSquare.d.ts | 10 + .../free-solid-svg-icons/faSquare.js | 29 + .../free-solid-svg-icons/faSquareFull.d.ts | 10 + .../free-solid-svg-icons/faSquareFull.js | 29 + .../free-solid-svg-icons/faStamp.d.ts | 10 + .../free-solid-svg-icons/faStamp.js | 29 + .../free-solid-svg-icons/faStar.d.ts | 10 + .../free-solid-svg-icons/faStar.js | 29 + .../free-solid-svg-icons/faStarHalf.d.ts | 10 + .../free-solid-svg-icons/faStarHalf.js | 29 + .../free-solid-svg-icons/faStarHalfAlt.d.ts | 10 + .../free-solid-svg-icons/faStarHalfAlt.js | 29 + .../free-solid-svg-icons/faStepBackward.d.ts | 10 + .../free-solid-svg-icons/faStepBackward.js | 29 + .../free-solid-svg-icons/faStepForward.d.ts | 10 + .../free-solid-svg-icons/faStepForward.js | 29 + .../free-solid-svg-icons/faStethoscope.d.ts | 10 + .../free-solid-svg-icons/faStethoscope.js | 29 + .../free-solid-svg-icons/faStickyNote.d.ts | 10 + .../free-solid-svg-icons/faStickyNote.js | 29 + .../free-solid-svg-icons/faStop.d.ts | 10 + .../free-solid-svg-icons/faStop.js | 29 + .../free-solid-svg-icons/faStopCircle.d.ts | 10 + .../free-solid-svg-icons/faStopCircle.js | 29 + .../free-solid-svg-icons/faStopwatch.d.ts | 10 + .../free-solid-svg-icons/faStopwatch.js | 29 + .../free-solid-svg-icons/faStore.d.ts | 10 + .../free-solid-svg-icons/faStore.js | 29 + .../free-solid-svg-icons/faStoreAlt.d.ts | 10 + .../free-solid-svg-icons/faStoreAlt.js | 29 + .../free-solid-svg-icons/faStream.d.ts | 10 + .../free-solid-svg-icons/faStream.js | 29 + .../free-solid-svg-icons/faStreetView.d.ts | 10 + .../free-solid-svg-icons/faStreetView.js | 29 + .../free-solid-svg-icons/faStrikethrough.d.ts | 10 + .../free-solid-svg-icons/faStrikethrough.js | 29 + .../free-solid-svg-icons/faStroopwafel.d.ts | 10 + .../free-solid-svg-icons/faStroopwafel.js | 29 + .../free-solid-svg-icons/faSubscript.d.ts | 10 + .../free-solid-svg-icons/faSubscript.js | 29 + .../free-solid-svg-icons/faSubway.d.ts | 10 + .../free-solid-svg-icons/faSubway.js | 29 + .../free-solid-svg-icons/faSuitcase.d.ts | 10 + .../free-solid-svg-icons/faSuitcase.js | 29 + .../faSuitcaseRolling.d.ts | 10 + .../free-solid-svg-icons/faSuitcaseRolling.js | 29 + .../free-solid-svg-icons/faSun.d.ts | 10 + .../free-solid-svg-icons/faSun.js | 29 + .../free-solid-svg-icons/faSuperscript.d.ts | 10 + .../free-solid-svg-icons/faSuperscript.js | 29 + .../free-solid-svg-icons/faSurprise.d.ts | 10 + .../free-solid-svg-icons/faSurprise.js | 29 + .../free-solid-svg-icons/faSwatchbook.d.ts | 10 + .../free-solid-svg-icons/faSwatchbook.js | 29 + .../free-solid-svg-icons/faSwimmer.d.ts | 10 + .../free-solid-svg-icons/faSwimmer.js | 29 + .../free-solid-svg-icons/faSwimmingPool.d.ts | 10 + .../free-solid-svg-icons/faSwimmingPool.js | 29 + .../free-solid-svg-icons/faSync.d.ts | 10 + .../free-solid-svg-icons/faSync.js | 29 + .../free-solid-svg-icons/faSyncAlt.d.ts | 10 + .../free-solid-svg-icons/faSyncAlt.js | 29 + .../free-solid-svg-icons/faSyringe.d.ts | 10 + .../free-solid-svg-icons/faSyringe.js | 29 + .../free-solid-svg-icons/faTable.d.ts | 10 + .../free-solid-svg-icons/faTable.js | 29 + .../free-solid-svg-icons/faTableTennis.d.ts | 10 + .../free-solid-svg-icons/faTableTennis.js | 29 + .../free-solid-svg-icons/faTablet.d.ts | 10 + .../free-solid-svg-icons/faTablet.js | 29 + .../free-solid-svg-icons/faTabletAlt.d.ts | 10 + .../free-solid-svg-icons/faTabletAlt.js | 29 + .../free-solid-svg-icons/faTablets.d.ts | 10 + .../free-solid-svg-icons/faTablets.js | 29 + .../free-solid-svg-icons/faTachometerAlt.d.ts | 10 + .../free-solid-svg-icons/faTachometerAlt.js | 29 + .../free-solid-svg-icons/faTag.d.ts | 10 + .../free-solid-svg-icons/faTag.js | 29 + .../free-solid-svg-icons/faTags.d.ts | 10 + .../free-solid-svg-icons/faTags.js | 29 + .../free-solid-svg-icons/faTape.d.ts | 10 + .../free-solid-svg-icons/faTape.js | 29 + .../free-solid-svg-icons/faTasks.d.ts | 10 + .../free-solid-svg-icons/faTasks.js | 29 + .../free-solid-svg-icons/faTaxi.d.ts | 10 + .../free-solid-svg-icons/faTaxi.js | 29 + .../free-solid-svg-icons/faTerminal.d.ts | 10 + .../free-solid-svg-icons/faTerminal.js | 29 + .../free-solid-svg-icons/faTextHeight.d.ts | 10 + .../free-solid-svg-icons/faTextHeight.js | 29 + .../free-solid-svg-icons/faTextWidth.d.ts | 10 + .../free-solid-svg-icons/faTextWidth.js | 29 + .../free-solid-svg-icons/faTh.d.ts | 10 + .../free-solid-svg-icons/faTh.js | 29 + .../free-solid-svg-icons/faThLarge.d.ts | 10 + .../free-solid-svg-icons/faThLarge.js | 29 + .../free-solid-svg-icons/faThList.d.ts | 10 + .../free-solid-svg-icons/faThList.js | 29 + .../free-solid-svg-icons/faThermometer.d.ts | 10 + .../free-solid-svg-icons/faThermometer.js | 29 + .../faThermometerEmpty.d.ts | 10 + .../faThermometerEmpty.js | 29 + .../faThermometerFull.d.ts | 10 + .../free-solid-svg-icons/faThermometerFull.js | 29 + .../faThermometerHalf.d.ts | 10 + .../free-solid-svg-icons/faThermometerHalf.js | 29 + .../faThermometerQuarter.d.ts | 10 + .../faThermometerQuarter.js | 29 + .../faThermometerThreeQuarters.d.ts | 10 + .../faThermometerThreeQuarters.js | 29 + .../free-solid-svg-icons/faThumbsDown.d.ts | 10 + .../free-solid-svg-icons/faThumbsDown.js | 29 + .../free-solid-svg-icons/faThumbsUp.d.ts | 10 + .../free-solid-svg-icons/faThumbsUp.js | 29 + .../free-solid-svg-icons/faThumbtack.d.ts | 10 + .../free-solid-svg-icons/faThumbtack.js | 29 + .../free-solid-svg-icons/faTicketAlt.d.ts | 10 + .../free-solid-svg-icons/faTicketAlt.js | 29 + .../free-solid-svg-icons/faTimes.d.ts | 10 + .../free-solid-svg-icons/faTimes.js | 29 + .../free-solid-svg-icons/faTimesCircle.d.ts | 10 + .../free-solid-svg-icons/faTimesCircle.js | 29 + .../free-solid-svg-icons/faTint.d.ts | 10 + .../free-solid-svg-icons/faTint.js | 29 + .../free-solid-svg-icons/faTintSlash.d.ts | 10 + .../free-solid-svg-icons/faTintSlash.js | 29 + .../free-solid-svg-icons/faTired.d.ts | 10 + .../free-solid-svg-icons/faTired.js | 29 + .../free-solid-svg-icons/faToggleOff.d.ts | 10 + .../free-solid-svg-icons/faToggleOff.js | 29 + .../free-solid-svg-icons/faToggleOn.d.ts | 10 + .../free-solid-svg-icons/faToggleOn.js | 29 + .../free-solid-svg-icons/faToolbox.d.ts | 10 + .../free-solid-svg-icons/faToolbox.js | 29 + .../free-solid-svg-icons/faTooth.d.ts | 10 + .../free-solid-svg-icons/faTooth.js | 29 + .../free-solid-svg-icons/faTrademark.d.ts | 10 + .../free-solid-svg-icons/faTrademark.js | 29 + .../free-solid-svg-icons/faTrain.d.ts | 10 + .../free-solid-svg-icons/faTrain.js | 29 + .../free-solid-svg-icons/faTransgender.d.ts | 10 + .../free-solid-svg-icons/faTransgender.js | 29 + .../faTransgenderAlt.d.ts | 10 + .../free-solid-svg-icons/faTransgenderAlt.js | 29 + .../free-solid-svg-icons/faTrash.d.ts | 10 + .../free-solid-svg-icons/faTrash.js | 29 + .../free-solid-svg-icons/faTrashAlt.d.ts | 10 + .../free-solid-svg-icons/faTrashAlt.js | 29 + .../free-solid-svg-icons/faTree.d.ts | 10 + .../free-solid-svg-icons/faTree.js | 29 + .../free-solid-svg-icons/faTrophy.d.ts | 10 + .../free-solid-svg-icons/faTrophy.js | 29 + .../free-solid-svg-icons/faTruck.d.ts | 10 + .../free-solid-svg-icons/faTruck.js | 29 + .../free-solid-svg-icons/faTruckLoading.d.ts | 10 + .../free-solid-svg-icons/faTruckLoading.js | 29 + .../free-solid-svg-icons/faTruckMoving.d.ts | 10 + .../free-solid-svg-icons/faTruckMoving.js | 29 + .../free-solid-svg-icons/faTshirt.d.ts | 10 + .../free-solid-svg-icons/faTshirt.js | 29 + .../free-solid-svg-icons/faTty.d.ts | 10 + .../free-solid-svg-icons/faTty.js | 29 + .../free-solid-svg-icons/faTv.d.ts | 10 + .../free-solid-svg-icons/faTv.js | 29 + .../free-solid-svg-icons/faUmbrella.d.ts | 10 + .../free-solid-svg-icons/faUmbrella.js | 29 + .../free-solid-svg-icons/faUmbrellaBeach.d.ts | 10 + .../free-solid-svg-icons/faUmbrellaBeach.js | 29 + .../free-solid-svg-icons/faUnderline.d.ts | 10 + .../free-solid-svg-icons/faUnderline.js | 29 + .../free-solid-svg-icons/faUndo.d.ts | 10 + .../free-solid-svg-icons/faUndo.js | 29 + .../free-solid-svg-icons/faUndoAlt.d.ts | 10 + .../free-solid-svg-icons/faUndoAlt.js | 29 + .../faUniversalAccess.d.ts | 10 + .../free-solid-svg-icons/faUniversalAccess.js | 29 + .../free-solid-svg-icons/faUniversity.d.ts | 10 + .../free-solid-svg-icons/faUniversity.js | 29 + .../free-solid-svg-icons/faUnlink.d.ts | 10 + .../free-solid-svg-icons/faUnlink.js | 29 + .../free-solid-svg-icons/faUnlock.d.ts | 10 + .../free-solid-svg-icons/faUnlock.js | 29 + .../free-solid-svg-icons/faUnlockAlt.d.ts | 10 + .../free-solid-svg-icons/faUnlockAlt.js | 29 + .../free-solid-svg-icons/faUpload.d.ts | 10 + .../free-solid-svg-icons/faUpload.js | 29 + .../free-solid-svg-icons/faUser.d.ts | 10 + .../free-solid-svg-icons/faUser.js | 29 + .../free-solid-svg-icons/faUserAlt.d.ts | 10 + .../free-solid-svg-icons/faUserAlt.js | 29 + .../free-solid-svg-icons/faUserAltSlash.d.ts | 10 + .../free-solid-svg-icons/faUserAltSlash.js | 29 + .../free-solid-svg-icons/faUserAstronaut.d.ts | 10 + .../free-solid-svg-icons/faUserAstronaut.js | 29 + .../free-solid-svg-icons/faUserCheck.d.ts | 10 + .../free-solid-svg-icons/faUserCheck.js | 29 + .../free-solid-svg-icons/faUserCircle.d.ts | 10 + .../free-solid-svg-icons/faUserCircle.js | 29 + .../free-solid-svg-icons/faUserClock.d.ts | 10 + .../free-solid-svg-icons/faUserClock.js | 29 + .../free-solid-svg-icons/faUserCog.d.ts | 10 + .../free-solid-svg-icons/faUserCog.js | 29 + .../free-solid-svg-icons/faUserEdit.d.ts | 10 + .../free-solid-svg-icons/faUserEdit.js | 29 + .../free-solid-svg-icons/faUserFriends.d.ts | 10 + .../free-solid-svg-icons/faUserFriends.js | 29 + .../free-solid-svg-icons/faUserGraduate.d.ts | 10 + .../free-solid-svg-icons/faUserGraduate.js | 29 + .../free-solid-svg-icons/faUserLock.d.ts | 10 + .../free-solid-svg-icons/faUserLock.js | 29 + .../free-solid-svg-icons/faUserMd.d.ts | 10 + .../free-solid-svg-icons/faUserMd.js | 29 + .../free-solid-svg-icons/faUserMinus.d.ts | 10 + .../free-solid-svg-icons/faUserMinus.js | 29 + .../free-solid-svg-icons/faUserNinja.d.ts | 10 + .../free-solid-svg-icons/faUserNinja.js | 29 + .../free-solid-svg-icons/faUserPlus.d.ts | 10 + .../free-solid-svg-icons/faUserPlus.js | 29 + .../free-solid-svg-icons/faUserSecret.d.ts | 10 + .../free-solid-svg-icons/faUserSecret.js | 29 + .../free-solid-svg-icons/faUserShield.d.ts | 10 + .../free-solid-svg-icons/faUserShield.js | 29 + .../free-solid-svg-icons/faUserSlash.d.ts | 10 + .../free-solid-svg-icons/faUserSlash.js | 29 + .../free-solid-svg-icons/faUserTag.d.ts | 10 + .../free-solid-svg-icons/faUserTag.js | 29 + .../free-solid-svg-icons/faUserTie.d.ts | 10 + .../free-solid-svg-icons/faUserTie.js | 29 + .../free-solid-svg-icons/faUserTimes.d.ts | 10 + .../free-solid-svg-icons/faUserTimes.js | 29 + .../free-solid-svg-icons/faUsers.d.ts | 10 + .../free-solid-svg-icons/faUsers.js | 29 + .../free-solid-svg-icons/faUsersCog.d.ts | 10 + .../free-solid-svg-icons/faUsersCog.js | 29 + .../free-solid-svg-icons/faUtensilSpoon.d.ts | 10 + .../free-solid-svg-icons/faUtensilSpoon.js | 29 + .../free-solid-svg-icons/faUtensils.d.ts | 10 + .../free-solid-svg-icons/faUtensils.js | 29 + .../free-solid-svg-icons/faVectorSquare.d.ts | 10 + .../free-solid-svg-icons/faVectorSquare.js | 29 + .../free-solid-svg-icons/faVenus.d.ts | 10 + .../free-solid-svg-icons/faVenus.js | 29 + .../free-solid-svg-icons/faVenusDouble.d.ts | 10 + .../free-solid-svg-icons/faVenusDouble.js | 29 + .../free-solid-svg-icons/faVenusMars.d.ts | 10 + .../free-solid-svg-icons/faVenusMars.js | 29 + .../free-solid-svg-icons/faVial.d.ts | 10 + .../free-solid-svg-icons/faVial.js | 29 + .../free-solid-svg-icons/faVials.d.ts | 10 + .../free-solid-svg-icons/faVials.js | 29 + .../free-solid-svg-icons/faVideo.d.ts | 10 + .../free-solid-svg-icons/faVideo.js | 29 + .../free-solid-svg-icons/faVideoSlash.d.ts | 10 + .../free-solid-svg-icons/faVideoSlash.js | 29 + .../faVolleyballBall.d.ts | 10 + .../free-solid-svg-icons/faVolleyballBall.js | 29 + .../free-solid-svg-icons/faVolumeDown.d.ts | 10 + .../free-solid-svg-icons/faVolumeDown.js | 29 + .../free-solid-svg-icons/faVolumeOff.d.ts | 10 + .../free-solid-svg-icons/faVolumeOff.js | 29 + .../free-solid-svg-icons/faVolumeUp.d.ts | 10 + .../free-solid-svg-icons/faVolumeUp.js | 29 + .../free-solid-svg-icons/faWalking.d.ts | 10 + .../free-solid-svg-icons/faWalking.js | 29 + .../free-solid-svg-icons/faWallet.d.ts | 10 + .../free-solid-svg-icons/faWallet.js | 29 + .../free-solid-svg-icons/faWarehouse.d.ts | 10 + .../free-solid-svg-icons/faWarehouse.js | 29 + .../free-solid-svg-icons/faWeight.d.ts | 10 + .../free-solid-svg-icons/faWeight.js | 29 + .../free-solid-svg-icons/faWeightHanging.d.ts | 10 + .../free-solid-svg-icons/faWeightHanging.js | 29 + .../free-solid-svg-icons/faWheelchair.d.ts | 10 + .../free-solid-svg-icons/faWheelchair.js | 29 + .../free-solid-svg-icons/faWifi.d.ts | 10 + .../free-solid-svg-icons/faWifi.js | 29 + .../free-solid-svg-icons/faWindowClose.d.ts | 10 + .../free-solid-svg-icons/faWindowClose.js | 29 + .../faWindowMaximize.d.ts | 10 + .../free-solid-svg-icons/faWindowMaximize.js | 29 + .../faWindowMinimize.d.ts | 10 + .../free-solid-svg-icons/faWindowMinimize.js | 29 + .../free-solid-svg-icons/faWindowRestore.d.ts | 10 + .../free-solid-svg-icons/faWindowRestore.js | 29 + .../free-solid-svg-icons/faWineGlass.d.ts | 10 + .../free-solid-svg-icons/faWineGlass.js | 29 + .../free-solid-svg-icons/faWineGlassAlt.d.ts | 10 + .../free-solid-svg-icons/faWineGlassAlt.js | 29 + .../free-solid-svg-icons/faWonSign.d.ts | 10 + .../free-solid-svg-icons/faWonSign.js | 29 + .../free-solid-svg-icons/faWrench.d.ts | 10 + .../free-solid-svg-icons/faWrench.js | 29 + .../free-solid-svg-icons/faXRay.d.ts | 10 + .../free-solid-svg-icons/faXRay.js | 29 + .../free-solid-svg-icons/faYenSign.d.ts | 10 + .../free-solid-svg-icons/faYenSign.js | 29 + .../free-solid-svg-icons/index.d.ts | 744 + .../free-solid-svg-icons/index.es.js | 1489 + .../free-solid-svg-icons/index.js | 2240 + .../free-solid-svg-icons/package.json | 59 + .../svg-with-js/css/fa-svg-with-js.css | 345 + .../svg-with-js/css/fa-svg-with-js.min.css | 5 + .../Font-Awesome/svg-with-js/js/fa-brands.js | 498 + .../svg-with-js/js/fa-brands.min.js | 425 + .../Font-Awesome/svg-with-js/js/fa-regular.js | 277 + .../svg-with-js/js/fa-regular.min.js | 204 + .../Font-Awesome/svg-with-js/js/fa-solid.js | 865 + .../svg-with-js/js/fa-solid.min.js | 792 + .../svg-with-js/js/fa-v4-shims.js | 91 + .../svg-with-js/js/fa-v4-shims.min.js | 40 + .../svg-with-js/js/fontawesome-all.js | 3606 ++ .../svg-with-js/js/fontawesome-all.min.js | 2460 + .../svg-with-js/js/fontawesome.js | 1978 + .../svg-with-js/js/fontawesome.min.js | 1054 + .../Font Awesome 5 Brands-Regular-400.otf | Bin 0 -> 419608 bytes .../Font Awesome 5 Free-Regular-400.otf | Bin 0 -> 140160 bytes .../Font Awesome 5 Free-Solid-900.otf | Bin 0 -> 537092 bytes .../web-fonts-with-css/css/brands.css | 13 + .../web-fonts-with-css/css/brands.min.css | 5 + .../web-fonts-with-css/css/fa-brands.css | 13 + .../web-fonts-with-css/css/fa-brands.min.css | 5 + .../web-fonts-with-css/css/fa-regular.css | 14 + .../web-fonts-with-css/css/fa-regular.min.css | 5 + .../web-fonts-with-css/css/fa-solid.css | 15 + .../web-fonts-with-css/css/fa-solid.min.css | 5 + .../css/fontawesome-all.css | 3572 ++ .../css/fontawesome-all.min.css | 5 + .../web-fonts-with-css/css/fontawesome.css | 3542 ++ .../css/fontawesome.min.css | 5 + .../web-fonts-with-css/css/regular.css | 14 + .../web-fonts-with-css/css/regular.min.css | 5 + .../web-fonts-with-css/css/solid.css | 15 + .../web-fonts-with-css/css/solid.min.css | 5 + .../web-fonts-with-css/css/v4-shims.css | 2170 + .../web-fonts-with-css/css/v4-shims.min.css | 5 + .../web-fonts-with-css/less/_animated.less | 19 + .../less/_bordered-pulled.less | 16 + .../web-fonts-with-css/less/_core.less | 12 + .../web-fonts-with-css/less/_fixed-width.less | 6 + .../web-fonts-with-css/less/_icons.less | 1115 + .../web-fonts-with-css/less/_larger.less | 27 + .../web-fonts-with-css/less/_list.less | 18 + .../web-fonts-with-css/less/_mixins.less | 57 + .../less/_rotated-flipped.less | 23 + .../less/_screen-reader.less | 5 + .../web-fonts-with-css/less/_shims.less | 2066 + .../web-fonts-with-css/less/_stacked.less | 22 + .../web-fonts-with-css/less/_variables.less | 1124 + .../web-fonts-with-css/less/brands.less | 21 + .../web-fonts-with-css/less/fa-brands.less | 21 + .../web-fonts-with-css/less/fa-regular.less | 22 + .../web-fonts-with-css/less/fa-solid.less | 23 + .../web-fonts-with-css/less/fontawesome.less | 16 + .../web-fonts-with-css/less/regular.less | 22 + .../web-fonts-with-css/less/solid.less | 23 + .../web-fonts-with-css/less/v4-shims.less | 6 + .../web-fonts-with-css/scss/_animated.scss | 20 + .../scss/_bordered-pulled.scss | 20 + .../web-fonts-with-css/scss/_core.scss | 16 + .../web-fonts-with-css/scss/_fixed-width.scss | 6 + .../web-fonts-with-css/scss/_icons.scss | 1115 + .../web-fonts-with-css/scss/_larger.scss | 23 + .../web-fonts-with-css/scss/_list.scss | 18 + .../web-fonts-with-css/scss/_mixins.scss | 57 + .../scss/_rotated-flipped.scss | 23 + .../scss/_screen-reader.scss | 5 + .../web-fonts-with-css/scss/_shims.scss | 2066 + .../web-fonts-with-css/scss/_stacked.scss | 31 + .../web-fonts-with-css/scss/_variables.scss | 1128 + .../web-fonts-with-css/scss/brands.scss | 21 + .../web-fonts-with-css/scss/fa-brands.scss | 21 + .../web-fonts-with-css/scss/fa-regular.scss | 22 + .../web-fonts-with-css/scss/fa-solid.scss | 23 + .../web-fonts-with-css/scss/fontawesome.scss | 16 + .../web-fonts-with-css/scss/regular.scss | 22 + .../web-fonts-with-css/scss/solid.scss | 23 + .../web-fonts-with-css/scss/v4-shims.scss | 6 + .../webfonts/fa-brands-400.eot | Bin 0 -> 115208 bytes .../webfonts/fa-brands-400.svg | 1134 + .../webfonts/fa-brands-400.ttf | Bin 0 -> 114972 bytes .../webfonts/fa-brands-400.woff | Bin 0 -> 74020 bytes .../webfonts/fa-brands-400.woff2 | Bin 0 -> 63276 bytes .../webfonts/fa-regular-400.eot | Bin 0 -> 40792 bytes .../webfonts/fa-regular-400.svg | 471 + .../webfonts/fa-regular-400.ttf | Bin 0 -> 40564 bytes .../webfonts/fa-regular-400.woff | Bin 0 -> 18184 bytes .../webfonts/fa-regular-400.woff2 | Bin 0 -> 14948 bytes .../webfonts/fa-solid-900.eot | Bin 0 -> 160768 bytes .../webfonts/fa-solid-900.svg | 2235 + .../webfonts/fa-solid-900.ttf | Bin 0 -> 160548 bytes .../webfonts/fa-solid-900.woff | Bin 0 -> 76632 bytes .../webfonts/fa-solid-900.woff2 | Bin 0 -> 59612 bytes .../assets/vendor/bootstrap/.gitattributes | 18 + .../docsy/assets/vendor/bootstrap/.gitignore | 48 + .../docsy/assets/vendor/bootstrap/CNAME | 1 + .../vendor/bootstrap/CODE_OF_CONDUCT.md | 46 + .../docsy/assets/vendor/bootstrap/Gemfile | 8 + .../assets/vendor/bootstrap/Gemfile.lock | 80 + .../docsy/assets/vendor/bootstrap/LICENSE | 22 + .../docsy/assets/vendor/bootstrap/README.md | 183 + .../docsy/assets/vendor/bootstrap/_config.yml | 63 + .../vendor/bootstrap/build/build-plugins.js | 79 + .../vendor/bootstrap/build/change-version.js | 102 + .../vendor/bootstrap/build/gcp-key.json.enc | Bin 0 -> 2304 bytes .../vendor/bootstrap/build/generate-sri.js | 58 + .../vendor/bootstrap/build/lint-vars.js | 80 + .../vendor/bootstrap/build/postcss.config.js | 12 + .../vendor/bootstrap/build/rollup.config.js | 51 + .../assets/vendor/bootstrap/build/ship.sh | 70 + .../assets/vendor/bootstrap/build/svgo.yml | 52 + .../assets/vendor/bootstrap/build/vnu-jar.js | 66 + .../bootstrap/build/workbox.config.json | 8 + .../assets/vendor/bootstrap/build/workbox.js | 56 + .../assets/vendor/bootstrap/composer.json | 37 + .../bootstrap/dist/css/bootstrap-grid.css | 3724 ++ .../bootstrap/dist/css/bootstrap-grid.css.map | 1 + .../bootstrap/dist/css/bootstrap-grid.min.css | 7 + .../dist/css/bootstrap-grid.min.css.map | 1 + .../bootstrap/dist/css/bootstrap-reboot.css | 331 + .../dist/css/bootstrap-reboot.css.map | 1 + .../dist/css/bootstrap-reboot.min.css | 8 + .../dist/css/bootstrap-reboot.min.css.map | 1 + .../vendor/bootstrap/dist/css/bootstrap.css | 9615 ++++ .../bootstrap/dist/css/bootstrap.css.map | 1 + .../bootstrap/dist/css/bootstrap.min.css | 7 + .../bootstrap/dist/css/bootstrap.min.css.map | 1 + .../bootstrap/dist/js/bootstrap.bundle.js | 6481 +++ .../bootstrap/dist/js/bootstrap.bundle.js.map | 1 + .../bootstrap/dist/js/bootstrap.bundle.min.js | 7 + .../dist/js/bootstrap.bundle.min.js.map | 1 + .../vendor/bootstrap/dist/js/bootstrap.js | 3952 ++ .../vendor/bootstrap/dist/js/bootstrap.js.map | 1 + .../vendor/bootstrap/dist/js/bootstrap.min.js | 7 + .../bootstrap/dist/js/bootstrap.min.js.map | 1 + .../assets/vendor/bootstrap/js/dist/alert.js | 204 + .../vendor/bootstrap/js/dist/alert.js.map | 1 + .../assets/vendor/bootstrap/js/dist/button.js | 192 + .../vendor/bootstrap/js/dist/button.js.map | 1 + .../vendor/bootstrap/js/dist/carousel.js | 567 + .../vendor/bootstrap/js/dist/carousel.js.map | 1 + .../vendor/bootstrap/js/dist/collapse.js | 431 + .../vendor/bootstrap/js/dist/collapse.js.map | 1 + .../vendor/bootstrap/js/dist/dropdown.js | 552 + .../vendor/bootstrap/js/dist/dropdown.js.map | 1 + .../assets/vendor/bootstrap/js/dist/index.js | 23 + .../vendor/bootstrap/js/dist/index.js.map | 1 + .../assets/vendor/bootstrap/js/dist/modal.js | 634 + .../vendor/bootstrap/js/dist/modal.js.map | 1 + .../vendor/bootstrap/js/dist/popover.js | 266 + .../vendor/bootstrap/js/dist/popover.js.map | 1 + .../vendor/bootstrap/js/dist/scrollspy.js | 379 + .../vendor/bootstrap/js/dist/scrollspy.js.map | 1 + .../assets/vendor/bootstrap/js/dist/tab.js | 278 + .../vendor/bootstrap/js/dist/tab.js.map | 1 + .../vendor/bootstrap/js/dist/tooltip.js | 734 + .../vendor/bootstrap/js/dist/tooltip.js.map | 1 + .../assets/vendor/bootstrap/js/dist/util.js | 152 + .../vendor/bootstrap/js/dist/util.js.map | 1 + .../assets/vendor/bootstrap/js/src/alert.js | 183 + .../assets/vendor/bootstrap/js/src/button.js | 175 + .../vendor/bootstrap/js/src/carousel.js | 520 + .../vendor/bootstrap/js/src/collapse.js | 398 + .../vendor/bootstrap/js/src/dropdown.js | 494 + .../assets/vendor/bootstrap/js/src/index.js | 50 + .../assets/vendor/bootstrap/js/src/modal.js | 579 + .../assets/vendor/bootstrap/js/src/popover.js | 188 + .../vendor/bootstrap/js/src/scrollspy.js | 332 + .../assets/vendor/bootstrap/js/src/tab.js | 264 + .../assets/vendor/bootstrap/js/src/tooltip.js | 725 + .../assets/vendor/bootstrap/js/src/util.js | 153 + .../vendor/bootstrap/js/tests/README.md | 69 + .../vendor/bootstrap/js/tests/browsers.js | 82 + .../vendor/bootstrap/js/tests/index.html | 140 + .../js/tests/karma-browserstack.conf.js | 51 + .../bootstrap/js/tests/karma-bundle.conf.js | 53 + .../vendor/bootstrap/js/tests/karma.conf.js | 76 + .../vendor/bootstrap/js/tests/unit/alert.js | 123 + .../vendor/bootstrap/js/tests/unit/button.js | 199 + .../bootstrap/js/tests/unit/carousel.js | 944 + .../bootstrap/js/tests/unit/collapse.js | 858 + .../bootstrap/js/tests/unit/dropdown.js | 1124 + .../vendor/bootstrap/js/tests/unit/modal.js | 657 + .../vendor/bootstrap/js/tests/unit/popover.js | 471 + .../bootstrap/js/tests/unit/scrollspy.js | 728 + .../vendor/bootstrap/js/tests/unit/tab.js | 417 + .../vendor/bootstrap/js/tests/unit/tooltip.js | 969 + .../vendor/bootstrap/js/tests/unit/util.js | 104 + .../bootstrap/js/tests/visual/alert.html | 58 + .../bootstrap/js/tests/visual/button.html | 51 + .../bootstrap/js/tests/visual/carousel.html | 66 + .../bootstrap/js/tests/visual/collapse.html | 78 + .../bootstrap/js/tests/visual/dropdown.html | 212 + .../bootstrap/js/tests/visual/modal.html | 268 + .../bootstrap/js/tests/visual/popover.html | 46 + .../bootstrap/js/tests/visual/scrollspy.html | 95 + .../vendor/bootstrap/js/tests/visual/tab.html | 234 + .../bootstrap/js/tests/visual/tooltip.html | 80 + .../assets/vendor/bootstrap/nuget/MyGet.ps1 | 18 + .../vendor/bootstrap/nuget/bootstrap.nuspec | 33 + .../bootstrap/nuget/bootstrap.sass.nuspec | 33 + .../assets/vendor/bootstrap/package-lock.json | 12163 +++++ .../docsy/assets/vendor/bootstrap/package.js | 19 + .../assets/vendor/bootstrap/package.json | 217 + .../docsy/assets/vendor/bootstrap/sache.json | 5 + .../assets/vendor/bootstrap/scss/_alert.scss | 51 + .../assets/vendor/bootstrap/scss/_badge.scss | 53 + .../vendor/bootstrap/scss/_breadcrumb.scss | 41 + .../vendor/bootstrap/scss/_button-group.scss | 172 + .../vendor/bootstrap/scss/_buttons.scss | 145 + .../assets/vendor/bootstrap/scss/_card.scss | 301 + .../vendor/bootstrap/scss/_carousel.scss | 222 + .../assets/vendor/bootstrap/scss/_close.scss | 35 + .../assets/vendor/bootstrap/scss/_code.scss | 48 + .../vendor/bootstrap/scss/_custom-forms.scss | 454 + .../vendor/bootstrap/scss/_dropdown.scss | 166 + .../assets/vendor/bootstrap/scss/_forms.scss | 333 + .../vendor/bootstrap/scss/_functions.scss | 86 + .../assets/vendor/bootstrap/scss/_grid.scss | 52 + .../assets/vendor/bootstrap/scss/_images.scss | 42 + .../vendor/bootstrap/scss/_input-group.scss | 173 + .../vendor/bootstrap/scss/_jumbotron.scss | 16 + .../vendor/bootstrap/scss/_list-group.scss | 115 + .../assets/vendor/bootstrap/scss/_media.scss | 8 + .../assets/vendor/bootstrap/scss/_mixins.scss | 41 + .../assets/vendor/bootstrap/scss/_modal.scss | 183 + .../assets/vendor/bootstrap/scss/_nav.scss | 118 + .../assets/vendor/bootstrap/scss/_navbar.scss | 299 + .../vendor/bootstrap/scss/_pagination.scss | 78 + .../vendor/bootstrap/scss/_popover.scss | 183 + .../assets/vendor/bootstrap/scss/_print.scss | 141 + .../vendor/bootstrap/scss/_progress.scss | 34 + .../assets/vendor/bootstrap/scss/_reboot.scss | 482 + .../assets/vendor/bootstrap/scss/_root.scss | 19 + .../assets/vendor/bootstrap/scss/_tables.scss | 187 + .../vendor/bootstrap/scss/_tooltip.scss | 115 + .../vendor/bootstrap/scss/_transitions.scss | 22 + .../assets/vendor/bootstrap/scss/_type.scss | 125 + .../vendor/bootstrap/scss/_utilities.scss | 15 + .../vendor/bootstrap/scss/_variables.scss | 973 + .../vendor/bootstrap/scss/bootstrap-grid.scss | 33 + .../bootstrap/scss/bootstrap-reboot.scss | 12 + .../vendor/bootstrap/scss/bootstrap.scss | 42 + .../vendor/bootstrap/scss/mixins/_alert.scss | 13 + .../scss/mixins/_background-variant.scss | 21 + .../vendor/bootstrap/scss/mixins/_badge.scss | 11 + .../bootstrap/scss/mixins/_border-radius.scss | 35 + .../bootstrap/scss/mixins/_box-shadow.scss | 5 + .../bootstrap/scss/mixins/_breakpoints.scss | 123 + .../bootstrap/scss/mixins/_buttons.scss | 107 + .../vendor/bootstrap/scss/mixins/_caret.scss | 66 + .../bootstrap/scss/mixins/_clearfix.scss | 7 + .../vendor/bootstrap/scss/mixins/_float.scss | 11 + .../vendor/bootstrap/scss/mixins/_forms.scss | 198 + .../bootstrap/scss/mixins/_gradients.scss | 45 + .../scss/mixins/_grid-framework.scss | 66 + .../vendor/bootstrap/scss/mixins/_grid.scss | 51 + .../vendor/bootstrap/scss/mixins/_hover.scss | 37 + .../vendor/bootstrap/scss/mixins/_image.scss | 36 + .../bootstrap/scss/mixins/_list-group.scss | 21 + .../vendor/bootstrap/scss/mixins/_lists.scss | 7 + .../bootstrap/scss/mixins/_nav-divider.scss | 10 + .../bootstrap/scss/mixins/_pagination.scss | 22 + .../bootstrap/scss/mixins/_reset-text.scss | 17 + .../vendor/bootstrap/scss/mixins/_resize.scss | 6 + .../bootstrap/scss/mixins/_screen-reader.scss | 33 + .../vendor/bootstrap/scss/mixins/_size.scss | 6 + .../bootstrap/scss/mixins/_table-row.scss | 30 + .../bootstrap/scss/mixins/_text-emphasis.scss | 14 + .../bootstrap/scss/mixins/_text-hide.scss | 13 + .../bootstrap/scss/mixins/_text-truncate.scss | 8 + .../bootstrap/scss/mixins/_transition.scss | 13 + .../bootstrap/scss/mixins/_visibility.scss | 7 + .../bootstrap/scss/utilities/_align.scss | 8 + .../bootstrap/scss/utilities/_background.scss | 19 + .../bootstrap/scss/utilities/_borders.scss | 59 + .../bootstrap/scss/utilities/_clearfix.scss | 3 + .../bootstrap/scss/utilities/_display.scss | 38 + .../bootstrap/scss/utilities/_embed.scss | 52 + .../bootstrap/scss/utilities/_flex.scss | 51 + .../bootstrap/scss/utilities/_float.scss | 9 + .../bootstrap/scss/utilities/_position.scss | 37 + .../scss/utilities/_screenreaders.scss | 11 + .../bootstrap/scss/utilities/_shadows.scss | 6 + .../bootstrap/scss/utilities/_sizing.scss | 12 + .../bootstrap/scss/utilities/_spacing.scss | 73 + .../bootstrap/scss/utilities/_text.scss | 66 + .../bootstrap/scss/utilities/_visibility.scss | 11 + .../bootstrap/site/_data/breakpoints.yml | 29 + .../bootstrap/site/_data/browser-bugs.yml | 451 + .../bootstrap/site/_data/browser-features.yml | 139 + .../vendor/bootstrap/site/_data/colors.yml | 26 + .../bootstrap/site/_data/docs-versions.yml | 41 + .../vendor/bootstrap/site/_data/examples.yml | 55 + .../vendor/bootstrap/site/_data/grays.yml | 18 + .../vendor/bootstrap/site/_data/nav.yml | 86 + .../bootstrap/site/_data/theme-colors.yml | 16 + .../bootstrap/site/_data/translations.yml | 19 + .../vendor/bootstrap/site/_includes/ads.html | 1 + .../bootstrap/site/_includes/bugify.html | 42 + .../_includes/callout-danger-async-methods.md | 8 + .../callout-info-mediaqueries-breakpoints.md | 4 + ...ut-warning-color-assistive-technologies.md | 6 + .../bootstrap/site/_includes/callout.html | 9 + .../bootstrap/site/_includes/docs-navbar.html | 64 + .../site/_includes/docs-sidebar.html | 57 + .../bootstrap/site/_includes/example.html | 23 + .../bootstrap/site/_includes/favicons.html | 9 + .../bootstrap/site/_includes/footer.html | 12 + .../bootstrap/site/_includes/header.html | 37 + .../site/_includes/icons/bootstrap.svg | 1 + .../site/_includes/icons/download.svg | 1 + .../bootstrap/site/_includes/icons/github.svg | 1 + .../bootstrap/site/_includes/icons/import.svg | 1 + .../site/_includes/icons/lightning.svg | 1 + .../bootstrap/site/_includes/icons/menu.svg | 1 + .../bootstrap/site/_includes/icons/slack.svg | 1 + .../site/_includes/icons/twitter.svg | 1 + .../bootstrap/site/_includes/scripts.html | 26 + .../bootstrap/site/_includes/skippy.html | 5 + .../bootstrap/site/_includes/social.html | 18 + .../bootstrap/site/_layouts/default.html | 22 + .../vendor/bootstrap/site/_layouts/docs.html | 34 + .../bootstrap/site/_layouts/examples.html | 16 + .../vendor/bootstrap/site/_layouts/home.html | 16 + .../bootstrap/site/_layouts/simple.html | 5 + .../bootstrap/site/docs/4.1/about/brand.md | 78 + .../bootstrap/site/docs/4.1/about/license.md | 34 + .../bootstrap/site/docs/4.1/about/overview.md | 28 + .../site/docs/4.1/about/translations.md | 18 + .../4.1/assets/brand/bootstrap-outline.svg | 4 + .../4.1/assets/brand/bootstrap-punchout.svg | 4 + .../assets/brand/bootstrap-social-logo.png | Bin 0 -> 23959 bytes .../4.1/assets/brand/bootstrap-social.png | Bin 0 -> 231733 bytes .../docs/4.1/assets/brand/bootstrap-solid.svg | 4 + .../site/docs/4.1/assets/css/docs.min.css | 8 + .../site/docs/4.1/assets/css/docs.min.css.map | 1 + .../docs/4.1/assets/img/bootstrap-stack.png | Bin 0 -> 52160 bytes .../docs/4.1/assets/img/bootstrap-themes.png | Bin 0 -> 80588 bytes .../img/favicons/android-chrome-192x192.png | Bin 0 -> 1935 bytes .../img/favicons/android-chrome-512x512.png | Bin 0 -> 4269 bytes .../assets/img/favicons/apple-touch-icon.png | Bin 0 -> 1738 bytes .../4.1/assets/img/favicons/browserconfig.xml | 11 + .../4.1/assets/img/favicons/favicon-16x16.png | Bin 0 -> 310 bytes .../4.1/assets/img/favicons/favicon-32x32.png | Bin 0 -> 491 bytes .../4.1/assets/img/favicons/manifest.json | 22 + .../assets/img/favicons/mstile-144x144.png | Bin 0 -> 1479 bytes .../assets/img/favicons/mstile-150x150.png | Bin 0 -> 1428 bytes .../assets/img/favicons/mstile-310x150.png | Bin 0 -> 1746 bytes .../assets/img/favicons/mstile-310x310.png | Bin 0 -> 3085 bytes .../4.1/assets/img/favicons/mstile-70x70.png | Bin 0 -> 1104 bytes .../assets/img/favicons/safari-pinned-tab.svg | 4 + .../site/docs/4.1/assets/js/docs.min.js | 28 + .../docs/4.1/assets/js/src/application.js | 112 + .../js/src/ie-emulation-modes-warning.js | 47 + .../site/docs/4.1/assets/js/src/pwa.js | 21 + .../site/docs/4.1/assets/js/src/search.js | 42 + .../docs/4.1/assets/js/vendor/anchor.min.js | 6 + .../4.1/assets/js/vendor/clipboard.min.js | 7 + .../docs/4.1/assets/js/vendor/holder.min.js | 13 + .../4.1/assets/js/vendor/jquery-slim.min.js | 2 + .../docs/4.1/assets/js/vendor/popper.min.js | 5 + .../site/docs/4.1/assets/scss/_ads.scss | 38 + .../site/docs/4.1/assets/scss/_algolia.scss | 155 + .../site/docs/4.1/assets/scss/_anchor.scss | 10 + .../site/docs/4.1/assets/scss/_brand.scss | 110 + .../docs/4.1/assets/scss/_browser-bugs.scss | 12 + .../site/docs/4.1/assets/scss/_buttons.scss | 37 + .../site/docs/4.1/assets/scss/_callouts.scss | 40 + .../docs/4.1/assets/scss/_clipboard-js.scss | 39 + .../site/docs/4.1/assets/scss/_colors.scss | 24 + .../4.1/assets/scss/_component-examples.scss | 411 + .../site/docs/4.1/assets/scss/_content.scss | 119 + .../site/docs/4.1/assets/scss/_examples.scss | 24 + .../site/docs/4.1/assets/scss/_footer.scss | 40 + .../site/docs/4.1/assets/scss/_masthead.scss | 56 + .../site/docs/4.1/assets/scss/_nav.scss | 76 + .../site/docs/4.1/assets/scss/_sidebar.scss | 166 + .../site/docs/4.1/assets/scss/_skiplink.scss | 14 + .../site/docs/4.1/assets/scss/_syntax.scss | 78 + .../site/docs/4.1/assets/scss/_variables.scss | 9 + .../site/docs/4.1/assets/scss/docs.scss | 52 + .../bootstrap/site/docs/4.1/browser-bugs.md | 64 + .../site/docs/4.1/components/alerts.md | 115 + .../site/docs/4.1/components/badge.md | 82 + .../site/docs/4.1/components/breadcrumb.md | 58 + .../site/docs/4.1/components/button-group.md | 207 + .../site/docs/4.1/components/buttons.md | 164 + .../site/docs/4.1/components/card.md | 682 + .../site/docs/4.1/components/carousel.md | 334 + .../site/docs/4.1/components/collapse.md | 249 + .../site/docs/4.1/components/dropdowns.md | 861 + .../site/docs/4.1/components/forms.md | 1309 + .../site/docs/4.1/components/input-group.md | 361 + .../site/docs/4.1/components/jumbotron.md | 31 + .../site/docs/4.1/components/list-group.md | 377 + .../site/docs/4.1/components/modal.md | 744 + .../site/docs/4.1/components/navbar.md | 579 + .../site/docs/4.1/components/navs.md | 658 + .../site/docs/4.1/components/pagination.md | 170 + .../site/docs/4.1/components/popovers.md | 353 + .../site/docs/4.1/components/progress.md | 146 + .../site/docs/4.1/components/scrollspy.md | 333 + .../site/docs/4.1/components/tooltips.md | 354 + .../bootstrap/site/docs/4.1/content/code.md | 55 + .../site/docs/4.1/content/figures.md | 28 + .../bootstrap/site/docs/4.1/content/images.md | 84 + .../bootstrap/site/docs/4.1/content/reboot.md | 364 + .../bootstrap/site/docs/4.1/content/tables.md | 831 + .../site/docs/4.1/content/typography.md | 331 + .../site/docs/4.1/examples/album/album.css | 37 + .../site/docs/4.1/examples/album/index.html | 232 + .../site/docs/4.1/examples/blog/blog.css | 125 + .../site/docs/4.1/examples/blog/index.html | 231 + .../docs/4.1/examples/carousel/carousel.css | 91 + .../docs/4.1/examples/carousel/index.html | 188 + .../4.1/examples/checkout/form-validation.css | 5 + .../docs/4.1/examples/checkout/index.html | 268 + .../site/docs/4.1/examples/cover/cover.css | 106 + .../site/docs/4.1/examples/cover/index.html | 57 + .../docs/4.1/examples/dashboard/dashboard.css | 100 + .../docs/4.1/examples/dashboard/index.html | 303 + .../floating-labels/floating-labels.css | 106 + .../4.1/examples/floating-labels/index.html | 46 + .../site/docs/4.1/examples/grid/grid.css | 27 + .../site/docs/4.1/examples/grid/index.html | 135 + .../site/docs/4.1/examples/index.html | 22 + .../docs/4.1/examples/jumbotron/index.html | 103 + .../docs/4.1/examples/jumbotron/jumbotron.css | 4 + .../4.1/examples/navbar-bottom/index.html | 60 + .../docs/4.1/examples/navbar-fixed/index.html | 61 + .../navbar-fixed/navbar-top-fixed.css | 5 + .../4.1/examples/navbar-static/index.html | 61 + .../4.1/examples/navbar-static/navbar-top.css | 4 + .../site/docs/4.1/examples/navbars/index.html | 347 + .../site/docs/4.1/examples/navbars/navbar.css | 7 + .../docs/4.1/examples/offcanvas/index.html | 159 + .../docs/4.1/examples/offcanvas/offcanvas.css | 75 + .../docs/4.1/examples/offcanvas/offcanvas.js | 7 + .../site/docs/4.1/examples/pricing/index.html | 142 + .../docs/4.1/examples/pricing/pricing.css | 20 + .../site/docs/4.1/examples/product/index.html | 178 + .../docs/4.1/examples/product/product.css | 74 + .../docs/4.1/examples/screenshots/album.png | Bin 0 -> 26370 bytes .../docs/4.1/examples/screenshots/blog.png | Bin 0 -> 36944 bytes .../4.1/examples/screenshots/carousel.png | Bin 0 -> 31465 bytes .../4.1/examples/screenshots/checkout.png | Bin 0 -> 28180 bytes .../docs/4.1/examples/screenshots/cover.png | Bin 0 -> 17953 bytes .../4.1/examples/screenshots/dashboard.png | Bin 0 -> 26556 bytes .../examples/screenshots/floating-labels.png | Bin 0 -> 11053 bytes .../docs/4.1/examples/screenshots/grid.png | Bin 0 -> 33860 bytes .../4.1/examples/screenshots/jumbotron.png | Bin 0 -> 38408 bytes .../examples/screenshots/navbar-bottom.png | Bin 0 -> 11316 bytes .../4.1/examples/screenshots/navbar-fixed.png | Bin 0 -> 13616 bytes .../examples/screenshots/navbar-static.png | Bin 0 -> 14893 bytes .../docs/4.1/examples/screenshots/navbars.png | Bin 0 -> 27187 bytes .../4.1/examples/screenshots/offcanvas.png | Bin 0 -> 23975 bytes .../docs/4.1/examples/screenshots/pricing.png | Bin 0 -> 29128 bytes .../docs/4.1/examples/screenshots/product.png | Bin 0 -> 27953 bytes .../docs/4.1/examples/screenshots/sign-in.png | Bin 0 -> 5680 bytes .../examples/screenshots/starter-template.png | Bin 0 -> 11334 bytes .../screenshots/sticky-footer-navbar.png | Bin 0 -> 15836 bytes .../examples/screenshots/sticky-footer.png | Bin 0 -> 9665 bytes .../site/docs/4.1/examples/sign-in/index.html | 36 + .../site/docs/4.1/examples/sign-in/signin.css | 44 + .../4.1/examples/starter-template/index.html | 71 + .../starter-template/starter-template.css | 7 + .../examples/sticky-footer-navbar/index.html | 71 + .../sticky-footer-navbar.css | 20 + .../4.1/examples/sticky-footer/index.html | 36 + .../examples/sticky-footer/sticky-footer.css | 13 + .../4.1/examples/tooltip-viewport/index.html | 45 + .../tooltip-viewport/tooltip-viewport.css | 26 + .../tooltip-viewport/tooltip-viewport.js | 32 + .../site/docs/4.1/extend/approach.md | 76 + .../bootstrap/site/docs/4.1/extend/icons.md | 29 + .../bootstrap/site/docs/4.1/extend/index.md | 6 + .../docs/4.1/getting-started/accessibility.md | 57 + .../4.1/getting-started/best-practices.md | 21 + .../4.1/getting-started/browsers-devices.md | 194 + .../docs/4.1/getting-started/build-tools.md | 57 + .../site/docs/4.1/getting-started/contents.md | 138 + .../site/docs/4.1/getting-started/download.md | 100 + .../docs/4.1/getting-started/introduction.md | 145 + .../docs/4.1/getting-started/javascript.md | 138 + .../site/docs/4.1/getting-started/theming.md | 443 + .../site/docs/4.1/getting-started/webpack.md | 94 + .../bootstrap/site/docs/4.1/layout/grid.md | 804 + .../site/docs/4.1/layout/media-object.md | 144 + .../site/docs/4.1/layout/overview.md | 189 + .../docs/4.1/layout/utilities-for-layout.md | 25 + .../bootstrap/site/docs/4.1/migration.md | 336 + .../site/docs/4.1/utilities/borders.md | 75 + .../site/docs/4.1/utilities/clearfix.md | 39 + .../site/docs/4.1/utilities/close-icon.md | 16 + .../site/docs/4.1/utilities/colors.md | 61 + .../site/docs/4.1/utilities/display.md | 100 + .../site/docs/4.1/utilities/embed.md | 50 + .../bootstrap/site/docs/4.1/utilities/flex.md | 570 + .../site/docs/4.1/utilities/float.md | 57 + .../docs/4.1/utilities/image-replacement.md | 33 + .../site/docs/4.1/utilities/position.md | 45 + .../site/docs/4.1/utilities/screenreaders.md | 26 + .../site/docs/4.1/utilities/shadows.md | 19 + .../site/docs/4.1/utilities/sizing.md | 43 + .../site/docs/4.1/utilities/spacing.md | 105 + .../bootstrap/site/docs/4.1/utilities/text.md | 103 + .../site/docs/4.1/utilities/vertical-align.md | 40 + .../site/docs/4.1/utilities/visibility.md | 33 + .../vendor/bootstrap/site/docs/versions.html | 38 + .../assets/vendor/bootstrap/site/favicon.ico | Bin 0 -> 5430 bytes .../assets/vendor/bootstrap/site/index.html | 83 + .../assets/vendor/bootstrap/site/robots.txt | 9 + .../docsy/assets/vendor/bootstrap/site/sw.js | 5 + site/themes/docsy/config.toml | 13 + site/themes/docsy/i18n/en.toml | 41 + site/themes/docsy/i18n/no.toml | 41 + .../themes/docsy/layouts/_default/baseof.html | 18 + .../docsy/layouts/_default/content.html | 9 + site/themes/docsy/layouts/_default/list.html | 5 + .../docsy/layouts/_default/list.rss.xml | 48 + .../themes/docsy/layouts/_default/search.html | 22 + .../themes/docsy/layouts/_default/single.html | 5 + site/themes/docsy/layouts/blog/baseof.html | 34 + site/themes/docsy/layouts/blog/content.html | 10 + site/themes/docsy/layouts/blog/list.html | 36 + site/themes/docsy/layouts/blog/single.html | 3 + site/themes/docsy/layouts/community/list.html | 19 + site/themes/docsy/layouts/docs/baseof.html | 30 + site/themes/docsy/layouts/docs/list.html | 3 + site/themes/docsy/layouts/docs/single.html | 3 + site/themes/docsy/layouts/home.html | 5 + .../docsy/layouts/partials/breadcrumb.html | 18 + .../layouts/partials/community_links.html | 29 + .../docsy/layouts/partials/favicons.html | 12 + .../layouts/partials/featured-image.html | 14 + .../docsy/layouts/partials/feedback.html | 57 + .../themes/docsy/layouts/partials/footer.html | 37 + .../docsy/layouts/partials/head-css.html | 11 + site/themes/docsy/layouts/partials/head.html | 26 + .../layouts/partials/hooks/body-end.html | 0 .../layouts/partials/hooks/head-end.html | 0 .../partials/navbar-lang-selector.html | 10 + .../themes/docsy/layouts/partials/navbar.html | 26 + .../layouts/partials/page-meta-lastmod.html | 1 + .../layouts/partials/page-meta-links.html | 11 + site/themes/docsy/layouts/partials/pager.html | 11 + .../docsy/layouts/partials/scripts.html | 13 + .../docsy/layouts/partials/search-input.html | 3 + .../docsy/layouts/partials/sidebar-tree.html | 45 + .../docsy/layouts/partials/sidebar.html | 14 + site/themes/docsy/layouts/partials/toc.html | 8 + .../docsy/layouts/shortcodes/alert.html | 5 + .../layouts/shortcodes/blocks/cover.html | 37 + .../layouts/shortcodes/blocks/feature.html | 9 + .../docsy/layouts/shortcodes/blocks/lead.html | 11 + .../layouts/shortcodes/blocks/link-down.html | 7 + .../layouts/shortcodes/blocks/section.html | 10 + .../docsy/layouts/shortcodes/imgproc.html | 21 + site/themes/docsy/postcss.config.js | 32 + .../docsy/static/favicons/android-144x144.png | Bin 0 -> 3787 bytes .../docsy/static/favicons/android-192x192.png | Bin 0 -> 5841 bytes .../docsy/static/favicons/android-36x36.png | Bin 0 -> 854 bytes .../docsy/static/favicons/android-48x48.png | Bin 0 -> 1254 bytes .../docsy/static/favicons/android-72x72.png | Bin 0 -> 1713 bytes .../docsy/static/favicons/android-96x196.png | Bin 0 -> 2611 bytes .../favicons/apple-touch-icon-180x180.png | Bin 0 -> 5296 bytes .../docsy/static/favicons/favicon-1024.png | Bin 0 -> 48098 bytes .../docsy/static/favicons/favicon-16x16.png | Bin 0 -> 367 bytes .../docsy/static/favicons/favicon-256.png | Bin 0 -> 6884 bytes .../docsy/static/favicons/favicon-32x32.png | Bin 0 -> 719 bytes site/themes/docsy/static/favicons/favicon.ico | Bin 0 -> 1150 bytes .../docsy/static/favicons/pwa-192x192.png | Bin 0 -> 5841 bytes .../docsy/static/favicons/pwa-512x512.png | Bin 0 -> 18491 bytes .../docsy/static/favicons/tile150x150.png | Bin 0 -> 7789 bytes .../docsy/static/favicons/tile310x150.png | Bin 0 -> 11422 bytes .../docsy/static/favicons/tile310x310.png | Bin 0 -> 20871 bytes .../docsy/static/favicons/tile70x70.png | Bin 0 -> 3179 bytes .../docsy/static/webfonts/fa-brands-400.eot | Bin 0 -> 115052 bytes .../docsy/static/webfonts/fa-brands-400.svg | 1131 + .../docsy/static/webfonts/fa-brands-400.ttf | Bin 0 -> 114816 bytes .../docsy/static/webfonts/fa-brands-400.woff | Bin 0 -> 73920 bytes .../docsy/static/webfonts/fa-brands-400.woff2 | Bin 0 -> 63352 bytes .../docsy/static/webfonts/fa-regular-400.eot | Bin 0 -> 40744 bytes .../docsy/static/webfonts/fa-regular-400.svg | 471 + .../docsy/static/webfonts/fa-regular-400.ttf | Bin 0 -> 40516 bytes .../docsy/static/webfonts/fa-regular-400.woff | Bin 0 -> 18212 bytes .../static/webfonts/fa-regular-400.woff2 | Bin 0 -> 14960 bytes .../docsy/static/webfonts/fa-solid-900.eot | Bin 0 -> 160768 bytes .../docsy/static/webfonts/fa-solid-900.svg | 2235 + .../docsy/static/webfonts/fa-solid-900.ttf | Bin 0 -> 160548 bytes .../docsy/static/webfonts/fa-solid-900.woff | Bin 0 -> 76632 bytes .../docsy/static/webfonts/fa-solid-900.woff2 | Bin 0 -> 59616 bytes site/vanity.yaml | 5 + 8214 files changed, 333146 insertions(+), 1043 deletions(-) create mode 100644 agones-logo.svg create mode 100644 build/includes/website.mk delete mode 100644 docs/videos_presentations.md create mode 100644 site/.gcloudignore create mode 100644 site/.gitignore create mode 100644 site/app.yaml create mode 100644 site/assets/icons/logo.svg create mode 100644 site/assets/scss/_variables_project.scss create mode 100644 site/config.toml create mode 100644 site/content/en/_index.html create mode 100644 site/content/en/blog/_index.md create mode 100644 site/content/en/blog/news/_index.md create mode 100755 site/content/en/blog/news/new-agones-site.md create mode 100755 site/content/en/blog/releases/0.7.0.md create mode 100644 site/content/en/blog/releases/_index.md create mode 100644 site/content/en/community/_index.md create mode 100644 site/content/en/docs/Advanced/_index.md rename docs/limiting_resources.md => site/content/en/docs/Advanced/limiting-resources.md (85%) rename docs/scheduling_autoscaling.md => site/content/en/docs/Advanced/scheduling-and-autoscaling.md (79%) create mode 100644 site/content/en/docs/Contribute/_index.md create mode 100644 site/content/en/docs/Examples/_index.md create mode 100644 site/content/en/docs/Getting Started/_index.md rename docs/create_fleet.md => site/content/en/docs/Getting Started/create-fleet.md (84%) rename docs/create_fleetautoscaler.md => site/content/en/docs/Getting Started/create-fleetautoscaler.md (89%) rename docs/create_gameserver.md => site/content/en/docs/Getting Started/create-gameserver.md (84%) rename docs/create_webhook_fleetautoscaler.md => site/content/en/docs/Getting Started/create-webhook-fleetautoscaler.md (85%) rename docs/edit_first_game_server.md => site/content/en/docs/Getting Started/edit-first-gameserver-go.md (73%) rename sdks/README.md => site/content/en/docs/Guides/Client SDKs/_index.md (81%) create mode 100644 site/content/en/docs/Guides/Client SDKs/cpp.md rename docs/sdk_rest_api.md => site/content/en/docs/Guides/Client SDKs/rest.md (87%) create mode 100644 site/content/en/docs/Guides/Client SDKs/rust.md create mode 100755 site/content/en/docs/Guides/_index.md rename docs/access_api.md => site/content/en/docs/Guides/access-api.md (96%) rename docs/health_checking.md => site/content/en/docs/Guides/health-checking.md (79%) rename {docs => site/content/en/docs/Guides}/metrics.md (71%) rename docs/ping_service.md => site/content/en/docs/Guides/ping-service.md (67%) rename {docs => site/content/en/docs/Guides}/troubleshooting.md (77%) rename install/README.md => site/content/en/docs/Installation/_index.md (80%) rename {docs => site/content/en/docs/Installation}/cloud-shell.png (100%) create mode 100644 site/content/en/docs/Installation/helm.md create mode 100644 site/content/en/docs/Overview/_index.md create mode 100644 site/content/en/docs/Reference/_index.md rename docs/fleet_spec.md => site/content/en/docs/Reference/fleet.md (83%) rename docs/fleetautoscaler_spec.md => site/content/en/docs/Reference/fleetautoscaler.md (83%) rename docs/gameserver_spec.md => site/content/en/docs/Reference/gameserver.md (73%) create mode 100644 site/content/en/docs/Third Party Content/_index.md create mode 100644 site/content/en/docs/Third Party Content/videos-and-presentations.md create mode 100644 site/content/en/docs/Tutorials/_index.md rename docs/create_allocator_service.md => site/content/en/docs/Tutorials/allocator-service-go.md (89%) create mode 100755 site/content/en/docs/_index.md create mode 100644 site/content/en/featured-background.jpg create mode 100644 site/content/en/search.md create mode 100644 site/credits create mode 100644 site/handler.go create mode 100644 site/handler_test.go create mode 100644 site/layouts/partials/community_links.html create mode 100644 site/layouts/partials/favicons.html create mode 100644 site/layouts/shortcodes/feature.html create mode 100644 site/layouts/shortcodes/ghlink.html create mode 100644 site/layouts/shortcodes/pagelist.html create mode 100644 site/layouts/shortcodes/release-branch.html create mode 100644 site/layouts/shortcodes/release-version.html create mode 100644 site/layouts/shortcodes/youtube.html create mode 100644 site/main.go rename {docs => site/static/diagrams}/gameserver-states.dot (100%) rename {docs => site/static/diagrams}/gameserver-states.png (100%) create mode 100644 site/static/favicons/_head.html create mode 100644 site/static/favicons/apple-touch-icon-180x180.png create mode 100644 site/static/favicons/browserconfig.xml create mode 100644 site/static/favicons/favicon-16x16.png create mode 100644 site/static/favicons/favicon-32x32.png create mode 100644 site/static/favicons/favicon.ico create mode 100644 site/static/favicons/pwa-192x192.png create mode 100644 site/static/favicons/pwa-512x512.png create mode 100644 site/static/favicons/tile150x150.png create mode 100644 site/static/favicons/tile310x150.png create mode 100644 site/static/favicons/tile310x310.png create mode 100644 site/static/favicons/tile70x70.png rename {docs => site/static/images}/grafana-dashboard-autoscalers.png (100%) rename {docs => site/static/images}/grafana-dashboard-controller.png (100%) create mode 100644 site/themes/docsy/.gitignore create mode 100644 site/themes/docsy/CONTRIBUTING.md create mode 100644 site/themes/docsy/LICENSE create mode 100644 site/themes/docsy/README.md create mode 100644 site/themes/docsy/assets/icons/logo.svg create mode 100644 site/themes/docsy/assets/js/base.js create mode 100644 site/themes/docsy/assets/js/search.js create mode 100644 site/themes/docsy/assets/scss/_alerts.scss create mode 100644 site/themes/docsy/assets/scss/_blog.scss create mode 100644 site/themes/docsy/assets/scss/_boxes.scss create mode 100644 site/themes/docsy/assets/scss/_breadcrumb.scss create mode 100644 site/themes/docsy/assets/scss/_buttons.scss create mode 100644 site/themes/docsy/assets/scss/_code.scss create mode 100644 site/themes/docsy/assets/scss/_colors.scss create mode 100644 site/themes/docsy/assets/scss/_content.scss create mode 100644 site/themes/docsy/assets/scss/_main-container.scss create mode 100644 site/themes/docsy/assets/scss/_nav.scss create mode 100644 site/themes/docsy/assets/scss/_search.scss create mode 100644 site/themes/docsy/assets/scss/_sidebar-toc.scss create mode 100644 site/themes/docsy/assets/scss/_sidebar-tree.scss create mode 100644 site/themes/docsy/assets/scss/_variables.scss create mode 100644 site/themes/docsy/assets/scss/_variables_project.scss create mode 100644 site/themes/docsy/assets/scss/blocks/_blocks.scss create mode 100644 site/themes/docsy/assets/scss/blocks/_cover.scss create mode 100644 site/themes/docsy/assets/scss/main.scss create mode 100644 site/themes/docsy/assets/scss/support/_functions.scss create mode 100644 site/themes/docsy/assets/scss/support/_mixins.scss create mode 100644 site/themes/docsy/assets/scss/support/_utilities.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/CHANGELOG.md create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/CODE_OF_CONDUCT.md create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/CONTRIBUTING.md create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/LICENSE.txt create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/README.md create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/UPGRADING.md create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/metadata/categories.yml create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/metadata/icons.json create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/metadata/icons.yml create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/metadata/shims.json create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/metadata/shims.yml create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/metadata/sponsors.yml create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/500px.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/accessible-icon.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/accusoft.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/adn.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/adversal.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/affiliatetheme.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/algolia.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/amazon-pay.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/amazon.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/amilia.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/android.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/angellist.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/angrycreative.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/angular.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/app-store-ios.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/app-store.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/apper.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/apple-pay.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/apple.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/asymmetrik.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/audible.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/autoprefixer.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/avianex.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/aviato.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/aws.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bandcamp.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/behance-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/behance.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bimobject.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bitbucket.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bitcoin.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bity.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/black-tie.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/blackberry.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/blogger-b.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/blogger.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bluetooth-b.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bluetooth.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/btc.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/buromobelexperte.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/buysellads.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-amazon-pay.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-amex.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-apple-pay.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-diners-club.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-discover.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-jcb.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-mastercard.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-paypal.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-stripe.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-visa.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/centercode.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/chrome.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cloudscale.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cloudsmith.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cloudversify.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/codepen.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/codiepie.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/connectdevelop.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/contao.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cpanel.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-by.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-nc-eu.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-nc-jp.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-nc.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-nd.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-pd-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-pd.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-remix.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-sa.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-sampling-plus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-sampling.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-share.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/css3-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/css3.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cuttlefish.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/d-and-d.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/dashcube.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/delicious.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/deploydog.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/deskpro.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/deviantart.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/digg.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/digital-ocean.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/discord.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/discourse.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/dochub.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/docker.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/draft2digital.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/dribbble-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/dribbble.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/dropbox.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/drupal.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/dyalog.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/earlybirds.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ebay.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/edge.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/elementor.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ember.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/empire.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/envira.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/erlang.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ethereum.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/etsy.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/expeditedssl.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/facebook-f.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/facebook-messenger.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/facebook-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/facebook.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/firefox.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/first-order-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/first-order.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/firstdraft.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/flickr.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/flipboard.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/fly.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/font-awesome-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/font-awesome-flag.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/font-awesome-logo-full.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/font-awesome.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/fonticons-fi.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/fonticons.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/fort-awesome-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/fort-awesome.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/forumbee.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/foursquare.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/free-code-camp.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/freebsd.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/fulcrum.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/galactic-republic.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/galactic-senate.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/get-pocket.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gg-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gg.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/git-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/git.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/github-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/github-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/github.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gitkraken.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gitlab.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gitter.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/glide-g.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/glide.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gofore.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/goodreads-g.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/goodreads.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google-drive.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google-play.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google-plus-g.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google-plus-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google-plus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google-wallet.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gratipay.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/grav.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gripfire.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/grunt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gulp.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hacker-news-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hacker-news.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hips.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hire-a-helper.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hooli.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hornbill.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hotjar.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/houzz.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/html5.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hubspot.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/imdb.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/instagram.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/internet-explorer.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ioxhost.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/itunes-note.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/itunes.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/java.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/jedi-order.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/jenkins.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/joget.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/joomla.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/js-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/js.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/jsfiddle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/keybase.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/keycdn.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/kickstarter-k.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/kickstarter.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/korvue.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/laravel.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/lastfm-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/lastfm.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/leanpub.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/less.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/line.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/linkedin-in.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/linkedin.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/linode.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/linux.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/lyft.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/magento.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/mailchimp.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/mandalorian.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/mastodon.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/maxcdn.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/medapps.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/medium-m.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/medium.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/medrt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/meetup.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/megaport.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/microsoft.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/mix.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/mixcloud.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/mizuni.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/modx.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/monero.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/napster.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/nimblr.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/nintendo-switch.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/node-js.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/node.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/npm.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ns8.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/nutritionix.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/odnoklassniki-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/odnoklassniki.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/old-republic.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/opencart.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/openid.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/opera.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/optin-monster.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/osi.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/page4.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pagelines.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/palfed.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/patreon.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/paypal.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/periscope.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/phabricator.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/phoenix-framework.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/phoenix-squadron.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/php.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pied-piper-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pied-piper-hat.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pied-piper-pp.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pied-piper.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pinterest-p.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pinterest-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pinterest.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/playstation.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/product-hunt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pushed.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/python.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/qq.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/quinscape.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/quora.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/r-project.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/r.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ravelry.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/react.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/readme.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/rebel.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/red-river.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/reddit-alien.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/reddit-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/reddit.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/rendact.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/renren.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/replyd.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/researchgate.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/resolving.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/rev.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/rocketchat.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/rockrms.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/safari.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/sass.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/schlix.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/scribd.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/searchengin.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/sellcast.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/sellsy.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/servicestack.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/shirtsinbulk.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/shopware.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/simplybuilt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/sistrix.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/sith.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/skyatlas.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/skype.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/slack-hash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/slack.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/slideshare.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/snapchat-ghost.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/snapchat-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/snapchat.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/soundcloud.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/speakap.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/spotify.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/squarespace.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/stack-exchange.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/stack-overflow.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/staylinked.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/steam-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/steam-symbol.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/steam.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/sticker-mule.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/strava.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/stripe-s.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/stripe.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/studiovinari.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/stumbleupon-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/stumbleupon.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/superpowers.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/supple.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/teamspeak.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/telegram-plane.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/telegram.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/tencent-weibo.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/themeco.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/themeisle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/trade-federation.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/trello.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/tripadvisor.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/tumblr-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/tumblr.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/twitch.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/twitter-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/twitter.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/typo3.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/uber.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/uikit.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/uniregistry.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/untappd.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/usb.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ussunnah.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vaadin.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/viacoin.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/viadeo-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/viadeo.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/viber.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vimeo-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vimeo-v.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vimeo.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vine.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vk.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vnv.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vuejs.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/weebly.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/weibo.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/weixin.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/whatsapp-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/whatsapp.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/whmcs.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wikipedia-w.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/windows.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wix.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wolf-pack-battalion.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wordpress-simple.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wordpress.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wpbeginner.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wpexplorer.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wpforms.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/xbox.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/xing-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/xing.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/y-combinator.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/yahoo.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/yandex-international.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/yandex.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/yelp.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/yoast.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/youtube-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/youtube.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/address-book.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/address-card.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/angry.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/arrow-alt-circle-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/arrow-alt-circle-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/arrow-alt-circle-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/arrow-alt-circle-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/bell-slash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/bell.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/bookmark.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/building.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/calendar-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/calendar-check.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/calendar-minus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/calendar-plus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/calendar-times.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/calendar.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/caret-square-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/caret-square-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/caret-square-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/caret-square-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/chart-bar.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/check-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/check-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/clipboard.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/clock.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/clone.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/closed-captioning.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/comment-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/comment-dots.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/comment.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/comments.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/compass.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/copy.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/copyright.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/credit-card.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/dizzy.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/dot-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/edit.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/envelope-open.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/envelope.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/eye-slash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/eye.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-archive.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-audio.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-code.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-excel.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-image.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-pdf.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-powerpoint.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-video.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-word.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/flag.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/flushed.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/folder-open.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/folder.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/font-awesome-logo-full.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/frown-open.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/frown.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/futbol.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/gem.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grimace.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-beam-sweat.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-beam.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-hearts.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-squint-tears.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-squint.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-stars.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-tears.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-tongue-squint.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-tongue-wink.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-tongue.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-wink.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-lizard.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-paper.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-peace.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-point-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-point-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-point-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-point-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-pointer.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-rock.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-scissors.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-spock.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/handshake.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hdd.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/heart.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hospital.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hourglass.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/id-badge.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/id-card.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/image.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/images.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/keyboard.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/kiss-beam.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/kiss-wink-heart.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/kiss.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/laugh-beam.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/laugh-squint.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/laugh-wink.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/laugh.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/lemon.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/life-ring.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/lightbulb.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/list-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/map.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/meh-blank.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/meh-rolling-eyes.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/meh.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/minus-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/money-bill-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/moon.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/newspaper.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/object-group.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/object-ungroup.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/paper-plane.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/pause-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/play-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/plus-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/question-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/registered.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/sad-cry.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/sad-tear.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/save.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/share-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/smile-beam.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/smile-wink.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/smile.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/snowflake.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/star-half.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/star.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/sticky-note.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/stop-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/sun.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/surprise.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/thumbs-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/thumbs-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/times-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/tired.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/trash-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/user-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/user.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/window-close.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/window-maximize.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/window-minimize.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/window-restore.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/address-book.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/address-card.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/adjust.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/align-center.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/align-justify.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/align-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/align-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/allergies.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ambulance.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/american-sign-language-interpreting.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/anchor.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-double-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-double-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-double-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-double-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angry.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/archive.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/archway.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-alt-circle-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-alt-circle-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-alt-circle-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-alt-circle-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-circle-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-circle-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-circle-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-circle-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrows-alt-h.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrows-alt-v.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrows-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/assistive-listening-systems.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/asterisk.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/at.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/atlas.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/audio-description.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/award.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/backspace.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/backward.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/balance-scale.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ban.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/band-aid.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/barcode.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bars.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/baseball-ball.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/basketball-ball.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bath.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/battery-empty.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/battery-full.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/battery-half.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/battery-quarter.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/battery-three-quarters.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bed.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/beer.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bell-slash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bell.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bezier-curve.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bicycle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/binoculars.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/birthday-cake.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/blender.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/blind.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bold.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bolt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bomb.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bong.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/book-open.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/book.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bookmark.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bowling-ball.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/box-open.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/box.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/boxes.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/braille.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/briefcase-medical.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/briefcase.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/broadcast-tower.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/broom.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/brush.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bug.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/building.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bullhorn.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bullseye.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/burn.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bus-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calculator.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calendar-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calendar-check.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calendar-minus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calendar-plus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calendar-times.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calendar.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/camera-retro.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/camera.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cannabis.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/capsules.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/car.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-square-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-square-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-square-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-square-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cart-arrow-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cart-plus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/certificate.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chalkboard-teacher.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chalkboard.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chart-area.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chart-bar.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chart-line.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chart-pie.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/check-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/check-double.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/check-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/check.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-bishop.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-board.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-king.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-knight.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-pawn.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-queen.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-rook.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-circle-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-circle-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-circle-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-circle-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/child.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/church.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/circle-notch.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/clipboard-check.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/clipboard-list.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/clipboard.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/clock.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/clone.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/closed-captioning.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cloud-download-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cloud-upload-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cloud.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cocktail.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/code-branch.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/code.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/coffee.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cog.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cogs.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/coins.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/columns.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/comment-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/comment-dots.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/comment-slash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/comment.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/comments.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/compact-disc.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/compass.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/compress.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/concierge-bell.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cookie-bite.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cookie.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/copy.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/copyright.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/couch.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/credit-card.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/crop-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/crop.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/crosshairs.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/crow.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/crown.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cube.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cubes.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cut.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/database.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/deaf.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/desktop.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/diagnoses.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice-five.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice-four.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice-one.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice-six.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice-three.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice-two.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/digital-tachograph.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/divide.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dizzy.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dna.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dollar-sign.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dolly-flatbed.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dolly.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/donate.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/door-closed.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/door-open.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dot-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dove.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/download.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/drafting-compass.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/drum-steelpan.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/drum.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dumbbell.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/edit.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/eject.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ellipsis-h.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ellipsis-v.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/envelope-open.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/envelope-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/envelope.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/equals.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/eraser.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/euro-sign.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/exchange-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/exclamation-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/exclamation-triangle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/exclamation.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/expand-arrows-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/expand.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/external-link-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/external-link-square-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/eye-dropper.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/eye-slash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/eye.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fast-backward.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fast-forward.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fax.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/feather-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/feather.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/female.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fighter-jet.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-archive.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-audio.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-code.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-contract.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-download.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-excel.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-export.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-image.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-import.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-invoice-dollar.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-invoice.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-medical-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-medical.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-pdf.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-powerpoint.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-prescription.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-signature.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-upload.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-video.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-word.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fill-drip.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fill.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/film.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/filter.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fingerprint.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fire-extinguisher.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fire.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/first-aid.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fish.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/flag-checkered.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/flag.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/flask.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/flushed.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/folder-open.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/folder.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/font-awesome-logo-full.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/font.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/football-ball.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/forward.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/frog.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/frown-open.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/frown.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/futbol.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/gamepad.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/gas-pump.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/gavel.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/gem.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/genderless.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/gift.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/glass-martini-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/glass-martini.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/glasses.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/globe-africa.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/globe-americas.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/globe-asia.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/globe.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/golf-ball.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/graduation-cap.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/greater-than-equal.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/greater-than.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grimace.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-beam-sweat.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-beam.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-hearts.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-squint-tears.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-squint.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-stars.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-tears.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-tongue-squint.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-tongue-wink.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-tongue.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-wink.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grip-horizontal.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grip-vertical.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/h-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-holding-heart.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-holding-usd.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-holding.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-lizard.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-paper.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-peace.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-point-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-point-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-point-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-point-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-pointer.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-rock.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-scissors.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-spock.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hands-helping.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hands.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/handshake.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hashtag.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hdd.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/heading.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/headphones-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/headphones.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/headset.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/heart.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/heartbeat.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/helicopter.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/highlighter.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/history.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hockey-puck.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/home.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hospital-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hospital-symbol.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hospital.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hot-tub.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hotel.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hourglass-end.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hourglass-half.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hourglass-start.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hourglass.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/i-cursor.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/id-badge.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/id-card-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/id-card.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/image.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/images.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/inbox.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/indent.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/industry.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/infinity.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/info-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/info.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/italic.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/joint.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/key.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/keyboard.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/kiss-beam.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/kiss-wink-heart.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/kiss.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/kiwi-bird.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/language.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/laptop.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/laugh-beam.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/laugh-squint.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/laugh-wink.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/laugh.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/leaf.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/lemon.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/less-than-equal.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/less-than.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/level-down-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/level-up-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/life-ring.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/lightbulb.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/link.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/lira-sign.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/list-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/list-ol.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/list-ul.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/list.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/location-arrow.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/lock-open.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/lock.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/long-arrow-alt-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/long-arrow-alt-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/long-arrow-alt-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/long-arrow-alt-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/low-vision.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/luggage-cart.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/magic.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/magnet.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/male.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map-marked-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map-marked.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map-marker-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map-marker.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map-pin.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map-signs.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/marker.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mars-double.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mars-stroke-h.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mars-stroke-v.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mars-stroke.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mars.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/medal.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/medkit.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/meh-blank.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/meh-rolling-eyes.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/meh.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/memory.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mercury.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/microchip.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/microphone-alt-slash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/microphone-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/microphone-slash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/microphone.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/minus-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/minus-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/minus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mobile-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mobile.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/money-bill-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/money-bill-wave-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/money-bill-wave.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/money-bill.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/money-check-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/money-check.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/monument.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/moon.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mortar-pestle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/motorcycle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mouse-pointer.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/music.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/neuter.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/newspaper.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/not-equal.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/notes-medical.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/object-group.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/object-ungroup.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/outdent.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paint-brush.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paint-roller.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/palette.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pallet.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paper-plane.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paperclip.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/parachute-box.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paragraph.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/parking.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/passport.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paste.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pause-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pause.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paw.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pen-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pen-fancy.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pen-nib.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pen-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pen.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pencil-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pencil-ruler.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/people-carry.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/percent.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/percentage.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/phone-slash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/phone-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/phone-volume.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/phone.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/piggy-bank.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pills.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plane-arrival.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plane-departure.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plane.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/play-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/play.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plug.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plus-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plus-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/podcast.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/poo.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/portrait.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pound-sign.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/power-off.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/prescription-bottle-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/prescription-bottle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/prescription.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/print.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/procedures.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/project-diagram.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/puzzle-piece.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/qrcode.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/question-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/question.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/quidditch.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/quote-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/quote-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/random.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/receipt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/recycle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/redo-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/redo.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/registered.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/reply-all.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/reply.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/retweet.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ribbon.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/road.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/robot.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/rocket.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/rss-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/rss.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ruble-sign.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ruler-combined.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ruler-horizontal.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ruler-vertical.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ruler.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/rupee-sign.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sad-cry.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sad-tear.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/save.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/school.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/screwdriver.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/search-minus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/search-plus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/search.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/seedling.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/server.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/share-alt-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/share-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/share-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/share.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shekel-sign.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shield-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ship.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shipping-fast.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shoe-prints.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shopping-bag.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shopping-basket.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shopping-cart.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shower.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shuttle-van.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sign-in-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sign-language.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sign-out-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sign.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/signal.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/signature.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sitemap.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/skull.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sliders-h.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/smile-beam.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/smile-wink.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/smile.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/smoking-ban.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/smoking.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/snowflake.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/solar-panel.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-alpha-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-alpha-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-amount-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-amount-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-numeric-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-numeric-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/spa.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/space-shuttle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/spinner.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/splotch.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/spray-can.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/square-full.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stamp.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/star-half-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/star-half.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/star.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/step-backward.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/step-forward.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stethoscope.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sticky-note.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stop-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stop.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stopwatch.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/store-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/store.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stream.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/street-view.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/strikethrough.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stroopwafel.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/subscript.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/subway.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/suitcase-rolling.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/suitcase.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sun.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/superscript.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/surprise.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/swatchbook.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/swimmer.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/swimming-pool.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sync-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sync.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/syringe.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/table-tennis.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/table.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tablet-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tablet.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tablets.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tachometer-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tag.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tags.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tape.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tasks.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/taxi.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/terminal.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/text-height.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/text-width.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/th-large.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/th-list.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/th.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thermometer-empty.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thermometer-full.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thermometer-half.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thermometer-quarter.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thermometer-three-quarters.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thermometer.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thumbs-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thumbs-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thumbtack.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ticket-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/times-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/times.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tint-slash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tint.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tired.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/toggle-off.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/toggle-on.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/toolbox.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tooth.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/trademark.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/train.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/transgender-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/transgender.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/trash-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/trash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tree.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/trophy.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/truck-loading.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/truck-moving.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/truck.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tshirt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tty.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tv.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/umbrella-beach.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/umbrella.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/underline.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/undo-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/undo.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/universal-access.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/university.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/unlink.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/unlock-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/unlock.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/upload.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-alt-slash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-astronaut.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-check.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-clock.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-cog.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-edit.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-friends.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-graduate.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-lock.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-md.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-minus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-ninja.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-plus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-secret.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-shield.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-slash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-tag.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-tie.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-times.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/users-cog.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/users.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/utensil-spoon.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/utensils.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/vector-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/venus-double.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/venus-mars.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/venus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/vial.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/vials.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/video-slash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/video.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/volleyball-ball.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/volume-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/volume-off.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/volume-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/walking.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/wallet.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/warehouse.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/weight-hanging.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/weight.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/wheelchair.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/wifi.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/window-close.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/window-maximize.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/window-minimize.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/window-restore.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/wine-glass-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/wine-glass.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/won-sign.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/wrench.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/x-ray.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/yen-sign.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/svg-sprites/fa-brands.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/svg-sprites/fa-regular.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/svg-sprites/fa-solid.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-common-types/LICENSE.txt create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-common-types/README.md create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-common-types/index.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-common-types/package.json create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/LICENSE.txt create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/README.md create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/fa500px.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/fa500px.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAccessibleIcon.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAccessibleIcon.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAccusoft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAccusoft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAdn.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAdn.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAdversal.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAdversal.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAffiliatetheme.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAffiliatetheme.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAlgolia.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAlgolia.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAmazon.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAmazon.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAmazonPay.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAmazonPay.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAmilia.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAmilia.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAndroid.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAndroid.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAngellist.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAngellist.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAngrycreative.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAngrycreative.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAngular.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAngular.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAppStore.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAppStore.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAppStoreIos.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAppStoreIos.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faApper.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faApper.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faApple.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faApple.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faApplePay.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faApplePay.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAsymmetrik.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAsymmetrik.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAudible.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAudible.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAutoprefixer.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAutoprefixer.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAvianex.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAvianex.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAviato.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAviato.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAws.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAws.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBandcamp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBandcamp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBehance.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBehance.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBehanceSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBehanceSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBimobject.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBimobject.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBitbucket.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBitbucket.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBitcoin.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBitcoin.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBity.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBity.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBlackTie.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBlackTie.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBlackberry.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBlackberry.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBlogger.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBlogger.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBloggerB.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBloggerB.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBluetooth.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBluetooth.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBluetoothB.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBluetoothB.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBtc.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBtc.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBuromobelexperte.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBuromobelexperte.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBuysellads.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBuysellads.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcAmazonPay.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcAmazonPay.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcAmex.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcAmex.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcApplePay.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcApplePay.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcDinersClub.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcDinersClub.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcDiscover.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcDiscover.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcJcb.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcJcb.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcMastercard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcMastercard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcPaypal.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcPaypal.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcStripe.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcStripe.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcVisa.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcVisa.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCentercode.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCentercode.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faChrome.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faChrome.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCloudscale.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCloudscale.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCloudsmith.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCloudsmith.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCloudversify.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCloudversify.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCodepen.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCodepen.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCodiepie.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCodiepie.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faConnectdevelop.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faConnectdevelop.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faContao.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faContao.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCpanel.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCpanel.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommons.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommons.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsBy.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsBy.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNc.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNc.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNcEu.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNcEu.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNcJp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNcJp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNd.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNd.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsPd.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsPd.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsPdAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsPdAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsRemix.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsRemix.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsSa.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsSa.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsSampling.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsSampling.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsSamplingPlus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsSamplingPlus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsShare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsShare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCss3.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCss3.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCss3Alt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCss3Alt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCuttlefish.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCuttlefish.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDAndD.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDAndD.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDashcube.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDashcube.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDelicious.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDelicious.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDeploydog.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDeploydog.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDeskpro.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDeskpro.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDeviantart.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDeviantart.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDigg.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDigg.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDigitalOcean.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDigitalOcean.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDiscord.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDiscord.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDiscourse.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDiscourse.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDochub.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDochub.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDocker.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDocker.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDraft2digital.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDraft2digital.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDribbble.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDribbble.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDribbbleSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDribbbleSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDropbox.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDropbox.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDrupal.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDrupal.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDyalog.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDyalog.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEarlybirds.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEarlybirds.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEbay.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEbay.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEdge.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEdge.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faElementor.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faElementor.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEmber.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEmber.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEmpire.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEmpire.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEnvira.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEnvira.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faErlang.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faErlang.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEthereum.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEthereum.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEtsy.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEtsy.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faExpeditedssl.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faExpeditedssl.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebook.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebook.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebookF.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebookF.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebookMessenger.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebookMessenger.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebookSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebookSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirefox.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirefox.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirstOrder.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirstOrder.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirstOrderAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirstOrderAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirstdraft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirstdraft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFlickr.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFlickr.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFlipboard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFlipboard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFly.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFly.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesome.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesome.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesomeAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesomeAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesomeFlag.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesomeFlag.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesomeLogoFull.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesomeLogoFull.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFonticons.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFonticons.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFonticonsFi.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFonticonsFi.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFortAwesome.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFortAwesome.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFortAwesomeAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFortAwesomeAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faForumbee.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faForumbee.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFoursquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFoursquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFreeCodeCamp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFreeCodeCamp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFreebsd.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFreebsd.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFulcrum.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFulcrum.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGalacticRepublic.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGalacticRepublic.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGalacticSenate.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGalacticSenate.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGetPocket.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGetPocket.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGg.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGg.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGgCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGgCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGit.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGit.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGithub.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGithub.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGithubAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGithubAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGithubSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGithubSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitkraken.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitkraken.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitlab.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitlab.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitter.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitter.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGlide.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGlide.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGlideG.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGlideG.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGofore.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGofore.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoodreads.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoodreads.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoodreadsG.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoodreadsG.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoogle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoogle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoogleDrive.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoogleDrive.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlay.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlay.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlusG.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlusG.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlusSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlusSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoogleWallet.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoogleWallet.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGratipay.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGratipay.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGrav.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGrav.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGripfire.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGripfire.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGrunt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGrunt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGulp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGulp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHackerNews.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHackerNews.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHackerNewsSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHackerNewsSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHips.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHips.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHireAHelper.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHireAHelper.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHooli.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHooli.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHotjar.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHotjar.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHouzz.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHouzz.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHtml5.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHtml5.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHubspot.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHubspot.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faImdb.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faImdb.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faInstagram.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faInstagram.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faInternetExplorer.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faInternetExplorer.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faIoxhost.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faIoxhost.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faItunes.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faItunes.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faItunesNote.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faItunesNote.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJava.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJava.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJediOrder.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJediOrder.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJenkins.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJenkins.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJoget.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJoget.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJoomla.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJoomla.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJs.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJs.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJsSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJsSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJsfiddle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJsfiddle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKeybase.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKeybase.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKeycdn.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKeycdn.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKickstarter.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKickstarter.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKickstarterK.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKickstarterK.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKorvue.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKorvue.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLaravel.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLaravel.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLastfm.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLastfm.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLastfmSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLastfmSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLeanpub.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLeanpub.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLess.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLess.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLine.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLine.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinkedin.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinkedin.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinkedinIn.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinkedinIn.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinode.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinode.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinux.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinux.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLyft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLyft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMagento.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMagento.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMandalorian.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMandalorian.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMastodon.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMastodon.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMaxcdn.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMaxcdn.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMedapps.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMedapps.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMedium.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMedium.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMediumM.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMediumM.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMedrt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMedrt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMeetup.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMeetup.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMicrosoft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMicrosoft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMix.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMix.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMixcloud.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMixcloud.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMizuni.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMizuni.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faModx.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faModx.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMonero.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMonero.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNapster.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNapster.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNintendoSwitch.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNintendoSwitch.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNode.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNode.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNodeJs.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNodeJs.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNpm.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNpm.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNs8.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNs8.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNutritionix.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNutritionix.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOdnoklassniki.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOdnoklassniki.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOdnoklassnikiSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOdnoklassnikiSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOldRepublic.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOldRepublic.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOpencart.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOpencart.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOpenid.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOpenid.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOpera.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOpera.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOptinMonster.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOptinMonster.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOsi.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOsi.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPage4.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPage4.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPagelines.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPagelines.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPalfed.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPalfed.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPatreon.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPatreon.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPaypal.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPaypal.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPeriscope.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPeriscope.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhabricator.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhabricator.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhoenixFramework.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhoenixFramework.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhoenixSquadron.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhoenixSquadron.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiper.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiper.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiperAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiperAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiperHat.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiperHat.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiperPp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiperPp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPinterest.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPinterest.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPinterestP.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPinterestP.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPinterestSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPinterestSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPlaystation.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPlaystation.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faProductHunt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faProductHunt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPushed.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPushed.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPython.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPython.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faQq.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faQq.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faQuinscape.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faQuinscape.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faQuora.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faQuora.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faR.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faR.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRProject.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRProject.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRavelry.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRavelry.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReact.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReact.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReadme.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReadme.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRebel.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRebel.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRedRiver.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRedRiver.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReddit.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReddit.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRedditAlien.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRedditAlien.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRedditSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRedditSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRendact.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRendact.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRenren.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRenren.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReplyd.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReplyd.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faResearchgate.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faResearchgate.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faResolving.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faResolving.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRocketchat.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRocketchat.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRockrms.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRockrms.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSafari.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSafari.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSass.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSass.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSchlix.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSchlix.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faScribd.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faScribd.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSearchengin.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSearchengin.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSellcast.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSellcast.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSellsy.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSellsy.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faServicestack.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faServicestack.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faShirtsinbulk.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faShirtsinbulk.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSimplybuilt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSimplybuilt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSistrix.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSistrix.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSith.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSith.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSkyatlas.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSkyatlas.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSkype.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSkype.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSlack.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSlack.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSlackHash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSlackHash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSlideshare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSlideshare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSnapchat.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSnapchat.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSnapchatGhost.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSnapchatGhost.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSnapchatSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSnapchatSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSoundcloud.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSoundcloud.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSpeakap.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSpeakap.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSpotify.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSpotify.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStackExchange.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStackExchange.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStackOverflow.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStackOverflow.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStaylinked.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStaylinked.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSteam.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSteam.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSteamSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSteamSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSteamSymbol.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSteamSymbol.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStickerMule.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStickerMule.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStrava.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStrava.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStripe.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStripe.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStripeS.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStripeS.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStudiovinari.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStudiovinari.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStumbleupon.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStumbleupon.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStumbleuponCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStumbleuponCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSuperpowers.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSuperpowers.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSupple.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSupple.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTeamspeak.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTeamspeak.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTelegram.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTelegram.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTelegramPlane.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTelegramPlane.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTencentWeibo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTencentWeibo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faThemeisle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faThemeisle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTradeFederation.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTradeFederation.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTrello.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTrello.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTripadvisor.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTripadvisor.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTumblr.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTumblr.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTumblrSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTumblrSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTwitch.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTwitch.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTwitter.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTwitter.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTwitterSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTwitterSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTypo3.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTypo3.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUber.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUber.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUikit.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUikit.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUniregistry.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUniregistry.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUntappd.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUntappd.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUsb.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUsb.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUssunnah.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUssunnah.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVaadin.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVaadin.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViacoin.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViacoin.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViadeo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViadeo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViadeoSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViadeoSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViber.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViber.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVimeo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVimeo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVimeoSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVimeoSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVimeoV.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVimeoV.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVine.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVine.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVk.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVk.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVnv.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVnv.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVuejs.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVuejs.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWeibo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWeibo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWeixin.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWeixin.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWhatsapp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWhatsapp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWhatsappSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWhatsappSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWhmcs.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWhmcs.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWikipediaW.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWikipediaW.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWindows.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWindows.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWolfPackBattalion.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWolfPackBattalion.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWordpress.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWordpress.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWordpressSimple.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWordpressSimple.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWpbeginner.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWpbeginner.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWpexplorer.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWpexplorer.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWpforms.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWpforms.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faXbox.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faXbox.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faXing.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faXing.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faXingSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faXingSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYCombinator.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYCombinator.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYahoo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYahoo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYandex.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYandex.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYandexInternational.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYandexInternational.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYelp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYelp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYoast.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYoast.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYoutube.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYoutube.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYoutubeSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYoutubeSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/index.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/index.es.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/index.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/package.json create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/shakable.es.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/shakable.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/LICENSE.txt create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/README.md create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faAddressBook.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faAddressBook.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faAddressCard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faAddressCard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBell.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBell.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBellSlash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBellSlash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBookmark.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBookmark.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBuilding.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBuilding.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendar.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendar.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarCheck.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarCheck.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarMinus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarMinus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarPlus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarPlus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarTimes.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarTimes.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faChartBar.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faChartBar.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCheckCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCheckCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCheckSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCheckSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClipboard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClipboard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClock.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClock.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClone.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClone.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClosedCaptioning.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClosedCaptioning.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faComment.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faComment.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCommentAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCommentAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCommentDots.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCommentDots.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faComments.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faComments.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCompass.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCompass.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCopy.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCopy.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCopyright.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCopyright.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCreditCard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCreditCard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faDotCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faDotCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEdit.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEdit.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEnvelope.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEnvelope.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEnvelopeOpen.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEnvelopeOpen.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEye.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEye.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEyeSlash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEyeSlash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFile.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFile.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileArchive.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileArchive.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileAudio.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileAudio.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileCode.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileCode.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileExcel.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileExcel.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileImage.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileImage.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFilePdf.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFilePdf.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFilePowerpoint.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFilePowerpoint.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileVideo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileVideo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileWord.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileWord.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFlag.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFlag.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFolder.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFolder.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFolderOpen.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFolderOpen.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFontAwesomeLogoFull.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFontAwesomeLogoFull.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFrown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFrown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFutbol.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFutbol.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faGem.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faGem.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandLizard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandLizard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPaper.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPaper.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPeace.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPeace.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointer.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointer.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandRock.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandRock.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandScissors.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandScissors.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandSpock.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandSpock.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandshake.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandshake.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHdd.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHdd.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHeart.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHeart.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHospital.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHospital.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHourglass.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHourglass.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faIdBadge.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faIdBadge.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faIdCard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faIdCard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faImage.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faImage.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faImages.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faImages.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faKeyboard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faKeyboard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faLemon.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faLemon.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faLifeRing.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faLifeRing.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faLightbulb.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faLightbulb.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faListAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faListAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMap.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMap.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMeh.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMeh.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMinusSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMinusSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMoneyBillAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMoneyBillAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMoon.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMoon.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faNewspaper.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faNewspaper.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faObjectGroup.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faObjectGroup.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faObjectUngroup.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faObjectUngroup.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPaperPlane.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPaperPlane.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPauseCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPauseCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPlayCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPlayCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPlusSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPlusSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faQuestionCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faQuestionCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faRegistered.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faRegistered.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSave.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSave.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faShareSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faShareSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSmile.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSmile.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSnowflake.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSnowflake.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStar.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStar.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStarHalf.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStarHalf.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStickyNote.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStickyNote.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStopCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStopCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSun.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSun.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faThumbsDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faThumbsDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faThumbsUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faThumbsUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faTimesCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faTimesCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faTrashAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faTrashAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faUser.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faUser.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faUserCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faUserCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowClose.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowClose.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowMaximize.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowMaximize.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowMinimize.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowMinimize.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowRestore.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowRestore.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/index.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/index.es.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/index.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/package.json create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/shakable.es.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/shakable.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/LICENSE.txt create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/README.md create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAddressBook.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAddressBook.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAddressCard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAddressCard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAdjust.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAdjust.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignCenter.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignCenter.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignJustify.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignJustify.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAllergies.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAllergies.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAmbulance.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAmbulance.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAmericanSignLanguageInterpreting.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAmericanSignLanguageInterpreting.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAnchor.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAnchor.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArchive.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArchive.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowsAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowsAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowsAltH.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowsAltH.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowsAltV.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowsAltV.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAssistiveListeningSystems.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAssistiveListeningSystems.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAsterisk.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAsterisk.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAudioDescription.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAudioDescription.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBackward.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBackward.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBalanceScale.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBalanceScale.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBan.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBan.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBandAid.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBandAid.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBarcode.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBarcode.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBars.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBars.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBaseballBall.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBaseballBall.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBasketballBall.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBasketballBall.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBath.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBath.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryEmpty.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryEmpty.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryFull.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryFull.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryHalf.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryHalf.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryQuarter.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryQuarter.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryThreeQuarters.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryThreeQuarters.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBed.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBed.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBeer.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBeer.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBell.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBell.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBellSlash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBellSlash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBicycle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBicycle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBinoculars.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBinoculars.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBirthdayCake.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBirthdayCake.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBlender.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBlender.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBlind.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBlind.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBold.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBold.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBolt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBolt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBomb.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBomb.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBook.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBook.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBookOpen.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBookOpen.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBookmark.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBookmark.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBowlingBall.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBowlingBall.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBox.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBox.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBoxOpen.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBoxOpen.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBoxes.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBoxes.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBraille.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBraille.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBriefcase.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBriefcase.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBriefcaseMedical.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBriefcaseMedical.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBroadcastTower.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBroadcastTower.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBroom.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBroom.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBug.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBug.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBuilding.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBuilding.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBullhorn.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBullhorn.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBullseye.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBullseye.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBurn.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBurn.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalculator.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalculator.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendar.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendar.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarCheck.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarCheck.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarMinus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarMinus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarPlus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarPlus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarTimes.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarTimes.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCamera.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCamera.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCameraRetro.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCameraRetro.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCapsules.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCapsules.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCar.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCar.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCartArrowDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCartArrowDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCartPlus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCartPlus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCertificate.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCertificate.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChalkboard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChalkboard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChalkboardTeacher.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChalkboardTeacher.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartArea.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartArea.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartBar.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartBar.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartLine.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartLine.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartPie.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartPie.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCheck.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCheck.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCheckCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCheckCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCheckSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCheckSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChess.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChess.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessBishop.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessBishop.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessBoard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessBoard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessKing.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessKing.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessKnight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessKnight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessPawn.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessPawn.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessQueen.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessQueen.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessRook.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessRook.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChild.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChild.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChurch.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChurch.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCircleNotch.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCircleNotch.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClipboard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClipboard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClipboardCheck.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClipboardCheck.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClipboardList.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClipboardList.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClock.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClock.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClone.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClone.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClosedCaptioning.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClosedCaptioning.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCloud.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCloud.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCloudDownloadAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCloudDownloadAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCloudUploadAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCloudUploadAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCode.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCode.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCodeBranch.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCodeBranch.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCoffee.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCoffee.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCog.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCog.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCogs.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCogs.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCoins.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCoins.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faColumns.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faColumns.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faComment.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faComment.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCommentAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCommentAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCommentDots.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCommentDots.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCommentSlash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCommentSlash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faComments.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faComments.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCompactDisc.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCompactDisc.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCompass.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCompass.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCompress.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCompress.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCopy.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCopy.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCopyright.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCopyright.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCouch.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCouch.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCreditCard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCreditCard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrop.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrop.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrosshairs.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrosshairs.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrow.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrow.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCube.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCube.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCubes.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCubes.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCut.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCut.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDatabase.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDatabase.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDeaf.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDeaf.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDesktop.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDesktop.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiagnoses.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiagnoses.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDice.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDice.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceFive.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceFive.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceFour.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceFour.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceOne.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceOne.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceSix.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceSix.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceThree.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceThree.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceTwo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceTwo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDivide.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDivide.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDna.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDna.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDollarSign.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDollarSign.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDolly.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDolly.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDollyFlatbed.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDollyFlatbed.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDonate.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDonate.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDoorClosed.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDoorClosed.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDoorOpen.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDoorOpen.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDotCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDotCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDove.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDove.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDownload.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDownload.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDumbbell.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDumbbell.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEdit.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEdit.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEject.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEject.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEllipsisH.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEllipsisH.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEllipsisV.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEllipsisV.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEnvelope.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEnvelope.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEnvelopeOpen.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEnvelopeOpen.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEnvelopeSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEnvelopeSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEquals.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEquals.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEraser.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEraser.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEuroSign.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEuroSign.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExchangeAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExchangeAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExclamation.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExclamation.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExclamationCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExclamationCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExclamationTriangle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExclamationTriangle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExpand.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExpand.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExpandArrowsAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExpandArrowsAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExternalLinkAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExternalLinkAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExternalLinkSquareAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExternalLinkSquareAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEye.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEye.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEyeDropper.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEyeDropper.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEyeSlash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEyeSlash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFastBackward.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFastBackward.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFastForward.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFastForward.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFax.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFax.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFeather.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFeather.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFemale.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFemale.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFighterJet.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFighterJet.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFile.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFile.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileArchive.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileArchive.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileAudio.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileAudio.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileCode.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileCode.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileExcel.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileExcel.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileImage.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileImage.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileMedical.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileMedical.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileMedicalAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileMedicalAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilePdf.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilePdf.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilePowerpoint.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilePowerpoint.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileVideo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileVideo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileWord.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileWord.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilm.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilm.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilter.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilter.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFire.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFire.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFireExtinguisher.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFireExtinguisher.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFirstAid.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFirstAid.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFlag.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFlag.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFlagCheckered.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFlagCheckered.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFlask.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFlask.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFolder.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFolder.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFolderOpen.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFolderOpen.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFont.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFont.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFontAwesomeLogoFull.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFontAwesomeLogoFull.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFootballBall.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFootballBall.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faForward.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faForward.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFrog.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFrog.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFrown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFrown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFutbol.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFutbol.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGamepad.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGamepad.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGasPump.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGasPump.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGavel.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGavel.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGem.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGem.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGenderless.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGenderless.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGift.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGift.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGlassMartini.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGlassMartini.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGlasses.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGlasses.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGlobe.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGlobe.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGolfBall.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGolfBall.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGraduationCap.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGraduationCap.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGreaterThan.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGreaterThan.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGreaterThanEqual.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGreaterThanEqual.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandHolding.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandHolding.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandHoldingHeart.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandHoldingHeart.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandHoldingUsd.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandHoldingUsd.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandLizard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandLizard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPaper.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPaper.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPeace.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPeace.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointer.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointer.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandRock.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandRock.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandScissors.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandScissors.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandSpock.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandSpock.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHands.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHands.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandsHelping.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandsHelping.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandshake.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandshake.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHashtag.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHashtag.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHdd.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHdd.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeading.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeading.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeadphones.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeadphones.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeart.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeart.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeartbeat.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeartbeat.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHelicopter.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHelicopter.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHistory.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHistory.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHockeyPuck.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHockeyPuck.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHome.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHome.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHospital.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHospital.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHospitalAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHospitalAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHospitalSymbol.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHospitalSymbol.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglass.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglass.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglassEnd.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglassEnd.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglassHalf.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglassHalf.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglassStart.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglassStart.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faICursor.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faICursor.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIdBadge.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIdBadge.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIdCard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIdCard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIdCardAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIdCardAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faImage.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faImage.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faImages.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faImages.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInbox.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInbox.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIndent.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIndent.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIndustry.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIndustry.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInfinity.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInfinity.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInfo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInfo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInfoCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInfoCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faItalic.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faItalic.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faKey.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faKey.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faKeyboard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faKeyboard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faKiwiBird.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faKiwiBird.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLanguage.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLanguage.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLaptop.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLaptop.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLeaf.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLeaf.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLemon.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLemon.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLessThan.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLessThan.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLessThanEqual.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLessThanEqual.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLevelDownAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLevelDownAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLevelUpAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLevelUpAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLifeRing.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLifeRing.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLightbulb.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLightbulb.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLink.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLink.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLiraSign.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLiraSign.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faList.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faList.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faListAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faListAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faListOl.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faListOl.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faListUl.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faListUl.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLocationArrow.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLocationArrow.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLock.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLock.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLockOpen.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLockOpen.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLowVision.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLowVision.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMagic.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMagic.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMagnet.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMagnet.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMale.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMale.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMap.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMap.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapMarker.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapMarker.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapMarkerAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapMarkerAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapPin.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapPin.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapSigns.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapSigns.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMars.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMars.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsDouble.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsDouble.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsStroke.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsStroke.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsStrokeH.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsStrokeH.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsStrokeV.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsStrokeV.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMedkit.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMedkit.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMeh.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMeh.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMemory.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMemory.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMercury.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMercury.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrochip.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrochip.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophone.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophone.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophoneAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophoneAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophoneAltSlash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophoneAltSlash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophoneSlash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophoneSlash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMinus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMinus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMinusCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMinusCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMinusSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMinusSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMobile.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMobile.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMobileAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMobileAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBill.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBill.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBillAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBillAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBillWave.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBillWave.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBillWaveAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBillWaveAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyCheck.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyCheck.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyCheckAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyCheckAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoon.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoon.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMotorcycle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMotorcycle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMousePointer.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMousePointer.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMusic.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMusic.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNeuter.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNeuter.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNewspaper.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNewspaper.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNotEqual.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNotEqual.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNotesMedical.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNotesMedical.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faObjectGroup.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faObjectGroup.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faObjectUngroup.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faObjectUngroup.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faOutdent.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faOutdent.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaintBrush.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaintBrush.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPalette.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPalette.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPallet.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPallet.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaperPlane.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaperPlane.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaperclip.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaperclip.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faParachuteBox.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faParachuteBox.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faParagraph.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faParagraph.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faParking.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faParking.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaste.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaste.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPause.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPause.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPauseCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPauseCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaw.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaw.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPenSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPenSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPencilAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPencilAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPeopleCarry.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPeopleCarry.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPercent.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPercent.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPercentage.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPercentage.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhone.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhone.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhoneSlash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhoneSlash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhoneSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhoneSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhoneVolume.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhoneVolume.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPiggyBank.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPiggyBank.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPills.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPills.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlane.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlane.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlay.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlay.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlayCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlayCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlug.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlug.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlusCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlusCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlusSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlusSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPodcast.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPodcast.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPoo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPoo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPortrait.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPortrait.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPoundSign.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPoundSign.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPowerOff.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPowerOff.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPrescriptionBottle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPrescriptionBottle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPrescriptionBottleAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPrescriptionBottleAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPrint.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPrint.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faProcedures.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faProcedures.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faProjectDiagram.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faProjectDiagram.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPuzzlePiece.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPuzzlePiece.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQrcode.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQrcode.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuestion.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuestion.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuestionCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuestionCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuidditch.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuidditch.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuoteLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuoteLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuoteRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuoteRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRandom.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRandom.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faReceipt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faReceipt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRecycle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRecycle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRedo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRedo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRedoAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRedoAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRegistered.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRegistered.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faReply.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faReply.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faReplyAll.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faReplyAll.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRetweet.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRetweet.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRibbon.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRibbon.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRoad.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRoad.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRobot.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRobot.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRocket.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRocket.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRss.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRss.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRssSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRssSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRubleSign.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRubleSign.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRuler.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRuler.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRulerCombined.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRulerCombined.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRulerHorizontal.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRulerHorizontal.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRulerVertical.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRulerVertical.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRupeeSign.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRupeeSign.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSave.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSave.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSchool.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSchool.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faScrewdriver.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faScrewdriver.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSearch.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSearch.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSearchMinus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSearchMinus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSearchPlus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSearchPlus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSeedling.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSeedling.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faServer.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faServer.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShareAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShareAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShareAltSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShareAltSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShareSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShareSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShekelSign.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShekelSign.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShieldAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShieldAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShip.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShip.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShippingFast.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShippingFast.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoePrints.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoePrints.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoppingBag.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoppingBag.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoppingBasket.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoppingBasket.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoppingCart.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoppingCart.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShower.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShower.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSign.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSign.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignInAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignInAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignLanguage.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignLanguage.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignOutAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignOutAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignal.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignal.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSitemap.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSitemap.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSkull.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSkull.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSlidersH.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSlidersH.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSmile.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSmile.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSmoking.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSmoking.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSmokingBan.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSmokingBan.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSnowflake.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSnowflake.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSort.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSort.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAlphaDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAlphaDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAlphaUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAlphaUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAmountDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAmountDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAmountUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAmountUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortNumericDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortNumericDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortNumericUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortNumericUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSpaceShuttle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSpaceShuttle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSpinner.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSpinner.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSquareFull.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSquareFull.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStar.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStar.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStarHalf.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStarHalf.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStepBackward.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStepBackward.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStepForward.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStepForward.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStethoscope.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStethoscope.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStickyNote.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStickyNote.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStop.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStop.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStopCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStopCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStopwatch.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStopwatch.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStore.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStore.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStoreAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStoreAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStream.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStream.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStreetView.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStreetView.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStrikethrough.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStrikethrough.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStroopwafel.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStroopwafel.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSubscript.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSubscript.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSubway.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSubway.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSuitcase.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSuitcase.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSun.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSun.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSuperscript.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSuperscript.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSync.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSync.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSyncAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSyncAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSyringe.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSyringe.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTable.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTable.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTableTennis.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTableTennis.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTablet.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTablet.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTabletAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTabletAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTablets.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTablets.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTachometerAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTachometerAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTag.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTag.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTags.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTags.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTape.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTape.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTasks.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTasks.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTaxi.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTaxi.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTerminal.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTerminal.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTextHeight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTextHeight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTextWidth.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTextWidth.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTh.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTh.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThLarge.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThLarge.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThList.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThList.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometer.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometer.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerEmpty.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerEmpty.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerFull.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerFull.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerHalf.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerHalf.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerQuarter.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerQuarter.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerThreeQuarters.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerThreeQuarters.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThumbsDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThumbsDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThumbsUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThumbsUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThumbtack.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThumbtack.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTicketAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTicketAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTimes.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTimes.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTimesCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTimesCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTint.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTint.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faToggleOff.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faToggleOff.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faToggleOn.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faToggleOn.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faToolbox.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faToolbox.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrademark.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrademark.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrain.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrain.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTransgender.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTransgender.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTransgenderAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTransgenderAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrashAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrashAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTree.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTree.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrophy.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrophy.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTruck.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTruck.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTruckLoading.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTruckLoading.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTruckMoving.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTruckMoving.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTshirt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTshirt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTty.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTty.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTv.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTv.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUmbrella.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUmbrella.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnderline.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnderline.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUndo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUndo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUndoAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUndoAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUniversalAccess.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUniversalAccess.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUniversity.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUniversity.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnlink.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnlink.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnlock.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnlock.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnlockAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnlockAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUpload.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUpload.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUser.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUser.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserAltSlash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserAltSlash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserAstronaut.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserAstronaut.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserCheck.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserCheck.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserClock.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserClock.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserCog.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserCog.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserEdit.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserEdit.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserFriends.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserFriends.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserGraduate.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserGraduate.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserLock.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserLock.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserMd.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserMd.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserMinus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserMinus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserNinja.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserNinja.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserPlus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserPlus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserSecret.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserSecret.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserShield.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserShield.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserSlash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserSlash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserTag.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserTag.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserTie.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserTie.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserTimes.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserTimes.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUsers.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUsers.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUsersCog.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUsersCog.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUtensilSpoon.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUtensilSpoon.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUtensils.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUtensils.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVenus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVenus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVenusDouble.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVenusDouble.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVenusMars.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVenusMars.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVial.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVial.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVials.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVials.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVideo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVideo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVideoSlash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVideoSlash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolleyballBall.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolleyballBall.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolumeDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolumeDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolumeOff.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolumeOff.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolumeUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolumeUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWalking.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWalking.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWallet.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWallet.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWarehouse.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWarehouse.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWeight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWeight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWheelchair.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWheelchair.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWifi.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWifi.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowClose.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowClose.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowMaximize.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowMaximize.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowMinimize.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowMinimize.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowRestore.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowRestore.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWineGlass.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWineGlass.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWonSign.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWonSign.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWrench.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWrench.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faXRay.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faXRay.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faYenSign.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faYenSign.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/index.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/index.es.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/index.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/package.json create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/shakable.es.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/shakable.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/LICENSE.txt create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/README.md create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/css/fa-brands.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/css/fa-regular.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/css/fa-solid.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/css/fontawesome.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_animated.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_bordered-pulled.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_core.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_fixed-width.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_icons.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_larger.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_list.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_mixins.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_rotated-flipped.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_screen-reader.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_stacked.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_variables.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/fa-brands.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/fa-regular.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/fa-solid.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/fontawesome.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/package.json create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_animated.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_bordered-pulled.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_core.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_fixed-width.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_icons.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_larger.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_list.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_mixins.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_rotated-flipped.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_screen-reader.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_stacked.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_variables.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/fa-brands.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/fa-regular.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/fa-solid.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/fontawesome.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-brands-400.eot create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-brands-400.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-brands-400.ttf create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-brands-400.woff create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-brands-400.woff2 create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-regular-400.eot create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-regular-400.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-regular-400.ttf create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-regular-400.woff create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-regular-400.woff2 create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-solid-900.eot create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-solid-900.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-solid-900.ttf create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-solid-900.woff create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-solid-900.woff2 create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/LICENSE.txt create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/README.md create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/all.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/all.min.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/brands.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/brands.min.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/fontawesome.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/fontawesome.min.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/regular.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/regular.min.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/solid.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/solid.min.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/svg-with-js.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/svg-with-js.min.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/v4-shims.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/v4-shims.min.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/all.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/all.min.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/brands.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/brands.min.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/fontawesome.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/fontawesome.min.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/regular.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/regular.min.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/solid.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/solid.min.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/v4-shims.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/v4-shims.min.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_animated.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_bordered-pulled.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_core.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_fixed-width.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_icons.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_larger.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_list.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_mixins.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_rotated-flipped.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_screen-reader.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_shims.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_stacked.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_variables.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/brands.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/fa-brands.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/fa-regular.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/fa-solid.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/fontawesome.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/regular.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/solid.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/v4-shims.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/package.json create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_animated.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_bordered-pulled.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_core.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_fixed-width.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_icons.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_larger.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_list.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_mixins.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_rotated-flipped.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_screen-reader.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_shims.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_stacked.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_variables.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/brands.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/fa-brands.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/fa-regular.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/fa-solid.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/fontawesome.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/regular.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/solid.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/v4-shims.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/sprites/brands.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/sprites/regular.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/sprites/solid.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/500px.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/accessible-icon.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/accusoft.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/adn.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/adversal.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/affiliatetheme.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/algolia.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/amazon-pay.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/amazon.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/amilia.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/android.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/angellist.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/angrycreative.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/angular.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/app-store-ios.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/app-store.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/apper.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/apple-pay.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/apple.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/asymmetrik.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/audible.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/autoprefixer.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/avianex.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/aviato.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/aws.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bandcamp.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/behance-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/behance.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bimobject.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bitbucket.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bitcoin.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bity.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/black-tie.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/blackberry.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/blogger-b.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/blogger.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bluetooth-b.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bluetooth.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/btc.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/buromobelexperte.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/buysellads.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-amazon-pay.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-amex.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-apple-pay.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-diners-club.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-discover.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-jcb.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-mastercard.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-paypal.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-stripe.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-visa.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/centercode.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/chrome.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cloudscale.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cloudsmith.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cloudversify.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/codepen.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/codiepie.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/connectdevelop.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/contao.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cpanel.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-by.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-nc-eu.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-nc-jp.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-nc.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-nd.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-pd-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-pd.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-remix.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-sa.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-sampling-plus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-sampling.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-share.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/css3-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/css3.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cuttlefish.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/d-and-d.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/dashcube.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/delicious.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/deploydog.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/deskpro.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/deviantart.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/digg.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/digital-ocean.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/discord.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/discourse.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/dochub.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/docker.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/draft2digital.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/dribbble-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/dribbble.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/dropbox.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/drupal.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/dyalog.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/earlybirds.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ebay.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/edge.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/elementor.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ember.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/empire.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/envira.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/erlang.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ethereum.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/etsy.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/expeditedssl.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/facebook-f.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/facebook-messenger.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/facebook-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/facebook.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/firefox.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/first-order-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/first-order.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/firstdraft.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/flickr.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/flipboard.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/fly.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/font-awesome-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/font-awesome-flag.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/font-awesome-logo-full.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/font-awesome.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/fonticons-fi.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/fonticons.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/fort-awesome-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/fort-awesome.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/forumbee.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/foursquare.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/free-code-camp.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/freebsd.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/fulcrum.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/galactic-republic.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/galactic-senate.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/get-pocket.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gg-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gg.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/git-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/git.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/github-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/github-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/github.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gitkraken.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gitlab.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gitter.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/glide-g.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/glide.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gofore.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/goodreads-g.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/goodreads.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google-drive.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google-play.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google-plus-g.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google-plus-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google-plus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google-wallet.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gratipay.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/grav.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gripfire.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/grunt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gulp.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hacker-news-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hacker-news.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hips.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hire-a-helper.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hooli.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hornbill.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hotjar.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/houzz.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/html5.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hubspot.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/imdb.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/instagram.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/internet-explorer.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ioxhost.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/itunes-note.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/itunes.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/java.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/jedi-order.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/jenkins.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/joget.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/joomla.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/js-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/js.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/jsfiddle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/keybase.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/keycdn.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/kickstarter-k.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/kickstarter.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/korvue.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/laravel.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/lastfm-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/lastfm.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/leanpub.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/less.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/line.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/linkedin-in.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/linkedin.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/linode.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/linux.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/lyft.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/magento.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/mailchimp.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/mandalorian.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/mastodon.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/maxcdn.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/medapps.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/medium-m.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/medium.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/medrt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/meetup.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/megaport.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/microsoft.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/mix.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/mixcloud.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/mizuni.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/modx.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/monero.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/napster.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/nimblr.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/nintendo-switch.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/node-js.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/node.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/npm.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ns8.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/nutritionix.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/odnoklassniki-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/odnoklassniki.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/old-republic.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/opencart.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/openid.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/opera.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/optin-monster.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/osi.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/page4.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pagelines.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/palfed.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/patreon.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/paypal.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/periscope.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/phabricator.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/phoenix-framework.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/phoenix-squadron.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/php.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pied-piper-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pied-piper-hat.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pied-piper-pp.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pied-piper.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pinterest-p.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pinterest-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pinterest.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/playstation.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/product-hunt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pushed.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/python.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/qq.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/quinscape.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/quora.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/r-project.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ravelry.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/react.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/readme.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/rebel.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/red-river.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/reddit-alien.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/reddit-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/reddit.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/rendact.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/renren.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/replyd.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/researchgate.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/resolving.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/rev.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/rocketchat.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/rockrms.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/safari.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/sass.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/schlix.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/scribd.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/searchengin.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/sellcast.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/sellsy.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/servicestack.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/shirtsinbulk.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/shopware.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/simplybuilt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/sistrix.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/sith.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/skyatlas.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/skype.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/slack-hash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/slack.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/slideshare.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/snapchat-ghost.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/snapchat-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/snapchat.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/soundcloud.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/speakap.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/spotify.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/squarespace.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/stack-exchange.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/stack-overflow.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/staylinked.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/steam-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/steam-symbol.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/steam.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/sticker-mule.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/strava.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/stripe-s.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/stripe.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/studiovinari.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/stumbleupon-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/stumbleupon.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/superpowers.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/supple.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/teamspeak.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/telegram-plane.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/telegram.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/tencent-weibo.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/themeco.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/themeisle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/trade-federation.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/trello.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/tripadvisor.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/tumblr-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/tumblr.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/twitch.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/twitter-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/twitter.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/typo3.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/uber.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/uikit.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/uniregistry.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/untappd.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/usb.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ussunnah.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vaadin.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/viacoin.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/viadeo-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/viadeo.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/viber.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vimeo-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vimeo-v.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vimeo.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vine.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vk.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vnv.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vuejs.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/weebly.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/weibo.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/weixin.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/whatsapp-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/whatsapp.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/whmcs.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wikipedia-w.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/windows.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wix.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wolf-pack-battalion.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wordpress-simple.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wordpress.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wpbeginner.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wpexplorer.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wpforms.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/xbox.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/xing-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/xing.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/y-combinator.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/yahoo.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/yandex-international.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/yandex.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/yelp.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/yoast.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/youtube-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/youtube.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/address-book.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/address-card.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/angry.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/arrow-alt-circle-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/arrow-alt-circle-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/arrow-alt-circle-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/arrow-alt-circle-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/bell-slash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/bell.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/bookmark.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/building.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/calendar-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/calendar-check.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/calendar-minus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/calendar-plus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/calendar-times.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/calendar.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/caret-square-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/caret-square-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/caret-square-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/caret-square-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/chart-bar.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/check-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/check-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/clipboard.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/clock.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/clone.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/closed-captioning.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/comment-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/comment-dots.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/comment.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/comments.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/compass.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/copy.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/copyright.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/credit-card.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/dizzy.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/dot-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/edit.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/envelope-open.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/envelope.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/eye-slash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/eye.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-archive.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-audio.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-code.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-excel.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-image.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-pdf.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-powerpoint.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-video.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-word.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/flag.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/flushed.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/folder-open.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/folder.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/font-awesome-logo-full.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/frown-open.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/frown.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/futbol.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/gem.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grimace.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-beam-sweat.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-beam.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-hearts.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-squint-tears.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-squint.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-stars.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-tears.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-tongue-squint.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-tongue-wink.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-tongue.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-wink.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-lizard.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-paper.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-peace.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-point-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-point-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-point-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-point-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-pointer.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-rock.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-scissors.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-spock.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/handshake.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hdd.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/heart.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hospital.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hourglass.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/id-badge.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/id-card.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/image.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/images.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/keyboard.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/kiss-beam.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/kiss-wink-heart.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/kiss.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/laugh-beam.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/laugh-squint.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/laugh-wink.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/laugh.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/lemon.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/life-ring.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/lightbulb.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/list-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/map.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/meh-blank.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/meh-rolling-eyes.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/meh.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/minus-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/money-bill-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/moon.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/newspaper.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/object-group.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/object-ungroup.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/paper-plane.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/pause-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/play-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/plus-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/question-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/registered.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/sad-cry.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/sad-tear.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/save.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/share-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/smile-beam.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/smile-wink.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/smile.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/snowflake.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/star-half.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/star.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/sticky-note.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/stop-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/sun.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/surprise.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/thumbs-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/thumbs-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/times-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/tired.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/trash-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/user-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/user.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/window-close.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/window-maximize.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/window-minimize.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/window-restore.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/address-book.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/address-card.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/adjust.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/align-center.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/align-justify.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/align-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/align-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/allergies.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ambulance.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/american-sign-language-interpreting.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/anchor.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-double-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-double-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-double-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-double-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angry.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/archive.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/archway.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-alt-circle-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-alt-circle-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-alt-circle-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-alt-circle-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-circle-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-circle-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-circle-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-circle-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrows-alt-h.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrows-alt-v.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrows-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/assistive-listening-systems.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/asterisk.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/at.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/atlas.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/audio-description.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/award.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/backspace.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/backward.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/balance-scale.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ban.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/band-aid.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/barcode.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bars.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/baseball-ball.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/basketball-ball.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bath.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/battery-empty.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/battery-full.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/battery-half.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/battery-quarter.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/battery-three-quarters.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bed.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/beer.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bell-slash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bell.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bezier-curve.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bicycle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/binoculars.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/birthday-cake.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/blender.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/blind.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bold.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bolt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bomb.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bong.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/book-open.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/book.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bookmark.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bowling-ball.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/box-open.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/box.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/boxes.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/braille.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/briefcase-medical.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/briefcase.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/broadcast-tower.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/broom.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/brush.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bug.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/building.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bullhorn.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bullseye.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/burn.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bus-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calculator.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calendar-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calendar-check.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calendar-minus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calendar-plus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calendar-times.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calendar.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/camera-retro.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/camera.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cannabis.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/capsules.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/car.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-square-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-square-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-square-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-square-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cart-arrow-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cart-plus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/certificate.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chalkboard-teacher.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chalkboard.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chart-area.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chart-bar.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chart-line.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chart-pie.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/check-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/check-double.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/check-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/check.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-bishop.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-board.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-king.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-knight.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-pawn.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-queen.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-rook.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-circle-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-circle-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-circle-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-circle-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/child.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/church.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/circle-notch.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/clipboard-check.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/clipboard-list.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/clipboard.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/clock.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/clone.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/closed-captioning.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cloud-download-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cloud-upload-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cloud.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cocktail.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/code-branch.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/code.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/coffee.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cog.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cogs.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/coins.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/columns.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/comment-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/comment-dots.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/comment-slash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/comment.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/comments.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/compact-disc.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/compass.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/compress.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/concierge-bell.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cookie-bite.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cookie.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/copy.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/copyright.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/couch.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/credit-card.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/crop-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/crop.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/crosshairs.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/crow.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/crown.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cube.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cubes.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cut.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/database.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/deaf.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/desktop.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/diagnoses.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice-five.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice-four.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice-one.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice-six.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice-three.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice-two.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/digital-tachograph.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/divide.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dizzy.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dna.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dollar-sign.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dolly-flatbed.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dolly.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/donate.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/door-closed.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/door-open.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dot-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dove.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/download.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/drafting-compass.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/drum-steelpan.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/drum.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dumbbell.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/edit.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/eject.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ellipsis-h.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ellipsis-v.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/envelope-open.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/envelope-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/envelope.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/equals.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/eraser.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/euro-sign.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/exchange-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/exclamation-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/exclamation-triangle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/exclamation.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/expand-arrows-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/expand.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/external-link-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/external-link-square-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/eye-dropper.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/eye-slash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/eye.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fast-backward.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fast-forward.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fax.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/feather-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/feather.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/female.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fighter-jet.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-archive.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-audio.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-code.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-contract.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-download.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-excel.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-export.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-image.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-import.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-invoice-dollar.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-invoice.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-medical-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-medical.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-pdf.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-powerpoint.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-prescription.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-signature.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-upload.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-video.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-word.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fill-drip.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fill.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/film.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/filter.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fingerprint.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fire-extinguisher.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fire.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/first-aid.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fish.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/flag-checkered.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/flag.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/flask.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/flushed.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/folder-open.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/folder.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/font-awesome-logo-full.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/font.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/football-ball.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/forward.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/frog.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/frown-open.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/frown.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/futbol.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/gamepad.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/gas-pump.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/gavel.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/gem.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/genderless.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/gift.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/glass-martini-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/glass-martini.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/glasses.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/globe-africa.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/globe-americas.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/globe-asia.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/globe.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/golf-ball.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/graduation-cap.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/greater-than-equal.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/greater-than.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grimace.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-beam-sweat.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-beam.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-hearts.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-squint-tears.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-squint.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-stars.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-tears.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-tongue-squint.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-tongue-wink.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-tongue.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-wink.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grip-horizontal.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grip-vertical.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/h-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-holding-heart.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-holding-usd.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-holding.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-lizard.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-paper.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-peace.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-point-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-point-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-point-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-point-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-pointer.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-rock.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-scissors.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-spock.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hands-helping.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hands.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/handshake.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hashtag.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hdd.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/heading.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/headphones-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/headphones.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/headset.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/heart.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/heartbeat.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/helicopter.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/highlighter.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/history.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hockey-puck.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/home.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hospital-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hospital-symbol.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hospital.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hot-tub.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hotel.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hourglass-end.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hourglass-half.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hourglass-start.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hourglass.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/i-cursor.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/id-badge.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/id-card-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/id-card.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/image.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/images.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/inbox.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/indent.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/industry.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/infinity.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/info-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/info.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/italic.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/joint.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/key.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/keyboard.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/kiss-beam.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/kiss-wink-heart.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/kiss.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/kiwi-bird.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/language.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/laptop.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/laugh-beam.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/laugh-squint.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/laugh-wink.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/laugh.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/leaf.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/lemon.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/less-than-equal.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/less-than.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/level-down-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/level-up-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/life-ring.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/lightbulb.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/link.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/lira-sign.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/list-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/list-ol.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/list-ul.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/list.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/location-arrow.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/lock-open.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/lock.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/long-arrow-alt-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/long-arrow-alt-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/long-arrow-alt-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/long-arrow-alt-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/low-vision.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/luggage-cart.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/magic.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/magnet.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/male.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map-marked-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map-marked.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map-marker-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map-marker.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map-pin.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map-signs.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/marker.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mars-double.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mars-stroke-h.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mars-stroke-v.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mars-stroke.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mars.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/medal.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/medkit.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/meh-blank.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/meh-rolling-eyes.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/meh.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/memory.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mercury.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/microchip.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/microphone-alt-slash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/microphone-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/microphone-slash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/microphone.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/minus-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/minus-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/minus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mobile-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mobile.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/money-bill-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/money-bill-wave-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/money-bill-wave.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/money-bill.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/money-check-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/money-check.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/monument.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/moon.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mortar-pestle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/motorcycle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mouse-pointer.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/music.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/neuter.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/newspaper.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/not-equal.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/notes-medical.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/object-group.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/object-ungroup.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/outdent.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paint-brush.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paint-roller.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/palette.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pallet.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paper-plane.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paperclip.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/parachute-box.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paragraph.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/parking.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/passport.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paste.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pause-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pause.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paw.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pen-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pen-fancy.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pen-nib.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pen-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pen.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pencil-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pencil-ruler.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/people-carry.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/percent.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/percentage.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/phone-slash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/phone-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/phone-volume.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/phone.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/piggy-bank.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pills.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plane-arrival.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plane-departure.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plane.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/play-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/play.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plug.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plus-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plus-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/podcast.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/poo.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/portrait.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pound-sign.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/power-off.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/prescription-bottle-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/prescription-bottle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/prescription.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/print.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/procedures.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/project-diagram.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/puzzle-piece.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/qrcode.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/question-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/question.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/quidditch.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/quote-left.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/quote-right.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/random.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/receipt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/recycle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/redo-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/redo.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/registered.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/reply-all.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/reply.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/retweet.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ribbon.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/road.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/robot.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/rocket.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/rss-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/rss.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ruble-sign.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ruler-combined.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ruler-horizontal.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ruler-vertical.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ruler.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/rupee-sign.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sad-cry.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sad-tear.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/save.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/school.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/screwdriver.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/search-minus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/search-plus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/search.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/seedling.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/server.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/share-alt-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/share-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/share-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/share.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shekel-sign.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shield-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ship.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shipping-fast.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shoe-prints.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shopping-bag.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shopping-basket.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shopping-cart.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shower.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shuttle-van.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sign-in-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sign-language.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sign-out-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sign.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/signal.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/signature.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sitemap.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/skull.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sliders-h.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/smile-beam.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/smile-wink.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/smile.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/smoking-ban.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/smoking.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/snowflake.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/solar-panel.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-alpha-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-alpha-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-amount-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-amount-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-numeric-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-numeric-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/spa.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/space-shuttle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/spinner.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/splotch.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/spray-can.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/square-full.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stamp.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/star-half-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/star-half.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/star.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/step-backward.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/step-forward.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stethoscope.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sticky-note.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stop-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stop.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stopwatch.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/store-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/store.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stream.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/street-view.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/strikethrough.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stroopwafel.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/subscript.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/subway.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/suitcase-rolling.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/suitcase.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sun.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/superscript.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/surprise.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/swatchbook.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/swimmer.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/swimming-pool.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sync-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sync.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/syringe.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/table-tennis.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/table.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tablet-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tablet.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tablets.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tachometer-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tag.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tags.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tape.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tasks.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/taxi.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/terminal.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/text-height.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/text-width.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/th-large.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/th-list.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/th.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thermometer-empty.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thermometer-full.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thermometer-half.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thermometer-quarter.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thermometer-three-quarters.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thermometer.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thumbs-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thumbs-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thumbtack.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ticket-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/times-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/times.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tint-slash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tint.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tired.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/toggle-off.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/toggle-on.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/toolbox.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tooth.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/trademark.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/train.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/transgender-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/transgender.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/trash-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/trash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tree.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/trophy.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/truck-loading.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/truck-moving.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/truck.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tshirt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tty.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tv.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/umbrella-beach.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/umbrella.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/underline.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/undo-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/undo.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/universal-access.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/university.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/unlink.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/unlock-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/unlock.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/upload.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-alt-slash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-astronaut.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-check.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-circle.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-clock.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-cog.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-edit.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-friends.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-graduate.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-lock.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-md.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-minus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-ninja.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-plus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-secret.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-shield.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-slash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-tag.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-tie.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-times.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/users-cog.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/users.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/utensil-spoon.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/utensils.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/vector-square.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/venus-double.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/venus-mars.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/venus.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/vial.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/vials.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/video-slash.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/video.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/volleyball-ball.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/volume-down.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/volume-off.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/volume-up.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/walking.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/wallet.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/warehouse.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/weight-hanging.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/weight.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/wheelchair.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/wifi.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/window-close.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/window-maximize.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/window-minimize.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/window-restore.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/wine-glass-alt.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/wine-glass.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/won-sign.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/wrench.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/x-ray.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/yen-sign.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-brands-400.eot create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-brands-400.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-brands-400.ttf create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-brands-400.woff create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-brands-400.woff2 create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-regular-400.eot create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-regular-400.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-regular-400.ttf create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-regular-400.woff create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-regular-400.woff2 create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-solid-900.eot create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-solid-900.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-solid-900.ttf create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-solid-900.woff create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-solid-900.woff2 create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/LICENSE.txt create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/README.md create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/index.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/index.es.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/index.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/package.json create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/styles.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/LICENSE.txt create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/README.md create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/index.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/index.es.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/index.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/package.json create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/styles.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/LICENSE.txt create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/README.md create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/fa500px.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/fa500px.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAccessibleIcon.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAccessibleIcon.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAccusoft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAccusoft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAdn.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAdn.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAdversal.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAdversal.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAffiliatetheme.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAffiliatetheme.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAlgolia.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAlgolia.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAmazon.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAmazon.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAmazonPay.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAmazonPay.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAmilia.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAmilia.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAndroid.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAndroid.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAngellist.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAngellist.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAngrycreative.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAngrycreative.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAngular.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAngular.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAppStore.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAppStore.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAppStoreIos.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAppStoreIos.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faApper.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faApper.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faApple.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faApple.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faApplePay.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faApplePay.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAsymmetrik.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAsymmetrik.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAudible.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAudible.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAutoprefixer.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAutoprefixer.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAvianex.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAvianex.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAviato.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAviato.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAws.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAws.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBandcamp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBandcamp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBehance.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBehance.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBehanceSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBehanceSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBimobject.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBimobject.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBitbucket.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBitbucket.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBitcoin.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBitcoin.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBity.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBity.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBlackTie.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBlackTie.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBlackberry.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBlackberry.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBlogger.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBlogger.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBloggerB.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBloggerB.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBluetooth.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBluetooth.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBluetoothB.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBluetoothB.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBtc.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBtc.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBuromobelexperte.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBuromobelexperte.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBuysellads.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBuysellads.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcAmazonPay.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcAmazonPay.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcAmex.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcAmex.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcApplePay.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcApplePay.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcDinersClub.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcDinersClub.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcDiscover.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcDiscover.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcJcb.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcJcb.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcMastercard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcMastercard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcPaypal.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcPaypal.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcStripe.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcStripe.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcVisa.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcVisa.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCentercode.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCentercode.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faChrome.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faChrome.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCloudscale.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCloudscale.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCloudsmith.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCloudsmith.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCloudversify.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCloudversify.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCodepen.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCodepen.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCodiepie.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCodiepie.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faConnectdevelop.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faConnectdevelop.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faContao.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faContao.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCpanel.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCpanel.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommons.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommons.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsBy.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsBy.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNc.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNc.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNcEu.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNcEu.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNcJp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNcJp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNd.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNd.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsPd.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsPd.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsPdAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsPdAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsRemix.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsRemix.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsSa.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsSa.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsSampling.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsSampling.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsSamplingPlus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsSamplingPlus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsShare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsShare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCss3.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCss3.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCss3Alt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCss3Alt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCuttlefish.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCuttlefish.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDAndD.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDAndD.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDashcube.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDashcube.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDelicious.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDelicious.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDeploydog.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDeploydog.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDeskpro.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDeskpro.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDeviantart.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDeviantart.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDigg.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDigg.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDigitalOcean.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDigitalOcean.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDiscord.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDiscord.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDiscourse.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDiscourse.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDochub.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDochub.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDocker.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDocker.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDraft2digital.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDraft2digital.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDribbble.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDribbble.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDribbbleSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDribbbleSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDropbox.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDropbox.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDrupal.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDrupal.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDyalog.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDyalog.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEarlybirds.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEarlybirds.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEbay.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEbay.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEdge.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEdge.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faElementor.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faElementor.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEmber.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEmber.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEmpire.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEmpire.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEnvira.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEnvira.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faErlang.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faErlang.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEthereum.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEthereum.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEtsy.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEtsy.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faExpeditedssl.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faExpeditedssl.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebook.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebook.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebookF.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebookF.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebookMessenger.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebookMessenger.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebookSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebookSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirefox.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirefox.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirstOrder.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirstOrder.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirstOrderAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirstOrderAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirstdraft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirstdraft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFlickr.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFlickr.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFlipboard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFlipboard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFly.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFly.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesome.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesome.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesomeAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesomeAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesomeFlag.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesomeFlag.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesomeLogoFull.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesomeLogoFull.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFonticons.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFonticons.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFonticonsFi.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFonticonsFi.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFortAwesome.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFortAwesome.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFortAwesomeAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFortAwesomeAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faForumbee.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faForumbee.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFoursquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFoursquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFreeCodeCamp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFreeCodeCamp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFreebsd.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFreebsd.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFulcrum.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFulcrum.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGalacticRepublic.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGalacticRepublic.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGalacticSenate.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGalacticSenate.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGetPocket.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGetPocket.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGg.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGg.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGgCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGgCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGit.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGit.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGithub.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGithub.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGithubAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGithubAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGithubSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGithubSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitkraken.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitkraken.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitlab.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitlab.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitter.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitter.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGlide.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGlide.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGlideG.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGlideG.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGofore.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGofore.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoodreads.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoodreads.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoodreadsG.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoodreadsG.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoogle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoogle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoogleDrive.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoogleDrive.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlay.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlay.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlusG.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlusG.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlusSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlusSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoogleWallet.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoogleWallet.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGratipay.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGratipay.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGrav.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGrav.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGripfire.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGripfire.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGrunt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGrunt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGulp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGulp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHackerNews.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHackerNews.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHackerNewsSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHackerNewsSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHips.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHips.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHireAHelper.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHireAHelper.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHooli.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHooli.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHornbill.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHornbill.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHotjar.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHotjar.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHouzz.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHouzz.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHtml5.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHtml5.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHubspot.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHubspot.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faImdb.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faImdb.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faInstagram.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faInstagram.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faInternetExplorer.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faInternetExplorer.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faIoxhost.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faIoxhost.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faItunes.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faItunes.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faItunesNote.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faItunesNote.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJava.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJava.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJediOrder.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJediOrder.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJenkins.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJenkins.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJoget.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJoget.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJoomla.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJoomla.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJs.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJs.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJsSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJsSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJsfiddle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJsfiddle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKeybase.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKeybase.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKeycdn.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKeycdn.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKickstarter.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKickstarter.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKickstarterK.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKickstarterK.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKorvue.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKorvue.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLaravel.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLaravel.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLastfm.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLastfm.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLastfmSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLastfmSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLeanpub.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLeanpub.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLess.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLess.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLine.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLine.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinkedin.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinkedin.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinkedinIn.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinkedinIn.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinode.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinode.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinux.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinux.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLyft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLyft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMagento.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMagento.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMailchimp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMailchimp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMandalorian.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMandalorian.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMastodon.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMastodon.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMaxcdn.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMaxcdn.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMedapps.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMedapps.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMedium.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMedium.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMediumM.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMediumM.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMedrt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMedrt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMeetup.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMeetup.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMegaport.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMegaport.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMicrosoft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMicrosoft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMix.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMix.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMixcloud.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMixcloud.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMizuni.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMizuni.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faModx.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faModx.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMonero.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMonero.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNapster.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNapster.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNimblr.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNimblr.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNintendoSwitch.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNintendoSwitch.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNode.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNode.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNodeJs.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNodeJs.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNpm.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNpm.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNs8.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNs8.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNutritionix.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNutritionix.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOdnoklassniki.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOdnoklassniki.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOdnoklassnikiSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOdnoklassnikiSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOldRepublic.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOldRepublic.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOpencart.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOpencart.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOpenid.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOpenid.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOpera.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOpera.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOptinMonster.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOptinMonster.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOsi.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOsi.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPage4.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPage4.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPagelines.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPagelines.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPalfed.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPalfed.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPatreon.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPatreon.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPaypal.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPaypal.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPeriscope.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPeriscope.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhabricator.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhabricator.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhoenixFramework.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhoenixFramework.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhoenixSquadron.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhoenixSquadron.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiper.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiper.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiperAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiperAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiperHat.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiperHat.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiperPp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiperPp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPinterest.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPinterest.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPinterestP.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPinterestP.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPinterestSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPinterestSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPlaystation.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPlaystation.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faProductHunt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faProductHunt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPushed.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPushed.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPython.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPython.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faQq.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faQq.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faQuinscape.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faQuinscape.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faQuora.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faQuora.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRProject.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRProject.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRavelry.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRavelry.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReact.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReact.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReadme.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReadme.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRebel.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRebel.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRedRiver.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRedRiver.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReddit.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReddit.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRedditAlien.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRedditAlien.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRedditSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRedditSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRendact.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRendact.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRenren.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRenren.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReplyd.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReplyd.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faResearchgate.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faResearchgate.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faResolving.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faResolving.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRev.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRev.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRocketchat.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRocketchat.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRockrms.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRockrms.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSafari.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSafari.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSass.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSass.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSchlix.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSchlix.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faScribd.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faScribd.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSearchengin.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSearchengin.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSellcast.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSellcast.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSellsy.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSellsy.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faServicestack.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faServicestack.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faShirtsinbulk.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faShirtsinbulk.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faShopware.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faShopware.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSimplybuilt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSimplybuilt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSistrix.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSistrix.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSith.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSith.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSkyatlas.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSkyatlas.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSkype.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSkype.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSlack.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSlack.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSlackHash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSlackHash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSlideshare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSlideshare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSnapchat.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSnapchat.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSnapchatGhost.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSnapchatGhost.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSnapchatSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSnapchatSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSoundcloud.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSoundcloud.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSpeakap.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSpeakap.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSpotify.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSpotify.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSquarespace.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSquarespace.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStackExchange.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStackExchange.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStackOverflow.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStackOverflow.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStaylinked.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStaylinked.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSteam.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSteam.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSteamSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSteamSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSteamSymbol.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSteamSymbol.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStickerMule.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStickerMule.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStrava.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStrava.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStripe.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStripe.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStripeS.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStripeS.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStudiovinari.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStudiovinari.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStumbleupon.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStumbleupon.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStumbleuponCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStumbleuponCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSuperpowers.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSuperpowers.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSupple.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSupple.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTeamspeak.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTeamspeak.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTelegram.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTelegram.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTelegramPlane.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTelegramPlane.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTencentWeibo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTencentWeibo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faThemeco.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faThemeco.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faThemeisle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faThemeisle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTradeFederation.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTradeFederation.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTrello.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTrello.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTripadvisor.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTripadvisor.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTumblr.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTumblr.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTumblrSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTumblrSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTwitch.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTwitch.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTwitter.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTwitter.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTwitterSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTwitterSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTypo3.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTypo3.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUber.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUber.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUikit.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUikit.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUniregistry.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUniregistry.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUntappd.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUntappd.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUsb.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUsb.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUssunnah.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUssunnah.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVaadin.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVaadin.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViacoin.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViacoin.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViadeo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViadeo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViadeoSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViadeoSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViber.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViber.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVimeo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVimeo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVimeoSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVimeoSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVimeoV.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVimeoV.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVine.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVine.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVk.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVk.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVnv.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVnv.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVuejs.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVuejs.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWeebly.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWeebly.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWeibo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWeibo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWeixin.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWeixin.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWhatsapp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWhatsapp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWhatsappSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWhatsappSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWhmcs.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWhmcs.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWikipediaW.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWikipediaW.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWindows.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWindows.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWix.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWix.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWolfPackBattalion.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWolfPackBattalion.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWordpress.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWordpress.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWordpressSimple.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWordpressSimple.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWpbeginner.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWpbeginner.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWpexplorer.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWpexplorer.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWpforms.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWpforms.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faXbox.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faXbox.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faXing.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faXing.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faXingSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faXingSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYCombinator.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYCombinator.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYahoo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYahoo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYandex.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYandex.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYandexInternational.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYandexInternational.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYelp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYelp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYoast.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYoast.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYoutube.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYoutube.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYoutubeSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYoutubeSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/index.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/index.es.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/index.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/package.json create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/LICENSE.txt create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/README.md create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faAddressBook.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faAddressBook.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faAddressCard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faAddressCard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faAngry.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faAngry.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBell.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBell.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBellSlash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBellSlash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBookmark.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBookmark.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBuilding.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBuilding.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendar.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendar.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarCheck.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarCheck.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarMinus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarMinus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarPlus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarPlus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarTimes.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarTimes.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faChartBar.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faChartBar.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCheckCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCheckCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCheckSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCheckSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClipboard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClipboard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClock.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClock.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClone.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClone.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClosedCaptioning.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClosedCaptioning.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faComment.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faComment.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCommentAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCommentAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCommentDots.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCommentDots.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faComments.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faComments.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCompass.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCompass.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCopy.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCopy.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCopyright.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCopyright.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCreditCard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCreditCard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faDizzy.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faDizzy.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faDotCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faDotCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEdit.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEdit.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEnvelope.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEnvelope.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEnvelopeOpen.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEnvelopeOpen.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEye.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEye.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEyeSlash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEyeSlash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFile.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFile.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileArchive.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileArchive.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileAudio.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileAudio.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileCode.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileCode.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileExcel.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileExcel.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileImage.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileImage.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFilePdf.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFilePdf.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFilePowerpoint.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFilePowerpoint.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileVideo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileVideo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileWord.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileWord.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFlag.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFlag.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFlushed.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFlushed.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFolder.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFolder.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFolderOpen.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFolderOpen.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFontAwesomeLogoFull.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFontAwesomeLogoFull.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFrown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFrown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFrownOpen.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFrownOpen.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFutbol.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFutbol.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGem.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGem.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrimace.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrimace.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrin.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrin.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinBeam.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinBeam.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinBeamSweat.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinBeamSweat.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinHearts.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinHearts.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinSquint.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinSquint.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinSquintTears.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinSquintTears.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinStars.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinStars.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTears.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTears.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTongue.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTongue.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTongueSquint.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTongueSquint.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTongueWink.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTongueWink.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinWink.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinWink.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandLizard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandLizard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPaper.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPaper.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPeace.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPeace.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointer.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointer.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandRock.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandRock.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandScissors.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandScissors.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandSpock.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandSpock.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandshake.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandshake.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHdd.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHdd.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHeart.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHeart.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHospital.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHospital.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHourglass.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHourglass.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faIdBadge.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faIdBadge.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faIdCard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faIdCard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faImage.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faImage.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faImages.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faImages.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKeyboard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKeyboard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKiss.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKiss.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKissBeam.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKissBeam.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKissWinkHeart.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKissWinkHeart.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaugh.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaugh.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaughBeam.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaughBeam.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaughSquint.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaughSquint.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaughWink.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaughWink.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLemon.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLemon.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLifeRing.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLifeRing.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLightbulb.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLightbulb.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faListAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faListAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMap.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMap.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMeh.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMeh.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMehBlank.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMehBlank.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMehRollingEyes.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMehRollingEyes.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMinusSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMinusSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMoneyBillAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMoneyBillAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMoon.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMoon.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faNewspaper.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faNewspaper.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faObjectGroup.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faObjectGroup.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faObjectUngroup.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faObjectUngroup.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPaperPlane.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPaperPlane.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPauseCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPauseCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPlayCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPlayCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPlusSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPlusSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faQuestionCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faQuestionCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faRegistered.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faRegistered.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSadCry.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSadCry.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSadTear.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSadTear.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSave.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSave.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faShareSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faShareSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSmile.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSmile.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSmileBeam.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSmileBeam.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSmileWink.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSmileWink.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSnowflake.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSnowflake.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStar.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStar.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStarHalf.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStarHalf.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStickyNote.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStickyNote.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStopCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStopCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSun.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSun.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSurprise.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSurprise.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faThumbsDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faThumbsDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faThumbsUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faThumbsUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faTimesCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faTimesCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faTired.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faTired.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faTrashAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faTrashAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faUser.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faUser.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faUserCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faUserCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowClose.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowClose.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowMaximize.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowMaximize.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowMinimize.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowMinimize.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowRestore.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowRestore.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/index.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/index.es.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/index.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/package.json create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/LICENSE.txt create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/README.md create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAddressBook.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAddressBook.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAddressCard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAddressCard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAdjust.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAdjust.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignCenter.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignCenter.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignJustify.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignJustify.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAllergies.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAllergies.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAmbulance.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAmbulance.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAmericanSignLanguageInterpreting.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAmericanSignLanguageInterpreting.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAnchor.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAnchor.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngry.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngry.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArchive.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArchive.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArchway.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArchway.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowsAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowsAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowsAltH.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowsAltH.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowsAltV.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowsAltV.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAssistiveListeningSystems.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAssistiveListeningSystems.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAsterisk.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAsterisk.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAtlas.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAtlas.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAudioDescription.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAudioDescription.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAward.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAward.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBackspace.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBackspace.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBackward.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBackward.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBalanceScale.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBalanceScale.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBan.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBan.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBandAid.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBandAid.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBarcode.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBarcode.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBars.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBars.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBaseballBall.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBaseballBall.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBasketballBall.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBasketballBall.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBath.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBath.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryEmpty.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryEmpty.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryFull.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryFull.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryHalf.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryHalf.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryQuarter.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryQuarter.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryThreeQuarters.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryThreeQuarters.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBed.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBed.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBeer.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBeer.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBell.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBell.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBellSlash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBellSlash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBezierCurve.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBezierCurve.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBicycle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBicycle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBinoculars.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBinoculars.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBirthdayCake.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBirthdayCake.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBlender.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBlender.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBlind.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBlind.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBold.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBold.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBolt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBolt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBomb.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBomb.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBong.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBong.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBook.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBook.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBookOpen.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBookOpen.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBookmark.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBookmark.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBowlingBall.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBowlingBall.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBox.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBox.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBoxOpen.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBoxOpen.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBoxes.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBoxes.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBraille.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBraille.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBriefcase.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBriefcase.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBriefcaseMedical.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBriefcaseMedical.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBroadcastTower.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBroadcastTower.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBroom.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBroom.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBrush.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBrush.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBug.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBug.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBuilding.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBuilding.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBullhorn.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBullhorn.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBullseye.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBullseye.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBurn.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBurn.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBusAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBusAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalculator.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalculator.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendar.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendar.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarCheck.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarCheck.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarMinus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarMinus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarPlus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarPlus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarTimes.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarTimes.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCamera.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCamera.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCameraRetro.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCameraRetro.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCannabis.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCannabis.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCapsules.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCapsules.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCar.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCar.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCartArrowDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCartArrowDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCartPlus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCartPlus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCertificate.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCertificate.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChalkboard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChalkboard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChalkboardTeacher.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChalkboardTeacher.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartArea.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartArea.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartBar.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartBar.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartLine.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartLine.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartPie.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartPie.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheck.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheck.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheckCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheckCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheckDouble.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheckDouble.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheckSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheckSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChess.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChess.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessBishop.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessBishop.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessBoard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessBoard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessKing.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessKing.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessKnight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessKnight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessPawn.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessPawn.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessQueen.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessQueen.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessRook.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessRook.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChild.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChild.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChurch.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChurch.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCircleNotch.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCircleNotch.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClipboard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClipboard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClipboardCheck.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClipboardCheck.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClipboardList.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClipboardList.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClock.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClock.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClone.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClone.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClosedCaptioning.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClosedCaptioning.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCloud.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCloud.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCloudDownloadAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCloudDownloadAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCloudUploadAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCloudUploadAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCocktail.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCocktail.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCode.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCode.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCodeBranch.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCodeBranch.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCoffee.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCoffee.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCog.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCog.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCogs.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCogs.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCoins.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCoins.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faColumns.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faColumns.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faComment.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faComment.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCommentAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCommentAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCommentDots.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCommentDots.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCommentSlash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCommentSlash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faComments.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faComments.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCompactDisc.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCompactDisc.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCompass.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCompass.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCompress.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCompress.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faConciergeBell.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faConciergeBell.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCookie.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCookie.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCookieBite.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCookieBite.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCopy.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCopy.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCopyright.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCopyright.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCouch.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCouch.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCreditCard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCreditCard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrop.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrop.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCropAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCropAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrosshairs.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrosshairs.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrow.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrow.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCube.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCube.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCubes.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCubes.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCut.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCut.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDatabase.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDatabase.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDeaf.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDeaf.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDesktop.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDesktop.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiagnoses.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiagnoses.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDice.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDice.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceFive.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceFive.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceFour.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceFour.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceOne.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceOne.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceSix.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceSix.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceThree.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceThree.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceTwo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceTwo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDigitalTachograph.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDigitalTachograph.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDivide.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDivide.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDizzy.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDizzy.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDna.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDna.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDollarSign.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDollarSign.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDolly.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDolly.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDollyFlatbed.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDollyFlatbed.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDonate.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDonate.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDoorClosed.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDoorClosed.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDoorOpen.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDoorOpen.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDotCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDotCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDove.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDove.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDownload.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDownload.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDraftingCompass.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDraftingCompass.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDrum.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDrum.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDrumSteelpan.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDrumSteelpan.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDumbbell.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDumbbell.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEdit.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEdit.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEject.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEject.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEllipsisH.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEllipsisH.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEllipsisV.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEllipsisV.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEnvelope.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEnvelope.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEnvelopeOpen.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEnvelopeOpen.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEnvelopeSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEnvelopeSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEquals.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEquals.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEraser.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEraser.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEuroSign.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEuroSign.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExchangeAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExchangeAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExclamation.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExclamation.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExclamationCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExclamationCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExclamationTriangle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExclamationTriangle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExpand.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExpand.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExpandArrowsAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExpandArrowsAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExternalLinkAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExternalLinkAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExternalLinkSquareAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExternalLinkSquareAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEye.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEye.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEyeDropper.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEyeDropper.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEyeSlash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEyeSlash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFastBackward.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFastBackward.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFastForward.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFastForward.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFax.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFax.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFeather.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFeather.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFeatherAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFeatherAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFemale.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFemale.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFighterJet.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFighterJet.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFile.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFile.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileArchive.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileArchive.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileAudio.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileAudio.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileCode.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileCode.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileContract.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileContract.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileDownload.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileDownload.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileExcel.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileExcel.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileExport.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileExport.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileImage.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileImage.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileImport.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileImport.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileInvoice.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileInvoice.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileInvoiceDollar.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileInvoiceDollar.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileMedical.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileMedical.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileMedicalAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileMedicalAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilePdf.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilePdf.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilePowerpoint.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilePowerpoint.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilePrescription.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilePrescription.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileSignature.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileSignature.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileUpload.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileUpload.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileVideo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileVideo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileWord.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileWord.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFill.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFill.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFillDrip.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFillDrip.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilm.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilm.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilter.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilter.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFingerprint.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFingerprint.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFire.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFire.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFireExtinguisher.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFireExtinguisher.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFirstAid.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFirstAid.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFish.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFish.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlag.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlag.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlagCheckered.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlagCheckered.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlask.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlask.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlushed.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlushed.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFolder.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFolder.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFolderOpen.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFolderOpen.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFont.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFont.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFontAwesomeLogoFull.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFontAwesomeLogoFull.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFootballBall.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFootballBall.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faForward.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faForward.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFrog.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFrog.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFrown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFrown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFrownOpen.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFrownOpen.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFutbol.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFutbol.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGamepad.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGamepad.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGasPump.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGasPump.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGavel.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGavel.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGem.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGem.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGenderless.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGenderless.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGift.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGift.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlassMartini.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlassMartini.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlassMartiniAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlassMartiniAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlasses.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlasses.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobe.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobe.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobeAfrica.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobeAfrica.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobeAmericas.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobeAmericas.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobeAsia.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobeAsia.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGolfBall.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGolfBall.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGraduationCap.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGraduationCap.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGreaterThan.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGreaterThan.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGreaterThanEqual.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGreaterThanEqual.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrimace.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrimace.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrin.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrin.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinBeam.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinBeam.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinBeamSweat.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinBeamSweat.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinHearts.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinHearts.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinSquint.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinSquint.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinSquintTears.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinSquintTears.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinStars.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinStars.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTears.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTears.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTongue.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTongue.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTongueSquint.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTongueSquint.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTongueWink.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTongueWink.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinWink.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinWink.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGripHorizontal.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGripHorizontal.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGripVertical.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGripVertical.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandHolding.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandHolding.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandHoldingHeart.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandHoldingHeart.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandHoldingUsd.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandHoldingUsd.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandLizard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandLizard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPaper.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPaper.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPeace.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPeace.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointer.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointer.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandRock.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandRock.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandScissors.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandScissors.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandSpock.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandSpock.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHands.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHands.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandsHelping.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandsHelping.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandshake.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandshake.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHashtag.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHashtag.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHdd.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHdd.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeading.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeading.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeadphones.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeadphones.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeadphonesAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeadphonesAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeadset.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeadset.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeart.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeart.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeartbeat.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeartbeat.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHelicopter.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHelicopter.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHighlighter.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHighlighter.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHistory.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHistory.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHockeyPuck.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHockeyPuck.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHome.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHome.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHospital.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHospital.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHospitalAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHospitalAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHospitalSymbol.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHospitalSymbol.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHotTub.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHotTub.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHotel.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHotel.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglass.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglass.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglassEnd.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglassEnd.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglassHalf.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglassHalf.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglassStart.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglassStart.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faICursor.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faICursor.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIdBadge.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIdBadge.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIdCard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIdCard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIdCardAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIdCardAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faImage.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faImage.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faImages.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faImages.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInbox.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInbox.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIndent.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIndent.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIndustry.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIndustry.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInfinity.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInfinity.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInfo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInfo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInfoCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInfoCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faItalic.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faItalic.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faJoint.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faJoint.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKey.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKey.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKeyboard.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKeyboard.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKiss.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKiss.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKissBeam.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKissBeam.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKissWinkHeart.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKissWinkHeart.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKiwiBird.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKiwiBird.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLanguage.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLanguage.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaptop.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaptop.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaugh.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaugh.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaughBeam.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaughBeam.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaughSquint.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaughSquint.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaughWink.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaughWink.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLeaf.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLeaf.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLemon.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLemon.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLessThan.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLessThan.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLessThanEqual.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLessThanEqual.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLevelDownAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLevelDownAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLevelUpAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLevelUpAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLifeRing.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLifeRing.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLightbulb.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLightbulb.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLink.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLink.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLiraSign.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLiraSign.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faList.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faList.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faListAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faListAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faListOl.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faListOl.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faListUl.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faListUl.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLocationArrow.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLocationArrow.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLock.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLock.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLockOpen.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLockOpen.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLowVision.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLowVision.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLuggageCart.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLuggageCart.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMagic.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMagic.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMagnet.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMagnet.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMale.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMale.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMap.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMap.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarked.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarked.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarkedAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarkedAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarker.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarker.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarkerAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarkerAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapPin.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapPin.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapSigns.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapSigns.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarker.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarker.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMars.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMars.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsDouble.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsDouble.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsStroke.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsStroke.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsStrokeH.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsStrokeH.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsStrokeV.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsStrokeV.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMedal.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMedal.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMedkit.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMedkit.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMeh.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMeh.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMehBlank.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMehBlank.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMehRollingEyes.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMehRollingEyes.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMemory.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMemory.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMercury.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMercury.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrochip.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrochip.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophone.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophone.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophoneAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophoneAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophoneAltSlash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophoneAltSlash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophoneSlash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophoneSlash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMinus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMinus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMinusCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMinusCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMinusSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMinusSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMobile.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMobile.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMobileAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMobileAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBill.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBill.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBillAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBillAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBillWave.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBillWave.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBillWaveAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBillWaveAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyCheck.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyCheck.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyCheckAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyCheckAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMonument.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMonument.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoon.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoon.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMortarPestle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMortarPestle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMotorcycle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMotorcycle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMousePointer.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMousePointer.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMusic.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMusic.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNeuter.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNeuter.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNewspaper.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNewspaper.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNotEqual.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNotEqual.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNotesMedical.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNotesMedical.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faObjectGroup.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faObjectGroup.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faObjectUngroup.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faObjectUngroup.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faOutdent.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faOutdent.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaintBrush.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaintBrush.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaintRoller.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaintRoller.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPalette.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPalette.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPallet.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPallet.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaperPlane.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaperPlane.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaperclip.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaperclip.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faParachuteBox.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faParachuteBox.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faParagraph.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faParagraph.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faParking.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faParking.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPassport.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPassport.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaste.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaste.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPause.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPause.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPauseCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPauseCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaw.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaw.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPen.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPen.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenFancy.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenFancy.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenNib.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenNib.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPencilAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPencilAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPencilRuler.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPencilRuler.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPeopleCarry.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPeopleCarry.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPercent.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPercent.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPercentage.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPercentage.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhone.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhone.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhoneSlash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhoneSlash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhoneSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhoneSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhoneVolume.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhoneVolume.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPiggyBank.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPiggyBank.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPills.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPills.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlane.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlane.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlaneArrival.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlaneArrival.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlaneDeparture.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlaneDeparture.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlay.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlay.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlayCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlayCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlug.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlug.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlusCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlusCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlusSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlusSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPodcast.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPodcast.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPoo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPoo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPortrait.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPortrait.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPoundSign.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPoundSign.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPowerOff.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPowerOff.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrescription.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrescription.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrescriptionBottle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrescriptionBottle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrescriptionBottleAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrescriptionBottleAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrint.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrint.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faProcedures.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faProcedures.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faProjectDiagram.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faProjectDiagram.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPuzzlePiece.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPuzzlePiece.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQrcode.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQrcode.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuestion.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuestion.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuestionCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuestionCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuidditch.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuidditch.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuoteLeft.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuoteLeft.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuoteRight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuoteRight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRandom.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRandom.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faReceipt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faReceipt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRecycle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRecycle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRedo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRedo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRedoAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRedoAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRegistered.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRegistered.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faReply.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faReply.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faReplyAll.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faReplyAll.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRetweet.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRetweet.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRibbon.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRibbon.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRoad.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRoad.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRobot.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRobot.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRocket.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRocket.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRss.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRss.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRssSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRssSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRubleSign.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRubleSign.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRuler.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRuler.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRulerCombined.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRulerCombined.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRulerHorizontal.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRulerHorizontal.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRulerVertical.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRulerVertical.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRupeeSign.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRupeeSign.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSadCry.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSadCry.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSadTear.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSadTear.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSave.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSave.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSchool.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSchool.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faScrewdriver.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faScrewdriver.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSearch.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSearch.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSearchMinus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSearchMinus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSearchPlus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSearchPlus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSeedling.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSeedling.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faServer.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faServer.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShareAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShareAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShareAltSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShareAltSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShareSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShareSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShekelSign.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShekelSign.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShieldAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShieldAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShip.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShip.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShippingFast.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShippingFast.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoePrints.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoePrints.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoppingBag.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoppingBag.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoppingBasket.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoppingBasket.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoppingCart.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoppingCart.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShower.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShower.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShuttleVan.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShuttleVan.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSign.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSign.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignInAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignInAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignLanguage.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignLanguage.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignOutAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignOutAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignal.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignal.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignature.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignature.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSitemap.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSitemap.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSkull.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSkull.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSlidersH.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSlidersH.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmile.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmile.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmileBeam.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmileBeam.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmileWink.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmileWink.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmoking.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmoking.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmokingBan.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmokingBan.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSnowflake.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSnowflake.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSolarPanel.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSolarPanel.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSort.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSort.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAlphaDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAlphaDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAlphaUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAlphaUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAmountDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAmountDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAmountUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAmountUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortNumericDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortNumericDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortNumericUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortNumericUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSpa.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSpa.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSpaceShuttle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSpaceShuttle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSpinner.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSpinner.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSplotch.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSplotch.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSprayCan.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSprayCan.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSquareFull.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSquareFull.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStamp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStamp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStar.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStar.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStarHalf.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStarHalf.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStarHalfAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStarHalfAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStepBackward.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStepBackward.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStepForward.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStepForward.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStethoscope.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStethoscope.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStickyNote.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStickyNote.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStop.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStop.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStopCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStopCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStopwatch.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStopwatch.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStore.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStore.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStoreAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStoreAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStream.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStream.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStreetView.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStreetView.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStrikethrough.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStrikethrough.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStroopwafel.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStroopwafel.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSubscript.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSubscript.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSubway.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSubway.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSuitcase.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSuitcase.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSuitcaseRolling.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSuitcaseRolling.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSun.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSun.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSuperscript.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSuperscript.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSurprise.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSurprise.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSwatchbook.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSwatchbook.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSwimmer.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSwimmer.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSwimmingPool.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSwimmingPool.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSync.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSync.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSyncAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSyncAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSyringe.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSyringe.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTable.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTable.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTableTennis.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTableTennis.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTablet.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTablet.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTabletAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTabletAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTablets.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTablets.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTachometerAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTachometerAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTag.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTag.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTags.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTags.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTape.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTape.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTasks.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTasks.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTaxi.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTaxi.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTerminal.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTerminal.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTextHeight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTextHeight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTextWidth.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTextWidth.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTh.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTh.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThLarge.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThLarge.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThList.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThList.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometer.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometer.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerEmpty.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerEmpty.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerFull.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerFull.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerHalf.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerHalf.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerQuarter.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerQuarter.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerThreeQuarters.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerThreeQuarters.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThumbsDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThumbsDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThumbsUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThumbsUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThumbtack.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThumbtack.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTicketAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTicketAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTimes.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTimes.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTimesCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTimesCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTint.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTint.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTintSlash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTintSlash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTired.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTired.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faToggleOff.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faToggleOff.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faToggleOn.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faToggleOn.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faToolbox.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faToolbox.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTooth.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTooth.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrademark.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrademark.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrain.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrain.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTransgender.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTransgender.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTransgenderAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTransgenderAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrashAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrashAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTree.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTree.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrophy.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrophy.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTruck.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTruck.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTruckLoading.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTruckLoading.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTruckMoving.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTruckMoving.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTshirt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTshirt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTty.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTty.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTv.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTv.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUmbrella.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUmbrella.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUmbrellaBeach.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUmbrellaBeach.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnderline.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnderline.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUndo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUndo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUndoAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUndoAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUniversalAccess.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUniversalAccess.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUniversity.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUniversity.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnlink.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnlink.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnlock.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnlock.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnlockAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnlockAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUpload.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUpload.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUser.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUser.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserAltSlash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserAltSlash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserAstronaut.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserAstronaut.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserCheck.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserCheck.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserCircle.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserCircle.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserClock.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserClock.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserCog.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserCog.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserEdit.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserEdit.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserFriends.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserFriends.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserGraduate.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserGraduate.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserLock.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserLock.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserMd.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserMd.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserMinus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserMinus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserNinja.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserNinja.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserPlus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserPlus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserSecret.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserSecret.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserShield.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserShield.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserSlash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserSlash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserTag.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserTag.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserTie.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserTie.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserTimes.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserTimes.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUsers.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUsers.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUsersCog.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUsersCog.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUtensilSpoon.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUtensilSpoon.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUtensils.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUtensils.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVectorSquare.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVectorSquare.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVenus.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVenus.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVenusDouble.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVenusDouble.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVenusMars.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVenusMars.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVial.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVial.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVials.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVials.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVideo.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVideo.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVideoSlash.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVideoSlash.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolleyballBall.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolleyballBall.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolumeDown.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolumeDown.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolumeOff.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolumeOff.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolumeUp.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolumeUp.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWalking.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWalking.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWallet.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWallet.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWarehouse.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWarehouse.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWeight.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWeight.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWeightHanging.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWeightHanging.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWheelchair.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWheelchair.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWifi.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWifi.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowClose.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowClose.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowMaximize.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowMaximize.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowMinimize.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowMinimize.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowRestore.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowRestore.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWineGlass.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWineGlass.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWineGlassAlt.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWineGlassAlt.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWonSign.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWonSign.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWrench.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWrench.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faXRay.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faXRay.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faYenSign.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faYenSign.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/index.d.ts create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/index.es.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/index.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/package.json create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/css/fa-svg-with-js.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/css/fa-svg-with-js.min.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-brands.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-brands.min.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-regular.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-regular.min.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-solid.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-solid.min.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-v4-shims.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-v4-shims.min.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fontawesome-all.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fontawesome-all.min.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fontawesome.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fontawesome.min.js create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/use-on-desktop/Font Awesome 5 Brands-Regular-400.otf create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/use-on-desktop/Font Awesome 5 Free-Regular-400.otf create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/use-on-desktop/Font Awesome 5 Free-Solid-900.otf create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/brands.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/brands.min.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/fa-brands.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/fa-brands.min.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/fa-regular.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/fa-regular.min.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/fa-solid.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/fa-solid.min.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/fontawesome-all.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/fontawesome-all.min.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/fontawesome.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/fontawesome.min.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/regular.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/regular.min.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/solid.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/solid.min.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/v4-shims.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/v4-shims.min.css create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_animated.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_bordered-pulled.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_core.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_fixed-width.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_icons.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_larger.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_list.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_mixins.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_rotated-flipped.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_screen-reader.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_shims.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_stacked.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_variables.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/brands.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/fa-brands.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/fa-regular.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/fa-solid.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/fontawesome.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/regular.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/solid.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/v4-shims.less create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_animated.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_bordered-pulled.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_core.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_fixed-width.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_icons.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_larger.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_list.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_mixins.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_rotated-flipped.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_screen-reader.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_shims.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_stacked.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_variables.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/brands.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/fa-brands.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/fa-regular.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/fa-solid.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/fontawesome.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/regular.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/solid.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/v4-shims.scss create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-brands-400.eot create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-brands-400.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-brands-400.ttf create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-brands-400.woff create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-brands-400.woff2 create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-regular-400.eot create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-regular-400.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-regular-400.ttf create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-regular-400.woff create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-regular-400.woff2 create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-solid-900.eot create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-solid-900.svg create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-solid-900.ttf create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-solid-900.woff create mode 100644 site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-solid-900.woff2 create mode 100644 site/themes/docsy/assets/vendor/bootstrap/.gitattributes create mode 100644 site/themes/docsy/assets/vendor/bootstrap/.gitignore create mode 100644 site/themes/docsy/assets/vendor/bootstrap/CNAME create mode 100644 site/themes/docsy/assets/vendor/bootstrap/CODE_OF_CONDUCT.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/Gemfile create mode 100644 site/themes/docsy/assets/vendor/bootstrap/Gemfile.lock create mode 100644 site/themes/docsy/assets/vendor/bootstrap/LICENSE create mode 100644 site/themes/docsy/assets/vendor/bootstrap/README.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/_config.yml create mode 100644 site/themes/docsy/assets/vendor/bootstrap/build/build-plugins.js create mode 100755 site/themes/docsy/assets/vendor/bootstrap/build/change-version.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/build/gcp-key.json.enc create mode 100644 site/themes/docsy/assets/vendor/bootstrap/build/generate-sri.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/build/lint-vars.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/build/postcss.config.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/build/rollup.config.js create mode 100755 site/themes/docsy/assets/vendor/bootstrap/build/ship.sh create mode 100644 site/themes/docsy/assets/vendor/bootstrap/build/svgo.yml create mode 100644 site/themes/docsy/assets/vendor/bootstrap/build/vnu-jar.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/build/workbox.config.json create mode 100644 site/themes/docsy/assets/vendor/bootstrap/build/workbox.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/composer.json create mode 100644 site/themes/docsy/assets/vendor/bootstrap/dist/css/bootstrap-grid.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/dist/css/bootstrap-grid.css.map create mode 100644 site/themes/docsy/assets/vendor/bootstrap/dist/css/bootstrap-grid.min.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/dist/css/bootstrap-grid.min.css.map create mode 100644 site/themes/docsy/assets/vendor/bootstrap/dist/css/bootstrap-reboot.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/dist/css/bootstrap-reboot.css.map create mode 100644 site/themes/docsy/assets/vendor/bootstrap/dist/css/bootstrap-reboot.min.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/dist/css/bootstrap-reboot.min.css.map create mode 100644 site/themes/docsy/assets/vendor/bootstrap/dist/css/bootstrap.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/dist/css/bootstrap.css.map create mode 100644 site/themes/docsy/assets/vendor/bootstrap/dist/css/bootstrap.min.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/dist/css/bootstrap.min.css.map create mode 100644 site/themes/docsy/assets/vendor/bootstrap/dist/js/bootstrap.bundle.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/dist/js/bootstrap.bundle.js.map create mode 100644 site/themes/docsy/assets/vendor/bootstrap/dist/js/bootstrap.bundle.min.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/dist/js/bootstrap.bundle.min.js.map create mode 100644 site/themes/docsy/assets/vendor/bootstrap/dist/js/bootstrap.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/dist/js/bootstrap.js.map create mode 100644 site/themes/docsy/assets/vendor/bootstrap/dist/js/bootstrap.min.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/dist/js/bootstrap.min.js.map create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/dist/alert.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/dist/alert.js.map create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/dist/button.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/dist/button.js.map create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/dist/carousel.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/dist/carousel.js.map create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/dist/collapse.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/dist/collapse.js.map create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/dist/dropdown.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/dist/dropdown.js.map create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/dist/index.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/dist/index.js.map create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/dist/modal.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/dist/modal.js.map create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/dist/popover.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/dist/popover.js.map create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/dist/scrollspy.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/dist/scrollspy.js.map create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/dist/tab.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/dist/tab.js.map create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/dist/tooltip.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/dist/tooltip.js.map create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/dist/util.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/dist/util.js.map create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/src/alert.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/src/button.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/src/carousel.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/src/collapse.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/src/dropdown.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/src/index.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/src/modal.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/src/popover.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/src/scrollspy.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/src/tab.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/src/tooltip.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/src/util.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/README.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/browsers.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/index.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/karma-browserstack.conf.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/karma-bundle.conf.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/karma.conf.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/unit/alert.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/unit/button.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/unit/carousel.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/unit/collapse.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/unit/dropdown.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/unit/modal.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/unit/popover.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/unit/scrollspy.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/unit/tab.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/unit/tooltip.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/unit/util.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/visual/alert.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/visual/button.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/visual/carousel.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/visual/collapse.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/visual/dropdown.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/visual/modal.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/visual/popover.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/visual/scrollspy.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/visual/tab.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/js/tests/visual/tooltip.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/nuget/MyGet.ps1 create mode 100644 site/themes/docsy/assets/vendor/bootstrap/nuget/bootstrap.nuspec create mode 100644 site/themes/docsy/assets/vendor/bootstrap/nuget/bootstrap.sass.nuspec create mode 100644 site/themes/docsy/assets/vendor/bootstrap/package-lock.json create mode 100644 site/themes/docsy/assets/vendor/bootstrap/package.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/package.json create mode 100644 site/themes/docsy/assets/vendor/bootstrap/sache.json create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_alert.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_badge.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_breadcrumb.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_button-group.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_buttons.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_card.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_carousel.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_close.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_code.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_custom-forms.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_dropdown.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_forms.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_functions.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_grid.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_images.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_input-group.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_jumbotron.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_list-group.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_media.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_mixins.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_modal.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_nav.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_navbar.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_pagination.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_popover.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_print.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_progress.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_reboot.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_root.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_tables.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_tooltip.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_transitions.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_type.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_utilities.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/_variables.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/bootstrap-grid.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/bootstrap-reboot.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/bootstrap.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_alert.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_background-variant.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_badge.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_border-radius.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_box-shadow.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_breakpoints.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_buttons.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_caret.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_clearfix.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_float.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_forms.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_gradients.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_grid-framework.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_grid.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_hover.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_image.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_list-group.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_lists.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_nav-divider.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_pagination.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_reset-text.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_resize.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_screen-reader.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_size.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_table-row.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_text-emphasis.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_text-hide.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_text-truncate.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_transition.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/mixins/_visibility.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/utilities/_align.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/utilities/_background.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/utilities/_borders.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/utilities/_clearfix.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/utilities/_display.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/utilities/_embed.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/utilities/_flex.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/utilities/_float.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/utilities/_position.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/utilities/_screenreaders.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/utilities/_shadows.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/utilities/_sizing.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/utilities/_spacing.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/utilities/_text.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/scss/utilities/_visibility.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_data/breakpoints.yml create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_data/browser-bugs.yml create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_data/browser-features.yml create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_data/colors.yml create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_data/docs-versions.yml create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_data/examples.yml create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_data/grays.yml create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_data/nav.yml create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_data/theme-colors.yml create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_data/translations.yml create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_includes/ads.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_includes/bugify.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_includes/callout-danger-async-methods.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_includes/callout-info-mediaqueries-breakpoints.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_includes/callout-warning-color-assistive-technologies.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_includes/callout.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_includes/docs-navbar.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_includes/docs-sidebar.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_includes/example.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_includes/favicons.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_includes/footer.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_includes/header.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_includes/icons/bootstrap.svg create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_includes/icons/download.svg create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_includes/icons/github.svg create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_includes/icons/import.svg create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_includes/icons/lightning.svg create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_includes/icons/menu.svg create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_includes/icons/slack.svg create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_includes/icons/twitter.svg create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_includes/scripts.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_includes/skippy.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_includes/social.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_layouts/default.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_layouts/docs.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_layouts/examples.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_layouts/home.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/_layouts/simple.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/about/brand.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/about/license.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/about/overview.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/about/translations.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/brand/bootstrap-outline.svg create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/brand/bootstrap-punchout.svg create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/brand/bootstrap-social-logo.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/brand/bootstrap-social.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/brand/bootstrap-solid.svg create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/css/docs.min.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/css/docs.min.css.map create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/img/bootstrap-stack.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/img/bootstrap-themes.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/img/favicons/android-chrome-192x192.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/img/favicons/android-chrome-512x512.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/img/favicons/apple-touch-icon.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/img/favicons/browserconfig.xml create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/img/favicons/favicon-16x16.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/img/favicons/favicon-32x32.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/img/favicons/manifest.json create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/img/favicons/mstile-144x144.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/img/favicons/mstile-150x150.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/img/favicons/mstile-310x150.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/img/favicons/mstile-310x310.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/img/favicons/mstile-70x70.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/img/favicons/safari-pinned-tab.svg create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/js/docs.min.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/js/src/application.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/js/src/ie-emulation-modes-warning.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/js/src/pwa.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/js/src/search.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/js/vendor/anchor.min.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/js/vendor/clipboard.min.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/js/vendor/holder.min.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/js/vendor/jquery-slim.min.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/js/vendor/popper.min.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/scss/_ads.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/scss/_algolia.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/scss/_anchor.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/scss/_brand.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/scss/_browser-bugs.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/scss/_buttons.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/scss/_callouts.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/scss/_clipboard-js.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/scss/_colors.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/scss/_component-examples.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/scss/_content.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/scss/_examples.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/scss/_footer.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/scss/_masthead.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/scss/_nav.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/scss/_sidebar.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/scss/_skiplink.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/scss/_syntax.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/scss/_variables.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/assets/scss/docs.scss create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/browser-bugs.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/components/alerts.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/components/badge.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/components/breadcrumb.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/components/button-group.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/components/buttons.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/components/card.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/components/carousel.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/components/collapse.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/components/dropdowns.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/components/forms.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/components/input-group.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/components/jumbotron.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/components/list-group.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/components/modal.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/components/navbar.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/components/navs.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/components/pagination.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/components/popovers.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/components/progress.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/components/scrollspy.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/components/tooltips.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/content/code.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/content/figures.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/content/images.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/content/reboot.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/content/tables.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/content/typography.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/album/album.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/album/index.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/blog/blog.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/blog/index.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/carousel/carousel.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/carousel/index.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/checkout/form-validation.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/checkout/index.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/cover/cover.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/cover/index.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/dashboard/dashboard.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/dashboard/index.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/floating-labels/floating-labels.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/floating-labels/index.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/grid/grid.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/grid/index.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/index.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/jumbotron/index.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/jumbotron/jumbotron.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/navbar-bottom/index.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/navbar-fixed/index.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/navbar-fixed/navbar-top-fixed.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/navbar-static/index.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/navbar-static/navbar-top.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/navbars/index.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/navbars/navbar.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/offcanvas/index.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/offcanvas/offcanvas.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/offcanvas/offcanvas.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/pricing/index.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/pricing/pricing.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/product/index.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/product/product.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/screenshots/album.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/screenshots/blog.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/screenshots/carousel.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/screenshots/checkout.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/screenshots/cover.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/screenshots/dashboard.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/screenshots/floating-labels.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/screenshots/grid.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/screenshots/jumbotron.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/screenshots/navbar-bottom.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/screenshots/navbar-fixed.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/screenshots/navbar-static.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/screenshots/navbars.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/screenshots/offcanvas.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/screenshots/pricing.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/screenshots/product.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/screenshots/sign-in.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/screenshots/starter-template.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/screenshots/sticky-footer-navbar.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/screenshots/sticky-footer.png create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/sign-in/index.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/sign-in/signin.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/starter-template/index.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/starter-template/starter-template.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/sticky-footer-navbar/index.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/sticky-footer-navbar/sticky-footer-navbar.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/sticky-footer/index.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/sticky-footer/sticky-footer.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/tooltip-viewport/index.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/tooltip-viewport/tooltip-viewport.css create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/examples/tooltip-viewport/tooltip-viewport.js create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/extend/approach.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/extend/icons.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/extend/index.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/getting-started/accessibility.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/getting-started/best-practices.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/getting-started/browsers-devices.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/getting-started/build-tools.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/getting-started/contents.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/getting-started/download.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/getting-started/introduction.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/getting-started/javascript.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/getting-started/theming.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/getting-started/webpack.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/layout/grid.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/layout/media-object.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/layout/overview.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/layout/utilities-for-layout.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/migration.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/utilities/borders.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/utilities/clearfix.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/utilities/close-icon.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/utilities/colors.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/utilities/display.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/utilities/embed.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/utilities/flex.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/utilities/float.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/utilities/image-replacement.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/utilities/position.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/utilities/screenreaders.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/utilities/shadows.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/utilities/sizing.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/utilities/spacing.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/utilities/text.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/utilities/vertical-align.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/4.1/utilities/visibility.md create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/docs/versions.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/favicon.ico create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/index.html create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/robots.txt create mode 100644 site/themes/docsy/assets/vendor/bootstrap/site/sw.js create mode 100644 site/themes/docsy/config.toml create mode 100644 site/themes/docsy/i18n/en.toml create mode 100644 site/themes/docsy/i18n/no.toml create mode 100644 site/themes/docsy/layouts/_default/baseof.html create mode 100644 site/themes/docsy/layouts/_default/content.html create mode 100644 site/themes/docsy/layouts/_default/list.html create mode 100644 site/themes/docsy/layouts/_default/list.rss.xml create mode 100644 site/themes/docsy/layouts/_default/search.html create mode 100644 site/themes/docsy/layouts/_default/single.html create mode 100644 site/themes/docsy/layouts/blog/baseof.html create mode 100644 site/themes/docsy/layouts/blog/content.html create mode 100644 site/themes/docsy/layouts/blog/list.html create mode 100644 site/themes/docsy/layouts/blog/single.html create mode 100644 site/themes/docsy/layouts/community/list.html create mode 100644 site/themes/docsy/layouts/docs/baseof.html create mode 100644 site/themes/docsy/layouts/docs/list.html create mode 100644 site/themes/docsy/layouts/docs/single.html create mode 100644 site/themes/docsy/layouts/home.html create mode 100644 site/themes/docsy/layouts/partials/breadcrumb.html create mode 100644 site/themes/docsy/layouts/partials/community_links.html create mode 100644 site/themes/docsy/layouts/partials/favicons.html create mode 100644 site/themes/docsy/layouts/partials/featured-image.html create mode 100644 site/themes/docsy/layouts/partials/feedback.html create mode 100644 site/themes/docsy/layouts/partials/footer.html create mode 100644 site/themes/docsy/layouts/partials/head-css.html create mode 100644 site/themes/docsy/layouts/partials/head.html create mode 100644 site/themes/docsy/layouts/partials/hooks/body-end.html create mode 100644 site/themes/docsy/layouts/partials/hooks/head-end.html create mode 100644 site/themes/docsy/layouts/partials/navbar-lang-selector.html create mode 100644 site/themes/docsy/layouts/partials/navbar.html create mode 100644 site/themes/docsy/layouts/partials/page-meta-lastmod.html create mode 100644 site/themes/docsy/layouts/partials/page-meta-links.html create mode 100644 site/themes/docsy/layouts/partials/pager.html create mode 100644 site/themes/docsy/layouts/partials/scripts.html create mode 100644 site/themes/docsy/layouts/partials/search-input.html create mode 100644 site/themes/docsy/layouts/partials/sidebar-tree.html create mode 100644 site/themes/docsy/layouts/partials/sidebar.html create mode 100644 site/themes/docsy/layouts/partials/toc.html create mode 100644 site/themes/docsy/layouts/shortcodes/alert.html create mode 100644 site/themes/docsy/layouts/shortcodes/blocks/cover.html create mode 100644 site/themes/docsy/layouts/shortcodes/blocks/feature.html create mode 100644 site/themes/docsy/layouts/shortcodes/blocks/lead.html create mode 100644 site/themes/docsy/layouts/shortcodes/blocks/link-down.html create mode 100644 site/themes/docsy/layouts/shortcodes/blocks/section.html create mode 100644 site/themes/docsy/layouts/shortcodes/imgproc.html create mode 100644 site/themes/docsy/postcss.config.js create mode 100644 site/themes/docsy/static/favicons/android-144x144.png create mode 100644 site/themes/docsy/static/favicons/android-192x192.png create mode 100644 site/themes/docsy/static/favicons/android-36x36.png create mode 100644 site/themes/docsy/static/favicons/android-48x48.png create mode 100644 site/themes/docsy/static/favicons/android-72x72.png create mode 100644 site/themes/docsy/static/favicons/android-96x196.png create mode 100644 site/themes/docsy/static/favicons/apple-touch-icon-180x180.png create mode 100644 site/themes/docsy/static/favicons/favicon-1024.png create mode 100644 site/themes/docsy/static/favicons/favicon-16x16.png create mode 100644 site/themes/docsy/static/favicons/favicon-256.png create mode 100644 site/themes/docsy/static/favicons/favicon-32x32.png create mode 100644 site/themes/docsy/static/favicons/favicon.ico create mode 100644 site/themes/docsy/static/favicons/pwa-192x192.png create mode 100644 site/themes/docsy/static/favicons/pwa-512x512.png create mode 100644 site/themes/docsy/static/favicons/tile150x150.png create mode 100644 site/themes/docsy/static/favicons/tile310x150.png create mode 100644 site/themes/docsy/static/favicons/tile310x310.png create mode 100644 site/themes/docsy/static/favicons/tile70x70.png create mode 100644 site/themes/docsy/static/webfonts/fa-brands-400.eot create mode 100644 site/themes/docsy/static/webfonts/fa-brands-400.svg create mode 100644 site/themes/docsy/static/webfonts/fa-brands-400.ttf create mode 100644 site/themes/docsy/static/webfonts/fa-brands-400.woff create mode 100644 site/themes/docsy/static/webfonts/fa-brands-400.woff2 create mode 100644 site/themes/docsy/static/webfonts/fa-regular-400.eot create mode 100644 site/themes/docsy/static/webfonts/fa-regular-400.svg create mode 100644 site/themes/docsy/static/webfonts/fa-regular-400.ttf create mode 100644 site/themes/docsy/static/webfonts/fa-regular-400.woff create mode 100644 site/themes/docsy/static/webfonts/fa-regular-400.woff2 create mode 100644 site/themes/docsy/static/webfonts/fa-solid-900.eot create mode 100644 site/themes/docsy/static/webfonts/fa-solid-900.svg create mode 100644 site/themes/docsy/static/webfonts/fa-solid-900.ttf create mode 100644 site/themes/docsy/static/webfonts/fa-solid-900.woff create mode 100644 site/themes/docsy/static/webfonts/fa-solid-900.woff2 create mode 100644 site/vanity.yaml diff --git a/.gitignore b/.gitignore index 40ba7c49b7..f48773f319 100644 --- a/.gitignore +++ b/.gitignore @@ -18,6 +18,7 @@ !.gitattributes !.dockerignore !.golangci.yml +!.gcloudignore *.iml bin *.o diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1a2e744ee2..95b4c5f2f4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -27,6 +27,8 @@ Participation in this project comes under the [Contributor Covenant Code of Cond "[kind/design](https://github.com/googleprivate/agones/issues?q=is%3Aissue+is%3Aopen+label%3Akind%2Fdesign)" outlining the feature that you wish to build, and describing how it will be implemented. This gives a chance for review to happen early, and ensures no wasted effort occurs. +- For new features, documentation *must* be included. Review the [Documentation Editing and Contribution](https://agones.dev/site/docs/contribute/) + guide for details. - All submissions, including submissions by project members, will require review before being merged. - Once review has occurred, please rebase your PR down to a single commit. This will ensure a nice clean Git history. - Finally - *Thanks* for considering submitting code to Agones! diff --git a/README.md b/README.md index a650b370bc..cc77bf6446 100644 --- a/README.md +++ b/README.md @@ -12,73 +12,24 @@ _Agones, is derived from the Greek word agōn which roughly translates to “con ## Disclaimer This software is currently alpha, and subject to change. Not to be used in production systems. -## Major Features -- Be able to define a `GameServer` within Kubernetes - either through yaml or via the API -- Manage GameServer lifecycles - including health checking and connection information. -- Client SDKs for integration with dedicated game servers to work with Agones. - ## Why does this project exist? -For more details on why this project was written, read the -[announcement blog post](https://cloudplatform.googleblog.com/2018/03/introducing-Agones-open-source-multiplayer-dedicated-game-server-hosting-built-on-Kubernetes.html). +Agones replaces usual bespoke or proprietary cluster management and game server scaling solutions with a [Kubernetes](https://kubernetes.io/) cluster +that includes the Agones custom _[Kubernetes Controller](https://kubernetes.io/docs/concepts/api-extension/custom-resources/#custom-controllers)_ and matching [Custom Resource Definitions](https://kubernetes.io/docs/concepts/api-extension/custom-resources/#customresourcedefinitions) for _GameServers_, _Fleets_ and more. -## Requirements -- Kubernetes cluster version 1.11+ - - [Minikube](https://github.com/kubernetes/minikube), [Google Kubernetes Engine](https://cloud.google.com/kubernetes-engine/) and [Azure Kubernetes Service](https://azure.microsoft.com/en-us/services/kubernetes-service/) have been tested - - If you are creating and managing your own Kubernetes cluster, the - [MutatingAdmissionWebhook](https://kubernetes.io/docs/admin/admission-controllers/#mutatingadmissionwebhook-beta-in-19), and - [ValidatingAdmissionWebhook](https://kubernetes.io/docs/admin/admission-controllers/#validatingadmissionwebhook-alpha-in-18-beta-in-19) - admission controllers are required. - We also recommend following the - [recommended set of admission controllers](https://kubernetes.io/docs/admin/admission-controllers/#is-there-a-recommended-set-of-admission-controllers-to-use). -- Firewall access for the range of ports that Game Servers can be connected to in the cluster. -- Game Servers must have the [project SDK](sdks) integrated, to manage Game Server state, health checking, etc. +With Agones, Kubernetes gets native abilities to create, run, manage and scale dedicated game server processes within Kubernetes clusters using standard Kubernetes tooling and APIs. This model also allows any matchmaker to interact directly with Agones via the Kubernetes API to provision a dedicated a game server. -## Installation +For more details on why this project was written, read the +[announcement blog post](https://cloudplatform.googleblog.com/2018/03/introducing-Agones-open-source-multiplayer-dedicated-game-server-hosting-built-on-Kubernetes.html). -Follow [these instructions](install/README.md) to create a cluster on Google Kubernetes Engine (GKE), Minikube or Azure Kubernetes Service (AKS), and install Agones. +## Major Features +- Define a single `GameServer`, and/or large game server `Fleets` within Kubernetes - either through yaml or via the API +- Manage GameServer lifecycles - including health checking and connection information. +- `Fleet` Autoscaling capabilities that integrate with Kubernetes' native cluster autoscaling +- Gameserver specific metric exports and dashboards for ops teams ## Usage -Documentation and usage guides on how to develop and host dedicated game servers on top of Agones. - -### Quickstarts: - - [Create a Game Server](./docs/create_gameserver.md) - - [Create a Game Server Fleet](./docs/create_fleet.md) - - [Create a Fleet Autoscaler](./docs/create_fleetautoscaler.md) - - [Create a Webhook for FleetAutoscaler](./docs/create_webhook_fleetautoscaler.md) - - [Edit Your First Game Server (Go)](./docs/edit_first_game_server.md) - -### Guides - - [Integrating the Game Server SDK](sdks) - - [GameServer Health Checking](./docs/health_checking.md) - - [Latency Testing with Multiple Clusters](./docs/ping_service.md) - - [Accessing Agones via the Kubernetes API](./docs/access_api.md) - - [Troubleshooting](./docs/troubleshooting.md) - -### Tutorials - - [Create an Allocator Service (Go)](./docs/create_allocator_service.md) - Learn to programmatically access Agones via the API - -### Reference -- [Game Server Specification](./docs/gameserver_spec.md) -- [Fleet Specification](./docs/fleet_spec.md) -- [Fleet Autoscaler Specification](./docs/fleetautoscaler_spec.md) -- [Metrics](./docs/metrics.md) - -### Examples -- [Full GameServer Configuration](./examples/gameserver.yaml) -- [Full Fleet Configuration](./examples/fleet.yaml) -- [Full Fleet Allocation Configuration](./examples/fleetallocation.yaml) -- [Full Autoscaler Configuration](./examples/fleetautoscaler.yaml) -- [Simple UDP](./examples/simple-udp) (Go) - simple server and client that send UDP packets back and forth. -- [CPP Simple](./examples/cpp-simple) (C++) - C++ example that starts up, stays healthy and then shuts down after 60 seconds. -- [Xonotic](./examples/xonotic) - Wraps the SDK around the open source FPS game [Xonotic](http://www.xonotic.org) and hosts it on Agones. - -### Advanced -- [Scheduling and Autoscaling](./docs/scheduling_autoscaling.md) -- [Limiting CPU/Memory](./docs/limiting_resources.md) - -### Third Party Content -- [Videos and Presentation](./docs/videos_presentations.md) +Documentation can be found on the [Agones website](https://agones.dev/site/docs/). ## Get involved @@ -92,7 +43,7 @@ Participation in this project comes under the [Contributor Covenant Code of Cond ## Development and Contribution -Please read the [contributing](CONTRIBUTING.md) guide for directions on submitting Pull Requests to Agones. +Please read the [contributing](CONTRIBUTING.md) guide for directions on submitting Pull Requests to Agones, and community membership governance. See the [Developing, Testing and Building Agones](build/README.md) documentation for developing, testing and building Agones from source. diff --git a/agones-logo.svg b/agones-logo.svg new file mode 100644 index 0000000000..f57acedf48 --- /dev/null +++ b/agones-logo.svg @@ -0,0 +1,31 @@ + + + + + + image/svg+xml + + + + + + + + diff --git a/build/Makefile b/build/Makefile index 0f207370b5..1d4e737242 100644 --- a/build/Makefile +++ b/build/Makefile @@ -121,6 +121,15 @@ ifndef FULL_BUILD zip_flags = -0 endif +# ___ _ _ +# |_ _|_ __ ___| |_ _ __| | ___ ___ +# | || '_ \ / __| | | | |/ _` |/ _ \ __| +# | || | | | (__| | |_| | (_| | __\__ \ +# |___|_| |_|\___|_|\__,_|\__,_|\___|___/ +# + +include ./includes/website.mk + # _____ _ # |_ _|_ _ _ __ __ _ ___| |_ ___ # | |/ _` | '__/ _` |/ _ \ __/ __| @@ -163,7 +172,7 @@ push-release-chart: $(ensure-build-image) build-sdks: build-sdk-cpp # Run all tests -test: $(ensure-build-image) test-go test-install-yaml +test: $(ensure-build-image) test-go test-install-yaml site-test # Run go tests test-go: @@ -636,7 +645,6 @@ kind-push: rm -f $$BUNDLE_FILE # Runs e2e tests against our kind cluster -kind-test-e2e: kind-test-e2e: $(MAKE) KUBECONFIG="$(shell kind get kubeconfig-path --name="$(KIND_PROFILE)")" \ DOCKER_RUN_ARGS=--network=host \ diff --git a/build/build-image/Dockerfile b/build/build-image/Dockerfile index ba881c5613..38f42e5117 100644 --- a/build/build-image/Dockerfile +++ b/build/build-image/Dockerfile @@ -19,7 +19,7 @@ FROM gcr.io/agones-images/grpc-cxx:1.16.1 RUN apt-get update && \ - apt-get install -y wget psmisc rsync make python bash-completion zip nano jq graphviz && \ + apt-get install -y wget psmisc rsync make python bash-completion zip nano jq graphviz linkchecker gettext-base && \ apt-get clean # _ @@ -62,7 +62,7 @@ RUN wget -q https://dl.google.com/dl/cloudsdk/release/google-cloud-sdk.zip && un ENV PATH /usr/local/go/bin:/go/bin:/opt/google-cloud-sdk/bin:$PATH # RUN gcloud components update -RUN gcloud components update +RUN gcloud components update && gcloud components install app-engine-go # overwrite kubectl as we want a specific version ENV KUBECTL_VER 1.11.5 @@ -109,6 +109,22 @@ RUN curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.s RUN mkdir -p /go/src && cd /go/src && mkdir -p k8s.io && cd k8s.io && \ git clone -b kubernetes-1.11.5 --depth=3 https://github.com/kubernetes/code-generator.git +# +# \ \ / /__| |__ ___(_) |_ ___ +# \ \ /\ / / _ \ '_ \/ __| | __/ _ \ +# \ V V / __/ |_) \__ \ | |_ __/ +# \_/\_/ \___|_.__/|___/_|\__\___| +# + +RUN mkdir /tmp/hugo && \ + wget -O /tmp/hugo/hugo.tar.gz https://github.com/gohugoio/hugo/releases/download/v0.53/hugo_extended_0.53_Linux-64bit.tar.gz && \ + tar -zxvf /tmp/hugo/hugo.tar.gz -C /tmp/hugo/ && \ + mv /tmp/hugo/hugo /usr/local/bin/ && \ + rm -r /tmp/hugo + +RUN curl -sL https://deb.nodesource.com/setup_11.x | bash - && \ + apt-get install -y nodejs + # make sure we keep the path to go RUN echo "export PATH=/usr/local/go/bin:/go/bin/:\$PATH" >> /root/.bashrc # make nano the editor diff --git a/build/includes/website.mk b/build/includes/website.mk new file mode 100644 index 0000000000..8b7f5f177a --- /dev/null +++ b/build/includes/website.mk @@ -0,0 +1,68 @@ +# Copyright 2018 Google Inc. All Rights Reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + + +# __ __ _ _ _ +# \ \ / /__| |__ ___(_) |_ ___ +# \ \ /\ / / _ \ '_ \/ __| | __/ _ \ +# \ V V / __/ |_) \__ \ | |_ __/ +# \_/\_/ \___|_.__/|___/_|\__\___| +# + +# +# Website targets +# + +# generate the latest website +site-server: ARGS ?=-F +site-server: ENV ?= RELEASE_VERSION="$(base_version)" +site-server: ensure-build-image + docker run --rm $(common_mounts) --workdir=$(mount_path)/site $(DOCKER_RUN_ARGS) -p 1313:1313 $(build_tag) bash -c \ + "$(ENV) hugo server --watch --baseURL=http://localhost:1313/ --bind=0.0.0.0 $(ARGS)" + +site-static: ensure-build-image + -docker run --rm $(common_mounts) --workdir=$(mount_path)/site $(DOCKER_RUN_ARGS) $(build_tag) rm -r ./public + -mkdir $(agones_path)/site/public + # for some reason, this only work locally + docker run --rm $(common_mounts) --workdir=$(mount_path)/site $(DOCKER_RUN_ARGS) $(build_tag) \ + bash -c "npm list postcss-cli || npm install postcss-cli" + docker run --rm $(common_mounts) --workdir=$(mount_path)/site $(DOCKER_RUN_ARGS) $(build_tag) \ + bash -c "npm list autoprefixer || npm install autoprefixer" + docker run --rm $(common_mounts) --workdir=$(mount_path)/site $(DOCKER_RUN_ARGS) $(build_tag) bash -c \ + "$(ENV) hugo --config=config.toml $(ARGS)" + +site-gen-app-yaml: SERVICE ?= default +site-gen-app-yaml: + docker run --rm $(common_mounts) --workdir=$(mount_path)/site $(DOCKER_RUN_ARGS) $(build_tag) bash -c \ + "SERVICE=$(SERVICE) envsubst < app.yaml > .app.yaml" + +site-deploy: site-gen-app-yaml site-static + docker run --rm $(common_mounts) --workdir=$(mount_path)/site $(DOCKER_RUN_ARGS) $(build_tag) \ + gcloud app deploy .app.yaml --no-promote --version=$(shell git rev-parse --short=7 HEAD) + +site-static-preview: + $(MAKE) site-static ARGS="-F" ENV=RELEASE_VERSION=$(base_version) + +site-deploy-preview: site-static-preview + $(MAKE) site-deploy SERVICE=preview + +site-test: + docker run --rm --name=agones-website $(common_mounts) --workdir=$(mount_path)/site $(DOCKER_RUN_ARGS) $(build_tag) \ + hugo server --watch --baseURL="http://localhost:1313/site/" & + until docker exec agones-website curl -o /dev/null --silent http://localhost:1313/site/; \ + do \ + echo "Waiting for server to start..."; \ + sleep 1; \ + done + ( trap 'docker stop agones-website' EXIT; docker exec agones-website linkchecker --anchors http://localhost:1313/site/ ) \ No newline at end of file diff --git a/cloudbuild.yaml b/cloudbuild.yaml index ca1b9b0cdf..b909db8154 100644 --- a/cloudbuild.yaml +++ b/cloudbuild.yaml @@ -30,9 +30,31 @@ steps: id: lint - name: "make-docker" dir: "build" - args: [ "test" ] # run tests + args: [ "-j", "3", "test" ] # run tests, in parallel waitFor: ['lint'] id: tests + +- name: "ubuntu" #initialise gopath/src folder + id: "gopath-create" + args: ["bash", "-c", "mkdir -p ./go"] + waitFor: ['tests'] +- name: "ubuntu" + id: "gopath-link" + args: ["bash", "-c", "ln -s `pwd` ./go/src"] + waitFor: ['gopath-create'] +- name: "make-docker" # build a preview of the website + id: "site-static" + dir: "build" + args: ["site-static-preview", "site-gen-app-yaml", "SERVICE=preview"] + waitFor: ['gopath-link'] +- name: "gcr.io/cloud-builders/gcloud" # deploy the preview of the website + id: "deploy-site-static" + dir: "/workspace/go/src/site" + args: ["app", "deploy", ".app.yaml", "--no-promote", "--version=$SHORT_SHA"] + waitFor: ['site-static'] + env: + - GOPATH=/workspace/go + - name: "make-docker" dir: "build" args: [ "build", "push" ] # build all the things, and push images diff --git a/docs/governance/templates/release_issue.md b/docs/governance/templates/release_issue.md index 9e949ca73d..1b82fd0b38 100644 --- a/docs/governance/templates/release_issue.md +++ b/docs/governance/templates/release_issue.md @@ -15,21 +15,25 @@ and copy it into a release issue. Fill in relevent values, found inside {} - [ ] Ensure the [helm `tag` value][values] is correct (should be the {version} if a full release, {version}-rc if release candidate) - [ ] Ensure the [helm `Chart` version values][chart] are correct (should be the {version} if a full release, {version}-rc if release candidate) - [ ] Run `make gen-install` -- [ ] Ensure all example images exist on gcr.io/agones-images -- [ ] If full release, update documentation with updated example images tags -- [ ] If RC release, update all ⚠️⚠️⚠️ warnings to: "**This is currently a release candidate feature**" -- [ ] If full release, remove all instances of "⚠️⚠️⚠️ **This is currently a development feature and has not been released** ⚠️⚠️⚠️" -- [ ] If full release, update install docs with the new release version +- [ ] Ensure all example images exist on gcr.io/agones-images- +- [ ] Create a *draft* release with the [release template][release-template] + - [ ] Make a `tag` with the release version. +- [ ] Site updated + - [ ] If full release, review and remove all instances of the `feature` shortcode + - [ ] Update to the new release branch (`release-branch` in config.toml) to {version}, or {version}-rc if release candidate. + - [ ] If full release, update site with the new release version (`release-version` in config.toml) to {version} + - [ ] If full release, update documentation with updated example images tags + - [ ] Copy the draft release content into a new `/site/content/en/blog/releases` content (this will be what you send via email). - [ ] Create PR with these changes, and merge them with approval - [ ] Confirm local git remote `upstream` points at `git@github.com:GoogleCloudPlatform/agones.git` - [ ] Run `git remote update && git checkout master && git reset --hard upstream/master` to ensure your code is in line with upstream (unless this is a hotfix, then do the same, but for the the release branch) -- [ ] Run `make do-release`. (if release candidate `make do-release RELEASE_VERSION={version}-rc`) to create and push the docker images and helm chart. +- [ ] Run `make do-release`. (if release candidate: `make do-release RELEASE_VERSION={version}-rc`) to create and push the docker images and helm chart. - [ ] Do a `helm repo add agones https://agones.dev/chart/stable` and verify that the new version is available via the command `helm search agones/` - [ ] Do a `helm install` and a smoke test to confirm everything is working. -- [ ] Create a release with the [release template][release-template] - - [ ] Make a `tag` with the release version. - - [ ] Attach all assets found in the `release` folder to the release. -- [ ] Send an email to the [mailing list][list] with the release details (copy-paste the github release) +- [ ] Attach all assets found in the `release` folder to the release. +- [ ] Submit the Release. +- [ ] Run `make site-deploy` (if release candidate: `make site-deploy SERVICE=rc`), and make it the default version +- [ ] Send an email to the [mailing list][list] with the release details (copy-paste the release blog post) - [ ] If full release, then increment the `base_version` in [`build/Makefile`][build-makefile] - [ ] Ensure the [helm `tag` value][values] is set to the next version (should be the {version}+0.1 if a full release, {version}+0.1-rc if release candidate) - [ ] Ensure the [helm `Chart` version values][chart] is set to the next version (should be the {version}+0.1 if a full release, {version} if release candidate) diff --git a/docs/videos_presentations.md b/docs/videos_presentations.md deleted file mode 100644 index 4cffe74106..0000000000 --- a/docs/videos_presentations.md +++ /dev/null @@ -1,11 +0,0 @@ -# Third Party Videos and Presentations - -Community contributed videos and presentations on Agones. - -## Presentations - -- [Agones: Scaling Multiplayer Dedicated Game Servers with Kubernetes (Cloud Next '18)](https://www.youtube.com/watch?v=CLNpkjolxYA) -- [Google Cloud Next '18 London: Carl Dionne, Development Director at Ubisoft Montreal](https://www.youtube.com/watch?v=5n-JlLA7bIc&feature=youtu.be&list=PLBgogxgQVM9s-lumfvF7qLSqqX5pT8G8Y&t=835) - -## Screencasts -- Agones: How Do I Docker and Kubernetes? [Part 1](https://www.youtube.com/watch?v=i4_zaztK6mE), [Part 2](https://www.youtube.com/watch?v=ZZXLDnmO1TM) \ No newline at end of file diff --git a/examples/autoscaler-webhook/README.md b/examples/autoscaler-webhook/README.md index ed115d1251..7631cc981b 100644 --- a/examples/autoscaler-webhook/README.md +++ b/examples/autoscaler-webhook/README.md @@ -9,7 +9,7 @@ When this endpoint is called, target Replica count gets calculated. If a fleet d Note that scaling up logic is based on the percentage of allocated gameservers in a fleet. If this fraction is more than threshold (i. e. 0.7) than `Scale` parameter in `FleetAutoscaleResponse` is set to `true` and `Replica` value is returned increased by the `scaleFactor` (in this example twice) which results in creating more `Ready` GameServers. If the fraction below the threshold (i. e. 0.3) we decrease the count of gameservers in a fleet. There is a `minReplicasCount` parameters which defined the lower limit of the gameservers number in a Fleet. -To learn how to deploy the fleet to GKE, please see the tutorial [Create a Fleet (Go)](../../docs/create_fleet.md). +To learn how to deploy the fleet to GKE, please see the tutorial [Create a Fleet (Go)](https://agones.dev/site/docs/getting-started/create-fleet/). ## Example flow diff --git a/examples/cpp-simple/README.md b/examples/cpp-simple/README.md index dcdd1ab5a9..0693b1ca07 100644 --- a/examples/cpp-simple/README.md +++ b/examples/cpp-simple/README.md @@ -9,4 +9,5 @@ It will - After 60 seconds, call `SDK::Shutdown()` to shut the server down. ## Building -Depends on the [`sdks/cpp`](../../sdks/cpp) SDK and its dependencies have been compiled and installed. \ No newline at end of file + +Depends on the [`sdks/cpp`](https://agones.dev/site/docs/guides/client-sdks/cpp/) SDK and its dependencies have been compiled and installed. \ No newline at end of file diff --git a/examples/rust-simple/README.md b/examples/rust-simple/README.md index 86e493088a..7692013313 100644 --- a/examples/rust-simple/README.md +++ b/examples/rust-simple/README.md @@ -10,7 +10,7 @@ It will ## Running by minikube -First of all, you have to configure Agones on minikude. Check out [these instructions](https://github.com/GoogleCloudPlatform/agones/blob/3b856a4b90862a3ea183643869f81801d4468220/install/README.md). +First of all, you have to configure Agones on minikude. Check out [these instructions](https://agones.dev/site/docs/installation/#setting-up-a-minikube-cluster). ``` $ eval $(minikube docker-env) diff --git a/examples/simple-udp/README.md b/examples/simple-udp/README.md index 8722b9e2ac..3593380ff4 100644 --- a/examples/simple-udp/README.md +++ b/examples/simple-udp/README.md @@ -10,5 +10,5 @@ When it receives a text packet, it will send back "ACK:" as an ech If it receives the text "EXIT", then it will `sys.Exit(0)` -To learn how to deploy your edited version of go server to gcp, please check out this link: [Edit Your First Game Server (Go)](../../../master/docs/edit_first_game_server.md), +To learn how to deploy your edited version of go server to gcp, please check out this link: [Edit Your First Game Server (Go)](https://agones.dev/site/docs/getting-started/edit-first-gameserver-go/), or also look at the [`Makefile`](./Makefile). diff --git a/install/helm/agones/README.md b/install/helm/agones/README.md index 1f22d92f3a..8d6cfb2f26 100644 --- a/install/helm/agones/README.md +++ b/install/helm/agones/README.md @@ -1,169 +1,5 @@ # Install Agones using Helm -This chart install the Agones application and defines deployment on a [Kubernetes](http://kubernetes.io) cluster using the [Helm](https://helm.sh) package manager. +This chart installs the Agones application and defines deployment on a [Kubernetes](http://kubernetes.io) cluster using the [Helm](https://helm.sh) package manager. -## Prerequisites - -- [Helm](https://docs.helm.sh/helm/) package manager 2.10.0+ -- Kubernetes 1.11+ -- Role-based access controls (RBAC) activated -- MutatingAdmissionWebhook and ValidatingAdmissionWebhook admission controllers activated, see [recommendation](https://kubernetes.io/docs/admin/admission-controllers/#is-there-a-recommended-set-of-admission-controllers-to-use) - -## Installing the Chart - -> If you don't have `Helm` installed locally, or `Tiller` installed in your Kubernetes cluster, read the [Using Helm](https://docs.helm.sh/using_helm/) documentation to get started. - -To install the chart with the release name `my-release` using our stable helm repository: - -```bash -$ helm repo add agones https://agones.dev/chart/stable -$ helm install --name my-release --namespace agones-system agones/agones -``` - -_We recommend to install Agones in its own namespaces (like `agones-system` as shown above) -you can use the helm `--namespace` parameter to specify a different namespace._ - -The command deploys Agones on the Kubernetes cluster with the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation. - -> **Tip**: List all releases using `helm list` - - -> If you are installing a development build of Agones (i.e. not the 0.4.0 release), you will need to install Agones the following way: - -```bash -$ cd install/helm/ -$ helm install --name my-release --namespace agones-system agones --set agones.image.tag=0.4.0-481970d -``` - -The full list of available tags is [here](https://console.cloud.google.com/gcr/images/agones-images/) - ---- - -## Namespaces - -By default Agones is configured to work with game servers deployed in the `default` namespace. If you are planning to use other namespace you can configure Agones via the parameter `gameservers.namespaces`. - -For example to use `default` **and** `xbox` namespaces: - -```bash -$ kubectl create namespace xbox -$ helm install --set "gameservers.namespaces={default,xbox}" --namespace agones-system --name my-release agones/agones -``` - -> You need to create your namespaces before installing Agones. - -If you want to add a new namespace afterward simply upgrade your release: - -```bash -$ kubectl create namespace ps4 -$ helm upgrade --set "gameservers.namespaces={default,xbox,ps4}" my-release agones/agones -``` - -## RBAC - -By default, `agones.rbacEnabled` is set to true. This enable RBAC support in Agones and must be true if RBAC is enabled in your cluster. - -The chart will take care of creating the required service accounts and roles for Agones. - -If you have RBAC disabled, or to put it another way, ABAC enabled, you should set this value to `false`. - -## Uninstalling the Chart - -To uninstall/delete the `my-release` deployment: - -```bash -$ helm delete my-release -``` - -The command removes all the Kubernetes components associated with the chart and deletes the release. - -## Configuration - -The following tables lists the configurable parameters of the Agones chart and their default values. - -| Parameter | Description | Default | -| --------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ---------------------- | -| `agones.rbacEnabled` | Creates RBAC resources. Must be set for any cluster configured with RBAC | `true` | -| `agones.crds.install` | Install the CRDs with this chart. Useful to disable if you want to subchart (since crd-install hook is broken), so you can copy the CRDs into your own chart. | `true` | -| `agones.crds.cleanupOnDelete` | Run the pre-delete hook to delete all GameServers and their backing Pods when deleting the helm chart, so that all CRDs can be removed on chart deletion | `true` | -| `agones.metrics.enabled` | Enables controller metrics on port `8080` and path `/metrics` | `true` | -| `agones.metrics.prometheusServiceDiscovery` | Adds annotations for Prometheus ServiceDiscovery (and also Strackdriver) | `true` | -| `agones.serviceaccount.controller` | Service account name for the controller | `agones-controller` | -| `agones.serviceaccount.sdk` | Service account name for the sdk | `agones-sdk` | -| `agones.image.registry` | Global image registry for all images | `gcr.io/agones-images` | -| `agones.image.tag` | Global image tag for all images | `0.4.0` | -| `agones.image.controller.name` | Image name for the controller | `agones-controller` | -| `agones.image.controller.pullPolicy` | Image pull policy for the controller | `IfNotPresent` | -| `agones.image.controller.pullSecret` | Image pull secret for the controller | `` | -| `agones.image.sdk.name` | Image name for the sdk | `agones-sdk` | -| `agones.image.sdk.cpuRequest` | The [cpu request][constraints] for sdk server container | `30m` | -| `agones.image.sdk.cpuLimit` | The [cpu limit][constraints] for the sdk server container | `0` (none) | -| `agones.image.sdk.alwaysPull` | Tells if the sdk image should always be pulled | `false` | -| `agones.image.ping.name` | Image name for the ping service | `agones-ping` | -| `agones.image.ping.pullPolicy` | Image pull policy for the ping service | `IfNotPresent` | -| `agones.controller.http.port` | Port to use for liveness probe service and metrics | `8080` | -| `agones.controller.healthCheck.initialDelaySeconds` | Initial delay before performing the first probe (in seconds) | `3` | -| `agones.controller.healthCheck.periodSeconds` | Seconds between every liveness probe (in seconds) | `3` | -| `agones.controller.healthCheck.failureThreshold` | Number of times before giving up (in seconds) | `3` | -| `agones.controller.healthCheck.timeoutSeconds` | Number of seconds after which the probe times out (in seconds) | `1` | -| `agones.controller.resources` | Controller resource requests/limit | `{}` | -| `agones.controller.nodeSelector` | (⚠️ **development feature**⚠️) Controller [node labels](nodeSelector) for pod assignment | `{}` | -| `agones.controller.tolerations` | (⚠️ **development feature**⚠️) Controller [toleration][toleration] labels for pod assignment | `[]` | -| `agones.controller.affinity` | (⚠️ **development feature**⚠️) Controller [affinity](affinity) settings for pod assignment | `{}` | -| `agones.controller.generateTLS` | Set to true to generate TLS certificates or false to provide your own certificates in `certs/*` | `true` | -| `agones.ping.install` | Whether to install the [ping service][ping] | `true` | -| `agones.ping.replicas` | The number of replicas to run in the deployment | `2` | -| `agones.ping.http.expose` | Expose the http ping service via a Service | `true` | -| `agones.ping.http.response` | The string response returned from the http service | `ok` | -| `agones.ping.http.port` | The port to expose on the service | `80` | -| `agones.ping.http.serviceType` | The [Service Type][service] of the HTTP Service | `LoadBalancer` | -| `agones.ping.udp.expose` | Expose the udp ping service via a Service | `true` | -| `agones.ping.udp.rateLimit` | Number of UDP packets the ping service handles per instance, per second, per sender | `20` | -| `agones.ping.udp.port` | The port to expose on the service | `80` | -| `agones.ping.udp.serviceType` | The [Service Type][service] of the UDP Service | `LoadBalancer` | -| `agones.ping.healthCheck.initialDelaySeconds` | Initial delay before performing the first probe (in seconds) | `3` | -| `agones.ping.healthCheck.periodSeconds` | Seconds between every liveness probe (in seconds) | `3` | -| `agones.ping.healthCheck.failureThreshold` | Number of times before giving up (in seconds) | `3` | -| `agones.ping.healthCheck.timeoutSeconds` | Number of seconds after which the probe times out (in seconds) | `1` | -| `agones.ping.resources` | (⚠️ **development feature**⚠️) Ping pods resource requests/limit |`{}` | -| `agones.ping.nodeSelector` | (⚠️ **development feature**⚠️) Ping [node labels](nodeSelector) for pod assignment | `{}` | -| `agones.ping.tolerations` | (⚠️ **development feature**⚠️) Ping [toleration][toleration] labels for pod assignment | `[]` | -| `agones.ping.affinity` | (⚠️ **development feature**⚠️) Ping [affinity](affinity) settings for pod assignment | `{}` | -| `gameservers.namespaces` | a list of namespaces you are planning to use to deploy game servers | `["default"]` | -| `gameservers.minPort` | Minimum port to use for dynamic port allocation | `7000` | -| `gameservers.maxPort` | Maximum port to use for dynamic port allocation | `8000` | - -[constraints]: https://kubernetes.io/docs/tasks/administer-cluster/manage-resources/cpu-constraint-namespace/ -[ping]: ../../../docs/ping_service.md -[service]: https://kubernetes.io/docs/concepts/services-networking/service/ -[nodeSelector]: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector -[toleration]: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ -[affinity]: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity - -Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, - -```bash -$ helm install --name my-release --namespace agones-system \ - --set agones.namespace=mynamespace,gameservers.minPort=1000,gameservers.maxPort=5000 agones -``` - -The above command sets the namespace where Agones is deployed to `mynamespace`. Additionally Agones will use a dynamic port allocation range of 1000-5000. - -Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example, - -```bash -$ helm install --name my-release --namespace agones-system -f values.yaml agones/agones -``` - -> **Tip**: You can use the default [values.yaml](values.yaml) - -## TLS Certificates - -By default agones chart generates tls certificates used by the adminission controller, while this is handy, it requires the agones controller to restart on each `helm upgrade` command. -For most used cases the controller would have required a restart anyway (eg: controller image updated). However if you really need to avoid restarts we suggest that you turn off tls automatic generation (`agones.controller.generateTLS` to `false`) and provide your own certificates (`certs/server.crt`,`certs/server.key`). - -> **Tip**: You can use our script located at `cert/cert.sh` to generates them. - -## Confirm Agones is running - -To confirm Agones is up and running, [go to the next section](../../README.md#confirming-agones-started-successfully) +See [Install Agones using Helm](https://agones.dev/site/docs/installation/helm/) for installation and configuration instructions. diff --git a/sdks/cpp/README.md b/sdks/cpp/README.md index 8e4a4f8a95..a00b083c4b 100644 --- a/sdks/cpp/README.md +++ b/sdks/cpp/README.md @@ -1,148 +1,7 @@ # C++ Game Server Client SDK This is the C++ version of the Agones Game Server Client SDK. -Check the [Client SDK Documentation](../) for more details on each of the SDK functions and how to run the SDK locally. -## Usage +See the [C++ SDK Documentation](https://agones.dev/site/docs/guides/client-sdks/cpp/) for details -The C++ SDK is specifically designed to be as simple as possible, and deliberately doesn't include any kind -of singleton management, or threading/asynchronous processing to allow developers to manage these aspects as they deem -appropriate for their system. - -We may consider these types of features in the future, depending on demand. - -To begin working with the SDK, create an instance of it. -```cpp -agones::SDK *sdk = new agones::SDK(); -``` - -To connect to the SDK server, either local or when running on Agones, run the `sdk->Connect()` method. -This will block for up to 30 seconds if the SDK server has not yet started and the connection cannot be made, -and will return `false` if there was an issue connecting. - -```cpp -bool ok = sdk->Connect(); -``` - -To send a [health check](../README.md#health) ping call `sdk->Health()`. This is a synchronous request that will -return `false` if it has failed in any way. Read [GameServer Health Checking](../../docs/health_checking.md) for more -details on the game server health checking strategy. - -```cpp -bool ok = sdk->Health(); -``` - -To mark the game server as [ready to receive player connections](../README.md#ready), call `sdk->Ready()`. -This will return a grpc::Status object, from which we can call `status.ok()` to determine -if the function completed successfully. - -For more information you can also look at the [gRPC Status reference](https://grpc.io/grpc/cpp/classgrpc_1_1_status.html) - -```cpp -grpc::Status status = sdk->Ready(); -if (!status.ok()) { ... } -``` - -To mark that the [game session is completed](../README.md#shutdown) and the game server should be shut down call `sdk->Shutdown()`. - -This will return a grpc::Status object, from which we can call `status.ok()` to determine -if the function completed successfully. - -For more information you can also look at the [gRPC Status reference](https://grpc.io/grpc/cpp/classgrpc_1_1_status.html) - -```cpp -grpc::Status status = sdk->Shutdown(); -if (!status.ok()) { ... } -``` - -To [set a Label](../README.md#setlabelkey-value) on the backing `GameServer` call -`sdk->SetLabel(key, value)`. - -This will return a grpc::Status object, from which we can call `status.ok()` to determine -if the function completed successfully. - -For more information you can also look at the [gRPC Status reference](https://grpc.io/grpc/cpp/classgrpc_1_1_status.html) - -```cpp -grpc::Status status = sdk->SetLabel("test-label", "test-value"); -if (!status.ok()) { ... } -``` - -To [set an Annotation](../README.md#setannotationkey-value) on the backing `GameServer` call -`sdk->SetAnnotation(key, value)`. - -This will return a grpc::Status object, from which we can call `status.ok()` to determine -if the function completed successfully. - -For more information you can also look at the [gRPC Status reference](https://grpc.io/grpc/cpp/classgrpc_1_1_status.html) - -```cpp -status = sdk->SetAnnotation("test-annotation", "test value"); -if (!status.ok()) { ... } -``` - - -To get the details on the [backing `GameServer`](../README.md#gameserver) call `sdk->GameServer(&gameserver)`, -passing in a `stable::agones::dev::sdk::GameServer*` to push the results of the `GameServer` configuration into. - -This function will return a grpc::Status object, from which we can call `status.ok()` to determine -if the function completed successfully. - -```cpp -stable::agones::dev::sdk::GameServer gameserver; -grpc::Status status = sdk->GameServer(&gameserver); -if (!status.ok()) {...} -``` - -To get [updates on the backing `GameServer`](../README.md#watchgameserverfunctiongameserver) as they happen, -call `sdk->WatchGameServer([](stable::agones::dev::sdk::GameServer gameserver){...})`. - -This will call the passed in `std::function` -synchronously (this is a blocking function, so you may want to run it in its own thread) whenever the backing `GameServer` -is updated. - -```cpp -sdk->WatchGameServer([](stable::agones::dev::sdk::GameServer gameserver){ - std::cout << "GameServer Update, name: " << gameserver.object_meta().name() << std::endl; - std::cout << "GameServer Update, state: " << gameserver.status().state() << std::endl; -}); -``` - -For more information, you can also read the [SDK Overview](../), check out [sdk.h](sdk.h) and also look at the -[C++ example](../../examples/cpp-simple). - -### Failure -When running on Agones, the above functions should only fail under exceptional circumstances, so please -file a bug if it occurs. - -## Dynamic and Static Libraries - -In the [releases](https://github.com/googlecloudplatform/agones/releases) folder -you will find two archives for download that contain both static and dynamic libraries for building your -game server on Linux: - -- `argonsdk-$(VERSION)-dev-linux-arch_64.tar.gz`: This includes all the -headers as well as dynamic and static libraries that are needed for development and runtime. -- `argonsdk-$(VERSION)-runtime-linux-arch_64.tar.gz`: This includes just the dynamic libraries that -are needed to run a binary compiled against the SDK and its dependencies. - -### Building the Libraries - -If you want to build the libraries from Agones source, -the `make` target `build-sdk-cpp` will compile both static and dynamic libraries for Debian/Linux -for your usage, to be found in the `bin` directory inside this one. - -## Building From Source -If you wish to compile from source, you will need to compile and install the following dependencies: - -- [gRPC](https://grpc.io), v1.8.x - [C++ compilation guide](https://github.com/grpc/grpc/blob/v1.8.x/INSTALL.md) -- [protobuf](https://developers.google.com/protocol-buffers/), v3.5.0 - [C++ compilation guide](https://github.com/google/protobuf/blob/master/src/README.md) - -For convenience, it's worth noting that protobuf is include in gRPC's source code, in the `third_party` -directory, and can be compiled from there, rather than being pulling down separately. - -## Windows and macOS - -If you are building a server on Windows or macOS, and need a development build to run on -that platform, at this time you will need to compile from source. Windows and macOS libraries -for the C++ SDK for easier cross platform development are planned and will be provided in the near future. +The [Client SDK Documentation](https://agondes.dev/site/docs/guides/client-sdks/) has details on each of the SDK functions and how to run the SDK locally. \ No newline at end of file diff --git a/sdks/rust/README.md b/sdks/rust/README.md index bd136f87d5..d64bf98513 100644 --- a/sdks/rust/README.md +++ b/sdks/rust/README.md @@ -1,49 +1,10 @@ # Rust Game Server Client SDK -This is the Rust version of the Agones Game Server Client SDK. -Check the [Client SDK Documentation](../) for more details on each of the SDK functions and how to run the SDK locally. - > The Rust SDK has not been actively maintained, and doesn't have all the SDK functionality, although it _should_ still work. Pull Requests and updates are welcome. -## Prerequisites - -- CMake >= 3.8.0 -- Rust >= 1.19.0 -- Go (>=1.7) - -The SDK needs the above for building to [gRPC-rs](https://github.com/pingcap/grpc-rs). - -## Usage - -Add this crate to `dependencies` section in your Cargo.toml. -Specify a directory where this README.md is located to the `path`. - -```toml -[dependencies] -agones = { path = "../agones/sdks/rust" } -``` - -Add `extern crate agones` to your crate root. - -To begin working with the SDK, create an instance of it. This function blocks until connection and handshake are made. - -```rust -let sdk = agones::Sdk::new()?; -``` - -To send a [health check](../README.md#health) ping call `sdk.health()`. - -```rust -if sdk.health().is_ok() { - println!("Health ping sent"); -} -``` +This is the Rust version of the Agones Game Server Client SDK. -To mark that the [game session is completed](../README.md#shutdown) and the game server should be shut down call `sdk.shutdown()`. +See the [Rust SDK Documentation](https://agones.dev/site/docs/guides/client-sdks/rust/) for details -```rust -if sdk.shutdown().is_err() { - println!("Could not run Shutdown"); -} -``` +The [Client SDK Documentation](https://agondes.dev/site/docs/guides/client-sdks/) has details on each of the SDK functions and how to run the SDK locally. diff --git a/site/.gcloudignore b/site/.gcloudignore new file mode 100644 index 0000000000..6759bdddc3 --- /dev/null +++ b/site/.gcloudignore @@ -0,0 +1,20 @@ +# Copyright 2017 Google Inc. All Rights Reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +assets +content +layouts +node_modules +resources +themes \ No newline at end of file diff --git a/site/.gitignore b/site/.gitignore new file mode 100644 index 0000000000..c718fcf522 --- /dev/null +++ b/site/.gitignore @@ -0,0 +1,6 @@ + +public/ +resources/ +node_modules/ +tech-doc-hugo +*.json diff --git a/site/app.yaml b/site/app.yaml new file mode 100644 index 0000000000..84b921e333 --- /dev/null +++ b/site/app.yaml @@ -0,0 +1,30 @@ +# Copyright 2018 Google Inc. All Rights Reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +runtime: go111 +service: ${SERVICE} + +handlers: + - url: /site/$ + static_files: public/index.html + upload: public/index.html + - url: /site/(.*)/$ + static_files: public/\1/index.html + upload: public/.*/index.html + - url: /site + static_dir: public + secure: always + - url: /.* + secure: always + script: auto diff --git a/site/assets/icons/logo.svg b/site/assets/icons/logo.svg new file mode 100644 index 0000000000..3e9d5ea562 --- /dev/null +++ b/site/assets/icons/logo.svg @@ -0,0 +1,38 @@ + + + + + + image/svg+xml + + + + + + + + + diff --git a/site/assets/scss/_variables_project.scss b/site/assets/scss/_variables_project.scss new file mode 100644 index 0000000000..256902739d --- /dev/null +++ b/site/assets/scss/_variables_project.scss @@ -0,0 +1,6 @@ +/* + +Add styles or override variables from the theme here. + +*/ + diff --git a/site/config.toml b/site/config.toml new file mode 100644 index 0000000000..ca0d288d16 --- /dev/null +++ b/site/config.toml @@ -0,0 +1,144 @@ +# Copyright 2018 Google Inc. All Rights Reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +baseURL = "/site/" +title = "Agones" +enableRobotsTXT = true + +# Hugo allows theme composition (and inheritance). The precedence is from left to right. +theme = ["docsy"] + +# Will give values to .Lastmod etc. +enableGitInfo = true + +# Language settings +contentDir = "content/en" +defaultContentLanguage = "en" +defaultContentLanguageInSubdir = false +# Useful when translating. +enableMissingTranslationPlaceholders = true + +disableKinds = ["taxonomy", "taxonomyTerm"] + +# Highlighting config +pygmentsCodeFences = true +pygmentsUseClasses = false +# Use the new Chroma Go highlighter in Hugo. +pygmentsUseClassic = false +#pygmentsOptions = "linenos=table" +# See https://help.farbox.com/pygments.html +pygmentsStyle = "tango" + + # First one is picked as the Twitter card image if not set on page. + #images = ["images/project-illustration.png"] + +# Configure how URLs look like per section. +[permalinks] +blog = "/:section/:year/:month/:day/:slug/" + +## Configuration for BlackFriday markdown parser: https://github.com/russross/blackfriday +[blackfriday] +plainIDAnchors = true +hrefTargetBlank = false +angledQuotes = false +latexDashes = true + +# Image processing configuration. +[imaging] +resampleFilter = "CatmullRom" +quality = 75 +anchor = "smart" + +[services] +[services.googleAnalytics] +# Comment out the next line to disable GA tracking. Also disables the feature described in [params.ui.feedback]. +id = "UA-132708785-1" + +# Language configuration + +[languages] +[languages.en] +title = "Agones" +description = "Agones is a library for hosting, running and scaling dedicated game servers on Kubernetes." +languageName ="English" +# Weight used for sorting. +weight = 1 + +# Everything below this are Site Params + +[params] +copyright = "Copyright Google Inc. All Rights Reserved." +privacy_policy = "https://policies.google.com/privacy" +github_repo = "https://github.com/GoogleCloudPlatform/agones" + +# Google Custom Search Engine ID. Remove or comment out to disable search. +gcs_engine_id = "002375903941309441958:rceiko9wfuw" + +# current release branch - could be rc +release_branch = "release-0.7.0" +# the main version. Never is rc. +release_version = "0.7.0" + +# User interface configuration +[params.ui] +# Enable to show the side bar menu in its compact state. +sidebar_menu_compact = false +# Set to true to disable breadcrumb navigation. +breadcrumb_disable = false + +# Adds a H2 section titled "Feedback" to the bottom of each doc. The responses are sent to Google Analytics as events. +# This feature depends on [services.googleAnalytics] and will be disabled if "services.googleAnalytics.id" is not set. +# If you want this feature, but occasionally need to remove the "Feedback" section from a single page, +# add "hide_feedback: true" to the page's front matter. +[params.ui.feedback] +enable = true +# The responses that the user sees after clicking "yes" (the page was helpful) or "no" (the page was not helpful). +yes = 'Glad to hear it! Please tell us how we can improve.' +no = 'Sorry to hear that. Please tell us how we can improve.' + +[params.links] +# End user relevant links. These will show up on left side of footer and in the community page if you have one. +[[params.links.user]] + name = "Slack" + url = "https://join.slack.com/t/agones/shared_invite/enQtMzE5NTE0NzkyOTk1LWQ2ZmY1Mjc4ZDQ4NDJhOGYxYTY2NTY0NjUwNjliYzVhMWFjYjMxM2RlMjg3NGU0M2E0YTYzNDIxNDMyZGNjMjU" + icon = "fab fa-slack" + desc = "Chat with other project users in #users" +[[params.links.user]] + name = "User mailing list" + url = "https://groups.google.com/forum/#!forum/agones-discuss" + icon = "fa fa-envelope" + desc = "Discussion and help from your fellow users" +[[params.links.user]] + name ="Twitter" + url = "https://twitter.com/agonesdev" + icon = "fab fa-twitter" + desc = "Follow us on Twitter to get the latest news!" +# Developer relevant links. These will show up on right side of footer and in the community page if you have one. +[[params.links.developer]] + name = "GitHub" + url = "https://github.com/GoogleCloudPlatform/agones" + icon = "fab fa-github" + desc = "Development takes place here!" +[[params.links.developer]] + name = "Slack" + url = "https://join.slack.com/t/agones/shared_invite/enQtMzE5NTE0NzkyOTk1LWQ2ZmY1Mjc4ZDQ4NDJhOGYxYTY2NTY0NjUwNjliYzVhMWFjYjMxM2RlMjg3NGU0M2E0YTYzNDIxNDMyZGNjMjU" + icon = "fab fa-slack" + desc = "Chat with other project developers in #developers" +# [[params.links.developer]] +# name = "Developer mailing list" +# url = "https://example.org/mail" +# icon = "fa fa-envelope" +# desc = "Discuss development issues around the project" + + diff --git a/site/content/en/_index.html b/site/content/en/_index.html new file mode 100644 index 0000000000..556d2614c7 --- /dev/null +++ b/site/content/en/_index.html @@ -0,0 +1,69 @@ ++++ +title = "Agones" +linkTitle = "Agones" + ++++ + +{{< blocks/cover title="Host, run and scale dedicated game servers on Kubernetes" image_anchor="top" height="full" color="orange" >}} +
+ }}"> + Learn More + + + Releases + +

Multiplayer dedicated game servers anywhere

+
+ {{< blocks/link-down color="info" >}} +
+
+{{< /blocks/cover >}} + +{{% blocks/lead color="primary" %}} +What is Agones? + +Agones is an open source project that is built to be a batteries-included, dedicated game server scaling and +orchestration platform. It is built as a native extension of [Kubernetes](https://kubernetes.io), with the flexibility you need to tailor +it to the requirements of your multiplayer game. Anywhere you can run Kubernetes, you can run Agones. + +{{% /blocks/lead %}} + +{{< blocks/section color="dark" >}} +{{% blocks/feature icon="fas fa-file-code" title="Fleets of GameServers" url="./docs/getting-started/" %}} +Define Fleets of GameServers, autoscaling and more, through YAML or the Kubernetes API. +{{% /blocks/feature %}} + + +{{% blocks/feature icon="fas fa-wrench" title="Integrated SDK" url="./docs/guides/client-sdks/" %}} +Integrated SDK for managing game server lifecyle, health and configuration. + +Tools for local development included! +{{% /blocks/feature %}} + + +{{% blocks/feature icon="fas fa-chart-area" title="Metrics" url="./docs/guides/metrics/" %}} +Integration with [OpenCensus](https://opencensus.io/) +for backend agnostic game server metrics and monitoring +{{% /blocks/feature %}} + + +{{< /blocks/section >}} + +{{< blocks/section >}} +{{% blocks/feature icon="fab fa-slack" title="Join us on Slack" url="https://join.slack.com/t/agones/shared_invite/enQtMzE5NTE0NzkyOTk1LWQ2ZmY1Mjc4ZDQ4NDJhOGYxYTY2NTY0NjUwNjliYzVhMWFjYjMxM2RlMjg3NGU0M2E0YTYzNDIxNDMyZGNjMjU" %}} +Join the community on Slack +{{% /blocks/feature %}} + +{{% blocks/feature icon="fab fa-github" title="Contributions welcome!" url="https://github.com/GoogleCloudPlatform/agones" %}} + We do a [Pull Request](https://github.com/GoogleCloudPlatform/agones/pulls) contributions workflow on **GitHub**. + + New users are always welcome! +{{% /blocks/feature %}} + + +{{% blocks/feature icon="fab fa-twitter" title="Follow us on Twitter!" url="https://twitter.com/agonesdev" %}} +For announcement of latest features etc. +{{% /blocks/feature %}} + +{{< /blocks/section >}} + diff --git a/site/content/en/blog/_index.md b/site/content/en/blog/_index.md new file mode 100644 index 0000000000..43820eb17d --- /dev/null +++ b/site/content/en/blog/_index.md @@ -0,0 +1,13 @@ +--- +title: "Docsy Blog" +linkTitle: "Blog" +menu: + main: + weight: 30 +--- + + +This is the **blog** section. It has two categories: News and Releases. + +Files in these directories will be listed in reverse chronological order. + diff --git a/site/content/en/blog/news/_index.md b/site/content/en/blog/news/_index.md new file mode 100644 index 0000000000..12b8c29cad --- /dev/null +++ b/site/content/en/blog/news/_index.md @@ -0,0 +1,8 @@ + +--- +title: "Agones News" +linkTitle: "News" +weight: 20 +--- + + diff --git a/site/content/en/blog/news/new-agones-site.md b/site/content/en/blog/news/new-agones-site.md new file mode 100755 index 0000000000..ab002fe3da --- /dev/null +++ b/site/content/en/blog/news/new-agones-site.md @@ -0,0 +1,26 @@ + +--- +title: "Welcome to the new Agones Webite!" +linkTitle: "New Agones Website!" +date: 2019-01-17 +description: > + A brand new site! Isn't it pretty? +--- + +Welcome to the new Agones website! + +We've implemented a new website, to enable lots of new functionality that we're hoping to +take advantage of now and in the future: + +- Ability to support multiple languages +- Able to write documentation for new features, but keep them hidden until they are released. +- Search! +- Pretty Pictures! 😊 +- Easy access to older versions of the documentation + +Big thanks to [Hugo](https://gohugo.io) for being the static site generator, and the +[docsy](https://github.com/google/docsy) team for the core documentation theme 👍 + +Please let us know if you have feedback, either by [filing an issue](https://github.com/GoogleCloudPlatform/agones/issues) +, or [submitting a pull request](https://github.com/GoogleCloudPlatform/agones/pulls) or come chat with us +on [Slack](https://join.slack.com/t/agones/shared_invite/enQtMzE5NTE0NzkyOTk1LWQ2ZmY1Mjc4ZDQ4NDJhOGYxYTY2NTY0NjUwNjliYzVhMWFjYjMxM2RlMjg3NGU0M2E0YTYzNDIxNDMyZGNjMjU)! \ No newline at end of file diff --git a/site/content/en/blog/releases/0.7.0.md b/site/content/en/blog/releases/0.7.0.md new file mode 100755 index 0000000000..f6e8c07af0 --- /dev/null +++ b/site/content/en/blog/releases/0.7.0.md @@ -0,0 +1,54 @@ + +--- +title: "0.7.0 - latency measuring, fleet autoscaling webhooks, and metrics!" +linkTitle: "0.7.0" +date: 2019-01-08 +description: +--- + +Massive release with 0.7.0! + +Lots of great new features, from latency measuring tools, fleet autoscaling webhooks and OpenCensus metrics! Take them a spin, and let us know how they go. + +As always, thanks to everyone involved - several new faces in this release providing new features, and feedback - awesome to see the community grow! 👌🌱 + +Details: +https://github.com/GoogleCloudPlatform/agones/releases/tag/v0.7.0 + +Check the [README](https://github.com/GoogleCloudPlatform/agones/tree/release-0.7.0) for details on features, installation and usage. + +**Breaking changes:** + +- Update to Kubernetes 1.11 [\#447](https://github.com/GoogleCloudPlatform/agones/pull/447) ([markmandel](https://github.com/markmandel)) +- Remove crd-install hook, as it break CRD updates [\#441](https://github.com/GoogleCloudPlatform/agones/pull/441) ([markmandel](https://github.com/markmandel)) + +**Implemented enhancements:** + +- Delete crds, and fleets, gameservers etc on deletion of Helm chart [\#426](https://github.com/GoogleCloudPlatform/agones/issues/426) +- `GameServers` should have the Fleet name in a label for easy retrieval [\#411](https://github.com/GoogleCloudPlatform/agones/issues/411) +- Horizontal Fleet Autoscaling [\#334](https://github.com/GoogleCloudPlatform/agones/issues/334) +- Add webhook functionality into FleetAutoscaler [\#460](https://github.com/GoogleCloudPlatform/agones/pull/460) ([aLekSer](https://github.com/aLekSer)) +- Adds Kind local cluster support with documentation [\#458](https://github.com/GoogleCloudPlatform/agones/pull/458) ([Kuqd](https://github.com/Kuqd)) +- Adds OpenCensus metrics integration. [\#457](https://github.com/GoogleCloudPlatform/agones/pull/457) ([Kuqd](https://github.com/Kuqd)) +- added incremental build option to Makefile to speed up rebuilds [\#454](https://github.com/GoogleCloudPlatform/agones/pull/454) ([jkowalski](https://github.com/jkowalski)) +- CRD: added additionalPrinterColumns to GameServer for kubectl [\#444](https://github.com/GoogleCloudPlatform/agones/pull/444) ([jkowalski](https://github.com/jkowalski)) +- Adding explicit length of git revision in Makefile and E2E Can't Allocate test [\#440](https://github.com/GoogleCloudPlatform/agones/pull/440) ([aLekSer](https://github.com/aLekSer)) +- Pinger service for Multiple Cluster Latency Measurement. [\#434](https://github.com/GoogleCloudPlatform/agones/pull/434) ([markmandel](https://github.com/markmandel)) + +See [CHANGELOG](https://github.com/GoogleCloudPlatform/agones/blob/release-0.7.0/CHANGELOG.md) for more details on changes. + +This software is currently alpha, and subject to change. Not to be used in production systems. + +Images available with this release: + +- [gcr.io/agones-images/agones-controller:0.7.0](https://gcr.io/agones-images/agones-controller:0.7.0) +- [gcr.io/agones-images/agones-sdk:0.7.0](https://gcr.io/agones-images/agones-sdk:0.7.0) +- [gcr.io/agones-images/cpp-simple-server:0.4](https://gcr.io/agones-images/cpp-simple-server:0.4) +- [gcr.io/agones-images/udp-server:0.5](https://gcr.io/agones-images/udp-server:0.5) +- [gcr.io/agones-images/xonotic-example:0.4](https://gcr.io/agones-images/xonotic-example:0.4) + +Helm chart available with this release: + +- [`helm install agones/agones --version 0.7.0`](https://agones.dev/chart/stable/agones-0.7.0.tgz) + +> Make sure to add our stable helm repository using `helm repo add https://agones.dev/chart/stable` \ No newline at end of file diff --git a/site/content/en/blog/releases/_index.md b/site/content/en/blog/releases/_index.md new file mode 100644 index 0000000000..b1d9eb4ff3 --- /dev/null +++ b/site/content/en/blog/releases/_index.md @@ -0,0 +1,8 @@ + +--- +title: "New Releases" +linkTitle: "Releases" +weight: 20 +--- + + diff --git a/site/content/en/community/_index.md b/site/content/en/community/_index.md new file mode 100644 index 0000000000..cdade16308 --- /dev/null +++ b/site/content/en/community/_index.md @@ -0,0 +1,8 @@ +--- +title: Community +menu: + main: + weight: 40 +--- + + diff --git a/site/content/en/docs/Advanced/_index.md b/site/content/en/docs/Advanced/_index.md new file mode 100644 index 0000000000..975a325a49 --- /dev/null +++ b/site/content/en/docs/Advanced/_index.md @@ -0,0 +1,8 @@ +--- +title: "Advanced" +date: 2019-01-03T05:44:55Z +description: "Advanced Guides, Techniques and walk-throughs" +weight: 300 +--- + +{{< pagelist >}} diff --git a/docs/limiting_resources.md b/site/content/en/docs/Advanced/limiting-resources.md similarity index 85% rename from docs/limiting_resources.md rename to site/content/en/docs/Advanced/limiting-resources.md index 857af84b33..7232af185d 100644 --- a/docs/limiting_resources.md +++ b/site/content/en/docs/Advanced/limiting-resources.md @@ -1,6 +1,10 @@ -# Limiting CPU & Memory - -Kubernetes natively has inbuilt capabilities for requesting and limiting both CPU and Memory usage of running containers. +--- +title: "Limiting CPU & Memory" +date: 2019-01-03T05:45:15Z +weight: 30 +description: > + Kubernetes natively has inbuilt capabilities for requesting and limiting both CPU and Memory usage of running containers. +--- As a short description: @@ -48,8 +52,8 @@ If you do not set a limit or request, the default is set my Kubernetes at a 100m You may also want to tweak the CPU request or limits on the SDK `GameServer` sidecar process that spins up alongside each game server container. -You can do this through the [Helm configuration](../install/helm/agones/README.md#configuration) when installing Agones. +You can do this through the [Helm configuration]({{< relref "../Installation/helm.md" >}}) when installing Agones. By default, this is set to having a CPU request value of 30m, with no hard CPU limit. This ensures that the sidecar always has enough CPU to function, but it is configurable in case a lower, or higher value is required on your clusters, or if you desire -hard limit. \ No newline at end of file +hard limit. diff --git a/docs/scheduling_autoscaling.md b/site/content/en/docs/Advanced/scheduling-and-autoscaling.md similarity index 79% rename from docs/scheduling_autoscaling.md rename to site/content/en/docs/Advanced/scheduling-and-autoscaling.md index 7f1d9d9bdd..e3f8248134 100644 --- a/docs/scheduling_autoscaling.md +++ b/site/content/en/docs/Advanced/scheduling-and-autoscaling.md @@ -1,30 +1,11 @@ -# Scheduling and Autoscaling - -> Autoscaling is currently ongoing work within Agones. The work you see here is just the beginning. - -Table of Contents -================= - - * [Kubernetes Cluster Autoscaler](#kubernetes-cluster-autoscaler) - * [Google Kubernetes Engine](#google-kubernetes-engine) - * [Azure Kubernetes Service](#azure-kubernetes-service) - * [Fleet Autoscaling](#fleet-autoscaling) - * [Autoscaling Concepts](#autoscaling-concepts) - * [Allocation Scheduling](#allocation-scheduling) - * [Pod Scheduling](#pod-scheduling) - * [Fleet Scale Down Strategy](#fleet-scale-down-strategy) - * [Fleet Scheduling](#fleet-scheduling) - * [Packed](#packed) - * [Allocation Scheduling Strategy](#allocation-scheduling-strategy) - * [Pod Scheduling Strategy](#pod-scheduling-strategy) - * [Fleet Scale Down Strategy](#fleet-scale-down-strategy-1) - * [Distributed](#distributed) - * [Allocation Scheduling Strategy](#allocation-scheduling-strategy-1) - * [Pod Scheduling Strategy](#pod-scheduling-strategy-1) - * [Fleet Scale Down Strategy](#fleet-scale-down-strategy-2) - -Scheduling and autoscaling go hand in hand, as where in the cluster `GameServers` are provisioned -impacts how to autoscale fleets up and down (or if you would even want to) +--- +title: "Scheduling and Autoscaling" +date: 2019-01-03T05:45:05Z +weight: 10 +description: > + Scheduling and autoscaling go hand in hand, as where in the cluster `GameServers` are provisioned + impacts how to autoscale fleets up and down (or if you would even want to) +--- ## Cluster Autoscaler @@ -51,8 +32,8 @@ or their cloud specific documentation. ## Fleet Autoscaling Fleet autoscaling is the only type of autoscaling that exists in Agones. It is currently only available as a simple -buffer autoscaling strategy. Have a look at the [Create a Fleet Autoscaler](create_fleetautoscaler.md) quickstart, -and the [Fleet Autoscaler Specification](fleetautoscaler_spec.md) for details. +buffer autoscaling strategy. Have a look at the [Create a Fleet Autoscaler]({{< relref "../Getting Started/create-fleetautoscaler.md" >}}) quickstart, +and the [Fleet Autoscaler Specification]({{< relref "../Reference/fleetautoscaler.md" >}}) for details. More sophisticated fleet autoscaling will be coming in future releases. @@ -63,7 +44,7 @@ To facilitate autoscaling, we need to combine several piece of concepts and func ### Allocation Scheduling Allocation scheduling refers to the order in which `GameServers`, and specifically their backing `Pods` are chosen -from across the Kubernetes cluster within a given `Fleet` when [allocation](./create_fleet.md#4-allocate-a-game-server-from-the-fleet) occurs. +from across the Kubernetes cluster within a given `Fleet` when [allocation]({{< relref "../Getting Started/create-fleet.md#4-allocate-a-game-server-from-the-fleet" >}}) occurs. ### Pod Scheduling @@ -170,7 +151,7 @@ Since this strategy is not aimed at clusters that autoscale, this strategy does #### Allocation Scheduling Strategy -Under the "Distributed" strategy, allocation will prioritise allocating `GameSerers` to nodes that have the least +Under the "Distributed" strategy, allocation will prioritise allocating `GameServers` to nodes that have the least number of allocated `GameServers` on them. #### Pod Scheduling Strategy @@ -181,4 +162,5 @@ to distribute the `GameServer` `Pods` across as many nodes as possible. #### Fleet Scale Down Strategy With the "Distributed" strategy, Fleets will remove `Ready` `GameServers` from Nodes with at random, to ensure -a distributed load is maintained. \ No newline at end of file +a distributed load is maintained. + diff --git a/site/content/en/docs/Contribute/_index.md b/site/content/en/docs/Contribute/_index.md new file mode 100644 index 0000000000..0d628204d2 --- /dev/null +++ b/site/content/en/docs/Contribute/_index.md @@ -0,0 +1,69 @@ +--- +title: "Documentation Editing and Contribution" +linkTitle: "Contribute" +weight: 1000 +description: > + How to contribute to the docs +--- + +## Writing Documentation + +We welcome contributions to documentation! + +## Running the site + +If you clone the repository and run `make site-server` from the `build` directory, this will run the live hugo server, +running as a showing the next version's content and upcoming `publishedDate`'d content as well. This is likely to be +the next releases' version of the website. + +To show the current website's view, run it as `make site-server ENV=RELEASE_VERSION={{< release-version >}} ARGS=` + +## Platform + +This site and documentation is built with a combination of Hugo, static site generator, +with the Docsy theme for open source documentation. + +- [Hugo Documentation](https://gohugo.io/documentation/) +- [Docsy Guide](https://github.com/google/docsy) + +## Documentation for upcoming features + +Since we may want to update the existing documentation for a given release, when writing documentation, +you will likely want to make sure it doesn't get published until the next release. + +There are two approaches for hiding documentation for upcoming features, such that it only gets published when the +version is incremented on the release: + +### At the Page Level + +Use `publishDate` and `expiryDate` in [Hugo Front Matter](https://gohugo.io/content-management/front-matter/) to control +when the page is displayed (or hidden). You can look at the [Release Calendar](https://github.com/GoogleCloudPlatform/agones/blob/master/docs/governance/release_process.md#release-calendar) +to align it with the next release +candidate release date - or whichever release is most relevant. + +### Within a Page + +We have a `feature` shortcode that can be used to show, or hide sections of pages based on the current semantic version +(set in config.toml, and overwritable by env variable). + +For example, to show a section only from 0.8.0 forwards: + +> remove the initial "\" in front of the % - needed to escape the shortcode + +```markdown +{{\% feature publishVersion="0.8.0" %}} + This is my special content that should only display >= 0.8.0 +{{\% /feature %}} +``` + +or to hide a section from 0.8.0 onward: + +```markdown +{{\% feature expiryVersion="0.8.0" %}} + This is my special content that she be hidden <= 0.8.0 +{{\% /feature %}} +``` + +> Due to [this hugo bug](https://github.com/gohugoio/hugo/issues/4695) headers wrapped in this shortcode will + not be displayed in the Table of Contents. So we will need to actively remove the `feature` shortcode once + the release versions have been passed for new content, for content that is affected. diff --git a/site/content/en/docs/Examples/_index.md b/site/content/en/docs/Examples/_index.md new file mode 100644 index 0000000000..0414f35367 --- /dev/null +++ b/site/content/en/docs/Examples/_index.md @@ -0,0 +1,18 @@ +--- +title: "Examples" +date: 2019-01-03T05:05:47Z +description: "List of available code examples" +weight: 120 +--- + +## Configuration files +- {{< ghlink href="examples/gameserver.yaml" >}}Full GameServer Configuration{{< /ghlink >}} +- {{< ghlink href="examples/fleet.yaml" >}}Full Fleet Configuration{{< /ghlink >}} +- {{< ghlink href="examples/fleetallocation.yaml" >}}Full Fleet Allocation Configuration{{< /ghlink >}} +- {{< ghlink href="examples/fleetautoscaler.yaml" >}}Full Autoscaler Configuration{{< /ghlink >}} + +## Game server implementations + +- {{< ghlink href="examples/simple-udp" >}}Simple UDP{{< /ghlink >}} (Go) - simple server and client that send UDP packets back and forth. +- {{< ghlink href="examples/cpp-simple" >}}CPP Simple{{< /ghlink >}} (C++) - C++ example that starts up, stays healthy and then shuts down after 60 seconds. +- {{< ghlink href="examples/xonotic" >}}Xonotic{{< /ghlink >}} - Wraps the SDK around the open source FPS game {{< ghlink href="http://www.xonotic.org" >}}Xonotic{{< /ghlink >}} and hosts it on Agones. diff --git a/site/content/en/docs/Getting Started/_index.md b/site/content/en/docs/Getting Started/_index.md new file mode 100644 index 0000000000..2fc2e51d1c --- /dev/null +++ b/site/content/en/docs/Getting Started/_index.md @@ -0,0 +1,11 @@ + +--- +title: "Getting Started" +linkTitle: "Getting Started" +weight: 6 +date: 2017-01-05 +description: > + Quickstarts for getting up and running with Agones +--- + +{{< pagelist >}} diff --git a/docs/create_fleet.md b/site/content/en/docs/Getting Started/create-fleet.md similarity index 84% rename from docs/create_fleet.md rename to site/content/en/docs/Getting Started/create-fleet.md index 55b31bed7a..8dc3f7682a 100644 --- a/docs/create_fleet.md +++ b/site/content/en/docs/Getting Started/create-fleet.md @@ -1,24 +1,11 @@ -# Quickstart Create a Game Server Fleet - -This guide covers how you can quickly get started using Agones to create a Fleet -of warm GameServers ready for you to allocate out of and play on! - - -Table of Contents -================= - - * [Prerequisites](#prerequisites) - * [Objectives](#objectives) - * [1. Create a Fleet](#1-create-a-fleet) - * [2. Fetch the Fleet status](#2-fetch-the-fleet-status) - * [3. Scale up the Fleet](#3-scale-up-the-fleet) - * [4. Allocate a Game Server from the Fleet](#4-allocate-a-game-server-from-the-fleet) - * [GameServerAllocation](#gameserverallocation) - * [FleetAllocation](#fleetallocation) - * [5. Scale down the Fleet](#5-scale-down-the-fleet) - * [6. Connect to the GameServer](#6-connect-to-the-gameserver) - * [7. Deploy a new version of the GameServer on the Fleet](#7-deploy-a-new-version-of-the-gameserver-on-the-fleet) - * [Next Steps](#next-steps) +--- +title: "Quickstart: Create a Game Server Fleet" +linkTitle: "Create a Fleet" +date: 2019-01-02T06:42:20Z +weight: 20 +description: > + This guide covers how you can quickly get started using Agones to create a Fleet of warm GameServers ready for you to allocate out of and play on! +--- ## Prerequisites @@ -29,11 +16,11 @@ The following prerequisites are required to create a GameServer: 3. kubectl properly configured 4. Netcat which is already installed on most Linux/macOS distributions, for windows you can use [WSL](https://docs.microsoft.com/en-us/windows/wsl/install-win10). -If you don't have a Kubernetes cluster you can follow [these instructions](../install/README.md) to create a cluster on Google Kubernetes Engine (GKE), Minikube or Azure Kubernetes Service (AKS), and install Agones. +If you don't have a Kubernetes cluster you can follow [these instructions]({{< ref "/docs/Installation/_index.md" >}}) to create a cluster on Google Kubernetes Engine (GKE), Minikube or Azure Kubernetes Service (AKS), and install Agones. -For the purpose of this guide we're going to use the [simple-udp](../examples/simple-udp/) example as the GameServer container. This example is very simple UDP server written in Go. Don't hesitate to look at the code of this example for more information. +For the purpose of this guide we're going to use the {{< ghlink href="examples/simple-udp/" >}}simple-udp{{< /ghlink >}} example as the GameServer container. This example is very simple UDP server written in Go. Don't hesitate to look at the code of this example for more information. -While not required, you may wish to go through the [Create a Game Server](create_gameserver.md) quickstart before this one. +While not required, you may wish to go through the [Create a Game Server]({{< relref "create-gameserver.md" >}}) quickstart before this one. ## Objectives @@ -48,7 +35,7 @@ While not required, you may wish to go through the [Create a Game Server](create Let's create a Fleet using the following command : ``` -kubectl apply -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/master/examples/simple-udp/fleet.yaml +kubectl apply -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/{{< release-branch >}}/examples/simple-udp/fleet.yaml ``` You should see a successful ouput similar to this : @@ -57,7 +44,7 @@ You should see a successful ouput similar to this : fleet "simple-udp" created ``` -This has created a Fleet record inside Kubernetes, which in turn creates two warm [GameServers](gameserver_spec.md) to +This has created a Fleet record inside Kubernetes, which in turn creates two warm [GameServers]({{< ref "/docs/Reference/gameserver.md" >}}) to be available to being allocated for usage for a game session. ``` @@ -79,7 +66,7 @@ simple-udp-xvp4n-jvhbm 36s simple-udp-xvp4n-x6z5m 36s ``` -For the full details of the YAML file head to the [Fleet Specification Guide](./fleet_spec.md#fleet-specification) +For the full details of the YAML file head to the [Fleet Specification Guide]({{< ref "/docs/Reference/fleet.md#fleet-specification" >}}) ### 2. Fetch the Fleet status @@ -166,13 +153,12 @@ simple-udp-xvp4n-i6bnm 36s Since we have a fleet of warm gameservers, we need a way to request one of them for usage, and mark that it has players access it (and therefore, it should not be deleted until they are finished with it). -> In production, you would likely do the following through a [Kubernetes API call](./access_api.md), but we can also +> In production, you would likely do the following through a [Kubernetes API call]({{< ref "/docs/Guides/access-api.md" >}}), but we can also do this through `kubectl` as well, and ask it to return the response in yaml so that we can see what has happened. +{{% feature publishVersion="0.8.0" %}} #### GameServerAllocation -⚠️⚠️⚠️ **This is currently a development feature and has not been released** ⚠️⚠️⚠️ - We can do allocation of a GameServer for usage through a `GameServerAllocation`, which will both return to us the details of a `GameServer` (assuming one is available), and also move it to the `Allocated` state, which demarcates that it has players on it, and should not be removed until `SDK.Shutdown()` is called, or it is manually deleted. @@ -182,13 +168,13 @@ a [lable selector](https://kubernetes.io/docs/concepts/overview/working-with-obj group of `GameServers` it will attempt to allocate out of. That being said, a `Fleet` and `GameServerAllocation` are often used in conjunction. -[This example](../examples/simple-udp/gameserverallocation.yaml) uses the label selector to specifically target the `simple-udp` fleet that we just created. +{{< ghlink href="/examples/simple-udp/gameserverallocation.yaml" >}}This example{{< /ghlink >}} uses the label selector to specifically target the `simple-udp` fleet that we just created. ``` -kubectl create -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/master/examples/simple-udp/gameserverallocation.yaml -o yaml +kubectl create -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/{{< release-branch >}}/examples/simple-udp/gameserverallocation.yaml -o yaml ``` -For the full details of the YAML file head to the [Fleet Specification Guide](./fleet_spec.md#gameserver-allocation-specification) +For the full details of the YAML file head to the [Fleet Specification Guide]({{< ref "/docs/Reference/fleet.md#gameserver-allocation-specification" >}}) You should get back a response that looks like the following: @@ -253,21 +239,23 @@ simple-udp-sdhzn-r4d6x Allocated 192.168.122.205 7623 minikube 52m simple-udp-sdhzn-wng5k Ready 192.168.122.205 7709 minikube 53m simple-udp-sdhzn-wnhsw Ready 192.168.122.205 7478 minikube 52m ``` +{{% /feature %}} +{{% feature publishVersion="0.8.0" %}} #### FleetAllocation > Fleet Allocation is **deprecated** in version 0.8.0, and will be removed in the 0.10.0 release. Migrate to using GameServer Allocation instead. - +{{% /feature %}} We can do allocation of a GameServer for usage through a `FleetAllocation`, which will both return to us a `GameServer` (assuming one is available) and also move it to the `Allocated` state. ``` -kubectl create -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/master/examples/simple-udp/fleetallocation.yaml -o yaml +kubectl create -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/{{< release-branch >}}/examples/simple-udp/fleetallocation.yaml -o yaml ``` -For the full details of the YAML file head to the [Fleet Specification Guide](./fleet_spec.md#fleet-allocation-specification) +For the full details of the YAML file head to the [Fleet Specification Guide]({{< ref "/docs/Reference/fleet.md#fleet-allocation-specification" >}}) You should get back a response that looks like the following: @@ -413,7 +401,7 @@ ACK: Hello World ! EXIT ``` -You can finally type `EXIT` which tells the SDK to run the [Shutdown command](../sdks/README.md#shutdown), and therefore shuts down the `GameServer`. +You can finally type `EXIT` which tells the SDK to run the [Shutdown command]({{< ref "/docs/Guides/Client SDKs/_index.md#shutdown" >}}), and therefore shuts down the `GameServer`. If you run `kubectl describe gs | grep State` again - either the GameServer will be replaced with a new, `Ready` `GameServer` , or it will be in `Shutdown` state, on the way to being deleted. @@ -431,7 +419,7 @@ Let's take this for a spin! Run `kubectl edit fleet simple-udp` and set the `rep Let's also allocate ourselves a `GameServer` ``` -kubectl create -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/master/examples/simple-udp/fleetallocation.yaml -o yaml +kubectl create -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/{{< release-branch >}}/examples/simple-udp/fleetallocation.yaml -o yaml ``` We should now have four `Ready` `GameServers` and one `Allocated`. @@ -465,9 +453,12 @@ You have now deployed a new version of your game! ## Next Steps -- Have a look at the [GameServerAllocation specification](./fleet_spec.md#gameserver-allocation-specification), and see +{{% feature publishVersion="0.8.0" %}} +- Have a look at the [GameServerAllocation specification]({{< ref "/docs/Reference/fleet.md#gameserver-allocation-specification" >}}), and see how the extra functionality can enable smoke testing, server information communication, and more. -- You can now create a fleet autoscaler to automatically resize your fleet based on the actual usage. -See [Create a Fleet Autoscaler](./create_fleetautoscaler.md). -- Or if you want to try to use your own GameServer container make sure you have properly integrated the [Agones SDK](../sdks/). -- If you would like to learn how to programmatically allocate a Game Server from the fleet using the Agones API, see the [Allocator Service](./create_allocator_service.md) tutorial. +{{% /feature %}} + + - You can now create a fleet autoscaler to automatically resize your fleet based on the actual usage. +See [Create a Fleet Autoscaler]({{< relref "create-fleetautoscaler.md" >}}). + - Or if you want to try to use your own GameServer container make sure you have properly integrated the [Agones SDK]({{< ref "/docs/Guides/Client SDKs/_index.md" >}}). + - If you would like to learn how to programmatically allocate a Game Server from the fleet using the Agones API, see the [Allocator Service]({{< relref "../Tutorials/allocator-service-go.md" >}}) tutorial. diff --git a/docs/create_fleetautoscaler.md b/site/content/en/docs/Getting Started/create-fleetautoscaler.md similarity index 89% rename from docs/create_fleetautoscaler.md rename to site/content/en/docs/Getting Started/create-fleetautoscaler.md index 22577d53c6..9d262c837e 100644 --- a/docs/create_fleetautoscaler.md +++ b/site/content/en/docs/Getting Started/create-fleetautoscaler.md @@ -1,256 +1,262 @@ -# Quickstart Create a Fleet Autoscaler - -This guide covers how you can quickly get started using Agones to create a Fleet -Autoscaler to manage your fleet size automatically, based on actual load. - -## Prerequisites - -It is assumed that you have followed the instructions to [Create a Game Server Fleet](./create_fleet.md) -and you have a running fleet of game servers. - -## Objectives - -- Create a Fleet Autoscaler in Kubernetes using Agones custom resource. -- Watch the Fleet scale up when allocating GameServers -- Watch the Fleet scale down when shutting down allocated GameServers -- Edit the autoscaler specification to apply live changes - -### 1. Create a Fleet Autoscaler - -Let's create a Fleet Autoscaler using the following command : - -``` -kubectl apply -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/master/examples/simple-udp/fleetautoscaler.yaml -``` - -You should see a successful ouput similar to this : - -``` -fleetautoscaler.stable.agones.sev "simple-udp-autoscaler" created -``` - -This has created a FleetAutoscaler record inside Kubernetes. - -### 2. See the autoscaler status. - -``` -kubectl describe fleetautoscaler simple-udp-autoscaler -``` - -It should look something like this: - -``` -Name: simple-udp-autoscaler -Namespace: default -Labels: -Annotations: kubectl.kubernetes.io/last-applied-configuration={"apiVersion":"st -able.agones.dev/v1alpha1","kind":"FleetAutoscaler","metadata":{"annotations":{}, -"name":"simple-udp-autoscaler","namespace":"default"},... -API Version: stable.agones.dev/v1alpha1 -Kind: FleetAutoscaler -Metadata: - Cluster Name: - Creation Timestamp: 2018-10-02T15:19:58Z - Generation: 1 - Owner References: - API Version: stable.agones.dev/v1alpha1 - Block Owner Deletion: true - Controller: true - Kind: Fleet - Name: simple-udp - UID: 9960762e-c656-11e8-933e-fa163e07a1d4 - Resource Version: 6123197 - Self Link: /apis/stable.agones.dev/v1alpha1/namespaces/default/f -leetautoscalers/simple-udp-autoscaler - UID: 9fd0efa1-c656-11e8-933e-fa163e07a1d4 -Spec: - Fleet Name: simple-udp - Policy: - Buffer: - Buffer Size: 2 - Max Replicas: 10 - Min Replicas: 2 - Type: Buffer -Status: - Able To Scale: true - Current Replicas: 2 - Desired Replicas: 2 - Last Scale Time: - Scaling Limited: false -Events: -``` - -You can see the status (able to scale, not limited), the last time the fleet was scaled (nil for never) -and the current and desired fleet size. - -The autoscaler works by changing the desired size, and the fleet creates/deletes game server instances -to achieve to that number. The convergence is achieved in time, which is usually measured in seconds. - -### 3. Allocate a Game Server from the Fleet - -If you're interested in more details for game server allocation, you should consult the [Create a Game Server Fleet](./create_fleet.md) page. -In here we are only interested in triggering allocations to see the autoscaler in action. - -``` -kubectl create -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/master/examples/simple-udp/fleetallocation.yaml -o yaml -``` - -You should get in return the allocated game server details, which should end with something like: -``` - status: - address: 10.30.64.99 - nodeName: universal3 - ports: - - name: default - port: 7131 - state: Allocated -``` - -Note the address and port, you might need them later to connect to the server. - -### 4. See the autoscaler in action - -Now let's wait a few seconds to allow the autoscaler to detect the change in the fleet and check again its status - -``` -kubectl describe fleetautoscaler simple-udp-autoscaler -``` - -The last part should look something like this: - -``` -Spec: - Fleet Name: simple-udp - Policy: - Buffer: - Buffer Size: 2 - Max Replicas: 10 - Min Replicas: 2 - Type: Buffer -Status: - Able To Scale: true - Current Replicas: 3 - Desired Replicas: 3 - Last Scale Time: 2018-10-02T16:00:02Z - Scaling Limited: false -Events: - Type Reason Age From Message - ---- ------ ---- ---- ------- - Normal AutoScalingFleet 2m fleetautoscaler-controller Scaling fleet simple-udp from 2 to 3 -``` - -You can see that the fleet size has increased, the autoscaler having compensated for the allocated instance. -Last Scale Time has been updated, and a scaling event has been logged. - -Double-check the actual number of game server instances and status by running - -``` -kubectl get gs -o=custom-columns=NAME:.metadata.name,STATUS:.status.state,IP:.status.address,PORT:.status.ports -``` - -This will get you a list of all the current `GameSevers` and their `Status > State`. - -``` -NAME STATUS IP PORT -simple-udp-mzhrl-hz8wk Allocated 10.30.64.99 [map[name:default port:7131]] -simple-udp-mzhrl-k6jg5 Ready 10.30.64.100 [map[name:default port:7243]] -simple-udp-mzhrl-n2sk2 Ready 10.30.64.168 [map[name:default port:7658]] -``` - -### 5. Shut the allocated instance down - -Since we've only got one allocation, we'll just grab the details of the IP and port of the -only allocated `GameServer`: - -``` -kubectl get $(kubectl get fleetallocation -o name) -o jsonpath='{.status.GameServer.status.GameServer.status.ports[0].port}' -``` - -This should output your Game Server IP address and port. (eg `10.130.65.208:7936`) - -You can now communicate with the `GameServer`: - -``` -nc -u {IP} {PORT} -Hello World ! -ACK: Hello World ! -EXIT -``` - -You can finally type `EXIT` which tells the SDK to run the [Shutdown command](../sdks/README.md#shutdown), and therefore shuts down the `GameServer`. - -### 6. See the fleet scaling down - -Now let's wait a few seconds to allow the autoscaler to detect the change in the fleet and check again its status - -``` -kubectl describe fleetautoscaler simple-udp-autoscaler -``` - -It should look something like this: - -``` -Spec: - Fleet Name: simple-udp - Policy: - Buffer: - Buffer Size: 2 - Max Replicas: 10 - Min Replicas: 2 - Type: Buffer -Status: - Able To Scale: true - Current Replicas: 3 - Desired Replicas: 2 - Last Scale Time: 2018-10-02T16:09:02Z - Scaling Limited: false -Events: - Type Reason Age From Message - ---- ------ ---- ---- ------- - Normal AutoScalingFleet 9m fleetautoscaler-controller Scaling fleet simple-udp from 2 to 3 - Normal AutoScalingFleet 45s fleetautoscaler-controller Scaling fleet simple-udp from 3 to 2 -``` - -You can see that the fleet size has decreased, the autoscaler adjusting to game server instance being de-allocated, -the Last Scale Time and the events have been updated. Note that simple-udp game server instance you just closed earlier -might stay a bit in 'Unhealthy' state (and its pod in 'Terminating' until it gets removed. - -Double-check the actual number of game server instances and status by running - -``` -kubectl get gs -o=custom-columns=NAME:.metadata.name,STATUS:.status.state,IP:.status.address,PORT:.status.ports -``` - -This will get you a list of all the current `GameSevers` and their `Status > State`. - -``` -NAME STATUS IP PORT -simple-udp-mzhrl-k6jg5 Ready 10.30.64.100 [map[name:default port:7243]] -simple-udp-mzhrl-t7944 Ready 10.30.64.168 [map[port:7561 name:default]] -``` - -### 7. Change autoscaling parameters - -We can also change the configuration of the `FleetAutoscaler` of the running `Fleet`, and have the changes -applied live, without interruptions of service. - -Run `kubectl edit fleetautoscaler simple-udp-autoscaler` and set the `bufferSize` field to `5`. - -Let's look at the list of game servers again. Run `watch kubectl get gs -o=custom-columns=NAME:.metadata.name,STATUS:.status.state,IP:.status.address,PORT:.status.ports` -until you can see that are 5 ready server instances: - -``` -NAME STATUS IP PORT -simple-udp-mzhrl-7jpkp Ready 10.30.64.100 [map[name:default port:7019]] -simple-udp-mzhrl-czt8v Ready 10.30.64.168 [map[name:default port:7556]] -simple-udp-mzhrl-k6jg5 Ready 10.30.64.100 [map[name:default port:7243]] -simple-udp-mzhrl-nb8h2 Ready 10.30.64.168 [map[name:default port:7357]] -simple-udp-mzhrl-qspb6 Ready 10.30.64.99 [map[name:default port:7859]] -simple-udp-mzhrl-zg9rq Ready 10.30.64.99 [map[name:default port:7745]] -``` - -## Next Steps - -Read the advanced [Scheduling and Autoscaling](scheduling_autoscaling.md) guide, for more details on autoscaling. - -If you want to use your own GameServer container make sure you have properly integrated the [Agones SDK](../sdks/). \ No newline at end of file +--- +title: "Quickstart: Create a Fleet Autoscaler" +linkTitle: "Create a Fleetautoscaler" +date: 2019-01-02T06:42:33Z +description: > + This guide covers how you can quickly get started using Agones to create a Fleet + Autoscaler to manage your fleet size automatically, based on actual load. +weight: 30 +--- + +## Prerequisites + +It is assumed that you have followed the instructions to [Create a Game Server Fleet]({{< ref "create-fleet.md" >}}) +and you have a running fleet of game servers. + +## Objectives + +- Create a Fleet Autoscaler in Kubernetes using Agones custom resource. +- Watch the Fleet scale up when allocating GameServers +- Watch the Fleet scale down when shutting down allocated GameServers +- Edit the autoscaler specification to apply live changes + +### 1. Create a Fleet Autoscaler + +Let's create a Fleet Autoscaler using the following command : + +``` +kubectl apply -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/{{< release-branch >}}/examples/simple-udp/fleetautoscaler.yaml +``` + +You should see a successful ouput similar to this : + +``` +fleetautoscaler.stable.agones.sev "simple-udp-autoscaler" created +``` + +This has created a FleetAutoscaler record inside Kubernetes. + +### 2. See the autoscaler status. + +``` +kubectl describe fleetautoscaler simple-udp-autoscaler +``` + +It should look something like this: + +``` +Name: simple-udp-autoscaler +Namespace: default +Labels: +Annotations: kubectl.kubernetes.io/last-applied-configuration={"apiVersion":"st +able.agones.dev/v1alpha1","kind":"FleetAutoscaler","metadata":{"annotations":{}, +"name":"simple-udp-autoscaler","namespace":"default"},... +API Version: stable.agones.dev/v1alpha1 +Kind: FleetAutoscaler +Metadata: + Cluster Name: + Creation Timestamp: 2018-10-02T15:19:58Z + Generation: 1 + Owner References: + API Version: stable.agones.dev/v1alpha1 + Block Owner Deletion: true + Controller: true + Kind: Fleet + Name: simple-udp + UID: 9960762e-c656-11e8-933e-fa163e07a1d4 + Resource Version: 6123197 + Self Link: /apis/stable.agones.dev/v1alpha1/namespaces/default/f +leetautoscalers/simple-udp-autoscaler + UID: 9fd0efa1-c656-11e8-933e-fa163e07a1d4 +Spec: + Fleet Name: simple-udp + Policy: + Buffer: + Buffer Size: 2 + Max Replicas: 10 + Min Replicas: 2 + Type: Buffer +Status: + Able To Scale: true + Current Replicas: 2 + Desired Replicas: 2 + Last Scale Time: + Scaling Limited: false +Events: +``` + +You can see the status (able to scale, not limited), the last time the fleet was scaled (nil for never) +and the current and desired fleet size. + +The autoscaler works by changing the desired size, and the fleet creates/deletes game server instances +to achieve to that number. The convergence is achieved in time, which is usually measured in seconds. + +### 3. Allocate a Game Server from the Fleet + +If you're interested in more details for game server allocation, you should consult the [Create a Game Server Fleet]({{< ref "create-fleet.md" >}}) page. +In here we are only interested in triggering allocations to see the autoscaler in action. + +``` +kubectl create -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/{{< release-branch >}}/examples/simple-udp/fleetallocation.yaml -o yaml +``` + +You should get in return the allocated game server details, which should end with something like: +``` + status: + address: 10.30.64.99 + nodeName: universal3 + ports: + - name: default + port: 7131 + state: Allocated +``` + +Note the address and port, you might need them later to connect to the server. + +### 4. See the autoscaler in action + +Now let's wait a few seconds to allow the autoscaler to detect the change in the fleet and check again its status + +``` +kubectl describe fleetautoscaler simple-udp-autoscaler +``` + +The last part should look something like this: + +``` +Spec: + Fleet Name: simple-udp + Policy: + Buffer: + Buffer Size: 2 + Max Replicas: 10 + Min Replicas: 2 + Type: Buffer +Status: + Able To Scale: true + Current Replicas: 3 + Desired Replicas: 3 + Last Scale Time: 2018-10-02T16:00:02Z + Scaling Limited: false +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Normal AutoScalingFleet 2m fleetautoscaler-controller Scaling fleet simple-udp from 2 to 3 +``` + +You can see that the fleet size has increased, the autoscaler having compensated for the allocated instance. +Last Scale Time has been updated, and a scaling event has been logged. + +Double-check the actual number of game server instances and status by running + +``` +kubectl get gs -o=custom-columns=NAME:.metadata.name,STATUS:.status.state,IP:.status.address,PORT:.status.ports +``` + +This will get you a list of all the current `GameSevers` and their `Status > State`. + +``` +NAME STATUS IP PORT +simple-udp-mzhrl-hz8wk Allocated 10.30.64.99 [map[name:default port:7131]] +simple-udp-mzhrl-k6jg5 Ready 10.30.64.100 [map[name:default port:7243]] +simple-udp-mzhrl-n2sk2 Ready 10.30.64.168 [map[name:default port:7658]] +``` + +### 5. Shut the allocated instance down + +Since we've only got one allocation, we'll just grab the details of the IP and port of the +only allocated `GameServer`: + +``` +kubectl get $(kubectl get fleetallocation -o name) -o jsonpath='{.status.GameServer.status.GameServer.status.ports[0].port}' +``` + +This should output your Game Server IP address and port. (eg `10.130.65.208:7936`) + +You can now communicate with the `GameServer`: + +``` +nc -u {IP} {PORT} +Hello World ! +ACK: Hello World ! +EXIT +``` + +You can finally type `EXIT` which tells the SDK to run the [Shutdown command]({{< ref "/docs/Guides/Client SDKs/_index.md#shutdown" >}}), and therefore shuts down the `GameServer`. + +### 6. See the fleet scaling down + +Now let's wait a few seconds to allow the autoscaler to detect the change in the fleet and check again its status + +``` +kubectl describe fleetautoscaler simple-udp-autoscaler +``` + +It should look something like this: + +``` +Spec: + Fleet Name: simple-udp + Policy: + Buffer: + Buffer Size: 2 + Max Replicas: 10 + Min Replicas: 2 + Type: Buffer +Status: + Able To Scale: true + Current Replicas: 3 + Desired Replicas: 2 + Last Scale Time: 2018-10-02T16:09:02Z + Scaling Limited: false +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Normal AutoScalingFleet 9m fleetautoscaler-controller Scaling fleet simple-udp from 2 to 3 + Normal AutoScalingFleet 45s fleetautoscaler-controller Scaling fleet simple-udp from 3 to 2 +``` + +You can see that the fleet size has decreased, the autoscaler adjusting to game server instance being de-allocated, +the Last Scale Time and the events have been updated. Note that simple-udp game server instance you just closed earlier +might stay a bit in 'Unhealthy' state (and its pod in 'Terminating' until it gets removed. + +Double-check the actual number of game server instances and status by running + +``` +kubectl get gs -o=custom-columns=NAME:.metadata.name,STATUS:.status.state,IP:.status.address,PORT:.status.ports +``` + +This will get you a list of all the current `GameSevers` and their `Status > State`. + +``` +NAME STATUS IP PORT +simple-udp-mzhrl-k6jg5 Ready 10.30.64.100 [map[name:default port:7243]] +simple-udp-mzhrl-t7944 Ready 10.30.64.168 [map[port:7561 name:default]] +``` + +### 7. Change autoscaling parameters + +We can also change the configuration of the `FleetAutoscaler` of the running `Fleet`, and have the changes +applied live, without interruptions of service. + +Run `kubectl edit fleetautoscaler simple-udp-autoscaler` and set the `bufferSize` field to `5`. + +Let's look at the list of game servers again. Run `watch kubectl get gs -o=custom-columns=NAME:.metadata.name,STATUS:.status.state,IP:.status.address,PORT:.status.ports` +until you can see that are 5 ready server instances: + +``` +NAME STATUS IP PORT +simple-udp-mzhrl-7jpkp Ready 10.30.64.100 [map[name:default port:7019]] +simple-udp-mzhrl-czt8v Ready 10.30.64.168 [map[name:default port:7556]] +simple-udp-mzhrl-k6jg5 Ready 10.30.64.100 [map[name:default port:7243]] +simple-udp-mzhrl-nb8h2 Ready 10.30.64.168 [map[name:default port:7357]] +simple-udp-mzhrl-qspb6 Ready 10.30.64.99 [map[name:default port:7859]] +simple-udp-mzhrl-zg9rq Ready 10.30.64.99 [map[name:default port:7745]] +``` + +## Next Steps + +Read the advanced [Scheduling and Autoscaling]({{< relref "../Advanced/scheduling-and-autoscaling.md" >}}) guide, for more details on autoscaling. + +If you want to use your own GameServer container make sure you have properly integrated the [Agones SDK]({{< ref "/docs/Guides/Client SDKs/_index.md" >}}). + diff --git a/docs/create_gameserver.md b/site/content/en/docs/Getting Started/create-gameserver.md similarity index 84% rename from docs/create_gameserver.md rename to site/content/en/docs/Getting Started/create-gameserver.md index dd2eeea5e0..7b4165b692 100644 --- a/docs/create_gameserver.md +++ b/site/content/en/docs/Getting Started/create-gameserver.md @@ -1,6 +1,11 @@ -# Quickstart Create a Game Server - -This guide covers how you can quickly get started using Agones to create GameServers. +--- +title: "Quickstart: Create a Game Server" +linkTitle: "Create a Game Server" +date: 2019-01-02T06:35:31Z +weight: 10 +description: > + This guide covers how you can quickly get started using Agones to create GameServers. +--- ## Objectives @@ -17,16 +22,16 @@ The following prerequisites are required to create a GameServer : 3. kubectl properly configured 4. Netcat which is already installed on most Linux/macOS distributions, for windows you can use [WSL](https://docs.microsoft.com/en-us/windows/wsl/install-win10). -If you don't have a Kubernetes cluster you can follow [these instructions](../install/README.md) to create a cluster on Google Kubernetes Engine (GKE), Minikube or Azure Kubernetes Service (AKS), and install Agones. +If you don't have a Kubernetes cluster you can follow [these instructions]({{< ref "/docs/Installation/_index.md" >}}) to create a cluster on Google Kubernetes Engine (GKE), Minikube or Azure Kubernetes Service (AKS), and install Agones. -For the purpose of this guide we're going to use the [simple-udp](../examples/simple-udp/) example as the GameServer container. This example is very simple UDP server written in Go. Don't hesitate to look at the code of this example for more information. +For the purpose of this guide we're going to use the {{< ghlink href="examples/simple-udp/" >}}simple-udp{{< /ghlink >}} example as the GameServer container. This example is very simple UDP server written in Go. Don't hesitate to look at the code of this example for more information. ### 1. Create a GameServer Let's create a GameServer using the following command : ``` -kubectl apply -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/master/examples/simple-udp/gameserver.yaml +kubectl apply -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/{{< release-branch >}}/examples/simple-udp/gameserver.yaml ``` You should see a successful ouput similar to this : @@ -58,7 +63,7 @@ simple-udp-vwxpt 2/2 Running 0 5m As you can see above it says `READY: 2/2` this means there are two containers running in this Pod, this is because Agones injected the SDK sidecar for readiness and health checking of your Game Server. -For the full details of the YAML file head to the [GameServer Specification Guide](./gameserver_spec.md) +For the full details of the YAML file head to the [GameServer Specification Guide]({{< ref "/docs/Reference/gameserver.md" >}}) ### 2. Fetch the GameServer Status @@ -160,11 +165,13 @@ ACK: Hello World ! EXIT ``` -You can finally type `EXIT` which tells the SDK to run the [Shutdown command](../sdks#shutdown), and therefore shuts down the `GameServer`. +You can finally type `EXIT` which tells the SDK to run the [Shutdown command]({{< ref "/docs/Guides/Client SDKs/_index.md#shutdown" >}}), and therefore shuts down the `GameServer`. If you run `kubectl describe gameserver` again - either the GameServer will be gone completely, or it will be in `Shutdown` state, on the way to being deleted. ## Next Step -If you want to use your own GameServer container make sure you have properly integrated the [Agones SDK](../sdks/). +If you want to use your own GameServer container make sure you have properly integrated the [Agones SDK]({{< ref "/docs/Guides/Client SDKs/_index.md" >}}). + + diff --git a/docs/create_webhook_fleetautoscaler.md b/site/content/en/docs/Getting Started/create-webhook-fleetautoscaler.md similarity index 85% rename from docs/create_webhook_fleetautoscaler.md rename to site/content/en/docs/Getting Started/create-webhook-fleetautoscaler.md index 53165778b9..c81f01bb42 100644 --- a/docs/create_webhook_fleetautoscaler.md +++ b/site/content/en/docs/Getting Started/create-webhook-fleetautoscaler.md @@ -1,17 +1,23 @@ -# Quickstart Create a Fleet Autoscaler with Webhook Policy +--- +title: "Quickstart: Create a Fleet Autoscaler with Webhook Policy" +linkTitle: "Create a Webhook Fleetautoscaler" +date: 2019-01-02T06:42:44Z +weight: 40 +description: > + This guide covers how you can create webhook fleet autoscaler policy. +--- -This guide covers how you can create webhook fleet autoscaler policy. The main difference from the Buffer policy is that the logic on how many target replicas you need is delegated to a separate pod. This type of Autoscaler would send an HTTP request to the webhook endpoint every sync period (which is currently 30s) with a JSON body, and scale the target fleet based on the data that is returned. -# Chapter 1 Configuring HTTP fleetautoscaler webhook +## Chapter 1 Configuring HTTP fleetautoscaler webhook -## Prerequisites +### Prerequisites -It is assumed that you have read the instructions to [Create a Game Server Fleet](./create_fleet.md) +It is assumed that you have read the instructions to [Create a Game Server Fleet]({{< relref "./create-fleet.md" >}}) and you have a running fleet of game servers or you could run command from Step #1. -## Objectives +### Objectives - Run a fleet - Deploy the Webhook Pod and service for autoscaling @@ -19,23 +25,27 @@ and you have a running fleet of game servers or you could run command from Step - Watch the Fleet scales up when allocating GameServers - Watch the Fleet scales down after GameServer shutdown -### 1. Deploy the fleet +#### 1. Deploy the fleet Run a fleet in a cluster: ``` -kubectl apply -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/master/examples/simple-udp/fleet.yaml +kubectl apply -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/{{< release-branch >}}/examples/simple-udp/fleet.yaml ``` -### 2. Deploy a Webhook service for autoscaling +#### 2. Deploy a Webhook service for autoscaling -In this step we would deploy an example webhook which will control the size of the fleet based on allocated gameservers portion in a fleet. You can see the source code for this example webhook server [here](../examples/autoscaler-webhook/main.go). The fleetautoscaler would trigger this endpoint every 30 seconds. More details could be found [also here](../examples/autoscaler-webhook/README.md). -We need to create a pod which will handle HTTP requests with json payload [`FleetAutoscaleReview`](./fleetautoscaler_spec.md#webhook-endpoint-specification) and return back it with [`FleetAutoscaleResponse`](./fleetautoscaler_spec.md#webhook-endpoint-specification) populated. +In this step we would deploy an example webhook which will control the size of the fleet based on allocated gameservers +portion in a fleet. You can see the source code for this example webhook server {{< ghlink href="examples/autoscaler-webhook/main.go" >}}here{{< /ghlink >}}. +The fleetautoscaler would trigger this endpoint every 30 seconds. More details could be found {{< ghlink href="examples/autoscaler-webhook/" >}}also here{{< /ghlink >}}. +We need to create a pod which will handle HTTP requests with json payload +[`FleetAutoscaleReview`]({{< relref "../Reference/fleetautoscaler.md#webhook-endpoint-specification" >}}) and return back it +with [`FleetAutoscaleResponse`]({{< relref "../Reference/fleetautoscaler.md#webhook-endpoint-specification" >}}) populated. The `Scale` flag and `Replicas` values returned in the `FleetAutoscaleResponse` and `Replicas` value tells the FleetAutoscaler what target size the backing Fleet should be scaled up or down to. If `Scale` is false - no scalling occurs. Run next command to create a service and a Webhook pod in a cluster: ``` -kubectl apply -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/master/examples/autoscaler-webhook/autoscaler-service.yaml +kubectl apply -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/{{< release-branch >}}/examples/autoscaler-webhook/autoscaler-service.yaml ``` To check that it is running and liveness probe is fine: @@ -51,12 +61,12 @@ Node: gke-test-cluster-default-1c5dec79-h0tq/10.138.0.2 Status: Running ``` -### 3. Create a Fleet Autoscaler +#### 3. Create a Fleet Autoscaler Let's create a Fleet Autoscaler using the following command: ``` -kubectl apply -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/master/examples/webhookfleetautoscaler.yaml +kubectl apply -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/{{< release-branch >}}/examples/webhookfleetautoscaler.yaml ``` You should see a successful ouput similar to this: @@ -68,7 +78,7 @@ fleetautoscaler.stable.agones.sev "webhook-fleet-autoscaler" created This has created a FleetAutoscaler record inside Kubernetes. It has the link to Webhook service we deployed above. -### 4. See the fleet and autoscaler status. +#### 4. See the fleet and autoscaler status. In order to track the list of gameservers which run in your fleet you can run this command in a separate terminal tab: @@ -122,13 +132,13 @@ You can see the status (able to scale, not limited), the last time the fleet was The autoscaler make a query to a webhoook service deployed on step 1 and on response changing the target Replica size, and the fleet creates/deletes game server instances to achieve that number. The convergence is achieved in time, which is usually measured in seconds. -### 5. Allocate Game Servers from the Fleet to trigger scale up +#### 5. Allocate Game Servers from the Fleet to trigger scale up -If you're interested in more details for game server allocation, you should consult the [Create a Game Server Fleet](./create_fleet.md) page. +If you're interested in more details for game server allocation, you should consult the [Create a Game Server Fleet]({{< relref "../Getting Started/create-fleet.md" >}}) page. Here we only interested in triggering allocations to see the autoscaler in action. ``` -kubectl create -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/master/examples/simple-udp/fleetallocation.yaml -o yaml +kubectl create -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/{{< release-branch >}}/examples/simple-udp/fleetallocation.yaml -o yaml ``` You should get in return the allocated game server details, which should end with something like: @@ -146,10 +156,10 @@ Note the address and port, you might need them later to connect to the server. Run the kubectl command one more time so that we have both servers allocated: ``` -kubectl create -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/master/examples/simple-udp/fleetallocation.yaml -o yaml +kubectl create -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/{{< release-branch >}}/examples/simple-udp/fleetallocation.yaml -o yaml ``` -### 6. Check new Autoscaler and Fleet status +#### 6. Check new Autoscaler and Fleet status Now let's wait a few seconds to allow the autoscaler to detect the change in the fleet and check again its status @@ -201,7 +211,7 @@ simple-udp-dmkp4-r4qtt Allocated 35.247.13.175 [map[name:default port:7220 simple-udp-dmkp4-rsr6n Ready 35.247.13.175 [map[name:default port:7297]] ``` -### 7. Check down scaling using Webhook Autoscaler policy +#### 7. Check down scaling using Webhook Autoscaler policy Based on our custom webhook deployed earlier, if the fraction of allocated replicas in whole Replicas count would be less that threshold (0.3) than fleet would scale down by scaleFactor, in our example by 2. @@ -237,7 +247,7 @@ simple-udp-884fg-6q5sk Ready 35.247.117.202 7373 simple-udp-884fg-b7l58 Allocated 35.247.117.202 7766 ``` -### 8. Cleanup +#### 8. Cleanup You can delete the autoscaler service and associated resources with the following commands. ``` @@ -250,25 +260,23 @@ Removing the fleet: kubectl delete -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/master/examples/simple-udp/fleet.yaml ``` +{{% feature publishVersion="0.8.0" %}} +## Chapter 2 Configuring HTTPS fleetautoscaler webhook with CA Bundle -# Chapter 2 Configuring HTTPS fleetautoscaler webhook with CA Bundle - -⚠️⚠️⚠️ **This is currently a development feature and has not been released** ⚠️⚠️⚠️ - -## Objectives +### Objectives Using TLS and CA bundle we can establish trusted communication between Fleetautoscaler and Webhook which controls size of the fleet (Replicas count). The certificate of the webhook should be signed by Certificate Authority provided in fleetautoscaler yaml configuration file. Which eliminates the possibility to perform man in the middle attack when using HTTP connection to a webhook which can be located inside or outside of our cluster. Description of common steps with Chapter 1 would be ommited for simplicity, you can see pervious chapter for the details. -### 1. Deploy the fleet +#### 1. Deploy the fleet Run a fleet in a cluster: ``` kubectl apply -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/master/examples/simple-udp/fleet.yaml ``` -### 2. Create X509 Root and Webhook certificates +#### 2. Create X509 Root and Webhook certificates The procedure of generating Self-signed CA certificate taken from [here](https://datacenteroverlords.com/2012/03/01/creating-your-own-ssl-certificate-authority/) @@ -315,7 +323,7 @@ Copy the output of the command above and replace the caBundle field in your text vim $GOPATH/src/agones.dev/agones/examples/webhookfleetautoscalertls.yaml ``` -### 3. Deploy a Webhook service for autoscaling +#### 3. Deploy a Webhook service for autoscaling Run next command to create a service and a Webhook pod in a cluster: ``` @@ -335,7 +343,7 @@ Namespace: default Status: Running ``` -### 4. Create a Fleet Autoscaler +#### 4. Create a Fleet Autoscaler Let's create a Fleet Autoscaler using the following command: @@ -343,7 +351,7 @@ Let's create a Fleet Autoscaler using the following command: kubectl apply -f $GOPATH/src/agones.dev/agones/examples/webhookfleetautoscalertls.yaml ``` -### 5. See the fleet and autoscaler status. +#### 5. See the fleet and autoscaler status. In order to track the list of gameservers which run in your fleet you can run this command in a separate terminal tab: @@ -351,16 +359,16 @@ In order to track the list of gameservers which run in your fleet you can run th watch "kubectl get gs -n default" ``` -### 6. Allocate two Game Servers from the Fleet to trigger scale up +#### 6. Allocate two Game Servers from the Fleet to trigger scale up -If you're interested in more details for game server allocation, you should consult the [Create a Game Server Fleet](./create_fleet.md) page. +If you're interested in more details for game server allocation, you should consult the [Create a Game Server Fleet]({{< relref "create-fleet.md" >}}) page. Here we only interested in triggering allocations to see the autoscaler in action. ``` for i in {0..2} ; do kubectl create -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/master/examples/simple-udp/fleetallocation.yaml -o yaml ; done ``` -### 7. Check new Autoscaler and Fleet status +#### 7. Check new Autoscaler and Fleet status Now let's wait a few seconds to allow the autoscaler to detect the change in the fleet and check again its status @@ -403,7 +411,7 @@ simple-udp-njmr7-klgtt Ready 35.203.159.68 7323 gke-test-cluster2 simple-udp-njmr7-lglsr Allocated 35.203.159.68 7009 gke-test-cluster2-default-55044752-zt63 4m ``` -### 8. Cleanup +#### 8. Cleanup You can delete the autoscaler service and associated resources with the following commands. ``` @@ -420,12 +428,14 @@ Removing the fleet: kubectl delete -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/master/examples/simple-udp/fleet.yaml ``` -## Comments +{{% /feature %}} + +### Comments Note that now secure communication is established and we can trust our webhook. If we need to use server outside of the kubernetes cluster we can use other Root certificate authority and put it into as caBundle parameter in fleetautoscaler configuration (in pem format, base64-encoded). ## Next Steps -Read the advanced [Scheduling and Autoscaling](scheduling_autoscaling.md) guide, for more details on autoscaling. +Read the advanced [Scheduling and Autoscaling]({{< relref "../Advanced/scheduling-and-autoscaling.md" >}}) guide, for more details on autoscaling. -If you want to use your own GameServer container make sure you have properly integrated the [Agones SDK](../sdks/). +If you want to use your own GameServer container make sure you have properly integrated the [Agones SDK]({{< relref "../Guides/Client SDKs/_index.md" >}}). diff --git a/docs/edit_first_game_server.md b/site/content/en/docs/Getting Started/edit-first-gameserver-go.md similarity index 73% rename from docs/edit_first_game_server.md rename to site/content/en/docs/Getting Started/edit-first-gameserver-go.md index 84df7a715d..9a57822df3 100644 --- a/docs/edit_first_game_server.md +++ b/site/content/en/docs/Getting Started/edit-first-gameserver-go.md @@ -1,5 +1,12 @@ -# Quickstart Edit a Game Server -The following guide is for developers without Docker or Kubernetes experience, that want to use the simple-udp example as a starting point for a custom game server. This guide addresses Google Kubernetes Engine and Minikube. We would welcome a Pull Request to expand this to include other platforms as well. +--- +title: "Quickstart: Edit a Game Server" +linkTitle: "Edit Your First Game Server (Go)" +date: 2019-01-02T06:42:56Z +description: > + The following guide is for developers without Docker or Kubernetes experience, that want to use the simple-udp example as a starting point for a custom game server. +--- + +This guide addresses Google Kubernetes Engine and Minikube. We would welcome a Pull Request to expand this to include other platforms as well. ## Prerequisites @@ -9,9 +16,11 @@ The following guide is for developers without Docker or Kubernetes experience, t 4. kubectl properly configured To install on GKE, follow the install instructions (if you haven't already) at -[Setting up a Google Kubernetes Engine (GKE) cluster](../install/README.md#setting-up-a-google-kubernetes-engine-gke-cluster). Also complete the "Enabling creation of RBAC resources" and "Installing Agones" sets of instructions on the same page. +[Setting up a Google Kubernetes Engine (GKE) cluster]({{< ref "/docs/Installation/_index.md#setting-up-a-google-kubernetes-engine-gke-cluster" >}}). +Also complete the "Enabling creation of RBAC resources" and "Installing Agones" sets of instructions on the same page. -To install locally on Minikube, read [Setting up a Minikube cluster](../install/README.md#setting-up-a-minikube-cluster). Also complete the "Enabling creation of RBAC resources" and "Installing Agones" sets of instructions on the same page. +To install locally on Minikube, read [Setting up a Minikube cluster]({{< ref "/docs/Installation/_index.md#setting-up-a-minikube-cluster" >}}). +Also complete the "Enabling creation of RBAC resources" and "Installing Agones" sets of instructions on the same page. ## Modify the code and push another new image @@ -64,7 +73,7 @@ and advanced authentication methods to the Google Container Registry. ### Modify gameserver.yaml Modify the following line from gameserver.yaml to use the new configuration. -``` +```yaml spec: containers: - name: agones-simple-udp @@ -111,10 +120,10 @@ ACK: Echo says Hello World! EXIT ``` -You can finally type `EXIT` which tells the SDK to run the [Shutdown command](../sdks#shutdown), and therefore shuts down the `GameServer`. +You can finally type `EXIT` which tells the SDK to run the [Shutdown command]({{< ref "/docs/Guides/Client SDKs/_index.md#shutdown" >}}), and therefore shuts down the `GameServer`. If you run `kubectl describe gameserver` again - either the GameServer will be gone completely, or it will be in `Shutdown` state, on the way to being deleted. ## Next Steps -If you want to perform rolling updates of modified game servers, see [Quickstart Create a Game Server Fleet](./create_fleet.md). +If you want to perform rolling updates of modified game servers, see [Quickstart Create a Game Server Fleet]({{< relref "./create-fleet.md" >}}). diff --git a/sdks/README.md b/site/content/en/docs/Guides/Client SDKs/_index.md similarity index 81% rename from sdks/README.md rename to site/content/en/docs/Guides/Client SDKs/_index.md index b5ddad0096..3948f8e82c 100644 --- a/sdks/README.md +++ b/site/content/en/docs/Guides/Client SDKs/_index.md @@ -1,36 +1,20 @@ -# Agones Game Server Client SDKs - - -Table of Contents -================= - - * [Overview](#overview) - * [Function Reference](#function-reference) - * [Ready()](#ready) - * [Health()](#health) - * [Shutdown()](#shutdown) - * [SetLabel(key, value)](#setlabelkey-value) - * [SetAnnotation(key, value)](#setannotationkey-value) - * [GameServer()](#gameserver) - * [WatchGameServer(function(gameserver){...})](#watchgameserverfunctiongameserver) - * [Local Development](#local-development) - * [Providing your own GameServer configuration for local development](#providing-your-own-gameserver-configuration-for-local-development) - * [Writing your own SDK](#writing-your-own-sdk) - * [gRPC Client Generation](#grpc-client-generation) - * [REST API Implementation](#rest-api-implementation) - * [Building the Local Tools](#building-the-local-tools) +--- +title: "Agones Game Server Client SDKs" +linkTitle: "Client SDKs" +date: 2019-01-02T10:16:30Z +weight: 10 +description: "The SDKs are integration points for game servers with Agones itself." +--- ## Overview -The SDKs are integration points for game servers with Agones itself. - -They are required for a game server to work with Agones. +The client SDKs are required for a game server to work with Agones. The current supported SDKs are: -- [C++](cpp) + +- [C++]({{< relref "cpp.md" >}}) - [Go](https://godoc.org/agones.dev/agones/sdks/go) -- [Rust](rust) -- [REST](../docs/sdk_rest_api.md) +- [REST]({{< relref "rest.md" >}}) The SDKs are relatively thin wrappers around [gRPC](https://grpc.io) generated clients, or an implementation of the REST API (exposed via [grpc-gateway](https://github.com/grpc-ecosystem/grpc-gateway)), @@ -47,7 +31,7 @@ While each of the SDKs are canonical to their languages, they all have the follo functions that implement the core responsibilities of the SDK. For language specific documentation, have a look at the respective source (linked above), -and the [examples](../examples). +and the {{< ghlink href="examples" >}}examples{{< /ghlink >}}. ### Ready() This tells Agones that the Game Server is ready to take player connections. @@ -60,7 +44,7 @@ This sends a single ping to designate that the Game Server is alive and healthy. Failure to send pings within the configured thresholds will result in the GameServer being marked as `Unhealthy`. -See the [gameserver.yaml](../examples/gameserver.yaml) for all health checking +See the {{< ghlink href="examples/gameserver.yaml" >}}gameserver.yaml{{< /ghlink >}} for all health checking configurations. ### Shutdown() @@ -94,11 +78,11 @@ Since the GameServer contains an entire [PodTemplate](https://kubernetes.io/docs the returned object is limited to that configuration that was deemed useful. If there are areas that you feel are missing, please [file an issue](https://github.com/GoogleCloudPlatform/agones/issues) or pull request. -The easiest way to see what is exposed, is to check the [`sdk.proto`](https://github.com/GoogleCloudPlatform/agones/blob/master/sdk.proto), +The easiest way to see what is exposed, is to check the {{< ghlink href="sdk.proto" >}}`sdk.proto`{{< /ghlink >}}, specifically at the `message GameServer`. For language specific documentation, have a look at the respective source (linked above), -and the [examples](../examples). +and the {{< ghlink href="examples" >}}examples{{< /ghlink >}}. ### WatchGameServer(function(gameserver){...}) @@ -107,17 +91,17 @@ This can be useful to track `GameServer > Status > State` changes, `metadata` ch In combination with this SDK, manipulating [Annotations](https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/) and [Labels](https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/) can also be a useful way to communicate information through to running game server processes from outside those processes. -This is especially useful when combined with `FleetAllocation` [applied metadata](../docs/fleet_spec.md#fleet-allocation-specification). +This is especially useful when combined with `FleetAllocation` [applied metadata]({{< ref "/docs/Reference/fleet.md#fleet-allocation-specification" >}}). Since the GameServer contains an entire [PodTemplate](https://kubernetes.io/docs/concepts/workloads/pods/pod-overview/#pod-templates) the returned object is limited to that configuration that was deemed useful. If there are areas that you feel are missing, please [file an issue](https://github.com/GoogleCloudPlatform/agones/issues) or pull request. -The easiest way to see what is exposed, is to check the [`sdk.proto`](https://github.com/GoogleCloudPlatform/agones/blob/master/sdk.proto), +The easiest way to see what is exposed, is to check the {{< ghlink href="sdk.proto" >}}`sdk.proto`{{< /ghlink >}}, specifically at the `message GameServer`. For language specific documentation, have a look at the respective source (linked above), -and the [examples](../examples). +and the {{< ghlink href="examples" >}}examples{{< /ghlink >}}. ## Local Development @@ -179,8 +163,6 @@ $ ./sdk-server.linux.amd64 --local -f ../../../examples/simple-udp/gameserver.ya {"level":"info","msg":"Starting SDKServer grpc-gateway...","source":"main","time":"2018-08-25T17:56:39-07:00"} ``` - - ## Writing your own SDK If there isn't a SDK for the language and platform you are looking for, you have several options: @@ -188,14 +170,14 @@ If there isn't a SDK for the language and platform you are looking for, you have ### gRPC Client Generation If client generation is well supported by [gRPC](https://grpc.io/docs/), then generate a client from the -[sdk.proto](../sdk.proto), and look at the current [sdks](.) to see how the wrappers are implemented to make interaction +{{< ghlink href="sdk.proto" >}}`sdk.proto`{{< /ghlink >}}, and look at the current {{< ghlink href="sdks" >}}sdks{{< /ghlink >}} to see how the wrappers are implemented to make interaction with the SDK server simpler for the user. ### REST API Implementation If client generation is not well supported by gRPC, or if there are other complicating factors, implement the SDK through -the [REST](../docs/sdk_rest_api.md) HTTP+JSON interface. This could be written by hand, or potentially generated from -the [Swagger/OpenAPI Spec](../sdk.swagger.json). +the [REST]({{< relref "rest.md" >}}) HTTP+JSON interface. This could be written by hand, or potentially generated from +the {{< ghlink href="sdk.swagger.json" >}}Swagger/OpenAPI Spec{{< /ghlink >}}. Finally, if you build something that would be usable by the community, please submit a pull request! @@ -205,7 +187,7 @@ If you wish to build the binaries for local development from source the `make` target `build-agones-sdk-binary` will compile the necessary binaries for all supported operating systems (64 bit windows, linux and osx). -You can find the binaries in the `bin` folder in [`cmd/sdk-server`](../cmd/sdk-server) +You can find the binaries in the `bin` folder in {{< ghlink href="cmd/sdk-server" >}}`cmd/sdk-server`{{< /ghlink >}} once compilation is complete. -See [Developing, Testing and Building Agones](../build) for more details. +See {{< ghlink href="build" branch="master" >}}Developing, Testing and Building Agones{{< /ghlink >}} for more details. diff --git a/site/content/en/docs/Guides/Client SDKs/cpp.md b/site/content/en/docs/Guides/Client SDKs/cpp.md new file mode 100644 index 0000000000..15bffab0b5 --- /dev/null +++ b/site/content/en/docs/Guides/Client SDKs/cpp.md @@ -0,0 +1,155 @@ +--- +title: "C++ Game Server Client SDK" +linkTitle: "C++" +date: 2019-01-02T10:17:50Z +weight: 10 +description: "This is the C++ version of the Agones Game Server Client SDK. " +--- + +Check the [Client SDK Documentation]({{< relref "_index.md" >}}) for more details on each of the SDK functions and how to run the SDK locally. + +## Download + +Download the source from the [Releases Page](https://github.com/GoogleCloudPlatform/agones/releases) +or {{< ghlink href="sdks/rust" >}}directly from Github{{< /ghlink >}}. + +## Usage + +The C++ SDK is specifically designed to be as simple as possible, and deliberately doesn't include any kind +of singleton management, or threading/asynchronous processing to allow developers to manage these aspects as they deem +appropriate for their system. + +We may consider these types of features in the future, depending on demand. + +To begin working with the SDK, create an instance of it. +```cpp +agones::SDK *sdk = new agones::SDK(); +``` + +To connect to the SDK server, either local or when running on Agones, run the `sdk->Connect()` method. +This will block for up to 30 seconds if the SDK server has not yet started and the connection cannot be made, +and will return `false` if there was an issue connecting. + +```cpp +bool ok = sdk->Connect(); +``` + +To send a [health check]({{< relref "_index.md#health" >}}) ping call `sdk->Health()`. This is a synchronous request that will +return `false` if it has failed in any way. Read [GameServer Health Checking]({{< relref "../health-checking.md" >}}) for more +details on the game server health checking strategy. + +```cpp +bool ok = sdk->Health(); +``` + +To mark the game server as [ready to receive player connections]({{< relref "_index.md#ready" >}}), call `sdk->Ready()`. +This will return a grpc::Status object, from which we can call `status.ok()` to determine +if the function completed successfully. + +For more information you can also look at the [gRPC Status reference](https://grpc.io/grpc/cpp/classgrpc_1_1_status.html) + +```cpp +grpc::Status status = sdk->Ready(); +if (!status.ok()) { ... } +``` + +To mark that the [game session is completed]({{< relref "_index.md#shutdown" >}}) and the game server should be shut down call `sdk->Shutdown()`. + +This will return a grpc::Status object, from which we can call `status.ok()` to determine +if the function completed successfully. + +For more information you can also look at the [gRPC Status reference](https://grpc.io/grpc/cpp/classgrpc_1_1_status.html) + +```cpp +grpc::Status status = sdk->Shutdown(); +if (!status.ok()) { ... } +``` + +To [set a Label]({{< relref "_index.md#setlabelkey-value" >}}) on the backing `GameServer` call +`sdk->SetLabel(key, value)`. + +This will return a grpc::Status object, from which we can call `status.ok()` to determine +if the function completed successfully. + +For more information you can also look at the [gRPC Status reference](https://grpc.io/grpc/cpp/classgrpc_1_1_status.html) + +```cpp +grpc::Status status = sdk->SetLabel("test-label", "test-value"); +if (!status.ok()) { ... } +``` + +To [set an Annotation]({{< relref "_index.md#setannotationkey-value" >}}) on the backing `GameServer` call +`sdk->SetAnnotation(key, value)`. + +This will return a grpc::Status object, from which we can call `status.ok()` to determine +if the function completed successfully. + +For more information you can also look at the [gRPC Status reference](https://grpc.io/grpc/cpp/classgrpc_1_1_status.html) + +```cpp +status = sdk->SetAnnotation("test-annotation", "test value"); +if (!status.ok()) { ... } +``` + + +To get the details on the [backing `GameServer`]({{< relref "_index.md#gameserver" >}}) call `sdk->GameServer(&gameserver)`, +passing in a `stable::agones::dev::sdk::GameServer*` to push the results of the `GameServer` configuration into. + +This function will return a grpc::Status object, from which we can call `status.ok()` to determine +if the function completed successfully. + +```cpp +stable::agones::dev::sdk::GameServer gameserver; +grpc::Status status = sdk->GameServer(&gameserver); +if (!status.ok()) {...} +``` + +To get [updates on the backing `GameServer`]({{< relref "_index.md#watchgameserverfunctiongameserver" >}}) as they happen, +call `sdk->WatchGameServer([](stable::agones::dev::sdk::GameServer gameserver){...})`. + +This will call the passed in `std::function` +synchronously (this is a blocking function, so you may want to run it in its own thread) whenever the backing `GameServer` +is updated. + +```cpp +sdk->WatchGameServer([](stable::agones::dev::sdk::GameServer gameserver){ + std::cout << "GameServer Update, name: " << gameserver.object_meta().name() << std::endl; + std::cout << "GameServer Update, state: " << gameserver.status().state() << std::endl; +}); +``` + +For more information, you can also read the [SDK Overview]({{< relref "_index.md" >}}), check out +{{< ghlink href="sdks/cpp/sdk.h" >}}sdk.h{{< /ghlink >}} and also look at the +{{< ghlink href="examples/cpp-simple" >}}C++ example{{< / >}}. + +### Failure +When running on Agones, the above functions should only fail under exceptional circumstances, so please +file a bug if it occurs. + +## Dynamic and Static Libraries + +In the [releases](https://github.com/googlecloudplatform/agones/releases) folder +you will find two archives for download that contain both static and dynamic libraries for building your +game server on Linux: + +- `argonsdk-$(VERSION)-dev-linux-arch_64.tar.gz`: This includes all the +headers as well as dynamic and static libraries that are needed for development and runtime. +- `argonsdk-$(VERSION)-runtime-linux-arch_64.tar.gz`: This includes just the dynamic libraries that +are needed to run a binary compiled against the SDK and its dependencies. + +### Building the Libraries + +If you want to build the libraries from Agones source, +the `make` target `build-sdk-cpp` will compile both static and dynamic libraries for Debian/Linux +for your usage, to be found in the `bin` directory inside this one. + +## Building From Source +If you wish to compile from source, you will need to compile and install the following dependencies: + +- [gRPC](https://grpc.io), v1.16.1 - [C++ compilation guide](https://github.com/grpc/grpc/tree/v1.16.x/src/cpp) + +## Windows and macOS + +If you are building a server on Windows or macOS, and need a development build to run on +that platform, at this time you will need to compile from source. Windows and macOS libraries +for the C++ SDK for easier cross platform development are planned and will be provided in the near future. diff --git a/docs/sdk_rest_api.md b/site/content/en/docs/Guides/Client SDKs/rest.md similarity index 87% rename from docs/sdk_rest_api.md rename to site/content/en/docs/Guides/Client SDKs/rest.md index 35725d486d..e88190387e 100644 --- a/docs/sdk_rest_api.md +++ b/site/content/en/docs/Guides/Client SDKs/rest.md @@ -1,7 +1,12 @@ -# REST Game Server Client API +--- +title: "REST Game Server Client API" +linkTitle: "Rest" +date: 2019-01-02T10:18:08Z +weight: 100 +description: "This is the REST version of the Agones Game Server Client SDK. " +--- -This is the REST version of the Agones Game Server Client SDK. -Check the [Client SDK Documentation](../sdks/README.md) for more details on each of the SDK functions and how to run the SDK locally. +Check the [Client SDK Documentation]({{< relref "_index.md" >}}) for more details on each of the SDK functions and how to run the SDK locally. The REST API can be accessed from `http://localhost:59358/` from the game server process. @@ -9,7 +14,7 @@ Generally the REST interface gets used if gRPC isn't well supported for a given ## Generating clients -While you can hand write REST integrations, we also have a [generated OpenAPI/Swagger definition](../sdk.swagger.json) +While you can hand write REST integrations, we also have a {{< ghlink href="sdk.swagger.json" >}}generated OpenAPI/Swagger definition{{< /ghlink >}} available. This means you can use OpenAPI/Swagger tooling to generate clients as well, if you need them. For example (to be run in the `agones` home directory): @@ -66,7 +71,7 @@ $ curl -d "{}" -H "Content-Type: application/json" -X POST http://localhost:5935 Apply a Label with the prefix "stable.agones.dev/sdk-" to the backing `GameServer` metadata. -See the SDK [SetLabel](../sdks/README.md#setlabelkey-value) documentation for restrictions. +See the SDK [SetLabel]({{< ref "/docs/Guides/Client SDKs/_index.md#setlabelkey-value" >}}) documentation for restrictions. #### Example diff --git a/site/content/en/docs/Guides/Client SDKs/rust.md b/site/content/en/docs/Guides/Client SDKs/rust.md new file mode 100644 index 0000000000..c78dc94284 --- /dev/null +++ b/site/content/en/docs/Guides/Client SDKs/rust.md @@ -0,0 +1,60 @@ +--- +title: "Rust Game Server Client SDK" +linkTitle: "Rust" +date: 2019-01-02T10:17:57Z +weight: 50 +description: "This is the Rust version of the Agones Game Server Client SDK." +--- + +Check the [Client SDK Documentation]({{< relref "_index.md" >}}) for more details on each of the SDK functions and how to run the SDK locally. + +{{< alert color="warning">}} +The Rust SDK has not been actively maintained, and doesn't have all the SDK functionality, although it _should_ still work. + Pull Requests and updates are welcome. +{{< /alert >}} + +## Download + +Download the source {{< ghlink href="sdks/rust" >}}directly from Github{{< /ghlink >}}. + +## Prerequisites + +- CMake >= 3.8.0 +- Rust >= 1.19.0 +- Go (>=1.7) + +The SDK needs the above for building to [gRPC-rs](https://github.com/pingcap/grpc-rs). + +## Usage + +Add this crate to `dependencies` section in your Cargo.toml. +Specify a directory where this README.md is located to the `path`. + +```toml +[dependencies] +agones = { path = "../agones/sdks/rust" } +``` + +Add `extern crate agones` to your crate root. + +To begin working with the SDK, create an instance of it. This function blocks until connection and handshake are made. + +```rust +let sdk = agones::Sdk::new()?; +``` + +To send a [health check]({{< relref "_index.md#health" >}}) ping call `sdk.health()`. + +```rust +if sdk.health().is_ok() { + println!("Health ping sent"); +} +``` + +To mark that the [game session is completed]({{< relref "_index.md#shutdown" >}}) and the game server should be shut down call `sdk.shutdown()`. + +```rust +if sdk.shutdown().is_err() { + println!("Could not run Shutdown"); +} +``` diff --git a/site/content/en/docs/Guides/_index.md b/site/content/en/docs/Guides/_index.md new file mode 100755 index 0000000000..315fa77b0e --- /dev/null +++ b/site/content/en/docs/Guides/_index.md @@ -0,0 +1,11 @@ + +--- +title: "Guides" +linkTitle: "Guides" +weight: 7 +date: 2019-01-02 +description: > + Guides for deeper integrations with Agones +--- + +{{< pagelist >}} diff --git a/docs/access_api.md b/site/content/en/docs/Guides/access-api.md similarity index 96% rename from docs/access_api.md rename to site/content/en/docs/Guides/access-api.md index 52a76e701e..9f4eb58296 100644 --- a/docs/access_api.md +++ b/site/content/en/docs/Guides/access-api.md @@ -1,8 +1,13 @@ -# Accessing Agones via the Kubernetes API - -It's likely that we will want to programmatically interact with Agones. Everything that can be done -via the `kubectl` and yaml configurations can also be done via -the [Kubernetes API](https://kubernetes.io/docs/concepts/overview/kubernetes-api/). +--- +title: "Access Agones via the Kubernetes API" +linkTitle: "Access Agones via the K8s API" +date: 2019-01-03T01:20:41Z +weight: 50 +description: > + It's likely that we will want to programmatically interact with Agones. Everything that can be done + via the `kubectl` and yaml configurations can also be done via + the [Kubernetes API](https://kubernetes.io/docs/concepts/overview/kubernetes-api/). +--- Installing Agones creates several [Custom Resource Definitions (CRD)](https://kubernetes.io/docs/concepts/api-extension/custom-resources), which can be accessed and manipulated through the Kubernetes API. @@ -343,4 +348,4 @@ It may also be useful to look at the [API patterns for standard Kubernetes resou ## Next Steps -Learn how to interact with Agones programmatically through the API while creating an [Allocator Service](./create_allocator_service.md). +Learn how to interact with Agones programmatically through the API while creating an [Allocator Service]({{< relref "../Tutorials/allocator-service-go.md" >}}). diff --git a/docs/health_checking.md b/site/content/en/docs/Guides/health-checking.md similarity index 79% rename from docs/health_checking.md rename to site/content/en/docs/Guides/health-checking.md index 5cda9e6930..8e30c1a649 100644 --- a/docs/health_checking.md +++ b/site/content/en/docs/Guides/health-checking.md @@ -1,7 +1,12 @@ -# GameServer Health Checking - -Health checking exists to track the overall healthy state of the GameServer, -such that action can be taken when a something goes wrong or a GameServer drops into an Unhealthy state +--- +title: "GameServer Health Checking" +linkTitle: "GameServer Health Checking" +date: 2019-01-03T01:20:19Z +weight: 20 +description: > + Health checking exists to track the overall healthy state of the GameServer, + such that action can be taken when a something goes wrong or a GameServer drops into an Unhealthy state +--- ## Disabling Health Checking @@ -9,7 +14,7 @@ By default, health checking is enabled, but it can be turned off by setting the ## SDK API -The `Health()` function on the [SDK object](../sdks) needs to be called at an interval less than the `health > periodSeconds` +The `Health()` function on the [SDK object]({{< relref "./Client SDKs/_index.md" >}}) needs to be called at an interval less than the `health > periodSeconds` threshold time to be considered before it will be considered a `failure`. The health check will also need to have not been called a consecutive number of times (`health > failureTheshold`), @@ -44,7 +49,7 @@ The following is the process for what happens to a `GameServer` when it is unhea failureThreshold: 3 ``` -See the [full GameServer example](../examples/gameserver.yaml) for more details +See the {{< ghlink href="examples/gameserver.yaml" >}}full GameServer example{{< /ghlink >}} for more details ## Example @@ -80,4 +85,5 @@ int main() { ### Full Game Server -Also look in the [examples](../examples) directory. \ No newline at end of file +Also look in the {{< ghlink href="examples" >}}examples{{< /ghlink >}} directory. + diff --git a/docs/metrics.md b/site/content/en/docs/Guides/metrics.md similarity index 71% rename from docs/metrics.md rename to site/content/en/docs/Guides/metrics.md index 39d5c948bb..adcb6a7570 100644 --- a/docs/metrics.md +++ b/site/content/en/docs/Guides/metrics.md @@ -1,4 +1,8 @@ -# Metrics +--- +title: "Metrics" +date: 2019-01-03T03:58:19Z +weight: 50 +--- Agones controller exposes metrics via [OpenCensus](https://opencensus.io/). OpenCensus is a single distribution of libraries that collect metrics and distributed traces from your services, we only use it for metrics but it will allow us to support multiple exporters in the future. @@ -25,7 +29,7 @@ Table of Contents ### Prometheus -If you are running a [Prometheus](https://prometheus.io/) intance you just need to ensure that metrics and kubernetes service discovery are enabled. (helm chart values `agones.metrics.enabled` and `agones.metrics.prometheusServiceDiscovery`). This will automatically add annotations required by Prometheus to discover Agones metrics and start collecting them. (see [example](https://github.com/prometheus/prometheus/tree/master/documentation/examples/kubernetes-rabbitmq)) +If you are running a [Prometheus](https://prometheus.io/) instance you just need to ensure that metrics and kubernetes service discovery are enabled. (helm chart values `agones.metrics.enabled` and `agones.metrics.prometheusServiceDiscovery`). This will automatically add annotations required by Prometheus to discover Agones metrics and start collecting them. (see [example](https://github.com/prometheus/prometheus/tree/master/documentation/examples/kubernetes-rabbitmq)) ### Prometheus Operator @@ -50,8 +54,10 @@ Finally include that `ServiceMonitor` in your [Prometheus instance CRD](https:// ### Stackdriver -We don't yet support the [OpenCensus Stackdriver exporter](https://opencensus.io/exporters/supported-exporters/go/stackdriver/) but you can still use the Prometheus Stackdriver integration by following these [instructions](https://cloud.google.com/monitoring/kubernetes-engine/prometheus). -Annotations required by this integration can be activated by setting the `agones.metrics.prometheusServiceDiscovery` to true (default) via the [helm chart value](../install/helm/agones/README.md#configuration). +We don't yet support the [OpenCensus Stackdriver exporter](https://opencensus.io/exporters/supported-exporters/go/stackdriver/) +but you can still use the Prometheus Stackdriver integration by following these [instructions](https://cloud.google.com/monitoring/kubernetes-engine/prometheus). +Annotations required by this integration can be activated by setting the `agones.metrics.prometheusServiceDiscovery` +to true (default) via the [helm chart value]({{< relref "../Installation/helm.md" >}}). ## Metrics available @@ -71,25 +77,25 @@ Annotations required by this integration can be activated by setting the `agones ## Dashboard -### [Grafana](https://grafana.com/) Dashboards +### Grafana Dashboards -We provide a set of useful [Grafana](https://grafana.com/) dashboards to monitor Agones workload, they are located under the [grafana folder](../build/grafana): +We provide a set of useful [Grafana](https://grafana.com/) dashboards to monitor Agones workload, they are located under the {{< ghlink href="/build/grafana" branch="master" >}}grafana folder{{< /ghlink >}}: -- [Agones Autoscalers](../build/grafana/dashboard-autoscalers.yaml) allows you to monitor your current autoscalers replicas request as well as fleet replicas allocation and readyness statuses. You can only select one autoscaler at the time using the provided dropdown. +- {{< ghlink href="/build/grafana/dashboard-autoscalers.yaml" branch="master" >}}Agones Autoscalers{{< /ghlink >}} allows you to monitor your current autoscalers replicas request as well as fleet replicas allocation and readyness statuses. You can only select one autoscaler at the time using the provided dropdown. -- [Agones GameServers](../build/grafana/dashboard-gameservers.yaml) displays your current game servers workload status (allocations , game servers statuses, fleets replicas) with optional fleet name filtering. +- {{< ghlink href="/build/grafana/dashboard-gameservers.yaml" branch="master" >}}Agones GameServers{{< /ghlink >}} displays your current game servers workload status (allocations , game servers statuses, fleets replicas) with optional fleet name filtering. -- [Agones Status](../build/grafana/dashboard-status.yaml) displays Agones controller health status. +- {{< ghlink href="/build/grafana/dashboard-status.yaml" branch="master" >}}Agones Status{{< /ghlink >}} displays Agones controller health status. -- [Agones Controller Resource Usage](../build/grafana/dashboard-controller-usage.yaml) displays Agones Controller CPU and memory usage and also some Golang runtime metrics. +- {{< ghlink href="/build/grafana/dashboard-controller-usage.yaml" branch="master" >}}Agones Controller Resource Usage{{< /ghlink >}} displays Agones Controller CPU and memory usage and also some Golang runtime metrics. Dashboard screenshots : -![](grafana-dashboard-autoscalers.png) +![grafana dashboard autoscalers](../../../images/grafana-dashboard-autoscalers.png) -![](grafana-dashboard-controller.png) +![grafana dashboard controller](../../../images/grafana-dashboard-controller.png) -> You can import our dashboards by copying the json content from [each config map](../build/grafana) into your own instance of Grafana (+ > Create > Import > Or paste json) or follow the [installation](#installation) guide. +> You can import our dashboards by copying the json content from {{< ghlink href="/build/grafana" branch="master" >}}each config map{{< /ghlink >}} into your own instance of Grafana (+ > Create > Import > Or paste json) or follow the [installation](#installation) guide. ## Installation @@ -109,7 +115,9 @@ helm install --wait --name prom stable/prometheus --namespace metrics \ --set kubeStateMetrics.enabled=false,nodeExporter.enabled=false ``` -> You can also run our [Makefile](../build/Makefile) target `make setup-prometheus` or `make kind-setup-prometheus` and `make minikube-setup-prometheus` for [Kind](../build/README.md#running-a-test-kind-cluster) and [Minikube](../build/README.md#running-a-test-minikube-cluster). +> You can also run our {{< ghlink href="/build/Makefile" branch="master" branch="master" >}}Makefile{{< /ghlink >}} target `make setup-prometheus` +or `make kind-setup-prometheus` and `make minikube-setup-prometheus` for {{< ghlink href="/build/README.md#running-a-test-kind-cluster" branch="master" >}}Kind{{< /ghlink >}} +and {{< ghlink href="/build/README.md#running-a-test-minikube-cluster" branch="master" >}}Minikube{{< /ghlink >}}. By default we will disable the push gateway (we don't need it for Agones) and other exporters. @@ -123,7 +131,9 @@ Finally to access Prometheus metrics, rules and alerts explorer use kubectl port-forward deployments/prom-prometheus-server 9090 -n metrics ``` -> Again you can use our Makefile [`make prometheus-portforward`](../build/Makefile/README.md#prometheus-portforward).(For [Kind](../build/README.md#running-a-test-kind-cluster) and [Minikube](../build/README.md#running-a-test-minikube-cluster) use their specific targets `make kind-prometheus-portforward` and `make minikube-prometheus-portforward`) +> Again you can use our Makefile {{< ghlink href="/build/README.md#prometheus-portforward" branch="master" >}}`make prometheus-portforward`{{< /ghlink >}}. + (For {{< ghlink href="/build/README.md#running-a-test-kind-cluster" branch="master" >}}Kind{{< /ghlink >}} and + {{< ghlink href="/build/README.md#running-a-test-minikube-cluster" branch="master" >}}Minikube{{< /ghlink >}} use their specific targets `make kind-prometheus-portforward` and `make minikube-prometheus-portforward`) Now you can access the prometheus dashboard [http://localhost:9090](http://localhost:9090). @@ -152,7 +162,7 @@ helm install --wait --name grafana stable/grafana --namespace metrics \ This will install Grafana with our prepopulated dashboards and prometheus datasource [previously installed](#prometheus-installation) -> You can also use our [Makefile](../build/Makefile) targets (`setup-grafana`,`minikube-setup-grafana` and `kind-setup-grafana`). +> You can also use our {{< ghlink href="/build/Makefile" branch="master" >}}Makefile{{< /ghlink >}} targets (`setup-grafana`,`minikube-setup-grafana` and `kind-setup-grafana`). Finally to access dashboards run @@ -166,7 +176,8 @@ Open a web browser to [http://127.0.0.1:3000](http://127.0.0.1:3000), you should ## Adding more metrics -If you want to contribute and add more metrics we recommend to use shared informers (cache) as it is currently implemented in the [metrics controller](../pkg/metrics/controller.go). Using shared informers allows to keep metrics code in one place and doesn't overload the Kubernetes API. +If you want to contribute and add more metrics we recommend to use shared informers (cache) as it is currently implemented in the {{< ghlink href="pkg/metrics/controller.go" branch="master" >}}metrics controller{{< /ghlink >}}. +Using shared informers allows to keep metrics code in one place and doesn't overload the Kubernetes API. However there is some cases where you will have to add code inside your ressource controller (eg. latency metrics), you should minize metrics code in your controller by adding specific functions in the metrics packages as shown below. @@ -181,3 +192,5 @@ func RecordSomeLatency(latency int64,ressourceName string) { stats.RecordWithTags(....) } ``` + + diff --git a/docs/ping_service.md b/site/content/en/docs/Guides/ping-service.md similarity index 67% rename from docs/ping_service.md rename to site/content/en/docs/Guides/ping-service.md index a41c17d920..338053aeff 100644 --- a/docs/ping_service.md +++ b/site/content/en/docs/Guides/ping-service.md @@ -1,16 +1,21 @@ -# Latency Testing with Multiple Clusters - -When running multiple Agones clusters around the world, you may need to have clients determine which cluster -to connect to based on latency. - -To make that easier, Agones installs with a simple ping service with both HTTP and UDP services that can be called -for the purpose of timing how long the rountrip takes for information to be returned from either of these services. +--- +title: "Latency Testing with Multiple Clusters" +linkTitle: "Latency Testing Services" +date: 2019-01-03T01:20:30Z +weight: 40 +description: > + When running multiple Agones clusters around the world, you may need to have clients determine which cluster + to connect to based on latency. +--- + +To make latency testing easier, Agones installs with a simple ping service with both HTTP and UDP services that can be called + for the purpose of timing how long the rountrip takes for information to be returned from either of these services. ## Installing By default, Agones installs [Kubernetes Services](https://kubernetes.io/docs/concepts/services-networking/service/) for both HTTP and the UDP ping endpoints. These can be disabled entirely, -or disabled individually. See the [Helm install guide](../install/helm/agones/README.md) for the parameters to pass through, +or disabled individually. See the [Helm install guide]({{< relref "../Installation/helm.md" >}}) for the parameters to pass through, as well as configuration options. The ping services as all installed under the `agones-system` namespace. @@ -42,4 +47,4 @@ To lookup the details of this service, run `kubectl describe service agones-ping ## Client side tooling We deliberately didn't provide any game client libraries, as all major languages and engines have capabilities -to send HTTP requests as well as UDP packets. \ No newline at end of file +to send HTTP requests as well as UDP packets. diff --git a/docs/troubleshooting.md b/site/content/en/docs/Guides/troubleshooting.md similarity index 77% rename from docs/troubleshooting.md rename to site/content/en/docs/Guides/troubleshooting.md index 975dc1361f..88afbf220c 100644 --- a/docs/troubleshooting.md +++ b/site/content/en/docs/Guides/troubleshooting.md @@ -1,13 +1,9 @@ -# Troubleshooting - -Troubleshooting guides and steps. - -Table of Contents -================= - -* [How do I see the logs for Agones?](#how-do-i-see-the-logs-for-agones) -* [I uninstalled Agones before deleted all my GameServers and now they won't delete](#i-uninstalled-agones-before-deleted-all-my-gameservers-and-now-they-wont-delete) -* [I'm getting Forbidden errors when trying to install Agones](#im-getting-forbidden-errors-when-trying-to-install-agones) +--- +title: "Troubleshooting" +date: 2019-01-03T01:20:49Z +weight: 200 +description: "Troubleshooting guides and steps." +--- ## How do I see the logs for Agones? @@ -18,12 +14,11 @@ check: is a single pod called `agones-controller-` (where hash is the unique code that Kubernetes generates) that exists there, that you can get the logs from. This is the main controller for Agones, and should be the first place to check when things go wrong. - - To get the logs from this controller run: + 1. To get the logs from this controller run: `kubectl logs --namespace=agones-system agones-controller-` -2. The sdk server sidecar: Agones runs a small [gRPC](https://grpc.io/) + http server for the SDK in a container in the +2. The SDK server sidecar: Agones runs a small [gRPC](https://grpc.io/) + http server for the SDK in a container in the same network namespace as the game server container to connect to via the SDK. -The logs from this SDk server are also useful for tracking down issues, especially if you are having trouble with a +The logs from this SDK server are also useful for tracking down issues, especially if you are having trouble with a particular `GameServer`. 1. To find the `Pod` for the `GameServer` look for the pod with a name that is prefixed with the name of the owning `GameServer`. For example if you have a `GameServer` named `simple-udp`, it's pod could potentially be named @@ -54,5 +49,5 @@ Some troubleshooting steps: 1. Run `kubectl describe clusterrolebinding cluster-admin-binding` and make sure your email is in there. This may be _case sensitive_ so you may need to compare it to the case you used. -1. In the [GKE tutorial](../install/README.md#enabling-creation-of-rbac-resources) `gcloud config get-value accounts` +1. In the [GKE tutorial]({{< ref "/docs/Installation#enabling-creation-of-rbac-resources" >}}) `gcloud config get-value accounts` will return a lowercase email address, so if you are using a CamelCase email, you may want to type that in manually. diff --git a/install/README.md b/site/content/en/docs/Installation/_index.md similarity index 80% rename from install/README.md rename to site/content/en/docs/Installation/_index.md index 3ee479313f..3452f0dc06 100644 --- a/install/README.md +++ b/site/content/en/docs/Installation/_index.md @@ -1,41 +1,18 @@ -# Install and configure Agones on Kubernetes +--- +title: "Install and configure Agones on Kubernetes" +linkTitle: "Installation" +weight: 4 +description: > + Follow this guide to create a cluster on Google Kubernetes Engine (GKE), Minikube or Azure Kubernetes Service (AKS), and install Agones. +--- In this quickstart, we will create a Kubernetes cluster, and populate it with the resource types that power Agones. -# Table of contents - -1. [Setting up a Google Kubernetes Engine (GKE) cluster](#setting-up-a-google-kubernetes-engine-gke-cluster) - 1. [Before you begin](#before-you-begin) - 1. [Choosing a shell](#choosing-a-shell) - 1. [Cloud shell](#cloud-shell) - 1. [Local shell](#local-shell) - 1. [Creating the cluster](#creating-the-cluster) - 1. [Creating the firewall](#creating-the-firewall) -1. [Setting up a Minikube cluster](#setting-up-a-minikube-cluster) - 1. [Installing Minikube](#installing-minikube) - 1. [Creating an agones profile](#creating-an-agones-profile) - 1. [Starting Minikube](#starting-minikube) -1. [Setting up an Amazon Web Services EKS cluster](#setting-up-an-amazon-web-services-eks-cluster) - 1. [Create EKS Instance](#create-eks-instance) - 1. [Ensure VPC CNI 1.2 is Running](#ensure-vpc-cni-12-is-running) - 1. [Follow Normal Instructions to Install](#follow-normal-instructions-to-install) -1. [Setting up an Azure Kubernetes Service (AKS) cluster](#setting-up-an-azure-kubernetes-service-aks-cluster) - 1. [Choosing your shell](#choosing-your-shell) - 1. [Creating the AKS cluster](#creating-the-aks-cluster) - 1. [Allowing UDP traffic](#allowing-udp-traffic) - 1. [Creating and assigning Public IPs to Nodes](#creating-and-assigning-public-ips-to-nodes) -1. [Enabling creation of RBAC resources](#enabling-creation-of-rbac-resources) -1. [Installing Agones](#installing-agones) - 1. [Install with yaml](#install-with-yaml) - 1. [Install using Helm](#install-using-helm) - 1. [Confirming Agones started successfully](#confirming-agones-started-successfully) -1. [What's next](#whats-next) - -# Setting up a Google Kubernetes Engine (GKE) cluster +## Setting up a Google Kubernetes Engine (GKE) cluster Follow these steps to create a cluster and install Agones directly on Google Kubernetes Engine (GKE). -## Before you begin +### Before you begin Take the following steps to enable the Kubernetes Engine API: @@ -43,13 +20,13 @@ Take the following steps to enable the Kubernetes Engine API: 1. Create or select a project. 1. Wait for the API and related services to be enabled. This can take several minutes. 1. [Enable billing][billing] for your project. - * If you are not an existing GCP user, you may be able to enroll for a $300 US [Free Trial][trial] credit. + * If you are not an existing GCP user, you may be able to enroll for a $300 US [Free Trial][trial] credit. [kubernetes]: https://console.cloud.google.com/kubernetes/list [billing]: https://support.google.com/cloud/answer/6293499#enable-billing [trial]: https://cloud.google.com/free/ -## Choosing a shell +### Choosing a shell To complete this quickstart, we can use either [Google Cloud Shell][cloud-shell] or a local shell. @@ -61,12 +38,12 @@ If you prefer using your local shell, you must install the gcloud and kubectl co [gcloud]: https://cloud.google.com/sdk/gcloud/ [kubectl]: https://kubernetes.io/docs/user-guide/kubectl-overview/ -### Cloud shell +#### Cloud shell To launch Cloud Shell, perform the following steps: 1. Go to [Google Cloud Platform Console][cloud] -1. From the top-right corner of the console, click the **Activate Google Cloud Shell** button: ![cloud shell](/docs/cloud-shell.png?raw=true) +1. From the top-right corner of the console, click the **Activate Google Cloud Shell** button: ![cloud shell](cloud-shell.png) 1. A Cloud Shell session opens inside a frame at the bottom of the console. Use this shell to run `gcloud` and `kubectl` commands. 1. Set a compute zone in your geographical region with the following command. The compute zone will be something like `us-west1-a`. A full list can be found [here][zones]. ```bash @@ -76,7 +53,7 @@ To launch Cloud Shell, perform the following steps: [cloud]: https://console.cloud.google.com/home/dashboard [zones]: https://cloud.google.com/compute/docs/regions-zones/#available -### Local shell +#### Local shell To install `gcloud` and `kubectl`, perform the following steps: @@ -93,7 +70,7 @@ To install `gcloud` and `kubectl`, perform the following steps: [gcloud-install]: https://cloud.google.com/sdk/docs/quickstarts -## Creating the cluster +### Creating the cluster A [cluster][cluster] consists of at least one *cluster master* machine and multiple worker machines called *nodes*: [Compute Engine virtual machine][vms] instances that run the Kubernetes processes necessary to make them part of the cluster. @@ -128,7 +105,7 @@ gcloud container clusters get-credentials [CLUSTER_NAME] [cluster]: https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-architecture [vms]: https://cloud.google.com/compute/docs/instances/ -### Creating the firewall +#### Creating the firewall We need a firewall to allow UDP traffic to nodes tagged as `game-server` via ports 7000-8000. @@ -141,11 +118,11 @@ gcloud compute firewall-rules create game-server-firewall \ Continue to [Enabling creation of RBAC resources](#enabling-creation-of-rbac-resources) -# Setting up a Minikube cluster +## Setting up a Minikube cluster This will setup a [Minikube](https://github.com/kubernetes/minikube) cluster, running on an `agones` profile. -## Installing Minikube +### Installing Minikube First, [install Minikube][minikube], which may also require you to install a virtualisation solution, such as [VirtualBox][vb] as well. @@ -153,7 +130,7 @@ a virtualisation solution, such as [VirtualBox][vb] as well. [minikube]: https://github.com/kubernetes/minikube#installation [vb]: https://www.virtualbox.org -## Creating an `agones` profile +### Creating an `agones` profile Let's use a minikube profile for `agones`. @@ -161,26 +138,23 @@ Let's use a minikube profile for `agones`. minikube profile agones ``` -## Starting Minikube +### Starting Minikube The following command starts a local minikube cluster via virtualbox - but this can be replaced by a [vm-driver](https://github.com/kubernetes/minikube#requirements) of your choice. ```bash -minikube start --kubernetes-version v1.10.0 --vm-driver virtualbox \ - --extra-config=apiserver.admission-control=NamespaceLifecycle,LimitRanger,ServiceAccount,DefaultStorageClass,DefaultTolerationSeconds,MutatingAdmissionWebhook,ValidatingAdmissionWebhook,ResourceQuota \ +minikube start --kubernetes-version v1.11.0 --vm-driver virtualbox \ --extra-config=apiserver.authorization-mode=RBAC ``` -> the --bootstrapper=localkube is required since we aren't using the `default` profile. ([bug](https://github.com/kubernetes/minikube/issues/2717)) +## Setting up an Amazon Web Services EKS cluster -# Setting up an Amazon Web Services EKS cluster - -## Create EKS Instance +### Create EKS Instance Create your EKS instance using the [Getting Started Guide](https://docs.aws.amazon.com/eks/latest/userguide/getting-started.html). -## Ensure VPC CNI 1.2 is Running +### Ensure VPC CNI 1.2 is Running EKS does not use the normal Kubernetes networking since it is [incompatible with Amazon VPC networking](https://www.contino.io/insights/kubernetes-is-hard-why-eks-makes-it-easier-for-network-and-security-architects). @@ -195,19 +169,19 @@ Output should be `amazon-k8s-cni:1.2.0` or newer. To upgrade to version 1.2, run kubectl apply -f https://raw.githubusercontent.com/aws/amazon-vpc-cni-k8s/master/config/v1.2/aws-k8s-cni.yaml ``` -## Follow Normal Instructions to Install +### Follow Normal Instructions to Install Continue to [Installing Agones](#installing-agones). -# Setting up an Azure Kubernetes Service (AKS) Cluster +## Setting up an Azure Kubernetes Service (AKS) Cluster Follow these steps to create a cluster and install Agones directly on [Azure Kubernetes Service (AKS) ](https://docs.microsoft.com/azure/aks/). -## Choosing your shell +### Choosing your shell You can use either [Azure Cloud Shell](https://docs.microsoft.com/azure/cloud-shell/overview) or install the [Azure CLI](https://docs.microsoft.com/cli/azure/?view=azure-cli-latest) on your local shell in order to install AKS in your own Azure subscription. Cloud Shell comes preinstalled with `az` and `kubectl` utilities whereas you need to install them locally if you want to use your local shell. If you use Windows 10, you can use the [WIndows Subsystem for Windows](https://docs.microsoft.com/windows/wsl/install-win10) as well. -## Creating the AKS cluster +### Creating the AKS cluster If you are using Azure CLI from your local shell, you need to login to your Azure account by executing the `az login` command and following the login procedure. @@ -235,7 +209,7 @@ az aks get-credentials --resource-group $AKS_RESOURCE_GROUP --name $AKS_NAME Alternatively, you can use the [Azure Portal](https://portal.azure.com) to create a new AKS cluster [(instructions)](https://docs.microsoft.com/azure/aks/kubernetes-walkthrough-portal). -### Allowing UDP traffic +#### Allowing UDP traffic For Agones to work correctly, we need to allow UDP traffic to pass through to our AKS cluster. To achieve this, we must update the NSG (Network Security Group) with the proper rule. A simple way to do that is: @@ -260,13 +234,13 @@ az network nsg rule create \ --destination-port-range 7000-8000 ``` -### Creating and assigning Public IPs to Nodes +#### Creating and assigning Public IPs to Nodes Nodes in AKS don't get a Public IP by default. To assign a Public IP to a Node, find the Resource Group where the AKS resources are installed on the [portal](https://portal.azure.com) (it should have a name like `MC_resourceGroupName_AKSName_westeurope`). Then, you can follow the instructions [here](https://blogs.technet.microsoft.com/srinathv/2018/02/07/how-to-add-a-public-ip-address-to-azure-vm-for-vm-failed-over-using-asr/) to create a new Public IP and assign it to the Node/VM. For more information on Public IPs for VM NICs, see [this document](https://docs.microsoft.com/azure/virtual-network/virtual-network-network-interface-addresses). If you are looking for an automated way to create and assign Public IPs for your AKS Nodes, check [this project](https://github.com/dgkanatsios/AksNodePublicIPController). Continue to [Installing Agones](#installing-agones). -# Enabling creation of RBAC resources +## Enabling creation of RBAC resources To install Agones, a service account needs permission to create some special RBAC resource types. @@ -279,11 +253,11 @@ kubectl create clusterrolebinding cluster-admin-binding \ --clusterrole=cluster-admin --serviceaccount=kube-system:default ``` -# Installing Agones +## Installing Agones This will install Agones in your cluster. -## Install with YAML +### Install with YAML We can install Agones to the cluster using the [install.yaml](https://github.com/GoogleCloudPlatform/agones/blob/release-0.7.0/install/yaml/install.yaml) file. @@ -299,15 +273,15 @@ You can also find the install.yaml in the latest `agones-install` zip from the [ > kubernetes webhooks communication. If you want to generate new certificates or use your own, > we recommend using the helm installation. -## Install using Helm +### Install using Helm Also, we can install Agones using [Helm][helm] package manager. If you want more details and configuration options see the [Helm installation guide for Agones][agones-install-guide] [helm]: https://docs.helm.sh -[agones-install-guide]: helm/agones/README.md +[agones-install-guide]: {{< relref "helm.md" >}} -## Confirming Agones started successfully +### Confirming Agones started successfully To confirm Agones is up and running, run the following command: @@ -329,8 +303,8 @@ That's it! This creates the [Custom Resource Definitions][crds] that power Agone [crds]: https://kubernetes.io/docs/concepts/api-extension/custom-resources/ -# What's next +## What's next * Go through the [Create a Game Server Quickstart][quickstart] -[quickstart]: /docs/create_gameserver.md +[quickstart]: {{< ref "/docs/Getting Started/create-gameserver.md" >}} diff --git a/docs/cloud-shell.png b/site/content/en/docs/Installation/cloud-shell.png similarity index 100% rename from docs/cloud-shell.png rename to site/content/en/docs/Installation/cloud-shell.png diff --git a/site/content/en/docs/Installation/helm.md b/site/content/en/docs/Installation/helm.md new file mode 100644 index 0000000000..1f061255e9 --- /dev/null +++ b/site/content/en/docs/Installation/helm.md @@ -0,0 +1,181 @@ +--- +title: "Install Agones using Helm" +linkTitle: "Install with Helm" +weight: 4 +description: > + This chart install the Agones application and defines deployment on a [Kubernetes](http://kubernetes.io) cluster using the [Helm](https://helm.sh) package manager. + +--- + +## Prerequisites + +- [Helm](https://docs.helm.sh/helm/) package manager 2.10.0+ +- Kubernetes 1.11+ +- Role-based access controls (RBAC) activated +- MutatingAdmissionWebhook and ValidatingAdmissionWebhook admission controllers activated, see [recommendation](https://kubernetes.io/docs/admin/admission-controllers/#is-there-a-recommended-set-of-admission-controllers-to-use) + +## Installing the Chart + +> If you don't have `Helm` installed locally, or `Tiller` installed in your Kubernetes cluster, read the [Using Helm](https://docs.helm.sh/using_helm/) documentation to get started. + +To install the chart with the release name `my-release` using our stable helm repository: + +```bash +$ helm repo add agones https://agones.dev/chart/stable +$ helm install --name my-release --namespace agones-system agones/agones +``` + +_We recommend to install Agones in its own namespaces (like `agones-system` as shown above) +you can use the helm `--namespace` parameter to specify a different namespace._ + +The command deploys Agones on the Kubernetes cluster with the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation. + +> **Tip**: List all releases using `helm list` + + +> If you are installing a development build of Agones (i.e. not the 0.4.0 release), you will need to install Agones the following way: + +```bash +$ cd install/helm/ +$ helm install --name my-release --namespace agones-system agones --set agones.image.tag=0.4.0-481970d +``` + +The full list of available tags is [here](https://console.cloud.google.com/gcr/images/agones-images/) + +--- + +## Namespaces + +By default Agones is configured to work with game servers deployed in the `default` namespace. If you are planning to use other namespace you can configure Agones via the parameter `gameservers.namespaces`. + +For example to use `default` **and** `xbox` namespaces: + +```bash +$ kubectl create namespace xbox +$ helm install --set "gameservers.namespaces={default,xbox}" --namespace agones-system --name my-release agones/agones +``` + +> You need to create your namespaces before installing Agones. + +If you want to add a new namespace afterward simply upgrade your release: + +```bash +$ kubectl create namespace ps4 +$ helm upgrade --set "gameservers.namespaces={default,xbox,ps4}" my-release agones/agones +``` + +## RBAC + +By default, `agones.rbacEnabled` is set to true. This enable RBAC support in Agones and must be true if RBAC is enabled in your cluster. + +The chart will take care of creating the required service accounts and roles for Agones. + +If you have RBAC disabled, or to put it another way, ABAC enabled, you should set this value to `false`. + +## Uninstalling the Chart + +To uninstall/delete the `my-release` deployment: + +```bash +$ helm delete my-release +``` + +The command removes all the Kubernetes components associated with the chart and deletes the release. + +## Configuration + +The following tables lists the configurable parameters of the Agones chart and their default values. + +| Parameter | Description | Default | +| --------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ---------------------- | +| `agones.rbacEnabled` | Creates RBAC resources. Must be set for any cluster configured with RBAC | `true` | +| `agones.crds.install` | Install the CRDs with this chart. Useful to disable if you want to subchart (since crd-install hook is broken), so you can copy the CRDs into your own chart. | `true` | +| `agones.crds.cleanupOnDelete` | Run the pre-delete hook to delete all GameServers and their backing Pods when deleting the helm chart, so that all CRDs can be removed on chart deletion | `true` | +| `agones.metrics.enabled` | Enables controller metrics on port `8080` and path `/metrics` | `true` | +| `agones.metrics.prometheusServiceDiscovery` | Adds annotations for Prometheus ServiceDiscovery (and also Strackdriver) | `true` | +| `agones.serviceaccount.controller` | Service account name for the controller | `agones-controller` | +| `agones.serviceaccount.sdk` | Service account name for the sdk | `agones-sdk` | +| `agones.image.registry` | Global image registry for all images | `gcr.io/agones-images` | +| `agones.image.tag` | Global image tag for all images | `0.4.0` | +| `agones.image.controller.name` | Image name for the controller | `agones-controller` | +| `agones.image.controller.pullPolicy` | Image pull policy for the controller | `IfNotPresent` | +| `agones.image.controller.pullSecret` | Image pull secret for the controller | `` | +| `agones.image.sdk.name` | Image name for the sdk | `agones-sdk` | +| `agones.image.sdk.cpuRequest` | The [cpu request][constraints] for sdk server container | `30m` | +| `agones.image.sdk.cpuLimit` | The [cpu limit][constraints] for the sdk server container | `0` (none) | +| `agones.image.sdk.alwaysPull` | Tells if the sdk image should always be pulled | `false` | +| `agones.image.ping.name` | Image name for the ping service | `agones-ping` | +| `agones.image.ping.pullPolicy` | Image pull policy for the ping service | `IfNotPresent` | +| `agones.controller.http.port` | Port to use for liveness probe service and metrics | `8080` | +| `agones.controller.healthCheck.initialDelaySeconds` | Initial delay before performing the first probe (in seconds) | `3` | +| `agones.controller.healthCheck.periodSeconds` | Seconds between every liveness probe (in seconds) | `3` | +| `agones.controller.healthCheck.failureThreshold` | Number of times before giving up (in seconds) | `3` | +| `agones.controller.healthCheck.timeoutSeconds` | Number of seconds after which the probe times out (in seconds) | `1` | +| `agones.controller.resources` | Controller resource requests/limit | `{}` | +| `agones.controller.generateTLS` | Set to true to generate TLS certificates or false to provide your own certificates in `certs/*` | `true` | +| `agones.ping.install` | Whether to install the [ping service][ping] | `true` | +| `agones.ping.replicas` | The number of replicas to run in the deployment | `2` | +| `agones.ping.http.expose` | Expose the http ping service via a Service | `true` | +| `agones.ping.http.response` | The string response returned from the http service | `ok` | +| `agones.ping.http.port` | The port to expose on the service | `80` | +| `agones.ping.http.serviceType` | The [Service Type][service] of the HTTP Service | `LoadBalancer` | +| `agones.ping.udp.expose` | Expose the udp ping service via a Service | `true` | +| `agones.ping.udp.rateLimit` | Number of UDP packets the ping service handles per instance, per second, per sender | `20` | +| `agones.ping.udp.port` | The port to expose on the service | `80` | +| `agones.ping.udp.serviceType` | The [Service Type][service] of the UDP Service | `LoadBalancer` | +| `agones.ping.healthCheck.initialDelaySeconds` | Initial delay before performing the first probe (in seconds) | `3` | +| `agones.ping.healthCheck.periodSeconds` | Seconds between every liveness probe (in seconds) | `3` | +| `agones.ping.healthCheck.failureThreshold` | Number of times before giving up (in seconds) | `3` | +| `agones.ping.healthCheck.timeoutSeconds` | Number of seconds after which the probe times out (in seconds) | `1` | +| `gameservers.namespaces` | a list of namespaces you are planning to use to deploy game servers | `["default"]` | +| `gameservers.minPort` | Minimum port to use for dynamic port allocation | `7000` | +| `gameservers.maxPort` | Maximum port to use for dynamic port allocation | `8000` | + +{{% feature publishVersion="0.8.0" %}} +**New Configuration Features:** + +| Parameter | Description | Default | +| --------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ---------------------- | +| `agones.controller.nodeSelector` | Controller [node labels](nodeSelector) for pod assignment | `{}` | +| `agones.controller.tolerations` | Controller [toleration][toleration] labels for pod assignment | `[]` | +| `agones.controller.affinity` | Controller [affinity](affinity) settings for pod assignment | `{}` | +| `agones.ping.resources` | Ping pods resource requests/limit | `{}` | +| `agones.ping.nodeSelector` | Ping [node labels](nodeSelector) for pod assignment | `{}` | +| `agones.ping.tolerations` | Ping [toleration][toleration] labels for pod assignment | `[]` | +| `agones.ping.affinity` | Ping [affinity](affinity) settings for pod assignment | `{}` | +[toleration]: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ +{{% /feature %}} + +[constraints]: https://kubernetes.io/docs/tasks/administer-cluster/manage-resources/cpu-constraint-namespace/ +[ping]: {{< ref "/docs/Guides/ping-service.md" >}} +[service]: https://kubernetes.io/docs/concepts/services-networking/service/ +[nodeSelector]: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector +[affinity]: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + +Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, + +```bash +$ helm install --name my-release --namespace agones-system \ + --set agones.namespace=mynamespace,gameservers.minPort=1000,gameservers.maxPort=5000 agones +``` + +The above command sets the namespace where Agones is deployed to `mynamespace`. Additionally Agones will use a dynamic port allocation range of 1000-5000. + +Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example, + +```bash +$ helm install --name my-release --namespace agones-system -f values.yaml agones/agones +``` + +> **Tip**: You can use the default {{< ghlink href="install/helm/agones/values.yaml" >}}values.yaml{{< /ghlink >}} + +## TLS Certificates + +By default agones chart generates tls certificates used by the adminission controller, while this is handy, it requires the agones controller to restart on each `helm upgrade` command. +For most used cases the controller would have required a restart anyway (eg: controller image updated). However if you really need to avoid restarts we suggest that you turn off tls automatic generation (`agones.controller.generateTLS` to `false`) and provide your own certificates (`certs/server.crt`,`certs/server.key`). + +> **Tip**: You can use our script located at `cert/cert.sh` to generates them. + +## Confirm Agones is running + +To confirm Agones is up and running, [go to the next section]({{< relref "_index.md#confirming-agones-started-successfully" >}}) diff --git a/site/content/en/docs/Overview/_index.md b/site/content/en/docs/Overview/_index.md new file mode 100644 index 0000000000..51bf739556 --- /dev/null +++ b/site/content/en/docs/Overview/_index.md @@ -0,0 +1,54 @@ +--- +title: "Overview" +linkTitle: "Overview" +weight: 1 +description: > + Agones is a library for hosting, running and scaling [dedicated game servers](https://en.wikipedia.org/wiki/Game_server#Dedicated_server) on [Kubernetes](https://kubernetes.io). +--- + +_Agones, is derived from the Greek word agōn which roughly translates to “contest”, “competition at games” and “gathering” +([source](https://www.merriam-webster.com/dictionary/agones))._ + +## Disclaimer +This software is currently alpha, and subject to change. Not to be used in production systems. + +## Why does this project exist? +Agones replaces usual bespoke or proprietary cluster management and game server scaling solutions with a [Kubernetes](https://kubernetes.io/) cluster +that includes the Agones custom _[Kubernetes Controller](https://kubernetes.io/docs/concepts/api-extension/custom-resources/#custom-controllers)_ and matching [Custom Resource Definitions](https://kubernetes.io/docs/concepts/api-extension/custom-resources/#customresourcedefinitions) for _GameServers_, _Fleets_ and more. + +With Agones, Kubernetes gets native abilities to create, run, manage and scale dedicated game server processes within Kubernetes clusters using standard Kubernetes tooling and APIs. This model also allows any matchmaker to interact directly with Agones via the Kubernetes API to provision a dedicated a game server. + +For more details on why this project was written, read the +[announcement blog post](https://cloudplatform.googleblog.com/2018/03/introducing-Agones-open-source-multiplayer-dedicated-game-server-hosting-built-on-Kubernetes.html). + +## Major Features +- Define a single `GameServer`, and/or large game server `Fleets` within Kubernetes - either through yaml or via the API +- Manage GameServer lifecycles - including health checking and connection information. +- `Fleet` Autoscaling capabilities that integrate with Kubernetes' native cluster autoscaling +- Gameserver specific metric exports and dashboards for ops teams + +## Requirements +- Kubernetes cluster version 1.11+ + - [Minikube](https://github.com/kubernetes/minikube), [Google Kubernetes Engine](https://cloud.google.com/kubernetes-engine/) and [Azure Kubernetes Service](https://azure.microsoft.com/en-us/services/kubernetes-service/) have been tested + - If you are creating and managing your own Kubernetes cluster, the + [MutatingAdmissionWebhook](https://kubernetes.io/docs/admin/admission-controllers/#mutatingadmissionwebhook-beta-in-19), and + [ValidatingAdmissionWebhook](https://kubernetes.io/docs/admin/admission-controllers/#validatingadmissionwebhook-alpha-in-18-beta-in-19) + admission controllers are required. + We also recommend following the + [recommended set of admission controllers](https://kubernetes.io/docs/admin/admission-controllers/#is-there-a-recommended-set-of-admission-controllers-to-use). +- Firewall access for the range of ports that Game Servers can be connected to in the cluster. +- Game Servers must have the [project SDK]({{< ref "/docs/Guides/Client SDKs/_index.md" >}}) integrated, to manage Game Server state, health checking, etc. + +## Code of Conduct + +Participation in this project comes under the {{< ghlink href="code-of-conduct.md" branch="master" >}}Contributor Covenant Code of Conduct{{< /ghlink >}} + +## This all sounds great, but can you explain Docker and/or Kubernetes to me? + +### Docker +- [Docker's official "Getting Started" guide](https://docs.docker.com/get-started/) +- [Katacoda's free, interactive Docker course](https://www.katacoda.com/courses/docker) + +### Kubernetes +- [You should totally read this comic, and interactive tutorial](https://cloud.google.com/kubernetes-engine/kubernetes-comic/) +- [Katacoda's free, interactive Kubernetes course](https://www.katacoda.com/courses/kubernetes) \ No newline at end of file diff --git a/site/content/en/docs/Reference/_index.md b/site/content/en/docs/Reference/_index.md new file mode 100644 index 0000000000..73afc65eb9 --- /dev/null +++ b/site/content/en/docs/Reference/_index.md @@ -0,0 +1,10 @@ +--- +title: "Reference" +linkTitle: "Reference" +weight: 100 +description: > + Reference documentation for Agones Custom Resource Definitions +--- + +{{< pagelist >}} + diff --git a/docs/fleet_spec.md b/site/content/en/docs/Reference/fleet.md similarity index 83% rename from docs/fleet_spec.md rename to site/content/en/docs/Reference/fleet.md index fff0a4cb9a..d5df0f2240 100644 --- a/docs/fleet_spec.md +++ b/site/content/en/docs/Reference/fleet.md @@ -1,12 +1,16 @@ -# Fleet Specification - -A `Fleet` is a set of warm GameServers that are available to be allocated from. +--- +title: "Fleet Specification" +linkTitle: "Fleet" +date: 2019-01-03T03:58:52Z +description: "A `Fleet` is a set of warm GameServers that are available to be allocated from." +weight: 20 +--- To allocate a `GameServer` from a `Fleet`, use a `FleetAllocation`. Like any other Kubernetes resource you describe a `Fleet`'s desired state via a specification written in YAML or JSON to the Kubernetes API. The Agones controller will then change the actual state to the desired state. -A full `Fleet` specification is available below and in the [example folder](../examples/fleet.yaml) for reference : +A full `Fleet` specification is available below and in the {{< ghlink href="examples/fleet.yaml" >}}example folder{{< /ghlink >}} for reference : ```yaml apiVersion: "stable.agones.dev/v1alpha1" @@ -58,7 +62,7 @@ The `spec` field is the actual `Fleet` specification and it is composed as follo down mechanics. "Packed" (default) is aimed at dynamic Kubernetes clusters, such as cloud providers, wherein we want to bin pack resources. "Distributed" is aimed at static Kubernetes clusters, wherein we want to distribute resources across the entire - cluster. See [Scheduling and Autoscaling](scheduling_autoscaling.md) for more details. + cluster. See [Scheduling and Autoscaling]({{< relref "../Advanced/scheduling-and-autoscaling.md" >}}) for more details. - `strategy` is the `GameServer` replacement strategy for when the `GameServer` template is edited. - `type` is replacement strategy for when the GameServer template is changed. Default option is "RollingUpdate", but "Recreate" is also available. - `RollingUpdate` will increment by `maxSurge` value on each iteration, while decrementing by `maxUnavailable` on each iteration, until all GameServers have been switched from one version to another. @@ -67,17 +71,16 @@ The `spec` field is the actual `Fleet` specification and it is composed as follo - `maxSurge` is the amount to increment the new GameServers by. Defaults to 25% - `maxUnavailable` is the amount to decrements GameServers by. Defaults to 25% - `template` a full `GameServer` configuration template. - See the [GameServer](./gameserver_spec.md) reference for all available fields. - -# GameServer Allocation Specification + See the [GameServer]({{< relref "gameserver.md" >}}) reference for all available fields. -⚠️⚠️⚠️ **This is currently a development feature and has not been released** ⚠️⚠️⚠️ +{{% feature publishVersion="0.8.0" %}} +## GameServer Allocation Specification A `GameServerAllocation` is used to atomically allocate a GameServer out of a set of GameServers. This could be a single Fleet, multiple Fleets, or a self managed group of GameServers. A full `GameServerAllocation` specification is available below and in the -[example folder](../examples/gameserverallocation.yaml) for reference: +{{< ghlink href="/examples/gameserverallocation.yaml" >}}example folder{{< /ghlink >}} for reference: ```yaml @@ -127,23 +130,26 @@ The `spec` field is the actual `GameServerAllocation` specification and it is co If the first selector is not matched, the selection attempts the second selector, and so on. This is useful for things like smoke testing of new game servers. - `scheduling` defines how GameServers are organised across the cluster, in this case specifically when allocating - `GameServers` for usage. - "Packed" (default) is aimed at dynamic Kubernetes clusters, such as cloud providers, wherein we want to bin pack - resources. "Distributed" is aimed at static Kubernetes clusters, wherein we want to distribute resources across the entire - cluster. See [Scheduling and Autoscaling](scheduling_autoscaling.md) for more details. - + `GameServers` for usage. + "Packed" (default) is aimed at dynamic Kubernetes clusters, such as cloud providers, wherein we want to bin pack + resources. "Distributed" is aimed at static Kubernetes clusters, wherein we want to distribute resources across the entire + cluster. See [Scheduling and Autoscaling]({{< ref "/docs/Advanced/scheduling-and-autoscaling.md" >}}) for more details. + - `metadata` is an optional list of custom labels and/or annotations that will be used to patch the game server's metadata in the moment of allocation. This can be used to tell the server necessary session data +{{% /feature %}} # Fleet Allocation Specification +{{% feature publishVersion="0.8.0" %}} > Fleet Allocation is **deprecated** in version 0.8.0, and will be removed in the 0.10.0 release. Migrate to using GameServer Allocation instead. +{{% /feature %}} A `FleetAllocation` is used to allocate a `GameServer` out of an existing `Fleet` A full `FleetAllocation` specification is available below and in the -[example folder](../examples/fleetallocation.yaml) for reference: +{{< ghlink href="examples/fleetallocation.yaml" >}}example folder{{< /ghlink >}} for reference: ```yaml apiVersion: "stable.agones.dev/v1alpha1" diff --git a/docs/fleetautoscaler_spec.md b/site/content/en/docs/Reference/fleetautoscaler.md similarity index 83% rename from docs/fleetautoscaler_spec.md rename to site/content/en/docs/Reference/fleetautoscaler.md index ce56a4ac6e..a68ef27651 100644 --- a/docs/fleetautoscaler_spec.md +++ b/site/content/en/docs/Reference/fleetautoscaler.md @@ -1,9 +1,13 @@ -# Fleet Autoscaler Specification - -A `FleetAutoscaler`'s job is to automatically scale up and down a `Fleet` in response to demand. +--- +title: "Fleet Autoscaler Specification" +linkTitle: "Fleet Autoscaler" +date: 2019-01-03T03:58:55Z +description: "A `FleetAutoscaler`'s job is to automatically scale up and down a `Fleet` in response to demand." +weight: 30 +--- A full `FleetAutoscaler` specification is available below and in the -[example folder](../examples/fleetautoscaler.yaml) for reference : +{{< ghlink href="examples/fleetautoscaler.yaml" >}}example folder{{< /ghlink >}} for reference : ```yaml apiVersion: "stable.agones.dev/v1alpha1" @@ -11,7 +15,6 @@ kind: FleetAutoscaler metadata: name: fleet-autoscaler-example spec: - fleetName: fleet-example policy: type: Buffer @@ -21,7 +24,7 @@ spec: maxReplicas: 20 ``` -Or for Webhook FleetAutoscaler below and in [example folder](../examples/webhookfleetautoscaler.yaml): +Or for Webhook FleetAutoscaler below and in {{< ghlink href="examples/webhookfleetautoscaler.yaml" >}}example folder{{< /ghlink >}}: ```yaml apiVersion: "stable.agones.dev/v1alpha1" @@ -29,7 +32,6 @@ kind: FleetAutoscaler metadata: name: fleet-autoscaler-example spec: - fleetName: fleet-example policy: type: Webhook @@ -60,17 +62,18 @@ The `spec` field is the actual `FleetAutoscaler` specification and it is compose - `maxReplicas` is the maximum fleet size that can be set by this FleetAutoscaler. Required. - `webhook` parameters of the webhook policy type - `service` is a reference to the service for this webhook. Either `service` or `url` must be specified. If the webhook is running within the cluster, then you should use `service`. Port 8000 will be used if it is open, otherwise it is an error. - - `name` is the service name bound to Deployment of autoscaler webhook. Required [(see example)](../examples/autoscaler-webhook/autoscaler-service.yaml) + - `name` is the service name bound to Deployment of autoscaler webhook. Required {{< ghlink href="examples/autoscaler-webhook/autoscaler-service.yaml" >}}(see example){{< /ghlink >}} The FleetAutoscaler will scale the fleet up and down based on the response from this webhook server - `namespace` is the kubernetes namespace where webhook is deployed. Optional If not specified, the "default" would be used - `path` is an optional URL path which will be sent in any request to this service. (i. e. /scale) - `url` gives the location of the webhook, in standard URL form (`[scheme://]host:port/path`). Exactly one of `url` or `service` must be specified. The `host` should not refer to a service running in the cluster; use the `service` field instead. (optional, instead of service) - - `caBundle` (⚠️ ** development feature ** ⚠️) is a PEM encoded certificate authority bundle which is used to issue and then validate the webhook's server certificate. Base64 encoded PEM string. Required only for HTTPS. If not present HTTP client would be used. +{{% feature publishVersion="0.8.0" %}} +
  • `caBundle` is a PEM encoded certificate authority bundle which is used to issue and then validate the webhook's server certificate. Base64 encoded PEM string. Required only for HTTPS. If not present HTTP client would be used.
  • +{{% /feature %}} Note: only one `buffer` or `webhook` could be defined for FleetAutoscaler which is based on the `type` field. - # Webhook Endpoint Specification Webhook endpoint is used to delegate the scaling logic to a separate pod or server. @@ -126,6 +129,7 @@ type FleetStatus struct { ``` For Webhook Fleetautoscaler Policy either HTTP or HTTPS could be used. Switching between them occurs depending on https presence in `URL` or by presense of `caBundle`. -The example of the webhook written in Go could be found [here](../examples/autoscaler-webhook/main.go). +The example of the webhook written in Go could be found {{< ghlink href="examples/autoscaler-webhook/main.go" >}}here{{< /ghlink >}}. + +It implements the {{< ghlink href="examples/autoscaler-webhook/" >}}scaling logic{{< /ghlink >}} based on the percentage of allocated gameservers in a fleet. -It implements the [scaling logic](../examples/autoscaler-webhook/README.md) based on the percentage of allocated gameservers in a fleet. diff --git a/docs/gameserver_spec.md b/site/content/en/docs/Reference/gameserver.md similarity index 73% rename from docs/gameserver_spec.md rename to site/content/en/docs/Reference/gameserver.md index fae691ab49..cf3e43cbe8 100644 --- a/docs/gameserver_spec.md +++ b/site/content/en/docs/Reference/gameserver.md @@ -1,10 +1,15 @@ -# GameServer Specification +--- +title: "GameServer Specification" +linkTitle: "Gameserver" +date: 2019-01-03T03:58:48Z +weight: 10 +description: > + Like any other Kubernetes resource you describe a GameServer's desired state via a specification written in YAML or JSON to the Kubernetes API. The Agones controller will then change the actual state to the desired state. +--- -Like any other Kubernetes resource you describe a GameServer's desired state via a specification written in YAML or JSON to the Kubernetes API. The Agones controller will then change the actual state to the desired state. +A full GameServer specification is available below and in the {{< ghlink href="examples/gameserver.yaml" >}}example folder{{< /ghlink >}} for reference : -A full GameServer specification is available below and in the [example folder](https://github.com/GoogleCloudPlatform/agones/blob/release-0.7.0/examples/gameserver.yaml) for reference : - -``` +```yaml apiVersion: "stable.agones.dev/v1alpha1" kind: GameServer metadata: @@ -34,7 +39,8 @@ spec: Since Agones defines a new [Custom Resources Definition (CRD)](https://kubernetes.io/docs/concepts/api-extension/custom-resources/) we can define a new resource using the kind `GameServer` with the custom group `stable.agones.dev` and API version `v1alpha1`. -You can use the metadata field to target a specific [namespaces](https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/) but also attach specific [annotations](https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/) and [labels](https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/) to your ressource. This is a very common pattern in the Kubernetes ecosystem. +You can use the metadata field to target a specific [namespaces](https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/) +but also attach specific [annotations](https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/) and [labels](https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/) to your resource. This is a very common pattern in the Kubernetes ecosystem. The `spec` field is the actual GameServer specification and it is composed as follow: @@ -44,17 +50,17 @@ The `spec` field is the actual GameServer specification and it is composed as fo - `portPolicy` has two options `dynamic` (default) the system allocates a free hostPort for the gameserver, for game clients to connect to. And `static`, user defines the hostPort that the game client will connect to. Then onus is on the user to ensure that the port is available. When static is the policy specified, `hostPort` is required to be populated. - `containerPort` the port that is being opened on the game server process, this is a required field. - `protocol` the protocol being used. Defaults to UDP. TCP is the only other option. -- `health` to track the overall healthy state of the GameServer, more information available in the [health check documentation](./health_checking.md). +- `health` to track the overall healthy state of the GameServer, more information available in the [health check documentation]({{< relref "../Guides/health-checking.md" >}}). - `template` the [pod spec template](https://v1-10.docs.kubernetes.io/docs/reference/generated/kubernetes-api/v1.10/#podtemplatespec-v1-core) to run your GameServer containers, [see](https://kubernetes.io/docs/concepts/workloads/pods/pod-overview/#pod-templates) for more information. ## GameServer State Diagram The following diagram shows the lifecycle of a `GameServer`. -Game Servers are created through Kubernetes API (either directly or through a [Fleet](fleet_spec.md)) and their state transitions are orchestrated by: +Game Servers are created through Kubernetes API (either directly or through a [Fleet]({{< ref "fleet.md" >}})) and their state transitions are orchestrated by: - GameServer controller, which allocates ports, launches Pods backing game servers and manages their lifetime - Allocation controller, which marks game servers as `Allocated` to handle a game session - SDK, which manages health checking and shutdown of a game server session -![GameServer State Diagram](gameserver-states.png) \ No newline at end of file +![GameServer State Diagram](../../../diagrams/gameserver-states.png) \ No newline at end of file diff --git a/site/content/en/docs/Third Party Content/_index.md b/site/content/en/docs/Third Party Content/_index.md new file mode 100644 index 0000000000..e18e9a3062 --- /dev/null +++ b/site/content/en/docs/Third Party Content/_index.md @@ -0,0 +1,12 @@ +--- +title: "Third Party Content" +linkTitle: "Third Party" +date: 2019-01-03T08:37:22Z +weight: 500 +description: > + Content created by our community +--- + +{{< pagelist >}} + + diff --git a/site/content/en/docs/Third Party Content/videos-and-presentations.md b/site/content/en/docs/Third Party Content/videos-and-presentations.md new file mode 100644 index 0000000000..f7567f2831 --- /dev/null +++ b/site/content/en/docs/Third Party Content/videos-and-presentations.md @@ -0,0 +1,28 @@ +--- +title: "Third Party Videos and Presentations" +linkTitle: "Videos and Presentations" +date: 2019-01-03T08:37:35Z +description: "Community contributed videos and presentations on Agones.s" +--- + +## Presentations + +### Intro to Agones: Scaling Multiplayer Game Servers with Kubernetes (Kubecon, 2018) + +{{< youtube "Q4RZSHTeKCY" >}} + +### Google Cloud Next '18 London: Carl Dionne, Development Director at Ubisoft Montreal + +{{< youtube "5n-JlLA7bIc?start=835" >}} + +### Agones: Scaling Multiplayer Dedicated Game Servers with Kubernetes (Cloud Next '18) + +{{< youtube "CLNpkjolxYA" >}} + +## Screencasts + + +### Agones: How Do I Docker and Kubernetes? (Part 1 & Part 2) + +{{< youtube "i4_zaztK6mE" >}} +{{< youtube "ZZXLDnmO1TM" >}} diff --git a/site/content/en/docs/Tutorials/_index.md b/site/content/en/docs/Tutorials/_index.md new file mode 100644 index 0000000000..6a56c438c9 --- /dev/null +++ b/site/content/en/docs/Tutorials/_index.md @@ -0,0 +1,8 @@ +--- +title: "Tutorials" +date: 2019-01-03T03:15:21Z +description: "Agones Tutorials" +weight: 10 +--- + +{{< pagelist >}} diff --git a/docs/create_allocator_service.md b/site/content/en/docs/Tutorials/allocator-service-go.md similarity index 89% rename from docs/create_allocator_service.md rename to site/content/en/docs/Tutorials/allocator-service-go.md index 7938b63a58..1f078d770c 100644 --- a/docs/create_allocator_service.md +++ b/site/content/en/docs/Tutorials/allocator-service-go.md @@ -1,6 +1,15 @@ -# Tutorial Create an Allocator Service - -This tutorial describes how to interact programmatically with the [Agones API](https://godoc.org/agones.dev/agones/pkg/client/clientset/versioned/typed/stable/v1alpha1). To do this, we will implement a [Service](https://kubernetes.io/docs/concepts/services-networking/service/) which allocates a Game Server on demand by calling the Create() method of the FleetAllocationInterface. After creating the fleet allocation, we will return the JSON encoded GameServerStatus of the allocated GameServer. +--- +title: "Tutorial Create an Allocator Service" +linkTitle: "Create an Allocator Service (Go)" +date: 2019-01-03T03:15:34Z +description: > + This tutorial describes how to interact programmatically with the + [Agones API](https://godoc.org/agones.dev/agones/pkg/client/clientset/versioned/typed/stable/v1alpha1). +--- + +To do this, we will implement a [Service](https://kubernetes.io/docs/concepts/services-networking/service/) which allocates a +Game Server on demand by calling the Create() method of the FleetAllocationInterface. After creating the fleet +allocation, we will return the JSON encoded GameServerStatus of the allocated GameServer. The type of service we will be learning about could be used by a game client to connect directly to a dedicated Game Server, as part of a larger system, such as a matchmaker service, or in conjunction with a database of level transition data. We will be using the service as a vehicle with which to execute the API calls found in our main.go file. @@ -13,14 +22,15 @@ The type of service we will be learning about could be used by a game client to 1. [Docker](https://www.docker.com/get-started/) 2. Agones installed on GKE, running a simple-udp fleet 3. kubectl properly configured -4. A local copy of the [allocator service](https://github.com/GoogleCloudPlatform/agones/tree/master/examples/allocator-service) +4. A local copy of the {{< ghlink href="examples/allocator-service" >}}allocator service{{< /ghlink >}} 5. A repository for Docker images, such as [Docker Hub](https://hub.docker.com/) or [GC Container Registry](https://cloud.google.com/container-registry/) To install on GKE, follow the install instructions (if you haven't already) at -[Setting up a Google Kubernetes Engine (GKE) cluster](../install/README.md#setting-up-a-google-kubernetes-engine-gke-cluster). Also complete the "Enabling creation of RBAC resources" and "Installing Agones" sets of instructions on the same page. - -While not required, you may wish to review the [Create a Game Server](./create_gameserver.md), [Create Game Server Fleet](./create_fleet.md), and/or [Edit a Game Server](./edit_first_game_server.md) quickstarts. +[Setting up a Google Kubernetes Engine (GKE) cluster]({{< relref "../Installation/_index.md#setting-up-a-google-kubernetes-engine-gke-cluster" >}}). +Also complete the "Enabling creation of RBAC resources" and "Installing Agones" sets of instructions on the same page. +While not required, you may wish to review the [Create a Game Server]({{< relref "../Getting Started/create-gameserver.md" >}}), +[Create a Game Server Fleet]({{< relref "../Getting Started/create-fleet.md" >}}), and/or [Edit a Game Server]({{< relref "../Getting Started/edit-first-gameserver-go.md" >}}) quickstarts. ### 1. Build and Push the Service Change directories to your local agones/examples/allocator-service directory and build a new docker image. The multi-stage Dockerfile will pull down all the dependencies for you and build the executable. For example, where USER is your username, REPO is your repository, and TAG is your tag: @@ -265,7 +275,7 @@ simple-udp-s2snf-765bc Ready 35.231.204.26 [map[name:default port:7260] simple-udp-s2snf-vf6l8 Ready 35.196.162.169 [map[name:default port:7591]] ``` -If there is no fleet, please review [Create Game Server Fleet](../docs/create_fleet.md). +If there is no fleet, please review [Create a Game Server Fleet]({{< relref "../Getting Started/create-fleet.md" >}}). ### 10. Allocate a Game Server @@ -327,4 +337,6 @@ gcloud compute firewall-rules delete nodeport-rule - Customize the service by changing the constants and service key in main.go - Make the [IP Address Permanent](https://cloud.google.com/kubernetes-engine/docs/tutorials/configuring-domain-name-static-ip) - Create an A record that points to your permanent IP address -- [Create a Fleet Autoscaler](./create_fleetautoscaler.md) +- [Create a Fleet Autoscaler]({{< relref "../Getting Started/create-fleetautoscaler.md" >}}) + + diff --git a/site/content/en/docs/_index.md b/site/content/en/docs/_index.md new file mode 100755 index 0000000000..71852a1a8d --- /dev/null +++ b/site/content/en/docs/_index.md @@ -0,0 +1,24 @@ + +--- +title: "Agones Documentation" +linkTitle: Documentation +weight: 20 +menu: + main: + weight: 20 +description: > + Documentation and usage guides on how to develop and host dedicated game servers on top of Agones. +--- + +These pages show you how to get up and running as quickly as possible in Agones. + +If you are new to Agones, start with [Installation]({{< relref "./Installation/_index.md" >}}), to get Agones +up and running. + +The [Getting Started]({{< relref "./Getting Started/_index.md" >}}) section will have you +first `GameServer` up and running, and then have you spinning up `Fleets` after that. + +{{< pagelist >}} + +
    +Release version: {{< release-version >}} \ No newline at end of file diff --git a/site/content/en/featured-background.jpg b/site/content/en/featured-background.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5b22f908d6cd8b2a1fd86ae9c3d26e6b17d25193 GIT binary patch literal 909346 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πgCVzI17FSg- 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 z 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 _u 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%0D8oFNS*_#6m5#y%3_bpqRZFx8JUWPB_ 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%0DEpY*s_b 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%0D#;w zvA9ybp-mwK1gI4hdni4eF$%C2a7~JDp+Zm(A=} z%xDugc;6r8UIZzIvrcijv*it{V*MsaBLuj~71CeY01Oz>7-kSP}0H$~$5*04^dVryD#thw!- z;0OYmS8`@0!3Yy&58|VcZ-=Q6y}<}F;;|zQm&=dTMx0BR1%iSR z9K%D_gJaX>E@@8Z|J>!l>69@f_%Jm=`123+havx4##p9F4<; zqRW6$(Ts|RziHJj3?NhVM?~Qz_d%(uzcBQ=KAp~xR~TE;kDquda?}RW&01#V7B?cS zkOl23fV$D#Gwms`?LwEktTAo8AG@!l04f7XLT)_wTjClF3om}pDYLl- z5C+V;JoN5t%V-uq-lPCfUh%JL=46dDy=9X4gi3eBR~<*fm_Q#z&3-kAOR1~ts6`EB z{{YOt3-G`9EJ|UdLU?N2sa_#0tM3Zg$m;F$9JQ*icg35^gwhGtZU=OEI-YkH7GA^I z(eh@fRKbmq(4<*lwekxVU;`5-V%3~ML>~hYw75XQ%)AGP8jBcsfmR1m%xax3@52%kiiUkN6d7^eWltyV>rDAbbG%Og*@MhV%QF{ zxfpat&r?UEDDVWQgLp+3tgxe*U;-mpjV~H`!wSMgizMDSA+jc(sbWnPjKrytV%K+G zJGhv3I8yLc>sbt;L`C`1~L%kZ&`3W#b= zwkE-)M`8)Ay6!}6%5|%#M$1e^L~O>4E;R_!L8-ypo~Kx)cGQXk1;%BPDX8_1s1mwF zDu|B~X;5P#P}nV9k2VUxTeAlosj<$ycs!C3vPNq;RlA~4OavVW1%~Te>9>I!=0zj` zx&S9_{{Xz@_s%VaKyyIgS7P>X9X`X!fh>9g78}PVA={@>9k;7p%H#(gClBkue zxr|CAJ2#6!XGmD0Qz{G`o(RAKA$hLe&<%?RBT2=dcnQO(a&kaL0jzmTy*iyb^D`3z z15?+j*OPK07)TB&{Jz+N;f3omJYx4S{h%L3%Zn}zHwfkuqi&{2&(W9+po7Gv(pPvK zf74&^61)L3E@>P}mEs;E0NB&UzM<$@4X$nP@*SHxk@|loj*pZ~5}^TEW$f}svHt+E z5?E_6KAQS2479k?ULk~I4MAw#b@F0+$n5Lz{o*JJ=D#E&%6*w*LY`ulXvGWCQM^Tn zis@@ZFQNIVUeCz+ictH?_sI^bKFuP1n3Ck@quJZD>lgwi%py%9vbEMfy<<@R-Yh^+ zfedQH&w|~&Lc6{Ou=r~t%Qa@62?y%doXa<~dfk1V=JK1!^VNPOlwg=2m`rZ8c!nri z<5^beuJ@z{4(uzV09IERb!#M4qa1vA+_*5SW$J!T7zswsckIfy4kuV3IEA64tzrin zj*t8$*Jotw^R!}xBp|_viAkd}Mjg+|`5lXw z?7f!FPLHz$NQlyD3g-u2rzhu!Fa@w9@28}#=5ZZxVi@v!Ke>39FTrK_ zky_R|i;FT}0KWr7wa}JzU}Z3X31|G5E@#H&%VGW-2`Tyli0KKKmswAZcmQRJze;#l z(2&I?pWc$N&T{A8Wfd;Y{hc4|MkpdnPGt%^RteyC~`VGc|r$FRijty)RsZGggHz?33d-W{5@i)Yk4xK2Kb6n4`v!v`bCXY zxFv-hbvcC#G~!qW({S%HY&Aj-Ll+eXShqDNPZW#98FVfUjchkTeIhQ2eW0TSR!0KZ zh8%7=A}QYw63sH%s31EWzqmk3bWNeBM`YeGt7clU6>MSx%#jI&k58h*Sa@XnOF7+z z6%+f+=^Hwl=da{MQz9Nn2h3EWGC*y#n1u{&6Wj_2-GI>%3c6MDfyt9uU*M`vk?fYtS_o}5DA z{X8*^pK-K;FifmQd93!)&9d55Be_}C z3!627nv*c(zz8n}JQpe-@t+F%&+rigyitm*M0P?=)@j73g+xFYT)V)`D*e0ySVh0` zs5Td6T19Xfg;kNmll!bgq+!WjwH{*@RqP&)iP|MXm=c_jM@Q$wA4UHFk?^?is!k!L zMLYbTl4G*YFYNvqpm6#p%pJ1%ACe5c`=}7=+d0InUK$xnD8xVltLoMjMP)Mz8O| z>7&wIn>XZmO`t=k+G2PpZv^k)5Z=j8RQEr)j7TfL2jWq6ms>zaL(quqo8&Lj4y(Uv z_o&b!bp9zLW7@}L>G?LDQljXB04#K*cpCqv!I)ZzV3{%h_XoRFaBi*BZvmvA0==6(1BPbHdaRqL$LLiyN z@dhp^RJ>9O#*(Gi(WI*z$pk^9V#uiDzh5Q@N?L8`;PB|ew+1>G!0ejpl-TUMiDcx@`9)VUyd*+s_kIFOjeA zDP=Djd68Wd@@T*}M0GVD#o1ducy`AE#-bNrKqPMkVChWM1E>ry#Cp~lw%B5Xz|Z!k_#=TnamI755z^M;twSrL=wHa*XAxEMP=$p#x|Qv zl=@m+vm{f&c9EPVlBg@(Cr5PQ*Pd1j*HPJnh7erKRHJx^b$@FNvqMvJsmcA)EMwQ0 zfLR-^LsQFHk#haMV5IJBonwKq)ZBJX6J`$+W~0gSZvq>{b+%hp(Pk>0S?v_WF-lz1 z_F~R)hz7FUY4Z~_Fsnk|mj;DI>!brh`8WBE=`WSs3<^et>9f(>h^Va`Bld(-C-xx4 z6v?U)B*{?gD0t+xbaqF(a| zwFDrMTp&_BzB^o~N?t$0#5Bi%KF`EjrdYkL#khelNc2cWQ38ktFaa3DQZ)7tCtXQW zHd&oPzqgqYbw!f(?bfupXn18{h&d@Clw)?sv;rxox!kT3riN}Vn#Bl4ZcGZ5TQVMCbVS~%0EJrti(WKFi zG-q@2LI^|A**eG6qle-Z(`dlnSm5tc`a?tx%J$6BpFvy2!LJrgMvgzVfo}EMHi&Rs zrFh%}1-!E$7H_-12d0mBf{pEWIwr}-q!|U7J+!{uz7xZsj>S@M07}mP0GGr0#baZm z{i6xkt;avVytJSzpl=g!SwYh6U$g`}7wY^*K-M%-g5$XeB9c(tL>%mz`NVap%*csE z=ABO4k&qQKVKG-~J2kne#9+j{Qw{RF8+Tx^D0ck4SO{)*dFb`w@`z9#MAyrhV1VdU zyH+|qrD>RxHD`REZ?p@7lp4xyGW3LafloZd zX_n>EU;t3QesCg&At{KW2VJAB!BKN&-of40Vm%?9KAocm47f6xL2~AtOI>DM#2Q>1 zer41ab=#>3QA3ShPvg}yI#Xx+?Q-CV#c!Uw%Dq408iUhLy87?u0JcAc3=@>!O;r2ms$c1+PGq(!NQHd1xy*d)%CJmtW~1MhL-o*Q--Kt zee0)Kfx~X^#9Ew#S8knV^!XnwYVjQtCk$;v*YzILc2a&BP6S3U@YosF{rq_DNcY(!Ua-)CIm@)OC+H z+Hh3?*nt_w29p9hxAO%eD=In=YFNhac=A09Wx6RQCwAl?bF3I?1_?!q-W6&^gX3q9 z)LB8TYwrqeE50M!40k1Jfv852-;d0go49345A4*;}eBT1t)nBHyM z!wVxztK4{h3`;Ifh5FUTU31L494#G;A8CT7Vrw(be^T^0nMeU^P&;xSZFGj&p@Op+ zLqUhBacIpn+efAd6l~-%?*U$oL9c$W5p;BawCyuTw5>{xk3YY>TH@%|!>bu@XW5L7 z)A%;gi1g8AF0zn36cWv)ur309M!UQO0rX%003;F*2X5koxj z{lrN-9Z!#sNnTAqweTQe35k|tLg~@f!!i=+)OGnBGNh1NYA{gp52R>)f;$>ts_7Ccw<&vYbRob&5UTZFv0!ad^lR-52;vEYtO3w;*ZgO3zz=@$`KH?PqW;I zC08a#ls6ZWs$@9D6|Byy5`C0|ru2#9JY}Qwc3>VvZ5z4Qg;Y zTg+2jk=iu%h@K?4gTN#a$T?|HDwv{Sl`C+Tbs}JC#5oN<(|u29k0nZtrPsW^-~yWB z^d)bm-|tX`mW&Ky@_uGPUb*MQRA)~Pk#7t{j-GO%s3GSV1=K>e@hAi>znO3zUlYu@ zFzMUq9ZbBiu}`*O^KYclA>Ci4r)HwStX1|m18eho#7!luGM9HylZ<#GFGb~=My>->g!Sm_iWO z!E_lNO_(Wa!)H^cQ>-D4Vt`DS9WMC$MSvD+B^_cF5lq9Ec;MKW38NUZ^uU6QK;vT- zdOfA@j~Ml6z=#*EWtqBPS002*5E}p<__x*;vQ|ykCnT`bF6Gp6wH-)pnd|st+34#T zVX_4Ry#`V0F9WO<#LuSU)@6n18Oz6LwZuciJns)-X4MY2E2|J0#?c*J8_FF}S_)d& z&a4FWOQ#g^c{TEfTL(Ixq;yAt)a?E=fttj!AZaXPBj+FA-17|zQGnY<_j%2}UKa)o z1FS$UOdF1mC)x^8D*phn(kkh+?IOM+VrC*%5R8q?j2jOVxh>e{D^0v-QQ?R|K+ybO z+5pKAIEsAUpQqX^ZmR1py`qXJ^CBn(>X?oYBHK^e4JBe`DT8?Qg^B5-;6@Etoub&R zzW`&VzL8`cMlZs=DkuK{C>Btvi*3P<>`+Ks8!m}~<9N4kI{QpA=2;kOA+2D(YiX6#h}}#j z*)Ypbv{+u=-WMHZ!bl*3kZ@NGlHK6OF^F8Pkh*AjJ|Q=e(VuX=!W%)_iZYI;F#FEJbo8tDggi!mOD*a9Yiy_4@Z$>Fu-a}W}@ zGCpV7iDQJqM69q18RzGiV~!mY``S62n=mdHGc9WjFG;Mf(XL?wy8#KMeW8?YEtWE8 zH@^`G!--UM<|83^(o+;6S1+RFt!RsZMMW1IA;FqTu8dfs^wj*pzRu6g4$_;=K$K9v zji$6?ou$i`119G&*k5y_^Ajr&1`zB73oWwycZ$h!!_b6hWhK^lU<(W!bzPxbPPoHt zqgC_X6f(yME?QnN)8y?8($2ZP?dy5IW4LD!9cd3(Wl)YZmrG|l{{ZZ@xE)QelZXgP zEtR)1&?xZX^5$2pc8cTu_VkF9GkSb{P2mb6RYhc40^@Fx15Jcke0)WuGRAGvIG^S= zq}Cq_cM-QqQ16wX`Qh30moZzhHyY4$*K;xOV9bna#!^i<Q{c+*0#V?#o*?}jO54W#E5g6|h$T4~vaa$C+Bv55 z>0WZjT5x$_j*^2(LuME~u;G|tUk;FKs~$51Yorq!OtorE!HjybD)Md28?%T;OvN&; zP+NzIoN(hA8uplEr;|@li0>OYKfdzFjLf)22q6XrbIM)E8zmBq6B;<{FXXeiquhb6 zM$V_CTBfTPv{?rhIXQwYG0*v2zXIQZ31rGU$&x7VGSX2@Q%G2nJ5O)Ss7){<%zO^M z6)9TL&)05|ToF0|7c@nCMH&^}6f#`6*k3MM^5P~%4z7ol54}K|tIGTV6qKroMZl@M z!Fi?9`8gitG{b6TUb(WmX?yD$sugjh3a2BfGTC0EHHywQ4Y95BHG^H>n6|L@U@K2q zd15@ziANq%d_fkiY=!w$QcQ@R%%pjgVCvWAF~dQ(%&?~M09;BF!C-<48Y~?_)PU84 zUI}kYzL8yi$mEJTJak~9IDqQFC2YY5GSvK?rB%~sm=Go9cQ$4rgw)*mBP=r+F6u<+ zg7lWTlbyy?&PY2<13_zg0lM+FtW;~Zdxy7ewhds?27&#TtC$WLH5!+chHWdE zqvg!j*<1yOLN5)UOG5Nfy;!}j{{Rprq2*@#ehka2!KLngq6M(5wCw!+z+_X-&wrUg zituX}qV$f;AOq;Q zvhF;6BP={K0v-i_^GvGHOuFqyX!4^Fij-!hqm4+Gmr@BV2Yke&aRSL?0ZU%ez@}}! zF)TMGzEDD)rIb25Lq$U9G|pm~ERO7IR*KDa7x5JsN+IBV0YWl@i+!P3Y~GW4!~?kQ zY34xfW0NPOP%hj=((u}I{n}*)&YvGz#x5+nmo5YZK{Z8kx+Z|ZXke9OBD}y@Etf0a z8mL2?@GHczDpTW3*c3Fypf|<-2zp%hqvm6fIuUzkyE4VhF{b#vR*%ElWhL%9lP)mv zECYB)Q1x}L#;dU_3yZ6}+lVp~DR55b>+E}%xcJs+7u=xTX=pfJRA=I12L7zvUgDma)!F*U*rx5obNopy&ZF3z@c zLoF9a@WXR)&EUGh)DBbfMFXbHD6u|F+#||oz{au}+>IEN;Ek2aLdkrknLq}lNIS9f zEO5D}18(~D`axyf%3|tV@c{~$+4v=71Ey;G4N_zmCV^h7`1OFn!qm4$v6E!#ZvY^s zuJ{47swFp+r&WyN;K!sXn?29&B280=qi&y>ls~>=IcR0h*8pW+hvmT>bB}!dUuZP4 zI8DfcHq;+*cz*JLxXPLm#aPAb6E!Qzy>d(3mlTjF9DXH~1J~wM14z<>_cl%+!?ZnI zRToiqe;oJ>0+h=^gw*5p!?u#WD@37ATffK5;ofB`3r)p5oS&Z?mUtJ&qs@H*b1=ig zqr%9_zxk%X=(Ev)s)C{PCB#;d8~lMn6z-QmOU4TDolY~h$;QovQ3KQRVYz^GM5 zT`W<4kUW+08i~;adNCzS`T^iF-W;JA_;yk3K+Q(xo@c}oXpZ?FaY8Pp{zjUzi~&{F;-{uikqF^m@2WJ7CaA|2MTTVd`%@IyYUlZ7rp$#9`G4En)#MM zf>9mNlpN+UsI+{g+bHO$O+lpECo$i4Ul-tW;6)m)K7nQ8z72$ftzzQdV#P7ucpJgR zs4Srl;o*Knuuul>J?8bJkX4_a_?D)vR}0wRzLJuoi_z%lJMX&~g}{lZ?Fk^ifN^SO zbGh08DkGr#FtekzX!eL&6!Xt`7TFNNzJy3D7^A3f<=!E!nd%b4BE2qM;ywHxAc7i^ z*j&SrB8nw^Bw0l=r~>x8N0X;XOH9f|q|uTNf=bObKcoiB~V= zMUVqz2g*KXkjzCE)HJSPxa;%<=>*_}+EFOyZw6n8%)na%<|N*hN-I^P@b&eXsavf_ zw;gneSu^;LfxHS=CO@4E^ErzRJS_4$oXhB`@6hy&Wc@JE9GiSUh%00$)bG|hD(ZxG zc77P7wUvi|IYKooh?tD~2e|+$yB;k07zFA_-I+RmWm-9+`n3c$cdmvn40S2&Tw7S0 z(en~Ti^Ag_d<`LFr|;3}8om=#kJk^BU}{8tle`TKwxZ$tA8B!i!BVA4j2eVVSeg+N zv>oCjD*piUF1!>Am2?=}%nT0zmGsmXFYXmr)_lw>d=8IiNEM}=krldx!Sk9+pANu3 zW-X0deN~N6Ht_4^ELtIU-IRLnd4Gr%<9TU*05*y-D@pytc8$3-^B|^#cQSdJkOmVT zr<3@Yt<&uc(2;3eSQ1=-<{AaEe4USYrh{My-MA+1`5zMm2Xra)(rd_VqIVqnVl>nE zvS|A~Wt!}=d77SZA^~tKWJOmLOPX<`GQ=hejY*$!Ym1q#EF+=xrMypghcP3A9bf>_ zhLnT-tV|TErEdpY8$zNo#&an^Aoe{Q`37Jg%;+DN$}Q9l)eo?FLG0bI^jb@ODl`Qh zR-HO3BSOPb)bjX@320JpzqZE(MT8JR1H5|H9Zi`*%-!mBIUpi3bGhHnVlB&X8XP{*))83-2+i{Q#>WM9nn|N`Bmui(9d*+5dPg&t zO2kOT#)V)z!LnW0$k}3s{{s^J1L%5XSM=kha+S%7+iLd~o#d z0Bth34SosH4sm!FwgBi$!V7p7vY+i^fII$w%ORllZ2le|znCSgUU~2H2g{f2sxqqGYU;hKO>kT#TuyPBbxOi6Ii7eqI1$6BOT)$ zz>8VZm&N)4gi!`yj?V>_x^!WK!lC~FMa!4}01f7E;MY}Qgb82hB9h2j)ad1TYI!jj zR`opFo^u6&Q+==@-C+e$p{T3VAep zpAdTr>66UV`%8)yeq-5)<=0K4RW&F?vJfH%1?k#W1p9e1lMtwgnkUS}9gZoloTxN> z{E{NI_npnWrA*N7X!RW!(b}Nd8x|yD#ROO(nPST=)+lQ=cnGo3`WTyUG-Pfp%3qve zYI@6;2k+pXQ6XhnewhtPWu;xT_n5^_n)>SiUFFK>&zL|~-FfJIvX!AtF{e<_?+j^+ zogp_h{q~HGB;$U)BBV6?F|o|U!a%|qh|+FL6pfc|gxkCeflXxD>+pvxMW{F>F1}r% zZdlD48cbyMB~CgfW5HFi0pEV40Yjc5RSIP|*}q5`NY&O>9MtSr-d+g0+Gn{; zpaVssnlFYd(<$3_56g(&rRuG}6J`z<8$5oc6?r|Lq)G%%zcPxU=CkhvMHJVhc4j(O zCTh5LTax0-#aU^jR`aZ|TtZqF+6+>Oyc}NA)a@8Lz4$u5R|$q!K+tadu2`W^Oj^C1 zG>A|lCUptDZM~W81%*+!ZM~sMaEpRMG?7dNX}@=e?-+vyrvCsV?b;x2SS^qIj-#>l z*Y67Lrqf8vk3ZhgP&QbVIS|f9%Q19?T-Twh%JbOhQQ#r5sjMhj#=HLjbYVgbnj`ld zeV~*D<*0hw9X>-z<`6k$bgeykxr#uVnSm;S*@93noWcVd+$sywD3_nlME# zSLYUBdT$3dQxL3di5621XqrSy=jeQ2@m#;4wl!%Uku*5u{F*^1C#mVF1}IhYquGb6 zu8xsWqffIC5jY%@@m)iYCRJ2VPux^#MR&w-Qa$zZh+>g{-QdGkR{760%sXA~5~&9; zh^WP~2y*~2=Df#(6q>bz;kVMYI%Xl&omtNbqQkcE3@5wjTMd~vKeg!i94rhynr63- z@`Nbmh6b76UwKJ;LS?e?v@Yf1spcXPt)4ocBxE)6^7tMEC6K|FXD4UzG!+w{m;)Ni ziE&XxL4k!^M|h&iKB_d#N+;t!`8z1jj7eepH?lCS@zVTBM z(HMgZQQ2bfrKYlkhPNoR8vM%GNNZ zGX!f91w$2Pb{ZN0dm{P_19ZDPIsEu(tiU?0AD&5Z3>|rOI(@f;TLZ6nU%_Zaj^7<( zS~tV^ddzPVE{9DjI+a_b`w!uis=AA9%l?`9giuSCMpZ3kK$Qi+B?pD2n!r*J2p{xU z{0CTuIO1S`!V;xSrMQj}gx(ck=y3Tude?aN%6O^r+473xQ$cYJB&XUdEXmRjjY|Ij zYw@_%qSHVQqWTd_Jh?CBVrt!Gg+ zz8iuKYcd5kJDO>eJ#ohnf|?a?JyUDxC=DJyIh>5E3p$qrd4bF+Ktz`rKF;J4rB>e) zBM%1a5L+xGLlGGdlu?)gb+p47V9evZK-+k6%yo*{Kp7h^m?!|)0Q5eD8lm11$49JG z1=#L>r5hw4Fqm?0+7OM7r^ID@e`^FyY*(bsB|?-79Z&7!loxID7*`IR2*WYCRS!ck zE(J^!m(dpHAi62i9cfSmZbxisC6U!jRJ3q@d4n$(v@}pw3cwu*L0Fo_1BNIY zU*1t@6ouaR#}wkR;9Met;sveu9ljx3ZI1l@;X>%R+KGLfSpwJ!1s4Gu4>2@Ov9?>4 z=W6w&zXbA@OJ#yMczzwt;Wdu`04GUkK;yjRbw9U;G`F65J%006tE)$(>(`@OI>!dM zh=~J3qleG;G9#%K6?_s`)4S+ntZ@jj9tD5oWu>y&Y`224$!GW)z=`0Hbeq(vUqyJ- zsa_Q-RI@DB5(4V#1!T-%EjDcj438wfUU$zeN4ymuk<08c>*oPlzD7s2LGeM>9&igr zVj*mbFCF6rWd^jo2z4($kw4?OwWNAQsyEd9nlKy3#@{E}6F^@%JeV!3IDZUVMINyS z3{rzOimi%!TNdKDO{3Bk!VIz6IE+sx`@{4rQ|^wILZ?U=5)kU zYi0b)A{*j0XI}sZNF0zWGbd4fACI(54D%2N2CJbsQ_c8@@cF=;2h4&o=ueogpm{I= z*FY%0C2((8giv5l#J)Tc97A*?Fu?a_qmnk}A>x3x7+|@b$}l?Z-SQy9A|?|=jI}kE zO=1!0Obv<_rqAvw*2>#|{FiC5@|7rGXa=x7zj1u)+N<*o1Se{UWF`3w#yo|<5*kcd zE<{;D?FYi7Evp{ZgO1Z--)ql;;+86Tn|eYd(YNoI2Y}a|>FenWQU>z|vXaJPun6q| zv^PJ$xr&rC$9^FRs%zH}fDVvY)Rr35r`95cL#!t`BojK9^Bma|H`k-m2*%<&4Ia+y zNrFQ_Bny_d+q|ji$4=3FaAh`5PCA~EDF|K%DG+NCGStGdI-lF{#1q*608`iR2;W2c zqFVB+`tm9l7^yddC!GAs@ZadAf`FQLL+EVomj3|IwKYV_K_!qpFTrER`6fI@VuW0E zml3LnGS!Y+ayi%Y8%XU0f5;#ZFbELC7D-92J4@^XD=%;DB`Fcqa(Rr%Qgt1l41`BM`-B}F%U#=tT92DsDT3IK}-p%8YTGX+c?@6Kn{g}gGB^*GHBjT+(S{L zK!rP-_dO9%yCCE=@d0XNmJn<<(MItzG!m!MIt;cna&zxC~gDhF3WmCU}acsD% zxmIP=bRJG2A}r^Q@MnOR8z6yuKQRrO`#qzUDkDaTd#~Oq65B!iF$B_Dj9kYTUHn{_ z8?8bt=vntY${fNmS4-3Dv3h5WW&x}MjfD3-Ui#(@YKzzZ042h<)jB#SNGvd#OVy%N z>Ay~%b9Od7e!4-*5tTh4X>feTn+pVJKJSJs5}&&i0N#}k(la06W44}56_7fRt59)i z{ZI(xPfVYfl&N)fbeC${!-kRmV2({7)Jj@nQ2}>}UMG1*jOyj`H1&-H!;!i?jA9u= zT+$uu9#*=LDiZf4<$ygGs~M`TbFf2I6tg3#v+(fBQuQ|;y?*c}H&vaPcMFff_mt$# zKYt5>;2;m9L>n*YI3K3p@@8COky|q!B@IX_;tal$#iLji^xIKO5>T3*U@>g~w^thZ z!Llkd4kMl=j3g@YtVnmx-fr=K*U^@oIr8S~`Rgfs|G0IT*QXq`y4# z#A~NmNt5#zsqC+rqvk^7dI{c+7qe^&s?$}0+;bU3N{UK$<|Vk&B5VHuD8*JZ!IaV( z!gzJ^hUn1Wf83~5XM}{_83PA0jLapea+dPx;0(lJt3u*H#mD_Dok>T*%W{Mz^_5`W zI!py@K|(Q<=?BaZ>p7U>R7#9IY|F6vOUA!&EpqAc1F9pTs)31GXmsc1DNP}-JsD+c zBiyoLB6NSHYZ1<0l(C2a6k^zxQ-<{?7 z4l%2j+;)Nh>!Z(pvj$=*%}&yUR5zR#+8_~F%dS0U#YK?W5uIO8S8nq5w$KaOH*&Gu zfD59UxG$9BM_(Lo0BmYk{9%=5X&c%6dP4%F}8X=T~IAx-7>poMa$D-oiXRhu9|Qi^JZ{m-%k~Yf|b|R2rjQ%=_jL2hnGO-U$}meHBI(E@0J^*tu(@rPuyJ5qv3mfGe2J z2(_`n#9B3o*u=SRzv6_~0;26uW`|f3t{~QK;Sq{dThbXN`$cz<_J?$kn;)pd!~-n? zYbcd)2c!y72D-w!{Yu!JiH}%-k*)Mj$w>%7ry9JI@;&2K*m!>qkE}+K#1V%Qj+lsR z0<;#yje)BNSMWVG=@q2^0Be^Rd;}X9qJ^IFt-CmikPJoM^Hs*y3j~(~Q!h6K>xr^4 zsFVn?VE+IkOQ^4fO%c2S!%?VG_KQ(RtSr;gU5clODG0nJf+(CUFDL+6&gaZDEqfDg z@RoPcG=3QNyEhtq_G1-Qdet71q7G2Y=lG8@?{>aCx9bLO9&WQeRAjy(TM50}_=1r_ z51xz$r+p@PY4(%>zUGhuvI@RqmfGo)(mK>rOMY-CBi0vIIk=%fbu5l}&w#=yjE?wNv0 zXcH%9{m(F%6}1rLY;>FEyuG>&~HBUNYh3c9s4{KByaEFzu@W`3cr z@1ZU<(h@}y!~RfCgfGNKka{Q;E%_0&TmJxYsOMN&a3QN5r#)e|fd&h!O$*yQ#py;& zf??df;7T>nr~m@{*PLBh9$*U_JO&>F!9xh4jH!W%zK~a1fOX8HMlEH9RJnjna}-v8 zb7j(_U=Q!Nl+~;}$|5m5A}uPOWhk3k-}aI7Yda190IJLJxtW+n#51g1tdJ5p$_aZB z6D(ywifh_vBNQ&6AS$BxX?O*n;MtN}GvGT$GRz?_zVXt4!~s0qFX+ZEl5Hw%%p)}v2WakQ3c_%(S}l<)*GUCg@{AN2N82B zQ*c--sG39^M_j-Pm@wG@h{Rkzvg{^eXEDb`PvfmsTAR=PC~hi%}c0&LXU(lz*@i?u4_e0BCqr#JA{Q@>xOw)t85PWNA7& zd3XUD8D0bT3OSY15zutR1teOFbo@(!Xw7{*<<|DL4ZwTxH|Mo{Lms}>@=fQL$Fjus zh2g&IN8AHsx#>^dWcYO1H#>)_liQW4O^H2 z!zw{)LWn_{H3a2aiowsUEpc7Xjb?l)$*fGQ60)BFn-4r2IJ zs2NZ=hc=)AS%0>dV04YktU@ew#~NUPk}9NXh?+(=p3n`_w~da^ZeYurKfr*XoH|Y+ z(Jm4p$HZL`NXu91VOU&@VGlc8@eKg!>jm+XMJ7>1{eaXw9V5RH4c8IjqK<}FmC%)3e8YAPJD@#xdavg$|1c%n?nWXn+~}JH>0f zMp&3reONUVT$cvEr0PjXZ2T1T+@edvVm_8ZDX*=Rw3uT>au$ zl#Csv1R*zh*o-3US^Gt*a(ESai*YnmOOPr4v#h1OyPeLzKC$647f!g>`*<*enQeB3 z`#*1m`F*VV?;Q?z zvgguNMmh^lcBT{qd*4~0XUa7)X%?u})TOGpRJ4yz%;3@l&`)@+2$OOnh=`RI9H9L@rZtwQ+5t}S zThJrsMBzu?pJ{lV&Uz;Q0DiIQ)4`+Lr$$j}DdXeg)575hH5_3sWNG{Nf}0BI@$nh} z=zkq$p>&2?gSw67f~9Bg9Tgb(0jqverPIV|9mHln9UqyUX#4bth)PXJ5M~I5u-W6I z$@Yp{gQpKp-C=1+)YCK^!4+p{C>lTsVWhOyQ@r&{;F)DgN18Q)j}5~NR}QE8TvpR9 zV0{%U{$ON)DMNRhoeIXJtiVv*F0y%S!w+Wsoe~-YU3{i7*?fUtc3RWZ^Ac!ZNvvm0 zqkspg4c2hQ7M65?Qc(Fpt&4Mfca3jXMzK=P=-xlSQ(jAZryXH{sWn2YjBy{J5u%+= zUL$1>Uzn5z1AS&Nr>^h-TV>)2NpkNk4|nYb>JChwuQ=u~Mlg(J!l8z~0thLX14(Mu zA()0ADAh!NwVMX;>FY4;y}e<|B2&`;06k)bN*<4Gs#mnJgNpMIEX*mp1mS8at7BqW zbDvFOYirnlF$%KeBy0$spJ+ne;nUYrGTB_2J!P1li0;5tLF$5DHY`_RnJ%dbGSme%wddsuo-iLeiuR=<@M4OxqIc4!&kh=^Tt zNq%I*4YaF0&yPucV}K47<=EwKv{Wmy7kIiIH;oziVXGppVb=RThgLI$E?3Y(D{n!9;eI=0qBp~WfcDa zbc=w_$HcCI9O3N{b%dA>wi1=GO<^5Y^AtFJc27xV(Am}?-7gOb)?B91>}p&AcMfP= z(17ef1*D>=I@(j*{Ob*b9x|T0kQCKk+)P#tc4elbcN6atEovcaBpfkcN52nPuS|b` zT)1Jx2Uh+^?o=l%6iG{%0iGB_jTo#xfVpLAL4-UY6oIgdu70BtRZ4e9pJ z+6pn<%!rE(iGAV#H7o7?a6WTh(Ud`NDF8B|qw^6Fi{zalZxCqB5k6b#H8>3(Ke&}> z0&Uw5%wBq}U=>Tact(wUKY3jEFNvOf72`>BHCT8g#6CIt?pn^T`+&R}_#J$1Y@gan zVFP>HqY?&)e(#$#K~jto&89rcX;F-r(L(h#n+Wj74y;w{5W!#Hc;G_wgw*nv1V`Tw z=lc*ksjX_JZaH*^g|GW*yp%9Co?572rJ!udm{5*(aKRGB=AtWU9*suWJxo6jq|_PV z!|=t7V~KL*_zl59m&6{E23VJ=*9Jk2lL$6OIWNhln8P*+&PSf3${=GWPsyxDXQ?%+ z&wof_3T48g1PW=VuFtG@Raahm+)|8tusWY#)U}0sI{9fH^zX^>9Tr_peMVdYx)wfP z6C!VsllA8jkr^_}?VG`(7zANMFsWdrHi$zJYBJ9gv*-Y}8V~~Q5p))<@|o17CY*)c z4y)jai(DW2KBTDAzz45Baj4C{-MAjhAV>| z*T6(TQdrRmy+7MP$|~NYiE>(>kJPfON!79LYQEq3E=`~`xl}i9pDH)PZOc|V?kxa^2A+^;ReJPFeKml|q*)wp^_PRZ z2~P``;J=`2x(wgI;`o9mh5a`zWq;9mMWX1{t&Y4(%B6!zNqZ*Azxh#M@BJ&>w_^sfyv%D(!q9##s6lKhBu8*(GSiXAU_0fXC&$IBw z#jDp@d1S_pp1(0=qpTI^cys$BitgtmzfGK)KnmI{jpiLi9bnPR7o!>DNBca?30N_s zeKd}_qt%%u+*+tY2C!LVR3MJBv_w&hh%JYL%T@hUX#HplS%Sd(%Lc2|a=V*%E6yZm zbiHr!hMtk2HcBeYOf#<0suo+d{w2YeE?WE~qYq8{?b)QYg+Y-D9anMQy3f=X%g_k3bj)f0ihicQArp+ zP|Q|=Dnh-bR)fCGa>AX@iD9M-!~-`G)tCTM6%M*|?-JRg8dV}n;T+|e6{Aq78$NU4(DJHHY7m#g@Jl^16}5froDFtkK+X?mB&Vdc@M*9^eR z7Q6gKWM;V^Y({8ZYX@vp1%@|U9*0;!!9fFIhMa@yMg#@BGZSG4F&kxKklE_W# z5vu9~_MKj@ku~C2C~+xmvA0&|R16crhYy9z{{UhN=>Vm(hcguC>U@x^8#~{>%mxno zI($R5Z@Bc<0>aKu&+M8+BeU@0XBqRO(lbQwWA7_dexg3=`#?^jTMpPQ@`$Az^?eHb z#hTdZ9wpoqEw9W?V3v~c4urvZjnptp%+-p|pdq%k9jc+HFYD=0-UCd;rDJo!2GAp@ zwYaO6R zxI@Yzds&(^<^w@aF%?oGN;j1@vjLg6BoknGcJqh=r?o=7`x3SV@0bpiJf&N9wEknA z>J%KB2UM>YiI2*aTQ8>u^rm(Q>KKxg zp~+e60b;ssbX^nPSU?R1idS7SRy*$!;b;8(^VGK*-3B zlLP~n&wrE5-XIVZQQP7nZa23*q5ye_dfUDBg16E7gjNe@Mm;7AzlTnqkV!R2h=#hw zMwx0iAG}016&e^;P|DWs@KYoL*1dS`(~>w0lD=zY>DYPc1y&SF@_|%s;8N^)oX!^g zyY%Z5QV+N40$2;XUB2>~<~BOlNCt;iS?L*P>8}hP3yE_aM@Yn#PpnXdv@gQtf7M0a z{{U5eOB~99;Zmi4g+?e-$%oW~P#!UTPl((O-l=QJWTn_TW&=SPyLW?>fs7EGIpPg0 z&)?E1mV-&wj*{wKLIA`VlE2ss`WD1(Bn%Ikk8K%Q=>DI?tX4(!t(p`L$ zucyRRffy4viFKIujE6(+#%e{uGlMq()Ceo7S-T~|I!+@*AZA<}nmia4ps!Erf$kpf z$KD#*UR?TdjXw8c{B*My{4))}NU?tDhqL{Qe4X0^l#5ysJwG@j&PTQa9{+!d~1 zq&V;mkWishH%nP*Dz25x0bkF12UW_w08kzE%wh_lR@QFwjkKEq zM%9l<5k-X>$Z#_P1#x;kFKCw6_pAeFd6~ensv0Y+5ceR$8Pg96%{e&ufa52*1hKl@ z)bH~VG&?5$05Ks&JoD!b3_6hsEI8)2zOmV{ukSfpH)0K%#8B=&re$-(9>Z+{llQ%hVIYd^@{+e9v~G-EsP=Q+moiI(y6!hk;0r@q^w+eD<2Z2cwE04 z@k;K2DpUtqQ*Zc>_=#{^giXziSH1P|ul1>32{I|k6SlspJv8=>1|D=y@~w4yKRQ6{ zSro`c=zU`9D)%${ndCozNJdC|y<#08iGxjZEg=>@7yfVf2^$%JTRQ9OtZ!@2@8%hT z4}Xb>Hk{!*Fh#pK-lB$uL>tCs?djmHVv>nOs&ZfNv|YURh{cvI*||VoE?K-;gBGS* zM1VGz-Y8LngCARUIxw?C;Iq6}c#T-?reYGp`$MfD7>`o}MAy%gqXzM(gC1tx<=TYV zGJ4HYsuz0LXTMILMZtkEknp4wj9acAc6-Ja;FZ>G&%+qNY=ET3g2>T?#f}D50bnH3&l_zYje8z;adlc|@{beV|l| zoWTGAbONATNRM>#AyIjNwalv<9kzSJrU9T79f&$Pzh9(`;xwkgak@RKvUR$AruOAR*zBJ?bi;HMH6^<8hSlW9!(iWHf&%Z5GzVLuu?ZnY-(4CcqmHknU;jRs{%LT zk!oDO`4$TWDJ=g0Hs%OB%c5MVQl)s;jeS)r1hZ&qR7K3CWHbX#Hm=Z2DshaSV~vz;D->LsmSe@SDQYc{ zR+BQ;3@p3<01Asqh6Tyi0Z%g|5&%HvS-b=|v8PfB(O0Rn_w>8UE<~-bNbdR zDX}ose^lNKGcya9cZCT+%2d&6LnO)9^AMQ4p70uvDD*5kM^e6Uqi$+2@0hlX&C7I5HOW-W`i!PDgIHj{DxQ0t10$9U>)mg{K5w^Zg=jJU9u?5$gy&t08nT!J3Mr3c$WbMa16V3Z#i7sQCB68_85g& zeqplQLgwb7#ggE>LSGl}Ejs7cIfqSU z)%?KdBkvzt4^2HZixmxuzq<%buv2ckuG;Bd@wIJepJrSQYv3@rqAsVrad1d5D64SP z(C5Jf%R=BTlc|7hFiSiZmX{G1{$-m@AWD}l@KRsZNX?=NQi`a5txAD%*aQIqeh}4A z94$r-Zvm!|njzHF&r`|(We?`Op0a^d@;;g&*d3bsIXxz|gqbnv4uB0=R(9{AaR7mu zFDm8J2T8D)gLuSI;4pvQ<-!o~5rZ~ig%sq4b|{Eu2-LZe2E6_t7=uv-vFJiHGV^>z z(BUG`Z%D2vB(a4KvqJ_2u`3@%Yx$4@72kzs0Uu=@_A6xC8|#5o02cNL@AJ^q8la~8Kxv)qkXDcsrZ z5L7CeM8g%JSzV2YxS~|cQ1KwISr28_P+W=@wl<-?G{42))0O4YIUCZ&rd-coldSWh}}{fZ`OQppNjfQiB)$)&W)T6cAoZA5$@sfbpxyXVhl( zK6UjPd64>(lRo5DrfJnWKurGtc}l%A{lr759xOvxF?7+rVh@8K<#A!)5Q}t-H*+M_ z0L|)0Xwwa0v{w+EK?^eo(g`y!P%*^3MS$%vaWbXBxHY71UlGn@ONjjlN+47(XoB3Z z5e%oUnK6soSe#V~yUY3f^9_S%JO1P8zg$4(Q@o(obtNHLg9PD-C{43LuRTuD>NbCG z5dLu$Nl7gRwU}!95eY}Eb)#Qs&hTsiJy;+Z@$jdtD|$j~>$?=SxCP9`?GnL_u?CdB z^1x;tt=9tU*Wwd)HcDclY??fFlnN?Rs?4W{c}4?f6JG7eRo;2|mcV>X#+r*n6Om#i z1J5$3!%cnRZYVIQb%$U+@d_ANoR72_SJ7dsQA`tPr%8L3SJIdXqzSYVlO~CT?8Zbd zZ{hhN30g#ZXpf$eHyiM{K?V;Ijz}m86w;Rf5z*FWgGhy#ZBW-L7{g=j7MR`&Z1siom1U9IC25@2=Ta8wZnuhyWG9@)0-FR{cA8Z^ z$E36}dOtm2*x{b15n}k)f%UApta3oF_)_IcWlELfh|4e2pgPNqXn0`|mvOBb`$ZI1 zH>^eIpXwIGs7x3)5pa7!Ub7vpV(#1^F%0nLX}hQ-Ei(%&`^9@jZmW@p+h03^BTsUl zT^~YOlTQvk^!JF}S$&J z{A%DXBcusx$49^st~@LzRps}D+F}Z6H|y^#)Tj<_QM_@>4ya{%$24GQM2aa-AK#g3 zHkj!sz&+wRf;|t2aE~GavK@$~!`O}kLi2D-DfJj22#y_|%%FNiqH!Lu1`D@VDn?pb zl*a;^%Z8HYRo#9el0e>7ZPm4YAVCFanw>jya)iSbMdiR{Uqt*-nO{}Z zxpLs#49d)Ohy3ONS(KNQo&jG=60xfV#_pU&I7y;{(8g=ZAkay4OkUfOjeTQUCXg#1 z@*Ks)AY2Jm1>r8h(i;VeIbe<4DBjSa0p$}?qLLGP?xd&mx?s5A|?_J(JTBI_;Nx75Y{BpEtbs;d+2(wwO*eu#Lfj)`o6B7RUONi zvU(8)!CX`;nU;hB)+(V7DlmJ?GZkBdWFg)JpykKUiqsq1#TF$l(7{k_D=7Bj2{MM5 ze-HwLc@n0{^kf-+O+kEt%`v1kKxpq z8JZ0L0C2$xV~}+vnUrLLj9X^O6Eff&W@g==2UanpwS79@-cbdxYR%w;0CSu8fs(Dm z_~rpL+{R>cxhla|&fa`Y_LFpPqSPRi2I@q;D7T0%Fo#!B(^U#36$+y7 z^dK$L2sGTi2*+tcvaT>|?Jn(S_DD%u#Kv(5*TE}*Wf;~PhBT48fqbhu?que%8of?p z%p6NGmpGJEXRg29qoZ%kP&_}VXl#S+Pq_p)msy%%;w_9Aa}S9?iH2o{_jxC6k1X|w z0_iD?boAT%-YSJ8P-N{8gvl*BFr6^RAf@ceka*eL=< z;UisqI^M9yEGp}mzOln0DHT84$0%P9%u3RaQ`RWdzOVoq-P6ZtQi5cv)6S6vZCE|GcqBkIbyk5irld#g0G}g4zi=zLuw_&tjgBGCh$wt zIEg|HMBZfLAy|S{R4mDkkEe9e;n>lo~wO;o1aIjmP`# zGf$;YnMyd&LHn8Wmxn09^TGT_4Qadl64-*}Eg=v%#MF^s^oIoF!m%iEq!7|s3AfWX zdETlB3{!JoIE5T+?8KnKtYGKF-53S1@$mj7>aqQ-)mdFmB@D2#a=~T7qr?n@4Sfj| z-8@THBn<#+W+KK>aSMx8yA`I@>X_yYd#B|1fPyx1X&l}rGb!F<#$fG;;jBDdyg&EDDH?DZHCX@I$}MZ7G+Sj zI$QDm?;fi_aGN~;0AgTU8YYR?hwrq*NlB?PYXFxjGaO+_d^b9u5L8y%pV)drxo(Un zf4p}}R#jyIBes7GS*))Ncom0*Od*n1AV!Gi{;Kc;Baw#2A{}LC>Orzv$UY*SL4|Ck z@du#-*p=e6)yK)1^#@qU0%%!o>!IYZz0O9<=+SUnR&?+XhZ{J92I54O;eHGkz(ufN zHjRp92CxhZ3u!KBvk)l`)3T*%7UcMWnR{5)Yusd!}EOr7Nae5;k#5oOLo?U7{mZ-SQ5_n=-5z4NAs8DXYZ}B0 zSTzR6Q*Zr+r`ILx))&}jqT;AT1v7?pjl;sFO8OGXnFt7Uf8bg!DL06j7+s?_0hioh zo?zRngc1pL@wh1!b^ib$T_%#>CS;U3Xg%S6ec>NK*A21EmqLg#)^ADozqC|)u%f(x z9-d%dUYPqq6bt1TloxgQ(gAM1kEg^8 z0Uk7m)-4)bGpr!P8(ZK4v_XQR0xMl3wQwvFdE#2u545p{@va2K72>n3)9YG*ptS9H zgCM$)ZYPlbNpBYNNO5C2gShl7Ge4*bbkWt;qkR))ZTKKwk6)Mx5Lho(4zyf6E?l@U zUjdFZY*FbNHawr0*>#I3%TMj#fM=vqg2!@E2jm^tN`jjZBaStsKAMh^0Iq~@uX#p> z-9`#oR;Fk+=?%k9;{%unMpcwfkl!^ojzpYr##EDenNqQEIE+(Q1Oz5w^wJE&YcR^Z z;#X^!{)JqqmC31No)YlPBu7ls=>!Q)A81}$uXwlub6)cIKv3&gD{?st435v-=A4=^ zQI-|FCdBW89boks?j3bDgQ3q4;r{I|DD;1^_KqsAk=M)SHFr-@^DJ$Fs)&C4qoHbs zvqf=xyT)1=_jmM#AmxadyEWv?&J1A}!r)b+4k?JJ7n2M!(pP9gnQv_?%QtY-7jT&q zzdvZTSBuFhqE_AxuzND{!7AwIwhSV@OCKyi7elPBVjl5inmLzkKjO~^R=r|M zUqkb88&52KswSm8-mdY=4z>DNn)Gyv)(m; z4GQ$GE6(N8FGE_!{NCLrZV1?y)YNlW!>^Pns7?s#7(;upXuB^+mR^x%;~A%Om<^EV z=hInfoHF~sVQ9V&iba>;GL?i8aI`!Ow}|lJq;|z3C;`?fwSKuGa%nj-dTMz_X!SGg ztl0;ttjTF@983@j(SkOvE(<`=bn8(TN=|+wX?GGOYH^6bEu1;`)&alm>oY(vpT49e zYPvc1g47|-r>wP!b(UZ#nx-slhLWQBjin_rvWhu~YNq{r^n}}ZTCq~^F|HasQ+OM( zz%(-c52$k-AmXyeSz|0F0v);ut*lD4RJGQ1-G4Z!D%BjB`5u0=5-fJx$&T4ahw%Kz z65_$O5W1HPz^$w?tgA@hLJf4I^BBipk^?ZzvI`E8GUidsEMm-U^pq9MwUW-!16j`! zjTn%?nkFSUtmozuL`Vb+fN>7EbrwOkLygEBEw(j=UOm{Jq3Z_O>P6p~Hf<*)!4!SH zU>S28V58nLt8<%7%c&L$?Op=Vh$%6o<3o0-_aM;&q_nJTIj+m3CAo>;MuE{XM{MBX z>8TZv!?F~fj4Qa`#1xRWeuif(mWTm>-*e^;My<>z$J$sfry=)0FlZMUo61q&nPJx9 zcBK?aMK0Qa9Eo6&*m*ng{ovjWpW|7JIF~DI{{V*mfk~uRl`KVEJpe_#ml_~1 zQn4MFk4*h{FTh}yg4o8Y*m2eC!L$gZO9NlO?omjitmRdPDyXhC^PPM(hmlpQ%-lBS zBIz8&!39THhy-@1Ba>)`>m6Ze!Pf*v)3!FRwk5GZ+xUPfLTu;nECF(9=={tQZJ}ko zjb(_C5c&?kMg1#FOL%nnPZ0H_?FQgIbbU#$H1)&keqhXvp1$Yi73TircIvv2&an4_ zG!+WSJ@xg9wIjom)+1?LnLT2z05zKRBG9O+dFS|yR5o!42sLeQdPS%zL7@i_B1JKP z3$y}4HKUkLI^V@;_y!{z<7q?acqs`^##qndT0*K`WK)aPpv15hY>P#b~ zFbp$F_{ZuxD`y+TDbtuhD7-lQzz}Hzz-lIR!A>K!$9R0D?fv+ID1Ujzf#dC&P)!hl z97b&+nQCO_Xgr66X4I;&OuZrHUIM*>`;qvul!`oAh_Zlgl%u5vW%vd+6nC0&4ucwt zN4(r#b5sUz^!1Eb!PYC0`HBFn<|Qm{G)1PdmeK7I5-%f>_>Y9sQQBWC;k*O5+5tx+ zGe1J6;5Q&}PB^BrrJW;!j<)drF3+q^k_~YWEzT1RK8J{^cE7v;p}BGA;(zM5WGBE=V3Lp){H4v=p~e*p7lPA|LoF$jPwZJ&tJjaJ-$b33GR=yZ&%yJ)97 zKR&X_GE17C;ronvud1fL8%-V${5Ipjzx+hU!L!N=0y~Zo>lW}vRfliHPOdLO>OdS( z>l*COXe~;FI>$~-Av8aziP8(irX4*j#--K1RO=D#z_CTh%ix!)+E^UJfPgF<9x3Nb?ZVBeRp<4?qqA zk8cbYgZo$#pz+W5NUaK*n?bJ84G|qGTDsC)MQu?{GaclY7DeoQwqc^w@ag2rJiXnh`~)G0FMgwYjm4dDICVw#eonKVTcvSj-^ z!9Xo*edP-)(=5phw!wV1IbfH$(ebc>})sw_P8e6Cz=4*F@gFe?xnp?>fiOSW#WXqyJd z8;Qx+`!Haj;uLJ(bL5m3R(R3v*Q8#s>TB;9PjRPu(jFs%WCJjZN{$qcGC{NGvRA^a z%+cb1pxB12r$XWl0EpnWEiToEQvo;s0Dx(X145Hf;jWIoATl)C3M6)(zAIRyp+HWt z1qAI8TN~Mni)w?lwd9Bhk>_wasjE$X{{S%11lu&@xm|CJMKhq)C0Vv}=j^~D$EKg( zeV|~9LCrODM}E-)#7F}C8Agl%3$-2e{6^4e0Y?sCkqVcIaOii^B6yH8@BRQ^(ib(8 zTxxnnW6nMtNAE8hdpPuBj!;uheILX?j#tci>kztH(fNRbgMZx6nv6_YbyhJzu?MU{ ziD|v-Fb!=4E#GNrg$pcnMj${~+-f`x306bvw2@m%3YoZ*!MP}bTx+Kfln~g!pmOQ5 z*WL-k<-eqG#X?9(QVUp6gfU{0kOFhL=LWP5Y1H!H$~hsn5-?MzCosmNXIR~0o|4Qj zvMp=afwsqb`GG9Mpg(2>VODH2T}Z(m7)g3Yq%@73%LPjpMT1OvK7=gNT^C~&%x8CJ z64hbz50>4?5pjD#(ZX#I2*abdgH&iixs(E%Ioyb7Z2r`nS<_2^Uf|DoO9e$;MO;e- zY{J-@<}M-h1X`B>(T2hgbNQ6D3EJZO72SpFLz-Up=iPGp?dZ>`sob-)F4E6ZT3nO{ zj;%Y}n)HDhN@Er;0KgI)ktUF4HGmfuuRh&i*z14Z@t9aw4X||-eBxPfWv~fCmJeuR zn9*a>I&{RMAQ}b_LNKdx{4K{~>$FrS{xb6=J_8g&jE<(?r>wLZ`ni6|TLao6*3$Q!p^c7SNxtaXD3!mhcLuo-B% zV4-1;cxccXtN#GlXF$E}ABeC~FFfZ>F#v{vQ3qJJNQRk;HSxJ;(69GAMy424Y~+JM z$0mQgp{q;7pT2(agiY5PK2ohRb>q@v2FQ`gD&`{zDjdof)Rh!96t=PU+90BCm>&Dg z0i7ZiEM=LGVc^%+WwTx-26xj&BvFd<$@Yy)Sd!AaLSxwh=Jri=Y;mP)0(nJHyB5OM zp!x3&Bjo=8RBwL~CfH*-A!$ra40eHG>+2L3N7^oKToIIbk!g?C0cxJPBARZuU(5oE za4+9j8(`!=CHu-m*laq-=p~xf$L?TMS%Yj;0A-78bJ7Eg8{0@RHQ&5IZs9xL(aRIc zD^QM>srH6Jj@L^176l;ylY;;Nl#mJ%7MBTHvsBUUX!pa`T?L09)<;;c-}ei(aBOS( z_l(XG&fWp3WYdTejLUMX`_dVKU)<|0cXFRb{?df#wt40YL<4S-3t9#yA>1Emuc~N8 z*)7~9t6O{=4v|;HYG7OmqtI;i(dne7j-7Rgrm#&DR0CM02AGY~5BH=va(U(g+=jCV zRnGBTl~3QorY0q^mEfsFOkyB2n0T=IG2mHl(yv)Z{YLc== zl2~&%e*iQ+ojqzj7L#Pr{7SV(J^dgI zk`nl%Qc8?C~*;`V~{dci)sf`i%=td74hoEdP-Tb%7Pn{sLTnio9a z`Rv7Iql!Lb7Hex?oXb@UpkVgUKk_VAukdh1bilktxFY2HN{bbdS$tF}Y!V57c!O6q zj8*`V;6vq50Hqy1BHbg&`$LW-bYp5tV7d`}p$#oBY(RDgo@Tz1h&4m+P#~Mfik@>c z(_BTg073$_V+S?THg2nazptYLebJ01IF(MUpw}?e%y7dtZe}D>?B}mC)3~3Q1GbP3 z@rp@tn*s&PZ%sX6MgqG^tL+eFq5;z^LM!5)*I~3NY??FCrlq_ba$ zC-V7~51aMla0LOjx@*oWru^Z|fplUWqrxoP=(%V4n8k&`o5o=aVPqO{;b!vY(bE)2 zOdue3AnqmI>I!rvOZAB$(Z{Fnq%G4aNs1I7rpl;Ag|X@Ey-Q=JBKW^ocX4J4ZwL z9tae*7Ny59)hzQ-gzf1H3R4i(<}D&*foOZhKeI3jwb1*dGmLi}O$Jej;P#B=iCHfkClK2fZMM@AUD zlJ{sp3zE*{NFfa5gkT9{G$0|QvuJ@s5cG9n>UHK{HLXq0k_m1T4|&v{zYw&5s&N2L zNI<7heDq~NYrIf5Dz<3n!s+_zRM9r^ul|~)LIZh+u;Iz?DvGavg9g7Z^@q~qxL(aZ zj%E<2a;6TYF5ASiXVwtOo{!=ks;kK2Wl=@71_qTYZS(!KzVIgNRLVNgHHU%AvgJhdraz z^u>*O#Pkn%2a0S^SDZZnvOrD0hN#%~l;SS7H+!MhBs5vjnvbG`+MwNAj#$ePHu7r% zZEWQHk!DRJDir+2RF9ls3tq!seIXEj=U$MdE9o=o5XDDWVHsghrB2YTUEwX79A8at zAqhhqX~#$8b`a6ha{pGTo>&8%7eu~GU*=ipcEzF;yVMr zix~Mcv%J1zTbK`DhAJ(aCg;pD<5ZVd2PkRty8%^;#wAcKi=;=wu)Tea^J)K~#V zJ3+$A79mJsMz994Ez+R_aD*@w73jK&me4U3ha!P*8v2B|mN1$6SZo*6mpfU^Q~@25 z$xyVLj_w?uPB@rnJkK`gnJgA$U~GV>x#B1n7A4iy(^hz_U~>-;gaCjMx|oQl(Jz)+ zq}q{C(Gj&+SG<(ZTum>{ExP$;*OJ)l%9@P^AiAP%1^L?TgW=5rLdcY~gmoMy; zk0ewb9rp8vurX%-Q!EQ;x_a;ThuG(Hc$chBWid<*Kq!rGzmpWTX5;;cZdu|vrFTN{ z-2BYI5v?dko5Y}i)|@>VtUvY|?|k}rjXpMbJ7uLTv<&FN2q6*pe<0>p1yGrgs2UW^n!hAl`Mcf8>152;!)lJ zEGi9eXx8JTZ8I#!f=%()dAj9cW+0&nHyv@%jNlMo6U$F1a<;S@Jvu!Y1BaQR)a&yuDxx5Tt>qrrtt+fisU0F; zfGQAW)FRAVVTi7&_l6>0f7i^VAPljDb^Fce#nhqBlNx20LT(TYw~P~*rt>{kb)Q&b zjUtAzd(WBL_uRNO`2uievHV}PST!FiIIASO6} zuCWT73;ydar4EPX>lhnmChhr&O?V`>QoxijhQYs(iU^= z23`inpV^2C*2eMn@_-7U4u4-wz71bm*3ky6;_wRflIUFF1L?*jI{xTg5!$R<8!kR6$GsF=0^?7O;R+2&XK^w8?n$RwXDAi zs7o^NGLnf={{Y}6O8)?mW+f2jYYa<+aalyu25$m|%7EJvmn>7Py6XmS9B%3+iYHhu z5qBZ0UF^*8S<^ELl$(F-Ovu~_?j*CkP)@fQGXZf? zQEt+mG>(@9gjuPoGXtbY9pH-ehQ06kh!SHY8qy7kP4f*nfMwnqeF{el4_L0Pc86}Q z<;&s?A>f%~4H~gXTfuZ-!&sy@kVY8MmJcKU0Fm>VU{11u1G}sxr10tG7`BnRXhI+k zg8>RXAk1pzfIGociO|AAE;AIxX)(y-a_U{>c&Hd$IE6!n_spTu8Y2>ir-D%Q5)*3R zql>r%faY^WGA<0Gs%Zp*gQ=1QEp>o&Uhy3Ois=DZTC4zvBLoHSez7vRg`x9iQCLrE zH4P=)!HDYh6DinYibM5vpFJQ|+DyIOUpK;oEa^hZ7fId`Y2GfaAn_WzxHXtqfR&B@ zrZlSb`U@5-hk(&8jeJ0Kfg@ycfdLQ|h&iKzAq%A==K#f1G;nVjoxE>(6;aw5=>*Gs z;yTrDz4n2-05y-K)>>Vz1!bsE7R3}aanqRPIyv{uK+r8BYpZ+57uW9+F_fv9a=+j| z<8(!_Lxu<-cY`%@zua3WGZeL4AjFKha^D5Z!5Fzqtf7OVcSAvQDr*F2%>k6_2BLeD zTHAkd18zi~2O9C$PecZl;g*T2l5wPe%@k^#H|5GceN3ahb~(23RhH}u=iQUj!Y zR#42)=3|6rNN)7`BVvSiK4r`l@e&mSu5uBgg-(eERlTDeuV_V%yAfT7ne#FmyHoaJ zS4(ahcOun{bQcg9j$@=ukdSea_J*Rt9V_6B8N}BitV9NI)XjH>TCzPr-moiJ8%H&R zpt4>r&!kxfIWj|qLb=bRL9ezH(n((6pD_w=jYJ8KA2K6Fb=%fD48?lNTT+mU!z<`B z^f^JP?m`sV*+QVT}+j1c6Td zc8O%EQBz(Ajgb)_OZ7T`$V*&AQY#LzCDW1`;}BgRSludwEyPBT_?71@;tUzQv#dIR zAi)xA;g1zAD{w?m#PHH2df}7{tiwp^_kdwz3L-~;ozK(>N$BB|bRe7?eKJvB!h8jI03GET>C(wv<9m5_{ja#ipz{}ERr8mJn zBbpwG`92~lv^O$GPGaK)K)SM=O=x5xuYfZstB50bMo?*OK~{H#8fpFg#Iuu`vDOAE z%mqwLbSf#=!n5?Vft!>lNPGi&@1C)MG_^tTGtje>;$snfIAQ^6D?Utf(T!Rj>-dF4 zl+z-+7gyD{tWv7l>bY1z?h%BvLL-L|UIFCCwvg7){rw_uT4LQxt~K<4bC=#ESa&p? z4VbbNddmz(<5I~+;=?{>j1I!tSW}))#C!|eQ=<^U(goQSaTr_K_L&|5k>c$ zTiRS0mMlbAQa(+Qs!Ez)6Rro@@D)sJoWqI^@OndAp?t@=zkPbg$$P^!{p|$S$X54x z&c41x(SYZFSgp(^4NDI_k8@A75qE&R)5kG0Sd^|Of_QHgGb`)g{8GQ%t?nVTy02K` z3vgShQN5yHoU-JmtCOEtD8MS)ypKKNR10)&2bpbVP=&J;5+_(TkJiM39b#akOuqn) zAW?K+I>0)3DRFr4xrni52#j7HBM1p z8?yM<<|^=Xa(c_hAl%F-q9ZjWsFw<&EV-N#oOx#751Z=|YVlfvy#066GyaW{rgNCifxy3ePHMB%mTsb0D0&7_>?o7)cqP#8P zv=@YdXw4A^U43F&4-THc`4$HUC(KD`9*Oe{pf#}1%ns7;pURMRsn;LGptgOTy7k&F zqTO$JP67ys0c}bF7d7b_A|=#t$|K;d33mWRyW+7GC>wf33TZchxPa*Z-GJ1Xi_B`4 zMKo#w$xkMpaL62TWQ~`r6ke|zo%e`dVQsh(NNGZc^D*f!jm8;Z(`KdQ0Dik(#J0=)w9c=0c49m2woGkwtv zWYRY+E2;4l&BqQR)E~JJRa2>de8noMBaJ>iWHtYcDA9hU$bG?|E0y7nPLq13x$1(o*no0L=_2y5*Y#?|9+ zs3NZO6bQn{Cm|dugNTfUbYY!fsOzd#QyE%_;HHJetbr}jukIogVdVITMA^o19byb1 zt`JHjX;9%eAOc`PJW7NkEB59MFsv9SrJIbPI$QxNV1O}<=4@phZUNc_uO>Avp>Q-I zbWAZuCr(HqkdV8ecI(lIGQ~2ktN@jZiWrLf%m*~_5Z+#KG>gn;!flB}GzEFbeJcFI zv&KE;%l<@HD-3n=nXSpRLr6X1o5nYc(-W`G&u9Tqr)D~{4&tSaC_n7k2DRLxG{s7gdW-{j-o%25E~T`j7V0n< zp{yEYEMiO?N4SgFUua#*X1vT8(YZ>SGO(Lm<{GfX7d3YxSBrLygJTKG6hVh^9#E;Wn74;V~;aH7|c3@RO)Pqtk zM*i^R1>wY{6jRjrft3;D{YLJd#PoL)lp~hc6=7F)b1U7P@Yp$|Jn=44 z^FbB1(5fZXGvS^z_lQGTU>2s3FCh4V9~4R;0h%r?*=Vsb^sG<^GN4bTee{5;A>Y_- zW>lAkecC069lkCy0MJo(bB`&lW6j5&uSOFsiMWrL(s)$CVbMbn0c(*MJ5X_=(+e3Y z;Rr-|l|TlL^<(Y!l||9hPmf7oKxNCCAi)R&ST~4w-XP9?^4;o$Kv+QOinS z+hWwPSH8@@91pWIw0~XxB9!F%LfAJjm#)_N`GDH7go-q;NJ;|!Mv^poLip(Ti;!w0T+8XIY8aiRM|+ z_KjlS(^T*ofVXm-!E)CTMq8P?^wc!@=sgAHRv zG{yBHTr@o;+XZtS3gTvq+U2r&sA3C9F-q83df_^JM=3Go8aH`^i0g+ZycPlNWBuhE z)sHJZz9H5xoqgiew&lmN5&BsRqBBw-5W)uuLoxLaq_6N4)zi*cuzKkFkP_5-m+yuV zP<-#%r`{+<2dRhBX}fx#n3AA&E*$2_*ODx@e)Ci+E!>ch<@tgGFJ9!nM7J(u)e6^o zlrn~s(2Wt=3v7Th0fS{hQcVv5sjN)K;55zZm3bFlqZDcfVF#f^*R!x5>dKTMyZan_ zK)?flquK}t2Ei=8a{!_T03T?8DP`#fo|9p^^&_g}+4+drvu6*ZQHn}}o5UuDxtXq5 zp`AXW-?X02<_<1r<6pO^CCa;LFFit{JV1^AU8n%X$1Z)e}N_@0}wMUITBf9=mK39lI zR`$!{4=BOL7JjuG%Z&iS8&a&Dte9NY=WLniSg$43q z^Vx<0*n0X+MKr*2JmH9`Ssh2b%?mj)expNcyjH%@6-Y6G9y8m~>GA=rS@ zX#!p~gYxM|%k;&u#J1c&c~DG5E6&Grxe+OBPVnNmA8BzFJZSecg8~!01n??w(-35* zlSjFb$*I|wWFHE+mEm&cf52FQ8k@z$Pi^AC#*r2Y zMWB~V>okuJulOy6U>m^{2JP2OWI-aAVX=Mv`TLUKSrD@Xmm8eIyVnZ-*Uj^zBS~UftF)dH1AMpVK2nYoVy2X?%=@Tl^gD&C% z#LqBwnN-XhHTIY}`N7f%E-RRqP#H^%C@N}3&@NWB7Hdca#2{~&8K^b%gHn#9M5$j; zVnr?Q7A6tzjXzToO>$}R4PYEUVaepi&Arv0YbTY!$raQvJB%CfDeQt!6{YD4z(wJ* zyZz0)9QX(tmdiB!T-YnVBN_+10Z`V8)ni`AnW*ni%{Pt<~ z{=|K)_Be_mp>P&KP%@jmVo>V>o|M9|z9Afw+>YmMW}-BQy9uebzb9|BAmLPMHJE9P zD;Ju9X5znSl|J#MtQm%7EE@DZSx*8>4NHPj+X40Cvt(pN?XgozveQHT`nt38=QMgMP}AtLhH^d zr3UW3i~GWYj_bcVPt4aE;Tfz)7F^jGib$tOE?_ha4+afkIuR-~%6nD3p>&PO!53!| z=_0nKTp%0T7WOy|ssT~WL;x48$t;(^b*50JQnA+`m^@$}gv6k4N1Y;;R8?QUjls== z>xc`6Gf;`s5yuV0wLjto5JCbZ5ekuobyA5eEW}t%MiHZ3=3cJQ{3;gA9WikS5Gjpe zg|N2SjZHv;S}Ct-TZzQ6N}S@mu3|?pW}iRsq9j?9={%4XqGDWAH-&b zu<3=sSl?=~j>t<)ATe)PtQu|nKx)GIjVQWHvf6;=;(=odP^~|R6g!ImM>&@ZHI(Sl z5bGBXuw7^=`H67vC`J-fL?YH@kr~HR$|G7M>O=v7t(waLOB%7W))29>6@{Rpj`8 z_=YNAG~vVZ4y8{Ho=hU3r`lKAsko@KUC6X^6(OT|$l05^dPadjX~m3q^-wLbXS``C zmMy8>ikQ2FTdAyR{1MT3iYnYyouZkhn6O`5%UB!|(72GRX2GJYEm| zQGW5lhpR?t7qXb81-m$X7!{`bO;mt#Mo7KMP>c(tLWa>HP6(E)F}@>pO3@c=`RlZB z0ZngH(RQhbmz(2S#nUdVPM;CQ^@`sCEE<-|te&O%)G#SS_?9V#qBd7)XPd4cvJhq8 z=y?gWxCV?1T*R*uuJNW(m)VGYSN;MGOCT`_ARS?J*gMp#ruBE1PiGJ=l^tz(R_n}6JW2peO5(R;q}3!%?h z(}Lar+5}`1NCxnsw^%*KA2FJXj-=7=SbU%*ZKuyi)+|Zr{^JT3XqW#0k;H0wIQ;(r zR0K6N;!xJNy>!+eQl*q3e8k=={bRPWlAiE(Q=~&o%idTayrfBanj5)QqZm}VhOwno zL4~9DB37C+2?gg95CyKAt>6K4?{h;_tZ)LH)oI!-vidmlCglevA4pA5E(9+~rN+r_ zrS&ktIvaf-hAN?n1Vb)M{_Oy3@RZwzQcEC@GSaT@lHPRwC1Ps0p-!@#RANvJQJLRG zfmZ;3aZ-Wor_43t`(N4zuwE9QMx{FeA!LCoq{#&lu=JT0&}oal(S}94<4q-UU?Ycn z{?`l+hMnuK{;^?G>iWY>b;L-6NIh;|gO*ix4@4PxxRW626vlw=`a^KIjd2m8Oo1ve z`UQd^(*Vpd40y#K=3jt<*pzhwUvn(67}W)O3p8{bpqTZYGJRY@f+@Pu?ExXYh^?d_ zw6X0OP0N6k1;HiVN|jrL6|*Nx#AOx4uUSrzI`xGZ0R|rM#MR7djSqj(7+}!%`ba~V zq-fu?2F9Fh%0-mLO=A@hb%VWP5seu`=ZhCp+67gyNr5;)mpN|d$L=bDo1+Qk6A3}i zv1w6j1$;_GV}faP>j8Fqz-V>pELnT%5vs#o<4Mm8B%e_TEk%(XqFPVO>^lN@R2~f4f66zi(g8@&Q zp#~INN5jcK$&fT6;v>QWTbnK#A_2;T9e7szzdjo zgb<;5fZ2<@YaOCGz|nU!rTf>kA~%ajbai4aB|TyaQt1J4K9g<(yfUTTfCdKV<{PJS zTZRS+rd-6c>kp~_0Dx~JXVM6UGFZbDBcK@vFxU?eNGuRjQ=3S%fiD`>E zM4@qa_wji_tJa$Jg1g0e!H5app7jt)Q-6z&PeK->nN59TH-p|Gd?=KCM0A}fqgaoC zhL9Ww<-|tV^=ht>h?F8A~=iuq|SBnz1(ArcH zc*F|T+9MRvfomx0N=iz_?FaXU?QQ!(I>kYA1U4{9L{7Q=#X0()BuqdrYJH-03p!Or zykUu1DpR}&pbmw;@QzESpNRF*;C^GJMZH<-W(c+&oS&$>U!xNy4unD`&{Jwhw5YTT zQ0Q($Lviq8(7u?C(e=!sO{RE=YD5Y#$1qz7aOys1<^l?Bogf#>XA#(l9nCD%?m;*U zithdDqOHv&P*oE2gUVlNpr1U#tO4ji@!Vo6+HDbRkE)k5>J^<7y_;s&V;o?iGdko9bAzMF0z+ z(=ER5(oz8y-~EgLSE(uDe93*Jw4}I-(xhKqEvS-|-;k9Q1vqlH!B!UZ z3U|J-0YDqxUs+I#=NS8QEnvQ|O;C4!H;fkPt~@PMckvc|pv#5`fVNf?!Mw=I9ihZZ zbky{e3({3%P%5x5Bpk+De8Ss!;QahciV6+C!HHUTg+VNg)jz$a07c_}NuIcsOffbm z3M});%^7@=_wXdvI@40%P4*xi>9yj=S&b86tgm&SB8hAqyu80M@RBw)1&ofrI>k3{ zxcQFAf>xlZl~#1a=>pKNQlC;Bs^2!hd_pV+_J#V^A&Mp9{twJ#Rj#Y7Mvjt(U}^w$ zjvCg?b5KsuSY<1$vzA|oECPX@;iLAY*5%j3*1QHB-b28re(Xx$G6Bq zVYt`#W+k2$-LUxZqqU~HnIo=1tT}Sl9inVOsUK3E8|ej7*=cA(4zl&9nXIx{+0$P# zI}dFQ*9lzjnSgTAOYDzXQh{Q6!W~%;2S`W$a0;5gNKpf0`j>%XC7LgBcY)luxUFdWXiO$F&O@t~xY8&!9zj@f=`WSEM$B9Z ztO(@LA=3h-T5;KkYFE^09X_zQ4T%VV(Ty$X#12+HF^Dw-Oz%@gfOmZ_ych~S3yB&< zz0})-SR#UFN)_{k7#}Y0(ir)bU|h$h0c_13 zqxMljw-p3t_=U(pOhM(SL0$g<&DbotLWDY!s0GTnIP#20;E{+|Qt}?K!RiwfQQ^nx z2(c1f{R{M5xG-SLh&XBkN+%9s85Pqc6gCc;!Zl0)8rNEV@WuxR+rR$GLMa@;-B`&I zm%7BNoAY6?6%iMhAvu&0L1>lYvdSWEhSiE;G=g@6bwH&B9D^xg9$iT4seCy{Ms+G;K%#ksP`M_H?Y~Epj*luYmDeoCxuvwUEHZ1NlFmF)s%UM?v zQfuPuv=M8gH^^R3h-%gVUoYxt1jQf^I!mVT>}lyWwskO`P7|^`L>`QqVbSNQym}_g zu1x8CY?6+vt7GT1sX<%oNA}TJNiypW!WXYa?=4!Fti)X{!@^?aE%`#Qf*D{+u*)+O zo0f%)u+uG}Her@fwsuSVvDh^c^C1(UA8C?kR5gq1#1Mi_OpkfeWH#$sknx}%_i2DI+mWaBbU0;+d zr8&K8%NmeNV^&qb2Y=UH2CHR*YfX4<57%3954Ptf7 zG_-ohNa6HhOocOEitR1J{?SxYxXHxrCH9Q{2)QSZwfMj=w_E-%z^5Kk3K%D?dTzERaH= z%fuNnN*kJBUEHj5MmfB*4v-56xIcI^S7O(qr?e|tdxP#&(HnGM$@zz1L;Gu*gYt`1 z+1?k*;wDRottsXzB8eMEOUF7g%vomXv`AX8;v#B&2849+x5DHu0$HXxX0k|TiVs*a z%Z+HSNCgX?ZIu8t^fuzyn*)7Zc?2s!`CqP9>IB#2kXb^p?yFYv}@}xBPOcE^z)OLYg6DK!{ac9`Q+h zwHz3l)|P7p0Yp?lno}8Ex~4>MoiC&)WQLE9kTuY7iZ$Ey3I&C#b@kpT*TVc0GNnu) z!N+OSF2q#~HxTapLaSNUzHsORb2-crWRGZuwqT0f4c1w~1)HPnfeF#{edSBYKCoG6 z7Q|2@-WqWnp$7|3thSb@9PuAqr>wP zEZ3|>S|-_V(s8#LPax~eQecN5L2b#C9 z#G#`|SgOM^;?kE;^)UNX8zv6DB{n&98i@S+K_u|6!$cf-S>Uwmf;lCcKCl@~LloX> zwt^NhNBgk)Fa3$D#6dBn!Yue0vj`}7jZkocxt9#G_pDnpb%P2Sr!P6MN!nh!PZJwo zMmu2W&2=AW8A+Iyq|6z0irCVkg4j9j_K2;C?*x@y2Mk^b9VPLHAlI!!^-M!gpun2G zObZ93%Zz#q7~6Na&C2wSTUq8cZVrUj1UfLVDdvG>4u{Otx6k5T<dszUj|=752W=#dZK%6O8OTN zt1h$g5Cxv2<}E=xgh$q@RHk|()cBMI4QaFJ#2LhCU@p@bE7w_ubG;od37WD~Va^zk zv3iihfmQv6=C?E#rjB`+b(Xe(Y2%2z5Jz|eyb9}nkPblm%ZL~lq$^Ibopgnp#kpXG z>c<*x584QzjMg2N*s5qT)S4;fm^qu3n62uI^n^j&s8d*Ph;CYDO(L+YgJ(R=*pJe{(g~0EvFZWWcj1<6GH=X4ZOJ470t#|1dll#Y)*m?h2#A*;UAB&o!DHk2sG zr5zu>7;9D-iM$l1D=Bo;;KHv8gW`mwR?NeRj-;nXWe76>7%COR66A=I{{YtfG$p_- zZ~p)Q4P9fI&d*<%hCDSFFc=6^AEQVy@B=B04-PO6vqrGIDWet45fZ|kp!H|Ie()H( z%9%?e*_a+K<OYbYBH3yi^PU=^@9>(v6;4cH#0bnOdqLa!GhC{s8nxat!3s;rE z3P!r)+8_X+(xvus5JR}YL~}t1pxP?hOC0M66G#|L#;@odP`rb*_oerSW4>GYiP_%A z?l9UQI0NnU-YQWvv2ZtKnS>tr^o!uC)Wl*qRmQ^%!%tjG6eoP1P}qv5xHHx+3QBrY zqC7qfcaWC#lv^7o9Z5z^My@!OGO(N_F%^g$n64_IHQ|a8q(Ds2-w0AwF9U?$=Y9li|%p$-IFT6%fQ~5@tr_oV{ zM+wf5gW@!t#;wk6?5qpAgE|-2fVu6Ks)9vlGoQpHn855O2ro@wmoAgRVT^G z_mqIt&z{f=&>vD^)4&y?G%Am;r_7|5x~Z4H#*&po?d7@Tou!ILi^=o%h~h@_GSzOL z(M1itCPVjTLeC}~tw&MO$?pn*9=b%7HjZ7(x!Et~TCSGhCT`3?I-ZBn)>px{qCg_|SS`G(ApJeM)|cbhd$QBYS+ zlT1{#Wu2hvt?pbx4E7Q-6h+zADUzN{Lsef{OB-fGQL07Lw^m#|Um5YT2_Th?V> zaQ-G2wvx+(T;esg#2Ks*%)`sz)rnER@K)E3KX3-)#g$MX3vWIR8mqX85b8^-3E9!? z{vd9P+h0w6qIS_c#!f1w-0F3P001q~FSaqg`9Up@oUgcPkBobyL|xpFMAS=frFp?f zqCnaOYj~Ryi3-x_Z743W3`HpGHJ5M)%HrUZ7;41@MzFX*7*w4C{PPl)RK#a+^~?*2 z^i)f$;vpYs^K0`Mpgd~%*Y08#2H|J6eWmwYDR%OOHrGjE%mvK2gC!cfhBD)Y9TD}0 zsib38#1V12Yh8tT;hT@DqSmCpG^g4QrVDJ_ymA*8%zO?MiMO+b*yEQXh#UXZhRDZ=h8)*eKg$a0qX)zLcCJwPj z`PO2?NNN7T7zbB1!MCrCwBtAJUzkR$xO>HNSrFL4?QuOuX{^5i0wCbvWhEdZnO+n} zSgg5!Rm+x^@shDf9S!fFyxGsQ6`*!(g1GyYD_S1RKnae}7Lf$miYqKSo9&pE&qM1K z6s^gB-jShWvCpIypU?LS;8##(EuQTCi2zcEO?_KqD_dbgyG2&r=A0Iw6_hhCK-MA- zx2zBlUGa$RwrUY}!S|@7@`ZD}3o|fKvrrVy(ASs7^A_mkQ5?a@>jGltVkYwa5X6=${G)NS!PFne zfb#~Z%oWlyuK7gDE7w1G1r!|!6JrEWJ;;@ccN$@sC$lVmlK40=(rA=9U^arhL#0BqR+rD5 zsp?;oq(z~KTX0s)L}prVqko?V5uyjU)Av0*4B@GbM-TRq8!~@?T(+{?!U{{!*@HCX zjHqnk{4jT=FhUPvD+&!w7QOVAR8-iC;H#)wdAN1B6`=J}XxY0K5YpUm?j_b)D$n&- zg~5nrq!AY1@v{c(U0h@XNmPHRToP~^Cp$_wTweP|I*Wa}d3^&XyB&{6PU z#%*1u)kqByh;1EUo&)p?!Y?YtCB*uV)D`sxK%~*#LZt-l7j}!`jBM_HNX3ZxkFymA zp3+-6>mYdab+)>ShL8OU9Z^~B;bc>-J$-E(L*dmE=2I>`)0i#%Ig)3bT zRt#VhPSMaE$Ov0262)-FY8Kn-_Bwr8+Ecs%1|r3+2Vci9BWnes2%F?8TRzg>GD_Xy zo2*bvmEc*!n865L%tuiR%@52`Uzvg5~_G?#%eNn*r3PoU<)W zf&T!=o~{1x5eByDXR`(jM!;{`%(+6HA^@Y*V_C!yF*LIDZYQ*%)l&V~v_v)t`gjCo zVVHejyZ+-1HhaLCL#(_i)*Wyy;4?RdMcKJSFUg2BE39`TWVE^9aSTd0wGTN1IZ^L# z;#8PT179r1&CAyR01*I5OXm!3XAVsqO8{|araqfc#YmdO(zm!20U1mLc_5-hax`7< z0oxHCY3r;Y$Oey2urGydq%EU++lupp?k7w9F{m!fkEn6{{J-YbsLw^2380fCvYKmwHS0+4Zd?JOh2G`1+m zTtWW;gsc8nTZjVXlvtR7tdM6hs^$7I3zfx@MyJ#f8;q5Ab`Ec(D7BGST3{%^81);| z=*S!rwFLvA;Ko(NxoppZ&O$G0iP?x~j7MmR^sm8xMR=9sKT(SoTu^E$q|uS*Hx&0E z5|h!HES?LiR^Y1GNaYqYWI#HGbq;^1Ny2#g@m62j&1mnj)3&m>ZIe27OtF zpxpt9SuP^2U|5dqOk}hVJW4RCUo$C-?kA})!G=U^Z=_*%0}5n}Vrysm<@8Z5EU^sX z7j}qTQ3hzsSv@fd*VYrw*GXX=pkecgq6Txk82z7^)d=+bFG+? zMO96moc%P!Npi%$NQskJP^~LFW*|%5$ILrgD{GD8wl?h%8e?cx1Kb+y?JZuGldGgV zHoEABaM|SNP39pSFf>k^co@c_nL32y^AfTY&GBpHJ-+aOqPf>?a<#8C<4^jt3^Mb%Haj9yx zrZfGR5R6P?hy{w5Da(A=WTDcfFczsVlOzg?!_3TzE1-4OSeQy+;1gNdb7x zHy9udxEwOMN@>kraW+S;e$gv00#hk2pD2YF<|pD*U5r5}-cXNBR)xgqQ4tvgreS9g zR8c^EU@pS@5Xt~M5fADF+XEV)`eF^9It)B&`WDQH<%8vIvjh)ke0%t*PxSm3p~i`E9*mHE^J})^I}MOGy&}cwk`}v7M@k zM>lS3h&W;81koTJC6NsxB5x^=(98vkZMYMz(0jmf6vU*mJW`XTii;(GrAqK7AVUai zESKSFa^jd5%50@X3(_)MGDbv8m}YD-Dqheqcp$nuLYhRsXiQE^D`!3z^4adL zLM=#Rh+Q#{6GRf4KVoW^BV>IU)c}2?4J4)zM;invLi!SB_L8orThD*2)h zbzVyR%~^rBM_Lojdig=LNy1-bfSEw#$FykBru#rk8#+RmoUwA1t92e^$d5A*!yURp z<#H+HdlowG$pLo(CgNaHAXrXEcRp}8|Z)uCOP9b4Z z8Dd(#vivBWhys*(DE;7h9%J|*7ezXi_P7CPvcQ&{*0mBe6Uq*24I)Y^0TL!9#`Ky8 zm*Om5lAKJ`T*Fce0^VMB%E~*;L~#P;9twW81d z7W^tyAZiL}mx5@CXc*-*dHh5lfsJy{q|=5$%&0|lq^XR@bi^3e3K+vVJuU#DKwiIA zMmmVzsPSC5u(CF7-lCm7;E_ngFi`5jK!|Q+fHWnI2r$TcTuSj*Hkautf>oQCcikI6 zTIq6t?mu~Ywwu~#)+==a=$HYbK8-Na{dQHj*gjxI5CjS;?j?|`3s{J$vFkZ)vu@$H zQ#}|~){G?w%+IMGbQ_xd%th$g{y-Zh$(uA;`Iz^qd9Mq&4+V_5NLAys zAX?CXDHBObyhywi7^&)vrQP+iZpD z-sT9eY<;4NiuHns-ZOTYg14y{O=Zh3W(p&`DyfiAPA2BLnR387EpaeQWJqS9rmb~~ z%&-@X>6igQr%B%s1Db@3f%R%&)%E`X*-Th2_8*Fg87c1m<3$sQ7VtemoWv$gCIIgK zVrS}o*yA0G_PAW?U%>`f59S5BXnsG!-|7%`nMm2RySz5#iY6mC2$rzs)*!$Fh$nL` zaM0}>11J`?3e9dbvvX7Tg$HPgXNV0vI-ZiCm#PhS(kk0+m(iymSW#a^UL%bq1bB5F zA-0HQF@0IC3|ADu!%MA+S-ewaQ-Ah1>vs`Iy;CA#{*m>Vdq(!_KJ zr|#kcvE@_qG6FrI9c5`i4m=Ea9#IK2fx8CPUCP}9$~8*Fd#6Z|yMi|5U{H9Jr-YQx z$i+*EO(Q{Y#}c_2DeA{)s??=BS?Izj=1~wuqpY*B5o`;3P7~&+iGu(#!4@OhkGm1d zb=%tI>VIFsQMDB4RiW14bT3*xh_(aOn2Qd@OB=hqCo1`{FE)|)mc2oZLgMDI_a)mj zij{5>fvA_|e~9vRA}%6*OHfX-fPrkvUD)UW>$&F%zWMHV`I!4{&d%oyGeSJfP~RpQ zaf_h*z?cFzlrX8CboPka+B$TGKo+yNRO`pYH3Ffv?pO3iy}WF0S9Uj*t^ z`LP8LM$bfug%O8Pc^P80O_mnXgT6F}f?l%m_rFDnEJoTWFBXv>_%vp$)tf?q({y}JS98gC3%oy3s496TxNV)!Ig?%EX(L(&7>7AuAxqdl= z0sXAHPJ{z@69s@Qr){7yT#>*yidB$SoIoI5Bq3x$3Z+D=csCfiWug~&aBnhh^p`OU ze31VD$ScIQ%eFJ6XI{V(UEkWd@%F8npqdEq98fWdTUBgsYUK(xz3M%*^c*h=6ZcZHKi) z7fC|8SWP2ooi&QOu}hRBzytfrRHc^=;pz{Gm_ap<;CfsZ3_&$xZPOe}j zMx+%Gdj8|rtDK%u3|-iY_(`4*ML!bB0k&_tLxWL}0=)F{Wqor9KGFD@=pUGuAavK0BC3`1}(K+e=@rQmqvw4 zkh(z?0Ck2=!8GsofT4i%=>4LgOCwU(aj&&_1k0HG64zKH%qyFyB9_h^$0;q-Pe|WT z-;)`vh6c!*BT45F3L>p+tGytocIxJ?wT;oMt-oR~quQsdn(Q&;>dCymVEbUkb%7*o20a>$7z-jlEv}=F-fh7ep;$$w(FI{B>*FGgoRDk~gO+RT<<^Bn38V!5b;#b{|<%NTn;DVm; z_x(dzSSLT?Y4oV(Q<|Q!G$vi4L@m<@si|Aqpi=?V)(b$x0k}6%T7d7Q#JE{QD0R7M znYS4mst5`{5Vu{f6;5HI^n*cCw^&xhNIO8bK?~0P4zUO@4OX{ztj-!VaZcg-`s^Te zPgt3g>PLW6+BY$9K+1XIE0jvwpR_;$C?y4N98?8{K}9@+`L*ZC4cr< zdV}o^BFn@r2se-1S}F^d>eM6vu5)+N6)lF>;_8iO~)$}F@TBV!A#yXINCJAUG@ zCvso`>VC5n7M&Qe%b40*t!&o^F>3_IoWX97NP<*ey389y&FJ|}+)M1_`%Dug*$0_V z*zn1So)?HB4U|Dalg@!!SKHEApm7+qD-(`3b&640&BW+Qi$Q%{!iZ88R~{6~f50v& zxBC#am_V;VgJ^YP8$YdnU{=0?e_|O(bSv(V&Y{(xX@y7C_>L$?dsnWI`&h=TUCdgy z+E<7Q(g%M6np~-hwjqji+c1O?{6jE_0MOYr`b>Es(IZ?%YbT^zW0`AZv300s(o*xP z#2OfgMNJu8wM*)<(#|4=4Pqfme|`d>iYzsPg|87+)IeE#8hXZ5G`01Jjo;+OUbRnR z1P$$d zOG*4 ztJr|s9@55b76_NYH-Q+pNW~WRnx(Gr(r}C2Hi8RkdrP5iIo1S6ll04CvikjXSz_P& z18Sit-$IX8D1aVo?-JwKHS9z#=T;wf{iZ{t1$wkiV*Oe@0Q=47@|OGD9)KMH`+uIg z9&@c^11WqY3A8F*(-85x4XOtlM+L@W&2)jtv_WCW>k_kW%y#OL65P~V!GM=iuKv=c z(ZxqNL9U7O7S27Nnu1L@%~u_x0Mc5nyy8_i6@K;LN;ImM(4)@oSOpNi^8^tt-W}I(-Up01kw?r>qln zKl8wf%~khfjl6^=zuGNpLaH4MXOUh&%(%|6KPh>RXf0HvxQ}` zLW;G0_3FgKp@C?6zkf&*fPfkvIw0n82th=m z=2YbZ`I#+26OlXymPZ1Eda+FdsZBodUWFPNzdgSa!qPUouJA1sIl}}~y+-CV2=x>7 z4MaU9@;Hk#Z=?Z{eBn+6096DwPJ~eb87`8f;?K;|8jtp6jkt!@fV4rXwRm*9ekkLwbJj{g4N|aCQn(8 z*H{FOCRlA8fgdtHmr8mvg3w8aNS0IuH7e?wZ)i^FnmXC8Ov);y@2NEaz+QBW0?orM zqq_~2uMqeP@0n4-Qp7`e#P=SWF)F)$PS}>&#l>-~vkuR*`}_X@fLy`Vi+}8w3D|^E z*A)3N3Mdd;cC3}sDSB04z|#j2Z8$o9=17r?OHc)l!157eR#e zmLz&3_JVA{R01kBUWLBALWV50BIx3@E6xHQo`a^mF||rBPyPP@B2y3mE$l^XKRvS= z%S9FaP+R*TinjTJ<@15ifHwLVvf?5<))Lrs%d9XrWhgMH!Ul;z*#@_c>jK6pv~?!a zZxrx8u+p$K`HN-?B}%H)V2o6$f`kB$cZ_MQMiRwYub(G>DE|8{`Fbx@;__)}P+b8| z`#%omkYx+$hy@C}jCRy;IGGJEQzx{%qE?UqIJa`)k9F7Y3zZL1JyDk8?>FWsIZ)Pbn5e|h$RitF0C<9TeSBf^)+|)$YTj0Xds$8{biqx*~E|;XB0^8Nh5x_MQ zVs1pLbo>}8Dist6)Fz{Hu+pc@&$!2P&a@A65wq2Av>hO~c5CecTb3hj>(^7tRRLL7 zO^)&VKzSO3Q6g12&ws=lNly1G4H1RX))sO^s6{IL2C3uOYQKCEMv%3?oD=h)0Q1#ilXF$DsupQnUkZ1CPHfV|yTjH&IoKue8J~ zEe&Zu3>*T7HXU$T@7^+~3!FEviQ=tJBfpKy`pEb`7as&6Ebjv`BC?OhYVkJ6j7`t{lUoh4o4OvnJm!5|{4M4I2lC$)y=mMP*jSI%%tZJ~P`dmjb zk!8tfJA>v^rU(I!33&ee!W#yqEg|m!DMz_;RoBKo(YHroAG{)}?pN9l;+^1DmPCx$ zuvzv008wlP`dk8lFG2@Xo|s@-v3(o$f`u0~onhJzrAh~^T|_*VEQr!}A({j)%l`ml zquK-2+q_&rrR5%g`@(`3bSUyI`~5aH3YMjPh4?0duT^c>zq~@_$4i&5wJrit8ldOm zBS5pRViN?d|e_-3`Iv^ruu2?q)%a^I^q-oG*3!STZs*}iEUOQ;kP4Z$hA z;f^J}Kdx9sCW;MpE@NuB&K&wmCP|z$(c+>!&aip~H7_jIDU#fO<|0%Fy+B=Re`_=z zbo1yODW%8V)8}u!9=Kbmjn9F$^$4(MQ!x6Ql;GD_7Xn z@`GCLK`H77ZmhphIt>o|z6vE0h$#R%z#s-?2qYH7K?VR~8_Ezt?@ZMPkbR+`MevW! zKuljTJ;oyydxz~%7puuW%QaKc@(FI^(fcr6d!z9RR6cV0%b<^ZsHQu-A9uIR z>;1l9o4vkfFOd`2`H~wC^UdgAc!ty<>TRW63w9C6?6=~gvcST z3!}|+?XNX2647G2OJKQ%5M;e#6C#tC9bzm8+9)EAdx6jxR_T1EL^qw~kOWJqXwZ}s zLiUFECG80aDa|LR{!CQnQWIuedLM6~E?L?e1RMlY3b1m~Ox*R$qK#1Up)ZQ$Sd5F@lL=DBiW0 zW%4h+e?LvjCUhXPIVIr)3vQ9JIy>)(DL}8{Cb?LOq)i?@Vi1ZO>eo^Rr3Q^%dBO!6 z6HzLBHN=Q;TzWdh5dyv9+HT0S8$zI4nHbtu)vLKIW%cxo%+Yd%ri=wr!Y~8750*WW ziaW+*;sMJNf_5$QT^*03U)6Vh!xf8ma0g?5SXNrv&J4W&05FY(CVc+@5uN}#W9C?D z-iPJj_jZU}R=WpdgJ?cdS4)bkR`NMM^02YHg2Woa7%ChOPw#0=&yBgANmlSsWK!gZ z0u@-7XiU^MA-f=$S~k!@G#3zlL7Xj6y_|( zJi=0>FSKq(Y3i81h=?(H!RZO!Qz39|V=Pi9au@0U0Fva^kbnW!{i8FzSHxnX-<3xe zWMgpZW>U3Z-g8V*d8&iZjJI?`i%C_a_LUig8dt6*djNFL=4y)cj(b(wQGk4t^DBLZ zTv8`;;Pr>O`hegEqyGS~7QI;Q(i}bm-GPWVYyicomO%+#(!!2nifFMBFlAyJB|&J8 zRsR5mcwHJikh)ba{P~4IHOXh3#*FM>m_Bg~5Y`)O&XV38k(CNwwjVHBFEjTNevF~3 z?9C{-k)k?M`_)RyE}*YKXzFQZh!_5T3bblC)4?=q~>S1-d1b~HzUi>(Yb)2^K~hG;z( zUXg=JG%Mz2(&kyKHVg)gH|dC5N_)!Nw7XPbQrH7jJcb$?tQGmkytJV@Z`z{5l=W6A zjUI01k*}Zqg$*;1El&Rc9nTJ6gB7H#UeUnhtCd!&$flYwSB4hkTW;MWi+Lpjc=m~HK3Qf$ z7aHvxR3@?4_YJ3rVkXrPwBZCMjp`z*)hDDL0X-Na^c)BzO2jlDJp;Q0jUHg^Z{3Gq zaj&TmLt(}lI^OYoi@kk_DNl?0zyhpob#AkJ^^Fc@qGa-i01<;afz}}!X+aboYfJZ+ zgZfdS0?okPDcO|l${WQIja5s9jZ~=;<^KSL(hDf=2X_anGu~zMM7NzA9D1KH%CY4a z_FuGDM{TdIy@EMma;x|HsPe}OeUe(NbX7gq#5@5IL=+qxAQG1cn05FH!CXMr3w9;l z#$9xSN+MmX6(XCtguXK{YdX*_5$6k|`^$Dc!coM6F%eXbvlO zfV=aK!RZ*4m_V%%MWT8I^ZtEJqi zg-Xf{K#ZrB{{SCpgPmaM%}b*6Uka5HGBW0*rxM7bL}kVgh@in36L>A*ZWbt@X11@q zFacaL)Qkn@D5O47nkBymV=6IpQa$yFOXFWrdR(=!UIB|O5bBX^H;Wh0lnmaLo_b;k zYKluhwgYrNtTRbG;HBHqFWwynfU$aX)&S5NB7MeEP=F9HsgUZy0yxs|YiXTou;~>u zrl{M2iovrM)#j)RU$eje$m+3 z_Hsm$OtDh%jIIh5PR@TZP@12K)FAkkDhXF;M_U)^(gRi(rDx(%g=JgKoK$qj1Rje7 zxdteriz!l!B)1Vtp$!l3W;X)r7hf}Ipjx!E64}VtD|OMwT_#{PSyf-gu(^IVmxA!E z2Fr0R#1{}vr5ceU303|y%R#VRK^Wlj0aAv=V|BY;00WdXYTKvN10(#sM7^E-u#+wL9%7+P1ZX zL$pf7V<`(EPdT_1#kKc>7H$@X9{BM@wu6`P%mG;Py1xg}a{O#mTty%TmoFqI4Sl67 zp5zl*gEwE`D@jp;+z}ngUsuvD0Z1UF#3^@}49X0*5f;qCxwr}!3|6xw1uIw!w&4?~ z-9Q0^IE>dwcJKBUzAeO zwZB-oh}oEsmKzXGCJiOsBO8j1=#}`4Lx>Jpl*q(PjfcJ?jl1W;t6xEHp&G39AF=Zp zs+YuXD1a}bc~I5P$>QYsVsFw=9V&oZS! z0){r;Y2j96rc+genR7^Tm|pJRc!C03RQpD150qko=LKj$Su}EXbM#Rqd&WrEir|k< zb>-byC=QD{?CQ>>Q~nmqWwO`kxBdVHLYG&V!kbHb!gm7|9>gAzNR30#i{yPG^M{&C zIXvdU9m|erSe}Ua#5TF952RM1CVXw-Z-Ua$QJc*Ca7DR)U3ezrY_u$w7+n;a0`-N} zPFj4UaG{9eFrJn|$ZjdomBN*9!htL+CKa@5ga}cX4$&_#b0|d&d(JOS;>E&UnOJBP zsKsXf^829;Id3n-a@PL<$5Gli8ZHgNgGQ{UMhR0jeOQzYeW3-zk+MF7)7}8334FaW%8S{t>o0ZDe z;g*4Q7~)PPB-~|cFoHMgfV135(k1s`zgUDFQ9Mnfl4a05ns$YUIn|GuOw1@znaTTs%&O2<4sD*ARVTnZENXs->mS305vkNJx#EKck z`Zp+SQ&;5VfvRbv-UFR^LHomK0Bm6T2=o&j$y;i}re(777Mu>}PGFs4jIax%-YURT zuO4Ky2Txy?-OO~9MGS_C!@%@Rnjnn9+}!8n^OzCOFl!;``b!T&?aXTy^3_z!us5`) zP^%(u--sPC^dG!f0C^CqLtGIg0oZ{^x-i4(OuRKRI~S0`9pYrA$YeXRy>)_XaFCmP z;&&u-(X-i=MJ#k#+}GQ{BUEO=6*Yn2=w;@v6zQ3M=rs_wwE*O}0HBs#cl4A9;V;zr zxl}D%3QGqU=*jH=0M~Gr{tFrx_<};(ZQzBT6kI$==xBWQ*qza6JFP;1;6BqNGZ(;& zMh(6Qi`HajDX2bCU5LKX+gLj>TO=E_Luii7MA~QT1^AcXzZLkTsE`1a2`*XUz6+4$ zj-xdcB{Jy*fQ}&EFjFfl3zw1sLv#n?Q}A5|tJW=copjb1xhl@%kJ$|XL5t-5M9>2C zJ|*g^aiG#)ulT7ffo(tn$3$C#)KXSWrQvU?#R*tSq5fin3PU++t5+_>cMMDFg01Nn zbX*B&L%*Nq01HEsRszPHIDH{`S*M&>)S~Y2pvJM#n1N_66F{c1;G&BH=)w%cwyq&? z-Nmd>2*0~4(K@#LMG8~P<$;9Q)&pzWBwd({Xjq`VCOeg6G|x5bDQ1`WKQgD4*}V+4 zS-OJVV;RAutFo*c*Ix}_U<)@Jj!3P+1i~5=Eko!6kvN7}H`V|t1Z-|4-WpdB^=KBM zc!iosa?~AT0jbTvAPXVmF)*oscNNyH;Qiphbf~d6H$qR(x65Z z0HqVCG1HH1L>LpvA}t$v5(7e=5rRNj6uMFV=25cK2wL-%EH?7@j~yJ-u6x8#sBN^r zLixCahNR*k+P%J0e)CS)>)^V3IED`jKv6Eo@iPEAIqMIr9?TS>7Apyy`%D9*ur-!# z772OM3k&50Z!c?zyxIvwjblQS%MY{v076QY6Y5b+X&K$|?)?vdW9YbexeZj0M9LQM zDyB!v?6>%sl^byQ5$!8jA~}?dD(s8mD~VXROU$fd)^Eh4RzrRW)y3%;k4V}%h%%0$ zFWNDAB6*4(d^VKIexjjKsCc7LfvDHk4T)N?bzG)~2-It*ymaB|6r{#T00K6k;tP64 zG?cCoxk${oxoJdQlt>Pxj-}xf-0c()8Y~ZpgjgGXApx{(j6tv+7fE%TpL6_D;3Dx7 z-sKc!MO4W&29LZ}!>luI0HUx<_ka?)-r*>N2Rriw3VXu(OiJ4H5@4#=ef#1ts3UZr zX=cC-KQ|m&CKRFU_J>td*74RFrcvuHTE4TGUhD^A1A=KNg6ki2LO5xT8t>^cX}Du( z&*NwUKvPcF?@Nd&0{XdZV6B zCF2!Jr=E3)Y{?V=j^mhMvUDyL_}DXE>*7|!d7y$&ij~?Pml+Dyn~vN#MD}wCPP;)A zjcU1#7PKmP=MXM2RpU<*pwnc33<6w}C@cX$Yif=u)XP zSbziqE3Y-jXfs3$x^K?4e2I7~7Fd^ZtAbDm2hmU$^cp%VdjlV} zO?AT1`$VqSf;7*hKx+ZB1YZh+w5d|n5koBErTCTNRoVbu)9(PiZda=Y7fLUp%GJI8 zBUi9ro*{ns=A(+e5bu}bXPIMpR`QMD68poVRoWqRl$Lm|-&5gnh!&t|t-*~Nfhh>p ztV-7xHl?ZvRL$lJIfr^f2ej8yK`T)hA-6c0SkgN;TEk>0l-40lDx#{`tt&@eGYQ%R zP;U@L;>7K+_Ld5Iv{KwF&-ejk9Z>tt>paKo%PcTZWI3I@EGi45ydp%=wAIgASQh1ntq^DUOk%U$4Jti3>J6)#%Wy6LP+;$vht zI$iZ9nDH5v12AzKq0fao!-*HcgX)7BOKi`2ghJ+6Iq=IXbj+<91Lgq7OoLoEpJ}}0 zd+D8g{10G-teDSODu_N&kOWIiVZ(CGDz9FV$;CalCC1F!P6J#AI z`w+@!y0YD(Z^9F!hun?$lupTQd%{iYCooV*?WQiDU48HVi;IYB^pVo0>FJ0>5JL7; zv^y1VFVRcA>Y`eIjyhd8ey=*x7E}U*hS$|?kDg`jp&sd=U^#VYe65#HADAByT7wHY z_dtTjFkH4rWKQ=G()p6D6V!lof+Wb77XbS#vhL~jADA!rYLg=6e&IDb>F+Byi~F;4 z%6*x;+6I!b6EB5$51Oo}6V~WSoaY6&4_8^|T zhpn;nQ`Mhjg)Kb-{?|2dI#is}cTxD8GU&gk#8qyu%+-ssKQRpp&A+?{^dOB<>`Z!K z=ith(57GE$r7O_I7B5CU4|C4!=`grTAM1s63+(gT*0JQXrP8k zq*-mE+ZPLk#5zH5Fe0jjcw;v9WvN&4hDrn@dEZ7L#`+LS!a7+5)tJ*}e<_jlRA`ha z*HcKUrq(^hfY7Vk@d%BTvvGl-2TL{HFhZ|&g9WFXEa3NyC@Jo-64$LE*h+7)}z;G%<%Xb>XnIgN%yW~B!g4Z=0OW;D^%w_WqZ z(*<}Jir!uGzBG%WC}OJbYjy7`E2Ey${h1+pX)S11p>c#kO{J1dvbdP<3O;#1Kl6pOL5r!;iRv=Oqbx4Trw6STKmm#v@2ttV zkd%tAdIBm!u4=1IhkM#0H0$CxD!^&fzgU1CFW11C5Ys8=GzNLFS#-IUlV|K#<_%Sq zeh3u}0Y1bUgM9nJS;`-F1bTii%tR+D`T;pl?7+jc3_HP=FV+lrR(wNIRZ^wK{J|(v ztfa+(!cc3pEKv|qCRXh*0;K_T=^k@e03~9g4Y3KGVgYY8EN%_dx-kF+WehmlFsMN~ z#wi94XqDDiGP!tTbw;eOePdP`+&@t&qytK!^VX$Sz7;A_66-Zh+#kHr2l(P(KphJ3 zbnsz#jrNw7^DWE~yjIV&)&u1aa3gR|j3-=mi>iPEjO&6t8aUuHE{J!EZKq}g0cWEM zX-?ZyVJt90*6rv*nF&k7$8`8+J%K#SX16azL zbdf&Huqi3^?KG?ORJ=u9&{AAUWA&E~W_4w_osc+9ahZ!M+BDJ;q-moHtL-duN)q>W zl^M)M4&w;L(X-5e(~?wCv{lN^($~3}&{2C`KG4Ai4Xd1)#zs~uc-8C#7T)DP&`YRH zG#;=MrTNV;A1KD^n2?3kv-JxYI*98MY6?n*>7z$Kdz%6B8Da!YK*TH%H%J|&2$4XI z^tCSG1f?xeoItlMUI^z22Dh_6Yd_(ysF8M+2-6ch?Hx)Y+K~q_3QLy-lYX6`m*zN> zbf$G;MyUkebdM<=J0RM_I#DA?fpo+*8PI(qxO@P^l#PMXAX{BMBe#JArTVejUDfr8 znL|>u+y&<r%kWa^6c)>XyL9!Gr!i)yfoMWlc7>+V z5WCD_tHeYAvXcrXB@)F7in)drRe7(9%17yeyRtzvLS>d%_!_J40V4^Te`QDDXkVzYZdeOr~R=u@Rjm z#$Mc0FCOs+6mI}nupCFyu zO(pBnCTr?i+$h|gp^~9n5mwb=IAtlk4Pz18Sn`TnddH!NA-fi>*@|3+MC`%4mlA{y zh_5_HWU5ELCH+}IT9~hEI7ge=hA!v6=aY{LgIIN`q8Z0&iUY2E;V{z!STffbj$2Fg zVf49{>0IMJVPay*qLz$v=ul10FJ%~{G_t(#9p2Tn1PJz0_8GB zN^;AAaoNE`UHh>p7Z@sZcdU%&_~*5W;O7HLFl*dAK2lIaEX~ZGxw1Z8qXq z5jC3xDrl9SLKLwK>y2g`PruAHpL6?&Pz?(5jTpagh^~u$r5HA>mubaZI7+~qthn9- z2(>G1<=F$&`H6tn&+Q0@3_~+j!64 znAL<=)WoH;i0E}@zoz^$M~Lc8=Dq^$9WyA61QoV5j+E&ZVX`HE?5UhY7`lSFh+Soj z!SeuXn9hWFBjB4$Zw0WI9+$63K+E305MtIkzzk5r@=mlv106IZhl9;^b-aPC^%(l!!a&{xEz-a#fxN%$XjQm8KrtfIaTfuIHm62+6BOUeqqvpJ}O=qQ;4>+1F;Pj2bG9} zg}|ulKWOf1=;Se|bN7LSwA96?PQE$58(>&XcC*p?%{tycprQ%U{mPPJ>dm@$h1t5Ha^iy6=qkjq9Y;!ugr&87 zp>^po;m>Fe!gDAK=9+YidlI>U5iTo8SplNRk!f2>Np*3_o=nDxQ3}AWvi6JVn5{F; z54;MPb++Al1R@#%^&+%_31FomYWQ&t#)S3%0OUH<-PJX=5gTmucA5~hcJS6qod^SA zp9Ues9*j!K2F9^`C)y~r1J*7nZ;B;YEtHwUZ*lHj<~Cf!qF;gk04fF=O%S30>lM)u z4jrXw8}@rJO0Cu}9&+_taiBn$sY|FKrx!1_v0!AVmsF(c_d{W~I>kk%p3zm>CBj9v z-5{4)#9-<)0ae<9Bo-7OSS~Rwfir=FZVh4!b~)+xi~*6%pf{{TFGiyzt6%R(qbi+q z1*4ZCm#4%Xx`nTL_?yIG!~m#dcBpCA5%VmfX!_J4BP^|&;=a(5XfNJnO;Pu`o7_KW zfQ+m7Ci|6Oe59-sU)E(&8#wUKf{yW)tzt~k6cHKL3bX8l)mRIwJMelFr2=gzlzj?V zj)#C@my+cTL0CYoEAqk!7Q_arYot^ztZgrXUD*c^9#i&}D@gMkgUEe}MO-3Ouu-G{ zD1u;b1EoNXKR}%cRfr%4fF6@L06pS20E?7w;Pxe@CxcRJQ3+KIcqk=JS+GcnDt4|@H9?JK^HPh0Y(P|_Y>DkHuob)oUGB%- zx07+>^DFUl>ezaE%4Z8`0>6kiLJ6_y6l5dE1wp4Od&Qw;#5e-J z%moXqp#Z0NqeDQ~N9%SbDm+-(Na(^T0~H!syjxb08sRDSnEI(q>xSW_h8xl;lzKw< z0APyB%>|`lqEt|q$z6TpfSOCyH~AvZaLb{of(mwsMJv4Bq1cp$u%?*9cU|Q+#^4;R zM_?aGc6ASD>Jex|>tptUK$Y49h9DbT^2zOR5L(*NYvE;8CW)g2FcugPLs>%1q8zcJ z6^u1<$#6#6$Gmj=LA7k8t>UcW0=7hd66xONGP490XFk#Y0Ap3qhC@d`LZhr|EHOBY_64uZy(G}EzszxaZxs=&7PVK`Jz){B3L**(up6k|FGv+MTCbbh0`gO@{>;)2_Z$K% zdSAp0OaLN?)l^0ROp#2T;(^0azUuxHA$KeBEpT9O+=L;QKJzWmU#-VL%HDfRNmeO+ z2*o+Y#(S8SxFW>uDfNM_^RM_+sQp@^M2twXIv;6NO-yN|KyDFg^zHKip|op4g_Sp7 z#8d>Kg-2q_A>IM2wI88*Fl{VejIakWsI~|LKKm-*yMDMgL;yR*GYXddX00)S)kVJ3RV&P?EVw=U{ z+l0{BBePn#*4GR$=23|YZYWM4%s_-v(OS+pr`hHQgr&@_zHe#9z; zz6JP=cQw`VDgu_bsYyxg4pa@`SZ3}IB|eT}vdO`$Qh;Aq&6R~s@Ioz*20m_Iv~HC5jy&^C#q;!o|^6K)GF%vnaD4}bt6v6c( z*ga$BYC-BpUl&}Uhu$SCxP1u94HhL^jTfv?^sjhY4|pvQYR>z^)w*le05h6*mF*0z z)z&)0QJN9$2O_?>(09g_%ymSy&gzNf4p|f$ApUl#R0XXK{{T@4@C&VR+{CGJt_zHn zFhZ3$G?p(Q^TRJAYGG)2TJoG~!P|dmB^Dcfz3Ut4EsCLb2wgP`9B5WC3`?>wQL5%6 zLYV9qsT#m8D}gbXi%?v(yDd<(Sm+hj28_o#N|$jMA}|l)WCuLTM?GtQ_qaKRfaB;8 zL161LZUnniiA2>up0x{Y;Bw5%w7b$HMHLtd5Q6AE%go+H1rLVktg+4c1 z%cAM|pU-G9;NdTI6_%3ncMp%u2hZF{T&jHH?HhN~sBPg(X(U zVDsKpSO<6|H6OfDcKX7YSURo5X_AKG3T$9yD1Cpof{I4kI&~a&+3y~L;kCw{FGe<` zDtU6>#_%Ztt#%Cs+j=_15rj7e&{!QSXML&^GRmIhQSpD8p7~T^f|}W%-}pvbJW2T>P-0~ehJGj zb;JULBnFb=Ijvab^MjbQ9$zdrKedfsyVS8-%nAs$@lLOXVi7n1^Ry6BlXxJjC6d~d zO~hHWsCG=kYF3ztl;@nxEH$544>!j#7py(et())~Ix>N*RA5V>N+KJ^nCJT918Si& zDGPM+glWm%T~=!Sjs0bUh3guDO&k{0TwXM`3re8{Uz@EY5ja;k(|)lpVlv!JUIN#b z?GaoCnadt*yv8QM!K7p-NTRGWyRSo*ScE_uYV35YM;)R>q{ZvEpAM`5pxN}WF&!VM z{{R~L9|qgB)S8$K$SD#^wlw*Lf+97oC!pTZVioezL zJQHG)9X&+bfAK)t{AWMfz&Inz(-?*ult zci#_}TVXQ*Z&M$Z+ z4ICJR);N_T0_s6PtkO4#A*n1g?1CV$<;uwo!Eo>H~DA3Btw zR8G3{EU?xV3PndE;7gSu=7cSv@}eTZk0cI}dsP0o_la*)7UH{R;n>p}r`lWwlAC}| zVpQv~FtDp{e8U(5)6BQt;<6OMrg=BRyjELud!7j^LqU3W=?xGsZW<08YYWn<4Gd|` zOfbG#^(9QMyZXUy!8C|y-ch0yR10q5hmU)qKn*#dQ=o$o)u3H zQuh0R64an1h# zTv38oNIZ{7Jydp!mbr0o60FwT&BA)Xun#g<136o_{{SYqJrM=c+JH7&%G*Zkh=6NL zeB2!dv`fP8qh8UAT*`o?EV~VguRPo_5p=R8z?>TWpaTxEuw*x;@tlFH(&;M8qYk;+ zUmIzHlWNzYm>Jsvv_qMc8E#1E*%amt%Pz0L3`ErN+v~Y-d|7yzvu_F=f3&t4$YCzZSnIHYP%2W zh9gyV(23AvTYwEqyTqfbDP|rb*pOVH%34P95w4DU`^8zpOSl%>%q1$tK!Y_9n{Gdt z7D@_m0rHpd(e))V+QiJJS|vd_lvOqF0$~_dpv$0u!eaK9H;Qi>%)@XKF-tRu6CO|^ z630lEwhaoz(ne*43_x_TN2XygKrAlDg!79oqOU89r6+G{{Y-d$Q|t%4Lf4=J-q6qi z=B4@Ip zF0{q#6xt6{5P${85~CZA=!@PkAPsetm{KE<&gHVz4)M{uSm_B-6fnm?WG}vh(O|{0 zUTo7-n@Bk#&?@N?v}=me2`lZ$qh6$LK=y`-v#4(AEs<}UU}6d#N@)B_RZ)EA9a_=- zq5MxbJL!hLbw^m0w3y{C>E}6J-joCKm9|G(ti&2Z#vKRYgp{jn+h5Gcr~Cpb22!e` zIF#a7h@N7Mvr+Pi>al5$WHH8KpP`BuISPSlToD%k0K{9bvK|F4p=iDO#)X&Z3aPyG z_KdY|y=B&-WXvpBTo)8D%99(*F2!vr*=ux}bWO)F>IS`HolQDLrUZs?YC(-AW!w-$ zlMznRhRY4rmJquX#6hLc_VpZSwf^Y~KJ-O1pJV7-uc8T*yaP$U08X!o+;UXHy64eTl_%u%c{T|G22LvI%ik_ zHY2DwgbB}Qie&*CVWCAcvHt+Dv<-}u{{Ul%qXi5b=cEsSFs7~SA9fpIMtu9q5|3>m z>_lRC97{@14>WRt3k-?(j>EK6S1`6%VpUe}_<>C#i9qTr?Q`Z*n4-?I;k}8OP@DKE zUIvb^x=tW2kqUw#N{9#^!q;J<)CkA)SaDiyswKD>QD5S&1-% z+W!DDuem=oMu_zvbT!iX{wpnPuC!Opaqj>sIBD*$+6i4i3vI_MmFx5aLgLn=rXMiu zzgQX-1a6%~qjaH3PXUuiSFl^_q-mh4;irNfa@&-p)+=9(qfcaCXQT^6_msDntW30B ztbyY0!O;bGiM5w#sMhuqZVrgY4jb)pphLM8M!b-boAZAWx|{QV5{D>vN8%Ub%o1u1 z&Tcl@Z*~u@p7A`QzKK}H@<5wC2^po%;yzJ;6QO+05?4sH0mn!NwDOCH*}fPBpz>la z3`Nj+##s}i_<%Z8xGAKzq74x`YjI#TDkFBmgnXf&HE;)bC00_NasA#oqE|>F7U!cA z0=@q7{MsbBYt|xKsxFkn<^`nRd0^P-oo1j;>_)&}c!^>?syl&|Rv!NVGO7pB`HcdO zqW#vRwt?kQ2JSKxYn{7F^C(eqOviKJ3T2jGOvJoguZFAh7=dbnQFKJU((+NG0eQg% zRA9q3d;KAg3XcfEW{!oYT9~2JDh2g%tiU~GTCT1RS&3S>g|&*P`K6eMyU_q{?pdP% z+T5YNE@)j9t#Q{85gN9Xq7$5PLrH?E9JktAhPo+>cfP#4z~RY(~c!)C-42T)#wbSB~*0QEu0tOO+vu*^LD^-Zny>c7h6*P9D$! zNnub?G8yj#o4DQ?w9+of^o`4xq&~rfFtX*QGFvz60E`O6NGc!?SU_O`>xoyt(O*JY zQzBQRIUM>#wutP+wHa<9a-BZWv5JcZH5N+KcpVG{Xjxmr0F|wvNoD!Ndjh*k3Iy$l z)azU81-?u+EwK9I?J;aO_ZJZTUi3kL2>=UV3DzDif@e)Cs) zihk@7D^dy6xEKf*pjAOwP~{(Qn$jSE2A7xBh5$Z9RkrTZwb3$G+ z5IM(EBYRfXUxmw-7gZF6AVUPzaY(Rc^5*agDh0#_@Gh~%DL3HxKo)vL8Mn|rB@y&b zi25CO0-%ig5}bg7mA=fsFnk2;zcB<1_gF~5(5QYwMOZUte|bmjf4f2Q?8UifnH>vy zlGcy+oO<4oT^G_WYV?C{^p-dJMzKS*dWd3;)6yDr^one*&`aF!{ZMkBavaZ^OD4WW zmN`rAl(r-(cTMzsL}I+`{KNrt_a!VpZL*217^=d=p9KD>nl&n=6@XR7Bi?sjuJsYGe#b8vvOgMyv#BI_?DuGu@%v`qxQLggrNEx?D zqdjPqUS_^=O(FARv*{4kAnXKNb?Si48S597zJIBDf^{_Xr`BHqDdYEX7f0GuE(hup$p{MztZ*QEO8{F?Dk7>_mV<0o z5WcYqlKiFO%tr8agfe!mBW6P@n%?^HGU8r!YoW}~QXzRueX%eaDqWG9J{C+9S{%fO zR42Ruwy^+Iz(nvN4Nt`DFnyv?Zu)qvFX>>0kK#18men8KBLR4w1}@%wJl0Hf`9&Dk zQ2}EXwSu%HB}M`<0~yv6oh8_f8Vo>1uCNg~#2{Y?{o#-|tP2>Sh_{M!*_81`le3@9 z43Vs@&OcFF>s0qJ`;z=MS_Z4MAfmTBzo@3OP_nsceeNZ|TrEyTJg*+mCSH+dr_Kcc z`a{6Ul2n~;tNxNHEWh;VcG26}{{RxwS_%sFje5fJ_+bb(x4bqlNCBlpYBldDhgh}~ zTQo!!OalbPqL{2yyvs{QT)zeJEtf7_whPR+m@Z)v!f(j9b55i=r&bZ75?GdV2qnae z2rNnxU5FKx0nmdmWtz_L(iAReX19OwFnpqLz(1dvH240cZ2tf~A`h4969fx@ z_xXvaJrB%JZ$tAl>*!$`N23DY^WGh6?8CqH8DGQqG8f}co!~*gr|uaiwH<22+I?TC zrdQkIUIO9-%%a@;d`rQ8-w_~b_5DEu9{&KTfyck<5Ey-866NYg*Yzv99eMpsQxF|U zA0)4@Yca-lw0+3x$tM3bM1B^{!k_E8E(gZ@H9MvBO+dPpgS%k5u zb2Z?~Dmh`0rZ?N#1Ye^aBn2DvrPKNOOwf5tfDsT*S?Mmj_7DMAN}?s`@+BKmDqzDXTvU#~dzk^uy0Q!q zDe{IrL3`;5`VIFqe7N_CUkl$p0wI?UYrrCeP@t0~2&bbFd<2A9sFW~3Za3)_q1W1f z|HJ?)5CH)I0s;a80R#dA0RaI3009vIAu&NwVR3peucIega;m!=! z2$MC2*9q6>4na9wKRBj)uJ-m~6xRN8cr*j6eTFnKHKV7YiFiI&{+{w}bDgKzj010- zX2Je&$}yvGsmZYV*RLi5K0qBG{l+@;q2_$$+k$Xqo&J_!Hef!e{d>dWxK}B5>E5vb z3U;IFKeGx-Ip00UJV)g}j8poj^_1V%59bhwzSsAR>yMM{_kb}I7N6|JAzkVp2Tzk1 z72D2TW%a7p+l4%BLY2jGkey=fmpI-AE%lF7Z}VeUZqrs_$<#JGn1mQQ@XTDBjM+eJ z9B9@J(+#`MPt+8>y5CqSNfSPCs8>%T;m57~Pn_mLNPGvcCLAgT1zG3FarnRtfR?V` zagz-AjQp~U*NXZv7!K43%{p}B*a(WMqgywLWJKhBXB<)Sf;QuA*ZRg5lpEYrC`T5h zm^UNUxUt3f!E|TVRV0m(E(2F)kuc!Lm;GRv*equ_K%j*Wk3@Hgu!vd4oMJku*73rI zi9GqnNrJ;|#akKN55b2*c+x+Xx!P8>EAq@`O5Qy6HcG# zIa}Tj%JbgbIHYHcd@a&J`R6W)77YCDaT@H(YiMJmPZJX@I6vPlsy5v@D0AD}gy-A) zX@}?pI$B@j4scs7qx0h?zTM%CkJd0v_I3Eifu0<8E}}$v%0mnUhtlsFK19|=igc#_ z$l+^RN@``(u1sJtGPo|8gHQv&npdZc+MuWBR(NIYrw40^Esp%mle1#*@rU4K;|2jYW>DD7vG~T zs82Qf&QQ2`j}8QTFu{GeMUnYnT06LomUDsEVv2BIIT70wX|FhFhacqehx3Am&)JEl zL0t2ppus82##U#Olki}!n94pDg>i~~Xa7pYQGW9|$ z*k#ZF8ubQTJ^RIS>8kBs+!guBAs>IC?;`+fHgb&yAc*VJ;A9LUHwes%qOs{5(20Cu z>k7|W#&Mz9kE8kVgoJiFJ#&q3Jh?nbCLDsk7%i=5fP2dPyT`!_knGL~I^~$gtKo9Ij#ak4F_q&B-Z&x3J&k(D z90`Was{LW8I6u}J?T|RzyjS^RP(+HE6{iaw=Mj>X_Bt_~4#nmB$Y%q3 z$RrFqpBdSN1DmxD%(I-StWFsm!E{{U+fN#|Dw)Mz~DjxJR-BYv5=VfZ)? zk>edY`R@UT1vET4p!0lh{Bz^J*BDg#E1thbRr{3x0C*nH2dan3c4MVG zeZYSnu#Nu!L!_l0;qn0wS}p~l`pqoL>;vV;8<=3}(Sq=l^sAx$=K2He@cMDF&O`Jd zgPdME1nhtH?$6aXiEJgWr#niB`3a##R_nuwcM|Xtz z#yk4MpE3R6*|00=#<7syow>~>u#nn$`NiK9d)&Wf7%&^*58~u(0#Ycy!<$6{D=r6F z9L1@CxTF(i4wC3zFFa%T0md!nE{$Tb@iCC3$s8d3kBmsq@R}<4GWmc}J8)n=awy<{ zF0z^@fWW}E`(Xh0G>6-owmuV%9cm>^H`R8xg)2#mFgC!|^Nl(OV*atxqUF!UfWD4g z*16L@xR>G})MnkQ0eou}Jxg->3>DN)t$HwmtUI86V3Dm8A4V9_7SOi%3<`>zA=cQo zlpur9&T(7leunp+OqXsV;9O1n&F#Ti)tG<`1sW6Cs^fw3LF-5V0LG2vJsDYSJTC{M zqr7QLdWS*49R_iT^8TBjspP;k6%^b+MdNuhQ*`Cm7y|_+&-aHh1DgK;=kbslaOH=? zliBxP(2UPn@|= z&^Rfx61M@kJSI=wXYzW>K~B@f{;|t}50f|U7aK*Mv_mTy>BC9(_&@D}9eh_av%?jhQvTlLyL&BtZ+`> z4j7muTpj}itMh`*JcbLi!h0~QY^F%@JebJP&>pa)(dPg^N&MiQ#=L_BZ+0Mio*yPVrJ`~s9OR!FN9oeH8B6c({(qc9YgZ3XdA&LWU za`+x{XZsi({bfMRbfDADP&1*(jsij7#=kC|WqKO!em|^&#`oXT?C%8)o(H}RgtkcZ zJmDZ3c))XqE-sFT`H$So3udyZK{wf~8oY;zx5{|LLvkfP&EVwgtgA{>)=!SGZwTyf z)7C+4k`&pzG-SrDzRZw3P+-I+hlc|YEi`vu6Bab!^q!N44y0tfClktEGV3eMjs3JVu*l{9OCN5!hgRe3p~Q_*^eZ@LYh3gabZc=33~l6cub}c+!+3!egb7~2fbey zjxgBrdp%;2{qgsSgSxQ&1J(*6U=l;G<38{RD!S}^m~8KNoXFyZyN(Ho;KIBP)^2(~ zq;_Wi0J!5G{{ZR40Gi*2+ZoOdyT#$mX9gibInZMwlS}uPQ}tVcS?@S18oZ7PlnL>? z+S7kCDR7+BxrDp4qY|2;@3{czJ*_6xA;dE=az{pWYD@eQ(UOd`# z$G5b68lNr-@i-tfM;~|xw1JDN;P^3DYjQuFE%$*V;~_{DzHv|rlV$v7{V&mx8V#Y# zj=}M{#|}?!RX={RF5gdFcHNZ{{&3U1;;Z5eFoEqH6HDKB0}caL*dBlD4frj87*MKE zddFn3wsl;M)-hLYUP_pXD(b*J+*`u7A@{=FUa`Ado2$M3xSo}-m+Gw-UMUwgYVu~ zy?DrXr#08-^w$_ogP-3Kel|X^@hE4Q&Fn2#+y4N_&cElWfQp=UnEdA`f4of%xgPU~ zo;5P5fHuR7E2+*k=-Iwg_;6N4)6{%>#PBH=->kR=IV-*S$bv?WS3ED_{_rj|thNh- zCAUGp88}Q!PQ%$(rKH6|3Ult~F1X7ozbn5;@$Ve)cm9|X=i#5n4lWL9yi(t!^^16p zdmX+!L~Ayf3U!WP7@AD2!Ai^KS1v+-{T=~;Fy>< z@-HTB8EokDFiR0R{N~H!dF}O$3y6eagjc8XW}u)~;~@pE+)X1)F?Z|uz>}d*uhEeG zSZi4mHN#I1Hv`=}WjsgFFiaN!+&3NO`KlchJ`ANGU}2E_FyalSLpfvSd!SLS@a*Ro z5NP7T#C2EX!V0UPcTZodmko*MBhw+_yFD`ITNCWQ@X#A+7v9V{h}Cr&Y(4aI2`Oyh2Eh@A}5U$;3KwoFuN3gvg*sVEATtQ44R*mKfI?p!OX&mJqM)N1CGMpgo9unX? zW+-q1dN?Uwdf1&}YH$X@D!rLLI>ecD^z}I;(xcgbW+k35qU%o%@yfX4>shc5{nj8j z7#yNU9hd_B-{8dnO>)-Qe9%lhVGfd>OeQ~&V^56GYJAVd<-^uGl~!*nmE_G0U{l4z zcy{{A>4gVT-VnV92oR1p<1IQ-G;T{_^Mj1&B_p>hppd&CcyG^7OWi&&peBUSYd?$$ zpMV|%`^gS%7{1t8yUMD*SG?yU=)xPCGLqzwi0OEkaD&1B09mZOOU^Yyd0pY5Q}D>Y zgm@%iF2u!`TjD<$qW6tvB?>+q0|DT%s6R1IoLl5qU;5;vonUE2%QXAJ;JbK!@vlK6 z(stlQzoo$?{*G=PYYTW^oD$@a$L-FUec~W~R1JLNUm8+1)cDD)mXhuv-WxvUJAAz7 zgRpk}19&~Xs1wS?%i5jUzkKGZxJ|yw!H-i&7ZS;P&6R40=uqZl=&CEV6A_#m`e*e>|U3a522kW)_s=PP`L(fnno_ISWl72+5(0rCL(e}`G%1i)-A zN0SJmP2o>-3mCE3&>zk`1x7Ymg6mD0&&|G5nc?+{t0SU`zYawa9wUzP^@bgL#uj4{ zezK!t^zk!^$!*_$34-{=JKiV1cvL%fyK!VL!L!Z_E#nB^ICOtGv9F9`*9SLT>#W-_ zP6bcz9Y6%9gb$3A>qH7-A~jKk$M=WgeCmmzY z>ED@_xL=GwZ8n~<#N=-sqM|hGyM)+Af$(F9O&nSo)s0=D)&fXu=zNE)=b}b8ctIoM z{bw&t91hQHL93?IFO0Wt66>6(w(Glf_wWutRbd6Yd9S}rczyW4d*L}a6@=z8hOEr z3zw(7(LJxPuQ(FdU(4PUEakTMi@eqTbU#4i6#2Ld#&*w~CfpBr2VLdsH_I;980{t}^48Sb7oKdGR@yZBS)LvHgzTkppihAC zWt`-hF7g$g2kRa2Uh{i9{J%p^yz!T7o$ot6_|5)szo$EMk?Wk@3T%79%S}fL+W!Fd zZv)TjNBq%JKa6zKq&dJKcrI9t;`F`{vNOL$cEF{bOBg{{UtX-N#;QZ{Juy zk_1T5_GDuE9e-|FE5gEq&kKu(ejc1775*>#$rZo-)_Y4hz$wYff4q5GVI_W_;}4w# zJ6h~={^R2hSip#BV?~@{IaUEvfC;l&J>j;qO<>0f)(mxu)5h@;UpZ#0hQFL@1ax|F zrZ3zF`6LbSU~KSCh}-PNq--*A+C2F%Q?zjQVEVc%J-(bEw(+uW-VH_yP3bKk7{R>n zDNi5maVW(#Wp6e!ac%Rz^M|`-A9y2ecdoaARjaWu6M~`N^1&4Ge?gzGe9xVK z>k>jy@HkH}hHtWd#3ek+|IAtAize;6Qgsq$m_0DC0;n5*8kLy-@x?4%F?V4xOGym9r0fgKzd zu+3SLV(lIb5S<2E`4bxNeMLt`kGxCf<|mNoGF3W<4Ro|&t|ZXjQvpRoQT1M{k}WnW zFJALf%mCTmL3h@54C8M90IVOpsiS^>L#Fq}JFf1q=yK!NyyyP_tOJte9x|-1+}Zj* zf8cP5Xm(+eo#|m9Y{9}1YDhkg_lbX!PyFJN13;2A^D+1|hu1hIo4gpNNmYrvh_B6l zadv(&InONlVHghauKXXv^NYdwiT?oI;2n$`7V!6hj`3Z&o*X7`;Ame7)-Q62eP!X_ zcq`@Bbvp3jxp)4t#&kD0ae{D%Lllq^L4UXG<6C=49ckzI$dk-`n0aEjsWQjTdb-0d z(fQ4xz(=9Z0|<7Bf71SPbdHlI_NpgEPdMv?9BFV; zgPa}^8;tPT;?Z#_^5;4K02&oadi0+T7RM59u?~K_!^7htqiwOrjMnJvG6+9#?=e$S z@pEE!7k*{_aw*#|=;Tf@ylQ|Y65tY`M=zJllxQMpfU=81@_KTn9#}JHS;DK*f9j4U zu&LRD0OE86(C^+=AUEeJl|G*tz3OiLm|~s!!(v;Tpu-6W1N52VL^tmnQOc7g4sQcfg$$4d5SObOuOyjav`Ay6m`>&L2oF2-ONCD z{ObWI<@Ir#rLC3KcFfkE`RDNa$g5y(#53XK>|uj?Jq9F!8Yt7Oc_|s-gBlntRe$Mt z{aEf@SBy4uP}?1Pxp6wY{_|1`M$x2wIN|PtZqoHRDnN|cb~`c=T6S;$062(hc@gEs zM2oJjpLoG3Al*5?pks5&E;%pY>pbN@*PF*>FV^ym=Kx!6c;6WSzaTvPm~*BvCfRTf z@4sj){qi7>YuaJZ?`O{6-flrOg&Z<&8#_4BomhR`w=3Qvh+P4AL9q8Q8g?~1oc`E> z3wk|aB~u>NaWjdq8u>3+dpaX;dmJ7C2FeHaBKR- zG!Ar`7ZcIIn7Z_JlTK^_&PW8nYWOj3dYBV<4ou(-MB_>9wWe$(@n0CcGaqwP8Xc)|%}yy!P-_I5 zobhZDq4AA43N!xz?D@qcTl&@i09bj+pkjOFgIv9!bCind zAJ!<*;CUmhBlvQ0uZ4pU6iSXK+IAP^j06N60PDlwygCsyu15uOkam*<{B3+Yo*2%h zZ__`YoQ|_d7@{3AakkUpHH4Wc>j4LUIY5c?@tl)y?VNOoSK}=lulVdJ;laVzPQRQn zuu{C`K5$vmDw8Rv&JP3}I(;#8_|_Z{T2XO%Aa>F8CNdF0TU`edbZkh7_kJ-}j-7Ac zlM|TIPV<1N7k)-)dv*FUrltstE5Q4I3=m4u9VN)*=misl&EywDRx z^Y1ucK7)yG8D7iQT|5XqIW*~!XDAPxw{}f>W;RH6Iz8Wba~o}2xZ@#)^NN3jz{;=B z{J0u$hsYPsP*ph{XG-`O?kj@fU>Z-r!+)I^5=2j!#|b6eipOUwNBPS)`S;EU3?qdp ziogdB2tF8kTyx-y@{H$U50Rg&_anoUaO2?^0od>5#{!zTl*&o$JxUSq;Cc6*%su+W zU0&90E$+Et`>_!mkDMBS_QdLW^Nda=3gC9+38xi^2A)Tv#5?eCn${lYBg}uZ3(W?H zP6!C?^qIpRbE4w4bAa)|zjOWOgM<75`wkdvQ2e!=7XkkOl0j`gmY%R;fZ07EhxIkgUnB)S{l#KHmwSQQPyddVb3tdHLn(RFFR8w2kS05T%*lL=4(Q3W2{ zkrE{d|-S0;HGbm>%WF7r%5;RgM9mmtja3Tv{k8A!i3BC36gEhCeInM7m9+QVW2ZnLR3!1&MY!d4#@O$+9 zWTHb{M}Ii?=3iews{V@j%3y~&Hi>9wBp=;#PVuDvN3UnE;{_4H&~WhM4*NlWj7l$) z3yEL9Hkm5vHRQ;Dq3Hfouge;mh#p4`4ci}i!JyQ%;q#PpCGy5%<;a`wtf$^;hX;5m zf8{ZS_0oJY%R1@Bt`qvgh;zx7@qc3mev|Z$UNfv-V`;Ij{AB~5I>Q8kzmULfm)NtM z*Vte(d#Bn56&_sN5lkn?)q{yUG%orI)n5s{DC@{ z1Wit{)%bq-uwbxl8PCfZzS@r1X}7$afhA9MxQypK+Fg9P99IKUSX zC&xG(Doh_(s)jFdh)V3~@c41WVJUrMXHj3D>jK4Tp_?OmhC*yi)KVUd{g4t90L8zF z1)5p`k4yc(!ND08%N61#9_R(fh)$;SNbH6VjCq{ z<&B(kh#D)A$W-*)ZA^x#=dkbnm2kb5(X(0JWPsSBM^y{&Eh~V5<5WWM*>FWml$EgMO zXvY;4)Z+83y+re*qYLX1S37Tk9C~ZJa-06AyxS<6PVs|9Pc$z*o-?cBUS9s;f;VK1 z^VQ8{gSRZ%{{XtchS=e~^!zSqlE5^_G2T$*;40uxDLuZjq^5zp^k8$o(OKxnfLwFG zoLeVs0o@Np_|1w@!PWqc8ZmV@$A38hSEt4RG2g6YpSCgZ2AB_hhV6d%ts_&1uoi}U+=>Q$k$i!nRJ8n20!qkTpvz!KLs`A9x;rA z9%J*IeSbJZ?R*Q$;7B&aiP8c-4BBF^h-h!KHP0)MJAN^m3NJvXJzzN-y4&Dq1QN0K zz=&4D1oU|PV)3t5$1$4xR`|E2E!77fI_ID zK=Jy90K|4kd@TKFsFhn4Xz*Pwu-LvOzx*CD*|$^Q3cTg+L>P{r_mLh?Np6V#b61L3 z0b~uXjE8TW8t3#K+$&cGZE)%12*`1-Cl9}z*hdx8vQP{i41Qu@R0l7S9%uKOjUOKU zVLXDT2-hc^vK{9e@?_2rcv`>s${p_l)wQoUb}()$@WDlEQO=vwhLh*%#GkEyLGzJ; zCh0g2PEj7xe$PxifxTd#`A^0-SFD@7Q3W)vp4iw?v&PF|gT_U}23Az;68NYMB{{U4gL0=#2I>v)y z4Ttpa05v#z#rC;fn&`xxyl>W7;1kLD!x+@~ypM+@G+=sJ&*Le{p`jnhrg!oa0Y7nc z;zR(Qph3pv!p9p+NRc5_ zVTEa+j|z2$+I$x2fx6E;)i6cqRqmRka$_>#}r%bdN4vd zhAPk5jiXxI{{ZGuJTb=m;PsZz=lx*AdhvmmJ!ZMLjJ$(@1Ox#C5II8yh?;C4EX6I7 zUXMYH^m&|$u(L)eB5Ot(srWat?Z8uKc6ZQcS^6iy*oxXm`J4n8>`z#GPumwrI}WMg z!ial7@!5*GD+)Okzc?7`yY!I&T^24#KC4BE#z}6{Jom`*#@E^Yc)c8){UAVdl z{{Z0|{Nq)<-_r%)HT`1{RsL|K?={YPgSQX=05Cig&Jv8m0DFJ>D}tFAY3Bd} z&neCTT$HzSHw;3j_6{;~$ekIn`W5)-IHUS2cH=Zu@5s5ej# zZY4`Op$yr^@pAzHAUX|x=Zpd{Dos8|50#q6fiyADyf`XBQOYC9iXFMVflpA?RAc@oO(}4uH_tVLba$8q^{4%9qOXKGofw$ib z&&!Fa&TQX#X7VtB2jRm*3y5Hg(ro)b^vN(C`d+`@69`5|$43mpSwM~&U-21@=NyBy zo-q_8F0}su#KoSYyLk2d{&DfW8Usj<6S%8!T>759;vjTRNA>PMlld5s_eUJZhqv3~ z5i--ytAXZA9pW^^Haf8?%-hVjU+H14O@qq(F65w~g z^nbh)m5E*L9JxeEK#55bqZKLe{b4-djY-BCK`MU7^^n3O`H}amSUY$yT))Nvn*&a8 zSm0l`{_b!LHu=DM1^Y4$<@xE)splL(`~C1%04%&NcpMA&=K*{x)(eL`k64ma2Dpqd zM^JR<6fm6&L+!=}QvrRO@sL2rPWa05XxybhDYmx$i9{>CSbRf!Eu{_cO?01Hne z0vi_eCi6kwX{RW_2w3Y2zT-1Po3m7zERq95>pA2&GL7eRCxO&r1HxyLC+Lu7Y1?u* ztzpi;rxRmi5t z%r&nDZ>4qbldsot1-@Pf_nau+_?zNgI4MOG#*YO*zv~ad1;r4gnss}|!21rP&&B zd@#UZbO!ze{qd4liq!ZxGkZLZxn2yk4{io)W&U4$F=8h9KeqAFPCGIWAGS`X)(2ny znZNz4P24&Da(S93#!@=d{{XOGtY|qn&Ltq%&Bl-`$o0-4cPij|^NAS!{{WC&32>z4 z;q3UrSy4vQhdF#4AHF(I&@{gP08^Mx1&0N~RNa72AI1nebnw?kGtvlm^8E9WTfi%? z2Lq5Js7K^0^x{?^9Fz&einCN62pr;wC^gjS@GvXICGRc^in`b&0Gm zWyv3NJBL65C=Z*-_`@c68aa1A$%{6RBac`Dnls0YDW7YA%@Ob0?UCL9V@WK>Sj{%|PVf4l|w!oLs3X)EJ3r+;?Li696Z ze6bQ*XAi~(*M2I_3X_%+o4V@>m0d=z0*HqQzBlq6;;6*~yR{ zuY)BOzgSaYtt!13U2kBI!vb>8(vkh}bYsNL@vjMl1c(mx>SrWUY;>3)krH_wnX30& zofq@~iIs9p?F%RybB{A`cp24-lSh1*0y>>@ha1voJejZP&V%utlXuc0Mx%)<~WU>ja_fO;f9j7W@Q;;};&LBFRSsVOD(XqVsPIG=%1 z@7}x4DhMOk-mn=ARq*?8n!oEe?N2Mu#uWqFwwKA8BEZ%W{L`e({{Xl*dB-4}nSBTZ zL}pm(dPtcV+#=c_0u8$7C*$vzB6<_fQzv}m@`7vYJYsfa5li@SPMOF`j4=7_&L6}-a|snYhr^5& zX!-vDcn=G1?6|rf@5puD85ghi9WNL|cf#%Om%IeBj2A#Qr{e|SaFq<;%8%cVC@W8l)sCsP!F^)UOX)gCh~TaR ztYA3;JGfF&@UPx5b|Hs#i0?Lz*YArhn9OG+cx*<%{k&#`&R=! zREHw#7hv($1s(}M7?6R!N7I}#seJa#b5yBJwYL*JmgQw4 zeIwRKfxk=t011z7y`6e-n%&UPr8vjc728>$R!}7jug0+osM7X*;?4!WQ{Ez8CfqpV z1{}hzdVX-!Psg>ZhtR-tQT;zdoLCgsr@=CYi&5k&jxj~f{4hbd@zV=wr!G%g5OadP zh6)<%g?{l&V13oFJUFbN>-}Z*ggnO}$zH9|r%cu})|0cjWOsn4mQDjXQF>Yb0FeV< zCJPH_r?X$yK8AL{fx&~1Mk&RG`zCf^L*X}pDtg6^Y#@c}W;-Y}k*gFna8mUpr#c^O zfQ?F5WE{-z6h|h-@e$Hyh39wO?;VRC{<7rJc!fK!cnMOY$AjJpIVn#cKa4Rzr$aaa z_xZ<8g{N+`KCmxP9S|V&qXso5g+JCBPM4GYa*EPQ(|o(@EgPlmdSGzvsB6{^Cd&uC zPdF1u8hriZH184D{{WK(T83U48$aGCU3ogr1iu_i0wh%jHzD*vU4BMi)>Z<&tqt-=7FjP|x) ztQrYbT6V7S5E{j6dvZk@xu1@`G42(h%AcQci}wZJ`})Ttg!dvDEaxz&akQf0H2&? z(eaK7qgrpXqshF`8K&vcJ-XrMU=2iWpN9npD<2;H<66_iaQ49moZ+wDRqrX!?TkJ= zXRLp`=`4tw4>JlfG;RV0ww}2;Em820tePA2V?oiI}!??0nQchb~Sd6wbwY5 z9mx5uePR(PO~?mow?)gUI=IIjQSqCXYI?2-wTrt^&!-z+f*hY7%q=FD;P#HA_rj8i zD(cveA9-$5(qOyqII^8w6WR&7z(fxT1_4t>>kO<{3=q_FN&qAH{{V5;0dJ9ZdB-FX z`43N6j0!mKHhAwGbX~VKNwZ$0<#GX2VS+EukA8EP3P!%%8$dkqr0X02B;~~1>!kux1Vf(l4CDm zTCP|D%Pr%F0MI}$zZ)=yW;?}nJ?{xJ1Kl)-hU+1TIP-EovK%NUWXrgqF1UDc(ChqB z!`1oCv&oky`_1P7&BKfHfB`U`q7D795HU6VPrh(~JR86XJpE&N;^yH?*C6FQ#EGbD z6R8u!TK%S0;7X33uB8Mu8inO=|^sIw~R4$Kw(#`*AluNADJ=dL8rm>*EV- zSG0HiFXK50u5qzTQ@31B@br-MCo!v!iZ^-i7GnZL;j@TfNQy^faRuS$DlNRco5?l4 zTqcqm+{LFf7;${%at3Sv02eJM?!0~Bg7f5Dsb)HfRNd00^GtT2+F`lo6!y7MPPDJe zXoeFu(!3d>e)!!M4iIZ^E>3Su9)}u0)UPyOEZ`akXBFnSJ=4#i(~NaQI2$_A##$#L|wbSUyH0vF2qi%AZPP;gNCQcg)hd}#$VlMpr97HPe84TA4?UMV?{tVx!ey90y z8lF4zOr77Hi0iB`{_~E9zs1hy?TxYDhYGN8rLPqC?-DA+I3FYD#t9=zR4Qx#0N{*r zpg$h}0L&E9^6l`Qx@$Y$`klao=P%n;BmDu`$LAL4h{Smw#N^1GSwL)<{Z9bxYix3M z=EbVJ^XumVE5aZ5`NAPown%IYwNs<7n2JM%Y-xb$|fgfI$>yZ94CnfKb6GM}hD5P=@%;p@3mPC}?VEe`_u3WvHC$pULPKo`@DzKUGx5unC zZ|8%~Kn9NnFmm25{xBtC@XHP{H8vc8kvV@Dphw}gTYUcjF1%x_Vgu0O_sNB* z9t$cmW%K)Cq1G#mIcz{rY{QPIwS*%ml!3m^$j88IfrMl&v@1F zDFl6EN`bEVontT=#e)ws7?j}$N8>cS74UKUKdi|rmk*~7p(N*3uLWP*5kZ+;Z60tt z$Q`OG{d4t<{lch;-N?WI4*>}|(GT8nL@X@lh=6-#h)$CBN6CVn?*}RDj(lXvkv>l> z1d1=y-XA!U(-x69aWZm+wctFTqn+l1vHL%)h?IP%)8X=AHJI!T{9N1hFVS*hcskzM z_`|Pg7l(WOu(s`e~i;*>9U0nh28Klb2KAl}2TuB-f725?5{{S#u$5-}% z0{Ad7J4YMA{brK{#-{SIt<4>OyP>I+>|=$)=D9#+h8Lo6X2 zx*sd7_{4Cmoqr!V1-*Eg!g6zZndCnP5`kd9>oksv@wLA>)~~%b{_p<)$kqsNAo_4| zf!n{cKb#y!?IAuvGGOwsX9{nfn=u8Ppdfp?2{+Rq1gFe8f2Ss?0SAPyS~6b z-H&OA37~c6iLv8{2a4jIsAC@*4eJg@ok&n8DAGU9GVMEnI0WRK4QBBC*8Z_1IGq0g z-V1HJ?>Qg0SlJ`Lk%7O0C>m74M!UA>tCO$PB9O~N^IDgc{0_T zY}@|Fysw-YpDY^Xn!#z$2Q+y3!7W|KN&f(OTi0w-i|#&OSftzC)^O$+D=`!hIRwxF zf@u4kKiJAGE^qx3}cZv1QKISV!I9^I&$Z)D4w&Y)=9iP zF0ASBn0Yu?oEqqx(>IB9TT%l>@;p89iUG7yEaZKipRVZUmx1Xq{Edq6{{VTzmxQGM z0A8GcJK}ujDhLO|SMz|}P%q4Q`^V5%{{H~hJFKMCbm|y!x{@W_dC!_1{pRI?B;OhC zuzs9k@Z;wb1Tf~)1h6I`D`w7fTE8-%wr#=s%DUg%5EPybkI{(PB7yQCFM{HKndzO@9~nip(x*y`NCkWw%3w% za6*(Ju{a~$&2|oS(v8s+#S$YyE)nI&j0m^CZqc6?0^m~3s^0Tj)a(=e zV8`LxPS=88l*l0D?+s#`G^=RR9f{5=o_#9vj_b3C%gC4>&*R=NIBwbKYwtIDKsS6B z_PJzn!|pQycXsouwej4nt_}e0N}3oh{}xc4&F_QU~rwl!hZl9ipLjzurZ|w z56&ir4`bvFr&AiMHYZbzUO2hg001@R#j+p;FA=Npg#oi(Z#lFcA=V*pNIEr#g&HGZ z;YV#D&(-XfNuj4PX@f=$4k-`;k%mQ;?Y}a z;KtC{Yyte^20sBU+A8Zz!^;!t!b1?3b3J&@)~7;BC1R68Rr*AB;o^=+k2O>m#)P0K684*Y?P<%16kB_{5-vJ_5(+>p3gS z+Q0t*Fhxk5JWSiLw3GL9-TUIjC{aomEc5yTIHQCXUC?mS@G(wDdX z=S~wvwWE?iap~_ik2X7^alTC0c;=$gjt_1=tWBy#UfGB#5>fRilC1000VU?$9{8%O>%qx0C=XJ*m=IQW-jM*#u#1~`TZVs{swRjQ5R)+ zUa(6LMA+Sl=Mz#00THGp6V@}~=(Z!_#sXJ|k4&3GA0)?x(d&31C!NiL6JMwdb zD{BFz5#c%Ul+a%z{{VStru(1PXarIfbe?=;(=m8M)#2gIQa)tXxNbMNACNee>1X19 z)*YZP4CBsSp%9vCh$gT|4JPdY01gZj3jk~#+--SE^!q+CuOtxn=*a&7#y`cyhcfLW z-!}WmW;#j}N|N@N)6pc*={|8Q_)fE{@`C>Wyry_7V|tF9wS0L2#;w0N$=Vx(ZL)7A zlmVz{g5C_grPz3WF7YV^3jSK)HdcXB{{R@FNb1-gbDly9zIecHg@CtC2o{ho&L*CF z!A7cBLD0H?7_$ul+qWzYm`Ff}LkUcqB|o$S@VMY_?|qy&lfa^L>C2(ym}u*Hym5wr zIjvEAE~Zr>tUw}@L9+&$sKgkchjBTM?QXYrN$l@q)$$3H_5_gKoVaWxr!6)yUu7CVL ztO-G}7o>e==Y|4`7?I?2X+qQ`YUh|^Fh3{|q3sP~5akbma>s9%4uw!k)Mo-W<;ClO zuCPRB2rn}h;!y@plgOJK=NFtyN)U*gBZ9Ck1$MybSZ(o4U2cA4UbpWA`TjD~X6kk89}T9RV2M zU0?&gF+h#`&Hn()^NlEnD?swDjM`=QYWrmT4klvL6@9Dwshzh(C;1gTI zYqyLIbl;Ennn(Nbf(Hp>fBIL!}x_1VQI+G#+PP7<=;a z7=TU5-}Sr&lAZS40_j@21J+ApCh{jM$oNcN!)nvyHTG%7F-Syd(jUo=k;)$)N5&e# znQpSP<%XHIG9r_AIGzAs9X?7#Me@+q*Hf}D+@?&d7u<2jRiFV<8)_c)*| zeS5?J+Uw(^2J+U^*IUB?KN7KkFCT0Bu+DU@|>3WQjQuF>}D4 zMp)YkTZxJ{zpY_ShRP7-p*4mPMXn*v#4^B830<^--T^xSN5mh=i-X!Y9VQ{;1viXk zz!-?@Hn|Wt<3A3=2_s@1`rmjLyPDLwWmmv?$e%30{xEr1(HDHt&5TetmB2o{IF%ch z!=`_D6?)dWDU(J`axcd54W=~^7bc6c|BpDP=!qFIS|5-5a{F{@Zw8IiH$s}Oer`lo?H}T*aaWEhcQAp z(5P@O3`0-@z^0Kq=POi?V+~!sMCb1cj|n&6TpEi^ru6Qw&H@QW?Mlt@yl`Ex5UTe% zxOqgie7>+8l5r8r0v={KD6%kt;% zoD%uMn!pKmYurDaAH|v}sqin~SfZ4B2Rc7_iese-;GYL)W+4D*vE75xZ`M@~SkFr_ z0oIScOedqa{{Y?K73wHt4<4TwnubuA1TV$}2X%?yb)0VgVq%%xc*H3fKD@KObeqKr zqys30h#WmWGU1@D)}W@y>2Nk;AucQA3i$Ks#e-*w=R?!U_`}h6075l=*^=dUZB#UK zq|5JwU_b(q7EN3tAOITGl}>L)2Q}dU6qi*uFk9&TwJ)s-kv;xL30w^aiqqRwcC#dVQ|3J^R=`R=*b$J>=}qYk!H6 z(mUt;1waSN{8>#`@jBv6IBracb~80=a~1ZbLw?&C?ph~a&hz+=~k;mhNk71j^uE2k)J z!N)F{y%GWvnx~NP;9EFNj8qq5cz1)$>afVbUAu7oVuG&IXz@=9u)XLa0@r$T>HOu3 z)~VWiI)7&&DAgom(s>+-XE|h7Zn5<7?EW))BJ=n2nghAt?VjInk64<8-8g%Wk?h6> zLV{@A`I{fCPPzc$_Ag$s$N?IyU;$daV$Wn$(L_chPtkC9tQ(f+wi#4Xs+Zh6m~&zZ z0`ScjmTxN6+tJo+9H&70m~7H_kw#~QA|7})cgeg&Q6gzFYG%3}ays)c2_vpY{mekK zp|Sq}rwSB!d3r4HuUMjqE|bm*0cGD@OyYXi?&1l-{Ng@I_}*$vINvHcW9m=Yk3reH zuEw$jLsB3WG*?Byi4b!{L_4`fJCEPz2@$2^oex+*&Og2VMt^{#%uX^)?262FvF^&dLxbxr_yH9k>F*l=QLQDSYQ30(SrIh+V5kkQ2-AxlK$wYw1^~^s zrRwq=d}oHO@SHgIRa17ZhjYA`@ax~sPHMF|6R|zw2SUEDB6xan8f&A^ntzWtCau=D z$Gk(90?vPY0050riWKj;&OxYfQtfZ=jZh)5(|uvO5D&l`AAax>-q=D1fSoxA$e|NM zU0`|9%4dCM&W&1*kX;IOoDxD4O)U4Ea_}D*Jth)#IQP(3DdfovK9x()Pm#!(5#b?* zj>;tgp=a#Gs#uvA$A?c?9^kz|G^frL`X0pp0K6&E5JNW3hvx`z0%{XW^5e+>ffU|7 z7#$TD5e18fyF~)k7w50gXnwwNY&meak^r@wC;P`eLV++Tp_vUV_(XKv2W8Ph(w-h? z4)}7lNpu7RdsZGvkj1SVC+Cbo=AoEneugMtwkl=NbNm(8y~-WLpQ+i4~+Fd`eJ zUHMA=%p)r8O;gxJi_Qx1h5E){c*{fSpX@ryP}|1%kN1O@OR!T{5x*QE2iv-3@$_3} ztAs?>J3UvfWeq5v42^d9t`I22p~7jJlpY%I*yAiLHLqa(4i&dnZ z9YHd$9u#k4mcM^F3r6q-_O;#;$ykt2j&nh%-yXg^J7Rc zKy{qW2v2YhUu%!CMq1zJ0fDE+D7YI{0Q}<+z4KM_?ZV@y#(liGwf_KlCh`v$K#(ri zgA)$NtbGRGyc<{00iOi9wa6UjKF26)?Z7(SgG21b7ykg6T6NwlE=J;rQuqsi4BfrI z0lcC&$NdNP;Fiw^L+I8?&N&e~S`U@h9GmZW2Qn`|7=iJv;CV;i5_65BdOVjlp#WaH ze`6wb8mC}Y->knnOVGMLkN&pUrB^uPNSGuR=~;)laRDyYhi*~;~W;9ip=8c zXJgJDNJ8j(PwA!{ySLPNXD74oAq+B@CviA`Y$802a|dDj=kDQwym)TCVpLn9KSypw&jVr$Hxzeno|H4@PfSjC*DCyX4ET@$a=)~D1FfGl|*KyNOe*g zQ(8~fxl9>@aC*le)Y|MGp9ze#n2EOC>dxX$a1IXL0;q0;-!qb&KO#b;*~9BOcT{>N zhoSWF_llzGaVK@U8g+=>nh#-ZoVJ~9+nO7F+8*6zutB;;Z^(0*eG?;_)UJ2YQw`D)-aV3G~r?(3j`$&K9c}n z+T$o85$DE9Ku-;wp)1{Yj9RYLtJPb}G4NtWhj^tix;X1~PbLY}6eSciG4reSnkPPYb%2Oa8nq{wtddi+tOia(VmZt;W27D zBf@q)CQkg5KES-?a8zMoQ~{fVg(8%uf!^LPtW)<$EHvJ?)+``7d8fv(t7+)#)y-`3 z{`WD8RUmYx=4v@=`5F2erP;Xy<_D9bA;9t8m4`!w_6*ltC*(DbCmd$aA2{AtaaM#! zNcZaxDy0a-9J1Nj@rw&D`T8BnxtZM0=-v{%692lceB7kv{@h5;&h2@%j8?ezLJm)8^#|bFVKCtQZi3+#C;N->h@D zkKc@z5D$F+0Nx!4@1b}0I2*)>a&P_P@gtvy1ayEokn`D>;){AwY5e0(_WuAF!OV36 zb|y)bA}Hnv0~BJ8C zX5$IIGk0`N5cE^Uzc`9efK-Rxnm-w&2J4U`(`h{5$=Oh`;Z;VXdjD{ncYlupEKHG&n5!t@jAjHh$Cd#>sT95$uOfW z#p--{_T&t8X@1U!N-%d8uffhBXm#QAWn=B3bbJ|E0}rV>3gEvvxZa_o z?*Q+)TK@nVKS4xsxb1q)BlA%F4&0%m(z;)cTm@;?F#0jTx_Q75)8h^{Oa)4chhe=q z%23yL_T{5f%WIR*?T8SUp}$8sD7I946@&KRdZ=}Q@aTRpIU=5Q&J01>#q;^c{{T4J zYaeoGMq6}B=Jl>a~cbZ6a`k&`gQoqRx$;=YyKUSyFjKflnpiuC88!(Rb92`^h<=f zv37RG%!6En1<>&G@bs9L0w8^b`|_4UPlzwnGtO>InfP}`Z(Pas-6O0|M z1jF&U&Euuy+T!u*vAFQkh@2%8ETMVf@y;LH;{x#)L)0hehIYF$9sA$L4F3SU653oD zJhgb%5f>q^W)P^(9&gE$I7oW|8UC?h|54!Bazo6fL;m62hEZxwLkkoJ#334BDIV;Ked) zZ#uUGEk^JSfFC#+mD;N5cZwRU8PZNLd;{<&YoQlO2g96DZ#Bv;huCwAdX(+D!+-H_ z{6gr2i2XXxy?+=RhTIWpj6ywK_`rxY6xKyN1>*!s$`k}8(Wbp(>`7<>j8ap^M6$C< z=N1ImGR}T+;g*3p78Kl23S z2|Z!AoN1CeQTDwd!Y4V*38t$S{oWh_ad4GJteFJ;8b44SsNFg;jY51A@SeF6gIRmG7NDnv~JoRRmMQ(PcBjLhKUWLFbM1RGk@4~|=i z5d*O0Germq$O|8NB$FEl{XWd9(~`OTK2LZ+pn{eOXTj}fN%ZS{!S0F7#?`{2xNR*@9flUQeH1e#iY&*K~jja z5adSkSg2UlNnPGwS;8P7Jz^JI)03~|i z8YRQL__{LKzbe1ZEX}Tp_{~F?To>z{aT`4U05b*FuX!3NByyzG+8A|jr>E$_k1^N} zLySgSJ4Nzv!P*o+Cjb~Bw~T9Myy7%DIoHk{*?i%shPVzhczlLXX0X}n!0qrDhv*Ii z!T$iv1Ggcc3=@o;k2yH7zoAYpaxUy<9ZB!8FrwVRGADjOGA+8)cdJj|s z#%d;!(@N2YJHxz8SwpI=*H6|lU6$+g)|11BmCYOB1A*Jm&N$@aT2SJO^)M#LP*nkc zY>S3Xh(RFhCKLn#@&JS+?89yZQYic!`5l-=72y8>W-muLPVg(N>8xG@=hj&6&TyO90P2E?@V z&@(RQ_&Ya>L`=0cTUv0BAF|{<7EWjbmIMubj8`p;n>taXc@s&1h13yz0StJsI;Qdh zA5J7PRK4w0Tur12y68S!Z_d1cKsr68@|C+kBh(b!$rR-uN5&$& zngS+>;jpa$&VV+rQv`@K6J>Q=Eg%l)ksg-^(>>!RV2H+#oG$cWyCe1;o#HYFYH2)~ zV>s*d8oZ%x;OyeOdk$o?aq8Vq&@@2K$LNA@*N1; z*nB1}x~;an`ufR!fs=G3uJc0B3qm%ZS)vw3Em=|GxHyV|5uRb)`N6knQXB7AoYA2X zuTO^}K8fNhse}pzb;|w!09P>wy6_yNYU@S)hd&5rs09q zxRDvIR-^J@l1WlT{`21prx20>_eWjZ979REg02q3;3wwwW1?B4#GDBb! zVy%$bn?+iT+3VIaWdjH=7=jV5`3vaw>k)*a%8`*CI&n8osA2Aw;7$b~fI>7DR!x>- z2g(kjNChv(7#}hi7B2Y|5ko;rKpd zzOpodQ3J_0_zVVaG~3J|Pn=v&j5vNVWt|S;ttnaP#iHvdXNEQVajsW^RbN*K1FijJ zv;%6em`u^lUUtLr2SpI1YC|Zw3huzi->e)>bNZw=Ehn2YCWI zIhZ6FW6$q_=>Qvm715^Sl|qW?wOigT)%BHWsz3wE>kZ3E(EJnegk7B32d9|j3M)!^ z!qIL5=!2R{V45b}2e7-RhXn?PhxrBn0O5vI=MOxmjPEJSo<^oGFZk5PtM}GD6)MSB z9`joHzmnt6 z_<}Gfl~5~=%^*Zk(mZ5FRwmr_yw?24E}OTzk^r{vUe6eep$kZj5x~GbkUAydfq9eX>4-T5x?sD(z5*aWo7l3Fm27ojYDN428KhPB73WNV@!jKGakS8acw5XDH9*<@RH1tXQWXQjSWGXYfj+pXv^^RpD4T`uHZh6Sa zXqAjWbaR>qWPWv$i?9g(E)fEL{ya>spLi&YI7~rO9?v+wakMHdHj;bD5ga>OW%*PG z*x=iymq`9Ia)70m7YcG#ailT0lb(Wb9?VAt77;3-OM1%?jqDx%GNQxFvuDIR!ANsy z-FladNIM%DH{r#+xF2{9z`AlK0!jk4tLGx2g6u1ea;FO)2ugfh&=JjzDakdZ_gEgdq>Fl2J@&F2e6lR;J^+t&+#x&S@Q==?84V#Y9 z*RC^^q|I0s2bYYa0ZE>1S*tmiHgyhGh5IH!YvZkU&wmBbu9-OWMi7zYv09s>rKxJJ&7$nd& zem9JS+bi+E$%orWq2BR^WQ9RIkDM2#idr&vQm}1vH6LMrUn89?Tu>h zyiVh@*q8}>?+0mw0ZcfdYY8FiD}ex3$C5=1LKt>OkJD%S>whT!HW09PcP`#*vG=LT=FzJo?q zFA;Qn92rb1z`#fxE|&oqow#tu&kOqoK`M9xxQgJYEssIGNPvQU$QnNJ>xRV=dJI8a zWCZ${NZLgXt^AmpFKnpPD6S|G zUx$mlwO47Wf-0UfL#Hq6{{XJJS$+&7J9qy8Dvm_B!CDN0fw1uBA?Y3r1oVcq7=Tpc z8U`hCEzw@N!G_(88fPJq1Zf05WIuco3OsK=3zrartTW381f0+j9~;UVzo!lzJ{IT4 zjIu(*D(3*=^yGG+%uE0@r4K45_;I-y2AKdA zUWdr@nvQfMO#)OL4P`#S#=Vi=vsN~uWEhl`8&No43{1h9ZmoIbN;z-C2GB~{)s zbU_eswzSpS;w;l)6fJ64xT1Og0C>6@yK`)s@BQEdvfmzYA}$4My{@v)TLN*T_`n9n zft%}dG**yd@r2pmEl=sj?K`w|e)v#5FW~}$@R7NQdsqEo zR)Pqt_+G@}`p+WeI=DMObuz(MYSUjpD z^142-p`pkHZ*MLlEs)}k>oki5fEFPlrk^tl#CNaJt_(yBzLT*#6AwU0O-Dy* z!e*aRawaMZoIrqrp08gx7A@fq!ehhWHsbV{_z730)jo007`pMje>gHx*4`%>DKz2H z-&tU2carIzV}KRsOkjF$Z8ROyPH>hCPv?K$K*|pWEEs?nO=Dxqu9z8Z9pe!Wh;r!> z*qE>gcrD&RxAN;6?S?O{g^W>C!|NM1y%Y+AkYjOGMQF$!uf{0_bTa<{C}pTz6F#m1 z>2assL-sK7_F<1eLby;uL0ejK;1d;IAL3&arlf;vg>nQx8IQ!0lOzT4~49g@4 z5_44kaju&p-Nm@VbU|z^H|TO~6$qAs)|E=vQviX*xmEV6+I_Bu)~hBzdVK?`p0uVY62`q8{YAa7=J{GNI)> zoLIE^#xNkGPok&Kh6-$3`cK9>?DFWuWsd&NFnEqpN}vAzhEb)&o%UIe$Q=p*xJ{9)8K9;0>C@LDN8J4@Mv{m0$;zVUHMWNZ$x1 zBq7KpN8ZoI0M!pqSZz-qj5b|Ds(8)HfjCpwUpW(qitFTM2nc@q#M`7(JBK=VP~LcoRqfCe5l> zhfgEcFCXavH7x*sF#yM>r1C$YjeblQ1{I6v^jPZ;EL>9t6@EvA>lyEH0K<7WX)qqp zR)9K>4d*yPaiG2c#v{Q= zu@M-E@R?aS@A0PPawlV#?$G34-%k!Zi9V-D_{NSWe~^7WI9q?fWCVmR&n^!dFg%I; zCT>GLr^!6r1n7BZL#{AGC`zt?=*guj<=Bm4fPhisV&zqK!+Y0!0Rju9zBpVYiE()z*wno1Awcj5){L;)j!NK{7QUS#78VJqD=Z+y521-D8dJ*06CmKu{%##}zM4muo4fmdtJ zd(1>$jsA=@XaUw8iElz<24NtMoFIddCL2U82y7v+PLac!sTw?dWtoFxC~v%h6b7fN zhfw>)dez~rp}cn{1pCk3fkitvPQF9GCLJ@T2!RRLFWVN!=0E9$qxAm((*@2btx`l8 z!`X&F-oRk>zKl-*ItAzC-#Hm=aGjMgbNF5E5Y&Pe4**=`gqBU4yIe zn5ji{2GqT?`SxuU%Xv(j=os3B>%Y9~nP#)+~ARW^Q4-y>wGOR)97SUARofSW|#hZ=$k zinOuwt~j|(y(c=yO9O#<_cGCR8Ay}b%N91y&N3_&|t()v-7yg0PINp^J8i8+wS1DS=9fq>{?;+%tc z9}yV5Y;XjQd-t0%1s_Q;Dab)khzB^?u7S6E2Wf#Swz3zdOP&uf7W-Am0!09?Ittto zlbyxD+UDJk4q;cA?^wwV6W^9CZ=e3C{-RINo#UteB_1FsRIiM_AVE&PeBorVvv-LF zxe{XYP5#&nkQf{FcoP;Q17vRpr_+(bklQ1;-tQS4N{Wgn2fAaZh(d;L;?J1_`1b!W~31?kAP295S_=Nmb9 z%3e{V{qcY`)6?;Q-lMJI0xr#rePGafzQ^Mdioi8?3I6hc*z0u(y+76>2ny+Ry==;W zF44M3K%FJ*-c6HHG;LG9#p%^D#q!eW?Xe%o{9OH(M6zc*iIKdkn1k|2H0<6a@hfoXlt^Kk|Z*4yg zvM`rHA@nu&V#apBH7Yu)3&5u7H+X89x5XrT_z7*aU7mwX1V z+`%Of=M5f8aXQF5LzWy9B2o}1lhz9%_M{;N!HZzVhTw4d`K;>q;M6BI6ME+u zsH0nZ$}_iTdY_=o*Z31pAt%hbFagGGZ#b-}@MG3d3&=rE)^@n?MNJT_tgG}mLJ%ko z3B}$c(Qee;JwpxaYu2V(MAq?g&Ji(FDhjqJfu+mqHw!rJPQ=4{e?8!hoZC9af`oL* zl?>6F2wA{4u6}cD3_HjI&YkM%jNd?aS#E}NBcT+;cYm*cqS~} z@Ps$ClwfWyiVy&KO9R#?3FqJk%2_4$tQ z&X>+zvk{FNOFPa4i6EYXx0&*BjLIh|1oMOA262)sZ5mF01o-C`=C^Ziu1Asaj-Wlv z6!wCAtGVbf7b&J}zJ4&afSwLpd-VNafoM}iWJvol6>oQ8bi=c`R4;{ zV!ous5eh&Z`M`OrCP-TsMs{YYUd0-EHG~Nrs5ZQs&67x>S~Rm53$)X9aUw&o*-cU6 z`pYP70IiP8sgi+&b1f&*W5rX-wa*7HjJT2Ipnc}Oi)f(uytw0`np4}$h*ej$%~jU1 z7>V1!eYhL)@AC1AC3ua$w;C}#rC;Cl3fAZ@K|}LDMvOdwnxE`CGWox69~c$ZR05g; zw+CacHzu3R}m(@9NOU!^x}}EMb>FG!arEba)?BHlevRLJ)wsZLmmkaZF}R3w?qL! z(O9D6Qk~v^il%!FZxJtV51b_eAzk>z4d-e90NL!y!5Qpgc>e&3IqF-7hU2Q9W`p~} zE;x7yik)?G=>-b;4bM*)s6%abNrSK&-HFmVZMZ^IsDOxpE8g+HR70g~qrQD*gor88 z;iq5D8F5Q1If~vTBCgft{Sk$HxM44#)-wZ-SP;Kj%er_UeB?ez>yAC*!B<<1JbJ)k zO>U0|e^@F>pdusL=Pg9kP;@TA?Mr8Yjz-O+q0NI!?bw&W||eYG}KC&t9=A zCo0l-f4r2-5Qm%ZUpS1N zu>1P!0svmap$=wIv%zFUbdN~>Fd0y$ySyxMT=esX_}EA2GPav_JnY8Od7it+4a>l9 z5-+WOstu56`EG;Ck8PzuT#!+s31I3{;?yk_lh;% zF%;<=8|iVQpdKl!c?XOO<-aW*@;V5syU6`mqEjbgNVd|=ngup=# zn}fEzc4vJdBF5962=KTkD=12!RT&-)c4sU|2q^G@0oyk8=^pu*mc|_U@$Ue4pVc-l zN1^kYG34-%2=*omBhC{66#%V3QorB@qpEiL&FN96lriulhFZ`=Y|wm<8Z=Uf!Q^~N3$0pYt)A)M~b)~k!X-d%89eQGA}~>^5=p=Ts^$Fs@1QT5T_wS6)S{huegK z6C#t4bbc`CK>+|hwT2XccCf_D90i{nTy3n5=Rh@mxD0$ks$_}_gUGYa0@fX`{o?}r zr_n~>lm5>KRORu4L2^MmA#g+q&H=0A?X;15UISE^U)5`aV znq3-?g(zTwADz-+rm88*p{AGV$3A3Ny{{Y~pc@V1c3g)>#C_gO5r^27XTwcPF z8iV@RkFEDNXhaoRqpH0WY!o=1^9j&J-1WpW;WK+Ju_ z!FP4cr;ah$0(I1zK0@qt;U-w1uP&z3*C)J^6bDYopWZ83HY(sB3)dIFIHwy48~*^i z?ACgeENN1ExNi+9;1b+w6lDf%4|)V zd2%Ri&g%TX;GJQtF1nHFrU_;F#NJcuE?bVAWgQcvx9G?Q!K^L1?d8W#Pstz>j~c$u z<2ZsKh_;mH%ZYq} zvLkUfSXp2O+g#JGOm^vs`y<$#eya&~hkQqkKYUCD;V@h1_GC(x^x!iT&7{{T1iR3palLg*E^o4#oFV9_uDG|dnspw67(ykn3B zRk{PCbivny2aqrIfl>vHiH4DNiPQ9f=Nw3%2V%B@DYx01xX_wj1oAkW8k+OJc`|QT zi1hl(xI0a&bT>;!r_+iRU{DAn9+4B)6Py~#s4*KvOft`&#iH?W?A{QT)$O`R(rLj# z!tLgME}qO3yfRp{ItIOC0YW}XpSZ@AP)KOM^_5_$fG9+t4Z!*fm4bfi$xTqPd}T`w z39SViMjUM9#iS@T^3^07U^|XIDbf(SiiGOr`dVIr=z2T`4C(PI=qT6yn1mG>3>Uv4ssni&l?!8QxzP+%$Z-&oTc1^&SkK6nFktjI^)H z+#qtYw}37JJrVpTA9*qpz}oo^476SX==$UIOclD;FOn!GJ%|_Raf2xfsbyOH;HR)6 zj+)EP2KQVA8&H^h<}2U9e26asv@jQ5s~uTH+OQX6{sFqDwD{{VT$WwllN{{Za>JxB(b zn?v3rSCT4+izA>^^Ukqd7(^=g>SJIK@;Aip;`GB%v-rdd z1$pk6rk~5Ke~<q;Gj>G6Mtq-JRT4~-WBc%(h+!@ zrVyA7v6p)Cc)|YwD@*or7{je6;QsKy%g~eKdj0bFoeszBxf|mWmOp&nhhDkLKD=C^ zqvrGZz-)Qv0n4lXWZT9@rl&bX@;!d|JBU4x&Tnp&+6hJEJU>`9v=J&&>yhx_;4d2@ zJ&o@Pgt9asAswP~fZa~Ym!ut@P2(cL+%?x?X+M0K>Qh*t68U}Rk?;1zId_nGVfCY4#)Eya`}gv>K;sI!-YLuWAKeQ0cg&8lWPM zM9TjF4=u8SesS5;ftf3H_+MwPPVxXq`T5P_XxA9A0E$Vy@#hPv;d&vp{1}9WR?Wp= zJz{zbN->R$cySLx0()iwOV>Uyr9>v57g?sZSIqdr(O^CTZmtTsL06av{xGTEjU9W( zaElYtWJ(hE^WPb(RQA03&AuGpRl)uw_Yz)Ho7r)a`GMg)j|r8?C#(^CxSZN17J7QY zFUUNPhH#in0wM?Do>zqP!-^ortK>qhRq*<9W-Ruf!1*v{ur@rCHw7u-Fa2X&9^%qn z>W32`-s;R{2~TCylgyDnycZc)oJn*9Qk{>dCw}MzFhR6~eQ}9iF%WSC*Ao~uKEKlj z2egV$-yI)mBCzc|Uhzq;wkZBF*c7E=MvdV-WgRwrJJut2N#@LCfZrF-mjrZ&9mm0_ zXT}hLb%+lx<|zYKF9Yv49EBk0^?-y>^ly5{S1i=m=NZZ?hYl`<4>Jg(L{d8QiNrx* z2cxqV2Gr%s-j9v=n9ZUN;ORn?-ciI=0_)DP+vltmJ>$TtiOAu!K&ShU?=I;)2ChVv zhmv0x8n!?YUK=^U?W8dSlTzFQQi7K5))rvXKm);fH&ru{yR8aOg*m_s+CvHh3WlH5 zjf;G9h?%>}ffOPlX){UlkRDfRL=d|!-86gGTpd-j5HhM2Pya2E5j|4$fU=?&a z3>*>|lbH(QigbHg_^D#wT3|Ic}v_`fmA~&SKVQ?A}zQ6maZT&<@~r#$HLt zG&TU{ie%)=fHqow69}6~zen;I^FSxDrWI8vsv%vF+$Y4LxC z2(ZEL6(W7(kR2I3I=}aZ5)iut0&}3jCca5Kp4x^CSn_X6e=Ztev=)!8x!>u=18)iP z-;T*My_uT*qf0G|ynr{NTxy z=pG>8^_n}hSa3H1vDG)#4RQC6_=L)DNDW~YEvy0Fhbjfc1IPv!gp1B03&tl98>fyv z9EZt7>kbx9Zcmfla>DfA((KhK;?a(>x@&BWe7y+6dzY8 zDypv4zHPZ<%jjuKhf?BMW(5%y!vNYN+lGkM07CUvdl{ZcQg1ysINl(2eVRXv^UmIX zC9@Lna$t@o4`v%EKIRrr9`dEnUK~GePssS@cbcf;n#+qAfTN_+KJh4sv>w=yUnw68 zi(IT4B=EZv!;F|kq|>XZ$I17O<=CpmIz@WqazKF6DOt3hGU8o0Ywr~u`N6~Z!38LE@_;Q#tN#Fl z6dGi!z&cxrS3_aU9N&1rh2;eSzpOT{B@VDqIaw1#nAPZC-sOFe-{U!l3?Dmpk5BlL zMH7kEM^59U@{dpK24#r1)u{Nu45@o>eIQ?+e*2U9G)eK!)PE{rA< zT6^fHvj&|4^4pXiJmX}fLJaY62sX}z$U+*Z@^sAAY9vzoFj?6XcMlkW8)MwQ@Gt>T zvEb2tU?gdllgAU@LkUB$K6&+mTTz-IJW}Bp5UTffv7H~OnIVdz0CuaatZ|MnIzebQ z_pAzpKowU&2YAh`sM00}TL|c0P;Yz9_~x3U^@jB#4QC_`*0AIhfoN@M~0igzYByFdCc_CMLKXY${t$Ltfm0Ht~P~oS43YmlD~i zBs!uf_%J@uG#=twpu$%347}v7+FA}4NR+Zm9qQ8SS zg9>~^l|Ec`3tRsH&Ji1?)1Npq@Br}g{{Zk-E&Wt96P=sIzwm`pcC2!%QmFxDWq&!@ zDEU;zw1?9lBkNzra-;IU@*uGQC|CehSFB#H$P=Uh?kF_HI&8F&kxALkK${FhO=>++ zr4s@T)$w=`FchP!#xwQ^2>`ajQ8ePNgkljITw6H2>wFD{i$2rbH zp9i%0J29@v_Fy27I4sB=fry&8FFW~gHusc#dCnpEaKh7j_`-M+NbdRg%}2WEDhE?u z7M&*gi?*N!o zp=be6Ua-;11bl~aycWmutf)=^B995_!Rr%nNF9Y=DEH^AMoSA`L;Wks zjG1%_2T1u74tRM^{J-h!$_04EP9j8TP#-YGF2JI4cpl8-8y&VmA5_7R)sM{U2+Ih0 zwDP_tAg_WV3FDIzjVZ4@GdNvs^Rs!}<22KFkqVkzA6Z@iS6 zvEBt$CIeIsm9ovdlWM?#EvGp-e7Plb?6*)n(uGsYj@{-pMOWJ75-%$vmrx=;GTm^3 zJR*@3VrvJwlY!eUdON|Usd8^96;Bf;wyjEEH2w~8fJEcMbdQWN*7Ho>M8HQaJbRA( z;JiMGAQQ&PiZ;k0!R+I#LZ$JazFg0O0puQ&k--eE)dX~<=gvAS0HbIzJ$6LVi{d0i(YeVFeiT8@o9#R;AOK@xQ z!VoV#zc`7tyC41M2(c^%*Nc`;a6#^~vj(FH$u^4uzTnri=(;6XDK=j5-MCO7O#j3&NBf0^zhIgokO|GfqIfSFab|2aS@%`P42d zc%o=#;IPFZwg^X}c*q89VFcm;4`k7Spe3*;D|z*alh$z`62tErs5s0$pMEoXb-J$z z75AMAqfJC^<2%Y<&;J0xzxHBoAM-2>-*i<<*#HEuJB49u`|9T@UI;@U+d{}?fCz9V z<8Yh!V49GyafmY>A^>3>Gd#lIoaUPkA_P_lLQ}I4aKWJIAb6mw|6U>3N(uZOH&RSH>krNyzn%(-(T{D~Wi^jXiv4{!5ww z-ucw^oJ|&6cQtr;M^nxcdq zx?_Y00ALVeZ3NRl;QV0R+isobJ0ae@oj566NK15B)5)xE>Wx)fs8N-EvNV=Hs2^oBXoX)py=It)pd4xm4rC)laoyUHC2x3R`g{UXBnPBr`p@8d3e1zXvICG=*88kjTy0Qnqu z(;_i|P>B@F561j$CSd^f-z=|86I`K;9BVin3PWrQuy14+8EJe+^PGR zbt;nqtw38l$sA?LJ)X}eSeyFft?JI^ZrT^Jb_M;|)r=*fD5k4|t$R*r#LZgSv-sl{ zT5g5tu(l#!9ac>kaq`*ZUG1BJMmSI)<_C?BG%qy>jB6aGd0Du5M z01X)*(N(~Ac32wT@u&|IX)BUQeH>Z^B104dL3b53i4F4NiL=A&0$mUS0c+n6j6BM) z2LZdBCJjxECJ3SrXVZ$hB2;e!KXv9^ty@A88SZt&62&zpR6NyNR!OWOt zoNAmXqx@tLL~RsPXRN6{B+9Vytl9wqu}UWi&(0ZC&?<9+X`nvw!*4vl7>393f{vsb z1DXPn@o>v{838bW@!xpZ823Ej1XUw;oh0CJc)chHhR|XzM+zE(Q)ziV@ZH5^L?=Ei z!24XJQB&DZ_wLz3fSXjU`8ys$%32BS@NDbcNxtL|)jF|@^jq2OpvM*cB_NjqKXcz@_}ts81$n%SVv-Zby zYHR-h7+@-%9{w;|HfcBGkBkKr06{mZn>W9#LU5`YXgEfWhFbB4KuToU4wUR*?7&3R zVBIwn9v(~4qvM8Ag&BCHWB_|67KY`6H%sJW=b zI48-QF=j|tP(-weL`*qFP!v|Bey&X2Sv83{OSJXQX$>9TvM}aq#ZU-B6;St&90Ii; z0EIme!3)aja;{R(PwzGpSRm$i)@%=2E41;`Ed*(3j|7=6(ooH&?Zx%Q4xC>Av47M`X`9 zF#;0y1gkricbqlc{tNjg{{Tsrk5QPOfbc)m$WxLLPxpnRkh*cgawuF{2$cK=CPEug zhBb}=@@oZmufFm<{I~YTCueYb`^qs1VM0&)G0Qy|L{3D1L77seJU%U;bm8?m00K%5 z4;bv%A~Zzlz?%H~#uu6M0O|eWyg;RTp@4xTj?H0BJ!~8vGJM!80Yc4Pb&6JTuM+RXM>zCMbhW-=<;PkAgzlUU)y=Zm1Ff&!;66pd1U?=M*N82%=GZ`@{Z& zg`y`oZbjpxN#O3!ayRxb|bOZ7}(7^KM-<6&YbR^{NdY7JFi8tF~Dilw(4-5FUBVlghYs) zIbLy2{;)&D@WDAAo}Qdm;k4=PNAZQZVUAIyoz8H~@FVKyGRjCnrgdjG<2Ay7*sV*XNa7bRB)UTefO4)% z_1Y>rvU3DS9(LsMI**f_w(-jYQlTQ(a}fxni57?2hvO79kPuTj2!n2fRY& zgi-uuh~3iB_{Cb=gGanYr+C=f#Cz9_Tr7(EMh(Hl4NZ68a2xI9zgyHAYO zAw6q@TAwZ=k!%WiSX|nO#ivLx8|xEkcX-A&=i{7`gGUR1`FX-!pca7b3b-XLd$^q0 ze>lY28)qH3r{Ukr{{UbA05})?6Q?#{Df%0Os>mP^6ydU`c(Bw_1gDbHeB|VcF@e2v z&v^t4MF_7irtwYS?+l2ccixA!F%tAhbm%@+?Zecp8&`2!wEn!Xi7v0|Y`HN)dYr zB|FE-Kw8V8*8Mxkr_$|N>!A>)&(fcu8QHIE$=wX-3gV z?WuU2We0R`V`zoubDAby!U^?{Mvgp2^tJopy4xaheshc?ecpa<6UBRtPo3kVRw@Gd zzg-e@Kzqpp73B)s{A3Oe3;16^O@=SJH`D%x&hw$Sty-35Q9&~-? zkS}@;2S9WH9zRCl)Mm==9^cTlYDTAViF|wK3a?-%Xk}VeeC2^6tVr&o$lTeF;|N{k z0zVj6(WF{IyC*XW%r?UY;+t`5EFwdM)n7Z_FUS&tVk61n#a@a30Jo7tH4XgyVCcd- zq37hw^Enk|J3INt>(1bQSzP2kP+#L7Df|Bbta~3M68(Em9hhjCYNGM#oF))47^~Dd z$ru0x4k8l?ouvLIYOAplc;-2=nhioPYIlNdWHnR}cK6O9FeFb8#t2(mulvbS1nP2r zfp8!rRbA~5GtM0V1XD??Q{zrjs2G|A2|anoO;S&ykG!(3`hUD%B6ZC!#NiX1h(t#k z(mZd6ScaU3fFMV)H;2w_>o)pZN~dS1vlm)}j|lc<)3Bi8dBn0%hhQ$%$;MH3?emXu zvKsT;!vHqK3VXx@U6i{aCtJlWU}U1xuQ@ik^&vF;{*M|0A9zSqfaI*Y=U+KJLX9Hv zrH>goufigA?83V@FI-pT@AHHjqrVB7sT ztAzw{I8NqsK}zETj<9vSg9K+{mS&tO?uWH7U?>Yf1T~=KH=4j|_Ye;tZ^PaKk%mIF zM7(=FIFUla@nH(ht!EfKu7`RTZjQtE$L~;t3*>?4PFkXp6nMUbI5iDAfTM=7E&`B< z2;gr&0hIJQiFt+o*izw0m#fk8;1_@&Pjj3BS6!}GP|=optBu$w0u9%ZedETHt}FR* zRx6_1K^0>H*M-;foZ6WKN4!vk?hbdFyhSMFc5l{l?uNi|7sf6UbjUm$Mf%Om3wSwp z!TjLa>Aa7Vf%w9#P8g3sYlHs)5ip)pZgbpmsd`)x`^Lld6>z9m19+c~lfNZ*oMafk zjxURFJA+53okDyV%>EGt1?Bm13#xo0F^nCi4}-jMsH}HfsJ0ExY0gYz&yM|I?Re+s zBq|`fW{tNM?b7f60Owsy{H7nOJSvb`xWj#CBkHDw#=)nI2neL;fug50!#0A0kscEE zTr>-^EWGaTgCUd3oPC~fm9R_X{D-VIyWmk^9#w`cMI7x`yKxhP<|qlB?D`N06l4(I zLgjVv08UC&PX7P~3<&6YP3yY$YX<-XgQTAO`^!5N2O9Eqk2{Vz{qcw!PZ+3jocR6l zniq|KtkmF};wj!V!8nemyp1h&Msc#w6E(=tZus_U;$a$5LJ_22SORrZzQ|3yec{Wn zGX!qv{ll{1jH+qJ%idq5;qm0la?N4-QI=+z{{ZVMZ2QI@u@wE0w%E2A0Jdyl72csiVbOW+l+OYw^k4v!9jdA>)Ev&fDIc<|U9J~9c=yW}OnjY)ZW z3^dcvjMj>d`uCMyRCm!ZfR)%KtZrPuTvF^mI4!wCUT0VVIuz9Yu+x!P9eMMBKw4?t z`p6;h{y)TKF^AoD|m4iJYj-b;zB5#F~C*?csr>a4)I#H~t_;N}@-mvGKV{)Q84mip}M2WP*We{shO-qpe8`=Ts#4w1U6pdj+ zEQW^3QjhWaFDXo#=Npg+7h*a`jJ-YBI@#!bJHyZ@H4B90tU;=$`hIhIcUm)jQ>+|z zGQHgwNbGuY@byiK#Nj%2Y~CegY^R{X>7CCwAONbF z4D3vz+tyfN>`~Jc6RWdMI1&{TMs`8^#i$WnUrgihVS)8%PYPO(6yfJsiXMtco_ylC z+QIFZxS&hb18>GSo97?qj?ORr;yqz1eJczaWm?8d;`8w%Ia6B9jz zAtq_D80CS1lPea1=)nMh&;$bww^0Cn=EC?8?8a%deJqn}+ z^gi=Sg=jS{o0@hnM%d|^3|+o8aa~a2)!FCw#u8sEqXm{-Lw_$Bpuw^yL$ctA!F5r! zU9KC9Ae4DT5cP$hUS}+XGxo*E0c?+PP+y#0p=xKM55^xDhz09m`Z1jvIWY}pdrWrW z&avJ^4c6!lHG+fAs0pGNbNN6W(qb>rH9K*PB`IJegf1m*WzDpH%PYvd_or7XesqJZ1S#b1b#dE5LM{0C za5gKq+{3KXvG1n=cjriHa8n@wbQ(TGtQ@I_%FJ+`s89-U#7^R2gaXh{NN9uaz2vW< zfZl4+Bv-5c-`<`*l z58g=^U)C`R&b6e)C#xhUUE>MllSj?~OT$lk<7RM|#hgyDW`uk-Ua5$6x;;?RC&n=G zHC$i zaFqu^1RSC`l18rrc2kU!DUd+w#9!|l4RQ#dPFnhcyT5&(#u|ptu`ozh0P^EDc$2Ph zM_OA&0^~sCnCk?T?rR8D3Q9VA!$A-^8Aq|h*~O*!OMe3W>pS7;z+DP9%T``#G$lAH;tTm zF?AtTy>dD|U{T%;bg_eovLbwB8l2!LN}V;Ug6D-`FC$BFf_vahryY_c`Ml&MJ(Q{b zvUx@5OZMj!v{A7);}8Z!9!#0j5~JKFjBX?^Kn_!TtWKF56gu zgY-Xs9Ege?P#A0oUd6ce_=%*%Hv%=s%LljxmP)2NiF*3WvGgR&HXX*yi?#5p{{VPN zb{)MqQpRDoEA@vF3(7$Iacf)yjeB?R5Cd-`itHjNmaTgZPRwN?h3?Fs0+Ai9I6Yv@ zcB;N4>GD09q6*&5Qg{3g709waz4wSOUlUXN!yqD{I^j>;#8b+T{bMC50<&?wOxehY zCdKbSxw3RTYaUMFWnf~EHt=ctHGcD8LIW1UOyduudABUyAJe$i->P zbNJ&P10oF*ghxpBIbntfAVOAZR-xW6#UvmYi0nrR6v7cmpCjz><3P7Yt4euYc)*fs zUE0^O%vg#-`&BDA&|f$qcm*=MUigIPJJR zFmKirIKYArL@;0jPBY>s8#a+?FEG)73>1(Z$YGj`lE|~XZ*jkzXmYxSEL6T%YnLTc zw|`jF=x75j6hWiGiz#D7t$HyOSfd5g%D%AgX-DyjpDt-MRFpidTzP>gN0=kx<+zxW zUVwg3K5-N1r{yA9PBu)R7c@8MgY*Y(ahKh#8W&%9exeVinWn}iN_KY~Ev2In4uCL8 z(uTsFWny=4!hUhvovM)fCJR6gjb*JtV~U^a{{XOhFg)P;z`3lB8s|5U`5=mO#$8X) zE?Po^e=CY9r=hPKF`I*+>|dN^7eVn`^!Sr!`7c*c5$>A0LtczD4S z8WCtF(wNnZP>a`3;|reGbbhkOU%t#z@4ds;C@pUX@L;YUT7#}djhsNEDO%&&{~}j-zfkr1wev9S$FNkLrx$hgGkvE>jE-B25yd=g8c{} zY*7$bm}0ltfd%qx`y4|eT|n7Wv)O=G*0-BEeQT2&O@0^p$_AS_@to&AU02>L7jG`4 zd9xu!1nVE1ldN*B zC-KRa1adkesO&?I9{J1l>+c7bU16FvuFv(62Eoz2d}C9lo&)!Xa^{C1Eqh9SFi;@U ziN>_@Ri`$xxhe?KkeG?#92G?JV7<}^73nFyo-4fL`D06@U6=5gd@J$Ct zVtV{#kULal*^2|czg`)VLt@XypYQzIbtR)5u8Y&hS+61q*=FZi$#khfNag>WlVZPGY84oR^i@>%2VCwL+}-t&OkNNgGr{v>Kye z=Oaun^4|&BkGP%QHe&IC0TBtVr<|Tv$uBV|^z{10i$TZ^!VGLqPtbE-@k0?o@CE5V zd?hCgrT!0RIH|M~R(5zDIa|9ty~O67;-!Fzyg=Q{{+5z5s47+A$S6WTVwDdhFo3-P zbRIGU9GRn9nNTfLy-T3w)&inkbwURkw2tmJnzBtLWHjSB#UR+G8TVKslnvnH1^`0_ zixw#MVXbRws)ecR7>CS&4hU5FEvJ7JGat|5OnP9%qlO6?7djWsX_$(>BjYU1pK212m1YuM%)G9JM zW5}m~IW*A(vUKy4k`#gDfz78Vd|@RYX2tjo<3`xfN?r|XoE-rO1==7KuEzfPH4P3m zqICw7&JRV=&!oT)tOt6@uK@ytLOi4+vndgQc?u3mtLfekyd%4uDysIrL$NWhR3l>U z@7uEx9tk}u69OD9*R^seD(TJ?bP}A~sX6Z)#0(06b@OKg0N)0*Etw-KsCemq7{wqh z14oQ~MIUOc1Md#HY$hSvZcfA_j`XbxfRMm$$p_XDmD!3+;A~FB>`qKlULi>+U2`D6 z4gsKO5uvD^Baz-b-V9W&S4F-=I&s)bh=~R5o#7xf>;ysH$l}q+)hni!GIh=h9TiUX zW5VeSwWOdxV!jB#ht(KIesFtD0ypMY>k7oSET5gYw7e3D=WDkn;z|Lo)x^wNjb93A z{Nlu60Ul^s#sgOkLWjlzKxv%*TuLhQa$2=|H-wc7=bxh!Lq|M67;9OA5<0(F$qps< z05y8aVs!pvW(@Oi^K(QByy~ZoVL%*(B64=0E_AwuU$s?z;iq?9ypCMN4R`}D>ShNB z$DcS62)@uYuXqfN8PUUsN=ukNka)z%&x6n2Q&9H&;L(=oHTl5Q7jd>_SFt}o{dzJZ zDK&$?>+~sjz?n!H!}0z>Z9Yw(kJKExG61yz@(2CkM1Z&*`tgwf4QMuS8N!HZzYakbAbfCSDdcx=ay7vX^%G!z#XpCa3m4ILZZb zo)BPNy8bXHh)@CGHS>_Iw|5i*gqt6%JwgYelGB>>;xgg|X5(l*=Mf_Y`L?Ax~IP6^OG74S8P6R z0STo$-izGdoj8ceT_a@#?Df;@3P5B;_^&1q3L%2%iNYqwD5GQnJVI%FG`#u5 zm!>VA6Qp`f5a=$i`^0<@k8M} z3eW%z{`o>2-hPY(E+n`d4@PPQRtJJ^fXovnAIKabwD9tLU`7=p zkz0{D6CI$f6O0WF*G?(MCK0qC)~+#Zbs?%A4Y+GX^<(?t_VAHHdUcBfXfM5BJ%bzy zEkp+!a>vD(6aj2Oc(Cs!i33P*`AyDilGC3Mq;beKWFK#u8F&#p14@GkWgpT;7W_ZO@9G14=N zJYw}P3l4E29O~`_U*ER~AzFr*ckfnf7m7HajOHo&W1;#Bw`CbFw z8Wd|?f@|*r5cX{8(=y^jqO`ZiuJdYv8LB9r#KfPZRvWxwB_KKn6z7V2elSzPP;_^U z>qLjQcxhC4fKx3{Gp%!$D$)Yf7ho)X(BLrM!VBFk8b$QkcuEJJUsE1M7BBf zSU=7&(ge{yoQpa0zOt&daYnYrm0a7p?6}BsuWnzAU6!sbA*@e5;J|pC<0D^=ZY*>f z?Clis)2wdnH_+b+$>}xk7(E~<*e9hp#6c2D1I&INckd4{=^F9_N%w+69dV=w#4%GH zp;HiS32zt^1VFUndY_rbQ3Fx*9D~#8!Xw9@W^p{6e-jbX=Vz=Y>-=IuN9BJ0a(EV| zhaG1E5;~UN`@>o{lX4ThK}L7G1?cR<3K~OJn>J~< zL)DA0)DINILW!hwkKgH8U*Hd4pv(t6(R?cKbeIPt(J=?3p*+k_F{sXvDvSGKL{b?N z#77hyTPQZe*m`M>PI`FoA?fuA&linp{v>NNz=LM389s=+4lyIdQ3WsNt6(a}<=Uh%O zY-4Lv(;O=$O*dtTzHq3BkVi+Je;DLEg9{{%e@RQ@7XJW@N(iy<;~N~t0oahFc0FRU zB#Qt6pm1Mjj9#-r=tzS;FeL!Vr6gE2+rt*9S5Pt2za(->Jcw6cDi{EAN`UpSsq=*c zeil>}LAju~S`=eiI<_+@5J>P-$Y7S5!5#eID)vtM-V$^H6-U~;2a^V5A_$El^HtjK z2L}Y>Iblp2{ypUH6t#=wF7)f<$n;kM@(j<8KYT$o5iZde1w)E&$l-;uj=W&f5?oTu zO%OyENV_L};me>hP)6ciS<;2V)t?Q}Ih zSUE&fjm`o;St@lr29zDJp_evCWJdOR98iG4u{d;_;K^*0k%B7erw=%wDWa;Wd1}3! zbCo6@_~s?K&9U%~#MtCScF;p;8UygzfKO0>0xBpk=Zx6FniW*!QB}9BO?eWLj1ut4x%7(Sl?l_n2fa3n9vVT_8Y@I%{* zp$W`4`M{#Dm%L7~guhN~D|4J4c*?ff!G*sKN7g_H++P@n64XL?Jm(Bn<-uoeDvq%R zVA0D&Gz$kN01p6v8AgH~vjRdzAnxV8N)T20ImSo6(LC4u#((@_nupc`{!^nt7 z29C0fJgTBn(kOaw4WsQ|IS_?|gNr8-U;=Mr_aBT*bXBN>rhECt15Ct{27uc+z2Lyb zn4rsD1*Gul!XR+0o<4D200OT8gs6NxzSpBT#2gL`Uq7gRF};0epIAORF?^t@5y50? z8M5%ren!1y2}y(#5jaddW<^l~XgK)Ul~h1gat|t)(@RB8q=??fPpm*d6bLHOs=RW# zOlL^+)y-Ja&dlBEa1PaY41X=R#vrCod*=|8qrQ0S1=XaQ)WV=U3D5f08b{y9&P6Zd zhyMV~(XCTlJeL9^ly;2x{{Z(ZtC=I-JfL-j#&OYRaWf3lRC0283n^do`rUJqTjX6lolOQR6CMRqq|} zAon>)gdR!{BZ=IWi@8Dvgn{dvHAclKD6EUdXs2tx#xxyvxTrixR>6A60bPLXS??RX zeuYJK>jua$rz$Ps!yG6AoW<jF@f1QA)3b zO=9~(-NqGU7jvwuW{BV+e&#L=kr3X_P4SSzz2IP`q2jMCyqFcv$C^PO<1a3;`5>l* zvlF!nM4V~CxX8f3NhTX{YUp3FZx1VYc(p)e__-0&-bV_c#xf&E(~#Jo2>$>W^S(>R zSEUtyX1IGXKm_KZm;euM}B5Qf^RKEMAtmxmJDw6JtjiP@Q$UTjvEIXRRkg&5K+YlgyxBr;rwCqL7{g7VOefYHescI zq5)D?{Ej&>Hhn?V!c-MQ-tj9Ma>umW`Oh12wio5)$2d;7zyqoUUU2ClOp4#UT~~}# z$yqlP7q$Cmo>wS1KDo+3K9~oU>gMn#A&6Ezx_dlmnG=yiY6Oodt$OE-4IxB}K=+S9 z$)eH+bK$cN1R@=%SF+PMdAR4B)&mUD@~Z?sZt&a)6gC^2&T5Ef8>R(&gs=)<65=*W zQ(ijDT1`JV5Y~^#j8CUJP$J^3B74UPaS~g*g`0W704rcJB1Eval=FtMn2<&(kT?8idb04Qz%00=|QL*qdx2x2~yB7m)RiH0h^2FU@| zfqrovN~j8=oTwY`5Kc(3o2#{4F&v}!rWE+Nk)?{ly*9Pp%$d9-hV!xy#lVXVppTP@ z^ccvyg}opd_mWNJu<)#*^P50tO}V1^61c6Sq5iTo`YsKp47n>}G|BrQ?vcVtXf(wo z4Xi%njz(|I@@onWDbim!&86}ZyU^&x7Y7HhE4}hCKYo40awbsVNeb9V}Tpt z*mZ=CMnK#vOX5s@xck+K75G2yIQ~)8e z3{7%%nwlFsCr5dH!d!mG*}RYDOjIdNvR?!gs2&3JP| zL5hVC0xHDscnZUJfW^gIvzokXB{(V(9!14XU({|6<|xI>x!w)H9j?2@Hhyjqaqt4w zT)WwkPm5YaXaEnxPE1>{LV?^(iFm{zGg70jARJOBydIpwA?&<9(R`S~qCqq&iC+At z#%M6__`vHtms>M&dcvX4fBt5m(GK=~WdhgT-b2$-$gQgVEXOvgL6_*oU9jU*N4z|i zX->{|I!xjm3a&^Np*j49U`b{M01k;nl!dE=*xcEqJp~e4I>F&WD2SYi{{RWm5fKwf zGg_zT7rtIW%hc+1&XG1o(VNC*BxE|kIGkQFcja)LVi_y7BXR~I5a9}N;{8SC{758S z3GISZGJvuG8~_20l9H1Bu`-g!(wdo+XqORpngY5+(|wQi*qoDXLU?RaN}}tWZfqNH*x^?*i2kC3LK4 zh65{!Dmxk=miLYa1R>e)-fykJ!8Rg{7!uLN`bX8quOLWO(m_ehJM)8Z6VkGfi5X=L z;87JD{NaF;-cd(pMIhb0aNA!`D-^XJ>hofVo29(rXvv|#u(Kxhg}WxzSK!_t1+JZ! zjl0LF0Yp@i>y_D%Rwzx0!aa^To;EXrGc1y`Z^plTbwC9bAeC+{wOLWyFX6}vF2_1| zOi@pgB)ns7#q*)SfrQk`q$>BYjYQKWbu4mA)dLu@cLg@ZZ70Li7vIBo$oW`qI7 z_wN@Quu-Dv8;;pbfWRI9048d29cmt)vEoyQqubknDp(c@o~{Y;YcTvx&lJ$ zu<~US5`&dp03G0@3NOCf)%}kAW3+^lcsQSo1ezWcPk3r5hE+Hnw?pro8qo=8paD=6 zOxUB=oE&V55Yi(=O^Jb%Ou(r>0kGk|c}SL*Vt8(!2;pQEWf6+j6GE0!;3D6#}|vP9VdMd`V{pXTtFsVsQr)KkFCur1VFPl^CEkEI zV4{FZ5bZ1TkhbgUI!?-Qnz>{Sr$mH3t^*D_D0m320F7yvy()Ydm93|DgxYY%=^HIkI6nKX>c4ANZ;@JI+bP$;5oNtf=wCYgA2-2ei z>4!0A0izUC9xmYe#tSFFdce`dTR_f3tX5Vl!NdVq%5BT6cwpY^mG(#Qb>PBa)~%jn zqX8fwfDb`}Fb@zeK-c3hTif6N00ka$KmDbaK~k}zB>nJ=Z~+hqu-nR4&Izq+T8N1* zg~02bA3bAUr)K4expf1^D<@?&O%U_xHg%EBcDED?ML_A_&NX}E578jthK$SUkF8?) zf4paFz?dF^xvZZK`aAsPpbvcK2%!GhCfn7oVJIOK2fDR77WH@Q4F4v?Ztq z7VG54jZmP5+5!-5@WcHJnnhl~-&{LCNT1?*{T*RMEZAk-HYZ7z3=EX{L!XzEyoLxV z9ISWS@s2UC-1#!hg8Eu!GVyHdI8RCNX1*XB=YuW>cYkps5p}BhN4&=57>+c!>5g;dM z(bh1zi9iWRQo2laMX&da6vvWpc&br|hG|Mk;~Ll!CZAI*JLP|Cgp?4HzTE~AwA~8w zo+#Ixls{NV1-<~LZG2F!&ZV&27XUR;93{91DDNVjP-XGuPKTB29R)1SYU|P_^`zO3 zcM5ME4nmqQ2%6Uk(}Dn_1nDr*SD^CV=Z`r*Xhjyc$;jZKqj$}S{5;?R)$M;7D2OCE zFB<0x=8_YHZ*?Gg$vmWf3V&G9KGfm!hGmGoM_K5l(cf?A1CLmT(F!7LM+r^Rci6gnACpYWi%=t{;U5k%tyi^I5%&o9xBYVMWC;B8 z`R{3PF>+&XbGm@G~$$c z!qq@Zp6-kR(y>mRgi(aJXgwR>^P8riiwcHsiE&qzT_UQl-g6drIT=yFA~_2k=*4PK z9ImDOo-!oQEZS-Zc6~W|E|LvOH^A2hTIkeXMRheyL{SM>Z;vQ-f_ec2=c}Rv?dUH>%ok3UE zyhMNe$=|*+#f~+`)A`L*@mvs(yf&c`S6a;~2D_MFC!liXqNBa8Xch;=!=%1NF;Ldp z*tuMy1c%C#EDi+?9vOmY5nq>(;|URH!TT99{f(e$3xd+9skdNr4tDi`FQBwU1w4%p%OFEFTk3<) z$%sV02@xSS@#hJvzf*bU8Pa2*o&0ax zl$4`!VdjC?6rHl9xZ0GvdU@a-O) z-U|-c7)A%@4RHjPU>snJfAfM`zkkjSc|7CDz8U@C2}#0&cuw#M9MY-CaBiG@+-{+q zEh-SBb?X9}){$7?N@;v1P_T9>Cz-Z4Y&XUHNq{43mS^lUz;0s?RL0tXIf8x;C~tV9 zSnN-tC*HV@OVNK55E&LCc7Z^5H|qvRR)4Rb5U`lU{N4BPeJtl{Axt=NTJ= zj>r9D#`2LkYmV|eKZ7;9&7OJ3r|p4AExdKS0178u%gwu3fHsJdaK_6bv}+vv(4b3Y1%{fvh_~ zI#K}c!q+t4;X%nw}z18d8y*~ab^gq!Q$K7BzqKk+-I%MB zFGWP8s@Bx=G3T5|(gCWwjiKz|j0K79|JLE-P zYtK&ed~8gh02|ie_dh}F9Dv9~PwUCvMZGtQb#~l4dd^6JF7)2VvBLqgtI=Egm>b4F zmk`G$$jwG!BZjpB5#w(-L#l!0kb%>Gc)O5PCXuW3;oCWJ+f=X!9T?D-jJoLx4>NhY z)Kbo?fOe~v;V4_M4Q0A%;m44vOA$1Y#)`!4qm=n7)Hz%zyOd!Vs96C}U8gfE19PxnqRTLhf##Cr8aO}ar z00*PvGzL#R=PGYIU)vistVU!vW*&>a@XNV4#}>|Yf5@Hx0Q1QdX-SPY9#dF{qu%hw zT?!@$r;(t47?oD8I|7cM_$YysonHt0!js+5zWMxO-Me4Wv>e7vSerXFj3H3b!36GI zj+0mxV-7)}2M$3rxN;fLYKR2~Pczm;t`G#JHK9r(`N9OkDhrTJF&1u^EHA`%mW2s? z;O2n(8whN~zzNa=W3pI8;xY@yB>c3MC#-c%#vGZuuH}#U=yB;AAQ-+@}Tz zLMl+Y(OGr5`OOf8ZAi<&otWajW{^G}%u&eJ8o_WZuyM{kU=;y46e!I&MjbFN4jqiC zn|FenxN|O5YXp4b8u|FdhAm37E2$l2&u&b8Va+_?HlXk<&o_sE7|3$z66>AiU~T7T z-VHAHO=~ZcR-9_Iz51d#}xVp#U8Bv6Chtyxr1vSJPMCmykrh;$@qf#1u zKFsf{HX=MCay=#&I)rw5oYHb+&PRBtUkLgqc#4PeQgei3uxNQ)l#BD@5(~z^7av*z z@E^O9Gf^E~AiKkei2)N@b+}^i0kAeTMe~u`CEMcolbqz(50L|AGh)dcsYN=)B26LV zY9Hpm-`X#N_l^|O1Qan5;%25qgoc=jr%qATJn)SA%AkSCfO`aGfY1Ek9nruju7D0) z8fuLe9uh z6$}`}hkRipy;|ASd$5O!qa4vL?QPj~5moDWBKkEt#L z+ftW|!^gp_ml>q0cwX!Al9(4@MA96N3xr?`9uTGY!ed9rW&w6|Vhmb$tFRSQ-VVG% z-a_ov&S+2_#T_AZV!X8>#0VVt#>(-4MEH5*3~6H9RIl)UuPcYkPa--;vDP0^que3g z%Tt~kCMEuTVUF^J(Y~E!Buyh!w}&oAp|bDs?;Cogw|Y|%2U@?L@Rl191tjLL0(Fk6 z=D}@n(d3`b7G=}J&#rTTgEDWkN7e&L+j2cKz^7@zygfLRk_D-hnx)s1BNX5u1{7l5 zm=BMb22sz#gmj4M6G-A(i)iv8<@EA#j=jl<_yy$S4JZz__sRU>9^kxv7=D#@nii#d z-UWgr4Fajv3Fiofj_&1T&L{%;O8v+54OBsHl@Ec6_~QvFJmbUIY6u^r@rhCS!kc)_ zpxnk|LaGl~(T$$(o-qJU#j)XVBv8dVZ&w*!l^&y>gLs!a@Wcl2&&Ck>9s13*=M#uY zJlq#;D^%A;EYV`AA@t1?5ne&gj!Y)pYW`0y3`~5y;!QrLu_frlweOFtsX6ZlTc5@p zL!Zt2%N@h4iMNh!MOWGzOmx#n-UP2NfBmRdD;(n-kDKcTx7WM{-wXR?TECok1<|hO z=N52}&LznGVo&j}@H|{Pg^X23G<7L%Hfh>};ipUhKUZ0%IEe_@7iVS+7*r;a-y`0t zWI;3#0NPL^u@S`Ps{()o1xRi2hSG(5cmDvc0d$6-Wt_x#!FEPdLPXLNW(pu`0ty#_ zW}0sjT0yPPh@C$U6pK_^pinvu=Kv)EgN2Ew@rerhG@eI*Zk?>V<*gn1rFoSZ%8hR*QzP}WWBuFMFl zj_$yu3E1nohJd92$Av~m6+aQ6rQWJG?R&Xy<|kQ4D}z5xWK8FRy1=|;n!~W8&0k00bk&_qTf&akn{6K(VP z-oHOM!ebg`9H^mB+#ehrM5%QcY3fh1LqZ zGg9sB9v$E#27uGS6niE+)eC?*4#Dv2BuBCURBoU!_{xmXq3r=7tC~=J%l+pWL!*BR z;wCx+wD|LYImM_GrFcFZRAwlwSwRYGoF6zZc~0;yr(BDAe2-=e_Pf@^@?!Bcr?30O zaMCoOb$)P$C?Xn(U1LYGwm@=KB3pz?<5y%q-ZqUCZ7nGGOr23sj@G<)guGYe82-Bz zWQr@TPaWf+Q%({W^9*9)f~<;BE5#SqL~=n^DS4zbknrTd7f!a~_fbz-DnZRyKNAN^ zfD2;r2j6&pK|yl7w#B7uxKm5QCyW&5JRIhe>k!@1@2nowtPg^`BVC+02p3_<#9lXo zYKIcK^y59k_jNvS#jOWE1kg&v2>SR?m>9x5-H=P7dx9{0$2)>~-- zk>~RV8kOVa0bJe`Effs6ji9+RoQ_GM}YP366=hbSSVg+ zyf@Eo4x}4I9Ugbn+twXuB1%GDk>q$xJb-{zuAnyEw^(MPHA_H1RnMFaV!G%=e1#Ve zK|yUJ#y~;6lAxYjgjesSi}Ii29GD!SAHE9*Bcc5OE}*1T{Us-J{dXNQ!FmLX9LHaZB~SRjumx~3Qq4hc$;&*;4S{xq4$Qj z-;6|#eFyf-IQeh~{d&SK`Rf4M@5UopA}bj6ma2R=2A zh>da;?HeD7jx@&uj>N$_87@>a1^YGT{xY4wfB_7Osh}`)R31choi}yatRya_D1dzu zv`u%789oqNdP7xGO+28B1W*%7*$$ti!klVHAhHQ1n#Tjt1u5iqV~$PQ(D=OKqR>!? z_(wU!3^EO!^Q^1S*Zt&x=keKPc+0<*w~{< zBQGvJWEU)2py;|m`Nn2~;R#ZZG1v#O=Ne*5r2!Fin&fcViq(0vMNoR2W7n%e6Z3+~ z&JE>b4pS&*n!>$hTt7Aou5de|G~7qlJTpy4@+T*e!jGw}IskRf@(~18;k~zAS&E^c zLL=UuFjE|$&QZN1Hac)HRREPZ9fybN<68}20u}c!jG$}cbB+KY()T@>^QL@_`ud>JT@-e?J`=}3sT9r>j*XcCZ{q&kf<>Vhd*apZ@e&Pr4@ zmW>gKIWcKI{{YP_P^2wGM!e#z?BEWF_3JeHC6w9#&|170I6x2(-+{fG88Lj}7o|xO z>-Wu75{hdOv=Kcy#WXeQpUzk^ghe&!I?DA5lm|>mJ}^G0fYgx#wruYRGc-l$jo&AD zE;Gu;yw5n&_dfASAVKKq^x#_6XAzP#Srb{T4w8bEbshM`C{92hVvaE`&Je%Dom=wy z`ofRajIPs-x09|+OCcf%vEh3hlnYD3aj$jWDCUJv@w_KS{r>>GI1B`1A;&oQ*c2$D zBAMoT@DM6{a!`S<{{S#bIiqo;b5qMv@XTN(z4*$@(Hn6E(D_pgC}Y6%HRcSW*bvAru!5Q+mYE=#b6eh?mC(=KhSzag{ypnd!n8c2@y3>Wq(P$yS zbx%0?>_9|(J`W~Zh=QIMoPdJqyuL0h~m6i1zK=6)~ zB~JIZ6hm&h)bA6;^d@7^M*fD#8sbe!V~HRw+s91B3`D2c)+6BxTduaM0+#z$(P z@fL-_(l}cXM)I@1aS+~`=tz}?p?kRqK|mn@4#5hnlXx}6c#41kQBDLzm^qOcZ9Ign z@@v)$m_jJ}G>#yo=>UY)d-%ncc-Dur`!$yj1OEWr1IOQ49Tahax7hJLT+<;OyfX=e zRv;ZWuQ?b<>VT4J%pyE*i?6R4@Tf%adFvF_6qPpX?=;qMVvqoY>7nWC9x8&U>~jd_ zUo5WF8?D*q`gM&U(?PS)>HV;8>0GMi@t0HdaQzB=ev0|S%M}Pv^E`^y2R?X8@~1)R z#=>RBz~DTGU$!?Bve7jczfLkqASm_+PDbu(st#*-9v%GTS|^jSzWC1&LM6pm`^!FD zGc*Z8SxfHVo;gsq62)O-jIfm;0`|zGZ^4>bEc~m0K-ivp#O*Khl1P<&9xuFfMF4@W z)!&>K;X=C>E%F7$VhFJ%qyt^%ftxOkZRC5%5g4>XInu+N!9qmuI1>yQ~NPY zAQ7|E$!^cmYX1O({vdsongMVrj5$w&DxEOB7>oxz1}AZx7y^tz)xZSd^@!IHb9L05 zC>16ILfHfj!R0VIBZW%g$aTV@%auA5#$jECfNb6&L^`jcYZIGio<1f(vOT(;+>wQ< zU{hv}{{R@!Xc+>jhE|eg7iP}hFtp~x-P6X*^6`X{{{Ys03~p~0L`(!=tla`!&?xo6 z))eHx2A?3|&i9c{AFMGb4k^#)5Y+UmfQ;<{weuPGh~acV?vdxGtg1}3)28GoxHZ!G z=K|A#RJu8CGRtC$lvsq@lNgl^Ad6h`7{t?U4|5Mv^Je(xBAf{?hku}b>Vb_`ORDY> zHXbliCXT9Uy*^CV;}NOC1z9=X4+ydlqAwEjfPcK8Mta8;I%@X;g2^U^$;;Yb#x$1l z?6QvumqSh$MsTa>;{*~KFMoMZB40A{4iGl26=OUYSP?>6ci%=AL4~2~UJSNO7NCQo zuCPr3+jNUHcT63jHiboX)=mf`;aGqMiLc7_*PJg#(&$%>rfCO8*hWwk8G=wd0HTwMx;BTcuF;{|?0XnAT2)5bhW%{dcldHTW6O!+u1&`GrsqD+t~3WqPKMw9n) zti^Z*x5htwb<+W{K+Wx996RF_v?eHtV+rY_yMSaeKuAC!Y}NofWnTjDYd3VK=VB$c2M7!?YD20&ekrfi_}r@WFZVkXSt=`sL;Eg@lhGJ~)+ zKn)+qhp&udpdrRkJ^9H;AjxE^6WTvH7_K!`4h5?7#;`a*s_A7#*BEa_sfzy_)*RC;v7mjYVj1^(tT#fYS zc=g6GZol-z9Q@95BJ^>d&(9_u!uNxD)#F-l$nEB9Z;Td$@z4C{Kk}s1#rP8-0p8NF z>v;AN0D}-%jNU5jQnh0E-&v$h21|c80ni-qi}Soroj2v=`ODCC(yaTyMN0EXbJ&@t zil87}{{YGt2H|?d8gC`Aag8b(!zDc*2fSe6pgRz3e454pcfh^K1uqN6YuhJ`YeLD+ z9BuQ%crAi->kvpY7)P2F7gbJ5V%-4JSTPC-M0lHWU?>$;Q4O%8mBqz^p}=rIf1Gb5 z00b^6Q3F}P0=IWOhnv<^p>WmT4iVN2oP6gN9);V@>k$V#)}SevWs8a^~0}^_#dUXrQ!xCRfn~;L$yq5#UTb!3Ng&%VD~^ ze;VZRiV=b~3{m24<=YAXmGi;*(~JX}IPt2#oKqVT0v-yFLcHSh>;ngaI0K9^s6YZL z&<)4dvLmb;6Gd38S@D`)KoCcFCBPoy+3|%tKH-ihv)OUn?5q7P#+)3-4uIKdgzeb0Xp>PoOd@SHP*nARq@`p>cBX4VtF%19 zX1rs^NC04Nh1Q$^kWf>qWmnjlSA6Be2zQ6JA8;~&(G!Hto#G%S&>(pSJe$ThQ9PUY z-F@JRpen+&FRW!=QeD2wr>Dj!dgbjy(USV?MURKm(}imecpe|=!&-_qgOuATQ0i5R&154FqI1c{|Au zaJzxaStnB=0U`uNs&bAJph2M0{@4T|M0D6c7_NjAigbdz8$zX20ZB#=@rnJIKdPkXL}_;V_jx+R$J> zlhL3kyR{R%0|+mhI6x`npD9H}a=EA@(_LWxj;C(DQSh`s4Hb{IllVH0Fy=`a=n5-2M^ATmgr zW%<@Uq~svjVj!nKoM8Q+X-7juL@w}P(0~`=Fb}+}(|}eoi`#r*&bmverALR(3qlq# z;Wg{b$AbC=$d=GhW$QFk|PrUTZ@5I&!!jKE;T9 zn{d%dF{*`cvl9pfB^ID{61jbju>`qJ2onQ|qPZa!Jc^Mtm{8MbxYF_QylNu?&$5Aq zvEtx-crZpoqj#f>0)zly6ToGZ0FzjMX#iWrHJA3q8|}j}05I;87aL&|VleVm(3e=n zY7Ne(c^Zh>%+udn-Ku0K9alJsfWo=~~TiconpsbAER?_`o&4+nn9; z%l`o8N(Tt)>2qx#`0<-)$*{{!TvQP3HzDkpOVbD z?cn(yoK5T-zv;_`pOM_wa})$26W$^q(IAoReBpvaU=Diu!Y}|O6{lts1Yk~f58D89 zSY!VHH=iHhFOEuuzjy}4i?^BJipw)dP4aZ2xc*U%>s-38C+!4-O2<#Mxna_+4^TQawC4fm}!< z$U&+1v!^G?B60+gdh~I*^^DlHqp6Vjw&(z2XkfiF4=>IS4D1{v9{I(!ck2}2k0&^P zNwNO`(>PT%sk%85T03+XAflqk!g$s@BFEVVF6 z_H*GV-5wu#EdjB14IgXc5=n1m$W!pF)DAjbQdLHqQ&~%kcl~4Ck_PY=->g#onkhrTPH|-pCy-DRz+9FWJY`pHYtUp_tNyZ~tIzdriHKy4_Fq^{kjR1L9<%>^8Qsj(dMtBMFkDc_sk z@X9=r013{XaR8x@L&&;J2}j|VJXixAUK}nIO;GZK!-jXn3hwBep0HzBq^RkfCuUZC zneU761fCNkY_7A(UOOf}6fjY%u{je9=!t;3igkz#xFWsPNMqtv5f?+`jz+r~noBMd zhbUn1u0qNTxQ4jP-19~j-55&qz-WbRX}Ha za6|UMgH;H>aD(s1c|%cvo5d_3aB|V9HAwvBX(+9ND2Y+8k}<)|hyC)^k|;$V zELDmGuRH;ZQL>2pZWDzyz^-|rtJP2`$*C%Ba4!HyHQfOZUc%Hdt*cZzL8 zh=W8<%yTj$g`FJ^u6e{N8ct6M{heVDMMZv0a8jE2RWI9?BHeC8T!&PVe1WCvT!NXN z^pd_-F$!Z>=d5{sr-17Hn3lO+I(82hVnxtTygJb+nu&xhWL>@OAG|rc4OM5xKSQ`# zLij||Y{SF|u-qvdr%wrp6dEJPhTj=R$5BFgcrnEq&?FvtfN)nduyG!+9kC_%fm}Q4 zR1;?9Vj4qBmW3CI#uh*%PYgK_Ya|cTcM%V>4SI!G52GxIMvc7}3l`~ud|`S7^^)s; z^Fk;YUU$Yw%UZCSePOI5$wk=38VFZqh{IXHhl3ILaVC@%YM8OHlWVnb2H%4uZN2k~ zuH(IRiqfI$<;n;{`PNb^zB<93h#D~#2VWD;2-g?AW{sNb#&Y~}EExwG5bf)Xh?-6&Nly9s^)iUN)|VJJu0QdP4L8eo zc=4C=VZdE>aF2%%Y6##_1d4B_pBWY2Wg>RfB`{s9MvsaMZnE>UIsD2Z4+xx${{Vz$ zMoml|YZrS}M1HXBi~()%9(>@04TDM8j~^J1ODuEoAKneE9x;ZDC^e0!&=erGr0B{L zgfjg@1Se2n5qy_wyKV0U3CAbI%QuV1)+L7Gc=!8bF{~(2UN`F>fKpoocI4x35kSCE z?Ry>^LTeSWy6G|Cgl~R#a1OE5>4KS6Tw`lcKq~=OdIidI>&7kpBaz7X#RbHg0@RfJ zVBm@nL*};r*u<2B2&K^-VZa4>8?9;>$+f=Y8NhW`oS1MU4FsTRLdxyLXc){!pvFF1 z>C11Xbk!0CJofXGXp=0auIYsh*_MJ01S8k0&FH@B>r@|VCS{!B)=g=fQTdl4MC(xjmgK)_=8 z#6YjiA6Nh!qJj_M#v*nu>U+w3FtsO<;fTDbs5YD9)*6dcglIcWD)*N}{Qx+}lA$CD{72}xc7YQFJ=W6FVN3Cf`zxxL|Fs%_fMUs+Tdxk!rflei>?!3Frz;fcc>yc>Wi&pc)1!x@m%Zw#gqRGwY$ zy!nUQCe|@Rh?@~MJ}{!VLBwo=01Y(f&LVxmu2tH=Dy##+fb=z3ZeY-ij)qMgAd^rM zM}(iYN>_bv`oPD zM<%fy4NpQHm|Y@E@T2|ZG9X)>m;1mwEnZ44Zb&p#?S8!_U|E@_}6$8 zr#hLkcfe-!HY6@gO!<6$;9@j!#WKJLN;0^fu*05phEmVJ{yRAT0D?UK0LC@-5PtAz z6(~Mt(=7i0gUI|pA!jE`Y7&H&g9=!3sG6*1c{O2jli9@^Z zFBLCivU7>*X2K&%Cr+kU z{busce_MF}00I3kPEKU=KHSUMh#*h|CgGs+VMY&LH2FMV7^G1hoa9-hTh}oDu>&p z(R)fuCm9+9OTqoY`^^(;Tk*C67qaR6U|cp-sj0YiJ%fnK{&pe;lmlkY{Ne?; zY=Vky9R+xwraWU=i=Xd_{3gd{Dtb=GG@M_gd&a##O+!TurR47rK>>&&O$eONw-c%Z zNoYZQlZ<1+#EmgJc!Rzy$p#2r6ytt8Y<&B~gjs}p$nNmr zJ^Q%a58g|cZZpopLJF%4o4{Qp951&Bq9M}WF+=f!*|dn5oDc}N<&3OD=$8X0$$Vj^ z`r;S7(Z;=f;;|RQ_{4-tcjGomehxAT2Dht-^^`m7Hbiw((T^eF=MYP7Hp=nG{{UOT z{{S6JsPMb9TFHxruHd6MjwjKAkWU*htK|OxfbxCiWN#@);WXkX{;Nk-9fD`!?;4~M zo^L68_{(qhwbf7}Zy2QmO`L6~<2M`6{^t*^xT@FmM=TCkgBP5=zF&i^rVZ!!#k%0- zV)KGs(`f`AwmgHcf$bsXS+1sdzRRRalHTxOhh+{p75 zkb32uo*XufojqZy)C<9& zxGIXgx+P+pab7n##x@;a4Z~zWQMZ3MBcy_%Dsvp(q6k7=k~=c+P*#gEK&*&~qkLfE z1}h@cK6i@^1|mdpq4KI7n?JYeMpjl`k4R{tU@qVid!@Vjzj6bsV~* z+2_-Ql@td`I}eMG5|_ZgT^T%9+LuSSHo%59AMXPcs#s@G0In-jw+4zpRDs}O<=Mt~ zH1Hi!R>DihX-D(#J^VT`8b1CU>xH~_JzcC(Si4BA!NP>#Zna$|5v98Wt^zd0_3q6cLY z-m=KawS&lMJUn4W!i5RCx@B&p$Z2{yGHqkwGn79}R(K5s{NmqO!jnK6UspI#b}(p# z(BDoF#`;-^ffkA)KO+P>bRw_9_GBI9!pL-)4S}|x4inZW7$Jq%b#?DA2SA`*2ph%w zMu2z2@$-*(3ny>@>lz+F5a~v)EJzr7Q2nyGTq@&?7&P9GBZsZvkCTm2LSnW=FvAE& zQlNN5;WdmRIx3%q3L^PTEudYlX^1q!RNZ*SSCE2;jiPRk9xw?`6cfg9<7>aPn5{4j zQ0z`09QUjCB*AAcBL)_IK9tXIeEnq$ev)B#dyC&`~)jd|;aP zf9PU%g{pvS;KWX?5-*`b=dpyXF2l3Q*Ty|{n+c*Cb&bq95EqAD0l}ie1+5ZmwZJsp zQbbD&yM)rFV%| zzoZVZ9sV%ekc+)*EPIWhQ65o3u31MUQt4s1qy7!!ZuEtesFxwxPQIHE1?F6xunyxJZVUtJYwwIPDJTlkDOw_ zwsP!at@2?-K|VFk9_b<0zK(NT;id{Ar$3yKq33N;UN&PuXcnC>@?ymx8(XbRc6mts zGZc}^@swlrkU3yFJmn@qV%C*bDbdDIG%PTqa!(gId4c2U#X8&4*Y7eX@r%Qjmsl4k zIr9w%>lSZq(DA?+DCRV6JqGIQ9by_`N2Hel2Ad|;?YL+iKoIfE{bQqM$O+^D$fDsq zs!z#))hi=FI^Hmhiy}e_#6j_s;OzwaK-a8uX{vz}Q8A^d7VF9P&PNDe(iii8QBaId z9_}TfFzmVx!Ar_uK(_|c1PDh%^M&vTkXUU|p;Y8g7>+LAp;CJYjy4t7Z|5k4(XEE2 zH7X8~oF>=SU!~Lx;D<^YSc5yE8!2F}lM*Vy9dV}&-#mO|cmDu*iTP+M5cu^Ealv<> zg=lwsky{-*&L)GD(C-<$fRA*FK9V>Nz1(r|$uN+hctg3;$l;KH7?zTUh5TXQTLrH# zlNbJ8D$tkf2&8~c79YB|Eu3PHty~3dp4b~np{E*p)xLy)8~^}lFc>q}CJk4W81vUo zBn@ZTajj7A!-5k^qzniFg;JQPl?@bfBZ%t}sixNx468VPN8e-9mmS{wLy&nmaZI}P z6G9*TFzAe05Gf8?H+YDx9e|}!?_Peemj~w}f!iD~2;&klPYbWSm9NLF=Prz*P#t}l zMGgMXJmSV`_uedTZzJAoCmCjyMjWj5jUgB-fre<_vZdpkg8qK6g;+aWn%4V{Mp1<6 zM+zisNw+9_C;oB_KRjoh@r5d$b4VM-YFpn}+UYsL)I=Z%tizW^h0${TlA2lLDM}pL zbIfocB2pSZAO8R%&M|1$%Gmv4JC|oivk6$J>J(7e&F6@5sAN8P2Tu7h)!EF(rVTW0 z3Jk&$F+Gk?o3+3p&>$$Jbxu!aK1nvmm}qzfo^e<7K-%RY=60v7957u5(@jyoHwPGG zHm}M3{{Vq!=r0+0%kL_4n{NW~oErCpl{G$b=%|H5q)3^$RaEH>80%x~b5m%c(Wf`; zB=?*^u@<8uFmk-W5Yb#fjxG`C%kc32mscr==pzrNUH68WXL)+#^yu@H?X0{q59C1oicDi!x+hEI7?F-?5gvO+{o-Tmff{ypc?$4zjJZ)<`b6YcHzPw|v$e(%3SUdj!_c;d7!CPG}e;%7}xnE($y$J&pkMCb`}*Z~*9L`oUWF zPxA%9hOrfP`O8}nnbiuuvTYs01wdW8Ui8Nk8CptUQV6?#dc+edtWX&gDjh#Ky{gl| zXG4w&+|DZ6?eZTORdH`N{F@ZiEVNhwJq44%SnHx#~ z-4gGdTCFs`C(a{5rnp_a9IgS5k?jb>X4frYAWDHKzc_68TfOU?6Go6l=i}ZY9>0NU z{Nuo>;tP%drt7)zWkNzFO%YwAi^dY@DbIoU%^U)$B1Pmp^O|iD!)lZp5$`wW6`+ZH zj*_!0rfP*(wdWn13uqlBn8H#L2odio&n6;iVLBewbDmR$U*{NA17~=rFQa)Yd3yB` zK%W@5DhwgyobMUiRVzg#_{bR42EwZioZwz6)3JS?HGwZ{6#$p^!A1zn$|^i~$gu*x zNdC$Cf}j<6nCSrlpg8!$i=m=FDCsSyM?DH7iDTX+XvRgfg)&-t6<>kT9f*OPzx zN4Vl@S#|5ve`KwEd$4RB-boHaR*m! z$LGcj0N6}Bhvy0i!Ll1t@Ze!DV_!yBYzEHqbY4*{t%93dnV@E)@|dLS9XpVNYBU4+ zJ27->EV?OW_Hlp=@<`rF}Sx;M<4{@iKO7dc2yc$GfAR4u00BXaRc@) z0?2Pzh$_E&$1Ngq{AB(etU9M5RUOiL$~Tzw1C(oi47v%&HJcKA z=}%Y>E&!zkZ0B3^kEkj&Y2aJS{<7cK4$H`z{{RtuVEMwX1lAqkSZn0Q3h9|tro8a8 zMzP8;SoRp^_;`vfwu9J-ms-3i!QDbuyF(F@0$HfkDYxmCF93oqnCZaEui*hZ!AVhrsa?I>N9CkZVJ`2hLgM z78jFYw0LGoj!V6I`SFg38bWUp3L~!$1`a*UP@;--qzO(r-YeEKHI~ReZKv4k`^20r zXK#`3`N0Dan}@yi@xzh9NP(-M^#0k#HOg79yuLK(NN>xG2s8nL^?bO?VjAGGxDY@> z7V-RH5O%5l@&M5D=Pu5%zJsijnSj+qtI;`3`Mrrm@bGn(faP70b>kWeooW1^4p7Ho zPiKwiKPQu)MkFYS5IzH|ylWS6#f<*|7k^tnnVJu7F${%Fl+&EmesMeM2knqvI6GXI zhY9EcfCNB;rMk&>kv2L2Kp?9O3fti~Fun^saOy3xM>V2=jq^hl2oyR4PV+#0VoW-b zCIq%l_%(=(fD5fUrR2DXuNj-p zr%eDK3r;1-swTStTW;Rikn;&@G$_VDXbYQTOhztPJ zdvL`Sx*HGUFc4LQI~?NJfDZ2_y?@WY(#mc6eAffZ`d?6=NhtTh$iFf z1fvAa3%`2f43TL(4PP4$FfdSQ5+m;A^z(w8VDUsIfsfyl8$A^n=2wTwiCXeJo)f1J zQgDT5KuOOFg?NdCBdu@IjAaN0#C&_j{{Un{J}&XDq(<0!cnlSCSu14a!P}?`RvMN5 zGiQ<^0HCSfL1kSx3~cN4Y#qc(BE193=Lce!Y2*Z}!N%M+tSbqfMG;|OE3CRcFymgd zw}a&j45JMa(A|vXRd=jkl2WLP@QC_xecMnQTfl_;cZ0&vHBt)|VkRKb>w}EB7ER6`av#oDzs6Gt(VApO$|btH{(QL^h8^^75Tx2w;La-}IPx?Uf6q_KD-U)wc86v=Ct&Y$ND+=B@M zH}Fh@fJX|Z`FT3y4b@XY6tMf3SvV1*fv+tCUpUA#k$4p^gdbVD^!0#m;3Ot&_ujG_ z-yEMfhTe0R7tv-X5bF4FOapOLIlmZa>tft-yjji%bB7YC*@!grksT2e*xaSv0pE>g zu64d%v(!Cz@rx(~@P0CpPa=1Nqem{!-w6aY#MT@^-h*az&Oi3BIhJ9E2VcfRVtbha zuEYNT=89}Iw%%pu8EGPvfRPh)%tv=a8%aUw94jlIfQ<&)vGn0>gB_yM0H``}5}t;t z<r!+B^BD>MS7*6$3)s}WGD2_i#DuXv%+cUMS& zjNb1Ul#^8WA`vV^J>cAQ(+q&vXz=TE{414&>-3DT=p3iKKm5w!gU?sn0UVgEr3x0T zO7K17DHtZfsIs3p10!H?K2D|yWH<4bdV{LLDDprLLUE3hVA#DqK1Mh}qn?+4IIGM# z9J=3xIOq*E$sD_<-|6cB94}i?ok zu-_^d1+%Ev$ubBx_{9mw3*Q}k#NsdY-5mb-z)%DcinJdXN=YWGKx~?( zvdIW_Zzbm$?VJy=#Nmo(Yj^wL;7B%$N67Clf^CY+6SLWj1uMT=!&Dlgv*K{((2klI z*%Kvb5|t*2EAxleU`BA1(C0Ce#22ip&jkGdJpAHLn~nm33LJAa6x0)8yeX9|AMm z@O}f2eRw{ye``8wMdRL2X&w6OU$$LzeN=BW#!8?|@Tn*XF|lvyLJn)c9{e; z;~@qA00t6EreCZe`;XY%B|^09TVZU&y2^@8p?`ef3+&T~F2y% zFC3kiNd&s4MS!JLI#2Ax6(f|X4>>THYZ90#JmT{dPYs+C$<8)35F&w<_i!g7X%r4Q zG@8jhUDV&6CPSO3W|vRaY16`E0L#yuC!4p7;DIch;CK;qWr`#XY@gm#z%OOj?S^=W z{{ZI!wP$|v8}OUPi2KGPRr@+~Zic~hW!;}bxn#B1X6A?!&B6xv#z!-)9b%I~;F!8y z-nrfyCWoDC6#@J29MNA}{xg}AgI#112ZR3rb(v}dHkWJzen1nhQ zV@^ZH^Hmd&?Jkq=1u+VOg2EI{I(xy8im)muq7+*(4YJo*Yd0irFDodC^ z4Of5ya2aNWO{sWIexDdO^?%^52z#ocCu58hLSZgAY&iMikEB& z-cm$&q9?4gj?xOoh%F@dld|?7NB4?@{{X9-hjee$#}Yc@=M^OyJfE58IRq>rz|ovn z3d>2D1eNqjfMZKLpdqikpb8ETeltNab^`Cb5GV`+z}?pXa^e&%0`%WmV09~~ry28_ z`e*1d^PIOiV^kukRei7OGdUj&%R;>s{jnYd0Th)>#eHL@3h@pR{znL#jUh;fmT4V! z!4(w%qpqrX3kOugl1u_hBC3si=DcHhOjHJdMJcee6@m?fStnR>f#iyP7#tbB)9Sj- z7_3D(-&m~#l1qqPG95eCF8GN7o2DWLM-fyLNj4`~E0=(CoEubXQh4_rJ37Y5fn-hH z4I|9L!EI|>$^f9l%Yz3w_T9fa`pZ+XHPlly6I6_V`}2g|6$sER)%dPMcSKZ64aTXK zLMaE%!QYb#fQ3&^GT~aNAZz1{Q9j10<|-y8?W|BNNYmMy1Imf*3PSKy*qQhr;9-iuwjy#kH*Rd%i$UE+FB~|ObBY(Oh0FT8Lr1mX z%YagZRd()q#$h+>5|_?Y;2oGCMy~YyuNki-A*NA2SocQ!s_N0_7F5Ck9$O@ybGata z5<|+&djOga&p1S}B-%qqn)%Iym`>7%@?*Yq;($Gga!5&0VGL4O3hn(tuZ#G{#^?oc zhY?}LMK7){61fH-hY!`z`_?H{LWGq76iXc>*{x)b0}7EKG`>*!7LSb)Zx?4DSQL0l z;q(|%2msQrmw&z}1MK*CMLamll}z)?u@I*TryXEQK&)ET4}W+8s6^5xkur`Y_m8Yb z@1mUs={qkt#cAH(}#jukL)7k^{(`Y%{_5yUCm7vaq*Oi_OTD~`bILe=a}0o>o5U^$ME9!sQr*?9-$Lp*Cl;nOKh4uWjqRgGAK=r+nVOQxI`ZV4ik)zql|%H zz2{>lZ9p_jgAE#j6!`LF1CX!$a1omvv=7OGHzc}%zIe$n1QPa4gHy)_?iMxielg6u`7G9eOy^!rVXcGxjx&d9Yw&l18M;QVp1?G;-B#x9y>=lHi zCs?r(8E3)`=@T!Dvbz&V3JkMcXRSCWdIK1C^(yX!{czOB_u%;vmQZWf`m|{ba4K0nv@E) z^MO;&M8y99tRMTq9sB1N^7_JEk@cDljrrCx9S?aae4@1g^@$HEpYAge0LclJ2I&AkvSRdT#88Sz)y6=qJ54X+tfX-O62yzb2C`DhtlPum z3}kfndJoP31c00#wTKuK1v()$M4~ugB+*F~Te)(#c&ipOTv!*}!ooA$U){ur(@BcE zLZRWAc>x6`c?J3~0i+-sfbou-(b%OX307yV>j#~6pC#4FW7UaOdbb-xTwa5Mdzj~x=5xqQs{{Sv5eB@`~oiA4*0>p-> z_|w^}AT!{Pz(XDnN`PG>yxaBylN4T=3dotX*bahJvI+2PlW zQ85H6O#{dr9biaNmzQpU4g(#5vs1ct&JF-@!bmjMw~rt!&1*-AM<(+|bih85#D_mW z8KhjjQgmDtL0*qoe=}eDVMTy7ZW0M}7vl%MD&YaoT=>Usg(5z+nv12~!k}}(j^c5S zlOa6-02d3A7*~^6@YeWoj$GIV>`y<8NL5;{vNK1NFv1FQrT%gNKsC{f=IFrx>?bEyyL!p5 zA%K%kwsJQE1s4i9FA8@tGC9DB^x`~Bsc>ClNq2(3)(M8D^2M;`Tst>=Jp5r0(dKL) z`@(c0SU$btQkO;K!;A{vs$OPY<|yVo4w0J?91xg~iISyNHmn<=3N(1$w!Itmn;3#t zyv`95j2*~m2zEEO*W(dLB555@@#U5NRf4V!2&2+!Vc`X*mrA=nIL2~E2_2NEaT@b5 zkx3q*Kmw-}6U;FSmc`heB2gZZnX|QV8gQg=FFVO3wFB>1{ijkUC|4Gg@rq5OM=^My zSbnm^qz|x5W3jG{o*z%h7oPg7JWZ~P2DUei;Fu+AX6rxKnMgjG7Eg6-8-v&wO ztfspT^H#w}_n3^wQF#K59XvS{R*OPLg4~AA$DE<|jB~YrZYPhE@`~LtN zs2_NyQ)4uFk2se|&2g<@wSYt*ry+)h@GeJR4n5N%MFlz1Z0jt#()a*HYU_9`sSW~J z?%@!T7%FE-Fu3q39o|3{@;LSD(4WID>UcGS6$A<4ZZHClUNj}q^@--k&IoN+4Mke= zcypcovvj6dgBmzvhWLmMQ~*T;etPkf>;=M@h2%z#0q=~a^Ht&gu`_gkcc_m8UZn3P6u1pqvg47?i4r9W~x+@PIEnsQ9CX zg>dK(;}1(w+juYaj3N`aZ{q@KuLA)5VZpQBkN1^TAy>`;H%S83^@v-twK@R=y*xS6 zaS#6haX|tjuQ=N@l!K7oR&ks zN5PP0D9EgztAivTSDnn(e?!r_lMx@ zD=Mguyk`*3>87_Un;5iLNde6s^Mavi172|PX!jtUJ}`3NlDC>^ws^v^*Q_lHyT;%L zEd%BzSec}1(@)IBiidfFYIp;;jCl89xA;bve1c5shY6G3DgW{Ir@ zo_fIkZAgi@(+=+d4>V)^WLMHDflGfm#Ho{ z@^~F4b9NfG!zjojTOJ(n!)y^nuatOlloUdj3H;|sS#sw|FrX)prN=z3kQ5&nO zo;b%7L_2XGZ2e_0j27wFIu$UwaGuX3z5js#F!RM2C^Gf6z3qcql7!aii4pf-VcZsb^$g5@%0afu~1M;B(n?_?!>DD zb2PX(1GVd1=N?7%d}$G-J~Cq3CUgLA!JPMtWS9#!0tSi-k46j82Y>)Q2l;jbo#1>R zu?iz~@re|Hp%!Zv3pSkPO)23*MMLly(C}KL@x5cl&nS1K(4P(Y#1OCWe)#QBeEa-w zE{t-V{ss)HCn@Lgl5+uKa;aPMh;+?B3dyNv=o;~2x0jtij4GvAO<=zEj z{{ZitLsE|Mw`Wg>BV0&|o7q=GUk+S!fI^fsRo>NKctdn>lljg^2VkGWi#k`rp1HUr z)RHeR&M1_GG(+t1oRZNUB6N>t4~pH_RCm9;Fx5K)8~{~VGy&n;zs3h5LuGwmc@|Tm zDW_3N35`{9MBU$a1uuk6`z9pnQXuM%D%F1f08ZM7i`s$q;P(w7&uJ$SF8Reo0br1& zDuW4<>g^L?4KccP&Hyl%ZYcZ0O*jA}wzzT!uWb%QjTuyAdE40R!O^WaA7(Pp7!__R z&x{8nr14V7{xNlwfDRUhDS>vBMdFz~&^1jo4gvs(1{XZ@@s{U8kkin1ZxCUh$u=*# zU}GWmLOI1qji2W)tv$p;7~(u)J#@$sy+e5if+rv~dj)cUu|lF?FkeYT%vr z(Y^lwZU>UexcPkMmw}Cs6s;rJ>BIC3jZhTMo?)~3rV6tf42NEx@eVL^Z`K7l+TeO{ z=NvAH!gI?{dL9pb+GM+c477zdcqg(mOX)C%;{{Vv> zaoz}G^c;I!AfcW`uWnE^;l#4>C{l_zJR4f$5kWPBOaO3~+{m`^f~8%!orBQ?!6Xh| z*VH)8hfU=$wnR;<5 z+v^1Cx0LVt{{Y~OzwnNXj)MOH8F(p3znpa0abf)C>wp$fb=ID9hs|SjzE4<=(;)QY zUEFd3j@2paSfIV(06*S*x5z((6_Id_8an+r{XoKa&J{Swyct~w2TFtNAKpO`UG~q$ zMQXB9`QsEa{39>t4gyxVoo>|>83{}+Kmnk1KX#pGKKUoswlB8wZpuM18Q0bp%Q62 zW^Q;=JV3D1r+>fvo;CWA3Wa*QyB`UZ6+!?C)elpjoHd%EBj}{BVe(@kj}2Fbn#$nG zb+H4EaXr5{7lFgSjN9aYSb?oTzgWQny$3j42q;_X82dm+4!~ZfNCXY&G?(5Px+%M0 z4xu7b0WSr#*7)xbsEDf;>#xQFkdfn7-OgNTgF;=|aevDc z{{SpOMBRzT0PR0{LV#Tu1qvVszt#HSRbiz+lO_VV^)S)~_};#8$UEM-`pD@~M5EFs zw3>2DBBT^Hmq_^J!?xH&6trWfB^eMK7m<9PFdaEZc=@gmlQdC?yGamqiOAr6rJEjA z+u7uNV-gTSz`b}r`@xD>`1OWpgH%BE%;O9M;l_5L2e%px+eqvnUNuXV9BJB7iR{_l z3F8!vIYfRrIO90l z!&PNMNm>dSjGpbh2T`$82E+|u)I-dJLAqe%9E6cn3`e9 zf|x$Bd&cL+Fb0m#a8K_FT#}agn%~2-1B6yv6aN5pizP;caa3dQVr^+40Hkat3h*nm zvtc;EiXR>5+paz2kPxj26f3rL;8AOeD?A1+kRzcB^@IbWTSYhblL`u1IRO3N)JWu9 z*qVEB8Odo64l7^y{VD;pKKzU0AI*Jri~xXea346g-f`cLQDHdD>23F%cpr9vCx*OfU!tMcuKR6Oh>K${r|p?jiUZO`E1U6*$s9?_y<8 zh!xh}SKuhtoGC;zDO7YSZA$rYG}t~ZIqQGUF^EC56an^bW!9<;2{|vt$qbUByA$`; z8sHmdo2%V_8N!RBIE;A1RaQyC+vZdE$~ybQLbU^F;V>0M5)@eNlbnMD0wMcR{&04v zg*#zHu|ewrQ6 zAG?dB^+n2|dZSo>d$_CJjE7xvA%!M=m>jk(WeD&~py!|U{`SXdSw zS%M3NO$q1TBwz^?2R!YoYmE+)aIJi|Dgw!}@#7ex`I3JaUF7IWdmJ`5E{L`}KmoMY zo@=D&isB)}OhdeSpwUx|IM5ZNNy0R8CYfqrS<6q>3mqzhuCE%V9!L--0^k6Wa5~L4 z1n?~tu|S;97$TENs0gs>lI_ZTnL|8{xBF$sS_!7p_xr|pQEYZR|WDi_XsaAqD@?QU-`TzbvB&5HT*nZa@I z`f!rQph7)5-{TlGot8u4lkAQRV(mGkdAk6+D~^eQ(r^SI0~u~86g*^+!4r=@b4nv< zDRwb6{{SLjH&_+SqA?T0mP!CfJzjzDBSE#GQ$TjGfdB$Mifqb>e!>sPaf40R?}<;_ zAlxdK%+?6nXajx@=6J%fPe$=1XfP{{Wnl@PCi;4seAKSCpJ@7W#PO zCBrf=+Va7)BvEv9onQ?Sg+>sBM$&?5FtRwgszIoflDP=j>%leX5SPXgW6_&3Di|lH7;&nB!nt$bJhF^v zpd^T$iIA(P4<#B9X-=M zoQr>x&T{)p!GE0LD`;q9g7H|xm!ZuIf{@G*QRGi}nQ;-w00r=q;}GaZBd1R8b2{?r z&S4PMXw72Ra0E?tjZC2gB9X$BP9MfxFU6rZ$!+`N3GXi}EXCv+9d1wfO^(c0k}RW8 zjjx72oQ6$}TOQ6)h`BS+E7b)qr009fDXcKGt_GR_9$Xs5X1vTN+xs(&1e)o>?pd9h z2KqwcHmVMS2iIKVtrUu*{LBlp{VEsPiNi!&NzBuwr%xQ?W;v)1a`ZNM=K%$tQe<_dGMtI}j z{{T#yP3;)Wc$d*%?;|vP?QiD~pP>a^BNQHP7$pgk&ee9k<1`*_wY+xGeq4$mr+KAe zJwNXcgb12xJKiI-DdkW~XU}lsm#OC~PUt zS_`qgNx}D=b#Xa3_{)H-IkOf+vsW%u`Ef|)s&>G|yw4FBB5z5Ja8Su?hXSs#cMd;D z;)F`1PlU$B0uZt0uzqyozz_t{SgrYYn=u6`8i}HFj#i3MS_K$y{{T5Kz$L|CY#+1U zSpf)L`zZwWWEx&A0TbNp#gQDF2Wd$hKPSUnLg>Vx)52v=N+muK^#1@j^}Q0?UkhvJ zUhv)`Ac&6$nn#@1=Lg0O^@Kd&uRojuZwFT^hWh+q%&}Xo6C~-!E-?{|JoA3=)059d zyLl}4kcuI4;nL z&`CuV2V5KjKo~0uf+i)t+$f#K@`OfqB*z3<>!Yk9jOTZF+iue=vlf09pJ!U~Ok*u<}2rjKp!5TE`?rL`EWba#arVM^nrOjz@aP`Sm=K--Jz* zp0b1rMMRy!5j^J(2vvC^An|4)d3f!KoD0o&-nd|;g$6HLMFSQf8Ach9Uy!v#pkcXwV~NUaJ~o`amB%f1Mi z$HRv}1(ii1o$K{;wlaIr7(kGAATb2f9aCSU1Pnxrt3W7?{0OoHf~mD2K@n5}V9$9( zhe;}Hgk^vna)MWy7>M&JjtdiEc^*Eo_O?4Q6(Qi?PEv?OK%zY&W%4IT^k;9`*NmBM zEG^hABkL8$8QZIub0eikcKto!Fauf9S6?kO_1tjKHc)6hE3v>(x^Nh08%ghV{JD16 zggH@-F?m#LIuR$WVO=bM2nI*CePl?LHUX#TxR_1=b*<9=RJX=e)N( zjzMI|fM%7T_k6m|fT30=Xyiota+^yM&Mt8>bokIjA<0u|C<0qr*0Gz%sD?{TIp%D8km-VdCn&agVAa8gV8!CI;A;#6S*i5`*GA4Z@J zsW@R&0m^v;t>Z$_lHj|5Z8v8)Ar{0- z?}WgNP}MH}xMjc)`hT+E%@@xX;~&|SFYM)zXL|w}OuLP1*WNi(C5xBqScymMH?o{Q znUfG9oUHi5@#BPMEZ&Dd2hWV8;#5%`?|a4+in>jGE@%xb9)Ayc0b8>8&CwRQd%-B> zo$sNGir7V({C55Idn% zRRdt`=bTk*&+9=(zgI3#0AJ%9nC0xd0X-dfZWpLrK&sQU{ChE^p`f)A1#poPn3O&a z3)wjylTTSC9U=(wesR4`Klg&x?D3ozvmAQS5*CS36DZ;-zEkt*HXcl1URddgM3f$r z2i^_ATp57(iZV26K3uoY;f@#&CFhSrvDw*#7X!19oo^B;9rwZh@glZS^J|SVAgiwR zgp+Bu#t6(2d!;7D3Vztfv_PUN4z|MEaq5OC&doo@0^vlam3zWKL>|CU_|^h(yj86@ z+BWQgkMo5=D9yXXU^MBSKY0G78}+-sO=UCV}Fz(@~NT)2;R}d76(sDkq7PtNI_hAYUELT_xp|~heby)Zf zG0zh_Qjf!iMS0&h^OOg(i_R1cClQ|TK-$HpLOXQb#P__i=(;otCWTQExYN*#h?+!r zPtb<2_4v<@X%uM(NSa5SiHkthdA8Q_TiaX3G#Y4ho<}w87)}>PelWH7eGql`aA87_ z4r70djOh)nF^KP(yew1Uz0CPB~@khwMG#Mj-j1a&TKubD$#}kl% zCJBgwiD%9*Oqr+(7s%1@k;nc8k9fG$H?{Fa`l7BR~PolUmat#m3Rzb7Cp(9M0@j#Ne!X{^O~d7HhATTH5w%ND= zC3Tj>Xqw{|XFm$H3(Avc7Kg-O5JrRP*@tk5F1|YY&7}*pCmQRVZiVtL@qH{O8f$+1 zVl@=d-_AJu!-N_129KPAH#Hjkl*t@CxQ_^p5ydRjwyWgX@ay9R<}gGDkKFf=ZfncI z_rZlM@0yP5-Z+XlPJs60Z95>WOi<#Sf(vCgM04?ow82{9{O^p~f^BhWyg{X|_=DnP zx+xUw4=z7L(6SP_*lSbo7j0e~05i8?&RIu%kH%WTbQ4_@cz_rp5_R8LgMbQizB{-` zF8=^~&lqBKKZSmt`kA^}*w zvaz!8`MF(Dz2UoYkcc-RDV`M~aEx&b8nV5VLtP!izM8KAM5ej&I>1{q@-bm}arUN% zt#8&f5#y{c@V%XNtZTawead~z(v2qgRHwq=;dI$`{1*f$lAd-)Z}pUGOjypZl-H~Q zWfVn?inV=qd}3I|4iG_n#MjOsoG~V_a+?iryc{sFZ5W&g$6a8GP%V%ZsOmP6#~%Qs zBDLA4#OanPf-(V9CWwio#dNB3)&kmepYjVZ_+=H=rv&JF-=Ny4L@&w^C zfNX)obUZzsJH?(D8W5B|O5?5vAc7QQ!10lSX0$vUPI24Y&8eMrK@4E)-=Zh;lsI#N zL9bZOoaZeihVxQYePX$%dc;*f8FoM;#_>{mDs6b-!dpWi@n?-ihi{W(Kb zCc>O?hQ~k!W)2P#Ukue|cNvWgY_)zaAE% zd}ZY>-}Q-C@(mmPH9h|T@P%?7G9Eu~(L6GEVUF%IM;Jp-^FiEKT|)}M0)--jqkeI! zrWo140Ui2XluOiUBpL zIJiU?04O=(vV7oxlb9#d!~0^QzC~YG7Uf-jhn6}=9s9tzahKkFV9a#i=%Iodoc^2x z-aApQA5xCbPO!8xiUpj&uWG$GS-2*VD`MXP?-U|(+Xwe66H+ktX`hc#&Oc$!d5VpMtScv#=$BsXHj3YtE?ZyO- z$0V<#jE1 zf!j1+2H3oLn68f5LimH5Q*9-7Xy3bm4UJ*vo_*lxbIYrfMbvKGYR{Yznwmb?GcRn1 z8OE~EFd#Rcuu<&V)-AHX_}h*U1r00?j7acN6$NyqHP$<-^1JF_QL}mLU1b20ZF>A> zk(fbF#~q}Ek%DaG>GR)MFX`OE>v&HI_l1W6BBTI}45d4aB&x*+dk`27ZA`~U*CzD6eu*#wjTD7{=? zzkm>bGax8{?$f8PGUO!Ix0Q4+z~HEkxgN1GB5X}Z2u3FI9xJ?h6H*E}5#+%<3PA^e zeJ>d50r;LrEwe8?^VT>7!9e+VesG}@ScW zm+^-({bK|fd|*bbSwq5fdQ3GLOd4L}d^|rq?>Mli2%LzLW0O@82#iEdM;=Ps~FX-k#f z6|sf~#&-U$y0RCYelU7cIx3c@6knWhk_{dF{(~gfXS`@L<#21K#$LrvcbluXvjUnv zHHzFn7-{Q@kR>1ic|(k4fYpDT>9p{$@VsS)no~H=M1_#)+B2UM3;QN&rWQ4%HTF#1SRY1dzPNswtG z+NFqcd1e}P(F3}ULm53{6+#O@;{xZ<^Zv2$(f%QrGagq7-gW-~c$f4J{{WK^NPOim z==SmKbF2e|_6;N0(+m%79UzHkYM-ltGWMj|qg8kW^M=hSH7gK254<2A14Y}u6J6$v zq8fmgkteH@a~T*0T!>eKykkkRP(o6OJ3qkQzrxOcOS$@8U(jdhu@y@R_Ge7WgwWH$ z(9;Zs#y}27njWrHIlPXXiSv!SX2Lw{D3%-7K5i5cft3v#c$%bVoKBAIOVLgrNI5Ei zH&ExsRRwQ+6~aYP0aaH(9ppI!K~`ZjVuRi^HwpqEmQ!Pb4eFH;fW&*`C&o4_LI#$C zl2m@MAdZJILFcS8PAY#{>>tLAvyk!Kc*;_>Uc7^4H!UlF4F}|G84g|hC%?Z?4@QaqxSd4U2Adb#YJAR`ZiFST~0u}9W zP!_xf2FP6sTAY{?7!fJq!Sj`Z#F-T)o&4bfq^qAGaM2y`;5@FkZY$9Q(#7X5sJ$Wm zu}%nxsidu+3CZt_(kM(5(kOJ^zBtD3t_l{Q6#a+z3s4|LO(|W+Cq7s&IG>zRi%t^{ z>7o&{Yjj@6P7?vsh*hhybH0}wQ^ZPz>|Ss;ZJaNRh*%_y8~b3;Z-Kw4;y@MQX8vYO zigh&}xMF!QPy!oqE}!J&!{`O6@=xm&Bs|V-JIxZ1Vo+V|Im&T-A|-|#qT8=>q*qYoTz7QALj)T@qnx_P?ckR2b?>{gQwq|t)z74nw)Wq z`DAZ~n|?Bg2j{$6y8=lJDEd{jbT~(`)04?UN>+}Set5YBF$hH(NB;mBSAr!&4G__} z&pT`U@Y8rB>l0J=$-vTtJ75#?Y|B<6id85A7#(?zFjN>JzQXgqd&dU#@4wCzv;wNI zGNR8_0sFbaXe=s~(vGS8VtTUSq%tAGCm)Q~3c!BuEwn+(xlBOTLSCLALAevE734b) zLBcxFE5WH=Db6EE1$3>e>`as<_i?N)1%O_!7|4_kB;66FIwCT*u&5+C^NtdX1ujEZ zTjbtA4<0jNdfqLa0D_!&DH+q7F>Py6*ly^X90Z_^%7U+hmmjCTjvJC8jrzsUgLPGj zzO}5}$&^%DWmvp32C={ms7uh}TG4a8fcI7PkS4x;m2AORnSgnoT&Pb1>ijx2nmop%$ziGdCD0O4p$u@E(-1koEA`C zUU8G4JpTBpqm3p3ebNK=6FIQShY^5meA5JwBM{t}4?a|(O(WeP&9~GzQv+rL1F;b-yTAnGu`Efg#-mE%mc^UHVM7I;R0BR2t?5gcu4twbxR zZ)h`vH}@T#6bZ6)2;l_~Cnr!27ntSHja(M01_1&M={{R_7$N?&Fiaz_tsAb}Z!;v0t4`C`w>s8iN{xh$z z@R+WspgdF2#PrlAX}ULF2VTq#co0_HC~rwS2Lu&`gd+&I2<|eV7b7V|MRr7Z!))WY zAPFU7-BC=DXbDm^J9mia1-%Oay@O#(F0ic9gao=GjRmYlJ5%$3Bvrn<*r2*!*=#OAa})fH5uV4rxY>#kkmf}=Jr=d2~(-d{NoFaXgQ-wbhU7}{!zH#`&W zn6yo+N25;N39Mj9(2^w4%-0;4ZG+A~q&c=Yp+f+@pKH^})&f$fD|D-}dTco|aObx` z`RIOdi>ik_7i>Ib{&XdK0Up?U#Y`1kdl!)hqSx zkpSq>PLlDEELc?lysi;yY*f_m-%}a%qBIai6hoIB5ukzO2nVcLpME$h&54)NR?yT( zfs2q-kRNG3Y!?9GZ4?cZTOP8AQrPd}6K!~C9RvK4R{e~0>kYf_2J|0`_nIvOwa3;LDxha3JbW%F6$;w5+V=YVW8m%n z{u~e_b-9*A=`Dw>b_X__U_B>Td!Tp%H4qgv@V*{f#;K$vc1}iK9`H$uA@VZ?InSPZ z>poc!p-d5?+Cxa`#K0IGF8iCaZx)fkRuOi*qFwnilM14Xc!ffig6=)#tc?o-lSnL@ zFKoeuP9$frqyxYR*77nU1Yz?ApH5vx)j3PTbe;Zi(pQTZG}3W0ED%sDR=m4u``}Vi z!9Rj#FI|_-k*x&&Rgh2g^lg`=+dHBs#=ZG+*lxjz_c)5D(o&!pnY56c69mpyIRsJ|8 zu;9k)FB*x6@~f_h5Nv$oB$A72u-^mlH)siAPuy_RRoY@MSW5l7O@9luRw1IXXpn10GD&?HntEbJKKX!UDRI#qw6@j@L(4we>qGRF1%na>C$+e zWby%d4l!zQ16B15SOK79eAvbpi(Fo-3}!BKjtmR<7c`^$`N{xSpfRY0^T+=H zEpyqG%H?voT(9{g!P3Pfj*>m#;MlttUe~bra`@f7jTp9bW8N8A%v*>6uA?;THz?X# zDQOpxavB)F0Vp9}-dt!6xqd!@Kys@9JgmfKc)?k?0=@BpSOlsXMCx$&nk`-XVxzw< z0WF0hfx}PR9&V}vpeZVs)Afy^%CudIoPEsX{VwKH_1_pgbB4J4$4To13gkE`*@n@s z^@5b`+YNZZR{k4w_|71!0N&%)ykxSfXw8kKoCI)<895O);IAt_F@OO_SRrK{=##uz zc>uB-9zFPTbtBxGC|D{4hm!y$)0k700>cp$NSvSZT}->bpj(G)bR)$hNsob|56zsX z*09h5+;o7oJ{)e%rij%=b|0Ll%#28m#Bn?qZC`+c>A_P~ED%8u33=x$(+G+x#du3R zT}U1AKViP&O0@5Ka$C+lfFRixD*}@;KUnbd{Sp^^{jz0jvY&V*#g- zfy27%7iC)E8hUV6hInz#1SkIhVg6vX2VDGT8k2cPkvK=O))FgeJ~>UR)3f6X=T&2c zS20SF+tw6$sTsroe%B`!B~^jIUJqGrAs~BnzP#c(NaT6m$KwPxJM8>p@L}?IkQgrA z>UzfS!ce2oXr4xn3Joriocm`Vhpc2!0|3NAh^;@Ire2DV1j0R1=Nv0G!ZA9=V70M5 zK1Z>^1gfZkT50)suO2XfK(I)rksZu>E3{aLmGw?e94c%yLhL{g0VCBg@g2|}po9mx zUhXo~>Z8$YbRn?b6$rJh&EFMBdbzTq-InWl5JN~(h=Q*9mkL%fw)8Tc)A5Fk3KbK8 z>%4~&DNt|6c|=8d2cNz%4UpXjKL&|aivFyYv zu~KxYly<=g7J#JHQ-V8src-gu1)ZIXPk5Np7eQGdU35)%=O3vC4U_u16n{Lyve45rYAr!RHpr;0Lih}~$-r5m#^Uo`^I1nPm zXv35M;J^t+s8pglTMKoJQ&a)aurIi|ub`8nvZ=YZ8@A#q0fKzxlnRc(MfvsPEkNu! zRVVM>FN#6bLRan>44Q|aDD=lqPB`kw;uL8SLQ{txYUL@}zR!j1eDj6UX!+1@ij&48 z6}^Bw?F4(cP()YEPzkl)XEwvm7)<2aso*gqox604%U0soM8*TL{GI-tWew6q&>q)g z_|0Q*1UeKdhZSZXeh$?NZ_^y8f`BLu0eRyztXu?veR3+qh}s5#LG+G4#C~xQS1JSd z$ig0Cnwq%4q1gTfa)2InrQ(~$4dq>5%W}A=BnyIv1Gcb41{6F$_lX+e#pO@yAYE2C zU?h0TM8Ay1$c$}K|d*Ki$^A9IOL3&8PlF)j;Z2|*U@IWF>CUMW>^ej6bM4}~EWon1U zNyvoggGQbKG9|SLt}stYPV>D^00-N_zI5e?-*6tBkI(-A3f*9p7@Q^rGie|TTeW*J zrW^-Fh|ovVgHfx#UP}UV82iS+bS760#=ZBIgnKcFA6WgG;qqdvmzyjqqc#NR2Rv;Q z^w0;OFwKn~#_YwtpZ0MzIj`d4R;L1k=P39f1y*Wcl0<>fntV6jR(J!cNg#kxwYK_)AxO{>HX~0?u~L-zf2?$-Jdl4*FAQ%Y{+&O3R3utRpPn&Rj78r8?Zz&B zI7bG=dVe!nr3gc5N_G#uFO1qk*7r-(I&s7FRu7yo$c-BjJ1}mDe#9ULCtZ&7g$Hh{ zXAvH!IT$8|C3uPC_lWcn0Eru`ycKj0F^*dDwtV1nQTq^R<_06xjS2Wn3IrXEzInx6CbU%DbEvq1TtT+M%S%|_=Q=nc6LqEhInc%o5j(l> zPJ#-E`NCcf!4e+vCZYmCKndM4bgX|ZroK#Q$FJ7%Fic>9=@UrlFdz&dL>wvAcWirg zis!@vsKru1V)AO_@wEocLLhH|lNaS{IjyatOpy1iR~p=*(U zGUIjUROL8ny|o{lXk(<>g_EKzj{bC)N*n1T{eG8tCyYD{Qp!Gn(Gy}g?7j^h*x>l! zz2wJgfP-ROi16StR5+I!LZ6&q*jiG;rCedE56A{x{9HpJtpi$F6Xzmh=iV#h zMKp|0LY(D27-qIqsk!zE_#~aBpgd#T5G}*%(Rl>mk0M{F z_#cxOf+t$!3VmY+BPtMfa90sbjO>?tW}c3m9pIh>O1(lj{7BP9*03NM%tZ=I&Y^&; z*-U;2Gkn5!^5UBw`2PTSDh7MnUs#(f;9;Ag9^U@|E+Yx&a}av_eEeql(h)tHnA2Q6 z;soi!igJE+mRWpe;_tKABS9jpXZJyIzgS$7 zwvZ!8l;i1gB9$r0-Ab(?*G>RFsgaVjQV2WNX%I6`1&Va+H^snLIlI6XgEkW=kcf>Q zq`S5zyyHNSVI6QZ3)fh{Dul`?(D0Oe<3Nb1(rhVq!I+R>0+2yEcAVuXT8J+ISel&S zGS-T85)}pJY{3X(CZO}PPld;*L{NzPAJr1~icNi=qTDAwa3=o%oF4Dv6b<^#w?yve z7{23iNQz$l;(MtsDXWPd95(Mtin-t;;Uk0Df{r^;R;sA@&fz)(v}m`$GCk*zOTs!v z@o@EMSncmf-%-PpRuB0*AD__1@-IT9Ap-5={{Vo%(Nu`}6L|0lFMx3P9vxyZifIrj zzU}PCV7su}@$Ifndcn#Him>cWKUg2)KYX1-K)uBu>k`iAJ}_*M4tUd>b!h%vPiT+l z0y!-h#{Mx8fi>wRJmO}MiO$fkt>keKF{16(fx;S92K7YiBsrQ5$m`<@Al6yT`tgq9 zhK_lnWF;u*ihg&NiKf@P;^CSm_4@w+h${`_KnYPFF%P#73ktpv2rHmdG-gZ*P6aD3 zDB&n*p?u_Q`oJ7k5#$5c*B$1{ErPJGz#m2wP(d46wE}iscb4$NOoD|G={YceO}IJD z0A~uj&14Eu(sXW8&diI{6b{b=MttEFp~`GNa1zIFYvgr+1KKf!qy1qKu{?rLSoAFr z$Gs|@_`}mW`h&Grp)W^Ejm}aRD2l9wo70Hs1awdjVmLDg_RE@Wyp~=1$kp0{k89QC zX~4Wc6i<{rj{b1ZpO5>#Fw!a^pt;Aj!V5KC={o#mK~S)BUtc)f-5ZAKqH9hAdJ$cy z8|Ox`cOlLyCe1Dd$`Ic?ILrbp1*r2itPd=gfdu|A*4%)^Ts){fUbtf<(BouP3KCO{ zSL&D=2{fhCCKz}2ifBp$R#U86I39aiv-0tVvS5#p0lzmC2p&%#!noQmiZcFiLwfl) z{NZB$kNI4^Al0m)5E0(j4F;bQj+2A?;6YIl{;~Jnv-nZ=7#fFVl7=6+{165Jc66VOyT~8KX24_s-U+l4HHW0Hbci-K8s8X33|iD}QUN<4cH^)PlOv#YK!V$?W}y(NM^J){#7R@3 zRSy?f_!#Xc`Iwk=>F30&KYSET)b;r1A*)z0;W!_8TMX^6ZMKc;WZtutk4dkA)BN?3 zgK-xY?-+swqeRjtW*%T9fYE&mgYxr`TC?h<@38p9^I1c)lRWc{7At+!KXU*GxW#ld zo8`+&x+0(i{&FA;BGk~IIB}}Fb)z+42|z+n`QbU9D{fRETrIxFb}eK(p{N9I!P zaU~WMdh*ud3J5QSy2u1_xZZS_sxi`@Gf2@P^1suJLjuQMIm9{PzCZW^{{X?${{X_OjtnT}b?A)~)Wbpqd!yA~nNN%YNYcl`L}S^G(%J%% zrn&WGKW&#vs#TlX6h}I~GBDvX`zg+>dK(Mtqabzfz0BaHu7&9E1L3IL-#?|)a zdb&}cKUolV>l{oujJ=t)#Y?$h-f}OeKm-i{!cSNQ3oaXsROWlaG|22%VX)iY2Y7JW z2>ejM*$j~F-fvHLD8XFl;5o#foYjlisR zk`A$Uldn12JYwEXx9{&6bhLcy?DK`S!$5W;r1`+Zxo?cA*U5=oC|jpaqMQzC%Gn?# zhXQsu78eMiFobaNi-<{qAkg525LFCxTpgCu98h$$S)+boG-*Vs+(bC?Nsc9&khU+Nfv% z{#=-|X|t{O;~nd8>yb&zk2H{?002t~h5;bxfCTX~N-qh<=VlaWoYb}1&hV=suGq16 zKJwf^>wQ1o5QGBT#{J-&HFZ46i4^gieubed#t&=3_mN8CWOm3tGu{*sgdj->J?z32 zAebDaS;?TgmkAJ~-Vnam0@59zuaN5#zzT~6n^)EhFhRhbiQAm-mmJDt6zu{&uV)%EqkB=BcjS*ijbIuvC2kjbv4)7%%I>74|8!i<7aQ1h|;g zkrTfN_B}tKP811^(K|dRNt)duP6q+m)7}VjRPoqiPz1F!bkqY9K?tk^G<(K%JIx1j za%Fwgoj`aWZWz(39PTyZ4i&KPM4>)AS36=L=P$BGX`8sZL<4 zk!uAxBzVAp;yocXD>cN{S(OZ+)ltH(@x#g&C{+&NE9lD025mPKBPWv%%zwLJqg9)O zigbuw*3u@foGyUy+4(RkxGAr?e~cn6pfNRzX`;zD!{o=bWkGw@p*|w<9c6Tup7Umw zk`RC|=s6DF^TCmVQRf@r)0d#U_-@X%mxYC`L&CcgW0d;4pe6cJ;H}cx4OJQN32LrePK_8K|=f+Zpc1g+Czj?WE^3Y@xQYY)FUHKLQhiu@(q=9DT zZE#5N@q!4;8-lFW4vEIF;_;;K7w}C*4G}gZ#r^mIClZk*1ljdivi{AQC30kO``z2M~?>q)}23ve>t_;Qa@K*K1E9zlq&d+ zhM{ozqQQxXY!F2fJhNo&~ld!R|bVmZtvDOH(jHHvXZh_8^Q&UqXi`S(A`R9zpB&-g zi-R71%oGcVR`TK;e)t8iPgtesD*-wl58f042ou(aY4Wlr6p$ji0n|F-kyrqlYPAfM z>m*3~X0G9Vj-=}ap&-1-jMmeTc7Mov%H=&`w;VMN+$Ij|-m;H|+M&uLr1OWB>vHn! z?LM`NNZEy_wZU!j7zjWO8xvgknA}7*z8*0I;YjLUaAcyJF6IZEN^5$3xiPN7lBCtk?q8-G(vtaJRm- zh-M&T%eDRUlLp`Y%i(!Ga3d6^u_yt(`QzSR^MWm)0y`D(&Pa+-@i){z!3oWLV9W)? zAXd6(IO&6>Nl&bHJY1bCf}J=ZOiS3gt_jv}!sZKt8zI1*dbbN%b3+^QAHFy^X$o{T z&A9zxY_AiL`N0W%g+C!fe2az=x>3@c;&Eo7OTRej9ow74sZv^Epf><=NrWXTmwM+n z7LLjlk?GeCS>8zyhnx^YmxrC>#c1WdTtAb>{{Yqs(%wxE{o}5Jj;Q=#i5!Fiafw19 z1_s7B+cw>=Mo*^+2oA6ahbp81EM!Ce8TM^ZQm$9-dyPNR1< zCKkOojxgcf!92%T#v_=31I!7?c5~wqSWqIn!aQ#c;KZ;uBi|GFddK)^&AL&hirS@7JSzBaZ4?L9|Kc=n9W%^b4S#7WY_XFX$8QRkpW8gIuK9cp#;%EY=>ykauCfD)Qb z1A~dD4@N+C7zqNZ3=ESO0kAX!B~DGu8mj^pfI<{NYB%cfniAVZ76NaqD>lFaUWVCs zI>{|ak=XanONYdd*PKJirq=Y{dCAaMfZ%A5f}a#@bYVe=UYt=~A4c_p5Ro*GIcG;X zFcW?21&CLcaWKi195~jMZr0j|tJfHaWR04AxK`k#vMPNhAS3|7h8c=o2qcAi$u=Ge zfGK&kxJ{A*G1;Z~)-~uusv4`}hFuNJ;5pj6(c=e2$*QNHSPT`QD!Kw}N5)+smROrH z4&|ml%xTipPjDvlfN^sejpx%)#Pvj*Uw2;+7KJkjV5eQqgh5(rkMxENjAVB~V zz!|hjaY&8uWhY$H zUTiR83%&N^`D{Unb{ln-W0KQD;J5RL#`sP`^24lP@5A`v#Iu-y>5duOh=M`$ilX&q|6J&RnS0m8^2#^{Q zhAiQRg|^`j&rVnYc@g&ajv^cnA!EHS#&9r_9NH_OvxglF>j4#^s%(E4?vNEwcut?b zRS@H2;wFdF9OX-cOZj=og-8bLE;PP4=Liq1d%;cMrV#G}_mIL{j=FD$HuF5W3BRoJ zcafLUaGy9Nq!>lIbCMfp9ES_JuiM^3K(N-y+^#dQQ4fLrV%_(WYsrc_ zX!#%M$H(|126wClU{&bE#-*$QHrEI@}I|!P^?4`B?6pWl;=VI)A~|?vjZ0L5bhva__;MrrFAo+ zLD;(&sL}>-Nb$cJp%umnR4DfYNYPA36AX2XaatW+;z@%vEW}dcyFS3_6E788v^5cB zp&Eghy6q_eg;dVk9x?#~!cw0}hzK75{{T60Q8ZS*@+OV#os*9S_T(cj@Fj@n+I=rm|i+wMQcoo}9b5i-{76R0FE>iP*>q4NZWym{?2$ z0KgX4jYkp^*t$o=&Zk^rcX)`RClfXwG$029p(30&7&<|WhE)kqXuC7>K!HatsK?%)0(F3*8Ih4O4@rI2Kt> zU8zEypkZ+-2J&Aw2l9mX|m?wbWv#9F6_C;?ZD zBu5>(KRn`6lgMgs&IAYm(k|RC`C}&iE>k6`8Wu`WSA(3n(?o95XW=q~Dk9c#>l%lu z3db(BtdF8XnyNG)qCT^EEQ*a5rukL@twVJn!TAgu85_Jt^P$8@oroviDOK+54++@x zG)2oH85m#l;}63FsWPU-+%gEzB6F{J<-89{<3RP^0Cr8|5$^}A ze_2p$7T$*%Y}Zd%0RD~U!9I0`j+eKP$D^xM$ZJWu=NunL{{Y745@$G)U+`cmkCkzU z2LYx;7`l^QF%km23Ci+}#4_jz{kYaBy_>fetX(Z1e^@(bTj#t)!2*(=8$|VkCPYhu z715sZ?>!JiT2V=EoFp~|GX~9A`f&k>AfX2g;PRN+lc!CLtq?| zH{NMZ?imXQ6d~glwj^cvcz&{pb%5PF@rd7d-Yx!w?+5e`hY#DEGmIR(Zwv_$|y*!O#w-;a3aBmNjU8d=UoO>wVW;u7@#JfSq(i{5Je4;Jd=Oq zRhD&@>sTBI#h6x&_~!>tkNq;D5*Lgir~ui|IU8Hzw`KzybTs{O;|35Kh}S;`IM6h^ z{04CZdOvt^a2qIydcYKh%kAD7cKGK{o-l$%Hr9cCVhHa;dI0odD}V(gu^#4YsMsP> zs=6(+8pWUk6XEAx@D#KX&-58EYN*(k0PLHMKX>OgVsjUe8(ZxJy~fza~t zry;PTj;Ux}+kgeu<6)%f4*SBjV~{JWJ`5uEG)6b5;(-Dv0#FyHeD~f9NhDn_9+2xC z`aqzMd~ug*Js}0-ya>3ob$p2Rhw=_Lhsk=va#$LK{@ik%0Mkw`S1hF!2Z6w3z^HyF zI4xQ*RaF}9Yc^~mEJ?Ws`%ZoKx8s50@AL)z7RX6~9@+t1bUG6N62(eT+}H95MvTP$((ED~(`At_x5e%)YSPq@Y7Eq%4z!LLb_pl2r!d7$UwKoJ=O7ju?k@jatbJR{ij;$ZQ1 zT|TjqQjvVZkKY&ttR1z$G>YtS`a&jy2#7?x9gjJ?U6Xszbkpw+9-8=q)An%?L3zM7 zA?uuN!hm(ErQ$R&%Cy)+!SN5As8Iv52yi+*;~0WtMgIVpWhe(sg;K|omnGm6^lAnI zCYbXu!)?&>y>0&SU<^fGN2qn0nnoP}7VM8EX+Ix8U=SsH`E>2b%G%irj%Xs zvF|R{{RG>;U+E18ew*A z$8YL%qJ;=lO6X+_3w zQxC0;5ewuk^@;!~Bn7al?SR})!V1x-SQtIejDT)$MwFCAd@{Za9o-@iNokjS@zu&= zggg!9!0rIhfE3*XQQN#c8C1#T6Q>F2=#Y^-S1oi30YZX>M~onF(E&XODKBe;2!mn+ zuCu7mS)h_~6v~GUx*)+77Uqv!9CXfe=lm_pl+O-%_n-cmCPx^TUGD*$cy#=kC=7%` zJ`G{vr>vIRAt^LGQITTgRDo1RgTN`gwM2Zv^uT4D3gX=$SppzcHBAA+MUv?*xMbrJ z6NGE6_Be%X>ry_n$+dfQ1mD{xL<&?#;yvQX$`K9Uz6=r6lmqdP3kZ-H`KaKvsnAj% zAb{ZOL);;sZ1z(iBQ6z^W817+asJqXD0&dZeQ5!XRGK`vwR+QZT&g^W?;d#4BH&d} z9$n!QXs6RLw@q(=uNd`LL0`RR1PvFzqYWU4+f*=y1rrEVdc#H?EXEc>$ymVO9N^Me z92K(-32fIfPdLi4=dKY37z&Enr^I>9D2dDDGl(VEZvuZ`;3JN5+`jkc72@BF-9SG% ziy$PBJ%5Vv-FsyXDwDIEqT~XnGuv&a;IYcH5fYwp0_I?dJwc=>wlr6jmIx zoO{KmIH))I`N&NCfpm_Q@C$`08-CnS`yUwUwQqJdmA_HG$KAT z{{S32;f@;k%f?cdRJ@Vbm8S|5aE>+44iWlr&n&BSY+2v#X2Aeq4hgC49rx!5Bx;~V z6tLfzoaZWGB()l-7mN3nk}N_xQDYeDVJT=G2vs;2f$?ynQY$M4JL{ZaaS0Z0M~BW9 zj))_&J6G!r@p#ZpE7v)wJc@>ma!p}v$-sxhrwNc?rG)<2@FpI)N;9(y3#e?~{w8tW zqyaeMCr%wjH(*5Z92QtDkZ4nJ!S>xchYSqGB8^$xcpPsJ=Qzu}a5_n|tQyFcB7)Y+ zaOT}Ly;Iccd}DcN>aQL!i;}589jfRs!Xf~q3$_MpURPS!Ol6u*QXe_A5TZ3fvr8NA z3WW%!uaznEW9X@ELrVyqVcmcX*m6&1B9YQ*KSHP;a+5OvFL^O4w53i6w{NU`3SuG4 zwNDE^Fb%^+1r$;Q4lvRr69eOb{&MP;LaS5SxkGBZmPzNy<0|fi2upS%S`^3V`qW+n zgmm@hXRHelY0nW!L=6yH=6Dl0&=J7`iV*&P5ZdTWq*u&E|*EpXz-Cb#9DB;&)2-Nf{<%-E0UYlQTf(dTYzy&E}U+;1q$0RPs^Mo z1Y(qE?o&7s{;)gAc9cZeoFjvpV%qQ1c^;pv3t&LEdJFcZDeF}V4{DpY$5?SRYbYWJ zuFHttvhvW0&C>C#Fj0pPAoyHDmcDX`GuAIsJKhP~zXlCInVsL(1~l$R1ToIOl)bFo8usqrROa*!>O7y#ozAc*IVx_>jpE<2q=qCXB6SUU_uB5Cfzn`Sj@0G z3K+Ra>6o}6CJ2Zs0JC^|U=3g}$-QW%AV@*a(kSU?jD@TdqP{2((|}G+wmT1a%{E_Y zB7@8^P?Awl+d)TaJ~_Y&JL;5SL@A=BuOf@8%>@+LjS&toRe}mL$;1kDzwmGLzomag zdC26yIeQK{V4^d5ML5`$PwEaA5+QCdEDSgh%W6=_iArqM^5OtJO*qz~ju$6~baQC$ z8t++bD8HN<1-&1Pqe|u2Ij^iNK#~ZD%Uo#{JRv_51O{>dKS8W_TrCste^^mbzzBR( zPwe~3Vs(X`2#3Kp=LwDaK`Q8h!=vK@DH51gpy&{NHw5$~AX5ej!49w>@b9$ZR`I0u zg{5s&Z10y5J`Q@vWgrX^y*F5UCI%QZeaLf*4w?ZMX?3oD83aTmXBr6e&B>xDSEF7r z26IRV06#bh13-p_-uKsx1Pigm-`*hb)vnJv_`&{@!v6q(Pz7BEJNu%4ITAqXpf8Sc z(+R~_De;qdHV}!Vl;`2ZlyI1aP@ARWoK3VrCJ+xd;WqoiRQOFi@W=7loJVLx!vQGK zY;02)>hz*}_IomTRHxU@96x8y26w`$_n}-d zuvy1Cz{=1mtyM96%})~z$P2tYi#U+ktI3MgnUo`Fu}al=(fSz?lJl3=4hQ2T+2nmb zo=&kr=B-&95PB6o12oV$#-ES#ED(p=|u74QiSW-Y*BKC2P;n3()PNoPw(CEGI zHnbL_%^Kk&%ef=o#{o$tb!w1yagt&1m z2C5$Z@MfG?-T_!Ihc{PI(q@@5I%DWhkQl31(J`sG+!x?iBX9EBz=h1*@?)nVK!`gQ zawZFAiZl~Ng_wPeP+&L$)qXIER4%k3C%kT&Mu}5bd2C3N;qaZ{wMYRg95=(x1}J0{ zEfSZ`0tmCHiA(9m7K9x^1NO+~#+vbt``d~Jik-|>L!*LpP6O!P0fiz-oG1}*2w~pQ zpySwQ@gRykj`5x*-9cA_5Bni>BB$Oh$g7qjaPmhKo_-(_f#zILJ;#DcE#Tn7 zV`v3-jS=3Xu)qqPS7ddBNq4Dc4oE5j>~T(=of#hvAXiieY?bQ@tcN%v)3=rT%Z9DT zA*CpdjxkXH&{jI__nhQ=1OBniA=3o?oE}c7th-@eMI+}JKrh)sjQ1QXbwO;`ZR1$< zGynuAB0SvKl_DZC*UtFOAh4jV3XR2sr437Q81zm~@^erc>^d9M!+vtoXi-53@dkZj z847oVst9)HUU0HMoHpa{5J|>6puRQ!u@Mk=b(D$w4AxL0zVQT*NKcS6&T0Xq6DoeN z5}$ZtBpvIlBIg_iS_|p#9a8{CQ{w<^`Tqd-CKIpYHdc4Meg-=0gA^F;<^KSm>p1-c zI?IT-$T@B@&N5DQ{{S}!yxX*LwSyg2A1|4L2JO!ff42vIa%lJf7|v?Do^hBv;rFQE zrr(`RK#4p2;+)^k31#`pO5ixk%3tpXejI!DdfyAPAp@}~7cK|6;L@K9Lz_fpX9^_fz2DoXv?T>Vt z2PfWKQXVNq6g?tft_J+2jh1NY%F7XeB|snuL$dY$d}kW`Wt?ESw+GMoUb4AnQGmvp zB0si9E&B$Z$M(koO>7R7XfKHzZ#jvp^EYvLAXh+2$)q0`jc26@-@Fi0!QLEBJV^(F zl?v(8noPEIUdD*}#}h|`5@VvM@C95L8pb*nJ{jeKK9>ZjR8=m@a=4dnO%Q4^;XRtl zRkm|PCdkoK)+%7YMzuf*7G3re3Pf$NE7Jo^fZ$ZQAW#rR80!gdg8p%8(yjY)NQ@ly zl1)bBHb7h9alt7da3-5xFE|_oRkOQvdBpVs*9vQ|UU7~aI&PrT(Q$MjFr38o)<0H* z1YnzoobiNqI(e%whft}@dheVueDC-_@JNZ$IRq;bz(?EOX%Pe|RYBIH#sC?j1xWkh zaIlnifln*>!#$#Ba2N2Oruqc#D5V(k%yUVw29N{>yofiq4vEes66yw>;KE#{@$KX%fcd~3!?5p1tnkOIM0GTmMe)J)k@QiBG~w_} zeFN$(bf-k}ZxW*v6hu3V(*f)`!%fe$oTY{9w@xwULZWy_G+^8wvvUK+F_a2WCkU9$ z0(6v|Vhi;0W$PsE4FbWi02AfcIl{gI zfkbsT7Z+hBS_1D{=i@f0_5dqYUg^dO0wCnHhOt)y1Q6ql>=l zk8^x_!RUkmXa?ujB2qw0+l%i8CMRgto>v}_Wf4xD6L{-+f}0nsj|3$e01-bK(vl9w zFXrNeTl0y#e;KK{(B}KcKwvXs^s5toFmo4_MFK>cZcsU`HJ>#j*C)KbLWe+{h~zf9 zVKNXbcX|3a!MiT3)Z$>y7+pQ9ebb>3O?f*)Qm7GRim1o|UHNQmbIjDQ&-bl!MgW4yYJ4dEg?Z-=h@;U*(c z4NmdVq|VVrKCU_}y%&WTbEY+l7QwcNF^}Ul>9OdqCi&-_HUQ8X(O%&l;DUk&Y?~UJ z90x?%DL~k72kf0Q74ti=S^O`eNN~jt@G(vv(Ap;{Rv}cxagft3hg#h_minaHi0e_rc zAbW^w0jLi?aw3*s&iEUF2DT4U=ElyhstLz z7oRf&vlb$lricDBLu7sU#2oJ%im!tU9S;lRAQZfz{{THlJpiRZTEDYiGvweN=0o4c zMC8Gpaq4B8DIYa)dt_Pa)_@)WCH?XSXgcL>}G0oJpIi?f$|40C>0g z%Pws7mSxwxtUNL?rso-Mu=}3z3$Ml_ti5Od0E}LdB7FY<)=tI+)E*@DN9zjPBT&YI z1x*n9%|T2Fs0D~#D&p>F>_Vv;6@zy@p1W~@n9~4w0dliqfDSp={s1YxU9&rWQlB5ybmiWD4^HV}4 zf*ch*uJwviFw)2XA`19L=7XS{UU|vD6c(35zSkUzP6bp_&OY-@r8K)m z(}TKPG63jgdh+Tx5*5V;&TqUxyd|AaZ+8lWKmxwQQ@mQ8DJ}3|qN_mg_566o73@Ag z#Z8I92}9pFEI@H0^U(K{GpXN?fW;XnL0|6@aNwxMFcY15$Z^&q9BGsDjsoh8hF0ia z#W5I=A|tY7EXxki3U)HC)pEJ7fPoDPDgmBVClU$gPiwVXe z8;Ei~eBlC7ImP0*`}%OTtE&1qCQ}+DMG|`)4T6wS$bvr2KCoQGvIR)Gy9{<*+P%b} zrPGc!q}D~sb&1D#)LuH7+xz*&Ls!lKPL(;iw}S3E#8v^+UjgJyLV`-Xgm>=-Y(Z8v z28VCfQV9rE^0>IAL1qc+r#W3}h|vIc+VvpJpoPVyW$S`(Vk( zRsFir5243JBd^GPuQciqL?1fk_1r z-+I9;16kyc>@(4h1xeF4?=>n=6lv$Hh9osL01T$XZRZ{pMsg^P17a9I?X-$8w|-DQ z95C}30yj2^Mx}aml_9WpJrUtDp;%h3faiG1PX&S=$DeK>v{}#!@Bntx zvJk2)(108W=@xI+D*-?x6LQh=eU2mX&q$O3Xq*?}>l#?xc4k%I@^|`MiNW6v5ZQ1h zuu6>u+-u3~))ATn!cZL2Jj_a44x3>7I2cjSQD5ldl`@orN6~eNm1vAX<+qMMIL4WU z1%0jy5gutciO{19DlrST2Wq2uVC5eAc7BHqR{&Q5KrR4~>YsRNMW6}V9sR@3D4@J( z3j1JvnF-Et4SZsloJj!QxK2da;ss(T3WZGI{vJ$pi^2;ayW$UdQkIyDMU)joTgCvw zHjbrvi6&NxA)y6Vh7R0yAe1#mv)(YO4@C`CoePR3B@@mmsrI-4&=ah*0Pwj`SJcEL zj-UHyI|q+!-DA4o1Reaj+7jXJK@N^rG>Uv1F&OpTOglw;UpTGNrDoEXL%cFzDdHu? zIB!O7niFpL!61jD6M!-YXnFqt;fI{B>0d5ZBeOf#{MCqP#6KcmmHu;h%fkkEY{Kv; zQ`^16)be6NMFO(I4QAFa2ZCgNm-JbqE7n#FaZFLmtl^yC!wtB6?>d=Y4?kHh`RkqL z%Z7#y%D%*X=C;(&Jk*QshBg!;mXQdIjYuXKb3lQzfp@4pVOK371fmAUHAf%U1OtW} zf&g1FKOF%}#G$`?%6^k9WUD&j{{V`2{{R}C_m_Tf{{Y4a=G>?{Bl2KRA_S64%pu2K zusl%i!vQVsNxWqR5T=4yqh4s?Fa?Q;VW-i~0of$kq>dUv70SCrcKaN2qX81Nz5E<7 z7p94ea>y*-ylKg~#Dr$633)Iv3$P#_0N}!)sinppRpjW#lLRJDAeZ`bt=7DP0=hf~ zuvR;-&hXoFY;V5t%5gQlbBZ8s6o$7uVLlNRA*nf=aiqZI4b?zYO=}iIQYZt!{P&Cw zh8K}q*Y08l$UP3a>#T|nheBz)@ZhjK)jLk-$2biDjE9Bk4e^iAq&!5=-x=0ddBf)& z^Q>$NC?NPsKW0-(=npyuB9N5A_A}b$^_%#M#SH+6-LO332Ldcy0?po*Eqs90I*b!g zCt3W@5RqI7NdiKvENGq<`o=QiETte|RTGY}0=-s^inS=G-adOp4^$YddT9(4PU>8e zn;{1CIdaW|a;CirS&J-vh3M|!kf&>LtC?mESzFgAuEL%u4DEEe| z!V(As^Mn|+JnVnGPVl_C6uZ~Hb9AI{ZtYj}0R;z>^jsnh`>#RUiqK(#t9uCX=Lzd1 z8?kV=LLWGuXf#AdcbzCdoM0#`L{ABu0(uZ2-J>3yTrX21_`Vzwsr2G~grr%O73-xY zP4YP}lf#TVnr)NQfLa7Lod+A3TcsDlkoZbkLCUEc>ndo}?C?JE6%8@r41vht8(22L z&3U>X3@Cw5#Sdb*U_g~6%XS1Q{36E!ZDsX2oY>~!~u z=^>zY0BUbfg9!kM2SWsjZkJff>1`d(tmVR#QAA283NhleU|{H;15506ez5Rc!g>0{ zAC?7hXE^j1yXQr!ORR*lLaAQ#L>)Y0&PYVPYAxPQG%r zfuPC_?+hYduUN!mP%&Juk0%Z{6sRg19FGavngDk8twXzmfFiDit$W8_3dY2d(f#5h zVX*+AWGZtpb)-aSr8l7PV%$(bbTjHR5Js*1t_$vDG1~0l#QKG4+7agz6nHM}^NA$% zJiV73aP@@H_}|N*A1Dy8!sguScfAIue4h~)1hyMV$mjn67hx^L9 z!j2ETLvYFVF)l;vB7cxd_r?xdY28p{Wyk;ntv30>Q~;GwH@#2e2neLQq%uNj0#QzA z->hw#k|n&VBa&L(fSy#3)0~AsRDCDty4F|pzhA6>iRR#wBPp-n0!Mfn0Zy^4gn7Ok zDmY-{e>kBMR-Pc*Jc!`276A}XEqO`tl&Ba4=}@ikPZtS^WsCw6sEI@o^Oh>?JjIa> zBhq2RMJFe~A4&I{O!jb`)PjC7!rwaJR0;#z)tKiaQ|#{Gq(+-H`Zur9PyP_ps*H%6 z%8S7188vK~D9Ho6#ekl(UQU#ibb|BP;2QK$08Ndsc`w#27Eq!->8ub9@*Z{X9us$9 zelwLd2Hs?q418(t_NAHR{C?G)s|o=9BSUPiDCO=3~qvm z`f!rPq2Lkp(4!v+<41O!i48V{0P@|LWVu)haua5NTwhFgzRq@Gvr#1f0C31RJb*uS z&Z}LC$FhIqSb&)^PBpHl9lOP zPH+K8cDwU;v*Rvmz-c3*5ctCcp&o*t!sWAogR<}T$@TpsQuMW9!mZ5oS zm!1b%Ea+B1xHn`Dj7}d69rA+>bI0gOL|y`GRv-_?0>$S_1eOG+I{w*1r7;qoVJS!J z8&I+$A||3cFq*s9ec;X4TIXkYKGf`8ePJ&5jo$q@i;k%`e+lO#`8foka0I+v$ip9I z)H-=y(|5GkryIRz8_wcj3pvh!HW2_VxMP}jKJl4DnsmNQ+L~(MPTTR8uUe#bP(PCi z(aj2>5JllJAO^ZQ1m5QtStKq=Xts91Q-JZs1ppdJzhllB3_%`;58fJ~VQ?LT=Hp@U zqL`>iB3rvi^!j+hkOtR7-poS;xl5!?B*4K(1SBM)B5~uaCI$rx7CMnq_b(129Rh%` zId##J7J{5B!S>?j#l)jra2_6JAm zq9VJ3TpOq`j8W2h)0!6ojkaH9rUY?-Z07@q(+AUdYva}jikx}JYQEBB1qIoQ3Rl03 zqydoUfqop+cF8lz-clY+*z}Gd)SA2+r{v9^hpgwy_m2_BO!LmMd1vWdxX!=lhnx|) z>A*N+EzUWYU`>A++lNqzUMoqSND2_2oOOvjZT!sF8>>mLi;;m|iTgO6KgLtWY3~Sv z>u7$A1VPBDaV)dQK4AVFvC)bC7X22TS0G;!^HApMxRzBS@=jRKOyMYQ4gB3!YW7A4g zBNaOfr)B#3#fSE z-?s=rTG*zLx=gqwT8F?D`Jr@p!6&F) z=@M!^$L9;;I0A%#0`~Xk3E@V72o&;&>~WjZn8GrQ3&YmeBK(lB2&1u%&YUo&Ti!?i z0CV$<0K9SMC%@UVD6oV8ZoD|9D3DsJP#ybz#z_&hd-4IYdCq9P6Jv%w*N#^4HQri9 zSCGrhIMTSOSVI^EX~L2y_mvb2ZU_XLc`5Oi!C}}3%VHjM`ok6u(GksjIIvJul=NP* zw<3rl?L%Lje}G^p(7bR@o-lLMgRLls&h8eFp+Hwh6E1f0w~-KV3C%x*QyIw)j9{V_ zp;0eRwT$RtkrVpFz(WODPIvK|=n{vN<7V&^i5M-Soll%^!&_z|Ee1HNmK_m3aZl)g zMtozP2?uEO-d|(&i~s|%dkg+fv7@O&qdUfI;3czrTIu8rCI(<85+o{4v2KfNv~=W3 z1e?t9j>Mqa7}%Y;4)oP0sA1?TEENFP$&+$`JE2d)VkRqU*B>c@t$sK?y1_bND5Trf zjVK%$xeOFVz_cCIJd~NiAO<3lsuly8X0W;Phy#^gk63Ng8GrzbL?*a#rNQc$19c!H zZZNwX)~NwZEZGajb(&_^1n3^do#R!e#?kVPCOGq{3xUVuc+^H7wfV>CeeM{Uv>iq# zvGapS?8?9*BA`u(CNg#dpoH*CYbfZB@Q`tQ!azk<>T`jHY-<{6IONDePbFMGSqxTc z()t4?vt%jSk%8bY1*J5IP+>?VcfAHf)*q&@U&3J2>g=5BlimmwqQenvXDQYW@O%+Q z&8<&|Ann-*DTwK~{{RG-WC%V3Oc2wYP=qH6Hc*I+;l_^!z<_{&N)aA0+Y$_a5i%)Y zhheG;7w0T@UR4;%1oU7-ctoh|tP{ff!{Nz5v{ZQ*9 zq#SjOloxatllQ?Xpa;e@ez6V?PBoiy-&vwV?f(GeRU{2PVMi#kL?<@~NB}C7mc(e{ zlSFbWPOZv&-sef#Y=(A3`wMqJ0o}0#ct@3vPY3#ykL`6F&dCDMH$XO zsI{Rr&^h*)eW(yqriy#RZx}${1}cur*0H&GEft6Y31oJK%VA4gWyq%!MiHelD9!Y~ zKYUq236vyw6kjIsWJ!umup_qn9QN-5dZpy}{{Vr*4>>mA={mvVe>icjGlXjrF3;;B zRRNyw&MJ*Papz_-RnG&=zPw@Tf}UeNxhu_ZTjesxa2N!Wjm<`S&9b@*&P_LZfG`X8 z_|2hIy<9Zb02YN26t{;3fhe^er!D;9>{E+I_!@V`3{Yp$OYFK&kNzW^36pmYa8p`{ zi2Y%=SQ-ND7>~|0GT5ZshJ<}!bubv4d%AGJmeI(2I_E6VEVgf?=j_A-MQ}DbWABhn z5i-Q2Dtg-*iK@ShsM@B6j&U8ecN10qat;kUELwOZ#6?oHL6U6WvjC8iS`Lzxc4577_k?`lq+CZaTBFira-j$%s6=l9J?A9YgO7oz@+O?$ zV<>D&Y2?He0cBt+FgqQcTsO$Ov>{k1XoI&Aj#1hjqMET3@rDs*&D7jMCr0?zPde2h z6;CPelN38dU4kAHzA_mg6m+`rw~KKT2F6dR{!SfQmtkgFTc{0&D2r30z8LRpq{^71U%b8lcJl!Wg91PtJ3ivu6`M}Op zN-xKUD@XvcoQ03)7%;(nn8@&Urqxly5lXi>lu;}r=**+C>txCtjC zstQT);>wfHPCsKUP=wc3K-#?q@XnFNfgN!67I<}v)-x|c@7P~*af^RJii1StPY!B4 zknA0=PYx|GObMmLSdel)c*fOLun35G066UD6em*xY1p9JIe9w7$v~wN$`({SZe%VN zz@|}7A*jde2iM~S?-CCI(c?J;{{Y^zfjzh94-Lkz3A&9vCYoYxAWAu9!U0i^mlZR% zY>ni*9OkNzYl0f^E3Vd79pbP8lx^l{UW(!b8I6SqvBC?^4`^`jA;&0RXU0DL3qgxQ z2eiVStO~}JU9`h3MJFWncwf9C<3nzdN5yB>MjF4Z*>&kKR~q#9Y6>Xn-yNLbPGE?7 zk_tD$93Kq{fjp>n>A+8KvJRAM7^YMXg@DtUmCm8VEZpkxapSUGWgFCB$rAU8taR-H zOJ2?}DS;5xJI6~r6!tJh5G4*BmoF-9gRZ4kEoa|}wfYw+wH!1@o>l--fqy^_7rxEIlK)k?h19dTSwIF8E znj!qD8@U(f+D0?YOgBb7y?iT6)3#&YY5y1rxX@8pI8tg zDry6|g$3J{%qz5MiUY569JbQxf&yO)W0rI^v5TbuA7&yk(sTX|^?@>Y#7%1gOd*&o z-csziCJg@dg{6FG&IMoNCJR?bbiOdkdN^Vyn}}IOcjA2Yi`lNZJNbIVF9#8ldc+|q zFRgPr))1ys_cv05+Ruzc6d_PXG;YL)oI<7IJEa0NcX9Bn0bJBhQ}d59g8Xwq+4pfp z!k^$8eRGC^QvfQz7#&M`DS%LpnB(IulIdbU2&4Z1D0hXyJ!89?#pHcpjY=Leu>h!y zpNyA_NNBw~J!8EnE|juy4_GInJUEb49y=U)LYG}#oAZOpB}3|BS1XXcAt5tazPRDC-j&I)K0Q2LxHh2_r?zfC=I1RHZN5> z!AIW{4KX-rmkyXS2Y_*;1>6zsMLr!kF#rGrerWvb!;wh)`TaheW*v4)a}g0Q!|xXZ zqFyxv@LY2J-kJ z9~kWeT}{es5-2xh#ACJ5@sZ~kxm(M5QK#1q9c#rNp%Ra*5<(`C=HLnM1n_a=5xhra z{hoX|0?2l^ZoJP9X((%>?8Lq!QN1pYW;xD+c@uxe2oowKL&{l@4FN9%=)zS*RAu$v z8H|vNunR5_qcPD1E#Rwhj1V-4)3x3FVO8zuk0f6tuWl;;0EDeq$BcNA4F_*Ddm3Tm zh-cAtjJtfd#OWf4;Hm zb~+J^*{0R2$ub~dp*T+D60LY~)2xD~Tcrrkb0jvX2~BD`hR=G%kzn?MhQ16!mq7Sc zC*Qo@X&L2Kw!eVMX}qUW=dCl4otP+(j<8BdkzP+hl8lX@-Cz(J3J;t|Yor)2J$E_t z@AS`_7Kp@84oFM@42U~ki_Z=baZZ+@S_+9dyk*xej#cfI!-^ZFnYR#zjac)Q@LNO2k;2dF9a!gEqk;lZ9a$FbWkKQ(jUj}qH#xjf1$b#F9%eR~g z$uJs(@tzC|jEy8i4Nd#VJgE-5GDfyy;>6wf$;y*W14V0%P1RcdmCj)LGn7NI%5V=y z{{R{gEAergkItXYaoYG7`OhhSb6Fe_f$+aLkQDqF66>9~|T zvbp05l>DRn;UUB#Fji7|$O3=_4{BDgcyK@f0wET>v0)Axfm9SFgSQTmfIuTysZ()x zOzcYtMG*+CXdPuTh#FEP87|7cHF1Ma0F$&HxDjFyKuCkHa9BLMu_RBeQuT+K?#d8mUO)TudMerjZ~=xrvgJ4z^M) zq8yxIoDXvVVnQ(ynwKDmQfZ|UB$f5Q`3+(@T!+6HXAXMCD^S|YC!2#7J8;vEqDIE| zg9Ln1pNyOv-lmn}VN*fir_+ELN^Nl87-~ys*C{ro;_^(|Bu-O|h8F(VK^)0h3-294 zfki86=3?kMtQ1>q^Q_n)J}Uw2H`W09kSZ1jP`aF9&jceNtri`j#VK`jX2ntCWZxJh zND8SM^Br#mPJlE<_e>;8gcP3q<n`?-`yOn7lc&PX7D1C$E{5aq$aFBPl z$F6f-KBCl{;lM=*gRuhlz|#lqEMlvEx81_7uCJPa=jRv|K^O~7MbXd31*Jt16eQi` zE*gZ8s3Ky=gRZd!Yz~?c z(wJvF43{GS2gdP~5UIWB()%#qi9eH)i93swoVa1fYA5rDd)kdls4bbrljKZO_RMG_ zQU&rfOczCJ%hGUMT}2mtFzdO`7vE`>;uY>0(94Uc%G)+jBChro^B&p4P)5aH*5 z=M6c==+w|YlM>Phn{7ID{{V&X;;XiUh;oCpz!p#y3`$gG;nm67?Wj0Guz?XHvZbhC^*}sOG@%!W|Yh~%5oKC{{U-Zz-apnMk|ry z$LXvvF!;pwU%YHGt%E^sg5i-4Kv7-?MYz*gEs#4#Jo>|Kap4$^qrzo9@J<5G z0_^GG$5c|(0myWjFS3xU+N2YB_+9<>_23a#PgrWz05EBI?C0YOJ2B`abHk@otUv64 zNh62$#Z@xM10&NPoSt@k_lh)Y`@k9<gu&B_e$bGn6L3J*j zYgiWDM4~wg-x*;1w0^Nl@p2YQT6cjNsd8(3CcmtJ(&ubzEIX!B>d1z_Lxdudy}j7~ z0F~hVL0T`P2#Lt(#OwBGKRGGSAz#ijUc9=_KkFx!9x|O5=P8SS;Tie_@saurIw118 zG2|L^3;bdZZ?`NHb{r}&edQf}_PEBQS*u@7q#7S&_6k@8t(=$$Ti=iSpt6eGYyYMOSK8t`osXbPEBv#6GHQ|Wax8R z*$tg0>4P;CriYFXi<>sWK{J9c9AF<^a0pZ}H|D#=LJllR8+QPod}i0OPxPh0&=St@ z>1#oeQDTzm%W8mtjCL{U{{V)Vy1nB`FUB#={{VRj)Ysk$-dgASnJ^9ZOZAShACKb# zMyFnIs2XZKelQ0RkVV&1Hb(KzeljV^z#0!8CUHPegIC4{HK2o5b(W}r2E%?_qcj*i zx7Gxa0?{foIQ-=%RjP*9K?Y?VHX(VHzK^^SiYkHpX6H|<8`3N??-U%2YCy@@`Gh{hb`*K*}z_1*LytV z(nn3~@R)>xE63k4*EDStgX*v3c(~AF?29pge6d&LXY~tqvJD!MH+4 z3Jh0#S=JU!03|A*uTJ^6X~JNz@dWM5grbB*W|EH|Snomr6^9OE-czoiq+voTY#rlD zWon0&Raf+>I>3mKbc4z7DswF)+QXplGzQev>vtIFk-%c5=9E~G>2X(p(fzSWwD2|k z;rrnQF_aw@S>$`{cC6EPptIw=rKF#5-@Boz{^A;j|2zIC# z=^B|Rj%=n0G;{&84(g&u+QFONLTy^4UuZwT>( z@1gCzKR71o2)%$e;ZLm8;lOe&IO1ZmGHN2$jOTm9b#@SoHAo@H7NI7VlLI{y9r%1* zG+toLbmrXQN5CImb3)sCc?YrVapEs+0xO-vQ<36hk{~KYy@QwumBgkno4_KG2yF|~ z_&9ZeE(l^fM~$3xn=mSVNFY%{CEVv1>=R4v2&uJG;~-2f+lnzZ-TRpRASV!#CJV@a z5GD=rvF{PRgCDF80=fe>dLGz+I2F&02j$CQ^2bk#V*-4zdSP6ymAZf*EphveY6`wC zOfWnFf}KOktmDQ>-&`)tO<;5c-c^);yaFQ$D%^l=$ky?-M>ROjJDQRs?S>#N+f{yz zW8%0F>D@)RKmY`Whxs0V&E{tD)61jtgD>t*Zw7tNGgs5E#&W?NWjyOO?-($}SLjM9 zr!D@!;$8b1U=Yx~00tfG_xv^;Ui>o*Zxm9R>(gy38Rd2O;5u^5WUS*);v(K>;Xoyze5za;}eAXpz$ZlzI5p9T=9) z11e2>!P6ly6umyr82Q(>Q4v=tD4m>S2@rx6Xij3CQe`;+A=;_K)xtK5m1GK)v+Xye2hck%lEJv&5Ct;H{MsKO)8y)Ci| zYU|!HHbw*74Gxo>CXPCkL!h8@IKeA7Idfh0hN!^Xiyf{;wc|Yq-$;1*#siQ6z)kA~ zy6(4wjTqP7V(5+tForcW-3dLIN#JT`EDBZkqtet@- zKb(=(f5@=p+=WykKKj}7X-pCfW6~5J3`_M zqK{d>IC6!^VfGU(-CvwQ(+UQU95cKs!=>hW2fjOCYJ;&FC#1*N@JuVB;Q2%jL6scI z+%O{?p3|bB7Y>#nZLfLC$_GulL%d3=QxINv*ga#h1_PZ=FY}C6#E~=$@Zg(7ZqNbW z!sE~Q3_mgIa6Dm(!X%}1j|{-?04G?&dCu6cgU8bpR&Qq92FzgwfC& zHuh}18z@tk2;tDvu$l;hD*A9Q8Nls8U7&UwWuK_b8u-fV5zf5f;%yZCnEaggafgaT z3N=kaX*Bfpo9JfqL4#I@HXd-Wqr;&JXcF|BFm8TSugw2B#MV>H@C<#5}v=^OX+joX>v!*5`hoBt4vW#FzS^#~*;YWEsAZ#PSpwW)8 zFce^$5(!3uQ8eWCaaqLmhe4nP%P}6o@thlV!HJ~4f8z?kuZ&*McX|9}v)wu{t-Tr< zeC1v;y<~HgIPa}xyzlh|#Wa0Jem~)ZcJyG588ZEX7)QjAv)doMFDb4!+AI1#8U&fw8w-;xj~K7n+mqWJggD zj`u_Jag#l~krHp7OOc6=)SntysQ6e0#1etuR~9`4WfY5@e>qSAAgfa$CzG5&d%{MF zk}aY;-kcqbfRuO(7thWk@HA4P0~B>=;uco3U_n#_CfsI2g{puU03$bv>E^2df(UWJ z+G7?_!AQj5iL+)hP6h#u=}|!7F$)AZMg~)?m+OI z#yIJ5Ubyl4c(Ihraxr0ot}6z2hetE-YLV*5Zj4VKA7OP2{d4y@QLe?L*b|J zj-^K)1Ae@gZKL-e$l2IB^z~^wpQxd4ykpNB-VWCBK zse*}SoqI5XfY1$TA*&5=VgT^3J%#wzTz+5Wm6MrkK<6v{D(eWM1lOgQu_ywPRp@IB zZ4lbga)VRBjI%-%5Eq^EtB46L3W-D`N1U=nYYPLuRGAUN?xMoIIj8MZ4XN8rPNq;Q zX+~Jfe;8=n8MT(bfA|r^m7Zp36t$+_lwpB29U#7g{Nnuy*axkH$Be8c0kN!T?c|wU zKHjoWR!2g4&FGv^i@pZ;{{VQ$P5Que%nB(&F4f*nSLOb&fp6!R$1k^74C+ox?R#*E zTIGy&?I{;T!`_s?&I2@;!LNLJ9&&8Q*sZIVTEtCi}v$SCrKS^XmYWfOkaae3*&PT>k)$ z;ueJO=M;3w&awoqY#Q2$k-L+Jw8`wc_tf){=Caf&4td^dtm9;C=LC~5xkG5lqWnTl7@^ZYXByJJhXJV(w4*Z`8c zD$NDLw814vunrRU=NbwTEzr^yTg#gXO^pkpbtemdCNO51!1M~UMUIDnNBb$hhn6+*P% zIYZ9{s2z^5u|VlmC3I8$V`A?m9|)9xR336T#il9x+sbi~Im*kI1&5yS9~X@DaZTbp z9s)a8Czc((7Rk}^5N|g%>7qbEYpNCv%>qsxo0UQa46+zgXVcSqi zvDobF%{UmN0~de|*~n*fe~d-a%;OL8<*_4pUHlcot^3k8{H7;#;WNcb2g{X!@nszX ziE?G&7QKZn?G!pOp#s!wV1fYz`@m8}IZ_-*skZBRT`j^eAc5Lym@ClEaJQ&} zwJ}EVloVMs+Bl2Tr!6~6Xbqnw53C@OAw{hhv-5;4LTzfN00tF13eXuk4|y;Mor35( zL$?cnvQw5LbHDMGh7k4ZJ@AYUpmihRA@2uX(%=;$Ux;NuQ=vwyVnu{b@HLVQ%0aYF z3{0p-<3x%1G1rFB9l(!DKHNiPf|DsR6!@1Vt<|uAS8Q9&)=lUn3ADf(uf#EoM(*}R z*nEySF-d&^4<*?5S075H4Rdg+!?X6oq4;u!V8agXS5F!CxU2+3fzl?&Ciam9h{6;T zu`clyS!&i06-m82?8Ob)pejjXi%lXUF%&g6%aHWba}(}l=~2-C01Gm=tP9%cFm)16Q+nv-1_iWhF%7)yIoFI9qQnlbSnC|a^fmr7 z(l&|F@s?*Qh*85bKM*re2us8c&v;46HLyT{4pAYdILfYDwM-gB1q&{*oU4&5uUKkL zI{w^gU{Z-v^gb|xaD}}dT$w^dasJF^kP&(x8Df|k>_Z#)!zZ9QEk9iIkU?5H?^|8t zxo#C#DEgx@cxguJq!IT_A`s$k8ef#gim$~O*q##uSBSw?PiWD|o;8>8_A8Xxq7RHu z7>rtMNTg4pHazu?p`pW;rKcmpYWj7DESfM*n|aPx$-KKMfk~iHK(3BVm?!h&6UnCS zyx+WircG-6glirjVGk_7Qv{jxfw+ZW+y?S{d?08gU^H(ol)@EoRo?Jpf_sLa+XxeM=LPP;xh4MqF+3P^weVs@G5g}L{Bm>u z0K#*L{;MieSan~})4Wqj;mGg@1qk zjWY7!w8tIA{B@RcyT1Csg`Hug z)|=jw8=QjTLO4V~X@$>LwsdwQra0;-AxWWhDI;{?LZ+!lzjNaQJ5va%t{=`6o6-pQ z4bP;@OT%fA%INf5cxoyX0=H-ziGkjBm`<~fHGwi5U2iD!`c&^N=P$fE=R2Blm;SJ4 zE(-^BtZvFG2%8;vz}0lRq?8ao?llM1#IFK^e1;OEK=oXRqz9)MN(Br-q#B4%IHA+j z1sfPHMq=jaxo1Oqb8{F;7eO6^w;vm+Xmo*S-oEBRVH7qfb`_kvGJ`an$Q!sYsuae8 z^Rrbqyw^MHTq9JCgPJ;^8ZS{s&KxE~vg!z}1Vd=}aZ(f00EsCLhG>}5k%UTI30??a zywt#wu$J%-hP`Jo(S%Yc3Ws{rleDGL_;EyctzZ~Nx=|waDCSqJrG>agl zY@%(}Z9es>N7`g*#PJmd?r20n;~a6|1ptVwG}JYMO~fn!gc3!l2Hjr%+S|pOp-C5*|3vy~*z^8f^dw6-PT;ZZN0{J`j-U z)3X=Y^bq6?mC)>ZaoQp!T|%3}R!|M9r`JAkn~FtIu@=|A-z5WE#MKKAE-Pq9;-OXL zfsrd>rIt0%oaV6s@}rt5fsoFJFXIb$GPih8YVsv9k%LsB5FkP{gOFJx3qS+F;D9xn zlrIBElvD1R5 zAV&pNMg!j%5(+*GhPb{?lLaJ!EiqltrllWP2;6xv$U-AP;mCL>pwz8~Ipq-#CZ-A} z9e=!znl$lz{k&uwVe0_Z*B-gWfq}q0T&(v>kLc*7)}HW6(hXnxPK>F0q zS!4`4k569BIJ|~H=4g_ZJn7c*{{Rb3g&Q=M1m28tEEuk$iY)@iB9b64stNl!sE+(` zjRP_)DAU6_;lpyoh&H3p=6BW_U=Zr24+6)O$BK#|F5XKHLj2{>aT2IRYvor3TNIS$ zlS~uwhM+k2Ea3Za=@^q%FE@Pi)*heWk)c`N z2Qt14RDu|*{{St2#b@i%F{Hq?d|-y7ZHj7?lxENI6UG~F_yUD!(}n9;1fbuKE9FE7px=e)7o^OeP&ieSVY7e)`Pk2D!z zX$-f{M}TY~lD6Gy+luIkByB82T2lrlghi$00+UK=^NR7acL)?B2Twg?#1}}Vq$60v zk-;oP-~d@gV^rUZl;EPoLcj|4iI$APDn2V{IC!2h?&t}?0J~DlF0rHGqk$Ghh%n70 zG0u&E`K6n=ah29cBCcE9%7{qdqE2lEZZJ6_Gx)T(%K&v0a`(zJ4H`)FuA0)B9)PAE}VV~wH8xiB6ei1 z3&=hhdEO!75>L!_KFONm1yV^MV(jD`;Ia}+WRDKm%p|dv01DeEjcbV#L`VRv3Wz~> zyNyqUabcnyk1IT6k6{djTY)-P))Hqpv`)R`sv%kc z1%1OT0xa?(r*C`R!~g*fq2(Cg6E0$C2M3$%&Q@T>d}(JlG+L!KSqpvT#Hx*TLYnCR z01EN?5@be+%`=?8I6(oU0Z_^U+ZG(=7S=?^R0f(m5>T8Jq+8ex{`ft5n6 z9vYs^gMP503Q+-r8ZhTrR@}g(&<+dZ3_fY=L1Gg(=d9Zz0KG(|E2L+VWlTJ>mf+4Z zmf-urOem<05s00M;{t}0LxMUN{g`?80s+Fd!Qt1392xwV0PXzZOc6NBQ*|EBd?SGg zU85#hj5W0e?dSDnMPg0?X z$!0qQE3^d@&gH=ryjOyo$v6NvW25%S!f2ef_rIJ8^HlVt{%~#iz|4mT#K@Jqe%xee z0Y!nJu4^al=N$rY&zxrAVu=S=Sco-Nw$|-#Xr4QS-(!P1K2ZMvSTBI2BTz`^E9(K! zMeMZzuRu`00J1EP8N`%wq)#J*X1v~5g)A1xUuFOU;HTzgB3c1!&{W6lfm~!QO*VPO z>YWAHYm?R`0vJ$NrKG@fQ33#^yQ_kFPR_@T1~k5~RT0B+!>#qGBORaMV3sb0i!dpj z3(SzZTP`SK$1!lX#t=HFa?IPB0*YGd|Vkp*yBb1d`D1e zqA=C(k-;<}29O$4&zy3z9n2&bThlOO0R;<+JZMMOEFKtXJPo=>*${AIl79A<}{1=w6bmHcO- zxv*kaU@H8WZS7GwMq}06{WA09{;|+TJOx~IqYbXYI4i%olgroN>I zYwH*P0NkQ^GO2<$f7V;rMH62mM;2N_p-$Bw+Y1ojAi8#_m(9f0eLN8q0KQcC!X$MG z=%FgJgf23Ylz@WTLKPnv{SCbZM;)jZa|~prh$?St0E}4qm=XhFmd%3-^R6>~@2mv4 zEEZfh>l~$34_&QY?^p=tA`7Ev3H&TpE%Zrb}H{!Y{Di~=5xlfntC8wE`f$LBp1b&(k{+1`sq9d z0tU^~Ag=KQq9*q17%n6UP|#TU@q`Qx!?ojqk69;$Nz8oja|R+ofYAg>@VNm3g)mXq z*qEX!j6BfuCqLi{)>EU?$F=D9oqf6@Mh^Mw+D?AsCI6<;t^I;BEx?^)`A0vkv7NkpIO%608)(SgzN(oh) z?HJ^&2Wd`)1oZ+w9Q8^L_&8ZH9XocqFI{5r zXx!D@WBx;i_4@d-DzsVc9u=Mzi7O@BAPAu$Q(kpMWHWPf)K4X z2}Qi+gDJ?X3Yz11b}0m+Nyxn7R*4ce8V`;zgM|+EG<}JWI8GRPg8&VygDV2!ce;h; zTEJS?ky{)J4WD8+k~zBqi!Nmj~ov?-An$GpCW*`oaPs2m~Yre21s3a^4L^Mk4Jf6W%pdAs4~P`jz-C0l%6F;}n!l&bva_JX}lkjG})d>qJz=%BS8+#%|g^E4U(u~AF(qM3EPy_@}s|`FwHsm-V zI}oBhiLuEJ(r6?_qFfR3n1%%4!8HIAb@7Dy93;@Fn!Zk)OP!8QnBF6oUC8!+=Oz!1 zjrQt4LB|dPCi!W+e@ zyaOZ7_@jzn+{XQ3S3>6aCG&+!nHuk1;0Golp?_mELk}MWoOPNkN90(aobkZX@r+bM zV)49PNO;ZQK(Dl)ctta62Ol}AF6blREx@<~!10>vLoMh2SA)y{03wAts(U=YxA>6b zc$8O~{;e-J@%jbECFmmfo4k_Hk zJOdN&mVIJ}TNVcLyhQNhci0ItZ$d_>fe?0v z_mwqHh4fJjfQXzJsF5mFZ5vhTtTLDdKu>JR4q$u8Q$Gls(zIQG8SRf*vsf|6%W@7T zN&2+?7pxPk8-vz+Kf>;1-2VUy`@_!au#@8}2t|OE0Y-7-8Bo=8UI*iP#dh$4LJ9;W zq{iK*#EDem0irlvB}qtD!6u6)xy44I(lYpN%tli11b^!QA{{<2nT;_Ph=<0p%TiCt z{TZR1dC`?1h(5+97t1-n4k1K?v>j_GQh>6$m{?ArR6sXs{{Y?uJ(6uISh2U(S~emL zYz6M%56Kd-P(W30Sv<=k0MQyz{qX{&K0@8n?IuQzP;{FOyW!vG1cDpL7V_U`IOfs@ zh&RYdzl>Em6mIr8dBmH*|+w=v5nX7>aVGe$j+&b7q$CbU5qQR`@~$Q z!MtPys|9ZV0F2SiI&sz-)(DRRU&b&e<2e;44m(u&)cx>?AGeXjLxz#w@XAV{)sx_R zn0!{2ljIcsezC|P7Fg&~-;v=m0f-xKKo|t+ube}T2T`lTYhO&;HjT8Pb=r_T;0;=? zk&oyb`hmG!VDX(LE;OOQuzbNu;ifd#mDF*y0qmoK#R4u*L#N(8+#7Wct#vS}DJ{Ae z_gtBz#?>xKc3h>g)Bwiiq>dbAu>sp^KJY*eCaha#T9Kt7qL5D*08|zLdGOhaq@V={ zL|!bK!T|TX`dv(`4d5{~(2(;SS`kwW^I~5MhNAZrPEI6zOq{|F!8HZ*>DPx9x`6`J zfye+Rd~oczojCM74im8*BjL(xCe}Y{czrtYhjQo<7r^9miP9$v(lt!9qK>$r=@Zhq zSrIV_LY>SO3Q!ZVIr+#=V7dThWk5wJDpP__d%_WJiJGp37KPtf zyV)0(xwUbZc5H@8rOj_{As8JH38vtyC;?Z{8Lhl%dc|V%zyTB`qX>&3il8u50}`Pi z8ax>InqVoS?nh8NIAnH81t36a5&r;t!NpvkfF(v zEOo@MLC4P+V@t6aWd+R+POlhc)+1uOBBx7Uka8p7*1!Y0pb*8eomC=jpllt6Rh9xk zRpBbyoXd@;xX zj*%TAX&f|4P_(UH?~>n5WMD9-Ak9a{4=HAnv$JOjf=G-7HYf^vOo=IrZjf4g#*u)E z*}V}l{h^$^Upb_b;MjjT#N!m@xECUEhL^lT;vc9CmyP^68j+hl;3kFIVGv;R))Yji zie4T^5S{F?@F9Y&FDu?q#b5c2xT}7@_yKVO?Ct2nRA|xgVbFONj6W)Q>IX(!;|uq^ zcHvOLAVf$SLU3&h?9O%oDt&zoM7}2KxOZHT!?oIb>9z zP7xwx@-R~)q?)`qHbjtjOm$DWfFZ z5pCZej2i$%U8B$|PZ;zBLrmbk0jJh7K~zl=&7N?DMS{nTU@a@rKcU4Yi^zBLis1Qo z`NdYhqAxBoA@=L|!qC%TbC8e%W6ESlXAVWiD6dB&`oCVM>>$@s>k zI>xVjiKN3wdFzY{aEBOXK}Z15CA^rt0|8x>3iQkrYPgWy!3cNf7^;=4-lGMFR|ftl zlB5uY=aOL(0lo%aj7_TLPGKHL-a7OSZWb>Iau9Rq{f;Y1`lMZk-|-S*)pM70t-X+XmYgRQW8 zT%R!FB@zH{E8MUiN6z^$!5yI-)j^N5c(F^ZilJBM98*j{G{VDZYP-Udo4bIhVoT}$ z1q=8-@x`eVW3dUtc)>p_0+0bC%5HOTaC(C`f)twGf+92u zP^fvLj2ILi>MT7oPw}pD-aFo^QQ;huCjb`pblxO;GBXrV7kGN#TaQ`E^$a7vianS} zz)2vCCgI}cSb__0!An-PTw7=rTGbWrVq&(itW`i&^XS8#u>sr$>G8ZUnxVV21BMgl z9;z`Zu(El#oKV0n1Ud@@PfwgjN?+13AH3v%0D5FGz&AkT{{YTOn!O)S`f$QaiL=`x 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
    +
    +

    Learn and Connect

    +

    Using or want to use {{ .Site.Title }}? Find out more here: +{{ with index $links "user"}} +{{ template "community-links-list" . }} +{{ end }} +

    +
    +

    Develop and Contribute

    +

    If you want to get more involved by contributing to {{ .Site.Title }}, join us here: +{{ with index $links "developer"}} +{{ template "community-links-list" . }} +{{ end }} +

    You can find out how to contribute to these docs in our Contribution Guidelines. +

    +
    + +{{ define "community-links-list" }} + +{{ end }} diff --git a/site/layouts/partials/favicons.html b/site/layouts/partials/favicons.html new file mode 100644 index 0000000000..c9ad6b6671 --- /dev/null +++ b/site/layouts/partials/favicons.html @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/site/layouts/shortcodes/feature.html b/site/layouts/shortcodes/feature.html new file mode 100644 index 0000000000..3616ec9609 --- /dev/null +++ b/site/layouts/shortcodes/feature.html @@ -0,0 +1,6 @@ +{{- $version := getenv "RELEASE_VERSION" | default $.Page.Site.Params.release_version }} +{{- $publishVersion := (.Get "publishVersion" ) | default "0.0.0" }} +{{- $expiryVersion := (.Get "expiryVersion") | default "9999.0.0"}} +{{- if and (ge $version $publishVersion) (lt $version $expiryVersion) }} +{{.Inner}} +{{- end}} \ No newline at end of file diff --git a/site/layouts/shortcodes/ghlink.html b/site/layouts/shortcodes/ghlink.html new file mode 100644 index 0000000000..329b8909be --- /dev/null +++ b/site/layouts/shortcodes/ghlink.html @@ -0,0 +1,2 @@ +{{- $branch := .Get "branch" | default $.Page.Site.Params.release_branch }} +{{.Inner}} \ No newline at end of file diff --git a/site/layouts/shortcodes/pagelist.html b/site/layouts/shortcodes/pagelist.html new file mode 100644 index 0000000000..266b905f58 --- /dev/null +++ b/site/layouts/shortcodes/pagelist.html @@ -0,0 +1,13 @@ +
    + {{- range $.Page.Sections.ByWeight }} +
  • + {{.Title}} +
  • + {{- end }} + + {{- range $.Page.Paginator.Pages.ByWeight }} +
  • + {{.Title}} +
  • + {{- end }} +
    \ No newline at end of file diff --git a/site/layouts/shortcodes/release-branch.html b/site/layouts/shortcodes/release-branch.html new file mode 100644 index 0000000000..83ab867692 --- /dev/null +++ b/site/layouts/shortcodes/release-branch.html @@ -0,0 +1 @@ +{{ $.Page.Site.Params.release_branch }} \ No newline at end of file diff --git a/site/layouts/shortcodes/release-version.html b/site/layouts/shortcodes/release-version.html new file mode 100644 index 0000000000..59222af6f4 --- /dev/null +++ b/site/layouts/shortcodes/release-version.html @@ -0,0 +1,2 @@ +{{- $version := getenv "RELEASE_VERSION" | default $.Page.Site.Params.release_version }} +{{- $version }} \ No newline at end of file diff --git a/site/layouts/shortcodes/youtube.html b/site/layouts/shortcodes/youtube.html new file mode 100644 index 0000000000..765eaa22f4 --- /dev/null +++ b/site/layouts/shortcodes/youtube.html @@ -0,0 +1,2 @@ + diff --git a/site/main.go b/site/main.go new file mode 100644 index 0000000000..62d44487f8 --- /dev/null +++ b/site/main.go @@ -0,0 +1,57 @@ +// Copyright 2017 Google Inc. All Rights Reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package main + +import ( + "fmt" + "io/ioutil" + "log" + "net/http" + "os" +) + +func main() { + port := os.Getenv("PORT") + if port == "" { + port = "8080" + log.Printf("Defaulting to port %s", port) + } + + var configPath string + switch len(os.Args) { + case 1: + configPath = "vanity.yaml" + case 2: + configPath = os.Args[1] + default: + log.Fatal("usage: govanityurls [CONFIG]") + } + log.Printf("loading: %s", configPath) + + vanity, err := ioutil.ReadFile(configPath) + if err != nil { + log.Fatal(err) + } + h, err := newHandler(vanity) + if err != nil { + log.Fatal(err) + } + http.Handle("/", h) + log.Fatal(http.ListenAndServe(fmt.Sprintf(":%s", port), nil)) +} + +func defaultHost(r *http.Request) string { + return r.Host +} diff --git a/docs/gameserver-states.dot b/site/static/diagrams/gameserver-states.dot similarity index 100% rename from docs/gameserver-states.dot rename to site/static/diagrams/gameserver-states.dot diff --git a/docs/gameserver-states.png b/site/static/diagrams/gameserver-states.png similarity index 100% rename from docs/gameserver-states.png rename to site/static/diagrams/gameserver-states.png diff --git a/site/static/favicons/_head.html b/site/static/favicons/_head.html new file mode 100644 index 0000000000..81a0f455be --- /dev/null +++ b/site/static/favicons/_head.html @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/site/static/favicons/apple-touch-icon-180x180.png b/site/static/favicons/apple-touch-icon-180x180.png new file mode 100644 index 0000000000000000000000000000000000000000..13caf7b18294b3d67996453704a39468bebe78c2 GIT binary patch literal 5793 zcmdUz)n61)w}vN30qIUbO1h*3h7d$z=uT-yx}^q05h+nZdZb1`KuQ`05KwXuq*G9G z7;=E24(E6Ngmd$K7i+JpwfDYx*1Oi5V4$x>afjs&005xSexhM?n;ZT&NQiDvr4b@Y z0D!?=TSL_()DDv$9${kMI1mjh)b6P-rR0(#_4?FT6mwsl)2vp+w9=exyeF zq*beW$qQ4}$@8FyH4A_!%Oh6bIv}y##EM(cYaj2L>aaVB zn1aatOCkz%x38x#EKmJyFTphcLjO|hpX#O{&rlpP+fS#z?z(+%%CC(`y~g$$GIo{m zTW+tz{JjwwAn!5cH`jNk{np`y5kxazr1|`uUdW&FM9IHwx|U$u(^u<)87xiI;>f(m zY-*iVPkUQkZJjSO{gYdSW2(C<0!m~Q0^|ixOo>L*fp%dl6H@Q)KX*;$46es!?N|?V z*l`qG^(NMV@x!o?R1OL5BU>tab<_`kTHQ+^O76$^t|uW|HD9^{dMf{xXj=l68q1y3 zUOlFM7QrToG1Jdu!;rnqJ_rYpt%<~B4ff5}0bf`N$oCO@-zz%JN|gJfO5k?I|+K}e_bE8%_3>p}CWIy@um`P#rLbJ)0v=hBr_o_9{NgJR7 z)6*rLIOxX3w3%+$7?5HiZ4_S}eKD8hk!Y8*ULOIa85iu^beVQ3Q$aQc&Elv0@_iaz zI1j-qoxQ}DbhwEXEt<3(oja9E`&N4ZcKzymbYJUI!jfGhd{$O3i=B%~|D|Ub_!B%jhm(f(IlMC;3+VBP& z8l1<4cYZO4;!o6@k6*dOnB!r{YLDs94>D?1GNR?OR0aU}pb`9+Z<%w9hgG@Iuz?uw z=i8xTmJP9R+9SU&$S(jd${~jP+%fY3o=q#WZyj75jPKo$GPiRtwcvj(z_KunyXE0@ ztAlyhY_=Jeu-;~|Bj3>&DT~Gj`E+xZX6crw?-PJYM zG9RB>`K^H10JZWiidE4hQZUmnq$_#YMMzHhM2b7&L6(Zv33{c$HPY5PuxIS(|Gszk zA(BD$K!jkui`oqSP37GJZ7PxS2chzA^jF7L^*;?`l3V=(`2m7LkKEV!Jh7E3oI)S|Ew@9 z|GY#@&TDX*G=c|U&vC9|)R6dzv5%+m^w_-VQ~8?upb;gN9QNj0hrOsz;^V7n#jw$a zV#xG}t-Ym0l&%T&l{Jui9*ed{Sr|T9w9r|>cWx7^m)Fn+EMbqymGjfXcMO*zj-Ev^ z>oR_~z7*pm>>cKhOb+@W%3WchAGby}Ug6f}WY%aa98R2ybI2p6M{UZBQaNNhJ!3OS^}%FOh(6L7~V z?2X|A7yT(s+kk7iH$4PNf@V&xdt5zL+1@Z0^S(2^nRey@JvMpLJGh=ADv}RxJzi#W zLOIcezK7q9++sStFA_3%B7{hHXZ#2wNq1!sl+l^}s^YlW3!-qlRVE(4W^>VXnYGR7 zg@U6(4EtI`&1on7McnwRl9%`cvKL+vIzqU%*3nH%FCG3sx}*4Udt0{{?>SRj50~AV zIKrg%M6y{Jgz=N+YhZZknkuV)-E^d!Z(uj%(n*upV|mzOr+EY{X#a#+E2f&#E7#qy zj|kKfB{pb4JhwN_d`T|-xNhMpg3vV3!&#HsG>@XRh9AAI1{W;T9}8o*j0!1gd}x@I z|NaC`p{FQXC;S_`VS)s)4njEXa#f*+JH4XNg~;RX1UH*{kKN5Qo$JJBkF3Nd!mJoXATTXhjE1D8y#9_imLc+)HX_ zcz~t~c`0Kak7inuC`3dVp%rp%`Y*zk@|peq%<($0$$L&qAXqUkU4-eyxc7=G?wTST zm&ZrwQku@Pj`>%Z9jjSJ1jA8LRk>JneB>`|!eh@HBa_&R&%12sPx)B_gUai16X05T z=a@Z9&Cy(VHS@ub^~FdJ8Ks3V4ht2N;kl%k^;HX(hO+Ynh8rkZ)v~?P0Q~Ml%$cO+ zVC`16%`5_X^%sD*P? zAP)S@qo%=|UALnRIu-sb|1XtPg%_39W}62O~UH|2kKw|c)AXIx;DQy$ONtoF9` zx8#15rln(|FHNzP`je1<9q=_T$=-aG1U}^q5K7II-AzW4VJI^)e$CMw`h?lGD z(bW6A6QggHumY&0(gSygw5>OJK!x-OI7y0bUM>S0A3(kMQGG@xkZl(x012U?rvW zb`An_QA=sTxEX(YpkA|tpEUv@q=i46lDlPa()R5c%jw@V2I5@Ma76SYt0V0XQLMzb zGq#fYN`S6{;I~JWsD6w4;(gA6nlZ{e?d6`*ntU!4@jvOprZcZdBW_%8-i!!sy(ucyqSx`HCC)=EOfA_TZk)3Ks$!7nGQru6UK>V3a6Fc_VRk!HpgnFY*k| ztMSqDTel=fnRIoiwT%O+)<=9#3r9g_z$^YCKS|BS6$-=h*VXZ<-f4W4o#=v3Trb?a(z#C)(M12)fZe{s1vmsWgJ0ddP5)Vdg450y566-9o4xIGPumqxKl z&Ea*!bxv4li^yeICm1nb+zLDMQ5%_j!GrzWQ9J|v*DDuh(s<;>CjM5T!`-@^$`HI9zk9D|CJ82}HDyN!TtA2M`y>O)!VEZ;s zwG>tTY)6!v5qbQvX`o0(vs0WEd@GaJDI}Z{{9Y=VO!JiDqswTT(4QH&*A_e!WcKBT z^jk<$xshaa_Q61?^!`0sFJ^G7MEWHND66Q1{E1>1J^Y<8m7|hP1$oY99n)WCo9yhe z$Gc*y@9Es7AbGoOGe~U&FoAE8HAT`DaD8=}E}flFwA8U(irP7ITbJq89)3Qrdoogv zfUY{CS}w?$LwU)R+7{6xb^Y*an3YO}QF03y5mpwyRq#p^QI$p#hb=@V}N?c3J z362SK$jKJ#qazRL`~X)0v5C7Bk}jtrFJ-ga;S<8>jx-|m@;24WpU+aI92{6-cJJKF z&x-}A`}9}uOv>^jt?!&t@2B)s9ZwF6AA!rp8tW+(LC5KpA$iifp+O%&ofhsZx=+NL z<h=w+pyVRNtx?Tq>l{pBwU_;MIsmmBY6T*txf^xjY8&mhIqU1owX+*KBDKKE& zbW4HsJ27a7{Y@+Ca_GvsHAl84@A>X74jk$F)d*c4ftjhnN;ktiQB2dP` UsG6yMYdr(BAM0yWt2xB}548>pB>(^b literal 0 HcmV?d00001 diff --git a/site/static/favicons/browserconfig.xml b/site/static/favicons/browserconfig.xml new file mode 100644 index 0000000000..db83441d8c --- /dev/null +++ b/site/static/favicons/browserconfig.xml @@ -0,0 +1,12 @@ + + + + + + + + + transparent + + + \ No newline at end of file diff --git a/site/static/favicons/favicon-16x16.png b/site/static/favicons/favicon-16x16.png new file mode 100644 index 0000000000000000000000000000000000000000..7be576abaf271ff14e08f313e3da775241b5a26b GIT binary patch literal 496 zcmV}MT-cXUA zkAeYPl|!{iBTE~R25gb@dh_nP-*_`PI5->AySm(S&xiBj0RyFy&K0grd=&c0j^IN^J;X4JK0uX`7v_VAvf;0kt-;U(cmts&&^%h`s zsxqyJN1&{T$SXqS$(C-N!(&n=NOjFQSN!m-f3giQmixI3;;oDQr;etkxqVh?meNnL z!xf|OTtwcGDuT$w`gMw>P)RGEUgrV mqQkB7ewMhW%Ku|dJ^uhfXQ&Z=oaiqA00003{X-1%uWA-X6!lko=)E<$4_nuQAsidaEP5HzT$sk)HXnIK|SsKuW}EmWbQ z$;2Nh7DUmeE4y$fwXQ^PCPA&*(xOdfCKGq5Ei;*WUbzF4&d;4>qLy}%v$_|)^S#e` z&-Z;C;tDTbVSTIvtUGX(JMgwlyf8OH$JtKUE~&kuB_Yu)%GIZtpMN`yHzp#a<@UwgT`QYZJx5# zlQXIAFIEJICuheD%}bD$tnhLrn8*}LOm7O~8CnHMK2BmwZ6bj)C76+r+z)B{jg`L7OmyGV5};@FRJaq@o+c1m>lMi31QsZCiFPkw z1_^BS4g#UeD@cLag?zbZcIu{!)%jO?`o>XwH0L$@0{>O<(bo0(aUnt;C z*IyILi{}|V{YhlO7a+bPcdH5NY*UpBzgp;|0f(xs*{TyNP6#JR-UjIA#<-G;-k&C; zCw&1nC$obg;)l!mMo^jer9X&#>kBaOV(u|In!20-*0s-NCS!;FuON}#Z4CDM0eEAT zgxe0B1gF)+wAQ|xNyXmq1?W%A9(9a)v{A$pm(_b>=#W>`t1muf4EGQ)O}Q+OrBjii zW`N-%&cKaZW(f5*^tU9vpGieuhu2B%Ee<5--T}C$(FqB^r{^QRm}14vgZMIHe=@tzkgpM{ae}#gQ9ap@qZjG`yq|%@+#wo1?|oNn zrzSJw-O2V2?H?5%&F!bOtLlUWKFf?ppZ2YRo>7H6Z0=3cn_xPSndtufzlc}&#*?{W zP_M%3_+JJ4R?A6vNlg4Vmah!!pYtkz6aF9muaaZkfprJ|0TW|tFjjI{H~;_u07*qo IM6N<$f-lv&CIA2c literal 0 HcmV?d00001 diff --git a/site/static/favicons/favicon.ico b/site/static/favicons/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..223986646361165c28803eaec182fdae5bfa9378 GIT binary patch literal 1150 zcmd^-ze~eF6vs~xe@zv{p%y79TBuF#&OvZcbaxQ!D!POucLyE)BSZ(mLGUke@UL)a zD++1uPN<@bSg~5)HC!!iQD;rKyyScD^L_6nL1+lhR0_d0i~M1PrV&CpSRjFt=nxQs zy}x)|74suHbT?w*WPX}2;*06ncQ&hHe$?jb(AiOfwv@nk58rsyfmNJDCRcKI-|{uz z-A;JpLF(GiW$T=zyO+@83v(VQ^!jg9>$ZNk3X(&#c zZ5?tWZ)wi*w|m(!=(}O|pvP*=@Npl{$${qNGSR_*D?MR(6AcG-&+mPA<|!yl$`G%1 zJXm23{L7N#GcCvo^m^0HntR3ELo)+-RAP>gzUDFSl)fp3OHkuN3)++npZ4;PC7ezcr literal 0 HcmV?d00001 diff --git a/site/static/favicons/pwa-192x192.png b/site/static/favicons/pwa-192x192.png new file mode 100644 index 0000000000000000000000000000000000000000..5abf93064b240b8825c000200ca7ae74c890a45f GIT binary patch literal 6529 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 literal 0 HcmV?d00001 diff --git a/site/static/favicons/pwa-512x512.png b/site/static/favicons/pwa-512x512.png new file mode 100644 index 0000000000000000000000000000000000000000..df1653c8965ea0c5d5aa362530c6e5221b521ff0 GIT binary patch literal 16906 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 literal 0 HcmV?d00001 diff --git a/site/static/favicons/tile150x150.png b/site/static/favicons/tile150x150.png new file mode 100644 index 0000000000000000000000000000000000000000..bdc3e5a54eddfb13edbfed2c09ddc83b71915f38 GIT binary patch literal 8468 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 literal 0 HcmV?d00001 diff --git a/site/static/favicons/tile310x150.png b/site/static/favicons/tile310x150.png new file mode 100644 index 0000000000000000000000000000000000000000..8e66e09dd7f3b42e9634b5d42a86c1aa9a6962bd GIT binary patch literal 10525 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 F{{yQ5xcUG9 literal 0 HcmV?d00001 diff --git a/site/static/favicons/tile310x310.png b/site/static/favicons/tile310x310.png new file mode 100644 index 0000000000000000000000000000000000000000..d1778d3d678efcd065d01eda9fcf81159193b256 GIT binary patch literal 18214 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 Z0r^dQyc28={{PLDr!q>gua6A<{ulQV`_ljb literal 0 HcmV?d00001 diff --git a/site/static/favicons/tile70x70.png b/site/static/favicons/tile70x70.png new file mode 100644 index 0000000000000000000000000000000000000000..fce2b5c9cb8d13ef8fce5b78fbdf74e13fc8b3ee GIT binary patch literal 3398 zcmc(i_cz-Q)W<)G9YnNdOPi`1MG@3qC8)1WYsad+SCLRrU4_|rZO6LC70>e6L8H@KV}yN_`3u`m8w(p-&c4Jvgtz7bzg z-7+dT&bactRxzRl6PvZ!LNU$_+&XR}lUmMO^;1-9o?;!}qvHRihA+W%0DeF+1irMp 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 EA5TqDm;e9( literal 0 HcmV?d00001 diff --git a/docs/grafana-dashboard-autoscalers.png b/site/static/images/grafana-dashboard-autoscalers.png similarity index 100% rename from docs/grafana-dashboard-autoscalers.png rename to site/static/images/grafana-dashboard-autoscalers.png diff --git a/docs/grafana-dashboard-controller.png b/site/static/images/grafana-dashboard-controller.png similarity index 100% rename from docs/grafana-dashboard-controller.png rename to site/static/images/grafana-dashboard-controller.png diff --git a/site/themes/docsy/.gitignore b/site/themes/docsy/.gitignore new file mode 100644 index 0000000000..7e152f1072 --- /dev/null +++ b/site/themes/docsy/.gitignore @@ -0,0 +1,6 @@ + +public/ +resources/ +node_modules/ +tech-doc-hugo + diff --git a/site/themes/docsy/CONTRIBUTING.md b/site/themes/docsy/CONTRIBUTING.md new file mode 100644 index 0000000000..db177d4ac7 --- /dev/null +++ b/site/themes/docsy/CONTRIBUTING.md @@ -0,0 +1,28 @@ +# How to Contribute + +We'd love to accept your patches and contributions to this project. There are +just a few small guidelines you need to follow. + +## Contributor License Agreement + +Contributions to this project must be accompanied by a Contributor License +Agreement. You (or your employer) retain the copyright to your contribution; +this simply gives us permission to use and redistribute your contributions as +part of the project. Head over to to see +your current agreements on file or to sign a new one. + +You generally only need to submit a CLA once, so if you've already submitted one +(even if it was for a different project), you probably don't need to do it +again. + +## Code reviews + +All submissions, including submissions by project members, require review. We +use GitHub pull requests for this purpose. Consult +[GitHub Help](https://help.github.com/articles/about-pull-requests/) for more +information on using pull requests. + +## Community Guidelines + +This project follows +[Google's Open Source Community Guidelines](https://opensource.google.com/conduct/). diff --git a/site/themes/docsy/LICENSE b/site/themes/docsy/LICENSE new file mode 100644 index 0000000000..261eeb9e9f --- /dev/null +++ b/site/themes/docsy/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/site/themes/docsy/README.md b/site/themes/docsy/README.md new file mode 100644 index 0000000000..d1e00ce01f --- /dev/null +++ b/site/themes/docsy/README.md @@ -0,0 +1,31 @@ +# Docsy + +Docsy is a Hugo theme for technical documentation sets, providing simple navigation, site structure, and more. + +You can find an example site project that uses Docsy in [Docsy-Example](https://github.com/google/docsy-example). To use the Docsy Hugo theme, you can either: + +* Copy and edit the example site’s repo, which will also give you a skeleton structure for your top-level and documentation sections. +* Specify the Docsy theme like any other [Hugo theme](https://gohugo.io/themes/installing-and-using-themes/). + when creating or updating your site. This gives you all the theme-y goodness but you’ll need to specify your own site structure. + +This is not an officially supported Google product. This project is currently maintained. + +## Installation and prerequisites + +You need a recent version of Hugo to build sites using this theme (preferably 0.45+). If you install from the [release page](https://github.com/gohugoio/hugo/releases), make sure to get the `extended` Hugo version which supports SCSS. Alternatively, on macOS you can install Hugo via Brew. + +If you want to do stylesheet changes, you will also need `PostCSS` to create the final assets. You can also install it locally with: + +``` +npm install +```` + +To use a local version of the theme files, clone the repo using: + +``` +git clone --recurse-submodules --depth 1 https://github.com/google/docsy.git +``` + +## Theme documentation + +Detailed documentation for this theme is in the [Docsy example site](https://github.com/google/docsy-example) under **Documentation - Getting Started**. diff --git a/site/themes/docsy/assets/icons/logo.svg b/site/themes/docsy/assets/icons/logo.svg new file mode 100644 index 0000000000..1a10c6a825 --- /dev/null +++ b/site/themes/docsy/assets/icons/logo.svg @@ -0,0 +1,3 @@ + + + diff --git a/site/themes/docsy/assets/js/base.js b/site/themes/docsy/assets/js/base.js new file mode 100644 index 0000000000..1feaca347d --- /dev/null +++ b/site/themes/docsy/assets/js/base.js @@ -0,0 +1,65 @@ +/* + * Copyright 2018 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +(function($) { + + 'use strict'; + + $(function() { + $('[data-toggle="tooltip"]').tooltip(); + $('[data-toggle="popover"]').popover(); + + $('.popover-dismiss').popover({ + trigger: 'focus' + }) + }); + + + function bottomPos(element) { + return element.offset().top + element.outerHeight(); + } + + // Bootstrap Fixed Header + $(function() { + var promo = $(".js-td-cover"); + if (!promo.length) { + return + } + + var promoOffset = bottomPos(promo); + var navbarOffset = $('.js-navbar-scroll').offset().top; + + var threshold = Math.ceil(promo.outerHeight() / 2); + if ((promoOffset - navbarOffset) < threshold) { + $('.js-navbar-scroll').addClass('navbar-bg-onscroll'); + } + + + $(window).on('scroll', function() { + var navtop = $('.js-navbar-scroll').offset().top - $(window).scrollTop(); + var promoOffset = bottomPos($('.js-td-cover')); + var navbarOffset = $('.js-navbar-scroll').offset().top; + if ((promoOffset - navbarOffset) < threshold) { + $('.js-navbar-scroll').addClass('navbar-bg-onscroll'); + } else { + $('.js-navbar-scroll').removeClass('navbar-bg-onscroll'); + $('.js-navbar-scroll').addClass('navbar-bg-onscroll--fade'); + } + }); + }); + + +}(jQuery)); diff --git a/site/themes/docsy/assets/js/search.js b/site/themes/docsy/assets/js/search.js new file mode 100644 index 0000000000..83fbb155d5 --- /dev/null +++ b/site/themes/docsy/assets/js/search.js @@ -0,0 +1,43 @@ +/* +Copyright 2018 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +(function($) { + + 'use strict'; + + var Search = { + init: function() { + $(document).ready(function() { + $(document).on('keypress', '.td-search-input', function(e) { + if (e.keyCode !== 13) { + return + } + + var query = $(this).val(); + var searchPage = "{{ "search/" | absURL }}?q=" + query; + document.location = searchPage; + + return false; + }); + + }); + }, + }; + + Search.init(); + + +}(jQuery)); diff --git a/site/themes/docsy/assets/scss/_alerts.scss b/site/themes/docsy/assets/scss/_alerts.scss new file mode 100644 index 0000000000..5ce5cc22a2 --- /dev/null +++ b/site/themes/docsy/assets/scss/_alerts.scss @@ -0,0 +1,20 @@ +// Style alert boxes. + +.alert { + font-weight: $font-weight-medium; + background: $white; + color: inherit; + border-radius: 0; + + @each $color, $value in $theme-colors { + &-#{$color} { + & .alert-heading { + color: $value; + } + + border-style: solid; + border-color: $value; + border-width: 0 0 0 4px; + } + } +} \ No newline at end of file diff --git a/site/themes/docsy/assets/scss/_blog.scss b/site/themes/docsy/assets/scss/_blog.scss new file mode 100644 index 0000000000..b26aec766d --- /dev/null +++ b/site/themes/docsy/assets/scss/_blog.scss @@ -0,0 +1,10 @@ +// Blog related styles. + +.td-blog { + .td-rss-button { + position: absolute; + top: 5.5rem; + right: 1rem; + z-index: 22; + } +} \ No newline at end of file diff --git a/site/themes/docsy/assets/scss/_boxes.scss b/site/themes/docsy/assets/scss/_boxes.scss new file mode 100644 index 0000000000..cc685706f3 --- /dev/null +++ b/site/themes/docsy/assets/scss/_boxes.scss @@ -0,0 +1,99 @@ +// Boxes on the home page and similar. +.td-box {} + +// box-variant creates the main style for a colored section used on the site. +@mixin box-variant($parent, $color-name, $color-value) { + $text-color: color-yiq($color-value); + $link-color: mix($blue, $text-color, lightness($color-value)); + $link-hover-color: rgba($link-color, 0.5) !default; + + #{$parent} { + &--#{$color-name} { + color: $text-color; + background-color: #{$color-value}; + + .td-arrow-down { + &::before { + left: 50%; + margin-left: -30px; + bottom: -25px; + border: { + style: solid; + width: 25px 30px 0 30px; + color: #{$color-value} transparent transparent transparent; + }; + z-index: 3; + position: absolute; + content: ""; + } + } + } + } + + // Improve contrast for the links in paragraphs. + @include link-variant("#{$parent}--#{$color-name} p > a", $link-color, $link-hover-color, false); + + @if $enable-gradients { + @include bg-gradient-variant("#{$parent}--1#{$color-name}#{$parent}--gradient", $color-value); + } +} + +// Common min-height modifiers used for boxes. +@mixin td-box-height-modifiers($parent) { + #{$parent} { + &--height-auto {} + + &--height-min { + min-height: 300px; + } + + &--height-med { + min-height: 400px; + } + + &--height-max { + min-height: 500px; + } + + &--height-full { + min-height: 100vh; + } + + @include media-breakpoint-up(md) { + &--height-min { + min-height: 450px; + } + + &--height-med { + min-height: 500px; + } + + &--height-max { + min-height: 650px; + } + } + } +} + +@include td-box-height-modifiers(".td-box"); + +// This allows "painting by numbers" +@for $i from 1 through length($td-box-colors) { + $c: nth($td-box-colors, $i); + $name: $i - 1; + + @include box-variant(".td-box", $name, $c); +} + +// Same as above with all the theme color names. +@each $color, $value in $colors { + @include box-variant(".td-box", $color, $value); +} + +@each $color, $value in $theme-colors { + @include box-variant(".td-box", $color, $value); +} + +@each $color, $value in $grays { + @include box-variant(".td-box", $color, $value); +} \ No newline at end of file diff --git a/site/themes/docsy/assets/scss/_breadcrumb.scss b/site/themes/docsy/assets/scss/_breadcrumb.scss new file mode 100644 index 0000000000..e7237a30a6 --- /dev/null +++ b/site/themes/docsy/assets/scss/_breadcrumb.scss @@ -0,0 +1,7 @@ +// Breadcrumb + +.breadcrumb { + background: none; + padding-left: 0; + padding-top: 0; +} \ No newline at end of file diff --git a/site/themes/docsy/assets/scss/_buttons.scss b/site/themes/docsy/assets/scss/_buttons.scss new file mode 100644 index 0000000000..4ec1321849 --- /dev/null +++ b/site/themes/docsy/assets/scss/_buttons.scss @@ -0,0 +1,15 @@ +// Buttons + +@if $enable-rounded { + .btn { + border-radius: 1rem; + + &-lg { + border-radius: 2rem; + } + + &-sm { + border-radius: 1rem; + } + } +} diff --git a/site/themes/docsy/assets/scss/_code.scss b/site/themes/docsy/assets/scss/_code.scss new file mode 100644 index 0000000000..eb9b6bd565 --- /dev/null +++ b/site/themes/docsy/assets/scss/_code.scss @@ -0,0 +1,52 @@ +// Code formatting. + +.td-content { + // Highlighted code. + .highlight { + @extend .card; + + margin: 2rem 0; + padding: 1rem; + background-color: $gray-100; + + pre, div { + background-color: inherit !important; + } + + pre { + margin: 0; + padding: 0; + } + } + + // Inline code + p code { + padding: 0.2em 0.4em; + margin: 0; + font-size: 85%; + background-color: rgba($black, 0.05); + border-radius: $border-radius; + + br { + display: none; + } + } + + + // Code blocks + pre { + word-wrap: normal; + background-color: $gray-100; + padding: $spacer; + + + > code { + padding: 0; + margin: 0; + font-size: 100%; + word-break: normal; + white-space: pre; + border: 0; + } + } +} \ No newline at end of file diff --git a/site/themes/docsy/assets/scss/_colors.scss b/site/themes/docsy/assets/scss/_colors.scss new file mode 100644 index 0000000000..3f34aa84e3 --- /dev/null +++ b/site/themes/docsy/assets/scss/_colors.scss @@ -0,0 +1,41 @@ +// Add some local palette classes so you can do -bg-warning -text-warning etc. Even -bg-1 if you want to paint by numbers. +@mixin palette-variant($color-name, $color-value) { + $text-color: color-yiq($color-value); + $link-color: mix($blue, $text-color, lightness($color-value)); + + $link-hover-color: rgba($link-color, .5) !default; + + .-bg-#{$color-name} { + color: $text-color; + background-color: $color-value; + } + + // Make links in paragraphs stand out more. + @include link-variant(".-bg-#{$color-name} p > a", $link-color, $link-hover-color, false); + + + .-text-#{$color-name} { + color: $color-value; + } +} + +@each $color, $value in $colors { + @include palette-variant($color, $value); +} + +@each $color, $value in $theme-colors { + @include palette-variant($color, $value); +} + +@each $color, $value in $grays { + @include palette-variant($color, $value); +} + +// This allows "painting by numbers", i.e. picking colors by a shortcode Ordianal. +@for $i from 1 through length($td-box-colors) { + $value: nth($td-box-colors, $i); + $name: $i - 1; + $text-color: color-yiq($value); + + @include palette-variant($name, $value); +} \ No newline at end of file diff --git a/site/themes/docsy/assets/scss/_content.scss b/site/themes/docsy/assets/scss/_content.scss new file mode 100644 index 0000000000..3e72e00ebb --- /dev/null +++ b/site/themes/docsy/assets/scss/_content.scss @@ -0,0 +1,82 @@ +// +// Style Markdown content +// + +.td-content { + order: 1; + + p, li, td { + font-weight: $font-weight-body-text; + } + + > h1 { + font-weight: $font-weight-bold; + margin-bottom: 1rem; + } + + > h2 { + margin-bottom: 1rem; + } + + > h2:not(:first-child) { + margin-top: 3rem; + } + + > h2 + h3 { + margin-top: 1rem; + } + + > h3, > h4, > h5, > h6 { + margin-bottom: 1rem; + margin-top: 2rem; + } + + img { + @extend .img-fluid; + } + + > table { + @extend .table-striped; + + @extend .table-responsive; + + @extend .table; + } + + > blockquote { + padding: 0 0 0 1rem; + margin-bottom: $spacer; + color: $gray-600; + border-left: 6px solid $secondary; + } + + > ul li, > ol li { + margin-bottom: .25rem; + } + + strong { + font-weight: $font-weight-bold; + } + + > pre, > .highlight, > .lead, > h1, > h2, > ul, > ol, > p, > blockquote, > dl dd, .footnotes, > .alert { + @extend .td-max-width-on-larger-screens; + } + + .alert:not(:first-child) { + margin-top: 2 * $spacer; + margin-bottom: 2 * $spacer; + } + + .lead { + margin-bottom: 1.5rem; + } +} + +.td-title { + margin-top: 1rem; + margin-bottom: .5rem; + + @include media-breakpoint-up(sm) { + font-size: 3rem; + } +} \ No newline at end of file diff --git a/site/themes/docsy/assets/scss/_main-container.scss b/site/themes/docsy/assets/scss/_main-container.scss new file mode 100644 index 0000000000..2dc54eaefc --- /dev/null +++ b/site/themes/docsy/assets/scss/_main-container.scss @@ -0,0 +1,34 @@ +// The outer page container i.e. common styles for any page. +.td-outer { + display: flex; + flex-direction: column; + height: 100vh; +} + +// The outer page container for the default base template. +.td-default { + main { + section:first-of-type { + @include media-breakpoint-up(md) { + padding-top: 8rem; + } + } + + section { + @extend .td-block-padding; + } + } +} + +.td-main { + flex-grow: 1; + + main { + @include media-breakpoint-up(md) { + padding-top: 5.5rem; + } + + + padding-bottom: 2rem; + } +} diff --git a/site/themes/docsy/assets/scss/_nav.scss b/site/themes/docsy/assets/scss/_nav.scss new file mode 100644 index 0000000000..6113f802c5 --- /dev/null +++ b/site/themes/docsy/assets/scss/_nav.scss @@ -0,0 +1,98 @@ +// +// Main navbar +// + +.td-navbar-cover { + background: $primary; + + @include media-breakpoint-up(md) { + background: transparent !important; + + .nav-link { + text-shadow: 1px 1px 2px $dark; + } + + } + + &.navbar-bg-onscroll .nav-link { + text-shadow: none; + } +} + +.navbar-bg-onscroll { + background: $primary !important; + opacity: inherit; +} + +.td-navbar { + background: $primary; + min-height: 4rem; + margin: 0; + z-index: 32; + + @include media-breakpoint-up(md) { + position: fixed; + top: 0; + width: 100%; + } + + + .navbar-brand { + text-transform: none; + text-align: middle; + + .nav-link { + display: inline-block; + margin-right: -30px; + } + + svg { + display: inline-block; + margin: 0 10px; + height: 30px; + } + } + + .nav-link { + text-transform: none; + font-weight: $font-weight-bold; + } + + .td-search-input { + border: none; + + @include placeholder { + color: $navbar-dark-color; + } + } + + .dropdown { + min-width: 100px; + } + + @include media-breakpoint-down(md) { + padding-right: .5rem; + padding-left: .75rem; + + .td-navbar-nav-scroll { + max-width: 100%; + height: 2.5rem; + margin-top: .25rem; + overflow: hidden; + font-size: .875rem; + + .nav-link { + padding-right: .25rem; + padding-left: 0; + } + + .navbar-nav { + padding-bottom: 2rem; + overflow-x: auto; + white-space: nowrap; + -webkit-overflow-scrolling: touch; + + } + } + } +} \ No newline at end of file diff --git a/site/themes/docsy/assets/scss/_search.scss b/site/themes/docsy/assets/scss/_search.scss new file mode 100644 index 0000000000..ef257d4b9d --- /dev/null +++ b/site/themes/docsy/assets/scss/_search.scss @@ -0,0 +1,16 @@ +// Search + +.td-search-input { + background: transparent; + + &.form-control:focus { + border-color: lighten($primary, 60%); + box-shadow: 0 0 0 2px lighten($primary, 30%); + } + + @if $enable-rounded { + border-radius: 1rem; + } + + font-family: "Font Awesome 5 Free", $font-family-base; +} \ No newline at end of file diff --git a/site/themes/docsy/assets/scss/_sidebar-toc.scss b/site/themes/docsy/assets/scss/_sidebar-toc.scss new file mode 100644 index 0000000000..96e7abbb16 --- /dev/null +++ b/site/themes/docsy/assets/scss/_sidebar-toc.scss @@ -0,0 +1,57 @@ +// +// Right side toc +// +.td-toc { + border-left: 1px solid $border-color; + + @supports (position: sticky) { + position: sticky; + top: 4rem; + height: calc(100vh - 10rem); + overflow-y: auto; + } + + order: 2; + padding-top: 0.75rem; + padding-bottom: 1.5rem; + vertical-align: top; + + a { + display: block; + font-weight: $font-weight-light; + padding-bottom: .25rem; + } + + li { + list-style: none; + display: block; + } + + li li { + margin-left: 0.5rem; + } + + .td-page-meta { + a { + font-weight: $font-weight-medium; + } + } + + #TableOfContents { + // Hugo's ToC is a mouthful, this can be used to style the top level h2 entries. + > ul > li > ul > li > a {} + + a { + color: $gray-600; + + &:hover { + color: $blue; + text-decoration: none; + } + } + } + + ul { + padding-left: 0; + } +} \ No newline at end of file diff --git a/site/themes/docsy/assets/scss/_sidebar-tree.scss b/site/themes/docsy/assets/scss/_sidebar-tree.scss new file mode 100644 index 0000000000..3eef1c4b01 --- /dev/null +++ b/site/themes/docsy/assets/scss/_sidebar-tree.scss @@ -0,0 +1,132 @@ +// +// Left side navigation +// +.td-sidebar-nav { + padding-right: 0.5rem; + margin-right: -15px; + margin-left: -15px; + + @include media-breakpoint-up(md) { + @supports (position: sticky) { + max-height: calc(100vh - 10rem); + overflow-y: auto; + } + } + + + @include media-breakpoint-up(md) { + display: block !important; + } + + + &__section { + li { + list-style: none; + } + + ul { + padding: 0; + margin: 0; + } + + @include media-breakpoint-up(md) { + & > ul { + padding-left: .5rem; + } + } + + + padding-left: 0; + } + + &__section-title { + display: block; + font-weight: $font-weight-medium; + + .active { + font-weight: $font-weight-bold; + } + + a { + color: $gray-900; + } + } + + .td-sidebar-link { + display: block; + padding-bottom: 0.375rem; + + &__page { + color: $gray-700; + font-weight: $font-weight-light; + } + } + + a { + &:hover { + color: $blue; + text-decoration: none; + } + + &.active { + font-weight: $font-weight-bold; + } + } + + .dropdown { + a { + color: $gray-700; + } + + .nav-link { + padding: 0 0 1rem; + } + } +} + +.td-sidebar { + @include media-breakpoint-up(md) { + padding-top: 4rem; + background-color: $td-sidebar-bg-color; + padding-right: 1rem; + border-right: 1px solid $td-sidebar-border-color; + } + + + padding-bottom: 1rem; + + &__toggle { + line-height: 1; + color: $gray-900; + margin: 1rem; + } + + &__search { + padding: 1rem 15px; + margin-right: -15px; + margin-left: -15px; + } + + &__inner { + order: 0; + + @include media-breakpoint-up(md) { + @supports (position: sticky) { + position: sticky; + top: 4rem; + z-index: 10; + height: calc(100vh - 6rem); + } + } + + + @include media-breakpoint-up(xl) { + flex: 0 1 320px; + } + + + .td-search-box { + width: 100%; + } + } +} \ No newline at end of file diff --git a/site/themes/docsy/assets/scss/_variables.scss b/site/themes/docsy/assets/scss/_variables.scss new file mode 100644 index 0000000000..cddcecc50c --- /dev/null +++ b/site/themes/docsy/assets/scss/_variables.scss @@ -0,0 +1,131 @@ +/* + +Bootstrap variables overrides for theme. +See https://github.com/twbs/bootstrap/pull/23260 +*/ + +@fa-font-path : "../webfonts"; + +// Bootstrap flags. For more, see https://getbootstrap.com/docs/4.0/getting-started/theming/ +$enable-gradients: true; +$enable-rounded: true; +$enable-shadows: true; + +// Theme flags. + +$td-enable-google-fonts: true; + +// Theme colors + +$primary: #30638E !default; +$primary-light: lighten($primary, 75%) !default; +$secondary: #FFA630 !default; +$success: #3772FF !default; +$info: #C0E0DE !default; +$warning: #ED6A5A !default; +$danger: #ED6A5A !default; +$white: #fff !default; +$light: #D3F3EE !default; + +$dark: #403F4C !default; +$blue: #72A1E5 !default; +$orange: #BA5A31 !default; +$gray-100: #f8f9fa !default; +$gray-200: #eee !default; +$gray-300: #dee2e6 !default; +$gray-400: #ccc !default; +$gray-500: #adb5bd !default; +$gray-600: #888 !default; +$gray-700: #495057 !default; +$gray-800: #333 !default; +$gray-900: #222 !default; +$black: #000 !default; + +$code-color: darken($secondary, 20%) !default; + +// UI element colors + +$border-color: $gray-300 !default; +$td-sidebar-bg-color: rgba($primary, 0.03) !default; +$td-sidebar-border-color: $border-color !default; + +// Background colors for the sections on home page etc. It is a paint by number system, starting at 0, where the number is taken from the shortcode's ordinal +// if not provided by the user. +// These colors are all part of the theme palette, but the mix is fairly random to create variation. This can be overridden by the project if needed. +$td-box-colors: $dark, $primary, $secondary, $info, $primary-light, $gray-600, $success, $warning, $dark, $danger, $primary, $secondary, $primary-light, $info; + +$link-color: $blue !default; +$link-decoration: none !default; +$link-hover-color: darken($link-color, 15%) !default; +$link-hover-decoration: none !default; + +// Fonts + +$google_font_name: "Open Sans"; +$google_font_family: "Open+Sans:300,300i,400,400i,700,700i"; +$web-font-path: "https://fonts.googleapis.com/css?family=#{$google_font_family}"; + +$td-fonts-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + +@if $td-enable-google-fonts { + $td-fonts-serif: prepend($td-fonts-serif, "#{$google_font_name}"); +} + +$font-family-sans-serif: $td-fonts-serif !default; + +$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default; +$font-family-base: $font-family-sans-serif !default; +$font-size-base: 1rem !default; + +// Font weights + +$font-weight-light: 300 !default; +$font-weight-normal: 400 !default; +$font-weight-medium: 500 !default; +$font-weight-bold: 700 !default; + +$font-weight-body-text: $font-weight-normal !default; +$headings-font-weight: $font-weight-medium !default; + +// Heading sizes + +$h1-font-size: $font-size-base * 2.25 !default; +$h2-font-size: $font-size-base * 2 !default; +$h3-font-size: $font-size-base * 1.5 !default; +$h4-font-size: $font-size-base * 1.35 !default; +$h5-font-size: $font-size-base * 1.15 !default; +$h6-font-size: $font-size-base !default; + +// Display styles + +$display1-weight: $font-weight-bold !default; +$display2-weight: $font-weight-bold !default; +$display3-weight: $font-weight-bold !default; +$display4-weight: $font-weight-bold !default; +$display1-size: 3rem !default; +$display2-size: 2.5rem !default; +$display3-size: 2rem !default; +$display4-size: 1.75rem !default; + +// Space + +$spacer: 1rem; +$td-block-space-top-base: 4 * $spacer; +$td-block-space-bottom-base: 4 * $spacer; + +// Pagination + +$pagination-color: $gray-600 !default; +$pagination-border-color: rgba($black, 0.1) !default; +$pagination-active-border-color: darken($primary, 5%) !default; +$pagination-disabled-color: $gray-300 !default; + +// Navbar + +$navbar-dark-color: rgba($white, 0.75) !default; +$navbar-dark-hover-color: rgba($white, 0.5) !default; +$navbar-dark-active-color: $white !default; +$navbar-dark-disabled-color: rgba($white, 0.25) !default; + +// The yiq lightness value that determines when the lightness of color changes from "dark" to "light". +$yiq-contrasted-threshold: 200 !default; \ No newline at end of file diff --git a/site/themes/docsy/assets/scss/_variables_project.scss b/site/themes/docsy/assets/scss/_variables_project.scss new file mode 100644 index 0000000000..69ee04629e --- /dev/null +++ b/site/themes/docsy/assets/scss/_variables_project.scss @@ -0,0 +1,7 @@ +/* + +Nothing defined here. The Hugo project that uses this theme can override Bootstrap and theme variables by adding a file to: + +assets/scss/_variables_project.scss + +*/ \ No newline at end of file diff --git a/site/themes/docsy/assets/scss/blocks/_blocks.scss b/site/themes/docsy/assets/scss/blocks/_blocks.scss new file mode 100644 index 0000000000..1e374678cf --- /dev/null +++ b/site/themes/docsy/assets/scss/blocks/_blocks.scss @@ -0,0 +1,7 @@ +@import "cover"; + +.td-bg-arrow { + &-wrapper { + position: relative; + } +} \ No newline at end of file diff --git a/site/themes/docsy/assets/scss/blocks/_cover.scss b/site/themes/docsy/assets/scss/blocks/_cover.scss new file mode 100644 index 0000000000..08ce99d379 --- /dev/null +++ b/site/themes/docsy/assets/scss/blocks/_cover.scss @@ -0,0 +1,15 @@ +// A cover block is a full size cover with a fixed background for smaller screens. + +@include td-box-height-modifiers(".td-cover-block"); + +.td-cover-block { + position: relative; + padding-top: 5rem; + padding-bottom: 5rem; + background: { + repeat: no-repeat; + position: 50% 0; + size: cover; + }; + +} \ No newline at end of file diff --git a/site/themes/docsy/assets/scss/main.scss b/site/themes/docsy/assets/scss/main.scss new file mode 100644 index 0000000000..909935b4d9 --- /dev/null +++ b/site/themes/docsy/assets/scss/main.scss @@ -0,0 +1,56 @@ +@import "support/functions"; +@import "variables_project"; +@import "variables"; +@import "support/mixins"; + +@import "../vendor/bootstrap/scss/bootstrap"; + +@import "../vendor/Font-Awesome//web-fonts-with-css/scss/fontawesome.scss"; +@import "../vendor/Font-Awesome//web-fonts-with-css/scss/fa-solid.scss"; +@import "../vendor/Font-Awesome//web-fonts-with-css/scss/fa-brands.scss"; + +@import "support/utilities"; +@import "colors"; +@import "boxes"; +@import "blog"; +@import "code"; +@import "nav"; +@import "sidebar-tree"; +@import "sidebar-toc"; +@import "buttons"; +@import "breadcrumb"; +@import "alerts"; +@import "content"; +@import "search"; +@import "main-container"; +@import "blocks/blocks"; + +@if $td-enable-google-fonts { + @import url($web-font-path); +} + +footer { + min-height: 150px; + + @include media-breakpoint-down(md) { + min-height: 200px; + } +} + +// Adjust anchors vs the fixed menu. +@include media-breakpoint-up(md) { + .td-offset-anchor:target { + display: block; + position: relative; + top: -4rem; + visibility: hidden; + } + + h2[id]:before, h3[id]:before, h4[id]:before, h5[id]:before { + display: block; + content: " "; + margin-top: -5rem; + height: 5rem; + visibility: hidden; + } +} \ No newline at end of file diff --git a/site/themes/docsy/assets/scss/support/_functions.scss b/site/themes/docsy/assets/scss/support/_functions.scss new file mode 100644 index 0000000000..2b641f0980 --- /dev/null +++ b/site/themes/docsy/assets/scss/support/_functions.scss @@ -0,0 +1,21 @@ +// Common functions. + +@function prepend($list, $value) { + @return join($value, $list); +} + + + +// See https://www.sitepoint.com/using-sass-build-color-palettes/ +@function color-diff($a, $b) { + $sat: saturation($a) - saturation($b); + $lig: lightness($a) - lightness($b); + $fn-sat: if($sat > 0, 'desaturate', 'saturate'); + $fn-lig: if($lig > 0, 'darken', 'lighten'); + + @return ( + adjust-hue: -(hue($a) - hue($b)), + #{$fn-sat}: abs($sat), + #{$fn-lig}: abs($lig) + ); +} \ No newline at end of file diff --git a/site/themes/docsy/assets/scss/support/_mixins.scss b/site/themes/docsy/assets/scss/support/_mixins.scss new file mode 100644 index 0000000000..8fcbd7fd67 --- /dev/null +++ b/site/themes/docsy/assets/scss/support/_mixins.scss @@ -0,0 +1,49 @@ +// Some simple mixins. + +@mixin bg-gradient-variant($parent, $color) { + #{$parent} { + background: $color linear-gradient(180deg, mix($body-bg, $color, 15%), $color) repeat-x !important; + } +} + +@mixin link-variant($parent, $color, $hover-color, $underline: false) { + #{$parent} { + color: $color; + + @if $underline { + text-decoration: underline; + } + + @include hover-focus { + color: $hover-color; + } + } +} + +@mixin optional-at-root($sel) { + @at-root #{if(not &, $sel, selector-append(&, $sel))} { + @content; + } +} + +// placeholder allows styling of the placeholder used in search input etc. +@mixin placeholder { + @include optional-at-root("::-webkit-input-placeholder") { + @content; + } + + + @include optional-at-root(":-moz-placeholder") { + @content; + } + + + @include optional-at-root("::-moz-placeholder") { + @content; + } + + + @include optional-at-root(":-ms-input-placeholder") { + @content; + } +} \ No newline at end of file diff --git a/site/themes/docsy/assets/scss/support/_utilities.scss b/site/themes/docsy/assets/scss/support/_utilities.scss new file mode 100644 index 0000000000..ce9bc2e267 --- /dev/null +++ b/site/themes/docsy/assets/scss/support/_utilities.scss @@ -0,0 +1,82 @@ +// Mixins + +@mixin optional-at-root($sel) { + @at-root #{if(not &, $sel, selector-append(&, $sel))} { + @content; + } +} + +@mixin placeholder { + @include optional-at-root("::-webkit-input-placeholder") { + @content; + } + + + @include optional-at-root(":-moz-placeholder") { + @content; + } + + + @include optional-at-root("::-moz-placeholder") { + @content; + } + + + @include optional-at-root(":-ms-input-placeholder") { + @content; + } +} + +// Common util classes. + +.td-border-top { + border: none; + border-top: 1px solid #eee; +} + +.td-border-none { + border: none; +} + +.td-block-padding { + padding-top: $td-block-space-top-base ; + padding-bottom: $td-block-space-bottom-base; + + @include media-breakpoint-up(md) { + padding-top: $td-block-space-top-base * 1.25; + padding-bottom: $td-block-space-bottom-base * 1.25; + } +} + +.td-overlay { + position: relative; + + &::after { + content: ""; + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + } + + &--dark::after { + background-color: rgba($dark, 0.3); + } + + &--light::after { + background-color: rgba($light, 0.3); + } + + &__inner { + position: relative; + z-index: 1; + } +} + +.td-max-width-on-larger-screens { + @include media-breakpoint-up(lg) { + max-width: 80%; + } + +} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/CHANGELOG.md b/site/themes/docsy/assets/vendor/Font-Awesome/CHANGELOG.md new file mode 100644 index 0000000000..cff7c716f8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/CHANGELOG.md @@ -0,0 +1,583 @@ +# Change Log + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). + +**Note that references to the Font-Awesome-Pro repository refer to a GitHub +repository that is by invitation only. You will get a 404 - Not Found if you do +not have access** + +## [5.1.1](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.1.1) - 2018-07-17 + +### Added +* Additional search terms for various icons FortAwesome/Font-Awesome#13429 + +### Changed +* Marked the font-awesome-logo-full as a "private" icon +* Consistently named and minified CSS and JS files in the CDN, npm packages, and zip files + +### Fixed +* Removed "fa-" prefix from Less and Sass style bundles filenames +* Unable to use brand icons with pseudo-elements and SVG with JS +* Adding icons explicitly using the library were not available when using pseudo-elements and SVG with JS +* smile-plus search terms in icons.yml incorrectly formatted +* kiss and grin-wink icons having incorrect weight / style FortAwesome/Font-Awesome#13361 FortAwesome/Font-Awesome#13363 +* Missing underscore in filenames in the less/v4-shims.less FortAwesome/Font-Awesome#13415 +* Light style for code-commit +* Including rev brand icon in the Font Awesome Free version + +--- + +## [5.1.0](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.1.0) - 2018-06-20 + +**Minor version upgrade notice: there are some backward-incompatible changes to this release. See the +[UPGRADING.md guide](https://github.com/FortAwesome/Font-Awesome/blob/master/UPGRADING.md) for more +information.** + +### Added +* New Emoji, Design, and Travel category pack +* Another group of requested and commissioned icons +* Version 4 shim for Web Fonts with CSS +* New simplified download and NPM packages +* @fortawesome/fontawesome-free and @fortawesome/fontawesome-pro NPM packages that match what's available in the CDN and .ZIP files +* Brand icons rev, nimblr, megaport, mailchimp, hornbill, wix, weebly, themeco, squarespace, aws, shopware +* API method toHtml() for converting abstract objects to HTML +* API method counter() to generate Layers Counters +* API method watch() to configure MutationObserver and watch DOM for icon changes and additions + +### Changed +* Relocating sponsor data to a separate sponsors.yml +* Updated teamspeak brand icon +* No more default exports in the CommonJS/ES packages (anything installed from NPM) +* Greatly improved performance and rendering of CSS pseudo-elements with SVG and JavaScript +* Configuration of SVG with JavaScript can now be done with attributes on the script tag +* SVG with JavaScript pseudo-elements now match syntax (font-family, font-weight) of Web Fonts with CSS + +### Fixed +* Tree shaking of all NPM packages by default +* Alignment of the book-open and dice-six icon +* Correcting creative-commons +* Incorrect license on the fontawesome-common-types package +* Improve ligatures that share a base name with another ligature +* Correcting solid style of the digital-tachograph icon +* Prevent duplicating classes in some scenarios with SVG with JavaScript +* Duplicate insertion of CSS when insertCss() method was called +* Missing TypeScript definitions for the free-brands-svg-icons package + +--- + +## [5.0.13](https://github.com/FortAwesome/Font-Awesome/releases/tag/5.0.13) - 2018-05-10 + +### Added +* 68 icons to Free and 165 to Pro of the most requested icons in Font Awesome + +--- + +## [5.0.12](https://github.com/FortAwesome/Font-Awesome/releases/tag/5.0.12) - 2018-05-03 + +### Added +* A long time ago in a galaxy far, far away some icons were added + +### Fixed +* Renamed the r brand to r-project to prevent ligature collision with the "r" glyph + +--- + +## [5.0.11](https://github.com/FortAwesome/Font-Awesome/releases/tag/5.0.11) - 2018-05-01 + +### Added +* 16 new user icons +* Full set of Creative Commons symbols +* Regular style comment-dots used for v4 comment-alt in shim +* Top 6 brand icons: r, ebay, mastodon, researchgate, keybase, teamspeak + +### Changed +* Revised slider icons FortAwesome/Font-Awesome#11872 +* Make desktop typeface easier to find in apps that support ligature previews + +### Fixed +* Remove errant XML entity from the lastfm-square icon FortAwesome/Font-Awesome#12847 +* Correcting paths in cloud icons FortAwesome/Font-Awesome-Pro#920 + +--- + +## [5.0.10](https://github.com/FortAwesome/Font-Awesome/releases/tag/5.0.10) - 2018-04-10 + +### Added +* New java brand icon FortAwesome/Font-Awesome#386 + +### Changed +* Updating depth of dna icon +* Updating pied-piper, adding pied-piper-hat + +### Fixed +* Correcting path errors on readme icon FortAwesome/Font-Awesome#12754 +* Light style of lamp icon FortAwesome/Font-Awesome#12725 + +--- + +## [5.0.9](https://github.com/FortAwesome/Font-Awesome/releases/tag/5.0.9) - 2018-03-27 + +### Added +* New Chat icon pack and category +* New Charity icon pack and category +* New Moving icon pack and category +* New icons hands and hand-holding + +### Changed +* Updated flipboard, readme, and houzz brand icon +* Making all solid icons in the medical icon pack free +* Updated hand-holding-box and hand-receiving in the Light style + +### Fixed +* Missing box-sizing CSS property for fa-layers-counter + +--- + +## [5.0.8](https://github.com/FortAwesome/Font-Awesome/releases/tag/5.0.8) - 2018-03-01 + +### Fixed +* OTF font files missing ligatures for Pro styles FortAwesome/Font-Awesome#12486 FortAwesome/Font-Awesome-Pro#1034 + +--- + +## [5.0.7](https://github.com/FortAwesome/Font-Awesome/releases/tag/5.0.7) - 2018-02-26 + +### Added +* New Logistics category +* New Medical category +* Individual SVG files available from the Font Awesome CDN +* Additional search terms + +### Changed +* Apple brand icon update FortAwesome/Font-Awesome#12337 +* Disable mutation observers with fontawesome.noAuto() is called +* License information now references https URL scheme + +### Fixed +* Missing TypeScript names FortAwesome/react-fontawesome#83 +* Adding categories metadata FortAwesome/Font-Awesome#12034 +* TypeScript improvement for fontawesome.layer() +* Correcting a melting, wobbling, weird-looking whistle + +--- + +## [5.0.6](https://github.com/FortAwesome/Font-Awesome/releases/tag/5.0.6) - 2018-01-25 + +### Fixed +* @fortawesome/fontawesome-pro-light missing submodules + +--- + +## [5.0.5](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.0.5) - 2018-01-25 + +### Added +* New Sports category +* New Chess category +* Added brand icons for flipboard, php, quinscape, and hips + +### Fixed +* Sass and Less mixin fa-icon() now uses ems instead of percentage +* Corrected misspelling of "Alternate" in category labels +* Improved TypeScript definitions for @fortawesome/fontawesome +* Server-side rendering was failing due to DOM-specific object access +* SVG attributes "data-fa-processed" renamed to "data-fa-i2svg", only applies if rendered with i2svg() method + +--- + +## [5.0.4](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.0.4) - 2018-01-10 + +### Changed +* Updating all NPM package READMEs + +### Fixed +* Improving TypeScript exports and fixing some incorrect definitions +* TypeScript error when importing entire style Fort-Awesome/Font-Awesome#12072 +* Pseudo-elements erasing text contents in parent container Fort-Awesome/Font-Awesome-Pro#11995 +* fa-layers-text misalignment when using Bootstrap Fort-Awesome/Font-Awesome#11871 + +--- + +## [5.0.3](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.0.3) - 2018-01-08 + +### Added +* Adding elementor, youtube-square brand icons +* Adding window-minimize to the Free subset +* TypeScript support for all NPM packages + +### Fixed +* Corrected uneven spacing in university, address-book, address-card, id-badge, id-card, mouse-pointer, phone-volume, portrait, user-alt, user-circle, user-md, user-plus, user-times, user , users +* Corrected uneven spacing in brand icons behance-square, dashcube, discourse, ember, erlang, fort-awesome, js-square, laravel, mix, patreon, palfed, phoenix-framework, node-js, skyatlas, stack-exchange, stripe, viber, weixin, yahoo , yoast + +--- + +## [5.0.2](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.0.2) - 2017-12-19 + +### Added +* Adding amazon-pay, cc-amazon-pay, korvue, ethereum brand icons +* Adding stopwatch to Free version + +### Changed +* Ligatures now support capital case, all caps, and title case + +### Fixed +* NPM packages now behave the same way as CDN and browser-specific packages FortAwesome/Font-Awesome-Pro#727 FortAwesome/Font-Awesome-Pro#896 FortAwesome/Font-Awesome-Pro#891 +* Icon doesn't change when pseudo-element content changes FortAwesome/Font-Awesome-Pro#839 +* Invalid XML in sprites FortAwesome/Font-Awesome-Pro#927 +* Incorrect version in Sass and Less variable files + +--- + +## [5.0.1](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.0.1) - 2017-12-08 + +### Added +* Adding font-awesome-flag, lock-open, redo-alt, sync-alt, undo-alt to the Free version +* New NPM packages `fontawesome-free-webfonts` and `fontawesome-pro-webfonts` +* Adding old icon names to search terms for renamed icons +* Extensive metadata added to the `advanced-options` directory +* Adding stripe-s brand icon +* Adding typo3 brand icon + +### Changed +* Updated dropbox brand icon to match new branding guidelines +* Updated firefox brand icon +* Updated strava brand icon +* OTF font file now include a space character + +### Fixed +* OTF font file now supports different styles in Windows +* OTF font file "j" character now has correct space on the right +* Modifying the `class` attribute on an existing `` allows you to change the icon + +--- + +## [5.0.0](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.0.0) - 2017-12-01 + +### Added +* License information + +### Changed +* CSS vertical-align now "em"-based instead of percentage making it more consistent +* fa-ul width now closer to default browser size + +--- + +## [5.0.0-rc5](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.0.0-rc5) - 2017-11-28 + +**This release includes breaking changes** + +### Added +* Brand icons: gitter, cc-stripe, stripe, hooli, aviato, strava, ember, angular, font-awesome-flag +* Icons compress-alt and expand-alt +* Adding calendar to Font Awesome 5 Free +* SASS function that makes it easier to use variables FortAwesome/Font-Awesome-Pro#824 + +### Changed +* BREAKING Renamed icon composition to mask ("data-fa-compose" becomes "data-fa-mask") +* BREAKING Re-organized directory structure to match upcoming documentation +* BREAKING Font Awesome styles inserted into the `` will now precede other link and style definitions +* BREAKING `fontawesome.text` and `fontawesome.icon` now use `styles` param instead of `style` +* Updated sizing for twitter, discord, youtube +* Class fa-li now respects line-height and has new recommended markup (see included docs) + +### Fixed +* Duplicate `style` tags being added in the head FortAwesome/Font-Awesome-Pro#858 +* Error with icon composition/masking that caused a confusing error message +* An error when using pseudo elements and the element is empty (Array.reduce error) +* Icons not being replaced with SVG if the text content is not empty + +--- + +## [5.0.0-rc4](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.0.0-rc4) - 2017-10-27 + +### Added +* Ligature support in the OTF font +* Vue.js brand icon +* Sass and Less brand icons +* Autoprefixer brand icon +* Individual icon imports in icon packages FortAwesome/Font-Awesome-Pro#808 + +### Changed +* Better poo eyes +* Renamed HTML status classes to `fontawesome-i2svg-active`, `fontawesome-i2svg-pending`, `fontawesome-i2svg-complete` +* HTML status class for active is added only after the first batch of icon replacements occur +* Added mention of newer versions of iOS in documentation FortAwesome/Font-Awesome-Pro#810 + +### Fixed +* Performance and missing features with mutation observer (should fix FortAwesome/Font-Awesome-Pro#813) +* Incorrect handling of icon class and style attributes when using autoReplace = 'nest' FortAwesome/Font-Awesome-Pro#809 +* Pseudo elements not added or removed when class mutations occur FortAwesome/Font-Awesome-Pro#821 + +--- + +## [5.0.0-rc3](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.0.0-rc3) - 2017-10-13 + +### Added +* Node.js brand icon FortAwesome/Font-Awesome-Pro#779 +* React brand icon FortAwesome/Font-Awesome-Pro#780 +* OSI brand icon FortAwesome/Font-Awesome-Pro#748 +* Add a class to the html element when icon replacement is complete FortAwesome/Font-Awesome-Pro#778 +* Add support for symbols in API including ability to name the symbol +* Use CSS pseudo elements (:before and :after) to make trigger SVG replacements + +### Changed +* Switched the locations of fork and knife in utensils-alt FortAwesome/Font-Awesome-Pro#466 +* Updated the AWS brand icon FortAwesome/Font-Awesome-Pro#735 +* Updated Apple App Store icon FortAwesome/Font-Awesome-Pro#728 + +### Fixed +* Do not throw an error if icon is missing when calling icon() method in API +* Ensure that unicode values do not change between releases +* Version field is missing in fontawesome-pro-brands/package.json FortAwesome/Font-Awesome-Pro#781 +* Repeated commenting out of fa-layers when i2svg is called FortAwesome/Font-Awesome-Pro#788 +* Title not showing up correctly for SVG FortAwesome/Font-Awesome-Pro#786 + +--- + +## [5.0.0-rc2](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.0.0-rc2) - 2017-09-22 + +### Added +* Brand icons: accusoft, ns8, uniregistry + +### Fixed +* Link to the npm package in the docs FortAwesome/Font-Awesome-Pro#729 +* Incorrect reference to fontawesome-pro.js in docs + +--- + +## [5.0.0-rc1](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.0.0-rc1) - 2017-09-15 + +### Changed +* New Bitbucket logo FortAwesome/Font-Awesome-Pro#720 +* Modifed the star icons to match use case better FortAwesome/Font-Awesome-Pro#710 +* Switched names of css3 and css3-alt to reflect correct branding + +### Fixed +* Correct whitespace with the Visa logo FortAwesome/Font-Awesome-Pro#719 +* Improve OTF support by passing through FontForge FortAwesome/Font-Awesome-Pro#565 +* Fonts with "undefined" name FortAwesome/Font-Awesome-Pro#711 +* Shims will only function if using old prefix of "fa" FortAwesome/Font-Awesome-Pro#692 +* Added missing "youtube" icon to categories + +--- + +## [5.0.0-beta7](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.0.0-beta7) - 2017-09-11 + +### Added +* Ability to nest the `` tag within the `` FortAwesome/Font-Awesome-Pro#624 +* Define icons as symbols and leverage SVG sprites FortAwesome/Font-Awesome-Pro#629 +* Added alternative CSS3 logo FortAwesome/Font-Awesome-Pro#682 + +### Changed +* Power Transforms now execute inside the SVG instead of on the root element +* Filenames have changed to reflect a better division between Font Awesome Free and Pro + +### Fixed +* More improvements to the version 4 shim FortAwesome/Font-Awesome-Pro#673 FortAwesome/Font-Awesome-Pro#678 FortAwesome/Font-Awesome-Pro#686 FortAwesome/Font-Awesome-Pro#687 FortAwesome/Font-Awesome-Pro#692 +* Animation support for inline SVG now works as expected FortAwesome/Font-Awesome-Pro#662 + +--- + +## [5.0.0-beta6](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.0.0-beta6) - 2017-09-01 + +### Added +* Ability to flip horizontal and vertical with CSS classes fa-flip-horizontal and fa-flip-vertical +* New film-alt icon that allows for layering other icons +* Microsoft brand + +### Changed +* New YouTube branding FortAwesome/Font-Awesome-Pro#646 + +### Fixed +* Fixed a bunch of shim-related issues +* Cogs off center FortAwesome/Font-Awesome-Pro#663 +* Corrected icons/categories.yml with canonical names + +--- + +## [5.0.0-beta5](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.0.0-beta5) - 2017-08-25 + +### Added +* Full parity with Font Awesome 4! 616 total core icons in each style +* 297 total brand and logo icons +* Separate CSS file to accompany the SVG Framework FortAwesome/Font-Awesome-Pro#627 +* Alternative to the dots icon FortAwesome/Font-Awesome-Pro#608 +* Made window icons consistent FortAwesome/Font-Awesome-Pro#611 + +### Fixed +* Production builds not correctly being detected FortAwesome/Font-Awesome-Pro#631 + +--- + +## [5.0.0-beta4](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.0.0-beta4) - 2017-08-18 + +### Added +* 590 total core icons in each style +* 291 total brand and logo icons + +### Fixed +* Reduced the size of JS file from 66 to 22 kb +* Regression caused by with web font alignment FortAwesome/Font-Awesome-Pro#460 + +--- + +## [5.0.0-beta3](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.0.0-beta3) - 2017-08-15 + +### Added +* 583 total core icons in each style + +### Fixed +* Documentation improvements and fixes FortAwesome/Font-Awesome-Pro#586 +* Vertical alignment of TTF and OTF fonts FortAwesome/Font-Awesome-Pro#460 +* The "fa_500px" icon should be named "fa500px" FortAwesome/Font-Awesome-Pro#578 + +--- + +## [5.0.0-beta2](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.0.0-beta2) - 2017-08-11 + +### Added +* 570 total core icons in each style +* 291 total brand and logo icons +* NPM (ES6, CommonJS, AMD) packages for use with other JavaScript libraries and tools FortAwesome/Font-Awesome-Pro#574 +* Added a guide to choosing which implementation is best for you FortAwesome/Font-Awesome-Pro#532 + +### Changed +* Showing a missing icon is now configurable FortAwesome/Font-Awesome-Pro#569 + +### Fixed +* Composition framework now works in browsers that do not support transform-origin FortAwesome/Font-Awesome-Pro#564 + +--- + +## [5.0.0-beta1](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.0.0-beta1) - 2017-08-04 + +### Added +* 524 total core icons in each style +* 289 total brand and logo icons +* New composition framework FortAwesome/Font-Awesome-Pro#537 +* Animated indicator if you use an icon that does not exist + +### Changed +* Basic linting for Sass and Less files +* Add JavaScript guard block to prevent leaking errors +* Add support for automatic accessibility to SVG Framework Layers + +### Fixed +* Regression where stacks and pulled and bordered were not working in SVG Framework +* SVG sprite example had confusing inline styles FortAwesome/Font-Awesome-Pro#549 +* Make getting started page more consistent between examples FortAwesome/Font-Awesome-Pro#544 +* Added missing sizes fa-[6-10], xs, sm FortAwesome/Font-Awesome-Pro#546 +* Title tag missing in SVG sprites FortAwesome/Font-Awesome-Pro#536 + +--- + +## [5.0.0-alpha7](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.0.0-alpha7) - 2017-07-28 + +### Added +* 451 total core icons in each style +* 281 total brand and logo icons +* Less support is back! +* OpenType (.otf) file formats for web fonts + +### Changed +* Changes the fa-spin animation to go from 0deg to 360deg to eliminate hitch FortAwesome/Font-Awesome-Pro#522 +* Improved mutation handling FortAwesome/Font-Awesome-Pro#517 + +### Fixed +* fa-fw now works correctly with the SVG framework FortAwesome/Font-Awesome-Pro#530 +* Removed execute bit on some icon files FortAwesome/Font-Awesome-Pro#520 + +--- + +## [5.0.0-alpha6](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.0.0-alpha6) - 2017-07-21 + +### Added +* 410 total core icons in each style +* 270 total brand and logo icons +* All new Font Awesome 4 shim file +* Beginnings of a public JS API FortAwesome/Font-Awesome-Pro#512 + +### Changed +* Added Firefox ESR and Chrome for Businesses to browser compatibility FortAwesome/Font-Awesome-Pro#506 + +### Fixed +* Ensure that SVG title attributes are unique +* Fixed incorrect viewBox sizes FortAwesome/Font-Awesome-Pro#492 +* Fix chart-area alignment in the solid style FortAwesome/Font-Awesome-Pro#508 +* Add missing xmlns attributes in some SVGs FortAwesome/Font-Awesome-Pro#509 + +--- + +## [5.0.0-alpha5](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.0.0-alpha5) - 2017-07-14 + +### Added +* 228 total brand and logo icons +* New transform framework for sizing, moving, rotating, and flipping icons +* New icon counters +* New layers framework +* New text overlays +* Auto-comments with the original source icons alongside SVG replacements + +### Changed +* Autoprefixer to correctly add browser prefixes for supported browsers +* Removed browser-specific CSS properties in Sass source files (now relies on autoprefixer) + +### Fixed +* The rotation on checkmark icons +* Other icon feedback from previous weeks +* Correct fixed width settings to 1.25em (based on the new 16px grid) +* Icons displaying as block instead of inline-block in IE and older Safari + +--- + +## [5.0.0-alpha4](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.0.0-alpha4) - 2017-07-07 + +### Added +* 93 brand icons + +--- + +## [5.0.0-alpha3](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.0.0-alpha3) - 2017-06-30 + +### Added +* 95 additional icons; including file types, directional, and some existing and new brand icons + +### Fixed +* Wrong content type in generated CSS FortAwesome/Font-Awesome-Pro#458 +* Removal of query string from static resources FortAwesome/Font-Awesome-Pro#458 +* SVG font ID's are incorrect in webfont implementation FortAwesome/Font-Awesome-Pro#474 + +--- + +## [5.0.0-alpha2](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.0.0-alpha2) - 2017-06-27 + +### Added +* How/When to upgrade from FA4 to FA5 FortAwesome/Font-Awesome-Pro#454 + +### Fixed +* Links to SVG files broken in the example files FortAwesome/Font-Awesome-Pro#456 +* Misnamed icon names in examples FortAwesome/Font-Awesome-Pro#445 +* Mangled HTML in the Getting Started example FortAwesome/Font-Awesome-Pro#442 +* Bad grammar and typos FortAwesome/Font-Awesome-Pro#443 +* fas-arrow-to-top is identical to fas-arrow-to-right FortAwesome/Font-Awesome-Pro#423 +* Vertical alignment issues with webfont implementation FortAwesome/Font-Awesome-Pro#444 +* Add browser compatibility tables to demo FortAwesome/Font-Awesome-Pro#435 +* Remove MAC OS feces from builds FortAwesome/Font-Awesome-Pro#437 +* TTF naming issues that prevent correct usage/installation FortAwesome/Font-Awesome-Pro#450 +* Correct CSS for SVG framework stacking, was reversed from normal FortAwesome/Font-Awesome-Pro#452 + +--- + +## [5.0.0-alpha1](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.0.0-alpha1) - 2017-06-23 + +### Added +* 300+ more icons +* Brands pack +* New JavaScript based SVG Framework +* New SVG Sprites based framework +* Source SVGs +* Documentation with a convenient build-in web server + +### Changed +* New directory structure diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/CODE_OF_CONDUCT.md b/site/themes/docsy/assets/vendor/Font-Awesome/CODE_OF_CONDUCT.md new file mode 100644 index 0000000000..852f155f03 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/CODE_OF_CONDUCT.md @@ -0,0 +1,74 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to making participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, gender identity and expression, level of experience, +nationality, personal appearance, race, religion, or sexual identity and +orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or +advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic + address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or +reject comments, commits, code, wiki edits, issues, and other contributions +that are not aligned to this Code of Conduct, or to ban temporarily or +permanently any contributor for other behaviors that they deem inappropriate, +threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces +when an individual is representing the project or its community. Examples of +representing a project or community include using an official project e-mail +address, posting via an official social media account, or acting as an appointed +representative at an online or offline event. Representation of a project may be +further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported by contacting the project team at . All +complaints will be reviewed and investigated and will result in a response that +is deemed necessary and appropriate to the circumstances. The project team is +obligated to maintain confidentiality with regard to the reporter of an incident. +Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good +faith may face temporary or permanent repercussions as determined by other +members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, +available at [https://contributor-covenant.org/version/1/4][version] + +[homepage]: https://contributor-covenant.org +[version]: https://contributor-covenant.org/version/1/4/ diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/CONTRIBUTING.md b/site/themes/docsy/assets/vendor/Font-Awesome/CONTRIBUTING.md new file mode 100644 index 0000000000..f655b1dc2f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/CONTRIBUTING.md @@ -0,0 +1,25 @@ +# Contributing to Font Awesome + +Looking to contribute something to Font Awesome? **Here's how you can help.** + +## Quick start + +We only accept issues that are icon requests, bug reports, or feature requests. +Bugs must be isolated and reproducible problems that we can fix within the Font +Awesome core. + +* [Request a new icon](https://github.com/FortAwesome/Font-Awesome/issues/new?title=Icon%20request:%20icon-name&template=icon-request.md) +* [Request a new feature](https://github.com/FortAwesome/Font-Awesome/issues/new??title=Feature%20request:feature-name&template=feature-request.md) +* [Submit a bug report](https://github.com/FortAwesome/Font-Awesome/issues/new?template=bug-report.md) + +## Key branches + +- `master` is the latest, deployed version + +## Pull requests + +- At the moment we are not accepting pull requests containing icons +- Pull requests that do not solve an existing issue are essentially un-prioritized–don't expect these to be addressed quickly +- The files in this repository are generated elsewhere and we do not merge PR's directly into master +- Try not to pollute your pull request with unintended changes–keep them simple and small +- Try to share which browsers your code has been tested in before submitting a pull request diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/LICENSE.txt b/site/themes/docsy/assets/vendor/Font-Awesome/LICENSE.txt new file mode 100644 index 0000000000..28c1c4bc73 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/LICENSE.txt @@ -0,0 +1,34 @@ +Font Awesome Free License +------------------------- + +Font Awesome Free is free, open source, and GPL friendly. You can use it for +commercial projects, open source projects, or really almost whatever you want. +Full Font Awesome Free license: https://fontawesome.com/license. + +# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) +In the Font Awesome Free download, the CC BY 4.0 license applies to all icons +packaged as SVG and JS file types. + +# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL) +In the Font Awesome Free download, the SIL OLF license applies to all icons +packaged as web and desktop font files. + +# Code: MIT License (https://opensource.org/licenses/MIT) +In the Font Awesome Free download, the MIT license applies to all non-font and +non-icon files. + +# Attribution +Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font +Awesome Free files already contain embedded comments with sufficient +attribution, so you shouldn't need to do anything additional when using these +files normally. + +We've kept attribution comments terse, so we ask that you do not actively work +to remove them from files, especially code. They're a great way for folks to +learn about Font Awesome. + +# Brand Icons +All brand icons are trademarks of their respective owners. The use of these +trademarks does not indicate endorsement of the trademark holder by Font +Awesome, nor vice versa. **Please do not use brand logos for any purpose except +to represent the company, product, or service to which they refer.** diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/README.md b/site/themes/docsy/assets/vendor/Font-Awesome/README.md new file mode 100644 index 0000000000..7dd5cbb171 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/README.md @@ -0,0 +1,135 @@ +

    Font Awesome 5 Free

    + +> Version 5 – the iconic SVG, font, and CSS framework + +The internet's most popular icon toolkit has been redesigned and built from +scratch. On top of this, features like icon font ligatures, an SVG framework, +official NPM packages for popular frontend libraries like React, and access to +a new CDN. + +Not familiar with Font Awesome 5? [Learn +more](https://www.kickstarter.com/projects/232193852/font-awesome-5) about our +successful Kickstarter and plan. You can also **[order Font Awesome +Pro](https://fontawesome.com/pro)** which includes tons more icons directly +from [fontawesome.com](https://fontawesome.com). + +## Documentation + +Learn how to get started with Font Awesome and then dive deeper into other and advanced topics: + +### Using Font Awesome on the Web + +* [With SVG with JavaScript](https://fontawesome.com/how-to-use/on-the-web/setup/getting-started?using=svg-with-js) +* [With web fonts with CSS](https://fontawesome.com/how-to-use/on-the-web/setup/getting-started?using=web-fonts-with-css) +* [Upgrading from version 4](https://fontawesome.com/how-to-use/on-the-web/setup/upgrading-from-version-4) +* [Installing Font Awesome with a package manager](https://fontawesome.com/how-to-use/on-the-web/setup/using-package-managers) +* [Downloading + hosting Font Awesome yourself](https://fontawesome.com/how-to-use/on-the-web/setup/hosting-font-awesome-yourself) +* [Performance and security](https://fontawesome.com/how-to-use/performance-and-security) +* [Accessibility](https://fontawesome.com/how-to-use/on-the-web/other-topics/accessibility) +* [Troubleshooting](https://fontawesome.com/how-to-use/on-the-web/other-topics/troubleshooting) + +#### Advanced Options & Techniques + +* [Using CSS pseudo-elements](https://fontawesome.com/how-to-use/on-the-web/advanced/css-pseudo-elements) +* [SVG sprites](https://fontawesome.com/how-to-use/svg-sprites) +* [The Font Awesome API](https://fontawesome.com/how-to-use/font-awesome-api) +* [SVG symbols](https://fontawesome.com/how-to-use/on-the-web/advanced/svg-symbols) +* [SVG JavaScript Core](https://fontawesome.com/how-to-use/on-the-web/advanced/svg-javascript-core) +* [Server side rendering](https://fontawesome.com/how-to-use/server-side-rendering) + +### Using Font Awesome on the Desktop + +* [Getting started](https://fontawesome.com/how-to-use/on-the-desktop/setup/getting-started) +* [Upgrading from version 4](https://fontawesome.com/how-to-use/on-the-desktop/setup/upgrading-from-version-4) +* [Using ligatures](https://fontawesome.com/how-to-use/on-the-desktop/referencing-icons/using-ligatures) +* [Using glyphs](https://fontawesome.com/how-to-use/on-the-desktop/referencing-icons/using-glyphs) +* [Troubleshooting](https://fontawesome.com/how-to-use/on-the-desktop/other-topics/troubleshooting) + +### Where did Font Awesome 4 (or 3) go? + +Now that Font Awesome 5 has been released we are marking version 4 as +end-of-life. We don't plan on releasing any further versions of the 4.x or 3.x. + +Documentation is still available but it's moved to +[https://fontawesome.com/v4.7.0](https://fontawesome.com/v4.7.0) and +[https://fontawesome.com/v3.2.1](https://fontawesome.com/v3.2.1). + +The Git repository for +[v4.7.0](https://github.com/FortAwesome/Font-Awesome/releases/tag/v4.7.0) and +[v3.2.1](https://github.com/FortAwesome/Font-Awesome/releases/tag/v3.2.1) can +be found in our GitHub releases. + +## Change log + +We'll keep track of each release in the [CHANGELOG.md](./CHANGELOG.md) + +Looking for older versions of Font Awesome? Check the [releases](https://github.com/FortAwesome/Font-Awesome/releases). + +## Upgrading + +From time-to-time we'll have special upgrading instructions from one version to the next. + +Check out the [UPGRADING.md](./UPGRADING.md) guide when you upgrade your dependencies. + +## Code of conduct + +We will behave ourselves if you behave yourselves. For more details see our +[CODE_OF_CONDUCT.md](./CODE_OF_CONDUCT.md). + +## Contributing + +Please read through our [contributing guidelines](./CONTRIBUTING.md). Included +are directions for opening issues. + +## Versioning + +Font Awesome will be maintained under the Semantic Versioning guidelines as much as possible. Releases will be numbered +with the following format: + +`..` + +For more information on SemVer, please visit http://semver.org. + +**The major version "5" is part of an umbrella release. It includes many different types of files and technologies. Therefore +we deviate from normal SemVer in the following ways:** + +* Any release may update the design, look-and-feel, or branding of an existing + icon +* We will never intentionally release a `patch` version update that breaks + backward compatibility +* A `minor` release **may include backward-incompatible changes** but we will + write clear upgrading instructions in UPGRADING.md +* A `minor` or `patch` release will never remove icons +* Bug fixes will be addressed as `patch` releases unless they include backward + incompability then they will be `minor` releases + +## License + +Font Awesome Free is free, open source, and GPL friendly. You can use it for +commercial projects, open source projects, or really almost whatever you want. + +- Icons — CC BY 4.0 License + - In the Font Awesome Free download, the CC BY 4.0 license applies to all icons packaged as .svg and .js files types. +- Fonts — SIL OFL 1.1 License + - In the Font Awesome Free download, the SIL OLF license applies to all icons packaged as web and desktop font files. +- Code — MIT License + - In the Font Awesome Free download, the MIT license applies to all non-font and non-icon files. + +Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font +Awesome Free files already contain embedded comments with sufficient +attribution, so you shouldn't need to do anything additional when using these +files normally. + +We've kept attribution comments terse, so we ask that you do not actively work +to remove them from files, especially code. They're a great way for folks to +learn about Font Awesome. + +## Team + +* [Dave Gandy](https://github.com/davegandy) +* [Travis Chase](https://github.com/supercodepoet) +* [Rob Madole](https://github.com/robmadole) +* [Brian Talbot](https://github.com/talbs) +* [Jory Raphael](https://github.com/sensibleworld) +* [Mike Wilkerson](https://github.com/mlwilkerson) +* [Geremia Taglialatela](https://github.com/tagliala) diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/UPGRADING.md b/site/themes/docsy/assets/vendor/Font-Awesome/UPGRADING.md new file mode 100644 index 0000000000..6c9764b3fc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/UPGRADING.md @@ -0,0 +1,163 @@ +# Upgrading Guide + +See the [CHANGELOG.md](./CHANGELOG.md) for detailed information about what has changed between versions. + +This guide is useful to figure out what you need to do between breaking changes. + +As always, [submit issues](https://github.com/FortAwesome/Font-Awesome/issues/new) that you run into with this guide or with these upgrades to us. + +## 5.1.0 to 5.1.1 + +Less and Sass files incorrectly contained the "fa-" prefix for style files. +These files have been renamed to be consistent with other files in the +packages. + +If you are using the Less or Sass file styles individually you will need to +correct the names in your builds. + +| Old filename | New filename | +| --------------------------- | ------------------------ | +| less/fa-solid.less | less/solid.less | +| less/fa-regular.less | less/regular.less | +| less/fa-light.less | less/light.less | +| less/fa-brands.less | less/brands.less | +| scss/fa-solid.scss | scss/solid.scss | +| scss/fa-regular.scss | scss/regular.scss | +| scss/fa-light.scss | scss/light.scss | +| scss/fa-brands.scss | scss/brands.scss | + +## 5.0.x to 5.1.0 + +### New packages available for browser-only integration + +**If you were previously using @fortawesome/fontawesome you need to switch to one of the new packages.** + +Our Free and Pro CDN provide access to JS, CSS, sprites, and separate SVG files. + +We've now made these files conveniently available through NPM. + +* [@fortawesome/fontawesome-free](https://www.npmjs.com/package/@fortawesome/fontawesome-free) +* @fortawesome/fontawesome-pro (private package, requires Pro subscription) + +If you are familiar with the paths and options available with the CDN these +packages should be familiar. + +Information about [Font Awesome Pro subscriptions](https://fontawesome.com/pro) +can be found in your [Font Awesome awesome +account](https://fontawesome.com/account/services). + +### Renamed packages + +The following packages have been renamed as part of 5.1.0 of Font Awesome. + +_All packages are in the [@fortawesome NPM scope](https://www.npmjs.com/search?q=scope:fortawesome&page=1&ranking=optimal)_ + +| Old package(1) | New package | +|---------------------------|------------------------| +| fontawesome-free-webfonts | fontawesome-free | +| fontawesome-pro-webfonts | fontawesome-pro | +| fontawesome-free-solid   | free-solid-svg-icons | +| fontawesome-free-regular | free-regular-svg-icons | +| fontawesome-free-brands   | free-brands-svg-icons | +| fontawesome-pro-solid   | pro-solid-svg-icons | +| fontawesome-pro-regular   | pro-regular-svg-icons | +| fontawesome-pro-light   | pro-light-svg-icons | + +(1) Old packages have now been deprecated. They are still available but will only receive high priority patch release fixes. + +**You'll need to update your package.json file with the renamed packages and new versions.** + +### No more default imports + +Recently we spent a good deal of time supporting TypeScript to enable us to +create the Angular Font Awesome component. During that adventure we +[were](https://basarat.gitbooks.io/typescript/docs/tips/defaultIsBad.html) +[convinced](https://blog.neufund.org/why-we-have-banned-default-exports-and-you-should-do-the-same-d51fdc2cf2ad) +that we were going to remove default exports from all of our components, +libraries, and packages. This is complete with the umbrella release of `5.1.0` of Font Awesome. + +What does that mean? + +~~Old way:~~ + +```javascript +import fontawesome from '@fortawesome/fontawesome' +import solid from '@fortawesome/fontawesome-free-solid' +import faTwitter from '@fortawesome/fontawesome-free-brands/faTwitter' +import FontAwesomeIcon from '@fortawesome/vue-fontawesome' + +library.add(solid, faTwitter) +``` + +New way: + +```javascript +import { library, dom } from '@fortawesome/fontawesome-svg-core' +import { fas } from '@fortawesome/free-solid-svg-icons' +import { faTwitter } from '@fortawesome/free-brands-svg-icons' +import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome' + +library.add(fas, faTwitter) + +// Kicks off the process of finding tags and replacing with +dom.watch() +``` + +This is also a valid way to import icons that works if your tool does not support tree shaking: + +```javascript +import { faTwitter } from '@fortawesome/free-brands-svg-icons/faTwitter' +``` + +### Improved support for tree shaking + +Tree shaking is now functional by default and no additional configuration is required to make it work. + +The `shakable.es.js` module has been removed and is no longer needed. + +If you've previously configured tree shaking by modifying your webpack or rollup you can safely remove these. + +**We recommend that you check your bundle size after upgrading an ensure that file sizes are as you would expect.** + +```javascript +module.exports = { + // ... + resolve: { + alias: { + '@fortawesome/fontawesome-free-solid$': '@fortawesome/fontawesome-free-solid/shakable.es.js' + } + } +} +``` + +```javascript +const alias = require('rollup-plugin-alias') + +rollup({ + // ... + plugins: [ + alias({ + '@fortawesome/fontawesome-free-solid': 'node_modules/@fortawesome/fontawesome-free-solid/shakable.es.js' + }) + ] +}) +``` + +## 5.0.11 to 5.0.12 + +Due to a collision with the "r" glyph the R Project brand icon has been renamed to `r-project`. + +## 5.0.x to 5.0.6 + +### SVG Attribute was changed from data-fa-processed to data-fa-i2svg + +As part of a bug fix for the release of 5.0.6 we renamed an attribute that was found on `` elements from +`data-fa-processed` to `data-fa-i2svg`. We feel this more accurately reflects the intent and purpose. + +This attribute is added to any icon that has been generated using `fontawesome.dom.i2svg()`. + +Be aware that `data-fa-i2svg` (or `data-fa-processed`) will no longer be present on icons that are created using +`fontawesome.icon()`. + +If you've written and DOM queries that rely on `data-fa-processed` you should get things working again by doing a +simple find and replace. diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/metadata/categories.yml b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/metadata/categories.yml new file mode 100644 index 0000000000..71388b8466 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/metadata/categories.yml @@ -0,0 +1,1501 @@ +accessibility: + icons: + - accessible-icon + - american-sign-language-interpreting + - assistive-listening-systems + - audio-description + - blind + - braille + - closed-captioning + - deaf + - low-vision + - phone-volume + - question-circle + - sign-language + - tty + - universal-access + - wheelchair + label: Accessibility +animals: + icons: + - crow + - dove + - feather + - feather-alt + - fish + - frog + - kiwi-bird + label: Animals +arrows: + icons: + - angle-double-down + - angle-double-left + - angle-double-right + - angle-double-up + - angle-down + - angle-left + - angle-right + - angle-up + - arrow-alt-circle-down + - arrow-alt-circle-left + - arrow-alt-circle-right + - arrow-alt-circle-up + - arrow-circle-down + - arrow-circle-left + - arrow-circle-right + - arrow-circle-up + - arrow-down + - arrow-left + - arrow-right + - arrow-up + - arrows-alt + - arrows-alt-h + - arrows-alt-v + - caret-down + - caret-left + - caret-right + - caret-square-down + - caret-square-left + - caret-square-right + - caret-square-up + - caret-up + - cart-arrow-down + - chart-line + - chevron-circle-down + - chevron-circle-left + - chevron-circle-right + - chevron-circle-up + - chevron-down + - chevron-left + - chevron-right + - chevron-up + - cloud-download-alt + - cloud-upload-alt + - download + - exchange-alt + - expand-arrows-alt + - external-link-alt + - external-link-square-alt + - hand-point-down + - hand-point-left + - hand-point-right + - hand-point-up + - hand-pointer + - history + - level-down-alt + - level-up-alt + - location-arrow + - long-arrow-alt-down + - long-arrow-alt-left + - long-arrow-alt-right + - long-arrow-alt-up + - mouse-pointer + - play + - random + - recycle + - redo + - redo-alt + - reply + - reply-all + - retweet + - share + - share-square + - sign-in-alt + - sign-out-alt + - sort + - sort-alpha-down + - sort-alpha-up + - sort-amount-down + - sort-amount-up + - sort-down + - sort-numeric-down + - sort-numeric-up + - sort-up + - sync + - sync-alt + - text-height + - text-width + - undo + - undo-alt + - upload + label: Arrows +audio-video: + icons: + - audio-description + - backward + - broadcast-tower + - circle + - closed-captioning + - compress + - eject + - expand + - expand-arrows-alt + - fast-backward + - fast-forward + - file-audio + - file-video + - film + - forward + - headphones + - microphone + - microphone-alt + - microphone-alt-slash + - microphone-slash + - music + - pause + - pause-circle + - phone-volume + - play + - play-circle + - podcast + - random + - redo + - redo-alt + - rss + - rss-square + - step-backward + - step-forward + - stop + - stop-circle + - sync + - sync-alt + - undo + - undo-alt + - video + - volume-down + - volume-off + - volume-up + - youtube + label: Audio & Video +buildings: + icons: + - building + - church + - home + - hospital + - hospital-alt + - industry + - school + - university + label: Buildings +business: + icons: + - address-book + - address-card + - archive + - balance-scale + - birthday-cake + - book + - briefcase + - building + - bullhorn + - bullseye + - calculator + - calendar + - calendar-alt + - certificate + - chart-area + - chart-bar + - chart-line + - chart-pie + - clipboard + - coffee + - columns + - compass + - copy + - copyright + - cut + - edit + - envelope + - envelope-open + - envelope-square + - eraser + - fax + - file + - file-alt + - folder + - folder-open + - glasses + - globe + - highlighter + - industry + - marker + - paperclip + - paste + - pen + - pen-alt + - pen-fancy + - pen-nib + - pen-square + - pencil-alt + - percent + - phone + - phone-slash + - phone-square + - phone-volume + - project-diagram + - registered + - save + - sitemap + - sticky-note + - stream + - suitcase + - table + - tag + - tags + - tasks + - thumbtack + - trademark + - wallet + label: Business +charity: + icons: + - dollar-sign + - donate + - dove + - gift + - globe + - hand-holding-heart + - hand-holding-usd + - hands-helping + - handshake + - heart + - leaf + - parachute-box + - piggy-bank + - ribbon + - seedling + label: Charity +chat: + icons: + - comment + - comment-alt + - comment-dots + - comment-slash + - comments + - frown + - meh + - phone + - phone-slash + - poo + - quote-left + - quote-right + - smile + - video + - video-slash + label: Chat +chess: + icons: + - chess + - chess-bishop + - chess-board + - chess-king + - chess-knight + - chess-pawn + - chess-queen + - chess-rook + - square-full + label: Chess +code: + icons: + - archive + - barcode + - bath + - bug + - code + - code-branch + - coffee + - file + - file-alt + - file-code + - filter + - fire-extinguisher + - folder + - folder-open + - keyboard + - microchip + - project-diagram + - qrcode + - shield-alt + - sitemap + - stream + - terminal + - user-secret + - window-close + - window-maximize + - window-minimize + - window-restore + label: Code +communication: + icons: + - address-book + - address-card + - american-sign-language-interpreting + - assistive-listening-systems + - at + - bell + - bell-slash + - bluetooth + - bluetooth-b + - broadcast-tower + - bullhorn + - chalkboard + - comment + - comment-alt + - comments + - envelope + - envelope-open + - envelope-square + - fax + - inbox + - language + - microphone + - microphone-alt + - microphone-alt-slash + - microphone-slash + - mobile + - mobile-alt + - paper-plane + - phone + - phone-slash + - phone-square + - phone-volume + - rss + - rss-square + - tty + - wifi + label: Communication +computers: + icons: + - database + - desktop + - download + - hdd + - headphones + - keyboard + - laptop + - memory + - microchip + - mobile + - mobile-alt + - plug + - power-off + - print + - save + - server + - stream + - tablet + - tablet-alt + - tv + - upload + label: Computers +currency: + icons: + - bitcoin + - btc + - dollar-sign + - euro-sign + - gg + - gg-circle + - lira-sign + - money-bill + - money-bill-alt + - money-bill-wave + - money-bill-wave-alt + - money-check + - money-check-alt + - pound-sign + - ruble-sign + - rupee-sign + - shekel-sign + - won-sign + - yen-sign + label: Currency +date-time: + icons: + - bell + - bell-slash + - calendar + - calendar-alt + - calendar-check + - calendar-minus + - calendar-plus + - calendar-times + - clock + - hourglass + - hourglass-end + - hourglass-half + - hourglass-start + - stopwatch + label: Date & Time +design: + icons: + - adjust + - bezier-curve + - brush + - clone + - copy + - crop + - crop-alt + - crosshairs + - cut + - drafting-compass + - edit + - eraser + - eye + - eye-dropper + - eye-slash + - fill + - fill-drip + - highlighter + - magic + - marker + - object-group + - object-ungroup + - paint-brush + - paint-roller + - palette + - paste + - pen + - pen-alt + - pen-fancy + - pen-nib + - pencil-alt + - pencil-ruler + - ruler-combined + - ruler-horizontal + - ruler-vertical + - save + - splotch + - spray-can + - stamp + - swatchbook + - tint + - tint-slash + - vector-square + label: Design +editors: + icons: + - align-center + - align-justify + - align-left + - align-right + - bold + - clipboard + - clone + - columns + - copy + - cut + - edit + - eraser + - file + - file-alt + - font + - glasses + - heading + - highlighter + - i-cursor + - indent + - italic + - link + - list + - list-alt + - list-ol + - list-ul + - marker + - outdent + - paper-plane + - paperclip + - paragraph + - paste + - pen + - pen-alt + - pen-fancy + - pen-nib + - pencil-alt + - print + - quote-left + - quote-right + - redo + - redo-alt + - reply + - reply-all + - screwdriver + - share + - strikethrough + - subscript + - superscript + - sync + - sync-alt + - table + - tasks + - text-height + - text-width + - th + - th-large + - th-list + - trash + - trash-alt + - underline + - undo + - undo-alt + - unlink + - wrench + label: Editors +emoji: + icons: + - angry + - dizzy + - flushed + - frown + - frown-open + - grimace + - grin + - grin-alt + - grin-beam + - grin-beam-sweat + - grin-hearts + - grin-squint + - grin-squint-tears + - grin-stars + - grin-tears + - grin-tongue + - grin-tongue-squint + - grin-tongue-wink + - grin-wink + - kiss + - kiss-beam + - kiss-wink-heart + - laugh + - laugh-beam + - laugh-squint + - laugh-wink + - meh + - meh-blank + - meh-rolling-eyes + - sad-cry + - sad-tear + - smile + - smile-beam + - smile-wink + - surprise + - tired + label: Emoji +files: + icons: + - archive + - clone + - copy + - cut + - file + - file-alt + - file-archive + - file-audio + - file-code + - file-excel + - file-image + - file-pdf + - file-powerpoint + - file-video + - file-word + - folder + - folder-open + - paste + - save + - sticky-note + label: Files +gender: + icons: + - genderless + - mars + - mars-double + - mars-stroke + - mars-stroke-h + - mars-stroke-v + - mercury + - neuter + - transgender + - transgender-alt + - venus + - venus-double + - venus-mars + label: Genders +hands: + icons: + - allergies + - hand-holding + - hand-lizard + - hand-paper + - hand-peace + - hand-point-down + - hand-point-left + - hand-point-right + - hand-point-up + - hand-pointer + - hand-rock + - hand-scissors + - hand-spock + - hands + - handshake + - thumbs-down + - thumbs-up + label: Hands +health: + icons: + - accessible-icon + - ambulance + - h-square + - heart + - heartbeat + - hospital + - medkit + - plus-square + - prescription + - stethoscope + - user-md + - wheelchair + label: Health +images: + icons: + - adjust + - bolt + - camera + - camera-retro + - chalkboard + - clone + - compress + - expand + - eye + - eye-dropper + - eye-slash + - file-image + - film + - id-badge + - id-card + - image + - images + - portrait + - sliders-h + - tint + label: Images +interfaces: + icons: + - award + - ban + - barcode + - bars + - beer + - bell + - bell-slash + - bug + - bullhorn + - bullseye + - calculator + - calendar + - calendar-alt + - calendar-check + - calendar-minus + - calendar-plus + - calendar-times + - certificate + - check + - check-circle + - check-double + - check-square + - circle + - clipboard + - clone + - cloud + - cloud-download-alt + - cloud-upload-alt + - coffee + - cog + - cogs + - copy + - cut + - database + - dot-circle + - download + - edit + - ellipsis-h + - ellipsis-v + - envelope + - envelope-open + - eraser + - exclamation + - exclamation-circle + - exclamation-triangle + - external-link-alt + - external-link-square-alt + - eye + - eye-slash + - file + - file-alt + - file-download + - file-export + - file-import + - file-upload + - filter + - fingerprint + - flag + - flag-checkered + - folder + - folder-open + - frown + - glasses + - grip-horizontal + - grip-vertical + - hashtag + - heart + - history + - home + - i-cursor + - info + - info-circle + - language + - magic + - marker + - medal + - meh + - microphone + - microphone-alt + - microphone-slash + - minus + - minus-circle + - minus-square + - paste + - pen + - pen-alt + - pen-fancy + - pencil-alt + - plus + - plus-circle + - plus-square + - poo + - qrcode + - question + - question-circle + - quote-left + - quote-right + - redo + - redo-alt + - reply + - reply-all + - rss + - rss-square + - save + - screwdriver + - search + - search-minus + - search-plus + - share + - share-alt + - share-alt-square + - share-square + - shield-alt + - sign-in-alt + - sign-out-alt + - signal + - sitemap + - sliders-h + - smile + - sort + - sort-alpha-down + - sort-alpha-up + - sort-amount-down + - sort-amount-up + - sort-down + - sort-numeric-down + - sort-numeric-up + - sort-up + - star + - star-half + - sync + - sync-alt + - thumbs-down + - thumbs-up + - times + - times-circle + - toggle-off + - toggle-on + - trash + - trash-alt + - trophy + - undo + - undo-alt + - upload + - user + - user-alt + - user-circle + - wifi + - wrench + label: Interfaces +logistics: + icons: + - box + - boxes + - clipboard-check + - clipboard-list + - dolly + - dolly-flatbed + - pallet + - shipping-fast + - truck + - warehouse + label: Logistics +maps: + icons: + - ambulance + - anchor + - balance-scale + - bath + - bed + - beer + - bell + - bell-slash + - bicycle + - binoculars + - birthday-cake + - blind + - bomb + - book + - bookmark + - briefcase + - building + - car + - coffee + - crosshairs + - dollar-sign + - eye + - eye-slash + - fighter-jet + - fire + - fire-extinguisher + - flag + - flag-checkered + - flask + - gamepad + - gavel + - gift + - glass-martini + - globe + - graduation-cap + - h-square + - heart + - heartbeat + - helicopter + - home + - hospital + - image + - images + - industry + - info + - info-circle + - key + - leaf + - lemon + - life-ring + - lightbulb + - location-arrow + - low-vision + - magnet + - male + - map + - map-marker + - map-marker-alt + - map-pin + - map-signs + - medkit + - money-bill + - money-bill-alt + - motorcycle + - music + - newspaper + - paw + - phone + - phone-square + - phone-volume + - plane + - plug + - plus + - plus-square + - print + - recycle + - road + - rocket + - search + - search-minus + - search-plus + - ship + - shoe-prints + - shopping-bag + - shopping-basket + - shopping-cart + - shower + - street-view + - subway + - suitcase + - tag + - tags + - taxi + - thumbtack + - ticket-alt + - tint + - train + - tree + - trophy + - truck + - tty + - umbrella + - university + - utensil-spoon + - utensils + - wheelchair + - wifi + - wine-glass + - wrench + label: Maps +mathematics: + icons: + - divide + - equals + - greater-than + - greater-than-equal + - less-than + - less-than-equal + - minus + - not-equal + - percentage + - plus + - subscript + - superscript + - times + label: Mathematics +medical: + icons: + - allergies + - ambulance + - band-aid + - briefcase-medical + - burn + - cannabis + - capsules + - diagnoses + - dna + - file-medical + - file-medical-alt + - file-prescription + - first-aid + - heart + - heartbeat + - hospital + - hospital-alt + - hospital-symbol + - id-card-alt + - notes-medical + - pills + - plus + - prescription + - prescription-bottle + - prescription-bottle-alt + - procedures + - smoking + - stethoscope + - syringe + - tablets + - thermometer + - user-md + - vial + - vials + - weight + - x-ray + label: Medical +moving: + icons: + - archive + - box-open + - couch + - dolly + - people-carry + - sign + - suitcase + - tape + - truck-loading + - truck-moving + - wine-glass + label: Moving +objects: + icons: + - ambulance + - anchor + - archive + - award + - balance-scale + - bath + - bed + - beer + - bell + - bicycle + - binoculars + - birthday-cake + - blender + - bomb + - book + - bookmark + - briefcase + - broadcast-tower + - bug + - building + - bullhorn + - bullseye + - bus + - calculator + - calendar + - calendar-alt + - camera + - camera-retro + - car + - church + - clipboard + - cloud + - coffee + - cog + - cogs + - compass + - cookie + - cookie-bite + - copy + - cube + - cubes + - cut + - dice + - dice-five + - dice-four + - dice-one + - dice-six + - dice-three + - dice-two + - digital-tachograph + - door-closed + - door-open + - drum + - drum-steelpan + - envelope + - envelope-open + - eraser + - eye + - eye-dropper + - fax + - feather + - feather-alt + - fighter-jet + - file + - file-alt + - file-prescription + - film + - fire + - fire-extinguisher + - flag + - flag-checkered + - flask + - futbol + - gamepad + - gavel + - gem + - gift + - glass-martini + - glasses + - globe + - graduation-cap + - hdd + - headphones + - headphones + - headphones-alt + - headset + - heart + - helicopter + - highlighter + - home + - hospital + - hourglass + - image + - images + - industry + - key + - keyboard + - laptop + - leaf + - lemon + - life-ring + - lightbulb + - lock + - lock-open + - magic + - magnet + - map + - map-marker + - map-marker-alt + - map-pin + - map-signs + - marker + - medal + - medkit + - memory + - microchip + - microphone + - microphone-alt + - mobile + - mobile-alt + - money-bill + - money-bill + - money-bill-alt + - money-check + - money-check-alt + - moon + - motorcycle + - newspaper + - paint-brush + - paper-plane + - paperclip + - paste + - paw + - pen + - pen-alt + - pen-fancy + - pen-nib + - pencil-alt + - phone + - plane + - plug + - print + - puzzle-piece + - road + - rocket + - ruler-combined + - ruler-horizontal + - ruler-vertical + - save + - school + - screwdriver + - search + - shield-alt + - shopping-bag + - shopping-basket + - shopping-cart + - shower + - snowflake + - space-shuttle + - star + - sticky-note + - stopwatch + - stroopwafel + - subway + - suitcase + - sun + - tablet + - tablet-alt + - tachometer-alt + - tag + - tags + - taxi + - thumbtack + - ticket-alt + - toolbox + - train + - trash + - trash-alt + - tree + - trophy + - truck + - tv + - umbrella + - university + - unlock + - unlock-alt + - utensil-spoon + - utensils + - wallet + - weight + - wheelchair + - wine-glass + - wrench + label: Objects +payments-shopping: + icons: + - amazon-pay + - apple-pay + - bell + - bookmark + - bullhorn + - camera + - camera-retro + - cart-arrow-down + - cart-plus + - cc-amazon-pay + - cc-amex + - cc-apple-pay + - cc-diners-club + - cc-discover + - cc-jcb + - cc-mastercard + - cc-paypal + - cc-stripe + - cc-visa + - certificate + - credit-card + - ethereum + - gem + - gift + - google-wallet + - handshake + - heart + - key + - money-check + - money-check-alt + - paypal + - shopping-bag + - shopping-basket + - shopping-cart + - star + - stripe + - stripe-s + - tag + - tags + - thumbs-down + - thumbs-up + - trophy + label: Payments & Shopping +shapes: + icons: + - bookmark + - calendar + - certificate + - circle + - cloud + - comment + - file + - folder + - heart + - map-marker + - play + - square + - star + label: Shapes +spinners: + icons: + - asterisk + - certificate + - circle-notch + - cog + - compass + - crosshairs + - life-ring + - snowflake + - spinner + - sun + - sync + label: Spinners +sports: + icons: + - baseball-ball + - basketball-ball + - bowling-ball + - dumbbell + - football-ball + - futbol + - golf-ball + - hockey-puck + - quidditch + - table-tennis + - volleyball-ball + label: Sports +status: + icons: + - ban + - battery-empty + - battery-full + - battery-half + - battery-quarter + - battery-three-quarters + - bell + - bell-slash + - calendar + - calendar-alt + - calendar-check + - calendar-minus + - calendar-plus + - calendar-times + - cart-arrow-down + - cart-plus + - door-closed + - door-open + - exclamation + - exclamation-circle + - exclamation-triangle + - eye + - eye-slash + - file + - file-alt + - folder + - folder-open + - info + - info-circle + - lock + - lock-open + - minus + - minus-circle + - minus-square + - plus + - plus-circle + - plus-square + - question + - question-circle + - shield-alt + - shopping-cart + - sign-in-alt + - sign-out-alt + - stream + - thermometer-empty + - thermometer-full + - thermometer-half + - thermometer-quarter + - thermometer-three-quarters + - thumbs-down + - thumbs-up + - toggle-off + - toggle-on + - unlock + - unlock-alt + label: Status +travel: + icons: + - archway + - atlas + - bed + - bus + - bus-alt + - cocktail + - concierge-bell + - dumbbell + - glass-martini + - glass-martini-alt + - globe-africa + - globe-americas + - globe-asia + - hot-tub + - hotel + - luggage-cart + - map + - map-marked + - map-marked-alt + - monument + - passport + - plane + - plane-arrival + - plane-departure + - shuttle-van + - spa + - suitcase + - suitcase-rolling + - swimmer + - swimming-pool + - taxi + - umbrella-beach + - wine-glass + - wine-glass-alt + label: Travel +users-people: + icons: + - accessible-icon + - address-book + - address-card + - bed + - blind + - chalkboard-teacher + - child + - female + - frown + - id-badge + - id-card + - id-card-alt + - male + - meh + - poo + - portrait + - power-off + - smile + - street-view + - user + - user-alt + - user-alt-slash + - user-astronaut + - user-check + - user-circle + - user-clock + - user-cog + - user-edit + - user-friends + - user-graduate + - user-lock + - user-md + - user-minus + - user-ninja + - user-plus + - user-secret + - user-shield + - user-slash + - user-tag + - user-tie + - user-times + - users + - wheelchair + label: Users & People +vehicles: + icons: + - accessible-icon + - ambulance + - bicycle + - bus + - car + - fighter-jet + - helicopter + - motorcycle + - paper-plane + - plane + - rocket + - ship + - shopping-cart + - space-shuttle + - subway + - taxi + - train + - truck + - wheelchair + label: Vehicles +writing: + icons: + - archive + - book + - bookmark + - edit + - envelope + - envelope-open + - eraser + - file + - file-alt + - folder + - folder-open + - keyboard + - newspaper + - paper-plane + - paperclip + - paragraph + - pen + - pen-alt + - pen-square + - pencil-alt + - quote-left + - quote-right + - sticky-note + - thumbtack + label: Writing diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/metadata/icons.json b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/metadata/icons.json new file mode 100644 index 0000000000..192624e59d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/metadata/icons.json @@ -0,0 +1,37840 @@ +{ + "500px": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f26e", + "label": "500px", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3.3-16 16.5-21.2 23.9l-.5.6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8zm63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2zM393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4zM213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6.2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6z" + } + } + }, + "accessible-icon": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accessibility", + "handicap", + "person", + "wheelchair", + "wheelchair-alt" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f368", + "label": "Accessible Icon", + "svg": { + "brands": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M423.9 255.8L411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7zm-64.9-154c28.1 0 50.9-22.8 50.9-50.9C409.9 22.8 387.1 0 359 0c-28.1 0-50.9 22.8-50.9 50.9 0 28.1 22.8 50.9 50.9 50.9zM179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3z" + } + } + }, + "accusoft": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f369", + "label": "Accusoft", + "svg": { + "brands": { + "last_modified": 1521653821380, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M482.2 372.1C476.5 365.2 250 75 242.3 65.5c-13.7-17.2 0-16.8 19.2-16.9 9.7-.1 106.3-.6 116.5-.6 24.1-.1 28.7.6 38.4 12.8 2.1 2.7 205.1 245.8 207.2 248.3 5.5 6.7 15.2 19.1 7.2 23.4-2.4 1.3-114.6 47.7-117.8 48.9-10.1 4-17.5 6.8-30.8-9.3m114.7-5.6s-115 50.4-117.5 51.6c-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2-2.3-.3-24.6-4.7-38-7.2m-326-181.3s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3v-1l-51.2-65.8" + } + } + }, + "address-book": { + "changes": [ + "4.7", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2b9", + "label": "Address Book", + "svg": { + "solid": { + "last_modified": 1525209365064, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z" + }, + "regular": { + "last_modified": 1525209365040, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-68 304H48V48h320v416zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z" + } + } + }, + "address-card": { + "changes": [ + "4.7", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2bb", + "label": "Address Card", + "svg": { + "solid": { + "last_modified": 1525209365064, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-352 96c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H86.4C74 384 64 375.4 64 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2zM512 312c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z" + }, + "regular": { + "last_modified": 1525209365041, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H48V80h480v352zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2zM360 320h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8z" + } + } + }, + "adjust": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "contrast" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f042", + "label": "adjust", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z" + } + } + }, + "adn": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f170", + "label": "App.net", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 167.5l64.9 98.8H183.1l64.9-98.8zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7h30.2z" + } + } + }, + "adversal": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f36a", + "label": "Adversal", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2zM178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4.4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3zm286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7.4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9zm3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6.4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1.2-.1.3-.1.5zm-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2.4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1zm-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8z" + } + } + }, + "affiliatetheme": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f36b", + "label": "affiliatetheme", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2 29.1 21.6 11.1 96.6-40.2 167.5zm351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9.1-8.5-.3-16.8-1-25z" + } + } + }, + "algolia": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f36c", + "label": "Algolia", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M229.3 182.6c-49.3 0-89.2 39.9-89.2 89.2 0 49.3 39.9 89.2 89.2 89.2s89.2-39.9 89.2-89.2c0-49.3-40-89.2-89.2-89.2zm62.7 56.6l-58.9 30.6c-1.8.9-3.8-.4-3.8-2.3V201c0-1.5 1.3-2.7 2.7-2.6 26.2 1 48.9 15.7 61.1 37.1.7 1.3.2 3-1.1 3.7zM389.1 32H58.9C26.4 32 0 58.4 0 90.9V421c0 32.6 26.4 59 58.9 59H389c32.6 0 58.9-26.4 58.9-58.9V90.9C448 58.4 421.6 32 389.1 32zm-202.6 84.7c0-10.8 8.7-19.5 19.5-19.5h45.3c10.8 0 19.5 8.7 19.5 19.5v15.4c0 1.8-1.7 3-3.3 2.5-12.3-3.4-25.1-5.1-38.1-5.1-13.5 0-26.7 1.8-39.4 5.5-1.7.5-3.4-.8-3.4-2.5v-15.8zm-84.4 37l9.2-9.2c7.6-7.6 19.9-7.6 27.5 0l7.7 7.7c1.1 1.1 1 3-.3 4-6.2 4.5-12.1 9.4-17.6 14.9-5.4 5.4-10.4 11.3-14.8 17.4-1 1.3-2.9 1.5-4 .3l-7.7-7.7c-7.6-7.5-7.6-19.8 0-27.4zm127.2 244.8c-70 0-126.6-56.7-126.6-126.6s56.7-126.6 126.6-126.6c70 0 126.6 56.6 126.6 126.6 0 69.8-56.7 126.6-126.6 126.6z" + } + } + }, + "align-center": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "middle", + "text" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f037", + "label": "align-center", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M352 44v40c0 8.837-7.163 16-16 16H112c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h224c8.837 0 16 7.163 16 16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm320-200H112c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z" + } + } + }, + "align-justify": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "text" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f039", + "label": "align-justify", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm16 144h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0-128h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" + } + } + }, + "align-left": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "text" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f036", + "label": "align-left", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M288 44v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16zM0 172v40c0 8.837 7.163 16 16 16h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16zm16 312h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm256-200H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z" + } + } + }, + "align-right": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "text" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f038", + "label": "align-right", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M160 84V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H176c-8.837 0-16-7.163-16-16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" + } + } + }, + "allergies": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "freckles", + "hand", + "intolerances", + "pox", + "spots" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f461", + "label": "Allergies", + "svg": { + "solid": { + "last_modified": 1521653821440, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M416 112c-17.6 0-32 14.4-32 32v72c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v152c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V32c0-17.6-14.4-32-32-32s-32 14.4-32 32v184c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32S96 46.4 96 64v241l-23.6-32.5c-13-17.9-38-21.8-55.9-8.8s-21.8 38-8.8 55.9l125.6 172.7c9 12.4 23.5 19.8 38.8 19.8h197.6c22.3 0 41.6-15.3 46.7-37l26.5-112.7c3.2-13.7 4.9-28.3 5.1-42.3V144c0-17.6-14.4-32-32-32zM176 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 32c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32-128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z" + } + } + }, + "amazon": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f270", + "label": "Amazon", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z" + } + } + }, + "amazon-pay": { + "changes": [ + "5.0.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f42c", + "label": "Amazon Pay", + "svg": { + "brands": { + "last_modified": 1513713060429, + "raw": "", + "viewBox": [ + "0", + "0", + "611.2", + "512" + ], + "width": 611, + "height": 512, + "path": "M0 325.2c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7 40.7 20.4 83.2 35.6 127.4 46.3 20.9 5 41.9 9 63.2 11.8 31.5 4.2 63.2 6 95 5.2 17.4-.4 34.8-1.8 52.1-3.8 56.4-6.7 110.9-20.8 163.3-42.8 2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9-2.8 2.8-6.3 5.1-9.6 7.4-30.7 21.1-64.2 36.4-99.6 47.9-24.6 7.9-49.6 13.8-75.1 17.6-17.6 2.6-35.4 4.4-53.2 4.8-.8 0-1.7.2-2.5.3H294c-.8-.1-1.7-.3-2.5-.3-3.6-.2-7.2-.3-10.7-.4-16.9-.7-33.7-2.6-50.4-5.3-27.4-4.5-54.2-11.4-80.4-20.9-54.1-19.6-102.6-48.6-145.6-87-1.8-1.6-3-3.8-4.4-5.7v-2zM158 65c-1.4.2-2.9.4-4.3.6-14 1.7-26.6 6.9-38 15.1-2.4 1.7-4.6 3.5-7.1 5.4-.2-.5-.4-1-.4-1.4-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6H87.8c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3V215c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zm-47.4 41.9c0-1.5.4-2.4 1.7-3.3 13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9-1.2-.9-1.7-1.7-1.7-3.3.1-14.1 0-28.1 0-42.2 0-14 .1-28 0-42.1zM316.3 65c-1 .1-2 .3-2.9.4-9.8.5-19.4 1.7-28.9 4.1-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9 0 .4-.1.9-.2 1.4-.5-.1-.9 0-1.3-.1-10.5-2.5-21.1-4.3-32-4.9-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4.4-.4.9-.7 1.6-1.1.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0 2.7-.1 4.5-1.9 4.8-4.7.1-.9.1-1.9.1-2.8v-106c0-4.3-.2-8.6-.9-12.9-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1zm35 127.7c0 1.3-.4 2.2-1.5 3-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8-6.3-2.5-10.4-6.9-12.4-13.3s-2-13-.1-19.4c2.5-8.3 8.4-13 16.4-15.6 8.1-2.6 16.5-3 24.8-2.2 8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3-.1 4.7-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3-6.8-2.3-13.9-3.3-21-3.9-13.1-1.1-26.2-.5-39.2 1.9-14.3 2.7-27.9 7.3-40 15.6-1.4 1-2.8 2.1-3.7 3.5-.7 1.1-.9 2.8-.5 4 .4 1.5 2.1 1.9 3.6 1.8.7 0 1.5 0 2.2-.1 7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9 4.8.3 9.7 1.4 14.4 2.7 5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1-.4 1-.8 2-1 3-.5 2.9 1.2 4.8 4.1 4.1 1.7-.4 3.6-1.3 4.8-2.5 4.4-4.3 8.9-8.6 12.7-13.4 12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9v-17.3zM479.1 198.9c-12.9-35.7-25.8-71.5-38.7-107.2-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5.5 2.1 1.1 4.1 1.9 6.1 19.6 48.5 39.3 97.1 59.1 145.5 1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3-5.1 1.4-10.2 1.6-15.4 1.1-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8-.1 3.3-.1 6.6 0 9.9.1 5.5 2 8 7.4 8.9 5.6 1 11.3 1.9 16.9 2 17.1.4 30.7-6.5 39.5-21.4 3.5-5.9 6.7-12.1 9.2-18.4 23.7-59.8 47.1-119.7 70.6-179.6.7-1.8 1.3-3.6 1.6-5.5.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0-3.7 0-6.3 1.6-7.7 5.2-.5 1.4-1.1 2.7-1.6 4.1-11.6 33.3-23.2 66.6-34.8 100-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z" + } + } + }, + "ambulance": { + "changes": [ + "3", + "5.0.0", + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "help", + "machine", + "support", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0f9", + "label": "ambulance", + "svg": { + "solid": { + "last_modified": 1521653821441, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm144-248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm176 248c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z" + } + } + }, + "american-sign-language-interpreting": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f2a3", + "label": "American Sign Language Interpreting", + "svg": { + "solid": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M290.547 189.039c-20.295-10.149-44.147-11.199-64.739-3.89 42.606 0 71.208 20.475 85.578 50.576 8.576 17.899-5.148 38.071-23.617 38.071 18.429 0 32.211 20.136 23.617 38.071-14.725 30.846-46.123 50.854-80.298 50.854-.557 0-94.471-8.615-94.471-8.615l-66.406 33.347c-9.384 4.693-19.815.379-23.895-7.781L1.86 290.747c-4.167-8.615-1.111-18.897 6.946-23.621l58.072-33.069L108 159.861c6.39-57.245 34.731-109.767 79.743-146.726 11.391-9.448 28.341-7.781 37.51 3.613 9.446 11.394 7.78 28.067-3.612 37.516-12.503 10.559-23.618 22.509-32.509 35.57 21.672-14.729 46.679-24.732 74.186-28.067 14.725-1.945 28.063 8.336 29.73 23.065 1.945 14.728-8.336 28.067-23.062 29.734-16.116 1.945-31.12 7.503-44.178 15.284 26.114-5.713 58.712-3.138 88.079 11.115 13.336 6.669 18.893 22.509 12.224 35.848-6.389 13.06-22.504 18.617-35.564 12.226zm-27.229 69.472c-6.112-12.505-18.338-20.286-32.231-20.286a35.46 35.46 0 0 0-35.565 35.57c0 21.428 17.808 35.57 35.565 35.57 13.893 0 26.119-7.781 32.231-20.286 4.446-9.449 13.614-15.006 23.339-15.284-9.725-.277-18.893-5.835-23.339-15.284zm374.821-37.237c4.168 8.615 1.111 18.897-6.946 23.621l-58.071 33.069L532 352.16c-6.39 57.245-34.731 109.767-79.743 146.726-10.932 9.112-27.799 8.144-37.51-3.613-9.446-11.394-7.78-28.067 3.613-37.516 12.503-10.559 23.617-22.509 32.508-35.57-21.672 14.729-46.679 24.732-74.186 28.067-10.021 2.506-27.552-5.643-29.73-23.065-1.945-14.728 8.336-28.067 23.062-29.734 16.116-1.946 31.12-7.503 44.178-15.284-26.114 5.713-58.712 3.138-88.079-11.115-13.336-6.669-18.893-22.509-12.224-35.848 6.389-13.061 22.505-18.619 35.565-12.227 20.295 10.149 44.147 11.199 64.739 3.89-42.606 0-71.208-20.475-85.578-50.576-8.576-17.899 5.148-38.071 23.617-38.071-18.429 0-32.211-20.136-23.617-38.071 14.033-29.396 44.039-50.887 81.966-50.854l92.803 8.615 66.406-33.347c9.408-4.704 19.828-.354 23.894 7.781l44.455 88.926zm-229.227-18.618c-13.893 0-26.119 7.781-32.231 20.286-4.446 9.449-13.614 15.006-23.339 15.284 9.725.278 18.893 5.836 23.339 15.284 6.112 12.505 18.338 20.286 32.231 20.286a35.46 35.46 0 0 0 35.565-35.57c0-21.429-17.808-35.57-35.565-35.57z" + } + } + }, + "amilia": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f36d", + "label": "Amilia", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm-87.9 327.7c0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5V380c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7" + } + } + }, + "anchor": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "link" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f13d", + "label": "Anchor", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M12.971 352h32.394C67.172 454.735 181.944 512 288 512c106.229 0 220.853-57.38 242.635-160h32.394c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0l-67.029 67.029c-7.56 7.56-2.206 20.485 8.485 20.485h35.146c-20.29 54.317-84.963 86.588-144.117 94.015V256h52c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-52v-5.47c37.281-13.178 63.995-48.725 64-90.518C384.005 43.772 341.605.738 289.37.01 235.723-.739 192 42.525 192 96c0 41.798 26.716 77.35 64 90.53V192h-52c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v190.015c-58.936-7.399-123.82-39.679-144.117-94.015h35.146c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0L4.485 331.515C-3.074 339.074 2.28 352 12.971 352zM288 64c17.645 0 32 14.355 32 32s-14.355 32-32 32-32-14.355-32-32 14.355-32 32-32z" + } + } + }, + "android": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "robot" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f17b", + "label": "Android", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M89.6 204.5v115.8c0 15.4-12.1 27.7-27.5 27.7-15.3 0-30.1-12.4-30.1-27.7V204.5c0-15.1 14.8-27.5 30.1-27.5 15.1 0 27.5 12.4 27.5 27.5zm10.8 157c0 16.4 13.2 29.6 29.6 29.6h19.9l.3 61.1c0 36.9 55.2 36.6 55.2 0v-61.1h37.2v61.1c0 36.7 55.5 36.8 55.5 0v-61.1h20.2c16.2 0 29.4-13.2 29.4-29.6V182.1H100.4v179.4zm248-189.1H99.3c0-42.8 25.6-80 63.6-99.4l-19.1-35.3c-2.8-4.9 4.3-8 6.7-3.8l19.4 35.6c34.9-15.5 75-14.7 108.3 0L297.5 34c2.5-4.3 9.5-1.1 6.7 3.8L285.1 73c37.7 19.4 63.3 56.6 63.3 99.4zm-170.7-55.5c0-5.7-4.6-10.5-10.5-10.5-5.7 0-10.2 4.8-10.2 10.5s4.6 10.5 10.2 10.5c5.9 0 10.5-4.8 10.5-10.5zm113.4 0c0-5.7-4.6-10.5-10.2-10.5-5.9 0-10.5 4.8-10.5 10.5s4.6 10.5 10.5 10.5c5.6 0 10.2-4.8 10.2-10.5zm94.8 60.1c-15.1 0-27.5 12.1-27.5 27.5v115.8c0 15.4 12.4 27.7 27.5 27.7 15.4 0 30.1-12.4 30.1-27.7V204.5c0-15.4-14.8-27.5-30.1-27.5z" + } + } + }, + "angellist": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f209", + "label": "AngelList", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7zM311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6 33.1-93.7zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8zM140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7.1-7.7 12.7-21.1 20.4-21.1zm184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3.3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7.1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7zm-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1z" + } + } + }, + "angle-double-down": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f103", + "label": "Angle Double Down", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z" + } + } + }, + "angle-double-left": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows", + "back", + "laquo", + "previous", + "quote" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f100", + "label": "Angle Double Left", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" + } + } + }, + "angle-double-right": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows", + "forward", + "next", + "quote", + "raquo" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f101", + "label": "Angle Double Right", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" + } + } + }, + "angle-double-up": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f102", + "label": "Angle Double Up", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z" + } + } + }, + "angle-down": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f107", + "label": "angle-down", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z" + } + } + }, + "angle-left": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "back", + "previous" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f104", + "label": "angle-left", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" + } + } + }, + "angle-right": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "forward", + "next" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f105", + "label": "angle-right", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" + } + } + }, + "angle-up": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f106", + "label": "angle-up", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z" + } + } + }, + "angry": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "disapprove", + "emoticon", + "face", + "mad", + "upset" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f556", + "label": "Angry Face", + "svg": { + "solid": { + "last_modified": 1529520111644, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 240c0-9.3 4.1-17.5 10.5-23.4l-31-9.3c-8.5-2.5-13.3-11.5-10.7-19.9 2.5-8.5 11.4-13.2 19.9-10.7l80 24c8.5 2.5 13.3 11.5 10.7 19.9-2.1 6.9-8.4 11.4-15.3 11.4-.5 0-1.1-.2-1.7-.2.7 2.7 1.7 5.3 1.7 8.2 0 17.7-14.3 32-32 32S136 257.7 136 240zm168 154.2c-27.8-33.4-84.2-33.4-112.1 0-13.5 16.3-38.2-4.2-24.6-20.5 20-24 49.4-37.8 80.6-37.8s60.6 13.8 80.6 37.8c13.8 16.5-11.1 36.6-24.5 20.5zm76.6-186.9l-31 9.3c6.3 5.8 10.5 14.1 10.5 23.4 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-2.9.9-5.6 1.7-8.2-.6.1-1.1.2-1.7.2-6.9 0-13.2-4.5-15.3-11.4-2.5-8.5 2.3-17.4 10.7-19.9l80-24c8.4-2.5 17.4 2.3 19.9 10.7 2.5 8.5-2.3 17.4-10.8 19.9z" + }, + "regular": { + "last_modified": 1529520111607, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-144c-33.6 0-65.2 14.8-86.8 40.6-8.5 10.2-7.1 25.3 3.1 33.8s25.3 7.2 33.8-3c24.8-29.7 75-29.7 99.8 0 8.1 9.7 23.2 11.9 33.8 3 10.2-8.5 11.5-23.6 3.1-33.8-21.6-25.8-53.2-40.6-86.8-40.6zm-48-72c10.3 0 19.9-6.7 23-17.1 3.8-12.7-3.4-26.1-16.1-29.9l-80-24c-12.8-3.9-26.1 3.4-29.9 16.1-3.8 12.7 3.4 26.1 16.1 29.9l28.2 8.5c-3.1 4.9-5.3 10.4-5.3 16.6 0 17.7 14.3 32 32 32s32-14.4 32-32.1zm199-54.9c-3.8-12.7-17.1-19.9-29.9-16.1l-80 24c-12.7 3.8-19.9 17.2-16.1 29.9 3.1 10.4 12.7 17.1 23 17.1 0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.2-2.2-11.7-5.3-16.6l28.2-8.5c12.7-3.7 19.9-17.1 16.1-29.8z" + } + } + }, + "angrycreative": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f36e", + "label": "Angry Creative", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M640 238.2l-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4 93.1-6.2zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9-12.8 120zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3-126.2 7.7zm-44.3-70.2l-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7 2.7-29.8zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1zm21.1 70.8l5.8-60c-5 13.5-14.7 21.1-27.9 26.6l22.1 33.4zm135.4-45l-7.9-37.8-15.8 39.3 23.7-1.5zm-170.1-74.6l-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8.3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2-56.8 3.7zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1.6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2l-2.9 28.8zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3zm-201.3 8.2l23.8-1.6-8.3-37.6-15.5 39.2z" + } + } + }, + "angular": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f420", + "label": "Angular", + "svg": { + "brands": { + "last_modified": 1511194600653, + "raw": "", + "viewBox": [ + "0", + "0", + "415.6", + "512" + ], + "width": 415, + "height": 512, + "path": "M169.7 268.1h76.2l-38.1-91.6-38.1 91.6zM207.8 32L0 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7L207.8 32zM338 373.8h-48.6l-26.2-65.4H152.6l-26.2 65.4H77.7L207.8 81.5 338 373.8z" + } + } + }, + "app-store": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f36f", + "label": "App Store", + "svg": { + "brands": { + "last_modified": 1521653821381, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M255.9 120.9l9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5 9.8 5.6 13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4 0-11.3 9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5l8.9 15.7zm-78.7 218l-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5-9.8-5.6-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6zm168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4 0 11.3-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216z" + } + } + }, + "app-store-ios": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f370", + "label": "iOS App Store", + "svg": { + "brands": { + "last_modified": 1507838931322, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7c16.1-4.9 29.3-1.1 39.6 11.4L127 384.5zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40zm98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20z" + } + } + }, + "apper": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f371", + "label": "Apper Systems AB", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M42.1 239.1c22.2 0 29 2.8 33.5 14.6h.8v-22.9c0-11.3-4.8-15.4-17.9-15.4-11.3 0-14.4 2.5-15.1 12.8H4.8c.3-13.9 1.5-19.1 5.8-24.4C17.9 195 29.5 192 56.7 192c33 0 47.1 5 53.9 18.9 2 4.3 4 15.6 4 23.7v76.3H76.3l1.3-19.1h-1c-5.3 15.6-13.6 20.4-35.5 20.4-30.3 0-41.1-10.1-41.1-37.3 0-25.2 12.3-35.8 42.1-35.8zm17.1 48.1c13.1 0 16.9-3 16.9-13.4 0-9.1-4.3-11.6-19.6-11.6-13.1 0-17.9 3-17.9 12.1-.1 10.4 3.7 12.9 20.6 12.9zm77.8-94.9h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.2 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3H137v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm57.9-60.7h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.3 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3h-39.5v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm53.8-3.8c0-25.4 3.3-37.8 12.3-45.8 8.8-8.1 22.2-11.3 45.1-11.3 42.8 0 55.7 12.8 55.7 55.7v11.1h-75.3c-.3 2-.3 4-.3 4.8 0 16.9 4.5 21.9 20.1 21.9 13.9 0 17.9-3 17.9-13.9h37.5v2.3c0 9.8-2.5 18.9-6.8 24.7-7.3 9.8-19.6 13.6-44.3 13.6-27.5 0-41.6-3.3-50.6-12.3-8.5-8.5-11.3-21.3-11.3-50.8zm76.4-11.6c-.3-1.8-.3-3.3-.3-3.8 0-12.3-3.3-14.6-19.6-14.6-14.4 0-17.1 3-18.1 15.1l-.3 3.3h38.3zm55.6-45.3h38.3l-1.8 19.9h.7c6.8-14.9 14.4-20.2 29.7-20.2 10.8 0 19.1 3.3 23.4 9.3 5.3 7.3 6.8 14.4 6.8 34 0 1.5 0 5 .2 9.3h-35c.3-1.8.3-3.3.3-4 0-15.4-2-19.4-10.3-19.4-6.3 0-10.8 3.3-13.1 9.3-1 3-1 4.3-1 12.3v68h-38.3V192.3z" + } + } + }, + "apple": { + "changes": [ + "3.2", + "5.0.0", + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "food", + "fruit", + "osx" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f179", + "label": "Apple", + "svg": { + "brands": { + "last_modified": 1519917094301, + "raw": "", + "viewBox": [ + "0", + "0", + "376.5", + "512" + ], + "width": 376, + "height": 512, + "path": "M314.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C59.3 141.2 0 184.8 0 273.5c0 26.2 4.8 53.3 14.4 81.2 12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z" + } + } + }, + "apple-pay": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f415", + "label": "Apple Pay", + "svg": { + "brands": { + "last_modified": 1507669930671, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M116.9 158.5c-7.5 8.9-19.5 15.9-31.5 14.9-1.5-12 4.4-24.8 11.3-32.6 7.5-9.1 20.6-15.6 31.3-16.1 1.2 12.4-3.7 24.7-11.1 33.8m10.9 17.2c-17.4-1-32.3 9.9-40.5 9.9-8.4 0-21-9.4-34.8-9.1-17.9.3-34.5 10.4-43.6 26.5-18.8 32.3-4.9 80 13.3 106.3 8.9 13 19.5 27.3 33.5 26.8 13.3-.5 18.5-8.6 34.5-8.6 16.1 0 20.8 8.6 34.8 8.4 14.5-.3 23.6-13 32.5-26 10.1-14.8 14.3-29.1 14.5-29.9-.3-.3-28-10.9-28.3-42.9-.3-26.8 21.9-39.5 22.9-40.3-12.5-18.6-32-20.6-38.8-21.1m100.4-36.2v194.9h30.3v-66.6h41.9c38.3 0 65.1-26.3 65.1-64.3s-26.4-64-64.1-64h-73.2zm30.3 25.5h34.9c26.3 0 41.3 14 41.3 38.6s-15 38.8-41.4 38.8h-34.8V165zm162.2 170.9c19 0 36.6-9.6 44.6-24.9h.6v23.4h28v-97c0-28.1-22.5-46.3-57.1-46.3-32.1 0-55.9 18.4-56.8 43.6h27.3c2.3-12 13.4-19.9 28.6-19.9 18.5 0 28.9 8.6 28.9 24.5v10.8l-37.8 2.3c-35.1 2.1-54.1 16.5-54.1 41.5.1 25.2 19.7 42 47.8 42zm8.2-23.1c-16.1 0-26.4-7.8-26.4-19.6 0-12.3 9.9-19.4 28.8-20.5l33.6-2.1v11c0 18.2-15.5 31.2-36 31.2zm102.5 74.6c29.5 0 43.4-11.3 55.5-45.4L640 193h-30.8l-35.6 115.1h-.6L537.4 193h-31.6L557 334.9l-2.8 8.6c-4.6 14.6-12.1 20.3-25.5 20.3-2.4 0-7-.3-8.9-.5v23.4c1.8.4 9.3.7 11.6.7z" + } + } + }, + "archive": { + "changes": [ + "3.2", + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "box", + "package", + "storage" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f187", + "label": "Archive", + "svg": { + "solid": { + "last_modified": 1521653821441, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M32 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160H32v288zm160-212c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v8c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-8zM480 32H32C14.3 32 0 46.3 0 64v48c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16V64c0-17.7-14.3-32-32-32z" + } + } + }, + "archway": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arc", + "monument", + "road", + "street" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f557", + "label": "Archway", + "svg": { + "solid": { + "last_modified": 1529520111645, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M560 448h-16V96H32v352H16.02c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16H176c8.84 0 16-7.16 16-16V320c0-53.02 42.98-96 96-96s96 42.98 96 96l.02 160v16c0 8.84 7.16 16 16 16H560c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm0-448H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h544c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16z" + } + } + }, + "arrow-alt-circle-down": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow-circle-o-down", + "download" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f358", + "label": "Alternate Arrow Circle Down", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM212 140v116h-70.9c-10.7 0-16.1 13-8.5 20.5l114.9 114.3c4.7 4.7 12.2 4.7 16.9 0l114.9-114.3c7.6-7.6 2.2-20.5-8.5-20.5H300V140c0-6.6-5.4-12-12-12h-64c-6.6 0-12 5.4-12 12z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm-32-316v116h-67c-10.7 0-16 12.9-8.5 20.5l99 99c4.7 4.7 12.3 4.7 17 0l99-99c7.6-7.6 2.2-20.5-8.5-20.5h-67V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12z" + } + } + }, + "arrow-alt-circle-left": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow-circle-o-left", + "back", + "previous" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f359", + "label": "Alternate Arrow Circle Left", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M8 256c0 137 111 248 248 248s248-111 248-248S393 8 256 8 8 119 8 256zm448 0c0 110.5-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56s200 89.5 200 200zm-72-20v40c0 6.6-5.4 12-12 12H256v67c0 10.7-12.9 16-20.5 8.5l-99-99c-4.7-4.7-4.7-12.3 0-17l99-99c7.6-7.6 20.5-2.2 20.5 8.5v67h116c6.6 0 12 5.4 12 12z" + } + } + }, + "arrow-alt-circle-right": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow-circle-o-right", + "forward", + "next" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f35a", + "label": "Alternate Arrow Circle Right", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z" + } + } + }, + "arrow-alt-circle-up": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow-circle-o-up" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f35b", + "label": "Alternate Arrow Circle Up", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm292 116V256h70.9c10.7 0 16.1-13 8.5-20.5L264.5 121.2c-4.7-4.7-12.2-4.7-16.9 0l-115 114.3c-7.6 7.6-2.2 20.5 8.5 20.5H212v116c0 6.6 5.4 12 12 12h64c6.6 0 12-5.4 12-12z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 504c137 0 248-111 248-248S393 8 256 8 8 119 8 256s111 248 248 248zm0-448c110.5 0 200 89.5 200 200s-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56zm20 328h-40c-6.6 0-12-5.4-12-12V256h-67c-10.7 0-16-12.9-8.5-20.5l99-99c4.7-4.7 12.3-4.7 17 0l99 99c7.6 7.6 2.2 20.5-8.5 20.5h-67v116c0 6.6-5.4 12-12 12z" + } + } + }, + "arrow-circle-down": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0ab", + "label": "Arrow Circle Down", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-143.6-28.9L288 302.6V120c0-13.3-10.7-24-24-24h-16c-13.3 0-24 10.7-24 24v182.6l-72.4-75.5c-9.3-9.7-24.8-9.9-34.3-.4l-10.9 11c-9.4 9.4-9.4 24.6 0 33.9L239 404.3c9.4 9.4 24.6 9.4 33.9 0l132.7-132.7c9.4-9.4 9.4-24.6 0-33.9l-10.9-11c-9.5-9.5-25-9.3-34.3.4z" + } + } + }, + "arrow-circle-left": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "previous" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0a8", + "label": "Arrow Circle Left", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm28.9-143.6L209.4 288H392c13.3 0 24-10.7 24-24v-16c0-13.3-10.7-24-24-24H209.4l75.5-72.4c9.7-9.3 9.9-24.8.4-34.3l-11-10.9c-9.4-9.4-24.6-9.4-33.9 0L107.7 239c-9.4 9.4-9.4 24.6 0 33.9l132.7 132.7c9.4 9.4 24.6 9.4 33.9 0l11-10.9c9.5-9.5 9.3-25-.4-34.3z" + } + } + }, + "arrow-circle-right": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "next" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0a9", + "label": "Arrow Circle Right", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28.9 143.6l75.5 72.4H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h182.6l-75.5 72.4c-9.7 9.3-9.9 24.8-.4 34.3l11 10.9c9.4 9.4 24.6 9.4 33.9 0L404.3 273c9.4-9.4 9.4-24.6 0-33.9L271.6 106.3c-9.4-9.4-24.6-9.4-33.9 0l-11 10.9c-9.5 9.6-9.3 25.1.4 34.4z" + } + } + }, + "arrow-circle-up": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f0aa", + "label": "Arrow Circle Up", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z" + } + } + }, + "arrow-down": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f063", + "label": "arrow-down", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z" + } + } + }, + "arrow-left": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "previous" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f060", + "label": "arrow-left", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z" + } + } + }, + "arrow-right": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "next" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f061", + "label": "arrow-right", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z" + } + } + }, + "arrow-up": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f062", + "label": "arrow-up", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z" + } + } + }, + "arrows-alt": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "arrows", + "bigger", + "enlarge", + "expand", + "fullscreen", + "move", + "position", + "reorder", + "resize" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0b2", + "label": "Alternate Arrows", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z" + } + } + }, + "arrows-alt-h": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows-h", + "resize" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f337", + "label": "Alternate Arrows Horizontal", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z" + } + } + }, + "arrows-alt-v": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows-v", + "resize" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f338", + "label": "Alternate Arrows Vertical", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z" + } + } + }, + "assistive-listening-systems": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f2a2", + "label": "Assistive Listening Systems", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z" + } + } + }, + "asterisk": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "details" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f069", + "label": "asterisk", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z" + } + } + }, + "asymmetrik": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f372", + "label": "Asymmetrik, Ltd.", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M517.5 309.2c38.8-40 58.1-80 58.5-116.1.8-65.5-59.4-118.2-169.4-135C277.9 38.4 118.1 73.6 0 140.5 52 114 110.6 92.3 170.7 82.3c74.5-20.5 153-25.4 221.3-14.8C544.5 91.3 588.8 195 490.8 299.2c-10.2 10.8-22 21.1-35 30.6L304.9 103.4 114.7 388.9c-65.6-29.4-76.5-90.2-19.1-151.2 20.8-22.2 48.3-41.9 79.5-58.1 20-12.2 39.7-22.6 62-30.7-65.1 20.3-122.7 52.9-161.6 92.9-27.7 28.6-41.4 57.1-41.7 82.9-.5 35.1 23.4 65.1 68.4 83l-34.5 51.7h101.6l22-34.4c22.2 1 45.3 0 68.6-2.7l-22.8 37.1h135.5L340 406.3c18.6-5.3 36.9-11.5 54.5-18.7l45.9 71.8H542L468.6 349c18.5-12.1 35-25.5 48.9-39.8zm-187.6 80.5l-25-40.6-32.7 53.3c-23.4 3.5-46.7 5.1-69.2 4.4l101.9-159.3 78.7 123c-17.2 7.4-35.3 13.9-53.7 19.2z" + } + } + }, + "at": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "e-mail", + "email" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1fa", + "label": "At", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z" + } + } + }, + "atlas": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "directions", + "geography", + "map", + "wayfinding" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f558", + "label": "Atlas", + "svg": { + "solid": { + "last_modified": 1529520111646, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M318.38 208h-39.09c-1.49 27.03-6.54 51.35-14.21 70.41 27.71-13.24 48.02-39.19 53.3-70.41zm0-32c-5.29-31.22-25.59-57.17-53.3-70.41 7.68 19.06 12.72 43.38 14.21 70.41h39.09zM224 97.31c-7.69 7.45-20.77 34.42-23.43 78.69h46.87c-2.67-44.26-15.75-71.24-23.44-78.69zm-41.08 8.28c-27.71 13.24-48.02 39.19-53.3 70.41h39.09c1.49-27.03 6.53-51.35 14.21-70.41zm0 172.82c-7.68-19.06-12.72-43.38-14.21-70.41h-39.09c5.28 31.22 25.59 57.17 53.3 70.41zM247.43 208h-46.87c2.66 44.26 15.74 71.24 23.43 78.69 7.7-7.45 20.78-34.43 23.44-78.69zM448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM224 64c70.69 0 128 57.31 128 128s-57.31 128-128 128S96 262.69 96 192 153.31 64 224 64zm160 384H96c-19.2 0-32-12.8-32-32s16-32 32-32h288v64z" + } + } + }, + "audible": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f373", + "label": "Audible", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M640 199.9v54l-320 200L0 254v-54l320 200 320-200.1zm-194.5 72l47.1-29.4c-37.2-55.8-100.7-92.6-172.7-92.6-72 0-135.5 36.7-172.6 92.4h.3c2.5-2.3 5.1-4.5 7.7-6.7 89.7-74.4 219.4-58.1 290.2 36.3zm-220.1 18.8c16.9-11.9 36.5-18.7 57.4-18.7 34.4 0 65.2 18.4 86.4 47.6l45.4-28.4c-20.9-29.9-55.6-49.5-94.8-49.5-38.9 0-73.4 19.4-94.4 49zM103.6 161.1c131.8-104.3 318.2-76.4 417.5 62.1l.7 1 48.8-30.4C517.1 112.1 424.8 58.1 319.9 58.1c-103.5 0-196.6 53.5-250.5 135.6 9.9-10.5 22.7-23.5 34.2-32.6zm467 32.7z" + } + } + }, + "audio-description": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f29e", + "label": "Audio Description", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M162.925 238.709l8.822 30.655h-25.606l9.041-30.652c1.277-4.421 2.651-9.994 3.872-15.245 1.22 5.251 2.594 10.823 3.871 15.242zm166.474-32.099h-14.523v98.781h14.523c29.776 0 46.175-17.678 46.175-49.776 0-32.239-17.49-49.005-46.175-49.005zM512 112v288c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48zM245.459 336.139l-57.097-168A12.001 12.001 0 0 0 177 160h-35.894a12.001 12.001 0 0 0-11.362 8.139l-57.097 168C70.003 343.922 75.789 352 84.009 352h29.133a12 12 0 0 0 11.535-8.693l8.574-29.906h51.367l8.793 29.977A12 12 0 0 0 204.926 352h29.172c8.22 0 14.006-8.078 11.361-15.861zm184.701-80.525c0-58.977-37.919-95.614-98.96-95.614h-57.366c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12H331.2c61.041 0 98.96-36.933 98.96-96.386z" + } + } + }, + "autoprefixer": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f41c", + "label": "Autoprefixer", + "svg": { + "brands": { + "last_modified": 1508787003039, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M318.4 16l-161 480h77.5l25.4-81.4h119.5L405 496h77.5L318.4 16zm-40.3 341.9l41.2-130.4h1.5l40.9 130.4h-83.6zM640 405l-10-31.4L462.1 358l19.4 56.5L640 405zm-462.1-47L10 373.7 0 405l158.5 9.4 19.4-56.4z" + } + } + }, + "avianex": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f374", + "label": "avianex", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M453.1 32h-312c-38.9 0-76.2 31.2-83.3 69.7L1.2 410.3C-5.9 448.8 19.9 480 58.9 480h312c38.9 0 76.2-31.2 83.3-69.7l56.7-308.5c7-38.6-18.8-69.8-57.8-69.8zm-58.2 347.3l-32 13.5-115.4-110c-14.7 10-29.2 19.5-41.7 27.1l22.1 64.2-17.9 12.7-40.6-61-52.4-48.1 15.7-15.4 58 31.1c9.3-10.5 20.8-22.6 32.8-34.9L203 228.9l-68.8-99.8 18.8-28.9 8.9-4.8L265 207.8l4.9 4.5c19.4-18.8 33.8-32.4 33.8-32.4 7.7-6.5 21.5-2.9 30.7 7.9 9 10.5 10.6 24.7 2.7 31.3-1.8 1.3-15.5 11.4-35.3 25.6l4.5 7.3 94.9 119.4-6.3 7.9z" + } + } + }, + "aviato": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f421", + "label": "Aviato", + "svg": { + "brands": { + "last_modified": 1521653821381, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M107.2 283.5l-19-41.8H36.1l-19 41.8H0l62.2-131.4 62.2 131.4h-17.2zm-45-98.1l-19.6 42.5h39.2l-19.6-42.5zm112.7 102.4l-62.2-131.4h17.1l45.1 96 45.1-96h17l-62.1 131.4zm80.6-4.3V156.4H271v127.1h-15.5zm209.1-115.6v115.6h-17.3V167.9h-41.2v-11.5h99.6v11.5h-41.1zM640 218.8c0 9.2-1.7 17.8-5.1 25.8-3.4 8-8.2 15.1-14.2 21.1-6 6-13.1 10.8-21.1 14.2-8 3.4-16.6 5.1-25.8 5.1s-17.8-1.7-25.8-5.1c-8-3.4-15.1-8.2-21.1-14.2-6-6-10.8-13-14.2-21.1-3.4-8-5.1-16.6-5.1-25.8s1.7-17.8 5.1-25.8c3.4-8 8.2-15.1 14.2-21.1 6-6 13-8.4 21.1-11.9 8-3.4 16.6-5.1 25.8-5.1s17.8 1.7 25.8 5.1c8 3.4 15.1 5.8 21.1 11.9 6 6 10.7 13.1 14.2 21.1 3.4 8 5.1 16.6 5.1 25.8zm-15.5 0c0-7.3-1.3-14-3.9-20.3-2.6-6.3-6.2-11.7-10.8-16.3-4.6-4.6-10-8.2-16.2-10.9-6.2-2.7-12.8-4-19.8-4s-13.6 1.3-19.8 4c-6.2 2.7-11.6 6.3-16.2 10.9-4.6 4.6-8.2 10-10.8 16.3-2.6 6.3-3.9 13.1-3.9 20.3 0 7.3 1.3 14 3.9 20.3 2.6 6.3 6.2 11.7 10.8 16.3 4.6 4.6 10 8.2 16.2 10.9 6.2 2.7 12.8 4 19.8 4s13.6-1.3 19.8-4c6.2-2.7 11.6-6.3 16.2-10.9 4.6-4.6 8.2-10 10.8-16.3 2.6-6.3 3.9-13.1 3.9-20.3zm-94.8 96.7v-6.3l88.9-10-242.9 13.4c.6-2.2 1.1-4.6 1.4-7.2.3-2 .5-4.2.6-6.5l64.8-8.1-64.9 1.9c0-.4-.1-.7-.1-1.1-2.8-17.2-25.5-23.7-25.5-23.7l-1.1-26.3h23.8l19 41.8h17.1L348.6 152l-62.2 131.4h17.1l19-41.8h23.6L345 268s-22.7 6.5-25.5 23.7c-.1.3-.1.7-.1 1.1l-64.9-1.9 64.8 8.1c.1 2.3.3 4.4.6 6.5.3 2.6.8 5 1.4 7.2L78.4 299.2l88.9 10v6.3c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4 0-6.2-4.6-11.3-10.5-12.2v-5.8l80.3 9v5.4c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-4.9l28.4 3.2v23.7h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9V323l38.3 4.3c8.1 11.4 19 13.6 19 13.6l-.1 6.7-5.1.2-.1 12.1h4.1l.1-5h5.2l.1 5h4.1l-.1-12.1-5.1-.2-.1-6.7s10.9-2.1 19-13.6l38.3-4.3v23.2h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9v-23.7l28.4-3.2v4.9c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-5.4l80.3-9v5.8c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4-.2-6.3-4.7-11.4-10.7-12.3zm-200.8-87.6l19.6-42.5 19.6 42.5h-17.9l-1.7-40.3-1.7 40.3h-17.9z" + } + } + }, + "award": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "honor", + "praise", + "prize", + "recognition", + "ribbon" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f559", + "label": "Award", + "svg": { + "solid": { + "last_modified": 1529520111646, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M97.12 362.63l-5.3-5.3a9.004 9.004 0 0 0-4.02-2.32L72 350.77c-9.51-2.55-17.87-7.45-25.43-13.32L1.2 448.7c-4.39 10.77 3.81 22.47 15.43 22.03l52.69-2.01L105.56 507c8 8.44 22.04 5.81 26.43-4.96l52.05-127.62c-10.84 6.04-22.87 9.58-35.31 9.58-19.5 0-37.82-7.59-51.61-21.37zM382.8 448.7l-45.37-111.24c-7.56 5.88-15.92 10.77-25.43 13.32l-15.8 4.23a9.004 9.004 0 0 0-4.02 2.32l-5.3 5.3C273.09 376.41 254.76 384 235.26 384c-12.44 0-24.47-3.55-35.31-9.58L252 502.04c4.39 10.77 18.44 13.4 26.43 4.96l36.25-38.28 52.69 2.01c11.62.44 19.82-11.27 15.43-22.03zM263 340l5.21-5.3c5-5.09 11.22-8.75 18.05-10.61l15.53-4.23c13.89-3.79 24.75-14.84 28.47-28.98l4.16-15.81a41.145 41.145 0 0 1 10.42-18.37l11.37-11.57c10.17-10.35 14.14-25.44 10.42-39.58l-4.16-15.81a41.657 41.657 0 0 1 0-21.21l4.16-15.81c3.72-14.14-.25-29.23-10.42-39.58l-11.37-11.57c-5-5.09-8.59-11.42-10.42-18.37l-4.16-15.8c-3.72-14.14-14.58-25.19-28.47-28.98l-15.53-4.24c-6.83-1.86-13.05-5.52-18.05-10.61L256.84 12c-10.17-10.35-25-14.4-38.89-10.61l-15.53 4.24a39.614 39.614 0 0 1-20.84 0L166.05 1.4c-13.89-3.79-28.72.25-38.89 10.61l-11.37 11.57c-5 5.09-11.22 8.74-18.05 10.61l-15.53 4.24c-13.89 3.79-24.75 14.84-28.47 28.98l-4.16 15.8a41.145 41.145 0 0 1-10.42 18.37l-11.37 11.57c-10.17 10.35-14.15 25.44-10.42 39.58l4.16 15.8a41.657 41.657 0 0 1 0 21.21l-4.16 15.8c-3.72 14.14.25 29.23 10.42 39.59l11.37 11.57c5 5.09 8.59 11.42 10.42 18.37l4.16 15.8c3.72 14.14 14.58 25.19 28.47 28.98l15.53 4.23c6.83 1.86 13.05 5.52 18.05 10.61L121 340c13.23 13.47 33.84 15.88 49.74 5.82a39.676 39.676 0 0 1 42.53 0c15.89 10.06 36.5 7.65 49.73-5.82zM97.66 175.96c0-53.03 42.24-96.02 94.34-96.02s94.34 42.99 94.34 96.02-42.24 96.02-94.34 96.02-94.34-42.99-94.34-96.02z" + } + } + }, + "aws": { + "changes": [ + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f375", + "label": "Amazon Web Services (AWS)", + "svg": { + "brands": { + "last_modified": 1529514897188, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M180.41 203.01c-.72 22.65 10.6 32.68 10.88 39.05a8.164 8.164 0 0 1-4.1 6.27l-12.8 8.96a10.66 10.66 0 0 1-5.63 1.92c-.43-.02-8.19 1.83-20.48-25.61a78.608 78.608 0 0 1-62.61 29.45c-16.28.89-60.4-9.24-58.13-56.21-1.59-38.28 34.06-62.06 70.93-60.05 7.1.02 21.6.37 46.99 6.27v-15.62c2.69-26.46-14.7-46.99-44.81-43.91-2.4.01-19.4-.5-45.84 10.11-7.36 3.38-8.3 2.82-10.75 2.82-7.41 0-4.36-21.48-2.94-24.2 5.21-6.4 35.86-18.35 65.94-18.18a76.857 76.857 0 0 1 55.69 17.28 70.285 70.285 0 0 1 17.67 52.36l-.01 69.29zM93.99 235.4c32.43-.47 46.16-19.97 49.29-30.47 2.46-10.05 2.05-16.41 2.05-27.4-9.67-2.32-23.59-4.85-39.56-4.87-15.15-1.14-42.82 5.63-41.74 32.26-1.24 16.79 11.12 31.4 29.96 30.48zm170.92 23.05c-7.86.72-11.52-4.86-12.68-10.37l-49.8-164.65c-.97-2.78-1.61-5.65-1.92-8.58a4.61 4.61 0 0 1 3.86-5.25c.24-.04-2.13 0 22.25 0 8.78-.88 11.64 6.03 12.55 10.37l35.72 140.83 33.16-140.83c.53-3.22 2.94-11.07 12.8-10.24h17.16c2.17-.18 11.11-.5 12.68 10.37l33.42 142.63L420.98 80.1c.48-2.18 2.72-11.37 12.68-10.37h19.72c.85-.13 6.15-.81 5.25 8.58-.43 1.85 3.41-10.66-52.75 169.9-1.15 5.51-4.82 11.09-12.68 10.37h-18.69c-10.94 1.15-12.51-9.66-12.68-10.75L328.67 110.7l-32.78 136.99c-.16 1.09-1.73 11.9-12.68 10.75h-18.3zm273.48 5.63c-5.88.01-33.92-.3-57.36-12.29a12.802 12.802 0 0 1-7.81-11.91v-10.75c0-8.45 6.2-6.9 8.83-5.89 10.04 4.06 16.48 7.14 28.81 9.6 36.65 7.53 52.77-2.3 56.72-4.48 13.15-7.81 14.19-25.68 5.25-34.95-10.48-8.79-15.48-9.12-53.13-21-4.64-1.29-43.7-13.61-43.79-52.36-.61-28.24 25.05-56.18 69.52-55.95 12.67-.01 46.43 4.13 55.57 15.62 1.35 2.09 2.02 4.55 1.92 7.04v10.11c0 4.44-1.62 6.66-4.87 6.66-7.71-.86-21.39-11.17-49.16-10.75-6.89-.36-39.89.91-38.41 24.97-.43 18.96 26.61 26.07 29.7 26.89 36.46 10.97 48.65 12.79 63.12 29.58 17.14 22.25 7.9 48.3 4.35 55.44-19.08 37.49-68.42 34.44-69.26 34.42zm40.2 104.86c-70.03 51.72-171.69 79.25-258.49 79.25A469.127 469.127 0 0 1 2.83 327.46c-6.53-5.89-.77-13.96 7.17-9.47a637.37 637.37 0 0 0 316.88 84.12 630.22 630.22 0 0 0 241.59-49.55c11.78-5 21.77 7.8 10.12 16.38zm29.19-33.29c-8.96-11.52-59.28-5.38-81.81-2.69-6.79.77-7.94-5.12-1.79-9.47 40.07-28.17 105.88-20.1 113.44-10.63 7.55 9.47-2.05 75.41-39.56 106.91-5.76 4.87-11.27 2.3-8.71-4.1 8.44-21.25 27.39-68.49 18.43-80.02z" + } + } + }, + "backspace": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "command", + "delete", + "keyboard", + "undo" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f55a", + "label": "Backspace", + "svg": { + "solid": { + "last_modified": 1529520111647, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M576 64H205.26A63.97 63.97 0 0 0 160 82.75L9.37 233.37c-12.5 12.5-12.5 32.76 0 45.25L160 429.25c12 12 28.28 18.75 45.25 18.75H576c35.35 0 64-28.65 64-64V128c0-35.35-28.65-64-64-64zm-84.69 254.06c6.25 6.25 6.25 16.38 0 22.63l-22.62 22.62c-6.25 6.25-16.38 6.25-22.63 0L384 301.25l-62.06 62.06c-6.25 6.25-16.38 6.25-22.63 0l-22.62-22.62c-6.25-6.25-6.25-16.38 0-22.63L338.75 256l-62.06-62.06c-6.25-6.25-6.25-16.38 0-22.63l22.62-22.62c6.25-6.25 16.38-6.25 22.63 0L384 210.75l62.06-62.06c6.25-6.25 16.38-6.25 22.63 0l22.62 22.62c6.25 6.25 6.25 16.38 0 22.63L429.25 256l62.06 62.06z" + } + } + }, + "backward": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "previous", + "rewind" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f04a", + "label": "backward", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M11.5 280.6l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2zm256 0l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2z" + } + } + }, + "balance-scale": { + "changes": [ + "4.4", + "5.0.0", + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "balanced", + "justice", + "legal", + "measure", + "weight" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f24e", + "label": "Balance Scale", + "svg": { + "solid": { + "last_modified": 1525967154563, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M256 336h-.02c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0C-2.06 328.75.02 320.33.02 336H0c0 44.18 57.31 80 128 80s128-35.82 128-80zM128 176l72 144H56l72-144zm511.98 160c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 320l72-144 72 144H440zm88 128H352V153.25c23.51-10.29 41.16-31.48 46.39-57.25H528c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H383.64C369.04 12.68 346.09 0 320 0s-49.04 12.68-63.64 32H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h129.61c5.23 25.76 22.87 46.96 46.39 57.25V448H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" + } + } + }, + "ban": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abort", + "ban", + "block", + "cancel", + "delete", + "hide", + "prohibit", + "remove", + "stop", + "trash" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f05e", + "label": "ban", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119.034 8 8 119.033 8 256s111.034 248 248 248 248-111.034 248-248S392.967 8 256 8zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676zM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676z" + } + } + }, + "band-aid": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "bandage", + "boo boo", + "ouch" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f462", + "label": "Band-Aid", + "svg": { + "solid": { + "last_modified": 1521653821441, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M0 160v192c0 35.3 28.7 64 64 64h96V96H64c-35.3 0-64 28.7-64 64zm576-64h-96v320h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64zM192 416h256V96H192v320zm176-232c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24z" + } + } + }, + "bandcamp": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2d5", + "label": "Bandcamp", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm48.2 326.1h-181L199.9 178h181l-84.7 156.1z" + } + } + }, + "barcode": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "scan" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f02a", + "label": "barcode", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z" + } + } + }, + "bars": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "drag", + "hamburger", + "list", + "menu", + "nav", + "navigation", + "ol", + "reorder", + "settings", + "todo", + "ul" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0c9", + "label": "Bars", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" + } + } + }, + "baseball-ball": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f433", + "label": "Baseball Ball", + "svg": { + "solid": { + "last_modified": 1518899527985, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z" + } + } + }, + "basketball-ball": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f434", + "label": "Basketball Ball", + "svg": { + "solid": { + "last_modified": 1518899527986, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M212.3 10.3c-43.8 6.3-86.2 24.1-122.2 53.8l77.4 77.4c27.8-35.8 43.3-81.2 44.8-131.2zM248 222L405.9 64.1c-42.4-35-93.6-53.5-145.5-56.1-1.2 63.9-21.5 122.3-58.7 167.7L248 222zM56.1 98.1c-29.7 36-47.5 78.4-53.8 122.2 50-1.5 95.5-17 131.2-44.8L56.1 98.1zm272.2 204.2c45.3-37.1 103.7-57.4 167.7-58.7-2.6-51.9-21.1-103.1-56.1-145.5L282 256l46.3 46.3zM248 290L90.1 447.9c42.4 34.9 93.6 53.5 145.5 56.1 1.3-64 21.6-122.4 58.7-167.7L248 290zm191.9 123.9c29.7-36 47.5-78.4 53.8-122.2-50.1 1.6-95.5 17.1-131.2 44.8l77.4 77.4zM167.7 209.7C122.3 246.9 63.9 267.3 0 268.4c2.6 51.9 21.1 103.1 56.1 145.5L214 256l-46.3-46.3zm116 292c43.8-6.3 86.2-24.1 122.2-53.8l-77.4-77.4c-27.7 35.7-43.2 81.2-44.8 131.2z" + } + } + }, + "bath": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f2cd", + "label": "Bath", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M488 256H80V112c0-17.645 14.355-32 32-32 11.351 0 21.332 5.945 27.015 14.88-16.492 25.207-14.687 59.576 6.838 83.035-4.176 4.713-4.021 11.916.491 16.428l11.314 11.314c4.686 4.686 12.284 4.686 16.971 0l95.03-95.029c4.686-4.686 4.686-12.284 0-16.971l-11.314-11.314c-4.512-4.512-11.715-4.666-16.428-.491-17.949-16.469-42.294-21.429-64.178-15.365C163.281 45.667 139.212 32 112 32c-44.112 0-80 35.888-80 80v144h-8c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h8v32c0 28.43 12.362 53.969 32 71.547V456c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-8h256v8c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-32.453c19.638-17.578 32-43.117 32-71.547v-32h8c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z" + } + } + }, + "battery-empty": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "power", + "status" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f244", + "label": "Battery Empty", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48z" + } + } + }, + "battery-full": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "power", + "status" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f240", + "label": "Battery Full", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-48 96H96v128h416V192z" + } + } + }, + "battery-half": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "power", + "status" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f242", + "label": "Battery 1/2 Full", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-240 96H96v128h224V192z" + } + } + }, + "battery-quarter": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "power", + "status" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f243", + "label": "Battery 1/4 Full", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-336 96H96v128h128V192z" + } + } + }, + "battery-three-quarters": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "power", + "status" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f241", + "label": "Battery 3/4 Full", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-144 96H96v128h320V192z" + } + } + }, + "bed": { + "changes": [ + "4.3", + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "lodging", + "sleep", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f236", + "label": "Bed", + "svg": { + "solid": { + "last_modified": 1529520111647, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M176 256c44.11 0 80-35.89 80-80s-35.89-80-80-80-80 35.89-80 80 35.89 80 80 80zm352-128H304c-8.84 0-16 7.16-16 16v144H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v352c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h512v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V240c0-61.86-50.14-112-112-112z" + } + } + }, + "beer": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "drink", + "liquor", + "mug", + "stein" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0fc", + "label": "beer", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M368 96h-48V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24v-42.11l80.606-35.977C429.396 365.063 448 336.388 448 304.86V176c0-44.112-35.888-80-80-80zm16 208.86a16.018 16.018 0 0 1-9.479 14.611L320 343.805V160h48c8.822 0 16 7.178 16 16v128.86zM208 384c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16zm-96 0c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16z" + } + } + }, + "behance": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1b4", + "label": "Behance", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z" + } + } + }, + "behance-square": { + "changes": [ + "4.1", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1b5", + "label": "Behance Square", + "svg": { + "brands": { + "last_modified": 1515426581996, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M186.5 293c0 19.3-14 25.4-31.2 25.4h-45.1v-52.9h46c18.6.1 30.3 7.8 30.3 27.5zm-7.7-82.3c0-17.7-13.7-21.9-28.9-21.9h-39.6v44.8H153c15.1 0 25.8-6.6 25.8-22.9zm132.3 23.2c-18.3 0-30.5 11.4-31.7 29.7h62.2c-1.7-18.5-11.3-29.7-30.5-29.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM271.7 185h77.8v-18.9h-77.8V185zm-43 110.3c0-24.1-11.4-44.9-35-51.6 17.2-8.2 26.2-17.7 26.2-37 0-38.2-28.5-47.5-61.4-47.5H68v192h93.1c34.9-.2 67.6-16.9 67.6-55.9zM380 280.5c0-41.1-24.1-75.4-67.6-75.4-42.4 0-71.1 31.8-71.1 73.6 0 43.3 27.3 73 71.1 73 33.2 0 54.7-14.9 65.1-46.8h-33.7c-3.7 11.9-18.6 18.1-30.2 18.1-22.4 0-34.1-13.1-34.1-35.3h100.2c.1-2.3.3-4.8.3-7.2z" + } + } + }, + "bell": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alert", + "notification", + "reminder" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0f3", + "label": "bell", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M433.884 366.059C411.634 343.809 384 316.118 384 208c0-79.394-57.831-145.269-133.663-157.83A31.845 31.845 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 6.75 2.095 13.008 5.663 18.17C121.831 62.731 64 128.606 64 208c0 108.118-27.643 135.809-49.893 158.059C-16.042 396.208 5.325 448 48.048 448H160c0 35.346 28.654 64 64 64s64-28.654 64-64h111.943c42.638 0 64.151-51.731 33.941-81.941zM224 472a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16c0 13.234 10.766 24 24 24z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M425.403 330.939c-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.843 31.843 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095C118.101 62.783 57.143 131.831 57.143 214.857c0 81.933-17.551 99.292-34.543 116.078C-25.496 378.441 9.726 448 66.919 448H160c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h93.08c57.19 0 92.415-69.583 44.323-117.061zM224 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm157.092-72H66.9c-16.762 0-25.135-20.39-13.334-32.191 28.585-28.585 51.577-55.724 51.577-152.952C105.143 149.319 158.462 96 224 96s118.857 53.319 118.857 118.857c0 97.65 23.221 124.574 51.568 152.952C406.278 379.661 397.783 400 381.092 400z" + } + } + }, + "bell-slash": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1f6", + "label": "Bell Slash", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M78.107 366.059C47.958 396.208 69.325 448 112.048 448H224c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h32.685L127.848 221.379c-2.198 97.078-28.439 123.378-49.741 144.68zM264 448c0 13.234 10.766 24 24 24a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16zm305.896 43.733l-10.762 12.086c-8.915 10.012-24.333 10.967-34.437 2.133L8.256 54.393C-1.848 45.558-2.811 30.28 6.104 20.267L16.865 8.181C25.781-1.831 41.199-2.786 51.303 6.049l113.81 99.512c24.017-28.778 57.946-48.996 96.55-55.39A31.85 31.85 0 0 1 256 32c0-17.673 14.327-32 32-32s32 14.327 32 32c0 6.75-2.095 13.008-5.663 18.17C390.169 62.731 448 128.606 448 208c0 108.118 27.634 135.809 49.884 158.059 12.149 12.149 15.923 27.776 13.33 42.121l56.53 49.427c10.104 8.835 11.067 24.113 2.152 34.126z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M130.9 400c-16.762 0-25.135-20.39-13.334-32.191 25.226-25.226 46.094-49.338 50.649-121.48l-46.777-41.274a168.48 168.48 0 0 0-.296 9.802c0 81.933-17.551 99.292-34.543 116.078C38.504 378.441 73.726 448 130.919 448H224c0 35.346 28.654 64 64 64s64-28.654 64-64h44.777l-54.4-48H130.9zM288 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm283.867.553l-67.931-59.571c13.104-24.118 11.524-56.318-14.532-82.042-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.848 31.848 0 0 0 320 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095c-41.471 6.618-77.891 28.571-103.249 59.841L36.459 3.037c-5.058-4.436-12.777-3.956-17.24 1.071L3.056 22.313C-1.407 27.34-.925 35.012 4.134 39.447l535.408 469.516c5.058 4.436 12.777 3.956 17.24-1.071l16.163-18.205c4.462-5.027 3.98-12.699-1.078-17.134zM288 96c65.538 0 118.857 53.319 118.857 118.857 0 97.65 23.221 124.574 51.568 152.952 2.908 2.908 4.573 6.328 5.209 9.832L194.482 141.612C216.258 113.867 250.075 96 288 96z" + } + } + }, + "bezier-curve": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "curves", + "illustrator", + "lines", + "path", + "vector" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f55b", + "label": "Bezier Curve", + "svg": { + "solid": { + "last_modified": 1529520111648, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M368 32h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM208 88h-84.75C113.75 64.56 90.84 48 64 48 28.66 48 0 76.65 0 112s28.66 64 64 64c26.84 0 49.75-16.56 59.25-40h79.73c-55.37 32.52-95.86 87.32-109.54 152h49.4c11.3-41.61 36.77-77.21 71.04-101.56-3.7-8.08-5.88-16.99-5.88-26.44V88zm-48 232H64c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zM576 48c-26.84 0-49.75 16.56-59.25 40H432v72c0 9.45-2.19 18.36-5.88 26.44 34.27 24.35 59.74 59.95 71.04 101.56h49.4c-13.68-64.68-54.17-119.48-109.54-152h79.73c9.5 23.44 32.41 40 59.25 40 35.34 0 64-28.65 64-64s-28.66-64-64-64zm0 272h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z" + } + } + }, + "bicycle": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bike", + "gears", + "transportation", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f206", + "label": "Bicycle", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M512.509 192.001c-16.373-.064-32.03 2.955-46.436 8.495l-77.68-125.153A24 24 0 0 0 368.001 64h-64c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h50.649l14.896 24H256.002v-16c0-8.837-7.163-16-16-16h-87.459c-13.441 0-24.777 10.999-24.536 24.437.232 13.044 10.876 23.563 23.995 23.563h48.726l-29.417 47.52c-13.433-4.83-27.904-7.483-42.992-7.52C58.094 191.83.412 249.012.002 319.236-.413 390.279 57.055 448 128.002 448c59.642 0 109.758-40.793 123.967-96h52.033a24 24 0 0 0 20.406-11.367L410.37 201.77l14.938 24.067c-25.455 23.448-41.385 57.081-41.307 94.437.145 68.833 57.899 127.051 126.729 127.719 70.606.685 128.181-55.803 129.255-125.996 1.086-70.941-56.526-129.72-127.476-129.996zM186.75 265.772c9.727 10.529 16.673 23.661 19.642 38.228h-43.306l23.664-38.228zM128.002 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c5.869 0 11.586.653 17.099 1.859l-45.505 73.509C89.715 331.327 101.213 352 120.002 352h81.3c-12.37 28.225-40.562 48-73.3 48zm162.63-96h-35.624c-3.96-31.756-19.556-59.894-42.383-80.026L237.371 184h127.547l-74.286 120zm217.057 95.886c-41.036-2.165-74.049-35.692-75.627-76.755-.812-21.121 6.633-40.518 19.335-55.263l44.433 71.586c4.66 7.508 14.524 9.816 22.032 5.156l13.594-8.437c7.508-4.66 9.817-14.524 5.156-22.032l-44.468-71.643a79.901 79.901 0 0 1 19.858-2.497c44.112 0 80 35.888 80 80-.001 45.54-38.252 82.316-84.313 79.885z" + } + } + }, + "bimobject": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f378", + "label": "BIMobject", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M416 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm-64 257.4c0 49.4-11.4 82.6-103.8 82.6h-16.9c-44.1 0-62.4-14.9-70.4-38.8h-.9V368H96V136h64v74.7h1.1c4.6-30.5 39.7-38.8 69.7-38.8h17.3c92.4 0 103.8 33.1 103.8 82.5v35zm-64-28.9v22.9c0 21.7-3.4 33.8-38.4 33.8h-45.3c-28.9 0-44.1-6.5-44.1-35.7v-19c0-29.3 15.2-35.7 44.1-35.7h45.3c35-.2 38.4 12 38.4 33.7z" + } + } + }, + "binoculars": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f1e5", + "label": "Binoculars", + "svg": { + "solid": { + "last_modified": 1502810244000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M192 104H96V56c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24v48zm224-48c0-13.255-10.745-24-24-24h-48c-13.255 0-24 10.745-24 24v48h96V56zM0 456c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H0v16zm88-328c-13.255 0-24 10.745-24 24C64 256 0 272 0 416h168V312c0-13.255 10.745-24 24-24V128H88zm256 328c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H344v16zM216 128v160h80V128h-80zm128 288h168c0-144-64-160-64-264 0-13.255-10.745-24-24-24H320v160c13.255 0 24 10.745 24 24v104z" + } + } + }, + "birthday-cake": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f1fd", + "label": "Birthday Cake", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z" + } + } + }, + "bitbucket": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bitbucket-square", + "git" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f171", + "label": "Bitbucket", + "svg": { + "brands": { + "last_modified": 1505492030000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M23.1 32C14.2 31.9 7 38.9 6.9 47.8c0 .9.1 1.8.2 2.8L74.9 462c1.7 10.4 10.7 18 21.2 18.1h325.1c7.9.1 14.7-5.6 16-13.4l67.8-416c1.4-8.7-4.5-16.9-13.2-18.3-.9-.1-1.8-.2-2.8-.2L23.1 32zm285.3 297.3H204.6l-28.1-146.8h157l-25.1 146.8z" + } + } + }, + "bitcoin": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f379", + "label": "Bitcoin", + "svg": { + "brands": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z" + } + } + }, + "bity": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f37a", + "label": "Bity", + "svg": { + "brands": { + "last_modified": 1521653821381, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M78.4 67.2C173.8-22 324.5-24 421.5 71c14.3 14.1-6.4 37.1-22.4 21.5-84.8-82.4-215.8-80.3-298.9-3.2-16.3 15.1-36.5-8.3-21.8-22.1zm98.9 418.6c19.3 5.7 29.3-23.6 7.9-30C73 421.9 9.4 306.1 37.7 194.8c5-19.6-24.9-28.1-30.2-7.1-32.1 127.4 41.1 259.8 169.8 298.1zm148.1-2c121.9-40.2 192.9-166.9 164.4-291-4.5-19.7-34.9-13.8-30 7.9 24.2 107.7-37.1 217.9-143.2 253.4-21.2 7-10.4 36 8.8 29.7zm-62.9-79l.2-71.8c0-8.2-6.6-14.8-14.8-14.8-8.2 0-14.8 6.7-14.8 14.8l-.2 71.8c0 8.2 6.6 14.8 14.8 14.8s14.8-6.6 14.8-14.8zm71-269c2.1 90.9 4.7 131.9-85.5 132.5-92.5-.7-86.9-44.3-85.5-132.5 0-21.8-32.5-19.6-32.5 0v71.6c0 69.3 60.7 90.9 118 90.1 57.3.8 118-20.8 118-90.1v-71.6c0-19.6-32.5-21.8-32.5 0z" + } + } + }, + "black-tie": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f27e", + "label": "Font Awesome Black Tie", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm316.5 325.2L224 445.9l-92.5-88.7 64.5-184-64.5-86.6h184.9L252 173.2l64.5 184z" + } + } + }, + "blackberry": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f37b", + "label": "BlackBerry", + "svg": { + "brands": { + "last_modified": 1501873838000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M166 116.9c0 23.4-16.4 49.1-72.5 49.1H23.4l21-88.8h67.8c42.1 0 53.8 23.3 53.8 39.7zm126.2-39.7h-67.8L205.7 166h70.1c53.8 0 70.1-25.7 70.1-49.1.1-16.4-11.6-39.7-53.7-39.7zM88.8 208.1H21L0 296.9h70.1c56.1 0 72.5-23.4 72.5-49.1 0-16.3-11.7-39.7-53.8-39.7zm180.1 0h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 0-16.3-11.7-39.7-53.7-39.7zm189.3-53.8h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7zm-28 137.9h-67.8L343.7 381h70.1c56.1 0 70.1-23.4 70.1-49.1 0-16.3-11.6-39.7-53.7-39.7zM240.8 346H173l-18.7 88.8h70.1c56.1 0 70.1-25.7 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7z" + } + } + }, + "blender": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f517", + "label": "Blender", + "svg": { + "solid": { + "last_modified": 1525967154563, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M416 384H160c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-128 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm40-416h166.54L512 0H48C21.49 0 0 21.49 0 48v160c0 26.51 21.49 48 48 48h103.27l8.73 96h256l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H328c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM64 192V64h69.82l11.64 128H64z" + } + } + }, + "blind": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f29d", + "label": "Blind", + "svg": { + "solid": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M380.15 510.837a8 8 0 0 1-10.989-2.687l-125.33-206.427a31.923 31.923 0 0 0 12.958-9.485l126.048 207.608a8 8 0 0 1-2.687 10.991zM142.803 314.338l-32.54 89.485 36.12 88.285c6.693 16.36 25.377 24.192 41.733 17.501 16.357-6.692 24.193-25.376 17.501-41.734l-62.814-153.537zM96 88c24.301 0 44-19.699 44-44S120.301 0 96 0 52 19.699 52 44s19.699 44 44 44zm154.837 169.128l-120-152c-4.733-5.995-11.75-9.108-18.837-9.112V96H80v.026c-7.146.003-14.217 3.161-18.944 9.24L0 183.766v95.694c0 13.455 11.011 24.791 24.464 24.536C37.505 303.748 48 293.1 48 280v-79.766l16-20.571v140.698L9.927 469.055c-6.04 16.609 2.528 34.969 19.138 41.009 16.602 6.039 34.968-2.524 41.009-19.138L136 309.638V202.441l-31.406-39.816a4 4 0 1 1 6.269-4.971l102.3 129.217c9.145 11.584 24.368 11.339 33.708 3.965 10.41-8.216 12.159-23.334 3.966-33.708z" + } + } + }, + "blogger": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f37c", + "label": "Blogger", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M162.4 196c4.8-4.9 6.2-5.1 36.4-5.1 27.2 0 28.1.1 32.1 2.1 5.8 2.9 8.3 7 8.3 13.6 0 5.9-2.4 10-7.6 13.4-2.8 1.8-4.5 1.9-31.1 2.1-16.4.1-29.5-.2-31.5-.8-10.3-2.9-14.1-17.7-6.6-25.3zm61.4 94.5c-53.9 0-55.8.2-60.2 4.1-3.5 3.1-5.7 9.4-5.1 13.9.7 4.7 4.8 10.1 9.2 12 2.2 1 14.1 1.7 56.3 1.2l47.9-.6 9.2-1.5c9-5.1 10.5-17.4 3.1-24.4-5.3-4.7-5-4.7-60.4-4.7zm223.4 130.1c-3.5 28.4-23 50.4-51.1 57.5-7.2 1.8-9.7 1.9-172.9 1.8-157.8 0-165.9-.1-172-1.8-8.4-2.2-15.6-5.5-22.3-10-5.6-3.8-13.9-11.8-17-16.4-3.8-5.6-8.2-15.3-10-22C.1 423 0 420.3 0 256.3 0 93.2 0 89.7 1.8 82.6 8.1 57.9 27.7 39 53 33.4c7.3-1.6 332.1-1.9 340-.3 21.2 4.3 37.9 17.1 47.6 36.4 7.7 15.3 7-1.5 7.3 180.6.2 115.8 0 164.5-.7 170.5zm-85.4-185.2c-1.1-5-4.2-9.6-7.7-11.5-1.1-.6-8-1.3-15.5-1.7-12.4-.6-13.8-.8-17.8-3.1-6.2-3.6-7.9-7.6-8-18.3 0-20.4-8.5-39.4-25.3-56.5-12-12.2-25.3-20.5-40.6-25.1-3.6-1.1-11.8-1.5-39.2-1.8-42.9-.5-52.5.4-67.1 6.2-27 10.7-46.3 33.4-53.4 62.4-1.3 5.4-1.6 14.2-1.9 64.3-.4 62.8 0 72.1 4 84.5 9.7 30.7 37.1 53.4 64.6 58.4 9.2 1.7 122.2 2.1 133.7.5 20.1-2.7 35.9-10.8 50.7-25.9 10.7-10.9 17.4-22.8 21.8-38.5 3.2-10.9 2.9-88.4 1.7-93.9z" + } + } + }, + "blogger-b": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f37d", + "label": "Blogger B", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z" + } + } + }, + "bluetooth": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f293", + "label": "Bluetooth", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M292.6 171.1L249.7 214l-.3-86 43.2 43.1m-43.2 219.8l43.1-43.1-42.9-42.9-.2 86zM416 259.4C416 465 344.1 512 230.9 512S32 465 32 259.4 115.4 0 228.6 0 416 53.9 416 259.4zm-158.5 0l79.4-88.6L211.8 36.5v176.9L138 139.6l-27 26.9 92.7 93-92.7 93 26.9 26.9 73.8-73.8 2.3 170 127.4-127.5-83.9-88.7z" + } + } + }, + "bluetooth-b": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f294", + "label": "Bluetooth", + "svg": { + "brands": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M196.48 260.023l92.626-103.333L143.125 0v206.33l-86.111-86.111-31.406 31.405 108.061 108.399L25.608 368.422l31.406 31.405 86.111-86.111L145.84 512l148.552-148.644-97.912-103.333zm40.86-102.996l-49.977 49.978-.338-100.295 50.315 50.317zM187.363 313.04l49.977 49.978-50.315 50.316.338-100.294z" + } + } + }, + "bold": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f032", + "label": "bold", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M304.793 243.891c33.639-18.537 53.657-54.16 53.657-95.693 0-48.236-26.25-87.626-68.626-104.179C265.138 34.01 240.849 32 209.661 32H24c-8.837 0-16 7.163-16 16v33.049c0 8.837 7.163 16 16 16h33.113v318.53H24c-8.837 0-16 7.163-16 16V464c0 8.837 7.163 16 16 16h195.69c24.203 0 44.834-1.289 66.866-7.584C337.52 457.193 376 410.647 376 350.014c0-52.168-26.573-91.684-71.207-106.123zM142.217 100.809h67.444c16.294 0 27.536 2.019 37.525 6.717 15.828 8.479 24.906 26.502 24.906 49.446 0 35.029-20.32 56.79-53.029 56.79h-76.846V100.809zm112.642 305.475c-10.14 4.056-22.677 4.907-31.409 4.907h-81.233V281.943h84.367c39.645 0 63.057 25.38 63.057 63.057.001 28.425-13.66 52.483-34.782 61.284z" + } + } + }, + "bolt": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electricity", + "lightning", + "weather", + "zap" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0e7", + "label": "Lightning Bolt", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M295.973 160H180.572L215.19 30.184C219.25 14.956 207.756 0 192 0H56C43.971 0 33.8 8.905 32.211 20.828l-31.996 240C-1.704 275.217 9.504 288 24.004 288h118.701L96.646 482.466C93.05 497.649 104.659 512 119.992 512c8.35 0 16.376-4.374 20.778-11.978l175.973-303.997c9.244-15.967-2.288-36.025-20.77-36.025z" + } + } + }, + "bomb": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f1e2", + "label": "Bomb", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M440.5 88.5l-52 52L415 167c9.4 9.4 9.4 24.6 0 33.9l-17.4 17.4c11.8 26.1 18.4 55.1 18.4 85.6 0 114.9-93.1 208-208 208S0 418.9 0 304 93.1 96 208 96c30.5 0 59.5 6.6 85.6 18.4L311 97c9.4-9.4 24.6-9.4 33.9 0l26.5 26.5 52-52 17.1 17zM500 60h-24c-6.6 0-12 5.4-12 12s5.4 12 12 12h24c6.6 0 12-5.4 12-12s-5.4-12-12-12zM440 0c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12s12-5.4 12-12V12c0-6.6-5.4-12-12-12zm33.9 55l17-17c4.7-4.7 4.7-12.3 0-17-4.7-4.7-12.3-4.7-17 0l-17 17c-4.7 4.7-4.7 12.3 0 17 4.8 4.7 12.4 4.7 17 0zm-67.8 0c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17zm67.8 34c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17zM112 272c0-35.3 28.7-64 64-64 8.8 0 16-7.2 16-16s-7.2-16-16-16c-52.9 0-96 43.1-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16z" + } + } + }, + "bong": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aparatus", + "cannabis", + "marijuana", + "pipe", + "smoke", + "smoking" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f55c", + "label": "Bong", + "svg": { + "solid": { + "last_modified": 1529520111648, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M302.5 512c23.18 0 44.43-12.58 56-32.66C374.69 451.26 384 418.75 384 384c0-36.12-10.08-69.81-27.44-98.62L400 241.94l9.38 9.38c6.25 6.25 16.38 6.25 22.63 0l11.3-11.32c6.25-6.25 6.25-16.38 0-22.63l-52.69-52.69c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63l9.38 9.38-39.41 39.41c-11.56-11.37-24.53-21.33-38.65-29.51V63.74l15.97-.02c8.82-.01 15.97-7.16 15.98-15.98l.04-31.72C320 7.17 312.82-.01 303.97 0L80.03.26c-8.82.01-15.97 7.16-15.98 15.98l-.04 31.73c-.01 8.85 7.17 16.02 16.02 16.01L96 63.96v153.93C38.67 251.1 0 312.97 0 384c0 34.75 9.31 67.27 25.5 95.34C37.08 499.42 58.33 512 81.5 512h221zM120.06 259.43L144 245.56V63.91l96-.11v181.76l23.94 13.87c24.81 14.37 44.12 35.73 56.56 60.57h-257c12.45-24.84 31.75-46.2 56.56-60.57z" + } + } + }, + "book": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "documentation", + "read" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f02d", + "label": "book", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z" + } + } + }, + "book-open": { + "changes": [ + "5.0.13", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flyer", + "notebook", + "open book", + "pamphlet", + "reading" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f518", + "label": "Book Open", + "svg": { + "solid": { + "last_modified": 1529514897312, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M542.22 32.05c-54.8 3.11-163.72 14.43-230.96 55.59-4.64 2.84-7.27 7.89-7.27 13.17v363.87c0 11.55 12.63 18.85 23.28 13.49 69.18-34.82 169.23-44.32 218.7-46.92 16.89-.89 30.02-14.43 30.02-30.66V62.75c.01-17.71-15.35-31.74-33.77-30.7zM264.73 87.64C197.5 46.48 88.58 35.17 33.78 32.05 15.36 31.01 0 45.04 0 62.75V400.6c0 16.24 13.13 29.78 30.02 30.66 49.49 2.6 149.59 12.11 218.77 46.95 10.62 5.35 23.21-1.94 23.21-13.46V100.63c0-5.29-2.62-10.14-7.27-12.99z" + } + } + }, + "bookmark": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "save" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f02e", + "label": "bookmark", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M336 0H48C21.49 0 0 21.49 0 48v464l192-112 192 112V48c0-26.51-21.49-48-48-48zm0 428.43l-144-84-144 84V54a6 6 0 0 1 6-6h276c3.314 0 6 2.683 6 5.996V428.43z" + } + } + }, + "bowling-ball": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f436", + "label": "Bowling Ball", + "svg": { + "solid": { + "last_modified": 1518899527987, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM120 192c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64-96c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm48 144c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" + } + } + }, + "box": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "package" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f466", + "label": "Box", + "svg": { + "solid": { + "last_modified": 1521653821444, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M509.5 184.6L458.9 32.8C452.4 13.2 434.1 0 413.4 0H272v192h238.7c-.4-2.5-.4-5-1.2-7.4zM240 0H98.6c-20.7 0-39 13.2-45.5 32.8L2.5 184.6c-.8 2.4-.8 4.9-1.2 7.4H240V0zM0 224v240c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V224H0z" + } + } + }, + "box-open": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f49e", + "label": "Box Open", + "svg": { + "solid": { + "last_modified": 1521653821443, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M53.2 41L1.7 143.8c-4.6 9.2.3 20.2 10.1 23l197.9 56.5c7.1 2 14.7-1 18.5-7.3L320 64 69.8 32.1c-6.9-.8-13.5 2.7-16.6 8.9zm585.1 102.8L586.8 41c-3.1-6.2-9.8-9.8-16.7-8.9L320 64l91.7 152.1c3.8 6.3 11.4 9.3 18.5 7.3l197.9-56.5c9.9-2.9 14.7-13.9 10.2-23.1zM425.7 256c-16.9 0-32.8-9-41.4-23.4L320 126l-64.2 106.6c-8.7 14.5-24.6 23.5-41.5 23.5-4.5 0-9-.6-13.3-1.9L64 215v178c0 14.7 10 27.5 24.2 31l216.2 54.1c10.2 2.5 20.9 2.5 31 0L551.8 424c14.2-3.6 24.2-16.4 24.2-31V215l-137 39.1c-4.3 1.3-8.8 1.9-13.3 1.9z" + } + } + }, + "boxes": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f468", + "label": "Boxes", + "svg": { + "solid": { + "last_modified": 1521653821444, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M560 288h-80v96l-32-21.3-32 21.3v-96h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16zm-384-64h224c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16h-80v96l-32-21.3L256 96V0h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16zm64 64h-80v96l-32-21.3L96 384v-96H16c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16z" + } + } + }, + "braille": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f2a1", + "label": "Braille", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M128 256c0 35.346-28.654 64-64 64S0 291.346 0 256s28.654-64 64-64 64 28.654 64 64zM64 384c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352C28.654 32 0 60.654 0 96s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm224 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-320c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z" + } + } + }, + "briefcase": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bag", + "business", + "luggage", + "office", + "work" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0b1", + "label": "Briefcase", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M320 288h192v144c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V288h192v20c0 6.627 5.373 12 12 12h104c6.627 0 12-5.373 12-12v-20zm192-112v80H0v-80c0-26.51 21.49-48 48-48h80V80c0-26.51 21.49-48 48-48h160c26.51 0 48 21.49 48 48v48h80c26.51 0 48 21.49 48 48zM320 96H192v32h128V96z" + } + } + }, + "briefcase-medical": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "health briefcase" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f469", + "label": "Medical Briefcase", + "svg": { + "solid": { + "last_modified": 1521653821445, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 128h-80V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48zM192 96h128v32H192V96zm160 248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48z" + } + } + }, + "broadcast-tower": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "airwaves", + "radio", + "waves" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f519", + "label": "Broadcast Tower", + "svg": { + "solid": { + "last_modified": 1525967154564, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M150.94 192h33.73c11.01 0 18.61-10.83 14.86-21.18-4.93-13.58-7.55-27.98-7.55-42.82s2.62-29.24 7.55-42.82C203.29 74.83 195.68 64 184.67 64h-33.73c-7.01 0-13.46 4.49-15.41 11.23C130.64 92.21 128 109.88 128 128c0 18.12 2.64 35.79 7.54 52.76 1.94 6.74 8.39 11.24 15.4 11.24zM89.92 23.34C95.56 12.72 87.97 0 75.96 0H40.63c-6.27 0-12.14 3.59-14.74 9.31C9.4 45.54 0 85.65 0 128c0 24.75 3.12 68.33 26.69 118.86 2.62 5.63 8.42 9.14 14.61 9.14h34.84c12.02 0 19.61-12.74 13.95-23.37-49.78-93.32-16.71-178.15-.17-209.29zM614.06 9.29C611.46 3.58 605.6 0 599.33 0h-35.42c-11.98 0-19.66 12.66-14.02 23.25 18.27 34.29 48.42 119.42.28 209.23-5.72 10.68 1.8 23.52 13.91 23.52h35.23c6.27 0 12.13-3.58 14.73-9.29C630.57 210.48 640 170.36 640 128s-9.42-82.48-25.94-118.71zM489.06 64h-33.73c-11.01 0-18.61 10.83-14.86 21.18 4.93 13.58 7.55 27.98 7.55 42.82s-2.62 29.24-7.55 42.82c-3.76 10.35 3.85 21.18 14.86 21.18h33.73c7.02 0 13.46-4.49 15.41-11.24 4.9-16.97 7.53-34.64 7.53-52.76 0-18.12-2.64-35.79-7.54-52.76-1.94-6.75-8.39-11.24-15.4-11.24zm-116.3 100.12c7.05-10.29 11.2-22.71 11.2-36.12 0-35.35-28.63-64-63.96-64-35.32 0-63.96 28.65-63.96 64 0 13.41 4.15 25.83 11.2 36.12l-130.5 313.41c-3.4 8.15.46 17.52 8.61 20.92l29.51 12.31c8.15 3.4 17.52-.46 20.91-8.61L244.96 384h150.07l49.2 118.15c3.4 8.16 12.76 12.01 20.91 8.61l29.51-12.31c8.15-3.4 12-12.77 8.61-20.92l-130.5-313.41zM271.62 320L320 203.81 368.38 320h-96.76z" + } + } + }, + "broom": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f51a", + "label": "Broom", + "svg": { + "solid": { + "last_modified": 1525967154564, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M10.8 247.2C-.7 251.8-3.7 266.7 5 275.4l54.8 54.8 73.2-24.4-24.4 73.2 128 128c8.8 8.8 23.6 5.7 28.2-5.8l98.1-243.7-108.4-108.4-243.7 98.1zM507.3 27.3L484.7 4.7c-6.2-6.3-16.4-6.3-22.6 0L359.8 106.9l-40.4-40.4c-4.2-4.3-11.4-3-13.9 2.5l-27.2 58.6 106.1 106.1 58.6-27.2c5.4-2.5 6.7-9.7 2.5-13.9l-40.4-40.4L507.3 49.9c6.3-6.2 6.3-16.3 0-22.6z" + } + } + }, + "brush": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bristles", + "color", + "handle", + "painting" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f55d", + "label": "Brush", + "svg": { + "solid": { + "last_modified": 1529520111649, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M352 0H32C14.33 0 0 14.33 0 32v224h384V32c0-17.67-14.33-32-32-32zM0 320c0 35.35 28.66 64 64 64h64v64c0 35.35 28.66 64 64 64s64-28.65 64-64v-64h64c35.34 0 64-28.65 64-64v-32H0v32zm192 104c13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24s-24-10.75-24-24c0-13.26 10.75-24 24-24z" + } + } + }, + "btc": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f15a", + "label": "BTC", + "svg": { + "brands": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M310.204 242.638c27.73-14.18 45.377-39.39 41.28-81.3-5.358-57.351-52.458-76.573-114.85-81.929V0h-48.528v77.203c-12.605 0-25.525.315-38.444.63V0h-48.528v79.409c-17.842.539-38.622.276-97.37 0v51.678c38.314-.678 58.417-3.14 63.023 21.427v217.429c-2.925 19.492-18.524 16.685-53.255 16.071L3.765 443.68c88.481 0 97.37.315 97.37.315V512h48.528v-67.06c13.234.315 26.154.315 38.444.315V512h48.528v-68.005c81.299-4.412 135.647-24.894 142.895-101.467 5.671-61.446-23.32-88.862-69.326-99.89zM150.608 134.553c27.415 0 113.126-8.507 113.126 48.528 0 54.515-85.71 48.212-113.126 48.212v-96.74zm0 251.776V279.821c32.772 0 133.127-9.138 133.127 53.255-.001 60.186-100.355 53.253-133.127 53.253z" + } + } + }, + "bug": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "insect", + "report" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f188", + "label": "Bug", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M511.988 288.9c-.478 17.43-15.217 31.1-32.653 31.1H424v16c0 21.864-4.882 42.584-13.6 61.145l60.228 60.228c12.496 12.497 12.496 32.758 0 45.255-12.498 12.497-32.759 12.496-45.256 0l-54.736-54.736C345.886 467.965 314.351 480 280 480V236c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v244c-34.351 0-65.886-12.035-90.636-32.108l-54.736 54.736c-12.498 12.497-32.759 12.496-45.256 0-12.496-12.497-12.496-32.758 0-45.255l60.228-60.228C92.882 378.584 88 357.864 88 336v-16H32.666C15.23 320 .491 306.33.013 288.9-.484 270.816 14.028 256 32 256h56v-58.745l-46.628-46.628c-12.496-12.497-12.496-32.758 0-45.255 12.498-12.497 32.758-12.497 45.256 0L141.255 160h229.489l54.627-54.627c12.498-12.497 32.758-12.497 45.256 0 12.496 12.497 12.496 32.758 0 45.255L424 197.255V256h56c17.972 0 32.484 14.816 31.988 32.9zM257 0c-61.856 0-112 50.144-112 112h224C369 50.144 318.856 0 257 0z" + } + } + }, + "building": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apartment", + "business", + "company", + "office", + "work" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1ad", + "label": "Building", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M128 148v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12zm140 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-128 96h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm128 0h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-76 84v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm76 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm180 124v36H0v-36c0-6.6 5.4-12 12-12h19.5V24c0-13.3 10.7-24 24-24h337c13.3 0 24 10.7 24 24v440H436c6.6 0 12 5.4 12 12zM79.5 463H192v-67c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v67h112.5V49L80 48l-.5 415z" + } + } + }, + "bullhorn": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "announcement", + "broadcast", + "louder", + "megaphone", + "share" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0a1", + "label": "bullhorn", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M576 224c0-20.896-13.36-38.666-32-45.258V64c0-35.346-28.654-64-64-64-64.985 56-142.031 128-272 128H48c-26.51 0-48 21.49-48 48v96c0 26.51 21.49 48 48 48h43.263c-18.742 64.65 2.479 116.379 18.814 167.44 1.702 5.32 5.203 9.893 9.922 12.88 20.78 13.155 68.355 15.657 93.773 5.151 16.046-6.633 19.96-27.423 7.522-39.537-18.508-18.026-30.136-36.91-19.795-60.858a12.278 12.278 0 0 0-1.045-11.673c-16.309-24.679-3.581-62.107 28.517-72.752C346.403 327.887 418.591 395.081 480 448c35.346 0 64-28.654 64-64V269.258c18.64-6.592 32-24.362 32-45.258zm-96 139.855c-54.609-44.979-125.033-92.94-224-104.982v-69.747c98.967-12.042 169.391-60.002 224-104.982v279.711z" + } + } + }, + "bullseye": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "target" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f140", + "label": "Bullseye", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 72c101.689 0 184 82.295 184 184 0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-101.689 82.295-184 184-184m0-64C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 184c35.29 0 64 28.71 64 64s-28.71 64-64 64-64-28.71-64-64 28.71-64 64-64m0-64c-70.692 0-128 57.308-128 128s57.308 128 128 128 128-57.308 128-128-57.308-128-128-128z" + } + } + }, + "burn": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "energy" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f46a", + "label": "Burn", + "svg": { + "solid": { + "last_modified": 1521653821445, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M192 0C79.7 101.3 0 220.9 0 300.5 0 425 79 512 192 512s192-87 192-211.5c0-79.9-80.2-199.6-192-300.5zm0 448c-56.5 0-96-39-96-94.8 0-13.5 4.6-61.5 96-161.2 91.4 99.7 96 147.7 96 161.2 0 55.8-39.5 94.8-96 94.8z" + } + } + }, + "buromobelexperte": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f37f", + "label": "Büromöbel-Experte GmbH & Co. KG.", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 32v128h128V32H0zm120 120H8V40h112v112zm40-120v128h128V32H160zm120 120H168V40h112v112zm40-120v128h128V32H320zm120 120H328V40h112v112zM0 192v128h128V192H0zm120 120H8V200h112v112zm40-120v128h128V192H160zm120 120H168V200h112v112zm40-120v128h128V192H320zm120 120H328V200h112v112zM0 352v128h128V352H0zm120 120H8V360h112v112zm40-120v128h128V352H160zm120 120H168V360h112v112zm40-120v128h128V352H320z" + } + } + }, + "bus": { + "changes": [ + "4.2", + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "machine", + "public transportation", + "transportation", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f207", + "label": "Bus", + "svg": { + "solid": { + "last_modified": 1529520111650, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM112 400c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm16-112c-17.67 0-32-14.33-32-32V128c0-17.67 14.33-32 32-32h256c17.67 0 32 14.33 32 32v128c0 17.67-14.33 32-32 32H128zm272 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + } + }, + "bus-alt": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "machine", + "public transportation", + "transportation", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f55e", + "label": "Bus Alt", + "svg": { + "solid": { + "last_modified": 1529520111650, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM160 72c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H168c-4.42 0-8-3.58-8-8V72zm-48 328c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm128-112H128c-17.67 0-32-14.33-32-32v-96c0-17.67 14.33-32 32-32h112v160zm32 0V128h112c17.67 0 32 14.33 32 32v96c0 17.67-14.33 32-32 32H272zm128 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + } + }, + "buysellads": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f20d", + "label": "BuySellAds", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M224 150.7l42.9 160.7h-85.8L224 150.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-65.3 325.3l-94.5-298.7H159.8L65.3 405.3H156l111.7-91.6 24.2 91.6h90.8z" + } + } + }, + "calculator": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f1ec", + "label": "Calculator", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 464V48C0 21.49 21.49 0 48 0h352c26.51 0 48 21.49 48 48v416c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm384-284V76c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v104c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12zM128 308v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm256 128V268c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-256 0v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm128-128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm0 128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z" + } + } + }, + "calendar": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "calendar-o", + "date", + "event", + "schedule", + "time", + "when" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f133", + "label": "Calendar", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm436-44v-36c0-26.5-21.5-48-48-48h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v36c0 6.6 5.4 12 12 12h424c6.6 0 12-5.4 12-12z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z" + } + } + }, + "calendar-alt": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "calendar", + "date", + "event", + "schedule", + "time", + "when" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f073", + "label": "Alternate Calendar", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm116 204c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" + } + } + }, + "calendar-check": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "appointment", + "confirm", + "correct", + "done", + "ok", + "select", + "success", + "todo" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f274", + "label": "Calendar Check", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M436 160H12c-6.627 0-12-5.373-12-12v-36c0-26.51 21.49-48 48-48h48V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h128V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h48c26.51 0 48 21.49 48 48v36c0 6.627-5.373 12-12 12zM12 192h424c6.627 0 12 5.373 12 12v260c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V204c0-6.627 5.373-12 12-12zm333.296 95.947l-28.169-28.398c-4.667-4.705-12.265-4.736-16.97-.068L194.12 364.665l-45.98-46.352c-4.667-4.705-12.266-4.736-16.971-.068l-28.397 28.17c-4.705 4.667-4.736 12.265-.068 16.97l82.601 83.269c4.667 4.705 12.265 4.736 16.97.068l142.953-141.805c4.705-4.667 4.736-12.265.068-16.97z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 64h-48V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H160V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V160h352v298a6 6 0 0 1-6 6zm-52.849-200.65L198.842 404.519c-4.705 4.667-12.303 4.637-16.971-.068l-75.091-75.699c-4.667-4.705-4.637-12.303.068-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l44.104 44.461 111.072-110.181c4.705-4.667 12.303-4.637 16.971.068l22.536 22.718c4.667 4.705 4.636 12.303-.069 16.97z" + } + } + }, + "calendar-minus": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f272", + "label": "Calendar Minus", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm304 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H132c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h184z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M124 328c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H124zm324-216v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" + } + } + }, + "calendar-plus": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f271", + "label": "Calendar Plus", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm316 140c0-6.6-5.4-12-12-12h-60v-60c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v60h-60c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h60v60c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-60h60c6.6 0 12-5.4 12-12v-40z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M336 292v24c0 6.6-5.4 12-12 12h-76v76c0 6.6-5.4 12-12 12h-24c-6.6 0-12-5.4-12-12v-76h-76c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h76v-76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v76h76c6.6 0 12 5.4 12 12zm112-180v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" + } + } + }, + "calendar-times": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f273", + "label": "Calendar Times", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm257.3 160l48.1-48.1c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0L224 306.7l-48.1-48.1c-4.7-4.7-12.3-4.7-17 0l-28.3 28.3c-4.7 4.7-4.7 12.3 0 17l48.1 48.1-48.1 48.1c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l48.1-48.1 48.1 48.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L269.3 352z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M311.7 374.7l-17 17c-4.7 4.7-12.3 4.7-17 0L224 337.9l-53.7 53.7c-4.7 4.7-12.3 4.7-17 0l-17-17c-4.7-4.7-4.7-12.3 0-17l53.7-53.7-53.7-53.7c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0l53.7 53.7 53.7-53.7c4.7-4.7 12.3-4.7 17 0l17 17c4.7 4.7 4.7 12.3 0 17L257.9 304l53.7 53.7c4.8 4.7 4.8 12.3.1 17zM448 112v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" + } + } + }, + "camera": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "photo", + "picture", + "record" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f030", + "label": "camera", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z" + } + } + }, + "camera-retro": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "photo", + "picture", + "record" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f083", + "label": "Retro Camera", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm0 32h106c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H38c-3.3 0-6-2.7-6-6V80c0-8.8 7.2-16 16-16zm426 96H38c-3.3 0-6-2.7-6-6v-36c0-3.3 2.7-6 6-6h138l30.2-45.3c1.1-1.7 3-2.7 5-2.7H464c8.8 0 16 7.2 16 16v74c0 3.3-2.7 6-6 6zM256 424c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88zm-48 104c-8.8 0-16-7.2-16-16 0-35.3 28.7-64 64-64 8.8 0 16 7.2 16 16s-7.2 16-16 16c-17.6 0-32 14.4-32 32 0 8.8-7.2 16-16 16z" + } + } + }, + "cannabis": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bud", + "chronic", + "drugs", + "endica", + "endo", + "ganja", + "marijuana", + "mary jane", + "pot", + "reefer", + "sativa", + "spliff", + "weed", + "whacky-tabacky" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f55f", + "label": "Cannabis", + "svg": { + "solid": { + "last_modified": 1529520111651, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M503.47 360.25c-1.56-.82-32.39-16.89-76.78-25.81 64.25-75.12 84.05-161.67 84.93-165.64 1.18-5.33-.44-10.9-4.3-14.77-3.03-3.04-7.12-4.7-11.32-4.7-1.14 0-2.29.12-3.44.38-3.88.85-86.54 19.59-160.58 79.76.01-1.46.01-2.93.01-4.4 0-118.79-59.98-213.72-62.53-217.7A15.973 15.973 0 0 0 256 0c-5.45 0-10.53 2.78-13.47 7.37-2.55 3.98-62.53 98.91-62.53 217.7 0 1.47.01 2.94.01 4.4-74.03-60.16-156.69-78.9-160.58-79.76-1.14-.25-2.29-.38-3.44-.38-4.2 0-8.29 1.66-11.32 4.7A15.986 15.986 0 0 0 .38 168.8c.88 3.97 20.68 90.52 84.93 165.64-44.39 8.92-75.21 24.99-76.78 25.81a16.003 16.003 0 0 0-.02 28.29c2.45 1.29 60.76 31.72 133.49 31.72 6.14 0 11.96-.1 17.5-.31-11.37 22.23-16.52 38.31-16.81 39.22-1.8 5.68-.29 11.89 3.91 16.11a16.019 16.019 0 0 0 16.1 3.99c1.83-.57 37.72-11.99 77.3-39.29V504c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8v-64.01c39.58 27.3 75.47 38.71 77.3 39.29a16.019 16.019 0 0 0 16.1-3.99c4.2-4.22 5.71-10.43 3.91-16.11-.29-.91-5.45-16.99-16.81-39.22 5.54.21 11.37.31 17.5.31 72.72 0 131.04-30.43 133.49-31.72 5.24-2.78 8.52-8.22 8.51-14.15-.01-5.94-3.29-11.39-8.53-14.15z" + } + } + }, + "capsules": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medicine" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f46b", + "label": "Capsules", + "svg": { + "solid": { + "last_modified": 1521653821446, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M555.3 300.1L424.2 112.8C401.9 81 366.4 64 330.4 64c-22.6 0-45.5 6.7-65.5 20.7-19.7 13.8-33.7 32.8-41.5 53.8C220.5 79.2 172 32 112 32 50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V218.9c3.3 8.6 7.3 17.1 12.8 25L368 431.2c22.2 31.8 57.7 48.8 93.8 48.8 22.7 0 45.5-6.7 65.5-20.7 51.7-36.2 64.2-107.5 28-159.2zM160 256H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm194.8 44.9l-65.6-93.7c-7.7-11-10.7-24.4-8.3-37.6 2.3-13.2 9.7-24.8 20.7-32.5 8.5-6 18.5-9.1 28.8-9.1 16.5 0 31.9 8 41.3 21.5l65.6 93.7-82.5 57.7z" + } + } + }, + "car": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "machine", + "transportation", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1b9", + "label": "Car", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M499.991 168h-54.815l-7.854-20.944c-9.192-24.513-25.425-45.351-46.942-60.263S343.651 64 317.472 64H194.528c-26.18 0-51.391 7.882-72.908 22.793-21.518 14.912-37.75 35.75-46.942 60.263L66.824 168H12.009c-8.191 0-13.974 8.024-11.384 15.795l8 24A12 12 0 0 0 20.009 216h28.815l-.052.14C29.222 227.093 16 247.997 16 272v48c0 16.225 6.049 31.029 16 42.309V424c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-40h256v40c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-61.691c9.951-11.281 16-26.085 16-42.309v-48c0-24.003-13.222-44.907-32.772-55.86l-.052-.14h28.815a12 12 0 0 0 11.384-8.205l8-24c2.59-7.771-3.193-15.795-11.384-15.795zm-365.388 1.528C143.918 144.689 168 128 194.528 128h122.944c26.528 0 50.61 16.689 59.925 41.528L391.824 208H120.176l14.427-38.472zM88 328c-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32s48 30.327 48 48-30.327 16-48 16zm336 0c-17.673 0-48 1.673-48-16 0-17.673 30.327-48 48-48s32 14.327 32 32c0 17.673-14.327 32-32 32z" + } + } + }, + "caret-down": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "dropdown", + "menu", + "more", + "triangle down" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0d7", + "label": "Caret Down", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" + } + } + }, + "caret-left": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "back", + "previous", + "triangle left" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0d9", + "label": "Caret Left", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "192", + "512" + ], + "width": 192, + "height": 512, + "path": "M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z" + } + } + }, + "caret-right": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "forward", + "next", + "triangle right" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0da", + "label": "Caret Right", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "192", + "512" + ], + "width": 192, + "height": 512, + "path": "M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z" + } + } + }, + "caret-square-down": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "caret-square-o-down", + "dropdown", + "menu", + "more" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f150", + "label": "Caret Square Down", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM92.5 220.5l123 123c4.7 4.7 12.3 4.7 17 0l123-123c7.6-7.6 2.2-20.5-8.5-20.5H101c-10.7 0-16.1 12.9-8.5 20.5z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M125.1 208h197.8c10.7 0 16.1 13 8.5 20.5l-98.9 98.3c-4.7 4.7-12.2 4.7-16.9 0l-98.9-98.3c-7.7-7.5-2.3-20.5 8.4-20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" + } + } + }, + "caret-square-left": { + "changes": [ + "4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "caret-square-o-left", + "previous" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f191", + "label": "Caret Square Left", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM259.515 124.485l-123.03 123.03c-4.686 4.686-4.686 12.284 0 16.971l123.029 123.029c7.56 7.56 20.485 2.206 20.485-8.485V132.971c.001-10.691-12.925-16.045-20.484-8.486z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M272 157.1v197.8c0 10.7-13 16.1-20.5 8.5l-98.3-98.9c-4.7-4.7-4.7-12.2 0-16.9l98.3-98.9c7.5-7.7 20.5-2.3 20.5 8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" + } + } + }, + "caret-square-right": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "caret-square-o-right", + "forward", + "next" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f152", + "label": "Caret Square Right", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M48 32h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48zm140.485 355.515l123.029-123.029c4.686-4.686 4.686-12.284 0-16.971l-123.029-123.03c-7.56-7.56-20.485-2.206-20.485 8.485v246.059c0 10.691 12.926 16.045 20.485 8.486z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M176 354.9V157.1c0-10.7 13-16.1 20.5-8.5l98.3 98.9c4.7 4.7 4.7 12.2 0 16.9l-98.3 98.9c-7.5 7.7-20.5 2.3-20.5-8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" + } + } + }, + "caret-square-up": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "caret-square-o-up" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f151", + "label": "Caret Square Up", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 432V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm355.515-140.485l-123.03-123.03c-4.686-4.686-12.284-4.686-16.971 0L92.485 291.515c-7.56 7.56-2.206 20.485 8.485 20.485h246.059c10.691 0 16.045-12.926 8.486-20.485z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M322.9 304H125.1c-10.7 0-16.1-13-8.5-20.5l98.9-98.3c4.7-4.7 12.2-4.7 16.9 0l98.9 98.3c7.7 7.5 2.3 20.5-8.4 20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" + } + } + }, + "caret-up": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "triangle up" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0d8", + "label": "Caret Up", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z" + } + } + }, + "cart-arrow-down": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "shopping" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f218", + "label": "Shopping Cart Arrow Down", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z" + } + } + }, + "cart-plus": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "shopping" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f217", + "label": "Add to Shopping Cart", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM408 168h-48v-40c0-8.837-7.163-16-16-16h-16c-8.837 0-16 7.163-16 16v40h-48c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h48v40c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-40h48c8.837 0 16-7.163 16-16v-16c0-8.837-7.163-16-16-16z" + } + } + }, + "cc-amazon-pay": { + "changes": [ + "5.0.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f42d", + "label": "Amazon Pay Credit Card", + "svg": { + "brands": { + "last_modified": 1513713060430, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M124.7 201.8c.1-11.8 0-23.5 0-35.3v-35.3c0-1.3.4-2 1.4-2.7 11.5-8 24.1-12.1 38.2-11.1 12.5.9 22.7 7 28.1 21.7 3.3 8.9 4.1 18.2 4.1 27.7 0 8.7-.7 17.3-3.4 25.6-5.7 17.8-18.7 24.7-35.7 23.9-11.7-.5-21.9-5-31.4-11.7-.9-.8-1.4-1.6-1.3-2.8zm154.9 14.6c4.6 1.8 9.3 2 14.1 1.5 11.6-1.2 21.9-5.7 31.3-12.5.9-.6 1.3-1.3 1.3-2.5-.1-3.9 0-7.9 0-11.8 0-4-.1-8 0-12 0-1.4-.4-2-1.8-2.2-7-.9-13.9-2.2-20.9-2.9-7-.6-14-.3-20.8 1.9-6.7 2.2-11.7 6.2-13.7 13.1-1.6 5.4-1.6 10.8.1 16.2 1.6 5.5 5.2 9.2 10.4 11.2zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zm-207.5 23.9c.4 1.7.9 3.4 1.6 5.1 16.5 40.6 32.9 81.3 49.5 121.9 1.4 3.5 1.7 6.4.2 9.9-2.8 6.2-4.9 12.6-7.8 18.7-2.6 5.5-6.7 9.5-12.7 11.2-4.2 1.1-8.5 1.3-12.9.9-2.1-.2-4.2-.7-6.3-.8-2.8-.2-4.2 1.1-4.3 4-.1 2.8-.1 5.6 0 8.3.1 4.6 1.6 6.7 6.2 7.5 4.7.8 9.4 1.6 14.2 1.7 14.3.3 25.7-5.4 33.1-17.9 2.9-4.9 5.6-10.1 7.7-15.4 19.8-50.1 39.5-100.3 59.2-150.5.6-1.5 1.1-3 1.3-4.6.4-2.4-.7-3.6-3.1-3.7-5.6-.1-11.1 0-16.7 0-3.1 0-5.3 1.4-6.4 4.3-.4 1.1-.9 2.3-1.3 3.4l-29.1 83.7c-2.1 6.1-4.2 12.1-6.5 18.6-.4-.9-.6-1.4-.8-1.9-10.8-29.9-21.6-59.9-32.4-89.8-1.7-4.7-3.5-9.5-5.3-14.2-.9-2.5-2.7-4-5.4-4-6.4-.1-12.8-.2-19.2-.1-2.2 0-3.3 1.6-2.8 3.7zM242.4 206c1.7 11.7 7.6 20.8 18 26.6 9.9 5.5 20.7 6.2 31.7 4.6 12.7-1.9 23.9-7.3 33.8-15.5.4-.3.8-.6 1.4-1 .5 3.2.9 6.2 1.5 9.2.5 2.6 2.1 4.3 4.5 4.4 4.6.1 9.1.1 13.7 0 2.3-.1 3.8-1.6 4-3.9.1-.8.1-1.6.1-2.3v-88.8c0-3.6-.2-7.2-.7-10.8-1.6-10.8-6.2-19.7-15.9-25.4-5.6-3.3-11.8-5-18.2-5.9-3-.4-6-.7-9.1-1.1h-10c-.8.1-1.6.3-2.5.3-8.2.4-16.3 1.4-24.2 3.5-5.1 1.3-10 3.2-15 4.9-3 1-4.5 3.2-4.4 6.5.1 2.8-.1 5.6 0 8.3.1 4.1 1.8 5.2 5.7 4.1 6.5-1.7 13.1-3.5 19.7-4.8 10.3-1.9 20.7-2.7 31.1-1.2 5.4.8 10.5 2.4 14.1 7 3.1 4 4.2 8.8 4.4 13.7.3 6.9.2 13.9.3 20.8 0 .4-.1.7-.2 1.2-.4 0-.8 0-1.1-.1-8.8-2.1-17.7-3.6-26.8-4.1-9.5-.5-18.9.1-27.9 3.2-10.8 3.8-19.5 10.3-24.6 20.8-4.1 8.3-4.6 17-3.4 25.8zM98.7 106.9v175.3c0 .8 0 1.7.1 2.5.2 2.5 1.7 4.1 4.1 4.2 5.9.1 11.8.1 17.7 0 2.5 0 4-1.7 4.1-4.1.1-.8.1-1.7.1-2.5v-60.7c.9.7 1.4 1.2 1.9 1.6 15 12.5 32.2 16.6 51.1 12.9 17.1-3.4 28.9-13.9 36.7-29.2 5.8-11.6 8.3-24.1 8.7-37 .5-14.3-1-28.4-6.8-41.7-7.1-16.4-18.9-27.3-36.7-30.9-2.7-.6-5.5-.8-8.2-1.2h-7c-1.2.2-2.4.3-3.6.5-11.7 1.4-22.3 5.8-31.8 12.7-2 1.4-3.9 3-5.9 4.5-.1-.5-.3-.8-.4-1.2-.4-2.3-.7-4.6-1.1-6.9-.6-3.9-2.5-5.5-6.4-5.6h-9.7c-5.9-.1-6.9 1-6.9 6.8zM493.6 339c-2.7-.7-5.1 0-7.6 1-43.9 18.4-89.5 30.2-136.8 35.8-14.5 1.7-29.1 2.8-43.7 3.2-26.6.7-53.2-.8-79.6-4.3-17.8-2.4-35.5-5.7-53-9.9-37-8.9-72.7-21.7-106.7-38.8-8.8-4.4-17.4-9.3-26.1-14-3.8-2.1-6.2-1.5-8.2 2.1v1.7c1.2 1.6 2.2 3.4 3.7 4.8 36 32.2 76.6 56.5 122 72.9 21.9 7.9 44.4 13.7 67.3 17.5 14 2.3 28 3.8 42.2 4.5 3 .1 6 .2 9 .4.7 0 1.4.2 2.1.3h17.7c.7-.1 1.4-.3 2.1-.3 14.9-.4 29.8-1.8 44.6-4 21.4-3.2 42.4-8.1 62.9-14.7 29.6-9.6 57.7-22.4 83.4-40.1 2.8-1.9 5.7-3.8 8-6.2 4.3-4.4 2.3-10.4-3.3-11.9zm50.4-27.7c-.8-4.2-4-5.8-7.6-7-5.7-1.9-11.6-2.8-17.6-3.3-11-.9-22-.4-32.8 1.6-12 2.2-23.4 6.1-33.5 13.1-1.2.8-2.4 1.8-3.1 3-.6.9-.7 2.3-.5 3.4.3 1.3 1.7 1.6 3 1.5.6 0 1.2 0 1.8-.1l19.5-2.1c9.6-.9 19.2-1.5 28.8-.8 4.1.3 8.1 1.2 12 2.2 4.3 1.1 6.2 4.4 6.4 8.7.3 6.7-1.2 13.1-2.9 19.5-3.5 12.9-8.3 25.4-13.3 37.8-.3.8-.7 1.7-.8 2.5-.4 2.5 1 4 3.4 3.5 1.4-.3 3-1.1 4-2.1 3.7-3.6 7.5-7.2 10.6-11.2 10.7-13.8 17-29.6 20.7-46.6.7-3 1.2-6.1 1.7-9.1.2-4.7.2-9.6.2-14.5z" + } + } + }, + "cc-amex": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "amex" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f1f3", + "label": "American Express Credit Card", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M576 255.4c-37.9-.2-44.2-.9-54.5 5v-5c-45.3 0-53.5-1.7-64.9 5.2v-5.2h-78.2v5.1c-11.4-6.5-21.4-5.1-75.7-5.1v5.6c-6.3-3.7-14.5-5.6-24.3-5.6h-58c-3.5 3.8-12.5 13.7-15.7 17.2-12.7-14.1-10.5-11.6-15.5-17.2h-83.1v92.3h82c3.3-3.5 12.9-13.9 16.1-17.4 12.7 14.3 10.3 11.7 15.4 17.4h48.9c0-14.7.1-8.3.1-23 11.5.2 24.3-.2 34.3-6.2 0 13.9-.1 17.1-.1 29.2h39.6c0-18.5.1-7.4.1-25.3 6.2 0 7.7 0 9.4.1.1 1.3 0 0 0 25.2 152.8 0 145.9 1.1 156.7-4.5v4.5c34.8 0 54.8 2.2 67.5-6.1V432c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V228.3h26.6c4.2-10.1 2.2-5.3 6.4-15.3h19.2c4.2 10 2.2 5.2 6.4 15.3h52.9v-11.4c2.2 5 1.1 2.5 5.1 11.4h29.5c2.4-5.5 2.6-5.8 5.1-11.4v11.4h135.5v-25.1c6.4 0 8-.1 9.8.2 0 0-.2 10.9.1 24.8h66.5v-8.9c7.4 5.9 17.4 8.9 29.7 8.9h26.8c4.2-10.1 2.2-5.3 6.4-15.3h19c6.5 15 .2.5 6.6 15.3h52.8v-21.9c11.8 19.7 7.8 12.9 13.2 21.9h41.6v-92h-39.9v18.4c-12.2-20.2-6.3-10.4-11.2-18.4h-43.3v20.6c-6.2-14.6-4.6-10.8-8.8-20.6h-32.4c-.4 0-2.3.2-2.3-.3h-27.6c-12.8 0-23.1 3.2-30.7 9.3v-9.3h-39.9v5.3c-10.8-6.1-20.7-5.1-64.4-5.3-.1 0-11.6-.1-11.6 0h-103c-2.5 6.1-6.8 16.4-12.6 30-2.8-6-11-23.8-13.9-30h-46V157c-7.4-17.4-4.7-11-9-21.1H22.9c-3.4 7.9-13.7 32-23.1 53.9V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48v175.4zm-186.6-80.6c-.3.2-1.4 2.2-1.4 7.6 0 6 .9 7.7 1.1 7.9.2.1 1.1.5 3.4.5l7.3-16.9c-1.1 0-2.1-.1-3.1-.1-5.6 0-7 .7-7.3 1zm-19.9 130.9c9.2 3.3 11 9.5 11 18.4l-.1 13.8h-16.6l.1-11.5c0-11.8-3.8-13.8-14.8-13.8h-17.6l-.1 25.3h-16.6l.1-69.3h39.4c13 0 27.1 2.3 27.1 18.7-.1 7.6-4.2 15.3-11.9 18.4zm-6.3-15.4c0-6.4-5.6-7.4-10.7-7.4h-21v15.6h20.7c5.6 0 11-1.3 11-8.2zm181.7-7.1H575v-14.6h-32.9c-12.8 0-23.8 6.6-23.8 20.7 0 33 42.7 12.8 42.7 27.4 0 5.1-4.3 6.4-8.4 6.4h-32l-.1 14.8h32c8.4 0 17.6-1.8 22.5-8.9v-25.8c-10.5-13.8-39.3-1.3-39.3-13.5 0-5.8 4.6-6.5 9.2-6.5zm-99.2-.3v-14.3h-55.2l-.1 69.3h55.2l.1-14.3-38.6-.3v-13.8H445v-14.1h-37.8v-12.5h38.5zm42.2 40.1h-32.2l-.1 14.8h32.2c14.8 0 26.2-5.6 26.2-22 0-33.2-42.9-11.2-42.9-26.3 0-5.6 4.9-6.4 9.2-6.4h30.4v-14.6h-33.2c-12.8 0-23.5 6.6-23.5 20.7 0 33 42.7 12.5 42.7 27.4-.1 5.4-4.7 6.4-8.8 6.4zm-78.1-158.7c-17.4-.3-33.2-4.1-33.2 19.7 0 11.8 2.8 19.9 16.1 19.9h7.4l23.5-54.5h24.8l27.9 65.4v-65.4h25.3l29.1 48.1v-48.1h16.9v69H524l-31.2-51.9v51.9h-33.7l-6.6-15.3h-34.3l-6.4 15.3h-19.2c-22.8 0-33-11.8-33-34 0-23.3 10.5-35.3 34-35.3h16.1v15.2zm14.3 24.5h22.8l-11.2-27.6-11.6 27.6zm-72.6-39.6h-16.9v69.3h16.9v-69.3zm-38.1 37.3c9.5 3.3 11 9.2 11 18.4v13.5h-16.6c-.3-14.8 3.6-25.1-14.8-25.1h-18v25.1h-16.4v-69.3l39.1.3c13.3 0 27.4 2 27.4 18.4.1 8-4.3 15.7-11.7 18.7zm-6.7-15.3c0-6.4-5.6-7.4-10.7-7.4h-21v15.3h20.7c5.7 0 11-1.3 11-7.9zm-59.5-7.4v-14.6h-55.5v69.3h55.5v-14.3h-38.9v-13.8h37.8v-14.1h-37.8v-12.5h38.9zm-84.6 54.7v-54.2l-24 54.2H124l-24-54.2v54.2H66.2l-6.4-15.3H25.3l-6.4 15.3H1l29.7-69.3h24.5l28.1 65.7v-65.7h27.1l21.7 47 19.7-47h27.6v69.3h-16.8zM53.9 188.8l-11.5-27.6-11.2 27.6h22.7zm253 102.5c0 27.9-30.4 23.3-49.3 23.3l-.1 23.3h-32.2l-20.4-23-21.3 23h-65.4l.1-69.3h66.5l20.5 22.8 21-22.8H279c15.6 0 27.9 5.4 27.9 22.7zm-112.7 11.8l-17.9-20.2h-41.7v12.5h36.3v14.1h-36.3v13.8h40.6l19-20.2zM241 276l-25.3 27.4 25.3 28.1V276zm48.3 15.3c0-6.1-4.6-8.4-10.2-8.4h-21.5v17.6h21.2c5.9 0 10.5-2.8 10.5-9.2z" + } + } + }, + "cc-apple-pay": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f416", + "label": "Apple Pay Credit Card", + "svg": { + "brands": { + "last_modified": 1507669930671, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M302.2 218.4c0 17.2-10.5 27.1-29 27.1h-24.3v-54.2h24.4c18.4 0 28.9 9.8 28.9 27.1zm47.5 62.6c0 8.3 7.2 13.7 18.5 13.7 14.4 0 25.2-9.1 25.2-21.9v-7.7l-23.5 1.5c-13.3.9-20.2 5.8-20.2 14.4zM576 79v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM127.8 197.2c8.4.7 16.8-4.2 22.1-10.4 5.2-6.4 8.6-15 7.7-23.7-7.4.3-16.6 4.9-21.9 11.3-4.8 5.5-8.9 14.4-7.9 22.8zm60.6 74.5c-.2-.2-19.6-7.6-19.8-30-.2-18.7 15.3-27.7 16-28.2-8.8-13-22.4-14.4-27.1-14.7-12.2-.7-22.6 6.9-28.4 6.9-5.9 0-14.7-6.6-24.3-6.4-12.5.2-24.2 7.3-30.5 18.6-13.1 22.6-3.4 56 9.3 74.4 6.2 9.1 13.7 19.1 23.5 18.7 9.3-.4 13-6 24.2-6 11.3 0 14.5 6 24.3 5.9 10.2-.2 16.5-9.1 22.8-18.2 6.9-10.4 9.8-20.4 10-21zm135.4-53.4c0-26.6-18.5-44.8-44.9-44.8h-51.2v136.4h21.2v-46.6h29.3c26.8 0 45.6-18.4 45.6-45zm90 23.7c0-19.7-15.8-32.4-40-32.4-22.5 0-39.1 12.9-39.7 30.5h19.1c1.6-8.4 9.4-13.9 20-13.9 13 0 20.2 6 20.2 17.2v7.5l-26.4 1.6c-24.6 1.5-37.9 11.6-37.9 29.1 0 17.7 13.7 29.4 33.4 29.4 13.3 0 25.6-6.7 31.2-17.4h.4V310h19.6v-68zM516 210.9h-21.5l-24.9 80.6h-.4l-24.9-80.6H422l35.9 99.3-1.9 6c-3.2 10.2-8.5 14.2-17.9 14.2-1.7 0-4.9-.2-6.2-.3v16.4c1.2.4 6.5.5 8.1.5 20.7 0 30.4-7.9 38.9-31.8L516 210.9z" + } + } + }, + "cc-diners-club": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f24c", + "label": "Diner's Club Credit Card", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M239.7 79.9c-96.9 0-175.8 78.6-175.8 175.8 0 96.9 78.9 175.8 175.8 175.8 97.2 0 175.8-78.9 175.8-175.8 0-97.2-78.6-175.8-175.8-175.8zm-39.9 279.6c-41.7-15.9-71.4-56.4-71.4-103.8s29.7-87.9 71.4-104.1v207.9zm79.8.3V151.6c41.7 16.2 71.4 56.7 71.4 104.1s-29.7 87.9-71.4 104.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM329.7 448h-90.3c-106.2 0-193.8-85.5-193.8-190.2C45.6 143.2 133.2 64 239.4 64h90.3c105 0 200.7 79.2 200.7 193.8 0 104.7-95.7 190.2-200.7 190.2z" + } + } + }, + "cc-discover": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1f2", + "label": "Discover Credit Card", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M83 212.1c0 7.9-3.2 15.5-8.9 20.7-4.9 4.4-11.6 6.4-21.9 6.4H48V185h4.2c10.3 0 16.7 1.7 21.9 6.6 5.7 5 8.9 12.6 8.9 20.5zM504.8 184h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8 0-7.9-5.5-12.1-15.6-12.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM428 253h45.3v-13.8H444V217h28.3v-13.8H444V185h29.3v-14H428v82zm-86.2-82l35 84.2h8.6l35.5-84.2h-17.5l-22.2 55.2-21.9-55.2h-17.5zm-83 41.6c0 24.6 19.9 44.6 44.6 44.6 24.6 0 44.6-19.9 44.6-44.6 0-24.6-19.9-44.6-44.6-44.6-24.6 0-44.6 19.9-44.6 44.6zm-68-.5c0 32.5 33.6 52.5 63.3 38.2v-19c-19.3 19.3-46.8 5.8-46.8-19.2 0-23.7 26.7-39.1 46.8-19v-19c-30.2-15-63.3 6.8-63.3 38zm-33.9 28.3c-7.6 0-13.8-3.7-17.5-10.8l-10.3 9.9c17.8 26.1 56.6 18.2 56.6-11.3 0-13.1-5.4-19-23.6-25.6-9.6-3.4-12.3-5.9-12.3-10.3 0-8.7 14.5-14.1 24.9-2.5l8.4-10.8c-19.1-17.1-49.7-8.9-49.7 14.3 0 11.3 5.2 17.2 20.2 22.7 25.7 9.1 14.7 24.4 3.3 24.4zm-57.4-28.3c0-24.1-18-41.1-44.1-41.1H32v82h23.4c30.9 0 44.1-22.4 44.1-40.9zm23.4-41.1h-16v82h16v-82zM544 288c-33.3 20.8-226.4 124.4-416 160h401c8.2 0 15-6.8 15-15V288zm0-35l-25.9-34.5c12.1-2.5 18.7-10.6 18.7-23.2 0-28.5-30.3-24.4-52.9-24.4v82h16v-32.8h2.2l22.2 32.8H544z" + } + } + }, + "cc-jcb": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f24b", + "label": "JCB Credit Card", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M431.5 244.3V212c41.2 0 38.5.2 38.5.2 7.3 1.3 13.3 7.3 13.3 16 0 8.8-6 14.5-13.3 15.8-1.2.4-3.3.3-38.5.3zm42.8 20.2c-2.8-.7-3.3-.5-42.8-.5v35c39.6 0 40 .2 42.8-.5 7.5-1.5 13.5-8 13.5-17 0-8.7-6-15.5-13.5-17zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM182 192.3h-57c0 67.1 10.7 109.7-35.8 109.7-19.5 0-38.8-5.7-57.2-14.8v28c30 8.3 68 8.3 68 8.3 97.9 0 82-47.7 82-131.2zm178.5 4.5c-63.4-16-165-14.9-165 59.3 0 77.1 108.2 73.6 165 59.2V287C312.9 311.7 253 309 253 256s59.8-55.6 107.5-31.2v-28zM544 286.5c0-18.5-16.5-30.5-38-32v-.8c19.5-2.7 30.3-15.5 30.3-30.2 0-19-15.7-30-37-31 0 0 6.3-.3-120.3-.3v127.5h122.7c24.3.1 42.3-12.9 42.3-33.2z" + } + } + }, + "cc-mastercard": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1f1", + "label": "MasterCard Credit Card", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M482.9 410.3c0 6.8-4.6 11.7-11.2 11.7-6.8 0-11.2-5.2-11.2-11.7 0-6.5 4.4-11.7 11.2-11.7 6.6 0 11.2 5.2 11.2 11.7zm-310.8-11.7c-7.1 0-11.2 5.2-11.2 11.7 0 6.5 4.1 11.7 11.2 11.7 6.5 0 10.9-4.9 10.9-11.7-.1-6.5-4.4-11.7-10.9-11.7zm117.5-.3c-5.4 0-8.7 3.5-9.5 8.7h19.1c-.9-5.7-4.4-8.7-9.6-8.7zm107.8.3c-6.8 0-10.9 5.2-10.9 11.7 0 6.5 4.1 11.7 10.9 11.7 6.8 0 11.2-4.9 11.2-11.7 0-6.5-4.4-11.7-11.2-11.7zm105.9 26.1c0 .3.3.5.3 1.1 0 .3-.3.5-.3 1.1-.3.3-.3.5-.5.8-.3.3-.5.5-1.1.5-.3.3-.5.3-1.1.3-.3 0-.5 0-1.1-.3-.3 0-.5-.3-.8-.5-.3-.3-.5-.5-.5-.8-.3-.5-.3-.8-.3-1.1 0-.5 0-.8.3-1.1 0-.5.3-.8.5-1.1.3-.3.5-.3.8-.5.5-.3.8-.3 1.1-.3.5 0 .8 0 1.1.3.5.3.8.3 1.1.5s.2.6.5 1.1zm-2.2 1.4c.5 0 .5-.3.8-.3.3-.3.3-.5.3-.8 0-.3 0-.5-.3-.8-.3 0-.5-.3-1.1-.3h-1.6v3.5h.8V426h.3l1.1 1.4h.8l-1.1-1.3zM576 81v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V81c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM64 220.6c0 76.5 62.1 138.5 138.5 138.5 27.2 0 53.9-8.2 76.5-23.1-72.9-59.3-72.4-171.2 0-230.5-22.6-15-49.3-23.1-76.5-23.1-76.4-.1-138.5 62-138.5 138.2zm224 108.8c70.5-55 70.2-162.2 0-217.5-70.2 55.3-70.5 162.6 0 217.5zm-142.3 76.3c0-8.7-5.7-14.4-14.7-14.7-4.6 0-9.5 1.4-12.8 6.5-2.4-4.1-6.5-6.5-12.2-6.5-3.8 0-7.6 1.4-10.6 5.4V392h-8.2v36.7h8.2c0-18.9-2.5-30.2 9-30.2 10.2 0 8.2 10.2 8.2 30.2h7.9c0-18.3-2.5-30.2 9-30.2 10.2 0 8.2 10 8.2 30.2h8.2v-23zm44.9-13.7h-7.9v4.4c-2.7-3.3-6.5-5.4-11.7-5.4-10.3 0-18.2 8.2-18.2 19.3 0 11.2 7.9 19.3 18.2 19.3 5.2 0 9-1.9 11.7-5.4v4.6h7.9V392zm40.5 25.6c0-15-22.9-8.2-22.9-15.2 0-5.7 11.9-4.8 18.5-1.1l3.3-6.5c-9.4-6.1-30.2-6-30.2 8.2 0 14.3 22.9 8.3 22.9 15 0 6.3-13.5 5.8-20.7.8l-3.5 6.3c11.2 7.6 32.6 6 32.6-7.5zm35.4 9.3l-2.2-6.8c-3.8 2.1-12.2 4.4-12.2-4.1v-16.6h13.1V392h-13.1v-11.2h-8.2V392h-7.6v7.3h7.6V416c0 17.6 17.3 14.4 22.6 10.9zm13.3-13.4h27.5c0-16.2-7.4-22.6-17.4-22.6-10.6 0-18.2 7.9-18.2 19.3 0 20.5 22.6 23.9 33.8 14.2l-3.8-6c-7.8 6.4-19.6 5.8-21.9-4.9zm59.1-21.5c-4.6-2-11.6-1.8-15.2 4.4V392h-8.2v36.7h8.2V408c0-11.6 9.5-10.1 12.8-8.4l2.4-7.6zm10.6 18.3c0-11.4 11.6-15.1 20.7-8.4l3.8-6.5c-11.6-9.1-32.7-4.1-32.7 15 0 19.8 22.4 23.8 32.7 15l-3.8-6.5c-9.2 6.5-20.7 2.6-20.7-8.6zm66.7-18.3H408v4.4c-8.3-11-29.9-4.8-29.9 13.9 0 19.2 22.4 24.7 29.9 13.9v4.6h8.2V392zm33.7 0c-2.4-1.2-11-2.9-15.2 4.4V392h-7.9v36.7h7.9V408c0-11 9-10.3 12.8-8.4l2.4-7.6zm40.3-14.9h-7.9v19.3c-8.2-10.9-29.9-5.1-29.9 13.9 0 19.4 22.5 24.6 29.9 13.9v4.6h7.9v-51.7zm7.6-75.1v4.6h.8V302h1.9v-.8h-4.6v.8h1.9zm6.6 123.8c0-.5 0-1.1-.3-1.6-.3-.3-.5-.8-.8-1.1-.3-.3-.8-.5-1.1-.8-.5 0-1.1-.3-1.6-.3-.3 0-.8.3-1.4.3-.5.3-.8.5-1.1.8-.5.3-.8.8-.8 1.1-.3.5-.3 1.1-.3 1.6 0 .3 0 .8.3 1.4 0 .3.3.8.8 1.1.3.3.5.5 1.1.8.5.3 1.1.3 1.4.3.5 0 1.1 0 1.6-.3.3-.3.8-.5 1.1-.8.3-.3.5-.8.8-1.1.3-.6.3-1.1.3-1.4zm3.2-124.7h-1.4l-1.6 3.5-1.6-3.5h-1.4v5.4h.8v-4.1l1.6 3.5h1.1l1.4-3.5v4.1h1.1v-5.4zm4.4-80.5c0-76.2-62.1-138.3-138.5-138.3-27.2 0-53.9 8.2-76.5 23.1 72.1 59.3 73.2 171.5 0 230.5 22.6 15 49.5 23.1 76.5 23.1 76.4.1 138.5-61.9 138.5-138.4z" + } + } + }, + "cc-paypal": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1f4", + "label": "Paypal Credit Card", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5z" + } + } + }, + "cc-stripe": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1f5", + "label": "Stripe Credit Card", + "svg": { + "brands": { + "last_modified": 1510266191926, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M396.9 256.5c0 19.1-8.8 33.4-21.9 33.4-8.3 0-13.3-3-16.8-6.7l-.2-52.8c3.7-4.1 8.8-7 17-7 12.9-.1 21.9 14.5 21.9 33.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM122.2 281.1c0-42.3-54.3-34.7-54.3-50.7 0-5.5 4.6-7.7 12.1-7.7 10.8 0 24.5 3.3 35.3 9.1v-33.4c-11.8-4.7-23.5-6.5-35.3-6.5-28.8 0-48 15-48 40.2 0 39.3 54 32.9 54 49.9 0 6.6-5.7 8.7-13.6 8.7-11.8 0-26.9-4.9-38.9-11.3v33.9c13.2 5.7 26.6 8.1 38.8 8.1 29.6-.2 49.9-14.7 49.9-40.3zm68.9-86.9h-27v-30.8l-34.7 7.4-.2 113.9c0 21 15.8 36.5 36.9 36.5 11.6 0 20.2-2.1 24.9-4.7v-28.9c-4.5 1.8-27 8.3-27-12.6v-50.5h27v-30.3zm73.8 0c-4.7-1.7-21.3-4.8-29.6 10.5l-2.2-10.5h-30.7v124.5h35.5v-84.4c8.4-11 22.6-8.9 27.1-7.4v-32.7zm44.2 0h-35.7v124.5h35.7V194.2zm0-47.3l-35.7 7.6v28.9l35.7-7.6v-28.9zm122.7 108.8c0-41.3-23.5-63.8-48.4-63.8-13.9 0-22.9 6.6-27.8 11.1l-1.8-8.8h-31.3V360l35.5-7.5.1-40.2c5.1 3.7 12.7 9 25.1 9 25.4-.1 48.6-20.5 48.6-65.6zm112.2 1.2c0-36.4-17.6-65.1-51.3-65.1-33.8 0-54.3 28.7-54.3 64.9 0 42.8 24.2 64.5 58.8 64.5 17 0 29.7-3.9 39.4-9.2v-28.6c-9.7 4.9-20.8 7.9-34.9 7.9-13.8 0-26-4.9-27.6-21.5h69.5c.1-2 .4-9.4.4-12.9zm-51.6-36.1c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7z" + } + } + }, + "cc-visa": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1f0", + "label": "Visa Credit Card", + "svg": { + "brands": { + "last_modified": 1505492030000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M470.1 231.3s7.6 37.2 9.3 45H446c3.3-8.9 16-43.5 16-43.5-.2.3 3.3-9.1 5.3-14.9l2.8 13.4zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM152.5 331.2L215.7 176h-42.5l-39.3 106-4.3-21.5-14-71.4c-2.3-9.9-9.4-12.7-18.2-13.1H32.7l-.7 3.1c15.8 4 29.9 9.8 42.2 17.1l35.8 135h42.5zm94.4.2L272.1 176h-40.2l-25.1 155.4h40.1zm139.9-50.8c.2-17.7-10.6-31.2-33.7-42.3-14.1-7.1-22.7-11.9-22.7-19.2.2-6.6 7.3-13.4 23.1-13.4 13.1-.3 22.7 2.8 29.9 5.9l3.6 1.7 5.5-33.6c-7.9-3.1-20.5-6.6-36-6.6-39.7 0-67.6 21.2-67.8 51.4-.3 22.3 20 34.7 35.2 42.2 15.5 7.6 20.8 12.6 20.8 19.3-.2 10.4-12.6 15.2-24.1 15.2-16 0-24.6-2.5-37.7-8.3l-5.3-2.5-5.6 34.9c9.4 4.3 26.8 8.1 44.8 8.3 42.2.1 69.7-20.8 70-53zM528 331.4L495.6 176h-31.1c-9.6 0-16.9 2.8-21 12.9l-59.7 142.5H426s6.9-19.2 8.4-23.3H486c1.2 5.5 4.8 23.3 4.8 23.3H528z" + } + } + }, + "centercode": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f380", + "label": "Centercode", + "svg": { + "brands": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M329.2 268.6c-3.8 35.2-35.4 60.6-70.6 56.8-35.2-3.8-60.6-35.4-56.8-70.6 3.8-35.2 35.4-60.6 70.6-56.8 35.1 3.8 60.6 35.4 56.8 70.6zm-85.8 235.1C96.7 496-8.2 365.5 10.1 224.3c11.2-86.6 65.8-156.9 139.1-192 161-77.1 349.7 37.4 354.7 216.6 4.1 147-118.4 262.2-260.5 254.8zm179.9-180c27.9-118-160.5-205.9-237.2-234.2-57.5 56.3-69.1 188.6-33.8 344.4 68.8 15.8 169.1-26.4 271-110.2z" + } + } + }, + "certificate": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "badge", + "star" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0a3", + "label": "certificate", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z" + } + } + }, + "chalkboard": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "blackboard", + "learning", + "school", + "teaching", + "whiteboard", + "writing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f51b", + "label": "Chalkboard", + "svg": { + "solid": { + "last_modified": 1525967154565, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M96 64h448v352h64V40c0-22.06-17.94-40-40-40H72C49.94 0 32 17.94 32 40v376h64V64zm528 384H480v-64H288v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" + } + } + }, + "chalkboard-teacher": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "blackboard", + "instructor", + "learning", + "professor", + "school", + "whiteboard", + "writing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f51c", + "label": "Chalkboard Teacher", + "svg": { + "solid": { + "last_modified": 1525967154564, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M208 352c-2.39 0-4.78.35-7.06 1.09C187.98 357.3 174.35 360 160 360c-14.35 0-27.98-2.7-40.95-6.91-2.28-.74-4.66-1.09-7.05-1.09C49.94 352-.33 402.48 0 464.62.14 490.88 21.73 512 48 512h224c26.27 0 47.86-21.12 48-47.38.33-62.14-49.94-112.62-112-112.62zm-48-32c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM592 0H208c-26.47 0-48 22.25-48 49.59V96c23.42 0 45.1 6.78 64 17.8V64h352v288h-64v-64H384v64h-76.24c19.1 16.69 33.12 38.73 39.69 64H592c26.47 0 48-22.25 48-49.59V49.59C640 22.25 618.47 0 592 0z" + } + } + }, + "chart-area": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analytics", + "area-chart", + "graph" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1fe", + "label": "Area Chart", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z" + } + } + }, + "chart-bar": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analytics", + "bar-chart", + "graph" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f080", + "label": "Bar Chart", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zm-308-44v-72c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V204c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V108c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M500 400c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v324h452zm-356-60v-72c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V140c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V204c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V108c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12z" + } + } + }, + "chart-line": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "activity", + "analytics", + "dashboard", + "graph", + "line-chart" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f201", + "label": "Line Chart", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM456 96H344c-21.4 0-32.1 25.9-17 41l32.9 32.9-72 72.9-55.6-55.6c-4.7-4.7-12.2-4.7-16.9 0L96.4 305c-4.7 4.6-4.8 12.2-.2 16.9l28.5 29.4c4.7 4.8 12.4 4.9 17.1.1l82.1-82.1 55.5 55.5c4.7 4.7 12.3 4.7 17 0l109.2-109.2L439 249c15.1 15.1 41 4.4 41-17V120c0-13.3-10.7-24-24-24z" + } + } + }, + "chart-pie": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analytics", + "graph", + "pie-chart" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f200", + "label": "Pie Chart", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M288 12.3V240h227.7c6.9 0 12.3-5.8 12-12.7-6.4-122.4-104.5-220.6-227-227-6.9-.3-12.7 5.1-12.7 12zM552.7 288c6.9 0 12.3 5.8 12 12.7-2.8 53.2-23.2 105.6-61.2 147.8-4.6 5.1-12.6 5.4-17.5.5L325 288h227.7zM401 433c4.8 4.8 4.7 12.8-.4 17.3-42.6 38.4-99 61.7-160.8 61.7C107.6 511.9-.2 403.8 0 271.5.2 143.4 100.8 38.9 227.3 32.3c6.9-.4 12.7 5.1 12.7 12V272l161 161z" + } + } + }, + "check": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "checkmark", + "confirm", + "correct", + "done", + "notice", + "notification", + "notify", + "ok", + "select", + "success", + "tick", + "todo", + "yes" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f00c", + "label": "Check", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" + } + } + }, + "check-circle": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "confirm", + "correct", + "done", + "ok", + "select", + "success", + "todo", + "yes" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f058", + "label": "Check Circle", + "svg": { + "solid": { + "last_modified": 1521653821446, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z" + } + } + }, + "check-double": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "checkmark", + "confirm", + "correct", + "done", + "notice", + "notification", + "notify", + "ok", + "select", + "success", + "tick", + "todo" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f560", + "label": "Check Double", + "svg": { + "solid": { + "last_modified": 1529520111651, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504.5 171.95l-36.2-36.41c-10-10.05-26.21-10.05-36.2 0L192 377.02 79.9 264.28c-10-10.06-26.21-10.06-36.2 0L7.5 300.69c-10 10.05-10 26.36 0 36.41l166.4 167.36c10 10.06 26.21 10.06 36.2 0l294.4-296.09c10-10.06 10-26.36 0-36.42zM166.57 282.71c6.84 7.02 18.18 7.02 25.21.18L403.85 72.62c7.02-6.84 7.02-18.18.18-25.21L362.08 5.29c-6.84-7.02-18.18-7.02-25.21-.18L179.71 161.19l-68.23-68.77c-6.84-7.02-18.18-7.02-25.2-.18l-42.13 41.77c-7.02 6.84-7.02 18.18-.18 25.2l122.6 123.5z" + } + } + }, + "check-square": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "checkmark", + "confirm", + "correct", + "done", + "ok", + "select", + "success", + "todo", + "yes" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f14a", + "label": "Check Square", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm0 400H48V80h352v352zm-35.864-241.724L191.547 361.48c-4.705 4.667-12.303 4.637-16.97-.068l-90.781-91.516c-4.667-4.705-4.637-12.303.069-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l59.792 60.277 141.352-140.216c4.705-4.667 12.303-4.637 16.97.068l22.536 22.718c4.667 4.706 4.637 12.304-.068 16.971z" + } + } + }, + "chess": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f439", + "label": "Chess", + "svg": { + "solid": { + "last_modified": 1518899527992, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M199.821 217.633a6 6 0 0 1 6 6l-.001 20.766a6 6 0 0 1-6 6h-25.805c0 31.715-2.153 96.201 17.398 153.229H64.597C84.54 345.452 82.02 279.245 82.02 250.399H56.183a6 6 0 0 1-6-6l.002-20.766a6 6 0 0 1 6-6h143.636zM41.554 115.088l34.58 95.071h103.734l34.572-95.072c2.846-7.826-2.95-16.101-11.278-16.101H152v-30.22h21.57a6 6 0 0 0 6-6V40.383a6 6 0 0 0-6-6h-28.367V6a6 6 0 0 0-6-6H116.82a6 6 0 0 0-6 6v28.383H82.421a6 6 0 0 0-6 6v22.383a6 6 0 0 0 6 6H104v30.219H52.831c-8.328.001-14.124 8.276-11.277 16.103zM222.678 445.17v-28.067a6 6 0 0 0-6-6H39.322a6 6 0 0 0-6 6v28.067l-22.148 14.164a6 6 0 0 0-2.767 5.055V506a6 6 0 0 0 6 6h227.187a6 6 0 0 0 6-6v-41.612a6 6 0 0 0-2.767-5.055l-22.149-14.163zm90.578-144.225l24.88 16.963c.09 18.124-.167 63.904-11.905 114.522h147.526c-11.713-50.475-11.969-96.324-11.882-114.537l24.859-16.949a3.856 3.856 0 0 0 1.684-3.187v-69.901a3.857 3.857 0 0 0-3.857-3.857h-27.655a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.858-3.857h-52.918a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.857-3.857H315.43a3.857 3.857 0 0 0-3.857 3.857v69.901a3.855 3.855 0 0 0 1.683 3.188zm71.585 51.906c0-8.372 6.787-15.158 15.159-15.158s15.158 6.787 15.158 15.158v30.318h-30.317v-30.318zM504.62 470.059l-13.664-10.639v-15.552a3.857 3.857 0 0 0-3.857-3.857H312.915a3.857 3.857 0 0 0-3.857 3.857v15.552l-13.677 10.639a3.857 3.857 0 0 0-1.488 3.044v35.039a3.857 3.857 0 0 0 3.857 3.857h204.5a3.857 3.857 0 0 0 3.857-3.857v-35.04a3.859 3.859 0 0 0-1.487-3.043z" + } + } + }, + "chess-bishop": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f43a", + "label": "Chess Bishop", + "svg": { + "solid": { + "last_modified": 1518899527988, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M123.158 77.881C107.369 72.53 96 57.597 96 40c0-22.091 17.909-40 40-40h47.796c22.091 0 40 17.909 40 40 0 17.541-11.295 32.434-27.005 37.829 23.993 16.657 48.577 46.839 68.703 82.05L144.929 280.443a6 6 0 0 0 0 8.485l14.142 14.142a6 6 0 0 0 8.485 0L280.9 189.726c17.758 38.297 29.371 79.443 29.371 114.273 0 53.786-22.897 75.788-58.446 86.033V448H68.174v-57.97C32.631 379.784 9.739 357.781 9.739 304c0-78.029 58.281-187.766 113.419-226.119zM320 500v-24c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12z" + } + } + }, + "chess-board": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f43c", + "label": "Chess Board", + "svg": { + "solid": { + "last_modified": 1518899527988, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 256v64h-64v-64h64zm0-256h-64v64h64V0zm0 256h64v-64h-64v64zM384 0h-64v64h64V0zm0 512h64v-64h-64v64zm128-64v-64h-64v64h64zm-384 64h64v-64h-64v64zm0-512H64v64h64V0zm384 192v-64h-64v64h64zm0 128v-64h-64v64h64zM0 512h64v-64H0v64zM0 64v64h64V64H0zm0 128v64h64v-64H0zm0 128v64h64v-64H0zm256 192h64v-64h-64v64zm-64-128v64h64v-64h-64zm64-192v-64h-64v64h64zM64 384v64h64v-64H64zm64-128H64v64h64v-64zm256 128h64v-64h-64v64zM512 0h-64v64h64V0zM384 256h64v-64h-64v64zm0-192v64h64V64h-64zm-64 320v64h64v-64h-64zm-192-64v64h64v-64h-64zm128 0v64h64v-64h-64zm-64-128h-64v64h64v-64zm-64-64H64v64h64v-64zm192 192h64v-64h-64v64zM192 128V64h-64v64h64zm128 0V64h-64v64h64zm0 64h64v-64h-64v64z" + } + } + }, + "chess-king": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f43f", + "label": "Chess King", + "svg": { + "solid": { + "last_modified": 1518899527989, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M416 476v24c0 6.627-5.373 12-12 12H44c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12zm-8.033-324H248v-48h50a6 6 0 0 0 6-6V62a6 6 0 0 0-6-6h-50V6a6 6 0 0 0-6-6h-36a6 6 0 0 0-6 6v50h-50a6 6 0 0 0-6 6v36a6 6 0 0 0 6 6h50v48H40.033c-27.574 0-46.879 27.244-37.738 53.259L87.582 448h272.836l85.287-242.741C454.846 179.244 435.541 152 407.967 152z" + } + } + }, + "chess-knight": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f441", + "label": "Chess Knight", + "svg": { + "solid": { + "last_modified": 1518899527990, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M352 224v224H32v-46.557c0-30.302 17.12-58.003 44.223-71.554l57.243-28.622A48 48 0 0 0 160 258.334V208l-22.127 11.063a23.996 23.996 0 0 0-12.55 15.645l-11.835 47.338a12 12 0 0 1-7.185 8.231l-29.601 11.84a11.998 11.998 0 0 1-9.33-.176L7.126 275.167A12 12 0 0 1 0 264.201v-158.26c0-6.365 2.529-12.47 7.03-16.971L16 80 1.789 51.578A16.937 16.937 0 0 1 0 44c0-6.627 5.373-12 12-12h148c106.039 0 192 85.961 192 192zm20 240H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12zM52 128c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z" + } + } + }, + "chess-pawn": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f443", + "label": "Chess Pawn", + "svg": { + "solid": { + "last_modified": 1518899527990, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M264 448H56s60-42.743 60-176H84c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h40.209C95.721 210.56 76 181.588 76 148c0-46.392 37.608-84 84-84s84 37.608 84 84c0 33.588-19.721 62.56-48.209 76H236c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12h-32c0 133.257 60 176 60 176zm28 16H28c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h264c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12z" + } + } + }, + "chess-queen": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f445", + "label": "Chess Queen", + "svg": { + "solid": { + "last_modified": 1518899527991, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M436 512H76c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12zM255.579 0c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zm204.568 154.634c-5.768-3.045-12.916-.932-16.082 4.77-8.616 15.516-22.747 37.801-44.065 37.801-28.714 0-30.625-19.804-31.686-57.542-.183-6.492-5.501-11.664-11.995-11.664h-41.006c-5.175 0-9.754 3.328-11.388 8.238-8.89 26.709-26.073 40.992-47.925 40.992s-39.034-14.283-47.925-40.992c-1.634-4.91-6.213-8.238-11.388-8.238h-41.005c-6.495 0-11.813 5.174-11.995 11.667-1.052 37.642-2.934 57.539-31.688 57.539-20.691 0-33.817-20.224-44.425-38.025-3.266-5.48-10.258-7.431-15.899-4.453l-39.179 20.679a12 12 0 0 0-5.51 15.145L112 448h288l105.014-257.448a12 12 0 0 0-5.51-15.145l-39.357-20.773z" + } + } + }, + "chess-rook": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f447", + "label": "Chess Rook", + "svg": { + "solid": { + "last_modified": 1518899527992, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M81.241 215.027C80.957 258.92 77.411 348.076 48 448h287.982c-29.4-99.604-32.936-188.912-33.221-232.975l45.418-42.312a11.998 11.998 0 0 0 3.82-8.78V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v44h-48V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v44H96V44c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v119.932c0 3.33 1.384 6.51 3.82 8.78l45.421 42.315zM160 256c0-17.673 14.327-32 32-32 17.673 0 32 14.327 32 32v64.004h-64V256zm224 220v24c0 6.627-5.373 12-12 12H12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12z" + } + } + }, + "chevron-circle-down": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "dropdown", + "menu", + "more" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f13a", + "label": "Chevron Circle Down", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM273 369.9l135.5-135.5c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L256 285.1 154.4 183.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L239 369.9c9.4 9.4 24.6 9.4 34 0z" + } + } + }, + "chevron-circle-left": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "back", + "previous" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f137", + "label": "Chevron Circle Left", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z" + } + } + }, + "chevron-circle-right": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "forward", + "next" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f138", + "label": "Chevron Circle Right", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z" + } + } + }, + "chevron-circle-up": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f139", + "label": "Chevron Circle Up", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm231-113.9L103.5 277.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L256 226.9l101.6 101.6c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L273 142.1c-9.4-9.4-24.6-9.4-34 0z" + } + } + }, + "chevron-down": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f078", + "label": "chevron-down", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z" + } + } + }, + "chevron-left": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "bracket", + "previous" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f053", + "label": "chevron-left", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z" + } + } + }, + "chevron-right": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bracket", + "forward", + "next" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f054", + "label": "chevron-right", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z" + } + } + }, + "chevron-up": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f077", + "label": "chevron-up", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z" + } + } + }, + "child": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f1ae", + "label": "Child", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M120 72c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.764-32.235 72-72 72s-72-32.236-72-72zm254.627 1.373c-12.496-12.497-32.758-12.497-45.254 0L242.745 160H141.254L54.627 73.373c-12.496-12.497-32.758-12.497-45.254 0-12.497 12.497-12.497 32.758 0 45.255L104 213.254V480c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V368h16v112c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V213.254l94.627-94.627c12.497-12.497 12.497-32.757 0-45.254z" + } + } + }, + "chrome": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f268", + "label": "Chrome", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M131.5 217.5L55.1 100.1c47.6-59.2 119-91.8 192-92.1 42.3-.3 85.5 10.5 124.8 33.2 43.4 25.2 76.4 61.4 97.4 103L264 133.4c-58.1-3.4-113.4 29.3-132.5 84.1zm32.9 38.5c0 46.2 37.4 83.6 83.6 83.6s83.6-37.4 83.6-83.6-37.4-83.6-83.6-83.6-83.6 37.3-83.6 83.6zm314.9-89.2L339.6 174c37.9 44.3 38.5 108.2 6.6 157.2L234.1 503.6c46.5 2.5 94.4-7.7 137.8-32.9 107.4-62 150.9-192 107.4-303.9zM133.7 303.6L40.4 120.1C14.9 159.1 0 205.9 0 256c0 124 90.8 226.7 209.5 244.9l63.7-124.8c-57.6 10.8-113.2-20.8-139.5-72.5z" + } + } + }, + "church": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "community", + "religion" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f51d", + "label": "Church", + "svg": { + "solid": { + "last_modified": 1525967154565, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M464.46 246.68L352 179.2V128h48c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-48V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v48h-48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v51.2l-112.46 67.48A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.65-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.54A32.024 32.024 0 0 0 0 395.96zm620.61-29.42L512 320v192h112c8.84 0 16-7.16 16-16V395.96c0-12.8-7.63-24.37-19.39-29.42z" + } + } + }, + "circle": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "circle-thin", + "dot", + "notification" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f111", + "label": "Circle", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z" + } + } + }, + "circle-notch": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "circle-o-notch" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1ce", + "label": "Circle Notched", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M288 39.056v16.659c0 10.804 7.281 20.159 17.686 23.066C383.204 100.434 440 171.518 440 256c0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-84.47 56.786-155.564 134.312-177.219C216.719 75.874 224 66.517 224 55.712V39.064c0-15.709-14.834-27.153-30.046-23.234C86.603 43.482 7.394 141.206 8.003 257.332c.72 137.052 111.477 246.956 248.531 246.667C393.255 503.711 504 392.788 504 256c0-115.633-79.14-212.779-186.211-240.236C302.678 11.889 288 23.456 288 39.056z" + } + } + }, + "clipboard": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "paste" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f328", + "label": "Clipboard", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M336 64h-80c0-35.29-28.71-64-64-64s-64 28.71-64 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h42v36c0 6.627 5.373 12 12 12h168c6.627 0 12-5.373 12-12v-36h42a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zM192 40c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24" + } + } + }, + "clipboard-check": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "confirm", + "done", + "ok", + "select", + "success", + "todo", + "yes" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f46c", + "label": "Clipboard Check", + "svg": { + "solid": { + "last_modified": 1521653821446, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm121.2 231.8l-143 141.8c-4.7 4.7-12.3 4.6-17-.1l-82.6-83.3c-4.7-4.7-4.6-12.3.1-17L99.1 285c4.7-4.7 12.3-4.6 17 .1l46 46.4 106-105.2c4.7-4.7 12.3-4.6 17 .1l28.2 28.4c4.7 4.8 4.6 12.3-.1 17z" + } + } + }, + "clipboard-list": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "intinerary", + "ol", + "schedule", + "todo", + "ul" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f46d", + "label": "Clipboard List", + "svg": { + "solid": { + "last_modified": 1521653821446, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM96 424c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm96-192c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm128 368c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z" + } + } + }, + "clock": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "date", + "late", + "schedule", + "timer", + "timestamp", + "watch" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f017", + "label": "Clock", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm57.1 350.1L224.9 294c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v137.7l63.5 46.2c5.4 3.9 6.5 11.4 2.6 16.8l-28.2 38.8c-3.9 5.3-11.4 6.5-16.8 2.6z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z" + } + } + }, + "clone": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "copy", + "duplicate" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f24d", + "label": "Clone", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 0H144c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h320c26.51 0 48-21.49 48-48v-48h48c26.51 0 48-21.49 48-48V48c0-26.51-21.49-48-48-48zM362 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h42v224c0 26.51 21.49 48 48 48h224v42a6 6 0 0 1-6 6zm96-96H150a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h308a6 6 0 0 1 6 6v308a6 6 0 0 1-6 6z" + } + } + }, + "closed-captioning": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cc" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f20a", + "label": "Closed Captioning", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM218.1 287.7c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2.1 48 51.1 70.5 92.3 32.6zm190.4 0c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.5 56.9-172.7 32.1-172.7-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 222.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 336H54c-3.3 0-6-2.7-6-6V118c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v276c0 3.3-2.7 6-6 6zm-211.1-85.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7zm190.4 0c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.9-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 220.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7z" + } + } + }, + "cloud": { + "changes": [ + "2", + "5.0.0", + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "save" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0c2", + "label": "Cloud", + "svg": { + "solid": { + "last_modified": 1525209365067, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z" + } + } + }, + "cloud-download-alt": { + "changes": [ + "5.0.0", + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "cloud-download" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f381", + "label": "Alternate Cloud Download", + "svg": { + "solid": { + "last_modified": 1525209365065, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z" + } + } + }, + "cloud-upload-alt": { + "changes": [ + "5.0.0", + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "cloud-upload" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f382", + "label": "Alternate Cloud Upload", + "svg": { + "solid": { + "last_modified": 1525209365066, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z" + } + } + }, + "cloudscale": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f383", + "label": "cloudscale.ch", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M318.1 154l-9.4 7.6c-22.5-19.3-51.5-33.6-83.3-33.6C153.8 128 96 188.8 96 260.3c0 6.6.4 13.1 1.4 19.4-2-56 41.8-97.4 92.6-97.4 24.2 0 46.2 9.4 62.6 24.7l-25.2 20.4c-8.3-.9-16.8 1.8-23.1 8.1-11.1 11-11.1 28.9 0 40 11.1 11 28.9 11 40 0 6.3-6.3 9-14.9 8.1-23.1l75.2-88.8c6.3-6.5-3.3-15.9-9.5-9.6zm-83.8 111.5c-5.6 5.5-14.6 5.5-20.2 0-5.6-5.6-5.6-14.6 0-20.2s14.6-5.6 20.2 0 5.6 14.7 0 20.2zM224 32C100.5 32 0 132.5 0 256s100.5 224 224 224 224-100.5 224-224S347.5 32 224 32zm0 384c-88.2 0-160-71.8-160-160S135.8 96 224 96s160 71.8 160 160-71.8 160-160 160z" + } + } + }, + "cloudsmith": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f384", + "label": "Cloudsmith", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "332", + "512" + ], + "width": 332, + "height": 512, + "path": "M332.5 419.9c0 46.4-37.6 84.1-84 84.1s-84-37.7-84-84.1 37.6-84 84-84 84 37.6 84 84zm-84-243.9c46.4 0 80-37.6 80-84s-33.6-84-80-84-88 37.6-88 84-29.6 76-76 76-84 41.6-84 88 37.6 80 84 80 84-33.6 84-80 33.6-80 80-80z" + } + } + }, + "cloudversify": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f385", + "label": "cloudversify", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "616", + "512" + ], + "width": 616, + "height": 512, + "path": "M148.6 304c8.2 68.5 67.4 115.5 146 111.3 51.2 43.3 136.8 45.8 186.4-5.6 69.2 1.1 118.5-44.6 131.5-99.5 14.8-62.5-18.2-132.5-92.1-155.1-33-88.1-131.4-101.5-186.5-85-57.3 17.3-84.3 53.2-99.3 109.7-7.8 2.7-26.5 8.9-45 24.1 11.7 0 15.2 8.9 15.2 19.5v20.4c0 10.7-8.7 19.5-19.5 19.5h-20.2c-10.7 0-19.5-6-19.5-16.7V240H98.8C95 240 88 244.3 88 251.9v40.4c0 6.4 5.3 11.8 11.7 11.8h48.9zm227.4 8c-10.7 46.3 21.7 72.4 55.3 86.8C324.1 432.6 259.7 348 296 288c-33.2 21.6-33.7 71.2-29.2 92.9-17.9-12.4-53.8-32.4-57.4-79.8-3-39.9 21.5-75.7 57-93.9C297 191.4 369.9 198.7 400 248c-14.1-48-53.8-70.1-101.8-74.8 30.9-30.7 64.4-50.3 114.2-43.7 69.8 9.3 133.2 82.8 67.7 150.5 35-16.3 48.7-54.4 47.5-76.9l10.5 19.6c11.8 22 15.2 47.6 9.4 72-9.2 39-40.6 68.8-79.7 76.5-32.1 6.3-83.1-5.1-91.8-59.2zM128 208H88.2c-8.9 0-16.2-7.3-16.2-16.2v-39.6c0-8.9 7.3-16.2 16.2-16.2H128c8.9 0 16.2 7.3 16.2 16.2v39.6c0 8.9-7.3 16.2-16.2 16.2zM10.1 168C4.5 168 0 163.5 0 157.9v-27.8c0-5.6 4.5-10.1 10.1-10.1h27.7c5.5 0 10.1 4.5 10.1 10.1v27.8c0 5.6-4.5 10.1-10.1 10.1H10.1zM168 142.7v-21.4c0-5.1 4.2-9.3 9.3-9.3h21.4c5.1 0 9.3 4.2 9.3 9.3v21.4c0 5.1-4.2 9.3-9.3 9.3h-21.4c-5.1 0-9.3-4.2-9.3-9.3zM56 235.5v25c0 6.3-5.1 11.5-11.4 11.5H19.4C13.1 272 8 266.8 8 260.5v-25c0-6.3 5.1-11.5 11.4-11.5h25.1c6.4 0 11.5 5.2 11.5 11.5z" + } + } + }, + "cocktail": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "drink" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f561", + "label": "Cocktail", + "svg": { + "solid": { + "last_modified": 1529520111652, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M296 464h-56V338.78l168.74-168.73c15.52-15.52 4.53-42.05-17.42-42.05H24.68c-21.95 0-32.94 26.53-17.42 42.05L176 338.78V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM432 0c-62.61 0-115.35 40.2-135.18 96h52.54c16.65-28.55 47.27-48 82.64-48 52.93 0 96 43.06 96 96s-43.07 96-96 96c-14.04 0-27.29-3.2-39.32-8.64l-35.26 35.26C379.23 279.92 404.59 288 432 288c79.53 0 144-64.47 144-144S511.53 0 432 0z" + } + } + }, + "code": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "brackets", + "html" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f121", + "label": "Code", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z" + } + } + }, + "code-branch": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "branch", + "code-fork", + "fork", + "git", + "github", + "rebase", + "svn", + "vcs", + "version" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f126", + "label": "Code Branch", + "svg": { + "solid": { + "last_modified": 1502809851000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z" + } + } + }, + "codepen": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1cb", + "label": "Codepen", + "svg": { + "brands": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M502.285 159.704l-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285zM278 63.131l172.286 114.858-76.857 51.429L278 165.703V63.131zm-44 0v102.572l-95.429 63.715-76.857-51.429L234 63.131zM44 219.132l55.143 36.857L44 292.846v-73.714zm190 229.715L61.714 333.989l76.857-51.429L234 346.275v102.572zm22-140.858l-77.715-52 77.715-52 77.715 52-77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429L278 448.847zm190-156.001l-55.143-36.857L468 219.132v73.714z" + } + } + }, + "codiepie": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f284", + "label": "Codie Pie", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "472", + "512" + ], + "width": 472, + "height": 512, + "path": "M422.5 202.9c30.7 0 33.5 53.1-.3 53.1h-10.8v44.3h-26.6v-97.4h37.7zM472 352.6C429.9 444.5 350.4 504 248 504 111 504 0 393 0 256S111 8 248 8c97.4 0 172.8 53.7 218.2 138.4l-186 108.8L472 352.6zm-38.5 12.5l-60.3-30.7c-27.1 44.3-70.4 71.4-122.4 71.4-82.5 0-149.2-66.7-149.2-148.9 0-82.5 66.7-149.2 149.2-149.2 48.4 0 88.9 23.5 116.9 63.4l59.5-34.6c-40.7-62.6-104.7-100-179.2-100-121.2 0-219.5 98.3-219.5 219.5S126.8 475.5 248 475.5c78.6 0 146.5-42.1 185.5-110.4z" + } + } + }, + "coffee": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "breakfast", + "cafe", + "drink", + "morning", + "mug", + "tea" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0f4", + "label": "Coffee", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z" + } + } + }, + "cog": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "settings" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f013", + "label": "cog", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M444.788 291.1l42.616 24.599c4.867 2.809 7.126 8.618 5.459 13.985-11.07 35.642-29.97 67.842-54.689 94.586a12.016 12.016 0 0 1-14.832 2.254l-42.584-24.595a191.577 191.577 0 0 1-60.759 35.13v49.182a12.01 12.01 0 0 1-9.377 11.718c-34.956 7.85-72.499 8.256-109.219.007-5.49-1.233-9.403-6.096-9.403-11.723v-49.184a191.555 191.555 0 0 1-60.759-35.13l-42.584 24.595a12.016 12.016 0 0 1-14.832-2.254c-24.718-26.744-43.619-58.944-54.689-94.586-1.667-5.366.592-11.175 5.459-13.985L67.212 291.1a193.48 193.48 0 0 1 0-70.199l-42.616-24.599c-4.867-2.809-7.126-8.618-5.459-13.985 11.07-35.642 29.97-67.842 54.689-94.586a12.016 12.016 0 0 1 14.832-2.254l42.584 24.595a191.577 191.577 0 0 1 60.759-35.13V25.759a12.01 12.01 0 0 1 9.377-11.718c34.956-7.85 72.499-8.256 109.219-.007 5.49 1.233 9.403 6.096 9.403 11.723v49.184a191.555 191.555 0 0 1 60.759 35.13l42.584-24.595a12.016 12.016 0 0 1 14.832 2.254c24.718 26.744 43.619 58.944 54.689 94.586 1.667 5.366-.592 11.175-5.459 13.985L444.788 220.9a193.485 193.485 0 0 1 0 70.2zM336 256c0-44.112-35.888-80-80-80s-80 35.888-80 80 35.888 80 80 80 80-35.888 80-80z" + } + } + }, + "cogs": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "gears", + "settings" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f085", + "label": "cogs", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z" + } + } + }, + "coins": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f51e", + "label": "Coins", + "svg": { + "solid": { + "last_modified": 1525967154565, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z" + } + } + }, + "columns": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dashboard", + "panes", + "split" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0db", + "label": "Columns", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z" + } + } + }, + "comment": { + "changes": [ + "1", + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "chat", + "conversation", + "feedback", + "message", + "note", + "notification", + "sms", + "speech", + "texting" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f075", + "label": "comment", + "svg": { + "solid": { + "last_modified": 1522083406015, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32z" + }, + "regular": { + "last_modified": 1522083405998, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z" + } + } + }, + "comment-alt": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "chat", + "commenting", + "commenting", + "conversation", + "feedback", + "message", + "note", + "notification", + "sms", + "speech", + "texting" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f27a", + "label": "Alternate Comment", + "svg": { + "solid": { + "last_modified": 1522083406013, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 9.8 11.2 15.5 19.1 9.7L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z" + }, + "regular": { + "last_modified": 1522083405995, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 7.1 5.8 12 12 12 2.4 0 4.9-.7 7.1-2.4L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm16 352c0 8.8-7.2 16-16 16H288l-12.8 9.6L208 428v-60H64c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h384c8.8 0 16 7.2 16 16v288z" + } + } + }, + "comment-dots": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f4ad", + "label": "Comment Dots", + "svg": { + "solid": { + "last_modified": 1522083406013, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" + }, + "regular": { + "last_modified": 1522083405995, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M144 208c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z" + } + } + }, + "comment-slash": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f4b3", + "label": "Comment Slash", + "svg": { + "solid": { + "last_modified": 1522083406015, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M64 240c0 49.6 21.4 95 57 130.7-12.6 50.3-54.3 95.2-54.8 95.8-2.2 2.3-2.8 5.7-1.5 8.7 1.3 2.9 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 27.4 0 53.7-3.6 78.4-10L72.9 186.4c-5.6 17.1-8.9 35-8.9 53.6zm569.8 218.1l-114.4-88.4C554.6 334.1 576 289.2 576 240c0-114.9-114.6-208-256-208-65.1 0-124.2 20.1-169.4 52.7L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z" + } + } + }, + "comments": { + "changes": [ + "1", + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "chat", + "conversation", + "feedback", + "message", + "note", + "notification", + "sms", + "speech", + "texting" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f086", + "label": "comments", + "svg": { + "solid": { + "last_modified": 1522083406016, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z" + }, + "regular": { + "last_modified": 1522083405999, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z" + } + } + }, + "compact-disc": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "bluray", + "cd", + "disc", + "media" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f51f", + "label": "Compact Disc", + "svg": { + "solid": { + "last_modified": 1525967154565, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 256H56c0-105.9 86.1-192 192-192v32c-88.2 0-160 71.8-160 160zm160 96c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" + } + } + }, + "compass": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directory", + "location", + "menu", + "safari" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f14e", + "label": "Compass", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM307.446 120.844l-102.642 97.779a23.997 23.997 0 0 0-6.772 11.729l-33.359 137.779c-5.68 23.459 22.777 39.318 39.88 23.024l102.64-97.779a23.99 23.99 0 0 0 6.772-11.729l33.359-137.779c5.618-23.198-22.591-39.493-39.878-23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm91.326-312.131l-33.359 137.779a24.005 24.005 0 0 1-6.772 11.729l-102.64 97.779c-17.104 16.293-45.56.434-39.88-23.024l33.359-137.779a23.997 23.997 0 0 1 6.772-11.729l102.642-97.779c17.285-16.47 45.494-.175 39.878 23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z" + } + } + }, + "compress": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "collapse", + "combine", + "contract", + "merge", + "smaller" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f066", + "label": "Compress", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M436 192H312c-13.3 0-24-10.7-24-24V44c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-276-24V44c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v84H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 300V344c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-84h84c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H312c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z" + } + } + }, + "concierge-bell": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attention", + "hotel", + "service", + "support" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f562", + "label": "Concierge Bell", + "svg": { + "solid": { + "last_modified": 1529520111652, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M288 130.54V112h16c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h16v18.54C115.49 146.11 32 239.18 32 352h448c0-112.82-83.49-205.89-192-221.46zM496 384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" + } + } + }, + "connectdevelop": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f20e", + "label": "Connect Develop", + "svg": { + "brands": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M550.5 241l-50.089-86.786c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.733-14.732-15.001l-55.447-95.893c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.268-15.268-15.268-4.821 0-8.839 2.143-11.786 5.625H299.518C296.839 18.143 292.821 16 288 16s-8.839 2.143-11.518 5.625H170.411C167.464 18.143 163.447 16 158.625 16c-8.303 0-15.268 6.696-15.268 15.268 0 1.607.536 3.482 1.072 4.821l-55.983 97.233c-5.356 2.41-9.107 7.5-9.107 13.661 0 .535.268 1.071.268 1.607l-53.304 92.143c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.393 12.054 15l55.179 95.358c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.393 12.054 14.732l51.697 89.732c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.268 15.268 15.268 4.821 0 8.839-2.143 11.518-5.357h106.875C279.161 493.857 283.447 496 288 496s8.839-2.143 11.518-5.357h107.143c2.678 2.946 6.696 4.821 10.982 4.821 8.571 0 15.268-6.964 15.268-15.268 0-1.607-.267-2.946-.803-4.285l51.697-90.268c6.964-1.339 12.054-7.5 12.054-14.732 0-1.607-.268-3.214-.804-4.821l54.911-95.358c6.964-1.339 12.322-7.5 12.322-15-.002-7.232-5.092-13.393-11.788-14.732zM153.535 450.732l-43.66-75.803h43.66v75.803zm0-83.839h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.999-47.41v50.624zm0-62.411l-50.357 53.304c-1.339-.536-2.679-1.34-4.018-1.607L43.447 259.75c.535-1.339.535-2.679.535-4.018s0-2.41-.268-3.482l51.965-90c2.679-.268 5.357-1.072 7.768-2.679l50.089 51.965v92.946zm0-102.322l-45.803-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.928-15.804v72.053zm0-80.625l-43.66 15.804 43.66-75.536v59.732zm326.519 39.108l.804 1.339L445.5 329.125l-63.75-67.232 98.036-101.518.268.268zM291.75 355.107l11.518 11.786H280.5l11.25-11.786zm-.268-11.25l-83.303-85.446 79.553-84.375 83.036 87.589-79.286 82.232zm5.357 5.893l79.286-82.232 67.5 71.25-5.892 28.125H313.714l-16.875-17.143zM410.411 44.393c1.071.536 2.142 1.072 3.482 1.34l57.857 100.714v.536c0 2.946.803 5.624 2.143 7.767L376.393 256l-83.035-87.589L410.411 44.393zm-9.107-2.143L287.732 162.518l-57.054-60.268 166.339-60h4.287zm-123.483 0c2.678 2.678 6.16 4.285 10.179 4.285s7.5-1.607 10.179-4.285h75L224.786 95.821 173.893 42.25h103.928zm-116.249 5.625l1.071-2.142a33.834 33.834 0 0 0 2.679-.804l51.161 53.84-54.911 19.821V47.875zm0 79.286l60.803-21.964 59.732 63.214-79.553 84.107-40.982-42.053v-83.304zm0 92.678L198 257.607l-36.428 38.304v-76.072zm0 87.858l42.053-44.464 82.768 85.982-17.143 17.678H161.572v-59.196zm6.964 162.053c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.732h99.91l-91.607 94.821h-1.339zm129.911 0c-2.679-2.41-6.428-4.285-10.447-4.285s-7.767 1.875-10.447 4.285h-96.429l91.607-94.821h38.304l91.607 94.821H298.447zm120-11.786l-4.286 7.5c-1.339.268-2.41.803-3.482 1.339l-89.196-91.875h114.376l-17.412 83.036zm12.856-22.232l12.858-60.803h21.964l-34.822 60.803zm34.822-68.839h-20.357l4.553-21.16 17.143 18.214c-.535.803-1.071 1.874-1.339 2.946zm66.161-107.411l-55.447 96.697c-1.339.535-2.679 1.071-4.018 1.874l-20.625-21.964 34.554-163.928 45.803 79.286c-.267 1.339-.803 2.678-.803 4.285 0 1.339.268 2.411.536 3.75z" + } + } + }, + "contao": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f26d", + "label": "Contao", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M45.4 305c14.4 67.1 26.4 129 68.2 175H34c-18.7 0-34-15.2-34-34V66c0-18.7 15.2-34 34-34h57.7C77.9 44.6 65.6 59.2 54.8 75.6c-45.4 70-27 146.8-9.4 229.4zM478 32h-90.2c21.4 21.4 39.2 49.5 52.7 84.1l-137.1 29.3c-14.9-29-37.8-53.3-82.6-43.9-24.6 5.3-41 19.3-48.3 34.6-8.8 18.7-13.2 39.8 8.2 140.3 21.1 100.2 33.7 117.7 49.5 131.2 12.9 11.1 33.4 17 58.3 11.7 44.5-9.4 55.7-40.7 57.4-73.2l137.4-29.6c3.2 71.5-18.7 125.2-57.4 163.6H478c18.7 0 34-15.2 34-34V66c0-18.8-15.2-34-34-34z" + } + } + }, + "cookie": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baked good", + "chips", + "food", + "snack", + "sweet", + "treat" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f563", + "label": "Cookie", + "svg": { + "solid": { + "last_modified": 1529520111653, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M510.37 254.79l-12.08-76.26a132.493 132.493 0 0 0-37.16-72.95l-54.76-54.75c-19.73-19.72-45.18-32.7-72.71-37.05l-76.7-12.15c-27.51-4.36-55.69.11-80.52 12.76L107.32 49.6a132.25 132.25 0 0 0-57.79 57.8l-35.1 68.88a132.602 132.602 0 0 0-12.82 80.94l12.08 76.27a132.493 132.493 0 0 0 37.16 72.95l54.76 54.75a132.087 132.087 0 0 0 72.71 37.05l76.7 12.14c27.51 4.36 55.69-.11 80.52-12.75l69.12-35.21a132.302 132.302 0 0 0 57.79-57.8l35.1-68.87c12.71-24.96 17.2-53.3 12.82-80.96zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + } + }, + "cookie-bite": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baked good", + "bitten", + "chips", + "eating", + "food", + "snack", + "sweet", + "treat" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f564", + "label": "Cookie Bite", + "svg": { + "solid": { + "last_modified": 1529520111653, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M510.52 255.82c-69.97-.85-126.47-57.69-126.47-127.86-70.17 0-127-56.49-127.86-126.45-27.26-4.14-55.13.3-79.72 12.82l-69.13 35.22a132.221 132.221 0 0 0-57.79 57.81l-35.1 68.88a132.645 132.645 0 0 0-12.82 80.95l12.08 76.27a132.521 132.521 0 0 0 37.16 72.96l54.77 54.76a132.036 132.036 0 0 0 72.71 37.06l76.71 12.15c27.51 4.36 55.7-.11 80.53-12.76l69.13-35.21a132.273 132.273 0 0 0 57.79-57.81l35.1-68.88c12.56-24.64 17.01-52.58 12.91-79.91zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + } + }, + "copy": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clone", + "duplicate", + "file", + "files-o" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0c5", + "label": "Copy", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M433.941 65.941l-51.882-51.882A48 48 0 0 0 348.118 0H176c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48v-48h80c26.51 0 48-21.49 48-48V99.882a48 48 0 0 0-14.059-33.941zM266 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h74v224c0 26.51 21.49 48 48 48h96v42a6 6 0 0 1-6 6zm128-96H182a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h106v88c0 13.255 10.745 24 24 24h88v202a6 6 0 0 1-6 6zm6-256h-64V48h9.632c1.591 0 3.117.632 4.243 1.757l48.368 48.368a6 6 0 0 1 1.757 4.243V112z" + } + } + }, + "copyright": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1f9", + "label": "Copyright", + "svg": { + "solid": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm117.134 346.753c-1.592 1.867-39.776 45.731-109.851 45.731-84.692 0-144.484-63.26-144.484-145.567 0-81.303 62.004-143.401 143.762-143.401 66.957 0 101.965 37.315 103.422 38.904a12 12 0 0 1 1.238 14.623l-22.38 34.655c-4.049 6.267-12.774 7.351-18.234 2.295-.233-.214-26.529-23.88-61.88-23.88-46.116 0-73.916 33.575-73.916 76.082 0 39.602 25.514 79.692 74.277 79.692 38.697 0 65.28-28.338 65.544-28.625 5.132-5.565 14.059-5.033 18.508 1.053l24.547 33.572a12.001 12.001 0 0 1-.553 14.866z" + }, + "regular": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm107.351-101.064c-9.614 9.712-45.53 41.396-104.065 41.396-82.43 0-140.484-61.425-140.484-141.567 0-79.152 60.275-139.401 139.762-139.401 55.531 0 88.738 26.62 97.593 34.779a11.965 11.965 0 0 1 1.936 15.322l-18.155 28.113c-3.841 5.95-11.966 7.282-17.499 2.921-8.595-6.776-31.814-22.538-61.708-22.538-48.303 0-77.916 35.33-77.916 80.082 0 41.589 26.888 83.692 78.277 83.692 32.657 0 56.843-19.039 65.726-27.225 5.27-4.857 13.596-4.039 17.82 1.738l19.865 27.17a11.947 11.947 0 0 1-1.152 15.518z" + } + } + }, + "couch": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f4b8", + "label": "Couch", + "svg": { + "solid": { + "last_modified": 1521653821447, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M160 224v64h320v-64c0-35.3 28.7-64 64-64h32c0-53-43-96-96-96H160c-53 0-96 43-96 96h32c35.3 0 64 28.7 64 64zm416-32h-32c-17.7 0-32 14.3-32 32v96H128v-96c0-17.7-14.3-32-32-32H64c-35.3 0-64 28.7-64 64 0 23.6 13 44 32 55.1V432c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-16h384v16c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V311.1c19-11.1 32-31.5 32-55.1 0-35.3-28.7-64-64-64z" + } + } + }, + "cpanel": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f388", + "label": "cPanel", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M52.9 213.7h40l-6.2 23.6c-1.9 6.5-7.4 10.9-14.3 10.9H53.8c-24.9 0-24.7 37.4 0 37.4h11.3c4.2 0 7.6 3.9 6.4 8.3L64.4 320H52c-33.5 0-59-31.4-50.3-65.2 7.3-27 28.3-41.1 51.2-41.1M73.1 320L108 189.9c1.8-6.4 7.2-10.9 14.3-10.9h37c24.1 0 45.4 16.4 51 41.2 6.6 29.1-14.5 65.3-51.7 65.3h-32l6.4-23.8c1.8-6.2 7.3-10.8 14.3-10.8h10.3c12.4 0 20.8-11.7 18.3-22.6-2.1-9.2-9.9-14.8-18.3-14.8h-19.8L112 309.2c-1.9 6.2-7.4 10.7-14.2 10.7l-24.7.1m220.6-69.4c.3-1 1.9-5.3-2.1-5.3h-57.5c-9.7 0-16.6-8.9-14.2-18.5l3.5-13.4h77.9c18.8 0 33.3 17.6 28.5 36.8l-14 51.8c-2.8 10.6-12.2 17.8-23.4 17.8l-57.5-.2c-42.9 0-38.5-63.8.7-63.8H284l-3.5 13.2c-1.9 6.2-7.4 10.8-14.2 10.8h-21.6c-5.3 0-5.3 7.9 0 7.9h34.9c4.6 0 5.1-3.9 5.5-5.3l8.6-31.8m103.1-36.9c34.4 0 59.3 32.3 50.3 65.4l-8.8 33.1c-1.2 4.9-5.7 7.8-10.3 7.8h-19.1c-4.5 0-7.6-4-6.4-8.3l10.6-40c3.3-11.6-5.6-23.4-18.1-23.4h-19.8l-17.2 64c-1.2 4.8-5.6 7.8-10.4 7.8h-18.9c-4.2 0-7.6-3.9-6.4-8.3l26.2-98h48.3M498 251.6l-8 30c-.9 3.3 1.5 6.7 5.1 6.7h73.3l-5.7 21c-1.9 6.2-7.4 10.7-14.2 10.7h-66.7c-20 0-33.3-19-28.3-36.7l10.8-40c4.8-17.6 20.7-29.6 38.6-29.6h47.3c19 0 33.2 17.7 28.3 36.8l-3.2 12c-2.9 11-12.7 17.6-23.2 17.6h-53.4l3.5-13c1.6-6.2 7.2-10.8 14.2-10.8H538c2 0 3.3-1 3.9-3l.7-2.6c.7-2.7-1.3-5.1-3.9-5.1h-32.9c-4.1 0-6.9 2.1-7.8 6zm70.2 68.4l35.6-133.1c1.2-4.7 5.5-7.9 10.4-7.9h18.9c4.5 0 7.7 4 6.5 8.3l-26.5 98.2c-5.1 20.7-24.2 34.5-44.9 34.5" + } + } + }, + "creative-commons": { + "changes": [ + "4.4", + "5.0.0", + "5.0.11", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f25e", + "label": "Creative Commons", + "svg": { + "brands": { + "last_modified": 1529514897189, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M245.83 214.87l-33.22 17.28c-9.43-19.58-25.24-19.93-27.46-19.93-22.13 0-33.22 14.61-33.22 43.84 0 23.57 9.21 43.84 33.22 43.84 14.47 0 24.65-7.09 30.57-21.26l30.55 15.5c-6.17 11.51-25.69 38.98-65.1 38.98-22.6 0-73.96-10.32-73.96-77.05 0-58.69 43-77.06 72.63-77.06 30.72-.01 52.7 11.95 65.99 35.86zm143.05 0l-32.78 17.28c-9.5-19.77-25.72-19.93-27.9-19.93-22.14 0-33.22 14.61-33.22 43.84 0 23.55 9.23 43.84 33.22 43.84 14.45 0 24.65-7.09 30.54-21.26l31 15.5c-2.1 3.75-21.39 38.98-65.09 38.98-22.69 0-73.96-9.87-73.96-77.05 0-58.67 42.97-77.06 72.63-77.06 30.71-.01 52.58 11.95 65.56 35.86zM247.56 8.05C104.74 8.05 0 123.11 0 256.05c0 138.49 113.6 248 247.56 248 129.93 0 248.44-100.87 248.44-248 0-137.87-106.62-248-248.44-248zm.87 450.81c-112.54 0-203.7-93.04-203.7-202.81 0-105.42 85.43-203.27 203.72-203.27 112.53 0 202.82 89.46 202.82 203.26-.01 121.69-99.68 202.82-202.84 202.82z" + } + } + }, + "creative-commons-by": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4e7", + "label": "Creative Commons Attribution", + "svg": { + "brands": { + "last_modified": 1525209365016, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M314.9 194.4v101.4h-28.3v120.5h-77.1V295.9h-28.3V194.4c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7H299c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3zm-101.5-63.7c0-23.3 11.5-35 34.5-35s34.5 11.7 34.5 35c0 23-11.5 34.5-34.5 34.5s-34.5-11.5-34.5-34.5zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z" + } + } + }, + "creative-commons-nc": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4e8", + "label": "Creative Commons Noncommercial", + "svg": { + "brands": { + "last_modified": 1525209365017, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M247.6 8C387.4 8 496 115.9 496 256c0 147.2-118.5 248-248.4 248C113.1 504 0 393.2 0 256 0 123.1 104.7 8 247.6 8zM55.8 189.1c-7.4 20.4-11.1 42.7-11.1 66.9 0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4v38.1h-28.8V368c-27.5-.3-52.6-10.2-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4zM248.4 52.3c-38.4 0-112.4 8.7-170.5 93l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3v-38.1h28.8v38.1c22.7 1.2 43.4 8.9 62 23L295 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8z" + } + } + }, + "creative-commons-nc-eu": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4e9", + "label": "Creative Commons Noncommercial (Euro Sign)", + "svg": { + "brands": { + "last_modified": 1525209365016, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M247.7 8C103.6 8 0 124.8 0 256c0 136.3 111.7 248 247.7 248C377.9 504 496 403.1 496 256 496 117 388.4 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-23.2 3.7-45.2 10.9-66l65.7 29.1h-4.7v29.5h23.3c0 6.2-.4 3.2-.4 19.5h-22.8v29.5h27c11.4 67 67.2 101.3 124.6 101.3 26.6 0 50.6-7.9 64.8-15.8l-10-46.1c-8.7 4.6-28.2 10.8-47.3 10.8-28.2 0-58.1-10.9-67.3-50.2h90.3l128.3 56.8c-1.5 2.1-56.2 104.3-178.8 104.3zm-16.7-190.6l-.5-.4.9.4h-.4zm77.2-19.5h3.7v-29.5h-70.3l-28.6-12.6c2.5-5.5 5.4-10.5 8.8-14.3 12.9-15.8 31.1-22.4 51.1-22.4 18.3 0 35.3 5.4 46.1 10l11.6-47.3c-15-6.6-37-12.4-62.3-12.4-39 0-72.2 15.8-95.9 42.3-5.3 6.1-9.8 12.9-13.9 20.1l-81.6-36.1c64.6-96.8 157.7-93.6 170.7-93.6 113 0 203 90.2 203 203.4 0 18.7-2.1 36.3-6.3 52.9l-136.1-60.5z" + } + } + }, + "creative-commons-nc-jp": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4ea", + "label": "Creative Commons Noncommercial (Yen Sign)", + "svg": { + "brands": { + "last_modified": 1525209365016, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M247.7 8C103.6 8 0 124.8 0 256c0 136.4 111.8 248 247.7 248C377.9 504 496 403.2 496 256 496 117.2 388.5 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-21.1 3-41.2 9-60.3l127 56.5h-27.9v38.6h58.1l5.7 11.8v18.7h-63.8V360h63.8v56h61.7v-56h64.2v-35.7l81 36.1c-1.5 2.2-57.1 98.3-175.2 98.3zm87.6-137.3h-57.6v-18.7l2.9-5.6 54.7 24.3zm6.5-51.4v-17.8h-38.6l63-116H301l-43.4 96-23-10.2-39.6-85.7h-65.8l27.3 51-81.9-36.5c27.8-44.1 82.6-98.1 173.7-98.1 112.8 0 203 90 203 203.4 0 21-2.7 40.6-7.9 59l-101-45.1z" + } + } + }, + "creative-commons-nd": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4eb", + "label": "Creative Commons No Derivative Works", + "svg": { + "brands": { + "last_modified": 1525209365017, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm94 144.3v42.5H162.1V197h180.3zm0 79.8v42.5H162.1v-42.5h180.3z" + } + } + }, + "creative-commons-pd": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4ec", + "label": "Creative Commons Public Domain", + "svg": { + "brands": { + "last_modified": 1525209365017, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm0 449.5c-139.2 0-235.8-138-190.2-267.9l78.8 35.1c-2.1 10.5-3.3 21.5-3.3 32.9 0 99 73.9 126.9 120.4 126.9 22.9 0 53.5-6.7 79.4-29.5L297 311.1c-5.5 6.3-17.6 16.7-36.3 16.7-37.8 0-53.7-39.9-53.9-71.9 230.4 102.6 216.5 96.5 217.9 96.8-34.3 62.4-100.6 104.8-176.7 104.8zm194.2-150l-224-100c18.8-34 54.9-30.7 74.7-11l40.4-41.6c-27.1-23.3-58-27.5-78.1-27.5-47.4 0-80.9 20.5-100.7 51.6l-74.9-33.4c36.1-54.9 98.1-91.2 168.5-91.2 111.1 0 201.5 90.4 201.5 201.5 0 18-2.4 35.4-6.8 52-.3-.1-.4-.2-.6-.4z" + } + } + }, + "creative-commons-pd-alt": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4ed", + "label": "Creative Commons Public Domain Alternate", + "svg": { + "brands": { + "last_modified": 1525209365017, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM135.5 323.3V186h68.2c33.7 0 50.5 15.5 50.5 46.5 0 9-3 46.5-57.1 46.5h-27v44.3h-34.6zm34.1-111.6v41.6h29.2c27.9 0 30-41.6-.9-41.6h-28.3zm93.9 111.6V186h53.2c21.4 0 70 5.2 70 68.6 0 63.5-48.6 68.6-70 68.6h-53.2zm34.1-108.5v79.7h19.9c24 0 34.5-15.3 34.5-39.9 0-42-31.2-39.9-35-39.9l-19.4.1z" + } + } + }, + "creative-commons-remix": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4ee", + "label": "Creative Commons Remix", + "svg": { + "brands": { + "last_modified": 1525209365017, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm161.7 207.7l4.9 2.2v70c-7.2 3.6-63.4 27.5-67.3 28.8-6.5-1.8-113.7-46.8-137.3-56.2l-64.2 26.6-63.3-27.5v-63.8l59.3-24.8c-.7-.7-.4 5-.4-70.4l67.3-29.7L361 178.5v61.6l49.1 20.3zm-70.4 81.5v-43.8h-.4v-1.8l-113.8-46.5V295l113.8 46.9v-.4l.4.4zm7.5-57.6l39.9-16.4-36.8-15.5-39 16.4 35.9 15.5zm52.3 38.1v-43L355.2 298v43.4l44.3-19z" + } + } + }, + "creative-commons-sa": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4ef", + "label": "Creative Commons Share Alike", + "svg": { + "brands": { + "last_modified": 1525209365018, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM137.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97h62.5c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6-33.1 0-51.7 14.6-55.8 43.8h18.2l-49.2 49.2-49-49.2h19.4z" + } + } + }, + "creative-commons-sampling": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f0", + "label": "Creative Commons Sampling", + "svg": { + "brands": { + "last_modified": 1525209365018, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm3.6 53.2c2.8-.3 11.5 1 11.5 11.5l6.6 107.2 4.9-59.3c0-6 4.7-10.6 10.6-10.6 5.9 0 10.6 4.7 10.6 10.6 0 2.5-.5-5.7 5.7 81.5l5.8-64.2c.3-2.9 2.9-9.3 10.2-9.3 3.8 0 9.9 2.3 10.6 8.9l11.5 96.5 5.3-12.8c1.8-4.4 5.2-6.6 10.2-6.6h58v21.3h-50.9l-18.2 44.3c-3.9 9.9-19.5 9.1-20.8-3.1l-4-31.9-7.5 92.6c-.3 3-3 9.3-10.2 9.3-3 0-9.8-2.1-10.6-9.3 0-1.9.6 5.8-6.2-77.9l-5.3 72.2c-1.1 4.8-4.8 9.3-10.6 9.3-2.9 0-9.8-2-10.6-9.3 0-1.9.5 6.7-5.8-87.7l-5.8 94.8c0 6.3-3.6 12.4-10.6 12.4-5.2 0-10.6-4.1-10.6-12l-5.8-87.7c-5.8 92.5-5.3 84-5.3 85.9-1.1 4.8-4.8 9.3-10.6 9.3-3 0-9.8-2.1-10.6-9.3 0-.7-.4-1.1-.4-2.6l-6.2-88.6L182 348c-.7 6.5-6.7 9.3-10.6 9.3-5.8 0-9.6-4.1-10.6-8.9L149.7 272c-2 4-3.5 8.4-11.1 8.4H87.2v-21.3H132l13.7-27.9c4.4-9.9 18.2-7.2 19.9 2.7l3.1 20.4 8.4-97.9c0-6 4.8-10.6 10.6-10.6.5 0 10.6-.2 10.6 12.4l4.9 69.1 6.6-92.6c0-10.1 9.5-10.6 10.2-10.6.6 0 10.6.7 10.6 10.6l5.3 80.6 6.2-97.9c.1-1.1-.6-10.3 9.9-11.5z" + } + } + }, + "creative-commons-sampling-plus": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f1", + "label": "Creative Commons Sampling +", + "svg": { + "brands": { + "last_modified": 1525209365018, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm107 205.6c-4.7 0-9 2.8-10.7 7.2l-4 9.5-11-92.8c-1.7-13.9-22-13.4-23.1.4l-4.3 51.4-5.2-68.8c-1.1-14.3-22.1-14.2-23.2 0l-3.5 44.9-5.9-94.3c-.9-14.5-22.3-14.4-23.2 0l-5.1 83.7-4.3-66.3c-.9-14.4-22.2-14.4-23.2 0l-5.3 80.2-4.1-57c-1.1-14.3-22-14.3-23.2-.2l-7.7 89.8-1.8-12.2c-1.7-11.4-17.1-13.6-22-3.3l-13.2 27.7H87.5v23.2h51.3c4.4 0 8.4-2.5 10.4-6.4l10.7 73.1c2 13.5 21.9 13 23.1-.7l3.8-43.6 5.7 78.3c1.1 14.4 22.3 14.2 23.2-.1l4.6-70.4 4.8 73.3c.9 14.4 22.3 14.4 23.2-.1l4.9-80.5 4.5 71.8c.9 14.3 22.1 14.5 23.2.2l4.6-58.6 4.9 64.4c1.1 14.3 22 14.2 23.1.1l6.8-83 2.7 22.3c1.4 11.8 17.7 14.1 22.3 3.1l18-43.4h50.5V258l-58.4.3zm-78 5.2h-21.9v21.9c0 4.1-3.3 7.5-7.5 7.5-4.1 0-7.5-3.3-7.5-7.5v-21.9h-21.9c-4.1 0-7.5-3.3-7.5-7.5 0-4.1 3.4-7.5 7.5-7.5h21.9v-21.9c0-4.1 3.4-7.5 7.5-7.5s7.5 3.3 7.5 7.5v21.9h21.9c4.1 0 7.5 3.3 7.5 7.5 0 4.1-3.4 7.5-7.5 7.5z" + } + } + }, + "creative-commons-share": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f2", + "label": "Creative Commons Share", + "svg": { + "brands": { + "last_modified": 1525209365018, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm101 132.4c7.8 0 13.7 6.1 13.7 13.7v182.5c0 7.7-6.1 13.7-13.7 13.7H214.3c-7.7 0-13.7-6-13.7-13.7v-54h-54c-7.8 0-13.7-6-13.7-13.7V131.1c0-8.2 6.6-12.7 12.4-13.7h136.4c7.7 0 13.7 6 13.7 13.7v54h54zM159.9 300.3h40.7V198.9c0-7.4 5.8-12.6 12-13.7h55.8v-40.3H159.9v155.4zm176.2-88.1H227.6v155.4h108.5V212.2z" + } + } + }, + "credit-card": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "checkout", + "credit-card-alt", + "debit", + "money", + "payment", + "purchase" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f09d", + "label": "Credit Card", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V256H0v176zm192-68c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-40zm-128 0c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM576 80v48H0V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M527.9 32H48.1C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48.1 48h479.8c26.6 0 48.1-21.5 48.1-48V80c0-26.5-21.5-48-48.1-48zM54.1 80h467.8c3.3 0 6 2.7 6 6v42H48.1V86c0-3.3 2.7-6 6-6zm467.8 352H54.1c-3.3 0-6-2.7-6-6V256h479.8v170c0 3.3-2.7 6-6 6zM192 332v40c0 6.6-5.4 12-12 12h-72c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12zm192 0v40c0 6.6-5.4 12-12 12H236c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12z" + } + } + }, + "crop": { + "changes": [ + "3.1", + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f125", + "label": "crop", + "svg": { + "solid": { + "last_modified": 1529520111654, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M488 352h-40V109.25l59.31-59.31c6.25-6.25 6.25-16.38 0-22.63L484.69 4.69c-6.25-6.25-16.38-6.25-22.63 0L402.75 64H192v96h114.75L160 306.75V24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v264c0 13.25 10.75 24 24 24h232v-96H205.25L352 205.25V488c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z" + } + } + }, + "crop-alt": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f565", + "label": "Alternate Crop", + "svg": { + "solid": { + "last_modified": 1529520111653, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M488 352h-40V96c0-17.67-14.33-32-32-32H192v96h160v328c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24zM160 24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v256c0 17.67 14.33 32 32 32h224v-96H160V24z" + } + } + }, + "crosshairs": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "gpd", + "picker", + "position" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f05b", + "label": "Crosshairs", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M500 224h-30.364C455.724 130.325 381.675 56.276 288 42.364V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v30.364C130.325 56.276 56.276 130.325 42.364 224H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h30.364C56.276 381.675 130.325 455.724 224 469.636V500c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-30.364C381.675 455.724 455.724 381.675 469.636 288H500c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zM288 404.634V364c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40.634C165.826 392.232 119.783 346.243 107.366 288H148c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40.634C119.768 165.826 165.757 119.783 224 107.366V148c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40.634C346.174 119.768 392.217 165.757 404.634 224H364c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40.634C392.232 346.174 346.243 392.217 288 404.634zM288 256c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z" + } + } + }, + "crow": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "bullfrog", + "toad" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f520", + "label": "Crow", + "svg": { + "solid": { + "last_modified": 1525967154565, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M544 32h-16.36C513.04 12.68 490.09 0 464 0c-44.18 0-80 35.82-80 80v20.98L12.09 393.57A30.216 30.216 0 0 0 0 417.74c0 22.46 23.64 37.07 43.73 27.03L165.27 384h96.49l44.41 120.1c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38L312.94 384H352c1.91 0 3.76-.23 5.66-.29l44.51 120.38c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38l-41.24-111.53C485.74 352.8 544 279.26 544 192v-80l96-16c0-35.35-42.98-64-96-64zm-80 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z" + } + } + }, + "crown": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f521", + "label": "Crown", + "svg": { + "solid": { + "last_modified": 1525967154566, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.4 7.7-.8L128 416h384l72.3-192.8c2.5.4 5.1.8 7.7.8 26.5 0 48-21.5 48-48s-21.5-48-48-48z" + } + } + }, + "css3": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "code" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f13c", + "label": "CSS 3 Logo", + "svg": { + "brands": { + "last_modified": 1505400127000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z" + } + } + }, + "css3-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f38b", + "label": "Alternate CSS3 Logo", + "svg": { + "brands": { + "last_modified": 1505400127000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z" + } + } + }, + "cube": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "package" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1b2", + "label": "Cube", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z" + } + } + }, + "cubes": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "packages" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1b3", + "label": "Cubes", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z" + } + } + }, + "cut": { + "changes": [ + "2", + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "scissors", + "scissors" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0c4", + "label": "Cut", + "svg": { + "solid": { + "last_modified": 1529520111654, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M278.06 256L444.48 89.57c4.69-4.69 4.69-12.29 0-16.97-32.8-32.8-85.99-32.8-118.79 0L210.18 188.12l-24.86-24.86c4.31-10.92 6.68-22.81 6.68-35.26 0-53.02-42.98-96-96-96S0 74.98 0 128s42.98 96 96 96c4.54 0 8.99-.32 13.36-.93L142.29 256l-32.93 32.93c-4.37-.61-8.83-.93-13.36-.93-53.02 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96c0-12.45-2.37-24.34-6.68-35.26l24.86-24.86L325.69 439.4c32.8 32.8 85.99 32.8 118.79 0 4.69-4.68 4.69-12.28 0-16.97L278.06 256zM96 160c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32zm0 256c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z" + } + } + }, + "cuttlefish": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f38c", + "label": "Cuttlefish", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "440", + "512" + ], + "width": 440, + "height": 512, + "path": "M344 305.5c-17.5 31.6-57.4 54.5-96 54.5-56.6 0-104-47.4-104-104s47.4-104 104-104c38.6 0 78.5 22.9 96 54.5 13.7-50.9 41.7-93.3 87-117.8C385.7 39.1 320.5 8 248 8 111 8 0 119 0 256s111 248 248 248c72.5 0 137.7-31.1 183-80.7-45.3-24.5-73.3-66.9-87-117.8z" + } + } + }, + "d-and-d": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f38d", + "label": "Dungeons & Dragons", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M82.5 98.9c-.6-17.2 2-33.8 12.7-48.2.3 7.4 1.2 14.5 4.2 21.6 5.9-27.5 19.7-49.3 42.3-65.5-1.9 5.9-3.5 11.8-3 17.7 8.7-7.4 18.8-17.8 44.4-22.7 14.7-2.8 29.7-2 42.1 1 38.5 9.3 61 34.3 69.7 72.3 5.3 23.1.7 45-8.3 66.4-5.2 12.4-12 24.4-20.7 35.1-2-1.9-3.9-3.8-5.8-5.6-42.8-40.8-26.8-25.2-37.4-37.4-1.1-1.2-1-2.2-.1-3.6 8.3-13.5 11.8-28.2 10-44-1.1-9.8-4.3-18.9-11.3-26.2-14.5-15.3-39.2-15-53.5.6-11.4 12.5-14.1 27.4-10.9 43.6.2 1.3.4 2.7 0 3.9-3.4 13.7-4.6 27.6-2.5 41.6.1.5.1 1.1.1 1.6 0 .3-.1.5-.2 1.1-21.8-11-36-28.3-43.2-52.2-8.3 17.8-11.1 35.5-6.6 54.1-15.6-15.2-21.3-34.3-22-55.2zm469.6 123.2c-11.6-11.6-25-20.4-40.1-26.6-12.8-5.2-26-7.9-39.9-7.1-10 .6-19.6 3.1-29 6.4-2.5.9-5.1 1.6-7.7 2.2-4.9 1.2-7.3-3.1-4.7-6.8 3.2-4.6 3.4-4.2 15-12 .6-.4 1.2-.8 2.2-1.5h-2.5c-.6 0-1.2.2-1.9.3-19.3 3.3-30.7 15.5-48.9 29.6-10.4 8.1-13.8 3.8-12-.5 1.4-3.5 3.3-6.7 5.1-10 1-1.8 2.3-3.4 3.5-5.1-.2-.2-.5-.3-.7-.5-27 18.3-46.7 42.4-57.7 73.3.3.3.7.6 1 .9.3-.6.5-1.2.9-1.7 10.4-12.1 22.8-21.8 36.6-29.8 18.2-10.6 37.5-18.3 58.7-20.2 4.3-.4 8.7-.1 13.1-.1-1.8.7-3.5.9-5.3 1.1-18.5 2.4-35.5 9-51.5 18.5-30.2 17.9-54.5 42.2-75.1 70.4-.3.4-.4.9-.7 1.3 14.5 5.3 24 17.3 36.1 25.6.2-.1.3-.2.4-.4l1.2-2.7c12.2-26.9 27-52.3 46.7-74.5 16.7-18.8 38-25.3 62.5-20 5.9 1.3 11.4 4.4 17.2 6.8 2.3-1.4 5.1-3.2 8-4.7 8.4-4.3 17.4-7 26.7-9 14.7-3.1 29.5-4.9 44.5-1.3v-.5c-.5-.4-1.2-.8-1.7-1.4zM316.7 397.6c-39.4-33-22.8-19.5-42.7-35.6-.8.9 0-.2-1.9 3-11.2 19.1-25.5 35.3-44 47.6-10.3 6.8-21.5 11.8-34.1 11.8-21.6 0-38.2-9.5-49.4-27.8-12-19.5-13.3-40.7-8.2-62.6 7.8-33.8 30.1-55.2 38.6-64.3-18.7-6.2-33 1.7-46.4 13.9.8-13.9 4.3-26.2 11.8-37.3-24.3 10.6-45.9 25-64.8 43.9-.3-5.8 5.4-43.7 5.6-44.7.3-2.7-.6-5.3-3-7.4-24.2 24.7-44.5 51.8-56.1 84.6 7.4-5.9 14.9-11.4 23.6-16.2-8.3 22.3-19.6 52.8-7.8 101.1 4.6 19 11.9 36.8 24.1 52.3 2.9 3.7 6.3 6.9 9.5 10.3.2-.2.4-.3.6-.5-1.4-7-2.2-14.1-1.5-21.9 2.2 3.2 3.9 6 5.9 8.6 12.6 16 28.7 27.4 47.2 35.6 25 11.3 51.1 13.3 77.9 8.6 54.9-9.7 90.7-48.6 116-98.8 1-1.8.6-2.9-.9-4.2zm172-46.4c-9.5-3.1-22.2-4.2-28.7-2.9 9.9 4 14.1 6.6 18.8 12 12.6 14.4 10.4 34.7-5.4 45.6-11.7 8.1-24.9 10.5-38.9 9.1-1.2-.1-2.3-.4-3-.6 2.8-3.7 6-7 8.1-10.8 9.4-16.8 5.4-42.1-8.7-56.1-2.1-2.1-4.6-3.9-7-5.9-.3 1.3-.1 2.1.1 2.8 4.2 16.6-8.1 32.4-24.8 31.8-7.6-.3-13.9-3.8-19.6-8.5-19.5-16.1-39.1-32.1-58.5-48.3-5.9-4.9-12.5-8.1-20.1-8.7-4.6-.4-9.3-.6-13.9-.9-5.9-.4-8.8-2.8-10.4-8.4-.9-3.4-1.5-6.8-2.2-10.2-1.5-8.1-6.2-13-14.3-14.2-4.4-.7-8.9-1-13.3-1.5-13-1.4-19.8-7.4-22.6-20.3-5 11-1.6 22.4 7.3 29.9 4.5 3.8 9.3 7.3 13.8 11.2 4.6 3.8 7.4 8.7 7.9 14.8.4 4.7.8 9.5 1.8 14.1 2.2 10.6 8.9 18.4 17 25.1 16.5 13.7 33 27.3 49.5 41.1 17.9 15 13.9 32.8 13 56-.9 22.9 12.2 42.9 33.5 51.2 1 .4 2 .6 3.6 1.1-15.7-18.2-10.1-44.1.7-52.3.3 2.2.4 4.3.9 6.4 9.4 44.1 45.4 64.2 85 56.9 16-2.9 30.6-8.9 42.9-19.8 2-1.8 3.7-4.1 5.9-6.5-19.3 4.6-35.8.1-50.9-10.6.7-.3 1.3-.3 1.9-.3 21.3 1.8 40.6-3.4 57-17.4 19.5-16.6 26.6-42.9 17.4-66-8.3-20.1-23.6-32.3-43.8-38.9zM99.4 179.3c-5.3-9.2-13.2-15.6-22.1-21.3 13.7-.5 26.6.2 39.6 3.7-7-12.2-8.5-24.7-5-38.7 5.3 11.9 13.7 20.1 23.6 26.8 19.7 13.2 35.7 19.6 46.7 30.2 3.4 3.3 6.3 7.1 9.6 10.9-.8-2.1-1.4-4.1-2.2-6-5-10.6-13-18.6-22.6-25-1.8-1.2-2.8-2.5-3.4-4.5-3.3-12.5-3-25.1-.7-37.6 1-5.5 2.8-10.9 4.5-16.3.8-2.4 2.3-4.6 4-6.6.6 6.9 0 25.5 19.6 46 10.8 11.3 22.4 21.9 33.9 32.7 9 8.5 18.3 16.7 25.5 26.8 1.1 1.6 2.2 3.3 3.8 4.7-5-13-14.2-24.1-24.2-33.8-9.6-9.3-19.4-18.4-29.2-27.4-3.3-3-4.6-6.7-5.1-10.9-1.2-10.4 0-20.6 4.3-30.2.5-1 1.1-2 1.9-3.3.5 4.2.6 7.9 1.4 11.6 4.8 23.1 20.4 36.3 49.3 63.5 10 9.4 19.3 19.2 25.6 31.6 4.8 9.3 7.3 19 5.7 29.6-.1.6.5 1.7 1.1 2 6.2 2.6 10 6.9 9.7 14.3 7.7-2.6 12.5-8 16.4-14.5 4.2 20.2-9.1 50.3-27.2 58.7.4-4.5 5-23.4-16.5-27.7-6.8-1.3-12.8-1.3-22.9-2.1 4.7-9 10.4-20.6.5-22.4-24.9-4.6-52.8 1.9-57.8 4.6 8.2.4 16.3 1 23.5 3.3-2 6.5-4 12.7-5.8 18.9-1.9 6.5 2.1 14.6 9.3 9.6 1.2-.9 2.3-1.9 3.3-2.7-3.1 17.9-2.9 15.9-2.8 18.3.3 10.2 9.5 7.8 15.7 7.3-2.5 11.8-29.5 27.3-45.4 25.8 7-4.7 12.7-10.3 15.9-17.9-6.5.8-12.9 1.6-19.2 2.4l-.3-.9c4.7-3.4 8-7.8 10.2-13.1 8.7-21.1-3.6-38-25-39.9-9.1-.8-17.8.8-25.9 5.5 6.2-15.6 17.2-26.6 32.6-34.5-15.2-4.3-8.9-2.7-24.6-6.3 14.6-9.3 30.2-13.2 46.5-14.6-5.2-3.2-48.1-3.6-70.2 20.9 7.9 1.4 15.5 2.8 23.2 4.2-23.8 7-44 19.7-62.4 35.6 1.1-4.8 2.7-9.5 3.3-14.3.6-4.5.8-9.2.1-13.6-1.5-9.4-8.9-15.1-19.7-16.3-7.9-.9-15.6.1-23.3 1.3-.9.1-1.7.3-2.9 0 15.8-14.8 36-21.7 53.1-33.5 6-4.5 6.8-8.2 3-14.9zm128.4 26.8c3.3 16 12.6 25.5 23.8 24.3-4.6-11.3-12.1-19.5-23.8-24.3z" + } + } + }, + "dashcube": { + "changes": [ + "4.3", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f210", + "label": "DashCube", + "svg": { + "brands": { + "last_modified": 1515426581996, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M326.6 104H110.4c-51.1 0-91.2 43.3-91.2 93.5V427c0 50.5 40.1 85 91.2 85h227.2c51.1 0 91.2-34.5 91.2-85V0L326.6 104zM153.9 416.5c-17.7 0-32.4-15.1-32.4-32.8V240.8c0-17.7 14.7-32.5 32.4-32.5h140.7c17.7 0 32 14.8 32 32.5v123.5l51.1 52.3H153.9z" + } + } + }, + "database": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f1c0", + "label": "Database", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z" + } + } + }, + "deaf": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f2a4", + "label": "Deaf", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm268.485-52.201L480.2 3.515c-4.687-4.686-12.284-4.686-16.971 0L376.2 90.544c-4.686 4.686-4.686 12.284 0 16.971l28.285 28.285c4.686 4.686 12.284 4.686 16.97 0l87.03-87.029c4.687-4.688 4.687-12.286 0-16.972zM168.97 314.745c-4.686-4.686-12.284-4.686-16.97 0L3.515 463.23c-4.686 4.686-4.686 12.284 0 16.971L31.8 508.485c4.687 4.686 12.284 4.686 16.971 0L197.256 360c4.686-4.686 4.686-12.284 0-16.971l-28.286-28.284z" + } + } + }, + "delicious": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a5", + "label": "Delicious Logo", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1.5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3 1 1.1 2.1 2.2 3.3 3.3 5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12zM416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192v176z" + } + } + }, + "deploydog": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f38e", + "label": "deploy.dog", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M382.2 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.6 0-33.2 16.4-33.2 32.6zM188.5 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.7 0-33.2 16.4-33.2 32.6zM448 96c17.5 0 32 14.4 32 32v256c0 17.5-14.4 32-32 32H64c-17.5 0-32-14.4-32-32V128c0-17.5 14.4-32 32-32h384m0-32H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h384c35.2 0 64-28.8 64-64V128c0-35.2-28.8-64-64-64z" + } + } + }, + "deskpro": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f38f", + "label": "Deskpro", + "svg": { + "brands": { + "last_modified": 1521653821382, + "raw": "", + "viewBox": [ + "0", + "0", + "480", + "512" + ], + "width": 480, + "height": 512, + "path": "M205.9 512l31.1-38.4c12.3-.2 25.6-1.4 36.5-6.6 38.9-18.6 38.4-61.9 38.3-63.8-.1-5-.8-4.4-28.9-37.4H362c-.2 50.1-7.3 68.5-10.2 75.7-9.4 23.7-43.9 62.8-95.2 69.4-8.7 1.1-32.8 1.2-50.7 1.1zm200.4-167.7c38.6 0 58.5-13.6 73.7-30.9l-175.5-.3-17.4 31.3 119.2-.1zm-43.6-223.9v168.3h-73.5l-32.7 55.5H250c-52.3 0-58.1-56.5-58.3-58.9-1.2-13.2-21.3-11.6-20.1 1.8 1.4 15.8 8.8 40 26.4 57.1h-91c-25.5 0-110.8-26.8-107-114V16.9C0 .9 9.7.3 15 .1h82c.2 0 .3.1.5.1 4.3-.4 50.1-2.1 50.1 43.7 0 13.3 20.2 13.4 20.2 0 0-18.2-5.5-32.8-15.8-43.7h84.2c108.7-.4 126.5 79.4 126.5 120.2zm-132.5 56l64 29.3c13.3-45.5-42.2-71.7-64-29.3z" + } + } + }, + "desktop": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "cpu", + "demo", + "desktop", + "device", + "machine", + "monitor", + "pc", + "screen" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f108", + "label": "Desktop", + "svg": { + "solid": { + "last_modified": 1502809851000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z" + } + } + }, + "deviantart": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1bd", + "label": "deviantART", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M320 93.2l-98.2 179.1 7.4 9.5H320v127.7H159.1l-13.5 9.2-43.7 84c-.3 0-8.6 8.6-9.2 9.2H0v-93.2l93.2-179.4-7.4-9.2H0V102.5h156l13.5-9.2 43.7-84c.3 0 8.6-8.6 9.2-9.2H320v93.1z" + } + } + }, + "diagnoses": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f470", + "label": "Diagnoses", + "svg": { + "solid": { + "last_modified": 1521653821447, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M496 256c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm-176-80c48.5 0 88-39.5 88-88S368.5 0 320 0s-88 39.5-88 88 39.5 88 88 88zM59.8 364c10.2 15.3 29.3 17.8 42.9 9.8 16.2-9.6 56.2-31.7 105.3-48.6V416h224v-90.7c49.1 16.8 89.1 39 105.3 48.6 13.6 8 32.7 5.3 42.9-9.8l17.8-26.7c8.8-13.2 7.6-34.6-10-45.1-11.9-7.1-29.7-17-51.1-27.4-28.1 46.1-99.4 17.8-87.7-35.1C409.3 217.2 365.1 208 320 208c-57 0-112.9 14.5-160 32.2-.2 40.2-47.6 63.3-79.2 36-11.2 6-21.3 11.6-28.7 16-17.6 10.5-18.8 31.8-10 45.1L59.8 364zM368 344c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-160 8c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm512 192H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z" + } + } + }, + "dice": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "chance", + "gambling", + "game", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f522", + "label": "Dice", + "svg": { + "solid": { + "last_modified": 1525967154567, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M592 192H473.26c12.69 29.59 7.12 65.2-17 89.32L320 417.58V464c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48V240c0-26.51-21.49-48-48-48zM480 376c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm-46.37-186.7L258.7 14.37c-19.16-19.16-50.23-19.16-69.39 0L14.37 189.3c-19.16 19.16-19.16 50.23 0 69.39L189.3 433.63c19.16 19.16 50.23 19.16 69.39 0L433.63 258.7c19.16-19.17 19.16-50.24 0-69.4zM96 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z" + } + } + }, + "dice-five": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "chance", + "gambling", + "game", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f523", + "label": "Dice Five", + "svg": { + "solid": { + "last_modified": 1525967154566, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + } + }, + "dice-four": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "chance", + "gambling", + "game", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f524", + "label": "Dice Four", + "svg": { + "solid": { + "last_modified": 1525967154566, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + } + }, + "dice-one": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "chance", + "gambling", + "game", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f525", + "label": "Dice One", + "svg": { + "solid": { + "last_modified": 1525967154566, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM224 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + } + }, + "dice-six": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "chance", + "gambling", + "game", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f526", + "label": "Dice Six", + "svg": { + "solid": { + "last_modified": 1529520111654, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + } + }, + "dice-three": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "chance", + "gambling", + "game", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f527", + "label": "Dice Three", + "svg": { + "solid": { + "last_modified": 1525967154567, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + } + }, + "dice-two": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "chance", + "gambling", + "game", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f528", + "label": "Dice Two", + "svg": { + "solid": { + "last_modified": 1525967154567, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + } + }, + "digg": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a6", + "label": "Digg Logo", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M81.7 172.3H0v174.4h132.7V96h-51v76.3zm0 133.4H50.9v-92.3h30.8v92.3zm297.2-133.4v174.4h81.8v28.5h-81.8V416H512V172.3H378.9zm81.8 133.4h-30.8v-92.3h30.8v92.3zm-235.6 41h82.1v28.5h-82.1V416h133.3V172.3H225.1v174.4zm51.2-133.3h30.8v92.3h-30.8v-92.3zM153.3 96h51.3v51h-51.3V96zm0 76.3h51.3v174.4h-51.3V172.3z" + } + } + }, + "digital-ocean": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f391", + "label": "Digital Ocean", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 504v-96.1c101.8 0 180.8-100.9 141.7-208-14.3-39.6-46.1-71.4-85.8-85.7-107.1-38.8-208.1 39.9-208.1 141.7H8C8 93.7 164.9-32.8 335 20.3c74.2 23.3 133.6 82.4 156.6 156.6C544.8 347.2 418.6 504 256 504zm.3-191.4h-95.6v95.6h95.6v-95.6zm-95.6 95.6H87v73.6h73.7v-73.6zM87 346.6H25.4v61.6H87v-61.6z" + } + } + }, + "digital-tachograph": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f566", + "label": "Digital Tachograph", + "svg": { + "solid": { + "last_modified": 1529520111655, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M608 96H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128c0-17.67-14.33-32-32-32zM304 352c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8zM72 288v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H80c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm40-64c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-48c0-8.84 7.16-16 16-16h208c8.84 0 16 7.16 16 16v48zm272 128c0 4.42-3.58 8-8 8H344c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8z" + } + } + }, + "discord": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f392", + "label": "Discord", + "svg": { + "brands": { + "last_modified": 1511282001102, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M297.216 243.2c0 15.616-11.52 28.416-26.112 28.416-14.336 0-26.112-12.8-26.112-28.416s11.52-28.416 26.112-28.416c14.592 0 26.112 12.8 26.112 28.416zm-119.552-28.416c-14.592 0-26.112 12.8-26.112 28.416s11.776 28.416 26.112 28.416c14.592 0 26.112-12.8 26.112-28.416.256-15.616-11.52-28.416-26.112-28.416zM448 52.736V512c-64.494-56.994-43.868-38.128-118.784-107.776l13.568 47.36H52.48C23.552 451.584 0 428.032 0 398.848V52.736C0 23.552 23.552 0 52.48 0h343.04C424.448 0 448 23.552 448 52.736zm-72.96 242.688c0-82.432-36.864-149.248-36.864-149.248-36.864-27.648-71.936-26.88-71.936-26.88l-3.584 4.096c43.52 13.312 63.744 32.512 63.744 32.512-60.811-33.329-132.244-33.335-191.232-7.424-9.472 4.352-15.104 7.424-15.104 7.424s21.248-20.224 67.328-33.536l-2.56-3.072s-35.072-.768-71.936 26.88c0 0-36.864 66.816-36.864 149.248 0 0 21.504 37.12 78.08 38.912 0 0 9.472-11.52 17.152-21.248-32.512-9.728-44.8-30.208-44.8-30.208 3.766 2.636 9.976 6.053 10.496 6.4 43.21 24.198 104.588 32.126 159.744 8.96 8.96-3.328 18.944-8.192 29.44-15.104 0 0-12.8 20.992-46.336 30.464 7.68 9.728 16.896 20.736 16.896 20.736 56.576-1.792 78.336-38.912 78.336-38.912z" + } + } + }, + "discourse": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f393", + "label": "Discourse", + "svg": { + "brands": { + "last_modified": 1521653821383, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z" + } + } + }, + "divide": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f529", + "label": "Divide", + "svg": { + "solid": { + "last_modified": 1525967154567, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M224 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm0-192c35.35 0 64-28.65 64-64s-28.65-64-64-64-64 28.65-64 64 28.65 64 64 64zm192 48H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" + } + } + }, + "dizzy": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dazed", + "disapprove", + "emoticon", + "face" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f567", + "label": "Dizzy Face", + "svg": { + "solid": { + "last_modified": 1529520111656, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-96 206.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L174.6 192l28.7 28.7c15.2 15.2-7.9 37.4-22.6 22.6L152 214.6zM248 416c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm147.3-195.3c15.2 15.2-7.9 37.4-22.6 22.6L344 214.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L366.6 192l28.7 28.7z" + }, + "regular": { + "last_modified": 1529520111613, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-33.8-217.9c7.8-7.8 7.8-20.5 0-28.3L196.3 192l17.9-17.9c7.8-7.8 7.8-20.5 0-28.3-7.8-7.8-20.5-7.8-28.3 0L168 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.9 7.7 20.5 7.7 28.4-.2zm160-92.2c-7.8-7.8-20.5-7.8-28.3 0L328 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.8 7.8 20.5 7.8 28.3 0 7.8-7.8 7.8-20.5 0-28.3l-17.8-18 17.9-17.9c7.7-7.8 7.7-20.4 0-28.2zM248 272c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64z" + } + } + }, + "dna": { + "changes": [ + "5.0.7", + "5.0.10" + ], + "ligatures": [], + "search": { + "terms": [ + "double helix", + "helix" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f471", + "label": "DNA", + "svg": { + "solid": { + "last_modified": 1523653480526, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M.1 494.1c-1.1 9.5 6.3 17.8 15.9 17.8l32.3.1c8.1 0 14.9-5.9 16-13.9.7-4.9 1.8-11.1 3.4-18.1H380c1.6 6.9 2.9 13.2 3.5 18.1 1.1 8 7.9 14 16 13.9l32.3-.1c9.6 0 17.1-8.3 15.9-17.8-4.6-37.9-25.6-129-118.9-207.7-17.6 12.4-37.1 24.2-58.5 35.4 6.2 4.6 11.4 9.4 17 14.2H159.7c21.3-18.1 47-35.6 78.7-51.4C410.5 199.1 442.1 65.8 447.9 17.9 449 8.4 441.6.1 432 .1L399.6 0c-8.1 0-14.9 5.9-16 13.9-.7 4.9-1.8 11.1-3.4 18.1H67.8c-1.6-7-2.7-13.1-3.4-18.1-1.1-8-7.9-14-16-13.9L16.1.1C6.5.1-1 8.4.1 17.9 5.3 60.8 31.4 171.8 160 256 31.5 340.2 5.3 451.2.1 494.1zM224 219.6c-25.1-13.7-46.4-28.4-64.3-43.6h128.5c-17.8 15.2-39.1 30-64.2 43.6zM355.1 96c-5.8 10.4-12.8 21.1-21 32H114c-8.3-10.9-15.3-21.6-21-32h262.1zM92.9 416c5.8-10.4 12.8-21.1 21-32h219.4c8.3 10.9 15.4 21.6 21.2 32H92.9z" + } + } + }, + "dochub": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f394", + "label": "DocHub", + "svg": { + "brands": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "416", + "512" + ], + "width": 416, + "height": 512, + "path": "M397.9 160H256V19.6L397.9 160zM304 192v130c0 66.8-36.5 100.1-113.3 100.1H96V84.8h94.7c12 0 23.1.8 33.1 2.5v-84C212.9 1.1 201.4 0 189.2 0H0v512h189.2C329.7 512 400 447.4 400 318.1V192h-96z" + } + } + }, + "docker": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f395", + "label": "Docker", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M349.9 236.3h-66.1v-59.4h66.1v59.4zm0-204.3h-66.1v60.7h66.1V32zm78.2 144.8H362v59.4h66.1v-59.4zm-156.3-72.1h-66.1v60.1h66.1v-60.1zm78.1 0h-66.1v60.1h66.1v-60.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4.4 67.6.1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1l-13.3-8.9zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm-78.1-72.1h-66.1v60.1h66.1v-60.1z" + } + } + }, + "dollar-sign": { + "changes": [ + "3.2", + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "$", + "dollar-sign", + "money", + "price", + "usd" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f155", + "label": "Dollar Sign", + "svg": { + "solid": { + "last_modified": 1522083406016, + "raw": "", + "viewBox": [ + "0", + "0", + "288", + "512" + ], + "width": 288, + "height": 512, + "path": "M209.2 233.4l-108-31.6C88.7 198.2 80 186.5 80 173.5c0-16.3 13.2-29.5 29.5-29.5h66.3c12.2 0 24.2 3.7 34.2 10.5 6.1 4.1 14.3 3.1 19.5-2l34.8-34c7.1-6.9 6.1-18.4-1.8-24.5C238 74.8 207.4 64.1 176 64V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C45.8 64-5.4 118.7.5 183.6c4.2 46.1 39.4 83.6 83.8 96.6l102.5 30c12.5 3.7 21.2 15.3 21.2 28.3 0 16.3-13.2 29.5-29.5 29.5h-66.3C100 368 88 364.3 78 357.5c-6.1-4.1-14.3-3.1-19.5 2l-34.8 34c-7.1 6.9-6.1 18.4 1.8 24.5 24.5 19.2 55.1 29.9 86.5 30v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48.2c46.6-.9 90.3-28.6 105.7-72.7 21.5-61.6-14.6-124.8-72.5-141.7z" + } + } + }, + "dolly": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f472", + "label": "Dolly", + "svg": { + "solid": { + "last_modified": 1521653821449, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M294.2 277.7c18 5 34.7 13.4 49.5 24.7l161.5-53.8c8.4-2.8 12.9-11.9 10.1-20.2L454.9 47.2c-2.8-8.4-11.9-12.9-20.2-10.1l-61.1 20.4 33.1 99.4L346 177l-33.1-99.4-61.6 20.5c-8.4 2.8-12.9 11.9-10.1 20.2l53 159.4zm281 48.7L565 296c-2.8-8.4-11.9-12.9-20.2-10.1l-213.5 71.2c-17.2-22-43.6-36.4-73.5-37L158.4 21.9C154 8.8 141.8 0 128 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h88.9l92.2 276.7c-26.1 20.4-41.7 53.6-36 90.5 6.1 39.4 37.9 72.3 77.3 79.2 60.2 10.7 112.3-34.8 113.4-92.6l213.3-71.2c8.3-2.8 12.9-11.8 10.1-20.2zM256 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z" + } + } + }, + "dolly-flatbed": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f474", + "label": "Dolly Flatbed", + "svg": { + "solid": { + "last_modified": 1521653821448, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M208 320h384c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H448v128l-48-32-48 32V32H208c-8.8 0-16 7.2-16 16v256c0 8.8 7.2 16 16 16zm416 64H128V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h82.9c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H451c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H624c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z" + } + } + }, + "donate": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "generosity", + "give" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4b9", + "label": "Donate", + "svg": { + "solid": { + "last_modified": 1522083406017, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 416c114.9 0 208-93.1 208-208S370.9 0 256 0 48 93.1 48 208s93.1 208 208 208zM233.8 97.4V80.6c0-9.2 7.4-16.6 16.6-16.6h11.1c9.2 0 16.6 7.4 16.6 16.6v17c15.5.8 30.5 6.1 43 15.4 5.6 4.1 6.2 12.3 1.2 17.1L306 145.6c-3.8 3.7-9.5 3.8-14 1-5.4-3.4-11.4-5.1-17.8-5.1h-38.9c-9 0-16.3 8.2-16.3 18.3 0 8.2 5 15.5 12.1 17.6l62.3 18.7c25.7 7.7 43.7 32.4 43.7 60.1 0 34-26.4 61.5-59.1 62.4v16.8c0 9.2-7.4 16.6-16.6 16.6h-11.1c-9.2 0-16.6-7.4-16.6-16.6v-17c-15.5-.8-30.5-6.1-43-15.4-5.6-4.1-6.2-12.3-1.2-17.1l16.3-15.5c3.8-3.7 9.5-3.8 14-1 5.4 3.4 11.4 5.1 17.8 5.1h38.9c9 0 16.3-8.2 16.3-18.3 0-8.2-5-15.5-12.1-17.6l-62.3-18.7c-25.7-7.7-43.7-32.4-43.7-60.1.1-34 26.4-61.5 59.1-62.4zM480 352h-32.5c-19.6 26-44.6 47.7-73 64h63.8c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8h63.8c-28.4-16.3-53.3-38-73-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32z" + } + } + }, + "door-closed": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f52a", + "label": "Door Closed", + "svg": { + "solid": { + "last_modified": 1525967154567, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624 448H512V50.8C512 22.78 490.47 0 464 0H175.99c-26.47 0-48 22.78-48 50.8V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM415.99 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32c.01 17.67-14.32 32-32 32z" + } + } + }, + "door-open": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f52b", + "label": "Door Open", + "svg": { + "solid": { + "last_modified": 1525967154568, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624 448h-80V113.45C544 86.19 522.47 64 496 64H384v64h96v384h144c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM312.24 1.01l-192 49.74C105.99 54.44 96 67.7 96 82.92V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h336V33.18c0-21.58-19.56-37.41-39.76-32.17zM264 288c-13.25 0-24-14.33-24-32s10.75-32 24-32 24 14.33 24 32-10.75 32-24 32z" + } + } + }, + "dot-circle": { + "changes": [ + "4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bullseye", + "notification", + "target" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f192", + "label": "Dot Circle", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 56c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m0-48C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 168c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80z" + } + } + }, + "dove": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f4ba", + "label": "Dove", + "svg": { + "solid": { + "last_modified": 1522083406017, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M288 167.2v-28.1c-28.2-36.3-47.1-79.3-54.1-125.2-2.1-13.5-19-18.8-27.8-8.3-21.1 24.9-37.7 54.1-48.9 86.5 34.2 38.3 80 64.6 130.8 75.1zM400 64c-44.2 0-80 35.9-80 80.1v59.4C215.6 197.3 127 133 87 41.8c-5.5-12.5-23.2-13.2-29-.9C41.4 76 32 115.2 32 156.6c0 70.8 34.1 136.9 85.1 185.9 13.2 12.7 26.1 23.2 38.9 32.8l-143.9 36C1.4 414-3.4 426.4 2.6 435.7 20 462.6 63 508.2 155.8 512c8 .3 16-2.6 22.1-7.9l65.2-56.1H320c88.4 0 160-71.5 160-159.9V128l32-64H400zm0 96.1c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z" + } + } + }, + "download": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "import" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f019", + "label": "Download", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z" + } + } + }, + "draft2digital": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f396", + "label": "Draft2digital", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "480", + "512" + ], + "width": 480, + "height": 512, + "path": "M369.9 425.4V371l47.1 27.2-47.1 27.2zM82.4 380.6c25.5-27.3 97.7-104.7 150.9-170 35.1-43.1 40.3-82.4 28.4-112.7-7.4-18.8-17.5-30.2-24.3-35.7 45.3 2.1 68 23.4 82.2 38.3 0 0 42.4 48.2 5.8 113.3-37 65.9-110.9 147.5-128.5 166.7H82.4zm51.8-219.2c0 12.4-10 22.4-22.4 22.4-12.4 0-22.4-10-22.4-22.4 0-12.4 10-22.4 22.4-22.4 12.4 0 22.4 10.1 22.4 22.4M336 315.9v64.7h-91.3c30.8-35 81.8-95.9 111.8-149.3 35.2-62.6 16.1-123.4-12.8-153.3-4.4-4.6-62.2-62.9-166-41.2-59.1 12.4-89.4 43.4-104.3 67.3-13.1 20.9-17 39.8-18.2 47.7-5.5 33 19.4 67.1 56.7 67.1 31.7 0 57.3-25.7 57.3-57.4 0-27.1-19.7-52.1-48-56.8 1.8-7.3 17.7-21.1 26.3-24.7 41.1-17.3 78 5.2 83.3 33.5 8.3 44.3-37.1 90.4-69.7 127.6C84.5 328.1 18.3 396.8 0 415.9l336-.1V480l144-81.9-144-82.2z" + } + } + }, + "drafting-compass": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mechanical drawing", + "plot", + "plotting" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f568", + "label": "Drafting Compass", + "svg": { + "solid": { + "last_modified": 1529520111656, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M457.01 344.42c-25.05 20.33-52.63 37.18-82.54 49.05l54.38 94.19 53.95 23.04c9.81 4.19 20.89-2.21 22.17-12.8l7.02-58.25-54.98-95.23zm42.49-94.56c4.86-7.67 1.89-17.99-6.05-22.39l-28.07-15.57c-7.48-4.15-16.61-1.46-21.26 5.72C403.01 281.15 332.25 320 256 320c-23.93 0-47.23-4.25-69.41-11.53l67.36-116.68c.7.02 1.34.21 2.04.21s1.35-.19 2.04-.21l51.09 88.5c31.23-8.96 59.56-25.75 82.61-48.92l-51.79-89.71C347.39 128.03 352 112.63 352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96c0 16.63 4.61 32.03 12.05 45.66l-68.3 118.31c-12.55-11.61-23.96-24.59-33.68-39-4.79-7.1-13.97-9.62-21.38-5.33l-27.75 16.07c-7.85 4.54-10.63 14.9-5.64 22.47 15.57 23.64 34.69 44.21 55.98 62.02L0 439.66l7.02 58.25c1.28 10.59 12.36 16.99 22.17 12.8l53.95-23.04 70.8-122.63C186.13 377.28 220.62 384 256 384c99.05 0 190.88-51.01 243.5-134.14zM256 64c17.67 0 32 14.33 32 32s-14.33 32-32 32-32-14.33-32-32 14.33-32 32-32z" + } + } + }, + "dribbble": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f17d", + "label": "Dribbble", + "svg": { + "brands": { + "last_modified": 1521653821383, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119.252 8 8 119.252 8 256s111.252 248 248 248 248-111.252 248-248S392.748 8 256 8zm163.97 114.366c29.503 36.046 47.369 81.957 47.835 131.955-6.984-1.477-77.018-15.682-147.502-6.818-5.752-14.041-11.181-26.393-18.617-41.614 78.321-31.977 113.818-77.482 118.284-83.523zM396.421 97.87c-3.81 5.427-35.697 48.286-111.021 76.519-34.712-63.776-73.185-116.168-79.04-124.008 67.176-16.193 137.966 1.27 190.061 47.489zm-230.48-33.25c5.585 7.659 43.438 60.116 78.537 122.509-99.087 26.313-186.36 25.934-195.834 25.809C62.38 147.205 106.678 92.573 165.941 64.62zM44.17 256.323c0-2.166.043-4.322.108-6.473 9.268.19 111.92 1.513 217.706-30.146 6.064 11.868 11.857 23.915 17.174 35.949-76.599 21.575-146.194 83.527-180.531 142.306C64.794 360.405 44.17 310.73 44.17 256.323zm81.807 167.113c22.127-45.233 82.178-103.622 167.579-132.756 29.74 77.283 42.039 142.053 45.189 160.638-68.112 29.013-150.015 21.053-212.768-27.882zm248.38 8.489c-2.171-12.886-13.446-74.897-41.152-151.033 66.38-10.626 124.7 6.768 131.947 9.055-9.442 58.941-43.273 109.844-90.795 141.978z" + } + } + }, + "dribbble-square": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f397", + "label": "Dribbble Square", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M90.2 228.2c8.9-42.4 37.4-77.7 75.7-95.7 3.6 4.9 28 38.8 50.7 79-64 17-120.3 16.8-126.4 16.7zM314.6 154c-33.6-29.8-79.3-41.1-122.6-30.6 3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4zM140.1 364c40.5 31.6 93.3 36.7 137.3 18-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6zm98.8-108.2c-3.4-7.8-7.2-15.5-11.1-23.2C159.6 253 93.4 252.2 87.4 252c0 1.4-.1 2.8-.1 4.2 0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8zm34.9 16.3c17.9 49.1 25.1 89.1 26.5 97.4 30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8zm-20.3-48.4c4.8 9.8 8.3 17.8 12 26.8 45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 176c0-88.2-71.8-160-160-160S64 167.8 64 256s71.8 160 160 160 160-71.8 160-160z" + } + } + }, + "dropbox": { + "changes": [ + "3.2", + "5.0.0", + "5.0.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f16b", + "label": "Dropbox", + "svg": { + "brands": { + "last_modified": 1512509227136, + "raw": "", + "viewBox": [ + "0", + "0", + "528", + "512" + ], + "width": 528, + "height": 512, + "path": "M264.4 116.3l-132 84.3 132 84.3-132 84.3L0 284.1l132.3-84.3L0 116.3 132.3 32l132.1 84.3zM131.6 395.7l132-84.3 132 84.3-132 84.3-132-84.3zm132.8-111.6l132-84.3-132-83.6L395.7 32 528 116.3l-132.3 84.3L528 284.8l-132.3 84.3-131.3-85z" + } + } + }, + "drum": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "instrument", + "music", + "percussion", + "snare", + "sound" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f569", + "label": "Drum", + "svg": { + "solid": { + "last_modified": 1529520111657, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M458.08 120.88l102.39-61.43c15.16-9.09 20.06-28.75 10.97-43.91C562.34.39 542.7-4.53 527.53 4.57l-160.69 96.41A629.32 629.32 0 0 0 288 96C128.94 96 0 153.31 0 224v160.83c0 30.46 24.03 58.4 64 80.37v-96.37c0-17.6 14.4-32 32-32s32 14.4 32 32v122.41c37.4 11.13 81 18.44 128 20.75V400.84c0-17.6 14.4-32 32-32s32 14.4 32 32V512c47-2.31 90.6-9.62 128-20.75V368.84c0-17.6 14.4-32 32-32s32 14.4 32 32v96.37c39.97-21.97 64-49.91 64-80.37V224.01c-.01-42.38-46.54-79.84-117.92-103.13zM288 304c-132.55 0-240-35.82-240-80s107.45-80 240-80c2.34 0 4.62.1 6.94.12l-87.41 52.44c-15.16 9.09-20.06 28.75-10.97 43.91 9.56 15.93 29.51 19.61 43.91 10.97l162.71-97.62C477.55 167.41 528 193.74 528 224.01 528 268.19 420.54 304 288 304z" + } + } + }, + "drum-steelpan": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "calypso", + "instrument", + "music", + "percussion", + "reggae", + "snare", + "sound", + "steel", + "tropical" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f56a", + "label": "Drum Steelpan", + "svg": { + "solid": { + "last_modified": 1529520111656, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M288 32C128.94 32 0 89.31 0 160v192c0 70.69 128.94 128 288 128s288-57.31 288-128V160c0-70.69-128.94-128-288-128zm-82.99 158.36c-4.45 16.61-14.54 30.57-28.31 40.48C100.23 217.46 48 190.78 48 160c0-30.16 50.11-56.39 124.04-70.03l25.6 44.34c9.86 17.09 12.48 36.99 7.37 56.05zM288 240c-21.08 0-41.41-1-60.89-2.7 8.06-26.13 32.15-45.3 60.89-45.3s52.83 19.17 60.89 45.3C329.41 239 309.08 240 288 240zm64-144c0 35.29-28.71 64-64 64s-64-28.71-64-64V82.96c20.4-1.88 41.8-2.96 64-2.96s43.6 1.08 64 2.96V96zm46.93 134.9c-13.81-9.91-23.94-23.9-28.4-40.54-5.11-19.06-2.49-38.96 7.38-56.04l25.65-44.42C477.72 103.5 528 129.79 528 160c0 30.83-52.4 57.54-129.07 70.9z" + } + } + }, + "drupal": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a9", + "label": "Drupal Logo", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M319.5 114.7c-22.2-14-43.5-19.5-64.7-33.5-13-8.8-31.3-30-46.5-48.3-2.7 29.3-11.5 41.2-22 49.5-21.3 17-34.8 22.2-53.5 32.3C117 123 32 181.5 32 290.5 32 399.7 123.8 480 225.8 480 327.5 480 416 406 416 294c0-112.3-83-171-96.5-179.3zm2.5 325.6c-20.1 20.1-90.1 28.7-116.7 4.2-4.8-4.8.3-12 6.5-12 0 0 17 13.3 51.5 13.3 27 0 46-7.7 54.5-14 6.1-4.6 8.4 4.3 4.2 8.5zm-54.5-52.6c8.7-3.6 29-3.8 36.8 1.3 4.1 2.8 16.1 18.8 6.2 23.7-8.4 4.2-1.2-15.7-26.5-15.7-14.7 0-19.5 5.2-26.7 11-7 6-9.8 8-12.2 4.7-6-8.2 15.9-22.3 22.4-25zM360 405c-15.2-1-45.5-48.8-65-49.5-30.9-.9-104.1 80.7-161.3 42-38.8-26.6-14.6-104.8 51.8-105.2 49.5-.5 83.8 49 108.5 48.5 21.3-.3 61.8-41.8 81.8-41.8 48.7 0 23.3 109.3-15.8 106z" + } + } + }, + "dumbbell": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [ + "exercise", + "gym", + "strength", + "weight", + "weight-lifting" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f44b", + "label": "Dumbbell", + "svg": { + "solid": { + "last_modified": 1518899527995, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M104 96H56c-13.3 0-24 10.7-24 24v104H8c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h24v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm528 128h-24V120c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v272c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h24c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM456 32h-48c-13.3 0-24 10.7-24 24v168H256V56c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v400c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h128v168c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24z" + } + } + }, + "dyalog": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f399", + "label": "Dyalog", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "416", + "512" + ], + "width": 416, + "height": 512, + "path": "M0 32v119.2h64V96h107.2C284.6 96 352 176.2 352 255.9 352 332 293.4 416 171.2 416H0v64h171.2C331.9 480 416 367.3 416 255.9c0-58.7-22.1-113.4-62.3-154.3C308.9 56 245.7 32 171.2 32H0z" + } + } + }, + "earlybirds": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f39a", + "label": "Earlybirds", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "480", + "512" + ], + "width": 480, + "height": 512, + "path": "M313.2 47.5c1.2-13 21.3-14 36.6-8.7.9.3 26.2 9.7 19 15.2-27.9-7.4-56.4 18.2-55.6-6.5zm-201 6.9c30.7-8.1 62 20 61.1-7.1-1.3-14.2-23.4-15.3-40.2-9.6-1 .3-28.7 10.5-20.9 16.7zM319.4 160c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-159.7 0c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm318.5 163.2c-9.9 24-40.7 11-63.9-1.2-13.5 69.1-58.1 111.4-126.3 124.2.3.9-2-.1 24 1 33.6 1.4 63.8-3.1 97.4-8-19.8-13.8-11.4-37.1-9.8-38.1 1.4-.9 14.7 1.7 21.6 11.5 8.6-12.5 28.4-14.8 30.2-13.6 1.6 1.1 6.6 20.9-6.9 34.6 4.7-.9 8.2-1.6 9.8-2.1 2.6-.8 17.7 11.3 3.1 13.3-14.3 2.3-22.6 5.1-47.1 10.8-45.9 10.7-85.9 11.8-117.7 12.8l1 11.6c3.8 18.1-23.4 24.3-27.6 6.2.8 17.9-27.1 21.8-28.4-1l-.5 5.3c-.7 18.4-28.4 17.9-28.3-.6-7.5 13.5-28.1 6.8-26.4-8.5l1.2-12.4c-36.7.9-59.7 3.1-61.8 3.1-20.9 0-20.9-31.6 0-31.6 2.4 0 27.7 1.3 63.2 2.8-61.1-15.5-103.7-55-114.9-118.2-25 12.8-57.5 26.8-68.2.8-10.5-25.4 21.5-42.6 66.8-73.4.7-6.6 1.6-13.3 2.7-19.8-14.4-19.6-11.6-36.3-16.1-60.4-16.8 2.4-23.2-9.1-23.6-23.1.3-7.3 2.1-14.9 2.4-15.4 1.1-1.8 10.1-2 12.7-2.6 6-31.7 50.6-33.2 90.9-34.5 19.7-21.8 45.2-41.5 80.9-48.3C203.3 29 215.2 8.5 216.2 8c1.7-.8 21.2 4.3 26.3 23.2 5.2-8.8 18.3-11.4 19.6-10.7 1.1.6 6.4 15-4.9 25.9 40.3 3.5 72.2 24.7 96 50.7 36.1 1.5 71.8 5.9 77.1 34 2.7.6 11.6.8 12.7 2.6.3.5 2.1 8.1 2.4 15.4-.5 13.9-6.8 25.4-23.6 23.1-3.2 17.3-2.7 32.9-8.7 47.7 2.4 11.7 4 23.8 4.8 36.4 37 25.4 70.3 42.5 60.3 66.9zM207.4 159.9c.9-44-37.9-42.2-78.6-40.3-21.7 1-38.9 1.9-45.5 13.9-11.4 20.9 5.9 92.9 23.2 101.2 9.8 4.7 73.4 7.9 86.3-7.1 8.2-9.4 15-49.4 14.6-67.7zm52 58.3c-4.3-12.4-6-30.1-15.3-32.7-2-.5-9-.5-11 0-10 2.8-10.8 22.1-17 37.2 15.4 0 19.3 9.7 23.7 9.7 4.3 0 6.3-11.3 19.6-14.2zm135.7-84.7c-6.6-12.1-24.8-12.9-46.5-13.9-40.2-1.9-78.2-3.8-77.3 40.3-.5 18.3 5 58.3 13.2 67.8 13 14.9 76.6 11.8 86.3 7.1 15.8-7.6 36.5-78.9 24.3-101.3z" + } + } + }, + "ebay": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f4", + "label": "eBay", + "svg": { + "brands": { + "last_modified": 1525209365019, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M405.2 263.8c-29.1.9-47.2 6.2-47.2 25.3 0 12.4 9.9 25.8 35 25.8 33.7 0 51.6-18.4 51.6-48.4v-3.3c-11.8 0-26.3.1-39.4.6m71.5 39.7c0 9.3.3 18.6 1 26.8h-29.8c-.8-6.9-1.1-13.6-1.1-20.2-16.1 19.8-35.3 25.5-61.9 25.5-39.5 0-60.6-20.9-60.6-45 0-35 28.8-47.3 78.6-48.4 13.7-.3 29-.4 41.7-.4v-3.4c0-23.4-15-33-41-33-19.3 0-33.6 8-35 21.8h-33.7c3.6-34.4 39.7-43.1 71.5-43.1 38.1 0 70.3 13.5 70.3 53.8v65.6zm-349-56.8c-2.3-54.7-87.5-56.6-94.4 0h94.4zm-95 21.4c3.5 58.3 79.2 57.4 91.2 21.6H157c-6.4 34.4-43 46.1-74.4 46.1-57.2 0-82.5-31.5-82.5-74 0-46.8 26.2-77.6 83-77.6 45.3 0 78.4 23.7 78.4 75.4v8.5H32.7zm211 45.7c29.8 0 50.2-21.5 50.2-53.8 0-32.4-20.4-53.8-50.2-53.8-29.6 0-50.2 21.4-50.2 53.8 0 32.3 20.6 53.8 50.2 53.8m-82.2-186h32.1v80.6c15.7-18.7 37.4-24.2 58.7-24.2 35.7 0 75.4 24.1 75.4 76.2 0 43.6-31.5 75.4-76 75.4-23.3 0-45.1-8.3-58.7-24.9 0 6.6-.4 13.2-1.1 19.5h-31.5c.5-10.2 1.1-22.8 1.1-33.1V127.8zM640 189.5l-99.2 194.8h-35.9l28.5-54.1-74.6-140.7h37.5l54.9 109.9L606 189.5h34z" + } + } + }, + "edge": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "ie" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f282", + "label": "Edge Browser", + "svg": { + "brands": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M25.714 228.163c.111-.162.23-.323.342-.485-.021.162-.045.323-.065.485h-.277zm460.572 15.508c0-44.032-7.754-84.465-28.801-122.405C416.498 47.879 343.912 8.001 258.893 8.001 118.962 7.724 40.617 113.214 26.056 227.679c42.429-61.312 117.073-121.376 220.375-124.966 0 0 109.666 0 99.419 104.957H169.997c6.369-37.386 18.554-58.986 34.339-78.926-75.048 34.893-121.85 96.096-120.742 188.315.83 71.448 50.124 144.836 120.743 171.976 83.357 31.847 192.776 7.2 240.132-21.324V363.307c-80.864 56.494-270.871 60.925-272.255-67.572h314.073v-52.064z" + } + } + }, + "edit": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "pen", + "pencil", + "update", + "write" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f044", + "label": "Edit", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M402.6 83.2l90.2 90.2c3.8 3.8 3.8 10 0 13.8L274.4 405.6l-92.8 10.3c-12.4 1.4-22.9-9.1-21.5-21.5l10.3-92.8L388.8 83.2c3.8-3.8 10-3.8 13.8 0zm162-22.9l-48.8-48.8c-15.2-15.2-39.9-15.2-55.2 0l-35.4 35.4c-3.8 3.8-3.8 10 0 13.8l90.2 90.2c3.8 3.8 10 3.8 13.8 0l35.4-35.4c15.2-15.3 15.2-40 0-55.2zM384 346.2V448H64V128h229.8c3.2 0 6.2-1.3 8.5-3.5l40-40c7.6-7.6 2.2-20.5-8.5-20.5H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V306.2c0-10.7-12.9-16-20.5-8.5l-40 40c-2.2 2.3-3.5 5.3-3.5 8.5z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M402.3 344.9l32-32c5-5 13.7-1.5 13.7 5.7V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h273.5c7.1 0 10.7 8.6 5.7 13.7l-32 32c-1.5 1.5-3.5 2.3-5.7 2.3H48v352h352V350.5c0-2.1.8-4.1 2.3-5.6zm156.6-201.8L296.3 405.7l-90.4 10c-26.2 2.9-48.5-19.2-45.6-45.6l10-90.4L432.9 17.1c22.9-22.9 59.9-22.9 82.7 0l43.2 43.2c22.9 22.9 22.9 60 .1 82.8zM460.1 174L402 115.9 216.2 301.8l-7.3 65.3 65.3-7.3L460.1 174zm64.8-79.7l-43.2-43.2c-4.1-4.1-10.8-4.1-14.8 0L436 82l58.1 58.1 30.9-30.9c4-4.2 4-10.8-.1-14.9z" + } + } + }, + "eject": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f052", + "label": "eject", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 384v64c0 17.673-14.327 32-32 32H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h384c17.673 0 32 14.327 32 32zM48.053 320h351.886c41.651 0 63.581-49.674 35.383-80.435L259.383 47.558c-19.014-20.743-51.751-20.744-70.767 0L12.67 239.565C-15.475 270.268 6.324 320 48.053 320z" + } + } + }, + "elementor": { + "changes": [ + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f430", + "label": "Elementor", + "svg": { + "brands": { + "last_modified": 1521653821383, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M425.6 32H22.4C10 32 0 42 0 54.4v403.2C0 470 10 480 22.4 480h403.2c12.4 0 22.4-10 22.4-22.4V54.4C448 42 438 32 425.6 32M164.3 355.5h-39.8v-199h39.8v199zm159.3 0H204.1v-39.8h119.5v39.8zm0-79.6H204.1v-39.8h119.5v39.8zm0-79.7H204.1v-39.8h119.5v39.8z" + } + } + }, + "ellipsis-h": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dots", + "drag", + "kebab", + "list", + "menu", + "nav", + "navigation", + "ol", + "reorder", + "settings", + "ul" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f141", + "label": "Horizontal Ellipsis", + "svg": { + "solid": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z" + } + } + }, + "ellipsis-v": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dots", + "drag", + "kebab", + "list", + "menu", + "nav", + "navigation", + "ol", + "reorder", + "settings", + "ul" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f142", + "label": "Vertical Ellipsis", + "svg": { + "solid": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "192", + "512" + ], + "width": 192, + "height": 512, + "path": "M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" + } + } + }, + "ember": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f423", + "label": "Ember", + "svg": { + "brands": { + "last_modified": 1515426581997, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M639.9 254.6c-1.1-10.7-10.7-6.8-10.7-6.8s-15.6 12.1-29.3 10.7c-13.7-1.3-9.4-32-9.4-32s3-28.1-5.1-30.4c-8.1-2.4-18 7.3-18 7.3s-12.4 13.7-18.3 31.2l-1.6.5s1.9-30.6-.3-37.6c-1.6-3.5-16.4-3.2-18.8 3s-14.2 49.2-15 67.2c0 0-23.1 19.6-43.3 22.8s-25-9.4-25-9.4 54.8-15.3 52.9-59.1c-1.9-43.8-44.2-27.6-49-24-4.6 3.5-29.4 18.4-36.6 59.7-.2 1.4-.7 7.5-.7 7.5s-21.2 14.2-33 18c0 0 33-55.6-7.3-80.9-18.3-11-32.8 12.1-32.8 12.1s54.5-60.7 42.5-112c-5.8-24.4-18-27.1-29.2-23.1-17 6.7-23.5 16.7-23.5 16.7s-22 32-27.1 79.5-12.6 105.1-12.6 105.1-10.5 10.2-20.2 10.7-5.4-28.7-5.4-28.7 7.5-44.6 7-52.1-1.1-11.6-9.9-14.2c-8.9-2.7-18.5 8.6-18.5 8.6s-25.5 38.7-27.7 44.6l-1.3 2.4-1.3-1.6s18-52.7.8-53.5c-17.2-.8-28.5 18.8-28.5 18.8s-19.6 32.8-20.4 36.5l-1.3-1.6s8.1-38.2 6.4-47.6c-1.6-9.4-10.5-7.5-10.5-7.5s-11.3-1.3-14.2 5.9-13.7 55.3-15 70.7c0 0-28.2 20.2-46.8 20.4-18.5.3-16.7-11.8-16.7-11.8s68-23.3 49.4-69.2c-8.3-11.8-18-15.5-31.7-15.3-13.7.3-30.3 8.6-41.3 33.3-5.3 11.8-6.8 23-7.8 31.5 0 0-12.3 2.4-18.8-2.9s-10 0-10 0-11.2 14-.1 18.3 28.1 6.1 28.1 6.1c1.6 7.5 6.2 19.5 19.6 29.7 20.2 15.3 58.8-1.3 58.8-1.3l15.9-8.8s.5 14.6 12.1 16.7c11.6 2.1 16.4 1 36.5-47.9 11.8-25 12.6-23.6 12.6-23.6l1.3-.3s-9.1 46.8-5.6 59.7C187.7 319.4 203 318 203 318s8.3 2.4 15-21.2c6.7-23.6 19.6-49.9 19.6-49.9h1.6s-5.6 48.1 3 63.7c8.6 15.6 30.9 5.3 30.9 5.3s15.6-7.8 18-10.2c0 0 18.5 15.8 44.6 12.9 58.3-11.5 79.1-25.9 79.1-25.9s10 24.4 41.1 26.7c35.5 2.7 54.8-18.6 54.8-18.6s-.3 13.5 12.1 18.6c12.4 5.1 20.7-22.8 20.7-22.8l20.7-57.2h1.9s1.1 37.3 21.5 43.2 47-13.7 47-13.7 6.4-3.5 5.3-14.3zm-578 5.3c.8-32 21.8-45.9 29-39 7.3 7 4.6 22-9.1 31.4-13.7 9.5-19.9 7.6-19.9 7.6zm272.8-123.8s19.1-49.7 23.6-25.5-40 96.2-40 96.2c.5-16.2 16.4-70.7 16.4-70.7zm22.8 138.4c-12.6 33-43.3 19.6-43.3 19.6s-3.5-11.8 6.4-44.9 33.3-20.2 33.3-20.2 16.2 12.4 3.6 45.5zm84.6-14.6s-3-10.5 8.1-30.6c11-20.2 19.6-9.1 19.6-9.1s9.4 10.2-1.3 25.5-26.4 14.2-26.4 14.2z" + } + } + }, + "empire": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1d1", + "label": "Galactic Empire", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M287.6 54.2c-10.8-2.2-22.1-3.3-33.5-3.6V32.4c78.1 2.2 146.1 44 184.6 106.6l-15.8 9.1c-6.1-9.7-12.7-18.8-20.2-27.1l-18 15.5c-26-29.6-61.4-50.7-101.9-58.4l4.8-23.9zM53.4 322.4l23-7.7c-6.4-18.3-10-38.2-10-58.7s3.3-40.4 9.7-58.7l-22.7-7.7c3.6-10.8 8.3-21.3 13.6-31l-15.8-9.1C34 181 24.1 217.5 24.1 256s10 75 27.1 106.6l15.8-9.1c-5.3-10-9.7-20.3-13.6-31.1zM213.1 434c-40.4-8-75.8-29.1-101.9-58.7l-18 15.8c-7.5-8.6-14.4-17.7-20.2-27.4l-16 9.4c38.5 62.3 106.8 104.3 184.9 106.6v-18.3c-11.3-.3-22.7-1.7-33.5-3.6l4.7-23.8zM93.3 120.9l18 15.5c26-29.6 61.4-50.7 101.9-58.4l-4.7-23.8c10.8-2.2 22.1-3.3 33.5-3.6V32.4C163.9 34.6 95.9 76.4 57.4 139l15.8 9.1c6-9.7 12.6-18.9 20.1-27.2zm309.4 270.2l-18-15.8c-26 29.6-61.4 50.7-101.9 58.7l4.7 23.8c-10.8 1.9-22.1 3.3-33.5 3.6v18.3c78.1-2.2 146.4-44.3 184.9-106.6l-16.1-9.4c-5.7 9.7-12.6 18.8-20.1 27.4zM496 256c0 137-111 248-248 248S0 393 0 256 111 8 248 8s248 111 248 248zm-12.2 0c0-130.1-105.7-235.8-235.8-235.8S12.2 125.9 12.2 256 117.9 491.8 248 491.8 483.8 386.1 483.8 256zm-39-106.6l-15.8 9.1c5.3 9.7 10 20.2 13.6 31l-22.7 7.7c6.4 18.3 9.7 38.2 9.7 58.7s-3.6 40.4-10 58.7l23 7.7c-3.9 10.8-8.3 21-13.6 31l15.8 9.1C462 331 471.9 294.5 471.9 256s-9.9-75-27.1-106.6zm-183 177.7c16.3-3.3 30.4-11.6 40.7-23.5l51.2 44.8c11.9-13.6 21.3-29.3 27.1-46.8l-64.2-22.1c2.5-7.5 3.9-15.2 3.9-23.5s-1.4-16.1-3.9-23.5l64.5-22.1c-6.1-17.4-15.5-33.2-27.4-46.8l-51.2 44.8c-10.2-11.9-24.4-20.5-40.7-23.8l13.3-66.4c-8.6-1.9-17.7-2.8-27.1-2.8-9.4 0-18.5.8-27.1 2.8l13.3 66.4c-16.3 3.3-30.4 11.9-40.7 23.8l-51.2-44.8c-11.9 13.6-21.3 29.3-27.4 46.8l64.5 22.1c-2.5 7.5-3.9 15.2-3.9 23.5s1.4 16.1 3.9 23.5l-64.2 22.1c5.8 17.4 15.2 33.2 27.1 46.8l51.2-44.8c10.2 11.9 24.4 20.2 40.7 23.5l-13.3 66.7c8.6 1.7 17.7 2.8 27.1 2.8 9.4 0 18.5-1.1 27.1-2.8l-13.3-66.7z" + } + } + }, + "envelope": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "e-mail", + "email", + "letter", + "mail", + "message", + "notification", + "support" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0e0", + "label": "Envelope", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z" + } + } + }, + "envelope-open": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "e-mail", + "email", + "letter", + "mail", + "message", + "notification", + "support" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2b6", + "label": "Envelope Open", + "svg": { + "solid": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M512 464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V200.724a48 48 0 0 1 18.387-37.776c24.913-19.529 45.501-35.365 164.2-121.511C199.412 29.17 232.797-.347 256 .003c23.198-.354 56.596 29.172 73.413 41.433 118.687 86.137 139.303 101.995 164.2 121.512A48 48 0 0 1 512 200.724V464zm-65.666-196.605c-2.563-3.728-7.7-4.595-11.339-1.907-22.845 16.873-55.462 40.705-105.582 77.079-16.825 12.266-50.21 41.781-73.413 41.43-23.211.344-56.559-29.143-73.413-41.43-50.114-36.37-82.734-60.204-105.582-77.079-3.639-2.688-8.776-1.821-11.339 1.907l-9.072 13.196a7.998 7.998 0 0 0 1.839 10.967c22.887 16.899 55.454 40.69 105.303 76.868 20.274 14.781 56.524 47.813 92.264 47.573 35.724.242 71.961-32.771 92.263-47.573 49.85-36.179 82.418-59.97 105.303-76.868a7.998 7.998 0 0 0 1.839-10.967l-9.071-13.196z" + }, + "regular": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M494.586 164.516c-4.697-3.883-111.723-89.95-135.251-108.657C337.231 38.191 299.437 0 256 0c-43.205 0-80.636 37.717-103.335 55.859-24.463 19.45-131.07 105.195-135.15 108.549A48.004 48.004 0 0 0 0 201.485V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V201.509a48 48 0 0 0-17.414-36.993zM464 458a6 6 0 0 1-6 6H54a6 6 0 0 1-6-6V204.347c0-1.813.816-3.526 2.226-4.665 15.87-12.814 108.793-87.554 132.364-106.293C200.755 78.88 232.398 48 256 48c23.693 0 55.857 31.369 73.41 45.389 23.573 18.741 116.503 93.493 132.366 106.316a5.99 5.99 0 0 1 2.224 4.663V458zm-31.991-187.704c4.249 5.159 3.465 12.795-1.745 16.981-28.975 23.283-59.274 47.597-70.929 56.863C336.636 362.283 299.205 400 256 400c-43.452 0-81.287-38.237-103.335-55.86-11.279-8.967-41.744-33.413-70.927-56.865-5.21-4.187-5.993-11.822-1.745-16.981l15.258-18.528c4.178-5.073 11.657-5.843 16.779-1.726 28.618 23.001 58.566 47.035 70.56 56.571C200.143 320.631 232.307 352 256 352c23.602 0 55.246-30.88 73.41-45.389 11.994-9.535 41.944-33.57 70.563-56.568 5.122-4.116 12.601-3.346 16.778 1.727l15.258 18.526z" + } + } + }, + "envelope-square": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "e-mail", + "email", + "letter", + "mail", + "message", + "notification", + "support" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f199", + "label": "Envelope Square", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM178.117 262.104C87.429 196.287 88.353 196.121 64 177.167V152c0-13.255 10.745-24 24-24h272c13.255 0 24 10.745 24 24v25.167c-24.371 18.969-23.434 19.124-114.117 84.938-10.5 7.655-31.392 26.12-45.883 25.894-14.503.218-35.367-18.227-45.883-25.895zM384 217.775V360c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V217.775c13.958 10.794 33.329 25.236 95.303 70.214 14.162 10.341 37.975 32.145 64.694 32.01 26.887.134 51.037-22.041 64.72-32.025 61.958-44.965 81.325-59.406 95.283-70.199z" + } + } + }, + "envira": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "leaf" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f299", + "label": "Envira Gallery", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 32c477.6 0 366.6 317.3 367.1 366.3L448 480h-26l-70.4-71.2c-39 4.2-124.4 34.5-214.4-37C47 300.3 52 214.7 0 32zm79.7 46c-49.7-23.5-5.2 9.2-5.2 9.2 45.2 31.2 66 73.7 90.2 119.9 31.5 60.2 79 139.7 144.2 167.7 65 28 34.2 12.5 6-8.5-28.2-21.2-68.2-87-91-130.2-31.7-60-61-118.6-144.2-158.1z" + } + } + }, + "equals": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f52c", + "label": "Equals", + "svg": { + "solid": { + "last_modified": 1525967154568, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M416 304H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32zm0-192H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" + } + } + }, + "eraser": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "remove" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f12d", + "label": "eraser", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M497.941 273.941c18.745-18.745 18.745-49.137 0-67.882l-160-160c-18.745-18.745-49.136-18.746-67.883 0l-256 256c-18.745 18.745-18.745 49.137 0 67.882l96 96A48.004 48.004 0 0 0 144 480h356c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H355.883l142.058-142.059zm-302.627-62.627l137.373 137.373L265.373 416H150.628l-80-80 124.686-124.686z" + } + } + }, + "erlang": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f39d", + "label": "Erlang", + "svg": { + "brands": { + "last_modified": 1515426581997, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M21.7 246.4c-.1 86.8 29 159.5 78.7 212.1H0v-405h87.2c-41.5 50.2-65.6 116.2-65.5 192.9zM640 53.6h-83.6c31.4 42.7 48.7 97.5 46.2 162.7.5 6 .5 11.7 0 24.1H230.2c-.2 109.7 38.9 194.9 138.6 195.3 68.5-.3 118-51 151.9-106.1l96.4 48.2c-17.4 30.9-36.5 57.8-57.9 80.8H640v-405zm-80.8 405s0-.1 0 0h-.2.2zm-3.1-405h.3l-.1-.1-.2.1zm-230.7 9.6c-45.9.1-85.1 33.5-89.2 83.2h169.9c-1.1-49.7-34.5-83.1-80.7-83.2z" + } + } + }, + "ethereum": { + "changes": [ + "5.0.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f42e", + "label": "Ethereum", + "svg": { + "brands": { + "last_modified": 1521653821384, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M311.9 260.8L160 353.6 8 260.8 160 0l151.9 260.8zM160 383.4L8 290.6 160 512l152-221.4-152 92.8z" + } + } + }, + "etsy": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2d7", + "label": "Etsy", + "svg": { + "brands": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M384 348c-1.75 10.75-13.75 110-15.5 132-117.879-4.299-219.895-4.743-368.5 0v-25.5c45.457-8.948 60.627-8.019 61-35.25 1.793-72.322 3.524-244.143 0-322-1.029-28.46-12.13-26.765-61-36v-25.5c73.886 2.358 255.933 8.551 362.999-3.75-3.5 38.25-7.75 126.5-7.75 126.5H332C320.947 115.665 313.241 68 277.25 68h-137c-10.25 0-10.75 3.5-10.75 9.75V241.5c58 .5 88.5-2.5 88.5-2.5 29.77-.951 27.56-8.502 40.75-65.251h25.75c-4.407 101.351-3.91 61.829-1.75 160.25H257c-9.155-40.086-9.065-61.045-39.501-61.5 0 0-21.5-2-88-2v139c0 26 14.25 38.25 44.25 38.25H263c63.636 0 66.564-24.996 98.751-99.75H384z" + } + } + }, + "euro-sign": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "eur", + "eur" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f153", + "label": "Euro Sign", + "svg": { + "solid": { + "last_modified": 1501873838000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M310.706 413.765c-1.314-6.63-7.835-10.872-14.424-9.369-10.692 2.439-27.422 5.413-45.426 5.413-56.763 0-101.929-34.79-121.461-85.449h113.689a12 12 0 0 0 11.708-9.369l6.373-28.36c1.686-7.502-4.019-14.631-11.708-14.631H115.22c-1.21-14.328-1.414-28.287.137-42.245H261.95a12 12 0 0 0 11.723-9.434l6.512-29.755c1.638-7.484-4.061-14.566-11.723-14.566H130.184c20.633-44.991 62.69-75.03 117.619-75.03 14.486 0 28.564 2.25 37.851 4.145 6.216 1.268 12.347-2.498 14.002-8.623l11.991-44.368c1.822-6.741-2.465-13.616-9.326-14.917C290.217 34.912 270.71 32 249.635 32 152.451 32 74.03 92.252 45.075 176H12c-6.627 0-12 5.373-12 12v29.755c0 6.627 5.373 12 12 12h21.569c-1.009 13.607-1.181 29.287-.181 42.245H12c-6.627 0-12 5.373-12 12v28.36c0 6.627 5.373 12 12 12h30.114C67.139 414.692 145.264 480 249.635 480c26.301 0 48.562-4.544 61.101-7.788 6.167-1.595 10.027-7.708 8.788-13.957l-8.818-44.49z" + } + } + }, + "exchange-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "arrows", + "exchange", + "reciprocate", + "return", + "swap", + "transfer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f362", + "label": "Alternate Exchange", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M0 168v-16c0-13.255 10.745-24 24-24h360V80c0-21.367 25.899-32.042 40.971-16.971l80 80c9.372 9.373 9.372 24.569 0 33.941l-80 80C409.956 271.982 384 261.456 384 240v-48H24c-13.255 0-24-10.745-24-24zm488 152H128v-48c0-21.314-25.862-32.08-40.971-16.971l-80 80c-9.372 9.373-9.372 24.569 0 33.941l80 80C102.057 463.997 128 453.437 128 432v-48h360c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z" + } + } + }, + "exclamation": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alert", + "danger", + "error", + "important", + "notice", + "notification", + "notify", + "problem", + "warning" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f12a", + "label": "exclamation", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "192", + "512" + ], + "width": 192, + "height": 512, + "path": "M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z" + } + } + }, + "exclamation-circle": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alert", + "danger", + "error", + "important", + "notice", + "notification", + "notify", + "problem", + "warning" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f06a", + "label": "Exclamation Circle", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z" + } + } + }, + "exclamation-triangle": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alert", + "danger", + "error", + "important", + "notice", + "notification", + "notify", + "problem", + "warning" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f071", + "label": "Exclamation Triangle", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z" + } + } + }, + "expand": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "resize" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f065", + "label": "Expand", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 180V56c0-13.3 10.7-24 24-24h124c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H64v84c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12zM288 44v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V56c0-13.3-10.7-24-24-24H300c-6.6 0-12 5.4-12 12zm148 276h-40c-6.6 0-12 5.4-12 12v84h-84c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24V332c0-6.6-5.4-12-12-12zM160 468v-40c0-6.6-5.4-12-12-12H64v-84c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v124c0 13.3 10.7 24 24 24h124c6.6 0 12-5.4 12-12z" + } + } + }, + "expand-arrows-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows-alt", + "bigger", + "enlarge", + "move", + "resize" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f31e", + "label": "Alternate Expand Arrows", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448.1", + "512" + ], + "width": 448, + "height": 512, + "path": "M448.1 344v112c0 13.3-10.7 24-24 24h-112c-21.4 0-32.1-25.9-17-41l36.2-36.2L224 295.6 116.8 402.9 153 439c15.1 15.1 4.4 41-17 41H24c-13.3 0-24-10.7-24-24V344c0-21.4 25.9-32.1 41-17l36.2 36.2L184.5 256 77.2 148.7 41 185c-15.1 15.1-41 4.4-41-17V56c0-13.3 10.7-24 24-24h112c21.4 0 32.1 25.9 17 41l-36.2 36.2L224 216.4l107.3-107.3L295.1 73c-15.1-15.1-4.4-41 17-41h112c13.3 0 24 10.7 24 24v112c0 21.4-25.9 32.1-41 17l-36.2-36.2L263.6 256l107.3 107.3 36.2-36.2c15.1-15.2 41-4.5 41 16.9z" + } + } + }, + "expeditedssl": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f23e", + "label": "ExpeditedSSL", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 43.4C130.6 43.4 35.4 138.6 35.4 256S130.6 468.6 248 468.6 460.6 373.4 460.6 256 365.4 43.4 248 43.4zm-97.4 132.9c0-53.7 43.7-97.4 97.4-97.4s97.4 43.7 97.4 97.4v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6c0-82.1-124-82.1-124 0v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6zM389.7 380c0 9.7-8 17.7-17.7 17.7H124c-9.7 0-17.7-8-17.7-17.7V238.3c0-9.7 8-17.7 17.7-17.7h248c9.7 0 17.7 8 17.7 17.7V380zm-248-137.3v132.9c0 2.5-1.9 4.4-4.4 4.4h-8.9c-2.5 0-4.4-1.9-4.4-4.4V242.7c0-2.5 1.9-4.4 4.4-4.4h8.9c2.5 0 4.4 1.9 4.4 4.4zm141.7 48.7c0 13-7.2 24.4-17.7 30.4v31.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-31.6c-10.5-6.1-17.7-17.4-17.7-30.4 0-19.7 15.8-35.4 35.4-35.4s35.5 15.8 35.5 35.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 478.3C121 486.3 17.7 383 17.7 256S121 25.7 248 25.7 478.3 129 478.3 256 375 486.3 248 486.3z" + } + } + }, + "external-link-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "external-link", + "new", + "open" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f35d", + "label": "Alternate External Link", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M576 24v127.984c0 21.461-25.96 31.98-40.971 16.971l-35.707-35.709-243.523 243.523c-9.373 9.373-24.568 9.373-33.941 0l-22.627-22.627c-9.373-9.373-9.373-24.569 0-33.941L442.756 76.676l-35.703-35.705C391.982 25.9 402.656 0 424.024 0H552c13.255 0 24 10.745 24 24zM407.029 270.794l-16 16A23.999 23.999 0 0 0 384 303.765V448H64V128h264a24.003 24.003 0 0 0 16.97-7.029l16-16C376.089 89.851 365.381 64 344 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V287.764c0-21.382-25.852-32.09-40.971-16.97z" + } + } + }, + "external-link-square-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "external-link-square", + "new", + "open" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f360", + "label": "Alternate External Link Square", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-88 16H248.029c-21.313 0-32.08 25.861-16.971 40.971l31.984 31.987L67.515 364.485c-4.686 4.686-4.686 12.284 0 16.971l31.029 31.029c4.687 4.686 12.285 4.686 16.971 0l195.526-195.526 31.988 31.991C358.058 263.977 384 253.425 384 231.979V120c0-13.255-10.745-24-24-24z" + } + } + }, + "eye": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "optic", + "see", + "seen", + "show", + "sight", + "views", + "visible" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f06e", + "label": "Eye", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M569.354 231.631C512.969 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-75.162 0-136-60.827-136-136 0-75.162 60.826-136 136-136 75.162 0 136 60.826 136 136 0 75.162-60.826 136-136 136zm104-136c0 57.438-46.562 104-104 104s-104-46.562-104-104c0-17.708 4.431-34.379 12.236-48.973l-.001.032c0 23.651 19.173 42.823 42.824 42.823s42.824-19.173 42.824-42.823c0-23.651-19.173-42.824-42.824-42.824l-.032.001C253.621 156.431 270.292 152 288 152c57.438 0 104 46.562 104 104z" + }, + "regular": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M569.354 231.631C512.97 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-102.556 0-192.091-54.701-240-136 44.157-74.933 123.677-127.27 216.162-135.007C273.958 131.078 280 144.83 280 160c0 30.928-25.072 56-56 56s-56-25.072-56-56l.001-.042C157.794 179.043 152 200.844 152 224c0 75.111 60.889 136 136 136s136-60.889 136-136c0-31.031-10.4-59.629-27.895-82.515C451.704 164.638 498.009 205.106 528 256c-47.908 81.299-137.444 136-240 136z" + } + } + }, + "eye-dropper": { + "changes": [ + "4.2", + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "eyedropper" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1fb", + "label": "Eye Dropper", + "svg": { + "solid": { + "last_modified": 1529520111657, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M50.75 333.25c-12 12-18.75 28.28-18.75 45.26V424L0 480l32 32 56-32h45.49c16.97 0 33.25-6.74 45.25-18.74l126.64-126.62-128-128L50.75 333.25zM483.88 28.12c-37.47-37.5-98.28-37.5-135.75 0l-77.09 77.09-13.1-13.1c-9.44-9.44-24.65-9.31-33.94 0l-40.97 40.97c-9.37 9.37-9.37 24.57 0 33.94l161.94 161.94c9.44 9.44 24.65 9.31 33.94 0L419.88 288c9.37-9.37 9.37-24.57 0-33.94l-13.1-13.1 77.09-77.09c37.51-37.48 37.51-98.26.01-135.75z" + } + } + }, + "eye-slash": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blind", + "hide", + "show", + "toggle", + "unseen", + "views", + "visible", + "visiblity" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f070", + "label": "Eye Slash", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M286.693 391.984l32.579 46.542A333.958 333.958 0 0 1 288 440C168.19 440 63.031 376.051 6.646 280.369a47.999 47.999 0 0 1 0-48.739c24.023-40.766 56.913-75.775 96.024-102.537l57.077 81.539C154.736 224.82 152 240.087 152 256c0 74.736 60.135 135.282 134.693 135.984zm282.661-111.615c-31.667 53.737-78.747 97.46-135.175 125.475l.011.015 41.47 59.2c7.6 10.86 4.96 25.82-5.9 33.42l-13.11 9.18c-10.86 7.6-25.82 4.96-33.42-5.9L100.34 46.94c-7.6-10.86-4.96-25.82 5.9-33.42l13.11-9.18c10.86-7.6 25.82-4.96 33.42 5.9l51.038 72.617C230.68 75.776 258.905 72 288 72c119.81 0 224.969 63.949 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM424 256c0-75.174-60.838-136-136-136-17.939 0-35.056 3.473-50.729 9.772l19.299 27.058c25.869-8.171 55.044-6.163 80.4 7.41h-.03c-23.65 0-42.82 19.17-42.82 42.82 0 23.626 19.147 42.82 42.82 42.82 23.65 0 42.82-19.17 42.82-42.82v-.03c18.462 34.49 16.312 77.914-8.25 110.95v.01l19.314 27.061C411.496 321.2 424 290.074 424 256zM262.014 356.727l-77.53-110.757c-5.014 52.387 29.314 98.354 77.53 110.757z" + }, + "regular": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M272.702 359.139c-80.483-9.011-136.212-86.886-116.93-167.042l116.93 167.042zM288 392c-102.556 0-192.092-54.701-240-136 21.755-36.917 52.1-68.342 88.344-91.658l-27.541-39.343C67.001 152.234 31.921 188.741 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.004 376.006 168.14 440 288 440a332.89 332.89 0 0 0 39.648-2.367l-32.021-45.744A284.16 284.16 0 0 1 288 392zm281.354-111.631c-33.232 56.394-83.421 101.742-143.554 129.492l48.116 68.74c3.801 5.429 2.48 12.912-2.949 16.712L450.23 509.83c-5.429 3.801-12.912 2.48-16.712-2.949L102.084 33.399c-3.801-5.429-2.48-12.912 2.949-16.712L125.77 2.17c5.429-3.801 12.912-2.48 16.712 2.949l55.526 79.325C226.612 76.343 256.808 72 288 72c119.86 0 224.996 63.994 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM528 256c-44.157-74.933-123.677-127.27-216.162-135.007C302.042 131.078 296 144.83 296 160c0 30.928 25.072 56 56 56s56-25.072 56-56l-.001-.042c30.632 57.277 16.739 130.26-36.928 171.719l26.695 38.135C452.626 346.551 498.308 306.386 528 256z" + } + } + }, + "facebook": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "facebook-official", + "social network" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f09a", + "label": "Facebook", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 56.7v398.5c0 13.7-11.1 24.7-24.7 24.7H309.1V306.5h58.2l8.7-67.6h-67v-43.2c0-19.6 5.4-32.9 33.5-32.9h35.8v-60.5c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9h-58.4v67.6h58.4V480H24.7C11.1 480 0 468.9 0 455.3V56.7C0 43.1 11.1 32 24.7 32h398.5c13.7 0 24.8 11.1 24.8 24.7z" + } + } + }, + "facebook-f": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "facebook" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f39e", + "label": "Facebook F", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "264", + "512" + ], + "width": 264, + "height": 512, + "path": "M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229" + } + } + }, + "facebook-messenger": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f39f", + "label": "Facebook Messenger", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M224 32C15.9 32-77.5 278 84.6 400.6V480l75.7-42c142.2 39.8 285.4-59.9 285.4-198.7C445.8 124.8 346.5 32 224 32zm23.4 278.1L190 250.5 79.6 311.6l121.1-128.5 57.4 59.6 110.4-61.1-121.1 128.5z" + } + } + }, + "facebook-square": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "social network" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f082", + "label": "Facebook Square", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 80v352c0 26.5-21.5 48-48 48h-85.3V302.8h60.6l8.7-67.6h-69.3V192c0-19.6 5.4-32.9 33.5-32.9H384V98.7c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9H184v67.6h60.9V480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z" + } + } + }, + "fast-backward": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beginning", + "first", + "previous", + "rewind", + "start" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f049", + "label": "fast-backward", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M0 436V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v151.9L235.5 71.4C256.1 54.3 288 68.6 288 96v131.9L459.5 71.4C480.1 54.3 512 68.6 512 96v320c0 27.4-31.9 41.7-52.5 24.6L288 285.3V416c0 27.4-31.9 41.7-52.5 24.6L64 285.3V436c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12z" + } + } + }, + "fast-forward": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "end", + "last", + "next" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f050", + "label": "fast-forward", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M512 76v360c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V284.1L276.5 440.6c-20.6 17.2-52.5 2.8-52.5-24.6V284.1L52.5 440.6C31.9 457.8 0 443.4 0 416V96c0-27.4 31.9-41.7 52.5-24.6L224 226.8V96c0-27.4 31.9-41.7 52.5-24.6L448 226.8V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12z" + } + } + }, + "fax": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f1ac", + "label": "Fax", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M128 144v320c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V144c0-26.51 21.49-48 48-48h32c26.51 0 48 21.49 48 48zm384 64v256c0 26.51-21.49 48-48 48H192c-26.51 0-48-21.49-48-48V40c0-22.091 17.909-40 40-40h207.432a39.996 39.996 0 0 1 28.284 11.716l48.569 48.569A39.999 39.999 0 0 1 480 88.568v74.174c18.641 6.591 32 24.36 32 45.258zm-320-16h240V96h-24c-13.203 0-24-10.797-24-24V48H192v144zm96 204c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm128 128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40z" + } + } + }, + "feather": { + "changes": [ + "5.0.13", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "light", + "plucked", + "quill" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f52d", + "label": "Feather", + "svg": { + "solid": { + "last_modified": 1529520111659, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M467.14 44.84c-62.55-62.48-161.67-64.78-252.28 25.73-78.61 78.52-60.98 60.92-85.75 85.66-60.46 60.39-70.39 150.83-63.64 211.17l178.44-178.25c6.26-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.6 9.37 33.98 0l66.1-66.03C159.42 454.65 279 457.11 353.95 384h-98.19l147.57-49.14c49.99-49.93 36.38-36.18 46.31-46.86h-97.78l131.54-43.8c45.44-74.46 34.31-148.84-16.26-199.36z" + } + } + }, + "feather-alt": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "light", + "plucked", + "quill" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f56b", + "label": "Feather Alt", + "svg": { + "solid": { + "last_modified": 1529520111658, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M512 0C460.22 3.56 96.44 38.2 71.01 287.61c-3.09 26.66-4.84 53.44-5.99 80.24l178.87-178.69c6.25-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.59 9.37 33.98 0l57.13-57.07c42.09-.14 84.15-2.53 125.96-7.36 53.48-5.44 97.02-26.47 132.58-56.54H255.74l146.79-48.88c11.25-14.89 21.37-30.71 30.45-47.12h-81.14l106.54-53.21C500.29 132.86 510.19 26.26 512 0z" + } + } + }, + "female": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "human", + "person", + "profile", + "user", + "woman" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f182", + "label": "Female", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M128 0c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64S92.654 0 128 0m119.283 354.179l-48-192A24 24 0 0 0 176 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H80a24 24 0 0 0-23.283 18.179l-48 192C4.935 369.305 16.383 384 32 384h56v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V384h56c15.591 0 27.071-14.671 23.283-29.821z" + } + } + }, + "fighter-jet": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "fast", + "fly", + "goose", + "maverick", + "plane", + "quick", + "top gun", + "transportation", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0fb", + "label": "fighter-jet", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M544 224l-128-16-48-16h-24L227.158 44h39.509C278.333 44 288 41.375 288 38s-9.667-6-21.333-6H152v12h16v164h-48l-66.667-80H18.667L8 138.667V208h8v16h48v2.666l-64 8v42.667l64 8V288H16v16H8v69.333L18.667 384h34.667L120 304h48v164h-16v12h114.667c11.667 0 21.333-2.625 21.333-6s-9.667-6-21.333-6h-39.509L344 320h24l48-16 128-16c96-21.333 96-26.583 96-32 0-5.417 0-10.667-96-32z" + } + } + }, + "file": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "new", + "page", + "pdf", + "resume" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f15b", + "label": "File", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48z" + } + } + }, + "file-alt": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "file-text", + "invoice", + "new", + "page", + "pdf" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f15c", + "label": "Alternate File", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M288 248v28c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-28c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm-12 72H108c-6.6 0-12 5.4-12 12v28c0 6.6 5.4 12 12 12h168c6.6 0 12-5.4 12-12v-28c0-6.6-5.4-12-12-12zm108-188.1V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48C0 21.5 21.5 0 48 0h204.1C264.8 0 277 5.1 286 14.1L369.9 98c9 8.9 14.1 21.2 14.1 33.9zm-128-80V128h76.1L256 51.9zM336 464V176H232c-13.3 0-24-10.7-24-24V48H48v416h288z" + } + } + }, + "file-archive": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + ".zip", + "bundle", + "compress", + "compression", + "download", + "zip" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c6", + "label": "Archive File", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M224 136V0h-63.6v32h-32V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM95.9 32h32v32h-32V32zm32.3 384c-33.2 0-58-30.4-51.4-62.9L96.4 256v-32h32v-32h-32v-32h32v-32h-32V96h32V64h32v32h-32v32h32v32h-32v32h32v32h-32v32h22.1c5.7 0 10.7 4.1 11.8 9.7l17.3 87.7c6.4 32.4-18.4 62.6-51.4 62.6zm32.7-53c0 14.9-14.5 27-32.4 27S96 378 96 363c0-14.9 14.5-27 32.4-27s32.5 12.1 32.5 27zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM256 51.882L332.118 128H256V51.882zM336 464H48V48h79.714v16h32V48H208v104c0 13.255 10.745 24 24 24h104v288zM192.27 96h-32V64h32v32zm-32 0v32h-32V96h32zm0 64v32h-32v-32h32zm32 0h-32v-32h32v32zm1.909 105.678A12 12 0 0 0 182.406 256H160.27v-32h-32v32l-19.69 97.106C101.989 385.611 126.834 416 160 416c33.052 0 57.871-30.192 51.476-62.62l-17.297-87.702zM160.27 390.073c-17.918 0-32.444-12.105-32.444-27.036 0-14.932 14.525-27.036 32.444-27.036s32.444 12.105 32.444 27.036c0 14.931-14.526 27.036-32.444 27.036zm32-166.073h-32v-32h32v32z" + } + } + }, + "file-audio": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c7", + "label": "Audio File", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm144-76.024c0 10.691-12.926 16.045-20.485 8.485L136 360.486h-28c-6.627 0-12-5.373-12-12v-56c0-6.627 5.373-12 12-12h28l35.515-36.947c7.56-7.56 20.485-2.206 20.485 8.485v135.952zm41.201-47.13c9.051-9.297 9.06-24.133.001-33.439-22.149-22.752 12.235-56.246 34.395-33.481 27.198 27.94 27.212 72.444.001 100.401-21.793 22.386-56.947-10.315-34.397-33.481z" + } + } + }, + "file-code": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c9", + "label": "Code File", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zM123.206 400.505a5.4 5.4 0 0 1-7.633.246l-64.866-60.812a5.4 5.4 0 0 1 0-7.879l64.866-60.812a5.4 5.4 0 0 1 7.633.246l19.579 20.885a5.4 5.4 0 0 1-.372 7.747L101.65 336l40.763 35.874a5.4 5.4 0 0 1 .372 7.747l-19.579 20.884zm51.295 50.479l-27.453-7.97a5.402 5.402 0 0 1-3.681-6.692l61.44-211.626a5.402 5.402 0 0 1 6.692-3.681l27.452 7.97a5.4 5.4 0 0 1 3.68 6.692l-61.44 211.626a5.397 5.397 0 0 1-6.69 3.681zm160.792-111.045l-64.866 60.812a5.4 5.4 0 0 1-7.633-.246l-19.58-20.885a5.4 5.4 0 0 1 .372-7.747L284.35 336l-40.763-35.874a5.4 5.4 0 0 1-.372-7.747l19.58-20.885a5.4 5.4 0 0 1 7.633-.246l64.866 60.812a5.4 5.4 0 0 1-.001 7.879z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm101.677-115.115L116.854 320l32.822-28.885a8.793 8.793 0 0 0 .605-12.624l-17.403-18.564c-3.384-3.613-8.964-3.662-12.438-.401L62.78 313.58c-3.703 3.474-3.704 9.367.001 12.84l57.659 54.055a8.738 8.738 0 0 0 6.012 2.381 8.746 8.746 0 0 0 6.427-2.782l17.403-18.563a8.795 8.795 0 0 0-.605-12.626zm84.284-127.85l-24.401-7.084a8.796 8.796 0 0 0-10.905 5.998L144.04 408.061c-1.353 4.66 1.338 9.552 5.998 10.905l24.403 7.084c4.68 1.355 9.557-1.354 10.905-5.998l54.612-188.112c1.354-4.66-1.337-9.552-5.997-10.905zm87.258 92.545l-57.658-54.055c-3.526-3.307-9.099-3.165-12.439.401l-17.403 18.563a8.795 8.795 0 0 0 .605 12.625L267.146 320l-32.822 28.885a8.793 8.793 0 0 0-.605 12.624l17.403 18.564a8.797 8.797 0 0 0 12.439.401h-.001l57.66-54.055c3.703-3.473 3.703-9.366-.001-12.839z" + } + } + }, + "file-contract": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agreement", + "binding", + "document", + "legal", + "signature" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f56c", + "label": "File Contract", + "svg": { + "solid": { + "last_modified": 1529520111659, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm192.81 248H304c8.84 0 16 7.16 16 16s-7.16 16-16 16h-47.19c-16.45 0-31.27-9.14-38.64-23.86-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34a15.986 15.986 0 0 1-14.31 8.84c-.38 0-.75-.02-1.14-.05-6.45-.45-12-4.75-14.03-10.89L144 354.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.77-16.19 54.05-9.7 66 14.16 2.02 4.06 5.96 6.5 10.16 6.5zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" + } + } + }, + "file-download": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f56d", + "label": "File Download", + "svg": { + "solid": { + "last_modified": 1529520111660, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm76.45 211.36l-96.42 95.7c-6.65 6.61-17.39 6.61-24.04 0l-96.42-95.7C73.42 337.29 80.54 320 94.82 320H160v-80c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v80h65.18c14.28 0 21.4 17.29 11.27 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" + } + } + }, + "file-excel": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c3", + "label": "Excel File", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm60.1 106.5L224 336l60.1 93.5c5.1 8-.6 18.5-10.1 18.5h-34.9c-4.4 0-8.5-2.4-10.6-6.3C208.9 405.5 192 373 192 373c-6.4 14.8-10 20-36.6 68.8-2.1 3.9-6.1 6.3-10.5 6.3H110c-9.5 0-15.2-10.5-10.1-18.5l60.3-93.5-60.3-93.5c-5.2-8 .6-18.5 10.1-18.5h34.8c4.4 0 8.5 2.4 10.6 6.3 26.1 48.8 20 33.6 36.6 68.5 0 0 6.1-11.7 36.6-68.5 2.1-3.9 6.2-6.3 10.6-6.3H274c9.5-.1 15.2 10.4 10.1 18.4zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm212-240h-28.8c-4.4 0-8.4 2.4-10.5 6.3-18 33.1-22.2 42.4-28.6 57.7-13.9-29.1-6.9-17.3-28.6-57.7-2.1-3.9-6.2-6.3-10.6-6.3H124c-9.3 0-15 10-10.4 18l46.3 78-46.3 78c-4.7 8 1.1 18 10.4 18h28.9c4.4 0 8.4-2.4 10.5-6.3 21.7-40 23-45 28.6-57.7 14.9 30.2 5.9 15.9 28.6 57.7 2.1 3.9 6.2 6.3 10.6 6.3H260c9.3 0 15-10 10.4-18L224 320c.7-1.1 30.3-50.5 46.3-78 4.7-8-1.1-18-10.3-18z" + } + } + }, + "file-export": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f56e", + "label": "File Export", + "svg": { + "solid": { + "last_modified": 1529520111660, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zM192 336v-32c0-8.84 7.16-16 16-16h176V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V352H208c-8.84 0-16-7.16-16-16zm379.05-28.02l-95.7-96.43c-10.06-10.14-27.36-3.01-27.36 11.27V288H384v64h63.99v65.18c0 14.28 17.29 21.41 27.36 11.27l95.7-96.42c6.6-6.66 6.6-17.4 0-24.05z" + } + } + }, + "file-image": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c5", + "label": "Image File", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm32-48h224V288l-23.5-23.5c-4.7-4.7-12.3-4.7-17 0L176 352l-39.5-39.5c-4.7-4.7-12.3-4.7-17 0L80 352v64zm48-240c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z" + } + } + }, + "file-import": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f56f", + "label": "File Import", + "svg": { + "solid": { + "last_modified": 1529520111661, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M16 288c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h112v-64H16zm336-152V0H152c-13.3 0-24 10.7-24 24v264h127.99v-65.18c0-14.28 17.29-21.41 27.36-11.27l95.7 96.43c6.6 6.65 6.6 17.39 0 24.04l-95.7 96.42c-10.06 10.14-27.36 3.01-27.36-11.27V352H128v136c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H376c-13.2 0-24-10.8-24-24zm153-31L407.1 7c-4.5-4.5-10.6-7-17-7H384v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" + } + } + }, + "file-invoice": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bill", + "document", + "receipt" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f570", + "label": "File Invoice", + "svg": { + "solid": { + "last_modified": 1529520111662, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M288 256H96v64h192v-64zm89-151L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm256 304c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-200v96c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-96c0-8.84 7.16-16 16-16h224c8.84 0 16 7.16 16 16z" + } + } + }, + "file-invoice-dollar": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "$", + "bill", + "document", + "dollar-sign", + "money", + "receipt", + "usd" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f571", + "label": "File Invoice with US Dollar", + "svg": { + "solid": { + "last_modified": 1529520111661, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 80v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8zm144 263.88V440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-24.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V232c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v24.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07z" + } + } + }, + "file-medical": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f477", + "label": "Medical File", + "svg": { + "solid": { + "last_modified": 1521653821449, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 160v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8z" + } + } + }, + "file-medical-alt": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f478", + "label": "Alternate Medical File", + "svg": { + "solid": { + "last_modified": 1521653821449, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M288 136V0H88C74.7 0 64 10.7 64 24v232H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h140.9c3 0 5.8 1.7 7.2 4.4l19.9 39.8 56.8-113.7c2.9-5.9 11.4-5.9 14.3 0l34.7 69.5H352c8.8 0 16 7.2 16 16s-7.2 16-16 16h-89.9L240 275.8l-56.8 113.7c-2.9 5.9-11.4 5.9-14.3 0L134.1 320H64v168c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H312c-13.2 0-24-10.8-24-24zm153-31L343.1 7c-4.5-4.5-10.6-7-17-7H320v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" + } + } + }, + "file-pdf": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c1", + "label": "PDF File", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm250.2-143.7c-12.2-12-47-8.7-64.4-6.5-17.2-10.5-28.7-25-36.8-46.3 3.9-16.1 10.1-40.6 5.4-56-4.2-26.2-37.8-23.6-42.6-5.9-4.4 16.1-.4 38.5 7 67.1-10 23.9-24.9 56-35.4 74.4-20 10.3-47 26.2-51 46.2-3.3 15.8 26 55.2 76.1-31.2 22.4-7.4 46.8-16.5 68.4-20.1 18.9 10.2 41 17 55.8 17 25.5 0 28-28.2 17.5-38.7zm-198.1 77.8c5.1-13.7 24.5-29.5 30.4-35-19 30.3-30.4 35.7-30.4 35zm81.6-190.6c7.4 0 6.7 32.1 1.8 40.8-4.4-13.9-4.3-40.8-1.8-40.8zm-24.4 136.6c9.7-16.9 18-37 24.7-54.7 8.3 15.1 18.9 27.2 30.1 35.5-20.8 4.3-38.9 13.1-54.8 19.2zm131.6-5s-5 6-37.3-7.8c35.1-2.6 40.9 5.4 37.3 7.8z" + } + } + }, + "file-powerpoint": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c4", + "label": "Powerpoint File", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M193.7 271.2c8.8 0 15.5 2.7 20.3 8.1 9.6 10.9 9.8 32.7-.2 44.1-4.9 5.6-11.9 8.5-21.1 8.5h-26.9v-60.7h27.9zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm53 165.2c0 90.3-88.8 77.6-111.1 77.6V436c0 6.6-5.4 12-12 12h-30.8c-6.6 0-12-5.4-12-12V236.2c0-6.6 5.4-12 12-12h81c44.5 0 72.9 32.8 72.9 77z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm72-60V236c0-6.6 5.4-12 12-12h69.2c36.7 0 62.8 27 62.8 66.3 0 74.3-68.7 66.5-95.5 66.5V404c0 6.6-5.4 12-12 12H132c-6.6 0-12-5.4-12-12zm48.5-87.4h23c7.9 0 13.9-2.4 18.1-7.2 8.5-9.8 8.4-28.5.1-37.8-4.1-4.6-9.9-7-17.4-7h-23.9v52z" + } + } + }, + "file-prescription": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medical", + "medicine", + "rx" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f572", + "label": "File Prescription", + "svg": { + "solid": { + "last_modified": 1529520111662, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm68.53 179.48l11.31 11.31c6.25 6.25 6.25 16.38 0 22.63l-29.9 29.9L304 409.38c6.25 6.25 6.25 16.38 0 22.63l-11.31 11.31c-6.25 6.25-16.38 6.25-22.63 0L240 413.25l-30.06 30.06c-6.25 6.25-16.38 6.25-22.63 0L176 432c-6.25-6.25-6.25-16.38 0-22.63l30.06-30.06L146.74 320H128v48c0 8.84-7.16 16-16 16H96c-8.84 0-16-7.16-16-16V208c0-8.84 7.16-16 16-16h80c35.35 0 64 28.65 64 64 0 24.22-13.62 45.05-33.46 55.92L240 345.38l29.9-29.9c6.25-6.25 16.38-6.25 22.63 0zM176 272h-48v-32h48c8.82 0 16 7.18 16 16s-7.18 16-16 16zm208-150.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" + } + } + }, + "file-signature": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "John Hancock", + "contract", + "document", + "name" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f573", + "label": "File Signature", + "svg": { + "solid": { + "last_modified": 1529520111663, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M218.17 424.14c-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34c-6.37 12.78-25.03 11.37-29.48-2.09L144 386.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.75-16.19 54.06-9.7 66 14.16 1.89 3.78 5.49 5.95 9.36 6.26v-82.12l128-127.09V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24v-40l-128-.11c-16.12-.31-30.58-9.28-37.83-23.75zM384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zm-96 225.06V416h68.99l161.68-162.78-67.88-67.88L288 346.96zm280.54-179.63l-31.87-31.87c-9.94-9.94-26.07-9.94-36.01 0l-27.25 27.25 67.88 67.88 27.25-27.25c9.95-9.94 9.95-26.07 0-36.01z" + } + } + }, + "file-upload": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f574", + "label": "File Upload", + "svg": { + "solid": { + "last_modified": 1529520111664, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm65.18 216.01H224v80c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-80H94.82c-14.28 0-21.41-17.29-11.27-27.36l96.42-95.7c6.65-6.61 17.39-6.61 24.04 0l96.42 95.7c10.15 10.07 3.03 27.36-11.25 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" + } + } + }, + "file-video": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c8", + "label": "Video File", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm228.687-211.303L224 305.374V268c0-11.046-8.954-20-20-20H100c-11.046 0-20 8.954-20 20v104c0 11.046 8.954 20 20 20h104c11.046 0 20-8.954 20-20v-37.374l52.687 52.674C286.704 397.318 304 390.28 304 375.986V264.011c0-14.311-17.309-21.319-27.313-11.314z" + } + } + }, + "file-word": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c2", + "label": "Word File", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm57.1 120H305c7.7 0 13.4 7.1 11.7 14.7l-38 168c-1.2 5.5-6.1 9.3-11.7 9.3h-38c-5.5 0-10.3-3.8-11.6-9.1-25.8-103.5-20.8-81.2-25.6-110.5h-.5c-1.1 14.3-2.4 17.4-25.6 110.5-1.3 5.3-6.1 9.1-11.6 9.1H117c-5.6 0-10.5-3.9-11.7-9.4l-37.8-168c-1.7-7.5 4-14.6 11.7-14.6h24.5c5.7 0 10.7 4 11.8 9.7 15.6 78 20.1 109.5 21 122.2 1.6-10.2 7.3-32.7 29.4-122.7 1.3-5.4 6.1-9.1 11.7-9.1h29.1c5.6 0 10.4 3.8 11.7 9.2 24 100.4 28.8 124 29.6 129.4-.2-11.2-2.6-17.8 21.6-129.2 1-5.6 5.9-9.5 11.5-9.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm220.1-208c-5.7 0-10.6 4-11.7 9.5-20.6 97.7-20.4 95.4-21 103.5-.2-1.2-.4-2.6-.7-4.3-.8-5.1.3.2-23.6-99.5-1.3-5.4-6.1-9.2-11.7-9.2h-13.3c-5.5 0-10.3 3.8-11.7 9.1-24.4 99-24 96.2-24.8 103.7-.1-1.1-.2-2.5-.5-4.2-.7-5.2-14.1-73.3-19.1-99-1.1-5.6-6-9.7-11.8-9.7h-16.8c-7.8 0-13.5 7.3-11.7 14.8 8 32.6 26.7 109.5 33.2 136 1.3 5.4 6.1 9.1 11.7 9.1h25.2c5.5 0 10.3-3.7 11.6-9.1l17.9-71.4c1.5-6.2 2.5-12 3-17.3l2.9 17.3c.1.4 12.6 50.5 17.9 71.4 1.3 5.3 6.1 9.1 11.6 9.1h24.7c5.5 0 10.3-3.7 11.6-9.1 20.8-81.9 30.2-119 34.5-136 1.9-7.6-3.8-14.9-11.6-14.9h-15.8z" + } + } + }, + "fill": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bucket", + "color", + "paint", + "paint bucket" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f575", + "label": "Fill", + "svg": { + "solid": { + "last_modified": 1529520111665, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M502.63 217.06L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.77c-6.24-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.63l86.19 86.18-94.76 94.76c-37.49 37.49-37.49 98.26 0 135.75l117.19 117.19c18.75 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.88-28.12l221.57-221.57c12.49-12.5 12.49-32.76 0-45.26zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.61 58.6c12.49 12.49 32.75 12.49 45.24 0 12.49-12.49 12.49-32.75 0-45.24l-58.61-58.6 58.95-58.95 162.45 162.44-48.35 48.34z" + } + } + }, + "fill-drip": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bucket", + "color", + "drop", + "paint", + "paint bucket", + "spill" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f576", + "label": "Fill Drip", + "svg": { + "solid": { + "last_modified": 1529520111664, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M512 320s-64 92.65-64 128c0 35.35 28.66 64 64 64s64-28.65 64-64-64-128-64-128zm-9.37-102.94L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.76c-6.25-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.62l86.19 86.18-94.76 94.76c-37.49 37.48-37.49 98.26 0 135.75l117.19 117.19c18.74 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.87-28.12l221.57-221.57c12.5-12.5 12.5-32.75.01-45.25zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.6 58.6c12.49 12.49 32.75 12.49 45.24 0s12.49-32.75 0-45.24l-58.6-58.6 58.95-58.95 162.44 162.44-48.34 48.34z" + } + } + }, + "film": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "movie" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f008", + "label": "Film", + "svg": { + "solid": { + "last_modified": 1504646588000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M488 64h-8v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V64H96v20c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12V64h-8C10.7 64 0 74.7 0 88v336c0 13.3 10.7 24 24 24h8v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h320v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h8c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM96 372c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm272 208c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm0-168c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm112 152c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z" + } + } + }, + "filter": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "funnel", + "options" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0b0", + "label": "Filter", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z" + } + } + }, + "fingerprint": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "human", + "id", + "identification", + "lock", + "smudge", + "touch", + "unique", + "unlock" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f577", + "label": "Fingerprint", + "svg": { + "solid": { + "last_modified": 1529520111665, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256.12 245.96c-13.25 0-24 10.74-24 24 1.14 72.25-8.14 141.9-27.7 211.55-2.73 9.72 2.15 30.49 23.12 30.49 10.48 0 20.11-6.92 23.09-17.52 13.53-47.91 31.04-125.41 29.48-224.52.01-13.25-10.73-24-23.99-24zm-.86-81.73C194 164.16 151.25 211.3 152.1 265.32c.75 47.94-3.75 95.91-13.37 142.55-2.69 12.98 5.67 25.69 18.64 28.36 13.05 2.67 25.67-5.66 28.36-18.64 10.34-50.09 15.17-101.58 14.37-153.02-.41-25.95 19.92-52.49 54.45-52.34 31.31.47 57.15 25.34 57.62 55.47.77 48.05-2.81 96.33-10.61 143.55-2.17 13.06 6.69 25.42 19.76 27.58 19.97 3.33 26.81-15.1 27.58-19.77 8.28-50.03 12.06-101.21 11.27-152.11-.88-55.8-47.94-101.88-104.91-102.72zm-110.69-19.78c-10.3-8.34-25.37-6.8-33.76 3.48-25.62 31.5-39.39 71.28-38.75 112 .59 37.58-2.47 75.27-9.11 112.05-2.34 13.05 6.31 25.53 19.36 27.89 20.11 3.5 27.07-14.81 27.89-19.36 7.19-39.84 10.5-80.66 9.86-121.33-.47-29.88 9.2-57.88 28-80.97 8.35-10.28 6.79-25.39-3.49-33.76zm109.47-62.33c-15.41-.41-30.87 1.44-45.78 4.97-12.89 3.06-20.87 15.98-17.83 28.89 3.06 12.89 16 20.83 28.89 17.83 11.05-2.61 22.47-3.77 34-3.69 75.43 1.13 137.73 61.5 138.88 134.58.59 37.88-1.28 76.11-5.58 113.63-1.5 13.17 7.95 25.08 21.11 26.58 16.72 1.95 25.51-11.88 26.58-21.11a929.06 929.06 0 0 0 5.89-119.85c-1.56-98.75-85.07-180.33-186.16-181.83zm252.07 121.45c-2.86-12.92-15.51-21.2-28.61-18.27-12.94 2.86-21.12 15.66-18.26 28.61 4.71 21.41 4.91 37.41 4.7 61.6-.11 13.27 10.55 24.09 23.8 24.2h.2c13.17 0 23.89-10.61 24-23.8.18-22.18.4-44.11-5.83-72.34zm-40.12-90.72C417.29 43.46 337.6 1.29 252.81.02 183.02-.82 118.47 24.91 70.46 72.94 24.09 119.37-.9 181.04.14 246.65l-.12 21.47c-.39 13.25 10.03 24.31 23.28 24.69.23.02.48.02.72.02 12.92 0 23.59-10.3 23.97-23.3l.16-23.64c-.83-52.5 19.16-101.86 56.28-139 38.76-38.8 91.34-59.67 147.68-58.86 69.45 1.03 134.73 35.56 174.62 92.39 7.61 10.86 22.56 13.45 33.42 5.86 10.84-7.62 13.46-22.59 5.84-33.43z" + } + } + }, + "fire": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flame", + "hot", + "popular" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f06d", + "label": "fire", + "svg": { + "solid": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M216 23.858c0-23.802-30.653-32.765-44.149-13.038C48 191.851 224 200 224 288c0 35.629-29.114 64.458-64.85 63.994C123.98 351.538 96 322.22 96 287.046v-85.51c0-21.703-26.471-32.225-41.432-16.504C27.801 213.158 0 261.332 0 320c0 105.869 86.131 192 192 192s192-86.131 192-192c0-170.29-168-193.003-168-296.142z" + } + } + }, + "fire-extinguisher": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f134", + "label": "fire-extinguisher", + "svg": { + "solid": { + "last_modified": 1502810244000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M434.027 26.329l-168 28C254.693 56.218 256 67.8 256 72h-58.332C208.353 36.108 181.446 0 144 0c-39.435 0-66.368 39.676-52.228 76.203-52.039 13.051-75.381 54.213-90.049 90.884-4.923 12.307 1.063 26.274 13.37 31.197 12.317 4.926 26.279-1.075 31.196-13.37C75.058 112.99 106.964 120 168 120v27.076c-41.543 10.862-72 49.235-72 94.129V488c0 13.255 10.745 24 24 24h144c13.255 0 24-10.745 24-24V240c0-44.731-30.596-82.312-72-92.97V120h40c0 2.974-1.703 15.716 10.027 17.671l168 28C441.342 166.89 448 161.25 448 153.834V38.166c0-7.416-6.658-13.056-13.973-11.837zM144 72c-8.822 0-16-7.178-16-16s7.178-16 16-16 16 7.178 16 16-7.178 16-16 16z" + } + } + }, + "firefox": { + "changes": [ + "4.4", + "5.0.0", + "5.0.1" + ], + "ligatures": [], + "search": { + "terms": [ + "browser" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f269", + "label": "Firefox", + "svg": { + "brands": { + "last_modified": 1512765674646, + "raw": "", + "viewBox": [ + "0", + "0", + "480", + "512" + ], + "width": 480, + "height": 512, + "path": "M478.1 235.3c-.7-4.5-1.4-7.1-1.4-7.1s-1.8 2-4.7 5.9c-.9-10.7-2.8-21.2-5.8-31.6-3.7-12.9-8.5-25.4-14.5-37.4-3.8-8-8.2-15.6-13.3-22.8-1.8-2.7-3.7-5.4-5.6-7.9-8.8-14.4-19-23.3-30.7-40-7.6-12.8-12.9-26.9-15.4-41.6-3.2 8.9-5.7 18-7.4 27.3-12.1-12.2-22.5-20.8-28.9-26.7C319.4 24.2 323 9.1 323 9.1S264.7 74.2 289.9 142c8.7 23 23.8 43.1 43.4 57.9 24.4 20.2 50.8 36 64.7 76.6-11.2-21.3-28.1-39.2-48.8-51.5 6.2 14.7 9.4 30.6 9.3 46.5 0 61-49.6 110.5-110.6 110.4-8.3 0-16.5-.9-24.5-2.8-9.5-1.8-18.7-4.9-27.4-9.3-12.9-7.8-24-18.1-32.8-30.3l-.2-.3 2 .7c4.6 1.6 9.2 2.8 14 3.7 18.7 4 38.3 1.7 55.6-6.6 17.5-9.7 28-16.9 36.6-14h.2c8.4 2.7 15-5.5 9-14-10.4-13.4-27.4-20-44.2-17-17.5 2.5-33.5 15-56.4 2.9-1.5-.8-2.9-1.6-4.3-2.5-1.6-.9 4.9 1.3 3.4.3-5-2.5-9.8-5.4-14.4-8.6-.3-.3 3.5 1.1 3.1.8-5.9-4-11-9.2-15-15.2-4.1-7.4-4.5-16.4-1-24.1 2.1-3.8 5.4-6.9 9.3-8.7 3 1.5 4.8 2.6 4.8 2.6s-1.3-2.5-2.1-3.8c.3-.1.5 0 .8-.2 2.6 1.1 8.3 4 11.4 5.8 2.1 1.1 3.8 2.7 5.2 4.7 0 0 1-.5.3-2.7-1.1-2.7-2.9-5-5.4-6.6h.2c2.3 1.2 4.5 2.6 6.6 4.1 1.9-4.4 2.8-9.2 2.6-14 .2-2.6-.2-5.3-1.1-7.8-.8-1.6.5-2.2 1.9-.5-.2-1.3-.7-2.5-1.2-3.7v-.1s.8-1.1 1.2-1.5c1-1 2.1-1.9 3.4-2.7 7.2-4.5 14.8-8.4 22.7-11.6 6.4-2.8 11.7-4.9 12.8-5.6 1.6-1 3.1-2.2 4.5-3.5 5.3-4.5 9-10.8 10.2-17.7.1-.9.2-1.8.3-2.8v-1.5c-.9-3.5-6.9-6.1-38.4-9.1-11.1-1.8-20-10.1-22.5-21.1v.1c-.4 1.1-.9 2.3-1.3 3.5.4-1.2.8-2.3 1.3-3.5v-.2c6-15.7 16.8-29.1 30.8-38.3.8-.7-3.2.2-2.4-.5 2.7-1.3 5.4-2.5 8.2-3.5 1.4-.6-6-3.4-12.6-2.7-4 .2-8 1.2-11.7 2.8 1.6-1.3 6.2-3.1 5.1-3.1-8.4 1.6-16.5 4.7-23.9 9 0-.8.1-1.5.5-2.2-5.9 2.5-11 6.5-15 11.5.1-.9.2-1.8.2-2.7-2.7 2-5.2 4.3-7.3 6.9l-.1.1c-17.4-6.7-36.3-8.3-54.6-4.7l-.2-.1h.2c-3.8-3.1-7.1-6.7-9.7-10.9l-.2.1-.4-.2c-1.2-1.8-2.4-3.8-3.7-6-.9-1.6-1.8-3.4-2.7-5.2 0-.1-.1-.2-.2-.2-.4 0-.6 1.7-.9 1.3v-.1c-3.2-8.3-4.7-17.2-4.4-26.2l-.2.1c-5.1 3.5-9 8.6-11.1 14.5-.9 2.1-1.6 3.3-2.2 4.5v-.5c.1-1.1.6-3.3.5-3.1-.1.2-.2.3-.3.4-1.5 1.7-2.9 3.7-3.9 5.8-.9 1.9-1.7 3.9-2.3 5.9-.1.3 0-.3 0-1s.1-2 0-1.7l-.3.7c-6.7 14.9-10.9 30.8-12.4 47.1-.4 2.8-.6 5.6-.5 8.3v.2c-4.8 5.2-9 11-12.7 17.1-12.1 20.4-21.1 42.5-26.8 65.6 4-8.8 8.8-17.2 14.3-25.1C5.5 228.5 0 257.4 0 286.6c1.8-8.6 4.2-17 7-25.3-1.7 34.5 4.9 68.9 19.4 100.3 19.4 43.5 51.6 80 92.3 104.7 16.6 11.2 34.7 19.9 53.8 25.8 2.5.9 5.1 1.8 7.7 2.7-.8-.3-1.6-.7-2.4-1 22.6 6.8 46.2 10.3 69.8 10.3 83.7 0 111.3-31.9 113.8-35 4.1-3.7 7.5-8.2 9.9-13.3 1.6-.7 3.2-1.4 4.9-2.1l1-.5 1.9-.9c12.6-5.9 24.5-13.4 35.3-22.1 16.3-11.7 27.9-28.7 32.9-48.1 3-7.1 3.1-15 .4-22.2.9-1.4 1.7-2.8 2.7-4.3 18-28.9 28.2-61.9 29.6-95.9v-2.8c0-7.3-.6-14.5-1.9-21.6z" + } + } + }, + "first-aid": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f479", + "label": "First Aid", + "svg": { + "solid": { + "last_modified": 1521653821449, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M0 80v352c0 26.5 21.5 48 48 48h48V32H48C21.5 32 0 53.5 0 80zm128 400h320V32H128v448zm64-248c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48zM528 32h-48v448h48c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z" + } + } + }, + "first-order": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2b0", + "label": "First Order", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M12.9 229.2c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4h-.2zM224 96.6c-7.1 0-14.6.6-21.4 1.7l3.7 67.4-22-64c-14.3 3.7-27.7 9.4-40 16.6l29.4 61.4-45.1-50.9c-11.4 8.9-21.7 19.1-30.6 30.9l50.6 45.4-61.1-29.7c-7.1 12.3-12.9 25.7-16.6 40l64.3 22.6-68-4c-.9 7.1-1.4 14.6-1.4 22s.6 14.6 1.4 21.7l67.7-4-64 22.6c3.7 14.3 9.4 27.7 16.6 40.3l61.1-29.7L97.7 352c8.9 11.7 19.1 22.3 30.9 30.9l44.9-50.9-29.5 61.4c12.3 7.4 25.7 13.1 40 16.9l22.3-64.6-4 68c7.1 1.1 14.6 1.7 21.7 1.7 7.4 0 14.6-.6 21.7-1.7l-4-68.6 22.6 65.1c14.3-4 27.7-9.4 40-16.9L274.9 332l44.9 50.9c11.7-8.9 22-19.1 30.6-30.9l-50.6-45.1 61.1 29.4c7.1-12.3 12.9-25.7 16.6-40.3l-64-22.3 67.4 4c1.1-7.1 1.4-14.3 1.4-21.7s-.3-14.9-1.4-22l-67.7 4 64-22.3c-3.7-14.3-9.1-28-16.6-40.3l-60.9 29.7 50.6-45.4c-8.9-11.7-19.1-22-30.6-30.9l-45.1 50.9 29.4-61.1c-12.3-7.4-25.7-13.1-40-16.9L241.7 166l4-67.7c-7.1-1.2-14.3-1.7-21.7-1.7zM443.4 128v256L224 512 4.6 384V128L224 0l219.4 128zm-17.1 10.3L224 20.9 21.7 138.3v235.1L224 491.1l202.3-117.7V138.3zM224 37.1l187.7 109.4v218.9L224 474.9 36.3 365.4V146.6L224 37.1zm0 50.9c-92.3 0-166.9 75.1-166.9 168 0 92.6 74.6 167.7 166.9 167.7 92 0 166.9-75.1 166.9-167.7 0-92.9-74.9-168-166.9-168z" + } + } + }, + "first-order-alt": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f50a", + "label": "Alternate First Order", + "svg": { + "brands": { + "last_modified": 1525376442520, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 488.21C115.34 496.21 7.79 388.66 7.79 256S115.34 15.79 248 15.79 488.21 123.34 488.21 256 380.66 496.21 248 496.21zm0-459.92C126.66 36.29 28.29 134.66 28.29 256S126.66 475.71 248 475.71 467.71 377.34 467.71 256 369.34 36.29 248 36.29zm0 431.22c-116.81 0-211.51-94.69-211.51-211.51S131.19 44.49 248 44.49 459.51 139.19 459.51 256 364.81 467.51 248 467.51zm186.23-162.98a191.613 191.613 0 0 1-20.13 48.69l-74.13-35.88 61.48 54.82a193.515 193.515 0 0 1-37.2 37.29l-54.8-61.57 35.88 74.27a190.944 190.944 0 0 1-48.63 20.23l-27.29-78.47 4.79 82.93c-8.61 1.18-17.4 1.8-26.33 1.8s-17.72-.62-26.33-1.8l4.76-82.46-27.15 78.03a191.365 191.365 0 0 1-48.65-20.2l35.93-74.34-54.87 61.64a193.85 193.85 0 0 1-37.22-37.28l61.59-54.9-74.26 35.93a191.638 191.638 0 0 1-20.14-48.69l77.84-27.11-82.23 4.76c-1.16-8.57-1.78-17.32-1.78-26.21 0-9 .63-17.84 1.82-26.51l82.38 4.77-77.94-27.16a191.726 191.726 0 0 1 20.23-48.67l74.22 35.92-61.52-54.86a193.85 193.85 0 0 1 37.28-37.22l54.76 61.53-35.83-74.17a191.49 191.49 0 0 1 48.65-20.13l26.87 77.25-4.71-81.61c8.61-1.18 17.39-1.8 26.32-1.8s17.71.62 26.32 1.8l-4.74 82.16 27.05-77.76c17.27 4.5 33.6 11.35 48.63 20.17l-35.82 74.12 54.72-61.47a193.13 193.13 0 0 1 37.24 37.23l-61.45 54.77 74.12-35.86a191.515 191.515 0 0 1 20.2 48.65l-77.81 27.1 82.24-4.75c1.19 8.66 1.82 17.5 1.82 26.49 0 8.88-.61 17.63-1.78 26.19l-82.12-4.75 77.72 27.09z" + } + } + }, + "firstdraft": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3a1", + "label": "firstdraft", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M384 192h-64v128H192v128H0v-25.6h166.4v-128h128v-128H384V192zm-25.6 38.4v128h-128v128H64V512h192V384h128V230.4h-25.6zm25.6 192h-89.6V512H320v-64h64v-25.6zM0 0v384h128V256h128V128h128V0H0z" + } + } + }, + "fish": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f578", + "label": "Fish", + "svg": { + "solid": { + "last_modified": 1529520111666, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M327.1 96c-89.97 0-168.54 54.77-212.27 101.63L27.5 131.58c-12.13-9.18-30.24.6-27.14 14.66L24.54 256 .35 365.77c-3.1 14.06 15.01 23.83 27.14 14.66l87.33-66.05C158.55 361.23 237.13 416 327.1 416 464.56 416 576 288 576 256S464.56 96 327.1 96zm87.43 184c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24 13.26 0 24 10.74 24 24 0 13.25-10.75 24-24 24z" + } + } + }, + "flag": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "notice", + "notification", + "notify", + "report" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f024", + "label": "flag", + "svg": { + "solid": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M349.565 98.783C295.978 98.783 251.721 64 184.348 64c-24.955 0-47.309 4.384-68.045 12.013a55.947 55.947 0 0 0 3.586-23.562C118.117 24.015 94.806 1.206 66.338.048 34.345-1.254 8 24.296 8 56c0 19.026 9.497 35.825 24 45.945V488c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-94.4c28.311-12.064 63.582-22.122 114.435-22.122 53.588 0 97.844 34.783 165.217 34.783 48.169 0 86.667-16.294 122.505-40.858C506.84 359.452 512 349.571 512 339.045v-243.1c0-23.393-24.269-38.87-45.485-29.016-34.338 15.948-76.454 31.854-116.95 31.854z" + }, + "regular": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M336.174 80c-49.132 0-93.305-32-161.913-32-31.301 0-58.303 6.482-80.721 15.168a48.04 48.04 0 0 0 2.142-20.727C93.067 19.575 74.167 1.594 51.201.104 23.242-1.71 0 20.431 0 48c0 17.764 9.657 33.262 24 41.562V496c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-83.443C109.869 395.28 143.259 384 199.826 384c49.132 0 93.305 32 161.913 32 58.479 0 101.972-22.617 128.548-39.981C503.846 367.161 512 352.051 512 335.855V95.937c0-34.459-35.264-57.768-66.904-44.117C409.193 67.309 371.641 80 336.174 80zM464 336c-21.783 15.412-60.824 32-102.261 32-59.945 0-102.002-32-161.913-32-43.361 0-96.379 9.403-127.826 24V128c21.784-15.412 60.824-32 102.261-32 59.945 0 102.002 32 161.913 32 43.271 0 96.32-17.366 127.826-32v240z" + } + } + }, + "flag-checkered": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "notice", + "notification", + "notify", + "report" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f11e", + "label": "flag-checkered", + "svg": { + "solid": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M466.515 66.928C487.731 57.074 512 72.551 512 95.944v243.1c0 10.526-5.161 20.407-13.843 26.358-35.837 24.564-74.335 40.858-122.505 40.858-67.373 0-111.63-34.783-165.217-34.783-50.853 0-86.124 10.058-114.435 22.122V488c0 13.255-10.745 24-24 24H56c-13.255 0-24-10.745-24-24V101.945C17.497 91.825 8 75.026 8 56 8 24.296 34.345-1.254 66.338.048c28.468 1.158 51.779 23.968 53.551 52.404.52 8.342-.81 16.31-3.586 23.562C137.039 68.384 159.393 64 184.348 64c67.373 0 111.63 34.783 165.217 34.783 40.496 0 82.612-15.906 116.95-31.855zM96 134.63v70.49c29-10.67 51.18-17.83 73.6-20.91v-71.57c-23.5 2.17-40.44 9.79-73.6 21.99zm220.8 9.19c-26.417-4.672-49.886-13.979-73.6-21.34v67.42c24.175 6.706 47.566 16.444 73.6 22.31v-68.39zm-147.2 40.39v70.04c32.796-2.978 53.91-.635 73.6 3.8V189.9c-25.247-7.035-46.581-9.423-73.6-5.69zm73.6 142.23c26.338 4.652 49.732 13.927 73.6 21.34v-67.41c-24.277-6.746-47.54-16.45-73.6-22.32v68.39zM96 342.1c23.62-8.39 47.79-13.84 73.6-16.56v-71.29c-26.11 2.35-47.36 8.04-73.6 17.36v70.49zm368-221.6c-21.3 8.85-46.59 17.64-73.6 22.47v71.91c27.31-4.36 50.03-14.1 73.6-23.89V120.5zm0 209.96v-70.49c-22.19 14.2-48.78 22.61-73.6 26.02v71.58c25.07-2.38 48.49-11.04 73.6-27.11zM316.8 212.21v68.16c25.664 7.134 46.616 9.342 73.6 5.62v-71.11c-25.999 4.187-49.943 2.676-73.6-2.67z" + } + } + }, + "flask": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beaker", + "experimental", + "labs", + "science" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0c3", + "label": "Flask", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M437.2 403.5L320 215V64h8c13.3 0 24-10.7 24-24V24c0-13.3-10.7-24-24-24H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h8v151L10.8 403.5C-18.5 450.6 15.3 512 70.9 512h306.2c55.7 0 89.4-61.5 60.1-108.5zM137.9 320l48.2-77.6c3.7-5.2 5.8-11.6 5.8-18.4V64h64v160c0 6.9 2.2 13.2 5.8 18.4l48.2 77.6h-172z" + } + } + }, + "flickr": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f16e", + "label": "Flickr", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5zm159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5z" + } + } + }, + "flipboard": { + "changes": [ + "5.0.5", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f44d", + "label": "Flipboard", + "svg": { + "brands": { + "last_modified": 1521653821384, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm358.4 179.2h-89.6v89.6h-89.6v89.6H89.6V121.6h268.8v89.6z" + } + } + }, + "flushed": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "embarrassed", + "emoticon", + "face" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f579", + "label": "Flushed Face", + "svg": { + "solid": { + "last_modified": 1529520111666, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M344 200c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-192 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM80 224c0-39.8 32.2-72 72-72s72 32.2 72 72-32.2 72-72 72-72-32.2-72-72zm232 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-104c-39.8 0-72-32.2-72-72s32.2-72 72-72 72 32.2 72 72-32.2 72-72 72z" + }, + "regular": { + "last_modified": 1529520111618, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm96-312c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-112 24c0-44.2-35.8-80-80-80s-80 35.8-80 80 35.8 80 80 80 80-35.8 80-80zm-80 48c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm160 144H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z" + } + } + }, + "fly": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f417", + "label": "Fly", + "svg": { + "brands": { + "last_modified": 1507669930672, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M197.8 427.8c12.9 11.7 33.7 33.3 33.2 50.7 0 .8-.1 1.6-.1 2.5-1.8 19.8-18.8 31.1-39.1 31-25-.1-39.9-16.8-38.7-35.8 1-16.2 20.5-36.7 32.4-47.6 2.3-2.1 2.7-2.7 5.6-3.6 3.4 0 3.9.3 6.7 2.8zM331.9 67.3c-16.3-25.7-38.6-40.6-63.3-52.1C243.1 4.5 214-.2 192 0c-44.1 0-71.2 13.2-81.1 17.3C57.3 45.2 26.5 87.2 28 158.6c7.1 82.2 97 176 155.8 233.8 1.7 1.6 4.5 4.5 6.2 5.1l3.3.1c2.1-.7 1.8-.5 3.5-2.1 52.3-49.2 140.7-145.8 155.9-215.7 7-39.2 3.1-72.5-20.8-112.5zM186.8 351.9c-28-51.1-65.2-130.7-69.3-189-3.4-47.5 11.4-131.2 69.3-136.7v325.7zM328.7 180c-16.4 56.8-77.3 128-118.9 170.3C237.6 298.4 275 217 277 158.4c1.6-45.9-9.8-105.8-48-131.4 88.8 18.3 115.5 98.1 99.7 153z" + } + } + }, + "folder": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f07b", + "label": "Folder", + "svg": { + "solid": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z" + }, + "regular": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48zm-6 272H54c-3.314 0-6-2.678-6-5.992V117.992A5.993 5.993 0 0 1 54 112h134.118l64 64H458a6 6 0 0 1 6 6v212a6 6 0 0 1-6 6z" + } + } + }, + "folder-open": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f07c", + "label": "Folder Open", + "svg": { + "solid": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M572.694 292.093L500.27 416.248A63.997 63.997 0 0 1 444.989 448H45.025c-18.523 0-30.064-20.093-20.731-36.093l72.424-124.155A64 64 0 0 1 152 256h399.964c18.523 0 30.064 20.093 20.73 36.093zM152 224h328v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v278.046l69.077-118.418C86.214 242.25 117.989 224 152 224z" + }, + "regular": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M527.943 224H480v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h400a48.001 48.001 0 0 0 40.704-22.56l79.942-128c19.948-31.917-3.038-73.44-40.703-73.44zM54 112h134.118l64 64H426a6 6 0 0 1 6 6v42H152a48 48 0 0 0-41.098 23.202L48 351.449V117.993A5.993 5.993 0 0 1 54 112zm394 288H72l77.234-128H528l-80 128z" + } + } + }, + "font": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "text" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f031", + "label": "font", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M152 416h-24.013l26.586-80.782H292.8L319.386 416H296c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-26.739L275.495 42.746A16 16 0 0 0 260.382 32h-72.766a16 16 0 0 0-15.113 10.746L42.739 416H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm64.353-271.778c4.348-15.216 6.61-28.156 7.586-34.644.839 6.521 2.939 19.476 7.727 34.706l41.335 124.006h-98.619l41.971-124.068z" + } + } + }, + "font-awesome": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "meanpath" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f2b4", + "label": "Font Awesome", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M397.8 32H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-45.4 284.3c0 4.2-3.6 6-7.8 7.8-16.7 7.2-34.6 13.7-53.8 13.7-26.9 0-39.4-16.7-71.7-16.7-23.3 0-47.8 8.4-67.5 17.3-1.2.6-2.4.6-3.6 1.2V385c0 1.8 0 3.6-.6 4.8v1.2c-2.4 8.4-10.2 14.3-19.1 14.3-11.3 0-20.3-9-20.3-20.3V166.4c-7.8-6-13.1-15.5-13.1-26.3 0-18.5 14.9-33.5 33.5-33.5 18.5 0 33.5 14.9 33.5 33.5 0 10.8-4.8 20.3-13.1 26.3v18.5c1.8-.6 3.6-1.2 5.4-2.4 18.5-7.8 40.6-14.3 61.5-14.3 22.7 0 40.6 6 60.9 13.7 4.2 1.8 8.4 2.4 13.1 2.4 22.7 0 47.8-16.1 53.8-16.1 4.8 0 9 3.6 9 7.8v140.3z" + } + } + }, + "font-awesome-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f35c", + "label": "Alternate Font Awesome", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M397.8 67.8c7.8 0 14.3 6.6 14.3 14.3v347.6c0 7.8-6.6 14.3-14.3 14.3H50.2c-7.8 0-14.3-6.6-14.3-14.3V82.2c0-7.8 6.6-14.3 14.3-14.3h347.6m0-35.9H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-58.5 139.2c-6 0-29.9 15.5-52.6 15.5-4.2 0-8.4-.6-12.5-2.4-19.7-7.8-37-13.7-59.1-13.7-20.3 0-41.8 6.6-59.7 13.7-1.8.6-3.6 1.2-4.8 1.8v-17.9c7.8-6 12.5-14.9 12.5-25.7 0-17.9-14.3-32.3-32.3-32.3s-32.3 14.3-32.3 32.3c0 10.2 4.8 19.7 12.5 25.7v212.1c0 10.8 9 19.7 19.7 19.7 9 0 16.1-6 18.5-13.7V385c.6-1.8.6-3 .6-4.8V336c1.2 0 2.4-.6 3-1.2 19.7-8.4 43-16.7 65.7-16.7 31.1 0 43 16.1 69.3 16.1 18.5 0 36.4-6.6 52-13.7 4.2-1.8 7.2-3.6 7.2-7.8V178.3c1.8-4.1-2.3-7.1-7.7-7.1z" + } + } + }, + "font-awesome-flag": { + "changes": [ + "5.0.0", + "5.0.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f425", + "label": "Font Awesome Flag", + "svg": { + "brands": { + "last_modified": 1511282001102, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M444.373 359.424c0 7.168-6.144 10.24-13.312 13.312-28.672 12.288-59.392 23.552-92.16 23.552-46.08 0-67.584-28.672-122.88-28.672-39.936 0-81.92 14.336-115.712 29.696-2.048 1.024-4.096 1.024-6.144 2.048v77.824c0 21.405-16.122 34.816-33.792 34.816-19.456 0-34.816-15.36-34.816-34.816V102.4C12.245 92.16 3.029 75.776 3.029 57.344 3.029 25.6 28.629 0 60.373 0s57.344 25.6 57.344 57.344c0 18.432-8.192 34.816-22.528 45.056v31.744c4.124-1.374 58.768-28.672 114.688-28.672 65.27 0 97.676 27.648 126.976 27.648 38.912 0 81.92-27.648 92.16-27.648 8.192 0 15.36 6.144 15.36 13.312v240.64z" + } + } + }, + "font-awesome-logo-full": { + "changes": [ + "5.0.11" + ], + "ligatures": [ + "Font Awesome" + ], + "search": { + "terms": [] + }, + "styles": [ + "regular", + "solid", + "brands" + ], + "unicode": "f4e6", + "label": "Font Awesome Full Logo", + "private": true, + "svg": { + "regular": { + "last_modified": 1525209365049, + "raw": "", + "viewBox": [ + "0", + "0", + "3992", + "512" + ], + "width": 3992, + "height": 512, + "path": "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z" + }, + "solid": { + "last_modified": 1525209365067, + "raw": "", + "viewBox": [ + "0", + "0", + "3992", + "512" + ], + "width": 3992, + "height": 512, + "path": "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z" + }, + "brands": { + "last_modified": 1525209365019, + "raw": "", + "viewBox": [ + "0", + "0", + "3992", + "512" + ], + "width": 3992, + "height": 512, + "path": "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z" + } + } + }, + "fonticons": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f280", + "label": "Fonticons", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm167.4 196h67.4l-11.1 37.3H168v112.9c0 5.8-2 6.7 3.2 7.3l43.5 4.1v25.1H84V389l21.3-2c5.2-.6 6.7-2.3 6.7-7.9V267.7c0-2.3-2.9-2.3-5.8-2.3H84V228h28v-21c0-49.6 26.5-70 77.3-70 34.1 0 64.7 8.2 64.7 52.8l-50.7 6.1c.3-18.7-4.4-23-16.3-23-18.4 0-19 9.9-19 27.4v23.3c0 2.4-3.5 4.4-.6 4.4zM364 414.7H261.3v-25.1l20.4-2.6c5.2-.6 7.6-1.7 7.6-7.3V271.8c0-4.1-2.9-6.7-6.7-7.9l-24.2-6.4 6.7-29.5h80.2v151.7c0 5.8-2.6 6.4 2.9 7.3l15.7 2.6v25.1zm-21.9-255.5l9 33.2-7.3 7.3-31.2-16.6-31.2 16.6-7.3-7.3 9-33.2-21.8-24.2 3.5-9.6h27.7l15.5-28h9.3l15.5 28h27.7l3.5 9.6-21.9 24.2z" + } + } + }, + "fonticons-fi": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3a2", + "label": "Fonticons Fi", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M114.4 224h92.4l-15.2 51.2h-76.4V433c0 8-2.8 9.2 4.4 10l59.6 5.6V483H0v-35.2l29.2-2.8c7.2-.8 9.2-3.2 9.2-10.8V278.4c0-3.2-4-3.2-8-3.2H0V224h38.4v-28.8c0-68 36.4-96 106-96 46.8 0 88.8 11.2 88.8 72.4l-69.6 8.4c.4-25.6-6-31.6-22.4-31.6-25.2 0-26 13.6-26 37.6v32c0 3.2-4.8 6-.8 6zM384 483H243.2v-34.4l28-3.6c7.2-.8 10.4-2.4 10.4-10V287c0-5.6-4-9.2-9.2-10.8l-33.2-8.8 9.2-40.4h110v208c0 8-3.6 8.8 4 10l21.6 3.6V483zm-30-347.2l12.4 45.6-10 10-42.8-22.8-42.8 22.8-10-10 12.4-45.6-30-36.4 4.8-10h38L307.2 51H320l21.2 38.4h38l4.8 13.2-30 33.2z" + } + } + }, + "football-ball": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f44e", + "label": "Football Ball", + "svg": { + "solid": { + "last_modified": 1518899527995, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M481.5 60.3c-4.8-18.2-19.1-32.5-37.3-37.4C420.3 16.5 383 8.9 339.4 8L496 164.8c-.8-43.5-8.2-80.6-14.5-104.5zm-467 391.4c4.8 18.2 19.1 32.5 37.3 37.4 23.9 6.4 61.2 14 104.8 14.9L0 347.2c.8 43.5 8.2 80.6 14.5 104.5zM4.2 283.4L220.4 500c132.5-19.4 248.8-118.7 271.5-271.4L275.6 12C143.1 31.4 26.8 130.7 4.2 283.4zm317.3-123.6c3.1-3.1 8.2-3.1 11.3 0l11.3 11.3c3.1 3.1 3.1 8.2 0 11.3l-28.3 28.3 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-22.6 22.7 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L248 278.6l-22.6 22.6 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-28.3 28.3c-3.1 3.1-8.2 3.1-11.3 0l-11.3-11.3c-3.1-3.1-3.1-8.2 0-11.3l28.3-28.3-28.3-28.2c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 28.3-28.5z" + } + } + }, + "fort-awesome": { + "changes": [ + "4.5", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [ + "castle" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f286", + "label": "Fort Awesome", + "svg": { + "brands": { + "last_modified": 1515426581998, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M489.2 287.9h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6V146.2c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-6-8-4.6-11.7-4.6v-38c8.3-2 17.1-3.4 25.7-3.4 10.9 0 20.9 4.3 31.4 4.3 4.6 0 27.7-1.1 27.7-8v-60c0-2.6-2-4.6-4.6-4.6-5.1 0-15.1 4.3-24 4.3-9.7 0-20.9-4.3-32.6-4.3-8 0-16 1.1-23.7 2.9v-4.9c5.4-2.6 9.1-8.3 9.1-14.3 0-20.7-31.4-20.8-31.4 0 0 6 3.7 11.7 9.1 14.3v111.7c-3.7 0-11.7-1.4-11.7 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32H128v-32c0-2.6-2-4.6-4.6-4.6H96c-2.6 0-4.6 2-4.6 4.6v178.3H54.8v-32c0-2.6-2-4.6-4.6-4.6H22.8c-2.6 0-4.6 2-4.6 4.6V512h182.9v-96c0-72.6 109.7-72.6 109.7 0v96h182.9V292.5c.1-2.6-1.9-4.6-4.5-4.6zm-288.1-4.5c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64zm146.4 0c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64z" + } + } + }, + "fort-awesome-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "castle" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f3a3", + "label": "Alternate Fort Awesome", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M211.7 241.1v51.7c0 2.1-1.6 3.7-3.7 3.7h-22.2c-2.1 0-3.7-1.6-3.7-3.7v-51.7c0-2.1 1.6-3.7 3.7-3.7H208c2.1 0 3.7 1.6 3.7 3.7zm114.5-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7h22.2c2.1 0 3.7-1.6 3.7-3.7v-51.7c-.1-2.1-1.7-3.7-3.7-3.7zm-29.1 263.2c-.9.1-1.7.3-2.6.4-1 .2-2.1.3-3.1.5-.9.1-1.8.3-2.8.4-1 .1-2 .3-3 .4-1 .1-2 .2-2.9.3-1 .1-1.9.2-2.9.3-1 .1-2.1.2-3.1.3-.9.1-1.8.2-2.7.2-1.1.1-2.3.1-3.4.2-.8 0-1.7.1-2.5.1-1.3.1-2.6.1-3.9.1-.7 0-1.4.1-2.1.1-2 0-4 .1-6 .1s-4 0-6-.1c-.7 0-1.4 0-2.1-.1-1.3 0-2.6-.1-3.9-.1-.8 0-1.7-.1-2.5-.1-1.1-.1-2.3-.1-3.4-.2-.9-.1-1.8-.1-2.7-.2-1-.1-2.1-.2-3.1-.3-1-.1-1.9-.2-2.9-.3-1-.1-2-.2-2.9-.3-1-.1-2-.2-3-.4-.9-.1-1.8-.3-2.8-.4-1-.1-2.1-.3-3.1-.5-.9-.1-1.7-.3-2.6-.4-65.6-10.9-122.5-47.7-160-99.4-.2-.2-.3-.5-.5-.7-.8-1.1-1.6-2.2-2.3-3.3-.3-.4-.6-.8-.8-1.2-.7-1.1-1.4-2.1-2.1-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.4-2.1-2-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.3-2.2-2-3.3-.2-.4-.5-.8-.7-1.2-2.4-4-4.6-8.1-6.8-12.2-.1-.2-.2-.3-.3-.5-.6-1.1-1.1-2.2-1.7-3.3-.3-.6-.6-1.1-.8-1.7-.5-1-1-2.1-1.5-3.1-.3-.7-.6-1.3-.9-2-.5-1-.9-2-1.4-3l-.9-2.1c-.4-1-.9-2-1.3-3-.3-.7-.6-1.5-.9-2.2l-1.2-3c-.3-.8-.6-1.5-.9-2.3-.4-1-.8-2-1.1-3-.3-.9-.6-1.8-1-2.8-.6-1.6-1.1-3.3-1.7-4.9-.3-.9-.6-1.8-.9-2.8-.3-.9-.5-1.8-.8-2.7-.3-.9-.6-1.9-.8-2.8-.3-.9-.5-1.8-.8-2.7-.3-1-.5-1.9-.8-2.9-.2-.9-.5-1.8-.7-2.7-.3-1-.5-2-.7-3-.2-.9-.4-1.7-.6-2.6-.2-1.1-.5-2.2-.7-3.2-.2-.8-.3-1.6-.5-2.4-.3-1.3-.5-2.7-.8-4-.1-.6-.2-1.1-.3-1.7l-.9-5.7c-.1-.6-.2-1.3-.3-1.9-.2-1.3-.4-2.6-.5-3.9-.1-.8-.2-1.5-.3-2.3-.1-1.2-.3-2.4-.4-3.6-.1-.8-.2-1.6-.2-2.4-.1-1.2-.2-2.4-.3-3.5-.1-.8-.1-1.6-.2-2.4-.1-1.2-.2-2.4-.2-3.7 0-.8-.1-1.5-.1-2.3-.1-1.3-.1-2.7-.2-4 0-.7 0-1.3-.1-2 0-2-.1-4-.1-6 0-53.5 16.9-103 45.8-143.6 2.3-3.2 4.7-6.4 7.1-9.5 4.9-6.2 10.1-12.3 15.6-18 2.7-2.9 5.5-5.7 8.4-8.4 2.9-2.7 5.8-5.4 8.8-8 4.5-3.9 9.1-7.6 13.9-11.2 1.6-1.2 3.2-2.4 4.8-3.5C140 34.2 171.7 20.1 206 13c16.1-3.3 32.9-5 50-5s33.8 1.7 50 5c34.3 7 66 21.1 93.6 40.7 1.6 1.2 3.2 2.3 4.8 3.5 4.8 3.6 9.4 7.3 13.9 11.2 12 10.4 23 21.9 32.8 34.4 2.5 3.1 4.8 6.3 7.1 9.5C487.1 153 504 202.5 504 256c0 2 0 4-.1 6 0 .7 0 1.3-.1 2 0 1.3-.1 2.7-.2 4 0 .8-.1 1.5-.1 2.3-.1 1.2-.1 2.4-.2.7-.1.8-.1 1.6-.2 2.4-.1 1.2-.2 2.4-.3 3.5-.1.8-.2 1.6-.2 2.4-.1 1.2-.3 2.4-.4 3.6-.1.8-.2 1.5-.3 2.3-.2 1.3-.4 2.6-.5 3.9-.1.6-.2 1.3-.3 1.9l-.9 5.7c-.1.6-.2 1.1-.3 1.7-.2 1.3-.5 2.7-.8 4-.2.8-.3 1.6-.5 2.4-.2 1.1-.5 2.2-.7 3.2-.2.9-.4 1.7-.6 2.6-.2 1-.5 2-.7 3-.2.9-.5 1.8-.7 2.7-.3 1-.5 1.9-.8 2.9-.2.9-.5 1.8-.8 2.7-.3.9-.6 1.9-.8 2.8-.3.9-.5 1.8-.8 2.7-.3.9-.6 1.8-.9 2.8-.5 1.6-1.1 3.3-1.7 4.9-.3.9-.6 1.8-1 2.8-.4 1-.7 2-1.1 3-.3.8-.6 1.5-.9 2.3l-1.2 3c-.3.7-.6 1.5-.9 2.2-.4 1-.8 2-1.3 3l-.9 2.1c-.4 1-.9 2-1.4 3-.3.7-.6 1.3-.9 2-.5 1-1 2.1-1.5 3.1-.3.6-.6 1.1-.8 1.7-.6 1.1-1.1 2.2-1.7 3.3-.1.2-.2.3-.3.5-2.2 4.1-4.4 8.2-6.8 12.2-.2.4-.5.8-.7 1.2-.7 1.1-1.3 2.2-2 3.3-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2 3.2-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2.1 3.2-.3.4-.6.8-.8 1.2-.8 1.1-1.5 2.2-2.3 3.3-.2.2-.3.5-.5.7-37.6 54.7-94.5 91.4-160.1 102.4zm117.3-86.2c13-13 24.2-27.4 33.6-42.9v-71.3c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7V326h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-4.8-6.5-3.7-9.5-3.7v-30.7c6.7-1.6 13.8-2.8 20.8-2.8 8.8 0 16.8 3.5 25.4 3.5 3.7 0 22.4-.9 22.4-6.5V93.4c0-2.1-1.6-3.7-3.7-3.7-4.2 0-12.2 3.5-19.4 3.5-7.9 0-16.9-3.5-26.3-3.5-6.5 0-12.9.9-19.2 2.3v-3.9c4.4-2.1 7.4-6.7 7.4-11.5 0-16.8-25.4-16.8-25.4 0 0 4.8 3 9.5 7.4 11.5v90.2c-3 0-9.5-1.1-9.5 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v144H93.5v-25.8c0-2.1-1.6-3.7-3.7-3.7H67.7c-2.1 0-3.7 1.6-3.7 3.7v71.3c9.4 15.5 20.6 29.9 33.6 42.9 20.6 20.6 44.5 36.7 71.2 48 13.9 5.9 28.2 10.3 42.9 13.2v-75.8c0-58.6 88.6-58.6 88.6 0v75.8c14.7-2.9 29-7.4 42.9-13.2 26.7-11.3 50.6-27.4 71.2-48" + } + } + }, + "forumbee": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f211", + "label": "Forumbee", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M5.8 309.7C2 292.7 0 275.5 0 258.3 0 135 99.8 35 223.1 35c16.6 0 33.3 2 49.3 5.5C149 87.5 51.9 186 5.8 309.7zm392.9-189.2C385 103 369 87.8 350.9 75.2c-149.6 44.3-266.3 162.1-309.7 312 12.5 18.1 28 35.6 45.2 49 43.1-151.3 161.2-271.7 312.3-315.7zm15.8 252.7c15.2-25.1 25.4-53.7 29.5-82.8-79.4 42.9-145 110.6-187.6 190.3 30-4.4 58.9-15.3 84.6-31.3 35 13.1 70.9 24.3 107 33.6-9.3-36.5-20.4-74.5-33.5-109.8zm29.7-145.5c-2.6-19.5-7.9-38.7-15.8-56.8C290.5 216.7 182 327.5 137.1 466c18.1 7.6 37 12.5 56.6 15.2C240 367.1 330.5 274.4 444.2 227.7z" + } + } + }, + "forward": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "next" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f04e", + "label": "forward", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M500.5 231.4l-192-160C287.9 54.3 256 68.6 256 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2zm-256 0l-192-160C31.9 54.3 0 68.6 0 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2z" + } + } + }, + "foursquare": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f180", + "label": "Foursquare", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "368", + "512" + ], + "width": 368, + "height": 512, + "path": "M323.1 3H49.9C12.4 3 0 31.3 0 49.1v433.8c0 20.3 12.1 27.7 18.2 30.1 6.2 2.5 22.8 4.6 32.9-7.1C180 356.5 182.2 354 182.2 354c3.1-3.4 3.4-3.1 6.8-3.1h83.4c35.1 0 40.6-25.2 44.3-39.7l48.6-243C373.8 25.8 363.1 3 323.1 3zm-16.3 73.8l-11.4 59.7c-1.2 6.5-9.5 13.2-16.9 13.2H172.1c-12 0-20.6 8.3-20.6 20.3v13c0 12 8.6 20.6 20.6 20.6h90.4c8.3 0 16.6 9.2 14.8 18.2-1.8 8.9-10.5 53.8-11.4 58.8-.9 4.9-6.8 13.5-16.9 13.5h-73.5c-13.5 0-17.2 1.8-26.5 12.6 0 0-8.9 11.4-89.5 108.3-.9.9-1.8.6-1.8-.3V75.9c0-7.7 6.8-16.6 16.6-16.6h219c8.2 0 15.6 7.7 13.5 17.5z" + } + } + }, + "free-code-camp": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2c5", + "label": "Free Code Camp", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M69.3 144.5c-41 68.5-36.4 163 1 227C92.5 409.7 120 423.9 120 438c0 6.8-6 13-12.8 13C87.7 451 8 375.5 8 253.2c0-111.5 78-186 97.1-186 6 0 14.9 4.8 14.9 11.1 0 12.7-28.3 28.6-50.7 66.2zm195.8 213.8c4.5 1.8 12.3 5.2 12.3-1.2 0-2.7-2.2-2.9-4.3-3.6-8.5-3.4-14-7.7-19.1-15.2-8.2-12.1-10.1-24.2-10.1-38.6 0-32.1 44.2-37.9 44.2-70 0-12.3-7.7-15.9-7.7-19.3 0-2.2.7-2.2 2.9-2.2 8 0 19.1 13.3 22.5 19.8 2.2 4.6 2.4 6 2.4 11.1 0 7-.7 14.2-.7 21.3 0 27 31.9 19.8 31.9 6.8 0-6-3.6-11.6-3.6-17.4 0-.7 0-1.2.7-1.2 3.4 0 9.4 7.7 11.1 10.1 5.8 8.9 8.5 20.8 8.5 31.4 0 32.4-29.5 49-29.5 56 0 1 2.9 7.7 12.1 1.9 29.7-15.1 53.1-47.6 53.1-89.8 0-33.6-8.7-57.7-32.1-82.6-3.9-4.1-16.4-16.9-22.5-16.9-8.2 0 7.2 18.6 7.2 31.2 0 7.2-4.8 12.3-12.3 12.3-11.6 0-14.5-25.4-15.9-33.3-5.8-33.8-12.8-58.2-46.4-74.1-10.4-5-36.5-11.8-36.5-2.2 0 2.4 2.7 4.1 4.6 5.1 9.2 5.6 19.6 21.4 19.6 38.2 0 46.1-57.7 88.2-57.7 136.2-.2 40.3 28.1 72.6 65.3 86.2zM470.4 67c-6 0-14.4 6.5-14.4 12.6 0 8.7 12.1 19.6 17.6 25.4 81.6 85.1 78.6 214.3 17.6 291-7 8.9-35.3 35.3-35.3 43.5 0 5.1 8.2 11.4 13.2 11.4 25.4 0 98.8-80.8 98.8-185.7C568 145.9 491.8 67 470.4 67zm-42.3 323.1H167c-9.4 0-15.5 7.5-15.5 16.4 0 8.5 7 15.5 15.5 15.5h261.1c9.4 0 11.9-7.5 11.9-16.4 0-8.5-3.5-15.5-11.9-15.5z" + } + } + }, + "freebsd": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3a4", + "label": "FreeBSD", + "svg": { + "brands": { + "last_modified": 1501873838000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M303.7 96.2c11.1-11.1 115.5-77 139.2-53.2 23.7 23.7-42.1 128.1-53.2 139.2-11.1 11.1-39.4.9-63.1-22.9-23.8-23.7-34.1-52-22.9-63.1zM109.9 68.1C73.6 47.5 22 24.6 5.6 41.1c-16.6 16.6 7.1 69.4 27.9 105.7 18.5-32.2 44.8-59.3 76.4-78.7zM406.7 174c3.3 11.3 2.7 20.7-2.7 26.1-20.3 20.3-87.5-27-109.3-70.1-18-32.3-11.1-53.4 14.9-48.7 5.7-3.6 12.3-7.6 19.6-11.6-29.8-15.5-63.6-24.3-99.5-24.3-119.1 0-215.6 96.5-215.6 215.6 0 119 96.5 215.6 215.6 215.6S445.3 380.1 445.3 261c0-38.4-10.1-74.5-27.7-105.8-3.9 7-7.6 13.3-10.9 18.8z" + } + } + }, + "frog": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "bullfrog", + "kermit", + "kiss", + "prince", + "toad", + "wart" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f52e", + "label": "Frog", + "svg": { + "solid": { + "last_modified": 1525967154568, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M446.53 97.43C439.67 60.23 407.19 32 368 32c-39.23 0-71.72 28.29-78.54 65.54C126.75 112.96-.5 250.12 0 416.98.11 451.9 29.08 480 64 480h304c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-79.49l35.8-48.33c24.14-36.23 10.35-88.28-33.71-106.6-23.89-9.93-51.55-4.65-72.24 10.88l-32.76 24.59c-7.06 5.31-17.09 3.91-22.41-3.19-5.3-7.08-3.88-17.11 3.19-22.41l34.78-26.09c36.84-27.66 88.28-27.62 125.13 0 10.87 8.15 45.87 39.06 40.8 93.21L469.62 480H560c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-53.63l-98.52-104.68 154.44-86.65A58.16 58.16 0 0 0 576 189.94c0-21.4-11.72-40.95-30.48-51.23-40.56-22.22-98.99-41.28-98.99-41.28zM368 136c-13.26 0-24-10.75-24-24 0-13.26 10.74-24 24-24 13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24z" + } + } + }, + "frown": { + "changes": [ + "3.1", + "5.0.0", + "5.0.9", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "disapprove", + "emoticon", + "face", + "rating", + "sad" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f119", + "label": "Frowning Face", + "svg": { + "solid": { + "last_modified": 1529520111667, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm170.2 218.2C315.8 367.4 282.9 352 248 352s-67.8 15.4-90.2 42.2c-13.5 16.3-38.1-4.2-24.6-20.5C161.7 339.6 203.6 320 248 320s86.3 19.6 114.7 53.8c13.6 16.2-11 36.7-24.5 20.4z" + }, + "regular": { + "last_modified": 1529520111618, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 128c-40.2 0-78 17.7-103.8 48.6-8.5 10.2-7.1 25.3 3.1 33.8 10.2 8.4 25.3 7.1 33.8-3.1 16.6-19.9 41-31.4 66.9-31.4s50.3 11.4 66.9 31.4c8.1 9.7 23.1 11.9 33.8 3.1 10.2-8.5 11.5-23.6 3.1-33.8C326 321.7 288.2 304 248 304z" + } + } + }, + "frown-open": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "disapprove", + "emoticon", + "face", + "rating", + "sad" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f57a", + "label": "Frowning Face With Open Mouth", + "svg": { + "solid": { + "last_modified": 1529520111667, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm187.3 183.3c-31.2-9.6-59.4-15.3-75.3-15.3s-44.1 5.7-75.3 15.3c-11.5 3.5-22.5-6.3-20.5-18.1 7-40 60.1-61.2 95.8-61.2s88.8 21.3 95.8 61.2c2 11.9-9.1 21.6-20.5 18.1zM328 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" + }, + "regular": { + "last_modified": 1529520111618, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-48-248c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 112c-35.6 0-88.8 21.3-95.8 61.2-2 11.8 9 21.5 20.5 18.1 31.2-9.6 59.4-15.3 75.3-15.3s44.1 5.7 75.3 15.3c11.4 3.5 22.5-6.3 20.5-18.1-7-39.9-60.2-61.2-95.8-61.2z" + } + } + }, + "fulcrum": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f50b", + "label": "Fulcrum", + "svg": { + "brands": { + "last_modified": 1525376442520, + "raw": "", + "viewBox": [ + "0", + "0", + "269.66", + "512" + ], + "width": 269, + "height": 512, + "path": "M70.75 164.14l-35.38 43.55L0 164.14l35.38-43.55 35.37 43.55zM119.23 0L98.69 198.18 47.72 256l50.98 57.82L119.23 512V300.89L78.15 256l41.08-44.89V0zm79.67 164.14l35.38 43.55 35.38-43.55-35.38-43.55-35.38 43.55zm-48.48 46.97L191.5 256l-41.08 44.89V512l20.54-198.18L221.94 256l-50.98-57.82L150.42 0v211.11z" + } + } + }, + "futbol": { + "changes": [ + "4.2", + "5.0.0", + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "football", + "soccer" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1e3", + "label": "Futbol", + "svg": { + "solid": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-48 0l-.003-.282-26.064 22.741-62.679-58.5 16.454-84.355 34.303 3.072c-24.889-34.216-60.004-60.089-100.709-73.141l13.651 31.939L256 139l-74.953-41.525 13.651-31.939c-40.631 13.028-75.78 38.87-100.709 73.141l34.565-3.073 16.192 84.355-62.678 58.5-26.064-22.741-.003.282c0 43.015 13.497 83.952 38.472 117.991l7.704-33.897 85.138 10.447 36.301 77.826-29.902 17.786c40.202 13.122 84.29 13.148 124.572 0l-29.902-17.786 36.301-77.826 85.138-10.447 7.704 33.897C442.503 339.952 456 299.015 456 256zm-248.102 69.571l-29.894-91.312L256 177.732l77.996 56.527-29.622 91.312h-96.476z" + }, + "regular": { + "last_modified": 1518899527981, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M483.8 179.4C449.8 74.6 352.6 8 248.1 8c-25.4 0-51.2 3.9-76.7 12.2C41.2 62.5-30.1 202.4 12.2 332.6 46.2 437.4 143.4 504 247.9 504c25.4 0 51.2-3.9 76.7-12.2 130.2-42.3 201.5-182.2 159.2-312.4zm-74.5 193.7l-52.2 6.4-43.7-60.9 24.4-75.2 71.1-22.1 38.9 36.4c-.2 30.7-7.4 61.1-21.7 89.2-4.7 9.3-10.7 17.8-16.8 26.2zm0-235.4l-10.4 53.1-70.7 22-64.2-46.5V92.5l47.4-26.2c39.2 13 73.4 38 97.9 71.4zM184.9 66.4L232 92.5v73.8l-64.2 46.5-70.6-22-10.1-52.5c24.3-33.4 57.9-58.6 97.8-71.9zM139 379.5L85.9 373c-14.4-20.1-37.3-59.6-37.8-115.3l39-36.4 71.1 22.2 24.3 74.3-43.5 61.7zm48.2 67l-22.4-48.1 43.6-61.7H287l44.3 61.7-22.4 48.1c-6.2 1.8-57.6 20.4-121.7 0z" + } + } + }, + "galactic-republic": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f50c", + "label": "Galactic Republic", + "svg": { + "brands": { + "last_modified": 1525376442520, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 504C111.25 504 0 392.75 0 256S111.25 8 248 8s248 111.25 248 248-111.25 248-248 248zm0-479.47C120.37 24.53 16.53 128.37 16.53 256S120.37 487.47 248 487.47 479.47 383.63 479.47 256 375.63 24.53 248 24.53zm27.62 21.81v24.62a185.933 185.933 0 0 1 83.57 34.54l17.39-17.36c-28.75-22.06-63.3-36.89-100.96-41.8zm-55.37.07c-37.64 4.94-72.16 19.8-100.88 41.85l17.28 17.36h.08c24.07-17.84 52.55-30.06 83.52-34.67V46.41zm12.25 50.17v82.87c-10.04 2.03-19.42 5.94-27.67 11.42l-58.62-58.59-21.93 21.93 58.67 58.67c-5.47 8.23-9.45 17.59-11.47 27.62h-82.9v31h82.9c2.02 10.02 6.01 19.31 11.47 27.54l-58.67 58.69 21.93 21.93 58.62-58.62a77.873 77.873 0 0 0 27.67 11.47v82.9h31v-82.9c10.05-2.03 19.37-6.06 27.62-11.55l58.67 58.69 21.93-21.93-58.67-58.69c5.46-8.23 9.47-17.52 11.5-27.54h82.87v-31h-82.87c-2.02-10.02-6.03-19.38-11.5-27.62l58.67-58.67-21.93-21.93-58.67 58.67c-8.25-5.49-17.57-9.47-27.62-11.5V96.58h-31zm183.24 30.72l-17.36 17.36a186.337 186.337 0 0 1 34.67 83.67h24.62c-4.95-37.69-19.83-72.29-41.93-101.03zm-335.55.13c-22.06 28.72-36.91 63.26-41.85 100.91h24.65c4.6-30.96 16.76-59.45 34.59-83.52l-17.39-17.39zM38.34 283.67c4.92 37.64 19.75 72.18 41.8 100.9l17.36-17.39c-17.81-24.07-29.92-52.57-34.51-83.52H38.34zm394.7 0c-4.61 30.99-16.8 59.5-34.67 83.6l17.36 17.36c22.08-28.74 36.98-63.29 41.93-100.96h-24.62zM136.66 406.38l-17.36 17.36c28.73 22.09 63.3 36.98 100.96 41.93v-24.64c-30.99-4.63-59.53-16.79-83.6-34.65zm222.53.05c-24.09 17.84-52.58 30.08-83.57 34.67v24.57c37.67-4.92 72.21-19.79 100.96-41.85l-17.31-17.39h-.08z" + } + } + }, + "galactic-senate": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f50d", + "label": "Galactic Senate", + "svg": { + "brands": { + "last_modified": 1525376442521, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M249.86 33.48v26.07C236.28 80.17 226 168.14 225.39 274.9c11.74-15.62 19.13-33.33 19.13-48.24v-16.88c-.03-5.32.75-10.53 2.19-15.65.65-2.14 1.39-4.08 2.62-5.82 1.23-1.75 3.43-3.79 6.68-3.79 3.24 0 5.45 2.05 6.68 3.79 1.23 1.75 1.97 3.68 2.62 5.82 1.44 5.12 2.22 10.33 2.19 15.65v16.88c0 14.91 7.39 32.62 19.13 48.24-.63-106.76-10.91-194.73-24.49-215.35V33.48h-12.28zm-26.34 147.77c-9.52 2.15-18.7 5.19-27.46 9.08 8.9 16.12 9.76 32.64 1.71 37.29-8 4.62-21.85-4.23-31.36-19.82-11.58 8.79-21.88 19.32-30.56 31.09 14.73 9.62 22.89 22.92 18.32 30.66-4.54 7.7-20.03 7.14-35.47-.96-5.78 13.25-9.75 27.51-11.65 42.42 9.68.18 18.67 2.38 26.18 6.04 17.78-.3 32.77-1.96 40.49-4.22 5.55-26.35 23.02-48.23 46.32-59.51.73-25.55 1.88-49.67 3.48-72.07zm64.96 0c1.59 22.4 2.75 46.52 3.47 72.07 23.29 11.28 40.77 33.16 46.32 59.51 7.72 2.26 22.71 3.92 40.49 4.22 7.51-3.66 16.5-5.85 26.18-6.04-1.9-14.91-5.86-29.17-11.65-42.42-15.44 8.1-30.93 8.66-35.47.96-4.57-7.74 3.6-21.05 18.32-30.66-8.68-11.77-18.98-22.3-30.56-31.09-9.51 15.59-23.36 24.44-31.36 19.82-8.05-4.65-7.19-21.16 1.71-37.29a147.49 147.49 0 0 0-27.45-9.08zm-32.48 8.6c-3.23 0-5.86 8.81-6.09 19.93h-.05v16.88c0 41.42-49.01 95.04-93.49 95.04-52 0-122.75-1.45-156.37 29.17v2.51c9.42 17.12 20.58 33.17 33.18 47.97C45.7 380.26 84.77 360.4 141.2 360c45.68 1.02 79.03 20.33 90.76 40.87.01.01-.01.04 0 .05 7.67 2.14 15.85 3.23 24.04 3.21 8.19.02 16.37-1.07 24.04-3.21.01-.01-.01-.04 0-.05 11.74-20.54 45.08-39.85 90.76-40.87 56.43.39 95.49 20.26 108.02 41.35 12.6-14.8 23.76-30.86 33.18-47.97v-2.51c-33.61-30.62-104.37-29.17-156.37-29.17-44.48 0-93.49-53.62-93.49-95.04v-16.88h-.05c-.23-11.12-2.86-19.93-6.09-19.93zm0 96.59c22.42 0 40.6 18.18 40.6 40.6s-18.18 40.65-40.6 40.65-40.6-18.23-40.6-40.65c0-22.42 18.18-40.6 40.6-40.6zm0 7.64c-18.19 0-32.96 14.77-32.96 32.96S237.81 360 256 360s32.96-14.77 32.96-32.96-14.77-32.96-32.96-32.96zm0 6.14c14.81 0 26.82 12.01 26.82 26.82s-12.01 26.82-26.82 26.82-26.82-12.01-26.82-26.82 12.01-26.82 26.82-26.82zm-114.8 66.67c-10.19.07-21.6.36-30.5 1.66.43 4.42 1.51 18.63 7.11 29.76 9.11-2.56 18.36-3.9 27.62-3.9 41.28.94 71.48 34.35 78.26 74.47l.11 4.7c10.4 1.91 21.19 2.94 32.21 2.94 11.03 0 21.81-1.02 32.21-2.94l.11-4.7c6.78-40.12 36.98-73.53 78.26-74.47 9.26 0 18.51 1.34 27.62 3.9 5.6-11.13 6.68-25.34 7.11-29.76-8.9-1.3-20.32-1.58-30.5-1.66-18.76.42-35.19 4.17-48.61 9.67-12.54 16.03-29.16 30.03-49.58 33.07-.09.02-.17.04-.27.05-.05.01-.11.04-.16.05-5.24 1.07-10.63 1.6-16.19 1.6-5.55 0-10.95-.53-16.19-1.6-.05-.01-.11-.04-.16-.05-.1-.02-.17-.04-.27-.05-20.42-3.03-37.03-17.04-49.58-33.07-13.42-5.49-29.86-9.25-48.61-9.67z" + } + } + }, + "gamepad": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "controller" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f11b", + "label": "Gamepad", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M480 96H160C71.6 96 0 167.6 0 256s71.6 160 160 160c44.8 0 85.2-18.4 114.2-48h91.5c29 29.6 69.5 48 114.2 48 88.4 0 160-71.6 160-160S568.4 96 480 96zM256 276c0 6.6-5.4 12-12 12h-52v52c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-52H76c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h52v-52c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h52c6.6 0 12 5.4 12 12v40zm184 68c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-80c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z" + } + } + }, + "gas-pump": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f52f", + "label": "Gas Pump", + "svg": { + "solid": { + "last_modified": 1525967154568, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M336 448H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm157.2-340.7l-81-81c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-6.2 6.2-6.2 16.4 0 22.6L416 97.9V160c0 28.1 20.9 51.3 48 55.2V376c0 13.2-10.8 24-24 24s-24-10.8-24-24v-32c0-48.6-39.4-88-88-88h-8V64c0-35.3-28.7-64-64-64H96C60.7 0 32 28.7 32 64v352h288V304h8c22.1 0 40 17.9 40 40v27.8c0 37.7 27 72 64.5 75.9 43 4.3 79.5-29.5 79.5-71.7V152.6c0-17-6.8-33.3-18.8-45.3zM256 192H96V64h160v128z" + } + } + }, + "gavel": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hammer", + "judge", + "lawyer", + "opinion" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0e3", + "label": "Gavel", + "svg": { + "solid": { + "last_modified": 1502810244000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z" + } + } + }, + "gem": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "diamond" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f3a5", + "label": "Gem", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M485.5 0L576 160H474.9L405.7 0h79.8zm-128 0l69.2 160H149.3L218.5 0h139zm-267 0h79.8l-69.2 160H0L90.5 0zM0 192h100.7l123 251.7c1.5 3.1-2.7 5.9-5 3.3L0 192zm148.2 0h279.6l-137 318.2c-1 2.4-4.5 2.4-5.5 0L148.2 192zm204.1 251.7l123-251.7H576L357.3 446.9c-2.3 2.7-6.5-.1-5-3.2z" + }, + "regular": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M464 0H112c-4 0-7.8 2-10 5.4L2 152.6c-2.9 4.4-2.6 10.2.7 14.2l276 340.8c4.8 5.9 13.8 5.9 18.6 0l276-340.8c3.3-4.1 3.6-9.8.7-14.2L474.1 5.4C471.8 2 468.1 0 464 0zm-19.3 48l63.3 96h-68.4l-51.7-96h56.8zm-202.1 0h90.7l51.7 96H191l51.6-96zm-111.3 0h56.8l-51.7 96H68l63.3-96zm-43 144h51.4L208 352 88.3 192zm102.9 0h193.6L288 435.3 191.2 192zM368 352l68.2-160h51.4L368 352z" + } + } + }, + "genderless": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f22d", + "label": "Genderless", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "288", + "512" + ], + "width": 288, + "height": 512, + "path": "M144 176c44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80 35.9-80 80-80m0-64C64.5 112 0 176.5 0 256s64.5 144 144 144 144-64.5 144-144-64.5-144-144-144z" + } + } + }, + "get-pocket": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f265", + "label": "Get Pocket", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M407.6 64h-367C18.5 64 0 82.5 0 104.6v135.2C0 364.5 99.7 464 224.2 464c124 0 223.8-99.5 223.8-224.2V104.6c0-22.4-17.7-40.6-40.4-40.6zm-162 268.5c-12.4 11.8-31.4 11.1-42.4 0C89.5 223.6 88.3 227.4 88.3 209.3c0-16.9 13.8-30.7 30.7-30.7 17 0 16.1 3.8 105.2 89.3 90.6-86.9 88.6-89.3 105.5-89.3 16.9 0 30.7 13.8 30.7 30.7 0 17.8-2.9 15.7-114.8 123.2z" + } + } + }, + "gg": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f260", + "label": "GG Currency", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M179.2 230.4l102.4 102.4-102.4 102.4L0 256 179.2 76.8l44.8 44.8-25.6 25.6-19.2-19.2-128 128 128 128 51.5-51.5-77.1-76.5 25.6-25.6zM332.8 76.8L230.4 179.2l102.4 102.4 25.6-25.6-77.1-76.5 51.5-51.5 128 128-128 128-19.2-19.2-25.6 25.6 44.8 44.8L512 256 332.8 76.8z" + } + } + }, + "gg-circle": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f261", + "label": "GG Currency Circle", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M257 8C120 8 9 119 9 256s111 248 248 248 248-111 248-248S394 8 257 8zm-49.5 374.8L81.8 257.1l125.7-125.7 35.2 35.4-24.2 24.2-11.1-11.1-77.2 77.2 77.2 77.2 26.6-26.6-53.1-52.9 24.4-24.4 77.2 77.2-75 75.2zm99-2.2l-35.2-35.2 24.1-24.4 11.1 11.1 77.2-77.2-77.2-77.2-26.5 26.5 53.1 52.9-24.4 24.4-77.2-77.2 75-75L432.2 255 306.5 380.6z" + } + } + }, + "gift": { + "changes": [ + "1", + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "generosity", + "giving", + "party", + "present", + "wrapped" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f06b", + "label": "gift", + "svg": { + "solid": { + "last_modified": 1522083406018, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M32 448c0 17.7 14.3 32 32 32h160V320H32v128zm448-288h-42.1c6.2-12.1 10.1-25.5 10.1-40 0-48.5-39.5-88-88-88-41.6 0-68.5 21.3-103 68.3-34.5-47-61.4-68.3-103-68.3-48.5 0-88 39.5-88 88 0 14.5 3.8 27.9 10.1 40H32c-17.7 0-32 14.3-32 32v80c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-80c0-17.7-14.3-32-32-32zm-326.1 0c-22.1 0-40-17.9-40-40s17.9-40 40-40c19.9 0 34.6 3.3 86.1 80h-86.1zm206.1 0h-86.1c51.4-76.5 65.7-80 86.1-80 22.1 0 40 17.9 40 40s-17.9 40-40 40zm-72 320h160c17.7 0 32-14.3 32-32V320H288v160z" + } + } + }, + "git": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1d3", + "label": "Git", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M18.8 221.7c0 25.3 16.2 60 41.5 68.5v1c-18.8 8.3-24 50.6 1 65.8v1C34 367 16 384.3 16 414.2c0 51.5 48.8 65.8 91.5 65.8 52 0 90.7-18.7 90.7-76 0-70.5-101-44.5-101-82.8 0-13.5 7.2-18.7 19.7-21.3 41.5-7.7 67.5-40 67.5-82.2 0-7.3-1.5-14.2-4-21 6.7-1.5 13.2-3.3 19.7-5.5v-50.5c-17.2 6.8-35.7 11.8-54.5 11.8-53.8-31-126.8 1.3-126.8 69.2zm87.7 163.8c17 0 41.2 3 41.2 25 0 21.8-19.5 26.3-37.7 26.3-17.3 0-43.3-2.7-43.3-25.2.1-22.3 22.1-26.1 39.8-26.1zM103.3 256c-22 0-31.3-13-31.3-33.8 0-49.3 61-48.8 61-.5 0 20.3-8 34.3-29.7 34.3zM432 305.5v49c-13.3 7.3-30.5 9.8-45.5 9.8-53.5 0-59.8-42.2-59.8-85.7v-87.7h.5v-1c-7 0-7.3-1.6-24 1v-47.5h24c0-22.3.3-31-1.5-41.2h56.7c-2 13.8-1.5 27.5-1.5 41.2h51v47.5s-19.3-1-51-1V281c0 14.8 3.3 32.8 21.8 32.8 9.8 0 21.3-2.8 29.3-8.3zM286 68.7c0 18.7-14.5 36.2-33.8 36.2-19.8 0-34.5-17.2-34.5-36.2 0-19.3 14.5-36.7 34.5-36.7C272 32 286 50 286 68.7zm-6.2 74.5c-1.8 14.6-1.6 199.8 0 217.8h-55.5c1.6-18.1 1.8-203 0-217.8h55.5z" + } + } + }, + "git-square": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1d2", + "label": "Git Square", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M140.1 348.5c12.1 0 29.5 2.1 29.5 17.9 0 15.5-13.9 18.8-27 18.8-12.3 0-30.9-2-30.9-18s15.7-18.7 28.4-18.7zm-24.7-116.6c0 14.8 6.6 24.1 22.3 24.1 15.5 0 21.2-10 21.2-24.5.1-34.4-43.5-34.8-43.5.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-241 93.7c-12.3 4.8-25.5 8.4-38.9 8.4-38.5-22.1-90.7.9-90.7 49.5 0 18 11.6 42.9 29.6 48.9v.7c-13.4 5.9-17.1 36.1.7 47v.7c-19.5 6.4-32.3 18.8-32.3 40.2 0 36.8 34.8 47 65.4 47 37.1 0 64.8-13.4 64.8-54.3 0-50.4-72.1-31.8-72.1-59.1 0-9.6 5.2-13.4 14.1-15.2 29.6-5.5 48.2-28.6 48.2-58.7 0-5.2-1.1-10.2-2.9-15 4.8-1.1 9.5-2.3 14.1-3.9v-36.2zm56.8 1.8h-39.6c1.3 10.6 1.1 142.6 0 155.5h39.6c-1.1-12.8-1.2-145.1 0-155.5zm4.5-53.3c0-13.4-10-26.2-24.1-26.2-14.3 0-24.6 12.5-24.6 26.2 0 13.6 10.5 25.9 24.6 25.9 13.7 0 24.1-12.5 24.1-25.9zm104.3 53.3h-36.4c0-9.8-.4-19.6 1.1-29.5h-40.5c1.3 7.3 1.1 13.6 1.1 29.5h-17.1v33.9c11.9-1.9 12.1-.7 17.1-.7v.7h-.4v62.7c0 31.1 4.5 61.2 42.7 61.2 10.7 0 23-1.8 32.5-7v-35c-5.7 3.9-13.9 5.9-20.9 5.9-13.2 0-15.5-12.9-15.5-23.4v-65.2c22.7 0 36.4.7 36.4.7v-33.8z" + } + } + }, + "github": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "octocat" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f09b", + "label": "GitHub", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z" + } + } + }, + "github-alt": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "octocat" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f113", + "label": "Alternate GitHub", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "480", + "512" + ], + "width": 480, + "height": 512, + "path": "M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1zM480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2zm-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3zm-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1z" + } + } + }, + "github-square": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "octocat" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f092", + "label": "GitHub Square", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z" + } + } + }, + "gitkraken": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3a6", + "label": "GitKraken", + "svg": { + "brands": { + "last_modified": 1502479343000, + "raw": "", + "viewBox": [ + "0", + "0", + "592", + "512" + ], + "width": 592, + "height": 512, + "path": "M565.7 118.1c-2.3-6.1-9.3-9.2-15.3-6.6-5.7 2.4-8.5 8.9-6.3 14.6 10.9 29 16.9 60.5 16.9 93.3 0 134.6-100.3 245.7-230.2 262.7V358.4c7.9-1.5 15.5-3.6 23-6.2v104c106.7-25.9 185.9-122.1 185.9-236.8 0-91.8-50.8-171.8-125.8-213.3-5.7-3.2-13-.9-15.9 5-2.7 5.5-.6 12.2 4.7 15.1 67.9 37.6 113.9 110 113.9 193.2 0 93.3-57.9 173.1-139.8 205.4v-92.2c14.2-4.5 24.9-17.7 24.9-33.5 0-13.1-6.8-24.4-17.3-30.5 8.3-79.5 44.5-58.6 44.5-83.9V170c0-38-87.9-161.8-129-164.7-2.5-.2-5-.2-7.6 0C251.1 8.3 163.2 132 163.2 170v14.8c0 25.3 36.3 4.3 44.5 83.9-10.6 6.1-17.3 17.4-17.3 30.5 0 15.8 10.6 29 24.8 33.5v92.2c-81.9-32.2-139.8-112-139.8-205.4 0-83.1 46-155.5 113.9-193.2 5.4-3 7.4-9.6 4.7-15.1-2.9-5.9-10.1-8.2-15.9-5-75 41.5-125.8 121.5-125.8 213.3 0 114.7 79.2 210.8 185.9 236.8v-104c7.6 2.5 15.1 4.6 23 6.2v123.7C131.4 465.2 31 354.1 31 219.5c0-32.8 6-64.3 16.9-93.3 2.2-5.8-.6-12.2-6.3-14.6-6-2.6-13 .4-15.3 6.6C14.5 149.7 8 183.8 8 219.5c0 155.1 122.6 281.6 276.3 287.8V361.4c6.8.4 15 .5 23.4 0v145.8C461.4 501.1 584 374.6 584 219.5c0-35.7-6.5-69.8-18.3-101.4zM365.9 275.5c13 0 23.7 10.5 23.7 23.7 0 13.1-10.6 23.7-23.7 23.7-13 0-23.7-10.5-23.7-23.7 0-13.1 10.6-23.7 23.7-23.7zm-139.8 47.3c-13.2 0-23.7-10.7-23.7-23.7s10.5-23.7 23.7-23.7c13.1 0 23.7 10.6 23.7 23.7 0 13-10.5 23.7-23.7 23.7z" + } + } + }, + "gitlab": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Axosoft" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f296", + "label": "GitLab", + "svg": { + "brands": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M29.782 199.732L256 493.714 8.074 309.699c-6.856-5.142-9.712-13.996-7.141-21.993l28.849-87.974zm75.405-174.806c-3.142-8.854-15.709-8.854-18.851 0L29.782 199.732h131.961L105.187 24.926zm56.556 174.806L256 493.714l94.257-293.982H161.743zm349.324 87.974l-28.849-87.974L256 493.714l247.926-184.015c6.855-5.142 9.711-13.996 7.141-21.993zm-85.404-262.78c-3.142-8.854-15.709-8.854-18.851 0l-56.555 174.806h131.961L425.663 24.926z" + } + } + }, + "gitter": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f426", + "label": "Gitter", + "svg": { + "brands": { + "last_modified": 1510266191926, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M66.4 322.5H16V0h50.4v322.5zM166.9 76.1h-50.4V512h50.4V76.1zm100.6 0h-50.4V512h50.4V76.1zM368 76h-50.4v247H368V76z" + } + } + }, + "glass-martini": { + "changes": [ + "1", + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "drink", + "glass", + "liquor", + "martini" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f000", + "label": "Martini Glass", + "svg": { + "solid": { + "last_modified": 1529520111668, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6z" + } + } + }, + "glass-martini-alt": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f57b", + "label": "Glass Martini-alt", + "svg": { + "solid": { + "last_modified": 1529520111668, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6zM443.77 48l-48 48H116.24l-48-48h375.53z" + } + } + }, + "glasses": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "foureyes", + "hipster", + "nerd", + "reading", + "sight", + "spectacles" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f530", + "label": "Glasses", + "svg": { + "solid": { + "last_modified": 1525967154569, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M574.1 280.37L528.75 98.66c-5.91-23.7-21.59-44.05-43-55.81-21.44-11.73-46.97-14.11-70.19-6.33l-15.25 5.08c-8.39 2.79-12.92 11.86-10.12 20.24l5.06 15.18c2.79 8.38 11.85 12.91 20.23 10.12l13.18-4.39c10.87-3.62 23-3.57 33.16 1.73 10.29 5.37 17.57 14.56 20.37 25.82l38.46 153.82c-22.19-6.81-49.79-12.46-81.2-12.46-34.77 0-73.98 7.02-114.85 26.74h-73.18c-40.87-19.74-80.08-26.75-114.86-26.75-31.42 0-59.02 5.65-81.21 12.46l38.46-153.83c2.79-11.25 10.09-20.45 20.38-25.81 10.16-5.3 22.28-5.35 33.15-1.73l13.17 4.39c8.38 2.79 17.44-1.74 20.23-10.12l5.06-15.18c2.8-8.38-1.73-17.45-10.12-20.24l-15.25-5.08c-23.22-7.78-48.75-5.41-70.19 6.33-21.41 11.77-37.09 32.11-43 55.8L1.9 280.37A64.218 64.218 0 0 0 0 295.86v70.25C0 429.01 51.58 480 115.2 480h37.12c60.28 0 110.37-45.94 114.88-105.37l2.93-38.63h35.75l2.93 38.63C313.31 434.06 363.4 480 423.68 480h37.12c63.62 0 115.2-50.99 115.2-113.88v-70.25c0-5.23-.64-10.43-1.9-15.5zm-370.72 89.42c-1.97 25.91-24.4 46.21-51.06 46.21H115.2C86.97 416 64 393.62 64 366.11v-37.54c18.12-6.49 43.42-12.92 72.58-12.92 23.86 0 47.26 4.33 69.93 12.92l-3.13 41.22zM512 366.12c0 27.51-22.97 49.88-51.2 49.88h-37.12c-26.67 0-49.1-20.3-51.06-46.21l-3.13-41.22c22.67-8.59 46.08-12.92 69.95-12.92 29.12 0 54.43 6.44 72.55 12.93v37.54z" + } + } + }, + "glide": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2a5", + "label": "Glide", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M252.8 148.6c0 8.8-1.6 17.7-3.4 26.4-5.8 27.8-11.6 55.8-17.3 83.6-1.4 6.3-8.3 4.9-13.7 4.9-23.8 0-30.5-26-30.5-45.5 0-29.3 11.2-68.1 38.5-83.1 4.3-2.5 9.2-4.2 14.1-4.2 11.4 0 12.3 8.3 12.3 17.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 187c0-5.1-20.8-37.7-25.5-39.5-2.2-.9-7.2-2.3-9.6-2.3-23.1 0-38.7 10.5-58.2 21.5l-.5-.5c4.3-29.4 14.6-57.2 14.6-87.4 0-44.6-23.8-62.7-67.5-62.7-71.7 0-108 70.8-108 123.5 0 54.7 32 85 86.3 85 7.5 0 6.9-.6 6.9 2.3-10.5 80.3-56.5 82.9-56.5 58.9 0-24.4 28-36.5 28.3-38-.2-7.6-29.3-17.2-36.7-17.2-21.1 0-32.7 33-32.7 50.6 0 32.3 20.4 54.7 53.3 54.7 48.2 0 83.4-49.7 94.3-91.7 9.4-37.7 7-39.4 12.3-42.1 20-10.1 35.8-16.8 58.4-16.8 11.1 0 19 2.3 36.7 5.2 1.8.1 4.1-1.7 4.1-3.5z" + } + } + }, + "glide-g": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2a6", + "label": "Glide G", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M407.1 211.2c-3.5-1.4-11.6-3.8-15.4-3.8-37.1 0-62.2 16.8-93.5 34.5l-.9-.9c7-47.3 23.5-91.9 23.5-140.4C320.8 29.1 282.6 0 212.4 0 97.3 0 39 113.7 39 198.4 39 286.3 90.3 335 177.6 335c12 0 11-1 11 3.8-16.9 128.9-90.8 133.1-90.8 94.6 0-39.2 45-58.6 45.5-61-.3-12.2-47-27.6-58.9-27.6-33.9.1-52.4 51.2-52.4 79.3C32 476 64.8 512 117.5 512c77.4 0 134-77.8 151.4-145.4 15.1-60.5 11.2-63.3 19.7-67.6 32.2-16.2 57.5-27 93.8-27 17.8 0 30.5 3.7 58.9 8.4 2.9 0 6.7-2.9 6.7-5.8 0-8-33.4-60.5-40.9-63.4zm-175.3-84.4c-9.3 44.7-18.6 89.6-27.8 134.3-2.3 10.2-13.3 7.8-22 7.8-38.3 0-49-41.8-49-73.1 0-47 18-109.3 61.8-133.4 7-4.1 14.8-6.7 22.6-6.7 18.6 0 20 13.3 20 28.7-.1 14.3-2.7 28.5-5.6 42.4z" + } + } + }, + "globe": { + "changes": [ + "2", + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "coordinates", + "country", + "earth", + "global", + "gps", + "language", + "localize", + "location", + "map", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0ac", + "label": "Globe", + "svg": { + "solid": { + "last_modified": 1522083406018, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z" + } + } + }, + "globe-africa": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "country", + "earth", + "global", + "gps", + "language", + "localize", + "location", + "map", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f57c", + "label": "Globe with Africa shown", + "svg": { + "solid": { + "last_modified": 1529520111668, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm160 215.5v6.93c0 5.87-3.32 11.24-8.57 13.86l-15.39 7.7a15.485 15.485 0 0 1-15.53-.97l-18.21-12.14a15.52 15.52 0 0 0-13.5-1.81l-2.65.88c-9.7 3.23-13.66 14.79-7.99 23.3l13.24 19.86c2.87 4.31 7.71 6.9 12.89 6.9h8.21c8.56 0 15.5 6.94 15.5 15.5v11.34c0 3.35-1.09 6.62-3.1 9.3l-18.74 24.98c-1.42 1.9-2.39 4.1-2.83 6.43l-4.3 22.83c-.62 3.29-2.29 6.29-4.76 8.56a159.608 159.608 0 0 0-25 29.16l-13.03 19.55a27.756 27.756 0 0 1-23.09 12.36c-10.51 0-20.12-5.94-24.82-15.34a78.902 78.902 0 0 1-8.33-35.29V367.5c0-8.56-6.94-15.5-15.5-15.5h-25.88c-14.49 0-28.38-5.76-38.63-16a54.659 54.659 0 0 1-16-38.63v-14.06c0-17.19 8.1-33.38 21.85-43.7l27.58-20.69a54.663 54.663 0 0 1 32.78-10.93h.89c8.48 0 16.85 1.97 24.43 5.77l14.72 7.36c3.68 1.84 7.93 2.14 11.83.84l47.31-15.77c6.33-2.11 10.6-8.03 10.6-14.7 0-8.56-6.94-15.5-15.5-15.5h-10.09c-4.11 0-8.05-1.63-10.96-4.54l-6.92-6.92a15.493 15.493 0 0 0-10.96-4.54H199.5c-8.56 0-15.5-6.94-15.5-15.5v-4.4c0-7.11 4.84-13.31 11.74-15.04l14.45-3.61c3.74-.94 7-3.23 9.14-6.44l8.08-12.11c2.87-4.31 7.71-6.9 12.89-6.9h24.21c8.56 0 15.5-6.94 15.5-15.5v-21.7C359.23 71.63 422.86 131.02 441.93 208H423.5c-8.56 0-15.5 6.94-15.5 15.5z" + } + } + }, + "globe-americas": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "country", + "earth", + "global", + "gps", + "language", + "localize", + "location", + "map", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f57d", + "label": "Globe with Americas shown", + "svg": { + "solid": { + "last_modified": 1529520111669, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm82.29 357.6c-3.9 3.88-7.99 7.95-11.31 11.28-2.99 3-5.1 6.7-6.17 10.71-1.51 5.66-2.73 11.38-4.77 16.87l-17.39 46.85c-13.76 3-28 4.69-42.65 4.69v-27.38c1.69-12.62-7.64-36.26-22.63-51.25-6-6-9.37-14.14-9.37-22.63v-32.01c0-11.64-6.27-22.34-16.46-27.97-14.37-7.95-34.81-19.06-48.81-26.11-11.48-5.78-22.1-13.14-31.65-21.75l-.8-.72a114.792 114.792 0 0 1-18.06-20.74c-9.38-13.77-24.66-36.42-34.59-51.14 20.47-45.5 57.36-82.04 103.2-101.89l24.01 12.01C203.48 89.74 216 82.01 216 70.11v-11.3c7.99-1.29 16.12-2.11 24.39-2.42l28.3 28.3c6.25 6.25 6.25 16.38 0 22.63L264 112l-10.34 10.34c-3.12 3.12-3.12 8.19 0 11.31l4.69 4.69c3.12 3.12 3.12 8.19 0 11.31l-8 8a8.008 8.008 0 0 1-5.66 2.34h-8.99c-2.08 0-4.08.81-5.58 2.27l-9.92 9.65a8.008 8.008 0 0 0-1.58 9.31l15.59 31.19c2.66 5.32-1.21 11.58-7.15 11.58h-5.64c-1.93 0-3.79-.7-5.24-1.96l-9.28-8.06a16.017 16.017 0 0 0-15.55-3.1l-31.17 10.39a11.95 11.95 0 0 0-8.17 11.34c0 4.53 2.56 8.66 6.61 10.69l11.08 5.54c9.41 4.71 19.79 7.16 30.31 7.16s22.59 27.29 32 32h66.75c8.49 0 16.62 3.37 22.63 9.37l13.69 13.69a30.503 30.503 0 0 1 8.93 21.57 46.536 46.536 0 0 1-13.72 32.98zM417 274.25c-5.79-1.45-10.84-5-14.15-9.97l-17.98-26.97a23.97 23.97 0 0 1 0-26.62l19.59-29.38c2.32-3.47 5.5-6.29 9.24-8.15l12.98-6.49C440.2 193.59 448 223.87 448 256c0 8.67-.74 17.16-1.82 25.54L417 274.25z" + } + } + }, + "globe-asia": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "country", + "earth", + "global", + "gps", + "language", + "localize", + "location", + "map", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f57e", + "label": "Globe with Asia shown", + "svg": { + "solid": { + "last_modified": 1529520111669, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm-11.34 240.23c-2.89 4.82-8.1 7.77-13.72 7.77h-.31c-4.24 0-8.31 1.69-11.31 4.69l-5.66 5.66c-3.12 3.12-3.12 8.19 0 11.31l5.66 5.66c3 3 4.69 7.07 4.69 11.31V304c0 8.84-7.16 16-16 16h-6.11c-6.06 0-11.6-3.42-14.31-8.85l-22.62-45.23c-2.44-4.88-8.95-5.94-12.81-2.08l-19.47 19.46c-3 3-7.07 4.69-11.31 4.69H50.81C49.12 277.55 48 266.92 48 256c0-110.28 89.72-200 200-200 21.51 0 42.2 3.51 61.63 9.82l-50.16 38.53c-5.11 3.41-4.63 11.06.86 13.81l10.83 5.41c5.42 2.71 8.84 8.25 8.84 14.31V216c0 4.42-3.58 8-8 8h-3.06c-3.03 0-5.8-1.71-7.15-4.42-1.56-3.12-5.96-3.29-7.76-.3l-17.37 28.95zM408 358.43c0 4.24-1.69 8.31-4.69 11.31l-9.57 9.57c-3 3-7.07 4.69-11.31 4.69h-15.16c-4.24 0-8.31-1.69-11.31-4.69l-13.01-13.01a26.767 26.767 0 0 0-25.42-7.04l-21.27 5.32c-1.27.32-2.57.48-3.88.48h-10.34c-4.24 0-8.31-1.69-11.31-4.69l-11.91-11.91a8.008 8.008 0 0 1-2.34-5.66v-10.2c0-3.27 1.99-6.21 5.03-7.43l39.34-15.74c1.98-.79 3.86-1.82 5.59-3.05l23.71-16.89a7.978 7.978 0 0 1 4.64-1.48h12.09c3.23 0 6.15 1.94 7.39 4.93l5.35 12.85a4 4 0 0 0 3.69 2.46h3.8c1.78 0 3.35-1.18 3.84-2.88l4.2-14.47c.5-1.71 2.06-2.88 3.84-2.88h6.06c2.21 0 4 1.79 4 4v12.93c0 2.12.84 4.16 2.34 5.66l11.91 11.91c3 3 4.69 7.07 4.69 11.31v24.6z" + } + } + }, + "gofore": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3a7", + "label": "Gofore", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "400", + "512" + ], + "width": 400, + "height": 512, + "path": "M324 319.8h-13.2v34.7c-24.5 23.1-56.3 35.8-89.9 35.8-73.2 0-132.4-60.2-132.4-134.4 0-74.1 59.2-134.4 132.4-134.4 35.3 0 68.6 14 93.6 39.4l62.3-63.3C335 55.3 279.7 32 220.7 32 98 32 0 132.6 0 256c0 122.5 97 224 220.7 224 63.2 0 124.5-26.2 171-82.5-2-27.6-13.4-77.7-67.7-77.7zm-12.1-112.5H205.6v89H324c33.5 0 60.5 15.1 76 41.8v-30.6c0-65.2-40.4-100.2-88.1-100.2z" + } + } + }, + "golf-ball": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f450", + "label": "Golf Ball", + "svg": { + "solid": { + "last_modified": 1518899527996, + "raw": "", + "viewBox": [ + "0", + "0", + "416", + "512" + ], + "width": 416, + "height": 512, + "path": "M96 416h224c0 17.7-14.3 32-32 32h-16c-17.7 0-32 14.3-32 32v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-20c0-17.7-14.3-32-32-32h-16c-17.7 0-32-14.3-32-32zm320-208c0 74.2-39 139.2-97.5 176h-221C39 347.2 0 282.2 0 208 0 93.1 93.1 0 208 0s208 93.1 208 208zm-180.1 43.9c18.3 0 33.1-14.8 33.1-33.1 0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1zm49.1 46.9c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1zm64-64c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1z" + } + } + }, + "goodreads": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3a8", + "label": "Goodreads", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M299.9 191.2c5.1 37.3-4.7 79-35.9 100.7-22.3 15.5-52.8 14.1-70.8 5.7-37.1-17.3-49.5-58.6-46.8-97.2 4.3-60.9 40.9-87.9 75.3-87.5 46.9-.2 71.8 31.8 78.2 78.3zM448 88v336c0 30.9-25.1 56-56 56H56c-30.9 0-56-25.1-56-56V88c0-30.9 25.1-56 56-56h336c30.9 0 56 25.1 56 56zM330 313.2s-.1-34-.1-217.3h-29v40.3c-.8.3-1.2-.5-1.6-1.2-9.6-20.7-35.9-46.3-76-46-51.9.4-87.2 31.2-100.6 77.8-4.3 14.9-5.8 30.1-5.5 45.6 1.7 77.9 45.1 117.8 112.4 115.2 28.9-1.1 54.5-17 69-45.2.5-1 1.1-1.9 1.7-2.9.2.1.4.1.6.2.3 3.8.2 30.7.1 34.5-.2 14.8-2 29.5-7.2 43.5-7.8 21-22.3 34.7-44.5 39.5-17.8 3.9-35.6 3.8-53.2-1.2-21.5-6.1-36.5-19-41.1-41.8-.3-1.6-1.3-1.3-2.3-1.3h-26.8c.8 10.6 3.2 20.3 8.5 29.2 24.2 40.5 82.7 48.5 128.2 37.4 49.9-12.3 67.3-54.9 67.4-106.3z" + } + } + }, + "goodreads-g": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3a9", + "label": "Goodreads G", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M42.6 403.3h2.8c12.7 0 25.5 0 38.2.1 1.6 0 3.1-.4 3.6 2.1 7.1 34.9 30 54.6 62.9 63.9 26.9 7.6 54.1 7.8 81.3 1.8 33.8-7.4 56-28.3 68-60.4 8-21.5 10.7-43.8 11-66.5.1-5.8.3-47-.2-52.8l-.9-.3c-.8 1.5-1.7 2.9-2.5 4.4-22.1 43.1-61.3 67.4-105.4 69.1-103 4-169.4-57-172-176.2-.5-23.7 1.8-46.9 8.3-69.7C58.3 47.7 112.3.6 191.6 0c61.3-.4 101.5 38.7 116.2 70.3.5 1.1 1.3 2.3 2.4 1.9V10.6h44.3c0 280.3.1 332.2.1 332.2-.1 78.5-26.7 143.7-103 162.2-69.5 16.9-159 4.8-196-57.2-8-13.5-11.8-28.3-13-44.5zM188.9 36.5c-52.5-.5-108.5 40.7-115 133.8-4.1 59 14.8 122.2 71.5 148.6 27.6 12.9 74.3 15 108.3-8.7 47.6-33.2 62.7-97 54.8-154-9.7-71.1-47.8-120-119.6-119.7z" + } + } + }, + "google": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a0", + "label": "Google Logo", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "488", + "512" + ], + "width": 488, + "height": 512, + "path": "M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z" + } + } + }, + "google-drive": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3aa", + "label": "Google Drive", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z" + } + } + }, + "google-play": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ab", + "label": "Google Play", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z" + } + } + }, + "google-plus": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "google-plus-circle", + "google-plus-official" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f2b3", + "label": "Google Plus", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm-70.7 372c-68.8 0-124-55.5-124-124s55.2-124 124-124c31.3 0 60.1 11 83 32.3l-33.6 32.6c-13.2-12.9-31.3-19.1-49.4-19.1-42.9 0-77.2 35.5-77.2 78.1s34.2 78.1 77.2 78.1c32.6 0 64.9-19.1 70.1-53.3h-70.1v-42.6h116.9c1.3 6.8 1.9 13.6 1.9 20.7 0 70.8-47.5 121.2-118.8 121.2zm230.2-106.2v35.5H372v-35.5h-35.5v-35.5H372v-35.5h35.5v35.5h35.2v35.5h-35.2z" + } + } + }, + "google-plus-g": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "google-plus", + "social network" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f0d5", + "label": "Google Plus G", + "svg": { + "brands": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M386.061 228.496c1.834 9.692 3.143 19.384 3.143 31.956C389.204 370.205 315.599 448 204.8 448c-106.084 0-192-85.915-192-192s85.916-192 192-192c51.864 0 95.083 18.859 128.611 50.292l-52.126 50.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484 0-118.92 54.221-118.92 121.277 0 67.056 53.436 121.277 118.92 121.277 75.961 0 104.513-54.745 108.965-82.773H204.8v-66.009h181.261zm185.406 6.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001h-55.733z" + } + } + }, + "google-plus-square": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "social network" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f0d4", + "label": "Google Plus Square", + "svg": { + "brands": { + "last_modified": 1507838931323, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM164 356c-55.3 0-100-44.7-100-100s44.7-100 100-100c27 0 49.5 9.8 67 26.2l-27.1 26.1c-7.4-7.1-20.3-15.4-39.8-15.4-34.1 0-61.9 28.2-61.9 63.2 0 34.9 27.8 63.2 61.9 63.2 39.6 0 54.4-28.5 56.8-43.1H164v-34.4h94.4c1 5 1.6 10.1 1.6 16.6 0 57.1-38.3 97.6-96 97.6zm220-81.8h-29v29h-29.2v-29h-29V245h29v-29H355v29h29v29.2z" + } + } + }, + "google-wallet": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1ee", + "label": "Google Wallet", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M156.8 126.8c37.6 60.6 64.2 113.1 84.3 162.5-8.3 33.8-18.8 66.5-31.3 98.3-13.2-52.3-26.5-101.3-56-148.5 6.5-36.4 2.3-73.6 3-112.3zM109.3 200H16.1c-6.5 0-10.5 7.5-6.5 12.7C51.8 267 81.3 330.5 101.3 400h103.5c-16.2-69.7-38.7-133.7-82.5-193.5-3-4-8-6.5-13-6.5zm47.8-88c68.5 108 130 234.5 138.2 368H409c-12-138-68.4-265-143.2-368H157.1zm251.8-68.5c-1.8-6.8-8.2-11.5-15.2-11.5h-88.3c-5.3 0-9 5-7.8 10.3 13.2 46.5 22.3 95.5 26.5 146 48.2 86.2 79.7 178.3 90.6 270.8 15.8-60.5 25.3-133.5 25.3-203 0-73.6-12.1-145.1-31.1-212.6z" + } + } + }, + "graduation-cap": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "learning", + "school", + "student" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f19d", + "label": "Graduation Cap", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M622.884 199.005l-275.817 85.1a96 96 0 0 1-54.134 0L92.398 222.232c-8.564 11.438-11.018 23.05-11.918 38.335C89.778 266.165 96 276.355 96 288c0 11.952-6.557 22.366-16.265 27.861l16.197 123.096c.63 4.786-3.1 9.043-7.932 9.043H40c-4.828 0-8.562-4.253-7.932-9.044L48.265 315.86C38.557 310.366 32 299.952 32 288c0-12.034 6.646-22.511 16.465-27.976.947-17.951 3.974-33.231 12.152-47.597l-43.502-13.422c-22.876-6.801-22.766-39.241 0-46.01l275.817-85.1a96 96 0 0 1 54.134 0l275.817 85.1c22.877 6.801 22.767 39.241.001 46.01zM356.503 314.682l-.207.064-.207.061a127.998 127.998 0 0 1-72.177 0l-.207-.061-.207-.064-150.914-46.57L120 352c0 35.346 89.543 64 200 64s200-28.654 200-64l-12.583-83.888-150.914 46.57z" + } + } + }, + "gratipay": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "like", + "love" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f184", + "label": "Gratipay (Gittip)", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm114.6 226.4l-113 152.7-112.7-152.7c-8.7-11.9-19.1-50.4 13.6-72 28.1-18.1 54.6-4.2 68.5 11.9 15.9 17.9 46.6 16.9 61.7 0 13.9-16.1 40.4-30 68.1-11.9 32.9 21.6 22.6 60 13.8 72z" + } + } + }, + "grav": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2d6", + "label": "Grav", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M301.1 212c4.4 4.4 4.4 11.9 0 16.3l-9.7 9.7c-4.4 4.7-11.9 4.7-16.6 0l-10.5-10.5c-4.4-4.7-4.4-11.9 0-16.6l9.7-9.7c4.4-4.4 11.9-4.4 16.6 0l10.5 10.8zm-30.2-19.7c3-3 3-7.8 0-10.5-2.8-3-7.5-3-10.5 0-2.8 2.8-2.8 7.5 0 10.5 3.1 2.8 7.8 2.8 10.5 0zm-26 5.3c-3 2.8-3 7.5 0 10.2 2.8 3 7.5 3 10.5 0 2.8-2.8 2.8-7.5 0-10.2-3-3-7.7-3-10.5 0zm72.5-13.3c-19.9-14.4-33.8-43.2-11.9-68.1 21.6-24.9 40.7-17.2 59.8.8 11.9 11.3 29.3 24.9 17.2 48.2-12.5 23.5-45.1 33.2-65.1 19.1zm47.7-44.5c-8.9-10-23.3 6.9-15.5 16.1 7.4 9 32.1 2.4 15.5-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-66.2 42.6c2.5-16.1-20.2-16.6-25.2-25.7-13.6-24.1-27.7-36.8-54.5-30.4 11.6-8 23.5-6.1 23.5-6.1.3-6.4 0-13-9.4-24.9 3.9-12.5.3-22.4.3-22.4 15.5-8.6 26.8-24.4 29.1-43.2 3.6-31-18.8-59.2-49.8-62.8-22.1-2.5-43.7 7.7-54.3 25.7-23.2 40.1 1.4 70.9 22.4 81.4-14.4-1.4-34.3-11.9-40.1-34.3-6.6-25.7 2.8-49.8 8.9-61.4 0 0-4.4-5.8-8-8.9 0 0-13.8 0-24.6 5.3 11.9-15.2 25.2-14.4 25.2-14.4 0-6.4-.6-14.9-3.6-21.6-5.4-11-23.8-12.9-31.7 2.8.1-.2.3-.4.4-.5-5 11.9-1.1 55.9 16.9 87.2-2.5 1.4-9.1 6.1-13 10-21.6 9.7-56.2 60.3-56.2 60.3-28.2 10.8-77.2 50.9-70.6 79.7.3 3 1.4 5.5 3 7.5-2.8 2.2-5.5 5-8.3 8.3-11.9 13.8-5.3 35.2 17.7 24.4 15.8-7.2 29.6-20.2 36.3-30.4 0 0-5.5-5-16.3-4.4 27.7-6.6 34.3-9.4 46.2-9.1 8 3.9 8-34.3 8-34.3 0-14.7-2.2-31-11.1-41.5 12.5 12.2 29.1 32.7 28 60.6-.8 18.3-15.2 23-15.2 23-9.1 16.6-43.2 65.9-30.4 106 0 0-9.7-14.9-10.2-22.1-17.4 19.4-46.5 52.3-24.6 64.5 26.6 14.7 108.8-88.6 126.2-142.3 34.6-20.8 55.4-47.3 63.9-65 22 43.5 95.3 94.5 101.1 59z" + } + } + }, + "greater-than": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f531", + "label": "Greater Than", + "svg": { + "solid": { + "last_modified": 1525967154569, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M365.52 209.85L59.22 67.01c-16.06-7.49-35.15-.54-42.64 15.52L3.01 111.61c-7.49 16.06-.54 35.15 15.52 42.64L236.96 256.1 18.49 357.99C2.47 365.46-4.46 384.5 3.01 400.52l13.52 29C24 445.54 43.04 452.47 59.06 445l306.47-142.91a32.003 32.003 0 0 0 18.48-29v-34.23c-.01-12.45-7.21-23.76-18.49-29.01z" + } + } + }, + "greater-than-equal": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f532", + "label": "Greater Than Equal To", + "svg": { + "solid": { + "last_modified": 1525967154569, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M55.22 107.69l175.56 68.09-175.44 68.05c-18.39 6.03-27.88 24.39-21.2 41l12.09 30.08c6.68 16.61 26.99 25.19 45.38 19.15L393.02 214.2c13.77-4.52 22.98-16.61 22.98-30.17v-15.96c0-13.56-9.21-25.65-22.98-30.17L91.3 17.92c-18.29-6-38.51 2.53-45.15 19.06L34.12 66.9c-6.64 16.53 2.81 34.79 21.1 40.79zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z" + } + } + }, + "grimace": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cringe", + "emoticon", + "face" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f57f", + "label": "Grimacing Face", + "svg": { + "solid": { + "last_modified": 1529520111669, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM144 400h-8c-17.7 0-32-14.3-32-32v-8h40v40zm0-56h-40v-8c0-17.7 14.3-32 32-32h8v40zm-8-136c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm72 192h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm-8-104c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64 128c0 17.7-14.3 32-32 32h-8v-40h40v8zm0-24h-40v-40h8c17.7 0 32 14.3 32 32v8z" + }, + "regular": { + "last_modified": 1529520111620, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm16 16H152c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h192c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48zm-168 96h-24c-8.8 0-16-7.2-16-16v-8h40v24zm0-40h-40v-8c0-8.8 7.2-16 16-16h24v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm56 24c0 8.8-7.2 16-16 16h-24v-24h40v8zm0-24h-40v-24h24c8.8 0 16 7.2 16 16v8z" + } + } + }, + "grin": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "laugh", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f580", + "label": "Grinning Face", + "svg": { + "solid": { + "last_modified": 1529520111677, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm80 256c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" + }, + "regular": { + "last_modified": 1529520111622, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z" + } + } + }, + "grin-alt": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "laugh", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f581", + "label": "Alternate Grinning Face", + "svg": { + "solid": { + "last_modified": 1529520111670, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm63.7 128.7c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zm-160 0c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" + }, + "regular": { + "last_modified": 1529520111620, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M200.3 248c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zm128 0c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3z" + } + } + }, + "grin-beam": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "laugh", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f582", + "label": "Grinning Face With Smiling Eyes", + "svg": { + "solid": { + "last_modified": 1529520111671, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 144c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" + }, + "regular": { + "last_modified": 1529520111620, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-235.9-72.9c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3zm160 0c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3z" + } + } + }, + "grin-beam-sweat": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f583", + "label": "Grinning Face With Sweat", + "svg": { + "solid": { + "last_modified": 1529520111671, + "raw": "", + "viewBox": [ + "0", + "0", + "504", + "512" + ], + "width": 504, + "height": 512, + "path": "M456 128c26.5 0 48-21 48-47 0-20-28.5-60.4-41.6-77.8-3.2-4.3-9.6-4.3-12.8 0C436.5 20.6 408 61 408 81c0 26 21.5 47 48 47zm0 32c-44.1 0-80-35.4-80-79 0-4.4.3-14.2 8.1-32.2C345 23.1 298.3 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-35.1-7.4-68.4-20.5-98.6-6.3 1.5-12.7 2.6-19.5 2.6zm-128-8c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" + }, + "regular": { + "last_modified": 1529520111620, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M440 160c29.5 0 53.3-26.3 53.3-58.7 0-25-31.7-75.5-46.2-97.3-3.6-5.3-10.7-5.3-14.2 0-14.5 21.8-46.2 72.3-46.2 97.3 0 32.4 23.8 58.7 53.3 58.7zM248 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zm105.3-52.9c-24.6 15.7-46 12.9-46.4 12.9 6.9 20.2 10.8 41.8 10.8 64.3 0 110.3-89.7 200-200 200S48 366.3 48 256 137.7 56 248 56c39.8 0 76.8 11.8 108 31.9 1.7-9.5 6.3-24.1 17.2-45.7C336.4 20.6 293.7 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-27-4.4-52.9-12.4-77.2zM168 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z" + } + } + }, + "grin-hearts": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "love", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f584", + "label": "Smiling Face With Heart-Eyes", + "svg": { + "solid": { + "last_modified": 1529520111672, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM90.4 183.6c6.7-17.6 26.7-26.7 44.9-21.9l7.1 1.9 2-7.1c5-18.1 22.8-30.9 41.5-27.9 21.4 3.4 34.4 24.2 28.8 44.5L195.3 243c-1.2 4.5-5.9 7.2-10.5 6l-70.2-18.2c-20.4-5.4-31.9-27-24.2-47.2zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm133.4-201.3l-70.2 18.2c-4.5 1.2-9.2-1.5-10.5-6L281.3 173c-5.6-20.3 7.4-41.1 28.8-44.5 18.6-3 36.4 9.8 41.5 27.9l2 7.1 7.1-1.9c18.2-4.7 38.2 4.3 44.9 21.9 7.7 20.3-3.8 41.9-24.2 47.2z" + }, + "regular": { + "last_modified": 1529520111620, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M353.6 304.6c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-152.8-48.9c4.5 1.2 9.2-1.5 10.5-6l19.4-69.9c5.6-20.3-7.4-41.1-28.8-44.5-18.6-3-36.4 9.8-41.5 27.9l-2 7.1-7.1-1.9c-18.2-4.7-38.2 4.3-44.9 22-7.7 20.2 3.8 41.9 24.2 47.2l70.2 18.1zm188.8-65.3c-6.7-17.6-26.7-26.7-44.9-22l-7.1 1.9-2-7.1c-5-18.1-22.8-30.9-41.5-27.9-21.4 3.4-34.4 24.2-28.8 44.5l19.4 69.9c1.2 4.5 5.9 7.2 10.5 6l70.2-18.2c20.4-5.3 31.9-26.9 24.2-47.1zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200z" + } + } + }, + "grin-squint": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "laugh", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f585", + "label": "Grinning Squinting Face", + "svg": { + "solid": { + "last_modified": 1529520111673, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" + }, + "regular": { + "last_modified": 1529520111621, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-234.7-40.8c3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3l-80-48c-5.1-3-11.4-1.9-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11.1.1 15.5zm242.9 2.5c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11-.1-15.5-3.8-4.4-10.2-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48z" + } + } + }, + "grin-squint-tears": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "happy", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f586", + "label": "Rolling on the Floor Laughing", + "svg": { + "solid": { + "last_modified": 1529520111672, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M409.6 111.9c22.6-3.2 73.5-12 88.3-26.8 19.2-19.2 18.9-50.6-.7-70.2S446-5 426.9 14.2c-14.8 14.8-23.5 65.7-26.8 88.3-.8 5.5 3.9 10.2 9.5 9.4zM102.4 400.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm311.7-256.5c-33 3.9-48.6-25.1-45.7-45.7 3.4-24 7.4-42.1 11.5-56.5C285.1-13.4 161.8-.5 80.6 80.6-.5 161.7-13.4 285 41.4 379.9c14.4-4.1 32.4-8 56.5-11.5 33.2-3.9 48.6 25.2 45.7 45.7-3.4 24-7.4 42.1-11.5 56.5 94.8 54.8 218.1 41.9 299.3-39.2s94-204.4 39.2-299.3c-14.4 4.1-32.5 8-56.5 11.5zM255.7 106c3.3-13.2 22.4-11.5 23.6 1.8l4.8 52.3 52.3 4.8c13.4 1.2 14.9 20.3 1.8 23.6l-90.5 22.6c-8.9 2.2-16.7-5.9-14.5-14.5l22.5-90.6zm-90.9 230.3L160 284l-52.3-4.8c-13.4-1.2-14.9-20.3-1.8-23.6l90.5-22.6c8.8-2.2 16.7 5.8 14.5 14.5L188.3 338c-3.1 13.2-22.2 11.7-23.5-1.7zm215.7 44.2c-29.3 29.3-75.7 50.4-116.7 50.4-18.9 0-36.6-4.5-51-14.7-9.8-6.9-8.7-21.8 2-27.2 28.3-14.6 63.9-42.4 97.8-76.3s61.7-69.6 76.3-97.8c5.4-10.5 20.2-11.9 27.3-2 32.3 45.3 7.1 124.7-35.7 167.6z" + }, + "regular": { + "last_modified": 1529520111621, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M117.1 384.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 479 124.3 420.8 128 395c.8-6.4-4.6-11.8-10.9-10.9zm-41.2-41.7C40.3 268 53 176.1 114.6 114.6 152.4 76.8 202.6 56 256 56c36.2 0 70.8 9.8 101.2 27.7 3.8-20.3 8-36.1 12-48.3C333.8 17.2 294.9 8 256 8 192.5 8 129.1 32.2 80.6 80.6c-74.1 74.1-91.3 183.4-52 274 12.2-4.1 27.7-8.3 47.3-12.2zm352.3-187.6c45 76.6 34.9 176.9-30.8 242.6-37.8 37.8-88 58.6-141.4 58.6-30.5 0-59.8-7-86.4-19.8-3.9 19.5-8 35-12.2 47.2 31.4 13.6 65 20.6 98.7 20.6 63.5 0 126.9-24.2 175.4-72.6 78.1-78.1 93.1-195.4 45.2-288.6-12.3 4-28.2 8.1-48.5 12zm-33.3-26.9c25.8-3.7 84-13.7 100.9-30.6 21.9-21.9 21.5-57.9-.9-80.3s-58.3-22.8-80.3-.9C397.7 33 387.7 91.2 384 117c-.8 6.4 4.6 11.8 10.9 10.9zm-187 108.3c-3-3-7.2-4.2-11.4-3.2L106 255.7c-5.7 1.4-9.5 6.7-9.1 12.6.5 5.8 5.1 10.5 10.9 11l52.3 4.8 4.8 52.3c.5 5.8 5.2 10.4 11 10.9h.9c5.5 0 10.3-3.7 11.7-9.1l22.6-90.5c1-4.2-.2-8.5-3.2-11.5zm39.7-25.1l90.5-22.6c5.7-1.4 9.5-6.7 9.1-12.6-.5-5.8-5.1-10.5-10.9-11l-52.3-4.8-4.8-52.3c-.5-5.8-5.2-10.4-11-10.9-5.6-.1-11.2 3.4-12.6 9.1L233 196.5c-1 4.1.2 8.4 3.2 11.4 5 5 11.3 3.2 11.4 3.2zm52 88.5c-29.1 29.1-59.7 52.9-83.9 65.4-9.2 4.8-10 17.5-1.7 23.4 38.9 27.7 107 6.2 143.7-30.6S416 253 388.3 214.1c-5.8-8.2-18.5-7.6-23.4 1.7-12.3 24.2-36.2 54.7-65.3 83.8z" + } + } + }, + "grin-stars": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "star-struck" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f587", + "label": "Star-Struck", + "svg": { + "solid": { + "last_modified": 1529520111673, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM94.6 168.9l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.2 1 8.9 8.6 4.3 13.2l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L152 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.6-4.7-1.9-12.3 4.3-13.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm157.7-249.9l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L344 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.5-4.6-1.9-12.2 4.3-13.2l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.3.9 9 8.5 4.4 13.1z" + }, + "regular": { + "last_modified": 1529520111621, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-227.9-57.5c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.5 1.9-12.2-4.3-13.2l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6.1 34.9zm259.7-72.7l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6 34.9c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.6 1.8-12.2-4.4-13.2z" + } + } + }, + "grin-tears": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f588", + "label": "Face With Tears of Joy", + "svg": { + "solid": { + "last_modified": 1529520111674, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M102.4 256.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm523.4 26.8c-14.8-14.8-65.7-23.5-88.3-26.8-5.5-.8-10.3 3.9-9.5 9.5 3.2 22.6 12 73.5 26.8 88.3 19.2 19.2 50.6 18.9 70.2-.7s20-51.2.8-70.3zm-129.4-12.8c-3.8-26.6 19.1-49.5 45.7-45.7 8.9 1.3 16.8 2.7 24.3 4.1C552.7 104.5 447.7 8 320 8S87.3 104.5 73.6 228.5c7.5-1.4 15.4-2.8 24.3-4.1 33.2-3.9 48.6 25.3 45.7 45.7-11.8 82.3-29.9 100.4-35.8 106.4-.9.9-2 1.6-3 2.5 42.7 74.6 123 125 215.2 125s172.5-50.4 215.2-125.1c-1-.9-2.1-1.5-3-2.5-5.9-5.9-24-24-35.8-106.3zM400 152c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.7 9.2-21.6 20.7-17.9C227.1 330.5 272 336 320 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" + }, + "regular": { + "last_modified": 1529520111621, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M117.1 256.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 351 124.3 292.8 128 267c.8-6.4-4.6-11.8-10.9-10.9zm506.7 30.6c-16.9-16.9-75.1-26.9-100.9-30.6-6.3-.9-11.7 4.5-10.8 10.8 3.7 25.8 13.7 84 30.6 100.9 21.9 21.9 57.9 21.5 80.3-.9 22.3-22.3 22.7-58.3.8-80.2zm-126.6 61.7C463.8 412.3 396.9 456 320 456c-76.9 0-143.8-43.7-177.2-107.6-12.5 37.4-25.2 43.9-28.3 46.5C159.1 460.7 234.5 504 320 504s160.9-43.3 205.5-109.1c-3.2-2.7-15.9-9.2-28.3-46.5zM122.7 224.5C137.9 129.2 220.5 56 320 56c99.5 0 182.1 73.2 197.3 168.5 2.1-.2 5.2-2.4 49.5 7C554.4 106 448.7 8 320 8S85.6 106 73.2 231.4c44.5-9.4 47.1-7.2 49.5-6.9zM320 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zM240 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z" + } + } + }, + "grin-tongue": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f589", + "label": "Face With Tongue", + "svg": { + "solid": { + "last_modified": 1529520111676, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-34.9 134.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z" + }, + "regular": { + "last_modified": 1529520111622, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zM168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" + } + } + }, + "grin-tongue-squint": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f58a", + "label": "Squinting Face With Tongue", + "svg": { + "solid": { + "last_modified": 1529520111675, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M293.1 374.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-33.8 210.3l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.7 4.7 7.7 15.9 0 20.6zm163 30c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.8-4.7-7.8-15.9 0-20.6l80-48c11.7-6.9 23.9 7.7 15.4 18L343.6 208l33.6 40.3z" + }, + "regular": { + "last_modified": 1529520111621, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zm36.9-281.1c-3.8-4.4-10.3-5.5-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zm-162.9 45.5l-80-48c-5-3-11.4-2-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3z" + } + } + }, + "grin-tongue-wink": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f58b", + "label": "Winking Face With Tongue", + "svg": { + "solid": { + "last_modified": 1529520111675, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M344 184c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-56 225l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L112 233c-8.5 7.4-21.6.3-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c1.6 11.1-11.6 18.2-20 10.8zm152 39c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm-50.9 102.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z" + }, + "regular": { + "last_modified": 1529520111621, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M152 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm176-52c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3z" + } + } + }, + "grin-wink": { + "changes": [ + "5.1.0", + "5.1.1" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "flirt", + "laugh", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f58c", + "label": "Grinning Winking Face", + "svg": { + "solid": { + "last_modified": 1529520111676, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm168 25l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.6 11-11.5 18.2-20 10.8zm-243.1 87.8C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6 20.7 17.9-9.2 55-83.2 93.3-143.8 93.3s-134.5-38.3-143.8-93.3c-2-11.9 9.3-21.6 20.7-17.9z" + }, + "regular": { + "last_modified": 1530132076296, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M328 180c-25.69 0-55.88 16.92-59.86 42.12-1.75 11.22 11.5 18.24 19.83 10.84l9.55-8.48c14.81-13.19 46.16-13.19 60.97 0l9.55 8.48c8.48 7.43 21.56.25 19.83-10.84C383.88 196.92 353.69 180 328 180zm-160 60c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm185.55 64.64c-25.93 8.3-64.4 13.06-105.55 13.06s-79.62-4.75-105.55-13.06c-9.94-3.13-19.4 5.37-17.71 15.34C132.67 367.13 196.06 400 248 400s115.33-32.87 123.26-80.02c1.68-9.89-7.67-18.48-17.71-15.34zM248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 448c-110.28 0-200-89.72-200-200S137.72 56 248 56s200 89.72 200 200-89.72 200-200 200z" + } + } + }, + "grip-horizontal": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affordance", + "drag", + "drop", + "grab", + "handle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f58d", + "label": "Grip Horizontal", + "svg": { + "solid": { + "last_modified": 1529520111677, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M96 288H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM96 96H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z" + } + } + }, + "grip-vertical": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affordance", + "drag", + "drop", + "grab", + "handle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f58e", + "label": "Grip Vertical", + "svg": { + "solid": { + "last_modified": 1529520111678, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M96 32H32C14.33 32 0 46.33 0 64v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM288 32h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z" + } + } + }, + "gripfire": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ac", + "label": "Gripfire, Inc.", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M171.8 503.8c0-5.3 4.8-12.2 4.8-22.3 0-15.2-13-39.9-78.1-86.6C64.2 365.8 32 336.4 32 286.6 32 171.9 179.1 110.1 179.1 18c0-3.3-.2-6.7-.6-10 5.1 2.4 39.1 43.3 39.1 90.4 0 80.5-105.1 129.2-105.1 203 0 26.9 16.6 47.2 32.6 69.5 22.5 30.2 44.2 56.9 44.2 86.5-.1 14.5-4.4 29.7-17.5 46.4zm146-241.4c1.5 8.4 2.2 16.6 2.2 24.6 0 51.8-29.4 97.5-67.3 136.8-1 1-2.2 2.4-3.2 2.4-3.6 0-35.5-41.6-35.5-53.2 0 0 41.8-55.7 41.8-96.9 0-10.8-2.7-21.7-9.1-33.4-1.5 32.3-55.7 87.7-58.1 87.7-2.7 0-17.9-22-17.9-42.1 0-5.3 1-10.7 3.2-15.8 2.4-5.5 56.6-72 56.6-116.7 0-6.2-1-12-3.4-17.1l-4-7.2c16.7 6.5 82.6 64.1 94.7 130.9" + } + } + }, + "grunt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ad", + "label": "Grunt", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M61.3 189.3c-1.1 10 5.2 19.1 5.2 19.1.7-7.5 2.2-12.8 4-16.6.4 10.3 3.2 23.5 12.8 34.1 6.9 7.6 35.6 23.3 54.9 6.1 1 2.4 2.1 5.3 3 8.5 2.9 10.3-2.7 25.3-2.7 25.3s15.1-17.1 13.9-32.5c10.8-.5 21.4-8.4 21.1-19.5 0 0-18.9 10.4-35.5-8.8-9.7-11.2-40.9-42-83.1-31.8 4.3 1 8.9 2.4 13.5 4.1h-.1c-4.2 2-6.5 7.1-7 12zm28.3-1.8c19.5 11 37.4 25.7 44.9 37-5.7 3.3-21.7 10.4-38-1.7-10.3-7.6-9.8-26.2-6.9-35.3zm79.2 233.7c2.2 2.3 1.5 5.3.9 6.8-1.1 2.7-5.5 11.6-13 19.8-2.7 2.9-6.6 4.6-11 4.6-4.3 0-8.7-1.6-11.8-4.3-2.3-2.1-10.2-9.5-13.7-18.6-1.3-3.4-1-6.1.9-8.1 1.3-1.3 4-2.9 9.5-2.9H160c4.1 0 7 .9 8.8 2.7zm62.9-187.9c-1.2 15.5 13.9 32.5 13.9 32.5s-5.6-15-2.7-25.3c.9-3.2 2-6 3-8.5 19.3 17.3 48 1.5 54.8-6.1 9.6-10.6 12.3-23.8 12.8-34.1 1.8 3.8 3.4 9.1 4 16.6 0 0 6.4-9.1 5.2-19.1-.6-5-2.9-10-7-11.8h-.1c4.6-1.8 9.2-3.2 13.5-4.1-42.3-10.2-73.4 20.6-83.1 31.8-16.7 19.2-35.5 8.8-35.5 8.8-.2 10.9 10.4 18.9 21.2 19.3zm17.8-8.8c7.5-11.4 25.4-26 44.9-37 3 9.1 3.4 27.7-7 35.4-16.3 12.1-32.2 5-37.9 1.6-.1.1 0 0 0 0zM263 421.4c1.9 1.9 2.2 4.6.9 7.9-3.5 8.9-11.4 16.1-13.7 18.1-3.1 2.6-7.4 4.2-11.8 4.2s-8.3-1.6-11-4.5c-7.5-8-12-16.7-13-19.3-.6-1.5-1.3-4.4.9-6.7 1.7-1.8 4.7-2.7 8.9-2.7h29.4c5.4.1 8.1 1.7 9.4 3zm-98.3-251.5c9.9 6 18.8 8.1 27.3 8.3 8.5-.2 17.4-2.3 27.3-8.3 0 0-14.5 17.7-27.2 17.8h-.2c-12.7-.2-27.2-17.8-27.2-17.8zm184.5 147.4c-2.4 17.9-13 33.8-24.6 43.7-3.1-22.7-3.7-55.5-3.7-62.4 0-14.7 9.5-24.5 12.2-26.1 2.5-1.5 5.4-3 8.3-4.6 18-9.6 40.4-21.6 40.4-43.7 0-16.2-9.3-23.2-15.4-27.8-.8-.6-1.5-1.1-2.2-1.7-2.1-1.7-3.7-3-4.3-4.4-4.4-9.8-3.6-34.2-1.7-37.6.6-.6 16.7-20.9 11.8-39.2-2-7.4-6.9-13.3-14.1-17-5.3-2.7-11.9-4.2-19.5-4.5-.1-2-.5-3.9-.9-5.9-.6-2.6-1.1-5.3-.9-8.1.4-4.7.8-9 2.2-11.3 8.4-13.3 28.8-17.6 29-17.6l12.3-2.4-8.1-9.5c-.1-.2-17.3-17.5-46.3-17.5-7.9 0-16 1.3-24.1 3.9-24.2 7.8-42.9 30.5-49.4 39.3-3.1-1-6.3-1.9-9.6-2.7-4.2-15.8 9-38.5 9-38.5s-13.6-3-33.7 15.2c-2.6-6.5-8.1-20.5-1.8-37.2C184.6 10.1 177.2 26 175 40.4c-7.6-5.4-6.7-23.1-7.2-27.6-7.5.9-29.2 21.9-28.2 48.3-2 .5-3.9 1.1-5.9 1.7-6.5-8.8-25.1-31.5-49.4-39.3-7.9-2.2-16-3.5-23.9-3.5-29 0-46.1 17.3-46.3 17.5L6 46.9l12.3 2.4c.2 0 20.6 4.3 29 17.6 1.4 2.2 1.8 6.6 2.2 11.3.2 2.8-.4 5.5-.9 8.1-.4 1.9-.8 3.9-.9 5.9-7.7.3-14.2 1.8-19.5 4.5-7.2 3.7-12.1 9.6-14.1 17-5 18.2 11.2 38.5 11.8 39.2 1.9 3.4 2.7 27.8-1.7 37.6-.6 1.4-2.2 2.7-4.3 4.4-.7.5-1.4 1.1-2.2 1.7-6.1 4.6-15.4 11.7-15.4 27.8 0 22.1 22.4 34.1 40.4 43.7 3 1.6 5.8 3.1 8.3 4.6 2.7 1.6 12.2 11.4 12.2 26.1 0 6.9-.6 39.7-3.7 62.4-11.6-9.9-22.2-25.9-24.6-43.8 0 0-29.2 22.6-20.6 70.8 5.2 29.5 23.2 46.1 47 54.7 8.8 19.1 29.4 45.7 67.3 49.6C143 504.3 163 512 192.2 512h.2c29.1 0 49.1-7.7 63.6-19.5 37.9-3.9 58.5-30.5 67.3-49.6 23.8-8.7 41.7-25.2 47-54.7 8.2-48.4-21.1-70.9-21.1-70.9zM305.7 37.7c5.6-1.8 11.6-2.7 17.7-2.7 11 0 19.9 3 24.7 5-3.1 1.4-6.4 3.2-9.7 5.3-2.4-.4-5.6-.8-9.2-.8-10.5 0-20.5 3.1-28.7 8.9-12.3 8.7-18 16.9-20.7 22.4-2.2-1.3-4.5-2.5-7.1-3.7-1.6-.8-3.1-1.5-4.7-2.2 6.1-9.1 19.9-26.5 37.7-32.2zm21 18.2c-.8 1-1.6 2.1-2.3 3.2-3.3 5.2-3.9 11.6-4.4 17.8-.5 6.4-1.1 12.5-4.4 17-4.2.8-8.1 1.7-11.5 2.7-2.3-3.1-5.6-7-10.5-11.2 1.4-4.8 5.5-16.1 13.5-22.5 5.6-4.3 12.2-6.7 19.6-7zM45.6 45.3c-3.3-2.2-6.6-4-9.7-5.3 4.8-2 13.7-5 24.7-5 6.1 0 12 .9 17.7 2.7 17.8 5.8 31.6 23.2 37.7 32.1-1.6.7-3.2 1.4-4.8 2.2-2.5 1.2-4.9 2.5-7.1 3.7-2.6-5.4-8.3-13.7-20.7-22.4-8.3-5.8-18.2-8.9-28.8-8.9-3.4.1-6.6.5-9 .9zm44.7 40.1c-4.9 4.2-8.3 8-10.5 11.2-3.4-.9-7.3-1.9-11.5-2.7C65 89.5 64.5 83.4 64 77c-.5-6.2-1.1-12.6-4.4-17.8-.7-1.1-1.5-2.2-2.3-3.2 7.4.3 14 2.6 19.5 7 8 6.3 12.1 17.6 13.5 22.4zM58.1 259.9c-2.7-1.6-5.6-3.1-8.4-4.6-14.9-8-30.2-16.3-30.2-30.5 0-11.1 4.3-14.6 8.9-18.2l.5-.4c.7-.6 1.4-1.2 2.2-1.8-.9 7.2-1.9 13.3-2.7 14.9 0 0 12.1-15 15.7-44.3 1.4-11.5-1.1-34.3-5.1-43 .2 4.9 0 9.8-.3 14.4-.4-.8-.8-1.6-1.3-2.2-3.2-4-11.8-17.5-9.4-26.6.9-3.5 3.1-6 6.7-7.8 3.8-1.9 8.8-2.9 15.1-2.9 12.3 0 25.9 3.7 32.9 6 25.1 8 55.4 30.9 64.1 37.7.2.2.4.3.4.3l5.6 3.9-3.5-5.8c-.2-.3-19.1-31.4-53.2-46.5 2-2.9 7.4-8.1 21.6-15.1 21.4-10.5 46.5-15.8 74.3-15.8 27.9 0 52.9 5.3 74.3 15.8 14.2 6.9 19.6 12.2 21.6 15.1-34 15.1-52.9 46.2-53.1 46.5l-3.5 5.8 5.6-3.9s.2-.1.4-.3c8.7-6.8 39-29.8 64.1-37.7 7-2.2 20.6-6 32.9-6 6.3 0 11.3 1 15.1 2.9 3.5 1.8 5.7 4.4 6.7 7.8 2.5 9.1-6.1 22.6-9.4 26.6-.5.6-.9 1.3-1.3 2.2-.3-4.6-.5-9.5-.3-14.4-4 8.8-6.5 31.5-5.1 43 3.6 29.3 15.7 44.3 15.7 44.3-.8-1.6-1.8-7.7-2.7-14.9.7.6 1.5 1.2 2.2 1.8l.5.4c4.6 3.7 8.9 7.1 8.9 18.2 0 14.2-15.4 22.5-30.2 30.5-2.9 1.5-5.7 3.1-8.4 4.6-8.7 5-18 16.7-19.1 34.2-.9 14.6.9 49.9 3.4 75.9-12.4 4.8-26.7 6.4-39.7 6.8-2-4.1-3.9-8.5-5.5-13.1-.7-2-19.6-51.1-26.4-62.2 5.5 39 17.5 73.7 23.5 89.6-3.5-.5-7.3-.7-11.7-.7h-117c-4.4 0-8.3.3-11.7.7 6-15.9 18.1-50.6 23.5-89.6-6.8 11.2-25.7 60.3-26.4 62.2-1.6 4.6-3.5 9-5.5 13.1-13-.4-27.2-2-39.7-6.8 2.5-26 4.3-61.2 3.4-75.9-.9-17.4-10.3-29.2-19-34.2zM34.8 404.6c-12.1-20-8.7-54.1-3.7-59.1 10.9 34.4 47.2 44.3 74.4 45.4-2.7 4.2-5.2 7.6-7 10l-1.4 1.4c-7.2 7.8-8.6 18.5-4.1 31.8-22.7-.1-46.3-9.8-58.2-29.5zm45.7 43.5c6 1.1 12.2 1.9 18.6 2.4 3.5 8 7.4 15.9 12.3 23.1-14.4-5.9-24.4-16-30.9-25.5zM192 498.2c-60.6-.1-78.3-45.8-84.9-64.7-3.7-10.5-3.4-18.2.9-23.1 2.9-3.3 9.5-7.2 24.6-7.2h118.8c15.1 0 21.8 3.9 24.6 7.2 4.2 4.8 4.5 12.6.9 23.1-6.6 18.8-24.3 64.6-84.9 64.7zm80.6-24.6c4.9-7.2 8.8-15.1 12.3-23.1 6.4-.5 12.6-1.3 18.6-2.4-6.5 9.5-16.5 19.6-30.9 25.5zm76.6-69c-12 19.7-35.6 29.3-58.1 29.7 4.5-13.3 3.1-24.1-4.1-31.8-.4-.5-.9-1-1.4-1.5-1.8-2.4-4.3-5.8-7-10 27.2-1.2 63.5-11 74.4-45.4 5 5 8.4 39.1-3.8 59z" + } + } + }, + "gulp": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ae", + "label": "Gulp", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M209.8 391.1l-14.1 24.6-4.6 80.2c0 8.9-28.3 16.1-63.1 16.1s-63.1-7.2-63.1-16.1l-5.8-79.4-14.9-25.4c41.2 17.3 126 16.7 165.6 0zm-196-253.3l13.6 125.5c5.9-20 20.8-47 40-55.2 6.3-2.7 12.7-2.7 18.7.9 5.2 3 9.6 9.3 10.1 11.8 1.2 6.5-2 9.1-4.5 9.1-3 0-5.3-4.6-6.8-7.3-4.1-7.3-10.3-7.6-16.9-2.8-6.9 5-12.9 13.4-17.1 20.7-5.1 8.8-9.4 18.5-12 28.2-1.5 5.6-2.9 14.6-.6 19.9 1 2.2 2.5 3.6 4.9 3.6 5 0 12.3-6.6 15.8-10.1 4.5-4.5 10.3-11.5 12.5-16l5.2-15.5c2.6-6.8 9.9-5.6 9.9 0 0 10.2-3.7 13.6-10 34.7-5.8 19.5-7.6 25.8-7.6 25.8-.7 2.8-3.4 7.5-6.3 7.5-1.2 0-2.1-.4-2.6-1.2-1-1.4-.9-5.3-.8-6.3.2-3.2 6.3-22.2 7.3-25.2-2 2.2-4.1 4.4-6.4 6.6-5.4 5.1-14.1 11.8-21.5 11.8-3.4 0-5.6-.9-7.7-2.4l7.6 79.6c2 5 39.2 17.1 88.2 17.1 49.1 0 86.3-12.2 88.2-17.1l10.9-94.6c-5.7 5.2-12.3 11.6-19.6 14.8-5.4 2.3-17.4 3.8-17.4-5.7 0-5.2 9.1-14.8 14.4-21.5 1.4-1.7 4.7-5.9 4.7-8.1 0-2.9-6-2.2-11.7 2.5-3.2 2.7-6.2 6.3-8.7 9.7-4.3 6-6.6 11.2-8.5 15.5-6.2 14.2-4.1 8.6-9.1 22-5 13.3-4.2 11.8-5.2 14-.9 1.9-2.2 3.5-4 4.5-1.9 1-4.5.9-6.1-.3-.9-.6-1.3-1.9-1.3-3.7 0-.9.1-1.8.3-2.7 1.5-6.1 7.8-18.1 15-34.3 1.6-3.7 1-2.6.8-2.3-6.2 6-10.9 8.9-14.4 10.5-5.8 2.6-13 2.6-14.5-4.1-.1-.4-.1-.8-.2-1.2-11.8 9.2-24.3 11.7-20-8.1-4.6 8.2-12.6 14.9-22.4 14.9-4.1 0-7.1-1.4-8.6-5.1-2.3-5.5 1.3-14.9 4.6-23.8 1.7-4.5 4-9.9 7.1-16.2 1.6-3.4 4.2-5.4 7.6-4.5.6.2 1.1.4 1.6.7 2.6 1.8 1.6 4.5.3 7.2-3.8 7.5-7.1 13-9.3 20.8-.9 3.3-2 9 1.5 9 2.4 0 4.7-.8 6.9-2.4 4.6-3.4 8.3-8.5 11.1-13.5 2-3.6 4.4-8.3 5.6-12.3.5-1.7 1.1-3.3 1.8-4.8 1.1-2.5 2.6-5.1 5.2-5.1 1.3 0 2.4.5 3.2 1.5 1.7 2.2 1.3 4.5.4 6.9-2 5.6-4.7 10.6-6.9 16.7-1.3 3.5-2.7 8-2.7 11.7 0 3.4 3.7 2.6 6.8 1.2 2.4-1.1 4.8-2.8 6.8-4.5 1.2-4.9.9-3.8 26.4-68.2 1.3-3.3 3.7-4.7 6.1-4.7 1.2 0 2.2.4 3.2 1.1 1.7 1.3 1.7 4.1 1 6.2-.7 1.9-.6 1.3-4.5 10.5-5.2 12.1-8.6 20.8-13.2 31.9-1.9 4.6-7.7 18.9-8.7 22.3-.6 2.2-1.3 5.8 1 5.8 5.4 0 19.3-13.1 23.1-17 .2-.3.5-.4.9-.6.6-1.9 1.2-3.7 1.7-5.5 1.4-3.8 2.7-8.2 5.3-11.3.8-1 1.7-1.6 2.7-1.6 2.8 0 4.2 1.2 4.2 4 0 1.1-.7 5.1-1.1 6.2 1.4-1.5 2.9-3 4.5-4.5 15-13.9 25.7-6.8 25.7.2 0 7.4-8.9 17.7-13.8 23.4-1.6 1.9-4.9 5.4-5 6.4 0 1.3.9 1.8 2.2 1.8 2 0 6.4-3.5 8-4.7 5-3.9 11.8-9.9 16.6-14.1l14.8-136.8c-30.5 17.1-197.6 17.2-228.3.2zm229.7-8.5c0 21-231.2 21-231.2 0 0-8.8 51.8-15.9 115.6-15.9 9 0 17.8.1 26.3.4l12.6-48.7L228.1.6c1.4-1.4 5.8-.2 9.9 3.5s6.6 7.9 5.3 9.3l-.1.1L185.9 74l-10 40.7c39.9 2.6 67.6 8.1 67.6 14.6zm-69.4 4.6c0-.8-.9-1.5-2.5-2.1l-.2.8c0 1.3-5 2.4-11.1 2.4s-11.1-1.1-11.1-2.4c0-.1 0-.2.1-.3l.2-.7c-1.8.6-3 1.4-3 2.3 0 2.1 6.2 3.7 13.7 3.7 7.7.1 13.9-1.6 13.9-3.7z" + } + } + }, + "h-square": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hospital", + "hotel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0fd", + "label": "H Square", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-112 48h-32c-8.837 0-16 7.163-16 16v80H160v-80c0-8.837-7.163-16-16-16h-32c-8.837 0-16 7.163-16 16v224c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16v-80h128v80c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144c0-8.837-7.163-16-16-16z" + } + } + }, + "hacker-news": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1d4", + "label": "Hacker News", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm21.2 197.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z" + } + } + }, + "hacker-news-square": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3af", + "label": "Hacker News Square", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM21.2 229.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z" + } + } + }, + "hand-holding": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f4bd", + "label": "Hand Holding", + "svg": { + "solid": { + "last_modified": 1521653821450, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M565.3 328.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z" + } + } + }, + "hand-holding-heart": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f4be", + "label": "Hand Holding Heart", + "svg": { + "solid": { + "last_modified": 1522083406019, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M275.3 250.5c7 7.4 18.4 7.4 25.5 0l108.9-114.2c31.6-33.2 29.8-88.2-5.6-118.8-30.8-26.7-76.7-21.9-104.9 7.7L288 36.9l-11.1-11.6C248.7-4.4 202.8-9.2 172 17.5c-35.3 30.6-37.2 85.6-5.6 118.8l108.9 114.2zm290 77.6c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z" + } + } + }, + "hand-holding-usd": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "$", + "dollar sign", + "donation", + "giving", + "money", + "price" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4c0", + "label": "Hand Holding US Dollar", + "svg": { + "solid": { + "last_modified": 1522083406019, + "raw": "", + "viewBox": [ + "0", + "0", + "544", + "512" + ], + "width": 544, + "height": 512, + "path": "M257.6 144.3l50 14.3c3.6 1 6.1 4.4 6.1 8.1 0 4.6-3.8 8.4-8.4 8.4h-32.8c-3.6 0-7.1-.8-10.3-2.2-4.8-2.2-10.4-1.7-14.1 2l-17.5 17.5c-5.3 5.3-4.7 14.3 1.5 18.4 9.5 6.3 20.3 10.1 31.8 11.5V240c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16v-17.6c30.3-3.6 53.3-31 49.3-63-2.9-23-20.7-41.3-42.9-47.7l-50-14.3c-3.6-1-6.1-4.4-6.1-8.1 0-4.6 3.8-8.4 8.4-8.4h32.8c3.6 0 7.1.8 10.3 2.2 4.8 2.2 10.4 1.7 14.1-2l17.5-17.5c5.3-5.3 4.7-14.3-1.5-18.4-9.5-6.3-20.3-10.1-31.8-11.5V16c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16v17.6c-30.3 3.6-53.3 31-49.3 63 2.9 23 20.7 41.3 42.9 47.7zm276.3 183.8c-11.2-10.7-28.5-10-40.3 0L406.4 402c-10.7 9.1-24 14-37.8 14H256.9c-8.3 0-15.1-7.2-15.1-16s6.8-16 15.1-16h73.9c15.1 0 29-10.9 31.4-26.6 3.1-20-11.5-37.4-29.8-37.4H181.3c-25.5 0-50.2 9.3-69.9 26.3L67.5 384H15.1C6.8 384 0 391.2 0 400v96c0 8.8 6.8 16 15.1 16H352c13.7 0 27-4.9 37.8-14l142.8-121c14.4-12.1 15.5-35.3 1.3-48.9z" + } + } + }, + "hand-lizard": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f258", + "label": "Lizard (Hand)", + "svg": { + "solid": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M384 480h192V363.778a95.998 95.998 0 0 0-14.833-51.263L398.127 54.368A48 48 0 0 0 357.544 32H24C10.745 32 0 42.745 0 56v16c0 30.928 25.072 56 56 56h229.981c12.844 0 21.556 13.067 16.615 24.923l-21.41 51.385A32 32 0 0 1 251.648 224H128c-35.346 0-64 28.654-64 64v8c0 13.255 10.745 24 24 24h147.406a47.995 47.995 0 0 1 25.692 7.455l111.748 70.811A24.001 24.001 0 0 1 384 418.539V480z" + }, + "regular": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M556.686 290.542L410.328 64.829C397.001 44.272 374.417 32 349.917 32H56C25.121 32 0 57.122 0 88v8c0 44.112 35.888 80 80 80h196.042l-18.333 48H144c-48.523 0-88 39.477-88 88 0 30.879 25.121 56 56 56h131.552c2.987 0 5.914.549 8.697 1.631L352 408.418V480h224V355.829c0-23.225-6.679-45.801-19.314-65.287zM528 432H400v-23.582c0-19.948-12.014-37.508-30.604-44.736l-99.751-38.788A71.733 71.733 0 0 0 243.552 320H112c-4.411 0-8-3.589-8-8 0-22.056 17.944-40 40-40h113.709c19.767 0 37.786-12.407 44.84-30.873l24.552-64.281c8.996-23.553-8.428-48.846-33.63-48.846H80c-17.645 0-32-14.355-32-32v-8c0-4.411 3.589-8 8-8h293.917c8.166 0 15.693 4.09 20.137 10.942l146.358 225.715A71.84 71.84 0 0 1 528 355.829V432z" + } + } + }, + "hand-paper": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "stop" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f256", + "label": "Paper (Hand)", + "svg": { + "solid": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M408.781 128.007C386.356 127.578 368 146.36 368 168.79V256h-8V79.79c0-22.43-18.356-41.212-40.781-40.783C297.488 39.423 280 57.169 280 79v177h-8V40.79C272 18.36 253.644-.422 231.219.007 209.488.423 192 18.169 192 40v216h-8V80.79c0-22.43-18.356-41.212-40.781-40.783C121.488 40.423 104 58.169 104 80v235.992l-31.648-43.519c-12.993-17.866-38.009-21.817-55.877-8.823-17.865 12.994-21.815 38.01-8.822 55.877l125.601 172.705A48 48 0 0 0 172.073 512h197.59c22.274 0 41.622-15.324 46.724-37.006l26.508-112.66a192.011 192.011 0 0 0 5.104-43.975V168c.001-21.831-17.487-39.577-39.218-39.993z" + }, + "regular": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M372.57 112.641v-10.825c0-43.612-40.52-76.691-83.039-65.546-25.629-49.5-94.09-47.45-117.982.747C130.269 26.456 89.144 57.945 89.144 102v126.13c-19.953-7.427-43.308-5.068-62.083 8.871-29.355 21.796-35.794 63.333-14.55 93.153L132.48 498.569a32 32 0 0 0 26.062 13.432h222.897c14.904 0 27.835-10.289 31.182-24.813l30.184-130.958A203.637 203.637 0 0 0 448 310.564V179c0-40.62-35.523-71.992-75.43-66.359zm27.427 197.922c0 11.731-1.334 23.469-3.965 34.886L368.707 464h-201.92L51.591 302.303c-14.439-20.27 15.023-42.776 29.394-22.605l27.128 38.079c8.995 12.626 29.031 6.287 29.031-9.283V102c0-25.645 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V67c0-25.663 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V101.125c0-25.672 36.57-24.81 36.57.691V256c0 8.837 7.163 16 16 16h6.857c8.837 0 16-7.163 16-16v-76.309c0-26.242 36.57-25.64 36.57-.691v131.563z" + } + } + }, + "hand-peace": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f25b", + "label": "Peace (Hand)", + "svg": { + "solid": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M408 216c-22.092 0-40 17.909-40 40h-8v-32c0-22.091-17.908-40-40-40s-40 17.909-40 40v32h-8V48c0-26.51-21.49-48-48-48s-48 21.49-48 48v208h-13.572L92.688 78.449C82.994 53.774 55.134 41.63 30.461 51.324 5.787 61.017-6.356 88.877 3.337 113.551l74.765 190.342-31.09 24.872c-15.381 12.306-19.515 33.978-9.741 51.081l64 112A39.998 39.998 0 0 0 136 512h240c18.562 0 34.686-12.77 38.937-30.838l32-136A39.97 39.97 0 0 0 448 336v-80c0-22.091-17.908-40-40-40z" + }, + "regular": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M362.146 191.976c-13.71-21.649-38.761-34.016-65.006-30.341V74c0-40.804-32.811-74-73.141-74-40.33 0-73.14 33.196-73.14 74L160 168l-18.679-78.85C126.578 50.843 83.85 32.11 46.209 47.208 8.735 62.238-9.571 104.963 5.008 142.85l55.757 144.927c-30.557 24.956-43.994 57.809-24.733 92.218l54.853 97.999C102.625 498.97 124.73 512 148.575 512h205.702c30.744 0 57.558-21.44 64.555-51.797l27.427-118.999a67.801 67.801 0 0 0 1.729-15.203L448 256c0-44.956-43.263-77.343-85.854-64.024zM399.987 326c0 1.488-.169 2.977-.502 4.423l-27.427 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H148.575c-6.486 0-12.542-3.621-15.805-9.449l-54.854-98c-4.557-8.141-2.619-18.668 4.508-24.488l26.647-21.764a16 16 0 0 0 4.812-18.139l-64.09-166.549C37.226 92.956 84.37 74.837 96.51 106.389l59.784 155.357A16 16 0 0 0 171.227 272h11.632c8.837 0 16-7.163 16-16V74c0-34.375 50.281-34.43 50.281 0v182c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16v-28c0-25.122 36.567-25.159 36.567 0v28c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16 0-25.12 36.567-25.16 36.567 0v70z" + } + } + }, + "hand-point-down": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "hand-o-down", + "point" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0a7", + "label": "Hand Pointing Down", + "svg": { + "solid": { + "last_modified": 1521653821450, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M91.826 467.2V317.966c-8.248 5.841-16.558 10.57-24.918 14.153C35.098 345.752-.014 322.222 0 288c.008-18.616 10.897-32.203 29.092-40 28.286-12.122 64.329-78.648 77.323-107.534 7.956-17.857 25.479-28.453 43.845-28.464l.001-.002h171.526c11.812 0 21.897 8.596 23.703 20.269 7.25 46.837 38.483 61.76 38.315 123.731-.007 2.724.195 13.254.195 16 0 50.654-22.122 81.574-71.263 72.6-9.297 18.597-39.486 30.738-62.315 16.45-21.177 24.645-53.896 22.639-70.944 6.299V467.2c0 24.15-20.201 44.8-43.826 44.8-23.283 0-43.826-21.35-43.826-44.8zM112 72V24c0-13.255 10.745-24 24-24h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24zm212-24c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z" + }, + "regular": { + "last_modified": 1503066239000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z" + } + } + }, + "hand-point-left": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "finger", + "hand-o-left", + "left", + "point", + "previous" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0a5", + "label": "Hand Pointing Left", + "svg": { + "solid": { + "last_modified": 1521653821451, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M44.8 155.826h149.234c-5.841-8.248-10.57-16.558-14.153-24.918C166.248 99.098 189.778 63.986 224 64c18.616.008 32.203 10.897 40 29.092 12.122 28.286 78.648 64.329 107.534 77.323 17.857 7.956 28.453 25.479 28.464 43.845l.002.001v171.526c0 11.812-8.596 21.897-20.269 23.703-46.837 7.25-61.76 38.483-123.731 38.315-2.724-.007-13.254.195-16 .195-50.654 0-81.574-22.122-72.6-71.263-18.597-9.297-30.738-39.486-16.45-62.315-24.645-21.177-22.639-53.896-6.299-70.944H44.8c-24.15 0-44.8-20.201-44.8-43.826 0-23.283 21.35-43.826 44.8-43.826zM440 176h48c13.255 0 24 10.745 24 24v192c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24zm24 212c11.046 0 20-8.954 20-20s-8.954-20-20-20-20 8.954-20 20 8.954 20 20 20z" + }, + "regular": { + "last_modified": 1503066239000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M0 220.8C0 266.416 37.765 304 83.2 304h35.647a93.148 93.148 0 0 0 7.929 22.064c-2.507 22.006 3.503 44.978 15.985 62.791C143.9 441.342 180.159 480 242.701 480H264c60.063 0 98.512-40 127.2-40h2.679c5.747 4.952 13.536 8 22.12 8h64c17.673 0 32-12.894 32-28.8V188.8c0-15.906-14.327-28.8-32-28.8h-64c-8.584 0-16.373 3.048-22.12 8H391.2c-6.964 0-14.862-6.193-30.183-23.668l-.129-.148-.131-.146c-8.856-9.937-18.116-20.841-25.851-33.253C316.202 80.537 304.514 32 259.2 32c-56.928 0-92 35.286-92 83.2 0 8.026.814 15.489 2.176 22.4H83.2C38.101 137.6 0 175.701 0 220.8zm48 0c0-18.7 16.775-35.2 35.2-35.2h158.4c0-17.325-26.4-35.2-26.4-70.4 0-26.4 20.625-35.2 44-35.2 8.794 0 20.445 32.712 34.926 56.1 9.074 14.575 19.524 27.225 30.799 39.875 16.109 18.374 33.836 36.633 59.075 39.596v176.752C341.21 396.087 309.491 432 264 432h-21.299c-40.524 0-57.124-22.197-50.601-61.325-14.612-8.001-24.151-33.979-12.925-53.625-19.365-18.225-17.787-46.381-4.95-61.05H83.2C64.225 256 48 239.775 48 220.8zM448 360c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z" + } + } + }, + "hand-point-right": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "forward", + "hand-o-right", + "next", + "point", + "right" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0a4", + "label": "Hand Pointing Right", + "svg": { + "solid": { + "last_modified": 1521653821451, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z" + }, + "regular": { + "last_modified": 1503066239000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z" + } + } + }, + "hand-point-up": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "hand-o-up", + "point" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0a6", + "label": "Hand Pointing Up", + "svg": { + "solid": { + "last_modified": 1521653821452, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M135.652 0c23.625 0 43.826 20.65 43.826 44.8v99.851c17.048-16.34 49.766-18.346 70.944 6.299 22.829-14.288 53.017-2.147 62.315 16.45C361.878 158.426 384 189.346 384 240c0 2.746-.203 13.276-.195 16 .168 61.971-31.065 76.894-38.315 123.731C343.683 391.404 333.599 400 321.786 400H150.261l-.001-.002c-18.366-.011-35.889-10.607-43.845-28.464C93.421 342.648 57.377 276.122 29.092 264 10.897 256.203.008 242.616 0 224c-.014-34.222 35.098-57.752 66.908-44.119 8.359 3.583 16.67 8.312 24.918 14.153V44.8c0-23.45 20.543-44.8 43.826-44.8zM136 416h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24v-48c0-13.255 10.745-24 24-24zm168 28c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z" + }, + "regular": { + "last_modified": 1503066239000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M105.6 83.2v86.177a115.52 115.52 0 0 0-22.4-2.176c-47.914 0-83.2 35.072-83.2 92 0 45.314 48.537 57.002 78.784 75.707 12.413 7.735 23.317 16.994 33.253 25.851l.146.131.148.129C129.807 376.338 136 384.236 136 391.2v2.679c-4.952 5.747-8 13.536-8 22.12v64c0 17.673 12.894 32 28.8 32h230.4c15.906 0 28.8-14.327 28.8-32v-64c0-8.584-3.048-16.373-8-22.12V391.2c0-28.688 40-67.137 40-127.2v-21.299c0-62.542-38.658-98.8-91.145-99.94-17.813-12.482-40.785-18.491-62.791-15.985A93.148 93.148 0 0 0 272 118.847V83.2C272 37.765 234.416 0 188.8 0c-45.099 0-83.2 38.101-83.2 83.2zm118.4 0v91.026c14.669-12.837 42.825-14.415 61.05 4.95 19.646-11.227 45.624-1.687 53.625 12.925 39.128-6.524 61.325 10.076 61.325 50.6V264c0 45.491-35.913 77.21-39.676 120H183.571c-2.964-25.239-21.222-42.966-39.596-59.075-12.65-11.275-25.3-21.725-39.875-30.799C80.712 279.645 48 267.994 48 259.2c0-23.375 8.8-44 35.2-44 35.2 0 53.075 26.4 70.4 26.4V83.2c0-18.425 16.5-35.2 35.2-35.2 18.975 0 35.2 16.225 35.2 35.2zM352 424c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z" + } + } + }, + "hand-pointer": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "select" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f25a", + "label": "Pointer (Hand)", + "svg": { + "solid": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 240v96c0 3.084-.356 6.159-1.063 9.162l-32 136C410.686 499.23 394.562 512 376 512H168a40.004 40.004 0 0 1-32.35-16.473l-127.997-176c-12.993-17.866-9.043-42.883 8.822-55.876 17.867-12.994 42.884-9.043 55.877 8.823L104 315.992V40c0-22.091 17.908-40 40-40s40 17.909 40 40v200h8v-40c0-22.091 17.908-40 40-40s40 17.909 40 40v40h8v-24c0-22.091 17.908-40 40-40s40 17.909 40 40v24h8c0-22.091 17.908-40 40-40s40 17.909 40 40zm-256 80h-8v96h8v-96zm88 0h-8v96h8v-96zm88 0h-8v96h8v-96z" + }, + "regular": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M358.182 179.361c-19.493-24.768-52.679-31.945-79.872-19.098-15.127-15.687-36.182-22.487-56.595-19.629V67c0-36.944-29.736-67-66.286-67S89.143 30.056 89.143 67v161.129c-19.909-7.41-43.272-5.094-62.083 8.872-29.355 21.795-35.793 63.333-14.55 93.152l109.699 154.001C134.632 501.59 154.741 512 176 512h178.286c30.802 0 57.574-21.5 64.557-51.797l27.429-118.999A67.873 67.873 0 0 0 448 326v-84c0-46.844-46.625-79.273-89.818-62.639zM80.985 279.697l27.126 38.079c8.995 12.626 29.031 6.287 29.031-9.283V67c0-25.12 36.571-25.16 36.571 0v175c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16v-35c0-25.12 36.571-25.16 36.571 0v35c0 8.836 7.163 16 16 16H272c8.837 0 16-7.164 16-16v-21c0-25.12 36.571-25.16 36.571 0v21c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16 0-25.121 36.571-25.16 36.571 0v84c0 1.488-.169 2.977-.502 4.423l-27.43 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H176c-5.769 0-11.263-2.878-14.697-7.697l-109.712-154c-14.406-20.223 14.994-42.818 29.394-22.606zM176.143 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.733 0-14-7.163-14-16zm75.428 0v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16zM327 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16z" + } + } + }, + "hand-rock": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f255", + "label": "Rock (Hand)", + "svg": { + "solid": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M512 128.79c0-26.322-20.861-48.344-47.18-48.783C437.935 79.558 416 101.217 416 128h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C333.935 47.558 312 69.217 312 96v32h-8V80.79c0-26.322-20.861-48.344-47.18-48.783C229.935 31.558 208 53.217 208 80v48h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C125.935 47.558 104 69.217 104 96v136l-8-7.111V176.79c0-26.322-20.861-48.344-47.18-48.783C21.935 127.558 0 149.217 0 176v66.445a95.998 95.998 0 0 0 32.221 71.751l111.668 99.261A47.999 47.999 0 0 1 160 449.333V456c0 13.255 10.745 24 24 24h240c13.255 0 24-10.745 24-24v-2.921a96.01 96.01 0 0 1 7.523-37.254l48.954-116.265A96.002 96.002 0 0 0 512 262.306V128.79z" + }, + "regular": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M408.864 79.052c-22.401-33.898-66.108-42.273-98.813-23.588-29.474-31.469-79.145-31.093-108.334-.022-47.16-27.02-108.71 5.055-110.671 60.806C44.846 105.407 0 140.001 0 187.429v56.953c0 32.741 14.28 63.954 39.18 85.634l97.71 85.081c4.252 3.702 3.11 5.573 3.11 32.903 0 17.673 14.327 32 32 32h252c17.673 0 32-14.327 32-32 0-23.513-1.015-30.745 3.982-42.37l42.835-99.656c6.094-14.177 9.183-29.172 9.183-44.568V146.963c0-52.839-54.314-88.662-103.136-67.911zM464 261.406a64.505 64.505 0 0 1-5.282 25.613l-42.835 99.655c-5.23 12.171-7.883 25.04-7.883 38.25V432H188v-10.286c0-16.37-7.14-31.977-19.59-42.817l-97.71-85.08C56.274 281.255 48 263.236 48 244.381v-56.953c0-33.208 52-33.537 52 .677v41.228a16 16 0 0 0 5.493 12.067l7 6.095A16 16 0 0 0 139 235.429V118.857c0-33.097 52-33.725 52 .677v26.751c0 8.836 7.164 16 16 16h7c8.836 0 16-7.164 16-16v-41.143c0-33.134 52-33.675 52 .677v40.466c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16v-27.429c0-33.03 52-33.78 52 .677v26.751c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16 0-33.146 52-33.613 52 .677v114.445z" + } + } + }, + "hand-scissors": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f257", + "label": "Scissors (Hand)", + "svg": { + "solid": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M216 440c0-22.092 17.909-40 40-40v-8h-32c-22.091 0-40-17.908-40-40s17.909-40 40-40h32v-8H48c-26.51 0-48-21.49-48-48s21.49-48 48-48h208v-13.572l-177.551-69.74c-24.674-9.694-36.818-37.555-27.125-62.228 9.693-24.674 37.554-36.817 62.228-27.124l190.342 74.765 24.872-31.09c12.306-15.381 33.978-19.515 51.081-9.741l112 64A40.002 40.002 0 0 1 512 168v240c0 18.562-12.77 34.686-30.838 38.937l-136 32A39.982 39.982 0 0 1 336 480h-80c-22.091 0-40-17.908-40-40z" + }, + "regular": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 480l70-.013c5.114 0 10.231-.583 15.203-1.729l118.999-27.427C490.56 443.835 512 417.02 512 386.277V180.575c0-23.845-13.03-45.951-34.005-57.69l-97.999-54.853c-34.409-19.261-67.263-5.824-92.218 24.733L142.85 37.008c-37.887-14.579-80.612 3.727-95.642 41.201-15.098 37.642 3.635 80.37 41.942 95.112L168 192l-94-9.141c-40.804 0-74 32.811-74 73.14 0 40.33 33.196 73.141 74 73.141h87.635c-3.675 26.245 8.692 51.297 30.341 65.006C178.657 436.737 211.044 480 256 480zm0-48.013c-25.16 0-25.12-36.567 0-36.567 8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16h-28c-25.159 0-25.122-36.567 0-36.567h28c8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16H74c-34.43 0-34.375-50.281 0-50.281h182c8.837 0 16-7.163 16-16v-11.632a16 16 0 0 0-10.254-14.933L106.389 128.51c-31.552-12.14-13.432-59.283 19.222-46.717l166.549 64.091a16.001 16.001 0 0 0 18.139-4.812l21.764-26.647c5.82-7.127 16.348-9.064 24.488-4.508l98 54.854c5.828 3.263 9.449 9.318 9.449 15.805v205.701c0 8.491-5.994 15.804-14.576 17.782l-119.001 27.427a19.743 19.743 0 0 1-4.423.502h-70z" + } + } + }, + "hand-spock": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f259", + "label": "Spock (Hand)", + "svg": { + "solid": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M10.872 316.585c15.139-16.086 40.454-16.854 56.543-1.713L128 371.893v-79.405L88.995 120.865c-4.896-21.542 8.598-42.974 30.14-47.87 21.549-4.894 42.975 8.599 47.87 30.141L201.747 256h9.833L164.016 48.966c-4.946-21.531 8.498-42.994 30.028-47.94 21.532-4.95 42.994 8.498 47.94 30.028L293.664 256h15.105l48.425-193.702c5.357-21.432 27.075-34.462 48.507-29.104 21.432 5.358 34.463 27.075 29.104 48.507L391.231 256h11.08l30.768-129.265c5.117-21.491 26.685-34.768 48.177-29.647 21.491 5.117 34.765 26.686 29.647 48.177l-36.292 152.467A96.024 96.024 0 0 0 472 319.967v42.102a96.002 96.002 0 0 1-3.96 27.287l-26.174 88.287C435.825 498.022 417.101 512 395.846 512H179.172a48.002 48.002 0 0 1-32.898-13.046L12.585 373.128c-16.087-15.141-16.853-40.456-1.713-56.543z" + }, + "regular": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M21.096 381.79l129.092 121.513a32 32 0 0 0 21.932 8.698h237.6c14.17 0 26.653-9.319 30.68-22.904l31.815-107.313A115.955 115.955 0 0 0 477 348.811v-36.839c0-4.051.476-8.104 1.414-12.045l31.73-133.41c10.099-42.412-22.316-82.738-65.544-82.525-4.144-24.856-22.543-47.165-49.85-53.992-35.803-8.952-72.227 12.655-81.25 48.75L296.599 184 274.924 52.01c-8.286-36.07-44.303-58.572-80.304-50.296-29.616 6.804-50.138 32.389-51.882 61.295-42.637.831-73.455 40.563-64.071 81.844l31.04 136.508c-27.194-22.515-67.284-19.992-91.482 5.722-25.376 26.961-24.098 69.325 2.871 94.707zm32.068-61.811l.002-.001c7.219-7.672 19.241-7.98 26.856-.813l53.012 49.894C143.225 378.649 160 371.4 160 357.406v-69.479c0-1.193-.134-2.383-.397-3.546l-34.13-150.172c-5.596-24.617 31.502-32.86 37.054-8.421l30.399 133.757a16 16 0 0 0 15.603 12.454h8.604c10.276 0 17.894-9.567 15.594-19.583l-41.62-181.153c-5.623-24.469 31.39-33.076 37.035-8.508l45.22 196.828A16 16 0 0 0 288.956 272h13.217a16 16 0 0 0 15.522-12.119l42.372-169.49c6.104-24.422 42.962-15.159 36.865 9.217L358.805 252.12c-2.521 10.088 5.115 19.88 15.522 19.88h9.694a16 16 0 0 0 15.565-12.295L426.509 146.6c5.821-24.448 42.797-15.687 36.966 8.802L431.72 288.81a100.094 100.094 0 0 0-2.72 23.162v36.839c0 6.548-.943 13.051-2.805 19.328L397.775 464h-219.31L53.978 346.836c-7.629-7.18-7.994-19.229-.814-26.857z" + } + } + }, + "hands": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f4c2", + "label": "Hands", + "svg": { + "solid": { + "last_modified": 1521653821452, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M204.8 230.4c-10.6-14.1-30.7-17-44.8-6.4-14.1 10.6-17 30.7-6.4 44.8l38.1 50.8c4.8 6.4 4.1 15.3-1.5 20.9l-12.8 12.8c-6.7 6.7-17.6 6.2-23.6-1.1L64 244.4V96c0-17.7-14.3-32-32-32S0 78.3 0 96v218.4c0 10.9 3.7 21.5 10.5 30l104.1 134.3c5 6.5 8.4 13.9 10.4 21.7 1.8 6.9 8.1 11.6 15.3 11.6H272c8.8 0 16-7.2 16-16V384c0-27.7-9-54.6-25.6-76.8l-57.6-76.8zM608 64c-17.7 0-32 14.3-32 32v148.4l-89.8 107.8c-6 7.2-17 7.7-23.6 1.1l-12.8-12.8c-5.6-5.6-6.3-14.5-1.5-20.9l38.1-50.8c10.6-14.1 7.7-34.2-6.4-44.8-14.1-10.6-34.2-7.7-44.8 6.4l-57.6 76.8C361 329.4 352 356.3 352 384v112c0 8.8 7.2 16 16 16h131.7c7.1 0 13.5-4.7 15.3-11.6 2-7.8 5.4-15.2 10.4-21.7l104.1-134.3c6.8-8.5 10.5-19.1 10.5-30V96c0-17.7-14.3-32-32-32z" + } + } + }, + "hands-helping": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "aid", + "assistance", + "partnership", + "volunteering" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4c4", + "label": "Helping Hands", + "svg": { + "solid": { + "last_modified": 1522083406020, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M488 192H336v56c0 39.7-32.3 72-72 72s-72-32.3-72-72V126.4l-64.9 39C107.8 176.9 96 197.8 96 220.2v47.3l-80 46.2C.7 322.5-4.6 342.1 4.3 357.4l80 138.6c8.8 15.3 28.4 20.5 43.7 11.7L231.4 448H368c35.3 0 64-28.7 64-64h16c17.7 0 32-14.3 32-32v-64h8c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zm147.7-37.4L555.7 16C546.9.7 527.3-4.5 512 4.3L408.6 64H306.4c-12 0-23.7 3.4-33.9 9.7L239 94.6c-9.4 5.8-15 16.1-15 27.1V248c0 22.1 17.9 40 40 40s40-17.9 40-40v-88h184c30.9 0 56 25.1 56 56v28.5l80-46.2c15.3-8.9 20.5-28.4 11.7-43.7z" + } + } + }, + "handshake": { + "changes": [ + "4.7", + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "greeting", + "partnership" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2b5", + "label": "Handshake", + "svg": { + "solid": { + "last_modified": 1522083406021, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M434.7 64h-85.9c-8 0-15.7 3-21.6 8.4l-98.3 90c-.1.1-.2.3-.3.4-16.6 15.6-16.3 40.5-2.1 56 12.7 13.9 39.4 17.6 56.1 2.7.1-.1.3-.1.4-.2l79.9-73.2c6.5-5.9 16.7-5.5 22.6 1 6 6.5 5.5 16.6-1 22.6l-26.1 23.9L504 313.8c2.9 2.4 5.5 5 7.9 7.7V128l-54.6-54.6c-5.9-6-14.1-9.4-22.6-9.4zM544 128.2v223.9c0 17.7 14.3 32 32 32h64V128.2h-96zm48 223.9c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM0 384h64c17.7 0 32-14.3 32-32V128.2H0V384zm48-63.9c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16c0-8.9 7.2-16 16-16zm435.9 18.6L334.6 217.5l-30 27.5c-29.7 27.1-75.2 24.5-101.7-4.4-26.9-29.4-24.8-74.9 4.4-101.7L289.1 64h-83.8c-8.5 0-16.6 3.4-22.6 9.4L128 128v223.9h18.3l90.5 81.9c27.4 22.3 67.7 18.1 90-9.3l.2-.2 17.9 15.5c15.9 13 39.4 10.5 52.3-5.4l31.4-38.6 5.4 4.4c13.7 11.1 33.9 9.1 45-4.7l9.5-11.7c11.2-13.8 9.1-33.9-4.6-45.1z" + }, + "regular": { + "last_modified": 1522083406004, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M519.2 127.9l-47.6-47.6A56.252 56.252 0 0 0 432 64H205.2c-14.8 0-29.1 5.9-39.6 16.3L118 127.9H0v255.7h64c17.6 0 31.8-14.2 31.9-31.7h9.1l84.6 76.4c30.9 25.1 73.8 25.7 105.6 3.8 12.5 10.8 26 15.9 41.1 15.9 18.2 0 35.3-7.4 48.8-24 22.1 8.7 48.2 2.6 64-16.8l26.2-32.3c5.6-6.9 9.1-14.8 10.9-23h57.9c.1 17.5 14.4 31.7 31.9 31.7h64V127.9H519.2zM48 351.6c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16zm390-6.9l-26.1 32.2c-2.8 3.4-7.8 4-11.3 1.2l-23.9-19.4-30 36.5c-6 7.3-15 4.8-18 2.4l-36.8-31.5-15.6 19.2c-13.9 17.1-39.2 19.7-55.3 6.6l-97.3-88H96V175.8h41.9l61.7-61.6c2-.8 3.7-1.5 5.7-2.3H262l-38.7 35.5c-29.4 26.9-31.1 72.3-4.4 101.3 14.8 16.2 61.2 41.2 101.5 4.4l8.2-7.5 108.2 87.8c3.4 2.8 3.9 7.9 1.2 11.3zm106-40.8h-69.2c-2.3-2.8-4.9-5.4-7.7-7.7l-102.7-83.4 12.5-11.4c6.5-6 7-16.1 1-22.6L367 167.1c-6-6.5-16.1-6.9-22.6-1l-55.2 50.6c-9.5 8.7-25.7 9.4-34.6 0-9.3-9.9-8.5-25.1 1.2-33.9l65.6-60.1c7.4-6.8 17-10.5 27-10.5l83.7-.2c2.1 0 4.1.8 5.5 2.3l61.7 61.6H544v128zm48 47.7c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16z" + } + } + }, + "hashtag": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f292", + "label": "Hashtag", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M440.667 182.109l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l14.623-81.891C377.123 38.754 371.468 32 363.997 32h-40.632a12 12 0 0 0-11.813 9.891L296.175 128H197.54l14.623-81.891C213.477 38.754 207.822 32 200.35 32h-40.632a12 12 0 0 0-11.813 9.891L132.528 128H53.432a12 12 0 0 0-11.813 9.891l-7.143 40C33.163 185.246 38.818 192 46.289 192h74.81L98.242 320H19.146a12 12 0 0 0-11.813 9.891l-7.143 40C-1.123 377.246 4.532 384 12.003 384h74.81L72.19 465.891C70.877 473.246 76.532 480 84.003 480h40.632a12 12 0 0 0 11.813-9.891L151.826 384h98.634l-14.623 81.891C234.523 473.246 240.178 480 247.65 480h40.632a12 12 0 0 0 11.813-9.891L315.472 384h79.096a12 12 0 0 0 11.813-9.891l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l22.857-128h79.096a12 12 0 0 0 11.813-9.891zM261.889 320h-98.634l22.857-128h98.634l-22.857 128z" + } + } + }, + "hdd": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cpu", + "hard drive", + "harddrive", + "machine", + "save", + "storage" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0a0", + "label": "HDD", + "svg": { + "solid": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M576 304v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48zm-48-80a79.557 79.557 0 0 1 30.777 6.165L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L17.223 230.165A79.557 79.557 0 0 1 48 224h480zm-48 96c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm-96 0c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z" + }, + "regular": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M567.403 235.642L462.323 84.589A48 48 0 0 0 422.919 64H153.081a48 48 0 0 0-39.404 20.589L8.597 235.642A48.001 48.001 0 0 0 0 263.054V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V263.054c0-9.801-3-19.366-8.597-27.412zM153.081 112h269.838l77.913 112H75.168l77.913-112zM528 400H48V272h480v128zm-32-64c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32zm-96 0c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32z" + } + } + }, + "heading": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "header", + "header" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1dc", + "label": "heading", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M496 80V48c0-8.837-7.163-16-16-16H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.621v128H154.379V96H192c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.275v320H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.621V288H357.62v128H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.275V96H480c8.837 0 16-7.163 16-16z" + } + } + }, + "headphones": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "listen", + "music", + "sound", + "speaker" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f025", + "label": "headphones", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 32C114.52 32 0 146.496 0 288v48a32 32 0 0 0 17.689 28.622l14.383 7.191C34.083 431.903 83.421 480 144 480h24c13.255 0 24-10.745 24-24V280c0-13.255-10.745-24-24-24h-24c-31.342 0-59.671 12.879-80 33.627V288c0-105.869 86.131-192 192-192s192 86.131 192 192v1.627C427.671 268.879 399.342 256 368 256h-24c-13.255 0-24 10.745-24 24v176c0 13.255 10.745 24 24 24h24c60.579 0 109.917-48.098 111.928-108.187l14.382-7.191A32 32 0 0 0 512 336v-48c0-141.479-114.496-256-256-256z" + } + } + }, + "headphones-alt": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "listen", + "music", + "sound", + "speaker" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f58f", + "label": "Headphones Alt", + "svg": { + "solid": { + "last_modified": 1529520111678, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M160 288h-16c-35.35 0-64 28.7-64 64.12v63.76c0 35.41 28.65 64.12 64 64.12h16c17.67 0 32-14.36 32-32.06V320.06c0-17.71-14.33-32.06-32-32.06zm208 0h-16c-17.67 0-32 14.35-32 32.06v127.88c0 17.7 14.33 32.06 32 32.06h16c35.35 0 64-28.71 64-64.12v-63.76c0-35.41-28.65-64.12-64-64.12zM256 32C112.91 32 4.57 151.13 0 288v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288c0-114.67 93.33-207.8 208-207.82 114.67.02 208 93.15 208 207.82v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288C507.43 151.13 399.09 32 256 32z" + } + } + }, + "headset": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "gamer", + "gaming", + "listen", + "live chat", + "microphone", + "shot caller", + "sound", + "support", + "telemarketer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f590", + "label": "Headset", + "svg": { + "solid": { + "last_modified": 1529520111679, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M192 208c0-17.67-14.33-32-32-32h-16c-35.35 0-64 28.65-64 64v48c0 35.35 28.65 64 64 64h16c17.67 0 32-14.33 32-32V208zm176 144c35.35 0 64-28.65 64-64v-48c0-35.35-28.65-64-64-64h-16c-17.67 0-32 14.33-32 32v112c0 17.67 14.33 32 32 32h16zM256 0C113.18 0 4.58 118.83 0 256v16c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-16c0-114.69 93.31-208 208-208s208 93.31 208 208h-.12c.08 2.43.12 165.72.12 165.72 0 23.35-18.93 42.28-42.28 42.28H320c0-26.51-21.49-48-48-48h-32c-26.51 0-48 21.49-48 48s21.49 48 48 48h181.72c49.86 0 90.28-40.42 90.28-90.28V256C507.42 118.83 398.82 0 256 0z" + } + } + }, + "heart": { + "changes": [ + "1", + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "like", + "love" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f004", + "label": "Heart", + "svg": { + "solid": { + "last_modified": 1522083406022, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z" + }, + "regular": { + "last_modified": 1522083406005, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M458.4 64.3C400.6 15.7 311.3 23 256 79.3 200.7 23 111.4 15.6 53.6 64.3-21.6 127.6-10.6 230.8 43 285.5l175.4 178.7c10 10.2 23.4 15.9 37.6 15.9 14.3 0 27.6-5.6 37.6-15.8L469 285.6c53.5-54.7 64.7-157.9-10.6-221.3zm-23.6 187.5L259.4 430.5c-2.4 2.4-4.4 2.4-6.8 0L77.2 251.8c-36.5-37.2-43.9-107.6 7.3-150.7 38.9-32.7 98.9-27.8 136.5 10.5l35 35.7 35-35.7c37.8-38.5 97.8-43.2 136.5-10.6 51.1 43.1 43.5 113.9 7.3 150.8z" + } + } + }, + "heartbeat": { + "changes": [ + "4.3", + "5.0.0", + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "ekg", + "lifeline", + "vital signs" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f21e", + "label": "Heartbeat", + "svg": { + "solid": { + "last_modified": 1521653821453, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M320.2 243.8l-49.7 99.4c-6 12.1-23.4 11.7-28.9-.6l-56.9-126.3-30 71.7H60.6l182.5 186.5c7.1 7.3 18.6 7.3 25.7 0L451.4 288H342.3l-22.1-44.2zM473.7 73.9l-2.4-2.5c-51.5-52.6-135.8-52.6-187.4 0L256 100l-27.9-28.5c-51.5-52.7-135.9-52.7-187.4 0l-2.4 2.4C-10.4 123.7-12.5 203 31 256h102.4l35.9-86.2c5.4-12.9 23.6-13.2 29.4-.4l58.2 129.3 49-97.9c5.9-11.8 22.7-11.8 28.6 0l27.6 55.2H481c43.5-53 41.4-132.3-7.3-182.1z" + } + } + }, + "helicopter": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "airwolf", + "apache", + "chopper", + "flight", + "fly" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f533", + "label": "Helicopter", + "svg": { + "solid": { + "last_modified": 1525967154569, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M304 384h272c17.67 0 32-14.33 32-32 0-123.71-100.29-224-224-224V64h176c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H144c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h176v64H112L68.8 70.4C65.78 66.37 61.03 64 56 64H16.01C5.6 64-2.04 73.78.49 83.88L32 192l160 64 86.4 115.2A31.992 31.992 0 0 0 304 384zm112-188.49C478.55 208.3 528.03 257.44 540.79 320H416V195.51zm219.37 263.3l-22.15-22.2c-6.25-6.26-16.24-6.1-22.64.01-7.09 6.77-13.84 11.25-24.64 11.25H240c-8.84 0-16 7.18-16 16.03v32.06c0 8.85 7.16 16.03 16 16.03h325.94c14.88 0 35.3-.47 68.45-29.52 7.02-6.14 7.57-17.05.98-23.66z" + } + } + }, + "highlighter": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "marker", + "sharpie", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f591", + "label": "Highlighter", + "svg": { + "solid": { + "last_modified": 1529520111679, + "raw": "", + "viewBox": [ + "0", + "0", + "544", + "512" + ], + "width": 544, + "height": 512, + "path": "M0 479.98L99.92 512l35.45-35.45-67.04-67.04L0 479.98zm124.61-240.01a36.592 36.592 0 0 0-10.79 38.1l13.05 42.83-50.93 50.94 96.23 96.23 50.86-50.86 42.74 13.08c13.73 4.2 28.65-.01 38.15-10.78l35.55-41.64-173.34-173.34-41.52 35.44zm403.31-160.7l-63.2-63.2c-20.49-20.49-53.38-21.52-75.12-2.35L190.55 183.68l169.77 169.78L530.27 154.4c19.18-21.74 18.15-54.63-2.35-75.13z" + } + } + }, + "hips": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f452", + "label": "Hips", + "svg": { + "brands": { + "last_modified": 1518899527948, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M0 80.2c0-1.8.9-2.7 2.7-2.7h40.9c1.9 0 2.8.9 2.8 2.7v81.2c15.2-7.7 31.7-11.5 49.8-11.4 24 .1 44.2 6.2 60.3 18 18.7 13.5 28 31.9 28 55.3v136.1c0 1.9-.9 2.8-2.7 2.8h-27.3c-9.1 0-16.4-7.3-16.4-16.3V223.3c0-.9 2.7-27-45.8-27-48.6 0-45.8 26.2-45.8 27v136.1c0 1.9-.9 2.8-2.8 2.8h-41c-1.8 0-2.7-.9-2.7-2.8V80.2zm497.7 221.5c13.7 10.2 34.1 19.1 58.4 19.1 23.3 0 32.8-4.5 36.5-13.6 3-7.9-.6-16.1-12.2-21.2l-53.6-23.5c-21.4-9.4-33.8-24-37.2-43.6-5.7-33.7 22.2-53.3 22.7-53.7 13.2-9.6 32-15.4 58.5-15.4 19 0 37.4 3.3 55.1 9.9 1.3.5 1.9 1.3 1.9 2.6V207c0 2.1-2.3 3.4-4 2.4-39.7-20.7-76.6-12.3-84-6.8-6.6 4.9-6 12.5 2.6 16.1L600 244c16.5 7.1 28.1 18.4 34.9 34.1 5.5 12.6 6.6 25.6 3.1 39.1-9.6 36.9-44.9 45.5-45.6 45.8-10.5 3.1-23.6 4.3-36.3 4.3-16.6 0-32.6-2.7-48.2-8.2-9.7-3.4-14.6-10.3-14.6-20.7V304c0-2.1 2.3-3.7 4.4-2.3zM376.2 149.8c-31.7 0-104.2 20.1-104.2 103.5v183.5c0 .8.6 2.7 2.7 2.7h40.9c1.9 0 2.8-.9 2.8-2.7V348c16.5 12.7 35.8 19.1 57.7 19.1 60.5 0 108.7-48.5 108.7-108.7.1-60.3-48.2-108.6-108.6-108.6zm0 170.9c-17.2 0-31.9-6.1-44-18.2-12.2-12.2-18.2-26.8-18.2-44 0-34.5 27.6-62.2 62.2-62.2 34.5 0 62.2 27.6 62.2 62.2.1 34.3-27.3 62.2-62.2 62.2zm-124.6 38.7c0 1.9-.9 2.8-2.8 2.8h-40.9c-1.6 0-2.7-1.4-2.7-2.8V157.6c0-1.4 1.1-2.8 2.7-2.8h40.9c1.9 0 2.8.9 2.8 2.8v201.8M228.3 72.5c15.9 0 28.9 12.7 28.9 28.9 0 15.8-12.7 28.9-28.9 28.9s-28.9-13.3-28.9-28.9c.1-16 13-28.9 28.9-28.9" + } + } + }, + "hire-a-helper": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b0", + "label": "HireAHelper", + "svg": { + "brands": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M443.1 0H71.9C67.9 37.3 37.4 67.8 0 71.7v371.5c37.4 4.9 66 32.4 71.9 68.8h372.2c3-36.4 32.5-65.8 67.9-69.8V71.7c-36.4-5.9-65-35.3-68.9-71.7zm-37 404.9c-36.3 0-18.8-2-55.1-2-35.8 0-21 2-56.1 2-5.9 0-4.9-8.2 0-9.8 22.8-7.6 22.9-10.2 24.6-12.8 10.4-15.6 5.9-83 5.9-113 0-5.3-6.4-12.8-13.8-12.8H200.4c-7.4 0-13.8 7.5-13.8 12.8 0 30-4.5 97.4 5.9 113 1.7 2.5 1.8 5.2 24.6 12.8 4.9 1.6 6 9.8 0 9.8-35.1 0-20.3-2-56.1-2-36.3 0-18.8 2-55.1 2-7.9 0-5.8-10.8 0-10.8 10.2-3.4 13.5-3.5 21.7-13.8 7.7-12.9 7.9-44.4 7.9-127.8V151.3c0-22.2-12.2-28.3-28.6-32.4-8.8-2.2-4-11.8 1-11.8 36.5 0 20.6 2 57.1 2 32.7 0 16.5-2 49.2-2 3.3 0 8.5 8.3 1 10.8-4.9 1.6-27.6 3.7-27.6 39.3 0 45.6-.2 55.8 1 68.8 0 1.3 2.3 12.8 12.8 12.8h109.2c10.5 0 12.8-11.5 12.8-12.8 1.2-13 1-23.2 1-68.8 0-35.6-22.7-37.7-27.6-39.3-7.5-2.5-2.3-10.8 1-10.8 32.7 0 16.5 2 49.2 2 36.5 0 20.6-2 57.1-2 4.9 0 9.9 9.6 1 11.8-16.4 4.1-28.6 10.3-28.6 32.4v101.2c0 83.4.1 114.9 7.9 127.8 8.2 10.2 11.4 10.4 21.7 13.8 5.8 0 7.8 10.8 0 10.8z" + } + } + }, + "history": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f1da", + "label": "History", + "svg": { + "solid": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z" + } + } + }, + "hockey-puck": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f453", + "label": "Hockey Puck", + "svg": { + "solid": { + "last_modified": 1518899527996, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M0 160c0-53 114.6-96 256-96s256 43 256 96-114.6 96-256 96S0 213 0 160zm0 82.2V352c0 53 114.6 96 256 96s256-43 256-96V242.2c-113.4 82.3-398.5 82.4-512 0z" + } + } + }, + "home": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "house", + "main" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f015", + "label": "home", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M488 312.7V456c0 13.3-10.7 24-24 24H348c-6.6 0-12-5.4-12-12V356c0-6.6-5.4-12-12-12h-72c-6.6 0-12 5.4-12 12v112c0 6.6-5.4 12-12 12H112c-13.3 0-24-10.7-24-24V312.7c0-3.6 1.6-7 4.4-9.3l188-154.8c4.4-3.6 10.8-3.6 15.3 0l188 154.8c2.7 2.3 4.3 5.7 4.3 9.3zm83.6-60.9L488 182.9V44.4c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12V117l-89.5-73.7c-17.7-14.6-43.3-14.6-61 0L4.4 251.8c-5.1 4.2-5.8 11.8-1.6 16.9l25.5 31c4.2 5.1 11.8 5.8 16.9 1.6l235.2-193.7c4.4-3.6 10.8-3.6 15.3 0l235.2 193.7c5.1 4.2 12.7 3.5 16.9-1.6l25.5-31c4.2-5.2 3.4-12.7-1.7-16.9z" + } + } + }, + "hooli": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f427", + "label": "Hooli", + "svg": { + "brands": { + "last_modified": 1510266191926, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M508.4 352h57.9V156.7L508.4 184v168zm73.7-110.5V352H640V241.5h-57.9zm-250.7-8.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.2-1.1-50.4 17.1c-1.9 1.9-3.7 3.9-5.3 6-38.2-29.6-72.5-46.5-102.1-61.1v-20.7l-22.5 10.6c-54.4-22.1-89-18.2-97.3.1 0 0-24.9 32.8 61.9 110.9v-31c-48.8-54.6-39-76.1-35.3-79.2 13.5-11.4 37.5-8 64.4 2.1L65.2 184v63.3c13.1 14.7 30.5 31.5 53.5 50.4l4.5 3.6v-29.8c0-6.9 1.7-18.2 10.8-18.2s10.6 6.9 10.6 15V317c18 12.2 37.3 22.1 57.7 29.6v-93.9c0-18.7-13.4-37.4-40.6-37.4-15.8-.1-30.5 8.2-38.5 21.9v-54.3c41.9 20.9 83.9 46.5 99.9 58.3-10.2 14.6-9.3 28.1-9.3 43.7 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.7-33.8 16.7-52.5 0-18.5 1.5-34.2-16.7-52.3zm-39.7 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm185.7-71.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.3-1.1-50.4 17.1c-18.2 18.2-16.8 33.9-16.8 52.6 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.8-33.8 16.8-52.5-.1-18.8 1.3-34.5-16.8-52.6zm-39.8 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm173.5-73c15.9 0 28.9-12.9 28.9-28.9s-12.9-24.5-28.9-24.5c-15.9 0-28.9 8.6-28.9 24.5s12.9 28.9 28.9 28.9zM144.5 352l38.3.8c-13.2-4.6-26-10.2-38.3-16.8v16zm-21.4 0v-28.6c-6.5-4.2-13-8.7-19.4-13.6-14.8-11.2-27.5-21.7-38.5-31.5V352h57.9zm59.7.8c36.5 12.5 69.9 14.2 94.7 7.2-19.9.2-45.8-2.6-75.3-13.3v5.3l-19.4.8z" + } + } + }, + "hornbill": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f592", + "label": "Hornbill", + "svg": { + "brands": { + "last_modified": 1529514897189, + "raw": "", + "viewBox": [ + "0", + "0", + "509.02", + "512" + ], + "width": 509, + "height": 512, + "path": "M75.37 370.3c2.14 15.83-5.77 31.98-20.94 39.29-18.85 9.1-41.55 1.17-50.68-17.68-9.08-18.83-1.13-41.58 17.7-50.65 7.05-3.4 14.63-4.42 21.85-3.38-78.28-111.35 52-190.53 52-190.53-5.86 43.04-8.24 91.16-8.24 91.16-67.31 41.45.92 64.06 39.81 72.87 19.77 53.62 71.18 91.94 131.66 91.94 1.92 0 3.77-.21 5.67-.28l.11 18.86c-99.22 1.39-158.7-29.14-188.94-51.6zM183.38 42.6c.89-7-.1-14.33-3.39-21.15-9.1-18.84-31.82-26.78-50.66-17.69-18.86 9.1-26.8 31.83-17.69 50.68 6.98 14.47 22.02 22.42 37.18 21.23-22.55 29.91-53.83 89.57-52.42 190.03l21.84-.15c-.02-.9-.14-1.77-.14-2.68 0-58.95 36.37-109.33 87.85-130.16 8.01-37.75 30.74-114.3 73.84-44.29 0 0 48.14 2.38 91.18 8.24 0-.01-77.84-128.03-187.59-54.06zm304.18 134.17c18.84-9.09 26.81-31.81 17.7-50.65-9.1-18.85-31.83-26.77-50.67-17.69-15.27 7.37-23.19 23.69-20.87 39.64-31.71-21.94-89.84-49.05-183.45-47.74l.14 22.5c2.7-.15 5.39-.41 8.14-.41 59.3 0 109.9 36.8 130.49 88.76 39.1 9.02 105.06 31.58 38.46 72.54 0 0-2.34 48.13-8.21 91.16 0 0 133.45-81.16 48.96-194.61 6.43.5 13.07-.49 19.31-3.5zM373.05 436.24c21.43-32.46 46.42-89.69 45.14-179.66l-19.52.14c.08 2.06.3 4.07.3 6.15 0 60.27-38.05 111.55-91.39 131.45-8.85 38.95-31.44 106.66-72.77 39.49 0 0-48.12-2.34-91.19-8.22 0 0 79.92 131.34 191.9 50.97.31 4.72 1.45 9.45 3.64 13.97 9.06 18.89 31.8 26.78 50.64 17.71 18.86-9.1 26.79-31.83 17.7-50.65-6.56-13.62-20.26-21.43-34.45-21.35z" + } + } + }, + "hospital": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "emergency room", + "medical center" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0f8", + "label": "hospital", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 492v20H0v-20c0-6.627 5.373-12 12-12h20V120c0-13.255 10.745-24 24-24h88V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v72h88c13.255 0 24 10.745 24 24v360h20c6.627 0 12 5.373 12 12zM308 192h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-168 64h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm104 128h-40c-6.627 0-12 5.373-12 12v84h64v-84c0-6.627-5.373-12-12-12zm64-96h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-116 12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zM182 96h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M128 244v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12zm140 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm-76 84v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm76 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm180 124v36H0v-36c0-6.627 5.373-12 12-12h19.5V85.035C31.5 73.418 42.245 64 55.5 64H144V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v40h88.5c13.255 0 24 9.418 24 21.035V464H436c6.627 0 12 5.373 12 12zM79.5 463H192v-67c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v67h112.5V112H304v24c0 13.255-10.745 24-24 24H168c-13.255 0-24-10.745-24-24v-24H79.5v351zM266 64h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6z" + } + } + }, + "hospital-alt": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "emergency room", + "medical center" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f47d", + "label": "Alternate Hospital", + "svg": { + "solid": { + "last_modified": 1521653821453, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M544 96H416V32c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32v368c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16V128c0-17.7-14.3-32-32-32zM160 436c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm160 128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm16-170c0 3.3-2.7 6-6 6h-26v26c0 3.3-2.7 6-6 6h-20c-3.3 0-6-2.7-6-6v-26h-26c-3.3 0-6-2.7-6-6v-20c0-3.3 2.7-6 6-6h26V86c0-3.3 2.7-6 6-6h20c3.3 0 6 2.7 6 6v26h26c3.3 0 6 2.7 6 6v20zm144 298c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z" + } + } + }, + "hospital-symbol": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f47e", + "label": "Hospital Symbol", + "svg": { + "solid": { + "last_modified": 1521653821453, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm112 376c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-88h-96v88c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V136c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v88h96v-88c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v240z" + } + } + }, + "hot-tub": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f593", + "label": "Hot Tub", + "svg": { + "solid": { + "last_modified": 1529520111679, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M414.21 177.65c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C378.96 6.14 372.22 0 364.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zm-108 0c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C270.96 6.14 264.22 0 256.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zM480 256H256l-110.93-83.2a63.99 63.99 0 0 0-38.4-12.8H64c-35.35 0-64 28.65-64 64v224c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64V288c0-17.67-14.33-32-32-32zM128 440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zM64 128c35.35 0 64-28.65 64-64S99.35 0 64 0 0 28.65 0 64s28.65 64 64 64z" + } + } + }, + "hotel": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "lodging" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f594", + "label": "Hotel", + "svg": { + "solid": { + "last_modified": 1529520111680, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M560 64c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h15.98v384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h240v-80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v80h240c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-16V64h16zm-304 44.8c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm0 96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm-128-96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zM179.2 256h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8zM192 384c0-53.02 42.98-96 96-96s96 42.98 96 96H192zm256-140.8c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-96c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4z" + } + } + }, + "hotjar": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b1", + "label": "Hotjar", + "svg": { + "brands": { + "last_modified": 1521653821385, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M414.9 161.5C340.2 29 121.1 0 121.1 0S222.2 110.4 93 197.7C11.3 252.8-21 324.4 14 402.6c26.8 59.9 83.5 84.3 144.6 93.4-29.2-55.1-6.6-122.4-4.1-129.6 57.1 86.4 165 0 110.8-93.9 71 15.4 81.6 138.6 27.1 215.5 80.5-25.3 134.1-88.9 148.8-145.6 15.5-59.3 3.7-127.9-26.3-180.9z" + } + } + }, + "hourglass": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f254", + "label": "Hourglass", + "svg": { + "solid": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64z" + }, + "regular": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M368 48h4c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12H12C5.373 0 0 5.373 0 12v24c0 6.627 5.373 12 12 12h4c0 80.564 32.188 165.807 97.18 208C47.899 298.381 16 383.9 16 464h-4c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12h-4c0-80.564-32.188-165.807-97.18-208C336.102 213.619 368 128.1 368 48zM64 48h256c0 101.62-57.307 184-128 184S64 149.621 64 48zm256 416H64c0-101.62 57.308-184 128-184s128 82.38 128 184z" + } + } + }, + "hourglass-end": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f253", + "label": "Hourglass End", + "svg": { + "solid": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64zM192 208c-57.787 0-104-66.518-104-144h208c0 77.945-46.51 144-104 144z" + } + } + }, + "hourglass-half": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f252", + "label": "Hourglass Half", + "svg": { + "solid": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-75.078 384H99.08c17.059-46.797 52.096-80 92.92-80 40.821 0 75.862 33.196 92.922 80zm.019-256H99.078C91.988 108.548 88 86.748 88 64h208c0 22.805-3.987 44.587-11.059 64z" + } + } + }, + "hourglass-start": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f251", + "label": "Hourglass Start", + "svg": { + "solid": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-64 448H88c0-77.458 46.204-144 104-144 57.786 0 104 66.517 104 144z" + } + } + }, + "houzz": { + "changes": [ + "4.4", + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f27c", + "label": "Houzz", + "svg": { + "brands": { + "last_modified": 1521730699234, + "raw": "", + "viewBox": [ + "0", + "0", + "414.6", + "512" + ], + "width": 414, + "height": 512, + "path": "M258.9 330.7H154.3V480H0V32h109.5v104.5l305.1 85.6V480H258.9V330.7z" + } + } + }, + "html5": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f13b", + "label": "HTML 5 Logo", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z" + } + } + }, + "hubspot": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b2", + "label": "HubSpot", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M267.4 211.6c-25.1 23.7-40.8 57.3-40.8 94.6 0 29.3 9.7 56.3 26 78L203.1 434c-4.4-1.6-9.1-2.5-14-2.5-10.8 0-20.9 4.2-28.5 11.8-7.6 7.6-11.8 17.8-11.8 28.6s4.2 20.9 11.8 28.5c7.6 7.6 17.8 11.6 28.5 11.6 10.8 0 20.9-3.9 28.6-11.6 7.6-7.6 11.8-17.8 11.8-28.5 0-4.2-.6-8.2-1.9-12.1l50-50.2c22 16.9 49.4 26.9 79.3 26.9 71.9 0 130-58.3 130-130.2 0-65.2-47.7-119.2-110.2-128.7V116c17.5-7.4 28.2-23.8 28.2-42.9 0-26.1-20.9-47.9-47-47.9S311.2 47 311.2 73.1c0 19.1 10.7 35.5 28.2 42.9v61.2c-15.2 2.1-29.6 6.7-42.7 13.6-27.6-20.9-117.5-85.7-168.9-124.8 1.2-4.4 2-9 2-13.8C129.8 23.4 106.3 0 77.4 0 48.6 0 25.2 23.4 25.2 52.2c0 28.9 23.4 52.3 52.2 52.3 9.8 0 18.9-2.9 26.8-7.6l163.2 114.7zm89.5 163.6c-38.1 0-69-30.9-69-69s30.9-69 69-69 69 30.9 69 69-30.9 69-69 69z" + } + } + }, + "i-cursor": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f246", + "label": "I Beam Cursor", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M256 52.048V12.065C256 5.496 250.726.148 244.158.066 211.621-.344 166.469.011 128 37.959 90.266.736 46.979-.114 11.913.114 5.318.157 0 5.519 0 12.114v39.645c0 6.687 5.458 12.078 12.145 11.998C38.111 63.447 96 67.243 96 112.182V224H60c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h36v112c0 44.932-56.075 48.031-83.95 47.959C5.404 447.942 0 453.306 0 459.952v39.983c0 6.569 5.274 11.917 11.842 11.999 32.537.409 77.689.054 116.158-37.894 37.734 37.223 81.021 38.073 116.087 37.845 6.595-.043 11.913-5.405 11.913-12V460.24c0-6.687-5.458-12.078-12.145-11.998C217.889 448.553 160 444.939 160 400V288h36c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-36V112.182c0-44.932 56.075-48.213 83.95-48.142 6.646.018 12.05-5.346 12.05-11.992z" + } + } + }, + "id-badge": { + "changes": [ + "4.7", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2c1", + "label": "Identification Badge", + "svg": { + "solid": { + "last_modified": 1525209365068, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM144 32h96c8.8 0 16 7.2 16 16s-7.2 16-16 16h-96c-8.8 0-16-7.2-16-16s7.2-16 16-16zm48 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 416 80 407.4 80 396.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z" + }, + "regular": { + "last_modified": 1525209365050, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm0 464H48V48h288v416zM144 112h96c8.8 0 16-7.2 16-16s-7.2-16-16-16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16zm48 176c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z" + } + } + }, + "id-card": { + "changes": [ + "4.7", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "identification", + "issued" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2c2", + "label": "Identification Card", + "svg": { + "solid": { + "last_modified": 1525209365069, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M528 32H48C21.5 32 0 53.5 0 80v16h576V80c0-26.5-21.5-48-48-48zM0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V128H0v304zm352-232c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zM176 192c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zM67.1 396.2C75.5 370.5 99.6 352 128 352h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.9-5.2 19.8-15.6 19.8H82.7c-10.4 0-18.8-10-15.6-19.8z" + }, + "regular": { + "last_modified": 1525209365051, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H303.2c.9-4.5.8 3.6.8-22.4 0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6 0 26-.2 17.9.8 22.4H48V144h480v288zm-168-80h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm-168 96c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z" + } + } + }, + "id-card-alt": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "demographics" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f47f", + "label": "Alternate Identification Card", + "svg": { + "solid": { + "last_modified": 1525209365068, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M528 64H384v96H192V64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM288 224c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm93.3 224H194.7c-10.4 0-18.8-10-15.6-19.8 8.3-25.6 32.4-44.2 60.9-44.2h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.8-5.2 19.8-15.6 19.8zM352 32c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v96h128V32z" + } + } + }, + "image": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "album", + "photo", + "picture", + "picture" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f03e", + "label": "Image", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 336H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v276a6 6 0 0 1-6 6zM128 152c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zM96 352h320v-80l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L192 304l-39.515-39.515c-4.686-4.686-12.284-4.686-16.971 0L96 304v48z" + } + } + }, + "images": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "album", + "photo", + "picture" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f302", + "label": "Images", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v208c0 44.112 35.888 80 80 80h336zm96-80V80c0-26.51-21.49-48-48-48H144c-26.51 0-48 21.49-48 48v256c0 26.51 21.49 48 48 48h384c26.51 0 48-21.49 48-48zM256 128c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-96 144l55.515-55.515c4.686-4.686 12.284-4.686 16.971 0L272 256l135.515-135.515c4.686-4.686 12.284-4.686 16.971 0L512 208v112H160v-48z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v48H54a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6v-10h48zm42-336H150a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6V86a6 6 0 0 0-6-6zm6-48c26.51 0 48 21.49 48 48v256c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h384zM264 144c0 22.091-17.909 40-40 40s-40-17.909-40-40 17.909-40 40-40 40 17.909 40 40zm-72 96l39.515-39.515c4.686-4.686 12.284-4.686 16.971 0L288 240l103.515-103.515c4.686-4.686 12.284-4.686 16.971 0L480 208v80H192v-48z" + } + } + }, + "imdb": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2d8", + "label": "IMDB", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M350.5 288.7c0 5.4 1.6 14.4-6.2 14.4-1.6 0-3-.8-3.8-2.4-2.2-5.1-1.1-44.1-1.1-44.7 0-3.8-1.1-12.7 4.9-12.7 7.3 0 6.2 7.3 6.2 12.7v32.7zM265 229.9c0-9.7 1.6-16-10.3-16v83.7c12.2.3 10.3-8.7 10.3-18.4v-49.3zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM21.3 228.8c-.1.1-.2.3-.3.4h.3v-.4zM97 192H64v127.8h33V192zm113.3 0h-43.1l-7.6 59.9c-2.7-20-5.4-40.1-8.7-59.9h-42.8v127.8h29v-84.5l12.2 84.5h20.6l11.6-86.4v86.4h28.7V192zm86.3 45.3c0-8.1.3-16.8-1.4-24.4-4.3-22.5-31.4-20.9-49-20.9h-24.6v127.8c86.1.1 75 6 75-82.5zm85.9 17.3c0-17.3-.8-30.1-22.2-30.1-8.9 0-14.9 2.7-20.9 9.2V192h-31.7v127.8h29.8l1.9-8.1c5.7 6.8 11.9 9.8 20.9 9.8 19.8 0 22.2-15.2 22.2-30.9v-36z" + } + } + }, + "inbox": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f01c", + "label": "inbox", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M567.938 243.908L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L8.062 243.908A47.994 47.994 0 0 0 0 270.533V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V270.533a47.994 47.994 0 0 0-8.062-26.625zM162.252 128h251.497l85.333 128H376l-32 64H232l-32-64H76.918l85.334-128z" + } + } + }, + "indent": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f03c", + "label": "Indent", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm176 144h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm-52.687-111.313l-96-95.984C17.266 138.652 0 145.776 0 160.016v191.975c0 14.329 17.325 21.304 27.313 11.313l96-95.992c6.249-6.247 6.249-16.377 0-22.625z" + } + } + }, + "industry": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "factory", + "manufacturing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f275", + "label": "Industry", + "svg": { + "solid": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M475.115 163.781L336 252.309v-68.28c0-18.916-20.931-30.399-36.885-20.248L160 252.309V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h464c13.255 0 24-10.745 24-24V184.029c0-18.917-20.931-30.399-36.885-20.248z" + } + } + }, + "infinity": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f534", + "label": "Infinity", + "svg": { + "solid": { + "last_modified": 1525967154569, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M471.1 96C405 96 353.3 137.3 320 174.6 286.7 137.3 235 96 168.9 96 75.8 96 0 167.8 0 256s75.8 160 168.9 160c66.1 0 117.8-41.3 151.1-78.6 33.3 37.3 85 78.6 151.1 78.6 93.1 0 168.9-71.8 168.9-160S564.2 96 471.1 96zM168.9 320c-40.2 0-72.9-28.7-72.9-64s32.7-64 72.9-64c38.2 0 73.4 36.1 94 64-20.4 27.6-55.9 64-94 64zm302.2 0c-38.2 0-73.4-36.1-94-64 20.4-27.6 55.9-64 94-64 40.2 0 72.9 28.7 72.9 64s-32.7 64-72.9 64z" + } + } + }, + "info": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "details", + "help", + "information", + "more" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f129", + "label": "Info", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "192", + "512" + ], + "width": 192, + "height": 512, + "path": "M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z" + } + } + }, + "info-circle": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "details", + "help", + "information", + "more" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f05a", + "label": "Info Circle", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z" + } + } + }, + "instagram": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f16d", + "label": "Instagram", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z" + } + } + }, + "internet-explorer": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "ie" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f26b", + "label": "Internet-explorer", + "svg": { + "brands": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M483.049 159.706c10.855-24.575 21.424-60.438 21.424-87.871 0-72.722-79.641-98.371-209.673-38.577-107.632-7.181-211.221 73.67-237.098 186.457 30.852-34.862 78.271-82.298 121.977-101.158C125.404 166.85 79.128 228.002 43.992 291.725 23.246 329.651 0 390.94 0 436.747c0 98.575 92.854 86.5 180.251 42.006 31.423 15.43 66.559 15.573 101.695 15.573 97.124 0 184.249-54.294 216.814-146.022H377.927c-52.509 88.593-196.819 52.996-196.819-47.436H509.9c6.407-43.581-1.655-95.715-26.851-141.162zM64.559 346.877c17.711 51.15 53.703 95.871 100.266 123.304-88.741 48.94-173.267 29.096-100.266-123.304zm115.977-108.873c2-55.151 50.276-94.871 103.98-94.871 53.418 0 101.981 39.72 103.981 94.871H180.536zm184.536-187.6c21.425-10.287 48.563-22.003 72.558-22.003 31.422 0 54.274 21.717 54.274 53.722 0 20.003-7.427 49.007-14.569 67.867-26.28-42.292-65.986-81.584-112.263-99.586z" + } + } + }, + "ioxhost": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f208", + "label": "ioxhost", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M616 160h-67.3C511.2 70.7 422.9 8 320 8 183 8 72 119 72 256c0 16.4 1.6 32.5 4.7 48H24c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h67.3c37.5 89.3 125.8 152 228.7 152 137 0 248-111 248-248 0-16.4-1.6-32.5-4.7-48H616c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24zm-96 96c0 110.5-89.5 200-200 200-75.7 0-141.6-42-175.5-104H424c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24H125.8c-3.8-15.4-5.8-31.4-5.8-48 0-110.5 89.5-200 200-200 75.7 0 141.6 42 175.5 104H216c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h298.2c3.8 15.4 5.8 31.4 5.8 48zm-304-24h208c13.3 0 24 10.7 24 24 0 13.2-10.7 24-24 24H216c-13.3 0-24-10.7-24-24 0-13.2 10.7-24 24-24z" + } + } + }, + "italic": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "italics" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f033", + "label": "italic", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M204.758 416h-33.849l62.092-320h40.725a16 16 0 0 0 15.704-12.937l6.242-32C297.599 41.184 290.034 32 279.968 32H120.235a16 16 0 0 0-15.704 12.937l-6.242 32C96.362 86.816 103.927 96 113.993 96h33.846l-62.09 320H46.278a16 16 0 0 0-15.704 12.935l-6.245 32C22.402 470.815 29.967 480 40.034 480h158.479a16 16 0 0 0 15.704-12.935l6.245-32c1.927-9.88-5.638-19.065-15.704-19.065z" + } + } + }, + "itunes": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b4", + "label": "iTunes", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M223.6 80.3C129 80.3 52.5 157 52.5 251.5S129 422.8 223.6 422.8s171.2-76.7 171.2-171.2c0-94.6-76.7-171.3-171.2-171.3zm79.4 240c-3.2 13.6-13.5 21.2-27.3 23.8-12.1 2.2-22.2 2.8-31.9-5-11.8-10-12-26.4-1.4-36.8 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 3.2-3.6 2.2-2 2.2-80.8 0-5.6-2.7-7.1-8.4-6.1-4 .7-91.9 17.1-91.9 17.1-5 1.1-6.7 2.6-6.7 8.3 0 116.1.5 110.8-1.2 118.5-2.1 9-7.6 15.8-14.9 19.6-8.3 4.6-23.4 6.6-31.4 5.2-21.4-4-28.9-28.7-14.4-42.9 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 5-5.7.9-127 2.6-133.7.4-2.6 1.5-4.8 3.5-6.4 2.1-1.7 5.8-2.7 6.7-2.7 101-19 113.3-21.4 115.1-21.4 5.7-.4 9 3 9 8.7-.1 170.6.4 161.4-1 167.6zM345.2 32H102.8C45.9 32 0 77.9 0 134.8v242.4C0 434.1 45.9 480 102.8 480h242.4c57 0 102.8-45.9 102.8-102.8V134.8C448 77.9 402.1 32 345.2 32zM223.6 444c-106.3 0-192.5-86.2-192.5-192.5S117.3 59 223.6 59s192.5 86.2 192.5 192.5S329.9 444 223.6 444z" + } + } + }, + "itunes-note": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b5", + "label": "Itunes Note", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M381.9 388.2c-6.4 27.4-27.2 42.8-55.1 48-24.5 4.5-44.9 5.6-64.5-10.2-23.9-20.1-24.2-53.4-2.7-74.4 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 6.4-7.2 4.4-4.1 4.4-163.2 0-11.2-5.5-14.3-17-12.3-8.2 1.4-185.7 34.6-185.7 34.6-10.2 2.2-13.4 5.2-13.4 16.7 0 234.7 1.1 223.9-2.5 239.5-4.2 18.2-15.4 31.9-30.2 39.5-16.8 9.3-47.2 13.4-63.4 10.4-43.2-8.1-58.4-58-29.1-86.6 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 10.1-11.5 1.8-256.6 5.2-270.2.8-5.2 3-9.6 7.1-12.9 4.2-3.5 11.8-5.5 13.4-5.5 204-38.2 228.9-43.1 232.4-43.1 11.5-.8 18.1 6 18.1 17.6.2 344.5 1.1 326-1.8 338.5z" + } + } + }, + "java": { + "changes": [ + "5.0.10" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4e4", + "label": "Java", + "svg": { + "brands": { + "last_modified": 1523653480521, + "raw": "", + "viewBox": [ + "0", + "0", + "377.6", + "512" + ], + "width": 377, + "height": 512, + "path": "M121.6 396s-19.6 11.4 13.9 15.2c40.6 4.6 61.3 4 106-4.5 0 0 11.8 7.4 28.2 13.8C169.5 463.4 42.9 418 121.6 396m-12.2-56.1s-21.9 16.2 11.6 19.7c43.3 4.5 77.6 4.8 136.8-6.6 0 0 8.2 8.3 21.1 12.8-121.3 35.5-256.3 2.9-169.5-25.9m103.2-95.1c24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3.1 0-175.2 43.8-91.5 140.2m132.6 192.6s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6.7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2 204.2 33.2 372.4-14.9 319.4-38.8M131 281.8s-93.1 22.1-33 30.1c25.4 3.4 76 2.6 123.1-1.3 38.5-3.2 77.2-10.2 77.2-10.2s-13.6 5.8-23.4 12.5c-94.5 24.9-277 13.3-224.5-12.1 44.5-21.4 80.6-19 80.6-19m167 93.3c96.1-49.9 51.6-97.9 20.6-91.4-7.6 1.6-11 3-11 3s2.8-4.4 8.2-6.3c61.3-21.6 108.5 63.6-19.8 97.3 0-.1 1.5-1.4 2-2.6M240 0s53.2 53.2-50.5 135c-83.1 65.6-19 103.1 0 145.8-48.5-43.8-84.1-82.3-60.2-118.2C164.4 110.1 261.5 84.5 240 0m-99.5 510.4c92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6" + } + } + }, + "jedi-order": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f50e", + "label": "Jedi Order", + "svg": { + "brands": { + "last_modified": 1525376442521, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M231.89 335.72l31.44-45.89-20.18 55.5 62.56 9.09-62.56 9.08 24.22 47.43s-30.22-31.77-34.49-36.25c1.76 68.78 2.19 85.7 2.19 85.7s154.4-71.65 68.62-230.09c0 0 106.97-118.07 10.09-190.73 0 0 165.5 99.91 60.55 271.46 0 0 86.78-84.77 41.37-170.54 0 0 78.71 111.01-17.16 233.11 0 0 26.24-16.15 49.45-77.71 0 0-16.93 183.26-221.96 185.66v.02h-4.08v-.02C16.93 479.14 0 295.88 0 295.88c23.21 61.56 49.44 77.71 49.44 77.71-95.87-122.11-17.15-233.11-17.15-233.11-45.41 85.78 41.38 170.54 41.38 170.54-104.95-171.56 60.54-271.46 60.54-271.46-96.88 72.66 10.09 190.73 10.09 190.73-85.78 158.44 68.62 230.09 68.62 230.09s.43-16.93 2.19-85.7l-34.48 36.25 24.22-47.43-62.56-9.08 62.56-9.09-20.18-55.5 31.44 45.89c2.25-87.85 7.82-305.82 7.85-306.85l.01-2.43.02 1 .03-1 .01 2.43c.05 1.72 5.61 219.2 7.86 306.85z" + } + } + }, + "jenkins": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b6", + "label": "Jenkis", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M487.1 425c-1.4-11.2-19-23.1-28.2-31.9-5.1-5-29-23.1-30.4-29.9-1.4-6.6 9.7-21.5 13.3-28.9 5.1-10.7 8.8-23.7 11.3-32.6 18.8-66.1 20.7-156.9-6.2-211.2-10.2-20.6-38.6-49-56.4-62.5-42-31.7-119.6-35.3-170.1-16.6-14.1 5.2-27.8 9.8-40.1 17.1-33.1 19.4-68.3 32.5-78.1 71.6-24.2 10.8-31.5 41.8-30.3 77.8.2 7 4.1 15.8 2.7 22.4-.7 3.3-5.2 7.6-6.1 9.8-11.6 27.7-2.3 64 11.1 83.7 8.1 11.9 21.5 22.4 39.2 25.2.7 10.6 3.3 19.7 8.2 30.4 3.1 6.8 14.7 19 10.4 27.7-2.2 4.4-21 13.8-27.3 17.6C89 407.2 73.7 415 54.2 429c-12.6 9-32.3 10.2-29.2 31.1 2.1 14.1 10.1 31.6 14.7 45.8.7 2 1.4 4.1 2.1 6h422c4.9-15.3 9.7-30.9 14.6-47.2 3.4-11.4 10.2-27.8 8.7-39.7zM205.9 33.7c1.8-.5 3.4.7 4.9 2.4-.2 5.2-5.4 5.1-8.9 6.8-5.4 6.7-13.4 9.8-20 17.2-6.8 7.5-14.4 27.7-23.4 30-4.5 1.1-9.7-.8-13.6-.5-10.4.7-17.7 6-28.3 7.5 13.6-29.9 56.1-54 89.3-63.4zm-104.8 93.6c13.5-14.9 32.1-24.1 54.8-25.9 11.7 29.7-8.4 65-.9 97.6 2.3 9.9 10.2 25.4-2.4 25.7.3-28.3-34.8-46.3-61.3-29.6-1.8-21.5-4.9-51.7 9.8-67.8zm36.7 200.2c-1-4.1-2.7-12.9-2.3-15.1 1.6-8.7 17.1-12.5 11-24.7-11.3-.1-13.8 10.2-24.1 11.3-26.7 2.6-45.6-35.4-44.4-58.4 1-19.5 17.6-38.2 40.1-35.8 16 1.8 21.4 19.2 24.5 34.7 9.2.5 22.5-.4 26.9-7.6-.6-17.5-8.8-31.6-8.2-47.7 1-30.3 17.5-57.6 4.8-87.4 13.6-30.9 53.5-55.3 83.1-70 36.6-18.3 94.9-3.7 129.3 15.8 19.7 11.1 34.4 32.7 48.3 50.7-19.5-5.8-36.1 4.2-33.1 20.3 16.3-14.9 44.2-.2 52.5 16.4 7.9 15.8 7.8 39.3 9 62.8 2.9 57-10.4 115.9-39.1 157.1-7.7 11-14.1 23-24.9 30.6-26 18.2-65.4 34.7-99.2 23.4-44.7-15-65-44.8-89.5-78.8.7 18.7 13.8 34.1 26.8 48.4 11.3 12.5 25 26.6 39.7 32.4-12.3-2.9-31.1-3.8-36.2 7.2-28.6-1.9-55.1-4.8-68.7-24.2-10.6-15.4-21.4-41.4-26.3-61.4zm222 124.1c4.1-3 11.1-2.9 17.4-3.6-5.4-2.7-13-3.7-19.3-2.2-.1-4.2-2-6.8-3.2-10.2 10.6-3.8 35.5-28.5 49.6-20.3 6.7 3.9 9.5 26.2 10.1 37 .4 9-.8 18-4.5 22.8-18.8-.6-35.8-2.8-50.7-7 .9-6.1-1-12.1.6-16.5zm-17.2-20c-16.8.8-26-1.2-38.3-10.8.2-.8 1.4-.5 1.5-1.4 18 8 40.8-3.3 59-4.9-7.9 5.1-14.6 11.6-22.2 17.1zm-12.1 33.2c-1.6-9.4-3.5-12-2.8-20.2 25-16.6 29.7 28.6 2.8 20.2zM226 438.6c-11.6-.7-48.1-14-38.5-23.7 9.4 6.5 27.5 4.9 41.3 7.3.8 4.4-2.8 10.2-2.8 16.4zM57.7 497.1c-4.3-12.7-9.2-25.1-14.8-36.9 30.8-23.8 65.3-48.9 102.2-63.5 2.8-1.1 23.2 25.4 26.2 27.6 16.5 11.7 37 21 56.2 30.2 1.2 8.8 3.9 20.2 8.7 35.5.7 2.3 1.4 4.7 2.2 7.2H57.7zm240.6 5.7h-.8c.3-.2.5-.4.8-.5v.5zm7.5-5.7c2.1-1.4 4.3-2.8 6.4-4.3 1.1 1.4 2.2 2.8 3.2 4.3h-9.6zm15.1-24.7c-10.8 7.3-20.6 18.3-33.3 25.2-6 3.3-27 11.7-33.4 10.2-3.6-.8-3.9-5.3-5.4-9.5-3.1-9-10.1-23.4-10.8-37-.8-17.2-2.5-46 16-42.4 14.9 2.9 32.3 9.7 43.9 16.1 7.1 3.9 11.1 8.6 21.9 9.5-.1 1.4-.1 2.8-.2 4.3-5.9 3.9-15.3 3.8-21.8 7.1 9.5.4 17 2.7 23.5 5.9-.1 3.4-.3 7-.4 10.6zm53.4 24.7h-14c-.1-3.2-2.8-5.8-6.1-5.8s-5.9 2.6-6.1 5.8h-17.4c-2.8-4.4-5.7-8.6-8.9-12.5 2.1-2.2 4-4.7 6-6.9 9 3.7 14.8-4.9 21.7-4.2 7.9.8 14.2 11.7 25.4 11l-.6 12.6zm8.7 0c.2-4 .4-7.8.6-11.5 15.6-7.3 29 1.3 35.7 11.5H383zm83.4-37c-2.3 11.2-5.8 24-9.9 37.1-.2-.1-.4-.1-.6-.1H428c.6-1.1 1.2-2.2 1.9-3.3-2.6-6.1-9-8.7-10.9-15.5 12.1-22.7 6.5-93.4-24.2-78.5 4.3-6.3 15.6-11.5 20.8-19.3 13 10.4 20.8 20.3 33.2 31.4 6.8 6 20 13.3 21.4 23.1.8 5.5-2.6 18.9-3.8 25.1zM222.2 130.5c5.4-14.9 27.2-34.7 45-32 7.7 1.2 18 8.2 12.2 17.7-30.2-7-45.2 12.6-54.4 33.1-8.1-2-4.9-13.1-2.8-18.8zm184.1 63.1c8.2-3.6 22.4-.7 29.6-5.3-4.2-11.5-10.3-21.4-9.3-37.7.5 0 1 0 1.4.1 6.8 14.2 12.7 29.2 21.4 41.7-5.7 13.5-43.6 25.4-43.1 1.2zm20.4-43zm-117.2 45.7c-6.8-10.9-19-32.5-14.5-45.3 6.5 11.9 8.6 24.4 17.8 33.3 4.1 4 12.2 9 8.2 20.2-.9 2.7-7.8 8.6-11.7 9.7-14.4 4.3-47.9.9-36.6-17.1 11.9.7 27.9 7.8 36.8-.8zm27.3 70c3.8 6.6 1.4 18.7 12.1 20.6 20.2 3.4 43.6-12.3 58.1-17.8 9-15.2-.8-20.7-8.9-30.5-16.6-20-38.8-44.8-38-74.7 6.7-4.9 7.3 7.4 8.2 9.7 8.7 20.3 30.4 46.2 46.3 63.5 3.9 4.3 10.3 8.4 11 11.2 2.1 8.2-5.4 18-4.5 23.5-21.7 13.9-45.8 29.1-81.4 25.6-7.4-6.7-10.3-21.4-2.9-31.1zm-201.3-9.2c-6.8-3.9-8.4-21-16.4-21.4-11.4-.7-9.3 22.2-9.3 35.5-7.8-7.1-9.2-29.1-3.5-40.3-6.6-3.2-9.5 3.6-13.1 5.9 4.7-34.1 49.8-15.8 42.3 20.3zm299.6 28.8c-10.1 19.2-24.4 40.4-54 41-.6-6.2-1.1-15.6 0-19.4 22.7-2.2 36.6-13.7 54-21.6zm-141.9 12.4c18.9 9.9 53.6 11 79.3 10.2 1.4 5.6 1.3 12.6 1.4 19.4-33 1.8-72-6.4-80.7-29.6zm92.2 46.7c-1.7 4.3-5.3 9.3-9.8 11.1-12.1 4.9-45.6 8.7-62.4-.3-10.7-5.7-17.5-18.5-23.4-26-2.8-3.6-16.9-12.9-.2-12.9 13.1 32.7 58 29 95.8 28.1z" + } + } + }, + "joget": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b7", + "label": "Joget", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M227.5 468.7c-9-13.6-19.9-33.3-23.7-42.4-5.7-13.7-27.2-45.6 31.2-67.1 51.7-19.1 176.7-16.5 208.8-17.6-4 9-8.6 17.9-13.9 26.6-40.4 65.5-110.4 101.5-182 101.5-6.8 0-13.6-.4-20.4-1M66.1 143.9C128 43.4 259.6 12.2 360.1 74.1c74.8 46.1 111.2 130.9 99.3 212.7-24.9-.5-179.3-3.6-230.3-4.9-55.5-1.4-81.7-20.8-58.5-48.2 23.2-27.4 51.1-40.7 68.9-51.2 17.9-10.5 27.3-33.7-23.6-29.7C87.3 161.5 48.6 252.1 37.6 293c-8.8-49.7-.1-102.7 28.5-149.1m-29.2-18c-71.9 116.6-35.6 269.3 81 341.2 116.6 71.9 269.3 35.6 341.2-80.9 71.9-116.6 35.6-269.4-81-341.2-40.5-25.1-85.5-37-129.9-37C165 8 83.8 49.9 36.9 125.9m244.4 110.4c-31.5 20.5-65.3 31.3-65.3 31.3l169.5-1.6 46.5-23.4s3.6-9.5-19.1-15.5c-22.7-6-57 11.3-86.7 27.2-29.7 15.8-31.1 8.2-31.1 8.2s40.2-28.1 50.7-34.5c10.5-6.4 31.9-14 13.4-24.6-3.2-1.8-6.7-2.7-10.4-2.7-17.8 0-41.5 18.7-67.5 35.6" + } + } + }, + "joint": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blunt", + "cannabis", + "doobie", + "drugs", + "marijuana", + "roach", + "smoke", + "smoking", + "spliff" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f595", + "label": "Joint", + "svg": { + "solid": { + "last_modified": 1529520111681, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M444.34 181.1c22.38 15.68 35.66 41.16 35.66 68.59V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-43.24-21.01-83.41-56.34-108.06C463.85 125.02 448 99.34 448 70.31V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v66.4c0 43.69 24.56 81.63 60.34 106.7zM194.97 358.98C126.03 370.07 59.69 394.69 0 432c83.65 52.28 180.3 80 278.94 80h88.57L254.79 380.49c-14.74-17.2-37.45-25.11-59.82-21.51zM553.28 87.09c-5.67-3.8-9.28-9.96-9.28-16.78V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v62.31c0 22.02 10.17 43.41 28.64 55.39C550.79 153.04 576 199.54 576 249.69V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-65.44-32.41-126.19-86.72-162.6zM360.89 352.05c-34.4.06-86.81.15-88.21.17l117.8 137.43A63.987 63.987 0 0 0 439.07 512h88.45L409.57 374.4a63.955 63.955 0 0 0-48.68-22.35zM616 352H432l117.99 137.65A63.987 63.987 0 0 0 598.58 512H616c13.25 0 24-10.75 24-24V376c0-13.26-10.75-24-24-24z" + } + } + }, + "joomla": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1aa", + "label": "Joomla Logo", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M.6 92.1C.6 58.8 27.4 32 60.4 32c30 0 54.5 21.9 59.2 50.2 32.6-7.6 67.1.6 96.5 30l-44.3 44.3c-20.5-20.5-42.6-16.3-55.4-3.5-14.3 14.3-14.3 37.9 0 52.2l99.5 99.5-44 44.3c-87.7-87.2-49.7-49.7-99.8-99.7-26.8-26.5-35-64.8-24.8-98.9C20.4 144.6.6 120.7.6 92.1zm129.5 116.4l44.3 44.3c10-10 89.7-89.7 99.7-99.8 14.3-14.3 37.6-14.3 51.9 0 12.8 12.8 17 35-3.5 55.4l44 44.3c31.2-31.2 38.5-67.6 28.9-101.2 29.2-4.1 51.9-29.2 51.9-59.5 0-33.2-26.8-60.1-59.8-60.1-30.3 0-55.4 22.5-59.5 51.6-33.8-9.9-71.7-1.5-98.3 25.1-18.3 19.1-71.1 71.5-99.6 99.9zm266.3 152.2c8.2-32.7-.9-68.5-26.3-93.9-11.8-12.2 5 4.7-99.5-99.7l-44.3 44.3 99.7 99.7c14.3 14.3 14.3 37.6 0 51.9-12.8 12.8-35 17-55.4-3.5l-44 44.3c27.6 30.2 68 38.8 102.7 28 5.5 27.4 29.7 48.1 58.9 48.1 33 0 59.8-26.8 59.8-60.1 0-30.2-22.5-55-51.6-59.1zm-84.3-53.1l-44-44.3c-87 86.4-50.4 50.4-99.7 99.8-14.3 14.3-37.6 14.3-51.9 0-13.1-13.4-16.9-35.3 3.2-55.4l-44-44.3c-30.2 30.2-38 65.2-29.5 98.3-26.7 6-46.2 29.9-46.2 58.2C0 453.2 26.8 480 59.8 480c28.6 0 52.5-19.8 58.6-46.7 32.7 8.2 68.5-.6 94.2-26 32.1-32 12.2-12.4 99.5-99.7z" + } + } + }, + "js": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b8", + "label": "JavaScript (JS)", + "svg": { + "brands": { + "last_modified": 1501873838000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z" + } + } + }, + "js-square": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b9", + "label": "JavaScript (JS) Square", + "svg": { + "brands": { + "last_modified": 1515426581999, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM243.8 381.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z" + } + } + }, + "jsfiddle": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1cc", + "label": "jsFiddle", + "svg": { + "brands": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M510.634 237.462c-4.727-2.621-5.664-5.748-6.381-10.776-2.352-16.488-3.539-33.619-9.097-49.095-35.895-99.957-153.99-143.386-246.849-91.646-27.37 15.25-48.971 36.369-65.493 63.903-3.184-1.508-5.458-2.71-7.824-3.686-30.102-12.421-59.049-10.121-85.331 9.167-25.531 18.737-36.422 44.548-32.676 76.408.355 3.025-1.967 7.621-4.514 9.545-39.712 29.992-56.031 78.065-41.902 124.615 13.831 45.569 57.514 79.796 105.608 81.433 30.291 1.031 60.637.546 90.959.539 84.041-.021 168.09.531 252.12-.48 52.664-.634 96.108-36.873 108.212-87.293 11.54-48.074-11.144-97.3-56.832-122.634zm21.107 156.88c-18.23 22.432-42.343 35.253-71.28 35.65-56.874.781-113.767.23-170.652.23 0 .7-163.028.159-163.728.154-43.861-.332-76.739-19.766-95.175-59.995-18.902-41.245-4.004-90.848 34.186-116.106 9.182-6.073 12.505-11.566 10.096-23.136-5.49-26.361 4.453-47.956 26.42-62.981 22.987-15.723 47.422-16.146 72.034-3.083 10.269 5.45 14.607 11.564 22.198-2.527 14.222-26.399 34.557-46.727 60.671-61.294 97.46-54.366 228.37 7.568 230.24 132.697.122 8.15 2.412 12.428 9.848 15.894 57.56 26.829 74.456 96.122 35.142 144.497zm-87.789-80.499c-5.848 31.157-34.622 55.096-66.666 55.095-16.953-.001-32.058-6.545-44.079-17.705-27.697-25.713-71.141-74.98-95.937-93.387-20.056-14.888-41.99-12.333-60.272 3.782-49.996 44.071 15.859 121.775 67.063 77.188 4.548-3.96 7.84-9.543 12.744-12.844 8.184-5.509 20.766-.884 13.168 10.622-17.358 26.284-49.33 38.197-78.863 29.301-28.897-8.704-48.84-35.968-48.626-70.179 1.225-22.485 12.364-43.06 35.414-55.965 22.575-12.638 46.369-13.146 66.991 2.474C295.68 280.7 320.467 323.97 352.185 343.47c24.558 15.099 54.254 7.363 68.823-17.506 28.83-49.209-34.592-105.016-78.868-63.46-3.989 3.744-6.917 8.932-11.41 11.72-10.975 6.811-17.333-4.113-12.809-10.353 20.703-28.554 50.464-40.44 83.271-28.214 31.429 11.714 49.108 44.366 42.76 78.186z" + } + } + }, + "key": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "password", + "unlock" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f084", + "label": "key", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z" + } + } + }, + "keybase": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f5", + "label": "Keybase", + "svg": { + "brands": { + "last_modified": 1525209365019, + "raw": "", + "viewBox": [ + "0", + "0", + "412.3", + "512" + ], + "width": 412, + "height": 512, + "path": "M177.2 430.9c0 9.8-8 17.8-17.8 17.8s-17.8-8-17.8-17.8 8-17.8 17.8-17.8c9.8-.1 17.8 7.9 17.8 17.8zM270 413c-9.8 0-17.8 8-17.8 17.8s8 17.8 17.8 17.8 17.8-8 17.8-17.8-8-17.8-17.8-17.8zm142.3-36c0 38.9-7.6 73.9-22.2 103h-27.3c23.5-38.7 30.5-94.8 22.4-134.3-16.1 29.5-52.1 38.6-85.9 28.8-127.8-37.5-192.5 19.7-234.6 50.3l18.9-59.3-39.9 42.3c4.8 26.7 15.7 51.3 31.2 72.3H46.1c-9.7-15.8-17.2-33-22.2-51.3L.1 454c0-74.9-5.5-147.6 61.5-215.2 20.2-20.4 43.7-36.2 69.1-46.7-6.8-13.5-9.5-29.2-7.8-46l-19.9-1.2c-17.9-1.1-31.6-16.5-30.6-34.4v-.1L74 84.2c1.1-17.1 15.4-30.6 32.5-30.6 1.3 0-.3-.1 28.2 1.7 13.9.8 21.5 9.8 22.8 11.4 7.1-10.4 14.5-20.5 24.6-34.5l20.6 12.1c-13.6 29-9.1 36.2-9 36.3 3.9 0 13.9-.5 32.4 5.7C246 92.9 262 107 271 126c.4.9 15.5 29 1.2 62.6 19 6.1 51.3 19.9 82.4 51.8 36.6 37.6 57.7 87.4 57.7 136.6zM128 122.3c3.2-10 7.7-19.7 13.1-29.4.1-2 2.2-13.1-7.8-13.8-28.5-1.8-26.3-1.6-26.7-1.6-4.6 0-8.3 3.5-8.6 8.1l-1.6 26.2c-.3 4.7 3.4 8.8 8.1 9.1l23.5 1.4zm25.8 61.8c5.6 9.4 14.1 16.1 22.3 20 0-21.2 28.5-41.9 52.8-17.5l8.4 10.3c20.8-18.8 19.4-45.3 12.1-60.9-13.8-29.1-46.9-32-54.3-31.7-10.3.4-19.7-5.4-23.7-15.3-13.7 21.2-37.2 62.5-17.6 95.1zm82.9 68.4L217 268.6c-1.9 1.6-2.2 4.4-.6 6.3l8.9 10.9c1 1.2 3.8 2.7 6.3.6l19.6-16 5.5 6.8c4.9 6 13.8-1.4 9-7.3-63.6-78.3-41.5-51.1-55.3-68.1-4.7-6-13.9 1.4-9 7.3 1.9 2.3 18.4 22.6 19.8 24.3l-9.6 7.9c-4.6 3.8 2.6 13.3 7.4 9.4l9.7-8 8 9.8zm118.4 25.7c-16.9-23.7-42.6-46.7-73.4-60.4-7.9-3.5-15-6.1-22.9-8.6-2 2.2-4.1 4.3-6.4 6.2l31.9 39.2c10.4 12.7 8.5 31.5-4.2 41.9-1.3 1.1-13.1 10.7-29 4.9-2.9 2.3-10.1 9.9-22.2 9.9-8.6 0-16.6-3.8-22.1-10.5l-8.9-10.9c-6.3-7.8-7.9-17.9-5-26.8-8.2-9.9-8.3-21.3-4.6-30-7.2-1.3-26.7-6.2-42.7-21.4-55.8 20.7-88 64.4-101.3 91.2-14.9 30.2-18.8 60.9-19.9 90.2 8.2-8.7-3.9 4.1 114-120.9l-29.9 93.6c57.8-31.1 124-36 197.4-14.4 23.6 6.9 45.1 1.6 56-13.9 11.1-15.6 8.5-37.7-6.8-59.3zM110.6 107.3l15.6 1 1-15.6-15.6-1-1 15.6z" + } + } + }, + "keyboard": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "input", + "type" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f11c", + "label": "Keyboard", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z" + }, + "regular": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M528 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm8 336c0 4.411-3.589 8-8 8H48c-4.411 0-8-3.589-8-8V112c0-4.411 3.589-8 8-8h480c4.411 0 8 3.589 8 8v288zM170 270v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-336 82v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm384 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zM122 188v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-98 158v-16c0-6.627-5.373-12-12-12H180c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h216c6.627 0 12-5.373 12-12z" + } + } + }, + "keycdn": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ba", + "label": "KeyCDN", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M63.8 409.3l60.5-59c32.1 42.8 71.1 66 126.6 67.4 30.5.7 60.3-7 86.4-22.4 5.1 5.3 18.5 19.5 20.9 22-32.2 20.7-69.6 31.1-108.1 30.2-43.3-1.1-84.6-16.7-117.7-44.4.3-.6-38.2 37.5-38.6 37.9 9.5 29.8-13.1 62.4-46.3 62.4C20.7 503.3 0 481.7 0 454.9c0-34.3 33.1-56.6 63.8-45.6zm354.9-252.4c19.1 31.3 29.6 67.4 28.7 104-1.1 44.8-19 87.5-48.6 121 .3.3 23.8 25.2 24.1 25.5 9.6-1.3 19.2 2 25.9 9.1 11.3 12 10.9 30.9-1.1 42.4-12 11.3-30.9 10.9-42.4-1.1-6.7-7-9.4-16.8-7.6-26.3-24.9-26.6-44.4-47.2-44.4-47.2 42.7-34.1 63.3-79.6 64.4-124.2.7-28.9-7.2-57.2-21.1-82.2l22.1-21zM104 53.1c6.7 7 9.4 16.8 7.6 26.3l45.9 48.1c-4.7 3.8-13.3 10.4-22.8 21.3-25.4 28.5-39.6 64.8-40.7 102.9-.7 28.9 6.1 57.2 20 82.4l-22 21.5C72.7 324 63.1 287.9 64.2 250.9c1-44.6 18.3-87.6 47.5-121.1l-25.3-26.4c-9.6 1.3-19.2-2-25.9-9.1-11.3-12-10.9-30.9 1.1-42.4C73.5 40.7 92.2 41 104 53.1zM464.9 8c26 0 47.1 22.4 47.1 48.3S490.9 104 464.9 104c-6.3.1-14-1.1-15.9-1.8l-62.9 59.7c-32.7-43.6-76.7-65.9-126.9-67.2-30.5-.7-60.3 6.8-86.2 22.4l-21.1-22C184.1 74.3 221.5 64 260 64.9c43.3 1.1 84.6 16.7 117.7 44.6l41.1-38.6c-1.5-4.7-2.2-9.6-2.2-14.5C416.5 29.7 438.9 8 464.9 8zM256.7 113.4c5.5 0 10.9.4 16.4 1.1 78.1 9.8 133.4 81.1 123.8 159.1-9.8 78.1-81.1 133.4-159.1 123.8-78.1-9.8-133.4-81.1-123.8-159.2 9.3-72.4 70.1-124.6 142.7-124.8zm-59 119.4c.6 22.7 12.2 41.8 32.4 52.2l-11 51.7h73.7l-11-51.7c20.1-10.9 32.1-29 32.4-52.2-.4-32.8-25.8-57.5-58.3-58.3-32.1.8-57.3 24.8-58.2 58.3zM256 160" + } + } + }, + "kickstarter": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3bb", + "label": "Kickstarter", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 480H48c-26.4 0-48-21.6-48-48V80c0-26.4 21.6-48 48-48h352c26.4 0 48 21.6 48 48v352c0 26.4-21.6 48-48 48zM199.6 178.5c0-30.7-17.6-45.1-39.7-45.1-25.8 0-40 19.8-40 44.5v154.8c0 25.8 13.7 45.6 40.5 45.6 21.5 0 39.2-14 39.2-45.6v-41.8l60.6 75.7c12.3 14.9 39 16.8 55.8 0 14.6-15.1 14.8-36.8 4-50.4l-49.1-62.8 40.5-58.7c9.4-13.5 9.5-34.5-5.6-49.1-16.4-15.9-44.6-17.3-61.4 7l-44.8 64.7v-38.8z" + } + } + }, + "kickstarter-k": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3bc", + "label": "Kickstarter K", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M147.3 114.4c0-56.2-32.5-82.4-73.4-82.4C26.2 32 0 68.2 0 113.4v283c0 47.3 25.3 83.4 74.9 83.4 39.8 0 72.4-25.6 72.4-83.4v-76.5l112.1 138.3c22.7 27.2 72.1 30.7 103.2 0 27-27.6 27.3-67.4 7.4-92.2l-90.8-114.8 74.9-107.4c17.4-24.7 17.5-63.1-10.4-89.8-30.3-29-82.4-31.6-113.6 12.8L147.3 185v-70.6z" + } + } + }, + "kiss": { + "changes": [ + "5.1.0", + "5.1.1" + ], + "ligatures": [], + "search": { + "terms": [ + "beso", + "emoticon", + "face", + "love", + "smooch" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f596", + "label": "Kissing Face", + "svg": { + "solid": { + "last_modified": 1529520111683, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm136 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm24-156c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" + }, + "regular": { + "last_modified": 1530132076296, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm136 132c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" + } + } + }, + "kiss-beam": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beso", + "emoticon", + "face", + "love", + "smooch" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f597", + "label": "Kissing Face With Smiling Eyes", + "svg": { + "solid": { + "last_modified": 1529520111681, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-39 219.9l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5zM304 396c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm65-168.1l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5z" + }, + "regular": { + "last_modified": 1529520111624, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M168 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm56-148c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zm24-156c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4z" + } + } + }, + "kiss-wink-heart": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beso", + "emoticon", + "face", + "love", + "smooch" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f598", + "label": "Face Blowing a Kiss", + "svg": { + "solid": { + "last_modified": 1529520111682, + "raw": "", + "viewBox": [ + "0", + "0", + "504", + "512" + ], + "width": 504, + "height": 512, + "path": "M501.1 402.5c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zm-177.6-4c-5.6-20.3-2.3-42 9-59.7 29.7-46.3 98.7-45.5 127.8 4.3 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-.3-.7-23.9-84.6-23.9-84.6zM168 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm120 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-5.7-12.3 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.8-3.7-4.6-16.6 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C274.6 368.7 288 383 288 396zm16-179c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S400 181 404 206.2c1.7 11.1-11.3 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 217z" + }, + "regular": { + "last_modified": 1529520111624, + "raw": "", + "viewBox": [ + "0", + "0", + "504", + "512" + ], + "width": 504, + "height": 512, + "path": "M304 308.5c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36 21.7-9.1 35.1-23.4 35.1-36.4zm70.5-83.5l9.5 8.5c3.8 3.3 9.3 4 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 5.8 3.1 11.2.7 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0zM136 208.5c0 17.7 14.3 32 32 32s32-14.3 32-32-14.3-32-32-32-32 14.3-32 32zm365.1 194c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zM334 436.3c-26.1 12.5-55.2 19.7-86 19.7-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200c0 22.1-3.7 43.3-10.4 63.2 9 6.4 17 14.2 22.6 23.9 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-2.5-7.3 4.3 17.2-13.4-46.8z" + } + } + }, + "kiwi-bird": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f535", + "label": "Kiwi Bird", + "svg": { + "solid": { + "last_modified": 1525967154570, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M575.81 217.98C572.64 157.41 518.28 112 457.63 112h-9.37c-52.82 0-104.25-16.25-147.74-46.24-41.99-28.96-96.04-41.62-153.21-28.7C129.3 41.12-.08 78.24 0 224c.04 70.95 38.68 132.8 95.99 166.01V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-54.26c15.36 3.96 31.4 6.26 48 6.26 5.44 0 10.68-.73 16-1.18V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-59.43c14.24-5.06 27.88-11.39 40.34-19.51C342.07 355.25 393.86 336 448.46 336c25.48 0 16.01-.31 23.05-.78l74.41 136.44c2.86 5.23 8.3 8.34 14.05 8.34 1.31 0 2.64-.16 3.95-.5 7.09-1.8 12.05-8.19 12.05-15.5 0 0 .14-240.24-.16-246.02zM463.97 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm80 153.25l-39.86-73.08c15.12-5.83 28.73-14.6 39.86-25.98v99.06z" + } + } + }, + "korvue": { + "changes": [ + "5.0.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f42f", + "label": "KORVUE", + "svg": { + "brands": { + "last_modified": 1513713060431, + "raw": "", + "viewBox": [ + "0", + "0", + "446", + "512" + ], + "width": 446, + "height": 512, + "path": "M386.5 34h-327C26.8 34 0 60.8 0 93.5v327.1C0 453.2 26.8 480 59.5 480h327.1c33 0 59.5-26.8 59.5-59.5v-327C446 60.8 419.2 34 386.5 34zM87.1 120.8h96v116l61.8-116h110.9l-81.2 132H87.1v-132zm161.8 272.1l-65.7-113.6v113.6h-96V262.1h191.5l88.6 130.8H248.9z" + } + } + }, + "language": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dialect", + "idiom", + "localize", + "speech", + "translate", + "vernacular" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1ab", + "label": "Language", + "svg": { + "solid": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M304 416H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h280v320zm-120.676-72.622A12 12 0 0 0 194.839 352h22.863c8.22 0 14.007-8.078 11.362-15.861L171.61 167.085a12 12 0 0 0-11.362-8.139h-32.489a12.001 12.001 0 0 0-11.362 8.139L58.942 336.139C56.297 343.922 62.084 352 70.304 352h22.805a12 12 0 0 0 11.535-8.693l9.118-31.807h60.211l9.351 31.878zm-39.051-140.42s4.32 21.061 7.83 33.21l10.8 37.531h-38.07l11.07-37.531c3.51-12.15 7.83-33.21 7.83-33.21h.54zM616 416H336V96h280c13.255 0 24 10.745 24 24v272c0 13.255-10.745 24-24 24zm-36-228h-64v-16c0-6.627-5.373-12-12-12h-16c-6.627 0-12 5.373-12 12v16h-64c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h114.106c-6.263 14.299-16.518 28.972-30.023 43.206-6.56-6.898-12.397-13.91-17.365-20.933-3.639-5.144-10.585-6.675-15.995-3.446l-7.28 4.346-6.498 3.879c-5.956 3.556-7.693 11.421-3.735 17.117 6.065 8.729 13.098 17.336 20.984 25.726-8.122 6.226-16.841 12.244-26.103 17.964-5.521 3.41-7.381 10.556-4.162 16.19l7.941 13.896c3.362 5.883 10.935 7.826 16.706 4.276 12.732-7.831 24.571-16.175 35.443-24.891 10.917 8.761 22.766 17.102 35.396 24.881 5.774 3.556 13.353 1.618 16.717-4.27l7.944-13.903c3.213-5.623 1.37-12.76-4.135-16.171a312.737 312.737 0 0 1-26.06-18.019c21.024-22.425 35.768-46.289 42.713-69.85H580c6.627 0 12-5.373 12-12v-16c0-6.625-5.373-11.998-12-11.998z" + } + } + }, + "laptop": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "cpu", + "dell", + "demo", + "device", + "dude you're getting", + "mac", + "macbook", + "machine", + "pc", + "pc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f109", + "label": "Laptop", + "svg": { + "solid": { + "last_modified": 1502809851000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M512 64v256H128V64h384m16-64H112C85.5 0 64 21.5 64 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm100 416H389.5c-3 0-5.5 2.1-5.9 5.1C381.2 436.3 368 448 352 448h-64c-16 0-29.2-11.7-31.6-26.9-.5-2.9-3-5.1-5.9-5.1H12c-6.6 0-12 5.4-12 12v36c0 26.5 21.5 48 48 48h544c26.5 0 48-21.5 48-48v-36c0-6.6-5.4-12-12-12z" + } + } + }, + "laravel": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3bd", + "label": "Laravel", + "svg": { + "brands": { + "last_modified": 1515426581999, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M637.5 241.6c-4.2-4.8-62.8-78.1-73.1-90.5-10.3-12.4-15.4-10.2-21.7-9.3-6.4.9-80.5 13.4-89.1 14.8-8.6 1.5-14 4.9-8.7 12.3 4.7 6.6 53.4 75.7 64.2 90.9l-193.7 46.4L161.2 48.7c-6.1-9.1-7.4-12.3-21.4-11.6-14 .6-120.9 9.5-128.5 10.2-7.6.6-16 4-8.4 22s129 279.6 132.4 287.2c3.4 7.6 12.2 20 32.8 15 21.1-5.1 94.3-24.2 134.3-34.7 21.1 38.3 64.2 115.9 72.2 127 10.6 14.9 18 12.4 34.3 7.4 12.8-3.9 199.6-71.1 208-74.5 8.4-3.5 13.6-5.9 7.9-14.4-4.2-6.2-53.5-72.2-79.3-106.8 17.7-4.7 80.6-21.4 87.3-23.3 7.9-2 9-5.8 4.7-10.6zm-352.2 72c-2.3.5-110.8 26.5-116.6 27.8-5.8 1.3-5.8.7-6.5-1.3-.7-2-129-266.7-130.8-270-1.8-3.3-1.7-5.9 0-5.9s102.5-9 106-9.2c3.6-.2 3.2.6 4.5 2.8 0 0 142.2 245.4 144.6 249.7 2.6 4.3 1.1 5.6-1.2 6.1zm306 57.4c1.7 2.7 3.5 4.5-2 6.4-5.4 2-183.7 62.1-187.1 63.6-3.5 1.5-6.2 2-10.6-4.5s-62.4-106.8-62.4-106.8L518 280.6c4.7-1.5 6.2-2.5 9.2 2.2 2.9 4.8 62.4 85.5 64.1 88.2zm12.1-134.1c-4.2.9-73.6 18.1-73.6 18.1l-56.7-77.8c-1.6-2.3-2.9-4.5 1.1-5s68.4-12.2 71.3-12.8c2.9-.7 5.4-1.5 9 3.4 3.6 4.9 52.6 67 54.5 69.4 1.8 2.3-1.4 3.7-5.6 4.7z" + } + } + }, + "lastfm": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f202", + "label": "last.fm", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M225.8 367.1l-18.8-51s-30.5 34-76.2 34c-40.5 0-69.2-35.2-69.2-91.5 0-72.1 36.4-97.9 72.1-97.9 66.5 0 74.8 53.3 100.9 134.9 18.8 56.9 54 102.6 155.4 102.6 72.7 0 122-22.3 122-80.9 0-72.9-62.7-80.6-115-92.1-25.8-5.9-33.4-16.4-33.4-34 0-19.9 15.8-31.7 41.6-31.7 28.2 0 43.4 10.6 45.7 35.8l58.6-7c-4.7-52.8-41.1-74.5-100.9-74.5-52.8 0-104.4 19.9-104.4 83.9 0 39.9 19.4 65.1 68 76.8 44.9 10.6 79.8 13.8 79.8 45.7 0 21.7-21.1 30.5-61 30.5-59.2 0-83.9-31.1-97.9-73.9-32-96.8-43.6-163-161.3-163C45.7 113.8 0 168.3 0 261c0 89.1 45.7 137.2 127.9 137.2 66.2 0 97.9-31.1 97.9-31.1z" + } + } + }, + "lastfm-square": { + "changes": [ + "4.2", + "5.0.0", + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f203", + "label": "last.fm Square", + "svg": { + "brands": { + "last_modified": 1525209365020, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-92.2 312.9c-63.4 0-85.4-28.6-97.1-64.1-16.3-51-21.5-84.3-63-84.3-22.4 0-45.1 16.1-45.1 61.2 0 35.2 18 57.2 43.3 57.2 28.6 0 47.6-21.3 47.6-21.3l11.7 31.9s-19.8 19.4-61.2 19.4c-51.3 0-79.9-30.1-79.9-85.8 0-57.9 28.6-92 82.5-92 73.5 0 80.8 41.4 100.8 101.9 8.8 26.8 24.2 46.2 61.2 46.2 24.9 0 38.1-5.5 38.1-19.1 0-19.9-21.8-22-49.9-28.6-30.4-7.3-42.5-23.1-42.5-48 0-40 32.3-52.4 65.2-52.4 37.4 0 60.1 13.6 63 46.6l-36.7 4.4c-1.5-15.8-11-22.4-28.6-22.4-16.1 0-26 7.3-26 19.8 0 11 4.8 17.6 20.9 21.3 32.7 7.1 71.8 12 71.8 57.5.1 36.7-30.7 50.6-76.1 50.6z" + } + } + }, + "laugh": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face", + "laugh" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f599", + "label": "Grinning Face With Big Eyes", + "svg": { + "solid": { + "last_modified": 1529520111684, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 152c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm88 272h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18-8.9 71-69.5 126-142.9 126z" + }, + "regular": { + "last_modified": 1529520111625, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 224c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm-160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z" + } + } + }, + "laugh-beam": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f59a", + "label": "Laugh Face with Beaming Eyes", + "svg": { + "solid": { + "last_modified": 1529520111683, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm24 199.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.8 4.1-15.1-4.5zm-160 0c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z" + }, + "regular": { + "last_modified": 1529520111625, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 152c-23.8 0-52.7 29.3-56 71.4-.7 8.6 10.8 11.9 14.9 4.5l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.1-42.1-32-71.4-55.8-71.4zm-201 75.9l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.6 8.5 10.9 11.9 15.1 4.5zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z" + } + } + }, + "laugh-squint": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f59b", + "label": "Laughing Squinting Face", + "svg": { + "solid": { + "last_modified": 1529520111683, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 161.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 180l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z" + }, + "regular": { + "last_modified": 1529520111625, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM343.6 196l33.6-40.3c8.6-10.3-3.8-24.8-15.4-18l-80 48c-7.8 4.7-7.8 15.9 0 20.6l80 48c11.5 6.8 24-7.6 15.4-18L343.6 196zm-209.4 58.3l80-48c7.8-4.7 7.8-15.9 0-20.6l-80-48c-11.6-6.9-24 7.7-15.4 18l33.6 40.3-33.6 40.3c-8.7 10.4 3.8 24.8 15.4 18zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z" + } + } + }, + "laugh-wink": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f59c", + "label": "Laughing Winking Face", + "svg": { + "solid": { + "last_modified": 1529520111684, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm20.1 198.1c4-25.2 34.2-42.1 59.9-42.1s55.9 16.9 59.9 42.1c1.7 11.1-11.4 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 217c-8.4 7.4-21.6.3-19.9-10.9zM168 160c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm230.9 146C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z" + }, + "regular": { + "last_modified": 1529520111625, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6C68.8 359.6 48 309.4 48 256s20.8-103.6 58.6-141.4C144.4 76.8 194.6 56 248 56s103.6 20.8 141.4 58.6c37.8 37.8 58.6 88 58.6 141.4s-20.8 103.6-58.6 141.4zM328 164c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1zm-160 60c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z" + } + } + }, + "leaf": { + "changes": [ + "1", + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "eco", + "nature", + "plant" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f06c", + "label": "leaf", + "svg": { + "solid": { + "last_modified": 1522083406023, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z" + } + } + }, + "leanpub": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f212", + "label": "Leanpub", + "svg": { + "brands": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M386.539 111.485l15.096 248.955-10.979-.275c-36.232-.824-71.64 8.783-102.657 27.997-31.016-19.214-66.424-27.997-102.657-27.997-45.564 0-82.07 10.705-123.516 27.723L93.117 129.6c28.546-11.803 61.484-18.115 92.226-18.115 41.173 0 73.836 13.175 102.657 42.544 27.723-28.271 59.013-41.721 98.539-42.544zM569.07 448c-25.526 0-47.485-5.215-70.542-15.645-34.31-15.645-69.993-24.978-107.871-24.978-38.977 0-74.934 12.901-102.657 40.623-27.723-27.723-63.68-40.623-102.657-40.623-37.878 0-73.561 9.333-107.871 24.978C55.239 442.236 32.731 448 8.303 448H6.93L49.475 98.859C88.726 76.626 136.486 64 181.775 64 218.83 64 256.984 71.685 288 93.095 319.016 71.685 357.17 64 394.225 64c45.289 0 93.049 12.626 132.3 34.859L569.07 448zm-43.368-44.741l-34.036-280.246c-30.742-13.999-67.248-21.41-101.009-21.41-38.428 0-74.385 12.077-102.657 38.702-28.272-26.625-64.228-38.702-102.657-38.702-33.761 0-70.267 7.411-101.009 21.41L50.298 403.259c47.211-19.487 82.894-33.486 135.045-33.486 37.604 0 70.817 9.606 102.657 29.644 31.84-20.038 65.052-29.644 102.657-29.644 52.151 0 87.834 13.999 135.045 33.486z" + } + } + }, + "lemon": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "food" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f094", + "label": "Lemon", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M489.038 22.963C465.944-.13 434.648-5.93 413.947 6.129c-58.906 34.312-181.25-53.077-321.073 86.746S40.441 355.041 6.129 413.945c-12.059 20.702-6.26 51.999 16.833 75.093 23.095 23.095 54.392 28.891 75.095 16.832 58.901-34.31 181.246 53.079 321.068-86.743S471.56 156.96 505.871 98.056c12.059-20.702 6.261-51.999-16.833-75.093zM243.881 95.522c-58.189 14.547-133.808 90.155-148.358 148.358-1.817 7.27-8.342 12.124-15.511 12.124-1.284 0-2.59-.156-3.893-.481-8.572-2.144-13.784-10.83-11.642-19.403C81.901 166.427 166.316 81.93 236.119 64.478c8.575-2.143 17.261 3.069 19.403 11.642s-3.069 17.259-11.641 19.402z" + }, + "regular": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M484.112 27.889C455.989-.233 416.108-8.057 387.059 8.865 347.604 31.848 223.504-41.111 91.196 91.197-41.277 223.672 31.923 347.472 8.866 387.058c-16.922 29.051-9.1 68.932 19.022 97.054 28.135 28.135 68.011 35.938 97.057 19.021 39.423-22.97 163.557 49.969 295.858-82.329 132.474-132.477 59.273-256.277 82.331-295.861 16.922-29.05 9.1-68.931-19.022-97.054zm-22.405 72.894c-38.8 66.609 45.6 165.635-74.845 286.08-120.44 120.443-219.475 36.048-286.076 74.843-22.679 13.207-64.035-27.241-50.493-50.488 38.8-66.609-45.6-165.635 74.845-286.08C245.573 4.702 344.616 89.086 411.219 50.292c22.73-13.24 64.005 27.288 50.488 50.491zm-169.861 8.736c1.37 10.96-6.404 20.957-17.365 22.327-54.846 6.855-135.779 87.787-142.635 142.635-1.373 10.989-11.399 18.734-22.326 17.365-10.961-1.37-18.735-11.366-17.365-22.326 9.162-73.286 104.167-168.215 177.365-177.365 10.953-1.368 20.956 6.403 22.326 17.364z" + } + } + }, + "less": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f41d", + "label": "Less", + "svg": { + "brands": { + "last_modified": 1508787003039, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M612.7 219c0-20.5 3.2-32.6 3.2-54.6 0-34.2-12.6-45.2-40.5-45.2h-20.5v24.2h6.3c14.2 0 17.3 4.7 17.3 22.1 0 16.3-1.6 32.6-1.6 51.5 0 24.2 7.9 33.6 23.6 37.3v1.6c-15.8 3.7-23.6 13.1-23.6 37.3 0 18.9 1.6 34.2 1.6 51.5 0 17.9-3.7 22.6-17.3 22.6v.5h-6.3V393h20.5c27.8 0 40.5-11 40.5-45.2 0-22.6-3.2-34.2-3.2-54.6 0-11 6.8-22.6 27.3-23.6v-27.3c-20.5-.7-27.3-12.3-27.3-23.3zm-105.6 32c-15.8-6.3-30.5-10-30.5-20.5 0-7.9 6.3-12.6 17.9-12.6s22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-21 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51s-22.5-41-43-47.8zm-358.9 59.4c-3.7 0-8.4-3.2-8.4-13.1V119.1H65.2c-28.4 0-41 11-41 45.2 0 22.6 3.2 35.2 3.2 54.6 0 11-6.8 22.6-27.3 23.6v27.3c20.5.5 27.3 12.1 27.3 23.1 0 19.4-3.2 31-3.2 53.6 0 34.2 12.6 45.2 40.5 45.2h20.5v-24.2h-6.3c-13.1 0-17.3-5.3-17.3-22.6s1.6-32.1 1.6-51.5c0-24.2-7.9-33.6-23.6-37.3v-1.6c15.8-3.7 23.6-13.1 23.6-37.3 0-18.9-1.6-34.2-1.6-51.5s3.7-22.1 17.3-22.1H93v150.8c0 32.1 11 53.1 43.1 53.1 10 0 17.9-1.6 23.6-3.7l-5.3-34.2c-3.1.8-4.6.8-6.2.8zM379.9 251c-16.3-6.3-31-10-31-20.5 0-7.9 6.3-12.6 17.9-12.6 11.6 0 22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-20.5 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51 .1-28.9-22.5-41-43-47.8zm-155-68.8c-38.4 0-75.1 32.1-74.1 82.5 0 52 34.2 82.5 79.3 82.5 18.9 0 39.9-6.8 56.2-17.9l-15.8-27.8c-11.6 6.8-22.6 10-34.2 10-21 0-37.3-10-41.5-34.2H290c.5-3.7 1.6-11 1.6-19.4.6-42.6-22.6-75.7-66.7-75.7zm-30 66.2c3.2-21 15.8-31 30.5-31 18.9 0 26.3 13.1 26.3 31h-56.8z" + } + } + }, + "less-than": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f536", + "label": "Less Than", + "svg": { + "solid": { + "last_modified": 1525967154570, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M365.46 357.74L147.04 255.89l218.47-101.88c16.02-7.47 22.95-26.51 15.48-42.53l-13.52-29C360 66.46 340.96 59.53 324.94 67L18.48 209.91a32.014 32.014 0 0 0-18.48 29v34.24c0 12.44 7.21 23.75 18.48 29l306.31 142.83c16.06 7.49 35.15.54 42.64-15.52l13.56-29.08c7.49-16.06.54-35.15-15.53-42.64z" + } + } + }, + "less-than-equal": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f537", + "label": "Less Than Equal To", + "svg": { + "solid": { + "last_modified": 1525967154570, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M54.98 214.2l301.41 119.87c18.39 6.03 38.71-2.54 45.38-19.15l12.09-30.08c6.68-16.61-2.82-34.97-21.21-41l-175.44-68.05 175.56-68.09c18.29-6 27.74-24.27 21.1-40.79l-12.03-29.92c-6.64-16.53-26.86-25.06-45.15-19.06L54.98 137.89C41.21 142.41 32 154.5 32 168.07v15.96c0 13.56 9.21 25.65 22.98 30.17zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z" + } + } + }, + "level-down-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "level-down" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3be", + "label": "Alternate Level Down", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z" + } + } + }, + "level-up-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "level-up" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3bf", + "label": "Alternate Level Up", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z" + } + } + }, + "life-ring": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "support" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1cd", + "label": "Life Ring", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm173.696 119.559l-63.399 63.399c-10.987-18.559-26.67-34.252-45.255-45.255l63.399-63.399a218.396 218.396 0 0 1 45.255 45.255zM256 352c-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96-42.981 96-96 96zM127.559 82.304l63.399 63.399c-18.559 10.987-34.252 26.67-45.255 45.255l-63.399-63.399a218.372 218.372 0 0 1 45.255-45.255zM82.304 384.441l63.399-63.399c10.987 18.559 26.67 34.252 45.255 45.255l-63.399 63.399a218.396 218.396 0 0 1-45.255-45.255zm302.137 45.255l-63.399-63.399c18.559-10.987 34.252-26.67 45.255-45.255l63.399 63.399a218.403 218.403 0 0 1-45.255 45.255z" + }, + "regular": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 504c136.967 0 248-111.033 248-248S392.967 8 256 8 8 119.033 8 256s111.033 248 248 248zm-103.398-76.72l53.411-53.411c31.806 13.506 68.128 13.522 99.974 0l53.411 53.411c-63.217 38.319-143.579 38.319-206.796 0zM336 256c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zm91.28 103.398l-53.411-53.411c13.505-31.806 13.522-68.128 0-99.974l53.411-53.411c38.319 63.217 38.319 143.579 0 206.796zM359.397 84.72l-53.411 53.411c-31.806-13.505-68.128-13.522-99.973 0L152.602 84.72c63.217-38.319 143.579-38.319 206.795 0zM84.72 152.602l53.411 53.411c-13.506 31.806-13.522 68.128 0 99.974L84.72 359.398c-38.319-63.217-38.319-143.579 0-206.796z" + } + } + }, + "lightbulb": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "idea", + "inspiration" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0eb", + "label": "Lightbulb", + "svg": { + "solid": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zm-143.107-44c-9.907 0-18.826-6.078-22.376-15.327C67.697 267.541 16 277.731 16 176 16 78.803 94.805 0 192 0s176 78.803 176 176c0 101.731-51.697 91.541-90.516 192.673-3.55 9.249-12.47 15.327-22.376 15.327H128.893zM112 176c0-44.112 35.888-80 80-80 8.837 0 16-7.164 16-16s-7.163-16-16-16c-61.757 0-112 50.243-112 112 0 8.836 7.164 16 16 16s16-7.164 16-16z" + }, + "regular": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zM128 176c0-35.29 28.71-64 64-64 8.837 0 16-7.164 16-16s-7.163-16-16-16c-52.935 0-96 43.065-96 96 0 8.836 7.164 16 16 16s16-7.164 16-16zm64-128c70.734 0 128 57.254 128 128 0 77.602-37.383 60.477-80.98 160h-94.04C101.318 236.33 64 253.869 64 176c0-70.735 57.254-128 128-128m0-48C94.805 0 16 78.803 16 176c0 101.731 51.697 91.541 90.516 192.674 3.55 9.249 12.47 15.326 22.376 15.326h126.215c9.906 0 18.826-6.078 22.376-15.326C316.303 267.541 368 277.731 368 176 368 78.803 289.195 0 192 0z" + } + } + }, + "line": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3c0", + "label": "Line", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M272.1 204.2v71.1c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.1 0-2.1-.6-2.6-1.3l-32.6-44v42.2c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.8 0-3.2-1.4-3.2-3.2v-71.1c0-1.8 1.4-3.2 3.2-3.2H219c1 0 2.1.5 2.6 1.4l32.6 44v-42.2c0-1.8 1.4-3.2 3.2-3.2h11.4c1.8-.1 3.3 1.4 3.3 3.1zm-82-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 1.8 1.4 3.2 3.2 3.2h11.4c1.8 0 3.2-1.4 3.2-3.2v-71.1c0-1.7-1.4-3.2-3.2-3.2zm-27.5 59.6h-31.1v-56.4c0-1.8-1.4-3.2-3.2-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 .9.3 1.6.9 2.2.6.5 1.3.9 2.2.9h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.7-1.4-3.2-3.1-3.2zM332.1 201h-45.7c-1.7 0-3.2 1.4-3.2 3.2v71.1c0 1.7 1.4 3.2 3.2 3.2h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2V234c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2v-11.4c-.1-1.7-1.5-3.2-3.2-3.2zM448 113.7V399c-.1 44.8-36.8 81.1-81.7 81H81c-44.8-.1-81.1-36.9-81-81.7V113c.1-44.8 36.9-81.1 81.7-81H367c44.8.1 81.1 36.8 81 81.7zm-61.6 122.6c0-73-73.2-132.4-163.1-132.4-89.9 0-163.1 59.4-163.1 132.4 0 65.4 58 120.2 136.4 130.6 19.1 4.1 16.9 11.1 12.6 36.8-.7 4.1-3.3 16.1 14.1 8.8 17.4-7.3 93.9-55.3 128.2-94.7 23.6-26 34.9-52.3 34.9-81.5z" + } + } + }, + "link": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chain" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0c1", + "label": "Link", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z" + } + } + }, + "linkedin": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linkedin-square" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f08c", + "label": "LinkedIn", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z" + } + } + }, + "linkedin-in": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linkedin" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f0e1", + "label": "LinkedIn In", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z" + } + } + }, + "linode": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2b8", + "label": "Linode", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M437.4 226.3c-.3-.9-.9-1.4-1.4-2l-70-38.6c-.9-.6-2-.6-3.1 0l-58.9 36c-.9.6-1.4 1.7-1.4 2.6l-.9 31.4-24-16c-.9-.6-2.3-.6-3.1 0L240 260.9l-1.4-35.1c0-.9-.6-2-1.4-2.3l-36-24.3 33.7-17.4c1.1-.6 1.7-1.7 1.7-2.9l-5.7-132.3c0-.9-.9-2-1.7-2.6L138.6.3c-.9-.3-1.7-.3-2.3-.3L12.6 38.6c-1.4.6-2.3 2-2 3.7L38 175.4c.9 3.4 34 27.4 38.6 30.9l-26.9 12.9c-1.4.9-2 2.3-1.7 3.4l20.6 100.3c.6 2.9 23.7 23.1 27.1 26.3l-17.4 10.6c-.9.6-1.7 2-1.4 3.1 1.4 7.1 15.4 77.7 16.9 79.1l65.1 69.1c.6.6 1.4.6 2.3.9.6 0 1.1-.3 1.7-.6l83.7-66.9c.9-.6 1.1-1.4 1.1-2.3l-2-46 28 23.7c1.1.9 2.9.9 4 0l66.9-53.4c.9-.6 1.1-1.4 1.1-2.3l2.3-33.4 20.3 14c1.1.9 2.6.9 3.7 0l54.6-43.7c.6-.3 1.1-1.1 1.1-2 .9-6.5 10.3-70.8 9.7-72.8zm-204.8 4.8l4 92.6-90.6 61.2-14-96.6 100.6-57.2zm-7.7-180l5.4 126-106.6 55.4L104 97.7l120.9-46.6zM44 173.1L18 48l79.7 49.4 19.4 132.9L44 173.1zm30.6 147.8L55.7 230l70 58.3 13.7 93.4-64.8-60.8zm24.3 117.7l-13.7-67.1 61.7 60.9 9.7 67.4-57.7-61.2zm64.5 64.5l-10.6-70.9 85.7-61.4 3.1 70-78.2 62.3zm82-115.1c0-3.4.9-22.9-2-25.1l-24.3-20 22.3-14.9c2.3-1.7 1.1-5.7 1.1-8l29.4 22.6.6 68.3-27.1-22.9zm94.3-25.4l-60.9 48.6-.6-68.6 65.7-46.9-4.2 66.9zm27.7-25.7l-19.1-13.4 2-34c.3-.9-.3-2-1.1-2.6L308 259.7l.6-30 64.6 40.6-5.8 66.6zm54.6-39.8l-48.3 38.3 5.7-65.1 51.1-36.6-8.5 63.4z" + } + } + }, + "linux": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "tux" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f17c", + "label": "Linux", + "svg": { + "brands": { + "last_modified": 1521653821386, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M196.1 123.6c-.2-1.4 1.9-2.3 3.2-2.9 1.7-.7 3.9-1 5.5-.1.4.2.8.7.6 1.1-.4 1.2-2.4 1-3.5 1.6-1 .5-1.8 1.7-3 1.7-1 .1-2.7-.4-2.8-1.4zm24.7-.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm214.7 310.2c-.5 8.2-6.5 13.8-13.9 18.3-14.9 9-37.3 15.8-50.9 32.2l-2.6-2.2 2.6 2.2c-14.2 16.9-31.7 26.6-48.3 27.9-16.5 1.3-32-6.3-40.3-23v-.1c-1.1-2.1-1.9-4.4-2.5-6.7-21.5 1.2-40.2-5.3-55.1-4.1-22 1.2-35.8 6.5-48.3 6.6-4.8 10.6-14.3 17.6-25.9 20.2-16 3.7-36.1 0-55.9-10.4l1.6-3-1.6 3c-18.5-9.8-42-8.9-59.3-12.5-8.7-1.8-16.3-5-20.1-12.3-3.7-7.3-3-17.3 2.2-31.7 1.7-5.1.4-12.7-.8-20.8-.6-3.9-1.2-7.9-1.2-11.8 0-4.3.7-8.5 2.8-12.4 4.5-8.5 11.8-12.1 18.5-14.5 6.7-2.4 12.8-4 17-8.3 5.2-5.5 10.1-14.4 16.6-20.2-2.6-17.2.2-35.4 6.2-53.3 12.6-37.9 39.2-74.2 58.1-96.7 16.1-22.9 20.8-41.3 22.5-64.7C158 103.4 132.4-.2 234.8 0c80.9.1 76.3 85.4 75.8 131.3-.3 30.1 16.3 50.5 33.4 72 15.2 18 35.1 44.3 46.5 74.4 9.3 24.6 12.9 51.8 3.7 79.1 1.4.5 2.8 1.2 4.1 2 1.4.8 2.7 1.8 4 2.9 6.6 5.6 8.7 14.3 10.5 22.4 1.9 8.1 3.6 15.7 7.2 19.7 11.1 12.4 15.9 21.5 15.5 29.7zM220.8 109.1c3.6.9 8.9 2.4 13 4.4-2.1-12.2 4.5-23.5 11.8-23 8.9.3 13.9 15.5 9.1 27.3-.8 1.9-2.8 3.4-3.9 4.6 6.7 2.3 11 4.1 12.6 4.9 7.9-9.5 10.8-26.2 4.3-40.4-9.8-21.4-34.2-21.8-44 .4-3.2 7.2-3.9 14.9-2.9 21.8zm-46.2 18.8c7.8-5.7 6.9-4.7 5.9-5.5-8-6.9-6.6-27.4 1.8-28.1 6.3-.5 10.8 10.7 9.6 19.6 3.1-2.1 6.7-3.6 10.2-4.6 1.7-19.3-9-33.5-19.1-33.5-18.9 0-24 37.5-8.4 52.1zm-9.4 20.9c1.5 4.9 6.1 10.5 14.7 15.3 7.8 4.6 12 11.5 20 15 2.6 1.1 5.7 1.9 9.6 2.1 18.4 1.1 27.1-11.3 38.2-14.9 11.7-3.7 20.1-11 22.7-18.1 3.2-8.5-2.1-14.7-10.5-18.2-11.3-4.9-16.3-5.2-22.6-9.3-10.3-6.6-18.8-8.9-25.9-8.9-14.4 0-23.2 9.8-27.9 14.2-.5.5-7.9 5.9-14.1 10.5-4.2 3.3-5.6 7.4-4.2 12.3zm-33.5 252.8L112.1 366c-6.8-9.2-13.8-14.8-21.9-16-7.7-1.2-12.6 1.4-17.7 6.9-4.8 5.1-8.8 12.3-14.3 18-7.8 6.5-9.3 6.2-19.6 9.9-6.3 2.2-11.3 4.6-14.8 11.3-2.7 5-2.1 12.2-.9 20 1.2 7.9 3 16.3.6 23.9v.2c-5 13.7-5 21.7-2.6 26.4 7.9 15.4 46.6 6.1 76.5 21.9 31.4 16.4 72.6 17.1 75.3-18 2.1-20.5-31.5-49-41-68.9zm153.9 35.8c3.2-11 6.3-21.3 6.8-29 .8-15.2 1.6-28.7 4.4-39.9 3.1-12.6 9.3-23.1 21.4-27.3 2.3-21.1 18.7-21.1 38.3-12.5 18.9 8.5 26 16 22.8 26.1 1 0 2-.1 4.2 0 5.2-16.9-14.3-28-30.7-34.8 2.9-12 2.4-24.1-.4-35.7-6-25.3-22.6-47.8-35.2-59-2.3-.1-2.1 1.9 2.6 6.5 11.6 10.7 37.1 49.2 23.3 84.9-3.9-1-7.6-1.5-10.9-1.4-5.3-29.1-17.5-53.2-23.6-64.6-11.5-21.4-29.5-65.3-37.2-95.7-4.5 6.4-12.4 11.9-22.3 15-4.7 1.5-9.7 5.5-15.9 9-13.9 8-30 8.8-42.4-1.2-4.5-3.6-8-7.6-12.6-10.3-1.6-.9-5.1-3.3-6.2-4.1-2 37.8-27.3 85.3-39.3 112.7-8.3 19.7-13.2 40.8-13.8 61.5-21.8-29.1-5.9-66.3 2.6-82.4 9.5-17.6 11-22.5 8.7-20.8-8.6 14-22 36.3-27.2 59.2-2.7 11.9-3.2 24 .3 35.2 3.5 11.2 11.1 21.5 24.6 29.9 0 0 24.8 14.3 38.3 32.5 7.4 10 9.7 18.7 7.4 24.9-2.5 6.7-9.6 8.9-16.7 8.9 4.8 6 10.3 13 14.4 19.6 37.6 25.7 82.2 15.7 114.3-7.2zM415 408.5c-10-11.3-7.2-33.1-17.1-41.6-6.9-6-13.6-5.4-22.6-5.1-7.7 8.8-25.8 19.6-38.4 16.3-11.5-2.9-18-16.3-18.8-29.5-.3.2-.7.3-1 .5-7.1 3.9-11.1 10.8-13.7 21.1-2.5 10.2-3.4 23.5-4.2 38.7-.7 11.8-6.2 26.4-9.9 40.6-3.5 13.2-5.8 25.2-1.1 36.3 7.2 14.5 19.5 20.4 33.7 19.3 14.2-1.1 30.4-9.8 43.6-25.5 22-26.6 62.3-29.7 63.2-46.5.3-5.1-3.1-13-13.7-24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4 3.9-3.4 5.9-6.3 3.1-6.6-2.8-.3-2.6 2.6-6 5.1-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2-10.4 0-18.7-4.8-24.9-9.7-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z" + } + } + }, + "lira-sign": { + "changes": [ + "4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "try", + "try", + "turkish" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f195", + "label": "Turkish Lira Sign", + "svg": { + "solid": { + "last_modified": 1501873838000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M371.994 256h-48.019C317.64 256 312 260.912 312 267.246 312 368 230.179 416 144 416V256.781l134.603-29.912A12 12 0 0 0 288 215.155v-40.976c0-7.677-7.109-13.38-14.603-11.714L144 191.219V160.78l134.603-29.912A12 12 0 0 0 288 119.154V78.179c0-7.677-7.109-13.38-14.603-11.714L144 95.219V44c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v68.997L9.397 125.131A12 12 0 0 0 0 136.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 178.558v30.439L9.397 221.131A12 12 0 0 0 0 232.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 274.558V468c0 6.627 5.373 12 12 12h79.583c134.091 0 223.255-77.834 228.408-211.592.261-6.782-5.211-12.408-11.997-12.408z" + } + } + }, + "list": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "ol", + "todo", + "ul" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f03a", + "label": "List", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M128 116V76c0-8.837 7.163-16 16-16h352c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H144c-8.837 0-16-7.163-16-16zm16 176h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 144h64c8.837 0 16-7.163 16-16V64c0-8.837-7.163-16-16-16H16C7.163 48 0 55.163 0 64v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16z" + } + } + }, + "list-alt": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "ol", + "todo", + "ul" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f022", + "label": "Alternate List", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM128 120c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288-136v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zm-42-92v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm-252 12c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36z" + } + } + }, + "list-ol": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "list", + "list", + "numbers", + "ol", + "todo", + "ul" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0cb", + "label": "list-ol", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M3.263 139.527c0-7.477 3.917-11.572 11.573-11.572h15.131V88.078c0-5.163.534-10.503.534-10.503h-.356s-1.779 2.67-2.848 3.738c-4.451 4.273-10.504 4.451-15.666-1.068l-5.518-6.231c-5.342-5.341-4.984-11.216.534-16.379l21.72-19.938C32.815 33.602 36.732 32 42.785 32H54.89c7.656 0 11.749 3.916 11.749 11.572v84.384h15.488c7.655 0 11.572 4.094 11.572 11.572v8.901c0 7.477-3.917 11.572-11.572 11.572H14.836c-7.656 0-11.573-4.095-11.573-11.572v-8.902zM2.211 304.591c0-47.278 50.955-56.383 50.955-69.165 0-7.18-5.954-8.755-9.28-8.755-3.153 0-6.479 1.051-9.455 3.852-5.079 4.903-10.507 7.004-16.111 2.451l-8.579-6.829c-5.779-4.553-7.18-9.805-2.803-15.409C13.592 201.981 26.025 192 47.387 192c19.437 0 44.476 10.506 44.476 39.573 0 38.347-46.753 46.402-48.679 56.909h39.049c7.529 0 11.557 4.027 11.557 11.382v8.755c0 7.354-4.028 11.382-11.557 11.382h-67.94c-7.005 0-12.083-4.028-12.083-11.382v-4.028zM5.654 454.61l5.603-9.28c3.853-6.654 9.105-7.004 15.584-3.152 4.903 2.101 9.63 3.152 14.359 3.152 10.155 0 14.358-3.502 14.358-8.23 0-6.654-5.604-9.106-15.934-9.106h-4.728c-5.954 0-9.28-2.101-12.258-7.88l-1.05-1.926c-2.451-4.728-1.226-9.806 2.801-14.884l5.604-7.004c6.829-8.405 12.257-13.483 12.257-13.483v-.35s-4.203 1.051-12.608 1.051H16.685c-7.53 0-11.383-4.028-11.383-11.382v-8.755c0-7.53 3.853-11.382 11.383-11.382h58.484c7.529 0 11.382 4.027 11.382 11.382v3.327c0 5.778-1.401 9.806-5.079 14.183l-17.509 20.137c19.611 5.078 28.716 20.487 28.716 34.845 0 21.363-14.358 44.126-48.503 44.126-16.636 0-28.192-4.728-35.896-9.455-5.779-4.202-6.304-9.805-2.626-15.934zM144 132h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" + } + } + }, + "list-ul": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "list", + "ol", + "todo", + "ul" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0ca", + "label": "list-ul", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M96 96c0 26.51-21.49 48-48 48S0 122.51 0 96s21.49-48 48-48 48 21.49 48 48zM48 208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm0 160c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm96-236h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" + } + } + }, + "location-arrow": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "gps", + "location", + "map", + "place", + "where" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f124", + "label": "location-arrow", + "svg": { + "solid": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M443.683 4.529L27.818 196.418C-18.702 217.889-3.39 288 47.933 288H224v175.993c0 51.727 70.161 66.526 91.582 20.115L507.38 68.225c18.905-40.961-23.752-82.133-63.697-63.696z" + } + } + }, + "lock": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "protect", + "security" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f023", + "label": "lock", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z" + } + } + }, + "lock-open": { + "changes": [ + "3.1", + "5.0.0", + "5.0.1" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "lock", + "open", + "password", + "protect" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3c1", + "label": "Lock Open", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M423.5 0C339.5.3 272 69.5 272 153.5V224H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48h-48v-71.1c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v80c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-80C576 68 507.5-.3 423.5 0z" + } + } + }, + "long-arrow-alt-down": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "long-arrow-down" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f309", + "label": "Alternate Long Arrow Down", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M168 345.941V44c0-6.627-5.373-12-12-12h-56c-6.627 0-12 5.373-12 12v301.941H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.569 9.373 33.941 0l86.059-86.059c15.119-15.119 4.411-40.971-16.971-40.971H168z" + } + } + }, + "long-arrow-alt-left": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "long-arrow-left", + "previous" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f30a", + "label": "Alternate Long Arrow Left", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M134.059 296H436c6.627 0 12-5.373 12-12v-56c0-6.627-5.373-12-12-12H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.569 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296z" + } + } + }, + "long-arrow-alt-right": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "long-arrow-right" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f30b", + "label": "Alternate Long Arrow Right", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z" + } + } + }, + "long-arrow-alt-up": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "long-arrow-up" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f30c", + "label": "Alternate Long Arrow Up", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M88 166.059V468c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12V166.059h46.059c21.382 0 32.09-25.851 16.971-40.971l-86.059-86.059c-9.373-9.373-24.569-9.373-33.941 0l-86.059 86.059c-15.119 15.119-4.411 40.971 16.971 40.971H88z" + } + } + }, + "low-vision": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f2a8", + "label": "Low Vision", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M569.344 231.631C512.96 135.949 407.81 72 288 72c-28.468 0-56.102 3.619-82.451 10.409L152.778 10.24c-7.601-10.858-22.564-13.5-33.423-5.9l-13.114 9.178c-10.86 7.601-13.502 22.566-5.9 33.426l43.131 58.395C89.449 131.73 40.228 174.683 6.682 231.581c-.01.017-.023.033-.034.05-8.765 14.875-8.964 33.528 0 48.739 38.5 65.332 99.742 115.862 172.859 141.349L55.316 244.302A272.194 272.194 0 0 1 83.61 208.39l119.4 170.58h.01l40.63 58.04a330.055 330.055 0 0 0 78.94 1.17l-189.98-271.4a277.628 277.628 0 0 1 38.777-21.563l251.836 356.544c7.601 10.858 22.564 13.499 33.423 5.9l13.114-9.178c10.86-7.601 13.502-22.567 5.9-33.426l-43.12-58.377-.007-.009c57.161-27.978 104.835-72.04 136.81-126.301a47.938 47.938 0 0 0 .001-48.739zM390.026 345.94l-19.066-27.23c24.682-32.567 27.711-76.353 8.8-111.68v.03c0 23.65-19.17 42.82-42.82 42.82-23.828 0-42.82-19.349-42.82-42.82 0-23.65 19.17-42.82 42.82-42.82h.03c-24.75-13.249-53.522-15.643-79.51-7.68l-19.068-27.237C253.758 123.306 270.488 120 288 120c75.162 0 136 60.826 136 136 0 34.504-12.833 65.975-33.974 89.94z" + } + } + }, + "luggage-cart": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f59d", + "label": "Luggage Cart", + "svg": { + "solid": { + "last_modified": 1529520111685, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M224 320h32V96h-32c-17.67 0-32 14.33-32 32v160c0 17.67 14.33 32 32 32zm352-32V128c0-17.67-14.33-32-32-32h-32v224h32c17.67 0 32-14.33 32-32zm48 96H128V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h48v368c0 8.84 7.16 16 16 16h82.94c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16h197.88c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM480 96V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v272h192V96zm-48 0h-96V48h96v48z" + } + } + }, + "lyft": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3c3", + "label": "lyft", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M0 81.1h77.8v208.7c0 33.1 15 52.8 27.2 61-12.7 11.1-51.2 20.9-80.2-2.8C7.8 334 0 310.7 0 289V81.1zm485.9 173.5v-22h23.8v-76.8h-26.1c-10.1-46.3-51.2-80.7-100.3-80.7-56.6 0-102.7 46-102.7 102.7V357c16 2.3 35.4-.3 51.7-14 17.1-14 24.8-37.2 24.8-59v-6.7h38.8v-76.8h-38.8v-23.3c0-34.6 52.2-34.6 52.2 0v77.1c0 56.6 46 102.7 102.7 102.7v-76.5c-14.5 0-26.1-11.7-26.1-25.9zm-294.3-99v113c0 15.4-23.8 15.4-23.8 0v-113H91v132.7c0 23.8 8 54 45 63.9 37 9.8 58.2-10.6 58.2-10.6-2.1 13.4-14.5 23.3-34.9 25.3-15.5 1.6-35.2-3.6-45-7.8v70.3c25.1 7.5 51.5 9.8 77.6 4.7 47.1-9.1 76.8-48.4 76.8-100.8V155.1h-77.1v.5z" + } + } + }, + "magento": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3c4", + "label": "Magento", + "svg": { + "brands": { + "last_modified": 1501873838000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M445.7 127.9V384l-63.4 36.5V164.7L223.8 73.1 65.2 164.7l.4 255.9L2.3 384V128.1L224.2 0l221.5 127.9zM255.6 420.5L224 438.9l-31.8-18.2v-256l-63.3 36.6.1 255.9 94.9 54.9 95.1-54.9v-256l-63.4-36.6v255.9z" + } + } + }, + "magic": { + "changes": [ + "2", + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "autocomplete", + "automatic", + "wizard" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0d0", + "label": "magic", + "svg": { + "solid": { + "last_modified": 1529520111685, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M224 96l16-32 32-16-32-16-16-32-16 32-32 16 32 16 16 32zM80 160l26.66-53.33L160 80l-53.34-26.67L80 0 53.34 53.33 0 80l53.34 26.67L80 160zm352 128l-26.66 53.33L352 368l53.34 26.67L432 448l26.66-53.33L512 368l-53.34-26.67L432 288zm70.62-193.77L417.77 9.38C411.53 3.12 403.34 0 395.15 0c-8.19 0-16.38 3.12-22.63 9.38L9.38 372.52c-12.5 12.5-12.5 32.76 0 45.25l84.85 84.85c6.25 6.25 14.44 9.37 22.62 9.37 8.19 0 16.38-3.12 22.63-9.37l363.14-363.15c12.5-12.48 12.5-32.75 0-45.24zM359.45 203.46l-50.91-50.91 86.6-86.6 50.91 50.91-86.6 86.6z" + } + } + }, + "magnet": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f076", + "label": "magnet", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "512.1", + "512" + ], + "width": 512, + "height": 512, + "path": "M164.1 160H12c-6.6 0-12-5.4-12-12V68c0-19.9 16.1-36 36-36h104c19.9 0 36 16.1 36 36v80c.1 6.6-5.3 12-11.9 12zm348-12V67.9c0-19.9-16.1-36-36-36h-104c-19.9 0-36 16.1-36 36v80c0 6.6 5.4 12 12 12h152c6.6.1 12-5.3 12-11.9zm-164 44c-6.6 0-12 5.4-12 12v52c0 128.1-160 127.9-160 0v-52c0-6.6-5.4-12-12-12h-152c-6.7 0-12 5.4-12 12.1.1 21.4.6 40.3 0 53.3C.1 408 136.3 504 256.9 504 377.5 504 512 408 512 257.3c-.6-12.8-.2-33 0-53.2 0-6.7-5.3-12.1-12-12.1H348.1z" + } + } + }, + "mailchimp": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f59e", + "label": "Mailchimp", + "svg": { + "brands": { + "last_modified": 1529520111564, + "raw": "", + "viewBox": [ + "0", + "0", + "428.07", + "512" + ], + "width": 428, + "height": 512, + "path": "M426.56 323.72c-3.09-6.59-8.97-11.13-16.35-12.88-2.47-11.27-5.88-16.8-6.19-17.63 1.3-1.48 2.56-2.97 2.84-3.32 10.42-12.93 3.62-31.86-14.19-36.33-10.02-9.64-19.09-14.17-26.54-17.9-7.14-3.57-4.29-2.17-10.99-5.19-1.78-8.71-2.37-28.97-5.2-43.19-2.54-12.79-7.66-22.06-15.56-28.15-3.16-6.84-7.59-13.74-12.93-18.81 24.84-38.08 31.38-75.69 13.19-95.39-8.1-8.77-20.13-12.93-34.52-12.93-20.26 0-45.18 8.26-70.34 23.54 0 0-16.38-13.18-16.73-13.46-70.08-55.19-268.28 188.7-198.32 242l18.06 13.8c-11.34 31.54 4.43 69.14 37.29 81.21 7.26 2.67 15.14 3.97 23.31 3.51 0 0 53.09 97.36 165.1 97.39 129.58.04 162.55-126.72 162.9-127.86 0 .01 10.5-15.51 5.17-28.41zM20.12 267.95c-14.2-23.96 10.51-73.19 28.09-101.17C91.66 97.63 163.98 43.06 196.82 50.85l9.03-3.46c.03.03 24.67 20.85 24.7 20.87 16.97-10.19 38.58-20.57 58.8-22.64-12.3 2.77-27.29 9.15-45.05 20.01-.43.25-42.02 28.32-67.43 53.52-13.85 13.73-69.45 80.41-69.4 80.35 10.16-19.23 16.86-28.67 32.94-48.9 9.1-11.44 18.81-22.57 28.74-32.84 4.61-4.77 9.28-9.36 13.95-13.71 3.21-2.99 6.44-5.87 9.65-8.62 1.48-1.27 2.96-2.5 4.43-3.71l.01-.01L164.6 64.8l1.72 12.06 23.69 20.87s-20.96 14.11-31.39 23.01c-41.79 35.66-82.8 90.4-98.06 143.69l.73-.03c-7.6 4.19-15.14 10.91-21.73 20.05-.16-.04-17.04-12.43-19.44-16.5zm69.11 100.09c-25.03 0-45.33-21.37-45.33-47.72 0-26.36 20.29-47.72 45.33-47.72 6.49 0 12.66 1.44 18.24 4.02 0 0 9.63 4.86 12.34 27.81 2.82-7.17 4.24-13.06 4.24-13.06 3.23 9.88 4.88 20.26 4.23 30.76 2.68-3.56 5.55-10.27 5.55-10.27 5 29.33-16.4 56.18-44.6 56.18zm55.8-168.53s19.49-37.06 62.33-61.57c-3.19-.51-10.99.48-12.36.64 7.78-6.69 22.24-11.16 32.23-13.19-2.92-1.86-9.89-2.33-13.34-2.42-1.02-.03-1.01-.02-2.22.03 9.4-5.25 26.82-8.34 42.65-5.55-1.99-2.64-6.5-4.57-9.67-5.51-.28-.08-1.52-.39-1.52-.39l1.19-.28c9.54-1.84 20.69.15 29.5 3.69-1-2.32-3.45-5.03-5.29-6.74-.19-.18-1.29-.97-1.29-.97 9.22 1.91 18.06 5.94 24.71 10.5-.9-1.75-3.14-4.69-4.69-6.29 8.81 2.52 18.71 8.81 22.95 17.82.1.2.37.94.4 1.03-16.7-12.84-65.44-9.2-114.24 22.42-22.33 14.48-38.71 30.32-51.34 46.78zm263.32 146.34c-.59 1.15-6.73 34.4-41.86 62.01-44.37 34.86-102.66 31.33-124.67 11.8-11.76-11-16.85-26.73-16.85-26.73s-1.33 8.87-1.56 12.35c-8.87-15.09-8.12-33.52-8.12-33.52s-4.73 8.83-6.9 13.77c-6.53-16.62-3.16-33.78-3.16-33.78l-5.16 7.7s-2.42-18.81 3.52-34.47c6.36-16.74 18.68-28.9 21.11-30.42-9.35-2.97-20.12-11.49-20.14-11.51 0 0 4.28.28 7.26-.4 0 0-18.9-13.54-22.22-34.26 2.74 3.38 8.49 7.21 8.49 7.21-1.86-5.42-2.99-17.49-1.25-29.36l.01-.01c3.58-22.68 22.27-37.45 43.44-37.27 22.54.2 37.65 4.93 56.55-12.5 4-3.69 7.19-6.87 12.81-8.11.59-.13 2.06-.75 5.07-.75 3.05 0 5.98.69 8.67 2.29 10.25 6.1 12.46 22.01 13.56 33.68 4.07 43.28 2.43 35.57 19.94 44.49 8.36 4.25 17.74 8.29 28.43 19.72.03.03.08.09.08.09h.13c9.01.22 13.65 7.31 9.5 12.47-30.23 36.1-72.46 53.39-119.51 54.84-1.94.05-6.32.15-6.34.15-19.01.58-25.19 25.16-13.27 39.95 7.54 9.35 22.03 12.42 33.97 12.46l.17-.06c51.45 1.04 103.14-35.37 112.07-55.44.06-.15.61-1.42.61-1.42-2.07 2.43-52.18 49.61-113.08 47.9 0 0-6.66-.14-12.93-1.6-8.27-1.92-14.55-5.56-16.95-13.8 5.05 1.01 11.45 1.66 18.87 1.66 43.96 0 75.63-19.98 72.33-20.25-.13 0-.26.03-.48.08-5.13 1.19-57.97 21.66-91.37 11.16.08-1.02.24-2.01.48-2.9 2.97-9.95 8.25-8.56 16.79-8.93 30.48-1.01 55.07-8.68 73.5-17.43 19.65-9.33 34.63-21.35 40.03-27.42 7 11.79 6.96 26.92 6.96 26.92s2.74-.96 6.38-.96c11.38.01 13.73 10.23 5.09 20.6zm-149.29 13.7c0-.05-.01-.1-.01-.15.01.05.01.1.01.15zm-.01-.21c-.01-.13-.01-.26-.02-.39-.02-.65-.03-1.33 0-2.02-.02.74-.02 1.42 0 2.02.01.13.01.27.02.39zm.12 1.46c0 .02 0 .04.01.06 0-.02 0-.04-.01-.06zm.02.12c.2 1.58.51 2.31.55 2.4-.23-.49-.42-1.34-.55-2.4zM193.96 59.68l2.87-8.83 4.88 17.72-6.03-1.95-1.72-6.94zm22.38 17.72l-3.62-12.59 9.97 8.36c-2.24 1.44-4.36 2.86-6.35 4.23zm42.71 281.94c-.01-.13-.01-.26-.02-.39.01.13.01.27.02.39zm-.01-.39c-.02-.65-.03-1.33 0-2.02-.03.75-.03 1.42 0 2.02zm.02.6c0-.05-.01-.1-.01-.15m.13 1.46c0-.02 0-.04-.01-.06m.02.12c.2 1.58.51 2.31.55 2.4-.23-.49-.42-1.34-.55-2.4zm52.1-138.61c-.07-3.36.47-8.92 3.63-9.95h.01c5.41-1.88 12.58 11.98 12.91 24.28-4.28-2.14-9.3-3.05-14.47-2.6-1.3-3.97-1.92-7.7-2.08-11.73zM205.38 85.27l-13.59-11.38 20.57 6.28c-2.65 1.88-5 3.6-6.98 5.1zm27.7 166.94c-3.41 1.3-5.83 2.31-7 2.14-1.89-.28-.06-3.75 4.08-7.11 8.33-6.64 19.76-8.7 29.53-5.07 4.28 1.57 9.08 4.72 11.6 8.39.95 1.39 1.21 2.44.82 2.88-.77.9-3.51-.31-7.55-1.89-10.35-3.86-17.98-4.45-31.48.66zm14.55 14.53c-2.31.94-3.81 1.66-4.42 1.17-.62-.48-.01-2.42 2.15-4.51 1.88-1.81 3.83-2.83 6.07-3.77.35-.15.72-.28 1.1-.38 1.04-.28 2.09-.63 3.23-.8 9.12-1.55 15.8 3.51 14.93 4.98-.39.69-2.08.53-4.6.36-5.23-.36-10.71-.27-18.46 2.95zM60.86 323.12zm24.3-25.78c-1.85.39-.81.17-2.64.68a7 7 0 0 0-.77.25c-.58.27-1.11.45-1.62.73-.43.24-4.07 1.86-7.03 5.48-3.99 4.95-5.44 11.43-5.19 17.67.24 6.06 2.02 9.41 2.35 10.23 1.38 2.96-1.85 3.57-4.79.39l-.01-.01c-2.35-2.49-3.86-6.29-4.6-9.66-2.98-13.95 3.24-27.97 17.61-33.57.8-.32 1.74-.51 2.5-.73h-.01c1.47-.44 6.72-1.5 12.07-.67 5.87.91 11.04 3.85 14.33 7.67l.01.01c2.53 2.87 4.43 6.92 4.09 10.53v.01c-.13 1.5-.79 3.65-2.14 4.21-.5.21-1.01.1-1.36-.25-.98-.96-.22-2.93-2.6-6.3-3.17-4.47-10.31-8.76-20.2-6.67zm30.28 31.17c1.88 10.82-6 20.5-15.52 20.7-6.67.15-10.31-4.02-9.66-4.93.3-.43 1.32-.24 2.88-.01 8.5 1.32 13.66-3.86 14.9-9.29.02-.09.35-1.54.34-2.54.07-.88-.03-1.76-.16-2.56-1-5.62-7.45-6.68-11.6-11.15-3.72-4.04-2.99-9.22-.65-11.71 2.81-2.77 6.83-1.76 6.78-.78 0 .52-.97.91-2.17 1.74-1.56 1.1-1.77 2.16-1.37 3.98.26 1 .71 1.65 1.68 2.42 3.48 2.76 12.85 4.7 14.55 14.13zm212.87-81.47c2.58.4 4.22 3.59 3.67 7.13-.55 3.54-3.09 6.08-5.67 5.67-2.58-.4-4.22-3.59-3.67-7.13.56-3.53 3.09-6.07 5.67-5.67zm-28.33 10.31c1.42-2.59 5.44-3.11 8.99-1.16 3.55 1.94 5.27 5.62 3.86 8.2-1.42 2.59-5.44 3.11-8.99 1.16-3.55-1.94-5.28-5.61-3.86-8.2z" + } + } + }, + "male": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "human", + "man", + "person", + "profile", + "user" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f183", + "label": "Male", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "192", + "512" + ], + "width": 192, + "height": 512, + "path": "M96 0c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64S60.654 0 96 0m48 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H48c-26.51 0-48 21.49-48 48v136c0 13.255 10.745 24 24 24h16v136c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V352h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48z" + } + } + }, + "mandalorian": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f50f", + "label": "Mandalorian", + "svg": { + "brands": { + "last_modified": 1525376442521, + "raw": "", + "viewBox": [ + "0", + "0", + "390.88", + "512" + ], + "width": 390, + "height": 512, + "path": "M203.28 511.89c-.98-3.26-1.69-15.83-1.39-24.58.55-15.89.98-24.72 1.4-28.76.64-6.2 2.87-20.72 3.28-21.38.6-.96.4-27.87-.24-33.13-.31-2.58-.63-11.9-.69-20.73-.13-16.47-.53-20.12-2.73-24.76-1.1-2.32-1.23-3.84-.99-11.43.16-4.81 0-10.53-.34-12.71-2.05-12.97-3.46-27.7-3.25-33.9.21-6.12.43-7.15 2.06-9.67 3.05-4.71 6.51-14.04 8.62-23.27 2.26-9.86 3.88-17.18 4.59-20.74.89-4.42 2.43-9.72 4.36-15.05 2.27-6.25 2.49-15.39.37-15.39-.3 0-1.38 1.22-2.41 2.71-1.03 1.49-4.76 4.8-8.29 7.36-8.37 6.08-11.7 9.39-12.66 12.58-.93 3.11-1.02 7.23-.16 7.76.34.21 1.29 2.4 2.11 4.88 1.62 4.88 1.87 10.12.72 15.36-.39 1.77-1.05 5.47-1.46 8.23-.41 2.76-.98 6.46-1.25 8.22-.28 1.76-.97 3.68-1.55 4.26-.96.96-1.14.91-2.05-.53-.55-.87-1.2-3.01-1.44-4.75-.25-1.74-1.63-7.11-3.08-11.93-3.28-10.9-3.52-16.15-.96-20.96.92-1.73 1.67-3.81 1.67-4.61 0-2.39-2.2-5.32-7.41-9.89-7.05-6.18-8.63-7.92-10.23-11.3-1.71-3.6-3.06-4.06-4.54-1.54-1.78 3.01-2.6 9.11-2.97 22.02l-.35 12.13 1.95 2.25c3.21 3.7 12.07 16.45 13.78 19.83 3.41 6.74 4.34 11.69 4.41 23.56.07 11.84.95 22.75 2 24.71.36.66.51 1.35.34 1.52-.17.17.41 2.09 1.29 4.27.88 2.18 1.81 6.22 2.06 8.98.25 2.76 1.02 7.43 1.71 10.37 2.23 9.56 2.77 14.08 2.39 20.14-.2 3.27-.53 11.07-.73 17.32-1.31 41.76-1.85 57.98-2.04 61.21-.12 2.02-.39 11.51-.6 21.07-.36 16.3-1.3 27.37-2.42 28.65-.64.73-8.07-4.91-12.52-9.49-3.75-3.87-4.02-4.79-2.83-9.95.7-3.01 2.26-18.29 3.33-32.62.36-4.78.81-10.5 1.01-12.71.83-9.37 1.66-20.35 2.61-34.78.56-8.46 1.33-16.44 1.72-17.73.38-1.29.89-9.89 1.13-19.11l.43-16.77-2.26-4.3c-1.72-3.28-4.87-6.94-13.22-15.34-6.03-6.07-11.84-12.3-12.91-13.85l-1.95-2.81.75-10.9c1.09-15.71 1.1-48.57.02-59.06l-.89-8.7-3.28-4.52c-5.86-8.08-5.8-7.75-6.22-33.27-.1-6.07-.38-11.5-.63-12.06-.83-1.87-3.05-2.66-8.54-3.05-8.86-.62-10.96-1.9-23.85-14.55-6.15-6.04-12.34-11.97-13.75-13.19-2.81-2.42-2.79-1.99-.56-9.63l1.35-4.65-1.69-3.04c-.93-1.67-2.09-3.51-2.59-4.07-1.33-1.51-5.5-10.89-5.99-13.49-.31-1.66-.09-2.67.87-3.9 2.23-2.86 3.4-5.68 4.45-10.73 2.33-11.19 7.74-26.09 10.6-29.22 3.18-3.47 7.7-1.05 9.41 5.03 1.34 4.79 1.37 9.79.1 18.55-.53 3.68-.98 8.68-.99 11.11-.02 4.01.19 4.69 2.25 7.39 3.33 4.37 7.73 7.41 15.2 10.52 1.7.71 3.82 1.99 4.72 2.85 11.17 10.72 18.62 16.18 22.95 16.85 5.18.8 7.98 4.54 10.04 13.39 1.31 5.65 4 11.14 5.46 11.14.59 0 2.09-.63 3.33-1.39 1.98-1.22 2.25-1.73 2.25-4.18-.01-3.71-1.17-14.08-2-17.84-.37-1.66-.78-4.06-.93-5.35-.14-1.29-.61-3.85-1.03-5.69-2.55-11.16-3.65-15.46-4.1-16.05-1.55-2.02-4.08-10.2-4.93-15.92-1.64-11.11-3.96-14.23-12.91-17.39-4.64-1.64-8.89-4.12-13.32-7.78-1.15-.95-4.01-3.22-6.35-5.06-2.35-1.83-4.41-3.53-4.6-3.76-.18-.23-1.39-1.14-2.69-2.02-6.24-4.22-8.84-6.98-11.26-11.96l-2.44-5.02-.22-12.98-.22-12.98 6.91-6.55c3.95-3.75 8.48-7.35 10.59-8.43 3.31-1.69 4.45-1.89 11.37-2.05 8.53-.19 10.12.02 11.66 1.56 1.53 1.53 1.36 6.4-.29 8.5-.74.94-1.34 1.98-1.34 2.32 0 .58-2.61 4.91-5.42 8.99-.68.99-2.13 5.35-2.37 6.82 20.44 13.39 21.55 3.77 14.07 28.98l11.4 2.54c3.11-8.66 6.47-17.26 8.61-26.22.29-7.63-11.98-4.19-15.4-8.68-2.33-5.93 3.13-14.18 6.06-19.2 1.6-2.34 6.62-4.7 8.82-4.15.88.22 4.16-.35 7.37-1.28 3.18-.92 6.58-1.68 7.55-1.68.97 0 3.66-.58 5.98-1.29 3.65-1.11 4.5-1.17 6.35-.4 1.17.48 3.79 1.09 5.82 1.36 2.02.26 4.72 1.12 6 1.91 1.28.79 3.53 1.77 5.02 2.17 2.51.68 3 .57 7.05-1.67l4.35-2.4 10.7-.41c10.44-.4 10.81-.47 15.26-2.68l4.58-2.3 2.46 1.43c1.76 1.02 3.14 2.73 4.85 5.98 2.36 4.51 2.38 4.58 1.37 7.37-.88 2.44-.89 3.3-.1 6.39.5 1.96 1.45 4.62 2.1 5.91.65 1.29 1.24 3.09 1.31 4.01.31 4.33-.03 5.3-2.41 6.92-2.17 1.47-6.98 7.91-6.98 9.34 0 .32-.48 1.69-1.07 3.03-5.04 11.51-6.76 13.56-14.26 16.98-9.2 4.2-12.3 5.19-16.21 5.19-3.1 0-4 .25-4.54 1.26-.37.69-2.21 2.37-4.09 3.71-2.04 1.47-3.8 3.38-4.38 4.78-.54 1.28-1.66 2.59-2.49 2.91-.83.32-1.94 1.08-2.45 1.71-.52.62-3.66 3.04-7 5.38-3.33 2.34-6.87 5.02-7.87 5.96-1 .94-2.07 1.71-2.39 1.71s-1.28.74-2.13 1.65c-1.31 1.39-1.49 2.11-1.14 4.6.22 1.63.86 4.27 1.42 5.88 1.32 3.8 1.31 7.86-.05 10.57-1.43 2.86-.89 6.65 1.35 9.59 2.01 2.63 2.16 4.56.71 8.84-.61 1.8-1.05 5.45-1.06 8.91-.02 4.88.22 6.28 1.46 8.38 1.2 2.04 1.82 2.48 3.24 2.32 1.98-.23 2.3-1.05 4.71-12.12 2.18-10.03 3.71-11.92 13.76-17.08 2.94-1.51 7.46-3.96 10.03-5.44 2.58-1.48 6.79-3.69 9.37-4.91 6.67-3.16 11.05-6.52 15.22-11.67 7.11-8.79 9.98-16.22 12.85-33.3.55-3.28 1.43-5.65 2.86-7.73 1.29-1.87 2.37-4.62 2.89-7.31 1.02-5.3 2.85-9.08 5.58-11.51 4.7-4.18 6-1.09 4.59 10.87-.46 3.86-1.1 10.33-1.44 14.38l-.61 7.36 4.45 4.09 4.45 4.09.11 8.42c.06 4.63.47 9.53.92 10.89l.82 2.47-6.43 6.28c-8.54 8.33-12.88 13.93-16.76 21.61-1.77 3.49-3.74 7.11-4.38 8.03-2.18 3.11-6.46 13.01-8.76 20.26l-2.29 7.22-6.97 6.49c-3.83 3.57-7.96 7.25-9.17 8.17-3.05 2.32-4.26 5.15-4.26 9.99 0 2.98.43 4.96 1.59 7.26.87 1.74 1.81 3.91 2.09 4.83.28.92.98 2.22 1.57 2.89 1.4 1.59 1.92 16.12.83 23.22-.68 4.48-3.63 12.02-4.7 12.02-1.79 0-4.06 9.27-5.07 20.74-.18 2.02-.62 5.94-.98 8.7-.36 2.76-.96 9.98-1.35 16.05-.77 12.22-.19 18.77 2.05 23.15 3.41 6.69.52 12.69-11.03 22.84l-3.97 3.49.07 5.19c.04 2.86.55 6.85 1.14 8.87 4.61 15.98 4.73 16.92 4.38 37.13-.46 26.4-.26 40.27.63 44.15.42 1.84.91 5 1.08 7.02.17 2.02.66 5.33 1.08 7.36.47 2.26.78 11.02.79 22.74l.02 19.06-1.81 2.63c-2.71 3.91-15.11 13.54-15.49 12.29zm29.53-45.11c-.18-.3-.33-6.87-.33-14.59 0-14.06-.89-27.54-2.26-34.45-.4-2.02-.81-9.7-.9-17.06-.15-11.93-1.4-24.37-2.64-26.38-.66-1.07-3.02-17.66-3.03-21.3-.01-4.23 1.02-6 5.28-9.13 4.14-3.04 4.86-3.14 5.48-.72.28 1.1 1.45 5.62 2.6 10.03 3.93 15.12 4.14 16.27 4.05 21.74-.1 5.78-.13 6.13-1.74 17.73-.98 7.07-1.17 12.39-1.04 28.43.17 19.4-.64 35.73-2.04 41.27-.71 2.78-2.8 5.48-3.43 4.43zm-70.99-37.58c-.24-.38-1.01-5.24-1.73-10.79-.72-5.56-1.49-10.41-1.73-10.79-.23-.38-.68-3.3-.99-6.49-.31-3.19-.91-7.46-1.33-9.48-.99-4.79-3.35-19.35-3.42-21.07-.03-.74-.34-4.05-.7-7.36-.67-6.21-.84-27.67-.22-28.29.96-.96 6.63 2.76 11.33 7.43l5.28 5.25-.45 6.47c-.25 3.56-.6 10.23-.78 14.83-.18 4.6-.49 9.87-.67 11.71-.18 1.84-.61 9.36-.94 16.72-.79 17.41-1.94 31.29-2.65 32-.32.3-.76.24-1-.14zM74.63 162.61c21.07 12.79 17.84 14.15 28.49 17.66 13.01 4.29 18.87 7.13 23.15 16.87-43.66 36.14-69.01 57.9-76.71 70.82-31.02 52.01-5.99 101.59 62.75 87.21-14.18 29.23-77.97 28.63-98.68-4.9-24.68-39.95-22.09-118.3 61-187.66zm210.79 179.02c56.66 6.88 82.32-37.74 46.54-89.23 0 0-26.87-29.34-64.28-67.96 2.98-15.45 9.49-32.12 30.57-53.82 89.2 63.51 92 141.61 92.46 149.36 4.27 70.58-78.66 91.12-105.29 61.65z" + } + } + }, + "map": { + "changes": [ + "4.4", + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "coordinates", + "location", + "paper", + "place", + "travel" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f279", + "label": "Map", + "svg": { + "solid": { + "last_modified": 1529520111686, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M0 117.66v346.32c0 11.32 11.43 19.06 21.94 14.86L160 416V32L20.12 87.95A32.006 32.006 0 0 0 0 117.66zM192 416l192 64V96L192 32v384zM554.06 33.16L416 96v384l139.88-55.95A31.996 31.996 0 0 0 576 394.34V48.02c0-11.32-11.43-19.06-21.94-14.86z" + }, + "regular": { + "last_modified": 1529520111627, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M560.02 32c-1.96 0-3.98.37-5.96 1.16L384.01 96H384L212 35.28A64.252 64.252 0 0 0 191.76 32c-6.69 0-13.37 1.05-19.81 3.14L20.12 87.95A32.006 32.006 0 0 0 0 117.66v346.32C0 473.17 7.53 480 15.99 480c1.96 0 3.97-.37 5.96-1.16L192 416l172 60.71a63.98 63.98 0 0 0 40.05.15l151.83-52.81A31.996 31.996 0 0 0 576 394.34V48.02c0-9.19-7.53-16.02-15.98-16.02zM224 90.42l128 45.19v285.97l-128-45.19V90.42zM48 418.05V129.07l128-44.53v286.2l-.64.23L48 418.05zm480-35.13l-128 44.53V141.26l.64-.24L528 93.95v288.97z" + } + } + }, + "map-marked": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel", + "where" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f59f", + "label": "Map Marked", + "svg": { + "solid": { + "last_modified": 1529520111686, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z" + } + } + }, + "map-marked-alt": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel", + "where" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5a0", + "label": "Map Marked-alt", + "svg": { + "solid": { + "last_modified": 1529520111685, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zm0 168c-23.2 0-42-18.8-42-42s18.8-42 42-42 42 18.8 42 42-18.8 42-42 42zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z" + } + } + }, + "map-marker": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "gps", + "localize", + "location", + "map", + "pin", + "place", + "position", + "travel", + "where" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f041", + "label": "map-marker", + "svg": { + "solid": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0z" + } + } + }, + "map-marker-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "gps", + "localize", + "location", + "map", + "pin", + "place", + "position", + "travel", + "where" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3c5", + "label": "Alternate Map Marker", + "svg": { + "solid": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z" + } + } + }, + "map-pin": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "gps", + "localize", + "location", + "map", + "marker", + "place", + "position", + "travel", + "where" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f276", + "label": "Map Pin", + "svg": { + "solid": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M192 300.813v172.82l-22.015 33.023c-4.75 7.125-15.219 7.125-19.969 0L128 473.633v-172.82a162.221 162.221 0 0 0 64 0zM160 0c79.529 0 144 64.471 144 144s-64.471 144-144 144S16 223.529 16 144 80.471 0 160 0M80 136c0-39.701 32.299-72 72-72a8 8 0 0 0 0-16c-48.523 0-88 39.477-88 88a8 8 0 0 0 16 0z" + } + } + }, + "map-signs": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f277", + "label": "Map Signs", + "svg": { + "solid": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M487.515 104.485L439.03 152.97a23.998 23.998 0 0 1-16.97 7.029H56c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h160v-8c0-13.255 10.745-24 24-24h32c13.255 0 24 10.745 24 24v8h126.059a24 24 0 0 1 16.97 7.029l48.485 48.485c4.687 4.687 4.687 12.285.001 16.971zM216 368v120c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V368h-80zm240-144H296v-48h-80v48H89.941a24 24 0 0 0-16.97 7.029l-48.485 48.485c-4.686 4.686-4.686 12.284 0 16.971l48.485 48.485a23.998 23.998 0 0 0 16.97 7.029H456c13.255 0 24-10.745 24-24v-80C480 234.745 469.255 224 456 224z" + } + } + }, + "marker": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "sharpie", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5a1", + "label": "Marker", + "svg": { + "solid": { + "last_modified": 1529520111687, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l75.4-75.4-128.02-128.02-75.4 75.4zM485.49 26.51c-35.35-35.35-92.67-35.35-128.02 0l-21.76 21.76-36.56-36.55c-15.62-15.62-40.95-15.62-56.56 0L138.47 115.84c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0l87.15-87.15 19.59 19.59L191.98 192 320 320.02l165.49-165.49c35.35-35.35 35.35-92.66 0-128.02z" + } + } + }, + "mars": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "male" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f222", + "label": "Mars", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c0-6.6-5.4-12-12-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" + } + } + }, + "mars-double": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f227", + "label": "Mars Double", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M340 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C198.5 72.1 172.2 64 144 64 64.5 64 0 128.5 0 208s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.5 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 288c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80zm356-128.1h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7c-18.2-11.4-39-18.9-61.5-21.3-2.1 21.8-8.2 43.3-18.4 63.3 1.1 0 2.2-.1 3.2-.1 44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80c0-1.1 0-2.2.1-3.2-20 10.2-41.5 16.4-63.3 18.4C168.4 455.6 229.6 512 304 512c79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12v-79c0-6.7-5.4-12.1-12-12.1z" + } + } + }, + "mars-stroke": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f229", + "label": "Mars Stroke", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-17.5 17.5-14.1-14.1c-4.7-4.7-12.3-4.7-17 0L224.5 133c-4.7 4.7-4.7 12.3 0 17l14.1 14.1-18 18c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l18-18 14.1 14.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L329.2 164l17.5-17.5 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c-.1-6.6-5.5-12-12.1-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" + } + } + }, + "mars-stroke-h": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f22b", + "label": "Mars Stroke Horizontal", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "480", + "512" + ], + "width": 480, + "height": 512, + "path": "M476.2 247.5l-55.9-55.9c-7.6-7.6-20.5-2.2-20.5 8.5V224H376v-20c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v20h-27.6c-5.8-25.6-18.7-49.9-38.6-69.8C189.6 98 98.4 98 42.2 154.2c-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 19.9-19.9 32.8-44.2 38.6-69.8H312v20c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-20h23.9v23.9c0 10.7 12.9 16 20.5 8.5l55.9-55.9c4.6-4.7 4.6-12.3-.1-17zm-275.6 65.1c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z" + } + } + }, + "mars-stroke-v": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f22a", + "label": "Mars Stroke Vertical", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "288", + "512" + ], + "width": 288, + "height": 512, + "path": "M245.8 234.2c-19.9-19.9-44.2-32.8-69.8-38.6v-25.4h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V81.4h23.9c10.7 0 16-12.9 8.5-20.5L152.5 5.1c-4.7-4.7-12.3-4.7-17 0L79.6 61c-7.6 7.6-2.2 20.5 8.5 20.5H112v24.7H92c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h20v25.4c-25.6 5.8-49.9 18.7-69.8 38.6-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 56.3-56.2 56.3-147.4 0-203.6zm-45.2 158.4c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z" + } + } + }, + "mastodon": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f6", + "label": "Mastodon", + "svg": { + "brands": { + "last_modified": 1525209365020, + "raw": "", + "viewBox": [ + "0", + "0", + "417.8", + "512" + ], + "width": 417, + "height": 512, + "path": "M417.8 179.1c0-97.2-63.7-125.7-63.7-125.7-62.5-28.7-228.5-28.4-290.4 0 0 0-63.7 28.5-63.7 125.7 0 115.7-6.6 259.4 105.6 289.1 40.5 10.7 75.3 13 103.3 11.4 50.8-2.8 79.3-18.1 79.3-18.1l-1.7-36.9s-36.3 11.4-77.1 10.1c-40.4-1.4-83-4.4-89.6-54-.6-4.4-.9-9-.9-13.9 85.6 20.9 158.6 9.1 178.7 6.7 56.1-6.7 105-41.3 111.2-72.9 9.8-49.8 9-121.5 9-121.5zm-75.1 125.2h-46.6V190.1c0-49.7-64-51.6-64 6.9v62.5h-46.3V197c0-58.5-64-56.6-64-6.9v114.2H75.1c0-122.1-5.2-147.9 18.4-175 25.9-28.9 79.8-30.8 103.8 6.1l11.6 19.5 11.6-19.5c24.1-37.1 78.1-34.8 103.8-6.1 23.7 27.3 18.4 53 18.4 175z" + } + } + }, + "maxcdn": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f136", + "label": "MaxCDN", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M461.1 442.7h-97.4L415.6 200c2.3-10.2.9-19.5-4.4-25.7-5-6.1-13.7-9.6-24.2-9.6h-49.3l-59.5 278h-97.4l59.5-278h-83.4l-59.5 278H0l59.5-278-44.6-95.4H387c39.4 0 75.3 16.3 98.3 44.9 23.3 28.6 31.8 67.4 23.6 105.9l-47.8 222.6z" + } + } + }, + "medal": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f5a2", + "label": "Medal", + "svg": { + "solid": { + "last_modified": 1529520111687, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M223.75 130.75L154.62 15.54A31.997 31.997 0 0 0 127.18 0H16.03C3.08 0-4.5 14.57 2.92 25.18l111.27 158.96c29.72-27.77 67.52-46.83 109.56-53.39zM495.97 0H384.82c-11.24 0-21.66 5.9-27.44 15.54l-69.13 115.21c42.04 6.56 79.84 25.62 109.56 53.38L509.08 25.18C516.5 14.57 508.92 0 495.97 0zM256 160c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm92.52 157.26l-37.93 36.96 8.97 52.22c1.6 9.36-8.26 16.51-16.65 12.09L256 393.88l-46.9 24.65c-8.4 4.45-18.25-2.74-16.65-12.09l8.97-52.22-37.93-36.96c-6.82-6.64-3.05-18.23 6.35-19.59l52.43-7.64 23.43-47.52c2.11-4.28 6.19-6.39 10.28-6.39 4.11 0 8.22 2.14 10.33 6.39l23.43 47.52 52.43 7.64c9.4 1.36 13.17 12.95 6.35 19.59z" + } + } + }, + "medapps": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3c6", + "label": "MedApps", + "svg": { + "brands": { + "last_modified": 1521653821386, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M118.3 238.4c3.5-12.5 6.9-33.6 13.2-33.6 8.3 1.8 9.6 23.4 18.6 36.6 4.6-23.5 5.3-85.1 14.1-86.7 9-.7 19.7 66.5 22 77.5 9.9 4.1 48.9 6.6 48.9 6.6 1.9 7.3-24 7.6-40 7.8-4.6 14.8-5.4 27.7-11.4 28-4.7.2-8.2-28.8-17.5-49.6l-9.4 65.5c-4.4 13-15.5-22.5-21.9-39.3-3.3-.1-62.4-1.6-47.6-7.8l31-5zM228 448c21.2 0 21.2-32 0-32H92c-21.2 0-21.2 32 0 32h136zm-24 64c21.2 0 21.2-32 0-32h-88c-21.2 0-21.2 32 0 32h88zm34.2-141.5c3.2-18.9 5.2-36.4 11.9-48.8 7.9-14.7 16.1-28.1 24-41 24.6-40.4 45.9-75.2 45.9-125.5C320 69.6 248.2 0 160 0S0 69.6 0 155.2c0 50.2 21.3 85.1 45.9 125.5 7.9 12.9 16 26.3 24 41 6.7 12.5 8.7 29.8 11.9 48.9 3.5 21 36.1 15.7 32.6-5.1-3.6-21.7-5.6-40.7-15.3-58.6C66.5 246.5 33 211.3 33 155.2 33 87.3 90 32 160 32s127 55.3 127 123.2c0 56.1-33.5 91.3-66.1 151.6-9.7 18-11.7 37.4-15.3 58.6-3.4 20.6 29 26.4 32.6 5.1z" + } + } + }, + "medium": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f23a", + "label": "Medium", + "svg": { + "brands": { + "last_modified": 1521653821387, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm372.2 106.1l-24 23c-2.1 1.6-3.1 4.2-2.7 6.7v169.3c-.4 2.6.6 5.2 2.7 6.7l23.5 23v5.1h-118V367l24.3-23.6c2.4-2.4 2.4-3.1 2.4-6.7V199.8l-67.6 171.6h-9.1L125 199.8v115c-.7 4.8 1 9.7 4.4 13.2l31.6 38.3v5.1H71.2v-5.1l31.6-38.3c3.4-3.5 4.9-8.4 4.1-13.2v-133c.4-3.7-1-7.3-3.8-9.8L75 138.1V133h87.3l67.4 148L289 133.1h83.2v5z" + } + } + }, + "medium-m": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3c7", + "label": "Medium M", + "svg": { + "brands": { + "last_modified": 1521653821386, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M71.5 142.3c.6-5.9-1.7-11.8-6.1-15.8L20.3 72.1V64h140.2l108.4 237.7L364.2 64h133.7v8.1l-38.6 37c-3.3 2.5-5 6.7-4.3 10.8v272c-.7 4.1 1 8.3 4.3 10.8l37.7 37v8.1H307.3v-8.1l39.1-37.9c3.8-3.8 3.8-5 3.8-10.8V171.2L241.5 447.1h-14.7L100.4 171.2v184.9c-1.1 7.8 1.5 15.6 7 21.2l50.8 61.6v8.1h-144v-8L65 377.3c5.4-5.6 7.9-13.5 6.5-21.2V142.3z" + } + } + }, + "medkit": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "first aid", + "firstaid", + "health", + "help", + "support" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0fa", + "label": "medkit", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M96 480h320V128h-32V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v48H96v352zm96-384h128v32H192V96zm320 80v256c0 26.51-21.49 48-48 48h-16V128h16c26.51 0 48 21.49 48 48zM64 480H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v352zm288-208v32c0 8.837-7.163 16-16 16h-48v48c0 8.837-7.163 16-16 16h-32c-8.837 0-16-7.163-16-16v-48h-48c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h48v-48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v48h48c8.837 0 16 7.163 16 16z" + } + } + }, + "medrt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3c8", + "label": "MRT", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "544", + "512" + ], + "width": 544, + "height": 512, + "path": "M113.7 256c0 121.8 83.9 222.8 193.5 241.1-18.7 4.5-38.2 6.9-58.2 6.9C111.4 504 0 393 0 256S111.4 8 248.9 8c20.1 0 39.6 2.4 58.2 6.9C197.5 33.2 113.7 134.2 113.7 256m297.4 100.3c-77.7 55.4-179.6 47.5-240.4-14.6 5.5 14.1 12.7 27.7 21.7 40.5 61.6 88.2 182.4 109.3 269.7 47 87.3-62.3 108.1-184.3 46.5-272.6-9-12.9-19.3-24.3-30.5-34.2 37.4 78.8 10.7 178.5-67 233.9m-218.8-244c-1.4 1-2.7 2.1-4 3.1 64.3-17.8 135.9 4 178.9 60.5 35.7 47 42.9 106.6 24.4 158 56.7-56.2 67.6-142.1 22.3-201.8-50-65.5-149.1-74.4-221.6-19.8M296 224c-4.4 0-8-3.6-8-8v-40c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v40c0 4.4-3.6 8-8 8h-40c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h40c4.4 0 8 3.6 8 8v40c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-40c0-4.4 3.6-8 8-8h40c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-40z" + } + } + }, + "meetup": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2e0", + "label": "Meetup", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M99 414.3c1.1 5.7-2.3 11.1-8 12.3-5.4 1.1-10.9-2.3-12-8-1.1-5.4 2.3-11.1 7.7-12.3 5.4-1.2 11.1 2.3 12.3 8zm143.1 71.4c-6.3 4.6-8 13.4-3.7 20 4.6 6.6 13.4 8.3 20 3.7 6.3-4.6 8-13.4 3.4-20-4.2-6.5-13.1-8.3-19.7-3.7zm-86-462.3c6.3-1.4 10.3-7.7 8.9-14-1.1-6.6-7.4-10.6-13.7-9.1-6.3 1.4-10.3 7.7-9.1 14 1.4 6.6 7.6 10.6 13.9 9.1zM34.4 226.3c-10-6.9-23.7-4.3-30.6 6-6.9 10-4.3 24 5.7 30.9 10 7.1 23.7 4.6 30.6-5.7 6.9-10.4 4.3-24.1-5.7-31.2zm272-170.9c10.6-6.3 13.7-20 7.7-30.3-6.3-10.6-19.7-14-30-7.7s-13.7 20-7.4 30.6c6 10.3 19.4 13.7 29.7 7.4zm-191.1 58c7.7-5.4 9.4-16 4.3-23.7s-15.7-9.4-23.1-4.3c-7.7 5.4-9.4 16-4.3 23.7 5.1 7.8 15.6 9.5 23.1 4.3zm372.3 156c-7.4 1.7-12.3 9.1-10.6 16.9 1.4 7.4 8.9 12.3 16.3 10.6 7.4-1.4 12.3-8.9 10.6-16.6-1.5-7.4-8.9-12.3-16.3-10.9zm39.7-56.8c-1.1-5.7-6.6-9.1-12-8-5.7 1.1-9.1 6.9-8 12.6 1.1 5.4 6.6 9.1 12.3 8 5.4-1.5 9.1-6.9 7.7-12.6zM447 138.9c-8.6 6-10.6 17.7-4.9 26.3 5.7 8.6 17.4 10.6 26 4.9 8.3-6 10.3-17.7 4.6-26.3-5.7-8.7-17.4-10.9-25.7-4.9zm-6.3 139.4c26.3 43.1 15.1 100-26.3 129.1-17.4 12.3-37.1 17.7-56.9 17.1-12 47.1-69.4 64.6-105.1 32.6-1.1.9-2.6 1.7-3.7 2.9-39.1 27.1-92.3 17.4-119.4-22.3-9.7-14.3-14.6-30.6-15.1-46.9-65.4-10.9-90-94-41.1-139.7-28.3-46.9.6-107.4 53.4-114.9C151.6 70 234.1 38.6 290.1 82c67.4-22.3 136.3 29.4 130.9 101.1 41.1 12.6 52.8 66.9 19.7 95.2zm-70 74.3c-3.1-20.6-40.9-4.6-43.1-27.1-3.1-32 43.7-101.1 40-128-3.4-24-19.4-29.1-33.4-29.4-13.4-.3-16.9 2-21.4 4.6-2.9 1.7-6.6 4.9-11.7-.3-6.3-6-11.1-11.7-19.4-12.9-12.3-2-17.7 2-26.6 9.7-3.4 2.9-12 12.9-20 9.1-3.4-1.7-15.4-7.7-24-11.4-16.3-7.1-40 4.6-48.6 20-12.9 22.9-38 113.1-41.7 125.1-8.6 26.6 10.9 48.6 36.9 47.1 11.1-.6 18.3-4.6 25.4-17.4 4-7.4 41.7-107.7 44.6-112.6 2-3.4 8.9-8 14.6-5.1 5.7 3.1 6.9 9.4 6 15.1-1.1 9.7-28 70.9-28.9 77.7-3.4 22.9 26.9 26.6 38.6 4 3.7-7.1 45.7-92.6 49.4-98.3 4.3-6.3 7.4-8.3 11.7-8 3.1 0 8.3.9 7.1 10.9-1.4 9.4-35.1 72.3-38.9 87.7-4.6 20.6 6.6 41.4 24.9 50.6 11.4 5.7 62.5 15.7 58.5-11.1zm5.7 92.3c-10.3 7.4-12.9 22-5.7 32.6 7.1 10.6 21.4 13.1 32 6 10.6-7.4 13.1-22 6-32.6-7.4-10.6-21.7-13.5-32.3-6z" + } + } + }, + "megaport": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5a3", + "label": "Megaport", + "svg": { + "brands": { + "last_modified": 1529520111564, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111.04 8 0 119.04 0 256c0 136.97 111.04 248 248 248 136.96 0 248-111.03 248-248C496 119.04 384.96 8 248 8zm85.46 267.67l59.66 59.67v87.05l-26.07 19.23L341 422.39v-65.46l-33.44-33.44-33.44 33.44v65.46L248 441.62l-26.12-19.23v-65.46l-33.44-33.44L155 356.92v65.46l-26.07 19.23-26.06-19.23v-87.05l59.47-59.47V188l59.5-59.5V52.88l26.06-19.23 26.06 19.23v75.64l59.5 59.5m-85.56-11.86l33.44 33.44V276L248 309.33l-33.54-33.54v-66.2l33.44-33.43z" + } + } + }, + "meh": { + "changes": [ + "3.1", + "5.0.0", + "5.0.9", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "neutral", + "rating" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f11a", + "label": "Neutral Face", + "svg": { + "solid": { + "last_modified": 1529520111688, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm176 192H152c-21.2 0-21.2-32 0-32h192c21.2 0 21.2 32 0 32zm-16-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" + }, + "regular": { + "last_modified": 1522083406006, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm8 144H160c-13.2 0-24 10.8-24 24s10.8 24 24 24h176c13.2 0 24-10.8 24-24s-10.8-24-24-24z" + } + } + }, + "meh-blank": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "neutral", + "rating" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f5a4", + "label": "Face Without Mouth", + "svg": { + "solid": { + "last_modified": 1529520111688, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" + }, + "regular": { + "last_modified": 1529520111627, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" + } + } + }, + "meh-rolling-eyes": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "neutral", + "rating" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f5a5", + "label": "Face With Rolling Eyes", + "svg": { + "solid": { + "last_modified": 1529520111688, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 224c0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64s-64-28.7-64-64zm224 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-112c-35.3 0-64-28.7-64-64 0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64z" + }, + "regular": { + "last_modified": 1529520111627, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm88-304c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm0 112c-22.1 0-40-17.9-40-40 0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40zm-104-40c0-39.8-32.2-72-72-72s-72 32.2-72 72 32.2 72 72 72 72-32.2 72-72zm-112 0c0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40s-40-17.9-40-40zm192 128H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z" + } + } + }, + "memory": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "DIMM", + "RAM" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f538", + "label": "Memory", + "svg": { + "solid": { + "last_modified": 1525967154570, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M640 130.94V96c0-17.67-14.33-32-32-32H32C14.33 64 0 78.33 0 96v34.94c18.6 6.61 32 24.19 32 45.06s-13.4 38.45-32 45.06V320h640v-98.94c-18.6-6.61-32-24.19-32-45.06s13.4-38.45 32-45.06zM224 256h-64V128h64v128zm128 0h-64V128h64v128zm128 0h-64V128h64v128zM0 448h64v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h64v-96H0v96z" + } + } + }, + "mercury": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "transgender" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f223", + "label": "Mercury", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "288", + "512" + ], + "width": 288, + "height": 512, + "path": "M288 208c0-44.2-19.9-83.7-51.2-110.1 2.5-1.8 4.9-3.8 7.2-5.8 24.7-21.2 39.8-48.8 43.2-78.8.9-7.1-4.7-13.3-11.9-13.3h-40.5C229 0 224.1 4.1 223 9.8c-2.4 12.5-9.6 24.3-20.7 33.8C187 56.8 166.3 64 144 64s-43-7.2-58.4-20.4C74.5 34.1 67.4 22.3 64.9 9.8 63.8 4.1 58.9 0 53.2 0H12.7C5.5 0-.1 6.2.8 13.3 4.2 43.4 19.2 71 44 92.2c2.3 2 4.7 3.9 7.2 5.8C19.9 124.3 0 163.8 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z" + } + } + }, + "microchip": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cpu", + "processor" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2db", + "label": "Microchip", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M416 48v416c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h224c26.51 0 48 21.49 48 48zm96 58v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42V88h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zM30 376h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6z" + } + } + }, + "microphone": { + "changes": [ + "3.1", + "5.0.0", + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "record", + "sound", + "voice" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f130", + "label": "microphone", + "svg": { + "solid": { + "last_modified": 1525967154572, + "raw": "", + "viewBox": [ + "0", + "0", + "352", + "512" + ], + "width": 352, + "height": 512, + "path": "M176 352c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96zm160-160h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16z" + } + } + }, + "microphone-alt": { + "changes": [ + "5.0.0", + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "record", + "sound", + "voice" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3c9", + "label": "Alternate Microphone", + "svg": { + "solid": { + "last_modified": 1525967154571, + "raw": "", + "viewBox": [ + "0", + "0", + "352", + "512" + ], + "width": 352, + "height": 512, + "path": "M336 192h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16zM176 352c53.02 0 96-42.98 96-96h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96z" + } + } + }, + "microphone-alt-slash": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "disable", + "mute", + "record", + "sound", + "voice" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f539", + "label": "Alternate Microphone Slash", + "svg": { + "solid": { + "last_modified": 1525967154571, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M633.82 458.1L476.26 336.33C488.74 312.21 496 284.98 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67h-43.67l-41.4-32H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.78c11.71-1.62 23.1-4.28 33.96-8.08l-50.4-38.96c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z" + } + } + }, + "microphone-slash": { + "changes": [ + "3.1", + "5.0.0", + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "disable", + "mute", + "record", + "sound", + "voice" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f131", + "label": "Microphone Slash", + "svg": { + "solid": { + "last_modified": 1525967154571, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M633.82 458.1l-157.8-121.96C488.61 312.13 496 285.01 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67V96c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.77c11.66-1.6 22.85-4.54 33.67-8.31l-50.11-38.73c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z" + } + } + }, + "microsoft": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ca", + "label": "Microsoft", + "svg": { + "brands": { + "last_modified": 1504646588000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z" + } + } + }, + "minus": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "collapse", + "delete", + "hide", + "hide", + "minify", + "remove", + "trash" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f068", + "label": "minus", + "svg": { + "solid": { + "last_modified": 1525967154572, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" + } + } + }, + "minus-circle": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "hide", + "remove", + "trash" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f056", + "label": "Minus Circle", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM124 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H124z" + } + } + }, + "minus-square": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "collapse", + "delete", + "hide", + "hide", + "minify", + "remove", + "trash" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f146", + "label": "Minus Square", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H92z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M108 284c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h232c6.6 0 12 5.4 12 12v32c0 6.6-5.4 12-12 12H108zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" + } + } + }, + "mix": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3cb", + "label": "Mix", + "svg": { + "brands": { + "last_modified": 1515426581999, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 64v348.9c0 56.2 88 58.1 88 0V174.3c7.9-52.9 88-50.4 88 6.5v175.3c0 57.9 96 58 96 0V240c5.3-54.7 88-52.5 88 4.3v23.8c0 59.9 88 56.6 88 0V64H0z" + } + } + }, + "mixcloud": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f289", + "label": "Mixcloud", + "svg": { + "brands": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M424.43 219.729C416.124 134.727 344.135 68 256.919 68c-72.266 0-136.224 46.516-159.205 114.074-54.545 8.029-96.63 54.822-96.63 111.582 0 62.298 50.668 112.966 113.243 112.966h289.614c52.329 0 94.969-42.362 94.969-94.693 0-45.131-32.118-83.063-74.48-92.2zm-20.489 144.53H114.327c-39.04 0-70.881-31.564-70.881-70.604s31.841-70.604 70.881-70.604c18.827 0 36.548 7.475 49.838 20.766 19.963 19.963 50.133-10.227 30.18-30.18-14.675-14.398-32.672-24.365-52.053-29.349 19.935-44.3 64.79-73.926 114.628-73.926 69.496 0 125.979 56.483 125.979 125.702 0 13.568-2.215 26.857-6.369 39.594-8.943 27.517 32.133 38.939 40.147 13.29 2.769-8.306 4.984-16.889 6.369-25.472 19.381 7.476 33.502 26.303 33.502 48.453 0 28.795-23.535 52.33-52.607 52.33zm235.069-52.33c0 44.024-12.737 86.386-37.102 122.657-4.153 6.092-10.798 9.414-17.72 9.414-16.317 0-27.127-18.826-17.443-32.949 19.381-29.349 29.903-63.682 29.903-99.122s-10.521-69.773-29.903-98.845c-15.655-22.831 19.361-47.24 35.163-23.534 24.366 35.993 37.102 78.356 37.102 122.379zm-70.88 0c0 31.565-9.137 62.021-26.857 88.325-4.153 6.091-10.798 9.136-17.72 9.136-17.201 0-27.022-18.979-17.443-32.948 13.013-19.104 19.658-41.255 19.658-64.513 0-22.981-6.645-45.408-19.658-64.512-15.761-22.986 19.008-47.095 35.163-23.535 17.719 26.026 26.857 56.483 26.857 88.047z" + } + } + }, + "mizuni": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3cc", + "label": "Mizuni", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm-80 351.9c-31.4 10.6-58.8 27.3-80 48.2V136c0-22.1 17.9-40 40-40s40 17.9 40 40v223.9zm120-9.9c-12.9-2-26.2-3.1-39.8-3.1-13.8 0-27.2 1.1-40.2 3.1V136c0-22.1 17.9-40 40-40s40 17.9 40 40v214zm120 57.7c-21.2-20.8-48.6-37.4-80-48V136c0-22.1 17.9-40 40-40s40 17.9 40 40v271.7z" + } + } + }, + "mobile": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "call", + "cell phone", + "cellphone", + "device", + "iphone", + "number", + "screen", + "telephone", + "text" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f10b", + "label": "Mobile Phone", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" + } + } + }, + "mobile-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "call", + "cell phone", + "cellphone", + "device", + "iphone", + "number", + "screen", + "telephone", + "text" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3cd", + "label": "Alternate Mobile", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm112-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v312z" + } + } + }, + "modx": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f285", + "label": "MODX", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M356 241.8l36.7 23.7V480l-133-83.8L356 241.8zM440 75H226.3l-23 37.8 153.5 96.5L440 75zm-89 142.8L55.2 32v214.5l46 29L351 217.8zM97 294.2L8 437h213.7l125-200.5L97 294.2z" + } + } + }, + "monero": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d0", + "label": "Monero", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M352 384h108.4C417 455.9 338.1 504 248 504S79 455.9 35.6 384H144V256.2L248 361l104-105v128zM88 336V128l159.4 159.4L408 128v208h74.8c8.5-25.1 13.2-52 13.2-80C496 119 385 8 248 8S0 119 0 256c0 28 4.6 54.9 13.2 80H88z" + } + } + }, + "money-bill": { + "changes": [ + "2", + "5.0.0", + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cash", + "checkout", + "money", + "payment", + "price", + "purchase" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0d6", + "label": "Money Bill", + "svg": { + "solid": { + "last_modified": 1525967154573, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 176c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 48h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z" + } + } + }, + "money-bill-alt": { + "changes": [ + "5.0.0", + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cash", + "checkout", + "money", + "payment", + "price", + "purchase" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f3d1", + "label": "Alternate Money Bill", + "svg": { + "solid": { + "last_modified": 1525967154572, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M352 288h-16v-88c0-4.42-3.58-8-8-8h-13.58c-4.74 0-9.37 1.4-13.31 4.03l-15.33 10.22a7.994 7.994 0 0 0-2.22 11.09l8.88 13.31a7.994 7.994 0 0 0 11.09 2.22l.47-.31V288h-16c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8h64c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 192c-53.02 0-96-50.15-96-112 0-61.86 42.98-112 96-112s96 50.14 96 112c0 61.87-43 112-96 112zm272 32h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z" + }, + "regular": { + "last_modified": 1525967154554, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M320 144c-53.02 0-96 50.14-96 112 0 61.85 42.98 112 96 112 53 0 96-50.13 96-112 0-61.86-42.98-112-96-112zm40 168c0 4.42-3.58 8-8 8h-64c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h16v-55.44l-.47.31a7.992 7.992 0 0 1-11.09-2.22l-8.88-13.31a7.992 7.992 0 0 1 2.22-11.09l15.33-10.22a23.99 23.99 0 0 1 13.31-4.03H328c4.42 0 8 3.58 8 8v88h16c4.42 0 8 3.58 8 8v16zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zm-16 272c-35.35 0-64 28.65-64 64H112c0-35.35-28.65-64-64-64V176c35.35 0 64-28.65 64-64h416c0 35.35 28.65 64 64 64v160z" + } + } + }, + "money-bill-wave": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f53a", + "label": "Wavy Money Bill", + "svg": { + "solid": { + "last_modified": 1525967154573, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM48 132.22c20.12 5.04 41.12 7.57 62.72 8.93C104.84 170.54 79 192.69 48 192.69v-60.47zm0 285v-47.78c34.37 0 62.18 27.27 63.71 61.4-22.53-1.81-43.59-6.31-63.71-13.62zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 27.78c-17.52-4.39-35.71-6.85-54.32-8.44 5.87-26.08 27.5-45.88 54.32-49.28v57.72zm0-236.11c-30.89-3.91-54.86-29.7-55.81-61.55 19.54 2.17 38.09 6.23 55.81 12.66v48.89z" + } + } + }, + "money-bill-wave-alt": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f53b", + "label": "Alternate Wavy Money Bill", + "svg": { + "solid": { + "last_modified": 1525967154573, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96z" + } + } + }, + "money-check": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "bank check", + "cheque" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f53c", + "label": "Money Check", + "svg": { + "solid": { + "last_modified": 1525967154574, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M0 448c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128H0v320zm448-208c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-32zm0 120c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H456c-4.42 0-8-3.58-8-8v-16zM64 264c0-4.42 3.58-8 8-8h304c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm0 96c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zM624 32H16C7.16 32 0 39.16 0 48v48h640V48c0-8.84-7.16-16-16-16z" + } + } + }, + "money-check-alt": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "bank check", + "cheque" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f53d", + "label": "Alternate Money Check", + "svg": { + "solid": { + "last_modified": 1525967154574, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M608 32H32C14.33 32 0 46.33 0 64v384c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM176 327.88V344c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V152c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07zM416 312c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm160 0c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h272c4.42 0 8 3.58 8 8v16z" + } + } + }, + "monument": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "historic", + "memoroable" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5a6", + "label": "Monument", + "svg": { + "solid": { + "last_modified": 1529520111689, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M368 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h352c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-78.86-347.26a31.97 31.97 0 0 0-9.21-19.44L203.31 4.69c-6.25-6.25-16.38-6.25-22.63 0l-76.6 76.61a31.97 31.97 0 0 0-9.21 19.44L64 416h256l-30.86-315.26zM240 307.2c0 6.4-6.4 12.8-12.8 12.8h-70.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h70.4c6.4 0 12.8 6.4 12.8 12.8v38.4z" + } + } + }, + "moon": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "contrast", + "darker", + "night" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f186", + "label": "Moon", + "svg": { + "solid": { + "last_modified": 1502810244000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z" + }, + "regular": { + "last_modified": 1502810244000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M279.135 512c78.756 0 150.982-35.804 198.844-94.775 28.27-34.831-2.558-85.722-46.249-77.401-82.348 15.683-158.272-47.268-158.272-130.792 0-48.424 26.06-92.292 67.434-115.836 38.745-22.05 28.999-80.788-15.022-88.919A257.936 257.936 0 0 0 279.135 0c-141.36 0-256 114.575-256 256 0 141.36 114.576 256 256 256zm0-464c12.985 0 25.689 1.201 38.016 3.478-54.76 31.163-91.693 90.042-91.693 157.554 0 113.848 103.641 199.2 215.252 177.944C402.574 433.964 344.366 464 279.135 464c-114.875 0-208-93.125-208-208s93.125-208 208-208z" + } + } + }, + "mortar-pestle": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crush", + "culinary", + "grind", + "medical", + "mix", + "spices" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5a7", + "label": "Mortar Pestle", + "svg": { + "solid": { + "last_modified": 1529520111689, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M501.54 60.91c17.22-17.22 12.51-46.25-9.27-57.14a35.696 35.696 0 0 0-37.37 3.37L251.09 160h151.37l99.08-99.09zM496 192H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c0 80.98 50.2 150.11 121.13 178.32-12.76 16.87-21.72 36.8-24.95 58.69-1.46 9.92 6.04 18.98 16.07 18.98h223.5c10.03 0 17.53-9.06 16.07-18.98-3.22-21.89-12.18-41.82-24.95-58.69C429.8 406.11 480 336.98 480 256h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" + } + } + }, + "motorcycle": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bike", + "machine", + "transportation", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f21c", + "label": "Motorcycle", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M512.949 192.003c-14.862-.108-29.14 2.322-42.434 6.874L437.589 144H520c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24h-45.311a24 24 0 0 0-17.839 7.945l-37.496 41.663-22.774-37.956A24 24 0 0 0 376 64h-80c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h66.411l19.2 32H227.904c-17.727-23.073-44.924-40-99.904-40H72.54c-13.455 0-24.791 11.011-24.536 24.464C48.252 141.505 58.9 152 72 152h56c24.504 0 38.686 10.919 47.787 24.769l-11.291 20.529c-13.006-3.865-26.871-5.736-41.251-5.21C55.857 194.549 1.565 249.605.034 317.021-1.603 389.076 56.317 448 128 448c59.642 0 109.744-40.794 123.953-96h84.236c13.673 0 24.589-11.421 23.976-25.077-2.118-47.12 17.522-93.665 56.185-125.026l12.485 20.808c-27.646 23.654-45.097 58.88-44.831 98.179.47 69.556 57.203 126.452 126.758 127.11 71.629.678 129.839-57.487 129.234-129.099-.588-69.591-57.455-126.386-127.047-126.892zM128 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c4.242 0 8.405.341 12.469.982L98.97 316.434C90.187 332.407 101.762 352 120 352h81.297c-12.37 28.225-40.56 48-73.297 48zm388.351-.116C470.272 402.337 432 365.554 432 320c0-21.363 8.434-40.781 22.125-55.144l49.412 82.352c4.546 7.577 14.375 10.034 21.952 5.488l13.72-8.232c7.577-4.546 10.034-14.375 5.488-21.952l-48.556-80.927A80.005 80.005 0 0 1 512 240c45.554 0 82.338 38.273 79.884 84.352-2.16 40.558-34.974 73.372-75.533 75.532z" + } + } + }, + "mouse-pointer": { + "changes": [ + "4.4", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [ + "select" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f245", + "label": "Mouse Pointer", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M302.189 329.126H196.105l55.831 135.993c3.889 9.428-.555 19.999-9.444 23.999l-49.165 21.427c-9.165 4-19.443-.571-23.332-9.714l-53.053-129.136-86.664 89.138C18.729 472.71 0 463.554 0 447.977V18.299C0 1.899 19.921-6.096 30.277 5.443l284.412 292.542c11.472 11.179 3.007 31.141-12.5 31.141z" + } + } + }, + "music": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "note", + "sound" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f001", + "label": "Music", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M470.4 1.5l-304 96C153.1 101.7 144 114 144 128v264.6c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V220.5l272-85.9v194c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V32c0-21.7-21.1-37-41.6-30.5z" + } + } + }, + "napster": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d2", + "label": "Napster", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M298.3 373.6c-14.2 13.6-31.3 24.1-50.4 30.5-19-6.4-36.2-16.9-50.3-30.5h100.7zm44-199.6c20-16.9 43.6-29.2 69.6-36.2V299c0 219.4-328 217.6-328 .3V137.7c25.9 6.9 49.6 19.6 69.5 36.4 56.8-40 132.5-39.9 188.9-.1zm-208.8-58.5c64.4-60 164.3-60.1 228.9-.2-7.1 3.5-13.9 7.3-20.6 11.5-58.7-30.5-129.2-30.4-187.9.1-6.3-4-13.9-8.2-20.4-11.4zM43.8 93.2v69.3c-58.4 36.5-58.4 121.1.1 158.3 26.4 245.1 381.7 240.3 407.6 1.5l.3-1.7c58.7-36.3 58.9-121.7.2-158.2V93.2c-17.3.5-34 3-50.1 7.4-82-91.5-225.5-91.5-307.5.1-16.3-4.4-33.1-7-50.6-7.5zM259.2 352s36-.3 61.3-1.5c10.2-.5 21.1-4 25.5-6.5 26.3-15.1 25.4-39.2 26.2-47.4-79.5-.6-99.9-3.9-113 55.4zm-135.5-55.3c.8 8.2-.1 32.3 26.2 47.4 4.4 2.5 15.2 6 25.5 6.5 25.3 1.1 61.3 1.5 61.3 1.5-13.2-59.4-33.7-56.1-113-55.4zm169.1 123.4c-3.2-5.3-6.9-7.3-6.9-7.3-24.8 7.3-52.2 6.9-75.9 0 0 0-2.9 1.5-6.4 6.6-2.8 4.1-3.7 9.6-3.7 9.6 29.1 17.6 67.1 17.6 96.2 0-.1-.1-.3-4-3.3-8.9z" + } + } + }, + "neuter": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f22c", + "label": "Neuter", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "288", + "512" + ], + "width": 288, + "height": 512, + "path": "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V468c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V316.4c64.1-14.5 112-71.9 112-140.4zm-144 80c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" + } + } + }, + "newspaper": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "article", + "press" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1ea", + "label": "Newspaper", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z" + }, + "regular": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M552 64H112c-20.858 0-38.643 13.377-45.248 32H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h496c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24zM48 392V144h16v248c0 4.411-3.589 8-8 8s-8-3.589-8-8zm480 8H111.422c.374-2.614.578-5.283.578-8V112h416v288zM172 280h136c6.627 0 12-5.373 12-12v-96c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v96c0 6.627 5.373 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H172c-6.627 0-12-5.373-12-12zm192 0v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0-144v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0 72v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12z" + } + } + }, + "nimblr": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5a8", + "label": "Nimblr", + "svg": { + "brands": { + "last_modified": 1529514897192, + "raw": "", + "viewBox": [ + "0", + "0", + "355.52", + "512" + ], + "width": 355, + "height": 512, + "path": "M232.6 299.29c15.57 0 27.15 11.46 27.15 26.96 0 15.55-11.62 26.96-27.15 26.96-15.7 0-27.15-11.57-27.15-26.96 0-15.51 11.58-26.96 27.15-26.96zM99.01 326.25c0-15.61 11.68-26.96 27.15-26.96 15.57 0 27.15 11.46 27.15 26.96 0 15.41-11.47 26.96-27.15 26.96-15.44 0-27.15-11.31-27.15-26.96m78.75-167.3C143 158.95 75.45 178.77 45.25 227L0 0v335.48C0 433.13 79.61 512 177.76 512c98.24 0 177.76-78.95 177.76-176.52 0-97.46-79.39-176.53-177.76-176.53zm0 308.12c-73.27 0-132.51-58.9-132.51-131.59 0-72.68 59.24-131.59 132.51-131.59 73.27 0 132.51 58.91 132.51 131.59s-59.25 131.59-132.51 131.59z" + } + } + }, + "nintendo-switch": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f418", + "label": "Nintendo Switch", + "svg": { + "brands": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M95.9 33.5c-44.6 8-80.5 41-91.8 84.4C0 133.6-.3 142.8.2 264.4.4 376 .5 378.6 2.4 387.3c10.3 46.5 43.3 79.6 90.3 90.5 6.1 1.4 13.9 1.7 64.1 1.9 51.9.4 57.3.3 58.7-1.1 1.4-1.4 1.5-19.3 1.5-222.2 0-150.5-.3-221.3-.9-222.6-.9-1.7-2.5-1.8-56.9-1.7-44.2.1-57.5.4-63.3 1.4zm83.9 222.6V444l-37.8-.5c-34.8-.4-38.5-.6-45.5-2.3-29.9-7.7-52-30.7-58.3-60.7-2-9.4-2-240.1-.1-249.3 5.6-26.1 23.7-47.7 48-57.4 12.2-4.9 17.9-5.5 57.6-5.6l35.9-.1v188zm-75.9-131.2c-5.8 1.1-14.7 5.6-19.5 9.7-9.7 8.4-14.6 20.4-13.8 34.5.4 7.3.8 9.3 3.8 15.2 4.4 9 10.9 15.6 19.9 20 6.2 3.1 7.8 3.4 15.9 3.7 7.3.3 9.9 0 14.8-1.7 20.1-6.8 32.3-26.3 28.8-46.4-3.9-23.7-26.6-39.7-49.9-35zm158.2-92.3c-.4.3-.6 100.8-.6 223.5 0 202.3.1 222.8 1.5 223.4 2.5.9 74.5.6 83.4-.4 37.7-4.3 71-27.2 89-61.2 2.3-4.4 5.4-11.7 7-16.2 5.8-17.4 5.7-12.8 5.7-146.1 0-106.4-.2-122.3-1.5-129-9.2-48.3-46.1-84.8-94.5-93.1-6.5-1.1-16.5-1.4-48.8-1.4-22.4-.1-40.9.2-41.2.5zm99.1 202.1c14.5 3.8 26.3 14.8 31.2 28.9 3.1 8.7 3 21.5-.1 29.5-5.7 14.7-16.8 25-31.1 28.8-23.2 6-47.9-8-54.6-31-2-7-1.9-18.9.4-26.2 6.9-22.7 31-36.1 54.2-30z" + } + } + }, + "node": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f419", + "label": "Node.js", + "svg": { + "brands": { + "last_modified": 1507669930674, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4.1l14.8 8.8c.5.3 1.3.3 1.8 0L375 408c.5-.3.9-.9.9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6.3-.9 1-.9 1.6v66.7c0 .6.4 1.2.9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9.7-1.7 1.7-1.7h7.3c.9 0 1.7.7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7zm46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6.2.8.8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5.3-.4.5-.8.4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7.7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8zm54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1zm-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3 0 5.2 4.2 9.4 9.3 9.4 5.2-.1 9.4-4.3 9.4-9.4zm-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7.1 1.8 1.2 2.1 2.8.1 1 .3 2.7.6 3.3zm-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8zM137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3.4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3.7 2.5 1.8 3.2 1.1.7 2.5.7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1 1.3 0 2.6.3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1.7 2.6.7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2l.2-95zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4zm-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6.3-.9.9-.9 1.6v24.3c0 .7.4 1.3.9 1.6l21 12.1c.6.3 1.3.3 1.8 0l21-12.1c.6-.3.9-.9.9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3.7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1.7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2l36.7-21.3zM559 219c-.4.3-.7.7-.7 1.2v13.6c0 .5.3 1 .7 1.2l11.8 6.8c.4.3 1 .3 1.4 0L584 235c.4-.3.7-.7.7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0L559 219zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7.1-.5.2-1.1.2-1.7zm-74.3-124.9l-.8.5h1.1l-.3-.5zm76.2 130.2l-.4-.7v.9l.4-.2z" + } + } + }, + "node-js": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d3", + "label": "Node.js JS", + "svg": { + "brands": { + "last_modified": 1515426582000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M224 508c-6.7 0-13.5-1.8-19.4-5.2l-61.7-36.5c-9.2-5.2-4.7-7-1.7-8 12.3-4.3 14.8-5.2 27.9-12.7 1.4-.8 3.2-.5 4.6.4l47.4 28.1c1.7 1 4.1 1 5.7 0l184.7-106.6c1.7-1 2.8-3 2.8-5V149.3c0-2.1-1.1-4-2.9-5.1L226.8 37.7c-1.7-1-4-1-5.7 0L36.6 144.3c-1.8 1-2.9 3-2.9 5.1v213.1c0 2 1.1 4 2.9 4.9l50.6 29.2c27.5 13.7 44.3-2.4 44.3-18.7V167.5c0-3 2.4-5.3 5.4-5.3h23.4c2.9 0 5.4 2.3 5.4 5.3V378c0 36.6-20 57.6-54.7 57.6-10.7 0-19.1 0-42.5-11.6l-48.4-27.9C8.1 389.2.7 376.3.7 362.4V149.3c0-13.8 7.4-26.8 19.4-33.7L204.6 9c11.7-6.6 27.2-6.6 38.8 0l184.7 106.7c12 6.9 19.4 19.8 19.4 33.7v213.1c0 13.8-7.4 26.7-19.4 33.7L243.4 502.8c-5.9 3.4-12.6 5.2-19.4 5.2zm149.1-210.1c0-39.9-27-50.5-83.7-58-57.4-7.6-63.2-11.5-63.2-24.9 0-11.1 4.9-25.9 47.4-25.9 37.9 0 51.9 8.2 57.7 33.8.5 2.4 2.7 4.2 5.2 4.2h24c1.5 0 2.9-.6 3.9-1.7s1.5-2.6 1.4-4.1c-3.7-44.1-33-64.6-92.2-64.6-52.7 0-84.1 22.2-84.1 59.5 0 40.4 31.3 51.6 81.8 56.6 60.5 5.9 65.2 14.8 65.2 26.7 0 20.6-16.6 29.4-55.5 29.4-48.9 0-59.6-12.3-63.2-36.6-.4-2.6-2.6-4.5-5.3-4.5h-23.9c-3 0-5.3 2.4-5.3 5.3 0 31.1 16.9 68.2 97.8 68.2 58.4-.1 92-23.2 92-63.4z" + } + } + }, + "not-equal": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f53e", + "label": "Not Equal", + "svg": { + "solid": { + "last_modified": 1525967154574, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M416 208c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32h-23.88l51.87-66.81c5.37-7.02 4.04-17.06-2.97-22.43L415.61 3.3c-7.02-5.38-17.06-4.04-22.44 2.97L311.09 112H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h204.56l-74.53 96H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h55.49l-51.87 66.81c-5.37 7.01-4.04 17.05 2.97 22.43L64 508.7c7.02 5.38 17.06 4.04 22.43-2.97L168.52 400H416c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32H243.05l74.53-96H416z" + } + } + }, + "notes-medical": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f481", + "label": "Medical Notes", + "svg": { + "solid": { + "last_modified": 1521653821454, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm96 304c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm0-192c0 4.4-3.6 8-8 8H104c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16z" + } + } + }, + "npm": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d4", + "label": "npm", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M288 288h-32v-64h32v64zm288-128v192H288v32H160v-32H0V160h576zm-416 32H32v128h64v-96h32v96h32V192zm160 0H192v160h64v-32h64V192zm224 0H352v128h64v-96h32v96h32v-96h32v96h32V192z" + } + } + }, + "ns8": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d5", + "label": "NS8", + "svg": { + "brands": { + "last_modified": 1506111999000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M187.1 159.9l-34.2 113.7-54.5-113.7H49L0 320h44.9L76 213.5 126.6 320h56.9L232 159.9h-44.9zm452.5-.9c-2.9-18-23.9-28.1-42.1-31.3-44.6-7.8-101.9 16.3-88.5 58.8v.1c-43.8 8.7-74.3 26.8-94.2 48.2-3-9.8-13.6-16.6-34-16.6h-87.6c-9.3 0-12.9-2.3-11.5-7.4 1.6-5.5 1.9-6.8 3.7-12.2 2.1-6.4 7.8-7.1 13.3-7.1h133.5l9.7-31.5c-139.7 0-144.5-.5-160.1 1.2-12.3 1.3-23.5 4.8-30.6 15-6.8 9.9-14.4 35.6-17.6 47.1-5.4 19.4-.6 28.6 32.8 28.6h87.3c7.8 0 8.8 2.7 7.7 6.6-1.1 4.4-2.8 10-4.5 14.6-1.6 4.2-4.7 7.4-13.8 7.4H216.3L204.7 320c139.9 0 145.3-.6 160.9-2.3 6.6-.7 13-2.1 18.5-4.9.2 3.7.5 7.3 1.2 10.8 5.4 30.5 27.4 52.3 56.8 59.5 48.6 11.9 108.7-16.8 135.1-68 18.7-36.2 14.1-76.2-3.4-105.5h.1c29.6-5.9 70.3-22 65.7-50.6zM530.7 263.7c-5.9 29.5-36.6 47.8-61.6 43.9-30.9-4.8-38.5-39.5-14.1-64.8 16.2-16.8 45.2-24 68.5-26.9 6.7 14.1 10.3 32 7.2 47.8zm21.8-83.1c-4.2-6-9.8-18.5-2.5-26.3 6.7-7.2 20.9-10.1 31.8-7.7 15.3 3.4 19.7 15.9 4.9 24.4-10.7 6.1-23.6 8.1-34.2 9.6z" + } + } + }, + "nutritionix": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d6", + "label": "Nutritionix", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "400", + "512" + ], + "width": 400, + "height": 512, + "path": "M88 8.1S221.4-.1 209 112.5c0 0 19.1-74.9 103-40.6 0 0-17.7 74-88 56 0 0 14.6-54.6 66.1-56.6 0 0-39.9-10.3-82.1 48.8 0 0-19.8-94.5-93.6-99.7 0 0 75.2 19.4 77.6 107.5 0 .1-106.4 7-104-119.8zm312 315.6c0 48.5-9.7 95.3-32 132.3-42.2 30.9-105 48-168 48-62.9 0-125.8-17.1-168-48C9.7 419 0 372.2 0 323.7 0 275.3 17.7 229 40 192c42.2-30.9 97.1-48.6 160-48.6 63 0 117.8 17.6 160 48.6 22.3 37 40 83.3 40 131.7zM120 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM192 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM264 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM336 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm24-39.6c-4.8-22.3-7.4-36.9-16-56-38.8-19.9-90.5-32-144-32S94.8 180.1 56 200c-8.8 19.5-11.2 33.9-16 56 42.2-7.9 98.7-14.8 160-14.8s117.8 6.9 160 14.8z" + } + } + }, + "object-group": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f247", + "label": "Object Group", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M480 128V96h20c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v20H64V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v40c0 6.627 5.373 12 12 12h20v320H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-20h384v20c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-20V128zM96 276V140c0-6.627 5.373-12 12-12h168c6.627 0 12 5.373 12 12v136c0 6.627-5.373 12-12 12H108c-6.627 0-12-5.373-12-12zm320 96c0 6.627-5.373 12-12 12H236c-6.627 0-12-5.373-12-12v-52h72c13.255 0 24-10.745 24-24v-72h84c6.627 0 12 5.373 12 12v136z" + }, + "regular": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M500 128c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v256H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V128h12zm-52-64h32v32h-32V64zM32 64h32v32H32V64zm32 384H32v-32h32v32zm416 0h-32v-32h32v32zm-40-64h-12c-6.627 0-12 5.373-12 12v12H96v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h12v256zm-36-192h-84v-52c0-6.628-5.373-12-12-12H108c-6.627 0-12 5.372-12 12v168c0 6.628 5.373 12 12 12h84v52c0 6.628 5.373 12 12 12h200c6.627 0 12-5.372 12-12V204c0-6.628-5.373-12-12-12zm-268-24h144v112H136V168zm240 176H232v-24h76c6.627 0 12-5.372 12-12v-76h56v112z" + } + } + }, + "object-ungroup": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f248", + "label": "Object Ungroup", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M64 320v26a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6v-52a6 6 0 0 1 6-6h26V96H6a6 6 0 0 1-6-6V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v26h288V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-26v192h26a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-52a6 6 0 0 1-6-6v-26H64zm480-64v-32h26a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-52a6 6 0 0 0-6 6v26H408v72h8c13.255 0 24 10.745 24 24v64c0 13.255-10.745 24-24 24h-64c-13.255 0-24-10.745-24-24v-8H192v72h-26a6 6 0 0 0-6 6v52a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-26h288v26a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-26V256z" + }, + "regular": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M564 224c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12h-88v-24h12c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v160H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h88v24h-12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V224h12zM352 64h32v32h-32V64zm0 256h32v32h-32v-32zM64 352H32v-32h32v32zm0-256H32V64h32v32zm32 216v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h12v160h-12c-6.627 0-12 5.373-12 12v12H96zm128 136h-32v-32h32v32zm280-64h-12c-6.627 0-12 5.373-12 12v12H256v-12c0-6.627-5.373-12-12-12h-12v-24h88v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12v-88h88v12c0 6.627 5.373 12 12 12h12v160zm40 64h-32v-32h32v32zm0-256h-32v-32h32v32z" + } + } + }, + "odnoklassniki": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f263", + "label": "Odnoklassniki", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M275.1 334c-27.4 17.4-65.1 24.3-90 26.9l20.9 20.6 76.3 76.3c27.9 28.6-17.5 73.3-45.7 45.7-19.1-19.4-47.1-47.4-76.3-76.6L84 503.4c-28.2 27.5-73.6-17.6-45.4-45.7 19.4-19.4 47.1-47.4 76.3-76.3l20.6-20.6c-24.6-2.6-62.9-9.1-90.6-26.9-32.6-21-46.9-33.3-34.3-59 7.4-14.6 27.7-26.9 54.6-5.7 0 0 36.3 28.9 94.9 28.9s94.9-28.9 94.9-28.9c26.9-21.1 47.1-8.9 54.6 5.7 12.4 25.7-1.9 38-34.5 59.1zM30.3 129.7C30.3 58 88.6 0 160 0s129.7 58 129.7 129.7c0 71.4-58.3 129.4-129.7 129.4s-129.7-58-129.7-129.4zm66 0c0 35.1 28.6 63.7 63.7 63.7s63.7-28.6 63.7-63.7c0-35.4-28.6-64-63.7-64s-63.7 28.6-63.7 64z" + } + } + }, + "odnoklassniki-square": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f264", + "label": "Odnoklassniki Square", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M184.2 177.1c0-22.1 17.9-40 39.8-40s39.8 17.9 39.8 40c0 22-17.9 39.8-39.8 39.8s-39.8-17.9-39.8-39.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-305.1 97.1c0 44.6 36.4 80.9 81.1 80.9s81.1-36.2 81.1-80.9c0-44.8-36.4-81.1-81.1-81.1s-81.1 36.2-81.1 81.1zm174.5 90.7c-4.6-9.1-17.3-16.8-34.1-3.6 0 0-22.7 18-59.3 18s-59.3-18-59.3-18c-16.8-13.2-29.5-5.5-34.1 3.6-7.9 16.1 1.1 23.7 21.4 37 17.3 11.1 41.2 15.2 56.6 16.8l-12.9 12.9c-18.2 18-35.5 35.5-47.7 47.7-17.6 17.6 10.7 45.8 28.4 28.6l47.7-47.9c18.2 18.2 35.7 35.7 47.7 47.9 17.6 17.2 46-10.7 28.6-28.6l-47.7-47.7-13-12.9c15.5-1.6 39.1-5.9 56.2-16.8 20.4-13.3 29.3-21 21.5-37z" + } + } + }, + "old-republic": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f510", + "label": "Old Republic", + "svg": { + "brands": { + "last_modified": 1525376442522, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M235.76 10.23c7.5-.31 15-.28 22.5-.09 3.61.14 7.2.4 10.79.73 4.92.27 9.79 1.03 14.67 1.62 2.93.43 5.83.98 8.75 1.46 7.9 1.33 15.67 3.28 23.39 5.4 12.24 3.47 24.19 7.92 35.76 13.21 26.56 12.24 50.94 29.21 71.63 49.88 20.03 20.09 36.72 43.55 48.89 69.19 1.13 2.59 2.44 5.1 3.47 7.74 2.81 6.43 5.39 12.97 7.58 19.63 4.14 12.33 7.34 24.99 9.42 37.83.57 3.14 1.04 6.3 1.4 9.47.55 3.83.94 7.69 1.18 11.56.83 8.34.84 16.73.77 25.1-.07 4.97-.26 9.94-.75 14.89-.24 3.38-.51 6.76-.98 10.12-.39 2.72-.63 5.46-1.11 8.17-.9 5.15-1.7 10.31-2.87 15.41-4.1 18.5-10.3 36.55-18.51 53.63-15.77 32.83-38.83 62.17-67.12 85.12a246.503 246.503 0 0 1-56.91 34.86c-6.21 2.68-12.46 5.25-18.87 7.41-3.51 1.16-7.01 2.38-10.57 3.39-6.62 1.88-13.29 3.64-20.04 5-4.66.91-9.34 1.73-14.03 2.48-5.25.66-10.5 1.44-15.79 1.74-6.69.66-13.41.84-20.12.81-6.82.03-13.65-.12-20.45-.79-3.29-.23-6.57-.5-9.83-.95-2.72-.39-5.46-.63-8.17-1.11-4.12-.72-8.25-1.37-12.35-2.22-4.25-.94-8.49-1.89-12.69-3.02-8.63-2.17-17.08-5.01-25.41-8.13-10.49-4.12-20.79-8.75-30.64-14.25-2.14-1.15-4.28-2.29-6.35-3.57-11.22-6.58-21.86-14.1-31.92-22.34-34.68-28.41-61.41-66.43-76.35-108.7-3.09-8.74-5.71-17.65-7.8-26.68-1.48-6.16-2.52-12.42-3.58-18.66-.4-2.35-.61-4.73-.95-7.09-.6-3.96-.75-7.96-1.17-11.94-.8-9.47-.71-18.99-.51-28.49.14-3.51.34-7.01.7-10.51.31-3.17.46-6.37.92-9.52.41-2.81.65-5.65 1.16-8.44.7-3.94 1.3-7.9 2.12-11.82 3.43-16.52 8.47-32.73 15.26-48.18 1.15-2.92 2.59-5.72 3.86-8.59 8.05-16.71 17.9-32.56 29.49-47.06 20-25.38 45.1-46.68 73.27-62.47 7.5-4.15 15.16-8.05 23.07-11.37 15.82-6.88 32.41-11.95 49.31-15.38 3.51-.67 7.04-1.24 10.56-1.85 2.62-.47 5.28-.7 7.91-1.08 3.53-.53 7.1-.68 10.65-1.04 2.46-.24 4.91-.36 7.36-.51m8.64 24.41c-9.23.1-18.43.99-27.57 2.23-7.3 1.08-14.53 2.6-21.71 4.3-13.91 3.5-27.48 8.34-40.46 14.42-10.46 4.99-20.59 10.7-30.18 17.22-4.18 2.92-8.4 5.8-12.34 9.03-5.08 3.97-9.98 8.17-14.68 12.59-2.51 2.24-4.81 4.7-7.22 7.06-28.22 28.79-48.44 65.39-57.5 104.69-2.04 8.44-3.54 17.02-4.44 25.65-1.1 8.89-1.44 17.85-1.41 26.8.11 7.14.38 14.28 1.22 21.37.62 7.12 1.87 14.16 3.2 21.18 1.07 4.65 2.03 9.32 3.33 13.91 6.29 23.38 16.5 45.7 30.07 65.75 8.64 12.98 18.78 24.93 29.98 35.77 16.28 15.82 35.05 29.04 55.34 39.22 7.28 3.52 14.66 6.87 22.27 9.63 5.04 1.76 10.06 3.57 15.22 4.98 11.26 3.23 22.77 5.6 34.39 7.06 2.91.29 5.81.61 8.72.9 13.82 1.08 27.74 1 41.54-.43 4.45-.6 8.92-.99 13.35-1.78 3.63-.67 7.28-1.25 10.87-2.1 4.13-.98 8.28-1.91 12.36-3.07 26.5-7.34 51.58-19.71 73.58-36.2 15.78-11.82 29.96-25.76 42.12-41.28 3.26-4.02 6.17-8.31 9.13-12.55 3.39-5.06 6.58-10.25 9.6-15.54 2.4-4.44 4.74-8.91 6.95-13.45 5.69-12.05 10.28-24.62 13.75-37.49 2.59-10.01 4.75-20.16 5.9-30.45 1.77-13.47 1.94-27.1 1.29-40.65-.29-3.89-.67-7.77-1-11.66-2.23-19.08-6.79-37.91-13.82-55.8-5.95-15.13-13.53-29.63-22.61-43.13-12.69-18.8-28.24-35.68-45.97-49.83-25.05-20-54.47-34.55-85.65-42.08-7.78-1.93-15.69-3.34-23.63-4.45-3.91-.59-7.85-.82-11.77-1.24-7.39-.57-14.81-.72-22.22-.58zM139.26 83.53c13.3-8.89 28.08-15.38 43.3-20.18-3.17 1.77-6.44 3.38-9.53 5.29-11.21 6.68-21.52 14.9-30.38 24.49-6.8 7.43-12.76 15.73-17.01 24.89-3.29 6.86-5.64 14.19-6.86 21.71-.93 4.85-1.3 9.81-1.17 14.75.13 13.66 4.44 27.08 11.29 38.82 5.92 10.22 13.63 19.33 22.36 27.26 4.85 4.36 10.24 8.09 14.95 12.6 2.26 2.19 4.49 4.42 6.43 6.91 2.62 3.31 4.89 6.99 5.99 11.1.9 3.02.66 6.2.69 9.31.02 4.1-.04 8.2.03 12.3.14 3.54-.02 7.09.11 10.63.08 2.38.02 4.76.05 7.14.16 5.77.06 11.53.15 17.3.11 2.91.02 5.82.13 8.74.03 1.63.13 3.28-.03 4.91-.91.12-1.82.18-2.73.16-10.99 0-21.88-2.63-31.95-6.93-6-2.7-11.81-5.89-17.09-9.83-5.75-4.19-11.09-8.96-15.79-14.31-6.53-7.24-11.98-15.39-16.62-23.95-1.07-2.03-2.24-4.02-3.18-6.12-1.16-2.64-2.62-5.14-3.67-7.82-4.05-9.68-6.57-19.94-8.08-30.31-.49-4.44-1.09-8.88-1.2-13.35-.7-15.73.84-31.55 4.67-46.82 2.12-8.15 4.77-16.18 8.31-23.83 6.32-14.2 15.34-27.18 26.3-38.19 6.28-6.2 13.13-11.84 20.53-16.67zm175.37-20.12c2.74.74 5.41 1.74 8.09 2.68 6.36 2.33 12.68 4.84 18.71 7.96 13.11 6.44 25.31 14.81 35.82 24.97 10.2 9.95 18.74 21.6 25.14 34.34 1.28 2.75 2.64 5.46 3.81 8.26 6.31 15.1 10 31.26 11.23 47.57.41 4.54.44 9.09.45 13.64.07 11.64-1.49 23.25-4.3 34.53-1.97 7.27-4.35 14.49-7.86 21.18-3.18 6.64-6.68 13.16-10.84 19.24-6.94 10.47-15.6 19.87-25.82 27.22-10.48 7.64-22.64 13.02-35.4 15.38-3.51.69-7.08 1.08-10.66 1.21-1.85.06-3.72.16-5.56-.1-.28-2.15 0-4.31-.01-6.46-.03-3.73.14-7.45.1-11.17.19-7.02.02-14.05.21-21.07.03-2.38-.03-4.76.03-7.14.17-5.07-.04-10.14.14-15.21.1-2.99-.24-6.04.51-8.96.66-2.5 1.78-4.86 3.09-7.08 4.46-7.31 11.06-12.96 17.68-18.26 5.38-4.18 10.47-8.77 15.02-13.84 7.68-8.37 14.17-17.88 18.78-28.27 2.5-5.93 4.52-12.1 5.55-18.46.86-4.37 1.06-8.83 1.01-13.27-.02-7.85-1.4-15.65-3.64-23.17-1.75-5.73-4.27-11.18-7.09-16.45-3.87-6.93-8.65-13.31-13.96-19.2-9.94-10.85-21.75-19.94-34.6-27.1-1.85-1.02-3.84-1.82-5.63-2.97zm-100.8 58.45c.98-1.18 1.99-2.33 3.12-3.38-.61.93-1.27 1.81-1.95 2.68-3.1 3.88-5.54 8.31-7.03 13.06-.87 3.27-1.68 6.6-1.73 10-.07 2.52-.08 5.07.32 7.57 1.13 7.63 4.33 14.85 8.77 21.12 2 2.7 4.25 5.27 6.92 7.33 1.62 1.27 3.53 2.09 5.34 3.05 3.11 1.68 6.32 3.23 9.07 5.48 2.67 2.09 4.55 5.33 4.4 8.79-.01 73.67 0 147.34-.01 221.02 0 1.35-.08 2.7.04 4.04.13 1.48.82 2.83 1.47 4.15.86 1.66 1.78 3.34 3.18 4.62.85.77 1.97 1.4 3.15 1.24 1.5-.2 2.66-1.35 3.45-2.57.96-1.51 1.68-3.16 2.28-4.85.76-2.13.44-4.42.54-6.63.14-4.03-.02-8.06.14-12.09.03-5.89.03-11.77.06-17.66.14-3.62.03-7.24.11-10.86.15-4.03-.02-8.06.14-12.09.03-5.99.03-11.98.07-17.97.14-3.62.02-7.24.11-10.86.14-3.93-.02-7.86.14-11.78.03-5.99.03-11.98.06-17.97.16-3.94-.01-7.88.19-11.82.29 1.44.13 2.92.22 4.38.19 3.61.42 7.23.76 10.84.32 3.44.44 6.89.86 10.32.37 3.1.51 6.22.95 9.31.57 4.09.87 8.21 1.54 12.29 1.46 9.04 2.83 18.11 5.09 26.99 1.13 4.82 2.4 9.61 4 14.3 2.54 7.9 5.72 15.67 10.31 22.62 1.73 2.64 3.87 4.98 6.1 7.21.27.25.55.51.88.71.6.25 1.31-.07 1.7-.57.71-.88 1.17-1.94 1.7-2.93 4.05-7.8 8.18-15.56 12.34-23.31.7-1.31 1.44-2.62 2.56-3.61 1.75-1.57 3.84-2.69 5.98-3.63 2.88-1.22 5.9-2.19 9.03-2.42 6.58-.62 13.11.75 19.56 1.85 3.69.58 7.4 1.17 11.13 1.41 3.74.1 7.48.05 11.21-.28 8.55-.92 16.99-2.96 24.94-6.25 5.3-2.24 10.46-4.83 15.31-7.93 11.46-7.21 21.46-16.57 30.04-27.01 1.17-1.42 2.25-2.9 3.46-4.28-1.2 3.24-2.67 6.37-4.16 9.48-1.25 2.9-2.84 5.61-4.27 8.42-5.16 9.63-11.02 18.91-17.75 27.52-4.03 5.21-8.53 10.05-13.33 14.57-6.64 6.05-14.07 11.37-22.43 14.76-8.21 3.37-17.31 4.63-26.09 3.29-3.56-.58-7.01-1.69-10.41-2.88-2.79-.97-5.39-2.38-8.03-3.69-3.43-1.71-6.64-3.81-9.71-6.08 2.71 3.06 5.69 5.86 8.7 8.61 4.27 3.76 8.74 7.31 13.63 10.23 3.98 2.45 8.29 4.4 12.84 5.51 1.46.37 2.96.46 4.45.6-1.25 1.1-2.63 2.04-3.99 2.98-9.61 6.54-20.01 11.86-30.69 16.43-20.86 8.7-43.17 13.97-65.74 15.34-4.66.24-9.32.36-13.98.36-4.98-.11-9.97-.13-14.92-.65-11.2-.76-22.29-2.73-33.17-5.43-10.35-2.71-20.55-6.12-30.3-10.55-8.71-3.86-17.12-8.42-24.99-13.79-1.83-1.31-3.74-2.53-5.37-4.08 6.6-1.19 13.03-3.39 18.99-6.48 5.74-2.86 10.99-6.66 15.63-11.07 2.24-2.19 4.29-4.59 6.19-7.09-3.43 2.13-6.93 4.15-10.62 5.78-4.41 2.16-9.07 3.77-13.81 5.02-5.73 1.52-11.74 1.73-17.61 1.14-8.13-.95-15.86-4.27-22.51-8.98-4.32-2.94-8.22-6.43-11.96-10.06-9.93-10.16-18.2-21.81-25.66-33.86-3.94-6.27-7.53-12.75-11.12-19.22-1.05-2.04-2.15-4.05-3.18-6.1 2.85 2.92 5.57 5.97 8.43 8.88 8.99 8.97 18.56 17.44 29.16 24.48 7.55 4.9 15.67 9.23 24.56 11.03 3.11.73 6.32.47 9.47.81 2.77.28 5.56.2 8.34.3 5.05.06 10.11.04 15.16-.16 3.65-.16 7.27-.66 10.89-1.09 2.07-.25 4.11-.71 6.14-1.2 3.88-.95 8.11-.96 11.83.61 4.76 1.85 8.44 5.64 11.38 9.71 2.16 3.02 4.06 6.22 5.66 9.58 1.16 2.43 2.46 4.79 3.55 7.26 1 2.24 2.15 4.42 3.42 6.52.67 1.02 1.4 2.15 2.62 2.55 1.06-.75 1.71-1.91 2.28-3.03 2.1-4.16 3.42-8.65 4.89-13.05 2.02-6.59 3.78-13.27 5.19-20.02 2.21-9.25 3.25-18.72 4.54-28.13.56-3.98.83-7.99 1.31-11.97.87-10.64 1.9-21.27 2.24-31.94.08-1.86.24-3.71.25-5.57.01-4.35.25-8.69.22-13.03-.01-2.38-.01-4.76 0-7.13.05-5.07-.2-10.14-.22-15.21-.2-6.61-.71-13.2-1.29-19.78-.73-5.88-1.55-11.78-3.12-17.51-2.05-7.75-5.59-15.03-9.8-21.82-3.16-5.07-6.79-9.88-11.09-14.03-3.88-3.86-8.58-7.08-13.94-8.45-1.5-.41-3.06-.45-4.59-.64.07-2.99.7-5.93 1.26-8.85 1.59-7.71 3.8-15.3 6.76-22.6 1.52-4.03 3.41-7.9 5.39-11.72 3.45-6.56 7.62-12.79 12.46-18.46zm31.27 1.7c.35-.06.71-.12 1.07-.19.19 1.79.09 3.58.1 5.37v38.13c-.01 1.74.13 3.49-.15 5.22-.36-.03-.71-.05-1.06-.05-.95-3.75-1.72-7.55-2.62-11.31-.38-1.53-.58-3.09-1.07-4.59-1.7-.24-3.43-.17-5.15-.2-5.06-.01-10.13 0-15.19-.01-1.66-.01-3.32.09-4.98-.03-.03-.39-.26-.91.16-1.18 1.28-.65 2.72-.88 4.06-1.35 3.43-1.14 6.88-2.16 10.31-3.31 1.39-.48 2.9-.72 4.16-1.54.04-.56.02-1.13-.05-1.68-1.23-.55-2.53-.87-3.81-1.28-3.13-1.03-6.29-1.96-9.41-3.02-1.79-.62-3.67-1-5.41-1.79-.03-.37-.07-.73-.11-1.09 5.09-.19 10.2.06 15.3-.12 3.36-.13 6.73.08 10.09-.07.12-.39.26-.77.37-1.16 1.08-4.94 2.33-9.83 3.39-14.75zm5.97-.2c.36.05.72.12 1.08.2.98 3.85 1.73 7.76 2.71 11.61.36 1.42.56 2.88 1.03 4.27 2.53.18 5.07-.01 7.61.05 5.16.12 10.33.12 15.49.07.76-.01 1.52.03 2.28.08-.04.36-.07.72-.1 1.08-1.82.83-3.78 1.25-5.67 1.89-3.73 1.23-7.48 2.39-11.22 3.57-.57.17-1.12.42-1.67.64-.15.55-.18 1.12-.12 1.69.87.48 1.82.81 2.77 1.09 4.88 1.52 9.73 3.14 14.63 4.6.38.13.78.27 1.13.49.4.27.23.79.15 1.18-1.66.13-3.31.03-4.97.04-5.17.01-10.33-.01-15.5.01-1.61.03-3.22-.02-4.82.21-.52 1.67-.72 3.42-1.17 5.11-.94 3.57-1.52 7.24-2.54 10.78-.36.01-.71.02-1.06.06-.29-1.73-.15-3.48-.15-5.22v-38.13c.02-1.78-.08-3.58.11-5.37zM65.05 168.33c1.12-2.15 2.08-4.4 3.37-6.46-1.82 7.56-2.91 15.27-3.62 23-.8 7.71-.85 15.49-.54 23.23 1.05 19.94 5.54 39.83 14.23 57.88 2.99 5.99 6.35 11.83 10.5 17.11 6.12 7.47 12.53 14.76 19.84 21.09 4.8 4.1 9.99 7.78 15.54 10.8 3.27 1.65 6.51 3.39 9.94 4.68 5.01 2.03 10.19 3.61 15.42 4.94 3.83.96 7.78 1.41 11.52 2.71 5 1.57 9.47 4.61 13.03 8.43 4.93 5.23 8.09 11.87 10.2 18.67.99 2.9 1.59 5.91 2.17 8.92.15.75.22 1.52.16 2.29-6.5 2.78-13.26 5.06-20.26 6.18-4.11.78-8.29.99-12.46 1.08-10.25.24-20.47-1.76-30.12-5.12-3.74-1.42-7.49-2.85-11.03-4.72-8.06-3.84-15.64-8.7-22.46-14.46-2.92-2.55-5.83-5.13-8.4-8.03-9.16-9.83-16.3-21.41-21.79-33.65-2.39-5.55-4.61-11.18-6.37-16.96-1.17-3.94-2.36-7.89-3.26-11.91-.75-2.94-1.22-5.95-1.87-8.92-.46-2.14-.69-4.32-1.03-6.48-.85-5.43-1.28-10.93-1.33-16.43.11-6.18.25-12.37 1.07-18.5.4-2.86.67-5.74 1.15-8.6.98-5.7 2.14-11.37 3.71-16.93 3.09-11.65 7.48-22.95 12.69-33.84zm363.73-6.44c1.1 1.66 1.91 3.48 2.78 5.26 2.1 4.45 4.24 8.9 6.02 13.49 7.61 18.76 12.3 38.79 13.04 59.05.02 1.76.07 3.52.11 5.29.13 9.57-1.27 19.09-3.18 28.45-.73 3.59-1.54 7.17-2.58 10.69-4.04 14.72-10 29-18.41 41.78-8.21 12.57-19.01 23.55-31.84 31.41-5.73 3.59-11.79 6.64-18.05 9.19-5.78 2.19-11.71 4.03-17.8 5.11-6.4 1.05-12.91 1.52-19.4 1.23-7.92-.48-15.78-2.07-23.21-4.85-1.94-.8-3.94-1.46-5.84-2.33-.21-1.51.25-2.99.53-4.46 1.16-5.74 3.03-11.36 5.7-16.58 2.37-4.51 5.52-8.65 9.46-11.9 2.43-2.05 5.24-3.61 8.16-4.83 3.58-1.5 7.47-1.97 11.24-2.83 7.23-1.71 14.37-3.93 21.15-7 10.35-4.65 19.71-11.38 27.65-19.46 1.59-1.61 3.23-3.18 4.74-4.87 3.37-3.76 6.71-7.57 9.85-11.53 7.48-10.07 12.82-21.59 16.71-33.48 1.58-5.3 3.21-10.6 4.21-16.05.63-2.87 1.04-5.78 1.52-8.68.87-6.09 1.59-12.22 1.68-18.38.12-6.65.14-13.32-.53-19.94-.73-7.99-1.87-15.96-3.71-23.78z" + } + } + }, + "opencart": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f23d", + "label": "OpenCart", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M423.3 440.7c0 25.3-20.3 45.6-45.6 45.6s-45.8-20.3-45.8-45.6 20.6-45.8 45.8-45.8c25.4 0 45.6 20.5 45.6 45.8zm-253.9-45.8c-25.3 0-45.6 20.6-45.6 45.8s20.3 45.6 45.6 45.6 45.8-20.3 45.8-45.6-20.5-45.8-45.8-45.8zm291.7-270C158.9 124.9 81.9 112.1 0 25.7c34.4 51.7 53.3 148.9 373.1 144.2 333.3-5 130 86.1 70.8 188.9 186.7-166.7 319.4-233.9 17.2-233.9z" + } + } + }, + "openid": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f19b", + "label": "OpenID", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M271.5 432l-68 32C88.5 453.7 0 392.5 0 318.2c0-71.5 82.5-131 191.7-144.3v43c-71.5 12.5-124 53-124 101.3 0 51 58.5 93.3 135.7 103v-340l68-33.2v384zM448 291l-131.3-28.5 36.8-20.7c-19.5-11.5-43.5-20-70-24.8v-43c46.2 5.5 87.7 19.5 120.3 39.3l35-19.8L448 291z" + } + } + }, + "opera": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f26a", + "label": "Opera", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M313.9 32.7c-170.2 0-252.6 223.8-147.5 355.1 36.5 45.4 88.6 75.6 147.5 75.6 36.3 0 70.3-11.1 99.4-30.4-43.8 39.2-101.9 63-165.3 63-3.9 0-8 0-11.9-.3C104.6 489.6 0 381.1 0 248 0 111 111 0 248 0h.8c63.1.3 120.7 24.1 164.4 63.1-29-19.4-63.1-30.4-99.3-30.4zm101.8 397.7c-40.9 24.7-90.7 23.6-132-5.8 56.2-20.5 97.7-91.6 97.7-176.6 0-84.7-41.2-155.8-97.4-176.6 41.8-29.2 91.2-30.3 132.9-5 105.9 98.7 105.5 265.7-1.2 364z" + } + } + }, + "optin-monster": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f23c", + "label": "Optin Monster", + "svg": { + "brands": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M550.671 450.303c0 11.62-15.673 19.457-32.158 14.863-12.16-3.243-31.346-17.565-36.211-27.294-5.674-11.62 4.054-32.698 18.916-30.806 15.674 1.621 49.453 25.401 49.453 43.237zM372.86 75.223c-3.783-72.151-100.796-79.718-125.928-23.51 44.588-24.321 90.257-15.673 125.928 23.51zM74.795 407.066c-15.673 1.621-49.452 25.401-49.452 43.237 0 11.62 15.673 19.457 32.157 14.863 12.16-3.243 31.076-17.565 35.94-27.294 5.946-11.62-3.782-32.698-18.645-30.806zm497.765 14.322c1.081 3.513 1.892 7.026 1.892 10.809.81 31.616-44.317 64.045-73.503 65.125-17.295.81-34.59-8.377-42.696-23.51-113.497 4.053-226.994 4.864-340.22 0-8.377 15.133-25.672 24.05-42.967 23.51-28.915-1.081-74.043-33.509-73.503-65.125.27-3.783.811-7.296 1.892-10.809-5.566-9.463-4.845-15.282 5.405-11.62 3.243-5.134 7.026-9.458 11.08-13.782-2.57-10.917 1.27-14.094 11.079-9.188 4.594-3.243 9.998-6.485 15.944-9.188 0-15.757 11.839-11.131 17.295-5.675 12.467-1.78 20.129.709 26.753 5.675v-19.726c-12.987 0-40.641-11.375-45.94-36.212-4.974-20.725 2.607-38.075 25.132-47.56.81-5.945 8.107-14.052 14.862-15.944 7.567-1.892 12.431 4.594 14.052 10.269 7.425 0 17.757 1.465 21.078 8.107 5.405-.541 11.079-1.352 16.484-1.892-2.432-1.892-5.134-3.513-8.107-4.594-5.134-8.917-13.782-11.079-24.591-11.62 0-.81 0-1.621.27-2.702-19.727-.541-44.048-5.675-54.857-17.835-21.321-23.638-15.935-83.577 12.16-103.498 8.377-5.675 21.618-.811 22.699 9.728 2.425 20.598.399 26.833 26.212 25.942 8.107-7.836 16.755-14.592 26.483-19.997-14.862-1.352-28.914 1.621-43.778 3.783 12.752-12.48 23.953-25.442 56.748-42.427 23.511-11.89 49.993-20.808 76.205-23.239-18.646-7.837-39.993-11.891-59.721-16.484 76.475-16.214 174.569-22.159 244.289 37.562 18.105 15.403 32.427 36.211 42.696 59.992 39.799 4.853 36.47-5.581 38.643-25.132 1.081-10.269 14.322-15.403 22.699-9.458 14.862 10.539 22.159 30.806 24.59 48.101 2.162 17.835.27 41.345-12.43 55.127-10.809 12.16-34.32 17.565-53.776 18.105v2.703c-11.08.27-20.268 2.432-25.673 11.62-2.972 1.081-5.674 2.703-8.377 4.594 5.675.54 11.35 1.351 16.755 1.891 1.869-5.619 12.535-8.377 21.077-8.377 1.621-5.405 6.756-11.89 14.052-10.269s14.052 9.998 14.863 15.944c10.809 4.324 22.159 12.16 25.131 25.672 1.892 8.107 1.621 15.133.27 21.888-5.726 25.262-33.361 36.212-45.939 36.212 0 6.756 0 13.241-.27 19.726 8.01-6.006 16.367-7.158 26.752-5.675 5.919-5.919 17.565-9.41 17.565 5.675 5.675 2.703 11.349 5.945 15.944 9.188 10.1-5.051 13.669-.539 10.809 9.188 4.053 4.323 8.107 8.917 11.079 13.782 10.136-3.62 11.021 2.078 5.409 11.62zm-73.773-254.016c17.295 6.756 26.212 22.159 30.265 35.67 1.081-10.539-2.702-39.453-13.782-51.073-7.296-7.296-14.052-5.134-14.052.81.001 6.216-1.35 11.62-2.431 14.593zm-18.646 12.43c12.971 15.673 17.024 41.615 12.7 62.963 10.809-2.162 20.537-6.215 26.212-12.16 1.892-2.162 3.783-4.864 4.864-7.566-1.081-21.348-10.269-42.697-29.725-48.912-3.242 3.243-9.187 4.864-14.051 5.675zm-21.889.811c7.567 20.537 12.431 42.696 14.322 64.585 3.513 0 7.567-.27 11.62-.811 5.945-24.321-.27-51.614-14.052-63.504-3.783 0-8.107 0-11.89-.27zM77.768 167.372c-1.081-2.973-2.432-8.377-2.432-14.593 0-5.945-7.026-8.107-14.052-.81-11.35 11.62-14.863 40.534-13.782 51.073 4.053-13.512 12.971-28.915 30.266-35.67zm5.675 75.394c-4.324-21.348-.27-47.291 12.701-62.963-4.865-.811-10.809-2.432-14.052-5.675-19.457 6.215-28.375 27.563-29.726 48.912 1.351 2.702 2.972 5.404 4.864 7.566 5.675 6.215 15.403 9.998 26.213 12.16zm41.345-61.073c-5.134 1.081-9.998 2.973-14.862 4.865l-12.16 5.134v-.27c-7.296 14.052-9.999 34.319-5.405 52.965 4.594.541 8.647.811 12.7.811 2.432-22.159 9.188-43.778 19.727-63.505zm88.095-23.239c0 42.155 34.319 76.205 76.205 76.205s76.205-34.05 76.205-76.205c0-41.886-34.319-75.935-76.205-75.935s-76.205 34.049-76.205 75.935zm152.41 97.283c9.969 50.608 3.299 64.692 16.484 58.099 15.944-8.107 22.699-39.183 22.97-57.019-12.971-.81-26.213-.81-39.454-1.08zm-71.611-.541v-.27c-.27 5.134.27 38.103 4.324 41.075 11.079 5.405 39.453 4.594 51.073 1.081 5.405-1.621 2.432-37.022 1.621-41.886-18.916-.27-38.102-.27-57.018 0zm-14.053 0v-.27c-19.456.27-38.642.27-57.829.811-1.892 9.187-4.594 48.911 1.892 51.614 12.971 5.675 41.616 5.134 54.586 1.621 4.595-2.432 2.433-45.399 1.351-53.776zm-85.662 57.56c5.405 2.432 8.647 2.432 9.728-4.324 1.892-8.647 2.432-36.752 4.865-52.155-12.16.27-24.591.811-36.752 1.621-5.405 19.727.27 45.129 22.159 54.858zm-65.666-11.08c43.778 47.02 92.689 85.663 155.923 106.47 67.558-19.186 115.659-59.991 163.219-107.011-11.095-4.315-7.715-10.363-7.296-11.62-8.918-.81-17.835-1.892-26.483-2.702-9.458 32.968-35.94 52.965-46.75 31.616-2.702-5.134-3.513-11.62-4.594-16.754-3.783 8.377-13.242 8.107-24.591 8.918-13.241 1.081-31.617 1.351-44.048-2.972-2.972 12.971-11.079 12.971-26.752 14.322-14.052 1.352-48.642 4.054-54.857-10.809-1.081 28.644-35.13 9.998-45.129-7.026-3.243-5.675-5.405-11.35-7.026-17.565-7.837.81-15.673 1.621-23.511 2.702 2.443 3.663 1.549 9.052-8.105 12.431zM115.6 453.545c-5.674-23.239-18.646-49.722-33.508-54.046-22.429-6.756-68.909 23.51-66.207 54.586 12.701 19.457 39.994 35.67 59.181 36.481 17.835.81 35.94-11.08 39.724-28.914.539-2.432.81-5.134.81-8.107zm7.296-5.944c33.509-19.457 69.179-35.671 105.931-47.02-38.643-20.537-68.098-47.831-97.283-77.016-2.162 1.352-5.134 2.432-7.836 3.513-1.637 4.91 8.718 5.33 5.405 12.431-2.162 4.054-8.648 7.567-15.133 9.188-2.161 2.702-5.134 4.864-7.836 6.485h-.27c-.27 13.511-.27 27.024.27 40.535 8.939 15.964 15.426 33.314 16.752 51.884zm320.764 12.7c-36.752-21.348-74.044-41.345-115.659-52.965-13.782 6.215-27.833 11.349-42.155 15.403-2.162.811-2.162.811-4.324 0-11.89-3.783-23.239-8.107-34.859-13.241-40.265 11.62-77.286 29.185-112.416 50.803h-.27v.27c.27 0 .27 0 .27-.27 103.227 4.054 206.455 3.513 309.413 0zm27.023-64.045l-.27.27c.541-13.782.811-27.563.811-41.345-2.973-1.621-5.675-4.054-8.107-6.756-6.485-1.351-12.971-5.134-15.133-8.918-1.892-4.053 1.351-7.566 5.945-10.269-.27-.541-.541-1.621-.541-2.432-2.972-.811-5.405-1.892-7.567-3.243-31.616 29.455-65.396 56.749-103.498 76.746 38.914 11.62 75.935 28.104 111.875 47.561 1.05-14.692 7.231-35.749 16.485-51.614zm23.24 3.244c-14.593 4.323-27.834 30.806-33.509 54.046 0 23.826 21.278 37.897 40.534 37.022 19.186-.811 46.48-17.024 59.181-36.481 2.973-31.077-43.507-61.344-66.206-54.587zM290.709 134.133c.045 0 .089.003.134.003.046 0 .09-.003.136-.003h-.27zm0 96.743c28.645 0 51.884-21.618 51.884-48.371 0-36.092-40.507-58.079-72.151-44.318 9.458 2.972 16.484 11.62 16.484 21.618 0 23.257-33.291 31.955-46.48 11.35-7.297 34.067 19.368 59.721 50.263 59.721zM68.039 474.083c.54 6.486 12.16 12.701 21.618 9.458 6.756-2.703 14.593-10.539 17.295-16.214 2.973-7.026-1.081-19.997-9.728-18.375-8.917 1.621-29.725 16.754-29.185 25.131zm410.75-25.131c-8.377-1.621-12.431 11.349-9.458 18.375 2.432 5.675 10.269 13.511 17.295 16.214 9.187 3.243 21.078-2.972 21.348-9.458.811-8.377-20.267-23.51-29.185-25.131z" + } + } + }, + "osi": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f41a", + "label": "Open Source Initiative", + "svg": { + "brands": { + "last_modified": 1507669930674, + "raw": "", + "viewBox": [ + "0", + "0", + "495.8", + "512" + ], + "width": 495, + "height": 512, + "path": "M0 259.2C2.3 123.4 97.4 26.8 213.8 11.1c138.8-18.6 255.6 75.8 278 201.1 21.3 118.8-44 230-151.6 274-9.3 3.8-14.4 1.7-18-7.7-17.8-46.3-35.6-92.7-53.4-139-3.1-8.1-1-13.2 7-16.8 24.2-11 39.3-29.4 43.3-55.8 6.4-42.4-24.5-78.7-64.5-82.2-39-3.4-71.8 23.7-77.5 59.7-5.2 33 11.1 63.7 41.9 77.7 9.6 4.4 11.5 8.6 7.8 18.4-17.9 46.6-35.8 93.2-53.7 139.9-2.6 6.9-8.3 9.3-15.5 6.5-52.6-20.3-101.4-61-130.8-119C1.9 318.7 1.6 280.2 0 259.2zm20.9-1.9c.4 6.6.6 14.3 1.3 22.1 6.3 71.9 49.6 143.5 131 183.1 3.2 1.5 4.4.8 5.6-2.3 14.9-39.1 29.9-78.2 45-117.3 1.3-3.3.6-4.8-2.4-6.7-31.6-19.9-47.3-48.5-45.6-86 1-21.6 9.3-40.5 23.8-56.3 30-32.7 77-39.8 115.5-17.6 31.9 18.4 49.5 53.8 45.2 90.4-3.6 30.6-19.3 53.9-45.7 69.8-2.7 1.6-3.5 2.9-2.3 6 15.2 39.2 30.2 78.4 45.2 117.7 1.2 3.1 2.4 3.8 5.6 2.3 35.5-16.6 65.2-40.3 88.1-72 34.8-48.2 49.1-101.9 42.3-161C459.8 112 354.1 14.7 218 31.5 111.9 44.5 22.7 134 20.9 257.3z" + } + } + }, + "outdent": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f03b", + "label": "Outdent", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm208 144h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm192-128h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM4.687 267.313l96 95.984C110.734 373.348 128 366.224 128 351.984V160.008c0-14.329-17.325-21.304-27.313-11.313l-96 95.992c-6.249 6.248-6.249 16.378 0 22.626z" + } + } + }, + "page4": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d7", + "label": "page4 Corporation", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 504C111 504 0 393 0 256S111 8 248 8c20.9 0 41.3 2.6 60.7 7.5L42.3 392H248v112zm0-143.6V146.8L98.6 360.4H248zm96 31.6v92.7c45.7-19.2 84.5-51.7 111.4-92.7H344zm57.4-138.2l-21.2 8.4 21.2 8.3v-16.7zm-20.3 54.5c-6.7 0-8 6.3-8 12.9v7.7h16.2v-10c0-5.9-2.3-10.6-8.2-10.6zM496 256c0 37.3-8.2 72.7-23 104.4H344V27.3C433.3 64.8 496 153.1 496 256zM360.4 143.6h68.2V96h-13.9v32.6h-13.9V99h-13.9v29.6h-12.7V96h-13.9v47.6zm68.1 185.3H402v-11c0-15.4-5.6-25.2-20.9-25.2-15.4 0-20.7 10.6-20.7 25.9v25.3h68.2v-15zm0-103l-68.2 29.7V268l68.2 29.5v-16.6l-14.4-5.7v-26.5l14.4-5.9v-16.9zm-4.8-68.5h-35.6V184H402v-12.2h11c8.6 15.8 1.3 35.3-18.6 35.3-22.5 0-28.3-25.3-15.5-37.7l-11.6-10.6c-16.2 17.5-12.2 63.9 27.1 63.9 34 0 44.7-35.9 29.3-65.3z" + } + } + }, + "pagelines": { + "changes": [ + "4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "eco", + "leaf", + "leaves", + "nature", + "plant", + "tree" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f18c", + "label": "Pagelines", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M384 312.7c-55.1 136.7-187.1 54-187.1 54-40.5 81.8-107.4 134.4-184.6 134.7-16.1 0-16.6-24.4 0-24.4 64.4-.3 120.5-42.7 157.2-110.1-41.1 15.9-118.6 27.9-161.6-82.2 109-44.9 159.1 11.2 178.3 45.5 9.9-24.4 17-50.9 21.6-79.7 0 0-139.7 21.9-149.5-98.1 119.1-47.9 152.6 76.7 152.6 76.7 1.6-16.7 3.3-52.6 3.3-53.4 0 0-106.3-73.7-38.1-165.2 124.6 43 61.4 162.4 61.4 162.4.5 1.6.5 23.8 0 33.4 0 0 45.2-89 136.4-57.5-4.2 134-141.9 106.4-141.9 106.4-4.4 27.4-11.2 53.4-20 77.5 0 0 83-91.8 172-20z" + } + } + }, + "paint-brush": { + "changes": [ + "4.2", + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f1fc", + "label": "Paint Brush", + "svg": { + "solid": { + "last_modified": 1529520111690, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M167.02 309.34c-40.12 2.58-76.53 17.86-97.19 72.3-2.35 6.21-8 9.98-14.59 9.98-11.11 0-45.46-27.67-55.25-34.35C0 439.62 37.93 512 128 512c75.86 0 128-43.77 128-120.19 0-3.11-.65-6.08-.97-9.13l-88.01-73.34zM457.89 0c-15.16 0-29.37 6.71-40.21 16.45C213.27 199.05 192 203.34 192 257.09c0 13.7 3.25 26.76 8.73 38.7l63.82 53.18c7.21 1.8 14.64 3.03 22.39 3.03 62.11 0 98.11-45.47 211.16-256.46 7.38-14.35 13.9-29.85 13.9-45.99C512 20.64 486 0 457.89 0z" + } + } + }, + "paint-roller": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "brush", + "painting", + "tool" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5aa", + "label": "Paint Roller", + "svg": { + "solid": { + "last_modified": 1529520111691, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M416 128V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32h352c17.67 0 32-14.33 32-32zm32-64v128c0 17.67-14.33 32-32 32H256c-35.35 0-64 28.65-64 64v32c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32v-32h160c53.02 0 96-42.98 96-96v-64c0-35.35-28.65-64-64-64z" + } + } + }, + "palette": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "colors", + "painting" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f53f", + "label": "Palette", + "svg": { + "solid": { + "last_modified": 1525967154575, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" + } + } + }, + "palfed": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d8", + "label": "Palfed", + "svg": { + "brands": { + "last_modified": 1515426582000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M384.9 193.9c0-47.4-55.2-44.2-95.4-29.8-1.3 39.4-2.5 80.7-3 119.8.7 2.8 2.6 6.2 15.1 6.2 36.8 0 83.4-42.8 83.3-96.2zm-194.5 72.2c.2 0 6.5-2.7 11.2-2.7 26.6 0 20.7 44.1-14.4 44.1-21.5 0-37.1-18.1-37.1-43 0-42 42.9-95.6 100.7-126.5 1-12.4 3-22 10.5-28.2 11.2-9 26.6-3.5 29.5 11.1 72.2-22.2 135.2 1 135.2 72 0 77.9-79.3 152.6-140.1 138.2-.1 39.4.9 74.4 2.7 100v.2c.2 3.4.6 12.5-5.3 19.1-9.6 10.6-33.4 10-36.4-22.3-4.1-44.4.2-206.1 1.4-242.5-21.5 15-58.5 50.3-58.5 75.9.2 2.5.4 4 .6 4.6zM8 181.1s-.1 37.4 38.4 37.4h30l22.4 217.2s0 44.3 44.7 44.3h288.9s44.7-.4 44.7-44.3l22.4-217.2h30s38.4 1.2 38.4-37.4c0 0 .1-37.4-38.4-37.4h-30.1c-7.3-25.6-30.2-74.3-119.4-74.3h-28V50.3s-2.7-18.4-21.1-18.4h-85.8s-21.1 0-21.1 18.4v19.1h-28.1s-105 4.2-120.5 74.3h-29S8 142.5 8 181.1z" + } + } + }, + "pallet": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f482", + "label": "Pallet", + "svg": { + "solid": { + "last_modified": 1521653821454, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M144 256h352c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H384v128l-64-32-64 32V0H144c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16zm480 128c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v64H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-64h48zm-336 64H128v-64h160v64zm224 0H352v-64h160v64z" + } + } + }, + "paper-plane": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1d8", + "label": "Paper Plane", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M476 3.2L12.5 270.6c-18.1 10.4-15.8 35.6 2.2 43.2L121 358.4l287.3-253.2c5.5-4.9 13.3 2.6 8.6 8.3L176 407v80.5c0 23.6 28.5 32.9 42.5 15.8L282 426l124.6 52.2c14.2 6 30.4-2.9 33-18.2l72-432C515 7.8 493.3-6.8 476 3.2z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z" + } + } + }, + "paperclip": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attachment" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0c6", + "label": "Paperclip", + "svg": { + "solid": { + "last_modified": 1521653821455, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z" + } + } + }, + "parachute-box": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "aid", + "assistance", + "rescue", + "supplies" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4cd", + "label": "Parachute Box", + "svg": { + "solid": { + "last_modified": 1522083406023, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M511.9 175c-9.1-75.6-78.4-132.4-158.3-158.7C390 55.7 416 116.9 416 192h28.1L327.5 321.5c-2.5-.6-4.8-1.5-7.5-1.5h-48V192h112C384 76.8 315.1 0 256 0S128 76.8 128 192h112v128h-48c-2.7 0-5 .9-7.5 1.5L67.9 192H96c0-75.1 26-136.3 62.4-175.7C78.5 42.7 9.2 99.5.1 175c-1.1 9.1 6.8 17 16 17h8.7l136.7 151.9c-.7 2.6-1.6 5.2-1.6 8.1v128c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32V352c0-2.9-.9-5.4-1.6-8.1L487.1 192h8.7c9.3 0 17.2-7.8 16.1-17z" + } + } + }, + "paragraph": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f1dd", + "label": "paragraph", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M408 32H177.531C88.948 32 16.045 103.335 16 191.918 15.956 280.321 87.607 352 176 352v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h32v344c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h40c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24z" + } + } + }, + "parking": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f540", + "label": "Parking", + "svg": { + "solid": { + "last_modified": 1525967154575, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM240 320h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h96c52.9 0 96 43.1 96 96s-43.1 96-96 96zm0-128h-48v64h48c17.6 0 32-14.4 32-32s-14.4-32-32-32z" + } + } + }, + "passport": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "identification", + "issued" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5ab", + "label": "Passport", + "svg": { + "solid": { + "last_modified": 1529520111691, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M129.62 176h39.09c1.49-27.03 6.54-51.35 14.21-70.41-27.71 13.24-48.02 39.19-53.3 70.41zm0 32c5.29 31.22 25.59 57.17 53.3 70.41-7.68-19.06-12.72-43.38-14.21-70.41h-39.09zM224 286.69c7.69-7.45 20.77-34.42 23.43-78.69h-46.87c2.67 44.26 15.75 71.24 23.44 78.69zM200.57 176h46.87c-2.66-44.26-15.74-71.24-23.43-78.69-7.7 7.45-20.78 34.43-23.44 78.69zm64.51 102.41c27.71-13.24 48.02-39.19 53.3-70.41h-39.09c-1.49 27.03-6.53 51.35-14.21 70.41zM416 0H64C28.65 0 0 28.65 0 64v384c0 35.35 28.65 64 64 64h352c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32zm-80 416H112c-8.8 0-16-7.2-16-16s7.2-16 16-16h224c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-112-96c-70.69 0-128-57.31-128-128S153.31 64 224 64s128 57.31 128 128-57.31 128-128 128zm41.08-214.41c7.68 19.06 12.72 43.38 14.21 70.41h39.09c-5.28-31.22-25.59-57.17-53.3-70.41z" + } + } + }, + "paste": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clipboard", + "copy" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0ea", + "label": "Paste", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M128 184c0-30.879 25.122-56 56-56h136V56c0-13.255-10.745-24-24-24h-80.61C204.306 12.89 183.637 0 160 0s-44.306 12.89-55.39 32H24C10.745 32 0 42.745 0 56v336c0 13.255 10.745 24 24 24h104V184zm32-144c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24zm184 248h104v200c0 13.255-10.745 24-24 24H184c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.059V256h-96v-96h6.059a24 24 0 0 1 16.97 7.029l65.941 65.941a24.002 24.002 0 0 1 7.03 16.971z" + } + } + }, + "patreon": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d9", + "label": "Patreon", + "svg": { + "brands": { + "last_modified": 1521653821387, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z" + } + } + }, + "pause": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "wait" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f04c", + "label": "pause", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z" + } + } + }, + "pause-circle": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f28b", + "label": "Pause Circle", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-16 328c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160zm112 0c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm96-280v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16zm-112 0v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16z" + } + } + }, + "paw": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "pet" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1b0", + "label": "Paw", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M85.231 330.958C36 330.958 0 273.792 0 231.5c0-28.292 16-58.042 49.538-58.042 49.231 0 85.231 57.458 85.231 99.75 0 28.292-15.692 57.75-49.538 57.75zm348 106.167c0 37.042-32 42.875-63.385 42.875-41.231 0-74.462-26.25-113.846-26.25-41.231 0-76.308 25.958-120.923 25.958-29.847 0-56.308-9.625-56.308-42.583C78.769 368 180.616 265.333 256 265.333s177.231 102.959 177.231 171.792zM182.462 203.792c-49.847 0-80-59.5-80-100.333C102.462 70.792 120.308 32 160 32c50.154 0 80 59.5 80 100.333 0 32.667-17.846 71.459-57.538 71.459zM272 132.333C272 91.5 301.846 32 352 32c39.692 0 57.539 38.792 57.539 71.458 0 40.833-30.154 100.333-80.001 100.333C289.846 203.792 272 165 272 132.333zM512 231.5c0 42.292-36 99.458-85.231 99.458-33.847 0-49.538-29.458-49.538-57.75 0-42.291 35.999-99.75 85.231-99.75C496 173.458 512 203.208 512 231.5z" + } + } + }, + "paypal": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1ed", + "label": "Paypal", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z" + } + } + }, + "pen": { + "changes": [ + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "edit", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f304", + "label": "Pen", + "svg": { + "solid": { + "last_modified": 1529520111694, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M290.74 93.24l128.02 128.02-277.99 277.99-114.14 12.6C11.35 513.54-1.56 500.62.14 485.34l12.7-114.22 277.9-277.88zm207.2-19.06l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.76 18.75-49.16 0-67.91z" + } + } + }, + "pen-alt": { + "changes": [ + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "edit", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f305", + "label": "Alternate Pen", + "svg": { + "solid": { + "last_modified": 1529520111692, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M497.94 74.17l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91zm-246.8-20.53c-15.62-15.62-40.94-15.62-56.56 0L75.8 172.43c-6.25 6.25-6.25 16.38 0 22.62l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l101.82-101.82 22.63 22.62L93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l196.79-196.79-82.77-82.77-84.85-84.85z" + } + } + }, + "pen-fancy": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "edit", + "fountain pen", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5ac", + "label": "Pen Fancy", + "svg": { + "solid": { + "last_modified": 1529520111693, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M79.18 282.94a32.005 32.005 0 0 0-20.24 20.24L0 480l4.69 4.69 92.89-92.89c-.66-2.56-1.57-5.03-1.57-7.8 0-17.67 14.33-32 32-32s32 14.33 32 32-14.33 32-32 32c-2.77 0-5.24-.91-7.8-1.57l-92.89 92.89L32 512l176.82-58.94a31.983 31.983 0 0 0 20.24-20.24l33.07-84.07-98.88-98.88-84.07 33.07zM369.25 28.32L186.14 227.81l97.85 97.85 199.49-183.11C568.4 67.48 443.73-55.94 369.25 28.32z" + } + } + }, + "pen-nib": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "edit", + "fountain pen", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5ad", + "label": "Pen Nib", + "svg": { + "solid": { + "last_modified": 1529520111693, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M136.6 138.79a64.003 64.003 0 0 0-43.31 41.35L0 460l14.69 14.69L164.8 324.58c-2.99-6.26-4.8-13.18-4.8-20.58 0-26.51 21.49-48 48-48s48 21.49 48 48-21.49 48-48 48c-7.4 0-14.32-1.81-20.58-4.8L37.31 497.31 52 512l279.86-93.29a64.003 64.003 0 0 0 41.35-43.31L416 224 288 96l-151.4 42.79zm361.34-64.62l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91z" + } + } + }, + "pen-square": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "pencil-square", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f14b", + "label": "Pen Square", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zM238.1 177.9L102.4 313.6l-6.3 57.1c-.8 7.6 5.6 14.1 13.3 13.3l57.1-6.3L302.2 242c2.3-2.3 2.3-6.1 0-8.5L246.7 178c-2.5-2.4-6.3-2.4-8.6-.1zM345 165.1L314.9 135c-9.4-9.4-24.6-9.4-33.9 0l-23.1 23.1c-2.3 2.3-2.3 6.1 0 8.5l55.5 55.5c2.3 2.3 6.1 2.3 8.5 0L345 199c9.3-9.3 9.3-24.5 0-33.9z" + } + } + }, + "pencil-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "edit", + "pencil", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f303", + "label": "Alternate Pencil", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z" + } + } + }, + "pencil-ruler": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f5ae", + "label": "Pencil Ruler", + "svg": { + "solid": { + "last_modified": 1529520111694, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M109.46 244.04l134.58-134.56-44.12-44.12-61.68 61.68a7.919 7.919 0 0 1-11.21 0l-11.21-11.21c-3.1-3.1-3.1-8.12 0-11.21l61.68-61.68-33.64-33.65C131.47-3.1 111.39-3.1 99 9.29L9.29 99c-12.38 12.39-12.39 32.47 0 44.86l100.17 100.18zm388.47-116.8c18.76-18.76 18.75-49.17 0-67.93l-45.25-45.25c-18.76-18.76-49.18-18.76-67.95 0l-46.02 46.01 113.2 113.2 46.02-46.03zM316.08 82.71l-297 296.96L.32 487.11c-2.53 14.49 10.09 27.11 24.59 24.56l107.45-18.84L429.28 195.9 316.08 82.71zm186.63 285.43l-33.64-33.64-61.68 61.68c-3.1 3.1-8.12 3.1-11.21 0l-11.21-11.21c-3.09-3.1-3.09-8.12 0-11.21l61.68-61.68-44.14-44.14L267.93 402.5l100.21 100.2c12.39 12.39 32.47 12.39 44.86 0l89.71-89.7c12.39-12.39 12.39-32.47 0-44.86z" + } + } + }, + "people-carry": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "movers" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4ce", + "label": "People Carry", + "svg": { + "solid": { + "last_modified": 1521653821455, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M128 96c26.5 0 48-21.5 48-48S154.5 0 128 0 80 21.5 80 48s21.5 48 48 48zm384 0c26.5 0 48-21.5 48-48S538.5 0 512 0s-48 21.5-48 48 21.5 48 48 48zm125.7 372.1l-44-110-41.1 46.4-2 18.2 27.7 69.2c5 12.5 17 20.1 29.7 20.1 4 0 8-.7 11.9-2.3 16.4-6.6 24.4-25.2 17.8-41.6zm-34.2-209.8L585 178.1c-4.6-20-18.6-36.8-37.5-44.9-18.5-8-39-6.7-56.1 3.3-22.7 13.4-39.7 34.5-48.1 59.4L432 229.8 416 240v-96c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16v96l-16.1-10.2-11.3-33.9c-8.3-25-25.4-46-48.1-59.4-17.2-10-37.6-11.3-56.1-3.3-18.9 8.1-32.9 24.9-37.5 44.9l-18.4 80.2c-4.6 20 .7 41.2 14.4 56.7l67.2 75.9 10.1 92.6C130 499.8 143.8 512 160 512c1.2 0 2.3-.1 3.5-.2 17.6-1.9 30.2-17.7 28.3-35.3l-10.1-92.8c-1.5-13-6.9-25.1-15.6-35l-43.3-49 17.6-70.3 6.8 20.4c4.1 12.5 11.9 23.4 24.5 32.6l51.1 32.5c4.6 2.9 12.1 4.6 17.2 5h160c5.1-.4 12.6-2.1 17.2-5l51.1-32.5c12.6-9.2 20.4-20 24.5-32.6l6.8-20.4 17.6 70.3-43.3 49c-8.7 9.9-14.1 22-15.6 35l-10.1 92.8c-1.9 17.6 10.8 33.4 28.3 35.3 1.2.1 2.3.2 3.5.2 16.1 0 30-12.1 31.8-28.5l10.1-92.6 67.2-75.9c13.6-15.5 19-36.7 14.4-56.7zM46.3 358.1l-44 110c-6.6 16.4 1.4 35 17.8 41.6 16.8 6.6 35.1-1.7 41.6-17.8l27.7-69.2-2-18.2-41.1-46.4z" + } + } + }, + "percent": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f295", + "label": "Percent", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M112 224c61.9 0 112-50.1 112-112S173.9 0 112 0 0 50.1 0 112s50.1 112 112 112zm0-160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm224 224c-61.9 0-112 50.1-112 112s50.1 112 112 112 112-50.1 112-112-50.1-112-112-112zm0 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zM392.3.2l31.6-.1c19.4-.1 30.9 21.8 19.7 37.8L77.4 501.6a23.95 23.95 0 0 1-19.6 10.2l-33.4.1c-19.5 0-30.9-21.9-19.7-37.8l368-463.7C377.2 4 384.5.2 392.3.2z" + } + } + }, + "percentage": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f541", + "label": "Percentage", + "svg": { + "solid": { + "last_modified": 1525967154575, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M109.25 173.25c24.99-24.99 24.99-65.52 0-90.51-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 25 25 65.52 25 90.51 0zm256 165.49c-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 24.99 24.99 65.52 24.99 90.51 0 25-24.99 25-65.51 0-90.51zm-1.94-231.43l-22.62-22.62c-12.5-12.5-32.76-12.5-45.25 0L20.69 359.44c-12.5 12.5-12.5 32.76 0 45.25l22.62 22.62c12.5 12.5 32.76 12.5 45.25 0l274.75-274.75c12.5-12.49 12.5-32.75 0-45.25z" + } + } + }, + "periscope": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3da", + "label": "Periscope", + "svg": { + "brands": { + "last_modified": 1501873838000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z" + } + } + }, + "phabricator": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3db", + "label": "Phabricator", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M323 262.1l-.1-13s21.7-19.8 21.1-21.2l-9.5-20c-.6-1.4-29.5-.5-29.5-.5l-9.4-9.3s.2-28.5-1.2-29.1l-20.1-9.2c-1.4-.6-20.7 21-20.7 21l-13.1-.2s-20.5-21.4-21.9-20.8l-20 8.3c-1.4.5.2 28.9.2 28.9l-9.1 9.1s-29.2-.9-29.7.4l-8.1 19.8c-.6 1.4 21 21 21 21l.1 12.9s-21.7 19.8-21.1 21.2l9.5 20c.6 1.4 29.5.5 29.5.5l9.4 9.3s-.2 31.8 1.2 32.3l20.1 8.3c1.4.6 20.7-23.5 20.7-23.5l13.1.2s20.5 23.8 21.8 23.3l20-7.5c1.4-.6-.2-32.1-.2-32.1l9.1-9.1s29.2.9 29.7-.5l8.1-19.8c.7-1.1-20.9-20.7-20.9-20.7zm-44.9-8.7c.7 17.1-12.8 31.6-30.1 32.4-17.3.8-32.1-12.5-32.8-29.6-.7-17.1 12.8-31.6 30.1-32.3 17.3-.8 32.1 12.5 32.8 29.5zm201.2-37.9l-97-97-.1.1c-75.1-73.3-195.4-72.8-269.8 1.6-50.9 51-27.8 27.9-95.7 95.3-22.3 22.3-22.3 58.7 0 81 69.9 69.4 46.4 46 97.4 97l.1-.1c75.1 73.3 195.4 72.9 269.8-1.6 51-50.9 27.9-27.9 95.3-95.3 22.3-22.3 22.3-58.7 0-81zM140.4 363.8c-59.6-59.5-59.6-156 0-215.5 59.5-59.6 156-59.5 215.6 0 59.5 59.5 59.6 156 0 215.6-59.6 59.5-156 59.4-215.6-.1z" + } + } + }, + "phoenix-framework": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3dc", + "label": "Phoenix Framework", + "svg": { + "brands": { + "last_modified": 1515426582001, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M212.9 344.3c3.8-.1 22.8-1.4 25.6-2.2-2.4-2.6-43.6-1-68-49.6-4.3-8.6-7.5-17.6-6.4-27.6 2.9-25.5 32.9-30 52-18.5 36 21.6 63.3 91.3 113.7 97.5 37 4.5 84.6-17 108.2-45.4-.6-.1-.8-.2-1-.1-.4.1-.8.2-1.1.3-33.3 12.1-94.3 9.7-134.7-14.8-37.6-22.8-53.1-58.7-51.8-74.6 1.8-21.3 22.9-23.2 35.9-19.6 14.4 3.9 24.4 17.6 38.9 27.4 15.6 10.4 32.9 13.7 51.3 10.3 14.9-2.7 34.4-12.3 36.5-14.5-1.1-.1-1.8-.1-2.5-.2-6.2-.6-12.4-.8-18.5-1.7C279.8 194.5 262.1 47.4 138.5 37.9 94.2 34.5 39.1 46 2.2 72.9c-.8.6-1.5 1.2-2.2 1.8.1.2.1.3.2.5.8 0 1.6-.1 2.4-.2 6.3-1 12.5-.8 18.7.3 23.8 4.3 47.7 23.1 55.9 76.5 5.3 34.3-.7 50.8 8 86.1 19 77.1 91 107.6 127.7 106.4zM75.3 64.9c-.9-1-.9-1.2-1.3-2 12.1-2.6 24.2-4.1 36.6-4.8-1.1 14.7-22.2 21.3-35.3 6.8zm196.9 350.5c-42.8 1.2-92-26.7-123.5-61.4-4.6-5-16.8-20.2-18.6-23.4l.4-.4c6.6 4.1 25.7 18.6 54.8 27 24.2 7 48.1 6.3 71.6-3.3 22.7-9.3 41-.5 43.1 2.9-18.5 3.8-20.1 4.4-24 7.9-5.1 4.4-4.6 11.7 7 17.2 26.2 12.4 63-2.8 97.2 25.4 2.4 2 8.1 7.8 10.1 10.7-.1.2-.3.3-.4.5-4.8-1.5-16.4-7.5-40.2-9.3-24.7-2-46.3 5.3-77.5 6.2zm174.8-252c16.4-5.2 41.3-13.4 66.5-3.3 16.1 6.5 26.2 18.7 32.1 34.6 3.5 9.4 5.1 19.7 5.1 28.7-.2 0-.4 0-.6.1-.2-.4-.4-.9-.5-1.3-5-22-29.9-43.8-67.6-29.9-50.2 18.6-130.4 9.7-176.9-48-.7-.9-2.4-1.7-1.3-3.2.1-.2 2.1.6 3 1.3 18.1 13.4 38.3 21.9 60.3 26.2 30.5 6.1 54.6 2.9 79.9-5.2zm102.7 117.5c-32.4.2-33.8 50.1-103.6 64.4-18.2 3.7-38.7 4.6-44.9 4.2v-.4c2.8-1.5 14.7-2.6 29.7-16.6 7.9-7.3 15.3-15.1 22.8-22.9 19.5-20.2 41.4-42.2 81.9-39 23.1 1.8 29.3 8.2 36.1 12.7.3.2.4.5.7.9-.5 0-.7.1-.9 0-7-2.7-14.3-3.3-21.8-3.3zm-12.3-24.1c-.1.2-.1.4-.2.6-28.9-4.4-48-7.9-68.5 4-17 9.9-31.4 20.5-62 24.4-27.1 3.4-45.1 2.4-66.1-8-.3-.2-.6-.4-1-.6 0-.2.1-.3.1-.5 24.9 3.8 36.4 5.1 55.5-5.8 22.3-12.9 40.1-26.6 71.3-31 29.6-4.1 51.3 2.5 70.9 16.9zM268.6 97.3c-.6-.6-1.1-1.2-2.1-2.3 7.6 0 29.7-1.2 53.4 8.4 19.7 8 32.2 21 50.2 32.9 11.1 7.3 23.4 9.3 36.4 8.1 4.3-.4 8.5-1.2 12.8-1.7.4-.1.9 0 1.5.3-.6.4-1.2.9-1.8 1.2-8.1 4-16.7 6.3-25.6 7.1-26.1 2.6-50.3-3.7-73.4-15.4-19.3-9.9-36.4-22.9-51.4-38.6zM640 335.7c-3.5 3.1-22.7 11.6-42.7 5.3-12.3-3.9-19.5-14.9-31.6-24.1-10-7.6-20.9-7.9-28.1-8.4.6-.8.9-1.2 1.2-1.4 14.8-9.2 30.5-12.2 47.3-6.5 12.5 4.2 19.2 13.5 30.4 24.2 10.8 10.4 21 9.9 23.1 10.5.1-.1.2 0 .4.4zm-212.5 137c2.2 1.2 1.6 1.5 1.5 2-18.5-1.4-33.9-7.6-46.8-22.2-21.8-24.7-41.7-27.9-48.6-29.7.5-.2.8-.4 1.1-.4 13.1.1 26.1.7 38.9 3.9 25.3 6.4 35 25.4 41.6 35.3 3.2 4.8 7.3 8.3 12.3 11.1z" + } + } + }, + "phoenix-squadron": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f511", + "label": "Phoenix Squadron", + "svg": { + "brands": { + "last_modified": 1525376442522, + "raw": "", + "viewBox": [ + "0", + "0", + "513.52", + "512" + ], + "width": 513, + "height": 512, + "path": "M96.24 62.81C142.91 26.57 202.15 6.57 261.28 8.08c29.67-.38 59.29 5.38 87.17 15.37-24.2-4.64-49.18-6.35-73.6-2.45-43 5.35-83.26 27.23-112.16 59.35 5.69-.99 10.81-3.68 16.07-5.88 18.19-7.89 37.6-13.29 57.4-14.87 19.8-2.14 39.75-.43 59.45 1.93-14.46 2.79-29.2 4.58-43.11 9.61-34.53 11.11-65.46 33.26-86.55 62.82-13.84 19.77-23.7 42.99-24.74 67.33-.35 16.54 5.23 34.91 19.89 44.17 11.13 6.66 24.85 9.39 37.63 6.76 15.49-2.47 30.16-8.67 43.73-16.38 11.55-6.84 22.73-14.59 32.05-24.32 3.8-3.23 2.54-8.48 2.63-12.83-2.13-.34-4.4-1.11-6.32.3a203.975 203.975 0 0 1-35.93 15.42c-20.07 6.19-42.28 8.48-62.28.78 12.83 1.73 26.14.31 37.85-5.46 20.29-9.75 36.92-25.27 54.6-38.88 27.84-21.29 57.64-40.11 89.17-55.47 25.78-12.01 53.09-22.85 81.81-24.2-15.68 13.76-32.25 26.6-46.92 41.51-14.55 14.04-27.54 29.58-40.23 45.31-3.53 4.61-8.98 6.96-13.62 10.19-22.24 15.03-40.6 35.96-52.04 60.28-9.36 19.74-14.55 41.97-11.81 63.84 1.95 13.73 8.74 27.67 20.96 35.01 12.94 7.99 29.14 8.09 43.61 5.11 32.9-7.47 61.61-28.97 81.28-56 20.5-27.6 30.61-62.38 29.25-96.64-.52-7.52-1.58-15-1.67-22.55 8.02 19.54 14.87 39.83 16.7 61.01 2.01 14.32.75 28.84-1.62 43.02-1.92 11.02-5.69 21.58-7.81 32.53 20.36-22.73 34.17-51.24 39.46-81.31 5.72-35.37.58-72.36-14.25-104.95 20.84 32.12 32.43 69.79 35.81 107.8.5 12.77.5 25.58 0 38.34-2.91 34.26-12.97 67.95-29.76 98-26.2 47.48-68.2 85.89-117.54 108.32-78.52 36.34-175.2 31.41-248.72-14.72-38.84-23.78-71.06-58.32-91.68-98.96C10.72 337.43 2.04 305.5 0 273.13V241.7c3.94-69.97 40.99-136.32 96.24-178.89m222.65 80.57c5.51-.8 10.82-2.57 16.02-4.5 4.99-1.77 9.27-5.95 10.35-11.25-8.91 5-17.95 9.95-26.37 15.75z" + } + } + }, + "phone": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "call", + "earphone", + "number", + "support", + "telephone", + "voice" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f095", + "label": "Phone", + "svg": { + "solid": { + "last_modified": 1522083406025, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z" + } + } + }, + "phone-slash": { + "changes": [ + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f3dd", + "label": "Phone Slash", + "svg": { + "solid": { + "last_modified": 1522083406024, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M268.2 381.4l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48c-10.7 4.6-16.5 16.1-13.9 27.5l24 104c2.5 10.8 12.1 18.6 23.4 18.6 100.7 0 193.7-32.4 269.7-86.9l-80-61.8c-10.9 6.5-22.1 12.7-33.6 18.1zm365.6 76.7L475.1 335.5C537.9 256.4 576 156.9 576 48c0-11.2-7.7-20.9-18.6-23.4l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-12.2 26.1-27.9 50.3-46 72.8L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z" + } + } + }, + "phone-square": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "call", + "number", + "support", + "telephone", + "voice" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f098", + "label": "Phone Square", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM94 416c-7.033 0-13.057-4.873-14.616-11.627l-14.998-65a15 15 0 0 1 8.707-17.16l69.998-29.999a15 15 0 0 1 17.518 4.289l30.997 37.885c48.944-22.963 88.297-62.858 110.781-110.78l-37.886-30.997a15.001 15.001 0 0 1-4.289-17.518l30-69.998a15 15 0 0 1 17.16-8.707l65 14.998A14.997 14.997 0 0 1 384 126c0 160.292-129.945 290-290 290z" + } + } + }, + "phone-volume": { + "changes": [ + "4.6", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [ + "telephone", + "volume-control-phone" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2a0", + "label": "Phone Volume", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M97.333 506.966c-129.874-129.874-129.681-340.252 0-469.933 5.698-5.698 14.527-6.632 21.263-2.422l64.817 40.513a17.187 17.187 0 0 1 6.849 20.958l-32.408 81.021a17.188 17.188 0 0 1-17.669 10.719l-55.81-5.58c-21.051 58.261-20.612 122.471 0 179.515l55.811-5.581a17.188 17.188 0 0 1 17.669 10.719l32.408 81.022a17.188 17.188 0 0 1-6.849 20.958l-64.817 40.513a17.19 17.19 0 0 1-21.264-2.422zM247.126 95.473c11.832 20.047 11.832 45.008 0 65.055-3.95 6.693-13.108 7.959-18.718 2.581l-5.975-5.726c-3.911-3.748-4.793-9.622-2.261-14.41a32.063 32.063 0 0 0 0-29.945c-2.533-4.788-1.65-10.662 2.261-14.41l5.975-5.726c5.61-5.378 14.768-4.112 18.718 2.581zm91.787-91.187c60.14 71.604 60.092 175.882 0 247.428-4.474 5.327-12.53 5.746-17.552.933l-5.798-5.557c-4.56-4.371-4.977-11.529-.93-16.379 49.687-59.538 49.646-145.933 0-205.422-4.047-4.85-3.631-12.008.93-16.379l5.798-5.557c5.022-4.813 13.078-4.394 17.552.933zm-45.972 44.941c36.05 46.322 36.108 111.149 0 157.546-4.39 5.641-12.697 6.251-17.856 1.304l-5.818-5.579c-4.4-4.219-4.998-11.095-1.285-15.931 26.536-34.564 26.534-82.572 0-117.134-3.713-4.836-3.115-11.711 1.285-15.931l5.818-5.579c5.159-4.947 13.466-4.337 17.856 1.304z" + } + } + }, + "php": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f457", + "label": "PHP", + "svg": { + "brands": { + "last_modified": 1518899527949, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z" + } + } + }, + "pied-piper": { + "changes": [ + "4.6", + "5.0.0", + "5.0.10" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2ae", + "label": "Pied Piper Logo", + "svg": { + "brands": { + "last_modified": 1523653480522, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M32 419L0 479.2l.8-328C.8 85.3 54 32 120 32h327.2c-93 28.9-189.9 94.2-253.9 168.6C122.7 282 82.6 338 32 419M448 32S305.2 98.8 261.6 199.1c-23.2 53.6-28.9 118.1-71 158.6-28.9 27.8-69.8 38.2-105.3 56.3-23.2 12-66.4 40.5-84.9 66h328.4c66 0 119.3-53.3 119.3-119.2-.1 0-.1-328.8-.1-328.8z" + } + } + }, + "pied-piper-alt": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a8", + "label": "Alternate Pied Piper Logo", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M242 187c6.3-11.8 13.2-17 25.9-21.8 27.3-10.3 40.2-30.5 58.9-51.1 11.9 8.4 12 24.6 31.6 23v21.8l6.3.3c37.4-14.4 74.7-30.2 106.6-54.6 48.3-36.8 52.9-50 81.3-100l2-2.6c-.6 14.1-6.3 27.3-12.4 39.9-30.5 63.8-78.7 100.3-146.8 116.7-12.4 2.9-26.4 3.2-37.6 8.9 1.4 9.8 13.2 18.1 13.2 23 0 3.4-5.5 7.2-7.5 8.6-11.2-12.9-16.1-19.3-22.7-22.1-7.6-3.5-63.9-6.4-98.8 10zm137.9 256.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9L244 246zm-12.6 31.8l24.1 61.2 21-13.8-31.3-50.9-13.8 3.5zM555.5 0l-.6 1.1-.3.9.6-.6.3-1.4zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46v27.3l11.8-3.4-2.9-23.8h-8.9zm76.1 2.9c0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3l2 12.4c9-1.5 58.4-6.6 58.4-14.1z" + } + } + }, + "pied-piper-hat": { + "changes": [ + "5.0.10" + ], + "ligatures": [], + "search": { + "terms": [ + "clothing" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f4e5", + "label": "Pied Piper-hat", + "svg": { + "brands": { + "last_modified": 1523653480521, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M640 24.9c-80.8 53.6-89.4 92.5-96.4 104.4-6.7 12.2-11.7 60.3-23.3 83.6-11.7 23.6-54.2 42.2-66.1 50-11.7 7.8-28.3 38.1-41.9 64.2-108.1-4.4-167.4 38.8-259.2 93.6 29.4-9.7 43.3-16.7 43.3-16.7 94.2-36 139.3-68.3 281.1-49.2 1.1 0 1.9.6 2.8.8 3.9 2.2 5.3 6.9 3.1 10.8l-53.9 95.8c-2.5 4.7-7.8 7.2-13.1 6.1-126.8-23.8-226.9 17.3-318.9 18.6C24.1 488 0 453.4 0 451.8c0-1.1.6-1.7 1.7-1.7 0 0 38.3 0 103.1-15.3C178.4 294.5 244 245.4 315.4 245.4c0 0 71.7 0 90.6 61.9 22.8-39.7 28.3-49.2 28.3-49.2 5.3-9.4 35-77.2 86.4-141.4 51.5-64 90.4-79.9 119.3-91.8z" + } + } + }, + "pied-piper-pp": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a7", + "label": "Pied Piper PP Logo (Old)", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M205.3 174.6c0 21.1-14.2 38.1-31.7 38.1-7.1 0-12.8-1.2-17.2-3.7v-68c4.4-2.7 10.1-4.2 17.2-4.2 17.5 0 31.7 16.9 31.7 37.8zm52.6 67c-7.1 0-12.8 1.5-17.2 4.2v68c4.4 2.5 10.1 3.7 17.2 3.7 17.4 0 31.7-16.9 31.7-37.8 0-21.1-14.3-38.1-31.7-38.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM185 255.1c41 0 74.2-35.6 74.2-79.6 0-44-33.2-79.6-74.2-79.6-12 0-24.1 3.2-34.6 8.8h-45.7V311l51.8-10.1v-50.6c8.6 3.1 18.1 4.8 28.5 4.8zm158.4 25.3c0-44-33.2-79.6-73.9-79.6-3.2 0-6.4.2-9.6.7-3.7 12.5-10.1 23.8-19.2 33.4-13.8 15-32.2 23.8-51.8 24.8V416l51.8-10.1v-50.6c8.6 3.2 18.2 4.7 28.7 4.7 40.8 0 74-35.6 74-79.6z" + } + } + }, + "piggy-bank": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "save", + "savings" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4d3", + "label": "Piggy Bank", + "svg": { + "solid": { + "last_modified": 1522083406025, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M560 224h-29.5c-8.8-20-21.6-37.7-37.4-52.5L512 96h-32c-29.4 0-55.4 13.5-73 34.3-7.6-1.1-15.1-2.3-23-2.3H256c-77.4 0-141.9 55-156.8 128H56c-14.8 0-26.5-13.5-23.5-28.8C34.7 215.8 45.4 208 57 208h1c3.3 0 6-2.7 6-6v-20c0-3.3-2.7-6-6-6-28.5 0-53.9 20.4-57.5 48.6C-3.9 258.8 22.7 288 56 288h40c0 52.2 25.4 98.1 64 127.3V496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-48h128v48c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80.7c11.8-8.9 22.3-19.4 31.3-31.3H560c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16zm-128 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM256 96h128c5.4 0 10.7.4 15.9.8 0-.3.1-.5.1-.8 0-53-43-96-96-96s-96 43-96 96c0 2.1.5 4.1.6 6.2 15.2-3.9 31-6.2 47.4-6.2z" + } + } + }, + "pills": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medicine" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f484", + "label": "Pills", + "svg": { + "solid": { + "last_modified": 1521653821456, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M112 32C50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V144c0-61.9-50.1-112-112-112zm48 224H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm139.7-29.7c-3.5-3.5-9.4-3.1-12.3.8-45.3 62.5-40.4 150.1 15.9 206.4 56.3 56.3 143.9 61.2 206.4 15.9 4-2.9 4.3-8.8.8-12.3L299.7 226.3zm229.8-19c-56.3-56.3-143.9-61.2-206.4-15.9-4 2.9-4.3 8.8-.8 12.3l210.8 210.8c3.5 3.5 9.4 3.1 12.3-.8 45.3-62.6 40.5-150.1-15.9-206.4z" + } + } + }, + "pinterest": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f0d2", + "label": "Pinterest", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3.8-3.4 5-20.3 6.9-28.1.6-2.5.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z" + } + } + }, + "pinterest-p": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f231", + "label": "Pinterest P", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z" + } + } + }, + "pinterest-square": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f0d3", + "label": "Pinterest Square", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 80v352c0 26.5-21.5 48-48 48H154.4c9.8-16.4 22.4-40 27.4-59.3 3-11.5 15.3-58.4 15.3-58.4 8 15.3 31.4 28.2 56.3 28.2 74.1 0 127.4-68.1 127.4-152.7 0-81.1-66.2-141.8-151.4-141.8-106 0-162.2 71.1-162.2 148.6 0 36 19.2 80.8 49.8 95.1 4.7 2.2 7.1 1.2 8.2-3.3.8-3.4 5-20.1 6.8-27.8.6-2.5.3-4.6-1.7-7-10.1-12.3-18.3-34.9-18.3-56 0-54.2 41-106.6 110.9-106.6 60.3 0 102.6 41.1 102.6 99.9 0 66.4-33.5 112.4-77.2 112.4-24.1 0-42.1-19.9-36.4-44.4 6.9-29.2 20.3-60.7 20.3-81.8 0-53-75.5-45.7-75.5 25 0 21.7 7.3 36.5 7.3 36.5-31.4 132.8-36.1 134.5-29.6 192.6l2.2.8H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z" + } + } + }, + "plane": { + "changes": [ + "1", + "5.0.0", + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "destination", + "fly", + "location", + "mode", + "travel", + "trip" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f072", + "label": "plane", + "svg": { + "solid": { + "last_modified": 1525967154575, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M480 192H365.71L260.61 8.06A16.014 16.014 0 0 0 246.71 0h-65.5c-10.63 0-18.3 10.17-15.38 20.39L214.86 192H112l-43.2-57.6c-3.02-4.03-7.77-6.4-12.8-6.4H16.01C5.6 128-2.04 137.78.49 147.88L32 256 .49 364.12C-2.04 374.22 5.6 384 16.01 384H56c5.04 0 9.78-2.37 12.8-6.4L112 320h102.86l-49.03 171.6c-2.92 10.22 4.75 20.4 15.38 20.4h65.5c5.74 0 11.04-3.08 13.89-8.06L365.71 320H480c35.35 0 96-28.65 96-64s-60.65-64-96-64z" + } + } + }, + "plane-arrival": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "arriving", + "destination", + "fly", + "land", + "landing", + "location", + "mode", + "travel", + "trip" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5af", + "label": "Plane Arrival", + "svg": { + "solid": { + "last_modified": 1529520111695, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM44.81 205.66l88.74 80a62.607 62.607 0 0 0 25.47 13.93l287.6 78.35c26.48 7.21 54.56 8.72 81 1.36 29.67-8.27 43.44-21.21 47.25-35.71 3.83-14.5-1.73-32.71-23.37-54.96-19.28-19.82-44.35-32.79-70.83-40l-97.51-26.56L282.8 30.22c-1.51-5.81-5.95-10.35-11.66-11.91L206.05.58c-10.56-2.88-20.9 5.32-20.71 16.44l47.92 164.21-102.2-27.84-27.59-67.88c-1.93-4.89-6.01-8.57-11.02-9.93L52.72 64.75c-10.34-2.82-20.53 5-20.72 15.88l.23 101.78c.19 8.91 6.03 17.34 12.58 23.25z" + } + } + }, + "plane-departure": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "departing", + "destination", + "fly", + "location", + "mode", + "take off", + "taking off", + "travel", + "trip" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5b0", + "label": "Plane Departure", + "svg": { + "solid": { + "last_modified": 1529520111695, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM80.55 341.27c6.28 6.84 15.1 10.72 24.33 10.71l130.54-.18a65.62 65.62 0 0 0 29.64-7.12l290.96-147.65c26.74-13.57 50.71-32.94 67.02-58.31 18.31-28.48 20.3-49.09 13.07-63.65-7.21-14.57-24.74-25.27-58.25-27.45-29.85-1.94-59.54 5.92-86.28 19.48l-98.51 49.99-218.7-82.06a17.799 17.799 0 0 0-18-1.11L90.62 67.29c-10.67 5.41-13.25 19.65-5.17 28.53l156.22 98.1-103.21 52.38-72.35-36.47a17.804 17.804 0 0 0-16.07.02L9.91 230.22c-10.44 5.3-13.19 19.12-5.57 28.08l76.21 82.97z" + } + } + }, + "play": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "music", + "playing", + "sound", + "start" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f04b", + "label": "play", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z" + } + } + }, + "play-circle": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "playing", + "start" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f144", + "label": "Play Circle", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M371.7 238l-176-107c-15.8-8.8-35.7 2.5-35.7 21v208c0 18.4 19.8 29.8 35.7 21l176-101c16.4-9.1 16.4-32.8 0-42zM504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256z" + } + } + }, + "playstation": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3df", + "label": "PlayStation", + "svg": { + "brands": { + "last_modified": 1521653821388, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M570.9 372.3c-11.3 14.2-38.8 24.3-38.8 24.3L327 470.2v-54.3l150.9-53.8c17.1-6.1 19.8-14.8 5.8-19.4-13.9-4.6-39.1-3.3-56.2 2.9L327 381.1v-56.4c23.2-7.8 47.1-13.6 75.7-16.8 40.9-4.5 90.9.6 130.2 15.5 44.2 14 49.2 34.7 38 48.9zm-224.4-92.5v-139c0-16.3-3-31.3-18.3-35.6-11.7-3.8-19 7.1-19 23.4v347.9l-93.8-29.8V32c39.9 7.4 98 24.9 129.2 35.4C424.1 94.7 451 128.7 451 205.2c0 74.5-46 102.8-104.5 74.6zM43.2 410.2c-45.4-12.8-53-39.5-32.3-54.8 19.1-14.2 51.7-24.9 51.7-24.9l134.5-47.8v54.5l-96.8 34.6c-17.1 6.1-19.7 14.8-5.8 19.4 13.9 4.6 39.1 3.3 56.2-2.9l46.4-16.9v48.8c-51.6 9.3-101.4 7.3-153.9-10z" + } + } + }, + "plug": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "connect", + "online", + "power" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1e6", + "label": "Plug", + "svg": { + "solid": { + "last_modified": 1502810244000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M256 144V32c0-17.673 14.327-32 32-32s32 14.327 32 32v112h-64zm112 16H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h16v32c0 77.406 54.969 141.971 128 156.796V512h64v-99.204c73.031-14.825 128-79.39 128-156.796v-32h16c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm-240-16V32c0-17.673-14.327-32-32-32S64 14.327 64 32v112h64z" + } + } + }, + "plus": { + "changes": [ + "1", + "5.0.0", + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "create", + "expand", + "new" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f067", + "label": "plus", + "svg": { + "solid": { + "last_modified": 1525967154576, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" + } + } + }, + "plus-circle": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "create", + "expand", + "new" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f055", + "label": "Plus Circle", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z" + } + } + }, + "plus-square": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "create", + "expand", + "new" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0fe", + "label": "Plus Square", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-32 252c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92H92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M352 240v32c0 6.6-5.4 12-12 12h-88v88c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-88h-88c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h88v-88c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v88h88c6.6 0 12 5.4 12 12zm96-160v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" + } + } + }, + "podcast": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f2ce", + "label": "Podcast", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M267.429 488.563C262.286 507.573 242.858 512 224 512c-18.857 0-38.286-4.427-43.428-23.437C172.927 460.134 160 388.898 160 355.75c0-35.156 31.142-43.75 64-43.75s64 8.594 64 43.75c0 32.949-12.871 104.179-20.571 132.813zM156.867 288.554c-18.693-18.308-29.958-44.173-28.784-72.599 2.054-49.724 42.395-89.956 92.124-91.881C274.862 121.958 320 165.807 320 220c0 26.827-11.064 51.116-28.866 68.552-2.675 2.62-2.401 6.986.628 9.187 9.312 6.765 16.46 15.343 21.234 25.363 1.741 3.654 6.497 4.66 9.449 1.891 28.826-27.043 46.553-65.783 45.511-108.565-1.855-76.206-63.595-138.208-139.793-140.369C146.869 73.753 80 139.215 80 220c0 41.361 17.532 78.7 45.55 104.989 2.953 2.771 7.711 1.77 9.453-1.887 4.774-10.021 11.923-18.598 21.235-25.363 3.029-2.2 3.304-6.566.629-9.185zM224 0C100.204 0 0 100.185 0 224c0 89.992 52.602 165.647 125.739 201.408 4.333 2.118 9.267-1.544 8.535-6.31-2.382-15.512-4.342-30.946-5.406-44.339-.146-1.836-1.149-3.486-2.678-4.512-47.4-31.806-78.564-86.016-78.187-147.347.592-96.237 79.29-174.648 175.529-174.899C320.793 47.747 400 126.797 400 224c0 61.932-32.158 116.49-80.65 147.867-.999 14.037-3.069 30.588-5.624 47.23-.732 4.767 4.203 8.429 8.535 6.31C395.227 389.727 448 314.187 448 224 448 100.205 347.815 0 224 0zm0 160c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z" + } + } + }, + "poo": { + "changes": [ + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f2fe", + "label": "Poo", + "svg": { + "solid": { + "last_modified": 1522083406025, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M451.4 369.1C468.7 356 480 335.4 480 312c0-39.8-32.2-72-72-72h-14.1c13.4-11.7 22.1-28.8 22.1-48 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C250.3 14.6 256 30.6 256 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 19.2 8.7 36.3 22.1 48H104c-39.8 0-72 32.2-72 72 0 23.4 11.3 44 28.6 57.1C26.3 374.6 0 404.1 0 440c0 39.8 32.2 72 72 72h368c39.8 0 72-32.2 72-72 0-35.9-26.3-65.4-60.6-70.9zM192 256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm159.5 139C341 422.9 293 448 256 448s-85-25.1-95.5-53c-2-5.3 2-11 7.8-11h175.4c5.8 0 9.8 5.7 7.8 11zM320 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" + } + } + }, + "portrait": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f3e0", + "label": "Portrait", + "svg": { + "solid": { + "last_modified": 1525209365069, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM192 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 384 80 375.4 80 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z" + } + } + }, + "pound-sign": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "gbp", + "gbp" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f154", + "label": "Pound Sign", + "svg": { + "solid": { + "last_modified": 1501873838000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M308 352h-45.495c-6.627 0-12 5.373-12 12v50.848H128V288h84c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-84v-63.556c0-32.266 24.562-57.086 61.792-57.086 23.658 0 45.878 11.505 57.652 18.849 5.151 3.213 11.888 2.051 15.688-2.685l28.493-35.513c4.233-5.276 3.279-13.005-2.119-17.081C273.124 54.56 236.576 32 187.931 32 106.026 32 48 84.742 48 157.961V224H20c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h28v128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12V364c0-6.627-5.373-12-12-12z" + } + } + }, + "power-off": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "on", + "reboot", + "restart" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f011", + "label": "Power Off", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M400 54.1c63 45 104 118.6 104 201.9 0 136.8-110.8 247.7-247.5 248C120 504.3 8.2 393 8 256.4 7.9 173.1 48.9 99.3 111.8 54.2c11.7-8.3 28-4.8 35 7.7L162.6 90c5.9 10.5 3.1 23.8-6.6 31-41.5 30.8-68 79.6-68 134.9-.1 92.3 74.5 168.1 168 168.1 91.6 0 168.6-74.2 168-169.1-.3-51.8-24.7-101.8-68.1-134-9.7-7.2-12.4-20.5-6.5-30.9l15.8-28.1c7-12.4 23.2-16.1 34.8-7.8zM296 264V24c0-13.3-10.7-24-24-24h-32c-13.3 0-24 10.7-24 24v240c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24z" + } + } + }, + "prescription": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medical", + "medicine", + "rx" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5b1", + "label": "Prescription", + "svg": { + "solid": { + "last_modified": 1529520111696, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M301.26 352l78.06-78.06c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0L256 306.74l-83.96-83.96C219.31 216.8 256 176.89 256 128c0-53.02-42.98-96-96-96H16C7.16 32 0 39.16 0 48v256c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-80h18.75l128 128-78.06 78.06c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0L256 397.25l78.06 78.06c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63L301.26 352zM64 96h96c17.64 0 32 14.36 32 32s-14.36 32-32 32H64V96z" + } + } + }, + "prescription-bottle": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medical", + "medicine", + "rx" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f485", + "label": "Prescription Bottle", + "svg": { + "solid": { + "last_modified": 1521653821456, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M32 192h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v64zM360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24z" + } + } + }, + "prescription-bottle-alt": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medical", + "medicine", + "rx" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f486", + "label": "Alternate Prescription Bottle", + "svg": { + "solid": { + "last_modified": 1521653821456, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24zM32 480c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v352zm64-184c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48z" + } + } + }, + "print": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f02f", + "label": "print", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 192h-16V81.941a24 24 0 0 0-7.029-16.97L383.029 7.029A24 24 0 0 0 366.059 0H88C74.745 0 64 10.745 64 24v168H48c-26.51 0-48 21.49-48 48v132c0 6.627 5.373 12 12 12h52v104c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V384h52c6.627 0 12-5.373 12-12V240c0-26.51-21.49-48-48-48zm-80 256H128v-96h256v96zM128 224V64h192v40c0 13.2 10.8 24 24 24h40v96H128zm304 72c-13.254 0-24-10.746-24-24s10.746-24 24-24 24 10.746 24 24-10.746 24-24 24z" + } + } + }, + "procedures": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f487", + "label": "Procedures", + "svg": { + "solid": { + "last_modified": 1521653821456, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M528 224H272c-8.8 0-16 7.2-16 16v144H64V144c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v352c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h512v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-61.9-50.1-112-112-112zM136 96h126.1l27.6 55.2c5.9 11.8 22.7 11.8 28.6 0L368 51.8 390.1 96H512c8.8 0 16-7.2 16-16s-7.2-16-16-16H409.9L382.3 8.8C376.4-3 359.6-3 353.7 8.8L304 108.2l-19.9-39.8c-1.4-2.7-4.1-4.4-7.2-4.4H136c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm24 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z" + } + } + }, + "product-hunt": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f288", + "label": "Product Hunt", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M326.3 218.8c0 20.5-16.7 37.2-37.2 37.2h-70.3v-74.4h70.3c20.5 0 37.2 16.7 37.2 37.2zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-128.1-37.2c0-47.9-38.9-86.8-86.8-86.8H169.2v248h49.6v-74.4h70.3c47.9 0 86.8-38.9 86.8-86.8z" + } + } + }, + "project-diagram": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f542", + "label": "Project Diagram", + "svg": { + "solid": { + "last_modified": 1525967154576, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M384 320H256c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM192 32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v128c0 17.67 14.33 32 32 32h95.72l73.16 128.04C211.98 300.98 232.4 288 256 288h.28L192 175.51V128h224V64H192V32zM608 0H480c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32z" + } + } + }, + "pushed": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3e1", + "label": "Pushed", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "432", + "512" + ], + "width": 432, + "height": 512, + "path": "M407 111.9l-98.5-9 14-33.4c10.4-23.5-10.8-40.4-28.7-37L22.5 76.9c-15.1 2.7-26 18.3-21.4 36.6l105.1 348.3c6.5 21.3 36.7 24.2 47.7 7l35.3-80.8 235.2-231.3c16.4-16.8 4.3-42.9-17.4-44.8zM297.6 53.6c5.1-.7 7.5 2.5 5.2 7.4L286 100.9 108.6 84.6l189-31zM22.7 107.9c-3.1-5.1 1-10 6.1-9.1l248.7 22.7-96.9 230.7L22.7 107.9zM136 456.4c-2.6 4-7.9 3.1-9.4-1.2L43.5 179.7l127.7 197.6c-7 15-35.2 79.1-35.2 79.1zm272.8-314.5L210.1 337.3l89.7-213.7 106.4 9.7c4 1.1 5.7 5.3 2.6 8.6z" + } + } + }, + "puzzle-piece": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add-on", + "addon", + "section" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f12e", + "label": "Puzzle Piece", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M519.442 288.651c-41.519 0-59.5 31.593-82.058 31.593C377.409 320.244 432 144 432 144s-196.288 80-196.288-3.297c0-35.827 36.288-46.25 36.288-85.985C272 19.216 243.885 0 210.539 0c-34.654 0-66.366 18.891-66.366 56.346 0 41.364 31.711 59.277 31.711 81.75C175.885 207.719 0 166.758 0 166.758v333.237s178.635 41.047 178.635-28.662c0-22.473-40-40.107-40-81.471 0-37.456 29.25-56.346 63.577-56.346 33.673 0 61.788 19.216 61.788 54.717 0 39.735-36.288 50.158-36.288 85.985 0 60.803 129.675 25.73 181.23 25.73 0 0-34.725-120.101 25.827-120.101 35.962 0 46.423 36.152 86.308 36.152C556.712 416 576 387.99 576 354.443c0-34.199-18.962-65.792-56.558-65.792z" + } + } + }, + "python": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3e2", + "label": "Python", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M167.8 36.4c-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1zm-6.7 28.4c11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4zm185.2 81.4v47.5c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6-7.7-30.9-22.3-54.2-53.4-54.2h-40.1zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3z" + } + } + }, + "qq": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1d6", + "label": "QQ", + "svg": { + "brands": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M433.754 420.445c-11.526 1.393-44.86-52.741-44.86-52.741 0 31.345-16.136 72.247-51.051 101.786 16.842 5.192 54.843 19.167 45.803 34.421-7.316 12.343-125.51 7.881-159.632 4.037-34.122 3.844-152.316 8.306-159.632-4.037-9.045-15.25 28.918-29.214 45.783-34.415-34.92-29.539-51.059-70.445-51.059-101.792 0 0-33.334 54.134-44.859 52.741-5.37-.65-12.424-29.644 9.347-99.704 10.261-33.024 21.995-60.478 40.144-105.779C60.683 98.063 108.982.006 224 0c113.737.006 163.156 96.133 160.264 214.963 18.118 45.223 29.912 72.85 40.144 105.778 21.768 70.06 14.716 99.053 9.346 99.704z" + } + } + }, + "qrcode": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "scan" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f029", + "label": "qrcode", + "svg": { + "solid": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 224h192V32H0v192zM64 96h64v64H64V96zm192-64v192h192V32H256zm128 128h-64V96h64v64zM0 480h192V288H0v192zm64-128h64v64H64v-64zm352-64h32v128h-96v-32h-32v96h-64V288h96v32h64v-32zm0 160h32v32h-32v-32zm-64 0h32v32h-32v-32z" + } + } + }, + "question": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "help", + "information", + "support", + "unknown" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f128", + "label": "Question", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M202.021 0C122.202 0 70.503 32.703 29.914 91.026c-7.363 10.58-5.093 25.086 5.178 32.874l43.138 32.709c10.373 7.865 25.132 6.026 33.253-4.148 25.049-31.381 43.63-49.449 82.757-49.449 30.764 0 68.816 19.799 68.816 49.631 0 22.552-18.617 34.134-48.993 51.164-35.423 19.86-82.299 44.576-82.299 106.405V320c0 13.255 10.745 24 24 24h72.471c13.255 0 24-10.745 24-24v-5.773c0-42.86 125.268-44.645 125.268-160.627C377.504 66.256 286.902 0 202.021 0zM192 373.459c-38.196 0-69.271 31.075-69.271 69.271 0 38.195 31.075 69.27 69.271 69.27s69.271-31.075 69.271-69.271-31.075-69.27-69.271-69.27z" + } + } + }, + "question-circle": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "help", + "information", + "support", + "unknown" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f059", + "label": "Question Circle", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 448c-110.532 0-200-89.431-200-200 0-110.495 89.472-200 200-200 110.491 0 200 89.471 200 200 0 110.53-89.431 200-200 200zm107.244-255.2c0 67.052-72.421 68.084-72.421 92.863V300c0 6.627-5.373 12-12 12h-45.647c-6.627 0-12-5.373-12-12v-8.659c0-35.745 27.1-50.034 47.579-61.516 17.561-9.845 28.324-16.541 28.324-29.579 0-17.246-21.999-28.693-39.784-28.693-23.189 0-33.894 10.977-48.942 29.969-4.057 5.12-11.46 6.071-16.666 2.124l-27.824-21.098c-5.107-3.872-6.251-11.066-2.644-16.363C184.846 131.491 214.94 112 261.794 112c49.071 0 101.45 38.304 101.45 88.8zM298 368c0 23.159-18.841 42-42 42s-42-18.841-42-42 18.841-42 42-42 42 18.841 42 42z" + } + } + }, + "quidditch": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f458", + "label": "Quidditch", + "svg": { + "solid": { + "last_modified": 1521653821457, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M256.5 216.8L343.2 326s-16.6 102.4-76.6 150.1C206.7 523.8 0 510.2 0 510.2s3.8-23.1 11-55.4l94.6-112.2c4-4.7-.9-11.6-6.6-9.5l-60.4 22.1c14.4-41.7 32.7-80 54.6-97.5 59.9-47.8 163.3-40.9 163.3-40.9zm238 135c-44 0-79.8 35.8-79.8 79.9 0 44.1 35.7 79.9 79.8 79.9 44.1 0 79.8-35.8 79.8-79.9 0-44.2-35.8-79.9-79.8-79.9zM636.5 31L616.7 6c-5.5-6.9-15.5-8-22.4-2.6L361.8 181.3l-34.1-43c-5.1-6.4-15.1-5.2-18.6 2.2l-25.3 54.6 86.7 109.2 58.8-12.4c8-1.7 11.4-11.2 6.3-17.6l-34.1-42.9L634 53.5c6.9-5.5 8-15.6 2.5-22.5z" + } + } + }, + "quinscape": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f459", + "label": "QuinScape", + "svg": { + "brands": { + "last_modified": 1518899527949, + "raw": "", + "viewBox": [ + "0", + "0", + "489.1", + "512" + ], + "width": 489, + "height": 512, + "path": "M301.9 474.6h-1.3c-87.3 0-158.1-70.8-158.1-158.1s70.8-158.1 158.1-158.1c94.9 0 168.2 83.1 157 176.6 4 5.1 8.2 9.6 11.2 15.3 13.4-30.3 20.3-62.4 20.3-97.7C489.1 117.5 379.6 8 244.5 8 109.5 8 0 117.5 0 252.6s109.5 244.6 244.5 244.6c24.8 0 47.8-3.2 70.4-10.1-5.2-3.5-9-8.2-13.4-12.6l.4.1zm-21.2-69.8c0-54.8 44.4-99.2 99.2-99.2 54.8 0 99.2 44.4 99.2 99.2 0 54.8-44.4 99.2-99.2 99.2-54.8 0-99.2-44.4-99.2-99.2" + } + } + }, + "quora": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2c4", + "label": "Quora", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M440.5 386.7h-29.3c-1.5 13.5-10.5 30.8-33 30.8-20.5 0-35.3-14.2-49.5-35.8 44.2-34.2 74.7-87.5 74.7-153C403.5 111.2 306.8 32 205 32 105.3 32 7.3 111.7 7.3 228.7c0 134.1 131.3 221.6 249 189C276 451.3 302 480 351.5 480c81.8 0 90.8-75.3 89-93.3zM297 329.2C277.5 300 253.3 277 205.5 277c-30.5 0-54.3 10-69 22.8l12.2 24.3c6.2-3 13-4 19.8-4 35.5 0 53.7 30.8 69.2 61.3-10 3-20.7 4.2-32.7 4.2-75 0-107.5-53-107.5-156.7C97.5 124.5 130 71 205 71c76.2 0 108.7 53.5 108.7 157.7.1 41.8-5.4 75.6-16.7 100.5z" + } + } + }, + "quote-left": { + "changes": [ + "3", + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f10d", + "label": "quote-left", + "svg": { + "solid": { + "last_modified": 1522083406025, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z" + } + } + }, + "quote-right": { + "changes": [ + "3", + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f10e", + "label": "quote-right", + "svg": { + "solid": { + "last_modified": 1522083406026, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 32H336c-26.5 0-48 21.5-48 48v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48zm-288 0H48C21.5 32 0 53.5 0 80v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48z" + } + } + }, + "r-project": { + "changes": [ + "5.0.11", + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f7", + "label": "R Project", + "svg": { + "brands": { + "last_modified": 1525376442522, + "raw": "", + "viewBox": [ + "0", + "0", + "581", + "512" + ], + "width": 581, + "height": 512, + "path": "M581 226.6C581 119.1 450.9 32 290.5 32S0 119.1 0 226.6C0 322.4 103.3 402 239.4 418.1V480h99.1v-61.5c24.3-2.7 47.6-7.4 69.4-13.9L448 480h112l-67.4-113.7c54.5-35.4 88.4-84.9 88.4-139.7zm-466.8 14.5c0-73.5 98.9-133 220.8-133s211.9 40.7 211.9 133c0 50.1-26.5 85-70.3 106.4-2.4-1.6-4.7-2.9-6.4-3.7-10.2-5.2-27.8-10.5-27.8-10.5s86.6-6.4 86.6-92.7-90.6-87.9-90.6-87.9h-199V361c-74.1-21.5-125.2-67.1-125.2-119.9zm225.1 38.3v-55.6c57.8 0 87.8-6.8 87.8 27.3 0 36.5-38.2 28.3-87.8 28.3zm-.9 72.5H365c10.8 0 18.9 11.7 24 19.2-16.1 1.9-33 2.8-50.6 2.9v-22.1z" + } + } + }, + "random": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "shuffle", + "sort" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f074", + "label": "random", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504.971 359.029c9.373 9.373 9.373 24.569 0 33.941l-80 79.984c-15.01 15.01-40.971 4.49-40.971-16.971V416h-58.785a12.004 12.004 0 0 1-8.773-3.812l-70.556-75.596 53.333-57.143L352 336h32v-39.981c0-21.438 25.943-31.998 40.971-16.971l80 79.981zM12 176h84l52.781 56.551 53.333-57.143-70.556-75.596A11.999 11.999 0 0 0 122.785 96H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12zm372 0v39.984c0 21.46 25.961 31.98 40.971 16.971l80-79.984c9.373-9.373 9.373-24.569 0-33.941l-80-79.981C409.943 24.021 384 34.582 384 56.019V96h-58.785a12.004 12.004 0 0 0-8.773 3.812L96 336H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h110.785c3.326 0 6.503-1.381 8.773-3.812L352 176h32z" + } + } + }, + "ravelry": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2d9", + "label": "Ravelry", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M407.4 61.5C331.6 22.1 257.8 31 182.9 66c-11.3 5.2-15.5 10.6-19.9 19-10.3 19.2-16.2 37.4-19.9 52.7-21.2 25.6-36.4 56.1-43.3 89.9-10.6 18-20.9 41.4-23.1 71.4 0 0-.7 7.6-.5 7.9-35.3-4.6-76.2-27-76.2-27 9.1 14.5 61.3 32.3 76.3 37.9 0 0 1.7 98 64.5 131.2-11.3-17.2-13.3-20.2-13.3-20.2S94.8 369 100.4 324.7c.7 0 1.5.2 2.2.2 23.9 87.4 103.2 151.4 196.9 151.4 6.2 0 12.1-.2 18-.7 14 1.5 27.6.5 40.1-3.9 6.9-2.2 13.8-6.4 20.2-10.8 70.2-39.1 100.9-82 123.1-147.7 5.4-16 8.1-35.5 9.8-52.2 8.7-82.3-30.6-161.6-103.3-199.5zM138.8 163.2s-1.2 12.3-.7 19.7c-3.4 2.5-10.1 8.1-18.2 16.7 5.2-12.8 11.3-25.1 18.9-36.4zm-31.2 121.9c4.4-17.2 13.3-39.1 29.8-55.1 0 0 1.7 48 15.8 90.1l-41.4-6.9c-2.2-9.2-3.5-18.5-4.2-28.1zm7.9 42.8c14.8 3.2 34 7.6 43.1 9.1 27.3 76.8 108.3 124.3 108.3 124.3 1 .5 1.7.7 2.7 1-73.1-11.6-132.7-64.7-154.1-134.4zM386 444.1c-14.5 4.7-36.2 8.4-64.7 3.7 0 0-91.1-23.1-127.5-107.8 38.2.7 52.4-.2 78-3.9 39.4-5.7 79-16.2 115-33 11.8-5.4 11.1-19.4 9.6-29.8-2-12.8-11.1-12.1-21.4-4.7 0 0-82 58.6-189.8 53.7-18.7-32-26.8-110.8-26.8-110.8 41.4-35.2 83.2-59.6 168.4-52.4.2-6.4 3-27.1-20.4-28.1 0 0-93.5-11.1-146 33.5 2.5-16.5 5.9-29.3 11.1-39.4 34.2-30.8 79-49.5 128.3-49.5 106.4 0 193 87.1 193 194.5-.2 76-43.8 142-106.8 174z" + } + } + }, + "react": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f41b", + "label": "React", + "svg": { + "brands": { + "last_modified": 1507838931324, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zm-130 189.1c4.6 8.8 9.3 17.5 14.3 26.1 5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5zm0-50.6c-6.3-14.9-11.6-29.5-16-43.6 14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26zm11.4 25.3c6.6-13.8 13.8-27.3 21.4-40.6 7.6-13.3 15.8-26.2 24.4-38.9 15-1.1 30.3-1.7 45.9-1.7 15.6 0 31 .6 45.9 1.7 8.5 12.6 16.6 25.5 24.3 38.7 7.7 13.2 14.9 26.7 21.7 40.4-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6-15.7 0-30.9-.5-45.6-1.4-8.7-12.7-16.9-25.7-24.6-39-7.7-13.3-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zM256 210.2c25.3 0 45.8 20.5 45.8 45.8 0 25.3-20.5 45.8-45.8 45.8-25.3 0-45.8-20.5-45.8-45.8 0-25.3 20.5-45.8 45.8-45.8" + } + } + }, + "readme": { + "changes": [ + "5.0.9", + "5.0.10" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4d5", + "label": "ReadMe", + "svg": { + "brands": { + "last_modified": 1523653480522, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M528.3 46.5H388.5c-48.1 0-89.9 33.3-100.4 80.3-10.6-47-52.3-80.3-100.4-80.3H48c-26.5 0-48 21.5-48 48v245.8c0 26.5 21.5 48 48 48h89.7c102.2 0 132.7 24.4 147.3 75 .7 2.8 5.2 2.8 6 0 14.7-50.6 45.2-75 147.3-75H528c26.5 0 48-21.5 48-48V94.6c0-26.4-21.3-47.9-47.7-48.1zM242 311.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5V289c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V251zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm259.3 121.7c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5V228c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.8c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V190z" + } + } + }, + "rebel": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1d0", + "label": "Rebel Alliance", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256.5 504C117.2 504 9 387.8 13.2 249.9 16 170.7 56.4 97.7 129.7 49.5c.3 0 1.9-.6 1.1.8-5.8 5.5-111.3 129.8-14.1 226.4 49.8 49.5 90 2.5 90 2.5 38.5-50.1-.6-125.9-.6-125.9-10-24.9-45.7-40.1-45.7-40.1l28.8-31.8c24.4 10.5 43.2 38.7 43.2 38.7.8-29.6-21.9-61.4-21.9-61.4L255.1 8l44.3 50.1c-20.5 28.8-21.9 62.6-21.9 62.6 13.8-23 43.5-39.3 43.5-39.3l28.5 31.8c-27.4 8.9-45.4 39.9-45.4 39.9-15.8 28.5-27.1 89.4.6 127.3 32.4 44.6 87.7-2.8 87.7-2.8 102.7-91.9-10.5-225-10.5-225-6.1-5.5.8-2.8.8-2.8 50.1 36.5 114.6 84.4 116.2 204.8C500.9 400.2 399 504 256.5 504z" + } + } + }, + "receipt": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "check", + "invoice", + "table" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f543", + "label": "Receipt", + "svg": { + "solid": { + "last_modified": 1525967154576, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M358.4 3.2L320 48 265.6 3.2a15.9 15.9 0 0 0-19.2 0L192 48 137.6 3.2a15.9 15.9 0 0 0-19.2 0L64 48 25.6 3.2C15-4.7 0 2.8 0 16v480c0 13.2 15 20.7 25.6 12.8L64 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L192 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L320 464l38.4 44.8c10.5 7.9 25.6.4 25.6-12.8V16c0-13.2-15-20.7-25.6-12.8zM320 360c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16z" + } + } + }, + "recycle": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f1b8", + "label": "Recycle", + "svg": { + "solid": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M184.561 261.903c3.232 13.997-12.123 24.635-24.068 17.168l-40.736-25.455-50.867 81.402C55.606 356.273 70.96 384 96.012 384H148c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12H96.115c-75.334 0-121.302-83.048-81.408-146.88l50.822-81.388-40.725-25.448c-12.081-7.547-8.966-25.961 4.879-29.158l110.237-25.45c8.611-1.988 17.201 3.381 19.189 11.99l25.452 110.237zm98.561-182.915l41.289 66.076-40.74 25.457c-12.051 7.528-9 25.953 4.879 29.158l110.237 25.45c8.672 1.999 17.215-3.438 19.189-11.99l25.45-110.237c3.197-13.844-11.99-24.719-24.068-17.168l-40.687 25.424-41.263-66.082c-37.521-60.033-125.209-60.171-162.816 0l-17.963 28.766c-3.51 5.62-1.8 13.021 3.82 16.533l33.919 21.195c5.62 3.512 13.024 1.803 16.536-3.817l17.961-28.743c12.712-20.341 41.973-19.676 54.257-.022zM497.288 301.12l-27.515-44.065c-3.511-5.623-10.916-7.334-16.538-3.821l-33.861 21.159c-5.62 3.512-7.33 10.915-3.818 16.536l27.564 44.112c13.257 21.211-2.057 48.96-27.136 48.96H320V336.02c0-14.213-17.242-21.383-27.313-11.313l-80 79.981c-6.249 6.248-6.249 16.379 0 22.627l80 79.989C302.689 517.308 320 510.3 320 495.989V448h95.88c75.274 0 121.335-82.997 81.408-146.88z" + } + } + }, + "red-river": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3e3", + "label": "red river", + "svg": { + "brands": { + "last_modified": 1521653821388, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M353.2 32H94.8C42.4 32 0 74.4 0 126.8v258.4C0 437.6 42.4 480 94.8 480h258.4c52.4 0 94.8-42.4 94.8-94.8V126.8c0-52.4-42.4-94.8-94.8-94.8zM144.9 200.9v56.3c0 27-21.9 48.9-48.9 48.9V151.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9h-56.3c-12.3-.6-24.6 11.6-24 24zm176.3 72h-56.3c-12.3-.6-24.6 11.6-24 24v56.3c0 27-21.9 48.9-48.9 48.9V247.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9z" + } + } + }, + "reddit": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a1", + "label": "reddit Logo", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M201.5 305.5c-13.8 0-24.9-11.1-24.9-24.6 0-13.8 11.1-24.9 24.9-24.9 13.6 0 24.6 11.1 24.6 24.9 0 13.6-11.1 24.6-24.6 24.6zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-132.3-41.2c-9.4 0-17.7 3.9-23.8 10-22.4-15.5-52.6-25.5-86.1-26.6l17.4-78.3 55.4 12.5c0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.3 24.9-24.9s-11.1-24.9-24.9-24.9c-9.7 0-18 5.8-22.1 13.8l-61.2-13.6c-3-.8-6.1 1.4-6.9 4.4l-19.1 86.4c-33.2 1.4-63.1 11.3-85.5 26.8-6.1-6.4-14.7-10.2-24.1-10.2-34.9 0-46.3 46.9-14.4 62.8-1.1 5-1.7 10.2-1.7 15.5 0 52.6 59.2 95.2 132 95.2 73.1 0 132.3-42.6 132.3-95.2 0-5.3-.6-10.8-1.9-15.8 31.3-16 19.8-62.5-14.9-62.5zM302.8 331c-18.2 18.2-76.1 17.9-93.6 0-2.2-2.2-6.1-2.2-8.3 0-2.5 2.5-2.5 6.4 0 8.6 22.8 22.8 87.3 22.8 110.2 0 2.5-2.2 2.5-6.1 0-8.6-2.2-2.2-6.1-2.2-8.3 0zm7.7-75c-13.6 0-24.6 11.1-24.6 24.9 0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.1 24.9-24.6 0-13.8-11-24.9-24.9-24.9z" + } + } + }, + "reddit-alien": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f281", + "label": "reddit Alien", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2.1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z" + } + } + }, + "reddit-square": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a2", + "label": "reddit Square", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M283.2 345.5c2.7 2.7 2.7 6.8 0 9.2-24.5 24.5-93.8 24.6-118.4 0-2.7-2.4-2.7-6.5 0-9.2 2.4-2.4 6.5-2.4 8.9 0 18.7 19.2 81 19.6 100.5 0 2.4-2.3 6.6-2.3 9 0zm-91.3-53.8c0-14.9-11.9-26.8-26.5-26.8-14.9 0-26.8 11.9-26.8 26.8 0 14.6 11.9 26.5 26.8 26.5 14.6 0 26.5-11.9 26.5-26.5zm90.7-26.8c-14.6 0-26.5 11.9-26.5 26.8 0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-11.9 26.8-26.5 0-14.9-11.9-26.8-26.8-26.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-99.7 140.6c-10.1 0-19 4.2-25.6 10.7-24.1-16.7-56.5-27.4-92.5-28.6l18.7-84.2 59.5 13.4c0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-12.2 26.8-26.8 0-14.6-11.9-26.8-26.8-26.8-10.4 0-19.3 6.2-23.8 14.9l-65.7-14.6c-3.3-.9-6.5 1.5-7.4 4.8l-20.5 92.8c-35.7 1.5-67.8 12.2-91.9 28.9-6.5-6.8-15.8-11-25.9-11-37.5 0-49.8 50.4-15.5 67.5-1.2 5.4-1.8 11-1.8 16.7 0 56.5 63.7 102.3 141.9 102.3 78.5 0 142.2-45.8 142.2-102.3 0-5.7-.6-11.6-2.1-17 33.6-17.2 21.2-67.2-16.1-67.2z" + } + } + }, + "redo": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "repeat", + "repeat" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f01e", + "label": "Redo", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512.333", + "512" + ], + "width": 512, + "height": 512, + "path": "M500.333 0h-47.411c-6.853 0-12.314 5.729-11.986 12.574l3.966 82.759C399.416 41.899 331.672 8 256.001 8 119.34 8 7.899 119.526 8 256.187 8.101 393.068 119.096 504 256 504c63.926 0 122.202-24.187 166.178-63.908 5.113-4.618 5.354-12.561.482-17.433l-33.971-33.971c-4.466-4.466-11.64-4.717-16.38-.543C341.308 415.448 300.606 432 256 432c-97.267 0-176-78.716-176-176 0-97.267 78.716-176 176-176 60.892 0 114.506 30.858 146.099 77.8l-101.525-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12z" + } + } + }, + "redo-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "repeat" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2f9", + "label": "Alternate Redo", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256.455 8c66.269.119 126.437 26.233 170.859 68.685l35.715-35.715C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.75c-30.864-28.899-70.801-44.907-113.23-45.273-92.398-.798-170.283 73.977-169.484 169.442C88.764 348.009 162.184 424 256 424c41.127 0 79.997-14.678 110.629-41.556 4.743-4.161 11.906-3.908 16.368.553l39.662 39.662c4.872 4.872 4.631 12.815-.482 17.433C378.202 479.813 319.926 504 256 504 119.034 504 8.001 392.967 8 256.002 7.999 119.193 119.646 7.755 256.455 8z" + } + } + }, + "registered": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f25d", + "label": "Registered Trademark", + "svg": { + "solid": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M285.363 207.475c0 18.6-9.831 28.431-28.431 28.431h-29.876v-56.14h23.378c28.668 0 34.929 8.773 34.929 27.709zM504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM363.411 360.414c-46.729-84.825-43.299-78.636-44.702-80.98 23.432-15.172 37.945-42.979 37.945-74.486 0-54.244-31.5-89.252-105.498-89.252h-70.667c-13.255 0-24 10.745-24 24V372c0 13.255 10.745 24 24 24h22.567c13.255 0 24-10.745 24-24v-71.663h25.556l44.129 82.937a24.001 24.001 0 0 0 21.188 12.727h24.464c18.261-.001 29.829-19.591 21.018-35.587z" + }, + "regular": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm110.442-81.791c-53.046-96.284-50.25-91.468-53.271-96.085 24.267-13.879 39.482-41.563 39.482-73.176 0-52.503-30.247-85.252-101.498-85.252h-78.667c-6.617 0-12 5.383-12 12V380c0 6.617 5.383 12 12 12h38.568c6.617 0 12-5.383 12-12v-83.663h31.958l47.515 89.303a11.98 11.98 0 0 0 10.593 6.36h42.81c9.14 0 14.914-9.799 10.51-17.791zM256.933 239.906h-33.875v-64.14h27.377c32.417 0 38.929 12.133 38.929 31.709-.001 20.913-11.518 32.431-32.431 32.431z" + } + } + }, + "rendact": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3e4", + "label": "Rendact", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248c18.6 0 36.7-2.1 54.1-5.9-5.6-7.4-10.8-14.4-15.9-21.3-12.4 2.1-25.2 3.3-38.3 3.3C124.3 480 24 379.7 24 256S124.3 32 248 32s224 100.3 224 224c0 71-33 134.2-84.5 175.3-25.9 18.8-39.1 21.4-83.5-44.2-78.7-112.9-48-71.1-73.7-108.3 72.8 8.9 228.5-72 168.6-168.6C314-26.8 15 93.8 59.7 226.4c3.2 9.8 14.4 38.6 45.6 38.6 2 0 2.6-.6 2-1.7-4.4-8.7-20.1-9.8-20.1-37.4 0-40.5 40.5-89.6 100.3-120 66.1-32.3 131.9-30.2 158.2 5.4 27.2 38.3-20.9 119.2-120.4 136.9 7.5-9.4 57-75.2 62.8-84 22.7-34.6 23.6-49 14-59.2-15.5-16.9-29.5-10.3-50.7-11.7-10.8-.9-113.7 181.2-136.4 216.9-5.9 9-21.2 34.1-21.2 50.9 0 21.3 2.8 51.4 20.6 51.4 10.6 0 8-18.7 8-26.6 0-12.9 27.4-49.4 74.8-104.6 20.4 36.1 57.7 114.3 130.2 209.7 98-33.1 168.5-125.8 168.5-235C496 119 385 8 248 8z" + } + } + }, + "renren": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f18b", + "label": "Renren", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M214 169.1c0 110.4-61 205.4-147.6 247.4C30 373.2 8 317.7 8 256.6 8 133.9 97.1 32.2 214 12.5v156.6zM255 504c-42.9 0-83.3-11-118.5-30.4C193.7 437.5 239.9 382.9 255 319c15.5 63.9 61.7 118.5 118.8 154.7C338.7 493 298.3 504 255 504zm190.6-87.5C359 374.5 298 279.6 298 169.1V12.5c116.9 19.7 206 121.4 206 244.1 0 61.1-22 116.6-58.4 159.9z" + } + } + }, + "reply": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f3e5", + "label": "Reply", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z" + } + } + }, + "reply-all": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f122", + "label": "reply-all", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M136.309 189.836L312.313 37.851C327.72 24.546 352 35.348 352 56.015v82.763c129.182 10.231 224 52.212 224 183.548 0 61.441-39.582 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 38.512-123.162-3.922-169.482-112.59-182.015v84.175c0 20.701-24.3 31.453-39.687 18.164L136.309 226.164c-11.071-9.561-11.086-26.753 0-36.328zm-128 36.328L184.313 378.15C199.7 391.439 224 380.687 224 359.986v-15.818l-108.606-93.785A55.96 55.96 0 0 1 96 207.998a55.953 55.953 0 0 1 19.393-42.38L224 71.832V56.015c0-20.667-24.28-31.469-39.687-18.164L8.309 189.836c-11.086 9.575-11.071 26.767 0 36.328z" + } + } + }, + "replyd": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3e6", + "label": "replyd", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M320 480H128C57.6 480 0 422.4 0 352V160C0 89.6 57.6 32 128 32h192c70.4 0 128 57.6 128 128v192c0 70.4-57.6 128-128 128zM193.4 273.2c-6.1-2-11.6-3.1-16.4-3.1-7.2 0-13.5 1.9-18.9 5.6-5.4 3.7-9.6 9-12.8 15.8h-1.1l-4.2-18.3h-28v138.9h36.1v-89.7c1.5-5.4 4.4-9.8 8.7-13.2 4.3-3.4 9.8-5.1 16.2-5.1 4.6 0 9.8 1 15.6 3.1l4.8-34zm115.2 103.4c-3.2 2.4-7.7 4.8-13.7 7.1-6 2.3-12.8 3.5-20.4 3.5-12.2 0-21.1-3-26.5-8.9-5.5-5.9-8.5-14.7-9-26.4h83.3c.9-4.8 1.6-9.4 2.1-13.9.5-4.4.7-8.6.7-12.5 0-10.7-1.6-19.7-4.7-26.9-3.2-7.2-7.3-13-12.5-17.2-5.2-4.3-11.1-7.3-17.8-9.2-6.7-1.8-13.5-2.8-20.6-2.8-21.1 0-37.5 6.1-49.2 18.3s-17.5 30.5-17.5 55c0 22.8 5.2 40.7 15.6 53.7 10.4 13.1 26.8 19.6 49.2 19.6 10.7 0 20.9-1.5 30.4-4.6 9.5-3.1 17.1-6.8 22.6-11.2l-12-23.6zm-21.8-70.3c3.8 5.4 5.3 13.1 4.6 23.1h-51.7c.9-9.4 3.7-17 8.2-22.6 4.5-5.6 11.5-8.5 21-8.5 8.2-.1 14.1 2.6 17.9 8zm79.9 2.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4s2 11.7 6.1 15.6zm0 100.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4 0 6.6 2 11.7 6.1 15.6z" + } + } + }, + "researchgate": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f8", + "label": "Researchgate", + "svg": { + "brands": { + "last_modified": 1525209365021, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm262.2 334.4c-6.6 3-33.2 6-50-14.2-9.2-10.6-25.3-33.3-42.2-63.6-8.9 0-14.7 0-21.4-.6v46.4c0 23.5 6 21.2 25.8 23.9v8.1c-6.9-.3-23.1-.8-35.6-.8-13.1 0-26.1.6-33.6.8v-8.1c15.5-2.9 22-1.3 22-23.9V225c0-22.6-6.4-21-22-23.9V193c25.8 1 53.1-.6 70.9-.6 31.7 0 55.9 14.4 55.9 45.6 0 21.1-16.7 42.2-39.2 47.5 13.6 24.2 30 45.6 42.2 58.9 7.2 7.8 17.2 14.7 27.2 14.7v7.3zm22.9-135c-23.3 0-32.2-15.7-32.2-32.2V167c0-12.2 8.8-30.4 34-30.4s30.4 17.9 30.4 17.9l-10.7 7.2s-5.5-12.5-19.7-12.5c-7.9 0-19.7 7.3-19.7 19.7v26.8c0 13.4 6.6 23.3 17.9 23.3 14.1 0 21.5-10.9 21.5-26.8h-17.9v-10.7h30.4c0 20.5 4.7 49.9-34 49.9zm-116.5 44.7c-9.4 0-13.6-.3-20-.8v-69.7c6.4-.6 15-.6 22.5-.6 23.3 0 37.2 12.2 37.2 34.5 0 21.9-15 36.6-39.7 36.6z" + } + } + }, + "resolving": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3e7", + "label": "Resolving", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M281.2 278.2c46-13.3 49.6-23.5 44-43.4L314 195.5c-6.1-20.9-18.4-28.1-71.1-12.8L54.7 236.8l28.6 98.6 197.9-57.2zM248.5 8C131.4 8 33.2 88.7 7.2 197.5l221.9-63.9c34.8-10.2 54.2-11.7 79.3-8.2 36.3 6.1 52.7 25 61.4 55.2l10.7 37.8c8.2 28.1 1 50.6-23.5 73.6-19.4 17.4-31.2 24.5-61.4 33.2L203 351.8l220.4 27.1 9.7 34.2-48.1 13.3-286.8-37.3 23 80.2c36.8 22 80.3 34.7 126.3 34.7 137 0 248.5-111.4 248.5-248.3C497 119.4 385.5 8 248.5 8zM38.3 388.6L0 256.8c0 48.5 14.3 93.4 38.3 131.8z" + } + } + }, + "retweet": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "refresh", + "reload", + "share", + "swap" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f079", + "label": "Retweet", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M629.657 343.598L528.971 444.284c-9.373 9.372-24.568 9.372-33.941 0L394.343 343.598c-9.373-9.373-9.373-24.569 0-33.941l10.823-10.823c9.562-9.562 25.133-9.34 34.419.492L480 342.118V160H292.451a24.005 24.005 0 0 1-16.971-7.029l-16-16C244.361 121.851 255.069 96 276.451 96H520c13.255 0 24 10.745 24 24v222.118l40.416-42.792c9.285-9.831 24.856-10.054 34.419-.492l10.823 10.823c9.372 9.372 9.372 24.569-.001 33.941zm-265.138 15.431A23.999 23.999 0 0 0 347.548 352H160V169.881l40.416 42.792c9.286 9.831 24.856 10.054 34.419.491l10.822-10.822c9.373-9.373 9.373-24.569 0-33.941L144.971 67.716c-9.373-9.373-24.569-9.373-33.941 0L10.343 168.402c-9.373 9.373-9.373 24.569 0 33.941l10.822 10.822c9.562 9.562 25.133 9.34 34.419-.491L96 169.881V392c0 13.255 10.745 24 24 24h243.549c21.382 0 32.09-25.851 16.971-40.971l-16.001-16z" + } + } + }, + "rev": { + "changes": [ + "5.1.0", + "5.1.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5b2", + "label": "Rev.io", + "svg": { + "brands": { + "last_modified": 1529520111565, + "raw": "", + "viewBox": [ + "0", + "0", + "410.22", + "512" + ], + "width": 410, + "height": 512, + "path": "M270.67 274.89c0 36.16-29.41 65.57-65.56 65.57s-65.57-29.41-65.57-65.57 29.41-65.56 65.57-65.56 65.56 29.4 65.56 65.56zm139.55-5.05h-.13c-1.49-61.55-30.1-116.35-74.32-152.98l-45.38 26.2c43.17 28.03 71.81 76.63 71.81 131.82 0 86.62-70.47 157.09-157.09 157.09S48.02 361.5 48.02 274.88c0-81.86 62.96-149.27 142.99-156.43v39.12l108.76-62.79L191.01 32v38.32C84.31 77.57 0 166.36 0 274.89c0 111.59 89.12 202.29 200.06 204.98v.13h210.16V269.84z" + } + } + }, + "ribbon": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "badge", + "cause", + "lapel", + "pin" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4d6", + "label": "Ribbon", + "svg": { + "solid": { + "last_modified": 1522083406026, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M6.1 444.3c-9.6 10.8-7.5 27.6 4.5 35.7l68.8 27.9c9.9 6.7 23.3 5 31.3-3.8l91.8-101.9-79.2-87.9-117.2 130zm435.8 0s-292-324.6-295.4-330.1c15.4-8.4 40.2-17.9 77.5-17.9s62.1 9.5 77.5 17.9c-3.3 5.6-56 64.6-56 64.6l79.1 87.7 34.2-38c28.7-31.9 33.3-78.6 11.4-115.5l-43.7-73.5c-4.3-7.2-9.9-13.3-16.8-18-40.7-27.6-127.4-29.7-171.4 0-6.9 4.7-12.5 10.8-16.8 18l-43.6 73.2c-1.5 2.5-37.1 62.2 11.5 116L337.5 504c8 8.9 21.4 10.5 31.3 3.8l68.8-27.9c11.9-8 14-24.8 4.3-35.6z" + } + } + }, + "road": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "street" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f018", + "label": "road", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M567.3 383.6L429.9 78.2C426 69.5 417.4 64 408 64h-96.1l1.9 18.8c.7 7.1-4.8 13.2-11.9 13.2H274c-7.1 0-12.7-6.2-11.9-13.2L264 64h-96c-9.4 0-18 5.5-21.9 14.2L8.7 383.6C3.2 395.8 0 409.6 0 424c0 13.3 10.7 24 24 24h213.6c-7.1 0-12.7-6.2-11.9-13.2l10.8-104c.6-6.1 5.8-10.8 11.9-10.8h79.2c6.1 0 11.3 4.6 11.9 10.8l10.8 104c.7 7.1-4.8 13.2-11.9 13.2H552c13.2 0 24-10.7 24-24 0-13.9-3-27.7-8.7-40.4zM254.7 154.8l3.3-32c.6-6.1 5.8-10.8 11.9-10.8h36.2c6.1 0 11.3 4.6 11.9 10.8l3.3 32c.7 7.1-4.8 13.2-11.9 13.2h-42.8c-7.1 0-12.7-6.2-11.9-13.2zM321.8 288h-67.6c-7.1 0-12.7-6.2-11.9-13.2l7.4-72c.6-6.1 5.8-10.8 11.9-10.8h52.7c6.1 0 11.3 4.6 11.9 10.8l7.4 72c.9 7-4.7 13.2-11.8 13.2z" + } + } + }, + "robot": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f544", + "label": "Robot", + "svg": { + "solid": { + "last_modified": 1525967154576, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M0 256v128c0 17.7 14.3 32 32 32h32V224H32c-17.7 0-32 14.3-32 32zM464 96H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H176c-44.2 0-80 35.8-80 80v272c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V176c0-44.2-35.8-80-80-80zM256 416h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm128 120h-64v-32h64v32zm96 0h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm192-72h-32v192h32c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32z" + } + } + }, + "rocket": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "app" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f135", + "label": "rocket", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M505.1 19.1C503.8 13 499 8.2 492.9 6.9 460.7 0 435.5 0 410.4 0 307.2 0 245.3 55.2 199.1 128H94.9c-18.2 0-34.8 10.3-42.9 26.5L2.6 253.3c-8 16 3.6 34.7 21.5 34.7h95.1c-5.9 12.8-11.9 25.5-18 37.7-3.1 6.2-1.9 13.6 3 18.5l63.6 63.6c4.9 4.9 12.3 6.1 18.5 3 12.2-6.1 24.9-12 37.7-17.9V488c0 17.8 18.8 29.4 34.7 21.5l98.7-49.4c16.3-8.1 26.5-24.8 26.5-42.9V312.8c72.6-46.3 128-108.4 128-211.1.1-25.2.1-50.4-6.8-82.6zM400 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z" + } + } + }, + "rocketchat": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3e8", + "label": "Rocket.Chat", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 256.2c0-87.2-99.6-153.3-219.8-153.3-18.8 0-37.3 1.6-55.3 4.8-11.1-10.5-24.2-20-38-27.4C61.2 44.2 0 79.4 0 79.4s56.9 47.1 47.6 88.3c-52.3 52.3-52.5 124.1 0 176.6C56.9 385.6 0 432.6 0 432.6s61.2 35.2 134.9-.8c13.8-7.5 26.9-16.9 38-27.4 18 3.2 36.5 4.8 55.3 4.8 120.3-.1 219.8-65.8 219.8-153zm-219.7 124c-23.7 0-46.3-2.8-67.3-7.8-21.3 25.8-68.1 61.7-113.6 50.1 14.8-16 36.7-43.1 32-87.6-27.3-21.4-43.6-48.7-43.6-78.5 0-68.4 86.2-123.9 192.5-123.9S420.8 188 420.8 256.4c0 68.3-86.2 123.8-192.5 123.8zm25.6-123.9c0 14.2-11.5 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.5-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm88.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm-177.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.2 0 25.6 11.6 25.6 25.8z" + } + } + }, + "rockrms": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3e9", + "label": "Rockrms", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm157.4 419.5h-90l-112-131.3c-17.9-20.4-3.9-56.1 26.6-56.1h75.3l-84.6-99.3-84.3 98.9h-90L193.5 67.2c14.4-18.4 41.3-17.3 54.5 0l157.7 185.1c19 22.8 2 57.2-27.6 56.1-.6 0-74.2.2-74.2.2l101.5 118.9z" + } + } + }, + "rss": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blog" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f09e", + "label": "rss", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z" + } + } + }, + "rss-square": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blog", + "feed" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f143", + "label": "RSS Square", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM112 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm157.533 0h-34.335c-6.011 0-11.051-4.636-11.442-10.634-5.214-80.05-69.243-143.92-149.123-149.123-5.997-.39-10.633-5.431-10.633-11.441v-34.335c0-6.535 5.468-11.777 11.994-11.425 110.546 5.974 198.997 94.536 204.964 204.964.352 6.526-4.89 11.994-11.425 11.994zm103.027 0h-34.334c-6.161 0-11.175-4.882-11.427-11.038-5.598-136.535-115.204-246.161-251.76-251.76C68.882 152.949 64 147.935 64 141.774V107.44c0-6.454 5.338-11.664 11.787-11.432 167.83 6.025 302.21 141.191 308.205 308.205.232 6.449-4.978 11.787-11.432 11.787z" + } + } + }, + "ruble-sign": { + "changes": [ + "4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "rub", + "rub" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f158", + "label": "Ruble Sign", + "svg": { + "solid": { + "last_modified": 1501873838000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M239.36 320C324.48 320 384 260.542 384 175.071S324.48 32 239.36 32H76c-6.627 0-12 5.373-12 12v206.632H12c-6.627 0-12 5.373-12 12V308c0 6.627 5.373 12 12 12h52v32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v52c0 6.627 5.373 12 12 12h58.56c6.627 0 12-5.373 12-12v-52H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H146.56v-32h92.8zm-92.8-219.252h78.72c46.72 0 74.88 29.11 74.88 74.323 0 45.832-28.16 75.561-76.16 75.561h-77.44V100.748z" + } + } + }, + "ruler": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f545", + "label": "Ruler", + "svg": { + "solid": { + "last_modified": 1525967154577, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M635.7 167.2L556.1 31.7c-8.8-15-28.3-20.1-43.5-11.5l-69 39.1L503.3 161c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L416 75l-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L333.2 122 278 153.3 337.8 255c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-59.7-101.7-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-27.9-47.5-55.2 31.3 59.7 101.7c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L84.9 262.9l-69 39.1C.7 310.7-4.6 329.8 4.2 344.8l79.6 135.6c8.8 15 28.3 20.1 43.5 11.5L624.1 210c15.2-8.6 20.4-27.8 11.6-42.8z" + } + } + }, + "ruler-combined": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f546", + "label": "Ruler Combined", + "svg": { + "solid": { + "last_modified": 1525967154577, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M160 288h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56v-64h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56V96h-56c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8h56V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 2.77.91 5.24 1.57 7.8L160 329.38V288zm320 64h-32v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-41.37L24.2 510.43c2.56.66 5.04 1.57 7.8 1.57h448c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z" + } + } + }, + "ruler-horizontal": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f547", + "label": "Ruler Horizontal", + "svg": { + "solid": { + "last_modified": 1525967154577, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M544 128h-48v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8H88c-4.42 0-8-3.58-8-8v-88H32c-17.67 0-32 14.33-32 32v192c0 17.67 14.33 32 32 32h512c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32z" + } + } + }, + "ruler-vertical": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f548", + "label": "Ruler Vertical", + "svg": { + "solid": { + "last_modified": 1525967154577, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M168 416c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 17.67 14.33 32 32 32h192c17.67 0 32-14.33 32-32v-64h-88z" + } + } + }, + "rupee-sign": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "indian", + "inr" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f156", + "label": "Indian Rupee Sign", + "svg": { + "solid": { + "last_modified": 1501873838000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M308 96c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v44.748c0 6.627 5.373 12 12 12h85.28c27.308 0 48.261 9.958 60.97 27.252H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h158.757c-6.217 36.086-32.961 58.632-74.757 58.632H12c-6.627 0-12 5.373-12 12v53.012c0 3.349 1.4 6.546 3.861 8.818l165.052 152.356a12.001 12.001 0 0 0 8.139 3.182h82.562c10.924 0 16.166-13.408 8.139-20.818L116.871 319.906c76.499-2.34 131.144-53.395 138.318-127.906H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-58.69c-3.486-11.541-8.28-22.246-14.252-32H308z" + } + } + }, + "sad-cry": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "tear", + "tears" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f5b3", + "label": "Crying Face", + "svg": { + "solid": { + "last_modified": 1529520111696, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256c0 90.1 48.2 168.7 120 212.1V288c0-8.8 7.2-16 16-16s16 7.2 16 16v196.7c29.5 12.4 62 19.3 96 19.3s66.5-6.9 96-19.3V288c0-8.8 7.2-16 16-16s16 7.2 16 16v180.1C447.8 424.7 496 346 496 256 496 119 385 8 248 8zm-65.5 216.5c-14.8-13.2-46.2-13.2-61 0L112 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c.8 5-1.7 10-6.1 12.4-5.8 3.1-11.2.7-13.7-1.6l-9.7-8.5zM248 416c-26.5 0-48-28.7-48-64s21.5-64 48-64 48 28.7 48 64-21.5 64-48 64zm149.8-181.5c-5.8 3.1-11.2.7-13.7-1.6l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S400 197 404 222.2c.6 4.9-1.8 9.9-6.2 12.3z" + }, + "regular": { + "last_modified": 1529520111633, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm144 386.4V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v151.4C315.5 447 282.8 456 248 456s-67.5-9-96-24.6V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v114.4c-34.6-36-56-84.7-56-138.4 0-110.3 89.7-200 200-200s200 89.7 200 200c0 53.7-21.4 102.5-56 138.4zM205.8 234.5c4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.3 7.9 4.8 13.7 1.6zM344 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.5 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm-96 92c-30.9 0-56 28.7-56 64s25.1 64 56 64 56-28.7 56-64-25.1-64-56-64z" + } + } + }, + "sad-tear": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "tear", + "tears" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f5b4", + "label": "Loudly Crying Face", + "svg": { + "solid": { + "last_modified": 1529520111697, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM152 416c-26.5 0-48-21-48-47 0-20 28.5-60.4 41.6-77.8 3.2-4.3 9.6-4.3 12.8 0C171.5 308.6 200 349 200 369c0 26-21.5 47-48 47zm16-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm170.2 154.2C315.8 367.4 282.9 352 248 352c-21.2 0-21.2-32 0-32 44.4 0 86.3 19.6 114.7 53.8 13.8 16.4-11.2 36.5-24.5 20.4z" + }, + "regular": { + "last_modified": 1529520111634, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm8-152c-13.2 0-24 10.8-24 24s10.8 24 24 24c23.8 0 46.3 10.5 61.6 28.8 8.1 9.8 23.2 11.9 33.8 3.1 10.2-8.5 11.6-23.6 3.1-33.8C330 320.8 294.1 304 256 304zm-88-64c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-165.6 98.8C151 290.1 126 325.4 126 342.9c0 22.7 18.8 41.1 42 41.1s42-18.4 42-41.1c0-17.5-25-52.8-36.4-68.1-2.8-3.7-8.4-3.7-11.2 0z" + } + } + }, + "safari": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f267", + "label": "Safari", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M236.9 256.8c0-9.1 6.6-17.7 16.3-17.7 8.9 0 17.4 6.4 17.4 16.1 0 9.1-6.4 17.7-16.1 17.7-9 0-17.6-6.7-17.6-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-26.6 0c0-122.3-99.1-221.4-221.4-221.4S34.6 133.7 34.6 256 133.7 477.4 256 477.4 477.4 378.3 477.4 256zm-72.5 96.6c0 3.6 13 10.2 16.3 12.2-27.4 41.5-69.8 71.4-117.9 83.3l-4.4-18.5c-.3-2.5-1.9-2.8-4.2-2.8-1.9 0-3 2.8-2.8 4.2l4.4 18.8c-13.3 2.8-26.8 4.2-40.4 4.2-36.3 0-72-10.2-103-29.1 1.7-2.8 12.2-18 12.2-20.2 0-1.9-1.7-3.6-3.6-3.6-3.9 0-12.2 16.6-14.7 19.9-41.8-27.7-72-70.6-83.6-119.6l19.1-4.2c2.2-.6 2.8-2.2 2.8-4.2 0-1.9-2.8-3-4.4-2.8L62 294.5c-2.5-12.7-3.9-25.5-3.9-38.5 0-37.1 10.5-73.6 30.2-104.9 2.8 1.7 16.1 10.8 18.3 10.8 1.9 0 3.6-1.4 3.6-3.3 0-3.9-14.7-11.3-18-13.6 28.2-41.2 71.1-70.9 119.8-81.9l4.2 18.5c.6 2.2 2.2 2.8 4.2 2.8s3-2.8 2.8-4.4L219 61.7c12.2-2.2 24.6-3.6 37.1-3.6 37.1 0 73.3 10.5 104.9 30.2-1.9 2.8-10.8 15.8-10.8 18 0 1.9 1.4 3.6 3.3 3.6 3.9 0 11.3-14.4 13.3-17.7 41 27.7 70.3 70 81.7 118.2l-15.5 3.3c-2.5.6-2.8 2.2-2.8 4.4 0 1.9 2.8 3 4.2 2.8l15.8-3.6c2.5 12.7 3.9 25.7 3.9 38.7 0 36.3-10 72-28.8 102.7-2.8-1.4-14.4-9.7-16.6-9.7-2.1 0-3.8 1.7-3.8 3.6zm-33.2-242.2c-13 12.2-134.2 123.7-137.6 129.5l-96.6 160.5c12.7-11.9 134.2-124 137.3-129.3l96.9-160.7z" + } + } + }, + "sass": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f41e", + "label": "Sass", + "svg": { + "brands": { + "last_modified": 1508787003040, + "raw": "", + "viewBox": [ + "0", + "0", + "640.4", + "512" + ], + "width": 640, + "height": 512, + "path": "M551.1 291.9c-22.4.1-41.8 5.5-58 13.5-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-3.8 11.1-5.3 19.1-2.3 11.7-25.8 53.5-39.1 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-2.7 11.4-5.3 19.1-2.6 7.7-33.9 77.3-42.1 95.4-4.2 9.2-7.8 16.6-10.4 21.6s-.2.3-.4.9c-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4.3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2-.8 0-1.4 2-1.4 2s10.1-42.4-19.4-42.4c-18.4 0-44 20.2-56.6 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.8-38.2-101.9-65.2-99.1-116.5 1-18.7 7.5-67.8 127.1-127.4 98-48.8 176.4-35.4 189.9-5.6 19.4 42.5-41.9 121.6-143.7 133-38.8 4.3-59.2-10.7-64.3-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.8 28.9 18.7 6.1 64.2 9.5 119.2-11.8C367 196.5 415.1 130.2 401 74.7 386.6 18.3 293.1-.2 204.6 31.2 151.9 49.9 94.9 79.3 53.9 117.6 5.2 163.2-2.6 202.9.6 219.5c11.4 58.9 92.6 97.3 125.1 125.7-1.6.9-3.1 1.7-4.5 2.5-16.3 8.1-78.2 40.5-93.7 74.7-17.5 38.8 2.9 66.6 16.3 70.4 41.8 11.6 84.6-9.3 107.6-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.3-4.9 16.4-9.4 23.5-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.5 5 15.4 5 13.8 0 20-11.4 26.9-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.4 0 18.8-12.1 23-18.3v.1s.2-.4.7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.6-46 16.2-31.8 31.7-71.5 31.7-71.5s1.4 9.7 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2s0 .1.1.2c-3 4-6.4 8.3-9.9 12.5-12.8 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.7 2.5 11.5-.8 19.6-3.6 23.5-5.4 6.2-2.2 13.4-5.7 20.2-10.6 12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5 19.8-28.9 35.1-60.6 35.1-60.6s1.4 9.7 6.2 25.8c2.4 8.1 7.1 17 11.4 25.7-18.6 15.1-30.1 32.6-34.1 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5 6.5-2.2 14.3-5.7 21.6-11.1 12.5-9.2 24.6-22.1 23.8-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.1-10.2 62.1-7.2 55.7 6.5 66.6 41.3 64.5 55.8-2.1 14.6-13.8 22.6-17.7 25-3.9 2.4-5.1 3.3-4.8 5.1.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.2-11.8 30.3-38.7 1.6-34-31.1-71.4-89-71.1zM121.8 436.6c-18.4 20.1-44.2 27.7-55.3 21.3C54.6 451 59.3 421.4 82 400c13.8-13 31.6-25 43.4-32.4 2.7-1.6 6.6-4 11.4-6.9.8-.5 1.2-.7 1.2-.7.9-.6 1.9-1.1 2.9-1.7 8.3 30.4.3 57.2-19.1 78.3zm134.4-91.4c-6.4 15.7-19.9 55.7-28.1 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.1-11.3 21.2-14.9 23.8-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.9-13.9 0 .5.1 1 .1 1.6-.1 17.9-17.3 30-25.1 34.8zm85.6-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.6-15.3 19-24.5 1.2 3.8 1.9 7.4 1.9 10.8-.1 22.5-16.2 30.9-25.9 34.4z" + } + } + }, + "save": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "floppy", + "floppy-o" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0c7", + "label": "Save", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM272 80v80H144V80h128zm122 352H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h42v104c0 13.255 10.745 24 24 24h176c13.255 0 24-10.745 24-24V83.882l78.243 78.243a6 6 0 0 1 1.757 4.243V426a6 6 0 0 1-6 6zM224 232c-48.523 0-88 39.477-88 88s39.477 88 88 88 88-39.477 88-88-39.477-88-88-88zm0 128c-22.056 0-40-17.944-40-40s17.944-40 40-40 40 17.944 40 40-17.944 40-40 40z" + } + } + }, + "schlix": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ea", + "label": "SCHLIX", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M350.5 157.7l-54.2-46.1 73.4-39 78.3 44.2-97.5 40.9zM192 122.1l45.7-28.2 34.7 34.6-55.4 29-25-35.4zm-65.1 6.6l31.9-22.1L176 135l-36.7 22.5-12.4-28.8zm-23.3 88.2l-8.8-34.8 29.6-18.3 13.1 35.3-33.9 17.8zm-21.2-83.7l23.9-18.1 8.9 24-26.7 18.3-6.1-24.2zM59 206.5l-3.6-28.4 22.3-15.5 6.1 28.7L59 206.5zm-30.6 16.6l20.8-12.8 3.3 33.4-22.9 12-1.2-32.6zM1.4 268l19.2-10.2.4 38.2-21 8.8L1.4 268zm59.1 59.3l-28.3 8.3-1.6-46.8 25.1-10.7 4.8 49.2zM99 263.2l-31.1 13-5.2-40.8L90.1 221l8.9 42.2zM123.2 377l-41.6 5.9-8.1-63.5 35.2-10.8 14.5 68.4zm28.5-139.9l21.2 57.1-46.2 13.6-13.7-54.1 38.7-16.6zm85.7 230.5l-70.9-3.3-24.3-95.8 55.2-8.6 40 107.7zm-84.9-279.7l42.2-22.4 28 45.9-50.8 21.3-19.4-44.8zm41 94.9l61.3-18.7 52.8 86.6-79.8 11.3-34.3-79.2zm51.4-85.6l67.3-28.8 65.5 65.4-88.6 26.2-44.2-62.8z" + } + } + }, + "school": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f549", + "label": "School", + "svg": { + "solid": { + "last_modified": 1525967154577, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M0 224v272c0 8.84 7.16 16 16 16h80V192H32c-17.67 0-32 14.33-32 32zm360-48h-24v-40c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v64c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zm137.75-63.96l-160-106.67a32.02 32.02 0 0 0-35.5 0l-160 106.67A32.002 32.002 0 0 0 128 138.66V512h128V368c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v144h128V138.67c0-10.7-5.35-20.7-14.25-26.63zM320 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm288-64h-64v320h80c8.84 0 16-7.16 16-16V224c0-17.67-14.33-32-32-32z" + } + } + }, + "screwdriver": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "container", + "fix", + "repair", + "settings", + "tool" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f54a", + "label": "Screwdriver", + "svg": { + "solid": { + "last_modified": 1525967154577, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M448 0L320 96v62.06l-83.03 83.03c6.79 4.25 13.27 9.06 19.07 14.87 5.8 5.8 10.62 12.28 14.87 19.07L353.94 192H416l96-128-64-64zM128 278.59L10.92 395.67c-14.55 14.55-14.55 38.15 0 52.71l52.7 52.7c14.56 14.56 38.15 14.56 52.71 0L233.41 384c29.11-29.11 29.11-76.3 0-105.41s-76.3-29.11-105.41 0z" + } + } + }, + "scribd": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f28a", + "label": "Scribd", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M42.3 252.7c-16.1-19-24.7-45.9-24.8-79.9 0-100.4 75.2-153.1 167.2-153.1 98.6-1.6 156.8 49 184.3 70.6l-50.5 72.1-37.3-24.6 26.9-38.6c-36.5-24-79.4-36.5-123-35.8-50.7-.8-111.7 27.2-111.7 76.2 0 18.7 11.2 20.7 28.6 15.6 23.3-5.3 41.9.6 55.8 14 26.4 24.3 23.2 67.6-.7 91.9-29.2 29.5-85.2 27.3-114.8-8.4zm317.7 5.9c-15.5-18.8-38.9-29.4-63.2-28.6-38.1-2-71.1 28-70.5 67.2-.7 16.8 6 33 18.4 44.3 14.1 13.9 33 19.7 56.3 14.4 17.4-5.1 28.6-3.1 28.6 15.6 0 4.3-.5 8.5-1.4 12.7-16.7 40.9-59.5 64.4-121.4 64.4-51.9.2-102.4-16.4-144.1-47.3l33.7-39.4-35.6-27.4L0 406.3l15.4 13.8c52.5 46.8 120.4 72.5 190.7 72.2 51.4 0 94.4-10.5 133.6-44.1 57.1-51.4 54.2-149.2 20.3-189.6z" + } + } + }, + "search": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "magnify", + "preview", + "zoom" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f002", + "label": "Search", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z" + } + } + }, + "search-minus": { + "changes": [ + "1", + "5.0.0", + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "magnify", + "minify", + "smaller", + "zoom", + "zoom out" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f010", + "label": "Search Minus", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M304 192v32c0 6.6-5.4 12-12 12H124c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z" + } + } + }, + "search-plus": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "magnify", + "zoom", + "zoom in" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f00e", + "label": "Search Plus", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M304 192v32c0 6.6-5.4 12-12 12h-56v56c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-56h-56c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h56v-56c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v56h56c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z" + } + } + }, + "searchengin": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3eb", + "label": "Searchengin", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "460", + "512" + ], + "width": 460, + "height": 512, + "path": "M220.6 130.3l-67.2 28.2V43.2L98.7 233.5l54.7-24.2v130.3l67.2-209.3zm-83.2-96.7l-1.3 4.7-15.2 52.9C80.6 106.7 52 145.8 52 191.5c0 52.3 34.3 95.9 83.4 105.5v53.6C57.5 340.1 0 272.4 0 191.6c0-80.5 59.8-147.2 137.4-158zm311.4 447.2c-11.2 11.2-23.1 12.3-28.6 10.5-5.4-1.8-27.1-19.9-60.4-44.4-33.3-24.6-33.6-35.7-43-56.7-9.4-20.9-30.4-42.6-57.5-52.4l-9.7-14.7c-24.7 16.9-53 26.9-81.3 28.7l2.1-6.6 15.9-49.5c46.5-11.9 80.9-54 80.9-104.2 0-54.5-38.4-102.1-96-107.1V32.3C254.4 37.4 320 106.8 320 191.6c0 33.6-11.2 64.7-29 90.4l14.6 9.6c9.8 27.1 31.5 48 52.4 57.4s32.2 9.7 56.8 43c24.6 33.2 42.7 54.9 44.5 60.3s.7 17.3-10.5 28.5zm-9.9-17.9c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8z" + } + } + }, + "seedling": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f4d8", + "label": "Seedling", + "svg": { + "solid": { + "last_modified": 1522083406026, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z" + } + } + }, + "sellcast": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "eercast" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f2da", + "label": "Sellcast", + "svg": { + "brands": { + "last_modified": 1502479343000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M353.4 32H94.7C42.6 32 0 74.6 0 126.6v258.7C0 437.4 42.6 480 94.7 480h258.7c52.1 0 94.7-42.6 94.7-94.6V126.6c0-52-42.6-94.6-94.7-94.6zm-50 316.4c-27.9 48.2-89.9 64.9-138.2 37.2-22.9 39.8-54.9 8.6-42.3-13.2l15.7-27.2c5.9-10.3 19.2-13.9 29.5-7.9 18.6 10.8-.1-.1 18.5 10.7 27.6 15.9 63.4 6.3 79.4-21.3 15.9-27.6 6.3-63.4-21.3-79.4-17.8-10.2-.6-.4-18.6-10.6-24.6-14.2-3.4-51.9 21.6-37.5 18.6 10.8-.1-.1 18.5 10.7 48.4 28 65.1 90.3 37.2 138.5zm21.8-208.8c-17 29.5-16.3 28.8-19 31.5-6.5 6.5-16.3 8.7-26.5 3.6-18.6-10.8.1.1-18.5-10.7-27.6-15.9-63.4-6.3-79.4 21.3s-6.3 63.4 21.3 79.4c0 0 18.5 10.6 18.6 10.6 24.6 14.2 3.4 51.9-21.6 37.5-18.6-10.8.1.1-18.5-10.7-48.2-27.8-64.9-90.1-37.1-138.4 27.9-48.2 89.9-64.9 138.2-37.2l4.8-8.4c14.3-24.9 52-3.3 37.7 21.5z" + } + } + }, + "sellsy": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f213", + "label": "Sellsy", + "svg": { + "brands": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M539.71 237.308c3.064-12.257 4.29-24.821 4.29-37.384C544 107.382 468.618 32 376.076 32c-77.22 0-144.634 53.012-163.02 127.781-15.322-13.176-34.934-20.53-55.157-20.53-46.271 0-83.962 37.69-83.962 83.961 0 7.354.92 15.015 3.065 22.369-42.9 20.225-70.785 63.738-70.785 111.234C6.216 424.843 61.68 480 129.401 480h381.198c67.72 0 123.184-55.157 123.184-123.184.001-56.384-38.916-106.025-94.073-119.508zM199.88 401.554c0 8.274-7.048 15.321-15.321 15.321H153.61c-8.274 0-15.321-7.048-15.321-15.321V290.626c0-8.273 7.048-15.321 15.321-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v110.928zm89.477 0c0 8.274-7.048 15.321-15.322 15.321h-30.949c-8.274 0-15.321-7.048-15.321-15.321V270.096c0-8.274 7.048-15.321 15.321-15.321h30.949c8.274 0 15.322 7.048 15.322 15.321v131.458zm89.477 0c0 8.274-7.047 15.321-15.321 15.321h-30.949c-8.274 0-15.322-7.048-15.322-15.321V238.84c0-8.274 7.048-15.321 15.322-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v162.714zm87.027 0c0 8.274-7.048 15.321-15.322 15.321h-28.497c-8.274 0-15.321-7.048-15.321-15.321V176.941c0-8.579 7.047-15.628 15.321-15.628h28.497c8.274 0 15.322 7.048 15.322 15.628v224.613z" + } + } + }, + "server": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cpu" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f233", + "label": "Server", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z" + } + } + }, + "servicestack": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ec", + "label": "Servicestack", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M88 216c81.7 10.2 273.7 102.3 304 232H0c99.5-8.1 184.5-137 88-232zm32-152c32.3 35.6 47.7 83.9 46.4 133.6C249.3 231.3 373.7 321.3 400 448h96C455.3 231.9 222.8 79.5 120 64z" + } + } + }, + "share": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f064", + "label": "Share", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z" + } + } + }, + "share-alt": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f1e0", + "label": "Alternate Share", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M352 320c-22.608 0-43.387 7.819-59.79 20.895l-102.486-64.054a96.551 96.551 0 0 0 0-41.683l102.486-64.054C308.613 184.181 329.392 192 352 192c53.019 0 96-42.981 96-96S405.019 0 352 0s-96 42.981-96 96c0 7.158.79 14.13 2.276 20.841L155.79 180.895C139.387 167.819 118.608 160 96 160c-53.019 0-96 42.981-96 96s42.981 96 96 96c22.608 0 43.387-7.819 59.79-20.895l102.486 64.054A96.301 96.301 0 0 0 256 416c0 53.019 42.981 96 96 96s96-42.981 96-96-42.981-96-96-96z" + } + } + }, + "share-alt-square": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f1e1", + "label": "Alternate Share Square", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zM304 296c-14.562 0-27.823 5.561-37.783 14.671l-67.958-40.775a56.339 56.339 0 0 0 0-27.793l67.958-40.775C276.177 210.439 289.438 216 304 216c30.928 0 56-25.072 56-56s-25.072-56-56-56-56 25.072-56 56c0 4.797.605 9.453 1.74 13.897l-67.958 40.775C171.823 205.561 158.562 200 144 200c-30.928 0-56 25.072-56 56s25.072 56 56 56c14.562 0 27.823-5.561 37.783-14.671l67.958 40.775a56.088 56.088 0 0 0-1.74 13.897c0 30.928 25.072 56 56 56s56-25.072 56-56C360 321.072 334.928 296 304 296z" + } + } + }, + "share-square": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "send", + "social" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f14d", + "label": "Share Square", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M568.482 177.448L424.479 313.433C409.3 327.768 384 317.14 384 295.985v-71.963c-144.575.97-205.566 35.113-164.775 171.353 4.483 14.973-12.846 26.567-25.006 17.33C155.252 383.105 120 326.488 120 269.339c0-143.937 117.599-172.5 264-173.312V24.012c0-21.174 25.317-31.768 40.479-17.448l144.003 135.988c10.02 9.463 10.028 25.425 0 34.896zM384 379.128V448H64V128h50.916a11.99 11.99 0 0 0 8.648-3.693c14.953-15.568 32.237-27.89 51.014-37.676C185.708 80.83 181.584 64 169.033 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48v-88.806c0-8.288-8.197-14.066-16.011-11.302a71.83 71.83 0 0 1-34.189 3.377c-7.27-1.046-13.8 4.514-13.8 11.859z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M561.938 158.06L417.94 14.092C387.926-15.922 336 5.097 336 48.032v57.198c-42.45 1.88-84.03 6.55-120.76 17.99-35.17 10.95-63.07 27.58-82.91 49.42C108.22 199.2 96 232.6 96 271.94c0 61.697 33.178 112.455 84.87 144.76 37.546 23.508 85.248-12.651 71.02-55.74-15.515-47.119-17.156-70.923 84.11-78.76V336c0 42.993 51.968 63.913 81.94 33.94l143.998-144c18.75-18.74 18.75-49.14 0-67.88zM384 336V232.16C255.309 234.082 166.492 255.35 206.31 376 176.79 357.55 144 324.08 144 271.94c0-109.334 129.14-118.947 240-119.85V48l144 144-144 144zm24.74 84.493a82.658 82.658 0 0 0 20.974-9.303c7.976-4.952 18.286.826 18.286 10.214V464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h132c6.627 0 12 5.373 12 12v4.486c0 4.917-2.987 9.369-7.569 11.152-13.702 5.331-26.396 11.537-38.05 18.585a12.138 12.138 0 0 1-6.28 1.777H54a6 6 0 0 0-6 6v340a6 6 0 0 0 6 6h340a6 6 0 0 0 6-6v-25.966c0-5.37 3.579-10.059 8.74-11.541z" + } + } + }, + "shekel-sign": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ils", + "ils" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f20b", + "label": "Shekel Sign", + "svg": { + "solid": { + "last_modified": 1525967154578, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M248 168v168c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V168c0-75.11-60.89-136-136-136H24C10.75 32 0 42.74 0 56v408c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112h112c30.93 0 56 25.07 56 56zM432 32h-48c-8.84 0-16 7.16-16 16v296c0 30.93-25.07 56-56 56H200V176c0-8.84-7.16-16-16-16h-48c-8.84 0-16 7.16-16 16v280c0 13.25 10.75 24 24 24h168c75.11 0 136-60.89 136-136V48c0-8.84-7.16-16-16-16z" + } + } + }, + "shield-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "shield" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3ed", + "label": "Alternate Shield", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M496 128c0 221.282-135.934 344.645-221.539 380.308a48 48 0 0 1-36.923 0C130.495 463.713 16 326.487 16 128a48 48 0 0 1 29.539-44.308l192-80a48 48 0 0 1 36.923 0l192 80A48 48 0 0 1 496 128zM256 446.313l.066.034c93.735-46.689 172.497-156.308 175.817-307.729L256 65.333v380.98z" + } + } + }, + "ship": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boat", + "sea" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f21a", + "label": "Ship", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M496.616 372.639l70.012-70.012c16.899-16.9 9.942-45.771-12.836-53.092L512 236.102V96c0-17.673-14.327-32-32-32h-64V24c0-13.255-10.745-24-24-24H248c-13.255 0-24 10.745-24 24v40h-64c-17.673 0-32 14.327-32 32v140.102l-41.792 13.433c-22.753 7.313-29.754 36.173-12.836 53.092l70.012 70.012C125.828 416.287 85.587 448 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24 61.023 0 107.499-20.61 143.258-59.396C181.677 487.432 216.021 512 256 512h128c39.979 0 74.323-24.568 88.742-59.396C508.495 491.384 554.968 512 616 512c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24-60.817 0-101.542-31.001-119.384-75.361zM192 128h256v87.531l-118.208-37.995a31.995 31.995 0 0 0-19.584 0L192 215.531V128z" + } + } + }, + "shipping-fast": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f48b", + "label": "Shipping Fast", + "svg": { + "solid": { + "last_modified": 1521653821458, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H112C85.5 0 64 21.5 64 48v48H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h272c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H40c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H64v128c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z" + } + } + }, + "shirtsinbulk": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f214", + "label": "Shirts in Bulk", + "svg": { + "brands": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M395.208 221.583H406v33.542h-10.792v-33.542zm0-9.625H406v-33.542h-10.792v33.542zm0 86.333H406V264.75h-10.792v33.541zM358.75 135.25h-33.542v10.5h33.542v-10.5zm36.458 206.208H406v-33.542h-10.792v33.542zM311.5 135.25h-33.542v10.5H311.5v-10.5zm-47.25 0H231v10.5h33.25v-10.5zm-47.25 0h-33.25v10.5H217v-10.5zm178.208 33.542H406V135.25h-33.542v10.5h22.75v23.042zm-255.792 259l30.625 13.417 4.375-9.917-30.625-13.417-4.375 9.917zM179.083 445l30.334 13.708 4.374-9.916-30.333-13.417-4.375 9.625zm216.125-60.375H406v-33.542h-10.792v33.542zm-334.833 8.167L91 406.208l4.375-9.624-30.625-13.709-4.375 9.917zm39.666 17.499l30.625 13.417 4.375-9.917-30.625-13.416-4.375 9.916zm132.417 38.501l4.375 9.916L267.459 445l-4.375-9.625-30.626 13.417zm118.417-52.208l4.375 9.624 30.624-13.416-4.374-9.917-30.625 13.709zM311.5 413.791l4.375 9.917 30.625-13.417-4.374-9.916-30.626 13.416zm-39.667 17.501l4.375 9.917 30.625-13.417-4.375-9.917-30.625 13.417zM311.5 46.583h-33.542v10.5H311.5v-10.5zm94.209 0h-33.251v10.5h33.251v-10.5zm-188.709 0h-33.25v10.5H217v-10.5zm141.75 0h-33.542v10.5h33.542v-10.5zm-94.5 0H231v10.5h33.25v-10.5zM448 3.708v406l-226.334 98.584L0 409.708v-406h448zm-29.166 116.958H29.166V390.75l192.792 85.75 196.875-85.75V120.666zm0-87.791H29.166V91.5h389.667V32.875zM75.542 46.583H42.291v10.5h33.251v-10.5zm94.5 0H136.5v10.5h33.542v-10.5zm-47.251 0H89.25v10.5h33.542v-10.5zm7.584 236.542c0-50.167 41.125-91.292 91.292-91.292 50.458 0 91.292 41.125 91.292 91.292 0 50.458-40.833 91.292-91.292 91.292-50.167-.001-91.292-40.834-91.292-91.292zm120.75 18.084c0 13.125-23.917 14.291-32.666 14.291-12.25 0-29.75-2.625-35.875-14.875h-.875L172.666 319c14.876 9.333 29.167 12.25 47.25 12.25 19.542 0 51.042-5.833 51.042-31.209 0-48.125-78.458-16.333-78.458-37.916 0-13.125 20.708-14.875 29.75-14.875 10.791 0 29.166 3.208 35.583 13.124h.875l8.751-16.916c-15.167-6.125-27.417-11.959-44.334-11.959-20.125 0-49.583 6.417-49.583 31.792 0 44.334 77.583 11.959 77.583 37.918zM122.791 135.25H89.25v10.5h33.542v-10.5zm-69.999 10.5h22.75v-10.5H42v33.542h10.792V145.75zm0 32.666H42v33.542h10.792v-33.542zm117.25-43.166H136.5v10.5h33.542v-10.5zm-117.25 86.333H42v33.542h10.792v-33.542zm0 86.334H42v33.542h10.792v-33.542zm0-43.167H42v33.542h10.792V264.75zm0 86.333H42v33.542h10.792v-33.542z" + } + } + }, + "shoe-prints": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "feet", + "footprints", + "steps" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f54b", + "label": "Shoe Prints", + "svg": { + "solid": { + "last_modified": 1525967154578, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M192 160h32V32h-32c-35.35 0-64 28.65-64 64s28.65 64 64 64zM0 416c0 35.35 28.65 64 64 64h32V352H64c-35.35 0-64 28.65-64 64zm337.46-128c-34.91 0-76.16 13.12-104.73 32-24.79 16.38-44.52 32-104.73 32v128l57.53 15.97c26.21 7.28 53.01 13.12 80.31 15.05 32.69 2.31 65.6.67 97.58-6.2C472.9 481.3 512 429.22 512 384c0-64-84.18-96-174.54-96zM491.42 7.19C459.44.32 426.53-1.33 393.84.99c-27.3 1.93-54.1 7.77-80.31 15.04L256 32v128c60.2 0 79.94 15.62 104.73 32 28.57 18.88 69.82 32 104.73 32C555.82 224 640 192 640 128c0-45.22-39.1-97.3-148.58-120.81z" + } + } + }, + "shopping-bag": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f290", + "label": "Shopping Bag", + "svg": { + "solid": { + "last_modified": 1502810244000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M352 160v-32C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128v32H0v272c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V160h-96zm-192-32c0-35.29 28.71-64 64-64s64 28.71 64 64v32H160v-32zm160 120c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm-192 0c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24z" + } + } + }, + "shopping-basket": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f291", + "label": "Shopping Basket", + "svg": { + "solid": { + "last_modified": 1502810244000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M576 216v16c0 13.255-10.745 24-24 24h-8l-26.113 182.788C514.509 462.435 494.257 480 470.37 480H105.63c-23.887 0-44.139-17.565-47.518-41.212L32 256h-8c-13.255 0-24-10.745-24-24v-16c0-13.255 10.745-24 24-24h67.341l106.78-146.821c10.395-14.292 30.407-17.453 44.701-7.058 14.293 10.395 17.453 30.408 7.058 44.701L170.477 192h235.046L326.12 82.821c-10.395-14.292-7.234-34.306 7.059-44.701 14.291-10.395 34.306-7.235 44.701 7.058L484.659 192H552c13.255 0 24 10.745 24 24zM312 392V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm112 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm-224 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24z" + } + } + }, + "shopping-cart": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "checkout", + "payment", + "purchase" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f07a", + "label": "shopping-cart", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z" + } + } + }, + "shopware": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5b5", + "label": "Shopware", + "svg": { + "brands": { + "last_modified": 1529514897193, + "raw": "", + "viewBox": [ + "0", + "0", + "495.99", + "512" + ], + "width": 495, + "height": 512, + "path": "M395.5 455.27c-42.95 31.79-93.95 48.59-147.48 48.59-137.21 0-248.02-111-248.02-248 0-137.19 111.04-248 248.02-248 61.3 0 120.14 22.55 165.68 63.5 2.62 2.36.58 6.64-2.86 6.18-17.67-2.43-36.75-3.66-56.71-3.66-129.36 0-222.4 53.47-222.4 155.35 0 109.04 92.13 145.88 176.83 178.73 33.64 13.04 65.4 25.36 86.96 41.59 1.9 1.44 1.89 4.31-.02 5.72zm99.46-222.32c-.08-.94-.55-1.83-1.27-2.44-51.76-42.96-93.62-60.48-144.48-60.48-84.13 0-80.25 52.17-80.25 53.63 0 42.6 52.06 62.01 112.34 84.49 31.07 11.59 63.19 23.57 92.68 39.93 1.88 1.05 4.26.19 5.05-1.82 18.89-48.39 17.94-90.23 15.93-113.31z" + } + } + }, + "shower": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f2cc", + "label": "Shower", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M389.66 135.6L231.6 293.66c-9.37 9.37-24.57 9.37-33.94 0l-11.32-11.32c-9.37-9.37-9.37-24.57 0-33.94l.11-.11c-34.03-40.21-35.16-98.94-3.39-140.38-11.97-7.55-26.14-11.91-41.3-11.91C98.88 96 64 130.88 64 173.76V480H0V173.76C0 95.59 63.59 32 141.76 32c36.93 0 70.61 14.2 95.86 37.42 35.9-11.51 76.5-4.5 106.67 21.03l.11-.11c9.37-9.37 24.57-9.37 33.94 0l11.32 11.32c9.37 9.37 9.37 24.57 0 33.94zM384 208c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm48-16c8.837 0 16 7.163 16 16s-7.163 16-16 16-16-7.163-16-16 7.163-16 16-16zm80 16c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-128 32c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-96 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm64 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16z" + } + } + }, + "shuttle-van": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "machine", + "public-transportation", + "transportation", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5b6", + "label": "Shuttle Van", + "svg": { + "solid": { + "last_modified": 1529520111697, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M628.88 210.65L494.39 49.27A48.01 48.01 0 0 0 457.52 32H32C14.33 32 0 46.33 0 64v288c0 17.67 14.33 32 32 32h32c0 53.02 42.98 96 96 96s96-42.98 96-96h128c0 53.02 42.98 96 96 96s96-42.98 96-96h32c17.67 0 32-14.33 32-32V241.38c0-11.23-3.94-22.1-11.12-30.73zM64 192V96h96v96H64zm96 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm160-240h-96V96h96v96zm160 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm-96-240V96h66.02l80 96H384z" + } + } + }, + "sign": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f4d9", + "label": "Sign", + "svg": { + "solid": { + "last_modified": 1521653821458, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M496 64H128V16c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16v48H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V128h368c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM160 384h320V160H160v224z" + } + } + }, + "sign-in-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "enter", + "join", + "log in", + "login", + "sign in", + "sign up", + "sign-in", + "signin", + "signup" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2f6", + "label": "Alternate Sign In", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z" + } + } + }, + "sign-language": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f2a7", + "label": "Sign Language", + "svg": { + "solid": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M91.434 483.987c-.307-16.018 13.109-29.129 29.13-29.129h62.293v-5.714H56.993c-16.021 0-29.437-13.111-29.13-29.129C28.16 404.491 40.835 392 56.428 392h126.429v-5.714H29.136c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h154.286v-5.714H57.707c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h168.566l-31.085-22.606c-12.762-9.281-15.583-27.149-6.302-39.912 9.281-12.761 27.15-15.582 39.912-6.302l123.361 89.715a34.287 34.287 0 0 1 14.12 27.728v141.136c0 15.91-10.946 29.73-26.433 33.374l-80.471 18.934a137.16 137.16 0 0 1-31.411 3.646H120c-15.593-.001-28.269-12.492-28.566-28.014zm73.249-225.701h36.423l-11.187-8.136c-18.579-13.511-20.313-40.887-3.17-56.536l-13.004-16.7c-9.843-12.641-28.43-15.171-40.88-5.088-12.065 9.771-14.133 27.447-4.553 39.75l36.371 46.71zm283.298-2.103l-5.003-152.452c-.518-15.771-13.722-28.136-29.493-27.619-15.773.518-28.137 13.722-27.619 29.493l1.262 38.415L283.565 11.019c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l76.889 98.745-4.509 3.511-94.79-121.734c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l94.443 121.288-4.509 3.511-77.675-99.754c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l52.053 66.849c12.497-8.257 29.055-8.285 41.69.904l123.36 89.714c10.904 7.93 17.415 20.715 17.415 34.198v16.999l61.064-47.549a34.285 34.285 0 0 0 13.202-28.177z" + } + } + }, + "sign-out-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "exit", + "leave", + "log out", + "logout", + "sign-out" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2f5", + "label": "Alternate Sign Out", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z" + } + } + }, + "signal": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bars", + "graph", + "online", + "status" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f012", + "label": "signal", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M36 384h56c6.6 0 12 5.4 12 12v104c0 6.6-5.4 12-12 12H36c-6.6 0-12-5.4-12-12V396c0-6.6 5.4-12 12-12zm116-36v152c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V348c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-80v232c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V268c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-112v344c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V156c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zM536 12v488c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V12c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12z" + } + } + }, + "signature": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "John Hancock", + "cursive", + "name", + "writing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5b7", + "label": "Signature", + "svg": { + "solid": { + "last_modified": 1529520111698, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M496 320h-91.86c-9.27 0-19.72-11.31-25.78-28.52-15.23-43.36-48.11-70.3-85.8-70.3-30.84 0-58.47 18.05-76.11 49.23L194.8 106.5C188.84 81.08 169.34 64 146.28 64c-23.05 0-42.55 17.08-48.5 42.5L56.16 284.2C50.7 307.45 37.75 320 28.33 320H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h12.33c41.97 0 78.19-34.23 90.14-85.2l23.84-101.78 29.25 222.11c1.98 15.05 13.82 27.45 28.94 28.75.99.09 1.96.13 2.93.13 14.08 0 26.64-9.27 30.69-22.95l33.03-112.34c5.88-16.72 15.84-27.52 25.41-27.52 9.58 0 19.55 10.8 25.78 28.52 15.23 43.36 48.11 70.3 85.8 70.3H496c8.84 0 16-7.16 16-16v-32c0-8.86-7.16-16.02-16-16.02z" + } + } + }, + "simplybuilt": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f215", + "label": "SimplyBuilt", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M481.2 64h-106c-14.5 0-26.6 11.8-26.6 26.3v39.6H163.3V90.3c0-14.5-12-26.3-26.6-26.3h-106C16.1 64 4.3 75.8 4.3 90.3v331.4c0 14.5 11.8 26.3 26.6 26.3h450.4c14.8 0 26.6-11.8 26.6-26.3V90.3c-.2-14.5-12-26.3-26.7-26.3zM149.8 355.8c-36.6 0-66.4-29.7-66.4-66.4 0-36.9 29.7-66.6 66.4-66.6 36.9 0 66.6 29.7 66.6 66.6 0 36.7-29.7 66.4-66.6 66.4zm212.4 0c-36.9 0-66.6-29.7-66.6-66.6 0-36.6 29.7-66.4 66.6-66.4 36.6 0 66.4 29.7 66.4 66.4 0 36.9-29.8 66.6-66.4 66.6z" + } + } + }, + "sistrix": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ee", + "label": "SISTRIX", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 449L301.2 300.2c20-27.9 31.9-62.2 31.9-99.2 0-93.1-74.7-168.9-166.5-168.9C74.7 32 0 107.8 0 200.9s74.7 168.9 166.5 168.9c39.8 0 76.3-14.2 105-37.9l146 148.1 30.5-31zM166.5 330.8c-70.6 0-128.1-58.3-128.1-129.9S95.9 71 166.5 71s128.1 58.3 128.1 129.9-57.4 129.9-128.1 129.9z" + } + } + }, + "sitemap": { + "changes": [ + "2", + "5.0.0", + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "directory", + "hierarchy", + "ia", + "information architecture", + "organization" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0e8", + "label": "Sitemap", + "svg": { + "solid": { + "last_modified": 1525967154578, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M128 352H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm-24-80h192v48h48v-48h192v48h48v-57.59c0-21.17-17.23-38.41-38.41-38.41H344v-64h40c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H256c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h40v64H94.41C73.23 224 56 241.23 56 262.41V320h48v-48zm264 80h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm240 0h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z" + } + } + }, + "sith": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f512", + "label": "Sith", + "svg": { + "brands": { + "last_modified": 1525376442522, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 32l69.71 118.75-58.86-11.52 69.84 91.03a146.741 146.741 0 0 0 0 51.45l-69.84 91.03 58.86-11.52L0 480l118.75-69.71-11.52 58.86 91.03-69.84c17.02 3.04 34.47 3.04 51.48 0l91.03 69.84-11.52-58.86L448 480l-69.71-118.78 58.86 11.52-69.84-91.03c3.03-17.01 3.04-34.44 0-51.45l69.84-91.03-58.86 11.52L448 32l-118.75 69.71 11.52-58.9-91.06 69.87c-8.5-1.52-17.1-2.29-25.71-2.29s-17.21.78-25.71 2.29l-91.06-69.87 11.52 58.9L0 32zm224 99.78c31.8 0 63.6 12.12 87.85 36.37 48.5 48.5 48.49 127.21 0 175.7s-127.2 48.46-175.7-.03c-48.5-48.5-48.49-127.21 0-175.7 24.24-24.25 56.05-36.34 87.85-36.34zm0 36.66c-22.42 0-44.83 8.52-61.92 25.61-34.18 34.18-34.19 89.68 0 123.87s89.65 34.18 123.84 0c34.18-34.18 34.19-89.68 0-123.87-17.09-17.09-39.5-25.61-61.92-25.61z" + } + } + }, + "skull": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "bones", + "skeleton", + "yorick" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f54c", + "label": "Skull", + "svg": { + "solid": { + "last_modified": 1525967154579, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 0C114.6 0 0 100.3 0 224c0 70.1 36.9 132.6 94.5 173.7 9.6 6.9 15.2 18.1 13.5 29.9l-9.4 66.2c-1.4 9.6 6 18.2 15.7 18.2H192v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h64v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h77.7c9.7 0 17.1-8.6 15.7-18.2l-9.4-66.2c-1.7-11.7 3.8-23 13.5-29.9C475.1 356.6 512 294.1 512 224 512 100.3 397.4 0 256 0zm-96 320c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm192 0c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64z" + } + } + }, + "skyatlas": { + "changes": [ + "4.3", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f216", + "label": "skyatlas", + "svg": { + "brands": { + "last_modified": 1515426582001, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M640 329.3c0 65.9-52.5 114.4-117.5 114.4-165.9 0-196.6-249.7-359.7-249.7-146.9 0-147.1 212.2 5.6 212.2 42.5 0 90.9-17.8 125.3-42.5 5.6-4.1 16.9-16.3 22.8-16.3s10.9 5 10.9 10.9c0 7.8-13.1 19.1-18.7 24.1-40.9 35.6-100.3 61.2-154.7 61.2-83.4.1-154-59-154-144.9s67.5-149.1 152.8-149.1c185.3 0 222.5 245.9 361.9 245.9 99.9 0 94.8-139.7 3.4-139.7-17.5 0-35 11.6-46.9 11.6-8.4 0-15.9-7.2-15.9-15.6 0-11.6 5.3-23.7 5.3-36.3 0-66.6-50.9-114.7-116.9-114.7-53.1 0-80 36.9-88.8 36.9-6.2 0-11.2-5-11.2-11.2 0-5.6 4.1-10.3 7.8-14.4 25.3-28.8 64.7-43.7 102.8-43.7 79.4 0 139.1 58.4 139.1 137.8 0 6.9-.3 13.7-1.2 20.6 11.9-3.1 24.1-4.7 35.9-4.7 60.7 0 111.9 45.3 111.9 107.2z" + } + } + }, + "skype": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f17e", + "label": "Skype", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M424.7 299.8c2.9-14 4.7-28.9 4.7-43.8 0-113.5-91.9-205.3-205.3-205.3-14.9 0-29.7 1.7-43.8 4.7C161.3 40.7 137.7 32 112 32 50.2 32 0 82.2 0 144c0 25.7 8.7 49.3 23.3 68.2-2.9 14-4.7 28.9-4.7 43.8 0 113.5 91.9 205.3 205.3 205.3 14.9 0 29.7-1.7 43.8-4.7 19 14.6 42.6 23.3 68.2 23.3 61.8 0 112-50.2 112-112 .1-25.6-8.6-49.2-23.2-68.1zm-194.6 91.5c-65.6 0-120.5-29.2-120.5-65 0-16 9-30.6 29.5-30.6 31.2 0 34.1 44.9 88.1 44.9 25.7 0 42.3-11.4 42.3-26.3 0-18.7-16-21.6-42-28-62.5-15.4-117.8-22-117.8-87.2 0-59.2 58.6-81.1 109.1-81.1 55.1 0 110.8 21.9 110.8 55.4 0 16.9-11.4 31.8-30.3 31.8-28.3 0-29.2-33.5-75-33.5-25.7 0-42 7-42 22.5 0 19.8 20.8 21.8 69.1 33 41.4 9.3 90.7 26.8 90.7 77.6 0 59.1-57.1 86.5-112 86.5z" + } + } + }, + "slack": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anchor", + "hash", + "hashtag" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f198", + "label": "Slack Logo", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M244.2 217.5l19.3 57.7-59.8 20-19.3-57.7 59.8-20zm41.4 243.7C131.6 507.4 65 471.6 18.8 317.6S8.4 97 162.4 50.8C316.4 4.6 383 40.4 429.2 194.4c46.2 154 10.4 220.6-143.6 266.8zM366.2 265c-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-19.3-57.7 29-9.7c12.2-3.9 18.6-17.2 14.7-29.4-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-59.8 20.1-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l19.3 57.7-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 59.8-20.1 10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 29-9.7c12.2-4.2 18.6-17.5 14.7-29.6z" + } + } + }, + "slack-hash": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anchor", + "hash", + "hashtag" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f3ef", + "label": "Slack Hashtag", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M446.2 270.4c-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-30.3-90 45.4-15.1c19.1-6.2 29.1-26.8 23-45.9-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-93.4 31.2-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-45.3 15c-19.1 6.2-29.1 26.8-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l30.3 90L78 354.8c-19 6.2-29.1 26.9-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 93.6-31.3 15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 45.4-15.1c19-6 29.1-26.7 22.9-45.7zm-254.1 47.2l-30.3-90.2 93.5-31.3 30.3 90.2-93.5 31.3z" + } + } + }, + "sliders-h": { + "changes": [ + "4.1", + "5.0.0", + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "settings", + "sliders" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1de", + "label": "Horizontal Sliders", + "svg": { + "solid": { + "last_modified": 1525209365070, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z" + } + } + }, + "slideshare": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1e7", + "label": "Slideshare", + "svg": { + "brands": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M249.429 211.436c0 31.716-27.715 57.717-61.717 57.717-34.001 0-61.716-26.001-61.716-57.717 0-32.001 27.715-57.716 61.716-57.716 34.001 0 61.717 25.715 61.717 57.716zm254.294 50.002c-18.286 22.573-53.144 50.288-106.289 72.003C453.722 525.163 260 555.735 263.143 457.446c0 1.714-.286-52.859-.286-93.432-4.285-.858-8.571-2-13.714-3.143 0 40.858-.286 98.289-.286 96.575C252 555.735 58.278 525.163 114.566 333.441c-53.145-21.715-88.003-49.43-106.29-72.003-9.143-13.714.858-28.287 16.001-17.715 2 1.428 4.285 2.857 6.285 4.285V49.716C30.563 22.287 51.135 0 76.565 0h359.157c25.429 0 46.002 22.287 46.002 49.716v198.293l6-4.285c15.143-10.573 25.143 4 15.999 17.714zm-46.572-189.15c0-32.858-10.572-45.716-40.859-45.716H98.566c-31.716 0-40.573 10.858-40.573 45.716v192.293c67.717 35.43 125.72 29.144 157.435 28.001 13.429-.286 22.001 2.286 27.144 7.715 1.689 1.687 10.023 9.446 20.287 17.143 1.143-15.715 10.001-25.715 33.716-24.858 32.287 1.428 91.718 7.715 160.577-29.716V72.288zM331.146 153.72c-34.002 0-61.716 25.715-61.716 57.716 0 31.716 27.715 57.717 61.716 57.717 34.287 0 61.716-26.001 61.716-57.717 0-32.001-27.429-57.716-61.716-57.716z" + } + } + }, + "smile": { + "changes": [ + "3.1", + "5.0.0", + "5.0.9", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "approve", + "emoticon", + "face", + "happy", + "rating", + "satisfied" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f118", + "label": "Smiling Face", + "svg": { + "solid": { + "last_modified": 1529520111699, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.6-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.4-16.2 38.1 4.2 24.6 20.5z" + }, + "regular": { + "last_modified": 1529520111635, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm4 72.6c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.1-8.4-25.3-7.1-33.8 3.1z" + } + } + }, + "smile-beam": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "happy" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f5b8", + "label": "Beaming Face With Smiling Eyes", + "svg": { + "solid": { + "last_modified": 1529520111698, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM112 223.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zm250.8 122.8C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.3 24.6 20.5zm6.2-118.3l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.6 8.6-11 11.9-15.1 4.5z" + }, + "regular": { + "last_modified": 1529520111634, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm84-143.4c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.6-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.2-8.4-25.3-7.1-33.8 3.1zM136.5 211c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.4 1.1 7.4-.5 9.3-3.7l9.5-17zM328 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4z" + } + } + }, + "smile-wink": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "happy" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f4da", + "label": "Winking Face", + "svg": { + "solid": { + "last_modified": 1529520111699, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm158.5 16.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.7 11.1-11.4 18.3-19.8 10.8l-9.7-8.5zM157.8 325.8C180.2 352.7 213 368 248 368s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.2 24.6 20.5C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11.2-36.7 24.6-20.4z" + }, + "regular": { + "last_modified": 1529520111635, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm117.8-146.4c-10.2-8.5-25.3-7.1-33.8 3.1-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-60c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1z" + } + } + }, + "smoking": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "cigarette", + "nicotine", + "smoking status" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f48d", + "label": "Smoking", + "svg": { + "solid": { + "last_modified": 1521653821458, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M632 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8zM553.3 87.1c-5.7-3.8-9.3-10-9.3-16.8V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v62.3c0 22 10.2 43.4 28.6 55.4 42.2 27.3 67.4 73.8 67.4 124V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-65.5-32.4-126.2-86.7-162.6zM432 352H48c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h384c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zm-32 112H224v-64h176v64zm87.7-322.4C463.8 125 448 99.3 448 70.3V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v66.4c0 43.7 24.6 81.6 60.3 106.7 22.4 15.7 35.7 41.2 35.7 68.6V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-43.3-21-83.4-56.3-108.1zM536 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8z" + } + } + }, + "smoking-ban": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "no smoking", + "non-smoking" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f54d", + "label": "Smoking Ban", + "svg": { + "solid": { + "last_modified": 1525967154579, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M96 304c0 8.8 7.2 16 16 16h117.5l-96-96H112c-8.8 0-16 7.2-16 16v64zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 448c-105.9 0-192-86.1-192-192 0-41.4 13.3-79.7 35.7-111.1l267.4 267.4C335.7 434.7 297.4 448 256 448zm45.2-192H384v32h-50.8l-32-32zm111.1 111.1L365.2 320H400c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16H269.2L144.9 99.7C176.3 77.3 214.6 64 256 64c105.9 0 192 86.1 192 192 0 41.4-13.3 79.7-35.7 111.1zM320.6 128c-15.6 0-28.6-11.2-31.4-25.9-.7-3.6-4-6.1-7.7-6.1h-16.2c-5 0-8.7 4.5-8 9.4 4.6 30.9 31.2 54.6 63.3 54.6 15.6 0 28.6 11.2 31.4 25.9.7 3.6 4 6.1 7.7 6.1h16.2c5 0 8.7-4.5 8-9.4-4.6-30.9-31.2-54.6-63.3-54.6z" + } + } + }, + "snapchat": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2ab", + "label": "Snapchat", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm169.5 338.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C183.1 100 230.7 96 244.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z" + } + } + }, + "snapchat-ghost": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2ac", + "label": "Snapchat Ghost", + "svg": { + "brands": { + "last_modified": 1521653821388, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M510.846 392.673c-5.211 12.157-27.239 21.089-67.36 27.318-2.064 2.786-3.775 14.686-6.507 23.956-1.625 5.566-5.623 8.869-12.128 8.869l-.297-.005c-9.395 0-19.203-4.323-38.852-4.323-26.521 0-35.662 6.043-56.254 20.588-21.832 15.438-42.771 28.764-74.027 27.399-31.646 2.334-58.025-16.908-72.871-27.404-20.714-14.643-29.828-20.582-56.241-20.582-18.864 0-30.736 4.72-38.852 4.72-8.073 0-11.213-4.922-12.422-9.04-2.703-9.189-4.404-21.263-6.523-24.13-20.679-3.209-67.31-11.344-68.498-32.15a10.627 10.627 0 0 1 8.877-11.069c69.583-11.455 100.924-82.901 102.227-85.934.074-.176.155-.344.237-.515 3.713-7.537 4.544-13.849 2.463-18.753-5.05-11.896-26.872-16.164-36.053-19.796-23.715-9.366-27.015-20.128-25.612-27.504 2.437-12.836 21.725-20.735 33.002-15.453 8.919 4.181 16.843 6.297 23.547 6.297 5.022 0 8.212-1.204 9.96-2.171-2.043-35.936-7.101-87.29 5.687-115.969C158.122 21.304 229.705 15.42 250.826 15.42c.944 0 9.141-.089 10.11-.089 52.148 0 102.254 26.78 126.723 81.643 12.777 28.65 7.749 79.792 5.695 116.009 1.582.872 4.357 1.942 8.599 2.139 6.397-.286 13.815-2.389 22.069-6.257 6.085-2.846 14.406-2.461 20.48.058l.029.01c9.476 3.385 15.439 10.215 15.589 17.87.184 9.747-8.522 18.165-25.878 25.018-2.118.835-4.694 1.655-7.434 2.525-9.797 3.106-24.6 7.805-28.616 17.271-2.079 4.904-1.256 11.211 2.46 18.748.087.168.166.342.239.515 1.301 3.03 32.615 74.46 102.23 85.934 6.427 1.058 11.163 7.877 7.725 15.859z" + } + } + }, + "snapchat-square": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2ad", + "label": "Snapchat Square", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6.5 314.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C159.1 100 206.7 96 220.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z" + } + } + }, + "snowflake": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2dc", + "label": "Snowflake", + "svg": { + "solid": { + "last_modified": 1503066239000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M444.816 301.639a24.12 24.12 0 0 0 2.661-16.978c-2.725-12.966-15.339-21.245-28.174-18.492l-87.407 25.046L264 256l67.896-35.215 87.407 25.046c12.835 2.753 25.449-5.526 28.174-18.492 2.725-12.966-5.471-25.708-18.305-28.461l-47.477-7.137 53.077-30.956c11.363-6.627 15.257-21.306 8.696-32.785-6.561-11.479-21.091-15.412-32.454-8.785l-53.077 30.956 17.621-45.104c4.057-12.606-2.768-26.146-15.247-30.245-12.478-4.099-25.883 2.797-29.94 15.402l-22.232 88.99-60.38 35.215V144l65.175-63.945c8.778-9.852 7.987-25.027-1.766-33.894-9.753-8.867-24.775-8.068-33.552 1.784l-29.857 37.967V24c0-13.255-10.637-24-23.758-24s-23.758 10.745-23.758 24v61.912l-29.857-37.967c-8.779-9.852-23.799-10.652-33.552-1.784-9.753 8.867-10.543 24.042-1.766 33.894L200.242 144v70.431l-60.38-35.215-22.232-88.99c-4.057-12.605-17.462-19.501-29.94-15.402-12.478 4.099-19.304 17.64-15.247 30.245l17.62 45.104-53.077-30.956c-11.363-6.627-25.893-2.694-32.454 8.785s-2.667 26.157 8.696 32.785l53.077 30.956-47.477 7.137C5.993 201.634-2.203 214.375.523 227.341c2.725 12.965 15.339 21.245 28.174 18.492l87.407-25.046L184 256l-67.896 35.215-87.406-25.045c-12.835-2.753-25.449 5.526-28.174 18.492-2.725 12.967 5.47 25.708 18.305 28.461l47.477 7.137-53.077 30.956C1.866 357.843-2.027 372.521 4.533 384s21.091 15.412 32.454 8.785l53.077-30.956-17.62 45.104a24.157 24.157 0 0 0 2.022 19.428c2.831 4.953 7.416 8.909 13.224 10.816 12.478 4.099 25.883-2.797 29.94-15.402l22.232-88.99 60.38-35.215V368l-65.175 63.945c-8.778 9.852-7.987 25.027 1.766 33.894 9.754 8.868 24.774 8.068 33.552-1.784l29.857-37.967V488c0 13.255 10.637 24 23.758 24s23.758-10.745 23.758-24v-61.912l29.857 37.967A23.59 23.59 0 0 0 295.282 472a23.534 23.534 0 0 0 15.885-6.161c9.753-8.867 10.544-24.042 1.766-33.894L247.758 368v-70.431l60.38 35.215 22.232 88.99c4.057 12.605 17.462 19.501 29.94 15.402 12.479-4.099 19.304-17.64 15.247-30.245l-17.621-45.104 53.077 30.956c11.363 6.627 25.893 2.694 32.454-8.785s2.667-26.157-8.696-32.785l-53.077-30.956 47.477-7.137c6.86-1.469 12.394-5.793 15.645-11.481z" + }, + "regular": { + "last_modified": 1503066239000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M438.237 355.927l-66.574-38.54 59.448-10.327c5.846-1.375 10.609-5.183 13.458-10.13 2.48-4.307 3.506-9.478 2.524-14.651-2.11-11.115-12.686-18.039-23.621-15.467l-85.423 31.115L255.914 256l82.136-41.926 85.423 31.115c10.936 2.572 21.512-4.352 23.621-15.467 2.111-11.115-5.046-22.209-15.981-24.781l-59.448-10.327 66.573-38.54c9.54-5.523 12.615-18.092 6.867-28.074-5.748-9.982-18.14-13.596-27.68-8.074l-66.574 38.54 20.805-56.787c3.246-10.782-2.758-22.542-13.413-26.268-10.654-3.725-21.922 1.997-25.168 12.779l-15.838 89.735-72.423 41.926V136l69.585-58.621c7.689-8.21 6.997-20.856-1.548-28.245-8.545-7.391-21.705-6.723-29.394 1.486l-38.644 46.46V20c0-11.046-9.318-20-20.813-20s-20.813 8.954-20.813 20v77.08l-38.644-46.46c-7.689-8.21-20.849-8.876-29.394-1.486-8.544 7.389-9.236 20.035-1.547 28.245L203.187 136v83.853l-72.423-41.926-15.838-89.736c-3.247-10.782-14.515-16.504-25.169-12.779-10.656 3.725-16.659 15.486-13.413 26.268l20.805 56.787-66.573-38.54c-9.54-5.523-21.933-1.908-27.68 8.074s-2.673 22.551 6.867 28.074l66.574 38.54-59.449 10.328C5.953 207.515-1.202 218.609.907 229.724c2.11 11.114 12.686 18.038 23.622 15.466l85.422-31.115L192.086 256l-82.136 41.926-85.423-31.115c-10.936-2.572-21.511 4.352-23.622 15.466-2.109 11.113 5.046 22.209 15.981 24.781l59.449 10.328-66.574 38.54C.223 361.449-2.852 374.018 2.896 384s18.14 13.597 27.68 8.074l66.574-38.54-20.805 56.786c-1.735 5.764-.828 11.805 2.02 16.751 2.48 4.307 6.433 7.784 11.392 9.517 10.655 3.725 21.923-1.997 25.169-12.779l15.838-89.736 72.423-41.926V376l-69.585 58.621c-7.69 8.21-6.997 20.855 1.547 28.245 8.544 7.388 21.705 6.723 29.394-1.487l38.644-46.46V492c0 11.046 9.318 20 20.813 20s20.813-8.954 20.813-20v-77.081l38.644 46.46c4.111 4.389 9.782 6.621 15.478 6.621 4.96 0 9.939-1.694 13.916-5.134 8.545-7.39 9.237-20.035 1.548-28.245L244.813 376v-83.853l72.423 41.926 15.838 89.736c3.246 10.782 14.514 16.504 25.168 12.779 10.653-3.726 16.659-15.487 13.412-26.268l-20.805-56.787 66.574 38.54c9.54 5.523 21.933 1.908 27.68-8.074 5.749-9.981 2.675-22.55-6.866-28.072z" + } + } + }, + "solar-panel": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clean", + "eco-friendly", + "energy", + "green", + "sun" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5ba", + "label": "Solar Panel", + "svg": { + "solid": { + "last_modified": 1529520111699, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M431.98 448.01l-47.97.05V416h-128v32.21l-47.98.05c-8.82.01-15.97 7.16-15.98 15.99l-.05 31.73c-.01 8.85 7.17 16.03 16.02 16.02l223.96-.26c8.82-.01 15.97-7.16 15.98-15.98l.04-31.73c.01-8.85-7.17-16.03-16.02-16.02zM585.2 26.74C582.58 11.31 568.99 0 553.06 0H86.93C71 0 57.41 11.31 54.79 26.74-3.32 369.16.04 348.08.03 352c-.03 17.32 14.29 32 32.6 32h574.74c18.23 0 32.51-14.56 32.59-31.79.02-4.08 3.35 16.95-54.76-325.47zM259.83 64h120.33l9.77 96H250.06l9.77-96zm-75.17 256H71.09L90.1 208h105.97l-11.41 112zm16.29-160H98.24l16.29-96h96.19l-9.77 96zm32.82 160l11.4-112h149.65l11.4 112H233.77zm195.5-256h96.19l16.29 96H439.04l-9.77-96zm26.06 256l-11.4-112H549.9l19.01 112H455.33z" + } + } + }, + "sort": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "order" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0dc", + "label": "Sort", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z" + } + } + }, + "sort-alpha-down": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "sort-alpha-asc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f15d", + "label": "Sort Alpha Down", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zm119.075-180.007A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z" + } + } + }, + "sort-alpha-up": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "sort-alpha-desc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f15e", + "label": "Sort Alpha Up", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zm301.671 98.621A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z" + } + } + }, + "sort-amount-down": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "sort-amount-asc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f160", + "label": "Sort Amount Down", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z" + } + } + }, + "sort-amount-up": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "sort-amount-desc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f161", + "label": "Sort Amount Up", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z" + } + } + }, + "sort-down": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "descending", + "sort-desc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0dd", + "label": "Sort Down (Descending)", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z" + } + } + }, + "sort-numeric-down": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "numbers", + "sort-numeric-asc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f162", + "label": "Sort Numeric Down", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM175.984 368H128V48c0-8.837-7.163-16-16-16H80c-8.837 0-16 7.163-16 16v320H16.019c-14.212 0-21.384 17.244-11.314 27.314l79.981 80.002c6.245 6.245 16.38 6.247 22.627 0l79.984-80.002c10.05-10.05 2.928-27.314-11.313-27.314z" + } + } + }, + "sort-numeric-up": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "numbers", + "sort-numeric-desc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f163", + "label": "Sort Numeric Up", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM16.016 144H64v320c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144h47.981c14.212 0 21.384-17.244 11.314-27.314l-79.981-80.002c-6.245-6.245-16.38-6.247-22.627 0L4.702 116.686C-5.347 126.736 1.775 144 16.016 144z" + } + } + }, + "sort-up": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "ascending", + "sort-asc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0de", + "label": "Sort Up (Ascending)", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z" + } + } + }, + "soundcloud": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1be", + "label": "SoundCloud", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M111.4 256.3l5.8 65-5.8 68.3c-.3 2.5-2.2 4.4-4.4 4.4s-4.2-1.9-4.2-4.4l-5.6-68.3 5.6-65c0-2.2 1.9-4.2 4.2-4.2 2.2 0 4.1 2 4.4 4.2zm21.4-45.6c-2.8 0-4.7 2.2-5 5l-5 105.6 5 68.3c.3 2.8 2.2 5 5 5 2.5 0 4.7-2.2 4.7-5l5.8-68.3-5.8-105.6c0-2.8-2.2-5-4.7-5zm25.5-24.1c-3.1 0-5.3 2.2-5.6 5.3l-4.4 130 4.4 67.8c.3 3.1 2.5 5.3 5.6 5.3 2.8 0 5.3-2.2 5.3-5.3l5.3-67.8-5.3-130c0-3.1-2.5-5.3-5.3-5.3zM7.2 283.2c-1.4 0-2.2 1.1-2.5 2.5L0 321.3l4.7 35c.3 1.4 1.1 2.5 2.5 2.5s2.2-1.1 2.5-2.5l5.6-35-5.6-35.6c-.3-1.4-1.1-2.5-2.5-2.5zm23.6-21.9c-1.4 0-2.5 1.1-2.5 2.5l-6.4 57.5 6.4 56.1c0 1.7 1.1 2.8 2.5 2.8s2.5-1.1 2.8-2.5l7.2-56.4-7.2-57.5c-.3-1.4-1.4-2.5-2.8-2.5zm25.3-11.4c-1.7 0-3.1 1.4-3.3 3.3L47 321.3l5.8 65.8c.3 1.7 1.7 3.1 3.3 3.1 1.7 0 3.1-1.4 3.1-3.1l6.9-65.8-6.9-68.1c0-1.9-1.4-3.3-3.1-3.3zm25.3-2.2c-1.9 0-3.6 1.4-3.6 3.6l-5.8 70 5.8 67.8c0 2.2 1.7 3.6 3.6 3.6s3.6-1.4 3.9-3.6l6.4-67.8-6.4-70c-.3-2.2-2-3.6-3.9-3.6zm241.4-110.9c-1.1-.8-2.8-1.4-4.2-1.4-2.2 0-4.2.8-5.6 1.9-1.9 1.7-3.1 4.2-3.3 6.7v.8l-3.3 176.7 1.7 32.5 1.7 31.7c.3 4.7 4.2 8.6 8.9 8.6s8.6-3.9 8.6-8.6l3.9-64.2-3.9-177.5c-.4-3-2-5.8-4.5-7.2zm-26.7 15.3c-1.4-.8-2.8-1.4-4.4-1.4s-3.1.6-4.4 1.4c-2.2 1.4-3.6 3.9-3.6 6.7l-.3 1.7-2.8 160.8s0 .3 3.1 65.6v.3c0 1.7.6 3.3 1.7 4.7 1.7 1.9 3.9 3.1 6.4 3.1 2.2 0 4.2-1.1 5.6-2.5 1.7-1.4 2.5-3.3 2.5-5.6l.3-6.7 3.1-58.6-3.3-162.8c-.3-2.8-1.7-5.3-3.9-6.7zm-111.4 22.5c-3.1 0-5.8 2.8-5.8 6.1l-4.4 140.6 4.4 67.2c.3 3.3 2.8 5.8 5.8 5.8 3.3 0 5.8-2.5 6.1-5.8l5-67.2-5-140.6c-.2-3.3-2.7-6.1-6.1-6.1zm376.7 62.8c-10.8 0-21.1 2.2-30.6 6.1-6.4-70.8-65.8-126.4-138.3-126.4-17.8 0-35 3.3-50.3 9.4-6.1 2.2-7.8 4.4-7.8 9.2v249.7c0 5 3.9 8.6 8.6 9.2h218.3c43.3 0 78.6-35 78.6-78.3.1-43.6-35.2-78.9-78.5-78.9zm-296.7-60.3c-4.2 0-7.5 3.3-7.8 7.8l-3.3 136.7 3.3 65.6c.3 4.2 3.6 7.5 7.8 7.5 4.2 0 7.5-3.3 7.5-7.5l3.9-65.6-3.9-136.7c-.3-4.5-3.3-7.8-7.5-7.8zm-53.6-7.8c-3.3 0-6.4 3.1-6.4 6.7l-3.9 145.3 3.9 66.9c.3 3.6 3.1 6.4 6.4 6.4 3.6 0 6.4-2.8 6.7-6.4l4.4-66.9-4.4-145.3c-.3-3.6-3.1-6.7-6.7-6.7zm26.7 3.4c-3.9 0-6.9 3.1-6.9 6.9L227 321.3l3.9 66.4c.3 3.9 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9l4.2-66.4-4.2-141.7c0-3.9-3-6.9-6.9-6.9z" + } + } + }, + "spa": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mindfullness", + "plant", + "wellness" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5bb", + "label": "Spa", + "svg": { + "solid": { + "last_modified": 1529520111700, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M568.25 192c-29.04.13-135.01 6.16-213.84 83-33.12 29.63-53.36 63.3-66.41 94.86-13.05-31.56-33.29-65.23-66.41-94.86-78.83-76.84-184.8-82.87-213.84-83-4.41-.02-7.79 3.4-7.75 7.82.23 27.92 7.14 126.14 88.77 199.3C172.79 480.94 256 480 288 480s115.19.95 199.23-80.88c81.64-73.17 88.54-171.38 88.77-199.3.04-4.42-3.34-7.84-7.75-7.82zM287.98 302.6c12.82-18.85 27.6-35.78 44.09-50.52 19.09-18.61 39.58-33.3 60.26-45.18-16.44-70.5-51.72-133.05-96.73-172.22-4.11-3.58-11.02-3.58-15.14 0-44.99 39.14-80.27 101.63-96.74 172.07 20.37 11.7 40.5 26.14 59.22 44.39a282.768 282.768 0 0 1 45.04 51.46z" + } + } + }, + "space-shuttle": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "astronaut", + "machine", + "nasa", + "rocket", + "transportation" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f197", + "label": "Space Shuttle", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M592.604 208.244C559.735 192.836 515.777 184 472 184H186.327c-4.952-6.555-10.585-11.978-16.72-16H376C229.157 137.747 219.403 32 96.003 32H96v128H80V32c-26.51 0-48 28.654-48 64v64c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v16c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v64c0 35.346 21.49 64 48 64V352h16v128h.003c123.4 0 133.154-105.747 279.997-136H169.606c6.135-4.022 11.768-9.445 16.72-16H472c43.777 0 87.735-8.836 120.604-24.244C622.282 289.845 640 271.992 640 256s-17.718-33.845-47.396-47.756zM488 296a8 8 0 0 1-8-8v-64a8 8 0 0 1 8-8c31.909 0 31.942 80 0 80z" + } + } + }, + "speakap": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3f3", + "label": "Speakap", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M352 32H96C43.2 32 0 75.2 0 128v256c0 52.8 43.2 96 96 96h256c52.8 0 96-43.2 96-96V128c0-52.8-43.2-96-96-96zM221 382.9c-39.6 0-81.9-17.8-81.9-53.7V302H179v17.8c0 15.1 19.5 24.5 41.9 24.5 24.2 0 41.3-10.4 41.3-29.5 0-23.8-27.2-31.9-54.7-42.6-31.9-12.4-63.1-26.2-63.1-69.1 0-48 38.6-66.4 79.9-66.4 37.6 0 75.5 14.1 75.5 41.9v31.2h-39.9v-16.1c0-12.1-17.8-18.5-35.6-18.5-19.5 0-35.6 8.1-35.6 26.2 0 22.1 22.5 29.2 47 38.9 35.9 12.4 71.1 27.2 71.1 71.5.1 48.6-40.8 71.1-85.8 71.1z" + } + } + }, + "spinner": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "loading", + "progress" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f110", + "label": "Spinner", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z" + } + } + }, + "splotch": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f5bc", + "label": "Splotch", + "svg": { + "solid": { + "last_modified": 1529520111700, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M472.29 195.89l-67.06-22.95c-19.28-6.6-33.54-20.92-38.14-38.3L351.1 74.19c-11.58-43.77-76.57-57.13-109.98-22.62l-46.14 47.67c-13.26 13.71-33.54 20.93-54.2 19.31l-71.88-5.62c-52.05-4.07-86.93 44.88-59.03 82.83l38.54 52.42c11.08 15.07 12.82 33.86 4.64 50.24L24.62 355.4c-20.59 41.25 22.84 84.87 73.49 73.81l69.96-15.28c20.11-4.39 41.45 0 57.07 11.73l54.32 40.83c39.32 29.56 101.04 7.57 104.45-37.22l4.7-61.86c1.35-17.79 12.8-33.86 30.63-42.99l62-31.74c44.88-22.96 39.59-80.17-8.95-96.79z" + } + } + }, + "spotify": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1bc", + "label": "Spotify", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm100.7 364.9c-4.2 0-6.8-1.3-10.7-3.6-62.4-37.6-135-39.2-206.7-24.5-3.9 1-9 2.6-11.9 2.6-9.7 0-15.8-7.7-15.8-15.8 0-10.3 6.1-15.2 13.6-16.8 81.9-18.1 165.6-16.5 237 26.2 6.1 3.9 9.7 7.4 9.7 16.5s-7.1 15.4-15.2 15.4zm26.9-65.6c-5.2 0-8.7-2.3-12.3-4.2-62.5-37-155.7-51.9-238.6-29.4-4.8 1.3-7.4 2.6-11.9 2.6-10.7 0-19.4-8.7-19.4-19.4s5.2-17.8 15.5-20.7c27.8-7.8 56.2-13.6 97.8-13.6 64.9 0 127.6 16.1 177 45.5 8.1 4.8 11.3 11 11.3 19.7-.1 10.8-8.5 19.5-19.4 19.5zm31-76.2c-5.2 0-8.4-1.3-12.9-3.9-71.2-42.5-198.5-52.7-280.9-29.7-3.6 1-8.1 2.6-12.9 2.6-13.2 0-23.3-10.3-23.3-23.6 0-13.6 8.4-21.3 17.4-23.9 35.2-10.3 74.6-15.2 117.5-15.2 73 0 149.5 15.2 205.4 47.8 7.8 4.5 12.9 10.7 12.9 22.6 0 13.6-11 23.3-23.2 23.3z" + } + } + }, + "spray-can": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f5bd", + "label": "Spray Can", + "svg": { + "solid": { + "last_modified": 1529520111701, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M224 32c0-17.67-14.33-32-32-32h-64c-17.67 0-32 14.33-32 32v96h128V32zm256 96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-256 32H96c-53.02 0-96 42.98-96 96v224c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V256c0-53.02-42.98-96-96-96zm-64 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zM480 96c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm-96 32c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-96-96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 0c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 192c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z" + } + } + }, + "square": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "block", + "box" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0c8", + "label": "Square", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h340c3.3 0 6 2.7 6 6v340c0 3.3-2.7 6-6 6z" + } + } + }, + "square-full": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f45c", + "label": "Square Full", + "svg": { + "solid": { + "last_modified": 1518899527998, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M512 512H0V0h512v512z" + } + } + }, + "squarespace": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5be", + "label": "Squarespace", + "svg": { + "brands": { + "last_modified": 1529514897194, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M186.12 343.34c-9.65 9.65-9.65 25.29 0 34.94 9.65 9.65 25.29 9.65 34.94 0L378.24 221.1c19.29-19.29 50.57-19.29 69.86 0s19.29 50.57 0 69.86L293.95 445.1c19.27 19.29 50.53 19.31 69.82.04l.04-.04 119.25-119.24c38.59-38.59 38.59-101.14 0-139.72-38.59-38.59-101.15-38.59-139.72 0l-157.22 157.2zm244.53-104.8c-9.65-9.65-25.29-9.65-34.93 0l-157.2 157.18c-19.27 19.29-50.53 19.31-69.82.05l-.05-.05c-9.64-9.64-25.27-9.65-34.92-.01l-.01.01c-9.65 9.64-9.66 25.28-.02 34.93l.02.02c38.58 38.57 101.14 38.57 139.72 0l157.2-157.2c9.65-9.65 9.65-25.29.01-34.93zm-261.99 87.33l157.18-157.18c9.64-9.65 9.64-25.29 0-34.94-9.64-9.64-25.27-9.64-34.91 0L133.72 290.93c-19.28 19.29-50.56 19.3-69.85.01l-.01-.01c-19.29-19.28-19.31-50.54-.03-69.84l.03-.03L218.03 66.89c-19.28-19.29-50.55-19.3-69.85-.02l-.02.02L28.93 186.14c-38.58 38.59-38.58 101.14 0 139.72 38.6 38.59 101.13 38.59 139.73.01zm-87.33-52.4c9.64 9.64 25.27 9.64 34.91 0l157.21-157.19c19.28-19.29 50.55-19.3 69.84-.02l.02.02c9.65 9.65 25.29 9.65 34.93 0 9.65-9.65 9.65-25.29 0-34.93-38.59-38.59-101.13-38.59-139.72 0L81.33 238.54c-9.65 9.64-9.65 25.28-.01 34.93h.01z" + } + } + }, + "stack-exchange": { + "changes": [ + "4", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f18d", + "label": "Stack Exchange", + "svg": { + "brands": { + "last_modified": 1515426582001, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M17.7 332.3h412.7v22c0 37.7-29.3 68-65.3 68h-19L259.3 512v-89.7H83c-36 0-65.3-30.3-65.3-68v-22zm0-23.6h412.7v-85H17.7v85zm0-109.4h412.7v-85H17.7v85zM365 0H83C47 0 17.7 30.3 17.7 67.7V90h412.7V67.7C430.3 30.3 401 0 365 0z" + } + } + }, + "stack-overflow": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f16c", + "label": "Stack Overflow", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M293.7 300l-181.2-84.5 16.7-36.5 181.3 84.7-16.8 36.3zm48-76L188.2 95.7l-25.5 30.8 153.5 128.3 25.5-30.8zm39.6-31.7L262 32l-32 24 119.3 160.3 32-24zM290.7 311L95 269.7 86.8 309l195.7 41 8.2-39zm31.6 129H42.7V320h-40v160h359.5V320h-40v120zm-39.8-80h-200v39.7h200V360z" + } + } + }, + "stamp": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f5bf", + "label": "Stamp", + "svg": { + "solid": { + "last_modified": 1529520111701, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M32 512h448v-64H32v64zm384-256h-66.56c-16.26 0-29.44-13.18-29.44-29.44v-9.46c0-27.37 8.88-53.41 21.46-77.72 9.11-17.61 12.9-38.39 9.05-60.42-6.77-38.78-38.47-70.7-77.26-77.45C212.62-9.04 160 37.33 160 96c0 14.16 3.12 27.54 8.69 39.58C182.02 164.43 192 194.7 192 226.49v.07c0 16.26-13.18 29.44-29.44 29.44H96c-53.02 0-96 42.98-96 96v32c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-32c0-53.02-42.98-96-96-96z" + } + } + }, + "star": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "award", + "favorite", + "important", + "night", + "rating", + "score" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f005", + "label": "Star", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z" + } + } + }, + "star-half": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "award", + "rating", + "score", + "star-half-empty", + "star-half-full" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f089", + "label": "star-half", + "svg": { + "solid": { + "last_modified": 1505492030000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M288 0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6V0z" + }, + "regular": { + "last_modified": 1505492030000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M288 385.3l-124.3 65.4 23.7-138.4-100.6-98 139-20.2 62.2-126V0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6v-54.3z" + } + } + }, + "star-half-alt": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "award", + "rating", + "score", + "star-half-empty", + "star-half-full" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5c0", + "label": "Alternate Star Half", + "svg": { + "solid": { + "last_modified": 1529520111702, + "raw": "", + "viewBox": [ + "0", + "0", + "536", + "512" + ], + "width": 536, + "height": 512, + "path": "M508.55 171.51L362.18 150.2 296.77 17.81C290.89 5.98 279.42 0 267.95 0c-11.4 0-22.79 5.9-28.69 17.81l-65.43 132.38-146.38 21.29c-26.25 3.8-36.77 36.09-17.74 54.59l105.89 103-25.06 145.48C86.98 495.33 103.57 512 122.15 512c4.93 0 10-1.17 14.87-3.75l130.95-68.68 130.94 68.7c4.86 2.55 9.92 3.71 14.83 3.71 18.6 0 35.22-16.61 31.66-37.4l-25.03-145.49 105.91-102.98c19.04-18.5 8.52-50.8-17.73-54.6zm-121.74 123.2l-18.12 17.62 4.28 24.88 19.52 113.45-102.13-53.59-22.38-11.74.03-317.19 51.03 103.29 11.18 22.63 25.01 3.64 114.23 16.63-82.65 80.38z" + } + } + }, + "staylinked": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3f5", + "label": "StayLinked", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "440", + "512" + ], + "width": 440, + "height": 512, + "path": "M201.6 127.4c4.1-3.2 10.3-3 13.8.5l170 167.3-2.7-2.7 44.3 41.3c3.7 3.5 3.3 9-.7 12.2l-198 163.9c-9.9 7.6-17.3.8-17.3.8L2.3 314.6c-3.5-3.5-3-9 1.2-12.2l45.8-34.9c4.2-3.2 10.4-3 13.9.5l151.9 147.5c3.7 3.5 10 3.7 14.2.4l93.2-74c4.1-3.2 4.5-8.7.9-12.2l-84-81.3c-3.6-3.5-9.9-3.7-14-.5l-.1.1c-4.1 3.2-10.4 3-14-.5l-68.1-64.3c-3.5-3.5-3.1-9 1.1-12.2l57.3-43.6m14.8 257.3c3.7 3.5 10.1 3.7 14.3.4l50.2-38.8-.3-.3 7.7-6c4.2-3.2 4.6-8.7.9-12.2l-57.1-54.4c-3.6-3.5-10-3.7-14.2-.5l-.1.1c-4.2 3.2-10.5 3.1-14.2-.4L109 180.8c-3.6-3.5-3.1-8.9 1.1-12.2l92.2-71.5c4.1-3.2 10.3-3 13.9.5l160.4 159c3.7 3.5 10 3.7 14.1.5l45.8-35.8c4.1-3.2 4.4-8.7.7-12.2L226.7 2.5c-1.5-1.2-8-5.5-16.3 1.1L3.6 165.7c-4.2 3.2-4.8 8.7-1.2 12.2l42.3 41.7" + } + } + }, + "steam": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1b6", + "label": "Steam", + "svg": { + "brands": { + "last_modified": 1521653821389, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M496 256c0 137-111.2 248-248.4 248-113.8 0-209.6-76.3-239-180.4l95.2 39.3c6.4 32.1 34.9 56.4 68.9 56.4 39.2 0 71.9-32.4 70.2-73.5l84.5-60.2c52.1 1.3 95.8-40.9 95.8-93.5 0-51.6-42-93.5-93.7-93.5s-93.7 42-93.7 93.5v1.2L176.6 279c-15.5-.9-30.7 3.4-43.5 12.1L0 236.1C10.2 108.4 117.1 8 247.6 8 384.8 8 496 119 496 256zM155.7 384.3l-30.5-12.6a52.79 52.79 0 0 0 27.2 25.8c26.9 11.2 57.8-1.6 69-28.4 5.4-13 5.5-27.3.1-40.3-5.4-13-15.5-23.2-28.5-28.6-12.9-5.4-26.7-5.2-38.9-.6l31.5 13c19.8 8.2 29.2 30.9 20.9 50.7-8.3 19.9-31 29.2-50.8 21zm173.8-129.9c-34.4 0-62.4-28-62.4-62.3s28-62.3 62.4-62.3 62.4 28 62.4 62.3-27.9 62.3-62.4 62.3zm.1-15.6c25.9 0 46.9-21 46.9-46.8 0-25.9-21-46.8-46.9-46.8s-46.9 21-46.9 46.8c.1 25.8 21.1 46.8 46.9 46.8z" + } + } + }, + "steam-square": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1b7", + "label": "Steam Square", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M185.2 356.5c7.7-18.5-1-39.7-19.6-47.4l-29.5-12.2c11.4-4.3 24.3-4.5 36.4.5 12.2 5.1 21.6 14.6 26.7 26.7 5 12.2 5 25.6-.1 37.7-10.5 25.1-39.4 37-64.6 26.5-11.6-4.8-20.4-13.6-25.4-24.2l28.5 11.8c18.6 7.8 39.9-.9 47.6-19.4zM400 32H48C21.5 32 0 53.5 0 80v160.7l116.6 48.1c12-8.2 26.2-12.1 40.7-11.3l55.4-80.2v-1.1c0-48.2 39.3-87.5 87.6-87.5s87.6 39.3 87.6 87.5c0 49.2-40.9 88.7-89.6 87.5l-79 56.3c1.6 38.5-29.1 68.8-65.7 68.8-31.8 0-58.5-22.7-64.5-52.7L0 319.2V432c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-99.7 222.5c-32.2 0-58.4-26.1-58.4-58.3s26.2-58.3 58.4-58.3 58.4 26.2 58.4 58.3-26.2 58.3-58.4 58.3zm.1-14.6c24.2 0 43.9-19.6 43.9-43.8 0-24.2-19.6-43.8-43.9-43.8-24.2 0-43.9 19.6-43.9 43.8 0 24.2 19.7 43.8 43.9 43.8z" + } + } + }, + "steam-symbol": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3f6", + "label": "Steam Symbol", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M395.5 177.5c0 33.8-27.5 61-61 61-33.8 0-61-27.3-61-61s27.3-61 61-61c33.5 0 61 27.2 61 61zm52.5.2c0 63-51 113.8-113.7 113.8L225 371.3c-4 43-40.5 76.8-84.5 76.8-40.5 0-74.7-28.8-83-67L0 358V250.7L97.2 290c15.1-9.2 32.2-13.3 52-11.5l71-101.7c.5-62.3 51.5-112.8 114-112.8C397 64 448 115 448 177.7zM203 363c0-34.7-27.8-62.5-62.5-62.5-4.5 0-9 .5-13.5 1.5l26 10.5c25.5 10.2 38 39 27.7 64.5-10.2 25.5-39.2 38-64.7 27.5-10.2-4-20.5-8.3-30.7-12.2 10.5 19.7 31.2 33.2 55.2 33.2 34.7 0 62.5-27.8 62.5-62.5zm207.5-185.3c0-42-34.3-76.2-76.2-76.2-42.3 0-76.5 34.2-76.5 76.2 0 42.2 34.3 76.2 76.5 76.2 41.9.1 76.2-33.9 76.2-76.2z" + } + } + }, + "step-backward": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beginning", + "first", + "previous", + "rewind", + "start" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f048", + "label": "step-backward", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z" + } + } + }, + "step-forward": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "end", + "last", + "next" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f051", + "label": "step-forward", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M384 44v424c0 6.6-5.4 12-12 12h-48c-6.6 0-12-5.4-12-12V291.6l-195.5 181C95.9 489.7 64 475.4 64 448V64c0-27.4 31.9-41.7 52.5-24.6L312 219.3V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12z" + } + } + }, + "stethoscope": { + "changes": [ + "3", + "5.0.0", + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f0f1", + "label": "Stethoscope", + "svg": { + "solid": { + "last_modified": 1521653821459, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M447.1 112c-34.2.5-62.3 28.4-63 62.6-.5 24.3 12.5 45.6 32 56.8V344c0 57.3-50.2 104-112 104-60 0-109.2-44.1-111.9-99.2C265 333.8 320 269.2 320 192V36.6c0-11.4-8.1-21.3-19.3-23.5L237.8.5c-13-2.6-25.6 5.8-28.2 18.8L206.4 35c-2.6 13 5.8 25.6 18.8 28.2l30.7 6.1v121.4c0 52.9-42.2 96.7-95.1 97.2-53.4.5-96.9-42.7-96.9-96V69.4l30.7-6.1c13-2.6 21.4-15.2 18.8-28.2l-3.1-15.7C107.7 6.4 95.1-2 82.1.6L19.3 13C8.1 15.3 0 25.1 0 36.6V192c0 77.3 55.1 142 128.1 156.8C130.7 439.2 208.6 512 304 512c97 0 176-75.4 176-168V231.4c19.1-11.1 32-31.7 32-55.4 0-35.7-29.2-64.5-64.9-64zm.9 80c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z" + } + } + }, + "sticker-mule": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3f7", + "label": "Sticker Mule", + "svg": { + "brands": { + "last_modified": 1502893836000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M353.1 509.8c-5.9 2.9-32.1 3.2-36.5-.5-4.1-3-2.2-11.9-1.5-15 2.2-15-2.5-7.9-9.8-11.5-3.1-1.5-4.1-5.5-4.6-10-.5-1.5-1-2.5-1.5-3.5-1.7-10.7 6.8-33.6 8.2-43.4 4.9-23.7-.7-37.2 1.5-46.9 3.7-16.2 4.1-3.5 4.1-29.9-1.4-25.9 3.3-36.9.5-38.9-14.8 0-64.3 10.7-112.2 2-46.1-8.9-59.4-29-65.4-30.9-10.3-4.5-23.2.5-27.3 7-.1.1-35 70.6-39.6 87.8-6.2 20.5-.5 47.4 4.1 66.8 0 .1 4.5 14.6 10.3 19.5 2.1 1.5 5.1 2.5 7.2 4.5 2.8 2.7 9.4 15.2 9.8 16 2.6 4.5 3.6 8-1.5 10.5-3.6 2-9.3 2.5-14.4 2.5-2.6.5-1.5 3.5-3.1 5-2.9 2.8-20.7 6.1-29.9 2.5-2.6-1-5.7-3-6.2-5-1.5-4 2.1-9-1-12.5-4.5-2.9-13.1-2-17-12-2.2-5.4-2.6-7.6-2.6-49.4 0-9.7-5.9-38.7-8.2-46.9-1.5-5.5-1.5-11.5 0-16 .3-.9 4.1-4.6 4.1-13-1-1.5-4.6-.5-5.1-1.5-10.4-80.6-5.9-79-7.7-98.3-1.5-16-10.9-43.9-6.7-64.3.5-2.4 3.4-21 24.2-38.9 31-26.7 48.4-38.3 159-11.5 1.1.4 66.3 21.1 110.7-9 15.5-11.3 28.8-11.3 35.5-16 .1-.1 61.7-52.1 87-65.3 47.2-29.4 69.9-16.7 75.1-18 4.7-1 13.4-25.8 17-25.8 5.5 0 1.6 20.2 3.6 25.9.5 2 3.6 5 6.2 5 2.3 0 1.7-.8 10.3-5 8.4-5.4 14.9-17.6 20.6-17 11.7 1.6-19 41.6-19 46.9 0 2 .2.8 4.6 9.5 2.6 5.5 4.6 13.5 6.2 20 8.3 29.7 5.7 14.6 13.4 36.9 20.2 50.1 20.6 45.2 20.6 52.9 0 7.5-4.1 11-7.2 16.5-1.5 3-4.6 7.5-7.2 8-2.7.7 7-1.5-13.4 2.5-7.2 1-13.4-4.5-14.9-9.5-1.6-4.7 2.8-10.1-11.8-22.9-10.3-10-21.1-11.3-31.9-17-9.8-5.7-11.9 1-18 8-18 22.9-34 46.9-52 69.8-11.8 15-24.2 30.4-33.5 47.4-3.9 6.8-9.5 28.1-10.3 29.9-6.2 17.7-5.5 25.8-16.5 68.3-3.1 10-5.7 21.4-8.7 32.4-2.2 6.8-7.4 49.3-.5 59.4 2.1 3.5 8.7 4.5 11.3 8 .1.1 9.6 18.2 9.3 20 0 6.1-9.4 5.6-11.3 6.5-4.8 2.9-3.8 5.9-6.4 7.4" + } + } + }, + "sticky-note": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f249", + "label": "Sticky Note", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M312 320h136V56c0-13.3-10.7-24-24-24H24C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h264V344c0-13.2 10.8-24 24-24zm129 55l-98 98c-4.5 4.5-10.6 7-17 7h-6V352h128v6.1c0 6.3-2.5 12.4-7 16.9z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 348.106V80c0-26.51-21.49-48-48-48H48C21.49 32 0 53.49 0 80v351.988c0 26.51 21.49 48 48 48h268.118a48 48 0 0 0 33.941-14.059l83.882-83.882A48 48 0 0 0 448 348.106zm-128 80v-76.118h76.118L320 428.106zM400 80v223.988H296c-13.255 0-24 10.745-24 24v104H48V80h352z" + } + } + }, + "stop": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "block", + "box", + "square" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f04d", + "label": "stop", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z" + } + } + }, + "stop-circle": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f28d", + "label": "Stop Circle", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm296-80v160c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16z" + } + } + }, + "stopwatch": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "time" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2f2", + "label": "Stopwatch", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M432 304c0 114.9-93.1 208-208 208S16 418.9 16 304c0-104 76.3-190.2 176-205.5V64h-28c-6.6 0-12-5.4-12-12V12c0-6.6 5.4-12 12-12h120c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-28v34.5c37.5 5.8 71.7 21.6 99.7 44.6l27.5-27.5c4.7-4.7 12.3-4.7 17 0l28.3 28.3c4.7 4.7 4.7 12.3 0 17l-29.4 29.4-.6.6C419.7 223.3 432 262.2 432 304zm-176 36V188.5c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12V340c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z" + } + } + }, + "store": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f54e", + "label": "Store", + "svg": { + "solid": { + "last_modified": 1525967154579, + "raw": "", + "viewBox": [ + "0", + "0", + "616", + "512" + ], + "width": 616, + "height": 512, + "path": "M602 118.6L537.1 15C531.3 5.7 521 0 510 0H106C95 0 84.7 5.7 78.9 15L14 118.6c-33.5 53.5-3.8 127.9 58.8 136.4 4.5.6 9.1.9 13.7.9 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18.1 20.1 44.3 33.1 73.8 33.1 4.7 0 9.2-.3 13.7-.9 62.8-8.4 92.6-82.8 59-136.4zM529.5 288c-10 0-19.9-1.5-29.5-3.8V384H116v-99.8c-9.6 2.2-19.5 3.8-29.5 3.8-6 0-12.1-.4-18-1.2-5.6-.8-11.1-2.1-16.4-3.6V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V283.2c-5.4 1.6-10.8 2.9-16.4 3.6-6.1.8-12.1 1.2-18.2 1.2z" + } + } + }, + "store-alt": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f54f", + "label": "Alternate Store", + "svg": { + "solid": { + "last_modified": 1525967154579, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M320 384H128V224H64v256c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V224h-64v160zm314.6-241.8l-85.3-128c-6-8.9-16-14.2-26.7-14.2H117.4c-10.7 0-20.7 5.3-26.6 14.2l-85.3 128c-14.2 21.3 1 49.8 26.6 49.8H608c25.5 0 40.7-28.5 26.6-49.8zM512 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h-64v272z" + } + } + }, + "strava": { + "changes": [ + "5.0.0", + "5.0.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f428", + "label": "Strava", + "svg": { + "brands": { + "last_modified": 1521653821389, + "raw": "", + "viewBox": [ + "0", + "0", + "369.2", + "512" + ], + "width": 369, + "height": 512, + "path": "M301.6 292l-43.9 88.2-44.6-88.2h-67.6l112.2 220 111.5-220h-67.6zM151.4 0L0 292h89.2l62.2-116.1L213.1 292h88.5L151.4 0z" + } + } + }, + "stream": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f550", + "label": "Stream", + "svg": { + "solid": { + "last_modified": 1525967154579, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M16 128h416c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H16C7.16 32 0 39.16 0 48v64c0 8.84 7.16 16 16 16zm480 80H80c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm-64 176H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16z" + } + } + }, + "street-view": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "map" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f21d", + "label": "Street View", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M192 64c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zm112 80h-11.36c-22.711 10.443-49.59 10.894-73.28 0H208c-26.51 0-48 21.49-48 48v104c0 13.255 10.745 24 24 24h16v104c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V320h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48zm85.642 189.152a72.503 72.503 0 0 1-29.01 27.009C391.133 365.251 480 385.854 480 416c0 46.304-167.656 64-224 64-70.303 0-224-20.859-224-64 0-30.123 88.361-50.665 119.367-55.839a72.516 72.516 0 0 1-29.01-27.009C74.959 343.395 0 367.599 0 416c0 77.111 178.658 96 256 96 77.249 0 256-18.865 256-96 0-48.403-74.967-72.606-122.358-82.848z" + } + } + }, + "strikethrough": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f0cc", + "label": "Strikethrough", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M496 288H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h480c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16zm-214.666 16c27.258 12.937 46.524 28.683 46.524 56.243 0 33.108-28.977 53.676-75.621 53.676-32.325 0-76.874-12.08-76.874-44.271V368c0-8.837-7.164-16-16-16H113.75c-8.836 0-16 7.163-16 16v19.204c0 66.845 77.717 101.82 154.487 101.82 88.578 0 162.013-45.438 162.013-134.424 0-19.815-3.618-36.417-10.143-50.6H281.334zm-30.952-96c-32.422-13.505-56.836-28.946-56.836-59.683 0-33.92 30.901-47.406 64.962-47.406 42.647 0 64.962 16.593 64.962 32.985V136c0 8.837 7.164 16 16 16h45.613c8.836 0 16-7.163 16-16v-30.318c0-52.438-71.725-79.875-142.575-79.875-85.203 0-150.726 40.972-150.726 125.646 0 22.71 4.665 41.176 12.777 56.547h129.823z" + } + } + }, + "stripe": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f429", + "label": "Stripe", + "svg": { + "brands": { + "last_modified": 1521653821390, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M640 261.6c0-45.5-22-81.4-64.2-81.4s-67.9 35.9-67.9 81.1c0 53.5 30.3 78.2 73.5 78.2 21.2 0 37.1-4.8 49.2-11.5v-33.4c-12.1 6.1-26 9.8-43.6 9.8-17.3 0-32.5-6.1-34.5-26.9h86.9c.2-2.3.6-11.6.6-15.9m-87.9-16.8c0-20 12.3-28.4 23.4-28.4 10.9 0 22.5 8.4 22.5 28.4h-45.9zm-112.9-64.6c-17.4 0-28.6 8.2-34.8 13.9l-2.3-11H363v204.8l44.4-9.4.1-50.2c6.4 4.7 15.9 11.2 31.4 11.2 31.8 0 60.8-23.2 60.8-79.6.1-51.6-29.3-79.7-60.5-79.7m-10.6 122.5c-10.4 0-16.6-3.8-20.9-8.4l-.3-66c4.6-5.1 11-8.8 21.2-8.8 16.2 0 27.4 18.2 27.4 41.4.1 23.9-10.9 41.8-27.4 41.8M346.4 124v36.2l-44.6 9.5v-36.2l44.6-9.5m-44.5 59.2h44.6v153.2h-44.6V183.2zm-47.8 13.1c10.4-19.1 31.1-15.2 37.1-13.1V224c-5.7-1.8-23.4-4.5-33.9 9.3v103.1H213V183.2h38.4l2.7 13.1m-89-13.1h33.7V221h-33.7v63.2c0 26.2 28 18 33.7 15.7v33.8c-5.9 3.2-16.6 5.9-31.2 5.9-26.3 0-46.1-17-46.1-43.3l.2-142.4 43.3-9.2.1 38.5zM44.9 228.3c0 20 67.9 10.5 67.9 63.4 0 32-25.4 47.8-62.3 47.8-15.3 0-32-3-48.5-10.1v-40c14.9 8.1 33.9 14.2 48.6 14.2 9.9 0 17-2.7 17-10.9 0-21.2-67.5-13.2-67.5-62.4 0-31.4 24-50.2 60-50.2 14.7 0 29.4 2.3 44.1 8.1V230c-13.5-7.3-30.7-11.4-44.2-11.4-9.3.1-15.1 2.8-15.1 9.7" + } + } + }, + "stripe-s": { + "changes": [ + "5.0.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f42a", + "label": "Stripe S", + "svg": { + "brands": { + "last_modified": 1521653821389, + "raw": "", + "viewBox": [ + "0", + "0", + "362.3", + "512" + ], + "width": 362, + "height": 512, + "path": "M144.3 154.6c0-22.3 18.6-30.9 48.4-30.9 43.4 0 98.5 13.3 141.9 36.7V26.1C287.3 7.2 240.1 0 192.8 0 77.1 0 0 60.4 0 161.4c0 157.9 216.8 132.3 216.8 200.4 0 26.4-22.9 34.9-54.7 34.9-47.2 0-108.2-19.5-156.1-45.5v128.5c53 22.8 106.8 32.4 156 32.4 118.6 0 200.3-51 200.3-153.6 0-170.2-218-139.7-218-203.9" + } + } + }, + "stroopwafel": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "dessert", + "food", + "sweets", + "waffle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f551", + "label": "Stroopwafel", + "svg": { + "solid": { + "last_modified": 1525967154580, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M188.12 210.74L142.86 256l45.25 45.25L233.37 256l-45.25-45.26zm113.13-22.62L256 142.86l-45.25 45.25L256 233.37l45.25-45.25zm-90.5 135.76L256 369.14l45.26-45.26L256 278.63l-45.25 45.25zM256 0C114.62 0 0 114.62 0 256s114.62 256 256 256 256-114.62 256-256S397.38 0 256 0zm186.68 295.6l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-28.29-28.29-45.25 45.25 33.94 33.94 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-33.94-33.94-45.26 45.26 28.29 28.29c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0L256 414.39l-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l28.29-28.29-45.25-45.26-33.94 33.94 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 33.94-33.94-45.25-45.25-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0L69.32 295.6c-3.12-3.12-3.12-8.19 0-11.31L97.61 256l-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l28.29 28.29 45.25-45.26-33.94-33.94-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 33.94 33.94 45.26-45.25-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0L256 97.61l28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-28.29 28.29 45.26 45.25 33.94-33.94-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-33.94 33.94 45.25 45.26 28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31L414.39 256l28.29 28.28a8.015 8.015 0 0 1 0 11.32zM278.63 256l45.26 45.25L369.14 256l-45.25-45.26L278.63 256z" + } + } + }, + "studiovinari": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3f8", + "label": "Studio Vinari", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M480.3 187.7l4.2 28v28l-25.1 44.1-39.8 78.4-56.1 67.5-79.1 37.8-17.7 24.5-7.7 12-9.6 4s17.3-63.6 19.4-63.6c2.1 0 20.3.7 20.3.7l66.7-38.6-92.5 26.1-55.9 36.8-22.8 28-6.6 1.4 20.8-73.6 6.9-5.5 20.7 12.9 88.3-45.2 56.8-51.5 14.8-68.4-125.4 23.3 15.2-18.2-173.4-53.3 81.9-10.5-166-122.9L133.5 108 32.2 0l252.9 126.6-31.5-38L378 163 234.7 64l18.7 38.4-49.6-18.1L158.3 0l194.6 122L310 66.2l108 96.4 12-8.9-21-16.4 4.2-37.8L451 89.1l29.2 24.7 11.5 4.2-7 6.2 8.5 12-13.1 7.4-10.3 20.2 10.5 23.9z" + } + } + }, + "stumbleupon": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a4", + "label": "StumbleUpon Logo", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M502.9 266v69.7c0 62.1-50.3 112.4-112.4 112.4-61.8 0-112.4-49.8-112.4-111.3v-70.2l34.3 16 51.1-15.2V338c0 14.7 12 26.5 26.7 26.5S417 352.7 417 338v-72h85.9zm-224.7-58.2l34.3 16 51.1-15.2V173c0-60.5-51.1-109-112.1-109-60.8 0-112.1 48.2-112.1 108.2v162.4c0 14.9-12 26.7-26.7 26.7S86 349.5 86 334.6V266H0v69.7C0 397.7 50.3 448 112.4 448c61.6 0 112.4-49.5 112.4-110.8V176.9c0-14.7 12-26.7 26.7-26.7s26.7 12 26.7 26.7v30.9z" + } + } + }, + "stumbleupon-circle": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a3", + "label": "StumbleUpon Circle", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 177.5c-9.8 0-17.8 8-17.8 17.8v106.9c0 40.9-33.9 73.9-74.9 73.9-41.4 0-74.9-33.5-74.9-74.9v-46.5h57.3v45.8c0 10 8 17.8 17.8 17.8s17.8-7.9 17.8-17.8V200.1c0-40 34.2-72.1 74.7-72.1 40.7 0 74.7 32.3 74.7 72.6v23.7l-34.1 10.1-22.9-10.7v-20.6c.1-9.6-7.9-17.6-17.7-17.6zm167.6 123.6c0 41.4-33.5 74.9-74.9 74.9-41.2 0-74.9-33.2-74.9-74.2V263l22.9 10.7 34.1-10.1v47.1c0 9.8 8 17.6 17.8 17.6s17.8-7.9 17.8-17.6v-48h57.3c-.1 45.9-.1 46.4-.1 46.4z" + } + } + }, + "subscript": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f12c", + "label": "subscript", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M395.198 416c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 256c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 96H16C7.163 96 0 88.837 0 80V48c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035A15.999 15.999 0 0 1 204.226 32H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 256H272z" + } + } + }, + "subway": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "machine", + "railway", + "train", + "transportation", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f239", + "label": "Subway", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zM200 232V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm200 0V120c0-13.255-10.745-24-24-24H272c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm-48 56c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm-256 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z" + } + } + }, + "suitcase": { + "changes": [ + "3", + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "baggage", + "luggage", + "move", + "suitcase", + "travel", + "trip" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0f2", + "label": "Suitcase", + "svg": { + "solid": { + "last_modified": 1521653821459, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M128 480h256V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v400zm64-384h128v32H192V96zm320 80v256c0 26.5-21.5 48-48 48h-48V128h48c26.5 0 48 21.5 48 48zM96 480H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h48v352z" + } + } + }, + "suitcase-rolling": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f5c1", + "label": "Suitcase Rolling", + "svg": { + "solid": { + "last_modified": 1529520111702, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M336 160H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h16v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h128v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h16c26.51 0 48-21.49 48-48V208c0-26.51-21.49-48-48-48zm-16 216c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zM144 48h96v80h48V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v80h48V48z" + } + } + }, + "sun": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "brighten", + "contrast", + "day", + "lighter", + "weather" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f185", + "label": "Sun", + "svg": { + "solid": { + "last_modified": 1502810244000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M274.835 12.646l25.516 62.393c4.213 10.301 16.671 14.349 26.134 8.492l57.316-35.479c15.49-9.588 34.808 4.447 30.475 22.142l-16.03 65.475c-2.647 10.81 5.053 21.408 16.152 22.231l67.224 4.987c18.167 1.348 25.546 24.057 11.641 35.826L441.81 242.26c-8.495 7.19-8.495 20.289 0 27.479l51.454 43.548c13.906 11.769 6.527 34.478-11.641 35.826l-67.224 4.987c-11.099.823-18.799 11.421-16.152 22.231l16.03 65.475c4.332 17.695-14.986 31.73-30.475 22.142l-57.316-35.479c-9.463-5.858-21.922-1.81-26.134 8.492l-25.516 62.393c-6.896 16.862-30.774 16.862-37.67 0l-25.516-62.393c-4.213-10.301-16.671-14.349-26.134-8.492l-57.317 35.479c-15.49 9.588-34.808-4.447-30.475-22.142l16.03-65.475c2.647-10.81-5.053-21.408-16.152-22.231l-67.224-4.987c-18.167-1.348-25.546-24.057-11.641-35.826L70.19 269.74c8.495-7.19 8.495-20.289 0-27.479l-51.454-43.548c-13.906-11.769-6.527-34.478 11.641-35.826l67.224-4.987c11.099-.823 18.799-11.421 16.152-22.231l-16.03-65.475c-4.332-17.695 14.986-31.73 30.475-22.142l57.317 35.479c9.463 5.858 21.921 1.81 26.134-8.492l25.516-62.393c6.896-16.861 30.774-16.861 37.67 0zM392 256c0-74.991-61.01-136-136-136-74.991 0-136 61.009-136 136s61.009 136 136 136c74.99 0 136-61.009 136-136zm-32 0c0 57.346-46.654 104-104 104s-104-46.654-104-104 46.654-104 104-104 104 46.654 104 104z" + }, + "regular": { + "last_modified": 1502810244000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M220.116 487.936l-20.213-49.425a3.992 3.992 0 0 0-5.808-1.886l-45.404 28.104c-29.466 18.24-66.295-8.519-58.054-42.179l12.699-51.865a3.993 3.993 0 0 0-3.59-4.941l-53.251-3.951c-34.554-2.562-48.632-45.855-22.174-68.247L65.08 259.05a3.992 3.992 0 0 0 0-6.106l-40.76-34.497c-26.45-22.384-12.39-65.682 22.174-68.246l53.251-3.951a3.993 3.993 0 0 0 3.59-4.941L90.637 89.443c-8.239-33.656 28.581-60.42 58.054-42.179l45.403 28.104a3.993 3.993 0 0 0 5.808-1.887l20.213-49.425c13.116-32.071 58.638-32.081 71.758 0l20.212 49.424a3.994 3.994 0 0 0 5.809 1.887l45.403-28.104c29.464-18.236 66.297 8.513 58.054 42.179l-12.699 51.865a3.995 3.995 0 0 0 3.59 4.941l53.251 3.951c34.553 2.563 48.633 45.854 22.175 68.246l-40.76 34.497a3.993 3.993 0 0 0 0 6.107l40.76 34.496c26.511 22.441 12.322 65.689-22.175 68.247l-53.251 3.951a3.993 3.993 0 0 0-3.589 4.942l12.698 51.864c8.241 33.658-28.583 60.421-58.054 42.18l-45.403-28.104a3.994 3.994 0 0 0-5.809 1.887l-20.212 49.424c-13.159 32.178-58.675 31.993-71.757 0zm16.814-64.568l19.064 46.616 19.064-46.615c10.308-25.2 40.778-35.066 63.892-20.759l42.822 26.507-11.976-48.919c-6.475-26.444 12.38-52.339 39.487-54.349l50.226-3.726-38.444-32.536c-20.782-17.591-20.747-49.621.001-67.18l38.442-32.536-50.225-3.727c-27.151-2.015-45.95-27.948-39.488-54.349l11.978-48.919-42.823 26.507c-23.151 14.327-53.603 4.4-63.892-20.76l-19.064-46.615-19.064 46.617c-10.305 25.198-40.778 35.066-63.891 20.76l-42.823-26.508 11.977 48.918c6.474 26.446-12.381 52.338-39.488 54.35l-50.224 3.726 38.443 32.537c20.782 17.588 20.747 49.619 0 67.178L52.48 322.123l50.226 3.726c27.151 2.014 45.95 27.947 39.487 54.349l-11.977 48.919 42.823-26.507c23.188-14.355 53.622-4.352 63.891 20.758zM256 384c-70.58 0-128-57.421-128-128 0-70.58 57.42-128 128-128 70.579 0 128 57.42 128 128 0 70.579-57.421 128-128 128zm0-208c-44.112 0-80 35.888-80 80s35.888 80 80 80 80-35.888 80-80-35.888-80-80-80z" + } + } + }, + "superpowers": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2dd", + "label": "Superpowers", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 32c-83.3 11-166.8 22-250 33-92 12.5-163.3 86.7-169 180-3.3 55.5 18 109.5 57.8 148.2L0 480c83.3-11 166.5-22 249.8-33 91.8-12.5 163.3-86.8 168.7-179.8 3.5-55.5-18-109.5-57.7-148.2L448 32zm-79.7 232.3c-4.2 79.5-74 139.2-152.8 134.5-79.5-4.7-140.7-71-136.3-151 4.5-79.2 74.3-139.3 153-134.5 79.3 4.7 140.5 71 136.1 151z" + } + } + }, + "superscript": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "exponential" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f12b", + "label": "superscript", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M395.198 256c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 256H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035a16 16 0 0 1 13.598-7.567H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 416H272z" + } + } + }, + "supple": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3f9", + "label": "Supple", + "svg": { + "brands": { + "last_modified": 1502479343000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M640 262.5c0 64.1-109 116.1-243.5 116.1-24.8 0-48.6-1.8-71.1-5 7.7.4 15.5.6 23.4.6 134.5 0 243.5-56.9 243.5-127.1 0-29.4-19.1-56.4-51.2-78 60 21.1 98.9 55.1 98.9 93.4zM47.7 227.9c-.1-70.2 108.8-127.3 243.3-127.6 7.9 0 15.6.2 23.3.5-22.5-3.2-46.3-4.9-71-4.9C108.8 96.3-.1 148.5 0 212.6c.1 38.3 39.1 72.3 99.3 93.3-32.3-21.5-51.5-48.6-51.6-78zm60.2 39.9s10.5 13.2 29.3 13.2c17.9 0 28.4-11.5 28.4-25.1 0-28-40.2-25.1-40.2-39.7 0-5.4 5.3-9.1 12.5-9.1 5.7 0 11.3 2.6 11.3 6.6v3.9h14.2v-7.9c0-12.1-15.4-16.8-25.4-16.8-16.5 0-28.5 10.2-28.5 24.1 0 26.6 40.2 25.4 40.2 39.9 0 6.6-5.8 10.1-12.3 10.1-11.9 0-20.7-10.1-20.7-10.1l-8.8 10.9zm120.8-73.6v54.4c0 11.3-7.1 17.8-17.8 17.8-10.7 0-17.8-6.5-17.8-17.7v-54.5h-15.8v55c0 18.9 13.4 31.9 33.7 31.9 20.1 0 33.4-13 33.4-31.9v-55h-15.7zm34.4 85.4h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.8-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5.1 14.7-14 14.7h-12.6zm57 43h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.7-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5 14.7-14 14.7h-12.6zm57.1 34.8c0 5.8 2.4 8.2 8.2 8.2h37.6c5.8 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-18.6c-1.7 0-2.6-1-2.6-2.6v-61.2c0-5.7-2.4-8.2-8.2-8.2H401v13.4h5.2c1.7 0 2.6 1 2.6 2.6v61.2zm63.4 0c0 5.8 2.4 8.2 8.2 8.2H519c5.7 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-19.7c-1.7 0-2.6-1-2.6-2.6v-20.3h27.7v-13.4H488v-22.4h19.2c1.7 0 2.6 1 2.6 2.6v5.2H524v-13c0-5.7-2.5-8.2-8.2-8.2h-51.6v13.4h7.8v63.9zm58.9-76v5.9h1.6v-5.9h2.7v-1.2h-7v1.2h2.7zm5.7-1.2v7.1h1.5v-5.7l2.3 5.7h1.3l2.3-5.7v5.7h1.5v-7.1h-2.3l-2.1 5.1-2.1-5.1h-2.4z" + } + } + }, + "surprise": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "shocked" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f5c2", + "label": "Hushed Face", + "svg": { + "solid": { + "last_modified": 1529520111703, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm112 208c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm80-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" + }, + "regular": { + "last_modified": 1529520111638, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-176c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm-48-72c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" + } + } + }, + "swatchbook": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f5c3", + "label": "Swatchbook", + "svg": { + "solid": { + "last_modified": 1529520111703, + "raw": "", + "viewBox": [ + "0", + "0", + "511", + "512" + ], + "width": 511, + "height": 512, + "path": "M479.06 320H372.29L186.15 506.51c-2.06 2.07-4.49 3.58-6.67 5.49h299.58c17.64 0 31.94-14.33 31.94-32V352c0-17.67-14.3-32-31.94-32zm-44.5-152.9l-90.33-90.51c-12.47-12.5-32.69-12.5-45.17 0l-75.5 75.65V416c0 2.96-.67 5.73-.87 8.64l211.87-212.28c12.47-12.5 12.47-32.77 0-45.26zM191.62 32c0-17.67-14.3-32-31.94-32H31.94C14.3 0 0 14.33 0 32v384c0 53.02 42.9 96 95.81 96s95.81-42.98 95.81-96V32zM95.81 440c-13.23 0-23.95-10.75-23.95-24 0-13.26 10.73-24 23.95-24s23.95 10.74 23.95 24c.01 13.25-10.72 24-23.95 24zm31.94-184H63.88v-64h63.88v64zm0-128H63.88V64h63.88v64z" + } + } + }, + "swimmer": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "athlete", + "head", + "man", + "person", + "water" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5c4", + "label": "Swimmer", + "svg": { + "solid": { + "last_modified": 1529520111704, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M189.61 310.58c3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c16.02-14.77 34.5-22.58 53.46-22.58h16.3c18.96 0 37.45 7.81 53.46 22.58 3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c14.86-13.71 31.88-21.12 49.39-22.16l-112.84-80.6 18-12.86c3.64-2.58 8.28-3.52 12.62-2.61l100.35 21.53c25.91 5.53 51.44-10.97 57-36.88 5.55-25.92-10.95-51.44-36.88-57L437.68 98.47c-30.73-6.58-63.02.12-88.56 18.38l-80.02 57.17c-10.38 7.39-19.36 16.44-26.72 26.94L173.75 299c5.47 3.23 10.82 6.93 15.86 11.58zM624 352h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 343.58 442.04 352 416 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 343.58 250.04 352 224 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 343.58 58.04 352 32 352H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-512-96c44.18 0 80-35.82 80-80s-35.82-80-80-80-80 35.82-80 80 35.82 80 80 80z" + } + } + }, + "swimming-pool": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ladder", + "recreation", + "water" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5c5", + "label": "Swimming Pool", + "svg": { + "solid": { + "last_modified": 1529520111705, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624 416h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 407.58 442.04 416 416 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 407.58 250.04 416 224 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 407.58 58.04 416 32 416H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-400-32v-96h192v96c19.12 0 30.86-6.16 34.39-9.42 9.17-8.46 19.2-14.34 29.61-18.07V128c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v96H224v-96c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v228.5c10.41 3.73 20.44 9.62 29.61 18.07 3.53 3.27 15.27 9.43 34.39 9.43z" + } + } + }, + "sync": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "exchange", + "refresh", + "reload", + "rotate", + "swap" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f021", + "label": "Sync", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512.333", + "512" + ], + "width": 512, + "height": 512, + "path": "M440.935 12.574l3.966 82.766C399.416 41.904 331.674 8 256 8 134.813 8 33.933 94.924 12.296 209.824 10.908 217.193 16.604 224 24.103 224h49.084c5.57 0 10.377-3.842 11.676-9.259C103.407 137.408 172.931 80 256 80c60.893 0 114.512 30.856 146.104 77.801l-101.53-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12h-47.411c-6.853 0-12.315 5.729-11.987 12.574zM256 432c-60.895 0-114.517-30.858-146.109-77.805l101.868 4.871c6.845.327 12.573-5.134 12.573-11.986v-47.412c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12V500c0 6.627 5.373 12 12 12h47.385c6.863 0 12.328-5.745 11.985-12.599l-4.129-82.575C112.725 470.166 180.405 504 256 504c121.187 0 222.067-86.924 243.704-201.824 1.388-7.369-4.308-14.176-11.807-14.176h-49.084c-5.57 0-10.377 3.842-11.676 9.259C408.593 374.592 339.069 432 256 432z" + } + } + }, + "sync-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "refresh", + "reload", + "rotate" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2f1", + "label": "Alternate Sync", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z" + } + } + }, + "syringe": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "immunizations", + "needle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f48e", + "label": "Syringe", + "svg": { + "solid": { + "last_modified": 1521653821459, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M201.5 174.8l55.7 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-55.7-55.8-45.3 45.3 55.8 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L111 265.2l-26.4 26.4c-17.3 17.3-25.6 41.1-23 65.4l7.1 63.6L2.3 487c-3.1 3.1-3.1 8.2 0 11.3l11.3 11.3c3.1 3.1 8.2 3.1 11.3 0l66.3-66.3 63.6 7.1c23.9 2.6 47.9-5.4 65.4-23l181.9-181.9-135.7-135.7-64.9 65zm308.2-93.3L430.5 2.3c-3.1-3.1-8.2-3.1-11.3 0l-11.3 11.3c-3.1 3.1-3.1 8.2 0 11.3l28.3 28.3-45.3 45.3-56.6-56.6-17-17c-3.1-3.1-8.2-3.1-11.3 0l-33.9 33.9c-3.1 3.1-3.1 8.2 0 11.3l17 17L424.8 223l17 17c3.1 3.1 8.2 3.1 11.3 0l33.9-34c3.1-3.1 3.1-8.2 0-11.3l-73.5-73.5 45.3-45.3 28.3 28.3c3.1 3.1 8.2 3.1 11.3 0l11.3-11.3c3.1-3.2 3.1-8.2 0-11.4z" + } + } + }, + "table": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "data", + "excel", + "spreadsheet" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0ce", + "label": "table", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64v-96h160v96zm0-160H64v-96h160v96zm224 160H288v-96h160v96zm0-160H288v-96h160v96z" + } + } + }, + "table-tennis": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f45d", + "label": "Table Tennis", + "svg": { + "solid": { + "last_modified": 1518899527998, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M496.2 296.5C527.7 218.7 512 126.2 449 63.1 365.1-21 229-21 145.1 63.1l-56 56.1 211.5 211.5c46.1-62.1 131.5-77.4 195.6-34.2zm-217.9 79.7L57.9 155.9c-27.3 45.3-21.7 105 17.3 144.1l34.5 34.6L6.7 424c-8.6 7.5-9.1 20.7-1 28.8l53.4 53.5c8 8.1 21.2 7.6 28.7-1L177.1 402l35.7 35.7c19.7 19.7 44.6 30.5 70.3 33.3-7.1-17-11-35.6-11-55.1-.1-13.8 2.5-27 6.2-39.7zM416 320c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96z" + } + } + }, + "tablet": { + "changes": [ + "3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "device", + "ipad", + "kindle", + "screen" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f10a", + "label": "tablet", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" + } + } + }, + "tablet-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "device", + "ipad", + "kindle", + "screen" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3fa", + "label": "Alternate Tablet", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm176-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h328c6.6 0 12 5.4 12 12v312z" + } + } + }, + "tablets": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medicine" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f490", + "label": "Tablets", + "svg": { + "solid": { + "last_modified": 1521653821460, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M160 192C78.9 192 12.5 250.5.1 326.7c-.8 4.8 3.3 9.3 8.3 9.3h303.3c5 0 9.1-4.5 8.3-9.3C307.5 250.5 241.1 192 160 192zm151.6 176H8.4c-5 0-9.1 4.5-8.3 9.3C12.5 453.5 78.9 512 160 512s147.5-58.5 159.9-134.7c.8-4.8-3.3-9.3-8.3-9.3zM593.4 46.6c-56.5-56.5-144.2-61.4-206.9-16-4 2.9-4.3 8.9-.8 12.3L597 254.3c3.5 3.5 9.5 3.2 12.3-.8 45.5-62.7 40.6-150.4-15.9-206.9zM363 65.7c-3.5-3.5-9.5-3.2-12.3.8-45.4 62.7-40.5 150.4 15.9 206.9 56.5 56.5 144.2 61.4 206.9 15.9 4-2.9 4.3-8.9.8-12.3L363 65.7z" + } + } + }, + "tachometer-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dashboard", + "tachometer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3fd", + "label": "Alternate Tachometer", + "svg": { + "solid": { + "last_modified": 1503066239000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M75.694 480a48.02 48.02 0 0 1-42.448-25.571C12.023 414.3 0 368.556 0 320 0 160.942 128.942 32 288 32s288 128.942 288 288c0 48.556-12.023 94.3-33.246 134.429A48.018 48.018 0 0 1 500.306 480H75.694zM512 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zM288 128c17.673 0 32-14.327 32-32 0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32zM64 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm65.608-158.392c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm316.784 0c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm-87.078 31.534c-12.627-4.04-26.133 2.92-30.173 15.544l-45.923 143.511C250.108 322.645 224 350.264 224 384c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64 0-19.773-8.971-37.447-23.061-49.187l45.919-143.498c4.039-12.625-2.92-26.133-15.544-30.173z" + } + } + }, + "tag": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "label" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f02b", + "label": "tag", + "svg": { + "solid": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M0 252.118V48C0 21.49 21.49 0 48 0h204.118a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882L293.823 497.941c-18.745 18.745-49.137 18.745-67.882 0L14.059 286.059A48 48 0 0 1 0 252.118zM112 64c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z" + } + } + }, + "tags": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "labels" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f02c", + "label": "tags", + "svg": { + "solid": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M497.941 225.941L286.059 14.059A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v204.118a48 48 0 0 0 14.059 33.941l211.882 211.882c18.744 18.745 49.136 18.746 67.882 0l204.118-204.118c18.745-18.745 18.745-49.137 0-67.882zM112 160c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm513.941 133.823L421.823 497.941c-18.745 18.745-49.137 18.745-67.882 0l-.36-.36L527.64 323.522c16.999-16.999 26.36-39.6 26.36-63.64s-9.362-46.641-26.36-63.64L331.397 0h48.721a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882z" + } + } + }, + "tape": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f4db", + "label": "Tape", + "svg": { + "solid": { + "last_modified": 1521653821460, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M224 192c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm400 224H380.6c41.5-40.7 67.4-97.3 67.4-160 0-123.7-100.3-224-224-224S0 132.3 0 256s100.3 224 224 224h400c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400-64c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96z" + } + } + }, + "tasks": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "downloading", + "downloads", + "loading", + "progress", + "settings" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0ae", + "label": "Tasks", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M208 132h288c8.8 0 16-7.2 16-16V76c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zM64 368c-26.5 0-48.6 21.5-48.6 48s22.1 48 48.6 48 48-21.5 48-48-21.5-48-48-48zm92.5-299l-72.2 72.2-15.6 15.6c-4.7 4.7-12.9 4.7-17.6 0L3.5 109.4c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.3c4.7-4.7 12.3-4.7 17 0l17 16.5c4.6 4.7 4.6 12.3-.1 17zm0 159.6l-72.2 72.2-15.7 15.7c-4.7 4.7-12.9 4.7-17.6 0L3.5 269c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.7c4.7-4.7 12.3-4.7 17 0l17 17c4.6 4.6 4.6 12.2-.1 16.9z" + } + } + }, + "taxi": { + "changes": [ + "4.1", + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cab", + "cabbie", + "car", + "car service", + "lyft", + "machine", + "transportation", + "uber", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1ba", + "label": "Taxi", + "svg": { + "solid": { + "last_modified": 1529520111705, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M462 241.64l-22-84.84c-9.6-35.2-41.6-60.8-76.8-60.8H352V64c0-17.67-14.33-32-32-32H192c-17.67 0-32 14.33-32 32v32h-11.2c-35.2 0-67.2 25.6-76.8 60.8l-22 84.84C21.41 248.04 0 273.47 0 304v48c0 23.63 12.95 44.04 32 55.12V448c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-40.88c19.05-11.09 32-31.5 32-55.12v-48c0-30.53-21.41-55.96-50-62.36zM96 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm20.55-112l17.2-66.36c2.23-8.16 9.59-13.64 15.06-13.64h214.4c5.47 0 12.83 5.48 14.85 12.86L395.45 240h-278.9zM416 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + } + }, + "teamspeak": { + "changes": [ + "5.0.11", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f9", + "label": "TeamSpeak", + "svg": { + "brands": { + "last_modified": 1529520111565, + "raw": "", + "viewBox": [ + "0", + "0", + "511.8", + "512" + ], + "width": 511, + "height": 512, + "path": "M.82 237.82c2.36-15.52 10.69-27.04 24.88-34.03 3.5-1.85 5.65-3.5 6.37-7.81 6.17-33.41 19.53-63.94 39.37-91.59 2.36-3.19 4.01-5.35 1.03-9.35-3.7-5.35-1.03-10.18 2.98-14.49 28.06-31.87 61.88-55.1 101.98-67.44 95.81-29.4 180.1-9.35 252.37 60.45 6.68 6.37 15.52 12.85 6.99 24.36-1.34 1.85 1.03 3.5 2.16 5.04 20.66 28.06 34.23 59.42 40.4 93.65.82 3.7 2.98 5.04 5.86 6.37 17.37 8.84 25.7 23.34 26.01 42.25 0 17.17 1.85 34.54-1.03 51.71-4.01 24.67-29.19 41.74-53.25 36.7-7.2-1.64-9.35-7.2-9.35-14.19 0-28.06.82-56.44 0-84.6-1.85-75.76-36.18-132.81-102.28-169.41C234.28 4.98 92.11 72.42 67.54 196.91c-6.06 30.42-1.74 48.27-3.7 125.82-.31 7.2-4.32 11.2-12.03 11.51C20.97 335.58 0 316.05 0 285.21v-20.87m221.74 106.81c11.82-4.32 20.05-11.82 22.51-24.36 2.36-12.34-12.03-30.02-32.38-48.73-20.87-19.22-48.22-39.06-63.43-46.57-21.69-12.03-41.74-1.85-46.26 22.72-5.04 26.21 0 51.4 14.49 73.91 10.18 15.52 25.39 22.72 43.38 24.05 11.62.62 52.54 2.16 61.69-1.02m129.83 5.55c36.5 2.81 59.33-28.55 58.39-60.45-2.14-45.17-66.17-16.48-87.79-8.02-73.16 28.14-45.05 54.92-22.2 60.75m149.26-1.33c-2.98-2.36-7.2-1.03-8.33 2.36-8.02 25.39-44.72 112.46-172.08 121.51-149.67 10.49 80.29 43.59 145.36-6.37 22.72-17.37 47.6-35.05 46.57-85.43-.32-10.07-4.84-26.72-11.52-32.07" + } + } + }, + "telegram": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2c6", + "label": "Telegram", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm121.8 169.9l-40.7 191.8c-3 13.6-11.1 16.9-22.4 10.5l-62-45.7-29.9 28.8c-3.3 3.3-6.1 6.1-12.5 6.1l4.4-63.1 114.9-103.8c5-4.4-1.1-6.9-7.7-2.5l-142 89.4-61.2-19.1c-13.3-4.2-13.6-13.3 2.8-19.7l239.1-92.2c11.1-4 20.8 2.7 17.2 19.5z" + } + } + }, + "telegram-plane": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3fe", + "label": "Telegram Plane", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M446.7 98.6l-67.6 318.8c-5.1 22.5-18.4 28.1-37.3 17.5l-103-75.9-49.7 47.8c-5.5 5.5-10.1 10.1-20.7 10.1l7.4-104.9 190.9-172.5c8.3-7.4-1.8-11.5-12.9-4.1L117.8 284 16.2 252.2c-22.1-6.9-22.5-22.1 4.6-32.7L418.2 66.4c18.4-6.9 34.5 4.1 28.5 32.2z" + } + } + }, + "tencent-weibo": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1d5", + "label": "Tencent Weibo", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M72.3 495.8c1.4 19.9-27.6 22.2-29.7 2.9C31 368.8 73.7 259.2 144 185.5c-15.6-34 9.2-77.1 50.6-77.1 30.3 0 55.1 24.6 55.1 55.1 0 44-49.5 70.8-86.9 45.1-65.7 71.3-101.4 169.8-90.5 287.2zM192 .1C66.1.1-12.3 134.3 43.7 242.4 52.4 259.8 79 246.9 70 229 23.7 136.4 91 29.8 192 29.8c75.4 0 136.9 61.4 136.9 136.9 0 90.8-86.9 153.9-167.7 133.1-19.1-4.1-25.6 24.4-6.6 29.1 110.7 23.2 204-60 204-162.3C358.6 74.7 284 .1 192 .1z" + } + } + }, + "terminal": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "code", + "command", + "console", + "prompt" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f120", + "label": "Terminal", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M257.981 272.971L63.638 467.314c-9.373 9.373-24.569 9.373-33.941 0L7.029 444.647c-9.357-9.357-9.375-24.522-.04-33.901L161.011 256 6.99 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L257.981 239.03c9.373 9.372 9.373 24.568 0 33.941zM640 456v-32c0-13.255-10.745-24-24-24H312c-13.255 0-24 10.745-24 24v32c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z" + } + } + }, + "text-height": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f034", + "label": "text-height", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M16 32h288c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96h-54.761v320H232c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H88c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm475.308 4.685l79.995 80.001C581.309 126.693 574.297 144 559.99 144H512v224h48c15.639 0 20.635 17.991 11.313 27.314l-79.995 80.001c-6.247 6.247-16.381 6.245-22.626 0l-79.995-80.001C378.691 385.307 385.703 368 400.01 368H448V144h-48c-15.639 0-20.635-17.991-11.313-27.314l79.995-80.001c6.247-6.248 16.381-6.245 22.626 0z" + } + } + }, + "text-width": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f035", + "label": "text-width", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M16 32h416c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96H261.743v128H296c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H152c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm427.315 340.682l-80.001-79.995C353.991 283.365 336 288.362 336 304v48H112v-47.99c0-14.307-17.307-21.319-27.314-11.313L4.685 372.692c-6.245 6.245-6.247 16.379 0 22.626l80.001 79.995C94.009 484.635 112 479.638 112 464v-48h224v47.99c0 14.307 17.307 21.319 27.314 11.313l80.001-79.995c6.245-6.245 6.248-16.379 0-22.626z" + } + } + }, + "th": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blocks", + "boxes", + "grid", + "squares" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f00a", + "label": "th", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z" + } + } + }, + "th-large": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blocks", + "boxes", + "grid", + "squares" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f009", + "label": "th-large", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M296 32h192c13.255 0 24 10.745 24 24v160c0 13.255-10.745 24-24 24H296c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24zm-80 0H24C10.745 32 0 42.745 0 56v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zM0 296v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm296 184h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H296c-13.255 0-24 10.745-24 24v160c0 13.255 10.745 24 24 24z" + } + } + }, + "th-list": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "ol", + "todo", + "ul" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f00b", + "label": "th-list", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M149.333 216v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zM125.333 32H24C10.745 32 0 42.745 0 56v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zm80 448H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm-24-424v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24zm24 264H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24z" + } + } + }, + "themeco": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5c6", + "label": "Themeco", + "svg": { + "brands": { + "last_modified": 1529514897199, + "raw": "", + "viewBox": [ + "0", + "0", + "441.03", + "512" + ], + "width": 441, + "height": 512, + "path": "M199.74 12.29c9.74-5.64 25.59-5.73 35.39-.21l188.13 105.95c9.81 5.52 17.76 19.14 17.76 30.38v213.87c0 11.26-7.93 24.89-17.71 30.46L235.09 499.88c-9.78 5.57-25.58 5.48-35.29-.21L17.58 392.95C7.87 387.26 0 373.52 0 362.27V148.41c0-11.26 7.9-24.96 17.63-30.59L199.74 12.29zM123.54 209c-15.69 0-31.39.14-47.08.14v99.87h18.83v-29.39h28.25c48.94 0 48.79-70.62 0-70.62zm137.96 98.73l-30.25-34.1c36.4-7.39 34.26-64.21-10.7-64.49-15.84 0-31.67-.14-47.51-.14v100.01h18.83v-33.38H210l29.1 33.38h22.4v-1.28zm-40.94-81.04c22.98 0 22.9 31.96 0 31.96h-28.68v-31.96h28.68zm-94.07-1.57c20.85 0 20.78 38.24 0 38.24H94.68v-38.23l31.81-.01zm189.65-17.97c-67.4 0-69.86 104.15 0 104.15 68.39-.01 68.33-104.15 0-104.15zm0 17.12c43.43 0 44.1 69.76 0 69.76-44.12 0-43.74-69.76 0-69.76z" + } + } + }, + "themeisle": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2b2", + "label": "ThemeIsle", + "svg": { + "brands": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M208 88.286c0-10 6.286-21.714 17.715-21.714 11.142 0 17.714 11.714 17.714 21.714 0 10.285-6.572 21.714-17.714 21.714C214.286 110 208 98.571 208 88.286zm304 160c0 36.001-11.429 102.286-36.286 129.714-22.858 24.858-87.428 61.143-120.857 70.572l-1.143.286v32.571c0 16.286-12.572 30.571-29.143 30.571-10 0-19.429-5.714-24.572-14.286-5.427 8.572-14.856 14.286-24.856 14.286-10 0-19.429-5.714-24.858-14.286-5.142 8.572-14.571 14.286-24.57 14.286-10.286 0-19.429-5.714-24.858-14.286-5.143 8.572-14.571 14.286-24.571 14.286-18.857 0-29.429-15.714-29.429-32.857-16.286 12.285-35.715 19.428-56.571 19.428-22 0-43.429-8.285-60.286-22.857 10.285-.286 20.571-2.286 30.285-5.714-20.857-5.714-39.428-18.857-52-36.286 21.37 4.645 46.209 1.673 67.143-11.143-22-22-56.571-58.857-68.572-87.428C1.143 321.714 0 303.714 0 289.429c0-49.714 20.286-160 86.286-160 10.571 0 18.857 4.858 23.143 14.857a158.792 158.792 0 0 1 12-15.428c2-2.572 5.714-5.429 7.143-8.286 7.999-12.571 11.714-21.142 21.714-34C182.571 45.428 232 17.143 285.143 17.143c6 0 12 .285 17.714 1.143C313.714 6.571 328.857 0 344.572 0c14.571 0 29.714 6 40 16.286.857.858 1.428 2.286 1.428 3.428 0 3.714-10.285 13.429-12.857 16.286 4.286 1.429 15.714 6.858 15.714 12 0 2.857-2.857 5.143-4.571 7.143 31.429 27.714 49.429 67.143 56.286 108 4.286-5.143 10.285-8.572 17.143-8.572 10.571 0 20.857 7.144 28.571 14.001C507.143 187.143 512 221.714 512 248.286zM188 89.428c0 18.286 12.571 37.143 32.286 37.143 19.714 0 32.285-18.857 32.285-37.143 0-18-12.571-36.857-32.285-36.857-19.715 0-32.286 18.858-32.286 36.857zM237.714 194c0-19.714 3.714-39.143 8.571-58.286-52.039 79.534-13.531 184.571 68.858 184.571 21.428 0 42.571-7.714 60-20 2-7.429 3.714-14.857 3.714-22.572 0-14.286-6.286-21.428-20.572-21.428-4.571 0-9.143.857-13.429 1.714-63.343 12.668-107.142 3.669-107.142-63.999zm-41.142 254.858c0-11.143-8.858-20.857-20.286-20.857-11.429 0-20 9.715-20 20.857v32.571c0 11.143 8.571 21.142 20 21.142 11.428 0 20.286-9.715 20.286-21.142v-32.571zm49.143 0c0-11.143-8.572-20.857-20-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20-10 20-21.142v-32.571zm49.713 0c0-11.143-8.857-20.857-20.285-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20.285-9.715 20.285-21.142v-32.571zm49.715 0c0-11.143-8.857-20.857-20.286-20.857-11.428 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.858 21.142 20.286 21.142 11.429 0 20.286-10 20.286-21.142v-32.571zM421.714 286c-30.857 59.142-90.285 102.572-158.571 102.572-96.571 0-160.571-84.572-160.571-176.572 0-16.857 2-33.429 6-49.714-20 33.715-29.714 72.572-29.714 111.429 0 60.286 24.857 121.715 71.429 160.857 5.143-9.714 14.857-16.286 26-16.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.571-14.286 24.858-14.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.857-14.286 24.858-14.286 10 0 19.428 5.714 24.857 14.286 5.143-8.571 14.571-14.286 24.572-14.286 10.857 0 20.857 6.572 25.714 16 43.427-36.286 68.569-92 71.426-148.286zm10.572-99.714c0-53.714-34.571-105.714-92.572-105.714-30.285 0-58.571 15.143-78.857 36.857C240.862 183.812 233.41 254 302.286 254c28.805 0 97.357-28.538 84.286 36.857 28.857-26 45.714-65.714 45.714-104.571z" + } + } + }, + "thermometer": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "fever", + "temperature" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f491", + "label": "Thermometer", + "svg": { + "solid": { + "last_modified": 1521653821460, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M476.8 20.4c-37.5-30.7-95.5-26.3-131.9 10.2l-45.7 46 50.5 50.5c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.4-50.5-45.1 45.4 50.3 50.4c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L209 167.4l-45.1 45.4L214 263c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.1-50.2L96 281.1V382L7 471c-9.4 9.4-9.4 24.6 0 33.9 9.4 9.4 24.6 9.4 33.9 0l89-89h99.9L484 162.6c34.9-34.9 42.2-101.5-7.2-142.2z" + } + } + }, + "thermometer-empty": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "status" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2cb", + "label": "Thermometer Empty", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z" + } + } + }, + "thermometer-full": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "status" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2c7", + "label": "Thermometer Full", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M224 96c0-53.019-42.981-96-96-96S32 42.981 32 96v203.347C12.225 321.756.166 351.136.002 383.333c-.359 70.303 56.787 128.176 127.089 128.664.299.002.61.003.909.003 70.698 0 128-57.304 128-128 0-32.459-12.088-62.09-32-84.653V96zm-96 368l-.576-.002c-43.86-.304-79.647-36.544-79.423-80.42.173-33.98 19.266-51.652 31.999-66.08V96c0-26.467 21.533-48 48-48s48 21.533 48 48v221.498c12.63 14.312 32 32.164 32 66.502 0 44.112-35.888 80-80 80zm64-80c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V96c0-17.673 14.327-32 32-32s32 14.327 32 32v232.583c19.124 11.068 32 31.732 32 55.417z" + } + } + }, + "thermometer-half": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "status" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2c9", + "label": "Thermometer 1/2 Full", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V224c0-17.673 14.327-32 32-32s32 14.327 32 32v104.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z" + } + } + }, + "thermometer-quarter": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "status" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2ca", + "label": "Thermometer 1/4 Full", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V288c0-17.673 14.327-32 32-32s32 14.327 32 32v40.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z" + } + } + }, + "thermometer-three-quarters": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "status" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2c8", + "label": "Thermometer 3/4 Full", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M192 384c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-23.685 12.876-44.349 32-55.417V160c0-17.673 14.327-32 32-32s32 14.327 32 32v168.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z" + } + } + }, + "thumbs-down": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "disagree", + "disapprove", + "dislike", + "hand", + "thumbs-o-down" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f165", + "label": "thumbs-down", + "svg": { + "solid": { + "last_modified": 1521653821460, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M0 56v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56zm40 200c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24zm272 256c-20.183 0-29.485-39.293-33.931-57.795-5.206-21.666-10.589-44.07-25.393-58.902-32.469-32.524-49.503-73.967-89.117-113.111a11.98 11.98 0 0 1-3.558-8.521V59.901c0-6.541 5.243-11.878 11.783-11.998 15.831-.29 36.694-9.079 52.651-16.178C256.189 17.598 295.709.017 343.995 0h2.844c42.777 0 93.363.413 113.774 29.737 8.392 12.057 10.446 27.034 6.148 44.632 16.312 17.053 25.063 48.863 16.382 74.757 17.544 23.432 19.143 56.132 9.308 79.469l.11.11c11.893 11.949 19.523 31.259 19.439 49.197-.156 30.352-26.157 58.098-59.553 58.098H350.723C358.03 364.34 384 388.132 384 430.548 384 504 336 512 312 512z" + }, + "regular": { + "last_modified": 1503066239000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M466.27 225.31c4.674-22.647.864-44.538-8.99-62.99 2.958-23.868-4.021-48.565-17.34-66.99C438.986 39.423 404.117 0 327 0c-7 0-15 .01-22.22.01C201.195.01 168.997 40 128 40h-10.845c-5.64-4.975-13.042-8-21.155-8H32C14.327 32 0 46.327 0 64v240c0 17.673 14.327 32 32 32h64c11.842 0 22.175-6.438 27.708-16h7.052c19.146 16.953 46.013 60.653 68.76 83.4 13.667 13.667 10.153 108.6 71.76 108.6 57.58 0 95.27-31.936 95.27-104.73 0-18.41-3.93-33.73-8.85-46.54h36.48c48.602 0 85.82-41.565 85.82-85.58 0-19.15-4.96-34.99-13.73-49.84zM64 296c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm330.18 16.73H290.19c0 37.82 28.36 55.37 28.36 94.54 0 23.75 0 56.73-47.27 56.73-18.91-18.91-9.46-66.18-37.82-94.54C206.9 342.89 167.28 272 138.92 272H128V85.83c53.611 0 100.001-37.82 171.64-37.82h37.82c35.512 0 60.82 17.12 53.12 65.9 15.2 8.16 26.5 36.44 13.94 57.57 21.581 20.384 18.699 51.065 5.21 65.62 9.45 0 22.36 18.91 22.27 37.81-.09 18.91-16.71 37.82-37.82 37.82z" + } + } + }, + "thumbs-up": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agree", + "approve", + "favorite", + "hand", + "like", + "ok", + "okay", + "success", + "thumbs-o-up", + "yes", + "you got it dude" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f164", + "label": "thumbs-up", + "svg": { + "solid": { + "last_modified": 1521653821461, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M104 224H24c-13.255 0-24 10.745-24 24v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V248c0-13.255-10.745-24-24-24zM64 472c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zM384 81.452c0 42.416-25.97 66.208-33.277 94.548h101.723c33.397 0 59.397 27.746 59.553 58.098.084 17.938-7.546 37.249-19.439 49.197l-.11.11c9.836 23.337 8.237 56.037-9.308 79.469 8.681 25.895-.069 57.704-16.382 74.757 4.298 17.598 2.244 32.575-6.148 44.632C440.202 511.587 389.616 512 346.839 512l-2.845-.001c-48.287-.017-87.806-17.598-119.56-31.725-15.957-7.099-36.821-15.887-52.651-16.178-6.54-.12-11.783-5.457-11.783-11.998v-213.77c0-3.2 1.282-6.271 3.558-8.521 39.614-39.144 56.648-80.587 89.117-113.111 14.804-14.832 20.188-37.236 25.393-58.902C282.515 39.293 291.817 0 312 0c24 0 72 8 72 81.452z" + }, + "regular": { + "last_modified": 1503066239000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M466.27 286.69C475.04 271.84 480 256 480 236.85c0-44.015-37.218-85.58-85.82-85.58H357.7c4.92-12.81 8.85-28.13 8.85-46.54C366.55 31.936 328.86 0 271.28 0c-61.607 0-58.093 94.933-71.76 108.6-22.747 22.747-49.615 66.447-68.76 83.4H32c-17.673 0-32 14.327-32 32v240c0 17.673 14.327 32 32 32h64c14.893 0 27.408-10.174 30.978-23.95 44.509 1.001 75.06 39.94 177.802 39.94 7.22 0 15.22.01 22.22.01 77.117 0 111.986-39.423 112.94-95.33 13.319-18.425 20.299-43.122 17.34-66.99 9.854-18.452 13.664-40.343 8.99-62.99zm-61.75 53.83c12.56 21.13 1.26 49.41-13.94 57.57 7.7 48.78-17.608 65.9-53.12 65.9h-37.82c-71.639 0-118.029-37.82-171.64-37.82V240h10.92c28.36 0 67.98-70.89 94.54-97.46 28.36-28.36 18.91-75.63 37.82-94.54 47.27 0 47.27 32.98 47.27 56.73 0 39.17-28.36 56.72-28.36 94.54h103.99c21.11 0 37.73 18.91 37.82 37.82.09 18.9-12.82 37.81-22.27 37.81 13.489 14.555 16.371 45.236-5.21 65.62zM88 432c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z" + } + } + }, + "thumbtack": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "coordinates", + "location", + "marker", + "pin", + "thumb-tack" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f08d", + "label": "Thumbtack", + "svg": { + "solid": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z" + } + } + }, + "ticket-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ticket" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3ff", + "label": "Alternate Ticket", + "svg": { + "solid": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M128 160h320v192H128V160zm400 96c0 26.51 21.49 48 48 48v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c26.51 0 48-21.49 48-48s-21.49-48-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v96c-26.51 0-48 21.49-48 48zm-48-104c0-13.255-10.745-24-24-24H120c-13.255 0-24 10.745-24 24v208c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V152z" + } + } + }, + "times": { + "changes": [ + "1", + "5.0.0", + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "close", + "cross", + "error", + "exit", + "incorrect", + "notice", + "notification", + "notify", + "problem", + "wrong", + "x" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f00d", + "label": "Times", + "svg": { + "solid": { + "last_modified": 1525967154580, + "raw": "", + "viewBox": [ + "0", + "0", + "352", + "512" + ], + "width": 352, + "height": 512, + "path": "M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" + } + } + }, + "times-circle": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "close", + "cross", + "exit", + "incorrect", + "notice", + "notification", + "notify", + "problem", + "wrong", + "x" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f057", + "label": "Times Circle", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm101.8-262.2L295.6 256l62.2 62.2c4.7 4.7 4.7 12.3 0 17l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L256 295.6l-62.2 62.2c-4.7 4.7-12.3 4.7-17 0l-22.6-22.6c-4.7-4.7-4.7-12.3 0-17l62.2-62.2-62.2-62.2c-4.7-4.7-4.7-12.3 0-17l22.6-22.6c4.7-4.7 12.3-4.7 17 0l62.2 62.2 62.2-62.2c4.7-4.7 12.3-4.7 17 0l22.6 22.6c4.7 4.7 4.7 12.3 0 17z" + } + } + }, + "tint": { + "changes": [ + "1", + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drop", + "droplet", + "raindrop", + "waterdrop" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f043", + "label": "tint", + "svg": { + "solid": { + "last_modified": 1529520111706, + "raw": "", + "viewBox": [ + "0", + "0", + "352", + "512" + ], + "width": 352, + "height": 512, + "path": "M205.22 22.09c-7.94-28.78-49.44-30.12-58.44 0C100.01 179.85 0 222.72 0 333.91 0 432.35 78.72 512 176 512s176-79.65 176-178.09c0-111.75-99.79-153.34-146.78-311.82zM176 448c-61.75 0-112-50.25-112-112 0-8.84 7.16-16 16-16s16 7.16 16 16c0 44.11 35.89 80 80 80 8.84 0 16 7.16 16 16s-7.16 16-16 16z" + } + } + }, + "tint-slash": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f5c7", + "label": "Tint Slash", + "svg": { + "solid": { + "last_modified": 1529520111706, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M633.82 458.1L494.97 350.78c.52-5.57 1.03-11.16 1.03-16.87 0-111.76-99.79-153.34-146.78-311.82-7.94-28.78-49.44-30.12-58.44 0-15.52 52.34-36.87 91.96-58.49 125.68L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM144 333.91C144 432.35 222.72 512 320 512c44.71 0 85.37-16.96 116.4-44.7L162.72 255.78c-11.41 23.5-18.72 48.35-18.72 78.13z" + } + } + }, + "tired": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "grumpy" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f5c8", + "label": "Tired Face", + "svg": { + "solid": { + "last_modified": 1529520111707, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 288c51.9 0 115.3 43.8 123.2 106.7 1.7 13.6-8 24.6-17.7 20.4-25.9-11.1-64.4-17.4-105.5-17.4s-79.6 6.3-105.5 17.4c-9.8 4.2-19.4-7-17.7-20.4C132.7 331.8 196.1 288 248 288z" + }, + "regular": { + "last_modified": 1529520111641, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm129.1-303.8c-3.8-4.4-10.3-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.8 1.6 15.3-2.5 3.8-4.5 3.9-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zM220 208c0-4.2-2.2-8.1-5.8-10.3l-80-48c-5-3-11.5-1.9-15.3 2.5-3.8 4.5-3.9 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.5 4.1 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3zm28 64c-45.4 0-100.9 38.3-107.8 93.3-1.5 11.8 6.9 21.6 15.5 17.9C178.4 373.5 212 368 248 368s69.6 5.5 92.3 15.2c8.5 3.7 17-6 15.5-17.9-6.9-55-62.4-93.3-107.8-93.3z" + } + } + }, + "toggle-off": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "switch" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f204", + "label": "Toggle Off", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M384 64H192C85.961 64 0 149.961 0 256s85.961 192 192 192h192c106.039 0 192-85.961 192-192S490.039 64 384 64zM64 256c0-70.741 57.249-128 128-128 70.741 0 128 57.249 128 128 0 70.741-57.249 128-128 128-70.741 0-128-57.249-128-128zm320 128h-48.905c65.217-72.858 65.236-183.12 0-256H384c70.741 0 128 57.249 128 128 0 70.74-57.249 128-128 128z" + } + } + }, + "toggle-on": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "switch" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f205", + "label": "Toggle On", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M576 256c0 106.039-85.961 192-192 192H192C85.961 448 0 362.039 0 256S85.961 64 192 64h192c106.039 0 192 85.961 192 192zM384 128c-70.741 0-128 57.249-128 128 0 70.741 57.249 128 128 128 70.741 0 128-57.249 128-128 0-70.741-57.249-128-128-128" + } + } + }, + "toolbox": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "container", + "fix", + "repair", + "settings", + "tools" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f552", + "label": "Toolbox", + "svg": { + "solid": { + "last_modified": 1525967154580, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M502.63 214.63l-45.25-45.25c-6-6-14.14-9.37-22.63-9.37H384V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v80H77.25c-8.49 0-16.62 3.37-22.63 9.37L9.37 214.63c-6 6-9.37 14.14-9.37 22.63V320h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-82.75c0-8.48-3.37-16.62-9.37-22.62zM320 160H192V96h128v64zm64 208c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H192v16c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H0v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96H384v16z" + } + } + }, + "tooth": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bicuspid", + "dental", + "molar", + "mouth", + "teeth" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5c9", + "label": "Tooth", + "svg": { + "solid": { + "last_modified": 1529520111707, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M443.98 96.25c-11.01-45.22-47.11-82.06-92.01-93.72-32.19-8.36-63 5.1-89.14 24.33-3.25 2.39-6.96 3.73-10.5 5.48l28.32 18.21c7.42 4.77 9.58 14.67 4.8 22.11-4.46 6.95-14.27 9.86-22.11 4.8L162.83 12.84c-20.7-10.85-43.38-16.4-66.81-10.31-44.9 11.67-81 48.5-92.01 93.72-10.13 41.62-.42 80.81 21.5 110.43 23.36 31.57 32.68 68.66 36.29 107.35 4.4 47.16 10.33 94.16 20.94 140.32l7.8 33.95c3.19 13.87 15.49 23.7 29.67 23.7 13.97 0 26.15-9.55 29.54-23.16l34.47-138.42c4.56-18.32 20.96-31.16 39.76-31.16s35.2 12.85 39.76 31.16l34.47 138.42c3.39 13.61 15.57 23.16 29.54 23.16 14.18 0 26.48-9.83 29.67-23.7l7.8-33.95c10.61-46.15 16.53-93.16 20.94-140.32 3.61-38.7 12.93-75.78 36.29-107.35 21.95-29.61 31.66-68.8 21.53-110.43z" + } + } + }, + "trade-federation": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f513", + "label": "Trade Federation", + "svg": { + "brands": { + "last_modified": 1525376442522, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M202.45 108.42v81.61H38.94l48.22 61.91h114.73v196.75h64.61V252.96h83.27v-62.69h-83.18V171.1h145.62v-62.68H202.45zm4.86 6h197.77v50.68H259.44v30.93h83.18v50.93h-83.26v195.73h-52.73V245.94H89.86l-39.95-49.91h157.4v-81.61zM247.99 8.8C111.03 8.8 0 119.83 0 256.8s111.03 248 247.99 248S496 393.76 496 256.8 384.96 8.8 247.99 8.8zm.02 13.24c129.66 0 234.76 105.12 234.76 234.78s-105.1 234.76-234.76 234.76S13.23 386.47 13.23 256.81 118.35 22.04 248.01 22.04zm0 7.89c-125.3 0-226.89 101.57-226.89 226.87s101.59 226.89 226.89 226.89S474.88 382.1 474.88 256.8 373.31 29.93 248.01 29.93zm-.02 13.3c117.95 0 213.56 95.62 213.56 213.56s-95.62 213.56-213.56 213.56S34.43 374.75 34.43 256.8 130.04 43.23 247.99 43.23zm-73.32 104.8l15.66 18.05-22.16-9.45-12.33 20.47 2.15-23.99-23.28-5.4 23.48-5.37-2.06-23.81 12.37 20.67 22.01-9.32-15.84 18.15zm-47.14-46.54l8.01 12.4 12.69-5.86-9.32 11.45 9.5 10.25-13.77-5.32-6.82 12.2.81-14.74-13.71-2.71 14.27-3.78-1.66-13.89zm250.77 75.59l11.99 19.56 20.88-9.11-14.9 17.45 15.11 17.04-21.2-8.78-11.54 19.64 1.8-22.87-22.24-4.9 22.31-5.36-2.21-22.67zm-107.05 98.45l13.86-3.22-1.28-14.17 7.35 12.18 13.08-5.59-9.31 10.75 9.36 10.71-13.1-5.54-7.29 12.21 1.22-14.17-13.89-3.16zm-125.43 6.5l23.73-3.87-1.73-24.53 11.01 21.38 22.79-9.22-16.93 17.08 15.81 18.83-21.47-10.82-13.02 20.86 3.66-23.77-23.85-5.94zm63.44-165.66v81.61H54.16l36.72 46.01h117.7v196.75h48.82V245.01h83.27v-47.03H257.4v-34.83h145.73v-46.78H209.26zm10.86 11.2h171.8v24.36H246.88v56.23h82.93v23.94h-82.93v197.42h-26.76V232.1H96.31l-20.09-23.94h143.9v-80.59z" + } + } + }, + "trademark": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f25c", + "label": "Trademark", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M97.119 163.133H12c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h248.559c6.627 0 12 5.373 12 12v43.133c0 6.627-5.373 12-12 12H175.44V404c0 6.627-5.373 12-12 12h-54.322c-6.627 0-12-5.373-12-12V163.133zM329.825 96h65.425a12 12 0 0 1 11.346 8.093l43.759 127.068c7.161 20.588 16.111 52.812 16.111 52.812h.896s8.95-32.224 16.111-52.812l43.758-127.068A12 12 0 0 1 538.577 96h65.41a12 12 0 0 1 11.961 11.03l24.012 296c.567 6.987-4.951 12.97-11.961 12.97h-54.101a12 12 0 0 1-11.972-11.182l-9.082-132.93c-1.79-24.168 0-53.706 0-53.706h-.896s-10.741 33.566-17.902 53.706l-30.7 84.731a12 12 0 0 1-11.282 7.912h-50.302a12 12 0 0 1-11.282-7.912l-30.7-84.731c-7.161-20.14-17.903-53.706-17.903-53.706h-.895s1.79 29.538 0 53.706l-9.082 132.93c-.428 6.295-5.66 11.182-11.97 11.182H305.4c-7.017 0-12.536-5.994-11.959-12.987l24.425-296A11.999 11.999 0 0 1 329.825 96z" + } + } + }, + "train": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bullet", + "locomotive", + "railway" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f238", + "label": "Train", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zm-48 136V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24zm-176 64c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56z" + } + } + }, + "transgender": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "intersex" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f224", + "label": "Transgender", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M372 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C198.5 104.1 172.2 96 144 96 64.5 96 0 160.5 0 240c0 68.5 47.9 125.9 112 140.4V408H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM144 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" + } + } + }, + "transgender-alt": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f225", + "label": "Alternate Transgender", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "480", + "512" + ], + "width": 480, + "height": 512, + "path": "M468 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C294.5 104.1 268.2 96 240 96c-28.2 0-54.5 8.1-76.7 22.1l-16.5-16.5 19.8-19.8c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0l-19.8 19.8-19-19 16.9-16.9C107.1 12.9 101.7 0 91 0H12C5.4 0 0 5.4 0 12v79c0 10.7 12.9 16 20.5 8.5l16.9-16.9 19 19-19.8 19.8c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l19.8-19.8 16.5 16.5C104.1 185.5 96 211.8 96 240c0 68.5 47.9 125.9 112 140.4V408h-36c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM240 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" + } + } + }, + "trash": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "garbage", + "hide", + "remove" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1f8", + "label": "Trash", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm415.2 56.7L394.8 467c-1.6 25.3-22.6 45-47.9 45H101.1c-25.3 0-46.3-19.7-47.9-45L32.8 140.7c-.4-6.9 5.1-12.7 12-12.7h358.5c6.8 0 12.3 5.8 11.9 12.7z" + } + } + }, + "trash-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "garbage", + "hide", + "remove", + "trash", + "trash-o" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2ed", + "label": "Alternate Trash", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm416 56v324c0 26.5-21.5 48-48 48H80c-26.5 0-48-21.5-48-48V140c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12zm-272 68c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208z" + }, + "regular": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M192 188v216c0 6.627-5.373 12-12 12h-24c-6.627 0-12-5.373-12-12V188c0-6.627 5.373-12 12-12h24c6.627 0 12 5.373 12 12zm100-12h-24c-6.627 0-12 5.373-12 12v216c0 6.627 5.373 12 12 12h24c6.627 0 12-5.373 12-12V188c0-6.627-5.373-12-12-12zm132-96c13.255 0 24 10.745 24 24v12c0 6.627-5.373 12-12 12h-20v336c0 26.51-21.49 48-48 48H80c-26.51 0-48-21.49-48-48V128H12c-6.627 0-12-5.373-12-12v-12c0-13.255 10.745-24 24-24h74.411l34.018-56.696A48 48 0 0 1 173.589 0h100.823a48 48 0 0 1 41.16 23.304L349.589 80H424zm-269.611 0h139.223L276.16 50.913A6 6 0 0 0 271.015 48h-94.028a6 6 0 0 0-5.145 2.913L154.389 80zM368 128H80v330a6 6 0 0 0 6 6h276a6 6 0 0 0 6-6V128z" + } + } + }, + "tree": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f1bb", + "label": "Tree", + "svg": { + "solid": { + "last_modified": 1503937790000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M377.33 375.429L293.906 288H328c21.017 0 31.872-25.207 17.448-40.479L262.79 160H296c20.878 0 31.851-24.969 17.587-40.331l-104-112.003c-9.485-10.214-25.676-10.229-35.174 0l-104 112.003C56.206 134.969 67.037 160 88 160h33.21l-82.659 87.521C24.121 262.801 34.993 288 56 288h34.094L6.665 375.429C-7.869 390.655 2.925 416 24.025 416H144c0 32.781-11.188 49.26-33.995 67.506C98.225 492.93 104.914 512 120 512h144c15.086 0 21.776-19.069 9.995-28.494-19.768-15.814-33.992-31.665-33.995-67.496V416h119.97c21.05 0 31.929-25.309 17.36-40.571z" + } + } + }, + "trello": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f181", + "label": "Trello", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M392 32H56C25.1 32 0 57.1 0 88v336c0 30.9 25.1 56 56 56h336c30.9 0 56-25.1 56-56V88c0-30.9-25.1-56-56-56zM194.9 371.4c0 14.8-12 26.9-26.9 26.9H85.1c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9H168c14.8 0 26.9 12 26.9 26.9v254.3zm194.9-112c0 14.8-12 26.9-26.9 26.9H280c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9h82.9c14.8 0 26.9 12 26.9 26.9v142.3z" + } + } + }, + "tripadvisor": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f262", + "label": "TripAdvisor", + "svg": { + "brands": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M166.4 280.521c0 13.236-10.73 23.966-23.966 23.966s-23.966-10.73-23.966-23.966 10.73-23.966 23.966-23.966 23.966 10.729 23.966 23.966zm264.962-23.956c-13.23 0-23.956 10.725-23.956 23.956 0 13.23 10.725 23.956 23.956 23.956 13.23 0 23.956-10.725 23.956-23.956-.001-13.231-10.726-23.956-23.956-23.956zm89.388 139.49c-62.667 49.104-153.276 38.109-202.379-24.559l-30.979 46.325-30.683-45.939c-48.277 60.39-135.622 71.891-197.885 26.055-64.058-47.158-77.759-137.316-30.601-201.374A186.762 186.762 0 0 0 0 139.416l90.286-.05a358.48 358.48 0 0 1 197.065-54.03 350.382 350.382 0 0 1 192.181 53.349l96.218.074a185.713 185.713 0 0 0-28.352 57.649c46.793 62.747 34.964 151.37-26.648 199.647zM259.366 281.761c-.007-63.557-51.535-115.075-115.092-115.068C80.717 166.7 29.2 218.228 29.206 281.785c.007 63.557 51.535 115.075 115.092 115.068 63.513-.075 114.984-51.539 115.068-115.052v-.04zm28.591-10.455c5.433-73.44 65.51-130.884 139.12-133.022a339.146 339.146 0 0 0-139.727-27.812 356.31 356.31 0 0 0-140.164 27.253c74.344 1.582 135.299 59.424 140.771 133.581zm251.706-28.767c-21.992-59.634-88.162-90.148-147.795-68.157-59.634 21.992-90.148 88.162-68.157 147.795v.032c22.038 59.607 88.198 90.091 147.827 68.113 59.615-22.004 90.113-88.162 68.125-147.783zm-326.039 37.975v.115c-.057 39.328-31.986 71.163-71.314 71.106-39.328-.057-71.163-31.986-71.106-71.314.057-39.328 31.986-71.163 71.314-71.106 39.259.116 71.042 31.94 71.106 71.199zm-24.512 0v-.084c-.051-25.784-20.994-46.645-46.778-46.594-25.784.051-46.645 20.994-46.594 46.777.051 25.784 20.994 46.645 46.777 46.594 25.726-.113 46.537-20.968 46.595-46.693zm313.423 0v.048c-.02 39.328-31.918 71.194-71.247 71.173s-71.194-31.918-71.173-71.247c.02-39.328 31.918-71.194 71.247-71.173 39.29.066 71.121 31.909 71.173 71.199zm-24.504-.008c-.009-25.784-20.918-46.679-46.702-46.67-25.784.009-46.679 20.918-46.67 46.702.009 25.784 20.918 46.678 46.702 46.67 25.765-.046 46.636-20.928 46.67-46.693v-.009z" + } + } + }, + "trophy": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "award", + "cup", + "game", + "winner" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f091", + "label": "trophy", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M552 64H448V24c0-13.3-10.7-24-24-24H152c-13.3 0-24 10.7-24 24v40H24C10.7 64 0 74.7 0 88v56c0 35.7 22.5 72.4 61.9 100.7 31.5 22.7 69.8 37.1 110 41.7C203.3 338.5 240 360 240 360v72h-48c-35.3 0-64 20.7-64 56v12c0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12v-12c0-35.3-28.7-56-64-56h-48v-72s36.7-21.5 68.1-73.6c40.3-4.6 78.6-19 110-41.7 39.3-28.3 61.9-65 61.9-100.7V88c0-13.3-10.7-24-24-24zM99.3 192.8C74.9 175.2 64 155.6 64 144v-16h64.2c1 32.6 5.8 61.2 12.8 86.2-15.1-5.2-29.2-12.4-41.7-21.4zM512 144c0 16.1-17.7 36.1-35.3 48.8-12.5 9-26.7 16.2-41.8 21.4 7-25 11.8-53.6 12.8-86.2H512v16z" + } + } + }, + "truck": { + "changes": [ + "2", + "5.0.0", + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "delivery", + "shipping" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0d1", + "label": "truck", + "svg": { + "solid": { + "last_modified": 1521653821462, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z" + } + } + }, + "truck-loading": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f4de", + "label": "Truck Loading", + "svg": { + "solid": { + "last_modified": 1521653821461, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M50.2 375.6c2.3 8.5 11.1 13.6 19.6 11.3l216.4-58c8.5-2.3 13.6-11.1 11.3-19.6l-49.7-185.5c-2.3-8.5-11.1-13.6-19.6-11.3L151 133.3l24.8 92.7-61.8 16.5-24.8-92.7-77.3 20.7C3.4 172.8-1.7 181.6.6 190.1l49.6 185.5zM384 0c-17.7 0-32 14.3-32 32v323.6L5.9 450c-4.3 1.2-6.8 5.6-5.6 9.8l12.6 46.3c1.2 4.3 5.6 6.8 9.8 5.6l393.7-107.4C418.8 464.1 467.6 512 528 512c61.9 0 112-50.1 112-112V0H384zm144 448c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z" + } + } + }, + "truck-moving": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f4df", + "label": "Truck Moving", + "svg": { + "solid": { + "last_modified": 1521653821461, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M621.3 237.3l-58.5-58.5c-12-12-28.3-18.7-45.3-18.7H480V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v336c0 44.2 35.8 80 80 80 26.3 0 49.4-12.9 64-32.4 14.6 19.6 37.7 32.4 64 32.4 44.2 0 80-35.8 80-80 0-5.5-.6-10.8-1.6-16h163.2c-1.1 5.2-1.6 10.5-1.6 16 0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H624c8.8 0 16-7.2 16-16v-85.5c0-17-6.7-33.2-18.7-45.2zM80 432c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm128 0c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm272-224h37.5c4.3 0 8.3 1.7 11.3 4.7l43.3 43.3H480v-48zm48 224c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32z" + } + } + }, + "tshirt": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "cloth", + "clothing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f553", + "label": "T-Shirt", + "svg": { + "solid": { + "last_modified": 1525967154580, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M631.2 96.5L436.5 0C416.4 27.8 371.9 47.2 320 47.2S223.6 27.8 203.5 0L8.8 96.5c-7.9 4-11.1 13.6-7.2 21.5l57.2 114.5c4 7.9 13.6 11.1 21.5 7.2l56.6-27.7c10.6-5.2 23 2.5 23 14.4V480c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V226.3c0-11.8 12.4-19.6 23-14.4l56.6 27.7c7.9 4 17.5.8 21.5-7.2L638.3 118c4-7.9.8-17.6-7.1-21.5z" + } + } + }, + "tty": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f1e4", + "label": "TTY", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M5.37 103.822c138.532-138.532 362.936-138.326 501.262 0 6.078 6.078 7.074 15.496 2.583 22.681l-43.214 69.138a18.332 18.332 0 0 1-22.356 7.305l-86.422-34.569a18.335 18.335 0 0 1-11.434-18.846L351.741 90c-62.145-22.454-130.636-21.986-191.483 0l5.953 59.532a18.331 18.331 0 0 1-11.434 18.846l-86.423 34.568a18.334 18.334 0 0 1-22.356-7.305L2.787 126.502a18.333 18.333 0 0 1 2.583-22.68zM96 308v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H92c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zM96 500v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H140c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z" + } + } + }, + "tumblr": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f173", + "label": "Tumblr", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z" + } + } + }, + "tumblr-square": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f174", + "label": "Tumblr Square", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-82.3 364.2c-8.5 9.1-31.2 19.8-60.9 19.8-75.5 0-91.9-55.5-91.9-87.9v-90h-29.7c-3.4 0-6.2-2.8-6.2-6.2v-42.5c0-4.5 2.8-8.5 7.1-10 38.8-13.7 50.9-47.5 52.7-73.2.5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2h-52.1V321c0 21.4 14.8 33.5 42.5 22.4 3-1.2 5.6-2 8-1.4 2.2.5 3.6 2.1 4.6 4.9l13.8 40.2c1 3.2 2 6.7-.3 9.1z" + } + } + }, + "tv": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "display", + "monitor", + "television" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f26c", + "label": "Television", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M592 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h245.1v32h-160c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32-14.3 32-32s-14.3-32-32-32h-160v-32H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h512v288z" + } + } + }, + "twitch": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1e8", + "label": "Twitch", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M40.1 32L10 108.9v314.3h107V480h60.2l56.8-56.8h87l117-117V32H40.1zm357.8 254.1L331 353H224l-56.8 56.8V353H76.9V72.1h321v214zM331 149v116.9h-40.1V149H331zm-107 0v116.9h-40.1V149H224z" + } + } + }, + "twitter": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "social network", + "tweet" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f099", + "label": "Twitter", + "svg": { + "brands": { + "last_modified": 1511282001104, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z" + } + } + }, + "twitter-square": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "social network", + "tweet" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f081", + "label": "Twitter Square", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z" + } + } + }, + "typo3": { + "changes": [ + "5.0.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f42b", + "label": "Typo3", + "svg": { + "brands": { + "last_modified": 1512765674649, + "raw": "", + "viewBox": [ + "0", + "0", + "433.3", + "512" + ], + "width": 433, + "height": 512, + "path": "M330.8 341c-7 2.3-11.6 2.3-18.5 2.3-57.2 0-140.6-198.5-140.6-264.9 0-24.7 5.4-32.4 13.9-39.4-69.5 8.5-149.3 34-176.3 66.4-5.4 7.7-9.3 20.8-9.3 37.1C0 246 106.8 480 184.1 480c36.3 0 97.3-59.5 146.7-139M294.5 32c71.8 0 138.8 11.6 138.8 52.5 0 82.6-52.5 182.3-78.8 182.3-47.9 0-101.7-132.1-101.7-198.5 0-30.9 11.6-36.3 41.7-36.3" + } + } + }, + "uber": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f402", + "label": "Uber", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M414.1 32H33.9C15.2 32 0 47.2 0 65.9V446c0 18.8 15.2 34 33.9 34H414c18.7 0 33.9-15.2 33.9-33.9V65.9C448 47.2 432.8 32 414.1 32zM237.6 391.1C163 398.6 96.4 344.2 88.9 269.6h94.4V290c0 3.7 3 6.8 6.8 6.8H258c3.7 0 6.8-3 6.8-6.8v-67.9c0-3.7-3-6.8-6.8-6.8h-67.9c-3.7 0-6.8 3-6.8 6.8v20.4H88.9c7-69.4 65.4-122.2 135.1-122.2 69.7 0 128.1 52.8 135.1 122.2 7.5 74.5-46.9 141.1-121.5 148.6z" + } + } + }, + "uikit": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f403", + "label": "UIkit", + "svg": { + "brands": { + "last_modified": 1501873838000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M443.9 128v256L218 512 0 384V169.7l87.6 45.1v117l133.5 75.5 135.8-75.5v-151l-101.1-57.6 87.6-53.1L443.9 128zM308.6 49.1L223.8 0l-88.6 54.8 86 47.3 87.4-53z" + } + } + }, + "umbrella": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "protection", + "rain" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0e9", + "label": "Umbrella", + "svg": { + "solid": { + "last_modified": 1502810244000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M557.011 267.631c-51.432-45.217-107.572-43.698-158.567 30.731-5.298 7.861-14.906 7.165-19.736 0-2.483-3.624-32.218-60.808-90.708-60.808-45.766 0-70.542 31.378-90.709 60.808-4.829 7.165-14.436 7.861-19.734 0-50.904-74.285-106.613-76.406-158.567-30.731-10.21 8.264-20.912-1.109-18.696-9.481C32.146 134.573 158.516 64.612 288.001 64.612c128.793 0 256.546 69.961 287.706 193.538 2.206 8.322-8.426 17.793-18.696 9.481zM256 261.001V416c0 17.645-14.355 32-32 32s-32-14.355-32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 52.935 43.065 96 96 96s96-43.065 96-96V261.288c-21.836-10.806-45.425-9.737-64-.287zm64-211.007V32c0-17.673-14.327-32-32-32s-32 14.327-32 32v17.987a372.105 372.105 0 0 1 64 .007z" + } + } + }, + "umbrella-beach": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "protection", + "recreation", + "sun" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5ca", + "label": "Umbrella Beach", + "svg": { + "solid": { + "last_modified": 1529520111708, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M115.38 136.9l102.11 37.18c35.19-81.54 86.21-144.29 139-173.7-95.88-4.89-188.78 36.96-248.53 111.8-6.69 8.4-2.66 21.05 7.42 24.72zm132.25 48.16l238.48 86.83c35.76-121.38 18.7-231.66-42.63-253.98-7.4-2.7-15.13-4-23.09-4-58.02.01-128.27 69.17-172.76 171.15zM521.48 60.5c6.22 16.3 10.83 34.6 13.2 55.19 5.74 49.89-1.42 108.23-18.95 166.98l102.62 37.36c10.09 3.67 21.31-3.43 21.57-14.17 2.32-95.69-41.91-187.44-118.44-245.36zM560 447.98H321.06L386 269.5l-60.14-21.9-72.9 200.37H16c-8.84 0-16 7.16-16 16.01v32.01C0 504.83 7.16 512 16 512h544c8.84 0 16-7.17 16-16.01v-32.01c0-8.84-7.16-16-16-16z" + } + } + }, + "underline": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f0cd", + "label": "Underline", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M224.264 388.24c-91.669 0-156.603-51.165-156.603-151.392V64H39.37c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h137.39c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.813v172.848c0 53.699 28.314 79.444 76.317 79.444 46.966 0 75.796-25.434 75.796-79.965V64h-28.291c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h136.868c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.291v172.848c0 99.405-64.881 151.392-156.082 151.392zM16 448h416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16z" + } + } + }, + "undo": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "control z", + "exchange", + "oops", + "return", + "rotate", + "swap" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0e2", + "label": "Undo", + "svg": { + "solid": { + "last_modified": 1504208135000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z" + } + } + }, + "undo-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "control z", + "exchange", + "oops", + "return", + "swap" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2ea", + "label": "Alternate Undo", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M255.545 8c-66.269.119-126.438 26.233-170.86 68.685L48.971 40.971C33.851 25.851 8 36.559 8 57.941V192c0 13.255 10.745 24 24 24h134.059c21.382 0 32.09-25.851 16.971-40.971l-41.75-41.75c30.864-28.899 70.801-44.907 113.23-45.273 92.398-.798 170.283 73.977 169.484 169.442C423.236 348.009 349.816 424 256 424c-41.127 0-79.997-14.678-110.63-41.556-4.743-4.161-11.906-3.908-16.368.553L89.34 422.659c-4.872 4.872-4.631 12.815.482 17.433C133.798 479.813 192.074 504 256 504c136.966 0 247.999-111.033 248-247.998C504.001 119.193 392.354 7.755 255.545 8z" + } + } + }, + "uniregistry": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f404", + "label": "Uniregistry", + "svg": { + "brands": { + "last_modified": 1506111999000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M281.1 220.1H384v-14.8H281.1v14.8zm0-37.1H384v-12.4H281.1V183zm0 74.2H384v-17.3H281.1v17.3zm-157.7 86.7H8.5c2.6 8.5 5.8 16.8 9.6 24.8h138.3c-12.9-5.7-24.1-14.2-33-24.8m145.7-12.4h109.7c1.8-7.3 3.1-14.7 3.9-22.3H278.3c-2.1 7.9-5.2 15.4-9.2 22.3m-41.5 37.1H367c3.7-8 5.8-16.2 8.5-24.8h-115c-8.8 10.7-20.1 19.2-32.9 24.8M384 32H281.1v2.5H384V32zM192 480c39.5 0 76.2-11.8 106.8-32.2H85.3C115.8 468.2 152.5 480 192 480m89.1-334.2H384V136H281.1v9.8zm0-37.1H384v-7.4H281.1v7.4zm0-37.1H384v-4.9H281.1v4.9zm-178.2 99H0V183h102.9v-12.4zM38.8 405.7h305.3c6.7-8.5 12.6-17.6 17.8-27.2H23c5.2 9.6 9.2 18.7 15.8 27.2m64.1-118.8v-12.4H0v12.4c0 2.5 0 5 .1 7.4h103.1c-.2-2.4-.3-4.9-.3-7.4m178.2 0c0 2.5-.1 5-.4 7.4h103.1c.1-2.5.2-4.9.2-7.4v-12.4H281.1v12.4zm-203 156h227.7c11.8-8.7 22.7-18.6 32.2-29.7H44.9c9.6 11 21.4 21 33.2 29.7m24.8-376.2H0v4.9h102.9v-4.9zm0-34.7H0v2.5h102.9V32zm0 173.3H0v14.8h102.9v-14.8zm0 34.6H0v17.3h102.9v-17.3zm0-103.9H0v9.9h102.9V136zm0-34.7H0v7.4h102.9v-7.4zm2.8 207.9H1.3c.9 7.6 2.2 15 3.9 22.3h109.7c-4-6.9-7.2-14.4-9.2-22.3" + } + } + }, + "universal-access": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f29a", + "label": "Universal Access", + "svg": { + "solid": { + "last_modified": 1502483808000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 48c114.953 0 208 93.029 208 208 0 114.953-93.029 208-208 208-114.953 0-208-93.029-208-208 0-114.953 93.029-208 208-208m0-40C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 56C149.961 64 64 149.961 64 256s85.961 192 192 192 192-85.961 192-192S362.039 64 256 64zm0 44c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36zm117.741 98.023c-28.712 6.779-55.511 12.748-82.14 15.807.851 101.023 12.306 123.052 25.037 155.621 3.617 9.26-.957 19.698-10.217 23.315-9.261 3.617-19.699-.957-23.316-10.217-8.705-22.308-17.086-40.636-22.261-78.549h-9.686c-5.167 37.851-13.534 56.208-22.262 78.549-3.615 9.255-14.05 13.836-23.315 10.217-9.26-3.617-13.834-14.056-10.217-23.315 12.713-32.541 24.185-54.541 25.037-155.621-26.629-3.058-53.428-9.027-82.141-15.807-8.6-2.031-13.926-10.648-11.895-19.249s10.647-13.926 19.249-11.895c96.686 22.829 124.283 22.783 220.775 0 8.599-2.03 17.218 3.294 19.249 11.895 2.029 8.601-3.297 17.219-11.897 19.249z" + } + } + }, + "university": { + "changes": [ + "4.1", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [ + "bank", + "institution" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f19c", + "label": "University", + "svg": { + "solid": { + "last_modified": 1515426582026, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z" + } + } + }, + "unlink": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chain", + "chain-broken", + "remove" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f127", + "label": "unlink", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M304.083 405.907c4.686 4.686 4.686 12.284 0 16.971l-44.674 44.674c-59.263 59.262-155.693 59.266-214.961 0-59.264-59.265-59.264-155.696 0-214.96l44.675-44.675c4.686-4.686 12.284-4.686 16.971 0l39.598 39.598c4.686 4.686 4.686 12.284 0 16.971l-44.675 44.674c-28.072 28.073-28.072 73.75 0 101.823 28.072 28.072 73.75 28.073 101.824 0l44.674-44.674c4.686-4.686 12.284-4.686 16.971 0l39.597 39.598zm-56.568-260.216c4.686 4.686 12.284 4.686 16.971 0l44.674-44.674c28.072-28.075 73.75-28.073 101.824 0 28.072 28.073 28.072 73.75 0 101.823l-44.675 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.598 39.598c4.686 4.686 12.284 4.686 16.971 0l44.675-44.675c59.265-59.265 59.265-155.695 0-214.96-59.266-59.264-155.695-59.264-214.961 0l-44.674 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.597 39.598zm234.828 359.28l22.627-22.627c9.373-9.373 9.373-24.569 0-33.941L63.598 7.029c-9.373-9.373-24.569-9.373-33.941 0L7.029 29.657c-9.373 9.373-9.373 24.569 0 33.941l441.373 441.373c9.373 9.372 24.569 9.372 33.941 0z" + } + } + }, + "unlock": { + "changes": [ + "2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "lock", + "password", + "protect" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f09c", + "label": "unlock", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z" + } + } + }, + "unlock-alt": { + "changes": [ + "3.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "lock", + "password", + "protect" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f13e", + "label": "Alternate Unlock", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zM264 408c0 22.1-17.9 40-40 40s-40-17.9-40-40v-48c0-22.1 17.9-40 40-40s40 17.9 40 40v48z" + } + } + }, + "untappd": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f405", + "label": "Untappd", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M401.3 49.9c-79.8 160.1-84.6 152.5-87.9 173.2l-5.2 32.8c-1.9 12-6.6 23.5-13.7 33.4L145.6 497.1c-7.6 10.6-20.4 16.2-33.4 14.6-40.3-5-77.8-32.2-95.3-68.5-5.7-11.8-4.5-25.8 3.1-36.4l148.9-207.9c7.1-9.9 16.4-18 27.2-23.7l29.3-15.5c18.5-9.8 9.7-11.9 135.6-138.9 1-4.8 1-7.3 3.6-8 3-.7 6.6-1 6.3-4.6l-.4-4.6c-.2-1.9 1.3-3.6 3.2-3.6 4.5-.1 13.2 1.2 25.6 10 12.3 8.9 16.4 16.8 17.7 21.1.6 1.8-.6 3.7-2.4 4.2l-4.5 1.1c-3.4.9-2.5 4.4-2.3 7.4.1 2.8-2.3 3.6-6.5 6.1zM230.1 36.4c3.4.9 2.5 4.4 2.3 7.4-.2 2.7 2.1 3.5 6.4 6 7.9 15.9 15.3 30.5 22.2 44 .7 1.3 2.3 1.5 3.3.5 11.2-12 24.6-26.2 40.5-42.6 1.3-1.4 1.4-3.5.1-4.9-8-8.2-16.5-16.9-25.6-26.1-1-4.7-1-7.3-3.6-8-3-.8-6.6-1-6.3-4.6.3-3.3 1.4-8.1-2.8-8.2-4.5-.1-13.2 1.1-25.6 10-12.3 8.9-16.4 16.8-17.7 21.1-1.4 4.2 3.6 4.6 6.8 5.4zM620 406.7L471.2 198.8c-13.2-18.5-26.6-23.4-56.4-39.1-11.2-5.9-14.2-10.9-30.5-28.9-1-1.1-2.9-.9-3.6.5-46.3 88.8-47.1 82.8-49 94.8-1.7 10.7-1.3 20 .3 29.8 1.9 12 6.6 23.5 13.7 33.4l148.9 207.9c7.6 10.6 20.2 16.2 33.1 14.7 40.3-4.9 78-32 95.7-68.6 5.4-11.9 4.3-25.9-3.4-36.6z" + } + } + }, + "upload": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "export", + "publish" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f093", + "label": "Upload", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z" + } + } + }, + "usb": { + "changes": [ + "4.5", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f287", + "label": "USB", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M641.5 256c0 3.1-1.7 6.1-4.5 7.5L547.9 317c-1.4.8-2.8 1.4-4.5 1.4-1.4 0-3.1-.3-4.5-1.1-2.8-1.7-4.5-4.5-4.5-7.8v-35.6H295.7c25.3 39.6 40.5 106.9 69.6 106.9H392V354c0-5 3.9-8.9 8.9-8.9H490c5 0 8.9 3.9 8.9 8.9v89.1c0 5-3.9 8.9-8.9 8.9h-89.1c-5 0-8.9-3.9-8.9-8.9v-26.7h-26.7c-75.4 0-81.1-142.5-124.7-142.5H140.3c-8.1 30.6-35.9 53.5-69 53.5C32 327.3 0 295.3 0 256s32-71.3 71.3-71.3c33.1 0 61 22.8 69 53.5 39.1 0 43.9 9.5 74.6-60.4C255 88.7 273 95.7 323.8 95.7c7.5-20.9 27-35.6 50.4-35.6 29.5 0 53.5 23.9 53.5 53.5s-23.9 53.5-53.5 53.5c-23.4 0-42.9-14.8-50.4-35.6H294c-29.1 0-44.3 67.4-69.6 106.9h310.1v-35.6c0-3.3 1.7-6.1 4.5-7.8 2.8-1.7 6.4-1.4 8.9.3l89.1 53.5c2.8 1.1 4.5 4.1 4.5 7.2z" + } + } + }, + "user": { + "changes": [ + "1", + "5.0.0", + "5.0.3", + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "account", + "avatar", + "head", + "man", + "person", + "profile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f007", + "label": "User", + "svg": { + "solid": { + "last_modified": 1525209365081, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" + }, + "regular": { + "last_modified": 1525209365062, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M313.6 304c-28.7 0-42.5 16-89.6 16-47.1 0-60.8-16-89.6-16C60.2 304 0 364.2 0 438.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-25.6c0-74.2-60.2-134.4-134.4-134.4zM400 464H48v-25.6c0-47.6 38.8-86.4 86.4-86.4 14.6 0 38.3 16 89.6 16 51.7 0 74.9-16 89.6-16 47.6 0 86.4 38.8 86.4 86.4V464zM224 288c79.5 0 144-64.5 144-144S303.5 0 224 0 80 64.5 80 144s64.5 144 144 144zm0-240c52.9 0 96 43.1 96 96s-43.1 96-96 96-96-43.1-96-96 43.1-96 96-96z" + } + } + }, + "user-alt": { + "changes": [ + "5.0.0", + "5.0.3", + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "account", + "avatar", + "head", + "man", + "person", + "profile" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f406", + "label": "Alternate User", + "svg": { + "solid": { + "last_modified": 1525209365071, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 288c79.5 0 144-64.5 144-144S335.5 0 256 0 112 64.5 112 144s64.5 144 144 144zm128 32h-55.1c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16H128C57.3 320 0 377.3 0 448v16c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-16c0-70.7-57.3-128-128-128z" + } + } + }, + "user-alt-slash": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f4fa", + "label": "Alternate User Slash", + "svg": { + "solid": { + "last_modified": 1525209365070, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M633.8 458.1L389.6 269.3C433.8 244.7 464 198.1 464 144 464 64.5 399.5 0 320 0c-67.1 0-123 46.1-139 108.2L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM198.4 320C124.2 320 64 380.2 64 454.4v9.6c0 26.5 21.5 48 48 48h382.2L245.8 320h-47.4z" + } + } + }, + "user-astronaut": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "avatar", + "clothing", + "cosmonaut", + "space", + "suit" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4fb", + "label": "User Astronaut", + "svg": { + "solid": { + "last_modified": 1525209365071, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z" + } + } + }, + "user-check": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f4fc", + "label": "User Check", + "svg": { + "solid": { + "last_modified": 1525209365072, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4zm323-128.4l-27.8-28.1c-4.6-4.7-12.1-4.7-16.8-.1l-104.8 104-45.5-45.8c-4.6-4.7-12.1-4.7-16.8-.1l-28.1 27.9c-4.7 4.6-4.7 12.1-.1 16.8l81.7 82.3c4.6 4.7 12.1 4.7 16.8.1l141.3-140.2c4.6-4.7 4.7-12.2.1-16.8z" + } + } + }, + "user-circle": { + "changes": [ + "4.7", + "5.0.0", + "5.0.3", + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "account", + "avatar", + "head", + "man", + "person", + "profile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2bd", + "label": "User Circle", + "svg": { + "solid": { + "last_modified": 1525209365072, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 96c48.6 0 88 39.4 88 88s-39.4 88-88 88-88-39.4-88-88 39.4-88 88-88zm0 344c-58.7 0-111.3-26.6-146.5-68.2 18.8-35.4 55.6-59.8 98.5-59.8 2.4 0 4.8.4 7.1 1.1 13 4.2 26.6 6.9 40.9 6.9 14.3 0 28-2.7 40.9-6.9 2.3-.7 4.7-1.1 7.1-1.1 42.9 0 79.7 24.4 98.5 59.8C359.3 421.4 306.7 448 248 448z" + }, + "regular": { + "last_modified": 1525209365055, + "raw": "", + "viewBox": [ + "0", + "0", + "496", + "512" + ], + "width": 496, + "height": 512, + "path": "M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z" + } + } + }, + "user-clock": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f4fd", + "label": "User Clock", + "svg": { + "solid": { + "last_modified": 1525209365072, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M496 224c-79.6 0-144 64.4-144 144s64.4 144 144 144 144-64.4 144-144-64.4-144-144-144zm64 150.3c0 5.3-4.4 9.7-9.7 9.7h-60.6c-5.3 0-9.7-4.4-9.7-9.7v-76.6c0-5.3 4.4-9.7 9.7-9.7h12.6c5.3 0 9.7 4.4 9.7 9.7V352h38.3c5.3 0 9.7 4.4 9.7 9.7v12.6zM320 368c0-27.8 6.7-54.1 18.2-77.5-8-1.5-16.2-2.5-24.6-2.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h347.1c-45.3-31.9-75.1-84.5-75.1-144zm-96-112c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128z" + } + } + }, + "user-cog": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f4fe", + "label": "User Cog", + "svg": { + "solid": { + "last_modified": 1525209365073, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z" + } + } + }, + "user-edit": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f4ff", + "label": "User Edit", + "svg": { + "solid": { + "last_modified": 1525209365073, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h274.9c-2.4-6.8-3.4-14-2.6-21.3l6.8-60.9 1.2-11.1 7.9-7.9 77.3-77.3c-24.5-27.7-60-45.5-99.9-45.5zm45.3 145.3l-6.8 61c-1.1 10.2 7.5 18.8 17.6 17.6l60.9-6.8 137.9-137.9-71.7-71.7-137.9 137.8zM633 268.9L595.1 231c-9.3-9.3-24.5-9.3-33.8 0l-37.8 37.8-4.1 4.1 71.8 71.7 41.8-41.8c9.3-9.4 9.3-24.5 0-33.9z" + } + } + }, + "user-friends": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f500", + "label": "User Friends", + "svg": { + "solid": { + "last_modified": 1525209365074, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M192 256c61.9 0 112-50.1 112-112S253.9 32 192 32 80 82.1 80 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C51.6 288 0 339.6 0 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zM480 256c53 0 96-43 96-96s-43-96-96-96-96 43-96 96 43 96 96 96zm48 32h-3.8c-13.9 4.8-28.6 8-44.2 8s-30.3-3.2-44.2-8H432c-20.4 0-39.2 5.9-55.7 15.4 24.4 26.3 39.7 61.2 39.7 99.8v38.4c0 2.2-.5 4.3-.6 6.4H592c26.5 0 48-21.5 48-48 0-61.9-50.1-112-112-112z" + } + } + }, + "user-graduate": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "cap", + "clothing", + "commencement", + "gown", + "graduation", + "student" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f501", + "label": "User Graduate", + "svg": { + "solid": { + "last_modified": 1525209365074, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M319.4 320.6L224 416l-95.4-95.4C57.1 323.7 0 382.2 0 454.4v9.6c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-9.6c0-72.2-57.1-130.7-128.6-133.8zM13.6 79.8l6.4 1.5v58.4c-7 4.2-12 11.5-12 20.3 0 8.4 4.6 15.4 11.1 19.7L3.5 242c-1.7 6.9 2.1 14 7.6 14h41.8c5.5 0 9.3-7.1 7.6-14l-15.6-62.3C51.4 175.4 56 168.4 56 160c0-8.8-5-16.1-12-20.3V87.1l66 15.9c-8.6 17.2-14 36.4-14 57 0 70.7 57.3 128 128 128s128-57.3 128-128c0-20.6-5.3-39.8-14-57l96.3-23.2c18.2-4.4 18.2-27.1 0-31.5l-190.4-46c-13-3.1-26.7-3.1-39.7 0L13.6 48.2c-18.1 4.4-18.1 27.2 0 31.6z" + } + } + }, + "user-lock": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f502", + "label": "User Lock", + "svg": { + "solid": { + "last_modified": 1525209365075, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M320 320c0-11.1 3.1-21.4 8.1-30.5-4.8-.5-9.5-1.5-14.5-1.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h280.9c-5.5-9.5-8.9-20.3-8.9-32V320zm-96-64c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm384 32h-32v-48c0-44.2-35.8-80-80-80s-80 35.8-80 80v48h-32c-17.7 0-32 14.3-32 32v160c0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32V320c0-17.7-14.3-32-32-32zm-80 0h-64v-48c0-17.6 14.4-32 32-32s32 14.4 32 32v48z" + } + } + }, + "user-md": { + "changes": [ + "2", + "5.0.0", + "5.0.3", + "5.0.7", + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "doctor", + "job", + "medical", + "nurse", + "occupation", + "profile" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0f0", + "label": "user-md", + "svg": { + "solid": { + "last_modified": 1525209365076, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zM104 424c0 13.3 10.7 24 24 24s24-10.7 24-24-10.7-24-24-24-24 10.7-24 24zm216-135.4v49c36.5 7.4 64 39.8 64 78.4v41.7c0 7.6-5.4 14.2-12.9 15.7l-32.2 6.4c-4.3.9-8.5-1.9-9.4-6.3l-3.1-15.7c-.9-4.3 1.9-8.6 6.3-9.4l19.3-3.9V416c0-62.8-96-65.1-96 1.9v26.7l19.3 3.9c4.3.9 7.1 5.1 6.3 9.4l-3.1 15.7c-.9 4.3-5.1 7.1-9.4 6.3l-31.2-4.2c-7.9-1.1-13.8-7.8-13.8-15.9V416c0-38.6 27.5-70.9 64-78.4v-45.2c-2.2.7-4.4 1.1-6.6 1.9-18 6.3-37.3 9.8-57.4 9.8s-39.4-3.5-57.4-9.8c-7.4-2.6-14.9-4.2-22.6-5.2v81.6c23.1 6.9 40 28.1 40 53.4 0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.3 16.9-46.5 40-53.4v-80.4C48.5 301 0 355.8 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-72-56.8-130.3-128-133.8z" + } + } + }, + "user-minus": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f503", + "label": "User Minus", + "svg": { + "solid": { + "last_modified": 1525209365076, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624 208H432c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" + } + } + }, + "user-ninja": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "assassin", + "avatar", + "dangerous", + "sneaky" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f504", + "label": "User Ninja", + "svg": { + "solid": { + "last_modified": 1525209365077, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M325.4 289.2L224 390.6 122.6 289.2C54 295.3 0 352.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-70.2-54-127.1-122.6-133.2zM32 192c27.3 0 51.8-11.5 69.2-29.7 15.1 53.9 64 93.7 122.8 93.7 70.7 0 128-57.3 128-128S294.7 0 224 0c-50.4 0-93.6 29.4-114.5 71.8C92.1 47.8 64 32 32 32c0 33.4 17.1 62.8 43.1 80-26 17.2-43.1 46.6-43.1 80zm144-96h96c17.7 0 32 14.3 32 32H144c0-17.7 14.3-32 32-32z" + } + } + }, + "user-plus": { + "changes": [ + "4.3", + "5.0.0", + "5.0.3", + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "sign up", + "signup" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f234", + "label": "Add User", + "svg": { + "solid": { + "last_modified": 1525209365077, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" + } + } + }, + "user-secret": { + "changes": [ + "4.3", + "5.0.0", + "5.0.3", + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "clothing", + "coat", + "hat", + "incognito", + "privacy", + "spy", + "whisper" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f21b", + "label": "User Secret", + "svg": { + "solid": { + "last_modified": 1525209365078, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M383.9 308.3l23.9-62.6c4-10.5-3.7-21.7-15-21.7h-58.5c11-18.9 17.8-40.6 17.8-64v-.3c39.2-7.8 64-19.1 64-31.7 0-13.3-27.3-25.1-70.1-33-9.2-32.8-27-65.8-40.6-82.8-9.5-11.9-25.9-15.6-39.5-8.8l-27.6 13.8c-9 4.5-19.6 4.5-28.6 0L182.1 3.4c-13.6-6.8-30-3.1-39.5 8.8-13.5 17-31.4 50-40.6 82.8-42.7 7.9-70 19.7-70 33 0 12.6 24.8 23.9 64 31.7v.3c0 23.4 6.8 45.1 17.8 64H56.3c-11.5 0-19.2 11.7-14.7 22.3l25.8 60.2C27.3 329.8 0 372.7 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-48.4-25.8-90.4-64.1-114.1zM176 480l-41.6-192 49.6 32 24 40-32 120zm96 0l-32-120 24-40 49.6-32L272 480zm41.7-298.5c-3.9 11.9-7 24.6-16.5 33.4-10.1 9.3-48 22.4-64-25-2.8-8.4-15.4-8.4-18.3 0-17 50.2-56 32.4-64 25-9.5-8.8-12.7-21.5-16.5-33.4-.8-2.5-6.3-5.7-6.3-5.8v-10.8c28.3 3.6 61 5.8 96 5.8s67.7-2.1 96-5.8v10.8c-.1.1-5.6 3.2-6.4 5.8z" + } + } + }, + "user-shield": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f505", + "label": "User Shield", + "svg": { + "solid": { + "last_modified": 1525209365078, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M622.3 271.1l-115.2-45c-4.1-1.6-12.6-3.7-22.2 0l-115.2 45c-10.7 4.2-17.7 14-17.7 24.9 0 111.6 68.7 188.8 132.9 213.9 9.6 3.7 18 1.6 22.2 0C558.4 489.9 640 420.5 640 296c0-10.9-7-20.7-17.7-24.9zM496 462.4V273.3l95.5 37.3c-5.6 87.1-60.9 135.4-95.5 151.8zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm96 40c0-2.5.8-4.8 1.1-7.2-2.5-.1-4.9-.8-7.5-.8h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c6.8 0 13.3-1.5 19.2-4-54-42.9-99.2-116.7-99.2-212z" + } + } + }, + "user-slash": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f506", + "label": "User Slash", + "svg": { + "solid": { + "last_modified": 1525209365079, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M633.8 458.1L362.3 248.3C412.1 230.7 448 183.8 448 128 448 57.3 390.7 0 320 0c-67.1 0-121.5 51.8-126.9 117.4L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM96 422.4V464c0 26.5 21.5 48 48 48h350.2L207.4 290.3C144.2 301.3 96 356 96 422.4z" + } + } + }, + "user-tag": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f507", + "label": "User Tag", + "svg": { + "solid": { + "last_modified": 1525209365079, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M630.6 364.9l-90.3-90.2c-12-12-28.3-18.7-45.3-18.7h-79.3c-17.7 0-32 14.3-32 32v79.2c0 17 6.7 33.2 18.7 45.2l90.3 90.2c12.5 12.5 32.8 12.5 45.3 0l92.5-92.5c12.6-12.5 12.6-32.7.1-45.2zm-182.8-21c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24c0 13.2-10.7 24-24 24zm-223.8-88c70.7 0 128-57.3 128-128C352 57.3 294.7 0 224 0S96 57.3 96 128c0 70.6 57.3 127.9 128 127.9zm127.8 111.2V294c-12.2-3.6-24.9-6.2-38.2-6.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 287.9 0 348.1 0 422.3v41.6c0 26.5 21.5 48 48 48h352c15.5 0 29.1-7.5 37.9-18.9l-58-58c-18.1-18.1-28.1-42.2-28.1-67.9z" + } + } + }, + "user-tie": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "avatar", + "business", + "clothing", + "formal" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f508", + "label": "User Tie", + "svg": { + "solid": { + "last_modified": 1525209365079, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm95.8 32.6L272 480l-32-136 32-56h-96l32 56-32 136-47.8-191.4C56.9 292 0 350.3 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-72.1-56.9-130.4-128.2-133.8z" + } + } + }, + "user-times": { + "changes": [ + "4.3", + "5.0.0", + "5.0.3", + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f235", + "label": "Remove User", + "svg": { + "solid": { + "last_modified": 1525209365080, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" + } + } + }, + "users": { + "changes": [ + "2", + "5.0.0", + "5.0.3", + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [ + "people", + "persons", + "profiles" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0c0", + "label": "Users", + "svg": { + "solid": { + "last_modified": 1525209365081, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z" + } + } + }, + "users-cog": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f509", + "label": "Users Cog", + "svg": { + "solid": { + "last_modified": 1525209365081, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M610.5 341.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 368.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm224 32c1.9 0 3.7-.5 5.6-.6 8.3-21.7 20.5-42.1 36.3-59.2 7.4-8 17.9-12.6 28.9-12.6 6.9 0 13.7 1.8 19.6 5.3l7.9 4.6c.8-.5 1.6-.9 2.4-1.4 7-14.6 11.2-30.8 11.2-48 0-61.9-50.1-112-112-112S208 82.1 208 144c0 61.9 50.1 112 112 112zm105.2 194.5c-2.3-1.2-4.6-2.6-6.8-3.9-8.2 4.8-15.3 9.8-27.5 9.8-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-10.7-34.5 24.9-49.7 25.8-50.3-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-3.8-2.2-7-5-9.8-8.1-3.3.2-6.5.6-9.8.6-24.6 0-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h255.4c-3.7-6-6.2-12.8-6.2-20.3v-9.2zM173.1 274.6C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z" + } + } + }, + "ussunnah": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f407", + "label": "us-Sunnah Foundation", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M156.8 285.1l5.7 14.4h-8.2c-1.3-3.2-3.1-7.7-3.8-9.5-2.5-6.3-1.1-8.4 0-10 1.9-2.7 3.2-4.4 3.6-5.2 0 2.2.8 5.7 2.7 10.3zm297.3 18.8c-2.1 13.8-5.7 27.1-10.5 39.7l43 23.4-44.8-18.8c-5.3 13.2-12 25.6-19.9 37.2l34.2 30.2-36.8-26.4c-8.4 11.8-18 22.6-28.7 32.3l24.9 34.7-28.1-31.8c-11 9.6-23.1 18-36.1 25.1l15.7 37.2-19.3-35.3c-13.1 6.8-27 12.1-41.6 15.9l6.7 38.4-10.5-37.4c-14.3 3.4-29.2 5.3-44.5 5.4L256 512l-1.9-38.4c-15.3-.1-30.2-2-44.5-5.3L199 505.6l6.7-38.2c-14.6-3.7-28.6-9.1-41.7-15.8l-19.2 35.1 15.6-37c-13-7-25.2-15.4-36.2-25.1l-27.9 31.6 24.7-34.4c-10.7-9.7-20.4-20.5-28.8-32.3l-36.5 26.2 33.9-29.9c-7.9-11.6-14.6-24.1-20-37.3l-44.4 18.7L67.8 344c-4.8-12.7-8.4-26.1-10.5-39.9l-51 9 50.3-14.2c-1.1-8.5-1.7-17.1-1.7-25.9 0-4.7.2-9.4.5-14.1L0 256l56-2.8c1.3-13.1 3.8-25.8 7.5-38.1L6.4 199l58.9 10.4c4-12 9.1-23.5 15.2-34.4l-55.1-30 58.3 24.6C90 159 97.2 149.2 105.3 140L55.8 96.4l53.9 38.7c8.1-8.6 17-16.5 26.6-23.6l-40-55.6 45.6 51.6c9.5-6.6 19.7-12.3 30.3-17.2l-27.3-64.9 33.8 62.1c10.5-4.4 21.4-7.9 32.7-10.4L199 6.4l19.5 69.2c11-2.1 22.3-3.2 33.8-3.4L256 0l3.6 72.2c11.5.2 22.8 1.4 33.8 3.5L313 6.4l-12.4 70.7c11.3 2.6 22.2 6.1 32.6 10.5l33.9-62.2-27.4 65.1c10.6 4.9 20.7 10.7 30.2 17.2l45.8-51.8-40.1 55.9c9.5 7.1 18.4 15 26.5 23.6l54.2-38.9-49.7 43.9c8 9.1 15.2 18.9 21.5 29.4l58.7-24.7-55.5 30.2c6.1 10.9 11.1 22.3 15.1 34.3l59.3-10.4-57.5 16.2c3.7 12.2 6.2 24.9 7.5 37.9L512 256l-56 2.8c.3 4.6.5 9.3.5 14.1 0 8.7-.6 17.3-1.6 25.8l50.7 14.3-51.5-9.1zm-21.8-31c0-97.5-79-176.5-176.5-176.5s-176.5 79-176.5 176.5 79 176.5 176.5 176.5 176.5-79 176.5-176.5zm-24 0c0 84.3-68.3 152.6-152.6 152.6s-152.6-68.3-152.6-152.6 68.3-152.6 152.6-152.6 152.6 68.3 152.6 152.6zM195 241c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-40.7-19c0 2.1 1.3 3.8 3.6 5.1 3.5 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-19 0c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.4 6.8-9.6 10.9-9.6 12.6zm204.9 87.9c-8.4-3-8.7-6.8-8.7-15.6V182c-8.2 12.5-14.2 18.6-18 18.6 6.3 14.4 9.5 23.9 9.5 28.3v64.3c0 2.2-2.2 6.5-4.7 6.5h-18c-2.8-7.5-10.2-26.9-15.3-40.3-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3 2.6 6.7 6.4 16.5 7.9 20.2h-9.2c-3.9-10.4-9.6-25.4-11.8-31.1-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3.8 2 2.8 7.3 4.3 10.9H256c-1.5-4.1-5.6-14.6-8.4-22-2 2.5-7.2 9.2-10.7 13.7 2.5 1.6 4.3 3.6 5.2 6.3.2.6.5 1.4.6 1.7H225c-4.6-13.9-11.4-27.7-11.4-34.1 0-2.2.3-5.1 1.1-8.2-8.8 10.8-14 15.9-14 25 0 7.5 10.4 28.3 10.4 33.3 0 1.7-.5 3.3-1.4 4.9-9.6-12.7-15.5-20.7-18.8-20.7h-12l-11.2-28c-3.8-9.6-5.7-16-5.7-18.8 0-3.8.5-7.7 1.7-12.2-1 1.3-3.7 4.7-5.5 7.1-.8-2.1-3.1-7.7-4.6-11.5-2.1 2.5-7.5 9.1-11.2 13.6.9 2.3 3.3 8.1 4.9 12.2-2.5 3.3-9.1 11.8-13.6 17.7-4 5.3-5.8 13.3-2.7 21.8 2.5 6.7 2 7.9-1.7 14.1H191c5.5 0 14.3 14 15.5 22 13.2-16 15.4-19.6 16.8-21.6h107c3.9 0 7.2-1.9 9.9-5.8zm20.1-26.6V181.7c-9 12.5-15.9 18.6-20.7 18.6 7.1 14.4 10.7 23.9 10.7 28.3v66.3c0 17.5 8.6 20.4 24 20.4 8.1 0 12.5-.8 13.7-2.7-4.3-1.6-7.6-2.5-9.9-3.3-8.1-3.2-17.8-7.4-17.8-26z" + } + } + }, + "utensil-spoon": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "spoon" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2e5", + "label": "Utensil Spoon", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M480.1 31.9c-55-55.1-164.9-34.5-227.8 28.5-49.3 49.3-55.1 110-28.8 160.4L9 413.2c-11.6 10.5-12.1 28.5-1 39.5L59.3 504c11 11 29.1 10.5 39.5-1.1l192.4-214.4c50.4 26.3 111.1 20.5 160.4-28.8 63-62.9 83.6-172.8 28.5-227.8z" + } + } + }, + "utensils": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cutlery", + "dinner", + "eat", + "food", + "knife", + "restaurant", + "spoon" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2e7", + "label": "Utensils", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "416", + "512" + ], + "width": 416, + "height": 512, + "path": "M207.9 15.2c.8 4.7 16.1 94.5 16.1 128.8 0 52.3-27.8 89.6-68.9 104.6L168 486.7c.7 13.7-10.2 25.3-24 25.3H80c-13.7 0-24.7-11.5-24-25.3l12.9-238.1C27.7 233.6 0 196.2 0 144 0 109.6 15.3 19.9 16.1 15.2 19.3-5.1 61.4-5.4 64 16.3v141.2c1.3 3.4 15.1 3.2 16 0 1.4-25.3 7.9-139.2 8-141.8 3.3-20.8 44.7-20.8 47.9 0 .2 2.7 6.6 116.5 8 141.8.9 3.2 14.8 3.4 16 0V16.3c2.6-21.6 44.8-21.4 48-1.1zm119.2 285.7l-15 185.1c-1.2 14 9.9 26 23.9 26h56c13.3 0 24-10.7 24-24V24c0-13.2-10.7-24-24-24-82.5 0-221.4 178.5-64.9 300.9z" + } + } + }, + "vaadin": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f408", + "label": "Vaadin", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M224.5 140.7c1.5-17.6 4.9-52.7 49.8-52.7h98.6c20.7 0 32.1-7.8 32.1-21.6V54.1c0-12.2 9.3-22.1 21.5-22.1S448 41.9 448 54.1v36.5c0 42.9-21.5 62-66.8 62H280.7c-30.1 0-33 14.7-33 27.1 0 1.3-.1 2.5-.2 3.7-.7 12.3-10.9 22.2-23.4 22.2s-22.7-9.8-23.4-22.2c-.1-1.2-.2-2.4-.2-3.7 0-12.3-3-27.1-33-27.1H66.8c-45.3 0-66.8-19.1-66.8-62V54.1C0 41.9 9.4 32 21.6 32s21.5 9.9 21.5 22.1v12.3C43.1 80.2 54.5 88 75.2 88h98.6c44.8 0 48.3 35.1 49.8 52.7h.9zM224 456c11.5 0 21.4-7 25.7-16.3 1.1-1.8 97.1-169.6 98.2-171.4 11.9-19.6-3.2-44.3-27.2-44.3-13.9 0-23.3 6.4-29.8 20.3L224 362l-66.9-117.7c-6.4-13.9-15.9-20.3-29.8-20.3-24 0-39.1 24.6-27.2 44.3 1.1 1.9 97.1 169.6 98.2 171.4 4.3 9.3 14.2 16.3 25.7 16.3z" + } + } + }, + "vector-square": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anchors", + "lines", + "object" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5cb", + "label": "Vector Square", + "svg": { + "solid": { + "last_modified": 1529520111708, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M512 128V32c0-17.67-14.33-32-32-32h-96c-17.67 0-32 14.33-32 32H160c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32v192c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32h192c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32V160c17.67 0 32-14.33 32-32zm-96-64h32v32h-32V64zM64 64h32v32H64V64zm32 384H64v-32h32v32zm352 0h-32v-32h32v32zm-32-96h-32c-17.67 0-32 14.33-32 32v32H160v-32c0-17.67-14.33-32-32-32H96V160h32c17.67 0 32-14.33 32-32V96h192v32c0 17.67 14.33 32 32 32h32v192z" + } + } + }, + "venus": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "female" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f221", + "label": "Venus", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "288", + "512" + ], + "width": 288, + "height": 512, + "path": "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z" + } + } + }, + "venus-double": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f226", + "label": "Venus Double", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80zm336 140.4V368h36c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-36v36c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-36h-36c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h36v-51.6c-21.2-4.8-40.6-14.3-57.2-27.3 14-16.7 25-36 32.1-57.1 14.5 14.8 34.7 24 57.1 24 44.1 0 80-35.9 80-80s-35.9-80-80-80c-22.3 0-42.6 9.2-57.1 24-7.1-21.1-18-40.4-32.1-57.1C303.4 43.6 334.3 32 368 32c79.5 0 144 64.5 144 144 0 68.5-47.9 125.9-112 140.4z" + } + } + }, + "venus-mars": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f228", + "label": "Venus Mars", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M564 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C422.5 72.1 396.2 64 368 64c-33.7 0-64.6 11.6-89.2 30.9 14 16.7 25 36 32.1 57.1 14.5-14.8 34.7-24 57.1-24 44.1 0 80 35.9 80 80s-35.9 80-80 80c-22.3 0-42.6-9.2-57.1-24-7.1 21.1-18 40.4-32.1 57.1 24.5 19.4 55.5 30.9 89.2 30.9 79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 64C64.5 64 0 128.5 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.6 112-71.9 112-140.4 0-79.5-64.5-144-144-144zm0 224c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" + } + } + }, + "viacoin": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f237", + "label": "Viacoin", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M384 32h-64l-80.7 192h-94.5L64 32H0l48 112H0v48h68.5l13.8 32H0v48h102.8L192 480l89.2-208H384v-48h-82.3l13.8-32H384v-48h-48l48-112zM192 336l-27-64h54l-27 64z" + } + } + }, + "viadeo": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2a9", + "label": "Viadeo", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M276.2 150.5v.7C258.3 98.6 233.6 47.8 205.4 0c43.3 29.2 67 100 70.8 150.5zm32.7 121.7c7.6 18.2 11 37.5 11 57 0 77.7-57.8 141-137.8 139.4l3.8-.3c74.2-46.7 109.3-118.6 109.3-205.1 0-38.1-6.5-75.9-18.9-112 1 11.7 1 23.7 1 35.4 0 91.8-18.1 241.6-116.6 280C95 455.2 49.4 398 49.4 329.2c0-75.6 57.4-142.3 135.4-142.3 16.8 0 33.7 3.1 49.1 9.6 1.7-15.1 6.5-29.9 13.4-43.3-19.9-7.2-41.2-10.7-62.5-10.7-161.5 0-238.7 195.9-129.9 313.7 67.9 74.6 192 73.9 259.8 0 56.6-61.3 60.9-142.4 36.4-201-12.7 8-27.1 13.9-42.2 17zM418.1 11.7c-31 66.5-81.3 47.2-115.8 80.1-12.4 12-20.6 34-20.6 50.5 0 14.1 4.5 27.1 12 38.8 47.4-11 98.3-46 118.2-90.7-.7 5.5-4.8 14.4-7.2 19.2-20.3 35.7-64.6 65.6-99.7 84.9 14.8 14.4 33.7 25.8 55 25.8 79 0 110.1-134.6 58.1-208.6z" + } + } + }, + "viadeo-square": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2aa", + "label": "Viadeo Square", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM280.7 381.2c-42.4 46.2-120 46.6-162.4 0-68-73.6-19.8-196.1 81.2-196.1 13.3 0 26.6 2.1 39.1 6.7-4.3 8.4-7.3 17.6-8.4 27.1-9.7-4.1-20.2-6-30.7-6-48.8 0-84.6 41.7-84.6 88.9 0 43 28.5 78.7 69.5 85.9 61.5-24 72.9-117.6 72.9-175 0-7.3 0-14.8-.6-22.1-11.2-32.9-26.6-64.6-44.2-94.5 27.1 18.3 41.9 62.5 44.2 94.1v.4c7.7 22.5 11.8 46.2 11.8 70 0 54.1-21.9 99-68.3 128.2l-2.4.2c50 1 86.2-38.6 86.2-87.2 0-12.2-2.1-24.3-6.9-35.7 9.5-1.9 18.5-5.6 26.4-10.5 15.3 36.6 12.6 87.3-22.8 125.6zM309 233.7c-13.3 0-25.1-7.1-34.4-16.1 21.9-12 49.6-30.7 62.3-53 1.5-3 4.1-8.6 4.5-12-12.5 27.9-44.2 49.8-73.9 56.7-4.7-7.3-7.5-15.5-7.5-24.3 0-10.3 5.2-24.1 12.9-31.6 21.6-20.5 53-8.5 72.4-50 32.5 46.2 13.1 130.3-36.3 130.3z" + } + } + }, + "vial": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "test tube" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f492", + "label": "Vial", + "svg": { + "solid": { + "last_modified": 1521653821462, + "raw": "", + "viewBox": [ + "0", + "0", + "480", + "512" + ], + "width": 480, + "height": 512, + "path": "M477.7 186.1L309.5 18.3c-3.1-3.1-8.2-3.1-11.3 0l-34 33.9c-3.1 3.1-3.1 8.2 0 11.3l11.2 11.1L33 316.5c-38.8 38.7-45.1 102-9.4 143.5 20.6 24 49.5 36 78.4 35.9 26.4 0 52.8-10 72.9-30.1l246.3-245.7 11.2 11.1c3.1 3.1 8.2 3.1 11.3 0l34-33.9c3.1-3 3.1-8.1 0-11.2zM318 256H161l148-147.7 78.5 78.3L318 256z" + } + } + }, + "vials": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "lab results", + "test tubes" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f493", + "label": "Vials", + "svg": { + "solid": { + "last_modified": 1521653821462, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M72 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H72c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64zm480 384H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM360 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64z" + } + } + }, + "viber": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f409", + "label": "Viber", + "svg": { + "brands": { + "last_modified": 1515426582002, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M444 49.9C431.3 38.2 379.9.9 265.3.4c0 0-135.1-8.1-200.9 52.3C27.8 89.3 14.9 143 13.5 209.5c-1.4 66.5-3.1 191.1 117 224.9h.1l-.1 51.6s-.8 20.9 13 25.1c16.6 5.2 26.4-10.7 42.3-27.8 8.7-9.4 20.7-23.2 29.8-33.7 82.2 6.9 145.3-8.9 152.5-11.2 16.6-5.4 110.5-17.4 125.7-142 15.8-128.6-7.6-209.8-49.8-246.5zM457.9 287c-12.9 104-89 110.6-103 115.1-6 1.9-61.5 15.7-131.2 11.2 0 0-52 62.7-68.2 79-5.3 5.3-11.1 4.8-11-5.7 0-6.9.4-85.7.4-85.7-.1 0-.1 0 0 0-101.8-28.2-95.8-134.3-94.7-189.8 1.1-55.5 11.6-101 42.6-131.6 55.7-50.5 170.4-43 170.4-43 96.9.4 143.3 29.6 154.1 39.4 35.7 30.6 53.9 103.8 40.6 211.1zm-139-80.8c.4 8.6-12.5 9.2-12.9.6-1.1-22-11.4-32.7-32.6-33.9-8.6-.5-7.8-13.4.7-12.9 27.9 1.5 43.4 17.5 44.8 46.2zm20.3 11.3c1-42.4-25.5-75.6-75.8-79.3-8.5-.6-7.6-13.5.9-12.9 58 4.2 88.9 44.1 87.8 92.5-.1 8.6-13.1 8.2-12.9-.3zm47 13.4c.1 8.6-12.9 8.7-12.9.1-.6-81.5-54.9-125.9-120.8-126.4-8.5-.1-8.5-12.9 0-12.9 73.7.5 133 51.4 133.7 139.2zM374.9 329v.2c-10.8 19-31 40-51.8 33.3l-.2-.3c-21.1-5.9-70.8-31.5-102.2-56.5-16.2-12.8-31-27.9-42.4-42.4-10.3-12.9-20.7-28.2-30.8-46.6-21.3-38.5-26-55.7-26-55.7-6.7-20.8 14.2-41 33.3-51.8h.2c9.2-4.8 18-3.2 23.9 3.9 0 0 12.4 14.8 17.7 22.1 5 6.8 11.7 17.7 15.2 23.8 6.1 10.9 2.3 22-3.7 26.6l-12 9.6c-6.1 4.9-5.3 14-5.3 14s17.8 67.3 84.3 84.3c0 0 9.1.8 14-5.3l9.6-12c4.6-6 15.7-9.8 26.6-3.7 14.7 8.3 33.4 21.2 45.8 32.9 7 5.7 8.6 14.4 3.8 23.6z" + } + } + }, + "video": { + "changes": [ + "1", + "5.0.0", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [ + "camera", + "film", + "movie", + "record", + "video-camera" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f03d", + "label": "Video", + "svg": { + "solid": { + "last_modified": 1522083406029, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M336.2 64H47.8C21.4 64 0 85.4 0 111.8v288.4C0 426.6 21.4 448 47.8 448h288.4c26.4 0 47.8-21.4 47.8-47.8V111.8c0-26.4-21.4-47.8-47.8-47.8zm189.4 37.7L416 177.3v157.4l109.6 75.5c21.2 14.6 50.4-.3 50.4-25.8V127.5c0-25.4-29.1-40.4-50.4-25.8z" + } + } + }, + "video-slash": { + "changes": [ + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f4e2", + "label": "Video Slash", + "svg": { + "solid": { + "last_modified": 1522083406028, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M633.8 458.1l-55-42.5c15.4-1.4 29.2-13.7 29.2-31.1v-257c0-25.5-29.1-40.4-50.4-25.8L448 177.3v137.2l-32-24.7v-178c0-26.4-21.4-47.8-47.8-47.8H123.9L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4L42.7 82 416 370.6l178.5 138c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.5-6.9 4.2-17-2.8-22.4zM32 400.2c0 26.4 21.4 47.8 47.8 47.8h288.4c11.2 0 21.4-4 29.6-10.5L32 154.7v245.5z" + } + } + }, + "vimeo": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f40a", + "label": "Vimeo", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M403.2 32H44.8C20.1 32 0 52.1 0 76.8v358.4C0 459.9 20.1 480 44.8 480h358.4c24.7 0 44.8-20.1 44.8-44.8V76.8c0-24.7-20.1-44.8-44.8-44.8zM377 180.8c-1.4 31.5-23.4 74.7-66 129.4-44 57.2-81.3 85.8-111.7 85.8-18.9 0-34.8-17.4-47.9-52.3-25.5-93.3-36.4-148-57.4-148-2.4 0-10.9 5.1-25.4 15.2l-15.2-19.6c37.3-32.8 72.9-69.2 95.2-71.2 25.2-2.4 40.7 14.8 46.5 51.7 20.7 131.2 29.9 151 67.6 91.6 13.5-21.4 20.8-37.7 21.8-48.9 3.5-33.2-25.9-30.9-45.8-22.4 15.9-52.1 46.3-77.4 91.2-76 33.3.9 49 22.5 47.1 64.7z" + } + } + }, + "vimeo-square": { + "changes": [ + "4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f194", + "label": "Vimeo Square", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16.2 149.6c-1.4 31.1-23.2 73.8-65.3 127.9-43.5 56.5-80.3 84.8-110.4 84.8-18.7 0-34.4-17.2-47.3-51.6-25.2-92.3-35.9-146.4-56.7-146.4-2.4 0-10.8 5-25.1 15.1L64 192c36.9-32.4 72.1-68.4 94.1-70.4 24.9-2.4 40.2 14.6 46 51.1 20.5 129.6 29.6 149.2 66.8 90.5 13.4-21.2 20.6-37.2 21.5-48.3 3.4-32.8-25.6-30.6-45.2-22.2 15.7-51.5 45.8-76.5 90.1-75.1 32.9 1 48.4 22.4 46.5 64z" + } + } + }, + "vimeo-v": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "vimeo" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f27d", + "label": "Vimeo", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M447.8 153.6c-2 43.6-32.4 103.3-91.4 179.1-60.9 79.2-112.4 118.8-154.6 118.8-26.1 0-48.2-24.1-66.3-72.3C100.3 250 85.3 174.3 56.2 174.3c-3.4 0-15.1 7.1-35.2 21.1L0 168.2c51.6-45.3 100.9-95.7 131.8-98.5 34.9-3.4 56.3 20.5 64.4 71.5 28.7 181.5 41.4 208.9 93.6 126.7 18.7-29.6 28.8-52.1 30.2-67.6 4.8-45.9-35.8-42.8-63.3-31 22-72.1 64.1-107.1 126.2-105.1 45.8 1.2 67.5 31.1 64.9 89.4z" + } + } + }, + "vine": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1ca", + "label": "Vine", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M384 254.7v52.1c-18.4 4.2-36.9 6.1-52.1 6.1-36.9 77.4-103 143.8-125.1 156.2-14 7.9-27.1 8.4-42.7-.8C137 452 34.2 367.7 0 102.7h74.5C93.2 261.8 139 343.4 189.3 404.5c27.9-27.9 54.8-65.1 75.6-106.9-49.8-25.3-80.1-80.9-80.1-145.6 0-65.6 37.7-115.1 102.2-115.1 114.9 0 106.2 127.9 81.6 181.5 0 0-46.4 9.2-63.5-20.5 3.4-11.3 8.2-30.8 8.2-48.5 0-31.3-11.3-46.6-28.4-46.6-18.2 0-30.8 17.1-30.8 50 .1 79.2 59.4 118.7 129.9 101.9z" + } + } + }, + "vk": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f189", + "label": "VK", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M545 117.7c3.7-12.5 0-21.7-17.8-21.7h-58.9c-15 0-21.9 7.9-25.6 16.7 0 0-30 73.1-72.4 120.5-13.7 13.7-20 18.1-27.5 18.1-3.7 0-9.4-4.4-9.4-16.9V117.7c0-15-4.2-21.7-16.6-21.7h-92.6c-9.4 0-15 7-15 13.5 0 14.2 21.2 17.5 23.4 57.5v86.8c0 19-3.4 22.5-10.9 22.5-20 0-68.6-73.4-97.4-157.4-5.8-16.3-11.5-22.9-26.6-22.9H38.8c-16.8 0-20.2 7.9-20.2 16.7 0 15.6 20 93.1 93.1 195.5C160.4 378.1 229 416 291.4 416c37.5 0 42.1-8.4 42.1-22.9 0-66.8-3.4-73.1 15.4-73.1 8.7 0 23.7 4.4 58.7 38.1 40 40 46.6 57.9 69 57.9h58.9c16.8 0 25.3-8.4 20.4-25-11.2-34.9-86.9-106.7-90.3-111.5-8.7-11.2-6.2-16.2 0-26.2.1-.1 72-101.3 79.4-135.6z" + } + } + }, + "vnv": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f40b", + "label": "VNV", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M104.9 352c-34.1 0-46.4-30.4-46.4-30.4L2.6 210.1S-7.8 192 13 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.7-74.5c5.6-9.5 8.4-18.1 18.8-18.1h32.8c20.8 0 10.4 18.1 10.4 18.1l-55.8 111.5S174.2 352 140 352h-35.1zm395 0c-34.1 0-46.4-30.4-46.4-30.4l-55.9-111.5S387.2 192 408 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.8-74.5c5.6-9.5 8.4-18.1 18.8-18.1H627c20.8 0 10.4 18.1 10.4 18.1l-55.9 111.5S569.3 352 535.1 352h-35.2zM337.6 192c34.1 0 46.4 30.4 46.4 30.4l55.9 111.5s10.4 18.1-10.4 18.1h-32.8c-10.4 0-13.2-8.7-18.8-18.1l-36.7-74.5s-5.2-13.1-21.1-13.1c-15.9 0-21.1 13.1-21.1 13.1l-36.7 74.5c-5.6 9.4-8.4 18.1-18.8 18.1h-32.9c-20.8 0-10.4-18.1-10.4-18.1l55.9-111.5s12.2-30.4 46.4-30.4h35.1z" + } + } + }, + "volleyball-ball": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f45f", + "label": "Volleyball Ball", + "svg": { + "solid": { + "last_modified": 1518899527998, + "raw": "", + "viewBox": [ + "0", + "0", + "495.9", + "512" + ], + "width": 495, + "height": 512, + "path": "M223.3 243.4c-.9-37-8.6-72.8-22.7-105.7-90.8 42.4-157.5 122.4-180.3 216.8 13.4 30.8 32.9 58.3 56.9 81.1 22.7-79.2 74.2-147.8 146.1-192.2zM186.4 109c-15-26.4-34.5-50.1-57.4-70.7C38 88.1-15.8 191.2 4 300.5c33.4-83.1 98.4-152 182.4-191.5zM374 274.1c8.6-99.8-27.3-197.5-97.5-264.4-14.7-1.7-51.6-5.5-98.9 8.5 57.3 59.3 91 138.2 93.5 222.7 32.5 17.7 67.3 29 102.9 33.2zm-124.7 9.5c-31.6 19.3-58.7 43.9-80.2 72.6 82 57.3 184.5 75.1 277.5 47.8 19.7-26.4 34.2-56.8 42.2-89.9-26.6 6.6-53.7 10.4-80.9 10.4-54.6-.1-108.9-14.1-158.6-40.9zM151 383.3c-15.2 26-25.7 54.4-32.1 84.2 37.6 23 81.7 36.5 129.1 36.5 61 0 116.7-22.1 159.9-58.6C295 461.5 204.6 420.6 151 383.3zM331.3 22.7c55.3 70.4 82.5 161.2 74.6 253.6 30.3.2 60.5-4.8 89.7-14.2 0-2 .3-4 .3-6 0-107.8-68.7-199.1-164.6-233.4z" + } + } + }, + "volume-down": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "lower", + "music", + "quieter", + "sound", + "speaker" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f027", + "label": "volume-down", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zM384 256c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z" + } + } + }, + "volume-off": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "music", + "mute", + "sound" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f026", + "label": "volume-off", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971z" + } + } + }, + "volume-up": { + "changes": [ + "1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "higher", + "louder", + "music", + "sound", + "speaker" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f028", + "label": "volume-up", + "svg": { + "solid": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zm182.056-77.876C422.982.92 403.283 5.668 394.061 20.745c-9.221 15.077-4.473 34.774 10.604 43.995C468.967 104.063 512 174.983 512 256c0 73.431-36.077 142.292-96.507 184.206-14.522 10.072-18.129 30.01-8.057 44.532 10.076 14.528 30.016 18.126 44.531 8.057C529.633 438.927 576 350.406 576 256c0-103.244-54.579-194.877-137.944-245.859zM480 256c0-68.547-36.15-129.777-91.957-163.901-15.076-9.22-34.774-4.471-43.994 10.607-9.22 15.078-4.471 34.774 10.607 43.994C393.067 170.188 416 211.048 416 256c0 41.964-20.62 81.319-55.158 105.276-14.521 10.073-18.128 30.01-8.056 44.532 6.216 8.96 16.185 13.765 26.322 13.765a31.862 31.862 0 0 0 18.21-5.709C449.091 377.953 480 318.938 480 256zm-96 0c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z" + } + } + }, + "vuejs": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f41f", + "label": "Vue.js", + "svg": { + "brands": { + "last_modified": 1508787003040, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M356.9 64.3H280l-56 88.6-48-88.6H0L224 448 448 64.3h-91.1zm-301.2 32h53.8L224 294.5 338.4 96.3h53.8L224 384.5 55.7 96.3z" + } + } + }, + "walking": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f554", + "label": "Walking", + "svg": { + "solid": { + "last_modified": 1525967154580, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M208 96c26.5 0 48-21.5 48-48S234.5 0 208 0s-48 21.5-48 48 21.5 48 48 48zm94.5 149.1l-23.3-11.8-9.7-29.4c-14.7-44.6-55.7-75.8-102.2-75.9-36-.1-55.9 10.1-93.3 25.2-21.6 8.7-39.3 25.2-49.7 46.2L17.6 213c-7.8 15.8-1.5 35 14.2 42.9 15.6 7.9 34.6 1.5 42.5-14.3L81 228c3.5-7 9.3-12.5 16.5-15.4l26.8-10.8-15.2 60.7c-5.2 20.8.4 42.9 14.9 58.8l59.9 65.4c7.2 7.9 12.3 17.4 14.9 27.7l18.3 73.3c4.3 17.1 21.7 27.6 38.8 23.3 17.1-4.3 27.6-21.7 23.3-38.8l-22.2-89c-2.6-10.3-7.7-19.9-14.9-27.7l-45.5-49.7 17.2-68.7 5.5 16.5c5.3 16.1 16.7 29.4 31.7 37l23.3 11.8c15.6 7.9 34.6 1.5 42.5-14.3 7.7-15.7 1.4-35.1-14.3-43zM73.6 385.8c-3.2 8.1-8 15.4-14.2 21.5l-50 50.1c-12.5 12.5-12.5 32.8 0 45.3s32.7 12.5 45.2 0l59.4-59.4c6.1-6.1 10.9-13.4 14.2-21.5l13.5-33.8c-55.3-60.3-38.7-41.8-47.4-53.7l-20.7 51.5z" + } + } + }, + "wallet": { + "changes": [ + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f555", + "label": "Wallet", + "svg": { + "solid": { + "last_modified": 1525967154581, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M461.2 128H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h384c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h397.2c28.02 0 50.8-21.53 50.8-48V176c0-26.47-22.78-48-50.8-48zM416 336c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" + } + } + }, + "warehouse": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f494", + "label": "Warehouse", + "svg": { + "solid": { + "last_modified": 1521653821463, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M504 352H136.4c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0 96H136.1c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0-192H136.6c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm106.5-139L338.4 3.7a48.15 48.15 0 0 0-36.9 0L29.5 117C11.7 124.5 0 141.9 0 161.3V504c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V256c0-17.6 14.6-32 32.6-32h382.8c18 0 32.6 14.4 32.6 32v248c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V161.3c0-19.4-11.7-36.8-29.5-44.3z" + } + } + }, + "weebly": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5cc", + "label": "Weebly", + "svg": { + "brands": { + "last_modified": 1529514897200, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M425.09 65.83c-39.88 0-73.28 25.73-83.66 64.33-18.16-58.06-65.5-64.33-84.95-64.33-19.78 0-66.8 6.28-85.28 64.33-10.38-38.6-43.45-64.33-83.66-64.33C38.59 65.83 0 99.72 0 143.03c0 28.96 4.18 33.27 77.17 233.48 22.37 60.57 67.77 69.35 92.74 69.35 39.23 0 70.04-19.46 85.93-53.98 15.89 34.83 46.69 54.29 85.93 54.29 24.97 0 70.36-9.1 92.74-69.67 76.55-208.65 77.5-205.58 77.5-227.2.63-48.32-36.01-83.47-86.92-83.47zm26.34 114.81l-65.57 176.44c-7.92 21.49-21.22 37.22-46.24 37.22-23.44 0-37.38-12.41-44.03-33.9l-39.28-117.42h-.95L216.08 360.4c-6.96 21.5-20.9 33.6-44.02 33.6-25.02 0-38.33-15.74-46.24-37.22L60.88 181.55c-5.38-14.83-7.92-23.91-7.92-34.5 0-16.34 15.84-29.36 38.33-29.36 18.69 0 31.99 11.8 36.11 29.05l44.03 139.82h.95l44.66-136.79c6.02-19.67 16.47-32.08 38.96-32.08s32.94 12.11 38.96 32.08l44.66 136.79h.95l44.03-139.82c4.12-17.25 17.42-29.05 36.11-29.05 22.17 0 38.33 13.32 38.33 35.71-.32 7.87-4.12 16.04-7.61 27.24z" + } + } + }, + "weibo": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f18a", + "label": "Weibo", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M407 177.6c7.6-24-13.4-46.8-37.4-41.7-22 4.8-28.8-28.1-7.1-32.8 50.1-10.9 92.3 37.1 76.5 84.8-6.8 21.2-38.8 10.8-32-10.3zM214.8 446.7C108.5 446.7 0 395.3 0 310.4c0-44.3 28-95.4 76.3-143.7C176 67 279.5 65.8 249.9 161c-4 13.1 12.3 5.7 12.3 6 79.5-33.6 140.5-16.8 114 51.4-3.7 9.4 1.1 10.9 8.3 13.1 135.7 42.3 34.8 215.2-169.7 215.2zm143.7-146.3c-5.4-55.7-78.5-94-163.4-85.7-84.8 8.6-148.8 60.3-143.4 116s78.5 94 163.4 85.7c84.8-8.6 148.8-60.3 143.4-116zM347.9 35.1c-25.9 5.6-16.8 43.7 8.3 38.3 72.3-15.2 134.8 52.8 111.7 124-7.4 24.2 29.1 37 37.4 12 31.9-99.8-55.1-195.9-157.4-174.3zm-78.5 311c-17.1 38.8-66.8 60-109.1 46.3-40.8-13.1-58-53.4-40.3-89.7 17.7-35.4 63.1-55.4 103.4-45.1 42 10.8 63.1 50.2 46 88.5zm-86.3-30c-12.9-5.4-30 .3-38 12.9-8.3 12.9-4.3 28 8.6 34 13.1 6 30.8.3 39.1-12.9 8-13.1 3.7-28.3-9.7-34zm32.6-13.4c-5.1-1.7-11.4.6-14.3 5.4-2.9 5.1-1.4 10.6 3.7 12.9 5.1 2 11.7-.3 14.6-5.4 2.8-5.2 1.1-10.9-4-12.9z" + } + } + }, + "weight": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "measurement", + "scale", + "weight" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f496", + "label": "Weight", + "svg": { + "solid": { + "last_modified": 1529520111709, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M448 64h-25.98C438.44 92.28 448 125.01 448 160c0 105.87-86.13 192-192 192S64 265.87 64 160c0-34.99 9.56-67.72 25.98-96H64C28.71 64 0 92.71 0 128v320c0 35.29 28.71 64 64 64h384c35.29 0 64-28.71 64-64V128c0-35.29-28.71-64-64-64zM256 320c88.37 0 160-71.63 160-160S344.37 0 256 0 96 71.63 96 160s71.63 160 160 160zm-.3-151.94l33.58-78.36c3.5-8.17 12.94-11.92 21.03-8.41 8.12 3.48 11.88 12.89 8.41 21l-33.67 78.55C291.73 188 296 197.45 296 208c0 22.09-17.91 40-40 40s-40-17.91-40-40c0-21.98 17.76-39.77 39.7-39.94z" + } + } + }, + "weight-hanging": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anvil", + "heavy", + "measurement" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5cd", + "label": "Hanging Weight", + "svg": { + "solid": { + "last_modified": 1529520111709, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M510.28 445.86l-73.03-292.13c-3.8-15.19-16.44-25.72-30.87-25.72h-60.25c3.57-10.05 5.88-20.72 5.88-32 0-53.02-42.98-96-96-96s-96 42.98-96 96c0 11.28 2.3 21.95 5.88 32h-60.25c-14.43 0-27.08 10.54-30.87 25.72L1.72 445.86C-6.61 479.17 16.38 512 48.03 512h415.95c31.64 0 54.63-32.83 46.3-66.14zM256 128c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z" + } + } + }, + "weixin": { + "changes": [ + "4.1", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1d7", + "label": "Weixin (WeChat)", + "svg": { + "brands": { + "last_modified": 1515426582002, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M385.2 167.6c6.4 0 12.6.3 18.8 1.1C387.4 90.3 303.3 32 207.7 32 100.5 32 13 104.8 13 197.4c0 53.4 29.3 97.5 77.9 131.6l-19.3 58.6 68-34.1c24.4 4.8 43.8 9.7 68.2 9.7 6.2 0 12.1-.3 18.3-.8-4-12.9-6.2-26.6-6.2-40.8-.1-84.9 72.9-154 165.3-154zm-104.5-52.9c14.5 0 24.2 9.7 24.2 24.4 0 14.5-9.7 24.2-24.2 24.2-14.8 0-29.3-9.7-29.3-24.2.1-14.7 14.6-24.4 29.3-24.4zm-136.4 48.6c-14.5 0-29.3-9.7-29.3-24.2 0-14.8 14.8-24.4 29.3-24.4 14.8 0 24.4 9.7 24.4 24.4 0 14.6-9.6 24.2-24.4 24.2zM563 319.4c0-77.9-77.9-141.3-165.4-141.3-92.7 0-165.4 63.4-165.4 141.3S305 460.7 397.6 460.7c19.3 0 38.9-5.1 58.6-9.9l53.4 29.3-14.8-48.6C534 402.1 563 363.2 563 319.4zm-219.1-24.5c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.8 0 24.4 9.7 24.4 19.3 0 10-9.7 19.6-24.4 19.6zm107.1 0c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.5 0 24.4 9.7 24.4 19.3.1 10-9.9 19.6-24.4 19.6z" + } + } + }, + "whatsapp": { + "changes": [ + "4.3", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f232", + "label": "What's App", + "svg": { + "brands": { + "last_modified": 1521653821390, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z" + } + } + }, + "whatsapp-square": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f40c", + "label": "What's App Square", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M224 122.8c-72.7 0-131.8 59.1-131.9 131.8 0 24.9 7 49.2 20.2 70.1l3.1 5-13.3 48.6 49.9-13.1 4.8 2.9c20.2 12 43.4 18.4 67.1 18.4h.1c72.6 0 133.3-59.1 133.3-131.8 0-35.2-15.2-68.3-40.1-93.2-25-25-58-38.7-93.2-38.7zm77.5 188.4c-3.3 9.3-19.1 17.7-26.7 18.8-12.6 1.9-22.4.9-47.5-9.9-39.7-17.2-65.7-57.2-67.7-59.8-2-2.6-16.2-21.5-16.2-41s10.2-29.1 13.9-33.1c3.6-4 7.9-5 10.6-5 2.6 0 5.3 0 7.6.1 2.4.1 5.7-.9 8.9 6.8 3.3 7.9 11.2 27.4 12.2 29.4s1.7 4.3.3 6.9c-7.6 15.2-15.7 14.6-11.6 21.6 15.3 26.3 30.6 35.4 53.9 47.1 4 2 6.3 1.7 8.6-1 2.3-2.6 9.9-11.6 12.5-15.5 2.6-4 5.3-3.3 8.9-2 3.6 1.3 23.1 10.9 27.1 12.9s6.6 3 7.6 4.6c.9 1.9.9 9.9-2.4 19.1zM400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM223.9 413.2c-26.6 0-52.7-6.7-75.8-19.3L64 416l22.5-82.2c-13.9-24-21.2-51.3-21.2-79.3C65.4 167.1 136.5 96 223.9 96c42.4 0 82.2 16.5 112.2 46.5 29.9 30 47.9 69.8 47.9 112.2 0 87.4-72.7 158.5-160.1 158.5z" + } + } + }, + "wheelchair": { + "changes": [ + "4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "handicap", + "person" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f193", + "label": "Wheelchair", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M496.101 385.669l14.227 28.663c3.929 7.915.697 17.516-7.218 21.445l-65.465 32.886c-16.049 7.967-35.556 1.194-43.189-15.055L331.679 320H192c-15.925 0-29.426-11.71-31.679-27.475C126.433 55.308 128.38 70.044 128 64c0-36.358 30.318-65.635 67.052-63.929 33.271 1.545 60.048 28.905 60.925 62.201.868 32.933-23.152 60.423-54.608 65.039l4.67 32.69H336c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H215.182l4.572 32H352a32 32 0 0 1 28.962 18.392L438.477 396.8l36.178-18.349c7.915-3.929 17.517-.697 21.446 7.218zM311.358 352h-24.506c-7.788 54.204-54.528 96-110.852 96-61.757 0-112-50.243-112-112 0-41.505 22.694-77.809 56.324-97.156-3.712-25.965-6.844-47.86-9.488-66.333C45.956 198.464 0 261.963 0 336c0 97.047 78.953 176 176 176 71.87 0 133.806-43.308 161.11-105.192L311.358 352z" + } + } + }, + "whmcs": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f40d", + "label": "WHMCS", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 161v-21.3l-28.5-8.8-2.2-10.4 20.1-20.7L427 80.4l-29 7.5-7.2-7.5 7.5-28.2-19.1-11.6-21.3 21-10.7-3.2-7-26.4h-22.6l-6.2 26.4-12.1 3.2-19.7-21-19.4 11 8.1 27.7-8.1 8.4-28.5-7.5-11 19.1 20.7 21-2.9 10.4-28.5 7.8-.3 21.7 28.8 7.5 2.4 12.1-20.1 19.9 10.4 18.5 29.6-7.5 7.2 8.6-8.1 26.9 19.9 11.6 19.4-20.4 11.6 2.9 6.7 28.5 22.6.3 6.7-28.8 11.6-3.5 20.7 21.6 20.4-12.1-8.8-28 7.8-8.1 28.8 8.8 10.3-20.1-20.9-18.8 2.2-12.1 29.1-7zm-119.2 45.2c-31.3 0-56.8-25.4-56.8-56.8s25.4-56.8 56.8-56.8 56.8 25.4 56.8 56.8c0 31.5-25.4 56.8-56.8 56.8zm72.3 16.4l46.9 14.5V277l-55.1 13.4-4.1 22.7 38.9 35.3-19.2 37.9-54-16.7-14.6 15.2 16.7 52.5-38.3 22.7-38.9-40.5-21.7 6.6-12.6 54-42.4-.5-12.6-53.6-21.7-5.6-36.4 38.4-37.4-21.7 15.2-50.5-13.7-16.1-55.5 14.1-19.7-34.8 37.9-37.4-4.8-22.8-54-14.1.5-40.9L54 219.9l5.7-19.7-38.9-39.4L41.5 125l53.6 14.1 15.2-15.7-15.2-52 36.4-20.7 36.8 39.4L191 84l11.6-52H245l11.6 45.9L234 72l-6.3-1.7-3.3 5.7-11 19.1-3.3 5.6 4.6 4.6 17.2 17.4-.3 1-23.8 6.5-6.2 1.7-.1 6.4-.2 12.9C153.8 161.6 118 204 118 254.7c0 58.3 47.3 105.7 105.7 105.7 50.5 0 92.7-35.4 103.2-82.8l13.2.2 6.9.1 1.6-6.7 5.6-24 1.9-.6 17.1 17.8 4.7 4.9 5.8-3.4 20.4-12.1 5.8-3.5-2-6.5-6.8-21.2z" + } + } + }, + "wifi": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f1eb", + "label": "WiFi", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M384 416c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm136.659-124.443c6.465-6.465 6.245-17.065-.564-23.167-113.793-101.985-286.526-101.869-400.19 0-6.809 6.102-7.029 16.702-.564 23.167l34.006 34.006c5.927 5.927 15.464 6.32 21.769.796 82.88-72.609 207.074-72.447 289.768 0 6.305 5.524 15.842 5.132 21.769-.796l34.006-34.006zm112.11-113.718c6.385-6.385 6.254-16.816-.35-22.973-175.768-163.86-449.134-163.8-624.837 0-6.604 6.157-6.735 16.589-.35 22.973l33.966 33.966c6.095 6.095 15.891 6.231 22.224.383 144.763-133.668 368.356-133.702 513.156 0 6.333 5.848 16.129 5.712 22.224-.383l33.967-33.966z" + } + } + }, + "wikipedia-w": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f266", + "label": "Wikipedia W", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M640 51.2l-.3 12.2c-28.1.8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3.3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4.2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5.3v13.1c-19.4.6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4.3-3.6 0-10.3.3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5.8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1.2.5z" + } + } + }, + "window-close": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f410", + "label": "Window Close", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-83.6 290.5c4.8 4.8 4.8 12.6 0 17.4l-40.5 40.5c-4.8 4.8-12.6 4.8-17.4 0L256 313.3l-66.5 67.1c-4.8 4.8-12.6 4.8-17.4 0l-40.5-40.5c-4.8-4.8-4.8-12.6 0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6 0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1 66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8 4.8 12.6 0 17.4L313.3 256l67.1 66.5z" + }, + "regular": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v340zM356.5 194.6L295.1 256l61.4 61.4c4.6 4.6 4.6 12.1 0 16.8l-22.3 22.3c-4.6 4.6-12.1 4.6-16.8 0L256 295.1l-61.4 61.4c-4.6 4.6-12.1 4.6-16.8 0l-22.3-22.3c-4.6-4.6-4.6-12.1 0-16.8l61.4-61.4-61.4-61.4c-4.6-4.6-4.6-12.1 0-16.8l22.3-22.3c4.6-4.6 12.1-4.6 16.8 0l61.4 61.4 61.4-61.4c4.6-4.6 12.1-4.6 16.8 0l22.3 22.3c4.7 4.6 4.7 12.1 0 16.8z" + } + } + }, + "window-maximize": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2d0", + "label": "Window Maximize", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16 160H64v-84c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12v84z" + }, + "regular": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V192h416v234z" + } + } + }, + "window-minimize": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2d1", + "label": "Window Minimize", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 352H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48z" + }, + "regular": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M480 480H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h448c17.7 0 32 14.3 32 32s-14.3 32-32 32z" + } + } + }, + "window-restore": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2d2", + "label": "Window Restore", + "svg": { + "solid": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M512 48v288c0 26.5-21.5 48-48 48h-48V176c0-44.1-35.9-80-80-80H128V48c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zM384 176v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zm-68 28c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v52h252v-52z" + }, + "regular": { + "last_modified": 1502397066000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M464 0H144c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-96 464H48V256h320v208zm96-96h-48V144c0-26.5-21.5-48-48-48H144V48h320v320z" + } + } + }, + "windows": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "microsoft" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f17a", + "label": "Windows", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M0 93.7l183.6-25.3v177.4H0V93.7zm0 324.6l183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z" + } + } + }, + "wine-glass": { + "changes": [ + "5.0.9", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f4e3", + "label": "Wine Glass", + "svg": { + "solid": { + "last_modified": 1529520111710, + "raw": "", + "viewBox": [ + "0", + "0", + "288", + "512" + ], + "width": 288, + "height": 512, + "path": "M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40z" + } + } + }, + "wine-glass-alt": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "solid" + ], + "unicode": "f5ce", + "label": "Wine Glass-alt", + "svg": { + "solid": { + "last_modified": 1529520111710, + "raw": "", + "viewBox": [ + "0", + "0", + "288", + "512" + ], + "width": 288, + "height": 512, + "path": "M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM61.75 48h164.5l7.17 80H54.58l7.17-80z" + } + } + }, + "wix": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5cf", + "label": "Wix", + "svg": { + "brands": { + "last_modified": 1529514897200, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M393.38 131.69c0 13.03 2.08 32.69-28.68 43.83-9.52 3.45-15.95 9.66-15.95 9.66 0-31 4.72-42.22 17.4-48.86 9.75-5.11 27.23-4.63 27.23-4.63zm-115.8 35.54l-34.24 132.66-28.48-108.57c-7.69-31.99-20.81-48.53-48.43-48.53-27.37 0-40.66 16.18-48.43 48.53L89.52 299.89 55.28 167.23C49.73 140.51 23.86 128.96 0 131.96l65.57 247.93s21.63 1.56 32.46-3.96c14.22-7.25 20.98-12.84 29.59-46.57 7.67-30.07 29.11-118.41 31.12-124.7 4.76-14.94 11.09-13.81 15.4 0 1.97 6.3 23.45 94.63 31.12 124.7 8.6 33.73 15.37 39.32 29.59 46.57 10.82 5.52 32.46 3.96 32.46 3.96l65.57-247.93c-24.42-3.07-49.82 8.93-55.3 35.27zm115.78 5.21s-4.1 6.34-13.46 11.57c-6.01 3.36-11.78 5.64-17.97 8.61-15.14 7.26-13.18 13.95-13.18 35.2v152.07s16.55 2.09 27.37-3.43c13.93-7.1 17.13-13.95 17.26-44.78V181.41l-.02.01v-8.98zm163.44 84.08L640 132.78s-35.11-5.98-52.5 9.85c-13.3 12.1-24.41 29.55-54.18 72.47-.47.73-6.25 10.54-13.07 0-29.29-42.23-40.8-60.29-54.18-72.47-17.39-15.83-52.5-9.85-52.5-9.85l83.2 123.74-82.97 123.36s36.57 4.62 53.95-11.21c11.49-10.46 17.58-20.37 52.51-70.72 6.81-10.52 12.57-.77 13.07 0 29.4 42.38 39.23 58.06 53.14 70.72 17.39 15.83 53.32 11.21 53.32 11.21L556.8 256.52z" + } + } + }, + "wolf-pack-battalion": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f514", + "label": "Wolf Pack-battalion", + "svg": { + "brands": { + "last_modified": 1525376442523, + "raw": "", + "viewBox": [ + "0", + "0", + "456.58", + "512" + ], + "width": 456, + "height": 512, + "path": "M239.73 471.53l10.56 15.84 5.28-12.32 5.28 7.04V512c21.06-7.92 21.11-66.86 25.51-97.21 4.62-31.89-.88-92.81 81.37-149.11-8.88-23.61-12-49.43-2.64-80.05 27.87 3.34 53.94 10.58 63.34 54.1l-30.35 8.36c11.15 23.04 17.01 46.76 13.2 72.14L384 313.18l-6.16 33.43-18.47-7.04-8.8 33.43-19.35-7.04 26.39 21.11 8.8-28.15 24.63 5.28 7.04-35.63 26.39 14.52c.25-20.02 6.97-58.06-8.8-84.45l26.39 5.28c3.99-22.07-2.38-39.21-7.92-56.74l22.43 9.68c-.44-25.07-29.94-56.79-61.58-58.5-20.22-1.09-56.74-25.17-54.1-51.9 1.96-19.87 17.45-42.62 43.11-49.7-43.99 36.51-9.68 67.3 5.28 73.46 4.4-11.44 17.54-69.08 0-130.2-40.47 22.87-89.73 65.1-93.25 147.79l-58.06 38.71-3.52 93.25 107.33-59.82 7.04 7.04-17.59 3.52-43.99 38.71-15.84-5.28-28.15 49.26-3.52 119.64 21.11 15.84-32.55 15.84-32.55-15.84 21.11-15.84-3.52-119.64-28.15-49.26-15.84 5.28-43.99-38.71-17.59-3.52 7.04-7.04 107.33 59.82-3.52-93.25-58.06-38.71C157.03 65.1 107.77 22.87 67.3 0c-17.54 61.12-4.4 118.76 0 130.2 14.96-6.16 49.26-36.95 5.28-73.46 25.66 7.08 41.15 29.83 43.11 49.7 2.63 26.74-33.88 50.81-54.1 51.9C29.94 160.06.44 191.78 0 216.85l22.43-9.68c-5.54 17.53-11.91 34.67-7.92 56.74l26.39-5.28c-15.76 26.39-9.05 64.43-8.8 84.45l26.39-14.52 7.04 35.63 24.63-5.28 8.8 28.15 26.39-21.11-19.34 7.05-8.8-33.43-18.47 7.04-6.16-33.43-27.27 7.04c-3.82-25.38 2.05-49.1 13.2-72.14l-30.35-8.36c9.4-43.52 35.47-50.77 63.34-54.1 9.36 30.62 6.24 56.45-2.64 80.05 82.25 56.3 76.75 117.23 81.37 149.11 4.4 30.35 4.45 89.29 25.51 97.21v-29.91l5.28-7.04 5.28 12.32 10.56-15.84 11.44 21.11 11.43-21.1zm79.17-95.01l-15.84-10.56c7.47-4.36 13.76-8.42 19.35-12.32-.6 7.26-.27 13.88-3.51 22.88zm28.15-49.26c-.4 10.94-.9 21.66-1.76 31.67-7.85-1.86-15.57-3.8-21.11-7.04 8.24-7.9 15.55-16.27 22.87-24.63zm24.63 5.28c-.02-13.43-2.05-24.21-5.28-33.43-5.38 9.09-11.23 18.18-18.47 27.27l23.75 6.16zm3.52-80.94c19.44 12.81 27.8 33.66 29.91 56.3-12.32-4.53-24.63-9.31-36.95-10.56 5.06-11.99 6.65-28.14 7.04-45.74zm-1.76-45.74c.81 14.3 1.84 28.82 1.76 42.23 19.22-8.11 29.78-9.72 43.99-14.08-10.6-18.95-27.22-25.52-45.75-28.15zM137.68 376.52l15.84-10.56c-7.47-4.36-13.76-8.42-19.35-12.32.6 7.26.27 13.88 3.51 22.88zm-28.15-49.26c.4 10.94.9 21.66 1.76 31.67 7.85-1.86 15.57-3.8 21.11-7.04-8.24-7.9-15.55-16.27-22.87-24.63zm-24.64 5.28c.02-13.43 2.05-24.21 5.28-33.43 5.38 9.09 11.23 18.18 18.47 27.27l-23.75 6.16zm-3.52-80.94c-19.44 12.81-27.8 33.66-29.91 56.3 12.32-4.53 24.63-9.31 36.95-10.56-5.05-11.99-6.65-28.14-7.04-45.74zm1.76-45.74c-.81 14.3-1.84 28.82-1.76 42.23-19.22-8.11-29.78-9.72-43.99-14.08 10.61-18.95 27.22-25.52 45.75-28.15z" + } + } + }, + "won-sign": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "krw", + "krw" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f159", + "label": "Won Sign", + "svg": { + "solid": { + "last_modified": 1501873838000, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M564 192c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-48.028l18.572-80.61c1.732-7.518-3.978-14.694-11.693-14.694h-46.107a11.998 11.998 0 0 0-11.736 9.5L450.73 128H340.839l-19.725-85.987a12 12 0 0 0-11.696-9.317H265.43a12 12 0 0 0-11.687 9.277L233.696 128H124.975L107.5 42.299a12 12 0 0 0-11.758-9.602H53.628c-7.686 0-13.39 7.124-11.709 14.624L60 128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h62.342l7.171 32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h83.856l40.927 182.624A12 12 0 0 0 148.492 480h56.767c5.583 0 10.428-3.85 11.689-9.288L259.335 288h55.086l42.386 182.712A12 12 0 0 0 368.496 480h56.826a12 12 0 0 0 11.694-9.306L479.108 288H564c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-70.146l7.373-32H564zm-425.976 0h80.757l-7.457 32h-66.776l-6.524-32zm45.796 150.029c-6.194 25.831-6.758 47.25-7.321 47.25h-1.126s-1.689-22.05-6.758-47.25L157.599 288h38.812l-12.591 54.029zM274.182 224l1.996-8.602c1.856-7.962 3.457-15.968 4.803-23.398h11.794c1.347 7.43 2.947 15.436 4.803 23.398l1.996 8.602h-25.392zm130.959 118.029c-5.068 25.2-6.758 47.25-6.758 47.25h-1.126c-.563 0-1.126-21.42-7.321-47.25L377.542 288h39.107l-11.508 54.029zM430.281 224h-67.42l-7.34-32h81.577l-6.817 32z" + } + } + }, + "wordpress": { + "changes": [ + "4.1", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f19a", + "label": "WordPress Logo", + "svg": { + "brands": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z" + } + } + }, + "wordpress-simple": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f411", + "label": "Wordpress Simple", + "svg": { + "brands": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8zM33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256zm223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6zm30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3-80.7-239.6zm81.4 297.2l68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7z" + } + } + }, + "wpbeginner": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f297", + "label": "WPBeginner", + "svg": { + "brands": { + "last_modified": 1501102193000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M462.799 322.374C519.01 386.682 466.961 480 370.944 480c-39.602 0-78.824-17.687-100.142-50.04-6.887.356-22.702.356-29.59 0C219.848 462.381 180.588 480 141.069 480c-95.49 0-148.348-92.996-91.855-157.626C-29.925 190.523 80.479 32 256.006 32c175.632 0 285.87 158.626 206.793 290.374zm-339.647-82.972h41.529v-58.075h-41.529v58.075zm217.18 86.072v-23.839c-60.506 20.915-132.355 9.198-187.589-33.971l.246 24.897c51.101 46.367 131.746 57.875 187.343 32.913zm-150.753-86.072h166.058v-58.075H189.579v58.075z" + } + } + }, + "wpexplorer": { + "changes": [ + "4.7", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2de", + "label": "WPExplorer", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M512 256c0 141.2-114.7 256-256 256C114.8 512 0 397.3 0 256S114.7 0 256 0s256 114.7 256 256zm-32 0c0-123.2-100.3-224-224-224C132.5 32 32 132.5 32 256s100.5 224 224 224 224-100.5 224-224zM160.9 124.6l86.9 37.1-37.1 86.9-86.9-37.1 37.1-86.9zm110 169.1l46.6 94h-14.6l-50-100-48.9 100h-14l51.1-106.9-22.3-9.4 6-14 68.6 29.1-6 14.3-16.5-7.1zm-11.8-116.3l68.6 29.4-29.4 68.3L230 246l29.1-68.6zm80.3 42.9l54.6 23.1-23.4 54.3-54.3-23.1 23.1-54.3z" + } + } + }, + "wpforms": { + "changes": [ + "4.6", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f298", + "label": "WPForms", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 75.2v361.7c0 24.3-19 43.2-43.2 43.2H43.2C19.3 480 0 461.4 0 436.8V75.2C0 51.1 18.8 32 43.2 32h361.7c24 0 43.1 18.8 43.1 43.2zm-37.3 361.6V75.2c0-3-2.6-5.8-5.8-5.8h-9.3L285.3 144 224 94.1 162.8 144 52.5 69.3h-9.3c-3.2 0-5.8 2.8-5.8 5.8v361.7c0 3 2.6 5.8 5.8 5.8h361.7c3.2.1 5.8-2.7 5.8-5.8zM150.2 186v37H76.7v-37h73.5zm0 74.4v37.3H76.7v-37.3h73.5zm11.1-147.3l54-43.7H96.8l64.5 43.7zm210 72.9v37h-196v-37h196zm0 74.4v37.3h-196v-37.3h196zm-84.6-147.3l64.5-43.7H232.8l53.9 43.7zM371.3 335v37.3h-99.4V335h99.4z" + } + } + }, + "wrench": { + "changes": [ + "2", + "5.0.0", + "5.0.13" + ], + "ligatures": [], + "search": { + "terms": [ + "fix", + "settings", + "spanner", + "tool", + "update" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0ad", + "label": "Wrench", + "svg": { + "solid": { + "last_modified": 1525967154581, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z" + } + } + }, + "x-ray": { + "changes": [ + "5.0.7" + ], + "ligatures": [], + "search": { + "terms": [ + "radiological images", + "radiology" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f497", + "label": "X-Ray", + "svg": { + "solid": { + "last_modified": 1521653821463, + "raw": "", + "viewBox": [ + "0", + "0", + "640", + "512" + ], + "width": 640, + "height": 512, + "path": "M240 384c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm160 32c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zM624 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zm0 448h-48V96H64v352H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM480 248c0 4.4-3.6 8-8 8H336v32h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48v-16h-64v16c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48h64v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-32H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h136v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-24c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v24h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h136c4.4 0 8 3.6 8 8v16z" + } + } + }, + "xbox": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f412", + "label": "Xbox", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "512", + "512" + ], + "width": 512, + "height": 512, + "path": "M369.9 318.2c44.3 54.3 64.7 98.8 54.4 118.7-7.9 15.1-56.7 44.6-92.6 55.9-29.6 9.3-68.4 13.3-100.4 10.2-38.2-3.7-76.9-17.4-110.1-39C93.3 445.8 87 438.3 87 423.4c0-29.9 32.9-82.3 89.2-142.1 32-33.9 76.5-73.7 81.4-72.6 9.4 2.1 84.3 75.1 112.3 109.5zM188.6 143.8c-29.7-26.9-58.1-53.9-86.4-63.4-15.2-5.1-16.3-4.8-28.7 8.1-29.2 30.4-53.5 79.7-60.3 122.4-5.4 34.2-6.1 43.8-4.2 60.5 5.6 50.5 17.3 85.4 40.5 120.9 9.5 14.6 12.1 17.3 9.3 9.9-4.2-11-.3-37.5 9.5-64 14.3-39 53.9-112.9 120.3-194.4zm311.6 63.5C483.3 127.3 432.7 77 425.6 77c-7.3 0-24.2 6.5-36 13.9-23.3 14.5-41 31.4-64.3 52.8C367.7 197 427.5 283.1 448.2 346c6.8 20.7 9.7 41.1 7.4 52.3-1.7 8.5-1.7 8.5 1.4 4.6 6.1-7.7 19.9-31.3 25.4-43.5 7.4-16.2 15-40.2 18.6-58.7 4.3-22.5 3.9-70.8-.8-93.4zM141.3 43C189 40.5 251 77.5 255.6 78.4c.7.1 10.4-4.2 21.6-9.7 63.9-31.1 94-25.8 107.4-25.2-63.9-39.3-152.7-50-233.9-11.7-23.4 11.1-24 11.9-9.4 11.2z" + } + } + }, + "xing": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f168", + "label": "Xing", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M162.7 210c-1.8 3.3-25.2 44.4-70.1 123.5-4.9 8.3-10.8 12.5-17.7 12.5H9.8c-7.7 0-12.1-7.5-8.5-14.4l69-121.3c.2 0 .2-.1 0-.3l-43.9-75.6c-4.3-7.8.3-14.1 8.5-14.1H100c7.3 0 13.3 4.1 18 12.2l44.7 77.5zM382.6 46.1l-144 253v.3L330.2 466c3.9 7.1.2 14.1-8.5 14.1h-65.2c-7.6 0-13.6-4-18-12.2l-92.4-168.5c3.3-5.8 51.5-90.8 144.8-255.2 4.6-8.1 10.4-12.2 17.5-12.2h65.7c8 0 12.3 6.7 8.5 14.1z" + } + } + }, + "xing-square": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f169", + "label": "Xing Square", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM140.4 320.2H93.8c-5.5 0-8.7-5.3-6-10.3l49.3-86.7c.1 0 .1-.1 0-.2l-31.4-54c-3-5.6.2-10.1 6-10.1h46.6c5.2 0 9.5 2.9 12.9 8.7l31.9 55.3c-1.3 2.3-18 31.7-50.1 88.2-3.5 6.2-7.7 9.1-12.6 9.1zm219.7-214.1L257.3 286.8v.2l65.5 119c2.8 5.1.1 10.1-6 10.1h-46.6c-5.5 0-9.7-2.9-12.9-8.7l-66-120.3c2.3-4.1 36.8-64.9 103.4-182.3 3.3-5.8 7.4-8.7 12.5-8.7h46.9c5.7-.1 8.8 4.7 6 10z" + } + } + }, + "y-combinator": { + "changes": [ + "4.4", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f23b", + "label": "Y Combinator", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M448 32v448H0V32h448zM236 287.5L313.5 142h-32.7L235 233c-4.7 9.3-9 18.3-12.8 26.8L210 233l-45.2-91h-35l76.7 143.8v94.5H236v-92.8z" + } + } + }, + "yahoo": { + "changes": [ + "4.1", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f19e", + "label": "Yahoo Logo", + "svg": { + "brands": { + "last_modified": 1515426582003, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M252 292l4 220c-12.7-2.2-23.5-3.9-32.3-3.9-8.4 0-19.2 1.7-32.3 3.9l4-220C140.4 197.2 85 95.2 21.4 0c11.9 3.1 23 3.9 33.2 3.9 9 0 20.4-.8 34.1-3.9 40.9 72.2 82.1 138.7 135 225.5C261 163.9 314.8 81.4 358.6 0c11.1 2.9 22 3.9 32.9 3.9 11.5 0 23.2-1 35-3.9C392.1 47.9 294.9 216.9 252 292z" + } + } + }, + "yandex": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f413", + "label": "Yandex", + "svg": { + "brands": { + "last_modified": 1501873838000, + "raw": "", + "viewBox": [ + "0", + "0", + "256", + "512" + ], + "width": 256, + "height": 512, + "path": "M153.1 315.8L65.7 512H2l96-209.8c-45.1-22.9-75.2-64.4-75.2-141.1C22.7 53.7 90.8 0 171.7 0H254v512h-55.1V315.8h-45.8zm45.8-269.3h-29.4c-44.4 0-87.4 29.4-87.4 114.6 0 82.3 39.4 108.8 87.4 108.8h29.4V46.5z" + } + } + }, + "yandex-international": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f414", + "label": "Yandex International", + "svg": { + "brands": { + "last_modified": 1501873838000, + "raw": "", + "viewBox": [ + "0", + "0", + "320", + "512" + ], + "width": 320, + "height": 512, + "path": "M129.5 512V345.9L18.5 48h55.8l81.8 229.7L250.2 0h51.3L180.8 347.8V512h-51.3z" + } + } + }, + "yelp": { + "changes": [ + "4.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1e9", + "label": "Yelp", + "svg": { + "brands": { + "last_modified": 1500927880000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M136.9 328c-1 .3-109.2 35.7-115.8 35.7-15.2-.9-18.5-16.2-19.9-31.2-1.5-14.2-1.4-29.8.3-46.8 1.9-18.8 5.5-45.1 24.2-44 4.8 0 67.1 25.9 112.7 44.4 17.1 6.8 18.6 35.8-1.5 41.9zm57.9-113.9c1.8 38.2-25.5 48.5-47.2 14.3L41.3 60.4c-1.5-6.6.3-12.4 5.3-17.4C62.2 26.5 146 3.2 168.1 8.9c7.5 1.9 12.1 6.1 13.8 12.6 1.3 8.3 11.5 167.4 12.9 192.6zm-1.4 164.8c0 4.6.2 116.4-1.7 121.5-2.3 6-7 9.7-14.3 11.2-10.1 1.7-27.1-1.9-51-10.7-22-8.1-56.7-21.5-49.3-42.5 2.8-6.9 51.4-62.8 77.3-93.6 12-15.2 39.8-5.5 39 14.1zm180.2-117.8c-5.6 3.7-110.8 28.2-118.1 30.6l.3-.6c-18.1 4.7-35.4-18.5-23.3-34.6 3.7-3.7 65.9-92.4 72.8-97 5.2-3.6 11.3-3.8 18.3-.6 18.4 8.8 55.1 63.1 57.4 84.6-.1 2.9 1.2 11.7-7.4 17.6zm10.1 130.7c-2.7 20.6-44.5 73.4-63.8 81-6.9 2.6-12.9 2-17.7-2-5-3.5-61.8-97.1-64.9-102.3-10.9-16.2 6.8-39.8 25.6-33.2 0 0 110.5 35.7 114.7 39.4 5.2 4.1 7.2 9.8 6.1 17.1z" + } + } + }, + "yen-sign": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "jpy", + "jpy" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f157", + "label": "Yen Sign", + "svg": { + "solid": { + "last_modified": 1501873838000, + "raw": "", + "viewBox": [ + "0", + "0", + "384", + "512" + ], + "width": 384, + "height": 512, + "path": "M351.208 32h-65.277a12 12 0 0 0-10.778 6.724l-55.39 113.163c-14.513 34.704-27.133 71.932-27.133 71.932h-1.262s-12.62-37.228-27.133-71.932l-55.39-113.163A11.997 11.997 0 0 0 98.068 32H32.792c-9.057 0-14.85 9.65-10.59 17.643L102.322 200H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h88.162L152 293.228V320H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h108v92c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-92h108c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12H232v-26.772L251.838 256H340c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12h-58.322l80.12-150.357C366.058 41.65 360.266 32 351.208 32z" + } + } + }, + "yoast": { + "changes": [ + "4.6", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2b1", + "label": "Yoast", + "svg": { + "brands": { + "last_modified": 1515426582003, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M91.3 76h186l-7 18.9h-179c-39.7 0-71.9 31.6-71.9 70.3v205.4c0 35.4 24.9 70.3 84 70.3V460H91.3C41.2 460 0 419.8 0 370.5V165.2C0 115.9 40.7 76 91.3 76zm229.1-56h66.5C243.1 398.1 241.2 418.9 202.2 459.3c-20.8 21.6-49.3 31.7-78.3 32.7v-51.1c49.2-7.7 64.6-49.9 64.6-75.3 0-20.1.6-12.6-82.1-223.2h61.4L218.2 299 320.4 20zM448 161.5V460H234c6.6-9.6 10.7-16.3 12.1-19.4h182.5V161.5c0-32.5-17.1-51.9-48.2-62.9l6.7-17.6c41.7 13.6 60.9 43.1 60.9 80.5z" + } + } + }, + "youtube": { + "changes": [ + "3.2", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "film", + "video", + "youtube-play", + "youtube-square" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f167", + "label": "YouTube", + "svg": { + "brands": { + "last_modified": 1511282001106, + "raw": "", + "viewBox": [ + "0", + "0", + "576", + "512" + ], + "width": 576, + "height": 512, + "path": "M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z" + } + } + }, + "youtube-square": { + "changes": [ + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f431", + "label": "YouTube Square", + "svg": { + "brands": { + "last_modified": 1515426582003, + "raw": "", + "viewBox": [ + "0", + "0", + "448", + "512" + ], + "width": 448, + "height": 512, + "path": "M186.8 202.1l95.2 54.1-95.2 54.1V202.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-42 176.3s0-59.6-7.6-88.2c-4.2-15.8-16.5-28.2-32.2-32.4C337.9 128 224 128 224 128s-113.9 0-142.2 7.7c-15.7 4.2-28 16.6-32.2 32.4-7.6 28.5-7.6 88.2-7.6 88.2s0 59.6 7.6 88.2c4.2 15.8 16.5 27.7 32.2 31.9C110.1 384 224 384 224 384s113.9 0 142.2-7.7c15.7-4.2 28-16.1 32.2-31.9 7.6-28.5 7.6-88.1 7.6-88.1z" + } + } + } +} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/metadata/icons.yml b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/metadata/icons.yml new file mode 100644 index 0000000000..d747a381e1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/metadata/icons.yml @@ -0,0 +1,13048 @@ +500px: + changes: + - '4.4' + - 5.0.0 + label: 500px + search: + terms: [] + styles: + - brands + unicode: f26e +accessible-icon: + changes: + - 5.0.0 + label: Accessible Icon + search: + terms: + - accessibility + - handicap + - person + - wheelchair + - wheelchair-alt + styles: + - brands + unicode: f368 +accusoft: + changes: + - 5.0.0 + label: Accusoft + search: + terms: [] + styles: + - brands + unicode: f369 +address-book: + changes: + - '4.7' + - 5.0.0 + - 5.0.3 + label: Address Book + search: + terms: [] + styles: + - solid + - regular + unicode: f2b9 +address-card: + changes: + - '4.7' + - 5.0.0 + - 5.0.3 + label: Address Card + search: + terms: [] + styles: + - solid + - regular + unicode: f2bb +adjust: + changes: + - '1' + - 5.0.0 + label: adjust + search: + terms: + - contrast + styles: + - solid + unicode: f042 +adn: + changes: + - '3.2' + - 5.0.0 + label: App.net + search: + terms: [] + styles: + - brands + unicode: f170 +adversal: + changes: + - 5.0.0 + label: Adversal + search: + terms: [] + styles: + - brands + unicode: f36a +affiliatetheme: + changes: + - 5.0.0 + label: affiliatetheme + search: + terms: [] + styles: + - brands + unicode: f36b +algolia: + changes: + - 5.0.0 + label: Algolia + search: + terms: [] + styles: + - brands + unicode: f36c +align-center: + changes: + - '1' + - 5.0.0 + label: align-center + search: + terms: + - middle + - text + styles: + - solid + unicode: f037 +align-justify: + changes: + - '1' + - 5.0.0 + label: align-justify + search: + terms: + - text + styles: + - solid + unicode: f039 +align-left: + changes: + - '1' + - 5.0.0 + label: align-left + search: + terms: + - text + styles: + - solid + unicode: f036 +align-right: + changes: + - '1' + - 5.0.0 + label: align-right + search: + terms: + - text + styles: + - solid + unicode: f038 +allergies: + changes: + - 5.0.7 + label: Allergies + search: + terms: + - freckles + - hand + - intolerances + - pox + - spots + styles: + - solid + unicode: f461 +amazon: + changes: + - '4.4' + - 5.0.0 + label: Amazon + search: + terms: [] + styles: + - brands + unicode: f270 +amazon-pay: + changes: + - 5.0.2 + label: Amazon Pay + search: + terms: [] + styles: + - brands + unicode: f42c +ambulance: + changes: + - '3' + - 5.0.0 + - 5.0.7 + label: ambulance + search: + terms: + - help + - machine + - support + - vehicle + styles: + - solid + unicode: f0f9 +american-sign-language-interpreting: + changes: + - '4.6' + - 5.0.0 + label: American Sign Language Interpreting + search: + terms: [] + styles: + - solid + unicode: f2a3 +amilia: + changes: + - 5.0.0 + label: Amilia + search: + terms: [] + styles: + - brands + unicode: f36d +anchor: + changes: + - '3.1' + - 5.0.0 + label: Anchor + search: + terms: + - link + styles: + - solid + unicode: f13d +android: + changes: + - '3.2' + - 5.0.0 + label: Android + search: + terms: + - robot + styles: + - brands + unicode: f17b +angellist: + changes: + - '4.2' + - 5.0.0 + label: AngelList + search: + terms: [] + styles: + - brands + unicode: f209 +angle-double-down: + changes: + - '3' + - 5.0.0 + label: Angle Double Down + search: + terms: + - arrows + styles: + - solid + unicode: f103 +angle-double-left: + changes: + - '3' + - 5.0.0 + label: Angle Double Left + search: + terms: + - arrows + - back + - laquo + - previous + - quote + styles: + - solid + unicode: f100 +angle-double-right: + changes: + - '3' + - 5.0.0 + label: Angle Double Right + search: + terms: + - arrows + - forward + - next + - quote + - raquo + styles: + - solid + unicode: f101 +angle-double-up: + changes: + - '3' + - 5.0.0 + label: Angle Double Up + search: + terms: + - arrows + styles: + - solid + unicode: f102 +angle-down: + changes: + - '3' + - 5.0.0 + label: angle-down + search: + terms: + - arrow + styles: + - solid + unicode: f107 +angle-left: + changes: + - '3' + - 5.0.0 + label: angle-left + search: + terms: + - arrow + - back + - previous + styles: + - solid + unicode: f104 +angle-right: + changes: + - '3' + - 5.0.0 + label: angle-right + search: + terms: + - arrow + - forward + - next + styles: + - solid + unicode: f105 +angle-up: + changes: + - '3' + - 5.0.0 + label: angle-up + search: + terms: + - arrow + styles: + - solid + unicode: f106 +angry: + changes: + - 5.1.0 + label: Angry Face + search: + terms: + - disapprove + - emoticon + - face + - mad + - upset + styles: + - solid + - regular + unicode: f556 +angrycreative: + changes: + - 5.0.0 + label: Angry Creative + search: + terms: [] + styles: + - brands + unicode: f36e +angular: + changes: + - 5.0.0 + label: Angular + search: + terms: [] + styles: + - brands + unicode: f420 +app-store: + changes: + - 5.0.0 + label: App Store + search: + terms: [] + styles: + - brands + unicode: f36f +app-store-ios: + changes: + - 5.0.0 + label: iOS App Store + search: + terms: [] + styles: + - brands + unicode: f370 +apper: + changes: + - 5.0.0 + label: Apper Systems AB + search: + terms: [] + styles: + - brands + unicode: f371 +apple: + changes: + - '3.2' + - 5.0.0 + - 5.0.7 + label: Apple + search: + terms: + - food + - fruit + - osx + styles: + - brands + unicode: f179 +apple-pay: + changes: + - 5.0.0 + label: Apple Pay + search: + terms: [] + styles: + - brands + unicode: f415 +archive: + changes: + - '3.2' + - 5.0.0 + - 5.0.9 + label: Archive + search: + terms: + - box + - package + - storage + styles: + - solid + unicode: f187 +archway: + changes: + - 5.1.0 + label: Archway + search: + terms: + - arc + - monument + - road + - street + styles: + - solid + unicode: f557 +arrow-alt-circle-down: + changes: + - 5.0.0 + label: Alternate Arrow Circle Down + search: + terms: + - arrow-circle-o-down + - download + styles: + - solid + - regular + unicode: f358 +arrow-alt-circle-left: + changes: + - 5.0.0 + label: Alternate Arrow Circle Left + search: + terms: + - arrow-circle-o-left + - back + - previous + styles: + - solid + - regular + unicode: f359 +arrow-alt-circle-right: + changes: + - 5.0.0 + label: Alternate Arrow Circle Right + search: + terms: + - arrow-circle-o-right + - forward + - next + styles: + - solid + - regular + unicode: f35a +arrow-alt-circle-up: + changes: + - 5.0.0 + label: Alternate Arrow Circle Up + search: + terms: + - arrow-circle-o-up + styles: + - solid + - regular + unicode: f35b +arrow-circle-down: + changes: + - '2' + - 5.0.0 + label: Arrow Circle Down + search: + terms: + - download + styles: + - solid + unicode: f0ab +arrow-circle-left: + changes: + - '2' + - 5.0.0 + label: Arrow Circle Left + search: + terms: + - back + - previous + styles: + - solid + unicode: f0a8 +arrow-circle-right: + changes: + - '2' + - 5.0.0 + label: Arrow Circle Right + search: + terms: + - forward + - next + styles: + - solid + unicode: f0a9 +arrow-circle-up: + changes: + - '2' + - 5.0.0 + label: Arrow Circle Up + search: + terms: [] + styles: + - solid + unicode: f0aa +arrow-down: + changes: + - '1' + - 5.0.0 + label: arrow-down + search: + terms: + - download + styles: + - solid + unicode: f063 +arrow-left: + changes: + - '1' + - 5.0.0 + label: arrow-left + search: + terms: + - back + - previous + styles: + - solid + unicode: f060 +arrow-right: + changes: + - '1' + - 5.0.0 + label: arrow-right + search: + terms: + - forward + - next + styles: + - solid + unicode: f061 +arrow-up: + changes: + - '1' + - 5.0.0 + label: arrow-up + search: + terms: [] + styles: + - solid + unicode: f062 +arrows-alt: + changes: + - '2' + - 5.0.0 + label: Alternate Arrows + search: + terms: + - arrow + - arrows + - bigger + - enlarge + - expand + - fullscreen + - move + - position + - reorder + - resize + styles: + - solid + unicode: f0b2 +arrows-alt-h: + changes: + - 5.0.0 + label: Alternate Arrows Horizontal + search: + terms: + - arrows-h + - resize + styles: + - solid + unicode: f337 +arrows-alt-v: + changes: + - 5.0.0 + label: Alternate Arrows Vertical + search: + terms: + - arrows-v + - resize + styles: + - solid + unicode: f338 +assistive-listening-systems: + changes: + - '4.6' + - 5.0.0 + label: Assistive Listening Systems + search: + terms: [] + styles: + - solid + unicode: f2a2 +asterisk: + changes: + - '1' + - 5.0.0 + label: asterisk + search: + terms: + - details + styles: + - solid + unicode: f069 +asymmetrik: + changes: + - 5.0.0 + label: 'Asymmetrik, Ltd.' + search: + terms: [] + styles: + - brands + unicode: f372 +at: + changes: + - '4.2' + - 5.0.0 + label: At + search: + terms: + - e-mail + - email + styles: + - solid + unicode: f1fa +atlas: + changes: + - 5.1.0 + label: Atlas + search: + terms: + - book + - directions + - geography + - map + - wayfinding + styles: + - solid + unicode: f558 +audible: + changes: + - 5.0.0 + label: Audible + search: + terms: [] + styles: + - brands + unicode: f373 +audio-description: + changes: + - '4.6' + - 5.0.0 + label: Audio Description + search: + terms: [] + styles: + - solid + unicode: f29e +autoprefixer: + changes: + - 5.0.0 + label: Autoprefixer + search: + terms: [] + styles: + - brands + unicode: f41c +avianex: + changes: + - 5.0.0 + label: avianex + search: + terms: [] + styles: + - brands + unicode: f374 +aviato: + changes: + - 5.0.0 + label: Aviato + search: + terms: [] + styles: + - brands + unicode: f421 +award: + changes: + - 5.1.0 + label: Award + search: + terms: + - honor + - praise + - prize + - recognition + - ribbon + styles: + - solid + unicode: f559 +aws: + changes: + - 5.0.0 + - 5.1.0 + label: Amazon Web Services (AWS) + search: + terms: [] + styles: + - brands + unicode: f375 +backspace: + changes: + - 5.1.0 + label: Backspace + search: + terms: + - command + - delete + - keyboard + - undo + styles: + - solid + unicode: f55a +backward: + changes: + - '1' + - 5.0.0 + label: backward + search: + terms: + - previous + - rewind + styles: + - solid + unicode: f04a +balance-scale: + changes: + - '4.4' + - 5.0.0 + - 5.0.13 + label: Balance Scale + search: + terms: + - balanced + - justice + - legal + - measure + - weight + styles: + - solid + unicode: f24e +ban: + changes: + - '1' + - 5.0.0 + label: ban + search: + terms: + - abort + - ban + - block + - cancel + - delete + - hide + - prohibit + - remove + - stop + - trash + styles: + - solid + unicode: f05e +band-aid: + changes: + - 5.0.7 + label: Band-Aid + search: + terms: + - bandage + - boo boo + - ouch + styles: + - solid + unicode: f462 +bandcamp: + changes: + - '4.7' + - 5.0.0 + label: Bandcamp + search: + terms: [] + styles: + - brands + unicode: f2d5 +barcode: + changes: + - '1' + - 5.0.0 + label: barcode + search: + terms: + - scan + styles: + - solid + unicode: f02a +bars: + changes: + - '2' + - 5.0.0 + label: Bars + search: + terms: + - checklist + - drag + - hamburger + - list + - menu + - nav + - navigation + - ol + - reorder + - settings + - todo + - ul + styles: + - solid + unicode: f0c9 +baseball-ball: + changes: + - 5.0.5 + label: Baseball Ball + search: + terms: [] + styles: + - solid + unicode: f433 +basketball-ball: + changes: + - 5.0.5 + label: Basketball Ball + search: + terms: [] + styles: + - solid + unicode: f434 +bath: + changes: + - '4.7' + - 5.0.0 + label: Bath + search: + terms: [] + styles: + - solid + unicode: f2cd +battery-empty: + changes: + - '4.4' + - 5.0.0 + label: Battery Empty + search: + terms: + - power + - status + styles: + - solid + unicode: f244 +battery-full: + changes: + - '4.4' + - 5.0.0 + label: Battery Full + search: + terms: + - power + - status + styles: + - solid + unicode: f240 +battery-half: + changes: + - '4.4' + - 5.0.0 + label: Battery 1/2 Full + search: + terms: + - power + - status + styles: + - solid + unicode: f242 +battery-quarter: + changes: + - '4.4' + - 5.0.0 + label: Battery 1/4 Full + search: + terms: + - power + - status + styles: + - solid + unicode: f243 +battery-three-quarters: + changes: + - '4.4' + - 5.0.0 + label: Battery 3/4 Full + search: + terms: + - power + - status + styles: + - solid + unicode: f241 +bed: + changes: + - '4.3' + - 5.0.0 + - 5.1.0 + label: Bed + search: + terms: + - lodging + - sleep + - travel + styles: + - solid + unicode: f236 +beer: + changes: + - '3' + - 5.0.0 + label: beer + search: + terms: + - alcohol + - bar + - drink + - liquor + - mug + - stein + styles: + - solid + unicode: f0fc +behance: + changes: + - '4.1' + - 5.0.0 + label: Behance + search: + terms: [] + styles: + - brands + unicode: f1b4 +behance-square: + changes: + - '4.1' + - 5.0.0 + - 5.0.3 + label: Behance Square + search: + terms: [] + styles: + - brands + unicode: f1b5 +bell: + changes: + - '2' + - 5.0.0 + label: bell + search: + terms: + - alert + - notification + - reminder + styles: + - solid + - regular + unicode: f0f3 +bell-slash: + changes: + - '4.2' + - 5.0.0 + label: Bell Slash + search: + terms: [] + styles: + - solid + - regular + unicode: f1f6 +bezier-curve: + changes: + - 5.1.0 + label: Bezier Curve + search: + terms: + - curves + - illustrator + - lines + - path + - vector + styles: + - solid + unicode: f55b +bicycle: + changes: + - '4.2' + - 5.0.0 + label: Bicycle + search: + terms: + - bike + - gears + - transportation + - vehicle + styles: + - solid + unicode: f206 +bimobject: + changes: + - 5.0.0 + label: BIMobject + search: + terms: [] + styles: + - brands + unicode: f378 +binoculars: + changes: + - '4.2' + - 5.0.0 + label: Binoculars + search: + terms: [] + styles: + - solid + unicode: f1e5 +birthday-cake: + changes: + - '4.2' + - 5.0.0 + label: Birthday Cake + search: + terms: [] + styles: + - solid + unicode: f1fd +bitbucket: + changes: + - '3.2' + - 5.0.0 + label: Bitbucket + search: + terms: + - bitbucket-square + - git + styles: + - brands + unicode: f171 +bitcoin: + changes: + - 5.0.0 + label: Bitcoin + search: + terms: [] + styles: + - brands + unicode: f379 +bity: + changes: + - 5.0.0 + label: Bity + search: + terms: [] + styles: + - brands + unicode: f37a +black-tie: + changes: + - '4.4' + - 5.0.0 + label: Font Awesome Black Tie + search: + terms: [] + styles: + - brands + unicode: f27e +blackberry: + changes: + - 5.0.0 + label: BlackBerry + search: + terms: [] + styles: + - brands + unicode: f37b +blender: + changes: + - 5.0.13 + label: Blender + search: + terms: [] + styles: + - solid + unicode: f517 +blind: + changes: + - '4.6' + - 5.0.0 + label: Blind + search: + terms: [] + styles: + - solid + unicode: f29d +blogger: + changes: + - 5.0.0 + label: Blogger + search: + terms: [] + styles: + - brands + unicode: f37c +blogger-b: + changes: + - 5.0.0 + label: Blogger B + search: + terms: [] + styles: + - brands + unicode: f37d +bluetooth: + changes: + - '4.5' + - 5.0.0 + label: Bluetooth + search: + terms: [] + styles: + - brands + unicode: f293 +bluetooth-b: + changes: + - '4.5' + - 5.0.0 + label: Bluetooth + search: + terms: [] + styles: + - brands + unicode: f294 +bold: + changes: + - '1' + - 5.0.0 + label: bold + search: + terms: [] + styles: + - solid + unicode: f032 +bolt: + changes: + - '2' + - 5.0.0 + label: Lightning Bolt + search: + terms: + - electricity + - lightning + - weather + - zap + styles: + - solid + unicode: f0e7 +bomb: + changes: + - '4.1' + - 5.0.0 + label: Bomb + search: + terms: [] + styles: + - solid + unicode: f1e2 +bong: + changes: + - 5.1.0 + label: Bong + search: + terms: + - aparatus + - cannabis + - marijuana + - pipe + - smoke + - smoking + styles: + - solid + unicode: f55c +book: + changes: + - '1' + - 5.0.0 + label: book + search: + terms: + - documentation + - read + styles: + - solid + unicode: f02d +book-open: + changes: + - 5.0.13 + - 5.1.0 + label: Book Open + search: + terms: + - flyer + - notebook + - open book + - pamphlet + - reading + styles: + - solid + unicode: f518 +bookmark: + changes: + - '1' + - 5.0.0 + label: bookmark + search: + terms: + - save + styles: + - solid + - regular + unicode: f02e +bowling-ball: + changes: + - 5.0.5 + label: Bowling Ball + search: + terms: [] + styles: + - solid + unicode: f436 +box: + changes: + - 5.0.7 + label: Box + search: + terms: + - package + styles: + - solid + unicode: f466 +box-open: + changes: + - 5.0.9 + label: Box Open + search: + terms: [] + styles: + - solid + unicode: f49e +boxes: + changes: + - 5.0.7 + label: Boxes + search: + terms: [] + styles: + - solid + unicode: f468 +braille: + changes: + - '4.6' + - 5.0.0 + label: Braille + search: + terms: [] + styles: + - solid + unicode: f2a1 +briefcase: + changes: + - '2' + - 5.0.0 + label: Briefcase + search: + terms: + - bag + - business + - luggage + - office + - work + styles: + - solid + unicode: f0b1 +briefcase-medical: + changes: + - 5.0.7 + label: Medical Briefcase + search: + terms: + - health briefcase + styles: + - solid + unicode: f469 +broadcast-tower: + changes: + - 5.0.13 + label: Broadcast Tower + search: + terms: + - airwaves + - radio + - waves + styles: + - solid + unicode: f519 +broom: + changes: + - 5.0.13 + label: Broom + search: + terms: [] + styles: + - solid + unicode: f51a +brush: + changes: + - 5.1.0 + label: Brush + search: + terms: + - bristles + - color + - handle + - painting + styles: + - solid + unicode: f55d +btc: + changes: + - '3.2' + - 5.0.0 + label: BTC + search: + terms: [] + styles: + - brands + unicode: f15a +bug: + changes: + - '3.2' + - 5.0.0 + label: Bug + search: + terms: + - insect + - report + styles: + - solid + unicode: f188 +building: + changes: + - '4.1' + - 5.0.0 + label: Building + search: + terms: + - apartment + - business + - company + - office + - work + styles: + - solid + - regular + unicode: f1ad +bullhorn: + changes: + - '2' + - 5.0.0 + label: bullhorn + search: + terms: + - announcement + - broadcast + - louder + - megaphone + - share + styles: + - solid + unicode: f0a1 +bullseye: + changes: + - '3.1' + - 5.0.0 + label: Bullseye + search: + terms: + - target + styles: + - solid + unicode: f140 +burn: + changes: + - 5.0.7 + label: Burn + search: + terms: + - energy + styles: + - solid + unicode: f46a +buromobelexperte: + changes: + - 5.0.0 + label: Büromöbel-Experte GmbH & Co. KG. + search: + terms: [] + styles: + - brands + unicode: f37f +bus: + changes: + - '4.2' + - 5.0.0 + - 5.1.0 + label: Bus + search: + terms: + - machine + - public transportation + - transportation + - vehicle + styles: + - solid + unicode: f207 +bus-alt: + changes: + - 5.1.0 + label: Bus Alt + search: + terms: + - machine + - public transportation + - transportation + - vehicle + styles: + - solid + unicode: f55e +buysellads: + changes: + - '4.3' + - 5.0.0 + label: BuySellAds + search: + terms: [] + styles: + - brands + unicode: f20d +calculator: + changes: + - '4.2' + - 5.0.0 + label: Calculator + search: + terms: [] + styles: + - solid + unicode: f1ec +calendar: + changes: + - '3.1' + - 5.0.0 + label: Calendar + search: + terms: + - calendar-o + - date + - event + - schedule + - time + - when + styles: + - solid + - regular + unicode: f133 +calendar-alt: + changes: + - '1' + - 5.0.0 + label: Alternate Calendar + search: + terms: + - calendar + - date + - event + - schedule + - time + - when + styles: + - solid + - regular + unicode: f073 +calendar-check: + changes: + - '4.4' + - 5.0.0 + label: Calendar Check + search: + terms: + - accept + - agree + - appointment + - confirm + - correct + - done + - ok + - select + - success + - todo + styles: + - solid + - regular + unicode: f274 +calendar-minus: + changes: + - '4.4' + - 5.0.0 + label: Calendar Minus + search: + terms: [] + styles: + - solid + - regular + unicode: f272 +calendar-plus: + changes: + - '4.4' + - 5.0.0 + label: Calendar Plus + search: + terms: [] + styles: + - solid + - regular + unicode: f271 +calendar-times: + changes: + - '4.4' + - 5.0.0 + label: Calendar Times + search: + terms: [] + styles: + - solid + - regular + unicode: f273 +camera: + changes: + - '1' + - 5.0.0 + label: camera + search: + terms: + - photo + - picture + - record + styles: + - solid + unicode: f030 +camera-retro: + changes: + - '1' + - 5.0.0 + label: Retro Camera + search: + terms: + - photo + - picture + - record + styles: + - solid + unicode: f083 +cannabis: + changes: + - 5.1.0 + label: Cannabis + search: + terms: + - bud + - chronic + - drugs + - endica + - endo + - ganja + - marijuana + - mary jane + - pot + - reefer + - sativa + - spliff + - weed + - whacky-tabacky + styles: + - solid + unicode: f55f +capsules: + changes: + - 5.0.7 + label: Capsules + search: + terms: + - drugs + - medicine + styles: + - solid + unicode: f46b +car: + changes: + - '4.1' + - 5.0.0 + label: Car + search: + terms: + - machine + - transportation + - vehicle + styles: + - solid + unicode: f1b9 +caret-down: + changes: + - '2' + - 5.0.0 + label: Caret Down + search: + terms: + - arrow + - dropdown + - menu + - more + - triangle down + styles: + - solid + unicode: f0d7 +caret-left: + changes: + - '2' + - 5.0.0 + label: Caret Left + search: + terms: + - arrow + - back + - previous + - triangle left + styles: + - solid + unicode: f0d9 +caret-right: + changes: + - '2' + - 5.0.0 + label: Caret Right + search: + terms: + - arrow + - forward + - next + - triangle right + styles: + - solid + unicode: f0da +caret-square-down: + changes: + - '3.2' + - 5.0.0 + label: Caret Square Down + search: + terms: + - caret-square-o-down + - dropdown + - menu + - more + styles: + - solid + - regular + unicode: f150 +caret-square-left: + changes: + - '4' + - 5.0.0 + label: Caret Square Left + search: + terms: + - back + - caret-square-o-left + - previous + styles: + - solid + - regular + unicode: f191 +caret-square-right: + changes: + - '3.2' + - 5.0.0 + label: Caret Square Right + search: + terms: + - caret-square-o-right + - forward + - next + styles: + - solid + - regular + unicode: f152 +caret-square-up: + changes: + - '3.2' + - 5.0.0 + label: Caret Square Up + search: + terms: + - caret-square-o-up + styles: + - solid + - regular + unicode: f151 +caret-up: + changes: + - '2' + - 5.0.0 + label: Caret Up + search: + terms: + - arrow + - triangle up + styles: + - solid + unicode: f0d8 +cart-arrow-down: + changes: + - '4.3' + - 5.0.0 + label: Shopping Cart Arrow Down + search: + terms: + - shopping + styles: + - solid + unicode: f218 +cart-plus: + changes: + - '4.3' + - 5.0.0 + label: Add to Shopping Cart + search: + terms: + - add + - shopping + styles: + - solid + unicode: f217 +cc-amazon-pay: + changes: + - 5.0.2 + label: Amazon Pay Credit Card + search: + terms: [] + styles: + - brands + unicode: f42d +cc-amex: + changes: + - '4.2' + - 5.0.0 + label: American Express Credit Card + search: + terms: + - amex + styles: + - brands + unicode: f1f3 +cc-apple-pay: + changes: + - 5.0.0 + label: Apple Pay Credit Card + search: + terms: [] + styles: + - brands + unicode: f416 +cc-diners-club: + changes: + - '4.4' + - 5.0.0 + label: Diner's Club Credit Card + search: + terms: [] + styles: + - brands + unicode: f24c +cc-discover: + changes: + - '4.2' + - 5.0.0 + label: Discover Credit Card + search: + terms: [] + styles: + - brands + unicode: f1f2 +cc-jcb: + changes: + - '4.4' + - 5.0.0 + label: JCB Credit Card + search: + terms: [] + styles: + - brands + unicode: f24b +cc-mastercard: + changes: + - '4.2' + - 5.0.0 + label: MasterCard Credit Card + search: + terms: [] + styles: + - brands + unicode: f1f1 +cc-paypal: + changes: + - '4.2' + - 5.0.0 + label: Paypal Credit Card + search: + terms: [] + styles: + - brands + unicode: f1f4 +cc-stripe: + changes: + - '4.2' + - 5.0.0 + label: Stripe Credit Card + search: + terms: [] + styles: + - brands + unicode: f1f5 +cc-visa: + changes: + - '4.2' + - 5.0.0 + label: Visa Credit Card + search: + terms: [] + styles: + - brands + unicode: f1f0 +centercode: + changes: + - 5.0.0 + label: Centercode + search: + terms: [] + styles: + - brands + unicode: f380 +certificate: + changes: + - '2' + - 5.0.0 + label: certificate + search: + terms: + - badge + - star + styles: + - solid + unicode: f0a3 +chalkboard: + changes: + - 5.0.13 + label: Chalkboard + search: + terms: + - blackboard + - learning + - school + - teaching + - whiteboard + - writing + styles: + - solid + unicode: f51b +chalkboard-teacher: + changes: + - 5.0.13 + label: Chalkboard Teacher + search: + terms: + - blackboard + - instructor + - learning + - professor + - school + - whiteboard + - writing + styles: + - solid + unicode: f51c +chart-area: + changes: + - '4.2' + - 5.0.0 + label: Area Chart + search: + terms: + - analytics + - area-chart + - graph + styles: + - solid + unicode: f1fe +chart-bar: + changes: + - '1' + - 5.0.0 + label: Bar Chart + search: + terms: + - analytics + - bar-chart + - graph + styles: + - solid + - regular + unicode: f080 +chart-line: + changes: + - '4.2' + - 5.0.0 + label: Line Chart + search: + terms: + - activity + - analytics + - dashboard + - graph + - line-chart + styles: + - solid + unicode: f201 +chart-pie: + changes: + - '4.2' + - 5.0.0 + label: Pie Chart + search: + terms: + - analytics + - graph + - pie-chart + styles: + - solid + unicode: f200 +check: + changes: + - '1' + - 5.0.0 + label: Check + search: + terms: + - accept + - agree + - checkmark + - confirm + - correct + - done + - notice + - notification + - notify + - ok + - select + - success + - tick + - todo + - 'yes' + styles: + - solid + unicode: f00c +check-circle: + changes: + - '1' + - 5.0.0 + label: Check Circle + search: + terms: + - accept + - agree + - confirm + - correct + - done + - ok + - select + - success + - todo + - 'yes' + styles: + - solid + - regular + unicode: f058 +check-double: + changes: + - 5.1.0 + label: Check Double + search: + terms: + - accept + - agree + - checkmark + - confirm + - correct + - done + - notice + - notification + - notify + - ok + - select + - success + - tick + - todo + styles: + - solid + unicode: f560 +check-square: + changes: + - '3.1' + - 5.0.0 + label: Check Square + search: + terms: + - accept + - agree + - checkmark + - confirm + - correct + - done + - ok + - select + - success + - todo + - 'yes' + styles: + - solid + - regular + unicode: f14a +chess: + changes: + - 5.0.5 + label: Chess + search: + terms: [] + styles: + - solid + unicode: f439 +chess-bishop: + changes: + - 5.0.5 + label: Chess Bishop + search: + terms: [] + styles: + - solid + unicode: f43a +chess-board: + changes: + - 5.0.5 + label: Chess Board + search: + terms: [] + styles: + - solid + unicode: f43c +chess-king: + changes: + - 5.0.5 + label: Chess King + search: + terms: [] + styles: + - solid + unicode: f43f +chess-knight: + changes: + - 5.0.5 + label: Chess Knight + search: + terms: [] + styles: + - solid + unicode: f441 +chess-pawn: + changes: + - 5.0.5 + label: Chess Pawn + search: + terms: [] + styles: + - solid + unicode: f443 +chess-queen: + changes: + - 5.0.5 + label: Chess Queen + search: + terms: [] + styles: + - solid + unicode: f445 +chess-rook: + changes: + - 5.0.5 + label: Chess Rook + search: + terms: [] + styles: + - solid + unicode: f447 +chevron-circle-down: + changes: + - '3.1' + - 5.0.0 + label: Chevron Circle Down + search: + terms: + - arrow + - dropdown + - menu + - more + styles: + - solid + unicode: f13a +chevron-circle-left: + changes: + - '3.1' + - 5.0.0 + label: Chevron Circle Left + search: + terms: + - arrow + - back + - previous + styles: + - solid + unicode: f137 +chevron-circle-right: + changes: + - '3.1' + - 5.0.0 + label: Chevron Circle Right + search: + terms: + - arrow + - forward + - next + styles: + - solid + unicode: f138 +chevron-circle-up: + changes: + - '3.1' + - 5.0.0 + label: Chevron Circle Up + search: + terms: + - arrow + styles: + - solid + unicode: f139 +chevron-down: + changes: + - '1' + - 5.0.0 + label: chevron-down + search: + terms: [] + styles: + - solid + unicode: f078 +chevron-left: + changes: + - '1' + - 5.0.0 + label: chevron-left + search: + terms: + - back + - bracket + - previous + styles: + - solid + unicode: f053 +chevron-right: + changes: + - '1' + - 5.0.0 + label: chevron-right + search: + terms: + - bracket + - forward + - next + styles: + - solid + unicode: f054 +chevron-up: + changes: + - '1' + - 5.0.0 + label: chevron-up + search: + terms: [] + styles: + - solid + unicode: f077 +child: + changes: + - '4.1' + - 5.0.0 + label: Child + search: + terms: [] + styles: + - solid + unicode: f1ae +chrome: + changes: + - '4.4' + - 5.0.0 + label: Chrome + search: + terms: + - browser + styles: + - brands + unicode: f268 +church: + changes: + - 5.0.13 + label: Church + search: + terms: + - building + - community + - religion + styles: + - solid + unicode: f51d +circle: + changes: + - '3' + - 5.0.0 + label: Circle + search: + terms: + - circle-thin + - dot + - notification + styles: + - solid + - regular + unicode: f111 +circle-notch: + changes: + - '4.1' + - 5.0.0 + label: Circle Notched + search: + terms: + - circle-o-notch + styles: + - solid + unicode: f1ce +clipboard: + changes: + - 5.0.0 + label: Clipboard + search: + terms: + - paste + styles: + - solid + - regular + unicode: f328 +clipboard-check: + changes: + - 5.0.7 + label: Clipboard Check + search: + terms: + - accept + - agree + - confirm + - done + - ok + - select + - success + - todo + - 'yes' + styles: + - solid + unicode: f46c +clipboard-list: + changes: + - 5.0.7 + label: Clipboard List + search: + terms: + - checklist + - completed + - done + - finished + - intinerary + - ol + - schedule + - todo + - ul + styles: + - solid + unicode: f46d +clock: + changes: + - '1' + - 5.0.0 + label: Clock + search: + terms: + - date + - late + - schedule + - timer + - timestamp + - watch + styles: + - solid + - regular + unicode: f017 +clone: + changes: + - '4.4' + - 5.0.0 + label: Clone + search: + terms: + - copy + - duplicate + styles: + - solid + - regular + unicode: f24d +closed-captioning: + changes: + - '4.2' + - 5.0.0 + label: Closed Captioning + search: + terms: + - cc + styles: + - solid + - regular + unicode: f20a +cloud: + changes: + - '2' + - 5.0.0 + - 5.0.11 + label: Cloud + search: + terms: + - save + styles: + - solid + unicode: f0c2 +cloud-download-alt: + changes: + - 5.0.0 + - 5.0.11 + label: Alternate Cloud Download + search: + terms: + - cloud-download + styles: + - solid + unicode: f381 +cloud-upload-alt: + changes: + - 5.0.0 + - 5.0.11 + label: Alternate Cloud Upload + search: + terms: + - cloud-upload + styles: + - solid + unicode: f382 +cloudscale: + changes: + - 5.0.0 + label: cloudscale.ch + search: + terms: [] + styles: + - brands + unicode: f383 +cloudsmith: + changes: + - 5.0.0 + label: Cloudsmith + search: + terms: [] + styles: + - brands + unicode: f384 +cloudversify: + changes: + - 5.0.0 + label: cloudversify + search: + terms: [] + styles: + - brands + unicode: f385 +cocktail: + changes: + - 5.1.0 + label: Cocktail + search: + terms: + - alcohol + - drink + styles: + - solid + unicode: f561 +code: + changes: + - '3.1' + - 5.0.0 + label: Code + search: + terms: + - brackets + - html + styles: + - solid + unicode: f121 +code-branch: + changes: + - 5.0.0 + label: Code Branch + search: + terms: + - branch + - code-fork + - fork + - git + - github + - rebase + - svn + - vcs + - version + styles: + - solid + unicode: f126 +codepen: + changes: + - '4.1' + - 5.0.0 + label: Codepen + search: + terms: [] + styles: + - brands + unicode: f1cb +codiepie: + changes: + - '4.5' + - 5.0.0 + label: Codie Pie + search: + terms: [] + styles: + - brands + unicode: f284 +coffee: + changes: + - '3' + - 5.0.0 + label: Coffee + search: + terms: + - breakfast + - cafe + - drink + - morning + - mug + - tea + styles: + - solid + unicode: f0f4 +cog: + changes: + - '1' + - 5.0.0 + label: cog + search: + terms: + - settings + styles: + - solid + unicode: f013 +cogs: + changes: + - '1' + - 5.0.0 + label: cogs + search: + terms: + - gears + - settings + styles: + - solid + unicode: f085 +coins: + changes: + - 5.0.13 + label: Coins + search: + terms: [] + styles: + - solid + unicode: f51e +columns: + changes: + - '2' + - 5.0.0 + label: Columns + search: + terms: + - dashboard + - panes + - split + styles: + - solid + unicode: f0db +comment: + changes: + - '1' + - 5.0.0 + - 5.0.9 + label: comment + search: + terms: + - bubble + - chat + - conversation + - feedback + - message + - note + - notification + - sms + - speech + - texting + styles: + - solid + - regular + unicode: f075 +comment-alt: + changes: + - '4.4' + - 5.0.0 + label: Alternate Comment + search: + terms: + - bubble + - chat + - commenting + - commenting + - conversation + - feedback + - message + - note + - notification + - sms + - speech + - texting + styles: + - solid + - regular + unicode: f27a +comment-dots: + changes: + - 5.0.9 + label: Comment Dots + search: + terms: [] + styles: + - solid + - regular + unicode: f4ad +comment-slash: + changes: + - 5.0.9 + label: Comment Slash + search: + terms: [] + styles: + - solid + unicode: f4b3 +comments: + changes: + - '1' + - 5.0.0 + - 5.0.9 + label: comments + search: + terms: + - bubble + - chat + - conversation + - feedback + - message + - note + - notification + - sms + - speech + - texting + styles: + - solid + - regular + unicode: f086 +compact-disc: + changes: + - 5.0.13 + label: Compact Disc + search: + terms: + - bluray + - cd + - disc + - media + styles: + - solid + unicode: f51f +compass: + changes: + - '3.2' + - 5.0.0 + label: Compass + search: + terms: + - directory + - location + - menu + - safari + styles: + - solid + - regular + unicode: f14e +compress: + changes: + - 5.0.0 + label: Compress + search: + terms: + - collapse + - combine + - contract + - merge + - smaller + styles: + - solid + unicode: f066 +concierge-bell: + changes: + - 5.1.0 + label: Concierge Bell + search: + terms: + - attention + - hotel + - service + - support + styles: + - solid + unicode: f562 +connectdevelop: + changes: + - '4.3' + - 5.0.0 + label: Connect Develop + search: + terms: [] + styles: + - brands + unicode: f20e +contao: + changes: + - '4.4' + - 5.0.0 + label: Contao + search: + terms: [] + styles: + - brands + unicode: f26d +cookie: + changes: + - 5.1.0 + label: Cookie + search: + terms: + - baked good + - chips + - food + - snack + - sweet + - treat + styles: + - solid + unicode: f563 +cookie-bite: + changes: + - 5.1.0 + label: Cookie Bite + search: + terms: + - baked good + - bitten + - chips + - eating + - food + - snack + - sweet + - treat + styles: + - solid + unicode: f564 +copy: + changes: + - '2' + - 5.0.0 + label: Copy + search: + terms: + - clone + - duplicate + - file + - files-o + styles: + - solid + - regular + unicode: f0c5 +copyright: + changes: + - '4.2' + - 5.0.0 + label: Copyright + search: + terms: [] + styles: + - solid + - regular + unicode: f1f9 +couch: + changes: + - 5.0.9 + label: Couch + search: + terms: [] + styles: + - solid + unicode: f4b8 +cpanel: + changes: + - 5.0.0 + label: cPanel + search: + terms: [] + styles: + - brands + unicode: f388 +creative-commons: + changes: + - '4.4' + - 5.0.0 + - 5.0.11 + - 5.1.0 + label: Creative Commons + search: + terms: [] + styles: + - brands + unicode: f25e +creative-commons-by: + changes: + - 5.0.11 + label: Creative Commons Attribution + search: + terms: [] + styles: + - brands + unicode: f4e7 +creative-commons-nc: + changes: + - 5.0.11 + label: Creative Commons Noncommercial + search: + terms: [] + styles: + - brands + unicode: f4e8 +creative-commons-nc-eu: + changes: + - 5.0.11 + label: Creative Commons Noncommercial (Euro Sign) + search: + terms: [] + styles: + - brands + unicode: f4e9 +creative-commons-nc-jp: + changes: + - 5.0.11 + label: Creative Commons Noncommercial (Yen Sign) + search: + terms: [] + styles: + - brands + unicode: f4ea +creative-commons-nd: + changes: + - 5.0.11 + label: Creative Commons No Derivative Works + search: + terms: [] + styles: + - brands + unicode: f4eb +creative-commons-pd: + changes: + - 5.0.11 + label: Creative Commons Public Domain + search: + terms: [] + styles: + - brands + unicode: f4ec +creative-commons-pd-alt: + changes: + - 5.0.11 + label: Creative Commons Public Domain Alternate + search: + terms: [] + styles: + - brands + unicode: f4ed +creative-commons-remix: + changes: + - 5.0.11 + label: Creative Commons Remix + search: + terms: [] + styles: + - brands + unicode: f4ee +creative-commons-sa: + changes: + - 5.0.11 + label: Creative Commons Share Alike + search: + terms: [] + styles: + - brands + unicode: f4ef +creative-commons-sampling: + changes: + - 5.0.11 + label: Creative Commons Sampling + search: + terms: [] + styles: + - brands + unicode: f4f0 +creative-commons-sampling-plus: + changes: + - 5.0.11 + label: Creative Commons Sampling + + search: + terms: [] + styles: + - brands + unicode: f4f1 +creative-commons-share: + changes: + - 5.0.11 + label: Creative Commons Share + search: + terms: [] + styles: + - brands + unicode: f4f2 +credit-card: + changes: + - '2' + - 5.0.0 + label: Credit Card + search: + terms: + - buy + - checkout + - credit-card-alt + - debit + - money + - payment + - purchase + styles: + - solid + - regular + unicode: f09d +crop: + changes: + - '3.1' + - 5.0.0 + - 5.1.0 + label: crop + search: + terms: + - design + styles: + - solid + unicode: f125 +crop-alt: + changes: + - 5.1.0 + label: Alternate Crop + search: + terms: [] + styles: + - solid + unicode: f565 +crosshairs: + changes: + - '1' + - 5.0.0 + label: Crosshairs + search: + terms: + - gpd + - picker + - position + styles: + - solid + unicode: f05b +crow: + changes: + - 5.0.13 + label: Crow + search: + terms: + - bird + - bullfrog + - toad + styles: + - solid + unicode: f520 +crown: + changes: + - 5.0.13 + label: Crown + search: + terms: [] + styles: + - solid + unicode: f521 +css3: + changes: + - '3.1' + - 5.0.0 + label: CSS 3 Logo + search: + terms: + - code + styles: + - brands + unicode: f13c +css3-alt: + changes: + - 5.0.0 + label: Alternate CSS3 Logo + search: + terms: [] + styles: + - brands + unicode: f38b +cube: + changes: + - '4.1' + - 5.0.0 + label: Cube + search: + terms: + - package + styles: + - solid + unicode: f1b2 +cubes: + changes: + - '4.1' + - 5.0.0 + label: Cubes + search: + terms: + - packages + styles: + - solid + unicode: f1b3 +cut: + changes: + - '2' + - 5.0.0 + - 5.1.0 + label: Cut + search: + terms: + - scissors + - scissors + styles: + - solid + unicode: f0c4 +cuttlefish: + changes: + - 5.0.0 + label: Cuttlefish + search: + terms: [] + styles: + - brands + unicode: f38c +d-and-d: + changes: + - 5.0.0 + label: Dungeons & Dragons + search: + terms: [] + styles: + - brands + unicode: f38d +dashcube: + changes: + - '4.3' + - 5.0.0 + - 5.0.3 + label: DashCube + search: + terms: [] + styles: + - brands + unicode: f210 +database: + changes: + - '4.1' + - 5.0.0 + label: Database + search: + terms: [] + styles: + - solid + unicode: f1c0 +deaf: + changes: + - '4.6' + - 5.0.0 + label: Deaf + search: + terms: [] + styles: + - solid + unicode: f2a4 +delicious: + changes: + - '4.1' + - 5.0.0 + label: Delicious Logo + search: + terms: [] + styles: + - brands + unicode: f1a5 +deploydog: + changes: + - 5.0.0 + label: deploy.dog + search: + terms: [] + styles: + - brands + unicode: f38e +deskpro: + changes: + - 5.0.0 + label: Deskpro + search: + terms: [] + styles: + - brands + unicode: f38f +desktop: + changes: + - '3' + - 5.0.0 + label: Desktop + search: + terms: + - computer + - cpu + - demo + - desktop + - device + - machine + - monitor + - pc + - screen + styles: + - solid + unicode: f108 +deviantart: + changes: + - '4.1' + - 5.0.0 + label: deviantART + search: + terms: [] + styles: + - brands + unicode: f1bd +diagnoses: + changes: + - 5.0.7 + label: Diagnoses + search: + terms: [] + styles: + - solid + unicode: f470 +dice: + changes: + - 5.0.13 + label: Dice + search: + terms: + - chance + - gambling + - game + - roll + styles: + - solid + unicode: f522 +dice-five: + changes: + - 5.0.13 + label: Dice Five + search: + terms: + - chance + - gambling + - game + - roll + styles: + - solid + unicode: f523 +dice-four: + changes: + - 5.0.13 + label: Dice Four + search: + terms: + - chance + - gambling + - game + - roll + styles: + - solid + unicode: f524 +dice-one: + changes: + - 5.0.13 + label: Dice One + search: + terms: + - chance + - gambling + - game + - roll + styles: + - solid + unicode: f525 +dice-six: + changes: + - 5.0.13 + label: Dice Six + search: + terms: + - chance + - gambling + - game + - roll + styles: + - solid + unicode: f526 +dice-three: + changes: + - 5.0.13 + label: Dice Three + search: + terms: + - chance + - gambling + - game + - roll + styles: + - solid + unicode: f527 +dice-two: + changes: + - 5.0.13 + label: Dice Two + search: + terms: + - chance + - gambling + - game + - roll + styles: + - solid + unicode: f528 +digg: + changes: + - '4.1' + - 5.0.0 + label: Digg Logo + search: + terms: [] + styles: + - brands + unicode: f1a6 +digital-ocean: + changes: + - 5.0.0 + label: Digital Ocean + search: + terms: [] + styles: + - brands + unicode: f391 +digital-tachograph: + changes: + - 5.1.0 + label: Digital Tachograph + search: + terms: [] + styles: + - solid + unicode: f566 +discord: + changes: + - 5.0.0 + label: Discord + search: + terms: [] + styles: + - brands + unicode: f392 +discourse: + changes: + - 5.0.0 + - 5.0.3 + label: Discourse + search: + terms: [] + styles: + - brands + unicode: f393 +divide: + changes: + - 5.0.13 + label: Divide + search: + terms: [] + styles: + - solid + unicode: f529 +dizzy: + changes: + - 5.1.0 + label: Dizzy Face + search: + terms: + - dazed + - disapprove + - emoticon + - face + styles: + - solid + - regular + unicode: f567 +dna: + changes: + - 5.0.7 + - 5.0.10 + label: DNA + search: + terms: + - double helix + - helix + styles: + - solid + unicode: f471 +dochub: + changes: + - 5.0.0 + label: DocHub + search: + terms: [] + styles: + - brands + unicode: f394 +docker: + changes: + - 5.0.0 + label: Docker + search: + terms: [] + styles: + - brands + unicode: f395 +dollar-sign: + changes: + - '3.2' + - 5.0.0 + - 5.0.9 + label: Dollar Sign + search: + terms: + - $ + - dollar-sign + - money + - price + - usd + styles: + - solid + unicode: f155 +dolly: + changes: + - 5.0.7 + label: Dolly + search: + terms: [] + styles: + - solid + unicode: f472 +dolly-flatbed: + changes: + - 5.0.7 + label: Dolly Flatbed + search: + terms: [] + styles: + - solid + unicode: f474 +donate: + changes: + - 5.0.9 + label: Donate + search: + terms: + - generosity + - give + styles: + - solid + unicode: f4b9 +door-closed: + changes: + - 5.0.13 + label: Door Closed + search: + terms: [] + styles: + - solid + unicode: f52a +door-open: + changes: + - 5.0.13 + label: Door Open + search: + terms: [] + styles: + - solid + unicode: f52b +dot-circle: + changes: + - '4' + - 5.0.0 + label: Dot Circle + search: + terms: + - bullseye + - notification + - target + styles: + - solid + - regular + unicode: f192 +dove: + changes: + - 5.0.9 + label: Dove + search: + terms: [] + styles: + - solid + unicode: f4ba +download: + changes: + - '1' + - 5.0.0 + label: Download + search: + terms: + - import + styles: + - solid + unicode: f019 +draft2digital: + changes: + - 5.0.0 + label: Draft2digital + search: + terms: [] + styles: + - brands + unicode: f396 +drafting-compass: + changes: + - 5.1.0 + label: Drafting Compass + search: + terms: + - mechanical drawing + - plot + - plotting + styles: + - solid + unicode: f568 +dribbble: + changes: + - 5.0.0 + label: Dribbble + search: + terms: [] + styles: + - brands + unicode: f17d +dribbble-square: + changes: + - 5.0.0 + label: Dribbble Square + search: + terms: [] + styles: + - brands + unicode: f397 +dropbox: + changes: + - '3.2' + - 5.0.0 + - 5.0.1 + label: Dropbox + search: + terms: [] + styles: + - brands + unicode: f16b +drum: + changes: + - 5.1.0 + label: Drum + search: + terms: + - instrument + - music + - percussion + - snare + - sound + styles: + - solid + unicode: f569 +drum-steelpan: + changes: + - 5.1.0 + label: Drum Steelpan + search: + terms: + - calypso + - instrument + - music + - percussion + - reggae + - snare + - sound + - steel + - tropical + styles: + - solid + unicode: f56a +drupal: + changes: + - '4.1' + - 5.0.0 + label: Drupal Logo + search: + terms: [] + styles: + - brands + unicode: f1a9 +dumbbell: + changes: + - 5.0.5 + label: Dumbbell + search: + terms: + - exercise + - gym + - strength + - weight + - weight-lifting + styles: + - solid + unicode: f44b +dyalog: + changes: + - 5.0.0 + label: Dyalog + search: + terms: [] + styles: + - brands + unicode: f399 +earlybirds: + changes: + - 5.0.0 + label: Earlybirds + search: + terms: [] + styles: + - brands + unicode: f39a +ebay: + changes: + - 5.0.11 + label: eBay + search: + terms: [] + styles: + - brands + unicode: f4f4 +edge: + changes: + - '4.5' + - 5.0.0 + label: Edge Browser + search: + terms: + - browser + - ie + styles: + - brands + unicode: f282 +edit: + changes: + - '1' + - 5.0.0 + label: Edit + search: + terms: + - edit + - pen + - pencil + - update + - write + styles: + - solid + - regular + unicode: f044 +eject: + changes: + - '1' + - 5.0.0 + label: eject + search: + terms: [] + styles: + - solid + unicode: f052 +elementor: + changes: + - 5.0.3 + label: Elementor + search: + terms: [] + styles: + - brands + unicode: f430 +ellipsis-h: + changes: + - '3.1' + - 5.0.0 + label: Horizontal Ellipsis + search: + terms: + - dots + - drag + - kebab + - list + - menu + - nav + - navigation + - ol + - reorder + - settings + - ul + styles: + - solid + unicode: f141 +ellipsis-v: + changes: + - '3.1' + - 5.0.0 + label: Vertical Ellipsis + search: + terms: + - dots + - drag + - kebab + - list + - menu + - nav + - navigation + - ol + - reorder + - settings + - ul + styles: + - solid + unicode: f142 +ember: + changes: + - 5.0.0 + - 5.0.3 + label: Ember + search: + terms: [] + styles: + - brands + unicode: f423 +empire: + changes: + - '4.1' + - 5.0.0 + label: Galactic Empire + search: + terms: [] + styles: + - brands + unicode: f1d1 +envelope: + changes: + - '2' + - 5.0.0 + label: Envelope + search: + terms: + - e-mail + - email + - letter + - mail + - message + - notification + - support + styles: + - solid + - regular + unicode: f0e0 +envelope-open: + changes: + - '4.7' + - 5.0.0 + label: Envelope Open + search: + terms: + - e-mail + - email + - letter + - mail + - message + - notification + - support + styles: + - solid + - regular + unicode: f2b6 +envelope-square: + changes: + - '4.1' + - 5.0.0 + label: Envelope Square + search: + terms: + - e-mail + - email + - letter + - mail + - message + - notification + - support + styles: + - solid + unicode: f199 +envira: + changes: + - '4.6' + - 5.0.0 + label: Envira Gallery + search: + terms: + - leaf + styles: + - brands + unicode: f299 +equals: + changes: + - 5.0.13 + label: Equals + search: + terms: [] + styles: + - solid + unicode: f52c +eraser: + changes: + - '3.1' + - 5.0.0 + label: eraser + search: + terms: + - delete + - remove + styles: + - solid + unicode: f12d +erlang: + changes: + - 5.0.0 + - 5.0.3 + label: Erlang + search: + terms: [] + styles: + - brands + unicode: f39d +ethereum: + changes: + - 5.0.2 + label: Ethereum + search: + terms: [] + styles: + - brands + unicode: f42e +etsy: + changes: + - '4.7' + - 5.0.0 + label: Etsy + search: + terms: [] + styles: + - brands + unicode: f2d7 +euro-sign: + changes: + - '3.2' + - 5.0.0 + label: Euro Sign + search: + terms: + - eur + - eur + styles: + - solid + unicode: f153 +exchange-alt: + changes: + - 5.0.0 + label: Alternate Exchange + search: + terms: + - arrow + - arrows + - exchange + - reciprocate + - return + - swap + - transfer + styles: + - solid + unicode: f362 +exclamation: + changes: + - '3.1' + - 5.0.0 + label: exclamation + search: + terms: + - alert + - danger + - error + - important + - notice + - notification + - notify + - problem + - warning + styles: + - solid + unicode: f12a +exclamation-circle: + changes: + - '1' + - 5.0.0 + label: Exclamation Circle + search: + terms: + - alert + - danger + - error + - important + - notice + - notification + - notify + - problem + - warning + styles: + - solid + unicode: f06a +exclamation-triangle: + changes: + - '1' + - 5.0.0 + label: Exclamation Triangle + search: + terms: + - alert + - danger + - error + - important + - notice + - notification + - notify + - problem + - warning + styles: + - solid + unicode: f071 +expand: + changes: + - 5.0.0 + label: Expand + search: + terms: + - bigger + - enlarge + - resize + styles: + - solid + unicode: f065 +expand-arrows-alt: + changes: + - 5.0.0 + label: Alternate Expand Arrows + search: + terms: + - arrows-alt + - bigger + - enlarge + - move + - resize + styles: + - solid + unicode: f31e +expeditedssl: + changes: + - '4.4' + - 5.0.0 + label: ExpeditedSSL + search: + terms: [] + styles: + - brands + unicode: f23e +external-link-alt: + changes: + - 5.0.0 + label: Alternate External Link + search: + terms: + - external-link + - new + - open + styles: + - solid + unicode: f35d +external-link-square-alt: + changes: + - 5.0.0 + label: Alternate External Link Square + search: + terms: + - external-link-square + - new + - open + styles: + - solid + unicode: f360 +eye: + changes: + - '1' + - 5.0.0 + label: Eye + search: + terms: + - optic + - see + - seen + - show + - sight + - views + - visible + styles: + - solid + - regular + unicode: f06e +eye-dropper: + changes: + - '4.2' + - 5.0.0 + - 5.1.0 + label: Eye Dropper + search: + terms: + - eyedropper + styles: + - solid + unicode: f1fb +eye-slash: + changes: + - '1' + - 5.0.0 + label: Eye Slash + search: + terms: + - blind + - hide + - show + - toggle + - unseen + - views + - visible + - visiblity + styles: + - solid + - regular + unicode: f070 +facebook: + changes: + - '2' + - 5.0.0 + label: Facebook + search: + terms: + - facebook-official + - social network + styles: + - brands + unicode: f09a +facebook-f: + changes: + - 5.0.0 + label: Facebook F + search: + terms: + - facebook + styles: + - brands + unicode: f39e +facebook-messenger: + changes: + - 5.0.0 + label: Facebook Messenger + search: + terms: [] + styles: + - brands + unicode: f39f +facebook-square: + changes: + - '1' + - 5.0.0 + label: Facebook Square + search: + terms: + - social network + styles: + - brands + unicode: f082 +fast-backward: + changes: + - '1' + - 5.0.0 + label: fast-backward + search: + terms: + - beginning + - first + - previous + - rewind + - start + styles: + - solid + unicode: f049 +fast-forward: + changes: + - '1' + - 5.0.0 + label: fast-forward + search: + terms: + - end + - last + - next + styles: + - solid + unicode: f050 +fax: + changes: + - '4.1' + - 5.0.0 + label: Fax + search: + terms: [] + styles: + - solid + unicode: f1ac +feather: + changes: + - 5.0.13 + - 5.1.0 + label: Feather + search: + terms: + - bird + - light + - plucked + - quill + styles: + - solid + unicode: f52d +feather-alt: + changes: + - 5.1.0 + label: Feather Alt + search: + terms: + - bird + - light + - plucked + - quill + styles: + - solid + unicode: f56b +female: + changes: + - '3.2' + - 5.0.0 + label: Female + search: + terms: + - human + - person + - profile + - user + - woman + styles: + - solid + unicode: f182 +fighter-jet: + changes: + - '3' + - 5.0.0 + label: fighter-jet + search: + terms: + - airplane + - fast + - fly + - goose + - maverick + - plane + - quick + - top gun + - transportation + - travel + styles: + - solid + unicode: f0fb +file: + changes: + - '3.2' + - 5.0.0 + label: File + search: + terms: + - document + - new + - page + - pdf + - resume + styles: + - solid + - regular + unicode: f15b +file-alt: + changes: + - '3.2' + - 5.0.0 + label: Alternate File + search: + terms: + - document + - file-text + - invoice + - new + - page + - pdf + styles: + - solid + - regular + unicode: f15c +file-archive: + changes: + - '4.1' + - 5.0.0 + label: Archive File + search: + terms: + - .zip + - bundle + - compress + - compression + - download + - zip + styles: + - solid + - regular + unicode: f1c6 +file-audio: + changes: + - '4.1' + - 5.0.0 + label: Audio File + search: + terms: [] + styles: + - solid + - regular + unicode: f1c7 +file-code: + changes: + - '4.1' + - 5.0.0 + label: Code File + search: + terms: [] + styles: + - solid + - regular + unicode: f1c9 +file-contract: + changes: + - 5.1.0 + label: File Contract + search: + terms: + - agreement + - binding + - document + - legal + - signature + styles: + - solid + unicode: f56c +file-download: + changes: + - 5.1.0 + label: File Download + search: + terms: [] + styles: + - solid + unicode: f56d +file-excel: + changes: + - '4.1' + - 5.0.0 + label: Excel File + search: + terms: [] + styles: + - solid + - regular + unicode: f1c3 +file-export: + changes: + - 5.1.0 + label: File Export + search: + terms: [] + styles: + - solid + unicode: f56e +file-image: + changes: + - '4.1' + - 5.0.0 + label: Image File + search: + terms: [] + styles: + - solid + - regular + unicode: f1c5 +file-import: + changes: + - 5.1.0 + label: File Import + search: + terms: [] + styles: + - solid + unicode: f56f +file-invoice: + changes: + - 5.1.0 + label: File Invoice + search: + terms: + - bill + - document + - receipt + styles: + - solid + unicode: f570 +file-invoice-dollar: + changes: + - 5.1.0 + label: File Invoice with US Dollar + search: + terms: + - $ + - bill + - document + - dollar-sign + - money + - receipt + - usd + styles: + - solid + unicode: f571 +file-medical: + changes: + - 5.0.7 + label: Medical File + search: + terms: [] + styles: + - solid + unicode: f477 +file-medical-alt: + changes: + - 5.0.7 + label: Alternate Medical File + search: + terms: [] + styles: + - solid + unicode: f478 +file-pdf: + changes: + - '4.1' + - 5.0.0 + label: PDF File + search: + terms: [] + styles: + - solid + - regular + unicode: f1c1 +file-powerpoint: + changes: + - '4.1' + - 5.0.0 + label: Powerpoint File + search: + terms: [] + styles: + - solid + - regular + unicode: f1c4 +file-prescription: + changes: + - 5.1.0 + label: File Prescription + search: + terms: + - drugs + - medical + - medicine + - rx + styles: + - solid + unicode: f572 +file-signature: + changes: + - 5.1.0 + label: File Signature + search: + terms: + - John Hancock + - contract + - document + - name + styles: + - solid + unicode: f573 +file-upload: + changes: + - 5.1.0 + label: File Upload + search: + terms: [] + styles: + - solid + unicode: f574 +file-video: + changes: + - '4.1' + - 5.0.0 + label: Video File + search: + terms: [] + styles: + - solid + - regular + unicode: f1c8 +file-word: + changes: + - '4.1' + - 5.0.0 + label: Word File + search: + terms: [] + styles: + - solid + - regular + unicode: f1c2 +fill: + changes: + - 5.1.0 + label: Fill + search: + terms: + - bucket + - color + - paint + - paint bucket + styles: + - solid + unicode: f575 +fill-drip: + changes: + - 5.1.0 + label: Fill Drip + search: + terms: + - bucket + - color + - drop + - paint + - paint bucket + - spill + styles: + - solid + unicode: f576 +film: + changes: + - '1' + - 5.0.0 + label: Film + search: + terms: + - movie + styles: + - solid + unicode: f008 +filter: + changes: + - '2' + - 5.0.0 + label: Filter + search: + terms: + - funnel + - options + styles: + - solid + unicode: f0b0 +fingerprint: + changes: + - 5.1.0 + label: Fingerprint + search: + terms: + - human + - id + - identification + - lock + - smudge + - touch + - unique + - unlock + styles: + - solid + unicode: f577 +fire: + changes: + - '1' + - 5.0.0 + label: fire + search: + terms: + - flame + - hot + - popular + styles: + - solid + unicode: f06d +fire-extinguisher: + changes: + - '3.1' + - 5.0.0 + label: fire-extinguisher + search: + terms: [] + styles: + - solid + unicode: f134 +firefox: + changes: + - '4.4' + - 5.0.0 + - 5.0.1 + label: Firefox + search: + terms: + - browser + styles: + - brands + unicode: f269 +first-aid: + changes: + - 5.0.7 + label: First Aid + search: + terms: [] + styles: + - solid + unicode: f479 +first-order: + changes: + - '4.6' + - 5.0.0 + label: First Order + search: + terms: [] + styles: + - brands + unicode: f2b0 +first-order-alt: + changes: + - 5.0.12 + label: Alternate First Order + search: + terms: [] + styles: + - brands + unicode: f50a +firstdraft: + changes: + - 5.0.0 + label: firstdraft + search: + terms: [] + styles: + - brands + unicode: f3a1 +fish: + changes: + - 5.1.0 + label: Fish + search: + terms: [] + styles: + - solid + unicode: f578 +flag: + changes: + - '1' + - 5.0.0 + label: flag + search: + terms: + - notice + - notification + - notify + - report + styles: + - solid + - regular + unicode: f024 +flag-checkered: + changes: + - '3.1' + - 5.0.0 + label: flag-checkered + search: + terms: + - notice + - notification + - notify + - report + styles: + - solid + unicode: f11e +flask: + changes: + - '2' + - 5.0.0 + label: Flask + search: + terms: + - beaker + - experimental + - labs + - science + styles: + - solid + unicode: f0c3 +flickr: + changes: + - '3.2' + - 5.0.0 + label: Flickr + search: + terms: [] + styles: + - brands + unicode: f16e +flipboard: + changes: + - 5.0.5 + - 5.0.9 + label: Flipboard + search: + terms: [] + styles: + - brands + unicode: f44d +flushed: + changes: + - 5.1.0 + label: Flushed Face + search: + terms: + - embarrassed + - emoticon + - face + styles: + - solid + - regular + unicode: f579 +fly: + changes: + - 5.0.0 + label: Fly + search: + terms: [] + styles: + - brands + unicode: f417 +folder: + changes: + - '1' + - 5.0.0 + label: Folder + search: + terms: [] + styles: + - solid + - regular + unicode: f07b +folder-open: + changes: + - '1' + - 5.0.0 + label: Folder Open + search: + terms: [] + styles: + - solid + - regular + unicode: f07c +font: + changes: + - '1' + - 5.0.0 + label: font + search: + terms: + - text + styles: + - solid + unicode: f031 +font-awesome: + changes: + - '4.6' + - 5.0.0 + label: Font Awesome + search: + terms: + - meanpath + styles: + - brands + unicode: f2b4 +font-awesome-alt: + changes: + - 5.0.0 + label: Alternate Font Awesome + search: + terms: [] + styles: + - brands + unicode: f35c +font-awesome-flag: + changes: + - 5.0.0 + - 5.0.1 + label: Font Awesome Flag + search: + terms: [] + styles: + - brands + unicode: f425 +font-awesome-logo-full: + changes: + - 5.0.11 + label: Font Awesome Full Logo + ligatures: + - Font Awesome + private: true + search: + terms: [] + styles: + - regular + - solid + - brands + unicode: f4e6 +fonticons: + changes: + - '4.4' + - 5.0.0 + label: Fonticons + search: + terms: [] + styles: + - brands + unicode: f280 +fonticons-fi: + changes: + - 5.0.0 + label: Fonticons Fi + search: + terms: [] + styles: + - brands + unicode: f3a2 +football-ball: + changes: + - 5.0.5 + label: Football Ball + search: + terms: [] + styles: + - solid + unicode: f44e +fort-awesome: + changes: + - '4.5' + - 5.0.0 + - 5.0.3 + label: Fort Awesome + search: + terms: + - castle + styles: + - brands + unicode: f286 +fort-awesome-alt: + changes: + - 5.0.0 + label: Alternate Fort Awesome + search: + terms: + - castle + styles: + - brands + unicode: f3a3 +forumbee: + changes: + - '4.3' + - 5.0.0 + label: Forumbee + search: + terms: [] + styles: + - brands + unicode: f211 +forward: + changes: + - '1' + - 5.0.0 + label: forward + search: + terms: + - forward + - next + styles: + - solid + unicode: f04e +foursquare: + changes: + - '3.2' + - 5.0.0 + label: Foursquare + search: + terms: [] + styles: + - brands + unicode: f180 +free-code-camp: + changes: + - '4.7' + - 5.0.0 + label: Free Code Camp + search: + terms: [] + styles: + - brands + unicode: f2c5 +freebsd: + changes: + - 5.0.0 + label: FreeBSD + search: + terms: [] + styles: + - brands + unicode: f3a4 +frog: + changes: + - 5.0.13 + label: Frog + search: + terms: + - bullfrog + - kermit + - kiss + - prince + - toad + - wart + styles: + - solid + unicode: f52e +frown: + changes: + - '3.1' + - 5.0.0 + - 5.0.9 + - 5.1.0 + label: Frowning Face + search: + terms: + - disapprove + - emoticon + - face + - rating + - sad + styles: + - solid + - regular + unicode: f119 +frown-open: + changes: + - 5.1.0 + label: Frowning Face With Open Mouth + search: + terms: + - disapprove + - emoticon + - face + - rating + - sad + styles: + - solid + - regular + unicode: f57a +fulcrum: + changes: + - 5.0.12 + label: Fulcrum + search: + terms: [] + styles: + - brands + unicode: f50b +futbol: + changes: + - '4.2' + - 5.0.0 + - 5.0.5 + label: Futbol + search: + terms: + - ball + - football + - soccer + styles: + - solid + - regular + unicode: f1e3 +galactic-republic: + changes: + - 5.0.12 + label: Galactic Republic + search: + terms: [] + styles: + - brands + unicode: f50c +galactic-senate: + changes: + - 5.0.12 + label: Galactic Senate + search: + terms: [] + styles: + - brands + unicode: f50d +gamepad: + changes: + - '3.1' + - 5.0.0 + label: Gamepad + search: + terms: + - controller + styles: + - solid + unicode: f11b +gas-pump: + changes: + - 5.0.13 + label: Gas Pump + search: + terms: [] + styles: + - solid + unicode: f52f +gavel: + changes: + - '2' + - 5.0.0 + label: Gavel + search: + terms: + - hammer + - judge + - lawyer + - opinion + styles: + - solid + unicode: f0e3 +gem: + changes: + - 5.0.0 + label: Gem + search: + terms: + - diamond + styles: + - solid + - regular + unicode: f3a5 +genderless: + changes: + - '4.4' + - 5.0.0 + label: Genderless + search: + terms: [] + styles: + - solid + unicode: f22d +get-pocket: + changes: + - '4.4' + - 5.0.0 + label: Get Pocket + search: + terms: [] + styles: + - brands + unicode: f265 +gg: + changes: + - '4.4' + - 5.0.0 + label: GG Currency + search: + terms: [] + styles: + - brands + unicode: f260 +gg-circle: + changes: + - '4.4' + - 5.0.0 + label: GG Currency Circle + search: + terms: [] + styles: + - brands + unicode: f261 +gift: + changes: + - '1' + - 5.0.0 + - 5.0.9 + label: gift + search: + terms: + - generosity + - giving + - party + - present + - wrapped + styles: + - solid + unicode: f06b +git: + changes: + - '4.1' + - 5.0.0 + label: Git + search: + terms: [] + styles: + - brands + unicode: f1d3 +git-square: + changes: + - '4.1' + - 5.0.0 + label: Git Square + search: + terms: [] + styles: + - brands + unicode: f1d2 +github: + changes: + - '2' + - 5.0.0 + label: GitHub + search: + terms: + - octocat + styles: + - brands + unicode: f09b +github-alt: + changes: + - '3' + - 5.0.0 + label: Alternate GitHub + search: + terms: + - octocat + styles: + - brands + unicode: f113 +github-square: + changes: + - '1' + - 5.0.0 + label: GitHub Square + search: + terms: + - octocat + styles: + - brands + unicode: f092 +gitkraken: + changes: + - 5.0.0 + label: GitKraken + search: + terms: [] + styles: + - brands + unicode: f3a6 +gitlab: + changes: + - '4.6' + - 5.0.0 + label: GitLab + search: + terms: + - Axosoft + styles: + - brands + unicode: f296 +gitter: + changes: + - 5.0.0 + label: Gitter + search: + terms: [] + styles: + - brands + unicode: f426 +glass-martini: + changes: + - '1' + - 5.0.0 + - 5.1.0 + label: Martini Glass + search: + terms: + - alcohol + - bar + - drink + - glass + - liquor + - martini + styles: + - solid + unicode: f000 +glass-martini-alt: + changes: + - 5.1.0 + label: Glass Martini-alt + search: + terms: [] + styles: + - solid + unicode: f57b +glasses: + changes: + - 5.0.13 + label: Glasses + search: + terms: + - foureyes + - hipster + - nerd + - reading + - sight + - spectacles + styles: + - solid + unicode: f530 +glide: + changes: + - '4.6' + - 5.0.0 + label: Glide + search: + terms: [] + styles: + - brands + unicode: f2a5 +glide-g: + changes: + - '4.6' + - 5.0.0 + label: Glide G + search: + terms: [] + styles: + - brands + unicode: f2a6 +globe: + changes: + - '2' + - 5.0.0 + - 5.0.9 + label: Globe + search: + terms: + - all + - coordinates + - country + - earth + - global + - gps + - language + - localize + - location + - map + - online + - place + - planet + - translate + - travel + - world + styles: + - solid + unicode: f0ac +globe-africa: + changes: + - 5.1.0 + label: Globe with Africa shown + search: + terms: + - all + - country + - earth + - global + - gps + - language + - localize + - location + - map + - online + - place + - planet + - translate + - travel + - world + styles: + - solid + unicode: f57c +globe-americas: + changes: + - 5.1.0 + label: Globe with Americas shown + search: + terms: + - all + - country + - earth + - global + - gps + - language + - localize + - location + - map + - online + - place + - planet + - translate + - travel + - world + styles: + - solid + unicode: f57d +globe-asia: + changes: + - 5.1.0 + label: Globe with Asia shown + search: + terms: + - all + - country + - earth + - global + - gps + - language + - localize + - location + - map + - online + - place + - planet + - translate + - travel + - world + styles: + - solid + unicode: f57e +gofore: + changes: + - 5.0.0 + label: Gofore + search: + terms: [] + styles: + - brands + unicode: f3a7 +golf-ball: + changes: + - 5.0.5 + label: Golf Ball + search: + terms: [] + styles: + - solid + unicode: f450 +goodreads: + changes: + - 5.0.0 + label: Goodreads + search: + terms: [] + styles: + - brands + unicode: f3a8 +goodreads-g: + changes: + - 5.0.0 + label: Goodreads G + search: + terms: [] + styles: + - brands + unicode: f3a9 +google: + changes: + - '4.1' + - 5.0.0 + label: Google Logo + search: + terms: [] + styles: + - brands + unicode: f1a0 +google-drive: + changes: + - 5.0.0 + label: Google Drive + search: + terms: [] + styles: + - brands + unicode: f3aa +google-play: + changes: + - 5.0.0 + label: Google Play + search: + terms: [] + styles: + - brands + unicode: f3ab +google-plus: + changes: + - '4.6' + - 5.0.0 + label: Google Plus + search: + terms: + - google-plus-circle + - google-plus-official + styles: + - brands + unicode: f2b3 +google-plus-g: + changes: + - '2' + - 5.0.0 + label: Google Plus G + search: + terms: + - google-plus + - social network + styles: + - brands + unicode: f0d5 +google-plus-square: + changes: + - '2' + - 5.0.0 + label: Google Plus Square + search: + terms: + - social network + styles: + - brands + unicode: f0d4 +google-wallet: + changes: + - '4.2' + - 5.0.0 + label: Google Wallet + search: + terms: [] + styles: + - brands + unicode: f1ee +graduation-cap: + changes: + - '4.1' + - 5.0.0 + label: Graduation Cap + search: + terms: + - learning + - school + - student + styles: + - solid + unicode: f19d +gratipay: + changes: + - '3.2' + - 5.0.0 + label: Gratipay (Gittip) + search: + terms: + - favorite + - heart + - like + - love + styles: + - brands + unicode: f184 +grav: + changes: + - '4.7' + - 5.0.0 + label: Grav + search: + terms: [] + styles: + - brands + unicode: f2d6 +greater-than: + changes: + - 5.0.13 + label: Greater Than + search: + terms: [] + styles: + - solid + unicode: f531 +greater-than-equal: + changes: + - 5.0.13 + label: Greater Than Equal To + search: + terms: [] + styles: + - solid + unicode: f532 +grimace: + changes: + - 5.1.0 + label: Grimacing Face + search: + terms: + - cringe + - emoticon + - face + styles: + - solid + - regular + unicode: f57f +grin: + changes: + - 5.1.0 + label: Grinning Face + search: + terms: + - emoticon + - face + - laugh + - smile + styles: + - solid + - regular + unicode: f580 +grin-alt: + changes: + - 5.1.0 + label: Alternate Grinning Face + search: + terms: + - emoticon + - face + - laugh + - smile + styles: + - solid + - regular + unicode: f581 +grin-beam: + changes: + - 5.1.0 + label: Grinning Face With Smiling Eyes + search: + terms: + - emoticon + - face + - laugh + - smile + styles: + - solid + - regular + unicode: f582 +grin-beam-sweat: + changes: + - 5.1.0 + label: Grinning Face With Sweat + search: + terms: + - emoticon + - face + - smile + styles: + - solid + - regular + unicode: f583 +grin-hearts: + changes: + - 5.1.0 + label: Smiling Face With Heart-Eyes + search: + terms: + - emoticon + - face + - love + - smile + styles: + - solid + - regular + unicode: f584 +grin-squint: + changes: + - 5.1.0 + label: Grinning Squinting Face + search: + terms: + - emoticon + - face + - laugh + - smile + styles: + - solid + - regular + unicode: f585 +grin-squint-tears: + changes: + - 5.1.0 + label: Rolling on the Floor Laughing + search: + terms: + - emoticon + - face + - happy + - smile + styles: + - solid + - regular + unicode: f586 +grin-stars: + changes: + - 5.1.0 + label: Star-Struck + search: + terms: + - emoticon + - face + - star-struck + styles: + - solid + - regular + unicode: f587 +grin-tears: + changes: + - 5.1.0 + label: Face With Tears of Joy + search: + terms: + - LOL + - emoticon + - face + styles: + - solid + - regular + unicode: f588 +grin-tongue: + changes: + - 5.1.0 + label: Face With Tongue + search: + terms: + - LOL + - emoticon + - face + styles: + - solid + - regular + unicode: f589 +grin-tongue-squint: + changes: + - 5.1.0 + label: Squinting Face With Tongue + search: + terms: + - LOL + - emoticon + - face + styles: + - solid + - regular + unicode: f58a +grin-tongue-wink: + changes: + - 5.1.0 + label: Winking Face With Tongue + search: + terms: + - LOL + - emoticon + - face + styles: + - solid + - regular + unicode: f58b +grin-wink: + changes: + - 5.1.0 + - 5.1.1 + label: Grinning Winking Face + search: + terms: + - emoticon + - face + - flirt + - laugh + - smile + styles: + - solid + - regular + unicode: f58c +grip-horizontal: + changes: + - 5.1.0 + label: Grip Horizontal + search: + terms: + - affordance + - drag + - drop + - grab + - handle + styles: + - solid + unicode: f58d +grip-vertical: + changes: + - 5.1.0 + label: Grip Vertical + search: + terms: + - affordance + - drag + - drop + - grab + - handle + styles: + - solid + unicode: f58e +gripfire: + changes: + - 5.0.0 + label: 'Gripfire, Inc.' + search: + terms: [] + styles: + - brands + unicode: f3ac +grunt: + changes: + - 5.0.0 + label: Grunt + search: + terms: [] + styles: + - brands + unicode: f3ad +gulp: + changes: + - 5.0.0 + label: Gulp + search: + terms: [] + styles: + - brands + unicode: f3ae +h-square: + changes: + - '3' + - 5.0.0 + label: H Square + search: + terms: + - hospital + - hotel + styles: + - solid + unicode: f0fd +hacker-news: + changes: + - '4.1' + - 5.0.0 + label: Hacker News + search: + terms: [] + styles: + - brands + unicode: f1d4 +hacker-news-square: + changes: + - 5.0.0 + label: Hacker News Square + search: + terms: [] + styles: + - brands + unicode: f3af +hand-holding: + changes: + - 5.0.9 + label: Hand Holding + search: + terms: [] + styles: + - solid + unicode: f4bd +hand-holding-heart: + changes: + - 5.0.9 + label: Hand Holding Heart + search: + terms: [] + styles: + - solid + unicode: f4be +hand-holding-usd: + changes: + - 5.0.9 + label: Hand Holding US Dollar + search: + terms: + - $ + - dollar sign + - donation + - giving + - money + - price + styles: + - solid + unicode: f4c0 +hand-lizard: + changes: + - '4.4' + - 5.0.0 + label: Lizard (Hand) + search: + terms: [] + styles: + - solid + - regular + unicode: f258 +hand-paper: + changes: + - '4.4' + - 5.0.0 + label: Paper (Hand) + search: + terms: + - stop + styles: + - solid + - regular + unicode: f256 +hand-peace: + changes: + - '4.4' + - 5.0.0 + label: Peace (Hand) + search: + terms: [] + styles: + - solid + - regular + unicode: f25b +hand-point-down: + changes: + - '2' + - 5.0.0 + label: Hand Pointing Down + search: + terms: + - finger + - hand-o-down + - point + styles: + - solid + - regular + unicode: f0a7 +hand-point-left: + changes: + - '2' + - 5.0.0 + label: Hand Pointing Left + search: + terms: + - back + - finger + - hand-o-left + - left + - point + - previous + styles: + - solid + - regular + unicode: f0a5 +hand-point-right: + changes: + - '2' + - 5.0.0 + label: Hand Pointing Right + search: + terms: + - finger + - forward + - hand-o-right + - next + - point + - right + styles: + - solid + - regular + unicode: f0a4 +hand-point-up: + changes: + - '2' + - 5.0.0 + label: Hand Pointing Up + search: + terms: + - finger + - hand-o-up + - point + styles: + - solid + - regular + unicode: f0a6 +hand-pointer: + changes: + - '4.4' + - 5.0.0 + label: Pointer (Hand) + search: + terms: + - select + styles: + - solid + - regular + unicode: f25a +hand-rock: + changes: + - '4.4' + - 5.0.0 + label: Rock (Hand) + search: + terms: [] + styles: + - solid + - regular + unicode: f255 +hand-scissors: + changes: + - '4.4' + - 5.0.0 + label: Scissors (Hand) + search: + terms: [] + styles: + - solid + - regular + unicode: f257 +hand-spock: + changes: + - '4.4' + - 5.0.0 + label: Spock (Hand) + search: + terms: [] + styles: + - solid + - regular + unicode: f259 +hands: + changes: + - 5.0.9 + label: Hands + search: + terms: [] + styles: + - solid + unicode: f4c2 +hands-helping: + changes: + - 5.0.9 + label: Helping Hands + search: + terms: + - aid + - assistance + - partnership + - volunteering + styles: + - solid + unicode: f4c4 +handshake: + changes: + - '4.7' + - 5.0.0 + - 5.0.9 + label: Handshake + search: + terms: + - greeting + - partnership + styles: + - solid + - regular + unicode: f2b5 +hashtag: + changes: + - '4.5' + - 5.0.0 + label: Hashtag + search: + terms: [] + styles: + - solid + unicode: f292 +hdd: + changes: + - '2' + - 5.0.0 + label: HDD + search: + terms: + - cpu + - hard drive + - harddrive + - machine + - save + - storage + styles: + - solid + - regular + unicode: f0a0 +heading: + changes: + - '4.1' + - 5.0.0 + label: heading + search: + terms: + - header + - header + styles: + - solid + unicode: f1dc +headphones: + changes: + - '1' + - 5.0.0 + label: headphones + search: + terms: + - audio + - listen + - music + - sound + - speaker + styles: + - solid + unicode: f025 +headphones-alt: + changes: + - 5.1.0 + label: Headphones Alt + search: + terms: + - audio + - listen + - music + - sound + - speaker + styles: + - solid + unicode: f58f +headset: + changes: + - 5.1.0 + label: Headset + search: + terms: + - audio + - gamer + - gaming + - listen + - live chat + - microphone + - shot caller + - sound + - support + - telemarketer + styles: + - solid + unicode: f590 +heart: + changes: + - '1' + - 5.0.0 + - 5.0.9 + label: Heart + search: + terms: + - favorite + - like + - love + styles: + - solid + - regular + unicode: f004 +heartbeat: + changes: + - '4.3' + - 5.0.0 + - 5.0.7 + label: Heartbeat + search: + terms: + - ekg + - lifeline + - vital signs + styles: + - solid + unicode: f21e +helicopter: + changes: + - 5.0.13 + label: Helicopter + search: + terms: + - airwolf + - apache + - chopper + - flight + - fly + styles: + - solid + unicode: f533 +highlighter: + changes: + - 5.1.0 + label: Highlighter + search: + terms: + - edit + - marker + - sharpie + - update + - write + styles: + - solid + unicode: f591 +hips: + changes: + - 5.0.5 + label: Hips + search: + terms: [] + styles: + - brands + unicode: f452 +hire-a-helper: + changes: + - 5.0.0 + label: HireAHelper + search: + terms: [] + styles: + - brands + unicode: f3b0 +history: + changes: + - '4.1' + - 5.0.0 + label: History + search: + terms: [] + styles: + - solid + unicode: f1da +hockey-puck: + changes: + - 5.0.5 + label: Hockey Puck + search: + terms: [] + styles: + - solid + unicode: f453 +home: + changes: + - '1' + - 5.0.0 + label: home + search: + terms: + - house + - main + styles: + - solid + unicode: f015 +hooli: + changes: + - 5.0.0 + label: Hooli + search: + terms: [] + styles: + - brands + unicode: f427 +hornbill: + changes: + - 5.1.0 + label: Hornbill + search: + terms: [] + styles: + - brands + unicode: f592 +hospital: + changes: + - '3' + - 5.0.0 + label: hospital + search: + terms: + - building + - emergency room + - medical center + styles: + - solid + - regular + unicode: f0f8 +hospital-alt: + changes: + - 5.0.7 + label: Alternate Hospital + search: + terms: + - building + - emergency room + - medical center + styles: + - solid + unicode: f47d +hospital-symbol: + changes: + - 5.0.7 + label: Hospital Symbol + search: + terms: [] + styles: + - solid + unicode: f47e +hot-tub: + changes: + - 5.1.0 + label: Hot Tub + search: + terms: [] + styles: + - solid + unicode: f593 +hotel: + changes: + - 5.1.0 + label: Hotel + search: + terms: + - building + - lodging + styles: + - solid + unicode: f594 +hotjar: + changes: + - 5.0.0 + label: Hotjar + search: + terms: [] + styles: + - brands + unicode: f3b1 +hourglass: + changes: + - '4.4' + - 5.0.0 + label: Hourglass + search: + terms: [] + styles: + - solid + - regular + unicode: f254 +hourglass-end: + changes: + - '4.4' + - 5.0.0 + label: Hourglass End + search: + terms: [] + styles: + - solid + unicode: f253 +hourglass-half: + changes: + - '4.4' + - 5.0.0 + label: Hourglass Half + search: + terms: [] + styles: + - solid + unicode: f252 +hourglass-start: + changes: + - '4.4' + - 5.0.0 + label: Hourglass Start + search: + terms: [] + styles: + - solid + unicode: f251 +houzz: + changes: + - '4.4' + - 5.0.0 + - 5.0.9 + label: Houzz + search: + terms: [] + styles: + - brands + unicode: f27c +html5: + changes: + - '3.1' + - 5.0.0 + label: HTML 5 Logo + search: + terms: [] + styles: + - brands + unicode: f13b +hubspot: + changes: + - 5.0.0 + label: HubSpot + search: + terms: [] + styles: + - brands + unicode: f3b2 +i-cursor: + changes: + - '4.4' + - 5.0.0 + label: I Beam Cursor + search: + terms: [] + styles: + - solid + unicode: f246 +id-badge: + changes: + - '4.7' + - 5.0.0 + - 5.0.3 + label: Identification Badge + search: + terms: [] + styles: + - solid + - regular + unicode: f2c1 +id-card: + changes: + - '4.7' + - 5.0.0 + - 5.0.3 + label: Identification Card + search: + terms: + - document + - identification + - issued + styles: + - solid + - regular + unicode: f2c2 +id-card-alt: + changes: + - 5.0.7 + label: Alternate Identification Card + search: + terms: + - demographics + styles: + - solid + unicode: f47f +image: + changes: + - '1' + - 5.0.0 + label: Image + search: + terms: + - album + - photo + - picture + - picture + styles: + - solid + - regular + unicode: f03e +images: + changes: + - '1' + - 5.0.0 + label: Images + search: + terms: + - album + - photo + - picture + styles: + - solid + - regular + unicode: f302 +imdb: + changes: + - '4.7' + - 5.0.0 + label: IMDB + search: + terms: [] + styles: + - brands + unicode: f2d8 +inbox: + changes: + - '1' + - 5.0.0 + label: inbox + search: + terms: [] + styles: + - solid + unicode: f01c +indent: + changes: + - '1' + - 5.0.0 + label: Indent + search: + terms: [] + styles: + - solid + unicode: f03c +industry: + changes: + - '4.4' + - 5.0.0 + label: Industry + search: + terms: + - factory + - manufacturing + styles: + - solid + unicode: f275 +infinity: + changes: + - 5.0.13 + label: Infinity + search: + terms: [] + styles: + - solid + unicode: f534 +info: + changes: + - '3.1' + - 5.0.0 + label: Info + search: + terms: + - details + - help + - information + - more + styles: + - solid + unicode: f129 +info-circle: + changes: + - '1' + - 5.0.0 + label: Info Circle + search: + terms: + - details + - help + - information + - more + styles: + - solid + unicode: f05a +instagram: + changes: + - '4.6' + - 5.0.0 + label: Instagram + search: + terms: [] + styles: + - brands + unicode: f16d +internet-explorer: + changes: + - '4.4' + - 5.0.0 + label: Internet-explorer + search: + terms: + - browser + - ie + styles: + - brands + unicode: f26b +ioxhost: + changes: + - '4.2' + - 5.0.0 + label: ioxhost + search: + terms: [] + styles: + - brands + unicode: f208 +italic: + changes: + - '1' + - 5.0.0 + label: italic + search: + terms: + - italics + styles: + - solid + unicode: f033 +itunes: + changes: + - 5.0.0 + label: iTunes + search: + terms: [] + styles: + - brands + unicode: f3b4 +itunes-note: + changes: + - 5.0.0 + label: Itunes Note + search: + terms: [] + styles: + - brands + unicode: f3b5 +java: + changes: + - 5.0.10 + label: Java + search: + terms: [] + styles: + - brands + unicode: f4e4 +jedi-order: + changes: + - 5.0.12 + label: Jedi Order + search: + terms: [] + styles: + - brands + unicode: f50e +jenkins: + changes: + - 5.0.0 + label: Jenkis + search: + terms: [] + styles: + - brands + unicode: f3b6 +joget: + changes: + - 5.0.0 + label: Joget + search: + terms: [] + styles: + - brands + unicode: f3b7 +joint: + changes: + - 5.1.0 + label: Joint + search: + terms: + - blunt + - cannabis + - doobie + - drugs + - marijuana + - roach + - smoke + - smoking + - spliff + styles: + - solid + unicode: f595 +joomla: + changes: + - '4.1' + - 5.0.0 + label: Joomla Logo + search: + terms: [] + styles: + - brands + unicode: f1aa +js: + changes: + - 5.0.0 + label: JavaScript (JS) + search: + terms: [] + styles: + - brands + unicode: f3b8 +js-square: + changes: + - 5.0.0 + - 5.0.3 + label: JavaScript (JS) Square + search: + terms: [] + styles: + - brands + unicode: f3b9 +jsfiddle: + changes: + - '4.1' + - 5.0.0 + label: jsFiddle + search: + terms: [] + styles: + - brands + unicode: f1cc +key: + changes: + - '1' + - 5.0.0 + label: key + search: + terms: + - password + - unlock + styles: + - solid + unicode: f084 +keybase: + changes: + - 5.0.11 + label: Keybase + search: + terms: [] + styles: + - brands + unicode: f4f5 +keyboard: + changes: + - '3.1' + - 5.0.0 + label: Keyboard + search: + terms: + - input + - type + styles: + - solid + - regular + unicode: f11c +keycdn: + changes: + - 5.0.0 + label: KeyCDN + search: + terms: [] + styles: + - brands + unicode: f3ba +kickstarter: + changes: + - 5.0.0 + label: Kickstarter + search: + terms: [] + styles: + - brands + unicode: f3bb +kickstarter-k: + changes: + - 5.0.0 + label: Kickstarter K + search: + terms: [] + styles: + - brands + unicode: f3bc +kiss: + changes: + - 5.1.0 + - 5.1.1 + label: Kissing Face + search: + terms: + - beso + - emoticon + - face + - love + - smooch + styles: + - solid + - regular + unicode: f596 +kiss-beam: + changes: + - 5.1.0 + label: Kissing Face With Smiling Eyes + search: + terms: + - beso + - emoticon + - face + - love + - smooch + styles: + - solid + - regular + unicode: f597 +kiss-wink-heart: + changes: + - 5.1.0 + label: Face Blowing a Kiss + search: + terms: + - beso + - emoticon + - face + - love + - smooch + styles: + - solid + - regular + unicode: f598 +kiwi-bird: + changes: + - 5.0.13 + label: Kiwi Bird + search: + terms: [] + styles: + - solid + unicode: f535 +korvue: + changes: + - 5.0.2 + label: KORVUE + search: + terms: [] + styles: + - brands + unicode: f42f +language: + changes: + - '4.1' + - 5.0.0 + label: Language + search: + terms: + - dialect + - idiom + - localize + - speech + - translate + - vernacular + styles: + - solid + unicode: f1ab +laptop: + changes: + - '3' + - 5.0.0 + label: Laptop + search: + terms: + - computer + - cpu + - dell + - demo + - device + - dude you're getting + - mac + - macbook + - machine + - pc + - pc + styles: + - solid + unicode: f109 +laravel: + changes: + - 5.0.0 + - 5.0.3 + label: Laravel + search: + terms: [] + styles: + - brands + unicode: f3bd +lastfm: + changes: + - '4.2' + - 5.0.0 + label: last.fm + search: + terms: [] + styles: + - brands + unicode: f202 +lastfm-square: + changes: + - '4.2' + - 5.0.0 + - 5.0.11 + label: last.fm Square + search: + terms: [] + styles: + - brands + unicode: f203 +laugh: + changes: + - 5.1.0 + label: Grinning Face With Big Eyes + search: + terms: + - LOL + - emoticon + - face + - laugh + styles: + - solid + - regular + unicode: f599 +laugh-beam: + changes: + - 5.1.0 + label: Laugh Face with Beaming Eyes + search: + terms: + - LOL + - emoticon + - face + styles: + - solid + - regular + unicode: f59a +laugh-squint: + changes: + - 5.1.0 + label: Laughing Squinting Face + search: + terms: + - LOL + - emoticon + - face + styles: + - solid + - regular + unicode: f59b +laugh-wink: + changes: + - 5.1.0 + label: Laughing Winking Face + search: + terms: + - LOL + - emoticon + - face + styles: + - solid + - regular + unicode: f59c +leaf: + changes: + - '1' + - 5.0.0 + - 5.0.9 + label: leaf + search: + terms: + - eco + - nature + - plant + styles: + - solid + unicode: f06c +leanpub: + changes: + - '4.3' + - 5.0.0 + label: Leanpub + search: + terms: [] + styles: + - brands + unicode: f212 +lemon: + changes: + - '1' + - 5.0.0 + label: Lemon + search: + terms: + - food + styles: + - solid + - regular + unicode: f094 +less: + changes: + - 5.0.0 + label: Less + search: + terms: [] + styles: + - brands + unicode: f41d +less-than: + changes: + - 5.0.13 + label: Less Than + search: + terms: [] + styles: + - solid + unicode: f536 +less-than-equal: + changes: + - 5.0.13 + label: Less Than Equal To + search: + terms: [] + styles: + - solid + unicode: f537 +level-down-alt: + changes: + - 5.0.0 + label: Alternate Level Down + search: + terms: + - level-down + styles: + - solid + unicode: f3be +level-up-alt: + changes: + - 5.0.0 + label: Alternate Level Up + search: + terms: + - level-up + styles: + - solid + unicode: f3bf +life-ring: + changes: + - '4.1' + - 5.0.0 + label: Life Ring + search: + terms: + - support + styles: + - solid + - regular + unicode: f1cd +lightbulb: + changes: + - '3' + - 5.0.0 + label: Lightbulb + search: + terms: + - idea + - inspiration + styles: + - solid + - regular + unicode: f0eb +line: + changes: + - 5.0.0 + label: Line + search: + terms: [] + styles: + - brands + unicode: f3c0 +link: + changes: + - '2' + - 5.0.0 + label: Link + search: + terms: + - chain + styles: + - solid + unicode: f0c1 +linkedin: + changes: + - '1' + - 5.0.0 + label: LinkedIn + search: + terms: + - linkedin-square + styles: + - brands + unicode: f08c +linkedin-in: + changes: + - '2' + - 5.0.0 + label: LinkedIn In + search: + terms: + - linkedin + styles: + - brands + unicode: f0e1 +linode: + changes: + - '4.7' + - 5.0.0 + label: Linode + search: + terms: [] + styles: + - brands + unicode: f2b8 +linux: + changes: + - '3.2' + - 5.0.0 + label: Linux + search: + terms: + - tux + styles: + - brands + unicode: f17c +lira-sign: + changes: + - '4' + - 5.0.0 + label: Turkish Lira Sign + search: + terms: + - try + - try + - turkish + styles: + - solid + unicode: f195 +list: + changes: + - '1' + - 5.0.0 + label: List + search: + terms: + - checklist + - completed + - done + - finished + - ol + - todo + - ul + styles: + - solid + unicode: f03a +list-alt: + changes: + - '1' + - 5.0.0 + label: Alternate List + search: + terms: + - checklist + - completed + - done + - finished + - ol + - todo + - ul + styles: + - solid + - regular + unicode: f022 +list-ol: + changes: + - '2' + - 5.0.0 + label: list-ol + search: + terms: + - checklist + - list + - list + - numbers + - ol + - todo + - ul + styles: + - solid + unicode: f0cb +list-ul: + changes: + - '2' + - 5.0.0 + label: list-ul + search: + terms: + - checklist + - list + - ol + - todo + - ul + styles: + - solid + unicode: f0ca +location-arrow: + changes: + - '3.1' + - 5.0.0 + label: location-arrow + search: + terms: + - address + - coordinates + - gps + - location + - map + - place + - where + styles: + - solid + unicode: f124 +lock: + changes: + - '1' + - 5.0.0 + label: lock + search: + terms: + - admin + - protect + - security + styles: + - solid + unicode: f023 +lock-open: + changes: + - '3.1' + - 5.0.0 + - 5.0.1 + label: Lock Open + search: + terms: + - admin + - lock + - open + - password + - protect + styles: + - solid + unicode: f3c1 +long-arrow-alt-down: + changes: + - 5.0.0 + label: Alternate Long Arrow Down + search: + terms: + - long-arrow-down + styles: + - solid + unicode: f309 +long-arrow-alt-left: + changes: + - 5.0.0 + label: Alternate Long Arrow Left + search: + terms: + - back + - long-arrow-left + - previous + styles: + - solid + unicode: f30a +long-arrow-alt-right: + changes: + - 5.0.0 + label: Alternate Long Arrow Right + search: + terms: + - long-arrow-right + styles: + - solid + unicode: f30b +long-arrow-alt-up: + changes: + - 5.0.0 + label: Alternate Long Arrow Up + search: + terms: + - long-arrow-up + styles: + - solid + unicode: f30c +low-vision: + changes: + - '4.6' + - 5.0.0 + label: Low Vision + search: + terms: [] + styles: + - solid + unicode: f2a8 +luggage-cart: + changes: + - 5.1.0 + label: Luggage Cart + search: + terms: [] + styles: + - solid + unicode: f59d +lyft: + changes: + - 5.0.0 + label: lyft + search: + terms: [] + styles: + - brands + unicode: f3c3 +magento: + changes: + - 5.0.0 + label: Magento + search: + terms: [] + styles: + - brands + unicode: f3c4 +magic: + changes: + - '2' + - 5.0.0 + - 5.1.0 + label: magic + search: + terms: + - autocomplete + - automatic + - wizard + styles: + - solid + unicode: f0d0 +magnet: + changes: + - '1' + - 5.0.0 + label: magnet + search: + terms: [] + styles: + - solid + unicode: f076 +mailchimp: + changes: + - 5.1.0 + label: Mailchimp + search: + terms: [] + styles: + - brands + unicode: f59e +male: + changes: + - '3.2' + - 5.0.0 + label: Male + search: + terms: + - human + - man + - person + - profile + - user + styles: + - solid + unicode: f183 +mandalorian: + changes: + - 5.0.12 + label: Mandalorian + search: + terms: [] + styles: + - brands + unicode: f50f +map: + changes: + - '4.4' + - 5.0.0 + - 5.1.0 + label: Map + search: + terms: + - coordinates + - location + - paper + - place + - travel + styles: + - solid + - regular + unicode: f279 +map-marked: + changes: + - 5.1.0 + label: Map Marked + search: + terms: + - address + - coordinates + - destination + - gps + - localize + - location + - map + - paper + - pin + - place + - point of interest + - position + - route + - travel + - where + styles: + - solid + unicode: f59f +map-marked-alt: + changes: + - 5.1.0 + label: Map Marked-alt + search: + terms: + - address + - coordinates + - destination + - gps + - localize + - location + - map + - paper + - pin + - place + - point of interest + - position + - route + - travel + - where + styles: + - solid + unicode: f5a0 +map-marker: + changes: + - '1' + - 5.0.0 + label: map-marker + search: + terms: + - address + - coordinates + - gps + - localize + - location + - map + - pin + - place + - position + - travel + - where + styles: + - solid + unicode: f041 +map-marker-alt: + changes: + - 5.0.0 + label: Alternate Map Marker + search: + terms: + - address + - coordinates + - gps + - localize + - location + - map + - pin + - place + - position + - travel + - where + styles: + - solid + unicode: f3c5 +map-pin: + changes: + - '4.4' + - 5.0.0 + label: Map Pin + search: + terms: + - address + - coordinates + - gps + - localize + - location + - map + - marker + - place + - position + - travel + - where + styles: + - solid + unicode: f276 +map-signs: + changes: + - '4.4' + - 5.0.0 + label: Map Signs + search: + terms: [] + styles: + - solid + unicode: f277 +marker: + changes: + - 5.1.0 + label: Marker + search: + terms: + - edit + - sharpie + - update + - write + styles: + - solid + unicode: f5a1 +mars: + changes: + - '4.3' + - 5.0.0 + label: Mars + search: + terms: + - male + styles: + - solid + unicode: f222 +mars-double: + changes: + - '4.3' + - 5.0.0 + label: Mars Double + search: + terms: [] + styles: + - solid + unicode: f227 +mars-stroke: + changes: + - '4.3' + - 5.0.0 + label: Mars Stroke + search: + terms: [] + styles: + - solid + unicode: f229 +mars-stroke-h: + changes: + - '4.3' + - 5.0.0 + label: Mars Stroke Horizontal + search: + terms: [] + styles: + - solid + unicode: f22b +mars-stroke-v: + changes: + - '4.3' + - 5.0.0 + label: Mars Stroke Vertical + search: + terms: [] + styles: + - solid + unicode: f22a +mastodon: + changes: + - 5.0.11 + label: Mastodon + search: + terms: [] + styles: + - brands + unicode: f4f6 +maxcdn: + changes: + - '3.1' + - 5.0.0 + label: MaxCDN + search: + terms: [] + styles: + - brands + unicode: f136 +medal: + changes: + - 5.1.0 + label: Medal + search: + terms: [] + styles: + - solid + unicode: f5a2 +medapps: + changes: + - 5.0.0 + label: MedApps + search: + terms: [] + styles: + - brands + unicode: f3c6 +medium: + changes: + - '4.3' + - 5.0.0 + label: Medium + search: + terms: [] + styles: + - brands + unicode: f23a +medium-m: + changes: + - 5.0.0 + label: Medium M + search: + terms: [] + styles: + - brands + unicode: f3c7 +medkit: + changes: + - '3' + - 5.0.0 + label: medkit + search: + terms: + - first aid + - firstaid + - health + - help + - support + styles: + - solid + unicode: f0fa +medrt: + changes: + - 5.0.0 + label: MRT + search: + terms: [] + styles: + - brands + unicode: f3c8 +meetup: + changes: + - '4.7' + - 5.0.0 + label: Meetup + search: + terms: [] + styles: + - brands + unicode: f2e0 +megaport: + changes: + - 5.1.0 + label: Megaport + search: + terms: [] + styles: + - brands + unicode: f5a3 +meh: + changes: + - '3.1' + - 5.0.0 + - 5.0.9 + - 5.1.0 + label: Neutral Face + search: + terms: + - emoticon + - face + - neutral + - rating + styles: + - solid + - regular + unicode: f11a +meh-blank: + changes: + - 5.1.0 + label: Face Without Mouth + search: + terms: + - emoticon + - face + - neutral + - rating + styles: + - solid + - regular + unicode: f5a4 +meh-rolling-eyes: + changes: + - 5.1.0 + label: Face With Rolling Eyes + search: + terms: + - emoticon + - face + - neutral + - rating + styles: + - solid + - regular + unicode: f5a5 +memory: + changes: + - 5.0.13 + label: Memory + search: + terms: + - DIMM + - RAM + styles: + - solid + unicode: f538 +mercury: + changes: + - '4.3' + - 5.0.0 + label: Mercury + search: + terms: + - transgender + styles: + - solid + unicode: f223 +microchip: + changes: + - '4.7' + - 5.0.0 + label: Microchip + search: + terms: + - cpu + - processor + styles: + - solid + unicode: f2db +microphone: + changes: + - '3.1' + - 5.0.0 + - 5.0.13 + label: microphone + search: + terms: + - record + - sound + - voice + styles: + - solid + unicode: f130 +microphone-alt: + changes: + - 5.0.0 + - 5.0.13 + label: Alternate Microphone + search: + terms: + - record + - sound + - voice + styles: + - solid + unicode: f3c9 +microphone-alt-slash: + changes: + - 5.0.13 + label: Alternate Microphone Slash + search: + terms: + - disable + - mute + - record + - sound + - voice + styles: + - solid + unicode: f539 +microphone-slash: + changes: + - '3.1' + - 5.0.0 + - 5.0.13 + label: Microphone Slash + search: + terms: + - disable + - mute + - record + - sound + - voice + styles: + - solid + unicode: f131 +microsoft: + changes: + - 5.0.0 + label: Microsoft + search: + terms: [] + styles: + - brands + unicode: f3ca +minus: + changes: + - '1' + - 5.0.0 + label: minus + search: + terms: + - collapse + - delete + - hide + - hide + - minify + - remove + - trash + styles: + - solid + unicode: f068 +minus-circle: + changes: + - '1' + - 5.0.0 + label: Minus Circle + search: + terms: + - delete + - hide + - remove + - trash + styles: + - solid + unicode: f056 +minus-square: + changes: + - '3.1' + - 5.0.0 + label: Minus Square + search: + terms: + - collapse + - delete + - hide + - hide + - minify + - remove + - trash + styles: + - solid + - regular + unicode: f146 +mix: + changes: + - 5.0.0 + - 5.0.3 + label: Mix + search: + terms: [] + styles: + - brands + unicode: f3cb +mixcloud: + changes: + - '4.5' + - 5.0.0 + label: Mixcloud + search: + terms: [] + styles: + - brands + unicode: f289 +mizuni: + changes: + - 5.0.0 + label: Mizuni + search: + terms: [] + styles: + - brands + unicode: f3cc +mobile: + changes: + - '3' + - 5.0.0 + label: Mobile Phone + search: + terms: + - apple + - call + - cell phone + - cellphone + - device + - iphone + - number + - screen + - telephone + - text + styles: + - solid + unicode: f10b +mobile-alt: + changes: + - 5.0.0 + label: Alternate Mobile + search: + terms: + - apple + - call + - cell phone + - cellphone + - device + - iphone + - number + - screen + - telephone + - text + styles: + - solid + unicode: f3cd +modx: + changes: + - '4.5' + - 5.0.0 + label: MODX + search: + terms: [] + styles: + - brands + unicode: f285 +monero: + changes: + - 5.0.0 + label: Monero + search: + terms: [] + styles: + - brands + unicode: f3d0 +money-bill: + changes: + - '2' + - 5.0.0 + - 5.0.13 + label: Money Bill + search: + terms: + - buy + - cash + - checkout + - money + - payment + - price + - purchase + styles: + - solid + unicode: f0d6 +money-bill-alt: + changes: + - 5.0.0 + - 5.0.13 + label: Alternate Money Bill + search: + terms: + - buy + - cash + - checkout + - money + - payment + - price + - purchase + styles: + - solid + - regular + unicode: f3d1 +money-bill-wave: + changes: + - 5.0.13 + label: Wavy Money Bill + search: + terms: [] + styles: + - solid + unicode: f53a +money-bill-wave-alt: + changes: + - 5.0.13 + label: Alternate Wavy Money Bill + search: + terms: [] + styles: + - solid + unicode: f53b +money-check: + changes: + - 5.0.13 + label: Money Check + search: + terms: + - bank check + - cheque + styles: + - solid + unicode: f53c +money-check-alt: + changes: + - 5.0.13 + label: Alternate Money Check + search: + terms: + - bank check + - cheque + styles: + - solid + unicode: f53d +monument: + changes: + - 5.1.0 + label: Monument + search: + terms: + - building + - historic + - memoroable + styles: + - solid + unicode: f5a6 +moon: + changes: + - '3.2' + - 5.0.0 + label: Moon + search: + terms: + - contrast + - darker + - night + styles: + - solid + - regular + unicode: f186 +mortar-pestle: + changes: + - 5.1.0 + label: Mortar Pestle + search: + terms: + - crush + - culinary + - grind + - medical + - mix + - spices + styles: + - solid + unicode: f5a7 +motorcycle: + changes: + - '4.3' + - 5.0.0 + label: Motorcycle + search: + terms: + - bike + - machine + - transportation + - vehicle + styles: + - solid + unicode: f21c +mouse-pointer: + changes: + - '4.4' + - 5.0.0 + - 5.0.3 + label: Mouse Pointer + search: + terms: + - select + styles: + - solid + unicode: f245 +music: + changes: + - '1' + - 5.0.0 + label: Music + search: + terms: + - note + - sound + styles: + - solid + unicode: f001 +napster: + changes: + - 5.0.0 + label: Napster + search: + terms: [] + styles: + - brands + unicode: f3d2 +neuter: + changes: + - '4.3' + - 5.0.0 + label: Neuter + search: + terms: [] + styles: + - solid + unicode: f22c +newspaper: + changes: + - '4.2' + - 5.0.0 + label: Newspaper + search: + terms: + - article + - press + styles: + - solid + - regular + unicode: f1ea +nimblr: + changes: + - 5.1.0 + label: Nimblr + search: + terms: [] + styles: + - brands + unicode: f5a8 +nintendo-switch: + changes: + - 5.0.0 + label: Nintendo Switch + search: + terms: [] + styles: + - brands + unicode: f418 +node: + changes: + - 5.0.0 + label: Node.js + search: + terms: [] + styles: + - brands + unicode: f419 +node-js: + changes: + - 5.0.0 + - 5.0.3 + label: Node.js JS + search: + terms: [] + styles: + - brands + unicode: f3d3 +not-equal: + changes: + - 5.0.13 + label: Not Equal + search: + terms: [] + styles: + - solid + unicode: f53e +notes-medical: + changes: + - 5.0.7 + label: Medical Notes + search: + terms: [] + styles: + - solid + unicode: f481 +npm: + changes: + - 5.0.0 + label: npm + search: + terms: [] + styles: + - brands + unicode: f3d4 +ns8: + changes: + - 5.0.0 + label: NS8 + search: + terms: [] + styles: + - brands + unicode: f3d5 +nutritionix: + changes: + - 5.0.0 + label: Nutritionix + search: + terms: [] + styles: + - brands + unicode: f3d6 +object-group: + changes: + - '4.4' + - 5.0.0 + label: Object Group + search: + terms: + - design + styles: + - solid + - regular + unicode: f247 +object-ungroup: + changes: + - '4.4' + - 5.0.0 + label: Object Ungroup + search: + terms: + - design + styles: + - solid + - regular + unicode: f248 +odnoklassniki: + changes: + - '4.4' + - 5.0.0 + label: Odnoklassniki + search: + terms: [] + styles: + - brands + unicode: f263 +odnoklassniki-square: + changes: + - '4.4' + - 5.0.0 + label: Odnoklassniki Square + search: + terms: [] + styles: + - brands + unicode: f264 +old-republic: + changes: + - 5.0.12 + label: Old Republic + search: + terms: [] + styles: + - brands + unicode: f510 +opencart: + changes: + - '4.4' + - 5.0.0 + label: OpenCart + search: + terms: [] + styles: + - brands + unicode: f23d +openid: + changes: + - '4.1' + - 5.0.0 + label: OpenID + search: + terms: [] + styles: + - brands + unicode: f19b +opera: + changes: + - '4.4' + - 5.0.0 + label: Opera + search: + terms: [] + styles: + - brands + unicode: f26a +optin-monster: + changes: + - '4.4' + - 5.0.0 + label: Optin Monster + search: + terms: [] + styles: + - brands + unicode: f23c +osi: + changes: + - 5.0.0 + label: Open Source Initiative + search: + terms: [] + styles: + - brands + unicode: f41a +outdent: + changes: + - '1' + - 5.0.0 + label: Outdent + search: + terms: [] + styles: + - solid + unicode: f03b +page4: + changes: + - 5.0.0 + label: page4 Corporation + search: + terms: [] + styles: + - brands + unicode: f3d7 +pagelines: + changes: + - '4' + - 5.0.0 + label: Pagelines + search: + terms: + - eco + - leaf + - leaves + - nature + - plant + - tree + styles: + - brands + unicode: f18c +paint-brush: + changes: + - '4.2' + - 5.0.0 + - 5.1.0 + label: Paint Brush + search: + terms: [] + styles: + - solid + unicode: f1fc +paint-roller: + changes: + - 5.1.0 + label: Paint Roller + search: + terms: + - brush + - painting + - tool + styles: + - solid + unicode: f5aa +palette: + changes: + - 5.0.13 + label: Palette + search: + terms: + - colors + - painting + styles: + - solid + unicode: f53f +palfed: + changes: + - 5.0.0 + - 5.0.3 + label: Palfed + search: + terms: [] + styles: + - brands + unicode: f3d8 +pallet: + changes: + - 5.0.7 + label: Pallet + search: + terms: [] + styles: + - solid + unicode: f482 +paper-plane: + changes: + - '4.1' + - 5.0.0 + label: Paper Plane + search: + terms: [] + styles: + - solid + - regular + unicode: f1d8 +paperclip: + changes: + - '2' + - 5.0.0 + label: Paperclip + search: + terms: + - attachment + styles: + - solid + unicode: f0c6 +parachute-box: + changes: + - 5.0.9 + label: Parachute Box + search: + terms: + - aid + - assistance + - rescue + - supplies + styles: + - solid + unicode: f4cd +paragraph: + changes: + - '4.1' + - 5.0.0 + label: paragraph + search: + terms: [] + styles: + - solid + unicode: f1dd +parking: + changes: + - 5.0.13 + label: Parking + search: + terms: [] + styles: + - solid + unicode: f540 +passport: + changes: + - 5.1.0 + label: Passport + search: + terms: + - document + - identification + - issued + styles: + - solid + unicode: f5ab +paste: + changes: + - '2' + - 5.0.0 + label: Paste + search: + terms: + - clipboard + - copy + styles: + - solid + unicode: f0ea +patreon: + changes: + - 5.0.0 + - 5.0.3 + label: Patreon + search: + terms: [] + styles: + - brands + unicode: f3d9 +pause: + changes: + - '1' + - 5.0.0 + label: pause + search: + terms: + - wait + styles: + - solid + unicode: f04c +pause-circle: + changes: + - '4.5' + - 5.0.0 + label: Pause Circle + search: + terms: [] + styles: + - solid + - regular + unicode: f28b +paw: + changes: + - '4.1' + - 5.0.0 + label: Paw + search: + terms: + - pet + styles: + - solid + unicode: f1b0 +paypal: + changes: + - '4.2' + - 5.0.0 + label: Paypal + search: + terms: [] + styles: + - brands + unicode: f1ed +pen: + changes: + - 5.0.0 + - 5.1.0 + label: Pen + search: + terms: + - design + - edit + - update + - write + styles: + - solid + unicode: f304 +pen-alt: + changes: + - 5.0.0 + - 5.1.0 + label: Alternate Pen + search: + terms: + - design + - edit + - update + - write + styles: + - solid + unicode: f305 +pen-fancy: + changes: + - 5.1.0 + label: Pen Fancy + search: + terms: + - design + - edit + - fountain pen + - update + - write + styles: + - solid + unicode: f5ac +pen-nib: + changes: + - 5.1.0 + label: Pen Nib + search: + terms: + - design + - edit + - fountain pen + - update + - write + styles: + - solid + unicode: f5ad +pen-square: + changes: + - '3.1' + - 5.0.0 + label: Pen Square + search: + terms: + - edit + - pencil-square + - update + - write + styles: + - solid + unicode: f14b +pencil-alt: + changes: + - 5.0.0 + label: Alternate Pencil + search: + terms: + - design + - edit + - pencil + - update + - write + styles: + - solid + unicode: f303 +pencil-ruler: + changes: + - 5.1.0 + label: Pencil Ruler + search: + terms: [] + styles: + - solid + unicode: f5ae +people-carry: + changes: + - 5.0.9 + label: People Carry + search: + terms: + - movers + styles: + - solid + unicode: f4ce +percent: + changes: + - '4.5' + - 5.0.0 + label: Percent + search: + terms: [] + styles: + - solid + unicode: f295 +percentage: + changes: + - 5.0.13 + label: Percentage + search: + terms: [] + styles: + - solid + unicode: f541 +periscope: + changes: + - 5.0.0 + label: Periscope + search: + terms: [] + styles: + - brands + unicode: f3da +phabricator: + changes: + - 5.0.0 + label: Phabricator + search: + terms: [] + styles: + - brands + unicode: f3db +phoenix-framework: + changes: + - 5.0.0 + - 5.0.3 + label: Phoenix Framework + search: + terms: [] + styles: + - brands + unicode: f3dc +phoenix-squadron: + changes: + - 5.0.12 + label: Phoenix Squadron + search: + terms: [] + styles: + - brands + unicode: f511 +phone: + changes: + - '2' + - 5.0.0 + label: Phone + search: + terms: + - call + - earphone + - number + - support + - telephone + - voice + styles: + - solid + unicode: f095 +phone-slash: + changes: + - 5.0.0 + - 5.0.9 + label: Phone Slash + search: + terms: [] + styles: + - solid + unicode: f3dd +phone-square: + changes: + - '2' + - 5.0.0 + label: Phone Square + search: + terms: + - call + - number + - support + - telephone + - voice + styles: + - solid + unicode: f098 +phone-volume: + changes: + - '4.6' + - 5.0.0 + - 5.0.3 + label: Phone Volume + search: + terms: + - telephone + - volume-control-phone + styles: + - solid + unicode: f2a0 +php: + changes: + - 5.0.5 + label: PHP + search: + terms: [] + styles: + - brands + unicode: f457 +pied-piper: + changes: + - '4.6' + - 5.0.0 + - 5.0.10 + label: Pied Piper Logo + search: + terms: [] + styles: + - brands + unicode: f2ae +pied-piper-alt: + changes: + - '4.1' + - 5.0.0 + label: Alternate Pied Piper Logo + search: + terms: [] + styles: + - brands + unicode: f1a8 +pied-piper-hat: + changes: + - 5.0.10 + label: Pied Piper-hat + search: + terms: + - clothing + styles: + - brands + unicode: f4e5 +pied-piper-pp: + changes: + - '4.1' + - 5.0.0 + label: Pied Piper PP Logo (Old) + search: + terms: [] + styles: + - brands + unicode: f1a7 +piggy-bank: + changes: + - 5.0.9 + label: Piggy Bank + search: + terms: + - save + - savings + styles: + - solid + unicode: f4d3 +pills: + changes: + - 5.0.7 + label: Pills + search: + terms: + - drugs + - medicine + styles: + - solid + unicode: f484 +pinterest: + changes: + - '2' + - 5.0.0 + label: Pinterest + search: + terms: [] + styles: + - brands + unicode: f0d2 +pinterest-p: + changes: + - '4.3' + - 5.0.0 + label: Pinterest P + search: + terms: [] + styles: + - brands + unicode: f231 +pinterest-square: + changes: + - '2' + - 5.0.0 + label: Pinterest Square + search: + terms: [] + styles: + - brands + unicode: f0d3 +plane: + changes: + - '1' + - 5.0.0 + - 5.0.13 + label: plane + search: + terms: + - airplane + - destination + - fly + - location + - mode + - travel + - trip + styles: + - solid + unicode: f072 +plane-arrival: + changes: + - 5.1.0 + label: Plane Arrival + search: + terms: + - airplane + - arriving + - destination + - fly + - land + - landing + - location + - mode + - travel + - trip + styles: + - solid + unicode: f5af +plane-departure: + changes: + - 5.1.0 + label: Plane Departure + search: + terms: + - airplane + - departing + - destination + - fly + - location + - mode + - take off + - taking off + - travel + - trip + styles: + - solid + unicode: f5b0 +play: + changes: + - '1' + - 5.0.0 + label: play + search: + terms: + - music + - playing + - sound + - start + styles: + - solid + unicode: f04b +play-circle: + changes: + - '3.1' + - 5.0.0 + label: Play Circle + search: + terms: + - playing + - start + styles: + - solid + - regular + unicode: f144 +playstation: + changes: + - 5.0.0 + label: PlayStation + search: + terms: [] + styles: + - brands + unicode: f3df +plug: + changes: + - '4.2' + - 5.0.0 + label: Plug + search: + terms: + - connect + - online + - power + styles: + - solid + unicode: f1e6 +plus: + changes: + - '1' + - 5.0.0 + - 5.0.13 + label: plus + search: + terms: + - add + - create + - expand + - new + styles: + - solid + unicode: f067 +plus-circle: + changes: + - '1' + - 5.0.0 + label: Plus Circle + search: + terms: + - add + - create + - expand + - new + styles: + - solid + unicode: f055 +plus-square: + changes: + - '3' + - 5.0.0 + label: Plus Square + search: + terms: + - add + - create + - expand + - new + styles: + - solid + - regular + unicode: f0fe +podcast: + changes: + - '4.7' + - 5.0.0 + label: Podcast + search: + terms: [] + styles: + - solid + unicode: f2ce +poo: + changes: + - 5.0.0 + - 5.0.9 + label: Poo + search: + terms: [] + styles: + - solid + unicode: f2fe +portrait: + changes: + - 5.0.0 + - 5.0.3 + label: Portrait + search: + terms: [] + styles: + - solid + unicode: f3e0 +pound-sign: + changes: + - '3.2' + - 5.0.0 + label: Pound Sign + search: + terms: + - gbp + - gbp + styles: + - solid + unicode: f154 +power-off: + changes: + - '1' + - 5.0.0 + label: Power Off + search: + terms: + - 'on' + - reboot + - restart + styles: + - solid + unicode: f011 +prescription: + changes: + - 5.1.0 + label: Prescription + search: + terms: + - drugs + - medical + - medicine + - rx + styles: + - solid + unicode: f5b1 +prescription-bottle: + changes: + - 5.0.7 + label: Prescription Bottle + search: + terms: + - drugs + - medical + - medicine + - rx + styles: + - solid + unicode: f485 +prescription-bottle-alt: + changes: + - 5.0.7 + label: Alternate Prescription Bottle + search: + terms: + - drugs + - medical + - medicine + - rx + styles: + - solid + unicode: f486 +print: + changes: + - '1' + - 5.0.0 + label: print + search: + terms: [] + styles: + - solid + unicode: f02f +procedures: + changes: + - 5.0.7 + label: Procedures + search: + terms: [] + styles: + - solid + unicode: f487 +product-hunt: + changes: + - '4.5' + - 5.0.0 + label: Product Hunt + search: + terms: [] + styles: + - brands + unicode: f288 +project-diagram: + changes: + - 5.0.13 + label: Project Diagram + search: + terms: [] + styles: + - solid + unicode: f542 +pushed: + changes: + - 5.0.0 + label: Pushed + search: + terms: [] + styles: + - brands + unicode: f3e1 +puzzle-piece: + changes: + - '3.1' + - 5.0.0 + label: Puzzle Piece + search: + terms: + - add-on + - addon + - section + styles: + - solid + unicode: f12e +python: + changes: + - 5.0.0 + label: Python + search: + terms: [] + styles: + - brands + unicode: f3e2 +qq: + changes: + - '4.1' + - 5.0.0 + label: QQ + search: + terms: [] + styles: + - brands + unicode: f1d6 +qrcode: + changes: + - '1' + - 5.0.0 + label: qrcode + search: + terms: + - scan + styles: + - solid + unicode: f029 +question: + changes: + - '3.1' + - 5.0.0 + label: Question + search: + terms: + - help + - information + - support + - unknown + styles: + - solid + unicode: f128 +question-circle: + changes: + - '1' + - 5.0.0 + label: Question Circle + search: + terms: + - help + - information + - support + - unknown + styles: + - solid + - regular + unicode: f059 +quidditch: + changes: + - 5.0.5 + label: Quidditch + search: + terms: [] + styles: + - solid + unicode: f458 +quinscape: + changes: + - 5.0.5 + label: QuinScape + search: + terms: [] + styles: + - brands + unicode: f459 +quora: + changes: + - '4.7' + - 5.0.0 + label: Quora + search: + terms: [] + styles: + - brands + unicode: f2c4 +quote-left: + changes: + - '3' + - 5.0.0 + - 5.0.9 + label: quote-left + search: + terms: [] + styles: + - solid + unicode: f10d +quote-right: + changes: + - '3' + - 5.0.0 + - 5.0.9 + label: quote-right + search: + terms: [] + styles: + - solid + unicode: f10e +r-project: + changes: + - 5.0.11 + - 5.0.12 + label: R Project + search: + terms: [] + styles: + - brands + unicode: f4f7 +random: + changes: + - '1' + - 5.0.0 + label: random + search: + terms: + - shuffle + - sort + styles: + - solid + unicode: f074 +ravelry: + changes: + - '4.7' + - 5.0.0 + label: Ravelry + search: + terms: [] + styles: + - brands + unicode: f2d9 +react: + changes: + - 5.0.0 + label: React + search: + terms: [] + styles: + - brands + unicode: f41b +readme: + changes: + - 5.0.9 + - 5.0.10 + label: ReadMe + search: + terms: [] + styles: + - brands + unicode: f4d5 +rebel: + changes: + - '4.1' + - 5.0.0 + label: Rebel Alliance + search: + terms: [] + styles: + - brands + unicode: f1d0 +receipt: + changes: + - 5.0.13 + label: Receipt + search: + terms: + - check + - invoice + - table + styles: + - solid + unicode: f543 +recycle: + changes: + - '4.1' + - 5.0.0 + label: Recycle + search: + terms: [] + styles: + - solid + unicode: f1b8 +red-river: + changes: + - 5.0.0 + label: red river + search: + terms: [] + styles: + - brands + unicode: f3e3 +reddit: + changes: + - '4.1' + - 5.0.0 + label: reddit Logo + search: + terms: [] + styles: + - brands + unicode: f1a1 +reddit-alien: + changes: + - '4.5' + - 5.0.0 + label: reddit Alien + search: + terms: [] + styles: + - brands + unicode: f281 +reddit-square: + changes: + - '4.1' + - 5.0.0 + label: reddit Square + search: + terms: [] + styles: + - brands + unicode: f1a2 +redo: + changes: + - '1' + - 5.0.0 + label: Redo + search: + terms: + - forward + - repeat + - repeat + styles: + - solid + unicode: f01e +redo-alt: + changes: + - 5.0.0 + label: Alternate Redo + search: + terms: + - forward + - repeat + styles: + - solid + unicode: f2f9 +registered: + changes: + - '4.4' + - 5.0.0 + label: Registered Trademark + search: + terms: [] + styles: + - solid + - regular + unicode: f25d +rendact: + changes: + - 5.0.0 + label: Rendact + search: + terms: [] + styles: + - brands + unicode: f3e4 +renren: + changes: + - '3.2' + - 5.0.0 + label: Renren + search: + terms: [] + styles: + - brands + unicode: f18b +reply: + changes: + - '3' + - 5.0.0 + label: Reply + search: + terms: [] + styles: + - solid + unicode: f3e5 +reply-all: + changes: + - '3.1' + - 5.0.0 + label: reply-all + search: + terms: [] + styles: + - solid + unicode: f122 +replyd: + changes: + - 5.0.0 + label: replyd + search: + terms: [] + styles: + - brands + unicode: f3e6 +researchgate: + changes: + - 5.0.11 + label: Researchgate + search: + terms: [] + styles: + - brands + unicode: f4f8 +resolving: + changes: + - 5.0.0 + label: Resolving + search: + terms: [] + styles: + - brands + unicode: f3e7 +retweet: + changes: + - '1' + - 5.0.0 + label: Retweet + search: + terms: + - refresh + - reload + - share + - swap + styles: + - solid + unicode: f079 +rev: + changes: + - 5.1.0 + - 5.1.1 + label: Rev.io + search: + terms: [] + styles: + - brands + unicode: f5b2 +ribbon: + changes: + - 5.0.9 + label: Ribbon + search: + terms: + - badge + - cause + - lapel + - pin + styles: + - solid + unicode: f4d6 +road: + changes: + - '1' + - 5.0.0 + label: road + search: + terms: + - street + styles: + - solid + unicode: f018 +robot: + changes: + - 5.0.13 + label: Robot + search: + terms: [] + styles: + - solid + unicode: f544 +rocket: + changes: + - '3.1' + - 5.0.0 + label: rocket + search: + terms: + - app + styles: + - solid + unicode: f135 +rocketchat: + changes: + - 5.0.0 + label: Rocket.Chat + search: + terms: [] + styles: + - brands + unicode: f3e8 +rockrms: + changes: + - 5.0.0 + label: Rockrms + search: + terms: [] + styles: + - brands + unicode: f3e9 +rss: + changes: + - '2' + - 5.0.0 + label: rss + search: + terms: + - blog + styles: + - solid + unicode: f09e +rss-square: + changes: + - '3.1' + - 5.0.0 + label: RSS Square + search: + terms: + - blog + - feed + styles: + - solid + unicode: f143 +ruble-sign: + changes: + - '4' + - 5.0.0 + label: Ruble Sign + search: + terms: + - rub + - rub + styles: + - solid + unicode: f158 +ruler: + changes: + - 5.0.13 + label: Ruler + search: + terms: [] + styles: + - solid + unicode: f545 +ruler-combined: + changes: + - 5.0.13 + label: Ruler Combined + search: + terms: [] + styles: + - solid + unicode: f546 +ruler-horizontal: + changes: + - 5.0.13 + label: Ruler Horizontal + search: + terms: [] + styles: + - solid + unicode: f547 +ruler-vertical: + changes: + - 5.0.13 + label: Ruler Vertical + search: + terms: [] + styles: + - solid + unicode: f548 +rupee-sign: + changes: + - '3.2' + - 5.0.0 + label: Indian Rupee Sign + search: + terms: + - indian + - inr + styles: + - solid + unicode: f156 +sad-cry: + changes: + - 5.1.0 + label: Crying Face + search: + terms: + - emoticon + - face + - tear + - tears + styles: + - solid + - regular + unicode: f5b3 +sad-tear: + changes: + - 5.1.0 + label: Loudly Crying Face + search: + terms: + - emoticon + - face + - tear + - tears + styles: + - solid + - regular + unicode: f5b4 +safari: + changes: + - '4.4' + - 5.0.0 + label: Safari + search: + terms: + - browser + styles: + - brands + unicode: f267 +sass: + changes: + - 5.0.0 + label: Sass + search: + terms: [] + styles: + - brands + unicode: f41e +save: + changes: + - '2' + - 5.0.0 + label: Save + search: + terms: + - floppy + - floppy-o + styles: + - solid + - regular + unicode: f0c7 +schlix: + changes: + - 5.0.0 + label: SCHLIX + search: + terms: [] + styles: + - brands + unicode: f3ea +school: + changes: + - 5.0.13 + label: School + search: + terms: [] + styles: + - solid + unicode: f549 +screwdriver: + changes: + - 5.0.13 + label: Screwdriver + search: + terms: + - admin + - container + - fix + - repair + - settings + - tool + styles: + - solid + unicode: f54a +scribd: + changes: + - '4.5' + - 5.0.0 + label: Scribd + search: + terms: [] + styles: + - brands + unicode: f28a +search: + changes: + - '1' + - 5.0.0 + label: Search + search: + terms: + - bigger + - enlarge + - magnify + - preview + - zoom + styles: + - solid + unicode: f002 +search-minus: + changes: + - '1' + - 5.0.0 + - 5.0.13 + label: Search Minus + search: + terms: + - magnify + - minify + - smaller + - zoom + - zoom out + styles: + - solid + unicode: f010 +search-plus: + changes: + - '1' + - 5.0.0 + label: Search Plus + search: + terms: + - bigger + - enlarge + - magnify + - zoom + - zoom in + styles: + - solid + unicode: f00e +searchengin: + changes: + - 5.0.0 + label: Searchengin + search: + terms: [] + styles: + - brands + unicode: f3eb +seedling: + changes: + - 5.0.9 + label: Seedling + search: + terms: [] + styles: + - solid + unicode: f4d8 +sellcast: + changes: + - 5.0.0 + label: Sellcast + search: + terms: + - eercast + styles: + - brands + unicode: f2da +sellsy: + changes: + - '4.3' + - 5.0.0 + label: Sellsy + search: + terms: [] + styles: + - brands + unicode: f213 +server: + changes: + - '4.3' + - 5.0.0 + label: Server + search: + terms: + - cpu + styles: + - solid + unicode: f233 +servicestack: + changes: + - 5.0.0 + label: Servicestack + search: + terms: [] + styles: + - brands + unicode: f3ec +share: + changes: + - '1' + - 5.0.0 + label: Share + search: + terms: [] + styles: + - solid + unicode: f064 +share-alt: + changes: + - '4.1' + - 5.0.0 + label: Alternate Share + search: + terms: [] + styles: + - solid + unicode: f1e0 +share-alt-square: + changes: + - '4.1' + - 5.0.0 + label: Alternate Share Square + search: + terms: [] + styles: + - solid + unicode: f1e1 +share-square: + changes: + - '3.1' + - 5.0.0 + label: Share Square + search: + terms: + - send + - social + styles: + - solid + - regular + unicode: f14d +shekel-sign: + changes: + - '4.2' + - 5.0.0 + label: Shekel Sign + search: + terms: + - ils + - ils + styles: + - solid + unicode: f20b +shield-alt: + changes: + - 5.0.0 + label: Alternate Shield + search: + terms: + - shield + styles: + - solid + unicode: f3ed +ship: + changes: + - '4.3' + - 5.0.0 + label: Ship + search: + terms: + - boat + - sea + styles: + - solid + unicode: f21a +shipping-fast: + changes: + - 5.0.7 + label: Shipping Fast + search: + terms: [] + styles: + - solid + unicode: f48b +shirtsinbulk: + changes: + - '4.3' + - 5.0.0 + label: Shirts in Bulk + search: + terms: [] + styles: + - brands + unicode: f214 +shoe-prints: + changes: + - 5.0.13 + label: Shoe Prints + search: + terms: + - feet + - footprints + - steps + styles: + - solid + unicode: f54b +shopping-bag: + changes: + - '4.5' + - 5.0.0 + label: Shopping Bag + search: + terms: [] + styles: + - solid + unicode: f290 +shopping-basket: + changes: + - '4.5' + - 5.0.0 + label: Shopping Basket + search: + terms: [] + styles: + - solid + unicode: f291 +shopping-cart: + changes: + - '1' + - 5.0.0 + label: shopping-cart + search: + terms: + - buy + - checkout + - payment + - purchase + styles: + - solid + unicode: f07a +shopware: + changes: + - 5.1.0 + label: Shopware + search: + terms: [] + styles: + - brands + unicode: f5b5 +shower: + changes: + - '4.7' + - 5.0.0 + label: Shower + search: + terms: [] + styles: + - solid + unicode: f2cc +shuttle-van: + changes: + - 5.1.0 + label: Shuttle Van + search: + terms: + - machine + - public-transportation + - transportation + - vehicle + styles: + - solid + unicode: f5b6 +sign: + changes: + - 5.0.9 + label: Sign + search: + terms: [] + styles: + - solid + unicode: f4d9 +sign-in-alt: + changes: + - 5.0.0 + label: Alternate Sign In + search: + terms: + - arrow + - enter + - join + - log in + - login + - sign in + - sign up + - sign-in + - signin + - signup + styles: + - solid + unicode: f2f6 +sign-language: + changes: + - '4.6' + - 5.0.0 + label: Sign Language + search: + terms: [] + styles: + - solid + unicode: f2a7 +sign-out-alt: + changes: + - 5.0.0 + label: Alternate Sign Out + search: + terms: + - arrow + - exit + - leave + - log out + - logout + - sign-out + styles: + - solid + unicode: f2f5 +signal: + changes: + - '1' + - 5.0.0 + label: signal + search: + terms: + - bars + - graph + - online + - status + styles: + - solid + unicode: f012 +signature: + changes: + - 5.1.0 + label: Signature + search: + terms: + - John Hancock + - cursive + - name + - writing + styles: + - solid + unicode: f5b7 +simplybuilt: + changes: + - '4.3' + - 5.0.0 + label: SimplyBuilt + search: + terms: [] + styles: + - brands + unicode: f215 +sistrix: + changes: + - 5.0.0 + label: SISTRIX + search: + terms: [] + styles: + - brands + unicode: f3ee +sitemap: + changes: + - '2' + - 5.0.0 + - 5.0.13 + label: Sitemap + search: + terms: + - directory + - hierarchy + - ia + - information architecture + - organization + styles: + - solid + unicode: f0e8 +sith: + changes: + - 5.0.12 + label: Sith + search: + terms: [] + styles: + - brands + unicode: f512 +skull: + changes: + - 5.0.13 + label: Skull + search: + terms: + - bones + - skeleton + - yorick + styles: + - solid + unicode: f54c +skyatlas: + changes: + - '4.3' + - 5.0.0 + - 5.0.3 + label: skyatlas + search: + terms: [] + styles: + - brands + unicode: f216 +skype: + changes: + - '3.2' + - 5.0.0 + label: Skype + search: + terms: [] + styles: + - brands + unicode: f17e +slack: + changes: + - '4.1' + - 5.0.0 + label: Slack Logo + search: + terms: + - anchor + - hash + - hashtag + styles: + - brands + unicode: f198 +slack-hash: + changes: + - 5.0.0 + label: Slack Hashtag + search: + terms: + - anchor + - hash + - hashtag + styles: + - brands + unicode: f3ef +sliders-h: + changes: + - '4.1' + - 5.0.0 + - 5.0.11 + label: Horizontal Sliders + search: + terms: + - settings + - sliders + styles: + - solid + unicode: f1de +slideshare: + changes: + - '4.2' + - 5.0.0 + label: Slideshare + search: + terms: [] + styles: + - brands + unicode: f1e7 +smile: + changes: + - '3.1' + - 5.0.0 + - 5.0.9 + - 5.1.0 + label: Smiling Face + search: + terms: + - approve + - emoticon + - face + - happy + - rating + - satisfied + styles: + - solid + - regular + unicode: f118 +smile-beam: + changes: + - 5.1.0 + label: Beaming Face With Smiling Eyes + search: + terms: + - emoticon + - face + - happy + styles: + - solid + - regular + unicode: f5b8 +smile-wink: + changes: + - 5.1.0 + label: Winking Face + search: + terms: + - emoticon + - face + - happy + styles: + - solid + - regular + unicode: f4da +smoking: + changes: + - 5.0.7 + label: Smoking + search: + terms: + - cigarette + - nicotine + - smoking status + styles: + - solid + unicode: f48d +smoking-ban: + changes: + - 5.0.13 + label: Smoking Ban + search: + terms: + - no smoking + - non-smoking + styles: + - solid + unicode: f54d +snapchat: + changes: + - '4.6' + - 5.0.0 + label: Snapchat + search: + terms: [] + styles: + - brands + unicode: f2ab +snapchat-ghost: + changes: + - '4.6' + - 5.0.0 + label: Snapchat Ghost + search: + terms: [] + styles: + - brands + unicode: f2ac +snapchat-square: + changes: + - '4.6' + - 5.0.0 + label: Snapchat Square + search: + terms: [] + styles: + - brands + unicode: f2ad +snowflake: + changes: + - '4.7' + - 5.0.0 + label: Snowflake + search: + terms: [] + styles: + - solid + - regular + unicode: f2dc +solar-panel: + changes: + - 5.1.0 + label: Solar Panel + search: + terms: + - clean + - eco-friendly + - energy + - green + - sun + styles: + - solid + unicode: f5ba +sort: + changes: + - '2' + - 5.0.0 + label: Sort + search: + terms: + - order + styles: + - solid + unicode: f0dc +sort-alpha-down: + changes: + - '3.2' + - 5.0.0 + label: Sort Alpha Down + search: + terms: + - sort-alpha-asc + styles: + - solid + unicode: f15d +sort-alpha-up: + changes: + - '3.2' + - 5.0.0 + label: Sort Alpha Up + search: + terms: + - sort-alpha-desc + styles: + - solid + unicode: f15e +sort-amount-down: + changes: + - '3.2' + - 5.0.0 + label: Sort Amount Down + search: + terms: + - sort-amount-asc + styles: + - solid + unicode: f160 +sort-amount-up: + changes: + - '3.2' + - 5.0.0 + label: Sort Amount Up + search: + terms: + - sort-amount-desc + styles: + - solid + unicode: f161 +sort-down: + changes: + - '2' + - 5.0.0 + label: Sort Down (Descending) + search: + terms: + - arrow + - descending + - sort-desc + styles: + - solid + unicode: f0dd +sort-numeric-down: + changes: + - '3.2' + - 5.0.0 + label: Sort Numeric Down + search: + terms: + - numbers + - sort-numeric-asc + styles: + - solid + unicode: f162 +sort-numeric-up: + changes: + - '3.2' + - 5.0.0 + label: Sort Numeric Up + search: + terms: + - numbers + - sort-numeric-desc + styles: + - solid + unicode: f163 +sort-up: + changes: + - '2' + - 5.0.0 + label: Sort Up (Ascending) + search: + terms: + - arrow + - ascending + - sort-asc + styles: + - solid + unicode: f0de +soundcloud: + changes: + - '4.1' + - 5.0.0 + label: SoundCloud + search: + terms: [] + styles: + - brands + unicode: f1be +spa: + changes: + - 5.1.0 + label: Spa + search: + terms: + - mindfullness + - plant + - wellness + styles: + - solid + unicode: f5bb +space-shuttle: + changes: + - '4.1' + - 5.0.0 + label: Space Shuttle + search: + terms: + - astronaut + - machine + - nasa + - rocket + - transportation + styles: + - solid + unicode: f197 +speakap: + changes: + - 5.0.0 + label: Speakap + search: + terms: [] + styles: + - brands + unicode: f3f3 +spinner: + changes: + - '3' + - 5.0.0 + label: Spinner + search: + terms: + - loading + - progress + styles: + - solid + unicode: f110 +splotch: + changes: + - 5.1.0 + label: Splotch + search: + terms: [] + styles: + - solid + unicode: f5bc +spotify: + changes: + - '4.1' + - 5.0.0 + label: Spotify + search: + terms: [] + styles: + - brands + unicode: f1bc +spray-can: + changes: + - 5.1.0 + label: Spray Can + search: + terms: [] + styles: + - solid + unicode: f5bd +square: + changes: + - '2' + - 5.0.0 + label: Square + search: + terms: + - block + - box + styles: + - solid + - regular + unicode: f0c8 +square-full: + changes: + - 5.0.5 + label: Square Full + search: + terms: [] + styles: + - solid + unicode: f45c +squarespace: + changes: + - 5.1.0 + label: Squarespace + search: + terms: [] + styles: + - brands + unicode: f5be +stack-exchange: + changes: + - '4' + - 5.0.0 + - 5.0.3 + label: Stack Exchange + search: + terms: [] + styles: + - brands + unicode: f18d +stack-overflow: + changes: + - '3.2' + - 5.0.0 + label: Stack Overflow + search: + terms: [] + styles: + - brands + unicode: f16c +stamp: + changes: + - 5.1.0 + label: Stamp + search: + terms: [] + styles: + - solid + unicode: f5bf +star: + changes: + - '1' + - 5.0.0 + label: Star + search: + terms: + - achievement + - award + - favorite + - important + - night + - rating + - score + styles: + - solid + - regular + unicode: f005 +star-half: + changes: + - '1' + - 5.0.0 + label: star-half + search: + terms: + - achievement + - award + - rating + - score + - star-half-empty + - star-half-full + styles: + - solid + - regular + unicode: f089 +star-half-alt: + changes: + - 5.1.0 + label: Alternate Star Half + search: + terms: + - achievement + - award + - rating + - score + - star-half-empty + - star-half-full + styles: + - solid + unicode: f5c0 +staylinked: + changes: + - 5.0.0 + label: StayLinked + search: + terms: [] + styles: + - brands + unicode: f3f5 +steam: + changes: + - '4.1' + - 5.0.0 + label: Steam + search: + terms: [] + styles: + - brands + unicode: f1b6 +steam-square: + changes: + - '4.1' + - 5.0.0 + label: Steam Square + search: + terms: [] + styles: + - brands + unicode: f1b7 +steam-symbol: + changes: + - 5.0.0 + label: Steam Symbol + search: + terms: [] + styles: + - brands + unicode: f3f6 +step-backward: + changes: + - '1' + - 5.0.0 + label: step-backward + search: + terms: + - beginning + - first + - previous + - rewind + - start + styles: + - solid + unicode: f048 +step-forward: + changes: + - '1' + - 5.0.0 + label: step-forward + search: + terms: + - end + - last + - next + styles: + - solid + unicode: f051 +stethoscope: + changes: + - '3' + - 5.0.0 + - 5.0.7 + label: Stethoscope + search: + terms: [] + styles: + - solid + unicode: f0f1 +sticker-mule: + changes: + - 5.0.0 + label: Sticker Mule + search: + terms: [] + styles: + - brands + unicode: f3f7 +sticky-note: + changes: + - '4.4' + - 5.0.0 + label: Sticky Note + search: + terms: [] + styles: + - solid + - regular + unicode: f249 +stop: + changes: + - '1' + - 5.0.0 + label: stop + search: + terms: + - block + - box + - square + styles: + - solid + unicode: f04d +stop-circle: + changes: + - '4.5' + - 5.0.0 + label: Stop Circle + search: + terms: [] + styles: + - solid + - regular + unicode: f28d +stopwatch: + changes: + - 5.0.0 + label: Stopwatch + search: + terms: + - time + styles: + - solid + unicode: f2f2 +store: + changes: + - 5.0.13 + label: Store + search: + terms: [] + styles: + - solid + unicode: f54e +store-alt: + changes: + - 5.0.13 + label: Alternate Store + search: + terms: [] + styles: + - solid + unicode: f54f +strava: + changes: + - 5.0.0 + - 5.0.1 + label: Strava + search: + terms: [] + styles: + - brands + unicode: f428 +stream: + changes: + - 5.0.13 + label: Stream + search: + terms: [] + styles: + - solid + unicode: f550 +street-view: + changes: + - '4.3' + - 5.0.0 + label: Street View + search: + terms: + - map + styles: + - solid + unicode: f21d +strikethrough: + changes: + - '2' + - 5.0.0 + label: Strikethrough + search: + terms: [] + styles: + - solid + unicode: f0cc +stripe: + changes: + - 5.0.0 + - 5.0.3 + label: Stripe + search: + terms: [] + styles: + - brands + unicode: f429 +stripe-s: + changes: + - 5.0.1 + label: Stripe S + search: + terms: [] + styles: + - brands + unicode: f42a +stroopwafel: + changes: + - 5.0.13 + label: Stroopwafel + search: + terms: + - dessert + - food + - sweets + - waffle + styles: + - solid + unicode: f551 +studiovinari: + changes: + - 5.0.0 + label: Studio Vinari + search: + terms: [] + styles: + - brands + unicode: f3f8 +stumbleupon: + changes: + - '4.1' + - 5.0.0 + label: StumbleUpon Logo + search: + terms: [] + styles: + - brands + unicode: f1a4 +stumbleupon-circle: + changes: + - '4.1' + - 5.0.0 + label: StumbleUpon Circle + search: + terms: [] + styles: + - brands + unicode: f1a3 +subscript: + changes: + - '3.1' + - 5.0.0 + label: subscript + search: + terms: [] + styles: + - solid + unicode: f12c +subway: + changes: + - '4.3' + - 5.0.0 + label: Subway + search: + terms: + - machine + - railway + - train + - transportation + - vehicle + styles: + - solid + unicode: f239 +suitcase: + changes: + - '3' + - 5.0.0 + - 5.0.9 + label: Suitcase + search: + terms: + - baggage + - luggage + - move + - suitcase + - travel + - trip + styles: + - solid + unicode: f0f2 +suitcase-rolling: + changes: + - 5.1.0 + label: Suitcase Rolling + search: + terms: [] + styles: + - solid + unicode: f5c1 +sun: + changes: + - '3.2' + - 5.0.0 + label: Sun + search: + terms: + - brighten + - contrast + - day + - lighter + - weather + styles: + - solid + - regular + unicode: f185 +superpowers: + changes: + - '4.7' + - 5.0.0 + label: Superpowers + search: + terms: [] + styles: + - brands + unicode: f2dd +superscript: + changes: + - '3.1' + - 5.0.0 + label: superscript + search: + terms: + - exponential + styles: + - solid + unicode: f12b +supple: + changes: + - 5.0.0 + label: Supple + search: + terms: [] + styles: + - brands + unicode: f3f9 +surprise: + changes: + - 5.1.0 + label: Hushed Face + search: + terms: + - emoticon + - face + - shocked + styles: + - solid + - regular + unicode: f5c2 +swatchbook: + changes: + - 5.1.0 + label: Swatchbook + search: + terms: [] + styles: + - solid + unicode: f5c3 +swimmer: + changes: + - 5.1.0 + label: Swimmer + search: + terms: + - athlete + - head + - man + - person + - water + styles: + - solid + unicode: f5c4 +swimming-pool: + changes: + - 5.1.0 + label: Swimming Pool + search: + terms: + - ladder + - recreation + - water + styles: + - solid + unicode: f5c5 +sync: + changes: + - '1' + - 5.0.0 + label: Sync + search: + terms: + - exchange + - refresh + - reload + - rotate + - swap + styles: + - solid + unicode: f021 +sync-alt: + changes: + - 5.0.0 + label: Alternate Sync + search: + terms: + - refresh + - reload + - rotate + styles: + - solid + unicode: f2f1 +syringe: + changes: + - 5.0.7 + label: Syringe + search: + terms: + - immunizations + - needle + styles: + - solid + unicode: f48e +table: + changes: + - '2' + - 5.0.0 + label: table + search: + terms: + - data + - excel + - spreadsheet + styles: + - solid + unicode: f0ce +table-tennis: + changes: + - 5.0.5 + label: Table Tennis + search: + terms: [] + styles: + - solid + unicode: f45d +tablet: + changes: + - '3' + - 5.0.0 + label: tablet + search: + terms: + - apple + - device + - ipad + - kindle + - screen + styles: + - solid + unicode: f10a +tablet-alt: + changes: + - 5.0.0 + label: Alternate Tablet + search: + terms: + - apple + - device + - ipad + - kindle + - screen + styles: + - solid + unicode: f3fa +tablets: + changes: + - 5.0.7 + label: Tablets + search: + terms: + - drugs + - medicine + styles: + - solid + unicode: f490 +tachometer-alt: + changes: + - 5.0.0 + label: Alternate Tachometer + search: + terms: + - dashboard + - tachometer + styles: + - solid + unicode: f3fd +tag: + changes: + - '1' + - 5.0.0 + label: tag + search: + terms: + - label + styles: + - solid + unicode: f02b +tags: + changes: + - '1' + - 5.0.0 + label: tags + search: + terms: + - labels + styles: + - solid + unicode: f02c +tape: + changes: + - 5.0.9 + label: Tape + search: + terms: [] + styles: + - solid + unicode: f4db +tasks: + changes: + - '2' + - 5.0.0 + label: Tasks + search: + terms: + - downloading + - downloads + - loading + - progress + - settings + styles: + - solid + unicode: f0ae +taxi: + changes: + - '4.1' + - 5.0.0 + - 5.1.0 + label: Taxi + search: + terms: + - cab + - cabbie + - car + - car service + - lyft + - machine + - transportation + - uber + - vehicle + styles: + - solid + unicode: f1ba +teamspeak: + changes: + - 5.0.11 + - 5.1.0 + label: TeamSpeak + search: + terms: [] + styles: + - brands + unicode: f4f9 +telegram: + changes: + - '4.7' + - 5.0.0 + label: Telegram + search: + terms: [] + styles: + - brands + unicode: f2c6 +telegram-plane: + changes: + - 5.0.0 + label: Telegram Plane + search: + terms: [] + styles: + - brands + unicode: f3fe +tencent-weibo: + changes: + - '4.1' + - 5.0.0 + label: Tencent Weibo + search: + terms: [] + styles: + - brands + unicode: f1d5 +terminal: + changes: + - '3.1' + - 5.0.0 + label: Terminal + search: + terms: + - code + - command + - console + - prompt + styles: + - solid + unicode: f120 +text-height: + changes: + - '1' + - 5.0.0 + label: text-height + search: + terms: [] + styles: + - solid + unicode: f034 +text-width: + changes: + - '1' + - 5.0.0 + label: text-width + search: + terms: [] + styles: + - solid + unicode: f035 +th: + changes: + - '1' + - 5.0.0 + label: th + search: + terms: + - blocks + - boxes + - grid + - squares + styles: + - solid + unicode: f00a +th-large: + changes: + - '1' + - 5.0.0 + label: th-large + search: + terms: + - blocks + - boxes + - grid + - squares + styles: + - solid + unicode: f009 +th-list: + changes: + - '1' + - 5.0.0 + label: th-list + search: + terms: + - checklist + - completed + - done + - finished + - ol + - todo + - ul + styles: + - solid + unicode: f00b +themeco: + changes: + - 5.1.0 + label: Themeco + search: + terms: [] + styles: + - brands + unicode: f5c6 +themeisle: + changes: + - '4.6' + - 5.0.0 + label: ThemeIsle + search: + terms: [] + styles: + - brands + unicode: f2b2 +thermometer: + changes: + - 5.0.7 + label: Thermometer + search: + terms: + - fever + - temperature + styles: + - solid + unicode: f491 +thermometer-empty: + changes: + - '4.7' + - 5.0.0 + label: Thermometer Empty + search: + terms: + - status + styles: + - solid + unicode: f2cb +thermometer-full: + changes: + - '4.7' + - 5.0.0 + label: Thermometer Full + search: + terms: + - status + styles: + - solid + unicode: f2c7 +thermometer-half: + changes: + - '4.7' + - 5.0.0 + label: Thermometer 1/2 Full + search: + terms: + - status + styles: + - solid + unicode: f2c9 +thermometer-quarter: + changes: + - '4.7' + - 5.0.0 + label: Thermometer 1/4 Full + search: + terms: + - status + styles: + - solid + unicode: f2ca +thermometer-three-quarters: + changes: + - '4.7' + - 5.0.0 + label: Thermometer 3/4 Full + search: + terms: + - status + styles: + - solid + unicode: f2c8 +thumbs-down: + changes: + - '3.2' + - 5.0.0 + label: thumbs-down + search: + terms: + - disagree + - disapprove + - dislike + - hand + - thumbs-o-down + styles: + - solid + - regular + unicode: f165 +thumbs-up: + changes: + - '3.2' + - 5.0.0 + label: thumbs-up + search: + terms: + - agree + - approve + - favorite + - hand + - like + - ok + - okay + - success + - thumbs-o-up + - 'yes' + - you got it dude + styles: + - solid + - regular + unicode: f164 +thumbtack: + changes: + - '1' + - 5.0.0 + label: Thumbtack + search: + terms: + - coordinates + - location + - marker + - pin + - thumb-tack + styles: + - solid + unicode: f08d +ticket-alt: + changes: + - 5.0.0 + label: Alternate Ticket + search: + terms: + - ticket + styles: + - solid + unicode: f3ff +times: + changes: + - '1' + - 5.0.0 + - 5.0.13 + label: Times + search: + terms: + - close + - cross + - error + - exit + - incorrect + - notice + - notification + - notify + - problem + - wrong + - x + styles: + - solid + unicode: f00d +times-circle: + changes: + - '1' + - 5.0.0 + label: Times Circle + search: + terms: + - close + - cross + - exit + - incorrect + - notice + - notification + - notify + - problem + - wrong + - x + styles: + - solid + - regular + unicode: f057 +tint: + changes: + - '1' + - 5.0.0 + - 5.1.0 + label: tint + search: + terms: + - drop + - droplet + - raindrop + - waterdrop + styles: + - solid + unicode: f043 +tint-slash: + changes: + - 5.1.0 + label: Tint Slash + search: + terms: [] + styles: + - solid + unicode: f5c7 +tired: + changes: + - 5.1.0 + label: Tired Face + search: + terms: + - emoticon + - face + - grumpy + styles: + - solid + - regular + unicode: f5c8 +toggle-off: + changes: + - '4.2' + - 5.0.0 + label: Toggle Off + search: + terms: + - switch + styles: + - solid + unicode: f204 +toggle-on: + changes: + - '4.2' + - 5.0.0 + label: Toggle On + search: + terms: + - switch + styles: + - solid + unicode: f205 +toolbox: + changes: + - 5.0.13 + label: Toolbox + search: + terms: + - admin + - container + - fix + - repair + - settings + - tools + styles: + - solid + unicode: f552 +tooth: + changes: + - 5.1.0 + label: Tooth + search: + terms: + - bicuspid + - dental + - molar + - mouth + - teeth + styles: + - solid + unicode: f5c9 +trade-federation: + changes: + - 5.0.12 + label: Trade Federation + search: + terms: [] + styles: + - brands + unicode: f513 +trademark: + changes: + - '4.4' + - 5.0.0 + label: Trademark + search: + terms: [] + styles: + - solid + unicode: f25c +train: + changes: + - '4.3' + - 5.0.0 + label: Train + search: + terms: + - bullet + - locomotive + - railway + styles: + - solid + unicode: f238 +transgender: + changes: + - '4.3' + - 5.0.0 + label: Transgender + search: + terms: + - intersex + styles: + - solid + unicode: f224 +transgender-alt: + changes: + - '4.3' + - 5.0.0 + label: Alternate Transgender + search: + terms: [] + styles: + - solid + unicode: f225 +trash: + changes: + - '4.2' + - 5.0.0 + label: Trash + search: + terms: + - delete + - garbage + - hide + - remove + styles: + - solid + unicode: f1f8 +trash-alt: + changes: + - 5.0.0 + label: Alternate Trash + search: + terms: + - delete + - garbage + - hide + - remove + - trash + - trash-o + styles: + - solid + - regular + unicode: f2ed +tree: + changes: + - '4.1' + - 5.0.0 + label: Tree + search: + terms: [] + styles: + - solid + unicode: f1bb +trello: + changes: + - '3.2' + - 5.0.0 + label: Trello + search: + terms: [] + styles: + - brands + unicode: f181 +tripadvisor: + changes: + - '4.4' + - 5.0.0 + label: TripAdvisor + search: + terms: [] + styles: + - brands + unicode: f262 +trophy: + changes: + - '1' + - 5.0.0 + label: trophy + search: + terms: + - achievement + - award + - cup + - game + - winner + styles: + - solid + unicode: f091 +truck: + changes: + - '2' + - 5.0.0 + - 5.0.7 + label: truck + search: + terms: + - delivery + - shipping + styles: + - solid + unicode: f0d1 +truck-loading: + changes: + - 5.0.9 + label: Truck Loading + search: + terms: [] + styles: + - solid + unicode: f4de +truck-moving: + changes: + - 5.0.9 + label: Truck Moving + search: + terms: [] + styles: + - solid + unicode: f4df +tshirt: + changes: + - 5.0.13 + label: T-Shirt + search: + terms: + - cloth + - clothing + styles: + - solid + unicode: f553 +tty: + changes: + - '4.2' + - 5.0.0 + label: TTY + search: + terms: [] + styles: + - solid + unicode: f1e4 +tumblr: + changes: + - '3.2' + - 5.0.0 + label: Tumblr + search: + terms: [] + styles: + - brands + unicode: f173 +tumblr-square: + changes: + - '3.2' + - 5.0.0 + label: Tumblr Square + search: + terms: [] + styles: + - brands + unicode: f174 +tv: + changes: + - '4.4' + - 5.0.0 + label: Television + search: + terms: + - computer + - display + - monitor + - television + styles: + - solid + unicode: f26c +twitch: + changes: + - '4.2' + - 5.0.0 + label: Twitch + search: + terms: [] + styles: + - brands + unicode: f1e8 +twitter: + changes: + - '2' + - 5.0.0 + label: Twitter + search: + terms: + - social network + - tweet + styles: + - brands + unicode: f099 +twitter-square: + changes: + - '1' + - 5.0.0 + label: Twitter Square + search: + terms: + - social network + - tweet + styles: + - brands + unicode: f081 +typo3: + changes: + - 5.0.1 + label: Typo3 + search: + terms: [] + styles: + - brands + unicode: f42b +uber: + changes: + - 5.0.0 + label: Uber + search: + terms: [] + styles: + - brands + unicode: f402 +uikit: + changes: + - 5.0.0 + label: UIkit + search: + terms: [] + styles: + - brands + unicode: f403 +umbrella: + changes: + - '2' + - 5.0.0 + label: Umbrella + search: + terms: + - protection + - rain + styles: + - solid + unicode: f0e9 +umbrella-beach: + changes: + - 5.1.0 + label: Umbrella Beach + search: + terms: + - protection + - recreation + - sun + styles: + - solid + unicode: f5ca +underline: + changes: + - '2' + - 5.0.0 + label: Underline + search: + terms: [] + styles: + - solid + unicode: f0cd +undo: + changes: + - '2' + - 5.0.0 + label: Undo + search: + terms: + - back + - control z + - exchange + - oops + - return + - rotate + - swap + styles: + - solid + unicode: f0e2 +undo-alt: + changes: + - 5.0.0 + label: Alternate Undo + search: + terms: + - back + - control z + - exchange + - oops + - return + - swap + styles: + - solid + unicode: f2ea +uniregistry: + changes: + - 5.0.0 + label: Uniregistry + search: + terms: [] + styles: + - brands + unicode: f404 +universal-access: + changes: + - '4.6' + - 5.0.0 + label: Universal Access + search: + terms: [] + styles: + - solid + unicode: f29a +university: + changes: + - '4.1' + - 5.0.0 + - 5.0.3 + label: University + search: + terms: + - bank + - institution + styles: + - solid + unicode: f19c +unlink: + changes: + - '3.1' + - 5.0.0 + label: unlink + search: + terms: + - chain + - chain-broken + - remove + styles: + - solid + unicode: f127 +unlock: + changes: + - '2' + - 5.0.0 + label: unlock + search: + terms: + - admin + - lock + - password + - protect + styles: + - solid + unicode: f09c +unlock-alt: + changes: + - '3.1' + - 5.0.0 + label: Alternate Unlock + search: + terms: + - admin + - lock + - password + - protect + styles: + - solid + unicode: f13e +untappd: + changes: + - 5.0.0 + label: Untappd + search: + terms: [] + styles: + - brands + unicode: f405 +upload: + changes: + - '1' + - 5.0.0 + label: Upload + search: + terms: + - export + - publish + styles: + - solid + unicode: f093 +usb: + changes: + - '4.5' + - 5.0.0 + label: USB + search: + terms: [] + styles: + - brands + unicode: f287 +user: + changes: + - '1' + - 5.0.0 + - 5.0.3 + - 5.0.11 + label: User + search: + terms: + - account + - avatar + - head + - man + - person + - profile + styles: + - solid + - regular + unicode: f007 +user-alt: + changes: + - 5.0.0 + - 5.0.3 + - 5.0.11 + label: Alternate User + search: + terms: + - account + - avatar + - head + - man + - person + - profile + styles: + - solid + unicode: f406 +user-alt-slash: + changes: + - 5.0.11 + label: Alternate User Slash + search: + terms: [] + styles: + - solid + unicode: f4fa +user-astronaut: + changes: + - 5.0.11 + label: User Astronaut + search: + terms: + - avatar + - clothing + - cosmonaut + - space + - suit + styles: + - solid + unicode: f4fb +user-check: + changes: + - 5.0.11 + label: User Check + search: + terms: [] + styles: + - solid + unicode: f4fc +user-circle: + changes: + - '4.7' + - 5.0.0 + - 5.0.3 + - 5.0.11 + label: User Circle + search: + terms: + - account + - avatar + - head + - man + - person + - profile + styles: + - solid + - regular + unicode: f2bd +user-clock: + changes: + - 5.0.11 + label: User Clock + search: + terms: [] + styles: + - solid + unicode: f4fd +user-cog: + changes: + - 5.0.11 + label: User Cog + search: + terms: [] + styles: + - solid + unicode: f4fe +user-edit: + changes: + - 5.0.11 + label: User Edit + search: + terms: [] + styles: + - solid + unicode: f4ff +user-friends: + changes: + - 5.0.11 + label: User Friends + search: + terms: [] + styles: + - solid + unicode: f500 +user-graduate: + changes: + - 5.0.11 + label: User Graduate + search: + terms: + - cap + - clothing + - commencement + - gown + - graduation + - student + styles: + - solid + unicode: f501 +user-lock: + changes: + - 5.0.11 + label: User Lock + search: + terms: [] + styles: + - solid + unicode: f502 +user-md: + changes: + - '2' + - 5.0.0 + - 5.0.3 + - 5.0.7 + - 5.0.11 + label: user-md + search: + terms: + - doctor + - job + - medical + - nurse + - occupation + - profile + styles: + - solid + unicode: f0f0 +user-minus: + changes: + - 5.0.11 + label: User Minus + search: + terms: [] + styles: + - solid + unicode: f503 +user-ninja: + changes: + - 5.0.11 + label: User Ninja + search: + terms: + - assassin + - avatar + - dangerous + - sneaky + styles: + - solid + unicode: f504 +user-plus: + changes: + - '4.3' + - 5.0.0 + - 5.0.3 + - 5.0.11 + label: Add User + search: + terms: + - sign up + - signup + styles: + - solid + unicode: f234 +user-secret: + changes: + - '4.3' + - 5.0.0 + - 5.0.3 + - 5.0.11 + label: User Secret + search: + terms: + - clothing + - coat + - hat + - incognito + - privacy + - spy + - whisper + styles: + - solid + unicode: f21b +user-shield: + changes: + - 5.0.11 + label: User Shield + search: + terms: [] + styles: + - solid + unicode: f505 +user-slash: + changes: + - 5.0.11 + label: User Slash + search: + terms: [] + styles: + - solid + unicode: f506 +user-tag: + changes: + - 5.0.11 + label: User Tag + search: + terms: [] + styles: + - solid + unicode: f507 +user-tie: + changes: + - 5.0.11 + label: User Tie + search: + terms: + - avatar + - business + - clothing + - formal + styles: + - solid + unicode: f508 +user-times: + changes: + - '4.3' + - 5.0.0 + - 5.0.3 + - 5.0.11 + label: Remove User + search: + terms: [] + styles: + - solid + unicode: f235 +users: + changes: + - '2' + - 5.0.0 + - 5.0.3 + - 5.0.11 + label: Users + search: + terms: + - people + - persons + - profiles + styles: + - solid + unicode: f0c0 +users-cog: + changes: + - 5.0.11 + label: Users Cog + search: + terms: [] + styles: + - solid + unicode: f509 +ussunnah: + changes: + - 5.0.0 + label: us-Sunnah Foundation + search: + terms: [] + styles: + - brands + unicode: f407 +utensil-spoon: + changes: + - 5.0.0 + label: Utensil Spoon + search: + terms: + - spoon + styles: + - solid + unicode: f2e5 +utensils: + changes: + - 5.0.0 + label: Utensils + search: + terms: + - cutlery + - dinner + - eat + - food + - knife + - restaurant + - spoon + styles: + - solid + unicode: f2e7 +vaadin: + changes: + - 5.0.0 + label: Vaadin + search: + terms: [] + styles: + - brands + unicode: f408 +vector-square: + changes: + - 5.1.0 + label: Vector Square + search: + terms: + - anchors + - lines + - object + styles: + - solid + unicode: f5cb +venus: + changes: + - '4.3' + - 5.0.0 + label: Venus + search: + terms: + - female + styles: + - solid + unicode: f221 +venus-double: + changes: + - '4.3' + - 5.0.0 + label: Venus Double + search: + terms: [] + styles: + - solid + unicode: f226 +venus-mars: + changes: + - '4.3' + - 5.0.0 + label: Venus Mars + search: + terms: [] + styles: + - solid + unicode: f228 +viacoin: + changes: + - '4.3' + - 5.0.0 + label: Viacoin + search: + terms: [] + styles: + - brands + unicode: f237 +viadeo: + changes: + - '4.6' + - 5.0.0 + label: Viadeo + search: + terms: [] + styles: + - brands + unicode: f2a9 +viadeo-square: + changes: + - '4.6' + - 5.0.0 + label: Viadeo Square + search: + terms: [] + styles: + - brands + unicode: f2aa +vial: + changes: + - 5.0.7 + label: Vial + search: + terms: + - test tube + styles: + - solid + unicode: f492 +vials: + changes: + - 5.0.7 + label: Vials + search: + terms: + - lab results + - test tubes + styles: + - solid + unicode: f493 +viber: + changes: + - 5.0.0 + - 5.0.3 + label: Viber + search: + terms: [] + styles: + - brands + unicode: f409 +video: + changes: + - '1' + - 5.0.0 + - 5.0.9 + label: Video + search: + terms: + - camera + - film + - movie + - record + - video-camera + styles: + - solid + unicode: f03d +video-slash: + changes: + - 5.0.9 + label: Video Slash + search: + terms: [] + styles: + - solid + unicode: f4e2 +vimeo: + changes: + - 5.0.0 + label: Vimeo + search: + terms: [] + styles: + - brands + unicode: f40a +vimeo-square: + changes: + - '4' + - 5.0.0 + label: Vimeo Square + search: + terms: [] + styles: + - brands + unicode: f194 +vimeo-v: + changes: + - '4.4' + - 5.0.0 + label: Vimeo + search: + terms: + - vimeo + styles: + - brands + unicode: f27d +vine: + changes: + - '4.1' + - 5.0.0 + label: Vine + search: + terms: [] + styles: + - brands + unicode: f1ca +vk: + changes: + - '3.2' + - 5.0.0 + label: VK + search: + terms: [] + styles: + - brands + unicode: f189 +vnv: + changes: + - 5.0.0 + label: VNV + search: + terms: [] + styles: + - brands + unicode: f40b +volleyball-ball: + changes: + - 5.0.5 + label: Volleyball Ball + search: + terms: [] + styles: + - solid + unicode: f45f +volume-down: + changes: + - '1' + - 5.0.0 + label: volume-down + search: + terms: + - audio + - lower + - music + - quieter + - sound + - speaker + styles: + - solid + unicode: f027 +volume-off: + changes: + - '1' + - 5.0.0 + label: volume-off + search: + terms: + - audio + - music + - mute + - sound + styles: + - solid + unicode: f026 +volume-up: + changes: + - '1' + - 5.0.0 + label: volume-up + search: + terms: + - audio + - higher + - louder + - music + - sound + - speaker + styles: + - solid + unicode: f028 +vuejs: + changes: + - 5.0.0 + label: Vue.js + search: + terms: [] + styles: + - brands + unicode: f41f +walking: + changes: + - 5.0.13 + label: Walking + search: + terms: [] + styles: + - solid + unicode: f554 +wallet: + changes: + - 5.0.13 + label: Wallet + search: + terms: [] + styles: + - solid + unicode: f555 +warehouse: + changes: + - 5.0.7 + label: Warehouse + search: + terms: [] + styles: + - solid + unicode: f494 +weebly: + changes: + - 5.1.0 + label: Weebly + search: + terms: [] + styles: + - brands + unicode: f5cc +weibo: + changes: + - '3.2' + - 5.0.0 + label: Weibo + search: + terms: [] + styles: + - brands + unicode: f18a +weight: + changes: + - 5.0.7 + label: Weight + search: + terms: + - measurement + - scale + - weight + styles: + - solid + unicode: f496 +weight-hanging: + changes: + - 5.1.0 + label: Hanging Weight + search: + terms: + - anvil + - heavy + - measurement + styles: + - solid + unicode: f5cd +weixin: + changes: + - '4.1' + - 5.0.0 + - 5.0.3 + label: Weixin (WeChat) + search: + terms: [] + styles: + - brands + unicode: f1d7 +whatsapp: + changes: + - '4.3' + - 5.0.0 + label: What's App + search: + terms: [] + styles: + - brands + unicode: f232 +whatsapp-square: + changes: + - 5.0.0 + label: What's App Square + search: + terms: [] + styles: + - brands + unicode: f40c +wheelchair: + changes: + - '4' + - 5.0.0 + label: Wheelchair + search: + terms: + - handicap + - person + styles: + - solid + unicode: f193 +whmcs: + changes: + - 5.0.0 + label: WHMCS + search: + terms: [] + styles: + - brands + unicode: f40d +wifi: + changes: + - '4.2' + - 5.0.0 + label: WiFi + search: + terms: [] + styles: + - solid + unicode: f1eb +wikipedia-w: + changes: + - '4.4' + - 5.0.0 + label: Wikipedia W + search: + terms: [] + styles: + - brands + unicode: f266 +window-close: + changes: + - '4.7' + - 5.0.0 + label: Window Close + search: + terms: [] + styles: + - solid + - regular + unicode: f410 +window-maximize: + changes: + - '4.7' + - 5.0.0 + label: Window Maximize + search: + terms: [] + styles: + - solid + - regular + unicode: f2d0 +window-minimize: + changes: + - '4.7' + - 5.0.0 + label: Window Minimize + search: + terms: [] + styles: + - solid + - regular + unicode: f2d1 +window-restore: + changes: + - '4.7' + - 5.0.0 + label: Window Restore + search: + terms: [] + styles: + - solid + - regular + unicode: f2d2 +windows: + changes: + - '3.2' + - 5.0.0 + label: Windows + search: + terms: + - microsoft + styles: + - brands + unicode: f17a +wine-glass: + changes: + - 5.0.9 + - 5.1.0 + label: Wine Glass + search: + terms: [] + styles: + - solid + unicode: f4e3 +wine-glass-alt: + changes: + - 5.1.0 + label: Wine Glass-alt + search: + terms: [] + styles: + - solid + unicode: f5ce +wix: + changes: + - 5.1.0 + label: Wix + search: + terms: [] + styles: + - brands + unicode: f5cf +wolf-pack-battalion: + changes: + - 5.0.12 + label: Wolf Pack-battalion + search: + terms: [] + styles: + - brands + unicode: f514 +won-sign: + changes: + - '3.2' + - 5.0.0 + label: Won Sign + search: + terms: + - krw + - krw + styles: + - solid + unicode: f159 +wordpress: + changes: + - '4.1' + - 5.0.0 + label: WordPress Logo + search: + terms: [] + styles: + - brands + unicode: f19a +wordpress-simple: + changes: + - 5.0.0 + label: Wordpress Simple + search: + terms: [] + styles: + - brands + unicode: f411 +wpbeginner: + changes: + - '4.6' + - 5.0.0 + label: WPBeginner + search: + terms: [] + styles: + - brands + unicode: f297 +wpexplorer: + changes: + - '4.7' + - 5.0.0 + label: WPExplorer + search: + terms: [] + styles: + - brands + unicode: f2de +wpforms: + changes: + - '4.6' + - 5.0.0 + label: WPForms + search: + terms: [] + styles: + - brands + unicode: f298 +wrench: + changes: + - '2' + - 5.0.0 + - 5.0.13 + label: Wrench + search: + terms: + - fix + - settings + - spanner + - tool + - update + styles: + - solid + unicode: f0ad +x-ray: + changes: + - 5.0.7 + label: X-Ray + search: + terms: + - radiological images + - radiology + styles: + - solid + unicode: f497 +xbox: + changes: + - 5.0.0 + label: Xbox + search: + terms: [] + styles: + - brands + unicode: f412 +xing: + changes: + - '3.2' + - 5.0.0 + label: Xing + search: + terms: [] + styles: + - brands + unicode: f168 +xing-square: + changes: + - '3.2' + - 5.0.0 + label: Xing Square + search: + terms: [] + styles: + - brands + unicode: f169 +y-combinator: + changes: + - '4.4' + - 5.0.0 + label: Y Combinator + search: + terms: [] + styles: + - brands + unicode: f23b +yahoo: + changes: + - '4.1' + - 5.0.0 + - 5.0.3 + label: Yahoo Logo + search: + terms: [] + styles: + - brands + unicode: f19e +yandex: + changes: + - 5.0.0 + label: Yandex + search: + terms: [] + styles: + - brands + unicode: f413 +yandex-international: + changes: + - 5.0.0 + label: Yandex International + search: + terms: [] + styles: + - brands + unicode: f414 +yelp: + changes: + - '4.2' + - 5.0.0 + label: Yelp + search: + terms: [] + styles: + - brands + unicode: f1e9 +yen-sign: + changes: + - '3.2' + - 5.0.0 + label: Yen Sign + search: + terms: + - jpy + - jpy + styles: + - solid + unicode: f157 +yoast: + changes: + - '4.6' + - 5.0.0 + - 5.0.3 + label: Yoast + search: + terms: [] + styles: + - brands + unicode: f2b1 +youtube: + changes: + - '3.2' + - 5.0.0 + label: YouTube + search: + terms: + - film + - video + - youtube-play + - youtube-square + styles: + - brands + unicode: f167 +youtube-square: + changes: + - 5.0.3 + label: YouTube Square + search: + terms: [] + styles: + - brands + unicode: f431 diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/metadata/shims.json b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/metadata/shims.json new file mode 100644 index 0000000000..d58abca093 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/metadata/shims.json @@ -0,0 +1,2307 @@ +[ + [ + "glass", + null, + "glass-martini" + ], + [ + "meetup", + "fab", + null + ], + [ + "star-o", + "far", + "star" + ], + [ + "remove", + null, + "times" + ], + [ + "close", + null, + "times" + ], + [ + "gear", + null, + "cog" + ], + [ + "trash-o", + "far", + "trash-alt" + ], + [ + "file-o", + "far", + "file" + ], + [ + "clock-o", + "far", + "clock" + ], + [ + "arrow-circle-o-down", + "far", + "arrow-alt-circle-down" + ], + [ + "arrow-circle-o-up", + "far", + "arrow-alt-circle-up" + ], + [ + "play-circle-o", + "far", + "play-circle" + ], + [ + "repeat", + null, + "redo" + ], + [ + "rotate-right", + null, + "redo" + ], + [ + "refresh", + null, + "sync" + ], + [ + "list-alt", + "far", + null + ], + [ + "dedent", + null, + "outdent" + ], + [ + "video-camera", + null, + "video" + ], + [ + "picture-o", + "far", + "image" + ], + [ + "photo", + "far", + "image" + ], + [ + "image", + "far", + "image" + ], + [ + "pencil", + null, + "pencil-alt" + ], + [ + "map-marker", + null, + "map-marker-alt" + ], + [ + "pencil-square-o", + "far", + "edit" + ], + [ + "share-square-o", + "far", + "share-square" + ], + [ + "check-square-o", + "far", + "check-square" + ], + [ + "arrows", + null, + "arrows-alt" + ], + [ + "times-circle-o", + "far", + "times-circle" + ], + [ + "check-circle-o", + "far", + "check-circle" + ], + [ + "mail-forward", + null, + "share" + ], + [ + "eye", + "far", + null + ], + [ + "eye-slash", + "far", + null + ], + [ + "warning", + null, + "exclamation-triangle" + ], + [ + "calendar", + null, + "calendar-alt" + ], + [ + "arrows-v", + null, + "arrows-alt-v" + ], + [ + "arrows-h", + null, + "arrows-alt-h" + ], + [ + "bar-chart", + "far", + "chart-bar" + ], + [ + "bar-chart-o", + "far", + "chart-bar" + ], + [ + "twitter-square", + "fab", + null + ], + [ + "facebook-square", + "fab", + null + ], + [ + "gears", + null, + "cogs" + ], + [ + "thumbs-o-up", + "far", + "thumbs-up" + ], + [ + "thumbs-o-down", + "far", + "thumbs-down" + ], + [ + "heart-o", + "far", + "heart" + ], + [ + "sign-out", + null, + "sign-out-alt" + ], + [ + "linkedin-square", + "fab", + "linkedin" + ], + [ + "thumb-tack", + null, + "thumbtack" + ], + [ + "external-link", + null, + "external-link-alt" + ], + [ + "sign-in", + null, + "sign-in-alt" + ], + [ + "github-square", + "fab", + null + ], + [ + "lemon-o", + "far", + "lemon" + ], + [ + "square-o", + "far", + "square" + ], + [ + "bookmark-o", + "far", + "bookmark" + ], + [ + "twitter", + "fab", + null + ], + [ + "facebook", + "fab", + "facebook-f" + ], + [ + "facebook-f", + "fab", + "facebook-f" + ], + [ + "github", + "fab", + null + ], + [ + "credit-card", + "far", + null + ], + [ + "feed", + null, + "rss" + ], + [ + "hdd-o", + "far", + "hdd" + ], + [ + "hand-o-right", + "far", + "hand-point-right" + ], + [ + "hand-o-left", + "far", + "hand-point-left" + ], + [ + "hand-o-up", + "far", + "hand-point-up" + ], + [ + "hand-o-down", + "far", + "hand-point-down" + ], + [ + "arrows-alt", + null, + "expand-arrows-alt" + ], + [ + "group", + null, + "users" + ], + [ + "chain", + null, + "link" + ], + [ + "scissors", + null, + "cut" + ], + [ + "files-o", + "far", + "copy" + ], + [ + "floppy-o", + "far", + "save" + ], + [ + "navicon", + null, + "bars" + ], + [ + "reorder", + null, + "bars" + ], + [ + "pinterest", + "fab", + null + ], + [ + "pinterest-square", + "fab", + null + ], + [ + "google-plus-square", + "fab", + null + ], + [ + "google-plus", + "fab", + "google-plus-g" + ], + [ + "money", + "far", + "money-bill-alt" + ], + [ + "unsorted", + null, + "sort" + ], + [ + "sort-desc", + null, + "sort-down" + ], + [ + "sort-asc", + null, + "sort-up" + ], + [ + "linkedin", + "fab", + "linkedin-in" + ], + [ + "rotate-left", + null, + "undo" + ], + [ + "legal", + null, + "gavel" + ], + [ + "tachometer", + null, + "tachometer-alt" + ], + [ + "dashboard", + null, + "tachometer-alt" + ], + [ + "comment-o", + "far", + "comment" + ], + [ + "comments-o", + "far", + "comments" + ], + [ + "flash", + null, + "bolt" + ], + [ + "clipboard", + "far", + null + ], + [ + "paste", + "far", + "clipboard" + ], + [ + "lightbulb-o", + "far", + "lightbulb" + ], + [ + "exchange", + null, + "exchange-alt" + ], + [ + "cloud-download", + null, + "cloud-download-alt" + ], + [ + "cloud-upload", + null, + "cloud-upload-alt" + ], + [ + "bell-o", + "far", + "bell" + ], + [ + "cutlery", + null, + "utensils" + ], + [ + "file-text-o", + "far", + "file-alt" + ], + [ + "building-o", + "far", + "building" + ], + [ + "hospital-o", + "far", + "hospital" + ], + [ + "tablet", + null, + "tablet-alt" + ], + [ + "mobile", + null, + "mobile-alt" + ], + [ + "mobile-phone", + null, + "mobile-alt" + ], + [ + "circle-o", + "far", + "circle" + ], + [ + "mail-reply", + null, + "reply" + ], + [ + "github-alt", + "fab", + null + ], + [ + "folder-o", + "far", + "folder" + ], + [ + "folder-open-o", + "far", + "folder-open" + ], + [ + "smile-o", + "far", + "smile" + ], + [ + "frown-o", + "far", + "frown" + ], + [ + "meh-o", + "far", + "meh" + ], + [ + "keyboard-o", + "far", + "keyboard" + ], + [ + "flag-o", + "far", + "flag" + ], + [ + "mail-reply-all", + null, + "reply-all" + ], + [ + "star-half-o", + "far", + "star-half" + ], + [ + "star-half-empty", + "far", + "star-half" + ], + [ + "star-half-full", + "far", + "star-half" + ], + [ + "code-fork", + null, + "code-branch" + ], + [ + "chain-broken", + null, + "unlink" + ], + [ + "shield", + null, + "shield-alt" + ], + [ + "calendar-o", + "far", + "calendar" + ], + [ + "maxcdn", + "fab", + null + ], + [ + "html5", + "fab", + null + ], + [ + "css3", + "fab", + null + ], + [ + "ticket", + null, + "ticket-alt" + ], + [ + "minus-square-o", + "far", + "minus-square" + ], + [ + "level-up", + null, + "level-up-alt" + ], + [ + "level-down", + null, + "level-down-alt" + ], + [ + "pencil-square", + null, + "pen-square" + ], + [ + "external-link-square", + null, + "external-link-square-alt" + ], + [ + "compass", + "far", + null + ], + [ + "caret-square-o-down", + "far", + "caret-square-down" + ], + [ + "toggle-down", + "far", + "caret-square-down" + ], + [ + "caret-square-o-up", + "far", + "caret-square-up" + ], + [ + "toggle-up", + "far", + "caret-square-up" + ], + [ + "caret-square-o-right", + "far", + "caret-square-right" + ], + [ + "toggle-right", + "far", + "caret-square-right" + ], + [ + "eur", + null, + "euro-sign" + ], + [ + "euro", + null, + "euro-sign" + ], + [ + "gbp", + null, + "pound-sign" + ], + [ + "usd", + null, + "dollar-sign" + ], + [ + "dollar", + null, + "dollar-sign" + ], + [ + "inr", + null, + "rupee-sign" + ], + [ + "rupee", + null, + "rupee-sign" + ], + [ + "jpy", + null, + "yen-sign" + ], + [ + "cny", + null, + "yen-sign" + ], + [ + "rmb", + null, + "yen-sign" + ], + [ + "yen", + null, + "yen-sign" + ], + [ + "rub", + null, + "ruble-sign" + ], + [ + "ruble", + null, + "ruble-sign" + ], + [ + "rouble", + null, + "ruble-sign" + ], + [ + "krw", + null, + "won-sign" + ], + [ + "won", + null, + "won-sign" + ], + [ + "btc", + "fab", + null + ], + [ + "bitcoin", + "fab", + "btc" + ], + [ + "file-text", + null, + "file-alt" + ], + [ + "sort-alpha-asc", + null, + "sort-alpha-down" + ], + [ + "sort-alpha-desc", + null, + "sort-alpha-up" + ], + [ + "sort-amount-asc", + null, + "sort-amount-down" + ], + [ + "sort-amount-desc", + null, + "sort-amount-up" + ], + [ + "sort-numeric-asc", + null, + "sort-numeric-down" + ], + [ + "sort-numeric-desc", + null, + "sort-numeric-up" + ], + [ + "youtube-square", + "fab", + null + ], + [ + "youtube", + "fab", + null + ], + [ + "xing", + "fab", + null + ], + [ + "xing-square", + "fab", + null + ], + [ + "youtube-play", + "fab", + "youtube" + ], + [ + "dropbox", + "fab", + null + ], + [ + "stack-overflow", + "fab", + null + ], + [ + "instagram", + "fab", + null + ], + [ + "flickr", + "fab", + null + ], + [ + "adn", + "fab", + null + ], + [ + "bitbucket", + "fab", + null + ], + [ + "bitbucket-square", + "fab", + "bitbucket" + ], + [ + "tumblr", + "fab", + null + ], + [ + "tumblr-square", + "fab", + null + ], + [ + "long-arrow-down", + null, + "long-arrow-alt-down" + ], + [ + "long-arrow-up", + null, + "long-arrow-alt-up" + ], + [ + "long-arrow-left", + null, + "long-arrow-alt-left" + ], + [ + "long-arrow-right", + null, + "long-arrow-alt-right" + ], + [ + "apple", + "fab", + null + ], + [ + "windows", + "fab", + null + ], + [ + "android", + "fab", + null + ], + [ + "linux", + "fab", + null + ], + [ + "dribbble", + "fab", + null + ], + [ + "skype", + "fab", + null + ], + [ + "foursquare", + "fab", + null + ], + [ + "trello", + "fab", + null + ], + [ + "gratipay", + "fab", + null + ], + [ + "gittip", + "fab", + "gratipay" + ], + [ + "sun-o", + "far", + "sun" + ], + [ + "moon-o", + "far", + "moon" + ], + [ + "vk", + "fab", + null + ], + [ + "weibo", + "fab", + null + ], + [ + "renren", + "fab", + null + ], + [ + "pagelines", + "fab", + null + ], + [ + "stack-exchange", + "fab", + null + ], + [ + "arrow-circle-o-right", + "far", + "arrow-alt-circle-right" + ], + [ + "arrow-circle-o-left", + "far", + "arrow-alt-circle-left" + ], + [ + "caret-square-o-left", + "far", + "caret-square-left" + ], + [ + "toggle-left", + "far", + "caret-square-left" + ], + [ + "dot-circle-o", + "far", + "dot-circle" + ], + [ + "vimeo-square", + "fab", + null + ], + [ + "try", + null, + "lira-sign" + ], + [ + "turkish-lira", + null, + "lira-sign" + ], + [ + "plus-square-o", + "far", + "plus-square" + ], + [ + "slack", + "fab", + null + ], + [ + "wordpress", + "fab", + null + ], + [ + "openid", + "fab", + null + ], + [ + "institution", + null, + "university" + ], + [ + "bank", + null, + "university" + ], + [ + "mortar-board", + null, + "graduation-cap" + ], + [ + "yahoo", + "fab", + null + ], + [ + "google", + "fab", + null + ], + [ + "reddit", + "fab", + null + ], + [ + "reddit-square", + "fab", + null + ], + [ + "stumbleupon-circle", + "fab", + null + ], + [ + "stumbleupon", + "fab", + null + ], + [ + "delicious", + "fab", + null + ], + [ + "digg", + "fab", + null + ], + [ + "pied-piper-pp", + "fab", + null + ], + [ + "pied-piper-alt", + "fab", + null + ], + [ + "drupal", + "fab", + null + ], + [ + "joomla", + "fab", + null + ], + [ + "spoon", + null, + "utensil-spoon" + ], + [ + "behance", + "fab", + null + ], + [ + "behance-square", + "fab", + null + ], + [ + "steam", + "fab", + null + ], + [ + "steam-square", + "fab", + null + ], + [ + "automobile", + null, + "car" + ], + [ + "cab", + null, + "taxi" + ], + [ + "envelope-o", + "far", + "envelope" + ], + [ + "deviantart", + "fab", + null + ], + [ + "soundcloud", + "fab", + null + ], + [ + "file-pdf-o", + "far", + "file-pdf" + ], + [ + "file-word-o", + "far", + "file-word" + ], + [ + "file-excel-o", + "far", + "file-excel" + ], + [ + "file-powerpoint-o", + "far", + "file-powerpoint" + ], + [ + "file-image-o", + "far", + "file-image" + ], + [ + "file-photo-o", + "far", + "file-image" + ], + [ + "file-picture-o", + "far", + "file-image" + ], + [ + "file-archive-o", + "far", + "file-archive" + ], + [ + "file-zip-o", + "far", + "file-archive" + ], + [ + "file-audio-o", + "far", + "file-audio" + ], + [ + "file-sound-o", + "far", + "file-audio" + ], + [ + "file-video-o", + "far", + "file-video" + ], + [ + "file-movie-o", + "far", + "file-video" + ], + [ + "file-code-o", + "far", + "file-code" + ], + [ + "vine", + "fab", + null + ], + [ + "codepen", + "fab", + null + ], + [ + "jsfiddle", + "fab", + null + ], + [ + "life-ring", + "far", + null + ], + [ + "life-bouy", + "far", + "life-ring" + ], + [ + "life-buoy", + "far", + "life-ring" + ], + [ + "life-saver", + "far", + "life-ring" + ], + [ + "support", + "far", + "life-ring" + ], + [ + "circle-o-notch", + null, + "circle-notch" + ], + [ + "rebel", + "fab", + null + ], + [ + "ra", + "fab", + "rebel" + ], + [ + "resistance", + "fab", + "rebel" + ], + [ + "empire", + "fab", + null + ], + [ + "ge", + "fab", + "empire" + ], + [ + "git-square", + "fab", + null + ], + [ + "git", + "fab", + null + ], + [ + "hacker-news", + "fab", + null + ], + [ + "y-combinator-square", + "fab", + "hacker-news" + ], + [ + "yc-square", + "fab", + "hacker-news" + ], + [ + "tencent-weibo", + "fab", + null + ], + [ + "qq", + "fab", + null + ], + [ + "weixin", + "fab", + null + ], + [ + "wechat", + "fab", + "weixin" + ], + [ + "send", + null, + "paper-plane" + ], + [ + "paper-plane-o", + "far", + "paper-plane" + ], + [ + "send-o", + "far", + "paper-plane" + ], + [ + "circle-thin", + "far", + "circle" + ], + [ + "header", + null, + "heading" + ], + [ + "sliders", + null, + "sliders-h" + ], + [ + "futbol-o", + "far", + "futbol" + ], + [ + "soccer-ball-o", + "far", + "futbol" + ], + [ + "slideshare", + "fab", + null + ], + [ + "twitch", + "fab", + null + ], + [ + "yelp", + "fab", + null + ], + [ + "newspaper-o", + "far", + "newspaper" + ], + [ + "paypal", + "fab", + null + ], + [ + "google-wallet", + "fab", + null + ], + [ + "cc-visa", + "fab", + null + ], + [ + "cc-mastercard", + "fab", + null + ], + [ + "cc-discover", + "fab", + null + ], + [ + "cc-amex", + "fab", + null + ], + [ + "cc-paypal", + "fab", + null + ], + [ + "cc-stripe", + "fab", + null + ], + [ + "bell-slash-o", + "far", + "bell-slash" + ], + [ + "trash", + null, + "trash-alt" + ], + [ + "copyright", + "far", + null + ], + [ + "eyedropper", + null, + "eye-dropper" + ], + [ + "area-chart", + null, + "chart-area" + ], + [ + "pie-chart", + null, + "chart-pie" + ], + [ + "line-chart", + null, + "chart-line" + ], + [ + "lastfm", + "fab", + null + ], + [ + "lastfm-square", + "fab", + null + ], + [ + "ioxhost", + "fab", + null + ], + [ + "angellist", + "fab", + null + ], + [ + "cc", + "far", + "closed-captioning" + ], + [ + "ils", + null, + "shekel-sign" + ], + [ + "shekel", + null, + "shekel-sign" + ], + [ + "sheqel", + null, + "shekel-sign" + ], + [ + "meanpath", + "fab", + "font-awesome" + ], + [ + "buysellads", + "fab", + null + ], + [ + "connectdevelop", + "fab", + null + ], + [ + "dashcube", + "fab", + null + ], + [ + "forumbee", + "fab", + null + ], + [ + "leanpub", + "fab", + null + ], + [ + "sellsy", + "fab", + null + ], + [ + "shirtsinbulk", + "fab", + null + ], + [ + "simplybuilt", + "fab", + null + ], + [ + "skyatlas", + "fab", + null + ], + [ + "diamond", + "far", + "gem" + ], + [ + "intersex", + null, + "transgender" + ], + [ + "facebook-official", + "fab", + "facebook" + ], + [ + "pinterest-p", + "fab", + null + ], + [ + "whatsapp", + "fab", + null + ], + [ + "hotel", + null, + "bed" + ], + [ + "viacoin", + "fab", + null + ], + [ + "medium", + "fab", + null + ], + [ + "y-combinator", + "fab", + null + ], + [ + "yc", + "fab", + "y-combinator" + ], + [ + "optin-monster", + "fab", + null + ], + [ + "opencart", + "fab", + null + ], + [ + "expeditedssl", + "fab", + null + ], + [ + "battery-4", + null, + "battery-full" + ], + [ + "battery", + null, + "battery-full" + ], + [ + "battery-3", + null, + "battery-three-quarters" + ], + [ + "battery-2", + null, + "battery-half" + ], + [ + "battery-1", + null, + "battery-quarter" + ], + [ + "battery-0", + null, + "battery-empty" + ], + [ + "object-group", + "far", + null + ], + [ + "object-ungroup", + "far", + null + ], + [ + "sticky-note-o", + "far", + "sticky-note" + ], + [ + "cc-jcb", + "fab", + null + ], + [ + "cc-diners-club", + "fab", + null + ], + [ + "clone", + "far", + null + ], + [ + "hourglass-o", + "far", + "hourglass" + ], + [ + "hourglass-1", + null, + "hourglass-start" + ], + [ + "hourglass-2", + null, + "hourglass-half" + ], + [ + "hourglass-3", + null, + "hourglass-end" + ], + [ + "hand-rock-o", + "far", + "hand-rock" + ], + [ + "hand-grab-o", + "far", + "hand-rock" + ], + [ + "hand-paper-o", + "far", + "hand-paper" + ], + [ + "hand-stop-o", + "far", + "hand-paper" + ], + [ + "hand-scissors-o", + "far", + "hand-scissors" + ], + [ + "hand-lizard-o", + "far", + "hand-lizard" + ], + [ + "hand-spock-o", + "far", + "hand-spock" + ], + [ + "hand-pointer-o", + "far", + "hand-pointer" + ], + [ + "hand-peace-o", + "far", + "hand-peace" + ], + [ + "registered", + "far", + null + ], + [ + "creative-commons", + "fab", + null + ], + [ + "gg", + "fab", + null + ], + [ + "gg-circle", + "fab", + null + ], + [ + "tripadvisor", + "fab", + null + ], + [ + "odnoklassniki", + "fab", + null + ], + [ + "odnoklassniki-square", + "fab", + null + ], + [ + "get-pocket", + "fab", + null + ], + [ + "wikipedia-w", + "fab", + null + ], + [ + "safari", + "fab", + null + ], + [ + "chrome", + "fab", + null + ], + [ + "firefox", + "fab", + null + ], + [ + "opera", + "fab", + null + ], + [ + "internet-explorer", + "fab", + null + ], + [ + "television", + null, + "tv" + ], + [ + "contao", + "fab", + null + ], + [ + "500px", + "fab", + null + ], + [ + "amazon", + "fab", + null + ], + [ + "calendar-plus-o", + "far", + "calendar-plus" + ], + [ + "calendar-minus-o", + "far", + "calendar-minus" + ], + [ + "calendar-times-o", + "far", + "calendar-times" + ], + [ + "calendar-check-o", + "far", + "calendar-check" + ], + [ + "map-o", + "far", + "map" + ], + [ + "commenting", + "far", + "comment-dots" + ], + [ + "commenting-o", + "far", + "comment-dots" + ], + [ + "houzz", + "fab", + null + ], + [ + "vimeo", + "fab", + "vimeo-v" + ], + [ + "black-tie", + "fab", + null + ], + [ + "fonticons", + "fab", + null + ], + [ + "reddit-alien", + "fab", + null + ], + [ + "edge", + "fab", + null + ], + [ + "credit-card-alt", + null, + "credit-card" + ], + [ + "codiepie", + "fab", + null + ], + [ + "modx", + "fab", + null + ], + [ + "fort-awesome", + "fab", + null + ], + [ + "usb", + "fab", + null + ], + [ + "product-hunt", + "fab", + null + ], + [ + "mixcloud", + "fab", + null + ], + [ + "scribd", + "fab", + null + ], + [ + "pause-circle-o", + "far", + "pause-circle" + ], + [ + "stop-circle-o", + "far", + "stop-circle" + ], + [ + "bluetooth", + "fab", + null + ], + [ + "bluetooth-b", + "fab", + null + ], + [ + "gitlab", + "fab", + null + ], + [ + "wpbeginner", + "fab", + null + ], + [ + "wpforms", + "fab", + null + ], + [ + "envira", + "fab", + null + ], + [ + "wheelchair-alt", + "fab", + "accessible-icon" + ], + [ + "question-circle-o", + "far", + "question-circle" + ], + [ + "volume-control-phone", + null, + "phone-volume" + ], + [ + "asl-interpreting", + null, + "american-sign-language-interpreting" + ], + [ + "deafness", + null, + "deaf" + ], + [ + "hard-of-hearing", + null, + "deaf" + ], + [ + "glide", + "fab", + null + ], + [ + "glide-g", + "fab", + null + ], + [ + "signing", + null, + "sign-language" + ], + [ + "viadeo", + "fab", + null + ], + [ + "viadeo-square", + "fab", + null + ], + [ + "snapchat", + "fab", + null + ], + [ + "snapchat-ghost", + "fab", + null + ], + [ + "snapchat-square", + "fab", + null + ], + [ + "pied-piper", + "fab", + null + ], + [ + "first-order", + "fab", + null + ], + [ + "yoast", + "fab", + null + ], + [ + "themeisle", + "fab", + null + ], + [ + "google-plus-official", + "fab", + "google-plus" + ], + [ + "google-plus-circle", + "fab", + "google-plus" + ], + [ + "font-awesome", + "fab", + null + ], + [ + "fa", + "fab", + "font-awesome" + ], + [ + "handshake-o", + "far", + "handshake" + ], + [ + "envelope-open-o", + "far", + "envelope-open" + ], + [ + "linode", + "fab", + null + ], + [ + "address-book-o", + "far", + "address-book" + ], + [ + "vcard", + null, + "address-card" + ], + [ + "address-card-o", + "far", + "address-card" + ], + [ + "vcard-o", + "far", + "address-card" + ], + [ + "user-circle-o", + "far", + "user-circle" + ], + [ + "user-o", + "far", + "user" + ], + [ + "id-badge", + "far", + null + ], + [ + "drivers-license", + null, + "id-card" + ], + [ + "id-card-o", + "far", + "id-card" + ], + [ + "drivers-license-o", + "far", + "id-card" + ], + [ + "quora", + "fab", + null + ], + [ + "free-code-camp", + "fab", + null + ], + [ + "telegram", + "fab", + null + ], + [ + "thermometer-4", + null, + "thermometer-full" + ], + [ + "thermometer", + null, + "thermometer-full" + ], + [ + "thermometer-3", + null, + "thermometer-three-quarters" + ], + [ + "thermometer-2", + null, + "thermometer-half" + ], + [ + "thermometer-1", + null, + "thermometer-quarter" + ], + [ + "thermometer-0", + null, + "thermometer-empty" + ], + [ + "bathtub", + null, + "bath" + ], + [ + "s15", + null, + "bath" + ], + [ + "window-maximize", + "far", + null + ], + [ + "window-restore", + "far", + null + ], + [ + "times-rectangle", + null, + "window-close" + ], + [ + "window-close-o", + "far", + "window-close" + ], + [ + "times-rectangle-o", + "far", + "window-close" + ], + [ + "bandcamp", + "fab", + null + ], + [ + "grav", + "fab", + null + ], + [ + "etsy", + "fab", + null + ], + [ + "imdb", + "fab", + null + ], + [ + "ravelry", + "fab", + null + ], + [ + "eercast", + "fab", + "sellcast" + ], + [ + "snowflake-o", + "far", + "snowflake" + ], + [ + "superpowers", + "fab", + null + ], + [ + "wpexplorer", + "fab", + null + ], + [ + "spotify", + "fab", + null + ] +] \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/metadata/shims.yml b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/metadata/shims.yml new file mode 100644 index 0000000000..4fe6711baf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/metadata/shims.yml @@ -0,0 +1,295 @@ +area-chart: + name: chart-area +arrow-circle-o-down: + name: arrow-alt-circle-down + prefix: far +arrow-circle-o-left: + name: arrow-alt-circle-left + prefix: far +arrow-circle-o-right: + name: arrow-alt-circle-right + prefix: far +arrow-circle-o-up: + name: arrow-alt-circle-up + prefix: far +arrows: + name: arrows-alt +arrows-alt: + name: expand-arrows-alt +arrows-h: + name: arrows-alt-h +arrows-v: + name: arrows-alt-v +bar-chart: + name: chart-bar + prefix: far +bitbucket-square: + name: bitbucket + prefix: fab +calendar: + name: calendar-alt +calendar-o: + name: calendar + prefix: far +caret-square-o-down: + name: caret-square-down + prefix: far +caret-square-o-left: + name: caret-square-left + prefix: far +caret-square-o-right: + name: caret-square-right + prefix: far +caret-square-o-up: + name: caret-square-up + prefix: far +cc: + name: closed-captioning + prefix: far +chain-broken: + name: unlink +circle-o-notch: + name: circle-notch +circle-thin: + name: circle + prefix: far +clipboard: + prefix: far +clone: + prefix: far +cloud-download: + name: cloud-download-alt +cloud-upload: + name: cloud-upload-alt +code-fork: + name: code-branch +comment-alt: + name: comment-dots + prefix: far +commenting: + name: comment-dots + prefix: far +compass: + prefix: far +copyright: + prefix: far +creative-commons: + prefix: fab +credit-card: + prefix: far +credit-card-alt: + name: credit-card +cutlery: + name: utensils +diamond: + name: gem + prefix: far +eercast: + name: sellcast + prefix: fab +eur: + name: euro-sign +exchange: + name: exchange-alt +external-link: + name: external-link-alt +external-link-square: + name: external-link-square-alt +eye: + prefix: far +eye-dropper: + name: eye-dropper + prefix: far +eye-slash: + prefix: far +eyedropper: + name: eye-dropper +facebook: + name: facebook-f + prefix: fab +facebook-official: + name: facebook + prefix: fab +file-text: + name: file-alt +files-o: + name: copy + prefix: far +floppy-o: + name: save + prefix: far +gbp: + name: pound-sign +glass: + name: glass-martini +google-plus: + name: google-plus-g + prefix: fab +google-plus-circle: + name: google-plus + prefix: fab +google-plus-official: + name: google-plus + prefix: fab +hand-o-down: + name: hand-point-down + prefix: far +hand-o-left: + name: hand-point-left + prefix: far +hand-o-right: + name: hand-point-right + prefix: far +hand-o-up: + name: hand-point-up + prefix: far +header: + name: heading +id-badge: + prefix: far +ils: + name: shekel-sign +inr: + name: rupee-sign +intersex: + name: transgender +jpy: + name: yen-sign +krw: + name: won-sign +level-down: + name: level-down-alt +level-up: + name: level-up-alt +life-ring: + prefix: far +line-chart: + name: chart-line +linkedin: + name: linkedin-in + prefix: fab +linkedin-square: + name: linkedin + prefix: fab +list-alt: + prefix: far +long-arrow-down: + name: long-arrow-alt-down +long-arrow-left: + name: long-arrow-alt-left +long-arrow-right: + name: long-arrow-alt-right +long-arrow-up: + name: long-arrow-alt-up +map-marker: + name: map-marker-alt +meanpath: + name: font-awesome + prefix: fab +mobile: + name: mobile-alt +money: + name: money-bill-alt + prefix: far +object-group: + prefix: far +object-ungroup: + prefix: far +paste: + prefix: far +pencil: + name: pencil-alt +pencil-square: + name: pen-square +pencil-square-o: + name: edit + prefix: far +picture: + name: image +pie-chart: + name: chart-pie +refresh: + name: sync +registered: + prefix: far +repeat: + name: redo +rub: + name: ruble-sign +scissors: + name: cut +shield: + name: shield-alt +sign-in: + name: sign-in-alt +sign-out: + name: sign-out-alt +sliders: + name: sliders-h +sort-alpha-asc: + name: sort-alpha-down +sort-alpha-desc: + name: sort-alpha-up +sort-amount-asc: + name: sort-amount-down +sort-amount-desc: + name: sort-amount-up +sort-asc: + name: sort-up +sort-desc: + name: sort-down +sort-numeric-asc: + name: sort-numeric-down +sort-numeric-desc: + name: sort-numeric-up +spoon: + name: utensil-spoon +star-half-empty: + name: star-half +star-half-full: + name: star-half +support: + name: life-ring + prefix: far +tablet: + name: tablet-alt +tachometer: + name: tachometer-alt +television: + name: tv +thumb-tack: + name: thumbtack +thumbs-o-down: + name: thumbs-down + prefix: far +thumbs-o-up: + name: thumbs-up + prefix: far +ticket: + name: ticket-alt +trash: + name: trash-alt +trash-o: + name: trash-alt + prefix: far +try: + name: lira-sign +usd: + name: dollar-sign +video-camera: + name: video +vimeo: + name: vimeo-v + prefix: fab +volume-control-phone: + name: phone-volume +wheelchair-alt: + name: accessible-icon + prefix: fab +window-maximize: + prefix: far +window-restore: + prefix: far +youtube-play: + name: youtube + prefix: fab diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/metadata/sponsors.yml b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/metadata/sponsors.yml new file mode 100644 index 0000000000..4aef8dc21e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/metadata/sponsors.yml @@ -0,0 +1,566 @@ +accusoft: + icons: + - accusoft + label: Accusoft + url: 'https://www.accusoft.com' +administrator-technology: + icons: + - stream + label: Administrator Technology + url: 'https://administrator.de' +adversal: + icons: + - adversal + label: Adversal + url: 'https://www.adversal.com' +affiliatetheme: + icons: + - affiliatetheme + label: affiliatetheme + url: 'https://affiliatetheme.io/en' +algolia: + icons: + - algolia + label: Algolia + url: 'http://www.algolia.com' +amazon-web-services: + icons: + - aws + label: Amazon Web Services + url: 'https://aws.amazon.com' +amilia: + icons: + - amilia + label: Amilia + url: 'http://www.amilia.com' +angry-creative: + icons: + - angrycreative + label: Angry Creative + url: 'https://angrycreative.se' +app-signal: + icons: + - stroopwafel + label: AppSignal + url: 'https://appsignal.com' +apper-systems-ab: + icons: + - apper + label: Apper Systems AB + url: 'http://www.apper.com' +'asymmetrik,ltd': + icons: + - asymmetrik + label: 'Asymmetrik, Ltd.' + url: 'http://asymmetrik.com' +avianex: + icons: + - avianex + label: avianex + url: 'https://www.avianex.de' +bi-mobject: + icons: + - bimobject + label: BIMobject + url: 'http://bimobject.com' +bity: + icons: + - bity + label: Bity + url: 'http://bity.com' +blissbook: + icons: + - pen-fancy + label: Blissbook + url: 'https://blissbook.com' +büromöbel-experte-gmb-h &co-kg: + icons: + - buromobelexperte + label: Büromöbel-Experte GmbH & Co. KG. + url: 'https://www.bueromoebel-experte.de' +c-panel: + icons: + - cpanel + label: cPanel + url: 'http://cpanel.com' +centercode: + icons: + - centercode + label: Centercode + url: 'https://www.centercode.com' +cibltd: + icons: + - drum-steelpan + label: Comprehensive Insurance Brokers Limited + url: 'http://www.cibltd.com' +clear-blue-technologies: + icons: + - solar-panel + label: Clear Blue Technologies + url: 'http://www.clearbluetechnologies.com' +cloudscale-ch: + icons: + - cloudscale + label: cloudscale.ch + url: 'https://www.cloudscale.ch' +cloudsmith: + icons: + - cloudsmith + label: Cloudsmith + url: 'https://cloudsmith.io' +cloudversify: + icons: + - cloudversify + label: cloudversify + url: 'https://www.cloudversify.com' +cuttlefish: + icons: + - cuttlefish + label: Cuttlefish + url: 'http://wearecuttlefish.com' +darren-wiebe: + icons: + - church + label: Darren Wiebe +deploy-dog: + icons: + - deploydog + label: deploy.dog + url: 'http://deploy.dog' +deskpro: + icons: + - deskpro + label: Deskpro + url: 'http://www.deskpro.com' +discourse: + icons: + - discourse + label: Discourse + url: 'https://discourse.org' +doc-hub: + icons: + - dochub + label: DocHub + url: 'https://dochub.com' +draft2-digital: + icons: + - draft2digital + label: Draft2Digital + url: 'http://draft2digital.com' +dyalog-apl: + icons: + - dyalog + label: Dyalog APL + url: 'http://www.dyalog.com' +firstdraft: + icons: + - firstdraft + label: firstdraft + url: 'http://www.firstdraft.com' +fleetplan: + icons: + - helicopter + label: FLEETPLAN + url: 'https://www.fleetplan.net' +getaroom: + icons: + - archway + - dumbbell + - hotel + - map-marked + - map-marked-alt + - monument + - spa + - swimmer + - swimming-pool + label: getaroom + url: 'https://www.getaroom.com' +git-kraken: + icons: + - gitkraken + label: GitKraken + url: 'https://www.gitkraken.com' +gofore: + icons: + - gofore + label: Gofore + url: 'http://gofore.com' +'gripfire,inc': + icons: + - gripfire + label: 'Gripfire, Inc.' + url: 'http://gripfire.io' +harvard-medical-school: + icons: + - allergies + - ambulance + - band-aid + - briefcase-medical + - burn + - capsules + - diagnoses + - dna + - file-medical + - file-medical-alt + - first-aid + - heart + - heartbeat + - hospital + - hospital-alt + - hospital-symbol + - id-card-alt + - notes-medical + - pills + - plus + - prescription-bottle + - prescription-bottle-alt + - procedures + - smoking + - stethoscope + - syringe + - tablets + - thermometer + - user-md + - vial + - vials + - weight + - x-ray + label: Harvard Medical School + url: 'https://hms.harvard.edu' +hips: + icons: + - hips + label: Hips + url: 'https://hips.com' +hire-a-helper: + icons: + - archive + - box-open + - couch + - dolly + - people-carry + - sign + - suitcase + - tape + - truck-loading + - truck-moving + - wine-glass + label: HireAHelper + url: 'https://www.hireahelper.com' +hornbill: + icons: + - hornbill + label: Hornbill + url: 'https://www.hornbill.com' +hotjar: + icons: + - hotjar + label: Hotjar + url: 'https://www.hotjar.com' +hub-spot: + icons: + - hubspot + label: HubSpot + url: 'http://www.HubSpot.com' +in-site-systems: + icons: + - toolbox + label: InSite Systems + url: 'https://www.insitesystems.com' +joget: + icons: + - joget + label: Joget + url: 'http://www.joget.org' +jon-galloway: + icons: + - crow + label: Jon Galloway +kevin-barone: + icons: + - file-contract + label: Kevin Barone +key-cdn: + icons: + - keycdn + label: KeyCDN + url: 'https://www.keycdn.com' +korvue: + icons: + - korvue + label: Korvue + url: 'https://korvue.com' +max-elman: + icons: + - frog + label: Max Elman +med-apps: + icons: + - medapps + label: MedApps + url: 'http://medapps.com.au' +megaport: + icons: + - megaport + label: Megaport + url: 'https://www.megaport.com' +mix: + icons: + - mix + label: Mix + url: 'http://mix.com' +mizuni: + icons: + - mizuni + label: Mizuni + url: 'http://www.mizuni.com' +mrt: + icons: + - medrt + label: MRT + url: 'https://medrt.co.jp' +mylogin-info: + icons: + - user-shield + label: mylogin.info + url: 'https://www.mylogin.info' +napster: + icons: + - napster + label: Napster + url: 'http://www.napster.com' +nimblr: + icons: + - nimblr + label: Nimblr + url: 'https://nimblr.ai' +ns8: + icons: + - ns8 + label: NS8 + url: 'https://www.ns8.com' +nutritionix: + icons: + - nutritionix + label: Nutritionix + url: 'http://www.nutritionix.com' +page4-corporation: + icons: + - page4 + label: page4 Corporation + url: 'https://en.page4.com' +pal-fed: + icons: + - palfed + label: PalFed + url: 'https://www.palfed.com' +phabricator: + icons: + - phabricator + label: Phabricator + url: 'http://phacility.com' +purely-interactive: + icons: + - kiwi-bird + label: Purely Interactive + url: 'https://www.purelyinteractive.ca' +pushed: + icons: + - pushed + label: Pushed + url: 'https://pushed.co' +quin-scape: + icons: + - quinscape + label: QuinScape + url: 'https://www.quinscape.de' +readme-io: + icons: + - readme + label: Readme.io + url: 'http://readme.io' +red-river: + icons: + - red-river + label: red river + url: 'https://river.red' +rendact: + icons: + - rendact + label: Rendact + url: 'https://rendact.com' +replyd: + icons: + - replyd + label: replyd +resolving: + icons: + - resolving + label: Resolving + url: 'https://resolving.com' +rev-io: + icons: + - rev + label: Rev.io + url: 'https://rev.io' +rock-rms: + icons: + - rockrms + label: Rock RMS + url: 'http://rockrms.com' +rocket-chat: + icons: + - comment + - comment-alt + - comment-dots + - comment-slash + - comments + - frown + - meh + - phone + - phone-slash + - poo + - quote-left + - quote-right + - smile + - video + - video-slash + label: Rocket.Chat + url: 'https://rocket.chat' +schlix: + icons: + - schlix + label: SCHLIX + url: 'http://schlix.com' +search-eng-in: + icons: + - searchengin + label: SearchEng.in + url: 'http://searcheng.in' +service-stack: + icons: + - servicestack + label: ServiceStack + url: 'https://servicestack.net' +shopware: + icons: + - shopware + label: Shopware + url: 'https://shopware.de' +shp: + icons: + - school + label: SHP + url: 'http://shp.com' +silicon-barn-inc: + icons: + - project-diagram + label: Silicon Barn Inc + url: 'https://siliconbarn.com' +sistrix: + icons: + - sistrix + label: SISTRIX + url: 'https://www.sistrix.de' +smup: + icons: + - shoe-prints + label: Smup + url: 'https://www.atomsoftware.com.au' +speakap: + icons: + - speakap + label: Speakap + url: 'https://speakap.com' +stay-linked: + icons: + - box + - boxes + - clipboard-check + - clipboard-list + - dolly + - dolly-flatbed + - pallet + - shipping-fast + - truck + - warehouse + label: StayLinked + url: 'https://www.staylinked.com' +sticker-mule: + icons: + - sticker-mule + label: Sticker Mule + url: 'https://stickermule.com' +studio-vinari: + icons: + - studiovinari + label: Studio Vinari + url: 'https://studiovinari.com' +supple: + icons: + - supple + label: Supple + url: 'https://supple.com.au' +the-us-sunnah-foundation: + icons: + - dollar-sign + - donate + - dove + - gift + - globe + - hand-holding-heart + - hand-holding-usd + - hands-helping + - handshake + - heart + - leaf + - parachute-box + - piggy-bank + - ribbon + - seedling + label: The us-Sunnah Foundation + url: 'https://www.ussunnah.org' +themeco: + icons: + - themeco + label: Themeco + url: 'https://theme.co' +typo3: + icons: + - typo3 + label: Typo3 + url: 'https://typo3.org' +uniregistry: + icons: + - uniregistry + label: Uniregistry + url: 'https://uniregistry.com' +us-sunnah-foundation: + icons: + - ussunnah + label: us-Sunnah Foundation + url: 'https://www.ussunnah.org' +vaadin: + icons: + - vaadin + label: Vaadin + url: 'http://vaadin.com' +vnv: + icons: + - vnv + label: VNV + url: 'https://www.vnv.ch' +weedable: + icons: + - bong + - cannabis + - joint + - mortar-pestle + - prescription + label: Weedable + url: 'https://www.weedable.com' +whmcs: + icons: + - whmcs + label: WHMCS + url: 'https://www.whmcs.com' diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/500px.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/500px.svg new file mode 100644 index 0000000000..d872f24a01 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/500px.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/accessible-icon.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/accessible-icon.svg new file mode 100644 index 0000000000..725b9028cb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/accessible-icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/accusoft.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/accusoft.svg new file mode 100644 index 0000000000..ba4501278f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/accusoft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/adn.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/adn.svg new file mode 100644 index 0000000000..ee285395ff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/adn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/adversal.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/adversal.svg new file mode 100644 index 0000000000..125dd50194 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/adversal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/affiliatetheme.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/affiliatetheme.svg new file mode 100644 index 0000000000..d5dd4e8e8d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/affiliatetheme.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/algolia.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/algolia.svg new file mode 100644 index 0000000000..979d7cd718 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/algolia.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/amazon-pay.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/amazon-pay.svg new file mode 100644 index 0000000000..da90de809e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/amazon-pay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/amazon.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/amazon.svg new file mode 100644 index 0000000000..642fdb2d96 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/amazon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/amilia.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/amilia.svg new file mode 100644 index 0000000000..56cb7b4bac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/amilia.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/android.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/android.svg new file mode 100644 index 0000000000..62de4106bf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/android.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/angellist.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/angellist.svg new file mode 100644 index 0000000000..422885c2f9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/angellist.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/angrycreative.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/angrycreative.svg new file mode 100644 index 0000000000..b2624691c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/angrycreative.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/angular.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/angular.svg new file mode 100644 index 0000000000..83dcd9d78b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/angular.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/app-store-ios.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/app-store-ios.svg new file mode 100644 index 0000000000..12fc84843a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/app-store-ios.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/app-store.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/app-store.svg new file mode 100644 index 0000000000..52e04a60e8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/app-store.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/apper.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/apper.svg new file mode 100644 index 0000000000..f986f504a1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/apper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/apple-pay.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/apple-pay.svg new file mode 100644 index 0000000000..5d3145ada4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/apple-pay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/apple.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/apple.svg new file mode 100644 index 0000000000..574710ebf5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/apple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/asymmetrik.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/asymmetrik.svg new file mode 100644 index 0000000000..ef47296242 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/asymmetrik.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/audible.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/audible.svg new file mode 100644 index 0000000000..7ee5aef8a6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/audible.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/autoprefixer.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/autoprefixer.svg new file mode 100644 index 0000000000..912dee1b39 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/autoprefixer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/avianex.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/avianex.svg new file mode 100644 index 0000000000..4095309674 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/avianex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/aviato.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/aviato.svg new file mode 100644 index 0000000000..064e044499 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/aviato.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/aws.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/aws.svg new file mode 100644 index 0000000000..61973d34c7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/aws.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bandcamp.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bandcamp.svg new file mode 100644 index 0000000000..f1e1c204fd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bandcamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/behance-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/behance-square.svg new file mode 100644 index 0000000000..2d9e08bfc9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/behance-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/behance.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/behance.svg new file mode 100644 index 0000000000..73e946774c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/behance.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bimobject.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bimobject.svg new file mode 100644 index 0000000000..b708fdea90 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bimobject.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bitbucket.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bitbucket.svg new file mode 100644 index 0000000000..f78877e36d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bitbucket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bitcoin.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bitcoin.svg new file mode 100644 index 0000000000..9ee5f2ef9b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bitcoin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bity.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bity.svg new file mode 100644 index 0000000000..cf6c63d9ba --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/black-tie.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/black-tie.svg new file mode 100644 index 0000000000..36f3eb79ef --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/black-tie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/blackberry.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/blackberry.svg new file mode 100644 index 0000000000..d830886589 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/blackberry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/blogger-b.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/blogger-b.svg new file mode 100644 index 0000000000..c313b52125 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/blogger-b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/blogger.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/blogger.svg new file mode 100644 index 0000000000..7707557e4b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/blogger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bluetooth-b.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bluetooth-b.svg new file mode 100644 index 0000000000..d6e3a5e121 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bluetooth-b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bluetooth.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bluetooth.svg new file mode 100644 index 0000000000..aad75a3816 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/btc.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/btc.svg new file mode 100644 index 0000000000..45e65158d2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/btc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/buromobelexperte.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/buromobelexperte.svg new file mode 100644 index 0000000000..f419c9091d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/buromobelexperte.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/buysellads.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/buysellads.svg new file mode 100644 index 0000000000..5bb292db59 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/buysellads.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-amazon-pay.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-amazon-pay.svg new file mode 100644 index 0000000000..7a9866914f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-amazon-pay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-amex.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-amex.svg new file mode 100644 index 0000000000..9ad630d152 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-amex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-apple-pay.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-apple-pay.svg new file mode 100644 index 0000000000..a8a56ed58c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-apple-pay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-diners-club.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-diners-club.svg new file mode 100644 index 0000000000..7ade2bb53c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-diners-club.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-discover.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-discover.svg new file mode 100644 index 0000000000..f45384a0fe --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-discover.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-jcb.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-jcb.svg new file mode 100644 index 0000000000..8671a88448 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-jcb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-mastercard.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-mastercard.svg new file mode 100644 index 0000000000..af0753ea10 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-mastercard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-paypal.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-paypal.svg new file mode 100644 index 0000000000..6ca920055e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-paypal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-stripe.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-stripe.svg new file mode 100644 index 0000000000..3af1d8f070 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-stripe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-visa.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-visa.svg new file mode 100644 index 0000000000..b5cb29a205 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cc-visa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/centercode.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/centercode.svg new file mode 100644 index 0000000000..440b9c83a9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/centercode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/chrome.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/chrome.svg new file mode 100644 index 0000000000..5ea90d91b0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/chrome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cloudscale.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cloudscale.svg new file mode 100644 index 0000000000..9ad2a40551 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cloudscale.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cloudsmith.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cloudsmith.svg new file mode 100644 index 0000000000..bd2d47041e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cloudsmith.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cloudversify.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cloudversify.svg new file mode 100644 index 0000000000..4ed2518d1a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cloudversify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/codepen.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/codepen.svg new file mode 100644 index 0000000000..3258537083 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/codepen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/codiepie.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/codiepie.svg new file mode 100644 index 0000000000..dc7579c078 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/codiepie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/connectdevelop.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/connectdevelop.svg new file mode 100644 index 0000000000..8588469cad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/connectdevelop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/contao.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/contao.svg new file mode 100644 index 0000000000..a08f60aff0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/contao.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cpanel.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cpanel.svg new file mode 100644 index 0000000000..7063f11887 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cpanel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-by.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-by.svg new file mode 100644 index 0000000000..5432986b9f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-by.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-nc-eu.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-nc-eu.svg new file mode 100644 index 0000000000..539c7d6033 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-nc-eu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-nc-jp.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-nc-jp.svg new file mode 100644 index 0000000000..a8d89b19e3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-nc-jp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-nc.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-nc.svg new file mode 100644 index 0000000000..abb1577ad8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-nc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-nd.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-nd.svg new file mode 100644 index 0000000000..07b5fde4bc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-nd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-pd-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-pd-alt.svg new file mode 100644 index 0000000000..79bfa65e9c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-pd-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-pd.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-pd.svg new file mode 100644 index 0000000000..884fbd02ae --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-pd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-remix.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-remix.svg new file mode 100644 index 0000000000..70ced8946d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-remix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-sa.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-sa.svg new file mode 100644 index 0000000000..c9f41f8f63 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-sa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-sampling-plus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-sampling-plus.svg new file mode 100644 index 0000000000..c06a1cd516 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-sampling-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-sampling.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-sampling.svg new file mode 100644 index 0000000000..40a20c652b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-sampling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-share.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-share.svg new file mode 100644 index 0000000000..afef40ad4c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons-share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons.svg new file mode 100644 index 0000000000..e24a68f656 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/creative-commons.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/css3-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/css3-alt.svg new file mode 100644 index 0000000000..544362a138 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/css3-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/css3.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/css3.svg new file mode 100644 index 0000000000..5ea43eda3b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/css3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cuttlefish.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cuttlefish.svg new file mode 100644 index 0000000000..92f20d8ead --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/cuttlefish.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/d-and-d.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/d-and-d.svg new file mode 100644 index 0000000000..9411ae0368 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/d-and-d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/dashcube.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/dashcube.svg new file mode 100644 index 0000000000..c31239b23d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/dashcube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/delicious.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/delicious.svg new file mode 100644 index 0000000000..bbd3acc8bb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/delicious.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/deploydog.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/deploydog.svg new file mode 100644 index 0000000000..c9764e801f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/deploydog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/deskpro.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/deskpro.svg new file mode 100644 index 0000000000..48ad269989 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/deskpro.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/deviantart.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/deviantart.svg new file mode 100644 index 0000000000..017804bc72 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/deviantart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/digg.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/digg.svg new file mode 100644 index 0000000000..9c580fb0e9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/digg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/digital-ocean.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/digital-ocean.svg new file mode 100644 index 0000000000..84867cff9d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/digital-ocean.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/discord.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/discord.svg new file mode 100644 index 0000000000..650fe8f01a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/discord.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/discourse.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/discourse.svg new file mode 100644 index 0000000000..8740397594 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/discourse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/dochub.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/dochub.svg new file mode 100644 index 0000000000..c336088d41 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/dochub.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/docker.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/docker.svg new file mode 100644 index 0000000000..c4b1319826 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/docker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/draft2digital.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/draft2digital.svg new file mode 100644 index 0000000000..e30e3c8da0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/draft2digital.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/dribbble-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/dribbble-square.svg new file mode 100644 index 0000000000..147f5aee60 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/dribbble-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/dribbble.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/dribbble.svg new file mode 100644 index 0000000000..165c90aff9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/dribbble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/dropbox.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/dropbox.svg new file mode 100644 index 0000000000..cbc4787b78 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/dropbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/drupal.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/drupal.svg new file mode 100644 index 0000000000..09a90aeeb9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/drupal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/dyalog.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/dyalog.svg new file mode 100644 index 0000000000..40a59c7367 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/dyalog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/earlybirds.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/earlybirds.svg new file mode 100644 index 0000000000..42c9f51f18 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/earlybirds.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ebay.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ebay.svg new file mode 100644 index 0000000000..f626c91e4a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ebay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/edge.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/edge.svg new file mode 100644 index 0000000000..70548ac783 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/edge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/elementor.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/elementor.svg new file mode 100644 index 0000000000..da050213ba --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/elementor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ember.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ember.svg new file mode 100644 index 0000000000..49ede909e6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ember.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/empire.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/empire.svg new file mode 100644 index 0000000000..b000c8e07d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/empire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/envira.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/envira.svg new file mode 100644 index 0000000000..92aee14383 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/envira.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/erlang.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/erlang.svg new file mode 100644 index 0000000000..ff6851f651 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/erlang.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ethereum.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ethereum.svg new file mode 100644 index 0000000000..fce0031ad0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ethereum.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/etsy.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/etsy.svg new file mode 100644 index 0000000000..1dc3634143 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/etsy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/expeditedssl.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/expeditedssl.svg new file mode 100644 index 0000000000..a5c29368c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/expeditedssl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/facebook-f.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/facebook-f.svg new file mode 100644 index 0000000000..56bfbc4366 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/facebook-f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/facebook-messenger.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/facebook-messenger.svg new file mode 100644 index 0000000000..1ab970792e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/facebook-messenger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/facebook-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/facebook-square.svg new file mode 100644 index 0000000000..c78d21d871 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/facebook-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/facebook.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/facebook.svg new file mode 100644 index 0000000000..f6931b6b54 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/facebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/firefox.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/firefox.svg new file mode 100644 index 0000000000..ba83d29cb8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/firefox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/first-order-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/first-order-alt.svg new file mode 100644 index 0000000000..86853cea88 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/first-order-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/first-order.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/first-order.svg new file mode 100644 index 0000000000..527e4a5a9f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/first-order.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/firstdraft.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/firstdraft.svg new file mode 100644 index 0000000000..c2bcd31242 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/firstdraft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/flickr.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/flickr.svg new file mode 100644 index 0000000000..15dcfc6c66 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/flickr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/flipboard.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/flipboard.svg new file mode 100644 index 0000000000..866f82fdd2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/flipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/fly.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/fly.svg new file mode 100644 index 0000000000..69ee5c7b75 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/fly.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/font-awesome-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/font-awesome-alt.svg new file mode 100644 index 0000000000..90132af99f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/font-awesome-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/font-awesome-flag.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/font-awesome-flag.svg new file mode 100644 index 0000000000..9f0b7a4804 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/font-awesome-flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/font-awesome-logo-full.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/font-awesome-logo-full.svg new file mode 100644 index 0000000000..06b75a4d09 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/font-awesome-logo-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/font-awesome.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/font-awesome.svg new file mode 100644 index 0000000000..8c1d44528b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/font-awesome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/fonticons-fi.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/fonticons-fi.svg new file mode 100644 index 0000000000..e654422ce5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/fonticons-fi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/fonticons.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/fonticons.svg new file mode 100644 index 0000000000..6772eb9f54 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/fonticons.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/fort-awesome-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/fort-awesome-alt.svg new file mode 100644 index 0000000000..5a8e0e0c90 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/fort-awesome-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/fort-awesome.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/fort-awesome.svg new file mode 100644 index 0000000000..a763d437b8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/fort-awesome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/forumbee.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/forumbee.svg new file mode 100644 index 0000000000..d31d64118c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/forumbee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/foursquare.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/foursquare.svg new file mode 100644 index 0000000000..130fa9b393 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/foursquare.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/free-code-camp.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/free-code-camp.svg new file mode 100644 index 0000000000..be4d13b7eb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/free-code-camp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/freebsd.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/freebsd.svg new file mode 100644 index 0000000000..98c790fa0d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/freebsd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/fulcrum.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/fulcrum.svg new file mode 100644 index 0000000000..739a4e55f2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/fulcrum.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/galactic-republic.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/galactic-republic.svg new file mode 100644 index 0000000000..8b91f999da --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/galactic-republic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/galactic-senate.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/galactic-senate.svg new file mode 100644 index 0000000000..7ee63c16f5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/galactic-senate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/get-pocket.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/get-pocket.svg new file mode 100644 index 0000000000..f6046088fa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/get-pocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gg-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gg-circle.svg new file mode 100644 index 0000000000..7ff26dd653 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gg-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gg.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gg.svg new file mode 100644 index 0000000000..cace4961ac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/git-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/git-square.svg new file mode 100644 index 0000000000..a6f9a2d13e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/git-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/git.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/git.svg new file mode 100644 index 0000000000..468515bdbe --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/git.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/github-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/github-alt.svg new file mode 100644 index 0000000000..43d2da5d23 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/github-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/github-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/github-square.svg new file mode 100644 index 0000000000..a235d2f4e8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/github-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/github.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/github.svg new file mode 100644 index 0000000000..53bd7b2d2a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gitkraken.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gitkraken.svg new file mode 100644 index 0000000000..a3bc20fc3f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gitkraken.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gitlab.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gitlab.svg new file mode 100644 index 0000000000..5f18f6f37d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gitlab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gitter.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gitter.svg new file mode 100644 index 0000000000..6aaafd9a49 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/glide-g.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/glide-g.svg new file mode 100644 index 0000000000..7517405f64 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/glide-g.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/glide.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/glide.svg new file mode 100644 index 0000000000..0fbdca4b3e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/glide.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gofore.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gofore.svg new file mode 100644 index 0000000000..792de75e70 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gofore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/goodreads-g.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/goodreads-g.svg new file mode 100644 index 0000000000..b35546631e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/goodreads-g.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/goodreads.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/goodreads.svg new file mode 100644 index 0000000000..040163af97 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/goodreads.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google-drive.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google-drive.svg new file mode 100644 index 0000000000..cd8dd52a50 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google-drive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google-play.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google-play.svg new file mode 100644 index 0000000000..82cffd5300 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google-plus-g.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google-plus-g.svg new file mode 100644 index 0000000000..c4587db394 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google-plus-g.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google-plus-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google-plus-square.svg new file mode 100644 index 0000000000..f18979c9f7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google-plus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google-plus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google-plus.svg new file mode 100644 index 0000000000..46e143e6bd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google-wallet.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google-wallet.svg new file mode 100644 index 0000000000..009afb61c1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google-wallet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google.svg new file mode 100644 index 0000000000..014b5ceb90 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/google.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gratipay.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gratipay.svg new file mode 100644 index 0000000000..a35d8b1972 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gratipay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/grav.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/grav.svg new file mode 100644 index 0000000000..e12bbf51ee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/grav.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gripfire.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gripfire.svg new file mode 100644 index 0000000000..36556490d0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gripfire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/grunt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/grunt.svg new file mode 100644 index 0000000000..89a1f55237 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/grunt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gulp.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gulp.svg new file mode 100644 index 0000000000..0bb37a2708 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/gulp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hacker-news-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hacker-news-square.svg new file mode 100644 index 0000000000..1bb8cab450 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hacker-news-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hacker-news.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hacker-news.svg new file mode 100644 index 0000000000..0de37e65cc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hacker-news.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hips.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hips.svg new file mode 100644 index 0000000000..68b375a44f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hips.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hire-a-helper.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hire-a-helper.svg new file mode 100644 index 0000000000..5fdb39dc2f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hire-a-helper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hooli.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hooli.svg new file mode 100644 index 0000000000..3c0e6b2c79 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hooli.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hornbill.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hornbill.svg new file mode 100644 index 0000000000..71253d34d6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hornbill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hotjar.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hotjar.svg new file mode 100644 index 0000000000..7e4772964a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hotjar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/houzz.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/houzz.svg new file mode 100644 index 0000000000..5ab2fe9155 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/houzz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/html5.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/html5.svg new file mode 100644 index 0000000000..a06827da37 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/html5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hubspot.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hubspot.svg new file mode 100644 index 0000000000..03f8f4e0ca --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/hubspot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/imdb.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/imdb.svg new file mode 100644 index 0000000000..95fd166c41 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/imdb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/instagram.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/instagram.svg new file mode 100644 index 0000000000..89c89b76f8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/instagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/internet-explorer.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/internet-explorer.svg new file mode 100644 index 0000000000..36173c0ba1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/internet-explorer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ioxhost.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ioxhost.svg new file mode 100644 index 0000000000..64f31af278 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ioxhost.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/itunes-note.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/itunes-note.svg new file mode 100644 index 0000000000..bb46e70245 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/itunes-note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/itunes.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/itunes.svg new file mode 100644 index 0000000000..32736ae83d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/itunes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/java.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/java.svg new file mode 100644 index 0000000000..c0d78d290c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/java.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/jedi-order.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/jedi-order.svg new file mode 100644 index 0000000000..bf74d27d86 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/jedi-order.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/jenkins.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/jenkins.svg new file mode 100644 index 0000000000..4c2251f1b0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/jenkins.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/joget.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/joget.svg new file mode 100644 index 0000000000..01e76d091f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/joget.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/joomla.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/joomla.svg new file mode 100644 index 0000000000..a5654303be --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/joomla.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/js-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/js-square.svg new file mode 100644 index 0000000000..389af1c142 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/js-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/js.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/js.svg new file mode 100644 index 0000000000..1bf21b8919 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/js.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/jsfiddle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/jsfiddle.svg new file mode 100644 index 0000000000..2fb27ee36f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/jsfiddle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/keybase.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/keybase.svg new file mode 100644 index 0000000000..d956428335 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/keybase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/keycdn.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/keycdn.svg new file mode 100644 index 0000000000..da19aee028 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/keycdn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/kickstarter-k.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/kickstarter-k.svg new file mode 100644 index 0000000000..4ad8ad2cbf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/kickstarter-k.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/kickstarter.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/kickstarter.svg new file mode 100644 index 0000000000..c765b1b40c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/kickstarter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/korvue.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/korvue.svg new file mode 100644 index 0000000000..c9c44a81a3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/korvue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/laravel.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/laravel.svg new file mode 100644 index 0000000000..4c7a74c942 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/laravel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/lastfm-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/lastfm-square.svg new file mode 100644 index 0000000000..e9febdb67b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/lastfm-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/lastfm.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/lastfm.svg new file mode 100644 index 0000000000..7508067ab5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/lastfm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/leanpub.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/leanpub.svg new file mode 100644 index 0000000000..994eca34d1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/leanpub.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/less.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/less.svg new file mode 100644 index 0000000000..12a0ae2a99 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/less.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/line.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/line.svg new file mode 100644 index 0000000000..866abd878a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/linkedin-in.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/linkedin-in.svg new file mode 100644 index 0000000000..5af65df8c5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/linkedin-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/linkedin.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/linkedin.svg new file mode 100644 index 0000000000..69d8e9731a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/linkedin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/linode.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/linode.svg new file mode 100644 index 0000000000..502bdf7967 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/linode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/linux.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/linux.svg new file mode 100644 index 0000000000..7d1e402869 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/linux.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/lyft.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/lyft.svg new file mode 100644 index 0000000000..4283ec51a8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/lyft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/magento.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/magento.svg new file mode 100644 index 0000000000..bdf6488e50 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/magento.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/mailchimp.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/mailchimp.svg new file mode 100644 index 0000000000..970312a3d1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/mailchimp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/mandalorian.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/mandalorian.svg new file mode 100644 index 0000000000..b9f6d7ea9d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/mandalorian.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/mastodon.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/mastodon.svg new file mode 100644 index 0000000000..557c389191 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/mastodon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/maxcdn.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/maxcdn.svg new file mode 100644 index 0000000000..4f4b85da48 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/maxcdn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/medapps.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/medapps.svg new file mode 100644 index 0000000000..bb1a667aaf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/medapps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/medium-m.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/medium-m.svg new file mode 100644 index 0000000000..8305fdacd6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/medium-m.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/medium.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/medium.svg new file mode 100644 index 0000000000..f370e1e194 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/medium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/medrt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/medrt.svg new file mode 100644 index 0000000000..3775944604 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/medrt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/meetup.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/meetup.svg new file mode 100644 index 0000000000..d387c4bdbf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/meetup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/megaport.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/megaport.svg new file mode 100644 index 0000000000..ff622e4a54 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/megaport.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/microsoft.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/microsoft.svg new file mode 100644 index 0000000000..ed89895542 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/microsoft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/mix.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/mix.svg new file mode 100644 index 0000000000..d131e2321f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/mix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/mixcloud.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/mixcloud.svg new file mode 100644 index 0000000000..094239bbfe --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/mixcloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/mizuni.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/mizuni.svg new file mode 100644 index 0000000000..8cb8d91850 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/mizuni.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/modx.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/modx.svg new file mode 100644 index 0000000000..9cbc71fde2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/modx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/monero.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/monero.svg new file mode 100644 index 0000000000..c4892b6c55 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/monero.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/napster.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/napster.svg new file mode 100644 index 0000000000..866e31da64 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/napster.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/nimblr.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/nimblr.svg new file mode 100644 index 0000000000..56cfe15a55 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/nimblr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/nintendo-switch.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/nintendo-switch.svg new file mode 100644 index 0000000000..56dfeafc8b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/nintendo-switch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/node-js.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/node-js.svg new file mode 100644 index 0000000000..c73f1a64ae --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/node-js.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/node.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/node.svg new file mode 100644 index 0000000000..3bdb5eacd3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/node.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/npm.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/npm.svg new file mode 100644 index 0000000000..ad643c3670 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/npm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ns8.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ns8.svg new file mode 100644 index 0000000000..1f5e2fc94d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ns8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/nutritionix.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/nutritionix.svg new file mode 100644 index 0000000000..19eb0e0781 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/nutritionix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/odnoklassniki-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/odnoklassniki-square.svg new file mode 100644 index 0000000000..e2793a94e2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/odnoklassniki-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/odnoklassniki.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/odnoklassniki.svg new file mode 100644 index 0000000000..f426fd364e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/odnoklassniki.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/old-republic.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/old-republic.svg new file mode 100644 index 0000000000..8b62644c5f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/old-republic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/opencart.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/opencart.svg new file mode 100644 index 0000000000..2f1498a1a2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/opencart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/openid.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/openid.svg new file mode 100644 index 0000000000..d36573e03e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/openid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/opera.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/opera.svg new file mode 100644 index 0000000000..4fd8cb920a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/opera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/optin-monster.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/optin-monster.svg new file mode 100644 index 0000000000..deea2e3d10 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/optin-monster.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/osi.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/osi.svg new file mode 100644 index 0000000000..375a5aa950 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/osi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/page4.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/page4.svg new file mode 100644 index 0000000000..e0eda5d377 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/page4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pagelines.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pagelines.svg new file mode 100644 index 0000000000..6722988a87 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pagelines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/palfed.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/palfed.svg new file mode 100644 index 0000000000..5c8a4b2cb4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/palfed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/patreon.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/patreon.svg new file mode 100644 index 0000000000..1990957145 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/patreon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/paypal.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/paypal.svg new file mode 100644 index 0000000000..ecf00b6d3b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/paypal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/periscope.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/periscope.svg new file mode 100644 index 0000000000..9f46704c3a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/periscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/phabricator.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/phabricator.svg new file mode 100644 index 0000000000..c51884753d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/phabricator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/phoenix-framework.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/phoenix-framework.svg new file mode 100644 index 0000000000..4542fc2f90 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/phoenix-framework.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/phoenix-squadron.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/phoenix-squadron.svg new file mode 100644 index 0000000000..9a588951fc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/phoenix-squadron.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/php.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/php.svg new file mode 100644 index 0000000000..c2d86d48e4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/php.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pied-piper-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pied-piper-alt.svg new file mode 100644 index 0000000000..0c57b063d4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pied-piper-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pied-piper-hat.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pied-piper-hat.svg new file mode 100644 index 0000000000..2f93465dcb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pied-piper-hat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pied-piper-pp.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pied-piper-pp.svg new file mode 100644 index 0000000000..092ca730a7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pied-piper-pp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pied-piper.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pied-piper.svg new file mode 100644 index 0000000000..d74fb980c7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pied-piper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pinterest-p.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pinterest-p.svg new file mode 100644 index 0000000000..311932af8c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pinterest-p.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pinterest-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pinterest-square.svg new file mode 100644 index 0000000000..7a502a796f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pinterest-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pinterest.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pinterest.svg new file mode 100644 index 0000000000..42c1f6455a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pinterest.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/playstation.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/playstation.svg new file mode 100644 index 0000000000..3cd7fcad8a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/playstation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/product-hunt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/product-hunt.svg new file mode 100644 index 0000000000..847ac2c212 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/product-hunt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pushed.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pushed.svg new file mode 100644 index 0000000000..f7e24f0ca1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/pushed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/python.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/python.svg new file mode 100644 index 0000000000..915edb6d10 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/python.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/qq.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/qq.svg new file mode 100644 index 0000000000..541bdd5705 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/qq.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/quinscape.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/quinscape.svg new file mode 100644 index 0000000000..121f5df86b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/quinscape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/quora.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/quora.svg new file mode 100644 index 0000000000..601d815c7a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/quora.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/r-project.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/r-project.svg new file mode 100644 index 0000000000..ef4076e434 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/r-project.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/r.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/r.svg new file mode 100644 index 0000000000..ef4076e434 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/r.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ravelry.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ravelry.svg new file mode 100644 index 0000000000..49d511c039 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ravelry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/react.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/react.svg new file mode 100644 index 0000000000..993b43e8be --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/react.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/readme.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/readme.svg new file mode 100644 index 0000000000..482c337eb2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/readme.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/rebel.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/rebel.svg new file mode 100644 index 0000000000..555b053399 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/rebel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/red-river.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/red-river.svg new file mode 100644 index 0000000000..6e7044f2e3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/red-river.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/reddit-alien.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/reddit-alien.svg new file mode 100644 index 0000000000..85b98591e0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/reddit-alien.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/reddit-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/reddit-square.svg new file mode 100644 index 0000000000..e940a85170 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/reddit-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/reddit.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/reddit.svg new file mode 100644 index 0000000000..262d0a7f85 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/reddit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/rendact.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/rendact.svg new file mode 100644 index 0000000000..b3c45ecca7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/rendact.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/renren.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/renren.svg new file mode 100644 index 0000000000..9706a7029c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/renren.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/replyd.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/replyd.svg new file mode 100644 index 0000000000..fe526f2b17 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/replyd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/researchgate.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/researchgate.svg new file mode 100644 index 0000000000..db7149f4c1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/researchgate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/resolving.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/resolving.svg new file mode 100644 index 0000000000..339cbca048 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/resolving.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/rev.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/rev.svg new file mode 100644 index 0000000000..aae545546d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/rev.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/rocketchat.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/rocketchat.svg new file mode 100644 index 0000000000..fc05337be6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/rocketchat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/rockrms.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/rockrms.svg new file mode 100644 index 0000000000..6c41d79055 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/rockrms.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/safari.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/safari.svg new file mode 100644 index 0000000000..70dc86b8dc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/safari.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/sass.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/sass.svg new file mode 100644 index 0000000000..4f55319584 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/sass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/schlix.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/schlix.svg new file mode 100644 index 0000000000..413e4ff70a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/schlix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/scribd.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/scribd.svg new file mode 100644 index 0000000000..f1ecad19dd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/scribd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/searchengin.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/searchengin.svg new file mode 100644 index 0000000000..2ed72b1ac7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/searchengin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/sellcast.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/sellcast.svg new file mode 100644 index 0000000000..75b47f18ff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/sellcast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/sellsy.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/sellsy.svg new file mode 100644 index 0000000000..6119fe585f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/sellsy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/servicestack.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/servicestack.svg new file mode 100644 index 0000000000..9f937eb4d9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/servicestack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/shirtsinbulk.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/shirtsinbulk.svg new file mode 100644 index 0000000000..c3033b015f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/shirtsinbulk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/shopware.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/shopware.svg new file mode 100644 index 0000000000..c8ca09f1e6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/shopware.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/simplybuilt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/simplybuilt.svg new file mode 100644 index 0000000000..fbecfe9644 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/simplybuilt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/sistrix.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/sistrix.svg new file mode 100644 index 0000000000..e62cef6153 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/sistrix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/sith.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/sith.svg new file mode 100644 index 0000000000..cecd39d89e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/sith.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/skyatlas.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/skyatlas.svg new file mode 100644 index 0000000000..d2c8a3bf85 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/skyatlas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/skype.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/skype.svg new file mode 100644 index 0000000000..538843cd66 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/skype.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/slack-hash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/slack-hash.svg new file mode 100644 index 0000000000..a465405ef9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/slack-hash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/slack.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/slack.svg new file mode 100644 index 0000000000..35db81159c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/slack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/slideshare.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/slideshare.svg new file mode 100644 index 0000000000..faaee94543 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/slideshare.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/snapchat-ghost.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/snapchat-ghost.svg new file mode 100644 index 0000000000..4497f0cf59 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/snapchat-ghost.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/snapchat-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/snapchat-square.svg new file mode 100644 index 0000000000..c91e05ecbb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/snapchat-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/snapchat.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/snapchat.svg new file mode 100644 index 0000000000..88cfa16703 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/snapchat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/soundcloud.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/soundcloud.svg new file mode 100644 index 0000000000..0d9b061603 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/soundcloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/speakap.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/speakap.svg new file mode 100644 index 0000000000..b97a60729f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/speakap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/spotify.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/spotify.svg new file mode 100644 index 0000000000..dcd028a9a5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/spotify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/squarespace.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/squarespace.svg new file mode 100644 index 0000000000..6b31da58e1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/squarespace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/stack-exchange.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/stack-exchange.svg new file mode 100644 index 0000000000..3889ae2348 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/stack-exchange.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/stack-overflow.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/stack-overflow.svg new file mode 100644 index 0000000000..aca5bde524 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/stack-overflow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/staylinked.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/staylinked.svg new file mode 100644 index 0000000000..696255a14e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/staylinked.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/steam-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/steam-square.svg new file mode 100644 index 0000000000..59a6a8f61a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/steam-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/steam-symbol.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/steam-symbol.svg new file mode 100644 index 0000000000..f0ab74db52 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/steam-symbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/steam.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/steam.svg new file mode 100644 index 0000000000..642650a888 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/steam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/sticker-mule.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/sticker-mule.svg new file mode 100644 index 0000000000..78c3d58833 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/sticker-mule.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/strava.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/strava.svg new file mode 100644 index 0000000000..af517c7029 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/strava.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/stripe-s.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/stripe-s.svg new file mode 100644 index 0000000000..6b5dafd91a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/stripe-s.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/stripe.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/stripe.svg new file mode 100644 index 0000000000..f3cd5d0c1b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/stripe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/studiovinari.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/studiovinari.svg new file mode 100644 index 0000000000..e6e7fa8975 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/studiovinari.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/stumbleupon-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/stumbleupon-circle.svg new file mode 100644 index 0000000000..a4b42346c9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/stumbleupon-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/stumbleupon.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/stumbleupon.svg new file mode 100644 index 0000000000..999d38627e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/stumbleupon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/superpowers.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/superpowers.svg new file mode 100644 index 0000000000..a6f13f6d2b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/superpowers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/supple.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/supple.svg new file mode 100644 index 0000000000..5afe879265 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/supple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/teamspeak.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/teamspeak.svg new file mode 100644 index 0000000000..40f577b985 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/teamspeak.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/telegram-plane.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/telegram-plane.svg new file mode 100644 index 0000000000..a4e067b5df --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/telegram-plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/telegram.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/telegram.svg new file mode 100644 index 0000000000..fc5492cc96 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/telegram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/tencent-weibo.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/tencent-weibo.svg new file mode 100644 index 0000000000..30b49fc82a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/tencent-weibo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/themeco.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/themeco.svg new file mode 100644 index 0000000000..efb50804b1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/themeco.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/themeisle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/themeisle.svg new file mode 100644 index 0000000000..b933775562 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/themeisle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/trade-federation.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/trade-federation.svg new file mode 100644 index 0000000000..903d9e0580 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/trade-federation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/trello.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/trello.svg new file mode 100644 index 0000000000..fba695d411 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/trello.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/tripadvisor.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/tripadvisor.svg new file mode 100644 index 0000000000..4f3e2b6dc5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/tripadvisor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/tumblr-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/tumblr-square.svg new file mode 100644 index 0000000000..96b8cf5c01 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/tumblr-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/tumblr.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/tumblr.svg new file mode 100644 index 0000000000..da593777ad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/tumblr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/twitch.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/twitch.svg new file mode 100644 index 0000000000..89a02fb6f6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/twitch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/twitter-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/twitter-square.svg new file mode 100644 index 0000000000..0ca7e0b97e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/twitter-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/twitter.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/twitter.svg new file mode 100644 index 0000000000..f0ed9c5fcf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/twitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/typo3.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/typo3.svg new file mode 100644 index 0000000000..ef5341db48 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/typo3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/uber.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/uber.svg new file mode 100644 index 0000000000..569a1cd9c1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/uber.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/uikit.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/uikit.svg new file mode 100644 index 0000000000..26ab61104e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/uikit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/uniregistry.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/uniregistry.svg new file mode 100644 index 0000000000..a58a5093fa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/uniregistry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/untappd.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/untappd.svg new file mode 100644 index 0000000000..5e06293877 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/untappd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/usb.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/usb.svg new file mode 100644 index 0000000000..a9d265eee1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/usb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ussunnah.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ussunnah.svg new file mode 100644 index 0000000000..1dd9ed1257 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/ussunnah.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vaadin.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vaadin.svg new file mode 100644 index 0000000000..fadce5ada7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vaadin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/viacoin.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/viacoin.svg new file mode 100644 index 0000000000..c4777d6fc8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/viacoin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/viadeo-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/viadeo-square.svg new file mode 100644 index 0000000000..9212671d07 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/viadeo-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/viadeo.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/viadeo.svg new file mode 100644 index 0000000000..f4c1f8a1bf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/viadeo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/viber.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/viber.svg new file mode 100644 index 0000000000..e40506b7a9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/viber.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vimeo-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vimeo-square.svg new file mode 100644 index 0000000000..eed266e799 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vimeo-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vimeo-v.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vimeo-v.svg new file mode 100644 index 0000000000..c87152815a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vimeo-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vimeo.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vimeo.svg new file mode 100644 index 0000000000..3a0c527396 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vimeo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vine.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vine.svg new file mode 100644 index 0000000000..53cb27f899 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vk.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vk.svg new file mode 100644 index 0000000000..022717d16d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vnv.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vnv.svg new file mode 100644 index 0000000000..56cd37b49c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vnv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vuejs.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vuejs.svg new file mode 100644 index 0000000000..932887c13f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/vuejs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/weebly.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/weebly.svg new file mode 100644 index 0000000000..917dabe602 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/weebly.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/weibo.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/weibo.svg new file mode 100644 index 0000000000..84f18c49f9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/weibo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/weixin.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/weixin.svg new file mode 100644 index 0000000000..cd27b19817 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/weixin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/whatsapp-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/whatsapp-square.svg new file mode 100644 index 0000000000..7db67533d7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/whatsapp-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/whatsapp.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/whatsapp.svg new file mode 100644 index 0000000000..6ca3eb351b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/whatsapp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/whmcs.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/whmcs.svg new file mode 100644 index 0000000000..2bbd6959f3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/whmcs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wikipedia-w.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wikipedia-w.svg new file mode 100644 index 0000000000..075425306f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wikipedia-w.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/windows.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/windows.svg new file mode 100644 index 0000000000..586ba25ddf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/windows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wix.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wix.svg new file mode 100644 index 0000000000..c1bea30e0a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wolf-pack-battalion.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wolf-pack-battalion.svg new file mode 100644 index 0000000000..ba79f5798b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wolf-pack-battalion.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wordpress-simple.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wordpress-simple.svg new file mode 100644 index 0000000000..de9795ad2f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wordpress-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wordpress.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wordpress.svg new file mode 100644 index 0000000000..3cc2bd44dc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wordpress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wpbeginner.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wpbeginner.svg new file mode 100644 index 0000000000..1f81e84450 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wpbeginner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wpexplorer.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wpexplorer.svg new file mode 100644 index 0000000000..706e12a940 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wpexplorer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wpforms.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wpforms.svg new file mode 100644 index 0000000000..03a3662b1b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/wpforms.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/xbox.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/xbox.svg new file mode 100644 index 0000000000..5420576e31 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/xbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/xing-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/xing-square.svg new file mode 100644 index 0000000000..8c9fb82929 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/xing-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/xing.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/xing.svg new file mode 100644 index 0000000000..c400771119 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/xing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/y-combinator.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/y-combinator.svg new file mode 100644 index 0000000000..d4a0f7e2c9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/y-combinator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/yahoo.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/yahoo.svg new file mode 100644 index 0000000000..22dea83de0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/yahoo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/yandex-international.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/yandex-international.svg new file mode 100644 index 0000000000..2b1c10c792 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/yandex-international.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/yandex.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/yandex.svg new file mode 100644 index 0000000000..d054fe043c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/yandex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/yelp.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/yelp.svg new file mode 100644 index 0000000000..e339dd5c3b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/yelp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/yoast.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/yoast.svg new file mode 100644 index 0000000000..bf2ec0f1ee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/yoast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/youtube-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/youtube-square.svg new file mode 100644 index 0000000000..07b9ab5934 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/youtube-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/youtube.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/youtube.svg new file mode 100644 index 0000000000..e831b886fb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/brands/youtube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/address-book.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/address-book.svg new file mode 100644 index 0000000000..1c941ca309 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/address-book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/address-card.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/address-card.svg new file mode 100644 index 0000000000..4e0179f55c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/address-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/angry.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/angry.svg new file mode 100644 index 0000000000..f8636abe50 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/angry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/arrow-alt-circle-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/arrow-alt-circle-down.svg new file mode 100644 index 0000000000..5f75848862 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/arrow-alt-circle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/arrow-alt-circle-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/arrow-alt-circle-left.svg new file mode 100644 index 0000000000..eb3fbdb9f0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/arrow-alt-circle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/arrow-alt-circle-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/arrow-alt-circle-right.svg new file mode 100644 index 0000000000..061d97266c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/arrow-alt-circle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/arrow-alt-circle-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/arrow-alt-circle-up.svg new file mode 100644 index 0000000000..519288e7a1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/arrow-alt-circle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/bell-slash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/bell-slash.svg new file mode 100644 index 0000000000..de485f8728 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/bell-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/bell.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/bell.svg new file mode 100644 index 0000000000..0a22fd3bc4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/bell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/bookmark.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/bookmark.svg new file mode 100644 index 0000000000..bd315e488b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/building.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/building.svg new file mode 100644 index 0000000000..4178db461e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/building.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/calendar-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/calendar-alt.svg new file mode 100644 index 0000000000..130e2ab70f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/calendar-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/calendar-check.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/calendar-check.svg new file mode 100644 index 0000000000..3d98c56370 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/calendar-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/calendar-minus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/calendar-minus.svg new file mode 100644 index 0000000000..0b83b34876 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/calendar-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/calendar-plus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/calendar-plus.svg new file mode 100644 index 0000000000..7715ffc400 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/calendar-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/calendar-times.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/calendar-times.svg new file mode 100644 index 0000000000..8a9a10c777 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/calendar-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/calendar.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/calendar.svg new file mode 100644 index 0000000000..725e887980 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/calendar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/caret-square-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/caret-square-down.svg new file mode 100644 index 0000000000..29a40ab911 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/caret-square-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/caret-square-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/caret-square-left.svg new file mode 100644 index 0000000000..5fa7f8b011 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/caret-square-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/caret-square-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/caret-square-right.svg new file mode 100644 index 0000000000..03b4389739 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/caret-square-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/caret-square-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/caret-square-up.svg new file mode 100644 index 0000000000..b59f23b38d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/caret-square-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/chart-bar.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/chart-bar.svg new file mode 100644 index 0000000000..a2bb019cf5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/chart-bar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/check-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/check-circle.svg new file mode 100644 index 0000000000..000b850f95 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/check-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/check-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/check-square.svg new file mode 100644 index 0000000000..602b375b9e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/check-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/circle.svg new file mode 100644 index 0000000000..835815e173 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/clipboard.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/clipboard.svg new file mode 100644 index 0000000000..f339c1f55f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/clipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/clock.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/clock.svg new file mode 100644 index 0000000000..136a550aad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/clone.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/clone.svg new file mode 100644 index 0000000000..c9804bf337 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/clone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/closed-captioning.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/closed-captioning.svg new file mode 100644 index 0000000000..277952b0a9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/closed-captioning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/comment-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/comment-alt.svg new file mode 100644 index 0000000000..cf31f08827 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/comment-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/comment-dots.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/comment-dots.svg new file mode 100644 index 0000000000..de4dc07221 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/comment-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/comment.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/comment.svg new file mode 100644 index 0000000000..6fb2541d8c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/comment.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/comments.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/comments.svg new file mode 100644 index 0000000000..9ab2d3879d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/comments.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/compass.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/compass.svg new file mode 100644 index 0000000000..6a5cf44751 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/copy.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/copy.svg new file mode 100644 index 0000000000..a488ff2c84 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/copy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/copyright.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/copyright.svg new file mode 100644 index 0000000000..2a81ca28a2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/copyright.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/credit-card.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/credit-card.svg new file mode 100644 index 0000000000..f5a047fb05 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/credit-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/dizzy.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/dizzy.svg new file mode 100644 index 0000000000..b84e00599e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/dizzy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/dot-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/dot-circle.svg new file mode 100644 index 0000000000..eacf9b7003 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/dot-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/edit.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/edit.svg new file mode 100644 index 0000000000..d7b191461d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/envelope-open.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/envelope-open.svg new file mode 100644 index 0000000000..0b71db8f80 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/envelope-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/envelope.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/envelope.svg new file mode 100644 index 0000000000..a2557ef200 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/envelope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/eye-slash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/eye-slash.svg new file mode 100644 index 0000000000..3548435f9d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/eye-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/eye.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/eye.svg new file mode 100644 index 0000000000..9d4bcf08bf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-alt.svg new file mode 100644 index 0000000000..e32217d20e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-archive.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-archive.svg new file mode 100644 index 0000000000..f9af993a04 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-audio.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-audio.svg new file mode 100644 index 0000000000..87c16005cb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-audio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-code.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-code.svg new file mode 100644 index 0000000000..86c2768725 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-excel.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-excel.svg new file mode 100644 index 0000000000..481230270c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-excel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-image.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-image.svg new file mode 100644 index 0000000000..2ca87e5c81 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-pdf.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-pdf.svg new file mode 100644 index 0000000000..3f2fa45322 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-pdf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-powerpoint.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-powerpoint.svg new file mode 100644 index 0000000000..41e3505b3f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-powerpoint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-video.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-video.svg new file mode 100644 index 0000000000..ed02cdc119 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-word.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-word.svg new file mode 100644 index 0000000000..2ba4990075 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file-word.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file.svg new file mode 100644 index 0000000000..9bc15133e7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/flag.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/flag.svg new file mode 100644 index 0000000000..4df2e03fd5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/flushed.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/flushed.svg new file mode 100644 index 0000000000..cb201a2459 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/flushed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/folder-open.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/folder-open.svg new file mode 100644 index 0000000000..5a32ec781f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/folder-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/folder.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/folder.svg new file mode 100644 index 0000000000..5cfb409037 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/font-awesome-logo-full.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/font-awesome-logo-full.svg new file mode 100644 index 0000000000..06b75a4d09 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/font-awesome-logo-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/frown-open.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/frown-open.svg new file mode 100644 index 0000000000..728cc1cb32 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/frown-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/frown.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/frown.svg new file mode 100644 index 0000000000..a8cb603711 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/frown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/futbol.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/futbol.svg new file mode 100644 index 0000000000..0601465294 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/futbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/gem.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/gem.svg new file mode 100644 index 0000000000..9640cbf9ff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/gem.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grimace.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grimace.svg new file mode 100644 index 0000000000..3ef8c88098 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grimace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-alt.svg new file mode 100644 index 0000000000..6e8ac81eb4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-beam-sweat.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-beam-sweat.svg new file mode 100644 index 0000000000..6f2213350b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-beam-sweat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-beam.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-beam.svg new file mode 100644 index 0000000000..0f8b366012 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-hearts.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-hearts.svg new file mode 100644 index 0000000000..3ecf5f4a2c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-hearts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-squint-tears.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-squint-tears.svg new file mode 100644 index 0000000000..06116746f8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-squint-tears.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-squint.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-squint.svg new file mode 100644 index 0000000000..b6d15a4e4b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-stars.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-stars.svg new file mode 100644 index 0000000000..8f8f2d077f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-stars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-tears.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-tears.svg new file mode 100644 index 0000000000..fefc4237cd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-tears.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-tongue-squint.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-tongue-squint.svg new file mode 100644 index 0000000000..6434a61bbe --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-tongue-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-tongue-wink.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-tongue-wink.svg new file mode 100644 index 0000000000..e75cdccd71 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-tongue-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-tongue.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-tongue.svg new file mode 100644 index 0000000000..1afbcef40f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-tongue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-wink.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-wink.svg new file mode 100644 index 0000000000..ed3b703d9e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin.svg new file mode 100644 index 0000000000..1630a8922a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/grin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-lizard.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-lizard.svg new file mode 100644 index 0000000000..6dba7ecf1a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-lizard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-paper.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-paper.svg new file mode 100644 index 0000000000..afe7adb0a1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-paper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-peace.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-peace.svg new file mode 100644 index 0000000000..506209b2a4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-peace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-point-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-point-down.svg new file mode 100644 index 0000000000..08bc8d8489 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-point-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-point-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-point-left.svg new file mode 100644 index 0000000000..82d6640399 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-point-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-point-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-point-right.svg new file mode 100644 index 0000000000..312c20933a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-point-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-point-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-point-up.svg new file mode 100644 index 0000000000..6f823c30e0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-point-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-pointer.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-pointer.svg new file mode 100644 index 0000000000..1ff0b8eb0f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-pointer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-rock.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-rock.svg new file mode 100644 index 0000000000..a13011abfa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-rock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-scissors.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-scissors.svg new file mode 100644 index 0000000000..3e0b478f28 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-scissors.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-spock.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-spock.svg new file mode 100644 index 0000000000..100466704f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hand-spock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/handshake.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/handshake.svg new file mode 100644 index 0000000000..1cb42aecbb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/handshake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hdd.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hdd.svg new file mode 100644 index 0000000000..dbf616feef --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hdd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/heart.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/heart.svg new file mode 100644 index 0000000000..9a380831a8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hospital.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hospital.svg new file mode 100644 index 0000000000..9877286376 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hospital.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hourglass.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hourglass.svg new file mode 100644 index 0000000000..c89faa1df1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/hourglass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/id-badge.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/id-badge.svg new file mode 100644 index 0000000000..39008027e8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/id-badge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/id-card.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/id-card.svg new file mode 100644 index 0000000000..58ce378ba0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/id-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/image.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/image.svg new file mode 100644 index 0000000000..4f7dd8dd4d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/images.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/images.svg new file mode 100644 index 0000000000..2371a08598 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/images.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/keyboard.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/keyboard.svg new file mode 100644 index 0000000000..3b3705dcbb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/keyboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/kiss-beam.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/kiss-beam.svg new file mode 100644 index 0000000000..857180863a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/kiss-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/kiss-wink-heart.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/kiss-wink-heart.svg new file mode 100644 index 0000000000..a513302e00 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/kiss-wink-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/kiss.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/kiss.svg new file mode 100644 index 0000000000..5af5fc7630 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/kiss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/laugh-beam.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/laugh-beam.svg new file mode 100644 index 0000000000..d9e473f2c3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/laugh-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/laugh-squint.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/laugh-squint.svg new file mode 100644 index 0000000000..4edf0d0c72 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/laugh-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/laugh-wink.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/laugh-wink.svg new file mode 100644 index 0000000000..39c36954dc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/laugh-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/laugh.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/laugh.svg new file mode 100644 index 0000000000..b8524251cc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/laugh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/lemon.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/lemon.svg new file mode 100644 index 0000000000..ab9ed90b96 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/lemon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/life-ring.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/life-ring.svg new file mode 100644 index 0000000000..2cf3326816 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/life-ring.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/lightbulb.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/lightbulb.svg new file mode 100644 index 0000000000..0cd414e1d5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/lightbulb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/list-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/list-alt.svg new file mode 100644 index 0000000000..1113bbccad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/list-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/map.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/map.svg new file mode 100644 index 0000000000..a5d2e7d402 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/map.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/meh-blank.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/meh-blank.svg new file mode 100644 index 0000000000..ebeece4792 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/meh-blank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/meh-rolling-eyes.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/meh-rolling-eyes.svg new file mode 100644 index 0000000000..3fb3476fad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/meh-rolling-eyes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/meh.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/meh.svg new file mode 100644 index 0000000000..3bff8acc4f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/meh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/minus-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/minus-square.svg new file mode 100644 index 0000000000..6b72714efb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/minus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/money-bill-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/money-bill-alt.svg new file mode 100644 index 0000000000..4ce581e1f7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/money-bill-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/moon.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/moon.svg new file mode 100644 index 0000000000..30fb1151ef --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/newspaper.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/newspaper.svg new file mode 100644 index 0000000000..a54e3ca58a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/newspaper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/object-group.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/object-group.svg new file mode 100644 index 0000000000..e483f376e8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/object-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/object-ungroup.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/object-ungroup.svg new file mode 100644 index 0000000000..6255363036 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/object-ungroup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/paper-plane.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/paper-plane.svg new file mode 100644 index 0000000000..215e293340 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/paper-plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/pause-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/pause-circle.svg new file mode 100644 index 0000000000..caebd9e969 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/pause-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/play-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/play-circle.svg new file mode 100644 index 0000000000..9de60df95f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/play-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/plus-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/plus-square.svg new file mode 100644 index 0000000000..dfc22ac640 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/plus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/question-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/question-circle.svg new file mode 100644 index 0000000000..9a30b85d39 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/question-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/registered.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/registered.svg new file mode 100644 index 0000000000..e5dc8a20b6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/registered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/sad-cry.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/sad-cry.svg new file mode 100644 index 0000000000..8ab84c9f50 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/sad-cry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/sad-tear.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/sad-tear.svg new file mode 100644 index 0000000000..e19421ca3d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/sad-tear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/save.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/save.svg new file mode 100644 index 0000000000..16f6b82957 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/save.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/share-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/share-square.svg new file mode 100644 index 0000000000..aa98748817 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/share-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/smile-beam.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/smile-beam.svg new file mode 100644 index 0000000000..1077160fde --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/smile-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/smile-wink.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/smile-wink.svg new file mode 100644 index 0000000000..e842eede3a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/smile-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/smile.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/smile.svg new file mode 100644 index 0000000000..025898d4dd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/smile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/snowflake.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/snowflake.svg new file mode 100644 index 0000000000..ba12375bfc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/snowflake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/square.svg new file mode 100644 index 0000000000..b9a4b96205 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/star-half.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/star-half.svg new file mode 100644 index 0000000000..12b063fd16 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/star-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/star.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/star.svg new file mode 100644 index 0000000000..a1370d23f4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/sticky-note.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/sticky-note.svg new file mode 100644 index 0000000000..0882390c7d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/sticky-note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/stop-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/stop-circle.svg new file mode 100644 index 0000000000..37bf314d3d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/stop-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/sun.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/sun.svg new file mode 100644 index 0000000000..72988fdf13 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/surprise.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/surprise.svg new file mode 100644 index 0000000000..4210c378fa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/surprise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/thumbs-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/thumbs-down.svg new file mode 100644 index 0000000000..d7b49d5342 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/thumbs-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/thumbs-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/thumbs-up.svg new file mode 100644 index 0000000000..f60e4d1161 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/thumbs-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/times-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/times-circle.svg new file mode 100644 index 0000000000..15181d3416 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/times-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/tired.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/tired.svg new file mode 100644 index 0000000000..6f700be9ce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/tired.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/trash-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/trash-alt.svg new file mode 100644 index 0000000000..8885ef0c05 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/trash-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/user-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/user-circle.svg new file mode 100644 index 0000000000..1d678d242c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/user-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/user.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/user.svg new file mode 100644 index 0000000000..bdc327c698 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/window-close.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/window-close.svg new file mode 100644 index 0000000000..1375985563 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/window-close.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/window-maximize.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/window-maximize.svg new file mode 100644 index 0000000000..39c0ac06aa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/window-maximize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/window-minimize.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/window-minimize.svg new file mode 100644 index 0000000000..0986bbaa57 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/window-minimize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/window-restore.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/window-restore.svg new file mode 100644 index 0000000000..9d1bfa7b55 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/regular/window-restore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/address-book.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/address-book.svg new file mode 100644 index 0000000000..f652f5a932 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/address-book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/address-card.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/address-card.svg new file mode 100644 index 0000000000..628ced258c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/address-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/adjust.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/adjust.svg new file mode 100644 index 0000000000..2616d99a96 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/adjust.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/align-center.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/align-center.svg new file mode 100644 index 0000000000..f6efd66a5d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/align-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/align-justify.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/align-justify.svg new file mode 100644 index 0000000000..ff8ecf90ad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/align-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/align-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/align-left.svg new file mode 100644 index 0000000000..708e49d6c4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/align-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/align-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/align-right.svg new file mode 100644 index 0000000000..1a1c204fb8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/align-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/allergies.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/allergies.svg new file mode 100644 index 0000000000..335f5bcb0a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/allergies.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ambulance.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ambulance.svg new file mode 100644 index 0000000000..b35a7bc053 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ambulance.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/american-sign-language-interpreting.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/american-sign-language-interpreting.svg new file mode 100644 index 0000000000..8bca61450b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/american-sign-language-interpreting.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/anchor.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/anchor.svg new file mode 100644 index 0000000000..792266ba85 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/anchor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-double-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-double-down.svg new file mode 100644 index 0000000000..3228f4abcc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-double-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-double-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-double-left.svg new file mode 100644 index 0000000000..4474d83e21 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-double-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-double-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-double-right.svg new file mode 100644 index 0000000000..cdf9336668 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-double-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-double-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-double-up.svg new file mode 100644 index 0000000000..74b542f659 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-double-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-down.svg new file mode 100644 index 0000000000..1462342526 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-left.svg new file mode 100644 index 0000000000..1e28c704da --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-right.svg new file mode 100644 index 0000000000..ec7fbe9f02 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-up.svg new file mode 100644 index 0000000000..1d0bbead7d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angry.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angry.svg new file mode 100644 index 0000000000..eca0b5d6ac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/angry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/archive.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/archive.svg new file mode 100644 index 0000000000..394dad2db2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/archway.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/archway.svg new file mode 100644 index 0000000000..e5ad2f3de6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/archway.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-alt-circle-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-alt-circle-down.svg new file mode 100644 index 0000000000..a2f644f8f6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-alt-circle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-alt-circle-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-alt-circle-left.svg new file mode 100644 index 0000000000..8a53b22658 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-alt-circle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-alt-circle-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-alt-circle-right.svg new file mode 100644 index 0000000000..9da44be87c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-alt-circle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-alt-circle-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-alt-circle-up.svg new file mode 100644 index 0000000000..c650c82676 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-alt-circle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-circle-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-circle-down.svg new file mode 100644 index 0000000000..08b9f13aee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-circle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-circle-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-circle-left.svg new file mode 100644 index 0000000000..59be8d9e37 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-circle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-circle-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-circle-right.svg new file mode 100644 index 0000000000..f059bab95c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-circle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-circle-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-circle-up.svg new file mode 100644 index 0000000000..d9d8081c93 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-circle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-down.svg new file mode 100644 index 0000000000..61b4db70f4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-left.svg new file mode 100644 index 0000000000..b229b8d137 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-right.svg new file mode 100644 index 0000000000..1b9b05b478 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-up.svg new file mode 100644 index 0000000000..bc571b5d9a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrows-alt-h.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrows-alt-h.svg new file mode 100644 index 0000000000..0caa926d38 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrows-alt-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrows-alt-v.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrows-alt-v.svg new file mode 100644 index 0000000000..ebb23acbdc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrows-alt-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrows-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrows-alt.svg new file mode 100644 index 0000000000..d885a5a680 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/arrows-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/assistive-listening-systems.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/assistive-listening-systems.svg new file mode 100644 index 0000000000..5071f59676 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/assistive-listening-systems.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/asterisk.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/asterisk.svg new file mode 100644 index 0000000000..d77cbb6b67 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/asterisk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/at.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/at.svg new file mode 100644 index 0000000000..6f35c426b6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/at.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/atlas.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/atlas.svg new file mode 100644 index 0000000000..ea31821f86 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/atlas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/audio-description.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/audio-description.svg new file mode 100644 index 0000000000..0e338ff6d3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/audio-description.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/award.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/award.svg new file mode 100644 index 0000000000..eaedf88aed --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/award.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/backspace.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/backspace.svg new file mode 100644 index 0000000000..078a9fba2f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/backspace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/backward.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/backward.svg new file mode 100644 index 0000000000..b37fcc22fa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/backward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/balance-scale.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/balance-scale.svg new file mode 100644 index 0000000000..e526521ed8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/balance-scale.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ban.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ban.svg new file mode 100644 index 0000000000..85f7f06f13 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ban.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/band-aid.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/band-aid.svg new file mode 100644 index 0000000000..4d0f559151 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/band-aid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/barcode.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/barcode.svg new file mode 100644 index 0000000000..58cbee7de1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/barcode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bars.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bars.svg new file mode 100644 index 0000000000..87d79f9eeb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/baseball-ball.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/baseball-ball.svg new file mode 100644 index 0000000000..bcdb0a0c47 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/baseball-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/basketball-ball.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/basketball-ball.svg new file mode 100644 index 0000000000..bb2ba23846 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/basketball-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bath.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bath.svg new file mode 100644 index 0000000000..fef517b2ec --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bath.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/battery-empty.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/battery-empty.svg new file mode 100644 index 0000000000..b4a57fac9a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/battery-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/battery-full.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/battery-full.svg new file mode 100644 index 0000000000..056b8189a8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/battery-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/battery-half.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/battery-half.svg new file mode 100644 index 0000000000..16a8fc3398 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/battery-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/battery-quarter.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/battery-quarter.svg new file mode 100644 index 0000000000..d48ca28bac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/battery-quarter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/battery-three-quarters.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/battery-three-quarters.svg new file mode 100644 index 0000000000..43fc35adf9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/battery-three-quarters.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bed.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bed.svg new file mode 100644 index 0000000000..d70b022198 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/beer.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/beer.svg new file mode 100644 index 0000000000..692431b18e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/beer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bell-slash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bell-slash.svg new file mode 100644 index 0000000000..c69f3105fb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bell-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bell.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bell.svg new file mode 100644 index 0000000000..40552fba3a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bezier-curve.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bezier-curve.svg new file mode 100644 index 0000000000..ca10d7a7f9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bezier-curve.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bicycle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bicycle.svg new file mode 100644 index 0000000000..4ef7ded2d9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bicycle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/binoculars.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/binoculars.svg new file mode 100644 index 0000000000..0aa5fb1c04 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/binoculars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/birthday-cake.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/birthday-cake.svg new file mode 100644 index 0000000000..50e92ae4f6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/birthday-cake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/blender.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/blender.svg new file mode 100644 index 0000000000..8357ad2766 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/blender.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/blind.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/blind.svg new file mode 100644 index 0000000000..b1eddadfd1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/blind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bold.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bold.svg new file mode 100644 index 0000000000..045e7fb0fc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bolt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bolt.svg new file mode 100644 index 0000000000..4d079451d6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bolt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bomb.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bomb.svg new file mode 100644 index 0000000000..d7a56f2b18 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bomb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bong.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bong.svg new file mode 100644 index 0000000000..e84800ce58 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bong.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/book-open.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/book-open.svg new file mode 100644 index 0000000000..342917db59 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/book-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/book.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/book.svg new file mode 100644 index 0000000000..d27fdae79b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bookmark.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bookmark.svg new file mode 100644 index 0000000000..d1c8e4a20f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bowling-ball.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bowling-ball.svg new file mode 100644 index 0000000000..59602f68fe --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bowling-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/box-open.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/box-open.svg new file mode 100644 index 0000000000..36c2277359 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/box-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/box.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/box.svg new file mode 100644 index 0000000000..6cd0dc1238 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/boxes.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/boxes.svg new file mode 100644 index 0000000000..b2da05b6db --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/boxes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/braille.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/braille.svg new file mode 100644 index 0000000000..08f034ffad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/braille.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/briefcase-medical.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/briefcase-medical.svg new file mode 100644 index 0000000000..f1404740f4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/briefcase-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/briefcase.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/briefcase.svg new file mode 100644 index 0000000000..5bb9051a65 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/briefcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/broadcast-tower.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/broadcast-tower.svg new file mode 100644 index 0000000000..614bc53dd5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/broadcast-tower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/broom.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/broom.svg new file mode 100644 index 0000000000..620eea2312 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/broom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/brush.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/brush.svg new file mode 100644 index 0000000000..e42b048b4a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/brush.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bug.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bug.svg new file mode 100644 index 0000000000..b9185530aa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/building.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/building.svg new file mode 100644 index 0000000000..a109377bcf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/building.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bullhorn.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bullhorn.svg new file mode 100644 index 0000000000..5f7316044b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bullhorn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bullseye.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bullseye.svg new file mode 100644 index 0000000000..774ec2d115 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bullseye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/burn.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/burn.svg new file mode 100644 index 0000000000..44183cf17b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/burn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bus-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bus-alt.svg new file mode 100644 index 0000000000..bfaad72158 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bus-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bus.svg new file mode 100644 index 0000000000..040c4a6b20 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/bus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calculator.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calculator.svg new file mode 100644 index 0000000000..cb402c8d74 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calculator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calendar-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calendar-alt.svg new file mode 100644 index 0000000000..35d6c71660 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calendar-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calendar-check.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calendar-check.svg new file mode 100644 index 0000000000..35b590d024 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calendar-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calendar-minus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calendar-minus.svg new file mode 100644 index 0000000000..78b8a3c07b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calendar-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calendar-plus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calendar-plus.svg new file mode 100644 index 0000000000..5e1b338253 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calendar-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calendar-times.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calendar-times.svg new file mode 100644 index 0000000000..4db39b2d88 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calendar-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calendar.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calendar.svg new file mode 100644 index 0000000000..2d3eefe8d6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/calendar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/camera-retro.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/camera-retro.svg new file mode 100644 index 0000000000..67b7cfd54b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/camera-retro.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/camera.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/camera.svg new file mode 100644 index 0000000000..dc9f608136 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cannabis.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cannabis.svg new file mode 100644 index 0000000000..20ff4cd331 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cannabis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/capsules.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/capsules.svg new file mode 100644 index 0000000000..20d8ceea23 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/capsules.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/car.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/car.svg new file mode 100644 index 0000000000..bcf0e443c8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/car.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-down.svg new file mode 100644 index 0000000000..b3ee2ea951 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-left.svg new file mode 100644 index 0000000000..36d7191ad3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-right.svg new file mode 100644 index 0000000000..bcd4cd106e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-square-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-square-down.svg new file mode 100644 index 0000000000..87a4f7a055 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-square-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-square-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-square-left.svg new file mode 100644 index 0000000000..856dcac95f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-square-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-square-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-square-right.svg new file mode 100644 index 0000000000..d69ec9fd4e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-square-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-square-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-square-up.svg new file mode 100644 index 0000000000..005ea2c065 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-square-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-up.svg new file mode 100644 index 0000000000..b4c7e5485a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/caret-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cart-arrow-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cart-arrow-down.svg new file mode 100644 index 0000000000..69e39712a7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cart-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cart-plus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cart-plus.svg new file mode 100644 index 0000000000..7f5ab7f52e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cart-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/certificate.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/certificate.svg new file mode 100644 index 0000000000..c57ab137ac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/certificate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chalkboard-teacher.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chalkboard-teacher.svg new file mode 100644 index 0000000000..ce1d9dc53e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chalkboard-teacher.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chalkboard.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chalkboard.svg new file mode 100644 index 0000000000..6ec7e00d02 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chalkboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chart-area.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chart-area.svg new file mode 100644 index 0000000000..47c8862909 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chart-area.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chart-bar.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chart-bar.svg new file mode 100644 index 0000000000..13ee32a01f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chart-bar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chart-line.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chart-line.svg new file mode 100644 index 0000000000..e27e5e0910 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chart-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chart-pie.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chart-pie.svg new file mode 100644 index 0000000000..c2daf275ef --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chart-pie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/check-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/check-circle.svg new file mode 100644 index 0000000000..bdda551efc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/check-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/check-double.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/check-double.svg new file mode 100644 index 0000000000..607531371d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/check-double.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/check-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/check-square.svg new file mode 100644 index 0000000000..4ea6964af0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/check-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/check.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/check.svg new file mode 100644 index 0000000000..2ec27cf84a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-bishop.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-bishop.svg new file mode 100644 index 0000000000..6fda98adbb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-bishop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-board.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-board.svg new file mode 100644 index 0000000000..abf68b0ee8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-board.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-king.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-king.svg new file mode 100644 index 0000000000..5a12d16459 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-king.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-knight.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-knight.svg new file mode 100644 index 0000000000..a099885533 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-knight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-pawn.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-pawn.svg new file mode 100644 index 0000000000..4b339fc43e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-pawn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-queen.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-queen.svg new file mode 100644 index 0000000000..e8c96216f1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-queen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-rook.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-rook.svg new file mode 100644 index 0000000000..abe46cd32a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess-rook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess.svg new file mode 100644 index 0000000000..2bfd2dc715 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chess.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-circle-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-circle-down.svg new file mode 100644 index 0000000000..4be7cea6fd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-circle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-circle-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-circle-left.svg new file mode 100644 index 0000000000..60b5ac6ec0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-circle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-circle-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-circle-right.svg new file mode 100644 index 0000000000..93350ee73a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-circle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-circle-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-circle-up.svg new file mode 100644 index 0000000000..d973a5dfa9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-circle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-down.svg new file mode 100644 index 0000000000..5962e8933a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-left.svg new file mode 100644 index 0000000000..c2dcbcca90 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-right.svg new file mode 100644 index 0000000000..6d3e119b86 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-up.svg new file mode 100644 index 0000000000..a38c372ad6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/chevron-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/child.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/child.svg new file mode 100644 index 0000000000..8bbc718b90 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/child.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/church.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/church.svg new file mode 100644 index 0000000000..ffe29d9ae8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/church.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/circle-notch.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/circle-notch.svg new file mode 100644 index 0000000000..3cc8c0b5d4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/circle-notch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/circle.svg new file mode 100644 index 0000000000..c2db0b25c9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/clipboard-check.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/clipboard-check.svg new file mode 100644 index 0000000000..3cdd41e99d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/clipboard-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/clipboard-list.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/clipboard-list.svg new file mode 100644 index 0000000000..f8421f08bc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/clipboard-list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/clipboard.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/clipboard.svg new file mode 100644 index 0000000000..1980a2bf1e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/clipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/clock.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/clock.svg new file mode 100644 index 0000000000..6444d5b9b6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/clone.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/clone.svg new file mode 100644 index 0000000000..0f40db0744 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/clone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/closed-captioning.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/closed-captioning.svg new file mode 100644 index 0000000000..f0c68d0435 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/closed-captioning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cloud-download-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cloud-download-alt.svg new file mode 100644 index 0000000000..3cd62ac245 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cloud-download-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cloud-upload-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cloud-upload-alt.svg new file mode 100644 index 0000000000..8cf98e907b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cloud-upload-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cloud.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cloud.svg new file mode 100644 index 0000000000..38d2dc5306 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cocktail.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cocktail.svg new file mode 100644 index 0000000000..b630000ba0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cocktail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/code-branch.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/code-branch.svg new file mode 100644 index 0000000000..0f33c5c509 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/code-branch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/code.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/code.svg new file mode 100644 index 0000000000..ea8da707c3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/coffee.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/coffee.svg new file mode 100644 index 0000000000..af4c024773 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/coffee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cog.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cog.svg new file mode 100644 index 0000000000..cc178ceb5f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cogs.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cogs.svg new file mode 100644 index 0000000000..c016886e00 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cogs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/coins.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/coins.svg new file mode 100644 index 0000000000..511b03316e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/coins.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/columns.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/columns.svg new file mode 100644 index 0000000000..84ec2a09e3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/columns.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/comment-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/comment-alt.svg new file mode 100644 index 0000000000..5d81f790e0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/comment-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/comment-dots.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/comment-dots.svg new file mode 100644 index 0000000000..5866e4194e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/comment-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/comment-slash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/comment-slash.svg new file mode 100644 index 0000000000..b4b826fbc4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/comment-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/comment.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/comment.svg new file mode 100644 index 0000000000..f63328368b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/comment.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/comments.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/comments.svg new file mode 100644 index 0000000000..2ea7897c85 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/comments.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/compact-disc.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/compact-disc.svg new file mode 100644 index 0000000000..7a583fce9c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/compact-disc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/compass.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/compass.svg new file mode 100644 index 0000000000..dd9dc5b191 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/compress.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/compress.svg new file mode 100644 index 0000000000..f2faafbfd3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/compress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/concierge-bell.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/concierge-bell.svg new file mode 100644 index 0000000000..91d12a638d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/concierge-bell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cookie-bite.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cookie-bite.svg new file mode 100644 index 0000000000..42d566154d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cookie-bite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cookie.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cookie.svg new file mode 100644 index 0000000000..06ab745247 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cookie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/copy.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/copy.svg new file mode 100644 index 0000000000..02534e7caa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/copy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/copyright.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/copyright.svg new file mode 100644 index 0000000000..eb5d4c61b1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/copyright.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/couch.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/couch.svg new file mode 100644 index 0000000000..ba8c3ffb4e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/couch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/credit-card.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/credit-card.svg new file mode 100644 index 0000000000..676d358680 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/credit-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/crop-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/crop-alt.svg new file mode 100644 index 0000000000..aa7438ebfc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/crop-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/crop.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/crop.svg new file mode 100644 index 0000000000..5bd06a9214 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/crop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/crosshairs.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/crosshairs.svg new file mode 100644 index 0000000000..60acd3e28b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/crosshairs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/crow.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/crow.svg new file mode 100644 index 0000000000..de91410af5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/crow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/crown.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/crown.svg new file mode 100644 index 0000000000..03b1f19180 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/crown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cube.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cube.svg new file mode 100644 index 0000000000..a627fd549b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cubes.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cubes.svg new file mode 100644 index 0000000000..208f688a3e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cubes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cut.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cut.svg new file mode 100644 index 0000000000..4f626aa098 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/cut.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/database.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/database.svg new file mode 100644 index 0000000000..a6e4982bc3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/database.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/deaf.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/deaf.svg new file mode 100644 index 0000000000..25a7a86ece --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/deaf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/desktop.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/desktop.svg new file mode 100644 index 0000000000..bba157e808 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/desktop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/diagnoses.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/diagnoses.svg new file mode 100644 index 0000000000..8f56e24c2f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/diagnoses.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice-five.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice-five.svg new file mode 100644 index 0000000000..7fd8c1d234 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice-five.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice-four.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice-four.svg new file mode 100644 index 0000000000..9cd681bd31 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice-four.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice-one.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice-one.svg new file mode 100644 index 0000000000..e5d3b5e14e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice-one.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice-six.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice-six.svg new file mode 100644 index 0000000000..c1ed7cfc42 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice-six.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice-three.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice-three.svg new file mode 100644 index 0000000000..c035c8043f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice-three.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice-two.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice-two.svg new file mode 100644 index 0000000000..d6528d79e8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice-two.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice.svg new file mode 100644 index 0000000000..da8a81230a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/digital-tachograph.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/digital-tachograph.svg new file mode 100644 index 0000000000..65f4a028c1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/digital-tachograph.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/divide.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/divide.svg new file mode 100644 index 0000000000..cb6d8b6f90 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/divide.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dizzy.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dizzy.svg new file mode 100644 index 0000000000..d1b5246926 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dizzy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dna.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dna.svg new file mode 100644 index 0000000000..81cddb6a67 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dna.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dollar-sign.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dollar-sign.svg new file mode 100644 index 0000000000..23cf69108e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dollar-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dolly-flatbed.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dolly-flatbed.svg new file mode 100644 index 0000000000..bb20bdebce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dolly-flatbed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dolly.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dolly.svg new file mode 100644 index 0000000000..0fe3a517fb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dolly.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/donate.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/donate.svg new file mode 100644 index 0000000000..bacf83e672 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/donate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/door-closed.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/door-closed.svg new file mode 100644 index 0000000000..00add34187 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/door-closed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/door-open.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/door-open.svg new file mode 100644 index 0000000000..e246f1fbc7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/door-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dot-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dot-circle.svg new file mode 100644 index 0000000000..5cb222ddd7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dot-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dove.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dove.svg new file mode 100644 index 0000000000..86139028ff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/download.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/download.svg new file mode 100644 index 0000000000..da5eec408e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/drafting-compass.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/drafting-compass.svg new file mode 100644 index 0000000000..c2834adb2f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/drafting-compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/drum-steelpan.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/drum-steelpan.svg new file mode 100644 index 0000000000..c4b12b485d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/drum-steelpan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/drum.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/drum.svg new file mode 100644 index 0000000000..71abe5bb2f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/drum.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dumbbell.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dumbbell.svg new file mode 100644 index 0000000000..2fe16673ca --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/dumbbell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/edit.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/edit.svg new file mode 100644 index 0000000000..2313feb192 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/eject.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/eject.svg new file mode 100644 index 0000000000..d240b0d1b6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/eject.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ellipsis-h.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ellipsis-h.svg new file mode 100644 index 0000000000..70748ad957 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ellipsis-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ellipsis-v.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ellipsis-v.svg new file mode 100644 index 0000000000..e8e713ad4e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ellipsis-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/envelope-open.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/envelope-open.svg new file mode 100644 index 0000000000..947ae25a5e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/envelope-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/envelope-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/envelope-square.svg new file mode 100644 index 0000000000..c35055f9c5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/envelope-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/envelope.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/envelope.svg new file mode 100644 index 0000000000..edbcad3de4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/envelope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/equals.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/equals.svg new file mode 100644 index 0000000000..9dcbfdb5aa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/equals.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/eraser.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/eraser.svg new file mode 100644 index 0000000000..1ba581e7cf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/eraser.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/euro-sign.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/euro-sign.svg new file mode 100644 index 0000000000..fd18c90ded --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/euro-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/exchange-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/exchange-alt.svg new file mode 100644 index 0000000000..b22538a9e8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/exchange-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/exclamation-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/exclamation-circle.svg new file mode 100644 index 0000000000..1659303981 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/exclamation-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/exclamation-triangle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/exclamation-triangle.svg new file mode 100644 index 0000000000..2ab53271b4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/exclamation-triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/exclamation.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/exclamation.svg new file mode 100644 index 0000000000..89ef11a7ad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/expand-arrows-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/expand-arrows-alt.svg new file mode 100644 index 0000000000..365df17cb6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/expand-arrows-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/expand.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/expand.svg new file mode 100644 index 0000000000..e8f812d47c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/expand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/external-link-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/external-link-alt.svg new file mode 100644 index 0000000000..cf8f0b6cac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/external-link-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/external-link-square-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/external-link-square-alt.svg new file mode 100644 index 0000000000..099977be47 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/external-link-square-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/eye-dropper.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/eye-dropper.svg new file mode 100644 index 0000000000..51c3453a61 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/eye-dropper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/eye-slash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/eye-slash.svg new file mode 100644 index 0000000000..d6de57e236 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/eye-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/eye.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/eye.svg new file mode 100644 index 0000000000..6a0a503af1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fast-backward.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fast-backward.svg new file mode 100644 index 0000000000..dfe10e5c53 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fast-backward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fast-forward.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fast-forward.svg new file mode 100644 index 0000000000..57c072ae12 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fast-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fax.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fax.svg new file mode 100644 index 0000000000..cbc63f3d93 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fax.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/feather-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/feather-alt.svg new file mode 100644 index 0000000000..a04ebbd1f4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/feather-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/feather.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/feather.svg new file mode 100644 index 0000000000..bbdb934280 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/feather.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/female.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/female.svg new file mode 100644 index 0000000000..9bfc7ad6cb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/female.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fighter-jet.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fighter-jet.svg new file mode 100644 index 0000000000..3fdfe2d8b5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fighter-jet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-alt.svg new file mode 100644 index 0000000000..e1f980c870 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-archive.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-archive.svg new file mode 100644 index 0000000000..ad41f13540 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-audio.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-audio.svg new file mode 100644 index 0000000000..c491a45a4a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-audio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-code.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-code.svg new file mode 100644 index 0000000000..4036f537fc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-contract.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-contract.svg new file mode 100644 index 0000000000..d8b2bd69c4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-contract.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-download.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-download.svg new file mode 100644 index 0000000000..b0dfa46eb9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-excel.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-excel.svg new file mode 100644 index 0000000000..62cec9dd27 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-excel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-export.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-export.svg new file mode 100644 index 0000000000..97c135eeeb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-export.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-image.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-image.svg new file mode 100644 index 0000000000..6c87c8cf19 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-import.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-import.svg new file mode 100644 index 0000000000..b237b4b57c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-import.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-invoice-dollar.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-invoice-dollar.svg new file mode 100644 index 0000000000..39184ce704 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-invoice-dollar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-invoice.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-invoice.svg new file mode 100644 index 0000000000..5f5b241967 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-invoice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-medical-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-medical-alt.svg new file mode 100644 index 0000000000..0c0699c3e5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-medical-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-medical.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-medical.svg new file mode 100644 index 0000000000..748bf58f61 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-pdf.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-pdf.svg new file mode 100644 index 0000000000..9782667d5d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-pdf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-powerpoint.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-powerpoint.svg new file mode 100644 index 0000000000..bd26fb923a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-powerpoint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-prescription.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-prescription.svg new file mode 100644 index 0000000000..563292ba91 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-prescription.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-signature.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-signature.svg new file mode 100644 index 0000000000..6b27b140bf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-signature.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-upload.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-upload.svg new file mode 100644 index 0000000000..49b0a88dd6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-video.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-video.svg new file mode 100644 index 0000000000..8de9f6cf6f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-word.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-word.svg new file mode 100644 index 0000000000..f484a94cc3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file-word.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file.svg new file mode 100644 index 0000000000..7f495dcefd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fill-drip.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fill-drip.svg new file mode 100644 index 0000000000..74346b5c6a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fill-drip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fill.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fill.svg new file mode 100644 index 0000000000..b7bf4056fa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/film.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/film.svg new file mode 100644 index 0000000000..f120aee23b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/film.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/filter.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/filter.svg new file mode 100644 index 0000000000..95861a392b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/filter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fingerprint.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fingerprint.svg new file mode 100644 index 0000000000..f05ea37827 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fingerprint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fire-extinguisher.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fire-extinguisher.svg new file mode 100644 index 0000000000..2bd873807e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fire-extinguisher.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fire.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fire.svg new file mode 100644 index 0000000000..27eb73adba --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/first-aid.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/first-aid.svg new file mode 100644 index 0000000000..43fd522519 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/first-aid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fish.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fish.svg new file mode 100644 index 0000000000..8312ff5c1e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/fish.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/flag-checkered.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/flag-checkered.svg new file mode 100644 index 0000000000..2074db3fe1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/flag-checkered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/flag.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/flag.svg new file mode 100644 index 0000000000..eb95c9ca83 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/flask.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/flask.svg new file mode 100644 index 0000000000..c30929ace9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/flask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/flushed.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/flushed.svg new file mode 100644 index 0000000000..1e6e1c96ee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/flushed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/folder-open.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/folder-open.svg new file mode 100644 index 0000000000..57dcfa604b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/folder-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/folder.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/folder.svg new file mode 100644 index 0000000000..c9607689a3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/font-awesome-logo-full.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/font-awesome-logo-full.svg new file mode 100644 index 0000000000..06b75a4d09 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/font-awesome-logo-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/font.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/font.svg new file mode 100644 index 0000000000..adcc3d329b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/font.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/football-ball.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/football-ball.svg new file mode 100644 index 0000000000..260c2914a0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/football-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/forward.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/forward.svg new file mode 100644 index 0000000000..5349d49fbb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/frog.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/frog.svg new file mode 100644 index 0000000000..96a9ea93b8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/frog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/frown-open.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/frown-open.svg new file mode 100644 index 0000000000..dac5ca2a6b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/frown-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/frown.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/frown.svg new file mode 100644 index 0000000000..8207b8dd7a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/frown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/futbol.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/futbol.svg new file mode 100644 index 0000000000..936fcad2e1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/futbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/gamepad.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/gamepad.svg new file mode 100644 index 0000000000..047a5a3733 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/gamepad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/gas-pump.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/gas-pump.svg new file mode 100644 index 0000000000..0a3899549a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/gas-pump.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/gavel.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/gavel.svg new file mode 100644 index 0000000000..c68ac7c38b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/gavel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/gem.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/gem.svg new file mode 100644 index 0000000000..6172b87111 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/gem.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/genderless.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/genderless.svg new file mode 100644 index 0000000000..9c9286734d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/genderless.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/gift.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/gift.svg new file mode 100644 index 0000000000..3e1b4cce8d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/gift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/glass-martini-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/glass-martini-alt.svg new file mode 100644 index 0000000000..dc4aa9c615 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/glass-martini-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/glass-martini.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/glass-martini.svg new file mode 100644 index 0000000000..283c3c6130 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/glass-martini.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/glasses.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/glasses.svg new file mode 100644 index 0000000000..8b207a9be8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/glasses.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/globe-africa.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/globe-africa.svg new file mode 100644 index 0000000000..50009fe52a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/globe-africa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/globe-americas.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/globe-americas.svg new file mode 100644 index 0000000000..3e4462e74e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/globe-americas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/globe-asia.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/globe-asia.svg new file mode 100644 index 0000000000..5a160176d4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/globe-asia.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/globe.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/globe.svg new file mode 100644 index 0000000000..93b6178459 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/golf-ball.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/golf-ball.svg new file mode 100644 index 0000000000..9e87e82a15 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/golf-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/graduation-cap.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/graduation-cap.svg new file mode 100644 index 0000000000..090ad8fb72 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/graduation-cap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/greater-than-equal.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/greater-than-equal.svg new file mode 100644 index 0000000000..1c071f5d3e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/greater-than-equal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/greater-than.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/greater-than.svg new file mode 100644 index 0000000000..e4e3390a64 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/greater-than.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grimace.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grimace.svg new file mode 100644 index 0000000000..dda0b7b79a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grimace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-alt.svg new file mode 100644 index 0000000000..c400d4dba8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-beam-sweat.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-beam-sweat.svg new file mode 100644 index 0000000000..1e10965609 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-beam-sweat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-beam.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-beam.svg new file mode 100644 index 0000000000..cfde54a951 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-hearts.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-hearts.svg new file mode 100644 index 0000000000..eae2d18cf5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-hearts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-squint-tears.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-squint-tears.svg new file mode 100644 index 0000000000..39073b7d27 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-squint-tears.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-squint.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-squint.svg new file mode 100644 index 0000000000..de54800c60 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-stars.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-stars.svg new file mode 100644 index 0000000000..a6432aaba9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-stars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-tears.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-tears.svg new file mode 100644 index 0000000000..1413617a5d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-tears.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-tongue-squint.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-tongue-squint.svg new file mode 100644 index 0000000000..c903494b4c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-tongue-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-tongue-wink.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-tongue-wink.svg new file mode 100644 index 0000000000..49beb8452b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-tongue-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-tongue.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-tongue.svg new file mode 100644 index 0000000000..6aff145f19 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-tongue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-wink.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-wink.svg new file mode 100644 index 0000000000..4c8ed97b03 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin.svg new file mode 100644 index 0000000000..4ba985a078 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grip-horizontal.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grip-horizontal.svg new file mode 100644 index 0000000000..bb19ff3184 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grip-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grip-vertical.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grip-vertical.svg new file mode 100644 index 0000000000..a383a43314 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/grip-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/h-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/h-square.svg new file mode 100644 index 0000000000..0b85e2856b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/h-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-holding-heart.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-holding-heart.svg new file mode 100644 index 0000000000..65ee45e7f3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-holding-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-holding-usd.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-holding-usd.svg new file mode 100644 index 0000000000..00f1312838 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-holding-usd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-holding.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-holding.svg new file mode 100644 index 0000000000..1328cfd2ae --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-holding.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-lizard.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-lizard.svg new file mode 100644 index 0000000000..6d27f0adff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-lizard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-paper.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-paper.svg new file mode 100644 index 0000000000..f4aadf12d7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-paper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-peace.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-peace.svg new file mode 100644 index 0000000000..8ed4eede19 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-peace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-point-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-point-down.svg new file mode 100644 index 0000000000..af8513f077 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-point-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-point-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-point-left.svg new file mode 100644 index 0000000000..5fa16c8d51 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-point-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-point-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-point-right.svg new file mode 100644 index 0000000000..e3f50e124d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-point-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-point-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-point-up.svg new file mode 100644 index 0000000000..8bf94b7110 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-point-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-pointer.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-pointer.svg new file mode 100644 index 0000000000..e1367b6c91 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-pointer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-rock.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-rock.svg new file mode 100644 index 0000000000..abd9939a37 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-rock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-scissors.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-scissors.svg new file mode 100644 index 0000000000..a5996614a8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-scissors.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-spock.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-spock.svg new file mode 100644 index 0000000000..fbd12105c1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hand-spock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hands-helping.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hands-helping.svg new file mode 100644 index 0000000000..162f45e9e0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hands-helping.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hands.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hands.svg new file mode 100644 index 0000000000..5f0b02d906 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hands.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/handshake.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/handshake.svg new file mode 100644 index 0000000000..bd5cf53ea1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/handshake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hashtag.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hashtag.svg new file mode 100644 index 0000000000..2a6094fe14 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hashtag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hdd.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hdd.svg new file mode 100644 index 0000000000..cead9cff5f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hdd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/heading.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/heading.svg new file mode 100644 index 0000000000..a482da1358 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/heading.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/headphones-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/headphones-alt.svg new file mode 100644 index 0000000000..735dc8a7e3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/headphones-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/headphones.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/headphones.svg new file mode 100644 index 0000000000..c97cde6a80 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/headphones.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/headset.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/headset.svg new file mode 100644 index 0000000000..e63e7fd2ec --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/headset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/heart.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/heart.svg new file mode 100644 index 0000000000..d9fa587dd5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/heartbeat.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/heartbeat.svg new file mode 100644 index 0000000000..fa2bb9b41a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/heartbeat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/helicopter.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/helicopter.svg new file mode 100644 index 0000000000..36c462e641 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/helicopter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/highlighter.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/highlighter.svg new file mode 100644 index 0000000000..b32a63a56b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/highlighter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/history.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/history.svg new file mode 100644 index 0000000000..8157c31312 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/history.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hockey-puck.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hockey-puck.svg new file mode 100644 index 0000000000..24a0a90d4b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hockey-puck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/home.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/home.svg new file mode 100644 index 0000000000..55e9e1cc21 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/home.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hospital-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hospital-alt.svg new file mode 100644 index 0000000000..5229e16ce5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hospital-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hospital-symbol.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hospital-symbol.svg new file mode 100644 index 0000000000..9463a88d80 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hospital-symbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hospital.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hospital.svg new file mode 100644 index 0000000000..5b6c7b4566 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hospital.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hot-tub.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hot-tub.svg new file mode 100644 index 0000000000..a49145e31f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hot-tub.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hotel.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hotel.svg new file mode 100644 index 0000000000..39a8e565de --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hotel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hourglass-end.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hourglass-end.svg new file mode 100644 index 0000000000..4773ce6543 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hourglass-end.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hourglass-half.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hourglass-half.svg new file mode 100644 index 0000000000..adf6f26de7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hourglass-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hourglass-start.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hourglass-start.svg new file mode 100644 index 0000000000..214b6c71cb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hourglass-start.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hourglass.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hourglass.svg new file mode 100644 index 0000000000..cd6052ce9a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/hourglass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/i-cursor.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/i-cursor.svg new file mode 100644 index 0000000000..2367160dcb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/i-cursor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/id-badge.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/id-badge.svg new file mode 100644 index 0000000000..a5ce6e1d9d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/id-badge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/id-card-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/id-card-alt.svg new file mode 100644 index 0000000000..0b21ac366e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/id-card-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/id-card.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/id-card.svg new file mode 100644 index 0000000000..b6be99cb21 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/id-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/image.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/image.svg new file mode 100644 index 0000000000..dbf552dabe --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/images.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/images.svg new file mode 100644 index 0000000000..efd28e2ac4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/images.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/inbox.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/inbox.svg new file mode 100644 index 0000000000..761d6c7b55 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/inbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/indent.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/indent.svg new file mode 100644 index 0000000000..b960bc8316 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/indent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/industry.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/industry.svg new file mode 100644 index 0000000000..c04e11ac18 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/industry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/infinity.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/infinity.svg new file mode 100644 index 0000000000..d8dd3984e6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/infinity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/info-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/info-circle.svg new file mode 100644 index 0000000000..a25c1632d1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/info-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/info.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/info.svg new file mode 100644 index 0000000000..e6b9c3f6ed --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/italic.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/italic.svg new file mode 100644 index 0000000000..d63a32b8bc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/joint.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/joint.svg new file mode 100644 index 0000000000..cd0c052e82 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/joint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/key.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/key.svg new file mode 100644 index 0000000000..e0bd4948ab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/keyboard.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/keyboard.svg new file mode 100644 index 0000000000..12686637fc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/keyboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/kiss-beam.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/kiss-beam.svg new file mode 100644 index 0000000000..a2c3e501fb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/kiss-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/kiss-wink-heart.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/kiss-wink-heart.svg new file mode 100644 index 0000000000..de6ecee32c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/kiss-wink-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/kiss.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/kiss.svg new file mode 100644 index 0000000000..0f6852440d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/kiss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/kiwi-bird.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/kiwi-bird.svg new file mode 100644 index 0000000000..bbc7c9af4a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/kiwi-bird.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/language.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/language.svg new file mode 100644 index 0000000000..eb6ac62a8c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/language.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/laptop.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/laptop.svg new file mode 100644 index 0000000000..484e1de272 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/laptop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/laugh-beam.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/laugh-beam.svg new file mode 100644 index 0000000000..9baa5495eb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/laugh-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/laugh-squint.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/laugh-squint.svg new file mode 100644 index 0000000000..20046e6d2c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/laugh-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/laugh-wink.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/laugh-wink.svg new file mode 100644 index 0000000000..1dffaa6097 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/laugh-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/laugh.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/laugh.svg new file mode 100644 index 0000000000..07d3111ede --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/laugh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/leaf.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/leaf.svg new file mode 100644 index 0000000000..f31abe1b8f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/leaf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/lemon.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/lemon.svg new file mode 100644 index 0000000000..e8f98bd68e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/lemon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/less-than-equal.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/less-than-equal.svg new file mode 100644 index 0000000000..7bbf5c0847 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/less-than-equal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/less-than.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/less-than.svg new file mode 100644 index 0000000000..db80274a74 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/less-than.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/level-down-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/level-down-alt.svg new file mode 100644 index 0000000000..523508722f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/level-down-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/level-up-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/level-up-alt.svg new file mode 100644 index 0000000000..a9672eb402 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/level-up-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/life-ring.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/life-ring.svg new file mode 100644 index 0000000000..da06ef4641 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/life-ring.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/lightbulb.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/lightbulb.svg new file mode 100644 index 0000000000..b3a769375d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/lightbulb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/link.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/link.svg new file mode 100644 index 0000000000..57caa9ffda --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/lira-sign.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/lira-sign.svg new file mode 100644 index 0000000000..802a0f519a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/lira-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/list-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/list-alt.svg new file mode 100644 index 0000000000..5e32557c2c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/list-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/list-ol.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/list-ol.svg new file mode 100644 index 0000000000..693439bd77 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/list-ol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/list-ul.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/list-ul.svg new file mode 100644 index 0000000000..a5851661c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/list-ul.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/list.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/list.svg new file mode 100644 index 0000000000..3a7da92598 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/location-arrow.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/location-arrow.svg new file mode 100644 index 0000000000..1d4d95f6b0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/location-arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/lock-open.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/lock-open.svg new file mode 100644 index 0000000000..7f949963af --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/lock-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/lock.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/lock.svg new file mode 100644 index 0000000000..7d0e70bdc3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/long-arrow-alt-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/long-arrow-alt-down.svg new file mode 100644 index 0000000000..75e69e79b7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/long-arrow-alt-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/long-arrow-alt-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/long-arrow-alt-left.svg new file mode 100644 index 0000000000..b9e103b3d3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/long-arrow-alt-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/long-arrow-alt-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/long-arrow-alt-right.svg new file mode 100644 index 0000000000..2f388d537b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/long-arrow-alt-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/long-arrow-alt-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/long-arrow-alt-up.svg new file mode 100644 index 0000000000..cdd5dcf7b3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/long-arrow-alt-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/low-vision.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/low-vision.svg new file mode 100644 index 0000000000..5b82a1bdb9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/low-vision.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/luggage-cart.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/luggage-cart.svg new file mode 100644 index 0000000000..c8514212f7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/luggage-cart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/magic.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/magic.svg new file mode 100644 index 0000000000..9ee277f196 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/magic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/magnet.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/magnet.svg new file mode 100644 index 0000000000..d83f6b33dd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/magnet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/male.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/male.svg new file mode 100644 index 0000000000..b41d026f35 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/male.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map-marked-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map-marked-alt.svg new file mode 100644 index 0000000000..a45ef9ff8a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map-marked-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map-marked.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map-marked.svg new file mode 100644 index 0000000000..54b59531e7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map-marked.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map-marker-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map-marker-alt.svg new file mode 100644 index 0000000000..d3d94f03a4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map-marker-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map-marker.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map-marker.svg new file mode 100644 index 0000000000..c2047c7bab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map-marker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map-pin.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map-pin.svg new file mode 100644 index 0000000000..7d3bef3e07 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map-pin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map-signs.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map-signs.svg new file mode 100644 index 0000000000..c9274f4fa2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map-signs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map.svg new file mode 100644 index 0000000000..bb623149ef --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/map.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/marker.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/marker.svg new file mode 100644 index 0000000000..6ee7cec2a3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/marker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mars-double.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mars-double.svg new file mode 100644 index 0000000000..49a76e0738 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mars-double.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mars-stroke-h.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mars-stroke-h.svg new file mode 100644 index 0000000000..32ea3f52e0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mars-stroke-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mars-stroke-v.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mars-stroke-v.svg new file mode 100644 index 0000000000..e3c03aace5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mars-stroke-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mars-stroke.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mars-stroke.svg new file mode 100644 index 0000000000..076d1e6d28 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mars-stroke.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mars.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mars.svg new file mode 100644 index 0000000000..022f88d001 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/medal.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/medal.svg new file mode 100644 index 0000000000..6fe8e7ea67 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/medal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/medkit.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/medkit.svg new file mode 100644 index 0000000000..637d38e9ff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/medkit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/meh-blank.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/meh-blank.svg new file mode 100644 index 0000000000..e98e39bbae --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/meh-blank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/meh-rolling-eyes.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/meh-rolling-eyes.svg new file mode 100644 index 0000000000..0689940592 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/meh-rolling-eyes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/meh.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/meh.svg new file mode 100644 index 0000000000..198bebdedd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/meh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/memory.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/memory.svg new file mode 100644 index 0000000000..1ae9bcd2aa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/memory.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mercury.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mercury.svg new file mode 100644 index 0000000000..a930415871 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mercury.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/microchip.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/microchip.svg new file mode 100644 index 0000000000..4eb7e2d51f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/microchip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/microphone-alt-slash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/microphone-alt-slash.svg new file mode 100644 index 0000000000..59ad8b2759 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/microphone-alt-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/microphone-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/microphone-alt.svg new file mode 100644 index 0000000000..dd8f50f0c6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/microphone-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/microphone-slash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/microphone-slash.svg new file mode 100644 index 0000000000..8d3badb738 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/microphone-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/microphone.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/microphone.svg new file mode 100644 index 0000000000..194b4d3162 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/microphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/minus-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/minus-circle.svg new file mode 100644 index 0000000000..efe6e46a34 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/minus-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/minus-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/minus-square.svg new file mode 100644 index 0000000000..27ebb01cc5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/minus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/minus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/minus.svg new file mode 100644 index 0000000000..ac83426d10 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mobile-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mobile-alt.svg new file mode 100644 index 0000000000..e8084596d0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mobile-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mobile.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mobile.svg new file mode 100644 index 0000000000..2783241d70 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mobile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/money-bill-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/money-bill-alt.svg new file mode 100644 index 0000000000..50251552d2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/money-bill-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/money-bill-wave-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/money-bill-wave-alt.svg new file mode 100644 index 0000000000..f32fcfe872 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/money-bill-wave-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/money-bill-wave.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/money-bill-wave.svg new file mode 100644 index 0000000000..fc7823946b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/money-bill-wave.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/money-bill.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/money-bill.svg new file mode 100644 index 0000000000..e1ae0f293d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/money-bill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/money-check-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/money-check-alt.svg new file mode 100644 index 0000000000..08816382b6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/money-check-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/money-check.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/money-check.svg new file mode 100644 index 0000000000..84bbeac2d8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/money-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/monument.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/monument.svg new file mode 100644 index 0000000000..efb4af3684 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/monument.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/moon.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/moon.svg new file mode 100644 index 0000000000..b153f34458 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mortar-pestle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mortar-pestle.svg new file mode 100644 index 0000000000..b6fb12c491 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mortar-pestle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/motorcycle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/motorcycle.svg new file mode 100644 index 0000000000..2dd7897159 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/motorcycle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mouse-pointer.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mouse-pointer.svg new file mode 100644 index 0000000000..c5f252d0ac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/mouse-pointer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/music.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/music.svg new file mode 100644 index 0000000000..9fcc6eec27 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/music.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/neuter.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/neuter.svg new file mode 100644 index 0000000000..cb7635d0f2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/neuter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/newspaper.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/newspaper.svg new file mode 100644 index 0000000000..477294260d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/newspaper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/not-equal.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/not-equal.svg new file mode 100644 index 0000000000..d11d13918f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/not-equal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/notes-medical.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/notes-medical.svg new file mode 100644 index 0000000000..fc5d5962e1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/notes-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/object-group.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/object-group.svg new file mode 100644 index 0000000000..b07fcecf71 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/object-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/object-ungroup.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/object-ungroup.svg new file mode 100644 index 0000000000..4c29c1e2a7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/object-ungroup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/outdent.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/outdent.svg new file mode 100644 index 0000000000..f5267d1d3d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/outdent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paint-brush.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paint-brush.svg new file mode 100644 index 0000000000..01d1c92733 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paint-brush.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paint-roller.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paint-roller.svg new file mode 100644 index 0000000000..14d3b6ac3b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paint-roller.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/palette.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/palette.svg new file mode 100644 index 0000000000..a75b257e6e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/palette.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pallet.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pallet.svg new file mode 100644 index 0000000000..564f45be97 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pallet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paper-plane.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paper-plane.svg new file mode 100644 index 0000000000..cecb40f277 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paper-plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paperclip.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paperclip.svg new file mode 100644 index 0000000000..162db7e5c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paperclip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/parachute-box.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/parachute-box.svg new file mode 100644 index 0000000000..80abd2ea6c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/parachute-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paragraph.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paragraph.svg new file mode 100644 index 0000000000..a7462bf204 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paragraph.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/parking.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/parking.svg new file mode 100644 index 0000000000..04a13736c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/parking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/passport.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/passport.svg new file mode 100644 index 0000000000..1a7aa6f1cf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/passport.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paste.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paste.svg new file mode 100644 index 0000000000..1d49e2503f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paste.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pause-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pause-circle.svg new file mode 100644 index 0000000000..72a8e48c30 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pause-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pause.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pause.svg new file mode 100644 index 0000000000..63a15b6eea --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paw.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paw.svg new file mode 100644 index 0000000000..3fa9e2f2e9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/paw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pen-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pen-alt.svg new file mode 100644 index 0000000000..2b600cadb1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pen-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pen-fancy.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pen-fancy.svg new file mode 100644 index 0000000000..8f4261c338 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pen-fancy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pen-nib.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pen-nib.svg new file mode 100644 index 0000000000..2a4cbee616 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pen-nib.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pen-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pen-square.svg new file mode 100644 index 0000000000..0f30e05fd4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pen-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pen.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pen.svg new file mode 100644 index 0000000000..2d043aa475 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pencil-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pencil-alt.svg new file mode 100644 index 0000000000..26d7daeac7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pencil-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pencil-ruler.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pencil-ruler.svg new file mode 100644 index 0000000000..c62f131c21 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pencil-ruler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/people-carry.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/people-carry.svg new file mode 100644 index 0000000000..98a947fbfb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/people-carry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/percent.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/percent.svg new file mode 100644 index 0000000000..4b1a8ff631 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/percent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/percentage.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/percentage.svg new file mode 100644 index 0000000000..574fb05548 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/percentage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/phone-slash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/phone-slash.svg new file mode 100644 index 0000000000..0e20562e58 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/phone-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/phone-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/phone-square.svg new file mode 100644 index 0000000000..39ed969308 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/phone-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/phone-volume.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/phone-volume.svg new file mode 100644 index 0000000000..872d95d1e5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/phone-volume.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/phone.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/phone.svg new file mode 100644 index 0000000000..2cf74a9d83 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/piggy-bank.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/piggy-bank.svg new file mode 100644 index 0000000000..65fb510e5e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/piggy-bank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pills.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pills.svg new file mode 100644 index 0000000000..eadd5aa104 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pills.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plane-arrival.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plane-arrival.svg new file mode 100644 index 0000000000..32bcc18110 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plane-arrival.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plane-departure.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plane-departure.svg new file mode 100644 index 0000000000..ce73a432cb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plane-departure.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plane.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plane.svg new file mode 100644 index 0000000000..6a75a9f7aa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/play-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/play-circle.svg new file mode 100644 index 0000000000..ea10397046 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/play-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/play.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/play.svg new file mode 100644 index 0000000000..d7fa87f32b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plug.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plug.svg new file mode 100644 index 0000000000..0082e8adad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plus-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plus-circle.svg new file mode 100644 index 0000000000..f7a138c6e5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plus-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plus-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plus-square.svg new file mode 100644 index 0000000000..ff058b5721 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plus.svg new file mode 100644 index 0000000000..95992e1f5c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/podcast.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/podcast.svg new file mode 100644 index 0000000000..9ee3b6fada --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/podcast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/poo.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/poo.svg new file mode 100644 index 0000000000..997725b532 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/poo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/portrait.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/portrait.svg new file mode 100644 index 0000000000..a62ed18017 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/portrait.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pound-sign.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pound-sign.svg new file mode 100644 index 0000000000..8705075f98 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/pound-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/power-off.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/power-off.svg new file mode 100644 index 0000000000..371131806d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/power-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/prescription-bottle-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/prescription-bottle-alt.svg new file mode 100644 index 0000000000..5757bf870a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/prescription-bottle-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/prescription-bottle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/prescription-bottle.svg new file mode 100644 index 0000000000..6f2d6c3630 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/prescription-bottle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/prescription.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/prescription.svg new file mode 100644 index 0000000000..f0cfc72177 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/prescription.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/print.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/print.svg new file mode 100644 index 0000000000..2ac7d73a52 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/print.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/procedures.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/procedures.svg new file mode 100644 index 0000000000..5ccfafbe61 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/procedures.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/project-diagram.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/project-diagram.svg new file mode 100644 index 0000000000..cb21c6f880 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/project-diagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/puzzle-piece.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/puzzle-piece.svg new file mode 100644 index 0000000000..a632d8a925 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/puzzle-piece.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/qrcode.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/qrcode.svg new file mode 100644 index 0000000000..c92fa7caaf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/qrcode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/question-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/question-circle.svg new file mode 100644 index 0000000000..a8f424362e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/question-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/question.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/question.svg new file mode 100644 index 0000000000..065e9fe738 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/quidditch.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/quidditch.svg new file mode 100644 index 0000000000..6d0be5eb5a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/quidditch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/quote-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/quote-left.svg new file mode 100644 index 0000000000..d73aa5e4e2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/quote-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/quote-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/quote-right.svg new file mode 100644 index 0000000000..18537bfe4b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/quote-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/random.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/random.svg new file mode 100644 index 0000000000..3c23b13cac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/random.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/receipt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/receipt.svg new file mode 100644 index 0000000000..ea298f9c14 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/receipt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/recycle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/recycle.svg new file mode 100644 index 0000000000..1c7fa71661 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/recycle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/redo-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/redo-alt.svg new file mode 100644 index 0000000000..f014834d59 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/redo-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/redo.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/redo.svg new file mode 100644 index 0000000000..c536b3704b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/registered.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/registered.svg new file mode 100644 index 0000000000..115cc7043d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/registered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/reply-all.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/reply-all.svg new file mode 100644 index 0000000000..32886acb2c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/reply-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/reply.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/reply.svg new file mode 100644 index 0000000000..50f99ff059 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/reply.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/retweet.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/retweet.svg new file mode 100644 index 0000000000..6c8111bc66 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/retweet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ribbon.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ribbon.svg new file mode 100644 index 0000000000..c87df5ff6c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ribbon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/road.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/road.svg new file mode 100644 index 0000000000..5779c9a6da --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/road.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/robot.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/robot.svg new file mode 100644 index 0000000000..cc0277f5c3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/robot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/rocket.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/rocket.svg new file mode 100644 index 0000000000..e835870c9c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/rocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/rss-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/rss-square.svg new file mode 100644 index 0000000000..ff9a15a632 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/rss-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/rss.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/rss.svg new file mode 100644 index 0000000000..e6fa54c38e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/rss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ruble-sign.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ruble-sign.svg new file mode 100644 index 0000000000..50ec2f50bc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ruble-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ruler-combined.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ruler-combined.svg new file mode 100644 index 0000000000..c4ceb4a6e4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ruler-combined.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ruler-horizontal.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ruler-horizontal.svg new file mode 100644 index 0000000000..12c5426e2b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ruler-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ruler-vertical.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ruler-vertical.svg new file mode 100644 index 0000000000..364cb31c23 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ruler-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ruler.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ruler.svg new file mode 100644 index 0000000000..3f7a16b47a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ruler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/rupee-sign.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/rupee-sign.svg new file mode 100644 index 0000000000..52e319ca15 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/rupee-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sad-cry.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sad-cry.svg new file mode 100644 index 0000000000..448b6df84d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sad-cry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sad-tear.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sad-tear.svg new file mode 100644 index 0000000000..4071d1026a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sad-tear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/save.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/save.svg new file mode 100644 index 0000000000..44298e3ec3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/save.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/school.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/school.svg new file mode 100644 index 0000000000..21dffefb2d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/school.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/screwdriver.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/screwdriver.svg new file mode 100644 index 0000000000..04ce778680 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/screwdriver.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/search-minus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/search-minus.svg new file mode 100644 index 0000000000..7befe08baa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/search-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/search-plus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/search-plus.svg new file mode 100644 index 0000000000..e4f5984b31 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/search-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/search.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/search.svg new file mode 100644 index 0000000000..865b962e2c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/seedling.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/seedling.svg new file mode 100644 index 0000000000..b5e2a26eff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/seedling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/server.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/server.svg new file mode 100644 index 0000000000..4e6c50fd4d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/server.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/share-alt-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/share-alt-square.svg new file mode 100644 index 0000000000..7d48e45654 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/share-alt-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/share-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/share-alt.svg new file mode 100644 index 0000000000..2f3151dfa0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/share-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/share-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/share-square.svg new file mode 100644 index 0000000000..f66404d6f6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/share-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/share.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/share.svg new file mode 100644 index 0000000000..e7e262b444 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shekel-sign.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shekel-sign.svg new file mode 100644 index 0000000000..079555e42f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shekel-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shield-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shield-alt.svg new file mode 100644 index 0000000000..f77d7ce3c9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shield-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ship.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ship.svg new file mode 100644 index 0000000000..61e031519e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ship.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shipping-fast.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shipping-fast.svg new file mode 100644 index 0000000000..342f4d40f1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shipping-fast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shoe-prints.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shoe-prints.svg new file mode 100644 index 0000000000..9f056d4af3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shoe-prints.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shopping-bag.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shopping-bag.svg new file mode 100644 index 0000000000..78f8a425c2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shopping-bag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shopping-basket.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shopping-basket.svg new file mode 100644 index 0000000000..6eef20e6af --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shopping-basket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shopping-cart.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shopping-cart.svg new file mode 100644 index 0000000000..d409917d20 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shopping-cart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shower.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shower.svg new file mode 100644 index 0000000000..66ccb5769b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shuttle-van.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shuttle-van.svg new file mode 100644 index 0000000000..7d75c807e3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/shuttle-van.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sign-in-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sign-in-alt.svg new file mode 100644 index 0000000000..5b235c0cf7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sign-in-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sign-language.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sign-language.svg new file mode 100644 index 0000000000..552cb4a60f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sign-language.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sign-out-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sign-out-alt.svg new file mode 100644 index 0000000000..ca9853369b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sign-out-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sign.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sign.svg new file mode 100644 index 0000000000..0b2a45bb83 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/signal.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/signal.svg new file mode 100644 index 0000000000..3a74673d30 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/signal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/signature.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/signature.svg new file mode 100644 index 0000000000..1863c5ab5d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/signature.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sitemap.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sitemap.svg new file mode 100644 index 0000000000..a7009eaffe --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sitemap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/skull.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/skull.svg new file mode 100644 index 0000000000..72429692c8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/skull.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sliders-h.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sliders-h.svg new file mode 100644 index 0000000000..e5d7fd784d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sliders-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/smile-beam.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/smile-beam.svg new file mode 100644 index 0000000000..3869575293 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/smile-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/smile-wink.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/smile-wink.svg new file mode 100644 index 0000000000..b85ec11912 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/smile-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/smile.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/smile.svg new file mode 100644 index 0000000000..dc8784a78b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/smile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/smoking-ban.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/smoking-ban.svg new file mode 100644 index 0000000000..4382b1f7b8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/smoking-ban.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/smoking.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/smoking.svg new file mode 100644 index 0000000000..6dd415781b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/smoking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/snowflake.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/snowflake.svg new file mode 100644 index 0000000000..7f5c4804eb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/snowflake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/solar-panel.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/solar-panel.svg new file mode 100644 index 0000000000..2760e79288 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/solar-panel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-alpha-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-alpha-down.svg new file mode 100644 index 0000000000..a17a517bb7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-alpha-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-alpha-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-alpha-up.svg new file mode 100644 index 0000000000..caa561f8ea --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-alpha-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-amount-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-amount-down.svg new file mode 100644 index 0000000000..0b71254309 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-amount-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-amount-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-amount-up.svg new file mode 100644 index 0000000000..21f42185f2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-amount-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-down.svg new file mode 100644 index 0000000000..2644ba2b10 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-numeric-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-numeric-down.svg new file mode 100644 index 0000000000..ab9464c07b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-numeric-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-numeric-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-numeric-up.svg new file mode 100644 index 0000000000..1c783ae167 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-numeric-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-up.svg new file mode 100644 index 0000000000..c6e1001d7d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort.svg new file mode 100644 index 0000000000..89c08354d1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sort.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/spa.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/spa.svg new file mode 100644 index 0000000000..d6909e8590 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/spa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/space-shuttle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/space-shuttle.svg new file mode 100644 index 0000000000..1cf024de72 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/space-shuttle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/spinner.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/spinner.svg new file mode 100644 index 0000000000..4397764e04 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/spinner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/splotch.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/splotch.svg new file mode 100644 index 0000000000..070a1c1cbb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/splotch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/spray-can.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/spray-can.svg new file mode 100644 index 0000000000..05947c08f0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/spray-can.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/square-full.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/square-full.svg new file mode 100644 index 0000000000..7bb73943d8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/square-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/square.svg new file mode 100644 index 0000000000..40338d4495 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stamp.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stamp.svg new file mode 100644 index 0000000000..591a5bba11 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/star-half-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/star-half-alt.svg new file mode 100644 index 0000000000..5a9b4c3891 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/star-half-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/star-half.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/star-half.svg new file mode 100644 index 0000000000..6599dcbfad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/star-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/star.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/star.svg new file mode 100644 index 0000000000..7cfd13b8aa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/step-backward.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/step-backward.svg new file mode 100644 index 0000000000..e6f0d100e1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/step-backward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/step-forward.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/step-forward.svg new file mode 100644 index 0000000000..33eb8fb617 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/step-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stethoscope.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stethoscope.svg new file mode 100644 index 0000000000..10d30562c2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stethoscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sticky-note.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sticky-note.svg new file mode 100644 index 0000000000..4b577b881b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sticky-note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stop-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stop-circle.svg new file mode 100644 index 0000000000..15f56cdb8a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stop-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stop.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stop.svg new file mode 100644 index 0000000000..40338d4495 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stopwatch.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stopwatch.svg new file mode 100644 index 0000000000..72c1345982 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stopwatch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/store-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/store-alt.svg new file mode 100644 index 0000000000..488759f1b1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/store-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/store.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/store.svg new file mode 100644 index 0000000000..aa0281fc7a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/store.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stream.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stream.svg new file mode 100644 index 0000000000..938cc188cc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stream.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/street-view.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/street-view.svg new file mode 100644 index 0000000000..5aae1c779a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/street-view.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/strikethrough.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/strikethrough.svg new file mode 100644 index 0000000000..07f78c108c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/strikethrough.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stroopwafel.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stroopwafel.svg new file mode 100644 index 0000000000..fdea44ca9e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/stroopwafel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/subscript.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/subscript.svg new file mode 100644 index 0000000000..dec0b74d29 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/subscript.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/subway.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/subway.svg new file mode 100644 index 0000000000..19e5a3799a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/subway.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/suitcase-rolling.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/suitcase-rolling.svg new file mode 100644 index 0000000000..d54be1e0c6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/suitcase-rolling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/suitcase.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/suitcase.svg new file mode 100644 index 0000000000..effa01c17c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/suitcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sun.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sun.svg new file mode 100644 index 0000000000..cdb0728b37 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/superscript.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/superscript.svg new file mode 100644 index 0000000000..0ff2b23567 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/superscript.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/surprise.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/surprise.svg new file mode 100644 index 0000000000..478b6b0174 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/surprise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/swatchbook.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/swatchbook.svg new file mode 100644 index 0000000000..faaa6c2e85 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/swatchbook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/swimmer.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/swimmer.svg new file mode 100644 index 0000000000..261e60b4ad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/swimmer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/swimming-pool.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/swimming-pool.svg new file mode 100644 index 0000000000..533688df9b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/swimming-pool.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sync-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sync-alt.svg new file mode 100644 index 0000000000..3c3106d84d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sync-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sync.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sync.svg new file mode 100644 index 0000000000..008de5983c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/sync.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/syringe.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/syringe.svg new file mode 100644 index 0000000000..95626f7417 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/syringe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/table-tennis.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/table-tennis.svg new file mode 100644 index 0000000000..a7f5e9a5ac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/table-tennis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/table.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/table.svg new file mode 100644 index 0000000000..5690c5cc5e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/table.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tablet-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tablet-alt.svg new file mode 100644 index 0000000000..9e962f7836 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tablet-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tablet.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tablet.svg new file mode 100644 index 0000000000..da45e7d210 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tablet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tablets.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tablets.svg new file mode 100644 index 0000000000..74c8265e20 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tablets.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tachometer-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tachometer-alt.svg new file mode 100644 index 0000000000..f2dadf1067 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tachometer-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tag.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tag.svg new file mode 100644 index 0000000000..6793a2e0a1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tags.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tags.svg new file mode 100644 index 0000000000..192075b928 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tags.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tape.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tape.svg new file mode 100644 index 0000000000..1fbaa1da13 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tasks.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tasks.svg new file mode 100644 index 0000000000..64e6c6d32f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tasks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/taxi.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/taxi.svg new file mode 100644 index 0000000000..13f05d0dd1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/taxi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/terminal.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/terminal.svg new file mode 100644 index 0000000000..85b2b5e85f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/terminal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/text-height.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/text-height.svg new file mode 100644 index 0000000000..c76e184d28 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/text-height.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/text-width.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/text-width.svg new file mode 100644 index 0000000000..d555b94377 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/text-width.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/th-large.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/th-large.svg new file mode 100644 index 0000000000..7894f58b43 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/th-large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/th-list.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/th-list.svg new file mode 100644 index 0000000000..361af5425f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/th-list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/th.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/th.svg new file mode 100644 index 0000000000..73b6c92c33 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/th.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thermometer-empty.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thermometer-empty.svg new file mode 100644 index 0000000000..5a6a6b8e90 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thermometer-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thermometer-full.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thermometer-full.svg new file mode 100644 index 0000000000..caeb8b6643 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thermometer-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thermometer-half.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thermometer-half.svg new file mode 100644 index 0000000000..8c35512748 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thermometer-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thermometer-quarter.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thermometer-quarter.svg new file mode 100644 index 0000000000..0478872ed9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thermometer-quarter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thermometer-three-quarters.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thermometer-three-quarters.svg new file mode 100644 index 0000000000..b5188d58f0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thermometer-three-quarters.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thermometer.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thermometer.svg new file mode 100644 index 0000000000..af0b9ef91d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thermometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thumbs-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thumbs-down.svg new file mode 100644 index 0000000000..1cb6e676f2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thumbs-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thumbs-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thumbs-up.svg new file mode 100644 index 0000000000..539949dfd4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thumbs-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thumbtack.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thumbtack.svg new file mode 100644 index 0000000000..7b98d281ff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/thumbtack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ticket-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ticket-alt.svg new file mode 100644 index 0000000000..70158467db --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/ticket-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/times-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/times-circle.svg new file mode 100644 index 0000000000..cdee94147a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/times-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/times.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/times.svg new file mode 100644 index 0000000000..571a32a122 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tint-slash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tint-slash.svg new file mode 100644 index 0000000000..df76bdf04f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tint-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tint.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tint.svg new file mode 100644 index 0000000000..8dd8f93e11 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tired.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tired.svg new file mode 100644 index 0000000000..bdc5ce0d39 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tired.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/toggle-off.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/toggle-off.svg new file mode 100644 index 0000000000..dce9c007b7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/toggle-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/toggle-on.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/toggle-on.svg new file mode 100644 index 0000000000..d931534033 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/toggle-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/toolbox.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/toolbox.svg new file mode 100644 index 0000000000..dc11fef6b1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/toolbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tooth.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tooth.svg new file mode 100644 index 0000000000..745734cb55 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/trademark.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/trademark.svg new file mode 100644 index 0000000000..0d5ba89a50 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/trademark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/train.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/train.svg new file mode 100644 index 0000000000..79c0266f2a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/train.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/transgender-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/transgender-alt.svg new file mode 100644 index 0000000000..6c1d1679ea --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/transgender-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/transgender.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/transgender.svg new file mode 100644 index 0000000000..10d73936f1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/transgender.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/trash-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/trash-alt.svg new file mode 100644 index 0000000000..a921fe8d77 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/trash-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/trash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/trash.svg new file mode 100644 index 0000000000..a264b3deb1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/trash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tree.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tree.svg new file mode 100644 index 0000000000..f934701d25 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tree.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/trophy.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/trophy.svg new file mode 100644 index 0000000000..6157afa002 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/trophy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/truck-loading.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/truck-loading.svg new file mode 100644 index 0000000000..7153afd054 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/truck-loading.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/truck-moving.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/truck-moving.svg new file mode 100644 index 0000000000..18ea46f534 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/truck-moving.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/truck.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/truck.svg new file mode 100644 index 0000000000..8b405feecc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/truck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tshirt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tshirt.svg new file mode 100644 index 0000000000..4cdf227e5e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tshirt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tty.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tty.svg new file mode 100644 index 0000000000..acc1e3d356 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tv.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tv.svg new file mode 100644 index 0000000000..95151f5a28 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/tv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/umbrella-beach.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/umbrella-beach.svg new file mode 100644 index 0000000000..9a75c52582 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/umbrella-beach.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/umbrella.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/umbrella.svg new file mode 100644 index 0000000000..a096a1051c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/umbrella.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/underline.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/underline.svg new file mode 100644 index 0000000000..751232d565 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/undo-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/undo-alt.svg new file mode 100644 index 0000000000..bdc97cae10 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/undo-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/undo.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/undo.svg new file mode 100644 index 0000000000..44b3904122 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/undo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/universal-access.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/universal-access.svg new file mode 100644 index 0000000000..1079d879b8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/universal-access.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/university.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/university.svg new file mode 100644 index 0000000000..cf4d7859bb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/university.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/unlink.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/unlink.svg new file mode 100644 index 0000000000..8cba9f8fe9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/unlink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/unlock-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/unlock-alt.svg new file mode 100644 index 0000000000..b38ffb6acc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/unlock-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/unlock.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/unlock.svg new file mode 100644 index 0000000000..0b2258a813 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/unlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/upload.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/upload.svg new file mode 100644 index 0000000000..1c880b5161 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-alt-slash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-alt-slash.svg new file mode 100644 index 0000000000..74f8597898 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-alt-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-alt.svg new file mode 100644 index 0000000000..024cb44bb0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-astronaut.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-astronaut.svg new file mode 100644 index 0000000000..631f168243 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-astronaut.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-check.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-check.svg new file mode 100644 index 0000000000..a63061186b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-circle.svg new file mode 100644 index 0000000000..6e03b1bd41 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-clock.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-clock.svg new file mode 100644 index 0000000000..1c45c705dd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-cog.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-cog.svg new file mode 100644 index 0000000000..bae9930eee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-edit.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-edit.svg new file mode 100644 index 0000000000..bde9c9015c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-friends.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-friends.svg new file mode 100644 index 0000000000..2e43c5983e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-friends.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-graduate.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-graduate.svg new file mode 100644 index 0000000000..8855caaa8d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-graduate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-lock.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-lock.svg new file mode 100644 index 0000000000..b3693c32ce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-md.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-md.svg new file mode 100644 index 0000000000..583cdc397b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-md.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-minus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-minus.svg new file mode 100644 index 0000000000..f019e70633 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-ninja.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-ninja.svg new file mode 100644 index 0000000000..7bdec3603f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-ninja.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-plus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-plus.svg new file mode 100644 index 0000000000..01c84c3633 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-secret.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-secret.svg new file mode 100644 index 0000000000..daae530df6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-secret.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-shield.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-shield.svg new file mode 100644 index 0000000000..7cfba68f3a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-slash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-slash.svg new file mode 100644 index 0000000000..491e32a3b8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-tag.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-tag.svg new file mode 100644 index 0000000000..ec1a1e7004 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-tag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-tie.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-tie.svg new file mode 100644 index 0000000000..9bd9f95a52 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-tie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-times.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-times.svg new file mode 100644 index 0000000000..341b1f1207 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user.svg new file mode 100644 index 0000000000..591873a5b7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/users-cog.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/users-cog.svg new file mode 100644 index 0000000000..a90e8b03fc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/users-cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/users.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/users.svg new file mode 100644 index 0000000000..3f07aab060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/users.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/utensil-spoon.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/utensil-spoon.svg new file mode 100644 index 0000000000..ec19dac551 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/utensil-spoon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/utensils.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/utensils.svg new file mode 100644 index 0000000000..29fa05ab1a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/utensils.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/vector-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/vector-square.svg new file mode 100644 index 0000000000..848b9fb409 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/vector-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/venus-double.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/venus-double.svg new file mode 100644 index 0000000000..8fa1ba94ff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/venus-double.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/venus-mars.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/venus-mars.svg new file mode 100644 index 0000000000..78089d807e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/venus-mars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/venus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/venus.svg new file mode 100644 index 0000000000..637ef0cc2e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/venus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/vial.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/vial.svg new file mode 100644 index 0000000000..e01d94aecd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/vial.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/vials.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/vials.svg new file mode 100644 index 0000000000..13e7c5ac3d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/vials.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/video-slash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/video-slash.svg new file mode 100644 index 0000000000..d221789ffe --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/video-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/video.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/video.svg new file mode 100644 index 0000000000..e14b3b9361 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/volleyball-ball.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/volleyball-ball.svg new file mode 100644 index 0000000000..b23d0735cc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/volleyball-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/volume-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/volume-down.svg new file mode 100644 index 0000000000..130ece7873 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/volume-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/volume-off.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/volume-off.svg new file mode 100644 index 0000000000..8369dfea4d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/volume-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/volume-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/volume-up.svg new file mode 100644 index 0000000000..6c788ea682 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/volume-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/walking.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/walking.svg new file mode 100644 index 0000000000..4e85cd5820 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/walking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/wallet.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/wallet.svg new file mode 100644 index 0000000000..f5842294ca --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/wallet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/warehouse.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/warehouse.svg new file mode 100644 index 0000000000..2e827c02c1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/warehouse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/weight-hanging.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/weight-hanging.svg new file mode 100644 index 0000000000..db2801aa7d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/weight-hanging.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/weight.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/weight.svg new file mode 100644 index 0000000000..12e7df5ced --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/weight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/wheelchair.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/wheelchair.svg new file mode 100644 index 0000000000..e474ae3fc3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/wheelchair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/wifi.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/wifi.svg new file mode 100644 index 0000000000..efa235ad91 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/wifi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/window-close.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/window-close.svg new file mode 100644 index 0000000000..da63df918d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/window-close.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/window-maximize.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/window-maximize.svg new file mode 100644 index 0000000000..d305d0ad48 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/window-maximize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/window-minimize.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/window-minimize.svg new file mode 100644 index 0000000000..c0e48b3f2a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/window-minimize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/window-restore.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/window-restore.svg new file mode 100644 index 0000000000..355ce8f000 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/window-restore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/wine-glass-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/wine-glass-alt.svg new file mode 100644 index 0000000000..2822897a46 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/wine-glass-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/wine-glass.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/wine-glass.svg new file mode 100644 index 0000000000..a27377d0f5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/wine-glass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/won-sign.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/won-sign.svg new file mode 100644 index 0000000000..376e8c7d4f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/won-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/wrench.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/wrench.svg new file mode 100644 index 0000000000..378cf6c656 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/wrench.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/x-ray.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/x-ray.svg new file mode 100644 index 0000000000..fe20d41668 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/x-ray.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/yen-sign.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/yen-sign.svg new file mode 100644 index 0000000000..7425a50866 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/raw-svg/solid/yen-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/svg-sprites/fa-brands.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/svg-sprites/fa-brands.svg new file mode 100644 index 0000000000..cc0e070fe2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/svg-sprites/fa-brands.svg @@ -0,0 +1,1499 @@ + + + + + 500px + + + + Accessible Icon + + + + Accusoft + + + + App.net + + + + Adversal + + + + affiliatetheme + + + + Algolia + + + + Amazon + + + + Amazon Pay + + + + Amilia + + + + Android + + + + AngelList + + + + Angry Creative + + + + Angular + + + + App Store + + + + iOS App Store + + + + Apper Systems AB + + + + Apple + + + + Apple Pay + + + + Asymmetrik, Ltd. + + + + Audible + + + + Autoprefixer + + + + avianex + + + + Aviato + + + + Amazon Web Services (AWS) + + + + Bandcamp + + + + Behance + + + + Behance Square + + + + BIMobject + + + + Bitbucket + + + + Bitcoin + + + + Bity + + + + Font Awesome Black Tie + + + + BlackBerry + + + + Blogger + + + + Blogger B + + + + Bluetooth + + + + Bluetooth + + + + BTC + + + + Büromöbel-Experte GmbH & Co. KG. + + + + BuySellAds + + + + Amazon Pay Credit Card + + + + American Express Credit Card + + + + Apple Pay Credit Card + + + + Diner's Club Credit Card + + + + Discover Credit Card + + + + JCB Credit Card + + + + MasterCard Credit Card + + + + Paypal Credit Card + + + + Stripe Credit Card + + + + Visa Credit Card + + + + Centercode + + + + Chrome + + + + cloudscale.ch + + + + Cloudsmith + + + + cloudversify + + + + Codepen + + + + Codie Pie + + + + Connect Develop + + + + Contao + + + + cPanel + + + + Creative Commons + + + + Creative Commons Attribution + + + + Creative Commons Noncommercial + + + + Creative Commons Noncommercial (Euro Sign) + + + + Creative Commons Noncommercial (Yen Sign) + + + + Creative Commons No Derivative Works + + + + Creative Commons Public Domain + + + + Creative Commons Public Domain Alternate + + + + Creative Commons Remix + + + + Creative Commons Share Alike + + + + Creative Commons Sampling + + + + Creative Commons Sampling + + + + + Creative Commons Share + + + + CSS 3 Logo + + + + Alternate CSS3 Logo + + + + Cuttlefish + + + + Dungeons & Dragons + + + + DashCube + + + + Delicious Logo + + + + deploy.dog + + + + Deskpro + + + + deviantART + + + + Digg Logo + + + + Digital Ocean + + + + Discord + + + + Discourse + + + + DocHub + + + + Docker + + + + Draft2digital + + + + Dribbble + + + + Dribbble Square + + + + Dropbox + + + + Drupal Logo + + + + Dyalog + + + + Earlybirds + + + + eBay + + + + Edge Browser + + + + Elementor + + + + Ember + + + + Galactic Empire + + + + Envira Gallery + + + + Erlang + + + + Ethereum + + + + Etsy + + + + ExpeditedSSL + + + + Facebook + + + + Facebook F + + + + Facebook Messenger + + + + Facebook Square + + + + Firefox + + + + First Order + + + + Alternate First Order + + + + firstdraft + + + + Flickr + + + + Flipboard + + + + Fly + + + + Font Awesome + + + + Alternate Font Awesome + + + + Font Awesome Flag + + + + Font Awesome Full Logo + + + + Fonticons + + + + Fonticons Fi + + + + Fort Awesome + + + + Alternate Fort Awesome + + + + Forumbee + + + + Foursquare + + + + Free Code Camp + + + + FreeBSD + + + + Fulcrum + + + + Galactic Republic + + + + Galactic Senate + + + + Get Pocket + + + + GG Currency + + + + GG Currency Circle + + + + Git + + + + Git Square + + + + GitHub + + + + Alternate GitHub + + + + GitHub Square + + + + GitKraken + + + + GitLab + + + + Gitter + + + + Glide + + + + Glide G + + + + Gofore + + + + Goodreads + + + + Goodreads G + + + + Google Logo + + + + Google Drive + + + + Google Play + + + + Google Plus + + + + Google Plus G + + + + Google Plus Square + + + + Google Wallet + + + + Gratipay (Gittip) + + + + Grav + + + + Gripfire, Inc. + + + + Grunt + + + + Gulp + + + + Hacker News + + + + Hacker News Square + + + + Hips + + + + HireAHelper + + + + Hooli + + + + Hornbill + + + + Hotjar + + + + Houzz + + + + HTML 5 Logo + + + + HubSpot + + + + IMDB + + + + Instagram + + + + Internet-explorer + + + + ioxhost + + + + iTunes + + + + Itunes Note + + + + Java + + + + Jedi Order + + + + Jenkis + + + + Joget + + + + Joomla Logo + + + + JavaScript (JS) + + + + JavaScript (JS) Square + + + + jsFiddle + + + + Keybase + + + + KeyCDN + + + + Kickstarter + + + + Kickstarter K + + + + KORVUE + + + + Laravel + + + + last.fm + + + + last.fm Square + + + + Leanpub + + + + Less + + + + Line + + + + LinkedIn + + + + LinkedIn In + + + + Linode + + + + Linux + + + + lyft + + + + Magento + + + + Mailchimp + + + + Mandalorian + + + + Mastodon + + + + MaxCDN + + + + MedApps + + + + Medium + + + + Medium M + + + + MRT + + + + Meetup + + + + Megaport + + + + Microsoft + + + + Mix + + + + Mixcloud + + + + Mizuni + + + + MODX + + + + Monero + + + + Napster + + + + Nimblr + + + + Nintendo Switch + + + + Node.js + + + + Node.js JS + + + + npm + + + + NS8 + + + + Nutritionix + + + + Odnoklassniki + + + + Odnoklassniki Square + + + + Old Republic + + + + OpenCart + + + + OpenID + + + + Opera + + + + Optin Monster + + + + Open Source Initiative + + + + page4 Corporation + + + + Pagelines + + + + Palfed + + + + Patreon + + + + Paypal + + + + Periscope + + + + Phabricator + + + + Phoenix Framework + + + + Phoenix Squadron + + + + PHP + + + + Pied Piper Logo + + + + Alternate Pied Piper Logo + + + + Pied Piper-hat + + + + Pied Piper PP Logo (Old) + + + + Pinterest + + + + Pinterest P + + + + Pinterest Square + + + + PlayStation + + + + Product Hunt + + + + Pushed + + + + Python + + + + QQ + + + + QuinScape + + + + Quora + + + + R Project + + + + Ravelry + + + + React + + + + ReadMe + + + + Rebel Alliance + + + + red river + + + + reddit Logo + + + + reddit Alien + + + + reddit Square + + + + Rendact + + + + Renren + + + + replyd + + + + Researchgate + + + + Resolving + + + + Rev.io + + + + Rocket.Chat + + + + Rockrms + + + + Safari + + + + Sass + + + + SCHLIX + + + + Scribd + + + + Searchengin + + + + Sellcast + + + + Sellsy + + + + Servicestack + + + + Shirts in Bulk + + + + Shopware + + + + SimplyBuilt + + + + SISTRIX + + + + Sith + + + + skyatlas + + + + Skype + + + + Slack Logo + + + + Slack Hashtag + + + + Slideshare + + + + Snapchat + + + + Snapchat Ghost + + + + Snapchat Square + + + + SoundCloud + + + + Speakap + + + + Spotify + + + + Squarespace + + + + Stack Exchange + + + + Stack Overflow + + + + StayLinked + + + + Steam + + + + Steam Square + + + + Steam Symbol + + + + Sticker Mule + + + + Strava + + + + Stripe + + + + Stripe S + + + + Studio Vinari + + + + StumbleUpon Logo + + + + StumbleUpon Circle + + + + Superpowers + + + + Supple + + + + TeamSpeak + + + + Telegram + + + + Telegram Plane + + + + Tencent Weibo + + + + Themeco + + + + ThemeIsle + + + + Trade Federation + + + + Trello + + + + TripAdvisor + + + + Tumblr + + + + Tumblr Square + + + + Twitch + + + + Twitter + + + + Twitter Square + + + + Typo3 + + + + Uber + + + + UIkit + + + + Uniregistry + + + + Untappd + + + + USB + + + + us-Sunnah Foundation + + + + Vaadin + + + + Viacoin + + + + Viadeo + + + + Viadeo Square + + + + Viber + + + + Vimeo + + + + Vimeo Square + + + + Vimeo + + + + Vine + + + + VK + + + + VNV + + + + Vue.js + + + + Weebly + + + + Weibo + + + + Weixin (WeChat) + + + + What's App + + + + What's App Square + + + + WHMCS + + + + Wikipedia W + + + + Windows + + + + Wix + + + + Wolf Pack-battalion + + + + WordPress Logo + + + + Wordpress Simple + + + + WPBeginner + + + + WPExplorer + + + + WPForms + + + + Xbox + + + + Xing + + + + Xing Square + + + + Y Combinator + + + + Yahoo Logo + + + + Yandex + + + + Yandex International + + + + Yelp + + + + Yoast + + + + YouTube + + + + YouTube Square + + + diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/svg-sprites/fa-regular.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/svg-sprites/fa-regular.svg new file mode 100644 index 0000000000..54634aab6e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/svg-sprites/fa-regular.svg @@ -0,0 +1,615 @@ + + + + + Address Book + + + + Address Card + + + + Angry Face + + + + Alternate Arrow Circle Down + + + + Alternate Arrow Circle Left + + + + Alternate Arrow Circle Right + + + + Alternate Arrow Circle Up + + + + bell + + + + Bell Slash + + + + bookmark + + + + Building + + + + Calendar + + + + Alternate Calendar + + + + Calendar Check + + + + Calendar Minus + + + + Calendar Plus + + + + Calendar Times + + + + Caret Square Down + + + + Caret Square Left + + + + Caret Square Right + + + + Caret Square Up + + + + Bar Chart + + + + Check Circle + + + + Check Square + + + + Circle + + + + Clipboard + + + + Clock + + + + Clone + + + + Closed Captioning + + + + comment + + + + Alternate Comment + + + + Comment Dots + + + + comments + + + + Compass + + + + Copy + + + + Copyright + + + + Credit Card + + + + Dizzy Face + + + + Dot Circle + + + + Edit + + + + Envelope + + + + Envelope Open + + + + Eye + + + + Eye Slash + + + + File + + + + Alternate File + + + + Archive File + + + + Audio File + + + + Code File + + + + Excel File + + + + Image File + + + + PDF File + + + + Powerpoint File + + + + Video File + + + + Word File + + + + flag + + + + Flushed Face + + + + Folder + + + + Folder Open + + + + Font Awesome Full Logo + + + + Frowning Face + + + + Frowning Face With Open Mouth + + + + Futbol + + + + Gem + + + + Grimacing Face + + + + Grinning Face + + + + Alternate Grinning Face + + + + Grinning Face With Smiling Eyes + + + + Grinning Face With Sweat + + + + Smiling Face With Heart-Eyes + + + + Grinning Squinting Face + + + + Rolling on the Floor Laughing + + + + Star-Struck + + + + Face With Tears of Joy + + + + Face With Tongue + + + + Squinting Face With Tongue + + + + Winking Face With Tongue + + + + Grinning Winking Face + + + + Lizard (Hand) + + + + Paper (Hand) + + + + Peace (Hand) + + + + Hand Pointing Down + + + + Hand Pointing Left + + + + Hand Pointing Right + + + + Hand Pointing Up + + + + Pointer (Hand) + + + + Rock (Hand) + + + + Scissors (Hand) + + + + Spock (Hand) + + + + Handshake + + + + HDD + + + + Heart + + + + hospital + + + + Hourglass + + + + Identification Badge + + + + Identification Card + + + + Image + + + + Images + + + + Keyboard + + + + Kissing Face + + + + Kissing Face With Smiling Eyes + + + + Face Blowing a Kiss + + + + Grinning Face With Big Eyes + + + + Laugh Face with Beaming Eyes + + + + Laughing Squinting Face + + + + Laughing Winking Face + + + + Lemon + + + + Life Ring + + + + Lightbulb + + + + Alternate List + + + + Map + + + + Neutral Face + + + + Face Without Mouth + + + + Face With Rolling Eyes + + + + Minus Square + + + + Alternate Money Bill + + + + Moon + + + + Newspaper + + + + Object Group + + + + Object Ungroup + + + + Paper Plane + + + + Pause Circle + + + + Play Circle + + + + Plus Square + + + + Question Circle + + + + Registered Trademark + + + + Crying Face + + + + Loudly Crying Face + + + + Save + + + + Share Square + + + + Smiling Face + + + + Beaming Face With Smiling Eyes + + + + Winking Face + + + + Snowflake + + + + Square + + + + Star + + + + star-half + + + + Sticky Note + + + + Stop Circle + + + + Sun + + + + Hushed Face + + + + thumbs-down + + + + thumbs-up + + + + Times Circle + + + + Tired Face + + + + Alternate Trash + + + + User + + + + User Circle + + + + Window Close + + + + Window Maximize + + + + Window Minimize + + + + Window Restore + + + diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/svg-sprites/fa-solid.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/svg-sprites/fa-solid.svg new file mode 100644 index 0000000000..eeee6065c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/svg-sprites/fa-solid.svg @@ -0,0 +1,2967 @@ + + + + + Address Book + + + + Address Card + + + + adjust + + + + align-center + + + + align-justify + + + + align-left + + + + align-right + + + + Allergies + + + + ambulance + + + + American Sign Language Interpreting + + + + Anchor + + + + Angle Double Down + + + + Angle Double Left + + + + Angle Double Right + + + + Angle Double Up + + + + angle-down + + + + angle-left + + + + angle-right + + + + angle-up + + + + Angry Face + + + + Archive + + + + Archway + + + + Alternate Arrow Circle Down + + + + Alternate Arrow Circle Left + + + + Alternate Arrow Circle Right + + + + Alternate Arrow Circle Up + + + + Arrow Circle Down + + + + Arrow Circle Left + + + + Arrow Circle Right + + + + Arrow Circle Up + + + + arrow-down + + + + arrow-left + + + + arrow-right + + + + arrow-up + + + + Alternate Arrows + + + + Alternate Arrows Horizontal + + + + Alternate Arrows Vertical + + + + Assistive Listening Systems + + + + asterisk + + + + At + + + + Atlas + + + + Audio Description + + + + Award + + + + Backspace + + + + backward + + + + Balance Scale + + + + ban + + + + Band-Aid + + + + barcode + + + + Bars + + + + Baseball Ball + + + + Basketball Ball + + + + Bath + + + + Battery Empty + + + + Battery Full + + + + Battery 1/2 Full + + + + Battery 1/4 Full + + + + Battery 3/4 Full + + + + Bed + + + + beer + + + + bell + + + + Bell Slash + + + + Bezier Curve + + + + Bicycle + + + + Binoculars + + + + Birthday Cake + + + + Blender + + + + Blind + + + + bold + + + + Lightning Bolt + + + + Bomb + + + + Bong + + + + book + + + + Book Open + + + + bookmark + + + + Bowling Ball + + + + Box + + + + Box Open + + + + Boxes + + + + Braille + + + + Briefcase + + + + Medical Briefcase + + + + Broadcast Tower + + + + Broom + + + + Brush + + + + Bug + + + + Building + + + + bullhorn + + + + Bullseye + + + + Burn + + + + Bus + + + + Bus Alt + + + + Calculator + + + + Calendar + + + + Alternate Calendar + + + + Calendar Check + + + + Calendar Minus + + + + Calendar Plus + + + + Calendar Times + + + + camera + + + + Retro Camera + + + + Cannabis + + + + Capsules + + + + Car + + + + Caret Down + + + + Caret Left + + + + Caret Right + + + + Caret Square Down + + + + Caret Square Left + + + + Caret Square Right + + + + Caret Square Up + + + + Caret Up + + + + Shopping Cart Arrow Down + + + + Add to Shopping Cart + + + + certificate + + + + Chalkboard + + + + Chalkboard Teacher + + + + Area Chart + + + + Bar Chart + + + + Line Chart + + + + Pie Chart + + + + Check + + + + Check Circle + + + + Check Double + + + + Check Square + + + + Chess + + + + Chess Bishop + + + + Chess Board + + + + Chess King + + + + Chess Knight + + + + Chess Pawn + + + + Chess Queen + + + + Chess Rook + + + + Chevron Circle Down + + + + Chevron Circle Left + + + + Chevron Circle Right + + + + Chevron Circle Up + + + + chevron-down + + + + chevron-left + + + + chevron-right + + + + chevron-up + + + + Child + + + + Church + + + + Circle + + + + Circle Notched + + + + Clipboard + + + + Clipboard Check + + + + Clipboard List + + + + Clock + + + + Clone + + + + Closed Captioning + + + + Cloud + + + + Alternate Cloud Download + + + + Alternate Cloud Upload + + + + Cocktail + + + + Code + + + + Code Branch + + + + Coffee + + + + cog + + + + cogs + + + + Coins + + + + Columns + + + + comment + + + + Alternate Comment + + + + Comment Dots + + + + Comment Slash + + + + comments + + + + Compact Disc + + + + Compass + + + + Compress + + + + Concierge Bell + + + + Cookie + + + + Cookie Bite + + + + Copy + + + + Copyright + + + + Couch + + + + Credit Card + + + + crop + + + + Alternate Crop + + + + Crosshairs + + + + Crow + + + + Crown + + + + Cube + + + + Cubes + + + + Cut + + + + Database + + + + Deaf + + + + Desktop + + + + Diagnoses + + + + Dice + + + + Dice Five + + + + Dice Four + + + + Dice One + + + + Dice Six + + + + Dice Three + + + + Dice Two + + + + Digital Tachograph + + + + Divide + + + + Dizzy Face + + + + DNA + + + + Dollar Sign + + + + Dolly + + + + Dolly Flatbed + + + + + Door Closed + + + + Door Open + + + + Dot Circle + + + + Dove + + + + Download + + + + Drafting Compass + + + + Drum + + + + Drum Steelpan + + + + Dumbbell + + + + Edit + + + + eject + + + + Horizontal Ellipsis + + + + Vertical Ellipsis + + + + Envelope + + + + Envelope Open + + + + Envelope Square + + + + Equals + + + + eraser + + + + Euro Sign + + + + Alternate Exchange + + + + exclamation + + + + Exclamation Circle + + + + Exclamation Triangle + + + + Expand + + + + Alternate Expand Arrows + + + + Alternate External Link + + + + Alternate External Link Square + + + + Eye + + + + Eye Dropper + + + + Eye Slash + + + + fast-backward + + + + fast-forward + + + + Fax + + + + Feather + + + + Feather Alt + + + + Female + + + + fighter-jet + + + + File + + + + Alternate File + + + + Archive File + + + + Audio File + + + + Code File + + + + File Contract + + + + File Download + + + + Excel File + + + + File Export + + + + Image File + + + + File Import + + + + File Invoice + + + + File Invoice with US Dollar + + + + Medical File + + + + Alternate Medical File + + + + PDF File + + + + Powerpoint File + + + + File Prescription + + + + File Signature + + + + File Upload + + + + Video File + + + + Word File + + + + Fill + + + + Fill Drip + + + + Film + + + + Filter + + + + Fingerprint + + + + fire + + + + fire-extinguisher + + + + First Aid + + + + Fish + + + + flag + + + + flag-checkered + + + + Flask + + + + Flushed Face + + + + Folder + + + + Folder Open + + + + font + + + + Font Awesome Full Logo + + + + Football Ball + + + + forward + + + + Frog + + + + Frowning Face + + + + Frowning Face With Open Mouth + + + + Futbol + + + + Gamepad + + + + Gas Pump + + + + Gavel + + + + Gem + + + + Genderless + + + + gift + + + + Martini Glass + + + + Glass Martini-alt + + + + Glasses + + + + Globe + + + + Globe with Africa shown + + + + Globe with Americas shown + + + + Globe with Asia shown + + + + Golf Ball + + + + Graduation Cap + + + + Greater Than + + + + Greater Than Equal To + + + + Grimacing Face + + + + Grinning Face + + + + Alternate Grinning Face + + + + Grinning Face With Smiling Eyes + + + + Grinning Face With Sweat + + + + Smiling Face With Heart-Eyes + + + + Grinning Squinting Face + + + + Rolling on the Floor Laughing + + + + Star-Struck + + + + Face With Tears of Joy + + + + Face With Tongue + + + + Squinting Face With Tongue + + + + Winking Face With Tongue + + + + Grinning Winking Face + + + + Grip Horizontal + + + + Grip Vertical + + + + H Square + + + + Hand Holding + + + + Hand Holding Heart + + + + Hand Holding US Dollar + + + + Lizard (Hand) + + + + Paper (Hand) + + + + Peace (Hand) + + + + Hand Pointing Down + + + + Hand Pointing Left + + + + Hand Pointing Right + + + + Hand Pointing Up + + + + Pointer (Hand) + + + + Rock (Hand) + + + + Scissors (Hand) + + + + Spock (Hand) + + + + Hands + + + + Helping Hands + + + + Handshake + + + + Hashtag + + + + HDD + + + + heading + + + + headphones + + + + Headphones Alt + + + + Headset + + + + Heart + + + + Heartbeat + + + + Helicopter + + + + Highlighter + + + + History + + + + Hockey Puck + + + + home + + + + hospital + + + + Alternate Hospital + + + + Hospital Symbol + + + + Hot Tub + + + + Hotel + + + + Hourglass + + + + Hourglass End + + + + Hourglass Half + + + + Hourglass Start + + + + I Beam Cursor + + + + Identification Badge + + + + Identification Card + + + + Alternate Identification Card + + + + Image + + + + Images + + + + inbox + + + + Indent + + + + Industry + + + + Infinity + + + + Info + + + + Info Circle + + + + italic + + + + Joint + + + + key + + + + Keyboard + + + + Kissing Face + + + + Kissing Face With Smiling Eyes + + + + Face Blowing a Kiss + + + + Kiwi Bird + + + + Language + + + + Laptop + + + + Grinning Face With Big Eyes + + + + Laugh Face with Beaming Eyes + + + + Laughing Squinting Face + + + + Laughing Winking Face + + + + leaf + + + + Lemon + + + + Less Than + + + + Less Than Equal To + + + + Alternate Level Down + + + + Alternate Level Up + + + + Life Ring + + + + Lightbulb + + + + Link + + + + Turkish Lira Sign + + + + List + + + + Alternate List + + + + list-ol + + + + list-ul + + + + location-arrow + + + + lock + + + + Lock Open + + + + Alternate Long Arrow Down + + + + Alternate Long Arrow Left + + + + Alternate Long Arrow Right + + + + Alternate Long Arrow Up + + + + Low Vision + + + + Luggage Cart + + + + magic + + + + magnet + + + + Male + + + + Map + + + + Map Marked + + + + Map Marked-alt + + + + map-marker + + + + Alternate Map Marker + + + + Map Pin + + + + Map Signs + + + + Marker + + + + Mars + + + + Mars Double + + + + Mars Stroke + + + + Mars Stroke Horizontal + + + + Mars Stroke Vertical + + + + Medal + + + + medkit + + + + Neutral Face + + + + Face Without Mouth + + + + Face With Rolling Eyes + + + + Memory + + + + Mercury + + + + Microchip + + + + microphone + + + + Alternate Microphone + + + + Alternate Microphone Slash + + + + Microphone Slash + + + + minus + + + + Minus Circle + + + + Minus Square + + + + Mobile Phone + + + + Alternate Mobile + + + + Money Bill + + + + Alternate Money Bill + + + + Wavy Money Bill + + + + Alternate Wavy Money Bill + + + + Money Check + + + + Alternate Money Check + + + + Monument + + + + Moon + + + + Mortar Pestle + + + + Motorcycle + + + + Mouse Pointer + + + + Music + + + + Neuter + + + + Newspaper + + + + Not Equal + + + + Medical Notes + + + + Object Group + + + + Object Ungroup + + + + Outdent + + + + Paint Brush + + + + Paint Roller + + + + Palette + + + + Pallet + + + + Paper Plane + + + + Paperclip + + + + Parachute Box + + + + paragraph + + + + Parking + + + + Passport + + + + Paste + + + + pause + + + + Pause Circle + + + + Paw + + + + Pen + + + + Alternate Pen + + + + Pen Fancy + + + + Pen Nib + + + + Pen Square + + + + Alternate Pencil + + + + Pencil Ruler + + + + People Carry + + + + Percent + + + + Percentage + + + + Phone + + + + Phone Slash + + + + Phone Square + + + + Phone Volume + + + + Piggy Bank + + + + Pills + + + + plane + + + + Plane Arrival + + + + Plane Departure + + + + play + + + + Play Circle + + + + Plug + + + + plus + + + + Plus Circle + + + + Plus Square + + + + Podcast + + + + Poo + + + + Portrait + + + + Pound Sign + + + + Power Off + + + + Prescription + + + + Prescription Bottle + + + + Alternate Prescription Bottle + + + + print + + + + Procedures + + + + Project Diagram + + + + Puzzle Piece + + + + qrcode + + + + Question + + + + Question Circle + + + + Quidditch + + + + quote-left + + + + quote-right + + + + random + + + + Receipt + + + + Recycle + + + + Redo + + + + Alternate Redo + + + + Registered Trademark + + + + Reply + + + + reply-all + + + + Retweet + + + + Ribbon + + + + road + + + + Robot + + + + rocket + + + + rss + + + + RSS Square + + + + Ruble Sign + + + + Ruler + + + + Ruler Combined + + + + Ruler Horizontal + + + + Ruler Vertical + + + + Indian Rupee Sign + + + + Crying Face + + + + Loudly Crying Face + + + + Save + + + + School + + + + Screwdriver + + + + Search + + + + Search Minus + + + + Search Plus + + + + Seedling + + + + Server + + + + Share + + + + Alternate Share + + + + Alternate Share Square + + + + Share Square + + + + Shekel Sign + + + + Alternate Shield + + + + Ship + + + + Shipping Fast + + + + Shoe Prints + + + + Shopping Bag + + + + Shopping Basket + + + + shopping-cart + + + + Shower + + + + Shuttle Van + + + + Sign + + + + Alternate Sign In + + + + Sign Language + + + + Alternate Sign Out + + + + signal + + + + Signature + + + + Sitemap + + + + Skull + + + + Horizontal Sliders + + + + Smiling Face + + + + Beaming Face With Smiling Eyes + + + + Winking Face + + + + Smoking + + + + Smoking Ban + + + + Snowflake + + + + Solar Panel + + + + Sort + + + + Sort Alpha Down + + + + Sort Alpha Up + + + + Sort Amount Down + + + + Sort Amount Up + + + + Sort Down (Descending) + + + + Sort Numeric Down + + + + Sort Numeric Up + + + + Sort Up (Ascending) + + + + Spa + + + + Space Shuttle + + + + Spinner + + + + Splotch + + + + Spray Can + + + + Square + + + + Square Full + + + + Stamp + + + + Star + + + + star-half + + + + Alternate Star Half + + + + step-backward + + + + step-forward + + + + Stethoscope + + + + Sticky Note + + + + stop + + + + Stop Circle + + + + Stopwatch + + + + Store + + + + Alternate Store + + + + Stream + + + + Street View + + + + Strikethrough + + + + Stroopwafel + + + + subscript + + + + Subway + + + + Suitcase + + + + Suitcase Rolling + + + + Sun + + + + superscript + + + + Hushed Face + + + + Swatchbook + + + + Swimmer + + + + Swimming Pool + + + + Sync + + + + Alternate Sync + + + + Syringe + + + + table + + + + Table Tennis + + + + tablet + + + + Alternate Tablet + + + + Tablets + + + + Alternate Tachometer + + + + tag + + + + tags + + + + Tape + + + + Tasks + + + + Taxi + + + + Terminal + + + + text-height + + + + text-width + + + + th + + + + th-large + + + + th-list + + + + Thermometer + + + + Thermometer Empty + + + + Thermometer Full + + + + Thermometer 1/2 Full + + + + Thermometer 1/4 Full + + + + Thermometer 3/4 Full + + + + thumbs-down + + + + thumbs-up + + + + Thumbtack + + + + Alternate Ticket + + + + Times + + + + Times Circle + + + + tint + + + + Tint Slash + + + + Tired Face + + + + Toggle Off + + + + Toggle On + + + + Toolbox + + + + Tooth + + + + Trademark + + + + Train + + + + Transgender + + + + Alternate Transgender + + + + Trash + + + + Alternate Trash + + + + Tree + + + + trophy + + + + truck + + + + Truck Loading + + + + Truck Moving + + + + T-Shirt + + + + TTY + + + + Television + + + + Umbrella + + + + Umbrella Beach + + + + Underline + + + + Undo + + + + Alternate Undo + + + + Universal Access + + + + University + + + + unlink + + + + unlock + + + + Alternate Unlock + + + + Upload + + + + User + + + + Alternate User + + + + Alternate User Slash + + + + User Astronaut + + + + User Check + + + + User Circle + + + + User Clock + + + + User Cog + + + + User Edit + + + + User Friends + + + + User Graduate + + + + User Lock + + + + user-md + + + + User Minus + + + + User Ninja + + + + Add User + + + + User Secret + + + + User Shield + + + + User Slash + + + + User Tag + + + + User Tie + + + + Remove User + + + + Users + + + + Users Cog + + + + Utensil Spoon + + + + Utensils + + + + Vector Square + + + + Venus + + + + Venus Double + + + + Venus Mars + + + + Vial + + + + Vials + + + + Video + + + + Video Slash + + + + Volleyball Ball + + + + volume-down + + + + volume-off + + + + volume-up + + + + Walking + + + + Wallet + + + + Warehouse + + + + Weight + + + + Hanging Weight + + + + Wheelchair + + + + WiFi + + + + Window Close + + + + Window Maximize + + + + Window Minimize + + + + Window Restore + + + + Wine Glass + + + + Wine Glass-alt + + + + Won Sign + + + + Wrench + + + + X-Ray + + + + Yen Sign + + + diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-common-types/LICENSE.txt b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-common-types/LICENSE.txt new file mode 100644 index 0000000000..28c1c4bc73 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-common-types/LICENSE.txt @@ -0,0 +1,34 @@ +Font Awesome Free License +------------------------- + +Font Awesome Free is free, open source, and GPL friendly. You can use it for +commercial projects, open source projects, or really almost whatever you want. +Full Font Awesome Free license: https://fontawesome.com/license. + +# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) +In the Font Awesome Free download, the CC BY 4.0 license applies to all icons +packaged as SVG and JS file types. + +# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL) +In the Font Awesome Free download, the SIL OLF license applies to all icons +packaged as web and desktop font files. + +# Code: MIT License (https://opensource.org/licenses/MIT) +In the Font Awesome Free download, the MIT license applies to all non-font and +non-icon files. + +# Attribution +Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font +Awesome Free files already contain embedded comments with sufficient +attribution, so you shouldn't need to do anything additional when using these +files normally. + +We've kept attribution comments terse, so we ask that you do not actively work +to remove them from files, especially code. They're a great way for folks to +learn about Font Awesome. + +# Brand Icons +All brand icons are trademarks of their respective owners. The use of these +trademarks does not indicate endorsement of the trademark holder by Font +Awesome, nor vice versa. **Please do not use brand logos for any purpose except +to represent the company, product, or service to which they refer.** diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-common-types/README.md b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-common-types/README.md new file mode 100644 index 0000000000..f81cf2a1f3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-common-types/README.md @@ -0,0 +1,27 @@ +# @fortawesome/fontawesome-common-types - SVG with JavaScript + +> "I came here to chew bubblegum and install Font Awesome 5 - and I'm all out of bubblegum" + +[![npm](https://img.shields.io/npm/v/@fortawesome/fontawesome-common-types.svg?style=flat-square)](https://www.npmjs.com/package/@fortawesome/fontawesome-common-types) + +## What is this package? + +Font Awesome 5 JavaScript packages support TypeScript. This package abstracts out some of the common definitions that those packages use. + +## Here be dragons + +If you are trying to import types from this package we *highly* recommend you do the following instead as *all types in this package are re-exported to the main fontawesome package*. + +your.ts + +``` +import { + IconName +} from `@fortawesome/fontawesome` + +const myIcon: IconName = "..." +``` + +## Issues and support + +Start with [GitHub issues](https://github.com/FortAwesome/Font-Awesome/issues) and ping us on [Twitter](https://twitter.com/fontawesome) if you need to. diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-common-types/index.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-common-types/index.d.ts new file mode 100644 index 0000000000..6b95fac65e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-common-types/index.d.ts @@ -0,0 +1,1286 @@ +export type IconPrefix = "fas" | "fab" | "far" | "fal"; + +export interface IconLookup { + prefix: IconPrefix; + // IconName is defined in the code that will be generated at build time and bundled with this file. + iconName: IconName; +} + +export interface IconDefinition extends IconLookup { + icon: [ + number, // width + number, // height + string[], // ligatures + string, // unicode + string // svgPathData + ]; +} + +export interface IconPack { + [key: string]: IconDefinition; +} +export type IconName = '500px' | + 'accessible-icon' | + 'accusoft' | + 'adn' | + 'adversal' | + 'affiliatetheme' | + 'algolia' | + 'amazon' | + 'amazon-pay' | + 'amilia' | + 'android' | + 'angellist' | + 'angrycreative' | + 'angular' | + 'app-store' | + 'app-store-ios' | + 'apper' | + 'apple' | + 'apple-pay' | + 'asymmetrik' | + 'audible' | + 'autoprefixer' | + 'avianex' | + 'aviato' | + 'aws' | + 'bandcamp' | + 'behance' | + 'behance-square' | + 'bimobject' | + 'bitbucket' | + 'bitcoin' | + 'bity' | + 'black-tie' | + 'blackberry' | + 'blogger' | + 'blogger-b' | + 'bluetooth' | + 'bluetooth-b' | + 'btc' | + 'buromobelexperte' | + 'buysellads' | + 'cc-amazon-pay' | + 'cc-amex' | + 'cc-apple-pay' | + 'cc-diners-club' | + 'cc-discover' | + 'cc-jcb' | + 'cc-mastercard' | + 'cc-paypal' | + 'cc-stripe' | + 'cc-visa' | + 'centercode' | + 'chrome' | + 'cloudscale' | + 'cloudsmith' | + 'cloudversify' | + 'codepen' | + 'codiepie' | + 'connectdevelop' | + 'contao' | + 'cpanel' | + 'creative-commons' | + 'address-book' | + 'address-card' | + 'angry' | + 'arrow-alt-circle-down' | + 'arrow-alt-circle-left' | + 'arrow-alt-circle-right' | + 'arrow-alt-circle-up' | + 'bell' | + 'bell-slash' | + 'bookmark' | + 'building' | + 'calendar' | + 'calendar-alt' | + 'calendar-check' | + 'calendar-minus' | + 'calendar-plus' | + 'calendar-times' | + 'caret-square-down' | + 'caret-square-left' | + 'caret-square-right' | + 'caret-square-up' | + 'chart-bar' | + 'check-circle' | + 'check-square' | + 'circle' | + 'clipboard' | + 'clock' | + 'clone' | + 'closed-captioning' | + 'comment' | + 'comment-alt' | + 'comment-dots' | + 'comments' | + 'compass' | + 'copy' | + 'copyright' | + 'credit-card' | + 'dizzy' | + 'dot-circle' | + 'edit' | + 'envelope' | + 'envelope-open' | + 'eye' | + 'eye-slash' | + 'file' | + 'file-alt' | + 'file-archive' | + 'file-audio' | + 'file-code' | + 'file-excel' | + 'file-image' | + 'file-pdf' | + 'file-powerpoint' | + 'file-video' | + 'file-word' | + 'flag' | + 'flushed' | + 'folder' | + 'folder-open' | + 'font-awesome-logo-full' | + 'frown' | + 'frown-open' | + 'futbol' | + 'gem' | + 'grimace' | + 'grin' | + 'grin-alt' | + 'grin-beam' | + 'grin-beam-sweat' | + 'grin-hearts' | + 'grin-squint' | + 'grin-squint-tears' | + 'grin-stars' | + 'grin-tears' | + 'grin-tongue' | + 'grin-tongue-squint' | + 'grin-tongue-wink' | + 'grin-wink' | + 'hand-lizard' | + 'hand-paper' | + 'hand-peace' | + 'hand-point-down' | + 'hand-point-left' | + 'hand-point-right' | + 'hand-point-up' | + 'hand-pointer' | + 'hand-rock' | + 'address-book' | + 'address-card' | + 'adjust' | + 'align-center' | + 'align-justify' | + 'align-left' | + 'align-right' | + 'allergies' | + 'ambulance' | + 'american-sign-language-interpreting' | + 'anchor' | + 'angle-double-down' | + 'angle-double-left' | + 'angle-double-right' | + 'angle-double-up' | + 'angle-down' | + 'angle-left' | + 'angle-right' | + 'angle-up' | + 'angry' | + 'archive' | + 'archway' | + 'arrow-alt-circle-down' | + 'arrow-alt-circle-left' | + 'arrow-alt-circle-right' | + 'arrow-alt-circle-up' | + 'arrow-circle-down' | + 'arrow-circle-left' | + 'arrow-circle-right' | + 'arrow-circle-up' | + 'arrow-down' | + 'arrow-left' | + 'arrow-right' | + 'arrow-up' | + 'arrows-alt' | + 'arrows-alt-h' | + 'arrows-alt-v' | + 'assistive-listening-systems' | + 'asterisk' | + 'at' | + 'atlas' | + 'audio-description' | + 'award' | + 'backspace' | + 'backward' | + 'balance-scale' | + 'ban' | + 'band-aid' | + 'barcode' | + 'bars' | + 'baseball-ball' | + 'basketball-ball' | + 'bath' | + 'battery-empty' | + 'battery-full' | + 'battery-half' | + 'battery-quarter' | + 'battery-three-quarters' | + 'bed' | + 'beer' | + 'bell' | + 'bell-slash' | + 'bezier-curve' | + 'bicycle' | + 'binoculars' | + 'birthday-cake' | + 'blender' | + 'blind' | + 'bold' | + 'bolt' | + 'bomb' | + 'bong' | + 'book' | + 'book-open' | + 'bookmark' | + 'bowling-ball' | + 'box' | + 'box-open' | + 'boxes' | + 'braille' | + 'briefcase' | + 'briefcase-medical' | + 'broadcast-tower' | + 'broom' | + 'brush' | + 'bug' | + 'building' | + 'bullhorn' | + 'bullseye' | + 'burn' | + 'bus' | + 'bus-alt' | + 'calculator' | + 'calendar' | + 'calendar-alt' | + 'calendar-check' | + 'calendar-minus' | + 'calendar-plus' | + 'calendar-times' | + 'camera' | + 'camera-retro' | + 'cannabis' | + 'capsules' | + 'car' | + 'caret-down' | + 'creative-commons-by' | + 'creative-commons-nc' | + 'creative-commons-nc-eu' | + 'creative-commons-nc-jp' | + 'creative-commons-nd' | + 'creative-commons-pd' | + 'creative-commons-pd-alt' | + 'creative-commons-remix' | + 'creative-commons-sa' | + 'creative-commons-sampling' | + 'creative-commons-sampling-plus' | + 'creative-commons-share' | + 'css3' | + 'css3-alt' | + 'cuttlefish' | + 'd-and-d' | + 'dashcube' | + 'delicious' | + 'deploydog' | + 'deskpro' | + 'deviantart' | + 'digg' | + 'digital-ocean' | + 'discord' | + 'discourse' | + 'dochub' | + 'docker' | + 'draft2digital' | + 'dribbble' | + 'dribbble-square' | + 'dropbox' | + 'drupal' | + 'dyalog' | + 'earlybirds' | + 'ebay' | + 'edge' | + 'elementor' | + 'ember' | + 'empire' | + 'envira' | + 'erlang' | + 'ethereum' | + 'etsy' | + 'expeditedssl' | + 'facebook' | + 'facebook-f' | + 'facebook-messenger' | + 'facebook-square' | + 'firefox' | + 'first-order' | + 'first-order-alt' | + 'firstdraft' | + 'flickr' | + 'flipboard' | + 'fly' | + 'font-awesome' | + 'font-awesome-alt' | + 'font-awesome-flag' | + 'font-awesome-logo-full' | + 'fonticons' | + 'fonticons-fi' | + 'fort-awesome' | + 'fort-awesome-alt' | + 'forumbee' | + 'foursquare' | + 'free-code-camp' | + 'freebsd' | + 'fulcrum' | + 'galactic-republic' | + 'galactic-senate' | + 'get-pocket' | + 'gg' | + 'gg-circle' | + 'git' | + 'hand-scissors' | + 'hand-spock' | + 'handshake' | + 'hdd' | + 'heart' | + 'hospital' | + 'hourglass' | + 'id-badge' | + 'id-card' | + 'image' | + 'images' | + 'keyboard' | + 'kiss' | + 'kiss-beam' | + 'kiss-wink-heart' | + 'laugh' | + 'laugh-beam' | + 'laugh-squint' | + 'laugh-wink' | + 'lemon' | + 'life-ring' | + 'lightbulb' | + 'list-alt' | + 'map' | + 'meh' | + 'meh-blank' | + 'meh-rolling-eyes' | + 'minus-square' | + 'money-bill-alt' | + 'moon' | + 'newspaper' | + 'object-group' | + 'object-ungroup' | + 'paper-plane' | + 'pause-circle' | + 'play-circle' | + 'plus-square' | + 'question-circle' | + 'registered' | + 'sad-cry' | + 'sad-tear' | + 'save' | + 'share-square' | + 'smile' | + 'smile-beam' | + 'smile-wink' | + 'snowflake' | + 'square' | + 'star' | + 'star-half' | + 'sticky-note' | + 'stop-circle' | + 'sun' | + 'surprise' | + 'thumbs-down' | + 'thumbs-up' | + 'times-circle' | + 'tired' | + 'trash-alt' | + 'user' | + 'user-circle' | + 'window-close' | + 'window-maximize' | + 'window-minimize' | + 'window-restore' | + 'caret-left' | + 'caret-right' | + 'caret-square-down' | + 'caret-square-left' | + 'caret-square-right' | + 'caret-square-up' | + 'caret-up' | + 'cart-arrow-down' | + 'cart-plus' | + 'certificate' | + 'chalkboard' | + 'chalkboard-teacher' | + 'chart-area' | + 'chart-bar' | + 'chart-line' | + 'chart-pie' | + 'check' | + 'check-circle' | + 'check-double' | + 'check-square' | + 'chess' | + 'chess-bishop' | + 'chess-board' | + 'chess-king' | + 'chess-knight' | + 'chess-pawn' | + 'chess-queen' | + 'chess-rook' | + 'chevron-circle-down' | + 'chevron-circle-left' | + 'chevron-circle-right' | + 'chevron-circle-up' | + 'chevron-down' | + 'chevron-left' | + 'chevron-right' | + 'chevron-up' | + 'child' | + 'church' | + 'circle' | + 'circle-notch' | + 'clipboard' | + 'clipboard-check' | + 'clipboard-list' | + 'clock' | + 'clone' | + 'closed-captioning' | + 'cloud' | + 'cloud-download-alt' | + 'cloud-upload-alt' | + 'cocktail' | + 'code' | + 'code-branch' | + 'coffee' | + 'cog' | + 'cogs' | + 'coins' | + 'columns' | + 'comment' | + 'comment-alt' | + 'comment-dots' | + 'comment-slash' | + 'comments' | + 'compact-disc' | + 'compass' | + 'compress' | + 'concierge-bell' | + 'cookie' | + 'cookie-bite' | + 'copy' | + 'copyright' | + 'couch' | + 'credit-card' | + 'crop' | + 'crop-alt' | + 'crosshairs' | + 'crow' | + 'crown' | + 'cube' | + 'cubes' | + 'cut' | + 'database' | + 'deaf' | + 'desktop' | + 'diagnoses' | + 'dice' | + 'dice-five' | + 'dice-four' | + 'dice-one' | + 'dice-six' | + 'dice-three' | + 'dice-two' | + 'digital-tachograph' | + 'divide' | + 'dizzy' | + 'dna' | + 'dollar-sign' | + 'dolly' | + 'dolly-flatbed' | + 'donate' | + 'door-closed' | + 'door-open' | + 'dot-circle' | + 'dove' | + 'download' | + 'drafting-compass' | + 'drum' | + 'drum-steelpan' | + 'dumbbell' | + 'edit' | + 'eject' | + 'ellipsis-h' | + 'ellipsis-v' | + 'envelope' | + 'envelope-open' | + 'git-square' | + 'github' | + 'github-alt' | + 'github-square' | + 'gitkraken' | + 'gitlab' | + 'gitter' | + 'glide' | + 'glide-g' | + 'gofore' | + 'goodreads' | + 'goodreads-g' | + 'google' | + 'google-drive' | + 'google-play' | + 'google-plus' | + 'google-plus-g' | + 'google-plus-square' | + 'google-wallet' | + 'gratipay' | + 'grav' | + 'gripfire' | + 'grunt' | + 'gulp' | + 'hacker-news' | + 'hacker-news-square' | + 'hips' | + 'hire-a-helper' | + 'hooli' | + 'hornbill' | + 'hotjar' | + 'houzz' | + 'html5' | + 'hubspot' | + 'imdb' | + 'instagram' | + 'internet-explorer' | + 'ioxhost' | + 'itunes' | + 'itunes-note' | + 'java' | + 'jedi-order' | + 'jenkins' | + 'joget' | + 'joomla' | + 'js' | + 'js-square' | + 'jsfiddle' | + 'keybase' | + 'keycdn' | + 'kickstarter' | + 'kickstarter-k' | + 'korvue' | + 'laravel' | + 'lastfm' | + 'lastfm-square' | + 'leanpub' | + 'less' | + 'line' | + 'linkedin' | + 'linkedin-in' | + 'linode' | + 'envelope-square' | + 'equals' | + 'eraser' | + 'euro-sign' | + 'exchange-alt' | + 'exclamation' | + 'exclamation-circle' | + 'exclamation-triangle' | + 'expand' | + 'expand-arrows-alt' | + 'external-link-alt' | + 'external-link-square-alt' | + 'eye' | + 'eye-dropper' | + 'eye-slash' | + 'fast-backward' | + 'fast-forward' | + 'fax' | + 'feather' | + 'feather-alt' | + 'female' | + 'fighter-jet' | + 'file' | + 'file-alt' | + 'file-archive' | + 'file-audio' | + 'file-code' | + 'file-contract' | + 'file-download' | + 'file-excel' | + 'file-export' | + 'file-image' | + 'file-import' | + 'file-invoice' | + 'file-invoice-dollar' | + 'file-medical' | + 'file-medical-alt' | + 'file-pdf' | + 'file-powerpoint' | + 'file-prescription' | + 'file-signature' | + 'file-upload' | + 'file-video' | + 'file-word' | + 'fill' | + 'fill-drip' | + 'film' | + 'filter' | + 'fingerprint' | + 'fire' | + 'fire-extinguisher' | + 'first-aid' | + 'fish' | + 'flag' | + 'flag-checkered' | + 'flask' | + 'flushed' | + 'folder' | + 'folder-open' | + 'font' | + 'font-awesome-logo-full' | + 'football-ball' | + 'forward' | + 'frog' | + 'frown' | + 'frown-open' | + 'futbol' | + 'gamepad' | + 'gas-pump' | + 'gavel' | + 'gem' | + 'genderless' | + 'gift' | + 'glass-martini' | + 'glass-martini-alt' | + 'glasses' | + 'globe' | + 'globe-africa' | + 'globe-americas' | + 'globe-asia' | + 'golf-ball' | + 'graduation-cap' | + 'greater-than' | + 'greater-than-equal' | + 'grimace' | + 'grin' | + 'grin-alt' | + 'grin-beam' | + 'grin-beam-sweat' | + 'grin-hearts' | + 'grin-squint' | + 'grin-squint-tears' | + 'grin-stars' | + 'grin-tears' | + 'grin-tongue' | + 'linux' | + 'lyft' | + 'magento' | + 'mailchimp' | + 'mandalorian' | + 'mastodon' | + 'maxcdn' | + 'medapps' | + 'medium' | + 'medium-m' | + 'medrt' | + 'meetup' | + 'megaport' | + 'microsoft' | + 'mix' | + 'mixcloud' | + 'mizuni' | + 'modx' | + 'monero' | + 'napster' | + 'nimblr' | + 'nintendo-switch' | + 'node' | + 'node-js' | + 'npm' | + 'ns8' | + 'nutritionix' | + 'odnoklassniki' | + 'odnoklassniki-square' | + 'old-republic' | + 'opencart' | + 'openid' | + 'opera' | + 'optin-monster' | + 'osi' | + 'page4' | + 'pagelines' | + 'palfed' | + 'patreon' | + 'paypal' | + 'periscope' | + 'phabricator' | + 'phoenix-framework' | + 'phoenix-squadron' | + 'php' | + 'pied-piper' | + 'grin-tongue-squint' | + 'grin-tongue-wink' | + 'grin-wink' | + 'grip-horizontal' | + 'grip-vertical' | + 'h-square' | + 'hand-holding' | + 'hand-holding-heart' | + 'hand-holding-usd' | + 'hand-lizard' | + 'hand-paper' | + 'hand-peace' | + 'hand-point-down' | + 'hand-point-left' | + 'hand-point-right' | + 'hand-point-up' | + 'hand-pointer' | + 'hand-rock' | + 'hand-scissors' | + 'hand-spock' | + 'hands' | + 'hands-helping' | + 'handshake' | + 'hashtag' | + 'hdd' | + 'heading' | + 'headphones' | + 'headphones-alt' | + 'headset' | + 'heart' | + 'heartbeat' | + 'helicopter' | + 'highlighter' | + 'history' | + 'hockey-puck' | + 'home' | + 'hospital' | + 'hospital-alt' | + 'hospital-symbol' | + 'hot-tub' | + 'hotel' | + 'hourglass' | + 'hourglass-end' | + 'hourglass-half' | + 'hourglass-start' | + 'i-cursor' | + 'id-badge' | + 'id-card' | + 'id-card-alt' | + 'image' | + 'images' | + 'inbox' | + 'indent' | + 'industry' | + 'infinity' | + 'info' | + 'info-circle' | + 'italic' | + 'joint' | + 'key' | + 'keyboard' | + 'kiss' | + 'kiss-beam' | + 'kiss-wink-heart' | + 'kiwi-bird' | + 'language' | + 'laptop' | + 'laugh' | + 'laugh-beam' | + 'laugh-squint' | + 'laugh-wink' | + 'leaf' | + 'lemon' | + 'less-than' | + 'less-than-equal' | + 'level-down-alt' | + 'level-up-alt' | + 'life-ring' | + 'lightbulb' | + 'link' | + 'lira-sign' | + 'list' | + 'list-alt' | + 'list-ol' | + 'list-ul' | + 'location-arrow' | + 'lock' | + 'lock-open' | + 'long-arrow-alt-down' | + 'long-arrow-alt-left' | + 'long-arrow-alt-right' | + 'long-arrow-alt-up' | + 'low-vision' | + 'luggage-cart' | + 'magic' | + 'magnet' | + 'male' | + 'map' | + 'map-marked' | + 'pied-piper-alt' | + 'pied-piper-hat' | + 'pied-piper-pp' | + 'pinterest' | + 'pinterest-p' | + 'pinterest-square' | + 'playstation' | + 'product-hunt' | + 'pushed' | + 'python' | + 'qq' | + 'quinscape' | + 'quora' | + 'r-project' | + 'ravelry' | + 'react' | + 'readme' | + 'rebel' | + 'red-river' | + 'reddit' | + 'reddit-alien' | + 'reddit-square' | + 'rendact' | + 'renren' | + 'replyd' | + 'researchgate' | + 'resolving' | + 'rev' | + 'rocketchat' | + 'rockrms' | + 'safari' | + 'sass' | + 'schlix' | + 'scribd' | + 'searchengin' | + 'sellcast' | + 'sellsy' | + 'servicestack' | + 'shirtsinbulk' | + 'shopware' | + 'simplybuilt' | + 'sistrix' | + 'sith' | + 'skyatlas' | + 'skype' | + 'slack' | + 'slack-hash' | + 'slideshare' | + 'snapchat' | + 'snapchat-ghost' | + 'snapchat-square' | + 'soundcloud' | + 'speakap' | + 'spotify' | + 'squarespace' | + 'stack-exchange' | + 'stack-overflow' | + 'staylinked' | + 'steam' | + 'steam-square' | + 'steam-symbol' | + 'sticker-mule' | + 'strava' | + 'stripe' | + 'stripe-s' | + 'studiovinari' | + 'stumbleupon' | + 'stumbleupon-circle' | + 'superpowers' | + 'supple' | + 'teamspeak' | + 'telegram' | + 'telegram-plane' | + 'map-marked-alt' | + 'map-marker' | + 'map-marker-alt' | + 'map-pin' | + 'map-signs' | + 'marker' | + 'mars' | + 'mars-double' | + 'mars-stroke' | + 'mars-stroke-h' | + 'mars-stroke-v' | + 'medal' | + 'medkit' | + 'meh' | + 'meh-blank' | + 'meh-rolling-eyes' | + 'memory' | + 'mercury' | + 'microchip' | + 'microphone' | + 'microphone-alt' | + 'microphone-alt-slash' | + 'microphone-slash' | + 'minus' | + 'minus-circle' | + 'minus-square' | + 'mobile' | + 'mobile-alt' | + 'money-bill' | + 'money-bill-alt' | + 'money-bill-wave' | + 'money-bill-wave-alt' | + 'money-check' | + 'money-check-alt' | + 'monument' | + 'moon' | + 'mortar-pestle' | + 'motorcycle' | + 'mouse-pointer' | + 'music' | + 'neuter' | + 'newspaper' | + 'not-equal' | + 'notes-medical' | + 'object-group' | + 'object-ungroup' | + 'outdent' | + 'paint-brush' | + 'paint-roller' | + 'palette' | + 'pallet' | + 'paper-plane' | + 'paperclip' | + 'parachute-box' | + 'paragraph' | + 'parking' | + 'passport' | + 'paste' | + 'pause' | + 'pause-circle' | + 'paw' | + 'pen' | + 'pen-alt' | + 'pen-fancy' | + 'pen-nib' | + 'pen-square' | + 'pencil-alt' | + 'pencil-ruler' | + 'people-carry' | + 'percent' | + 'percentage' | + 'phone' | + 'phone-slash' | + 'phone-square' | + 'phone-volume' | + 'piggy-bank' | + 'pills' | + 'plane' | + 'plane-arrival' | + 'plane-departure' | + 'play' | + 'play-circle' | + 'plug' | + 'plus' | + 'plus-circle' | + 'plus-square' | + 'podcast' | + 'poo' | + 'portrait' | + 'pound-sign' | + 'power-off' | + 'prescription' | + 'prescription-bottle' | + 'prescription-bottle-alt' | + 'print' | + 'procedures' | + 'project-diagram' | + 'puzzle-piece' | + 'qrcode' | + 'question' | + 'question-circle' | + 'quidditch' | + 'quote-left' | + 'quote-right' | + 'random' | + 'receipt' | + 'recycle' | + 'redo' | + 'redo-alt' | + 'registered' | + 'reply' | + 'reply-all' | + 'tencent-weibo' | + 'themeco' | + 'themeisle' | + 'trade-federation' | + 'trello' | + 'tripadvisor' | + 'tumblr' | + 'tumblr-square' | + 'twitch' | + 'twitter' | + 'twitter-square' | + 'typo3' | + 'uber' | + 'uikit' | + 'uniregistry' | + 'untappd' | + 'usb' | + 'ussunnah' | + 'vaadin' | + 'viacoin' | + 'viadeo' | + 'viadeo-square' | + 'viber' | + 'vimeo' | + 'vimeo-square' | + 'vimeo-v' | + 'vine' | + 'vk' | + 'vnv' | + 'vuejs' | + 'weebly' | + 'weibo' | + 'weixin' | + 'whatsapp' | + 'whatsapp-square' | + 'whmcs' | + 'wikipedia-w' | + 'windows' | + 'wix' | + 'wolf-pack-battalion' | + 'wordpress' | + 'wordpress-simple' | + 'wpbeginner' | + 'wpexplorer' | + 'wpforms' | + 'xbox' | + 'xing' | + 'xing-square' | + 'y-combinator' | + 'yahoo' | + 'yandex' | + 'yandex-international' | + 'yelp' | + 'yoast' | + 'youtube' | + 'youtube-square' | + 'retweet' | + 'ribbon' | + 'road' | + 'robot' | + 'rocket' | + 'rss' | + 'rss-square' | + 'ruble-sign' | + 'ruler' | + 'ruler-combined' | + 'ruler-horizontal' | + 'ruler-vertical' | + 'rupee-sign' | + 'sad-cry' | + 'sad-tear' | + 'save' | + 'school' | + 'screwdriver' | + 'search' | + 'search-minus' | + 'search-plus' | + 'seedling' | + 'server' | + 'share' | + 'share-alt' | + 'share-alt-square' | + 'share-square' | + 'shekel-sign' | + 'shield-alt' | + 'ship' | + 'shipping-fast' | + 'shoe-prints' | + 'shopping-bag' | + 'shopping-basket' | + 'shopping-cart' | + 'shower' | + 'shuttle-van' | + 'sign' | + 'sign-in-alt' | + 'sign-language' | + 'sign-out-alt' | + 'signal' | + 'signature' | + 'sitemap' | + 'skull' | + 'sliders-h' | + 'smile' | + 'smile-beam' | + 'smile-wink' | + 'smoking' | + 'smoking-ban' | + 'snowflake' | + 'solar-panel' | + 'sort' | + 'sort-alpha-down' | + 'sort-alpha-up' | + 'sort-amount-down' | + 'sort-amount-up' | + 'sort-down' | + 'sort-numeric-down' | + 'sort-numeric-up' | + 'sort-up' | + 'spa' | + 'space-shuttle' | + 'spinner' | + 'splotch' | + 'spray-can' | + 'square' | + 'square-full' | + 'stamp' | + 'star' | + 'star-half' | + 'star-half-alt' | + 'step-backward' | + 'step-forward' | + 'stethoscope' | + 'sticky-note' | + 'stop' | + 'stop-circle' | + 'stopwatch' | + 'store' | + 'store-alt' | + 'stream' | + 'street-view' | + 'strikethrough' | + 'stroopwafel' | + 'subscript' | + 'subway' | + 'suitcase' | + 'suitcase-rolling' | + 'sun' | + 'superscript' | + 'surprise' | + 'swatchbook' | + 'swimmer' | + 'swimming-pool' | + 'sync' | + 'sync-alt' | + 'syringe' | + 'table' | + 'table-tennis' | + 'tablet' | + 'tablet-alt' | + 'tablets' | + 'tachometer-alt' | + 'tag' | + 'tags' | + 'tape' | + 'tasks' | + 'taxi' | + 'terminal' | + 'text-height' | + 'text-width' | + 'th' | + 'th-large' | + 'th-list' | + 'thermometer' | + 'thermometer-empty' | + 'thermometer-full' | + 'thermometer-half' | + 'thermometer-quarter' | + 'thermometer-three-quarters' | + 'thumbs-down' | + 'thumbs-up' | + 'thumbtack' | + 'ticket-alt' | + 'times' | + 'times-circle' | + 'tint' | + 'tint-slash' | + 'tired' | + 'toggle-off' | + 'toggle-on' | + 'toolbox' | + 'tooth' | + 'trademark' | + 'train' | + 'transgender' | + 'transgender-alt' | + 'trash' | + 'trash-alt' | + 'tree' | + 'trophy' | + 'truck' | + 'truck-loading' | + 'truck-moving' | + 'tshirt' | + 'tty' | + 'tv' | + 'umbrella' | + 'umbrella-beach' | + 'underline' | + 'undo' | + 'undo-alt' | + 'universal-access' | + 'university' | + 'unlink' | + 'unlock' | + 'unlock-alt' | + 'upload' | + 'user' | + 'user-alt' | + 'user-alt-slash' | + 'user-astronaut' | + 'user-check' | + 'user-circle' | + 'user-clock' | + 'user-cog' | + 'user-edit' | + 'user-friends' | + 'user-graduate' | + 'user-lock' | + 'user-md' | + 'user-minus' | + 'user-ninja' | + 'user-plus' | + 'user-secret' | + 'user-shield' | + 'user-slash' | + 'user-tag' | + 'user-tie' | + 'user-times' | + 'users' | + 'users-cog' | + 'utensil-spoon' | + 'utensils' | + 'vector-square' | + 'venus' | + 'venus-double' | + 'venus-mars' | + 'vial' | + 'vials' | + 'video' | + 'video-slash' | + 'volleyball-ball' | + 'volume-down' | + 'volume-off' | + 'volume-up' | + 'walking' | + 'wallet' | + 'warehouse' | + 'weight' | + 'weight-hanging' | + 'wheelchair' | + 'wifi' | + 'window-close' | + 'window-maximize' | + 'window-minimize' | + 'window-restore' | + 'wine-glass' | + 'wine-glass-alt' | + 'won-sign' | + 'wrench' | + 'x-ray' | + 'yen-sign'; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-common-types/package.json b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-common-types/package.json new file mode 100644 index 0000000000..d5a2ab4303 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-common-types/package.json @@ -0,0 +1,54 @@ +{ + "description": "The iconic font, CSS, and SVG framework", + "keywords": [ + "font", + "awesome", + "fontawesome", + "icon", + "svg", + "bootstrap" + ], + "homepage": "https://fontawesome.com", + "bugs": { + "url": "http://github.com/FortAwesome/Font-Awesome/issues" + }, + "author": { + "name": "Dave Gandy", + "email": "dave@fontawesome.com", + "web": "http://twitter.com/davegandy" + }, + "contributors": [ + { + "name": "Brian Talbot", + "web": "http://twitter.com/talbs" + }, + { + "name": "Travis Chase", + "web": "http://twitter.com/supercodepoet" + }, + { + "name": "Rob Madole", + "web": "http://twitter.com/robmadole" + }, + { + "name": "Geremia Taglialatela", + "web": "http://twitter.com/gtagliala" + }, + { + "name": "Mike Wilkerson", + "web": "http://twitter.com/mw77" + } + ], + "repository": { + "type": "git", + "url": "https://github.com/FortAwesome/Font-Awesome" + }, + "engines": { + "node": ">=6" + }, + "dependencies": {}, + "version": "0.2.1", + "name": "@fortawesome/fontawesome-common-types", + "license": "MIT", + "types": "./index.d.ts" +} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/LICENSE.txt b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/LICENSE.txt new file mode 100644 index 0000000000..28c1c4bc73 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/LICENSE.txt @@ -0,0 +1,34 @@ +Font Awesome Free License +------------------------- + +Font Awesome Free is free, open source, and GPL friendly. You can use it for +commercial projects, open source projects, or really almost whatever you want. +Full Font Awesome Free license: https://fontawesome.com/license. + +# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) +In the Font Awesome Free download, the CC BY 4.0 license applies to all icons +packaged as SVG and JS file types. + +# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL) +In the Font Awesome Free download, the SIL OLF license applies to all icons +packaged as web and desktop font files. + +# Code: MIT License (https://opensource.org/licenses/MIT) +In the Font Awesome Free download, the MIT license applies to all non-font and +non-icon files. + +# Attribution +Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font +Awesome Free files already contain embedded comments with sufficient +attribution, so you shouldn't need to do anything additional when using these +files normally. + +We've kept attribution comments terse, so we ask that you do not actively work +to remove them from files, especially code. They're a great way for folks to +learn about Font Awesome. + +# Brand Icons +All brand icons are trademarks of their respective owners. The use of these +trademarks does not indicate endorsement of the trademark holder by Font +Awesome, nor vice versa. **Please do not use brand logos for any purpose except +to represent the company, product, or service to which they refer.** diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/README.md b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/README.md new file mode 100644 index 0000000000..2d65a05ff6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/README.md @@ -0,0 +1,27 @@ +# @fortawesome/fontawesome-free-brands - SVG with JavaScript version + +> "I came here to chew bubblegum and install Font Awesome 5 - and I'm all out of bubblegum" + +[![npm](https://img.shields.io/npm/v/@fortawesome/fontawesome-free-brands.svg?style=flat-square)](https://www.npmjs.com/package/@fortawesome/fontawesome-free-brands) + +## Installation + +``` +$ npm i --save @fortawesome/fontawesome-free-brands +``` + +Or + +``` +$ yarn add @fortawesome/fontawesome-free-brands +``` + +## Documentation + +Get started [here](https://fontawesome.com/get-started/svg-with-js). Continue your journey [here](https://fontawesome.com/how-to-use/svg-with-js). + +Or go straight to the [API documentation](https://fontawesome.com/how-to-use/font-awesome-api). + +## Issues and support + +Start with [GitHub issues](https://github.com/FortAwesome/Font-Awesome/issues) and ping us on [Twitter](https://twitter.com/fontawesome) if you need to. diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/fa500px.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/fa500px.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/fa500px.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/fa500px.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/fa500px.js new file mode 100644 index 0000000000..a43508327d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/fa500px.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: '500px', icon: [448, 512, [], "f26e", "M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3.3-16 16.5-21.2 23.9l-.5.6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8zm63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2zM393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4zM213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6.2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAccessibleIcon.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAccessibleIcon.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAccessibleIcon.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAccessibleIcon.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAccessibleIcon.js new file mode 100644 index 0000000000..96cf686c66 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAccessibleIcon.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'accessible-icon', icon: [448, 512, [], "f368", "M423.9 255.8L411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7zm-64.9-154c28.1 0 50.9-22.8 50.9-50.9C409.9 22.8 387.1 0 359 0c-28.1 0-50.9 22.8-50.9 50.9 0 28.1 22.8 50.9 50.9 50.9zM179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAccusoft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAccusoft.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAccusoft.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAccusoft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAccusoft.js new file mode 100644 index 0000000000..93bbb67dc0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAccusoft.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'accusoft', icon: [640, 512, [], "f369", "M482.2 372.1C476.5 365.2 250 75 242.3 65.5c-13.7-17.2 0-16.8 19.2-16.9 9.7-.1 106.3-.6 116.5-.6 24.1-.1 28.7.6 38.4 12.8 2.1 2.7 205.1 245.8 207.2 248.3 5.5 6.7 15.2 19.1 7.2 23.4-2.4 1.3-114.6 47.7-117.8 48.9-10.1 4-17.5 6.8-30.8-9.3m114.7-5.6s-115 50.4-117.5 51.6c-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2-2.3-.3-24.6-4.7-38-7.2m-326-181.3s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3v-1l-51.2-65.8"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAdn.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAdn.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAdn.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAdn.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAdn.js new file mode 100644 index 0000000000..634f259e8b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAdn.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'adn', icon: [496, 512, [], "f170", "M248 167.5l64.9 98.8H183.1l64.9-98.8zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7h30.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAdversal.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAdversal.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAdversal.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAdversal.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAdversal.js new file mode 100644 index 0000000000..ca40066bea --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAdversal.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'adversal', icon: [512, 512, [], "f36a", "M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2zM178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4.4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3zm286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7.4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9zm3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6.4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1.2-.1.3-.1.5zm-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2.4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1zm-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAffiliatetheme.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAffiliatetheme.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAffiliatetheme.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAffiliatetheme.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAffiliatetheme.js new file mode 100644 index 0000000000..7caaa56767 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAffiliatetheme.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'affiliatetheme', icon: [512, 512, [], "f36b", "M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2 29.1 21.6 11.1 96.6-40.2 167.5zm351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9.1-8.5-.3-16.8-1-25z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAlgolia.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAlgolia.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAlgolia.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAlgolia.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAlgolia.js new file mode 100644 index 0000000000..b1822e7a7a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAlgolia.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'algolia', icon: [448, 512, [], "f36c", "M229.3 182.6c-49.3 0-89.2 39.9-89.2 89.2 0 49.3 39.9 89.2 89.2 89.2s89.2-39.9 89.2-89.2c0-49.3-40-89.2-89.2-89.2zm62.7 56.6l-58.9 30.6c-1.8.9-3.8-.4-3.8-2.3V201c0-1.5 1.3-2.7 2.7-2.6 26.2 1 48.9 15.7 61.1 37.1.7 1.3.2 3-1.1 3.7zM389.1 32H58.9C26.4 32 0 58.4 0 90.9V421c0 32.6 26.4 59 58.9 59H389c32.6 0 58.9-26.4 58.9-58.9V90.9C448 58.4 421.6 32 389.1 32zm-202.6 84.7c0-10.8 8.7-19.5 19.5-19.5h45.3c10.8 0 19.5 8.7 19.5 19.5v15.4c0 1.8-1.7 3-3.3 2.5-12.3-3.4-25.1-5.1-38.1-5.1-13.5 0-26.7 1.8-39.4 5.5-1.7.5-3.4-.8-3.4-2.5v-15.8zm-84.4 37l9.2-9.2c7.6-7.6 19.9-7.6 27.5 0l7.7 7.7c1.1 1.1 1 3-.3 4-6.2 4.5-12.1 9.4-17.6 14.9-5.4 5.4-10.4 11.3-14.8 17.4-1 1.3-2.9 1.5-4 .3l-7.7-7.7c-7.6-7.5-7.6-19.8 0-27.4zm127.2 244.8c-70 0-126.6-56.7-126.6-126.6s56.7-126.6 126.6-126.6c70 0 126.6 56.6 126.6 126.6 0 69.8-56.7 126.6-126.6 126.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAmazon.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAmazon.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAmazon.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAmazon.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAmazon.js new file mode 100644 index 0000000000..991914ad14 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAmazon.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'amazon', icon: [448, 512, [], "f270", "M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAmazonPay.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAmazonPay.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAmazonPay.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAmazonPay.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAmazonPay.js new file mode 100644 index 0000000000..b91064b71a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAmazonPay.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'amazon-pay', icon: [611, 512, [], "f42c", "M0 325.2c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7 40.7 20.4 83.2 35.6 127.4 46.3 20.9 5 41.9 9 63.2 11.8 31.5 4.2 63.2 6 95 5.2 17.4-.4 34.8-1.8 52.1-3.8 56.4-6.7 110.9-20.8 163.3-42.8 2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9-2.8 2.8-6.3 5.1-9.6 7.4-30.7 21.1-64.2 36.4-99.6 47.9-24.6 7.9-49.6 13.8-75.1 17.6-17.6 2.6-35.4 4.4-53.2 4.8-.8 0-1.7.2-2.5.3H294c-.8-.1-1.7-.3-2.5-.3-3.6-.2-7.2-.3-10.7-.4-16.9-.7-33.7-2.6-50.4-5.3-27.4-4.5-54.2-11.4-80.4-20.9-54.1-19.6-102.6-48.6-145.6-87-1.8-1.6-3-3.8-4.4-5.7v-2zM158 65c-1.4.2-2.9.4-4.3.6-14 1.7-26.6 6.9-38 15.1-2.4 1.7-4.6 3.5-7.1 5.4-.2-.5-.4-1-.4-1.4-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6H87.8c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3V215c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zm-47.4 41.9c0-1.5.4-2.4 1.7-3.3 13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9-1.2-.9-1.7-1.7-1.7-3.3.1-14.1 0-28.1 0-42.2 0-14 .1-28 0-42.1zM316.3 65c-1 .1-2 .3-2.9.4-9.8.5-19.4 1.7-28.9 4.1-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9 0 .4-.1.9-.2 1.4-.5-.1-.9 0-1.3-.1-10.5-2.5-21.1-4.3-32-4.9-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4.4-.4.9-.7 1.6-1.1.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0 2.7-.1 4.5-1.9 4.8-4.7.1-.9.1-1.9.1-2.8v-106c0-4.3-.2-8.6-.9-12.9-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1zm35 127.7c0 1.3-.4 2.2-1.5 3-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8-6.3-2.5-10.4-6.9-12.4-13.3s-2-13-.1-19.4c2.5-8.3 8.4-13 16.4-15.6 8.1-2.6 16.5-3 24.8-2.2 8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3-.1 4.7-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3-6.8-2.3-13.9-3.3-21-3.9-13.1-1.1-26.2-.5-39.2 1.9-14.3 2.7-27.9 7.3-40 15.6-1.4 1-2.8 2.1-3.7 3.5-.7 1.1-.9 2.8-.5 4 .4 1.5 2.1 1.9 3.6 1.8.7 0 1.5 0 2.2-.1 7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9 4.8.3 9.7 1.4 14.4 2.7 5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1-.4 1-.8 2-1 3-.5 2.9 1.2 4.8 4.1 4.1 1.7-.4 3.6-1.3 4.8-2.5 4.4-4.3 8.9-8.6 12.7-13.4 12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9v-17.3zM479.1 198.9c-12.9-35.7-25.8-71.5-38.7-107.2-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5.5 2.1 1.1 4.1 1.9 6.1 19.6 48.5 39.3 97.1 59.1 145.5 1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3-5.1 1.4-10.2 1.6-15.4 1.1-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8-.1 3.3-.1 6.6 0 9.9.1 5.5 2 8 7.4 8.9 5.6 1 11.3 1.9 16.9 2 17.1.4 30.7-6.5 39.5-21.4 3.5-5.9 6.7-12.1 9.2-18.4 23.7-59.8 47.1-119.7 70.6-179.6.7-1.8 1.3-3.6 1.6-5.5.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0-3.7 0-6.3 1.6-7.7 5.2-.5 1.4-1.1 2.7-1.6 4.1-11.6 33.3-23.2 66.6-34.8 100-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAmilia.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAmilia.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAmilia.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAmilia.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAmilia.js new file mode 100644 index 0000000000..6cbe01e8b6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAmilia.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'amilia', icon: [448, 512, [], "f36d", "M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm-87.9 327.7c0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5V380c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAndroid.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAndroid.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAndroid.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAndroid.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAndroid.js new file mode 100644 index 0000000000..3a7a4bb70c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAndroid.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'android', icon: [448, 512, [], "f17b", "M89.6 204.5v115.8c0 15.4-12.1 27.7-27.5 27.7-15.3 0-30.1-12.4-30.1-27.7V204.5c0-15.1 14.8-27.5 30.1-27.5 15.1 0 27.5 12.4 27.5 27.5zm10.8 157c0 16.4 13.2 29.6 29.6 29.6h19.9l.3 61.1c0 36.9 55.2 36.6 55.2 0v-61.1h37.2v61.1c0 36.7 55.5 36.8 55.5 0v-61.1h20.2c16.2 0 29.4-13.2 29.4-29.6V182.1H100.4v179.4zm248-189.1H99.3c0-42.8 25.6-80 63.6-99.4l-19.1-35.3c-2.8-4.9 4.3-8 6.7-3.8l19.4 35.6c34.9-15.5 75-14.7 108.3 0L297.5 34c2.5-4.3 9.5-1.1 6.7 3.8L285.1 73c37.7 19.4 63.3 56.6 63.3 99.4zm-170.7-55.5c0-5.7-4.6-10.5-10.5-10.5-5.7 0-10.2 4.8-10.2 10.5s4.6 10.5 10.2 10.5c5.9 0 10.5-4.8 10.5-10.5zm113.4 0c0-5.7-4.6-10.5-10.2-10.5-5.9 0-10.5 4.8-10.5 10.5s4.6 10.5 10.5 10.5c5.6 0 10.2-4.8 10.2-10.5zm94.8 60.1c-15.1 0-27.5 12.1-27.5 27.5v115.8c0 15.4 12.4 27.7 27.5 27.7 15.4 0 30.1-12.4 30.1-27.7V204.5c0-15.4-14.8-27.5-30.1-27.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAngellist.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAngellist.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAngellist.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAngellist.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAngellist.js new file mode 100644 index 0000000000..6e62b563d0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAngellist.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'angellist', icon: [448, 512, [], "f209", "M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7zM311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6 33.1-93.7zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8zM140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7.1-7.7 12.7-21.1 20.4-21.1zm184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3.3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7.1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7zm-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAngrycreative.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAngrycreative.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAngrycreative.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAngrycreative.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAngrycreative.js new file mode 100644 index 0000000000..717ad60dd9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAngrycreative.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'angrycreative', icon: [640, 512, [], "f36e", "M640 238.2l-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4 93.1-6.2zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9-12.8 120zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3-126.2 7.7zm-44.3-70.2l-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7 2.7-29.8zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1zm21.1 70.8l5.8-60c-5 13.5-14.7 21.1-27.9 26.6l22.1 33.4zm135.4-45l-7.9-37.8-15.8 39.3 23.7-1.5zm-170.1-74.6l-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8.3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2-56.8 3.7zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1.6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2l-2.9 28.8zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3zm-201.3 8.2l23.8-1.6-8.3-37.6-15.5 39.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAngular.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAngular.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAngular.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAngular.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAngular.js new file mode 100644 index 0000000000..557718dcbe --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAngular.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'angular', icon: [415, 512, [], "f420", "M169.7 268.1h76.2l-38.1-91.6-38.1 91.6zM207.8 32L0 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7L207.8 32zM338 373.8h-48.6l-26.2-65.4H152.6l-26.2 65.4H77.7L207.8 81.5 338 373.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAppStore.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAppStore.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAppStore.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAppStore.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAppStore.js new file mode 100644 index 0000000000..ef65070a5f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAppStore.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'app-store', icon: [512, 512, [], "f36f", "M255.9 120.9l9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5 9.8 5.6 13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4 0-11.3 9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5l8.9 15.7zm-78.7 218l-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5-9.8-5.6-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6zm168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4 0 11.3-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAppStoreIos.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAppStoreIos.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAppStoreIos.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAppStoreIos.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAppStoreIos.js new file mode 100644 index 0000000000..b64efae125 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAppStoreIos.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'app-store-ios', icon: [448, 512, [], "f370", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7c16.1-4.9 29.3-1.1 39.6 11.4L127 384.5zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40zm98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faApper.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faApper.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faApper.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faApper.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faApper.js new file mode 100644 index 0000000000..85608a3bce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faApper.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'apper', icon: [640, 512, [], "f371", "M42.1 239.1c22.2 0 29 2.8 33.5 14.6h.8v-22.9c0-11.3-4.8-15.4-17.9-15.4-11.3 0-14.4 2.5-15.1 12.8H4.8c.3-13.9 1.5-19.1 5.8-24.4C17.9 195 29.5 192 56.7 192c33 0 47.1 5 53.9 18.9 2 4.3 4 15.6 4 23.7v76.3H76.3l1.3-19.1h-1c-5.3 15.6-13.6 20.4-35.5 20.4-30.3 0-41.1-10.1-41.1-37.3 0-25.2 12.3-35.8 42.1-35.8zm17.1 48.1c13.1 0 16.9-3 16.9-13.4 0-9.1-4.3-11.6-19.6-11.6-13.1 0-17.9 3-17.9 12.1-.1 10.4 3.7 12.9 20.6 12.9zm77.8-94.9h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.2 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3H137v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm57.9-60.7h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.3 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3h-39.5v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm53.8-3.8c0-25.4 3.3-37.8 12.3-45.8 8.8-8.1 22.2-11.3 45.1-11.3 42.8 0 55.7 12.8 55.7 55.7v11.1h-75.3c-.3 2-.3 4-.3 4.8 0 16.9 4.5 21.9 20.1 21.9 13.9 0 17.9-3 17.9-13.9h37.5v2.3c0 9.8-2.5 18.9-6.8 24.7-7.3 9.8-19.6 13.6-44.3 13.6-27.5 0-41.6-3.3-50.6-12.3-8.5-8.5-11.3-21.3-11.3-50.8zm76.4-11.6c-.3-1.8-.3-3.3-.3-3.8 0-12.3-3.3-14.6-19.6-14.6-14.4 0-17.1 3-18.1 15.1l-.3 3.3h38.3zm55.6-45.3h38.3l-1.8 19.9h.7c6.8-14.9 14.4-20.2 29.7-20.2 10.8 0 19.1 3.3 23.4 9.3 5.3 7.3 6.8 14.4 6.8 34 0 1.5 0 5 .2 9.3h-35c.3-1.8.3-3.3.3-4 0-15.4-2-19.4-10.3-19.4-6.3 0-10.8 3.3-13.1 9.3-1 3-1 4.3-1 12.3v68h-38.3V192.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faApple.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faApple.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faApple.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faApple.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faApple.js new file mode 100644 index 0000000000..20984f2886 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faApple.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'apple', icon: [376, 512, [], "f179", "M314.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C59.3 141.2 0 184.8 0 273.5c0 26.2 4.8 53.3 14.4 81.2 12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faApplePay.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faApplePay.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faApplePay.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faApplePay.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faApplePay.js new file mode 100644 index 0000000000..b7ba55b553 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faApplePay.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'apple-pay', icon: [640, 512, [], "f415", "M116.9 158.5c-7.5 8.9-19.5 15.9-31.5 14.9-1.5-12 4.4-24.8 11.3-32.6 7.5-9.1 20.6-15.6 31.3-16.1 1.2 12.4-3.7 24.7-11.1 33.8m10.9 17.2c-17.4-1-32.3 9.9-40.5 9.9-8.4 0-21-9.4-34.8-9.1-17.9.3-34.5 10.4-43.6 26.5-18.8 32.3-4.9 80 13.3 106.3 8.9 13 19.5 27.3 33.5 26.8 13.3-.5 18.5-8.6 34.5-8.6 16.1 0 20.8 8.6 34.8 8.4 14.5-.3 23.6-13 32.5-26 10.1-14.8 14.3-29.1 14.5-29.9-.3-.3-28-10.9-28.3-42.9-.3-26.8 21.9-39.5 22.9-40.3-12.5-18.6-32-20.6-38.8-21.1m100.4-36.2v194.9h30.3v-66.6h41.9c38.3 0 65.1-26.3 65.1-64.3s-26.4-64-64.1-64h-73.2zm30.3 25.5h34.9c26.3 0 41.3 14 41.3 38.6s-15 38.8-41.4 38.8h-34.8V165zm162.2 170.9c19 0 36.6-9.6 44.6-24.9h.6v23.4h28v-97c0-28.1-22.5-46.3-57.1-46.3-32.1 0-55.9 18.4-56.8 43.6h27.3c2.3-12 13.4-19.9 28.6-19.9 18.5 0 28.9 8.6 28.9 24.5v10.8l-37.8 2.3c-35.1 2.1-54.1 16.5-54.1 41.5.1 25.2 19.7 42 47.8 42zm8.2-23.1c-16.1 0-26.4-7.8-26.4-19.6 0-12.3 9.9-19.4 28.8-20.5l33.6-2.1v11c0 18.2-15.5 31.2-36 31.2zm102.5 74.6c29.5 0 43.4-11.3 55.5-45.4L640 193h-30.8l-35.6 115.1h-.6L537.4 193h-31.6L557 334.9l-2.8 8.6c-4.6 14.6-12.1 20.3-25.5 20.3-2.4 0-7-.3-8.9-.5v23.4c1.8.4 9.3.7 11.6.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAsymmetrik.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAsymmetrik.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAsymmetrik.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAsymmetrik.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAsymmetrik.js new file mode 100644 index 0000000000..d1d3377781 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAsymmetrik.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'asymmetrik', icon: [576, 512, [], "f372", "M517.5 309.2c38.8-40 58.1-80 58.5-116.1.8-65.5-59.4-118.2-169.4-135C277.9 38.4 118.1 73.6 0 140.5 52 114 110.6 92.3 170.7 82.3c74.5-20.5 153-25.4 221.3-14.8C544.5 91.3 588.8 195 490.8 299.2c-10.2 10.8-22 21.1-35 30.6L304.9 103.4 114.7 388.9c-65.6-29.4-76.5-90.2-19.1-151.2 20.8-22.2 48.3-41.9 79.5-58.1 20-12.2 39.7-22.6 62-30.7-65.1 20.3-122.7 52.9-161.6 92.9-27.7 28.6-41.4 57.1-41.7 82.9-.5 35.1 23.4 65.1 68.4 83l-34.5 51.7h101.6l22-34.4c22.2 1 45.3 0 68.6-2.7l-22.8 37.1h135.5L340 406.3c18.6-5.3 36.9-11.5 54.5-18.7l45.9 71.8H542L468.6 349c18.5-12.1 35-25.5 48.9-39.8zm-187.6 80.5l-25-40.6-32.7 53.3c-23.4 3.5-46.7 5.1-69.2 4.4l101.9-159.3 78.7 123c-17.2 7.4-35.3 13.9-53.7 19.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAudible.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAudible.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAudible.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAudible.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAudible.js new file mode 100644 index 0000000000..13a6746fff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAudible.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'audible', icon: [640, 512, [], "f373", "M640 199.9v54l-320 200L0 254v-54l320 200 320-200.1zm-194.5 72l47.1-29.4c-37.2-55.8-100.7-92.6-172.7-92.6-72 0-135.5 36.7-172.6 92.4h.3c2.5-2.3 5.1-4.5 7.7-6.7 89.7-74.4 219.4-58.1 290.2 36.3zm-220.1 18.8c16.9-11.9 36.5-18.7 57.4-18.7 34.4 0 65.2 18.4 86.4 47.6l45.4-28.4c-20.9-29.9-55.6-49.5-94.8-49.5-38.9 0-73.4 19.4-94.4 49zM103.6 161.1c131.8-104.3 318.2-76.4 417.5 62.1l.7 1 48.8-30.4C517.1 112.1 424.8 58.1 319.9 58.1c-103.5 0-196.6 53.5-250.5 135.6 9.9-10.5 22.7-23.5 34.2-32.6zm467 32.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAutoprefixer.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAutoprefixer.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAutoprefixer.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAutoprefixer.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAutoprefixer.js new file mode 100644 index 0000000000..595e3f9fab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAutoprefixer.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'autoprefixer', icon: [640, 512, [], "f41c", "M318.4 16l-161 480h77.5l25.4-81.4h119.5L405 496h77.5L318.4 16zm-40.3 341.9l41.2-130.4h1.5l40.9 130.4h-83.6zM640 405l-10-31.4L462.1 358l19.4 56.5L640 405zm-462.1-47L10 373.7 0 405l158.5 9.4 19.4-56.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAvianex.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAvianex.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAvianex.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAvianex.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAvianex.js new file mode 100644 index 0000000000..bb7c8aaadb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAvianex.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'avianex', icon: [512, 512, [], "f374", "M453.1 32h-312c-38.9 0-76.2 31.2-83.3 69.7L1.2 410.3C-5.9 448.8 19.9 480 58.9 480h312c38.9 0 76.2-31.2 83.3-69.7l56.7-308.5c7-38.6-18.8-69.8-57.8-69.8zm-58.2 347.3l-32 13.5-115.4-110c-14.7 10-29.2 19.5-41.7 27.1l22.1 64.2-17.9 12.7-40.6-61-52.4-48.1 15.7-15.4 58 31.1c9.3-10.5 20.8-22.6 32.8-34.9L203 228.9l-68.8-99.8 18.8-28.9 8.9-4.8L265 207.8l4.9 4.5c19.4-18.8 33.8-32.4 33.8-32.4 7.7-6.5 21.5-2.9 30.7 7.9 9 10.5 10.6 24.7 2.7 31.3-1.8 1.3-15.5 11.4-35.3 25.6l4.5 7.3 94.9 119.4-6.3 7.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAviato.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAviato.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAviato.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAviato.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAviato.js new file mode 100644 index 0000000000..733271d8e0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAviato.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'aviato', icon: [640, 512, [], "f421", "M107.2 283.5l-19-41.8H36.1l-19 41.8H0l62.2-131.4 62.2 131.4h-17.2zm-45-98.1l-19.6 42.5h39.2l-19.6-42.5zm112.7 102.4l-62.2-131.4h17.1l45.1 96 45.1-96h17l-62.1 131.4zm80.6-4.3V156.4H271v127.1h-15.5zm209.1-115.6v115.6h-17.3V167.9h-41.2v-11.5h99.6v11.5h-41.1zM640 218.8c0 9.2-1.7 17.8-5.1 25.8-3.4 8-8.2 15.1-14.2 21.1-6 6-13.1 10.8-21.1 14.2-8 3.4-16.6 5.1-25.8 5.1s-17.8-1.7-25.8-5.1c-8-3.4-15.1-8.2-21.1-14.2-6-6-10.8-13-14.2-21.1-3.4-8-5.1-16.6-5.1-25.8s1.7-17.8 5.1-25.8c3.4-8 8.2-15.1 14.2-21.1 6-6 13-8.4 21.1-11.9 8-3.4 16.6-5.1 25.8-5.1s17.8 1.7 25.8 5.1c8 3.4 15.1 5.8 21.1 11.9 6 6 10.7 13.1 14.2 21.1 3.4 8 5.1 16.6 5.1 25.8zm-15.5 0c0-7.3-1.3-14-3.9-20.3-2.6-6.3-6.2-11.7-10.8-16.3-4.6-4.6-10-8.2-16.2-10.9-6.2-2.7-12.8-4-19.8-4s-13.6 1.3-19.8 4c-6.2 2.7-11.6 6.3-16.2 10.9-4.6 4.6-8.2 10-10.8 16.3-2.6 6.3-3.9 13.1-3.9 20.3 0 7.3 1.3 14 3.9 20.3 2.6 6.3 6.2 11.7 10.8 16.3 4.6 4.6 10 8.2 16.2 10.9 6.2 2.7 12.8 4 19.8 4s13.6-1.3 19.8-4c6.2-2.7 11.6-6.3 16.2-10.9 4.6-4.6 8.2-10 10.8-16.3 2.6-6.3 3.9-13.1 3.9-20.3zm-94.8 96.7v-6.3l88.9-10-242.9 13.4c.6-2.2 1.1-4.6 1.4-7.2.3-2 .5-4.2.6-6.5l64.8-8.1-64.9 1.9c0-.4-.1-.7-.1-1.1-2.8-17.2-25.5-23.7-25.5-23.7l-1.1-26.3h23.8l19 41.8h17.1L348.6 152l-62.2 131.4h17.1l19-41.8h23.6L345 268s-22.7 6.5-25.5 23.7c-.1.3-.1.7-.1 1.1l-64.9-1.9 64.8 8.1c.1 2.3.3 4.4.6 6.5.3 2.6.8 5 1.4 7.2L78.4 299.2l88.9 10v6.3c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4 0-6.2-4.6-11.3-10.5-12.2v-5.8l80.3 9v5.4c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-4.9l28.4 3.2v23.7h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9V323l38.3 4.3c8.1 11.4 19 13.6 19 13.6l-.1 6.7-5.1.2-.1 12.1h4.1l.1-5h5.2l.1 5h4.1l-.1-12.1-5.1-.2-.1-6.7s10.9-2.1 19-13.6l38.3-4.3v23.2h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9v-23.7l28.4-3.2v4.9c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-5.4l80.3-9v5.8c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4-.2-6.3-4.7-11.4-10.7-12.3zm-200.8-87.6l19.6-42.5 19.6 42.5h-17.9l-1.7-40.3-1.7 40.3h-17.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAws.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAws.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAws.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAws.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAws.js new file mode 100644 index 0000000000..f74f284e36 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faAws.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'aws', icon: [512, 512, [], "f375", "M261.2 136.1c-14 57.5-13.1 54.4-25.8 107-1.6 6.5-4.1 8.4-10.7 8.5h-14.4c-5.8-.1-8.2-1.6-9.9-7.3-12.3-39.4-28.8-94.1-39.9-130.7-4.1-13.5-1.4-13.2 9.3-12.9 3.7.1 7.3 0 11 0 5.1.1 7.7 2 9.1 7.1 3.6 12.9 6 22.8 26.6 104.1.4 1.6.9 3.1 1.4 4.6h1.1c.5-2 1.1-3.9 1.6-5.9 7.8-32.9 15.5-65.9 23.3-98.8 2.4-10.2 6.7-11.2 17-11.2h7.6c6.9.1 9 1.5 10.7 8.3 6 23.4 23.5 101.8 26.7 110.4 5.1-18.3-1.8 7.9 28.5-109 2.1-8.1 4.1-9.7 12.3-9.7h12.7c5.4.1 7 1.8 5.7 7.1-2.4 9.5-2.9 9.9-41.3 132.9-3.1 9.9-4.2 10.8-14.6 10.8h-10.6c-7.3 0-9.2-1.3-11-8.4-4.3-16.2-23.3-95.7-26.4-106.9zM125.4 247.3c4.2 5.8 8.1 6.3 14.1 2.4l6.3-4.2c6.8-4.5 7.3-6.3 3.6-13.5-4.3-8.4-6.4-17.3-6.3-26.9 0-3.1.6-55.7-.9-66.8-2.7-19.3-12.5-32.8-31.7-38.7-10.7-3.4-21.7-3.3-32.7-3-15.1.4-29.4 4.6-42.8 11.4-1.8.9-3.7 3.1-4.1 4.9-.8 3.9-1.1 8.1-.7 12.1.6 5.9 2.6 7 8.2 5.1 5.1-1.7 10-3.9 15.1-5.4 14.5-4.4 29.2-6.4 44.1-1.7 7.1 2.2 11.7 6.9 14.3 13.8 3 7.9 2.4 16.1 2.4 24.2 0 5.5-.1 5.5-5.5 4.5-13.9-2.6-27.7-5-41.9-3.1-15.2 2.1-28.6 7.3-38.2 20-9.1 12-10 25.6-7.4 39.5 2.8 15 11.8 25.7 26.4 30.4 20.6 6.7 40.1 3.3 57.7-9.5 3.8-2.8 7.2-6.2 11.1-9.5 3.1 5 5.8 9.7 8.9 14zm-15.3-61.6c3 .4 4.5 1.9 4.3 5.1-.2 3.8.1 7.6-.3 11.4-1.2 11.7-7.7 19.7-17.9 24.9-8.2 4.2-16.9 5.8-26.1 5-15.2-1.3-21-13.1-19.6-26.3C51.8 193.2 59 186.2 72 184c13.8-2.4 16-1.1 38.1 1.7zm348.8 65.1c21.3-8.6 32.9-26.2 29.2-50-2.2-14.6-11.8-24.2-25.2-29.5-14.7-5.9-33.8-10.3-48.1-18.2-4.4-2.4-7.4-6.3-7.6-11.9-.4-11.1 4.2-17.2 15.4-19.8 9.3-2.1 18.8-2.2 28.1-.4 7.3 1.4 14.3 4.2 21.4 6.3 2.8.9 5.9 2.1 7.8-1.6 3.8-7.3.4-18.7-7.3-21.8-22.5-9-45.5-11.6-68.2-1.6-14.6 6.4-24.6 17.4-26 34.2-1.6 19.3 6.9 33.4 24.1 41.7 7.7 3.7 16.1 5.9 24.2 8.9 8.1 3 16.2 5.8 24.1 9.1 12.3 5.3 11.6 24.2 1.2 30-27.7 15.3-64.9-2.4-69.2-3.8-3.3-1.1-5.3.2-6.3 3.7-3 11.3.7 18.8 11.6 22.7 21.7 7.9 49.6 10.5 70.8 2zM296 413.5c50.8-5.8 98.7-20.8 142.7-47 8-4.7 15.5-10.3 23.1-15.7 7.3-5.2 3.2-18.4-11.3-12.2-54.4 23.2-111.2 36.1-170.2 38.9-30.5 1.5-60.8-.3-91.1-4.7-63.1-9.2-122.4-29.2-177.6-61.2-2.1-1.2-4.2-2.5-6.5-3-4.9-1.1-7.7 4.7-2.4 9.7 24 22.1 50.3 40.8 79.1 55.7 53.7 27.7 110.5 42.7 171.2 42 14.4-.8 28.8-.9 43-2.5zm174.7-92.2c14.8.8 19.4 5.9 15.7 20.2-3.8 14.8-9.3 29.2-13.9 43.8-.9 2.9-4.2 6.3-.8 8.8 3.7 2.6 6.5-1 9-3.3 10.2-9.5 17.4-21 22.5-33.8 5.4-13.4 9.3-27.2 8.7-41.9-.2-6.2-1.8-8.8-7.8-10.5-5.4-1.5-11-2.8-16.5-3.2-21.6-1.8-42.5.5-62 10.6-3.1 1.6-6 3.7-8.7 5.9-1.1.9-3.2 5.3 2.4 6.1 1.9.3 3.9-.1 5.9-.3 16.9-1.6 28.6-3.3 45.5-2.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBandcamp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBandcamp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBandcamp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBandcamp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBandcamp.js new file mode 100644 index 0000000000..addf31eccc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBandcamp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'bandcamp', icon: [496, 512, [], "f2d5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm48.2 326.1h-181L199.9 178h181l-84.7 156.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBehance.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBehance.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBehance.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBehance.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBehance.js new file mode 100644 index 0000000000..dc2bf505be --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBehance.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'behance', icon: [576, 512, [], "f1b4", "M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBehanceSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBehanceSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBehanceSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBehanceSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBehanceSquare.js new file mode 100644 index 0000000000..2e319b0e75 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBehanceSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'behance-square', icon: [448, 512, [], "f1b5", "M186.5 293c0 19.3-14 25.4-31.2 25.4h-45.1v-52.9h46c18.6.1 30.3 7.8 30.3 27.5zm-7.7-82.3c0-17.7-13.7-21.9-28.9-21.9h-39.6v44.8H153c15.1 0 25.8-6.6 25.8-22.9zm132.3 23.2c-18.3 0-30.5 11.4-31.7 29.7h62.2c-1.7-18.5-11.3-29.7-30.5-29.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM271.7 185h77.8v-18.9h-77.8V185zm-43 110.3c0-24.1-11.4-44.9-35-51.6 17.2-8.2 26.2-17.7 26.2-37 0-38.2-28.5-47.5-61.4-47.5H68v192h93.1c34.9-.2 67.6-16.9 67.6-55.9zM380 280.5c0-41.1-24.1-75.4-67.6-75.4-42.4 0-71.1 31.8-71.1 73.6 0 43.3 27.3 73 71.1 73 33.2 0 54.7-14.9 65.1-46.8h-33.7c-3.7 11.9-18.6 18.1-30.2 18.1-22.4 0-34.1-13.1-34.1-35.3h100.2c.1-2.3.3-4.8.3-7.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBimobject.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBimobject.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBimobject.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBimobject.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBimobject.js new file mode 100644 index 0000000000..75ac64eef5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBimobject.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'bimobject', icon: [448, 512, [], "f378", "M416 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm-64 257.4c0 49.4-11.4 82.6-103.8 82.6h-16.9c-44.1 0-62.4-14.9-70.4-38.8h-.9V368H96V136h64v74.7h1.1c4.6-30.5 39.7-38.8 69.7-38.8h17.3c92.4 0 103.8 33.1 103.8 82.5v35zm-64-28.9v22.9c0 21.7-3.4 33.8-38.4 33.8h-45.3c-28.9 0-44.1-6.5-44.1-35.7v-19c0-29.3 15.2-35.7 44.1-35.7h45.3c35-.2 38.4 12 38.4 33.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBitbucket.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBitbucket.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBitbucket.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBitbucket.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBitbucket.js new file mode 100644 index 0000000000..f54bb7b9cd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBitbucket.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'bitbucket', icon: [512, 512, [], "f171", "M23.1 32C14.2 31.9 7 38.9 6.9 47.8c0 .9.1 1.8.2 2.8L74.9 462c1.7 10.4 10.7 18 21.2 18.1h325.1c7.9.1 14.7-5.6 16-13.4l67.8-416c1.4-8.7-4.5-16.9-13.2-18.3-.9-.1-1.8-.2-2.8-.2L23.1 32zm285.3 297.3H204.6l-28.1-146.8h157l-25.1 146.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBitcoin.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBitcoin.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBitcoin.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBitcoin.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBitcoin.js new file mode 100644 index 0000000000..3eefeab438 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBitcoin.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'bitcoin', icon: [512, 512, [], "f379", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBity.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBity.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBity.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBity.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBity.js new file mode 100644 index 0000000000..8d3723b475 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBity.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'bity', icon: [496, 512, [], "f37a", "M78.4 67.2C173.8-22 324.5-24 421.5 71c14.3 14.1-6.4 37.1-22.4 21.5-84.8-82.4-215.8-80.3-298.9-3.2-16.3 15.1-36.5-8.3-21.8-22.1zm98.9 418.6c19.3 5.7 29.3-23.6 7.9-30C73 421.9 9.4 306.1 37.7 194.8c5-19.6-24.9-28.1-30.2-7.1-32.1 127.4 41.1 259.8 169.8 298.1zm148.1-2c121.9-40.2 192.9-166.9 164.4-291-4.5-19.7-34.9-13.8-30 7.9 24.2 107.7-37.1 217.9-143.2 253.4-21.2 7-10.4 36 8.8 29.7zm-62.9-79l.2-71.8c0-8.2-6.6-14.8-14.8-14.8-8.2 0-14.8 6.7-14.8 14.8l-.2 71.8c0 8.2 6.6 14.8 14.8 14.8s14.8-6.6 14.8-14.8zm71-269c2.1 90.9 4.7 131.9-85.5 132.5-92.5-.7-86.9-44.3-85.5-132.5 0-21.8-32.5-19.6-32.5 0v71.6c0 69.3 60.7 90.9 118 90.1 57.3.8 118-20.8 118-90.1v-71.6c0-19.6-32.5-21.8-32.5 0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBlackTie.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBlackTie.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBlackTie.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBlackTie.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBlackTie.js new file mode 100644 index 0000000000..92d12b899f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBlackTie.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'black-tie', icon: [448, 512, [], "f27e", "M0 32v448h448V32H0zm316.5 325.2L224 445.9l-92.5-88.7 64.5-184-64.5-86.6h184.9L252 173.2l64.5 184z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBlackberry.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBlackberry.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBlackberry.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBlackberry.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBlackberry.js new file mode 100644 index 0000000000..ebe40f15d4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBlackberry.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'blackberry', icon: [512, 512, [], "f37b", "M166 116.9c0 23.4-16.4 49.1-72.5 49.1H23.4l21-88.8h67.8c42.1 0 53.8 23.3 53.8 39.7zm126.2-39.7h-67.8L205.7 166h70.1c53.8 0 70.1-25.7 70.1-49.1.1-16.4-11.6-39.7-53.7-39.7zM88.8 208.1H21L0 296.9h70.1c56.1 0 72.5-23.4 72.5-49.1 0-16.3-11.7-39.7-53.8-39.7zm180.1 0h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 0-16.3-11.7-39.7-53.7-39.7zm189.3-53.8h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7zm-28 137.9h-67.8L343.7 381h70.1c56.1 0 70.1-23.4 70.1-49.1 0-16.3-11.6-39.7-53.7-39.7zM240.8 346H173l-18.7 88.8h70.1c56.1 0 70.1-25.7 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBlogger.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBlogger.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBlogger.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBlogger.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBlogger.js new file mode 100644 index 0000000000..6c4bc3e8b8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBlogger.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'blogger', icon: [448, 512, [], "f37c", "M162.4 196c4.8-4.9 6.2-5.1 36.4-5.1 27.2 0 28.1.1 32.1 2.1 5.8 2.9 8.3 7 8.3 13.6 0 5.9-2.4 10-7.6 13.4-2.8 1.8-4.5 1.9-31.1 2.1-16.4.1-29.5-.2-31.5-.8-10.3-2.9-14.1-17.7-6.6-25.3zm61.4 94.5c-53.9 0-55.8.2-60.2 4.1-3.5 3.1-5.7 9.4-5.1 13.9.7 4.7 4.8 10.1 9.2 12 2.2 1 14.1 1.7 56.3 1.2l47.9-.6 9.2-1.5c9-5.1 10.5-17.4 3.1-24.4-5.3-4.7-5-4.7-60.4-4.7zm223.4 130.1c-3.5 28.4-23 50.4-51.1 57.5-7.2 1.8-9.7 1.9-172.9 1.8-157.8 0-165.9-.1-172-1.8-8.4-2.2-15.6-5.5-22.3-10-5.6-3.8-13.9-11.8-17-16.4-3.8-5.6-8.2-15.3-10-22C.1 423 0 420.3 0 256.3 0 93.2 0 89.7 1.8 82.6 8.1 57.9 27.7 39 53 33.4c7.3-1.6 332.1-1.9 340-.3 21.2 4.3 37.9 17.1 47.6 36.4 7.7 15.3 7-1.5 7.3 180.6.2 115.8 0 164.5-.7 170.5zm-85.4-185.2c-1.1-5-4.2-9.6-7.7-11.5-1.1-.6-8-1.3-15.5-1.7-12.4-.6-13.8-.8-17.8-3.1-6.2-3.6-7.9-7.6-8-18.3 0-20.4-8.5-39.4-25.3-56.5-12-12.2-25.3-20.5-40.6-25.1-3.6-1.1-11.8-1.5-39.2-1.8-42.9-.5-52.5.4-67.1 6.2-27 10.7-46.3 33.4-53.4 62.4-1.3 5.4-1.6 14.2-1.9 64.3-.4 62.8 0 72.1 4 84.5 9.7 30.7 37.1 53.4 64.6 58.4 9.2 1.7 122.2 2.1 133.7.5 20.1-2.7 35.9-10.8 50.7-25.9 10.7-10.9 17.4-22.8 21.8-38.5 3.2-10.9 2.9-88.4 1.7-93.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBloggerB.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBloggerB.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBloggerB.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBloggerB.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBloggerB.js new file mode 100644 index 0000000000..0bca323635 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBloggerB.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'blogger-b', icon: [448, 512, [], "f37d", "M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBluetooth.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBluetooth.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBluetooth.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBluetooth.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBluetooth.js new file mode 100644 index 0000000000..9c5418232b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBluetooth.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'bluetooth', icon: [448, 512, [], "f293", "M292.6 171.1L249.7 214l-.3-86 43.2 43.1m-43.2 219.8l43.1-43.1-42.9-42.9-.2 86zM416 259.4C416 465 344.1 512 230.9 512S32 465 32 259.4 115.4 0 228.6 0 416 53.9 416 259.4zm-158.5 0l79.4-88.6L211.8 36.5v176.9L138 139.6l-27 26.9 92.7 93-92.7 93 26.9 26.9 73.8-73.8 2.3 170 127.4-127.5-83.9-88.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBluetoothB.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBluetoothB.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBluetoothB.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBluetoothB.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBluetoothB.js new file mode 100644 index 0000000000..edb3ffb2da --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBluetoothB.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'bluetooth-b', icon: [320, 512, [], "f294", "M196.48 260.023l92.626-103.333L143.125 0v206.33l-86.111-86.111-31.406 31.405 108.061 108.399L25.608 368.422l31.406 31.405 86.111-86.111L145.84 512l148.552-148.644-97.912-103.333zm40.86-102.996l-49.977 49.978-.338-100.295 50.315 50.317zM187.363 313.04l49.977 49.978-50.315 50.316.338-100.294z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBtc.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBtc.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBtc.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBtc.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBtc.js new file mode 100644 index 0000000000..ed67892676 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBtc.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'btc', icon: [384, 512, [], "f15a", "M310.204 242.638c27.73-14.18 45.377-39.39 41.28-81.3-5.358-57.351-52.458-76.573-114.85-81.929V0h-48.528v77.203c-12.605 0-25.525.315-38.444.63V0h-48.528v79.409c-17.842.539-38.622.276-97.37 0v51.678c38.314-.678 58.417-3.14 63.023 21.427v217.429c-2.925 19.492-18.524 16.685-53.255 16.071L3.765 443.68c88.481 0 97.37.315 97.37.315V512h48.528v-67.06c13.234.315 26.154.315 38.444.315V512h48.528v-68.005c81.299-4.412 135.647-24.894 142.895-101.467 5.671-61.446-23.32-88.862-69.326-99.89zM150.608 134.553c27.415 0 113.126-8.507 113.126 48.528 0 54.515-85.71 48.212-113.126 48.212v-96.74zm0 251.776V279.821c32.772 0 133.127-9.138 133.127 53.255-.001 60.186-100.355 53.253-133.127 53.253z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBuromobelexperte.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBuromobelexperte.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBuromobelexperte.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBuromobelexperte.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBuromobelexperte.js new file mode 100644 index 0000000000..1d30b03185 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBuromobelexperte.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'buromobelexperte', icon: [448, 512, [], "f37f", "M0 32v128h128V32H0zm120 120H8V40h112v112zm40-120v128h128V32H160zm120 120H168V40h112v112zm40-120v128h128V32H320zm120 120H328V40h112v112zM0 192v128h128V192H0zm120 120H8V200h112v112zm40-120v128h128V192H160zm120 120H168V200h112v112zm40-120v128h128V192H320zm120 120H328V200h112v112zM0 352v128h128V352H0zm120 120H8V360h112v112zm40-120v128h128V352H160zm120 120H168V360h112v112zm40-120v128h128V352H320z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBuysellads.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBuysellads.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBuysellads.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBuysellads.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBuysellads.js new file mode 100644 index 0000000000..446a133672 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faBuysellads.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'buysellads', icon: [448, 512, [], "f20d", "M224 150.7l42.9 160.7h-85.8L224 150.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-65.3 325.3l-94.5-298.7H159.8L65.3 405.3H156l111.7-91.6 24.2 91.6h90.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcAmazonPay.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcAmazonPay.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcAmazonPay.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcAmazonPay.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcAmazonPay.js new file mode 100644 index 0000000000..3acfaeada8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcAmazonPay.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'cc-amazon-pay', icon: [576, 512, [], "f42d", "M124.7 201.8c.1-11.8 0-23.5 0-35.3v-35.3c0-1.3.4-2 1.4-2.7 11.5-8 24.1-12.1 38.2-11.1 12.5.9 22.7 7 28.1 21.7 3.3 8.9 4.1 18.2 4.1 27.7 0 8.7-.7 17.3-3.4 25.6-5.7 17.8-18.7 24.7-35.7 23.9-11.7-.5-21.9-5-31.4-11.7-.9-.8-1.4-1.6-1.3-2.8zm154.9 14.6c4.6 1.8 9.3 2 14.1 1.5 11.6-1.2 21.9-5.7 31.3-12.5.9-.6 1.3-1.3 1.3-2.5-.1-3.9 0-7.9 0-11.8 0-4-.1-8 0-12 0-1.4-.4-2-1.8-2.2-7-.9-13.9-2.2-20.9-2.9-7-.6-14-.3-20.8 1.9-6.7 2.2-11.7 6.2-13.7 13.1-1.6 5.4-1.6 10.8.1 16.2 1.6 5.5 5.2 9.2 10.4 11.2zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zm-207.5 23.9c.4 1.7.9 3.4 1.6 5.1 16.5 40.6 32.9 81.3 49.5 121.9 1.4 3.5 1.7 6.4.2 9.9-2.8 6.2-4.9 12.6-7.8 18.7-2.6 5.5-6.7 9.5-12.7 11.2-4.2 1.1-8.5 1.3-12.9.9-2.1-.2-4.2-.7-6.3-.8-2.8-.2-4.2 1.1-4.3 4-.1 2.8-.1 5.6 0 8.3.1 4.6 1.6 6.7 6.2 7.5 4.7.8 9.4 1.6 14.2 1.7 14.3.3 25.7-5.4 33.1-17.9 2.9-4.9 5.6-10.1 7.7-15.4 19.8-50.1 39.5-100.3 59.2-150.5.6-1.5 1.1-3 1.3-4.6.4-2.4-.7-3.6-3.1-3.7-5.6-.1-11.1 0-16.7 0-3.1 0-5.3 1.4-6.4 4.3-.4 1.1-.9 2.3-1.3 3.4l-29.1 83.7c-2.1 6.1-4.2 12.1-6.5 18.6-.4-.9-.6-1.4-.8-1.9-10.8-29.9-21.6-59.9-32.4-89.8-1.7-4.7-3.5-9.5-5.3-14.2-.9-2.5-2.7-4-5.4-4-6.4-.1-12.8-.2-19.2-.1-2.2 0-3.3 1.6-2.8 3.7zM242.4 206c1.7 11.7 7.6 20.8 18 26.6 9.9 5.5 20.7 6.2 31.7 4.6 12.7-1.9 23.9-7.3 33.8-15.5.4-.3.8-.6 1.4-1 .5 3.2.9 6.2 1.5 9.2.5 2.6 2.1 4.3 4.5 4.4 4.6.1 9.1.1 13.7 0 2.3-.1 3.8-1.6 4-3.9.1-.8.1-1.6.1-2.3v-88.8c0-3.6-.2-7.2-.7-10.8-1.6-10.8-6.2-19.7-15.9-25.4-5.6-3.3-11.8-5-18.2-5.9-3-.4-6-.7-9.1-1.1h-10c-.8.1-1.6.3-2.5.3-8.2.4-16.3 1.4-24.2 3.5-5.1 1.3-10 3.2-15 4.9-3 1-4.5 3.2-4.4 6.5.1 2.8-.1 5.6 0 8.3.1 4.1 1.8 5.2 5.7 4.1 6.5-1.7 13.1-3.5 19.7-4.8 10.3-1.9 20.7-2.7 31.1-1.2 5.4.8 10.5 2.4 14.1 7 3.1 4 4.2 8.8 4.4 13.7.3 6.9.2 13.9.3 20.8 0 .4-.1.7-.2 1.2-.4 0-.8 0-1.1-.1-8.8-2.1-17.7-3.6-26.8-4.1-9.5-.5-18.9.1-27.9 3.2-10.8 3.8-19.5 10.3-24.6 20.8-4.1 8.3-4.6 17-3.4 25.8zM98.7 106.9v175.3c0 .8 0 1.7.1 2.5.2 2.5 1.7 4.1 4.1 4.2 5.9.1 11.8.1 17.7 0 2.5 0 4-1.7 4.1-4.1.1-.8.1-1.7.1-2.5v-60.7c.9.7 1.4 1.2 1.9 1.6 15 12.5 32.2 16.6 51.1 12.9 17.1-3.4 28.9-13.9 36.7-29.2 5.8-11.6 8.3-24.1 8.7-37 .5-14.3-1-28.4-6.8-41.7-7.1-16.4-18.9-27.3-36.7-30.9-2.7-.6-5.5-.8-8.2-1.2h-7c-1.2.2-2.4.3-3.6.5-11.7 1.4-22.3 5.8-31.8 12.7-2 1.4-3.9 3-5.9 4.5-.1-.5-.3-.8-.4-1.2-.4-2.3-.7-4.6-1.1-6.9-.6-3.9-2.5-5.5-6.4-5.6h-9.7c-5.9-.1-6.9 1-6.9 6.8zM493.6 339c-2.7-.7-5.1 0-7.6 1-43.9 18.4-89.5 30.2-136.8 35.8-14.5 1.7-29.1 2.8-43.7 3.2-26.6.7-53.2-.8-79.6-4.3-17.8-2.4-35.5-5.7-53-9.9-37-8.9-72.7-21.7-106.7-38.8-8.8-4.4-17.4-9.3-26.1-14-3.8-2.1-6.2-1.5-8.2 2.1v1.7c1.2 1.6 2.2 3.4 3.7 4.8 36 32.2 76.6 56.5 122 72.9 21.9 7.9 44.4 13.7 67.3 17.5 14 2.3 28 3.8 42.2 4.5 3 .1 6 .2 9 .4.7 0 1.4.2 2.1.3h17.7c.7-.1 1.4-.3 2.1-.3 14.9-.4 29.8-1.8 44.6-4 21.4-3.2 42.4-8.1 62.9-14.7 29.6-9.6 57.7-22.4 83.4-40.1 2.8-1.9 5.7-3.8 8-6.2 4.3-4.4 2.3-10.4-3.3-11.9zm50.4-27.7c-.8-4.2-4-5.8-7.6-7-5.7-1.9-11.6-2.8-17.6-3.3-11-.9-22-.4-32.8 1.6-12 2.2-23.4 6.1-33.5 13.1-1.2.8-2.4 1.8-3.1 3-.6.9-.7 2.3-.5 3.4.3 1.3 1.7 1.6 3 1.5.6 0 1.2 0 1.8-.1l19.5-2.1c9.6-.9 19.2-1.5 28.8-.8 4.1.3 8.1 1.2 12 2.2 4.3 1.1 6.2 4.4 6.4 8.7.3 6.7-1.2 13.1-2.9 19.5-3.5 12.9-8.3 25.4-13.3 37.8-.3.8-.7 1.7-.8 2.5-.4 2.5 1 4 3.4 3.5 1.4-.3 3-1.1 4-2.1 3.7-3.6 7.5-7.2 10.6-11.2 10.7-13.8 17-29.6 20.7-46.6.7-3 1.2-6.1 1.7-9.1.2-4.7.2-9.6.2-14.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcAmex.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcAmex.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcAmex.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcAmex.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcAmex.js new file mode 100644 index 0000000000..0a1253164f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcAmex.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'cc-amex', icon: [576, 512, [], "f1f3", "M576 255.4c-37.9-.2-44.2-.9-54.5 5v-5c-45.3 0-53.5-1.7-64.9 5.2v-5.2h-78.2v5.1c-11.4-6.5-21.4-5.1-75.7-5.1v5.6c-6.3-3.7-14.5-5.6-24.3-5.6h-58c-3.5 3.8-12.5 13.7-15.7 17.2-12.7-14.1-10.5-11.6-15.5-17.2h-83.1v92.3h82c3.3-3.5 12.9-13.9 16.1-17.4 12.7 14.3 10.3 11.7 15.4 17.4h48.9c0-14.7.1-8.3.1-23 11.5.2 24.3-.2 34.3-6.2 0 13.9-.1 17.1-.1 29.2h39.6c0-18.5.1-7.4.1-25.3 6.2 0 7.7 0 9.4.1.1 1.3 0 0 0 25.2 152.8 0 145.9 1.1 156.7-4.5v4.5c34.8 0 54.8 2.2 67.5-6.1V432c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V228.3h26.6c4.2-10.1 2.2-5.3 6.4-15.3h19.2c4.2 10 2.2 5.2 6.4 15.3h52.9v-11.4c2.2 5 1.1 2.5 5.1 11.4h29.5c2.4-5.5 2.6-5.8 5.1-11.4v11.4h135.5v-25.1c6.4 0 8-.1 9.8.2 0 0-.2 10.9.1 24.8h66.5v-8.9c7.4 5.9 17.4 8.9 29.7 8.9h26.8c4.2-10.1 2.2-5.3 6.4-15.3h19c6.5 15 .2.5 6.6 15.3h52.8v-21.9c11.8 19.7 7.8 12.9 13.2 21.9h41.6v-92h-39.9v18.4c-12.2-20.2-6.3-10.4-11.2-18.4h-43.3v20.6c-6.2-14.6-4.6-10.8-8.8-20.6h-32.4c-.4 0-2.3.2-2.3-.3h-27.6c-12.8 0-23.1 3.2-30.7 9.3v-9.3h-39.9v5.3c-10.8-6.1-20.7-5.1-64.4-5.3-.1 0-11.6-.1-11.6 0h-103c-2.5 6.1-6.8 16.4-12.6 30-2.8-6-11-23.8-13.9-30h-46V157c-7.4-17.4-4.7-11-9-21.1H22.9c-3.4 7.9-13.7 32-23.1 53.9V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48v175.4zm-186.6-80.6c-.3.2-1.4 2.2-1.4 7.6 0 6 .9 7.7 1.1 7.9.2.1 1.1.5 3.4.5l7.3-16.9c-1.1 0-2.1-.1-3.1-.1-5.6 0-7 .7-7.3 1zm-19.9 130.9c9.2 3.3 11 9.5 11 18.4l-.1 13.8h-16.6l.1-11.5c0-11.8-3.8-13.8-14.8-13.8h-17.6l-.1 25.3h-16.6l.1-69.3h39.4c13 0 27.1 2.3 27.1 18.7-.1 7.6-4.2 15.3-11.9 18.4zm-6.3-15.4c0-6.4-5.6-7.4-10.7-7.4h-21v15.6h20.7c5.6 0 11-1.3 11-8.2zm181.7-7.1H575v-14.6h-32.9c-12.8 0-23.8 6.6-23.8 20.7 0 33 42.7 12.8 42.7 27.4 0 5.1-4.3 6.4-8.4 6.4h-32l-.1 14.8h32c8.4 0 17.6-1.8 22.5-8.9v-25.8c-10.5-13.8-39.3-1.3-39.3-13.5 0-5.8 4.6-6.5 9.2-6.5zm-99.2-.3v-14.3h-55.2l-.1 69.3h55.2l.1-14.3-38.6-.3v-13.8H445v-14.1h-37.8v-12.5h38.5zm42.2 40.1h-32.2l-.1 14.8h32.2c14.8 0 26.2-5.6 26.2-22 0-33.2-42.9-11.2-42.9-26.3 0-5.6 4.9-6.4 9.2-6.4h30.4v-14.6h-33.2c-12.8 0-23.5 6.6-23.5 20.7 0 33 42.7 12.5 42.7 27.4-.1 5.4-4.7 6.4-8.8 6.4zm-78.1-158.7c-17.4-.3-33.2-4.1-33.2 19.7 0 11.8 2.8 19.9 16.1 19.9h7.4l23.5-54.5h24.8l27.9 65.4v-65.4h25.3l29.1 48.1v-48.1h16.9v69H524l-31.2-51.9v51.9h-33.7l-6.6-15.3h-34.3l-6.4 15.3h-19.2c-22.8 0-33-11.8-33-34 0-23.3 10.5-35.3 34-35.3h16.1v15.2zm14.3 24.5h22.8l-11.2-27.6-11.6 27.6zm-72.6-39.6h-16.9v69.3h16.9v-69.3zm-38.1 37.3c9.5 3.3 11 9.2 11 18.4v13.5h-16.6c-.3-14.8 3.6-25.1-14.8-25.1h-18v25.1h-16.4v-69.3l39.1.3c13.3 0 27.4 2 27.4 18.4.1 8-4.3 15.7-11.7 18.7zm-6.7-15.3c0-6.4-5.6-7.4-10.7-7.4h-21v15.3h20.7c5.7 0 11-1.3 11-7.9zm-59.5-7.4v-14.6h-55.5v69.3h55.5v-14.3h-38.9v-13.8h37.8v-14.1h-37.8v-12.5h38.9zm-84.6 54.7v-54.2l-24 54.2H124l-24-54.2v54.2H66.2l-6.4-15.3H25.3l-6.4 15.3H1l29.7-69.3h24.5l28.1 65.7v-65.7h27.1l21.7 47 19.7-47h27.6v69.3h-16.8zM53.9 188.8l-11.5-27.6-11.2 27.6h22.7zm253 102.5c0 27.9-30.4 23.3-49.3 23.3l-.1 23.3h-32.2l-20.4-23-21.3 23h-65.4l.1-69.3h66.5l20.5 22.8 21-22.8H279c15.6 0 27.9 5.4 27.9 22.7zm-112.7 11.8l-17.9-20.2h-41.7v12.5h36.3v14.1h-36.3v13.8h40.6l19-20.2zM241 276l-25.3 27.4 25.3 28.1V276zm48.3 15.3c0-6.1-4.6-8.4-10.2-8.4h-21.5v17.6h21.2c5.9 0 10.5-2.8 10.5-9.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcApplePay.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcApplePay.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcApplePay.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcApplePay.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcApplePay.js new file mode 100644 index 0000000000..9a5b5656bc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcApplePay.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'cc-apple-pay', icon: [576, 512, [], "f416", "M302.2 218.4c0 17.2-10.5 27.1-29 27.1h-24.3v-54.2h24.4c18.4 0 28.9 9.8 28.9 27.1zm47.5 62.6c0 8.3 7.2 13.7 18.5 13.7 14.4 0 25.2-9.1 25.2-21.9v-7.7l-23.5 1.5c-13.3.9-20.2 5.8-20.2 14.4zM576 79v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM127.8 197.2c8.4.7 16.8-4.2 22.1-10.4 5.2-6.4 8.6-15 7.7-23.7-7.4.3-16.6 4.9-21.9 11.3-4.8 5.5-8.9 14.4-7.9 22.8zm60.6 74.5c-.2-.2-19.6-7.6-19.8-30-.2-18.7 15.3-27.7 16-28.2-8.8-13-22.4-14.4-27.1-14.7-12.2-.7-22.6 6.9-28.4 6.9-5.9 0-14.7-6.6-24.3-6.4-12.5.2-24.2 7.3-30.5 18.6-13.1 22.6-3.4 56 9.3 74.4 6.2 9.1 13.7 19.1 23.5 18.7 9.3-.4 13-6 24.2-6 11.3 0 14.5 6 24.3 5.9 10.2-.2 16.5-9.1 22.8-18.2 6.9-10.4 9.8-20.4 10-21zm135.4-53.4c0-26.6-18.5-44.8-44.9-44.8h-51.2v136.4h21.2v-46.6h29.3c26.8 0 45.6-18.4 45.6-45zm90 23.7c0-19.7-15.8-32.4-40-32.4-22.5 0-39.1 12.9-39.7 30.5h19.1c1.6-8.4 9.4-13.9 20-13.9 13 0 20.2 6 20.2 17.2v7.5l-26.4 1.6c-24.6 1.5-37.9 11.6-37.9 29.1 0 17.7 13.7 29.4 33.4 29.4 13.3 0 25.6-6.7 31.2-17.4h.4V310h19.6v-68zM516 210.9h-21.5l-24.9 80.6h-.4l-24.9-80.6H422l35.9 99.3-1.9 6c-3.2 10.2-8.5 14.2-17.9 14.2-1.7 0-4.9-.2-6.2-.3v16.4c1.2.4 6.5.5 8.1.5 20.7 0 30.4-7.9 38.9-31.8L516 210.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcDinersClub.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcDinersClub.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcDinersClub.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcDinersClub.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcDinersClub.js new file mode 100644 index 0000000000..a2534ac736 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcDinersClub.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'cc-diners-club', icon: [576, 512, [], "f24c", "M239.7 79.9c-96.9 0-175.8 78.6-175.8 175.8 0 96.9 78.9 175.8 175.8 175.8 97.2 0 175.8-78.9 175.8-175.8 0-97.2-78.6-175.8-175.8-175.8zm-39.9 279.6c-41.7-15.9-71.4-56.4-71.4-103.8s29.7-87.9 71.4-104.1v207.9zm79.8.3V151.6c41.7 16.2 71.4 56.7 71.4 104.1s-29.7 87.9-71.4 104.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM329.7 448h-90.3c-106.2 0-193.8-85.5-193.8-190.2C45.6 143.2 133.2 64 239.4 64h90.3c105 0 200.7 79.2 200.7 193.8 0 104.7-95.7 190.2-200.7 190.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcDiscover.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcDiscover.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcDiscover.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcDiscover.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcDiscover.js new file mode 100644 index 0000000000..322dae740b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcDiscover.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'cc-discover', icon: [576, 512, [], "f1f2", "M83 212.1c0 7.9-3.2 15.5-8.9 20.7-4.9 4.4-11.6 6.4-21.9 6.4H48V185h4.2c10.3 0 16.7 1.7 21.9 6.6 5.7 5 8.9 12.6 8.9 20.5zM504.8 184h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8 0-7.9-5.5-12.1-15.6-12.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM428 253h45.3v-13.8H444V217h28.3v-13.8H444V185h29.3v-14H428v82zm-86.2-82l35 84.2h8.6l35.5-84.2h-17.5l-22.2 55.2-21.9-55.2h-17.5zm-83 41.6c0 24.6 19.9 44.6 44.6 44.6 24.6 0 44.6-19.9 44.6-44.6 0-24.6-19.9-44.6-44.6-44.6-24.6 0-44.6 19.9-44.6 44.6zm-68-.5c0 32.5 33.6 52.5 63.3 38.2v-19c-19.3 19.3-46.8 5.8-46.8-19.2 0-23.7 26.7-39.1 46.8-19v-19c-30.2-15-63.3 6.8-63.3 38zm-33.9 28.3c-7.6 0-13.8-3.7-17.5-10.8l-10.3 9.9c17.8 26.1 56.6 18.2 56.6-11.3 0-13.1-5.4-19-23.6-25.6-9.6-3.4-12.3-5.9-12.3-10.3 0-8.7 14.5-14.1 24.9-2.5l8.4-10.8c-19.1-17.1-49.7-8.9-49.7 14.3 0 11.3 5.2 17.2 20.2 22.7 25.7 9.1 14.7 24.4 3.3 24.4zm-57.4-28.3c0-24.1-18-41.1-44.1-41.1H32v82h23.4c30.9 0 44.1-22.4 44.1-40.9zm23.4-41.1h-16v82h16v-82zM544 288c-33.3 20.8-226.4 124.4-416 160h401c8.2 0 15-6.8 15-15V288zm0-35l-25.9-34.5c12.1-2.5 18.7-10.6 18.7-23.2 0-28.5-30.3-24.4-52.9-24.4v82h16v-32.8h2.2l22.2 32.8H544z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcJcb.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcJcb.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcJcb.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcJcb.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcJcb.js new file mode 100644 index 0000000000..d8d7a5f42f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcJcb.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'cc-jcb', icon: [576, 512, [], "f24b", "M431.5 244.3V212c41.2 0 38.5.2 38.5.2 7.3 1.3 13.3 7.3 13.3 16 0 8.8-6 14.5-13.3 15.8-1.2.4-3.3.3-38.5.3zm42.8 20.2c-2.8-.7-3.3-.5-42.8-.5v35c39.6 0 40 .2 42.8-.5 7.5-1.5 13.5-8 13.5-17 0-8.7-6-15.5-13.5-17zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM182 192.3h-57c0 67.1 10.7 109.7-35.8 109.7-19.5 0-38.8-5.7-57.2-14.8v28c30 8.3 68 8.3 68 8.3 97.9 0 82-47.7 82-131.2zm178.5 4.5c-63.4-16-165-14.9-165 59.3 0 77.1 108.2 73.6 165 59.2V287C312.9 311.7 253 309 253 256s59.8-55.6 107.5-31.2v-28zM544 286.5c0-18.5-16.5-30.5-38-32v-.8c19.5-2.7 30.3-15.5 30.3-30.2 0-19-15.7-30-37-31 0 0 6.3-.3-120.3-.3v127.5h122.7c24.3.1 42.3-12.9 42.3-33.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcMastercard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcMastercard.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcMastercard.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcMastercard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcMastercard.js new file mode 100644 index 0000000000..7f7f0533f4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcMastercard.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'cc-mastercard', icon: [576, 512, [], "f1f1", "M482.9 410.3c0 6.8-4.6 11.7-11.2 11.7-6.8 0-11.2-5.2-11.2-11.7 0-6.5 4.4-11.7 11.2-11.7 6.6 0 11.2 5.2 11.2 11.7zm-310.8-11.7c-7.1 0-11.2 5.2-11.2 11.7 0 6.5 4.1 11.7 11.2 11.7 6.5 0 10.9-4.9 10.9-11.7-.1-6.5-4.4-11.7-10.9-11.7zm117.5-.3c-5.4 0-8.7 3.5-9.5 8.7h19.1c-.9-5.7-4.4-8.7-9.6-8.7zm107.8.3c-6.8 0-10.9 5.2-10.9 11.7 0 6.5 4.1 11.7 10.9 11.7 6.8 0 11.2-4.9 11.2-11.7 0-6.5-4.4-11.7-11.2-11.7zm105.9 26.1c0 .3.3.5.3 1.1 0 .3-.3.5-.3 1.1-.3.3-.3.5-.5.8-.3.3-.5.5-1.1.5-.3.3-.5.3-1.1.3-.3 0-.5 0-1.1-.3-.3 0-.5-.3-.8-.5-.3-.3-.5-.5-.5-.8-.3-.5-.3-.8-.3-1.1 0-.5 0-.8.3-1.1 0-.5.3-.8.5-1.1.3-.3.5-.3.8-.5.5-.3.8-.3 1.1-.3.5 0 .8 0 1.1.3.5.3.8.3 1.1.5s.2.6.5 1.1zm-2.2 1.4c.5 0 .5-.3.8-.3.3-.3.3-.5.3-.8 0-.3 0-.5-.3-.8-.3 0-.5-.3-1.1-.3h-1.6v3.5h.8V426h.3l1.1 1.4h.8l-1.1-1.3zM576 81v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V81c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM64 220.6c0 76.5 62.1 138.5 138.5 138.5 27.2 0 53.9-8.2 76.5-23.1-72.9-59.3-72.4-171.2 0-230.5-22.6-15-49.3-23.1-76.5-23.1-76.4-.1-138.5 62-138.5 138.2zm224 108.8c70.5-55 70.2-162.2 0-217.5-70.2 55.3-70.5 162.6 0 217.5zm-142.3 76.3c0-8.7-5.7-14.4-14.7-14.7-4.6 0-9.5 1.4-12.8 6.5-2.4-4.1-6.5-6.5-12.2-6.5-3.8 0-7.6 1.4-10.6 5.4V392h-8.2v36.7h8.2c0-18.9-2.5-30.2 9-30.2 10.2 0 8.2 10.2 8.2 30.2h7.9c0-18.3-2.5-30.2 9-30.2 10.2 0 8.2 10 8.2 30.2h8.2v-23zm44.9-13.7h-7.9v4.4c-2.7-3.3-6.5-5.4-11.7-5.4-10.3 0-18.2 8.2-18.2 19.3 0 11.2 7.9 19.3 18.2 19.3 5.2 0 9-1.9 11.7-5.4v4.6h7.9V392zm40.5 25.6c0-15-22.9-8.2-22.9-15.2 0-5.7 11.9-4.8 18.5-1.1l3.3-6.5c-9.4-6.1-30.2-6-30.2 8.2 0 14.3 22.9 8.3 22.9 15 0 6.3-13.5 5.8-20.7.8l-3.5 6.3c11.2 7.6 32.6 6 32.6-7.5zm35.4 9.3l-2.2-6.8c-3.8 2.1-12.2 4.4-12.2-4.1v-16.6h13.1V392h-13.1v-11.2h-8.2V392h-7.6v7.3h7.6V416c0 17.6 17.3 14.4 22.6 10.9zm13.3-13.4h27.5c0-16.2-7.4-22.6-17.4-22.6-10.6 0-18.2 7.9-18.2 19.3 0 20.5 22.6 23.9 33.8 14.2l-3.8-6c-7.8 6.4-19.6 5.8-21.9-4.9zm59.1-21.5c-4.6-2-11.6-1.8-15.2 4.4V392h-8.2v36.7h8.2V408c0-11.6 9.5-10.1 12.8-8.4l2.4-7.6zm10.6 18.3c0-11.4 11.6-15.1 20.7-8.4l3.8-6.5c-11.6-9.1-32.7-4.1-32.7 15 0 19.8 22.4 23.8 32.7 15l-3.8-6.5c-9.2 6.5-20.7 2.6-20.7-8.6zm66.7-18.3H408v4.4c-8.3-11-29.9-4.8-29.9 13.9 0 19.2 22.4 24.7 29.9 13.9v4.6h8.2V392zm33.7 0c-2.4-1.2-11-2.9-15.2 4.4V392h-7.9v36.7h7.9V408c0-11 9-10.3 12.8-8.4l2.4-7.6zm40.3-14.9h-7.9v19.3c-8.2-10.9-29.9-5.1-29.9 13.9 0 19.4 22.5 24.6 29.9 13.9v4.6h7.9v-51.7zm7.6-75.1v4.6h.8V302h1.9v-.8h-4.6v.8h1.9zm6.6 123.8c0-.5 0-1.1-.3-1.6-.3-.3-.5-.8-.8-1.1-.3-.3-.8-.5-1.1-.8-.5 0-1.1-.3-1.6-.3-.3 0-.8.3-1.4.3-.5.3-.8.5-1.1.8-.5.3-.8.8-.8 1.1-.3.5-.3 1.1-.3 1.6 0 .3 0 .8.3 1.4 0 .3.3.8.8 1.1.3.3.5.5 1.1.8.5.3 1.1.3 1.4.3.5 0 1.1 0 1.6-.3.3-.3.8-.5 1.1-.8.3-.3.5-.8.8-1.1.3-.6.3-1.1.3-1.4zm3.2-124.7h-1.4l-1.6 3.5-1.6-3.5h-1.4v5.4h.8v-4.1l1.6 3.5h1.1l1.4-3.5v4.1h1.1v-5.4zm4.4-80.5c0-76.2-62.1-138.3-138.5-138.3-27.2 0-53.9 8.2-76.5 23.1 72.1 59.3 73.2 171.5 0 230.5 22.6 15 49.5 23.1 76.5 23.1 76.4.1 138.5-61.9 138.5-138.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcPaypal.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcPaypal.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcPaypal.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcPaypal.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcPaypal.js new file mode 100644 index 0000000000..b08fb13905 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcPaypal.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'cc-paypal', icon: [576, 512, [], "f1f4", "M186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcStripe.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcStripe.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcStripe.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcStripe.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcStripe.js new file mode 100644 index 0000000000..dec163e821 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcStripe.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'cc-stripe', icon: [576, 512, [], "f1f5", "M396.9 256.5c0 19.1-8.8 33.4-21.9 33.4-8.3 0-13.3-3-16.8-6.7l-.2-52.8c3.7-4.1 8.8-7 17-7 12.9-.1 21.9 14.5 21.9 33.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM122.2 281.1c0-42.3-54.3-34.7-54.3-50.7 0-5.5 4.6-7.7 12.1-7.7 10.8 0 24.5 3.3 35.3 9.1v-33.4c-11.8-4.7-23.5-6.5-35.3-6.5-28.8 0-48 15-48 40.2 0 39.3 54 32.9 54 49.9 0 6.6-5.7 8.7-13.6 8.7-11.8 0-26.9-4.9-38.9-11.3v33.9c13.2 5.7 26.6 8.1 38.8 8.1 29.6-.2 49.9-14.7 49.9-40.3zm68.9-86.9h-27v-30.8l-34.7 7.4-.2 113.9c0 21 15.8 36.5 36.9 36.5 11.6 0 20.2-2.1 24.9-4.7v-28.9c-4.5 1.8-27 8.3-27-12.6v-50.5h27v-30.3zm73.8 0c-4.7-1.7-21.3-4.8-29.6 10.5l-2.2-10.5h-30.7v124.5h35.5v-84.4c8.4-11 22.6-8.9 27.1-7.4v-32.7zm44.2 0h-35.7v124.5h35.7V194.2zm0-47.3l-35.7 7.6v28.9l35.7-7.6v-28.9zm122.7 108.8c0-41.3-23.5-63.8-48.4-63.8-13.9 0-22.9 6.6-27.8 11.1l-1.8-8.8h-31.3V360l35.5-7.5.1-40.2c5.1 3.7 12.7 9 25.1 9 25.4-.1 48.6-20.5 48.6-65.6zm112.2 1.2c0-36.4-17.6-65.1-51.3-65.1-33.8 0-54.3 28.7-54.3 64.9 0 42.8 24.2 64.5 58.8 64.5 17 0 29.7-3.9 39.4-9.2v-28.6c-9.7 4.9-20.8 7.9-34.9 7.9-13.8 0-26-4.9-27.6-21.5h69.5c.1-2 .4-9.4.4-12.9zm-51.6-36.1c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcVisa.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcVisa.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcVisa.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcVisa.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcVisa.js new file mode 100644 index 0000000000..aa352cb0b8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCcVisa.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'cc-visa', icon: [576, 512, [], "f1f0", "M470.1 231.3s7.6 37.2 9.3 45H446c3.3-8.9 16-43.5 16-43.5-.2.3 3.3-9.1 5.3-14.9l2.8 13.4zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM152.5 331.2L215.7 176h-42.5l-39.3 106-4.3-21.5-14-71.4c-2.3-9.9-9.4-12.7-18.2-13.1H32.7l-.7 3.1c15.8 4 29.9 9.8 42.2 17.1l35.8 135h42.5zm94.4.2L272.1 176h-40.2l-25.1 155.4h40.1zm139.9-50.8c.2-17.7-10.6-31.2-33.7-42.3-14.1-7.1-22.7-11.9-22.7-19.2.2-6.6 7.3-13.4 23.1-13.4 13.1-.3 22.7 2.8 29.9 5.9l3.6 1.7 5.5-33.6c-7.9-3.1-20.5-6.6-36-6.6-39.7 0-67.6 21.2-67.8 51.4-.3 22.3 20 34.7 35.2 42.2 15.5 7.6 20.8 12.6 20.8 19.3-.2 10.4-12.6 15.2-24.1 15.2-16 0-24.6-2.5-37.7-8.3l-5.3-2.5-5.6 34.9c9.4 4.3 26.8 8.1 44.8 8.3 42.2.1 69.7-20.8 70-53zM528 331.4L495.6 176h-31.1c-9.6 0-16.9 2.8-21 12.9l-59.7 142.5H426s6.9-19.2 8.4-23.3H486c1.2 5.5 4.8 23.3 4.8 23.3H528z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCentercode.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCentercode.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCentercode.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCentercode.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCentercode.js new file mode 100644 index 0000000000..5670fc806c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCentercode.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'centercode', icon: [512, 512, [], "f380", "M329.2 268.6c-3.8 35.2-35.4 60.6-70.6 56.8-35.2-3.8-60.6-35.4-56.8-70.6 3.8-35.2 35.4-60.6 70.6-56.8 35.1 3.8 60.6 35.4 56.8 70.6zm-85.8 235.1C96.7 496-8.2 365.5 10.1 224.3c11.2-86.6 65.8-156.9 139.1-192 161-77.1 349.7 37.4 354.7 216.6 4.1 147-118.4 262.2-260.5 254.8zm179.9-180c27.9-118-160.5-205.9-237.2-234.2-57.5 56.3-69.1 188.6-33.8 344.4 68.8 15.8 169.1-26.4 271-110.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faChrome.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faChrome.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faChrome.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faChrome.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faChrome.js new file mode 100644 index 0000000000..e2a701d26b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faChrome.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'chrome', icon: [496, 512, [], "f268", "M131.5 217.5L55.1 100.1c47.6-59.2 119-91.8 192-92.1 42.3-.3 85.5 10.5 124.8 33.2 43.4 25.2 76.4 61.4 97.4 103L264 133.4c-58.1-3.4-113.4 29.3-132.5 84.1zm32.9 38.5c0 46.2 37.4 83.6 83.6 83.6s83.6-37.4 83.6-83.6-37.4-83.6-83.6-83.6-83.6 37.3-83.6 83.6zm314.9-89.2L339.6 174c37.9 44.3 38.5 108.2 6.6 157.2L234.1 503.6c46.5 2.5 94.4-7.7 137.8-32.9 107.4-62 150.9-192 107.4-303.9zM133.7 303.6L40.4 120.1C14.9 159.1 0 205.9 0 256c0 124 90.8 226.7 209.5 244.9l63.7-124.8c-57.6 10.8-113.2-20.8-139.5-72.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCloudscale.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCloudscale.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCloudscale.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCloudscale.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCloudscale.js new file mode 100644 index 0000000000..ad212cd263 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCloudscale.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'cloudscale', icon: [448, 512, [], "f383", "M318.1 154l-9.4 7.6c-22.5-19.3-51.5-33.6-83.3-33.6C153.8 128 96 188.8 96 260.3c0 6.6.4 13.1 1.4 19.4-2-56 41.8-97.4 92.6-97.4 24.2 0 46.2 9.4 62.6 24.7l-25.2 20.4c-8.3-.9-16.8 1.8-23.1 8.1-11.1 11-11.1 28.9 0 40 11.1 11 28.9 11 40 0 6.3-6.3 9-14.9 8.1-23.1l75.2-88.8c6.3-6.5-3.3-15.9-9.5-9.6zm-83.8 111.5c-5.6 5.5-14.6 5.5-20.2 0-5.6-5.6-5.6-14.6 0-20.2s14.6-5.6 20.2 0 5.6 14.7 0 20.2zM224 32C100.5 32 0 132.5 0 256s100.5 224 224 224 224-100.5 224-224S347.5 32 224 32zm0 384c-88.2 0-160-71.8-160-160S135.8 96 224 96s160 71.8 160 160-71.8 160-160 160z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCloudsmith.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCloudsmith.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCloudsmith.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCloudsmith.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCloudsmith.js new file mode 100644 index 0000000000..c7a913cd26 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCloudsmith.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'cloudsmith', icon: [332, 512, [], "f384", "M332.5 419.9c0 46.4-37.6 84.1-84 84.1s-84-37.7-84-84.1 37.6-84 84-84 84 37.6 84 84zm-84-243.9c46.4 0 80-37.6 80-84s-33.6-84-80-84-88 37.6-88 84-29.6 76-76 76-84 41.6-84 88 37.6 80 84 80 84-33.6 84-80 33.6-80 80-80z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCloudversify.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCloudversify.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCloudversify.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCloudversify.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCloudversify.js new file mode 100644 index 0000000000..c74d8fd949 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCloudversify.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'cloudversify', icon: [616, 512, [], "f385", "M148.6 304c8.2 68.5 67.4 115.5 146 111.3 51.2 43.3 136.8 45.8 186.4-5.6 69.2 1.1 118.5-44.6 131.5-99.5 14.8-62.5-18.2-132.5-92.1-155.1-33-88.1-131.4-101.5-186.5-85-57.3 17.3-84.3 53.2-99.3 109.7-7.8 2.7-26.5 8.9-45 24.1 11.7 0 15.2 8.9 15.2 19.5v20.4c0 10.7-8.7 19.5-19.5 19.5h-20.2c-10.7 0-19.5-6-19.5-16.7V240H98.8C95 240 88 244.3 88 251.9v40.4c0 6.4 5.3 11.8 11.7 11.8h48.9zm227.4 8c-10.7 46.3 21.7 72.4 55.3 86.8C324.1 432.6 259.7 348 296 288c-33.2 21.6-33.7 71.2-29.2 92.9-17.9-12.4-53.8-32.4-57.4-79.8-3-39.9 21.5-75.7 57-93.9C297 191.4 369.9 198.7 400 248c-14.1-48-53.8-70.1-101.8-74.8 30.9-30.7 64.4-50.3 114.2-43.7 69.8 9.3 133.2 82.8 67.7 150.5 35-16.3 48.7-54.4 47.5-76.9l10.5 19.6c11.8 22 15.2 47.6 9.4 72-9.2 39-40.6 68.8-79.7 76.5-32.1 6.3-83.1-5.1-91.8-59.2zM128 208H88.2c-8.9 0-16.2-7.3-16.2-16.2v-39.6c0-8.9 7.3-16.2 16.2-16.2H128c8.9 0 16.2 7.3 16.2 16.2v39.6c0 8.9-7.3 16.2-16.2 16.2zM10.1 168C4.5 168 0 163.5 0 157.9v-27.8c0-5.6 4.5-10.1 10.1-10.1h27.7c5.5 0 10.1 4.5 10.1 10.1v27.8c0 5.6-4.5 10.1-10.1 10.1H10.1zM168 142.7v-21.4c0-5.1 4.2-9.3 9.3-9.3h21.4c5.1 0 9.3 4.2 9.3 9.3v21.4c0 5.1-4.2 9.3-9.3 9.3h-21.4c-5.1 0-9.3-4.2-9.3-9.3zM56 235.5v25c0 6.3-5.1 11.5-11.4 11.5H19.4C13.1 272 8 266.8 8 260.5v-25c0-6.3 5.1-11.5 11.4-11.5h25.1c6.4 0 11.5 5.2 11.5 11.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCodepen.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCodepen.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCodepen.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCodepen.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCodepen.js new file mode 100644 index 0000000000..d60059273a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCodepen.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'codepen', icon: [512, 512, [], "f1cb", "M502.285 159.704l-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285zM278 63.131l172.286 114.858-76.857 51.429L278 165.703V63.131zm-44 0v102.572l-95.429 63.715-76.857-51.429L234 63.131zM44 219.132l55.143 36.857L44 292.846v-73.714zm190 229.715L61.714 333.989l76.857-51.429L234 346.275v102.572zm22-140.858l-77.715-52 77.715-52 77.715 52-77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429L278 448.847zm190-156.001l-55.143-36.857L468 219.132v73.714z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCodiepie.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCodiepie.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCodiepie.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCodiepie.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCodiepie.js new file mode 100644 index 0000000000..3eda32471d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCodiepie.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'codiepie', icon: [472, 512, [], "f284", "M422.5 202.9c30.7 0 33.5 53.1-.3 53.1h-10.8v44.3h-26.6v-97.4h37.7zM472 352.6C429.9 444.5 350.4 504 248 504 111 504 0 393 0 256S111 8 248 8c97.4 0 172.8 53.7 218.2 138.4l-186 108.8L472 352.6zm-38.5 12.5l-60.3-30.7c-27.1 44.3-70.4 71.4-122.4 71.4-82.5 0-149.2-66.7-149.2-148.9 0-82.5 66.7-149.2 149.2-149.2 48.4 0 88.9 23.5 116.9 63.4l59.5-34.6c-40.7-62.6-104.7-100-179.2-100-121.2 0-219.5 98.3-219.5 219.5S126.8 475.5 248 475.5c78.6 0 146.5-42.1 185.5-110.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faConnectdevelop.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faConnectdevelop.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faConnectdevelop.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faConnectdevelop.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faConnectdevelop.js new file mode 100644 index 0000000000..5d0a6303eb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faConnectdevelop.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'connectdevelop', icon: [576, 512, [], "f20e", "M550.5 241l-50.089-86.786c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.733-14.732-15.001l-55.447-95.893c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.268-15.268-15.268-4.821 0-8.839 2.143-11.786 5.625H299.518C296.839 18.143 292.821 16 288 16s-8.839 2.143-11.518 5.625H170.411C167.464 18.143 163.447 16 158.625 16c-8.303 0-15.268 6.696-15.268 15.268 0 1.607.536 3.482 1.072 4.821l-55.983 97.233c-5.356 2.41-9.107 7.5-9.107 13.661 0 .535.268 1.071.268 1.607l-53.304 92.143c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.393 12.054 15l55.179 95.358c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.393 12.054 14.732l51.697 89.732c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.268 15.268 15.268 4.821 0 8.839-2.143 11.518-5.357h106.875C279.161 493.857 283.447 496 288 496s8.839-2.143 11.518-5.357h107.143c2.678 2.946 6.696 4.821 10.982 4.821 8.571 0 15.268-6.964 15.268-15.268 0-1.607-.267-2.946-.803-4.285l51.697-90.268c6.964-1.339 12.054-7.5 12.054-14.732 0-1.607-.268-3.214-.804-4.821l54.911-95.358c6.964-1.339 12.322-7.5 12.322-15-.002-7.232-5.092-13.393-11.788-14.732zM153.535 450.732l-43.66-75.803h43.66v75.803zm0-83.839h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.999-47.41v50.624zm0-62.411l-50.357 53.304c-1.339-.536-2.679-1.34-4.018-1.607L43.447 259.75c.535-1.339.535-2.679.535-4.018s0-2.41-.268-3.482l51.965-90c2.679-.268 5.357-1.072 7.768-2.679l50.089 51.965v92.946zm0-102.322l-45.803-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.928-15.804v72.053zm0-80.625l-43.66 15.804 43.66-75.536v59.732zm326.519 39.108l.804 1.339L445.5 329.125l-63.75-67.232 98.036-101.518.268.268zM291.75 355.107l11.518 11.786H280.5l11.25-11.786zm-.268-11.25l-83.303-85.446 79.553-84.375 83.036 87.589-79.286 82.232zm5.357 5.893l79.286-82.232 67.5 71.25-5.892 28.125H313.714l-16.875-17.143zM410.411 44.393c1.071.536 2.142 1.072 3.482 1.34l57.857 100.714v.536c0 2.946.803 5.624 2.143 7.767L376.393 256l-83.035-87.589L410.411 44.393zm-9.107-2.143L287.732 162.518l-57.054-60.268 166.339-60h4.287zm-123.483 0c2.678 2.678 6.16 4.285 10.179 4.285s7.5-1.607 10.179-4.285h75L224.786 95.821 173.893 42.25h103.928zm-116.249 5.625l1.071-2.142a33.834 33.834 0 0 0 2.679-.804l51.161 53.84-54.911 19.821V47.875zm0 79.286l60.803-21.964 59.732 63.214-79.553 84.107-40.982-42.053v-83.304zm0 92.678L198 257.607l-36.428 38.304v-76.072zm0 87.858l42.053-44.464 82.768 85.982-17.143 17.678H161.572v-59.196zm6.964 162.053c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.732h99.91l-91.607 94.821h-1.339zm129.911 0c-2.679-2.41-6.428-4.285-10.447-4.285s-7.767 1.875-10.447 4.285h-96.429l91.607-94.821h38.304l91.607 94.821H298.447zm120-11.786l-4.286 7.5c-1.339.268-2.41.803-3.482 1.339l-89.196-91.875h114.376l-17.412 83.036zm12.856-22.232l12.858-60.803h21.964l-34.822 60.803zm34.822-68.839h-20.357l4.553-21.16 17.143 18.214c-.535.803-1.071 1.874-1.339 2.946zm66.161-107.411l-55.447 96.697c-1.339.535-2.679 1.071-4.018 1.874l-20.625-21.964 34.554-163.928 45.803 79.286c-.267 1.339-.803 2.678-.803 4.285 0 1.339.268 2.411.536 3.75z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faContao.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faContao.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faContao.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faContao.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faContao.js new file mode 100644 index 0000000000..818aac4168 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faContao.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'contao', icon: [512, 512, [], "f26d", "M45.4 305c14.4 67.1 26.4 129 68.2 175H34c-18.7 0-34-15.2-34-34V66c0-18.7 15.2-34 34-34h57.7C77.9 44.6 65.6 59.2 54.8 75.6c-45.4 70-27 146.8-9.4 229.4zM478 32h-90.2c21.4 21.4 39.2 49.5 52.7 84.1l-137.1 29.3c-14.9-29-37.8-53.3-82.6-43.9-24.6 5.3-41 19.3-48.3 34.6-8.8 18.7-13.2 39.8 8.2 140.3 21.1 100.2 33.7 117.7 49.5 131.2 12.9 11.1 33.4 17 58.3 11.7 44.5-9.4 55.7-40.7 57.4-73.2l137.4-29.6c3.2 71.5-18.7 125.2-57.4 163.6H478c18.7 0 34-15.2 34-34V66c0-18.8-15.2-34-34-34z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCpanel.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCpanel.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCpanel.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCpanel.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCpanel.js new file mode 100644 index 0000000000..8e95b712ee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCpanel.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'cpanel', icon: [640, 512, [], "f388", "M52.9 213.7h40l-6.2 23.6c-1.9 6.5-7.4 10.9-14.3 10.9H53.8c-24.9 0-24.7 37.4 0 37.4h11.3c4.2 0 7.6 3.9 6.4 8.3L64.4 320H52c-33.5 0-59-31.4-50.3-65.2 7.3-27 28.3-41.1 51.2-41.1M73.1 320L108 189.9c1.8-6.4 7.2-10.9 14.3-10.9h37c24.1 0 45.4 16.4 51 41.2 6.6 29.1-14.5 65.3-51.7 65.3h-32l6.4-23.8c1.8-6.2 7.3-10.8 14.3-10.8h10.3c12.4 0 20.8-11.7 18.3-22.6-2.1-9.2-9.9-14.8-18.3-14.8h-19.8L112 309.2c-1.9 6.2-7.4 10.7-14.2 10.7l-24.7.1m220.6-69.4c.3-1 1.9-5.3-2.1-5.3h-57.5c-9.7 0-16.6-8.9-14.2-18.5l3.5-13.4h77.9c18.8 0 33.3 17.6 28.5 36.8l-14 51.8c-2.8 10.6-12.2 17.8-23.4 17.8l-57.5-.2c-42.9 0-38.5-63.8.7-63.8H284l-3.5 13.2c-1.9 6.2-7.4 10.8-14.2 10.8h-21.6c-5.3 0-5.3 7.9 0 7.9h34.9c4.6 0 5.1-3.9 5.5-5.3l8.6-31.8m103.1-36.9c34.4 0 59.3 32.3 50.3 65.4l-8.8 33.1c-1.2 4.9-5.7 7.8-10.3 7.8h-19.1c-4.5 0-7.6-4-6.4-8.3l10.6-40c3.3-11.6-5.6-23.4-18.1-23.4h-19.8l-17.2 64c-1.2 4.8-5.6 7.8-10.4 7.8h-18.9c-4.2 0-7.6-3.9-6.4-8.3l26.2-98h48.3M498 251.6l-8 30c-.9 3.3 1.5 6.7 5.1 6.7h73.3l-5.7 21c-1.9 6.2-7.4 10.7-14.2 10.7h-66.7c-20 0-33.3-19-28.3-36.7l10.8-40c4.8-17.6 20.7-29.6 38.6-29.6h47.3c19 0 33.2 17.7 28.3 36.8l-3.2 12c-2.9 11-12.7 17.6-23.2 17.6h-53.4l3.5-13c1.6-6.2 7.2-10.8 14.2-10.8H538c2 0 3.3-1 3.9-3l.7-2.6c.7-2.7-1.3-5.1-3.9-5.1h-32.9c-4.1 0-6.9 2.1-7.8 6zm70.2 68.4l35.6-133.1c1.2-4.7 5.5-7.9 10.4-7.9h18.9c4.5 0 7.7 4 6.5 8.3l-26.5 98.2c-5.1 20.7-24.2 34.5-44.9 34.5"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommons.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommons.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommons.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommons.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommons.js new file mode 100644 index 0000000000..d9202202bf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommons.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'creative-commons', icon: [496, 512, [], "f25e", "M254.8 214.8l-33.2 17.3c-9.4-19.6-25.2-19.9-27.5-19.9-22.1 0-33.2 14.6-33.2 43.8 0 23.6 9.2 43.8 33.2 43.8 14.5 0 24.7-7.1 30.6-21.3l30.6 15.5c-6.2 11.5-25.7 39-65.1 39-22.6 0-74-10.3-74-77.1 0-58.7 43-77.1 72.6-77.1 30.8.2 52.7 12.1 66 36zm143.1 0l-32.8 17.3c-9.5-19.8-25.7-19.9-27.9-19.9-22.1 0-33.2 14.6-33.2 43.8 0 23.6 9.2 43.8 33.2 43.8 14.5 0 24.6-7.1 30.5-21.3l31 15.5c-2.1 3.7-21.4 39-65.1 39-22.7 0-74-9.9-74-77.1 0-58.7 43-77.1 72.6-77.1 30.8.2 52.7 12.1 65.7 36zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsBy.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsBy.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsBy.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsBy.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsBy.js new file mode 100644 index 0000000000..535e674f68 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsBy.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'creative-commons-by', icon: [496, 512, [], "f4e7", "M314.9 194.4v101.4h-28.3v120.5h-77.1V295.9h-28.3V194.4c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7H299c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3zm-101.5-63.7c0-23.3 11.5-35 34.5-35s34.5 11.7 34.5 35c0 23-11.5 34.5-34.5 34.5s-34.5-11.5-34.5-34.5zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNc.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNc.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNc.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNc.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNc.js new file mode 100644 index 0000000000..00cf764a36 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNc.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'creative-commons-nc', icon: [496, 512, [], "f4e8", "M247.6 8C387.4 8 496 115.9 496 256c0 147.2-118.5 248-248.4 248C113.1 504 0 393.2 0 256 0 123.1 104.7 8 247.6 8zM55.8 189.1c-7.4 20.4-11.1 42.7-11.1 66.9 0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4v38.1h-28.8V368c-27.5-.3-52.6-10.2-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4zM248.4 52.3c-38.4 0-112.4 8.7-170.5 93l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3v-38.1h28.8v38.1c22.7 1.2 43.4 8.9 62 23L295 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNcEu.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNcEu.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNcEu.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNcEu.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNcEu.js new file mode 100644 index 0000000000..25942ef497 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNcEu.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'creative-commons-nc-eu', icon: [496, 512, [], "f4e9", "M247.7 8C103.6 8 0 124.8 0 256c0 136.3 111.7 248 247.7 248C377.9 504 496 403.1 496 256 496 117 388.4 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-23.2 3.7-45.2 10.9-66l65.7 29.1h-4.7v29.5h23.3c0 6.2-.4 3.2-.4 19.5h-22.8v29.5h27c11.4 67 67.2 101.3 124.6 101.3 26.6 0 50.6-7.9 64.8-15.8l-10-46.1c-8.7 4.6-28.2 10.8-47.3 10.8-28.2 0-58.1-10.9-67.3-50.2h90.3l128.3 56.8c-1.5 2.1-56.2 104.3-178.8 104.3zm-16.7-190.6l-.5-.4.9.4h-.4zm77.2-19.5h3.7v-29.5h-70.3l-28.6-12.6c2.5-5.5 5.4-10.5 8.8-14.3 12.9-15.8 31.1-22.4 51.1-22.4 18.3 0 35.3 5.4 46.1 10l11.6-47.3c-15-6.6-37-12.4-62.3-12.4-39 0-72.2 15.8-95.9 42.3-5.3 6.1-9.8 12.9-13.9 20.1l-81.6-36.1c64.6-96.8 157.7-93.6 170.7-93.6 113 0 203 90.2 203 203.4 0 18.7-2.1 36.3-6.3 52.9l-136.1-60.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNcJp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNcJp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNcJp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNcJp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNcJp.js new file mode 100644 index 0000000000..f9c5e23d60 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNcJp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'creative-commons-nc-jp', icon: [496, 512, [], "f4ea", "M247.7 8C103.6 8 0 124.8 0 256c0 136.4 111.8 248 247.7 248C377.9 504 496 403.2 496 256 496 117.2 388.5 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-21.1 3-41.2 9-60.3l127 56.5h-27.9v38.6h58.1l5.7 11.8v18.7h-63.8V360h63.8v56h61.7v-56h64.2v-35.7l81 36.1c-1.5 2.2-57.1 98.3-175.2 98.3zm87.6-137.3h-57.6v-18.7l2.9-5.6 54.7 24.3zm6.5-51.4v-17.8h-38.6l63-116H301l-43.4 96-23-10.2-39.6-85.7h-65.8l27.3 51-81.9-36.5c27.8-44.1 82.6-98.1 173.7-98.1 112.8 0 203 90 203 203.4 0 21-2.7 40.6-7.9 59l-101-45.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNd.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNd.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNd.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNd.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNd.js new file mode 100644 index 0000000000..1eefa8ac9d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsNd.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'creative-commons-nd', icon: [496, 512, [], "f4eb", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm94 144.3v42.5H162.1V197h180.3zm0 79.8v42.5H162.1v-42.5h180.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsPd.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsPd.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsPd.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsPd.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsPd.js new file mode 100644 index 0000000000..7cbfe97cf5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsPd.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'creative-commons-pd', icon: [496, 512, [], "f4ec", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm0 449.5c-139.2 0-235.8-138-190.2-267.9l78.8 35.1c-2.1 10.5-3.3 21.5-3.3 32.9 0 99 73.9 126.9 120.4 126.9 22.9 0 53.5-6.7 79.4-29.5L297 311.1c-5.5 6.3-17.6 16.7-36.3 16.7-37.8 0-53.7-39.9-53.9-71.9 230.4 102.6 216.5 96.5 217.9 96.8-34.3 62.4-100.6 104.8-176.7 104.8zm194.2-150l-224-100c18.8-34 54.9-30.7 74.7-11l40.4-41.6c-27.1-23.3-58-27.5-78.1-27.5-47.4 0-80.9 20.5-100.7 51.6l-74.9-33.4c36.1-54.9 98.1-91.2 168.5-91.2 111.1 0 201.5 90.4 201.5 201.5 0 18-2.4 35.4-6.8 52-.3-.1-.4-.2-.6-.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsPdAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsPdAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsPdAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsPdAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsPdAlt.js new file mode 100644 index 0000000000..2801f5b929 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsPdAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'creative-commons-pd-alt', icon: [496, 512, [], "f4ed", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM135.5 323.3V186h68.2c33.7 0 50.5 15.5 50.5 46.5 0 9-3 46.5-57.1 46.5h-27v44.3h-34.6zm34.1-111.6v41.6h29.2c27.9 0 30-41.6-.9-41.6h-28.3zm93.9 111.6V186h53.2c21.4 0 70 5.2 70 68.6 0 63.5-48.6 68.6-70 68.6h-53.2zm34.1-108.5v79.7h19.9c24 0 34.5-15.3 34.5-39.9 0-42-31.2-39.9-35-39.9l-19.4.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsRemix.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsRemix.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsRemix.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsRemix.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsRemix.js new file mode 100644 index 0000000000..2d7465290c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsRemix.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'creative-commons-remix', icon: [496, 512, [], "f4ee", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm161.7 207.7l4.9 2.2v70c-7.2 3.6-63.4 27.5-67.3 28.8-6.5-1.8-113.7-46.8-137.3-56.2l-64.2 26.6-63.3-27.5v-63.8l59.3-24.8c-.7-.7-.4 5-.4-70.4l67.3-29.7L361 178.5v61.6l49.1 20.3zm-70.4 81.5v-43.8h-.4v-1.8l-113.8-46.5V295l113.8 46.9v-.4l.4.4zm7.5-57.6l39.9-16.4-36.8-15.5-39 16.4 35.9 15.5zm52.3 38.1v-43L355.2 298v43.4l44.3-19z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsSa.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsSa.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsSa.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsSa.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsSa.js new file mode 100644 index 0000000000..1a9a5160ce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsSa.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'creative-commons-sa', icon: [496, 512, [], "f4ef", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM137.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97h62.5c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6-33.1 0-51.7 14.6-55.8 43.8h18.2l-49.2 49.2-49-49.2h19.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsSampling.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsSampling.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsSampling.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsSampling.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsSampling.js new file mode 100644 index 0000000000..cde4c11d41 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsSampling.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'creative-commons-sampling', icon: [496, 512, [], "f4f0", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm3.6 53.2c2.8-.3 11.5 1 11.5 11.5l6.6 107.2 4.9-59.3c0-6 4.7-10.6 10.6-10.6 5.9 0 10.6 4.7 10.6 10.6 0 2.5-.5-5.7 5.7 81.5l5.8-64.2c.3-2.9 2.9-9.3 10.2-9.3 3.8 0 9.9 2.3 10.6 8.9l11.5 96.5 5.3-12.8c1.8-4.4 5.2-6.6 10.2-6.6h58v21.3h-50.9l-18.2 44.3c-3.9 9.9-19.5 9.1-20.8-3.1l-4-31.9-7.5 92.6c-.3 3-3 9.3-10.2 9.3-3 0-9.8-2.1-10.6-9.3 0-1.9.6 5.8-6.2-77.9l-5.3 72.2c-1.1 4.8-4.8 9.3-10.6 9.3-2.9 0-9.8-2-10.6-9.3 0-1.9.5 6.7-5.8-87.7l-5.8 94.8c0 6.3-3.6 12.4-10.6 12.4-5.2 0-10.6-4.1-10.6-12l-5.8-87.7c-5.8 92.5-5.3 84-5.3 85.9-1.1 4.8-4.8 9.3-10.6 9.3-3 0-9.8-2.1-10.6-9.3 0-.7-.4-1.1-.4-2.6l-6.2-88.6L182 348c-.7 6.5-6.7 9.3-10.6 9.3-5.8 0-9.6-4.1-10.6-8.9L149.7 272c-2 4-3.5 8.4-11.1 8.4H87.2v-21.3H132l13.7-27.9c4.4-9.9 18.2-7.2 19.9 2.7l3.1 20.4 8.4-97.9c0-6 4.8-10.6 10.6-10.6.5 0 10.6-.2 10.6 12.4l4.9 69.1 6.6-92.6c0-10.1 9.5-10.6 10.2-10.6.6 0 10.6.7 10.6 10.6l5.3 80.6 6.2-97.9c.1-1.1-.6-10.3 9.9-11.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsSamplingPlus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsSamplingPlus.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsSamplingPlus.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsSamplingPlus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsSamplingPlus.js new file mode 100644 index 0000000000..bd62f62234 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsSamplingPlus.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'creative-commons-sampling-plus', icon: [496, 512, [], "f4f1", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm107 205.6c-4.7 0-9 2.8-10.7 7.2l-4 9.5-11-92.8c-1.7-13.9-22-13.4-23.1.4l-4.3 51.4-5.2-68.8c-1.1-14.3-22.1-14.2-23.2 0l-3.5 44.9-5.9-94.3c-.9-14.5-22.3-14.4-23.2 0l-5.1 83.7-4.3-66.3c-.9-14.4-22.2-14.4-23.2 0l-5.3 80.2-4.1-57c-1.1-14.3-22-14.3-23.2-.2l-7.7 89.8-1.8-12.2c-1.7-11.4-17.1-13.6-22-3.3l-13.2 27.7H87.5v23.2h51.3c4.4 0 8.4-2.5 10.4-6.4l10.7 73.1c2 13.5 21.9 13 23.1-.7l3.8-43.6 5.7 78.3c1.1 14.4 22.3 14.2 23.2-.1l4.6-70.4 4.8 73.3c.9 14.4 22.3 14.4 23.2-.1l4.9-80.5 4.5 71.8c.9 14.3 22.1 14.5 23.2.2l4.6-58.6 4.9 64.4c1.1 14.3 22 14.2 23.1.1l6.8-83 2.7 22.3c1.4 11.8 17.7 14.1 22.3 3.1l18-43.4h50.5V258l-58.4.3zm-78 5.2h-21.9v21.9c0 4.1-3.3 7.5-7.5 7.5-4.1 0-7.5-3.3-7.5-7.5v-21.9h-21.9c-4.1 0-7.5-3.3-7.5-7.5 0-4.1 3.4-7.5 7.5-7.5h21.9v-21.9c0-4.1 3.4-7.5 7.5-7.5s7.5 3.3 7.5 7.5v21.9h21.9c4.1 0 7.5 3.3 7.5 7.5 0 4.1-3.4 7.5-7.5 7.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsShare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsShare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsShare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsShare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsShare.js new file mode 100644 index 0000000000..13e655c69d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCreativeCommonsShare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'creative-commons-share', icon: [496, 512, [], "f4f2", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm101 132.4c7.8 0 13.7 6.1 13.7 13.7v182.5c0 7.7-6.1 13.7-13.7 13.7H214.3c-7.7 0-13.7-6-13.7-13.7v-54h-54c-7.8 0-13.7-6-13.7-13.7V131.1c0-8.2 6.6-12.7 12.4-13.7h136.4c7.7 0 13.7 6 13.7 13.7v54h54zM159.9 300.3h40.7V198.9c0-7.4 5.8-12.6 12-13.7h55.8v-40.3H159.9v155.4zm176.2-88.1H227.6v155.4h108.5V212.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCss3.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCss3.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCss3.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCss3.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCss3.js new file mode 100644 index 0000000000..6cf1cd071e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCss3.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'css3', icon: [512, 512, [], "f13c", "M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCss3Alt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCss3Alt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCss3Alt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCss3Alt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCss3Alt.js new file mode 100644 index 0000000000..65149a22f4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCss3Alt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'css3-alt', icon: [384, 512, [], "f38b", "M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCuttlefish.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCuttlefish.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCuttlefish.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCuttlefish.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCuttlefish.js new file mode 100644 index 0000000000..0931e003ec --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faCuttlefish.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'cuttlefish', icon: [440, 512, [], "f38c", "M344 305.5c-17.5 31.6-57.4 54.5-96 54.5-56.6 0-104-47.4-104-104s47.4-104 104-104c38.6 0 78.5 22.9 96 54.5 13.7-50.9 41.7-93.3 87-117.8C385.7 39.1 320.5 8 248 8 111 8 0 119 0 256s111 248 248 248c72.5 0 137.7-31.1 183-80.7-45.3-24.5-73.3-66.9-87-117.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDAndD.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDAndD.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDAndD.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDAndD.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDAndD.js new file mode 100644 index 0000000000..a6b9105c1e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDAndD.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'd-and-d', icon: [576, 512, [], "f38d", "M82.5 98.9c-.6-17.2 2-33.8 12.7-48.2.3 7.4 1.2 14.5 4.2 21.6 5.9-27.5 19.7-49.3 42.3-65.5-1.9 5.9-3.5 11.8-3 17.7 8.7-7.4 18.8-17.8 44.4-22.7 14.7-2.8 29.7-2 42.1 1 38.5 9.3 61 34.3 69.7 72.3 5.3 23.1.7 45-8.3 66.4-5.2 12.4-12 24.4-20.7 35.1-2-1.9-3.9-3.8-5.8-5.6-42.8-40.8-26.8-25.2-37.4-37.4-1.1-1.2-1-2.2-.1-3.6 8.3-13.5 11.8-28.2 10-44-1.1-9.8-4.3-18.9-11.3-26.2-14.5-15.3-39.2-15-53.5.6-11.4 12.5-14.1 27.4-10.9 43.6.2 1.3.4 2.7 0 3.9-3.4 13.7-4.6 27.6-2.5 41.6.1.5.1 1.1.1 1.6 0 .3-.1.5-.2 1.1-21.8-11-36-28.3-43.2-52.2-8.3 17.8-11.1 35.5-6.6 54.1-15.6-15.2-21.3-34.3-22-55.2zm469.6 123.2c-11.6-11.6-25-20.4-40.1-26.6-12.8-5.2-26-7.9-39.9-7.1-10 .6-19.6 3.1-29 6.4-2.5.9-5.1 1.6-7.7 2.2-4.9 1.2-7.3-3.1-4.7-6.8 3.2-4.6 3.4-4.2 15-12 .6-.4 1.2-.8 2.2-1.5h-2.5c-.6 0-1.2.2-1.9.3-19.3 3.3-30.7 15.5-48.9 29.6-10.4 8.1-13.8 3.8-12-.5 1.4-3.5 3.3-6.7 5.1-10 1-1.8 2.3-3.4 3.5-5.1-.2-.2-.5-.3-.7-.5-27 18.3-46.7 42.4-57.7 73.3.3.3.7.6 1 .9.3-.6.5-1.2.9-1.7 10.4-12.1 22.8-21.8 36.6-29.8 18.2-10.6 37.5-18.3 58.7-20.2 4.3-.4 8.7-.1 13.1-.1-1.8.7-3.5.9-5.3 1.1-18.5 2.4-35.5 9-51.5 18.5-30.2 17.9-54.5 42.2-75.1 70.4-.3.4-.4.9-.7 1.3 14.5 5.3 24 17.3 36.1 25.6.2-.1.3-.2.4-.4l1.2-2.7c12.2-26.9 27-52.3 46.7-74.5 16.7-18.8 38-25.3 62.5-20 5.9 1.3 11.4 4.4 17.2 6.8 2.3-1.4 5.1-3.2 8-4.7 8.4-4.3 17.4-7 26.7-9 14.7-3.1 29.5-4.9 44.5-1.3v-.5c-.5-.4-1.2-.8-1.7-1.4zM316.7 397.6c-39.4-33-22.8-19.5-42.7-35.6-.8.9 0-.2-1.9 3-11.2 19.1-25.5 35.3-44 47.6-10.3 6.8-21.5 11.8-34.1 11.8-21.6 0-38.2-9.5-49.4-27.8-12-19.5-13.3-40.7-8.2-62.6 7.8-33.8 30.1-55.2 38.6-64.3-18.7-6.2-33 1.7-46.4 13.9.8-13.9 4.3-26.2 11.8-37.3-24.3 10.6-45.9 25-64.8 43.9-.3-5.8 5.4-43.7 5.6-44.7.3-2.7-.6-5.3-3-7.4-24.2 24.7-44.5 51.8-56.1 84.6 7.4-5.9 14.9-11.4 23.6-16.2-8.3 22.3-19.6 52.8-7.8 101.1 4.6 19 11.9 36.8 24.1 52.3 2.9 3.7 6.3 6.9 9.5 10.3.2-.2.4-.3.6-.5-1.4-7-2.2-14.1-1.5-21.9 2.2 3.2 3.9 6 5.9 8.6 12.6 16 28.7 27.4 47.2 35.6 25 11.3 51.1 13.3 77.9 8.6 54.9-9.7 90.7-48.6 116-98.8 1-1.8.6-2.9-.9-4.2zm172-46.4c-9.5-3.1-22.2-4.2-28.7-2.9 9.9 4 14.1 6.6 18.8 12 12.6 14.4 10.4 34.7-5.4 45.6-11.7 8.1-24.9 10.5-38.9 9.1-1.2-.1-2.3-.4-3-.6 2.8-3.7 6-7 8.1-10.8 9.4-16.8 5.4-42.1-8.7-56.1-2.1-2.1-4.6-3.9-7-5.9-.3 1.3-.1 2.1.1 2.8 4.2 16.6-8.1 32.4-24.8 31.8-7.6-.3-13.9-3.8-19.6-8.5-19.5-16.1-39.1-32.1-58.5-48.3-5.9-4.9-12.5-8.1-20.1-8.7-4.6-.4-9.3-.6-13.9-.9-5.9-.4-8.8-2.8-10.4-8.4-.9-3.4-1.5-6.8-2.2-10.2-1.5-8.1-6.2-13-14.3-14.2-4.4-.7-8.9-1-13.3-1.5-13-1.4-19.8-7.4-22.6-20.3-5 11-1.6 22.4 7.3 29.9 4.5 3.8 9.3 7.3 13.8 11.2 4.6 3.8 7.4 8.7 7.9 14.8.4 4.7.8 9.5 1.8 14.1 2.2 10.6 8.9 18.4 17 25.1 16.5 13.7 33 27.3 49.5 41.1 17.9 15 13.9 32.8 13 56-.9 22.9 12.2 42.9 33.5 51.2 1 .4 2 .6 3.6 1.1-15.7-18.2-10.1-44.1.7-52.3.3 2.2.4 4.3.9 6.4 9.4 44.1 45.4 64.2 85 56.9 16-2.9 30.6-8.9 42.9-19.8 2-1.8 3.7-4.1 5.9-6.5-19.3 4.6-35.8.1-50.9-10.6.7-.3 1.3-.3 1.9-.3 21.3 1.8 40.6-3.4 57-17.4 19.5-16.6 26.6-42.9 17.4-66-8.3-20.1-23.6-32.3-43.8-38.9zM99.4 179.3c-5.3-9.2-13.2-15.6-22.1-21.3 13.7-.5 26.6.2 39.6 3.7-7-12.2-8.5-24.7-5-38.7 5.3 11.9 13.7 20.1 23.6 26.8 19.7 13.2 35.7 19.6 46.7 30.2 3.4 3.3 6.3 7.1 9.6 10.9-.8-2.1-1.4-4.1-2.2-6-5-10.6-13-18.6-22.6-25-1.8-1.2-2.8-2.5-3.4-4.5-3.3-12.5-3-25.1-.7-37.6 1-5.5 2.8-10.9 4.5-16.3.8-2.4 2.3-4.6 4-6.6.6 6.9 0 25.5 19.6 46 10.8 11.3 22.4 21.9 33.9 32.7 9 8.5 18.3 16.7 25.5 26.8 1.1 1.6 2.2 3.3 3.8 4.7-5-13-14.2-24.1-24.2-33.8-9.6-9.3-19.4-18.4-29.2-27.4-3.3-3-4.6-6.7-5.1-10.9-1.2-10.4 0-20.6 4.3-30.2.5-1 1.1-2 1.9-3.3.5 4.2.6 7.9 1.4 11.6 4.8 23.1 20.4 36.3 49.3 63.5 10 9.4 19.3 19.2 25.6 31.6 4.8 9.3 7.3 19 5.7 29.6-.1.6.5 1.7 1.1 2 6.2 2.6 10 6.9 9.7 14.3 7.7-2.6 12.5-8 16.4-14.5 4.2 20.2-9.1 50.3-27.2 58.7.4-4.5 5-23.4-16.5-27.7-6.8-1.3-12.8-1.3-22.9-2.1 4.7-9 10.4-20.6.5-22.4-24.9-4.6-52.8 1.9-57.8 4.6 8.2.4 16.3 1 23.5 3.3-2 6.5-4 12.7-5.8 18.9-1.9 6.5 2.1 14.6 9.3 9.6 1.2-.9 2.3-1.9 3.3-2.7-3.1 17.9-2.9 15.9-2.8 18.3.3 10.2 9.5 7.8 15.7 7.3-2.5 11.8-29.5 27.3-45.4 25.8 7-4.7 12.7-10.3 15.9-17.9-6.5.8-12.9 1.6-19.2 2.4l-.3-.9c4.7-3.4 8-7.8 10.2-13.1 8.7-21.1-3.6-38-25-39.9-9.1-.8-17.8.8-25.9 5.5 6.2-15.6 17.2-26.6 32.6-34.5-15.2-4.3-8.9-2.7-24.6-6.3 14.6-9.3 30.2-13.2 46.5-14.6-5.2-3.2-48.1-3.6-70.2 20.9 7.9 1.4 15.5 2.8 23.2 4.2-23.8 7-44 19.7-62.4 35.6 1.1-4.8 2.7-9.5 3.3-14.3.6-4.5.8-9.2.1-13.6-1.5-9.4-8.9-15.1-19.7-16.3-7.9-.9-15.6.1-23.3 1.3-.9.1-1.7.3-2.9 0 15.8-14.8 36-21.7 53.1-33.5 6-4.5 6.8-8.2 3-14.9zm128.4 26.8c3.3 16 12.6 25.5 23.8 24.3-4.6-11.3-12.1-19.5-23.8-24.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDashcube.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDashcube.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDashcube.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDashcube.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDashcube.js new file mode 100644 index 0000000000..6066006ded --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDashcube.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'dashcube', icon: [448, 512, [], "f210", "M326.6 104H110.4c-51.1 0-91.2 43.3-91.2 93.5V427c0 50.5 40.1 85 91.2 85h227.2c51.1 0 91.2-34.5 91.2-85V0L326.6 104zM153.9 416.5c-17.7 0-32.4-15.1-32.4-32.8V240.8c0-17.7 14.7-32.5 32.4-32.5h140.7c17.7 0 32 14.8 32 32.5v123.5l51.1 52.3H153.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDelicious.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDelicious.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDelicious.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDelicious.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDelicious.js new file mode 100644 index 0000000000..9738e7a912 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDelicious.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'delicious', icon: [448, 512, [], "f1a5", "M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1.5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3 1 1.1 2.1 2.2 3.3 3.3 5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12zM416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192v176z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDeploydog.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDeploydog.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDeploydog.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDeploydog.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDeploydog.js new file mode 100644 index 0000000000..ae339c78f6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDeploydog.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'deploydog', icon: [512, 512, [], "f38e", "M382.2 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.6 0-33.2 16.4-33.2 32.6zM188.5 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.7 0-33.2 16.4-33.2 32.6zM448 96c17.5 0 32 14.4 32 32v256c0 17.5-14.4 32-32 32H64c-17.5 0-32-14.4-32-32V128c0-17.5 14.4-32 32-32h384m0-32H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h384c35.2 0 64-28.8 64-64V128c0-35.2-28.8-64-64-64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDeskpro.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDeskpro.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDeskpro.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDeskpro.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDeskpro.js new file mode 100644 index 0000000000..8c76fce988 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDeskpro.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'deskpro', icon: [480, 512, [], "f38f", "M205.9 512l31.1-38.4c12.3-.2 25.6-1.4 36.5-6.6 38.9-18.6 38.4-61.9 38.3-63.8-.1-5-.8-4.4-28.9-37.4H362c-.2 50.1-7.3 68.5-10.2 75.7-9.4 23.7-43.9 62.8-95.2 69.4-8.7 1.1-32.8 1.2-50.7 1.1zm200.4-167.7c38.6 0 58.5-13.6 73.7-30.9l-175.5-.3-17.4 31.3 119.2-.1zm-43.6-223.9v168.3h-73.5l-32.7 55.5H250c-52.3 0-58.1-56.5-58.3-58.9-1.2-13.2-21.3-11.6-20.1 1.8 1.4 15.8 8.8 40 26.4 57.1h-91c-25.5 0-110.8-26.8-107-114V16.9C0 .9 9.7.3 15 .1h82c.2 0 .3.1.5.1 4.3-.4 50.1-2.1 50.1 43.7 0 13.3 20.2 13.4 20.2 0 0-18.2-5.5-32.8-15.8-43.7h84.2c108.7-.4 126.5 79.4 126.5 120.2zm-132.5 56l64 29.3c13.3-45.5-42.2-71.7-64-29.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDeviantart.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDeviantart.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDeviantart.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDeviantart.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDeviantart.js new file mode 100644 index 0000000000..80d7412063 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDeviantart.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'deviantart', icon: [320, 512, [], "f1bd", "M320 93.2l-98.2 179.1 7.4 9.5H320v127.7H159.1l-13.5 9.2-43.7 84c-.3 0-8.6 8.6-9.2 9.2H0v-93.2l93.2-179.4-7.4-9.2H0V102.5h156l13.5-9.2 43.7-84c.3 0 8.6-8.6 9.2-9.2H320v93.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDigg.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDigg.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDigg.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDigg.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDigg.js new file mode 100644 index 0000000000..17855a0d01 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDigg.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'digg', icon: [512, 512, [], "f1a6", "M81.7 172.3H0v174.4h132.7V96h-51v76.3zm0 133.4H50.9v-92.3h30.8v92.3zm297.2-133.4v174.4h81.8v28.5h-81.8V416H512V172.3H378.9zm81.8 133.4h-30.8v-92.3h30.8v92.3zm-235.6 41h82.1v28.5h-82.1V416h133.3V172.3H225.1v174.4zm51.2-133.3h30.8v92.3h-30.8v-92.3zM153.3 96h51.3v51h-51.3V96zm0 76.3h51.3v174.4h-51.3V172.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDigitalOcean.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDigitalOcean.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDigitalOcean.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDigitalOcean.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDigitalOcean.js new file mode 100644 index 0000000000..300d08400a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDigitalOcean.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'digital-ocean', icon: [512, 512, [], "f391", "M256 504v-96.1c101.8 0 180.8-100.9 141.7-208-14.3-39.6-46.1-71.4-85.8-85.7-107.1-38.8-208.1 39.9-208.1 141.7H8C8 93.7 164.9-32.8 335 20.3c74.2 23.3 133.6 82.4 156.6 156.6C544.8 347.2 418.6 504 256 504zm.3-191.4h-95.6v95.6h95.6v-95.6zm-95.6 95.6H87v73.6h73.7v-73.6zM87 346.6H25.4v61.6H87v-61.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDiscord.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDiscord.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDiscord.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDiscord.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDiscord.js new file mode 100644 index 0000000000..582a19a11c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDiscord.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'discord', icon: [448, 512, [], "f392", "M297.216 243.2c0 15.616-11.52 28.416-26.112 28.416-14.336 0-26.112-12.8-26.112-28.416s11.52-28.416 26.112-28.416c14.592 0 26.112 12.8 26.112 28.416zm-119.552-28.416c-14.592 0-26.112 12.8-26.112 28.416s11.776 28.416 26.112 28.416c14.592 0 26.112-12.8 26.112-28.416.256-15.616-11.52-28.416-26.112-28.416zM448 52.736V512c-64.494-56.994-43.868-38.128-118.784-107.776l13.568 47.36H52.48C23.552 451.584 0 428.032 0 398.848V52.736C0 23.552 23.552 0 52.48 0h343.04C424.448 0 448 23.552 448 52.736zm-72.96 242.688c0-82.432-36.864-149.248-36.864-149.248-36.864-27.648-71.936-26.88-71.936-26.88l-3.584 4.096c43.52 13.312 63.744 32.512 63.744 32.512-60.811-33.329-132.244-33.335-191.232-7.424-9.472 4.352-15.104 7.424-15.104 7.424s21.248-20.224 67.328-33.536l-2.56-3.072s-35.072-.768-71.936 26.88c0 0-36.864 66.816-36.864 149.248 0 0 21.504 37.12 78.08 38.912 0 0 9.472-11.52 17.152-21.248-32.512-9.728-44.8-30.208-44.8-30.208 3.766 2.636 9.976 6.053 10.496 6.4 43.21 24.198 104.588 32.126 159.744 8.96 8.96-3.328 18.944-8.192 29.44-15.104 0 0-12.8 20.992-46.336 30.464 7.68 9.728 16.896 20.736 16.896 20.736 56.576-1.792 78.336-38.912 78.336-38.912z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDiscourse.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDiscourse.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDiscourse.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDiscourse.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDiscourse.js new file mode 100644 index 0000000000..737ce307f5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDiscourse.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'discourse', icon: [448, 512, [], "f393", "M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDochub.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDochub.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDochub.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDochub.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDochub.js new file mode 100644 index 0000000000..8f95a3bde9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDochub.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'dochub', icon: [416, 512, [], "f394", "M397.9 160H256V19.6L397.9 160zM304 192v130c0 66.8-36.5 100.1-113.3 100.1H96V84.8h94.7c12 0 23.1.8 33.1 2.5v-84C212.9 1.1 201.4 0 189.2 0H0v512h189.2C329.7 512 400 447.4 400 318.1V192h-96z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDocker.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDocker.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDocker.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDocker.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDocker.js new file mode 100644 index 0000000000..005cfdd8f4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDocker.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'docker', icon: [640, 512, [], "f395", "M349.9 236.3h-66.1v-59.4h66.1v59.4zm0-204.3h-66.1v60.7h66.1V32zm78.2 144.8H362v59.4h66.1v-59.4zm-156.3-72.1h-66.1v60.1h66.1v-60.1zm78.1 0h-66.1v60.1h66.1v-60.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4.4 67.6.1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1l-13.3-8.9zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm-78.1-72.1h-66.1v60.1h66.1v-60.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDraft2digital.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDraft2digital.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDraft2digital.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDraft2digital.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDraft2digital.js new file mode 100644 index 0000000000..c4a697a434 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDraft2digital.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'draft2digital', icon: [480, 512, [], "f396", "M369.9 425.4V371l47.1 27.2-47.1 27.2zM82.4 380.6c25.5-27.3 97.7-104.7 150.9-170 35.1-43.1 40.3-82.4 28.4-112.7-7.4-18.8-17.5-30.2-24.3-35.7 45.3 2.1 68 23.4 82.2 38.3 0 0 42.4 48.2 5.8 113.3-37 65.9-110.9 147.5-128.5 166.7H82.4zm51.8-219.2c0 12.4-10 22.4-22.4 22.4-12.4 0-22.4-10-22.4-22.4 0-12.4 10-22.4 22.4-22.4 12.4 0 22.4 10.1 22.4 22.4M336 315.9v64.7h-91.3c30.8-35 81.8-95.9 111.8-149.3 35.2-62.6 16.1-123.4-12.8-153.3-4.4-4.6-62.2-62.9-166-41.2-59.1 12.4-89.4 43.4-104.3 67.3-13.1 20.9-17 39.8-18.2 47.7-5.5 33 19.4 67.1 56.7 67.1 31.7 0 57.3-25.7 57.3-57.4 0-27.1-19.7-52.1-48-56.8 1.8-7.3 17.7-21.1 26.3-24.7 41.1-17.3 78 5.2 83.3 33.5 8.3 44.3-37.1 90.4-69.7 127.6C84.5 328.1 18.3 396.8 0 415.9l336-.1V480l144-81.9-144-82.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDribbble.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDribbble.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDribbble.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDribbble.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDribbble.js new file mode 100644 index 0000000000..902132267a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDribbble.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'dribbble', icon: [512, 512, [], "f17d", "M256 8C119.252 8 8 119.252 8 256s111.252 248 248 248 248-111.252 248-248S392.748 8 256 8zm163.97 114.366c29.503 36.046 47.369 81.957 47.835 131.955-6.984-1.477-77.018-15.682-147.502-6.818-5.752-14.041-11.181-26.393-18.617-41.614 78.321-31.977 113.818-77.482 118.284-83.523zM396.421 97.87c-3.81 5.427-35.697 48.286-111.021 76.519-34.712-63.776-73.185-116.168-79.04-124.008 67.176-16.193 137.966 1.27 190.061 47.489zm-230.48-33.25c5.585 7.659 43.438 60.116 78.537 122.509-99.087 26.313-186.36 25.934-195.834 25.809C62.38 147.205 106.678 92.573 165.941 64.62zM44.17 256.323c0-2.166.043-4.322.108-6.473 9.268.19 111.92 1.513 217.706-30.146 6.064 11.868 11.857 23.915 17.174 35.949-76.599 21.575-146.194 83.527-180.531 142.306C64.794 360.405 44.17 310.73 44.17 256.323zm81.807 167.113c22.127-45.233 82.178-103.622 167.579-132.756 29.74 77.283 42.039 142.053 45.189 160.638-68.112 29.013-150.015 21.053-212.768-27.882zm248.38 8.489c-2.171-12.886-13.446-74.897-41.152-151.033 66.38-10.626 124.7 6.768 131.947 9.055-9.442 58.941-43.273 109.844-90.795 141.978z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDribbbleSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDribbbleSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDribbbleSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDribbbleSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDribbbleSquare.js new file mode 100644 index 0000000000..9c8de9ef2a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDribbbleSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'dribbble-square', icon: [448, 512, [], "f397", "M90.2 228.2c8.9-42.4 37.4-77.7 75.7-95.7 3.6 4.9 28 38.8 50.7 79-64 17-120.3 16.8-126.4 16.7zM314.6 154c-33.6-29.8-79.3-41.1-122.6-30.6 3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4zM140.1 364c40.5 31.6 93.3 36.7 137.3 18-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6zm98.8-108.2c-3.4-7.8-7.2-15.5-11.1-23.2C159.6 253 93.4 252.2 87.4 252c0 1.4-.1 2.8-.1 4.2 0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8zm34.9 16.3c17.9 49.1 25.1 89.1 26.5 97.4 30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8zm-20.3-48.4c4.8 9.8 8.3 17.8 12 26.8 45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 176c0-88.2-71.8-160-160-160S64 167.8 64 256s71.8 160 160 160 160-71.8 160-160z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDropbox.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDropbox.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDropbox.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDropbox.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDropbox.js new file mode 100644 index 0000000000..fbf27b2a08 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDropbox.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'dropbox', icon: [528, 512, [], "f16b", "M264.4 116.3l-132 84.3 132 84.3-132 84.3L0 284.1l132.3-84.3L0 116.3 132.3 32l132.1 84.3zM131.6 395.7l132-84.3 132 84.3-132 84.3-132-84.3zm132.8-111.6l132-84.3-132-83.6L395.7 32 528 116.3l-132.3 84.3L528 284.8l-132.3 84.3-131.3-85z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDrupal.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDrupal.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDrupal.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDrupal.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDrupal.js new file mode 100644 index 0000000000..a178457125 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDrupal.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'drupal', icon: [448, 512, [], "f1a9", "M319.5 114.7c-22.2-14-43.5-19.5-64.7-33.5-13-8.8-31.3-30-46.5-48.3-2.7 29.3-11.5 41.2-22 49.5-21.3 17-34.8 22.2-53.5 32.3C117 123 32 181.5 32 290.5 32 399.7 123.8 480 225.8 480 327.5 480 416 406 416 294c0-112.3-83-171-96.5-179.3zm2.5 325.6c-20.1 20.1-90.1 28.7-116.7 4.2-4.8-4.8.3-12 6.5-12 0 0 17 13.3 51.5 13.3 27 0 46-7.7 54.5-14 6.1-4.6 8.4 4.3 4.2 8.5zm-54.5-52.6c8.7-3.6 29-3.8 36.8 1.3 4.1 2.8 16.1 18.8 6.2 23.7-8.4 4.2-1.2-15.7-26.5-15.7-14.7 0-19.5 5.2-26.7 11-7 6-9.8 8-12.2 4.7-6-8.2 15.9-22.3 22.4-25zM360 405c-15.2-1-45.5-48.8-65-49.5-30.9-.9-104.1 80.7-161.3 42-38.8-26.6-14.6-104.8 51.8-105.2 49.5-.5 83.8 49 108.5 48.5 21.3-.3 61.8-41.8 81.8-41.8 48.7 0 23.3 109.3-15.8 106z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDyalog.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDyalog.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDyalog.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDyalog.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDyalog.js new file mode 100644 index 0000000000..9e4f67ab28 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faDyalog.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'dyalog', icon: [416, 512, [], "f399", "M0 32v119.2h64V96h107.2C284.6 96 352 176.2 352 255.9 352 332 293.4 416 171.2 416H0v64h171.2C331.9 480 416 367.3 416 255.9c0-58.7-22.1-113.4-62.3-154.3C308.9 56 245.7 32 171.2 32H0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEarlybirds.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEarlybirds.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEarlybirds.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEarlybirds.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEarlybirds.js new file mode 100644 index 0000000000..3b5319d3ca --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEarlybirds.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'earlybirds', icon: [480, 512, [], "f39a", "M313.2 47.5c1.2-13 21.3-14 36.6-8.7.9.3 26.2 9.7 19 15.2-27.9-7.4-56.4 18.2-55.6-6.5zm-201 6.9c30.7-8.1 62 20 61.1-7.1-1.3-14.2-23.4-15.3-40.2-9.6-1 .3-28.7 10.5-20.9 16.7zM319.4 160c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-159.7 0c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm318.5 163.2c-9.9 24-40.7 11-63.9-1.2-13.5 69.1-58.1 111.4-126.3 124.2.3.9-2-.1 24 1 33.6 1.4 63.8-3.1 97.4-8-19.8-13.8-11.4-37.1-9.8-38.1 1.4-.9 14.7 1.7 21.6 11.5 8.6-12.5 28.4-14.8 30.2-13.6 1.6 1.1 6.6 20.9-6.9 34.6 4.7-.9 8.2-1.6 9.8-2.1 2.6-.8 17.7 11.3 3.1 13.3-14.3 2.3-22.6 5.1-47.1 10.8-45.9 10.7-85.9 11.8-117.7 12.8l1 11.6c3.8 18.1-23.4 24.3-27.6 6.2.8 17.9-27.1 21.8-28.4-1l-.5 5.3c-.7 18.4-28.4 17.9-28.3-.6-7.5 13.5-28.1 6.8-26.4-8.5l1.2-12.4c-36.7.9-59.7 3.1-61.8 3.1-20.9 0-20.9-31.6 0-31.6 2.4 0 27.7 1.3 63.2 2.8-61.1-15.5-103.7-55-114.9-118.2-25 12.8-57.5 26.8-68.2.8-10.5-25.4 21.5-42.6 66.8-73.4.7-6.6 1.6-13.3 2.7-19.8-14.4-19.6-11.6-36.3-16.1-60.4-16.8 2.4-23.2-9.1-23.6-23.1.3-7.3 2.1-14.9 2.4-15.4 1.1-1.8 10.1-2 12.7-2.6 6-31.7 50.6-33.2 90.9-34.5 19.7-21.8 45.2-41.5 80.9-48.3C203.3 29 215.2 8.5 216.2 8c1.7-.8 21.2 4.3 26.3 23.2 5.2-8.8 18.3-11.4 19.6-10.7 1.1.6 6.4 15-4.9 25.9 40.3 3.5 72.2 24.7 96 50.7 36.1 1.5 71.8 5.9 77.1 34 2.7.6 11.6.8 12.7 2.6.3.5 2.1 8.1 2.4 15.4-.5 13.9-6.8 25.4-23.6 23.1-3.2 17.3-2.7 32.9-8.7 47.7 2.4 11.7 4 23.8 4.8 36.4 37 25.4 70.3 42.5 60.3 66.9zM207.4 159.9c.9-44-37.9-42.2-78.6-40.3-21.7 1-38.9 1.9-45.5 13.9-11.4 20.9 5.9 92.9 23.2 101.2 9.8 4.7 73.4 7.9 86.3-7.1 8.2-9.4 15-49.4 14.6-67.7zm52 58.3c-4.3-12.4-6-30.1-15.3-32.7-2-.5-9-.5-11 0-10 2.8-10.8 22.1-17 37.2 15.4 0 19.3 9.7 23.7 9.7 4.3 0 6.3-11.3 19.6-14.2zm135.7-84.7c-6.6-12.1-24.8-12.9-46.5-13.9-40.2-1.9-78.2-3.8-77.3 40.3-.5 18.3 5 58.3 13.2 67.8 13 14.9 76.6 11.8 86.3 7.1 15.8-7.6 36.5-78.9 24.3-101.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEbay.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEbay.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEbay.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEbay.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEbay.js new file mode 100644 index 0000000000..48516a8806 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEbay.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'ebay', icon: [640, 512, [], "f4f4", "M405.2 263.8c-29.1.9-47.2 6.2-47.2 25.3 0 12.4 9.9 25.8 35 25.8 33.7 0 51.6-18.4 51.6-48.4v-3.3c-11.8 0-26.3.1-39.4.6m71.5 39.7c0 9.3.3 18.6 1 26.8h-29.8c-.8-6.9-1.1-13.6-1.1-20.2-16.1 19.8-35.3 25.5-61.9 25.5-39.5 0-60.6-20.9-60.6-45 0-35 28.8-47.3 78.6-48.4 13.7-.3 29-.4 41.7-.4v-3.4c0-23.4-15-33-41-33-19.3 0-33.6 8-35 21.8h-33.7c3.6-34.4 39.7-43.1 71.5-43.1 38.1 0 70.3 13.5 70.3 53.8v65.6zm-349-56.8c-2.3-54.7-87.5-56.6-94.4 0h94.4zm-95 21.4c3.5 58.3 79.2 57.4 91.2 21.6H157c-6.4 34.4-43 46.1-74.4 46.1-57.2 0-82.5-31.5-82.5-74 0-46.8 26.2-77.6 83-77.6 45.3 0 78.4 23.7 78.4 75.4v8.5H32.7zm211 45.7c29.8 0 50.2-21.5 50.2-53.8 0-32.4-20.4-53.8-50.2-53.8-29.6 0-50.2 21.4-50.2 53.8 0 32.3 20.6 53.8 50.2 53.8m-82.2-186h32.1v80.6c15.7-18.7 37.4-24.2 58.7-24.2 35.7 0 75.4 24.1 75.4 76.2 0 43.6-31.5 75.4-76 75.4-23.3 0-45.1-8.3-58.7-24.9 0 6.6-.4 13.2-1.1 19.5h-31.5c.5-10.2 1.1-22.8 1.1-33.1V127.8zM640 189.5l-99.2 194.8h-35.9l28.5-54.1-74.6-140.7h37.5l54.9 109.9L606 189.5h34z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEdge.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEdge.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEdge.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEdge.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEdge.js new file mode 100644 index 0000000000..a24eb3fbed --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEdge.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'edge', icon: [512, 512, [], "f282", "M25.714 228.163c.111-.162.23-.323.342-.485-.021.162-.045.323-.065.485h-.277zm460.572 15.508c0-44.032-7.754-84.465-28.801-122.405C416.498 47.879 343.912 8.001 258.893 8.001 118.962 7.724 40.617 113.214 26.056 227.679c42.429-61.312 117.073-121.376 220.375-124.966 0 0 109.666 0 99.419 104.957H169.997c6.369-37.386 18.554-58.986 34.339-78.926-75.048 34.893-121.85 96.096-120.742 188.315.83 71.448 50.124 144.836 120.743 171.976 83.357 31.847 192.776 7.2 240.132-21.324V363.307c-80.864 56.494-270.871 60.925-272.255-67.572h314.073v-52.064z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faElementor.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faElementor.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faElementor.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faElementor.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faElementor.js new file mode 100644 index 0000000000..f51856e62e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faElementor.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'elementor', icon: [448, 512, [], "f430", "M425.6 32H22.4C10 32 0 42 0 54.4v403.2C0 470 10 480 22.4 480h403.2c12.4 0 22.4-10 22.4-22.4V54.4C448 42 438 32 425.6 32M164.3 355.5h-39.8v-199h39.8v199zm159.3 0H204.1v-39.8h119.5v39.8zm0-79.6H204.1v-39.8h119.5v39.8zm0-79.7H204.1v-39.8h119.5v39.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEmber.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEmber.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEmber.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEmber.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEmber.js new file mode 100644 index 0000000000..f31fd8d28f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEmber.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'ember', icon: [640, 512, [], "f423", "M639.9 254.6c-1.1-10.7-10.7-6.8-10.7-6.8s-15.6 12.1-29.3 10.7c-13.7-1.3-9.4-32-9.4-32s3-28.1-5.1-30.4c-8.1-2.4-18 7.3-18 7.3s-12.4 13.7-18.3 31.2l-1.6.5s1.9-30.6-.3-37.6c-1.6-3.5-16.4-3.2-18.8 3s-14.2 49.2-15 67.2c0 0-23.1 19.6-43.3 22.8s-25-9.4-25-9.4 54.8-15.3 52.9-59.1c-1.9-43.8-44.2-27.6-49-24-4.6 3.5-29.4 18.4-36.6 59.7-.2 1.4-.7 7.5-.7 7.5s-21.2 14.2-33 18c0 0 33-55.6-7.3-80.9-18.3-11-32.8 12.1-32.8 12.1s54.5-60.7 42.5-112c-5.8-24.4-18-27.1-29.2-23.1-17 6.7-23.5 16.7-23.5 16.7s-22 32-27.1 79.5-12.6 105.1-12.6 105.1-10.5 10.2-20.2 10.7-5.4-28.7-5.4-28.7 7.5-44.6 7-52.1-1.1-11.6-9.9-14.2c-8.9-2.7-18.5 8.6-18.5 8.6s-25.5 38.7-27.7 44.6l-1.3 2.4-1.3-1.6s18-52.7.8-53.5c-17.2-.8-28.5 18.8-28.5 18.8s-19.6 32.8-20.4 36.5l-1.3-1.6s8.1-38.2 6.4-47.6c-1.6-9.4-10.5-7.5-10.5-7.5s-11.3-1.3-14.2 5.9-13.7 55.3-15 70.7c0 0-28.2 20.2-46.8 20.4-18.5.3-16.7-11.8-16.7-11.8s68-23.3 49.4-69.2c-8.3-11.8-18-15.5-31.7-15.3-13.7.3-30.3 8.6-41.3 33.3-5.3 11.8-6.8 23-7.8 31.5 0 0-12.3 2.4-18.8-2.9s-10 0-10 0-11.2 14-.1 18.3 28.1 6.1 28.1 6.1c1.6 7.5 6.2 19.5 19.6 29.7 20.2 15.3 58.8-1.3 58.8-1.3l15.9-8.8s.5 14.6 12.1 16.7c11.6 2.1 16.4 1 36.5-47.9 11.8-25 12.6-23.6 12.6-23.6l1.3-.3s-9.1 46.8-5.6 59.7C187.7 319.4 203 318 203 318s8.3 2.4 15-21.2c6.7-23.6 19.6-49.9 19.6-49.9h1.6s-5.6 48.1 3 63.7c8.6 15.6 30.9 5.3 30.9 5.3s15.6-7.8 18-10.2c0 0 18.5 15.8 44.6 12.9 58.3-11.5 79.1-25.9 79.1-25.9s10 24.4 41.1 26.7c35.5 2.7 54.8-18.6 54.8-18.6s-.3 13.5 12.1 18.6c12.4 5.1 20.7-22.8 20.7-22.8l20.7-57.2h1.9s1.1 37.3 21.5 43.2 47-13.7 47-13.7 6.4-3.5 5.3-14.3zm-578 5.3c.8-32 21.8-45.9 29-39 7.3 7 4.6 22-9.1 31.4-13.7 9.5-19.9 7.6-19.9 7.6zm272.8-123.8s19.1-49.7 23.6-25.5-40 96.2-40 96.2c.5-16.2 16.4-70.7 16.4-70.7zm22.8 138.4c-12.6 33-43.3 19.6-43.3 19.6s-3.5-11.8 6.4-44.9 33.3-20.2 33.3-20.2 16.2 12.4 3.6 45.5zm84.6-14.6s-3-10.5 8.1-30.6c11-20.2 19.6-9.1 19.6-9.1s9.4 10.2-1.3 25.5-26.4 14.2-26.4 14.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEmpire.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEmpire.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEmpire.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEmpire.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEmpire.js new file mode 100644 index 0000000000..54593cbdd5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEmpire.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'empire', icon: [496, 512, [], "f1d1", "M287.6 54.2c-10.8-2.2-22.1-3.3-33.5-3.6V32.4c78.1 2.2 146.1 44 184.6 106.6l-15.8 9.1c-6.1-9.7-12.7-18.8-20.2-27.1l-18 15.5c-26-29.6-61.4-50.7-101.9-58.4l4.8-23.9zM53.4 322.4l23-7.7c-6.4-18.3-10-38.2-10-58.7s3.3-40.4 9.7-58.7l-22.7-7.7c3.6-10.8 8.3-21.3 13.6-31l-15.8-9.1C34 181 24.1 217.5 24.1 256s10 75 27.1 106.6l15.8-9.1c-5.3-10-9.7-20.3-13.6-31.1zM213.1 434c-40.4-8-75.8-29.1-101.9-58.7l-18 15.8c-7.5-8.6-14.4-17.7-20.2-27.4l-16 9.4c38.5 62.3 106.8 104.3 184.9 106.6v-18.3c-11.3-.3-22.7-1.7-33.5-3.6l4.7-23.8zM93.3 120.9l18 15.5c26-29.6 61.4-50.7 101.9-58.4l-4.7-23.8c10.8-2.2 22.1-3.3 33.5-3.6V32.4C163.9 34.6 95.9 76.4 57.4 139l15.8 9.1c6-9.7 12.6-18.9 20.1-27.2zm309.4 270.2l-18-15.8c-26 29.6-61.4 50.7-101.9 58.7l4.7 23.8c-10.8 1.9-22.1 3.3-33.5 3.6v18.3c78.1-2.2 146.4-44.3 184.9-106.6l-16.1-9.4c-5.7 9.7-12.6 18.8-20.1 27.4zM496 256c0 137-111 248-248 248S0 393 0 256 111 8 248 8s248 111 248 248zm-12.2 0c0-130.1-105.7-235.8-235.8-235.8S12.2 125.9 12.2 256 117.9 491.8 248 491.8 483.8 386.1 483.8 256zm-39-106.6l-15.8 9.1c5.3 9.7 10 20.2 13.6 31l-22.7 7.7c6.4 18.3 9.7 38.2 9.7 58.7s-3.6 40.4-10 58.7l23 7.7c-3.9 10.8-8.3 21-13.6 31l15.8 9.1C462 331 471.9 294.5 471.9 256s-9.9-75-27.1-106.6zm-183 177.7c16.3-3.3 30.4-11.6 40.7-23.5l51.2 44.8c11.9-13.6 21.3-29.3 27.1-46.8l-64.2-22.1c2.5-7.5 3.9-15.2 3.9-23.5s-1.4-16.1-3.9-23.5l64.5-22.1c-6.1-17.4-15.5-33.2-27.4-46.8l-51.2 44.8c-10.2-11.9-24.4-20.5-40.7-23.8l13.3-66.4c-8.6-1.9-17.7-2.8-27.1-2.8-9.4 0-18.5.8-27.1 2.8l13.3 66.4c-16.3 3.3-30.4 11.9-40.7 23.8l-51.2-44.8c-11.9 13.6-21.3 29.3-27.4 46.8l64.5 22.1c-2.5 7.5-3.9 15.2-3.9 23.5s1.4 16.1 3.9 23.5l-64.2 22.1c5.8 17.4 15.2 33.2 27.1 46.8l51.2-44.8c10.2 11.9 24.4 20.2 40.7 23.5l-13.3 66.7c8.6 1.7 17.7 2.8 27.1 2.8 9.4 0 18.5-1.1 27.1-2.8l-13.3-66.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEnvira.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEnvira.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEnvira.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEnvira.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEnvira.js new file mode 100644 index 0000000000..30891753b7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEnvira.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'envira', icon: [448, 512, [], "f299", "M0 32c477.6 0 366.6 317.3 367.1 366.3L448 480h-26l-70.4-71.2c-39 4.2-124.4 34.5-214.4-37C47 300.3 52 214.7 0 32zm79.7 46c-49.7-23.5-5.2 9.2-5.2 9.2 45.2 31.2 66 73.7 90.2 119.9 31.5 60.2 79 139.7 144.2 167.7 65 28 34.2 12.5 6-8.5-28.2-21.2-68.2-87-91-130.2-31.7-60-61-118.6-144.2-158.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faErlang.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faErlang.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faErlang.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faErlang.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faErlang.js new file mode 100644 index 0000000000..03d0d5c5d0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faErlang.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'erlang', icon: [640, 512, [], "f39d", "M21.7 246.4c-.1 86.8 29 159.5 78.7 212.1H0v-405h87.2c-41.5 50.2-65.6 116.2-65.5 192.9zM640 53.6h-83.6c31.4 42.7 48.7 97.5 46.2 162.7.5 6 .5 11.7 0 24.1H230.2c-.2 109.7 38.9 194.9 138.6 195.3 68.5-.3 118-51 151.9-106.1l96.4 48.2c-17.4 30.9-36.5 57.8-57.9 80.8H640v-405zm-80.8 405s0-.1 0 0h-.2.2zm-3.1-405h.3l-.1-.1-.2.1zm-230.7 9.6c-45.9.1-85.1 33.5-89.2 83.2h169.9c-1.1-49.7-34.5-83.1-80.7-83.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEthereum.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEthereum.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEthereum.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEthereum.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEthereum.js new file mode 100644 index 0000000000..4dec6c9816 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEthereum.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'ethereum', icon: [320, 512, [], "f42e", "M311.9 260.8L160 353.6 8 260.8 160 0l151.9 260.8zM160 383.4L8 290.6 160 512l152-221.4-152 92.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEtsy.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEtsy.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEtsy.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEtsy.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEtsy.js new file mode 100644 index 0000000000..9b857fa30b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faEtsy.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'etsy', icon: [384, 512, [], "f2d7", "M384 348c-1.75 10.75-13.75 110-15.5 132-117.879-4.299-219.895-4.743-368.5 0v-25.5c45.457-8.948 60.627-8.019 61-35.25 1.793-72.322 3.524-244.143 0-322-1.029-28.46-12.13-26.765-61-36v-25.5c73.886 2.358 255.933 8.551 362.999-3.75-3.5 38.25-7.75 126.5-7.75 126.5H332C320.947 115.665 313.241 68 277.25 68h-137c-10.25 0-10.75 3.5-10.75 9.75V241.5c58 .5 88.5-2.5 88.5-2.5 29.77-.951 27.56-8.502 40.75-65.251h25.75c-4.407 101.351-3.91 61.829-1.75 160.25H257c-9.155-40.086-9.065-61.045-39.501-61.5 0 0-21.5-2-88-2v139c0 26 14.25 38.25 44.25 38.25H263c63.636 0 66.564-24.996 98.751-99.75H384z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faExpeditedssl.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faExpeditedssl.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faExpeditedssl.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faExpeditedssl.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faExpeditedssl.js new file mode 100644 index 0000000000..6bf9a9576d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faExpeditedssl.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'expeditedssl', icon: [496, 512, [], "f23e", "M248 43.4C130.6 43.4 35.4 138.6 35.4 256S130.6 468.6 248 468.6 460.6 373.4 460.6 256 365.4 43.4 248 43.4zm-97.4 132.9c0-53.7 43.7-97.4 97.4-97.4s97.4 43.7 97.4 97.4v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6c0-82.1-124-82.1-124 0v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6zM389.7 380c0 9.7-8 17.7-17.7 17.7H124c-9.7 0-17.7-8-17.7-17.7V238.3c0-9.7 8-17.7 17.7-17.7h248c9.7 0 17.7 8 17.7 17.7V380zm-248-137.3v132.9c0 2.5-1.9 4.4-4.4 4.4h-8.9c-2.5 0-4.4-1.9-4.4-4.4V242.7c0-2.5 1.9-4.4 4.4-4.4h8.9c2.5 0 4.4 1.9 4.4 4.4zm141.7 48.7c0 13-7.2 24.4-17.7 30.4v31.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-31.6c-10.5-6.1-17.7-17.4-17.7-30.4 0-19.7 15.8-35.4 35.4-35.4s35.5 15.8 35.5 35.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 478.3C121 486.3 17.7 383 17.7 256S121 25.7 248 25.7 478.3 129 478.3 256 375 486.3 248 486.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebook.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebook.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebook.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebook.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebook.js new file mode 100644 index 0000000000..42ae63d9d4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebook.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'facebook', icon: [448, 512, [], "f09a", "M448 56.7v398.5c0 13.7-11.1 24.7-24.7 24.7H309.1V306.5h58.2l8.7-67.6h-67v-43.2c0-19.6 5.4-32.9 33.5-32.9h35.8v-60.5c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9h-58.4v67.6h58.4V480H24.7C11.1 480 0 468.9 0 455.3V56.7C0 43.1 11.1 32 24.7 32h398.5c13.7 0 24.8 11.1 24.8 24.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebookF.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebookF.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebookF.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebookF.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebookF.js new file mode 100644 index 0000000000..9e3c075331 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebookF.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'facebook-f', icon: [264, 512, [], "f39e", "M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebookMessenger.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebookMessenger.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebookMessenger.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebookMessenger.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebookMessenger.js new file mode 100644 index 0000000000..54681c0bfd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebookMessenger.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'facebook-messenger', icon: [448, 512, [], "f39f", "M224 32C15.9 32-77.5 278 84.6 400.6V480l75.7-42c142.2 39.8 285.4-59.9 285.4-198.7C445.8 124.8 346.5 32 224 32zm23.4 278.1L190 250.5 79.6 311.6l121.1-128.5 57.4 59.6 110.4-61.1-121.1 128.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebookSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebookSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebookSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebookSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebookSquare.js new file mode 100644 index 0000000000..7e9ef957f3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFacebookSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'facebook-square', icon: [448, 512, [], "f082", "M448 80v352c0 26.5-21.5 48-48 48h-85.3V302.8h60.6l8.7-67.6h-69.3V192c0-19.6 5.4-32.9 33.5-32.9H384V98.7c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9H184v67.6h60.9V480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirefox.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirefox.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirefox.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirefox.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirefox.js new file mode 100644 index 0000000000..cbc3eab09b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirefox.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'firefox', icon: [480, 512, [], "f269", "M478.1 235.3c-.7-4.5-1.4-7.1-1.4-7.1s-1.8 2-4.7 5.9c-.9-10.7-2.8-21.2-5.8-31.6-3.7-12.9-8.5-25.4-14.5-37.4-3.8-8-8.2-15.6-13.3-22.8-1.8-2.7-3.7-5.4-5.6-7.9-8.8-14.4-19-23.3-30.7-40-7.6-12.8-12.9-26.9-15.4-41.6-3.2 8.9-5.7 18-7.4 27.3-12.1-12.2-22.5-20.8-28.9-26.7C319.4 24.2 323 9.1 323 9.1S264.7 74.2 289.9 142c8.7 23 23.8 43.1 43.4 57.9 24.4 20.2 50.8 36 64.7 76.6-11.2-21.3-28.1-39.2-48.8-51.5 6.2 14.7 9.4 30.6 9.3 46.5 0 61-49.6 110.5-110.6 110.4-8.3 0-16.5-.9-24.5-2.8-9.5-1.8-18.7-4.9-27.4-9.3-12.9-7.8-24-18.1-32.8-30.3l-.2-.3 2 .7c4.6 1.6 9.2 2.8 14 3.7 18.7 4 38.3 1.7 55.6-6.6 17.5-9.7 28-16.9 36.6-14h.2c8.4 2.7 15-5.5 9-14-10.4-13.4-27.4-20-44.2-17-17.5 2.5-33.5 15-56.4 2.9-1.5-.8-2.9-1.6-4.3-2.5-1.6-.9 4.9 1.3 3.4.3-5-2.5-9.8-5.4-14.4-8.6-.3-.3 3.5 1.1 3.1.8-5.9-4-11-9.2-15-15.2-4.1-7.4-4.5-16.4-1-24.1 2.1-3.8 5.4-6.9 9.3-8.7 3 1.5 4.8 2.6 4.8 2.6s-1.3-2.5-2.1-3.8c.3-.1.5 0 .8-.2 2.6 1.1 8.3 4 11.4 5.8 2.1 1.1 3.8 2.7 5.2 4.7 0 0 1-.5.3-2.7-1.1-2.7-2.9-5-5.4-6.6h.2c2.3 1.2 4.5 2.6 6.6 4.1 1.9-4.4 2.8-9.2 2.6-14 .2-2.6-.2-5.3-1.1-7.8-.8-1.6.5-2.2 1.9-.5-.2-1.3-.7-2.5-1.2-3.7v-.1s.8-1.1 1.2-1.5c1-1 2.1-1.9 3.4-2.7 7.2-4.5 14.8-8.4 22.7-11.6 6.4-2.8 11.7-4.9 12.8-5.6 1.6-1 3.1-2.2 4.5-3.5 5.3-4.5 9-10.8 10.2-17.7.1-.9.2-1.8.3-2.8v-1.5c-.9-3.5-6.9-6.1-38.4-9.1-11.1-1.8-20-10.1-22.5-21.1v.1c-.4 1.1-.9 2.3-1.3 3.5.4-1.2.8-2.3 1.3-3.5v-.2c6-15.7 16.8-29.1 30.8-38.3.8-.7-3.2.2-2.4-.5 2.7-1.3 5.4-2.5 8.2-3.5 1.4-.6-6-3.4-12.6-2.7-4 .2-8 1.2-11.7 2.8 1.6-1.3 6.2-3.1 5.1-3.1-8.4 1.6-16.5 4.7-23.9 9 0-.8.1-1.5.5-2.2-5.9 2.5-11 6.5-15 11.5.1-.9.2-1.8.2-2.7-2.7 2-5.2 4.3-7.3 6.9l-.1.1c-17.4-6.7-36.3-8.3-54.6-4.7l-.2-.1h.2c-3.8-3.1-7.1-6.7-9.7-10.9l-.2.1-.4-.2c-1.2-1.8-2.4-3.8-3.7-6-.9-1.6-1.8-3.4-2.7-5.2 0-.1-.1-.2-.2-.2-.4 0-.6 1.7-.9 1.3v-.1c-3.2-8.3-4.7-17.2-4.4-26.2l-.2.1c-5.1 3.5-9 8.6-11.1 14.5-.9 2.1-1.6 3.3-2.2 4.5v-.5c.1-1.1.6-3.3.5-3.1-.1.2-.2.3-.3.4-1.5 1.7-2.9 3.7-3.9 5.8-.9 1.9-1.7 3.9-2.3 5.9-.1.3 0-.3 0-1s.1-2 0-1.7l-.3.7c-6.7 14.9-10.9 30.8-12.4 47.1-.4 2.8-.6 5.6-.5 8.3v.2c-4.8 5.2-9 11-12.7 17.1-12.1 20.4-21.1 42.5-26.8 65.6 4-8.8 8.8-17.2 14.3-25.1C5.5 228.5 0 257.4 0 286.6c1.8-8.6 4.2-17 7-25.3-1.7 34.5 4.9 68.9 19.4 100.3 19.4 43.5 51.6 80 92.3 104.7 16.6 11.2 34.7 19.9 53.8 25.8 2.5.9 5.1 1.8 7.7 2.7-.8-.3-1.6-.7-2.4-1 22.6 6.8 46.2 10.3 69.8 10.3 83.7 0 111.3-31.9 113.8-35 4.1-3.7 7.5-8.2 9.9-13.3 1.6-.7 3.2-1.4 4.9-2.1l1-.5 1.9-.9c12.6-5.9 24.5-13.4 35.3-22.1 16.3-11.7 27.9-28.7 32.9-48.1 3-7.1 3.1-15 .4-22.2.9-1.4 1.7-2.8 2.7-4.3 18-28.9 28.2-61.9 29.6-95.9v-2.8c0-7.3-.6-14.5-1.9-21.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirstOrder.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirstOrder.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirstOrder.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirstOrder.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirstOrder.js new file mode 100644 index 0000000000..9f10562759 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirstOrder.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'first-order', icon: [448, 512, [], "f2b0", "M12.9 229.2c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4h-.2zM224 96.6c-7.1 0-14.6.6-21.4 1.7l3.7 67.4-22-64c-14.3 3.7-27.7 9.4-40 16.6l29.4 61.4-45.1-50.9c-11.4 8.9-21.7 19.1-30.6 30.9l50.6 45.4-61.1-29.7c-7.1 12.3-12.9 25.7-16.6 40l64.3 22.6-68-4c-.9 7.1-1.4 14.6-1.4 22s.6 14.6 1.4 21.7l67.7-4-64 22.6c3.7 14.3 9.4 27.7 16.6 40.3l61.1-29.7L97.7 352c8.9 11.7 19.1 22.3 30.9 30.9l44.9-50.9-29.5 61.4c12.3 7.4 25.7 13.1 40 16.9l22.3-64.6-4 68c7.1 1.1 14.6 1.7 21.7 1.7 7.4 0 14.6-.6 21.7-1.7l-4-68.6 22.6 65.1c14.3-4 27.7-9.4 40-16.9L274.9 332l44.9 50.9c11.7-8.9 22-19.1 30.6-30.9l-50.6-45.1 61.1 29.4c7.1-12.3 12.9-25.7 16.6-40.3l-64-22.3 67.4 4c1.1-7.1 1.4-14.3 1.4-21.7s-.3-14.9-1.4-22l-67.7 4 64-22.3c-3.7-14.3-9.1-28-16.6-40.3l-60.9 29.7 50.6-45.4c-8.9-11.7-19.1-22-30.6-30.9l-45.1 50.9 29.4-61.1c-12.3-7.4-25.7-13.1-40-16.9L241.7 166l4-67.7c-7.1-1.2-14.3-1.7-21.7-1.7zM443.4 128v256L224 512 4.6 384V128L224 0l219.4 128zm-17.1 10.3L224 20.9 21.7 138.3v235.1L224 491.1l202.3-117.7V138.3zM224 37.1l187.7 109.4v218.9L224 474.9 36.3 365.4V146.6L224 37.1zm0 50.9c-92.3 0-166.9 75.1-166.9 168 0 92.6 74.6 167.7 166.9 167.7 92 0 166.9-75.1 166.9-167.7 0-92.9-74.9-168-166.9-168z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirstOrderAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirstOrderAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirstOrderAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirstOrderAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirstOrderAlt.js new file mode 100644 index 0000000000..5b467879f7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirstOrderAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'first-order-alt', icon: [496, 512, [], "f50a", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 488.21C115.34 496.21 7.79 388.66 7.79 256S115.34 15.79 248 15.79 488.21 123.34 488.21 256 380.66 496.21 248 496.21zm0-459.92C126.66 36.29 28.29 134.66 28.29 256S126.66 475.71 248 475.71 467.71 377.34 467.71 256 369.34 36.29 248 36.29zm0 431.22c-116.81 0-211.51-94.69-211.51-211.51S131.19 44.49 248 44.49 459.51 139.19 459.51 256 364.81 467.51 248 467.51zm186.23-162.98a191.613 191.613 0 0 1-20.13 48.69l-74.13-35.88 61.48 54.82a193.515 193.515 0 0 1-37.2 37.29l-54.8-61.57 35.88 74.27a190.944 190.944 0 0 1-48.63 20.23l-27.29-78.47 4.79 82.93c-8.61 1.18-17.4 1.8-26.33 1.8s-17.72-.62-26.33-1.8l4.76-82.46-27.15 78.03a191.365 191.365 0 0 1-48.65-20.2l35.93-74.34-54.87 61.64a193.85 193.85 0 0 1-37.22-37.28l61.59-54.9-74.26 35.93a191.638 191.638 0 0 1-20.14-48.69l77.84-27.11-82.23 4.76c-1.16-8.57-1.78-17.32-1.78-26.21 0-9 .63-17.84 1.82-26.51l82.38 4.77-77.94-27.16a191.726 191.726 0 0 1 20.23-48.67l74.22 35.92-61.52-54.86a193.85 193.85 0 0 1 37.28-37.22l54.76 61.53-35.83-74.17a191.49 191.49 0 0 1 48.65-20.13l26.87 77.25-4.71-81.61c8.61-1.18 17.39-1.8 26.32-1.8s17.71.62 26.32 1.8l-4.74 82.16 27.05-77.76c17.27 4.5 33.6 11.35 48.63 20.17l-35.82 74.12 54.72-61.47a193.13 193.13 0 0 1 37.24 37.23l-61.45 54.77 74.12-35.86a191.515 191.515 0 0 1 20.2 48.65l-77.81 27.1 82.24-4.75c1.19 8.66 1.82 17.5 1.82 26.49 0 8.88-.61 17.63-1.78 26.19l-82.12-4.75 77.72 27.09z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirstdraft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirstdraft.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirstdraft.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirstdraft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirstdraft.js new file mode 100644 index 0000000000..1ce27d10d6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFirstdraft.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'firstdraft', icon: [384, 512, [], "f3a1", "M384 192h-64v128H192v128H0v-25.6h166.4v-128h128v-128H384V192zm-25.6 38.4v128h-128v128H64V512h192V384h128V230.4h-25.6zm25.6 192h-89.6V512H320v-64h64v-25.6zM0 0v384h128V256h128V128h128V0H0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFlickr.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFlickr.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFlickr.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFlickr.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFlickr.js new file mode 100644 index 0000000000..e936a7b488 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFlickr.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'flickr', icon: [448, 512, [], "f16e", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5zm159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFlipboard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFlipboard.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFlipboard.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFlipboard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFlipboard.js new file mode 100644 index 0000000000..f5d54dd1fd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFlipboard.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'flipboard', icon: [448, 512, [], "f44d", "M0 32v448h448V32H0zm358.4 179.2h-89.6v89.6h-89.6v89.6H89.6V121.6h268.8v89.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFly.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFly.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFly.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFly.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFly.js new file mode 100644 index 0000000000..d76d1966b3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFly.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'fly', icon: [384, 512, [], "f417", "M197.8 427.8c12.9 11.7 33.7 33.3 33.2 50.7 0 .8-.1 1.6-.1 2.5-1.8 19.8-18.8 31.1-39.1 31-25-.1-39.9-16.8-38.7-35.8 1-16.2 20.5-36.7 32.4-47.6 2.3-2.1 2.7-2.7 5.6-3.6 3.4 0 3.9.3 6.7 2.8zM331.9 67.3c-16.3-25.7-38.6-40.6-63.3-52.1C243.1 4.5 214-.2 192 0c-44.1 0-71.2 13.2-81.1 17.3C57.3 45.2 26.5 87.2 28 158.6c7.1 82.2 97 176 155.8 233.8 1.7 1.6 4.5 4.5 6.2 5.1l3.3.1c2.1-.7 1.8-.5 3.5-2.1 52.3-49.2 140.7-145.8 155.9-215.7 7-39.2 3.1-72.5-20.8-112.5zM186.8 351.9c-28-51.1-65.2-130.7-69.3-189-3.4-47.5 11.4-131.2 69.3-136.7v325.7zM328.7 180c-16.4 56.8-77.3 128-118.9 170.3C237.6 298.4 275 217 277 158.4c1.6-45.9-9.8-105.8-48-131.4 88.8 18.3 115.5 98.1 99.7 153z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesome.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesome.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesome.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesome.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesome.js new file mode 100644 index 0000000000..60ab07b4ef --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesome.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'font-awesome', icon: [448, 512, [], "f2b4", "M397.8 32H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-45.4 284.3c0 4.2-3.6 6-7.8 7.8-16.7 7.2-34.6 13.7-53.8 13.7-26.9 0-39.4-16.7-71.7-16.7-23.3 0-47.8 8.4-67.5 17.3-1.2.6-2.4.6-3.6 1.2V385c0 1.8 0 3.6-.6 4.8v1.2c-2.4 8.4-10.2 14.3-19.1 14.3-11.3 0-20.3-9-20.3-20.3V166.4c-7.8-6-13.1-15.5-13.1-26.3 0-18.5 14.9-33.5 33.5-33.5 18.5 0 33.5 14.9 33.5 33.5 0 10.8-4.8 20.3-13.1 26.3v18.5c1.8-.6 3.6-1.2 5.4-2.4 18.5-7.8 40.6-14.3 61.5-14.3 22.7 0 40.6 6 60.9 13.7 4.2 1.8 8.4 2.4 13.1 2.4 22.7 0 47.8-16.1 53.8-16.1 4.8 0 9 3.6 9 7.8v140.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesomeAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesomeAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesomeAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesomeAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesomeAlt.js new file mode 100644 index 0000000000..6e82564c95 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesomeAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'font-awesome-alt', icon: [448, 512, [], "f35c", "M397.8 67.8c7.8 0 14.3 6.6 14.3 14.3v347.6c0 7.8-6.6 14.3-14.3 14.3H50.2c-7.8 0-14.3-6.6-14.3-14.3V82.2c0-7.8 6.6-14.3 14.3-14.3h347.6m0-35.9H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-58.5 139.2c-6 0-29.9 15.5-52.6 15.5-4.2 0-8.4-.6-12.5-2.4-19.7-7.8-37-13.7-59.1-13.7-20.3 0-41.8 6.6-59.7 13.7-1.8.6-3.6 1.2-4.8 1.8v-17.9c7.8-6 12.5-14.9 12.5-25.7 0-17.9-14.3-32.3-32.3-32.3s-32.3 14.3-32.3 32.3c0 10.2 4.8 19.7 12.5 25.7v212.1c0 10.8 9 19.7 19.7 19.7 9 0 16.1-6 18.5-13.7V385c.6-1.8.6-3 .6-4.8V336c1.2 0 2.4-.6 3-1.2 19.7-8.4 43-16.7 65.7-16.7 31.1 0 43 16.1 69.3 16.1 18.5 0 36.4-6.6 52-13.7 4.2-1.8 7.2-3.6 7.2-7.8V178.3c1.8-4.1-2.3-7.1-7.7-7.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesomeFlag.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesomeFlag.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesomeFlag.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesomeFlag.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesomeFlag.js new file mode 100644 index 0000000000..d33904a7c2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesomeFlag.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'font-awesome-flag', icon: [448, 512, [], "f425", "M444.373 359.424c0 7.168-6.144 10.24-13.312 13.312-28.672 12.288-59.392 23.552-92.16 23.552-46.08 0-67.584-28.672-122.88-28.672-39.936 0-81.92 14.336-115.712 29.696-2.048 1.024-4.096 1.024-6.144 2.048v77.824c0 21.405-16.122 34.816-33.792 34.816-19.456 0-34.816-15.36-34.816-34.816V102.4C12.245 92.16 3.029 75.776 3.029 57.344 3.029 25.6 28.629 0 60.373 0s57.344 25.6 57.344 57.344c0 18.432-8.192 34.816-22.528 45.056v31.744c4.124-1.374 58.768-28.672 114.688-28.672 65.27 0 97.676 27.648 126.976 27.648 38.912 0 81.92-27.648 92.16-27.648 8.192 0 15.36 6.144 15.36 13.312v240.64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesomeLogoFull.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesomeLogoFull.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesomeLogoFull.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesomeLogoFull.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesomeLogoFull.js new file mode 100644 index 0000000000..8f3a893655 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFontAwesomeLogoFull.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'font-awesome-logo-full', icon: [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFonticons.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFonticons.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFonticons.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFonticons.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFonticons.js new file mode 100644 index 0000000000..a52fcfdae8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFonticons.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'fonticons', icon: [448, 512, [], "f280", "M0 32v448h448V32H0zm167.4 196h67.4l-11.1 37.3H168v112.9c0 5.8-2 6.7 3.2 7.3l43.5 4.1v25.1H84V389l21.3-2c5.2-.6 6.7-2.3 6.7-7.9V267.7c0-2.3-2.9-2.3-5.8-2.3H84V228h28v-21c0-49.6 26.5-70 77.3-70 34.1 0 64.7 8.2 64.7 52.8l-50.7 6.1c.3-18.7-4.4-23-16.3-23-18.4 0-19 9.9-19 27.4v23.3c0 2.4-3.5 4.4-.6 4.4zM364 414.7H261.3v-25.1l20.4-2.6c5.2-.6 7.6-1.7 7.6-7.3V271.8c0-4.1-2.9-6.7-6.7-7.9l-24.2-6.4 6.7-29.5h80.2v151.7c0 5.8-2.6 6.4 2.9 7.3l15.7 2.6v25.1zm-21.9-255.5l9 33.2-7.3 7.3-31.2-16.6-31.2 16.6-7.3-7.3 9-33.2-21.8-24.2 3.5-9.6h27.7l15.5-28h9.3l15.5 28h27.7l3.5 9.6-21.9 24.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFonticonsFi.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFonticonsFi.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFonticonsFi.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFonticonsFi.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFonticonsFi.js new file mode 100644 index 0000000000..e524560229 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFonticonsFi.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'fonticons-fi', icon: [384, 512, [], "f3a2", "M114.4 224h92.4l-15.2 51.2h-76.4V433c0 8-2.8 9.2 4.4 10l59.6 5.6V483H0v-35.2l29.2-2.8c7.2-.8 9.2-3.2 9.2-10.8V278.4c0-3.2-4-3.2-8-3.2H0V224h38.4v-28.8c0-68 36.4-96 106-96 46.8 0 88.8 11.2 88.8 72.4l-69.6 8.4c.4-25.6-6-31.6-22.4-31.6-25.2 0-26 13.6-26 37.6v32c0 3.2-4.8 6-.8 6zM384 483H243.2v-34.4l28-3.6c7.2-.8 10.4-2.4 10.4-10V287c0-5.6-4-9.2-9.2-10.8l-33.2-8.8 9.2-40.4h110v208c0 8-3.6 8.8 4 10l21.6 3.6V483zm-30-347.2l12.4 45.6-10 10-42.8-22.8-42.8 22.8-10-10 12.4-45.6-30-36.4 4.8-10h38L307.2 51H320l21.2 38.4h38l4.8 13.2-30 33.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFortAwesome.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFortAwesome.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFortAwesome.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFortAwesome.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFortAwesome.js new file mode 100644 index 0000000000..ad79a88356 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFortAwesome.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'fort-awesome', icon: [512, 512, [], "f286", "M489.2 287.9h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6V146.2c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-6-8-4.6-11.7-4.6v-38c8.3-2 17.1-3.4 25.7-3.4 10.9 0 20.9 4.3 31.4 4.3 4.6 0 27.7-1.1 27.7-8v-60c0-2.6-2-4.6-4.6-4.6-5.1 0-15.1 4.3-24 4.3-9.7 0-20.9-4.3-32.6-4.3-8 0-16 1.1-23.7 2.9v-4.9c5.4-2.6 9.1-8.3 9.1-14.3 0-20.7-31.4-20.8-31.4 0 0 6 3.7 11.7 9.1 14.3v111.7c-3.7 0-11.7-1.4-11.7 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32H128v-32c0-2.6-2-4.6-4.6-4.6H96c-2.6 0-4.6 2-4.6 4.6v178.3H54.8v-32c0-2.6-2-4.6-4.6-4.6H22.8c-2.6 0-4.6 2-4.6 4.6V512h182.9v-96c0-72.6 109.7-72.6 109.7 0v96h182.9V292.5c.1-2.6-1.9-4.6-4.5-4.6zm-288.1-4.5c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64zm146.4 0c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFortAwesomeAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFortAwesomeAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFortAwesomeAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFortAwesomeAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFortAwesomeAlt.js new file mode 100644 index 0000000000..2c92c1ffdf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFortAwesomeAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'fort-awesome-alt', icon: [512, 512, [], "f3a3", "M211.7 241.1v51.7c0 2.1-1.6 3.7-3.7 3.7h-22.2c-2.1 0-3.7-1.6-3.7-3.7v-51.7c0-2.1 1.6-3.7 3.7-3.7H208c2.1 0 3.7 1.6 3.7 3.7zm114.5-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7h22.2c2.1 0 3.7-1.6 3.7-3.7v-51.7c-.1-2.1-1.7-3.7-3.7-3.7zm-29.1 263.2c-.9.1-1.7.3-2.6.4-1 .2-2.1.3-3.1.5-.9.1-1.8.3-2.8.4-1 .1-2 .3-3 .4-1 .1-2 .2-2.9.3-1 .1-1.9.2-2.9.3-1 .1-2.1.2-3.1.3-.9.1-1.8.2-2.7.2-1.1.1-2.3.1-3.4.2-.8 0-1.7.1-2.5.1-1.3.1-2.6.1-3.9.1-.7 0-1.4.1-2.1.1-2 0-4 .1-6 .1s-4 0-6-.1c-.7 0-1.4 0-2.1-.1-1.3 0-2.6-.1-3.9-.1-.8 0-1.7-.1-2.5-.1-1.1-.1-2.3-.1-3.4-.2-.9-.1-1.8-.1-2.7-.2-1-.1-2.1-.2-3.1-.3-1-.1-1.9-.2-2.9-.3-1-.1-2-.2-2.9-.3-1-.1-2-.2-3-.4-.9-.1-1.8-.3-2.8-.4-1-.1-2.1-.3-3.1-.5-.9-.1-1.7-.3-2.6-.4-65.6-10.9-122.5-47.7-160-99.4-.2-.2-.3-.5-.5-.7-.8-1.1-1.6-2.2-2.3-3.3-.3-.4-.6-.8-.8-1.2-.7-1.1-1.4-2.1-2.1-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.4-2.1-2-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.3-2.2-2-3.3-.2-.4-.5-.8-.7-1.2-2.4-4-4.6-8.1-6.8-12.2-.1-.2-.2-.3-.3-.5-.6-1.1-1.1-2.2-1.7-3.3-.3-.6-.6-1.1-.8-1.7-.5-1-1-2.1-1.5-3.1-.3-.7-.6-1.3-.9-2-.5-1-.9-2-1.4-3l-.9-2.1c-.4-1-.9-2-1.3-3-.3-.7-.6-1.5-.9-2.2l-1.2-3c-.3-.8-.6-1.5-.9-2.3-.4-1-.8-2-1.1-3-.3-.9-.6-1.8-1-2.8-.6-1.6-1.1-3.3-1.7-4.9-.3-.9-.6-1.8-.9-2.8-.3-.9-.5-1.8-.8-2.7-.3-.9-.6-1.9-.8-2.8-.3-.9-.5-1.8-.8-2.7-.3-1-.5-1.9-.8-2.9-.2-.9-.5-1.8-.7-2.7-.3-1-.5-2-.7-3-.2-.9-.4-1.7-.6-2.6-.2-1.1-.5-2.2-.7-3.2-.2-.8-.3-1.6-.5-2.4-.3-1.3-.5-2.7-.8-4-.1-.6-.2-1.1-.3-1.7l-.9-5.7c-.1-.6-.2-1.3-.3-1.9-.2-1.3-.4-2.6-.5-3.9-.1-.8-.2-1.5-.3-2.3-.1-1.2-.3-2.4-.4-3.6-.1-.8-.2-1.6-.2-2.4-.1-1.2-.2-2.4-.3-3.5-.1-.8-.1-1.6-.2-2.4-.1-1.2-.2-2.4-.2-3.7 0-.8-.1-1.5-.1-2.3-.1-1.3-.1-2.7-.2-4 0-.7 0-1.3-.1-2 0-2-.1-4-.1-6 0-53.5 16.9-103 45.8-143.6 2.3-3.2 4.7-6.4 7.1-9.5 4.9-6.2 10.1-12.3 15.6-18 2.7-2.9 5.5-5.7 8.4-8.4 2.9-2.7 5.8-5.4 8.8-8 4.5-3.9 9.1-7.6 13.9-11.2 1.6-1.2 3.2-2.4 4.8-3.5C140 34.2 171.7 20.1 206 13c16.1-3.3 32.9-5 50-5s33.8 1.7 50 5c34.3 7 66 21.1 93.6 40.7 1.6 1.2 3.2 2.3 4.8 3.5 4.8 3.6 9.4 7.3 13.9 11.2 12 10.4 23 21.9 32.8 34.4 2.5 3.1 4.8 6.3 7.1 9.5C487.1 153 504 202.5 504 256c0 2 0 4-.1 6 0 .7 0 1.3-.1 2 0 1.3-.1 2.7-.2 4 0 .8-.1 1.5-.1 2.3-.1 1.2-.1 2.4-.2.7-.1.8-.1 1.6-.2 2.4-.1 1.2-.2 2.4-.3 3.5-.1.8-.2 1.6-.2 2.4-.1 1.2-.3 2.4-.4 3.6-.1.8-.2 1.5-.3 2.3-.2 1.3-.4 2.6-.5 3.9-.1.6-.2 1.3-.3 1.9l-.9 5.7c-.1.6-.2 1.1-.3 1.7-.2 1.3-.5 2.7-.8 4-.2.8-.3 1.6-.5 2.4-.2 1.1-.5 2.2-.7 3.2-.2.9-.4 1.7-.6 2.6-.2 1-.5 2-.7 3-.2.9-.5 1.8-.7 2.7-.3 1-.5 1.9-.8 2.9-.2.9-.5 1.8-.8 2.7-.3.9-.6 1.9-.8 2.8-.3.9-.5 1.8-.8 2.7-.3.9-.6 1.8-.9 2.8-.5 1.6-1.1 3.3-1.7 4.9-.3.9-.6 1.8-1 2.8-.4 1-.7 2-1.1 3-.3.8-.6 1.5-.9 2.3l-1.2 3c-.3.7-.6 1.5-.9 2.2-.4 1-.8 2-1.3 3l-.9 2.1c-.4 1-.9 2-1.4 3-.3.7-.6 1.3-.9 2-.5 1-1 2.1-1.5 3.1-.3.6-.6 1.1-.8 1.7-.6 1.1-1.1 2.2-1.7 3.3-.1.2-.2.3-.3.5-2.2 4.1-4.4 8.2-6.8 12.2-.2.4-.5.8-.7 1.2-.7 1.1-1.3 2.2-2 3.3-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2 3.2-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2.1 3.2-.3.4-.6.8-.8 1.2-.8 1.1-1.5 2.2-2.3 3.3-.2.2-.3.5-.5.7-37.6 54.7-94.5 91.4-160.1 102.4zm117.3-86.2c13-13 24.2-27.4 33.6-42.9v-71.3c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7V326h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-4.8-6.5-3.7-9.5-3.7v-30.7c6.7-1.6 13.8-2.8 20.8-2.8 8.8 0 16.8 3.5 25.4 3.5 3.7 0 22.4-.9 22.4-6.5V93.4c0-2.1-1.6-3.7-3.7-3.7-4.2 0-12.2 3.5-19.4 3.5-7.9 0-16.9-3.5-26.3-3.5-6.5 0-12.9.9-19.2 2.3v-3.9c4.4-2.1 7.4-6.7 7.4-11.5 0-16.8-25.4-16.8-25.4 0 0 4.8 3 9.5 7.4 11.5v90.2c-3 0-9.5-1.1-9.5 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v144H93.5v-25.8c0-2.1-1.6-3.7-3.7-3.7H67.7c-2.1 0-3.7 1.6-3.7 3.7v71.3c9.4 15.5 20.6 29.9 33.6 42.9 20.6 20.6 44.5 36.7 71.2 48 13.9 5.9 28.2 10.3 42.9 13.2v-75.8c0-58.6 88.6-58.6 88.6 0v75.8c14.7-2.9 29-7.4 42.9-13.2 26.7-11.3 50.6-27.4 71.2-48"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faForumbee.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faForumbee.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faForumbee.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faForumbee.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faForumbee.js new file mode 100644 index 0000000000..bb1a213219 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faForumbee.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'forumbee', icon: [448, 512, [], "f211", "M5.8 309.7C2 292.7 0 275.5 0 258.3 0 135 99.8 35 223.1 35c16.6 0 33.3 2 49.3 5.5C149 87.5 51.9 186 5.8 309.7zm392.9-189.2C385 103 369 87.8 350.9 75.2c-149.6 44.3-266.3 162.1-309.7 312 12.5 18.1 28 35.6 45.2 49 43.1-151.3 161.2-271.7 312.3-315.7zm15.8 252.7c15.2-25.1 25.4-53.7 29.5-82.8-79.4 42.9-145 110.6-187.6 190.3 30-4.4 58.9-15.3 84.6-31.3 35 13.1 70.9 24.3 107 33.6-9.3-36.5-20.4-74.5-33.5-109.8zm29.7-145.5c-2.6-19.5-7.9-38.7-15.8-56.8C290.5 216.7 182 327.5 137.1 466c18.1 7.6 37 12.5 56.6 15.2C240 367.1 330.5 274.4 444.2 227.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFoursquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFoursquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFoursquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFoursquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFoursquare.js new file mode 100644 index 0000000000..c536990230 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFoursquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'foursquare', icon: [368, 512, [], "f180", "M323.1 3H49.9C12.4 3 0 31.3 0 49.1v433.8c0 20.3 12.1 27.7 18.2 30.1 6.2 2.5 22.8 4.6 32.9-7.1C180 356.5 182.2 354 182.2 354c3.1-3.4 3.4-3.1 6.8-3.1h83.4c35.1 0 40.6-25.2 44.3-39.7l48.6-243C373.8 25.8 363.1 3 323.1 3zm-16.3 73.8l-11.4 59.7c-1.2 6.5-9.5 13.2-16.9 13.2H172.1c-12 0-20.6 8.3-20.6 20.3v13c0 12 8.6 20.6 20.6 20.6h90.4c8.3 0 16.6 9.2 14.8 18.2-1.8 8.9-10.5 53.8-11.4 58.8-.9 4.9-6.8 13.5-16.9 13.5h-73.5c-13.5 0-17.2 1.8-26.5 12.6 0 0-8.9 11.4-89.5 108.3-.9.9-1.8.6-1.8-.3V75.9c0-7.7 6.8-16.6 16.6-16.6h219c8.2 0 15.6 7.7 13.5 17.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFreeCodeCamp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFreeCodeCamp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFreeCodeCamp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFreeCodeCamp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFreeCodeCamp.js new file mode 100644 index 0000000000..88f5450740 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFreeCodeCamp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'free-code-camp', icon: [576, 512, [], "f2c5", "M69.3 144.5c-41 68.5-36.4 163 1 227C92.5 409.7 120 423.9 120 438c0 6.8-6 13-12.8 13C87.7 451 8 375.5 8 253.2c0-111.5 78-186 97.1-186 6 0 14.9 4.8 14.9 11.1 0 12.7-28.3 28.6-50.7 66.2zm195.8 213.8c4.5 1.8 12.3 5.2 12.3-1.2 0-2.7-2.2-2.9-4.3-3.6-8.5-3.4-14-7.7-19.1-15.2-8.2-12.1-10.1-24.2-10.1-38.6 0-32.1 44.2-37.9 44.2-70 0-12.3-7.7-15.9-7.7-19.3 0-2.2.7-2.2 2.9-2.2 8 0 19.1 13.3 22.5 19.8 2.2 4.6 2.4 6 2.4 11.1 0 7-.7 14.2-.7 21.3 0 27 31.9 19.8 31.9 6.8 0-6-3.6-11.6-3.6-17.4 0-.7 0-1.2.7-1.2 3.4 0 9.4 7.7 11.1 10.1 5.8 8.9 8.5 20.8 8.5 31.4 0 32.4-29.5 49-29.5 56 0 1 2.9 7.7 12.1 1.9 29.7-15.1 53.1-47.6 53.1-89.8 0-33.6-8.7-57.7-32.1-82.6-3.9-4.1-16.4-16.9-22.5-16.9-8.2 0 7.2 18.6 7.2 31.2 0 7.2-4.8 12.3-12.3 12.3-11.6 0-14.5-25.4-15.9-33.3-5.8-33.8-12.8-58.2-46.4-74.1-10.4-5-36.5-11.8-36.5-2.2 0 2.4 2.7 4.1 4.6 5.1 9.2 5.6 19.6 21.4 19.6 38.2 0 46.1-57.7 88.2-57.7 136.2-.2 40.3 28.1 72.6 65.3 86.2zM470.4 67c-6 0-14.4 6.5-14.4 12.6 0 8.7 12.1 19.6 17.6 25.4 81.6 85.1 78.6 214.3 17.6 291-7 8.9-35.3 35.3-35.3 43.5 0 5.1 8.2 11.4 13.2 11.4 25.4 0 98.8-80.8 98.8-185.7C568 145.9 491.8 67 470.4 67zm-42.3 323.1H167c-9.4 0-15.5 7.5-15.5 16.4 0 8.5 7 15.5 15.5 15.5h261.1c9.4 0 11.9-7.5 11.9-16.4 0-8.5-3.5-15.5-11.9-15.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFreebsd.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFreebsd.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFreebsd.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFreebsd.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFreebsd.js new file mode 100644 index 0000000000..d26c3e19df --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFreebsd.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'freebsd', icon: [448, 512, [], "f3a4", "M303.7 96.2c11.1-11.1 115.5-77 139.2-53.2 23.7 23.7-42.1 128.1-53.2 139.2-11.1 11.1-39.4.9-63.1-22.9-23.8-23.7-34.1-52-22.9-63.1zM109.9 68.1C73.6 47.5 22 24.6 5.6 41.1c-16.6 16.6 7.1 69.4 27.9 105.7 18.5-32.2 44.8-59.3 76.4-78.7zM406.7 174c3.3 11.3 2.7 20.7-2.7 26.1-20.3 20.3-87.5-27-109.3-70.1-18-32.3-11.1-53.4 14.9-48.7 5.7-3.6 12.3-7.6 19.6-11.6-29.8-15.5-63.6-24.3-99.5-24.3-119.1 0-215.6 96.5-215.6 215.6 0 119 96.5 215.6 215.6 215.6S445.3 380.1 445.3 261c0-38.4-10.1-74.5-27.7-105.8-3.9 7-7.6 13.3-10.9 18.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFulcrum.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFulcrum.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFulcrum.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFulcrum.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFulcrum.js new file mode 100644 index 0000000000..68e5c94e2e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faFulcrum.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'fulcrum', icon: [269, 512, [], "f50b", "M70.75 164.14l-35.38 43.55L0 164.14l35.38-43.55 35.37 43.55zM119.23 0L98.69 198.18 47.72 256l50.98 57.82L119.23 512V300.89L78.15 256l41.08-44.89V0zm79.67 164.14l35.38 43.55 35.38-43.55-35.38-43.55-35.38 43.55zm-48.48 46.97L191.5 256l-41.08 44.89V512l20.54-198.18L221.94 256l-50.98-57.82L150.42 0v211.11z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGalacticRepublic.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGalacticRepublic.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGalacticRepublic.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGalacticRepublic.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGalacticRepublic.js new file mode 100644 index 0000000000..6319cef625 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGalacticRepublic.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'galactic-republic', icon: [496, 512, [], "f50c", "M248 504C111.25 504 0 392.75 0 256S111.25 8 248 8s248 111.25 248 248-111.25 248-248 248zm0-479.47C120.37 24.53 16.53 128.37 16.53 256S120.37 487.47 248 487.47 479.47 383.63 479.47 256 375.63 24.53 248 24.53zm27.62 21.81v24.62a185.933 185.933 0 0 1 83.57 34.54l17.39-17.36c-28.75-22.06-63.3-36.89-100.96-41.8zm-55.37.07c-37.64 4.94-72.16 19.8-100.88 41.85l17.28 17.36h.08c24.07-17.84 52.55-30.06 83.52-34.67V46.41zm12.25 50.17v82.87c-10.04 2.03-19.42 5.94-27.67 11.42l-58.62-58.59-21.93 21.93 58.67 58.67c-5.47 8.23-9.45 17.59-11.47 27.62h-82.9v31h82.9c2.02 10.02 6.01 19.31 11.47 27.54l-58.67 58.69 21.93 21.93 58.62-58.62a77.873 77.873 0 0 0 27.67 11.47v82.9h31v-82.9c10.05-2.03 19.37-6.06 27.62-11.55l58.67 58.69 21.93-21.93-58.67-58.69c5.46-8.23 9.47-17.52 11.5-27.54h82.87v-31h-82.87c-2.02-10.02-6.03-19.38-11.5-27.62l58.67-58.67-21.93-21.93-58.67 58.67c-8.25-5.49-17.57-9.47-27.62-11.5V96.58h-31zm183.24 30.72l-17.36 17.36a186.337 186.337 0 0 1 34.67 83.67h24.62c-4.95-37.69-19.83-72.29-41.93-101.03zm-335.55.13c-22.06 28.72-36.91 63.26-41.85 100.91h24.65c4.6-30.96 16.76-59.45 34.59-83.52l-17.39-17.39zM38.34 283.67c4.92 37.64 19.75 72.18 41.8 100.9l17.36-17.39c-17.81-24.07-29.92-52.57-34.51-83.52H38.34zm394.7 0c-4.61 30.99-16.8 59.5-34.67 83.6l17.36 17.36c22.08-28.74 36.98-63.29 41.93-100.96h-24.62zM136.66 406.38l-17.36 17.36c28.73 22.09 63.3 36.98 100.96 41.93v-24.64c-30.99-4.63-59.53-16.79-83.6-34.65zm222.53.05c-24.09 17.84-52.58 30.08-83.57 34.67v24.57c37.67-4.92 72.21-19.79 100.96-41.85l-17.31-17.39h-.08z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGalacticSenate.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGalacticSenate.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGalacticSenate.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGalacticSenate.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGalacticSenate.js new file mode 100644 index 0000000000..fb879f9927 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGalacticSenate.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'galactic-senate', icon: [512, 512, [], "f50d", "M249.86 33.48v26.07C236.28 80.17 226 168.14 225.39 274.9c11.74-15.62 19.13-33.33 19.13-48.24v-16.88c-.03-5.32.75-10.53 2.19-15.65.65-2.14 1.39-4.08 2.62-5.82 1.23-1.75 3.43-3.79 6.68-3.79 3.24 0 5.45 2.05 6.68 3.79 1.23 1.75 1.97 3.68 2.62 5.82 1.44 5.12 2.22 10.33 2.19 15.65v16.88c0 14.91 7.39 32.62 19.13 48.24-.63-106.76-10.91-194.73-24.49-215.35V33.48h-12.28zm-26.34 147.77c-9.52 2.15-18.7 5.19-27.46 9.08 8.9 16.12 9.76 32.64 1.71 37.29-8 4.62-21.85-4.23-31.36-19.82-11.58 8.79-21.88 19.32-30.56 31.09 14.73 9.62 22.89 22.92 18.32 30.66-4.54 7.7-20.03 7.14-35.47-.96-5.78 13.25-9.75 27.51-11.65 42.42 9.68.18 18.67 2.38 26.18 6.04 17.78-.3 32.77-1.96 40.49-4.22 5.55-26.35 23.02-48.23 46.32-59.51.73-25.55 1.88-49.67 3.48-72.07zm64.96 0c1.59 22.4 2.75 46.52 3.47 72.07 23.29 11.28 40.77 33.16 46.32 59.51 7.72 2.26 22.71 3.92 40.49 4.22 7.51-3.66 16.5-5.85 26.18-6.04-1.9-14.91-5.86-29.17-11.65-42.42-15.44 8.1-30.93 8.66-35.47.96-4.57-7.74 3.6-21.05 18.32-30.66-8.68-11.77-18.98-22.3-30.56-31.09-9.51 15.59-23.36 24.44-31.36 19.82-8.05-4.65-7.19-21.16 1.71-37.29a147.49 147.49 0 0 0-27.45-9.08zm-32.48 8.6c-3.23 0-5.86 8.81-6.09 19.93h-.05v16.88c0 41.42-49.01 95.04-93.49 95.04-52 0-122.75-1.45-156.37 29.17v2.51c9.42 17.12 20.58 33.17 33.18 47.97C45.7 380.26 84.77 360.4 141.2 360c45.68 1.02 79.03 20.33 90.76 40.87.01.01-.01.04 0 .05 7.67 2.14 15.85 3.23 24.04 3.21 8.19.02 16.37-1.07 24.04-3.21.01-.01-.01-.04 0-.05 11.74-20.54 45.08-39.85 90.76-40.87 56.43.39 95.49 20.26 108.02 41.35 12.6-14.8 23.76-30.86 33.18-47.97v-2.51c-33.61-30.62-104.37-29.17-156.37-29.17-44.48 0-93.49-53.62-93.49-95.04v-16.88h-.05c-.23-11.12-2.86-19.93-6.09-19.93zm0 96.59c22.42 0 40.6 18.18 40.6 40.6s-18.18 40.65-40.6 40.65-40.6-18.23-40.6-40.65c0-22.42 18.18-40.6 40.6-40.6zm0 7.64c-18.19 0-32.96 14.77-32.96 32.96S237.81 360 256 360s32.96-14.77 32.96-32.96-14.77-32.96-32.96-32.96zm0 6.14c14.81 0 26.82 12.01 26.82 26.82s-12.01 26.82-26.82 26.82-26.82-12.01-26.82-26.82 12.01-26.82 26.82-26.82zm-114.8 66.67c-10.19.07-21.6.36-30.5 1.66.43 4.42 1.51 18.63 7.11 29.76 9.11-2.56 18.36-3.9 27.62-3.9 41.28.94 71.48 34.35 78.26 74.47l.11 4.7c10.4 1.91 21.19 2.94 32.21 2.94 11.03 0 21.81-1.02 32.21-2.94l.11-4.7c6.78-40.12 36.98-73.53 78.26-74.47 9.26 0 18.51 1.34 27.62 3.9 5.6-11.13 6.68-25.34 7.11-29.76-8.9-1.3-20.32-1.58-30.5-1.66-18.76.42-35.19 4.17-48.61 9.67-12.54 16.03-29.16 30.03-49.58 33.07-.09.02-.17.04-.27.05-.05.01-.11.04-.16.05-5.24 1.07-10.63 1.6-16.19 1.6-5.55 0-10.95-.53-16.19-1.6-.05-.01-.11-.04-.16-.05-.1-.02-.17-.04-.27-.05-20.42-3.03-37.03-17.04-49.58-33.07-13.42-5.49-29.86-9.25-48.61-9.67z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGetPocket.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGetPocket.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGetPocket.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGetPocket.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGetPocket.js new file mode 100644 index 0000000000..3048df1721 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGetPocket.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'get-pocket', icon: [448, 512, [], "f265", "M407.6 64h-367C18.5 64 0 82.5 0 104.6v135.2C0 364.5 99.7 464 224.2 464c124 0 223.8-99.5 223.8-224.2V104.6c0-22.4-17.7-40.6-40.4-40.6zm-162 268.5c-12.4 11.8-31.4 11.1-42.4 0C89.5 223.6 88.3 227.4 88.3 209.3c0-16.9 13.8-30.7 30.7-30.7 17 0 16.1 3.8 105.2 89.3 90.6-86.9 88.6-89.3 105.5-89.3 16.9 0 30.7 13.8 30.7 30.7 0 17.8-2.9 15.7-114.8 123.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGg.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGg.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGg.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGg.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGg.js new file mode 100644 index 0000000000..dd6902eb3e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGg.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'gg', icon: [512, 512, [], "f260", "M179.2 230.4l102.4 102.4-102.4 102.4L0 256 179.2 76.8l44.8 44.8-25.6 25.6-19.2-19.2-128 128 128 128 51.5-51.5-77.1-76.5 25.6-25.6zM332.8 76.8L230.4 179.2l102.4 102.4 25.6-25.6-77.1-76.5 51.5-51.5 128 128-128 128-19.2-19.2-25.6 25.6 44.8 44.8L512 256 332.8 76.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGgCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGgCircle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGgCircle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGgCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGgCircle.js new file mode 100644 index 0000000000..363f164068 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGgCircle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'gg-circle', icon: [512, 512, [], "f261", "M257 8C120 8 9 119 9 256s111 248 248 248 248-111 248-248S394 8 257 8zm-49.5 374.8L81.8 257.1l125.7-125.7 35.2 35.4-24.2 24.2-11.1-11.1-77.2 77.2 77.2 77.2 26.6-26.6-53.1-52.9 24.4-24.4 77.2 77.2-75 75.2zm99-2.2l-35.2-35.2 24.1-24.4 11.1 11.1 77.2-77.2-77.2-77.2-26.5 26.5 53.1 52.9-24.4 24.4-77.2-77.2 75-75L432.2 255 306.5 380.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGit.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGit.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGit.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGit.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGit.js new file mode 100644 index 0000000000..28eeef37e1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGit.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'git', icon: [448, 512, [], "f1d3", "M18.8 221.7c0 25.3 16.2 60 41.5 68.5v1c-18.8 8.3-24 50.6 1 65.8v1C34 367 16 384.3 16 414.2c0 51.5 48.8 65.8 91.5 65.8 52 0 90.7-18.7 90.7-76 0-70.5-101-44.5-101-82.8 0-13.5 7.2-18.7 19.7-21.3 41.5-7.7 67.5-40 67.5-82.2 0-7.3-1.5-14.2-4-21 6.7-1.5 13.2-3.3 19.7-5.5v-50.5c-17.2 6.8-35.7 11.8-54.5 11.8-53.8-31-126.8 1.3-126.8 69.2zm87.7 163.8c17 0 41.2 3 41.2 25 0 21.8-19.5 26.3-37.7 26.3-17.3 0-43.3-2.7-43.3-25.2.1-22.3 22.1-26.1 39.8-26.1zM103.3 256c-22 0-31.3-13-31.3-33.8 0-49.3 61-48.8 61-.5 0 20.3-8 34.3-29.7 34.3zM432 305.5v49c-13.3 7.3-30.5 9.8-45.5 9.8-53.5 0-59.8-42.2-59.8-85.7v-87.7h.5v-1c-7 0-7.3-1.6-24 1v-47.5h24c0-22.3.3-31-1.5-41.2h56.7c-2 13.8-1.5 27.5-1.5 41.2h51v47.5s-19.3-1-51-1V281c0 14.8 3.3 32.8 21.8 32.8 9.8 0 21.3-2.8 29.3-8.3zM286 68.7c0 18.7-14.5 36.2-33.8 36.2-19.8 0-34.5-17.2-34.5-36.2 0-19.3 14.5-36.7 34.5-36.7C272 32 286 50 286 68.7zm-6.2 74.5c-1.8 14.6-1.6 199.8 0 217.8h-55.5c1.6-18.1 1.8-203 0-217.8h55.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitSquare.js new file mode 100644 index 0000000000..770d474f00 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'git-square', icon: [448, 512, [], "f1d2", "M140.1 348.5c12.1 0 29.5 2.1 29.5 17.9 0 15.5-13.9 18.8-27 18.8-12.3 0-30.9-2-30.9-18s15.7-18.7 28.4-18.7zm-24.7-116.6c0 14.8 6.6 24.1 22.3 24.1 15.5 0 21.2-10 21.2-24.5.1-34.4-43.5-34.8-43.5.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-241 93.7c-12.3 4.8-25.5 8.4-38.9 8.4-38.5-22.1-90.7.9-90.7 49.5 0 18 11.6 42.9 29.6 48.9v.7c-13.4 5.9-17.1 36.1.7 47v.7c-19.5 6.4-32.3 18.8-32.3 40.2 0 36.8 34.8 47 65.4 47 37.1 0 64.8-13.4 64.8-54.3 0-50.4-72.1-31.8-72.1-59.1 0-9.6 5.2-13.4 14.1-15.2 29.6-5.5 48.2-28.6 48.2-58.7 0-5.2-1.1-10.2-2.9-15 4.8-1.1 9.5-2.3 14.1-3.9v-36.2zm56.8 1.8h-39.6c1.3 10.6 1.1 142.6 0 155.5h39.6c-1.1-12.8-1.2-145.1 0-155.5zm4.5-53.3c0-13.4-10-26.2-24.1-26.2-14.3 0-24.6 12.5-24.6 26.2 0 13.6 10.5 25.9 24.6 25.9 13.7 0 24.1-12.5 24.1-25.9zm104.3 53.3h-36.4c0-9.8-.4-19.6 1.1-29.5h-40.5c1.3 7.3 1.1 13.6 1.1 29.5h-17.1v33.9c11.9-1.9 12.1-.7 17.1-.7v.7h-.4v62.7c0 31.1 4.5 61.2 42.7 61.2 10.7 0 23-1.8 32.5-7v-35c-5.7 3.9-13.9 5.9-20.9 5.9-13.2 0-15.5-12.9-15.5-23.4v-65.2c22.7 0 36.4.7 36.4.7v-33.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGithub.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGithub.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGithub.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGithub.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGithub.js new file mode 100644 index 0000000000..3004567c0e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGithub.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'github', icon: [496, 512, [], "f09b", "M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGithubAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGithubAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGithubAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGithubAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGithubAlt.js new file mode 100644 index 0000000000..53790ef34f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGithubAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'github-alt', icon: [480, 512, [], "f113", "M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1zM480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2zm-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3zm-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGithubSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGithubSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGithubSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGithubSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGithubSquare.js new file mode 100644 index 0000000000..e9d44af37e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGithubSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'github-square', icon: [448, 512, [], "f092", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitkraken.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitkraken.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitkraken.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitkraken.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitkraken.js new file mode 100644 index 0000000000..d99c62f02f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitkraken.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'gitkraken', icon: [592, 512, [], "f3a6", "M565.7 118.1c-2.3-6.1-9.3-9.2-15.3-6.6-5.7 2.4-8.5 8.9-6.3 14.6 10.9 29 16.9 60.5 16.9 93.3 0 134.6-100.3 245.7-230.2 262.7V358.4c7.9-1.5 15.5-3.6 23-6.2v104c106.7-25.9 185.9-122.1 185.9-236.8 0-91.8-50.8-171.8-125.8-213.3-5.7-3.2-13-.9-15.9 5-2.7 5.5-.6 12.2 4.7 15.1 67.9 37.6 113.9 110 113.9 193.2 0 93.3-57.9 173.1-139.8 205.4v-92.2c14.2-4.5 24.9-17.7 24.9-33.5 0-13.1-6.8-24.4-17.3-30.5 8.3-79.5 44.5-58.6 44.5-83.9V170c0-38-87.9-161.8-129-164.7-2.5-.2-5-.2-7.6 0C251.1 8.3 163.2 132 163.2 170v14.8c0 25.3 36.3 4.3 44.5 83.9-10.6 6.1-17.3 17.4-17.3 30.5 0 15.8 10.6 29 24.8 33.5v92.2c-81.9-32.2-139.8-112-139.8-205.4 0-83.1 46-155.5 113.9-193.2 5.4-3 7.4-9.6 4.7-15.1-2.9-5.9-10.1-8.2-15.9-5-75 41.5-125.8 121.5-125.8 213.3 0 114.7 79.2 210.8 185.9 236.8v-104c7.6 2.5 15.1 4.6 23 6.2v123.7C131.4 465.2 31 354.1 31 219.5c0-32.8 6-64.3 16.9-93.3 2.2-5.8-.6-12.2-6.3-14.6-6-2.6-13 .4-15.3 6.6C14.5 149.7 8 183.8 8 219.5c0 155.1 122.6 281.6 276.3 287.8V361.4c6.8.4 15 .5 23.4 0v145.8C461.4 501.1 584 374.6 584 219.5c0-35.7-6.5-69.8-18.3-101.4zM365.9 275.5c13 0 23.7 10.5 23.7 23.7 0 13.1-10.6 23.7-23.7 23.7-13 0-23.7-10.5-23.7-23.7 0-13.1 10.6-23.7 23.7-23.7zm-139.8 47.3c-13.2 0-23.7-10.7-23.7-23.7s10.5-23.7 23.7-23.7c13.1 0 23.7 10.6 23.7 23.7 0 13-10.5 23.7-23.7 23.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitlab.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitlab.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitlab.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitlab.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitlab.js new file mode 100644 index 0000000000..27c82c5ee7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitlab.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'gitlab', icon: [512, 512, [], "f296", "M29.782 199.732L256 493.714 8.074 309.699c-6.856-5.142-9.712-13.996-7.141-21.993l28.849-87.974zm75.405-174.806c-3.142-8.854-15.709-8.854-18.851 0L29.782 199.732h131.961L105.187 24.926zm56.556 174.806L256 493.714l94.257-293.982H161.743zm349.324 87.974l-28.849-87.974L256 493.714l247.926-184.015c6.855-5.142 9.711-13.996 7.141-21.993zm-85.404-262.78c-3.142-8.854-15.709-8.854-18.851 0l-56.555 174.806h131.961L425.663 24.926z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitter.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitter.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitter.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitter.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitter.js new file mode 100644 index 0000000000..22fbdbffed --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGitter.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'gitter', icon: [384, 512, [], "f426", "M66.4 322.5H16V0h50.4v322.5zM166.9 76.1h-50.4V512h50.4V76.1zm100.6 0h-50.4V512h50.4V76.1zM368 76h-50.4v247H368V76z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGlide.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGlide.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGlide.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGlide.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGlide.js new file mode 100644 index 0000000000..d5d9a51f0f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGlide.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'glide', icon: [448, 512, [], "f2a5", "M252.8 148.6c0 8.8-1.6 17.7-3.4 26.4-5.8 27.8-11.6 55.8-17.3 83.6-1.4 6.3-8.3 4.9-13.7 4.9-23.8 0-30.5-26-30.5-45.5 0-29.3 11.2-68.1 38.5-83.1 4.3-2.5 9.2-4.2 14.1-4.2 11.4 0 12.3 8.3 12.3 17.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 187c0-5.1-20.8-37.7-25.5-39.5-2.2-.9-7.2-2.3-9.6-2.3-23.1 0-38.7 10.5-58.2 21.5l-.5-.5c4.3-29.4 14.6-57.2 14.6-87.4 0-44.6-23.8-62.7-67.5-62.7-71.7 0-108 70.8-108 123.5 0 54.7 32 85 86.3 85 7.5 0 6.9-.6 6.9 2.3-10.5 80.3-56.5 82.9-56.5 58.9 0-24.4 28-36.5 28.3-38-.2-7.6-29.3-17.2-36.7-17.2-21.1 0-32.7 33-32.7 50.6 0 32.3 20.4 54.7 53.3 54.7 48.2 0 83.4-49.7 94.3-91.7 9.4-37.7 7-39.4 12.3-42.1 20-10.1 35.8-16.8 58.4-16.8 11.1 0 19 2.3 36.7 5.2 1.8.1 4.1-1.7 4.1-3.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGlideG.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGlideG.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGlideG.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGlideG.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGlideG.js new file mode 100644 index 0000000000..b91e9896cc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGlideG.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'glide-g', icon: [448, 512, [], "f2a6", "M407.1 211.2c-3.5-1.4-11.6-3.8-15.4-3.8-37.1 0-62.2 16.8-93.5 34.5l-.9-.9c7-47.3 23.5-91.9 23.5-140.4C320.8 29.1 282.6 0 212.4 0 97.3 0 39 113.7 39 198.4 39 286.3 90.3 335 177.6 335c12 0 11-1 11 3.8-16.9 128.9-90.8 133.1-90.8 94.6 0-39.2 45-58.6 45.5-61-.3-12.2-47-27.6-58.9-27.6-33.9.1-52.4 51.2-52.4 79.3C32 476 64.8 512 117.5 512c77.4 0 134-77.8 151.4-145.4 15.1-60.5 11.2-63.3 19.7-67.6 32.2-16.2 57.5-27 93.8-27 17.8 0 30.5 3.7 58.9 8.4 2.9 0 6.7-2.9 6.7-5.8 0-8-33.4-60.5-40.9-63.4zm-175.3-84.4c-9.3 44.7-18.6 89.6-27.8 134.3-2.3 10.2-13.3 7.8-22 7.8-38.3 0-49-41.8-49-73.1 0-47 18-109.3 61.8-133.4 7-4.1 14.8-6.7 22.6-6.7 18.6 0 20 13.3 20 28.7-.1 14.3-2.7 28.5-5.6 42.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGofore.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGofore.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGofore.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGofore.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGofore.js new file mode 100644 index 0000000000..d5f90075ee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGofore.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'gofore', icon: [400, 512, [], "f3a7", "M324 319.8h-13.2v34.7c-24.5 23.1-56.3 35.8-89.9 35.8-73.2 0-132.4-60.2-132.4-134.4 0-74.1 59.2-134.4 132.4-134.4 35.3 0 68.6 14 93.6 39.4l62.3-63.3C335 55.3 279.7 32 220.7 32 98 32 0 132.6 0 256c0 122.5 97 224 220.7 224 63.2 0 124.5-26.2 171-82.5-2-27.6-13.4-77.7-67.7-77.7zm-12.1-112.5H205.6v89H324c33.5 0 60.5 15.1 76 41.8v-30.6c0-65.2-40.4-100.2-88.1-100.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoodreads.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoodreads.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoodreads.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoodreads.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoodreads.js new file mode 100644 index 0000000000..0db8924041 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoodreads.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'goodreads', icon: [448, 512, [], "f3a8", "M299.9 191.2c5.1 37.3-4.7 79-35.9 100.7-22.3 15.5-52.8 14.1-70.8 5.7-37.1-17.3-49.5-58.6-46.8-97.2 4.3-60.9 40.9-87.9 75.3-87.5 46.9-.2 71.8 31.8 78.2 78.3zM448 88v336c0 30.9-25.1 56-56 56H56c-30.9 0-56-25.1-56-56V88c0-30.9 25.1-56 56-56h336c30.9 0 56 25.1 56 56zM330 313.2s-.1-34-.1-217.3h-29v40.3c-.8.3-1.2-.5-1.6-1.2-9.6-20.7-35.9-46.3-76-46-51.9.4-87.2 31.2-100.6 77.8-4.3 14.9-5.8 30.1-5.5 45.6 1.7 77.9 45.1 117.8 112.4 115.2 28.9-1.1 54.5-17 69-45.2.5-1 1.1-1.9 1.7-2.9.2.1.4.1.6.2.3 3.8.2 30.7.1 34.5-.2 14.8-2 29.5-7.2 43.5-7.8 21-22.3 34.7-44.5 39.5-17.8 3.9-35.6 3.8-53.2-1.2-21.5-6.1-36.5-19-41.1-41.8-.3-1.6-1.3-1.3-2.3-1.3h-26.8c.8 10.6 3.2 20.3 8.5 29.2 24.2 40.5 82.7 48.5 128.2 37.4 49.9-12.3 67.3-54.9 67.4-106.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoodreadsG.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoodreadsG.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoodreadsG.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoodreadsG.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoodreadsG.js new file mode 100644 index 0000000000..53528bf7b5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoodreadsG.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'goodreads-g', icon: [384, 512, [], "f3a9", "M42.6 403.3h2.8c12.7 0 25.5 0 38.2.1 1.6 0 3.1-.4 3.6 2.1 7.1 34.9 30 54.6 62.9 63.9 26.9 7.6 54.1 7.8 81.3 1.8 33.8-7.4 56-28.3 68-60.4 8-21.5 10.7-43.8 11-66.5.1-5.8.3-47-.2-52.8l-.9-.3c-.8 1.5-1.7 2.9-2.5 4.4-22.1 43.1-61.3 67.4-105.4 69.1-103 4-169.4-57-172-176.2-.5-23.7 1.8-46.9 8.3-69.7C58.3 47.7 112.3.6 191.6 0c61.3-.4 101.5 38.7 116.2 70.3.5 1.1 1.3 2.3 2.4 1.9V10.6h44.3c0 280.3.1 332.2.1 332.2-.1 78.5-26.7 143.7-103 162.2-69.5 16.9-159 4.8-196-57.2-8-13.5-11.8-28.3-13-44.5zM188.9 36.5c-52.5-.5-108.5 40.7-115 133.8-4.1 59 14.8 122.2 71.5 148.6 27.6 12.9 74.3 15 108.3-8.7 47.6-33.2 62.7-97 54.8-154-9.7-71.1-47.8-120-119.6-119.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoogle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoogle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoogle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoogle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoogle.js new file mode 100644 index 0000000000..d89f4e0b4c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoogle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'google', icon: [488, 512, [], "f1a0", "M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoogleDrive.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoogleDrive.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoogleDrive.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoogleDrive.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoogleDrive.js new file mode 100644 index 0000000000..d370cbdf87 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoogleDrive.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'google-drive', icon: [512, 512, [], "f3aa", "M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlay.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlay.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlay.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlay.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlay.js new file mode 100644 index 0000000000..b6e705c1d2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlay.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'google-play', icon: [512, 512, [], "f3ab", "M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlus.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlus.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlus.js new file mode 100644 index 0000000000..59f91566e6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlus.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'google-plus', icon: [496, 512, [], "f2b3", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm-70.7 372c-68.8 0-124-55.5-124-124s55.2-124 124-124c31.3 0 60.1 11 83 32.3l-33.6 32.6c-13.2-12.9-31.3-19.1-49.4-19.1-42.9 0-77.2 35.5-77.2 78.1s34.2 78.1 77.2 78.1c32.6 0 64.9-19.1 70.1-53.3h-70.1v-42.6h116.9c1.3 6.8 1.9 13.6 1.9 20.7 0 70.8-47.5 121.2-118.8 121.2zm230.2-106.2v35.5H372v-35.5h-35.5v-35.5H372v-35.5h35.5v35.5h35.2v35.5h-35.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlusG.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlusG.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlusG.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlusG.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlusG.js new file mode 100644 index 0000000000..a2f143429c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlusG.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'google-plus-g', icon: [640, 512, [], "f0d5", "M386.061 228.496c1.834 9.692 3.143 19.384 3.143 31.956C389.204 370.205 315.599 448 204.8 448c-106.084 0-192-85.915-192-192s85.916-192 192-192c51.864 0 95.083 18.859 128.611 50.292l-52.126 50.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484 0-118.92 54.221-118.92 121.277 0 67.056 53.436 121.277 118.92 121.277 75.961 0 104.513-54.745 108.965-82.773H204.8v-66.009h181.261zm185.406 6.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001h-55.733z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlusSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlusSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlusSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlusSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlusSquare.js new file mode 100644 index 0000000000..4ce5e90eb8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGooglePlusSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'google-plus-square', icon: [448, 512, [], "f0d4", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM164 356c-55.3 0-100-44.7-100-100s44.7-100 100-100c27 0 49.5 9.8 67 26.2l-27.1 26.1c-7.4-7.1-20.3-15.4-39.8-15.4-34.1 0-61.9 28.2-61.9 63.2 0 34.9 27.8 63.2 61.9 63.2 39.6 0 54.4-28.5 56.8-43.1H164v-34.4h94.4c1 5 1.6 10.1 1.6 16.6 0 57.1-38.3 97.6-96 97.6zm220-81.8h-29v29h-29.2v-29h-29V245h29v-29H355v29h29v29.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoogleWallet.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoogleWallet.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoogleWallet.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoogleWallet.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoogleWallet.js new file mode 100644 index 0000000000..ec26c6c27d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGoogleWallet.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'google-wallet', icon: [448, 512, [], "f1ee", "M156.8 126.8c37.6 60.6 64.2 113.1 84.3 162.5-8.3 33.8-18.8 66.5-31.3 98.3-13.2-52.3-26.5-101.3-56-148.5 6.5-36.4 2.3-73.6 3-112.3zM109.3 200H16.1c-6.5 0-10.5 7.5-6.5 12.7C51.8 267 81.3 330.5 101.3 400h103.5c-16.2-69.7-38.7-133.7-82.5-193.5-3-4-8-6.5-13-6.5zm47.8-88c68.5 108 130 234.5 138.2 368H409c-12-138-68.4-265-143.2-368H157.1zm251.8-68.5c-1.8-6.8-8.2-11.5-15.2-11.5h-88.3c-5.3 0-9 5-7.8 10.3 13.2 46.5 22.3 95.5 26.5 146 48.2 86.2 79.7 178.3 90.6 270.8 15.8-60.5 25.3-133.5 25.3-203 0-73.6-12.1-145.1-31.1-212.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGratipay.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGratipay.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGratipay.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGratipay.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGratipay.js new file mode 100644 index 0000000000..05011784f8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGratipay.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'gratipay', icon: [496, 512, [], "f184", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm114.6 226.4l-113 152.7-112.7-152.7c-8.7-11.9-19.1-50.4 13.6-72 28.1-18.1 54.6-4.2 68.5 11.9 15.9 17.9 46.6 16.9 61.7 0 13.9-16.1 40.4-30 68.1-11.9 32.9 21.6 22.6 60 13.8 72z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGrav.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGrav.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGrav.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGrav.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGrav.js new file mode 100644 index 0000000000..d9d767cff2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGrav.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'grav', icon: [512, 512, [], "f2d6", "M301.1 212c4.4 4.4 4.4 11.9 0 16.3l-9.7 9.7c-4.4 4.7-11.9 4.7-16.6 0l-10.5-10.5c-4.4-4.7-4.4-11.9 0-16.6l9.7-9.7c4.4-4.4 11.9-4.4 16.6 0l10.5 10.8zm-30.2-19.7c3-3 3-7.8 0-10.5-2.8-3-7.5-3-10.5 0-2.8 2.8-2.8 7.5 0 10.5 3.1 2.8 7.8 2.8 10.5 0zm-26 5.3c-3 2.8-3 7.5 0 10.2 2.8 3 7.5 3 10.5 0 2.8-2.8 2.8-7.5 0-10.2-3-3-7.7-3-10.5 0zm72.5-13.3c-19.9-14.4-33.8-43.2-11.9-68.1 21.6-24.9 40.7-17.2 59.8.8 11.9 11.3 29.3 24.9 17.2 48.2-12.5 23.5-45.1 33.2-65.1 19.1zm47.7-44.5c-8.9-10-23.3 6.9-15.5 16.1 7.4 9 32.1 2.4 15.5-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-66.2 42.6c2.5-16.1-20.2-16.6-25.2-25.7-13.6-24.1-27.7-36.8-54.5-30.4 11.6-8 23.5-6.1 23.5-6.1.3-6.4 0-13-9.4-24.9 3.9-12.5.3-22.4.3-22.4 15.5-8.6 26.8-24.4 29.1-43.2 3.6-31-18.8-59.2-49.8-62.8-22.1-2.5-43.7 7.7-54.3 25.7-23.2 40.1 1.4 70.9 22.4 81.4-14.4-1.4-34.3-11.9-40.1-34.3-6.6-25.7 2.8-49.8 8.9-61.4 0 0-4.4-5.8-8-8.9 0 0-13.8 0-24.6 5.3 11.9-15.2 25.2-14.4 25.2-14.4 0-6.4-.6-14.9-3.6-21.6-5.4-11-23.8-12.9-31.7 2.8.1-.2.3-.4.4-.5-5 11.9-1.1 55.9 16.9 87.2-2.5 1.4-9.1 6.1-13 10-21.6 9.7-56.2 60.3-56.2 60.3-28.2 10.8-77.2 50.9-70.6 79.7.3 3 1.4 5.5 3 7.5-2.8 2.2-5.5 5-8.3 8.3-11.9 13.8-5.3 35.2 17.7 24.4 15.8-7.2 29.6-20.2 36.3-30.4 0 0-5.5-5-16.3-4.4 27.7-6.6 34.3-9.4 46.2-9.1 8 3.9 8-34.3 8-34.3 0-14.7-2.2-31-11.1-41.5 12.5 12.2 29.1 32.7 28 60.6-.8 18.3-15.2 23-15.2 23-9.1 16.6-43.2 65.9-30.4 106 0 0-9.7-14.9-10.2-22.1-17.4 19.4-46.5 52.3-24.6 64.5 26.6 14.7 108.8-88.6 126.2-142.3 34.6-20.8 55.4-47.3 63.9-65 22 43.5 95.3 94.5 101.1 59z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGripfire.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGripfire.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGripfire.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGripfire.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGripfire.js new file mode 100644 index 0000000000..ece0924c76 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGripfire.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'gripfire', icon: [384, 512, [], "f3ac", "M171.8 503.8c0-5.3 4.8-12.2 4.8-22.3 0-15.2-13-39.9-78.1-86.6C64.2 365.8 32 336.4 32 286.6 32 171.9 179.1 110.1 179.1 18c0-3.3-.2-6.7-.6-10 5.1 2.4 39.1 43.3 39.1 90.4 0 80.5-105.1 129.2-105.1 203 0 26.9 16.6 47.2 32.6 69.5 22.5 30.2 44.2 56.9 44.2 86.5-.1 14.5-4.4 29.7-17.5 46.4zm146-241.4c1.5 8.4 2.2 16.6 2.2 24.6 0 51.8-29.4 97.5-67.3 136.8-1 1-2.2 2.4-3.2 2.4-3.6 0-35.5-41.6-35.5-53.2 0 0 41.8-55.7 41.8-96.9 0-10.8-2.7-21.7-9.1-33.4-1.5 32.3-55.7 87.7-58.1 87.7-2.7 0-17.9-22-17.9-42.1 0-5.3 1-10.7 3.2-15.8 2.4-5.5 56.6-72 56.6-116.7 0-6.2-1-12-3.4-17.1l-4-7.2c16.7 6.5 82.6 64.1 94.7 130.9"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGrunt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGrunt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGrunt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGrunt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGrunt.js new file mode 100644 index 0000000000..f1a38594fb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGrunt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'grunt', icon: [384, 512, [], "f3ad", "M61.3 189.3c-1.1 10 5.2 19.1 5.2 19.1.7-7.5 2.2-12.8 4-16.6.4 10.3 3.2 23.5 12.8 34.1 6.9 7.6 35.6 23.3 54.9 6.1 1 2.4 2.1 5.3 3 8.5 2.9 10.3-2.7 25.3-2.7 25.3s15.1-17.1 13.9-32.5c10.8-.5 21.4-8.4 21.1-19.5 0 0-18.9 10.4-35.5-8.8-9.7-11.2-40.9-42-83.1-31.8 4.3 1 8.9 2.4 13.5 4.1h-.1c-4.2 2-6.5 7.1-7 12zm28.3-1.8c19.5 11 37.4 25.7 44.9 37-5.7 3.3-21.7 10.4-38-1.7-10.3-7.6-9.8-26.2-6.9-35.3zm79.2 233.7c2.2 2.3 1.5 5.3.9 6.8-1.1 2.7-5.5 11.6-13 19.8-2.7 2.9-6.6 4.6-11 4.6-4.3 0-8.7-1.6-11.8-4.3-2.3-2.1-10.2-9.5-13.7-18.6-1.3-3.4-1-6.1.9-8.1 1.3-1.3 4-2.9 9.5-2.9H160c4.1 0 7 .9 8.8 2.7zm62.9-187.9c-1.2 15.5 13.9 32.5 13.9 32.5s-5.6-15-2.7-25.3c.9-3.2 2-6 3-8.5 19.3 17.3 48 1.5 54.8-6.1 9.6-10.6 12.3-23.8 12.8-34.1 1.8 3.8 3.4 9.1 4 16.6 0 0 6.4-9.1 5.2-19.1-.6-5-2.9-10-7-11.8h-.1c4.6-1.8 9.2-3.2 13.5-4.1-42.3-10.2-73.4 20.6-83.1 31.8-16.7 19.2-35.5 8.8-35.5 8.8-.2 10.9 10.4 18.9 21.2 19.3zm17.8-8.8c7.5-11.4 25.4-26 44.9-37 3 9.1 3.4 27.7-7 35.4-16.3 12.1-32.2 5-37.9 1.6-.1.1 0 0 0 0zM263 421.4c1.9 1.9 2.2 4.6.9 7.9-3.5 8.9-11.4 16.1-13.7 18.1-3.1 2.6-7.4 4.2-11.8 4.2s-8.3-1.6-11-4.5c-7.5-8-12-16.7-13-19.3-.6-1.5-1.3-4.4.9-6.7 1.7-1.8 4.7-2.7 8.9-2.7h29.4c5.4.1 8.1 1.7 9.4 3zm-98.3-251.5c9.9 6 18.8 8.1 27.3 8.3 8.5-.2 17.4-2.3 27.3-8.3 0 0-14.5 17.7-27.2 17.8h-.2c-12.7-.2-27.2-17.8-27.2-17.8zm184.5 147.4c-2.4 17.9-13 33.8-24.6 43.7-3.1-22.7-3.7-55.5-3.7-62.4 0-14.7 9.5-24.5 12.2-26.1 2.5-1.5 5.4-3 8.3-4.6 18-9.6 40.4-21.6 40.4-43.7 0-16.2-9.3-23.2-15.4-27.8-.8-.6-1.5-1.1-2.2-1.7-2.1-1.7-3.7-3-4.3-4.4-4.4-9.8-3.6-34.2-1.7-37.6.6-.6 16.7-20.9 11.8-39.2-2-7.4-6.9-13.3-14.1-17-5.3-2.7-11.9-4.2-19.5-4.5-.1-2-.5-3.9-.9-5.9-.6-2.6-1.1-5.3-.9-8.1.4-4.7.8-9 2.2-11.3 8.4-13.3 28.8-17.6 29-17.6l12.3-2.4-8.1-9.5c-.1-.2-17.3-17.5-46.3-17.5-7.9 0-16 1.3-24.1 3.9-24.2 7.8-42.9 30.5-49.4 39.3-3.1-1-6.3-1.9-9.6-2.7-4.2-15.8 9-38.5 9-38.5s-13.6-3-33.7 15.2c-2.6-6.5-8.1-20.5-1.8-37.2C184.6 10.1 177.2 26 175 40.4c-7.6-5.4-6.7-23.1-7.2-27.6-7.5.9-29.2 21.9-28.2 48.3-2 .5-3.9 1.1-5.9 1.7-6.5-8.8-25.1-31.5-49.4-39.3-7.9-2.2-16-3.5-23.9-3.5-29 0-46.1 17.3-46.3 17.5L6 46.9l12.3 2.4c.2 0 20.6 4.3 29 17.6 1.4 2.2 1.8 6.6 2.2 11.3.2 2.8-.4 5.5-.9 8.1-.4 1.9-.8 3.9-.9 5.9-7.7.3-14.2 1.8-19.5 4.5-7.2 3.7-12.1 9.6-14.1 17-5 18.2 11.2 38.5 11.8 39.2 1.9 3.4 2.7 27.8-1.7 37.6-.6 1.4-2.2 2.7-4.3 4.4-.7.5-1.4 1.1-2.2 1.7-6.1 4.6-15.4 11.7-15.4 27.8 0 22.1 22.4 34.1 40.4 43.7 3 1.6 5.8 3.1 8.3 4.6 2.7 1.6 12.2 11.4 12.2 26.1 0 6.9-.6 39.7-3.7 62.4-11.6-9.9-22.2-25.9-24.6-43.8 0 0-29.2 22.6-20.6 70.8 5.2 29.5 23.2 46.1 47 54.7 8.8 19.1 29.4 45.7 67.3 49.6C143 504.3 163 512 192.2 512h.2c29.1 0 49.1-7.7 63.6-19.5 37.9-3.9 58.5-30.5 67.3-49.6 23.8-8.7 41.7-25.2 47-54.7 8.2-48.4-21.1-70.9-21.1-70.9zM305.7 37.7c5.6-1.8 11.6-2.7 17.7-2.7 11 0 19.9 3 24.7 5-3.1 1.4-6.4 3.2-9.7 5.3-2.4-.4-5.6-.8-9.2-.8-10.5 0-20.5 3.1-28.7 8.9-12.3 8.7-18 16.9-20.7 22.4-2.2-1.3-4.5-2.5-7.1-3.7-1.6-.8-3.1-1.5-4.7-2.2 6.1-9.1 19.9-26.5 37.7-32.2zm21 18.2c-.8 1-1.6 2.1-2.3 3.2-3.3 5.2-3.9 11.6-4.4 17.8-.5 6.4-1.1 12.5-4.4 17-4.2.8-8.1 1.7-11.5 2.7-2.3-3.1-5.6-7-10.5-11.2 1.4-4.8 5.5-16.1 13.5-22.5 5.6-4.3 12.2-6.7 19.6-7zM45.6 45.3c-3.3-2.2-6.6-4-9.7-5.3 4.8-2 13.7-5 24.7-5 6.1 0 12 .9 17.7 2.7 17.8 5.8 31.6 23.2 37.7 32.1-1.6.7-3.2 1.4-4.8 2.2-2.5 1.2-4.9 2.5-7.1 3.7-2.6-5.4-8.3-13.7-20.7-22.4-8.3-5.8-18.2-8.9-28.8-8.9-3.4.1-6.6.5-9 .9zm44.7 40.1c-4.9 4.2-8.3 8-10.5 11.2-3.4-.9-7.3-1.9-11.5-2.7C65 89.5 64.5 83.4 64 77c-.5-6.2-1.1-12.6-4.4-17.8-.7-1.1-1.5-2.2-2.3-3.2 7.4.3 14 2.6 19.5 7 8 6.3 12.1 17.6 13.5 22.4zM58.1 259.9c-2.7-1.6-5.6-3.1-8.4-4.6-14.9-8-30.2-16.3-30.2-30.5 0-11.1 4.3-14.6 8.9-18.2l.5-.4c.7-.6 1.4-1.2 2.2-1.8-.9 7.2-1.9 13.3-2.7 14.9 0 0 12.1-15 15.7-44.3 1.4-11.5-1.1-34.3-5.1-43 .2 4.9 0 9.8-.3 14.4-.4-.8-.8-1.6-1.3-2.2-3.2-4-11.8-17.5-9.4-26.6.9-3.5 3.1-6 6.7-7.8 3.8-1.9 8.8-2.9 15.1-2.9 12.3 0 25.9 3.7 32.9 6 25.1 8 55.4 30.9 64.1 37.7.2.2.4.3.4.3l5.6 3.9-3.5-5.8c-.2-.3-19.1-31.4-53.2-46.5 2-2.9 7.4-8.1 21.6-15.1 21.4-10.5 46.5-15.8 74.3-15.8 27.9 0 52.9 5.3 74.3 15.8 14.2 6.9 19.6 12.2 21.6 15.1-34 15.1-52.9 46.2-53.1 46.5l-3.5 5.8 5.6-3.9s.2-.1.4-.3c8.7-6.8 39-29.8 64.1-37.7 7-2.2 20.6-6 32.9-6 6.3 0 11.3 1 15.1 2.9 3.5 1.8 5.7 4.4 6.7 7.8 2.5 9.1-6.1 22.6-9.4 26.6-.5.6-.9 1.3-1.3 2.2-.3-4.6-.5-9.5-.3-14.4-4 8.8-6.5 31.5-5.1 43 3.6 29.3 15.7 44.3 15.7 44.3-.8-1.6-1.8-7.7-2.7-14.9.7.6 1.5 1.2 2.2 1.8l.5.4c4.6 3.7 8.9 7.1 8.9 18.2 0 14.2-15.4 22.5-30.2 30.5-2.9 1.5-5.7 3.1-8.4 4.6-8.7 5-18 16.7-19.1 34.2-.9 14.6.9 49.9 3.4 75.9-12.4 4.8-26.7 6.4-39.7 6.8-2-4.1-3.9-8.5-5.5-13.1-.7-2-19.6-51.1-26.4-62.2 5.5 39 17.5 73.7 23.5 89.6-3.5-.5-7.3-.7-11.7-.7h-117c-4.4 0-8.3.3-11.7.7 6-15.9 18.1-50.6 23.5-89.6-6.8 11.2-25.7 60.3-26.4 62.2-1.6 4.6-3.5 9-5.5 13.1-13-.4-27.2-2-39.7-6.8 2.5-26 4.3-61.2 3.4-75.9-.9-17.4-10.3-29.2-19-34.2zM34.8 404.6c-12.1-20-8.7-54.1-3.7-59.1 10.9 34.4 47.2 44.3 74.4 45.4-2.7 4.2-5.2 7.6-7 10l-1.4 1.4c-7.2 7.8-8.6 18.5-4.1 31.8-22.7-.1-46.3-9.8-58.2-29.5zm45.7 43.5c6 1.1 12.2 1.9 18.6 2.4 3.5 8 7.4 15.9 12.3 23.1-14.4-5.9-24.4-16-30.9-25.5zM192 498.2c-60.6-.1-78.3-45.8-84.9-64.7-3.7-10.5-3.4-18.2.9-23.1 2.9-3.3 9.5-7.2 24.6-7.2h118.8c15.1 0 21.8 3.9 24.6 7.2 4.2 4.8 4.5 12.6.9 23.1-6.6 18.8-24.3 64.6-84.9 64.7zm80.6-24.6c4.9-7.2 8.8-15.1 12.3-23.1 6.4-.5 12.6-1.3 18.6-2.4-6.5 9.5-16.5 19.6-30.9 25.5zm76.6-69c-12 19.7-35.6 29.3-58.1 29.7 4.5-13.3 3.1-24.1-4.1-31.8-.4-.5-.9-1-1.4-1.5-1.8-2.4-4.3-5.8-7-10 27.2-1.2 63.5-11 74.4-45.4 5 5 8.4 39.1-3.8 59z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGulp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGulp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGulp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGulp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGulp.js new file mode 100644 index 0000000000..a9b76b6a07 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faGulp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'gulp', icon: [256, 512, [], "f3ae", "M209.8 391.1l-14.1 24.6-4.6 80.2c0 8.9-28.3 16.1-63.1 16.1s-63.1-7.2-63.1-16.1l-5.8-79.4-14.9-25.4c41.2 17.3 126 16.7 165.6 0zm-196-253.3l13.6 125.5c5.9-20 20.8-47 40-55.2 6.3-2.7 12.7-2.7 18.7.9 5.2 3 9.6 9.3 10.1 11.8 1.2 6.5-2 9.1-4.5 9.1-3 0-5.3-4.6-6.8-7.3-4.1-7.3-10.3-7.6-16.9-2.8-6.9 5-12.9 13.4-17.1 20.7-5.1 8.8-9.4 18.5-12 28.2-1.5 5.6-2.9 14.6-.6 19.9 1 2.2 2.5 3.6 4.9 3.6 5 0 12.3-6.6 15.8-10.1 4.5-4.5 10.3-11.5 12.5-16l5.2-15.5c2.6-6.8 9.9-5.6 9.9 0 0 10.2-3.7 13.6-10 34.7-5.8 19.5-7.6 25.8-7.6 25.8-.7 2.8-3.4 7.5-6.3 7.5-1.2 0-2.1-.4-2.6-1.2-1-1.4-.9-5.3-.8-6.3.2-3.2 6.3-22.2 7.3-25.2-2 2.2-4.1 4.4-6.4 6.6-5.4 5.1-14.1 11.8-21.5 11.8-3.4 0-5.6-.9-7.7-2.4l7.6 79.6c2 5 39.2 17.1 88.2 17.1 49.1 0 86.3-12.2 88.2-17.1l10.9-94.6c-5.7 5.2-12.3 11.6-19.6 14.8-5.4 2.3-17.4 3.8-17.4-5.7 0-5.2 9.1-14.8 14.4-21.5 1.4-1.7 4.7-5.9 4.7-8.1 0-2.9-6-2.2-11.7 2.5-3.2 2.7-6.2 6.3-8.7 9.7-4.3 6-6.6 11.2-8.5 15.5-6.2 14.2-4.1 8.6-9.1 22-5 13.3-4.2 11.8-5.2 14-.9 1.9-2.2 3.5-4 4.5-1.9 1-4.5.9-6.1-.3-.9-.6-1.3-1.9-1.3-3.7 0-.9.1-1.8.3-2.7 1.5-6.1 7.8-18.1 15-34.3 1.6-3.7 1-2.6.8-2.3-6.2 6-10.9 8.9-14.4 10.5-5.8 2.6-13 2.6-14.5-4.1-.1-.4-.1-.8-.2-1.2-11.8 9.2-24.3 11.7-20-8.1-4.6 8.2-12.6 14.9-22.4 14.9-4.1 0-7.1-1.4-8.6-5.1-2.3-5.5 1.3-14.9 4.6-23.8 1.7-4.5 4-9.9 7.1-16.2 1.6-3.4 4.2-5.4 7.6-4.5.6.2 1.1.4 1.6.7 2.6 1.8 1.6 4.5.3 7.2-3.8 7.5-7.1 13-9.3 20.8-.9 3.3-2 9 1.5 9 2.4 0 4.7-.8 6.9-2.4 4.6-3.4 8.3-8.5 11.1-13.5 2-3.6 4.4-8.3 5.6-12.3.5-1.7 1.1-3.3 1.8-4.8 1.1-2.5 2.6-5.1 5.2-5.1 1.3 0 2.4.5 3.2 1.5 1.7 2.2 1.3 4.5.4 6.9-2 5.6-4.7 10.6-6.9 16.7-1.3 3.5-2.7 8-2.7 11.7 0 3.4 3.7 2.6 6.8 1.2 2.4-1.1 4.8-2.8 6.8-4.5 1.2-4.9.9-3.8 26.4-68.2 1.3-3.3 3.7-4.7 6.1-4.7 1.2 0 2.2.4 3.2 1.1 1.7 1.3 1.7 4.1 1 6.2-.7 1.9-.6 1.3-4.5 10.5-5.2 12.1-8.6 20.8-13.2 31.9-1.9 4.6-7.7 18.9-8.7 22.3-.6 2.2-1.3 5.8 1 5.8 5.4 0 19.3-13.1 23.1-17 .2-.3.5-.4.9-.6.6-1.9 1.2-3.7 1.7-5.5 1.4-3.8 2.7-8.2 5.3-11.3.8-1 1.7-1.6 2.7-1.6 2.8 0 4.2 1.2 4.2 4 0 1.1-.7 5.1-1.1 6.2 1.4-1.5 2.9-3 4.5-4.5 15-13.9 25.7-6.8 25.7.2 0 7.4-8.9 17.7-13.8 23.4-1.6 1.9-4.9 5.4-5 6.4 0 1.3.9 1.8 2.2 1.8 2 0 6.4-3.5 8-4.7 5-3.9 11.8-9.9 16.6-14.1l14.8-136.8c-30.5 17.1-197.6 17.2-228.3.2zm229.7-8.5c0 21-231.2 21-231.2 0 0-8.8 51.8-15.9 115.6-15.9 9 0 17.8.1 26.3.4l12.6-48.7L228.1.6c1.4-1.4 5.8-.2 9.9 3.5s6.6 7.9 5.3 9.3l-.1.1L185.9 74l-10 40.7c39.9 2.6 67.6 8.1 67.6 14.6zm-69.4 4.6c0-.8-.9-1.5-2.5-2.1l-.2.8c0 1.3-5 2.4-11.1 2.4s-11.1-1.1-11.1-2.4c0-.1 0-.2.1-.3l.2-.7c-1.8.6-3 1.4-3 2.3 0 2.1 6.2 3.7 13.7 3.7 7.7.1 13.9-1.6 13.9-3.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHackerNews.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHackerNews.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHackerNews.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHackerNews.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHackerNews.js new file mode 100644 index 0000000000..11ccaba07d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHackerNews.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'hacker-news', icon: [448, 512, [], "f1d4", "M0 32v448h448V32H0zm21.2 197.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHackerNewsSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHackerNewsSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHackerNewsSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHackerNewsSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHackerNewsSquare.js new file mode 100644 index 0000000000..9740be8024 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHackerNewsSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'hacker-news-square', icon: [448, 512, [], "f3af", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM21.2 229.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHips.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHips.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHips.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHips.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHips.js new file mode 100644 index 0000000000..1560593e9e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHips.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'hips', icon: [640, 512, [], "f452", "M0 80.2c0-1.8.9-2.7 2.7-2.7h40.9c1.9 0 2.8.9 2.8 2.7v81.2c15.2-7.7 31.7-11.5 49.8-11.4 24 .1 44.2 6.2 60.3 18 18.7 13.5 28 31.9 28 55.3v136.1c0 1.9-.9 2.8-2.7 2.8h-27.3c-9.1 0-16.4-7.3-16.4-16.3V223.3c0-.9 2.7-27-45.8-27-48.6 0-45.8 26.2-45.8 27v136.1c0 1.9-.9 2.8-2.8 2.8h-41c-1.8 0-2.7-.9-2.7-2.8V80.2zm497.7 221.5c13.7 10.2 34.1 19.1 58.4 19.1 23.3 0 32.8-4.5 36.5-13.6 3-7.9-.6-16.1-12.2-21.2l-53.6-23.5c-21.4-9.4-33.8-24-37.2-43.6-5.7-33.7 22.2-53.3 22.7-53.7 13.2-9.6 32-15.4 58.5-15.4 19 0 37.4 3.3 55.1 9.9 1.3.5 1.9 1.3 1.9 2.6V207c0 2.1-2.3 3.4-4 2.4-39.7-20.7-76.6-12.3-84-6.8-6.6 4.9-6 12.5 2.6 16.1L600 244c16.5 7.1 28.1 18.4 34.9 34.1 5.5 12.6 6.6 25.6 3.1 39.1-9.6 36.9-44.9 45.5-45.6 45.8-10.5 3.1-23.6 4.3-36.3 4.3-16.6 0-32.6-2.7-48.2-8.2-9.7-3.4-14.6-10.3-14.6-20.7V304c0-2.1 2.3-3.7 4.4-2.3zM376.2 149.8c-31.7 0-104.2 20.1-104.2 103.5v183.5c0 .8.6 2.7 2.7 2.7h40.9c1.9 0 2.8-.9 2.8-2.7V348c16.5 12.7 35.8 19.1 57.7 19.1 60.5 0 108.7-48.5 108.7-108.7.1-60.3-48.2-108.6-108.6-108.6zm0 170.9c-17.2 0-31.9-6.1-44-18.2-12.2-12.2-18.2-26.8-18.2-44 0-34.5 27.6-62.2 62.2-62.2 34.5 0 62.2 27.6 62.2 62.2.1 34.3-27.3 62.2-62.2 62.2zm-124.6 38.7c0 1.9-.9 2.8-2.8 2.8h-40.9c-1.6 0-2.7-1.4-2.7-2.8V157.6c0-1.4 1.1-2.8 2.7-2.8h40.9c1.9 0 2.8.9 2.8 2.8v201.8M228.3 72.5c15.9 0 28.9 12.7 28.9 28.9 0 15.8-12.7 28.9-28.9 28.9s-28.9-13.3-28.9-28.9c.1-16 13-28.9 28.9-28.9"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHireAHelper.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHireAHelper.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHireAHelper.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHireAHelper.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHireAHelper.js new file mode 100644 index 0000000000..2df8a9bffd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHireAHelper.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'hire-a-helper', icon: [512, 512, [], "f3b0", "M443.1 0H71.9C67.9 37.3 37.4 67.8 0 71.7v371.5c37.4 4.9 66 32.4 71.9 68.8h372.2c3-36.4 32.5-65.8 67.9-69.8V71.7c-36.4-5.9-65-35.3-68.9-71.7zm-37 404.9c-36.3 0-18.8-2-55.1-2-35.8 0-21 2-56.1 2-5.9 0-4.9-8.2 0-9.8 22.8-7.6 22.9-10.2 24.6-12.8 10.4-15.6 5.9-83 5.9-113 0-5.3-6.4-12.8-13.8-12.8H200.4c-7.4 0-13.8 7.5-13.8 12.8 0 30-4.5 97.4 5.9 113 1.7 2.5 1.8 5.2 24.6 12.8 4.9 1.6 6 9.8 0 9.8-35.1 0-20.3-2-56.1-2-36.3 0-18.8 2-55.1 2-7.9 0-5.8-10.8 0-10.8 10.2-3.4 13.5-3.5 21.7-13.8 7.7-12.9 7.9-44.4 7.9-127.8V151.3c0-22.2-12.2-28.3-28.6-32.4-8.8-2.2-4-11.8 1-11.8 36.5 0 20.6 2 57.1 2 32.7 0 16.5-2 49.2-2 3.3 0 8.5 8.3 1 10.8-4.9 1.6-27.6 3.7-27.6 39.3 0 45.6-.2 55.8 1 68.8 0 1.3 2.3 12.8 12.8 12.8h109.2c10.5 0 12.8-11.5 12.8-12.8 1.2-13 1-23.2 1-68.8 0-35.6-22.7-37.7-27.6-39.3-7.5-2.5-2.3-10.8 1-10.8 32.7 0 16.5 2 49.2 2 36.5 0 20.6-2 57.1-2 4.9 0 9.9 9.6 1 11.8-16.4 4.1-28.6 10.3-28.6 32.4v101.2c0 83.4.1 114.9 7.9 127.8 8.2 10.2 11.4 10.4 21.7 13.8 5.8 0 7.8 10.8 0 10.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHooli.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHooli.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHooli.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHooli.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHooli.js new file mode 100644 index 0000000000..a585cc81ed --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHooli.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'hooli', icon: [640, 512, [], "f427", "M508.4 352h57.9V156.7L508.4 184v168zm73.7-110.5V352H640V241.5h-57.9zm-250.7-8.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.2-1.1-50.4 17.1c-1.9 1.9-3.7 3.9-5.3 6-38.2-29.6-72.5-46.5-102.1-61.1v-20.7l-22.5 10.6c-54.4-22.1-89-18.2-97.3.1 0 0-24.9 32.8 61.9 110.9v-31c-48.8-54.6-39-76.1-35.3-79.2 13.5-11.4 37.5-8 64.4 2.1L65.2 184v63.3c13.1 14.7 30.5 31.5 53.5 50.4l4.5 3.6v-29.8c0-6.9 1.7-18.2 10.8-18.2s10.6 6.9 10.6 15V317c18 12.2 37.3 22.1 57.7 29.6v-93.9c0-18.7-13.4-37.4-40.6-37.4-15.8-.1-30.5 8.2-38.5 21.9v-54.3c41.9 20.9 83.9 46.5 99.9 58.3-10.2 14.6-9.3 28.1-9.3 43.7 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.7-33.8 16.7-52.5 0-18.5 1.5-34.2-16.7-52.3zm-39.7 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm185.7-71.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.3-1.1-50.4 17.1c-18.2 18.2-16.8 33.9-16.8 52.6 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.8-33.8 16.8-52.5-.1-18.8 1.3-34.5-16.8-52.6zm-39.8 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm173.5-73c15.9 0 28.9-12.9 28.9-28.9s-12.9-24.5-28.9-24.5c-15.9 0-28.9 8.6-28.9 24.5s12.9 28.9 28.9 28.9zM144.5 352l38.3.8c-13.2-4.6-26-10.2-38.3-16.8v16zm-21.4 0v-28.6c-6.5-4.2-13-8.7-19.4-13.6-14.8-11.2-27.5-21.7-38.5-31.5V352h57.9zm59.7.8c36.5 12.5 69.9 14.2 94.7 7.2-19.9.2-45.8-2.6-75.3-13.3v5.3l-19.4.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHotjar.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHotjar.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHotjar.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHotjar.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHotjar.js new file mode 100644 index 0000000000..b0531c7de8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHotjar.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'hotjar', icon: [448, 512, [], "f3b1", "M414.9 161.5C340.2 29 121.1 0 121.1 0S222.2 110.4 93 197.7C11.3 252.8-21 324.4 14 402.6c26.8 59.9 83.5 84.3 144.6 93.4-29.2-55.1-6.6-122.4-4.1-129.6 57.1 86.4 165 0 110.8-93.9 71 15.4 81.6 138.6 27.1 215.5 80.5-25.3 134.1-88.9 148.8-145.6 15.5-59.3 3.7-127.9-26.3-180.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHouzz.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHouzz.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHouzz.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHouzz.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHouzz.js new file mode 100644 index 0000000000..75abe2645e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHouzz.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'houzz', icon: [414, 512, [], "f27c", "M258.9 330.7H154.3V480H0V32h109.5v104.5l305.1 85.6V480H258.9V330.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHtml5.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHtml5.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHtml5.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHtml5.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHtml5.js new file mode 100644 index 0000000000..7c99e8a2de --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHtml5.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'html5', icon: [384, 512, [], "f13b", "M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHubspot.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHubspot.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHubspot.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHubspot.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHubspot.js new file mode 100644 index 0000000000..bbcb70064c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faHubspot.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'hubspot', icon: [512, 512, [], "f3b2", "M267.4 211.6c-25.1 23.7-40.8 57.3-40.8 94.6 0 29.3 9.7 56.3 26 78L203.1 434c-4.4-1.6-9.1-2.5-14-2.5-10.8 0-20.9 4.2-28.5 11.8-7.6 7.6-11.8 17.8-11.8 28.6s4.2 20.9 11.8 28.5c7.6 7.6 17.8 11.6 28.5 11.6 10.8 0 20.9-3.9 28.6-11.6 7.6-7.6 11.8-17.8 11.8-28.5 0-4.2-.6-8.2-1.9-12.1l50-50.2c22 16.9 49.4 26.9 79.3 26.9 71.9 0 130-58.3 130-130.2 0-65.2-47.7-119.2-110.2-128.7V116c17.5-7.4 28.2-23.8 28.2-42.9 0-26.1-20.9-47.9-47-47.9S311.2 47 311.2 73.1c0 19.1 10.7 35.5 28.2 42.9v61.2c-15.2 2.1-29.6 6.7-42.7 13.6-27.6-20.9-117.5-85.7-168.9-124.8 1.2-4.4 2-9 2-13.8C129.8 23.4 106.3 0 77.4 0 48.6 0 25.2 23.4 25.2 52.2c0 28.9 23.4 52.3 52.2 52.3 9.8 0 18.9-2.9 26.8-7.6l163.2 114.7zm89.5 163.6c-38.1 0-69-30.9-69-69s30.9-69 69-69 69 30.9 69 69-30.9 69-69 69z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faImdb.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faImdb.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faImdb.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faImdb.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faImdb.js new file mode 100644 index 0000000000..31828a6b37 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faImdb.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'imdb', icon: [448, 512, [], "f2d8", "M350.5 288.7c0 5.4 1.6 14.4-6.2 14.4-1.6 0-3-.8-3.8-2.4-2.2-5.1-1.1-44.1-1.1-44.7 0-3.8-1.1-12.7 4.9-12.7 7.3 0 6.2 7.3 6.2 12.7v32.7zM265 229.9c0-9.7 1.6-16-10.3-16v83.7c12.2.3 10.3-8.7 10.3-18.4v-49.3zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM21.3 228.8c-.1.1-.2.3-.3.4h.3v-.4zM97 192H64v127.8h33V192zm113.3 0h-43.1l-7.6 59.9c-2.7-20-5.4-40.1-8.7-59.9h-42.8v127.8h29v-84.5l12.2 84.5h20.6l11.6-86.4v86.4h28.7V192zm86.3 45.3c0-8.1.3-16.8-1.4-24.4-4.3-22.5-31.4-20.9-49-20.9h-24.6v127.8c86.1.1 75 6 75-82.5zm85.9 17.3c0-17.3-.8-30.1-22.2-30.1-8.9 0-14.9 2.7-20.9 9.2V192h-31.7v127.8h29.8l1.9-8.1c5.7 6.8 11.9 9.8 20.9 9.8 19.8 0 22.2-15.2 22.2-30.9v-36z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faInstagram.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faInstagram.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faInstagram.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faInstagram.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faInstagram.js new file mode 100644 index 0000000000..9d9b1955bb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faInstagram.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'instagram', icon: [448, 512, [], "f16d", "M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faInternetExplorer.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faInternetExplorer.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faInternetExplorer.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faInternetExplorer.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faInternetExplorer.js new file mode 100644 index 0000000000..d54105ad14 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faInternetExplorer.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'internet-explorer', icon: [512, 512, [], "f26b", "M483.049 159.706c10.855-24.575 21.424-60.438 21.424-87.871 0-72.722-79.641-98.371-209.673-38.577-107.632-7.181-211.221 73.67-237.098 186.457 30.852-34.862 78.271-82.298 121.977-101.158C125.404 166.85 79.128 228.002 43.992 291.725 23.246 329.651 0 390.94 0 436.747c0 98.575 92.854 86.5 180.251 42.006 31.423 15.43 66.559 15.573 101.695 15.573 97.124 0 184.249-54.294 216.814-146.022H377.927c-52.509 88.593-196.819 52.996-196.819-47.436H509.9c6.407-43.581-1.655-95.715-26.851-141.162zM64.559 346.877c17.711 51.15 53.703 95.871 100.266 123.304-88.741 48.94-173.267 29.096-100.266-123.304zm115.977-108.873c2-55.151 50.276-94.871 103.98-94.871 53.418 0 101.981 39.72 103.981 94.871H180.536zm184.536-187.6c21.425-10.287 48.563-22.003 72.558-22.003 31.422 0 54.274 21.717 54.274 53.722 0 20.003-7.427 49.007-14.569 67.867-26.28-42.292-65.986-81.584-112.263-99.586z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faIoxhost.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faIoxhost.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faIoxhost.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faIoxhost.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faIoxhost.js new file mode 100644 index 0000000000..bdd4d5ceb0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faIoxhost.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'ioxhost', icon: [640, 512, [], "f208", "M616 160h-67.3C511.2 70.7 422.9 8 320 8 183 8 72 119 72 256c0 16.4 1.6 32.5 4.7 48H24c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h67.3c37.5 89.3 125.8 152 228.7 152 137 0 248-111 248-248 0-16.4-1.6-32.5-4.7-48H616c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24zm-96 96c0 110.5-89.5 200-200 200-75.7 0-141.6-42-175.5-104H424c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24H125.8c-3.8-15.4-5.8-31.4-5.8-48 0-110.5 89.5-200 200-200 75.7 0 141.6 42 175.5 104H216c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h298.2c3.8 15.4 5.8 31.4 5.8 48zm-304-24h208c13.3 0 24 10.7 24 24 0 13.2-10.7 24-24 24H216c-13.3 0-24-10.7-24-24 0-13.2 10.7-24 24-24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faItunes.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faItunes.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faItunes.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faItunes.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faItunes.js new file mode 100644 index 0000000000..1ec1335780 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faItunes.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'itunes', icon: [448, 512, [], "f3b4", "M223.6 80.3C129 80.3 52.5 157 52.5 251.5S129 422.8 223.6 422.8s171.2-76.7 171.2-171.2c0-94.6-76.7-171.3-171.2-171.3zm79.4 240c-3.2 13.6-13.5 21.2-27.3 23.8-12.1 2.2-22.2 2.8-31.9-5-11.8-10-12-26.4-1.4-36.8 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 3.2-3.6 2.2-2 2.2-80.8 0-5.6-2.7-7.1-8.4-6.1-4 .7-91.9 17.1-91.9 17.1-5 1.1-6.7 2.6-6.7 8.3 0 116.1.5 110.8-1.2 118.5-2.1 9-7.6 15.8-14.9 19.6-8.3 4.6-23.4 6.6-31.4 5.2-21.4-4-28.9-28.7-14.4-42.9 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 5-5.7.9-127 2.6-133.7.4-2.6 1.5-4.8 3.5-6.4 2.1-1.7 5.8-2.7 6.7-2.7 101-19 113.3-21.4 115.1-21.4 5.7-.4 9 3 9 8.7-.1 170.6.4 161.4-1 167.6zM345.2 32H102.8C45.9 32 0 77.9 0 134.8v242.4C0 434.1 45.9 480 102.8 480h242.4c57 0 102.8-45.9 102.8-102.8V134.8C448 77.9 402.1 32 345.2 32zM223.6 444c-106.3 0-192.5-86.2-192.5-192.5S117.3 59 223.6 59s192.5 86.2 192.5 192.5S329.9 444 223.6 444z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faItunesNote.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faItunesNote.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faItunesNote.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faItunesNote.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faItunesNote.js new file mode 100644 index 0000000000..c81e77eb94 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faItunesNote.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'itunes-note', icon: [384, 512, [], "f3b5", "M381.9 388.2c-6.4 27.4-27.2 42.8-55.1 48-24.5 4.5-44.9 5.6-64.5-10.2-23.9-20.1-24.2-53.4-2.7-74.4 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 6.4-7.2 4.4-4.1 4.4-163.2 0-11.2-5.5-14.3-17-12.3-8.2 1.4-185.7 34.6-185.7 34.6-10.2 2.2-13.4 5.2-13.4 16.7 0 234.7 1.1 223.9-2.5 239.5-4.2 18.2-15.4 31.9-30.2 39.5-16.8 9.3-47.2 13.4-63.4 10.4-43.2-8.1-58.4-58-29.1-86.6 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 10.1-11.5 1.8-256.6 5.2-270.2.8-5.2 3-9.6 7.1-12.9 4.2-3.5 11.8-5.5 13.4-5.5 204-38.2 228.9-43.1 232.4-43.1 11.5-.8 18.1 6 18.1 17.6.2 344.5 1.1 326-1.8 338.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJava.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJava.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJava.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJava.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJava.js new file mode 100644 index 0000000000..bc592ecd27 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJava.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'java', icon: [377, 512, [], "f4e4", "M121.6 396s-19.6 11.4 13.9 15.2c40.6 4.6 61.3 4 106-4.5 0 0 11.8 7.4 28.2 13.8C169.5 463.4 42.9 418 121.6 396m-12.2-56.1s-21.9 16.2 11.6 19.7c43.3 4.5 77.6 4.8 136.8-6.6 0 0 8.2 8.3 21.1 12.8-121.3 35.5-256.3 2.9-169.5-25.9m103.2-95.1c24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3.1 0-175.2 43.8-91.5 140.2m132.6 192.6s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6.7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2 204.2 33.2 372.4-14.9 319.4-38.8M131 281.8s-93.1 22.1-33 30.1c25.4 3.4 76 2.6 123.1-1.3 38.5-3.2 77.2-10.2 77.2-10.2s-13.6 5.8-23.4 12.5c-94.5 24.9-277 13.3-224.5-12.1 44.5-21.4 80.6-19 80.6-19m167 93.3c96.1-49.9 51.6-97.9 20.6-91.4-7.6 1.6-11 3-11 3s2.8-4.4 8.2-6.3c61.3-21.6 108.5 63.6-19.8 97.3 0-.1 1.5-1.4 2-2.6M240 0s53.2 53.2-50.5 135c-83.1 65.6-19 103.1 0 145.8-48.5-43.8-84.1-82.3-60.2-118.2C164.4 110.1 261.5 84.5 240 0m-99.5 510.4c92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJediOrder.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJediOrder.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJediOrder.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJediOrder.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJediOrder.js new file mode 100644 index 0000000000..a3ad45a41c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJediOrder.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'jedi-order', icon: [448, 512, [], "f50e", "M231.89 335.72l31.44-45.89-20.18 55.5 62.56 9.09-62.56 9.08 24.22 47.43s-30.22-31.77-34.49-36.25c1.76 68.78 2.19 85.7 2.19 85.7s154.4-71.65 68.62-230.09c0 0 106.97-118.07 10.09-190.73 0 0 165.5 99.91 60.55 271.46 0 0 86.78-84.77 41.37-170.54 0 0 78.71 111.01-17.16 233.11 0 0 26.24-16.15 49.45-77.71 0 0-16.93 183.26-221.96 185.66v.02h-4.08v-.02C16.93 479.14 0 295.88 0 295.88c23.21 61.56 49.44 77.71 49.44 77.71-95.87-122.11-17.15-233.11-17.15-233.11-45.41 85.78 41.38 170.54 41.38 170.54-104.95-171.56 60.54-271.46 60.54-271.46-96.88 72.66 10.09 190.73 10.09 190.73-85.78 158.44 68.62 230.09 68.62 230.09s.43-16.93 2.19-85.7l-34.48 36.25 24.22-47.43-62.56-9.08 62.56-9.09-20.18-55.5 31.44 45.89c2.25-87.85 7.82-305.82 7.85-306.85l.01-2.43.02 1 .03-1 .01 2.43c.05 1.72 5.61 219.2 7.86 306.85z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJenkins.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJenkins.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJenkins.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJenkins.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJenkins.js new file mode 100644 index 0000000000..4fe5b2e2ee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJenkins.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'jenkins', icon: [512, 512, [], "f3b6", "M487.1 425c-1.4-11.2-19-23.1-28.2-31.9-5.1-5-29-23.1-30.4-29.9-1.4-6.6 9.7-21.5 13.3-28.9 5.1-10.7 8.8-23.7 11.3-32.6 18.8-66.1 20.7-156.9-6.2-211.2-10.2-20.6-38.6-49-56.4-62.5-42-31.7-119.6-35.3-170.1-16.6-14.1 5.2-27.8 9.8-40.1 17.1-33.1 19.4-68.3 32.5-78.1 71.6-24.2 10.8-31.5 41.8-30.3 77.8.2 7 4.1 15.8 2.7 22.4-.7 3.3-5.2 7.6-6.1 9.8-11.6 27.7-2.3 64 11.1 83.7 8.1 11.9 21.5 22.4 39.2 25.2.7 10.6 3.3 19.7 8.2 30.4 3.1 6.8 14.7 19 10.4 27.7-2.2 4.4-21 13.8-27.3 17.6C89 407.2 73.7 415 54.2 429c-12.6 9-32.3 10.2-29.2 31.1 2.1 14.1 10.1 31.6 14.7 45.8.7 2 1.4 4.1 2.1 6h422c4.9-15.3 9.7-30.9 14.6-47.2 3.4-11.4 10.2-27.8 8.7-39.7zM205.9 33.7c1.8-.5 3.4.7 4.9 2.4-.2 5.2-5.4 5.1-8.9 6.8-5.4 6.7-13.4 9.8-20 17.2-6.8 7.5-14.4 27.7-23.4 30-4.5 1.1-9.7-.8-13.6-.5-10.4.7-17.7 6-28.3 7.5 13.6-29.9 56.1-54 89.3-63.4zm-104.8 93.6c13.5-14.9 32.1-24.1 54.8-25.9 11.7 29.7-8.4 65-.9 97.6 2.3 9.9 10.2 25.4-2.4 25.7.3-28.3-34.8-46.3-61.3-29.6-1.8-21.5-4.9-51.7 9.8-67.8zm36.7 200.2c-1-4.1-2.7-12.9-2.3-15.1 1.6-8.7 17.1-12.5 11-24.7-11.3-.1-13.8 10.2-24.1 11.3-26.7 2.6-45.6-35.4-44.4-58.4 1-19.5 17.6-38.2 40.1-35.8 16 1.8 21.4 19.2 24.5 34.7 9.2.5 22.5-.4 26.9-7.6-.6-17.5-8.8-31.6-8.2-47.7 1-30.3 17.5-57.6 4.8-87.4 13.6-30.9 53.5-55.3 83.1-70 36.6-18.3 94.9-3.7 129.3 15.8 19.7 11.1 34.4 32.7 48.3 50.7-19.5-5.8-36.1 4.2-33.1 20.3 16.3-14.9 44.2-.2 52.5 16.4 7.9 15.8 7.8 39.3 9 62.8 2.9 57-10.4 115.9-39.1 157.1-7.7 11-14.1 23-24.9 30.6-26 18.2-65.4 34.7-99.2 23.4-44.7-15-65-44.8-89.5-78.8.7 18.7 13.8 34.1 26.8 48.4 11.3 12.5 25 26.6 39.7 32.4-12.3-2.9-31.1-3.8-36.2 7.2-28.6-1.9-55.1-4.8-68.7-24.2-10.6-15.4-21.4-41.4-26.3-61.4zm222 124.1c4.1-3 11.1-2.9 17.4-3.6-5.4-2.7-13-3.7-19.3-2.2-.1-4.2-2-6.8-3.2-10.2 10.6-3.8 35.5-28.5 49.6-20.3 6.7 3.9 9.5 26.2 10.1 37 .4 9-.8 18-4.5 22.8-18.8-.6-35.8-2.8-50.7-7 .9-6.1-1-12.1.6-16.5zm-17.2-20c-16.8.8-26-1.2-38.3-10.8.2-.8 1.4-.5 1.5-1.4 18 8 40.8-3.3 59-4.9-7.9 5.1-14.6 11.6-22.2 17.1zm-12.1 33.2c-1.6-9.4-3.5-12-2.8-20.2 25-16.6 29.7 28.6 2.8 20.2zM226 438.6c-11.6-.7-48.1-14-38.5-23.7 9.4 6.5 27.5 4.9 41.3 7.3.8 4.4-2.8 10.2-2.8 16.4zM57.7 497.1c-4.3-12.7-9.2-25.1-14.8-36.9 30.8-23.8 65.3-48.9 102.2-63.5 2.8-1.1 23.2 25.4 26.2 27.6 16.5 11.7 37 21 56.2 30.2 1.2 8.8 3.9 20.2 8.7 35.5.7 2.3 1.4 4.7 2.2 7.2H57.7zm240.6 5.7h-.8c.3-.2.5-.4.8-.5v.5zm7.5-5.7c2.1-1.4 4.3-2.8 6.4-4.3 1.1 1.4 2.2 2.8 3.2 4.3h-9.6zm15.1-24.7c-10.8 7.3-20.6 18.3-33.3 25.2-6 3.3-27 11.7-33.4 10.2-3.6-.8-3.9-5.3-5.4-9.5-3.1-9-10.1-23.4-10.8-37-.8-17.2-2.5-46 16-42.4 14.9 2.9 32.3 9.7 43.9 16.1 7.1 3.9 11.1 8.6 21.9 9.5-.1 1.4-.1 2.8-.2 4.3-5.9 3.9-15.3 3.8-21.8 7.1 9.5.4 17 2.7 23.5 5.9-.1 3.4-.3 7-.4 10.6zm53.4 24.7h-14c-.1-3.2-2.8-5.8-6.1-5.8s-5.9 2.6-6.1 5.8h-17.4c-2.8-4.4-5.7-8.6-8.9-12.5 2.1-2.2 4-4.7 6-6.9 9 3.7 14.8-4.9 21.7-4.2 7.9.8 14.2 11.7 25.4 11l-.6 12.6zm8.7 0c.2-4 .4-7.8.6-11.5 15.6-7.3 29 1.3 35.7 11.5H383zm83.4-37c-2.3 11.2-5.8 24-9.9 37.1-.2-.1-.4-.1-.6-.1H428c.6-1.1 1.2-2.2 1.9-3.3-2.6-6.1-9-8.7-10.9-15.5 12.1-22.7 6.5-93.4-24.2-78.5 4.3-6.3 15.6-11.5 20.8-19.3 13 10.4 20.8 20.3 33.2 31.4 6.8 6 20 13.3 21.4 23.1.8 5.5-2.6 18.9-3.8 25.1zM222.2 130.5c5.4-14.9 27.2-34.7 45-32 7.7 1.2 18 8.2 12.2 17.7-30.2-7-45.2 12.6-54.4 33.1-8.1-2-4.9-13.1-2.8-18.8zm184.1 63.1c8.2-3.6 22.4-.7 29.6-5.3-4.2-11.5-10.3-21.4-9.3-37.7.5 0 1 0 1.4.1 6.8 14.2 12.7 29.2 21.4 41.7-5.7 13.5-43.6 25.4-43.1 1.2zm20.4-43zm-117.2 45.7c-6.8-10.9-19-32.5-14.5-45.3 6.5 11.9 8.6 24.4 17.8 33.3 4.1 4 12.2 9 8.2 20.2-.9 2.7-7.8 8.6-11.7 9.7-14.4 4.3-47.9.9-36.6-17.1 11.9.7 27.9 7.8 36.8-.8zm27.3 70c3.8 6.6 1.4 18.7 12.1 20.6 20.2 3.4 43.6-12.3 58.1-17.8 9-15.2-.8-20.7-8.9-30.5-16.6-20-38.8-44.8-38-74.7 6.7-4.9 7.3 7.4 8.2 9.7 8.7 20.3 30.4 46.2 46.3 63.5 3.9 4.3 10.3 8.4 11 11.2 2.1 8.2-5.4 18-4.5 23.5-21.7 13.9-45.8 29.1-81.4 25.6-7.4-6.7-10.3-21.4-2.9-31.1zm-201.3-9.2c-6.8-3.9-8.4-21-16.4-21.4-11.4-.7-9.3 22.2-9.3 35.5-7.8-7.1-9.2-29.1-3.5-40.3-6.6-3.2-9.5 3.6-13.1 5.9 4.7-34.1 49.8-15.8 42.3 20.3zm299.6 28.8c-10.1 19.2-24.4 40.4-54 41-.6-6.2-1.1-15.6 0-19.4 22.7-2.2 36.6-13.7 54-21.6zm-141.9 12.4c18.9 9.9 53.6 11 79.3 10.2 1.4 5.6 1.3 12.6 1.4 19.4-33 1.8-72-6.4-80.7-29.6zm92.2 46.7c-1.7 4.3-5.3 9.3-9.8 11.1-12.1 4.9-45.6 8.7-62.4-.3-10.7-5.7-17.5-18.5-23.4-26-2.8-3.6-16.9-12.9-.2-12.9 13.1 32.7 58 29 95.8 28.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJoget.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJoget.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJoget.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJoget.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJoget.js new file mode 100644 index 0000000000..ff8aee0484 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJoget.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'joget', icon: [496, 512, [], "f3b7", "M227.5 468.7c-9-13.6-19.9-33.3-23.7-42.4-5.7-13.7-27.2-45.6 31.2-67.1 51.7-19.1 176.7-16.5 208.8-17.6-4 9-8.6 17.9-13.9 26.6-40.4 65.5-110.4 101.5-182 101.5-6.8 0-13.6-.4-20.4-1M66.1 143.9C128 43.4 259.6 12.2 360.1 74.1c74.8 46.1 111.2 130.9 99.3 212.7-24.9-.5-179.3-3.6-230.3-4.9-55.5-1.4-81.7-20.8-58.5-48.2 23.2-27.4 51.1-40.7 68.9-51.2 17.9-10.5 27.3-33.7-23.6-29.7C87.3 161.5 48.6 252.1 37.6 293c-8.8-49.7-.1-102.7 28.5-149.1m-29.2-18c-71.9 116.6-35.6 269.3 81 341.2 116.6 71.9 269.3 35.6 341.2-80.9 71.9-116.6 35.6-269.4-81-341.2-40.5-25.1-85.5-37-129.9-37C165 8 83.8 49.9 36.9 125.9m244.4 110.4c-31.5 20.5-65.3 31.3-65.3 31.3l169.5-1.6 46.5-23.4s3.6-9.5-19.1-15.5c-22.7-6-57 11.3-86.7 27.2-29.7 15.8-31.1 8.2-31.1 8.2s40.2-28.1 50.7-34.5c10.5-6.4 31.9-14 13.4-24.6-3.2-1.8-6.7-2.7-10.4-2.7-17.8 0-41.5 18.7-67.5 35.6"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJoomla.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJoomla.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJoomla.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJoomla.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJoomla.js new file mode 100644 index 0000000000..4e52edf4ac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJoomla.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'joomla', icon: [448, 512, [], "f1aa", "M.6 92.1C.6 58.8 27.4 32 60.4 32c30 0 54.5 21.9 59.2 50.2 32.6-7.6 67.1.6 96.5 30l-44.3 44.3c-20.5-20.5-42.6-16.3-55.4-3.5-14.3 14.3-14.3 37.9 0 52.2l99.5 99.5-44 44.3c-87.7-87.2-49.7-49.7-99.8-99.7-26.8-26.5-35-64.8-24.8-98.9C20.4 144.6.6 120.7.6 92.1zm129.5 116.4l44.3 44.3c10-10 89.7-89.7 99.7-99.8 14.3-14.3 37.6-14.3 51.9 0 12.8 12.8 17 35-3.5 55.4l44 44.3c31.2-31.2 38.5-67.6 28.9-101.2 29.2-4.1 51.9-29.2 51.9-59.5 0-33.2-26.8-60.1-59.8-60.1-30.3 0-55.4 22.5-59.5 51.6-33.8-9.9-71.7-1.5-98.3 25.1-18.3 19.1-71.1 71.5-99.6 99.9zm266.3 152.2c8.2-32.7-.9-68.5-26.3-93.9-11.8-12.2 5 4.7-99.5-99.7l-44.3 44.3 99.7 99.7c14.3 14.3 14.3 37.6 0 51.9-12.8 12.8-35 17-55.4-3.5l-44 44.3c27.6 30.2 68 38.8 102.7 28 5.5 27.4 29.7 48.1 58.9 48.1 33 0 59.8-26.8 59.8-60.1 0-30.2-22.5-55-51.6-59.1zm-84.3-53.1l-44-44.3c-87 86.4-50.4 50.4-99.7 99.8-14.3 14.3-37.6 14.3-51.9 0-13.1-13.4-16.9-35.3 3.2-55.4l-44-44.3c-30.2 30.2-38 65.2-29.5 98.3-26.7 6-46.2 29.9-46.2 58.2C0 453.2 26.8 480 59.8 480c28.6 0 52.5-19.8 58.6-46.7 32.7 8.2 68.5-.6 94.2-26 32.1-32 12.2-12.4 99.5-99.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJs.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJs.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJs.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJs.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJs.js new file mode 100644 index 0000000000..e4b6419589 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJs.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'js', icon: [448, 512, [], "f3b8", "M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJsSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJsSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJsSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJsSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJsSquare.js new file mode 100644 index 0000000000..d6639a8cb5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJsSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'js-square', icon: [448, 512, [], "f3b9", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM243.8 381.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJsfiddle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJsfiddle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJsfiddle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJsfiddle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJsfiddle.js new file mode 100644 index 0000000000..3bf90bf15c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faJsfiddle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'jsfiddle', icon: [576, 512, [], "f1cc", "M510.634 237.462c-4.727-2.621-5.664-5.748-6.381-10.776-2.352-16.488-3.539-33.619-9.097-49.095-35.895-99.957-153.99-143.386-246.849-91.646-27.37 15.25-48.971 36.369-65.493 63.903-3.184-1.508-5.458-2.71-7.824-3.686-30.102-12.421-59.049-10.121-85.331 9.167-25.531 18.737-36.422 44.548-32.676 76.408.355 3.025-1.967 7.621-4.514 9.545-39.712 29.992-56.031 78.065-41.902 124.615 13.831 45.569 57.514 79.796 105.608 81.433 30.291 1.031 60.637.546 90.959.539 84.041-.021 168.09.531 252.12-.48 52.664-.634 96.108-36.873 108.212-87.293 11.54-48.074-11.144-97.3-56.832-122.634zm21.107 156.88c-18.23 22.432-42.343 35.253-71.28 35.65-56.874.781-113.767.23-170.652.23 0 .7-163.028.159-163.728.154-43.861-.332-76.739-19.766-95.175-59.995-18.902-41.245-4.004-90.848 34.186-116.106 9.182-6.073 12.505-11.566 10.096-23.136-5.49-26.361 4.453-47.956 26.42-62.981 22.987-15.723 47.422-16.146 72.034-3.083 10.269 5.45 14.607 11.564 22.198-2.527 14.222-26.399 34.557-46.727 60.671-61.294 97.46-54.366 228.37 7.568 230.24 132.697.122 8.15 2.412 12.428 9.848 15.894 57.56 26.829 74.456 96.122 35.142 144.497zm-87.789-80.499c-5.848 31.157-34.622 55.096-66.666 55.095-16.953-.001-32.058-6.545-44.079-17.705-27.697-25.713-71.141-74.98-95.937-93.387-20.056-14.888-41.99-12.333-60.272 3.782-49.996 44.071 15.859 121.775 67.063 77.188 4.548-3.96 7.84-9.543 12.744-12.844 8.184-5.509 20.766-.884 13.168 10.622-17.358 26.284-49.33 38.197-78.863 29.301-28.897-8.704-48.84-35.968-48.626-70.179 1.225-22.485 12.364-43.06 35.414-55.965 22.575-12.638 46.369-13.146 66.991 2.474C295.68 280.7 320.467 323.97 352.185 343.47c24.558 15.099 54.254 7.363 68.823-17.506 28.83-49.209-34.592-105.016-78.868-63.46-3.989 3.744-6.917 8.932-11.41 11.72-10.975 6.811-17.333-4.113-12.809-10.353 20.703-28.554 50.464-40.44 83.271-28.214 31.429 11.714 49.108 44.366 42.76 78.186z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKeybase.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKeybase.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKeybase.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKeybase.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKeybase.js new file mode 100644 index 0000000000..19bad215dc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKeybase.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'keybase', icon: [412, 512, [], "f4f5", "M177.2 430.9c0 9.8-8 17.8-17.8 17.8s-17.8-8-17.8-17.8 8-17.8 17.8-17.8c9.8-.1 17.8 7.9 17.8 17.8zM270 413c-9.8 0-17.8 8-17.8 17.8s8 17.8 17.8 17.8 17.8-8 17.8-17.8-8-17.8-17.8-17.8zm142.3-36c0 38.9-7.6 73.9-22.2 103h-27.3c23.5-38.7 30.5-94.8 22.4-134.3-16.1 29.5-52.1 38.6-85.9 28.8-127.8-37.5-192.5 19.7-234.6 50.3l18.9-59.3-39.9 42.3c4.8 26.7 15.7 51.3 31.2 72.3H46.1c-9.7-15.8-17.2-33-22.2-51.3L.1 454c0-74.9-5.5-147.6 61.5-215.2 20.2-20.4 43.7-36.2 69.1-46.7-6.8-13.5-9.5-29.2-7.8-46l-19.9-1.2c-17.9-1.1-31.6-16.5-30.6-34.4v-.1L74 84.2c1.1-17.1 15.4-30.6 32.5-30.6 1.3 0-.3-.1 28.2 1.7 13.9.8 21.5 9.8 22.8 11.4 7.1-10.4 14.5-20.5 24.6-34.5l20.6 12.1c-13.6 29-9.1 36.2-9 36.3 3.9 0 13.9-.5 32.4 5.7C246 92.9 262 107 271 126c.4.9 15.5 29 1.2 62.6 19 6.1 51.3 19.9 82.4 51.8 36.6 37.6 57.7 87.4 57.7 136.6zM128 122.3c3.2-10 7.7-19.7 13.1-29.4.1-2 2.2-13.1-7.8-13.8-28.5-1.8-26.3-1.6-26.7-1.6-4.6 0-8.3 3.5-8.6 8.1l-1.6 26.2c-.3 4.7 3.4 8.8 8.1 9.1l23.5 1.4zm25.8 61.8c5.6 9.4 14.1 16.1 22.3 20 0-21.2 28.5-41.9 52.8-17.5l8.4 10.3c20.8-18.8 19.4-45.3 12.1-60.9-13.8-29.1-46.9-32-54.3-31.7-10.3.4-19.7-5.4-23.7-15.3-13.7 21.2-37.2 62.5-17.6 95.1zm82.9 68.4L217 268.6c-1.9 1.6-2.2 4.4-.6 6.3l8.9 10.9c1 1.2 3.8 2.7 6.3.6l19.6-16 5.5 6.8c4.9 6 13.8-1.4 9-7.3-63.6-78.3-41.5-51.1-55.3-68.1-4.7-6-13.9 1.4-9 7.3 1.9 2.3 18.4 22.6 19.8 24.3l-9.6 7.9c-4.6 3.8 2.6 13.3 7.4 9.4l9.7-8 8 9.8zm118.4 25.7c-16.9-23.7-42.6-46.7-73.4-60.4-7.9-3.5-15-6.1-22.9-8.6-2 2.2-4.1 4.3-6.4 6.2l31.9 39.2c10.4 12.7 8.5 31.5-4.2 41.9-1.3 1.1-13.1 10.7-29 4.9-2.9 2.3-10.1 9.9-22.2 9.9-8.6 0-16.6-3.8-22.1-10.5l-8.9-10.9c-6.3-7.8-7.9-17.9-5-26.8-8.2-9.9-8.3-21.3-4.6-30-7.2-1.3-26.7-6.2-42.7-21.4-55.8 20.7-88 64.4-101.3 91.2-14.9 30.2-18.8 60.9-19.9 90.2 8.2-8.7-3.9 4.1 114-120.9l-29.9 93.6c57.8-31.1 124-36 197.4-14.4 23.6 6.9 45.1 1.6 56-13.9 11.1-15.6 8.5-37.7-6.8-59.3zM110.6 107.3l15.6 1 1-15.6-15.6-1-1 15.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKeycdn.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKeycdn.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKeycdn.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKeycdn.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKeycdn.js new file mode 100644 index 0000000000..cc6fa9340b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKeycdn.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'keycdn', icon: [512, 512, [], "f3ba", "M63.8 409.3l60.5-59c32.1 42.8 71.1 66 126.6 67.4 30.5.7 60.3-7 86.4-22.4 5.1 5.3 18.5 19.5 20.9 22-32.2 20.7-69.6 31.1-108.1 30.2-43.3-1.1-84.6-16.7-117.7-44.4.3-.6-38.2 37.5-38.6 37.9 9.5 29.8-13.1 62.4-46.3 62.4C20.7 503.3 0 481.7 0 454.9c0-34.3 33.1-56.6 63.8-45.6zm354.9-252.4c19.1 31.3 29.6 67.4 28.7 104-1.1 44.8-19 87.5-48.6 121 .3.3 23.8 25.2 24.1 25.5 9.6-1.3 19.2 2 25.9 9.1 11.3 12 10.9 30.9-1.1 42.4-12 11.3-30.9 10.9-42.4-1.1-6.7-7-9.4-16.8-7.6-26.3-24.9-26.6-44.4-47.2-44.4-47.2 42.7-34.1 63.3-79.6 64.4-124.2.7-28.9-7.2-57.2-21.1-82.2l22.1-21zM104 53.1c6.7 7 9.4 16.8 7.6 26.3l45.9 48.1c-4.7 3.8-13.3 10.4-22.8 21.3-25.4 28.5-39.6 64.8-40.7 102.9-.7 28.9 6.1 57.2 20 82.4l-22 21.5C72.7 324 63.1 287.9 64.2 250.9c1-44.6 18.3-87.6 47.5-121.1l-25.3-26.4c-9.6 1.3-19.2-2-25.9-9.1-11.3-12-10.9-30.9 1.1-42.4C73.5 40.7 92.2 41 104 53.1zM464.9 8c26 0 47.1 22.4 47.1 48.3S490.9 104 464.9 104c-6.3.1-14-1.1-15.9-1.8l-62.9 59.7c-32.7-43.6-76.7-65.9-126.9-67.2-30.5-.7-60.3 6.8-86.2 22.4l-21.1-22C184.1 74.3 221.5 64 260 64.9c43.3 1.1 84.6 16.7 117.7 44.6l41.1-38.6c-1.5-4.7-2.2-9.6-2.2-14.5C416.5 29.7 438.9 8 464.9 8zM256.7 113.4c5.5 0 10.9.4 16.4 1.1 78.1 9.8 133.4 81.1 123.8 159.1-9.8 78.1-81.1 133.4-159.1 123.8-78.1-9.8-133.4-81.1-123.8-159.2 9.3-72.4 70.1-124.6 142.7-124.8zm-59 119.4c.6 22.7 12.2 41.8 32.4 52.2l-11 51.7h73.7l-11-51.7c20.1-10.9 32.1-29 32.4-52.2-.4-32.8-25.8-57.5-58.3-58.3-32.1.8-57.3 24.8-58.2 58.3zM256 160"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKickstarter.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKickstarter.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKickstarter.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKickstarter.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKickstarter.js new file mode 100644 index 0000000000..6782ddb2f2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKickstarter.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'kickstarter', icon: [448, 512, [], "f3bb", "M400 480H48c-26.4 0-48-21.6-48-48V80c0-26.4 21.6-48 48-48h352c26.4 0 48 21.6 48 48v352c0 26.4-21.6 48-48 48zM199.6 178.5c0-30.7-17.6-45.1-39.7-45.1-25.8 0-40 19.8-40 44.5v154.8c0 25.8 13.7 45.6 40.5 45.6 21.5 0 39.2-14 39.2-45.6v-41.8l60.6 75.7c12.3 14.9 39 16.8 55.8 0 14.6-15.1 14.8-36.8 4-50.4l-49.1-62.8 40.5-58.7c9.4-13.5 9.5-34.5-5.6-49.1-16.4-15.9-44.6-17.3-61.4 7l-44.8 64.7v-38.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKickstarterK.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKickstarterK.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKickstarterK.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKickstarterK.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKickstarterK.js new file mode 100644 index 0000000000..8edeb77304 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKickstarterK.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'kickstarter-k', icon: [384, 512, [], "f3bc", "M147.3 114.4c0-56.2-32.5-82.4-73.4-82.4C26.2 32 0 68.2 0 113.4v283c0 47.3 25.3 83.4 74.9 83.4 39.8 0 72.4-25.6 72.4-83.4v-76.5l112.1 138.3c22.7 27.2 72.1 30.7 103.2 0 27-27.6 27.3-67.4 7.4-92.2l-90.8-114.8 74.9-107.4c17.4-24.7 17.5-63.1-10.4-89.8-30.3-29-82.4-31.6-113.6 12.8L147.3 185v-70.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKorvue.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKorvue.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKorvue.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKorvue.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKorvue.js new file mode 100644 index 0000000000..714c3a4d7b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faKorvue.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'korvue', icon: [446, 512, [], "f42f", "M386.5 34h-327C26.8 34 0 60.8 0 93.5v327.1C0 453.2 26.8 480 59.5 480h327.1c33 0 59.5-26.8 59.5-59.5v-327C446 60.8 419.2 34 386.5 34zM87.1 120.8h96v116l61.8-116h110.9l-81.2 132H87.1v-132zm161.8 272.1l-65.7-113.6v113.6h-96V262.1h191.5l88.6 130.8H248.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLaravel.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLaravel.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLaravel.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLaravel.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLaravel.js new file mode 100644 index 0000000000..be769f92ad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLaravel.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'laravel', icon: [640, 512, [], "f3bd", "M637.5 241.6c-4.2-4.8-62.8-78.1-73.1-90.5-10.3-12.4-15.4-10.2-21.7-9.3-6.4.9-80.5 13.4-89.1 14.8-8.6 1.5-14 4.9-8.7 12.3 4.7 6.6 53.4 75.7 64.2 90.9l-193.7 46.4L161.2 48.7c-6.1-9.1-7.4-12.3-21.4-11.6-14 .6-120.9 9.5-128.5 10.2-7.6.6-16 4-8.4 22s129 279.6 132.4 287.2c3.4 7.6 12.2 20 32.8 15 21.1-5.1 94.3-24.2 134.3-34.7 21.1 38.3 64.2 115.9 72.2 127 10.6 14.9 18 12.4 34.3 7.4 12.8-3.9 199.6-71.1 208-74.5 8.4-3.5 13.6-5.9 7.9-14.4-4.2-6.2-53.5-72.2-79.3-106.8 17.7-4.7 80.6-21.4 87.3-23.3 7.9-2 9-5.8 4.7-10.6zm-352.2 72c-2.3.5-110.8 26.5-116.6 27.8-5.8 1.3-5.8.7-6.5-1.3-.7-2-129-266.7-130.8-270-1.8-3.3-1.7-5.9 0-5.9s102.5-9 106-9.2c3.6-.2 3.2.6 4.5 2.8 0 0 142.2 245.4 144.6 249.7 2.6 4.3 1.1 5.6-1.2 6.1zm306 57.4c1.7 2.7 3.5 4.5-2 6.4-5.4 2-183.7 62.1-187.1 63.6-3.5 1.5-6.2 2-10.6-4.5s-62.4-106.8-62.4-106.8L518 280.6c4.7-1.5 6.2-2.5 9.2 2.2 2.9 4.8 62.4 85.5 64.1 88.2zm12.1-134.1c-4.2.9-73.6 18.1-73.6 18.1l-56.7-77.8c-1.6-2.3-2.9-4.5 1.1-5s68.4-12.2 71.3-12.8c2.9-.7 5.4-1.5 9 3.4 3.6 4.9 52.6 67 54.5 69.4 1.8 2.3-1.4 3.7-5.6 4.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLastfm.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLastfm.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLastfm.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLastfm.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLastfm.js new file mode 100644 index 0000000000..469e58e8c2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLastfm.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'lastfm', icon: [512, 512, [], "f202", "M225.8 367.1l-18.8-51s-30.5 34-76.2 34c-40.5 0-69.2-35.2-69.2-91.5 0-72.1 36.4-97.9 72.1-97.9 66.5 0 74.8 53.3 100.9 134.9 18.8 56.9 54 102.6 155.4 102.6 72.7 0 122-22.3 122-80.9 0-72.9-62.7-80.6-115-92.1-25.8-5.9-33.4-16.4-33.4-34 0-19.9 15.8-31.7 41.6-31.7 28.2 0 43.4 10.6 45.7 35.8l58.6-7c-4.7-52.8-41.1-74.5-100.9-74.5-52.8 0-104.4 19.9-104.4 83.9 0 39.9 19.4 65.1 68 76.8 44.9 10.6 79.8 13.8 79.8 45.7 0 21.7-21.1 30.5-61 30.5-59.2 0-83.9-31.1-97.9-73.9-32-96.8-43.6-163-161.3-163C45.7 113.8 0 168.3 0 261c0 89.1 45.7 137.2 127.9 137.2 66.2 0 97.9-31.1 97.9-31.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLastfmSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLastfmSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLastfmSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLastfmSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLastfmSquare.js new file mode 100644 index 0000000000..794227da93 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLastfmSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'lastfm-square', icon: [448, 512, [], "f203", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-92.2 312.9c-63.4 0-85.4-28.6-97.1-64.1-16.3-51-21.5-84.3-63-84.3-22.4 0-45.1 16.1-45.1 61.2 0 35.2 18 57.2 43.3 57.2 28.6 0 47.6-21.3 47.6-21.3l11.7 31.9s-19.8 19.4-61.2 19.4c-51.3 0-79.9-30.1-79.9-85.8 0-57.9 28.6-92 82.5-92 73.5 0 80.8 41.4 100.8 101.9 8.8 26.8 24.2 46.2 61.2 46.2 24.9 0 38.1-5.5 38.1-19.1 0-19.9-21.8-22-49.9-28.6-30.4-7.3-42.5-23.1-42.5-48 0-40 32.3-52.4 65.2-52.4 37.4 0 60.1 13.6 63 46.6l-36.7 4.4c-1.5-15.8-11-22.4-28.6-22.4-16.1 0-26 7.3-26 19.8 0 11 4.8 17.6 20.9 21.3 32.7 7.1 71.8 12 71.8 57.5.1 36.7-30.7 50.6-76.1 50.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLeanpub.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLeanpub.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLeanpub.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLeanpub.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLeanpub.js new file mode 100644 index 0000000000..b7befa447b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLeanpub.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'leanpub', icon: [576, 512, [], "f212", "M386.539 111.485l15.096 248.955-10.979-.275c-36.232-.824-71.64 8.783-102.657 27.997-31.016-19.214-66.424-27.997-102.657-27.997-45.564 0-82.07 10.705-123.516 27.723L93.117 129.6c28.546-11.803 61.484-18.115 92.226-18.115 41.173 0 73.836 13.175 102.657 42.544 27.723-28.271 59.013-41.721 98.539-42.544zM569.07 448c-25.526 0-47.485-5.215-70.542-15.645-34.31-15.645-69.993-24.978-107.871-24.978-38.977 0-74.934 12.901-102.657 40.623-27.723-27.723-63.68-40.623-102.657-40.623-37.878 0-73.561 9.333-107.871 24.978C55.239 442.236 32.731 448 8.303 448H6.93L49.475 98.859C88.726 76.626 136.486 64 181.775 64 218.83 64 256.984 71.685 288 93.095 319.016 71.685 357.17 64 394.225 64c45.289 0 93.049 12.626 132.3 34.859L569.07 448zm-43.368-44.741l-34.036-280.246c-30.742-13.999-67.248-21.41-101.009-21.41-38.428 0-74.385 12.077-102.657 38.702-28.272-26.625-64.228-38.702-102.657-38.702-33.761 0-70.267 7.411-101.009 21.41L50.298 403.259c47.211-19.487 82.894-33.486 135.045-33.486 37.604 0 70.817 9.606 102.657 29.644 31.84-20.038 65.052-29.644 102.657-29.644 52.151 0 87.834 13.999 135.045 33.486z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLess.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLess.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLess.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLess.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLess.js new file mode 100644 index 0000000000..ec0d9bac40 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLess.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'less', icon: [640, 512, [], "f41d", "M612.7 219c0-20.5 3.2-32.6 3.2-54.6 0-34.2-12.6-45.2-40.5-45.2h-20.5v24.2h6.3c14.2 0 17.3 4.7 17.3 22.1 0 16.3-1.6 32.6-1.6 51.5 0 24.2 7.9 33.6 23.6 37.3v1.6c-15.8 3.7-23.6 13.1-23.6 37.3 0 18.9 1.6 34.2 1.6 51.5 0 17.9-3.7 22.6-17.3 22.6v.5h-6.3V393h20.5c27.8 0 40.5-11 40.5-45.2 0-22.6-3.2-34.2-3.2-54.6 0-11 6.8-22.6 27.3-23.6v-27.3c-20.5-.7-27.3-12.3-27.3-23.3zm-105.6 32c-15.8-6.3-30.5-10-30.5-20.5 0-7.9 6.3-12.6 17.9-12.6s22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-21 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51s-22.5-41-43-47.8zm-358.9 59.4c-3.7 0-8.4-3.2-8.4-13.1V119.1H65.2c-28.4 0-41 11-41 45.2 0 22.6 3.2 35.2 3.2 54.6 0 11-6.8 22.6-27.3 23.6v27.3c20.5.5 27.3 12.1 27.3 23.1 0 19.4-3.2 31-3.2 53.6 0 34.2 12.6 45.2 40.5 45.2h20.5v-24.2h-6.3c-13.1 0-17.3-5.3-17.3-22.6s1.6-32.1 1.6-51.5c0-24.2-7.9-33.6-23.6-37.3v-1.6c15.8-3.7 23.6-13.1 23.6-37.3 0-18.9-1.6-34.2-1.6-51.5s3.7-22.1 17.3-22.1H93v150.8c0 32.1 11 53.1 43.1 53.1 10 0 17.9-1.6 23.6-3.7l-5.3-34.2c-3.1.8-4.6.8-6.2.8zM379.9 251c-16.3-6.3-31-10-31-20.5 0-7.9 6.3-12.6 17.9-12.6 11.6 0 22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-20.5 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51 .1-28.9-22.5-41-43-47.8zm-155-68.8c-38.4 0-75.1 32.1-74.1 82.5 0 52 34.2 82.5 79.3 82.5 18.9 0 39.9-6.8 56.2-17.9l-15.8-27.8c-11.6 6.8-22.6 10-34.2 10-21 0-37.3-10-41.5-34.2H290c.5-3.7 1.6-11 1.6-19.4.6-42.6-22.6-75.7-66.7-75.7zm-30 66.2c3.2-21 15.8-31 30.5-31 18.9 0 26.3 13.1 26.3 31h-56.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLine.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLine.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLine.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLine.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLine.js new file mode 100644 index 0000000000..f8716b6cb2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLine.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'line', icon: [448, 512, [], "f3c0", "M272.1 204.2v71.1c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.1 0-2.1-.6-2.6-1.3l-32.6-44v42.2c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.8 0-3.2-1.4-3.2-3.2v-71.1c0-1.8 1.4-3.2 3.2-3.2H219c1 0 2.1.5 2.6 1.4l32.6 44v-42.2c0-1.8 1.4-3.2 3.2-3.2h11.4c1.8-.1 3.3 1.4 3.3 3.1zm-82-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 1.8 1.4 3.2 3.2 3.2h11.4c1.8 0 3.2-1.4 3.2-3.2v-71.1c0-1.7-1.4-3.2-3.2-3.2zm-27.5 59.6h-31.1v-56.4c0-1.8-1.4-3.2-3.2-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 .9.3 1.6.9 2.2.6.5 1.3.9 2.2.9h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.7-1.4-3.2-3.1-3.2zM332.1 201h-45.7c-1.7 0-3.2 1.4-3.2 3.2v71.1c0 1.7 1.4 3.2 3.2 3.2h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2V234c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2v-11.4c-.1-1.7-1.5-3.2-3.2-3.2zM448 113.7V399c-.1 44.8-36.8 81.1-81.7 81H81c-44.8-.1-81.1-36.9-81-81.7V113c.1-44.8 36.9-81.1 81.7-81H367c44.8.1 81.1 36.8 81 81.7zm-61.6 122.6c0-73-73.2-132.4-163.1-132.4-89.9 0-163.1 59.4-163.1 132.4 0 65.4 58 120.2 136.4 130.6 19.1 4.1 16.9 11.1 12.6 36.8-.7 4.1-3.3 16.1 14.1 8.8 17.4-7.3 93.9-55.3 128.2-94.7 23.6-26 34.9-52.3 34.9-81.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinkedin.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinkedin.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinkedin.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinkedin.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinkedin.js new file mode 100644 index 0000000000..d11407030c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinkedin.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'linkedin', icon: [448, 512, [], "f08c", "M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinkedinIn.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinkedinIn.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinkedinIn.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinkedinIn.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinkedinIn.js new file mode 100644 index 0000000000..af3af1cf5b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinkedinIn.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'linkedin-in', icon: [448, 512, [], "f0e1", "M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinode.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinode.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinode.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinode.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinode.js new file mode 100644 index 0000000000..1e3338b455 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinode.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'linode', icon: [448, 512, [], "f2b8", "M437.4 226.3c-.3-.9-.9-1.4-1.4-2l-70-38.6c-.9-.6-2-.6-3.1 0l-58.9 36c-.9.6-1.4 1.7-1.4 2.6l-.9 31.4-24-16c-.9-.6-2.3-.6-3.1 0L240 260.9l-1.4-35.1c0-.9-.6-2-1.4-2.3l-36-24.3 33.7-17.4c1.1-.6 1.7-1.7 1.7-2.9l-5.7-132.3c0-.9-.9-2-1.7-2.6L138.6.3c-.9-.3-1.7-.3-2.3-.3L12.6 38.6c-1.4.6-2.3 2-2 3.7L38 175.4c.9 3.4 34 27.4 38.6 30.9l-26.9 12.9c-1.4.9-2 2.3-1.7 3.4l20.6 100.3c.6 2.9 23.7 23.1 27.1 26.3l-17.4 10.6c-.9.6-1.7 2-1.4 3.1 1.4 7.1 15.4 77.7 16.9 79.1l65.1 69.1c.6.6 1.4.6 2.3.9.6 0 1.1-.3 1.7-.6l83.7-66.9c.9-.6 1.1-1.4 1.1-2.3l-2-46 28 23.7c1.1.9 2.9.9 4 0l66.9-53.4c.9-.6 1.1-1.4 1.1-2.3l2.3-33.4 20.3 14c1.1.9 2.6.9 3.7 0l54.6-43.7c.6-.3 1.1-1.1 1.1-2 .9-6.5 10.3-70.8 9.7-72.8zm-204.8 4.8l4 92.6-90.6 61.2-14-96.6 100.6-57.2zm-7.7-180l5.4 126-106.6 55.4L104 97.7l120.9-46.6zM44 173.1L18 48l79.7 49.4 19.4 132.9L44 173.1zm30.6 147.8L55.7 230l70 58.3 13.7 93.4-64.8-60.8zm24.3 117.7l-13.7-67.1 61.7 60.9 9.7 67.4-57.7-61.2zm64.5 64.5l-10.6-70.9 85.7-61.4 3.1 70-78.2 62.3zm82-115.1c0-3.4.9-22.9-2-25.1l-24.3-20 22.3-14.9c2.3-1.7 1.1-5.7 1.1-8l29.4 22.6.6 68.3-27.1-22.9zm94.3-25.4l-60.9 48.6-.6-68.6 65.7-46.9-4.2 66.9zm27.7-25.7l-19.1-13.4 2-34c.3-.9-.3-2-1.1-2.6L308 259.7l.6-30 64.6 40.6-5.8 66.6zm54.6-39.8l-48.3 38.3 5.7-65.1 51.1-36.6-8.5 63.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinux.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinux.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinux.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinux.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinux.js new file mode 100644 index 0000000000..779c483c42 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLinux.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'linux', icon: [448, 512, [], "f17c", "M196.1 123.6c-.2-1.4 1.9-2.3 3.2-2.9 1.7-.7 3.9-1 5.5-.1.4.2.8.7.6 1.1-.4 1.2-2.4 1-3.5 1.6-1 .5-1.8 1.7-3 1.7-1 .1-2.7-.4-2.8-1.4zm24.7-.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm214.7 310.2c-.5 8.2-6.5 13.8-13.9 18.3-14.9 9-37.3 15.8-50.9 32.2l-2.6-2.2 2.6 2.2c-14.2 16.9-31.7 26.6-48.3 27.9-16.5 1.3-32-6.3-40.3-23v-.1c-1.1-2.1-1.9-4.4-2.5-6.7-21.5 1.2-40.2-5.3-55.1-4.1-22 1.2-35.8 6.5-48.3 6.6-4.8 10.6-14.3 17.6-25.9 20.2-16 3.7-36.1 0-55.9-10.4l1.6-3-1.6 3c-18.5-9.8-42-8.9-59.3-12.5-8.7-1.8-16.3-5-20.1-12.3-3.7-7.3-3-17.3 2.2-31.7 1.7-5.1.4-12.7-.8-20.8-.6-3.9-1.2-7.9-1.2-11.8 0-4.3.7-8.5 2.8-12.4 4.5-8.5 11.8-12.1 18.5-14.5 6.7-2.4 12.8-4 17-8.3 5.2-5.5 10.1-14.4 16.6-20.2-2.6-17.2.2-35.4 6.2-53.3 12.6-37.9 39.2-74.2 58.1-96.7 16.1-22.9 20.8-41.3 22.5-64.7C158 103.4 132.4-.2 234.8 0c80.9.1 76.3 85.4 75.8 131.3-.3 30.1 16.3 50.5 33.4 72 15.2 18 35.1 44.3 46.5 74.4 9.3 24.6 12.9 51.8 3.7 79.1 1.4.5 2.8 1.2 4.1 2 1.4.8 2.7 1.8 4 2.9 6.6 5.6 8.7 14.3 10.5 22.4 1.9 8.1 3.6 15.7 7.2 19.7 11.1 12.4 15.9 21.5 15.5 29.7zM220.8 109.1c3.6.9 8.9 2.4 13 4.4-2.1-12.2 4.5-23.5 11.8-23 8.9.3 13.9 15.5 9.1 27.3-.8 1.9-2.8 3.4-3.9 4.6 6.7 2.3 11 4.1 12.6 4.9 7.9-9.5 10.8-26.2 4.3-40.4-9.8-21.4-34.2-21.8-44 .4-3.2 7.2-3.9 14.9-2.9 21.8zm-46.2 18.8c7.8-5.7 6.9-4.7 5.9-5.5-8-6.9-6.6-27.4 1.8-28.1 6.3-.5 10.8 10.7 9.6 19.6 3.1-2.1 6.7-3.6 10.2-4.6 1.7-19.3-9-33.5-19.1-33.5-18.9 0-24 37.5-8.4 52.1zm-9.4 20.9c1.5 4.9 6.1 10.5 14.7 15.3 7.8 4.6 12 11.5 20 15 2.6 1.1 5.7 1.9 9.6 2.1 18.4 1.1 27.1-11.3 38.2-14.9 11.7-3.7 20.1-11 22.7-18.1 3.2-8.5-2.1-14.7-10.5-18.2-11.3-4.9-16.3-5.2-22.6-9.3-10.3-6.6-18.8-8.9-25.9-8.9-14.4 0-23.2 9.8-27.9 14.2-.5.5-7.9 5.9-14.1 10.5-4.2 3.3-5.6 7.4-4.2 12.3zm-33.5 252.8L112.1 366c-6.8-9.2-13.8-14.8-21.9-16-7.7-1.2-12.6 1.4-17.7 6.9-4.8 5.1-8.8 12.3-14.3 18-7.8 6.5-9.3 6.2-19.6 9.9-6.3 2.2-11.3 4.6-14.8 11.3-2.7 5-2.1 12.2-.9 20 1.2 7.9 3 16.3.6 23.9v.2c-5 13.7-5 21.7-2.6 26.4 7.9 15.4 46.6 6.1 76.5 21.9 31.4 16.4 72.6 17.1 75.3-18 2.1-20.5-31.5-49-41-68.9zm153.9 35.8c3.2-11 6.3-21.3 6.8-29 .8-15.2 1.6-28.7 4.4-39.9 3.1-12.6 9.3-23.1 21.4-27.3 2.3-21.1 18.7-21.1 38.3-12.5 18.9 8.5 26 16 22.8 26.1 1 0 2-.1 4.2 0 5.2-16.9-14.3-28-30.7-34.8 2.9-12 2.4-24.1-.4-35.7-6-25.3-22.6-47.8-35.2-59-2.3-.1-2.1 1.9 2.6 6.5 11.6 10.7 37.1 49.2 23.3 84.9-3.9-1-7.6-1.5-10.9-1.4-5.3-29.1-17.5-53.2-23.6-64.6-11.5-21.4-29.5-65.3-37.2-95.7-4.5 6.4-12.4 11.9-22.3 15-4.7 1.5-9.7 5.5-15.9 9-13.9 8-30 8.8-42.4-1.2-4.5-3.6-8-7.6-12.6-10.3-1.6-.9-5.1-3.3-6.2-4.1-2 37.8-27.3 85.3-39.3 112.7-8.3 19.7-13.2 40.8-13.8 61.5-21.8-29.1-5.9-66.3 2.6-82.4 9.5-17.6 11-22.5 8.7-20.8-8.6 14-22 36.3-27.2 59.2-2.7 11.9-3.2 24 .3 35.2 3.5 11.2 11.1 21.5 24.6 29.9 0 0 24.8 14.3 38.3 32.5 7.4 10 9.7 18.7 7.4 24.9-2.5 6.7-9.6 8.9-16.7 8.9 4.8 6 10.3 13 14.4 19.6 37.6 25.7 82.2 15.7 114.3-7.2zM415 408.5c-10-11.3-7.2-33.1-17.1-41.6-6.9-6-13.6-5.4-22.6-5.1-7.7 8.8-25.8 19.6-38.4 16.3-11.5-2.9-18-16.3-18.8-29.5-.3.2-.7.3-1 .5-7.1 3.9-11.1 10.8-13.7 21.1-2.5 10.2-3.4 23.5-4.2 38.7-.7 11.8-6.2 26.4-9.9 40.6-3.5 13.2-5.8 25.2-1.1 36.3 7.2 14.5 19.5 20.4 33.7 19.3 14.2-1.1 30.4-9.8 43.6-25.5 22-26.6 62.3-29.7 63.2-46.5.3-5.1-3.1-13-13.7-24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4 3.9-3.4 5.9-6.3 3.1-6.6-2.8-.3-2.6 2.6-6 5.1-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2-10.4 0-18.7-4.8-24.9-9.7-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLyft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLyft.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLyft.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLyft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLyft.js new file mode 100644 index 0000000000..ce11a2f7db --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faLyft.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'lyft', icon: [512, 512, [], "f3c3", "M0 81.1h77.8v208.7c0 33.1 15 52.8 27.2 61-12.7 11.1-51.2 20.9-80.2-2.8C7.8 334 0 310.7 0 289V81.1zm485.9 173.5v-22h23.8v-76.8h-26.1c-10.1-46.3-51.2-80.7-100.3-80.7-56.6 0-102.7 46-102.7 102.7V357c16 2.3 35.4-.3 51.7-14 17.1-14 24.8-37.2 24.8-59v-6.7h38.8v-76.8h-38.8v-23.3c0-34.6 52.2-34.6 52.2 0v77.1c0 56.6 46 102.7 102.7 102.7v-76.5c-14.5 0-26.1-11.7-26.1-25.9zm-294.3-99v113c0 15.4-23.8 15.4-23.8 0v-113H91v132.7c0 23.8 8 54 45 63.9 37 9.8 58.2-10.6 58.2-10.6-2.1 13.4-14.5 23.3-34.9 25.3-15.5 1.6-35.2-3.6-45-7.8v70.3c25.1 7.5 51.5 9.8 77.6 4.7 47.1-9.1 76.8-48.4 76.8-100.8V155.1h-77.1v.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMagento.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMagento.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMagento.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMagento.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMagento.js new file mode 100644 index 0000000000..a8047a2b08 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMagento.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'magento', icon: [448, 512, [], "f3c4", "M445.7 127.9V384l-63.4 36.5V164.7L223.8 73.1 65.2 164.7l.4 255.9L2.3 384V128.1L224.2 0l221.5 127.9zM255.6 420.5L224 438.9l-31.8-18.2v-256l-63.3 36.6.1 255.9 94.9 54.9 95.1-54.9v-256l-63.4-36.6v255.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMandalorian.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMandalorian.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMandalorian.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMandalorian.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMandalorian.js new file mode 100644 index 0000000000..8c6729da4d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMandalorian.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'mandalorian', icon: [390, 512, [], "f50f", "M203.28 511.89c-.98-3.26-1.69-15.83-1.39-24.58.55-15.89.98-24.72 1.4-28.76.64-6.2 2.87-20.72 3.28-21.38.6-.96.4-27.87-.24-33.13-.31-2.58-.63-11.9-.69-20.73-.13-16.47-.53-20.12-2.73-24.76-1.1-2.32-1.23-3.84-.99-11.43.16-4.81 0-10.53-.34-12.71-2.05-12.97-3.46-27.7-3.25-33.9.21-6.12.43-7.15 2.06-9.67 3.05-4.71 6.51-14.04 8.62-23.27 2.26-9.86 3.88-17.18 4.59-20.74.89-4.42 2.43-9.72 4.36-15.05 2.27-6.25 2.49-15.39.37-15.39-.3 0-1.38 1.22-2.41 2.71-1.03 1.49-4.76 4.8-8.29 7.36-8.37 6.08-11.7 9.39-12.66 12.58-.93 3.11-1.02 7.23-.16 7.76.34.21 1.29 2.4 2.11 4.88 1.62 4.88 1.87 10.12.72 15.36-.39 1.77-1.05 5.47-1.46 8.23-.41 2.76-.98 6.46-1.25 8.22-.28 1.76-.97 3.68-1.55 4.26-.96.96-1.14.91-2.05-.53-.55-.87-1.2-3.01-1.44-4.75-.25-1.74-1.63-7.11-3.08-11.93-3.28-10.9-3.52-16.15-.96-20.96.92-1.73 1.67-3.81 1.67-4.61 0-2.39-2.2-5.32-7.41-9.89-7.05-6.18-8.63-7.92-10.23-11.3-1.71-3.6-3.06-4.06-4.54-1.54-1.78 3.01-2.6 9.11-2.97 22.02l-.35 12.13 1.95 2.25c3.21 3.7 12.07 16.45 13.78 19.83 3.41 6.74 4.34 11.69 4.41 23.56.07 11.84.95 22.75 2 24.71.36.66.51 1.35.34 1.52-.17.17.41 2.09 1.29 4.27.88 2.18 1.81 6.22 2.06 8.98.25 2.76 1.02 7.43 1.71 10.37 2.23 9.56 2.77 14.08 2.39 20.14-.2 3.27-.53 11.07-.73 17.32-1.31 41.76-1.85 57.98-2.04 61.21-.12 2.02-.39 11.51-.6 21.07-.36 16.3-1.3 27.37-2.42 28.65-.64.73-8.07-4.91-12.52-9.49-3.75-3.87-4.02-4.79-2.83-9.95.7-3.01 2.26-18.29 3.33-32.62.36-4.78.81-10.5 1.01-12.71.83-9.37 1.66-20.35 2.61-34.78.56-8.46 1.33-16.44 1.72-17.73.38-1.29.89-9.89 1.13-19.11l.43-16.77-2.26-4.3c-1.72-3.28-4.87-6.94-13.22-15.34-6.03-6.07-11.84-12.3-12.91-13.85l-1.95-2.81.75-10.9c1.09-15.71 1.1-48.57.02-59.06l-.89-8.7-3.28-4.52c-5.86-8.08-5.8-7.75-6.22-33.27-.1-6.07-.38-11.5-.63-12.06-.83-1.87-3.05-2.66-8.54-3.05-8.86-.62-10.96-1.9-23.85-14.55-6.15-6.04-12.34-11.97-13.75-13.19-2.81-2.42-2.79-1.99-.56-9.63l1.35-4.65-1.69-3.04c-.93-1.67-2.09-3.51-2.59-4.07-1.33-1.51-5.5-10.89-5.99-13.49-.31-1.66-.09-2.67.87-3.9 2.23-2.86 3.4-5.68 4.45-10.73 2.33-11.19 7.74-26.09 10.6-29.22 3.18-3.47 7.7-1.05 9.41 5.03 1.34 4.79 1.37 9.79.1 18.55-.53 3.68-.98 8.68-.99 11.11-.02 4.01.19 4.69 2.25 7.39 3.33 4.37 7.73 7.41 15.2 10.52 1.7.71 3.82 1.99 4.72 2.85 11.17 10.72 18.62 16.18 22.95 16.85 5.18.8 7.98 4.54 10.04 13.39 1.31 5.65 4 11.14 5.46 11.14.59 0 2.09-.63 3.33-1.39 1.98-1.22 2.25-1.73 2.25-4.18-.01-3.71-1.17-14.08-2-17.84-.37-1.66-.78-4.06-.93-5.35-.14-1.29-.61-3.85-1.03-5.69-2.55-11.16-3.65-15.46-4.1-16.05-1.55-2.02-4.08-10.2-4.93-15.92-1.64-11.11-3.96-14.23-12.91-17.39-4.64-1.64-8.89-4.12-13.32-7.78-1.15-.95-4.01-3.22-6.35-5.06-2.35-1.83-4.41-3.53-4.6-3.76-.18-.23-1.39-1.14-2.69-2.02-6.24-4.22-8.84-6.98-11.26-11.96l-2.44-5.02-.22-12.98-.22-12.98 6.91-6.55c3.95-3.75 8.48-7.35 10.59-8.43 3.31-1.69 4.45-1.89 11.37-2.05 8.53-.19 10.12.02 11.66 1.56 1.53 1.53 1.36 6.4-.29 8.5-.74.94-1.34 1.98-1.34 2.32 0 .58-2.61 4.91-5.42 8.99-.68.99-2.13 5.35-2.37 6.82 20.44 13.39 21.55 3.77 14.07 28.98l11.4 2.54c3.11-8.66 6.47-17.26 8.61-26.22.29-7.63-11.98-4.19-15.4-8.68-2.33-5.93 3.13-14.18 6.06-19.2 1.6-2.34 6.62-4.7 8.82-4.15.88.22 4.16-.35 7.37-1.28 3.18-.92 6.58-1.68 7.55-1.68.97 0 3.66-.58 5.98-1.29 3.65-1.11 4.5-1.17 6.35-.4 1.17.48 3.79 1.09 5.82 1.36 2.02.26 4.72 1.12 6 1.91 1.28.79 3.53 1.77 5.02 2.17 2.51.68 3 .57 7.05-1.67l4.35-2.4 10.7-.41c10.44-.4 10.81-.47 15.26-2.68l4.58-2.3 2.46 1.43c1.76 1.02 3.14 2.73 4.85 5.98 2.36 4.51 2.38 4.58 1.37 7.37-.88 2.44-.89 3.3-.1 6.39.5 1.96 1.45 4.62 2.1 5.91.65 1.29 1.24 3.09 1.31 4.01.31 4.33-.03 5.3-2.41 6.92-2.17 1.47-6.98 7.91-6.98 9.34 0 .32-.48 1.69-1.07 3.03-5.04 11.51-6.76 13.56-14.26 16.98-9.2 4.2-12.3 5.19-16.21 5.19-3.1 0-4 .25-4.54 1.26-.37.69-2.21 2.37-4.09 3.71-2.04 1.47-3.8 3.38-4.38 4.78-.54 1.28-1.66 2.59-2.49 2.91-.83.32-1.94 1.08-2.45 1.71-.52.62-3.66 3.04-7 5.38-3.33 2.34-6.87 5.02-7.87 5.96-1 .94-2.07 1.71-2.39 1.71s-1.28.74-2.13 1.65c-1.31 1.39-1.49 2.11-1.14 4.6.22 1.63.86 4.27 1.42 5.88 1.32 3.8 1.31 7.86-.05 10.57-1.43 2.86-.89 6.65 1.35 9.59 2.01 2.63 2.16 4.56.71 8.84-.61 1.8-1.05 5.45-1.06 8.91-.02 4.88.22 6.28 1.46 8.38 1.2 2.04 1.82 2.48 3.24 2.32 1.98-.23 2.3-1.05 4.71-12.12 2.18-10.03 3.71-11.92 13.76-17.08 2.94-1.51 7.46-3.96 10.03-5.44 2.58-1.48 6.79-3.69 9.37-4.91 6.67-3.16 11.05-6.52 15.22-11.67 7.11-8.79 9.98-16.22 12.85-33.3.55-3.28 1.43-5.65 2.86-7.73 1.29-1.87 2.37-4.62 2.89-7.31 1.02-5.3 2.85-9.08 5.58-11.51 4.7-4.18 6-1.09 4.59 10.87-.46 3.86-1.1 10.33-1.44 14.38l-.61 7.36 4.45 4.09 4.45 4.09.11 8.42c.06 4.63.47 9.53.92 10.89l.82 2.47-6.43 6.28c-8.54 8.33-12.88 13.93-16.76 21.61-1.77 3.49-3.74 7.11-4.38 8.03-2.18 3.11-6.46 13.01-8.76 20.26l-2.29 7.22-6.97 6.49c-3.83 3.57-7.96 7.25-9.17 8.17-3.05 2.32-4.26 5.15-4.26 9.99 0 2.98.43 4.96 1.59 7.26.87 1.74 1.81 3.91 2.09 4.83.28.92.98 2.22 1.57 2.89 1.4 1.59 1.92 16.12.83 23.22-.68 4.48-3.63 12.02-4.7 12.02-1.79 0-4.06 9.27-5.07 20.74-.18 2.02-.62 5.94-.98 8.7-.36 2.76-.96 9.98-1.35 16.05-.77 12.22-.19 18.77 2.05 23.15 3.41 6.69.52 12.69-11.03 22.84l-3.97 3.49.07 5.19c.04 2.86.55 6.85 1.14 8.87 4.61 15.98 4.73 16.92 4.38 37.13-.46 26.4-.26 40.27.63 44.15.42 1.84.91 5 1.08 7.02.17 2.02.66 5.33 1.08 7.36.47 2.26.78 11.02.79 22.74l.02 19.06-1.81 2.63c-2.71 3.91-15.11 13.54-15.49 12.29zm29.53-45.11c-.18-.3-.33-6.87-.33-14.59 0-14.06-.89-27.54-2.26-34.45-.4-2.02-.81-9.7-.9-17.06-.15-11.93-1.4-24.37-2.64-26.38-.66-1.07-3.02-17.66-3.03-21.3-.01-4.23 1.02-6 5.28-9.13 4.14-3.04 4.86-3.14 5.48-.72.28 1.1 1.45 5.62 2.6 10.03 3.93 15.12 4.14 16.27 4.05 21.74-.1 5.78-.13 6.13-1.74 17.73-.98 7.07-1.17 12.39-1.04 28.43.17 19.4-.64 35.73-2.04 41.27-.71 2.78-2.8 5.48-3.43 4.43zm-70.99-37.58c-.24-.38-1.01-5.24-1.73-10.79-.72-5.56-1.49-10.41-1.73-10.79-.23-.38-.68-3.3-.99-6.49-.31-3.19-.91-7.46-1.33-9.48-.99-4.79-3.35-19.35-3.42-21.07-.03-.74-.34-4.05-.7-7.36-.67-6.21-.84-27.67-.22-28.29.96-.96 6.63 2.76 11.33 7.43l5.28 5.25-.45 6.47c-.25 3.56-.6 10.23-.78 14.83-.18 4.6-.49 9.87-.67 11.71-.18 1.84-.61 9.36-.94 16.72-.79 17.41-1.94 31.29-2.65 32-.32.3-.76.24-1-.14zM74.63 162.61c21.07 12.79 17.84 14.15 28.49 17.66 13.01 4.29 18.87 7.13 23.15 16.87-43.66 36.14-69.01 57.9-76.71 70.82-31.02 52.01-5.99 101.59 62.75 87.21-14.18 29.23-77.97 28.63-98.68-4.9-24.68-39.95-22.09-118.3 61-187.66zm210.79 179.02c56.66 6.88 82.32-37.74 46.54-89.23 0 0-26.87-29.34-64.28-67.96 2.98-15.45 9.49-32.12 30.57-53.82 89.2 63.51 92 141.61 92.46 149.36 4.27 70.58-78.66 91.12-105.29 61.65z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMastodon.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMastodon.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMastodon.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMastodon.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMastodon.js new file mode 100644 index 0000000000..e4c9940000 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMastodon.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'mastodon', icon: [417, 512, [], "f4f6", "M417.8 179.1c0-97.2-63.7-125.7-63.7-125.7-62.5-28.7-228.5-28.4-290.4 0 0 0-63.7 28.5-63.7 125.7 0 115.7-6.6 259.4 105.6 289.1 40.5 10.7 75.3 13 103.3 11.4 50.8-2.8 79.3-18.1 79.3-18.1l-1.7-36.9s-36.3 11.4-77.1 10.1c-40.4-1.4-83-4.4-89.6-54-.6-4.4-.9-9-.9-13.9 85.6 20.9 158.6 9.1 178.7 6.7 56.1-6.7 105-41.3 111.2-72.9 9.8-49.8 9-121.5 9-121.5zm-75.1 125.2h-46.6V190.1c0-49.7-64-51.6-64 6.9v62.5h-46.3V197c0-58.5-64-56.6-64-6.9v114.2H75.1c0-122.1-5.2-147.9 18.4-175 25.9-28.9 79.8-30.8 103.8 6.1l11.6 19.5 11.6-19.5c24.1-37.1 78.1-34.8 103.8-6.1 23.7 27.3 18.4 53 18.4 175z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMaxcdn.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMaxcdn.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMaxcdn.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMaxcdn.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMaxcdn.js new file mode 100644 index 0000000000..aa70893bf1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMaxcdn.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'maxcdn', icon: [512, 512, [], "f136", "M461.1 442.7h-97.4L415.6 200c2.3-10.2.9-19.5-4.4-25.7-5-6.1-13.7-9.6-24.2-9.6h-49.3l-59.5 278h-97.4l59.5-278h-83.4l-59.5 278H0l59.5-278-44.6-95.4H387c39.4 0 75.3 16.3 98.3 44.9 23.3 28.6 31.8 67.4 23.6 105.9l-47.8 222.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMedapps.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMedapps.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMedapps.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMedapps.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMedapps.js new file mode 100644 index 0000000000..4de8209d69 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMedapps.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'medapps', icon: [320, 512, [], "f3c6", "M118.3 238.4c3.5-12.5 6.9-33.6 13.2-33.6 8.3 1.8 9.6 23.4 18.6 36.6 4.6-23.5 5.3-85.1 14.1-86.7 9-.7 19.7 66.5 22 77.5 9.9 4.1 48.9 6.6 48.9 6.6 1.9 7.3-24 7.6-40 7.8-4.6 14.8-5.4 27.7-11.4 28-4.7.2-8.2-28.8-17.5-49.6l-9.4 65.5c-4.4 13-15.5-22.5-21.9-39.3-3.3-.1-62.4-1.6-47.6-7.8l31-5zM228 448c21.2 0 21.2-32 0-32H92c-21.2 0-21.2 32 0 32h136zm-24 64c21.2 0 21.2-32 0-32h-88c-21.2 0-21.2 32 0 32h88zm34.2-141.5c3.2-18.9 5.2-36.4 11.9-48.8 7.9-14.7 16.1-28.1 24-41 24.6-40.4 45.9-75.2 45.9-125.5C320 69.6 248.2 0 160 0S0 69.6 0 155.2c0 50.2 21.3 85.1 45.9 125.5 7.9 12.9 16 26.3 24 41 6.7 12.5 8.7 29.8 11.9 48.9 3.5 21 36.1 15.7 32.6-5.1-3.6-21.7-5.6-40.7-15.3-58.6C66.5 246.5 33 211.3 33 155.2 33 87.3 90 32 160 32s127 55.3 127 123.2c0 56.1-33.5 91.3-66.1 151.6-9.7 18-11.7 37.4-15.3 58.6-3.4 20.6 29 26.4 32.6 5.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMedium.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMedium.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMedium.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMedium.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMedium.js new file mode 100644 index 0000000000..82bbe162a0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMedium.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'medium', icon: [448, 512, [], "f23a", "M0 32v448h448V32H0zm372.2 106.1l-24 23c-2.1 1.6-3.1 4.2-2.7 6.7v169.3c-.4 2.6.6 5.2 2.7 6.7l23.5 23v5.1h-118V367l24.3-23.6c2.4-2.4 2.4-3.1 2.4-6.7V199.8l-67.6 171.6h-9.1L125 199.8v115c-.7 4.8 1 9.7 4.4 13.2l31.6 38.3v5.1H71.2v-5.1l31.6-38.3c3.4-3.5 4.9-8.4 4.1-13.2v-133c.4-3.7-1-7.3-3.8-9.8L75 138.1V133h87.3l67.4 148L289 133.1h83.2v5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMediumM.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMediumM.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMediumM.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMediumM.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMediumM.js new file mode 100644 index 0000000000..8823e82d57 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMediumM.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'medium-m', icon: [512, 512, [], "f3c7", "M71.5 142.3c.6-5.9-1.7-11.8-6.1-15.8L20.3 72.1V64h140.2l108.4 237.7L364.2 64h133.7v8.1l-38.6 37c-3.3 2.5-5 6.7-4.3 10.8v272c-.7 4.1 1 8.3 4.3 10.8l37.7 37v8.1H307.3v-8.1l39.1-37.9c3.8-3.8 3.8-5 3.8-10.8V171.2L241.5 447.1h-14.7L100.4 171.2v184.9c-1.1 7.8 1.5 15.6 7 21.2l50.8 61.6v8.1h-144v-8L65 377.3c5.4-5.6 7.9-13.5 6.5-21.2V142.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMedrt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMedrt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMedrt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMedrt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMedrt.js new file mode 100644 index 0000000000..47c7b801a6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMedrt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'medrt', icon: [544, 512, [], "f3c8", "M113.7 256c0 121.8 83.9 222.8 193.5 241.1-18.7 4.5-38.2 6.9-58.2 6.9C111.4 504 0 393 0 256S111.4 8 248.9 8c20.1 0 39.6 2.4 58.2 6.9C197.5 33.2 113.7 134.2 113.7 256m297.4 100.3c-77.7 55.4-179.6 47.5-240.4-14.6 5.5 14.1 12.7 27.7 21.7 40.5 61.6 88.2 182.4 109.3 269.7 47 87.3-62.3 108.1-184.3 46.5-272.6-9-12.9-19.3-24.3-30.5-34.2 37.4 78.8 10.7 178.5-67 233.9m-218.8-244c-1.4 1-2.7 2.1-4 3.1 64.3-17.8 135.9 4 178.9 60.5 35.7 47 42.9 106.6 24.4 158 56.7-56.2 67.6-142.1 22.3-201.8-50-65.5-149.1-74.4-221.6-19.8M296 224c-4.4 0-8-3.6-8-8v-40c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v40c0 4.4-3.6 8-8 8h-40c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h40c4.4 0 8 3.6 8 8v40c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-40c0-4.4 3.6-8 8-8h40c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-40z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMeetup.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMeetup.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMeetup.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMeetup.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMeetup.js new file mode 100644 index 0000000000..dc9fceac26 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMeetup.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'meetup', icon: [512, 512, [], "f2e0", "M99 414.3c1.1 5.7-2.3 11.1-8 12.3-5.4 1.1-10.9-2.3-12-8-1.1-5.4 2.3-11.1 7.7-12.3 5.4-1.2 11.1 2.3 12.3 8zm143.1 71.4c-6.3 4.6-8 13.4-3.7 20 4.6 6.6 13.4 8.3 20 3.7 6.3-4.6 8-13.4 3.4-20-4.2-6.5-13.1-8.3-19.7-3.7zm-86-462.3c6.3-1.4 10.3-7.7 8.9-14-1.1-6.6-7.4-10.6-13.7-9.1-6.3 1.4-10.3 7.7-9.1 14 1.4 6.6 7.6 10.6 13.9 9.1zM34.4 226.3c-10-6.9-23.7-4.3-30.6 6-6.9 10-4.3 24 5.7 30.9 10 7.1 23.7 4.6 30.6-5.7 6.9-10.4 4.3-24.1-5.7-31.2zm272-170.9c10.6-6.3 13.7-20 7.7-30.3-6.3-10.6-19.7-14-30-7.7s-13.7 20-7.4 30.6c6 10.3 19.4 13.7 29.7 7.4zm-191.1 58c7.7-5.4 9.4-16 4.3-23.7s-15.7-9.4-23.1-4.3c-7.7 5.4-9.4 16-4.3 23.7 5.1 7.8 15.6 9.5 23.1 4.3zm372.3 156c-7.4 1.7-12.3 9.1-10.6 16.9 1.4 7.4 8.9 12.3 16.3 10.6 7.4-1.4 12.3-8.9 10.6-16.6-1.5-7.4-8.9-12.3-16.3-10.9zm39.7-56.8c-1.1-5.7-6.6-9.1-12-8-5.7 1.1-9.1 6.9-8 12.6 1.1 5.4 6.6 9.1 12.3 8 5.4-1.5 9.1-6.9 7.7-12.6zM447 138.9c-8.6 6-10.6 17.7-4.9 26.3 5.7 8.6 17.4 10.6 26 4.9 8.3-6 10.3-17.7 4.6-26.3-5.7-8.7-17.4-10.9-25.7-4.9zm-6.3 139.4c26.3 43.1 15.1 100-26.3 129.1-17.4 12.3-37.1 17.7-56.9 17.1-12 47.1-69.4 64.6-105.1 32.6-1.1.9-2.6 1.7-3.7 2.9-39.1 27.1-92.3 17.4-119.4-22.3-9.7-14.3-14.6-30.6-15.1-46.9-65.4-10.9-90-94-41.1-139.7-28.3-46.9.6-107.4 53.4-114.9C151.6 70 234.1 38.6 290.1 82c67.4-22.3 136.3 29.4 130.9 101.1 41.1 12.6 52.8 66.9 19.7 95.2zm-70 74.3c-3.1-20.6-40.9-4.6-43.1-27.1-3.1-32 43.7-101.1 40-128-3.4-24-19.4-29.1-33.4-29.4-13.4-.3-16.9 2-21.4 4.6-2.9 1.7-6.6 4.9-11.7-.3-6.3-6-11.1-11.7-19.4-12.9-12.3-2-17.7 2-26.6 9.7-3.4 2.9-12 12.9-20 9.1-3.4-1.7-15.4-7.7-24-11.4-16.3-7.1-40 4.6-48.6 20-12.9 22.9-38 113.1-41.7 125.1-8.6 26.6 10.9 48.6 36.9 47.1 11.1-.6 18.3-4.6 25.4-17.4 4-7.4 41.7-107.7 44.6-112.6 2-3.4 8.9-8 14.6-5.1 5.7 3.1 6.9 9.4 6 15.1-1.1 9.7-28 70.9-28.9 77.7-3.4 22.9 26.9 26.6 38.6 4 3.7-7.1 45.7-92.6 49.4-98.3 4.3-6.3 7.4-8.3 11.7-8 3.1 0 8.3.9 7.1 10.9-1.4 9.4-35.1 72.3-38.9 87.7-4.6 20.6 6.6 41.4 24.9 50.6 11.4 5.7 62.5 15.7 58.5-11.1zm5.7 92.3c-10.3 7.4-12.9 22-5.7 32.6 7.1 10.6 21.4 13.1 32 6 10.6-7.4 13.1-22 6-32.6-7.4-10.6-21.7-13.5-32.3-6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMicrosoft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMicrosoft.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMicrosoft.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMicrosoft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMicrosoft.js new file mode 100644 index 0000000000..ded31e7a89 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMicrosoft.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'microsoft', icon: [448, 512, [], "f3ca", "M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMix.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMix.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMix.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMix.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMix.js new file mode 100644 index 0000000000..50934b2316 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMix.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'mix', icon: [448, 512, [], "f3cb", "M0 64v348.9c0 56.2 88 58.1 88 0V174.3c7.9-52.9 88-50.4 88 6.5v175.3c0 57.9 96 58 96 0V240c5.3-54.7 88-52.5 88 4.3v23.8c0 59.9 88 56.6 88 0V64H0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMixcloud.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMixcloud.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMixcloud.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMixcloud.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMixcloud.js new file mode 100644 index 0000000000..f23cbab794 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMixcloud.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'mixcloud', icon: [640, 512, [], "f289", "M424.43 219.729C416.124 134.727 344.135 68 256.919 68c-72.266 0-136.224 46.516-159.205 114.074-54.545 8.029-96.63 54.822-96.63 111.582 0 62.298 50.668 112.966 113.243 112.966h289.614c52.329 0 94.969-42.362 94.969-94.693 0-45.131-32.118-83.063-74.48-92.2zm-20.489 144.53H114.327c-39.04 0-70.881-31.564-70.881-70.604s31.841-70.604 70.881-70.604c18.827 0 36.548 7.475 49.838 20.766 19.963 19.963 50.133-10.227 30.18-30.18-14.675-14.398-32.672-24.365-52.053-29.349 19.935-44.3 64.79-73.926 114.628-73.926 69.496 0 125.979 56.483 125.979 125.702 0 13.568-2.215 26.857-6.369 39.594-8.943 27.517 32.133 38.939 40.147 13.29 2.769-8.306 4.984-16.889 6.369-25.472 19.381 7.476 33.502 26.303 33.502 48.453 0 28.795-23.535 52.33-52.607 52.33zm235.069-52.33c0 44.024-12.737 86.386-37.102 122.657-4.153 6.092-10.798 9.414-17.72 9.414-16.317 0-27.127-18.826-17.443-32.949 19.381-29.349 29.903-63.682 29.903-99.122s-10.521-69.773-29.903-98.845c-15.655-22.831 19.361-47.24 35.163-23.534 24.366 35.993 37.102 78.356 37.102 122.379zm-70.88 0c0 31.565-9.137 62.021-26.857 88.325-4.153 6.091-10.798 9.136-17.72 9.136-17.201 0-27.022-18.979-17.443-32.948 13.013-19.104 19.658-41.255 19.658-64.513 0-22.981-6.645-45.408-19.658-64.512-15.761-22.986 19.008-47.095 35.163-23.535 17.719 26.026 26.857 56.483 26.857 88.047z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMizuni.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMizuni.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMizuni.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMizuni.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMizuni.js new file mode 100644 index 0000000000..f73abf0318 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMizuni.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'mizuni', icon: [496, 512, [], "f3cc", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm-80 351.9c-31.4 10.6-58.8 27.3-80 48.2V136c0-22.1 17.9-40 40-40s40 17.9 40 40v223.9zm120-9.9c-12.9-2-26.2-3.1-39.8-3.1-13.8 0-27.2 1.1-40.2 3.1V136c0-22.1 17.9-40 40-40s40 17.9 40 40v214zm120 57.7c-21.2-20.8-48.6-37.4-80-48V136c0-22.1 17.9-40 40-40s40 17.9 40 40v271.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faModx.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faModx.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faModx.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faModx.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faModx.js new file mode 100644 index 0000000000..59f10e64d8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faModx.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'modx', icon: [448, 512, [], "f285", "M356 241.8l36.7 23.7V480l-133-83.8L356 241.8zM440 75H226.3l-23 37.8 153.5 96.5L440 75zm-89 142.8L55.2 32v214.5l46 29L351 217.8zM97 294.2L8 437h213.7l125-200.5L97 294.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMonero.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMonero.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMonero.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMonero.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMonero.js new file mode 100644 index 0000000000..8f86fbced9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faMonero.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'monero', icon: [496, 512, [], "f3d0", "M352 384h108.4C417 455.9 338.1 504 248 504S79 455.9 35.6 384H144V256.2L248 361l104-105v128zM88 336V128l159.4 159.4L408 128v208h74.8c8.5-25.1 13.2-52 13.2-80C496 119 385 8 248 8S0 119 0 256c0 28 4.6 54.9 13.2 80H88z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNapster.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNapster.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNapster.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNapster.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNapster.js new file mode 100644 index 0000000000..a6b1b73874 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNapster.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'napster', icon: [496, 512, [], "f3d2", "M298.3 373.6c-14.2 13.6-31.3 24.1-50.4 30.5-19-6.4-36.2-16.9-50.3-30.5h100.7zm44-199.6c20-16.9 43.6-29.2 69.6-36.2V299c0 219.4-328 217.6-328 .3V137.7c25.9 6.9 49.6 19.6 69.5 36.4 56.8-40 132.5-39.9 188.9-.1zm-208.8-58.5c64.4-60 164.3-60.1 228.9-.2-7.1 3.5-13.9 7.3-20.6 11.5-58.7-30.5-129.2-30.4-187.9.1-6.3-4-13.9-8.2-20.4-11.4zM43.8 93.2v69.3c-58.4 36.5-58.4 121.1.1 158.3 26.4 245.1 381.7 240.3 407.6 1.5l.3-1.7c58.7-36.3 58.9-121.7.2-158.2V93.2c-17.3.5-34 3-50.1 7.4-82-91.5-225.5-91.5-307.5.1-16.3-4.4-33.1-7-50.6-7.5zM259.2 352s36-.3 61.3-1.5c10.2-.5 21.1-4 25.5-6.5 26.3-15.1 25.4-39.2 26.2-47.4-79.5-.6-99.9-3.9-113 55.4zm-135.5-55.3c.8 8.2-.1 32.3 26.2 47.4 4.4 2.5 15.2 6 25.5 6.5 25.3 1.1 61.3 1.5 61.3 1.5-13.2-59.4-33.7-56.1-113-55.4zm169.1 123.4c-3.2-5.3-6.9-7.3-6.9-7.3-24.8 7.3-52.2 6.9-75.9 0 0 0-2.9 1.5-6.4 6.6-2.8 4.1-3.7 9.6-3.7 9.6 29.1 17.6 67.1 17.6 96.2 0-.1-.1-.3-4-3.3-8.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNintendoSwitch.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNintendoSwitch.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNintendoSwitch.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNintendoSwitch.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNintendoSwitch.js new file mode 100644 index 0000000000..66224d8bbc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNintendoSwitch.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'nintendo-switch', icon: [448, 512, [], "f418", "M95.9 33.5c-44.6 8-80.5 41-91.8 84.4C0 133.6-.3 142.8.2 264.4.4 376 .5 378.6 2.4 387.3c10.3 46.5 43.3 79.6 90.3 90.5 6.1 1.4 13.9 1.7 64.1 1.9 51.9.4 57.3.3 58.7-1.1 1.4-1.4 1.5-19.3 1.5-222.2 0-150.5-.3-221.3-.9-222.6-.9-1.7-2.5-1.8-56.9-1.7-44.2.1-57.5.4-63.3 1.4zm83.9 222.6V444l-37.8-.5c-34.8-.4-38.5-.6-45.5-2.3-29.9-7.7-52-30.7-58.3-60.7-2-9.4-2-240.1-.1-249.3 5.6-26.1 23.7-47.7 48-57.4 12.2-4.9 17.9-5.5 57.6-5.6l35.9-.1v188zm-75.9-131.2c-5.8 1.1-14.7 5.6-19.5 9.7-9.7 8.4-14.6 20.4-13.8 34.5.4 7.3.8 9.3 3.8 15.2 4.4 9 10.9 15.6 19.9 20 6.2 3.1 7.8 3.4 15.9 3.7 7.3.3 9.9 0 14.8-1.7 20.1-6.8 32.3-26.3 28.8-46.4-3.9-23.7-26.6-39.7-49.9-35zm158.2-92.3c-.4.3-.6 100.8-.6 223.5 0 202.3.1 222.8 1.5 223.4 2.5.9 74.5.6 83.4-.4 37.7-4.3 71-27.2 89-61.2 2.3-4.4 5.4-11.7 7-16.2 5.8-17.4 5.7-12.8 5.7-146.1 0-106.4-.2-122.3-1.5-129-9.2-48.3-46.1-84.8-94.5-93.1-6.5-1.1-16.5-1.4-48.8-1.4-22.4-.1-40.9.2-41.2.5zm99.1 202.1c14.5 3.8 26.3 14.8 31.2 28.9 3.1 8.7 3 21.5-.1 29.5-5.7 14.7-16.8 25-31.1 28.8-23.2 6-47.9-8-54.6-31-2-7-1.9-18.9.4-26.2 6.9-22.7 31-36.1 54.2-30z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNode.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNode.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNode.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNode.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNode.js new file mode 100644 index 0000000000..553c5af034 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNode.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'node', icon: [640, 512, [], "f419", "M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4.1l14.8 8.8c.5.3 1.3.3 1.8 0L375 408c.5-.3.9-.9.9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6.3-.9 1-.9 1.6v66.7c0 .6.4 1.2.9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9.7-1.7 1.7-1.7h7.3c.9 0 1.7.7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7zm46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6.2.8.8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5.3-.4.5-.8.4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7.7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8zm54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1zm-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3 0 5.2 4.2 9.4 9.3 9.4 5.2-.1 9.4-4.3 9.4-9.4zm-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7.1 1.8 1.2 2.1 2.8.1 1 .3 2.7.6 3.3zm-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8zM137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3.4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3.7 2.5 1.8 3.2 1.1.7 2.5.7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1 1.3 0 2.6.3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1.7 2.6.7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2l.2-95zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4zm-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6.3-.9.9-.9 1.6v24.3c0 .7.4 1.3.9 1.6l21 12.1c.6.3 1.3.3 1.8 0l21-12.1c.6-.3.9-.9.9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3.7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1.7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2l36.7-21.3zM559 219c-.4.3-.7.7-.7 1.2v13.6c0 .5.3 1 .7 1.2l11.8 6.8c.4.3 1 .3 1.4 0L584 235c.4-.3.7-.7.7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0L559 219zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7.1-.5.2-1.1.2-1.7zm-74.3-124.9l-.8.5h1.1l-.3-.5zm76.2 130.2l-.4-.7v.9l.4-.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNodeJs.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNodeJs.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNodeJs.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNodeJs.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNodeJs.js new file mode 100644 index 0000000000..5a2a02b96d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNodeJs.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'node-js', icon: [448, 512, [], "f3d3", "M224 508c-6.7 0-13.5-1.8-19.4-5.2l-61.7-36.5c-9.2-5.2-4.7-7-1.7-8 12.3-4.3 14.8-5.2 27.9-12.7 1.4-.8 3.2-.5 4.6.4l47.4 28.1c1.7 1 4.1 1 5.7 0l184.7-106.6c1.7-1 2.8-3 2.8-5V149.3c0-2.1-1.1-4-2.9-5.1L226.8 37.7c-1.7-1-4-1-5.7 0L36.6 144.3c-1.8 1-2.9 3-2.9 5.1v213.1c0 2 1.1 4 2.9 4.9l50.6 29.2c27.5 13.7 44.3-2.4 44.3-18.7V167.5c0-3 2.4-5.3 5.4-5.3h23.4c2.9 0 5.4 2.3 5.4 5.3V378c0 36.6-20 57.6-54.7 57.6-10.7 0-19.1 0-42.5-11.6l-48.4-27.9C8.1 389.2.7 376.3.7 362.4V149.3c0-13.8 7.4-26.8 19.4-33.7L204.6 9c11.7-6.6 27.2-6.6 38.8 0l184.7 106.7c12 6.9 19.4 19.8 19.4 33.7v213.1c0 13.8-7.4 26.7-19.4 33.7L243.4 502.8c-5.9 3.4-12.6 5.2-19.4 5.2zm149.1-210.1c0-39.9-27-50.5-83.7-58-57.4-7.6-63.2-11.5-63.2-24.9 0-11.1 4.9-25.9 47.4-25.9 37.9 0 51.9 8.2 57.7 33.8.5 2.4 2.7 4.2 5.2 4.2h24c1.5 0 2.9-.6 3.9-1.7s1.5-2.6 1.4-4.1c-3.7-44.1-33-64.6-92.2-64.6-52.7 0-84.1 22.2-84.1 59.5 0 40.4 31.3 51.6 81.8 56.6 60.5 5.9 65.2 14.8 65.2 26.7 0 20.6-16.6 29.4-55.5 29.4-48.9 0-59.6-12.3-63.2-36.6-.4-2.6-2.6-4.5-5.3-4.5h-23.9c-3 0-5.3 2.4-5.3 5.3 0 31.1 16.9 68.2 97.8 68.2 58.4-.1 92-23.2 92-63.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNpm.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNpm.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNpm.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNpm.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNpm.js new file mode 100644 index 0000000000..9a8b131a50 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNpm.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'npm', icon: [576, 512, [], "f3d4", "M288 288h-32v-64h32v64zm288-128v192H288v32H160v-32H0V160h576zm-416 32H32v128h64v-96h32v96h32V192zm160 0H192v160h64v-32h64V192zm224 0H352v128h64v-96h32v96h32v-96h32v96h32V192z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNs8.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNs8.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNs8.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNs8.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNs8.js new file mode 100644 index 0000000000..90b33e9798 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNs8.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'ns8', icon: [640, 512, [], "f3d5", "M187.1 159.9l-34.2 113.7-54.5-113.7H49L0 320h44.9L76 213.5 126.6 320h56.9L232 159.9h-44.9zm452.5-.9c-2.9-18-23.9-28.1-42.1-31.3-44.6-7.8-101.9 16.3-88.5 58.8v.1c-43.8 8.7-74.3 26.8-94.2 48.2-3-9.8-13.6-16.6-34-16.6h-87.6c-9.3 0-12.9-2.3-11.5-7.4 1.6-5.5 1.9-6.8 3.7-12.2 2.1-6.4 7.8-7.1 13.3-7.1h133.5l9.7-31.5c-139.7 0-144.5-.5-160.1 1.2-12.3 1.3-23.5 4.8-30.6 15-6.8 9.9-14.4 35.6-17.6 47.1-5.4 19.4-.6 28.6 32.8 28.6h87.3c7.8 0 8.8 2.7 7.7 6.6-1.1 4.4-2.8 10-4.5 14.6-1.6 4.2-4.7 7.4-13.8 7.4H216.3L204.7 320c139.9 0 145.3-.6 160.9-2.3 6.6-.7 13-2.1 18.5-4.9.2 3.7.5 7.3 1.2 10.8 5.4 30.5 27.4 52.3 56.8 59.5 48.6 11.9 108.7-16.8 135.1-68 18.7-36.2 14.1-76.2-3.4-105.5h.1c29.6-5.9 70.3-22 65.7-50.6zM530.7 263.7c-5.9 29.5-36.6 47.8-61.6 43.9-30.9-4.8-38.5-39.5-14.1-64.8 16.2-16.8 45.2-24 68.5-26.9 6.7 14.1 10.3 32 7.2 47.8zm21.8-83.1c-4.2-6-9.8-18.5-2.5-26.3 6.7-7.2 20.9-10.1 31.8-7.7 15.3 3.4 19.7 15.9 4.9 24.4-10.7 6.1-23.6 8.1-34.2 9.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNutritionix.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNutritionix.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNutritionix.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNutritionix.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNutritionix.js new file mode 100644 index 0000000000..ff7e1b1a37 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faNutritionix.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'nutritionix', icon: [400, 512, [], "f3d6", "M88 8.1S221.4-.1 209 112.5c0 0 19.1-74.9 103-40.6 0 0-17.7 74-88 56 0 0 14.6-54.6 66.1-56.6 0 0-39.9-10.3-82.1 48.8 0 0-19.8-94.5-93.6-99.7 0 0 75.2 19.4 77.6 107.5 0 .1-106.4 7-104-119.8zm312 315.6c0 48.5-9.7 95.3-32 132.3-42.2 30.9-105 48-168 48-62.9 0-125.8-17.1-168-48C9.7 419 0 372.2 0 323.7 0 275.3 17.7 229 40 192c42.2-30.9 97.1-48.6 160-48.6 63 0 117.8 17.6 160 48.6 22.3 37 40 83.3 40 131.7zM120 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM192 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM264 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM336 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm24-39.6c-4.8-22.3-7.4-36.9-16-56-38.8-19.9-90.5-32-144-32S94.8 180.1 56 200c-8.8 19.5-11.2 33.9-16 56 42.2-7.9 98.7-14.8 160-14.8s117.8 6.9 160 14.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOdnoklassniki.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOdnoklassniki.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOdnoklassniki.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOdnoklassniki.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOdnoklassniki.js new file mode 100644 index 0000000000..e8b3c77fef --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOdnoklassniki.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'odnoklassniki', icon: [320, 512, [], "f263", "M275.1 334c-27.4 17.4-65.1 24.3-90 26.9l20.9 20.6 76.3 76.3c27.9 28.6-17.5 73.3-45.7 45.7-19.1-19.4-47.1-47.4-76.3-76.6L84 503.4c-28.2 27.5-73.6-17.6-45.4-45.7 19.4-19.4 47.1-47.4 76.3-76.3l20.6-20.6c-24.6-2.6-62.9-9.1-90.6-26.9-32.6-21-46.9-33.3-34.3-59 7.4-14.6 27.7-26.9 54.6-5.7 0 0 36.3 28.9 94.9 28.9s94.9-28.9 94.9-28.9c26.9-21.1 47.1-8.9 54.6 5.7 12.4 25.7-1.9 38-34.5 59.1zM30.3 129.7C30.3 58 88.6 0 160 0s129.7 58 129.7 129.7c0 71.4-58.3 129.4-129.7 129.4s-129.7-58-129.7-129.4zm66 0c0 35.1 28.6 63.7 63.7 63.7s63.7-28.6 63.7-63.7c0-35.4-28.6-64-63.7-64s-63.7 28.6-63.7 64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOdnoklassnikiSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOdnoklassnikiSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOdnoklassnikiSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOdnoklassnikiSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOdnoklassnikiSquare.js new file mode 100644 index 0000000000..64bc58b302 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOdnoklassnikiSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'odnoklassniki-square', icon: [448, 512, [], "f264", "M184.2 177.1c0-22.1 17.9-40 39.8-40s39.8 17.9 39.8 40c0 22-17.9 39.8-39.8 39.8s-39.8-17.9-39.8-39.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-305.1 97.1c0 44.6 36.4 80.9 81.1 80.9s81.1-36.2 81.1-80.9c0-44.8-36.4-81.1-81.1-81.1s-81.1 36.2-81.1 81.1zm174.5 90.7c-4.6-9.1-17.3-16.8-34.1-3.6 0 0-22.7 18-59.3 18s-59.3-18-59.3-18c-16.8-13.2-29.5-5.5-34.1 3.6-7.9 16.1 1.1 23.7 21.4 37 17.3 11.1 41.2 15.2 56.6 16.8l-12.9 12.9c-18.2 18-35.5 35.5-47.7 47.7-17.6 17.6 10.7 45.8 28.4 28.6l47.7-47.9c18.2 18.2 35.7 35.7 47.7 47.9 17.6 17.2 46-10.7 28.6-28.6l-47.7-47.7-13-12.9c15.5-1.6 39.1-5.9 56.2-16.8 20.4-13.3 29.3-21 21.5-37z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOldRepublic.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOldRepublic.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOldRepublic.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOldRepublic.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOldRepublic.js new file mode 100644 index 0000000000..d034f0ad60 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOldRepublic.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'old-republic', icon: [496, 512, [], "f510", "M235.76 10.23c7.5-.31 15-.28 22.5-.09 3.61.14 7.2.4 10.79.73 4.92.27 9.79 1.03 14.67 1.62 2.93.43 5.83.98 8.75 1.46 7.9 1.33 15.67 3.28 23.39 5.4 12.24 3.47 24.19 7.92 35.76 13.21 26.56 12.24 50.94 29.21 71.63 49.88 20.03 20.09 36.72 43.55 48.89 69.19 1.13 2.59 2.44 5.1 3.47 7.74 2.81 6.43 5.39 12.97 7.58 19.63 4.14 12.33 7.34 24.99 9.42 37.83.57 3.14 1.04 6.3 1.4 9.47.55 3.83.94 7.69 1.18 11.56.83 8.34.84 16.73.77 25.1-.07 4.97-.26 9.94-.75 14.89-.24 3.38-.51 6.76-.98 10.12-.39 2.72-.63 5.46-1.11 8.17-.9 5.15-1.7 10.31-2.87 15.41-4.1 18.5-10.3 36.55-18.51 53.63-15.77 32.83-38.83 62.17-67.12 85.12a246.503 246.503 0 0 1-56.91 34.86c-6.21 2.68-12.46 5.25-18.87 7.41-3.51 1.16-7.01 2.38-10.57 3.39-6.62 1.88-13.29 3.64-20.04 5-4.66.91-9.34 1.73-14.03 2.48-5.25.66-10.5 1.44-15.79 1.74-6.69.66-13.41.84-20.12.81-6.82.03-13.65-.12-20.45-.79-3.29-.23-6.57-.5-9.83-.95-2.72-.39-5.46-.63-8.17-1.11-4.12-.72-8.25-1.37-12.35-2.22-4.25-.94-8.49-1.89-12.69-3.02-8.63-2.17-17.08-5.01-25.41-8.13-10.49-4.12-20.79-8.75-30.64-14.25-2.14-1.15-4.28-2.29-6.35-3.57-11.22-6.58-21.86-14.1-31.92-22.34-34.68-28.41-61.41-66.43-76.35-108.7-3.09-8.74-5.71-17.65-7.8-26.68-1.48-6.16-2.52-12.42-3.58-18.66-.4-2.35-.61-4.73-.95-7.09-.6-3.96-.75-7.96-1.17-11.94-.8-9.47-.71-18.99-.51-28.49.14-3.51.34-7.01.7-10.51.31-3.17.46-6.37.92-9.52.41-2.81.65-5.65 1.16-8.44.7-3.94 1.3-7.9 2.12-11.82 3.43-16.52 8.47-32.73 15.26-48.18 1.15-2.92 2.59-5.72 3.86-8.59 8.05-16.71 17.9-32.56 29.49-47.06 20-25.38 45.1-46.68 73.27-62.47 7.5-4.15 15.16-8.05 23.07-11.37 15.82-6.88 32.41-11.95 49.31-15.38 3.51-.67 7.04-1.24 10.56-1.85 2.62-.47 5.28-.7 7.91-1.08 3.53-.53 7.1-.68 10.65-1.04 2.46-.24 4.91-.36 7.36-.51m8.64 24.41c-9.23.1-18.43.99-27.57 2.23-7.3 1.08-14.53 2.6-21.71 4.3-13.91 3.5-27.48 8.34-40.46 14.42-10.46 4.99-20.59 10.7-30.18 17.22-4.18 2.92-8.4 5.8-12.34 9.03-5.08 3.97-9.98 8.17-14.68 12.59-2.51 2.24-4.81 4.7-7.22 7.06-28.22 28.79-48.44 65.39-57.5 104.69-2.04 8.44-3.54 17.02-4.44 25.65-1.1 8.89-1.44 17.85-1.41 26.8.11 7.14.38 14.28 1.22 21.37.62 7.12 1.87 14.16 3.2 21.18 1.07 4.65 2.03 9.32 3.33 13.91 6.29 23.38 16.5 45.7 30.07 65.75 8.64 12.98 18.78 24.93 29.98 35.77 16.28 15.82 35.05 29.04 55.34 39.22 7.28 3.52 14.66 6.87 22.27 9.63 5.04 1.76 10.06 3.57 15.22 4.98 11.26 3.23 22.77 5.6 34.39 7.06 2.91.29 5.81.61 8.72.9 13.82 1.08 27.74 1 41.54-.43 4.45-.6 8.92-.99 13.35-1.78 3.63-.67 7.28-1.25 10.87-2.1 4.13-.98 8.28-1.91 12.36-3.07 26.5-7.34 51.58-19.71 73.58-36.2 15.78-11.82 29.96-25.76 42.12-41.28 3.26-4.02 6.17-8.31 9.13-12.55 3.39-5.06 6.58-10.25 9.6-15.54 2.4-4.44 4.74-8.91 6.95-13.45 5.69-12.05 10.28-24.62 13.75-37.49 2.59-10.01 4.75-20.16 5.9-30.45 1.77-13.47 1.94-27.1 1.29-40.65-.29-3.89-.67-7.77-1-11.66-2.23-19.08-6.79-37.91-13.82-55.8-5.95-15.13-13.53-29.63-22.61-43.13-12.69-18.8-28.24-35.68-45.97-49.83-25.05-20-54.47-34.55-85.65-42.08-7.78-1.93-15.69-3.34-23.63-4.45-3.91-.59-7.85-.82-11.77-1.24-7.39-.57-14.81-.72-22.22-.58zM139.26 83.53c13.3-8.89 28.08-15.38 43.3-20.18-3.17 1.77-6.44 3.38-9.53 5.29-11.21 6.68-21.52 14.9-30.38 24.49-6.8 7.43-12.76 15.73-17.01 24.89-3.29 6.86-5.64 14.19-6.86 21.71-.93 4.85-1.3 9.81-1.17 14.75.13 13.66 4.44 27.08 11.29 38.82 5.92 10.22 13.63 19.33 22.36 27.26 4.85 4.36 10.24 8.09 14.95 12.6 2.26 2.19 4.49 4.42 6.43 6.91 2.62 3.31 4.89 6.99 5.99 11.1.9 3.02.66 6.2.69 9.31.02 4.1-.04 8.2.03 12.3.14 3.54-.02 7.09.11 10.63.08 2.38.02 4.76.05 7.14.16 5.77.06 11.53.15 17.3.11 2.91.02 5.82.13 8.74.03 1.63.13 3.28-.03 4.91-.91.12-1.82.18-2.73.16-10.99 0-21.88-2.63-31.95-6.93-6-2.7-11.81-5.89-17.09-9.83-5.75-4.19-11.09-8.96-15.79-14.31-6.53-7.24-11.98-15.39-16.62-23.95-1.07-2.03-2.24-4.02-3.18-6.12-1.16-2.64-2.62-5.14-3.67-7.82-4.05-9.68-6.57-19.94-8.08-30.31-.49-4.44-1.09-8.88-1.2-13.35-.7-15.73.84-31.55 4.67-46.82 2.12-8.15 4.77-16.18 8.31-23.83 6.32-14.2 15.34-27.18 26.3-38.19 6.28-6.2 13.13-11.84 20.53-16.67zm175.37-20.12c2.74.74 5.41 1.74 8.09 2.68 6.36 2.33 12.68 4.84 18.71 7.96 13.11 6.44 25.31 14.81 35.82 24.97 10.2 9.95 18.74 21.6 25.14 34.34 1.28 2.75 2.64 5.46 3.81 8.26 6.31 15.1 10 31.26 11.23 47.57.41 4.54.44 9.09.45 13.64.07 11.64-1.49 23.25-4.3 34.53-1.97 7.27-4.35 14.49-7.86 21.18-3.18 6.64-6.68 13.16-10.84 19.24-6.94 10.47-15.6 19.87-25.82 27.22-10.48 7.64-22.64 13.02-35.4 15.38-3.51.69-7.08 1.08-10.66 1.21-1.85.06-3.72.16-5.56-.1-.28-2.15 0-4.31-.01-6.46-.03-3.73.14-7.45.1-11.17.19-7.02.02-14.05.21-21.07.03-2.38-.03-4.76.03-7.14.17-5.07-.04-10.14.14-15.21.1-2.99-.24-6.04.51-8.96.66-2.5 1.78-4.86 3.09-7.08 4.46-7.31 11.06-12.96 17.68-18.26 5.38-4.18 10.47-8.77 15.02-13.84 7.68-8.37 14.17-17.88 18.78-28.27 2.5-5.93 4.52-12.1 5.55-18.46.86-4.37 1.06-8.83 1.01-13.27-.02-7.85-1.4-15.65-3.64-23.17-1.75-5.73-4.27-11.18-7.09-16.45-3.87-6.93-8.65-13.31-13.96-19.2-9.94-10.85-21.75-19.94-34.6-27.1-1.85-1.02-3.84-1.82-5.63-2.97zm-100.8 58.45c.98-1.18 1.99-2.33 3.12-3.38-.61.93-1.27 1.81-1.95 2.68-3.1 3.88-5.54 8.31-7.03 13.06-.87 3.27-1.68 6.6-1.73 10-.07 2.52-.08 5.07.32 7.57 1.13 7.63 4.33 14.85 8.77 21.12 2 2.7 4.25 5.27 6.92 7.33 1.62 1.27 3.53 2.09 5.34 3.05 3.11 1.68 6.32 3.23 9.07 5.48 2.67 2.09 4.55 5.33 4.4 8.79-.01 73.67 0 147.34-.01 221.02 0 1.35-.08 2.7.04 4.04.13 1.48.82 2.83 1.47 4.15.86 1.66 1.78 3.34 3.18 4.62.85.77 1.97 1.4 3.15 1.24 1.5-.2 2.66-1.35 3.45-2.57.96-1.51 1.68-3.16 2.28-4.85.76-2.13.44-4.42.54-6.63.14-4.03-.02-8.06.14-12.09.03-5.89.03-11.77.06-17.66.14-3.62.03-7.24.11-10.86.15-4.03-.02-8.06.14-12.09.03-5.99.03-11.98.07-17.97.14-3.62.02-7.24.11-10.86.14-3.93-.02-7.86.14-11.78.03-5.99.03-11.98.06-17.97.16-3.94-.01-7.88.19-11.82.29 1.44.13 2.92.22 4.38.19 3.61.42 7.23.76 10.84.32 3.44.44 6.89.86 10.32.37 3.1.51 6.22.95 9.31.57 4.09.87 8.21 1.54 12.29 1.46 9.04 2.83 18.11 5.09 26.99 1.13 4.82 2.4 9.61 4 14.3 2.54 7.9 5.72 15.67 10.31 22.62 1.73 2.64 3.87 4.98 6.1 7.21.27.25.55.51.88.71.6.25 1.31-.07 1.7-.57.71-.88 1.17-1.94 1.7-2.93 4.05-7.8 8.18-15.56 12.34-23.31.7-1.31 1.44-2.62 2.56-3.61 1.75-1.57 3.84-2.69 5.98-3.63 2.88-1.22 5.9-2.19 9.03-2.42 6.58-.62 13.11.75 19.56 1.85 3.69.58 7.4 1.17 11.13 1.41 3.74.1 7.48.05 11.21-.28 8.55-.92 16.99-2.96 24.94-6.25 5.3-2.24 10.46-4.83 15.31-7.93 11.46-7.21 21.46-16.57 30.04-27.01 1.17-1.42 2.25-2.9 3.46-4.28-1.2 3.24-2.67 6.37-4.16 9.48-1.25 2.9-2.84 5.61-4.27 8.42-5.16 9.63-11.02 18.91-17.75 27.52-4.03 5.21-8.53 10.05-13.33 14.57-6.64 6.05-14.07 11.37-22.43 14.76-8.21 3.37-17.31 4.63-26.09 3.29-3.56-.58-7.01-1.69-10.41-2.88-2.79-.97-5.39-2.38-8.03-3.69-3.43-1.71-6.64-3.81-9.71-6.08 2.71 3.06 5.69 5.86 8.7 8.61 4.27 3.76 8.74 7.31 13.63 10.23 3.98 2.45 8.29 4.4 12.84 5.51 1.46.37 2.96.46 4.45.6-1.25 1.1-2.63 2.04-3.99 2.98-9.61 6.54-20.01 11.86-30.69 16.43-20.86 8.7-43.17 13.97-65.74 15.34-4.66.24-9.32.36-13.98.36-4.98-.11-9.97-.13-14.92-.65-11.2-.76-22.29-2.73-33.17-5.43-10.35-2.71-20.55-6.12-30.3-10.55-8.71-3.86-17.12-8.42-24.99-13.79-1.83-1.31-3.74-2.53-5.37-4.08 6.6-1.19 13.03-3.39 18.99-6.48 5.74-2.86 10.99-6.66 15.63-11.07 2.24-2.19 4.29-4.59 6.19-7.09-3.43 2.13-6.93 4.15-10.62 5.78-4.41 2.16-9.07 3.77-13.81 5.02-5.73 1.52-11.74 1.73-17.61 1.14-8.13-.95-15.86-4.27-22.51-8.98-4.32-2.94-8.22-6.43-11.96-10.06-9.93-10.16-18.2-21.81-25.66-33.86-3.94-6.27-7.53-12.75-11.12-19.22-1.05-2.04-2.15-4.05-3.18-6.1 2.85 2.92 5.57 5.97 8.43 8.88 8.99 8.97 18.56 17.44 29.16 24.48 7.55 4.9 15.67 9.23 24.56 11.03 3.11.73 6.32.47 9.47.81 2.77.28 5.56.2 8.34.3 5.05.06 10.11.04 15.16-.16 3.65-.16 7.27-.66 10.89-1.09 2.07-.25 4.11-.71 6.14-1.2 3.88-.95 8.11-.96 11.83.61 4.76 1.85 8.44 5.64 11.38 9.71 2.16 3.02 4.06 6.22 5.66 9.58 1.16 2.43 2.46 4.79 3.55 7.26 1 2.24 2.15 4.42 3.42 6.52.67 1.02 1.4 2.15 2.62 2.55 1.06-.75 1.71-1.91 2.28-3.03 2.1-4.16 3.42-8.65 4.89-13.05 2.02-6.59 3.78-13.27 5.19-20.02 2.21-9.25 3.25-18.72 4.54-28.13.56-3.98.83-7.99 1.31-11.97.87-10.64 1.9-21.27 2.24-31.94.08-1.86.24-3.71.25-5.57.01-4.35.25-8.69.22-13.03-.01-2.38-.01-4.76 0-7.13.05-5.07-.2-10.14-.22-15.21-.2-6.61-.71-13.2-1.29-19.78-.73-5.88-1.55-11.78-3.12-17.51-2.05-7.75-5.59-15.03-9.8-21.82-3.16-5.07-6.79-9.88-11.09-14.03-3.88-3.86-8.58-7.08-13.94-8.45-1.5-.41-3.06-.45-4.59-.64.07-2.99.7-5.93 1.26-8.85 1.59-7.71 3.8-15.3 6.76-22.6 1.52-4.03 3.41-7.9 5.39-11.72 3.45-6.56 7.62-12.79 12.46-18.46zm31.27 1.7c.35-.06.71-.12 1.07-.19.19 1.79.09 3.58.1 5.37v38.13c-.01 1.74.13 3.49-.15 5.22-.36-.03-.71-.05-1.06-.05-.95-3.75-1.72-7.55-2.62-11.31-.38-1.53-.58-3.09-1.07-4.59-1.7-.24-3.43-.17-5.15-.2-5.06-.01-10.13 0-15.19-.01-1.66-.01-3.32.09-4.98-.03-.03-.39-.26-.91.16-1.18 1.28-.65 2.72-.88 4.06-1.35 3.43-1.14 6.88-2.16 10.31-3.31 1.39-.48 2.9-.72 4.16-1.54.04-.56.02-1.13-.05-1.68-1.23-.55-2.53-.87-3.81-1.28-3.13-1.03-6.29-1.96-9.41-3.02-1.79-.62-3.67-1-5.41-1.79-.03-.37-.07-.73-.11-1.09 5.09-.19 10.2.06 15.3-.12 3.36-.13 6.73.08 10.09-.07.12-.39.26-.77.37-1.16 1.08-4.94 2.33-9.83 3.39-14.75zm5.97-.2c.36.05.72.12 1.08.2.98 3.85 1.73 7.76 2.71 11.61.36 1.42.56 2.88 1.03 4.27 2.53.18 5.07-.01 7.61.05 5.16.12 10.33.12 15.49.07.76-.01 1.52.03 2.28.08-.04.36-.07.72-.1 1.08-1.82.83-3.78 1.25-5.67 1.89-3.73 1.23-7.48 2.39-11.22 3.57-.57.17-1.12.42-1.67.64-.15.55-.18 1.12-.12 1.69.87.48 1.82.81 2.77 1.09 4.88 1.52 9.73 3.14 14.63 4.6.38.13.78.27 1.13.49.4.27.23.79.15 1.18-1.66.13-3.31.03-4.97.04-5.17.01-10.33-.01-15.5.01-1.61.03-3.22-.02-4.82.21-.52 1.67-.72 3.42-1.17 5.11-.94 3.57-1.52 7.24-2.54 10.78-.36.01-.71.02-1.06.06-.29-1.73-.15-3.48-.15-5.22v-38.13c.02-1.78-.08-3.58.11-5.37zM65.05 168.33c1.12-2.15 2.08-4.4 3.37-6.46-1.82 7.56-2.91 15.27-3.62 23-.8 7.71-.85 15.49-.54 23.23 1.05 19.94 5.54 39.83 14.23 57.88 2.99 5.99 6.35 11.83 10.5 17.11 6.12 7.47 12.53 14.76 19.84 21.09 4.8 4.1 9.99 7.78 15.54 10.8 3.27 1.65 6.51 3.39 9.94 4.68 5.01 2.03 10.19 3.61 15.42 4.94 3.83.96 7.78 1.41 11.52 2.71 5 1.57 9.47 4.61 13.03 8.43 4.93 5.23 8.09 11.87 10.2 18.67.99 2.9 1.59 5.91 2.17 8.92.15.75.22 1.52.16 2.29-6.5 2.78-13.26 5.06-20.26 6.18-4.11.78-8.29.99-12.46 1.08-10.25.24-20.47-1.76-30.12-5.12-3.74-1.42-7.49-2.85-11.03-4.72-8.06-3.84-15.64-8.7-22.46-14.46-2.92-2.55-5.83-5.13-8.4-8.03-9.16-9.83-16.3-21.41-21.79-33.65-2.39-5.55-4.61-11.18-6.37-16.96-1.17-3.94-2.36-7.89-3.26-11.91-.75-2.94-1.22-5.95-1.87-8.92-.46-2.14-.69-4.32-1.03-6.48-.85-5.43-1.28-10.93-1.33-16.43.11-6.18.25-12.37 1.07-18.5.4-2.86.67-5.74 1.15-8.6.98-5.7 2.14-11.37 3.71-16.93 3.09-11.65 7.48-22.95 12.69-33.84zm363.73-6.44c1.1 1.66 1.91 3.48 2.78 5.26 2.1 4.45 4.24 8.9 6.02 13.49 7.61 18.76 12.3 38.79 13.04 59.05.02 1.76.07 3.52.11 5.29.13 9.57-1.27 19.09-3.18 28.45-.73 3.59-1.54 7.17-2.58 10.69-4.04 14.72-10 29-18.41 41.78-8.21 12.57-19.01 23.55-31.84 31.41-5.73 3.59-11.79 6.64-18.05 9.19-5.78 2.19-11.71 4.03-17.8 5.11-6.4 1.05-12.91 1.52-19.4 1.23-7.92-.48-15.78-2.07-23.21-4.85-1.94-.8-3.94-1.46-5.84-2.33-.21-1.51.25-2.99.53-4.46 1.16-5.74 3.03-11.36 5.7-16.58 2.37-4.51 5.52-8.65 9.46-11.9 2.43-2.05 5.24-3.61 8.16-4.83 3.58-1.5 7.47-1.97 11.24-2.83 7.23-1.71 14.37-3.93 21.15-7 10.35-4.65 19.71-11.38 27.65-19.46 1.59-1.61 3.23-3.18 4.74-4.87 3.37-3.76 6.71-7.57 9.85-11.53 7.48-10.07 12.82-21.59 16.71-33.48 1.58-5.3 3.21-10.6 4.21-16.05.63-2.87 1.04-5.78 1.52-8.68.87-6.09 1.59-12.22 1.68-18.38.12-6.65.14-13.32-.53-19.94-.73-7.99-1.87-15.96-3.71-23.78z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOpencart.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOpencart.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOpencart.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOpencart.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOpencart.js new file mode 100644 index 0000000000..f2153fb9dd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOpencart.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'opencart', icon: [640, 512, [], "f23d", "M423.3 440.7c0 25.3-20.3 45.6-45.6 45.6s-45.8-20.3-45.8-45.6 20.6-45.8 45.8-45.8c25.4 0 45.6 20.5 45.6 45.8zm-253.9-45.8c-25.3 0-45.6 20.6-45.6 45.8s20.3 45.6 45.6 45.6 45.8-20.3 45.8-45.6-20.5-45.8-45.8-45.8zm291.7-270C158.9 124.9 81.9 112.1 0 25.7c34.4 51.7 53.3 148.9 373.1 144.2 333.3-5 130 86.1 70.8 188.9 186.7-166.7 319.4-233.9 17.2-233.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOpenid.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOpenid.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOpenid.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOpenid.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOpenid.js new file mode 100644 index 0000000000..1e3a5f2519 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOpenid.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'openid', icon: [448, 512, [], "f19b", "M271.5 432l-68 32C88.5 453.7 0 392.5 0 318.2c0-71.5 82.5-131 191.7-144.3v43c-71.5 12.5-124 53-124 101.3 0 51 58.5 93.3 135.7 103v-340l68-33.2v384zM448 291l-131.3-28.5 36.8-20.7c-19.5-11.5-43.5-20-70-24.8v-43c46.2 5.5 87.7 19.5 120.3 39.3l35-19.8L448 291z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOpera.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOpera.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOpera.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOpera.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOpera.js new file mode 100644 index 0000000000..1baf5a5741 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOpera.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'opera', icon: [496, 512, [], "f26a", "M313.9 32.7c-170.2 0-252.6 223.8-147.5 355.1 36.5 45.4 88.6 75.6 147.5 75.6 36.3 0 70.3-11.1 99.4-30.4-43.8 39.2-101.9 63-165.3 63-3.9 0-8 0-11.9-.3C104.6 489.6 0 381.1 0 248 0 111 111 0 248 0h.8c63.1.3 120.7 24.1 164.4 63.1-29-19.4-63.1-30.4-99.3-30.4zm101.8 397.7c-40.9 24.7-90.7 23.6-132-5.8 56.2-20.5 97.7-91.6 97.7-176.6 0-84.7-41.2-155.8-97.4-176.6 41.8-29.2 91.2-30.3 132.9-5 105.9 98.7 105.5 265.7-1.2 364z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOptinMonster.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOptinMonster.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOptinMonster.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOptinMonster.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOptinMonster.js new file mode 100644 index 0000000000..2f257802c1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOptinMonster.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'optin-monster', icon: [576, 512, [], "f23c", "M550.671 450.303c0 11.62-15.673 19.457-32.158 14.863-12.16-3.243-31.346-17.565-36.211-27.294-5.674-11.62 4.054-32.698 18.916-30.806 15.674 1.621 49.453 25.401 49.453 43.237zM372.86 75.223c-3.783-72.151-100.796-79.718-125.928-23.51 44.588-24.321 90.257-15.673 125.928 23.51zM74.795 407.066c-15.673 1.621-49.452 25.401-49.452 43.237 0 11.62 15.673 19.457 32.157 14.863 12.16-3.243 31.076-17.565 35.94-27.294 5.946-11.62-3.782-32.698-18.645-30.806zm497.765 14.322c1.081 3.513 1.892 7.026 1.892 10.809.81 31.616-44.317 64.045-73.503 65.125-17.295.81-34.59-8.377-42.696-23.51-113.497 4.053-226.994 4.864-340.22 0-8.377 15.133-25.672 24.05-42.967 23.51-28.915-1.081-74.043-33.509-73.503-65.125.27-3.783.811-7.296 1.892-10.809-5.566-9.463-4.845-15.282 5.405-11.62 3.243-5.134 7.026-9.458 11.08-13.782-2.57-10.917 1.27-14.094 11.079-9.188 4.594-3.243 9.998-6.485 15.944-9.188 0-15.757 11.839-11.131 17.295-5.675 12.467-1.78 20.129.709 26.753 5.675v-19.726c-12.987 0-40.641-11.375-45.94-36.212-4.974-20.725 2.607-38.075 25.132-47.56.81-5.945 8.107-14.052 14.862-15.944 7.567-1.892 12.431 4.594 14.052 10.269 7.425 0 17.757 1.465 21.078 8.107 5.405-.541 11.079-1.352 16.484-1.892-2.432-1.892-5.134-3.513-8.107-4.594-5.134-8.917-13.782-11.079-24.591-11.62 0-.81 0-1.621.27-2.702-19.727-.541-44.048-5.675-54.857-17.835-21.321-23.638-15.935-83.577 12.16-103.498 8.377-5.675 21.618-.811 22.699 9.728 2.425 20.598.399 26.833 26.212 25.942 8.107-7.836 16.755-14.592 26.483-19.997-14.862-1.352-28.914 1.621-43.778 3.783 12.752-12.48 23.953-25.442 56.748-42.427 23.511-11.89 49.993-20.808 76.205-23.239-18.646-7.837-39.993-11.891-59.721-16.484 76.475-16.214 174.569-22.159 244.289 37.562 18.105 15.403 32.427 36.211 42.696 59.992 39.799 4.853 36.47-5.581 38.643-25.132 1.081-10.269 14.322-15.403 22.699-9.458 14.862 10.539 22.159 30.806 24.59 48.101 2.162 17.835.27 41.345-12.43 55.127-10.809 12.16-34.32 17.565-53.776 18.105v2.703c-11.08.27-20.268 2.432-25.673 11.62-2.972 1.081-5.674 2.703-8.377 4.594 5.675.54 11.35 1.351 16.755 1.891 1.869-5.619 12.535-8.377 21.077-8.377 1.621-5.405 6.756-11.89 14.052-10.269s14.052 9.998 14.863 15.944c10.809 4.324 22.159 12.16 25.131 25.672 1.892 8.107 1.621 15.133.27 21.888-5.726 25.262-33.361 36.212-45.939 36.212 0 6.756 0 13.241-.27 19.726 8.01-6.006 16.367-7.158 26.752-5.675 5.919-5.919 17.565-9.41 17.565 5.675 5.675 2.703 11.349 5.945 15.944 9.188 10.1-5.051 13.669-.539 10.809 9.188 4.053 4.323 8.107 8.917 11.079 13.782 10.136-3.62 11.021 2.078 5.409 11.62zm-73.773-254.016c17.295 6.756 26.212 22.159 30.265 35.67 1.081-10.539-2.702-39.453-13.782-51.073-7.296-7.296-14.052-5.134-14.052.81.001 6.216-1.35 11.62-2.431 14.593zm-18.646 12.43c12.971 15.673 17.024 41.615 12.7 62.963 10.809-2.162 20.537-6.215 26.212-12.16 1.892-2.162 3.783-4.864 4.864-7.566-1.081-21.348-10.269-42.697-29.725-48.912-3.242 3.243-9.187 4.864-14.051 5.675zm-21.889.811c7.567 20.537 12.431 42.696 14.322 64.585 3.513 0 7.567-.27 11.62-.811 5.945-24.321-.27-51.614-14.052-63.504-3.783 0-8.107 0-11.89-.27zM77.768 167.372c-1.081-2.973-2.432-8.377-2.432-14.593 0-5.945-7.026-8.107-14.052-.81-11.35 11.62-14.863 40.534-13.782 51.073 4.053-13.512 12.971-28.915 30.266-35.67zm5.675 75.394c-4.324-21.348-.27-47.291 12.701-62.963-4.865-.811-10.809-2.432-14.052-5.675-19.457 6.215-28.375 27.563-29.726 48.912 1.351 2.702 2.972 5.404 4.864 7.566 5.675 6.215 15.403 9.998 26.213 12.16zm41.345-61.073c-5.134 1.081-9.998 2.973-14.862 4.865l-12.16 5.134v-.27c-7.296 14.052-9.999 34.319-5.405 52.965 4.594.541 8.647.811 12.7.811 2.432-22.159 9.188-43.778 19.727-63.505zm88.095-23.239c0 42.155 34.319 76.205 76.205 76.205s76.205-34.05 76.205-76.205c0-41.886-34.319-75.935-76.205-75.935s-76.205 34.049-76.205 75.935zm152.41 97.283c9.969 50.608 3.299 64.692 16.484 58.099 15.944-8.107 22.699-39.183 22.97-57.019-12.971-.81-26.213-.81-39.454-1.08zm-71.611-.541v-.27c-.27 5.134.27 38.103 4.324 41.075 11.079 5.405 39.453 4.594 51.073 1.081 5.405-1.621 2.432-37.022 1.621-41.886-18.916-.27-38.102-.27-57.018 0zm-14.053 0v-.27c-19.456.27-38.642.27-57.829.811-1.892 9.187-4.594 48.911 1.892 51.614 12.971 5.675 41.616 5.134 54.586 1.621 4.595-2.432 2.433-45.399 1.351-53.776zm-85.662 57.56c5.405 2.432 8.647 2.432 9.728-4.324 1.892-8.647 2.432-36.752 4.865-52.155-12.16.27-24.591.811-36.752 1.621-5.405 19.727.27 45.129 22.159 54.858zm-65.666-11.08c43.778 47.02 92.689 85.663 155.923 106.47 67.558-19.186 115.659-59.991 163.219-107.011-11.095-4.315-7.715-10.363-7.296-11.62-8.918-.81-17.835-1.892-26.483-2.702-9.458 32.968-35.94 52.965-46.75 31.616-2.702-5.134-3.513-11.62-4.594-16.754-3.783 8.377-13.242 8.107-24.591 8.918-13.241 1.081-31.617 1.351-44.048-2.972-2.972 12.971-11.079 12.971-26.752 14.322-14.052 1.352-48.642 4.054-54.857-10.809-1.081 28.644-35.13 9.998-45.129-7.026-3.243-5.675-5.405-11.35-7.026-17.565-7.837.81-15.673 1.621-23.511 2.702 2.443 3.663 1.549 9.052-8.105 12.431zM115.6 453.545c-5.674-23.239-18.646-49.722-33.508-54.046-22.429-6.756-68.909 23.51-66.207 54.586 12.701 19.457 39.994 35.67 59.181 36.481 17.835.81 35.94-11.08 39.724-28.914.539-2.432.81-5.134.81-8.107zm7.296-5.944c33.509-19.457 69.179-35.671 105.931-47.02-38.643-20.537-68.098-47.831-97.283-77.016-2.162 1.352-5.134 2.432-7.836 3.513-1.637 4.91 8.718 5.33 5.405 12.431-2.162 4.054-8.648 7.567-15.133 9.188-2.161 2.702-5.134 4.864-7.836 6.485h-.27c-.27 13.511-.27 27.024.27 40.535 8.939 15.964 15.426 33.314 16.752 51.884zm320.764 12.7c-36.752-21.348-74.044-41.345-115.659-52.965-13.782 6.215-27.833 11.349-42.155 15.403-2.162.811-2.162.811-4.324 0-11.89-3.783-23.239-8.107-34.859-13.241-40.265 11.62-77.286 29.185-112.416 50.803h-.27v.27c.27 0 .27 0 .27-.27 103.227 4.054 206.455 3.513 309.413 0zm27.023-64.045l-.27.27c.541-13.782.811-27.563.811-41.345-2.973-1.621-5.675-4.054-8.107-6.756-6.485-1.351-12.971-5.134-15.133-8.918-1.892-4.053 1.351-7.566 5.945-10.269-.27-.541-.541-1.621-.541-2.432-2.972-.811-5.405-1.892-7.567-3.243-31.616 29.455-65.396 56.749-103.498 76.746 38.914 11.62 75.935 28.104 111.875 47.561 1.05-14.692 7.231-35.749 16.485-51.614zm23.24 3.244c-14.593 4.323-27.834 30.806-33.509 54.046 0 23.826 21.278 37.897 40.534 37.022 19.186-.811 46.48-17.024 59.181-36.481 2.973-31.077-43.507-61.344-66.206-54.587zM290.709 134.133c.045 0 .089.003.134.003.046 0 .09-.003.136-.003h-.27zm0 96.743c28.645 0 51.884-21.618 51.884-48.371 0-36.092-40.507-58.079-72.151-44.318 9.458 2.972 16.484 11.62 16.484 21.618 0 23.257-33.291 31.955-46.48 11.35-7.297 34.067 19.368 59.721 50.263 59.721zM68.039 474.083c.54 6.486 12.16 12.701 21.618 9.458 6.756-2.703 14.593-10.539 17.295-16.214 2.973-7.026-1.081-19.997-9.728-18.375-8.917 1.621-29.725 16.754-29.185 25.131zm410.75-25.131c-8.377-1.621-12.431 11.349-9.458 18.375 2.432 5.675 10.269 13.511 17.295 16.214 9.187 3.243 21.078-2.972 21.348-9.458.811-8.377-20.267-23.51-29.185-25.131z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOsi.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOsi.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOsi.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOsi.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOsi.js new file mode 100644 index 0000000000..59060edb57 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faOsi.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'osi', icon: [495, 512, [], "f41a", "M0 259.2C2.3 123.4 97.4 26.8 213.8 11.1c138.8-18.6 255.6 75.8 278 201.1 21.3 118.8-44 230-151.6 274-9.3 3.8-14.4 1.7-18-7.7-17.8-46.3-35.6-92.7-53.4-139-3.1-8.1-1-13.2 7-16.8 24.2-11 39.3-29.4 43.3-55.8 6.4-42.4-24.5-78.7-64.5-82.2-39-3.4-71.8 23.7-77.5 59.7-5.2 33 11.1 63.7 41.9 77.7 9.6 4.4 11.5 8.6 7.8 18.4-17.9 46.6-35.8 93.2-53.7 139.9-2.6 6.9-8.3 9.3-15.5 6.5-52.6-20.3-101.4-61-130.8-119C1.9 318.7 1.6 280.2 0 259.2zm20.9-1.9c.4 6.6.6 14.3 1.3 22.1 6.3 71.9 49.6 143.5 131 183.1 3.2 1.5 4.4.8 5.6-2.3 14.9-39.1 29.9-78.2 45-117.3 1.3-3.3.6-4.8-2.4-6.7-31.6-19.9-47.3-48.5-45.6-86 1-21.6 9.3-40.5 23.8-56.3 30-32.7 77-39.8 115.5-17.6 31.9 18.4 49.5 53.8 45.2 90.4-3.6 30.6-19.3 53.9-45.7 69.8-2.7 1.6-3.5 2.9-2.3 6 15.2 39.2 30.2 78.4 45.2 117.7 1.2 3.1 2.4 3.8 5.6 2.3 35.5-16.6 65.2-40.3 88.1-72 34.8-48.2 49.1-101.9 42.3-161C459.8 112 354.1 14.7 218 31.5 111.9 44.5 22.7 134 20.9 257.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPage4.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPage4.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPage4.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPage4.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPage4.js new file mode 100644 index 0000000000..951c87c564 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPage4.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'page4', icon: [496, 512, [], "f3d7", "M248 504C111 504 0 393 0 256S111 8 248 8c20.9 0 41.3 2.6 60.7 7.5L42.3 392H248v112zm0-143.6V146.8L98.6 360.4H248zm96 31.6v92.7c45.7-19.2 84.5-51.7 111.4-92.7H344zm57.4-138.2l-21.2 8.4 21.2 8.3v-16.7zm-20.3 54.5c-6.7 0-8 6.3-8 12.9v7.7h16.2v-10c0-5.9-2.3-10.6-8.2-10.6zM496 256c0 37.3-8.2 72.7-23 104.4H344V27.3C433.3 64.8 496 153.1 496 256zM360.4 143.6h68.2V96h-13.9v32.6h-13.9V99h-13.9v29.6h-12.7V96h-13.9v47.6zm68.1 185.3H402v-11c0-15.4-5.6-25.2-20.9-25.2-15.4 0-20.7 10.6-20.7 25.9v25.3h68.2v-15zm0-103l-68.2 29.7V268l68.2 29.5v-16.6l-14.4-5.7v-26.5l14.4-5.9v-16.9zm-4.8-68.5h-35.6V184H402v-12.2h11c8.6 15.8 1.3 35.3-18.6 35.3-22.5 0-28.3-25.3-15.5-37.7l-11.6-10.6c-16.2 17.5-12.2 63.9 27.1 63.9 34 0 44.7-35.9 29.3-65.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPagelines.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPagelines.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPagelines.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPagelines.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPagelines.js new file mode 100644 index 0000000000..7a94e6b3ce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPagelines.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'pagelines', icon: [384, 512, [], "f18c", "M384 312.7c-55.1 136.7-187.1 54-187.1 54-40.5 81.8-107.4 134.4-184.6 134.7-16.1 0-16.6-24.4 0-24.4 64.4-.3 120.5-42.7 157.2-110.1-41.1 15.9-118.6 27.9-161.6-82.2 109-44.9 159.1 11.2 178.3 45.5 9.9-24.4 17-50.9 21.6-79.7 0 0-139.7 21.9-149.5-98.1 119.1-47.9 152.6 76.7 152.6 76.7 1.6-16.7 3.3-52.6 3.3-53.4 0 0-106.3-73.7-38.1-165.2 124.6 43 61.4 162.4 61.4 162.4.5 1.6.5 23.8 0 33.4 0 0 45.2-89 136.4-57.5-4.2 134-141.9 106.4-141.9 106.4-4.4 27.4-11.2 53.4-20 77.5 0 0 83-91.8 172-20z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPalfed.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPalfed.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPalfed.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPalfed.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPalfed.js new file mode 100644 index 0000000000..8a5cd36390 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPalfed.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'palfed', icon: [576, 512, [], "f3d8", "M384.9 193.9c0-47.4-55.2-44.2-95.4-29.8-1.3 39.4-2.5 80.7-3 119.8.7 2.8 2.6 6.2 15.1 6.2 36.8 0 83.4-42.8 83.3-96.2zm-194.5 72.2c.2 0 6.5-2.7 11.2-2.7 26.6 0 20.7 44.1-14.4 44.1-21.5 0-37.1-18.1-37.1-43 0-42 42.9-95.6 100.7-126.5 1-12.4 3-22 10.5-28.2 11.2-9 26.6-3.5 29.5 11.1 72.2-22.2 135.2 1 135.2 72 0 77.9-79.3 152.6-140.1 138.2-.1 39.4.9 74.4 2.7 100v.2c.2 3.4.6 12.5-5.3 19.1-9.6 10.6-33.4 10-36.4-22.3-4.1-44.4.2-206.1 1.4-242.5-21.5 15-58.5 50.3-58.5 75.9.2 2.5.4 4 .6 4.6zM8 181.1s-.1 37.4 38.4 37.4h30l22.4 217.2s0 44.3 44.7 44.3h288.9s44.7-.4 44.7-44.3l22.4-217.2h30s38.4 1.2 38.4-37.4c0 0 .1-37.4-38.4-37.4h-30.1c-7.3-25.6-30.2-74.3-119.4-74.3h-28V50.3s-2.7-18.4-21.1-18.4h-85.8s-21.1 0-21.1 18.4v19.1h-28.1s-105 4.2-120.5 74.3h-29S8 142.5 8 181.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPatreon.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPatreon.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPatreon.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPatreon.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPatreon.js new file mode 100644 index 0000000000..d2a467b721 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPatreon.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'patreon', icon: [512, 512, [], "f3d9", "M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPaypal.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPaypal.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPaypal.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPaypal.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPaypal.js new file mode 100644 index 0000000000..a586b36a1a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPaypal.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'paypal', icon: [384, 512, [], "f1ed", "M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPeriscope.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPeriscope.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPeriscope.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPeriscope.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPeriscope.js new file mode 100644 index 0000000000..104ec08322 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPeriscope.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'periscope', icon: [448, 512, [], "f3da", "M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhabricator.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhabricator.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhabricator.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhabricator.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhabricator.js new file mode 100644 index 0000000000..e6035b9be9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhabricator.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'phabricator', icon: [496, 512, [], "f3db", "M323 262.1l-.1-13s21.7-19.8 21.1-21.2l-9.5-20c-.6-1.4-29.5-.5-29.5-.5l-9.4-9.3s.2-28.5-1.2-29.1l-20.1-9.2c-1.4-.6-20.7 21-20.7 21l-13.1-.2s-20.5-21.4-21.9-20.8l-20 8.3c-1.4.5.2 28.9.2 28.9l-9.1 9.1s-29.2-.9-29.7.4l-8.1 19.8c-.6 1.4 21 21 21 21l.1 12.9s-21.7 19.8-21.1 21.2l9.5 20c.6 1.4 29.5.5 29.5.5l9.4 9.3s-.2 31.8 1.2 32.3l20.1 8.3c1.4.6 20.7-23.5 20.7-23.5l13.1.2s20.5 23.8 21.8 23.3l20-7.5c1.4-.6-.2-32.1-.2-32.1l9.1-9.1s29.2.9 29.7-.5l8.1-19.8c.7-1.1-20.9-20.7-20.9-20.7zm-44.9-8.7c.7 17.1-12.8 31.6-30.1 32.4-17.3.8-32.1-12.5-32.8-29.6-.7-17.1 12.8-31.6 30.1-32.3 17.3-.8 32.1 12.5 32.8 29.5zm201.2-37.9l-97-97-.1.1c-75.1-73.3-195.4-72.8-269.8 1.6-50.9 51-27.8 27.9-95.7 95.3-22.3 22.3-22.3 58.7 0 81 69.9 69.4 46.4 46 97.4 97l.1-.1c75.1 73.3 195.4 72.9 269.8-1.6 51-50.9 27.9-27.9 95.3-95.3 22.3-22.3 22.3-58.7 0-81zM140.4 363.8c-59.6-59.5-59.6-156 0-215.5 59.5-59.6 156-59.5 215.6 0 59.5 59.5 59.6 156 0 215.6-59.6 59.5-156 59.4-215.6-.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhoenixFramework.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhoenixFramework.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhoenixFramework.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhoenixFramework.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhoenixFramework.js new file mode 100644 index 0000000000..d56f0921a7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhoenixFramework.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'phoenix-framework', icon: [640, 512, [], "f3dc", "M212.9 344.3c3.8-.1 22.8-1.4 25.6-2.2-2.4-2.6-43.6-1-68-49.6-4.3-8.6-7.5-17.6-6.4-27.6 2.9-25.5 32.9-30 52-18.5 36 21.6 63.3 91.3 113.7 97.5 37 4.5 84.6-17 108.2-45.4-.6-.1-.8-.2-1-.1-.4.1-.8.2-1.1.3-33.3 12.1-94.3 9.7-134.7-14.8-37.6-22.8-53.1-58.7-51.8-74.6 1.8-21.3 22.9-23.2 35.9-19.6 14.4 3.9 24.4 17.6 38.9 27.4 15.6 10.4 32.9 13.7 51.3 10.3 14.9-2.7 34.4-12.3 36.5-14.5-1.1-.1-1.8-.1-2.5-.2-6.2-.6-12.4-.8-18.5-1.7C279.8 194.5 262.1 47.4 138.5 37.9 94.2 34.5 39.1 46 2.2 72.9c-.8.6-1.5 1.2-2.2 1.8.1.2.1.3.2.5.8 0 1.6-.1 2.4-.2 6.3-1 12.5-.8 18.7.3 23.8 4.3 47.7 23.1 55.9 76.5 5.3 34.3-.7 50.8 8 86.1 19 77.1 91 107.6 127.7 106.4zM75.3 64.9c-.9-1-.9-1.2-1.3-2 12.1-2.6 24.2-4.1 36.6-4.8-1.1 14.7-22.2 21.3-35.3 6.8zm196.9 350.5c-42.8 1.2-92-26.7-123.5-61.4-4.6-5-16.8-20.2-18.6-23.4l.4-.4c6.6 4.1 25.7 18.6 54.8 27 24.2 7 48.1 6.3 71.6-3.3 22.7-9.3 41-.5 43.1 2.9-18.5 3.8-20.1 4.4-24 7.9-5.1 4.4-4.6 11.7 7 17.2 26.2 12.4 63-2.8 97.2 25.4 2.4 2 8.1 7.8 10.1 10.7-.1.2-.3.3-.4.5-4.8-1.5-16.4-7.5-40.2-9.3-24.7-2-46.3 5.3-77.5 6.2zm174.8-252c16.4-5.2 41.3-13.4 66.5-3.3 16.1 6.5 26.2 18.7 32.1 34.6 3.5 9.4 5.1 19.7 5.1 28.7-.2 0-.4 0-.6.1-.2-.4-.4-.9-.5-1.3-5-22-29.9-43.8-67.6-29.9-50.2 18.6-130.4 9.7-176.9-48-.7-.9-2.4-1.7-1.3-3.2.1-.2 2.1.6 3 1.3 18.1 13.4 38.3 21.9 60.3 26.2 30.5 6.1 54.6 2.9 79.9-5.2zm102.7 117.5c-32.4.2-33.8 50.1-103.6 64.4-18.2 3.7-38.7 4.6-44.9 4.2v-.4c2.8-1.5 14.7-2.6 29.7-16.6 7.9-7.3 15.3-15.1 22.8-22.9 19.5-20.2 41.4-42.2 81.9-39 23.1 1.8 29.3 8.2 36.1 12.7.3.2.4.5.7.9-.5 0-.7.1-.9 0-7-2.7-14.3-3.3-21.8-3.3zm-12.3-24.1c-.1.2-.1.4-.2.6-28.9-4.4-48-7.9-68.5 4-17 9.9-31.4 20.5-62 24.4-27.1 3.4-45.1 2.4-66.1-8-.3-.2-.6-.4-1-.6 0-.2.1-.3.1-.5 24.9 3.8 36.4 5.1 55.5-5.8 22.3-12.9 40.1-26.6 71.3-31 29.6-4.1 51.3 2.5 70.9 16.9zM268.6 97.3c-.6-.6-1.1-1.2-2.1-2.3 7.6 0 29.7-1.2 53.4 8.4 19.7 8 32.2 21 50.2 32.9 11.1 7.3 23.4 9.3 36.4 8.1 4.3-.4 8.5-1.2 12.8-1.7.4-.1.9 0 1.5.3-.6.4-1.2.9-1.8 1.2-8.1 4-16.7 6.3-25.6 7.1-26.1 2.6-50.3-3.7-73.4-15.4-19.3-9.9-36.4-22.9-51.4-38.6zM640 335.7c-3.5 3.1-22.7 11.6-42.7 5.3-12.3-3.9-19.5-14.9-31.6-24.1-10-7.6-20.9-7.9-28.1-8.4.6-.8.9-1.2 1.2-1.4 14.8-9.2 30.5-12.2 47.3-6.5 12.5 4.2 19.2 13.5 30.4 24.2 10.8 10.4 21 9.9 23.1 10.5.1-.1.2 0 .4.4zm-212.5 137c2.2 1.2 1.6 1.5 1.5 2-18.5-1.4-33.9-7.6-46.8-22.2-21.8-24.7-41.7-27.9-48.6-29.7.5-.2.8-.4 1.1-.4 13.1.1 26.1.7 38.9 3.9 25.3 6.4 35 25.4 41.6 35.3 3.2 4.8 7.3 8.3 12.3 11.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhoenixSquadron.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhoenixSquadron.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhoenixSquadron.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhoenixSquadron.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhoenixSquadron.js new file mode 100644 index 0000000000..3c001bc01b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhoenixSquadron.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'phoenix-squadron', icon: [513, 512, [], "f511", "M96.24 62.81C142.91 26.57 202.15 6.57 261.28 8.08c29.67-.38 59.29 5.38 87.17 15.37-24.2-4.64-49.18-6.35-73.6-2.45-43 5.35-83.26 27.23-112.16 59.35 5.69-.99 10.81-3.68 16.07-5.88 18.19-7.89 37.6-13.29 57.4-14.87 19.8-2.14 39.75-.43 59.45 1.93-14.46 2.79-29.2 4.58-43.11 9.61-34.53 11.11-65.46 33.26-86.55 62.82-13.84 19.77-23.7 42.99-24.74 67.33-.35 16.54 5.23 34.91 19.89 44.17 11.13 6.66 24.85 9.39 37.63 6.76 15.49-2.47 30.16-8.67 43.73-16.38 11.55-6.84 22.73-14.59 32.05-24.32 3.8-3.23 2.54-8.48 2.63-12.83-2.13-.34-4.4-1.11-6.32.3a203.975 203.975 0 0 1-35.93 15.42c-20.07 6.19-42.28 8.48-62.28.78 12.83 1.73 26.14.31 37.85-5.46 20.29-9.75 36.92-25.27 54.6-38.88 27.84-21.29 57.64-40.11 89.17-55.47 25.78-12.01 53.09-22.85 81.81-24.2-15.68 13.76-32.25 26.6-46.92 41.51-14.55 14.04-27.54 29.58-40.23 45.31-3.53 4.61-8.98 6.96-13.62 10.19-22.24 15.03-40.6 35.96-52.04 60.28-9.36 19.74-14.55 41.97-11.81 63.84 1.95 13.73 8.74 27.67 20.96 35.01 12.94 7.99 29.14 8.09 43.61 5.11 32.9-7.47 61.61-28.97 81.28-56 20.5-27.6 30.61-62.38 29.25-96.64-.52-7.52-1.58-15-1.67-22.55 8.02 19.54 14.87 39.83 16.7 61.01 2.01 14.32.75 28.84-1.62 43.02-1.92 11.02-5.69 21.58-7.81 32.53 20.36-22.73 34.17-51.24 39.46-81.31 5.72-35.37.58-72.36-14.25-104.95 20.84 32.12 32.43 69.79 35.81 107.8.5 12.77.5 25.58 0 38.34-2.91 34.26-12.97 67.95-29.76 98-26.2 47.48-68.2 85.89-117.54 108.32-78.52 36.34-175.2 31.41-248.72-14.72-38.84-23.78-71.06-58.32-91.68-98.96C10.72 337.43 2.04 305.5 0 273.13V241.7c3.94-69.97 40.99-136.32 96.24-178.89m222.65 80.57c5.51-.8 10.82-2.57 16.02-4.5 4.99-1.77 9.27-5.95 10.35-11.25-8.91 5-17.95 9.95-26.37 15.75z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhp.js new file mode 100644 index 0000000000..d9c4212baa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPhp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'php', icon: [640, 512, [], "f457", "M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiper.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiper.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiper.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiper.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiper.js new file mode 100644 index 0000000000..88bbe7f085 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiper.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'pied-piper', icon: [448, 512, [], "f2ae", "M32 419L0 479.2l.8-328C.8 85.3 54 32 120 32h327.2c-93 28.9-189.9 94.2-253.9 168.6C122.7 282 82.6 338 32 419M448 32S305.2 98.8 261.6 199.1c-23.2 53.6-28.9 118.1-71 158.6-28.9 27.8-69.8 38.2-105.3 56.3-23.2 12-66.4 40.5-84.9 66h328.4c66 0 119.3-53.3 119.3-119.2-.1 0-.1-328.8-.1-328.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiperAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiperAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiperAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiperAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiperAlt.js new file mode 100644 index 0000000000..e7719490cb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiperAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'pied-piper-alt', icon: [576, 512, [], "f1a8", "M242 187c6.3-11.8 13.2-17 25.9-21.8 27.3-10.3 40.2-30.5 58.9-51.1 11.9 8.4 12 24.6 31.6 23v21.8l6.3.3c37.4-14.4 74.7-30.2 106.6-54.6 48.3-36.8 52.9-50 81.3-100l2-2.6c-.6 14.1-6.3 27.3-12.4 39.9-30.5 63.8-78.7 100.3-146.8 116.7-12.4 2.9-26.4 3.2-37.6 8.9 1.4 9.8 13.2 18.1 13.2 23 0 3.4-5.5 7.2-7.5 8.6-11.2-12.9-16.1-19.3-22.7-22.1-7.6-3.5-63.9-6.4-98.8 10zm137.9 256.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9L244 246zm-12.6 31.8l24.1 61.2 21-13.8-31.3-50.9-13.8 3.5zM555.5 0l-.6 1.1-.3.9.6-.6.3-1.4zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46v27.3l11.8-3.4-2.9-23.8h-8.9zm76.1 2.9c0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3l2 12.4c9-1.5 58.4-6.6 58.4-14.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiperHat.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiperHat.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiperHat.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiperHat.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiperHat.js new file mode 100644 index 0000000000..d9f0b30312 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiperHat.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'pied-piper-hat', icon: [640, 512, [], "f4e5", "M640 24.9c-80.8 53.6-89.4 92.5-96.4 104.4-6.7 12.2-11.7 60.3-23.3 83.6-11.7 23.6-54.2 42.2-66.1 50-11.7 7.8-28.3 38.1-41.9 64.2-108.1-4.4-167.4 38.8-259.2 93.6 29.4-9.7 43.3-16.7 43.3-16.7 94.2-36 139.3-68.3 281.1-49.2 1.1 0 1.9.6 2.8.8 3.9 2.2 5.3 6.9 3.1 10.8l-53.9 95.8c-2.5 4.7-7.8 7.2-13.1 6.1-126.8-23.8-226.9 17.3-318.9 18.6C24.1 488 0 453.4 0 451.8c0-1.1.6-1.7 1.7-1.7 0 0 38.3 0 103.1-15.3C178.4 294.5 244 245.4 315.4 245.4c0 0 71.7 0 90.6 61.9 22.8-39.7 28.3-49.2 28.3-49.2 5.3-9.4 35-77.2 86.4-141.4 51.5-64 90.4-79.9 119.3-91.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiperPp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiperPp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiperPp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiperPp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiperPp.js new file mode 100644 index 0000000000..5b58a44ef1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPiedPiperPp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'pied-piper-pp', icon: [448, 512, [], "f1a7", "M205.3 174.6c0 21.1-14.2 38.1-31.7 38.1-7.1 0-12.8-1.2-17.2-3.7v-68c4.4-2.7 10.1-4.2 17.2-4.2 17.5 0 31.7 16.9 31.7 37.8zm52.6 67c-7.1 0-12.8 1.5-17.2 4.2v68c4.4 2.5 10.1 3.7 17.2 3.7 17.4 0 31.7-16.9 31.7-37.8 0-21.1-14.3-38.1-31.7-38.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM185 255.1c41 0 74.2-35.6 74.2-79.6 0-44-33.2-79.6-74.2-79.6-12 0-24.1 3.2-34.6 8.8h-45.7V311l51.8-10.1v-50.6c8.6 3.1 18.1 4.8 28.5 4.8zm158.4 25.3c0-44-33.2-79.6-73.9-79.6-3.2 0-6.4.2-9.6.7-3.7 12.5-10.1 23.8-19.2 33.4-13.8 15-32.2 23.8-51.8 24.8V416l51.8-10.1v-50.6c8.6 3.2 18.2 4.7 28.7 4.7 40.8 0 74-35.6 74-79.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPinterest.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPinterest.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPinterest.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPinterest.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPinterest.js new file mode 100644 index 0000000000..b31b2ecd79 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPinterest.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'pinterest', icon: [496, 512, [], "f0d2", "M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3.8-3.4 5-20.3 6.9-28.1.6-2.5.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPinterestP.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPinterestP.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPinterestP.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPinterestP.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPinterestP.js new file mode 100644 index 0000000000..e439d0bac2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPinterestP.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'pinterest-p', icon: [384, 512, [], "f231", "M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPinterestSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPinterestSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPinterestSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPinterestSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPinterestSquare.js new file mode 100644 index 0000000000..84bee12074 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPinterestSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'pinterest-square', icon: [448, 512, [], "f0d3", "M448 80v352c0 26.5-21.5 48-48 48H154.4c9.8-16.4 22.4-40 27.4-59.3 3-11.5 15.3-58.4 15.3-58.4 8 15.3 31.4 28.2 56.3 28.2 74.1 0 127.4-68.1 127.4-152.7 0-81.1-66.2-141.8-151.4-141.8-106 0-162.2 71.1-162.2 148.6 0 36 19.2 80.8 49.8 95.1 4.7 2.2 7.1 1.2 8.2-3.3.8-3.4 5-20.1 6.8-27.8.6-2.5.3-4.6-1.7-7-10.1-12.3-18.3-34.9-18.3-56 0-54.2 41-106.6 110.9-106.6 60.3 0 102.6 41.1 102.6 99.9 0 66.4-33.5 112.4-77.2 112.4-24.1 0-42.1-19.9-36.4-44.4 6.9-29.2 20.3-60.7 20.3-81.8 0-53-75.5-45.7-75.5 25 0 21.7 7.3 36.5 7.3 36.5-31.4 132.8-36.1 134.5-29.6 192.6l2.2.8H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPlaystation.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPlaystation.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPlaystation.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPlaystation.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPlaystation.js new file mode 100644 index 0000000000..0baa6f9251 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPlaystation.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'playstation', icon: [576, 512, [], "f3df", "M570.9 372.3c-11.3 14.2-38.8 24.3-38.8 24.3L327 470.2v-54.3l150.9-53.8c17.1-6.1 19.8-14.8 5.8-19.4-13.9-4.6-39.1-3.3-56.2 2.9L327 381.1v-56.4c23.2-7.8 47.1-13.6 75.7-16.8 40.9-4.5 90.9.6 130.2 15.5 44.2 14 49.2 34.7 38 48.9zm-224.4-92.5v-139c0-16.3-3-31.3-18.3-35.6-11.7-3.8-19 7.1-19 23.4v347.9l-93.8-29.8V32c39.9 7.4 98 24.9 129.2 35.4C424.1 94.7 451 128.7 451 205.2c0 74.5-46 102.8-104.5 74.6zM43.2 410.2c-45.4-12.8-53-39.5-32.3-54.8 19.1-14.2 51.7-24.9 51.7-24.9l134.5-47.8v54.5l-96.8 34.6c-17.1 6.1-19.7 14.8-5.8 19.4 13.9 4.6 39.1 3.3 56.2-2.9l46.4-16.9v48.8c-51.6 9.3-101.4 7.3-153.9-10z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faProductHunt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faProductHunt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faProductHunt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faProductHunt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faProductHunt.js new file mode 100644 index 0000000000..da318fa405 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faProductHunt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'product-hunt', icon: [512, 512, [], "f288", "M326.3 218.8c0 20.5-16.7 37.2-37.2 37.2h-70.3v-74.4h70.3c20.5 0 37.2 16.7 37.2 37.2zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-128.1-37.2c0-47.9-38.9-86.8-86.8-86.8H169.2v248h49.6v-74.4h70.3c47.9 0 86.8-38.9 86.8-86.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPushed.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPushed.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPushed.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPushed.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPushed.js new file mode 100644 index 0000000000..08579f6ade --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPushed.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'pushed', icon: [432, 512, [], "f3e1", "M407 111.9l-98.5-9 14-33.4c10.4-23.5-10.8-40.4-28.7-37L22.5 76.9c-15.1 2.7-26 18.3-21.4 36.6l105.1 348.3c6.5 21.3 36.7 24.2 47.7 7l35.3-80.8 235.2-231.3c16.4-16.8 4.3-42.9-17.4-44.8zM297.6 53.6c5.1-.7 7.5 2.5 5.2 7.4L286 100.9 108.6 84.6l189-31zM22.7 107.9c-3.1-5.1 1-10 6.1-9.1l248.7 22.7-96.9 230.7L22.7 107.9zM136 456.4c-2.6 4-7.9 3.1-9.4-1.2L43.5 179.7l127.7 197.6c-7 15-35.2 79.1-35.2 79.1zm272.8-314.5L210.1 337.3l89.7-213.7 106.4 9.7c4 1.1 5.7 5.3 2.6 8.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPython.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPython.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPython.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPython.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPython.js new file mode 100644 index 0000000000..72f5f57bac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faPython.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'python', icon: [448, 512, [], "f3e2", "M167.8 36.4c-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1zm-6.7 28.4c11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4zm185.2 81.4v47.5c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6-7.7-30.9-22.3-54.2-53.4-54.2h-40.1zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faQq.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faQq.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faQq.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faQq.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faQq.js new file mode 100644 index 0000000000..f9d8627807 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faQq.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'qq', icon: [448, 512, [], "f1d6", "M433.754 420.445c-11.526 1.393-44.86-52.741-44.86-52.741 0 31.345-16.136 72.247-51.051 101.786 16.842 5.192 54.843 19.167 45.803 34.421-7.316 12.343-125.51 7.881-159.632 4.037-34.122 3.844-152.316 8.306-159.632-4.037-9.045-15.25 28.918-29.214 45.783-34.415-34.92-29.539-51.059-70.445-51.059-101.792 0 0-33.334 54.134-44.859 52.741-5.37-.65-12.424-29.644 9.347-99.704 10.261-33.024 21.995-60.478 40.144-105.779C60.683 98.063 108.982.006 224 0c113.737.006 163.156 96.133 160.264 214.963 18.118 45.223 29.912 72.85 40.144 105.778 21.768 70.06 14.716 99.053 9.346 99.704z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faQuinscape.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faQuinscape.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faQuinscape.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faQuinscape.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faQuinscape.js new file mode 100644 index 0000000000..10b2d3f039 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faQuinscape.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'quinscape', icon: [489, 512, [], "f459", "M301.9 474.6h-1.3c-87.3 0-158.1-70.8-158.1-158.1s70.8-158.1 158.1-158.1c94.9 0 168.2 83.1 157 176.6 4 5.1 8.2 9.6 11.2 15.3 13.4-30.3 20.3-62.4 20.3-97.7C489.1 117.5 379.6 8 244.5 8 109.5 8 0 117.5 0 252.6s109.5 244.6 244.5 244.6c24.8 0 47.8-3.2 70.4-10.1-5.2-3.5-9-8.2-13.4-12.6l.4.1zm-21.2-69.8c0-54.8 44.4-99.2 99.2-99.2 54.8 0 99.2 44.4 99.2 99.2 0 54.8-44.4 99.2-99.2 99.2-54.8 0-99.2-44.4-99.2-99.2"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faQuora.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faQuora.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faQuora.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faQuora.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faQuora.js new file mode 100644 index 0000000000..3aca0f3491 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faQuora.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'quora', icon: [448, 512, [], "f2c4", "M440.5 386.7h-29.3c-1.5 13.5-10.5 30.8-33 30.8-20.5 0-35.3-14.2-49.5-35.8 44.2-34.2 74.7-87.5 74.7-153C403.5 111.2 306.8 32 205 32 105.3 32 7.3 111.7 7.3 228.7c0 134.1 131.3 221.6 249 189C276 451.3 302 480 351.5 480c81.8 0 90.8-75.3 89-93.3zM297 329.2C277.5 300 253.3 277 205.5 277c-30.5 0-54.3 10-69 22.8l12.2 24.3c6.2-3 13-4 19.8-4 35.5 0 53.7 30.8 69.2 61.3-10 3-20.7 4.2-32.7 4.2-75 0-107.5-53-107.5-156.7C97.5 124.5 130 71 205 71c76.2 0 108.7 53.5 108.7 157.7.1 41.8-5.4 75.6-16.7 100.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faR.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faR.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faR.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faR.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faR.js new file mode 100644 index 0000000000..9c7c255479 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faR.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'r', icon: [581, 512, [], "f4f7", "M581 226.6C581 119.1 450.9 32 290.5 32S0 119.1 0 226.6C0 322.4 103.3 402 239.4 418.1V480h99.1v-61.5c24.3-2.7 47.6-7.4 69.4-13.9L448 480h112l-67.4-113.7c54.5-35.4 88.4-84.9 88.4-139.7zm-466.8 14.5c0-73.5 98.9-133 220.8-133s211.9 40.7 211.9 133c0 50.1-26.5 85-70.3 106.4-2.4-1.6-4.7-2.9-6.4-3.7-10.2-5.2-27.8-10.5-27.8-10.5s86.6-6.4 86.6-92.7-90.6-87.9-90.6-87.9h-199V361c-74.1-21.5-125.2-67.1-125.2-119.9zm225.1 38.3v-55.6c57.8 0 87.8-6.8 87.8 27.3 0 36.5-38.2 28.3-87.8 28.3zm-.9 72.5H365c10.8 0 18.9 11.7 24 19.2-16.1 1.9-33 2.8-50.6 2.9v-22.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRProject.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRProject.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRProject.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRProject.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRProject.js new file mode 100644 index 0000000000..6b9541773b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRProject.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'r-project', icon: [581, 512, [], "f4f7", "M581 226.6C581 119.1 450.9 32 290.5 32S0 119.1 0 226.6C0 322.4 103.3 402 239.4 418.1V480h99.1v-61.5c24.3-2.7 47.6-7.4 69.4-13.9L448 480h112l-67.4-113.7c54.5-35.4 88.4-84.9 88.4-139.7zm-466.8 14.5c0-73.5 98.9-133 220.8-133s211.9 40.7 211.9 133c0 50.1-26.5 85-70.3 106.4-2.4-1.6-4.7-2.9-6.4-3.7-10.2-5.2-27.8-10.5-27.8-10.5s86.6-6.4 86.6-92.7-90.6-87.9-90.6-87.9h-199V361c-74.1-21.5-125.2-67.1-125.2-119.9zm225.1 38.3v-55.6c57.8 0 87.8-6.8 87.8 27.3 0 36.5-38.2 28.3-87.8 28.3zm-.9 72.5H365c10.8 0 18.9 11.7 24 19.2-16.1 1.9-33 2.8-50.6 2.9v-22.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRavelry.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRavelry.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRavelry.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRavelry.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRavelry.js new file mode 100644 index 0000000000..c9bae4696d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRavelry.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'ravelry', icon: [512, 512, [], "f2d9", "M407.4 61.5C331.6 22.1 257.8 31 182.9 66c-11.3 5.2-15.5 10.6-19.9 19-10.3 19.2-16.2 37.4-19.9 52.7-21.2 25.6-36.4 56.1-43.3 89.9-10.6 18-20.9 41.4-23.1 71.4 0 0-.7 7.6-.5 7.9-35.3-4.6-76.2-27-76.2-27 9.1 14.5 61.3 32.3 76.3 37.9 0 0 1.7 98 64.5 131.2-11.3-17.2-13.3-20.2-13.3-20.2S94.8 369 100.4 324.7c.7 0 1.5.2 2.2.2 23.9 87.4 103.2 151.4 196.9 151.4 6.2 0 12.1-.2 18-.7 14 1.5 27.6.5 40.1-3.9 6.9-2.2 13.8-6.4 20.2-10.8 70.2-39.1 100.9-82 123.1-147.7 5.4-16 8.1-35.5 9.8-52.2 8.7-82.3-30.6-161.6-103.3-199.5zM138.8 163.2s-1.2 12.3-.7 19.7c-3.4 2.5-10.1 8.1-18.2 16.7 5.2-12.8 11.3-25.1 18.9-36.4zm-31.2 121.9c4.4-17.2 13.3-39.1 29.8-55.1 0 0 1.7 48 15.8 90.1l-41.4-6.9c-2.2-9.2-3.5-18.5-4.2-28.1zm7.9 42.8c14.8 3.2 34 7.6 43.1 9.1 27.3 76.8 108.3 124.3 108.3 124.3 1 .5 1.7.7 2.7 1-73.1-11.6-132.7-64.7-154.1-134.4zM386 444.1c-14.5 4.7-36.2 8.4-64.7 3.7 0 0-91.1-23.1-127.5-107.8 38.2.7 52.4-.2 78-3.9 39.4-5.7 79-16.2 115-33 11.8-5.4 11.1-19.4 9.6-29.8-2-12.8-11.1-12.1-21.4-4.7 0 0-82 58.6-189.8 53.7-18.7-32-26.8-110.8-26.8-110.8 41.4-35.2 83.2-59.6 168.4-52.4.2-6.4 3-27.1-20.4-28.1 0 0-93.5-11.1-146 33.5 2.5-16.5 5.9-29.3 11.1-39.4 34.2-30.8 79-49.5 128.3-49.5 106.4 0 193 87.1 193 194.5-.2 76-43.8 142-106.8 174z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReact.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReact.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReact.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReact.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReact.js new file mode 100644 index 0000000000..e84eb475eb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReact.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'react', icon: [512, 512, [], "f41b", "M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zm-130 189.1c4.6 8.8 9.3 17.5 14.3 26.1 5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5zm0-50.6c-6.3-14.9-11.6-29.5-16-43.6 14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26zm11.4 25.3c6.6-13.8 13.8-27.3 21.4-40.6 7.6-13.3 15.8-26.2 24.4-38.9 15-1.1 30.3-1.7 45.9-1.7 15.6 0 31 .6 45.9 1.7 8.5 12.6 16.6 25.5 24.3 38.7 7.7 13.2 14.9 26.7 21.7 40.4-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6-15.7 0-30.9-.5-45.6-1.4-8.7-12.7-16.9-25.7-24.6-39-7.7-13.3-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zM256 210.2c25.3 0 45.8 20.5 45.8 45.8 0 25.3-20.5 45.8-45.8 45.8-25.3 0-45.8-20.5-45.8-45.8 0-25.3 20.5-45.8 45.8-45.8"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReadme.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReadme.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReadme.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReadme.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReadme.js new file mode 100644 index 0000000000..59d8e81a03 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReadme.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'readme', icon: [576, 512, [], "f4d5", "M528.3 46.5H388.5c-48.1 0-89.9 33.3-100.4 80.3-10.6-47-52.3-80.3-100.4-80.3H48c-26.5 0-48 21.5-48 48v245.8c0 26.5 21.5 48 48 48h89.7c102.2 0 132.7 24.4 147.3 75 .7 2.8 5.2 2.8 6 0 14.7-50.6 45.2-75 147.3-75H528c26.5 0 48-21.5 48-48V94.6c0-26.4-21.3-47.9-47.7-48.1zM242 311.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5V289c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V251zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm259.3 121.7c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5V228c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.8c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V190z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRebel.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRebel.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRebel.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRebel.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRebel.js new file mode 100644 index 0000000000..4e63442ca6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRebel.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'rebel', icon: [512, 512, [], "f1d0", "M256.5 504C117.2 504 9 387.8 13.2 249.9 16 170.7 56.4 97.7 129.7 49.5c.3 0 1.9-.6 1.1.8-5.8 5.5-111.3 129.8-14.1 226.4 49.8 49.5 90 2.5 90 2.5 38.5-50.1-.6-125.9-.6-125.9-10-24.9-45.7-40.1-45.7-40.1l28.8-31.8c24.4 10.5 43.2 38.7 43.2 38.7.8-29.6-21.9-61.4-21.9-61.4L255.1 8l44.3 50.1c-20.5 28.8-21.9 62.6-21.9 62.6 13.8-23 43.5-39.3 43.5-39.3l28.5 31.8c-27.4 8.9-45.4 39.9-45.4 39.9-15.8 28.5-27.1 89.4.6 127.3 32.4 44.6 87.7-2.8 87.7-2.8 102.7-91.9-10.5-225-10.5-225-6.1-5.5.8-2.8.8-2.8 50.1 36.5 114.6 84.4 116.2 204.8C500.9 400.2 399 504 256.5 504z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRedRiver.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRedRiver.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRedRiver.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRedRiver.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRedRiver.js new file mode 100644 index 0000000000..5000311695 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRedRiver.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'red-river', icon: [448, 512, [], "f3e3", "M353.2 32H94.8C42.4 32 0 74.4 0 126.8v258.4C0 437.6 42.4 480 94.8 480h258.4c52.4 0 94.8-42.4 94.8-94.8V126.8c0-52.4-42.4-94.8-94.8-94.8zM144.9 200.9v56.3c0 27-21.9 48.9-48.9 48.9V151.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9h-56.3c-12.3-.6-24.6 11.6-24 24zm176.3 72h-56.3c-12.3-.6-24.6 11.6-24 24v56.3c0 27-21.9 48.9-48.9 48.9V247.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReddit.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReddit.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReddit.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReddit.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReddit.js new file mode 100644 index 0000000000..51fe16ce25 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReddit.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'reddit', icon: [512, 512, [], "f1a1", "M201.5 305.5c-13.8 0-24.9-11.1-24.9-24.6 0-13.8 11.1-24.9 24.9-24.9 13.6 0 24.6 11.1 24.6 24.9 0 13.6-11.1 24.6-24.6 24.6zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-132.3-41.2c-9.4 0-17.7 3.9-23.8 10-22.4-15.5-52.6-25.5-86.1-26.6l17.4-78.3 55.4 12.5c0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.3 24.9-24.9s-11.1-24.9-24.9-24.9c-9.7 0-18 5.8-22.1 13.8l-61.2-13.6c-3-.8-6.1 1.4-6.9 4.4l-19.1 86.4c-33.2 1.4-63.1 11.3-85.5 26.8-6.1-6.4-14.7-10.2-24.1-10.2-34.9 0-46.3 46.9-14.4 62.8-1.1 5-1.7 10.2-1.7 15.5 0 52.6 59.2 95.2 132 95.2 73.1 0 132.3-42.6 132.3-95.2 0-5.3-.6-10.8-1.9-15.8 31.3-16 19.8-62.5-14.9-62.5zM302.8 331c-18.2 18.2-76.1 17.9-93.6 0-2.2-2.2-6.1-2.2-8.3 0-2.5 2.5-2.5 6.4 0 8.6 22.8 22.8 87.3 22.8 110.2 0 2.5-2.2 2.5-6.1 0-8.6-2.2-2.2-6.1-2.2-8.3 0zm7.7-75c-13.6 0-24.6 11.1-24.6 24.9 0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.1 24.9-24.6 0-13.8-11-24.9-24.9-24.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRedditAlien.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRedditAlien.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRedditAlien.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRedditAlien.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRedditAlien.js new file mode 100644 index 0000000000..01c0c36ac4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRedditAlien.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'reddit-alien', icon: [512, 512, [], "f281", "M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2.1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRedditSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRedditSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRedditSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRedditSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRedditSquare.js new file mode 100644 index 0000000000..44d5090c69 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRedditSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'reddit-square', icon: [448, 512, [], "f1a2", "M283.2 345.5c2.7 2.7 2.7 6.8 0 9.2-24.5 24.5-93.8 24.6-118.4 0-2.7-2.4-2.7-6.5 0-9.2 2.4-2.4 6.5-2.4 8.9 0 18.7 19.2 81 19.6 100.5 0 2.4-2.3 6.6-2.3 9 0zm-91.3-53.8c0-14.9-11.9-26.8-26.5-26.8-14.9 0-26.8 11.9-26.8 26.8 0 14.6 11.9 26.5 26.8 26.5 14.6 0 26.5-11.9 26.5-26.5zm90.7-26.8c-14.6 0-26.5 11.9-26.5 26.8 0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-11.9 26.8-26.5 0-14.9-11.9-26.8-26.8-26.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-99.7 140.6c-10.1 0-19 4.2-25.6 10.7-24.1-16.7-56.5-27.4-92.5-28.6l18.7-84.2 59.5 13.4c0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-12.2 26.8-26.8 0-14.6-11.9-26.8-26.8-26.8-10.4 0-19.3 6.2-23.8 14.9l-65.7-14.6c-3.3-.9-6.5 1.5-7.4 4.8l-20.5 92.8c-35.7 1.5-67.8 12.2-91.9 28.9-6.5-6.8-15.8-11-25.9-11-37.5 0-49.8 50.4-15.5 67.5-1.2 5.4-1.8 11-1.8 16.7 0 56.5 63.7 102.3 141.9 102.3 78.5 0 142.2-45.8 142.2-102.3 0-5.7-.6-11.6-2.1-17 33.6-17.2 21.2-67.2-16.1-67.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRendact.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRendact.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRendact.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRendact.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRendact.js new file mode 100644 index 0000000000..e2c2d44c15 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRendact.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'rendact', icon: [496, 512, [], "f3e4", "M248 8C111 8 0 119 0 256s111 248 248 248c18.6 0 36.7-2.1 54.1-5.9-5.6-7.4-10.8-14.4-15.9-21.3-12.4 2.1-25.2 3.3-38.3 3.3C124.3 480 24 379.7 24 256S124.3 32 248 32s224 100.3 224 224c0 71-33 134.2-84.5 175.3-25.9 18.8-39.1 21.4-83.5-44.2-78.7-112.9-48-71.1-73.7-108.3 72.8 8.9 228.5-72 168.6-168.6C314-26.8 15 93.8 59.7 226.4c3.2 9.8 14.4 38.6 45.6 38.6 2 0 2.6-.6 2-1.7-4.4-8.7-20.1-9.8-20.1-37.4 0-40.5 40.5-89.6 100.3-120 66.1-32.3 131.9-30.2 158.2 5.4 27.2 38.3-20.9 119.2-120.4 136.9 7.5-9.4 57-75.2 62.8-84 22.7-34.6 23.6-49 14-59.2-15.5-16.9-29.5-10.3-50.7-11.7-10.8-.9-113.7 181.2-136.4 216.9-5.9 9-21.2 34.1-21.2 50.9 0 21.3 2.8 51.4 20.6 51.4 10.6 0 8-18.7 8-26.6 0-12.9 27.4-49.4 74.8-104.6 20.4 36.1 57.7 114.3 130.2 209.7 98-33.1 168.5-125.8 168.5-235C496 119 385 8 248 8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRenren.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRenren.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRenren.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRenren.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRenren.js new file mode 100644 index 0000000000..e871087035 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRenren.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'renren', icon: [512, 512, [], "f18b", "M214 169.1c0 110.4-61 205.4-147.6 247.4C30 373.2 8 317.7 8 256.6 8 133.9 97.1 32.2 214 12.5v156.6zM255 504c-42.9 0-83.3-11-118.5-30.4C193.7 437.5 239.9 382.9 255 319c15.5 63.9 61.7 118.5 118.8 154.7C338.7 493 298.3 504 255 504zm190.6-87.5C359 374.5 298 279.6 298 169.1V12.5c116.9 19.7 206 121.4 206 244.1 0 61.1-22 116.6-58.4 159.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReplyd.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReplyd.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReplyd.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReplyd.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReplyd.js new file mode 100644 index 0000000000..34f2c1e1d2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faReplyd.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'replyd', icon: [448, 512, [], "f3e6", "M320 480H128C57.6 480 0 422.4 0 352V160C0 89.6 57.6 32 128 32h192c70.4 0 128 57.6 128 128v192c0 70.4-57.6 128-128 128zM193.4 273.2c-6.1-2-11.6-3.1-16.4-3.1-7.2 0-13.5 1.9-18.9 5.6-5.4 3.7-9.6 9-12.8 15.8h-1.1l-4.2-18.3h-28v138.9h36.1v-89.7c1.5-5.4 4.4-9.8 8.7-13.2 4.3-3.4 9.8-5.1 16.2-5.1 4.6 0 9.8 1 15.6 3.1l4.8-34zm115.2 103.4c-3.2 2.4-7.7 4.8-13.7 7.1-6 2.3-12.8 3.5-20.4 3.5-12.2 0-21.1-3-26.5-8.9-5.5-5.9-8.5-14.7-9-26.4h83.3c.9-4.8 1.6-9.4 2.1-13.9.5-4.4.7-8.6.7-12.5 0-10.7-1.6-19.7-4.7-26.9-3.2-7.2-7.3-13-12.5-17.2-5.2-4.3-11.1-7.3-17.8-9.2-6.7-1.8-13.5-2.8-20.6-2.8-21.1 0-37.5 6.1-49.2 18.3s-17.5 30.5-17.5 55c0 22.8 5.2 40.7 15.6 53.7 10.4 13.1 26.8 19.6 49.2 19.6 10.7 0 20.9-1.5 30.4-4.6 9.5-3.1 17.1-6.8 22.6-11.2l-12-23.6zm-21.8-70.3c3.8 5.4 5.3 13.1 4.6 23.1h-51.7c.9-9.4 3.7-17 8.2-22.6 4.5-5.6 11.5-8.5 21-8.5 8.2-.1 14.1 2.6 17.9 8zm79.9 2.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4s2 11.7 6.1 15.6zm0 100.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4 0 6.6 2 11.7 6.1 15.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faResearchgate.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faResearchgate.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faResearchgate.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faResearchgate.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faResearchgate.js new file mode 100644 index 0000000000..b828ec8a2e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faResearchgate.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'researchgate', icon: [448, 512, [], "f4f8", "M0 32v448h448V32H0zm262.2 334.4c-6.6 3-33.2 6-50-14.2-9.2-10.6-25.3-33.3-42.2-63.6-8.9 0-14.7 0-21.4-.6v46.4c0 23.5 6 21.2 25.8 23.9v8.1c-6.9-.3-23.1-.8-35.6-.8-13.1 0-26.1.6-33.6.8v-8.1c15.5-2.9 22-1.3 22-23.9V225c0-22.6-6.4-21-22-23.9V193c25.8 1 53.1-.6 70.9-.6 31.7 0 55.9 14.4 55.9 45.6 0 21.1-16.7 42.2-39.2 47.5 13.6 24.2 30 45.6 42.2 58.9 7.2 7.8 17.2 14.7 27.2 14.7v7.3zm22.9-135c-23.3 0-32.2-15.7-32.2-32.2V167c0-12.2 8.8-30.4 34-30.4s30.4 17.9 30.4 17.9l-10.7 7.2s-5.5-12.5-19.7-12.5c-7.9 0-19.7 7.3-19.7 19.7v26.8c0 13.4 6.6 23.3 17.9 23.3 14.1 0 21.5-10.9 21.5-26.8h-17.9v-10.7h30.4c0 20.5 4.7 49.9-34 49.9zm-116.5 44.7c-9.4 0-13.6-.3-20-.8v-69.7c6.4-.6 15-.6 22.5-.6 23.3 0 37.2 12.2 37.2 34.5 0 21.9-15 36.6-39.7 36.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faResolving.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faResolving.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faResolving.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faResolving.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faResolving.js new file mode 100644 index 0000000000..d81f1b101a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faResolving.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'resolving', icon: [496, 512, [], "f3e7", "M281.2 278.2c46-13.3 49.6-23.5 44-43.4L314 195.5c-6.1-20.9-18.4-28.1-71.1-12.8L54.7 236.8l28.6 98.6 197.9-57.2zM248.5 8C131.4 8 33.2 88.7 7.2 197.5l221.9-63.9c34.8-10.2 54.2-11.7 79.3-8.2 36.3 6.1 52.7 25 61.4 55.2l10.7 37.8c8.2 28.1 1 50.6-23.5 73.6-19.4 17.4-31.2 24.5-61.4 33.2L203 351.8l220.4 27.1 9.7 34.2-48.1 13.3-286.8-37.3 23 80.2c36.8 22 80.3 34.7 126.3 34.7 137 0 248.5-111.4 248.5-248.3C497 119.4 385.5 8 248.5 8zM38.3 388.6L0 256.8c0 48.5 14.3 93.4 38.3 131.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRocketchat.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRocketchat.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRocketchat.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRocketchat.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRocketchat.js new file mode 100644 index 0000000000..f9e3423cd0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRocketchat.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'rocketchat', icon: [448, 512, [], "f3e8", "M448 256.2c0-87.2-99.6-153.3-219.8-153.3-18.8 0-37.3 1.6-55.3 4.8-11.1-10.5-24.2-20-38-27.4C61.2 44.2 0 79.4 0 79.4s56.9 47.1 47.6 88.3c-52.3 52.3-52.5 124.1 0 176.6C56.9 385.6 0 432.6 0 432.6s61.2 35.2 134.9-.8c13.8-7.5 26.9-16.9 38-27.4 18 3.2 36.5 4.8 55.3 4.8 120.3-.1 219.8-65.8 219.8-153zm-219.7 124c-23.7 0-46.3-2.8-67.3-7.8-21.3 25.8-68.1 61.7-113.6 50.1 14.8-16 36.7-43.1 32-87.6-27.3-21.4-43.6-48.7-43.6-78.5 0-68.4 86.2-123.9 192.5-123.9S420.8 188 420.8 256.4c0 68.3-86.2 123.8-192.5 123.8zm25.6-123.9c0 14.2-11.5 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.5-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm88.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm-177.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.2 0 25.6 11.6 25.6 25.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRockrms.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRockrms.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRockrms.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRockrms.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRockrms.js new file mode 100644 index 0000000000..fc3a07c402 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faRockrms.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'rockrms', icon: [496, 512, [], "f3e9", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm157.4 419.5h-90l-112-131.3c-17.9-20.4-3.9-56.1 26.6-56.1h75.3l-84.6-99.3-84.3 98.9h-90L193.5 67.2c14.4-18.4 41.3-17.3 54.5 0l157.7 185.1c19 22.8 2 57.2-27.6 56.1-.6 0-74.2.2-74.2.2l101.5 118.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSafari.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSafari.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSafari.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSafari.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSafari.js new file mode 100644 index 0000000000..b4e94ffb9c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSafari.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'safari', icon: [512, 512, [], "f267", "M236.9 256.8c0-9.1 6.6-17.7 16.3-17.7 8.9 0 17.4 6.4 17.4 16.1 0 9.1-6.4 17.7-16.1 17.7-9 0-17.6-6.7-17.6-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-26.6 0c0-122.3-99.1-221.4-221.4-221.4S34.6 133.7 34.6 256 133.7 477.4 256 477.4 477.4 378.3 477.4 256zm-72.5 96.6c0 3.6 13 10.2 16.3 12.2-27.4 41.5-69.8 71.4-117.9 83.3l-4.4-18.5c-.3-2.5-1.9-2.8-4.2-2.8-1.9 0-3 2.8-2.8 4.2l4.4 18.8c-13.3 2.8-26.8 4.2-40.4 4.2-36.3 0-72-10.2-103-29.1 1.7-2.8 12.2-18 12.2-20.2 0-1.9-1.7-3.6-3.6-3.6-3.9 0-12.2 16.6-14.7 19.9-41.8-27.7-72-70.6-83.6-119.6l19.1-4.2c2.2-.6 2.8-2.2 2.8-4.2 0-1.9-2.8-3-4.4-2.8L62 294.5c-2.5-12.7-3.9-25.5-3.9-38.5 0-37.1 10.5-73.6 30.2-104.9 2.8 1.7 16.1 10.8 18.3 10.8 1.9 0 3.6-1.4 3.6-3.3 0-3.9-14.7-11.3-18-13.6 28.2-41.2 71.1-70.9 119.8-81.9l4.2 18.5c.6 2.2 2.2 2.8 4.2 2.8s3-2.8 2.8-4.4L219 61.7c12.2-2.2 24.6-3.6 37.1-3.6 37.1 0 73.3 10.5 104.9 30.2-1.9 2.8-10.8 15.8-10.8 18 0 1.9 1.4 3.6 3.3 3.6 3.9 0 11.3-14.4 13.3-17.7 41 27.7 70.3 70 81.7 118.2l-15.5 3.3c-2.5.6-2.8 2.2-2.8 4.4 0 1.9 2.8 3 4.2 2.8l15.8-3.6c2.5 12.7 3.9 25.7 3.9 38.7 0 36.3-10 72-28.8 102.7-2.8-1.4-14.4-9.7-16.6-9.7-2.1 0-3.8 1.7-3.8 3.6zm-33.2-242.2c-13 12.2-134.2 123.7-137.6 129.5l-96.6 160.5c12.7-11.9 134.2-124 137.3-129.3l96.9-160.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSass.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSass.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSass.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSass.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSass.js new file mode 100644 index 0000000000..6b7f09b359 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSass.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'sass', icon: [640, 512, [], "f41e", "M551.1 291.9c-22.4.1-41.8 5.5-58 13.5-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-3.8 11.1-5.3 19.1-2.3 11.7-25.8 53.5-39.1 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-2.7 11.4-5.3 19.1-2.6 7.7-33.9 77.3-42.1 95.4-4.2 9.2-7.8 16.6-10.4 21.6s-.2.3-.4.9c-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4.3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2-.8 0-1.4 2-1.4 2s10.1-42.4-19.4-42.4c-18.4 0-44 20.2-56.6 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.8-38.2-101.9-65.2-99.1-116.5 1-18.7 7.5-67.8 127.1-127.4 98-48.8 176.4-35.4 189.9-5.6 19.4 42.5-41.9 121.6-143.7 133-38.8 4.3-59.2-10.7-64.3-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.8 28.9 18.7 6.1 64.2 9.5 119.2-11.8C367 196.5 415.1 130.2 401 74.7 386.6 18.3 293.1-.2 204.6 31.2 151.9 49.9 94.9 79.3 53.9 117.6 5.2 163.2-2.6 202.9.6 219.5c11.4 58.9 92.6 97.3 125.1 125.7-1.6.9-3.1 1.7-4.5 2.5-16.3 8.1-78.2 40.5-93.7 74.7-17.5 38.8 2.9 66.6 16.3 70.4 41.8 11.6 84.6-9.3 107.6-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.3-4.9 16.4-9.4 23.5-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.5 5 15.4 5 13.8 0 20-11.4 26.9-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.4 0 18.8-12.1 23-18.3v.1s.2-.4.7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.6-46 16.2-31.8 31.7-71.5 31.7-71.5s1.4 9.7 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2s0 .1.1.2c-3 4-6.4 8.3-9.9 12.5-12.8 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.7 2.5 11.5-.8 19.6-3.6 23.5-5.4 6.2-2.2 13.4-5.7 20.2-10.6 12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5 19.8-28.9 35.1-60.6 35.1-60.6s1.4 9.7 6.2 25.8c2.4 8.1 7.1 17 11.4 25.7-18.6 15.1-30.1 32.6-34.1 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5 6.5-2.2 14.3-5.7 21.6-11.1 12.5-9.2 24.6-22.1 23.8-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.1-10.2 62.1-7.2 55.7 6.5 66.6 41.3 64.5 55.8-2.1 14.6-13.8 22.6-17.7 25-3.9 2.4-5.1 3.3-4.8 5.1.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.2-11.8 30.3-38.7 1.6-34-31.1-71.4-89-71.1zM121.8 436.6c-18.4 20.1-44.2 27.7-55.3 21.3C54.6 451 59.3 421.4 82 400c13.8-13 31.6-25 43.4-32.4 2.7-1.6 6.6-4 11.4-6.9.8-.5 1.2-.7 1.2-.7.9-.6 1.9-1.1 2.9-1.7 8.3 30.4.3 57.2-19.1 78.3zm134.4-91.4c-6.4 15.7-19.9 55.7-28.1 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.1-11.3 21.2-14.9 23.8-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.9-13.9 0 .5.1 1 .1 1.6-.1 17.9-17.3 30-25.1 34.8zm85.6-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.6-15.3 19-24.5 1.2 3.8 1.9 7.4 1.9 10.8-.1 22.5-16.2 30.9-25.9 34.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSchlix.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSchlix.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSchlix.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSchlix.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSchlix.js new file mode 100644 index 0000000000..7905531996 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSchlix.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'schlix', icon: [448, 512, [], "f3ea", "M350.5 157.7l-54.2-46.1 73.4-39 78.3 44.2-97.5 40.9zM192 122.1l45.7-28.2 34.7 34.6-55.4 29-25-35.4zm-65.1 6.6l31.9-22.1L176 135l-36.7 22.5-12.4-28.8zm-23.3 88.2l-8.8-34.8 29.6-18.3 13.1 35.3-33.9 17.8zm-21.2-83.7l23.9-18.1 8.9 24-26.7 18.3-6.1-24.2zM59 206.5l-3.6-28.4 22.3-15.5 6.1 28.7L59 206.5zm-30.6 16.6l20.8-12.8 3.3 33.4-22.9 12-1.2-32.6zM1.4 268l19.2-10.2.4 38.2-21 8.8L1.4 268zm59.1 59.3l-28.3 8.3-1.6-46.8 25.1-10.7 4.8 49.2zM99 263.2l-31.1 13-5.2-40.8L90.1 221l8.9 42.2zM123.2 377l-41.6 5.9-8.1-63.5 35.2-10.8 14.5 68.4zm28.5-139.9l21.2 57.1-46.2 13.6-13.7-54.1 38.7-16.6zm85.7 230.5l-70.9-3.3-24.3-95.8 55.2-8.6 40 107.7zm-84.9-279.7l42.2-22.4 28 45.9-50.8 21.3-19.4-44.8zm41 94.9l61.3-18.7 52.8 86.6-79.8 11.3-34.3-79.2zm51.4-85.6l67.3-28.8 65.5 65.4-88.6 26.2-44.2-62.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faScribd.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faScribd.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faScribd.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faScribd.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faScribd.js new file mode 100644 index 0000000000..03f0c21bbf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faScribd.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'scribd', icon: [384, 512, [], "f28a", "M42.3 252.7c-16.1-19-24.7-45.9-24.8-79.9 0-100.4 75.2-153.1 167.2-153.1 98.6-1.6 156.8 49 184.3 70.6l-50.5 72.1-37.3-24.6 26.9-38.6c-36.5-24-79.4-36.5-123-35.8-50.7-.8-111.7 27.2-111.7 76.2 0 18.7 11.2 20.7 28.6 15.6 23.3-5.3 41.9.6 55.8 14 26.4 24.3 23.2 67.6-.7 91.9-29.2 29.5-85.2 27.3-114.8-8.4zm317.7 5.9c-15.5-18.8-38.9-29.4-63.2-28.6-38.1-2-71.1 28-70.5 67.2-.7 16.8 6 33 18.4 44.3 14.1 13.9 33 19.7 56.3 14.4 17.4-5.1 28.6-3.1 28.6 15.6 0 4.3-.5 8.5-1.4 12.7-16.7 40.9-59.5 64.4-121.4 64.4-51.9.2-102.4-16.4-144.1-47.3l33.7-39.4-35.6-27.4L0 406.3l15.4 13.8c52.5 46.8 120.4 72.5 190.7 72.2 51.4 0 94.4-10.5 133.6-44.1 57.1-51.4 54.2-149.2 20.3-189.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSearchengin.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSearchengin.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSearchengin.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSearchengin.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSearchengin.js new file mode 100644 index 0000000000..d859d034da --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSearchengin.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'searchengin', icon: [460, 512, [], "f3eb", "M220.6 130.3l-67.2 28.2V43.2L98.7 233.5l54.7-24.2v130.3l67.2-209.3zm-83.2-96.7l-1.3 4.7-15.2 52.9C80.6 106.7 52 145.8 52 191.5c0 52.3 34.3 95.9 83.4 105.5v53.6C57.5 340.1 0 272.4 0 191.6c0-80.5 59.8-147.2 137.4-158zm311.4 447.2c-11.2 11.2-23.1 12.3-28.6 10.5-5.4-1.8-27.1-19.9-60.4-44.4-33.3-24.6-33.6-35.7-43-56.7-9.4-20.9-30.4-42.6-57.5-52.4l-9.7-14.7c-24.7 16.9-53 26.9-81.3 28.7l2.1-6.6 15.9-49.5c46.5-11.9 80.9-54 80.9-104.2 0-54.5-38.4-102.1-96-107.1V32.3C254.4 37.4 320 106.8 320 191.6c0 33.6-11.2 64.7-29 90.4l14.6 9.6c9.8 27.1 31.5 48 52.4 57.4s32.2 9.7 56.8 43c24.6 33.2 42.7 54.9 44.5 60.3s.7 17.3-10.5 28.5zm-9.9-17.9c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSellcast.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSellcast.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSellcast.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSellcast.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSellcast.js new file mode 100644 index 0000000000..444ba74917 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSellcast.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'sellcast', icon: [448, 512, [], "f2da", "M353.4 32H94.7C42.6 32 0 74.6 0 126.6v258.7C0 437.4 42.6 480 94.7 480h258.7c52.1 0 94.7-42.6 94.7-94.6V126.6c0-52-42.6-94.6-94.7-94.6zm-50 316.4c-27.9 48.2-89.9 64.9-138.2 37.2-22.9 39.8-54.9 8.6-42.3-13.2l15.7-27.2c5.9-10.3 19.2-13.9 29.5-7.9 18.6 10.8-.1-.1 18.5 10.7 27.6 15.9 63.4 6.3 79.4-21.3 15.9-27.6 6.3-63.4-21.3-79.4-17.8-10.2-.6-.4-18.6-10.6-24.6-14.2-3.4-51.9 21.6-37.5 18.6 10.8-.1-.1 18.5 10.7 48.4 28 65.1 90.3 37.2 138.5zm21.8-208.8c-17 29.5-16.3 28.8-19 31.5-6.5 6.5-16.3 8.7-26.5 3.6-18.6-10.8.1.1-18.5-10.7-27.6-15.9-63.4-6.3-79.4 21.3s-6.3 63.4 21.3 79.4c0 0 18.5 10.6 18.6 10.6 24.6 14.2 3.4 51.9-21.6 37.5-18.6-10.8.1.1-18.5-10.7-48.2-27.8-64.9-90.1-37.1-138.4 27.9-48.2 89.9-64.9 138.2-37.2l4.8-8.4c14.3-24.9 52-3.3 37.7 21.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSellsy.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSellsy.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSellsy.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSellsy.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSellsy.js new file mode 100644 index 0000000000..4cda9dbf72 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSellsy.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'sellsy', icon: [640, 512, [], "f213", "M539.71 237.308c3.064-12.257 4.29-24.821 4.29-37.384C544 107.382 468.618 32 376.076 32c-77.22 0-144.634 53.012-163.02 127.781-15.322-13.176-34.934-20.53-55.157-20.53-46.271 0-83.962 37.69-83.962 83.961 0 7.354.92 15.015 3.065 22.369-42.9 20.225-70.785 63.738-70.785 111.234C6.216 424.843 61.68 480 129.401 480h381.198c67.72 0 123.184-55.157 123.184-123.184.001-56.384-38.916-106.025-94.073-119.508zM199.88 401.554c0 8.274-7.048 15.321-15.321 15.321H153.61c-8.274 0-15.321-7.048-15.321-15.321V290.626c0-8.273 7.048-15.321 15.321-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v110.928zm89.477 0c0 8.274-7.048 15.321-15.322 15.321h-30.949c-8.274 0-15.321-7.048-15.321-15.321V270.096c0-8.274 7.048-15.321 15.321-15.321h30.949c8.274 0 15.322 7.048 15.322 15.321v131.458zm89.477 0c0 8.274-7.047 15.321-15.321 15.321h-30.949c-8.274 0-15.322-7.048-15.322-15.321V238.84c0-8.274 7.048-15.321 15.322-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v162.714zm87.027 0c0 8.274-7.048 15.321-15.322 15.321h-28.497c-8.274 0-15.321-7.048-15.321-15.321V176.941c0-8.579 7.047-15.628 15.321-15.628h28.497c8.274 0 15.322 7.048 15.322 15.628v224.613z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faServicestack.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faServicestack.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faServicestack.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faServicestack.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faServicestack.js new file mode 100644 index 0000000000..b7766da31f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faServicestack.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'servicestack', icon: [496, 512, [], "f3ec", "M88 216c81.7 10.2 273.7 102.3 304 232H0c99.5-8.1 184.5-137 88-232zm32-152c32.3 35.6 47.7 83.9 46.4 133.6C249.3 231.3 373.7 321.3 400 448h96C455.3 231.9 222.8 79.5 120 64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faShirtsinbulk.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faShirtsinbulk.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faShirtsinbulk.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faShirtsinbulk.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faShirtsinbulk.js new file mode 100644 index 0000000000..d0d4550ebb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faShirtsinbulk.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'shirtsinbulk', icon: [448, 512, [], "f214", "M395.208 221.583H406v33.542h-10.792v-33.542zm0-9.625H406v-33.542h-10.792v33.542zm0 86.333H406V264.75h-10.792v33.541zM358.75 135.25h-33.542v10.5h33.542v-10.5zm36.458 206.208H406v-33.542h-10.792v33.542zM311.5 135.25h-33.542v10.5H311.5v-10.5zm-47.25 0H231v10.5h33.25v-10.5zm-47.25 0h-33.25v10.5H217v-10.5zm178.208 33.542H406V135.25h-33.542v10.5h22.75v23.042zm-255.792 259l30.625 13.417 4.375-9.917-30.625-13.417-4.375 9.917zM179.083 445l30.334 13.708 4.374-9.916-30.333-13.417-4.375 9.625zm216.125-60.375H406v-33.542h-10.792v33.542zm-334.833 8.167L91 406.208l4.375-9.624-30.625-13.709-4.375 9.917zm39.666 17.499l30.625 13.417 4.375-9.917-30.625-13.416-4.375 9.916zm132.417 38.501l4.375 9.916L267.459 445l-4.375-9.625-30.626 13.417zm118.417-52.208l4.375 9.624 30.624-13.416-4.374-9.917-30.625 13.709zM311.5 413.791l4.375 9.917 30.625-13.417-4.374-9.916-30.626 13.416zm-39.667 17.501l4.375 9.917 30.625-13.417-4.375-9.917-30.625 13.417zM311.5 46.583h-33.542v10.5H311.5v-10.5zm94.209 0h-33.251v10.5h33.251v-10.5zm-188.709 0h-33.25v10.5H217v-10.5zm141.75 0h-33.542v10.5h33.542v-10.5zm-94.5 0H231v10.5h33.25v-10.5zM448 3.708v406l-226.334 98.584L0 409.708v-406h448zm-29.166 116.958H29.166V390.75l192.792 85.75 196.875-85.75V120.666zm0-87.791H29.166V91.5h389.667V32.875zM75.542 46.583H42.291v10.5h33.251v-10.5zm94.5 0H136.5v10.5h33.542v-10.5zm-47.251 0H89.25v10.5h33.542v-10.5zm7.584 236.542c0-50.167 41.125-91.292 91.292-91.292 50.458 0 91.292 41.125 91.292 91.292 0 50.458-40.833 91.292-91.292 91.292-50.167-.001-91.292-40.834-91.292-91.292zm120.75 18.084c0 13.125-23.917 14.291-32.666 14.291-12.25 0-29.75-2.625-35.875-14.875h-.875L172.666 319c14.876 9.333 29.167 12.25 47.25 12.25 19.542 0 51.042-5.833 51.042-31.209 0-48.125-78.458-16.333-78.458-37.916 0-13.125 20.708-14.875 29.75-14.875 10.791 0 29.166 3.208 35.583 13.124h.875l8.751-16.916c-15.167-6.125-27.417-11.959-44.334-11.959-20.125 0-49.583 6.417-49.583 31.792 0 44.334 77.583 11.959 77.583 37.918zM122.791 135.25H89.25v10.5h33.542v-10.5zm-69.999 10.5h22.75v-10.5H42v33.542h10.792V145.75zm0 32.666H42v33.542h10.792v-33.542zm117.25-43.166H136.5v10.5h33.542v-10.5zm-117.25 86.333H42v33.542h10.792v-33.542zm0 86.334H42v33.542h10.792v-33.542zm0-43.167H42v33.542h10.792V264.75zm0 86.333H42v33.542h10.792v-33.542z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSimplybuilt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSimplybuilt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSimplybuilt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSimplybuilt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSimplybuilt.js new file mode 100644 index 0000000000..a13cc5af3c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSimplybuilt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'simplybuilt', icon: [512, 512, [], "f215", "M481.2 64h-106c-14.5 0-26.6 11.8-26.6 26.3v39.6H163.3V90.3c0-14.5-12-26.3-26.6-26.3h-106C16.1 64 4.3 75.8 4.3 90.3v331.4c0 14.5 11.8 26.3 26.6 26.3h450.4c14.8 0 26.6-11.8 26.6-26.3V90.3c-.2-14.5-12-26.3-26.7-26.3zM149.8 355.8c-36.6 0-66.4-29.7-66.4-66.4 0-36.9 29.7-66.6 66.4-66.6 36.9 0 66.6 29.7 66.6 66.6 0 36.7-29.7 66.4-66.6 66.4zm212.4 0c-36.9 0-66.6-29.7-66.6-66.6 0-36.6 29.7-66.4 66.6-66.4 36.6 0 66.4 29.7 66.4 66.4 0 36.9-29.8 66.6-66.4 66.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSistrix.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSistrix.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSistrix.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSistrix.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSistrix.js new file mode 100644 index 0000000000..b637773aa9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSistrix.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'sistrix', icon: [448, 512, [], "f3ee", "M448 449L301.2 300.2c20-27.9 31.9-62.2 31.9-99.2 0-93.1-74.7-168.9-166.5-168.9C74.7 32 0 107.8 0 200.9s74.7 168.9 166.5 168.9c39.8 0 76.3-14.2 105-37.9l146 148.1 30.5-31zM166.5 330.8c-70.6 0-128.1-58.3-128.1-129.9S95.9 71 166.5 71s128.1 58.3 128.1 129.9-57.4 129.9-128.1 129.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSith.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSith.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSith.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSith.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSith.js new file mode 100644 index 0000000000..420fef7b07 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSith.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'sith', icon: [448, 512, [], "f512", "M0 32l69.71 118.75-58.86-11.52 69.84 91.03a146.741 146.741 0 0 0 0 51.45l-69.84 91.03 58.86-11.52L0 480l118.75-69.71-11.52 58.86 91.03-69.84c17.02 3.04 34.47 3.04 51.48 0l91.03 69.84-11.52-58.86L448 480l-69.71-118.78 58.86 11.52-69.84-91.03c3.03-17.01 3.04-34.44 0-51.45l69.84-91.03-58.86 11.52L448 32l-118.75 69.71 11.52-58.9-91.06 69.87c-8.5-1.52-17.1-2.29-25.71-2.29s-17.21.78-25.71 2.29l-91.06-69.87 11.52 58.9L0 32zm224 99.78c31.8 0 63.6 12.12 87.85 36.37 48.5 48.5 48.49 127.21 0 175.7s-127.2 48.46-175.7-.03c-48.5-48.5-48.49-127.21 0-175.7 24.24-24.25 56.05-36.34 87.85-36.34zm0 36.66c-22.42 0-44.83 8.52-61.92 25.61-34.18 34.18-34.19 89.68 0 123.87s89.65 34.18 123.84 0c34.18-34.18 34.19-89.68 0-123.87-17.09-17.09-39.5-25.61-61.92-25.61z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSkyatlas.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSkyatlas.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSkyatlas.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSkyatlas.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSkyatlas.js new file mode 100644 index 0000000000..b12b4a065c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSkyatlas.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'skyatlas', icon: [640, 512, [], "f216", "M640 329.3c0 65.9-52.5 114.4-117.5 114.4-165.9 0-196.6-249.7-359.7-249.7-146.9 0-147.1 212.2 5.6 212.2 42.5 0 90.9-17.8 125.3-42.5 5.6-4.1 16.9-16.3 22.8-16.3s10.9 5 10.9 10.9c0 7.8-13.1 19.1-18.7 24.1-40.9 35.6-100.3 61.2-154.7 61.2-83.4.1-154-59-154-144.9s67.5-149.1 152.8-149.1c185.3 0 222.5 245.9 361.9 245.9 99.9 0 94.8-139.7 3.4-139.7-17.5 0-35 11.6-46.9 11.6-8.4 0-15.9-7.2-15.9-15.6 0-11.6 5.3-23.7 5.3-36.3 0-66.6-50.9-114.7-116.9-114.7-53.1 0-80 36.9-88.8 36.9-6.2 0-11.2-5-11.2-11.2 0-5.6 4.1-10.3 7.8-14.4 25.3-28.8 64.7-43.7 102.8-43.7 79.4 0 139.1 58.4 139.1 137.8 0 6.9-.3 13.7-1.2 20.6 11.9-3.1 24.1-4.7 35.9-4.7 60.7 0 111.9 45.3 111.9 107.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSkype.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSkype.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSkype.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSkype.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSkype.js new file mode 100644 index 0000000000..dda0f26ad2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSkype.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'skype', icon: [448, 512, [], "f17e", "M424.7 299.8c2.9-14 4.7-28.9 4.7-43.8 0-113.5-91.9-205.3-205.3-205.3-14.9 0-29.7 1.7-43.8 4.7C161.3 40.7 137.7 32 112 32 50.2 32 0 82.2 0 144c0 25.7 8.7 49.3 23.3 68.2-2.9 14-4.7 28.9-4.7 43.8 0 113.5 91.9 205.3 205.3 205.3 14.9 0 29.7-1.7 43.8-4.7 19 14.6 42.6 23.3 68.2 23.3 61.8 0 112-50.2 112-112 .1-25.6-8.6-49.2-23.2-68.1zm-194.6 91.5c-65.6 0-120.5-29.2-120.5-65 0-16 9-30.6 29.5-30.6 31.2 0 34.1 44.9 88.1 44.9 25.7 0 42.3-11.4 42.3-26.3 0-18.7-16-21.6-42-28-62.5-15.4-117.8-22-117.8-87.2 0-59.2 58.6-81.1 109.1-81.1 55.1 0 110.8 21.9 110.8 55.4 0 16.9-11.4 31.8-30.3 31.8-28.3 0-29.2-33.5-75-33.5-25.7 0-42 7-42 22.5 0 19.8 20.8 21.8 69.1 33 41.4 9.3 90.7 26.8 90.7 77.6 0 59.1-57.1 86.5-112 86.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSlack.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSlack.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSlack.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSlack.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSlack.js new file mode 100644 index 0000000000..727e3861f0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSlack.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'slack', icon: [448, 512, [], "f198", "M244.2 217.5l19.3 57.7-59.8 20-19.3-57.7 59.8-20zm41.4 243.7C131.6 507.4 65 471.6 18.8 317.6S8.4 97 162.4 50.8C316.4 4.6 383 40.4 429.2 194.4c46.2 154 10.4 220.6-143.6 266.8zM366.2 265c-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-19.3-57.7 29-9.7c12.2-3.9 18.6-17.2 14.7-29.4-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-59.8 20.1-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l19.3 57.7-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 59.8-20.1 10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 29-9.7c12.2-4.2 18.6-17.5 14.7-29.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSlackHash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSlackHash.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSlackHash.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSlackHash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSlackHash.js new file mode 100644 index 0000000000..e27d052360 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSlackHash.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'slack-hash', icon: [448, 512, [], "f3ef", "M446.2 270.4c-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-30.3-90 45.4-15.1c19.1-6.2 29.1-26.8 23-45.9-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-93.4 31.2-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-45.3 15c-19.1 6.2-29.1 26.8-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l30.3 90L78 354.8c-19 6.2-29.1 26.9-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 93.6-31.3 15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 45.4-15.1c19-6 29.1-26.7 22.9-45.7zm-254.1 47.2l-30.3-90.2 93.5-31.3 30.3 90.2-93.5 31.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSlideshare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSlideshare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSlideshare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSlideshare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSlideshare.js new file mode 100644 index 0000000000..6bddf2fd4f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSlideshare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'slideshare', icon: [512, 512, [], "f1e7", "M249.429 211.436c0 31.716-27.715 57.717-61.717 57.717-34.001 0-61.716-26.001-61.716-57.717 0-32.001 27.715-57.716 61.716-57.716 34.001 0 61.717 25.715 61.717 57.716zm254.294 50.002c-18.286 22.573-53.144 50.288-106.289 72.003C453.722 525.163 260 555.735 263.143 457.446c0 1.714-.286-52.859-.286-93.432-4.285-.858-8.571-2-13.714-3.143 0 40.858-.286 98.289-.286 96.575C252 555.735 58.278 525.163 114.566 333.441c-53.145-21.715-88.003-49.43-106.29-72.003-9.143-13.714.858-28.287 16.001-17.715 2 1.428 4.285 2.857 6.285 4.285V49.716C30.563 22.287 51.135 0 76.565 0h359.157c25.429 0 46.002 22.287 46.002 49.716v198.293l6-4.285c15.143-10.573 25.143 4 15.999 17.714zm-46.572-189.15c0-32.858-10.572-45.716-40.859-45.716H98.566c-31.716 0-40.573 10.858-40.573 45.716v192.293c67.717 35.43 125.72 29.144 157.435 28.001 13.429-.286 22.001 2.286 27.144 7.715 1.689 1.687 10.023 9.446 20.287 17.143 1.143-15.715 10.001-25.715 33.716-24.858 32.287 1.428 91.718 7.715 160.577-29.716V72.288zM331.146 153.72c-34.002 0-61.716 25.715-61.716 57.716 0 31.716 27.715 57.717 61.716 57.717 34.287 0 61.716-26.001 61.716-57.717 0-32.001-27.429-57.716-61.716-57.716z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSnapchat.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSnapchat.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSnapchat.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSnapchat.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSnapchat.js new file mode 100644 index 0000000000..3c63db7153 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSnapchat.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'snapchat', icon: [496, 512, [], "f2ab", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm169.5 338.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C183.1 100 230.7 96 244.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSnapchatGhost.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSnapchatGhost.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSnapchatGhost.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSnapchatGhost.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSnapchatGhost.js new file mode 100644 index 0000000000..e3d3305c07 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSnapchatGhost.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'snapchat-ghost', icon: [512, 512, [], "f2ac", "M510.846 392.673c-5.211 12.157-27.239 21.089-67.36 27.318-2.064 2.786-3.775 14.686-6.507 23.956-1.625 5.566-5.623 8.869-12.128 8.869l-.297-.005c-9.395 0-19.203-4.323-38.852-4.323-26.521 0-35.662 6.043-56.254 20.588-21.832 15.438-42.771 28.764-74.027 27.399-31.646 2.334-58.025-16.908-72.871-27.404-20.714-14.643-29.828-20.582-56.241-20.582-18.864 0-30.736 4.72-38.852 4.72-8.073 0-11.213-4.922-12.422-9.04-2.703-9.189-4.404-21.263-6.523-24.13-20.679-3.209-67.31-11.344-68.498-32.15a10.627 10.627 0 0 1 8.877-11.069c69.583-11.455 100.924-82.901 102.227-85.934.074-.176.155-.344.237-.515 3.713-7.537 4.544-13.849 2.463-18.753-5.05-11.896-26.872-16.164-36.053-19.796-23.715-9.366-27.015-20.128-25.612-27.504 2.437-12.836 21.725-20.735 33.002-15.453 8.919 4.181 16.843 6.297 23.547 6.297 5.022 0 8.212-1.204 9.96-2.171-2.043-35.936-7.101-87.29 5.687-115.969C158.122 21.304 229.705 15.42 250.826 15.42c.944 0 9.141-.089 10.11-.089 52.148 0 102.254 26.78 126.723 81.643 12.777 28.65 7.749 79.792 5.695 116.009 1.582.872 4.357 1.942 8.599 2.139 6.397-.286 13.815-2.389 22.069-6.257 6.085-2.846 14.406-2.461 20.48.058l.029.01c9.476 3.385 15.439 10.215 15.589 17.87.184 9.747-8.522 18.165-25.878 25.018-2.118.835-4.694 1.655-7.434 2.525-9.797 3.106-24.6 7.805-28.616 17.271-2.079 4.904-1.256 11.211 2.46 18.748.087.168.166.342.239.515 1.301 3.03 32.615 74.46 102.23 85.934 6.427 1.058 11.163 7.877 7.725 15.859z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSnapchatSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSnapchatSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSnapchatSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSnapchatSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSnapchatSquare.js new file mode 100644 index 0000000000..6c784b57df --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSnapchatSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'snapchat-square', icon: [448, 512, [], "f2ad", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6.5 314.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C159.1 100 206.7 96 220.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSoundcloud.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSoundcloud.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSoundcloud.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSoundcloud.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSoundcloud.js new file mode 100644 index 0000000000..f64b52399f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSoundcloud.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'soundcloud', icon: [640, 512, [], "f1be", "M111.4 256.3l5.8 65-5.8 68.3c-.3 2.5-2.2 4.4-4.4 4.4s-4.2-1.9-4.2-4.4l-5.6-68.3 5.6-65c0-2.2 1.9-4.2 4.2-4.2 2.2 0 4.1 2 4.4 4.2zm21.4-45.6c-2.8 0-4.7 2.2-5 5l-5 105.6 5 68.3c.3 2.8 2.2 5 5 5 2.5 0 4.7-2.2 4.7-5l5.8-68.3-5.8-105.6c0-2.8-2.2-5-4.7-5zm25.5-24.1c-3.1 0-5.3 2.2-5.6 5.3l-4.4 130 4.4 67.8c.3 3.1 2.5 5.3 5.6 5.3 2.8 0 5.3-2.2 5.3-5.3l5.3-67.8-5.3-130c0-3.1-2.5-5.3-5.3-5.3zM7.2 283.2c-1.4 0-2.2 1.1-2.5 2.5L0 321.3l4.7 35c.3 1.4 1.1 2.5 2.5 2.5s2.2-1.1 2.5-2.5l5.6-35-5.6-35.6c-.3-1.4-1.1-2.5-2.5-2.5zm23.6-21.9c-1.4 0-2.5 1.1-2.5 2.5l-6.4 57.5 6.4 56.1c0 1.7 1.1 2.8 2.5 2.8s2.5-1.1 2.8-2.5l7.2-56.4-7.2-57.5c-.3-1.4-1.4-2.5-2.8-2.5zm25.3-11.4c-1.7 0-3.1 1.4-3.3 3.3L47 321.3l5.8 65.8c.3 1.7 1.7 3.1 3.3 3.1 1.7 0 3.1-1.4 3.1-3.1l6.9-65.8-6.9-68.1c0-1.9-1.4-3.3-3.1-3.3zm25.3-2.2c-1.9 0-3.6 1.4-3.6 3.6l-5.8 70 5.8 67.8c0 2.2 1.7 3.6 3.6 3.6s3.6-1.4 3.9-3.6l6.4-67.8-6.4-70c-.3-2.2-2-3.6-3.9-3.6zm241.4-110.9c-1.1-.8-2.8-1.4-4.2-1.4-2.2 0-4.2.8-5.6 1.9-1.9 1.7-3.1 4.2-3.3 6.7v.8l-3.3 176.7 1.7 32.5 1.7 31.7c.3 4.7 4.2 8.6 8.9 8.6s8.6-3.9 8.6-8.6l3.9-64.2-3.9-177.5c-.4-3-2-5.8-4.5-7.2zm-26.7 15.3c-1.4-.8-2.8-1.4-4.4-1.4s-3.1.6-4.4 1.4c-2.2 1.4-3.6 3.9-3.6 6.7l-.3 1.7-2.8 160.8s0 .3 3.1 65.6v.3c0 1.7.6 3.3 1.7 4.7 1.7 1.9 3.9 3.1 6.4 3.1 2.2 0 4.2-1.1 5.6-2.5 1.7-1.4 2.5-3.3 2.5-5.6l.3-6.7 3.1-58.6-3.3-162.8c-.3-2.8-1.7-5.3-3.9-6.7zm-111.4 22.5c-3.1 0-5.8 2.8-5.8 6.1l-4.4 140.6 4.4 67.2c.3 3.3 2.8 5.8 5.8 5.8 3.3 0 5.8-2.5 6.1-5.8l5-67.2-5-140.6c-.2-3.3-2.7-6.1-6.1-6.1zm376.7 62.8c-10.8 0-21.1 2.2-30.6 6.1-6.4-70.8-65.8-126.4-138.3-126.4-17.8 0-35 3.3-50.3 9.4-6.1 2.2-7.8 4.4-7.8 9.2v249.7c0 5 3.9 8.6 8.6 9.2h218.3c43.3 0 78.6-35 78.6-78.3.1-43.6-35.2-78.9-78.5-78.9zm-296.7-60.3c-4.2 0-7.5 3.3-7.8 7.8l-3.3 136.7 3.3 65.6c.3 4.2 3.6 7.5 7.8 7.5 4.2 0 7.5-3.3 7.5-7.5l3.9-65.6-3.9-136.7c-.3-4.5-3.3-7.8-7.5-7.8zm-53.6-7.8c-3.3 0-6.4 3.1-6.4 6.7l-3.9 145.3 3.9 66.9c.3 3.6 3.1 6.4 6.4 6.4 3.6 0 6.4-2.8 6.7-6.4l4.4-66.9-4.4-145.3c-.3-3.6-3.1-6.7-6.7-6.7zm26.7 3.4c-3.9 0-6.9 3.1-6.9 6.9L227 321.3l3.9 66.4c.3 3.9 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9l4.2-66.4-4.2-141.7c0-3.9-3-6.9-6.9-6.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSpeakap.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSpeakap.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSpeakap.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSpeakap.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSpeakap.js new file mode 100644 index 0000000000..f261f1cd11 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSpeakap.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'speakap', icon: [448, 512, [], "f3f3", "M352 32H96C43.2 32 0 75.2 0 128v256c0 52.8 43.2 96 96 96h256c52.8 0 96-43.2 96-96V128c0-52.8-43.2-96-96-96zM221 382.9c-39.6 0-81.9-17.8-81.9-53.7V302H179v17.8c0 15.1 19.5 24.5 41.9 24.5 24.2 0 41.3-10.4 41.3-29.5 0-23.8-27.2-31.9-54.7-42.6-31.9-12.4-63.1-26.2-63.1-69.1 0-48 38.6-66.4 79.9-66.4 37.6 0 75.5 14.1 75.5 41.9v31.2h-39.9v-16.1c0-12.1-17.8-18.5-35.6-18.5-19.5 0-35.6 8.1-35.6 26.2 0 22.1 22.5 29.2 47 38.9 35.9 12.4 71.1 27.2 71.1 71.5.1 48.6-40.8 71.1-85.8 71.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSpotify.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSpotify.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSpotify.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSpotify.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSpotify.js new file mode 100644 index 0000000000..e758bec89f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSpotify.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'spotify', icon: [496, 512, [], "f1bc", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm100.7 364.9c-4.2 0-6.8-1.3-10.7-3.6-62.4-37.6-135-39.2-206.7-24.5-3.9 1-9 2.6-11.9 2.6-9.7 0-15.8-7.7-15.8-15.8 0-10.3 6.1-15.2 13.6-16.8 81.9-18.1 165.6-16.5 237 26.2 6.1 3.9 9.7 7.4 9.7 16.5s-7.1 15.4-15.2 15.4zm26.9-65.6c-5.2 0-8.7-2.3-12.3-4.2-62.5-37-155.7-51.9-238.6-29.4-4.8 1.3-7.4 2.6-11.9 2.6-10.7 0-19.4-8.7-19.4-19.4s5.2-17.8 15.5-20.7c27.8-7.8 56.2-13.6 97.8-13.6 64.9 0 127.6 16.1 177 45.5 8.1 4.8 11.3 11 11.3 19.7-.1 10.8-8.5 19.5-19.4 19.5zm31-76.2c-5.2 0-8.4-1.3-12.9-3.9-71.2-42.5-198.5-52.7-280.9-29.7-3.6 1-8.1 2.6-12.9 2.6-13.2 0-23.3-10.3-23.3-23.6 0-13.6 8.4-21.3 17.4-23.9 35.2-10.3 74.6-15.2 117.5-15.2 73 0 149.5 15.2 205.4 47.8 7.8 4.5 12.9 10.7 12.9 22.6 0 13.6-11 23.3-23.2 23.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStackExchange.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStackExchange.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStackExchange.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStackExchange.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStackExchange.js new file mode 100644 index 0000000000..a36613fd4a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStackExchange.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'stack-exchange', icon: [448, 512, [], "f18d", "M17.7 332.3h412.7v22c0 37.7-29.3 68-65.3 68h-19L259.3 512v-89.7H83c-36 0-65.3-30.3-65.3-68v-22zm0-23.6h412.7v-85H17.7v85zm0-109.4h412.7v-85H17.7v85zM365 0H83C47 0 17.7 30.3 17.7 67.7V90h412.7V67.7C430.3 30.3 401 0 365 0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStackOverflow.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStackOverflow.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStackOverflow.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStackOverflow.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStackOverflow.js new file mode 100644 index 0000000000..608c4d6bfd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStackOverflow.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'stack-overflow', icon: [384, 512, [], "f16c", "M293.7 300l-181.2-84.5 16.7-36.5 181.3 84.7-16.8 36.3zm48-76L188.2 95.7l-25.5 30.8 153.5 128.3 25.5-30.8zm39.6-31.7L262 32l-32 24 119.3 160.3 32-24zM290.7 311L95 269.7 86.8 309l195.7 41 8.2-39zm31.6 129H42.7V320h-40v160h359.5V320h-40v120zm-39.8-80h-200v39.7h200V360z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStaylinked.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStaylinked.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStaylinked.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStaylinked.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStaylinked.js new file mode 100644 index 0000000000..aa3d258d07 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStaylinked.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'staylinked', icon: [440, 512, [], "f3f5", "M201.6 127.4c4.1-3.2 10.3-3 13.8.5l170 167.3-2.7-2.7 44.3 41.3c3.7 3.5 3.3 9-.7 12.2l-198 163.9c-9.9 7.6-17.3.8-17.3.8L2.3 314.6c-3.5-3.5-3-9 1.2-12.2l45.8-34.9c4.2-3.2 10.4-3 13.9.5l151.9 147.5c3.7 3.5 10 3.7 14.2.4l93.2-74c4.1-3.2 4.5-8.7.9-12.2l-84-81.3c-3.6-3.5-9.9-3.7-14-.5l-.1.1c-4.1 3.2-10.4 3-14-.5l-68.1-64.3c-3.5-3.5-3.1-9 1.1-12.2l57.3-43.6m14.8 257.3c3.7 3.5 10.1 3.7 14.3.4l50.2-38.8-.3-.3 7.7-6c4.2-3.2 4.6-8.7.9-12.2l-57.1-54.4c-3.6-3.5-10-3.7-14.2-.5l-.1.1c-4.2 3.2-10.5 3.1-14.2-.4L109 180.8c-3.6-3.5-3.1-8.9 1.1-12.2l92.2-71.5c4.1-3.2 10.3-3 13.9.5l160.4 159c3.7 3.5 10 3.7 14.1.5l45.8-35.8c4.1-3.2 4.4-8.7.7-12.2L226.7 2.5c-1.5-1.2-8-5.5-16.3 1.1L3.6 165.7c-4.2 3.2-4.8 8.7-1.2 12.2l42.3 41.7"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSteam.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSteam.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSteam.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSteam.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSteam.js new file mode 100644 index 0000000000..a49204cf95 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSteam.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'steam', icon: [496, 512, [], "f1b6", "M496 256c0 137-111.2 248-248.4 248-113.8 0-209.6-76.3-239-180.4l95.2 39.3c6.4 32.1 34.9 56.4 68.9 56.4 39.2 0 71.9-32.4 70.2-73.5l84.5-60.2c52.1 1.3 95.8-40.9 95.8-93.5 0-51.6-42-93.5-93.7-93.5s-93.7 42-93.7 93.5v1.2L176.6 279c-15.5-.9-30.7 3.4-43.5 12.1L0 236.1C10.2 108.4 117.1 8 247.6 8 384.8 8 496 119 496 256zM155.7 384.3l-30.5-12.6a52.79 52.79 0 0 0 27.2 25.8c26.9 11.2 57.8-1.6 69-28.4 5.4-13 5.5-27.3.1-40.3-5.4-13-15.5-23.2-28.5-28.6-12.9-5.4-26.7-5.2-38.9-.6l31.5 13c19.8 8.2 29.2 30.9 20.9 50.7-8.3 19.9-31 29.2-50.8 21zm173.8-129.9c-34.4 0-62.4-28-62.4-62.3s28-62.3 62.4-62.3 62.4 28 62.4 62.3-27.9 62.3-62.4 62.3zm.1-15.6c25.9 0 46.9-21 46.9-46.8 0-25.9-21-46.8-46.9-46.8s-46.9 21-46.9 46.8c.1 25.8 21.1 46.8 46.9 46.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSteamSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSteamSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSteamSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSteamSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSteamSquare.js new file mode 100644 index 0000000000..a143d61439 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSteamSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'steam-square', icon: [448, 512, [], "f1b7", "M185.2 356.5c7.7-18.5-1-39.7-19.6-47.4l-29.5-12.2c11.4-4.3 24.3-4.5 36.4.5 12.2 5.1 21.6 14.6 26.7 26.7 5 12.2 5 25.6-.1 37.7-10.5 25.1-39.4 37-64.6 26.5-11.6-4.8-20.4-13.6-25.4-24.2l28.5 11.8c18.6 7.8 39.9-.9 47.6-19.4zM400 32H48C21.5 32 0 53.5 0 80v160.7l116.6 48.1c12-8.2 26.2-12.1 40.7-11.3l55.4-80.2v-1.1c0-48.2 39.3-87.5 87.6-87.5s87.6 39.3 87.6 87.5c0 49.2-40.9 88.7-89.6 87.5l-79 56.3c1.6 38.5-29.1 68.8-65.7 68.8-31.8 0-58.5-22.7-64.5-52.7L0 319.2V432c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-99.7 222.5c-32.2 0-58.4-26.1-58.4-58.3s26.2-58.3 58.4-58.3 58.4 26.2 58.4 58.3-26.2 58.3-58.4 58.3zm.1-14.6c24.2 0 43.9-19.6 43.9-43.8 0-24.2-19.6-43.8-43.9-43.8-24.2 0-43.9 19.6-43.9 43.8 0 24.2 19.7 43.8 43.9 43.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSteamSymbol.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSteamSymbol.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSteamSymbol.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSteamSymbol.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSteamSymbol.js new file mode 100644 index 0000000000..362f0af3e8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSteamSymbol.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'steam-symbol', icon: [448, 512, [], "f3f6", "M395.5 177.5c0 33.8-27.5 61-61 61-33.8 0-61-27.3-61-61s27.3-61 61-61c33.5 0 61 27.2 61 61zm52.5.2c0 63-51 113.8-113.7 113.8L225 371.3c-4 43-40.5 76.8-84.5 76.8-40.5 0-74.7-28.8-83-67L0 358V250.7L97.2 290c15.1-9.2 32.2-13.3 52-11.5l71-101.7c.5-62.3 51.5-112.8 114-112.8C397 64 448 115 448 177.7zM203 363c0-34.7-27.8-62.5-62.5-62.5-4.5 0-9 .5-13.5 1.5l26 10.5c25.5 10.2 38 39 27.7 64.5-10.2 25.5-39.2 38-64.7 27.5-10.2-4-20.5-8.3-30.7-12.2 10.5 19.7 31.2 33.2 55.2 33.2 34.7 0 62.5-27.8 62.5-62.5zm207.5-185.3c0-42-34.3-76.2-76.2-76.2-42.3 0-76.5 34.2-76.5 76.2 0 42.2 34.3 76.2 76.5 76.2 41.9.1 76.2-33.9 76.2-76.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStickerMule.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStickerMule.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStickerMule.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStickerMule.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStickerMule.js new file mode 100644 index 0000000000..ab28144985 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStickerMule.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'sticker-mule', icon: [576, 512, [], "f3f7", "M353.1 509.8c-5.9 2.9-32.1 3.2-36.5-.5-4.1-3-2.2-11.9-1.5-15 2.2-15-2.5-7.9-9.8-11.5-3.1-1.5-4.1-5.5-4.6-10-.5-1.5-1-2.5-1.5-3.5-1.7-10.7 6.8-33.6 8.2-43.4 4.9-23.7-.7-37.2 1.5-46.9 3.7-16.2 4.1-3.5 4.1-29.9-1.4-25.9 3.3-36.9.5-38.9-14.8 0-64.3 10.7-112.2 2-46.1-8.9-59.4-29-65.4-30.9-10.3-4.5-23.2.5-27.3 7-.1.1-35 70.6-39.6 87.8-6.2 20.5-.5 47.4 4.1 66.8 0 .1 4.5 14.6 10.3 19.5 2.1 1.5 5.1 2.5 7.2 4.5 2.8 2.7 9.4 15.2 9.8 16 2.6 4.5 3.6 8-1.5 10.5-3.6 2-9.3 2.5-14.4 2.5-2.6.5-1.5 3.5-3.1 5-2.9 2.8-20.7 6.1-29.9 2.5-2.6-1-5.7-3-6.2-5-1.5-4 2.1-9-1-12.5-4.5-2.9-13.1-2-17-12-2.2-5.4-2.6-7.6-2.6-49.4 0-9.7-5.9-38.7-8.2-46.9-1.5-5.5-1.5-11.5 0-16 .3-.9 4.1-4.6 4.1-13-1-1.5-4.6-.5-5.1-1.5-10.4-80.6-5.9-79-7.7-98.3-1.5-16-10.9-43.9-6.7-64.3.5-2.4 3.4-21 24.2-38.9 31-26.7 48.4-38.3 159-11.5 1.1.4 66.3 21.1 110.7-9 15.5-11.3 28.8-11.3 35.5-16 .1-.1 61.7-52.1 87-65.3 47.2-29.4 69.9-16.7 75.1-18 4.7-1 13.4-25.8 17-25.8 5.5 0 1.6 20.2 3.6 25.9.5 2 3.6 5 6.2 5 2.3 0 1.7-.8 10.3-5 8.4-5.4 14.9-17.6 20.6-17 11.7 1.6-19 41.6-19 46.9 0 2 .2.8 4.6 9.5 2.6 5.5 4.6 13.5 6.2 20 8.3 29.7 5.7 14.6 13.4 36.9 20.2 50.1 20.6 45.2 20.6 52.9 0 7.5-4.1 11-7.2 16.5-1.5 3-4.6 7.5-7.2 8-2.7.7 7-1.5-13.4 2.5-7.2 1-13.4-4.5-14.9-9.5-1.6-4.7 2.8-10.1-11.8-22.9-10.3-10-21.1-11.3-31.9-17-9.8-5.7-11.9 1-18 8-18 22.9-34 46.9-52 69.8-11.8 15-24.2 30.4-33.5 47.4-3.9 6.8-9.5 28.1-10.3 29.9-6.2 17.7-5.5 25.8-16.5 68.3-3.1 10-5.7 21.4-8.7 32.4-2.2 6.8-7.4 49.3-.5 59.4 2.1 3.5 8.7 4.5 11.3 8 .1.1 9.6 18.2 9.3 20 0 6.1-9.4 5.6-11.3 6.5-4.8 2.9-3.8 5.9-6.4 7.4"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStrava.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStrava.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStrava.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStrava.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStrava.js new file mode 100644 index 0000000000..e764188a28 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStrava.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'strava', icon: [369, 512, [], "f428", "M301.6 292l-43.9 88.2-44.6-88.2h-67.6l112.2 220 111.5-220h-67.6zM151.4 0L0 292h89.2l62.2-116.1L213.1 292h88.5L151.4 0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStripe.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStripe.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStripe.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStripe.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStripe.js new file mode 100644 index 0000000000..4288bf3a03 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStripe.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'stripe', icon: [640, 512, [], "f429", "M640 261.6c0-45.5-22-81.4-64.2-81.4s-67.9 35.9-67.9 81.1c0 53.5 30.3 78.2 73.5 78.2 21.2 0 37.1-4.8 49.2-11.5v-33.4c-12.1 6.1-26 9.8-43.6 9.8-17.3 0-32.5-6.1-34.5-26.9h86.9c.2-2.3.6-11.6.6-15.9m-87.9-16.8c0-20 12.3-28.4 23.4-28.4 10.9 0 22.5 8.4 22.5 28.4h-45.9zm-112.9-64.6c-17.4 0-28.6 8.2-34.8 13.9l-2.3-11H363v204.8l44.4-9.4.1-50.2c6.4 4.7 15.9 11.2 31.4 11.2 31.8 0 60.8-23.2 60.8-79.6.1-51.6-29.3-79.7-60.5-79.7m-10.6 122.5c-10.4 0-16.6-3.8-20.9-8.4l-.3-66c4.6-5.1 11-8.8 21.2-8.8 16.2 0 27.4 18.2 27.4 41.4.1 23.9-10.9 41.8-27.4 41.8M346.4 124v36.2l-44.6 9.5v-36.2l44.6-9.5m-44.5 59.2h44.6v153.2h-44.6V183.2zm-47.8 13.1c10.4-19.1 31.1-15.2 37.1-13.1V224c-5.7-1.8-23.4-4.5-33.9 9.3v103.1H213V183.2h38.4l2.7 13.1m-89-13.1h33.7V221h-33.7v63.2c0 26.2 28 18 33.7 15.7v33.8c-5.9 3.2-16.6 5.9-31.2 5.9-26.3 0-46.1-17-46.1-43.3l.2-142.4 43.3-9.2.1 38.5zM44.9 228.3c0 20 67.9 10.5 67.9 63.4 0 32-25.4 47.8-62.3 47.8-15.3 0-32-3-48.5-10.1v-40c14.9 8.1 33.9 14.2 48.6 14.2 9.9 0 17-2.7 17-10.9 0-21.2-67.5-13.2-67.5-62.4 0-31.4 24-50.2 60-50.2 14.7 0 29.4 2.3 44.1 8.1V230c-13.5-7.3-30.7-11.4-44.2-11.4-9.3.1-15.1 2.8-15.1 9.7"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStripeS.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStripeS.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStripeS.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStripeS.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStripeS.js new file mode 100644 index 0000000000..116f946e6e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStripeS.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'stripe-s', icon: [362, 512, [], "f42a", "M144.3 154.6c0-22.3 18.6-30.9 48.4-30.9 43.4 0 98.5 13.3 141.9 36.7V26.1C287.3 7.2 240.1 0 192.8 0 77.1 0 0 60.4 0 161.4c0 157.9 216.8 132.3 216.8 200.4 0 26.4-22.9 34.9-54.7 34.9-47.2 0-108.2-19.5-156.1-45.5v128.5c53 22.8 106.8 32.4 156 32.4 118.6 0 200.3-51 200.3-153.6 0-170.2-218-139.7-218-203.9"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStudiovinari.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStudiovinari.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStudiovinari.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStudiovinari.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStudiovinari.js new file mode 100644 index 0000000000..d453ed2354 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStudiovinari.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'studiovinari', icon: [512, 512, [], "f3f8", "M480.3 187.7l4.2 28v28l-25.1 44.1-39.8 78.4-56.1 67.5-79.1 37.8-17.7 24.5-7.7 12-9.6 4s17.3-63.6 19.4-63.6c2.1 0 20.3.7 20.3.7l66.7-38.6-92.5 26.1-55.9 36.8-22.8 28-6.6 1.4 20.8-73.6 6.9-5.5 20.7 12.9 88.3-45.2 56.8-51.5 14.8-68.4-125.4 23.3 15.2-18.2-173.4-53.3 81.9-10.5-166-122.9L133.5 108 32.2 0l252.9 126.6-31.5-38L378 163 234.7 64l18.7 38.4-49.6-18.1L158.3 0l194.6 122L310 66.2l108 96.4 12-8.9-21-16.4 4.2-37.8L451 89.1l29.2 24.7 11.5 4.2-7 6.2 8.5 12-13.1 7.4-10.3 20.2 10.5 23.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStumbleupon.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStumbleupon.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStumbleupon.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStumbleupon.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStumbleupon.js new file mode 100644 index 0000000000..51d87295c9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStumbleupon.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'stumbleupon', icon: [512, 512, [], "f1a4", "M502.9 266v69.7c0 62.1-50.3 112.4-112.4 112.4-61.8 0-112.4-49.8-112.4-111.3v-70.2l34.3 16 51.1-15.2V338c0 14.7 12 26.5 26.7 26.5S417 352.7 417 338v-72h85.9zm-224.7-58.2l34.3 16 51.1-15.2V173c0-60.5-51.1-109-112.1-109-60.8 0-112.1 48.2-112.1 108.2v162.4c0 14.9-12 26.7-26.7 26.7S86 349.5 86 334.6V266H0v69.7C0 397.7 50.3 448 112.4 448c61.6 0 112.4-49.5 112.4-110.8V176.9c0-14.7 12-26.7 26.7-26.7s26.7 12 26.7 26.7v30.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStumbleuponCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStumbleuponCircle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStumbleuponCircle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStumbleuponCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStumbleuponCircle.js new file mode 100644 index 0000000000..15df8f03c2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faStumbleuponCircle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'stumbleupon-circle', icon: [496, 512, [], "f1a3", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 177.5c-9.8 0-17.8 8-17.8 17.8v106.9c0 40.9-33.9 73.9-74.9 73.9-41.4 0-74.9-33.5-74.9-74.9v-46.5h57.3v45.8c0 10 8 17.8 17.8 17.8s17.8-7.9 17.8-17.8V200.1c0-40 34.2-72.1 74.7-72.1 40.7 0 74.7 32.3 74.7 72.6v23.7l-34.1 10.1-22.9-10.7v-20.6c.1-9.6-7.9-17.6-17.7-17.6zm167.6 123.6c0 41.4-33.5 74.9-74.9 74.9-41.2 0-74.9-33.2-74.9-74.2V263l22.9 10.7 34.1-10.1v47.1c0 9.8 8 17.6 17.8 17.6s17.8-7.9 17.8-17.6v-48h57.3c-.1 45.9-.1 46.4-.1 46.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSuperpowers.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSuperpowers.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSuperpowers.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSuperpowers.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSuperpowers.js new file mode 100644 index 0000000000..5ac9ab289a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSuperpowers.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'superpowers', icon: [448, 512, [], "f2dd", "M448 32c-83.3 11-166.8 22-250 33-92 12.5-163.3 86.7-169 180-3.3 55.5 18 109.5 57.8 148.2L0 480c83.3-11 166.5-22 249.8-33 91.8-12.5 163.3-86.8 168.7-179.8 3.5-55.5-18-109.5-57.7-148.2L448 32zm-79.7 232.3c-4.2 79.5-74 139.2-152.8 134.5-79.5-4.7-140.7-71-136.3-151 4.5-79.2 74.3-139.3 153-134.5 79.3 4.7 140.5 71 136.1 151z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSupple.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSupple.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSupple.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSupple.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSupple.js new file mode 100644 index 0000000000..6a905decad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faSupple.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'supple', icon: [640, 512, [], "f3f9", "M640 262.5c0 64.1-109 116.1-243.5 116.1-24.8 0-48.6-1.8-71.1-5 7.7.4 15.5.6 23.4.6 134.5 0 243.5-56.9 243.5-127.1 0-29.4-19.1-56.4-51.2-78 60 21.1 98.9 55.1 98.9 93.4zM47.7 227.9c-.1-70.2 108.8-127.3 243.3-127.6 7.9 0 15.6.2 23.3.5-22.5-3.2-46.3-4.9-71-4.9C108.8 96.3-.1 148.5 0 212.6c.1 38.3 39.1 72.3 99.3 93.3-32.3-21.5-51.5-48.6-51.6-78zm60.2 39.9s10.5 13.2 29.3 13.2c17.9 0 28.4-11.5 28.4-25.1 0-28-40.2-25.1-40.2-39.7 0-5.4 5.3-9.1 12.5-9.1 5.7 0 11.3 2.6 11.3 6.6v3.9h14.2v-7.9c0-12.1-15.4-16.8-25.4-16.8-16.5 0-28.5 10.2-28.5 24.1 0 26.6 40.2 25.4 40.2 39.9 0 6.6-5.8 10.1-12.3 10.1-11.9 0-20.7-10.1-20.7-10.1l-8.8 10.9zm120.8-73.6v54.4c0 11.3-7.1 17.8-17.8 17.8-10.7 0-17.8-6.5-17.8-17.7v-54.5h-15.8v55c0 18.9 13.4 31.9 33.7 31.9 20.1 0 33.4-13 33.4-31.9v-55h-15.7zm34.4 85.4h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.8-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5.1 14.7-14 14.7h-12.6zm57 43h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.7-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5 14.7-14 14.7h-12.6zm57.1 34.8c0 5.8 2.4 8.2 8.2 8.2h37.6c5.8 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-18.6c-1.7 0-2.6-1-2.6-2.6v-61.2c0-5.7-2.4-8.2-8.2-8.2H401v13.4h5.2c1.7 0 2.6 1 2.6 2.6v61.2zm63.4 0c0 5.8 2.4 8.2 8.2 8.2H519c5.7 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-19.7c-1.7 0-2.6-1-2.6-2.6v-20.3h27.7v-13.4H488v-22.4h19.2c1.7 0 2.6 1 2.6 2.6v5.2H524v-13c0-5.7-2.5-8.2-8.2-8.2h-51.6v13.4h7.8v63.9zm58.9-76v5.9h1.6v-5.9h2.7v-1.2h-7v1.2h2.7zm5.7-1.2v7.1h1.5v-5.7l2.3 5.7h1.3l2.3-5.7v5.7h1.5v-7.1h-2.3l-2.1 5.1-2.1-5.1h-2.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTeamspeak.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTeamspeak.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTeamspeak.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTeamspeak.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTeamspeak.js new file mode 100644 index 0000000000..a1803ab81e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTeamspeak.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'teamspeak', icon: [453, 512, [], "f4f9", "M203.4 65.8c-10.3-2-42.1-3.7-52.3-3.7-8.4 0-6.9 2-6.9 2 63.7 50.1 75.4 121.1 75.6 122.1 1.9 15.6-3.1 22.9-8.7 31.3-1.4 1.8-2.7 5 .3 8.9l28.9 39.4h-.3c9.4 14.1 28.1 32.2-5.4 39.9-7.7 1.9-18.7 6.3-11.2 15.8 2.2 2.9 8.8 9.5 1.8 16.5-7.5 4.8-2.7 7.9-1.8 10.4 1.8 6.6-2.6 11.2-4.3 12.7-4.2 3.2-3.7 7.8-2.6 10.1v.1c3.1 13.1-1.7 27.1-3.9 34.9l.1-.1c-1.4 3.2 22-2.6 22.1-2.6 87.5-23 150.6-88.5 150.6-165.7-.1-86.3-78.7-157.9-182-172m239.4 126.7c-12.9-35.4-34.5-62.3-58.9-85.4-75.8-71.7-175.6-76.6-214-74.8C133 34 79.5 43.7 67.1 59.4c-4.6 5.8-4 6.2-24.4 103.2C36.7 165 0 181.3 0 225.9c-.3 88.7 133.8 89.3 133.8-.3 0-24.6-13-46.1-32.5-58V49.2c12-3 119.7-28.8 223.6 37.3 29.8 19 104.3 76.9 96.9 182.8-1.5 21.2-5.7 40.8-13.6 56.4-57 113.5-170.7 133.8-212.8 137.9-68.3 6.6-122.5-14.1-124-14-2.7.1-12 7.1-11.7 7.4 36.6 12.1 74.3 23 121 23 48 0 84.3-8.2 118-21.6C401.8 417.3 453.6 340 453.6 253.7c0-22.9-4.3-43.2-10.8-61.2m-246.3 33.6c-8.5-15.6.5-15.9 4.8-23.4 5.5-9.6 1.7-22.1-1.7-32.2-9.6-28.5-33.8-84.5-83-103.6v100c4.5 4.5 54.1 33.5 58.2 116.8 4.1 82.7-52 121.6-51.7 123.3 22.8 4.5 66 10.7 76.7-8.6 5.7-10.2-1.5-28.1-.9-28.1-3.6-14.2 7.8-19.4 7.8-21.8 0-1.4-7.2-3.1-7.2-8.1 0-5.9 8.5-6.2 9.4-10.7.9-4.5-3.1-7.8-5.1-16.6-3.5-19 27.9-16 30.8-23.1 1.4-3.3-1.4-7.8-3.4-10.7"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTelegram.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTelegram.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTelegram.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTelegram.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTelegram.js new file mode 100644 index 0000000000..3ddcf39ded --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTelegram.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'telegram', icon: [496, 512, [], "f2c6", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm121.8 169.9l-40.7 191.8c-3 13.6-11.1 16.9-22.4 10.5l-62-45.7-29.9 28.8c-3.3 3.3-6.1 6.1-12.5 6.1l4.4-63.1 114.9-103.8c5-4.4-1.1-6.9-7.7-2.5l-142 89.4-61.2-19.1c-13.3-4.2-13.6-13.3 2.8-19.7l239.1-92.2c11.1-4 20.8 2.7 17.2 19.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTelegramPlane.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTelegramPlane.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTelegramPlane.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTelegramPlane.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTelegramPlane.js new file mode 100644 index 0000000000..85fb650a99 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTelegramPlane.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'telegram-plane', icon: [448, 512, [], "f3fe", "M446.7 98.6l-67.6 318.8c-5.1 22.5-18.4 28.1-37.3 17.5l-103-75.9-49.7 47.8c-5.5 5.5-10.1 10.1-20.7 10.1l7.4-104.9 190.9-172.5c8.3-7.4-1.8-11.5-12.9-4.1L117.8 284 16.2 252.2c-22.1-6.9-22.5-22.1 4.6-32.7L418.2 66.4c18.4-6.9 34.5 4.1 28.5 32.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTencentWeibo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTencentWeibo.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTencentWeibo.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTencentWeibo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTencentWeibo.js new file mode 100644 index 0000000000..6ab33a60a6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTencentWeibo.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'tencent-weibo', icon: [384, 512, [], "f1d5", "M72.3 495.8c1.4 19.9-27.6 22.2-29.7 2.9C31 368.8 73.7 259.2 144 185.5c-15.6-34 9.2-77.1 50.6-77.1 30.3 0 55.1 24.6 55.1 55.1 0 44-49.5 70.8-86.9 45.1-65.7 71.3-101.4 169.8-90.5 287.2zM192 .1C66.1.1-12.3 134.3 43.7 242.4 52.4 259.8 79 246.9 70 229 23.7 136.4 91 29.8 192 29.8c75.4 0 136.9 61.4 136.9 136.9 0 90.8-86.9 153.9-167.7 133.1-19.1-4.1-25.6 24.4-6.6 29.1 110.7 23.2 204-60 204-162.3C358.6 74.7 284 .1 192 .1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faThemeisle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faThemeisle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faThemeisle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faThemeisle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faThemeisle.js new file mode 100644 index 0000000000..e397a113de --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faThemeisle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'themeisle', icon: [512, 512, [], "f2b2", "M208 88.286c0-10 6.286-21.714 17.715-21.714 11.142 0 17.714 11.714 17.714 21.714 0 10.285-6.572 21.714-17.714 21.714C214.286 110 208 98.571 208 88.286zm304 160c0 36.001-11.429 102.286-36.286 129.714-22.858 24.858-87.428 61.143-120.857 70.572l-1.143.286v32.571c0 16.286-12.572 30.571-29.143 30.571-10 0-19.429-5.714-24.572-14.286-5.427 8.572-14.856 14.286-24.856 14.286-10 0-19.429-5.714-24.858-14.286-5.142 8.572-14.571 14.286-24.57 14.286-10.286 0-19.429-5.714-24.858-14.286-5.143 8.572-14.571 14.286-24.571 14.286-18.857 0-29.429-15.714-29.429-32.857-16.286 12.285-35.715 19.428-56.571 19.428-22 0-43.429-8.285-60.286-22.857 10.285-.286 20.571-2.286 30.285-5.714-20.857-5.714-39.428-18.857-52-36.286 21.37 4.645 46.209 1.673 67.143-11.143-22-22-56.571-58.857-68.572-87.428C1.143 321.714 0 303.714 0 289.429c0-49.714 20.286-160 86.286-160 10.571 0 18.857 4.858 23.143 14.857a158.792 158.792 0 0 1 12-15.428c2-2.572 5.714-5.429 7.143-8.286 7.999-12.571 11.714-21.142 21.714-34C182.571 45.428 232 17.143 285.143 17.143c6 0 12 .285 17.714 1.143C313.714 6.571 328.857 0 344.572 0c14.571 0 29.714 6 40 16.286.857.858 1.428 2.286 1.428 3.428 0 3.714-10.285 13.429-12.857 16.286 4.286 1.429 15.714 6.858 15.714 12 0 2.857-2.857 5.143-4.571 7.143 31.429 27.714 49.429 67.143 56.286 108 4.286-5.143 10.285-8.572 17.143-8.572 10.571 0 20.857 7.144 28.571 14.001C507.143 187.143 512 221.714 512 248.286zM188 89.428c0 18.286 12.571 37.143 32.286 37.143 19.714 0 32.285-18.857 32.285-37.143 0-18-12.571-36.857-32.285-36.857-19.715 0-32.286 18.858-32.286 36.857zM237.714 194c0-19.714 3.714-39.143 8.571-58.286-52.039 79.534-13.531 184.571 68.858 184.571 21.428 0 42.571-7.714 60-20 2-7.429 3.714-14.857 3.714-22.572 0-14.286-6.286-21.428-20.572-21.428-4.571 0-9.143.857-13.429 1.714-63.343 12.668-107.142 3.669-107.142-63.999zm-41.142 254.858c0-11.143-8.858-20.857-20.286-20.857-11.429 0-20 9.715-20 20.857v32.571c0 11.143 8.571 21.142 20 21.142 11.428 0 20.286-9.715 20.286-21.142v-32.571zm49.143 0c0-11.143-8.572-20.857-20-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20-10 20-21.142v-32.571zm49.713 0c0-11.143-8.857-20.857-20.285-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20.285-9.715 20.285-21.142v-32.571zm49.715 0c0-11.143-8.857-20.857-20.286-20.857-11.428 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.858 21.142 20.286 21.142 11.429 0 20.286-10 20.286-21.142v-32.571zM421.714 286c-30.857 59.142-90.285 102.572-158.571 102.572-96.571 0-160.571-84.572-160.571-176.572 0-16.857 2-33.429 6-49.714-20 33.715-29.714 72.572-29.714 111.429 0 60.286 24.857 121.715 71.429 160.857 5.143-9.714 14.857-16.286 26-16.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.571-14.286 24.858-14.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.857-14.286 24.858-14.286 10 0 19.428 5.714 24.857 14.286 5.143-8.571 14.571-14.286 24.572-14.286 10.857 0 20.857 6.572 25.714 16 43.427-36.286 68.569-92 71.426-148.286zm10.572-99.714c0-53.714-34.571-105.714-92.572-105.714-30.285 0-58.571 15.143-78.857 36.857C240.862 183.812 233.41 254 302.286 254c28.805 0 97.357-28.538 84.286 36.857 28.857-26 45.714-65.714 45.714-104.571z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTradeFederation.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTradeFederation.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTradeFederation.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTradeFederation.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTradeFederation.js new file mode 100644 index 0000000000..68fa363a4c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTradeFederation.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'trade-federation', icon: [496, 512, [], "f513", "M202.45 108.42v81.61H38.94l48.22 61.91h114.73v196.75h64.61V252.96h83.27v-62.69h-83.18V171.1h145.62v-62.68H202.45zm4.86 6h197.77v50.68H259.44v30.93h83.18v50.93h-83.26v195.73h-52.73V245.94H89.86l-39.95-49.91h157.4v-81.61zM247.99 8.8C111.03 8.8 0 119.83 0 256.8s111.03 248 247.99 248S496 393.76 496 256.8 384.96 8.8 247.99 8.8zm.02 13.24c129.66 0 234.76 105.12 234.76 234.78s-105.1 234.76-234.76 234.76S13.23 386.47 13.23 256.81 118.35 22.04 248.01 22.04zm0 7.89c-125.3 0-226.89 101.57-226.89 226.87s101.59 226.89 226.89 226.89S474.88 382.1 474.88 256.8 373.31 29.93 248.01 29.93zm-.02 13.3c117.95 0 213.56 95.62 213.56 213.56s-95.62 213.56-213.56 213.56S34.43 374.75 34.43 256.8 130.04 43.23 247.99 43.23zm-73.32 104.8l15.66 18.05-22.16-9.45-12.33 20.47 2.15-23.99-23.28-5.4 23.48-5.37-2.06-23.81 12.37 20.67 22.01-9.32-15.84 18.15zm-47.14-46.54l8.01 12.4 12.69-5.86-9.32 11.45 9.5 10.25-13.77-5.32-6.82 12.2.81-14.74-13.71-2.71 14.27-3.78-1.66-13.89zm250.77 75.59l11.99 19.56 20.88-9.11-14.9 17.45 15.11 17.04-21.2-8.78-11.54 19.64 1.8-22.87-22.24-4.9 22.31-5.36-2.21-22.67zm-107.05 98.45l13.86-3.22-1.28-14.17 7.35 12.18 13.08-5.59-9.31 10.75 9.36 10.71-13.1-5.54-7.29 12.21 1.22-14.17-13.89-3.16zm-125.43 6.5l23.73-3.87-1.73-24.53 11.01 21.38 22.79-9.22-16.93 17.08 15.81 18.83-21.47-10.82-13.02 20.86 3.66-23.77-23.85-5.94zm63.44-165.66v81.61H54.16l36.72 46.01h117.7v196.75h48.82V245.01h83.27v-47.03H257.4v-34.83h145.73v-46.78H209.26zm10.86 11.2h171.8v24.36H246.88v56.23h82.93v23.94h-82.93v197.42h-26.76V232.1H96.31l-20.09-23.94h143.9v-80.59z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTrello.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTrello.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTrello.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTrello.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTrello.js new file mode 100644 index 0000000000..b11b48552c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTrello.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'trello', icon: [448, 512, [], "f181", "M392 32H56C25.1 32 0 57.1 0 88v336c0 30.9 25.1 56 56 56h336c30.9 0 56-25.1 56-56V88c0-30.9-25.1-56-56-56zM194.9 371.4c0 14.8-12 26.9-26.9 26.9H85.1c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9H168c14.8 0 26.9 12 26.9 26.9v254.3zm194.9-112c0 14.8-12 26.9-26.9 26.9H280c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9h82.9c14.8 0 26.9 12 26.9 26.9v142.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTripadvisor.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTripadvisor.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTripadvisor.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTripadvisor.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTripadvisor.js new file mode 100644 index 0000000000..4e336e7a54 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTripadvisor.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'tripadvisor', icon: [576, 512, [], "f262", "M166.4 280.521c0 13.236-10.73 23.966-23.966 23.966s-23.966-10.73-23.966-23.966 10.73-23.966 23.966-23.966 23.966 10.729 23.966 23.966zm264.962-23.956c-13.23 0-23.956 10.725-23.956 23.956 0 13.23 10.725 23.956 23.956 23.956 13.23 0 23.956-10.725 23.956-23.956-.001-13.231-10.726-23.956-23.956-23.956zm89.388 139.49c-62.667 49.104-153.276 38.109-202.379-24.559l-30.979 46.325-30.683-45.939c-48.277 60.39-135.622 71.891-197.885 26.055-64.058-47.158-77.759-137.316-30.601-201.374A186.762 186.762 0 0 0 0 139.416l90.286-.05a358.48 358.48 0 0 1 197.065-54.03 350.382 350.382 0 0 1 192.181 53.349l96.218.074a185.713 185.713 0 0 0-28.352 57.649c46.793 62.747 34.964 151.37-26.648 199.647zM259.366 281.761c-.007-63.557-51.535-115.075-115.092-115.068C80.717 166.7 29.2 218.228 29.206 281.785c.007 63.557 51.535 115.075 115.092 115.068 63.513-.075 114.984-51.539 115.068-115.052v-.04zm28.591-10.455c5.433-73.44 65.51-130.884 139.12-133.022a339.146 339.146 0 0 0-139.727-27.812 356.31 356.31 0 0 0-140.164 27.253c74.344 1.582 135.299 59.424 140.771 133.581zm251.706-28.767c-21.992-59.634-88.162-90.148-147.795-68.157-59.634 21.992-90.148 88.162-68.157 147.795v.032c22.038 59.607 88.198 90.091 147.827 68.113 59.615-22.004 90.113-88.162 68.125-147.783zm-326.039 37.975v.115c-.057 39.328-31.986 71.163-71.314 71.106-39.328-.057-71.163-31.986-71.106-71.314.057-39.328 31.986-71.163 71.314-71.106 39.259.116 71.042 31.94 71.106 71.199zm-24.512 0v-.084c-.051-25.784-20.994-46.645-46.778-46.594-25.784.051-46.645 20.994-46.594 46.777.051 25.784 20.994 46.645 46.777 46.594 25.726-.113 46.537-20.968 46.595-46.693zm313.423 0v.048c-.02 39.328-31.918 71.194-71.247 71.173s-71.194-31.918-71.173-71.247c.02-39.328 31.918-71.194 71.247-71.173 39.29.066 71.121 31.909 71.173 71.199zm-24.504-.008c-.009-25.784-20.918-46.679-46.702-46.67-25.784.009-46.679 20.918-46.67 46.702.009 25.784 20.918 46.678 46.702 46.67 25.765-.046 46.636-20.928 46.67-46.693v-.009z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTumblr.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTumblr.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTumblr.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTumblr.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTumblr.js new file mode 100644 index 0000000000..4d68094b29 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTumblr.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'tumblr', icon: [320, 512, [], "f173", "M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTumblrSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTumblrSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTumblrSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTumblrSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTumblrSquare.js new file mode 100644 index 0000000000..79078f0cfd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTumblrSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'tumblr-square', icon: [448, 512, [], "f174", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-82.3 364.2c-8.5 9.1-31.2 19.8-60.9 19.8-75.5 0-91.9-55.5-91.9-87.9v-90h-29.7c-3.4 0-6.2-2.8-6.2-6.2v-42.5c0-4.5 2.8-8.5 7.1-10 38.8-13.7 50.9-47.5 52.7-73.2.5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2h-52.1V321c0 21.4 14.8 33.5 42.5 22.4 3-1.2 5.6-2 8-1.4 2.2.5 3.6 2.1 4.6 4.9l13.8 40.2c1 3.2 2 6.7-.3 9.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTwitch.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTwitch.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTwitch.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTwitch.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTwitch.js new file mode 100644 index 0000000000..1f9f2464e1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTwitch.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'twitch', icon: [448, 512, [], "f1e8", "M40.1 32L10 108.9v314.3h107V480h60.2l56.8-56.8h87l117-117V32H40.1zm357.8 254.1L331 353H224l-56.8 56.8V353H76.9V72.1h321v214zM331 149v116.9h-40.1V149H331zm-107 0v116.9h-40.1V149H224z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTwitter.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTwitter.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTwitter.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTwitter.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTwitter.js new file mode 100644 index 0000000000..3439c4e238 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTwitter.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'twitter', icon: [512, 512, [], "f099", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTwitterSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTwitterSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTwitterSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTwitterSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTwitterSquare.js new file mode 100644 index 0000000000..50e211b41e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTwitterSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'twitter-square', icon: [448, 512, [], "f081", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTypo3.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTypo3.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTypo3.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTypo3.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTypo3.js new file mode 100644 index 0000000000..27471adfa8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faTypo3.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'typo3', icon: [433, 512, [], "f42b", "M330.8 341c-7 2.3-11.6 2.3-18.5 2.3-57.2 0-140.6-198.5-140.6-264.9 0-24.7 5.4-32.4 13.9-39.4-69.5 8.5-149.3 34-176.3 66.4-5.4 7.7-9.3 20.8-9.3 37.1C0 246 106.8 480 184.1 480c36.3 0 97.3-59.5 146.7-139M294.5 32c71.8 0 138.8 11.6 138.8 52.5 0 82.6-52.5 182.3-78.8 182.3-47.9 0-101.7-132.1-101.7-198.5 0-30.9 11.6-36.3 41.7-36.3"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUber.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUber.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUber.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUber.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUber.js new file mode 100644 index 0000000000..be198af834 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUber.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'uber', icon: [448, 512, [], "f402", "M414.1 32H33.9C15.2 32 0 47.2 0 65.9V446c0 18.8 15.2 34 33.9 34H414c18.7 0 33.9-15.2 33.9-33.9V65.9C448 47.2 432.8 32 414.1 32zM237.6 391.1C163 398.6 96.4 344.2 88.9 269.6h94.4V290c0 3.7 3 6.8 6.8 6.8H258c3.7 0 6.8-3 6.8-6.8v-67.9c0-3.7-3-6.8-6.8-6.8h-67.9c-3.7 0-6.8 3-6.8 6.8v20.4H88.9c7-69.4 65.4-122.2 135.1-122.2 69.7 0 128.1 52.8 135.1 122.2 7.5 74.5-46.9 141.1-121.5 148.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUikit.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUikit.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUikit.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUikit.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUikit.js new file mode 100644 index 0000000000..9c2a9a0afe --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUikit.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'uikit', icon: [448, 512, [], "f403", "M443.9 128v256L218 512 0 384V169.7l87.6 45.1v117l133.5 75.5 135.8-75.5v-151l-101.1-57.6 87.6-53.1L443.9 128zM308.6 49.1L223.8 0l-88.6 54.8 86 47.3 87.4-53z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUniregistry.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUniregistry.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUniregistry.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUniregistry.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUniregistry.js new file mode 100644 index 0000000000..b56ee9733b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUniregistry.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'uniregistry', icon: [384, 512, [], "f404", "M281.1 220.1H384v-14.8H281.1v14.8zm0-37.1H384v-12.4H281.1V183zm0 74.2H384v-17.3H281.1v17.3zm-157.7 86.7H8.5c2.6 8.5 5.8 16.8 9.6 24.8h138.3c-12.9-5.7-24.1-14.2-33-24.8m145.7-12.4h109.7c1.8-7.3 3.1-14.7 3.9-22.3H278.3c-2.1 7.9-5.2 15.4-9.2 22.3m-41.5 37.1H367c3.7-8 5.8-16.2 8.5-24.8h-115c-8.8 10.7-20.1 19.2-32.9 24.8M384 32H281.1v2.5H384V32zM192 480c39.5 0 76.2-11.8 106.8-32.2H85.3C115.8 468.2 152.5 480 192 480m89.1-334.2H384V136H281.1v9.8zm0-37.1H384v-7.4H281.1v7.4zm0-37.1H384v-4.9H281.1v4.9zm-178.2 99H0V183h102.9v-12.4zM38.8 405.7h305.3c6.7-8.5 12.6-17.6 17.8-27.2H23c5.2 9.6 9.2 18.7 15.8 27.2m64.1-118.8v-12.4H0v12.4c0 2.5 0 5 .1 7.4h103.1c-.2-2.4-.3-4.9-.3-7.4m178.2 0c0 2.5-.1 5-.4 7.4h103.1c.1-2.5.2-4.9.2-7.4v-12.4H281.1v12.4zm-203 156h227.7c11.8-8.7 22.7-18.6 32.2-29.7H44.9c9.6 11 21.4 21 33.2 29.7m24.8-376.2H0v4.9h102.9v-4.9zm0-34.7H0v2.5h102.9V32zm0 173.3H0v14.8h102.9v-14.8zm0 34.6H0v17.3h102.9v-17.3zm0-103.9H0v9.9h102.9V136zm0-34.7H0v7.4h102.9v-7.4zm2.8 207.9H1.3c.9 7.6 2.2 15 3.9 22.3h109.7c-4-6.9-7.2-14.4-9.2-22.3"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUntappd.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUntappd.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUntappd.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUntappd.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUntappd.js new file mode 100644 index 0000000000..4dd6056a12 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUntappd.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'untappd', icon: [640, 512, [], "f405", "M401.3 49.9c-79.8 160.1-84.6 152.5-87.9 173.2l-5.2 32.8c-1.9 12-6.6 23.5-13.7 33.4L145.6 497.1c-7.6 10.6-20.4 16.2-33.4 14.6-40.3-5-77.8-32.2-95.3-68.5-5.7-11.8-4.5-25.8 3.1-36.4l148.9-207.9c7.1-9.9 16.4-18 27.2-23.7l29.3-15.5c18.5-9.8 9.7-11.9 135.6-138.9 1-4.8 1-7.3 3.6-8 3-.7 6.6-1 6.3-4.6l-.4-4.6c-.2-1.9 1.3-3.6 3.2-3.6 4.5-.1 13.2 1.2 25.6 10 12.3 8.9 16.4 16.8 17.7 21.1.6 1.8-.6 3.7-2.4 4.2l-4.5 1.1c-3.4.9-2.5 4.4-2.3 7.4.1 2.8-2.3 3.6-6.5 6.1zM230.1 36.4c3.4.9 2.5 4.4 2.3 7.4-.2 2.7 2.1 3.5 6.4 6 7.9 15.9 15.3 30.5 22.2 44 .7 1.3 2.3 1.5 3.3.5 11.2-12 24.6-26.2 40.5-42.6 1.3-1.4 1.4-3.5.1-4.9-8-8.2-16.5-16.9-25.6-26.1-1-4.7-1-7.3-3.6-8-3-.8-6.6-1-6.3-4.6.3-3.3 1.4-8.1-2.8-8.2-4.5-.1-13.2 1.1-25.6 10-12.3 8.9-16.4 16.8-17.7 21.1-1.4 4.2 3.6 4.6 6.8 5.4zM620 406.7L471.2 198.8c-13.2-18.5-26.6-23.4-56.4-39.1-11.2-5.9-14.2-10.9-30.5-28.9-1-1.1-2.9-.9-3.6.5-46.3 88.8-47.1 82.8-49 94.8-1.7 10.7-1.3 20 .3 29.8 1.9 12 6.6 23.5 13.7 33.4l148.9 207.9c7.6 10.6 20.2 16.2 33.1 14.7 40.3-4.9 78-32 95.7-68.6 5.4-11.9 4.3-25.9-3.4-36.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUsb.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUsb.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUsb.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUsb.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUsb.js new file mode 100644 index 0000000000..92d91e16c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUsb.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'usb', icon: [640, 512, [], "f287", "M641.5 256c0 3.1-1.7 6.1-4.5 7.5L547.9 317c-1.4.8-2.8 1.4-4.5 1.4-1.4 0-3.1-.3-4.5-1.1-2.8-1.7-4.5-4.5-4.5-7.8v-35.6H295.7c25.3 39.6 40.5 106.9 69.6 106.9H392V354c0-5 3.9-8.9 8.9-8.9H490c5 0 8.9 3.9 8.9 8.9v89.1c0 5-3.9 8.9-8.9 8.9h-89.1c-5 0-8.9-3.9-8.9-8.9v-26.7h-26.7c-75.4 0-81.1-142.5-124.7-142.5H140.3c-8.1 30.6-35.9 53.5-69 53.5C32 327.3 0 295.3 0 256s32-71.3 71.3-71.3c33.1 0 61 22.8 69 53.5 39.1 0 43.9 9.5 74.6-60.4C255 88.7 273 95.7 323.8 95.7c7.5-20.9 27-35.6 50.4-35.6 29.5 0 53.5 23.9 53.5 53.5s-23.9 53.5-53.5 53.5c-23.4 0-42.9-14.8-50.4-35.6H294c-29.1 0-44.3 67.4-69.6 106.9h310.1v-35.6c0-3.3 1.7-6.1 4.5-7.8 2.8-1.7 6.4-1.4 8.9.3l89.1 53.5c2.8 1.1 4.5 4.1 4.5 7.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUssunnah.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUssunnah.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUssunnah.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUssunnah.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUssunnah.js new file mode 100644 index 0000000000..f26270820a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faUssunnah.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'ussunnah', icon: [512, 512, [], "f407", "M156.8 285.1l5.7 14.4h-8.2c-1.3-3.2-3.1-7.7-3.8-9.5-2.5-6.3-1.1-8.4 0-10 1.9-2.7 3.2-4.4 3.6-5.2 0 2.2.8 5.7 2.7 10.3zm297.3 18.8c-2.1 13.8-5.7 27.1-10.5 39.7l43 23.4-44.8-18.8c-5.3 13.2-12 25.6-19.9 37.2l34.2 30.2-36.8-26.4c-8.4 11.8-18 22.6-28.7 32.3l24.9 34.7-28.1-31.8c-11 9.6-23.1 18-36.1 25.1l15.7 37.2-19.3-35.3c-13.1 6.8-27 12.1-41.6 15.9l6.7 38.4-10.5-37.4c-14.3 3.4-29.2 5.3-44.5 5.4L256 512l-1.9-38.4c-15.3-.1-30.2-2-44.5-5.3L199 505.6l6.7-38.2c-14.6-3.7-28.6-9.1-41.7-15.8l-19.2 35.1 15.6-37c-13-7-25.2-15.4-36.2-25.1l-27.9 31.6 24.7-34.4c-10.7-9.7-20.4-20.5-28.8-32.3l-36.5 26.2 33.9-29.9c-7.9-11.6-14.6-24.1-20-37.3l-44.4 18.7L67.8 344c-4.8-12.7-8.4-26.1-10.5-39.9l-51 9 50.3-14.2c-1.1-8.5-1.7-17.1-1.7-25.9 0-4.7.2-9.4.5-14.1L0 256l56-2.8c1.3-13.1 3.8-25.8 7.5-38.1L6.4 199l58.9 10.4c4-12 9.1-23.5 15.2-34.4l-55.1-30 58.3 24.6C90 159 97.2 149.2 105.3 140L55.8 96.4l53.9 38.7c8.1-8.6 17-16.5 26.6-23.6l-40-55.6 45.6 51.6c9.5-6.6 19.7-12.3 30.3-17.2l-27.3-64.9 33.8 62.1c10.5-4.4 21.4-7.9 32.7-10.4L199 6.4l19.5 69.2c11-2.1 22.3-3.2 33.8-3.4L256 0l3.6 72.2c11.5.2 22.8 1.4 33.8 3.5L313 6.4l-12.4 70.7c11.3 2.6 22.2 6.1 32.6 10.5l33.9-62.2-27.4 65.1c10.6 4.9 20.7 10.7 30.2 17.2l45.8-51.8-40.1 55.9c9.5 7.1 18.4 15 26.5 23.6l54.2-38.9-49.7 43.9c8 9.1 15.2 18.9 21.5 29.4l58.7-24.7-55.5 30.2c6.1 10.9 11.1 22.3 15.1 34.3l59.3-10.4-57.5 16.2c3.7 12.2 6.2 24.9 7.5 37.9L512 256l-56 2.8c.3 4.6.5 9.3.5 14.1 0 8.7-.6 17.3-1.6 25.8l50.7 14.3-51.5-9.1zm-21.8-31c0-97.5-79-176.5-176.5-176.5s-176.5 79-176.5 176.5 79 176.5 176.5 176.5 176.5-79 176.5-176.5zm-24 0c0 84.3-68.3 152.6-152.6 152.6s-152.6-68.3-152.6-152.6 68.3-152.6 152.6-152.6 152.6 68.3 152.6 152.6zM195 241c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-40.7-19c0 2.1 1.3 3.8 3.6 5.1 3.5 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-19 0c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.4 6.8-9.6 10.9-9.6 12.6zm204.9 87.9c-8.4-3-8.7-6.8-8.7-15.6V182c-8.2 12.5-14.2 18.6-18 18.6 6.3 14.4 9.5 23.9 9.5 28.3v64.3c0 2.2-2.2 6.5-4.7 6.5h-18c-2.8-7.5-10.2-26.9-15.3-40.3-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3 2.6 6.7 6.4 16.5 7.9 20.2h-9.2c-3.9-10.4-9.6-25.4-11.8-31.1-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3.8 2 2.8 7.3 4.3 10.9H256c-1.5-4.1-5.6-14.6-8.4-22-2 2.5-7.2 9.2-10.7 13.7 2.5 1.6 4.3 3.6 5.2 6.3.2.6.5 1.4.6 1.7H225c-4.6-13.9-11.4-27.7-11.4-34.1 0-2.2.3-5.1 1.1-8.2-8.8 10.8-14 15.9-14 25 0 7.5 10.4 28.3 10.4 33.3 0 1.7-.5 3.3-1.4 4.9-9.6-12.7-15.5-20.7-18.8-20.7h-12l-11.2-28c-3.8-9.6-5.7-16-5.7-18.8 0-3.8.5-7.7 1.7-12.2-1 1.3-3.7 4.7-5.5 7.1-.8-2.1-3.1-7.7-4.6-11.5-2.1 2.5-7.5 9.1-11.2 13.6.9 2.3 3.3 8.1 4.9 12.2-2.5 3.3-9.1 11.8-13.6 17.7-4 5.3-5.8 13.3-2.7 21.8 2.5 6.7 2 7.9-1.7 14.1H191c5.5 0 14.3 14 15.5 22 13.2-16 15.4-19.6 16.8-21.6h107c3.9 0 7.2-1.9 9.9-5.8zm20.1-26.6V181.7c-9 12.5-15.9 18.6-20.7 18.6 7.1 14.4 10.7 23.9 10.7 28.3v66.3c0 17.5 8.6 20.4 24 20.4 8.1 0 12.5-.8 13.7-2.7-4.3-1.6-7.6-2.5-9.9-3.3-8.1-3.2-17.8-7.4-17.8-26z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVaadin.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVaadin.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVaadin.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVaadin.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVaadin.js new file mode 100644 index 0000000000..4e2c10ddde --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVaadin.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'vaadin', icon: [448, 512, [], "f408", "M224.5 140.7c1.5-17.6 4.9-52.7 49.8-52.7h98.6c20.7 0 32.1-7.8 32.1-21.6V54.1c0-12.2 9.3-22.1 21.5-22.1S448 41.9 448 54.1v36.5c0 42.9-21.5 62-66.8 62H280.7c-30.1 0-33 14.7-33 27.1 0 1.3-.1 2.5-.2 3.7-.7 12.3-10.9 22.2-23.4 22.2s-22.7-9.8-23.4-22.2c-.1-1.2-.2-2.4-.2-3.7 0-12.3-3-27.1-33-27.1H66.8c-45.3 0-66.8-19.1-66.8-62V54.1C0 41.9 9.4 32 21.6 32s21.5 9.9 21.5 22.1v12.3C43.1 80.2 54.5 88 75.2 88h98.6c44.8 0 48.3 35.1 49.8 52.7h.9zM224 456c11.5 0 21.4-7 25.7-16.3 1.1-1.8 97.1-169.6 98.2-171.4 11.9-19.6-3.2-44.3-27.2-44.3-13.9 0-23.3 6.4-29.8 20.3L224 362l-66.9-117.7c-6.4-13.9-15.9-20.3-29.8-20.3-24 0-39.1 24.6-27.2 44.3 1.1 1.9 97.1 169.6 98.2 171.4 4.3 9.3 14.2 16.3 25.7 16.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViacoin.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViacoin.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViacoin.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViacoin.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViacoin.js new file mode 100644 index 0000000000..e8bcdcb7e2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViacoin.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'viacoin', icon: [384, 512, [], "f237", "M384 32h-64l-80.7 192h-94.5L64 32H0l48 112H0v48h68.5l13.8 32H0v48h102.8L192 480l89.2-208H384v-48h-82.3l13.8-32H384v-48h-48l48-112zM192 336l-27-64h54l-27 64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViadeo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViadeo.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViadeo.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViadeo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViadeo.js new file mode 100644 index 0000000000..b12e141d02 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViadeo.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'viadeo', icon: [448, 512, [], "f2a9", "M276.2 150.5v.7C258.3 98.6 233.6 47.8 205.4 0c43.3 29.2 67 100 70.8 150.5zm32.7 121.7c7.6 18.2 11 37.5 11 57 0 77.7-57.8 141-137.8 139.4l3.8-.3c74.2-46.7 109.3-118.6 109.3-205.1 0-38.1-6.5-75.9-18.9-112 1 11.7 1 23.7 1 35.4 0 91.8-18.1 241.6-116.6 280C95 455.2 49.4 398 49.4 329.2c0-75.6 57.4-142.3 135.4-142.3 16.8 0 33.7 3.1 49.1 9.6 1.7-15.1 6.5-29.9 13.4-43.3-19.9-7.2-41.2-10.7-62.5-10.7-161.5 0-238.7 195.9-129.9 313.7 67.9 74.6 192 73.9 259.8 0 56.6-61.3 60.9-142.4 36.4-201-12.7 8-27.1 13.9-42.2 17zM418.1 11.7c-31 66.5-81.3 47.2-115.8 80.1-12.4 12-20.6 34-20.6 50.5 0 14.1 4.5 27.1 12 38.8 47.4-11 98.3-46 118.2-90.7-.7 5.5-4.8 14.4-7.2 19.2-20.3 35.7-64.6 65.6-99.7 84.9 14.8 14.4 33.7 25.8 55 25.8 79 0 110.1-134.6 58.1-208.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViadeoSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViadeoSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViadeoSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViadeoSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViadeoSquare.js new file mode 100644 index 0000000000..52523efdad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViadeoSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'viadeo-square', icon: [448, 512, [], "f2aa", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM280.7 381.2c-42.4 46.2-120 46.6-162.4 0-68-73.6-19.8-196.1 81.2-196.1 13.3 0 26.6 2.1 39.1 6.7-4.3 8.4-7.3 17.6-8.4 27.1-9.7-4.1-20.2-6-30.7-6-48.8 0-84.6 41.7-84.6 88.9 0 43 28.5 78.7 69.5 85.9 61.5-24 72.9-117.6 72.9-175 0-7.3 0-14.8-.6-22.1-11.2-32.9-26.6-64.6-44.2-94.5 27.1 18.3 41.9 62.5 44.2 94.1v.4c7.7 22.5 11.8 46.2 11.8 70 0 54.1-21.9 99-68.3 128.2l-2.4.2c50 1 86.2-38.6 86.2-87.2 0-12.2-2.1-24.3-6.9-35.7 9.5-1.9 18.5-5.6 26.4-10.5 15.3 36.6 12.6 87.3-22.8 125.6zM309 233.7c-13.3 0-25.1-7.1-34.4-16.1 21.9-12 49.6-30.7 62.3-53 1.5-3 4.1-8.6 4.5-12-12.5 27.9-44.2 49.8-73.9 56.7-4.7-7.3-7.5-15.5-7.5-24.3 0-10.3 5.2-24.1 12.9-31.6 21.6-20.5 53-8.5 72.4-50 32.5 46.2 13.1 130.3-36.3 130.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViber.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViber.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViber.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViber.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViber.js new file mode 100644 index 0000000000..463b18e295 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faViber.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'viber', icon: [512, 512, [], "f409", "M444 49.9C431.3 38.2 379.9.9 265.3.4c0 0-135.1-8.1-200.9 52.3C27.8 89.3 14.9 143 13.5 209.5c-1.4 66.5-3.1 191.1 117 224.9h.1l-.1 51.6s-.8 20.9 13 25.1c16.6 5.2 26.4-10.7 42.3-27.8 8.7-9.4 20.7-23.2 29.8-33.7 82.2 6.9 145.3-8.9 152.5-11.2 16.6-5.4 110.5-17.4 125.7-142 15.8-128.6-7.6-209.8-49.8-246.5zM457.9 287c-12.9 104-89 110.6-103 115.1-6 1.9-61.5 15.7-131.2 11.2 0 0-52 62.7-68.2 79-5.3 5.3-11.1 4.8-11-5.7 0-6.9.4-85.7.4-85.7-.1 0-.1 0 0 0-101.8-28.2-95.8-134.3-94.7-189.8 1.1-55.5 11.6-101 42.6-131.6 55.7-50.5 170.4-43 170.4-43 96.9.4 143.3 29.6 154.1 39.4 35.7 30.6 53.9 103.8 40.6 211.1zm-139-80.8c.4 8.6-12.5 9.2-12.9.6-1.1-22-11.4-32.7-32.6-33.9-8.6-.5-7.8-13.4.7-12.9 27.9 1.5 43.4 17.5 44.8 46.2zm20.3 11.3c1-42.4-25.5-75.6-75.8-79.3-8.5-.6-7.6-13.5.9-12.9 58 4.2 88.9 44.1 87.8 92.5-.1 8.6-13.1 8.2-12.9-.3zm47 13.4c.1 8.6-12.9 8.7-12.9.1-.6-81.5-54.9-125.9-120.8-126.4-8.5-.1-8.5-12.9 0-12.9 73.7.5 133 51.4 133.7 139.2zM374.9 329v.2c-10.8 19-31 40-51.8 33.3l-.2-.3c-21.1-5.9-70.8-31.5-102.2-56.5-16.2-12.8-31-27.9-42.4-42.4-10.3-12.9-20.7-28.2-30.8-46.6-21.3-38.5-26-55.7-26-55.7-6.7-20.8 14.2-41 33.3-51.8h.2c9.2-4.8 18-3.2 23.9 3.9 0 0 12.4 14.8 17.7 22.1 5 6.8 11.7 17.7 15.2 23.8 6.1 10.9 2.3 22-3.7 26.6l-12 9.6c-6.1 4.9-5.3 14-5.3 14s17.8 67.3 84.3 84.3c0 0 9.1.8 14-5.3l9.6-12c4.6-6 15.7-9.8 26.6-3.7 14.7 8.3 33.4 21.2 45.8 32.9 7 5.7 8.6 14.4 3.8 23.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVimeo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVimeo.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVimeo.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVimeo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVimeo.js new file mode 100644 index 0000000000..080a6322a4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVimeo.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'vimeo', icon: [448, 512, [], "f40a", "M403.2 32H44.8C20.1 32 0 52.1 0 76.8v358.4C0 459.9 20.1 480 44.8 480h358.4c24.7 0 44.8-20.1 44.8-44.8V76.8c0-24.7-20.1-44.8-44.8-44.8zM377 180.8c-1.4 31.5-23.4 74.7-66 129.4-44 57.2-81.3 85.8-111.7 85.8-18.9 0-34.8-17.4-47.9-52.3-25.5-93.3-36.4-148-57.4-148-2.4 0-10.9 5.1-25.4 15.2l-15.2-19.6c37.3-32.8 72.9-69.2 95.2-71.2 25.2-2.4 40.7 14.8 46.5 51.7 20.7 131.2 29.9 151 67.6 91.6 13.5-21.4 20.8-37.7 21.8-48.9 3.5-33.2-25.9-30.9-45.8-22.4 15.9-52.1 46.3-77.4 91.2-76 33.3.9 49 22.5 47.1 64.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVimeoSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVimeoSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVimeoSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVimeoSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVimeoSquare.js new file mode 100644 index 0000000000..64ed6938bd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVimeoSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'vimeo-square', icon: [448, 512, [], "f194", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16.2 149.6c-1.4 31.1-23.2 73.8-65.3 127.9-43.5 56.5-80.3 84.8-110.4 84.8-18.7 0-34.4-17.2-47.3-51.6-25.2-92.3-35.9-146.4-56.7-146.4-2.4 0-10.8 5-25.1 15.1L64 192c36.9-32.4 72.1-68.4 94.1-70.4 24.9-2.4 40.2 14.6 46 51.1 20.5 129.6 29.6 149.2 66.8 90.5 13.4-21.2 20.6-37.2 21.5-48.3 3.4-32.8-25.6-30.6-45.2-22.2 15.7-51.5 45.8-76.5 90.1-75.1 32.9 1 48.4 22.4 46.5 64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVimeoV.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVimeoV.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVimeoV.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVimeoV.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVimeoV.js new file mode 100644 index 0000000000..59e7891f34 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVimeoV.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'vimeo-v', icon: [448, 512, [], "f27d", "M447.8 153.6c-2 43.6-32.4 103.3-91.4 179.1-60.9 79.2-112.4 118.8-154.6 118.8-26.1 0-48.2-24.1-66.3-72.3C100.3 250 85.3 174.3 56.2 174.3c-3.4 0-15.1 7.1-35.2 21.1L0 168.2c51.6-45.3 100.9-95.7 131.8-98.5 34.9-3.4 56.3 20.5 64.4 71.5 28.7 181.5 41.4 208.9 93.6 126.7 18.7-29.6 28.8-52.1 30.2-67.6 4.8-45.9-35.8-42.8-63.3-31 22-72.1 64.1-107.1 126.2-105.1 45.8 1.2 67.5 31.1 64.9 89.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVine.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVine.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVine.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVine.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVine.js new file mode 100644 index 0000000000..6e3687e505 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVine.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'vine', icon: [384, 512, [], "f1ca", "M384 254.7v52.1c-18.4 4.2-36.9 6.1-52.1 6.1-36.9 77.4-103 143.8-125.1 156.2-14 7.9-27.1 8.4-42.7-.8C137 452 34.2 367.7 0 102.7h74.5C93.2 261.8 139 343.4 189.3 404.5c27.9-27.9 54.8-65.1 75.6-106.9-49.8-25.3-80.1-80.9-80.1-145.6 0-65.6 37.7-115.1 102.2-115.1 114.9 0 106.2 127.9 81.6 181.5 0 0-46.4 9.2-63.5-20.5 3.4-11.3 8.2-30.8 8.2-48.5 0-31.3-11.3-46.6-28.4-46.6-18.2 0-30.8 17.1-30.8 50 .1 79.2 59.4 118.7 129.9 101.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVk.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVk.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVk.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVk.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVk.js new file mode 100644 index 0000000000..6a02741aec --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVk.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'vk', icon: [576, 512, [], "f189", "M545 117.7c3.7-12.5 0-21.7-17.8-21.7h-58.9c-15 0-21.9 7.9-25.6 16.7 0 0-30 73.1-72.4 120.5-13.7 13.7-20 18.1-27.5 18.1-3.7 0-9.4-4.4-9.4-16.9V117.7c0-15-4.2-21.7-16.6-21.7h-92.6c-9.4 0-15 7-15 13.5 0 14.2 21.2 17.5 23.4 57.5v86.8c0 19-3.4 22.5-10.9 22.5-20 0-68.6-73.4-97.4-157.4-5.8-16.3-11.5-22.9-26.6-22.9H38.8c-16.8 0-20.2 7.9-20.2 16.7 0 15.6 20 93.1 93.1 195.5C160.4 378.1 229 416 291.4 416c37.5 0 42.1-8.4 42.1-22.9 0-66.8-3.4-73.1 15.4-73.1 8.7 0 23.7 4.4 58.7 38.1 40 40 46.6 57.9 69 57.9h58.9c16.8 0 25.3-8.4 20.4-25-11.2-34.9-86.9-106.7-90.3-111.5-8.7-11.2-6.2-16.2 0-26.2.1-.1 72-101.3 79.4-135.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVnv.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVnv.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVnv.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVnv.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVnv.js new file mode 100644 index 0000000000..d3c0cc77bf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVnv.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'vnv', icon: [640, 512, [], "f40b", "M104.9 352c-34.1 0-46.4-30.4-46.4-30.4L2.6 210.1S-7.8 192 13 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.7-74.5c5.6-9.5 8.4-18.1 18.8-18.1h32.8c20.8 0 10.4 18.1 10.4 18.1l-55.8 111.5S174.2 352 140 352h-35.1zm395 0c-34.1 0-46.4-30.4-46.4-30.4l-55.9-111.5S387.2 192 408 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.8-74.5c5.6-9.5 8.4-18.1 18.8-18.1H627c20.8 0 10.4 18.1 10.4 18.1l-55.9 111.5S569.3 352 535.1 352h-35.2zM337.6 192c34.1 0 46.4 30.4 46.4 30.4l55.9 111.5s10.4 18.1-10.4 18.1h-32.8c-10.4 0-13.2-8.7-18.8-18.1l-36.7-74.5s-5.2-13.1-21.1-13.1c-15.9 0-21.1 13.1-21.1 13.1l-36.7 74.5c-5.6 9.4-8.4 18.1-18.8 18.1h-32.9c-20.8 0-10.4-18.1-10.4-18.1l55.9-111.5s12.2-30.4 46.4-30.4h35.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVuejs.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVuejs.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVuejs.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVuejs.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVuejs.js new file mode 100644 index 0000000000..814d7fb422 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faVuejs.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'vuejs', icon: [448, 512, [], "f41f", "M356.9 64.3H280l-56 88.6-48-88.6H0L224 448 448 64.3h-91.1zm-301.2 32h53.8L224 294.5 338.4 96.3h53.8L224 384.5 55.7 96.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWeibo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWeibo.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWeibo.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWeibo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWeibo.js new file mode 100644 index 0000000000..92b008a73a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWeibo.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'weibo', icon: [512, 512, [], "f18a", "M407 177.6c7.6-24-13.4-46.8-37.4-41.7-22 4.8-28.8-28.1-7.1-32.8 50.1-10.9 92.3 37.1 76.5 84.8-6.8 21.2-38.8 10.8-32-10.3zM214.8 446.7C108.5 446.7 0 395.3 0 310.4c0-44.3 28-95.4 76.3-143.7C176 67 279.5 65.8 249.9 161c-4 13.1 12.3 5.7 12.3 6 79.5-33.6 140.5-16.8 114 51.4-3.7 9.4 1.1 10.9 8.3 13.1 135.7 42.3 34.8 215.2-169.7 215.2zm143.7-146.3c-5.4-55.7-78.5-94-163.4-85.7-84.8 8.6-148.8 60.3-143.4 116s78.5 94 163.4 85.7c84.8-8.6 148.8-60.3 143.4-116zM347.9 35.1c-25.9 5.6-16.8 43.7 8.3 38.3 72.3-15.2 134.8 52.8 111.7 124-7.4 24.2 29.1 37 37.4 12 31.9-99.8-55.1-195.9-157.4-174.3zm-78.5 311c-17.1 38.8-66.8 60-109.1 46.3-40.8-13.1-58-53.4-40.3-89.7 17.7-35.4 63.1-55.4 103.4-45.1 42 10.8 63.1 50.2 46 88.5zm-86.3-30c-12.9-5.4-30 .3-38 12.9-8.3 12.9-4.3 28 8.6 34 13.1 6 30.8.3 39.1-12.9 8-13.1 3.7-28.3-9.7-34zm32.6-13.4c-5.1-1.7-11.4.6-14.3 5.4-2.9 5.1-1.4 10.6 3.7 12.9 5.1 2 11.7-.3 14.6-5.4 2.8-5.2 1.1-10.9-4-12.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWeixin.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWeixin.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWeixin.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWeixin.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWeixin.js new file mode 100644 index 0000000000..1811376e6c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWeixin.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'weixin', icon: [576, 512, [], "f1d7", "M385.2 167.6c6.4 0 12.6.3 18.8 1.1C387.4 90.3 303.3 32 207.7 32 100.5 32 13 104.8 13 197.4c0 53.4 29.3 97.5 77.9 131.6l-19.3 58.6 68-34.1c24.4 4.8 43.8 9.7 68.2 9.7 6.2 0 12.1-.3 18.3-.8-4-12.9-6.2-26.6-6.2-40.8-.1-84.9 72.9-154 165.3-154zm-104.5-52.9c14.5 0 24.2 9.7 24.2 24.4 0 14.5-9.7 24.2-24.2 24.2-14.8 0-29.3-9.7-29.3-24.2.1-14.7 14.6-24.4 29.3-24.4zm-136.4 48.6c-14.5 0-29.3-9.7-29.3-24.2 0-14.8 14.8-24.4 29.3-24.4 14.8 0 24.4 9.7 24.4 24.4 0 14.6-9.6 24.2-24.4 24.2zM563 319.4c0-77.9-77.9-141.3-165.4-141.3-92.7 0-165.4 63.4-165.4 141.3S305 460.7 397.6 460.7c19.3 0 38.9-5.1 58.6-9.9l53.4 29.3-14.8-48.6C534 402.1 563 363.2 563 319.4zm-219.1-24.5c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.8 0 24.4 9.7 24.4 19.3 0 10-9.7 19.6-24.4 19.6zm107.1 0c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.5 0 24.4 9.7 24.4 19.3.1 10-9.9 19.6-24.4 19.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWhatsapp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWhatsapp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWhatsapp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWhatsapp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWhatsapp.js new file mode 100644 index 0000000000..2a95d5b0a1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWhatsapp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'whatsapp', icon: [448, 512, [], "f232", "M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWhatsappSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWhatsappSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWhatsappSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWhatsappSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWhatsappSquare.js new file mode 100644 index 0000000000..ebab48a2be --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWhatsappSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'whatsapp-square', icon: [448, 512, [], "f40c", "M224 122.8c-72.7 0-131.8 59.1-131.9 131.8 0 24.9 7 49.2 20.2 70.1l3.1 5-13.3 48.6 49.9-13.1 4.8 2.9c20.2 12 43.4 18.4 67.1 18.4h.1c72.6 0 133.3-59.1 133.3-131.8 0-35.2-15.2-68.3-40.1-93.2-25-25-58-38.7-93.2-38.7zm77.5 188.4c-3.3 9.3-19.1 17.7-26.7 18.8-12.6 1.9-22.4.9-47.5-9.9-39.7-17.2-65.7-57.2-67.7-59.8-2-2.6-16.2-21.5-16.2-41s10.2-29.1 13.9-33.1c3.6-4 7.9-5 10.6-5 2.6 0 5.3 0 7.6.1 2.4.1 5.7-.9 8.9 6.8 3.3 7.9 11.2 27.4 12.2 29.4s1.7 4.3.3 6.9c-7.6 15.2-15.7 14.6-11.6 21.6 15.3 26.3 30.6 35.4 53.9 47.1 4 2 6.3 1.7 8.6-1 2.3-2.6 9.9-11.6 12.5-15.5 2.6-4 5.3-3.3 8.9-2 3.6 1.3 23.1 10.9 27.1 12.9s6.6 3 7.6 4.6c.9 1.9.9 9.9-2.4 19.1zM400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM223.9 413.2c-26.6 0-52.7-6.7-75.8-19.3L64 416l22.5-82.2c-13.9-24-21.2-51.3-21.2-79.3C65.4 167.1 136.5 96 223.9 96c42.4 0 82.2 16.5 112.2 46.5 29.9 30 47.9 69.8 47.9 112.2 0 87.4-72.7 158.5-160.1 158.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWhmcs.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWhmcs.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWhmcs.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWhmcs.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWhmcs.js new file mode 100644 index 0000000000..c8389e690a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWhmcs.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'whmcs', icon: [448, 512, [], "f40d", "M448 161v-21.3l-28.5-8.8-2.2-10.4 20.1-20.7L427 80.4l-29 7.5-7.2-7.5 7.5-28.2-19.1-11.6-21.3 21-10.7-3.2-7-26.4h-22.6l-6.2 26.4-12.1 3.2-19.7-21-19.4 11 8.1 27.7-8.1 8.4-28.5-7.5-11 19.1 20.7 21-2.9 10.4-28.5 7.8-.3 21.7 28.8 7.5 2.4 12.1-20.1 19.9 10.4 18.5 29.6-7.5 7.2 8.6-8.1 26.9 19.9 11.6 19.4-20.4 11.6 2.9 6.7 28.5 22.6.3 6.7-28.8 11.6-3.5 20.7 21.6 20.4-12.1-8.8-28 7.8-8.1 28.8 8.8 10.3-20.1-20.9-18.8 2.2-12.1 29.1-7zm-119.2 45.2c-31.3 0-56.8-25.4-56.8-56.8s25.4-56.8 56.8-56.8 56.8 25.4 56.8 56.8c0 31.5-25.4 56.8-56.8 56.8zm72.3 16.4l46.9 14.5V277l-55.1 13.4-4.1 22.7 38.9 35.3-19.2 37.9-54-16.7-14.6 15.2 16.7 52.5-38.3 22.7-38.9-40.5-21.7 6.6-12.6 54-42.4-.5-12.6-53.6-21.7-5.6-36.4 38.4-37.4-21.7 15.2-50.5-13.7-16.1-55.5 14.1-19.7-34.8 37.9-37.4-4.8-22.8-54-14.1.5-40.9L54 219.9l5.7-19.7-38.9-39.4L41.5 125l53.6 14.1 15.2-15.7-15.2-52 36.4-20.7 36.8 39.4L191 84l11.6-52H245l11.6 45.9L234 72l-6.3-1.7-3.3 5.7-11 19.1-3.3 5.6 4.6 4.6 17.2 17.4-.3 1-23.8 6.5-6.2 1.7-.1 6.4-.2 12.9C153.8 161.6 118 204 118 254.7c0 58.3 47.3 105.7 105.7 105.7 50.5 0 92.7-35.4 103.2-82.8l13.2.2 6.9.1 1.6-6.7 5.6-24 1.9-.6 17.1 17.8 4.7 4.9 5.8-3.4 20.4-12.1 5.8-3.5-2-6.5-6.8-21.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWikipediaW.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWikipediaW.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWikipediaW.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWikipediaW.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWikipediaW.js new file mode 100644 index 0000000000..866ea9cc2b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWikipediaW.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'wikipedia-w', icon: [640, 512, [], "f266", "M640 51.2l-.3 12.2c-28.1.8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3.3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4.2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5.3v13.1c-19.4.6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4.3-3.6 0-10.3.3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5.8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1.2.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWindows.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWindows.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWindows.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWindows.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWindows.js new file mode 100644 index 0000000000..1748104bf8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWindows.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'windows', icon: [448, 512, [], "f17a", "M0 93.7l183.6-25.3v177.4H0V93.7zm0 324.6l183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWolfPackBattalion.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWolfPackBattalion.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWolfPackBattalion.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWolfPackBattalion.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWolfPackBattalion.js new file mode 100644 index 0000000000..627debd8dc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWolfPackBattalion.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'wolf-pack-battalion', icon: [456, 512, [], "f514", "M239.73 471.53l10.56 15.84 5.28-12.32 5.28 7.04V512c21.06-7.92 21.11-66.86 25.51-97.21 4.62-31.89-.88-92.81 81.37-149.11-8.88-23.61-12-49.43-2.64-80.05 27.87 3.34 53.94 10.58 63.34 54.1l-30.35 8.36c11.15 23.04 17.01 46.76 13.2 72.14L384 313.18l-6.16 33.43-18.47-7.04-8.8 33.43-19.35-7.04 26.39 21.11 8.8-28.15 24.63 5.28 7.04-35.63 26.39 14.52c.25-20.02 6.97-58.06-8.8-84.45l26.39 5.28c3.99-22.07-2.38-39.21-7.92-56.74l22.43 9.68c-.44-25.07-29.94-56.79-61.58-58.5-20.22-1.09-56.74-25.17-54.1-51.9 1.96-19.87 17.45-42.62 43.11-49.7-43.99 36.51-9.68 67.3 5.28 73.46 4.4-11.44 17.54-69.08 0-130.2-40.47 22.87-89.73 65.1-93.25 147.79l-58.06 38.71-3.52 93.25 107.33-59.82 7.04 7.04-17.59 3.52-43.99 38.71-15.84-5.28-28.15 49.26-3.52 119.64 21.11 15.84-32.55 15.84-32.55-15.84 21.11-15.84-3.52-119.64-28.15-49.26-15.84 5.28-43.99-38.71-17.59-3.52 7.04-7.04 107.33 59.82-3.52-93.25-58.06-38.71C157.03 65.1 107.77 22.87 67.3 0c-17.54 61.12-4.4 118.76 0 130.2 14.96-6.16 49.26-36.95 5.28-73.46 25.66 7.08 41.15 29.83 43.11 49.7 2.63 26.74-33.88 50.81-54.1 51.9C29.94 160.06.44 191.78 0 216.85l22.43-9.68c-5.54 17.53-11.91 34.67-7.92 56.74l26.39-5.28c-15.76 26.39-9.05 64.43-8.8 84.45l26.39-14.52 7.04 35.63 24.63-5.28 8.8 28.15 26.39-21.11-19.34 7.05-8.8-33.43-18.47 7.04-6.16-33.43-27.27 7.04c-3.82-25.38 2.05-49.1 13.2-72.14l-30.35-8.36c9.4-43.52 35.47-50.77 63.34-54.1 9.36 30.62 6.24 56.45-2.64 80.05 82.25 56.3 76.75 117.23 81.37 149.11 4.4 30.35 4.45 89.29 25.51 97.21v-29.91l5.28-7.04 5.28 12.32 10.56-15.84 11.44 21.11 11.43-21.1zm79.17-95.01l-15.84-10.56c7.47-4.36 13.76-8.42 19.35-12.32-.6 7.26-.27 13.88-3.51 22.88zm28.15-49.26c-.4 10.94-.9 21.66-1.76 31.67-7.85-1.86-15.57-3.8-21.11-7.04 8.24-7.9 15.55-16.27 22.87-24.63zm24.63 5.28c-.02-13.43-2.05-24.21-5.28-33.43-5.38 9.09-11.23 18.18-18.47 27.27l23.75 6.16zm3.52-80.94c19.44 12.81 27.8 33.66 29.91 56.3-12.32-4.53-24.63-9.31-36.95-10.56 5.06-11.99 6.65-28.14 7.04-45.74zm-1.76-45.74c.81 14.3 1.84 28.82 1.76 42.23 19.22-8.11 29.78-9.72 43.99-14.08-10.6-18.95-27.22-25.52-45.75-28.15zM137.68 376.52l15.84-10.56c-7.47-4.36-13.76-8.42-19.35-12.32.6 7.26.27 13.88 3.51 22.88zm-28.15-49.26c.4 10.94.9 21.66 1.76 31.67 7.85-1.86 15.57-3.8 21.11-7.04-8.24-7.9-15.55-16.27-22.87-24.63zm-24.64 5.28c.02-13.43 2.05-24.21 5.28-33.43 5.38 9.09 11.23 18.18 18.47 27.27l-23.75 6.16zm-3.52-80.94c-19.44 12.81-27.8 33.66-29.91 56.3 12.32-4.53 24.63-9.31 36.95-10.56-5.05-11.99-6.65-28.14-7.04-45.74zm1.76-45.74c-.81 14.3-1.84 28.82-1.76 42.23-19.22-8.11-29.78-9.72-43.99-14.08 10.61-18.95 27.22-25.52 45.75-28.15z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWordpress.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWordpress.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWordpress.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWordpress.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWordpress.js new file mode 100644 index 0000000000..810100b667 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWordpress.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'wordpress', icon: [512, 512, [], "f19a", "M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWordpressSimple.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWordpressSimple.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWordpressSimple.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWordpressSimple.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWordpressSimple.js new file mode 100644 index 0000000000..866284cb25 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWordpressSimple.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'wordpress-simple', icon: [512, 512, [], "f411", "M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8zM33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256zm223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6zm30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3-80.7-239.6zm81.4 297.2l68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWpbeginner.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWpbeginner.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWpbeginner.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWpbeginner.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWpbeginner.js new file mode 100644 index 0000000000..b076958ffb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWpbeginner.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'wpbeginner', icon: [512, 512, [], "f297", "M462.799 322.374C519.01 386.682 466.961 480 370.944 480c-39.602 0-78.824-17.687-100.142-50.04-6.887.356-22.702.356-29.59 0C219.848 462.381 180.588 480 141.069 480c-95.49 0-148.348-92.996-91.855-157.626C-29.925 190.523 80.479 32 256.006 32c175.632 0 285.87 158.626 206.793 290.374zm-339.647-82.972h41.529v-58.075h-41.529v58.075zm217.18 86.072v-23.839c-60.506 20.915-132.355 9.198-187.589-33.971l.246 24.897c51.101 46.367 131.746 57.875 187.343 32.913zm-150.753-86.072h166.058v-58.075H189.579v58.075z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWpexplorer.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWpexplorer.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWpexplorer.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWpexplorer.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWpexplorer.js new file mode 100644 index 0000000000..db1f9cc514 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWpexplorer.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'wpexplorer', icon: [512, 512, [], "f2de", "M512 256c0 141.2-114.7 256-256 256C114.8 512 0 397.3 0 256S114.7 0 256 0s256 114.7 256 256zm-32 0c0-123.2-100.3-224-224-224C132.5 32 32 132.5 32 256s100.5 224 224 224 224-100.5 224-224zM160.9 124.6l86.9 37.1-37.1 86.9-86.9-37.1 37.1-86.9zm110 169.1l46.6 94h-14.6l-50-100-48.9 100h-14l51.1-106.9-22.3-9.4 6-14 68.6 29.1-6 14.3-16.5-7.1zm-11.8-116.3l68.6 29.4-29.4 68.3L230 246l29.1-68.6zm80.3 42.9l54.6 23.1-23.4 54.3-54.3-23.1 23.1-54.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWpforms.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWpforms.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWpforms.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWpforms.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWpforms.js new file mode 100644 index 0000000000..abc5b325e2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faWpforms.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'wpforms', icon: [448, 512, [], "f298", "M448 75.2v361.7c0 24.3-19 43.2-43.2 43.2H43.2C19.3 480 0 461.4 0 436.8V75.2C0 51.1 18.8 32 43.2 32h361.7c24 0 43.1 18.8 43.1 43.2zm-37.3 361.6V75.2c0-3-2.6-5.8-5.8-5.8h-9.3L285.3 144 224 94.1 162.8 144 52.5 69.3h-9.3c-3.2 0-5.8 2.8-5.8 5.8v361.7c0 3 2.6 5.8 5.8 5.8h361.7c3.2.1 5.8-2.7 5.8-5.8zM150.2 186v37H76.7v-37h73.5zm0 74.4v37.3H76.7v-37.3h73.5zm11.1-147.3l54-43.7H96.8l64.5 43.7zm210 72.9v37h-196v-37h196zm0 74.4v37.3h-196v-37.3h196zm-84.6-147.3l64.5-43.7H232.8l53.9 43.7zM371.3 335v37.3h-99.4V335h99.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faXbox.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faXbox.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faXbox.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faXbox.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faXbox.js new file mode 100644 index 0000000000..b5afdb366c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faXbox.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'xbox', icon: [512, 512, [], "f412", "M369.9 318.2c44.3 54.3 64.7 98.8 54.4 118.7-7.9 15.1-56.7 44.6-92.6 55.9-29.6 9.3-68.4 13.3-100.4 10.2-38.2-3.7-76.9-17.4-110.1-39C93.3 445.8 87 438.3 87 423.4c0-29.9 32.9-82.3 89.2-142.1 32-33.9 76.5-73.7 81.4-72.6 9.4 2.1 84.3 75.1 112.3 109.5zM188.6 143.8c-29.7-26.9-58.1-53.9-86.4-63.4-15.2-5.1-16.3-4.8-28.7 8.1-29.2 30.4-53.5 79.7-60.3 122.4-5.4 34.2-6.1 43.8-4.2 60.5 5.6 50.5 17.3 85.4 40.5 120.9 9.5 14.6 12.1 17.3 9.3 9.9-4.2-11-.3-37.5 9.5-64 14.3-39 53.9-112.9 120.3-194.4zm311.6 63.5C483.3 127.3 432.7 77 425.6 77c-7.3 0-24.2 6.5-36 13.9-23.3 14.5-41 31.4-64.3 52.8C367.7 197 427.5 283.1 448.2 346c6.8 20.7 9.7 41.1 7.4 52.3-1.7 8.5-1.7 8.5 1.4 4.6 6.1-7.7 19.9-31.3 25.4-43.5 7.4-16.2 15-40.2 18.6-58.7 4.3-22.5 3.9-70.8-.8-93.4zM141.3 43C189 40.5 251 77.5 255.6 78.4c.7.1 10.4-4.2 21.6-9.7 63.9-31.1 94-25.8 107.4-25.2-63.9-39.3-152.7-50-233.9-11.7-23.4 11.1-24 11.9-9.4 11.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faXing.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faXing.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faXing.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faXing.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faXing.js new file mode 100644 index 0000000000..fcd0b76551 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faXing.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'xing', icon: [384, 512, [], "f168", "M162.7 210c-1.8 3.3-25.2 44.4-70.1 123.5-4.9 8.3-10.8 12.5-17.7 12.5H9.8c-7.7 0-12.1-7.5-8.5-14.4l69-121.3c.2 0 .2-.1 0-.3l-43.9-75.6c-4.3-7.8.3-14.1 8.5-14.1H100c7.3 0 13.3 4.1 18 12.2l44.7 77.5zM382.6 46.1l-144 253v.3L330.2 466c3.9 7.1.2 14.1-8.5 14.1h-65.2c-7.6 0-13.6-4-18-12.2l-92.4-168.5c3.3-5.8 51.5-90.8 144.8-255.2 4.6-8.1 10.4-12.2 17.5-12.2h65.7c8 0 12.3 6.7 8.5 14.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faXingSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faXingSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faXingSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faXingSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faXingSquare.js new file mode 100644 index 0000000000..06344903d9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faXingSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'xing-square', icon: [448, 512, [], "f169", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM140.4 320.2H93.8c-5.5 0-8.7-5.3-6-10.3l49.3-86.7c.1 0 .1-.1 0-.2l-31.4-54c-3-5.6.2-10.1 6-10.1h46.6c5.2 0 9.5 2.9 12.9 8.7l31.9 55.3c-1.3 2.3-18 31.7-50.1 88.2-3.5 6.2-7.7 9.1-12.6 9.1zm219.7-214.1L257.3 286.8v.2l65.5 119c2.8 5.1.1 10.1-6 10.1h-46.6c-5.5 0-9.7-2.9-12.9-8.7l-66-120.3c2.3-4.1 36.8-64.9 103.4-182.3 3.3-5.8 7.4-8.7 12.5-8.7h46.9c5.7-.1 8.8 4.7 6 10z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYCombinator.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYCombinator.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYCombinator.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYCombinator.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYCombinator.js new file mode 100644 index 0000000000..701c08c870 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYCombinator.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'y-combinator', icon: [448, 512, [], "f23b", "M448 32v448H0V32h448zM236 287.5L313.5 142h-32.7L235 233c-4.7 9.3-9 18.3-12.8 26.8L210 233l-45.2-91h-35l76.7 143.8v94.5H236v-92.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYahoo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYahoo.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYahoo.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYahoo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYahoo.js new file mode 100644 index 0000000000..71ebe3eb9c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYahoo.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'yahoo', icon: [448, 512, [], "f19e", "M252 292l4 220c-12.7-2.2-23.5-3.9-32.3-3.9-8.4 0-19.2 1.7-32.3 3.9l4-220C140.4 197.2 85 95.2 21.4 0c11.9 3.1 23 3.9 33.2 3.9 9 0 20.4-.8 34.1-3.9 40.9 72.2 82.1 138.7 135 225.5C261 163.9 314.8 81.4 358.6 0c11.1 2.9 22 3.9 32.9 3.9 11.5 0 23.2-1 35-3.9C392.1 47.9 294.9 216.9 252 292z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYandex.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYandex.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYandex.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYandex.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYandex.js new file mode 100644 index 0000000000..e9230e7740 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYandex.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'yandex', icon: [256, 512, [], "f413", "M153.1 315.8L65.7 512H2l96-209.8c-45.1-22.9-75.2-64.4-75.2-141.1C22.7 53.7 90.8 0 171.7 0H254v512h-55.1V315.8h-45.8zm45.8-269.3h-29.4c-44.4 0-87.4 29.4-87.4 114.6 0 82.3 39.4 108.8 87.4 108.8h29.4V46.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYandexInternational.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYandexInternational.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYandexInternational.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYandexInternational.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYandexInternational.js new file mode 100644 index 0000000000..432c918aad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYandexInternational.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'yandex-international', icon: [320, 512, [], "f414", "M129.5 512V345.9L18.5 48h55.8l81.8 229.7L250.2 0h51.3L180.8 347.8V512h-51.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYelp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYelp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYelp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYelp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYelp.js new file mode 100644 index 0000000000..1b6e3216db --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYelp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'yelp', icon: [384, 512, [], "f1e9", "M136.9 328c-1 .3-109.2 35.7-115.8 35.7-15.2-.9-18.5-16.2-19.9-31.2-1.5-14.2-1.4-29.8.3-46.8 1.9-18.8 5.5-45.1 24.2-44 4.8 0 67.1 25.9 112.7 44.4 17.1 6.8 18.6 35.8-1.5 41.9zm57.9-113.9c1.8 38.2-25.5 48.5-47.2 14.3L41.3 60.4c-1.5-6.6.3-12.4 5.3-17.4C62.2 26.5 146 3.2 168.1 8.9c7.5 1.9 12.1 6.1 13.8 12.6 1.3 8.3 11.5 167.4 12.9 192.6zm-1.4 164.8c0 4.6.2 116.4-1.7 121.5-2.3 6-7 9.7-14.3 11.2-10.1 1.7-27.1-1.9-51-10.7-22-8.1-56.7-21.5-49.3-42.5 2.8-6.9 51.4-62.8 77.3-93.6 12-15.2 39.8-5.5 39 14.1zm180.2-117.8c-5.6 3.7-110.8 28.2-118.1 30.6l.3-.6c-18.1 4.7-35.4-18.5-23.3-34.6 3.7-3.7 65.9-92.4 72.8-97 5.2-3.6 11.3-3.8 18.3-.6 18.4 8.8 55.1 63.1 57.4 84.6-.1 2.9 1.2 11.7-7.4 17.6zm10.1 130.7c-2.7 20.6-44.5 73.4-63.8 81-6.9 2.6-12.9 2-17.7-2-5-3.5-61.8-97.1-64.9-102.3-10.9-16.2 6.8-39.8 25.6-33.2 0 0 110.5 35.7 114.7 39.4 5.2 4.1 7.2 9.8 6.1 17.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYoast.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYoast.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYoast.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYoast.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYoast.js new file mode 100644 index 0000000000..06a4133102 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYoast.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'yoast', icon: [448, 512, [], "f2b1", "M91.3 76h186l-7 18.9h-179c-39.7 0-71.9 31.6-71.9 70.3v205.4c0 35.4 24.9 70.3 84 70.3V460H91.3C41.2 460 0 419.8 0 370.5V165.2C0 115.9 40.7 76 91.3 76zm229.1-56h66.5C243.1 398.1 241.2 418.9 202.2 459.3c-20.8 21.6-49.3 31.7-78.3 32.7v-51.1c49.2-7.7 64.6-49.9 64.6-75.3 0-20.1.6-12.6-82.1-223.2h61.4L218.2 299 320.4 20zM448 161.5V460H234c6.6-9.6 10.7-16.3 12.1-19.4h182.5V161.5c0-32.5-17.1-51.9-48.2-62.9l6.7-17.6c41.7 13.6 60.9 43.1 60.9 80.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYoutube.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYoutube.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYoutube.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYoutube.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYoutube.js new file mode 100644 index 0000000000..0492d3369a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYoutube.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'youtube', icon: [576, 512, [], "f167", "M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYoutubeSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYoutubeSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYoutubeSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYoutubeSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYoutubeSquare.js new file mode 100644 index 0000000000..cf5fb8bfee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/faYoutubeSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fab', iconName: 'youtube-square', icon: [448, 512, [], "f431", "M186.8 202.1l95.2 54.1-95.2 54.1V202.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-42 176.3s0-59.6-7.6-88.2c-4.2-15.8-16.5-28.2-32.2-32.4C337.9 128 224 128 224 128s-113.9 0-142.2 7.7c-15.7 4.2-28 16.6-32.2 32.4-7.6 28.5-7.6 88.2-7.6 88.2s0 59.6 7.6 88.2c4.2 15.8 16.5 27.7 32.2 31.9C110.1 384 224 384 224 384s113.9 0 142.2-7.7c15.7-4.2 28-16.1 32.2-31.9 7.6-28.5 7.6-88.1 7.6-88.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/index.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/index.d.ts new file mode 100644 index 0000000000..3d8087cf8b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/index.d.ts @@ -0,0 +1,367 @@ +import { IconDefinition, IconLookup, IconName, IconPrefix, IconPack } from '@fortawesome/fontawesome-common-types'; +export { IconDefinition, IconLookup, IconName, IconPrefix, IconPack } from '@fortawesome/fontawesome-common-types'; +declare const pack: IconPack; +export default pack; +export const fa500px: IconDefinition; +export const faAccessibleIcon: IconDefinition; +export const faAccusoft: IconDefinition; +export const faAdn: IconDefinition; +export const faAdversal: IconDefinition; +export const faAffiliatetheme: IconDefinition; +export const faAlgolia: IconDefinition; +export const faAmazon: IconDefinition; +export const faAmazonPay: IconDefinition; +export const faAmilia: IconDefinition; +export const faAndroid: IconDefinition; +export const faAngellist: IconDefinition; +export const faAngrycreative: IconDefinition; +export const faAngular: IconDefinition; +export const faAppStore: IconDefinition; +export const faAppStoreIos: IconDefinition; +export const faApper: IconDefinition; +export const faApple: IconDefinition; +export const faApplePay: IconDefinition; +export const faAsymmetrik: IconDefinition; +export const faAudible: IconDefinition; +export const faAutoprefixer: IconDefinition; +export const faAvianex: IconDefinition; +export const faAviato: IconDefinition; +export const faAws: IconDefinition; +export const faBandcamp: IconDefinition; +export const faBehance: IconDefinition; +export const faBehanceSquare: IconDefinition; +export const faBimobject: IconDefinition; +export const faBitbucket: IconDefinition; +export const faBitcoin: IconDefinition; +export const faBity: IconDefinition; +export const faBlackTie: IconDefinition; +export const faBlackberry: IconDefinition; +export const faBlogger: IconDefinition; +export const faBloggerB: IconDefinition; +export const faBluetooth: IconDefinition; +export const faBluetoothB: IconDefinition; +export const faBtc: IconDefinition; +export const faBuromobelexperte: IconDefinition; +export const faBuysellads: IconDefinition; +export const faCcAmazonPay: IconDefinition; +export const faCcAmex: IconDefinition; +export const faCcApplePay: IconDefinition; +export const faCcDinersClub: IconDefinition; +export const faCcDiscover: IconDefinition; +export const faCcJcb: IconDefinition; +export const faCcMastercard: IconDefinition; +export const faCcPaypal: IconDefinition; +export const faCcStripe: IconDefinition; +export const faCcVisa: IconDefinition; +export const faCentercode: IconDefinition; +export const faChrome: IconDefinition; +export const faCloudscale: IconDefinition; +export const faCloudsmith: IconDefinition; +export const faCloudversify: IconDefinition; +export const faCodepen: IconDefinition; +export const faCodiepie: IconDefinition; +export const faConnectdevelop: IconDefinition; +export const faContao: IconDefinition; +export const faCpanel: IconDefinition; +export const faCreativeCommons: IconDefinition; +export const faCreativeCommonsBy: IconDefinition; +export const faCreativeCommonsNc: IconDefinition; +export const faCreativeCommonsNcEu: IconDefinition; +export const faCreativeCommonsNcJp: IconDefinition; +export const faCreativeCommonsNd: IconDefinition; +export const faCreativeCommonsPd: IconDefinition; +export const faCreativeCommonsPdAlt: IconDefinition; +export const faCreativeCommonsRemix: IconDefinition; +export const faCreativeCommonsSa: IconDefinition; +export const faCreativeCommonsSampling: IconDefinition; +export const faCreativeCommonsSamplingPlus: IconDefinition; +export const faCreativeCommonsShare: IconDefinition; +export const faCss3: IconDefinition; +export const faCss3Alt: IconDefinition; +export const faCuttlefish: IconDefinition; +export const faDAndD: IconDefinition; +export const faDashcube: IconDefinition; +export const faDelicious: IconDefinition; +export const faDeploydog: IconDefinition; +export const faDeskpro: IconDefinition; +export const faDeviantart: IconDefinition; +export const faDigg: IconDefinition; +export const faDigitalOcean: IconDefinition; +export const faDiscord: IconDefinition; +export const faDiscourse: IconDefinition; +export const faDochub: IconDefinition; +export const faDocker: IconDefinition; +export const faDraft2digital: IconDefinition; +export const faDribbble: IconDefinition; +export const faDribbbleSquare: IconDefinition; +export const faDropbox: IconDefinition; +export const faDrupal: IconDefinition; +export const faDyalog: IconDefinition; +export const faEarlybirds: IconDefinition; +export const faEbay: IconDefinition; +export const faEdge: IconDefinition; +export const faElementor: IconDefinition; +export const faEmber: IconDefinition; +export const faEmpire: IconDefinition; +export const faEnvira: IconDefinition; +export const faErlang: IconDefinition; +export const faEthereum: IconDefinition; +export const faEtsy: IconDefinition; +export const faExpeditedssl: IconDefinition; +export const faFacebook: IconDefinition; +export const faFacebookF: IconDefinition; +export const faFacebookMessenger: IconDefinition; +export const faFacebookSquare: IconDefinition; +export const faFirefox: IconDefinition; +export const faFirstOrder: IconDefinition; +export const faFirstOrderAlt: IconDefinition; +export const faFirstdraft: IconDefinition; +export const faFlickr: IconDefinition; +export const faFlipboard: IconDefinition; +export const faFly: IconDefinition; +export const faFontAwesome: IconDefinition; +export const faFontAwesomeAlt: IconDefinition; +export const faFontAwesomeFlag: IconDefinition; +export const faFontAwesomeLogoFull: IconDefinition; +export const faFonticons: IconDefinition; +export const faFonticonsFi: IconDefinition; +export const faFortAwesome: IconDefinition; +export const faFortAwesomeAlt: IconDefinition; +export const faForumbee: IconDefinition; +export const faFoursquare: IconDefinition; +export const faFreeCodeCamp: IconDefinition; +export const faFreebsd: IconDefinition; +export const faFulcrum: IconDefinition; +export const faGalacticRepublic: IconDefinition; +export const faGalacticSenate: IconDefinition; +export const faGetPocket: IconDefinition; +export const faGg: IconDefinition; +export const faGgCircle: IconDefinition; +export const faGit: IconDefinition; +export const faGitSquare: IconDefinition; +export const faGithub: IconDefinition; +export const faGithubAlt: IconDefinition; +export const faGithubSquare: IconDefinition; +export const faGitkraken: IconDefinition; +export const faGitlab: IconDefinition; +export const faGitter: IconDefinition; +export const faGlide: IconDefinition; +export const faGlideG: IconDefinition; +export const faGofore: IconDefinition; +export const faGoodreads: IconDefinition; +export const faGoodreadsG: IconDefinition; +export const faGoogle: IconDefinition; +export const faGoogleDrive: IconDefinition; +export const faGooglePlay: IconDefinition; +export const faGooglePlus: IconDefinition; +export const faGooglePlusG: IconDefinition; +export const faGooglePlusSquare: IconDefinition; +export const faGoogleWallet: IconDefinition; +export const faGratipay: IconDefinition; +export const faGrav: IconDefinition; +export const faGripfire: IconDefinition; +export const faGrunt: IconDefinition; +export const faGulp: IconDefinition; +export const faHackerNews: IconDefinition; +export const faHackerNewsSquare: IconDefinition; +export const faHips: IconDefinition; +export const faHireAHelper: IconDefinition; +export const faHooli: IconDefinition; +export const faHotjar: IconDefinition; +export const faHouzz: IconDefinition; +export const faHtml5: IconDefinition; +export const faHubspot: IconDefinition; +export const faImdb: IconDefinition; +export const faInstagram: IconDefinition; +export const faInternetExplorer: IconDefinition; +export const faIoxhost: IconDefinition; +export const faItunes: IconDefinition; +export const faItunesNote: IconDefinition; +export const faJava: IconDefinition; +export const faJediOrder: IconDefinition; +export const faJenkins: IconDefinition; +export const faJoget: IconDefinition; +export const faJoomla: IconDefinition; +export const faJs: IconDefinition; +export const faJsSquare: IconDefinition; +export const faJsfiddle: IconDefinition; +export const faKeybase: IconDefinition; +export const faKeycdn: IconDefinition; +export const faKickstarter: IconDefinition; +export const faKickstarterK: IconDefinition; +export const faKorvue: IconDefinition; +export const faLaravel: IconDefinition; +export const faLastfm: IconDefinition; +export const faLastfmSquare: IconDefinition; +export const faLeanpub: IconDefinition; +export const faLess: IconDefinition; +export const faLine: IconDefinition; +export const faLinkedin: IconDefinition; +export const faLinkedinIn: IconDefinition; +export const faLinode: IconDefinition; +export const faLinux: IconDefinition; +export const faLyft: IconDefinition; +export const faMagento: IconDefinition; +export const faMandalorian: IconDefinition; +export const faMastodon: IconDefinition; +export const faMaxcdn: IconDefinition; +export const faMedapps: IconDefinition; +export const faMedium: IconDefinition; +export const faMediumM: IconDefinition; +export const faMedrt: IconDefinition; +export const faMeetup: IconDefinition; +export const faMicrosoft: IconDefinition; +export const faMix: IconDefinition; +export const faMixcloud: IconDefinition; +export const faMizuni: IconDefinition; +export const faModx: IconDefinition; +export const faMonero: IconDefinition; +export const faNapster: IconDefinition; +export const faNintendoSwitch: IconDefinition; +export const faNode: IconDefinition; +export const faNodeJs: IconDefinition; +export const faNpm: IconDefinition; +export const faNs8: IconDefinition; +export const faNutritionix: IconDefinition; +export const faOdnoklassniki: IconDefinition; +export const faOdnoklassnikiSquare: IconDefinition; +export const faOldRepublic: IconDefinition; +export const faOpencart: IconDefinition; +export const faOpenid: IconDefinition; +export const faOpera: IconDefinition; +export const faOptinMonster: IconDefinition; +export const faOsi: IconDefinition; +export const faPage4: IconDefinition; +export const faPagelines: IconDefinition; +export const faPalfed: IconDefinition; +export const faPatreon: IconDefinition; +export const faPaypal: IconDefinition; +export const faPeriscope: IconDefinition; +export const faPhabricator: IconDefinition; +export const faPhoenixFramework: IconDefinition; +export const faPhoenixSquadron: IconDefinition; +export const faPhp: IconDefinition; +export const faPiedPiper: IconDefinition; +export const faPiedPiperAlt: IconDefinition; +export const faPiedPiperHat: IconDefinition; +export const faPiedPiperPp: IconDefinition; +export const faPinterest: IconDefinition; +export const faPinterestP: IconDefinition; +export const faPinterestSquare: IconDefinition; +export const faPlaystation: IconDefinition; +export const faProductHunt: IconDefinition; +export const faPushed: IconDefinition; +export const faPython: IconDefinition; +export const faQq: IconDefinition; +export const faQuinscape: IconDefinition; +export const faQuora: IconDefinition; +export const faRProject: IconDefinition; +export const faRavelry: IconDefinition; +export const faReact: IconDefinition; +export const faReadme: IconDefinition; +export const faRebel: IconDefinition; +export const faRedRiver: IconDefinition; +export const faReddit: IconDefinition; +export const faRedditAlien: IconDefinition; +export const faRedditSquare: IconDefinition; +export const faRendact: IconDefinition; +export const faRenren: IconDefinition; +export const faReplyd: IconDefinition; +export const faResearchgate: IconDefinition; +export const faResolving: IconDefinition; +export const faRocketchat: IconDefinition; +export const faRockrms: IconDefinition; +export const faSafari: IconDefinition; +export const faSass: IconDefinition; +export const faSchlix: IconDefinition; +export const faScribd: IconDefinition; +export const faSearchengin: IconDefinition; +export const faSellcast: IconDefinition; +export const faSellsy: IconDefinition; +export const faServicestack: IconDefinition; +export const faShirtsinbulk: IconDefinition; +export const faSimplybuilt: IconDefinition; +export const faSistrix: IconDefinition; +export const faSith: IconDefinition; +export const faSkyatlas: IconDefinition; +export const faSkype: IconDefinition; +export const faSlack: IconDefinition; +export const faSlackHash: IconDefinition; +export const faSlideshare: IconDefinition; +export const faSnapchat: IconDefinition; +export const faSnapchatGhost: IconDefinition; +export const faSnapchatSquare: IconDefinition; +export const faSoundcloud: IconDefinition; +export const faSpeakap: IconDefinition; +export const faSpotify: IconDefinition; +export const faStackExchange: IconDefinition; +export const faStackOverflow: IconDefinition; +export const faStaylinked: IconDefinition; +export const faSteam: IconDefinition; +export const faSteamSquare: IconDefinition; +export const faSteamSymbol: IconDefinition; +export const faStickerMule: IconDefinition; +export const faStrava: IconDefinition; +export const faStripe: IconDefinition; +export const faStripeS: IconDefinition; +export const faStudiovinari: IconDefinition; +export const faStumbleupon: IconDefinition; +export const faStumbleuponCircle: IconDefinition; +export const faSuperpowers: IconDefinition; +export const faSupple: IconDefinition; +export const faTeamspeak: IconDefinition; +export const faTelegram: IconDefinition; +export const faTelegramPlane: IconDefinition; +export const faTencentWeibo: IconDefinition; +export const faThemeisle: IconDefinition; +export const faTradeFederation: IconDefinition; +export const faTrello: IconDefinition; +export const faTripadvisor: IconDefinition; +export const faTumblr: IconDefinition; +export const faTumblrSquare: IconDefinition; +export const faTwitch: IconDefinition; +export const faTwitter: IconDefinition; +export const faTwitterSquare: IconDefinition; +export const faTypo3: IconDefinition; +export const faUber: IconDefinition; +export const faUikit: IconDefinition; +export const faUniregistry: IconDefinition; +export const faUntappd: IconDefinition; +export const faUsb: IconDefinition; +export const faUssunnah: IconDefinition; +export const faVaadin: IconDefinition; +export const faViacoin: IconDefinition; +export const faViadeo: IconDefinition; +export const faViadeoSquare: IconDefinition; +export const faViber: IconDefinition; +export const faVimeo: IconDefinition; +export const faVimeoSquare: IconDefinition; +export const faVimeoV: IconDefinition; +export const faVine: IconDefinition; +export const faVk: IconDefinition; +export const faVnv: IconDefinition; +export const faVuejs: IconDefinition; +export const faWeibo: IconDefinition; +export const faWeixin: IconDefinition; +export const faWhatsapp: IconDefinition; +export const faWhatsappSquare: IconDefinition; +export const faWhmcs: IconDefinition; +export const faWikipediaW: IconDefinition; +export const faWindows: IconDefinition; +export const faWolfPackBattalion: IconDefinition; +export const faWordpress: IconDefinition; +export const faWordpressSimple: IconDefinition; +export const faWpbeginner: IconDefinition; +export const faWpexplorer: IconDefinition; +export const faWpforms: IconDefinition; +export const faXbox: IconDefinition; +export const faXing: IconDefinition; +export const faXingSquare: IconDefinition; +export const faYCombinator: IconDefinition; +export const faYahoo: IconDefinition; +export const faYandex: IconDefinition; +export const faYandexInternational: IconDefinition; +export const faYelp: IconDefinition; +export const faYoast: IconDefinition; +export const faYoutube: IconDefinition; +export const faYoutubeSquare: IconDefinition; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/index.es.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/index.es.js new file mode 100644 index 0000000000..6a412a9d88 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/index.es.js @@ -0,0 +1,848 @@ +/*! + * Font Awesome Free 5.0.13 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +var _WINDOW = {}; +try { + if (typeof window !== 'undefined') _WINDOW = window; + +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; + + + + + +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; + + + + + + + +var PRODUCTION = function () { + try { + return process.env.NODE_ENV === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + + + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var prefix = "fab"; +var fa500px = { prefix: 'fab', iconName: '500px', icon: [448, 512, [], "f26e", "M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3.3-16 16.5-21.2 23.9l-.5.6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8zm63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2zM393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4zM213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6.2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6z"] }; +var faAccessibleIcon = { prefix: 'fab', iconName: 'accessible-icon', icon: [448, 512, [], "f368", "M423.9 255.8L411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7zm-64.9-154c28.1 0 50.9-22.8 50.9-50.9C409.9 22.8 387.1 0 359 0c-28.1 0-50.9 22.8-50.9 50.9 0 28.1 22.8 50.9 50.9 50.9zM179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3z"] }; +var faAccusoft = { prefix: 'fab', iconName: 'accusoft', icon: [640, 512, [], "f369", "M482.2 372.1C476.5 365.2 250 75 242.3 65.5c-13.7-17.2 0-16.8 19.2-16.9 9.7-.1 106.3-.6 116.5-.6 24.1-.1 28.7.6 38.4 12.8 2.1 2.7 205.1 245.8 207.2 248.3 5.5 6.7 15.2 19.1 7.2 23.4-2.4 1.3-114.6 47.7-117.8 48.9-10.1 4-17.5 6.8-30.8-9.3m114.7-5.6s-115 50.4-117.5 51.6c-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2-2.3-.3-24.6-4.7-38-7.2m-326-181.3s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3v-1l-51.2-65.8"] }; +var faAdn = { prefix: 'fab', iconName: 'adn', icon: [496, 512, [], "f170", "M248 167.5l64.9 98.8H183.1l64.9-98.8zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7h30.2z"] }; +var faAdversal = { prefix: 'fab', iconName: 'adversal', icon: [512, 512, [], "f36a", "M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2zM178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4.4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3zm286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7.4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9zm3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6.4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1.2-.1.3-.1.5zm-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2.4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1zm-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8z"] }; +var faAffiliatetheme = { prefix: 'fab', iconName: 'affiliatetheme', icon: [512, 512, [], "f36b", "M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2 29.1 21.6 11.1 96.6-40.2 167.5zm351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9.1-8.5-.3-16.8-1-25z"] }; +var faAlgolia = { prefix: 'fab', iconName: 'algolia', icon: [448, 512, [], "f36c", "M229.3 182.6c-49.3 0-89.2 39.9-89.2 89.2 0 49.3 39.9 89.2 89.2 89.2s89.2-39.9 89.2-89.2c0-49.3-40-89.2-89.2-89.2zm62.7 56.6l-58.9 30.6c-1.8.9-3.8-.4-3.8-2.3V201c0-1.5 1.3-2.7 2.7-2.6 26.2 1 48.9 15.7 61.1 37.1.7 1.3.2 3-1.1 3.7zM389.1 32H58.9C26.4 32 0 58.4 0 90.9V421c0 32.6 26.4 59 58.9 59H389c32.6 0 58.9-26.4 58.9-58.9V90.9C448 58.4 421.6 32 389.1 32zm-202.6 84.7c0-10.8 8.7-19.5 19.5-19.5h45.3c10.8 0 19.5 8.7 19.5 19.5v15.4c0 1.8-1.7 3-3.3 2.5-12.3-3.4-25.1-5.1-38.1-5.1-13.5 0-26.7 1.8-39.4 5.5-1.7.5-3.4-.8-3.4-2.5v-15.8zm-84.4 37l9.2-9.2c7.6-7.6 19.9-7.6 27.5 0l7.7 7.7c1.1 1.1 1 3-.3 4-6.2 4.5-12.1 9.4-17.6 14.9-5.4 5.4-10.4 11.3-14.8 17.4-1 1.3-2.9 1.5-4 .3l-7.7-7.7c-7.6-7.5-7.6-19.8 0-27.4zm127.2 244.8c-70 0-126.6-56.7-126.6-126.6s56.7-126.6 126.6-126.6c70 0 126.6 56.6 126.6 126.6 0 69.8-56.7 126.6-126.6 126.6z"] }; +var faAmazon = { prefix: 'fab', iconName: 'amazon', icon: [448, 512, [], "f270", "M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z"] }; +var faAmazonPay = { prefix: 'fab', iconName: 'amazon-pay', icon: [611, 512, [], "f42c", "M0 325.2c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7 40.7 20.4 83.2 35.6 127.4 46.3 20.9 5 41.9 9 63.2 11.8 31.5 4.2 63.2 6 95 5.2 17.4-.4 34.8-1.8 52.1-3.8 56.4-6.7 110.9-20.8 163.3-42.8 2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9-2.8 2.8-6.3 5.1-9.6 7.4-30.7 21.1-64.2 36.4-99.6 47.9-24.6 7.9-49.6 13.8-75.1 17.6-17.6 2.6-35.4 4.4-53.2 4.8-.8 0-1.7.2-2.5.3H294c-.8-.1-1.7-.3-2.5-.3-3.6-.2-7.2-.3-10.7-.4-16.9-.7-33.7-2.6-50.4-5.3-27.4-4.5-54.2-11.4-80.4-20.9-54.1-19.6-102.6-48.6-145.6-87-1.8-1.6-3-3.8-4.4-5.7v-2zM158 65c-1.4.2-2.9.4-4.3.6-14 1.7-26.6 6.9-38 15.1-2.4 1.7-4.6 3.5-7.1 5.4-.2-.5-.4-1-.4-1.4-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6H87.8c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3V215c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zm-47.4 41.9c0-1.5.4-2.4 1.7-3.3 13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9-1.2-.9-1.7-1.7-1.7-3.3.1-14.1 0-28.1 0-42.2 0-14 .1-28 0-42.1zM316.3 65c-1 .1-2 .3-2.9.4-9.8.5-19.4 1.7-28.9 4.1-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9 0 .4-.1.9-.2 1.4-.5-.1-.9 0-1.3-.1-10.5-2.5-21.1-4.3-32-4.9-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4.4-.4.9-.7 1.6-1.1.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0 2.7-.1 4.5-1.9 4.8-4.7.1-.9.1-1.9.1-2.8v-106c0-4.3-.2-8.6-.9-12.9-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1zm35 127.7c0 1.3-.4 2.2-1.5 3-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8-6.3-2.5-10.4-6.9-12.4-13.3s-2-13-.1-19.4c2.5-8.3 8.4-13 16.4-15.6 8.1-2.6 16.5-3 24.8-2.2 8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3-.1 4.7-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3-6.8-2.3-13.9-3.3-21-3.9-13.1-1.1-26.2-.5-39.2 1.9-14.3 2.7-27.9 7.3-40 15.6-1.4 1-2.8 2.1-3.7 3.5-.7 1.1-.9 2.8-.5 4 .4 1.5 2.1 1.9 3.6 1.8.7 0 1.5 0 2.2-.1 7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9 4.8.3 9.7 1.4 14.4 2.7 5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1-.4 1-.8 2-1 3-.5 2.9 1.2 4.8 4.1 4.1 1.7-.4 3.6-1.3 4.8-2.5 4.4-4.3 8.9-8.6 12.7-13.4 12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9v-17.3zM479.1 198.9c-12.9-35.7-25.8-71.5-38.7-107.2-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5.5 2.1 1.1 4.1 1.9 6.1 19.6 48.5 39.3 97.1 59.1 145.5 1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3-5.1 1.4-10.2 1.6-15.4 1.1-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8-.1 3.3-.1 6.6 0 9.9.1 5.5 2 8 7.4 8.9 5.6 1 11.3 1.9 16.9 2 17.1.4 30.7-6.5 39.5-21.4 3.5-5.9 6.7-12.1 9.2-18.4 23.7-59.8 47.1-119.7 70.6-179.6.7-1.8 1.3-3.6 1.6-5.5.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0-3.7 0-6.3 1.6-7.7 5.2-.5 1.4-1.1 2.7-1.6 4.1-11.6 33.3-23.2 66.6-34.8 100-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z"] }; +var faAmilia = { prefix: 'fab', iconName: 'amilia', icon: [448, 512, [], "f36d", "M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm-87.9 327.7c0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5V380c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7"] }; +var faAndroid = { prefix: 'fab', iconName: 'android', icon: [448, 512, [], "f17b", "M89.6 204.5v115.8c0 15.4-12.1 27.7-27.5 27.7-15.3 0-30.1-12.4-30.1-27.7V204.5c0-15.1 14.8-27.5 30.1-27.5 15.1 0 27.5 12.4 27.5 27.5zm10.8 157c0 16.4 13.2 29.6 29.6 29.6h19.9l.3 61.1c0 36.9 55.2 36.6 55.2 0v-61.1h37.2v61.1c0 36.7 55.5 36.8 55.5 0v-61.1h20.2c16.2 0 29.4-13.2 29.4-29.6V182.1H100.4v179.4zm248-189.1H99.3c0-42.8 25.6-80 63.6-99.4l-19.1-35.3c-2.8-4.9 4.3-8 6.7-3.8l19.4 35.6c34.9-15.5 75-14.7 108.3 0L297.5 34c2.5-4.3 9.5-1.1 6.7 3.8L285.1 73c37.7 19.4 63.3 56.6 63.3 99.4zm-170.7-55.5c0-5.7-4.6-10.5-10.5-10.5-5.7 0-10.2 4.8-10.2 10.5s4.6 10.5 10.2 10.5c5.9 0 10.5-4.8 10.5-10.5zm113.4 0c0-5.7-4.6-10.5-10.2-10.5-5.9 0-10.5 4.8-10.5 10.5s4.6 10.5 10.5 10.5c5.6 0 10.2-4.8 10.2-10.5zm94.8 60.1c-15.1 0-27.5 12.1-27.5 27.5v115.8c0 15.4 12.4 27.7 27.5 27.7 15.4 0 30.1-12.4 30.1-27.7V204.5c0-15.4-14.8-27.5-30.1-27.5z"] }; +var faAngellist = { prefix: 'fab', iconName: 'angellist', icon: [448, 512, [], "f209", "M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7zM311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6 33.1-93.7zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8zM140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7.1-7.7 12.7-21.1 20.4-21.1zm184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3.3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7.1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7zm-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1z"] }; +var faAngrycreative = { prefix: 'fab', iconName: 'angrycreative', icon: [640, 512, [], "f36e", "M640 238.2l-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4 93.1-6.2zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9-12.8 120zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3-126.2 7.7zm-44.3-70.2l-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7 2.7-29.8zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1zm21.1 70.8l5.8-60c-5 13.5-14.7 21.1-27.9 26.6l22.1 33.4zm135.4-45l-7.9-37.8-15.8 39.3 23.7-1.5zm-170.1-74.6l-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8.3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2-56.8 3.7zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1.6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2l-2.9 28.8zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3zm-201.3 8.2l23.8-1.6-8.3-37.6-15.5 39.2z"] }; +var faAngular = { prefix: 'fab', iconName: 'angular', icon: [415, 512, [], "f420", "M169.7 268.1h76.2l-38.1-91.6-38.1 91.6zM207.8 32L0 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7L207.8 32zM338 373.8h-48.6l-26.2-65.4H152.6l-26.2 65.4H77.7L207.8 81.5 338 373.8z"] }; +var faAppStore = { prefix: 'fab', iconName: 'app-store', icon: [512, 512, [], "f36f", "M255.9 120.9l9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5 9.8 5.6 13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4 0-11.3 9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5l8.9 15.7zm-78.7 218l-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5-9.8-5.6-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6zm168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4 0 11.3-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216z"] }; +var faAppStoreIos = { prefix: 'fab', iconName: 'app-store-ios', icon: [448, 512, [], "f370", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7c16.1-4.9 29.3-1.1 39.6 11.4L127 384.5zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40zm98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20z"] }; +var faApper = { prefix: 'fab', iconName: 'apper', icon: [640, 512, [], "f371", "M42.1 239.1c22.2 0 29 2.8 33.5 14.6h.8v-22.9c0-11.3-4.8-15.4-17.9-15.4-11.3 0-14.4 2.5-15.1 12.8H4.8c.3-13.9 1.5-19.1 5.8-24.4C17.9 195 29.5 192 56.7 192c33 0 47.1 5 53.9 18.9 2 4.3 4 15.6 4 23.7v76.3H76.3l1.3-19.1h-1c-5.3 15.6-13.6 20.4-35.5 20.4-30.3 0-41.1-10.1-41.1-37.3 0-25.2 12.3-35.8 42.1-35.8zm17.1 48.1c13.1 0 16.9-3 16.9-13.4 0-9.1-4.3-11.6-19.6-11.6-13.1 0-17.9 3-17.9 12.1-.1 10.4 3.7 12.9 20.6 12.9zm77.8-94.9h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.2 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3H137v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm57.9-60.7h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.3 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3h-39.5v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm53.8-3.8c0-25.4 3.3-37.8 12.3-45.8 8.8-8.1 22.2-11.3 45.1-11.3 42.8 0 55.7 12.8 55.7 55.7v11.1h-75.3c-.3 2-.3 4-.3 4.8 0 16.9 4.5 21.9 20.1 21.9 13.9 0 17.9-3 17.9-13.9h37.5v2.3c0 9.8-2.5 18.9-6.8 24.7-7.3 9.8-19.6 13.6-44.3 13.6-27.5 0-41.6-3.3-50.6-12.3-8.5-8.5-11.3-21.3-11.3-50.8zm76.4-11.6c-.3-1.8-.3-3.3-.3-3.8 0-12.3-3.3-14.6-19.6-14.6-14.4 0-17.1 3-18.1 15.1l-.3 3.3h38.3zm55.6-45.3h38.3l-1.8 19.9h.7c6.8-14.9 14.4-20.2 29.7-20.2 10.8 0 19.1 3.3 23.4 9.3 5.3 7.3 6.8 14.4 6.8 34 0 1.5 0 5 .2 9.3h-35c.3-1.8.3-3.3.3-4 0-15.4-2-19.4-10.3-19.4-6.3 0-10.8 3.3-13.1 9.3-1 3-1 4.3-1 12.3v68h-38.3V192.3z"] }; +var faApple = { prefix: 'fab', iconName: 'apple', icon: [376, 512, [], "f179", "M314.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C59.3 141.2 0 184.8 0 273.5c0 26.2 4.8 53.3 14.4 81.2 12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z"] }; +var faApplePay = { prefix: 'fab', iconName: 'apple-pay', icon: [640, 512, [], "f415", "M116.9 158.5c-7.5 8.9-19.5 15.9-31.5 14.9-1.5-12 4.4-24.8 11.3-32.6 7.5-9.1 20.6-15.6 31.3-16.1 1.2 12.4-3.7 24.7-11.1 33.8m10.9 17.2c-17.4-1-32.3 9.9-40.5 9.9-8.4 0-21-9.4-34.8-9.1-17.9.3-34.5 10.4-43.6 26.5-18.8 32.3-4.9 80 13.3 106.3 8.9 13 19.5 27.3 33.5 26.8 13.3-.5 18.5-8.6 34.5-8.6 16.1 0 20.8 8.6 34.8 8.4 14.5-.3 23.6-13 32.5-26 10.1-14.8 14.3-29.1 14.5-29.9-.3-.3-28-10.9-28.3-42.9-.3-26.8 21.9-39.5 22.9-40.3-12.5-18.6-32-20.6-38.8-21.1m100.4-36.2v194.9h30.3v-66.6h41.9c38.3 0 65.1-26.3 65.1-64.3s-26.4-64-64.1-64h-73.2zm30.3 25.5h34.9c26.3 0 41.3 14 41.3 38.6s-15 38.8-41.4 38.8h-34.8V165zm162.2 170.9c19 0 36.6-9.6 44.6-24.9h.6v23.4h28v-97c0-28.1-22.5-46.3-57.1-46.3-32.1 0-55.9 18.4-56.8 43.6h27.3c2.3-12 13.4-19.9 28.6-19.9 18.5 0 28.9 8.6 28.9 24.5v10.8l-37.8 2.3c-35.1 2.1-54.1 16.5-54.1 41.5.1 25.2 19.7 42 47.8 42zm8.2-23.1c-16.1 0-26.4-7.8-26.4-19.6 0-12.3 9.9-19.4 28.8-20.5l33.6-2.1v11c0 18.2-15.5 31.2-36 31.2zm102.5 74.6c29.5 0 43.4-11.3 55.5-45.4L640 193h-30.8l-35.6 115.1h-.6L537.4 193h-31.6L557 334.9l-2.8 8.6c-4.6 14.6-12.1 20.3-25.5 20.3-2.4 0-7-.3-8.9-.5v23.4c1.8.4 9.3.7 11.6.7z"] }; +var faAsymmetrik = { prefix: 'fab', iconName: 'asymmetrik', icon: [576, 512, [], "f372", "M517.5 309.2c38.8-40 58.1-80 58.5-116.1.8-65.5-59.4-118.2-169.4-135C277.9 38.4 118.1 73.6 0 140.5 52 114 110.6 92.3 170.7 82.3c74.5-20.5 153-25.4 221.3-14.8C544.5 91.3 588.8 195 490.8 299.2c-10.2 10.8-22 21.1-35 30.6L304.9 103.4 114.7 388.9c-65.6-29.4-76.5-90.2-19.1-151.2 20.8-22.2 48.3-41.9 79.5-58.1 20-12.2 39.7-22.6 62-30.7-65.1 20.3-122.7 52.9-161.6 92.9-27.7 28.6-41.4 57.1-41.7 82.9-.5 35.1 23.4 65.1 68.4 83l-34.5 51.7h101.6l22-34.4c22.2 1 45.3 0 68.6-2.7l-22.8 37.1h135.5L340 406.3c18.6-5.3 36.9-11.5 54.5-18.7l45.9 71.8H542L468.6 349c18.5-12.1 35-25.5 48.9-39.8zm-187.6 80.5l-25-40.6-32.7 53.3c-23.4 3.5-46.7 5.1-69.2 4.4l101.9-159.3 78.7 123c-17.2 7.4-35.3 13.9-53.7 19.2z"] }; +var faAudible = { prefix: 'fab', iconName: 'audible', icon: [640, 512, [], "f373", "M640 199.9v54l-320 200L0 254v-54l320 200 320-200.1zm-194.5 72l47.1-29.4c-37.2-55.8-100.7-92.6-172.7-92.6-72 0-135.5 36.7-172.6 92.4h.3c2.5-2.3 5.1-4.5 7.7-6.7 89.7-74.4 219.4-58.1 290.2 36.3zm-220.1 18.8c16.9-11.9 36.5-18.7 57.4-18.7 34.4 0 65.2 18.4 86.4 47.6l45.4-28.4c-20.9-29.9-55.6-49.5-94.8-49.5-38.9 0-73.4 19.4-94.4 49zM103.6 161.1c131.8-104.3 318.2-76.4 417.5 62.1l.7 1 48.8-30.4C517.1 112.1 424.8 58.1 319.9 58.1c-103.5 0-196.6 53.5-250.5 135.6 9.9-10.5 22.7-23.5 34.2-32.6zm467 32.7z"] }; +var faAutoprefixer = { prefix: 'fab', iconName: 'autoprefixer', icon: [640, 512, [], "f41c", "M318.4 16l-161 480h77.5l25.4-81.4h119.5L405 496h77.5L318.4 16zm-40.3 341.9l41.2-130.4h1.5l40.9 130.4h-83.6zM640 405l-10-31.4L462.1 358l19.4 56.5L640 405zm-462.1-47L10 373.7 0 405l158.5 9.4 19.4-56.4z"] }; +var faAvianex = { prefix: 'fab', iconName: 'avianex', icon: [512, 512, [], "f374", "M453.1 32h-312c-38.9 0-76.2 31.2-83.3 69.7L1.2 410.3C-5.9 448.8 19.9 480 58.9 480h312c38.9 0 76.2-31.2 83.3-69.7l56.7-308.5c7-38.6-18.8-69.8-57.8-69.8zm-58.2 347.3l-32 13.5-115.4-110c-14.7 10-29.2 19.5-41.7 27.1l22.1 64.2-17.9 12.7-40.6-61-52.4-48.1 15.7-15.4 58 31.1c9.3-10.5 20.8-22.6 32.8-34.9L203 228.9l-68.8-99.8 18.8-28.9 8.9-4.8L265 207.8l4.9 4.5c19.4-18.8 33.8-32.4 33.8-32.4 7.7-6.5 21.5-2.9 30.7 7.9 9 10.5 10.6 24.7 2.7 31.3-1.8 1.3-15.5 11.4-35.3 25.6l4.5 7.3 94.9 119.4-6.3 7.9z"] }; +var faAviato = { prefix: 'fab', iconName: 'aviato', icon: [640, 512, [], "f421", "M107.2 283.5l-19-41.8H36.1l-19 41.8H0l62.2-131.4 62.2 131.4h-17.2zm-45-98.1l-19.6 42.5h39.2l-19.6-42.5zm112.7 102.4l-62.2-131.4h17.1l45.1 96 45.1-96h17l-62.1 131.4zm80.6-4.3V156.4H271v127.1h-15.5zm209.1-115.6v115.6h-17.3V167.9h-41.2v-11.5h99.6v11.5h-41.1zM640 218.8c0 9.2-1.7 17.8-5.1 25.8-3.4 8-8.2 15.1-14.2 21.1-6 6-13.1 10.8-21.1 14.2-8 3.4-16.6 5.1-25.8 5.1s-17.8-1.7-25.8-5.1c-8-3.4-15.1-8.2-21.1-14.2-6-6-10.8-13-14.2-21.1-3.4-8-5.1-16.6-5.1-25.8s1.7-17.8 5.1-25.8c3.4-8 8.2-15.1 14.2-21.1 6-6 13-8.4 21.1-11.9 8-3.4 16.6-5.1 25.8-5.1s17.8 1.7 25.8 5.1c8 3.4 15.1 5.8 21.1 11.9 6 6 10.7 13.1 14.2 21.1 3.4 8 5.1 16.6 5.1 25.8zm-15.5 0c0-7.3-1.3-14-3.9-20.3-2.6-6.3-6.2-11.7-10.8-16.3-4.6-4.6-10-8.2-16.2-10.9-6.2-2.7-12.8-4-19.8-4s-13.6 1.3-19.8 4c-6.2 2.7-11.6 6.3-16.2 10.9-4.6 4.6-8.2 10-10.8 16.3-2.6 6.3-3.9 13.1-3.9 20.3 0 7.3 1.3 14 3.9 20.3 2.6 6.3 6.2 11.7 10.8 16.3 4.6 4.6 10 8.2 16.2 10.9 6.2 2.7 12.8 4 19.8 4s13.6-1.3 19.8-4c6.2-2.7 11.6-6.3 16.2-10.9 4.6-4.6 8.2-10 10.8-16.3 2.6-6.3 3.9-13.1 3.9-20.3zm-94.8 96.7v-6.3l88.9-10-242.9 13.4c.6-2.2 1.1-4.6 1.4-7.2.3-2 .5-4.2.6-6.5l64.8-8.1-64.9 1.9c0-.4-.1-.7-.1-1.1-2.8-17.2-25.5-23.7-25.5-23.7l-1.1-26.3h23.8l19 41.8h17.1L348.6 152l-62.2 131.4h17.1l19-41.8h23.6L345 268s-22.7 6.5-25.5 23.7c-.1.3-.1.7-.1 1.1l-64.9-1.9 64.8 8.1c.1 2.3.3 4.4.6 6.5.3 2.6.8 5 1.4 7.2L78.4 299.2l88.9 10v6.3c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4 0-6.2-4.6-11.3-10.5-12.2v-5.8l80.3 9v5.4c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-4.9l28.4 3.2v23.7h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9V323l38.3 4.3c8.1 11.4 19 13.6 19 13.6l-.1 6.7-5.1.2-.1 12.1h4.1l.1-5h5.2l.1 5h4.1l-.1-12.1-5.1-.2-.1-6.7s10.9-2.1 19-13.6l38.3-4.3v23.2h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9v-23.7l28.4-3.2v4.9c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-5.4l80.3-9v5.8c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4-.2-6.3-4.7-11.4-10.7-12.3zm-200.8-87.6l19.6-42.5 19.6 42.5h-17.9l-1.7-40.3-1.7 40.3h-17.9z"] }; +var faAws = { prefix: 'fab', iconName: 'aws', icon: [512, 512, [], "f375", "M261.2 136.1c-14 57.5-13.1 54.4-25.8 107-1.6 6.5-4.1 8.4-10.7 8.5h-14.4c-5.8-.1-8.2-1.6-9.9-7.3-12.3-39.4-28.8-94.1-39.9-130.7-4.1-13.5-1.4-13.2 9.3-12.9 3.7.1 7.3 0 11 0 5.1.1 7.7 2 9.1 7.1 3.6 12.9 6 22.8 26.6 104.1.4 1.6.9 3.1 1.4 4.6h1.1c.5-2 1.1-3.9 1.6-5.9 7.8-32.9 15.5-65.9 23.3-98.8 2.4-10.2 6.7-11.2 17-11.2h7.6c6.9.1 9 1.5 10.7 8.3 6 23.4 23.5 101.8 26.7 110.4 5.1-18.3-1.8 7.9 28.5-109 2.1-8.1 4.1-9.7 12.3-9.7h12.7c5.4.1 7 1.8 5.7 7.1-2.4 9.5-2.9 9.9-41.3 132.9-3.1 9.9-4.2 10.8-14.6 10.8h-10.6c-7.3 0-9.2-1.3-11-8.4-4.3-16.2-23.3-95.7-26.4-106.9zM125.4 247.3c4.2 5.8 8.1 6.3 14.1 2.4l6.3-4.2c6.8-4.5 7.3-6.3 3.6-13.5-4.3-8.4-6.4-17.3-6.3-26.9 0-3.1.6-55.7-.9-66.8-2.7-19.3-12.5-32.8-31.7-38.7-10.7-3.4-21.7-3.3-32.7-3-15.1.4-29.4 4.6-42.8 11.4-1.8.9-3.7 3.1-4.1 4.9-.8 3.9-1.1 8.1-.7 12.1.6 5.9 2.6 7 8.2 5.1 5.1-1.7 10-3.9 15.1-5.4 14.5-4.4 29.2-6.4 44.1-1.7 7.1 2.2 11.7 6.9 14.3 13.8 3 7.9 2.4 16.1 2.4 24.2 0 5.5-.1 5.5-5.5 4.5-13.9-2.6-27.7-5-41.9-3.1-15.2 2.1-28.6 7.3-38.2 20-9.1 12-10 25.6-7.4 39.5 2.8 15 11.8 25.7 26.4 30.4 20.6 6.7 40.1 3.3 57.7-9.5 3.8-2.8 7.2-6.2 11.1-9.5 3.1 5 5.8 9.7 8.9 14zm-15.3-61.6c3 .4 4.5 1.9 4.3 5.1-.2 3.8.1 7.6-.3 11.4-1.2 11.7-7.7 19.7-17.9 24.9-8.2 4.2-16.9 5.8-26.1 5-15.2-1.3-21-13.1-19.6-26.3C51.8 193.2 59 186.2 72 184c13.8-2.4 16-1.1 38.1 1.7zm348.8 65.1c21.3-8.6 32.9-26.2 29.2-50-2.2-14.6-11.8-24.2-25.2-29.5-14.7-5.9-33.8-10.3-48.1-18.2-4.4-2.4-7.4-6.3-7.6-11.9-.4-11.1 4.2-17.2 15.4-19.8 9.3-2.1 18.8-2.2 28.1-.4 7.3 1.4 14.3 4.2 21.4 6.3 2.8.9 5.9 2.1 7.8-1.6 3.8-7.3.4-18.7-7.3-21.8-22.5-9-45.5-11.6-68.2-1.6-14.6 6.4-24.6 17.4-26 34.2-1.6 19.3 6.9 33.4 24.1 41.7 7.7 3.7 16.1 5.9 24.2 8.9 8.1 3 16.2 5.8 24.1 9.1 12.3 5.3 11.6 24.2 1.2 30-27.7 15.3-64.9-2.4-69.2-3.8-3.3-1.1-5.3.2-6.3 3.7-3 11.3.7 18.8 11.6 22.7 21.7 7.9 49.6 10.5 70.8 2zM296 413.5c50.8-5.8 98.7-20.8 142.7-47 8-4.7 15.5-10.3 23.1-15.7 7.3-5.2 3.2-18.4-11.3-12.2-54.4 23.2-111.2 36.1-170.2 38.9-30.5 1.5-60.8-.3-91.1-4.7-63.1-9.2-122.4-29.2-177.6-61.2-2.1-1.2-4.2-2.5-6.5-3-4.9-1.1-7.7 4.7-2.4 9.7 24 22.1 50.3 40.8 79.1 55.7 53.7 27.7 110.5 42.7 171.2 42 14.4-.8 28.8-.9 43-2.5zm174.7-92.2c14.8.8 19.4 5.9 15.7 20.2-3.8 14.8-9.3 29.2-13.9 43.8-.9 2.9-4.2 6.3-.8 8.8 3.7 2.6 6.5-1 9-3.3 10.2-9.5 17.4-21 22.5-33.8 5.4-13.4 9.3-27.2 8.7-41.9-.2-6.2-1.8-8.8-7.8-10.5-5.4-1.5-11-2.8-16.5-3.2-21.6-1.8-42.5.5-62 10.6-3.1 1.6-6 3.7-8.7 5.9-1.1.9-3.2 5.3 2.4 6.1 1.9.3 3.9-.1 5.9-.3 16.9-1.6 28.6-3.3 45.5-2.4z"] }; +var faBandcamp = { prefix: 'fab', iconName: 'bandcamp', icon: [496, 512, [], "f2d5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm48.2 326.1h-181L199.9 178h181l-84.7 156.1z"] }; +var faBehance = { prefix: 'fab', iconName: 'behance', icon: [576, 512, [], "f1b4", "M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z"] }; +var faBehanceSquare = { prefix: 'fab', iconName: 'behance-square', icon: [448, 512, [], "f1b5", "M186.5 293c0 19.3-14 25.4-31.2 25.4h-45.1v-52.9h46c18.6.1 30.3 7.8 30.3 27.5zm-7.7-82.3c0-17.7-13.7-21.9-28.9-21.9h-39.6v44.8H153c15.1 0 25.8-6.6 25.8-22.9zm132.3 23.2c-18.3 0-30.5 11.4-31.7 29.7h62.2c-1.7-18.5-11.3-29.7-30.5-29.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM271.7 185h77.8v-18.9h-77.8V185zm-43 110.3c0-24.1-11.4-44.9-35-51.6 17.2-8.2 26.2-17.7 26.2-37 0-38.2-28.5-47.5-61.4-47.5H68v192h93.1c34.9-.2 67.6-16.9 67.6-55.9zM380 280.5c0-41.1-24.1-75.4-67.6-75.4-42.4 0-71.1 31.8-71.1 73.6 0 43.3 27.3 73 71.1 73 33.2 0 54.7-14.9 65.1-46.8h-33.7c-3.7 11.9-18.6 18.1-30.2 18.1-22.4 0-34.1-13.1-34.1-35.3h100.2c.1-2.3.3-4.8.3-7.2z"] }; +var faBimobject = { prefix: 'fab', iconName: 'bimobject', icon: [448, 512, [], "f378", "M416 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm-64 257.4c0 49.4-11.4 82.6-103.8 82.6h-16.9c-44.1 0-62.4-14.9-70.4-38.8h-.9V368H96V136h64v74.7h1.1c4.6-30.5 39.7-38.8 69.7-38.8h17.3c92.4 0 103.8 33.1 103.8 82.5v35zm-64-28.9v22.9c0 21.7-3.4 33.8-38.4 33.8h-45.3c-28.9 0-44.1-6.5-44.1-35.7v-19c0-29.3 15.2-35.7 44.1-35.7h45.3c35-.2 38.4 12 38.4 33.7z"] }; +var faBitbucket = { prefix: 'fab', iconName: 'bitbucket', icon: [512, 512, [], "f171", "M23.1 32C14.2 31.9 7 38.9 6.9 47.8c0 .9.1 1.8.2 2.8L74.9 462c1.7 10.4 10.7 18 21.2 18.1h325.1c7.9.1 14.7-5.6 16-13.4l67.8-416c1.4-8.7-4.5-16.9-13.2-18.3-.9-.1-1.8-.2-2.8-.2L23.1 32zm285.3 297.3H204.6l-28.1-146.8h157l-25.1 146.8z"] }; +var faBitcoin = { prefix: 'fab', iconName: 'bitcoin', icon: [512, 512, [], "f379", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z"] }; +var faBity = { prefix: 'fab', iconName: 'bity', icon: [496, 512, [], "f37a", "M78.4 67.2C173.8-22 324.5-24 421.5 71c14.3 14.1-6.4 37.1-22.4 21.5-84.8-82.4-215.8-80.3-298.9-3.2-16.3 15.1-36.5-8.3-21.8-22.1zm98.9 418.6c19.3 5.7 29.3-23.6 7.9-30C73 421.9 9.4 306.1 37.7 194.8c5-19.6-24.9-28.1-30.2-7.1-32.1 127.4 41.1 259.8 169.8 298.1zm148.1-2c121.9-40.2 192.9-166.9 164.4-291-4.5-19.7-34.9-13.8-30 7.9 24.2 107.7-37.1 217.9-143.2 253.4-21.2 7-10.4 36 8.8 29.7zm-62.9-79l.2-71.8c0-8.2-6.6-14.8-14.8-14.8-8.2 0-14.8 6.7-14.8 14.8l-.2 71.8c0 8.2 6.6 14.8 14.8 14.8s14.8-6.6 14.8-14.8zm71-269c2.1 90.9 4.7 131.9-85.5 132.5-92.5-.7-86.9-44.3-85.5-132.5 0-21.8-32.5-19.6-32.5 0v71.6c0 69.3 60.7 90.9 118 90.1 57.3.8 118-20.8 118-90.1v-71.6c0-19.6-32.5-21.8-32.5 0z"] }; +var faBlackTie = { prefix: 'fab', iconName: 'black-tie', icon: [448, 512, [], "f27e", "M0 32v448h448V32H0zm316.5 325.2L224 445.9l-92.5-88.7 64.5-184-64.5-86.6h184.9L252 173.2l64.5 184z"] }; +var faBlackberry = { prefix: 'fab', iconName: 'blackberry', icon: [512, 512, [], "f37b", "M166 116.9c0 23.4-16.4 49.1-72.5 49.1H23.4l21-88.8h67.8c42.1 0 53.8 23.3 53.8 39.7zm126.2-39.7h-67.8L205.7 166h70.1c53.8 0 70.1-25.7 70.1-49.1.1-16.4-11.6-39.7-53.7-39.7zM88.8 208.1H21L0 296.9h70.1c56.1 0 72.5-23.4 72.5-49.1 0-16.3-11.7-39.7-53.8-39.7zm180.1 0h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 0-16.3-11.7-39.7-53.7-39.7zm189.3-53.8h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7zm-28 137.9h-67.8L343.7 381h70.1c56.1 0 70.1-23.4 70.1-49.1 0-16.3-11.6-39.7-53.7-39.7zM240.8 346H173l-18.7 88.8h70.1c56.1 0 70.1-25.7 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7z"] }; +var faBlogger = { prefix: 'fab', iconName: 'blogger', icon: [448, 512, [], "f37c", "M162.4 196c4.8-4.9 6.2-5.1 36.4-5.1 27.2 0 28.1.1 32.1 2.1 5.8 2.9 8.3 7 8.3 13.6 0 5.9-2.4 10-7.6 13.4-2.8 1.8-4.5 1.9-31.1 2.1-16.4.1-29.5-.2-31.5-.8-10.3-2.9-14.1-17.7-6.6-25.3zm61.4 94.5c-53.9 0-55.8.2-60.2 4.1-3.5 3.1-5.7 9.4-5.1 13.9.7 4.7 4.8 10.1 9.2 12 2.2 1 14.1 1.7 56.3 1.2l47.9-.6 9.2-1.5c9-5.1 10.5-17.4 3.1-24.4-5.3-4.7-5-4.7-60.4-4.7zm223.4 130.1c-3.5 28.4-23 50.4-51.1 57.5-7.2 1.8-9.7 1.9-172.9 1.8-157.8 0-165.9-.1-172-1.8-8.4-2.2-15.6-5.5-22.3-10-5.6-3.8-13.9-11.8-17-16.4-3.8-5.6-8.2-15.3-10-22C.1 423 0 420.3 0 256.3 0 93.2 0 89.7 1.8 82.6 8.1 57.9 27.7 39 53 33.4c7.3-1.6 332.1-1.9 340-.3 21.2 4.3 37.9 17.1 47.6 36.4 7.7 15.3 7-1.5 7.3 180.6.2 115.8 0 164.5-.7 170.5zm-85.4-185.2c-1.1-5-4.2-9.6-7.7-11.5-1.1-.6-8-1.3-15.5-1.7-12.4-.6-13.8-.8-17.8-3.1-6.2-3.6-7.9-7.6-8-18.3 0-20.4-8.5-39.4-25.3-56.5-12-12.2-25.3-20.5-40.6-25.1-3.6-1.1-11.8-1.5-39.2-1.8-42.9-.5-52.5.4-67.1 6.2-27 10.7-46.3 33.4-53.4 62.4-1.3 5.4-1.6 14.2-1.9 64.3-.4 62.8 0 72.1 4 84.5 9.7 30.7 37.1 53.4 64.6 58.4 9.2 1.7 122.2 2.1 133.7.5 20.1-2.7 35.9-10.8 50.7-25.9 10.7-10.9 17.4-22.8 21.8-38.5 3.2-10.9 2.9-88.4 1.7-93.9z"] }; +var faBloggerB = { prefix: 'fab', iconName: 'blogger-b', icon: [448, 512, [], "f37d", "M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z"] }; +var faBluetooth = { prefix: 'fab', iconName: 'bluetooth', icon: [448, 512, [], "f293", "M292.6 171.1L249.7 214l-.3-86 43.2 43.1m-43.2 219.8l43.1-43.1-42.9-42.9-.2 86zM416 259.4C416 465 344.1 512 230.9 512S32 465 32 259.4 115.4 0 228.6 0 416 53.9 416 259.4zm-158.5 0l79.4-88.6L211.8 36.5v176.9L138 139.6l-27 26.9 92.7 93-92.7 93 26.9 26.9 73.8-73.8 2.3 170 127.4-127.5-83.9-88.7z"] }; +var faBluetoothB = { prefix: 'fab', iconName: 'bluetooth-b', icon: [320, 512, [], "f294", "M196.48 260.023l92.626-103.333L143.125 0v206.33l-86.111-86.111-31.406 31.405 108.061 108.399L25.608 368.422l31.406 31.405 86.111-86.111L145.84 512l148.552-148.644-97.912-103.333zm40.86-102.996l-49.977 49.978-.338-100.295 50.315 50.317zM187.363 313.04l49.977 49.978-50.315 50.316.338-100.294z"] }; +var faBtc = { prefix: 'fab', iconName: 'btc', icon: [384, 512, [], "f15a", "M310.204 242.638c27.73-14.18 45.377-39.39 41.28-81.3-5.358-57.351-52.458-76.573-114.85-81.929V0h-48.528v77.203c-12.605 0-25.525.315-38.444.63V0h-48.528v79.409c-17.842.539-38.622.276-97.37 0v51.678c38.314-.678 58.417-3.14 63.023 21.427v217.429c-2.925 19.492-18.524 16.685-53.255 16.071L3.765 443.68c88.481 0 97.37.315 97.37.315V512h48.528v-67.06c13.234.315 26.154.315 38.444.315V512h48.528v-68.005c81.299-4.412 135.647-24.894 142.895-101.467 5.671-61.446-23.32-88.862-69.326-99.89zM150.608 134.553c27.415 0 113.126-8.507 113.126 48.528 0 54.515-85.71 48.212-113.126 48.212v-96.74zm0 251.776V279.821c32.772 0 133.127-9.138 133.127 53.255-.001 60.186-100.355 53.253-133.127 53.253z"] }; +var faBuromobelexperte = { prefix: 'fab', iconName: 'buromobelexperte', icon: [448, 512, [], "f37f", "M0 32v128h128V32H0zm120 120H8V40h112v112zm40-120v128h128V32H160zm120 120H168V40h112v112zm40-120v128h128V32H320zm120 120H328V40h112v112zM0 192v128h128V192H0zm120 120H8V200h112v112zm40-120v128h128V192H160zm120 120H168V200h112v112zm40-120v128h128V192H320zm120 120H328V200h112v112zM0 352v128h128V352H0zm120 120H8V360h112v112zm40-120v128h128V352H160zm120 120H168V360h112v112zm40-120v128h128V352H320z"] }; +var faBuysellads = { prefix: 'fab', iconName: 'buysellads', icon: [448, 512, [], "f20d", "M224 150.7l42.9 160.7h-85.8L224 150.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-65.3 325.3l-94.5-298.7H159.8L65.3 405.3H156l111.7-91.6 24.2 91.6h90.8z"] }; +var faCcAmazonPay = { prefix: 'fab', iconName: 'cc-amazon-pay', icon: [576, 512, [], "f42d", "M124.7 201.8c.1-11.8 0-23.5 0-35.3v-35.3c0-1.3.4-2 1.4-2.7 11.5-8 24.1-12.1 38.2-11.1 12.5.9 22.7 7 28.1 21.7 3.3 8.9 4.1 18.2 4.1 27.7 0 8.7-.7 17.3-3.4 25.6-5.7 17.8-18.7 24.7-35.7 23.9-11.7-.5-21.9-5-31.4-11.7-.9-.8-1.4-1.6-1.3-2.8zm154.9 14.6c4.6 1.8 9.3 2 14.1 1.5 11.6-1.2 21.9-5.7 31.3-12.5.9-.6 1.3-1.3 1.3-2.5-.1-3.9 0-7.9 0-11.8 0-4-.1-8 0-12 0-1.4-.4-2-1.8-2.2-7-.9-13.9-2.2-20.9-2.9-7-.6-14-.3-20.8 1.9-6.7 2.2-11.7 6.2-13.7 13.1-1.6 5.4-1.6 10.8.1 16.2 1.6 5.5 5.2 9.2 10.4 11.2zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zm-207.5 23.9c.4 1.7.9 3.4 1.6 5.1 16.5 40.6 32.9 81.3 49.5 121.9 1.4 3.5 1.7 6.4.2 9.9-2.8 6.2-4.9 12.6-7.8 18.7-2.6 5.5-6.7 9.5-12.7 11.2-4.2 1.1-8.5 1.3-12.9.9-2.1-.2-4.2-.7-6.3-.8-2.8-.2-4.2 1.1-4.3 4-.1 2.8-.1 5.6 0 8.3.1 4.6 1.6 6.7 6.2 7.5 4.7.8 9.4 1.6 14.2 1.7 14.3.3 25.7-5.4 33.1-17.9 2.9-4.9 5.6-10.1 7.7-15.4 19.8-50.1 39.5-100.3 59.2-150.5.6-1.5 1.1-3 1.3-4.6.4-2.4-.7-3.6-3.1-3.7-5.6-.1-11.1 0-16.7 0-3.1 0-5.3 1.4-6.4 4.3-.4 1.1-.9 2.3-1.3 3.4l-29.1 83.7c-2.1 6.1-4.2 12.1-6.5 18.6-.4-.9-.6-1.4-.8-1.9-10.8-29.9-21.6-59.9-32.4-89.8-1.7-4.7-3.5-9.5-5.3-14.2-.9-2.5-2.7-4-5.4-4-6.4-.1-12.8-.2-19.2-.1-2.2 0-3.3 1.6-2.8 3.7zM242.4 206c1.7 11.7 7.6 20.8 18 26.6 9.9 5.5 20.7 6.2 31.7 4.6 12.7-1.9 23.9-7.3 33.8-15.5.4-.3.8-.6 1.4-1 .5 3.2.9 6.2 1.5 9.2.5 2.6 2.1 4.3 4.5 4.4 4.6.1 9.1.1 13.7 0 2.3-.1 3.8-1.6 4-3.9.1-.8.1-1.6.1-2.3v-88.8c0-3.6-.2-7.2-.7-10.8-1.6-10.8-6.2-19.7-15.9-25.4-5.6-3.3-11.8-5-18.2-5.9-3-.4-6-.7-9.1-1.1h-10c-.8.1-1.6.3-2.5.3-8.2.4-16.3 1.4-24.2 3.5-5.1 1.3-10 3.2-15 4.9-3 1-4.5 3.2-4.4 6.5.1 2.8-.1 5.6 0 8.3.1 4.1 1.8 5.2 5.7 4.1 6.5-1.7 13.1-3.5 19.7-4.8 10.3-1.9 20.7-2.7 31.1-1.2 5.4.8 10.5 2.4 14.1 7 3.1 4 4.2 8.8 4.4 13.7.3 6.9.2 13.9.3 20.8 0 .4-.1.7-.2 1.2-.4 0-.8 0-1.1-.1-8.8-2.1-17.7-3.6-26.8-4.1-9.5-.5-18.9.1-27.9 3.2-10.8 3.8-19.5 10.3-24.6 20.8-4.1 8.3-4.6 17-3.4 25.8zM98.7 106.9v175.3c0 .8 0 1.7.1 2.5.2 2.5 1.7 4.1 4.1 4.2 5.9.1 11.8.1 17.7 0 2.5 0 4-1.7 4.1-4.1.1-.8.1-1.7.1-2.5v-60.7c.9.7 1.4 1.2 1.9 1.6 15 12.5 32.2 16.6 51.1 12.9 17.1-3.4 28.9-13.9 36.7-29.2 5.8-11.6 8.3-24.1 8.7-37 .5-14.3-1-28.4-6.8-41.7-7.1-16.4-18.9-27.3-36.7-30.9-2.7-.6-5.5-.8-8.2-1.2h-7c-1.2.2-2.4.3-3.6.5-11.7 1.4-22.3 5.8-31.8 12.7-2 1.4-3.9 3-5.9 4.5-.1-.5-.3-.8-.4-1.2-.4-2.3-.7-4.6-1.1-6.9-.6-3.9-2.5-5.5-6.4-5.6h-9.7c-5.9-.1-6.9 1-6.9 6.8zM493.6 339c-2.7-.7-5.1 0-7.6 1-43.9 18.4-89.5 30.2-136.8 35.8-14.5 1.7-29.1 2.8-43.7 3.2-26.6.7-53.2-.8-79.6-4.3-17.8-2.4-35.5-5.7-53-9.9-37-8.9-72.7-21.7-106.7-38.8-8.8-4.4-17.4-9.3-26.1-14-3.8-2.1-6.2-1.5-8.2 2.1v1.7c1.2 1.6 2.2 3.4 3.7 4.8 36 32.2 76.6 56.5 122 72.9 21.9 7.9 44.4 13.7 67.3 17.5 14 2.3 28 3.8 42.2 4.5 3 .1 6 .2 9 .4.7 0 1.4.2 2.1.3h17.7c.7-.1 1.4-.3 2.1-.3 14.9-.4 29.8-1.8 44.6-4 21.4-3.2 42.4-8.1 62.9-14.7 29.6-9.6 57.7-22.4 83.4-40.1 2.8-1.9 5.7-3.8 8-6.2 4.3-4.4 2.3-10.4-3.3-11.9zm50.4-27.7c-.8-4.2-4-5.8-7.6-7-5.7-1.9-11.6-2.8-17.6-3.3-11-.9-22-.4-32.8 1.6-12 2.2-23.4 6.1-33.5 13.1-1.2.8-2.4 1.8-3.1 3-.6.9-.7 2.3-.5 3.4.3 1.3 1.7 1.6 3 1.5.6 0 1.2 0 1.8-.1l19.5-2.1c9.6-.9 19.2-1.5 28.8-.8 4.1.3 8.1 1.2 12 2.2 4.3 1.1 6.2 4.4 6.4 8.7.3 6.7-1.2 13.1-2.9 19.5-3.5 12.9-8.3 25.4-13.3 37.8-.3.8-.7 1.7-.8 2.5-.4 2.5 1 4 3.4 3.5 1.4-.3 3-1.1 4-2.1 3.7-3.6 7.5-7.2 10.6-11.2 10.7-13.8 17-29.6 20.7-46.6.7-3 1.2-6.1 1.7-9.1.2-4.7.2-9.6.2-14.5z"] }; +var faCcAmex = { prefix: 'fab', iconName: 'cc-amex', icon: [576, 512, [], "f1f3", "M576 255.4c-37.9-.2-44.2-.9-54.5 5v-5c-45.3 0-53.5-1.7-64.9 5.2v-5.2h-78.2v5.1c-11.4-6.5-21.4-5.1-75.7-5.1v5.6c-6.3-3.7-14.5-5.6-24.3-5.6h-58c-3.5 3.8-12.5 13.7-15.7 17.2-12.7-14.1-10.5-11.6-15.5-17.2h-83.1v92.3h82c3.3-3.5 12.9-13.9 16.1-17.4 12.7 14.3 10.3 11.7 15.4 17.4h48.9c0-14.7.1-8.3.1-23 11.5.2 24.3-.2 34.3-6.2 0 13.9-.1 17.1-.1 29.2h39.6c0-18.5.1-7.4.1-25.3 6.2 0 7.7 0 9.4.1.1 1.3 0 0 0 25.2 152.8 0 145.9 1.1 156.7-4.5v4.5c34.8 0 54.8 2.2 67.5-6.1V432c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V228.3h26.6c4.2-10.1 2.2-5.3 6.4-15.3h19.2c4.2 10 2.2 5.2 6.4 15.3h52.9v-11.4c2.2 5 1.1 2.5 5.1 11.4h29.5c2.4-5.5 2.6-5.8 5.1-11.4v11.4h135.5v-25.1c6.4 0 8-.1 9.8.2 0 0-.2 10.9.1 24.8h66.5v-8.9c7.4 5.9 17.4 8.9 29.7 8.9h26.8c4.2-10.1 2.2-5.3 6.4-15.3h19c6.5 15 .2.5 6.6 15.3h52.8v-21.9c11.8 19.7 7.8 12.9 13.2 21.9h41.6v-92h-39.9v18.4c-12.2-20.2-6.3-10.4-11.2-18.4h-43.3v20.6c-6.2-14.6-4.6-10.8-8.8-20.6h-32.4c-.4 0-2.3.2-2.3-.3h-27.6c-12.8 0-23.1 3.2-30.7 9.3v-9.3h-39.9v5.3c-10.8-6.1-20.7-5.1-64.4-5.3-.1 0-11.6-.1-11.6 0h-103c-2.5 6.1-6.8 16.4-12.6 30-2.8-6-11-23.8-13.9-30h-46V157c-7.4-17.4-4.7-11-9-21.1H22.9c-3.4 7.9-13.7 32-23.1 53.9V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48v175.4zm-186.6-80.6c-.3.2-1.4 2.2-1.4 7.6 0 6 .9 7.7 1.1 7.9.2.1 1.1.5 3.4.5l7.3-16.9c-1.1 0-2.1-.1-3.1-.1-5.6 0-7 .7-7.3 1zm-19.9 130.9c9.2 3.3 11 9.5 11 18.4l-.1 13.8h-16.6l.1-11.5c0-11.8-3.8-13.8-14.8-13.8h-17.6l-.1 25.3h-16.6l.1-69.3h39.4c13 0 27.1 2.3 27.1 18.7-.1 7.6-4.2 15.3-11.9 18.4zm-6.3-15.4c0-6.4-5.6-7.4-10.7-7.4h-21v15.6h20.7c5.6 0 11-1.3 11-8.2zm181.7-7.1H575v-14.6h-32.9c-12.8 0-23.8 6.6-23.8 20.7 0 33 42.7 12.8 42.7 27.4 0 5.1-4.3 6.4-8.4 6.4h-32l-.1 14.8h32c8.4 0 17.6-1.8 22.5-8.9v-25.8c-10.5-13.8-39.3-1.3-39.3-13.5 0-5.8 4.6-6.5 9.2-6.5zm-99.2-.3v-14.3h-55.2l-.1 69.3h55.2l.1-14.3-38.6-.3v-13.8H445v-14.1h-37.8v-12.5h38.5zm42.2 40.1h-32.2l-.1 14.8h32.2c14.8 0 26.2-5.6 26.2-22 0-33.2-42.9-11.2-42.9-26.3 0-5.6 4.9-6.4 9.2-6.4h30.4v-14.6h-33.2c-12.8 0-23.5 6.6-23.5 20.7 0 33 42.7 12.5 42.7 27.4-.1 5.4-4.7 6.4-8.8 6.4zm-78.1-158.7c-17.4-.3-33.2-4.1-33.2 19.7 0 11.8 2.8 19.9 16.1 19.9h7.4l23.5-54.5h24.8l27.9 65.4v-65.4h25.3l29.1 48.1v-48.1h16.9v69H524l-31.2-51.9v51.9h-33.7l-6.6-15.3h-34.3l-6.4 15.3h-19.2c-22.8 0-33-11.8-33-34 0-23.3 10.5-35.3 34-35.3h16.1v15.2zm14.3 24.5h22.8l-11.2-27.6-11.6 27.6zm-72.6-39.6h-16.9v69.3h16.9v-69.3zm-38.1 37.3c9.5 3.3 11 9.2 11 18.4v13.5h-16.6c-.3-14.8 3.6-25.1-14.8-25.1h-18v25.1h-16.4v-69.3l39.1.3c13.3 0 27.4 2 27.4 18.4.1 8-4.3 15.7-11.7 18.7zm-6.7-15.3c0-6.4-5.6-7.4-10.7-7.4h-21v15.3h20.7c5.7 0 11-1.3 11-7.9zm-59.5-7.4v-14.6h-55.5v69.3h55.5v-14.3h-38.9v-13.8h37.8v-14.1h-37.8v-12.5h38.9zm-84.6 54.7v-54.2l-24 54.2H124l-24-54.2v54.2H66.2l-6.4-15.3H25.3l-6.4 15.3H1l29.7-69.3h24.5l28.1 65.7v-65.7h27.1l21.7 47 19.7-47h27.6v69.3h-16.8zM53.9 188.8l-11.5-27.6-11.2 27.6h22.7zm253 102.5c0 27.9-30.4 23.3-49.3 23.3l-.1 23.3h-32.2l-20.4-23-21.3 23h-65.4l.1-69.3h66.5l20.5 22.8 21-22.8H279c15.6 0 27.9 5.4 27.9 22.7zm-112.7 11.8l-17.9-20.2h-41.7v12.5h36.3v14.1h-36.3v13.8h40.6l19-20.2zM241 276l-25.3 27.4 25.3 28.1V276zm48.3 15.3c0-6.1-4.6-8.4-10.2-8.4h-21.5v17.6h21.2c5.9 0 10.5-2.8 10.5-9.2z"] }; +var faCcApplePay = { prefix: 'fab', iconName: 'cc-apple-pay', icon: [576, 512, [], "f416", "M302.2 218.4c0 17.2-10.5 27.1-29 27.1h-24.3v-54.2h24.4c18.4 0 28.9 9.8 28.9 27.1zm47.5 62.6c0 8.3 7.2 13.7 18.5 13.7 14.4 0 25.2-9.1 25.2-21.9v-7.7l-23.5 1.5c-13.3.9-20.2 5.8-20.2 14.4zM576 79v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM127.8 197.2c8.4.7 16.8-4.2 22.1-10.4 5.2-6.4 8.6-15 7.7-23.7-7.4.3-16.6 4.9-21.9 11.3-4.8 5.5-8.9 14.4-7.9 22.8zm60.6 74.5c-.2-.2-19.6-7.6-19.8-30-.2-18.7 15.3-27.7 16-28.2-8.8-13-22.4-14.4-27.1-14.7-12.2-.7-22.6 6.9-28.4 6.9-5.9 0-14.7-6.6-24.3-6.4-12.5.2-24.2 7.3-30.5 18.6-13.1 22.6-3.4 56 9.3 74.4 6.2 9.1 13.7 19.1 23.5 18.7 9.3-.4 13-6 24.2-6 11.3 0 14.5 6 24.3 5.9 10.2-.2 16.5-9.1 22.8-18.2 6.9-10.4 9.8-20.4 10-21zm135.4-53.4c0-26.6-18.5-44.8-44.9-44.8h-51.2v136.4h21.2v-46.6h29.3c26.8 0 45.6-18.4 45.6-45zm90 23.7c0-19.7-15.8-32.4-40-32.4-22.5 0-39.1 12.9-39.7 30.5h19.1c1.6-8.4 9.4-13.9 20-13.9 13 0 20.2 6 20.2 17.2v7.5l-26.4 1.6c-24.6 1.5-37.9 11.6-37.9 29.1 0 17.7 13.7 29.4 33.4 29.4 13.3 0 25.6-6.7 31.2-17.4h.4V310h19.6v-68zM516 210.9h-21.5l-24.9 80.6h-.4l-24.9-80.6H422l35.9 99.3-1.9 6c-3.2 10.2-8.5 14.2-17.9 14.2-1.7 0-4.9-.2-6.2-.3v16.4c1.2.4 6.5.5 8.1.5 20.7 0 30.4-7.9 38.9-31.8L516 210.9z"] }; +var faCcDinersClub = { prefix: 'fab', iconName: 'cc-diners-club', icon: [576, 512, [], "f24c", "M239.7 79.9c-96.9 0-175.8 78.6-175.8 175.8 0 96.9 78.9 175.8 175.8 175.8 97.2 0 175.8-78.9 175.8-175.8 0-97.2-78.6-175.8-175.8-175.8zm-39.9 279.6c-41.7-15.9-71.4-56.4-71.4-103.8s29.7-87.9 71.4-104.1v207.9zm79.8.3V151.6c41.7 16.2 71.4 56.7 71.4 104.1s-29.7 87.9-71.4 104.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM329.7 448h-90.3c-106.2 0-193.8-85.5-193.8-190.2C45.6 143.2 133.2 64 239.4 64h90.3c105 0 200.7 79.2 200.7 193.8 0 104.7-95.7 190.2-200.7 190.2z"] }; +var faCcDiscover = { prefix: 'fab', iconName: 'cc-discover', icon: [576, 512, [], "f1f2", "M83 212.1c0 7.9-3.2 15.5-8.9 20.7-4.9 4.4-11.6 6.4-21.9 6.4H48V185h4.2c10.3 0 16.7 1.7 21.9 6.6 5.7 5 8.9 12.6 8.9 20.5zM504.8 184h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8 0-7.9-5.5-12.1-15.6-12.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM428 253h45.3v-13.8H444V217h28.3v-13.8H444V185h29.3v-14H428v82zm-86.2-82l35 84.2h8.6l35.5-84.2h-17.5l-22.2 55.2-21.9-55.2h-17.5zm-83 41.6c0 24.6 19.9 44.6 44.6 44.6 24.6 0 44.6-19.9 44.6-44.6 0-24.6-19.9-44.6-44.6-44.6-24.6 0-44.6 19.9-44.6 44.6zm-68-.5c0 32.5 33.6 52.5 63.3 38.2v-19c-19.3 19.3-46.8 5.8-46.8-19.2 0-23.7 26.7-39.1 46.8-19v-19c-30.2-15-63.3 6.8-63.3 38zm-33.9 28.3c-7.6 0-13.8-3.7-17.5-10.8l-10.3 9.9c17.8 26.1 56.6 18.2 56.6-11.3 0-13.1-5.4-19-23.6-25.6-9.6-3.4-12.3-5.9-12.3-10.3 0-8.7 14.5-14.1 24.9-2.5l8.4-10.8c-19.1-17.1-49.7-8.9-49.7 14.3 0 11.3 5.2 17.2 20.2 22.7 25.7 9.1 14.7 24.4 3.3 24.4zm-57.4-28.3c0-24.1-18-41.1-44.1-41.1H32v82h23.4c30.9 0 44.1-22.4 44.1-40.9zm23.4-41.1h-16v82h16v-82zM544 288c-33.3 20.8-226.4 124.4-416 160h401c8.2 0 15-6.8 15-15V288zm0-35l-25.9-34.5c12.1-2.5 18.7-10.6 18.7-23.2 0-28.5-30.3-24.4-52.9-24.4v82h16v-32.8h2.2l22.2 32.8H544z"] }; +var faCcJcb = { prefix: 'fab', iconName: 'cc-jcb', icon: [576, 512, [], "f24b", "M431.5 244.3V212c41.2 0 38.5.2 38.5.2 7.3 1.3 13.3 7.3 13.3 16 0 8.8-6 14.5-13.3 15.8-1.2.4-3.3.3-38.5.3zm42.8 20.2c-2.8-.7-3.3-.5-42.8-.5v35c39.6 0 40 .2 42.8-.5 7.5-1.5 13.5-8 13.5-17 0-8.7-6-15.5-13.5-17zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM182 192.3h-57c0 67.1 10.7 109.7-35.8 109.7-19.5 0-38.8-5.7-57.2-14.8v28c30 8.3 68 8.3 68 8.3 97.9 0 82-47.7 82-131.2zm178.5 4.5c-63.4-16-165-14.9-165 59.3 0 77.1 108.2 73.6 165 59.2V287C312.9 311.7 253 309 253 256s59.8-55.6 107.5-31.2v-28zM544 286.5c0-18.5-16.5-30.5-38-32v-.8c19.5-2.7 30.3-15.5 30.3-30.2 0-19-15.7-30-37-31 0 0 6.3-.3-120.3-.3v127.5h122.7c24.3.1 42.3-12.9 42.3-33.2z"] }; +var faCcMastercard = { prefix: 'fab', iconName: 'cc-mastercard', icon: [576, 512, [], "f1f1", "M482.9 410.3c0 6.8-4.6 11.7-11.2 11.7-6.8 0-11.2-5.2-11.2-11.7 0-6.5 4.4-11.7 11.2-11.7 6.6 0 11.2 5.2 11.2 11.7zm-310.8-11.7c-7.1 0-11.2 5.2-11.2 11.7 0 6.5 4.1 11.7 11.2 11.7 6.5 0 10.9-4.9 10.9-11.7-.1-6.5-4.4-11.7-10.9-11.7zm117.5-.3c-5.4 0-8.7 3.5-9.5 8.7h19.1c-.9-5.7-4.4-8.7-9.6-8.7zm107.8.3c-6.8 0-10.9 5.2-10.9 11.7 0 6.5 4.1 11.7 10.9 11.7 6.8 0 11.2-4.9 11.2-11.7 0-6.5-4.4-11.7-11.2-11.7zm105.9 26.1c0 .3.3.5.3 1.1 0 .3-.3.5-.3 1.1-.3.3-.3.5-.5.8-.3.3-.5.5-1.1.5-.3.3-.5.3-1.1.3-.3 0-.5 0-1.1-.3-.3 0-.5-.3-.8-.5-.3-.3-.5-.5-.5-.8-.3-.5-.3-.8-.3-1.1 0-.5 0-.8.3-1.1 0-.5.3-.8.5-1.1.3-.3.5-.3.8-.5.5-.3.8-.3 1.1-.3.5 0 .8 0 1.1.3.5.3.8.3 1.1.5s.2.6.5 1.1zm-2.2 1.4c.5 0 .5-.3.8-.3.3-.3.3-.5.3-.8 0-.3 0-.5-.3-.8-.3 0-.5-.3-1.1-.3h-1.6v3.5h.8V426h.3l1.1 1.4h.8l-1.1-1.3zM576 81v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V81c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM64 220.6c0 76.5 62.1 138.5 138.5 138.5 27.2 0 53.9-8.2 76.5-23.1-72.9-59.3-72.4-171.2 0-230.5-22.6-15-49.3-23.1-76.5-23.1-76.4-.1-138.5 62-138.5 138.2zm224 108.8c70.5-55 70.2-162.2 0-217.5-70.2 55.3-70.5 162.6 0 217.5zm-142.3 76.3c0-8.7-5.7-14.4-14.7-14.7-4.6 0-9.5 1.4-12.8 6.5-2.4-4.1-6.5-6.5-12.2-6.5-3.8 0-7.6 1.4-10.6 5.4V392h-8.2v36.7h8.2c0-18.9-2.5-30.2 9-30.2 10.2 0 8.2 10.2 8.2 30.2h7.9c0-18.3-2.5-30.2 9-30.2 10.2 0 8.2 10 8.2 30.2h8.2v-23zm44.9-13.7h-7.9v4.4c-2.7-3.3-6.5-5.4-11.7-5.4-10.3 0-18.2 8.2-18.2 19.3 0 11.2 7.9 19.3 18.2 19.3 5.2 0 9-1.9 11.7-5.4v4.6h7.9V392zm40.5 25.6c0-15-22.9-8.2-22.9-15.2 0-5.7 11.9-4.8 18.5-1.1l3.3-6.5c-9.4-6.1-30.2-6-30.2 8.2 0 14.3 22.9 8.3 22.9 15 0 6.3-13.5 5.8-20.7.8l-3.5 6.3c11.2 7.6 32.6 6 32.6-7.5zm35.4 9.3l-2.2-6.8c-3.8 2.1-12.2 4.4-12.2-4.1v-16.6h13.1V392h-13.1v-11.2h-8.2V392h-7.6v7.3h7.6V416c0 17.6 17.3 14.4 22.6 10.9zm13.3-13.4h27.5c0-16.2-7.4-22.6-17.4-22.6-10.6 0-18.2 7.9-18.2 19.3 0 20.5 22.6 23.9 33.8 14.2l-3.8-6c-7.8 6.4-19.6 5.8-21.9-4.9zm59.1-21.5c-4.6-2-11.6-1.8-15.2 4.4V392h-8.2v36.7h8.2V408c0-11.6 9.5-10.1 12.8-8.4l2.4-7.6zm10.6 18.3c0-11.4 11.6-15.1 20.7-8.4l3.8-6.5c-11.6-9.1-32.7-4.1-32.7 15 0 19.8 22.4 23.8 32.7 15l-3.8-6.5c-9.2 6.5-20.7 2.6-20.7-8.6zm66.7-18.3H408v4.4c-8.3-11-29.9-4.8-29.9 13.9 0 19.2 22.4 24.7 29.9 13.9v4.6h8.2V392zm33.7 0c-2.4-1.2-11-2.9-15.2 4.4V392h-7.9v36.7h7.9V408c0-11 9-10.3 12.8-8.4l2.4-7.6zm40.3-14.9h-7.9v19.3c-8.2-10.9-29.9-5.1-29.9 13.9 0 19.4 22.5 24.6 29.9 13.9v4.6h7.9v-51.7zm7.6-75.1v4.6h.8V302h1.9v-.8h-4.6v.8h1.9zm6.6 123.8c0-.5 0-1.1-.3-1.6-.3-.3-.5-.8-.8-1.1-.3-.3-.8-.5-1.1-.8-.5 0-1.1-.3-1.6-.3-.3 0-.8.3-1.4.3-.5.3-.8.5-1.1.8-.5.3-.8.8-.8 1.1-.3.5-.3 1.1-.3 1.6 0 .3 0 .8.3 1.4 0 .3.3.8.8 1.1.3.3.5.5 1.1.8.5.3 1.1.3 1.4.3.5 0 1.1 0 1.6-.3.3-.3.8-.5 1.1-.8.3-.3.5-.8.8-1.1.3-.6.3-1.1.3-1.4zm3.2-124.7h-1.4l-1.6 3.5-1.6-3.5h-1.4v5.4h.8v-4.1l1.6 3.5h1.1l1.4-3.5v4.1h1.1v-5.4zm4.4-80.5c0-76.2-62.1-138.3-138.5-138.3-27.2 0-53.9 8.2-76.5 23.1 72.1 59.3 73.2 171.5 0 230.5 22.6 15 49.5 23.1 76.5 23.1 76.4.1 138.5-61.9 138.5-138.4z"] }; +var faCcPaypal = { prefix: 'fab', iconName: 'cc-paypal', icon: [576, 512, [], "f1f4", "M186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5z"] }; +var faCcStripe = { prefix: 'fab', iconName: 'cc-stripe', icon: [576, 512, [], "f1f5", "M396.9 256.5c0 19.1-8.8 33.4-21.9 33.4-8.3 0-13.3-3-16.8-6.7l-.2-52.8c3.7-4.1 8.8-7 17-7 12.9-.1 21.9 14.5 21.9 33.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM122.2 281.1c0-42.3-54.3-34.7-54.3-50.7 0-5.5 4.6-7.7 12.1-7.7 10.8 0 24.5 3.3 35.3 9.1v-33.4c-11.8-4.7-23.5-6.5-35.3-6.5-28.8 0-48 15-48 40.2 0 39.3 54 32.9 54 49.9 0 6.6-5.7 8.7-13.6 8.7-11.8 0-26.9-4.9-38.9-11.3v33.9c13.2 5.7 26.6 8.1 38.8 8.1 29.6-.2 49.9-14.7 49.9-40.3zm68.9-86.9h-27v-30.8l-34.7 7.4-.2 113.9c0 21 15.8 36.5 36.9 36.5 11.6 0 20.2-2.1 24.9-4.7v-28.9c-4.5 1.8-27 8.3-27-12.6v-50.5h27v-30.3zm73.8 0c-4.7-1.7-21.3-4.8-29.6 10.5l-2.2-10.5h-30.7v124.5h35.5v-84.4c8.4-11 22.6-8.9 27.1-7.4v-32.7zm44.2 0h-35.7v124.5h35.7V194.2zm0-47.3l-35.7 7.6v28.9l35.7-7.6v-28.9zm122.7 108.8c0-41.3-23.5-63.8-48.4-63.8-13.9 0-22.9 6.6-27.8 11.1l-1.8-8.8h-31.3V360l35.5-7.5.1-40.2c5.1 3.7 12.7 9 25.1 9 25.4-.1 48.6-20.5 48.6-65.6zm112.2 1.2c0-36.4-17.6-65.1-51.3-65.1-33.8 0-54.3 28.7-54.3 64.9 0 42.8 24.2 64.5 58.8 64.5 17 0 29.7-3.9 39.4-9.2v-28.6c-9.7 4.9-20.8 7.9-34.9 7.9-13.8 0-26-4.9-27.6-21.5h69.5c.1-2 .4-9.4.4-12.9zm-51.6-36.1c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7z"] }; +var faCcVisa = { prefix: 'fab', iconName: 'cc-visa', icon: [576, 512, [], "f1f0", "M470.1 231.3s7.6 37.2 9.3 45H446c3.3-8.9 16-43.5 16-43.5-.2.3 3.3-9.1 5.3-14.9l2.8 13.4zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM152.5 331.2L215.7 176h-42.5l-39.3 106-4.3-21.5-14-71.4c-2.3-9.9-9.4-12.7-18.2-13.1H32.7l-.7 3.1c15.8 4 29.9 9.8 42.2 17.1l35.8 135h42.5zm94.4.2L272.1 176h-40.2l-25.1 155.4h40.1zm139.9-50.8c.2-17.7-10.6-31.2-33.7-42.3-14.1-7.1-22.7-11.9-22.7-19.2.2-6.6 7.3-13.4 23.1-13.4 13.1-.3 22.7 2.8 29.9 5.9l3.6 1.7 5.5-33.6c-7.9-3.1-20.5-6.6-36-6.6-39.7 0-67.6 21.2-67.8 51.4-.3 22.3 20 34.7 35.2 42.2 15.5 7.6 20.8 12.6 20.8 19.3-.2 10.4-12.6 15.2-24.1 15.2-16 0-24.6-2.5-37.7-8.3l-5.3-2.5-5.6 34.9c9.4 4.3 26.8 8.1 44.8 8.3 42.2.1 69.7-20.8 70-53zM528 331.4L495.6 176h-31.1c-9.6 0-16.9 2.8-21 12.9l-59.7 142.5H426s6.9-19.2 8.4-23.3H486c1.2 5.5 4.8 23.3 4.8 23.3H528z"] }; +var faCentercode = { prefix: 'fab', iconName: 'centercode', icon: [512, 512, [], "f380", "M329.2 268.6c-3.8 35.2-35.4 60.6-70.6 56.8-35.2-3.8-60.6-35.4-56.8-70.6 3.8-35.2 35.4-60.6 70.6-56.8 35.1 3.8 60.6 35.4 56.8 70.6zm-85.8 235.1C96.7 496-8.2 365.5 10.1 224.3c11.2-86.6 65.8-156.9 139.1-192 161-77.1 349.7 37.4 354.7 216.6 4.1 147-118.4 262.2-260.5 254.8zm179.9-180c27.9-118-160.5-205.9-237.2-234.2-57.5 56.3-69.1 188.6-33.8 344.4 68.8 15.8 169.1-26.4 271-110.2z"] }; +var faChrome = { prefix: 'fab', iconName: 'chrome', icon: [496, 512, [], "f268", "M131.5 217.5L55.1 100.1c47.6-59.2 119-91.8 192-92.1 42.3-.3 85.5 10.5 124.8 33.2 43.4 25.2 76.4 61.4 97.4 103L264 133.4c-58.1-3.4-113.4 29.3-132.5 84.1zm32.9 38.5c0 46.2 37.4 83.6 83.6 83.6s83.6-37.4 83.6-83.6-37.4-83.6-83.6-83.6-83.6 37.3-83.6 83.6zm314.9-89.2L339.6 174c37.9 44.3 38.5 108.2 6.6 157.2L234.1 503.6c46.5 2.5 94.4-7.7 137.8-32.9 107.4-62 150.9-192 107.4-303.9zM133.7 303.6L40.4 120.1C14.9 159.1 0 205.9 0 256c0 124 90.8 226.7 209.5 244.9l63.7-124.8c-57.6 10.8-113.2-20.8-139.5-72.5z"] }; +var faCloudscale = { prefix: 'fab', iconName: 'cloudscale', icon: [448, 512, [], "f383", "M318.1 154l-9.4 7.6c-22.5-19.3-51.5-33.6-83.3-33.6C153.8 128 96 188.8 96 260.3c0 6.6.4 13.1 1.4 19.4-2-56 41.8-97.4 92.6-97.4 24.2 0 46.2 9.4 62.6 24.7l-25.2 20.4c-8.3-.9-16.8 1.8-23.1 8.1-11.1 11-11.1 28.9 0 40 11.1 11 28.9 11 40 0 6.3-6.3 9-14.9 8.1-23.1l75.2-88.8c6.3-6.5-3.3-15.9-9.5-9.6zm-83.8 111.5c-5.6 5.5-14.6 5.5-20.2 0-5.6-5.6-5.6-14.6 0-20.2s14.6-5.6 20.2 0 5.6 14.7 0 20.2zM224 32C100.5 32 0 132.5 0 256s100.5 224 224 224 224-100.5 224-224S347.5 32 224 32zm0 384c-88.2 0-160-71.8-160-160S135.8 96 224 96s160 71.8 160 160-71.8 160-160 160z"] }; +var faCloudsmith = { prefix: 'fab', iconName: 'cloudsmith', icon: [332, 512, [], "f384", "M332.5 419.9c0 46.4-37.6 84.1-84 84.1s-84-37.7-84-84.1 37.6-84 84-84 84 37.6 84 84zm-84-243.9c46.4 0 80-37.6 80-84s-33.6-84-80-84-88 37.6-88 84-29.6 76-76 76-84 41.6-84 88 37.6 80 84 80 84-33.6 84-80 33.6-80 80-80z"] }; +var faCloudversify = { prefix: 'fab', iconName: 'cloudversify', icon: [616, 512, [], "f385", "M148.6 304c8.2 68.5 67.4 115.5 146 111.3 51.2 43.3 136.8 45.8 186.4-5.6 69.2 1.1 118.5-44.6 131.5-99.5 14.8-62.5-18.2-132.5-92.1-155.1-33-88.1-131.4-101.5-186.5-85-57.3 17.3-84.3 53.2-99.3 109.7-7.8 2.7-26.5 8.9-45 24.1 11.7 0 15.2 8.9 15.2 19.5v20.4c0 10.7-8.7 19.5-19.5 19.5h-20.2c-10.7 0-19.5-6-19.5-16.7V240H98.8C95 240 88 244.3 88 251.9v40.4c0 6.4 5.3 11.8 11.7 11.8h48.9zm227.4 8c-10.7 46.3 21.7 72.4 55.3 86.8C324.1 432.6 259.7 348 296 288c-33.2 21.6-33.7 71.2-29.2 92.9-17.9-12.4-53.8-32.4-57.4-79.8-3-39.9 21.5-75.7 57-93.9C297 191.4 369.9 198.7 400 248c-14.1-48-53.8-70.1-101.8-74.8 30.9-30.7 64.4-50.3 114.2-43.7 69.8 9.3 133.2 82.8 67.7 150.5 35-16.3 48.7-54.4 47.5-76.9l10.5 19.6c11.8 22 15.2 47.6 9.4 72-9.2 39-40.6 68.8-79.7 76.5-32.1 6.3-83.1-5.1-91.8-59.2zM128 208H88.2c-8.9 0-16.2-7.3-16.2-16.2v-39.6c0-8.9 7.3-16.2 16.2-16.2H128c8.9 0 16.2 7.3 16.2 16.2v39.6c0 8.9-7.3 16.2-16.2 16.2zM10.1 168C4.5 168 0 163.5 0 157.9v-27.8c0-5.6 4.5-10.1 10.1-10.1h27.7c5.5 0 10.1 4.5 10.1 10.1v27.8c0 5.6-4.5 10.1-10.1 10.1H10.1zM168 142.7v-21.4c0-5.1 4.2-9.3 9.3-9.3h21.4c5.1 0 9.3 4.2 9.3 9.3v21.4c0 5.1-4.2 9.3-9.3 9.3h-21.4c-5.1 0-9.3-4.2-9.3-9.3zM56 235.5v25c0 6.3-5.1 11.5-11.4 11.5H19.4C13.1 272 8 266.8 8 260.5v-25c0-6.3 5.1-11.5 11.4-11.5h25.1c6.4 0 11.5 5.2 11.5 11.5z"] }; +var faCodepen = { prefix: 'fab', iconName: 'codepen', icon: [512, 512, [], "f1cb", "M502.285 159.704l-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285zM278 63.131l172.286 114.858-76.857 51.429L278 165.703V63.131zm-44 0v102.572l-95.429 63.715-76.857-51.429L234 63.131zM44 219.132l55.143 36.857L44 292.846v-73.714zm190 229.715L61.714 333.989l76.857-51.429L234 346.275v102.572zm22-140.858l-77.715-52 77.715-52 77.715 52-77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429L278 448.847zm190-156.001l-55.143-36.857L468 219.132v73.714z"] }; +var faCodiepie = { prefix: 'fab', iconName: 'codiepie', icon: [472, 512, [], "f284", "M422.5 202.9c30.7 0 33.5 53.1-.3 53.1h-10.8v44.3h-26.6v-97.4h37.7zM472 352.6C429.9 444.5 350.4 504 248 504 111 504 0 393 0 256S111 8 248 8c97.4 0 172.8 53.7 218.2 138.4l-186 108.8L472 352.6zm-38.5 12.5l-60.3-30.7c-27.1 44.3-70.4 71.4-122.4 71.4-82.5 0-149.2-66.7-149.2-148.9 0-82.5 66.7-149.2 149.2-149.2 48.4 0 88.9 23.5 116.9 63.4l59.5-34.6c-40.7-62.6-104.7-100-179.2-100-121.2 0-219.5 98.3-219.5 219.5S126.8 475.5 248 475.5c78.6 0 146.5-42.1 185.5-110.4z"] }; +var faConnectdevelop = { prefix: 'fab', iconName: 'connectdevelop', icon: [576, 512, [], "f20e", "M550.5 241l-50.089-86.786c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.733-14.732-15.001l-55.447-95.893c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.268-15.268-15.268-4.821 0-8.839 2.143-11.786 5.625H299.518C296.839 18.143 292.821 16 288 16s-8.839 2.143-11.518 5.625H170.411C167.464 18.143 163.447 16 158.625 16c-8.303 0-15.268 6.696-15.268 15.268 0 1.607.536 3.482 1.072 4.821l-55.983 97.233c-5.356 2.41-9.107 7.5-9.107 13.661 0 .535.268 1.071.268 1.607l-53.304 92.143c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.393 12.054 15l55.179 95.358c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.393 12.054 14.732l51.697 89.732c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.268 15.268 15.268 4.821 0 8.839-2.143 11.518-5.357h106.875C279.161 493.857 283.447 496 288 496s8.839-2.143 11.518-5.357h107.143c2.678 2.946 6.696 4.821 10.982 4.821 8.571 0 15.268-6.964 15.268-15.268 0-1.607-.267-2.946-.803-4.285l51.697-90.268c6.964-1.339 12.054-7.5 12.054-14.732 0-1.607-.268-3.214-.804-4.821l54.911-95.358c6.964-1.339 12.322-7.5 12.322-15-.002-7.232-5.092-13.393-11.788-14.732zM153.535 450.732l-43.66-75.803h43.66v75.803zm0-83.839h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.999-47.41v50.624zm0-62.411l-50.357 53.304c-1.339-.536-2.679-1.34-4.018-1.607L43.447 259.75c.535-1.339.535-2.679.535-4.018s0-2.41-.268-3.482l51.965-90c2.679-.268 5.357-1.072 7.768-2.679l50.089 51.965v92.946zm0-102.322l-45.803-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.928-15.804v72.053zm0-80.625l-43.66 15.804 43.66-75.536v59.732zm326.519 39.108l.804 1.339L445.5 329.125l-63.75-67.232 98.036-101.518.268.268zM291.75 355.107l11.518 11.786H280.5l11.25-11.786zm-.268-11.25l-83.303-85.446 79.553-84.375 83.036 87.589-79.286 82.232zm5.357 5.893l79.286-82.232 67.5 71.25-5.892 28.125H313.714l-16.875-17.143zM410.411 44.393c1.071.536 2.142 1.072 3.482 1.34l57.857 100.714v.536c0 2.946.803 5.624 2.143 7.767L376.393 256l-83.035-87.589L410.411 44.393zm-9.107-2.143L287.732 162.518l-57.054-60.268 166.339-60h4.287zm-123.483 0c2.678 2.678 6.16 4.285 10.179 4.285s7.5-1.607 10.179-4.285h75L224.786 95.821 173.893 42.25h103.928zm-116.249 5.625l1.071-2.142a33.834 33.834 0 0 0 2.679-.804l51.161 53.84-54.911 19.821V47.875zm0 79.286l60.803-21.964 59.732 63.214-79.553 84.107-40.982-42.053v-83.304zm0 92.678L198 257.607l-36.428 38.304v-76.072zm0 87.858l42.053-44.464 82.768 85.982-17.143 17.678H161.572v-59.196zm6.964 162.053c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.732h99.91l-91.607 94.821h-1.339zm129.911 0c-2.679-2.41-6.428-4.285-10.447-4.285s-7.767 1.875-10.447 4.285h-96.429l91.607-94.821h38.304l91.607 94.821H298.447zm120-11.786l-4.286 7.5c-1.339.268-2.41.803-3.482 1.339l-89.196-91.875h114.376l-17.412 83.036zm12.856-22.232l12.858-60.803h21.964l-34.822 60.803zm34.822-68.839h-20.357l4.553-21.16 17.143 18.214c-.535.803-1.071 1.874-1.339 2.946zm66.161-107.411l-55.447 96.697c-1.339.535-2.679 1.071-4.018 1.874l-20.625-21.964 34.554-163.928 45.803 79.286c-.267 1.339-.803 2.678-.803 4.285 0 1.339.268 2.411.536 3.75z"] }; +var faContao = { prefix: 'fab', iconName: 'contao', icon: [512, 512, [], "f26d", "M45.4 305c14.4 67.1 26.4 129 68.2 175H34c-18.7 0-34-15.2-34-34V66c0-18.7 15.2-34 34-34h57.7C77.9 44.6 65.6 59.2 54.8 75.6c-45.4 70-27 146.8-9.4 229.4zM478 32h-90.2c21.4 21.4 39.2 49.5 52.7 84.1l-137.1 29.3c-14.9-29-37.8-53.3-82.6-43.9-24.6 5.3-41 19.3-48.3 34.6-8.8 18.7-13.2 39.8 8.2 140.3 21.1 100.2 33.7 117.7 49.5 131.2 12.9 11.1 33.4 17 58.3 11.7 44.5-9.4 55.7-40.7 57.4-73.2l137.4-29.6c3.2 71.5-18.7 125.2-57.4 163.6H478c18.7 0 34-15.2 34-34V66c0-18.8-15.2-34-34-34z"] }; +var faCpanel = { prefix: 'fab', iconName: 'cpanel', icon: [640, 512, [], "f388", "M52.9 213.7h40l-6.2 23.6c-1.9 6.5-7.4 10.9-14.3 10.9H53.8c-24.9 0-24.7 37.4 0 37.4h11.3c4.2 0 7.6 3.9 6.4 8.3L64.4 320H52c-33.5 0-59-31.4-50.3-65.2 7.3-27 28.3-41.1 51.2-41.1M73.1 320L108 189.9c1.8-6.4 7.2-10.9 14.3-10.9h37c24.1 0 45.4 16.4 51 41.2 6.6 29.1-14.5 65.3-51.7 65.3h-32l6.4-23.8c1.8-6.2 7.3-10.8 14.3-10.8h10.3c12.4 0 20.8-11.7 18.3-22.6-2.1-9.2-9.9-14.8-18.3-14.8h-19.8L112 309.2c-1.9 6.2-7.4 10.7-14.2 10.7l-24.7.1m220.6-69.4c.3-1 1.9-5.3-2.1-5.3h-57.5c-9.7 0-16.6-8.9-14.2-18.5l3.5-13.4h77.9c18.8 0 33.3 17.6 28.5 36.8l-14 51.8c-2.8 10.6-12.2 17.8-23.4 17.8l-57.5-.2c-42.9 0-38.5-63.8.7-63.8H284l-3.5 13.2c-1.9 6.2-7.4 10.8-14.2 10.8h-21.6c-5.3 0-5.3 7.9 0 7.9h34.9c4.6 0 5.1-3.9 5.5-5.3l8.6-31.8m103.1-36.9c34.4 0 59.3 32.3 50.3 65.4l-8.8 33.1c-1.2 4.9-5.7 7.8-10.3 7.8h-19.1c-4.5 0-7.6-4-6.4-8.3l10.6-40c3.3-11.6-5.6-23.4-18.1-23.4h-19.8l-17.2 64c-1.2 4.8-5.6 7.8-10.4 7.8h-18.9c-4.2 0-7.6-3.9-6.4-8.3l26.2-98h48.3M498 251.6l-8 30c-.9 3.3 1.5 6.7 5.1 6.7h73.3l-5.7 21c-1.9 6.2-7.4 10.7-14.2 10.7h-66.7c-20 0-33.3-19-28.3-36.7l10.8-40c4.8-17.6 20.7-29.6 38.6-29.6h47.3c19 0 33.2 17.7 28.3 36.8l-3.2 12c-2.9 11-12.7 17.6-23.2 17.6h-53.4l3.5-13c1.6-6.2 7.2-10.8 14.2-10.8H538c2 0 3.3-1 3.9-3l.7-2.6c.7-2.7-1.3-5.1-3.9-5.1h-32.9c-4.1 0-6.9 2.1-7.8 6zm70.2 68.4l35.6-133.1c1.2-4.7 5.5-7.9 10.4-7.9h18.9c4.5 0 7.7 4 6.5 8.3l-26.5 98.2c-5.1 20.7-24.2 34.5-44.9 34.5"] }; +var faCreativeCommons = { prefix: 'fab', iconName: 'creative-commons', icon: [496, 512, [], "f25e", "M254.8 214.8l-33.2 17.3c-9.4-19.6-25.2-19.9-27.5-19.9-22.1 0-33.2 14.6-33.2 43.8 0 23.6 9.2 43.8 33.2 43.8 14.5 0 24.7-7.1 30.6-21.3l30.6 15.5c-6.2 11.5-25.7 39-65.1 39-22.6 0-74-10.3-74-77.1 0-58.7 43-77.1 72.6-77.1 30.8.2 52.7 12.1 66 36zm143.1 0l-32.8 17.3c-9.5-19.8-25.7-19.9-27.9-19.9-22.1 0-33.2 14.6-33.2 43.8 0 23.6 9.2 43.8 33.2 43.8 14.5 0 24.6-7.1 30.5-21.3l31 15.5c-2.1 3.7-21.4 39-65.1 39-22.7 0-74-9.9-74-77.1 0-58.7 43-77.1 72.6-77.1 30.8.2 52.7 12.1 65.7 36zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z"] }; +var faCreativeCommonsBy = { prefix: 'fab', iconName: 'creative-commons-by', icon: [496, 512, [], "f4e7", "M314.9 194.4v101.4h-28.3v120.5h-77.1V295.9h-28.3V194.4c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7H299c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3zm-101.5-63.7c0-23.3 11.5-35 34.5-35s34.5 11.7 34.5 35c0 23-11.5 34.5-34.5 34.5s-34.5-11.5-34.5-34.5zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z"] }; +var faCreativeCommonsNc = { prefix: 'fab', iconName: 'creative-commons-nc', icon: [496, 512, [], "f4e8", "M247.6 8C387.4 8 496 115.9 496 256c0 147.2-118.5 248-248.4 248C113.1 504 0 393.2 0 256 0 123.1 104.7 8 247.6 8zM55.8 189.1c-7.4 20.4-11.1 42.7-11.1 66.9 0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4v38.1h-28.8V368c-27.5-.3-52.6-10.2-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4zM248.4 52.3c-38.4 0-112.4 8.7-170.5 93l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3v-38.1h28.8v38.1c22.7 1.2 43.4 8.9 62 23L295 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8z"] }; +var faCreativeCommonsNcEu = { prefix: 'fab', iconName: 'creative-commons-nc-eu', icon: [496, 512, [], "f4e9", "M247.7 8C103.6 8 0 124.8 0 256c0 136.3 111.7 248 247.7 248C377.9 504 496 403.1 496 256 496 117 388.4 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-23.2 3.7-45.2 10.9-66l65.7 29.1h-4.7v29.5h23.3c0 6.2-.4 3.2-.4 19.5h-22.8v29.5h27c11.4 67 67.2 101.3 124.6 101.3 26.6 0 50.6-7.9 64.8-15.8l-10-46.1c-8.7 4.6-28.2 10.8-47.3 10.8-28.2 0-58.1-10.9-67.3-50.2h90.3l128.3 56.8c-1.5 2.1-56.2 104.3-178.8 104.3zm-16.7-190.6l-.5-.4.9.4h-.4zm77.2-19.5h3.7v-29.5h-70.3l-28.6-12.6c2.5-5.5 5.4-10.5 8.8-14.3 12.9-15.8 31.1-22.4 51.1-22.4 18.3 0 35.3 5.4 46.1 10l11.6-47.3c-15-6.6-37-12.4-62.3-12.4-39 0-72.2 15.8-95.9 42.3-5.3 6.1-9.8 12.9-13.9 20.1l-81.6-36.1c64.6-96.8 157.7-93.6 170.7-93.6 113 0 203 90.2 203 203.4 0 18.7-2.1 36.3-6.3 52.9l-136.1-60.5z"] }; +var faCreativeCommonsNcJp = { prefix: 'fab', iconName: 'creative-commons-nc-jp', icon: [496, 512, [], "f4ea", "M247.7 8C103.6 8 0 124.8 0 256c0 136.4 111.8 248 247.7 248C377.9 504 496 403.2 496 256 496 117.2 388.5 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-21.1 3-41.2 9-60.3l127 56.5h-27.9v38.6h58.1l5.7 11.8v18.7h-63.8V360h63.8v56h61.7v-56h64.2v-35.7l81 36.1c-1.5 2.2-57.1 98.3-175.2 98.3zm87.6-137.3h-57.6v-18.7l2.9-5.6 54.7 24.3zm6.5-51.4v-17.8h-38.6l63-116H301l-43.4 96-23-10.2-39.6-85.7h-65.8l27.3 51-81.9-36.5c27.8-44.1 82.6-98.1 173.7-98.1 112.8 0 203 90 203 203.4 0 21-2.7 40.6-7.9 59l-101-45.1z"] }; +var faCreativeCommonsNd = { prefix: 'fab', iconName: 'creative-commons-nd', icon: [496, 512, [], "f4eb", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm94 144.3v42.5H162.1V197h180.3zm0 79.8v42.5H162.1v-42.5h180.3z"] }; +var faCreativeCommonsPd = { prefix: 'fab', iconName: 'creative-commons-pd', icon: [496, 512, [], "f4ec", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm0 449.5c-139.2 0-235.8-138-190.2-267.9l78.8 35.1c-2.1 10.5-3.3 21.5-3.3 32.9 0 99 73.9 126.9 120.4 126.9 22.9 0 53.5-6.7 79.4-29.5L297 311.1c-5.5 6.3-17.6 16.7-36.3 16.7-37.8 0-53.7-39.9-53.9-71.9 230.4 102.6 216.5 96.5 217.9 96.8-34.3 62.4-100.6 104.8-176.7 104.8zm194.2-150l-224-100c18.8-34 54.9-30.7 74.7-11l40.4-41.6c-27.1-23.3-58-27.5-78.1-27.5-47.4 0-80.9 20.5-100.7 51.6l-74.9-33.4c36.1-54.9 98.1-91.2 168.5-91.2 111.1 0 201.5 90.4 201.5 201.5 0 18-2.4 35.4-6.8 52-.3-.1-.4-.2-.6-.4z"] }; +var faCreativeCommonsPdAlt = { prefix: 'fab', iconName: 'creative-commons-pd-alt', icon: [496, 512, [], "f4ed", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM135.5 323.3V186h68.2c33.7 0 50.5 15.5 50.5 46.5 0 9-3 46.5-57.1 46.5h-27v44.3h-34.6zm34.1-111.6v41.6h29.2c27.9 0 30-41.6-.9-41.6h-28.3zm93.9 111.6V186h53.2c21.4 0 70 5.2 70 68.6 0 63.5-48.6 68.6-70 68.6h-53.2zm34.1-108.5v79.7h19.9c24 0 34.5-15.3 34.5-39.9 0-42-31.2-39.9-35-39.9l-19.4.1z"] }; +var faCreativeCommonsRemix = { prefix: 'fab', iconName: 'creative-commons-remix', icon: [496, 512, [], "f4ee", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm161.7 207.7l4.9 2.2v70c-7.2 3.6-63.4 27.5-67.3 28.8-6.5-1.8-113.7-46.8-137.3-56.2l-64.2 26.6-63.3-27.5v-63.8l59.3-24.8c-.7-.7-.4 5-.4-70.4l67.3-29.7L361 178.5v61.6l49.1 20.3zm-70.4 81.5v-43.8h-.4v-1.8l-113.8-46.5V295l113.8 46.9v-.4l.4.4zm7.5-57.6l39.9-16.4-36.8-15.5-39 16.4 35.9 15.5zm52.3 38.1v-43L355.2 298v43.4l44.3-19z"] }; +var faCreativeCommonsSa = { prefix: 'fab', iconName: 'creative-commons-sa', icon: [496, 512, [], "f4ef", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM137.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97h62.5c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6-33.1 0-51.7 14.6-55.8 43.8h18.2l-49.2 49.2-49-49.2h19.4z"] }; +var faCreativeCommonsSampling = { prefix: 'fab', iconName: 'creative-commons-sampling', icon: [496, 512, [], "f4f0", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm3.6 53.2c2.8-.3 11.5 1 11.5 11.5l6.6 107.2 4.9-59.3c0-6 4.7-10.6 10.6-10.6 5.9 0 10.6 4.7 10.6 10.6 0 2.5-.5-5.7 5.7 81.5l5.8-64.2c.3-2.9 2.9-9.3 10.2-9.3 3.8 0 9.9 2.3 10.6 8.9l11.5 96.5 5.3-12.8c1.8-4.4 5.2-6.6 10.2-6.6h58v21.3h-50.9l-18.2 44.3c-3.9 9.9-19.5 9.1-20.8-3.1l-4-31.9-7.5 92.6c-.3 3-3 9.3-10.2 9.3-3 0-9.8-2.1-10.6-9.3 0-1.9.6 5.8-6.2-77.9l-5.3 72.2c-1.1 4.8-4.8 9.3-10.6 9.3-2.9 0-9.8-2-10.6-9.3 0-1.9.5 6.7-5.8-87.7l-5.8 94.8c0 6.3-3.6 12.4-10.6 12.4-5.2 0-10.6-4.1-10.6-12l-5.8-87.7c-5.8 92.5-5.3 84-5.3 85.9-1.1 4.8-4.8 9.3-10.6 9.3-3 0-9.8-2.1-10.6-9.3 0-.7-.4-1.1-.4-2.6l-6.2-88.6L182 348c-.7 6.5-6.7 9.3-10.6 9.3-5.8 0-9.6-4.1-10.6-8.9L149.7 272c-2 4-3.5 8.4-11.1 8.4H87.2v-21.3H132l13.7-27.9c4.4-9.9 18.2-7.2 19.9 2.7l3.1 20.4 8.4-97.9c0-6 4.8-10.6 10.6-10.6.5 0 10.6-.2 10.6 12.4l4.9 69.1 6.6-92.6c0-10.1 9.5-10.6 10.2-10.6.6 0 10.6.7 10.6 10.6l5.3 80.6 6.2-97.9c.1-1.1-.6-10.3 9.9-11.5z"] }; +var faCreativeCommonsSamplingPlus = { prefix: 'fab', iconName: 'creative-commons-sampling-plus', icon: [496, 512, [], "f4f1", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm107 205.6c-4.7 0-9 2.8-10.7 7.2l-4 9.5-11-92.8c-1.7-13.9-22-13.4-23.1.4l-4.3 51.4-5.2-68.8c-1.1-14.3-22.1-14.2-23.2 0l-3.5 44.9-5.9-94.3c-.9-14.5-22.3-14.4-23.2 0l-5.1 83.7-4.3-66.3c-.9-14.4-22.2-14.4-23.2 0l-5.3 80.2-4.1-57c-1.1-14.3-22-14.3-23.2-.2l-7.7 89.8-1.8-12.2c-1.7-11.4-17.1-13.6-22-3.3l-13.2 27.7H87.5v23.2h51.3c4.4 0 8.4-2.5 10.4-6.4l10.7 73.1c2 13.5 21.9 13 23.1-.7l3.8-43.6 5.7 78.3c1.1 14.4 22.3 14.2 23.2-.1l4.6-70.4 4.8 73.3c.9 14.4 22.3 14.4 23.2-.1l4.9-80.5 4.5 71.8c.9 14.3 22.1 14.5 23.2.2l4.6-58.6 4.9 64.4c1.1 14.3 22 14.2 23.1.1l6.8-83 2.7 22.3c1.4 11.8 17.7 14.1 22.3 3.1l18-43.4h50.5V258l-58.4.3zm-78 5.2h-21.9v21.9c0 4.1-3.3 7.5-7.5 7.5-4.1 0-7.5-3.3-7.5-7.5v-21.9h-21.9c-4.1 0-7.5-3.3-7.5-7.5 0-4.1 3.4-7.5 7.5-7.5h21.9v-21.9c0-4.1 3.4-7.5 7.5-7.5s7.5 3.3 7.5 7.5v21.9h21.9c4.1 0 7.5 3.3 7.5 7.5 0 4.1-3.4 7.5-7.5 7.5z"] }; +var faCreativeCommonsShare = { prefix: 'fab', iconName: 'creative-commons-share', icon: [496, 512, [], "f4f2", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm101 132.4c7.8 0 13.7 6.1 13.7 13.7v182.5c0 7.7-6.1 13.7-13.7 13.7H214.3c-7.7 0-13.7-6-13.7-13.7v-54h-54c-7.8 0-13.7-6-13.7-13.7V131.1c0-8.2 6.6-12.7 12.4-13.7h136.4c7.7 0 13.7 6 13.7 13.7v54h54zM159.9 300.3h40.7V198.9c0-7.4 5.8-12.6 12-13.7h55.8v-40.3H159.9v155.4zm176.2-88.1H227.6v155.4h108.5V212.2z"] }; +var faCss3 = { prefix: 'fab', iconName: 'css3', icon: [512, 512, [], "f13c", "M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z"] }; +var faCss3Alt = { prefix: 'fab', iconName: 'css3-alt', icon: [384, 512, [], "f38b", "M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z"] }; +var faCuttlefish = { prefix: 'fab', iconName: 'cuttlefish', icon: [440, 512, [], "f38c", "M344 305.5c-17.5 31.6-57.4 54.5-96 54.5-56.6 0-104-47.4-104-104s47.4-104 104-104c38.6 0 78.5 22.9 96 54.5 13.7-50.9 41.7-93.3 87-117.8C385.7 39.1 320.5 8 248 8 111 8 0 119 0 256s111 248 248 248c72.5 0 137.7-31.1 183-80.7-45.3-24.5-73.3-66.9-87-117.8z"] }; +var faDAndD = { prefix: 'fab', iconName: 'd-and-d', icon: [576, 512, [], "f38d", "M82.5 98.9c-.6-17.2 2-33.8 12.7-48.2.3 7.4 1.2 14.5 4.2 21.6 5.9-27.5 19.7-49.3 42.3-65.5-1.9 5.9-3.5 11.8-3 17.7 8.7-7.4 18.8-17.8 44.4-22.7 14.7-2.8 29.7-2 42.1 1 38.5 9.3 61 34.3 69.7 72.3 5.3 23.1.7 45-8.3 66.4-5.2 12.4-12 24.4-20.7 35.1-2-1.9-3.9-3.8-5.8-5.6-42.8-40.8-26.8-25.2-37.4-37.4-1.1-1.2-1-2.2-.1-3.6 8.3-13.5 11.8-28.2 10-44-1.1-9.8-4.3-18.9-11.3-26.2-14.5-15.3-39.2-15-53.5.6-11.4 12.5-14.1 27.4-10.9 43.6.2 1.3.4 2.7 0 3.9-3.4 13.7-4.6 27.6-2.5 41.6.1.5.1 1.1.1 1.6 0 .3-.1.5-.2 1.1-21.8-11-36-28.3-43.2-52.2-8.3 17.8-11.1 35.5-6.6 54.1-15.6-15.2-21.3-34.3-22-55.2zm469.6 123.2c-11.6-11.6-25-20.4-40.1-26.6-12.8-5.2-26-7.9-39.9-7.1-10 .6-19.6 3.1-29 6.4-2.5.9-5.1 1.6-7.7 2.2-4.9 1.2-7.3-3.1-4.7-6.8 3.2-4.6 3.4-4.2 15-12 .6-.4 1.2-.8 2.2-1.5h-2.5c-.6 0-1.2.2-1.9.3-19.3 3.3-30.7 15.5-48.9 29.6-10.4 8.1-13.8 3.8-12-.5 1.4-3.5 3.3-6.7 5.1-10 1-1.8 2.3-3.4 3.5-5.1-.2-.2-.5-.3-.7-.5-27 18.3-46.7 42.4-57.7 73.3.3.3.7.6 1 .9.3-.6.5-1.2.9-1.7 10.4-12.1 22.8-21.8 36.6-29.8 18.2-10.6 37.5-18.3 58.7-20.2 4.3-.4 8.7-.1 13.1-.1-1.8.7-3.5.9-5.3 1.1-18.5 2.4-35.5 9-51.5 18.5-30.2 17.9-54.5 42.2-75.1 70.4-.3.4-.4.9-.7 1.3 14.5 5.3 24 17.3 36.1 25.6.2-.1.3-.2.4-.4l1.2-2.7c12.2-26.9 27-52.3 46.7-74.5 16.7-18.8 38-25.3 62.5-20 5.9 1.3 11.4 4.4 17.2 6.8 2.3-1.4 5.1-3.2 8-4.7 8.4-4.3 17.4-7 26.7-9 14.7-3.1 29.5-4.9 44.5-1.3v-.5c-.5-.4-1.2-.8-1.7-1.4zM316.7 397.6c-39.4-33-22.8-19.5-42.7-35.6-.8.9 0-.2-1.9 3-11.2 19.1-25.5 35.3-44 47.6-10.3 6.8-21.5 11.8-34.1 11.8-21.6 0-38.2-9.5-49.4-27.8-12-19.5-13.3-40.7-8.2-62.6 7.8-33.8 30.1-55.2 38.6-64.3-18.7-6.2-33 1.7-46.4 13.9.8-13.9 4.3-26.2 11.8-37.3-24.3 10.6-45.9 25-64.8 43.9-.3-5.8 5.4-43.7 5.6-44.7.3-2.7-.6-5.3-3-7.4-24.2 24.7-44.5 51.8-56.1 84.6 7.4-5.9 14.9-11.4 23.6-16.2-8.3 22.3-19.6 52.8-7.8 101.1 4.6 19 11.9 36.8 24.1 52.3 2.9 3.7 6.3 6.9 9.5 10.3.2-.2.4-.3.6-.5-1.4-7-2.2-14.1-1.5-21.9 2.2 3.2 3.9 6 5.9 8.6 12.6 16 28.7 27.4 47.2 35.6 25 11.3 51.1 13.3 77.9 8.6 54.9-9.7 90.7-48.6 116-98.8 1-1.8.6-2.9-.9-4.2zm172-46.4c-9.5-3.1-22.2-4.2-28.7-2.9 9.9 4 14.1 6.6 18.8 12 12.6 14.4 10.4 34.7-5.4 45.6-11.7 8.1-24.9 10.5-38.9 9.1-1.2-.1-2.3-.4-3-.6 2.8-3.7 6-7 8.1-10.8 9.4-16.8 5.4-42.1-8.7-56.1-2.1-2.1-4.6-3.9-7-5.9-.3 1.3-.1 2.1.1 2.8 4.2 16.6-8.1 32.4-24.8 31.8-7.6-.3-13.9-3.8-19.6-8.5-19.5-16.1-39.1-32.1-58.5-48.3-5.9-4.9-12.5-8.1-20.1-8.7-4.6-.4-9.3-.6-13.9-.9-5.9-.4-8.8-2.8-10.4-8.4-.9-3.4-1.5-6.8-2.2-10.2-1.5-8.1-6.2-13-14.3-14.2-4.4-.7-8.9-1-13.3-1.5-13-1.4-19.8-7.4-22.6-20.3-5 11-1.6 22.4 7.3 29.9 4.5 3.8 9.3 7.3 13.8 11.2 4.6 3.8 7.4 8.7 7.9 14.8.4 4.7.8 9.5 1.8 14.1 2.2 10.6 8.9 18.4 17 25.1 16.5 13.7 33 27.3 49.5 41.1 17.9 15 13.9 32.8 13 56-.9 22.9 12.2 42.9 33.5 51.2 1 .4 2 .6 3.6 1.1-15.7-18.2-10.1-44.1.7-52.3.3 2.2.4 4.3.9 6.4 9.4 44.1 45.4 64.2 85 56.9 16-2.9 30.6-8.9 42.9-19.8 2-1.8 3.7-4.1 5.9-6.5-19.3 4.6-35.8.1-50.9-10.6.7-.3 1.3-.3 1.9-.3 21.3 1.8 40.6-3.4 57-17.4 19.5-16.6 26.6-42.9 17.4-66-8.3-20.1-23.6-32.3-43.8-38.9zM99.4 179.3c-5.3-9.2-13.2-15.6-22.1-21.3 13.7-.5 26.6.2 39.6 3.7-7-12.2-8.5-24.7-5-38.7 5.3 11.9 13.7 20.1 23.6 26.8 19.7 13.2 35.7 19.6 46.7 30.2 3.4 3.3 6.3 7.1 9.6 10.9-.8-2.1-1.4-4.1-2.2-6-5-10.6-13-18.6-22.6-25-1.8-1.2-2.8-2.5-3.4-4.5-3.3-12.5-3-25.1-.7-37.6 1-5.5 2.8-10.9 4.5-16.3.8-2.4 2.3-4.6 4-6.6.6 6.9 0 25.5 19.6 46 10.8 11.3 22.4 21.9 33.9 32.7 9 8.5 18.3 16.7 25.5 26.8 1.1 1.6 2.2 3.3 3.8 4.7-5-13-14.2-24.1-24.2-33.8-9.6-9.3-19.4-18.4-29.2-27.4-3.3-3-4.6-6.7-5.1-10.9-1.2-10.4 0-20.6 4.3-30.2.5-1 1.1-2 1.9-3.3.5 4.2.6 7.9 1.4 11.6 4.8 23.1 20.4 36.3 49.3 63.5 10 9.4 19.3 19.2 25.6 31.6 4.8 9.3 7.3 19 5.7 29.6-.1.6.5 1.7 1.1 2 6.2 2.6 10 6.9 9.7 14.3 7.7-2.6 12.5-8 16.4-14.5 4.2 20.2-9.1 50.3-27.2 58.7.4-4.5 5-23.4-16.5-27.7-6.8-1.3-12.8-1.3-22.9-2.1 4.7-9 10.4-20.6.5-22.4-24.9-4.6-52.8 1.9-57.8 4.6 8.2.4 16.3 1 23.5 3.3-2 6.5-4 12.7-5.8 18.9-1.9 6.5 2.1 14.6 9.3 9.6 1.2-.9 2.3-1.9 3.3-2.7-3.1 17.9-2.9 15.9-2.8 18.3.3 10.2 9.5 7.8 15.7 7.3-2.5 11.8-29.5 27.3-45.4 25.8 7-4.7 12.7-10.3 15.9-17.9-6.5.8-12.9 1.6-19.2 2.4l-.3-.9c4.7-3.4 8-7.8 10.2-13.1 8.7-21.1-3.6-38-25-39.9-9.1-.8-17.8.8-25.9 5.5 6.2-15.6 17.2-26.6 32.6-34.5-15.2-4.3-8.9-2.7-24.6-6.3 14.6-9.3 30.2-13.2 46.5-14.6-5.2-3.2-48.1-3.6-70.2 20.9 7.9 1.4 15.5 2.8 23.2 4.2-23.8 7-44 19.7-62.4 35.6 1.1-4.8 2.7-9.5 3.3-14.3.6-4.5.8-9.2.1-13.6-1.5-9.4-8.9-15.1-19.7-16.3-7.9-.9-15.6.1-23.3 1.3-.9.1-1.7.3-2.9 0 15.8-14.8 36-21.7 53.1-33.5 6-4.5 6.8-8.2 3-14.9zm128.4 26.8c3.3 16 12.6 25.5 23.8 24.3-4.6-11.3-12.1-19.5-23.8-24.3z"] }; +var faDashcube = { prefix: 'fab', iconName: 'dashcube', icon: [448, 512, [], "f210", "M326.6 104H110.4c-51.1 0-91.2 43.3-91.2 93.5V427c0 50.5 40.1 85 91.2 85h227.2c51.1 0 91.2-34.5 91.2-85V0L326.6 104zM153.9 416.5c-17.7 0-32.4-15.1-32.4-32.8V240.8c0-17.7 14.7-32.5 32.4-32.5h140.7c17.7 0 32 14.8 32 32.5v123.5l51.1 52.3H153.9z"] }; +var faDelicious = { prefix: 'fab', iconName: 'delicious', icon: [448, 512, [], "f1a5", "M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1.5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3 1 1.1 2.1 2.2 3.3 3.3 5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12zM416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192v176z"] }; +var faDeploydog = { prefix: 'fab', iconName: 'deploydog', icon: [512, 512, [], "f38e", "M382.2 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.6 0-33.2 16.4-33.2 32.6zM188.5 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.7 0-33.2 16.4-33.2 32.6zM448 96c17.5 0 32 14.4 32 32v256c0 17.5-14.4 32-32 32H64c-17.5 0-32-14.4-32-32V128c0-17.5 14.4-32 32-32h384m0-32H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h384c35.2 0 64-28.8 64-64V128c0-35.2-28.8-64-64-64z"] }; +var faDeskpro = { prefix: 'fab', iconName: 'deskpro', icon: [480, 512, [], "f38f", "M205.9 512l31.1-38.4c12.3-.2 25.6-1.4 36.5-6.6 38.9-18.6 38.4-61.9 38.3-63.8-.1-5-.8-4.4-28.9-37.4H362c-.2 50.1-7.3 68.5-10.2 75.7-9.4 23.7-43.9 62.8-95.2 69.4-8.7 1.1-32.8 1.2-50.7 1.1zm200.4-167.7c38.6 0 58.5-13.6 73.7-30.9l-175.5-.3-17.4 31.3 119.2-.1zm-43.6-223.9v168.3h-73.5l-32.7 55.5H250c-52.3 0-58.1-56.5-58.3-58.9-1.2-13.2-21.3-11.6-20.1 1.8 1.4 15.8 8.8 40 26.4 57.1h-91c-25.5 0-110.8-26.8-107-114V16.9C0 .9 9.7.3 15 .1h82c.2 0 .3.1.5.1 4.3-.4 50.1-2.1 50.1 43.7 0 13.3 20.2 13.4 20.2 0 0-18.2-5.5-32.8-15.8-43.7h84.2c108.7-.4 126.5 79.4 126.5 120.2zm-132.5 56l64 29.3c13.3-45.5-42.2-71.7-64-29.3z"] }; +var faDeviantart = { prefix: 'fab', iconName: 'deviantart', icon: [320, 512, [], "f1bd", "M320 93.2l-98.2 179.1 7.4 9.5H320v127.7H159.1l-13.5 9.2-43.7 84c-.3 0-8.6 8.6-9.2 9.2H0v-93.2l93.2-179.4-7.4-9.2H0V102.5h156l13.5-9.2 43.7-84c.3 0 8.6-8.6 9.2-9.2H320v93.1z"] }; +var faDigg = { prefix: 'fab', iconName: 'digg', icon: [512, 512, [], "f1a6", "M81.7 172.3H0v174.4h132.7V96h-51v76.3zm0 133.4H50.9v-92.3h30.8v92.3zm297.2-133.4v174.4h81.8v28.5h-81.8V416H512V172.3H378.9zm81.8 133.4h-30.8v-92.3h30.8v92.3zm-235.6 41h82.1v28.5h-82.1V416h133.3V172.3H225.1v174.4zm51.2-133.3h30.8v92.3h-30.8v-92.3zM153.3 96h51.3v51h-51.3V96zm0 76.3h51.3v174.4h-51.3V172.3z"] }; +var faDigitalOcean = { prefix: 'fab', iconName: 'digital-ocean', icon: [512, 512, [], "f391", "M256 504v-96.1c101.8 0 180.8-100.9 141.7-208-14.3-39.6-46.1-71.4-85.8-85.7-107.1-38.8-208.1 39.9-208.1 141.7H8C8 93.7 164.9-32.8 335 20.3c74.2 23.3 133.6 82.4 156.6 156.6C544.8 347.2 418.6 504 256 504zm.3-191.4h-95.6v95.6h95.6v-95.6zm-95.6 95.6H87v73.6h73.7v-73.6zM87 346.6H25.4v61.6H87v-61.6z"] }; +var faDiscord = { prefix: 'fab', iconName: 'discord', icon: [448, 512, [], "f392", "M297.216 243.2c0 15.616-11.52 28.416-26.112 28.416-14.336 0-26.112-12.8-26.112-28.416s11.52-28.416 26.112-28.416c14.592 0 26.112 12.8 26.112 28.416zm-119.552-28.416c-14.592 0-26.112 12.8-26.112 28.416s11.776 28.416 26.112 28.416c14.592 0 26.112-12.8 26.112-28.416.256-15.616-11.52-28.416-26.112-28.416zM448 52.736V512c-64.494-56.994-43.868-38.128-118.784-107.776l13.568 47.36H52.48C23.552 451.584 0 428.032 0 398.848V52.736C0 23.552 23.552 0 52.48 0h343.04C424.448 0 448 23.552 448 52.736zm-72.96 242.688c0-82.432-36.864-149.248-36.864-149.248-36.864-27.648-71.936-26.88-71.936-26.88l-3.584 4.096c43.52 13.312 63.744 32.512 63.744 32.512-60.811-33.329-132.244-33.335-191.232-7.424-9.472 4.352-15.104 7.424-15.104 7.424s21.248-20.224 67.328-33.536l-2.56-3.072s-35.072-.768-71.936 26.88c0 0-36.864 66.816-36.864 149.248 0 0 21.504 37.12 78.08 38.912 0 0 9.472-11.52 17.152-21.248-32.512-9.728-44.8-30.208-44.8-30.208 3.766 2.636 9.976 6.053 10.496 6.4 43.21 24.198 104.588 32.126 159.744 8.96 8.96-3.328 18.944-8.192 29.44-15.104 0 0-12.8 20.992-46.336 30.464 7.68 9.728 16.896 20.736 16.896 20.736 56.576-1.792 78.336-38.912 78.336-38.912z"] }; +var faDiscourse = { prefix: 'fab', iconName: 'discourse', icon: [448, 512, [], "f393", "M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z"] }; +var faDochub = { prefix: 'fab', iconName: 'dochub', icon: [416, 512, [], "f394", "M397.9 160H256V19.6L397.9 160zM304 192v130c0 66.8-36.5 100.1-113.3 100.1H96V84.8h94.7c12 0 23.1.8 33.1 2.5v-84C212.9 1.1 201.4 0 189.2 0H0v512h189.2C329.7 512 400 447.4 400 318.1V192h-96z"] }; +var faDocker = { prefix: 'fab', iconName: 'docker', icon: [640, 512, [], "f395", "M349.9 236.3h-66.1v-59.4h66.1v59.4zm0-204.3h-66.1v60.7h66.1V32zm78.2 144.8H362v59.4h66.1v-59.4zm-156.3-72.1h-66.1v60.1h66.1v-60.1zm78.1 0h-66.1v60.1h66.1v-60.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4.4 67.6.1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1l-13.3-8.9zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm-78.1-72.1h-66.1v60.1h66.1v-60.1z"] }; +var faDraft2digital = { prefix: 'fab', iconName: 'draft2digital', icon: [480, 512, [], "f396", "M369.9 425.4V371l47.1 27.2-47.1 27.2zM82.4 380.6c25.5-27.3 97.7-104.7 150.9-170 35.1-43.1 40.3-82.4 28.4-112.7-7.4-18.8-17.5-30.2-24.3-35.7 45.3 2.1 68 23.4 82.2 38.3 0 0 42.4 48.2 5.8 113.3-37 65.9-110.9 147.5-128.5 166.7H82.4zm51.8-219.2c0 12.4-10 22.4-22.4 22.4-12.4 0-22.4-10-22.4-22.4 0-12.4 10-22.4 22.4-22.4 12.4 0 22.4 10.1 22.4 22.4M336 315.9v64.7h-91.3c30.8-35 81.8-95.9 111.8-149.3 35.2-62.6 16.1-123.4-12.8-153.3-4.4-4.6-62.2-62.9-166-41.2-59.1 12.4-89.4 43.4-104.3 67.3-13.1 20.9-17 39.8-18.2 47.7-5.5 33 19.4 67.1 56.7 67.1 31.7 0 57.3-25.7 57.3-57.4 0-27.1-19.7-52.1-48-56.8 1.8-7.3 17.7-21.1 26.3-24.7 41.1-17.3 78 5.2 83.3 33.5 8.3 44.3-37.1 90.4-69.7 127.6C84.5 328.1 18.3 396.8 0 415.9l336-.1V480l144-81.9-144-82.2z"] }; +var faDribbble = { prefix: 'fab', iconName: 'dribbble', icon: [512, 512, [], "f17d", "M256 8C119.252 8 8 119.252 8 256s111.252 248 248 248 248-111.252 248-248S392.748 8 256 8zm163.97 114.366c29.503 36.046 47.369 81.957 47.835 131.955-6.984-1.477-77.018-15.682-147.502-6.818-5.752-14.041-11.181-26.393-18.617-41.614 78.321-31.977 113.818-77.482 118.284-83.523zM396.421 97.87c-3.81 5.427-35.697 48.286-111.021 76.519-34.712-63.776-73.185-116.168-79.04-124.008 67.176-16.193 137.966 1.27 190.061 47.489zm-230.48-33.25c5.585 7.659 43.438 60.116 78.537 122.509-99.087 26.313-186.36 25.934-195.834 25.809C62.38 147.205 106.678 92.573 165.941 64.62zM44.17 256.323c0-2.166.043-4.322.108-6.473 9.268.19 111.92 1.513 217.706-30.146 6.064 11.868 11.857 23.915 17.174 35.949-76.599 21.575-146.194 83.527-180.531 142.306C64.794 360.405 44.17 310.73 44.17 256.323zm81.807 167.113c22.127-45.233 82.178-103.622 167.579-132.756 29.74 77.283 42.039 142.053 45.189 160.638-68.112 29.013-150.015 21.053-212.768-27.882zm248.38 8.489c-2.171-12.886-13.446-74.897-41.152-151.033 66.38-10.626 124.7 6.768 131.947 9.055-9.442 58.941-43.273 109.844-90.795 141.978z"] }; +var faDribbbleSquare = { prefix: 'fab', iconName: 'dribbble-square', icon: [448, 512, [], "f397", "M90.2 228.2c8.9-42.4 37.4-77.7 75.7-95.7 3.6 4.9 28 38.8 50.7 79-64 17-120.3 16.8-126.4 16.7zM314.6 154c-33.6-29.8-79.3-41.1-122.6-30.6 3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4zM140.1 364c40.5 31.6 93.3 36.7 137.3 18-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6zm98.8-108.2c-3.4-7.8-7.2-15.5-11.1-23.2C159.6 253 93.4 252.2 87.4 252c0 1.4-.1 2.8-.1 4.2 0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8zm34.9 16.3c17.9 49.1 25.1 89.1 26.5 97.4 30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8zm-20.3-48.4c4.8 9.8 8.3 17.8 12 26.8 45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 176c0-88.2-71.8-160-160-160S64 167.8 64 256s71.8 160 160 160 160-71.8 160-160z"] }; +var faDropbox = { prefix: 'fab', iconName: 'dropbox', icon: [528, 512, [], "f16b", "M264.4 116.3l-132 84.3 132 84.3-132 84.3L0 284.1l132.3-84.3L0 116.3 132.3 32l132.1 84.3zM131.6 395.7l132-84.3 132 84.3-132 84.3-132-84.3zm132.8-111.6l132-84.3-132-83.6L395.7 32 528 116.3l-132.3 84.3L528 284.8l-132.3 84.3-131.3-85z"] }; +var faDrupal = { prefix: 'fab', iconName: 'drupal', icon: [448, 512, [], "f1a9", "M319.5 114.7c-22.2-14-43.5-19.5-64.7-33.5-13-8.8-31.3-30-46.5-48.3-2.7 29.3-11.5 41.2-22 49.5-21.3 17-34.8 22.2-53.5 32.3C117 123 32 181.5 32 290.5 32 399.7 123.8 480 225.8 480 327.5 480 416 406 416 294c0-112.3-83-171-96.5-179.3zm2.5 325.6c-20.1 20.1-90.1 28.7-116.7 4.2-4.8-4.8.3-12 6.5-12 0 0 17 13.3 51.5 13.3 27 0 46-7.7 54.5-14 6.1-4.6 8.4 4.3 4.2 8.5zm-54.5-52.6c8.7-3.6 29-3.8 36.8 1.3 4.1 2.8 16.1 18.8 6.2 23.7-8.4 4.2-1.2-15.7-26.5-15.7-14.7 0-19.5 5.2-26.7 11-7 6-9.8 8-12.2 4.7-6-8.2 15.9-22.3 22.4-25zM360 405c-15.2-1-45.5-48.8-65-49.5-30.9-.9-104.1 80.7-161.3 42-38.8-26.6-14.6-104.8 51.8-105.2 49.5-.5 83.8 49 108.5 48.5 21.3-.3 61.8-41.8 81.8-41.8 48.7 0 23.3 109.3-15.8 106z"] }; +var faDyalog = { prefix: 'fab', iconName: 'dyalog', icon: [416, 512, [], "f399", "M0 32v119.2h64V96h107.2C284.6 96 352 176.2 352 255.9 352 332 293.4 416 171.2 416H0v64h171.2C331.9 480 416 367.3 416 255.9c0-58.7-22.1-113.4-62.3-154.3C308.9 56 245.7 32 171.2 32H0z"] }; +var faEarlybirds = { prefix: 'fab', iconName: 'earlybirds', icon: [480, 512, [], "f39a", "M313.2 47.5c1.2-13 21.3-14 36.6-8.7.9.3 26.2 9.7 19 15.2-27.9-7.4-56.4 18.2-55.6-6.5zm-201 6.9c30.7-8.1 62 20 61.1-7.1-1.3-14.2-23.4-15.3-40.2-9.6-1 .3-28.7 10.5-20.9 16.7zM319.4 160c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-159.7 0c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm318.5 163.2c-9.9 24-40.7 11-63.9-1.2-13.5 69.1-58.1 111.4-126.3 124.2.3.9-2-.1 24 1 33.6 1.4 63.8-3.1 97.4-8-19.8-13.8-11.4-37.1-9.8-38.1 1.4-.9 14.7 1.7 21.6 11.5 8.6-12.5 28.4-14.8 30.2-13.6 1.6 1.1 6.6 20.9-6.9 34.6 4.7-.9 8.2-1.6 9.8-2.1 2.6-.8 17.7 11.3 3.1 13.3-14.3 2.3-22.6 5.1-47.1 10.8-45.9 10.7-85.9 11.8-117.7 12.8l1 11.6c3.8 18.1-23.4 24.3-27.6 6.2.8 17.9-27.1 21.8-28.4-1l-.5 5.3c-.7 18.4-28.4 17.9-28.3-.6-7.5 13.5-28.1 6.8-26.4-8.5l1.2-12.4c-36.7.9-59.7 3.1-61.8 3.1-20.9 0-20.9-31.6 0-31.6 2.4 0 27.7 1.3 63.2 2.8-61.1-15.5-103.7-55-114.9-118.2-25 12.8-57.5 26.8-68.2.8-10.5-25.4 21.5-42.6 66.8-73.4.7-6.6 1.6-13.3 2.7-19.8-14.4-19.6-11.6-36.3-16.1-60.4-16.8 2.4-23.2-9.1-23.6-23.1.3-7.3 2.1-14.9 2.4-15.4 1.1-1.8 10.1-2 12.7-2.6 6-31.7 50.6-33.2 90.9-34.5 19.7-21.8 45.2-41.5 80.9-48.3C203.3 29 215.2 8.5 216.2 8c1.7-.8 21.2 4.3 26.3 23.2 5.2-8.8 18.3-11.4 19.6-10.7 1.1.6 6.4 15-4.9 25.9 40.3 3.5 72.2 24.7 96 50.7 36.1 1.5 71.8 5.9 77.1 34 2.7.6 11.6.8 12.7 2.6.3.5 2.1 8.1 2.4 15.4-.5 13.9-6.8 25.4-23.6 23.1-3.2 17.3-2.7 32.9-8.7 47.7 2.4 11.7 4 23.8 4.8 36.4 37 25.4 70.3 42.5 60.3 66.9zM207.4 159.9c.9-44-37.9-42.2-78.6-40.3-21.7 1-38.9 1.9-45.5 13.9-11.4 20.9 5.9 92.9 23.2 101.2 9.8 4.7 73.4 7.9 86.3-7.1 8.2-9.4 15-49.4 14.6-67.7zm52 58.3c-4.3-12.4-6-30.1-15.3-32.7-2-.5-9-.5-11 0-10 2.8-10.8 22.1-17 37.2 15.4 0 19.3 9.7 23.7 9.7 4.3 0 6.3-11.3 19.6-14.2zm135.7-84.7c-6.6-12.1-24.8-12.9-46.5-13.9-40.2-1.9-78.2-3.8-77.3 40.3-.5 18.3 5 58.3 13.2 67.8 13 14.9 76.6 11.8 86.3 7.1 15.8-7.6 36.5-78.9 24.3-101.3z"] }; +var faEbay = { prefix: 'fab', iconName: 'ebay', icon: [640, 512, [], "f4f4", "M405.2 263.8c-29.1.9-47.2 6.2-47.2 25.3 0 12.4 9.9 25.8 35 25.8 33.7 0 51.6-18.4 51.6-48.4v-3.3c-11.8 0-26.3.1-39.4.6m71.5 39.7c0 9.3.3 18.6 1 26.8h-29.8c-.8-6.9-1.1-13.6-1.1-20.2-16.1 19.8-35.3 25.5-61.9 25.5-39.5 0-60.6-20.9-60.6-45 0-35 28.8-47.3 78.6-48.4 13.7-.3 29-.4 41.7-.4v-3.4c0-23.4-15-33-41-33-19.3 0-33.6 8-35 21.8h-33.7c3.6-34.4 39.7-43.1 71.5-43.1 38.1 0 70.3 13.5 70.3 53.8v65.6zm-349-56.8c-2.3-54.7-87.5-56.6-94.4 0h94.4zm-95 21.4c3.5 58.3 79.2 57.4 91.2 21.6H157c-6.4 34.4-43 46.1-74.4 46.1-57.2 0-82.5-31.5-82.5-74 0-46.8 26.2-77.6 83-77.6 45.3 0 78.4 23.7 78.4 75.4v8.5H32.7zm211 45.7c29.8 0 50.2-21.5 50.2-53.8 0-32.4-20.4-53.8-50.2-53.8-29.6 0-50.2 21.4-50.2 53.8 0 32.3 20.6 53.8 50.2 53.8m-82.2-186h32.1v80.6c15.7-18.7 37.4-24.2 58.7-24.2 35.7 0 75.4 24.1 75.4 76.2 0 43.6-31.5 75.4-76 75.4-23.3 0-45.1-8.3-58.7-24.9 0 6.6-.4 13.2-1.1 19.5h-31.5c.5-10.2 1.1-22.8 1.1-33.1V127.8zM640 189.5l-99.2 194.8h-35.9l28.5-54.1-74.6-140.7h37.5l54.9 109.9L606 189.5h34z"] }; +var faEdge = { prefix: 'fab', iconName: 'edge', icon: [512, 512, [], "f282", "M25.714 228.163c.111-.162.23-.323.342-.485-.021.162-.045.323-.065.485h-.277zm460.572 15.508c0-44.032-7.754-84.465-28.801-122.405C416.498 47.879 343.912 8.001 258.893 8.001 118.962 7.724 40.617 113.214 26.056 227.679c42.429-61.312 117.073-121.376 220.375-124.966 0 0 109.666 0 99.419 104.957H169.997c6.369-37.386 18.554-58.986 34.339-78.926-75.048 34.893-121.85 96.096-120.742 188.315.83 71.448 50.124 144.836 120.743 171.976 83.357 31.847 192.776 7.2 240.132-21.324V363.307c-80.864 56.494-270.871 60.925-272.255-67.572h314.073v-52.064z"] }; +var faElementor = { prefix: 'fab', iconName: 'elementor', icon: [448, 512, [], "f430", "M425.6 32H22.4C10 32 0 42 0 54.4v403.2C0 470 10 480 22.4 480h403.2c12.4 0 22.4-10 22.4-22.4V54.4C448 42 438 32 425.6 32M164.3 355.5h-39.8v-199h39.8v199zm159.3 0H204.1v-39.8h119.5v39.8zm0-79.6H204.1v-39.8h119.5v39.8zm0-79.7H204.1v-39.8h119.5v39.8z"] }; +var faEmber = { prefix: 'fab', iconName: 'ember', icon: [640, 512, [], "f423", "M639.9 254.6c-1.1-10.7-10.7-6.8-10.7-6.8s-15.6 12.1-29.3 10.7c-13.7-1.3-9.4-32-9.4-32s3-28.1-5.1-30.4c-8.1-2.4-18 7.3-18 7.3s-12.4 13.7-18.3 31.2l-1.6.5s1.9-30.6-.3-37.6c-1.6-3.5-16.4-3.2-18.8 3s-14.2 49.2-15 67.2c0 0-23.1 19.6-43.3 22.8s-25-9.4-25-9.4 54.8-15.3 52.9-59.1c-1.9-43.8-44.2-27.6-49-24-4.6 3.5-29.4 18.4-36.6 59.7-.2 1.4-.7 7.5-.7 7.5s-21.2 14.2-33 18c0 0 33-55.6-7.3-80.9-18.3-11-32.8 12.1-32.8 12.1s54.5-60.7 42.5-112c-5.8-24.4-18-27.1-29.2-23.1-17 6.7-23.5 16.7-23.5 16.7s-22 32-27.1 79.5-12.6 105.1-12.6 105.1-10.5 10.2-20.2 10.7-5.4-28.7-5.4-28.7 7.5-44.6 7-52.1-1.1-11.6-9.9-14.2c-8.9-2.7-18.5 8.6-18.5 8.6s-25.5 38.7-27.7 44.6l-1.3 2.4-1.3-1.6s18-52.7.8-53.5c-17.2-.8-28.5 18.8-28.5 18.8s-19.6 32.8-20.4 36.5l-1.3-1.6s8.1-38.2 6.4-47.6c-1.6-9.4-10.5-7.5-10.5-7.5s-11.3-1.3-14.2 5.9-13.7 55.3-15 70.7c0 0-28.2 20.2-46.8 20.4-18.5.3-16.7-11.8-16.7-11.8s68-23.3 49.4-69.2c-8.3-11.8-18-15.5-31.7-15.3-13.7.3-30.3 8.6-41.3 33.3-5.3 11.8-6.8 23-7.8 31.5 0 0-12.3 2.4-18.8-2.9s-10 0-10 0-11.2 14-.1 18.3 28.1 6.1 28.1 6.1c1.6 7.5 6.2 19.5 19.6 29.7 20.2 15.3 58.8-1.3 58.8-1.3l15.9-8.8s.5 14.6 12.1 16.7c11.6 2.1 16.4 1 36.5-47.9 11.8-25 12.6-23.6 12.6-23.6l1.3-.3s-9.1 46.8-5.6 59.7C187.7 319.4 203 318 203 318s8.3 2.4 15-21.2c6.7-23.6 19.6-49.9 19.6-49.9h1.6s-5.6 48.1 3 63.7c8.6 15.6 30.9 5.3 30.9 5.3s15.6-7.8 18-10.2c0 0 18.5 15.8 44.6 12.9 58.3-11.5 79.1-25.9 79.1-25.9s10 24.4 41.1 26.7c35.5 2.7 54.8-18.6 54.8-18.6s-.3 13.5 12.1 18.6c12.4 5.1 20.7-22.8 20.7-22.8l20.7-57.2h1.9s1.1 37.3 21.5 43.2 47-13.7 47-13.7 6.4-3.5 5.3-14.3zm-578 5.3c.8-32 21.8-45.9 29-39 7.3 7 4.6 22-9.1 31.4-13.7 9.5-19.9 7.6-19.9 7.6zm272.8-123.8s19.1-49.7 23.6-25.5-40 96.2-40 96.2c.5-16.2 16.4-70.7 16.4-70.7zm22.8 138.4c-12.6 33-43.3 19.6-43.3 19.6s-3.5-11.8 6.4-44.9 33.3-20.2 33.3-20.2 16.2 12.4 3.6 45.5zm84.6-14.6s-3-10.5 8.1-30.6c11-20.2 19.6-9.1 19.6-9.1s9.4 10.2-1.3 25.5-26.4 14.2-26.4 14.2z"] }; +var faEmpire = { prefix: 'fab', iconName: 'empire', icon: [496, 512, [], "f1d1", "M287.6 54.2c-10.8-2.2-22.1-3.3-33.5-3.6V32.4c78.1 2.2 146.1 44 184.6 106.6l-15.8 9.1c-6.1-9.7-12.7-18.8-20.2-27.1l-18 15.5c-26-29.6-61.4-50.7-101.9-58.4l4.8-23.9zM53.4 322.4l23-7.7c-6.4-18.3-10-38.2-10-58.7s3.3-40.4 9.7-58.7l-22.7-7.7c3.6-10.8 8.3-21.3 13.6-31l-15.8-9.1C34 181 24.1 217.5 24.1 256s10 75 27.1 106.6l15.8-9.1c-5.3-10-9.7-20.3-13.6-31.1zM213.1 434c-40.4-8-75.8-29.1-101.9-58.7l-18 15.8c-7.5-8.6-14.4-17.7-20.2-27.4l-16 9.4c38.5 62.3 106.8 104.3 184.9 106.6v-18.3c-11.3-.3-22.7-1.7-33.5-3.6l4.7-23.8zM93.3 120.9l18 15.5c26-29.6 61.4-50.7 101.9-58.4l-4.7-23.8c10.8-2.2 22.1-3.3 33.5-3.6V32.4C163.9 34.6 95.9 76.4 57.4 139l15.8 9.1c6-9.7 12.6-18.9 20.1-27.2zm309.4 270.2l-18-15.8c-26 29.6-61.4 50.7-101.9 58.7l4.7 23.8c-10.8 1.9-22.1 3.3-33.5 3.6v18.3c78.1-2.2 146.4-44.3 184.9-106.6l-16.1-9.4c-5.7 9.7-12.6 18.8-20.1 27.4zM496 256c0 137-111 248-248 248S0 393 0 256 111 8 248 8s248 111 248 248zm-12.2 0c0-130.1-105.7-235.8-235.8-235.8S12.2 125.9 12.2 256 117.9 491.8 248 491.8 483.8 386.1 483.8 256zm-39-106.6l-15.8 9.1c5.3 9.7 10 20.2 13.6 31l-22.7 7.7c6.4 18.3 9.7 38.2 9.7 58.7s-3.6 40.4-10 58.7l23 7.7c-3.9 10.8-8.3 21-13.6 31l15.8 9.1C462 331 471.9 294.5 471.9 256s-9.9-75-27.1-106.6zm-183 177.7c16.3-3.3 30.4-11.6 40.7-23.5l51.2 44.8c11.9-13.6 21.3-29.3 27.1-46.8l-64.2-22.1c2.5-7.5 3.9-15.2 3.9-23.5s-1.4-16.1-3.9-23.5l64.5-22.1c-6.1-17.4-15.5-33.2-27.4-46.8l-51.2 44.8c-10.2-11.9-24.4-20.5-40.7-23.8l13.3-66.4c-8.6-1.9-17.7-2.8-27.1-2.8-9.4 0-18.5.8-27.1 2.8l13.3 66.4c-16.3 3.3-30.4 11.9-40.7 23.8l-51.2-44.8c-11.9 13.6-21.3 29.3-27.4 46.8l64.5 22.1c-2.5 7.5-3.9 15.2-3.9 23.5s1.4 16.1 3.9 23.5l-64.2 22.1c5.8 17.4 15.2 33.2 27.1 46.8l51.2-44.8c10.2 11.9 24.4 20.2 40.7 23.5l-13.3 66.7c8.6 1.7 17.7 2.8 27.1 2.8 9.4 0 18.5-1.1 27.1-2.8l-13.3-66.7z"] }; +var faEnvira = { prefix: 'fab', iconName: 'envira', icon: [448, 512, [], "f299", "M0 32c477.6 0 366.6 317.3 367.1 366.3L448 480h-26l-70.4-71.2c-39 4.2-124.4 34.5-214.4-37C47 300.3 52 214.7 0 32zm79.7 46c-49.7-23.5-5.2 9.2-5.2 9.2 45.2 31.2 66 73.7 90.2 119.9 31.5 60.2 79 139.7 144.2 167.7 65 28 34.2 12.5 6-8.5-28.2-21.2-68.2-87-91-130.2-31.7-60-61-118.6-144.2-158.1z"] }; +var faErlang = { prefix: 'fab', iconName: 'erlang', icon: [640, 512, [], "f39d", "M21.7 246.4c-.1 86.8 29 159.5 78.7 212.1H0v-405h87.2c-41.5 50.2-65.6 116.2-65.5 192.9zM640 53.6h-83.6c31.4 42.7 48.7 97.5 46.2 162.7.5 6 .5 11.7 0 24.1H230.2c-.2 109.7 38.9 194.9 138.6 195.3 68.5-.3 118-51 151.9-106.1l96.4 48.2c-17.4 30.9-36.5 57.8-57.9 80.8H640v-405zm-80.8 405s0-.1 0 0h-.2.2zm-3.1-405h.3l-.1-.1-.2.1zm-230.7 9.6c-45.9.1-85.1 33.5-89.2 83.2h169.9c-1.1-49.7-34.5-83.1-80.7-83.2z"] }; +var faEthereum = { prefix: 'fab', iconName: 'ethereum', icon: [320, 512, [], "f42e", "M311.9 260.8L160 353.6 8 260.8 160 0l151.9 260.8zM160 383.4L8 290.6 160 512l152-221.4-152 92.8z"] }; +var faEtsy = { prefix: 'fab', iconName: 'etsy', icon: [384, 512, [], "f2d7", "M384 348c-1.75 10.75-13.75 110-15.5 132-117.879-4.299-219.895-4.743-368.5 0v-25.5c45.457-8.948 60.627-8.019 61-35.25 1.793-72.322 3.524-244.143 0-322-1.029-28.46-12.13-26.765-61-36v-25.5c73.886 2.358 255.933 8.551 362.999-3.75-3.5 38.25-7.75 126.5-7.75 126.5H332C320.947 115.665 313.241 68 277.25 68h-137c-10.25 0-10.75 3.5-10.75 9.75V241.5c58 .5 88.5-2.5 88.5-2.5 29.77-.951 27.56-8.502 40.75-65.251h25.75c-4.407 101.351-3.91 61.829-1.75 160.25H257c-9.155-40.086-9.065-61.045-39.501-61.5 0 0-21.5-2-88-2v139c0 26 14.25 38.25 44.25 38.25H263c63.636 0 66.564-24.996 98.751-99.75H384z"] }; +var faExpeditedssl = { prefix: 'fab', iconName: 'expeditedssl', icon: [496, 512, [], "f23e", "M248 43.4C130.6 43.4 35.4 138.6 35.4 256S130.6 468.6 248 468.6 460.6 373.4 460.6 256 365.4 43.4 248 43.4zm-97.4 132.9c0-53.7 43.7-97.4 97.4-97.4s97.4 43.7 97.4 97.4v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6c0-82.1-124-82.1-124 0v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6zM389.7 380c0 9.7-8 17.7-17.7 17.7H124c-9.7 0-17.7-8-17.7-17.7V238.3c0-9.7 8-17.7 17.7-17.7h248c9.7 0 17.7 8 17.7 17.7V380zm-248-137.3v132.9c0 2.5-1.9 4.4-4.4 4.4h-8.9c-2.5 0-4.4-1.9-4.4-4.4V242.7c0-2.5 1.9-4.4 4.4-4.4h8.9c2.5 0 4.4 1.9 4.4 4.4zm141.7 48.7c0 13-7.2 24.4-17.7 30.4v31.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-31.6c-10.5-6.1-17.7-17.4-17.7-30.4 0-19.7 15.8-35.4 35.4-35.4s35.5 15.8 35.5 35.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 478.3C121 486.3 17.7 383 17.7 256S121 25.7 248 25.7 478.3 129 478.3 256 375 486.3 248 486.3z"] }; +var faFacebook = { prefix: 'fab', iconName: 'facebook', icon: [448, 512, [], "f09a", "M448 56.7v398.5c0 13.7-11.1 24.7-24.7 24.7H309.1V306.5h58.2l8.7-67.6h-67v-43.2c0-19.6 5.4-32.9 33.5-32.9h35.8v-60.5c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9h-58.4v67.6h58.4V480H24.7C11.1 480 0 468.9 0 455.3V56.7C0 43.1 11.1 32 24.7 32h398.5c13.7 0 24.8 11.1 24.8 24.7z"] }; +var faFacebookF = { prefix: 'fab', iconName: 'facebook-f', icon: [264, 512, [], "f39e", "M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"] }; +var faFacebookMessenger = { prefix: 'fab', iconName: 'facebook-messenger', icon: [448, 512, [], "f39f", "M224 32C15.9 32-77.5 278 84.6 400.6V480l75.7-42c142.2 39.8 285.4-59.9 285.4-198.7C445.8 124.8 346.5 32 224 32zm23.4 278.1L190 250.5 79.6 311.6l121.1-128.5 57.4 59.6 110.4-61.1-121.1 128.5z"] }; +var faFacebookSquare = { prefix: 'fab', iconName: 'facebook-square', icon: [448, 512, [], "f082", "M448 80v352c0 26.5-21.5 48-48 48h-85.3V302.8h60.6l8.7-67.6h-69.3V192c0-19.6 5.4-32.9 33.5-32.9H384V98.7c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9H184v67.6h60.9V480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z"] }; +var faFirefox = { prefix: 'fab', iconName: 'firefox', icon: [480, 512, [], "f269", "M478.1 235.3c-.7-4.5-1.4-7.1-1.4-7.1s-1.8 2-4.7 5.9c-.9-10.7-2.8-21.2-5.8-31.6-3.7-12.9-8.5-25.4-14.5-37.4-3.8-8-8.2-15.6-13.3-22.8-1.8-2.7-3.7-5.4-5.6-7.9-8.8-14.4-19-23.3-30.7-40-7.6-12.8-12.9-26.9-15.4-41.6-3.2 8.9-5.7 18-7.4 27.3-12.1-12.2-22.5-20.8-28.9-26.7C319.4 24.2 323 9.1 323 9.1S264.7 74.2 289.9 142c8.7 23 23.8 43.1 43.4 57.9 24.4 20.2 50.8 36 64.7 76.6-11.2-21.3-28.1-39.2-48.8-51.5 6.2 14.7 9.4 30.6 9.3 46.5 0 61-49.6 110.5-110.6 110.4-8.3 0-16.5-.9-24.5-2.8-9.5-1.8-18.7-4.9-27.4-9.3-12.9-7.8-24-18.1-32.8-30.3l-.2-.3 2 .7c4.6 1.6 9.2 2.8 14 3.7 18.7 4 38.3 1.7 55.6-6.6 17.5-9.7 28-16.9 36.6-14h.2c8.4 2.7 15-5.5 9-14-10.4-13.4-27.4-20-44.2-17-17.5 2.5-33.5 15-56.4 2.9-1.5-.8-2.9-1.6-4.3-2.5-1.6-.9 4.9 1.3 3.4.3-5-2.5-9.8-5.4-14.4-8.6-.3-.3 3.5 1.1 3.1.8-5.9-4-11-9.2-15-15.2-4.1-7.4-4.5-16.4-1-24.1 2.1-3.8 5.4-6.9 9.3-8.7 3 1.5 4.8 2.6 4.8 2.6s-1.3-2.5-2.1-3.8c.3-.1.5 0 .8-.2 2.6 1.1 8.3 4 11.4 5.8 2.1 1.1 3.8 2.7 5.2 4.7 0 0 1-.5.3-2.7-1.1-2.7-2.9-5-5.4-6.6h.2c2.3 1.2 4.5 2.6 6.6 4.1 1.9-4.4 2.8-9.2 2.6-14 .2-2.6-.2-5.3-1.1-7.8-.8-1.6.5-2.2 1.9-.5-.2-1.3-.7-2.5-1.2-3.7v-.1s.8-1.1 1.2-1.5c1-1 2.1-1.9 3.4-2.7 7.2-4.5 14.8-8.4 22.7-11.6 6.4-2.8 11.7-4.9 12.8-5.6 1.6-1 3.1-2.2 4.5-3.5 5.3-4.5 9-10.8 10.2-17.7.1-.9.2-1.8.3-2.8v-1.5c-.9-3.5-6.9-6.1-38.4-9.1-11.1-1.8-20-10.1-22.5-21.1v.1c-.4 1.1-.9 2.3-1.3 3.5.4-1.2.8-2.3 1.3-3.5v-.2c6-15.7 16.8-29.1 30.8-38.3.8-.7-3.2.2-2.4-.5 2.7-1.3 5.4-2.5 8.2-3.5 1.4-.6-6-3.4-12.6-2.7-4 .2-8 1.2-11.7 2.8 1.6-1.3 6.2-3.1 5.1-3.1-8.4 1.6-16.5 4.7-23.9 9 0-.8.1-1.5.5-2.2-5.9 2.5-11 6.5-15 11.5.1-.9.2-1.8.2-2.7-2.7 2-5.2 4.3-7.3 6.9l-.1.1c-17.4-6.7-36.3-8.3-54.6-4.7l-.2-.1h.2c-3.8-3.1-7.1-6.7-9.7-10.9l-.2.1-.4-.2c-1.2-1.8-2.4-3.8-3.7-6-.9-1.6-1.8-3.4-2.7-5.2 0-.1-.1-.2-.2-.2-.4 0-.6 1.7-.9 1.3v-.1c-3.2-8.3-4.7-17.2-4.4-26.2l-.2.1c-5.1 3.5-9 8.6-11.1 14.5-.9 2.1-1.6 3.3-2.2 4.5v-.5c.1-1.1.6-3.3.5-3.1-.1.2-.2.3-.3.4-1.5 1.7-2.9 3.7-3.9 5.8-.9 1.9-1.7 3.9-2.3 5.9-.1.3 0-.3 0-1s.1-2 0-1.7l-.3.7c-6.7 14.9-10.9 30.8-12.4 47.1-.4 2.8-.6 5.6-.5 8.3v.2c-4.8 5.2-9 11-12.7 17.1-12.1 20.4-21.1 42.5-26.8 65.6 4-8.8 8.8-17.2 14.3-25.1C5.5 228.5 0 257.4 0 286.6c1.8-8.6 4.2-17 7-25.3-1.7 34.5 4.9 68.9 19.4 100.3 19.4 43.5 51.6 80 92.3 104.7 16.6 11.2 34.7 19.9 53.8 25.8 2.5.9 5.1 1.8 7.7 2.7-.8-.3-1.6-.7-2.4-1 22.6 6.8 46.2 10.3 69.8 10.3 83.7 0 111.3-31.9 113.8-35 4.1-3.7 7.5-8.2 9.9-13.3 1.6-.7 3.2-1.4 4.9-2.1l1-.5 1.9-.9c12.6-5.9 24.5-13.4 35.3-22.1 16.3-11.7 27.9-28.7 32.9-48.1 3-7.1 3.1-15 .4-22.2.9-1.4 1.7-2.8 2.7-4.3 18-28.9 28.2-61.9 29.6-95.9v-2.8c0-7.3-.6-14.5-1.9-21.6z"] }; +var faFirstOrder = { prefix: 'fab', iconName: 'first-order', icon: [448, 512, [], "f2b0", "M12.9 229.2c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4h-.2zM224 96.6c-7.1 0-14.6.6-21.4 1.7l3.7 67.4-22-64c-14.3 3.7-27.7 9.4-40 16.6l29.4 61.4-45.1-50.9c-11.4 8.9-21.7 19.1-30.6 30.9l50.6 45.4-61.1-29.7c-7.1 12.3-12.9 25.7-16.6 40l64.3 22.6-68-4c-.9 7.1-1.4 14.6-1.4 22s.6 14.6 1.4 21.7l67.7-4-64 22.6c3.7 14.3 9.4 27.7 16.6 40.3l61.1-29.7L97.7 352c8.9 11.7 19.1 22.3 30.9 30.9l44.9-50.9-29.5 61.4c12.3 7.4 25.7 13.1 40 16.9l22.3-64.6-4 68c7.1 1.1 14.6 1.7 21.7 1.7 7.4 0 14.6-.6 21.7-1.7l-4-68.6 22.6 65.1c14.3-4 27.7-9.4 40-16.9L274.9 332l44.9 50.9c11.7-8.9 22-19.1 30.6-30.9l-50.6-45.1 61.1 29.4c7.1-12.3 12.9-25.7 16.6-40.3l-64-22.3 67.4 4c1.1-7.1 1.4-14.3 1.4-21.7s-.3-14.9-1.4-22l-67.7 4 64-22.3c-3.7-14.3-9.1-28-16.6-40.3l-60.9 29.7 50.6-45.4c-8.9-11.7-19.1-22-30.6-30.9l-45.1 50.9 29.4-61.1c-12.3-7.4-25.7-13.1-40-16.9L241.7 166l4-67.7c-7.1-1.2-14.3-1.7-21.7-1.7zM443.4 128v256L224 512 4.6 384V128L224 0l219.4 128zm-17.1 10.3L224 20.9 21.7 138.3v235.1L224 491.1l202.3-117.7V138.3zM224 37.1l187.7 109.4v218.9L224 474.9 36.3 365.4V146.6L224 37.1zm0 50.9c-92.3 0-166.9 75.1-166.9 168 0 92.6 74.6 167.7 166.9 167.7 92 0 166.9-75.1 166.9-167.7 0-92.9-74.9-168-166.9-168z"] }; +var faFirstOrderAlt = { prefix: 'fab', iconName: 'first-order-alt', icon: [496, 512, [], "f50a", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 488.21C115.34 496.21 7.79 388.66 7.79 256S115.34 15.79 248 15.79 488.21 123.34 488.21 256 380.66 496.21 248 496.21zm0-459.92C126.66 36.29 28.29 134.66 28.29 256S126.66 475.71 248 475.71 467.71 377.34 467.71 256 369.34 36.29 248 36.29zm0 431.22c-116.81 0-211.51-94.69-211.51-211.51S131.19 44.49 248 44.49 459.51 139.19 459.51 256 364.81 467.51 248 467.51zm186.23-162.98a191.613 191.613 0 0 1-20.13 48.69l-74.13-35.88 61.48 54.82a193.515 193.515 0 0 1-37.2 37.29l-54.8-61.57 35.88 74.27a190.944 190.944 0 0 1-48.63 20.23l-27.29-78.47 4.79 82.93c-8.61 1.18-17.4 1.8-26.33 1.8s-17.72-.62-26.33-1.8l4.76-82.46-27.15 78.03a191.365 191.365 0 0 1-48.65-20.2l35.93-74.34-54.87 61.64a193.85 193.85 0 0 1-37.22-37.28l61.59-54.9-74.26 35.93a191.638 191.638 0 0 1-20.14-48.69l77.84-27.11-82.23 4.76c-1.16-8.57-1.78-17.32-1.78-26.21 0-9 .63-17.84 1.82-26.51l82.38 4.77-77.94-27.16a191.726 191.726 0 0 1 20.23-48.67l74.22 35.92-61.52-54.86a193.85 193.85 0 0 1 37.28-37.22l54.76 61.53-35.83-74.17a191.49 191.49 0 0 1 48.65-20.13l26.87 77.25-4.71-81.61c8.61-1.18 17.39-1.8 26.32-1.8s17.71.62 26.32 1.8l-4.74 82.16 27.05-77.76c17.27 4.5 33.6 11.35 48.63 20.17l-35.82 74.12 54.72-61.47a193.13 193.13 0 0 1 37.24 37.23l-61.45 54.77 74.12-35.86a191.515 191.515 0 0 1 20.2 48.65l-77.81 27.1 82.24-4.75c1.19 8.66 1.82 17.5 1.82 26.49 0 8.88-.61 17.63-1.78 26.19l-82.12-4.75 77.72 27.09z"] }; +var faFirstdraft = { prefix: 'fab', iconName: 'firstdraft', icon: [384, 512, [], "f3a1", "M384 192h-64v128H192v128H0v-25.6h166.4v-128h128v-128H384V192zm-25.6 38.4v128h-128v128H64V512h192V384h128V230.4h-25.6zm25.6 192h-89.6V512H320v-64h64v-25.6zM0 0v384h128V256h128V128h128V0H0z"] }; +var faFlickr = { prefix: 'fab', iconName: 'flickr', icon: [448, 512, [], "f16e", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5zm159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5z"] }; +var faFlipboard = { prefix: 'fab', iconName: 'flipboard', icon: [448, 512, [], "f44d", "M0 32v448h448V32H0zm358.4 179.2h-89.6v89.6h-89.6v89.6H89.6V121.6h268.8v89.6z"] }; +var faFly = { prefix: 'fab', iconName: 'fly', icon: [384, 512, [], "f417", "M197.8 427.8c12.9 11.7 33.7 33.3 33.2 50.7 0 .8-.1 1.6-.1 2.5-1.8 19.8-18.8 31.1-39.1 31-25-.1-39.9-16.8-38.7-35.8 1-16.2 20.5-36.7 32.4-47.6 2.3-2.1 2.7-2.7 5.6-3.6 3.4 0 3.9.3 6.7 2.8zM331.9 67.3c-16.3-25.7-38.6-40.6-63.3-52.1C243.1 4.5 214-.2 192 0c-44.1 0-71.2 13.2-81.1 17.3C57.3 45.2 26.5 87.2 28 158.6c7.1 82.2 97 176 155.8 233.8 1.7 1.6 4.5 4.5 6.2 5.1l3.3.1c2.1-.7 1.8-.5 3.5-2.1 52.3-49.2 140.7-145.8 155.9-215.7 7-39.2 3.1-72.5-20.8-112.5zM186.8 351.9c-28-51.1-65.2-130.7-69.3-189-3.4-47.5 11.4-131.2 69.3-136.7v325.7zM328.7 180c-16.4 56.8-77.3 128-118.9 170.3C237.6 298.4 275 217 277 158.4c1.6-45.9-9.8-105.8-48-131.4 88.8 18.3 115.5 98.1 99.7 153z"] }; +var faFontAwesome = { prefix: 'fab', iconName: 'font-awesome', icon: [448, 512, [], "f2b4", "M397.8 32H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-45.4 284.3c0 4.2-3.6 6-7.8 7.8-16.7 7.2-34.6 13.7-53.8 13.7-26.9 0-39.4-16.7-71.7-16.7-23.3 0-47.8 8.4-67.5 17.3-1.2.6-2.4.6-3.6 1.2V385c0 1.8 0 3.6-.6 4.8v1.2c-2.4 8.4-10.2 14.3-19.1 14.3-11.3 0-20.3-9-20.3-20.3V166.4c-7.8-6-13.1-15.5-13.1-26.3 0-18.5 14.9-33.5 33.5-33.5 18.5 0 33.5 14.9 33.5 33.5 0 10.8-4.8 20.3-13.1 26.3v18.5c1.8-.6 3.6-1.2 5.4-2.4 18.5-7.8 40.6-14.3 61.5-14.3 22.7 0 40.6 6 60.9 13.7 4.2 1.8 8.4 2.4 13.1 2.4 22.7 0 47.8-16.1 53.8-16.1 4.8 0 9 3.6 9 7.8v140.3z"] }; +var faFontAwesomeAlt = { prefix: 'fab', iconName: 'font-awesome-alt', icon: [448, 512, [], "f35c", "M397.8 67.8c7.8 0 14.3 6.6 14.3 14.3v347.6c0 7.8-6.6 14.3-14.3 14.3H50.2c-7.8 0-14.3-6.6-14.3-14.3V82.2c0-7.8 6.6-14.3 14.3-14.3h347.6m0-35.9H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-58.5 139.2c-6 0-29.9 15.5-52.6 15.5-4.2 0-8.4-.6-12.5-2.4-19.7-7.8-37-13.7-59.1-13.7-20.3 0-41.8 6.6-59.7 13.7-1.8.6-3.6 1.2-4.8 1.8v-17.9c7.8-6 12.5-14.9 12.5-25.7 0-17.9-14.3-32.3-32.3-32.3s-32.3 14.3-32.3 32.3c0 10.2 4.8 19.7 12.5 25.7v212.1c0 10.8 9 19.7 19.7 19.7 9 0 16.1-6 18.5-13.7V385c.6-1.8.6-3 .6-4.8V336c1.2 0 2.4-.6 3-1.2 19.7-8.4 43-16.7 65.7-16.7 31.1 0 43 16.1 69.3 16.1 18.5 0 36.4-6.6 52-13.7 4.2-1.8 7.2-3.6 7.2-7.8V178.3c1.8-4.1-2.3-7.1-7.7-7.1z"] }; +var faFontAwesomeFlag = { prefix: 'fab', iconName: 'font-awesome-flag', icon: [448, 512, [], "f425", "M444.373 359.424c0 7.168-6.144 10.24-13.312 13.312-28.672 12.288-59.392 23.552-92.16 23.552-46.08 0-67.584-28.672-122.88-28.672-39.936 0-81.92 14.336-115.712 29.696-2.048 1.024-4.096 1.024-6.144 2.048v77.824c0 21.405-16.122 34.816-33.792 34.816-19.456 0-34.816-15.36-34.816-34.816V102.4C12.245 92.16 3.029 75.776 3.029 57.344 3.029 25.6 28.629 0 60.373 0s57.344 25.6 57.344 57.344c0 18.432-8.192 34.816-22.528 45.056v31.744c4.124-1.374 58.768-28.672 114.688-28.672 65.27 0 97.676 27.648 126.976 27.648 38.912 0 81.92-27.648 92.16-27.648 8.192 0 15.36 6.144 15.36 13.312v240.64z"] }; +var faFontAwesomeLogoFull = { prefix: 'fab', iconName: 'font-awesome-logo-full', icon: [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"] }; +var faFonticons = { prefix: 'fab', iconName: 'fonticons', icon: [448, 512, [], "f280", "M0 32v448h448V32H0zm167.4 196h67.4l-11.1 37.3H168v112.9c0 5.8-2 6.7 3.2 7.3l43.5 4.1v25.1H84V389l21.3-2c5.2-.6 6.7-2.3 6.7-7.9V267.7c0-2.3-2.9-2.3-5.8-2.3H84V228h28v-21c0-49.6 26.5-70 77.3-70 34.1 0 64.7 8.2 64.7 52.8l-50.7 6.1c.3-18.7-4.4-23-16.3-23-18.4 0-19 9.9-19 27.4v23.3c0 2.4-3.5 4.4-.6 4.4zM364 414.7H261.3v-25.1l20.4-2.6c5.2-.6 7.6-1.7 7.6-7.3V271.8c0-4.1-2.9-6.7-6.7-7.9l-24.2-6.4 6.7-29.5h80.2v151.7c0 5.8-2.6 6.4 2.9 7.3l15.7 2.6v25.1zm-21.9-255.5l9 33.2-7.3 7.3-31.2-16.6-31.2 16.6-7.3-7.3 9-33.2-21.8-24.2 3.5-9.6h27.7l15.5-28h9.3l15.5 28h27.7l3.5 9.6-21.9 24.2z"] }; +var faFonticonsFi = { prefix: 'fab', iconName: 'fonticons-fi', icon: [384, 512, [], "f3a2", "M114.4 224h92.4l-15.2 51.2h-76.4V433c0 8-2.8 9.2 4.4 10l59.6 5.6V483H0v-35.2l29.2-2.8c7.2-.8 9.2-3.2 9.2-10.8V278.4c0-3.2-4-3.2-8-3.2H0V224h38.4v-28.8c0-68 36.4-96 106-96 46.8 0 88.8 11.2 88.8 72.4l-69.6 8.4c.4-25.6-6-31.6-22.4-31.6-25.2 0-26 13.6-26 37.6v32c0 3.2-4.8 6-.8 6zM384 483H243.2v-34.4l28-3.6c7.2-.8 10.4-2.4 10.4-10V287c0-5.6-4-9.2-9.2-10.8l-33.2-8.8 9.2-40.4h110v208c0 8-3.6 8.8 4 10l21.6 3.6V483zm-30-347.2l12.4 45.6-10 10-42.8-22.8-42.8 22.8-10-10 12.4-45.6-30-36.4 4.8-10h38L307.2 51H320l21.2 38.4h38l4.8 13.2-30 33.2z"] }; +var faFortAwesome = { prefix: 'fab', iconName: 'fort-awesome', icon: [512, 512, [], "f286", "M489.2 287.9h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6V146.2c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-6-8-4.6-11.7-4.6v-38c8.3-2 17.1-3.4 25.7-3.4 10.9 0 20.9 4.3 31.4 4.3 4.6 0 27.7-1.1 27.7-8v-60c0-2.6-2-4.6-4.6-4.6-5.1 0-15.1 4.3-24 4.3-9.7 0-20.9-4.3-32.6-4.3-8 0-16 1.1-23.7 2.9v-4.9c5.4-2.6 9.1-8.3 9.1-14.3 0-20.7-31.4-20.8-31.4 0 0 6 3.7 11.7 9.1 14.3v111.7c-3.7 0-11.7-1.4-11.7 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32H128v-32c0-2.6-2-4.6-4.6-4.6H96c-2.6 0-4.6 2-4.6 4.6v178.3H54.8v-32c0-2.6-2-4.6-4.6-4.6H22.8c-2.6 0-4.6 2-4.6 4.6V512h182.9v-96c0-72.6 109.7-72.6 109.7 0v96h182.9V292.5c.1-2.6-1.9-4.6-4.5-4.6zm-288.1-4.5c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64zm146.4 0c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64z"] }; +var faFortAwesomeAlt = { prefix: 'fab', iconName: 'fort-awesome-alt', icon: [512, 512, [], "f3a3", "M211.7 241.1v51.7c0 2.1-1.6 3.7-3.7 3.7h-22.2c-2.1 0-3.7-1.6-3.7-3.7v-51.7c0-2.1 1.6-3.7 3.7-3.7H208c2.1 0 3.7 1.6 3.7 3.7zm114.5-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7h22.2c2.1 0 3.7-1.6 3.7-3.7v-51.7c-.1-2.1-1.7-3.7-3.7-3.7zm-29.1 263.2c-.9.1-1.7.3-2.6.4-1 .2-2.1.3-3.1.5-.9.1-1.8.3-2.8.4-1 .1-2 .3-3 .4-1 .1-2 .2-2.9.3-1 .1-1.9.2-2.9.3-1 .1-2.1.2-3.1.3-.9.1-1.8.2-2.7.2-1.1.1-2.3.1-3.4.2-.8 0-1.7.1-2.5.1-1.3.1-2.6.1-3.9.1-.7 0-1.4.1-2.1.1-2 0-4 .1-6 .1s-4 0-6-.1c-.7 0-1.4 0-2.1-.1-1.3 0-2.6-.1-3.9-.1-.8 0-1.7-.1-2.5-.1-1.1-.1-2.3-.1-3.4-.2-.9-.1-1.8-.1-2.7-.2-1-.1-2.1-.2-3.1-.3-1-.1-1.9-.2-2.9-.3-1-.1-2-.2-2.9-.3-1-.1-2-.2-3-.4-.9-.1-1.8-.3-2.8-.4-1-.1-2.1-.3-3.1-.5-.9-.1-1.7-.3-2.6-.4-65.6-10.9-122.5-47.7-160-99.4-.2-.2-.3-.5-.5-.7-.8-1.1-1.6-2.2-2.3-3.3-.3-.4-.6-.8-.8-1.2-.7-1.1-1.4-2.1-2.1-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.4-2.1-2-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.3-2.2-2-3.3-.2-.4-.5-.8-.7-1.2-2.4-4-4.6-8.1-6.8-12.2-.1-.2-.2-.3-.3-.5-.6-1.1-1.1-2.2-1.7-3.3-.3-.6-.6-1.1-.8-1.7-.5-1-1-2.1-1.5-3.1-.3-.7-.6-1.3-.9-2-.5-1-.9-2-1.4-3l-.9-2.1c-.4-1-.9-2-1.3-3-.3-.7-.6-1.5-.9-2.2l-1.2-3c-.3-.8-.6-1.5-.9-2.3-.4-1-.8-2-1.1-3-.3-.9-.6-1.8-1-2.8-.6-1.6-1.1-3.3-1.7-4.9-.3-.9-.6-1.8-.9-2.8-.3-.9-.5-1.8-.8-2.7-.3-.9-.6-1.9-.8-2.8-.3-.9-.5-1.8-.8-2.7-.3-1-.5-1.9-.8-2.9-.2-.9-.5-1.8-.7-2.7-.3-1-.5-2-.7-3-.2-.9-.4-1.7-.6-2.6-.2-1.1-.5-2.2-.7-3.2-.2-.8-.3-1.6-.5-2.4-.3-1.3-.5-2.7-.8-4-.1-.6-.2-1.1-.3-1.7l-.9-5.7c-.1-.6-.2-1.3-.3-1.9-.2-1.3-.4-2.6-.5-3.9-.1-.8-.2-1.5-.3-2.3-.1-1.2-.3-2.4-.4-3.6-.1-.8-.2-1.6-.2-2.4-.1-1.2-.2-2.4-.3-3.5-.1-.8-.1-1.6-.2-2.4-.1-1.2-.2-2.4-.2-3.7 0-.8-.1-1.5-.1-2.3-.1-1.3-.1-2.7-.2-4 0-.7 0-1.3-.1-2 0-2-.1-4-.1-6 0-53.5 16.9-103 45.8-143.6 2.3-3.2 4.7-6.4 7.1-9.5 4.9-6.2 10.1-12.3 15.6-18 2.7-2.9 5.5-5.7 8.4-8.4 2.9-2.7 5.8-5.4 8.8-8 4.5-3.9 9.1-7.6 13.9-11.2 1.6-1.2 3.2-2.4 4.8-3.5C140 34.2 171.7 20.1 206 13c16.1-3.3 32.9-5 50-5s33.8 1.7 50 5c34.3 7 66 21.1 93.6 40.7 1.6 1.2 3.2 2.3 4.8 3.5 4.8 3.6 9.4 7.3 13.9 11.2 12 10.4 23 21.9 32.8 34.4 2.5 3.1 4.8 6.3 7.1 9.5C487.1 153 504 202.5 504 256c0 2 0 4-.1 6 0 .7 0 1.3-.1 2 0 1.3-.1 2.7-.2 4 0 .8-.1 1.5-.1 2.3-.1 1.2-.1 2.4-.2.7-.1.8-.1 1.6-.2 2.4-.1 1.2-.2 2.4-.3 3.5-.1.8-.2 1.6-.2 2.4-.1 1.2-.3 2.4-.4 3.6-.1.8-.2 1.5-.3 2.3-.2 1.3-.4 2.6-.5 3.9-.1.6-.2 1.3-.3 1.9l-.9 5.7c-.1.6-.2 1.1-.3 1.7-.2 1.3-.5 2.7-.8 4-.2.8-.3 1.6-.5 2.4-.2 1.1-.5 2.2-.7 3.2-.2.9-.4 1.7-.6 2.6-.2 1-.5 2-.7 3-.2.9-.5 1.8-.7 2.7-.3 1-.5 1.9-.8 2.9-.2.9-.5 1.8-.8 2.7-.3.9-.6 1.9-.8 2.8-.3.9-.5 1.8-.8 2.7-.3.9-.6 1.8-.9 2.8-.5 1.6-1.1 3.3-1.7 4.9-.3.9-.6 1.8-1 2.8-.4 1-.7 2-1.1 3-.3.8-.6 1.5-.9 2.3l-1.2 3c-.3.7-.6 1.5-.9 2.2-.4 1-.8 2-1.3 3l-.9 2.1c-.4 1-.9 2-1.4 3-.3.7-.6 1.3-.9 2-.5 1-1 2.1-1.5 3.1-.3.6-.6 1.1-.8 1.7-.6 1.1-1.1 2.2-1.7 3.3-.1.2-.2.3-.3.5-2.2 4.1-4.4 8.2-6.8 12.2-.2.4-.5.8-.7 1.2-.7 1.1-1.3 2.2-2 3.3-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2 3.2-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2.1 3.2-.3.4-.6.8-.8 1.2-.8 1.1-1.5 2.2-2.3 3.3-.2.2-.3.5-.5.7-37.6 54.7-94.5 91.4-160.1 102.4zm117.3-86.2c13-13 24.2-27.4 33.6-42.9v-71.3c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7V326h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-4.8-6.5-3.7-9.5-3.7v-30.7c6.7-1.6 13.8-2.8 20.8-2.8 8.8 0 16.8 3.5 25.4 3.5 3.7 0 22.4-.9 22.4-6.5V93.4c0-2.1-1.6-3.7-3.7-3.7-4.2 0-12.2 3.5-19.4 3.5-7.9 0-16.9-3.5-26.3-3.5-6.5 0-12.9.9-19.2 2.3v-3.9c4.4-2.1 7.4-6.7 7.4-11.5 0-16.8-25.4-16.8-25.4 0 0 4.8 3 9.5 7.4 11.5v90.2c-3 0-9.5-1.1-9.5 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v144H93.5v-25.8c0-2.1-1.6-3.7-3.7-3.7H67.7c-2.1 0-3.7 1.6-3.7 3.7v71.3c9.4 15.5 20.6 29.9 33.6 42.9 20.6 20.6 44.5 36.7 71.2 48 13.9 5.9 28.2 10.3 42.9 13.2v-75.8c0-58.6 88.6-58.6 88.6 0v75.8c14.7-2.9 29-7.4 42.9-13.2 26.7-11.3 50.6-27.4 71.2-48"] }; +var faForumbee = { prefix: 'fab', iconName: 'forumbee', icon: [448, 512, [], "f211", "M5.8 309.7C2 292.7 0 275.5 0 258.3 0 135 99.8 35 223.1 35c16.6 0 33.3 2 49.3 5.5C149 87.5 51.9 186 5.8 309.7zm392.9-189.2C385 103 369 87.8 350.9 75.2c-149.6 44.3-266.3 162.1-309.7 312 12.5 18.1 28 35.6 45.2 49 43.1-151.3 161.2-271.7 312.3-315.7zm15.8 252.7c15.2-25.1 25.4-53.7 29.5-82.8-79.4 42.9-145 110.6-187.6 190.3 30-4.4 58.9-15.3 84.6-31.3 35 13.1 70.9 24.3 107 33.6-9.3-36.5-20.4-74.5-33.5-109.8zm29.7-145.5c-2.6-19.5-7.9-38.7-15.8-56.8C290.5 216.7 182 327.5 137.1 466c18.1 7.6 37 12.5 56.6 15.2C240 367.1 330.5 274.4 444.2 227.7z"] }; +var faFoursquare = { prefix: 'fab', iconName: 'foursquare', icon: [368, 512, [], "f180", "M323.1 3H49.9C12.4 3 0 31.3 0 49.1v433.8c0 20.3 12.1 27.7 18.2 30.1 6.2 2.5 22.8 4.6 32.9-7.1C180 356.5 182.2 354 182.2 354c3.1-3.4 3.4-3.1 6.8-3.1h83.4c35.1 0 40.6-25.2 44.3-39.7l48.6-243C373.8 25.8 363.1 3 323.1 3zm-16.3 73.8l-11.4 59.7c-1.2 6.5-9.5 13.2-16.9 13.2H172.1c-12 0-20.6 8.3-20.6 20.3v13c0 12 8.6 20.6 20.6 20.6h90.4c8.3 0 16.6 9.2 14.8 18.2-1.8 8.9-10.5 53.8-11.4 58.8-.9 4.9-6.8 13.5-16.9 13.5h-73.5c-13.5 0-17.2 1.8-26.5 12.6 0 0-8.9 11.4-89.5 108.3-.9.9-1.8.6-1.8-.3V75.9c0-7.7 6.8-16.6 16.6-16.6h219c8.2 0 15.6 7.7 13.5 17.5z"] }; +var faFreeCodeCamp = { prefix: 'fab', iconName: 'free-code-camp', icon: [576, 512, [], "f2c5", "M69.3 144.5c-41 68.5-36.4 163 1 227C92.5 409.7 120 423.9 120 438c0 6.8-6 13-12.8 13C87.7 451 8 375.5 8 253.2c0-111.5 78-186 97.1-186 6 0 14.9 4.8 14.9 11.1 0 12.7-28.3 28.6-50.7 66.2zm195.8 213.8c4.5 1.8 12.3 5.2 12.3-1.2 0-2.7-2.2-2.9-4.3-3.6-8.5-3.4-14-7.7-19.1-15.2-8.2-12.1-10.1-24.2-10.1-38.6 0-32.1 44.2-37.9 44.2-70 0-12.3-7.7-15.9-7.7-19.3 0-2.2.7-2.2 2.9-2.2 8 0 19.1 13.3 22.5 19.8 2.2 4.6 2.4 6 2.4 11.1 0 7-.7 14.2-.7 21.3 0 27 31.9 19.8 31.9 6.8 0-6-3.6-11.6-3.6-17.4 0-.7 0-1.2.7-1.2 3.4 0 9.4 7.7 11.1 10.1 5.8 8.9 8.5 20.8 8.5 31.4 0 32.4-29.5 49-29.5 56 0 1 2.9 7.7 12.1 1.9 29.7-15.1 53.1-47.6 53.1-89.8 0-33.6-8.7-57.7-32.1-82.6-3.9-4.1-16.4-16.9-22.5-16.9-8.2 0 7.2 18.6 7.2 31.2 0 7.2-4.8 12.3-12.3 12.3-11.6 0-14.5-25.4-15.9-33.3-5.8-33.8-12.8-58.2-46.4-74.1-10.4-5-36.5-11.8-36.5-2.2 0 2.4 2.7 4.1 4.6 5.1 9.2 5.6 19.6 21.4 19.6 38.2 0 46.1-57.7 88.2-57.7 136.2-.2 40.3 28.1 72.6 65.3 86.2zM470.4 67c-6 0-14.4 6.5-14.4 12.6 0 8.7 12.1 19.6 17.6 25.4 81.6 85.1 78.6 214.3 17.6 291-7 8.9-35.3 35.3-35.3 43.5 0 5.1 8.2 11.4 13.2 11.4 25.4 0 98.8-80.8 98.8-185.7C568 145.9 491.8 67 470.4 67zm-42.3 323.1H167c-9.4 0-15.5 7.5-15.5 16.4 0 8.5 7 15.5 15.5 15.5h261.1c9.4 0 11.9-7.5 11.9-16.4 0-8.5-3.5-15.5-11.9-15.5z"] }; +var faFreebsd = { prefix: 'fab', iconName: 'freebsd', icon: [448, 512, [], "f3a4", "M303.7 96.2c11.1-11.1 115.5-77 139.2-53.2 23.7 23.7-42.1 128.1-53.2 139.2-11.1 11.1-39.4.9-63.1-22.9-23.8-23.7-34.1-52-22.9-63.1zM109.9 68.1C73.6 47.5 22 24.6 5.6 41.1c-16.6 16.6 7.1 69.4 27.9 105.7 18.5-32.2 44.8-59.3 76.4-78.7zM406.7 174c3.3 11.3 2.7 20.7-2.7 26.1-20.3 20.3-87.5-27-109.3-70.1-18-32.3-11.1-53.4 14.9-48.7 5.7-3.6 12.3-7.6 19.6-11.6-29.8-15.5-63.6-24.3-99.5-24.3-119.1 0-215.6 96.5-215.6 215.6 0 119 96.5 215.6 215.6 215.6S445.3 380.1 445.3 261c0-38.4-10.1-74.5-27.7-105.8-3.9 7-7.6 13.3-10.9 18.8z"] }; +var faFulcrum = { prefix: 'fab', iconName: 'fulcrum', icon: [269, 512, [], "f50b", "M70.75 164.14l-35.38 43.55L0 164.14l35.38-43.55 35.37 43.55zM119.23 0L98.69 198.18 47.72 256l50.98 57.82L119.23 512V300.89L78.15 256l41.08-44.89V0zm79.67 164.14l35.38 43.55 35.38-43.55-35.38-43.55-35.38 43.55zm-48.48 46.97L191.5 256l-41.08 44.89V512l20.54-198.18L221.94 256l-50.98-57.82L150.42 0v211.11z"] }; +var faGalacticRepublic = { prefix: 'fab', iconName: 'galactic-republic', icon: [496, 512, [], "f50c", "M248 504C111.25 504 0 392.75 0 256S111.25 8 248 8s248 111.25 248 248-111.25 248-248 248zm0-479.47C120.37 24.53 16.53 128.37 16.53 256S120.37 487.47 248 487.47 479.47 383.63 479.47 256 375.63 24.53 248 24.53zm27.62 21.81v24.62a185.933 185.933 0 0 1 83.57 34.54l17.39-17.36c-28.75-22.06-63.3-36.89-100.96-41.8zm-55.37.07c-37.64 4.94-72.16 19.8-100.88 41.85l17.28 17.36h.08c24.07-17.84 52.55-30.06 83.52-34.67V46.41zm12.25 50.17v82.87c-10.04 2.03-19.42 5.94-27.67 11.42l-58.62-58.59-21.93 21.93 58.67 58.67c-5.47 8.23-9.45 17.59-11.47 27.62h-82.9v31h82.9c2.02 10.02 6.01 19.31 11.47 27.54l-58.67 58.69 21.93 21.93 58.62-58.62a77.873 77.873 0 0 0 27.67 11.47v82.9h31v-82.9c10.05-2.03 19.37-6.06 27.62-11.55l58.67 58.69 21.93-21.93-58.67-58.69c5.46-8.23 9.47-17.52 11.5-27.54h82.87v-31h-82.87c-2.02-10.02-6.03-19.38-11.5-27.62l58.67-58.67-21.93-21.93-58.67 58.67c-8.25-5.49-17.57-9.47-27.62-11.5V96.58h-31zm183.24 30.72l-17.36 17.36a186.337 186.337 0 0 1 34.67 83.67h24.62c-4.95-37.69-19.83-72.29-41.93-101.03zm-335.55.13c-22.06 28.72-36.91 63.26-41.85 100.91h24.65c4.6-30.96 16.76-59.45 34.59-83.52l-17.39-17.39zM38.34 283.67c4.92 37.64 19.75 72.18 41.8 100.9l17.36-17.39c-17.81-24.07-29.92-52.57-34.51-83.52H38.34zm394.7 0c-4.61 30.99-16.8 59.5-34.67 83.6l17.36 17.36c22.08-28.74 36.98-63.29 41.93-100.96h-24.62zM136.66 406.38l-17.36 17.36c28.73 22.09 63.3 36.98 100.96 41.93v-24.64c-30.99-4.63-59.53-16.79-83.6-34.65zm222.53.05c-24.09 17.84-52.58 30.08-83.57 34.67v24.57c37.67-4.92 72.21-19.79 100.96-41.85l-17.31-17.39h-.08z"] }; +var faGalacticSenate = { prefix: 'fab', iconName: 'galactic-senate', icon: [512, 512, [], "f50d", "M249.86 33.48v26.07C236.28 80.17 226 168.14 225.39 274.9c11.74-15.62 19.13-33.33 19.13-48.24v-16.88c-.03-5.32.75-10.53 2.19-15.65.65-2.14 1.39-4.08 2.62-5.82 1.23-1.75 3.43-3.79 6.68-3.79 3.24 0 5.45 2.05 6.68 3.79 1.23 1.75 1.97 3.68 2.62 5.82 1.44 5.12 2.22 10.33 2.19 15.65v16.88c0 14.91 7.39 32.62 19.13 48.24-.63-106.76-10.91-194.73-24.49-215.35V33.48h-12.28zm-26.34 147.77c-9.52 2.15-18.7 5.19-27.46 9.08 8.9 16.12 9.76 32.64 1.71 37.29-8 4.62-21.85-4.23-31.36-19.82-11.58 8.79-21.88 19.32-30.56 31.09 14.73 9.62 22.89 22.92 18.32 30.66-4.54 7.7-20.03 7.14-35.47-.96-5.78 13.25-9.75 27.51-11.65 42.42 9.68.18 18.67 2.38 26.18 6.04 17.78-.3 32.77-1.96 40.49-4.22 5.55-26.35 23.02-48.23 46.32-59.51.73-25.55 1.88-49.67 3.48-72.07zm64.96 0c1.59 22.4 2.75 46.52 3.47 72.07 23.29 11.28 40.77 33.16 46.32 59.51 7.72 2.26 22.71 3.92 40.49 4.22 7.51-3.66 16.5-5.85 26.18-6.04-1.9-14.91-5.86-29.17-11.65-42.42-15.44 8.1-30.93 8.66-35.47.96-4.57-7.74 3.6-21.05 18.32-30.66-8.68-11.77-18.98-22.3-30.56-31.09-9.51 15.59-23.36 24.44-31.36 19.82-8.05-4.65-7.19-21.16 1.71-37.29a147.49 147.49 0 0 0-27.45-9.08zm-32.48 8.6c-3.23 0-5.86 8.81-6.09 19.93h-.05v16.88c0 41.42-49.01 95.04-93.49 95.04-52 0-122.75-1.45-156.37 29.17v2.51c9.42 17.12 20.58 33.17 33.18 47.97C45.7 380.26 84.77 360.4 141.2 360c45.68 1.02 79.03 20.33 90.76 40.87.01.01-.01.04 0 .05 7.67 2.14 15.85 3.23 24.04 3.21 8.19.02 16.37-1.07 24.04-3.21.01-.01-.01-.04 0-.05 11.74-20.54 45.08-39.85 90.76-40.87 56.43.39 95.49 20.26 108.02 41.35 12.6-14.8 23.76-30.86 33.18-47.97v-2.51c-33.61-30.62-104.37-29.17-156.37-29.17-44.48 0-93.49-53.62-93.49-95.04v-16.88h-.05c-.23-11.12-2.86-19.93-6.09-19.93zm0 96.59c22.42 0 40.6 18.18 40.6 40.6s-18.18 40.65-40.6 40.65-40.6-18.23-40.6-40.65c0-22.42 18.18-40.6 40.6-40.6zm0 7.64c-18.19 0-32.96 14.77-32.96 32.96S237.81 360 256 360s32.96-14.77 32.96-32.96-14.77-32.96-32.96-32.96zm0 6.14c14.81 0 26.82 12.01 26.82 26.82s-12.01 26.82-26.82 26.82-26.82-12.01-26.82-26.82 12.01-26.82 26.82-26.82zm-114.8 66.67c-10.19.07-21.6.36-30.5 1.66.43 4.42 1.51 18.63 7.11 29.76 9.11-2.56 18.36-3.9 27.62-3.9 41.28.94 71.48 34.35 78.26 74.47l.11 4.7c10.4 1.91 21.19 2.94 32.21 2.94 11.03 0 21.81-1.02 32.21-2.94l.11-4.7c6.78-40.12 36.98-73.53 78.26-74.47 9.26 0 18.51 1.34 27.62 3.9 5.6-11.13 6.68-25.34 7.11-29.76-8.9-1.3-20.32-1.58-30.5-1.66-18.76.42-35.19 4.17-48.61 9.67-12.54 16.03-29.16 30.03-49.58 33.07-.09.02-.17.04-.27.05-.05.01-.11.04-.16.05-5.24 1.07-10.63 1.6-16.19 1.6-5.55 0-10.95-.53-16.19-1.6-.05-.01-.11-.04-.16-.05-.1-.02-.17-.04-.27-.05-20.42-3.03-37.03-17.04-49.58-33.07-13.42-5.49-29.86-9.25-48.61-9.67z"] }; +var faGetPocket = { prefix: 'fab', iconName: 'get-pocket', icon: [448, 512, [], "f265", "M407.6 64h-367C18.5 64 0 82.5 0 104.6v135.2C0 364.5 99.7 464 224.2 464c124 0 223.8-99.5 223.8-224.2V104.6c0-22.4-17.7-40.6-40.4-40.6zm-162 268.5c-12.4 11.8-31.4 11.1-42.4 0C89.5 223.6 88.3 227.4 88.3 209.3c0-16.9 13.8-30.7 30.7-30.7 17 0 16.1 3.8 105.2 89.3 90.6-86.9 88.6-89.3 105.5-89.3 16.9 0 30.7 13.8 30.7 30.7 0 17.8-2.9 15.7-114.8 123.2z"] }; +var faGg = { prefix: 'fab', iconName: 'gg', icon: [512, 512, [], "f260", "M179.2 230.4l102.4 102.4-102.4 102.4L0 256 179.2 76.8l44.8 44.8-25.6 25.6-19.2-19.2-128 128 128 128 51.5-51.5-77.1-76.5 25.6-25.6zM332.8 76.8L230.4 179.2l102.4 102.4 25.6-25.6-77.1-76.5 51.5-51.5 128 128-128 128-19.2-19.2-25.6 25.6 44.8 44.8L512 256 332.8 76.8z"] }; +var faGgCircle = { prefix: 'fab', iconName: 'gg-circle', icon: [512, 512, [], "f261", "M257 8C120 8 9 119 9 256s111 248 248 248 248-111 248-248S394 8 257 8zm-49.5 374.8L81.8 257.1l125.7-125.7 35.2 35.4-24.2 24.2-11.1-11.1-77.2 77.2 77.2 77.2 26.6-26.6-53.1-52.9 24.4-24.4 77.2 77.2-75 75.2zm99-2.2l-35.2-35.2 24.1-24.4 11.1 11.1 77.2-77.2-77.2-77.2-26.5 26.5 53.1 52.9-24.4 24.4-77.2-77.2 75-75L432.2 255 306.5 380.6z"] }; +var faGit = { prefix: 'fab', iconName: 'git', icon: [448, 512, [], "f1d3", "M18.8 221.7c0 25.3 16.2 60 41.5 68.5v1c-18.8 8.3-24 50.6 1 65.8v1C34 367 16 384.3 16 414.2c0 51.5 48.8 65.8 91.5 65.8 52 0 90.7-18.7 90.7-76 0-70.5-101-44.5-101-82.8 0-13.5 7.2-18.7 19.7-21.3 41.5-7.7 67.5-40 67.5-82.2 0-7.3-1.5-14.2-4-21 6.7-1.5 13.2-3.3 19.7-5.5v-50.5c-17.2 6.8-35.7 11.8-54.5 11.8-53.8-31-126.8 1.3-126.8 69.2zm87.7 163.8c17 0 41.2 3 41.2 25 0 21.8-19.5 26.3-37.7 26.3-17.3 0-43.3-2.7-43.3-25.2.1-22.3 22.1-26.1 39.8-26.1zM103.3 256c-22 0-31.3-13-31.3-33.8 0-49.3 61-48.8 61-.5 0 20.3-8 34.3-29.7 34.3zM432 305.5v49c-13.3 7.3-30.5 9.8-45.5 9.8-53.5 0-59.8-42.2-59.8-85.7v-87.7h.5v-1c-7 0-7.3-1.6-24 1v-47.5h24c0-22.3.3-31-1.5-41.2h56.7c-2 13.8-1.5 27.5-1.5 41.2h51v47.5s-19.3-1-51-1V281c0 14.8 3.3 32.8 21.8 32.8 9.8 0 21.3-2.8 29.3-8.3zM286 68.7c0 18.7-14.5 36.2-33.8 36.2-19.8 0-34.5-17.2-34.5-36.2 0-19.3 14.5-36.7 34.5-36.7C272 32 286 50 286 68.7zm-6.2 74.5c-1.8 14.6-1.6 199.8 0 217.8h-55.5c1.6-18.1 1.8-203 0-217.8h55.5z"] }; +var faGitSquare = { prefix: 'fab', iconName: 'git-square', icon: [448, 512, [], "f1d2", "M140.1 348.5c12.1 0 29.5 2.1 29.5 17.9 0 15.5-13.9 18.8-27 18.8-12.3 0-30.9-2-30.9-18s15.7-18.7 28.4-18.7zm-24.7-116.6c0 14.8 6.6 24.1 22.3 24.1 15.5 0 21.2-10 21.2-24.5.1-34.4-43.5-34.8-43.5.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-241 93.7c-12.3 4.8-25.5 8.4-38.9 8.4-38.5-22.1-90.7.9-90.7 49.5 0 18 11.6 42.9 29.6 48.9v.7c-13.4 5.9-17.1 36.1.7 47v.7c-19.5 6.4-32.3 18.8-32.3 40.2 0 36.8 34.8 47 65.4 47 37.1 0 64.8-13.4 64.8-54.3 0-50.4-72.1-31.8-72.1-59.1 0-9.6 5.2-13.4 14.1-15.2 29.6-5.5 48.2-28.6 48.2-58.7 0-5.2-1.1-10.2-2.9-15 4.8-1.1 9.5-2.3 14.1-3.9v-36.2zm56.8 1.8h-39.6c1.3 10.6 1.1 142.6 0 155.5h39.6c-1.1-12.8-1.2-145.1 0-155.5zm4.5-53.3c0-13.4-10-26.2-24.1-26.2-14.3 0-24.6 12.5-24.6 26.2 0 13.6 10.5 25.9 24.6 25.9 13.7 0 24.1-12.5 24.1-25.9zm104.3 53.3h-36.4c0-9.8-.4-19.6 1.1-29.5h-40.5c1.3 7.3 1.1 13.6 1.1 29.5h-17.1v33.9c11.9-1.9 12.1-.7 17.1-.7v.7h-.4v62.7c0 31.1 4.5 61.2 42.7 61.2 10.7 0 23-1.8 32.5-7v-35c-5.7 3.9-13.9 5.9-20.9 5.9-13.2 0-15.5-12.9-15.5-23.4v-65.2c22.7 0 36.4.7 36.4.7v-33.8z"] }; +var faGithub = { prefix: 'fab', iconName: 'github', icon: [496, 512, [], "f09b", "M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"] }; +var faGithubAlt = { prefix: 'fab', iconName: 'github-alt', icon: [480, 512, [], "f113", "M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1zM480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2zm-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3zm-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1z"] }; +var faGithubSquare = { prefix: 'fab', iconName: 'github-square', icon: [448, 512, [], "f092", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z"] }; +var faGitkraken = { prefix: 'fab', iconName: 'gitkraken', icon: [592, 512, [], "f3a6", "M565.7 118.1c-2.3-6.1-9.3-9.2-15.3-6.6-5.7 2.4-8.5 8.9-6.3 14.6 10.9 29 16.9 60.5 16.9 93.3 0 134.6-100.3 245.7-230.2 262.7V358.4c7.9-1.5 15.5-3.6 23-6.2v104c106.7-25.9 185.9-122.1 185.9-236.8 0-91.8-50.8-171.8-125.8-213.3-5.7-3.2-13-.9-15.9 5-2.7 5.5-.6 12.2 4.7 15.1 67.9 37.6 113.9 110 113.9 193.2 0 93.3-57.9 173.1-139.8 205.4v-92.2c14.2-4.5 24.9-17.7 24.9-33.5 0-13.1-6.8-24.4-17.3-30.5 8.3-79.5 44.5-58.6 44.5-83.9V170c0-38-87.9-161.8-129-164.7-2.5-.2-5-.2-7.6 0C251.1 8.3 163.2 132 163.2 170v14.8c0 25.3 36.3 4.3 44.5 83.9-10.6 6.1-17.3 17.4-17.3 30.5 0 15.8 10.6 29 24.8 33.5v92.2c-81.9-32.2-139.8-112-139.8-205.4 0-83.1 46-155.5 113.9-193.2 5.4-3 7.4-9.6 4.7-15.1-2.9-5.9-10.1-8.2-15.9-5-75 41.5-125.8 121.5-125.8 213.3 0 114.7 79.2 210.8 185.9 236.8v-104c7.6 2.5 15.1 4.6 23 6.2v123.7C131.4 465.2 31 354.1 31 219.5c0-32.8 6-64.3 16.9-93.3 2.2-5.8-.6-12.2-6.3-14.6-6-2.6-13 .4-15.3 6.6C14.5 149.7 8 183.8 8 219.5c0 155.1 122.6 281.6 276.3 287.8V361.4c6.8.4 15 .5 23.4 0v145.8C461.4 501.1 584 374.6 584 219.5c0-35.7-6.5-69.8-18.3-101.4zM365.9 275.5c13 0 23.7 10.5 23.7 23.7 0 13.1-10.6 23.7-23.7 23.7-13 0-23.7-10.5-23.7-23.7 0-13.1 10.6-23.7 23.7-23.7zm-139.8 47.3c-13.2 0-23.7-10.7-23.7-23.7s10.5-23.7 23.7-23.7c13.1 0 23.7 10.6 23.7 23.7 0 13-10.5 23.7-23.7 23.7z"] }; +var faGitlab = { prefix: 'fab', iconName: 'gitlab', icon: [512, 512, [], "f296", "M29.782 199.732L256 493.714 8.074 309.699c-6.856-5.142-9.712-13.996-7.141-21.993l28.849-87.974zm75.405-174.806c-3.142-8.854-15.709-8.854-18.851 0L29.782 199.732h131.961L105.187 24.926zm56.556 174.806L256 493.714l94.257-293.982H161.743zm349.324 87.974l-28.849-87.974L256 493.714l247.926-184.015c6.855-5.142 9.711-13.996 7.141-21.993zm-85.404-262.78c-3.142-8.854-15.709-8.854-18.851 0l-56.555 174.806h131.961L425.663 24.926z"] }; +var faGitter = { prefix: 'fab', iconName: 'gitter', icon: [384, 512, [], "f426", "M66.4 322.5H16V0h50.4v322.5zM166.9 76.1h-50.4V512h50.4V76.1zm100.6 0h-50.4V512h50.4V76.1zM368 76h-50.4v247H368V76z"] }; +var faGlide = { prefix: 'fab', iconName: 'glide', icon: [448, 512, [], "f2a5", "M252.8 148.6c0 8.8-1.6 17.7-3.4 26.4-5.8 27.8-11.6 55.8-17.3 83.6-1.4 6.3-8.3 4.9-13.7 4.9-23.8 0-30.5-26-30.5-45.5 0-29.3 11.2-68.1 38.5-83.1 4.3-2.5 9.2-4.2 14.1-4.2 11.4 0 12.3 8.3 12.3 17.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 187c0-5.1-20.8-37.7-25.5-39.5-2.2-.9-7.2-2.3-9.6-2.3-23.1 0-38.7 10.5-58.2 21.5l-.5-.5c4.3-29.4 14.6-57.2 14.6-87.4 0-44.6-23.8-62.7-67.5-62.7-71.7 0-108 70.8-108 123.5 0 54.7 32 85 86.3 85 7.5 0 6.9-.6 6.9 2.3-10.5 80.3-56.5 82.9-56.5 58.9 0-24.4 28-36.5 28.3-38-.2-7.6-29.3-17.2-36.7-17.2-21.1 0-32.7 33-32.7 50.6 0 32.3 20.4 54.7 53.3 54.7 48.2 0 83.4-49.7 94.3-91.7 9.4-37.7 7-39.4 12.3-42.1 20-10.1 35.8-16.8 58.4-16.8 11.1 0 19 2.3 36.7 5.2 1.8.1 4.1-1.7 4.1-3.5z"] }; +var faGlideG = { prefix: 'fab', iconName: 'glide-g', icon: [448, 512, [], "f2a6", "M407.1 211.2c-3.5-1.4-11.6-3.8-15.4-3.8-37.1 0-62.2 16.8-93.5 34.5l-.9-.9c7-47.3 23.5-91.9 23.5-140.4C320.8 29.1 282.6 0 212.4 0 97.3 0 39 113.7 39 198.4 39 286.3 90.3 335 177.6 335c12 0 11-1 11 3.8-16.9 128.9-90.8 133.1-90.8 94.6 0-39.2 45-58.6 45.5-61-.3-12.2-47-27.6-58.9-27.6-33.9.1-52.4 51.2-52.4 79.3C32 476 64.8 512 117.5 512c77.4 0 134-77.8 151.4-145.4 15.1-60.5 11.2-63.3 19.7-67.6 32.2-16.2 57.5-27 93.8-27 17.8 0 30.5 3.7 58.9 8.4 2.9 0 6.7-2.9 6.7-5.8 0-8-33.4-60.5-40.9-63.4zm-175.3-84.4c-9.3 44.7-18.6 89.6-27.8 134.3-2.3 10.2-13.3 7.8-22 7.8-38.3 0-49-41.8-49-73.1 0-47 18-109.3 61.8-133.4 7-4.1 14.8-6.7 22.6-6.7 18.6 0 20 13.3 20 28.7-.1 14.3-2.7 28.5-5.6 42.4z"] }; +var faGofore = { prefix: 'fab', iconName: 'gofore', icon: [400, 512, [], "f3a7", "M324 319.8h-13.2v34.7c-24.5 23.1-56.3 35.8-89.9 35.8-73.2 0-132.4-60.2-132.4-134.4 0-74.1 59.2-134.4 132.4-134.4 35.3 0 68.6 14 93.6 39.4l62.3-63.3C335 55.3 279.7 32 220.7 32 98 32 0 132.6 0 256c0 122.5 97 224 220.7 224 63.2 0 124.5-26.2 171-82.5-2-27.6-13.4-77.7-67.7-77.7zm-12.1-112.5H205.6v89H324c33.5 0 60.5 15.1 76 41.8v-30.6c0-65.2-40.4-100.2-88.1-100.2z"] }; +var faGoodreads = { prefix: 'fab', iconName: 'goodreads', icon: [448, 512, [], "f3a8", "M299.9 191.2c5.1 37.3-4.7 79-35.9 100.7-22.3 15.5-52.8 14.1-70.8 5.7-37.1-17.3-49.5-58.6-46.8-97.2 4.3-60.9 40.9-87.9 75.3-87.5 46.9-.2 71.8 31.8 78.2 78.3zM448 88v336c0 30.9-25.1 56-56 56H56c-30.9 0-56-25.1-56-56V88c0-30.9 25.1-56 56-56h336c30.9 0 56 25.1 56 56zM330 313.2s-.1-34-.1-217.3h-29v40.3c-.8.3-1.2-.5-1.6-1.2-9.6-20.7-35.9-46.3-76-46-51.9.4-87.2 31.2-100.6 77.8-4.3 14.9-5.8 30.1-5.5 45.6 1.7 77.9 45.1 117.8 112.4 115.2 28.9-1.1 54.5-17 69-45.2.5-1 1.1-1.9 1.7-2.9.2.1.4.1.6.2.3 3.8.2 30.7.1 34.5-.2 14.8-2 29.5-7.2 43.5-7.8 21-22.3 34.7-44.5 39.5-17.8 3.9-35.6 3.8-53.2-1.2-21.5-6.1-36.5-19-41.1-41.8-.3-1.6-1.3-1.3-2.3-1.3h-26.8c.8 10.6 3.2 20.3 8.5 29.2 24.2 40.5 82.7 48.5 128.2 37.4 49.9-12.3 67.3-54.9 67.4-106.3z"] }; +var faGoodreadsG = { prefix: 'fab', iconName: 'goodreads-g', icon: [384, 512, [], "f3a9", "M42.6 403.3h2.8c12.7 0 25.5 0 38.2.1 1.6 0 3.1-.4 3.6 2.1 7.1 34.9 30 54.6 62.9 63.9 26.9 7.6 54.1 7.8 81.3 1.8 33.8-7.4 56-28.3 68-60.4 8-21.5 10.7-43.8 11-66.5.1-5.8.3-47-.2-52.8l-.9-.3c-.8 1.5-1.7 2.9-2.5 4.4-22.1 43.1-61.3 67.4-105.4 69.1-103 4-169.4-57-172-176.2-.5-23.7 1.8-46.9 8.3-69.7C58.3 47.7 112.3.6 191.6 0c61.3-.4 101.5 38.7 116.2 70.3.5 1.1 1.3 2.3 2.4 1.9V10.6h44.3c0 280.3.1 332.2.1 332.2-.1 78.5-26.7 143.7-103 162.2-69.5 16.9-159 4.8-196-57.2-8-13.5-11.8-28.3-13-44.5zM188.9 36.5c-52.5-.5-108.5 40.7-115 133.8-4.1 59 14.8 122.2 71.5 148.6 27.6 12.9 74.3 15 108.3-8.7 47.6-33.2 62.7-97 54.8-154-9.7-71.1-47.8-120-119.6-119.7z"] }; +var faGoogle = { prefix: 'fab', iconName: 'google', icon: [488, 512, [], "f1a0", "M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z"] }; +var faGoogleDrive = { prefix: 'fab', iconName: 'google-drive', icon: [512, 512, [], "f3aa", "M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z"] }; +var faGooglePlay = { prefix: 'fab', iconName: 'google-play', icon: [512, 512, [], "f3ab", "M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z"] }; +var faGooglePlus = { prefix: 'fab', iconName: 'google-plus', icon: [496, 512, [], "f2b3", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm-70.7 372c-68.8 0-124-55.5-124-124s55.2-124 124-124c31.3 0 60.1 11 83 32.3l-33.6 32.6c-13.2-12.9-31.3-19.1-49.4-19.1-42.9 0-77.2 35.5-77.2 78.1s34.2 78.1 77.2 78.1c32.6 0 64.9-19.1 70.1-53.3h-70.1v-42.6h116.9c1.3 6.8 1.9 13.6 1.9 20.7 0 70.8-47.5 121.2-118.8 121.2zm230.2-106.2v35.5H372v-35.5h-35.5v-35.5H372v-35.5h35.5v35.5h35.2v35.5h-35.2z"] }; +var faGooglePlusG = { prefix: 'fab', iconName: 'google-plus-g', icon: [640, 512, [], "f0d5", "M386.061 228.496c1.834 9.692 3.143 19.384 3.143 31.956C389.204 370.205 315.599 448 204.8 448c-106.084 0-192-85.915-192-192s85.916-192 192-192c51.864 0 95.083 18.859 128.611 50.292l-52.126 50.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484 0-118.92 54.221-118.92 121.277 0 67.056 53.436 121.277 118.92 121.277 75.961 0 104.513-54.745 108.965-82.773H204.8v-66.009h181.261zm185.406 6.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001h-55.733z"] }; +var faGooglePlusSquare = { prefix: 'fab', iconName: 'google-plus-square', icon: [448, 512, [], "f0d4", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM164 356c-55.3 0-100-44.7-100-100s44.7-100 100-100c27 0 49.5 9.8 67 26.2l-27.1 26.1c-7.4-7.1-20.3-15.4-39.8-15.4-34.1 0-61.9 28.2-61.9 63.2 0 34.9 27.8 63.2 61.9 63.2 39.6 0 54.4-28.5 56.8-43.1H164v-34.4h94.4c1 5 1.6 10.1 1.6 16.6 0 57.1-38.3 97.6-96 97.6zm220-81.8h-29v29h-29.2v-29h-29V245h29v-29H355v29h29v29.2z"] }; +var faGoogleWallet = { prefix: 'fab', iconName: 'google-wallet', icon: [448, 512, [], "f1ee", "M156.8 126.8c37.6 60.6 64.2 113.1 84.3 162.5-8.3 33.8-18.8 66.5-31.3 98.3-13.2-52.3-26.5-101.3-56-148.5 6.5-36.4 2.3-73.6 3-112.3zM109.3 200H16.1c-6.5 0-10.5 7.5-6.5 12.7C51.8 267 81.3 330.5 101.3 400h103.5c-16.2-69.7-38.7-133.7-82.5-193.5-3-4-8-6.5-13-6.5zm47.8-88c68.5 108 130 234.5 138.2 368H409c-12-138-68.4-265-143.2-368H157.1zm251.8-68.5c-1.8-6.8-8.2-11.5-15.2-11.5h-88.3c-5.3 0-9 5-7.8 10.3 13.2 46.5 22.3 95.5 26.5 146 48.2 86.2 79.7 178.3 90.6 270.8 15.8-60.5 25.3-133.5 25.3-203 0-73.6-12.1-145.1-31.1-212.6z"] }; +var faGratipay = { prefix: 'fab', iconName: 'gratipay', icon: [496, 512, [], "f184", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm114.6 226.4l-113 152.7-112.7-152.7c-8.7-11.9-19.1-50.4 13.6-72 28.1-18.1 54.6-4.2 68.5 11.9 15.9 17.9 46.6 16.9 61.7 0 13.9-16.1 40.4-30 68.1-11.9 32.9 21.6 22.6 60 13.8 72z"] }; +var faGrav = { prefix: 'fab', iconName: 'grav', icon: [512, 512, [], "f2d6", "M301.1 212c4.4 4.4 4.4 11.9 0 16.3l-9.7 9.7c-4.4 4.7-11.9 4.7-16.6 0l-10.5-10.5c-4.4-4.7-4.4-11.9 0-16.6l9.7-9.7c4.4-4.4 11.9-4.4 16.6 0l10.5 10.8zm-30.2-19.7c3-3 3-7.8 0-10.5-2.8-3-7.5-3-10.5 0-2.8 2.8-2.8 7.5 0 10.5 3.1 2.8 7.8 2.8 10.5 0zm-26 5.3c-3 2.8-3 7.5 0 10.2 2.8 3 7.5 3 10.5 0 2.8-2.8 2.8-7.5 0-10.2-3-3-7.7-3-10.5 0zm72.5-13.3c-19.9-14.4-33.8-43.2-11.9-68.1 21.6-24.9 40.7-17.2 59.8.8 11.9 11.3 29.3 24.9 17.2 48.2-12.5 23.5-45.1 33.2-65.1 19.1zm47.7-44.5c-8.9-10-23.3 6.9-15.5 16.1 7.4 9 32.1 2.4 15.5-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-66.2 42.6c2.5-16.1-20.2-16.6-25.2-25.7-13.6-24.1-27.7-36.8-54.5-30.4 11.6-8 23.5-6.1 23.5-6.1.3-6.4 0-13-9.4-24.9 3.9-12.5.3-22.4.3-22.4 15.5-8.6 26.8-24.4 29.1-43.2 3.6-31-18.8-59.2-49.8-62.8-22.1-2.5-43.7 7.7-54.3 25.7-23.2 40.1 1.4 70.9 22.4 81.4-14.4-1.4-34.3-11.9-40.1-34.3-6.6-25.7 2.8-49.8 8.9-61.4 0 0-4.4-5.8-8-8.9 0 0-13.8 0-24.6 5.3 11.9-15.2 25.2-14.4 25.2-14.4 0-6.4-.6-14.9-3.6-21.6-5.4-11-23.8-12.9-31.7 2.8.1-.2.3-.4.4-.5-5 11.9-1.1 55.9 16.9 87.2-2.5 1.4-9.1 6.1-13 10-21.6 9.7-56.2 60.3-56.2 60.3-28.2 10.8-77.2 50.9-70.6 79.7.3 3 1.4 5.5 3 7.5-2.8 2.2-5.5 5-8.3 8.3-11.9 13.8-5.3 35.2 17.7 24.4 15.8-7.2 29.6-20.2 36.3-30.4 0 0-5.5-5-16.3-4.4 27.7-6.6 34.3-9.4 46.2-9.1 8 3.9 8-34.3 8-34.3 0-14.7-2.2-31-11.1-41.5 12.5 12.2 29.1 32.7 28 60.6-.8 18.3-15.2 23-15.2 23-9.1 16.6-43.2 65.9-30.4 106 0 0-9.7-14.9-10.2-22.1-17.4 19.4-46.5 52.3-24.6 64.5 26.6 14.7 108.8-88.6 126.2-142.3 34.6-20.8 55.4-47.3 63.9-65 22 43.5 95.3 94.5 101.1 59z"] }; +var faGripfire = { prefix: 'fab', iconName: 'gripfire', icon: [384, 512, [], "f3ac", "M171.8 503.8c0-5.3 4.8-12.2 4.8-22.3 0-15.2-13-39.9-78.1-86.6C64.2 365.8 32 336.4 32 286.6 32 171.9 179.1 110.1 179.1 18c0-3.3-.2-6.7-.6-10 5.1 2.4 39.1 43.3 39.1 90.4 0 80.5-105.1 129.2-105.1 203 0 26.9 16.6 47.2 32.6 69.5 22.5 30.2 44.2 56.9 44.2 86.5-.1 14.5-4.4 29.7-17.5 46.4zm146-241.4c1.5 8.4 2.2 16.6 2.2 24.6 0 51.8-29.4 97.5-67.3 136.8-1 1-2.2 2.4-3.2 2.4-3.6 0-35.5-41.6-35.5-53.2 0 0 41.8-55.7 41.8-96.9 0-10.8-2.7-21.7-9.1-33.4-1.5 32.3-55.7 87.7-58.1 87.7-2.7 0-17.9-22-17.9-42.1 0-5.3 1-10.7 3.2-15.8 2.4-5.5 56.6-72 56.6-116.7 0-6.2-1-12-3.4-17.1l-4-7.2c16.7 6.5 82.6 64.1 94.7 130.9"] }; +var faGrunt = { prefix: 'fab', iconName: 'grunt', icon: [384, 512, [], "f3ad", "M61.3 189.3c-1.1 10 5.2 19.1 5.2 19.1.7-7.5 2.2-12.8 4-16.6.4 10.3 3.2 23.5 12.8 34.1 6.9 7.6 35.6 23.3 54.9 6.1 1 2.4 2.1 5.3 3 8.5 2.9 10.3-2.7 25.3-2.7 25.3s15.1-17.1 13.9-32.5c10.8-.5 21.4-8.4 21.1-19.5 0 0-18.9 10.4-35.5-8.8-9.7-11.2-40.9-42-83.1-31.8 4.3 1 8.9 2.4 13.5 4.1h-.1c-4.2 2-6.5 7.1-7 12zm28.3-1.8c19.5 11 37.4 25.7 44.9 37-5.7 3.3-21.7 10.4-38-1.7-10.3-7.6-9.8-26.2-6.9-35.3zm79.2 233.7c2.2 2.3 1.5 5.3.9 6.8-1.1 2.7-5.5 11.6-13 19.8-2.7 2.9-6.6 4.6-11 4.6-4.3 0-8.7-1.6-11.8-4.3-2.3-2.1-10.2-9.5-13.7-18.6-1.3-3.4-1-6.1.9-8.1 1.3-1.3 4-2.9 9.5-2.9H160c4.1 0 7 .9 8.8 2.7zm62.9-187.9c-1.2 15.5 13.9 32.5 13.9 32.5s-5.6-15-2.7-25.3c.9-3.2 2-6 3-8.5 19.3 17.3 48 1.5 54.8-6.1 9.6-10.6 12.3-23.8 12.8-34.1 1.8 3.8 3.4 9.1 4 16.6 0 0 6.4-9.1 5.2-19.1-.6-5-2.9-10-7-11.8h-.1c4.6-1.8 9.2-3.2 13.5-4.1-42.3-10.2-73.4 20.6-83.1 31.8-16.7 19.2-35.5 8.8-35.5 8.8-.2 10.9 10.4 18.9 21.2 19.3zm17.8-8.8c7.5-11.4 25.4-26 44.9-37 3 9.1 3.4 27.7-7 35.4-16.3 12.1-32.2 5-37.9 1.6-.1.1 0 0 0 0zM263 421.4c1.9 1.9 2.2 4.6.9 7.9-3.5 8.9-11.4 16.1-13.7 18.1-3.1 2.6-7.4 4.2-11.8 4.2s-8.3-1.6-11-4.5c-7.5-8-12-16.7-13-19.3-.6-1.5-1.3-4.4.9-6.7 1.7-1.8 4.7-2.7 8.9-2.7h29.4c5.4.1 8.1 1.7 9.4 3zm-98.3-251.5c9.9 6 18.8 8.1 27.3 8.3 8.5-.2 17.4-2.3 27.3-8.3 0 0-14.5 17.7-27.2 17.8h-.2c-12.7-.2-27.2-17.8-27.2-17.8zm184.5 147.4c-2.4 17.9-13 33.8-24.6 43.7-3.1-22.7-3.7-55.5-3.7-62.4 0-14.7 9.5-24.5 12.2-26.1 2.5-1.5 5.4-3 8.3-4.6 18-9.6 40.4-21.6 40.4-43.7 0-16.2-9.3-23.2-15.4-27.8-.8-.6-1.5-1.1-2.2-1.7-2.1-1.7-3.7-3-4.3-4.4-4.4-9.8-3.6-34.2-1.7-37.6.6-.6 16.7-20.9 11.8-39.2-2-7.4-6.9-13.3-14.1-17-5.3-2.7-11.9-4.2-19.5-4.5-.1-2-.5-3.9-.9-5.9-.6-2.6-1.1-5.3-.9-8.1.4-4.7.8-9 2.2-11.3 8.4-13.3 28.8-17.6 29-17.6l12.3-2.4-8.1-9.5c-.1-.2-17.3-17.5-46.3-17.5-7.9 0-16 1.3-24.1 3.9-24.2 7.8-42.9 30.5-49.4 39.3-3.1-1-6.3-1.9-9.6-2.7-4.2-15.8 9-38.5 9-38.5s-13.6-3-33.7 15.2c-2.6-6.5-8.1-20.5-1.8-37.2C184.6 10.1 177.2 26 175 40.4c-7.6-5.4-6.7-23.1-7.2-27.6-7.5.9-29.2 21.9-28.2 48.3-2 .5-3.9 1.1-5.9 1.7-6.5-8.8-25.1-31.5-49.4-39.3-7.9-2.2-16-3.5-23.9-3.5-29 0-46.1 17.3-46.3 17.5L6 46.9l12.3 2.4c.2 0 20.6 4.3 29 17.6 1.4 2.2 1.8 6.6 2.2 11.3.2 2.8-.4 5.5-.9 8.1-.4 1.9-.8 3.9-.9 5.9-7.7.3-14.2 1.8-19.5 4.5-7.2 3.7-12.1 9.6-14.1 17-5 18.2 11.2 38.5 11.8 39.2 1.9 3.4 2.7 27.8-1.7 37.6-.6 1.4-2.2 2.7-4.3 4.4-.7.5-1.4 1.1-2.2 1.7-6.1 4.6-15.4 11.7-15.4 27.8 0 22.1 22.4 34.1 40.4 43.7 3 1.6 5.8 3.1 8.3 4.6 2.7 1.6 12.2 11.4 12.2 26.1 0 6.9-.6 39.7-3.7 62.4-11.6-9.9-22.2-25.9-24.6-43.8 0 0-29.2 22.6-20.6 70.8 5.2 29.5 23.2 46.1 47 54.7 8.8 19.1 29.4 45.7 67.3 49.6C143 504.3 163 512 192.2 512h.2c29.1 0 49.1-7.7 63.6-19.5 37.9-3.9 58.5-30.5 67.3-49.6 23.8-8.7 41.7-25.2 47-54.7 8.2-48.4-21.1-70.9-21.1-70.9zM305.7 37.7c5.6-1.8 11.6-2.7 17.7-2.7 11 0 19.9 3 24.7 5-3.1 1.4-6.4 3.2-9.7 5.3-2.4-.4-5.6-.8-9.2-.8-10.5 0-20.5 3.1-28.7 8.9-12.3 8.7-18 16.9-20.7 22.4-2.2-1.3-4.5-2.5-7.1-3.7-1.6-.8-3.1-1.5-4.7-2.2 6.1-9.1 19.9-26.5 37.7-32.2zm21 18.2c-.8 1-1.6 2.1-2.3 3.2-3.3 5.2-3.9 11.6-4.4 17.8-.5 6.4-1.1 12.5-4.4 17-4.2.8-8.1 1.7-11.5 2.7-2.3-3.1-5.6-7-10.5-11.2 1.4-4.8 5.5-16.1 13.5-22.5 5.6-4.3 12.2-6.7 19.6-7zM45.6 45.3c-3.3-2.2-6.6-4-9.7-5.3 4.8-2 13.7-5 24.7-5 6.1 0 12 .9 17.7 2.7 17.8 5.8 31.6 23.2 37.7 32.1-1.6.7-3.2 1.4-4.8 2.2-2.5 1.2-4.9 2.5-7.1 3.7-2.6-5.4-8.3-13.7-20.7-22.4-8.3-5.8-18.2-8.9-28.8-8.9-3.4.1-6.6.5-9 .9zm44.7 40.1c-4.9 4.2-8.3 8-10.5 11.2-3.4-.9-7.3-1.9-11.5-2.7C65 89.5 64.5 83.4 64 77c-.5-6.2-1.1-12.6-4.4-17.8-.7-1.1-1.5-2.2-2.3-3.2 7.4.3 14 2.6 19.5 7 8 6.3 12.1 17.6 13.5 22.4zM58.1 259.9c-2.7-1.6-5.6-3.1-8.4-4.6-14.9-8-30.2-16.3-30.2-30.5 0-11.1 4.3-14.6 8.9-18.2l.5-.4c.7-.6 1.4-1.2 2.2-1.8-.9 7.2-1.9 13.3-2.7 14.9 0 0 12.1-15 15.7-44.3 1.4-11.5-1.1-34.3-5.1-43 .2 4.9 0 9.8-.3 14.4-.4-.8-.8-1.6-1.3-2.2-3.2-4-11.8-17.5-9.4-26.6.9-3.5 3.1-6 6.7-7.8 3.8-1.9 8.8-2.9 15.1-2.9 12.3 0 25.9 3.7 32.9 6 25.1 8 55.4 30.9 64.1 37.7.2.2.4.3.4.3l5.6 3.9-3.5-5.8c-.2-.3-19.1-31.4-53.2-46.5 2-2.9 7.4-8.1 21.6-15.1 21.4-10.5 46.5-15.8 74.3-15.8 27.9 0 52.9 5.3 74.3 15.8 14.2 6.9 19.6 12.2 21.6 15.1-34 15.1-52.9 46.2-53.1 46.5l-3.5 5.8 5.6-3.9s.2-.1.4-.3c8.7-6.8 39-29.8 64.1-37.7 7-2.2 20.6-6 32.9-6 6.3 0 11.3 1 15.1 2.9 3.5 1.8 5.7 4.4 6.7 7.8 2.5 9.1-6.1 22.6-9.4 26.6-.5.6-.9 1.3-1.3 2.2-.3-4.6-.5-9.5-.3-14.4-4 8.8-6.5 31.5-5.1 43 3.6 29.3 15.7 44.3 15.7 44.3-.8-1.6-1.8-7.7-2.7-14.9.7.6 1.5 1.2 2.2 1.8l.5.4c4.6 3.7 8.9 7.1 8.9 18.2 0 14.2-15.4 22.5-30.2 30.5-2.9 1.5-5.7 3.1-8.4 4.6-8.7 5-18 16.7-19.1 34.2-.9 14.6.9 49.9 3.4 75.9-12.4 4.8-26.7 6.4-39.7 6.8-2-4.1-3.9-8.5-5.5-13.1-.7-2-19.6-51.1-26.4-62.2 5.5 39 17.5 73.7 23.5 89.6-3.5-.5-7.3-.7-11.7-.7h-117c-4.4 0-8.3.3-11.7.7 6-15.9 18.1-50.6 23.5-89.6-6.8 11.2-25.7 60.3-26.4 62.2-1.6 4.6-3.5 9-5.5 13.1-13-.4-27.2-2-39.7-6.8 2.5-26 4.3-61.2 3.4-75.9-.9-17.4-10.3-29.2-19-34.2zM34.8 404.6c-12.1-20-8.7-54.1-3.7-59.1 10.9 34.4 47.2 44.3 74.4 45.4-2.7 4.2-5.2 7.6-7 10l-1.4 1.4c-7.2 7.8-8.6 18.5-4.1 31.8-22.7-.1-46.3-9.8-58.2-29.5zm45.7 43.5c6 1.1 12.2 1.9 18.6 2.4 3.5 8 7.4 15.9 12.3 23.1-14.4-5.9-24.4-16-30.9-25.5zM192 498.2c-60.6-.1-78.3-45.8-84.9-64.7-3.7-10.5-3.4-18.2.9-23.1 2.9-3.3 9.5-7.2 24.6-7.2h118.8c15.1 0 21.8 3.9 24.6 7.2 4.2 4.8 4.5 12.6.9 23.1-6.6 18.8-24.3 64.6-84.9 64.7zm80.6-24.6c4.9-7.2 8.8-15.1 12.3-23.1 6.4-.5 12.6-1.3 18.6-2.4-6.5 9.5-16.5 19.6-30.9 25.5zm76.6-69c-12 19.7-35.6 29.3-58.1 29.7 4.5-13.3 3.1-24.1-4.1-31.8-.4-.5-.9-1-1.4-1.5-1.8-2.4-4.3-5.8-7-10 27.2-1.2 63.5-11 74.4-45.4 5 5 8.4 39.1-3.8 59z"] }; +var faGulp = { prefix: 'fab', iconName: 'gulp', icon: [256, 512, [], "f3ae", "M209.8 391.1l-14.1 24.6-4.6 80.2c0 8.9-28.3 16.1-63.1 16.1s-63.1-7.2-63.1-16.1l-5.8-79.4-14.9-25.4c41.2 17.3 126 16.7 165.6 0zm-196-253.3l13.6 125.5c5.9-20 20.8-47 40-55.2 6.3-2.7 12.7-2.7 18.7.9 5.2 3 9.6 9.3 10.1 11.8 1.2 6.5-2 9.1-4.5 9.1-3 0-5.3-4.6-6.8-7.3-4.1-7.3-10.3-7.6-16.9-2.8-6.9 5-12.9 13.4-17.1 20.7-5.1 8.8-9.4 18.5-12 28.2-1.5 5.6-2.9 14.6-.6 19.9 1 2.2 2.5 3.6 4.9 3.6 5 0 12.3-6.6 15.8-10.1 4.5-4.5 10.3-11.5 12.5-16l5.2-15.5c2.6-6.8 9.9-5.6 9.9 0 0 10.2-3.7 13.6-10 34.7-5.8 19.5-7.6 25.8-7.6 25.8-.7 2.8-3.4 7.5-6.3 7.5-1.2 0-2.1-.4-2.6-1.2-1-1.4-.9-5.3-.8-6.3.2-3.2 6.3-22.2 7.3-25.2-2 2.2-4.1 4.4-6.4 6.6-5.4 5.1-14.1 11.8-21.5 11.8-3.4 0-5.6-.9-7.7-2.4l7.6 79.6c2 5 39.2 17.1 88.2 17.1 49.1 0 86.3-12.2 88.2-17.1l10.9-94.6c-5.7 5.2-12.3 11.6-19.6 14.8-5.4 2.3-17.4 3.8-17.4-5.7 0-5.2 9.1-14.8 14.4-21.5 1.4-1.7 4.7-5.9 4.7-8.1 0-2.9-6-2.2-11.7 2.5-3.2 2.7-6.2 6.3-8.7 9.7-4.3 6-6.6 11.2-8.5 15.5-6.2 14.2-4.1 8.6-9.1 22-5 13.3-4.2 11.8-5.2 14-.9 1.9-2.2 3.5-4 4.5-1.9 1-4.5.9-6.1-.3-.9-.6-1.3-1.9-1.3-3.7 0-.9.1-1.8.3-2.7 1.5-6.1 7.8-18.1 15-34.3 1.6-3.7 1-2.6.8-2.3-6.2 6-10.9 8.9-14.4 10.5-5.8 2.6-13 2.6-14.5-4.1-.1-.4-.1-.8-.2-1.2-11.8 9.2-24.3 11.7-20-8.1-4.6 8.2-12.6 14.9-22.4 14.9-4.1 0-7.1-1.4-8.6-5.1-2.3-5.5 1.3-14.9 4.6-23.8 1.7-4.5 4-9.9 7.1-16.2 1.6-3.4 4.2-5.4 7.6-4.5.6.2 1.1.4 1.6.7 2.6 1.8 1.6 4.5.3 7.2-3.8 7.5-7.1 13-9.3 20.8-.9 3.3-2 9 1.5 9 2.4 0 4.7-.8 6.9-2.4 4.6-3.4 8.3-8.5 11.1-13.5 2-3.6 4.4-8.3 5.6-12.3.5-1.7 1.1-3.3 1.8-4.8 1.1-2.5 2.6-5.1 5.2-5.1 1.3 0 2.4.5 3.2 1.5 1.7 2.2 1.3 4.5.4 6.9-2 5.6-4.7 10.6-6.9 16.7-1.3 3.5-2.7 8-2.7 11.7 0 3.4 3.7 2.6 6.8 1.2 2.4-1.1 4.8-2.8 6.8-4.5 1.2-4.9.9-3.8 26.4-68.2 1.3-3.3 3.7-4.7 6.1-4.7 1.2 0 2.2.4 3.2 1.1 1.7 1.3 1.7 4.1 1 6.2-.7 1.9-.6 1.3-4.5 10.5-5.2 12.1-8.6 20.8-13.2 31.9-1.9 4.6-7.7 18.9-8.7 22.3-.6 2.2-1.3 5.8 1 5.8 5.4 0 19.3-13.1 23.1-17 .2-.3.5-.4.9-.6.6-1.9 1.2-3.7 1.7-5.5 1.4-3.8 2.7-8.2 5.3-11.3.8-1 1.7-1.6 2.7-1.6 2.8 0 4.2 1.2 4.2 4 0 1.1-.7 5.1-1.1 6.2 1.4-1.5 2.9-3 4.5-4.5 15-13.9 25.7-6.8 25.7.2 0 7.4-8.9 17.7-13.8 23.4-1.6 1.9-4.9 5.4-5 6.4 0 1.3.9 1.8 2.2 1.8 2 0 6.4-3.5 8-4.7 5-3.9 11.8-9.9 16.6-14.1l14.8-136.8c-30.5 17.1-197.6 17.2-228.3.2zm229.7-8.5c0 21-231.2 21-231.2 0 0-8.8 51.8-15.9 115.6-15.9 9 0 17.8.1 26.3.4l12.6-48.7L228.1.6c1.4-1.4 5.8-.2 9.9 3.5s6.6 7.9 5.3 9.3l-.1.1L185.9 74l-10 40.7c39.9 2.6 67.6 8.1 67.6 14.6zm-69.4 4.6c0-.8-.9-1.5-2.5-2.1l-.2.8c0 1.3-5 2.4-11.1 2.4s-11.1-1.1-11.1-2.4c0-.1 0-.2.1-.3l.2-.7c-1.8.6-3 1.4-3 2.3 0 2.1 6.2 3.7 13.7 3.7 7.7.1 13.9-1.6 13.9-3.7z"] }; +var faHackerNews = { prefix: 'fab', iconName: 'hacker-news', icon: [448, 512, [], "f1d4", "M0 32v448h448V32H0zm21.2 197.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z"] }; +var faHackerNewsSquare = { prefix: 'fab', iconName: 'hacker-news-square', icon: [448, 512, [], "f3af", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM21.2 229.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z"] }; +var faHips = { prefix: 'fab', iconName: 'hips', icon: [640, 512, [], "f452", "M0 80.2c0-1.8.9-2.7 2.7-2.7h40.9c1.9 0 2.8.9 2.8 2.7v81.2c15.2-7.7 31.7-11.5 49.8-11.4 24 .1 44.2 6.2 60.3 18 18.7 13.5 28 31.9 28 55.3v136.1c0 1.9-.9 2.8-2.7 2.8h-27.3c-9.1 0-16.4-7.3-16.4-16.3V223.3c0-.9 2.7-27-45.8-27-48.6 0-45.8 26.2-45.8 27v136.1c0 1.9-.9 2.8-2.8 2.8h-41c-1.8 0-2.7-.9-2.7-2.8V80.2zm497.7 221.5c13.7 10.2 34.1 19.1 58.4 19.1 23.3 0 32.8-4.5 36.5-13.6 3-7.9-.6-16.1-12.2-21.2l-53.6-23.5c-21.4-9.4-33.8-24-37.2-43.6-5.7-33.7 22.2-53.3 22.7-53.7 13.2-9.6 32-15.4 58.5-15.4 19 0 37.4 3.3 55.1 9.9 1.3.5 1.9 1.3 1.9 2.6V207c0 2.1-2.3 3.4-4 2.4-39.7-20.7-76.6-12.3-84-6.8-6.6 4.9-6 12.5 2.6 16.1L600 244c16.5 7.1 28.1 18.4 34.9 34.1 5.5 12.6 6.6 25.6 3.1 39.1-9.6 36.9-44.9 45.5-45.6 45.8-10.5 3.1-23.6 4.3-36.3 4.3-16.6 0-32.6-2.7-48.2-8.2-9.7-3.4-14.6-10.3-14.6-20.7V304c0-2.1 2.3-3.7 4.4-2.3zM376.2 149.8c-31.7 0-104.2 20.1-104.2 103.5v183.5c0 .8.6 2.7 2.7 2.7h40.9c1.9 0 2.8-.9 2.8-2.7V348c16.5 12.7 35.8 19.1 57.7 19.1 60.5 0 108.7-48.5 108.7-108.7.1-60.3-48.2-108.6-108.6-108.6zm0 170.9c-17.2 0-31.9-6.1-44-18.2-12.2-12.2-18.2-26.8-18.2-44 0-34.5 27.6-62.2 62.2-62.2 34.5 0 62.2 27.6 62.2 62.2.1 34.3-27.3 62.2-62.2 62.2zm-124.6 38.7c0 1.9-.9 2.8-2.8 2.8h-40.9c-1.6 0-2.7-1.4-2.7-2.8V157.6c0-1.4 1.1-2.8 2.7-2.8h40.9c1.9 0 2.8.9 2.8 2.8v201.8M228.3 72.5c15.9 0 28.9 12.7 28.9 28.9 0 15.8-12.7 28.9-28.9 28.9s-28.9-13.3-28.9-28.9c.1-16 13-28.9 28.9-28.9"] }; +var faHireAHelper = { prefix: 'fab', iconName: 'hire-a-helper', icon: [512, 512, [], "f3b0", "M443.1 0H71.9C67.9 37.3 37.4 67.8 0 71.7v371.5c37.4 4.9 66 32.4 71.9 68.8h372.2c3-36.4 32.5-65.8 67.9-69.8V71.7c-36.4-5.9-65-35.3-68.9-71.7zm-37 404.9c-36.3 0-18.8-2-55.1-2-35.8 0-21 2-56.1 2-5.9 0-4.9-8.2 0-9.8 22.8-7.6 22.9-10.2 24.6-12.8 10.4-15.6 5.9-83 5.9-113 0-5.3-6.4-12.8-13.8-12.8H200.4c-7.4 0-13.8 7.5-13.8 12.8 0 30-4.5 97.4 5.9 113 1.7 2.5 1.8 5.2 24.6 12.8 4.9 1.6 6 9.8 0 9.8-35.1 0-20.3-2-56.1-2-36.3 0-18.8 2-55.1 2-7.9 0-5.8-10.8 0-10.8 10.2-3.4 13.5-3.5 21.7-13.8 7.7-12.9 7.9-44.4 7.9-127.8V151.3c0-22.2-12.2-28.3-28.6-32.4-8.8-2.2-4-11.8 1-11.8 36.5 0 20.6 2 57.1 2 32.7 0 16.5-2 49.2-2 3.3 0 8.5 8.3 1 10.8-4.9 1.6-27.6 3.7-27.6 39.3 0 45.6-.2 55.8 1 68.8 0 1.3 2.3 12.8 12.8 12.8h109.2c10.5 0 12.8-11.5 12.8-12.8 1.2-13 1-23.2 1-68.8 0-35.6-22.7-37.7-27.6-39.3-7.5-2.5-2.3-10.8 1-10.8 32.7 0 16.5 2 49.2 2 36.5 0 20.6-2 57.1-2 4.9 0 9.9 9.6 1 11.8-16.4 4.1-28.6 10.3-28.6 32.4v101.2c0 83.4.1 114.9 7.9 127.8 8.2 10.2 11.4 10.4 21.7 13.8 5.8 0 7.8 10.8 0 10.8z"] }; +var faHooli = { prefix: 'fab', iconName: 'hooli', icon: [640, 512, [], "f427", "M508.4 352h57.9V156.7L508.4 184v168zm73.7-110.5V352H640V241.5h-57.9zm-250.7-8.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.2-1.1-50.4 17.1c-1.9 1.9-3.7 3.9-5.3 6-38.2-29.6-72.5-46.5-102.1-61.1v-20.7l-22.5 10.6c-54.4-22.1-89-18.2-97.3.1 0 0-24.9 32.8 61.9 110.9v-31c-48.8-54.6-39-76.1-35.3-79.2 13.5-11.4 37.5-8 64.4 2.1L65.2 184v63.3c13.1 14.7 30.5 31.5 53.5 50.4l4.5 3.6v-29.8c0-6.9 1.7-18.2 10.8-18.2s10.6 6.9 10.6 15V317c18 12.2 37.3 22.1 57.7 29.6v-93.9c0-18.7-13.4-37.4-40.6-37.4-15.8-.1-30.5 8.2-38.5 21.9v-54.3c41.9 20.9 83.9 46.5 99.9 58.3-10.2 14.6-9.3 28.1-9.3 43.7 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.7-33.8 16.7-52.5 0-18.5 1.5-34.2-16.7-52.3zm-39.7 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm185.7-71.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.3-1.1-50.4 17.1c-18.2 18.2-16.8 33.9-16.8 52.6 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.8-33.8 16.8-52.5-.1-18.8 1.3-34.5-16.8-52.6zm-39.8 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm173.5-73c15.9 0 28.9-12.9 28.9-28.9s-12.9-24.5-28.9-24.5c-15.9 0-28.9 8.6-28.9 24.5s12.9 28.9 28.9 28.9zM144.5 352l38.3.8c-13.2-4.6-26-10.2-38.3-16.8v16zm-21.4 0v-28.6c-6.5-4.2-13-8.7-19.4-13.6-14.8-11.2-27.5-21.7-38.5-31.5V352h57.9zm59.7.8c36.5 12.5 69.9 14.2 94.7 7.2-19.9.2-45.8-2.6-75.3-13.3v5.3l-19.4.8z"] }; +var faHotjar = { prefix: 'fab', iconName: 'hotjar', icon: [448, 512, [], "f3b1", "M414.9 161.5C340.2 29 121.1 0 121.1 0S222.2 110.4 93 197.7C11.3 252.8-21 324.4 14 402.6c26.8 59.9 83.5 84.3 144.6 93.4-29.2-55.1-6.6-122.4-4.1-129.6 57.1 86.4 165 0 110.8-93.9 71 15.4 81.6 138.6 27.1 215.5 80.5-25.3 134.1-88.9 148.8-145.6 15.5-59.3 3.7-127.9-26.3-180.9z"] }; +var faHouzz = { prefix: 'fab', iconName: 'houzz', icon: [414, 512, [], "f27c", "M258.9 330.7H154.3V480H0V32h109.5v104.5l305.1 85.6V480H258.9V330.7z"] }; +var faHtml5 = { prefix: 'fab', iconName: 'html5', icon: [384, 512, [], "f13b", "M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z"] }; +var faHubspot = { prefix: 'fab', iconName: 'hubspot', icon: [512, 512, [], "f3b2", "M267.4 211.6c-25.1 23.7-40.8 57.3-40.8 94.6 0 29.3 9.7 56.3 26 78L203.1 434c-4.4-1.6-9.1-2.5-14-2.5-10.8 0-20.9 4.2-28.5 11.8-7.6 7.6-11.8 17.8-11.8 28.6s4.2 20.9 11.8 28.5c7.6 7.6 17.8 11.6 28.5 11.6 10.8 0 20.9-3.9 28.6-11.6 7.6-7.6 11.8-17.8 11.8-28.5 0-4.2-.6-8.2-1.9-12.1l50-50.2c22 16.9 49.4 26.9 79.3 26.9 71.9 0 130-58.3 130-130.2 0-65.2-47.7-119.2-110.2-128.7V116c17.5-7.4 28.2-23.8 28.2-42.9 0-26.1-20.9-47.9-47-47.9S311.2 47 311.2 73.1c0 19.1 10.7 35.5 28.2 42.9v61.2c-15.2 2.1-29.6 6.7-42.7 13.6-27.6-20.9-117.5-85.7-168.9-124.8 1.2-4.4 2-9 2-13.8C129.8 23.4 106.3 0 77.4 0 48.6 0 25.2 23.4 25.2 52.2c0 28.9 23.4 52.3 52.2 52.3 9.8 0 18.9-2.9 26.8-7.6l163.2 114.7zm89.5 163.6c-38.1 0-69-30.9-69-69s30.9-69 69-69 69 30.9 69 69-30.9 69-69 69z"] }; +var faImdb = { prefix: 'fab', iconName: 'imdb', icon: [448, 512, [], "f2d8", "M350.5 288.7c0 5.4 1.6 14.4-6.2 14.4-1.6 0-3-.8-3.8-2.4-2.2-5.1-1.1-44.1-1.1-44.7 0-3.8-1.1-12.7 4.9-12.7 7.3 0 6.2 7.3 6.2 12.7v32.7zM265 229.9c0-9.7 1.6-16-10.3-16v83.7c12.2.3 10.3-8.7 10.3-18.4v-49.3zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM21.3 228.8c-.1.1-.2.3-.3.4h.3v-.4zM97 192H64v127.8h33V192zm113.3 0h-43.1l-7.6 59.9c-2.7-20-5.4-40.1-8.7-59.9h-42.8v127.8h29v-84.5l12.2 84.5h20.6l11.6-86.4v86.4h28.7V192zm86.3 45.3c0-8.1.3-16.8-1.4-24.4-4.3-22.5-31.4-20.9-49-20.9h-24.6v127.8c86.1.1 75 6 75-82.5zm85.9 17.3c0-17.3-.8-30.1-22.2-30.1-8.9 0-14.9 2.7-20.9 9.2V192h-31.7v127.8h29.8l1.9-8.1c5.7 6.8 11.9 9.8 20.9 9.8 19.8 0 22.2-15.2 22.2-30.9v-36z"] }; +var faInstagram = { prefix: 'fab', iconName: 'instagram', icon: [448, 512, [], "f16d", "M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"] }; +var faInternetExplorer = { prefix: 'fab', iconName: 'internet-explorer', icon: [512, 512, [], "f26b", "M483.049 159.706c10.855-24.575 21.424-60.438 21.424-87.871 0-72.722-79.641-98.371-209.673-38.577-107.632-7.181-211.221 73.67-237.098 186.457 30.852-34.862 78.271-82.298 121.977-101.158C125.404 166.85 79.128 228.002 43.992 291.725 23.246 329.651 0 390.94 0 436.747c0 98.575 92.854 86.5 180.251 42.006 31.423 15.43 66.559 15.573 101.695 15.573 97.124 0 184.249-54.294 216.814-146.022H377.927c-52.509 88.593-196.819 52.996-196.819-47.436H509.9c6.407-43.581-1.655-95.715-26.851-141.162zM64.559 346.877c17.711 51.15 53.703 95.871 100.266 123.304-88.741 48.94-173.267 29.096-100.266-123.304zm115.977-108.873c2-55.151 50.276-94.871 103.98-94.871 53.418 0 101.981 39.72 103.981 94.871H180.536zm184.536-187.6c21.425-10.287 48.563-22.003 72.558-22.003 31.422 0 54.274 21.717 54.274 53.722 0 20.003-7.427 49.007-14.569 67.867-26.28-42.292-65.986-81.584-112.263-99.586z"] }; +var faIoxhost = { prefix: 'fab', iconName: 'ioxhost', icon: [640, 512, [], "f208", "M616 160h-67.3C511.2 70.7 422.9 8 320 8 183 8 72 119 72 256c0 16.4 1.6 32.5 4.7 48H24c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h67.3c37.5 89.3 125.8 152 228.7 152 137 0 248-111 248-248 0-16.4-1.6-32.5-4.7-48H616c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24zm-96 96c0 110.5-89.5 200-200 200-75.7 0-141.6-42-175.5-104H424c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24H125.8c-3.8-15.4-5.8-31.4-5.8-48 0-110.5 89.5-200 200-200 75.7 0 141.6 42 175.5 104H216c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h298.2c3.8 15.4 5.8 31.4 5.8 48zm-304-24h208c13.3 0 24 10.7 24 24 0 13.2-10.7 24-24 24H216c-13.3 0-24-10.7-24-24 0-13.2 10.7-24 24-24z"] }; +var faItunes = { prefix: 'fab', iconName: 'itunes', icon: [448, 512, [], "f3b4", "M223.6 80.3C129 80.3 52.5 157 52.5 251.5S129 422.8 223.6 422.8s171.2-76.7 171.2-171.2c0-94.6-76.7-171.3-171.2-171.3zm79.4 240c-3.2 13.6-13.5 21.2-27.3 23.8-12.1 2.2-22.2 2.8-31.9-5-11.8-10-12-26.4-1.4-36.8 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 3.2-3.6 2.2-2 2.2-80.8 0-5.6-2.7-7.1-8.4-6.1-4 .7-91.9 17.1-91.9 17.1-5 1.1-6.7 2.6-6.7 8.3 0 116.1.5 110.8-1.2 118.5-2.1 9-7.6 15.8-14.9 19.6-8.3 4.6-23.4 6.6-31.4 5.2-21.4-4-28.9-28.7-14.4-42.9 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 5-5.7.9-127 2.6-133.7.4-2.6 1.5-4.8 3.5-6.4 2.1-1.7 5.8-2.7 6.7-2.7 101-19 113.3-21.4 115.1-21.4 5.7-.4 9 3 9 8.7-.1 170.6.4 161.4-1 167.6zM345.2 32H102.8C45.9 32 0 77.9 0 134.8v242.4C0 434.1 45.9 480 102.8 480h242.4c57 0 102.8-45.9 102.8-102.8V134.8C448 77.9 402.1 32 345.2 32zM223.6 444c-106.3 0-192.5-86.2-192.5-192.5S117.3 59 223.6 59s192.5 86.2 192.5 192.5S329.9 444 223.6 444z"] }; +var faItunesNote = { prefix: 'fab', iconName: 'itunes-note', icon: [384, 512, [], "f3b5", "M381.9 388.2c-6.4 27.4-27.2 42.8-55.1 48-24.5 4.5-44.9 5.6-64.5-10.2-23.9-20.1-24.2-53.4-2.7-74.4 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 6.4-7.2 4.4-4.1 4.4-163.2 0-11.2-5.5-14.3-17-12.3-8.2 1.4-185.7 34.6-185.7 34.6-10.2 2.2-13.4 5.2-13.4 16.7 0 234.7 1.1 223.9-2.5 239.5-4.2 18.2-15.4 31.9-30.2 39.5-16.8 9.3-47.2 13.4-63.4 10.4-43.2-8.1-58.4-58-29.1-86.6 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 10.1-11.5 1.8-256.6 5.2-270.2.8-5.2 3-9.6 7.1-12.9 4.2-3.5 11.8-5.5 13.4-5.5 204-38.2 228.9-43.1 232.4-43.1 11.5-.8 18.1 6 18.1 17.6.2 344.5 1.1 326-1.8 338.5z"] }; +var faJava = { prefix: 'fab', iconName: 'java', icon: [377, 512, [], "f4e4", "M121.6 396s-19.6 11.4 13.9 15.2c40.6 4.6 61.3 4 106-4.5 0 0 11.8 7.4 28.2 13.8C169.5 463.4 42.9 418 121.6 396m-12.2-56.1s-21.9 16.2 11.6 19.7c43.3 4.5 77.6 4.8 136.8-6.6 0 0 8.2 8.3 21.1 12.8-121.3 35.5-256.3 2.9-169.5-25.9m103.2-95.1c24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3.1 0-175.2 43.8-91.5 140.2m132.6 192.6s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6.7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2 204.2 33.2 372.4-14.9 319.4-38.8M131 281.8s-93.1 22.1-33 30.1c25.4 3.4 76 2.6 123.1-1.3 38.5-3.2 77.2-10.2 77.2-10.2s-13.6 5.8-23.4 12.5c-94.5 24.9-277 13.3-224.5-12.1 44.5-21.4 80.6-19 80.6-19m167 93.3c96.1-49.9 51.6-97.9 20.6-91.4-7.6 1.6-11 3-11 3s2.8-4.4 8.2-6.3c61.3-21.6 108.5 63.6-19.8 97.3 0-.1 1.5-1.4 2-2.6M240 0s53.2 53.2-50.5 135c-83.1 65.6-19 103.1 0 145.8-48.5-43.8-84.1-82.3-60.2-118.2C164.4 110.1 261.5 84.5 240 0m-99.5 510.4c92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6"] }; +var faJediOrder = { prefix: 'fab', iconName: 'jedi-order', icon: [448, 512, [], "f50e", "M231.89 335.72l31.44-45.89-20.18 55.5 62.56 9.09-62.56 9.08 24.22 47.43s-30.22-31.77-34.49-36.25c1.76 68.78 2.19 85.7 2.19 85.7s154.4-71.65 68.62-230.09c0 0 106.97-118.07 10.09-190.73 0 0 165.5 99.91 60.55 271.46 0 0 86.78-84.77 41.37-170.54 0 0 78.71 111.01-17.16 233.11 0 0 26.24-16.15 49.45-77.71 0 0-16.93 183.26-221.96 185.66v.02h-4.08v-.02C16.93 479.14 0 295.88 0 295.88c23.21 61.56 49.44 77.71 49.44 77.71-95.87-122.11-17.15-233.11-17.15-233.11-45.41 85.78 41.38 170.54 41.38 170.54-104.95-171.56 60.54-271.46 60.54-271.46-96.88 72.66 10.09 190.73 10.09 190.73-85.78 158.44 68.62 230.09 68.62 230.09s.43-16.93 2.19-85.7l-34.48 36.25 24.22-47.43-62.56-9.08 62.56-9.09-20.18-55.5 31.44 45.89c2.25-87.85 7.82-305.82 7.85-306.85l.01-2.43.02 1 .03-1 .01 2.43c.05 1.72 5.61 219.2 7.86 306.85z"] }; +var faJenkins = { prefix: 'fab', iconName: 'jenkins', icon: [512, 512, [], "f3b6", "M487.1 425c-1.4-11.2-19-23.1-28.2-31.9-5.1-5-29-23.1-30.4-29.9-1.4-6.6 9.7-21.5 13.3-28.9 5.1-10.7 8.8-23.7 11.3-32.6 18.8-66.1 20.7-156.9-6.2-211.2-10.2-20.6-38.6-49-56.4-62.5-42-31.7-119.6-35.3-170.1-16.6-14.1 5.2-27.8 9.8-40.1 17.1-33.1 19.4-68.3 32.5-78.1 71.6-24.2 10.8-31.5 41.8-30.3 77.8.2 7 4.1 15.8 2.7 22.4-.7 3.3-5.2 7.6-6.1 9.8-11.6 27.7-2.3 64 11.1 83.7 8.1 11.9 21.5 22.4 39.2 25.2.7 10.6 3.3 19.7 8.2 30.4 3.1 6.8 14.7 19 10.4 27.7-2.2 4.4-21 13.8-27.3 17.6C89 407.2 73.7 415 54.2 429c-12.6 9-32.3 10.2-29.2 31.1 2.1 14.1 10.1 31.6 14.7 45.8.7 2 1.4 4.1 2.1 6h422c4.9-15.3 9.7-30.9 14.6-47.2 3.4-11.4 10.2-27.8 8.7-39.7zM205.9 33.7c1.8-.5 3.4.7 4.9 2.4-.2 5.2-5.4 5.1-8.9 6.8-5.4 6.7-13.4 9.8-20 17.2-6.8 7.5-14.4 27.7-23.4 30-4.5 1.1-9.7-.8-13.6-.5-10.4.7-17.7 6-28.3 7.5 13.6-29.9 56.1-54 89.3-63.4zm-104.8 93.6c13.5-14.9 32.1-24.1 54.8-25.9 11.7 29.7-8.4 65-.9 97.6 2.3 9.9 10.2 25.4-2.4 25.7.3-28.3-34.8-46.3-61.3-29.6-1.8-21.5-4.9-51.7 9.8-67.8zm36.7 200.2c-1-4.1-2.7-12.9-2.3-15.1 1.6-8.7 17.1-12.5 11-24.7-11.3-.1-13.8 10.2-24.1 11.3-26.7 2.6-45.6-35.4-44.4-58.4 1-19.5 17.6-38.2 40.1-35.8 16 1.8 21.4 19.2 24.5 34.7 9.2.5 22.5-.4 26.9-7.6-.6-17.5-8.8-31.6-8.2-47.7 1-30.3 17.5-57.6 4.8-87.4 13.6-30.9 53.5-55.3 83.1-70 36.6-18.3 94.9-3.7 129.3 15.8 19.7 11.1 34.4 32.7 48.3 50.7-19.5-5.8-36.1 4.2-33.1 20.3 16.3-14.9 44.2-.2 52.5 16.4 7.9 15.8 7.8 39.3 9 62.8 2.9 57-10.4 115.9-39.1 157.1-7.7 11-14.1 23-24.9 30.6-26 18.2-65.4 34.7-99.2 23.4-44.7-15-65-44.8-89.5-78.8.7 18.7 13.8 34.1 26.8 48.4 11.3 12.5 25 26.6 39.7 32.4-12.3-2.9-31.1-3.8-36.2 7.2-28.6-1.9-55.1-4.8-68.7-24.2-10.6-15.4-21.4-41.4-26.3-61.4zm222 124.1c4.1-3 11.1-2.9 17.4-3.6-5.4-2.7-13-3.7-19.3-2.2-.1-4.2-2-6.8-3.2-10.2 10.6-3.8 35.5-28.5 49.6-20.3 6.7 3.9 9.5 26.2 10.1 37 .4 9-.8 18-4.5 22.8-18.8-.6-35.8-2.8-50.7-7 .9-6.1-1-12.1.6-16.5zm-17.2-20c-16.8.8-26-1.2-38.3-10.8.2-.8 1.4-.5 1.5-1.4 18 8 40.8-3.3 59-4.9-7.9 5.1-14.6 11.6-22.2 17.1zm-12.1 33.2c-1.6-9.4-3.5-12-2.8-20.2 25-16.6 29.7 28.6 2.8 20.2zM226 438.6c-11.6-.7-48.1-14-38.5-23.7 9.4 6.5 27.5 4.9 41.3 7.3.8 4.4-2.8 10.2-2.8 16.4zM57.7 497.1c-4.3-12.7-9.2-25.1-14.8-36.9 30.8-23.8 65.3-48.9 102.2-63.5 2.8-1.1 23.2 25.4 26.2 27.6 16.5 11.7 37 21 56.2 30.2 1.2 8.8 3.9 20.2 8.7 35.5.7 2.3 1.4 4.7 2.2 7.2H57.7zm240.6 5.7h-.8c.3-.2.5-.4.8-.5v.5zm7.5-5.7c2.1-1.4 4.3-2.8 6.4-4.3 1.1 1.4 2.2 2.8 3.2 4.3h-9.6zm15.1-24.7c-10.8 7.3-20.6 18.3-33.3 25.2-6 3.3-27 11.7-33.4 10.2-3.6-.8-3.9-5.3-5.4-9.5-3.1-9-10.1-23.4-10.8-37-.8-17.2-2.5-46 16-42.4 14.9 2.9 32.3 9.7 43.9 16.1 7.1 3.9 11.1 8.6 21.9 9.5-.1 1.4-.1 2.8-.2 4.3-5.9 3.9-15.3 3.8-21.8 7.1 9.5.4 17 2.7 23.5 5.9-.1 3.4-.3 7-.4 10.6zm53.4 24.7h-14c-.1-3.2-2.8-5.8-6.1-5.8s-5.9 2.6-6.1 5.8h-17.4c-2.8-4.4-5.7-8.6-8.9-12.5 2.1-2.2 4-4.7 6-6.9 9 3.7 14.8-4.9 21.7-4.2 7.9.8 14.2 11.7 25.4 11l-.6 12.6zm8.7 0c.2-4 .4-7.8.6-11.5 15.6-7.3 29 1.3 35.7 11.5H383zm83.4-37c-2.3 11.2-5.8 24-9.9 37.1-.2-.1-.4-.1-.6-.1H428c.6-1.1 1.2-2.2 1.9-3.3-2.6-6.1-9-8.7-10.9-15.5 12.1-22.7 6.5-93.4-24.2-78.5 4.3-6.3 15.6-11.5 20.8-19.3 13 10.4 20.8 20.3 33.2 31.4 6.8 6 20 13.3 21.4 23.1.8 5.5-2.6 18.9-3.8 25.1zM222.2 130.5c5.4-14.9 27.2-34.7 45-32 7.7 1.2 18 8.2 12.2 17.7-30.2-7-45.2 12.6-54.4 33.1-8.1-2-4.9-13.1-2.8-18.8zm184.1 63.1c8.2-3.6 22.4-.7 29.6-5.3-4.2-11.5-10.3-21.4-9.3-37.7.5 0 1 0 1.4.1 6.8 14.2 12.7 29.2 21.4 41.7-5.7 13.5-43.6 25.4-43.1 1.2zm20.4-43zm-117.2 45.7c-6.8-10.9-19-32.5-14.5-45.3 6.5 11.9 8.6 24.4 17.8 33.3 4.1 4 12.2 9 8.2 20.2-.9 2.7-7.8 8.6-11.7 9.7-14.4 4.3-47.9.9-36.6-17.1 11.9.7 27.9 7.8 36.8-.8zm27.3 70c3.8 6.6 1.4 18.7 12.1 20.6 20.2 3.4 43.6-12.3 58.1-17.8 9-15.2-.8-20.7-8.9-30.5-16.6-20-38.8-44.8-38-74.7 6.7-4.9 7.3 7.4 8.2 9.7 8.7 20.3 30.4 46.2 46.3 63.5 3.9 4.3 10.3 8.4 11 11.2 2.1 8.2-5.4 18-4.5 23.5-21.7 13.9-45.8 29.1-81.4 25.6-7.4-6.7-10.3-21.4-2.9-31.1zm-201.3-9.2c-6.8-3.9-8.4-21-16.4-21.4-11.4-.7-9.3 22.2-9.3 35.5-7.8-7.1-9.2-29.1-3.5-40.3-6.6-3.2-9.5 3.6-13.1 5.9 4.7-34.1 49.8-15.8 42.3 20.3zm299.6 28.8c-10.1 19.2-24.4 40.4-54 41-.6-6.2-1.1-15.6 0-19.4 22.7-2.2 36.6-13.7 54-21.6zm-141.9 12.4c18.9 9.9 53.6 11 79.3 10.2 1.4 5.6 1.3 12.6 1.4 19.4-33 1.8-72-6.4-80.7-29.6zm92.2 46.7c-1.7 4.3-5.3 9.3-9.8 11.1-12.1 4.9-45.6 8.7-62.4-.3-10.7-5.7-17.5-18.5-23.4-26-2.8-3.6-16.9-12.9-.2-12.9 13.1 32.7 58 29 95.8 28.1z"] }; +var faJoget = { prefix: 'fab', iconName: 'joget', icon: [496, 512, [], "f3b7", "M227.5 468.7c-9-13.6-19.9-33.3-23.7-42.4-5.7-13.7-27.2-45.6 31.2-67.1 51.7-19.1 176.7-16.5 208.8-17.6-4 9-8.6 17.9-13.9 26.6-40.4 65.5-110.4 101.5-182 101.5-6.8 0-13.6-.4-20.4-1M66.1 143.9C128 43.4 259.6 12.2 360.1 74.1c74.8 46.1 111.2 130.9 99.3 212.7-24.9-.5-179.3-3.6-230.3-4.9-55.5-1.4-81.7-20.8-58.5-48.2 23.2-27.4 51.1-40.7 68.9-51.2 17.9-10.5 27.3-33.7-23.6-29.7C87.3 161.5 48.6 252.1 37.6 293c-8.8-49.7-.1-102.7 28.5-149.1m-29.2-18c-71.9 116.6-35.6 269.3 81 341.2 116.6 71.9 269.3 35.6 341.2-80.9 71.9-116.6 35.6-269.4-81-341.2-40.5-25.1-85.5-37-129.9-37C165 8 83.8 49.9 36.9 125.9m244.4 110.4c-31.5 20.5-65.3 31.3-65.3 31.3l169.5-1.6 46.5-23.4s3.6-9.5-19.1-15.5c-22.7-6-57 11.3-86.7 27.2-29.7 15.8-31.1 8.2-31.1 8.2s40.2-28.1 50.7-34.5c10.5-6.4 31.9-14 13.4-24.6-3.2-1.8-6.7-2.7-10.4-2.7-17.8 0-41.5 18.7-67.5 35.6"] }; +var faJoomla = { prefix: 'fab', iconName: 'joomla', icon: [448, 512, [], "f1aa", "M.6 92.1C.6 58.8 27.4 32 60.4 32c30 0 54.5 21.9 59.2 50.2 32.6-7.6 67.1.6 96.5 30l-44.3 44.3c-20.5-20.5-42.6-16.3-55.4-3.5-14.3 14.3-14.3 37.9 0 52.2l99.5 99.5-44 44.3c-87.7-87.2-49.7-49.7-99.8-99.7-26.8-26.5-35-64.8-24.8-98.9C20.4 144.6.6 120.7.6 92.1zm129.5 116.4l44.3 44.3c10-10 89.7-89.7 99.7-99.8 14.3-14.3 37.6-14.3 51.9 0 12.8 12.8 17 35-3.5 55.4l44 44.3c31.2-31.2 38.5-67.6 28.9-101.2 29.2-4.1 51.9-29.2 51.9-59.5 0-33.2-26.8-60.1-59.8-60.1-30.3 0-55.4 22.5-59.5 51.6-33.8-9.9-71.7-1.5-98.3 25.1-18.3 19.1-71.1 71.5-99.6 99.9zm266.3 152.2c8.2-32.7-.9-68.5-26.3-93.9-11.8-12.2 5 4.7-99.5-99.7l-44.3 44.3 99.7 99.7c14.3 14.3 14.3 37.6 0 51.9-12.8 12.8-35 17-55.4-3.5l-44 44.3c27.6 30.2 68 38.8 102.7 28 5.5 27.4 29.7 48.1 58.9 48.1 33 0 59.8-26.8 59.8-60.1 0-30.2-22.5-55-51.6-59.1zm-84.3-53.1l-44-44.3c-87 86.4-50.4 50.4-99.7 99.8-14.3 14.3-37.6 14.3-51.9 0-13.1-13.4-16.9-35.3 3.2-55.4l-44-44.3c-30.2 30.2-38 65.2-29.5 98.3-26.7 6-46.2 29.9-46.2 58.2C0 453.2 26.8 480 59.8 480c28.6 0 52.5-19.8 58.6-46.7 32.7 8.2 68.5-.6 94.2-26 32.1-32 12.2-12.4 99.5-99.7z"] }; +var faJs = { prefix: 'fab', iconName: 'js', icon: [448, 512, [], "f3b8", "M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"] }; +var faJsSquare = { prefix: 'fab', iconName: 'js-square', icon: [448, 512, [], "f3b9", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM243.8 381.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"] }; +var faJsfiddle = { prefix: 'fab', iconName: 'jsfiddle', icon: [576, 512, [], "f1cc", "M510.634 237.462c-4.727-2.621-5.664-5.748-6.381-10.776-2.352-16.488-3.539-33.619-9.097-49.095-35.895-99.957-153.99-143.386-246.849-91.646-27.37 15.25-48.971 36.369-65.493 63.903-3.184-1.508-5.458-2.71-7.824-3.686-30.102-12.421-59.049-10.121-85.331 9.167-25.531 18.737-36.422 44.548-32.676 76.408.355 3.025-1.967 7.621-4.514 9.545-39.712 29.992-56.031 78.065-41.902 124.615 13.831 45.569 57.514 79.796 105.608 81.433 30.291 1.031 60.637.546 90.959.539 84.041-.021 168.09.531 252.12-.48 52.664-.634 96.108-36.873 108.212-87.293 11.54-48.074-11.144-97.3-56.832-122.634zm21.107 156.88c-18.23 22.432-42.343 35.253-71.28 35.65-56.874.781-113.767.23-170.652.23 0 .7-163.028.159-163.728.154-43.861-.332-76.739-19.766-95.175-59.995-18.902-41.245-4.004-90.848 34.186-116.106 9.182-6.073 12.505-11.566 10.096-23.136-5.49-26.361 4.453-47.956 26.42-62.981 22.987-15.723 47.422-16.146 72.034-3.083 10.269 5.45 14.607 11.564 22.198-2.527 14.222-26.399 34.557-46.727 60.671-61.294 97.46-54.366 228.37 7.568 230.24 132.697.122 8.15 2.412 12.428 9.848 15.894 57.56 26.829 74.456 96.122 35.142 144.497zm-87.789-80.499c-5.848 31.157-34.622 55.096-66.666 55.095-16.953-.001-32.058-6.545-44.079-17.705-27.697-25.713-71.141-74.98-95.937-93.387-20.056-14.888-41.99-12.333-60.272 3.782-49.996 44.071 15.859 121.775 67.063 77.188 4.548-3.96 7.84-9.543 12.744-12.844 8.184-5.509 20.766-.884 13.168 10.622-17.358 26.284-49.33 38.197-78.863 29.301-28.897-8.704-48.84-35.968-48.626-70.179 1.225-22.485 12.364-43.06 35.414-55.965 22.575-12.638 46.369-13.146 66.991 2.474C295.68 280.7 320.467 323.97 352.185 343.47c24.558 15.099 54.254 7.363 68.823-17.506 28.83-49.209-34.592-105.016-78.868-63.46-3.989 3.744-6.917 8.932-11.41 11.72-10.975 6.811-17.333-4.113-12.809-10.353 20.703-28.554 50.464-40.44 83.271-28.214 31.429 11.714 49.108 44.366 42.76 78.186z"] }; +var faKeybase = { prefix: 'fab', iconName: 'keybase', icon: [412, 512, [], "f4f5", "M177.2 430.9c0 9.8-8 17.8-17.8 17.8s-17.8-8-17.8-17.8 8-17.8 17.8-17.8c9.8-.1 17.8 7.9 17.8 17.8zM270 413c-9.8 0-17.8 8-17.8 17.8s8 17.8 17.8 17.8 17.8-8 17.8-17.8-8-17.8-17.8-17.8zm142.3-36c0 38.9-7.6 73.9-22.2 103h-27.3c23.5-38.7 30.5-94.8 22.4-134.3-16.1 29.5-52.1 38.6-85.9 28.8-127.8-37.5-192.5 19.7-234.6 50.3l18.9-59.3-39.9 42.3c4.8 26.7 15.7 51.3 31.2 72.3H46.1c-9.7-15.8-17.2-33-22.2-51.3L.1 454c0-74.9-5.5-147.6 61.5-215.2 20.2-20.4 43.7-36.2 69.1-46.7-6.8-13.5-9.5-29.2-7.8-46l-19.9-1.2c-17.9-1.1-31.6-16.5-30.6-34.4v-.1L74 84.2c1.1-17.1 15.4-30.6 32.5-30.6 1.3 0-.3-.1 28.2 1.7 13.9.8 21.5 9.8 22.8 11.4 7.1-10.4 14.5-20.5 24.6-34.5l20.6 12.1c-13.6 29-9.1 36.2-9 36.3 3.9 0 13.9-.5 32.4 5.7C246 92.9 262 107 271 126c.4.9 15.5 29 1.2 62.6 19 6.1 51.3 19.9 82.4 51.8 36.6 37.6 57.7 87.4 57.7 136.6zM128 122.3c3.2-10 7.7-19.7 13.1-29.4.1-2 2.2-13.1-7.8-13.8-28.5-1.8-26.3-1.6-26.7-1.6-4.6 0-8.3 3.5-8.6 8.1l-1.6 26.2c-.3 4.7 3.4 8.8 8.1 9.1l23.5 1.4zm25.8 61.8c5.6 9.4 14.1 16.1 22.3 20 0-21.2 28.5-41.9 52.8-17.5l8.4 10.3c20.8-18.8 19.4-45.3 12.1-60.9-13.8-29.1-46.9-32-54.3-31.7-10.3.4-19.7-5.4-23.7-15.3-13.7 21.2-37.2 62.5-17.6 95.1zm82.9 68.4L217 268.6c-1.9 1.6-2.2 4.4-.6 6.3l8.9 10.9c1 1.2 3.8 2.7 6.3.6l19.6-16 5.5 6.8c4.9 6 13.8-1.4 9-7.3-63.6-78.3-41.5-51.1-55.3-68.1-4.7-6-13.9 1.4-9 7.3 1.9 2.3 18.4 22.6 19.8 24.3l-9.6 7.9c-4.6 3.8 2.6 13.3 7.4 9.4l9.7-8 8 9.8zm118.4 25.7c-16.9-23.7-42.6-46.7-73.4-60.4-7.9-3.5-15-6.1-22.9-8.6-2 2.2-4.1 4.3-6.4 6.2l31.9 39.2c10.4 12.7 8.5 31.5-4.2 41.9-1.3 1.1-13.1 10.7-29 4.9-2.9 2.3-10.1 9.9-22.2 9.9-8.6 0-16.6-3.8-22.1-10.5l-8.9-10.9c-6.3-7.8-7.9-17.9-5-26.8-8.2-9.9-8.3-21.3-4.6-30-7.2-1.3-26.7-6.2-42.7-21.4-55.8 20.7-88 64.4-101.3 91.2-14.9 30.2-18.8 60.9-19.9 90.2 8.2-8.7-3.9 4.1 114-120.9l-29.9 93.6c57.8-31.1 124-36 197.4-14.4 23.6 6.9 45.1 1.6 56-13.9 11.1-15.6 8.5-37.7-6.8-59.3zM110.6 107.3l15.6 1 1-15.6-15.6-1-1 15.6z"] }; +var faKeycdn = { prefix: 'fab', iconName: 'keycdn', icon: [512, 512, [], "f3ba", "M63.8 409.3l60.5-59c32.1 42.8 71.1 66 126.6 67.4 30.5.7 60.3-7 86.4-22.4 5.1 5.3 18.5 19.5 20.9 22-32.2 20.7-69.6 31.1-108.1 30.2-43.3-1.1-84.6-16.7-117.7-44.4.3-.6-38.2 37.5-38.6 37.9 9.5 29.8-13.1 62.4-46.3 62.4C20.7 503.3 0 481.7 0 454.9c0-34.3 33.1-56.6 63.8-45.6zm354.9-252.4c19.1 31.3 29.6 67.4 28.7 104-1.1 44.8-19 87.5-48.6 121 .3.3 23.8 25.2 24.1 25.5 9.6-1.3 19.2 2 25.9 9.1 11.3 12 10.9 30.9-1.1 42.4-12 11.3-30.9 10.9-42.4-1.1-6.7-7-9.4-16.8-7.6-26.3-24.9-26.6-44.4-47.2-44.4-47.2 42.7-34.1 63.3-79.6 64.4-124.2.7-28.9-7.2-57.2-21.1-82.2l22.1-21zM104 53.1c6.7 7 9.4 16.8 7.6 26.3l45.9 48.1c-4.7 3.8-13.3 10.4-22.8 21.3-25.4 28.5-39.6 64.8-40.7 102.9-.7 28.9 6.1 57.2 20 82.4l-22 21.5C72.7 324 63.1 287.9 64.2 250.9c1-44.6 18.3-87.6 47.5-121.1l-25.3-26.4c-9.6 1.3-19.2-2-25.9-9.1-11.3-12-10.9-30.9 1.1-42.4C73.5 40.7 92.2 41 104 53.1zM464.9 8c26 0 47.1 22.4 47.1 48.3S490.9 104 464.9 104c-6.3.1-14-1.1-15.9-1.8l-62.9 59.7c-32.7-43.6-76.7-65.9-126.9-67.2-30.5-.7-60.3 6.8-86.2 22.4l-21.1-22C184.1 74.3 221.5 64 260 64.9c43.3 1.1 84.6 16.7 117.7 44.6l41.1-38.6c-1.5-4.7-2.2-9.6-2.2-14.5C416.5 29.7 438.9 8 464.9 8zM256.7 113.4c5.5 0 10.9.4 16.4 1.1 78.1 9.8 133.4 81.1 123.8 159.1-9.8 78.1-81.1 133.4-159.1 123.8-78.1-9.8-133.4-81.1-123.8-159.2 9.3-72.4 70.1-124.6 142.7-124.8zm-59 119.4c.6 22.7 12.2 41.8 32.4 52.2l-11 51.7h73.7l-11-51.7c20.1-10.9 32.1-29 32.4-52.2-.4-32.8-25.8-57.5-58.3-58.3-32.1.8-57.3 24.8-58.2 58.3zM256 160"] }; +var faKickstarter = { prefix: 'fab', iconName: 'kickstarter', icon: [448, 512, [], "f3bb", "M400 480H48c-26.4 0-48-21.6-48-48V80c0-26.4 21.6-48 48-48h352c26.4 0 48 21.6 48 48v352c0 26.4-21.6 48-48 48zM199.6 178.5c0-30.7-17.6-45.1-39.7-45.1-25.8 0-40 19.8-40 44.5v154.8c0 25.8 13.7 45.6 40.5 45.6 21.5 0 39.2-14 39.2-45.6v-41.8l60.6 75.7c12.3 14.9 39 16.8 55.8 0 14.6-15.1 14.8-36.8 4-50.4l-49.1-62.8 40.5-58.7c9.4-13.5 9.5-34.5-5.6-49.1-16.4-15.9-44.6-17.3-61.4 7l-44.8 64.7v-38.8z"] }; +var faKickstarterK = { prefix: 'fab', iconName: 'kickstarter-k', icon: [384, 512, [], "f3bc", "M147.3 114.4c0-56.2-32.5-82.4-73.4-82.4C26.2 32 0 68.2 0 113.4v283c0 47.3 25.3 83.4 74.9 83.4 39.8 0 72.4-25.6 72.4-83.4v-76.5l112.1 138.3c22.7 27.2 72.1 30.7 103.2 0 27-27.6 27.3-67.4 7.4-92.2l-90.8-114.8 74.9-107.4c17.4-24.7 17.5-63.1-10.4-89.8-30.3-29-82.4-31.6-113.6 12.8L147.3 185v-70.6z"] }; +var faKorvue = { prefix: 'fab', iconName: 'korvue', icon: [446, 512, [], "f42f", "M386.5 34h-327C26.8 34 0 60.8 0 93.5v327.1C0 453.2 26.8 480 59.5 480h327.1c33 0 59.5-26.8 59.5-59.5v-327C446 60.8 419.2 34 386.5 34zM87.1 120.8h96v116l61.8-116h110.9l-81.2 132H87.1v-132zm161.8 272.1l-65.7-113.6v113.6h-96V262.1h191.5l88.6 130.8H248.9z"] }; +var faLaravel = { prefix: 'fab', iconName: 'laravel', icon: [640, 512, [], "f3bd", "M637.5 241.6c-4.2-4.8-62.8-78.1-73.1-90.5-10.3-12.4-15.4-10.2-21.7-9.3-6.4.9-80.5 13.4-89.1 14.8-8.6 1.5-14 4.9-8.7 12.3 4.7 6.6 53.4 75.7 64.2 90.9l-193.7 46.4L161.2 48.7c-6.1-9.1-7.4-12.3-21.4-11.6-14 .6-120.9 9.5-128.5 10.2-7.6.6-16 4-8.4 22s129 279.6 132.4 287.2c3.4 7.6 12.2 20 32.8 15 21.1-5.1 94.3-24.2 134.3-34.7 21.1 38.3 64.2 115.9 72.2 127 10.6 14.9 18 12.4 34.3 7.4 12.8-3.9 199.6-71.1 208-74.5 8.4-3.5 13.6-5.9 7.9-14.4-4.2-6.2-53.5-72.2-79.3-106.8 17.7-4.7 80.6-21.4 87.3-23.3 7.9-2 9-5.8 4.7-10.6zm-352.2 72c-2.3.5-110.8 26.5-116.6 27.8-5.8 1.3-5.8.7-6.5-1.3-.7-2-129-266.7-130.8-270-1.8-3.3-1.7-5.9 0-5.9s102.5-9 106-9.2c3.6-.2 3.2.6 4.5 2.8 0 0 142.2 245.4 144.6 249.7 2.6 4.3 1.1 5.6-1.2 6.1zm306 57.4c1.7 2.7 3.5 4.5-2 6.4-5.4 2-183.7 62.1-187.1 63.6-3.5 1.5-6.2 2-10.6-4.5s-62.4-106.8-62.4-106.8L518 280.6c4.7-1.5 6.2-2.5 9.2 2.2 2.9 4.8 62.4 85.5 64.1 88.2zm12.1-134.1c-4.2.9-73.6 18.1-73.6 18.1l-56.7-77.8c-1.6-2.3-2.9-4.5 1.1-5s68.4-12.2 71.3-12.8c2.9-.7 5.4-1.5 9 3.4 3.6 4.9 52.6 67 54.5 69.4 1.8 2.3-1.4 3.7-5.6 4.7z"] }; +var faLastfm = { prefix: 'fab', iconName: 'lastfm', icon: [512, 512, [], "f202", "M225.8 367.1l-18.8-51s-30.5 34-76.2 34c-40.5 0-69.2-35.2-69.2-91.5 0-72.1 36.4-97.9 72.1-97.9 66.5 0 74.8 53.3 100.9 134.9 18.8 56.9 54 102.6 155.4 102.6 72.7 0 122-22.3 122-80.9 0-72.9-62.7-80.6-115-92.1-25.8-5.9-33.4-16.4-33.4-34 0-19.9 15.8-31.7 41.6-31.7 28.2 0 43.4 10.6 45.7 35.8l58.6-7c-4.7-52.8-41.1-74.5-100.9-74.5-52.8 0-104.4 19.9-104.4 83.9 0 39.9 19.4 65.1 68 76.8 44.9 10.6 79.8 13.8 79.8 45.7 0 21.7-21.1 30.5-61 30.5-59.2 0-83.9-31.1-97.9-73.9-32-96.8-43.6-163-161.3-163C45.7 113.8 0 168.3 0 261c0 89.1 45.7 137.2 127.9 137.2 66.2 0 97.9-31.1 97.9-31.1z"] }; +var faLastfmSquare = { prefix: 'fab', iconName: 'lastfm-square', icon: [448, 512, [], "f203", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-92.2 312.9c-63.4 0-85.4-28.6-97.1-64.1-16.3-51-21.5-84.3-63-84.3-22.4 0-45.1 16.1-45.1 61.2 0 35.2 18 57.2 43.3 57.2 28.6 0 47.6-21.3 47.6-21.3l11.7 31.9s-19.8 19.4-61.2 19.4c-51.3 0-79.9-30.1-79.9-85.8 0-57.9 28.6-92 82.5-92 73.5 0 80.8 41.4 100.8 101.9 8.8 26.8 24.2 46.2 61.2 46.2 24.9 0 38.1-5.5 38.1-19.1 0-19.9-21.8-22-49.9-28.6-30.4-7.3-42.5-23.1-42.5-48 0-40 32.3-52.4 65.2-52.4 37.4 0 60.1 13.6 63 46.6l-36.7 4.4c-1.5-15.8-11-22.4-28.6-22.4-16.1 0-26 7.3-26 19.8 0 11 4.8 17.6 20.9 21.3 32.7 7.1 71.8 12 71.8 57.5.1 36.7-30.7 50.6-76.1 50.6z"] }; +var faLeanpub = { prefix: 'fab', iconName: 'leanpub', icon: [576, 512, [], "f212", "M386.539 111.485l15.096 248.955-10.979-.275c-36.232-.824-71.64 8.783-102.657 27.997-31.016-19.214-66.424-27.997-102.657-27.997-45.564 0-82.07 10.705-123.516 27.723L93.117 129.6c28.546-11.803 61.484-18.115 92.226-18.115 41.173 0 73.836 13.175 102.657 42.544 27.723-28.271 59.013-41.721 98.539-42.544zM569.07 448c-25.526 0-47.485-5.215-70.542-15.645-34.31-15.645-69.993-24.978-107.871-24.978-38.977 0-74.934 12.901-102.657 40.623-27.723-27.723-63.68-40.623-102.657-40.623-37.878 0-73.561 9.333-107.871 24.978C55.239 442.236 32.731 448 8.303 448H6.93L49.475 98.859C88.726 76.626 136.486 64 181.775 64 218.83 64 256.984 71.685 288 93.095 319.016 71.685 357.17 64 394.225 64c45.289 0 93.049 12.626 132.3 34.859L569.07 448zm-43.368-44.741l-34.036-280.246c-30.742-13.999-67.248-21.41-101.009-21.41-38.428 0-74.385 12.077-102.657 38.702-28.272-26.625-64.228-38.702-102.657-38.702-33.761 0-70.267 7.411-101.009 21.41L50.298 403.259c47.211-19.487 82.894-33.486 135.045-33.486 37.604 0 70.817 9.606 102.657 29.644 31.84-20.038 65.052-29.644 102.657-29.644 52.151 0 87.834 13.999 135.045 33.486z"] }; +var faLess = { prefix: 'fab', iconName: 'less', icon: [640, 512, [], "f41d", "M612.7 219c0-20.5 3.2-32.6 3.2-54.6 0-34.2-12.6-45.2-40.5-45.2h-20.5v24.2h6.3c14.2 0 17.3 4.7 17.3 22.1 0 16.3-1.6 32.6-1.6 51.5 0 24.2 7.9 33.6 23.6 37.3v1.6c-15.8 3.7-23.6 13.1-23.6 37.3 0 18.9 1.6 34.2 1.6 51.5 0 17.9-3.7 22.6-17.3 22.6v.5h-6.3V393h20.5c27.8 0 40.5-11 40.5-45.2 0-22.6-3.2-34.2-3.2-54.6 0-11 6.8-22.6 27.3-23.6v-27.3c-20.5-.7-27.3-12.3-27.3-23.3zm-105.6 32c-15.8-6.3-30.5-10-30.5-20.5 0-7.9 6.3-12.6 17.9-12.6s22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-21 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51s-22.5-41-43-47.8zm-358.9 59.4c-3.7 0-8.4-3.2-8.4-13.1V119.1H65.2c-28.4 0-41 11-41 45.2 0 22.6 3.2 35.2 3.2 54.6 0 11-6.8 22.6-27.3 23.6v27.3c20.5.5 27.3 12.1 27.3 23.1 0 19.4-3.2 31-3.2 53.6 0 34.2 12.6 45.2 40.5 45.2h20.5v-24.2h-6.3c-13.1 0-17.3-5.3-17.3-22.6s1.6-32.1 1.6-51.5c0-24.2-7.9-33.6-23.6-37.3v-1.6c15.8-3.7 23.6-13.1 23.6-37.3 0-18.9-1.6-34.2-1.6-51.5s3.7-22.1 17.3-22.1H93v150.8c0 32.1 11 53.1 43.1 53.1 10 0 17.9-1.6 23.6-3.7l-5.3-34.2c-3.1.8-4.6.8-6.2.8zM379.9 251c-16.3-6.3-31-10-31-20.5 0-7.9 6.3-12.6 17.9-12.6 11.6 0 22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-20.5 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51 .1-28.9-22.5-41-43-47.8zm-155-68.8c-38.4 0-75.1 32.1-74.1 82.5 0 52 34.2 82.5 79.3 82.5 18.9 0 39.9-6.8 56.2-17.9l-15.8-27.8c-11.6 6.8-22.6 10-34.2 10-21 0-37.3-10-41.5-34.2H290c.5-3.7 1.6-11 1.6-19.4.6-42.6-22.6-75.7-66.7-75.7zm-30 66.2c3.2-21 15.8-31 30.5-31 18.9 0 26.3 13.1 26.3 31h-56.8z"] }; +var faLine = { prefix: 'fab', iconName: 'line', icon: [448, 512, [], "f3c0", "M272.1 204.2v71.1c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.1 0-2.1-.6-2.6-1.3l-32.6-44v42.2c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.8 0-3.2-1.4-3.2-3.2v-71.1c0-1.8 1.4-3.2 3.2-3.2H219c1 0 2.1.5 2.6 1.4l32.6 44v-42.2c0-1.8 1.4-3.2 3.2-3.2h11.4c1.8-.1 3.3 1.4 3.3 3.1zm-82-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 1.8 1.4 3.2 3.2 3.2h11.4c1.8 0 3.2-1.4 3.2-3.2v-71.1c0-1.7-1.4-3.2-3.2-3.2zm-27.5 59.6h-31.1v-56.4c0-1.8-1.4-3.2-3.2-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 .9.3 1.6.9 2.2.6.5 1.3.9 2.2.9h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.7-1.4-3.2-3.1-3.2zM332.1 201h-45.7c-1.7 0-3.2 1.4-3.2 3.2v71.1c0 1.7 1.4 3.2 3.2 3.2h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2V234c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2v-11.4c-.1-1.7-1.5-3.2-3.2-3.2zM448 113.7V399c-.1 44.8-36.8 81.1-81.7 81H81c-44.8-.1-81.1-36.9-81-81.7V113c.1-44.8 36.9-81.1 81.7-81H367c44.8.1 81.1 36.8 81 81.7zm-61.6 122.6c0-73-73.2-132.4-163.1-132.4-89.9 0-163.1 59.4-163.1 132.4 0 65.4 58 120.2 136.4 130.6 19.1 4.1 16.9 11.1 12.6 36.8-.7 4.1-3.3 16.1 14.1 8.8 17.4-7.3 93.9-55.3 128.2-94.7 23.6-26 34.9-52.3 34.9-81.5z"] }; +var faLinkedin = { prefix: 'fab', iconName: 'linkedin', icon: [448, 512, [], "f08c", "M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"] }; +var faLinkedinIn = { prefix: 'fab', iconName: 'linkedin-in', icon: [448, 512, [], "f0e1", "M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"] }; +var faLinode = { prefix: 'fab', iconName: 'linode', icon: [448, 512, [], "f2b8", "M437.4 226.3c-.3-.9-.9-1.4-1.4-2l-70-38.6c-.9-.6-2-.6-3.1 0l-58.9 36c-.9.6-1.4 1.7-1.4 2.6l-.9 31.4-24-16c-.9-.6-2.3-.6-3.1 0L240 260.9l-1.4-35.1c0-.9-.6-2-1.4-2.3l-36-24.3 33.7-17.4c1.1-.6 1.7-1.7 1.7-2.9l-5.7-132.3c0-.9-.9-2-1.7-2.6L138.6.3c-.9-.3-1.7-.3-2.3-.3L12.6 38.6c-1.4.6-2.3 2-2 3.7L38 175.4c.9 3.4 34 27.4 38.6 30.9l-26.9 12.9c-1.4.9-2 2.3-1.7 3.4l20.6 100.3c.6 2.9 23.7 23.1 27.1 26.3l-17.4 10.6c-.9.6-1.7 2-1.4 3.1 1.4 7.1 15.4 77.7 16.9 79.1l65.1 69.1c.6.6 1.4.6 2.3.9.6 0 1.1-.3 1.7-.6l83.7-66.9c.9-.6 1.1-1.4 1.1-2.3l-2-46 28 23.7c1.1.9 2.9.9 4 0l66.9-53.4c.9-.6 1.1-1.4 1.1-2.3l2.3-33.4 20.3 14c1.1.9 2.6.9 3.7 0l54.6-43.7c.6-.3 1.1-1.1 1.1-2 .9-6.5 10.3-70.8 9.7-72.8zm-204.8 4.8l4 92.6-90.6 61.2-14-96.6 100.6-57.2zm-7.7-180l5.4 126-106.6 55.4L104 97.7l120.9-46.6zM44 173.1L18 48l79.7 49.4 19.4 132.9L44 173.1zm30.6 147.8L55.7 230l70 58.3 13.7 93.4-64.8-60.8zm24.3 117.7l-13.7-67.1 61.7 60.9 9.7 67.4-57.7-61.2zm64.5 64.5l-10.6-70.9 85.7-61.4 3.1 70-78.2 62.3zm82-115.1c0-3.4.9-22.9-2-25.1l-24.3-20 22.3-14.9c2.3-1.7 1.1-5.7 1.1-8l29.4 22.6.6 68.3-27.1-22.9zm94.3-25.4l-60.9 48.6-.6-68.6 65.7-46.9-4.2 66.9zm27.7-25.7l-19.1-13.4 2-34c.3-.9-.3-2-1.1-2.6L308 259.7l.6-30 64.6 40.6-5.8 66.6zm54.6-39.8l-48.3 38.3 5.7-65.1 51.1-36.6-8.5 63.4z"] }; +var faLinux = { prefix: 'fab', iconName: 'linux', icon: [448, 512, [], "f17c", "M196.1 123.6c-.2-1.4 1.9-2.3 3.2-2.9 1.7-.7 3.9-1 5.5-.1.4.2.8.7.6 1.1-.4 1.2-2.4 1-3.5 1.6-1 .5-1.8 1.7-3 1.7-1 .1-2.7-.4-2.8-1.4zm24.7-.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm214.7 310.2c-.5 8.2-6.5 13.8-13.9 18.3-14.9 9-37.3 15.8-50.9 32.2l-2.6-2.2 2.6 2.2c-14.2 16.9-31.7 26.6-48.3 27.9-16.5 1.3-32-6.3-40.3-23v-.1c-1.1-2.1-1.9-4.4-2.5-6.7-21.5 1.2-40.2-5.3-55.1-4.1-22 1.2-35.8 6.5-48.3 6.6-4.8 10.6-14.3 17.6-25.9 20.2-16 3.7-36.1 0-55.9-10.4l1.6-3-1.6 3c-18.5-9.8-42-8.9-59.3-12.5-8.7-1.8-16.3-5-20.1-12.3-3.7-7.3-3-17.3 2.2-31.7 1.7-5.1.4-12.7-.8-20.8-.6-3.9-1.2-7.9-1.2-11.8 0-4.3.7-8.5 2.8-12.4 4.5-8.5 11.8-12.1 18.5-14.5 6.7-2.4 12.8-4 17-8.3 5.2-5.5 10.1-14.4 16.6-20.2-2.6-17.2.2-35.4 6.2-53.3 12.6-37.9 39.2-74.2 58.1-96.7 16.1-22.9 20.8-41.3 22.5-64.7C158 103.4 132.4-.2 234.8 0c80.9.1 76.3 85.4 75.8 131.3-.3 30.1 16.3 50.5 33.4 72 15.2 18 35.1 44.3 46.5 74.4 9.3 24.6 12.9 51.8 3.7 79.1 1.4.5 2.8 1.2 4.1 2 1.4.8 2.7 1.8 4 2.9 6.6 5.6 8.7 14.3 10.5 22.4 1.9 8.1 3.6 15.7 7.2 19.7 11.1 12.4 15.9 21.5 15.5 29.7zM220.8 109.1c3.6.9 8.9 2.4 13 4.4-2.1-12.2 4.5-23.5 11.8-23 8.9.3 13.9 15.5 9.1 27.3-.8 1.9-2.8 3.4-3.9 4.6 6.7 2.3 11 4.1 12.6 4.9 7.9-9.5 10.8-26.2 4.3-40.4-9.8-21.4-34.2-21.8-44 .4-3.2 7.2-3.9 14.9-2.9 21.8zm-46.2 18.8c7.8-5.7 6.9-4.7 5.9-5.5-8-6.9-6.6-27.4 1.8-28.1 6.3-.5 10.8 10.7 9.6 19.6 3.1-2.1 6.7-3.6 10.2-4.6 1.7-19.3-9-33.5-19.1-33.5-18.9 0-24 37.5-8.4 52.1zm-9.4 20.9c1.5 4.9 6.1 10.5 14.7 15.3 7.8 4.6 12 11.5 20 15 2.6 1.1 5.7 1.9 9.6 2.1 18.4 1.1 27.1-11.3 38.2-14.9 11.7-3.7 20.1-11 22.7-18.1 3.2-8.5-2.1-14.7-10.5-18.2-11.3-4.9-16.3-5.2-22.6-9.3-10.3-6.6-18.8-8.9-25.9-8.9-14.4 0-23.2 9.8-27.9 14.2-.5.5-7.9 5.9-14.1 10.5-4.2 3.3-5.6 7.4-4.2 12.3zm-33.5 252.8L112.1 366c-6.8-9.2-13.8-14.8-21.9-16-7.7-1.2-12.6 1.4-17.7 6.9-4.8 5.1-8.8 12.3-14.3 18-7.8 6.5-9.3 6.2-19.6 9.9-6.3 2.2-11.3 4.6-14.8 11.3-2.7 5-2.1 12.2-.9 20 1.2 7.9 3 16.3.6 23.9v.2c-5 13.7-5 21.7-2.6 26.4 7.9 15.4 46.6 6.1 76.5 21.9 31.4 16.4 72.6 17.1 75.3-18 2.1-20.5-31.5-49-41-68.9zm153.9 35.8c3.2-11 6.3-21.3 6.8-29 .8-15.2 1.6-28.7 4.4-39.9 3.1-12.6 9.3-23.1 21.4-27.3 2.3-21.1 18.7-21.1 38.3-12.5 18.9 8.5 26 16 22.8 26.1 1 0 2-.1 4.2 0 5.2-16.9-14.3-28-30.7-34.8 2.9-12 2.4-24.1-.4-35.7-6-25.3-22.6-47.8-35.2-59-2.3-.1-2.1 1.9 2.6 6.5 11.6 10.7 37.1 49.2 23.3 84.9-3.9-1-7.6-1.5-10.9-1.4-5.3-29.1-17.5-53.2-23.6-64.6-11.5-21.4-29.5-65.3-37.2-95.7-4.5 6.4-12.4 11.9-22.3 15-4.7 1.5-9.7 5.5-15.9 9-13.9 8-30 8.8-42.4-1.2-4.5-3.6-8-7.6-12.6-10.3-1.6-.9-5.1-3.3-6.2-4.1-2 37.8-27.3 85.3-39.3 112.7-8.3 19.7-13.2 40.8-13.8 61.5-21.8-29.1-5.9-66.3 2.6-82.4 9.5-17.6 11-22.5 8.7-20.8-8.6 14-22 36.3-27.2 59.2-2.7 11.9-3.2 24 .3 35.2 3.5 11.2 11.1 21.5 24.6 29.9 0 0 24.8 14.3 38.3 32.5 7.4 10 9.7 18.7 7.4 24.9-2.5 6.7-9.6 8.9-16.7 8.9 4.8 6 10.3 13 14.4 19.6 37.6 25.7 82.2 15.7 114.3-7.2zM415 408.5c-10-11.3-7.2-33.1-17.1-41.6-6.9-6-13.6-5.4-22.6-5.1-7.7 8.8-25.8 19.6-38.4 16.3-11.5-2.9-18-16.3-18.8-29.5-.3.2-.7.3-1 .5-7.1 3.9-11.1 10.8-13.7 21.1-2.5 10.2-3.4 23.5-4.2 38.7-.7 11.8-6.2 26.4-9.9 40.6-3.5 13.2-5.8 25.2-1.1 36.3 7.2 14.5 19.5 20.4 33.7 19.3 14.2-1.1 30.4-9.8 43.6-25.5 22-26.6 62.3-29.7 63.2-46.5.3-5.1-3.1-13-13.7-24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4 3.9-3.4 5.9-6.3 3.1-6.6-2.8-.3-2.6 2.6-6 5.1-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2-10.4 0-18.7-4.8-24.9-9.7-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z"] }; +var faLyft = { prefix: 'fab', iconName: 'lyft', icon: [512, 512, [], "f3c3", "M0 81.1h77.8v208.7c0 33.1 15 52.8 27.2 61-12.7 11.1-51.2 20.9-80.2-2.8C7.8 334 0 310.7 0 289V81.1zm485.9 173.5v-22h23.8v-76.8h-26.1c-10.1-46.3-51.2-80.7-100.3-80.7-56.6 0-102.7 46-102.7 102.7V357c16 2.3 35.4-.3 51.7-14 17.1-14 24.8-37.2 24.8-59v-6.7h38.8v-76.8h-38.8v-23.3c0-34.6 52.2-34.6 52.2 0v77.1c0 56.6 46 102.7 102.7 102.7v-76.5c-14.5 0-26.1-11.7-26.1-25.9zm-294.3-99v113c0 15.4-23.8 15.4-23.8 0v-113H91v132.7c0 23.8 8 54 45 63.9 37 9.8 58.2-10.6 58.2-10.6-2.1 13.4-14.5 23.3-34.9 25.3-15.5 1.6-35.2-3.6-45-7.8v70.3c25.1 7.5 51.5 9.8 77.6 4.7 47.1-9.1 76.8-48.4 76.8-100.8V155.1h-77.1v.5z"] }; +var faMagento = { prefix: 'fab', iconName: 'magento', icon: [448, 512, [], "f3c4", "M445.7 127.9V384l-63.4 36.5V164.7L223.8 73.1 65.2 164.7l.4 255.9L2.3 384V128.1L224.2 0l221.5 127.9zM255.6 420.5L224 438.9l-31.8-18.2v-256l-63.3 36.6.1 255.9 94.9 54.9 95.1-54.9v-256l-63.4-36.6v255.9z"] }; +var faMandalorian = { prefix: 'fab', iconName: 'mandalorian', icon: [390, 512, [], "f50f", "M203.28 511.89c-.98-3.26-1.69-15.83-1.39-24.58.55-15.89.98-24.72 1.4-28.76.64-6.2 2.87-20.72 3.28-21.38.6-.96.4-27.87-.24-33.13-.31-2.58-.63-11.9-.69-20.73-.13-16.47-.53-20.12-2.73-24.76-1.1-2.32-1.23-3.84-.99-11.43.16-4.81 0-10.53-.34-12.71-2.05-12.97-3.46-27.7-3.25-33.9.21-6.12.43-7.15 2.06-9.67 3.05-4.71 6.51-14.04 8.62-23.27 2.26-9.86 3.88-17.18 4.59-20.74.89-4.42 2.43-9.72 4.36-15.05 2.27-6.25 2.49-15.39.37-15.39-.3 0-1.38 1.22-2.41 2.71-1.03 1.49-4.76 4.8-8.29 7.36-8.37 6.08-11.7 9.39-12.66 12.58-.93 3.11-1.02 7.23-.16 7.76.34.21 1.29 2.4 2.11 4.88 1.62 4.88 1.87 10.12.72 15.36-.39 1.77-1.05 5.47-1.46 8.23-.41 2.76-.98 6.46-1.25 8.22-.28 1.76-.97 3.68-1.55 4.26-.96.96-1.14.91-2.05-.53-.55-.87-1.2-3.01-1.44-4.75-.25-1.74-1.63-7.11-3.08-11.93-3.28-10.9-3.52-16.15-.96-20.96.92-1.73 1.67-3.81 1.67-4.61 0-2.39-2.2-5.32-7.41-9.89-7.05-6.18-8.63-7.92-10.23-11.3-1.71-3.6-3.06-4.06-4.54-1.54-1.78 3.01-2.6 9.11-2.97 22.02l-.35 12.13 1.95 2.25c3.21 3.7 12.07 16.45 13.78 19.83 3.41 6.74 4.34 11.69 4.41 23.56.07 11.84.95 22.75 2 24.71.36.66.51 1.35.34 1.52-.17.17.41 2.09 1.29 4.27.88 2.18 1.81 6.22 2.06 8.98.25 2.76 1.02 7.43 1.71 10.37 2.23 9.56 2.77 14.08 2.39 20.14-.2 3.27-.53 11.07-.73 17.32-1.31 41.76-1.85 57.98-2.04 61.21-.12 2.02-.39 11.51-.6 21.07-.36 16.3-1.3 27.37-2.42 28.65-.64.73-8.07-4.91-12.52-9.49-3.75-3.87-4.02-4.79-2.83-9.95.7-3.01 2.26-18.29 3.33-32.62.36-4.78.81-10.5 1.01-12.71.83-9.37 1.66-20.35 2.61-34.78.56-8.46 1.33-16.44 1.72-17.73.38-1.29.89-9.89 1.13-19.11l.43-16.77-2.26-4.3c-1.72-3.28-4.87-6.94-13.22-15.34-6.03-6.07-11.84-12.3-12.91-13.85l-1.95-2.81.75-10.9c1.09-15.71 1.1-48.57.02-59.06l-.89-8.7-3.28-4.52c-5.86-8.08-5.8-7.75-6.22-33.27-.1-6.07-.38-11.5-.63-12.06-.83-1.87-3.05-2.66-8.54-3.05-8.86-.62-10.96-1.9-23.85-14.55-6.15-6.04-12.34-11.97-13.75-13.19-2.81-2.42-2.79-1.99-.56-9.63l1.35-4.65-1.69-3.04c-.93-1.67-2.09-3.51-2.59-4.07-1.33-1.51-5.5-10.89-5.99-13.49-.31-1.66-.09-2.67.87-3.9 2.23-2.86 3.4-5.68 4.45-10.73 2.33-11.19 7.74-26.09 10.6-29.22 3.18-3.47 7.7-1.05 9.41 5.03 1.34 4.79 1.37 9.79.1 18.55-.53 3.68-.98 8.68-.99 11.11-.02 4.01.19 4.69 2.25 7.39 3.33 4.37 7.73 7.41 15.2 10.52 1.7.71 3.82 1.99 4.72 2.85 11.17 10.72 18.62 16.18 22.95 16.85 5.18.8 7.98 4.54 10.04 13.39 1.31 5.65 4 11.14 5.46 11.14.59 0 2.09-.63 3.33-1.39 1.98-1.22 2.25-1.73 2.25-4.18-.01-3.71-1.17-14.08-2-17.84-.37-1.66-.78-4.06-.93-5.35-.14-1.29-.61-3.85-1.03-5.69-2.55-11.16-3.65-15.46-4.1-16.05-1.55-2.02-4.08-10.2-4.93-15.92-1.64-11.11-3.96-14.23-12.91-17.39-4.64-1.64-8.89-4.12-13.32-7.78-1.15-.95-4.01-3.22-6.35-5.06-2.35-1.83-4.41-3.53-4.6-3.76-.18-.23-1.39-1.14-2.69-2.02-6.24-4.22-8.84-6.98-11.26-11.96l-2.44-5.02-.22-12.98-.22-12.98 6.91-6.55c3.95-3.75 8.48-7.35 10.59-8.43 3.31-1.69 4.45-1.89 11.37-2.05 8.53-.19 10.12.02 11.66 1.56 1.53 1.53 1.36 6.4-.29 8.5-.74.94-1.34 1.98-1.34 2.32 0 .58-2.61 4.91-5.42 8.99-.68.99-2.13 5.35-2.37 6.82 20.44 13.39 21.55 3.77 14.07 28.98l11.4 2.54c3.11-8.66 6.47-17.26 8.61-26.22.29-7.63-11.98-4.19-15.4-8.68-2.33-5.93 3.13-14.18 6.06-19.2 1.6-2.34 6.62-4.7 8.82-4.15.88.22 4.16-.35 7.37-1.28 3.18-.92 6.58-1.68 7.55-1.68.97 0 3.66-.58 5.98-1.29 3.65-1.11 4.5-1.17 6.35-.4 1.17.48 3.79 1.09 5.82 1.36 2.02.26 4.72 1.12 6 1.91 1.28.79 3.53 1.77 5.02 2.17 2.51.68 3 .57 7.05-1.67l4.35-2.4 10.7-.41c10.44-.4 10.81-.47 15.26-2.68l4.58-2.3 2.46 1.43c1.76 1.02 3.14 2.73 4.85 5.98 2.36 4.51 2.38 4.58 1.37 7.37-.88 2.44-.89 3.3-.1 6.39.5 1.96 1.45 4.62 2.1 5.91.65 1.29 1.24 3.09 1.31 4.01.31 4.33-.03 5.3-2.41 6.92-2.17 1.47-6.98 7.91-6.98 9.34 0 .32-.48 1.69-1.07 3.03-5.04 11.51-6.76 13.56-14.26 16.98-9.2 4.2-12.3 5.19-16.21 5.19-3.1 0-4 .25-4.54 1.26-.37.69-2.21 2.37-4.09 3.71-2.04 1.47-3.8 3.38-4.38 4.78-.54 1.28-1.66 2.59-2.49 2.91-.83.32-1.94 1.08-2.45 1.71-.52.62-3.66 3.04-7 5.38-3.33 2.34-6.87 5.02-7.87 5.96-1 .94-2.07 1.71-2.39 1.71s-1.28.74-2.13 1.65c-1.31 1.39-1.49 2.11-1.14 4.6.22 1.63.86 4.27 1.42 5.88 1.32 3.8 1.31 7.86-.05 10.57-1.43 2.86-.89 6.65 1.35 9.59 2.01 2.63 2.16 4.56.71 8.84-.61 1.8-1.05 5.45-1.06 8.91-.02 4.88.22 6.28 1.46 8.38 1.2 2.04 1.82 2.48 3.24 2.32 1.98-.23 2.3-1.05 4.71-12.12 2.18-10.03 3.71-11.92 13.76-17.08 2.94-1.51 7.46-3.96 10.03-5.44 2.58-1.48 6.79-3.69 9.37-4.91 6.67-3.16 11.05-6.52 15.22-11.67 7.11-8.79 9.98-16.22 12.85-33.3.55-3.28 1.43-5.65 2.86-7.73 1.29-1.87 2.37-4.62 2.89-7.31 1.02-5.3 2.85-9.08 5.58-11.51 4.7-4.18 6-1.09 4.59 10.87-.46 3.86-1.1 10.33-1.44 14.38l-.61 7.36 4.45 4.09 4.45 4.09.11 8.42c.06 4.63.47 9.53.92 10.89l.82 2.47-6.43 6.28c-8.54 8.33-12.88 13.93-16.76 21.61-1.77 3.49-3.74 7.11-4.38 8.03-2.18 3.11-6.46 13.01-8.76 20.26l-2.29 7.22-6.97 6.49c-3.83 3.57-7.96 7.25-9.17 8.17-3.05 2.32-4.26 5.15-4.26 9.99 0 2.98.43 4.96 1.59 7.26.87 1.74 1.81 3.91 2.09 4.83.28.92.98 2.22 1.57 2.89 1.4 1.59 1.92 16.12.83 23.22-.68 4.48-3.63 12.02-4.7 12.02-1.79 0-4.06 9.27-5.07 20.74-.18 2.02-.62 5.94-.98 8.7-.36 2.76-.96 9.98-1.35 16.05-.77 12.22-.19 18.77 2.05 23.15 3.41 6.69.52 12.69-11.03 22.84l-3.97 3.49.07 5.19c.04 2.86.55 6.85 1.14 8.87 4.61 15.98 4.73 16.92 4.38 37.13-.46 26.4-.26 40.27.63 44.15.42 1.84.91 5 1.08 7.02.17 2.02.66 5.33 1.08 7.36.47 2.26.78 11.02.79 22.74l.02 19.06-1.81 2.63c-2.71 3.91-15.11 13.54-15.49 12.29zm29.53-45.11c-.18-.3-.33-6.87-.33-14.59 0-14.06-.89-27.54-2.26-34.45-.4-2.02-.81-9.7-.9-17.06-.15-11.93-1.4-24.37-2.64-26.38-.66-1.07-3.02-17.66-3.03-21.3-.01-4.23 1.02-6 5.28-9.13 4.14-3.04 4.86-3.14 5.48-.72.28 1.1 1.45 5.62 2.6 10.03 3.93 15.12 4.14 16.27 4.05 21.74-.1 5.78-.13 6.13-1.74 17.73-.98 7.07-1.17 12.39-1.04 28.43.17 19.4-.64 35.73-2.04 41.27-.71 2.78-2.8 5.48-3.43 4.43zm-70.99-37.58c-.24-.38-1.01-5.24-1.73-10.79-.72-5.56-1.49-10.41-1.73-10.79-.23-.38-.68-3.3-.99-6.49-.31-3.19-.91-7.46-1.33-9.48-.99-4.79-3.35-19.35-3.42-21.07-.03-.74-.34-4.05-.7-7.36-.67-6.21-.84-27.67-.22-28.29.96-.96 6.63 2.76 11.33 7.43l5.28 5.25-.45 6.47c-.25 3.56-.6 10.23-.78 14.83-.18 4.6-.49 9.87-.67 11.71-.18 1.84-.61 9.36-.94 16.72-.79 17.41-1.94 31.29-2.65 32-.32.3-.76.24-1-.14zM74.63 162.61c21.07 12.79 17.84 14.15 28.49 17.66 13.01 4.29 18.87 7.13 23.15 16.87-43.66 36.14-69.01 57.9-76.71 70.82-31.02 52.01-5.99 101.59 62.75 87.21-14.18 29.23-77.97 28.63-98.68-4.9-24.68-39.95-22.09-118.3 61-187.66zm210.79 179.02c56.66 6.88 82.32-37.74 46.54-89.23 0 0-26.87-29.34-64.28-67.96 2.98-15.45 9.49-32.12 30.57-53.82 89.2 63.51 92 141.61 92.46 149.36 4.27 70.58-78.66 91.12-105.29 61.65z"] }; +var faMastodon = { prefix: 'fab', iconName: 'mastodon', icon: [417, 512, [], "f4f6", "M417.8 179.1c0-97.2-63.7-125.7-63.7-125.7-62.5-28.7-228.5-28.4-290.4 0 0 0-63.7 28.5-63.7 125.7 0 115.7-6.6 259.4 105.6 289.1 40.5 10.7 75.3 13 103.3 11.4 50.8-2.8 79.3-18.1 79.3-18.1l-1.7-36.9s-36.3 11.4-77.1 10.1c-40.4-1.4-83-4.4-89.6-54-.6-4.4-.9-9-.9-13.9 85.6 20.9 158.6 9.1 178.7 6.7 56.1-6.7 105-41.3 111.2-72.9 9.8-49.8 9-121.5 9-121.5zm-75.1 125.2h-46.6V190.1c0-49.7-64-51.6-64 6.9v62.5h-46.3V197c0-58.5-64-56.6-64-6.9v114.2H75.1c0-122.1-5.2-147.9 18.4-175 25.9-28.9 79.8-30.8 103.8 6.1l11.6 19.5 11.6-19.5c24.1-37.1 78.1-34.8 103.8-6.1 23.7 27.3 18.4 53 18.4 175z"] }; +var faMaxcdn = { prefix: 'fab', iconName: 'maxcdn', icon: [512, 512, [], "f136", "M461.1 442.7h-97.4L415.6 200c2.3-10.2.9-19.5-4.4-25.7-5-6.1-13.7-9.6-24.2-9.6h-49.3l-59.5 278h-97.4l59.5-278h-83.4l-59.5 278H0l59.5-278-44.6-95.4H387c39.4 0 75.3 16.3 98.3 44.9 23.3 28.6 31.8 67.4 23.6 105.9l-47.8 222.6z"] }; +var faMedapps = { prefix: 'fab', iconName: 'medapps', icon: [320, 512, [], "f3c6", "M118.3 238.4c3.5-12.5 6.9-33.6 13.2-33.6 8.3 1.8 9.6 23.4 18.6 36.6 4.6-23.5 5.3-85.1 14.1-86.7 9-.7 19.7 66.5 22 77.5 9.9 4.1 48.9 6.6 48.9 6.6 1.9 7.3-24 7.6-40 7.8-4.6 14.8-5.4 27.7-11.4 28-4.7.2-8.2-28.8-17.5-49.6l-9.4 65.5c-4.4 13-15.5-22.5-21.9-39.3-3.3-.1-62.4-1.6-47.6-7.8l31-5zM228 448c21.2 0 21.2-32 0-32H92c-21.2 0-21.2 32 0 32h136zm-24 64c21.2 0 21.2-32 0-32h-88c-21.2 0-21.2 32 0 32h88zm34.2-141.5c3.2-18.9 5.2-36.4 11.9-48.8 7.9-14.7 16.1-28.1 24-41 24.6-40.4 45.9-75.2 45.9-125.5C320 69.6 248.2 0 160 0S0 69.6 0 155.2c0 50.2 21.3 85.1 45.9 125.5 7.9 12.9 16 26.3 24 41 6.7 12.5 8.7 29.8 11.9 48.9 3.5 21 36.1 15.7 32.6-5.1-3.6-21.7-5.6-40.7-15.3-58.6C66.5 246.5 33 211.3 33 155.2 33 87.3 90 32 160 32s127 55.3 127 123.2c0 56.1-33.5 91.3-66.1 151.6-9.7 18-11.7 37.4-15.3 58.6-3.4 20.6 29 26.4 32.6 5.1z"] }; +var faMedium = { prefix: 'fab', iconName: 'medium', icon: [448, 512, [], "f23a", "M0 32v448h448V32H0zm372.2 106.1l-24 23c-2.1 1.6-3.1 4.2-2.7 6.7v169.3c-.4 2.6.6 5.2 2.7 6.7l23.5 23v5.1h-118V367l24.3-23.6c2.4-2.4 2.4-3.1 2.4-6.7V199.8l-67.6 171.6h-9.1L125 199.8v115c-.7 4.8 1 9.7 4.4 13.2l31.6 38.3v5.1H71.2v-5.1l31.6-38.3c3.4-3.5 4.9-8.4 4.1-13.2v-133c.4-3.7-1-7.3-3.8-9.8L75 138.1V133h87.3l67.4 148L289 133.1h83.2v5z"] }; +var faMediumM = { prefix: 'fab', iconName: 'medium-m', icon: [512, 512, [], "f3c7", "M71.5 142.3c.6-5.9-1.7-11.8-6.1-15.8L20.3 72.1V64h140.2l108.4 237.7L364.2 64h133.7v8.1l-38.6 37c-3.3 2.5-5 6.7-4.3 10.8v272c-.7 4.1 1 8.3 4.3 10.8l37.7 37v8.1H307.3v-8.1l39.1-37.9c3.8-3.8 3.8-5 3.8-10.8V171.2L241.5 447.1h-14.7L100.4 171.2v184.9c-1.1 7.8 1.5 15.6 7 21.2l50.8 61.6v8.1h-144v-8L65 377.3c5.4-5.6 7.9-13.5 6.5-21.2V142.3z"] }; +var faMedrt = { prefix: 'fab', iconName: 'medrt', icon: [544, 512, [], "f3c8", "M113.7 256c0 121.8 83.9 222.8 193.5 241.1-18.7 4.5-38.2 6.9-58.2 6.9C111.4 504 0 393 0 256S111.4 8 248.9 8c20.1 0 39.6 2.4 58.2 6.9C197.5 33.2 113.7 134.2 113.7 256m297.4 100.3c-77.7 55.4-179.6 47.5-240.4-14.6 5.5 14.1 12.7 27.7 21.7 40.5 61.6 88.2 182.4 109.3 269.7 47 87.3-62.3 108.1-184.3 46.5-272.6-9-12.9-19.3-24.3-30.5-34.2 37.4 78.8 10.7 178.5-67 233.9m-218.8-244c-1.4 1-2.7 2.1-4 3.1 64.3-17.8 135.9 4 178.9 60.5 35.7 47 42.9 106.6 24.4 158 56.7-56.2 67.6-142.1 22.3-201.8-50-65.5-149.1-74.4-221.6-19.8M296 224c-4.4 0-8-3.6-8-8v-40c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v40c0 4.4-3.6 8-8 8h-40c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h40c4.4 0 8 3.6 8 8v40c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-40c0-4.4 3.6-8 8-8h40c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-40z"] }; +var faMeetup = { prefix: 'fab', iconName: 'meetup', icon: [512, 512, [], "f2e0", "M99 414.3c1.1 5.7-2.3 11.1-8 12.3-5.4 1.1-10.9-2.3-12-8-1.1-5.4 2.3-11.1 7.7-12.3 5.4-1.2 11.1 2.3 12.3 8zm143.1 71.4c-6.3 4.6-8 13.4-3.7 20 4.6 6.6 13.4 8.3 20 3.7 6.3-4.6 8-13.4 3.4-20-4.2-6.5-13.1-8.3-19.7-3.7zm-86-462.3c6.3-1.4 10.3-7.7 8.9-14-1.1-6.6-7.4-10.6-13.7-9.1-6.3 1.4-10.3 7.7-9.1 14 1.4 6.6 7.6 10.6 13.9 9.1zM34.4 226.3c-10-6.9-23.7-4.3-30.6 6-6.9 10-4.3 24 5.7 30.9 10 7.1 23.7 4.6 30.6-5.7 6.9-10.4 4.3-24.1-5.7-31.2zm272-170.9c10.6-6.3 13.7-20 7.7-30.3-6.3-10.6-19.7-14-30-7.7s-13.7 20-7.4 30.6c6 10.3 19.4 13.7 29.7 7.4zm-191.1 58c7.7-5.4 9.4-16 4.3-23.7s-15.7-9.4-23.1-4.3c-7.7 5.4-9.4 16-4.3 23.7 5.1 7.8 15.6 9.5 23.1 4.3zm372.3 156c-7.4 1.7-12.3 9.1-10.6 16.9 1.4 7.4 8.9 12.3 16.3 10.6 7.4-1.4 12.3-8.9 10.6-16.6-1.5-7.4-8.9-12.3-16.3-10.9zm39.7-56.8c-1.1-5.7-6.6-9.1-12-8-5.7 1.1-9.1 6.9-8 12.6 1.1 5.4 6.6 9.1 12.3 8 5.4-1.5 9.1-6.9 7.7-12.6zM447 138.9c-8.6 6-10.6 17.7-4.9 26.3 5.7 8.6 17.4 10.6 26 4.9 8.3-6 10.3-17.7 4.6-26.3-5.7-8.7-17.4-10.9-25.7-4.9zm-6.3 139.4c26.3 43.1 15.1 100-26.3 129.1-17.4 12.3-37.1 17.7-56.9 17.1-12 47.1-69.4 64.6-105.1 32.6-1.1.9-2.6 1.7-3.7 2.9-39.1 27.1-92.3 17.4-119.4-22.3-9.7-14.3-14.6-30.6-15.1-46.9-65.4-10.9-90-94-41.1-139.7-28.3-46.9.6-107.4 53.4-114.9C151.6 70 234.1 38.6 290.1 82c67.4-22.3 136.3 29.4 130.9 101.1 41.1 12.6 52.8 66.9 19.7 95.2zm-70 74.3c-3.1-20.6-40.9-4.6-43.1-27.1-3.1-32 43.7-101.1 40-128-3.4-24-19.4-29.1-33.4-29.4-13.4-.3-16.9 2-21.4 4.6-2.9 1.7-6.6 4.9-11.7-.3-6.3-6-11.1-11.7-19.4-12.9-12.3-2-17.7 2-26.6 9.7-3.4 2.9-12 12.9-20 9.1-3.4-1.7-15.4-7.7-24-11.4-16.3-7.1-40 4.6-48.6 20-12.9 22.9-38 113.1-41.7 125.1-8.6 26.6 10.9 48.6 36.9 47.1 11.1-.6 18.3-4.6 25.4-17.4 4-7.4 41.7-107.7 44.6-112.6 2-3.4 8.9-8 14.6-5.1 5.7 3.1 6.9 9.4 6 15.1-1.1 9.7-28 70.9-28.9 77.7-3.4 22.9 26.9 26.6 38.6 4 3.7-7.1 45.7-92.6 49.4-98.3 4.3-6.3 7.4-8.3 11.7-8 3.1 0 8.3.9 7.1 10.9-1.4 9.4-35.1 72.3-38.9 87.7-4.6 20.6 6.6 41.4 24.9 50.6 11.4 5.7 62.5 15.7 58.5-11.1zm5.7 92.3c-10.3 7.4-12.9 22-5.7 32.6 7.1 10.6 21.4 13.1 32 6 10.6-7.4 13.1-22 6-32.6-7.4-10.6-21.7-13.5-32.3-6z"] }; +var faMicrosoft = { prefix: 'fab', iconName: 'microsoft', icon: [448, 512, [], "f3ca", "M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z"] }; +var faMix = { prefix: 'fab', iconName: 'mix', icon: [448, 512, [], "f3cb", "M0 64v348.9c0 56.2 88 58.1 88 0V174.3c7.9-52.9 88-50.4 88 6.5v175.3c0 57.9 96 58 96 0V240c5.3-54.7 88-52.5 88 4.3v23.8c0 59.9 88 56.6 88 0V64H0z"] }; +var faMixcloud = { prefix: 'fab', iconName: 'mixcloud', icon: [640, 512, [], "f289", "M424.43 219.729C416.124 134.727 344.135 68 256.919 68c-72.266 0-136.224 46.516-159.205 114.074-54.545 8.029-96.63 54.822-96.63 111.582 0 62.298 50.668 112.966 113.243 112.966h289.614c52.329 0 94.969-42.362 94.969-94.693 0-45.131-32.118-83.063-74.48-92.2zm-20.489 144.53H114.327c-39.04 0-70.881-31.564-70.881-70.604s31.841-70.604 70.881-70.604c18.827 0 36.548 7.475 49.838 20.766 19.963 19.963 50.133-10.227 30.18-30.18-14.675-14.398-32.672-24.365-52.053-29.349 19.935-44.3 64.79-73.926 114.628-73.926 69.496 0 125.979 56.483 125.979 125.702 0 13.568-2.215 26.857-6.369 39.594-8.943 27.517 32.133 38.939 40.147 13.29 2.769-8.306 4.984-16.889 6.369-25.472 19.381 7.476 33.502 26.303 33.502 48.453 0 28.795-23.535 52.33-52.607 52.33zm235.069-52.33c0 44.024-12.737 86.386-37.102 122.657-4.153 6.092-10.798 9.414-17.72 9.414-16.317 0-27.127-18.826-17.443-32.949 19.381-29.349 29.903-63.682 29.903-99.122s-10.521-69.773-29.903-98.845c-15.655-22.831 19.361-47.24 35.163-23.534 24.366 35.993 37.102 78.356 37.102 122.379zm-70.88 0c0 31.565-9.137 62.021-26.857 88.325-4.153 6.091-10.798 9.136-17.72 9.136-17.201 0-27.022-18.979-17.443-32.948 13.013-19.104 19.658-41.255 19.658-64.513 0-22.981-6.645-45.408-19.658-64.512-15.761-22.986 19.008-47.095 35.163-23.535 17.719 26.026 26.857 56.483 26.857 88.047z"] }; +var faMizuni = { prefix: 'fab', iconName: 'mizuni', icon: [496, 512, [], "f3cc", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm-80 351.9c-31.4 10.6-58.8 27.3-80 48.2V136c0-22.1 17.9-40 40-40s40 17.9 40 40v223.9zm120-9.9c-12.9-2-26.2-3.1-39.8-3.1-13.8 0-27.2 1.1-40.2 3.1V136c0-22.1 17.9-40 40-40s40 17.9 40 40v214zm120 57.7c-21.2-20.8-48.6-37.4-80-48V136c0-22.1 17.9-40 40-40s40 17.9 40 40v271.7z"] }; +var faModx = { prefix: 'fab', iconName: 'modx', icon: [448, 512, [], "f285", "M356 241.8l36.7 23.7V480l-133-83.8L356 241.8zM440 75H226.3l-23 37.8 153.5 96.5L440 75zm-89 142.8L55.2 32v214.5l46 29L351 217.8zM97 294.2L8 437h213.7l125-200.5L97 294.2z"] }; +var faMonero = { prefix: 'fab', iconName: 'monero', icon: [496, 512, [], "f3d0", "M352 384h108.4C417 455.9 338.1 504 248 504S79 455.9 35.6 384H144V256.2L248 361l104-105v128zM88 336V128l159.4 159.4L408 128v208h74.8c8.5-25.1 13.2-52 13.2-80C496 119 385 8 248 8S0 119 0 256c0 28 4.6 54.9 13.2 80H88z"] }; +var faNapster = { prefix: 'fab', iconName: 'napster', icon: [496, 512, [], "f3d2", "M298.3 373.6c-14.2 13.6-31.3 24.1-50.4 30.5-19-6.4-36.2-16.9-50.3-30.5h100.7zm44-199.6c20-16.9 43.6-29.2 69.6-36.2V299c0 219.4-328 217.6-328 .3V137.7c25.9 6.9 49.6 19.6 69.5 36.4 56.8-40 132.5-39.9 188.9-.1zm-208.8-58.5c64.4-60 164.3-60.1 228.9-.2-7.1 3.5-13.9 7.3-20.6 11.5-58.7-30.5-129.2-30.4-187.9.1-6.3-4-13.9-8.2-20.4-11.4zM43.8 93.2v69.3c-58.4 36.5-58.4 121.1.1 158.3 26.4 245.1 381.7 240.3 407.6 1.5l.3-1.7c58.7-36.3 58.9-121.7.2-158.2V93.2c-17.3.5-34 3-50.1 7.4-82-91.5-225.5-91.5-307.5.1-16.3-4.4-33.1-7-50.6-7.5zM259.2 352s36-.3 61.3-1.5c10.2-.5 21.1-4 25.5-6.5 26.3-15.1 25.4-39.2 26.2-47.4-79.5-.6-99.9-3.9-113 55.4zm-135.5-55.3c.8 8.2-.1 32.3 26.2 47.4 4.4 2.5 15.2 6 25.5 6.5 25.3 1.1 61.3 1.5 61.3 1.5-13.2-59.4-33.7-56.1-113-55.4zm169.1 123.4c-3.2-5.3-6.9-7.3-6.9-7.3-24.8 7.3-52.2 6.9-75.9 0 0 0-2.9 1.5-6.4 6.6-2.8 4.1-3.7 9.6-3.7 9.6 29.1 17.6 67.1 17.6 96.2 0-.1-.1-.3-4-3.3-8.9z"] }; +var faNintendoSwitch = { prefix: 'fab', iconName: 'nintendo-switch', icon: [448, 512, [], "f418", "M95.9 33.5c-44.6 8-80.5 41-91.8 84.4C0 133.6-.3 142.8.2 264.4.4 376 .5 378.6 2.4 387.3c10.3 46.5 43.3 79.6 90.3 90.5 6.1 1.4 13.9 1.7 64.1 1.9 51.9.4 57.3.3 58.7-1.1 1.4-1.4 1.5-19.3 1.5-222.2 0-150.5-.3-221.3-.9-222.6-.9-1.7-2.5-1.8-56.9-1.7-44.2.1-57.5.4-63.3 1.4zm83.9 222.6V444l-37.8-.5c-34.8-.4-38.5-.6-45.5-2.3-29.9-7.7-52-30.7-58.3-60.7-2-9.4-2-240.1-.1-249.3 5.6-26.1 23.7-47.7 48-57.4 12.2-4.9 17.9-5.5 57.6-5.6l35.9-.1v188zm-75.9-131.2c-5.8 1.1-14.7 5.6-19.5 9.7-9.7 8.4-14.6 20.4-13.8 34.5.4 7.3.8 9.3 3.8 15.2 4.4 9 10.9 15.6 19.9 20 6.2 3.1 7.8 3.4 15.9 3.7 7.3.3 9.9 0 14.8-1.7 20.1-6.8 32.3-26.3 28.8-46.4-3.9-23.7-26.6-39.7-49.9-35zm158.2-92.3c-.4.3-.6 100.8-.6 223.5 0 202.3.1 222.8 1.5 223.4 2.5.9 74.5.6 83.4-.4 37.7-4.3 71-27.2 89-61.2 2.3-4.4 5.4-11.7 7-16.2 5.8-17.4 5.7-12.8 5.7-146.1 0-106.4-.2-122.3-1.5-129-9.2-48.3-46.1-84.8-94.5-93.1-6.5-1.1-16.5-1.4-48.8-1.4-22.4-.1-40.9.2-41.2.5zm99.1 202.1c14.5 3.8 26.3 14.8 31.2 28.9 3.1 8.7 3 21.5-.1 29.5-5.7 14.7-16.8 25-31.1 28.8-23.2 6-47.9-8-54.6-31-2-7-1.9-18.9.4-26.2 6.9-22.7 31-36.1 54.2-30z"] }; +var faNode = { prefix: 'fab', iconName: 'node', icon: [640, 512, [], "f419", "M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4.1l14.8 8.8c.5.3 1.3.3 1.8 0L375 408c.5-.3.9-.9.9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6.3-.9 1-.9 1.6v66.7c0 .6.4 1.2.9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9.7-1.7 1.7-1.7h7.3c.9 0 1.7.7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7zm46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6.2.8.8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5.3-.4.5-.8.4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7.7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8zm54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1zm-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3 0 5.2 4.2 9.4 9.3 9.4 5.2-.1 9.4-4.3 9.4-9.4zm-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7.1 1.8 1.2 2.1 2.8.1 1 .3 2.7.6 3.3zm-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8zM137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3.4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3.7 2.5 1.8 3.2 1.1.7 2.5.7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1 1.3 0 2.6.3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1.7 2.6.7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2l.2-95zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4zm-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6.3-.9.9-.9 1.6v24.3c0 .7.4 1.3.9 1.6l21 12.1c.6.3 1.3.3 1.8 0l21-12.1c.6-.3.9-.9.9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3.7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1.7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2l36.7-21.3zM559 219c-.4.3-.7.7-.7 1.2v13.6c0 .5.3 1 .7 1.2l11.8 6.8c.4.3 1 .3 1.4 0L584 235c.4-.3.7-.7.7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0L559 219zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7.1-.5.2-1.1.2-1.7zm-74.3-124.9l-.8.5h1.1l-.3-.5zm76.2 130.2l-.4-.7v.9l.4-.2z"] }; +var faNodeJs = { prefix: 'fab', iconName: 'node-js', icon: [448, 512, [], "f3d3", "M224 508c-6.7 0-13.5-1.8-19.4-5.2l-61.7-36.5c-9.2-5.2-4.7-7-1.7-8 12.3-4.3 14.8-5.2 27.9-12.7 1.4-.8 3.2-.5 4.6.4l47.4 28.1c1.7 1 4.1 1 5.7 0l184.7-106.6c1.7-1 2.8-3 2.8-5V149.3c0-2.1-1.1-4-2.9-5.1L226.8 37.7c-1.7-1-4-1-5.7 0L36.6 144.3c-1.8 1-2.9 3-2.9 5.1v213.1c0 2 1.1 4 2.9 4.9l50.6 29.2c27.5 13.7 44.3-2.4 44.3-18.7V167.5c0-3 2.4-5.3 5.4-5.3h23.4c2.9 0 5.4 2.3 5.4 5.3V378c0 36.6-20 57.6-54.7 57.6-10.7 0-19.1 0-42.5-11.6l-48.4-27.9C8.1 389.2.7 376.3.7 362.4V149.3c0-13.8 7.4-26.8 19.4-33.7L204.6 9c11.7-6.6 27.2-6.6 38.8 0l184.7 106.7c12 6.9 19.4 19.8 19.4 33.7v213.1c0 13.8-7.4 26.7-19.4 33.7L243.4 502.8c-5.9 3.4-12.6 5.2-19.4 5.2zm149.1-210.1c0-39.9-27-50.5-83.7-58-57.4-7.6-63.2-11.5-63.2-24.9 0-11.1 4.9-25.9 47.4-25.9 37.9 0 51.9 8.2 57.7 33.8.5 2.4 2.7 4.2 5.2 4.2h24c1.5 0 2.9-.6 3.9-1.7s1.5-2.6 1.4-4.1c-3.7-44.1-33-64.6-92.2-64.6-52.7 0-84.1 22.2-84.1 59.5 0 40.4 31.3 51.6 81.8 56.6 60.5 5.9 65.2 14.8 65.2 26.7 0 20.6-16.6 29.4-55.5 29.4-48.9 0-59.6-12.3-63.2-36.6-.4-2.6-2.6-4.5-5.3-4.5h-23.9c-3 0-5.3 2.4-5.3 5.3 0 31.1 16.9 68.2 97.8 68.2 58.4-.1 92-23.2 92-63.4z"] }; +var faNpm = { prefix: 'fab', iconName: 'npm', icon: [576, 512, [], "f3d4", "M288 288h-32v-64h32v64zm288-128v192H288v32H160v-32H0V160h576zm-416 32H32v128h64v-96h32v96h32V192zm160 0H192v160h64v-32h64V192zm224 0H352v128h64v-96h32v96h32v-96h32v96h32V192z"] }; +var faNs8 = { prefix: 'fab', iconName: 'ns8', icon: [640, 512, [], "f3d5", "M187.1 159.9l-34.2 113.7-54.5-113.7H49L0 320h44.9L76 213.5 126.6 320h56.9L232 159.9h-44.9zm452.5-.9c-2.9-18-23.9-28.1-42.1-31.3-44.6-7.8-101.9 16.3-88.5 58.8v.1c-43.8 8.7-74.3 26.8-94.2 48.2-3-9.8-13.6-16.6-34-16.6h-87.6c-9.3 0-12.9-2.3-11.5-7.4 1.6-5.5 1.9-6.8 3.7-12.2 2.1-6.4 7.8-7.1 13.3-7.1h133.5l9.7-31.5c-139.7 0-144.5-.5-160.1 1.2-12.3 1.3-23.5 4.8-30.6 15-6.8 9.9-14.4 35.6-17.6 47.1-5.4 19.4-.6 28.6 32.8 28.6h87.3c7.8 0 8.8 2.7 7.7 6.6-1.1 4.4-2.8 10-4.5 14.6-1.6 4.2-4.7 7.4-13.8 7.4H216.3L204.7 320c139.9 0 145.3-.6 160.9-2.3 6.6-.7 13-2.1 18.5-4.9.2 3.7.5 7.3 1.2 10.8 5.4 30.5 27.4 52.3 56.8 59.5 48.6 11.9 108.7-16.8 135.1-68 18.7-36.2 14.1-76.2-3.4-105.5h.1c29.6-5.9 70.3-22 65.7-50.6zM530.7 263.7c-5.9 29.5-36.6 47.8-61.6 43.9-30.9-4.8-38.5-39.5-14.1-64.8 16.2-16.8 45.2-24 68.5-26.9 6.7 14.1 10.3 32 7.2 47.8zm21.8-83.1c-4.2-6-9.8-18.5-2.5-26.3 6.7-7.2 20.9-10.1 31.8-7.7 15.3 3.4 19.7 15.9 4.9 24.4-10.7 6.1-23.6 8.1-34.2 9.6z"] }; +var faNutritionix = { prefix: 'fab', iconName: 'nutritionix', icon: [400, 512, [], "f3d6", "M88 8.1S221.4-.1 209 112.5c0 0 19.1-74.9 103-40.6 0 0-17.7 74-88 56 0 0 14.6-54.6 66.1-56.6 0 0-39.9-10.3-82.1 48.8 0 0-19.8-94.5-93.6-99.7 0 0 75.2 19.4 77.6 107.5 0 .1-106.4 7-104-119.8zm312 315.6c0 48.5-9.7 95.3-32 132.3-42.2 30.9-105 48-168 48-62.9 0-125.8-17.1-168-48C9.7 419 0 372.2 0 323.7 0 275.3 17.7 229 40 192c42.2-30.9 97.1-48.6 160-48.6 63 0 117.8 17.6 160 48.6 22.3 37 40 83.3 40 131.7zM120 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM192 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM264 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM336 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm24-39.6c-4.8-22.3-7.4-36.9-16-56-38.8-19.9-90.5-32-144-32S94.8 180.1 56 200c-8.8 19.5-11.2 33.9-16 56 42.2-7.9 98.7-14.8 160-14.8s117.8 6.9 160 14.8z"] }; +var faOdnoklassniki = { prefix: 'fab', iconName: 'odnoklassniki', icon: [320, 512, [], "f263", "M275.1 334c-27.4 17.4-65.1 24.3-90 26.9l20.9 20.6 76.3 76.3c27.9 28.6-17.5 73.3-45.7 45.7-19.1-19.4-47.1-47.4-76.3-76.6L84 503.4c-28.2 27.5-73.6-17.6-45.4-45.7 19.4-19.4 47.1-47.4 76.3-76.3l20.6-20.6c-24.6-2.6-62.9-9.1-90.6-26.9-32.6-21-46.9-33.3-34.3-59 7.4-14.6 27.7-26.9 54.6-5.7 0 0 36.3 28.9 94.9 28.9s94.9-28.9 94.9-28.9c26.9-21.1 47.1-8.9 54.6 5.7 12.4 25.7-1.9 38-34.5 59.1zM30.3 129.7C30.3 58 88.6 0 160 0s129.7 58 129.7 129.7c0 71.4-58.3 129.4-129.7 129.4s-129.7-58-129.7-129.4zm66 0c0 35.1 28.6 63.7 63.7 63.7s63.7-28.6 63.7-63.7c0-35.4-28.6-64-63.7-64s-63.7 28.6-63.7 64z"] }; +var faOdnoklassnikiSquare = { prefix: 'fab', iconName: 'odnoklassniki-square', icon: [448, 512, [], "f264", "M184.2 177.1c0-22.1 17.9-40 39.8-40s39.8 17.9 39.8 40c0 22-17.9 39.8-39.8 39.8s-39.8-17.9-39.8-39.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-305.1 97.1c0 44.6 36.4 80.9 81.1 80.9s81.1-36.2 81.1-80.9c0-44.8-36.4-81.1-81.1-81.1s-81.1 36.2-81.1 81.1zm174.5 90.7c-4.6-9.1-17.3-16.8-34.1-3.6 0 0-22.7 18-59.3 18s-59.3-18-59.3-18c-16.8-13.2-29.5-5.5-34.1 3.6-7.9 16.1 1.1 23.7 21.4 37 17.3 11.1 41.2 15.2 56.6 16.8l-12.9 12.9c-18.2 18-35.5 35.5-47.7 47.7-17.6 17.6 10.7 45.8 28.4 28.6l47.7-47.9c18.2 18.2 35.7 35.7 47.7 47.9 17.6 17.2 46-10.7 28.6-28.6l-47.7-47.7-13-12.9c15.5-1.6 39.1-5.9 56.2-16.8 20.4-13.3 29.3-21 21.5-37z"] }; +var faOldRepublic = { prefix: 'fab', iconName: 'old-republic', icon: [496, 512, [], "f510", "M235.76 10.23c7.5-.31 15-.28 22.5-.09 3.61.14 7.2.4 10.79.73 4.92.27 9.79 1.03 14.67 1.62 2.93.43 5.83.98 8.75 1.46 7.9 1.33 15.67 3.28 23.39 5.4 12.24 3.47 24.19 7.92 35.76 13.21 26.56 12.24 50.94 29.21 71.63 49.88 20.03 20.09 36.72 43.55 48.89 69.19 1.13 2.59 2.44 5.1 3.47 7.74 2.81 6.43 5.39 12.97 7.58 19.63 4.14 12.33 7.34 24.99 9.42 37.83.57 3.14 1.04 6.3 1.4 9.47.55 3.83.94 7.69 1.18 11.56.83 8.34.84 16.73.77 25.1-.07 4.97-.26 9.94-.75 14.89-.24 3.38-.51 6.76-.98 10.12-.39 2.72-.63 5.46-1.11 8.17-.9 5.15-1.7 10.31-2.87 15.41-4.1 18.5-10.3 36.55-18.51 53.63-15.77 32.83-38.83 62.17-67.12 85.12a246.503 246.503 0 0 1-56.91 34.86c-6.21 2.68-12.46 5.25-18.87 7.41-3.51 1.16-7.01 2.38-10.57 3.39-6.62 1.88-13.29 3.64-20.04 5-4.66.91-9.34 1.73-14.03 2.48-5.25.66-10.5 1.44-15.79 1.74-6.69.66-13.41.84-20.12.81-6.82.03-13.65-.12-20.45-.79-3.29-.23-6.57-.5-9.83-.95-2.72-.39-5.46-.63-8.17-1.11-4.12-.72-8.25-1.37-12.35-2.22-4.25-.94-8.49-1.89-12.69-3.02-8.63-2.17-17.08-5.01-25.41-8.13-10.49-4.12-20.79-8.75-30.64-14.25-2.14-1.15-4.28-2.29-6.35-3.57-11.22-6.58-21.86-14.1-31.92-22.34-34.68-28.41-61.41-66.43-76.35-108.7-3.09-8.74-5.71-17.65-7.8-26.68-1.48-6.16-2.52-12.42-3.58-18.66-.4-2.35-.61-4.73-.95-7.09-.6-3.96-.75-7.96-1.17-11.94-.8-9.47-.71-18.99-.51-28.49.14-3.51.34-7.01.7-10.51.31-3.17.46-6.37.92-9.52.41-2.81.65-5.65 1.16-8.44.7-3.94 1.3-7.9 2.12-11.82 3.43-16.52 8.47-32.73 15.26-48.18 1.15-2.92 2.59-5.72 3.86-8.59 8.05-16.71 17.9-32.56 29.49-47.06 20-25.38 45.1-46.68 73.27-62.47 7.5-4.15 15.16-8.05 23.07-11.37 15.82-6.88 32.41-11.95 49.31-15.38 3.51-.67 7.04-1.24 10.56-1.85 2.62-.47 5.28-.7 7.91-1.08 3.53-.53 7.1-.68 10.65-1.04 2.46-.24 4.91-.36 7.36-.51m8.64 24.41c-9.23.1-18.43.99-27.57 2.23-7.3 1.08-14.53 2.6-21.71 4.3-13.91 3.5-27.48 8.34-40.46 14.42-10.46 4.99-20.59 10.7-30.18 17.22-4.18 2.92-8.4 5.8-12.34 9.03-5.08 3.97-9.98 8.17-14.68 12.59-2.51 2.24-4.81 4.7-7.22 7.06-28.22 28.79-48.44 65.39-57.5 104.69-2.04 8.44-3.54 17.02-4.44 25.65-1.1 8.89-1.44 17.85-1.41 26.8.11 7.14.38 14.28 1.22 21.37.62 7.12 1.87 14.16 3.2 21.18 1.07 4.65 2.03 9.32 3.33 13.91 6.29 23.38 16.5 45.7 30.07 65.75 8.64 12.98 18.78 24.93 29.98 35.77 16.28 15.82 35.05 29.04 55.34 39.22 7.28 3.52 14.66 6.87 22.27 9.63 5.04 1.76 10.06 3.57 15.22 4.98 11.26 3.23 22.77 5.6 34.39 7.06 2.91.29 5.81.61 8.72.9 13.82 1.08 27.74 1 41.54-.43 4.45-.6 8.92-.99 13.35-1.78 3.63-.67 7.28-1.25 10.87-2.1 4.13-.98 8.28-1.91 12.36-3.07 26.5-7.34 51.58-19.71 73.58-36.2 15.78-11.82 29.96-25.76 42.12-41.28 3.26-4.02 6.17-8.31 9.13-12.55 3.39-5.06 6.58-10.25 9.6-15.54 2.4-4.44 4.74-8.91 6.95-13.45 5.69-12.05 10.28-24.62 13.75-37.49 2.59-10.01 4.75-20.16 5.9-30.45 1.77-13.47 1.94-27.1 1.29-40.65-.29-3.89-.67-7.77-1-11.66-2.23-19.08-6.79-37.91-13.82-55.8-5.95-15.13-13.53-29.63-22.61-43.13-12.69-18.8-28.24-35.68-45.97-49.83-25.05-20-54.47-34.55-85.65-42.08-7.78-1.93-15.69-3.34-23.63-4.45-3.91-.59-7.85-.82-11.77-1.24-7.39-.57-14.81-.72-22.22-.58zM139.26 83.53c13.3-8.89 28.08-15.38 43.3-20.18-3.17 1.77-6.44 3.38-9.53 5.29-11.21 6.68-21.52 14.9-30.38 24.49-6.8 7.43-12.76 15.73-17.01 24.89-3.29 6.86-5.64 14.19-6.86 21.71-.93 4.85-1.3 9.81-1.17 14.75.13 13.66 4.44 27.08 11.29 38.82 5.92 10.22 13.63 19.33 22.36 27.26 4.85 4.36 10.24 8.09 14.95 12.6 2.26 2.19 4.49 4.42 6.43 6.91 2.62 3.31 4.89 6.99 5.99 11.1.9 3.02.66 6.2.69 9.31.02 4.1-.04 8.2.03 12.3.14 3.54-.02 7.09.11 10.63.08 2.38.02 4.76.05 7.14.16 5.77.06 11.53.15 17.3.11 2.91.02 5.82.13 8.74.03 1.63.13 3.28-.03 4.91-.91.12-1.82.18-2.73.16-10.99 0-21.88-2.63-31.95-6.93-6-2.7-11.81-5.89-17.09-9.83-5.75-4.19-11.09-8.96-15.79-14.31-6.53-7.24-11.98-15.39-16.62-23.95-1.07-2.03-2.24-4.02-3.18-6.12-1.16-2.64-2.62-5.14-3.67-7.82-4.05-9.68-6.57-19.94-8.08-30.31-.49-4.44-1.09-8.88-1.2-13.35-.7-15.73.84-31.55 4.67-46.82 2.12-8.15 4.77-16.18 8.31-23.83 6.32-14.2 15.34-27.18 26.3-38.19 6.28-6.2 13.13-11.84 20.53-16.67zm175.37-20.12c2.74.74 5.41 1.74 8.09 2.68 6.36 2.33 12.68 4.84 18.71 7.96 13.11 6.44 25.31 14.81 35.82 24.97 10.2 9.95 18.74 21.6 25.14 34.34 1.28 2.75 2.64 5.46 3.81 8.26 6.31 15.1 10 31.26 11.23 47.57.41 4.54.44 9.09.45 13.64.07 11.64-1.49 23.25-4.3 34.53-1.97 7.27-4.35 14.49-7.86 21.18-3.18 6.64-6.68 13.16-10.84 19.24-6.94 10.47-15.6 19.87-25.82 27.22-10.48 7.64-22.64 13.02-35.4 15.38-3.51.69-7.08 1.08-10.66 1.21-1.85.06-3.72.16-5.56-.1-.28-2.15 0-4.31-.01-6.46-.03-3.73.14-7.45.1-11.17.19-7.02.02-14.05.21-21.07.03-2.38-.03-4.76.03-7.14.17-5.07-.04-10.14.14-15.21.1-2.99-.24-6.04.51-8.96.66-2.5 1.78-4.86 3.09-7.08 4.46-7.31 11.06-12.96 17.68-18.26 5.38-4.18 10.47-8.77 15.02-13.84 7.68-8.37 14.17-17.88 18.78-28.27 2.5-5.93 4.52-12.1 5.55-18.46.86-4.37 1.06-8.83 1.01-13.27-.02-7.85-1.4-15.65-3.64-23.17-1.75-5.73-4.27-11.18-7.09-16.45-3.87-6.93-8.65-13.31-13.96-19.2-9.94-10.85-21.75-19.94-34.6-27.1-1.85-1.02-3.84-1.82-5.63-2.97zm-100.8 58.45c.98-1.18 1.99-2.33 3.12-3.38-.61.93-1.27 1.81-1.95 2.68-3.1 3.88-5.54 8.31-7.03 13.06-.87 3.27-1.68 6.6-1.73 10-.07 2.52-.08 5.07.32 7.57 1.13 7.63 4.33 14.85 8.77 21.12 2 2.7 4.25 5.27 6.92 7.33 1.62 1.27 3.53 2.09 5.34 3.05 3.11 1.68 6.32 3.23 9.07 5.48 2.67 2.09 4.55 5.33 4.4 8.79-.01 73.67 0 147.34-.01 221.02 0 1.35-.08 2.7.04 4.04.13 1.48.82 2.83 1.47 4.15.86 1.66 1.78 3.34 3.18 4.62.85.77 1.97 1.4 3.15 1.24 1.5-.2 2.66-1.35 3.45-2.57.96-1.51 1.68-3.16 2.28-4.85.76-2.13.44-4.42.54-6.63.14-4.03-.02-8.06.14-12.09.03-5.89.03-11.77.06-17.66.14-3.62.03-7.24.11-10.86.15-4.03-.02-8.06.14-12.09.03-5.99.03-11.98.07-17.97.14-3.62.02-7.24.11-10.86.14-3.93-.02-7.86.14-11.78.03-5.99.03-11.98.06-17.97.16-3.94-.01-7.88.19-11.82.29 1.44.13 2.92.22 4.38.19 3.61.42 7.23.76 10.84.32 3.44.44 6.89.86 10.32.37 3.1.51 6.22.95 9.31.57 4.09.87 8.21 1.54 12.29 1.46 9.04 2.83 18.11 5.09 26.99 1.13 4.82 2.4 9.61 4 14.3 2.54 7.9 5.72 15.67 10.31 22.62 1.73 2.64 3.87 4.98 6.1 7.21.27.25.55.51.88.71.6.25 1.31-.07 1.7-.57.71-.88 1.17-1.94 1.7-2.93 4.05-7.8 8.18-15.56 12.34-23.31.7-1.31 1.44-2.62 2.56-3.61 1.75-1.57 3.84-2.69 5.98-3.63 2.88-1.22 5.9-2.19 9.03-2.42 6.58-.62 13.11.75 19.56 1.85 3.69.58 7.4 1.17 11.13 1.41 3.74.1 7.48.05 11.21-.28 8.55-.92 16.99-2.96 24.94-6.25 5.3-2.24 10.46-4.83 15.31-7.93 11.46-7.21 21.46-16.57 30.04-27.01 1.17-1.42 2.25-2.9 3.46-4.28-1.2 3.24-2.67 6.37-4.16 9.48-1.25 2.9-2.84 5.61-4.27 8.42-5.16 9.63-11.02 18.91-17.75 27.52-4.03 5.21-8.53 10.05-13.33 14.57-6.64 6.05-14.07 11.37-22.43 14.76-8.21 3.37-17.31 4.63-26.09 3.29-3.56-.58-7.01-1.69-10.41-2.88-2.79-.97-5.39-2.38-8.03-3.69-3.43-1.71-6.64-3.81-9.71-6.08 2.71 3.06 5.69 5.86 8.7 8.61 4.27 3.76 8.74 7.31 13.63 10.23 3.98 2.45 8.29 4.4 12.84 5.51 1.46.37 2.96.46 4.45.6-1.25 1.1-2.63 2.04-3.99 2.98-9.61 6.54-20.01 11.86-30.69 16.43-20.86 8.7-43.17 13.97-65.74 15.34-4.66.24-9.32.36-13.98.36-4.98-.11-9.97-.13-14.92-.65-11.2-.76-22.29-2.73-33.17-5.43-10.35-2.71-20.55-6.12-30.3-10.55-8.71-3.86-17.12-8.42-24.99-13.79-1.83-1.31-3.74-2.53-5.37-4.08 6.6-1.19 13.03-3.39 18.99-6.48 5.74-2.86 10.99-6.66 15.63-11.07 2.24-2.19 4.29-4.59 6.19-7.09-3.43 2.13-6.93 4.15-10.62 5.78-4.41 2.16-9.07 3.77-13.81 5.02-5.73 1.52-11.74 1.73-17.61 1.14-8.13-.95-15.86-4.27-22.51-8.98-4.32-2.94-8.22-6.43-11.96-10.06-9.93-10.16-18.2-21.81-25.66-33.86-3.94-6.27-7.53-12.75-11.12-19.22-1.05-2.04-2.15-4.05-3.18-6.1 2.85 2.92 5.57 5.97 8.43 8.88 8.99 8.97 18.56 17.44 29.16 24.48 7.55 4.9 15.67 9.23 24.56 11.03 3.11.73 6.32.47 9.47.81 2.77.28 5.56.2 8.34.3 5.05.06 10.11.04 15.16-.16 3.65-.16 7.27-.66 10.89-1.09 2.07-.25 4.11-.71 6.14-1.2 3.88-.95 8.11-.96 11.83.61 4.76 1.85 8.44 5.64 11.38 9.71 2.16 3.02 4.06 6.22 5.66 9.58 1.16 2.43 2.46 4.79 3.55 7.26 1 2.24 2.15 4.42 3.42 6.52.67 1.02 1.4 2.15 2.62 2.55 1.06-.75 1.71-1.91 2.28-3.03 2.1-4.16 3.42-8.65 4.89-13.05 2.02-6.59 3.78-13.27 5.19-20.02 2.21-9.25 3.25-18.72 4.54-28.13.56-3.98.83-7.99 1.31-11.97.87-10.64 1.9-21.27 2.24-31.94.08-1.86.24-3.71.25-5.57.01-4.35.25-8.69.22-13.03-.01-2.38-.01-4.76 0-7.13.05-5.07-.2-10.14-.22-15.21-.2-6.61-.71-13.2-1.29-19.78-.73-5.88-1.55-11.78-3.12-17.51-2.05-7.75-5.59-15.03-9.8-21.82-3.16-5.07-6.79-9.88-11.09-14.03-3.88-3.86-8.58-7.08-13.94-8.45-1.5-.41-3.06-.45-4.59-.64.07-2.99.7-5.93 1.26-8.85 1.59-7.71 3.8-15.3 6.76-22.6 1.52-4.03 3.41-7.9 5.39-11.72 3.45-6.56 7.62-12.79 12.46-18.46zm31.27 1.7c.35-.06.71-.12 1.07-.19.19 1.79.09 3.58.1 5.37v38.13c-.01 1.74.13 3.49-.15 5.22-.36-.03-.71-.05-1.06-.05-.95-3.75-1.72-7.55-2.62-11.31-.38-1.53-.58-3.09-1.07-4.59-1.7-.24-3.43-.17-5.15-.2-5.06-.01-10.13 0-15.19-.01-1.66-.01-3.32.09-4.98-.03-.03-.39-.26-.91.16-1.18 1.28-.65 2.72-.88 4.06-1.35 3.43-1.14 6.88-2.16 10.31-3.31 1.39-.48 2.9-.72 4.16-1.54.04-.56.02-1.13-.05-1.68-1.23-.55-2.53-.87-3.81-1.28-3.13-1.03-6.29-1.96-9.41-3.02-1.79-.62-3.67-1-5.41-1.79-.03-.37-.07-.73-.11-1.09 5.09-.19 10.2.06 15.3-.12 3.36-.13 6.73.08 10.09-.07.12-.39.26-.77.37-1.16 1.08-4.94 2.33-9.83 3.39-14.75zm5.97-.2c.36.05.72.12 1.08.2.98 3.85 1.73 7.76 2.71 11.61.36 1.42.56 2.88 1.03 4.27 2.53.18 5.07-.01 7.61.05 5.16.12 10.33.12 15.49.07.76-.01 1.52.03 2.28.08-.04.36-.07.72-.1 1.08-1.82.83-3.78 1.25-5.67 1.89-3.73 1.23-7.48 2.39-11.22 3.57-.57.17-1.12.42-1.67.64-.15.55-.18 1.12-.12 1.69.87.48 1.82.81 2.77 1.09 4.88 1.52 9.73 3.14 14.63 4.6.38.13.78.27 1.13.49.4.27.23.79.15 1.18-1.66.13-3.31.03-4.97.04-5.17.01-10.33-.01-15.5.01-1.61.03-3.22-.02-4.82.21-.52 1.67-.72 3.42-1.17 5.11-.94 3.57-1.52 7.24-2.54 10.78-.36.01-.71.02-1.06.06-.29-1.73-.15-3.48-.15-5.22v-38.13c.02-1.78-.08-3.58.11-5.37zM65.05 168.33c1.12-2.15 2.08-4.4 3.37-6.46-1.82 7.56-2.91 15.27-3.62 23-.8 7.71-.85 15.49-.54 23.23 1.05 19.94 5.54 39.83 14.23 57.88 2.99 5.99 6.35 11.83 10.5 17.11 6.12 7.47 12.53 14.76 19.84 21.09 4.8 4.1 9.99 7.78 15.54 10.8 3.27 1.65 6.51 3.39 9.94 4.68 5.01 2.03 10.19 3.61 15.42 4.94 3.83.96 7.78 1.41 11.52 2.71 5 1.57 9.47 4.61 13.03 8.43 4.93 5.23 8.09 11.87 10.2 18.67.99 2.9 1.59 5.91 2.17 8.92.15.75.22 1.52.16 2.29-6.5 2.78-13.26 5.06-20.26 6.18-4.11.78-8.29.99-12.46 1.08-10.25.24-20.47-1.76-30.12-5.12-3.74-1.42-7.49-2.85-11.03-4.72-8.06-3.84-15.64-8.7-22.46-14.46-2.92-2.55-5.83-5.13-8.4-8.03-9.16-9.83-16.3-21.41-21.79-33.65-2.39-5.55-4.61-11.18-6.37-16.96-1.17-3.94-2.36-7.89-3.26-11.91-.75-2.94-1.22-5.95-1.87-8.92-.46-2.14-.69-4.32-1.03-6.48-.85-5.43-1.28-10.93-1.33-16.43.11-6.18.25-12.37 1.07-18.5.4-2.86.67-5.74 1.15-8.6.98-5.7 2.14-11.37 3.71-16.93 3.09-11.65 7.48-22.95 12.69-33.84zm363.73-6.44c1.1 1.66 1.91 3.48 2.78 5.26 2.1 4.45 4.24 8.9 6.02 13.49 7.61 18.76 12.3 38.79 13.04 59.05.02 1.76.07 3.52.11 5.29.13 9.57-1.27 19.09-3.18 28.45-.73 3.59-1.54 7.17-2.58 10.69-4.04 14.72-10 29-18.41 41.78-8.21 12.57-19.01 23.55-31.84 31.41-5.73 3.59-11.79 6.64-18.05 9.19-5.78 2.19-11.71 4.03-17.8 5.11-6.4 1.05-12.91 1.52-19.4 1.23-7.92-.48-15.78-2.07-23.21-4.85-1.94-.8-3.94-1.46-5.84-2.33-.21-1.51.25-2.99.53-4.46 1.16-5.74 3.03-11.36 5.7-16.58 2.37-4.51 5.52-8.65 9.46-11.9 2.43-2.05 5.24-3.61 8.16-4.83 3.58-1.5 7.47-1.97 11.24-2.83 7.23-1.71 14.37-3.93 21.15-7 10.35-4.65 19.71-11.38 27.65-19.46 1.59-1.61 3.23-3.18 4.74-4.87 3.37-3.76 6.71-7.57 9.85-11.53 7.48-10.07 12.82-21.59 16.71-33.48 1.58-5.3 3.21-10.6 4.21-16.05.63-2.87 1.04-5.78 1.52-8.68.87-6.09 1.59-12.22 1.68-18.38.12-6.65.14-13.32-.53-19.94-.73-7.99-1.87-15.96-3.71-23.78z"] }; +var faOpencart = { prefix: 'fab', iconName: 'opencart', icon: [640, 512, [], "f23d", "M423.3 440.7c0 25.3-20.3 45.6-45.6 45.6s-45.8-20.3-45.8-45.6 20.6-45.8 45.8-45.8c25.4 0 45.6 20.5 45.6 45.8zm-253.9-45.8c-25.3 0-45.6 20.6-45.6 45.8s20.3 45.6 45.6 45.6 45.8-20.3 45.8-45.6-20.5-45.8-45.8-45.8zm291.7-270C158.9 124.9 81.9 112.1 0 25.7c34.4 51.7 53.3 148.9 373.1 144.2 333.3-5 130 86.1 70.8 188.9 186.7-166.7 319.4-233.9 17.2-233.9z"] }; +var faOpenid = { prefix: 'fab', iconName: 'openid', icon: [448, 512, [], "f19b", "M271.5 432l-68 32C88.5 453.7 0 392.5 0 318.2c0-71.5 82.5-131 191.7-144.3v43c-71.5 12.5-124 53-124 101.3 0 51 58.5 93.3 135.7 103v-340l68-33.2v384zM448 291l-131.3-28.5 36.8-20.7c-19.5-11.5-43.5-20-70-24.8v-43c46.2 5.5 87.7 19.5 120.3 39.3l35-19.8L448 291z"] }; +var faOpera = { prefix: 'fab', iconName: 'opera', icon: [496, 512, [], "f26a", "M313.9 32.7c-170.2 0-252.6 223.8-147.5 355.1 36.5 45.4 88.6 75.6 147.5 75.6 36.3 0 70.3-11.1 99.4-30.4-43.8 39.2-101.9 63-165.3 63-3.9 0-8 0-11.9-.3C104.6 489.6 0 381.1 0 248 0 111 111 0 248 0h.8c63.1.3 120.7 24.1 164.4 63.1-29-19.4-63.1-30.4-99.3-30.4zm101.8 397.7c-40.9 24.7-90.7 23.6-132-5.8 56.2-20.5 97.7-91.6 97.7-176.6 0-84.7-41.2-155.8-97.4-176.6 41.8-29.2 91.2-30.3 132.9-5 105.9 98.7 105.5 265.7-1.2 364z"] }; +var faOptinMonster = { prefix: 'fab', iconName: 'optin-monster', icon: [576, 512, [], "f23c", "M550.671 450.303c0 11.62-15.673 19.457-32.158 14.863-12.16-3.243-31.346-17.565-36.211-27.294-5.674-11.62 4.054-32.698 18.916-30.806 15.674 1.621 49.453 25.401 49.453 43.237zM372.86 75.223c-3.783-72.151-100.796-79.718-125.928-23.51 44.588-24.321 90.257-15.673 125.928 23.51zM74.795 407.066c-15.673 1.621-49.452 25.401-49.452 43.237 0 11.62 15.673 19.457 32.157 14.863 12.16-3.243 31.076-17.565 35.94-27.294 5.946-11.62-3.782-32.698-18.645-30.806zm497.765 14.322c1.081 3.513 1.892 7.026 1.892 10.809.81 31.616-44.317 64.045-73.503 65.125-17.295.81-34.59-8.377-42.696-23.51-113.497 4.053-226.994 4.864-340.22 0-8.377 15.133-25.672 24.05-42.967 23.51-28.915-1.081-74.043-33.509-73.503-65.125.27-3.783.811-7.296 1.892-10.809-5.566-9.463-4.845-15.282 5.405-11.62 3.243-5.134 7.026-9.458 11.08-13.782-2.57-10.917 1.27-14.094 11.079-9.188 4.594-3.243 9.998-6.485 15.944-9.188 0-15.757 11.839-11.131 17.295-5.675 12.467-1.78 20.129.709 26.753 5.675v-19.726c-12.987 0-40.641-11.375-45.94-36.212-4.974-20.725 2.607-38.075 25.132-47.56.81-5.945 8.107-14.052 14.862-15.944 7.567-1.892 12.431 4.594 14.052 10.269 7.425 0 17.757 1.465 21.078 8.107 5.405-.541 11.079-1.352 16.484-1.892-2.432-1.892-5.134-3.513-8.107-4.594-5.134-8.917-13.782-11.079-24.591-11.62 0-.81 0-1.621.27-2.702-19.727-.541-44.048-5.675-54.857-17.835-21.321-23.638-15.935-83.577 12.16-103.498 8.377-5.675 21.618-.811 22.699 9.728 2.425 20.598.399 26.833 26.212 25.942 8.107-7.836 16.755-14.592 26.483-19.997-14.862-1.352-28.914 1.621-43.778 3.783 12.752-12.48 23.953-25.442 56.748-42.427 23.511-11.89 49.993-20.808 76.205-23.239-18.646-7.837-39.993-11.891-59.721-16.484 76.475-16.214 174.569-22.159 244.289 37.562 18.105 15.403 32.427 36.211 42.696 59.992 39.799 4.853 36.47-5.581 38.643-25.132 1.081-10.269 14.322-15.403 22.699-9.458 14.862 10.539 22.159 30.806 24.59 48.101 2.162 17.835.27 41.345-12.43 55.127-10.809 12.16-34.32 17.565-53.776 18.105v2.703c-11.08.27-20.268 2.432-25.673 11.62-2.972 1.081-5.674 2.703-8.377 4.594 5.675.54 11.35 1.351 16.755 1.891 1.869-5.619 12.535-8.377 21.077-8.377 1.621-5.405 6.756-11.89 14.052-10.269s14.052 9.998 14.863 15.944c10.809 4.324 22.159 12.16 25.131 25.672 1.892 8.107 1.621 15.133.27 21.888-5.726 25.262-33.361 36.212-45.939 36.212 0 6.756 0 13.241-.27 19.726 8.01-6.006 16.367-7.158 26.752-5.675 5.919-5.919 17.565-9.41 17.565 5.675 5.675 2.703 11.349 5.945 15.944 9.188 10.1-5.051 13.669-.539 10.809 9.188 4.053 4.323 8.107 8.917 11.079 13.782 10.136-3.62 11.021 2.078 5.409 11.62zm-73.773-254.016c17.295 6.756 26.212 22.159 30.265 35.67 1.081-10.539-2.702-39.453-13.782-51.073-7.296-7.296-14.052-5.134-14.052.81.001 6.216-1.35 11.62-2.431 14.593zm-18.646 12.43c12.971 15.673 17.024 41.615 12.7 62.963 10.809-2.162 20.537-6.215 26.212-12.16 1.892-2.162 3.783-4.864 4.864-7.566-1.081-21.348-10.269-42.697-29.725-48.912-3.242 3.243-9.187 4.864-14.051 5.675zm-21.889.811c7.567 20.537 12.431 42.696 14.322 64.585 3.513 0 7.567-.27 11.62-.811 5.945-24.321-.27-51.614-14.052-63.504-3.783 0-8.107 0-11.89-.27zM77.768 167.372c-1.081-2.973-2.432-8.377-2.432-14.593 0-5.945-7.026-8.107-14.052-.81-11.35 11.62-14.863 40.534-13.782 51.073 4.053-13.512 12.971-28.915 30.266-35.67zm5.675 75.394c-4.324-21.348-.27-47.291 12.701-62.963-4.865-.811-10.809-2.432-14.052-5.675-19.457 6.215-28.375 27.563-29.726 48.912 1.351 2.702 2.972 5.404 4.864 7.566 5.675 6.215 15.403 9.998 26.213 12.16zm41.345-61.073c-5.134 1.081-9.998 2.973-14.862 4.865l-12.16 5.134v-.27c-7.296 14.052-9.999 34.319-5.405 52.965 4.594.541 8.647.811 12.7.811 2.432-22.159 9.188-43.778 19.727-63.505zm88.095-23.239c0 42.155 34.319 76.205 76.205 76.205s76.205-34.05 76.205-76.205c0-41.886-34.319-75.935-76.205-75.935s-76.205 34.049-76.205 75.935zm152.41 97.283c9.969 50.608 3.299 64.692 16.484 58.099 15.944-8.107 22.699-39.183 22.97-57.019-12.971-.81-26.213-.81-39.454-1.08zm-71.611-.541v-.27c-.27 5.134.27 38.103 4.324 41.075 11.079 5.405 39.453 4.594 51.073 1.081 5.405-1.621 2.432-37.022 1.621-41.886-18.916-.27-38.102-.27-57.018 0zm-14.053 0v-.27c-19.456.27-38.642.27-57.829.811-1.892 9.187-4.594 48.911 1.892 51.614 12.971 5.675 41.616 5.134 54.586 1.621 4.595-2.432 2.433-45.399 1.351-53.776zm-85.662 57.56c5.405 2.432 8.647 2.432 9.728-4.324 1.892-8.647 2.432-36.752 4.865-52.155-12.16.27-24.591.811-36.752 1.621-5.405 19.727.27 45.129 22.159 54.858zm-65.666-11.08c43.778 47.02 92.689 85.663 155.923 106.47 67.558-19.186 115.659-59.991 163.219-107.011-11.095-4.315-7.715-10.363-7.296-11.62-8.918-.81-17.835-1.892-26.483-2.702-9.458 32.968-35.94 52.965-46.75 31.616-2.702-5.134-3.513-11.62-4.594-16.754-3.783 8.377-13.242 8.107-24.591 8.918-13.241 1.081-31.617 1.351-44.048-2.972-2.972 12.971-11.079 12.971-26.752 14.322-14.052 1.352-48.642 4.054-54.857-10.809-1.081 28.644-35.13 9.998-45.129-7.026-3.243-5.675-5.405-11.35-7.026-17.565-7.837.81-15.673 1.621-23.511 2.702 2.443 3.663 1.549 9.052-8.105 12.431zM115.6 453.545c-5.674-23.239-18.646-49.722-33.508-54.046-22.429-6.756-68.909 23.51-66.207 54.586 12.701 19.457 39.994 35.67 59.181 36.481 17.835.81 35.94-11.08 39.724-28.914.539-2.432.81-5.134.81-8.107zm7.296-5.944c33.509-19.457 69.179-35.671 105.931-47.02-38.643-20.537-68.098-47.831-97.283-77.016-2.162 1.352-5.134 2.432-7.836 3.513-1.637 4.91 8.718 5.33 5.405 12.431-2.162 4.054-8.648 7.567-15.133 9.188-2.161 2.702-5.134 4.864-7.836 6.485h-.27c-.27 13.511-.27 27.024.27 40.535 8.939 15.964 15.426 33.314 16.752 51.884zm320.764 12.7c-36.752-21.348-74.044-41.345-115.659-52.965-13.782 6.215-27.833 11.349-42.155 15.403-2.162.811-2.162.811-4.324 0-11.89-3.783-23.239-8.107-34.859-13.241-40.265 11.62-77.286 29.185-112.416 50.803h-.27v.27c.27 0 .27 0 .27-.27 103.227 4.054 206.455 3.513 309.413 0zm27.023-64.045l-.27.27c.541-13.782.811-27.563.811-41.345-2.973-1.621-5.675-4.054-8.107-6.756-6.485-1.351-12.971-5.134-15.133-8.918-1.892-4.053 1.351-7.566 5.945-10.269-.27-.541-.541-1.621-.541-2.432-2.972-.811-5.405-1.892-7.567-3.243-31.616 29.455-65.396 56.749-103.498 76.746 38.914 11.62 75.935 28.104 111.875 47.561 1.05-14.692 7.231-35.749 16.485-51.614zm23.24 3.244c-14.593 4.323-27.834 30.806-33.509 54.046 0 23.826 21.278 37.897 40.534 37.022 19.186-.811 46.48-17.024 59.181-36.481 2.973-31.077-43.507-61.344-66.206-54.587zM290.709 134.133c.045 0 .089.003.134.003.046 0 .09-.003.136-.003h-.27zm0 96.743c28.645 0 51.884-21.618 51.884-48.371 0-36.092-40.507-58.079-72.151-44.318 9.458 2.972 16.484 11.62 16.484 21.618 0 23.257-33.291 31.955-46.48 11.35-7.297 34.067 19.368 59.721 50.263 59.721zM68.039 474.083c.54 6.486 12.16 12.701 21.618 9.458 6.756-2.703 14.593-10.539 17.295-16.214 2.973-7.026-1.081-19.997-9.728-18.375-8.917 1.621-29.725 16.754-29.185 25.131zm410.75-25.131c-8.377-1.621-12.431 11.349-9.458 18.375 2.432 5.675 10.269 13.511 17.295 16.214 9.187 3.243 21.078-2.972 21.348-9.458.811-8.377-20.267-23.51-29.185-25.131z"] }; +var faOsi = { prefix: 'fab', iconName: 'osi', icon: [495, 512, [], "f41a", "M0 259.2C2.3 123.4 97.4 26.8 213.8 11.1c138.8-18.6 255.6 75.8 278 201.1 21.3 118.8-44 230-151.6 274-9.3 3.8-14.4 1.7-18-7.7-17.8-46.3-35.6-92.7-53.4-139-3.1-8.1-1-13.2 7-16.8 24.2-11 39.3-29.4 43.3-55.8 6.4-42.4-24.5-78.7-64.5-82.2-39-3.4-71.8 23.7-77.5 59.7-5.2 33 11.1 63.7 41.9 77.7 9.6 4.4 11.5 8.6 7.8 18.4-17.9 46.6-35.8 93.2-53.7 139.9-2.6 6.9-8.3 9.3-15.5 6.5-52.6-20.3-101.4-61-130.8-119C1.9 318.7 1.6 280.2 0 259.2zm20.9-1.9c.4 6.6.6 14.3 1.3 22.1 6.3 71.9 49.6 143.5 131 183.1 3.2 1.5 4.4.8 5.6-2.3 14.9-39.1 29.9-78.2 45-117.3 1.3-3.3.6-4.8-2.4-6.7-31.6-19.9-47.3-48.5-45.6-86 1-21.6 9.3-40.5 23.8-56.3 30-32.7 77-39.8 115.5-17.6 31.9 18.4 49.5 53.8 45.2 90.4-3.6 30.6-19.3 53.9-45.7 69.8-2.7 1.6-3.5 2.9-2.3 6 15.2 39.2 30.2 78.4 45.2 117.7 1.2 3.1 2.4 3.8 5.6 2.3 35.5-16.6 65.2-40.3 88.1-72 34.8-48.2 49.1-101.9 42.3-161C459.8 112 354.1 14.7 218 31.5 111.9 44.5 22.7 134 20.9 257.3z"] }; +var faPage4 = { prefix: 'fab', iconName: 'page4', icon: [496, 512, [], "f3d7", "M248 504C111 504 0 393 0 256S111 8 248 8c20.9 0 41.3 2.6 60.7 7.5L42.3 392H248v112zm0-143.6V146.8L98.6 360.4H248zm96 31.6v92.7c45.7-19.2 84.5-51.7 111.4-92.7H344zm57.4-138.2l-21.2 8.4 21.2 8.3v-16.7zm-20.3 54.5c-6.7 0-8 6.3-8 12.9v7.7h16.2v-10c0-5.9-2.3-10.6-8.2-10.6zM496 256c0 37.3-8.2 72.7-23 104.4H344V27.3C433.3 64.8 496 153.1 496 256zM360.4 143.6h68.2V96h-13.9v32.6h-13.9V99h-13.9v29.6h-12.7V96h-13.9v47.6zm68.1 185.3H402v-11c0-15.4-5.6-25.2-20.9-25.2-15.4 0-20.7 10.6-20.7 25.9v25.3h68.2v-15zm0-103l-68.2 29.7V268l68.2 29.5v-16.6l-14.4-5.7v-26.5l14.4-5.9v-16.9zm-4.8-68.5h-35.6V184H402v-12.2h11c8.6 15.8 1.3 35.3-18.6 35.3-22.5 0-28.3-25.3-15.5-37.7l-11.6-10.6c-16.2 17.5-12.2 63.9 27.1 63.9 34 0 44.7-35.9 29.3-65.3z"] }; +var faPagelines = { prefix: 'fab', iconName: 'pagelines', icon: [384, 512, [], "f18c", "M384 312.7c-55.1 136.7-187.1 54-187.1 54-40.5 81.8-107.4 134.4-184.6 134.7-16.1 0-16.6-24.4 0-24.4 64.4-.3 120.5-42.7 157.2-110.1-41.1 15.9-118.6 27.9-161.6-82.2 109-44.9 159.1 11.2 178.3 45.5 9.9-24.4 17-50.9 21.6-79.7 0 0-139.7 21.9-149.5-98.1 119.1-47.9 152.6 76.7 152.6 76.7 1.6-16.7 3.3-52.6 3.3-53.4 0 0-106.3-73.7-38.1-165.2 124.6 43 61.4 162.4 61.4 162.4.5 1.6.5 23.8 0 33.4 0 0 45.2-89 136.4-57.5-4.2 134-141.9 106.4-141.9 106.4-4.4 27.4-11.2 53.4-20 77.5 0 0 83-91.8 172-20z"] }; +var faPalfed = { prefix: 'fab', iconName: 'palfed', icon: [576, 512, [], "f3d8", "M384.9 193.9c0-47.4-55.2-44.2-95.4-29.8-1.3 39.4-2.5 80.7-3 119.8.7 2.8 2.6 6.2 15.1 6.2 36.8 0 83.4-42.8 83.3-96.2zm-194.5 72.2c.2 0 6.5-2.7 11.2-2.7 26.6 0 20.7 44.1-14.4 44.1-21.5 0-37.1-18.1-37.1-43 0-42 42.9-95.6 100.7-126.5 1-12.4 3-22 10.5-28.2 11.2-9 26.6-3.5 29.5 11.1 72.2-22.2 135.2 1 135.2 72 0 77.9-79.3 152.6-140.1 138.2-.1 39.4.9 74.4 2.7 100v.2c.2 3.4.6 12.5-5.3 19.1-9.6 10.6-33.4 10-36.4-22.3-4.1-44.4.2-206.1 1.4-242.5-21.5 15-58.5 50.3-58.5 75.9.2 2.5.4 4 .6 4.6zM8 181.1s-.1 37.4 38.4 37.4h30l22.4 217.2s0 44.3 44.7 44.3h288.9s44.7-.4 44.7-44.3l22.4-217.2h30s38.4 1.2 38.4-37.4c0 0 .1-37.4-38.4-37.4h-30.1c-7.3-25.6-30.2-74.3-119.4-74.3h-28V50.3s-2.7-18.4-21.1-18.4h-85.8s-21.1 0-21.1 18.4v19.1h-28.1s-105 4.2-120.5 74.3h-29S8 142.5 8 181.1z"] }; +var faPatreon = { prefix: 'fab', iconName: 'patreon', icon: [512, 512, [], "f3d9", "M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z"] }; +var faPaypal = { prefix: 'fab', iconName: 'paypal', icon: [384, 512, [], "f1ed", "M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z"] }; +var faPeriscope = { prefix: 'fab', iconName: 'periscope', icon: [448, 512, [], "f3da", "M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z"] }; +var faPhabricator = { prefix: 'fab', iconName: 'phabricator', icon: [496, 512, [], "f3db", "M323 262.1l-.1-13s21.7-19.8 21.1-21.2l-9.5-20c-.6-1.4-29.5-.5-29.5-.5l-9.4-9.3s.2-28.5-1.2-29.1l-20.1-9.2c-1.4-.6-20.7 21-20.7 21l-13.1-.2s-20.5-21.4-21.9-20.8l-20 8.3c-1.4.5.2 28.9.2 28.9l-9.1 9.1s-29.2-.9-29.7.4l-8.1 19.8c-.6 1.4 21 21 21 21l.1 12.9s-21.7 19.8-21.1 21.2l9.5 20c.6 1.4 29.5.5 29.5.5l9.4 9.3s-.2 31.8 1.2 32.3l20.1 8.3c1.4.6 20.7-23.5 20.7-23.5l13.1.2s20.5 23.8 21.8 23.3l20-7.5c1.4-.6-.2-32.1-.2-32.1l9.1-9.1s29.2.9 29.7-.5l8.1-19.8c.7-1.1-20.9-20.7-20.9-20.7zm-44.9-8.7c.7 17.1-12.8 31.6-30.1 32.4-17.3.8-32.1-12.5-32.8-29.6-.7-17.1 12.8-31.6 30.1-32.3 17.3-.8 32.1 12.5 32.8 29.5zm201.2-37.9l-97-97-.1.1c-75.1-73.3-195.4-72.8-269.8 1.6-50.9 51-27.8 27.9-95.7 95.3-22.3 22.3-22.3 58.7 0 81 69.9 69.4 46.4 46 97.4 97l.1-.1c75.1 73.3 195.4 72.9 269.8-1.6 51-50.9 27.9-27.9 95.3-95.3 22.3-22.3 22.3-58.7 0-81zM140.4 363.8c-59.6-59.5-59.6-156 0-215.5 59.5-59.6 156-59.5 215.6 0 59.5 59.5 59.6 156 0 215.6-59.6 59.5-156 59.4-215.6-.1z"] }; +var faPhoenixFramework = { prefix: 'fab', iconName: 'phoenix-framework', icon: [640, 512, [], "f3dc", "M212.9 344.3c3.8-.1 22.8-1.4 25.6-2.2-2.4-2.6-43.6-1-68-49.6-4.3-8.6-7.5-17.6-6.4-27.6 2.9-25.5 32.9-30 52-18.5 36 21.6 63.3 91.3 113.7 97.5 37 4.5 84.6-17 108.2-45.4-.6-.1-.8-.2-1-.1-.4.1-.8.2-1.1.3-33.3 12.1-94.3 9.7-134.7-14.8-37.6-22.8-53.1-58.7-51.8-74.6 1.8-21.3 22.9-23.2 35.9-19.6 14.4 3.9 24.4 17.6 38.9 27.4 15.6 10.4 32.9 13.7 51.3 10.3 14.9-2.7 34.4-12.3 36.5-14.5-1.1-.1-1.8-.1-2.5-.2-6.2-.6-12.4-.8-18.5-1.7C279.8 194.5 262.1 47.4 138.5 37.9 94.2 34.5 39.1 46 2.2 72.9c-.8.6-1.5 1.2-2.2 1.8.1.2.1.3.2.5.8 0 1.6-.1 2.4-.2 6.3-1 12.5-.8 18.7.3 23.8 4.3 47.7 23.1 55.9 76.5 5.3 34.3-.7 50.8 8 86.1 19 77.1 91 107.6 127.7 106.4zM75.3 64.9c-.9-1-.9-1.2-1.3-2 12.1-2.6 24.2-4.1 36.6-4.8-1.1 14.7-22.2 21.3-35.3 6.8zm196.9 350.5c-42.8 1.2-92-26.7-123.5-61.4-4.6-5-16.8-20.2-18.6-23.4l.4-.4c6.6 4.1 25.7 18.6 54.8 27 24.2 7 48.1 6.3 71.6-3.3 22.7-9.3 41-.5 43.1 2.9-18.5 3.8-20.1 4.4-24 7.9-5.1 4.4-4.6 11.7 7 17.2 26.2 12.4 63-2.8 97.2 25.4 2.4 2 8.1 7.8 10.1 10.7-.1.2-.3.3-.4.5-4.8-1.5-16.4-7.5-40.2-9.3-24.7-2-46.3 5.3-77.5 6.2zm174.8-252c16.4-5.2 41.3-13.4 66.5-3.3 16.1 6.5 26.2 18.7 32.1 34.6 3.5 9.4 5.1 19.7 5.1 28.7-.2 0-.4 0-.6.1-.2-.4-.4-.9-.5-1.3-5-22-29.9-43.8-67.6-29.9-50.2 18.6-130.4 9.7-176.9-48-.7-.9-2.4-1.7-1.3-3.2.1-.2 2.1.6 3 1.3 18.1 13.4 38.3 21.9 60.3 26.2 30.5 6.1 54.6 2.9 79.9-5.2zm102.7 117.5c-32.4.2-33.8 50.1-103.6 64.4-18.2 3.7-38.7 4.6-44.9 4.2v-.4c2.8-1.5 14.7-2.6 29.7-16.6 7.9-7.3 15.3-15.1 22.8-22.9 19.5-20.2 41.4-42.2 81.9-39 23.1 1.8 29.3 8.2 36.1 12.7.3.2.4.5.7.9-.5 0-.7.1-.9 0-7-2.7-14.3-3.3-21.8-3.3zm-12.3-24.1c-.1.2-.1.4-.2.6-28.9-4.4-48-7.9-68.5 4-17 9.9-31.4 20.5-62 24.4-27.1 3.4-45.1 2.4-66.1-8-.3-.2-.6-.4-1-.6 0-.2.1-.3.1-.5 24.9 3.8 36.4 5.1 55.5-5.8 22.3-12.9 40.1-26.6 71.3-31 29.6-4.1 51.3 2.5 70.9 16.9zM268.6 97.3c-.6-.6-1.1-1.2-2.1-2.3 7.6 0 29.7-1.2 53.4 8.4 19.7 8 32.2 21 50.2 32.9 11.1 7.3 23.4 9.3 36.4 8.1 4.3-.4 8.5-1.2 12.8-1.7.4-.1.9 0 1.5.3-.6.4-1.2.9-1.8 1.2-8.1 4-16.7 6.3-25.6 7.1-26.1 2.6-50.3-3.7-73.4-15.4-19.3-9.9-36.4-22.9-51.4-38.6zM640 335.7c-3.5 3.1-22.7 11.6-42.7 5.3-12.3-3.9-19.5-14.9-31.6-24.1-10-7.6-20.9-7.9-28.1-8.4.6-.8.9-1.2 1.2-1.4 14.8-9.2 30.5-12.2 47.3-6.5 12.5 4.2 19.2 13.5 30.4 24.2 10.8 10.4 21 9.9 23.1 10.5.1-.1.2 0 .4.4zm-212.5 137c2.2 1.2 1.6 1.5 1.5 2-18.5-1.4-33.9-7.6-46.8-22.2-21.8-24.7-41.7-27.9-48.6-29.7.5-.2.8-.4 1.1-.4 13.1.1 26.1.7 38.9 3.9 25.3 6.4 35 25.4 41.6 35.3 3.2 4.8 7.3 8.3 12.3 11.1z"] }; +var faPhoenixSquadron = { prefix: 'fab', iconName: 'phoenix-squadron', icon: [513, 512, [], "f511", "M96.24 62.81C142.91 26.57 202.15 6.57 261.28 8.08c29.67-.38 59.29 5.38 87.17 15.37-24.2-4.64-49.18-6.35-73.6-2.45-43 5.35-83.26 27.23-112.16 59.35 5.69-.99 10.81-3.68 16.07-5.88 18.19-7.89 37.6-13.29 57.4-14.87 19.8-2.14 39.75-.43 59.45 1.93-14.46 2.79-29.2 4.58-43.11 9.61-34.53 11.11-65.46 33.26-86.55 62.82-13.84 19.77-23.7 42.99-24.74 67.33-.35 16.54 5.23 34.91 19.89 44.17 11.13 6.66 24.85 9.39 37.63 6.76 15.49-2.47 30.16-8.67 43.73-16.38 11.55-6.84 22.73-14.59 32.05-24.32 3.8-3.23 2.54-8.48 2.63-12.83-2.13-.34-4.4-1.11-6.32.3a203.975 203.975 0 0 1-35.93 15.42c-20.07 6.19-42.28 8.48-62.28.78 12.83 1.73 26.14.31 37.85-5.46 20.29-9.75 36.92-25.27 54.6-38.88 27.84-21.29 57.64-40.11 89.17-55.47 25.78-12.01 53.09-22.85 81.81-24.2-15.68 13.76-32.25 26.6-46.92 41.51-14.55 14.04-27.54 29.58-40.23 45.31-3.53 4.61-8.98 6.96-13.62 10.19-22.24 15.03-40.6 35.96-52.04 60.28-9.36 19.74-14.55 41.97-11.81 63.84 1.95 13.73 8.74 27.67 20.96 35.01 12.94 7.99 29.14 8.09 43.61 5.11 32.9-7.47 61.61-28.97 81.28-56 20.5-27.6 30.61-62.38 29.25-96.64-.52-7.52-1.58-15-1.67-22.55 8.02 19.54 14.87 39.83 16.7 61.01 2.01 14.32.75 28.84-1.62 43.02-1.92 11.02-5.69 21.58-7.81 32.53 20.36-22.73 34.17-51.24 39.46-81.31 5.72-35.37.58-72.36-14.25-104.95 20.84 32.12 32.43 69.79 35.81 107.8.5 12.77.5 25.58 0 38.34-2.91 34.26-12.97 67.95-29.76 98-26.2 47.48-68.2 85.89-117.54 108.32-78.52 36.34-175.2 31.41-248.72-14.72-38.84-23.78-71.06-58.32-91.68-98.96C10.72 337.43 2.04 305.5 0 273.13V241.7c3.94-69.97 40.99-136.32 96.24-178.89m222.65 80.57c5.51-.8 10.82-2.57 16.02-4.5 4.99-1.77 9.27-5.95 10.35-11.25-8.91 5-17.95 9.95-26.37 15.75z"] }; +var faPhp = { prefix: 'fab', iconName: 'php', icon: [640, 512, [], "f457", "M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z"] }; +var faPiedPiper = { prefix: 'fab', iconName: 'pied-piper', icon: [448, 512, [], "f2ae", "M32 419L0 479.2l.8-328C.8 85.3 54 32 120 32h327.2c-93 28.9-189.9 94.2-253.9 168.6C122.7 282 82.6 338 32 419M448 32S305.2 98.8 261.6 199.1c-23.2 53.6-28.9 118.1-71 158.6-28.9 27.8-69.8 38.2-105.3 56.3-23.2 12-66.4 40.5-84.9 66h328.4c66 0 119.3-53.3 119.3-119.2-.1 0-.1-328.8-.1-328.8z"] }; +var faPiedPiperAlt = { prefix: 'fab', iconName: 'pied-piper-alt', icon: [576, 512, [], "f1a8", "M242 187c6.3-11.8 13.2-17 25.9-21.8 27.3-10.3 40.2-30.5 58.9-51.1 11.9 8.4 12 24.6 31.6 23v21.8l6.3.3c37.4-14.4 74.7-30.2 106.6-54.6 48.3-36.8 52.9-50 81.3-100l2-2.6c-.6 14.1-6.3 27.3-12.4 39.9-30.5 63.8-78.7 100.3-146.8 116.7-12.4 2.9-26.4 3.2-37.6 8.9 1.4 9.8 13.2 18.1 13.2 23 0 3.4-5.5 7.2-7.5 8.6-11.2-12.9-16.1-19.3-22.7-22.1-7.6-3.5-63.9-6.4-98.8 10zm137.9 256.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9L244 246zm-12.6 31.8l24.1 61.2 21-13.8-31.3-50.9-13.8 3.5zM555.5 0l-.6 1.1-.3.9.6-.6.3-1.4zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46v27.3l11.8-3.4-2.9-23.8h-8.9zm76.1 2.9c0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3l2 12.4c9-1.5 58.4-6.6 58.4-14.1z"] }; +var faPiedPiperHat = { prefix: 'fab', iconName: 'pied-piper-hat', icon: [640, 512, [], "f4e5", "M640 24.9c-80.8 53.6-89.4 92.5-96.4 104.4-6.7 12.2-11.7 60.3-23.3 83.6-11.7 23.6-54.2 42.2-66.1 50-11.7 7.8-28.3 38.1-41.9 64.2-108.1-4.4-167.4 38.8-259.2 93.6 29.4-9.7 43.3-16.7 43.3-16.7 94.2-36 139.3-68.3 281.1-49.2 1.1 0 1.9.6 2.8.8 3.9 2.2 5.3 6.9 3.1 10.8l-53.9 95.8c-2.5 4.7-7.8 7.2-13.1 6.1-126.8-23.8-226.9 17.3-318.9 18.6C24.1 488 0 453.4 0 451.8c0-1.1.6-1.7 1.7-1.7 0 0 38.3 0 103.1-15.3C178.4 294.5 244 245.4 315.4 245.4c0 0 71.7 0 90.6 61.9 22.8-39.7 28.3-49.2 28.3-49.2 5.3-9.4 35-77.2 86.4-141.4 51.5-64 90.4-79.9 119.3-91.8z"] }; +var faPiedPiperPp = { prefix: 'fab', iconName: 'pied-piper-pp', icon: [448, 512, [], "f1a7", "M205.3 174.6c0 21.1-14.2 38.1-31.7 38.1-7.1 0-12.8-1.2-17.2-3.7v-68c4.4-2.7 10.1-4.2 17.2-4.2 17.5 0 31.7 16.9 31.7 37.8zm52.6 67c-7.1 0-12.8 1.5-17.2 4.2v68c4.4 2.5 10.1 3.7 17.2 3.7 17.4 0 31.7-16.9 31.7-37.8 0-21.1-14.3-38.1-31.7-38.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM185 255.1c41 0 74.2-35.6 74.2-79.6 0-44-33.2-79.6-74.2-79.6-12 0-24.1 3.2-34.6 8.8h-45.7V311l51.8-10.1v-50.6c8.6 3.1 18.1 4.8 28.5 4.8zm158.4 25.3c0-44-33.2-79.6-73.9-79.6-3.2 0-6.4.2-9.6.7-3.7 12.5-10.1 23.8-19.2 33.4-13.8 15-32.2 23.8-51.8 24.8V416l51.8-10.1v-50.6c8.6 3.2 18.2 4.7 28.7 4.7 40.8 0 74-35.6 74-79.6z"] }; +var faPinterest = { prefix: 'fab', iconName: 'pinterest', icon: [496, 512, [], "f0d2", "M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3.8-3.4 5-20.3 6.9-28.1.6-2.5.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z"] }; +var faPinterestP = { prefix: 'fab', iconName: 'pinterest-p', icon: [384, 512, [], "f231", "M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z"] }; +var faPinterestSquare = { prefix: 'fab', iconName: 'pinterest-square', icon: [448, 512, [], "f0d3", "M448 80v352c0 26.5-21.5 48-48 48H154.4c9.8-16.4 22.4-40 27.4-59.3 3-11.5 15.3-58.4 15.3-58.4 8 15.3 31.4 28.2 56.3 28.2 74.1 0 127.4-68.1 127.4-152.7 0-81.1-66.2-141.8-151.4-141.8-106 0-162.2 71.1-162.2 148.6 0 36 19.2 80.8 49.8 95.1 4.7 2.2 7.1 1.2 8.2-3.3.8-3.4 5-20.1 6.8-27.8.6-2.5.3-4.6-1.7-7-10.1-12.3-18.3-34.9-18.3-56 0-54.2 41-106.6 110.9-106.6 60.3 0 102.6 41.1 102.6 99.9 0 66.4-33.5 112.4-77.2 112.4-24.1 0-42.1-19.9-36.4-44.4 6.9-29.2 20.3-60.7 20.3-81.8 0-53-75.5-45.7-75.5 25 0 21.7 7.3 36.5 7.3 36.5-31.4 132.8-36.1 134.5-29.6 192.6l2.2.8H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z"] }; +var faPlaystation = { prefix: 'fab', iconName: 'playstation', icon: [576, 512, [], "f3df", "M570.9 372.3c-11.3 14.2-38.8 24.3-38.8 24.3L327 470.2v-54.3l150.9-53.8c17.1-6.1 19.8-14.8 5.8-19.4-13.9-4.6-39.1-3.3-56.2 2.9L327 381.1v-56.4c23.2-7.8 47.1-13.6 75.7-16.8 40.9-4.5 90.9.6 130.2 15.5 44.2 14 49.2 34.7 38 48.9zm-224.4-92.5v-139c0-16.3-3-31.3-18.3-35.6-11.7-3.8-19 7.1-19 23.4v347.9l-93.8-29.8V32c39.9 7.4 98 24.9 129.2 35.4C424.1 94.7 451 128.7 451 205.2c0 74.5-46 102.8-104.5 74.6zM43.2 410.2c-45.4-12.8-53-39.5-32.3-54.8 19.1-14.2 51.7-24.9 51.7-24.9l134.5-47.8v54.5l-96.8 34.6c-17.1 6.1-19.7 14.8-5.8 19.4 13.9 4.6 39.1 3.3 56.2-2.9l46.4-16.9v48.8c-51.6 9.3-101.4 7.3-153.9-10z"] }; +var faProductHunt = { prefix: 'fab', iconName: 'product-hunt', icon: [512, 512, [], "f288", "M326.3 218.8c0 20.5-16.7 37.2-37.2 37.2h-70.3v-74.4h70.3c20.5 0 37.2 16.7 37.2 37.2zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-128.1-37.2c0-47.9-38.9-86.8-86.8-86.8H169.2v248h49.6v-74.4h70.3c47.9 0 86.8-38.9 86.8-86.8z"] }; +var faPushed = { prefix: 'fab', iconName: 'pushed', icon: [432, 512, [], "f3e1", "M407 111.9l-98.5-9 14-33.4c10.4-23.5-10.8-40.4-28.7-37L22.5 76.9c-15.1 2.7-26 18.3-21.4 36.6l105.1 348.3c6.5 21.3 36.7 24.2 47.7 7l35.3-80.8 235.2-231.3c16.4-16.8 4.3-42.9-17.4-44.8zM297.6 53.6c5.1-.7 7.5 2.5 5.2 7.4L286 100.9 108.6 84.6l189-31zM22.7 107.9c-3.1-5.1 1-10 6.1-9.1l248.7 22.7-96.9 230.7L22.7 107.9zM136 456.4c-2.6 4-7.9 3.1-9.4-1.2L43.5 179.7l127.7 197.6c-7 15-35.2 79.1-35.2 79.1zm272.8-314.5L210.1 337.3l89.7-213.7 106.4 9.7c4 1.1 5.7 5.3 2.6 8.6z"] }; +var faPython = { prefix: 'fab', iconName: 'python', icon: [448, 512, [], "f3e2", "M167.8 36.4c-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1zm-6.7 28.4c11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4zm185.2 81.4v47.5c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6-7.7-30.9-22.3-54.2-53.4-54.2h-40.1zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3z"] }; +var faQq = { prefix: 'fab', iconName: 'qq', icon: [448, 512, [], "f1d6", "M433.754 420.445c-11.526 1.393-44.86-52.741-44.86-52.741 0 31.345-16.136 72.247-51.051 101.786 16.842 5.192 54.843 19.167 45.803 34.421-7.316 12.343-125.51 7.881-159.632 4.037-34.122 3.844-152.316 8.306-159.632-4.037-9.045-15.25 28.918-29.214 45.783-34.415-34.92-29.539-51.059-70.445-51.059-101.792 0 0-33.334 54.134-44.859 52.741-5.37-.65-12.424-29.644 9.347-99.704 10.261-33.024 21.995-60.478 40.144-105.779C60.683 98.063 108.982.006 224 0c113.737.006 163.156 96.133 160.264 214.963 18.118 45.223 29.912 72.85 40.144 105.778 21.768 70.06 14.716 99.053 9.346 99.704z"] }; +var faQuinscape = { prefix: 'fab', iconName: 'quinscape', icon: [489, 512, [], "f459", "M301.9 474.6h-1.3c-87.3 0-158.1-70.8-158.1-158.1s70.8-158.1 158.1-158.1c94.9 0 168.2 83.1 157 176.6 4 5.1 8.2 9.6 11.2 15.3 13.4-30.3 20.3-62.4 20.3-97.7C489.1 117.5 379.6 8 244.5 8 109.5 8 0 117.5 0 252.6s109.5 244.6 244.5 244.6c24.8 0 47.8-3.2 70.4-10.1-5.2-3.5-9-8.2-13.4-12.6l.4.1zm-21.2-69.8c0-54.8 44.4-99.2 99.2-99.2 54.8 0 99.2 44.4 99.2 99.2 0 54.8-44.4 99.2-99.2 99.2-54.8 0-99.2-44.4-99.2-99.2"] }; +var faQuora = { prefix: 'fab', iconName: 'quora', icon: [448, 512, [], "f2c4", "M440.5 386.7h-29.3c-1.5 13.5-10.5 30.8-33 30.8-20.5 0-35.3-14.2-49.5-35.8 44.2-34.2 74.7-87.5 74.7-153C403.5 111.2 306.8 32 205 32 105.3 32 7.3 111.7 7.3 228.7c0 134.1 131.3 221.6 249 189C276 451.3 302 480 351.5 480c81.8 0 90.8-75.3 89-93.3zM297 329.2C277.5 300 253.3 277 205.5 277c-30.5 0-54.3 10-69 22.8l12.2 24.3c6.2-3 13-4 19.8-4 35.5 0 53.7 30.8 69.2 61.3-10 3-20.7 4.2-32.7 4.2-75 0-107.5-53-107.5-156.7C97.5 124.5 130 71 205 71c76.2 0 108.7 53.5 108.7 157.7.1 41.8-5.4 75.6-16.7 100.5z"] }; +var faRProject = { prefix: 'fab', iconName: 'r-project', icon: [581, 512, [], "f4f7", "M581 226.6C581 119.1 450.9 32 290.5 32S0 119.1 0 226.6C0 322.4 103.3 402 239.4 418.1V480h99.1v-61.5c24.3-2.7 47.6-7.4 69.4-13.9L448 480h112l-67.4-113.7c54.5-35.4 88.4-84.9 88.4-139.7zm-466.8 14.5c0-73.5 98.9-133 220.8-133s211.9 40.7 211.9 133c0 50.1-26.5 85-70.3 106.4-2.4-1.6-4.7-2.9-6.4-3.7-10.2-5.2-27.8-10.5-27.8-10.5s86.6-6.4 86.6-92.7-90.6-87.9-90.6-87.9h-199V361c-74.1-21.5-125.2-67.1-125.2-119.9zm225.1 38.3v-55.6c57.8 0 87.8-6.8 87.8 27.3 0 36.5-38.2 28.3-87.8 28.3zm-.9 72.5H365c10.8 0 18.9 11.7 24 19.2-16.1 1.9-33 2.8-50.6 2.9v-22.1z"] }; +var faRavelry = { prefix: 'fab', iconName: 'ravelry', icon: [512, 512, [], "f2d9", "M407.4 61.5C331.6 22.1 257.8 31 182.9 66c-11.3 5.2-15.5 10.6-19.9 19-10.3 19.2-16.2 37.4-19.9 52.7-21.2 25.6-36.4 56.1-43.3 89.9-10.6 18-20.9 41.4-23.1 71.4 0 0-.7 7.6-.5 7.9-35.3-4.6-76.2-27-76.2-27 9.1 14.5 61.3 32.3 76.3 37.9 0 0 1.7 98 64.5 131.2-11.3-17.2-13.3-20.2-13.3-20.2S94.8 369 100.4 324.7c.7 0 1.5.2 2.2.2 23.9 87.4 103.2 151.4 196.9 151.4 6.2 0 12.1-.2 18-.7 14 1.5 27.6.5 40.1-3.9 6.9-2.2 13.8-6.4 20.2-10.8 70.2-39.1 100.9-82 123.1-147.7 5.4-16 8.1-35.5 9.8-52.2 8.7-82.3-30.6-161.6-103.3-199.5zM138.8 163.2s-1.2 12.3-.7 19.7c-3.4 2.5-10.1 8.1-18.2 16.7 5.2-12.8 11.3-25.1 18.9-36.4zm-31.2 121.9c4.4-17.2 13.3-39.1 29.8-55.1 0 0 1.7 48 15.8 90.1l-41.4-6.9c-2.2-9.2-3.5-18.5-4.2-28.1zm7.9 42.8c14.8 3.2 34 7.6 43.1 9.1 27.3 76.8 108.3 124.3 108.3 124.3 1 .5 1.7.7 2.7 1-73.1-11.6-132.7-64.7-154.1-134.4zM386 444.1c-14.5 4.7-36.2 8.4-64.7 3.7 0 0-91.1-23.1-127.5-107.8 38.2.7 52.4-.2 78-3.9 39.4-5.7 79-16.2 115-33 11.8-5.4 11.1-19.4 9.6-29.8-2-12.8-11.1-12.1-21.4-4.7 0 0-82 58.6-189.8 53.7-18.7-32-26.8-110.8-26.8-110.8 41.4-35.2 83.2-59.6 168.4-52.4.2-6.4 3-27.1-20.4-28.1 0 0-93.5-11.1-146 33.5 2.5-16.5 5.9-29.3 11.1-39.4 34.2-30.8 79-49.5 128.3-49.5 106.4 0 193 87.1 193 194.5-.2 76-43.8 142-106.8 174z"] }; +var faReact = { prefix: 'fab', iconName: 'react', icon: [512, 512, [], "f41b", "M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zm-130 189.1c4.6 8.8 9.3 17.5 14.3 26.1 5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5zm0-50.6c-6.3-14.9-11.6-29.5-16-43.6 14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26zm11.4 25.3c6.6-13.8 13.8-27.3 21.4-40.6 7.6-13.3 15.8-26.2 24.4-38.9 15-1.1 30.3-1.7 45.9-1.7 15.6 0 31 .6 45.9 1.7 8.5 12.6 16.6 25.5 24.3 38.7 7.7 13.2 14.9 26.7 21.7 40.4-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6-15.7 0-30.9-.5-45.6-1.4-8.7-12.7-16.9-25.7-24.6-39-7.7-13.3-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zM256 210.2c25.3 0 45.8 20.5 45.8 45.8 0 25.3-20.5 45.8-45.8 45.8-25.3 0-45.8-20.5-45.8-45.8 0-25.3 20.5-45.8 45.8-45.8"] }; +var faReadme = { prefix: 'fab', iconName: 'readme', icon: [576, 512, [], "f4d5", "M528.3 46.5H388.5c-48.1 0-89.9 33.3-100.4 80.3-10.6-47-52.3-80.3-100.4-80.3H48c-26.5 0-48 21.5-48 48v245.8c0 26.5 21.5 48 48 48h89.7c102.2 0 132.7 24.4 147.3 75 .7 2.8 5.2 2.8 6 0 14.7-50.6 45.2-75 147.3-75H528c26.5 0 48-21.5 48-48V94.6c0-26.4-21.3-47.9-47.7-48.1zM242 311.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5V289c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V251zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm259.3 121.7c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5V228c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.8c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V190z"] }; +var faRebel = { prefix: 'fab', iconName: 'rebel', icon: [512, 512, [], "f1d0", "M256.5 504C117.2 504 9 387.8 13.2 249.9 16 170.7 56.4 97.7 129.7 49.5c.3 0 1.9-.6 1.1.8-5.8 5.5-111.3 129.8-14.1 226.4 49.8 49.5 90 2.5 90 2.5 38.5-50.1-.6-125.9-.6-125.9-10-24.9-45.7-40.1-45.7-40.1l28.8-31.8c24.4 10.5 43.2 38.7 43.2 38.7.8-29.6-21.9-61.4-21.9-61.4L255.1 8l44.3 50.1c-20.5 28.8-21.9 62.6-21.9 62.6 13.8-23 43.5-39.3 43.5-39.3l28.5 31.8c-27.4 8.9-45.4 39.9-45.4 39.9-15.8 28.5-27.1 89.4.6 127.3 32.4 44.6 87.7-2.8 87.7-2.8 102.7-91.9-10.5-225-10.5-225-6.1-5.5.8-2.8.8-2.8 50.1 36.5 114.6 84.4 116.2 204.8C500.9 400.2 399 504 256.5 504z"] }; +var faRedRiver = { prefix: 'fab', iconName: 'red-river', icon: [448, 512, [], "f3e3", "M353.2 32H94.8C42.4 32 0 74.4 0 126.8v258.4C0 437.6 42.4 480 94.8 480h258.4c52.4 0 94.8-42.4 94.8-94.8V126.8c0-52.4-42.4-94.8-94.8-94.8zM144.9 200.9v56.3c0 27-21.9 48.9-48.9 48.9V151.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9h-56.3c-12.3-.6-24.6 11.6-24 24zm176.3 72h-56.3c-12.3-.6-24.6 11.6-24 24v56.3c0 27-21.9 48.9-48.9 48.9V247.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9z"] }; +var faReddit = { prefix: 'fab', iconName: 'reddit', icon: [512, 512, [], "f1a1", "M201.5 305.5c-13.8 0-24.9-11.1-24.9-24.6 0-13.8 11.1-24.9 24.9-24.9 13.6 0 24.6 11.1 24.6 24.9 0 13.6-11.1 24.6-24.6 24.6zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-132.3-41.2c-9.4 0-17.7 3.9-23.8 10-22.4-15.5-52.6-25.5-86.1-26.6l17.4-78.3 55.4 12.5c0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.3 24.9-24.9s-11.1-24.9-24.9-24.9c-9.7 0-18 5.8-22.1 13.8l-61.2-13.6c-3-.8-6.1 1.4-6.9 4.4l-19.1 86.4c-33.2 1.4-63.1 11.3-85.5 26.8-6.1-6.4-14.7-10.2-24.1-10.2-34.9 0-46.3 46.9-14.4 62.8-1.1 5-1.7 10.2-1.7 15.5 0 52.6 59.2 95.2 132 95.2 73.1 0 132.3-42.6 132.3-95.2 0-5.3-.6-10.8-1.9-15.8 31.3-16 19.8-62.5-14.9-62.5zM302.8 331c-18.2 18.2-76.1 17.9-93.6 0-2.2-2.2-6.1-2.2-8.3 0-2.5 2.5-2.5 6.4 0 8.6 22.8 22.8 87.3 22.8 110.2 0 2.5-2.2 2.5-6.1 0-8.6-2.2-2.2-6.1-2.2-8.3 0zm7.7-75c-13.6 0-24.6 11.1-24.6 24.9 0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.1 24.9-24.6 0-13.8-11-24.9-24.9-24.9z"] }; +var faRedditAlien = { prefix: 'fab', iconName: 'reddit-alien', icon: [512, 512, [], "f281", "M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2.1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z"] }; +var faRedditSquare = { prefix: 'fab', iconName: 'reddit-square', icon: [448, 512, [], "f1a2", "M283.2 345.5c2.7 2.7 2.7 6.8 0 9.2-24.5 24.5-93.8 24.6-118.4 0-2.7-2.4-2.7-6.5 0-9.2 2.4-2.4 6.5-2.4 8.9 0 18.7 19.2 81 19.6 100.5 0 2.4-2.3 6.6-2.3 9 0zm-91.3-53.8c0-14.9-11.9-26.8-26.5-26.8-14.9 0-26.8 11.9-26.8 26.8 0 14.6 11.9 26.5 26.8 26.5 14.6 0 26.5-11.9 26.5-26.5zm90.7-26.8c-14.6 0-26.5 11.9-26.5 26.8 0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-11.9 26.8-26.5 0-14.9-11.9-26.8-26.8-26.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-99.7 140.6c-10.1 0-19 4.2-25.6 10.7-24.1-16.7-56.5-27.4-92.5-28.6l18.7-84.2 59.5 13.4c0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-12.2 26.8-26.8 0-14.6-11.9-26.8-26.8-26.8-10.4 0-19.3 6.2-23.8 14.9l-65.7-14.6c-3.3-.9-6.5 1.5-7.4 4.8l-20.5 92.8c-35.7 1.5-67.8 12.2-91.9 28.9-6.5-6.8-15.8-11-25.9-11-37.5 0-49.8 50.4-15.5 67.5-1.2 5.4-1.8 11-1.8 16.7 0 56.5 63.7 102.3 141.9 102.3 78.5 0 142.2-45.8 142.2-102.3 0-5.7-.6-11.6-2.1-17 33.6-17.2 21.2-67.2-16.1-67.2z"] }; +var faRendact = { prefix: 'fab', iconName: 'rendact', icon: [496, 512, [], "f3e4", "M248 8C111 8 0 119 0 256s111 248 248 248c18.6 0 36.7-2.1 54.1-5.9-5.6-7.4-10.8-14.4-15.9-21.3-12.4 2.1-25.2 3.3-38.3 3.3C124.3 480 24 379.7 24 256S124.3 32 248 32s224 100.3 224 224c0 71-33 134.2-84.5 175.3-25.9 18.8-39.1 21.4-83.5-44.2-78.7-112.9-48-71.1-73.7-108.3 72.8 8.9 228.5-72 168.6-168.6C314-26.8 15 93.8 59.7 226.4c3.2 9.8 14.4 38.6 45.6 38.6 2 0 2.6-.6 2-1.7-4.4-8.7-20.1-9.8-20.1-37.4 0-40.5 40.5-89.6 100.3-120 66.1-32.3 131.9-30.2 158.2 5.4 27.2 38.3-20.9 119.2-120.4 136.9 7.5-9.4 57-75.2 62.8-84 22.7-34.6 23.6-49 14-59.2-15.5-16.9-29.5-10.3-50.7-11.7-10.8-.9-113.7 181.2-136.4 216.9-5.9 9-21.2 34.1-21.2 50.9 0 21.3 2.8 51.4 20.6 51.4 10.6 0 8-18.7 8-26.6 0-12.9 27.4-49.4 74.8-104.6 20.4 36.1 57.7 114.3 130.2 209.7 98-33.1 168.5-125.8 168.5-235C496 119 385 8 248 8z"] }; +var faRenren = { prefix: 'fab', iconName: 'renren', icon: [512, 512, [], "f18b", "M214 169.1c0 110.4-61 205.4-147.6 247.4C30 373.2 8 317.7 8 256.6 8 133.9 97.1 32.2 214 12.5v156.6zM255 504c-42.9 0-83.3-11-118.5-30.4C193.7 437.5 239.9 382.9 255 319c15.5 63.9 61.7 118.5 118.8 154.7C338.7 493 298.3 504 255 504zm190.6-87.5C359 374.5 298 279.6 298 169.1V12.5c116.9 19.7 206 121.4 206 244.1 0 61.1-22 116.6-58.4 159.9z"] }; +var faReplyd = { prefix: 'fab', iconName: 'replyd', icon: [448, 512, [], "f3e6", "M320 480H128C57.6 480 0 422.4 0 352V160C0 89.6 57.6 32 128 32h192c70.4 0 128 57.6 128 128v192c0 70.4-57.6 128-128 128zM193.4 273.2c-6.1-2-11.6-3.1-16.4-3.1-7.2 0-13.5 1.9-18.9 5.6-5.4 3.7-9.6 9-12.8 15.8h-1.1l-4.2-18.3h-28v138.9h36.1v-89.7c1.5-5.4 4.4-9.8 8.7-13.2 4.3-3.4 9.8-5.1 16.2-5.1 4.6 0 9.8 1 15.6 3.1l4.8-34zm115.2 103.4c-3.2 2.4-7.7 4.8-13.7 7.1-6 2.3-12.8 3.5-20.4 3.5-12.2 0-21.1-3-26.5-8.9-5.5-5.9-8.5-14.7-9-26.4h83.3c.9-4.8 1.6-9.4 2.1-13.9.5-4.4.7-8.6.7-12.5 0-10.7-1.6-19.7-4.7-26.9-3.2-7.2-7.3-13-12.5-17.2-5.2-4.3-11.1-7.3-17.8-9.2-6.7-1.8-13.5-2.8-20.6-2.8-21.1 0-37.5 6.1-49.2 18.3s-17.5 30.5-17.5 55c0 22.8 5.2 40.7 15.6 53.7 10.4 13.1 26.8 19.6 49.2 19.6 10.7 0 20.9-1.5 30.4-4.6 9.5-3.1 17.1-6.8 22.6-11.2l-12-23.6zm-21.8-70.3c3.8 5.4 5.3 13.1 4.6 23.1h-51.7c.9-9.4 3.7-17 8.2-22.6 4.5-5.6 11.5-8.5 21-8.5 8.2-.1 14.1 2.6 17.9 8zm79.9 2.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4s2 11.7 6.1 15.6zm0 100.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4 0 6.6 2 11.7 6.1 15.6z"] }; +var faResearchgate = { prefix: 'fab', iconName: 'researchgate', icon: [448, 512, [], "f4f8", "M0 32v448h448V32H0zm262.2 334.4c-6.6 3-33.2 6-50-14.2-9.2-10.6-25.3-33.3-42.2-63.6-8.9 0-14.7 0-21.4-.6v46.4c0 23.5 6 21.2 25.8 23.9v8.1c-6.9-.3-23.1-.8-35.6-.8-13.1 0-26.1.6-33.6.8v-8.1c15.5-2.9 22-1.3 22-23.9V225c0-22.6-6.4-21-22-23.9V193c25.8 1 53.1-.6 70.9-.6 31.7 0 55.9 14.4 55.9 45.6 0 21.1-16.7 42.2-39.2 47.5 13.6 24.2 30 45.6 42.2 58.9 7.2 7.8 17.2 14.7 27.2 14.7v7.3zm22.9-135c-23.3 0-32.2-15.7-32.2-32.2V167c0-12.2 8.8-30.4 34-30.4s30.4 17.9 30.4 17.9l-10.7 7.2s-5.5-12.5-19.7-12.5c-7.9 0-19.7 7.3-19.7 19.7v26.8c0 13.4 6.6 23.3 17.9 23.3 14.1 0 21.5-10.9 21.5-26.8h-17.9v-10.7h30.4c0 20.5 4.7 49.9-34 49.9zm-116.5 44.7c-9.4 0-13.6-.3-20-.8v-69.7c6.4-.6 15-.6 22.5-.6 23.3 0 37.2 12.2 37.2 34.5 0 21.9-15 36.6-39.7 36.6z"] }; +var faResolving = { prefix: 'fab', iconName: 'resolving', icon: [496, 512, [], "f3e7", "M281.2 278.2c46-13.3 49.6-23.5 44-43.4L314 195.5c-6.1-20.9-18.4-28.1-71.1-12.8L54.7 236.8l28.6 98.6 197.9-57.2zM248.5 8C131.4 8 33.2 88.7 7.2 197.5l221.9-63.9c34.8-10.2 54.2-11.7 79.3-8.2 36.3 6.1 52.7 25 61.4 55.2l10.7 37.8c8.2 28.1 1 50.6-23.5 73.6-19.4 17.4-31.2 24.5-61.4 33.2L203 351.8l220.4 27.1 9.7 34.2-48.1 13.3-286.8-37.3 23 80.2c36.8 22 80.3 34.7 126.3 34.7 137 0 248.5-111.4 248.5-248.3C497 119.4 385.5 8 248.5 8zM38.3 388.6L0 256.8c0 48.5 14.3 93.4 38.3 131.8z"] }; +var faRocketchat = { prefix: 'fab', iconName: 'rocketchat', icon: [448, 512, [], "f3e8", "M448 256.2c0-87.2-99.6-153.3-219.8-153.3-18.8 0-37.3 1.6-55.3 4.8-11.1-10.5-24.2-20-38-27.4C61.2 44.2 0 79.4 0 79.4s56.9 47.1 47.6 88.3c-52.3 52.3-52.5 124.1 0 176.6C56.9 385.6 0 432.6 0 432.6s61.2 35.2 134.9-.8c13.8-7.5 26.9-16.9 38-27.4 18 3.2 36.5 4.8 55.3 4.8 120.3-.1 219.8-65.8 219.8-153zm-219.7 124c-23.7 0-46.3-2.8-67.3-7.8-21.3 25.8-68.1 61.7-113.6 50.1 14.8-16 36.7-43.1 32-87.6-27.3-21.4-43.6-48.7-43.6-78.5 0-68.4 86.2-123.9 192.5-123.9S420.8 188 420.8 256.4c0 68.3-86.2 123.8-192.5 123.8zm25.6-123.9c0 14.2-11.5 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.5-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm88.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm-177.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.2 0 25.6 11.6 25.6 25.8z"] }; +var faRockrms = { prefix: 'fab', iconName: 'rockrms', icon: [496, 512, [], "f3e9", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm157.4 419.5h-90l-112-131.3c-17.9-20.4-3.9-56.1 26.6-56.1h75.3l-84.6-99.3-84.3 98.9h-90L193.5 67.2c14.4-18.4 41.3-17.3 54.5 0l157.7 185.1c19 22.8 2 57.2-27.6 56.1-.6 0-74.2.2-74.2.2l101.5 118.9z"] }; +var faSafari = { prefix: 'fab', iconName: 'safari', icon: [512, 512, [], "f267", "M236.9 256.8c0-9.1 6.6-17.7 16.3-17.7 8.9 0 17.4 6.4 17.4 16.1 0 9.1-6.4 17.7-16.1 17.7-9 0-17.6-6.7-17.6-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-26.6 0c0-122.3-99.1-221.4-221.4-221.4S34.6 133.7 34.6 256 133.7 477.4 256 477.4 477.4 378.3 477.4 256zm-72.5 96.6c0 3.6 13 10.2 16.3 12.2-27.4 41.5-69.8 71.4-117.9 83.3l-4.4-18.5c-.3-2.5-1.9-2.8-4.2-2.8-1.9 0-3 2.8-2.8 4.2l4.4 18.8c-13.3 2.8-26.8 4.2-40.4 4.2-36.3 0-72-10.2-103-29.1 1.7-2.8 12.2-18 12.2-20.2 0-1.9-1.7-3.6-3.6-3.6-3.9 0-12.2 16.6-14.7 19.9-41.8-27.7-72-70.6-83.6-119.6l19.1-4.2c2.2-.6 2.8-2.2 2.8-4.2 0-1.9-2.8-3-4.4-2.8L62 294.5c-2.5-12.7-3.9-25.5-3.9-38.5 0-37.1 10.5-73.6 30.2-104.9 2.8 1.7 16.1 10.8 18.3 10.8 1.9 0 3.6-1.4 3.6-3.3 0-3.9-14.7-11.3-18-13.6 28.2-41.2 71.1-70.9 119.8-81.9l4.2 18.5c.6 2.2 2.2 2.8 4.2 2.8s3-2.8 2.8-4.4L219 61.7c12.2-2.2 24.6-3.6 37.1-3.6 37.1 0 73.3 10.5 104.9 30.2-1.9 2.8-10.8 15.8-10.8 18 0 1.9 1.4 3.6 3.3 3.6 3.9 0 11.3-14.4 13.3-17.7 41 27.7 70.3 70 81.7 118.2l-15.5 3.3c-2.5.6-2.8 2.2-2.8 4.4 0 1.9 2.8 3 4.2 2.8l15.8-3.6c2.5 12.7 3.9 25.7 3.9 38.7 0 36.3-10 72-28.8 102.7-2.8-1.4-14.4-9.7-16.6-9.7-2.1 0-3.8 1.7-3.8 3.6zm-33.2-242.2c-13 12.2-134.2 123.7-137.6 129.5l-96.6 160.5c12.7-11.9 134.2-124 137.3-129.3l96.9-160.7z"] }; +var faSass = { prefix: 'fab', iconName: 'sass', icon: [640, 512, [], "f41e", "M551.1 291.9c-22.4.1-41.8 5.5-58 13.5-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-3.8 11.1-5.3 19.1-2.3 11.7-25.8 53.5-39.1 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-2.7 11.4-5.3 19.1-2.6 7.7-33.9 77.3-42.1 95.4-4.2 9.2-7.8 16.6-10.4 21.6s-.2.3-.4.9c-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4.3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2-.8 0-1.4 2-1.4 2s10.1-42.4-19.4-42.4c-18.4 0-44 20.2-56.6 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.8-38.2-101.9-65.2-99.1-116.5 1-18.7 7.5-67.8 127.1-127.4 98-48.8 176.4-35.4 189.9-5.6 19.4 42.5-41.9 121.6-143.7 133-38.8 4.3-59.2-10.7-64.3-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.8 28.9 18.7 6.1 64.2 9.5 119.2-11.8C367 196.5 415.1 130.2 401 74.7 386.6 18.3 293.1-.2 204.6 31.2 151.9 49.9 94.9 79.3 53.9 117.6 5.2 163.2-2.6 202.9.6 219.5c11.4 58.9 92.6 97.3 125.1 125.7-1.6.9-3.1 1.7-4.5 2.5-16.3 8.1-78.2 40.5-93.7 74.7-17.5 38.8 2.9 66.6 16.3 70.4 41.8 11.6 84.6-9.3 107.6-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.3-4.9 16.4-9.4 23.5-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.5 5 15.4 5 13.8 0 20-11.4 26.9-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.4 0 18.8-12.1 23-18.3v.1s.2-.4.7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.6-46 16.2-31.8 31.7-71.5 31.7-71.5s1.4 9.7 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2s0 .1.1.2c-3 4-6.4 8.3-9.9 12.5-12.8 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.7 2.5 11.5-.8 19.6-3.6 23.5-5.4 6.2-2.2 13.4-5.7 20.2-10.6 12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5 19.8-28.9 35.1-60.6 35.1-60.6s1.4 9.7 6.2 25.8c2.4 8.1 7.1 17 11.4 25.7-18.6 15.1-30.1 32.6-34.1 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5 6.5-2.2 14.3-5.7 21.6-11.1 12.5-9.2 24.6-22.1 23.8-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.1-10.2 62.1-7.2 55.7 6.5 66.6 41.3 64.5 55.8-2.1 14.6-13.8 22.6-17.7 25-3.9 2.4-5.1 3.3-4.8 5.1.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.2-11.8 30.3-38.7 1.6-34-31.1-71.4-89-71.1zM121.8 436.6c-18.4 20.1-44.2 27.7-55.3 21.3C54.6 451 59.3 421.4 82 400c13.8-13 31.6-25 43.4-32.4 2.7-1.6 6.6-4 11.4-6.9.8-.5 1.2-.7 1.2-.7.9-.6 1.9-1.1 2.9-1.7 8.3 30.4.3 57.2-19.1 78.3zm134.4-91.4c-6.4 15.7-19.9 55.7-28.1 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.1-11.3 21.2-14.9 23.8-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.9-13.9 0 .5.1 1 .1 1.6-.1 17.9-17.3 30-25.1 34.8zm85.6-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.6-15.3 19-24.5 1.2 3.8 1.9 7.4 1.9 10.8-.1 22.5-16.2 30.9-25.9 34.4z"] }; +var faSchlix = { prefix: 'fab', iconName: 'schlix', icon: [448, 512, [], "f3ea", "M350.5 157.7l-54.2-46.1 73.4-39 78.3 44.2-97.5 40.9zM192 122.1l45.7-28.2 34.7 34.6-55.4 29-25-35.4zm-65.1 6.6l31.9-22.1L176 135l-36.7 22.5-12.4-28.8zm-23.3 88.2l-8.8-34.8 29.6-18.3 13.1 35.3-33.9 17.8zm-21.2-83.7l23.9-18.1 8.9 24-26.7 18.3-6.1-24.2zM59 206.5l-3.6-28.4 22.3-15.5 6.1 28.7L59 206.5zm-30.6 16.6l20.8-12.8 3.3 33.4-22.9 12-1.2-32.6zM1.4 268l19.2-10.2.4 38.2-21 8.8L1.4 268zm59.1 59.3l-28.3 8.3-1.6-46.8 25.1-10.7 4.8 49.2zM99 263.2l-31.1 13-5.2-40.8L90.1 221l8.9 42.2zM123.2 377l-41.6 5.9-8.1-63.5 35.2-10.8 14.5 68.4zm28.5-139.9l21.2 57.1-46.2 13.6-13.7-54.1 38.7-16.6zm85.7 230.5l-70.9-3.3-24.3-95.8 55.2-8.6 40 107.7zm-84.9-279.7l42.2-22.4 28 45.9-50.8 21.3-19.4-44.8zm41 94.9l61.3-18.7 52.8 86.6-79.8 11.3-34.3-79.2zm51.4-85.6l67.3-28.8 65.5 65.4-88.6 26.2-44.2-62.8z"] }; +var faScribd = { prefix: 'fab', iconName: 'scribd', icon: [384, 512, [], "f28a", "M42.3 252.7c-16.1-19-24.7-45.9-24.8-79.9 0-100.4 75.2-153.1 167.2-153.1 98.6-1.6 156.8 49 184.3 70.6l-50.5 72.1-37.3-24.6 26.9-38.6c-36.5-24-79.4-36.5-123-35.8-50.7-.8-111.7 27.2-111.7 76.2 0 18.7 11.2 20.7 28.6 15.6 23.3-5.3 41.9.6 55.8 14 26.4 24.3 23.2 67.6-.7 91.9-29.2 29.5-85.2 27.3-114.8-8.4zm317.7 5.9c-15.5-18.8-38.9-29.4-63.2-28.6-38.1-2-71.1 28-70.5 67.2-.7 16.8 6 33 18.4 44.3 14.1 13.9 33 19.7 56.3 14.4 17.4-5.1 28.6-3.1 28.6 15.6 0 4.3-.5 8.5-1.4 12.7-16.7 40.9-59.5 64.4-121.4 64.4-51.9.2-102.4-16.4-144.1-47.3l33.7-39.4-35.6-27.4L0 406.3l15.4 13.8c52.5 46.8 120.4 72.5 190.7 72.2 51.4 0 94.4-10.5 133.6-44.1 57.1-51.4 54.2-149.2 20.3-189.6z"] }; +var faSearchengin = { prefix: 'fab', iconName: 'searchengin', icon: [460, 512, [], "f3eb", "M220.6 130.3l-67.2 28.2V43.2L98.7 233.5l54.7-24.2v130.3l67.2-209.3zm-83.2-96.7l-1.3 4.7-15.2 52.9C80.6 106.7 52 145.8 52 191.5c0 52.3 34.3 95.9 83.4 105.5v53.6C57.5 340.1 0 272.4 0 191.6c0-80.5 59.8-147.2 137.4-158zm311.4 447.2c-11.2 11.2-23.1 12.3-28.6 10.5-5.4-1.8-27.1-19.9-60.4-44.4-33.3-24.6-33.6-35.7-43-56.7-9.4-20.9-30.4-42.6-57.5-52.4l-9.7-14.7c-24.7 16.9-53 26.9-81.3 28.7l2.1-6.6 15.9-49.5c46.5-11.9 80.9-54 80.9-104.2 0-54.5-38.4-102.1-96-107.1V32.3C254.4 37.4 320 106.8 320 191.6c0 33.6-11.2 64.7-29 90.4l14.6 9.6c9.8 27.1 31.5 48 52.4 57.4s32.2 9.7 56.8 43c24.6 33.2 42.7 54.9 44.5 60.3s.7 17.3-10.5 28.5zm-9.9-17.9c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8z"] }; +var faSellcast = { prefix: 'fab', iconName: 'sellcast', icon: [448, 512, [], "f2da", "M353.4 32H94.7C42.6 32 0 74.6 0 126.6v258.7C0 437.4 42.6 480 94.7 480h258.7c52.1 0 94.7-42.6 94.7-94.6V126.6c0-52-42.6-94.6-94.7-94.6zm-50 316.4c-27.9 48.2-89.9 64.9-138.2 37.2-22.9 39.8-54.9 8.6-42.3-13.2l15.7-27.2c5.9-10.3 19.2-13.9 29.5-7.9 18.6 10.8-.1-.1 18.5 10.7 27.6 15.9 63.4 6.3 79.4-21.3 15.9-27.6 6.3-63.4-21.3-79.4-17.8-10.2-.6-.4-18.6-10.6-24.6-14.2-3.4-51.9 21.6-37.5 18.6 10.8-.1-.1 18.5 10.7 48.4 28 65.1 90.3 37.2 138.5zm21.8-208.8c-17 29.5-16.3 28.8-19 31.5-6.5 6.5-16.3 8.7-26.5 3.6-18.6-10.8.1.1-18.5-10.7-27.6-15.9-63.4-6.3-79.4 21.3s-6.3 63.4 21.3 79.4c0 0 18.5 10.6 18.6 10.6 24.6 14.2 3.4 51.9-21.6 37.5-18.6-10.8.1.1-18.5-10.7-48.2-27.8-64.9-90.1-37.1-138.4 27.9-48.2 89.9-64.9 138.2-37.2l4.8-8.4c14.3-24.9 52-3.3 37.7 21.5z"] }; +var faSellsy = { prefix: 'fab', iconName: 'sellsy', icon: [640, 512, [], "f213", "M539.71 237.308c3.064-12.257 4.29-24.821 4.29-37.384C544 107.382 468.618 32 376.076 32c-77.22 0-144.634 53.012-163.02 127.781-15.322-13.176-34.934-20.53-55.157-20.53-46.271 0-83.962 37.69-83.962 83.961 0 7.354.92 15.015 3.065 22.369-42.9 20.225-70.785 63.738-70.785 111.234C6.216 424.843 61.68 480 129.401 480h381.198c67.72 0 123.184-55.157 123.184-123.184.001-56.384-38.916-106.025-94.073-119.508zM199.88 401.554c0 8.274-7.048 15.321-15.321 15.321H153.61c-8.274 0-15.321-7.048-15.321-15.321V290.626c0-8.273 7.048-15.321 15.321-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v110.928zm89.477 0c0 8.274-7.048 15.321-15.322 15.321h-30.949c-8.274 0-15.321-7.048-15.321-15.321V270.096c0-8.274 7.048-15.321 15.321-15.321h30.949c8.274 0 15.322 7.048 15.322 15.321v131.458zm89.477 0c0 8.274-7.047 15.321-15.321 15.321h-30.949c-8.274 0-15.322-7.048-15.322-15.321V238.84c0-8.274 7.048-15.321 15.322-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v162.714zm87.027 0c0 8.274-7.048 15.321-15.322 15.321h-28.497c-8.274 0-15.321-7.048-15.321-15.321V176.941c0-8.579 7.047-15.628 15.321-15.628h28.497c8.274 0 15.322 7.048 15.322 15.628v224.613z"] }; +var faServicestack = { prefix: 'fab', iconName: 'servicestack', icon: [496, 512, [], "f3ec", "M88 216c81.7 10.2 273.7 102.3 304 232H0c99.5-8.1 184.5-137 88-232zm32-152c32.3 35.6 47.7 83.9 46.4 133.6C249.3 231.3 373.7 321.3 400 448h96C455.3 231.9 222.8 79.5 120 64z"] }; +var faShirtsinbulk = { prefix: 'fab', iconName: 'shirtsinbulk', icon: [448, 512, [], "f214", "M395.208 221.583H406v33.542h-10.792v-33.542zm0-9.625H406v-33.542h-10.792v33.542zm0 86.333H406V264.75h-10.792v33.541zM358.75 135.25h-33.542v10.5h33.542v-10.5zm36.458 206.208H406v-33.542h-10.792v33.542zM311.5 135.25h-33.542v10.5H311.5v-10.5zm-47.25 0H231v10.5h33.25v-10.5zm-47.25 0h-33.25v10.5H217v-10.5zm178.208 33.542H406V135.25h-33.542v10.5h22.75v23.042zm-255.792 259l30.625 13.417 4.375-9.917-30.625-13.417-4.375 9.917zM179.083 445l30.334 13.708 4.374-9.916-30.333-13.417-4.375 9.625zm216.125-60.375H406v-33.542h-10.792v33.542zm-334.833 8.167L91 406.208l4.375-9.624-30.625-13.709-4.375 9.917zm39.666 17.499l30.625 13.417 4.375-9.917-30.625-13.416-4.375 9.916zm132.417 38.501l4.375 9.916L267.459 445l-4.375-9.625-30.626 13.417zm118.417-52.208l4.375 9.624 30.624-13.416-4.374-9.917-30.625 13.709zM311.5 413.791l4.375 9.917 30.625-13.417-4.374-9.916-30.626 13.416zm-39.667 17.501l4.375 9.917 30.625-13.417-4.375-9.917-30.625 13.417zM311.5 46.583h-33.542v10.5H311.5v-10.5zm94.209 0h-33.251v10.5h33.251v-10.5zm-188.709 0h-33.25v10.5H217v-10.5zm141.75 0h-33.542v10.5h33.542v-10.5zm-94.5 0H231v10.5h33.25v-10.5zM448 3.708v406l-226.334 98.584L0 409.708v-406h448zm-29.166 116.958H29.166V390.75l192.792 85.75 196.875-85.75V120.666zm0-87.791H29.166V91.5h389.667V32.875zM75.542 46.583H42.291v10.5h33.251v-10.5zm94.5 0H136.5v10.5h33.542v-10.5zm-47.251 0H89.25v10.5h33.542v-10.5zm7.584 236.542c0-50.167 41.125-91.292 91.292-91.292 50.458 0 91.292 41.125 91.292 91.292 0 50.458-40.833 91.292-91.292 91.292-50.167-.001-91.292-40.834-91.292-91.292zm120.75 18.084c0 13.125-23.917 14.291-32.666 14.291-12.25 0-29.75-2.625-35.875-14.875h-.875L172.666 319c14.876 9.333 29.167 12.25 47.25 12.25 19.542 0 51.042-5.833 51.042-31.209 0-48.125-78.458-16.333-78.458-37.916 0-13.125 20.708-14.875 29.75-14.875 10.791 0 29.166 3.208 35.583 13.124h.875l8.751-16.916c-15.167-6.125-27.417-11.959-44.334-11.959-20.125 0-49.583 6.417-49.583 31.792 0 44.334 77.583 11.959 77.583 37.918zM122.791 135.25H89.25v10.5h33.542v-10.5zm-69.999 10.5h22.75v-10.5H42v33.542h10.792V145.75zm0 32.666H42v33.542h10.792v-33.542zm117.25-43.166H136.5v10.5h33.542v-10.5zm-117.25 86.333H42v33.542h10.792v-33.542zm0 86.334H42v33.542h10.792v-33.542zm0-43.167H42v33.542h10.792V264.75zm0 86.333H42v33.542h10.792v-33.542z"] }; +var faSimplybuilt = { prefix: 'fab', iconName: 'simplybuilt', icon: [512, 512, [], "f215", "M481.2 64h-106c-14.5 0-26.6 11.8-26.6 26.3v39.6H163.3V90.3c0-14.5-12-26.3-26.6-26.3h-106C16.1 64 4.3 75.8 4.3 90.3v331.4c0 14.5 11.8 26.3 26.6 26.3h450.4c14.8 0 26.6-11.8 26.6-26.3V90.3c-.2-14.5-12-26.3-26.7-26.3zM149.8 355.8c-36.6 0-66.4-29.7-66.4-66.4 0-36.9 29.7-66.6 66.4-66.6 36.9 0 66.6 29.7 66.6 66.6 0 36.7-29.7 66.4-66.6 66.4zm212.4 0c-36.9 0-66.6-29.7-66.6-66.6 0-36.6 29.7-66.4 66.6-66.4 36.6 0 66.4 29.7 66.4 66.4 0 36.9-29.8 66.6-66.4 66.6z"] }; +var faSistrix = { prefix: 'fab', iconName: 'sistrix', icon: [448, 512, [], "f3ee", "M448 449L301.2 300.2c20-27.9 31.9-62.2 31.9-99.2 0-93.1-74.7-168.9-166.5-168.9C74.7 32 0 107.8 0 200.9s74.7 168.9 166.5 168.9c39.8 0 76.3-14.2 105-37.9l146 148.1 30.5-31zM166.5 330.8c-70.6 0-128.1-58.3-128.1-129.9S95.9 71 166.5 71s128.1 58.3 128.1 129.9-57.4 129.9-128.1 129.9z"] }; +var faSith = { prefix: 'fab', iconName: 'sith', icon: [448, 512, [], "f512", "M0 32l69.71 118.75-58.86-11.52 69.84 91.03a146.741 146.741 0 0 0 0 51.45l-69.84 91.03 58.86-11.52L0 480l118.75-69.71-11.52 58.86 91.03-69.84c17.02 3.04 34.47 3.04 51.48 0l91.03 69.84-11.52-58.86L448 480l-69.71-118.78 58.86 11.52-69.84-91.03c3.03-17.01 3.04-34.44 0-51.45l69.84-91.03-58.86 11.52L448 32l-118.75 69.71 11.52-58.9-91.06 69.87c-8.5-1.52-17.1-2.29-25.71-2.29s-17.21.78-25.71 2.29l-91.06-69.87 11.52 58.9L0 32zm224 99.78c31.8 0 63.6 12.12 87.85 36.37 48.5 48.5 48.49 127.21 0 175.7s-127.2 48.46-175.7-.03c-48.5-48.5-48.49-127.21 0-175.7 24.24-24.25 56.05-36.34 87.85-36.34zm0 36.66c-22.42 0-44.83 8.52-61.92 25.61-34.18 34.18-34.19 89.68 0 123.87s89.65 34.18 123.84 0c34.18-34.18 34.19-89.68 0-123.87-17.09-17.09-39.5-25.61-61.92-25.61z"] }; +var faSkyatlas = { prefix: 'fab', iconName: 'skyatlas', icon: [640, 512, [], "f216", "M640 329.3c0 65.9-52.5 114.4-117.5 114.4-165.9 0-196.6-249.7-359.7-249.7-146.9 0-147.1 212.2 5.6 212.2 42.5 0 90.9-17.8 125.3-42.5 5.6-4.1 16.9-16.3 22.8-16.3s10.9 5 10.9 10.9c0 7.8-13.1 19.1-18.7 24.1-40.9 35.6-100.3 61.2-154.7 61.2-83.4.1-154-59-154-144.9s67.5-149.1 152.8-149.1c185.3 0 222.5 245.9 361.9 245.9 99.9 0 94.8-139.7 3.4-139.7-17.5 0-35 11.6-46.9 11.6-8.4 0-15.9-7.2-15.9-15.6 0-11.6 5.3-23.7 5.3-36.3 0-66.6-50.9-114.7-116.9-114.7-53.1 0-80 36.9-88.8 36.9-6.2 0-11.2-5-11.2-11.2 0-5.6 4.1-10.3 7.8-14.4 25.3-28.8 64.7-43.7 102.8-43.7 79.4 0 139.1 58.4 139.1 137.8 0 6.9-.3 13.7-1.2 20.6 11.9-3.1 24.1-4.7 35.9-4.7 60.7 0 111.9 45.3 111.9 107.2z"] }; +var faSkype = { prefix: 'fab', iconName: 'skype', icon: [448, 512, [], "f17e", "M424.7 299.8c2.9-14 4.7-28.9 4.7-43.8 0-113.5-91.9-205.3-205.3-205.3-14.9 0-29.7 1.7-43.8 4.7C161.3 40.7 137.7 32 112 32 50.2 32 0 82.2 0 144c0 25.7 8.7 49.3 23.3 68.2-2.9 14-4.7 28.9-4.7 43.8 0 113.5 91.9 205.3 205.3 205.3 14.9 0 29.7-1.7 43.8-4.7 19 14.6 42.6 23.3 68.2 23.3 61.8 0 112-50.2 112-112 .1-25.6-8.6-49.2-23.2-68.1zm-194.6 91.5c-65.6 0-120.5-29.2-120.5-65 0-16 9-30.6 29.5-30.6 31.2 0 34.1 44.9 88.1 44.9 25.7 0 42.3-11.4 42.3-26.3 0-18.7-16-21.6-42-28-62.5-15.4-117.8-22-117.8-87.2 0-59.2 58.6-81.1 109.1-81.1 55.1 0 110.8 21.9 110.8 55.4 0 16.9-11.4 31.8-30.3 31.8-28.3 0-29.2-33.5-75-33.5-25.7 0-42 7-42 22.5 0 19.8 20.8 21.8 69.1 33 41.4 9.3 90.7 26.8 90.7 77.6 0 59.1-57.1 86.5-112 86.5z"] }; +var faSlack = { prefix: 'fab', iconName: 'slack', icon: [448, 512, [], "f198", "M244.2 217.5l19.3 57.7-59.8 20-19.3-57.7 59.8-20zm41.4 243.7C131.6 507.4 65 471.6 18.8 317.6S8.4 97 162.4 50.8C316.4 4.6 383 40.4 429.2 194.4c46.2 154 10.4 220.6-143.6 266.8zM366.2 265c-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-19.3-57.7 29-9.7c12.2-3.9 18.6-17.2 14.7-29.4-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-59.8 20.1-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l19.3 57.7-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 59.8-20.1 10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 29-9.7c12.2-4.2 18.6-17.5 14.7-29.6z"] }; +var faSlackHash = { prefix: 'fab', iconName: 'slack-hash', icon: [448, 512, [], "f3ef", "M446.2 270.4c-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-30.3-90 45.4-15.1c19.1-6.2 29.1-26.8 23-45.9-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-93.4 31.2-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-45.3 15c-19.1 6.2-29.1 26.8-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l30.3 90L78 354.8c-19 6.2-29.1 26.9-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 93.6-31.3 15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 45.4-15.1c19-6 29.1-26.7 22.9-45.7zm-254.1 47.2l-30.3-90.2 93.5-31.3 30.3 90.2-93.5 31.3z"] }; +var faSlideshare = { prefix: 'fab', iconName: 'slideshare', icon: [512, 512, [], "f1e7", "M249.429 211.436c0 31.716-27.715 57.717-61.717 57.717-34.001 0-61.716-26.001-61.716-57.717 0-32.001 27.715-57.716 61.716-57.716 34.001 0 61.717 25.715 61.717 57.716zm254.294 50.002c-18.286 22.573-53.144 50.288-106.289 72.003C453.722 525.163 260 555.735 263.143 457.446c0 1.714-.286-52.859-.286-93.432-4.285-.858-8.571-2-13.714-3.143 0 40.858-.286 98.289-.286 96.575C252 555.735 58.278 525.163 114.566 333.441c-53.145-21.715-88.003-49.43-106.29-72.003-9.143-13.714.858-28.287 16.001-17.715 2 1.428 4.285 2.857 6.285 4.285V49.716C30.563 22.287 51.135 0 76.565 0h359.157c25.429 0 46.002 22.287 46.002 49.716v198.293l6-4.285c15.143-10.573 25.143 4 15.999 17.714zm-46.572-189.15c0-32.858-10.572-45.716-40.859-45.716H98.566c-31.716 0-40.573 10.858-40.573 45.716v192.293c67.717 35.43 125.72 29.144 157.435 28.001 13.429-.286 22.001 2.286 27.144 7.715 1.689 1.687 10.023 9.446 20.287 17.143 1.143-15.715 10.001-25.715 33.716-24.858 32.287 1.428 91.718 7.715 160.577-29.716V72.288zM331.146 153.72c-34.002 0-61.716 25.715-61.716 57.716 0 31.716 27.715 57.717 61.716 57.717 34.287 0 61.716-26.001 61.716-57.717 0-32.001-27.429-57.716-61.716-57.716z"] }; +var faSnapchat = { prefix: 'fab', iconName: 'snapchat', icon: [496, 512, [], "f2ab", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm169.5 338.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C183.1 100 230.7 96 244.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z"] }; +var faSnapchatGhost = { prefix: 'fab', iconName: 'snapchat-ghost', icon: [512, 512, [], "f2ac", "M510.846 392.673c-5.211 12.157-27.239 21.089-67.36 27.318-2.064 2.786-3.775 14.686-6.507 23.956-1.625 5.566-5.623 8.869-12.128 8.869l-.297-.005c-9.395 0-19.203-4.323-38.852-4.323-26.521 0-35.662 6.043-56.254 20.588-21.832 15.438-42.771 28.764-74.027 27.399-31.646 2.334-58.025-16.908-72.871-27.404-20.714-14.643-29.828-20.582-56.241-20.582-18.864 0-30.736 4.72-38.852 4.72-8.073 0-11.213-4.922-12.422-9.04-2.703-9.189-4.404-21.263-6.523-24.13-20.679-3.209-67.31-11.344-68.498-32.15a10.627 10.627 0 0 1 8.877-11.069c69.583-11.455 100.924-82.901 102.227-85.934.074-.176.155-.344.237-.515 3.713-7.537 4.544-13.849 2.463-18.753-5.05-11.896-26.872-16.164-36.053-19.796-23.715-9.366-27.015-20.128-25.612-27.504 2.437-12.836 21.725-20.735 33.002-15.453 8.919 4.181 16.843 6.297 23.547 6.297 5.022 0 8.212-1.204 9.96-2.171-2.043-35.936-7.101-87.29 5.687-115.969C158.122 21.304 229.705 15.42 250.826 15.42c.944 0 9.141-.089 10.11-.089 52.148 0 102.254 26.78 126.723 81.643 12.777 28.65 7.749 79.792 5.695 116.009 1.582.872 4.357 1.942 8.599 2.139 6.397-.286 13.815-2.389 22.069-6.257 6.085-2.846 14.406-2.461 20.48.058l.029.01c9.476 3.385 15.439 10.215 15.589 17.87.184 9.747-8.522 18.165-25.878 25.018-2.118.835-4.694 1.655-7.434 2.525-9.797 3.106-24.6 7.805-28.616 17.271-2.079 4.904-1.256 11.211 2.46 18.748.087.168.166.342.239.515 1.301 3.03 32.615 74.46 102.23 85.934 6.427 1.058 11.163 7.877 7.725 15.859z"] }; +var faSnapchatSquare = { prefix: 'fab', iconName: 'snapchat-square', icon: [448, 512, [], "f2ad", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6.5 314.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C159.1 100 206.7 96 220.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z"] }; +var faSoundcloud = { prefix: 'fab', iconName: 'soundcloud', icon: [640, 512, [], "f1be", "M111.4 256.3l5.8 65-5.8 68.3c-.3 2.5-2.2 4.4-4.4 4.4s-4.2-1.9-4.2-4.4l-5.6-68.3 5.6-65c0-2.2 1.9-4.2 4.2-4.2 2.2 0 4.1 2 4.4 4.2zm21.4-45.6c-2.8 0-4.7 2.2-5 5l-5 105.6 5 68.3c.3 2.8 2.2 5 5 5 2.5 0 4.7-2.2 4.7-5l5.8-68.3-5.8-105.6c0-2.8-2.2-5-4.7-5zm25.5-24.1c-3.1 0-5.3 2.2-5.6 5.3l-4.4 130 4.4 67.8c.3 3.1 2.5 5.3 5.6 5.3 2.8 0 5.3-2.2 5.3-5.3l5.3-67.8-5.3-130c0-3.1-2.5-5.3-5.3-5.3zM7.2 283.2c-1.4 0-2.2 1.1-2.5 2.5L0 321.3l4.7 35c.3 1.4 1.1 2.5 2.5 2.5s2.2-1.1 2.5-2.5l5.6-35-5.6-35.6c-.3-1.4-1.1-2.5-2.5-2.5zm23.6-21.9c-1.4 0-2.5 1.1-2.5 2.5l-6.4 57.5 6.4 56.1c0 1.7 1.1 2.8 2.5 2.8s2.5-1.1 2.8-2.5l7.2-56.4-7.2-57.5c-.3-1.4-1.4-2.5-2.8-2.5zm25.3-11.4c-1.7 0-3.1 1.4-3.3 3.3L47 321.3l5.8 65.8c.3 1.7 1.7 3.1 3.3 3.1 1.7 0 3.1-1.4 3.1-3.1l6.9-65.8-6.9-68.1c0-1.9-1.4-3.3-3.1-3.3zm25.3-2.2c-1.9 0-3.6 1.4-3.6 3.6l-5.8 70 5.8 67.8c0 2.2 1.7 3.6 3.6 3.6s3.6-1.4 3.9-3.6l6.4-67.8-6.4-70c-.3-2.2-2-3.6-3.9-3.6zm241.4-110.9c-1.1-.8-2.8-1.4-4.2-1.4-2.2 0-4.2.8-5.6 1.9-1.9 1.7-3.1 4.2-3.3 6.7v.8l-3.3 176.7 1.7 32.5 1.7 31.7c.3 4.7 4.2 8.6 8.9 8.6s8.6-3.9 8.6-8.6l3.9-64.2-3.9-177.5c-.4-3-2-5.8-4.5-7.2zm-26.7 15.3c-1.4-.8-2.8-1.4-4.4-1.4s-3.1.6-4.4 1.4c-2.2 1.4-3.6 3.9-3.6 6.7l-.3 1.7-2.8 160.8s0 .3 3.1 65.6v.3c0 1.7.6 3.3 1.7 4.7 1.7 1.9 3.9 3.1 6.4 3.1 2.2 0 4.2-1.1 5.6-2.5 1.7-1.4 2.5-3.3 2.5-5.6l.3-6.7 3.1-58.6-3.3-162.8c-.3-2.8-1.7-5.3-3.9-6.7zm-111.4 22.5c-3.1 0-5.8 2.8-5.8 6.1l-4.4 140.6 4.4 67.2c.3 3.3 2.8 5.8 5.8 5.8 3.3 0 5.8-2.5 6.1-5.8l5-67.2-5-140.6c-.2-3.3-2.7-6.1-6.1-6.1zm376.7 62.8c-10.8 0-21.1 2.2-30.6 6.1-6.4-70.8-65.8-126.4-138.3-126.4-17.8 0-35 3.3-50.3 9.4-6.1 2.2-7.8 4.4-7.8 9.2v249.7c0 5 3.9 8.6 8.6 9.2h218.3c43.3 0 78.6-35 78.6-78.3.1-43.6-35.2-78.9-78.5-78.9zm-296.7-60.3c-4.2 0-7.5 3.3-7.8 7.8l-3.3 136.7 3.3 65.6c.3 4.2 3.6 7.5 7.8 7.5 4.2 0 7.5-3.3 7.5-7.5l3.9-65.6-3.9-136.7c-.3-4.5-3.3-7.8-7.5-7.8zm-53.6-7.8c-3.3 0-6.4 3.1-6.4 6.7l-3.9 145.3 3.9 66.9c.3 3.6 3.1 6.4 6.4 6.4 3.6 0 6.4-2.8 6.7-6.4l4.4-66.9-4.4-145.3c-.3-3.6-3.1-6.7-6.7-6.7zm26.7 3.4c-3.9 0-6.9 3.1-6.9 6.9L227 321.3l3.9 66.4c.3 3.9 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9l4.2-66.4-4.2-141.7c0-3.9-3-6.9-6.9-6.9z"] }; +var faSpeakap = { prefix: 'fab', iconName: 'speakap', icon: [448, 512, [], "f3f3", "M352 32H96C43.2 32 0 75.2 0 128v256c0 52.8 43.2 96 96 96h256c52.8 0 96-43.2 96-96V128c0-52.8-43.2-96-96-96zM221 382.9c-39.6 0-81.9-17.8-81.9-53.7V302H179v17.8c0 15.1 19.5 24.5 41.9 24.5 24.2 0 41.3-10.4 41.3-29.5 0-23.8-27.2-31.9-54.7-42.6-31.9-12.4-63.1-26.2-63.1-69.1 0-48 38.6-66.4 79.9-66.4 37.6 0 75.5 14.1 75.5 41.9v31.2h-39.9v-16.1c0-12.1-17.8-18.5-35.6-18.5-19.5 0-35.6 8.1-35.6 26.2 0 22.1 22.5 29.2 47 38.9 35.9 12.4 71.1 27.2 71.1 71.5.1 48.6-40.8 71.1-85.8 71.1z"] }; +var faSpotify = { prefix: 'fab', iconName: 'spotify', icon: [496, 512, [], "f1bc", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm100.7 364.9c-4.2 0-6.8-1.3-10.7-3.6-62.4-37.6-135-39.2-206.7-24.5-3.9 1-9 2.6-11.9 2.6-9.7 0-15.8-7.7-15.8-15.8 0-10.3 6.1-15.2 13.6-16.8 81.9-18.1 165.6-16.5 237 26.2 6.1 3.9 9.7 7.4 9.7 16.5s-7.1 15.4-15.2 15.4zm26.9-65.6c-5.2 0-8.7-2.3-12.3-4.2-62.5-37-155.7-51.9-238.6-29.4-4.8 1.3-7.4 2.6-11.9 2.6-10.7 0-19.4-8.7-19.4-19.4s5.2-17.8 15.5-20.7c27.8-7.8 56.2-13.6 97.8-13.6 64.9 0 127.6 16.1 177 45.5 8.1 4.8 11.3 11 11.3 19.7-.1 10.8-8.5 19.5-19.4 19.5zm31-76.2c-5.2 0-8.4-1.3-12.9-3.9-71.2-42.5-198.5-52.7-280.9-29.7-3.6 1-8.1 2.6-12.9 2.6-13.2 0-23.3-10.3-23.3-23.6 0-13.6 8.4-21.3 17.4-23.9 35.2-10.3 74.6-15.2 117.5-15.2 73 0 149.5 15.2 205.4 47.8 7.8 4.5 12.9 10.7 12.9 22.6 0 13.6-11 23.3-23.2 23.3z"] }; +var faStackExchange = { prefix: 'fab', iconName: 'stack-exchange', icon: [448, 512, [], "f18d", "M17.7 332.3h412.7v22c0 37.7-29.3 68-65.3 68h-19L259.3 512v-89.7H83c-36 0-65.3-30.3-65.3-68v-22zm0-23.6h412.7v-85H17.7v85zm0-109.4h412.7v-85H17.7v85zM365 0H83C47 0 17.7 30.3 17.7 67.7V90h412.7V67.7C430.3 30.3 401 0 365 0z"] }; +var faStackOverflow = { prefix: 'fab', iconName: 'stack-overflow', icon: [384, 512, [], "f16c", "M293.7 300l-181.2-84.5 16.7-36.5 181.3 84.7-16.8 36.3zm48-76L188.2 95.7l-25.5 30.8 153.5 128.3 25.5-30.8zm39.6-31.7L262 32l-32 24 119.3 160.3 32-24zM290.7 311L95 269.7 86.8 309l195.7 41 8.2-39zm31.6 129H42.7V320h-40v160h359.5V320h-40v120zm-39.8-80h-200v39.7h200V360z"] }; +var faStaylinked = { prefix: 'fab', iconName: 'staylinked', icon: [440, 512, [], "f3f5", "M201.6 127.4c4.1-3.2 10.3-3 13.8.5l170 167.3-2.7-2.7 44.3 41.3c3.7 3.5 3.3 9-.7 12.2l-198 163.9c-9.9 7.6-17.3.8-17.3.8L2.3 314.6c-3.5-3.5-3-9 1.2-12.2l45.8-34.9c4.2-3.2 10.4-3 13.9.5l151.9 147.5c3.7 3.5 10 3.7 14.2.4l93.2-74c4.1-3.2 4.5-8.7.9-12.2l-84-81.3c-3.6-3.5-9.9-3.7-14-.5l-.1.1c-4.1 3.2-10.4 3-14-.5l-68.1-64.3c-3.5-3.5-3.1-9 1.1-12.2l57.3-43.6m14.8 257.3c3.7 3.5 10.1 3.7 14.3.4l50.2-38.8-.3-.3 7.7-6c4.2-3.2 4.6-8.7.9-12.2l-57.1-54.4c-3.6-3.5-10-3.7-14.2-.5l-.1.1c-4.2 3.2-10.5 3.1-14.2-.4L109 180.8c-3.6-3.5-3.1-8.9 1.1-12.2l92.2-71.5c4.1-3.2 10.3-3 13.9.5l160.4 159c3.7 3.5 10 3.7 14.1.5l45.8-35.8c4.1-3.2 4.4-8.7.7-12.2L226.7 2.5c-1.5-1.2-8-5.5-16.3 1.1L3.6 165.7c-4.2 3.2-4.8 8.7-1.2 12.2l42.3 41.7"] }; +var faSteam = { prefix: 'fab', iconName: 'steam', icon: [496, 512, [], "f1b6", "M496 256c0 137-111.2 248-248.4 248-113.8 0-209.6-76.3-239-180.4l95.2 39.3c6.4 32.1 34.9 56.4 68.9 56.4 39.2 0 71.9-32.4 70.2-73.5l84.5-60.2c52.1 1.3 95.8-40.9 95.8-93.5 0-51.6-42-93.5-93.7-93.5s-93.7 42-93.7 93.5v1.2L176.6 279c-15.5-.9-30.7 3.4-43.5 12.1L0 236.1C10.2 108.4 117.1 8 247.6 8 384.8 8 496 119 496 256zM155.7 384.3l-30.5-12.6a52.79 52.79 0 0 0 27.2 25.8c26.9 11.2 57.8-1.6 69-28.4 5.4-13 5.5-27.3.1-40.3-5.4-13-15.5-23.2-28.5-28.6-12.9-5.4-26.7-5.2-38.9-.6l31.5 13c19.8 8.2 29.2 30.9 20.9 50.7-8.3 19.9-31 29.2-50.8 21zm173.8-129.9c-34.4 0-62.4-28-62.4-62.3s28-62.3 62.4-62.3 62.4 28 62.4 62.3-27.9 62.3-62.4 62.3zm.1-15.6c25.9 0 46.9-21 46.9-46.8 0-25.9-21-46.8-46.9-46.8s-46.9 21-46.9 46.8c.1 25.8 21.1 46.8 46.9 46.8z"] }; +var faSteamSquare = { prefix: 'fab', iconName: 'steam-square', icon: [448, 512, [], "f1b7", "M185.2 356.5c7.7-18.5-1-39.7-19.6-47.4l-29.5-12.2c11.4-4.3 24.3-4.5 36.4.5 12.2 5.1 21.6 14.6 26.7 26.7 5 12.2 5 25.6-.1 37.7-10.5 25.1-39.4 37-64.6 26.5-11.6-4.8-20.4-13.6-25.4-24.2l28.5 11.8c18.6 7.8 39.9-.9 47.6-19.4zM400 32H48C21.5 32 0 53.5 0 80v160.7l116.6 48.1c12-8.2 26.2-12.1 40.7-11.3l55.4-80.2v-1.1c0-48.2 39.3-87.5 87.6-87.5s87.6 39.3 87.6 87.5c0 49.2-40.9 88.7-89.6 87.5l-79 56.3c1.6 38.5-29.1 68.8-65.7 68.8-31.8 0-58.5-22.7-64.5-52.7L0 319.2V432c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-99.7 222.5c-32.2 0-58.4-26.1-58.4-58.3s26.2-58.3 58.4-58.3 58.4 26.2 58.4 58.3-26.2 58.3-58.4 58.3zm.1-14.6c24.2 0 43.9-19.6 43.9-43.8 0-24.2-19.6-43.8-43.9-43.8-24.2 0-43.9 19.6-43.9 43.8 0 24.2 19.7 43.8 43.9 43.8z"] }; +var faSteamSymbol = { prefix: 'fab', iconName: 'steam-symbol', icon: [448, 512, [], "f3f6", "M395.5 177.5c0 33.8-27.5 61-61 61-33.8 0-61-27.3-61-61s27.3-61 61-61c33.5 0 61 27.2 61 61zm52.5.2c0 63-51 113.8-113.7 113.8L225 371.3c-4 43-40.5 76.8-84.5 76.8-40.5 0-74.7-28.8-83-67L0 358V250.7L97.2 290c15.1-9.2 32.2-13.3 52-11.5l71-101.7c.5-62.3 51.5-112.8 114-112.8C397 64 448 115 448 177.7zM203 363c0-34.7-27.8-62.5-62.5-62.5-4.5 0-9 .5-13.5 1.5l26 10.5c25.5 10.2 38 39 27.7 64.5-10.2 25.5-39.2 38-64.7 27.5-10.2-4-20.5-8.3-30.7-12.2 10.5 19.7 31.2 33.2 55.2 33.2 34.7 0 62.5-27.8 62.5-62.5zm207.5-185.3c0-42-34.3-76.2-76.2-76.2-42.3 0-76.5 34.2-76.5 76.2 0 42.2 34.3 76.2 76.5 76.2 41.9.1 76.2-33.9 76.2-76.2z"] }; +var faStickerMule = { prefix: 'fab', iconName: 'sticker-mule', icon: [576, 512, [], "f3f7", "M353.1 509.8c-5.9 2.9-32.1 3.2-36.5-.5-4.1-3-2.2-11.9-1.5-15 2.2-15-2.5-7.9-9.8-11.5-3.1-1.5-4.1-5.5-4.6-10-.5-1.5-1-2.5-1.5-3.5-1.7-10.7 6.8-33.6 8.2-43.4 4.9-23.7-.7-37.2 1.5-46.9 3.7-16.2 4.1-3.5 4.1-29.9-1.4-25.9 3.3-36.9.5-38.9-14.8 0-64.3 10.7-112.2 2-46.1-8.9-59.4-29-65.4-30.9-10.3-4.5-23.2.5-27.3 7-.1.1-35 70.6-39.6 87.8-6.2 20.5-.5 47.4 4.1 66.8 0 .1 4.5 14.6 10.3 19.5 2.1 1.5 5.1 2.5 7.2 4.5 2.8 2.7 9.4 15.2 9.8 16 2.6 4.5 3.6 8-1.5 10.5-3.6 2-9.3 2.5-14.4 2.5-2.6.5-1.5 3.5-3.1 5-2.9 2.8-20.7 6.1-29.9 2.5-2.6-1-5.7-3-6.2-5-1.5-4 2.1-9-1-12.5-4.5-2.9-13.1-2-17-12-2.2-5.4-2.6-7.6-2.6-49.4 0-9.7-5.9-38.7-8.2-46.9-1.5-5.5-1.5-11.5 0-16 .3-.9 4.1-4.6 4.1-13-1-1.5-4.6-.5-5.1-1.5-10.4-80.6-5.9-79-7.7-98.3-1.5-16-10.9-43.9-6.7-64.3.5-2.4 3.4-21 24.2-38.9 31-26.7 48.4-38.3 159-11.5 1.1.4 66.3 21.1 110.7-9 15.5-11.3 28.8-11.3 35.5-16 .1-.1 61.7-52.1 87-65.3 47.2-29.4 69.9-16.7 75.1-18 4.7-1 13.4-25.8 17-25.8 5.5 0 1.6 20.2 3.6 25.9.5 2 3.6 5 6.2 5 2.3 0 1.7-.8 10.3-5 8.4-5.4 14.9-17.6 20.6-17 11.7 1.6-19 41.6-19 46.9 0 2 .2.8 4.6 9.5 2.6 5.5 4.6 13.5 6.2 20 8.3 29.7 5.7 14.6 13.4 36.9 20.2 50.1 20.6 45.2 20.6 52.9 0 7.5-4.1 11-7.2 16.5-1.5 3-4.6 7.5-7.2 8-2.7.7 7-1.5-13.4 2.5-7.2 1-13.4-4.5-14.9-9.5-1.6-4.7 2.8-10.1-11.8-22.9-10.3-10-21.1-11.3-31.9-17-9.8-5.7-11.9 1-18 8-18 22.9-34 46.9-52 69.8-11.8 15-24.2 30.4-33.5 47.4-3.9 6.8-9.5 28.1-10.3 29.9-6.2 17.7-5.5 25.8-16.5 68.3-3.1 10-5.7 21.4-8.7 32.4-2.2 6.8-7.4 49.3-.5 59.4 2.1 3.5 8.7 4.5 11.3 8 .1.1 9.6 18.2 9.3 20 0 6.1-9.4 5.6-11.3 6.5-4.8 2.9-3.8 5.9-6.4 7.4"] }; +var faStrava = { prefix: 'fab', iconName: 'strava', icon: [369, 512, [], "f428", "M301.6 292l-43.9 88.2-44.6-88.2h-67.6l112.2 220 111.5-220h-67.6zM151.4 0L0 292h89.2l62.2-116.1L213.1 292h88.5L151.4 0z"] }; +var faStripe = { prefix: 'fab', iconName: 'stripe', icon: [640, 512, [], "f429", "M640 261.6c0-45.5-22-81.4-64.2-81.4s-67.9 35.9-67.9 81.1c0 53.5 30.3 78.2 73.5 78.2 21.2 0 37.1-4.8 49.2-11.5v-33.4c-12.1 6.1-26 9.8-43.6 9.8-17.3 0-32.5-6.1-34.5-26.9h86.9c.2-2.3.6-11.6.6-15.9m-87.9-16.8c0-20 12.3-28.4 23.4-28.4 10.9 0 22.5 8.4 22.5 28.4h-45.9zm-112.9-64.6c-17.4 0-28.6 8.2-34.8 13.9l-2.3-11H363v204.8l44.4-9.4.1-50.2c6.4 4.7 15.9 11.2 31.4 11.2 31.8 0 60.8-23.2 60.8-79.6.1-51.6-29.3-79.7-60.5-79.7m-10.6 122.5c-10.4 0-16.6-3.8-20.9-8.4l-.3-66c4.6-5.1 11-8.8 21.2-8.8 16.2 0 27.4 18.2 27.4 41.4.1 23.9-10.9 41.8-27.4 41.8M346.4 124v36.2l-44.6 9.5v-36.2l44.6-9.5m-44.5 59.2h44.6v153.2h-44.6V183.2zm-47.8 13.1c10.4-19.1 31.1-15.2 37.1-13.1V224c-5.7-1.8-23.4-4.5-33.9 9.3v103.1H213V183.2h38.4l2.7 13.1m-89-13.1h33.7V221h-33.7v63.2c0 26.2 28 18 33.7 15.7v33.8c-5.9 3.2-16.6 5.9-31.2 5.9-26.3 0-46.1-17-46.1-43.3l.2-142.4 43.3-9.2.1 38.5zM44.9 228.3c0 20 67.9 10.5 67.9 63.4 0 32-25.4 47.8-62.3 47.8-15.3 0-32-3-48.5-10.1v-40c14.9 8.1 33.9 14.2 48.6 14.2 9.9 0 17-2.7 17-10.9 0-21.2-67.5-13.2-67.5-62.4 0-31.4 24-50.2 60-50.2 14.7 0 29.4 2.3 44.1 8.1V230c-13.5-7.3-30.7-11.4-44.2-11.4-9.3.1-15.1 2.8-15.1 9.7"] }; +var faStripeS = { prefix: 'fab', iconName: 'stripe-s', icon: [362, 512, [], "f42a", "M144.3 154.6c0-22.3 18.6-30.9 48.4-30.9 43.4 0 98.5 13.3 141.9 36.7V26.1C287.3 7.2 240.1 0 192.8 0 77.1 0 0 60.4 0 161.4c0 157.9 216.8 132.3 216.8 200.4 0 26.4-22.9 34.9-54.7 34.9-47.2 0-108.2-19.5-156.1-45.5v128.5c53 22.8 106.8 32.4 156 32.4 118.6 0 200.3-51 200.3-153.6 0-170.2-218-139.7-218-203.9"] }; +var faStudiovinari = { prefix: 'fab', iconName: 'studiovinari', icon: [512, 512, [], "f3f8", "M480.3 187.7l4.2 28v28l-25.1 44.1-39.8 78.4-56.1 67.5-79.1 37.8-17.7 24.5-7.7 12-9.6 4s17.3-63.6 19.4-63.6c2.1 0 20.3.7 20.3.7l66.7-38.6-92.5 26.1-55.9 36.8-22.8 28-6.6 1.4 20.8-73.6 6.9-5.5 20.7 12.9 88.3-45.2 56.8-51.5 14.8-68.4-125.4 23.3 15.2-18.2-173.4-53.3 81.9-10.5-166-122.9L133.5 108 32.2 0l252.9 126.6-31.5-38L378 163 234.7 64l18.7 38.4-49.6-18.1L158.3 0l194.6 122L310 66.2l108 96.4 12-8.9-21-16.4 4.2-37.8L451 89.1l29.2 24.7 11.5 4.2-7 6.2 8.5 12-13.1 7.4-10.3 20.2 10.5 23.9z"] }; +var faStumbleupon = { prefix: 'fab', iconName: 'stumbleupon', icon: [512, 512, [], "f1a4", "M502.9 266v69.7c0 62.1-50.3 112.4-112.4 112.4-61.8 0-112.4-49.8-112.4-111.3v-70.2l34.3 16 51.1-15.2V338c0 14.7 12 26.5 26.7 26.5S417 352.7 417 338v-72h85.9zm-224.7-58.2l34.3 16 51.1-15.2V173c0-60.5-51.1-109-112.1-109-60.8 0-112.1 48.2-112.1 108.2v162.4c0 14.9-12 26.7-26.7 26.7S86 349.5 86 334.6V266H0v69.7C0 397.7 50.3 448 112.4 448c61.6 0 112.4-49.5 112.4-110.8V176.9c0-14.7 12-26.7 26.7-26.7s26.7 12 26.7 26.7v30.9z"] }; +var faStumbleuponCircle = { prefix: 'fab', iconName: 'stumbleupon-circle', icon: [496, 512, [], "f1a3", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 177.5c-9.8 0-17.8 8-17.8 17.8v106.9c0 40.9-33.9 73.9-74.9 73.9-41.4 0-74.9-33.5-74.9-74.9v-46.5h57.3v45.8c0 10 8 17.8 17.8 17.8s17.8-7.9 17.8-17.8V200.1c0-40 34.2-72.1 74.7-72.1 40.7 0 74.7 32.3 74.7 72.6v23.7l-34.1 10.1-22.9-10.7v-20.6c.1-9.6-7.9-17.6-17.7-17.6zm167.6 123.6c0 41.4-33.5 74.9-74.9 74.9-41.2 0-74.9-33.2-74.9-74.2V263l22.9 10.7 34.1-10.1v47.1c0 9.8 8 17.6 17.8 17.6s17.8-7.9 17.8-17.6v-48h57.3c-.1 45.9-.1 46.4-.1 46.4z"] }; +var faSuperpowers = { prefix: 'fab', iconName: 'superpowers', icon: [448, 512, [], "f2dd", "M448 32c-83.3 11-166.8 22-250 33-92 12.5-163.3 86.7-169 180-3.3 55.5 18 109.5 57.8 148.2L0 480c83.3-11 166.5-22 249.8-33 91.8-12.5 163.3-86.8 168.7-179.8 3.5-55.5-18-109.5-57.7-148.2L448 32zm-79.7 232.3c-4.2 79.5-74 139.2-152.8 134.5-79.5-4.7-140.7-71-136.3-151 4.5-79.2 74.3-139.3 153-134.5 79.3 4.7 140.5 71 136.1 151z"] }; +var faSupple = { prefix: 'fab', iconName: 'supple', icon: [640, 512, [], "f3f9", "M640 262.5c0 64.1-109 116.1-243.5 116.1-24.8 0-48.6-1.8-71.1-5 7.7.4 15.5.6 23.4.6 134.5 0 243.5-56.9 243.5-127.1 0-29.4-19.1-56.4-51.2-78 60 21.1 98.9 55.1 98.9 93.4zM47.7 227.9c-.1-70.2 108.8-127.3 243.3-127.6 7.9 0 15.6.2 23.3.5-22.5-3.2-46.3-4.9-71-4.9C108.8 96.3-.1 148.5 0 212.6c.1 38.3 39.1 72.3 99.3 93.3-32.3-21.5-51.5-48.6-51.6-78zm60.2 39.9s10.5 13.2 29.3 13.2c17.9 0 28.4-11.5 28.4-25.1 0-28-40.2-25.1-40.2-39.7 0-5.4 5.3-9.1 12.5-9.1 5.7 0 11.3 2.6 11.3 6.6v3.9h14.2v-7.9c0-12.1-15.4-16.8-25.4-16.8-16.5 0-28.5 10.2-28.5 24.1 0 26.6 40.2 25.4 40.2 39.9 0 6.6-5.8 10.1-12.3 10.1-11.9 0-20.7-10.1-20.7-10.1l-8.8 10.9zm120.8-73.6v54.4c0 11.3-7.1 17.8-17.8 17.8-10.7 0-17.8-6.5-17.8-17.7v-54.5h-15.8v55c0 18.9 13.4 31.9 33.7 31.9 20.1 0 33.4-13 33.4-31.9v-55h-15.7zm34.4 85.4h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.8-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5.1 14.7-14 14.7h-12.6zm57 43h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.7-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5 14.7-14 14.7h-12.6zm57.1 34.8c0 5.8 2.4 8.2 8.2 8.2h37.6c5.8 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-18.6c-1.7 0-2.6-1-2.6-2.6v-61.2c0-5.7-2.4-8.2-8.2-8.2H401v13.4h5.2c1.7 0 2.6 1 2.6 2.6v61.2zm63.4 0c0 5.8 2.4 8.2 8.2 8.2H519c5.7 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-19.7c-1.7 0-2.6-1-2.6-2.6v-20.3h27.7v-13.4H488v-22.4h19.2c1.7 0 2.6 1 2.6 2.6v5.2H524v-13c0-5.7-2.5-8.2-8.2-8.2h-51.6v13.4h7.8v63.9zm58.9-76v5.9h1.6v-5.9h2.7v-1.2h-7v1.2h2.7zm5.7-1.2v7.1h1.5v-5.7l2.3 5.7h1.3l2.3-5.7v5.7h1.5v-7.1h-2.3l-2.1 5.1-2.1-5.1h-2.4z"] }; +var faTeamspeak = { prefix: 'fab', iconName: 'teamspeak', icon: [453, 512, [], "f4f9", "M203.4 65.8c-10.3-2-42.1-3.7-52.3-3.7-8.4 0-6.9 2-6.9 2 63.7 50.1 75.4 121.1 75.6 122.1 1.9 15.6-3.1 22.9-8.7 31.3-1.4 1.8-2.7 5 .3 8.9l28.9 39.4h-.3c9.4 14.1 28.1 32.2-5.4 39.9-7.7 1.9-18.7 6.3-11.2 15.8 2.2 2.9 8.8 9.5 1.8 16.5-7.5 4.8-2.7 7.9-1.8 10.4 1.8 6.6-2.6 11.2-4.3 12.7-4.2 3.2-3.7 7.8-2.6 10.1v.1c3.1 13.1-1.7 27.1-3.9 34.9l.1-.1c-1.4 3.2 22-2.6 22.1-2.6 87.5-23 150.6-88.5 150.6-165.7-.1-86.3-78.7-157.9-182-172m239.4 126.7c-12.9-35.4-34.5-62.3-58.9-85.4-75.8-71.7-175.6-76.6-214-74.8C133 34 79.5 43.7 67.1 59.4c-4.6 5.8-4 6.2-24.4 103.2C36.7 165 0 181.3 0 225.9c-.3 88.7 133.8 89.3 133.8-.3 0-24.6-13-46.1-32.5-58V49.2c12-3 119.7-28.8 223.6 37.3 29.8 19 104.3 76.9 96.9 182.8-1.5 21.2-5.7 40.8-13.6 56.4-57 113.5-170.7 133.8-212.8 137.9-68.3 6.6-122.5-14.1-124-14-2.7.1-12 7.1-11.7 7.4 36.6 12.1 74.3 23 121 23 48 0 84.3-8.2 118-21.6C401.8 417.3 453.6 340 453.6 253.7c0-22.9-4.3-43.2-10.8-61.2m-246.3 33.6c-8.5-15.6.5-15.9 4.8-23.4 5.5-9.6 1.7-22.1-1.7-32.2-9.6-28.5-33.8-84.5-83-103.6v100c4.5 4.5 54.1 33.5 58.2 116.8 4.1 82.7-52 121.6-51.7 123.3 22.8 4.5 66 10.7 76.7-8.6 5.7-10.2-1.5-28.1-.9-28.1-3.6-14.2 7.8-19.4 7.8-21.8 0-1.4-7.2-3.1-7.2-8.1 0-5.9 8.5-6.2 9.4-10.7.9-4.5-3.1-7.8-5.1-16.6-3.5-19 27.9-16 30.8-23.1 1.4-3.3-1.4-7.8-3.4-10.7"] }; +var faTelegram = { prefix: 'fab', iconName: 'telegram', icon: [496, 512, [], "f2c6", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm121.8 169.9l-40.7 191.8c-3 13.6-11.1 16.9-22.4 10.5l-62-45.7-29.9 28.8c-3.3 3.3-6.1 6.1-12.5 6.1l4.4-63.1 114.9-103.8c5-4.4-1.1-6.9-7.7-2.5l-142 89.4-61.2-19.1c-13.3-4.2-13.6-13.3 2.8-19.7l239.1-92.2c11.1-4 20.8 2.7 17.2 19.5z"] }; +var faTelegramPlane = { prefix: 'fab', iconName: 'telegram-plane', icon: [448, 512, [], "f3fe", "M446.7 98.6l-67.6 318.8c-5.1 22.5-18.4 28.1-37.3 17.5l-103-75.9-49.7 47.8c-5.5 5.5-10.1 10.1-20.7 10.1l7.4-104.9 190.9-172.5c8.3-7.4-1.8-11.5-12.9-4.1L117.8 284 16.2 252.2c-22.1-6.9-22.5-22.1 4.6-32.7L418.2 66.4c18.4-6.9 34.5 4.1 28.5 32.2z"] }; +var faTencentWeibo = { prefix: 'fab', iconName: 'tencent-weibo', icon: [384, 512, [], "f1d5", "M72.3 495.8c1.4 19.9-27.6 22.2-29.7 2.9C31 368.8 73.7 259.2 144 185.5c-15.6-34 9.2-77.1 50.6-77.1 30.3 0 55.1 24.6 55.1 55.1 0 44-49.5 70.8-86.9 45.1-65.7 71.3-101.4 169.8-90.5 287.2zM192 .1C66.1.1-12.3 134.3 43.7 242.4 52.4 259.8 79 246.9 70 229 23.7 136.4 91 29.8 192 29.8c75.4 0 136.9 61.4 136.9 136.9 0 90.8-86.9 153.9-167.7 133.1-19.1-4.1-25.6 24.4-6.6 29.1 110.7 23.2 204-60 204-162.3C358.6 74.7 284 .1 192 .1z"] }; +var faThemeisle = { prefix: 'fab', iconName: 'themeisle', icon: [512, 512, [], "f2b2", "M208 88.286c0-10 6.286-21.714 17.715-21.714 11.142 0 17.714 11.714 17.714 21.714 0 10.285-6.572 21.714-17.714 21.714C214.286 110 208 98.571 208 88.286zm304 160c0 36.001-11.429 102.286-36.286 129.714-22.858 24.858-87.428 61.143-120.857 70.572l-1.143.286v32.571c0 16.286-12.572 30.571-29.143 30.571-10 0-19.429-5.714-24.572-14.286-5.427 8.572-14.856 14.286-24.856 14.286-10 0-19.429-5.714-24.858-14.286-5.142 8.572-14.571 14.286-24.57 14.286-10.286 0-19.429-5.714-24.858-14.286-5.143 8.572-14.571 14.286-24.571 14.286-18.857 0-29.429-15.714-29.429-32.857-16.286 12.285-35.715 19.428-56.571 19.428-22 0-43.429-8.285-60.286-22.857 10.285-.286 20.571-2.286 30.285-5.714-20.857-5.714-39.428-18.857-52-36.286 21.37 4.645 46.209 1.673 67.143-11.143-22-22-56.571-58.857-68.572-87.428C1.143 321.714 0 303.714 0 289.429c0-49.714 20.286-160 86.286-160 10.571 0 18.857 4.858 23.143 14.857a158.792 158.792 0 0 1 12-15.428c2-2.572 5.714-5.429 7.143-8.286 7.999-12.571 11.714-21.142 21.714-34C182.571 45.428 232 17.143 285.143 17.143c6 0 12 .285 17.714 1.143C313.714 6.571 328.857 0 344.572 0c14.571 0 29.714 6 40 16.286.857.858 1.428 2.286 1.428 3.428 0 3.714-10.285 13.429-12.857 16.286 4.286 1.429 15.714 6.858 15.714 12 0 2.857-2.857 5.143-4.571 7.143 31.429 27.714 49.429 67.143 56.286 108 4.286-5.143 10.285-8.572 17.143-8.572 10.571 0 20.857 7.144 28.571 14.001C507.143 187.143 512 221.714 512 248.286zM188 89.428c0 18.286 12.571 37.143 32.286 37.143 19.714 0 32.285-18.857 32.285-37.143 0-18-12.571-36.857-32.285-36.857-19.715 0-32.286 18.858-32.286 36.857zM237.714 194c0-19.714 3.714-39.143 8.571-58.286-52.039 79.534-13.531 184.571 68.858 184.571 21.428 0 42.571-7.714 60-20 2-7.429 3.714-14.857 3.714-22.572 0-14.286-6.286-21.428-20.572-21.428-4.571 0-9.143.857-13.429 1.714-63.343 12.668-107.142 3.669-107.142-63.999zm-41.142 254.858c0-11.143-8.858-20.857-20.286-20.857-11.429 0-20 9.715-20 20.857v32.571c0 11.143 8.571 21.142 20 21.142 11.428 0 20.286-9.715 20.286-21.142v-32.571zm49.143 0c0-11.143-8.572-20.857-20-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20-10 20-21.142v-32.571zm49.713 0c0-11.143-8.857-20.857-20.285-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20.285-9.715 20.285-21.142v-32.571zm49.715 0c0-11.143-8.857-20.857-20.286-20.857-11.428 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.858 21.142 20.286 21.142 11.429 0 20.286-10 20.286-21.142v-32.571zM421.714 286c-30.857 59.142-90.285 102.572-158.571 102.572-96.571 0-160.571-84.572-160.571-176.572 0-16.857 2-33.429 6-49.714-20 33.715-29.714 72.572-29.714 111.429 0 60.286 24.857 121.715 71.429 160.857 5.143-9.714 14.857-16.286 26-16.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.571-14.286 24.858-14.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.857-14.286 24.858-14.286 10 0 19.428 5.714 24.857 14.286 5.143-8.571 14.571-14.286 24.572-14.286 10.857 0 20.857 6.572 25.714 16 43.427-36.286 68.569-92 71.426-148.286zm10.572-99.714c0-53.714-34.571-105.714-92.572-105.714-30.285 0-58.571 15.143-78.857 36.857C240.862 183.812 233.41 254 302.286 254c28.805 0 97.357-28.538 84.286 36.857 28.857-26 45.714-65.714 45.714-104.571z"] }; +var faTradeFederation = { prefix: 'fab', iconName: 'trade-federation', icon: [496, 512, [], "f513", "M202.45 108.42v81.61H38.94l48.22 61.91h114.73v196.75h64.61V252.96h83.27v-62.69h-83.18V171.1h145.62v-62.68H202.45zm4.86 6h197.77v50.68H259.44v30.93h83.18v50.93h-83.26v195.73h-52.73V245.94H89.86l-39.95-49.91h157.4v-81.61zM247.99 8.8C111.03 8.8 0 119.83 0 256.8s111.03 248 247.99 248S496 393.76 496 256.8 384.96 8.8 247.99 8.8zm.02 13.24c129.66 0 234.76 105.12 234.76 234.78s-105.1 234.76-234.76 234.76S13.23 386.47 13.23 256.81 118.35 22.04 248.01 22.04zm0 7.89c-125.3 0-226.89 101.57-226.89 226.87s101.59 226.89 226.89 226.89S474.88 382.1 474.88 256.8 373.31 29.93 248.01 29.93zm-.02 13.3c117.95 0 213.56 95.62 213.56 213.56s-95.62 213.56-213.56 213.56S34.43 374.75 34.43 256.8 130.04 43.23 247.99 43.23zm-73.32 104.8l15.66 18.05-22.16-9.45-12.33 20.47 2.15-23.99-23.28-5.4 23.48-5.37-2.06-23.81 12.37 20.67 22.01-9.32-15.84 18.15zm-47.14-46.54l8.01 12.4 12.69-5.86-9.32 11.45 9.5 10.25-13.77-5.32-6.82 12.2.81-14.74-13.71-2.71 14.27-3.78-1.66-13.89zm250.77 75.59l11.99 19.56 20.88-9.11-14.9 17.45 15.11 17.04-21.2-8.78-11.54 19.64 1.8-22.87-22.24-4.9 22.31-5.36-2.21-22.67zm-107.05 98.45l13.86-3.22-1.28-14.17 7.35 12.18 13.08-5.59-9.31 10.75 9.36 10.71-13.1-5.54-7.29 12.21 1.22-14.17-13.89-3.16zm-125.43 6.5l23.73-3.87-1.73-24.53 11.01 21.38 22.79-9.22-16.93 17.08 15.81 18.83-21.47-10.82-13.02 20.86 3.66-23.77-23.85-5.94zm63.44-165.66v81.61H54.16l36.72 46.01h117.7v196.75h48.82V245.01h83.27v-47.03H257.4v-34.83h145.73v-46.78H209.26zm10.86 11.2h171.8v24.36H246.88v56.23h82.93v23.94h-82.93v197.42h-26.76V232.1H96.31l-20.09-23.94h143.9v-80.59z"] }; +var faTrello = { prefix: 'fab', iconName: 'trello', icon: [448, 512, [], "f181", "M392 32H56C25.1 32 0 57.1 0 88v336c0 30.9 25.1 56 56 56h336c30.9 0 56-25.1 56-56V88c0-30.9-25.1-56-56-56zM194.9 371.4c0 14.8-12 26.9-26.9 26.9H85.1c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9H168c14.8 0 26.9 12 26.9 26.9v254.3zm194.9-112c0 14.8-12 26.9-26.9 26.9H280c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9h82.9c14.8 0 26.9 12 26.9 26.9v142.3z"] }; +var faTripadvisor = { prefix: 'fab', iconName: 'tripadvisor', icon: [576, 512, [], "f262", "M166.4 280.521c0 13.236-10.73 23.966-23.966 23.966s-23.966-10.73-23.966-23.966 10.73-23.966 23.966-23.966 23.966 10.729 23.966 23.966zm264.962-23.956c-13.23 0-23.956 10.725-23.956 23.956 0 13.23 10.725 23.956 23.956 23.956 13.23 0 23.956-10.725 23.956-23.956-.001-13.231-10.726-23.956-23.956-23.956zm89.388 139.49c-62.667 49.104-153.276 38.109-202.379-24.559l-30.979 46.325-30.683-45.939c-48.277 60.39-135.622 71.891-197.885 26.055-64.058-47.158-77.759-137.316-30.601-201.374A186.762 186.762 0 0 0 0 139.416l90.286-.05a358.48 358.48 0 0 1 197.065-54.03 350.382 350.382 0 0 1 192.181 53.349l96.218.074a185.713 185.713 0 0 0-28.352 57.649c46.793 62.747 34.964 151.37-26.648 199.647zM259.366 281.761c-.007-63.557-51.535-115.075-115.092-115.068C80.717 166.7 29.2 218.228 29.206 281.785c.007 63.557 51.535 115.075 115.092 115.068 63.513-.075 114.984-51.539 115.068-115.052v-.04zm28.591-10.455c5.433-73.44 65.51-130.884 139.12-133.022a339.146 339.146 0 0 0-139.727-27.812 356.31 356.31 0 0 0-140.164 27.253c74.344 1.582 135.299 59.424 140.771 133.581zm251.706-28.767c-21.992-59.634-88.162-90.148-147.795-68.157-59.634 21.992-90.148 88.162-68.157 147.795v.032c22.038 59.607 88.198 90.091 147.827 68.113 59.615-22.004 90.113-88.162 68.125-147.783zm-326.039 37.975v.115c-.057 39.328-31.986 71.163-71.314 71.106-39.328-.057-71.163-31.986-71.106-71.314.057-39.328 31.986-71.163 71.314-71.106 39.259.116 71.042 31.94 71.106 71.199zm-24.512 0v-.084c-.051-25.784-20.994-46.645-46.778-46.594-25.784.051-46.645 20.994-46.594 46.777.051 25.784 20.994 46.645 46.777 46.594 25.726-.113 46.537-20.968 46.595-46.693zm313.423 0v.048c-.02 39.328-31.918 71.194-71.247 71.173s-71.194-31.918-71.173-71.247c.02-39.328 31.918-71.194 71.247-71.173 39.29.066 71.121 31.909 71.173 71.199zm-24.504-.008c-.009-25.784-20.918-46.679-46.702-46.67-25.784.009-46.679 20.918-46.67 46.702.009 25.784 20.918 46.678 46.702 46.67 25.765-.046 46.636-20.928 46.67-46.693v-.009z"] }; +var faTumblr = { prefix: 'fab', iconName: 'tumblr', icon: [320, 512, [], "f173", "M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z"] }; +var faTumblrSquare = { prefix: 'fab', iconName: 'tumblr-square', icon: [448, 512, [], "f174", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-82.3 364.2c-8.5 9.1-31.2 19.8-60.9 19.8-75.5 0-91.9-55.5-91.9-87.9v-90h-29.7c-3.4 0-6.2-2.8-6.2-6.2v-42.5c0-4.5 2.8-8.5 7.1-10 38.8-13.7 50.9-47.5 52.7-73.2.5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2h-52.1V321c0 21.4 14.8 33.5 42.5 22.4 3-1.2 5.6-2 8-1.4 2.2.5 3.6 2.1 4.6 4.9l13.8 40.2c1 3.2 2 6.7-.3 9.1z"] }; +var faTwitch = { prefix: 'fab', iconName: 'twitch', icon: [448, 512, [], "f1e8", "M40.1 32L10 108.9v314.3h107V480h60.2l56.8-56.8h87l117-117V32H40.1zm357.8 254.1L331 353H224l-56.8 56.8V353H76.9V72.1h321v214zM331 149v116.9h-40.1V149H331zm-107 0v116.9h-40.1V149H224z"] }; +var faTwitter = { prefix: 'fab', iconName: 'twitter', icon: [512, 512, [], "f099", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"] }; +var faTwitterSquare = { prefix: 'fab', iconName: 'twitter-square', icon: [448, 512, [], "f081", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z"] }; +var faTypo3 = { prefix: 'fab', iconName: 'typo3', icon: [433, 512, [], "f42b", "M330.8 341c-7 2.3-11.6 2.3-18.5 2.3-57.2 0-140.6-198.5-140.6-264.9 0-24.7 5.4-32.4 13.9-39.4-69.5 8.5-149.3 34-176.3 66.4-5.4 7.7-9.3 20.8-9.3 37.1C0 246 106.8 480 184.1 480c36.3 0 97.3-59.5 146.7-139M294.5 32c71.8 0 138.8 11.6 138.8 52.5 0 82.6-52.5 182.3-78.8 182.3-47.9 0-101.7-132.1-101.7-198.5 0-30.9 11.6-36.3 41.7-36.3"] }; +var faUber = { prefix: 'fab', iconName: 'uber', icon: [448, 512, [], "f402", "M414.1 32H33.9C15.2 32 0 47.2 0 65.9V446c0 18.8 15.2 34 33.9 34H414c18.7 0 33.9-15.2 33.9-33.9V65.9C448 47.2 432.8 32 414.1 32zM237.6 391.1C163 398.6 96.4 344.2 88.9 269.6h94.4V290c0 3.7 3 6.8 6.8 6.8H258c3.7 0 6.8-3 6.8-6.8v-67.9c0-3.7-3-6.8-6.8-6.8h-67.9c-3.7 0-6.8 3-6.8 6.8v20.4H88.9c7-69.4 65.4-122.2 135.1-122.2 69.7 0 128.1 52.8 135.1 122.2 7.5 74.5-46.9 141.1-121.5 148.6z"] }; +var faUikit = { prefix: 'fab', iconName: 'uikit', icon: [448, 512, [], "f403", "M443.9 128v256L218 512 0 384V169.7l87.6 45.1v117l133.5 75.5 135.8-75.5v-151l-101.1-57.6 87.6-53.1L443.9 128zM308.6 49.1L223.8 0l-88.6 54.8 86 47.3 87.4-53z"] }; +var faUniregistry = { prefix: 'fab', iconName: 'uniregistry', icon: [384, 512, [], "f404", "M281.1 220.1H384v-14.8H281.1v14.8zm0-37.1H384v-12.4H281.1V183zm0 74.2H384v-17.3H281.1v17.3zm-157.7 86.7H8.5c2.6 8.5 5.8 16.8 9.6 24.8h138.3c-12.9-5.7-24.1-14.2-33-24.8m145.7-12.4h109.7c1.8-7.3 3.1-14.7 3.9-22.3H278.3c-2.1 7.9-5.2 15.4-9.2 22.3m-41.5 37.1H367c3.7-8 5.8-16.2 8.5-24.8h-115c-8.8 10.7-20.1 19.2-32.9 24.8M384 32H281.1v2.5H384V32zM192 480c39.5 0 76.2-11.8 106.8-32.2H85.3C115.8 468.2 152.5 480 192 480m89.1-334.2H384V136H281.1v9.8zm0-37.1H384v-7.4H281.1v7.4zm0-37.1H384v-4.9H281.1v4.9zm-178.2 99H0V183h102.9v-12.4zM38.8 405.7h305.3c6.7-8.5 12.6-17.6 17.8-27.2H23c5.2 9.6 9.2 18.7 15.8 27.2m64.1-118.8v-12.4H0v12.4c0 2.5 0 5 .1 7.4h103.1c-.2-2.4-.3-4.9-.3-7.4m178.2 0c0 2.5-.1 5-.4 7.4h103.1c.1-2.5.2-4.9.2-7.4v-12.4H281.1v12.4zm-203 156h227.7c11.8-8.7 22.7-18.6 32.2-29.7H44.9c9.6 11 21.4 21 33.2 29.7m24.8-376.2H0v4.9h102.9v-4.9zm0-34.7H0v2.5h102.9V32zm0 173.3H0v14.8h102.9v-14.8zm0 34.6H0v17.3h102.9v-17.3zm0-103.9H0v9.9h102.9V136zm0-34.7H0v7.4h102.9v-7.4zm2.8 207.9H1.3c.9 7.6 2.2 15 3.9 22.3h109.7c-4-6.9-7.2-14.4-9.2-22.3"] }; +var faUntappd = { prefix: 'fab', iconName: 'untappd', icon: [640, 512, [], "f405", "M401.3 49.9c-79.8 160.1-84.6 152.5-87.9 173.2l-5.2 32.8c-1.9 12-6.6 23.5-13.7 33.4L145.6 497.1c-7.6 10.6-20.4 16.2-33.4 14.6-40.3-5-77.8-32.2-95.3-68.5-5.7-11.8-4.5-25.8 3.1-36.4l148.9-207.9c7.1-9.9 16.4-18 27.2-23.7l29.3-15.5c18.5-9.8 9.7-11.9 135.6-138.9 1-4.8 1-7.3 3.6-8 3-.7 6.6-1 6.3-4.6l-.4-4.6c-.2-1.9 1.3-3.6 3.2-3.6 4.5-.1 13.2 1.2 25.6 10 12.3 8.9 16.4 16.8 17.7 21.1.6 1.8-.6 3.7-2.4 4.2l-4.5 1.1c-3.4.9-2.5 4.4-2.3 7.4.1 2.8-2.3 3.6-6.5 6.1zM230.1 36.4c3.4.9 2.5 4.4 2.3 7.4-.2 2.7 2.1 3.5 6.4 6 7.9 15.9 15.3 30.5 22.2 44 .7 1.3 2.3 1.5 3.3.5 11.2-12 24.6-26.2 40.5-42.6 1.3-1.4 1.4-3.5.1-4.9-8-8.2-16.5-16.9-25.6-26.1-1-4.7-1-7.3-3.6-8-3-.8-6.6-1-6.3-4.6.3-3.3 1.4-8.1-2.8-8.2-4.5-.1-13.2 1.1-25.6 10-12.3 8.9-16.4 16.8-17.7 21.1-1.4 4.2 3.6 4.6 6.8 5.4zM620 406.7L471.2 198.8c-13.2-18.5-26.6-23.4-56.4-39.1-11.2-5.9-14.2-10.9-30.5-28.9-1-1.1-2.9-.9-3.6.5-46.3 88.8-47.1 82.8-49 94.8-1.7 10.7-1.3 20 .3 29.8 1.9 12 6.6 23.5 13.7 33.4l148.9 207.9c7.6 10.6 20.2 16.2 33.1 14.7 40.3-4.9 78-32 95.7-68.6 5.4-11.9 4.3-25.9-3.4-36.6z"] }; +var faUsb = { prefix: 'fab', iconName: 'usb', icon: [640, 512, [], "f287", "M641.5 256c0 3.1-1.7 6.1-4.5 7.5L547.9 317c-1.4.8-2.8 1.4-4.5 1.4-1.4 0-3.1-.3-4.5-1.1-2.8-1.7-4.5-4.5-4.5-7.8v-35.6H295.7c25.3 39.6 40.5 106.9 69.6 106.9H392V354c0-5 3.9-8.9 8.9-8.9H490c5 0 8.9 3.9 8.9 8.9v89.1c0 5-3.9 8.9-8.9 8.9h-89.1c-5 0-8.9-3.9-8.9-8.9v-26.7h-26.7c-75.4 0-81.1-142.5-124.7-142.5H140.3c-8.1 30.6-35.9 53.5-69 53.5C32 327.3 0 295.3 0 256s32-71.3 71.3-71.3c33.1 0 61 22.8 69 53.5 39.1 0 43.9 9.5 74.6-60.4C255 88.7 273 95.7 323.8 95.7c7.5-20.9 27-35.6 50.4-35.6 29.5 0 53.5 23.9 53.5 53.5s-23.9 53.5-53.5 53.5c-23.4 0-42.9-14.8-50.4-35.6H294c-29.1 0-44.3 67.4-69.6 106.9h310.1v-35.6c0-3.3 1.7-6.1 4.5-7.8 2.8-1.7 6.4-1.4 8.9.3l89.1 53.5c2.8 1.1 4.5 4.1 4.5 7.2z"] }; +var faUssunnah = { prefix: 'fab', iconName: 'ussunnah', icon: [512, 512, [], "f407", "M156.8 285.1l5.7 14.4h-8.2c-1.3-3.2-3.1-7.7-3.8-9.5-2.5-6.3-1.1-8.4 0-10 1.9-2.7 3.2-4.4 3.6-5.2 0 2.2.8 5.7 2.7 10.3zm297.3 18.8c-2.1 13.8-5.7 27.1-10.5 39.7l43 23.4-44.8-18.8c-5.3 13.2-12 25.6-19.9 37.2l34.2 30.2-36.8-26.4c-8.4 11.8-18 22.6-28.7 32.3l24.9 34.7-28.1-31.8c-11 9.6-23.1 18-36.1 25.1l15.7 37.2-19.3-35.3c-13.1 6.8-27 12.1-41.6 15.9l6.7 38.4-10.5-37.4c-14.3 3.4-29.2 5.3-44.5 5.4L256 512l-1.9-38.4c-15.3-.1-30.2-2-44.5-5.3L199 505.6l6.7-38.2c-14.6-3.7-28.6-9.1-41.7-15.8l-19.2 35.1 15.6-37c-13-7-25.2-15.4-36.2-25.1l-27.9 31.6 24.7-34.4c-10.7-9.7-20.4-20.5-28.8-32.3l-36.5 26.2 33.9-29.9c-7.9-11.6-14.6-24.1-20-37.3l-44.4 18.7L67.8 344c-4.8-12.7-8.4-26.1-10.5-39.9l-51 9 50.3-14.2c-1.1-8.5-1.7-17.1-1.7-25.9 0-4.7.2-9.4.5-14.1L0 256l56-2.8c1.3-13.1 3.8-25.8 7.5-38.1L6.4 199l58.9 10.4c4-12 9.1-23.5 15.2-34.4l-55.1-30 58.3 24.6C90 159 97.2 149.2 105.3 140L55.8 96.4l53.9 38.7c8.1-8.6 17-16.5 26.6-23.6l-40-55.6 45.6 51.6c9.5-6.6 19.7-12.3 30.3-17.2l-27.3-64.9 33.8 62.1c10.5-4.4 21.4-7.9 32.7-10.4L199 6.4l19.5 69.2c11-2.1 22.3-3.2 33.8-3.4L256 0l3.6 72.2c11.5.2 22.8 1.4 33.8 3.5L313 6.4l-12.4 70.7c11.3 2.6 22.2 6.1 32.6 10.5l33.9-62.2-27.4 65.1c10.6 4.9 20.7 10.7 30.2 17.2l45.8-51.8-40.1 55.9c9.5 7.1 18.4 15 26.5 23.6l54.2-38.9-49.7 43.9c8 9.1 15.2 18.9 21.5 29.4l58.7-24.7-55.5 30.2c6.1 10.9 11.1 22.3 15.1 34.3l59.3-10.4-57.5 16.2c3.7 12.2 6.2 24.9 7.5 37.9L512 256l-56 2.8c.3 4.6.5 9.3.5 14.1 0 8.7-.6 17.3-1.6 25.8l50.7 14.3-51.5-9.1zm-21.8-31c0-97.5-79-176.5-176.5-176.5s-176.5 79-176.5 176.5 79 176.5 176.5 176.5 176.5-79 176.5-176.5zm-24 0c0 84.3-68.3 152.6-152.6 152.6s-152.6-68.3-152.6-152.6 68.3-152.6 152.6-152.6 152.6 68.3 152.6 152.6zM195 241c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-40.7-19c0 2.1 1.3 3.8 3.6 5.1 3.5 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-19 0c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.4 6.8-9.6 10.9-9.6 12.6zm204.9 87.9c-8.4-3-8.7-6.8-8.7-15.6V182c-8.2 12.5-14.2 18.6-18 18.6 6.3 14.4 9.5 23.9 9.5 28.3v64.3c0 2.2-2.2 6.5-4.7 6.5h-18c-2.8-7.5-10.2-26.9-15.3-40.3-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3 2.6 6.7 6.4 16.5 7.9 20.2h-9.2c-3.9-10.4-9.6-25.4-11.8-31.1-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3.8 2 2.8 7.3 4.3 10.9H256c-1.5-4.1-5.6-14.6-8.4-22-2 2.5-7.2 9.2-10.7 13.7 2.5 1.6 4.3 3.6 5.2 6.3.2.6.5 1.4.6 1.7H225c-4.6-13.9-11.4-27.7-11.4-34.1 0-2.2.3-5.1 1.1-8.2-8.8 10.8-14 15.9-14 25 0 7.5 10.4 28.3 10.4 33.3 0 1.7-.5 3.3-1.4 4.9-9.6-12.7-15.5-20.7-18.8-20.7h-12l-11.2-28c-3.8-9.6-5.7-16-5.7-18.8 0-3.8.5-7.7 1.7-12.2-1 1.3-3.7 4.7-5.5 7.1-.8-2.1-3.1-7.7-4.6-11.5-2.1 2.5-7.5 9.1-11.2 13.6.9 2.3 3.3 8.1 4.9 12.2-2.5 3.3-9.1 11.8-13.6 17.7-4 5.3-5.8 13.3-2.7 21.8 2.5 6.7 2 7.9-1.7 14.1H191c5.5 0 14.3 14 15.5 22 13.2-16 15.4-19.6 16.8-21.6h107c3.9 0 7.2-1.9 9.9-5.8zm20.1-26.6V181.7c-9 12.5-15.9 18.6-20.7 18.6 7.1 14.4 10.7 23.9 10.7 28.3v66.3c0 17.5 8.6 20.4 24 20.4 8.1 0 12.5-.8 13.7-2.7-4.3-1.6-7.6-2.5-9.9-3.3-8.1-3.2-17.8-7.4-17.8-26z"] }; +var faVaadin = { prefix: 'fab', iconName: 'vaadin', icon: [448, 512, [], "f408", "M224.5 140.7c1.5-17.6 4.9-52.7 49.8-52.7h98.6c20.7 0 32.1-7.8 32.1-21.6V54.1c0-12.2 9.3-22.1 21.5-22.1S448 41.9 448 54.1v36.5c0 42.9-21.5 62-66.8 62H280.7c-30.1 0-33 14.7-33 27.1 0 1.3-.1 2.5-.2 3.7-.7 12.3-10.9 22.2-23.4 22.2s-22.7-9.8-23.4-22.2c-.1-1.2-.2-2.4-.2-3.7 0-12.3-3-27.1-33-27.1H66.8c-45.3 0-66.8-19.1-66.8-62V54.1C0 41.9 9.4 32 21.6 32s21.5 9.9 21.5 22.1v12.3C43.1 80.2 54.5 88 75.2 88h98.6c44.8 0 48.3 35.1 49.8 52.7h.9zM224 456c11.5 0 21.4-7 25.7-16.3 1.1-1.8 97.1-169.6 98.2-171.4 11.9-19.6-3.2-44.3-27.2-44.3-13.9 0-23.3 6.4-29.8 20.3L224 362l-66.9-117.7c-6.4-13.9-15.9-20.3-29.8-20.3-24 0-39.1 24.6-27.2 44.3 1.1 1.9 97.1 169.6 98.2 171.4 4.3 9.3 14.2 16.3 25.7 16.3z"] }; +var faViacoin = { prefix: 'fab', iconName: 'viacoin', icon: [384, 512, [], "f237", "M384 32h-64l-80.7 192h-94.5L64 32H0l48 112H0v48h68.5l13.8 32H0v48h102.8L192 480l89.2-208H384v-48h-82.3l13.8-32H384v-48h-48l48-112zM192 336l-27-64h54l-27 64z"] }; +var faViadeo = { prefix: 'fab', iconName: 'viadeo', icon: [448, 512, [], "f2a9", "M276.2 150.5v.7C258.3 98.6 233.6 47.8 205.4 0c43.3 29.2 67 100 70.8 150.5zm32.7 121.7c7.6 18.2 11 37.5 11 57 0 77.7-57.8 141-137.8 139.4l3.8-.3c74.2-46.7 109.3-118.6 109.3-205.1 0-38.1-6.5-75.9-18.9-112 1 11.7 1 23.7 1 35.4 0 91.8-18.1 241.6-116.6 280C95 455.2 49.4 398 49.4 329.2c0-75.6 57.4-142.3 135.4-142.3 16.8 0 33.7 3.1 49.1 9.6 1.7-15.1 6.5-29.9 13.4-43.3-19.9-7.2-41.2-10.7-62.5-10.7-161.5 0-238.7 195.9-129.9 313.7 67.9 74.6 192 73.9 259.8 0 56.6-61.3 60.9-142.4 36.4-201-12.7 8-27.1 13.9-42.2 17zM418.1 11.7c-31 66.5-81.3 47.2-115.8 80.1-12.4 12-20.6 34-20.6 50.5 0 14.1 4.5 27.1 12 38.8 47.4-11 98.3-46 118.2-90.7-.7 5.5-4.8 14.4-7.2 19.2-20.3 35.7-64.6 65.6-99.7 84.9 14.8 14.4 33.7 25.8 55 25.8 79 0 110.1-134.6 58.1-208.6z"] }; +var faViadeoSquare = { prefix: 'fab', iconName: 'viadeo-square', icon: [448, 512, [], "f2aa", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM280.7 381.2c-42.4 46.2-120 46.6-162.4 0-68-73.6-19.8-196.1 81.2-196.1 13.3 0 26.6 2.1 39.1 6.7-4.3 8.4-7.3 17.6-8.4 27.1-9.7-4.1-20.2-6-30.7-6-48.8 0-84.6 41.7-84.6 88.9 0 43 28.5 78.7 69.5 85.9 61.5-24 72.9-117.6 72.9-175 0-7.3 0-14.8-.6-22.1-11.2-32.9-26.6-64.6-44.2-94.5 27.1 18.3 41.9 62.5 44.2 94.1v.4c7.7 22.5 11.8 46.2 11.8 70 0 54.1-21.9 99-68.3 128.2l-2.4.2c50 1 86.2-38.6 86.2-87.2 0-12.2-2.1-24.3-6.9-35.7 9.5-1.9 18.5-5.6 26.4-10.5 15.3 36.6 12.6 87.3-22.8 125.6zM309 233.7c-13.3 0-25.1-7.1-34.4-16.1 21.9-12 49.6-30.7 62.3-53 1.5-3 4.1-8.6 4.5-12-12.5 27.9-44.2 49.8-73.9 56.7-4.7-7.3-7.5-15.5-7.5-24.3 0-10.3 5.2-24.1 12.9-31.6 21.6-20.5 53-8.5 72.4-50 32.5 46.2 13.1 130.3-36.3 130.3z"] }; +var faViber = { prefix: 'fab', iconName: 'viber', icon: [512, 512, [], "f409", "M444 49.9C431.3 38.2 379.9.9 265.3.4c0 0-135.1-8.1-200.9 52.3C27.8 89.3 14.9 143 13.5 209.5c-1.4 66.5-3.1 191.1 117 224.9h.1l-.1 51.6s-.8 20.9 13 25.1c16.6 5.2 26.4-10.7 42.3-27.8 8.7-9.4 20.7-23.2 29.8-33.7 82.2 6.9 145.3-8.9 152.5-11.2 16.6-5.4 110.5-17.4 125.7-142 15.8-128.6-7.6-209.8-49.8-246.5zM457.9 287c-12.9 104-89 110.6-103 115.1-6 1.9-61.5 15.7-131.2 11.2 0 0-52 62.7-68.2 79-5.3 5.3-11.1 4.8-11-5.7 0-6.9.4-85.7.4-85.7-.1 0-.1 0 0 0-101.8-28.2-95.8-134.3-94.7-189.8 1.1-55.5 11.6-101 42.6-131.6 55.7-50.5 170.4-43 170.4-43 96.9.4 143.3 29.6 154.1 39.4 35.7 30.6 53.9 103.8 40.6 211.1zm-139-80.8c.4 8.6-12.5 9.2-12.9.6-1.1-22-11.4-32.7-32.6-33.9-8.6-.5-7.8-13.4.7-12.9 27.9 1.5 43.4 17.5 44.8 46.2zm20.3 11.3c1-42.4-25.5-75.6-75.8-79.3-8.5-.6-7.6-13.5.9-12.9 58 4.2 88.9 44.1 87.8 92.5-.1 8.6-13.1 8.2-12.9-.3zm47 13.4c.1 8.6-12.9 8.7-12.9.1-.6-81.5-54.9-125.9-120.8-126.4-8.5-.1-8.5-12.9 0-12.9 73.7.5 133 51.4 133.7 139.2zM374.9 329v.2c-10.8 19-31 40-51.8 33.3l-.2-.3c-21.1-5.9-70.8-31.5-102.2-56.5-16.2-12.8-31-27.9-42.4-42.4-10.3-12.9-20.7-28.2-30.8-46.6-21.3-38.5-26-55.7-26-55.7-6.7-20.8 14.2-41 33.3-51.8h.2c9.2-4.8 18-3.2 23.9 3.9 0 0 12.4 14.8 17.7 22.1 5 6.8 11.7 17.7 15.2 23.8 6.1 10.9 2.3 22-3.7 26.6l-12 9.6c-6.1 4.9-5.3 14-5.3 14s17.8 67.3 84.3 84.3c0 0 9.1.8 14-5.3l9.6-12c4.6-6 15.7-9.8 26.6-3.7 14.7 8.3 33.4 21.2 45.8 32.9 7 5.7 8.6 14.4 3.8 23.6z"] }; +var faVimeo = { prefix: 'fab', iconName: 'vimeo', icon: [448, 512, [], "f40a", "M403.2 32H44.8C20.1 32 0 52.1 0 76.8v358.4C0 459.9 20.1 480 44.8 480h358.4c24.7 0 44.8-20.1 44.8-44.8V76.8c0-24.7-20.1-44.8-44.8-44.8zM377 180.8c-1.4 31.5-23.4 74.7-66 129.4-44 57.2-81.3 85.8-111.7 85.8-18.9 0-34.8-17.4-47.9-52.3-25.5-93.3-36.4-148-57.4-148-2.4 0-10.9 5.1-25.4 15.2l-15.2-19.6c37.3-32.8 72.9-69.2 95.2-71.2 25.2-2.4 40.7 14.8 46.5 51.7 20.7 131.2 29.9 151 67.6 91.6 13.5-21.4 20.8-37.7 21.8-48.9 3.5-33.2-25.9-30.9-45.8-22.4 15.9-52.1 46.3-77.4 91.2-76 33.3.9 49 22.5 47.1 64.7z"] }; +var faVimeoSquare = { prefix: 'fab', iconName: 'vimeo-square', icon: [448, 512, [], "f194", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16.2 149.6c-1.4 31.1-23.2 73.8-65.3 127.9-43.5 56.5-80.3 84.8-110.4 84.8-18.7 0-34.4-17.2-47.3-51.6-25.2-92.3-35.9-146.4-56.7-146.4-2.4 0-10.8 5-25.1 15.1L64 192c36.9-32.4 72.1-68.4 94.1-70.4 24.9-2.4 40.2 14.6 46 51.1 20.5 129.6 29.6 149.2 66.8 90.5 13.4-21.2 20.6-37.2 21.5-48.3 3.4-32.8-25.6-30.6-45.2-22.2 15.7-51.5 45.8-76.5 90.1-75.1 32.9 1 48.4 22.4 46.5 64z"] }; +var faVimeoV = { prefix: 'fab', iconName: 'vimeo-v', icon: [448, 512, [], "f27d", "M447.8 153.6c-2 43.6-32.4 103.3-91.4 179.1-60.9 79.2-112.4 118.8-154.6 118.8-26.1 0-48.2-24.1-66.3-72.3C100.3 250 85.3 174.3 56.2 174.3c-3.4 0-15.1 7.1-35.2 21.1L0 168.2c51.6-45.3 100.9-95.7 131.8-98.5 34.9-3.4 56.3 20.5 64.4 71.5 28.7 181.5 41.4 208.9 93.6 126.7 18.7-29.6 28.8-52.1 30.2-67.6 4.8-45.9-35.8-42.8-63.3-31 22-72.1 64.1-107.1 126.2-105.1 45.8 1.2 67.5 31.1 64.9 89.4z"] }; +var faVine = { prefix: 'fab', iconName: 'vine', icon: [384, 512, [], "f1ca", "M384 254.7v52.1c-18.4 4.2-36.9 6.1-52.1 6.1-36.9 77.4-103 143.8-125.1 156.2-14 7.9-27.1 8.4-42.7-.8C137 452 34.2 367.7 0 102.7h74.5C93.2 261.8 139 343.4 189.3 404.5c27.9-27.9 54.8-65.1 75.6-106.9-49.8-25.3-80.1-80.9-80.1-145.6 0-65.6 37.7-115.1 102.2-115.1 114.9 0 106.2 127.9 81.6 181.5 0 0-46.4 9.2-63.5-20.5 3.4-11.3 8.2-30.8 8.2-48.5 0-31.3-11.3-46.6-28.4-46.6-18.2 0-30.8 17.1-30.8 50 .1 79.2 59.4 118.7 129.9 101.9z"] }; +var faVk = { prefix: 'fab', iconName: 'vk', icon: [576, 512, [], "f189", "M545 117.7c3.7-12.5 0-21.7-17.8-21.7h-58.9c-15 0-21.9 7.9-25.6 16.7 0 0-30 73.1-72.4 120.5-13.7 13.7-20 18.1-27.5 18.1-3.7 0-9.4-4.4-9.4-16.9V117.7c0-15-4.2-21.7-16.6-21.7h-92.6c-9.4 0-15 7-15 13.5 0 14.2 21.2 17.5 23.4 57.5v86.8c0 19-3.4 22.5-10.9 22.5-20 0-68.6-73.4-97.4-157.4-5.8-16.3-11.5-22.9-26.6-22.9H38.8c-16.8 0-20.2 7.9-20.2 16.7 0 15.6 20 93.1 93.1 195.5C160.4 378.1 229 416 291.4 416c37.5 0 42.1-8.4 42.1-22.9 0-66.8-3.4-73.1 15.4-73.1 8.7 0 23.7 4.4 58.7 38.1 40 40 46.6 57.9 69 57.9h58.9c16.8 0 25.3-8.4 20.4-25-11.2-34.9-86.9-106.7-90.3-111.5-8.7-11.2-6.2-16.2 0-26.2.1-.1 72-101.3 79.4-135.6z"] }; +var faVnv = { prefix: 'fab', iconName: 'vnv', icon: [640, 512, [], "f40b", "M104.9 352c-34.1 0-46.4-30.4-46.4-30.4L2.6 210.1S-7.8 192 13 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.7-74.5c5.6-9.5 8.4-18.1 18.8-18.1h32.8c20.8 0 10.4 18.1 10.4 18.1l-55.8 111.5S174.2 352 140 352h-35.1zm395 0c-34.1 0-46.4-30.4-46.4-30.4l-55.9-111.5S387.2 192 408 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.8-74.5c5.6-9.5 8.4-18.1 18.8-18.1H627c20.8 0 10.4 18.1 10.4 18.1l-55.9 111.5S569.3 352 535.1 352h-35.2zM337.6 192c34.1 0 46.4 30.4 46.4 30.4l55.9 111.5s10.4 18.1-10.4 18.1h-32.8c-10.4 0-13.2-8.7-18.8-18.1l-36.7-74.5s-5.2-13.1-21.1-13.1c-15.9 0-21.1 13.1-21.1 13.1l-36.7 74.5c-5.6 9.4-8.4 18.1-18.8 18.1h-32.9c-20.8 0-10.4-18.1-10.4-18.1l55.9-111.5s12.2-30.4 46.4-30.4h35.1z"] }; +var faVuejs = { prefix: 'fab', iconName: 'vuejs', icon: [448, 512, [], "f41f", "M356.9 64.3H280l-56 88.6-48-88.6H0L224 448 448 64.3h-91.1zm-301.2 32h53.8L224 294.5 338.4 96.3h53.8L224 384.5 55.7 96.3z"] }; +var faWeibo = { prefix: 'fab', iconName: 'weibo', icon: [512, 512, [], "f18a", "M407 177.6c7.6-24-13.4-46.8-37.4-41.7-22 4.8-28.8-28.1-7.1-32.8 50.1-10.9 92.3 37.1 76.5 84.8-6.8 21.2-38.8 10.8-32-10.3zM214.8 446.7C108.5 446.7 0 395.3 0 310.4c0-44.3 28-95.4 76.3-143.7C176 67 279.5 65.8 249.9 161c-4 13.1 12.3 5.7 12.3 6 79.5-33.6 140.5-16.8 114 51.4-3.7 9.4 1.1 10.9 8.3 13.1 135.7 42.3 34.8 215.2-169.7 215.2zm143.7-146.3c-5.4-55.7-78.5-94-163.4-85.7-84.8 8.6-148.8 60.3-143.4 116s78.5 94 163.4 85.7c84.8-8.6 148.8-60.3 143.4-116zM347.9 35.1c-25.9 5.6-16.8 43.7 8.3 38.3 72.3-15.2 134.8 52.8 111.7 124-7.4 24.2 29.1 37 37.4 12 31.9-99.8-55.1-195.9-157.4-174.3zm-78.5 311c-17.1 38.8-66.8 60-109.1 46.3-40.8-13.1-58-53.4-40.3-89.7 17.7-35.4 63.1-55.4 103.4-45.1 42 10.8 63.1 50.2 46 88.5zm-86.3-30c-12.9-5.4-30 .3-38 12.9-8.3 12.9-4.3 28 8.6 34 13.1 6 30.8.3 39.1-12.9 8-13.1 3.7-28.3-9.7-34zm32.6-13.4c-5.1-1.7-11.4.6-14.3 5.4-2.9 5.1-1.4 10.6 3.7 12.9 5.1 2 11.7-.3 14.6-5.4 2.8-5.2 1.1-10.9-4-12.9z"] }; +var faWeixin = { prefix: 'fab', iconName: 'weixin', icon: [576, 512, [], "f1d7", "M385.2 167.6c6.4 0 12.6.3 18.8 1.1C387.4 90.3 303.3 32 207.7 32 100.5 32 13 104.8 13 197.4c0 53.4 29.3 97.5 77.9 131.6l-19.3 58.6 68-34.1c24.4 4.8 43.8 9.7 68.2 9.7 6.2 0 12.1-.3 18.3-.8-4-12.9-6.2-26.6-6.2-40.8-.1-84.9 72.9-154 165.3-154zm-104.5-52.9c14.5 0 24.2 9.7 24.2 24.4 0 14.5-9.7 24.2-24.2 24.2-14.8 0-29.3-9.7-29.3-24.2.1-14.7 14.6-24.4 29.3-24.4zm-136.4 48.6c-14.5 0-29.3-9.7-29.3-24.2 0-14.8 14.8-24.4 29.3-24.4 14.8 0 24.4 9.7 24.4 24.4 0 14.6-9.6 24.2-24.4 24.2zM563 319.4c0-77.9-77.9-141.3-165.4-141.3-92.7 0-165.4 63.4-165.4 141.3S305 460.7 397.6 460.7c19.3 0 38.9-5.1 58.6-9.9l53.4 29.3-14.8-48.6C534 402.1 563 363.2 563 319.4zm-219.1-24.5c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.8 0 24.4 9.7 24.4 19.3 0 10-9.7 19.6-24.4 19.6zm107.1 0c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.5 0 24.4 9.7 24.4 19.3.1 10-9.9 19.6-24.4 19.6z"] }; +var faWhatsapp = { prefix: 'fab', iconName: 'whatsapp', icon: [448, 512, [], "f232", "M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"] }; +var faWhatsappSquare = { prefix: 'fab', iconName: 'whatsapp-square', icon: [448, 512, [], "f40c", "M224 122.8c-72.7 0-131.8 59.1-131.9 131.8 0 24.9 7 49.2 20.2 70.1l3.1 5-13.3 48.6 49.9-13.1 4.8 2.9c20.2 12 43.4 18.4 67.1 18.4h.1c72.6 0 133.3-59.1 133.3-131.8 0-35.2-15.2-68.3-40.1-93.2-25-25-58-38.7-93.2-38.7zm77.5 188.4c-3.3 9.3-19.1 17.7-26.7 18.8-12.6 1.9-22.4.9-47.5-9.9-39.7-17.2-65.7-57.2-67.7-59.8-2-2.6-16.2-21.5-16.2-41s10.2-29.1 13.9-33.1c3.6-4 7.9-5 10.6-5 2.6 0 5.3 0 7.6.1 2.4.1 5.7-.9 8.9 6.8 3.3 7.9 11.2 27.4 12.2 29.4s1.7 4.3.3 6.9c-7.6 15.2-15.7 14.6-11.6 21.6 15.3 26.3 30.6 35.4 53.9 47.1 4 2 6.3 1.7 8.6-1 2.3-2.6 9.9-11.6 12.5-15.5 2.6-4 5.3-3.3 8.9-2 3.6 1.3 23.1 10.9 27.1 12.9s6.6 3 7.6 4.6c.9 1.9.9 9.9-2.4 19.1zM400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM223.9 413.2c-26.6 0-52.7-6.7-75.8-19.3L64 416l22.5-82.2c-13.9-24-21.2-51.3-21.2-79.3C65.4 167.1 136.5 96 223.9 96c42.4 0 82.2 16.5 112.2 46.5 29.9 30 47.9 69.8 47.9 112.2 0 87.4-72.7 158.5-160.1 158.5z"] }; +var faWhmcs = { prefix: 'fab', iconName: 'whmcs', icon: [448, 512, [], "f40d", "M448 161v-21.3l-28.5-8.8-2.2-10.4 20.1-20.7L427 80.4l-29 7.5-7.2-7.5 7.5-28.2-19.1-11.6-21.3 21-10.7-3.2-7-26.4h-22.6l-6.2 26.4-12.1 3.2-19.7-21-19.4 11 8.1 27.7-8.1 8.4-28.5-7.5-11 19.1 20.7 21-2.9 10.4-28.5 7.8-.3 21.7 28.8 7.5 2.4 12.1-20.1 19.9 10.4 18.5 29.6-7.5 7.2 8.6-8.1 26.9 19.9 11.6 19.4-20.4 11.6 2.9 6.7 28.5 22.6.3 6.7-28.8 11.6-3.5 20.7 21.6 20.4-12.1-8.8-28 7.8-8.1 28.8 8.8 10.3-20.1-20.9-18.8 2.2-12.1 29.1-7zm-119.2 45.2c-31.3 0-56.8-25.4-56.8-56.8s25.4-56.8 56.8-56.8 56.8 25.4 56.8 56.8c0 31.5-25.4 56.8-56.8 56.8zm72.3 16.4l46.9 14.5V277l-55.1 13.4-4.1 22.7 38.9 35.3-19.2 37.9-54-16.7-14.6 15.2 16.7 52.5-38.3 22.7-38.9-40.5-21.7 6.6-12.6 54-42.4-.5-12.6-53.6-21.7-5.6-36.4 38.4-37.4-21.7 15.2-50.5-13.7-16.1-55.5 14.1-19.7-34.8 37.9-37.4-4.8-22.8-54-14.1.5-40.9L54 219.9l5.7-19.7-38.9-39.4L41.5 125l53.6 14.1 15.2-15.7-15.2-52 36.4-20.7 36.8 39.4L191 84l11.6-52H245l11.6 45.9L234 72l-6.3-1.7-3.3 5.7-11 19.1-3.3 5.6 4.6 4.6 17.2 17.4-.3 1-23.8 6.5-6.2 1.7-.1 6.4-.2 12.9C153.8 161.6 118 204 118 254.7c0 58.3 47.3 105.7 105.7 105.7 50.5 0 92.7-35.4 103.2-82.8l13.2.2 6.9.1 1.6-6.7 5.6-24 1.9-.6 17.1 17.8 4.7 4.9 5.8-3.4 20.4-12.1 5.8-3.5-2-6.5-6.8-21.2z"] }; +var faWikipediaW = { prefix: 'fab', iconName: 'wikipedia-w', icon: [640, 512, [], "f266", "M640 51.2l-.3 12.2c-28.1.8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3.3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4.2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5.3v13.1c-19.4.6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4.3-3.6 0-10.3.3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5.8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1.2.5z"] }; +var faWindows = { prefix: 'fab', iconName: 'windows', icon: [448, 512, [], "f17a", "M0 93.7l183.6-25.3v177.4H0V93.7zm0 324.6l183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z"] }; +var faWolfPackBattalion = { prefix: 'fab', iconName: 'wolf-pack-battalion', icon: [456, 512, [], "f514", "M239.73 471.53l10.56 15.84 5.28-12.32 5.28 7.04V512c21.06-7.92 21.11-66.86 25.51-97.21 4.62-31.89-.88-92.81 81.37-149.11-8.88-23.61-12-49.43-2.64-80.05 27.87 3.34 53.94 10.58 63.34 54.1l-30.35 8.36c11.15 23.04 17.01 46.76 13.2 72.14L384 313.18l-6.16 33.43-18.47-7.04-8.8 33.43-19.35-7.04 26.39 21.11 8.8-28.15 24.63 5.28 7.04-35.63 26.39 14.52c.25-20.02 6.97-58.06-8.8-84.45l26.39 5.28c3.99-22.07-2.38-39.21-7.92-56.74l22.43 9.68c-.44-25.07-29.94-56.79-61.58-58.5-20.22-1.09-56.74-25.17-54.1-51.9 1.96-19.87 17.45-42.62 43.11-49.7-43.99 36.51-9.68 67.3 5.28 73.46 4.4-11.44 17.54-69.08 0-130.2-40.47 22.87-89.73 65.1-93.25 147.79l-58.06 38.71-3.52 93.25 107.33-59.82 7.04 7.04-17.59 3.52-43.99 38.71-15.84-5.28-28.15 49.26-3.52 119.64 21.11 15.84-32.55 15.84-32.55-15.84 21.11-15.84-3.52-119.64-28.15-49.26-15.84 5.28-43.99-38.71-17.59-3.52 7.04-7.04 107.33 59.82-3.52-93.25-58.06-38.71C157.03 65.1 107.77 22.87 67.3 0c-17.54 61.12-4.4 118.76 0 130.2 14.96-6.16 49.26-36.95 5.28-73.46 25.66 7.08 41.15 29.83 43.11 49.7 2.63 26.74-33.88 50.81-54.1 51.9C29.94 160.06.44 191.78 0 216.85l22.43-9.68c-5.54 17.53-11.91 34.67-7.92 56.74l26.39-5.28c-15.76 26.39-9.05 64.43-8.8 84.45l26.39-14.52 7.04 35.63 24.63-5.28 8.8 28.15 26.39-21.11-19.34 7.05-8.8-33.43-18.47 7.04-6.16-33.43-27.27 7.04c-3.82-25.38 2.05-49.1 13.2-72.14l-30.35-8.36c9.4-43.52 35.47-50.77 63.34-54.1 9.36 30.62 6.24 56.45-2.64 80.05 82.25 56.3 76.75 117.23 81.37 149.11 4.4 30.35 4.45 89.29 25.51 97.21v-29.91l5.28-7.04 5.28 12.32 10.56-15.84 11.44 21.11 11.43-21.1zm79.17-95.01l-15.84-10.56c7.47-4.36 13.76-8.42 19.35-12.32-.6 7.26-.27 13.88-3.51 22.88zm28.15-49.26c-.4 10.94-.9 21.66-1.76 31.67-7.85-1.86-15.57-3.8-21.11-7.04 8.24-7.9 15.55-16.27 22.87-24.63zm24.63 5.28c-.02-13.43-2.05-24.21-5.28-33.43-5.38 9.09-11.23 18.18-18.47 27.27l23.75 6.16zm3.52-80.94c19.44 12.81 27.8 33.66 29.91 56.3-12.32-4.53-24.63-9.31-36.95-10.56 5.06-11.99 6.65-28.14 7.04-45.74zm-1.76-45.74c.81 14.3 1.84 28.82 1.76 42.23 19.22-8.11 29.78-9.72 43.99-14.08-10.6-18.95-27.22-25.52-45.75-28.15zM137.68 376.52l15.84-10.56c-7.47-4.36-13.76-8.42-19.35-12.32.6 7.26.27 13.88 3.51 22.88zm-28.15-49.26c.4 10.94.9 21.66 1.76 31.67 7.85-1.86 15.57-3.8 21.11-7.04-8.24-7.9-15.55-16.27-22.87-24.63zm-24.64 5.28c.02-13.43 2.05-24.21 5.28-33.43 5.38 9.09 11.23 18.18 18.47 27.27l-23.75 6.16zm-3.52-80.94c-19.44 12.81-27.8 33.66-29.91 56.3 12.32-4.53 24.63-9.31 36.95-10.56-5.05-11.99-6.65-28.14-7.04-45.74zm1.76-45.74c-.81 14.3-1.84 28.82-1.76 42.23-19.22-8.11-29.78-9.72-43.99-14.08 10.61-18.95 27.22-25.52 45.75-28.15z"] }; +var faWordpress = { prefix: 'fab', iconName: 'wordpress', icon: [512, 512, [], "f19a", "M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z"] }; +var faWordpressSimple = { prefix: 'fab', iconName: 'wordpress-simple', icon: [512, 512, [], "f411", "M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8zM33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256zm223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6zm30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3-80.7-239.6zm81.4 297.2l68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7z"] }; +var faWpbeginner = { prefix: 'fab', iconName: 'wpbeginner', icon: [512, 512, [], "f297", "M462.799 322.374C519.01 386.682 466.961 480 370.944 480c-39.602 0-78.824-17.687-100.142-50.04-6.887.356-22.702.356-29.59 0C219.848 462.381 180.588 480 141.069 480c-95.49 0-148.348-92.996-91.855-157.626C-29.925 190.523 80.479 32 256.006 32c175.632 0 285.87 158.626 206.793 290.374zm-339.647-82.972h41.529v-58.075h-41.529v58.075zm217.18 86.072v-23.839c-60.506 20.915-132.355 9.198-187.589-33.971l.246 24.897c51.101 46.367 131.746 57.875 187.343 32.913zm-150.753-86.072h166.058v-58.075H189.579v58.075z"] }; +var faWpexplorer = { prefix: 'fab', iconName: 'wpexplorer', icon: [512, 512, [], "f2de", "M512 256c0 141.2-114.7 256-256 256C114.8 512 0 397.3 0 256S114.7 0 256 0s256 114.7 256 256zm-32 0c0-123.2-100.3-224-224-224C132.5 32 32 132.5 32 256s100.5 224 224 224 224-100.5 224-224zM160.9 124.6l86.9 37.1-37.1 86.9-86.9-37.1 37.1-86.9zm110 169.1l46.6 94h-14.6l-50-100-48.9 100h-14l51.1-106.9-22.3-9.4 6-14 68.6 29.1-6 14.3-16.5-7.1zm-11.8-116.3l68.6 29.4-29.4 68.3L230 246l29.1-68.6zm80.3 42.9l54.6 23.1-23.4 54.3-54.3-23.1 23.1-54.3z"] }; +var faWpforms = { prefix: 'fab', iconName: 'wpforms', icon: [448, 512, [], "f298", "M448 75.2v361.7c0 24.3-19 43.2-43.2 43.2H43.2C19.3 480 0 461.4 0 436.8V75.2C0 51.1 18.8 32 43.2 32h361.7c24 0 43.1 18.8 43.1 43.2zm-37.3 361.6V75.2c0-3-2.6-5.8-5.8-5.8h-9.3L285.3 144 224 94.1 162.8 144 52.5 69.3h-9.3c-3.2 0-5.8 2.8-5.8 5.8v361.7c0 3 2.6 5.8 5.8 5.8h361.7c3.2.1 5.8-2.7 5.8-5.8zM150.2 186v37H76.7v-37h73.5zm0 74.4v37.3H76.7v-37.3h73.5zm11.1-147.3l54-43.7H96.8l64.5 43.7zm210 72.9v37h-196v-37h196zm0 74.4v37.3h-196v-37.3h196zm-84.6-147.3l64.5-43.7H232.8l53.9 43.7zM371.3 335v37.3h-99.4V335h99.4z"] }; +var faXbox = { prefix: 'fab', iconName: 'xbox', icon: [512, 512, [], "f412", "M369.9 318.2c44.3 54.3 64.7 98.8 54.4 118.7-7.9 15.1-56.7 44.6-92.6 55.9-29.6 9.3-68.4 13.3-100.4 10.2-38.2-3.7-76.9-17.4-110.1-39C93.3 445.8 87 438.3 87 423.4c0-29.9 32.9-82.3 89.2-142.1 32-33.9 76.5-73.7 81.4-72.6 9.4 2.1 84.3 75.1 112.3 109.5zM188.6 143.8c-29.7-26.9-58.1-53.9-86.4-63.4-15.2-5.1-16.3-4.8-28.7 8.1-29.2 30.4-53.5 79.7-60.3 122.4-5.4 34.2-6.1 43.8-4.2 60.5 5.6 50.5 17.3 85.4 40.5 120.9 9.5 14.6 12.1 17.3 9.3 9.9-4.2-11-.3-37.5 9.5-64 14.3-39 53.9-112.9 120.3-194.4zm311.6 63.5C483.3 127.3 432.7 77 425.6 77c-7.3 0-24.2 6.5-36 13.9-23.3 14.5-41 31.4-64.3 52.8C367.7 197 427.5 283.1 448.2 346c6.8 20.7 9.7 41.1 7.4 52.3-1.7 8.5-1.7 8.5 1.4 4.6 6.1-7.7 19.9-31.3 25.4-43.5 7.4-16.2 15-40.2 18.6-58.7 4.3-22.5 3.9-70.8-.8-93.4zM141.3 43C189 40.5 251 77.5 255.6 78.4c.7.1 10.4-4.2 21.6-9.7 63.9-31.1 94-25.8 107.4-25.2-63.9-39.3-152.7-50-233.9-11.7-23.4 11.1-24 11.9-9.4 11.2z"] }; +var faXing = { prefix: 'fab', iconName: 'xing', icon: [384, 512, [], "f168", "M162.7 210c-1.8 3.3-25.2 44.4-70.1 123.5-4.9 8.3-10.8 12.5-17.7 12.5H9.8c-7.7 0-12.1-7.5-8.5-14.4l69-121.3c.2 0 .2-.1 0-.3l-43.9-75.6c-4.3-7.8.3-14.1 8.5-14.1H100c7.3 0 13.3 4.1 18 12.2l44.7 77.5zM382.6 46.1l-144 253v.3L330.2 466c3.9 7.1.2 14.1-8.5 14.1h-65.2c-7.6 0-13.6-4-18-12.2l-92.4-168.5c3.3-5.8 51.5-90.8 144.8-255.2 4.6-8.1 10.4-12.2 17.5-12.2h65.7c8 0 12.3 6.7 8.5 14.1z"] }; +var faXingSquare = { prefix: 'fab', iconName: 'xing-square', icon: [448, 512, [], "f169", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM140.4 320.2H93.8c-5.5 0-8.7-5.3-6-10.3l49.3-86.7c.1 0 .1-.1 0-.2l-31.4-54c-3-5.6.2-10.1 6-10.1h46.6c5.2 0 9.5 2.9 12.9 8.7l31.9 55.3c-1.3 2.3-18 31.7-50.1 88.2-3.5 6.2-7.7 9.1-12.6 9.1zm219.7-214.1L257.3 286.8v.2l65.5 119c2.8 5.1.1 10.1-6 10.1h-46.6c-5.5 0-9.7-2.9-12.9-8.7l-66-120.3c2.3-4.1 36.8-64.9 103.4-182.3 3.3-5.8 7.4-8.7 12.5-8.7h46.9c5.7-.1 8.8 4.7 6 10z"] }; +var faYCombinator = { prefix: 'fab', iconName: 'y-combinator', icon: [448, 512, [], "f23b", "M448 32v448H0V32h448zM236 287.5L313.5 142h-32.7L235 233c-4.7 9.3-9 18.3-12.8 26.8L210 233l-45.2-91h-35l76.7 143.8v94.5H236v-92.8z"] }; +var faYahoo = { prefix: 'fab', iconName: 'yahoo', icon: [448, 512, [], "f19e", "M252 292l4 220c-12.7-2.2-23.5-3.9-32.3-3.9-8.4 0-19.2 1.7-32.3 3.9l4-220C140.4 197.2 85 95.2 21.4 0c11.9 3.1 23 3.9 33.2 3.9 9 0 20.4-.8 34.1-3.9 40.9 72.2 82.1 138.7 135 225.5C261 163.9 314.8 81.4 358.6 0c11.1 2.9 22 3.9 32.9 3.9 11.5 0 23.2-1 35-3.9C392.1 47.9 294.9 216.9 252 292z"] }; +var faYandex = { prefix: 'fab', iconName: 'yandex', icon: [256, 512, [], "f413", "M153.1 315.8L65.7 512H2l96-209.8c-45.1-22.9-75.2-64.4-75.2-141.1C22.7 53.7 90.8 0 171.7 0H254v512h-55.1V315.8h-45.8zm45.8-269.3h-29.4c-44.4 0-87.4 29.4-87.4 114.6 0 82.3 39.4 108.8 87.4 108.8h29.4V46.5z"] }; +var faYandexInternational = { prefix: 'fab', iconName: 'yandex-international', icon: [320, 512, [], "f414", "M129.5 512V345.9L18.5 48h55.8l81.8 229.7L250.2 0h51.3L180.8 347.8V512h-51.3z"] }; +var faYelp = { prefix: 'fab', iconName: 'yelp', icon: [384, 512, [], "f1e9", "M136.9 328c-1 .3-109.2 35.7-115.8 35.7-15.2-.9-18.5-16.2-19.9-31.2-1.5-14.2-1.4-29.8.3-46.8 1.9-18.8 5.5-45.1 24.2-44 4.8 0 67.1 25.9 112.7 44.4 17.1 6.8 18.6 35.8-1.5 41.9zm57.9-113.9c1.8 38.2-25.5 48.5-47.2 14.3L41.3 60.4c-1.5-6.6.3-12.4 5.3-17.4C62.2 26.5 146 3.2 168.1 8.9c7.5 1.9 12.1 6.1 13.8 12.6 1.3 8.3 11.5 167.4 12.9 192.6zm-1.4 164.8c0 4.6.2 116.4-1.7 121.5-2.3 6-7 9.7-14.3 11.2-10.1 1.7-27.1-1.9-51-10.7-22-8.1-56.7-21.5-49.3-42.5 2.8-6.9 51.4-62.8 77.3-93.6 12-15.2 39.8-5.5 39 14.1zm180.2-117.8c-5.6 3.7-110.8 28.2-118.1 30.6l.3-.6c-18.1 4.7-35.4-18.5-23.3-34.6 3.7-3.7 65.9-92.4 72.8-97 5.2-3.6 11.3-3.8 18.3-.6 18.4 8.8 55.1 63.1 57.4 84.6-.1 2.9 1.2 11.7-7.4 17.6zm10.1 130.7c-2.7 20.6-44.5 73.4-63.8 81-6.9 2.6-12.9 2-17.7-2-5-3.5-61.8-97.1-64.9-102.3-10.9-16.2 6.8-39.8 25.6-33.2 0 0 110.5 35.7 114.7 39.4 5.2 4.1 7.2 9.8 6.1 17.1z"] }; +var faYoast = { prefix: 'fab', iconName: 'yoast', icon: [448, 512, [], "f2b1", "M91.3 76h186l-7 18.9h-179c-39.7 0-71.9 31.6-71.9 70.3v205.4c0 35.4 24.9 70.3 84 70.3V460H91.3C41.2 460 0 419.8 0 370.5V165.2C0 115.9 40.7 76 91.3 76zm229.1-56h66.5C243.1 398.1 241.2 418.9 202.2 459.3c-20.8 21.6-49.3 31.7-78.3 32.7v-51.1c49.2-7.7 64.6-49.9 64.6-75.3 0-20.1.6-12.6-82.1-223.2h61.4L218.2 299 320.4 20zM448 161.5V460H234c6.6-9.6 10.7-16.3 12.1-19.4h182.5V161.5c0-32.5-17.1-51.9-48.2-62.9l6.7-17.6c41.7 13.6 60.9 43.1 60.9 80.5z"] }; +var faYoutube = { prefix: 'fab', iconName: 'youtube', icon: [576, 512, [], "f167", "M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"] }; +var faYoutubeSquare = { prefix: 'fab', iconName: 'youtube-square', icon: [448, 512, [], "f431", "M186.8 202.1l95.2 54.1-95.2 54.1V202.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-42 176.3s0-59.6-7.6-88.2c-4.2-15.8-16.5-28.2-32.2-32.4C337.9 128 224 128 224 128s-113.9 0-142.2 7.7c-15.7 4.2-28 16.6-32.2 32.4-7.6 28.5-7.6 88.2-7.6 88.2s0 59.6 7.6 88.2c4.2 15.8 16.5 27.7 32.2 31.9C110.1 384 224 384 224 384s113.9 0 142.2-7.7c15.7-4.2 28-16.1 32.2-31.9 7.6-28.5 7.6-88.1 7.6-88.1z"] }; +var icons$1 = { + fa500px: fa500px, + faAccessibleIcon: faAccessibleIcon, + faAccusoft: faAccusoft, + faAdn: faAdn, + faAdversal: faAdversal, + faAffiliatetheme: faAffiliatetheme, + faAlgolia: faAlgolia, + faAmazon: faAmazon, + faAmazonPay: faAmazonPay, + faAmilia: faAmilia, + faAndroid: faAndroid, + faAngellist: faAngellist, + faAngrycreative: faAngrycreative, + faAngular: faAngular, + faAppStore: faAppStore, + faAppStoreIos: faAppStoreIos, + faApper: faApper, + faApple: faApple, + faApplePay: faApplePay, + faAsymmetrik: faAsymmetrik, + faAudible: faAudible, + faAutoprefixer: faAutoprefixer, + faAvianex: faAvianex, + faAviato: faAviato, + faAws: faAws, + faBandcamp: faBandcamp, + faBehance: faBehance, + faBehanceSquare: faBehanceSquare, + faBimobject: faBimobject, + faBitbucket: faBitbucket, + faBitcoin: faBitcoin, + faBity: faBity, + faBlackTie: faBlackTie, + faBlackberry: faBlackberry, + faBlogger: faBlogger, + faBloggerB: faBloggerB, + faBluetooth: faBluetooth, + faBluetoothB: faBluetoothB, + faBtc: faBtc, + faBuromobelexperte: faBuromobelexperte, + faBuysellads: faBuysellads, + faCcAmazonPay: faCcAmazonPay, + faCcAmex: faCcAmex, + faCcApplePay: faCcApplePay, + faCcDinersClub: faCcDinersClub, + faCcDiscover: faCcDiscover, + faCcJcb: faCcJcb, + faCcMastercard: faCcMastercard, + faCcPaypal: faCcPaypal, + faCcStripe: faCcStripe, + faCcVisa: faCcVisa, + faCentercode: faCentercode, + faChrome: faChrome, + faCloudscale: faCloudscale, + faCloudsmith: faCloudsmith, + faCloudversify: faCloudversify, + faCodepen: faCodepen, + faCodiepie: faCodiepie, + faConnectdevelop: faConnectdevelop, + faContao: faContao, + faCpanel: faCpanel, + faCreativeCommons: faCreativeCommons, + faCreativeCommonsBy: faCreativeCommonsBy, + faCreativeCommonsNc: faCreativeCommonsNc, + faCreativeCommonsNcEu: faCreativeCommonsNcEu, + faCreativeCommonsNcJp: faCreativeCommonsNcJp, + faCreativeCommonsNd: faCreativeCommonsNd, + faCreativeCommonsPd: faCreativeCommonsPd, + faCreativeCommonsPdAlt: faCreativeCommonsPdAlt, + faCreativeCommonsRemix: faCreativeCommonsRemix, + faCreativeCommonsSa: faCreativeCommonsSa, + faCreativeCommonsSampling: faCreativeCommonsSampling, + faCreativeCommonsSamplingPlus: faCreativeCommonsSamplingPlus, + faCreativeCommonsShare: faCreativeCommonsShare, + faCss3: faCss3, + faCss3Alt: faCss3Alt, + faCuttlefish: faCuttlefish, + faDAndD: faDAndD, + faDashcube: faDashcube, + faDelicious: faDelicious, + faDeploydog: faDeploydog, + faDeskpro: faDeskpro, + faDeviantart: faDeviantart, + faDigg: faDigg, + faDigitalOcean: faDigitalOcean, + faDiscord: faDiscord, + faDiscourse: faDiscourse, + faDochub: faDochub, + faDocker: faDocker, + faDraft2digital: faDraft2digital, + faDribbble: faDribbble, + faDribbbleSquare: faDribbbleSquare, + faDropbox: faDropbox, + faDrupal: faDrupal, + faDyalog: faDyalog, + faEarlybirds: faEarlybirds, + faEbay: faEbay, + faEdge: faEdge, + faElementor: faElementor, + faEmber: faEmber, + faEmpire: faEmpire, + faEnvira: faEnvira, + faErlang: faErlang, + faEthereum: faEthereum, + faEtsy: faEtsy, + faExpeditedssl: faExpeditedssl, + faFacebook: faFacebook, + faFacebookF: faFacebookF, + faFacebookMessenger: faFacebookMessenger, + faFacebookSquare: faFacebookSquare, + faFirefox: faFirefox, + faFirstOrder: faFirstOrder, + faFirstOrderAlt: faFirstOrderAlt, + faFirstdraft: faFirstdraft, + faFlickr: faFlickr, + faFlipboard: faFlipboard, + faFly: faFly, + faFontAwesome: faFontAwesome, + faFontAwesomeAlt: faFontAwesomeAlt, + faFontAwesomeFlag: faFontAwesomeFlag, + faFontAwesomeLogoFull: faFontAwesomeLogoFull, + faFonticons: faFonticons, + faFonticonsFi: faFonticonsFi, + faFortAwesome: faFortAwesome, + faFortAwesomeAlt: faFortAwesomeAlt, + faForumbee: faForumbee, + faFoursquare: faFoursquare, + faFreeCodeCamp: faFreeCodeCamp, + faFreebsd: faFreebsd, + faFulcrum: faFulcrum, + faGalacticRepublic: faGalacticRepublic, + faGalacticSenate: faGalacticSenate, + faGetPocket: faGetPocket, + faGg: faGg, + faGgCircle: faGgCircle, + faGit: faGit, + faGitSquare: faGitSquare, + faGithub: faGithub, + faGithubAlt: faGithubAlt, + faGithubSquare: faGithubSquare, + faGitkraken: faGitkraken, + faGitlab: faGitlab, + faGitter: faGitter, + faGlide: faGlide, + faGlideG: faGlideG, + faGofore: faGofore, + faGoodreads: faGoodreads, + faGoodreadsG: faGoodreadsG, + faGoogle: faGoogle, + faGoogleDrive: faGoogleDrive, + faGooglePlay: faGooglePlay, + faGooglePlus: faGooglePlus, + faGooglePlusG: faGooglePlusG, + faGooglePlusSquare: faGooglePlusSquare, + faGoogleWallet: faGoogleWallet, + faGratipay: faGratipay, + faGrav: faGrav, + faGripfire: faGripfire, + faGrunt: faGrunt, + faGulp: faGulp, + faHackerNews: faHackerNews, + faHackerNewsSquare: faHackerNewsSquare, + faHips: faHips, + faHireAHelper: faHireAHelper, + faHooli: faHooli, + faHotjar: faHotjar, + faHouzz: faHouzz, + faHtml5: faHtml5, + faHubspot: faHubspot, + faImdb: faImdb, + faInstagram: faInstagram, + faInternetExplorer: faInternetExplorer, + faIoxhost: faIoxhost, + faItunes: faItunes, + faItunesNote: faItunesNote, + faJava: faJava, + faJediOrder: faJediOrder, + faJenkins: faJenkins, + faJoget: faJoget, + faJoomla: faJoomla, + faJs: faJs, + faJsSquare: faJsSquare, + faJsfiddle: faJsfiddle, + faKeybase: faKeybase, + faKeycdn: faKeycdn, + faKickstarter: faKickstarter, + faKickstarterK: faKickstarterK, + faKorvue: faKorvue, + faLaravel: faLaravel, + faLastfm: faLastfm, + faLastfmSquare: faLastfmSquare, + faLeanpub: faLeanpub, + faLess: faLess, + faLine: faLine, + faLinkedin: faLinkedin, + faLinkedinIn: faLinkedinIn, + faLinode: faLinode, + faLinux: faLinux, + faLyft: faLyft, + faMagento: faMagento, + faMandalorian: faMandalorian, + faMastodon: faMastodon, + faMaxcdn: faMaxcdn, + faMedapps: faMedapps, + faMedium: faMedium, + faMediumM: faMediumM, + faMedrt: faMedrt, + faMeetup: faMeetup, + faMicrosoft: faMicrosoft, + faMix: faMix, + faMixcloud: faMixcloud, + faMizuni: faMizuni, + faModx: faModx, + faMonero: faMonero, + faNapster: faNapster, + faNintendoSwitch: faNintendoSwitch, + faNode: faNode, + faNodeJs: faNodeJs, + faNpm: faNpm, + faNs8: faNs8, + faNutritionix: faNutritionix, + faOdnoklassniki: faOdnoklassniki, + faOdnoklassnikiSquare: faOdnoklassnikiSquare, + faOldRepublic: faOldRepublic, + faOpencart: faOpencart, + faOpenid: faOpenid, + faOpera: faOpera, + faOptinMonster: faOptinMonster, + faOsi: faOsi, + faPage4: faPage4, + faPagelines: faPagelines, + faPalfed: faPalfed, + faPatreon: faPatreon, + faPaypal: faPaypal, + faPeriscope: faPeriscope, + faPhabricator: faPhabricator, + faPhoenixFramework: faPhoenixFramework, + faPhoenixSquadron: faPhoenixSquadron, + faPhp: faPhp, + faPiedPiper: faPiedPiper, + faPiedPiperAlt: faPiedPiperAlt, + faPiedPiperHat: faPiedPiperHat, + faPiedPiperPp: faPiedPiperPp, + faPinterest: faPinterest, + faPinterestP: faPinterestP, + faPinterestSquare: faPinterestSquare, + faPlaystation: faPlaystation, + faProductHunt: faProductHunt, + faPushed: faPushed, + faPython: faPython, + faQq: faQq, + faQuinscape: faQuinscape, + faQuora: faQuora, + faRProject: faRProject, + faRavelry: faRavelry, + faReact: faReact, + faReadme: faReadme, + faRebel: faRebel, + faRedRiver: faRedRiver, + faReddit: faReddit, + faRedditAlien: faRedditAlien, + faRedditSquare: faRedditSquare, + faRendact: faRendact, + faRenren: faRenren, + faReplyd: faReplyd, + faResearchgate: faResearchgate, + faResolving: faResolving, + faRocketchat: faRocketchat, + faRockrms: faRockrms, + faSafari: faSafari, + faSass: faSass, + faSchlix: faSchlix, + faScribd: faScribd, + faSearchengin: faSearchengin, + faSellcast: faSellcast, + faSellsy: faSellsy, + faServicestack: faServicestack, + faShirtsinbulk: faShirtsinbulk, + faSimplybuilt: faSimplybuilt, + faSistrix: faSistrix, + faSith: faSith, + faSkyatlas: faSkyatlas, + faSkype: faSkype, + faSlack: faSlack, + faSlackHash: faSlackHash, + faSlideshare: faSlideshare, + faSnapchat: faSnapchat, + faSnapchatGhost: faSnapchatGhost, + faSnapchatSquare: faSnapchatSquare, + faSoundcloud: faSoundcloud, + faSpeakap: faSpeakap, + faSpotify: faSpotify, + faStackExchange: faStackExchange, + faStackOverflow: faStackOverflow, + faStaylinked: faStaylinked, + faSteam: faSteam, + faSteamSquare: faSteamSquare, + faSteamSymbol: faSteamSymbol, + faStickerMule: faStickerMule, + faStrava: faStrava, + faStripe: faStripe, + faStripeS: faStripeS, + faStudiovinari: faStudiovinari, + faStumbleupon: faStumbleupon, + faStumbleuponCircle: faStumbleuponCircle, + faSuperpowers: faSuperpowers, + faSupple: faSupple, + faTeamspeak: faTeamspeak, + faTelegram: faTelegram, + faTelegramPlane: faTelegramPlane, + faTencentWeibo: faTencentWeibo, + faThemeisle: faThemeisle, + faTradeFederation: faTradeFederation, + faTrello: faTrello, + faTripadvisor: faTripadvisor, + faTumblr: faTumblr, + faTumblrSquare: faTumblrSquare, + faTwitch: faTwitch, + faTwitter: faTwitter, + faTwitterSquare: faTwitterSquare, + faTypo3: faTypo3, + faUber: faUber, + faUikit: faUikit, + faUniregistry: faUniregistry, + faUntappd: faUntappd, + faUsb: faUsb, + faUssunnah: faUssunnah, + faVaadin: faVaadin, + faViacoin: faViacoin, + faViadeo: faViadeo, + faViadeoSquare: faViadeoSquare, + faViber: faViber, + faVimeo: faVimeo, + faVimeoSquare: faVimeoSquare, + faVimeoV: faVimeoV, + faVine: faVine, + faVk: faVk, + faVnv: faVnv, + faVuejs: faVuejs, + faWeibo: faWeibo, + faWeixin: faWeixin, + faWhatsapp: faWhatsapp, + faWhatsappSquare: faWhatsappSquare, + faWhmcs: faWhmcs, + faWikipediaW: faWikipediaW, + faWindows: faWindows, + faWolfPackBattalion: faWolfPackBattalion, + faWordpress: faWordpress, + faWordpressSimple: faWordpressSimple, + faWpbeginner: faWpbeginner, + faWpexplorer: faWpexplorer, + faWpforms: faWpforms, + faXbox: faXbox, + faXing: faXing, + faXingSquare: faXingSquare, + faYCombinator: faYCombinator, + faYahoo: faYahoo, + faYandex: faYandex, + faYandexInternational: faYandexInternational, + faYelp: faYelp, + faYoast: faYoast, + faYoutube: faYoutube, + faYoutubeSquare: faYoutubeSquare +}; + +bunker(function () { + define('fab', icons$1); +}); + +export { prefix, fa500px, faAccessibleIcon, faAccusoft, faAdn, faAdversal, faAffiliatetheme, faAlgolia, faAmazon, faAmazonPay, faAmilia, faAndroid, faAngellist, faAngrycreative, faAngular, faAppStore, faAppStoreIos, faApper, faApple, faApplePay, faAsymmetrik, faAudible, faAutoprefixer, faAvianex, faAviato, faAws, faBandcamp, faBehance, faBehanceSquare, faBimobject, faBitbucket, faBitcoin, faBity, faBlackTie, faBlackberry, faBlogger, faBloggerB, faBluetooth, faBluetoothB, faBtc, faBuromobelexperte, faBuysellads, faCcAmazonPay, faCcAmex, faCcApplePay, faCcDinersClub, faCcDiscover, faCcJcb, faCcMastercard, faCcPaypal, faCcStripe, faCcVisa, faCentercode, faChrome, faCloudscale, faCloudsmith, faCloudversify, faCodepen, faCodiepie, faConnectdevelop, faContao, faCpanel, faCreativeCommons, faCreativeCommonsBy, faCreativeCommonsNc, faCreativeCommonsNcEu, faCreativeCommonsNcJp, faCreativeCommonsNd, faCreativeCommonsPd, faCreativeCommonsPdAlt, faCreativeCommonsRemix, faCreativeCommonsSa, faCreativeCommonsSampling, faCreativeCommonsSamplingPlus, faCreativeCommonsShare, faCss3, faCss3Alt, faCuttlefish, faDAndD, faDashcube, faDelicious, faDeploydog, faDeskpro, faDeviantart, faDigg, faDigitalOcean, faDiscord, faDiscourse, faDochub, faDocker, faDraft2digital, faDribbble, faDribbbleSquare, faDropbox, faDrupal, faDyalog, faEarlybirds, faEbay, faEdge, faElementor, faEmber, faEmpire, faEnvira, faErlang, faEthereum, faEtsy, faExpeditedssl, faFacebook, faFacebookF, faFacebookMessenger, faFacebookSquare, faFirefox, faFirstOrder, faFirstOrderAlt, faFirstdraft, faFlickr, faFlipboard, faFly, faFontAwesome, faFontAwesomeAlt, faFontAwesomeFlag, faFontAwesomeLogoFull, faFonticons, faFonticonsFi, faFortAwesome, faFortAwesomeAlt, faForumbee, faFoursquare, faFreeCodeCamp, faFreebsd, faFulcrum, faGalacticRepublic, faGalacticSenate, faGetPocket, faGg, faGgCircle, faGit, faGitSquare, faGithub, faGithubAlt, faGithubSquare, faGitkraken, faGitlab, faGitter, faGlide, faGlideG, faGofore, faGoodreads, faGoodreadsG, faGoogle, faGoogleDrive, faGooglePlay, faGooglePlus, faGooglePlusG, faGooglePlusSquare, faGoogleWallet, faGratipay, faGrav, faGripfire, faGrunt, faGulp, faHackerNews, faHackerNewsSquare, faHips, faHireAHelper, faHooli, faHotjar, faHouzz, faHtml5, faHubspot, faImdb, faInstagram, faInternetExplorer, faIoxhost, faItunes, faItunesNote, faJava, faJediOrder, faJenkins, faJoget, faJoomla, faJs, faJsSquare, faJsfiddle, faKeybase, faKeycdn, faKickstarter, faKickstarterK, faKorvue, faLaravel, faLastfm, faLastfmSquare, faLeanpub, faLess, faLine, faLinkedin, faLinkedinIn, faLinode, faLinux, faLyft, faMagento, faMandalorian, faMastodon, faMaxcdn, faMedapps, faMedium, faMediumM, faMedrt, faMeetup, faMicrosoft, faMix, faMixcloud, faMizuni, faModx, faMonero, faNapster, faNintendoSwitch, faNode, faNodeJs, faNpm, faNs8, faNutritionix, faOdnoklassniki, faOdnoklassnikiSquare, faOldRepublic, faOpencart, faOpenid, faOpera, faOptinMonster, faOsi, faPage4, faPagelines, faPalfed, faPatreon, faPaypal, faPeriscope, faPhabricator, faPhoenixFramework, faPhoenixSquadron, faPhp, faPiedPiper, faPiedPiperAlt, faPiedPiperHat, faPiedPiperPp, faPinterest, faPinterestP, faPinterestSquare, faPlaystation, faProductHunt, faPushed, faPython, faQq, faQuinscape, faQuora, faRProject, faRavelry, faReact, faReadme, faRebel, faRedRiver, faReddit, faRedditAlien, faRedditSquare, faRendact, faRenren, faReplyd, faResearchgate, faResolving, faRocketchat, faRockrms, faSafari, faSass, faSchlix, faScribd, faSearchengin, faSellcast, faSellsy, faServicestack, faShirtsinbulk, faSimplybuilt, faSistrix, faSith, faSkyatlas, faSkype, faSlack, faSlackHash, faSlideshare, faSnapchat, faSnapchatGhost, faSnapchatSquare, faSoundcloud, faSpeakap, faSpotify, faStackExchange, faStackOverflow, faStaylinked, faSteam, faSteamSquare, faSteamSymbol, faStickerMule, faStrava, faStripe, faStripeS, faStudiovinari, faStumbleupon, faStumbleuponCircle, faSuperpowers, faSupple, faTeamspeak, faTelegram, faTelegramPlane, faTencentWeibo, faThemeisle, faTradeFederation, faTrello, faTripadvisor, faTumblr, faTumblrSquare, faTwitch, faTwitter, faTwitterSquare, faTypo3, faUber, faUikit, faUniregistry, faUntappd, faUsb, faUssunnah, faVaadin, faViacoin, faViadeo, faViadeoSquare, faViber, faVimeo, faVimeoSquare, faVimeoV, faVine, faVk, faVnv, faVuejs, faWeibo, faWeixin, faWhatsapp, faWhatsappSquare, faWhmcs, faWikipediaW, faWindows, faWolfPackBattalion, faWordpress, faWordpressSimple, faWpbeginner, faWpexplorer, faWpforms, faXbox, faXing, faXingSquare, faYCombinator, faYahoo, faYandex, faYandexInternational, faYelp, faYoast, faYoutube, faYoutubeSquare }; +export default icons$1; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/index.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/index.js new file mode 100644 index 0000000000..5f3fee4a24 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/index.js @@ -0,0 +1,1221 @@ +/*! + * Font Awesome Free 5.0.13 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : + typeof define === 'function' && define.amd ? define(['exports'], factory) : + (factory((global['fontawesome-free-brands'] = {}))); +}(this, (function (exports) { 'use strict'; + +var _WINDOW = {}; +try { + if (typeof window !== 'undefined') _WINDOW = window; + +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; + + + + + +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; + + + + + + + +var PRODUCTION = function () { + try { + return process.env.NODE_ENV === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + + + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var prefix = "fab"; +var fa500px = { prefix: 'fab', iconName: '500px', icon: [448, 512, [], "f26e", "M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3.3-16 16.5-21.2 23.9l-.5.6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8zm63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2zM393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4zM213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6.2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6z"] }; +var faAccessibleIcon = { prefix: 'fab', iconName: 'accessible-icon', icon: [448, 512, [], "f368", "M423.9 255.8L411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7zm-64.9-154c28.1 0 50.9-22.8 50.9-50.9C409.9 22.8 387.1 0 359 0c-28.1 0-50.9 22.8-50.9 50.9 0 28.1 22.8 50.9 50.9 50.9zM179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3z"] }; +var faAccusoft = { prefix: 'fab', iconName: 'accusoft', icon: [640, 512, [], "f369", "M482.2 372.1C476.5 365.2 250 75 242.3 65.5c-13.7-17.2 0-16.8 19.2-16.9 9.7-.1 106.3-.6 116.5-.6 24.1-.1 28.7.6 38.4 12.8 2.1 2.7 205.1 245.8 207.2 248.3 5.5 6.7 15.2 19.1 7.2 23.4-2.4 1.3-114.6 47.7-117.8 48.9-10.1 4-17.5 6.8-30.8-9.3m114.7-5.6s-115 50.4-117.5 51.6c-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2-2.3-.3-24.6-4.7-38-7.2m-326-181.3s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3v-1l-51.2-65.8"] }; +var faAdn = { prefix: 'fab', iconName: 'adn', icon: [496, 512, [], "f170", "M248 167.5l64.9 98.8H183.1l64.9-98.8zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7h30.2z"] }; +var faAdversal = { prefix: 'fab', iconName: 'adversal', icon: [512, 512, [], "f36a", "M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2zM178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4.4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3zm286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7.4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9zm3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6.4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1.2-.1.3-.1.5zm-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2.4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1zm-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8z"] }; +var faAffiliatetheme = { prefix: 'fab', iconName: 'affiliatetheme', icon: [512, 512, [], "f36b", "M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2 29.1 21.6 11.1 96.6-40.2 167.5zm351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9.1-8.5-.3-16.8-1-25z"] }; +var faAlgolia = { prefix: 'fab', iconName: 'algolia', icon: [448, 512, [], "f36c", "M229.3 182.6c-49.3 0-89.2 39.9-89.2 89.2 0 49.3 39.9 89.2 89.2 89.2s89.2-39.9 89.2-89.2c0-49.3-40-89.2-89.2-89.2zm62.7 56.6l-58.9 30.6c-1.8.9-3.8-.4-3.8-2.3V201c0-1.5 1.3-2.7 2.7-2.6 26.2 1 48.9 15.7 61.1 37.1.7 1.3.2 3-1.1 3.7zM389.1 32H58.9C26.4 32 0 58.4 0 90.9V421c0 32.6 26.4 59 58.9 59H389c32.6 0 58.9-26.4 58.9-58.9V90.9C448 58.4 421.6 32 389.1 32zm-202.6 84.7c0-10.8 8.7-19.5 19.5-19.5h45.3c10.8 0 19.5 8.7 19.5 19.5v15.4c0 1.8-1.7 3-3.3 2.5-12.3-3.4-25.1-5.1-38.1-5.1-13.5 0-26.7 1.8-39.4 5.5-1.7.5-3.4-.8-3.4-2.5v-15.8zm-84.4 37l9.2-9.2c7.6-7.6 19.9-7.6 27.5 0l7.7 7.7c1.1 1.1 1 3-.3 4-6.2 4.5-12.1 9.4-17.6 14.9-5.4 5.4-10.4 11.3-14.8 17.4-1 1.3-2.9 1.5-4 .3l-7.7-7.7c-7.6-7.5-7.6-19.8 0-27.4zm127.2 244.8c-70 0-126.6-56.7-126.6-126.6s56.7-126.6 126.6-126.6c70 0 126.6 56.6 126.6 126.6 0 69.8-56.7 126.6-126.6 126.6z"] }; +var faAmazon = { prefix: 'fab', iconName: 'amazon', icon: [448, 512, [], "f270", "M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z"] }; +var faAmazonPay = { prefix: 'fab', iconName: 'amazon-pay', icon: [611, 512, [], "f42c", "M0 325.2c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7 40.7 20.4 83.2 35.6 127.4 46.3 20.9 5 41.9 9 63.2 11.8 31.5 4.2 63.2 6 95 5.2 17.4-.4 34.8-1.8 52.1-3.8 56.4-6.7 110.9-20.8 163.3-42.8 2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9-2.8 2.8-6.3 5.1-9.6 7.4-30.7 21.1-64.2 36.4-99.6 47.9-24.6 7.9-49.6 13.8-75.1 17.6-17.6 2.6-35.4 4.4-53.2 4.8-.8 0-1.7.2-2.5.3H294c-.8-.1-1.7-.3-2.5-.3-3.6-.2-7.2-.3-10.7-.4-16.9-.7-33.7-2.6-50.4-5.3-27.4-4.5-54.2-11.4-80.4-20.9-54.1-19.6-102.6-48.6-145.6-87-1.8-1.6-3-3.8-4.4-5.7v-2zM158 65c-1.4.2-2.9.4-4.3.6-14 1.7-26.6 6.9-38 15.1-2.4 1.7-4.6 3.5-7.1 5.4-.2-.5-.4-1-.4-1.4-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6H87.8c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3V215c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zm-47.4 41.9c0-1.5.4-2.4 1.7-3.3 13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9-1.2-.9-1.7-1.7-1.7-3.3.1-14.1 0-28.1 0-42.2 0-14 .1-28 0-42.1zM316.3 65c-1 .1-2 .3-2.9.4-9.8.5-19.4 1.7-28.9 4.1-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9 0 .4-.1.9-.2 1.4-.5-.1-.9 0-1.3-.1-10.5-2.5-21.1-4.3-32-4.9-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4.4-.4.9-.7 1.6-1.1.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0 2.7-.1 4.5-1.9 4.8-4.7.1-.9.1-1.9.1-2.8v-106c0-4.3-.2-8.6-.9-12.9-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1zm35 127.7c0 1.3-.4 2.2-1.5 3-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8-6.3-2.5-10.4-6.9-12.4-13.3s-2-13-.1-19.4c2.5-8.3 8.4-13 16.4-15.6 8.1-2.6 16.5-3 24.8-2.2 8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3-.1 4.7-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3-6.8-2.3-13.9-3.3-21-3.9-13.1-1.1-26.2-.5-39.2 1.9-14.3 2.7-27.9 7.3-40 15.6-1.4 1-2.8 2.1-3.7 3.5-.7 1.1-.9 2.8-.5 4 .4 1.5 2.1 1.9 3.6 1.8.7 0 1.5 0 2.2-.1 7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9 4.8.3 9.7 1.4 14.4 2.7 5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1-.4 1-.8 2-1 3-.5 2.9 1.2 4.8 4.1 4.1 1.7-.4 3.6-1.3 4.8-2.5 4.4-4.3 8.9-8.6 12.7-13.4 12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9v-17.3zM479.1 198.9c-12.9-35.7-25.8-71.5-38.7-107.2-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5.5 2.1 1.1 4.1 1.9 6.1 19.6 48.5 39.3 97.1 59.1 145.5 1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3-5.1 1.4-10.2 1.6-15.4 1.1-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8-.1 3.3-.1 6.6 0 9.9.1 5.5 2 8 7.4 8.9 5.6 1 11.3 1.9 16.9 2 17.1.4 30.7-6.5 39.5-21.4 3.5-5.9 6.7-12.1 9.2-18.4 23.7-59.8 47.1-119.7 70.6-179.6.7-1.8 1.3-3.6 1.6-5.5.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0-3.7 0-6.3 1.6-7.7 5.2-.5 1.4-1.1 2.7-1.6 4.1-11.6 33.3-23.2 66.6-34.8 100-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z"] }; +var faAmilia = { prefix: 'fab', iconName: 'amilia', icon: [448, 512, [], "f36d", "M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm-87.9 327.7c0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5V380c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7"] }; +var faAndroid = { prefix: 'fab', iconName: 'android', icon: [448, 512, [], "f17b", "M89.6 204.5v115.8c0 15.4-12.1 27.7-27.5 27.7-15.3 0-30.1-12.4-30.1-27.7V204.5c0-15.1 14.8-27.5 30.1-27.5 15.1 0 27.5 12.4 27.5 27.5zm10.8 157c0 16.4 13.2 29.6 29.6 29.6h19.9l.3 61.1c0 36.9 55.2 36.6 55.2 0v-61.1h37.2v61.1c0 36.7 55.5 36.8 55.5 0v-61.1h20.2c16.2 0 29.4-13.2 29.4-29.6V182.1H100.4v179.4zm248-189.1H99.3c0-42.8 25.6-80 63.6-99.4l-19.1-35.3c-2.8-4.9 4.3-8 6.7-3.8l19.4 35.6c34.9-15.5 75-14.7 108.3 0L297.5 34c2.5-4.3 9.5-1.1 6.7 3.8L285.1 73c37.7 19.4 63.3 56.6 63.3 99.4zm-170.7-55.5c0-5.7-4.6-10.5-10.5-10.5-5.7 0-10.2 4.8-10.2 10.5s4.6 10.5 10.2 10.5c5.9 0 10.5-4.8 10.5-10.5zm113.4 0c0-5.7-4.6-10.5-10.2-10.5-5.9 0-10.5 4.8-10.5 10.5s4.6 10.5 10.5 10.5c5.6 0 10.2-4.8 10.2-10.5zm94.8 60.1c-15.1 0-27.5 12.1-27.5 27.5v115.8c0 15.4 12.4 27.7 27.5 27.7 15.4 0 30.1-12.4 30.1-27.7V204.5c0-15.4-14.8-27.5-30.1-27.5z"] }; +var faAngellist = { prefix: 'fab', iconName: 'angellist', icon: [448, 512, [], "f209", "M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7zM311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6 33.1-93.7zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8zM140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7.1-7.7 12.7-21.1 20.4-21.1zm184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3.3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7.1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7zm-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1z"] }; +var faAngrycreative = { prefix: 'fab', iconName: 'angrycreative', icon: [640, 512, [], "f36e", "M640 238.2l-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4 93.1-6.2zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9-12.8 120zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3-126.2 7.7zm-44.3-70.2l-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7 2.7-29.8zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1zm21.1 70.8l5.8-60c-5 13.5-14.7 21.1-27.9 26.6l22.1 33.4zm135.4-45l-7.9-37.8-15.8 39.3 23.7-1.5zm-170.1-74.6l-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8.3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2-56.8 3.7zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1.6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2l-2.9 28.8zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3zm-201.3 8.2l23.8-1.6-8.3-37.6-15.5 39.2z"] }; +var faAngular = { prefix: 'fab', iconName: 'angular', icon: [415, 512, [], "f420", "M169.7 268.1h76.2l-38.1-91.6-38.1 91.6zM207.8 32L0 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7L207.8 32zM338 373.8h-48.6l-26.2-65.4H152.6l-26.2 65.4H77.7L207.8 81.5 338 373.8z"] }; +var faAppStore = { prefix: 'fab', iconName: 'app-store', icon: [512, 512, [], "f36f", "M255.9 120.9l9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5 9.8 5.6 13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4 0-11.3 9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5l8.9 15.7zm-78.7 218l-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5-9.8-5.6-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6zm168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4 0 11.3-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216z"] }; +var faAppStoreIos = { prefix: 'fab', iconName: 'app-store-ios', icon: [448, 512, [], "f370", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7c16.1-4.9 29.3-1.1 39.6 11.4L127 384.5zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40zm98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20z"] }; +var faApper = { prefix: 'fab', iconName: 'apper', icon: [640, 512, [], "f371", "M42.1 239.1c22.2 0 29 2.8 33.5 14.6h.8v-22.9c0-11.3-4.8-15.4-17.9-15.4-11.3 0-14.4 2.5-15.1 12.8H4.8c.3-13.9 1.5-19.1 5.8-24.4C17.9 195 29.5 192 56.7 192c33 0 47.1 5 53.9 18.9 2 4.3 4 15.6 4 23.7v76.3H76.3l1.3-19.1h-1c-5.3 15.6-13.6 20.4-35.5 20.4-30.3 0-41.1-10.1-41.1-37.3 0-25.2 12.3-35.8 42.1-35.8zm17.1 48.1c13.1 0 16.9-3 16.9-13.4 0-9.1-4.3-11.6-19.6-11.6-13.1 0-17.9 3-17.9 12.1-.1 10.4 3.7 12.9 20.6 12.9zm77.8-94.9h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.2 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3H137v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm57.9-60.7h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.3 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3h-39.5v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm53.8-3.8c0-25.4 3.3-37.8 12.3-45.8 8.8-8.1 22.2-11.3 45.1-11.3 42.8 0 55.7 12.8 55.7 55.7v11.1h-75.3c-.3 2-.3 4-.3 4.8 0 16.9 4.5 21.9 20.1 21.9 13.9 0 17.9-3 17.9-13.9h37.5v2.3c0 9.8-2.5 18.9-6.8 24.7-7.3 9.8-19.6 13.6-44.3 13.6-27.5 0-41.6-3.3-50.6-12.3-8.5-8.5-11.3-21.3-11.3-50.8zm76.4-11.6c-.3-1.8-.3-3.3-.3-3.8 0-12.3-3.3-14.6-19.6-14.6-14.4 0-17.1 3-18.1 15.1l-.3 3.3h38.3zm55.6-45.3h38.3l-1.8 19.9h.7c6.8-14.9 14.4-20.2 29.7-20.2 10.8 0 19.1 3.3 23.4 9.3 5.3 7.3 6.8 14.4 6.8 34 0 1.5 0 5 .2 9.3h-35c.3-1.8.3-3.3.3-4 0-15.4-2-19.4-10.3-19.4-6.3 0-10.8 3.3-13.1 9.3-1 3-1 4.3-1 12.3v68h-38.3V192.3z"] }; +var faApple = { prefix: 'fab', iconName: 'apple', icon: [376, 512, [], "f179", "M314.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C59.3 141.2 0 184.8 0 273.5c0 26.2 4.8 53.3 14.4 81.2 12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z"] }; +var faApplePay = { prefix: 'fab', iconName: 'apple-pay', icon: [640, 512, [], "f415", "M116.9 158.5c-7.5 8.9-19.5 15.9-31.5 14.9-1.5-12 4.4-24.8 11.3-32.6 7.5-9.1 20.6-15.6 31.3-16.1 1.2 12.4-3.7 24.7-11.1 33.8m10.9 17.2c-17.4-1-32.3 9.9-40.5 9.9-8.4 0-21-9.4-34.8-9.1-17.9.3-34.5 10.4-43.6 26.5-18.8 32.3-4.9 80 13.3 106.3 8.9 13 19.5 27.3 33.5 26.8 13.3-.5 18.5-8.6 34.5-8.6 16.1 0 20.8 8.6 34.8 8.4 14.5-.3 23.6-13 32.5-26 10.1-14.8 14.3-29.1 14.5-29.9-.3-.3-28-10.9-28.3-42.9-.3-26.8 21.9-39.5 22.9-40.3-12.5-18.6-32-20.6-38.8-21.1m100.4-36.2v194.9h30.3v-66.6h41.9c38.3 0 65.1-26.3 65.1-64.3s-26.4-64-64.1-64h-73.2zm30.3 25.5h34.9c26.3 0 41.3 14 41.3 38.6s-15 38.8-41.4 38.8h-34.8V165zm162.2 170.9c19 0 36.6-9.6 44.6-24.9h.6v23.4h28v-97c0-28.1-22.5-46.3-57.1-46.3-32.1 0-55.9 18.4-56.8 43.6h27.3c2.3-12 13.4-19.9 28.6-19.9 18.5 0 28.9 8.6 28.9 24.5v10.8l-37.8 2.3c-35.1 2.1-54.1 16.5-54.1 41.5.1 25.2 19.7 42 47.8 42zm8.2-23.1c-16.1 0-26.4-7.8-26.4-19.6 0-12.3 9.9-19.4 28.8-20.5l33.6-2.1v11c0 18.2-15.5 31.2-36 31.2zm102.5 74.6c29.5 0 43.4-11.3 55.5-45.4L640 193h-30.8l-35.6 115.1h-.6L537.4 193h-31.6L557 334.9l-2.8 8.6c-4.6 14.6-12.1 20.3-25.5 20.3-2.4 0-7-.3-8.9-.5v23.4c1.8.4 9.3.7 11.6.7z"] }; +var faAsymmetrik = { prefix: 'fab', iconName: 'asymmetrik', icon: [576, 512, [], "f372", "M517.5 309.2c38.8-40 58.1-80 58.5-116.1.8-65.5-59.4-118.2-169.4-135C277.9 38.4 118.1 73.6 0 140.5 52 114 110.6 92.3 170.7 82.3c74.5-20.5 153-25.4 221.3-14.8C544.5 91.3 588.8 195 490.8 299.2c-10.2 10.8-22 21.1-35 30.6L304.9 103.4 114.7 388.9c-65.6-29.4-76.5-90.2-19.1-151.2 20.8-22.2 48.3-41.9 79.5-58.1 20-12.2 39.7-22.6 62-30.7-65.1 20.3-122.7 52.9-161.6 92.9-27.7 28.6-41.4 57.1-41.7 82.9-.5 35.1 23.4 65.1 68.4 83l-34.5 51.7h101.6l22-34.4c22.2 1 45.3 0 68.6-2.7l-22.8 37.1h135.5L340 406.3c18.6-5.3 36.9-11.5 54.5-18.7l45.9 71.8H542L468.6 349c18.5-12.1 35-25.5 48.9-39.8zm-187.6 80.5l-25-40.6-32.7 53.3c-23.4 3.5-46.7 5.1-69.2 4.4l101.9-159.3 78.7 123c-17.2 7.4-35.3 13.9-53.7 19.2z"] }; +var faAudible = { prefix: 'fab', iconName: 'audible', icon: [640, 512, [], "f373", "M640 199.9v54l-320 200L0 254v-54l320 200 320-200.1zm-194.5 72l47.1-29.4c-37.2-55.8-100.7-92.6-172.7-92.6-72 0-135.5 36.7-172.6 92.4h.3c2.5-2.3 5.1-4.5 7.7-6.7 89.7-74.4 219.4-58.1 290.2 36.3zm-220.1 18.8c16.9-11.9 36.5-18.7 57.4-18.7 34.4 0 65.2 18.4 86.4 47.6l45.4-28.4c-20.9-29.9-55.6-49.5-94.8-49.5-38.9 0-73.4 19.4-94.4 49zM103.6 161.1c131.8-104.3 318.2-76.4 417.5 62.1l.7 1 48.8-30.4C517.1 112.1 424.8 58.1 319.9 58.1c-103.5 0-196.6 53.5-250.5 135.6 9.9-10.5 22.7-23.5 34.2-32.6zm467 32.7z"] }; +var faAutoprefixer = { prefix: 'fab', iconName: 'autoprefixer', icon: [640, 512, [], "f41c", "M318.4 16l-161 480h77.5l25.4-81.4h119.5L405 496h77.5L318.4 16zm-40.3 341.9l41.2-130.4h1.5l40.9 130.4h-83.6zM640 405l-10-31.4L462.1 358l19.4 56.5L640 405zm-462.1-47L10 373.7 0 405l158.5 9.4 19.4-56.4z"] }; +var faAvianex = { prefix: 'fab', iconName: 'avianex', icon: [512, 512, [], "f374", "M453.1 32h-312c-38.9 0-76.2 31.2-83.3 69.7L1.2 410.3C-5.9 448.8 19.9 480 58.9 480h312c38.9 0 76.2-31.2 83.3-69.7l56.7-308.5c7-38.6-18.8-69.8-57.8-69.8zm-58.2 347.3l-32 13.5-115.4-110c-14.7 10-29.2 19.5-41.7 27.1l22.1 64.2-17.9 12.7-40.6-61-52.4-48.1 15.7-15.4 58 31.1c9.3-10.5 20.8-22.6 32.8-34.9L203 228.9l-68.8-99.8 18.8-28.9 8.9-4.8L265 207.8l4.9 4.5c19.4-18.8 33.8-32.4 33.8-32.4 7.7-6.5 21.5-2.9 30.7 7.9 9 10.5 10.6 24.7 2.7 31.3-1.8 1.3-15.5 11.4-35.3 25.6l4.5 7.3 94.9 119.4-6.3 7.9z"] }; +var faAviato = { prefix: 'fab', iconName: 'aviato', icon: [640, 512, [], "f421", "M107.2 283.5l-19-41.8H36.1l-19 41.8H0l62.2-131.4 62.2 131.4h-17.2zm-45-98.1l-19.6 42.5h39.2l-19.6-42.5zm112.7 102.4l-62.2-131.4h17.1l45.1 96 45.1-96h17l-62.1 131.4zm80.6-4.3V156.4H271v127.1h-15.5zm209.1-115.6v115.6h-17.3V167.9h-41.2v-11.5h99.6v11.5h-41.1zM640 218.8c0 9.2-1.7 17.8-5.1 25.8-3.4 8-8.2 15.1-14.2 21.1-6 6-13.1 10.8-21.1 14.2-8 3.4-16.6 5.1-25.8 5.1s-17.8-1.7-25.8-5.1c-8-3.4-15.1-8.2-21.1-14.2-6-6-10.8-13-14.2-21.1-3.4-8-5.1-16.6-5.1-25.8s1.7-17.8 5.1-25.8c3.4-8 8.2-15.1 14.2-21.1 6-6 13-8.4 21.1-11.9 8-3.4 16.6-5.1 25.8-5.1s17.8 1.7 25.8 5.1c8 3.4 15.1 5.8 21.1 11.9 6 6 10.7 13.1 14.2 21.1 3.4 8 5.1 16.6 5.1 25.8zm-15.5 0c0-7.3-1.3-14-3.9-20.3-2.6-6.3-6.2-11.7-10.8-16.3-4.6-4.6-10-8.2-16.2-10.9-6.2-2.7-12.8-4-19.8-4s-13.6 1.3-19.8 4c-6.2 2.7-11.6 6.3-16.2 10.9-4.6 4.6-8.2 10-10.8 16.3-2.6 6.3-3.9 13.1-3.9 20.3 0 7.3 1.3 14 3.9 20.3 2.6 6.3 6.2 11.7 10.8 16.3 4.6 4.6 10 8.2 16.2 10.9 6.2 2.7 12.8 4 19.8 4s13.6-1.3 19.8-4c6.2-2.7 11.6-6.3 16.2-10.9 4.6-4.6 8.2-10 10.8-16.3 2.6-6.3 3.9-13.1 3.9-20.3zm-94.8 96.7v-6.3l88.9-10-242.9 13.4c.6-2.2 1.1-4.6 1.4-7.2.3-2 .5-4.2.6-6.5l64.8-8.1-64.9 1.9c0-.4-.1-.7-.1-1.1-2.8-17.2-25.5-23.7-25.5-23.7l-1.1-26.3h23.8l19 41.8h17.1L348.6 152l-62.2 131.4h17.1l19-41.8h23.6L345 268s-22.7 6.5-25.5 23.7c-.1.3-.1.7-.1 1.1l-64.9-1.9 64.8 8.1c.1 2.3.3 4.4.6 6.5.3 2.6.8 5 1.4 7.2L78.4 299.2l88.9 10v6.3c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4 0-6.2-4.6-11.3-10.5-12.2v-5.8l80.3 9v5.4c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-4.9l28.4 3.2v23.7h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9V323l38.3 4.3c8.1 11.4 19 13.6 19 13.6l-.1 6.7-5.1.2-.1 12.1h4.1l.1-5h5.2l.1 5h4.1l-.1-12.1-5.1-.2-.1-6.7s10.9-2.1 19-13.6l38.3-4.3v23.2h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9v-23.7l28.4-3.2v4.9c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-5.4l80.3-9v5.8c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4-.2-6.3-4.7-11.4-10.7-12.3zm-200.8-87.6l19.6-42.5 19.6 42.5h-17.9l-1.7-40.3-1.7 40.3h-17.9z"] }; +var faAws = { prefix: 'fab', iconName: 'aws', icon: [512, 512, [], "f375", "M261.2 136.1c-14 57.5-13.1 54.4-25.8 107-1.6 6.5-4.1 8.4-10.7 8.5h-14.4c-5.8-.1-8.2-1.6-9.9-7.3-12.3-39.4-28.8-94.1-39.9-130.7-4.1-13.5-1.4-13.2 9.3-12.9 3.7.1 7.3 0 11 0 5.1.1 7.7 2 9.1 7.1 3.6 12.9 6 22.8 26.6 104.1.4 1.6.9 3.1 1.4 4.6h1.1c.5-2 1.1-3.9 1.6-5.9 7.8-32.9 15.5-65.9 23.3-98.8 2.4-10.2 6.7-11.2 17-11.2h7.6c6.9.1 9 1.5 10.7 8.3 6 23.4 23.5 101.8 26.7 110.4 5.1-18.3-1.8 7.9 28.5-109 2.1-8.1 4.1-9.7 12.3-9.7h12.7c5.4.1 7 1.8 5.7 7.1-2.4 9.5-2.9 9.9-41.3 132.9-3.1 9.9-4.2 10.8-14.6 10.8h-10.6c-7.3 0-9.2-1.3-11-8.4-4.3-16.2-23.3-95.7-26.4-106.9zM125.4 247.3c4.2 5.8 8.1 6.3 14.1 2.4l6.3-4.2c6.8-4.5 7.3-6.3 3.6-13.5-4.3-8.4-6.4-17.3-6.3-26.9 0-3.1.6-55.7-.9-66.8-2.7-19.3-12.5-32.8-31.7-38.7-10.7-3.4-21.7-3.3-32.7-3-15.1.4-29.4 4.6-42.8 11.4-1.8.9-3.7 3.1-4.1 4.9-.8 3.9-1.1 8.1-.7 12.1.6 5.9 2.6 7 8.2 5.1 5.1-1.7 10-3.9 15.1-5.4 14.5-4.4 29.2-6.4 44.1-1.7 7.1 2.2 11.7 6.9 14.3 13.8 3 7.9 2.4 16.1 2.4 24.2 0 5.5-.1 5.5-5.5 4.5-13.9-2.6-27.7-5-41.9-3.1-15.2 2.1-28.6 7.3-38.2 20-9.1 12-10 25.6-7.4 39.5 2.8 15 11.8 25.7 26.4 30.4 20.6 6.7 40.1 3.3 57.7-9.5 3.8-2.8 7.2-6.2 11.1-9.5 3.1 5 5.8 9.7 8.9 14zm-15.3-61.6c3 .4 4.5 1.9 4.3 5.1-.2 3.8.1 7.6-.3 11.4-1.2 11.7-7.7 19.7-17.9 24.9-8.2 4.2-16.9 5.8-26.1 5-15.2-1.3-21-13.1-19.6-26.3C51.8 193.2 59 186.2 72 184c13.8-2.4 16-1.1 38.1 1.7zm348.8 65.1c21.3-8.6 32.9-26.2 29.2-50-2.2-14.6-11.8-24.2-25.2-29.5-14.7-5.9-33.8-10.3-48.1-18.2-4.4-2.4-7.4-6.3-7.6-11.9-.4-11.1 4.2-17.2 15.4-19.8 9.3-2.1 18.8-2.2 28.1-.4 7.3 1.4 14.3 4.2 21.4 6.3 2.8.9 5.9 2.1 7.8-1.6 3.8-7.3.4-18.7-7.3-21.8-22.5-9-45.5-11.6-68.2-1.6-14.6 6.4-24.6 17.4-26 34.2-1.6 19.3 6.9 33.4 24.1 41.7 7.7 3.7 16.1 5.9 24.2 8.9 8.1 3 16.2 5.8 24.1 9.1 12.3 5.3 11.6 24.2 1.2 30-27.7 15.3-64.9-2.4-69.2-3.8-3.3-1.1-5.3.2-6.3 3.7-3 11.3.7 18.8 11.6 22.7 21.7 7.9 49.6 10.5 70.8 2zM296 413.5c50.8-5.8 98.7-20.8 142.7-47 8-4.7 15.5-10.3 23.1-15.7 7.3-5.2 3.2-18.4-11.3-12.2-54.4 23.2-111.2 36.1-170.2 38.9-30.5 1.5-60.8-.3-91.1-4.7-63.1-9.2-122.4-29.2-177.6-61.2-2.1-1.2-4.2-2.5-6.5-3-4.9-1.1-7.7 4.7-2.4 9.7 24 22.1 50.3 40.8 79.1 55.7 53.7 27.7 110.5 42.7 171.2 42 14.4-.8 28.8-.9 43-2.5zm174.7-92.2c14.8.8 19.4 5.9 15.7 20.2-3.8 14.8-9.3 29.2-13.9 43.8-.9 2.9-4.2 6.3-.8 8.8 3.7 2.6 6.5-1 9-3.3 10.2-9.5 17.4-21 22.5-33.8 5.4-13.4 9.3-27.2 8.7-41.9-.2-6.2-1.8-8.8-7.8-10.5-5.4-1.5-11-2.8-16.5-3.2-21.6-1.8-42.5.5-62 10.6-3.1 1.6-6 3.7-8.7 5.9-1.1.9-3.2 5.3 2.4 6.1 1.9.3 3.9-.1 5.9-.3 16.9-1.6 28.6-3.3 45.5-2.4z"] }; +var faBandcamp = { prefix: 'fab', iconName: 'bandcamp', icon: [496, 512, [], "f2d5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm48.2 326.1h-181L199.9 178h181l-84.7 156.1z"] }; +var faBehance = { prefix: 'fab', iconName: 'behance', icon: [576, 512, [], "f1b4", "M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z"] }; +var faBehanceSquare = { prefix: 'fab', iconName: 'behance-square', icon: [448, 512, [], "f1b5", "M186.5 293c0 19.3-14 25.4-31.2 25.4h-45.1v-52.9h46c18.6.1 30.3 7.8 30.3 27.5zm-7.7-82.3c0-17.7-13.7-21.9-28.9-21.9h-39.6v44.8H153c15.1 0 25.8-6.6 25.8-22.9zm132.3 23.2c-18.3 0-30.5 11.4-31.7 29.7h62.2c-1.7-18.5-11.3-29.7-30.5-29.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM271.7 185h77.8v-18.9h-77.8V185zm-43 110.3c0-24.1-11.4-44.9-35-51.6 17.2-8.2 26.2-17.7 26.2-37 0-38.2-28.5-47.5-61.4-47.5H68v192h93.1c34.9-.2 67.6-16.9 67.6-55.9zM380 280.5c0-41.1-24.1-75.4-67.6-75.4-42.4 0-71.1 31.8-71.1 73.6 0 43.3 27.3 73 71.1 73 33.2 0 54.7-14.9 65.1-46.8h-33.7c-3.7 11.9-18.6 18.1-30.2 18.1-22.4 0-34.1-13.1-34.1-35.3h100.2c.1-2.3.3-4.8.3-7.2z"] }; +var faBimobject = { prefix: 'fab', iconName: 'bimobject', icon: [448, 512, [], "f378", "M416 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm-64 257.4c0 49.4-11.4 82.6-103.8 82.6h-16.9c-44.1 0-62.4-14.9-70.4-38.8h-.9V368H96V136h64v74.7h1.1c4.6-30.5 39.7-38.8 69.7-38.8h17.3c92.4 0 103.8 33.1 103.8 82.5v35zm-64-28.9v22.9c0 21.7-3.4 33.8-38.4 33.8h-45.3c-28.9 0-44.1-6.5-44.1-35.7v-19c0-29.3 15.2-35.7 44.1-35.7h45.3c35-.2 38.4 12 38.4 33.7z"] }; +var faBitbucket = { prefix: 'fab', iconName: 'bitbucket', icon: [512, 512, [], "f171", "M23.1 32C14.2 31.9 7 38.9 6.9 47.8c0 .9.1 1.8.2 2.8L74.9 462c1.7 10.4 10.7 18 21.2 18.1h325.1c7.9.1 14.7-5.6 16-13.4l67.8-416c1.4-8.7-4.5-16.9-13.2-18.3-.9-.1-1.8-.2-2.8-.2L23.1 32zm285.3 297.3H204.6l-28.1-146.8h157l-25.1 146.8z"] }; +var faBitcoin = { prefix: 'fab', iconName: 'bitcoin', icon: [512, 512, [], "f379", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z"] }; +var faBity = { prefix: 'fab', iconName: 'bity', icon: [496, 512, [], "f37a", "M78.4 67.2C173.8-22 324.5-24 421.5 71c14.3 14.1-6.4 37.1-22.4 21.5-84.8-82.4-215.8-80.3-298.9-3.2-16.3 15.1-36.5-8.3-21.8-22.1zm98.9 418.6c19.3 5.7 29.3-23.6 7.9-30C73 421.9 9.4 306.1 37.7 194.8c5-19.6-24.9-28.1-30.2-7.1-32.1 127.4 41.1 259.8 169.8 298.1zm148.1-2c121.9-40.2 192.9-166.9 164.4-291-4.5-19.7-34.9-13.8-30 7.9 24.2 107.7-37.1 217.9-143.2 253.4-21.2 7-10.4 36 8.8 29.7zm-62.9-79l.2-71.8c0-8.2-6.6-14.8-14.8-14.8-8.2 0-14.8 6.7-14.8 14.8l-.2 71.8c0 8.2 6.6 14.8 14.8 14.8s14.8-6.6 14.8-14.8zm71-269c2.1 90.9 4.7 131.9-85.5 132.5-92.5-.7-86.9-44.3-85.5-132.5 0-21.8-32.5-19.6-32.5 0v71.6c0 69.3 60.7 90.9 118 90.1 57.3.8 118-20.8 118-90.1v-71.6c0-19.6-32.5-21.8-32.5 0z"] }; +var faBlackTie = { prefix: 'fab', iconName: 'black-tie', icon: [448, 512, [], "f27e", "M0 32v448h448V32H0zm316.5 325.2L224 445.9l-92.5-88.7 64.5-184-64.5-86.6h184.9L252 173.2l64.5 184z"] }; +var faBlackberry = { prefix: 'fab', iconName: 'blackberry', icon: [512, 512, [], "f37b", "M166 116.9c0 23.4-16.4 49.1-72.5 49.1H23.4l21-88.8h67.8c42.1 0 53.8 23.3 53.8 39.7zm126.2-39.7h-67.8L205.7 166h70.1c53.8 0 70.1-25.7 70.1-49.1.1-16.4-11.6-39.7-53.7-39.7zM88.8 208.1H21L0 296.9h70.1c56.1 0 72.5-23.4 72.5-49.1 0-16.3-11.7-39.7-53.8-39.7zm180.1 0h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 0-16.3-11.7-39.7-53.7-39.7zm189.3-53.8h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7zm-28 137.9h-67.8L343.7 381h70.1c56.1 0 70.1-23.4 70.1-49.1 0-16.3-11.6-39.7-53.7-39.7zM240.8 346H173l-18.7 88.8h70.1c56.1 0 70.1-25.7 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7z"] }; +var faBlogger = { prefix: 'fab', iconName: 'blogger', icon: [448, 512, [], "f37c", "M162.4 196c4.8-4.9 6.2-5.1 36.4-5.1 27.2 0 28.1.1 32.1 2.1 5.8 2.9 8.3 7 8.3 13.6 0 5.9-2.4 10-7.6 13.4-2.8 1.8-4.5 1.9-31.1 2.1-16.4.1-29.5-.2-31.5-.8-10.3-2.9-14.1-17.7-6.6-25.3zm61.4 94.5c-53.9 0-55.8.2-60.2 4.1-3.5 3.1-5.7 9.4-5.1 13.9.7 4.7 4.8 10.1 9.2 12 2.2 1 14.1 1.7 56.3 1.2l47.9-.6 9.2-1.5c9-5.1 10.5-17.4 3.1-24.4-5.3-4.7-5-4.7-60.4-4.7zm223.4 130.1c-3.5 28.4-23 50.4-51.1 57.5-7.2 1.8-9.7 1.9-172.9 1.8-157.8 0-165.9-.1-172-1.8-8.4-2.2-15.6-5.5-22.3-10-5.6-3.8-13.9-11.8-17-16.4-3.8-5.6-8.2-15.3-10-22C.1 423 0 420.3 0 256.3 0 93.2 0 89.7 1.8 82.6 8.1 57.9 27.7 39 53 33.4c7.3-1.6 332.1-1.9 340-.3 21.2 4.3 37.9 17.1 47.6 36.4 7.7 15.3 7-1.5 7.3 180.6.2 115.8 0 164.5-.7 170.5zm-85.4-185.2c-1.1-5-4.2-9.6-7.7-11.5-1.1-.6-8-1.3-15.5-1.7-12.4-.6-13.8-.8-17.8-3.1-6.2-3.6-7.9-7.6-8-18.3 0-20.4-8.5-39.4-25.3-56.5-12-12.2-25.3-20.5-40.6-25.1-3.6-1.1-11.8-1.5-39.2-1.8-42.9-.5-52.5.4-67.1 6.2-27 10.7-46.3 33.4-53.4 62.4-1.3 5.4-1.6 14.2-1.9 64.3-.4 62.8 0 72.1 4 84.5 9.7 30.7 37.1 53.4 64.6 58.4 9.2 1.7 122.2 2.1 133.7.5 20.1-2.7 35.9-10.8 50.7-25.9 10.7-10.9 17.4-22.8 21.8-38.5 3.2-10.9 2.9-88.4 1.7-93.9z"] }; +var faBloggerB = { prefix: 'fab', iconName: 'blogger-b', icon: [448, 512, [], "f37d", "M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z"] }; +var faBluetooth = { prefix: 'fab', iconName: 'bluetooth', icon: [448, 512, [], "f293", "M292.6 171.1L249.7 214l-.3-86 43.2 43.1m-43.2 219.8l43.1-43.1-42.9-42.9-.2 86zM416 259.4C416 465 344.1 512 230.9 512S32 465 32 259.4 115.4 0 228.6 0 416 53.9 416 259.4zm-158.5 0l79.4-88.6L211.8 36.5v176.9L138 139.6l-27 26.9 92.7 93-92.7 93 26.9 26.9 73.8-73.8 2.3 170 127.4-127.5-83.9-88.7z"] }; +var faBluetoothB = { prefix: 'fab', iconName: 'bluetooth-b', icon: [320, 512, [], "f294", "M196.48 260.023l92.626-103.333L143.125 0v206.33l-86.111-86.111-31.406 31.405 108.061 108.399L25.608 368.422l31.406 31.405 86.111-86.111L145.84 512l148.552-148.644-97.912-103.333zm40.86-102.996l-49.977 49.978-.338-100.295 50.315 50.317zM187.363 313.04l49.977 49.978-50.315 50.316.338-100.294z"] }; +var faBtc = { prefix: 'fab', iconName: 'btc', icon: [384, 512, [], "f15a", "M310.204 242.638c27.73-14.18 45.377-39.39 41.28-81.3-5.358-57.351-52.458-76.573-114.85-81.929V0h-48.528v77.203c-12.605 0-25.525.315-38.444.63V0h-48.528v79.409c-17.842.539-38.622.276-97.37 0v51.678c38.314-.678 58.417-3.14 63.023 21.427v217.429c-2.925 19.492-18.524 16.685-53.255 16.071L3.765 443.68c88.481 0 97.37.315 97.37.315V512h48.528v-67.06c13.234.315 26.154.315 38.444.315V512h48.528v-68.005c81.299-4.412 135.647-24.894 142.895-101.467 5.671-61.446-23.32-88.862-69.326-99.89zM150.608 134.553c27.415 0 113.126-8.507 113.126 48.528 0 54.515-85.71 48.212-113.126 48.212v-96.74zm0 251.776V279.821c32.772 0 133.127-9.138 133.127 53.255-.001 60.186-100.355 53.253-133.127 53.253z"] }; +var faBuromobelexperte = { prefix: 'fab', iconName: 'buromobelexperte', icon: [448, 512, [], "f37f", "M0 32v128h128V32H0zm120 120H8V40h112v112zm40-120v128h128V32H160zm120 120H168V40h112v112zm40-120v128h128V32H320zm120 120H328V40h112v112zM0 192v128h128V192H0zm120 120H8V200h112v112zm40-120v128h128V192H160zm120 120H168V200h112v112zm40-120v128h128V192H320zm120 120H328V200h112v112zM0 352v128h128V352H0zm120 120H8V360h112v112zm40-120v128h128V352H160zm120 120H168V360h112v112zm40-120v128h128V352H320z"] }; +var faBuysellads = { prefix: 'fab', iconName: 'buysellads', icon: [448, 512, [], "f20d", "M224 150.7l42.9 160.7h-85.8L224 150.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-65.3 325.3l-94.5-298.7H159.8L65.3 405.3H156l111.7-91.6 24.2 91.6h90.8z"] }; +var faCcAmazonPay = { prefix: 'fab', iconName: 'cc-amazon-pay', icon: [576, 512, [], "f42d", "M124.7 201.8c.1-11.8 0-23.5 0-35.3v-35.3c0-1.3.4-2 1.4-2.7 11.5-8 24.1-12.1 38.2-11.1 12.5.9 22.7 7 28.1 21.7 3.3 8.9 4.1 18.2 4.1 27.7 0 8.7-.7 17.3-3.4 25.6-5.7 17.8-18.7 24.7-35.7 23.9-11.7-.5-21.9-5-31.4-11.7-.9-.8-1.4-1.6-1.3-2.8zm154.9 14.6c4.6 1.8 9.3 2 14.1 1.5 11.6-1.2 21.9-5.7 31.3-12.5.9-.6 1.3-1.3 1.3-2.5-.1-3.9 0-7.9 0-11.8 0-4-.1-8 0-12 0-1.4-.4-2-1.8-2.2-7-.9-13.9-2.2-20.9-2.9-7-.6-14-.3-20.8 1.9-6.7 2.2-11.7 6.2-13.7 13.1-1.6 5.4-1.6 10.8.1 16.2 1.6 5.5 5.2 9.2 10.4 11.2zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zm-207.5 23.9c.4 1.7.9 3.4 1.6 5.1 16.5 40.6 32.9 81.3 49.5 121.9 1.4 3.5 1.7 6.4.2 9.9-2.8 6.2-4.9 12.6-7.8 18.7-2.6 5.5-6.7 9.5-12.7 11.2-4.2 1.1-8.5 1.3-12.9.9-2.1-.2-4.2-.7-6.3-.8-2.8-.2-4.2 1.1-4.3 4-.1 2.8-.1 5.6 0 8.3.1 4.6 1.6 6.7 6.2 7.5 4.7.8 9.4 1.6 14.2 1.7 14.3.3 25.7-5.4 33.1-17.9 2.9-4.9 5.6-10.1 7.7-15.4 19.8-50.1 39.5-100.3 59.2-150.5.6-1.5 1.1-3 1.3-4.6.4-2.4-.7-3.6-3.1-3.7-5.6-.1-11.1 0-16.7 0-3.1 0-5.3 1.4-6.4 4.3-.4 1.1-.9 2.3-1.3 3.4l-29.1 83.7c-2.1 6.1-4.2 12.1-6.5 18.6-.4-.9-.6-1.4-.8-1.9-10.8-29.9-21.6-59.9-32.4-89.8-1.7-4.7-3.5-9.5-5.3-14.2-.9-2.5-2.7-4-5.4-4-6.4-.1-12.8-.2-19.2-.1-2.2 0-3.3 1.6-2.8 3.7zM242.4 206c1.7 11.7 7.6 20.8 18 26.6 9.9 5.5 20.7 6.2 31.7 4.6 12.7-1.9 23.9-7.3 33.8-15.5.4-.3.8-.6 1.4-1 .5 3.2.9 6.2 1.5 9.2.5 2.6 2.1 4.3 4.5 4.4 4.6.1 9.1.1 13.7 0 2.3-.1 3.8-1.6 4-3.9.1-.8.1-1.6.1-2.3v-88.8c0-3.6-.2-7.2-.7-10.8-1.6-10.8-6.2-19.7-15.9-25.4-5.6-3.3-11.8-5-18.2-5.9-3-.4-6-.7-9.1-1.1h-10c-.8.1-1.6.3-2.5.3-8.2.4-16.3 1.4-24.2 3.5-5.1 1.3-10 3.2-15 4.9-3 1-4.5 3.2-4.4 6.5.1 2.8-.1 5.6 0 8.3.1 4.1 1.8 5.2 5.7 4.1 6.5-1.7 13.1-3.5 19.7-4.8 10.3-1.9 20.7-2.7 31.1-1.2 5.4.8 10.5 2.4 14.1 7 3.1 4 4.2 8.8 4.4 13.7.3 6.9.2 13.9.3 20.8 0 .4-.1.7-.2 1.2-.4 0-.8 0-1.1-.1-8.8-2.1-17.7-3.6-26.8-4.1-9.5-.5-18.9.1-27.9 3.2-10.8 3.8-19.5 10.3-24.6 20.8-4.1 8.3-4.6 17-3.4 25.8zM98.7 106.9v175.3c0 .8 0 1.7.1 2.5.2 2.5 1.7 4.1 4.1 4.2 5.9.1 11.8.1 17.7 0 2.5 0 4-1.7 4.1-4.1.1-.8.1-1.7.1-2.5v-60.7c.9.7 1.4 1.2 1.9 1.6 15 12.5 32.2 16.6 51.1 12.9 17.1-3.4 28.9-13.9 36.7-29.2 5.8-11.6 8.3-24.1 8.7-37 .5-14.3-1-28.4-6.8-41.7-7.1-16.4-18.9-27.3-36.7-30.9-2.7-.6-5.5-.8-8.2-1.2h-7c-1.2.2-2.4.3-3.6.5-11.7 1.4-22.3 5.8-31.8 12.7-2 1.4-3.9 3-5.9 4.5-.1-.5-.3-.8-.4-1.2-.4-2.3-.7-4.6-1.1-6.9-.6-3.9-2.5-5.5-6.4-5.6h-9.7c-5.9-.1-6.9 1-6.9 6.8zM493.6 339c-2.7-.7-5.1 0-7.6 1-43.9 18.4-89.5 30.2-136.8 35.8-14.5 1.7-29.1 2.8-43.7 3.2-26.6.7-53.2-.8-79.6-4.3-17.8-2.4-35.5-5.7-53-9.9-37-8.9-72.7-21.7-106.7-38.8-8.8-4.4-17.4-9.3-26.1-14-3.8-2.1-6.2-1.5-8.2 2.1v1.7c1.2 1.6 2.2 3.4 3.7 4.8 36 32.2 76.6 56.5 122 72.9 21.9 7.9 44.4 13.7 67.3 17.5 14 2.3 28 3.8 42.2 4.5 3 .1 6 .2 9 .4.7 0 1.4.2 2.1.3h17.7c.7-.1 1.4-.3 2.1-.3 14.9-.4 29.8-1.8 44.6-4 21.4-3.2 42.4-8.1 62.9-14.7 29.6-9.6 57.7-22.4 83.4-40.1 2.8-1.9 5.7-3.8 8-6.2 4.3-4.4 2.3-10.4-3.3-11.9zm50.4-27.7c-.8-4.2-4-5.8-7.6-7-5.7-1.9-11.6-2.8-17.6-3.3-11-.9-22-.4-32.8 1.6-12 2.2-23.4 6.1-33.5 13.1-1.2.8-2.4 1.8-3.1 3-.6.9-.7 2.3-.5 3.4.3 1.3 1.7 1.6 3 1.5.6 0 1.2 0 1.8-.1l19.5-2.1c9.6-.9 19.2-1.5 28.8-.8 4.1.3 8.1 1.2 12 2.2 4.3 1.1 6.2 4.4 6.4 8.7.3 6.7-1.2 13.1-2.9 19.5-3.5 12.9-8.3 25.4-13.3 37.8-.3.8-.7 1.7-.8 2.5-.4 2.5 1 4 3.4 3.5 1.4-.3 3-1.1 4-2.1 3.7-3.6 7.5-7.2 10.6-11.2 10.7-13.8 17-29.6 20.7-46.6.7-3 1.2-6.1 1.7-9.1.2-4.7.2-9.6.2-14.5z"] }; +var faCcAmex = { prefix: 'fab', iconName: 'cc-amex', icon: [576, 512, [], "f1f3", "M576 255.4c-37.9-.2-44.2-.9-54.5 5v-5c-45.3 0-53.5-1.7-64.9 5.2v-5.2h-78.2v5.1c-11.4-6.5-21.4-5.1-75.7-5.1v5.6c-6.3-3.7-14.5-5.6-24.3-5.6h-58c-3.5 3.8-12.5 13.7-15.7 17.2-12.7-14.1-10.5-11.6-15.5-17.2h-83.1v92.3h82c3.3-3.5 12.9-13.9 16.1-17.4 12.7 14.3 10.3 11.7 15.4 17.4h48.9c0-14.7.1-8.3.1-23 11.5.2 24.3-.2 34.3-6.2 0 13.9-.1 17.1-.1 29.2h39.6c0-18.5.1-7.4.1-25.3 6.2 0 7.7 0 9.4.1.1 1.3 0 0 0 25.2 152.8 0 145.9 1.1 156.7-4.5v4.5c34.8 0 54.8 2.2 67.5-6.1V432c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V228.3h26.6c4.2-10.1 2.2-5.3 6.4-15.3h19.2c4.2 10 2.2 5.2 6.4 15.3h52.9v-11.4c2.2 5 1.1 2.5 5.1 11.4h29.5c2.4-5.5 2.6-5.8 5.1-11.4v11.4h135.5v-25.1c6.4 0 8-.1 9.8.2 0 0-.2 10.9.1 24.8h66.5v-8.9c7.4 5.9 17.4 8.9 29.7 8.9h26.8c4.2-10.1 2.2-5.3 6.4-15.3h19c6.5 15 .2.5 6.6 15.3h52.8v-21.9c11.8 19.7 7.8 12.9 13.2 21.9h41.6v-92h-39.9v18.4c-12.2-20.2-6.3-10.4-11.2-18.4h-43.3v20.6c-6.2-14.6-4.6-10.8-8.8-20.6h-32.4c-.4 0-2.3.2-2.3-.3h-27.6c-12.8 0-23.1 3.2-30.7 9.3v-9.3h-39.9v5.3c-10.8-6.1-20.7-5.1-64.4-5.3-.1 0-11.6-.1-11.6 0h-103c-2.5 6.1-6.8 16.4-12.6 30-2.8-6-11-23.8-13.9-30h-46V157c-7.4-17.4-4.7-11-9-21.1H22.9c-3.4 7.9-13.7 32-23.1 53.9V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48v175.4zm-186.6-80.6c-.3.2-1.4 2.2-1.4 7.6 0 6 .9 7.7 1.1 7.9.2.1 1.1.5 3.4.5l7.3-16.9c-1.1 0-2.1-.1-3.1-.1-5.6 0-7 .7-7.3 1zm-19.9 130.9c9.2 3.3 11 9.5 11 18.4l-.1 13.8h-16.6l.1-11.5c0-11.8-3.8-13.8-14.8-13.8h-17.6l-.1 25.3h-16.6l.1-69.3h39.4c13 0 27.1 2.3 27.1 18.7-.1 7.6-4.2 15.3-11.9 18.4zm-6.3-15.4c0-6.4-5.6-7.4-10.7-7.4h-21v15.6h20.7c5.6 0 11-1.3 11-8.2zm181.7-7.1H575v-14.6h-32.9c-12.8 0-23.8 6.6-23.8 20.7 0 33 42.7 12.8 42.7 27.4 0 5.1-4.3 6.4-8.4 6.4h-32l-.1 14.8h32c8.4 0 17.6-1.8 22.5-8.9v-25.8c-10.5-13.8-39.3-1.3-39.3-13.5 0-5.8 4.6-6.5 9.2-6.5zm-99.2-.3v-14.3h-55.2l-.1 69.3h55.2l.1-14.3-38.6-.3v-13.8H445v-14.1h-37.8v-12.5h38.5zm42.2 40.1h-32.2l-.1 14.8h32.2c14.8 0 26.2-5.6 26.2-22 0-33.2-42.9-11.2-42.9-26.3 0-5.6 4.9-6.4 9.2-6.4h30.4v-14.6h-33.2c-12.8 0-23.5 6.6-23.5 20.7 0 33 42.7 12.5 42.7 27.4-.1 5.4-4.7 6.4-8.8 6.4zm-78.1-158.7c-17.4-.3-33.2-4.1-33.2 19.7 0 11.8 2.8 19.9 16.1 19.9h7.4l23.5-54.5h24.8l27.9 65.4v-65.4h25.3l29.1 48.1v-48.1h16.9v69H524l-31.2-51.9v51.9h-33.7l-6.6-15.3h-34.3l-6.4 15.3h-19.2c-22.8 0-33-11.8-33-34 0-23.3 10.5-35.3 34-35.3h16.1v15.2zm14.3 24.5h22.8l-11.2-27.6-11.6 27.6zm-72.6-39.6h-16.9v69.3h16.9v-69.3zm-38.1 37.3c9.5 3.3 11 9.2 11 18.4v13.5h-16.6c-.3-14.8 3.6-25.1-14.8-25.1h-18v25.1h-16.4v-69.3l39.1.3c13.3 0 27.4 2 27.4 18.4.1 8-4.3 15.7-11.7 18.7zm-6.7-15.3c0-6.4-5.6-7.4-10.7-7.4h-21v15.3h20.7c5.7 0 11-1.3 11-7.9zm-59.5-7.4v-14.6h-55.5v69.3h55.5v-14.3h-38.9v-13.8h37.8v-14.1h-37.8v-12.5h38.9zm-84.6 54.7v-54.2l-24 54.2H124l-24-54.2v54.2H66.2l-6.4-15.3H25.3l-6.4 15.3H1l29.7-69.3h24.5l28.1 65.7v-65.7h27.1l21.7 47 19.7-47h27.6v69.3h-16.8zM53.9 188.8l-11.5-27.6-11.2 27.6h22.7zm253 102.5c0 27.9-30.4 23.3-49.3 23.3l-.1 23.3h-32.2l-20.4-23-21.3 23h-65.4l.1-69.3h66.5l20.5 22.8 21-22.8H279c15.6 0 27.9 5.4 27.9 22.7zm-112.7 11.8l-17.9-20.2h-41.7v12.5h36.3v14.1h-36.3v13.8h40.6l19-20.2zM241 276l-25.3 27.4 25.3 28.1V276zm48.3 15.3c0-6.1-4.6-8.4-10.2-8.4h-21.5v17.6h21.2c5.9 0 10.5-2.8 10.5-9.2z"] }; +var faCcApplePay = { prefix: 'fab', iconName: 'cc-apple-pay', icon: [576, 512, [], "f416", "M302.2 218.4c0 17.2-10.5 27.1-29 27.1h-24.3v-54.2h24.4c18.4 0 28.9 9.8 28.9 27.1zm47.5 62.6c0 8.3 7.2 13.7 18.5 13.7 14.4 0 25.2-9.1 25.2-21.9v-7.7l-23.5 1.5c-13.3.9-20.2 5.8-20.2 14.4zM576 79v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM127.8 197.2c8.4.7 16.8-4.2 22.1-10.4 5.2-6.4 8.6-15 7.7-23.7-7.4.3-16.6 4.9-21.9 11.3-4.8 5.5-8.9 14.4-7.9 22.8zm60.6 74.5c-.2-.2-19.6-7.6-19.8-30-.2-18.7 15.3-27.7 16-28.2-8.8-13-22.4-14.4-27.1-14.7-12.2-.7-22.6 6.9-28.4 6.9-5.9 0-14.7-6.6-24.3-6.4-12.5.2-24.2 7.3-30.5 18.6-13.1 22.6-3.4 56 9.3 74.4 6.2 9.1 13.7 19.1 23.5 18.7 9.3-.4 13-6 24.2-6 11.3 0 14.5 6 24.3 5.9 10.2-.2 16.5-9.1 22.8-18.2 6.9-10.4 9.8-20.4 10-21zm135.4-53.4c0-26.6-18.5-44.8-44.9-44.8h-51.2v136.4h21.2v-46.6h29.3c26.8 0 45.6-18.4 45.6-45zm90 23.7c0-19.7-15.8-32.4-40-32.4-22.5 0-39.1 12.9-39.7 30.5h19.1c1.6-8.4 9.4-13.9 20-13.9 13 0 20.2 6 20.2 17.2v7.5l-26.4 1.6c-24.6 1.5-37.9 11.6-37.9 29.1 0 17.7 13.7 29.4 33.4 29.4 13.3 0 25.6-6.7 31.2-17.4h.4V310h19.6v-68zM516 210.9h-21.5l-24.9 80.6h-.4l-24.9-80.6H422l35.9 99.3-1.9 6c-3.2 10.2-8.5 14.2-17.9 14.2-1.7 0-4.9-.2-6.2-.3v16.4c1.2.4 6.5.5 8.1.5 20.7 0 30.4-7.9 38.9-31.8L516 210.9z"] }; +var faCcDinersClub = { prefix: 'fab', iconName: 'cc-diners-club', icon: [576, 512, [], "f24c", "M239.7 79.9c-96.9 0-175.8 78.6-175.8 175.8 0 96.9 78.9 175.8 175.8 175.8 97.2 0 175.8-78.9 175.8-175.8 0-97.2-78.6-175.8-175.8-175.8zm-39.9 279.6c-41.7-15.9-71.4-56.4-71.4-103.8s29.7-87.9 71.4-104.1v207.9zm79.8.3V151.6c41.7 16.2 71.4 56.7 71.4 104.1s-29.7 87.9-71.4 104.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM329.7 448h-90.3c-106.2 0-193.8-85.5-193.8-190.2C45.6 143.2 133.2 64 239.4 64h90.3c105 0 200.7 79.2 200.7 193.8 0 104.7-95.7 190.2-200.7 190.2z"] }; +var faCcDiscover = { prefix: 'fab', iconName: 'cc-discover', icon: [576, 512, [], "f1f2", "M83 212.1c0 7.9-3.2 15.5-8.9 20.7-4.9 4.4-11.6 6.4-21.9 6.4H48V185h4.2c10.3 0 16.7 1.7 21.9 6.6 5.7 5 8.9 12.6 8.9 20.5zM504.8 184h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8 0-7.9-5.5-12.1-15.6-12.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM428 253h45.3v-13.8H444V217h28.3v-13.8H444V185h29.3v-14H428v82zm-86.2-82l35 84.2h8.6l35.5-84.2h-17.5l-22.2 55.2-21.9-55.2h-17.5zm-83 41.6c0 24.6 19.9 44.6 44.6 44.6 24.6 0 44.6-19.9 44.6-44.6 0-24.6-19.9-44.6-44.6-44.6-24.6 0-44.6 19.9-44.6 44.6zm-68-.5c0 32.5 33.6 52.5 63.3 38.2v-19c-19.3 19.3-46.8 5.8-46.8-19.2 0-23.7 26.7-39.1 46.8-19v-19c-30.2-15-63.3 6.8-63.3 38zm-33.9 28.3c-7.6 0-13.8-3.7-17.5-10.8l-10.3 9.9c17.8 26.1 56.6 18.2 56.6-11.3 0-13.1-5.4-19-23.6-25.6-9.6-3.4-12.3-5.9-12.3-10.3 0-8.7 14.5-14.1 24.9-2.5l8.4-10.8c-19.1-17.1-49.7-8.9-49.7 14.3 0 11.3 5.2 17.2 20.2 22.7 25.7 9.1 14.7 24.4 3.3 24.4zm-57.4-28.3c0-24.1-18-41.1-44.1-41.1H32v82h23.4c30.9 0 44.1-22.4 44.1-40.9zm23.4-41.1h-16v82h16v-82zM544 288c-33.3 20.8-226.4 124.4-416 160h401c8.2 0 15-6.8 15-15V288zm0-35l-25.9-34.5c12.1-2.5 18.7-10.6 18.7-23.2 0-28.5-30.3-24.4-52.9-24.4v82h16v-32.8h2.2l22.2 32.8H544z"] }; +var faCcJcb = { prefix: 'fab', iconName: 'cc-jcb', icon: [576, 512, [], "f24b", "M431.5 244.3V212c41.2 0 38.5.2 38.5.2 7.3 1.3 13.3 7.3 13.3 16 0 8.8-6 14.5-13.3 15.8-1.2.4-3.3.3-38.5.3zm42.8 20.2c-2.8-.7-3.3-.5-42.8-.5v35c39.6 0 40 .2 42.8-.5 7.5-1.5 13.5-8 13.5-17 0-8.7-6-15.5-13.5-17zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM182 192.3h-57c0 67.1 10.7 109.7-35.8 109.7-19.5 0-38.8-5.7-57.2-14.8v28c30 8.3 68 8.3 68 8.3 97.9 0 82-47.7 82-131.2zm178.5 4.5c-63.4-16-165-14.9-165 59.3 0 77.1 108.2 73.6 165 59.2V287C312.9 311.7 253 309 253 256s59.8-55.6 107.5-31.2v-28zM544 286.5c0-18.5-16.5-30.5-38-32v-.8c19.5-2.7 30.3-15.5 30.3-30.2 0-19-15.7-30-37-31 0 0 6.3-.3-120.3-.3v127.5h122.7c24.3.1 42.3-12.9 42.3-33.2z"] }; +var faCcMastercard = { prefix: 'fab', iconName: 'cc-mastercard', icon: [576, 512, [], "f1f1", "M482.9 410.3c0 6.8-4.6 11.7-11.2 11.7-6.8 0-11.2-5.2-11.2-11.7 0-6.5 4.4-11.7 11.2-11.7 6.6 0 11.2 5.2 11.2 11.7zm-310.8-11.7c-7.1 0-11.2 5.2-11.2 11.7 0 6.5 4.1 11.7 11.2 11.7 6.5 0 10.9-4.9 10.9-11.7-.1-6.5-4.4-11.7-10.9-11.7zm117.5-.3c-5.4 0-8.7 3.5-9.5 8.7h19.1c-.9-5.7-4.4-8.7-9.6-8.7zm107.8.3c-6.8 0-10.9 5.2-10.9 11.7 0 6.5 4.1 11.7 10.9 11.7 6.8 0 11.2-4.9 11.2-11.7 0-6.5-4.4-11.7-11.2-11.7zm105.9 26.1c0 .3.3.5.3 1.1 0 .3-.3.5-.3 1.1-.3.3-.3.5-.5.8-.3.3-.5.5-1.1.5-.3.3-.5.3-1.1.3-.3 0-.5 0-1.1-.3-.3 0-.5-.3-.8-.5-.3-.3-.5-.5-.5-.8-.3-.5-.3-.8-.3-1.1 0-.5 0-.8.3-1.1 0-.5.3-.8.5-1.1.3-.3.5-.3.8-.5.5-.3.8-.3 1.1-.3.5 0 .8 0 1.1.3.5.3.8.3 1.1.5s.2.6.5 1.1zm-2.2 1.4c.5 0 .5-.3.8-.3.3-.3.3-.5.3-.8 0-.3 0-.5-.3-.8-.3 0-.5-.3-1.1-.3h-1.6v3.5h.8V426h.3l1.1 1.4h.8l-1.1-1.3zM576 81v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V81c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM64 220.6c0 76.5 62.1 138.5 138.5 138.5 27.2 0 53.9-8.2 76.5-23.1-72.9-59.3-72.4-171.2 0-230.5-22.6-15-49.3-23.1-76.5-23.1-76.4-.1-138.5 62-138.5 138.2zm224 108.8c70.5-55 70.2-162.2 0-217.5-70.2 55.3-70.5 162.6 0 217.5zm-142.3 76.3c0-8.7-5.7-14.4-14.7-14.7-4.6 0-9.5 1.4-12.8 6.5-2.4-4.1-6.5-6.5-12.2-6.5-3.8 0-7.6 1.4-10.6 5.4V392h-8.2v36.7h8.2c0-18.9-2.5-30.2 9-30.2 10.2 0 8.2 10.2 8.2 30.2h7.9c0-18.3-2.5-30.2 9-30.2 10.2 0 8.2 10 8.2 30.2h8.2v-23zm44.9-13.7h-7.9v4.4c-2.7-3.3-6.5-5.4-11.7-5.4-10.3 0-18.2 8.2-18.2 19.3 0 11.2 7.9 19.3 18.2 19.3 5.2 0 9-1.9 11.7-5.4v4.6h7.9V392zm40.5 25.6c0-15-22.9-8.2-22.9-15.2 0-5.7 11.9-4.8 18.5-1.1l3.3-6.5c-9.4-6.1-30.2-6-30.2 8.2 0 14.3 22.9 8.3 22.9 15 0 6.3-13.5 5.8-20.7.8l-3.5 6.3c11.2 7.6 32.6 6 32.6-7.5zm35.4 9.3l-2.2-6.8c-3.8 2.1-12.2 4.4-12.2-4.1v-16.6h13.1V392h-13.1v-11.2h-8.2V392h-7.6v7.3h7.6V416c0 17.6 17.3 14.4 22.6 10.9zm13.3-13.4h27.5c0-16.2-7.4-22.6-17.4-22.6-10.6 0-18.2 7.9-18.2 19.3 0 20.5 22.6 23.9 33.8 14.2l-3.8-6c-7.8 6.4-19.6 5.8-21.9-4.9zm59.1-21.5c-4.6-2-11.6-1.8-15.2 4.4V392h-8.2v36.7h8.2V408c0-11.6 9.5-10.1 12.8-8.4l2.4-7.6zm10.6 18.3c0-11.4 11.6-15.1 20.7-8.4l3.8-6.5c-11.6-9.1-32.7-4.1-32.7 15 0 19.8 22.4 23.8 32.7 15l-3.8-6.5c-9.2 6.5-20.7 2.6-20.7-8.6zm66.7-18.3H408v4.4c-8.3-11-29.9-4.8-29.9 13.9 0 19.2 22.4 24.7 29.9 13.9v4.6h8.2V392zm33.7 0c-2.4-1.2-11-2.9-15.2 4.4V392h-7.9v36.7h7.9V408c0-11 9-10.3 12.8-8.4l2.4-7.6zm40.3-14.9h-7.9v19.3c-8.2-10.9-29.9-5.1-29.9 13.9 0 19.4 22.5 24.6 29.9 13.9v4.6h7.9v-51.7zm7.6-75.1v4.6h.8V302h1.9v-.8h-4.6v.8h1.9zm6.6 123.8c0-.5 0-1.1-.3-1.6-.3-.3-.5-.8-.8-1.1-.3-.3-.8-.5-1.1-.8-.5 0-1.1-.3-1.6-.3-.3 0-.8.3-1.4.3-.5.3-.8.5-1.1.8-.5.3-.8.8-.8 1.1-.3.5-.3 1.1-.3 1.6 0 .3 0 .8.3 1.4 0 .3.3.8.8 1.1.3.3.5.5 1.1.8.5.3 1.1.3 1.4.3.5 0 1.1 0 1.6-.3.3-.3.8-.5 1.1-.8.3-.3.5-.8.8-1.1.3-.6.3-1.1.3-1.4zm3.2-124.7h-1.4l-1.6 3.5-1.6-3.5h-1.4v5.4h.8v-4.1l1.6 3.5h1.1l1.4-3.5v4.1h1.1v-5.4zm4.4-80.5c0-76.2-62.1-138.3-138.5-138.3-27.2 0-53.9 8.2-76.5 23.1 72.1 59.3 73.2 171.5 0 230.5 22.6 15 49.5 23.1 76.5 23.1 76.4.1 138.5-61.9 138.5-138.4z"] }; +var faCcPaypal = { prefix: 'fab', iconName: 'cc-paypal', icon: [576, 512, [], "f1f4", "M186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5z"] }; +var faCcStripe = { prefix: 'fab', iconName: 'cc-stripe', icon: [576, 512, [], "f1f5", "M396.9 256.5c0 19.1-8.8 33.4-21.9 33.4-8.3 0-13.3-3-16.8-6.7l-.2-52.8c3.7-4.1 8.8-7 17-7 12.9-.1 21.9 14.5 21.9 33.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM122.2 281.1c0-42.3-54.3-34.7-54.3-50.7 0-5.5 4.6-7.7 12.1-7.7 10.8 0 24.5 3.3 35.3 9.1v-33.4c-11.8-4.7-23.5-6.5-35.3-6.5-28.8 0-48 15-48 40.2 0 39.3 54 32.9 54 49.9 0 6.6-5.7 8.7-13.6 8.7-11.8 0-26.9-4.9-38.9-11.3v33.9c13.2 5.7 26.6 8.1 38.8 8.1 29.6-.2 49.9-14.7 49.9-40.3zm68.9-86.9h-27v-30.8l-34.7 7.4-.2 113.9c0 21 15.8 36.5 36.9 36.5 11.6 0 20.2-2.1 24.9-4.7v-28.9c-4.5 1.8-27 8.3-27-12.6v-50.5h27v-30.3zm73.8 0c-4.7-1.7-21.3-4.8-29.6 10.5l-2.2-10.5h-30.7v124.5h35.5v-84.4c8.4-11 22.6-8.9 27.1-7.4v-32.7zm44.2 0h-35.7v124.5h35.7V194.2zm0-47.3l-35.7 7.6v28.9l35.7-7.6v-28.9zm122.7 108.8c0-41.3-23.5-63.8-48.4-63.8-13.9 0-22.9 6.6-27.8 11.1l-1.8-8.8h-31.3V360l35.5-7.5.1-40.2c5.1 3.7 12.7 9 25.1 9 25.4-.1 48.6-20.5 48.6-65.6zm112.2 1.2c0-36.4-17.6-65.1-51.3-65.1-33.8 0-54.3 28.7-54.3 64.9 0 42.8 24.2 64.5 58.8 64.5 17 0 29.7-3.9 39.4-9.2v-28.6c-9.7 4.9-20.8 7.9-34.9 7.9-13.8 0-26-4.9-27.6-21.5h69.5c.1-2 .4-9.4.4-12.9zm-51.6-36.1c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7z"] }; +var faCcVisa = { prefix: 'fab', iconName: 'cc-visa', icon: [576, 512, [], "f1f0", "M470.1 231.3s7.6 37.2 9.3 45H446c3.3-8.9 16-43.5 16-43.5-.2.3 3.3-9.1 5.3-14.9l2.8 13.4zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM152.5 331.2L215.7 176h-42.5l-39.3 106-4.3-21.5-14-71.4c-2.3-9.9-9.4-12.7-18.2-13.1H32.7l-.7 3.1c15.8 4 29.9 9.8 42.2 17.1l35.8 135h42.5zm94.4.2L272.1 176h-40.2l-25.1 155.4h40.1zm139.9-50.8c.2-17.7-10.6-31.2-33.7-42.3-14.1-7.1-22.7-11.9-22.7-19.2.2-6.6 7.3-13.4 23.1-13.4 13.1-.3 22.7 2.8 29.9 5.9l3.6 1.7 5.5-33.6c-7.9-3.1-20.5-6.6-36-6.6-39.7 0-67.6 21.2-67.8 51.4-.3 22.3 20 34.7 35.2 42.2 15.5 7.6 20.8 12.6 20.8 19.3-.2 10.4-12.6 15.2-24.1 15.2-16 0-24.6-2.5-37.7-8.3l-5.3-2.5-5.6 34.9c9.4 4.3 26.8 8.1 44.8 8.3 42.2.1 69.7-20.8 70-53zM528 331.4L495.6 176h-31.1c-9.6 0-16.9 2.8-21 12.9l-59.7 142.5H426s6.9-19.2 8.4-23.3H486c1.2 5.5 4.8 23.3 4.8 23.3H528z"] }; +var faCentercode = { prefix: 'fab', iconName: 'centercode', icon: [512, 512, [], "f380", "M329.2 268.6c-3.8 35.2-35.4 60.6-70.6 56.8-35.2-3.8-60.6-35.4-56.8-70.6 3.8-35.2 35.4-60.6 70.6-56.8 35.1 3.8 60.6 35.4 56.8 70.6zm-85.8 235.1C96.7 496-8.2 365.5 10.1 224.3c11.2-86.6 65.8-156.9 139.1-192 161-77.1 349.7 37.4 354.7 216.6 4.1 147-118.4 262.2-260.5 254.8zm179.9-180c27.9-118-160.5-205.9-237.2-234.2-57.5 56.3-69.1 188.6-33.8 344.4 68.8 15.8 169.1-26.4 271-110.2z"] }; +var faChrome = { prefix: 'fab', iconName: 'chrome', icon: [496, 512, [], "f268", "M131.5 217.5L55.1 100.1c47.6-59.2 119-91.8 192-92.1 42.3-.3 85.5 10.5 124.8 33.2 43.4 25.2 76.4 61.4 97.4 103L264 133.4c-58.1-3.4-113.4 29.3-132.5 84.1zm32.9 38.5c0 46.2 37.4 83.6 83.6 83.6s83.6-37.4 83.6-83.6-37.4-83.6-83.6-83.6-83.6 37.3-83.6 83.6zm314.9-89.2L339.6 174c37.9 44.3 38.5 108.2 6.6 157.2L234.1 503.6c46.5 2.5 94.4-7.7 137.8-32.9 107.4-62 150.9-192 107.4-303.9zM133.7 303.6L40.4 120.1C14.9 159.1 0 205.9 0 256c0 124 90.8 226.7 209.5 244.9l63.7-124.8c-57.6 10.8-113.2-20.8-139.5-72.5z"] }; +var faCloudscale = { prefix: 'fab', iconName: 'cloudscale', icon: [448, 512, [], "f383", "M318.1 154l-9.4 7.6c-22.5-19.3-51.5-33.6-83.3-33.6C153.8 128 96 188.8 96 260.3c0 6.6.4 13.1 1.4 19.4-2-56 41.8-97.4 92.6-97.4 24.2 0 46.2 9.4 62.6 24.7l-25.2 20.4c-8.3-.9-16.8 1.8-23.1 8.1-11.1 11-11.1 28.9 0 40 11.1 11 28.9 11 40 0 6.3-6.3 9-14.9 8.1-23.1l75.2-88.8c6.3-6.5-3.3-15.9-9.5-9.6zm-83.8 111.5c-5.6 5.5-14.6 5.5-20.2 0-5.6-5.6-5.6-14.6 0-20.2s14.6-5.6 20.2 0 5.6 14.7 0 20.2zM224 32C100.5 32 0 132.5 0 256s100.5 224 224 224 224-100.5 224-224S347.5 32 224 32zm0 384c-88.2 0-160-71.8-160-160S135.8 96 224 96s160 71.8 160 160-71.8 160-160 160z"] }; +var faCloudsmith = { prefix: 'fab', iconName: 'cloudsmith', icon: [332, 512, [], "f384", "M332.5 419.9c0 46.4-37.6 84.1-84 84.1s-84-37.7-84-84.1 37.6-84 84-84 84 37.6 84 84zm-84-243.9c46.4 0 80-37.6 80-84s-33.6-84-80-84-88 37.6-88 84-29.6 76-76 76-84 41.6-84 88 37.6 80 84 80 84-33.6 84-80 33.6-80 80-80z"] }; +var faCloudversify = { prefix: 'fab', iconName: 'cloudversify', icon: [616, 512, [], "f385", "M148.6 304c8.2 68.5 67.4 115.5 146 111.3 51.2 43.3 136.8 45.8 186.4-5.6 69.2 1.1 118.5-44.6 131.5-99.5 14.8-62.5-18.2-132.5-92.1-155.1-33-88.1-131.4-101.5-186.5-85-57.3 17.3-84.3 53.2-99.3 109.7-7.8 2.7-26.5 8.9-45 24.1 11.7 0 15.2 8.9 15.2 19.5v20.4c0 10.7-8.7 19.5-19.5 19.5h-20.2c-10.7 0-19.5-6-19.5-16.7V240H98.8C95 240 88 244.3 88 251.9v40.4c0 6.4 5.3 11.8 11.7 11.8h48.9zm227.4 8c-10.7 46.3 21.7 72.4 55.3 86.8C324.1 432.6 259.7 348 296 288c-33.2 21.6-33.7 71.2-29.2 92.9-17.9-12.4-53.8-32.4-57.4-79.8-3-39.9 21.5-75.7 57-93.9C297 191.4 369.9 198.7 400 248c-14.1-48-53.8-70.1-101.8-74.8 30.9-30.7 64.4-50.3 114.2-43.7 69.8 9.3 133.2 82.8 67.7 150.5 35-16.3 48.7-54.4 47.5-76.9l10.5 19.6c11.8 22 15.2 47.6 9.4 72-9.2 39-40.6 68.8-79.7 76.5-32.1 6.3-83.1-5.1-91.8-59.2zM128 208H88.2c-8.9 0-16.2-7.3-16.2-16.2v-39.6c0-8.9 7.3-16.2 16.2-16.2H128c8.9 0 16.2 7.3 16.2 16.2v39.6c0 8.9-7.3 16.2-16.2 16.2zM10.1 168C4.5 168 0 163.5 0 157.9v-27.8c0-5.6 4.5-10.1 10.1-10.1h27.7c5.5 0 10.1 4.5 10.1 10.1v27.8c0 5.6-4.5 10.1-10.1 10.1H10.1zM168 142.7v-21.4c0-5.1 4.2-9.3 9.3-9.3h21.4c5.1 0 9.3 4.2 9.3 9.3v21.4c0 5.1-4.2 9.3-9.3 9.3h-21.4c-5.1 0-9.3-4.2-9.3-9.3zM56 235.5v25c0 6.3-5.1 11.5-11.4 11.5H19.4C13.1 272 8 266.8 8 260.5v-25c0-6.3 5.1-11.5 11.4-11.5h25.1c6.4 0 11.5 5.2 11.5 11.5z"] }; +var faCodepen = { prefix: 'fab', iconName: 'codepen', icon: [512, 512, [], "f1cb", "M502.285 159.704l-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285zM278 63.131l172.286 114.858-76.857 51.429L278 165.703V63.131zm-44 0v102.572l-95.429 63.715-76.857-51.429L234 63.131zM44 219.132l55.143 36.857L44 292.846v-73.714zm190 229.715L61.714 333.989l76.857-51.429L234 346.275v102.572zm22-140.858l-77.715-52 77.715-52 77.715 52-77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429L278 448.847zm190-156.001l-55.143-36.857L468 219.132v73.714z"] }; +var faCodiepie = { prefix: 'fab', iconName: 'codiepie', icon: [472, 512, [], "f284", "M422.5 202.9c30.7 0 33.5 53.1-.3 53.1h-10.8v44.3h-26.6v-97.4h37.7zM472 352.6C429.9 444.5 350.4 504 248 504 111 504 0 393 0 256S111 8 248 8c97.4 0 172.8 53.7 218.2 138.4l-186 108.8L472 352.6zm-38.5 12.5l-60.3-30.7c-27.1 44.3-70.4 71.4-122.4 71.4-82.5 0-149.2-66.7-149.2-148.9 0-82.5 66.7-149.2 149.2-149.2 48.4 0 88.9 23.5 116.9 63.4l59.5-34.6c-40.7-62.6-104.7-100-179.2-100-121.2 0-219.5 98.3-219.5 219.5S126.8 475.5 248 475.5c78.6 0 146.5-42.1 185.5-110.4z"] }; +var faConnectdevelop = { prefix: 'fab', iconName: 'connectdevelop', icon: [576, 512, [], "f20e", "M550.5 241l-50.089-86.786c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.733-14.732-15.001l-55.447-95.893c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.268-15.268-15.268-4.821 0-8.839 2.143-11.786 5.625H299.518C296.839 18.143 292.821 16 288 16s-8.839 2.143-11.518 5.625H170.411C167.464 18.143 163.447 16 158.625 16c-8.303 0-15.268 6.696-15.268 15.268 0 1.607.536 3.482 1.072 4.821l-55.983 97.233c-5.356 2.41-9.107 7.5-9.107 13.661 0 .535.268 1.071.268 1.607l-53.304 92.143c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.393 12.054 15l55.179 95.358c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.393 12.054 14.732l51.697 89.732c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.268 15.268 15.268 4.821 0 8.839-2.143 11.518-5.357h106.875C279.161 493.857 283.447 496 288 496s8.839-2.143 11.518-5.357h107.143c2.678 2.946 6.696 4.821 10.982 4.821 8.571 0 15.268-6.964 15.268-15.268 0-1.607-.267-2.946-.803-4.285l51.697-90.268c6.964-1.339 12.054-7.5 12.054-14.732 0-1.607-.268-3.214-.804-4.821l54.911-95.358c6.964-1.339 12.322-7.5 12.322-15-.002-7.232-5.092-13.393-11.788-14.732zM153.535 450.732l-43.66-75.803h43.66v75.803zm0-83.839h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.999-47.41v50.624zm0-62.411l-50.357 53.304c-1.339-.536-2.679-1.34-4.018-1.607L43.447 259.75c.535-1.339.535-2.679.535-4.018s0-2.41-.268-3.482l51.965-90c2.679-.268 5.357-1.072 7.768-2.679l50.089 51.965v92.946zm0-102.322l-45.803-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.928-15.804v72.053zm0-80.625l-43.66 15.804 43.66-75.536v59.732zm326.519 39.108l.804 1.339L445.5 329.125l-63.75-67.232 98.036-101.518.268.268zM291.75 355.107l11.518 11.786H280.5l11.25-11.786zm-.268-11.25l-83.303-85.446 79.553-84.375 83.036 87.589-79.286 82.232zm5.357 5.893l79.286-82.232 67.5 71.25-5.892 28.125H313.714l-16.875-17.143zM410.411 44.393c1.071.536 2.142 1.072 3.482 1.34l57.857 100.714v.536c0 2.946.803 5.624 2.143 7.767L376.393 256l-83.035-87.589L410.411 44.393zm-9.107-2.143L287.732 162.518l-57.054-60.268 166.339-60h4.287zm-123.483 0c2.678 2.678 6.16 4.285 10.179 4.285s7.5-1.607 10.179-4.285h75L224.786 95.821 173.893 42.25h103.928zm-116.249 5.625l1.071-2.142a33.834 33.834 0 0 0 2.679-.804l51.161 53.84-54.911 19.821V47.875zm0 79.286l60.803-21.964 59.732 63.214-79.553 84.107-40.982-42.053v-83.304zm0 92.678L198 257.607l-36.428 38.304v-76.072zm0 87.858l42.053-44.464 82.768 85.982-17.143 17.678H161.572v-59.196zm6.964 162.053c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.732h99.91l-91.607 94.821h-1.339zm129.911 0c-2.679-2.41-6.428-4.285-10.447-4.285s-7.767 1.875-10.447 4.285h-96.429l91.607-94.821h38.304l91.607 94.821H298.447zm120-11.786l-4.286 7.5c-1.339.268-2.41.803-3.482 1.339l-89.196-91.875h114.376l-17.412 83.036zm12.856-22.232l12.858-60.803h21.964l-34.822 60.803zm34.822-68.839h-20.357l4.553-21.16 17.143 18.214c-.535.803-1.071 1.874-1.339 2.946zm66.161-107.411l-55.447 96.697c-1.339.535-2.679 1.071-4.018 1.874l-20.625-21.964 34.554-163.928 45.803 79.286c-.267 1.339-.803 2.678-.803 4.285 0 1.339.268 2.411.536 3.75z"] }; +var faContao = { prefix: 'fab', iconName: 'contao', icon: [512, 512, [], "f26d", "M45.4 305c14.4 67.1 26.4 129 68.2 175H34c-18.7 0-34-15.2-34-34V66c0-18.7 15.2-34 34-34h57.7C77.9 44.6 65.6 59.2 54.8 75.6c-45.4 70-27 146.8-9.4 229.4zM478 32h-90.2c21.4 21.4 39.2 49.5 52.7 84.1l-137.1 29.3c-14.9-29-37.8-53.3-82.6-43.9-24.6 5.3-41 19.3-48.3 34.6-8.8 18.7-13.2 39.8 8.2 140.3 21.1 100.2 33.7 117.7 49.5 131.2 12.9 11.1 33.4 17 58.3 11.7 44.5-9.4 55.7-40.7 57.4-73.2l137.4-29.6c3.2 71.5-18.7 125.2-57.4 163.6H478c18.7 0 34-15.2 34-34V66c0-18.8-15.2-34-34-34z"] }; +var faCpanel = { prefix: 'fab', iconName: 'cpanel', icon: [640, 512, [], "f388", "M52.9 213.7h40l-6.2 23.6c-1.9 6.5-7.4 10.9-14.3 10.9H53.8c-24.9 0-24.7 37.4 0 37.4h11.3c4.2 0 7.6 3.9 6.4 8.3L64.4 320H52c-33.5 0-59-31.4-50.3-65.2 7.3-27 28.3-41.1 51.2-41.1M73.1 320L108 189.9c1.8-6.4 7.2-10.9 14.3-10.9h37c24.1 0 45.4 16.4 51 41.2 6.6 29.1-14.5 65.3-51.7 65.3h-32l6.4-23.8c1.8-6.2 7.3-10.8 14.3-10.8h10.3c12.4 0 20.8-11.7 18.3-22.6-2.1-9.2-9.9-14.8-18.3-14.8h-19.8L112 309.2c-1.9 6.2-7.4 10.7-14.2 10.7l-24.7.1m220.6-69.4c.3-1 1.9-5.3-2.1-5.3h-57.5c-9.7 0-16.6-8.9-14.2-18.5l3.5-13.4h77.9c18.8 0 33.3 17.6 28.5 36.8l-14 51.8c-2.8 10.6-12.2 17.8-23.4 17.8l-57.5-.2c-42.9 0-38.5-63.8.7-63.8H284l-3.5 13.2c-1.9 6.2-7.4 10.8-14.2 10.8h-21.6c-5.3 0-5.3 7.9 0 7.9h34.9c4.6 0 5.1-3.9 5.5-5.3l8.6-31.8m103.1-36.9c34.4 0 59.3 32.3 50.3 65.4l-8.8 33.1c-1.2 4.9-5.7 7.8-10.3 7.8h-19.1c-4.5 0-7.6-4-6.4-8.3l10.6-40c3.3-11.6-5.6-23.4-18.1-23.4h-19.8l-17.2 64c-1.2 4.8-5.6 7.8-10.4 7.8h-18.9c-4.2 0-7.6-3.9-6.4-8.3l26.2-98h48.3M498 251.6l-8 30c-.9 3.3 1.5 6.7 5.1 6.7h73.3l-5.7 21c-1.9 6.2-7.4 10.7-14.2 10.7h-66.7c-20 0-33.3-19-28.3-36.7l10.8-40c4.8-17.6 20.7-29.6 38.6-29.6h47.3c19 0 33.2 17.7 28.3 36.8l-3.2 12c-2.9 11-12.7 17.6-23.2 17.6h-53.4l3.5-13c1.6-6.2 7.2-10.8 14.2-10.8H538c2 0 3.3-1 3.9-3l.7-2.6c.7-2.7-1.3-5.1-3.9-5.1h-32.9c-4.1 0-6.9 2.1-7.8 6zm70.2 68.4l35.6-133.1c1.2-4.7 5.5-7.9 10.4-7.9h18.9c4.5 0 7.7 4 6.5 8.3l-26.5 98.2c-5.1 20.7-24.2 34.5-44.9 34.5"] }; +var faCreativeCommons = { prefix: 'fab', iconName: 'creative-commons', icon: [496, 512, [], "f25e", "M254.8 214.8l-33.2 17.3c-9.4-19.6-25.2-19.9-27.5-19.9-22.1 0-33.2 14.6-33.2 43.8 0 23.6 9.2 43.8 33.2 43.8 14.5 0 24.7-7.1 30.6-21.3l30.6 15.5c-6.2 11.5-25.7 39-65.1 39-22.6 0-74-10.3-74-77.1 0-58.7 43-77.1 72.6-77.1 30.8.2 52.7 12.1 66 36zm143.1 0l-32.8 17.3c-9.5-19.8-25.7-19.9-27.9-19.9-22.1 0-33.2 14.6-33.2 43.8 0 23.6 9.2 43.8 33.2 43.8 14.5 0 24.6-7.1 30.5-21.3l31 15.5c-2.1 3.7-21.4 39-65.1 39-22.7 0-74-9.9-74-77.1 0-58.7 43-77.1 72.6-77.1 30.8.2 52.7 12.1 65.7 36zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z"] }; +var faCreativeCommonsBy = { prefix: 'fab', iconName: 'creative-commons-by', icon: [496, 512, [], "f4e7", "M314.9 194.4v101.4h-28.3v120.5h-77.1V295.9h-28.3V194.4c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7H299c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3zm-101.5-63.7c0-23.3 11.5-35 34.5-35s34.5 11.7 34.5 35c0 23-11.5 34.5-34.5 34.5s-34.5-11.5-34.5-34.5zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z"] }; +var faCreativeCommonsNc = { prefix: 'fab', iconName: 'creative-commons-nc', icon: [496, 512, [], "f4e8", "M247.6 8C387.4 8 496 115.9 496 256c0 147.2-118.5 248-248.4 248C113.1 504 0 393.2 0 256 0 123.1 104.7 8 247.6 8zM55.8 189.1c-7.4 20.4-11.1 42.7-11.1 66.9 0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4v38.1h-28.8V368c-27.5-.3-52.6-10.2-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4zM248.4 52.3c-38.4 0-112.4 8.7-170.5 93l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3v-38.1h28.8v38.1c22.7 1.2 43.4 8.9 62 23L295 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8z"] }; +var faCreativeCommonsNcEu = { prefix: 'fab', iconName: 'creative-commons-nc-eu', icon: [496, 512, [], "f4e9", "M247.7 8C103.6 8 0 124.8 0 256c0 136.3 111.7 248 247.7 248C377.9 504 496 403.1 496 256 496 117 388.4 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-23.2 3.7-45.2 10.9-66l65.7 29.1h-4.7v29.5h23.3c0 6.2-.4 3.2-.4 19.5h-22.8v29.5h27c11.4 67 67.2 101.3 124.6 101.3 26.6 0 50.6-7.9 64.8-15.8l-10-46.1c-8.7 4.6-28.2 10.8-47.3 10.8-28.2 0-58.1-10.9-67.3-50.2h90.3l128.3 56.8c-1.5 2.1-56.2 104.3-178.8 104.3zm-16.7-190.6l-.5-.4.9.4h-.4zm77.2-19.5h3.7v-29.5h-70.3l-28.6-12.6c2.5-5.5 5.4-10.5 8.8-14.3 12.9-15.8 31.1-22.4 51.1-22.4 18.3 0 35.3 5.4 46.1 10l11.6-47.3c-15-6.6-37-12.4-62.3-12.4-39 0-72.2 15.8-95.9 42.3-5.3 6.1-9.8 12.9-13.9 20.1l-81.6-36.1c64.6-96.8 157.7-93.6 170.7-93.6 113 0 203 90.2 203 203.4 0 18.7-2.1 36.3-6.3 52.9l-136.1-60.5z"] }; +var faCreativeCommonsNcJp = { prefix: 'fab', iconName: 'creative-commons-nc-jp', icon: [496, 512, [], "f4ea", "M247.7 8C103.6 8 0 124.8 0 256c0 136.4 111.8 248 247.7 248C377.9 504 496 403.2 496 256 496 117.2 388.5 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-21.1 3-41.2 9-60.3l127 56.5h-27.9v38.6h58.1l5.7 11.8v18.7h-63.8V360h63.8v56h61.7v-56h64.2v-35.7l81 36.1c-1.5 2.2-57.1 98.3-175.2 98.3zm87.6-137.3h-57.6v-18.7l2.9-5.6 54.7 24.3zm6.5-51.4v-17.8h-38.6l63-116H301l-43.4 96-23-10.2-39.6-85.7h-65.8l27.3 51-81.9-36.5c27.8-44.1 82.6-98.1 173.7-98.1 112.8 0 203 90 203 203.4 0 21-2.7 40.6-7.9 59l-101-45.1z"] }; +var faCreativeCommonsNd = { prefix: 'fab', iconName: 'creative-commons-nd', icon: [496, 512, [], "f4eb", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm94 144.3v42.5H162.1V197h180.3zm0 79.8v42.5H162.1v-42.5h180.3z"] }; +var faCreativeCommonsPd = { prefix: 'fab', iconName: 'creative-commons-pd', icon: [496, 512, [], "f4ec", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm0 449.5c-139.2 0-235.8-138-190.2-267.9l78.8 35.1c-2.1 10.5-3.3 21.5-3.3 32.9 0 99 73.9 126.9 120.4 126.9 22.9 0 53.5-6.7 79.4-29.5L297 311.1c-5.5 6.3-17.6 16.7-36.3 16.7-37.8 0-53.7-39.9-53.9-71.9 230.4 102.6 216.5 96.5 217.9 96.8-34.3 62.4-100.6 104.8-176.7 104.8zm194.2-150l-224-100c18.8-34 54.9-30.7 74.7-11l40.4-41.6c-27.1-23.3-58-27.5-78.1-27.5-47.4 0-80.9 20.5-100.7 51.6l-74.9-33.4c36.1-54.9 98.1-91.2 168.5-91.2 111.1 0 201.5 90.4 201.5 201.5 0 18-2.4 35.4-6.8 52-.3-.1-.4-.2-.6-.4z"] }; +var faCreativeCommonsPdAlt = { prefix: 'fab', iconName: 'creative-commons-pd-alt', icon: [496, 512, [], "f4ed", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM135.5 323.3V186h68.2c33.7 0 50.5 15.5 50.5 46.5 0 9-3 46.5-57.1 46.5h-27v44.3h-34.6zm34.1-111.6v41.6h29.2c27.9 0 30-41.6-.9-41.6h-28.3zm93.9 111.6V186h53.2c21.4 0 70 5.2 70 68.6 0 63.5-48.6 68.6-70 68.6h-53.2zm34.1-108.5v79.7h19.9c24 0 34.5-15.3 34.5-39.9 0-42-31.2-39.9-35-39.9l-19.4.1z"] }; +var faCreativeCommonsRemix = { prefix: 'fab', iconName: 'creative-commons-remix', icon: [496, 512, [], "f4ee", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm161.7 207.7l4.9 2.2v70c-7.2 3.6-63.4 27.5-67.3 28.8-6.5-1.8-113.7-46.8-137.3-56.2l-64.2 26.6-63.3-27.5v-63.8l59.3-24.8c-.7-.7-.4 5-.4-70.4l67.3-29.7L361 178.5v61.6l49.1 20.3zm-70.4 81.5v-43.8h-.4v-1.8l-113.8-46.5V295l113.8 46.9v-.4l.4.4zm7.5-57.6l39.9-16.4-36.8-15.5-39 16.4 35.9 15.5zm52.3 38.1v-43L355.2 298v43.4l44.3-19z"] }; +var faCreativeCommonsSa = { prefix: 'fab', iconName: 'creative-commons-sa', icon: [496, 512, [], "f4ef", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM137.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97h62.5c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6-33.1 0-51.7 14.6-55.8 43.8h18.2l-49.2 49.2-49-49.2h19.4z"] }; +var faCreativeCommonsSampling = { prefix: 'fab', iconName: 'creative-commons-sampling', icon: [496, 512, [], "f4f0", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm3.6 53.2c2.8-.3 11.5 1 11.5 11.5l6.6 107.2 4.9-59.3c0-6 4.7-10.6 10.6-10.6 5.9 0 10.6 4.7 10.6 10.6 0 2.5-.5-5.7 5.7 81.5l5.8-64.2c.3-2.9 2.9-9.3 10.2-9.3 3.8 0 9.9 2.3 10.6 8.9l11.5 96.5 5.3-12.8c1.8-4.4 5.2-6.6 10.2-6.6h58v21.3h-50.9l-18.2 44.3c-3.9 9.9-19.5 9.1-20.8-3.1l-4-31.9-7.5 92.6c-.3 3-3 9.3-10.2 9.3-3 0-9.8-2.1-10.6-9.3 0-1.9.6 5.8-6.2-77.9l-5.3 72.2c-1.1 4.8-4.8 9.3-10.6 9.3-2.9 0-9.8-2-10.6-9.3 0-1.9.5 6.7-5.8-87.7l-5.8 94.8c0 6.3-3.6 12.4-10.6 12.4-5.2 0-10.6-4.1-10.6-12l-5.8-87.7c-5.8 92.5-5.3 84-5.3 85.9-1.1 4.8-4.8 9.3-10.6 9.3-3 0-9.8-2.1-10.6-9.3 0-.7-.4-1.1-.4-2.6l-6.2-88.6L182 348c-.7 6.5-6.7 9.3-10.6 9.3-5.8 0-9.6-4.1-10.6-8.9L149.7 272c-2 4-3.5 8.4-11.1 8.4H87.2v-21.3H132l13.7-27.9c4.4-9.9 18.2-7.2 19.9 2.7l3.1 20.4 8.4-97.9c0-6 4.8-10.6 10.6-10.6.5 0 10.6-.2 10.6 12.4l4.9 69.1 6.6-92.6c0-10.1 9.5-10.6 10.2-10.6.6 0 10.6.7 10.6 10.6l5.3 80.6 6.2-97.9c.1-1.1-.6-10.3 9.9-11.5z"] }; +var faCreativeCommonsSamplingPlus = { prefix: 'fab', iconName: 'creative-commons-sampling-plus', icon: [496, 512, [], "f4f1", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm107 205.6c-4.7 0-9 2.8-10.7 7.2l-4 9.5-11-92.8c-1.7-13.9-22-13.4-23.1.4l-4.3 51.4-5.2-68.8c-1.1-14.3-22.1-14.2-23.2 0l-3.5 44.9-5.9-94.3c-.9-14.5-22.3-14.4-23.2 0l-5.1 83.7-4.3-66.3c-.9-14.4-22.2-14.4-23.2 0l-5.3 80.2-4.1-57c-1.1-14.3-22-14.3-23.2-.2l-7.7 89.8-1.8-12.2c-1.7-11.4-17.1-13.6-22-3.3l-13.2 27.7H87.5v23.2h51.3c4.4 0 8.4-2.5 10.4-6.4l10.7 73.1c2 13.5 21.9 13 23.1-.7l3.8-43.6 5.7 78.3c1.1 14.4 22.3 14.2 23.2-.1l4.6-70.4 4.8 73.3c.9 14.4 22.3 14.4 23.2-.1l4.9-80.5 4.5 71.8c.9 14.3 22.1 14.5 23.2.2l4.6-58.6 4.9 64.4c1.1 14.3 22 14.2 23.1.1l6.8-83 2.7 22.3c1.4 11.8 17.7 14.1 22.3 3.1l18-43.4h50.5V258l-58.4.3zm-78 5.2h-21.9v21.9c0 4.1-3.3 7.5-7.5 7.5-4.1 0-7.5-3.3-7.5-7.5v-21.9h-21.9c-4.1 0-7.5-3.3-7.5-7.5 0-4.1 3.4-7.5 7.5-7.5h21.9v-21.9c0-4.1 3.4-7.5 7.5-7.5s7.5 3.3 7.5 7.5v21.9h21.9c4.1 0 7.5 3.3 7.5 7.5 0 4.1-3.4 7.5-7.5 7.5z"] }; +var faCreativeCommonsShare = { prefix: 'fab', iconName: 'creative-commons-share', icon: [496, 512, [], "f4f2", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm101 132.4c7.8 0 13.7 6.1 13.7 13.7v182.5c0 7.7-6.1 13.7-13.7 13.7H214.3c-7.7 0-13.7-6-13.7-13.7v-54h-54c-7.8 0-13.7-6-13.7-13.7V131.1c0-8.2 6.6-12.7 12.4-13.7h136.4c7.7 0 13.7 6 13.7 13.7v54h54zM159.9 300.3h40.7V198.9c0-7.4 5.8-12.6 12-13.7h55.8v-40.3H159.9v155.4zm176.2-88.1H227.6v155.4h108.5V212.2z"] }; +var faCss3 = { prefix: 'fab', iconName: 'css3', icon: [512, 512, [], "f13c", "M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z"] }; +var faCss3Alt = { prefix: 'fab', iconName: 'css3-alt', icon: [384, 512, [], "f38b", "M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z"] }; +var faCuttlefish = { prefix: 'fab', iconName: 'cuttlefish', icon: [440, 512, [], "f38c", "M344 305.5c-17.5 31.6-57.4 54.5-96 54.5-56.6 0-104-47.4-104-104s47.4-104 104-104c38.6 0 78.5 22.9 96 54.5 13.7-50.9 41.7-93.3 87-117.8C385.7 39.1 320.5 8 248 8 111 8 0 119 0 256s111 248 248 248c72.5 0 137.7-31.1 183-80.7-45.3-24.5-73.3-66.9-87-117.8z"] }; +var faDAndD = { prefix: 'fab', iconName: 'd-and-d', icon: [576, 512, [], "f38d", "M82.5 98.9c-.6-17.2 2-33.8 12.7-48.2.3 7.4 1.2 14.5 4.2 21.6 5.9-27.5 19.7-49.3 42.3-65.5-1.9 5.9-3.5 11.8-3 17.7 8.7-7.4 18.8-17.8 44.4-22.7 14.7-2.8 29.7-2 42.1 1 38.5 9.3 61 34.3 69.7 72.3 5.3 23.1.7 45-8.3 66.4-5.2 12.4-12 24.4-20.7 35.1-2-1.9-3.9-3.8-5.8-5.6-42.8-40.8-26.8-25.2-37.4-37.4-1.1-1.2-1-2.2-.1-3.6 8.3-13.5 11.8-28.2 10-44-1.1-9.8-4.3-18.9-11.3-26.2-14.5-15.3-39.2-15-53.5.6-11.4 12.5-14.1 27.4-10.9 43.6.2 1.3.4 2.7 0 3.9-3.4 13.7-4.6 27.6-2.5 41.6.1.5.1 1.1.1 1.6 0 .3-.1.5-.2 1.1-21.8-11-36-28.3-43.2-52.2-8.3 17.8-11.1 35.5-6.6 54.1-15.6-15.2-21.3-34.3-22-55.2zm469.6 123.2c-11.6-11.6-25-20.4-40.1-26.6-12.8-5.2-26-7.9-39.9-7.1-10 .6-19.6 3.1-29 6.4-2.5.9-5.1 1.6-7.7 2.2-4.9 1.2-7.3-3.1-4.7-6.8 3.2-4.6 3.4-4.2 15-12 .6-.4 1.2-.8 2.2-1.5h-2.5c-.6 0-1.2.2-1.9.3-19.3 3.3-30.7 15.5-48.9 29.6-10.4 8.1-13.8 3.8-12-.5 1.4-3.5 3.3-6.7 5.1-10 1-1.8 2.3-3.4 3.5-5.1-.2-.2-.5-.3-.7-.5-27 18.3-46.7 42.4-57.7 73.3.3.3.7.6 1 .9.3-.6.5-1.2.9-1.7 10.4-12.1 22.8-21.8 36.6-29.8 18.2-10.6 37.5-18.3 58.7-20.2 4.3-.4 8.7-.1 13.1-.1-1.8.7-3.5.9-5.3 1.1-18.5 2.4-35.5 9-51.5 18.5-30.2 17.9-54.5 42.2-75.1 70.4-.3.4-.4.9-.7 1.3 14.5 5.3 24 17.3 36.1 25.6.2-.1.3-.2.4-.4l1.2-2.7c12.2-26.9 27-52.3 46.7-74.5 16.7-18.8 38-25.3 62.5-20 5.9 1.3 11.4 4.4 17.2 6.8 2.3-1.4 5.1-3.2 8-4.7 8.4-4.3 17.4-7 26.7-9 14.7-3.1 29.5-4.9 44.5-1.3v-.5c-.5-.4-1.2-.8-1.7-1.4zM316.7 397.6c-39.4-33-22.8-19.5-42.7-35.6-.8.9 0-.2-1.9 3-11.2 19.1-25.5 35.3-44 47.6-10.3 6.8-21.5 11.8-34.1 11.8-21.6 0-38.2-9.5-49.4-27.8-12-19.5-13.3-40.7-8.2-62.6 7.8-33.8 30.1-55.2 38.6-64.3-18.7-6.2-33 1.7-46.4 13.9.8-13.9 4.3-26.2 11.8-37.3-24.3 10.6-45.9 25-64.8 43.9-.3-5.8 5.4-43.7 5.6-44.7.3-2.7-.6-5.3-3-7.4-24.2 24.7-44.5 51.8-56.1 84.6 7.4-5.9 14.9-11.4 23.6-16.2-8.3 22.3-19.6 52.8-7.8 101.1 4.6 19 11.9 36.8 24.1 52.3 2.9 3.7 6.3 6.9 9.5 10.3.2-.2.4-.3.6-.5-1.4-7-2.2-14.1-1.5-21.9 2.2 3.2 3.9 6 5.9 8.6 12.6 16 28.7 27.4 47.2 35.6 25 11.3 51.1 13.3 77.9 8.6 54.9-9.7 90.7-48.6 116-98.8 1-1.8.6-2.9-.9-4.2zm172-46.4c-9.5-3.1-22.2-4.2-28.7-2.9 9.9 4 14.1 6.6 18.8 12 12.6 14.4 10.4 34.7-5.4 45.6-11.7 8.1-24.9 10.5-38.9 9.1-1.2-.1-2.3-.4-3-.6 2.8-3.7 6-7 8.1-10.8 9.4-16.8 5.4-42.1-8.7-56.1-2.1-2.1-4.6-3.9-7-5.9-.3 1.3-.1 2.1.1 2.8 4.2 16.6-8.1 32.4-24.8 31.8-7.6-.3-13.9-3.8-19.6-8.5-19.5-16.1-39.1-32.1-58.5-48.3-5.9-4.9-12.5-8.1-20.1-8.7-4.6-.4-9.3-.6-13.9-.9-5.9-.4-8.8-2.8-10.4-8.4-.9-3.4-1.5-6.8-2.2-10.2-1.5-8.1-6.2-13-14.3-14.2-4.4-.7-8.9-1-13.3-1.5-13-1.4-19.8-7.4-22.6-20.3-5 11-1.6 22.4 7.3 29.9 4.5 3.8 9.3 7.3 13.8 11.2 4.6 3.8 7.4 8.7 7.9 14.8.4 4.7.8 9.5 1.8 14.1 2.2 10.6 8.9 18.4 17 25.1 16.5 13.7 33 27.3 49.5 41.1 17.9 15 13.9 32.8 13 56-.9 22.9 12.2 42.9 33.5 51.2 1 .4 2 .6 3.6 1.1-15.7-18.2-10.1-44.1.7-52.3.3 2.2.4 4.3.9 6.4 9.4 44.1 45.4 64.2 85 56.9 16-2.9 30.6-8.9 42.9-19.8 2-1.8 3.7-4.1 5.9-6.5-19.3 4.6-35.8.1-50.9-10.6.7-.3 1.3-.3 1.9-.3 21.3 1.8 40.6-3.4 57-17.4 19.5-16.6 26.6-42.9 17.4-66-8.3-20.1-23.6-32.3-43.8-38.9zM99.4 179.3c-5.3-9.2-13.2-15.6-22.1-21.3 13.7-.5 26.6.2 39.6 3.7-7-12.2-8.5-24.7-5-38.7 5.3 11.9 13.7 20.1 23.6 26.8 19.7 13.2 35.7 19.6 46.7 30.2 3.4 3.3 6.3 7.1 9.6 10.9-.8-2.1-1.4-4.1-2.2-6-5-10.6-13-18.6-22.6-25-1.8-1.2-2.8-2.5-3.4-4.5-3.3-12.5-3-25.1-.7-37.6 1-5.5 2.8-10.9 4.5-16.3.8-2.4 2.3-4.6 4-6.6.6 6.9 0 25.5 19.6 46 10.8 11.3 22.4 21.9 33.9 32.7 9 8.5 18.3 16.7 25.5 26.8 1.1 1.6 2.2 3.3 3.8 4.7-5-13-14.2-24.1-24.2-33.8-9.6-9.3-19.4-18.4-29.2-27.4-3.3-3-4.6-6.7-5.1-10.9-1.2-10.4 0-20.6 4.3-30.2.5-1 1.1-2 1.9-3.3.5 4.2.6 7.9 1.4 11.6 4.8 23.1 20.4 36.3 49.3 63.5 10 9.4 19.3 19.2 25.6 31.6 4.8 9.3 7.3 19 5.7 29.6-.1.6.5 1.7 1.1 2 6.2 2.6 10 6.9 9.7 14.3 7.7-2.6 12.5-8 16.4-14.5 4.2 20.2-9.1 50.3-27.2 58.7.4-4.5 5-23.4-16.5-27.7-6.8-1.3-12.8-1.3-22.9-2.1 4.7-9 10.4-20.6.5-22.4-24.9-4.6-52.8 1.9-57.8 4.6 8.2.4 16.3 1 23.5 3.3-2 6.5-4 12.7-5.8 18.9-1.9 6.5 2.1 14.6 9.3 9.6 1.2-.9 2.3-1.9 3.3-2.7-3.1 17.9-2.9 15.9-2.8 18.3.3 10.2 9.5 7.8 15.7 7.3-2.5 11.8-29.5 27.3-45.4 25.8 7-4.7 12.7-10.3 15.9-17.9-6.5.8-12.9 1.6-19.2 2.4l-.3-.9c4.7-3.4 8-7.8 10.2-13.1 8.7-21.1-3.6-38-25-39.9-9.1-.8-17.8.8-25.9 5.5 6.2-15.6 17.2-26.6 32.6-34.5-15.2-4.3-8.9-2.7-24.6-6.3 14.6-9.3 30.2-13.2 46.5-14.6-5.2-3.2-48.1-3.6-70.2 20.9 7.9 1.4 15.5 2.8 23.2 4.2-23.8 7-44 19.7-62.4 35.6 1.1-4.8 2.7-9.5 3.3-14.3.6-4.5.8-9.2.1-13.6-1.5-9.4-8.9-15.1-19.7-16.3-7.9-.9-15.6.1-23.3 1.3-.9.1-1.7.3-2.9 0 15.8-14.8 36-21.7 53.1-33.5 6-4.5 6.8-8.2 3-14.9zm128.4 26.8c3.3 16 12.6 25.5 23.8 24.3-4.6-11.3-12.1-19.5-23.8-24.3z"] }; +var faDashcube = { prefix: 'fab', iconName: 'dashcube', icon: [448, 512, [], "f210", "M326.6 104H110.4c-51.1 0-91.2 43.3-91.2 93.5V427c0 50.5 40.1 85 91.2 85h227.2c51.1 0 91.2-34.5 91.2-85V0L326.6 104zM153.9 416.5c-17.7 0-32.4-15.1-32.4-32.8V240.8c0-17.7 14.7-32.5 32.4-32.5h140.7c17.7 0 32 14.8 32 32.5v123.5l51.1 52.3H153.9z"] }; +var faDelicious = { prefix: 'fab', iconName: 'delicious', icon: [448, 512, [], "f1a5", "M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1.5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3 1 1.1 2.1 2.2 3.3 3.3 5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12zM416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192v176z"] }; +var faDeploydog = { prefix: 'fab', iconName: 'deploydog', icon: [512, 512, [], "f38e", "M382.2 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.6 0-33.2 16.4-33.2 32.6zM188.5 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.7 0-33.2 16.4-33.2 32.6zM448 96c17.5 0 32 14.4 32 32v256c0 17.5-14.4 32-32 32H64c-17.5 0-32-14.4-32-32V128c0-17.5 14.4-32 32-32h384m0-32H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h384c35.2 0 64-28.8 64-64V128c0-35.2-28.8-64-64-64z"] }; +var faDeskpro = { prefix: 'fab', iconName: 'deskpro', icon: [480, 512, [], "f38f", "M205.9 512l31.1-38.4c12.3-.2 25.6-1.4 36.5-6.6 38.9-18.6 38.4-61.9 38.3-63.8-.1-5-.8-4.4-28.9-37.4H362c-.2 50.1-7.3 68.5-10.2 75.7-9.4 23.7-43.9 62.8-95.2 69.4-8.7 1.1-32.8 1.2-50.7 1.1zm200.4-167.7c38.6 0 58.5-13.6 73.7-30.9l-175.5-.3-17.4 31.3 119.2-.1zm-43.6-223.9v168.3h-73.5l-32.7 55.5H250c-52.3 0-58.1-56.5-58.3-58.9-1.2-13.2-21.3-11.6-20.1 1.8 1.4 15.8 8.8 40 26.4 57.1h-91c-25.5 0-110.8-26.8-107-114V16.9C0 .9 9.7.3 15 .1h82c.2 0 .3.1.5.1 4.3-.4 50.1-2.1 50.1 43.7 0 13.3 20.2 13.4 20.2 0 0-18.2-5.5-32.8-15.8-43.7h84.2c108.7-.4 126.5 79.4 126.5 120.2zm-132.5 56l64 29.3c13.3-45.5-42.2-71.7-64-29.3z"] }; +var faDeviantart = { prefix: 'fab', iconName: 'deviantart', icon: [320, 512, [], "f1bd", "M320 93.2l-98.2 179.1 7.4 9.5H320v127.7H159.1l-13.5 9.2-43.7 84c-.3 0-8.6 8.6-9.2 9.2H0v-93.2l93.2-179.4-7.4-9.2H0V102.5h156l13.5-9.2 43.7-84c.3 0 8.6-8.6 9.2-9.2H320v93.1z"] }; +var faDigg = { prefix: 'fab', iconName: 'digg', icon: [512, 512, [], "f1a6", "M81.7 172.3H0v174.4h132.7V96h-51v76.3zm0 133.4H50.9v-92.3h30.8v92.3zm297.2-133.4v174.4h81.8v28.5h-81.8V416H512V172.3H378.9zm81.8 133.4h-30.8v-92.3h30.8v92.3zm-235.6 41h82.1v28.5h-82.1V416h133.3V172.3H225.1v174.4zm51.2-133.3h30.8v92.3h-30.8v-92.3zM153.3 96h51.3v51h-51.3V96zm0 76.3h51.3v174.4h-51.3V172.3z"] }; +var faDigitalOcean = { prefix: 'fab', iconName: 'digital-ocean', icon: [512, 512, [], "f391", "M256 504v-96.1c101.8 0 180.8-100.9 141.7-208-14.3-39.6-46.1-71.4-85.8-85.7-107.1-38.8-208.1 39.9-208.1 141.7H8C8 93.7 164.9-32.8 335 20.3c74.2 23.3 133.6 82.4 156.6 156.6C544.8 347.2 418.6 504 256 504zm.3-191.4h-95.6v95.6h95.6v-95.6zm-95.6 95.6H87v73.6h73.7v-73.6zM87 346.6H25.4v61.6H87v-61.6z"] }; +var faDiscord = { prefix: 'fab', iconName: 'discord', icon: [448, 512, [], "f392", "M297.216 243.2c0 15.616-11.52 28.416-26.112 28.416-14.336 0-26.112-12.8-26.112-28.416s11.52-28.416 26.112-28.416c14.592 0 26.112 12.8 26.112 28.416zm-119.552-28.416c-14.592 0-26.112 12.8-26.112 28.416s11.776 28.416 26.112 28.416c14.592 0 26.112-12.8 26.112-28.416.256-15.616-11.52-28.416-26.112-28.416zM448 52.736V512c-64.494-56.994-43.868-38.128-118.784-107.776l13.568 47.36H52.48C23.552 451.584 0 428.032 0 398.848V52.736C0 23.552 23.552 0 52.48 0h343.04C424.448 0 448 23.552 448 52.736zm-72.96 242.688c0-82.432-36.864-149.248-36.864-149.248-36.864-27.648-71.936-26.88-71.936-26.88l-3.584 4.096c43.52 13.312 63.744 32.512 63.744 32.512-60.811-33.329-132.244-33.335-191.232-7.424-9.472 4.352-15.104 7.424-15.104 7.424s21.248-20.224 67.328-33.536l-2.56-3.072s-35.072-.768-71.936 26.88c0 0-36.864 66.816-36.864 149.248 0 0 21.504 37.12 78.08 38.912 0 0 9.472-11.52 17.152-21.248-32.512-9.728-44.8-30.208-44.8-30.208 3.766 2.636 9.976 6.053 10.496 6.4 43.21 24.198 104.588 32.126 159.744 8.96 8.96-3.328 18.944-8.192 29.44-15.104 0 0-12.8 20.992-46.336 30.464 7.68 9.728 16.896 20.736 16.896 20.736 56.576-1.792 78.336-38.912 78.336-38.912z"] }; +var faDiscourse = { prefix: 'fab', iconName: 'discourse', icon: [448, 512, [], "f393", "M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z"] }; +var faDochub = { prefix: 'fab', iconName: 'dochub', icon: [416, 512, [], "f394", "M397.9 160H256V19.6L397.9 160zM304 192v130c0 66.8-36.5 100.1-113.3 100.1H96V84.8h94.7c12 0 23.1.8 33.1 2.5v-84C212.9 1.1 201.4 0 189.2 0H0v512h189.2C329.7 512 400 447.4 400 318.1V192h-96z"] }; +var faDocker = { prefix: 'fab', iconName: 'docker', icon: [640, 512, [], "f395", "M349.9 236.3h-66.1v-59.4h66.1v59.4zm0-204.3h-66.1v60.7h66.1V32zm78.2 144.8H362v59.4h66.1v-59.4zm-156.3-72.1h-66.1v60.1h66.1v-60.1zm78.1 0h-66.1v60.1h66.1v-60.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4.4 67.6.1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1l-13.3-8.9zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm-78.1-72.1h-66.1v60.1h66.1v-60.1z"] }; +var faDraft2digital = { prefix: 'fab', iconName: 'draft2digital', icon: [480, 512, [], "f396", "M369.9 425.4V371l47.1 27.2-47.1 27.2zM82.4 380.6c25.5-27.3 97.7-104.7 150.9-170 35.1-43.1 40.3-82.4 28.4-112.7-7.4-18.8-17.5-30.2-24.3-35.7 45.3 2.1 68 23.4 82.2 38.3 0 0 42.4 48.2 5.8 113.3-37 65.9-110.9 147.5-128.5 166.7H82.4zm51.8-219.2c0 12.4-10 22.4-22.4 22.4-12.4 0-22.4-10-22.4-22.4 0-12.4 10-22.4 22.4-22.4 12.4 0 22.4 10.1 22.4 22.4M336 315.9v64.7h-91.3c30.8-35 81.8-95.9 111.8-149.3 35.2-62.6 16.1-123.4-12.8-153.3-4.4-4.6-62.2-62.9-166-41.2-59.1 12.4-89.4 43.4-104.3 67.3-13.1 20.9-17 39.8-18.2 47.7-5.5 33 19.4 67.1 56.7 67.1 31.7 0 57.3-25.7 57.3-57.4 0-27.1-19.7-52.1-48-56.8 1.8-7.3 17.7-21.1 26.3-24.7 41.1-17.3 78 5.2 83.3 33.5 8.3 44.3-37.1 90.4-69.7 127.6C84.5 328.1 18.3 396.8 0 415.9l336-.1V480l144-81.9-144-82.2z"] }; +var faDribbble = { prefix: 'fab', iconName: 'dribbble', icon: [512, 512, [], "f17d", "M256 8C119.252 8 8 119.252 8 256s111.252 248 248 248 248-111.252 248-248S392.748 8 256 8zm163.97 114.366c29.503 36.046 47.369 81.957 47.835 131.955-6.984-1.477-77.018-15.682-147.502-6.818-5.752-14.041-11.181-26.393-18.617-41.614 78.321-31.977 113.818-77.482 118.284-83.523zM396.421 97.87c-3.81 5.427-35.697 48.286-111.021 76.519-34.712-63.776-73.185-116.168-79.04-124.008 67.176-16.193 137.966 1.27 190.061 47.489zm-230.48-33.25c5.585 7.659 43.438 60.116 78.537 122.509-99.087 26.313-186.36 25.934-195.834 25.809C62.38 147.205 106.678 92.573 165.941 64.62zM44.17 256.323c0-2.166.043-4.322.108-6.473 9.268.19 111.92 1.513 217.706-30.146 6.064 11.868 11.857 23.915 17.174 35.949-76.599 21.575-146.194 83.527-180.531 142.306C64.794 360.405 44.17 310.73 44.17 256.323zm81.807 167.113c22.127-45.233 82.178-103.622 167.579-132.756 29.74 77.283 42.039 142.053 45.189 160.638-68.112 29.013-150.015 21.053-212.768-27.882zm248.38 8.489c-2.171-12.886-13.446-74.897-41.152-151.033 66.38-10.626 124.7 6.768 131.947 9.055-9.442 58.941-43.273 109.844-90.795 141.978z"] }; +var faDribbbleSquare = { prefix: 'fab', iconName: 'dribbble-square', icon: [448, 512, [], "f397", "M90.2 228.2c8.9-42.4 37.4-77.7 75.7-95.7 3.6 4.9 28 38.8 50.7 79-64 17-120.3 16.8-126.4 16.7zM314.6 154c-33.6-29.8-79.3-41.1-122.6-30.6 3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4zM140.1 364c40.5 31.6 93.3 36.7 137.3 18-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6zm98.8-108.2c-3.4-7.8-7.2-15.5-11.1-23.2C159.6 253 93.4 252.2 87.4 252c0 1.4-.1 2.8-.1 4.2 0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8zm34.9 16.3c17.9 49.1 25.1 89.1 26.5 97.4 30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8zm-20.3-48.4c4.8 9.8 8.3 17.8 12 26.8 45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 176c0-88.2-71.8-160-160-160S64 167.8 64 256s71.8 160 160 160 160-71.8 160-160z"] }; +var faDropbox = { prefix: 'fab', iconName: 'dropbox', icon: [528, 512, [], "f16b", "M264.4 116.3l-132 84.3 132 84.3-132 84.3L0 284.1l132.3-84.3L0 116.3 132.3 32l132.1 84.3zM131.6 395.7l132-84.3 132 84.3-132 84.3-132-84.3zm132.8-111.6l132-84.3-132-83.6L395.7 32 528 116.3l-132.3 84.3L528 284.8l-132.3 84.3-131.3-85z"] }; +var faDrupal = { prefix: 'fab', iconName: 'drupal', icon: [448, 512, [], "f1a9", "M319.5 114.7c-22.2-14-43.5-19.5-64.7-33.5-13-8.8-31.3-30-46.5-48.3-2.7 29.3-11.5 41.2-22 49.5-21.3 17-34.8 22.2-53.5 32.3C117 123 32 181.5 32 290.5 32 399.7 123.8 480 225.8 480 327.5 480 416 406 416 294c0-112.3-83-171-96.5-179.3zm2.5 325.6c-20.1 20.1-90.1 28.7-116.7 4.2-4.8-4.8.3-12 6.5-12 0 0 17 13.3 51.5 13.3 27 0 46-7.7 54.5-14 6.1-4.6 8.4 4.3 4.2 8.5zm-54.5-52.6c8.7-3.6 29-3.8 36.8 1.3 4.1 2.8 16.1 18.8 6.2 23.7-8.4 4.2-1.2-15.7-26.5-15.7-14.7 0-19.5 5.2-26.7 11-7 6-9.8 8-12.2 4.7-6-8.2 15.9-22.3 22.4-25zM360 405c-15.2-1-45.5-48.8-65-49.5-30.9-.9-104.1 80.7-161.3 42-38.8-26.6-14.6-104.8 51.8-105.2 49.5-.5 83.8 49 108.5 48.5 21.3-.3 61.8-41.8 81.8-41.8 48.7 0 23.3 109.3-15.8 106z"] }; +var faDyalog = { prefix: 'fab', iconName: 'dyalog', icon: [416, 512, [], "f399", "M0 32v119.2h64V96h107.2C284.6 96 352 176.2 352 255.9 352 332 293.4 416 171.2 416H0v64h171.2C331.9 480 416 367.3 416 255.9c0-58.7-22.1-113.4-62.3-154.3C308.9 56 245.7 32 171.2 32H0z"] }; +var faEarlybirds = { prefix: 'fab', iconName: 'earlybirds', icon: [480, 512, [], "f39a", "M313.2 47.5c1.2-13 21.3-14 36.6-8.7.9.3 26.2 9.7 19 15.2-27.9-7.4-56.4 18.2-55.6-6.5zm-201 6.9c30.7-8.1 62 20 61.1-7.1-1.3-14.2-23.4-15.3-40.2-9.6-1 .3-28.7 10.5-20.9 16.7zM319.4 160c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-159.7 0c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm318.5 163.2c-9.9 24-40.7 11-63.9-1.2-13.5 69.1-58.1 111.4-126.3 124.2.3.9-2-.1 24 1 33.6 1.4 63.8-3.1 97.4-8-19.8-13.8-11.4-37.1-9.8-38.1 1.4-.9 14.7 1.7 21.6 11.5 8.6-12.5 28.4-14.8 30.2-13.6 1.6 1.1 6.6 20.9-6.9 34.6 4.7-.9 8.2-1.6 9.8-2.1 2.6-.8 17.7 11.3 3.1 13.3-14.3 2.3-22.6 5.1-47.1 10.8-45.9 10.7-85.9 11.8-117.7 12.8l1 11.6c3.8 18.1-23.4 24.3-27.6 6.2.8 17.9-27.1 21.8-28.4-1l-.5 5.3c-.7 18.4-28.4 17.9-28.3-.6-7.5 13.5-28.1 6.8-26.4-8.5l1.2-12.4c-36.7.9-59.7 3.1-61.8 3.1-20.9 0-20.9-31.6 0-31.6 2.4 0 27.7 1.3 63.2 2.8-61.1-15.5-103.7-55-114.9-118.2-25 12.8-57.5 26.8-68.2.8-10.5-25.4 21.5-42.6 66.8-73.4.7-6.6 1.6-13.3 2.7-19.8-14.4-19.6-11.6-36.3-16.1-60.4-16.8 2.4-23.2-9.1-23.6-23.1.3-7.3 2.1-14.9 2.4-15.4 1.1-1.8 10.1-2 12.7-2.6 6-31.7 50.6-33.2 90.9-34.5 19.7-21.8 45.2-41.5 80.9-48.3C203.3 29 215.2 8.5 216.2 8c1.7-.8 21.2 4.3 26.3 23.2 5.2-8.8 18.3-11.4 19.6-10.7 1.1.6 6.4 15-4.9 25.9 40.3 3.5 72.2 24.7 96 50.7 36.1 1.5 71.8 5.9 77.1 34 2.7.6 11.6.8 12.7 2.6.3.5 2.1 8.1 2.4 15.4-.5 13.9-6.8 25.4-23.6 23.1-3.2 17.3-2.7 32.9-8.7 47.7 2.4 11.7 4 23.8 4.8 36.4 37 25.4 70.3 42.5 60.3 66.9zM207.4 159.9c.9-44-37.9-42.2-78.6-40.3-21.7 1-38.9 1.9-45.5 13.9-11.4 20.9 5.9 92.9 23.2 101.2 9.8 4.7 73.4 7.9 86.3-7.1 8.2-9.4 15-49.4 14.6-67.7zm52 58.3c-4.3-12.4-6-30.1-15.3-32.7-2-.5-9-.5-11 0-10 2.8-10.8 22.1-17 37.2 15.4 0 19.3 9.7 23.7 9.7 4.3 0 6.3-11.3 19.6-14.2zm135.7-84.7c-6.6-12.1-24.8-12.9-46.5-13.9-40.2-1.9-78.2-3.8-77.3 40.3-.5 18.3 5 58.3 13.2 67.8 13 14.9 76.6 11.8 86.3 7.1 15.8-7.6 36.5-78.9 24.3-101.3z"] }; +var faEbay = { prefix: 'fab', iconName: 'ebay', icon: [640, 512, [], "f4f4", "M405.2 263.8c-29.1.9-47.2 6.2-47.2 25.3 0 12.4 9.9 25.8 35 25.8 33.7 0 51.6-18.4 51.6-48.4v-3.3c-11.8 0-26.3.1-39.4.6m71.5 39.7c0 9.3.3 18.6 1 26.8h-29.8c-.8-6.9-1.1-13.6-1.1-20.2-16.1 19.8-35.3 25.5-61.9 25.5-39.5 0-60.6-20.9-60.6-45 0-35 28.8-47.3 78.6-48.4 13.7-.3 29-.4 41.7-.4v-3.4c0-23.4-15-33-41-33-19.3 0-33.6 8-35 21.8h-33.7c3.6-34.4 39.7-43.1 71.5-43.1 38.1 0 70.3 13.5 70.3 53.8v65.6zm-349-56.8c-2.3-54.7-87.5-56.6-94.4 0h94.4zm-95 21.4c3.5 58.3 79.2 57.4 91.2 21.6H157c-6.4 34.4-43 46.1-74.4 46.1-57.2 0-82.5-31.5-82.5-74 0-46.8 26.2-77.6 83-77.6 45.3 0 78.4 23.7 78.4 75.4v8.5H32.7zm211 45.7c29.8 0 50.2-21.5 50.2-53.8 0-32.4-20.4-53.8-50.2-53.8-29.6 0-50.2 21.4-50.2 53.8 0 32.3 20.6 53.8 50.2 53.8m-82.2-186h32.1v80.6c15.7-18.7 37.4-24.2 58.7-24.2 35.7 0 75.4 24.1 75.4 76.2 0 43.6-31.5 75.4-76 75.4-23.3 0-45.1-8.3-58.7-24.9 0 6.6-.4 13.2-1.1 19.5h-31.5c.5-10.2 1.1-22.8 1.1-33.1V127.8zM640 189.5l-99.2 194.8h-35.9l28.5-54.1-74.6-140.7h37.5l54.9 109.9L606 189.5h34z"] }; +var faEdge = { prefix: 'fab', iconName: 'edge', icon: [512, 512, [], "f282", "M25.714 228.163c.111-.162.23-.323.342-.485-.021.162-.045.323-.065.485h-.277zm460.572 15.508c0-44.032-7.754-84.465-28.801-122.405C416.498 47.879 343.912 8.001 258.893 8.001 118.962 7.724 40.617 113.214 26.056 227.679c42.429-61.312 117.073-121.376 220.375-124.966 0 0 109.666 0 99.419 104.957H169.997c6.369-37.386 18.554-58.986 34.339-78.926-75.048 34.893-121.85 96.096-120.742 188.315.83 71.448 50.124 144.836 120.743 171.976 83.357 31.847 192.776 7.2 240.132-21.324V363.307c-80.864 56.494-270.871 60.925-272.255-67.572h314.073v-52.064z"] }; +var faElementor = { prefix: 'fab', iconName: 'elementor', icon: [448, 512, [], "f430", "M425.6 32H22.4C10 32 0 42 0 54.4v403.2C0 470 10 480 22.4 480h403.2c12.4 0 22.4-10 22.4-22.4V54.4C448 42 438 32 425.6 32M164.3 355.5h-39.8v-199h39.8v199zm159.3 0H204.1v-39.8h119.5v39.8zm0-79.6H204.1v-39.8h119.5v39.8zm0-79.7H204.1v-39.8h119.5v39.8z"] }; +var faEmber = { prefix: 'fab', iconName: 'ember', icon: [640, 512, [], "f423", "M639.9 254.6c-1.1-10.7-10.7-6.8-10.7-6.8s-15.6 12.1-29.3 10.7c-13.7-1.3-9.4-32-9.4-32s3-28.1-5.1-30.4c-8.1-2.4-18 7.3-18 7.3s-12.4 13.7-18.3 31.2l-1.6.5s1.9-30.6-.3-37.6c-1.6-3.5-16.4-3.2-18.8 3s-14.2 49.2-15 67.2c0 0-23.1 19.6-43.3 22.8s-25-9.4-25-9.4 54.8-15.3 52.9-59.1c-1.9-43.8-44.2-27.6-49-24-4.6 3.5-29.4 18.4-36.6 59.7-.2 1.4-.7 7.5-.7 7.5s-21.2 14.2-33 18c0 0 33-55.6-7.3-80.9-18.3-11-32.8 12.1-32.8 12.1s54.5-60.7 42.5-112c-5.8-24.4-18-27.1-29.2-23.1-17 6.7-23.5 16.7-23.5 16.7s-22 32-27.1 79.5-12.6 105.1-12.6 105.1-10.5 10.2-20.2 10.7-5.4-28.7-5.4-28.7 7.5-44.6 7-52.1-1.1-11.6-9.9-14.2c-8.9-2.7-18.5 8.6-18.5 8.6s-25.5 38.7-27.7 44.6l-1.3 2.4-1.3-1.6s18-52.7.8-53.5c-17.2-.8-28.5 18.8-28.5 18.8s-19.6 32.8-20.4 36.5l-1.3-1.6s8.1-38.2 6.4-47.6c-1.6-9.4-10.5-7.5-10.5-7.5s-11.3-1.3-14.2 5.9-13.7 55.3-15 70.7c0 0-28.2 20.2-46.8 20.4-18.5.3-16.7-11.8-16.7-11.8s68-23.3 49.4-69.2c-8.3-11.8-18-15.5-31.7-15.3-13.7.3-30.3 8.6-41.3 33.3-5.3 11.8-6.8 23-7.8 31.5 0 0-12.3 2.4-18.8-2.9s-10 0-10 0-11.2 14-.1 18.3 28.1 6.1 28.1 6.1c1.6 7.5 6.2 19.5 19.6 29.7 20.2 15.3 58.8-1.3 58.8-1.3l15.9-8.8s.5 14.6 12.1 16.7c11.6 2.1 16.4 1 36.5-47.9 11.8-25 12.6-23.6 12.6-23.6l1.3-.3s-9.1 46.8-5.6 59.7C187.7 319.4 203 318 203 318s8.3 2.4 15-21.2c6.7-23.6 19.6-49.9 19.6-49.9h1.6s-5.6 48.1 3 63.7c8.6 15.6 30.9 5.3 30.9 5.3s15.6-7.8 18-10.2c0 0 18.5 15.8 44.6 12.9 58.3-11.5 79.1-25.9 79.1-25.9s10 24.4 41.1 26.7c35.5 2.7 54.8-18.6 54.8-18.6s-.3 13.5 12.1 18.6c12.4 5.1 20.7-22.8 20.7-22.8l20.7-57.2h1.9s1.1 37.3 21.5 43.2 47-13.7 47-13.7 6.4-3.5 5.3-14.3zm-578 5.3c.8-32 21.8-45.9 29-39 7.3 7 4.6 22-9.1 31.4-13.7 9.5-19.9 7.6-19.9 7.6zm272.8-123.8s19.1-49.7 23.6-25.5-40 96.2-40 96.2c.5-16.2 16.4-70.7 16.4-70.7zm22.8 138.4c-12.6 33-43.3 19.6-43.3 19.6s-3.5-11.8 6.4-44.9 33.3-20.2 33.3-20.2 16.2 12.4 3.6 45.5zm84.6-14.6s-3-10.5 8.1-30.6c11-20.2 19.6-9.1 19.6-9.1s9.4 10.2-1.3 25.5-26.4 14.2-26.4 14.2z"] }; +var faEmpire = { prefix: 'fab', iconName: 'empire', icon: [496, 512, [], "f1d1", "M287.6 54.2c-10.8-2.2-22.1-3.3-33.5-3.6V32.4c78.1 2.2 146.1 44 184.6 106.6l-15.8 9.1c-6.1-9.7-12.7-18.8-20.2-27.1l-18 15.5c-26-29.6-61.4-50.7-101.9-58.4l4.8-23.9zM53.4 322.4l23-7.7c-6.4-18.3-10-38.2-10-58.7s3.3-40.4 9.7-58.7l-22.7-7.7c3.6-10.8 8.3-21.3 13.6-31l-15.8-9.1C34 181 24.1 217.5 24.1 256s10 75 27.1 106.6l15.8-9.1c-5.3-10-9.7-20.3-13.6-31.1zM213.1 434c-40.4-8-75.8-29.1-101.9-58.7l-18 15.8c-7.5-8.6-14.4-17.7-20.2-27.4l-16 9.4c38.5 62.3 106.8 104.3 184.9 106.6v-18.3c-11.3-.3-22.7-1.7-33.5-3.6l4.7-23.8zM93.3 120.9l18 15.5c26-29.6 61.4-50.7 101.9-58.4l-4.7-23.8c10.8-2.2 22.1-3.3 33.5-3.6V32.4C163.9 34.6 95.9 76.4 57.4 139l15.8 9.1c6-9.7 12.6-18.9 20.1-27.2zm309.4 270.2l-18-15.8c-26 29.6-61.4 50.7-101.9 58.7l4.7 23.8c-10.8 1.9-22.1 3.3-33.5 3.6v18.3c78.1-2.2 146.4-44.3 184.9-106.6l-16.1-9.4c-5.7 9.7-12.6 18.8-20.1 27.4zM496 256c0 137-111 248-248 248S0 393 0 256 111 8 248 8s248 111 248 248zm-12.2 0c0-130.1-105.7-235.8-235.8-235.8S12.2 125.9 12.2 256 117.9 491.8 248 491.8 483.8 386.1 483.8 256zm-39-106.6l-15.8 9.1c5.3 9.7 10 20.2 13.6 31l-22.7 7.7c6.4 18.3 9.7 38.2 9.7 58.7s-3.6 40.4-10 58.7l23 7.7c-3.9 10.8-8.3 21-13.6 31l15.8 9.1C462 331 471.9 294.5 471.9 256s-9.9-75-27.1-106.6zm-183 177.7c16.3-3.3 30.4-11.6 40.7-23.5l51.2 44.8c11.9-13.6 21.3-29.3 27.1-46.8l-64.2-22.1c2.5-7.5 3.9-15.2 3.9-23.5s-1.4-16.1-3.9-23.5l64.5-22.1c-6.1-17.4-15.5-33.2-27.4-46.8l-51.2 44.8c-10.2-11.9-24.4-20.5-40.7-23.8l13.3-66.4c-8.6-1.9-17.7-2.8-27.1-2.8-9.4 0-18.5.8-27.1 2.8l13.3 66.4c-16.3 3.3-30.4 11.9-40.7 23.8l-51.2-44.8c-11.9 13.6-21.3 29.3-27.4 46.8l64.5 22.1c-2.5 7.5-3.9 15.2-3.9 23.5s1.4 16.1 3.9 23.5l-64.2 22.1c5.8 17.4 15.2 33.2 27.1 46.8l51.2-44.8c10.2 11.9 24.4 20.2 40.7 23.5l-13.3 66.7c8.6 1.7 17.7 2.8 27.1 2.8 9.4 0 18.5-1.1 27.1-2.8l-13.3-66.7z"] }; +var faEnvira = { prefix: 'fab', iconName: 'envira', icon: [448, 512, [], "f299", "M0 32c477.6 0 366.6 317.3 367.1 366.3L448 480h-26l-70.4-71.2c-39 4.2-124.4 34.5-214.4-37C47 300.3 52 214.7 0 32zm79.7 46c-49.7-23.5-5.2 9.2-5.2 9.2 45.2 31.2 66 73.7 90.2 119.9 31.5 60.2 79 139.7 144.2 167.7 65 28 34.2 12.5 6-8.5-28.2-21.2-68.2-87-91-130.2-31.7-60-61-118.6-144.2-158.1z"] }; +var faErlang = { prefix: 'fab', iconName: 'erlang', icon: [640, 512, [], "f39d", "M21.7 246.4c-.1 86.8 29 159.5 78.7 212.1H0v-405h87.2c-41.5 50.2-65.6 116.2-65.5 192.9zM640 53.6h-83.6c31.4 42.7 48.7 97.5 46.2 162.7.5 6 .5 11.7 0 24.1H230.2c-.2 109.7 38.9 194.9 138.6 195.3 68.5-.3 118-51 151.9-106.1l96.4 48.2c-17.4 30.9-36.5 57.8-57.9 80.8H640v-405zm-80.8 405s0-.1 0 0h-.2.2zm-3.1-405h.3l-.1-.1-.2.1zm-230.7 9.6c-45.9.1-85.1 33.5-89.2 83.2h169.9c-1.1-49.7-34.5-83.1-80.7-83.2z"] }; +var faEthereum = { prefix: 'fab', iconName: 'ethereum', icon: [320, 512, [], "f42e", "M311.9 260.8L160 353.6 8 260.8 160 0l151.9 260.8zM160 383.4L8 290.6 160 512l152-221.4-152 92.8z"] }; +var faEtsy = { prefix: 'fab', iconName: 'etsy', icon: [384, 512, [], "f2d7", "M384 348c-1.75 10.75-13.75 110-15.5 132-117.879-4.299-219.895-4.743-368.5 0v-25.5c45.457-8.948 60.627-8.019 61-35.25 1.793-72.322 3.524-244.143 0-322-1.029-28.46-12.13-26.765-61-36v-25.5c73.886 2.358 255.933 8.551 362.999-3.75-3.5 38.25-7.75 126.5-7.75 126.5H332C320.947 115.665 313.241 68 277.25 68h-137c-10.25 0-10.75 3.5-10.75 9.75V241.5c58 .5 88.5-2.5 88.5-2.5 29.77-.951 27.56-8.502 40.75-65.251h25.75c-4.407 101.351-3.91 61.829-1.75 160.25H257c-9.155-40.086-9.065-61.045-39.501-61.5 0 0-21.5-2-88-2v139c0 26 14.25 38.25 44.25 38.25H263c63.636 0 66.564-24.996 98.751-99.75H384z"] }; +var faExpeditedssl = { prefix: 'fab', iconName: 'expeditedssl', icon: [496, 512, [], "f23e", "M248 43.4C130.6 43.4 35.4 138.6 35.4 256S130.6 468.6 248 468.6 460.6 373.4 460.6 256 365.4 43.4 248 43.4zm-97.4 132.9c0-53.7 43.7-97.4 97.4-97.4s97.4 43.7 97.4 97.4v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6c0-82.1-124-82.1-124 0v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6zM389.7 380c0 9.7-8 17.7-17.7 17.7H124c-9.7 0-17.7-8-17.7-17.7V238.3c0-9.7 8-17.7 17.7-17.7h248c9.7 0 17.7 8 17.7 17.7V380zm-248-137.3v132.9c0 2.5-1.9 4.4-4.4 4.4h-8.9c-2.5 0-4.4-1.9-4.4-4.4V242.7c0-2.5 1.9-4.4 4.4-4.4h8.9c2.5 0 4.4 1.9 4.4 4.4zm141.7 48.7c0 13-7.2 24.4-17.7 30.4v31.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-31.6c-10.5-6.1-17.7-17.4-17.7-30.4 0-19.7 15.8-35.4 35.4-35.4s35.5 15.8 35.5 35.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 478.3C121 486.3 17.7 383 17.7 256S121 25.7 248 25.7 478.3 129 478.3 256 375 486.3 248 486.3z"] }; +var faFacebook = { prefix: 'fab', iconName: 'facebook', icon: [448, 512, [], "f09a", "M448 56.7v398.5c0 13.7-11.1 24.7-24.7 24.7H309.1V306.5h58.2l8.7-67.6h-67v-43.2c0-19.6 5.4-32.9 33.5-32.9h35.8v-60.5c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9h-58.4v67.6h58.4V480H24.7C11.1 480 0 468.9 0 455.3V56.7C0 43.1 11.1 32 24.7 32h398.5c13.7 0 24.8 11.1 24.8 24.7z"] }; +var faFacebookF = { prefix: 'fab', iconName: 'facebook-f', icon: [264, 512, [], "f39e", "M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"] }; +var faFacebookMessenger = { prefix: 'fab', iconName: 'facebook-messenger', icon: [448, 512, [], "f39f", "M224 32C15.9 32-77.5 278 84.6 400.6V480l75.7-42c142.2 39.8 285.4-59.9 285.4-198.7C445.8 124.8 346.5 32 224 32zm23.4 278.1L190 250.5 79.6 311.6l121.1-128.5 57.4 59.6 110.4-61.1-121.1 128.5z"] }; +var faFacebookSquare = { prefix: 'fab', iconName: 'facebook-square', icon: [448, 512, [], "f082", "M448 80v352c0 26.5-21.5 48-48 48h-85.3V302.8h60.6l8.7-67.6h-69.3V192c0-19.6 5.4-32.9 33.5-32.9H384V98.7c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9H184v67.6h60.9V480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z"] }; +var faFirefox = { prefix: 'fab', iconName: 'firefox', icon: [480, 512, [], "f269", "M478.1 235.3c-.7-4.5-1.4-7.1-1.4-7.1s-1.8 2-4.7 5.9c-.9-10.7-2.8-21.2-5.8-31.6-3.7-12.9-8.5-25.4-14.5-37.4-3.8-8-8.2-15.6-13.3-22.8-1.8-2.7-3.7-5.4-5.6-7.9-8.8-14.4-19-23.3-30.7-40-7.6-12.8-12.9-26.9-15.4-41.6-3.2 8.9-5.7 18-7.4 27.3-12.1-12.2-22.5-20.8-28.9-26.7C319.4 24.2 323 9.1 323 9.1S264.7 74.2 289.9 142c8.7 23 23.8 43.1 43.4 57.9 24.4 20.2 50.8 36 64.7 76.6-11.2-21.3-28.1-39.2-48.8-51.5 6.2 14.7 9.4 30.6 9.3 46.5 0 61-49.6 110.5-110.6 110.4-8.3 0-16.5-.9-24.5-2.8-9.5-1.8-18.7-4.9-27.4-9.3-12.9-7.8-24-18.1-32.8-30.3l-.2-.3 2 .7c4.6 1.6 9.2 2.8 14 3.7 18.7 4 38.3 1.7 55.6-6.6 17.5-9.7 28-16.9 36.6-14h.2c8.4 2.7 15-5.5 9-14-10.4-13.4-27.4-20-44.2-17-17.5 2.5-33.5 15-56.4 2.9-1.5-.8-2.9-1.6-4.3-2.5-1.6-.9 4.9 1.3 3.4.3-5-2.5-9.8-5.4-14.4-8.6-.3-.3 3.5 1.1 3.1.8-5.9-4-11-9.2-15-15.2-4.1-7.4-4.5-16.4-1-24.1 2.1-3.8 5.4-6.9 9.3-8.7 3 1.5 4.8 2.6 4.8 2.6s-1.3-2.5-2.1-3.8c.3-.1.5 0 .8-.2 2.6 1.1 8.3 4 11.4 5.8 2.1 1.1 3.8 2.7 5.2 4.7 0 0 1-.5.3-2.7-1.1-2.7-2.9-5-5.4-6.6h.2c2.3 1.2 4.5 2.6 6.6 4.1 1.9-4.4 2.8-9.2 2.6-14 .2-2.6-.2-5.3-1.1-7.8-.8-1.6.5-2.2 1.9-.5-.2-1.3-.7-2.5-1.2-3.7v-.1s.8-1.1 1.2-1.5c1-1 2.1-1.9 3.4-2.7 7.2-4.5 14.8-8.4 22.7-11.6 6.4-2.8 11.7-4.9 12.8-5.6 1.6-1 3.1-2.2 4.5-3.5 5.3-4.5 9-10.8 10.2-17.7.1-.9.2-1.8.3-2.8v-1.5c-.9-3.5-6.9-6.1-38.4-9.1-11.1-1.8-20-10.1-22.5-21.1v.1c-.4 1.1-.9 2.3-1.3 3.5.4-1.2.8-2.3 1.3-3.5v-.2c6-15.7 16.8-29.1 30.8-38.3.8-.7-3.2.2-2.4-.5 2.7-1.3 5.4-2.5 8.2-3.5 1.4-.6-6-3.4-12.6-2.7-4 .2-8 1.2-11.7 2.8 1.6-1.3 6.2-3.1 5.1-3.1-8.4 1.6-16.5 4.7-23.9 9 0-.8.1-1.5.5-2.2-5.9 2.5-11 6.5-15 11.5.1-.9.2-1.8.2-2.7-2.7 2-5.2 4.3-7.3 6.9l-.1.1c-17.4-6.7-36.3-8.3-54.6-4.7l-.2-.1h.2c-3.8-3.1-7.1-6.7-9.7-10.9l-.2.1-.4-.2c-1.2-1.8-2.4-3.8-3.7-6-.9-1.6-1.8-3.4-2.7-5.2 0-.1-.1-.2-.2-.2-.4 0-.6 1.7-.9 1.3v-.1c-3.2-8.3-4.7-17.2-4.4-26.2l-.2.1c-5.1 3.5-9 8.6-11.1 14.5-.9 2.1-1.6 3.3-2.2 4.5v-.5c.1-1.1.6-3.3.5-3.1-.1.2-.2.3-.3.4-1.5 1.7-2.9 3.7-3.9 5.8-.9 1.9-1.7 3.9-2.3 5.9-.1.3 0-.3 0-1s.1-2 0-1.7l-.3.7c-6.7 14.9-10.9 30.8-12.4 47.1-.4 2.8-.6 5.6-.5 8.3v.2c-4.8 5.2-9 11-12.7 17.1-12.1 20.4-21.1 42.5-26.8 65.6 4-8.8 8.8-17.2 14.3-25.1C5.5 228.5 0 257.4 0 286.6c1.8-8.6 4.2-17 7-25.3-1.7 34.5 4.9 68.9 19.4 100.3 19.4 43.5 51.6 80 92.3 104.7 16.6 11.2 34.7 19.9 53.8 25.8 2.5.9 5.1 1.8 7.7 2.7-.8-.3-1.6-.7-2.4-1 22.6 6.8 46.2 10.3 69.8 10.3 83.7 0 111.3-31.9 113.8-35 4.1-3.7 7.5-8.2 9.9-13.3 1.6-.7 3.2-1.4 4.9-2.1l1-.5 1.9-.9c12.6-5.9 24.5-13.4 35.3-22.1 16.3-11.7 27.9-28.7 32.9-48.1 3-7.1 3.1-15 .4-22.2.9-1.4 1.7-2.8 2.7-4.3 18-28.9 28.2-61.9 29.6-95.9v-2.8c0-7.3-.6-14.5-1.9-21.6z"] }; +var faFirstOrder = { prefix: 'fab', iconName: 'first-order', icon: [448, 512, [], "f2b0", "M12.9 229.2c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4h-.2zM224 96.6c-7.1 0-14.6.6-21.4 1.7l3.7 67.4-22-64c-14.3 3.7-27.7 9.4-40 16.6l29.4 61.4-45.1-50.9c-11.4 8.9-21.7 19.1-30.6 30.9l50.6 45.4-61.1-29.7c-7.1 12.3-12.9 25.7-16.6 40l64.3 22.6-68-4c-.9 7.1-1.4 14.6-1.4 22s.6 14.6 1.4 21.7l67.7-4-64 22.6c3.7 14.3 9.4 27.7 16.6 40.3l61.1-29.7L97.7 352c8.9 11.7 19.1 22.3 30.9 30.9l44.9-50.9-29.5 61.4c12.3 7.4 25.7 13.1 40 16.9l22.3-64.6-4 68c7.1 1.1 14.6 1.7 21.7 1.7 7.4 0 14.6-.6 21.7-1.7l-4-68.6 22.6 65.1c14.3-4 27.7-9.4 40-16.9L274.9 332l44.9 50.9c11.7-8.9 22-19.1 30.6-30.9l-50.6-45.1 61.1 29.4c7.1-12.3 12.9-25.7 16.6-40.3l-64-22.3 67.4 4c1.1-7.1 1.4-14.3 1.4-21.7s-.3-14.9-1.4-22l-67.7 4 64-22.3c-3.7-14.3-9.1-28-16.6-40.3l-60.9 29.7 50.6-45.4c-8.9-11.7-19.1-22-30.6-30.9l-45.1 50.9 29.4-61.1c-12.3-7.4-25.7-13.1-40-16.9L241.7 166l4-67.7c-7.1-1.2-14.3-1.7-21.7-1.7zM443.4 128v256L224 512 4.6 384V128L224 0l219.4 128zm-17.1 10.3L224 20.9 21.7 138.3v235.1L224 491.1l202.3-117.7V138.3zM224 37.1l187.7 109.4v218.9L224 474.9 36.3 365.4V146.6L224 37.1zm0 50.9c-92.3 0-166.9 75.1-166.9 168 0 92.6 74.6 167.7 166.9 167.7 92 0 166.9-75.1 166.9-167.7 0-92.9-74.9-168-166.9-168z"] }; +var faFirstOrderAlt = { prefix: 'fab', iconName: 'first-order-alt', icon: [496, 512, [], "f50a", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 488.21C115.34 496.21 7.79 388.66 7.79 256S115.34 15.79 248 15.79 488.21 123.34 488.21 256 380.66 496.21 248 496.21zm0-459.92C126.66 36.29 28.29 134.66 28.29 256S126.66 475.71 248 475.71 467.71 377.34 467.71 256 369.34 36.29 248 36.29zm0 431.22c-116.81 0-211.51-94.69-211.51-211.51S131.19 44.49 248 44.49 459.51 139.19 459.51 256 364.81 467.51 248 467.51zm186.23-162.98a191.613 191.613 0 0 1-20.13 48.69l-74.13-35.88 61.48 54.82a193.515 193.515 0 0 1-37.2 37.29l-54.8-61.57 35.88 74.27a190.944 190.944 0 0 1-48.63 20.23l-27.29-78.47 4.79 82.93c-8.61 1.18-17.4 1.8-26.33 1.8s-17.72-.62-26.33-1.8l4.76-82.46-27.15 78.03a191.365 191.365 0 0 1-48.65-20.2l35.93-74.34-54.87 61.64a193.85 193.85 0 0 1-37.22-37.28l61.59-54.9-74.26 35.93a191.638 191.638 0 0 1-20.14-48.69l77.84-27.11-82.23 4.76c-1.16-8.57-1.78-17.32-1.78-26.21 0-9 .63-17.84 1.82-26.51l82.38 4.77-77.94-27.16a191.726 191.726 0 0 1 20.23-48.67l74.22 35.92-61.52-54.86a193.85 193.85 0 0 1 37.28-37.22l54.76 61.53-35.83-74.17a191.49 191.49 0 0 1 48.65-20.13l26.87 77.25-4.71-81.61c8.61-1.18 17.39-1.8 26.32-1.8s17.71.62 26.32 1.8l-4.74 82.16 27.05-77.76c17.27 4.5 33.6 11.35 48.63 20.17l-35.82 74.12 54.72-61.47a193.13 193.13 0 0 1 37.24 37.23l-61.45 54.77 74.12-35.86a191.515 191.515 0 0 1 20.2 48.65l-77.81 27.1 82.24-4.75c1.19 8.66 1.82 17.5 1.82 26.49 0 8.88-.61 17.63-1.78 26.19l-82.12-4.75 77.72 27.09z"] }; +var faFirstdraft = { prefix: 'fab', iconName: 'firstdraft', icon: [384, 512, [], "f3a1", "M384 192h-64v128H192v128H0v-25.6h166.4v-128h128v-128H384V192zm-25.6 38.4v128h-128v128H64V512h192V384h128V230.4h-25.6zm25.6 192h-89.6V512H320v-64h64v-25.6zM0 0v384h128V256h128V128h128V0H0z"] }; +var faFlickr = { prefix: 'fab', iconName: 'flickr', icon: [448, 512, [], "f16e", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5zm159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5z"] }; +var faFlipboard = { prefix: 'fab', iconName: 'flipboard', icon: [448, 512, [], "f44d", "M0 32v448h448V32H0zm358.4 179.2h-89.6v89.6h-89.6v89.6H89.6V121.6h268.8v89.6z"] }; +var faFly = { prefix: 'fab', iconName: 'fly', icon: [384, 512, [], "f417", "M197.8 427.8c12.9 11.7 33.7 33.3 33.2 50.7 0 .8-.1 1.6-.1 2.5-1.8 19.8-18.8 31.1-39.1 31-25-.1-39.9-16.8-38.7-35.8 1-16.2 20.5-36.7 32.4-47.6 2.3-2.1 2.7-2.7 5.6-3.6 3.4 0 3.9.3 6.7 2.8zM331.9 67.3c-16.3-25.7-38.6-40.6-63.3-52.1C243.1 4.5 214-.2 192 0c-44.1 0-71.2 13.2-81.1 17.3C57.3 45.2 26.5 87.2 28 158.6c7.1 82.2 97 176 155.8 233.8 1.7 1.6 4.5 4.5 6.2 5.1l3.3.1c2.1-.7 1.8-.5 3.5-2.1 52.3-49.2 140.7-145.8 155.9-215.7 7-39.2 3.1-72.5-20.8-112.5zM186.8 351.9c-28-51.1-65.2-130.7-69.3-189-3.4-47.5 11.4-131.2 69.3-136.7v325.7zM328.7 180c-16.4 56.8-77.3 128-118.9 170.3C237.6 298.4 275 217 277 158.4c1.6-45.9-9.8-105.8-48-131.4 88.8 18.3 115.5 98.1 99.7 153z"] }; +var faFontAwesome = { prefix: 'fab', iconName: 'font-awesome', icon: [448, 512, [], "f2b4", "M397.8 32H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-45.4 284.3c0 4.2-3.6 6-7.8 7.8-16.7 7.2-34.6 13.7-53.8 13.7-26.9 0-39.4-16.7-71.7-16.7-23.3 0-47.8 8.4-67.5 17.3-1.2.6-2.4.6-3.6 1.2V385c0 1.8 0 3.6-.6 4.8v1.2c-2.4 8.4-10.2 14.3-19.1 14.3-11.3 0-20.3-9-20.3-20.3V166.4c-7.8-6-13.1-15.5-13.1-26.3 0-18.5 14.9-33.5 33.5-33.5 18.5 0 33.5 14.9 33.5 33.5 0 10.8-4.8 20.3-13.1 26.3v18.5c1.8-.6 3.6-1.2 5.4-2.4 18.5-7.8 40.6-14.3 61.5-14.3 22.7 0 40.6 6 60.9 13.7 4.2 1.8 8.4 2.4 13.1 2.4 22.7 0 47.8-16.1 53.8-16.1 4.8 0 9 3.6 9 7.8v140.3z"] }; +var faFontAwesomeAlt = { prefix: 'fab', iconName: 'font-awesome-alt', icon: [448, 512, [], "f35c", "M397.8 67.8c7.8 0 14.3 6.6 14.3 14.3v347.6c0 7.8-6.6 14.3-14.3 14.3H50.2c-7.8 0-14.3-6.6-14.3-14.3V82.2c0-7.8 6.6-14.3 14.3-14.3h347.6m0-35.9H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-58.5 139.2c-6 0-29.9 15.5-52.6 15.5-4.2 0-8.4-.6-12.5-2.4-19.7-7.8-37-13.7-59.1-13.7-20.3 0-41.8 6.6-59.7 13.7-1.8.6-3.6 1.2-4.8 1.8v-17.9c7.8-6 12.5-14.9 12.5-25.7 0-17.9-14.3-32.3-32.3-32.3s-32.3 14.3-32.3 32.3c0 10.2 4.8 19.7 12.5 25.7v212.1c0 10.8 9 19.7 19.7 19.7 9 0 16.1-6 18.5-13.7V385c.6-1.8.6-3 .6-4.8V336c1.2 0 2.4-.6 3-1.2 19.7-8.4 43-16.7 65.7-16.7 31.1 0 43 16.1 69.3 16.1 18.5 0 36.4-6.6 52-13.7 4.2-1.8 7.2-3.6 7.2-7.8V178.3c1.8-4.1-2.3-7.1-7.7-7.1z"] }; +var faFontAwesomeFlag = { prefix: 'fab', iconName: 'font-awesome-flag', icon: [448, 512, [], "f425", "M444.373 359.424c0 7.168-6.144 10.24-13.312 13.312-28.672 12.288-59.392 23.552-92.16 23.552-46.08 0-67.584-28.672-122.88-28.672-39.936 0-81.92 14.336-115.712 29.696-2.048 1.024-4.096 1.024-6.144 2.048v77.824c0 21.405-16.122 34.816-33.792 34.816-19.456 0-34.816-15.36-34.816-34.816V102.4C12.245 92.16 3.029 75.776 3.029 57.344 3.029 25.6 28.629 0 60.373 0s57.344 25.6 57.344 57.344c0 18.432-8.192 34.816-22.528 45.056v31.744c4.124-1.374 58.768-28.672 114.688-28.672 65.27 0 97.676 27.648 126.976 27.648 38.912 0 81.92-27.648 92.16-27.648 8.192 0 15.36 6.144 15.36 13.312v240.64z"] }; +var faFontAwesomeLogoFull = { prefix: 'fab', iconName: 'font-awesome-logo-full', icon: [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"] }; +var faFonticons = { prefix: 'fab', iconName: 'fonticons', icon: [448, 512, [], "f280", "M0 32v448h448V32H0zm167.4 196h67.4l-11.1 37.3H168v112.9c0 5.8-2 6.7 3.2 7.3l43.5 4.1v25.1H84V389l21.3-2c5.2-.6 6.7-2.3 6.7-7.9V267.7c0-2.3-2.9-2.3-5.8-2.3H84V228h28v-21c0-49.6 26.5-70 77.3-70 34.1 0 64.7 8.2 64.7 52.8l-50.7 6.1c.3-18.7-4.4-23-16.3-23-18.4 0-19 9.9-19 27.4v23.3c0 2.4-3.5 4.4-.6 4.4zM364 414.7H261.3v-25.1l20.4-2.6c5.2-.6 7.6-1.7 7.6-7.3V271.8c0-4.1-2.9-6.7-6.7-7.9l-24.2-6.4 6.7-29.5h80.2v151.7c0 5.8-2.6 6.4 2.9 7.3l15.7 2.6v25.1zm-21.9-255.5l9 33.2-7.3 7.3-31.2-16.6-31.2 16.6-7.3-7.3 9-33.2-21.8-24.2 3.5-9.6h27.7l15.5-28h9.3l15.5 28h27.7l3.5 9.6-21.9 24.2z"] }; +var faFonticonsFi = { prefix: 'fab', iconName: 'fonticons-fi', icon: [384, 512, [], "f3a2", "M114.4 224h92.4l-15.2 51.2h-76.4V433c0 8-2.8 9.2 4.4 10l59.6 5.6V483H0v-35.2l29.2-2.8c7.2-.8 9.2-3.2 9.2-10.8V278.4c0-3.2-4-3.2-8-3.2H0V224h38.4v-28.8c0-68 36.4-96 106-96 46.8 0 88.8 11.2 88.8 72.4l-69.6 8.4c.4-25.6-6-31.6-22.4-31.6-25.2 0-26 13.6-26 37.6v32c0 3.2-4.8 6-.8 6zM384 483H243.2v-34.4l28-3.6c7.2-.8 10.4-2.4 10.4-10V287c0-5.6-4-9.2-9.2-10.8l-33.2-8.8 9.2-40.4h110v208c0 8-3.6 8.8 4 10l21.6 3.6V483zm-30-347.2l12.4 45.6-10 10-42.8-22.8-42.8 22.8-10-10 12.4-45.6-30-36.4 4.8-10h38L307.2 51H320l21.2 38.4h38l4.8 13.2-30 33.2z"] }; +var faFortAwesome = { prefix: 'fab', iconName: 'fort-awesome', icon: [512, 512, [], "f286", "M489.2 287.9h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6V146.2c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-6-8-4.6-11.7-4.6v-38c8.3-2 17.1-3.4 25.7-3.4 10.9 0 20.9 4.3 31.4 4.3 4.6 0 27.7-1.1 27.7-8v-60c0-2.6-2-4.6-4.6-4.6-5.1 0-15.1 4.3-24 4.3-9.7 0-20.9-4.3-32.6-4.3-8 0-16 1.1-23.7 2.9v-4.9c5.4-2.6 9.1-8.3 9.1-14.3 0-20.7-31.4-20.8-31.4 0 0 6 3.7 11.7 9.1 14.3v111.7c-3.7 0-11.7-1.4-11.7 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32H128v-32c0-2.6-2-4.6-4.6-4.6H96c-2.6 0-4.6 2-4.6 4.6v178.3H54.8v-32c0-2.6-2-4.6-4.6-4.6H22.8c-2.6 0-4.6 2-4.6 4.6V512h182.9v-96c0-72.6 109.7-72.6 109.7 0v96h182.9V292.5c.1-2.6-1.9-4.6-4.5-4.6zm-288.1-4.5c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64zm146.4 0c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64z"] }; +var faFortAwesomeAlt = { prefix: 'fab', iconName: 'fort-awesome-alt', icon: [512, 512, [], "f3a3", "M211.7 241.1v51.7c0 2.1-1.6 3.7-3.7 3.7h-22.2c-2.1 0-3.7-1.6-3.7-3.7v-51.7c0-2.1 1.6-3.7 3.7-3.7H208c2.1 0 3.7 1.6 3.7 3.7zm114.5-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7h22.2c2.1 0 3.7-1.6 3.7-3.7v-51.7c-.1-2.1-1.7-3.7-3.7-3.7zm-29.1 263.2c-.9.1-1.7.3-2.6.4-1 .2-2.1.3-3.1.5-.9.1-1.8.3-2.8.4-1 .1-2 .3-3 .4-1 .1-2 .2-2.9.3-1 .1-1.9.2-2.9.3-1 .1-2.1.2-3.1.3-.9.1-1.8.2-2.7.2-1.1.1-2.3.1-3.4.2-.8 0-1.7.1-2.5.1-1.3.1-2.6.1-3.9.1-.7 0-1.4.1-2.1.1-2 0-4 .1-6 .1s-4 0-6-.1c-.7 0-1.4 0-2.1-.1-1.3 0-2.6-.1-3.9-.1-.8 0-1.7-.1-2.5-.1-1.1-.1-2.3-.1-3.4-.2-.9-.1-1.8-.1-2.7-.2-1-.1-2.1-.2-3.1-.3-1-.1-1.9-.2-2.9-.3-1-.1-2-.2-2.9-.3-1-.1-2-.2-3-.4-.9-.1-1.8-.3-2.8-.4-1-.1-2.1-.3-3.1-.5-.9-.1-1.7-.3-2.6-.4-65.6-10.9-122.5-47.7-160-99.4-.2-.2-.3-.5-.5-.7-.8-1.1-1.6-2.2-2.3-3.3-.3-.4-.6-.8-.8-1.2-.7-1.1-1.4-2.1-2.1-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.4-2.1-2-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.3-2.2-2-3.3-.2-.4-.5-.8-.7-1.2-2.4-4-4.6-8.1-6.8-12.2-.1-.2-.2-.3-.3-.5-.6-1.1-1.1-2.2-1.7-3.3-.3-.6-.6-1.1-.8-1.7-.5-1-1-2.1-1.5-3.1-.3-.7-.6-1.3-.9-2-.5-1-.9-2-1.4-3l-.9-2.1c-.4-1-.9-2-1.3-3-.3-.7-.6-1.5-.9-2.2l-1.2-3c-.3-.8-.6-1.5-.9-2.3-.4-1-.8-2-1.1-3-.3-.9-.6-1.8-1-2.8-.6-1.6-1.1-3.3-1.7-4.9-.3-.9-.6-1.8-.9-2.8-.3-.9-.5-1.8-.8-2.7-.3-.9-.6-1.9-.8-2.8-.3-.9-.5-1.8-.8-2.7-.3-1-.5-1.9-.8-2.9-.2-.9-.5-1.8-.7-2.7-.3-1-.5-2-.7-3-.2-.9-.4-1.7-.6-2.6-.2-1.1-.5-2.2-.7-3.2-.2-.8-.3-1.6-.5-2.4-.3-1.3-.5-2.7-.8-4-.1-.6-.2-1.1-.3-1.7l-.9-5.7c-.1-.6-.2-1.3-.3-1.9-.2-1.3-.4-2.6-.5-3.9-.1-.8-.2-1.5-.3-2.3-.1-1.2-.3-2.4-.4-3.6-.1-.8-.2-1.6-.2-2.4-.1-1.2-.2-2.4-.3-3.5-.1-.8-.1-1.6-.2-2.4-.1-1.2-.2-2.4-.2-3.7 0-.8-.1-1.5-.1-2.3-.1-1.3-.1-2.7-.2-4 0-.7 0-1.3-.1-2 0-2-.1-4-.1-6 0-53.5 16.9-103 45.8-143.6 2.3-3.2 4.7-6.4 7.1-9.5 4.9-6.2 10.1-12.3 15.6-18 2.7-2.9 5.5-5.7 8.4-8.4 2.9-2.7 5.8-5.4 8.8-8 4.5-3.9 9.1-7.6 13.9-11.2 1.6-1.2 3.2-2.4 4.8-3.5C140 34.2 171.7 20.1 206 13c16.1-3.3 32.9-5 50-5s33.8 1.7 50 5c34.3 7 66 21.1 93.6 40.7 1.6 1.2 3.2 2.3 4.8 3.5 4.8 3.6 9.4 7.3 13.9 11.2 12 10.4 23 21.9 32.8 34.4 2.5 3.1 4.8 6.3 7.1 9.5C487.1 153 504 202.5 504 256c0 2 0 4-.1 6 0 .7 0 1.3-.1 2 0 1.3-.1 2.7-.2 4 0 .8-.1 1.5-.1 2.3-.1 1.2-.1 2.4-.2.7-.1.8-.1 1.6-.2 2.4-.1 1.2-.2 2.4-.3 3.5-.1.8-.2 1.6-.2 2.4-.1 1.2-.3 2.4-.4 3.6-.1.8-.2 1.5-.3 2.3-.2 1.3-.4 2.6-.5 3.9-.1.6-.2 1.3-.3 1.9l-.9 5.7c-.1.6-.2 1.1-.3 1.7-.2 1.3-.5 2.7-.8 4-.2.8-.3 1.6-.5 2.4-.2 1.1-.5 2.2-.7 3.2-.2.9-.4 1.7-.6 2.6-.2 1-.5 2-.7 3-.2.9-.5 1.8-.7 2.7-.3 1-.5 1.9-.8 2.9-.2.9-.5 1.8-.8 2.7-.3.9-.6 1.9-.8 2.8-.3.9-.5 1.8-.8 2.7-.3.9-.6 1.8-.9 2.8-.5 1.6-1.1 3.3-1.7 4.9-.3.9-.6 1.8-1 2.8-.4 1-.7 2-1.1 3-.3.8-.6 1.5-.9 2.3l-1.2 3c-.3.7-.6 1.5-.9 2.2-.4 1-.8 2-1.3 3l-.9 2.1c-.4 1-.9 2-1.4 3-.3.7-.6 1.3-.9 2-.5 1-1 2.1-1.5 3.1-.3.6-.6 1.1-.8 1.7-.6 1.1-1.1 2.2-1.7 3.3-.1.2-.2.3-.3.5-2.2 4.1-4.4 8.2-6.8 12.2-.2.4-.5.8-.7 1.2-.7 1.1-1.3 2.2-2 3.3-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2 3.2-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2.1 3.2-.3.4-.6.8-.8 1.2-.8 1.1-1.5 2.2-2.3 3.3-.2.2-.3.5-.5.7-37.6 54.7-94.5 91.4-160.1 102.4zm117.3-86.2c13-13 24.2-27.4 33.6-42.9v-71.3c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7V326h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-4.8-6.5-3.7-9.5-3.7v-30.7c6.7-1.6 13.8-2.8 20.8-2.8 8.8 0 16.8 3.5 25.4 3.5 3.7 0 22.4-.9 22.4-6.5V93.4c0-2.1-1.6-3.7-3.7-3.7-4.2 0-12.2 3.5-19.4 3.5-7.9 0-16.9-3.5-26.3-3.5-6.5 0-12.9.9-19.2 2.3v-3.9c4.4-2.1 7.4-6.7 7.4-11.5 0-16.8-25.4-16.8-25.4 0 0 4.8 3 9.5 7.4 11.5v90.2c-3 0-9.5-1.1-9.5 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v144H93.5v-25.8c0-2.1-1.6-3.7-3.7-3.7H67.7c-2.1 0-3.7 1.6-3.7 3.7v71.3c9.4 15.5 20.6 29.9 33.6 42.9 20.6 20.6 44.5 36.7 71.2 48 13.9 5.9 28.2 10.3 42.9 13.2v-75.8c0-58.6 88.6-58.6 88.6 0v75.8c14.7-2.9 29-7.4 42.9-13.2 26.7-11.3 50.6-27.4 71.2-48"] }; +var faForumbee = { prefix: 'fab', iconName: 'forumbee', icon: [448, 512, [], "f211", "M5.8 309.7C2 292.7 0 275.5 0 258.3 0 135 99.8 35 223.1 35c16.6 0 33.3 2 49.3 5.5C149 87.5 51.9 186 5.8 309.7zm392.9-189.2C385 103 369 87.8 350.9 75.2c-149.6 44.3-266.3 162.1-309.7 312 12.5 18.1 28 35.6 45.2 49 43.1-151.3 161.2-271.7 312.3-315.7zm15.8 252.7c15.2-25.1 25.4-53.7 29.5-82.8-79.4 42.9-145 110.6-187.6 190.3 30-4.4 58.9-15.3 84.6-31.3 35 13.1 70.9 24.3 107 33.6-9.3-36.5-20.4-74.5-33.5-109.8zm29.7-145.5c-2.6-19.5-7.9-38.7-15.8-56.8C290.5 216.7 182 327.5 137.1 466c18.1 7.6 37 12.5 56.6 15.2C240 367.1 330.5 274.4 444.2 227.7z"] }; +var faFoursquare = { prefix: 'fab', iconName: 'foursquare', icon: [368, 512, [], "f180", "M323.1 3H49.9C12.4 3 0 31.3 0 49.1v433.8c0 20.3 12.1 27.7 18.2 30.1 6.2 2.5 22.8 4.6 32.9-7.1C180 356.5 182.2 354 182.2 354c3.1-3.4 3.4-3.1 6.8-3.1h83.4c35.1 0 40.6-25.2 44.3-39.7l48.6-243C373.8 25.8 363.1 3 323.1 3zm-16.3 73.8l-11.4 59.7c-1.2 6.5-9.5 13.2-16.9 13.2H172.1c-12 0-20.6 8.3-20.6 20.3v13c0 12 8.6 20.6 20.6 20.6h90.4c8.3 0 16.6 9.2 14.8 18.2-1.8 8.9-10.5 53.8-11.4 58.8-.9 4.9-6.8 13.5-16.9 13.5h-73.5c-13.5 0-17.2 1.8-26.5 12.6 0 0-8.9 11.4-89.5 108.3-.9.9-1.8.6-1.8-.3V75.9c0-7.7 6.8-16.6 16.6-16.6h219c8.2 0 15.6 7.7 13.5 17.5z"] }; +var faFreeCodeCamp = { prefix: 'fab', iconName: 'free-code-camp', icon: [576, 512, [], "f2c5", "M69.3 144.5c-41 68.5-36.4 163 1 227C92.5 409.7 120 423.9 120 438c0 6.8-6 13-12.8 13C87.7 451 8 375.5 8 253.2c0-111.5 78-186 97.1-186 6 0 14.9 4.8 14.9 11.1 0 12.7-28.3 28.6-50.7 66.2zm195.8 213.8c4.5 1.8 12.3 5.2 12.3-1.2 0-2.7-2.2-2.9-4.3-3.6-8.5-3.4-14-7.7-19.1-15.2-8.2-12.1-10.1-24.2-10.1-38.6 0-32.1 44.2-37.9 44.2-70 0-12.3-7.7-15.9-7.7-19.3 0-2.2.7-2.2 2.9-2.2 8 0 19.1 13.3 22.5 19.8 2.2 4.6 2.4 6 2.4 11.1 0 7-.7 14.2-.7 21.3 0 27 31.9 19.8 31.9 6.8 0-6-3.6-11.6-3.6-17.4 0-.7 0-1.2.7-1.2 3.4 0 9.4 7.7 11.1 10.1 5.8 8.9 8.5 20.8 8.5 31.4 0 32.4-29.5 49-29.5 56 0 1 2.9 7.7 12.1 1.9 29.7-15.1 53.1-47.6 53.1-89.8 0-33.6-8.7-57.7-32.1-82.6-3.9-4.1-16.4-16.9-22.5-16.9-8.2 0 7.2 18.6 7.2 31.2 0 7.2-4.8 12.3-12.3 12.3-11.6 0-14.5-25.4-15.9-33.3-5.8-33.8-12.8-58.2-46.4-74.1-10.4-5-36.5-11.8-36.5-2.2 0 2.4 2.7 4.1 4.6 5.1 9.2 5.6 19.6 21.4 19.6 38.2 0 46.1-57.7 88.2-57.7 136.2-.2 40.3 28.1 72.6 65.3 86.2zM470.4 67c-6 0-14.4 6.5-14.4 12.6 0 8.7 12.1 19.6 17.6 25.4 81.6 85.1 78.6 214.3 17.6 291-7 8.9-35.3 35.3-35.3 43.5 0 5.1 8.2 11.4 13.2 11.4 25.4 0 98.8-80.8 98.8-185.7C568 145.9 491.8 67 470.4 67zm-42.3 323.1H167c-9.4 0-15.5 7.5-15.5 16.4 0 8.5 7 15.5 15.5 15.5h261.1c9.4 0 11.9-7.5 11.9-16.4 0-8.5-3.5-15.5-11.9-15.5z"] }; +var faFreebsd = { prefix: 'fab', iconName: 'freebsd', icon: [448, 512, [], "f3a4", "M303.7 96.2c11.1-11.1 115.5-77 139.2-53.2 23.7 23.7-42.1 128.1-53.2 139.2-11.1 11.1-39.4.9-63.1-22.9-23.8-23.7-34.1-52-22.9-63.1zM109.9 68.1C73.6 47.5 22 24.6 5.6 41.1c-16.6 16.6 7.1 69.4 27.9 105.7 18.5-32.2 44.8-59.3 76.4-78.7zM406.7 174c3.3 11.3 2.7 20.7-2.7 26.1-20.3 20.3-87.5-27-109.3-70.1-18-32.3-11.1-53.4 14.9-48.7 5.7-3.6 12.3-7.6 19.6-11.6-29.8-15.5-63.6-24.3-99.5-24.3-119.1 0-215.6 96.5-215.6 215.6 0 119 96.5 215.6 215.6 215.6S445.3 380.1 445.3 261c0-38.4-10.1-74.5-27.7-105.8-3.9 7-7.6 13.3-10.9 18.8z"] }; +var faFulcrum = { prefix: 'fab', iconName: 'fulcrum', icon: [269, 512, [], "f50b", "M70.75 164.14l-35.38 43.55L0 164.14l35.38-43.55 35.37 43.55zM119.23 0L98.69 198.18 47.72 256l50.98 57.82L119.23 512V300.89L78.15 256l41.08-44.89V0zm79.67 164.14l35.38 43.55 35.38-43.55-35.38-43.55-35.38 43.55zm-48.48 46.97L191.5 256l-41.08 44.89V512l20.54-198.18L221.94 256l-50.98-57.82L150.42 0v211.11z"] }; +var faGalacticRepublic = { prefix: 'fab', iconName: 'galactic-republic', icon: [496, 512, [], "f50c", "M248 504C111.25 504 0 392.75 0 256S111.25 8 248 8s248 111.25 248 248-111.25 248-248 248zm0-479.47C120.37 24.53 16.53 128.37 16.53 256S120.37 487.47 248 487.47 479.47 383.63 479.47 256 375.63 24.53 248 24.53zm27.62 21.81v24.62a185.933 185.933 0 0 1 83.57 34.54l17.39-17.36c-28.75-22.06-63.3-36.89-100.96-41.8zm-55.37.07c-37.64 4.94-72.16 19.8-100.88 41.85l17.28 17.36h.08c24.07-17.84 52.55-30.06 83.52-34.67V46.41zm12.25 50.17v82.87c-10.04 2.03-19.42 5.94-27.67 11.42l-58.62-58.59-21.93 21.93 58.67 58.67c-5.47 8.23-9.45 17.59-11.47 27.62h-82.9v31h82.9c2.02 10.02 6.01 19.31 11.47 27.54l-58.67 58.69 21.93 21.93 58.62-58.62a77.873 77.873 0 0 0 27.67 11.47v82.9h31v-82.9c10.05-2.03 19.37-6.06 27.62-11.55l58.67 58.69 21.93-21.93-58.67-58.69c5.46-8.23 9.47-17.52 11.5-27.54h82.87v-31h-82.87c-2.02-10.02-6.03-19.38-11.5-27.62l58.67-58.67-21.93-21.93-58.67 58.67c-8.25-5.49-17.57-9.47-27.62-11.5V96.58h-31zm183.24 30.72l-17.36 17.36a186.337 186.337 0 0 1 34.67 83.67h24.62c-4.95-37.69-19.83-72.29-41.93-101.03zm-335.55.13c-22.06 28.72-36.91 63.26-41.85 100.91h24.65c4.6-30.96 16.76-59.45 34.59-83.52l-17.39-17.39zM38.34 283.67c4.92 37.64 19.75 72.18 41.8 100.9l17.36-17.39c-17.81-24.07-29.92-52.57-34.51-83.52H38.34zm394.7 0c-4.61 30.99-16.8 59.5-34.67 83.6l17.36 17.36c22.08-28.74 36.98-63.29 41.93-100.96h-24.62zM136.66 406.38l-17.36 17.36c28.73 22.09 63.3 36.98 100.96 41.93v-24.64c-30.99-4.63-59.53-16.79-83.6-34.65zm222.53.05c-24.09 17.84-52.58 30.08-83.57 34.67v24.57c37.67-4.92 72.21-19.79 100.96-41.85l-17.31-17.39h-.08z"] }; +var faGalacticSenate = { prefix: 'fab', iconName: 'galactic-senate', icon: [512, 512, [], "f50d", "M249.86 33.48v26.07C236.28 80.17 226 168.14 225.39 274.9c11.74-15.62 19.13-33.33 19.13-48.24v-16.88c-.03-5.32.75-10.53 2.19-15.65.65-2.14 1.39-4.08 2.62-5.82 1.23-1.75 3.43-3.79 6.68-3.79 3.24 0 5.45 2.05 6.68 3.79 1.23 1.75 1.97 3.68 2.62 5.82 1.44 5.12 2.22 10.33 2.19 15.65v16.88c0 14.91 7.39 32.62 19.13 48.24-.63-106.76-10.91-194.73-24.49-215.35V33.48h-12.28zm-26.34 147.77c-9.52 2.15-18.7 5.19-27.46 9.08 8.9 16.12 9.76 32.64 1.71 37.29-8 4.62-21.85-4.23-31.36-19.82-11.58 8.79-21.88 19.32-30.56 31.09 14.73 9.62 22.89 22.92 18.32 30.66-4.54 7.7-20.03 7.14-35.47-.96-5.78 13.25-9.75 27.51-11.65 42.42 9.68.18 18.67 2.38 26.18 6.04 17.78-.3 32.77-1.96 40.49-4.22 5.55-26.35 23.02-48.23 46.32-59.51.73-25.55 1.88-49.67 3.48-72.07zm64.96 0c1.59 22.4 2.75 46.52 3.47 72.07 23.29 11.28 40.77 33.16 46.32 59.51 7.72 2.26 22.71 3.92 40.49 4.22 7.51-3.66 16.5-5.85 26.18-6.04-1.9-14.91-5.86-29.17-11.65-42.42-15.44 8.1-30.93 8.66-35.47.96-4.57-7.74 3.6-21.05 18.32-30.66-8.68-11.77-18.98-22.3-30.56-31.09-9.51 15.59-23.36 24.44-31.36 19.82-8.05-4.65-7.19-21.16 1.71-37.29a147.49 147.49 0 0 0-27.45-9.08zm-32.48 8.6c-3.23 0-5.86 8.81-6.09 19.93h-.05v16.88c0 41.42-49.01 95.04-93.49 95.04-52 0-122.75-1.45-156.37 29.17v2.51c9.42 17.12 20.58 33.17 33.18 47.97C45.7 380.26 84.77 360.4 141.2 360c45.68 1.02 79.03 20.33 90.76 40.87.01.01-.01.04 0 .05 7.67 2.14 15.85 3.23 24.04 3.21 8.19.02 16.37-1.07 24.04-3.21.01-.01-.01-.04 0-.05 11.74-20.54 45.08-39.85 90.76-40.87 56.43.39 95.49 20.26 108.02 41.35 12.6-14.8 23.76-30.86 33.18-47.97v-2.51c-33.61-30.62-104.37-29.17-156.37-29.17-44.48 0-93.49-53.62-93.49-95.04v-16.88h-.05c-.23-11.12-2.86-19.93-6.09-19.93zm0 96.59c22.42 0 40.6 18.18 40.6 40.6s-18.18 40.65-40.6 40.65-40.6-18.23-40.6-40.65c0-22.42 18.18-40.6 40.6-40.6zm0 7.64c-18.19 0-32.96 14.77-32.96 32.96S237.81 360 256 360s32.96-14.77 32.96-32.96-14.77-32.96-32.96-32.96zm0 6.14c14.81 0 26.82 12.01 26.82 26.82s-12.01 26.82-26.82 26.82-26.82-12.01-26.82-26.82 12.01-26.82 26.82-26.82zm-114.8 66.67c-10.19.07-21.6.36-30.5 1.66.43 4.42 1.51 18.63 7.11 29.76 9.11-2.56 18.36-3.9 27.62-3.9 41.28.94 71.48 34.35 78.26 74.47l.11 4.7c10.4 1.91 21.19 2.94 32.21 2.94 11.03 0 21.81-1.02 32.21-2.94l.11-4.7c6.78-40.12 36.98-73.53 78.26-74.47 9.26 0 18.51 1.34 27.62 3.9 5.6-11.13 6.68-25.34 7.11-29.76-8.9-1.3-20.32-1.58-30.5-1.66-18.76.42-35.19 4.17-48.61 9.67-12.54 16.03-29.16 30.03-49.58 33.07-.09.02-.17.04-.27.05-.05.01-.11.04-.16.05-5.24 1.07-10.63 1.6-16.19 1.6-5.55 0-10.95-.53-16.19-1.6-.05-.01-.11-.04-.16-.05-.1-.02-.17-.04-.27-.05-20.42-3.03-37.03-17.04-49.58-33.07-13.42-5.49-29.86-9.25-48.61-9.67z"] }; +var faGetPocket = { prefix: 'fab', iconName: 'get-pocket', icon: [448, 512, [], "f265", "M407.6 64h-367C18.5 64 0 82.5 0 104.6v135.2C0 364.5 99.7 464 224.2 464c124 0 223.8-99.5 223.8-224.2V104.6c0-22.4-17.7-40.6-40.4-40.6zm-162 268.5c-12.4 11.8-31.4 11.1-42.4 0C89.5 223.6 88.3 227.4 88.3 209.3c0-16.9 13.8-30.7 30.7-30.7 17 0 16.1 3.8 105.2 89.3 90.6-86.9 88.6-89.3 105.5-89.3 16.9 0 30.7 13.8 30.7 30.7 0 17.8-2.9 15.7-114.8 123.2z"] }; +var faGg = { prefix: 'fab', iconName: 'gg', icon: [512, 512, [], "f260", "M179.2 230.4l102.4 102.4-102.4 102.4L0 256 179.2 76.8l44.8 44.8-25.6 25.6-19.2-19.2-128 128 128 128 51.5-51.5-77.1-76.5 25.6-25.6zM332.8 76.8L230.4 179.2l102.4 102.4 25.6-25.6-77.1-76.5 51.5-51.5 128 128-128 128-19.2-19.2-25.6 25.6 44.8 44.8L512 256 332.8 76.8z"] }; +var faGgCircle = { prefix: 'fab', iconName: 'gg-circle', icon: [512, 512, [], "f261", "M257 8C120 8 9 119 9 256s111 248 248 248 248-111 248-248S394 8 257 8zm-49.5 374.8L81.8 257.1l125.7-125.7 35.2 35.4-24.2 24.2-11.1-11.1-77.2 77.2 77.2 77.2 26.6-26.6-53.1-52.9 24.4-24.4 77.2 77.2-75 75.2zm99-2.2l-35.2-35.2 24.1-24.4 11.1 11.1 77.2-77.2-77.2-77.2-26.5 26.5 53.1 52.9-24.4 24.4-77.2-77.2 75-75L432.2 255 306.5 380.6z"] }; +var faGit = { prefix: 'fab', iconName: 'git', icon: [448, 512, [], "f1d3", "M18.8 221.7c0 25.3 16.2 60 41.5 68.5v1c-18.8 8.3-24 50.6 1 65.8v1C34 367 16 384.3 16 414.2c0 51.5 48.8 65.8 91.5 65.8 52 0 90.7-18.7 90.7-76 0-70.5-101-44.5-101-82.8 0-13.5 7.2-18.7 19.7-21.3 41.5-7.7 67.5-40 67.5-82.2 0-7.3-1.5-14.2-4-21 6.7-1.5 13.2-3.3 19.7-5.5v-50.5c-17.2 6.8-35.7 11.8-54.5 11.8-53.8-31-126.8 1.3-126.8 69.2zm87.7 163.8c17 0 41.2 3 41.2 25 0 21.8-19.5 26.3-37.7 26.3-17.3 0-43.3-2.7-43.3-25.2.1-22.3 22.1-26.1 39.8-26.1zM103.3 256c-22 0-31.3-13-31.3-33.8 0-49.3 61-48.8 61-.5 0 20.3-8 34.3-29.7 34.3zM432 305.5v49c-13.3 7.3-30.5 9.8-45.5 9.8-53.5 0-59.8-42.2-59.8-85.7v-87.7h.5v-1c-7 0-7.3-1.6-24 1v-47.5h24c0-22.3.3-31-1.5-41.2h56.7c-2 13.8-1.5 27.5-1.5 41.2h51v47.5s-19.3-1-51-1V281c0 14.8 3.3 32.8 21.8 32.8 9.8 0 21.3-2.8 29.3-8.3zM286 68.7c0 18.7-14.5 36.2-33.8 36.2-19.8 0-34.5-17.2-34.5-36.2 0-19.3 14.5-36.7 34.5-36.7C272 32 286 50 286 68.7zm-6.2 74.5c-1.8 14.6-1.6 199.8 0 217.8h-55.5c1.6-18.1 1.8-203 0-217.8h55.5z"] }; +var faGitSquare = { prefix: 'fab', iconName: 'git-square', icon: [448, 512, [], "f1d2", "M140.1 348.5c12.1 0 29.5 2.1 29.5 17.9 0 15.5-13.9 18.8-27 18.8-12.3 0-30.9-2-30.9-18s15.7-18.7 28.4-18.7zm-24.7-116.6c0 14.8 6.6 24.1 22.3 24.1 15.5 0 21.2-10 21.2-24.5.1-34.4-43.5-34.8-43.5.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-241 93.7c-12.3 4.8-25.5 8.4-38.9 8.4-38.5-22.1-90.7.9-90.7 49.5 0 18 11.6 42.9 29.6 48.9v.7c-13.4 5.9-17.1 36.1.7 47v.7c-19.5 6.4-32.3 18.8-32.3 40.2 0 36.8 34.8 47 65.4 47 37.1 0 64.8-13.4 64.8-54.3 0-50.4-72.1-31.8-72.1-59.1 0-9.6 5.2-13.4 14.1-15.2 29.6-5.5 48.2-28.6 48.2-58.7 0-5.2-1.1-10.2-2.9-15 4.8-1.1 9.5-2.3 14.1-3.9v-36.2zm56.8 1.8h-39.6c1.3 10.6 1.1 142.6 0 155.5h39.6c-1.1-12.8-1.2-145.1 0-155.5zm4.5-53.3c0-13.4-10-26.2-24.1-26.2-14.3 0-24.6 12.5-24.6 26.2 0 13.6 10.5 25.9 24.6 25.9 13.7 0 24.1-12.5 24.1-25.9zm104.3 53.3h-36.4c0-9.8-.4-19.6 1.1-29.5h-40.5c1.3 7.3 1.1 13.6 1.1 29.5h-17.1v33.9c11.9-1.9 12.1-.7 17.1-.7v.7h-.4v62.7c0 31.1 4.5 61.2 42.7 61.2 10.7 0 23-1.8 32.5-7v-35c-5.7 3.9-13.9 5.9-20.9 5.9-13.2 0-15.5-12.9-15.5-23.4v-65.2c22.7 0 36.4.7 36.4.7v-33.8z"] }; +var faGithub = { prefix: 'fab', iconName: 'github', icon: [496, 512, [], "f09b", "M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"] }; +var faGithubAlt = { prefix: 'fab', iconName: 'github-alt', icon: [480, 512, [], "f113", "M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1zM480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2zm-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3zm-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1z"] }; +var faGithubSquare = { prefix: 'fab', iconName: 'github-square', icon: [448, 512, [], "f092", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z"] }; +var faGitkraken = { prefix: 'fab', iconName: 'gitkraken', icon: [592, 512, [], "f3a6", "M565.7 118.1c-2.3-6.1-9.3-9.2-15.3-6.6-5.7 2.4-8.5 8.9-6.3 14.6 10.9 29 16.9 60.5 16.9 93.3 0 134.6-100.3 245.7-230.2 262.7V358.4c7.9-1.5 15.5-3.6 23-6.2v104c106.7-25.9 185.9-122.1 185.9-236.8 0-91.8-50.8-171.8-125.8-213.3-5.7-3.2-13-.9-15.9 5-2.7 5.5-.6 12.2 4.7 15.1 67.9 37.6 113.9 110 113.9 193.2 0 93.3-57.9 173.1-139.8 205.4v-92.2c14.2-4.5 24.9-17.7 24.9-33.5 0-13.1-6.8-24.4-17.3-30.5 8.3-79.5 44.5-58.6 44.5-83.9V170c0-38-87.9-161.8-129-164.7-2.5-.2-5-.2-7.6 0C251.1 8.3 163.2 132 163.2 170v14.8c0 25.3 36.3 4.3 44.5 83.9-10.6 6.1-17.3 17.4-17.3 30.5 0 15.8 10.6 29 24.8 33.5v92.2c-81.9-32.2-139.8-112-139.8-205.4 0-83.1 46-155.5 113.9-193.2 5.4-3 7.4-9.6 4.7-15.1-2.9-5.9-10.1-8.2-15.9-5-75 41.5-125.8 121.5-125.8 213.3 0 114.7 79.2 210.8 185.9 236.8v-104c7.6 2.5 15.1 4.6 23 6.2v123.7C131.4 465.2 31 354.1 31 219.5c0-32.8 6-64.3 16.9-93.3 2.2-5.8-.6-12.2-6.3-14.6-6-2.6-13 .4-15.3 6.6C14.5 149.7 8 183.8 8 219.5c0 155.1 122.6 281.6 276.3 287.8V361.4c6.8.4 15 .5 23.4 0v145.8C461.4 501.1 584 374.6 584 219.5c0-35.7-6.5-69.8-18.3-101.4zM365.9 275.5c13 0 23.7 10.5 23.7 23.7 0 13.1-10.6 23.7-23.7 23.7-13 0-23.7-10.5-23.7-23.7 0-13.1 10.6-23.7 23.7-23.7zm-139.8 47.3c-13.2 0-23.7-10.7-23.7-23.7s10.5-23.7 23.7-23.7c13.1 0 23.7 10.6 23.7 23.7 0 13-10.5 23.7-23.7 23.7z"] }; +var faGitlab = { prefix: 'fab', iconName: 'gitlab', icon: [512, 512, [], "f296", "M29.782 199.732L256 493.714 8.074 309.699c-6.856-5.142-9.712-13.996-7.141-21.993l28.849-87.974zm75.405-174.806c-3.142-8.854-15.709-8.854-18.851 0L29.782 199.732h131.961L105.187 24.926zm56.556 174.806L256 493.714l94.257-293.982H161.743zm349.324 87.974l-28.849-87.974L256 493.714l247.926-184.015c6.855-5.142 9.711-13.996 7.141-21.993zm-85.404-262.78c-3.142-8.854-15.709-8.854-18.851 0l-56.555 174.806h131.961L425.663 24.926z"] }; +var faGitter = { prefix: 'fab', iconName: 'gitter', icon: [384, 512, [], "f426", "M66.4 322.5H16V0h50.4v322.5zM166.9 76.1h-50.4V512h50.4V76.1zm100.6 0h-50.4V512h50.4V76.1zM368 76h-50.4v247H368V76z"] }; +var faGlide = { prefix: 'fab', iconName: 'glide', icon: [448, 512, [], "f2a5", "M252.8 148.6c0 8.8-1.6 17.7-3.4 26.4-5.8 27.8-11.6 55.8-17.3 83.6-1.4 6.3-8.3 4.9-13.7 4.9-23.8 0-30.5-26-30.5-45.5 0-29.3 11.2-68.1 38.5-83.1 4.3-2.5 9.2-4.2 14.1-4.2 11.4 0 12.3 8.3 12.3 17.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 187c0-5.1-20.8-37.7-25.5-39.5-2.2-.9-7.2-2.3-9.6-2.3-23.1 0-38.7 10.5-58.2 21.5l-.5-.5c4.3-29.4 14.6-57.2 14.6-87.4 0-44.6-23.8-62.7-67.5-62.7-71.7 0-108 70.8-108 123.5 0 54.7 32 85 86.3 85 7.5 0 6.9-.6 6.9 2.3-10.5 80.3-56.5 82.9-56.5 58.9 0-24.4 28-36.5 28.3-38-.2-7.6-29.3-17.2-36.7-17.2-21.1 0-32.7 33-32.7 50.6 0 32.3 20.4 54.7 53.3 54.7 48.2 0 83.4-49.7 94.3-91.7 9.4-37.7 7-39.4 12.3-42.1 20-10.1 35.8-16.8 58.4-16.8 11.1 0 19 2.3 36.7 5.2 1.8.1 4.1-1.7 4.1-3.5z"] }; +var faGlideG = { prefix: 'fab', iconName: 'glide-g', icon: [448, 512, [], "f2a6", "M407.1 211.2c-3.5-1.4-11.6-3.8-15.4-3.8-37.1 0-62.2 16.8-93.5 34.5l-.9-.9c7-47.3 23.5-91.9 23.5-140.4C320.8 29.1 282.6 0 212.4 0 97.3 0 39 113.7 39 198.4 39 286.3 90.3 335 177.6 335c12 0 11-1 11 3.8-16.9 128.9-90.8 133.1-90.8 94.6 0-39.2 45-58.6 45.5-61-.3-12.2-47-27.6-58.9-27.6-33.9.1-52.4 51.2-52.4 79.3C32 476 64.8 512 117.5 512c77.4 0 134-77.8 151.4-145.4 15.1-60.5 11.2-63.3 19.7-67.6 32.2-16.2 57.5-27 93.8-27 17.8 0 30.5 3.7 58.9 8.4 2.9 0 6.7-2.9 6.7-5.8 0-8-33.4-60.5-40.9-63.4zm-175.3-84.4c-9.3 44.7-18.6 89.6-27.8 134.3-2.3 10.2-13.3 7.8-22 7.8-38.3 0-49-41.8-49-73.1 0-47 18-109.3 61.8-133.4 7-4.1 14.8-6.7 22.6-6.7 18.6 0 20 13.3 20 28.7-.1 14.3-2.7 28.5-5.6 42.4z"] }; +var faGofore = { prefix: 'fab', iconName: 'gofore', icon: [400, 512, [], "f3a7", "M324 319.8h-13.2v34.7c-24.5 23.1-56.3 35.8-89.9 35.8-73.2 0-132.4-60.2-132.4-134.4 0-74.1 59.2-134.4 132.4-134.4 35.3 0 68.6 14 93.6 39.4l62.3-63.3C335 55.3 279.7 32 220.7 32 98 32 0 132.6 0 256c0 122.5 97 224 220.7 224 63.2 0 124.5-26.2 171-82.5-2-27.6-13.4-77.7-67.7-77.7zm-12.1-112.5H205.6v89H324c33.5 0 60.5 15.1 76 41.8v-30.6c0-65.2-40.4-100.2-88.1-100.2z"] }; +var faGoodreads = { prefix: 'fab', iconName: 'goodreads', icon: [448, 512, [], "f3a8", "M299.9 191.2c5.1 37.3-4.7 79-35.9 100.7-22.3 15.5-52.8 14.1-70.8 5.7-37.1-17.3-49.5-58.6-46.8-97.2 4.3-60.9 40.9-87.9 75.3-87.5 46.9-.2 71.8 31.8 78.2 78.3zM448 88v336c0 30.9-25.1 56-56 56H56c-30.9 0-56-25.1-56-56V88c0-30.9 25.1-56 56-56h336c30.9 0 56 25.1 56 56zM330 313.2s-.1-34-.1-217.3h-29v40.3c-.8.3-1.2-.5-1.6-1.2-9.6-20.7-35.9-46.3-76-46-51.9.4-87.2 31.2-100.6 77.8-4.3 14.9-5.8 30.1-5.5 45.6 1.7 77.9 45.1 117.8 112.4 115.2 28.9-1.1 54.5-17 69-45.2.5-1 1.1-1.9 1.7-2.9.2.1.4.1.6.2.3 3.8.2 30.7.1 34.5-.2 14.8-2 29.5-7.2 43.5-7.8 21-22.3 34.7-44.5 39.5-17.8 3.9-35.6 3.8-53.2-1.2-21.5-6.1-36.5-19-41.1-41.8-.3-1.6-1.3-1.3-2.3-1.3h-26.8c.8 10.6 3.2 20.3 8.5 29.2 24.2 40.5 82.7 48.5 128.2 37.4 49.9-12.3 67.3-54.9 67.4-106.3z"] }; +var faGoodreadsG = { prefix: 'fab', iconName: 'goodreads-g', icon: [384, 512, [], "f3a9", "M42.6 403.3h2.8c12.7 0 25.5 0 38.2.1 1.6 0 3.1-.4 3.6 2.1 7.1 34.9 30 54.6 62.9 63.9 26.9 7.6 54.1 7.8 81.3 1.8 33.8-7.4 56-28.3 68-60.4 8-21.5 10.7-43.8 11-66.5.1-5.8.3-47-.2-52.8l-.9-.3c-.8 1.5-1.7 2.9-2.5 4.4-22.1 43.1-61.3 67.4-105.4 69.1-103 4-169.4-57-172-176.2-.5-23.7 1.8-46.9 8.3-69.7C58.3 47.7 112.3.6 191.6 0c61.3-.4 101.5 38.7 116.2 70.3.5 1.1 1.3 2.3 2.4 1.9V10.6h44.3c0 280.3.1 332.2.1 332.2-.1 78.5-26.7 143.7-103 162.2-69.5 16.9-159 4.8-196-57.2-8-13.5-11.8-28.3-13-44.5zM188.9 36.5c-52.5-.5-108.5 40.7-115 133.8-4.1 59 14.8 122.2 71.5 148.6 27.6 12.9 74.3 15 108.3-8.7 47.6-33.2 62.7-97 54.8-154-9.7-71.1-47.8-120-119.6-119.7z"] }; +var faGoogle = { prefix: 'fab', iconName: 'google', icon: [488, 512, [], "f1a0", "M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z"] }; +var faGoogleDrive = { prefix: 'fab', iconName: 'google-drive', icon: [512, 512, [], "f3aa", "M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z"] }; +var faGooglePlay = { prefix: 'fab', iconName: 'google-play', icon: [512, 512, [], "f3ab", "M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z"] }; +var faGooglePlus = { prefix: 'fab', iconName: 'google-plus', icon: [496, 512, [], "f2b3", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm-70.7 372c-68.8 0-124-55.5-124-124s55.2-124 124-124c31.3 0 60.1 11 83 32.3l-33.6 32.6c-13.2-12.9-31.3-19.1-49.4-19.1-42.9 0-77.2 35.5-77.2 78.1s34.2 78.1 77.2 78.1c32.6 0 64.9-19.1 70.1-53.3h-70.1v-42.6h116.9c1.3 6.8 1.9 13.6 1.9 20.7 0 70.8-47.5 121.2-118.8 121.2zm230.2-106.2v35.5H372v-35.5h-35.5v-35.5H372v-35.5h35.5v35.5h35.2v35.5h-35.2z"] }; +var faGooglePlusG = { prefix: 'fab', iconName: 'google-plus-g', icon: [640, 512, [], "f0d5", "M386.061 228.496c1.834 9.692 3.143 19.384 3.143 31.956C389.204 370.205 315.599 448 204.8 448c-106.084 0-192-85.915-192-192s85.916-192 192-192c51.864 0 95.083 18.859 128.611 50.292l-52.126 50.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484 0-118.92 54.221-118.92 121.277 0 67.056 53.436 121.277 118.92 121.277 75.961 0 104.513-54.745 108.965-82.773H204.8v-66.009h181.261zm185.406 6.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001h-55.733z"] }; +var faGooglePlusSquare = { prefix: 'fab', iconName: 'google-plus-square', icon: [448, 512, [], "f0d4", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM164 356c-55.3 0-100-44.7-100-100s44.7-100 100-100c27 0 49.5 9.8 67 26.2l-27.1 26.1c-7.4-7.1-20.3-15.4-39.8-15.4-34.1 0-61.9 28.2-61.9 63.2 0 34.9 27.8 63.2 61.9 63.2 39.6 0 54.4-28.5 56.8-43.1H164v-34.4h94.4c1 5 1.6 10.1 1.6 16.6 0 57.1-38.3 97.6-96 97.6zm220-81.8h-29v29h-29.2v-29h-29V245h29v-29H355v29h29v29.2z"] }; +var faGoogleWallet = { prefix: 'fab', iconName: 'google-wallet', icon: [448, 512, [], "f1ee", "M156.8 126.8c37.6 60.6 64.2 113.1 84.3 162.5-8.3 33.8-18.8 66.5-31.3 98.3-13.2-52.3-26.5-101.3-56-148.5 6.5-36.4 2.3-73.6 3-112.3zM109.3 200H16.1c-6.5 0-10.5 7.5-6.5 12.7C51.8 267 81.3 330.5 101.3 400h103.5c-16.2-69.7-38.7-133.7-82.5-193.5-3-4-8-6.5-13-6.5zm47.8-88c68.5 108 130 234.5 138.2 368H409c-12-138-68.4-265-143.2-368H157.1zm251.8-68.5c-1.8-6.8-8.2-11.5-15.2-11.5h-88.3c-5.3 0-9 5-7.8 10.3 13.2 46.5 22.3 95.5 26.5 146 48.2 86.2 79.7 178.3 90.6 270.8 15.8-60.5 25.3-133.5 25.3-203 0-73.6-12.1-145.1-31.1-212.6z"] }; +var faGratipay = { prefix: 'fab', iconName: 'gratipay', icon: [496, 512, [], "f184", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm114.6 226.4l-113 152.7-112.7-152.7c-8.7-11.9-19.1-50.4 13.6-72 28.1-18.1 54.6-4.2 68.5 11.9 15.9 17.9 46.6 16.9 61.7 0 13.9-16.1 40.4-30 68.1-11.9 32.9 21.6 22.6 60 13.8 72z"] }; +var faGrav = { prefix: 'fab', iconName: 'grav', icon: [512, 512, [], "f2d6", "M301.1 212c4.4 4.4 4.4 11.9 0 16.3l-9.7 9.7c-4.4 4.7-11.9 4.7-16.6 0l-10.5-10.5c-4.4-4.7-4.4-11.9 0-16.6l9.7-9.7c4.4-4.4 11.9-4.4 16.6 0l10.5 10.8zm-30.2-19.7c3-3 3-7.8 0-10.5-2.8-3-7.5-3-10.5 0-2.8 2.8-2.8 7.5 0 10.5 3.1 2.8 7.8 2.8 10.5 0zm-26 5.3c-3 2.8-3 7.5 0 10.2 2.8 3 7.5 3 10.5 0 2.8-2.8 2.8-7.5 0-10.2-3-3-7.7-3-10.5 0zm72.5-13.3c-19.9-14.4-33.8-43.2-11.9-68.1 21.6-24.9 40.7-17.2 59.8.8 11.9 11.3 29.3 24.9 17.2 48.2-12.5 23.5-45.1 33.2-65.1 19.1zm47.7-44.5c-8.9-10-23.3 6.9-15.5 16.1 7.4 9 32.1 2.4 15.5-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-66.2 42.6c2.5-16.1-20.2-16.6-25.2-25.7-13.6-24.1-27.7-36.8-54.5-30.4 11.6-8 23.5-6.1 23.5-6.1.3-6.4 0-13-9.4-24.9 3.9-12.5.3-22.4.3-22.4 15.5-8.6 26.8-24.4 29.1-43.2 3.6-31-18.8-59.2-49.8-62.8-22.1-2.5-43.7 7.7-54.3 25.7-23.2 40.1 1.4 70.9 22.4 81.4-14.4-1.4-34.3-11.9-40.1-34.3-6.6-25.7 2.8-49.8 8.9-61.4 0 0-4.4-5.8-8-8.9 0 0-13.8 0-24.6 5.3 11.9-15.2 25.2-14.4 25.2-14.4 0-6.4-.6-14.9-3.6-21.6-5.4-11-23.8-12.9-31.7 2.8.1-.2.3-.4.4-.5-5 11.9-1.1 55.9 16.9 87.2-2.5 1.4-9.1 6.1-13 10-21.6 9.7-56.2 60.3-56.2 60.3-28.2 10.8-77.2 50.9-70.6 79.7.3 3 1.4 5.5 3 7.5-2.8 2.2-5.5 5-8.3 8.3-11.9 13.8-5.3 35.2 17.7 24.4 15.8-7.2 29.6-20.2 36.3-30.4 0 0-5.5-5-16.3-4.4 27.7-6.6 34.3-9.4 46.2-9.1 8 3.9 8-34.3 8-34.3 0-14.7-2.2-31-11.1-41.5 12.5 12.2 29.1 32.7 28 60.6-.8 18.3-15.2 23-15.2 23-9.1 16.6-43.2 65.9-30.4 106 0 0-9.7-14.9-10.2-22.1-17.4 19.4-46.5 52.3-24.6 64.5 26.6 14.7 108.8-88.6 126.2-142.3 34.6-20.8 55.4-47.3 63.9-65 22 43.5 95.3 94.5 101.1 59z"] }; +var faGripfire = { prefix: 'fab', iconName: 'gripfire', icon: [384, 512, [], "f3ac", "M171.8 503.8c0-5.3 4.8-12.2 4.8-22.3 0-15.2-13-39.9-78.1-86.6C64.2 365.8 32 336.4 32 286.6 32 171.9 179.1 110.1 179.1 18c0-3.3-.2-6.7-.6-10 5.1 2.4 39.1 43.3 39.1 90.4 0 80.5-105.1 129.2-105.1 203 0 26.9 16.6 47.2 32.6 69.5 22.5 30.2 44.2 56.9 44.2 86.5-.1 14.5-4.4 29.7-17.5 46.4zm146-241.4c1.5 8.4 2.2 16.6 2.2 24.6 0 51.8-29.4 97.5-67.3 136.8-1 1-2.2 2.4-3.2 2.4-3.6 0-35.5-41.6-35.5-53.2 0 0 41.8-55.7 41.8-96.9 0-10.8-2.7-21.7-9.1-33.4-1.5 32.3-55.7 87.7-58.1 87.7-2.7 0-17.9-22-17.9-42.1 0-5.3 1-10.7 3.2-15.8 2.4-5.5 56.6-72 56.6-116.7 0-6.2-1-12-3.4-17.1l-4-7.2c16.7 6.5 82.6 64.1 94.7 130.9"] }; +var faGrunt = { prefix: 'fab', iconName: 'grunt', icon: [384, 512, [], "f3ad", "M61.3 189.3c-1.1 10 5.2 19.1 5.2 19.1.7-7.5 2.2-12.8 4-16.6.4 10.3 3.2 23.5 12.8 34.1 6.9 7.6 35.6 23.3 54.9 6.1 1 2.4 2.1 5.3 3 8.5 2.9 10.3-2.7 25.3-2.7 25.3s15.1-17.1 13.9-32.5c10.8-.5 21.4-8.4 21.1-19.5 0 0-18.9 10.4-35.5-8.8-9.7-11.2-40.9-42-83.1-31.8 4.3 1 8.9 2.4 13.5 4.1h-.1c-4.2 2-6.5 7.1-7 12zm28.3-1.8c19.5 11 37.4 25.7 44.9 37-5.7 3.3-21.7 10.4-38-1.7-10.3-7.6-9.8-26.2-6.9-35.3zm79.2 233.7c2.2 2.3 1.5 5.3.9 6.8-1.1 2.7-5.5 11.6-13 19.8-2.7 2.9-6.6 4.6-11 4.6-4.3 0-8.7-1.6-11.8-4.3-2.3-2.1-10.2-9.5-13.7-18.6-1.3-3.4-1-6.1.9-8.1 1.3-1.3 4-2.9 9.5-2.9H160c4.1 0 7 .9 8.8 2.7zm62.9-187.9c-1.2 15.5 13.9 32.5 13.9 32.5s-5.6-15-2.7-25.3c.9-3.2 2-6 3-8.5 19.3 17.3 48 1.5 54.8-6.1 9.6-10.6 12.3-23.8 12.8-34.1 1.8 3.8 3.4 9.1 4 16.6 0 0 6.4-9.1 5.2-19.1-.6-5-2.9-10-7-11.8h-.1c4.6-1.8 9.2-3.2 13.5-4.1-42.3-10.2-73.4 20.6-83.1 31.8-16.7 19.2-35.5 8.8-35.5 8.8-.2 10.9 10.4 18.9 21.2 19.3zm17.8-8.8c7.5-11.4 25.4-26 44.9-37 3 9.1 3.4 27.7-7 35.4-16.3 12.1-32.2 5-37.9 1.6-.1.1 0 0 0 0zM263 421.4c1.9 1.9 2.2 4.6.9 7.9-3.5 8.9-11.4 16.1-13.7 18.1-3.1 2.6-7.4 4.2-11.8 4.2s-8.3-1.6-11-4.5c-7.5-8-12-16.7-13-19.3-.6-1.5-1.3-4.4.9-6.7 1.7-1.8 4.7-2.7 8.9-2.7h29.4c5.4.1 8.1 1.7 9.4 3zm-98.3-251.5c9.9 6 18.8 8.1 27.3 8.3 8.5-.2 17.4-2.3 27.3-8.3 0 0-14.5 17.7-27.2 17.8h-.2c-12.7-.2-27.2-17.8-27.2-17.8zm184.5 147.4c-2.4 17.9-13 33.8-24.6 43.7-3.1-22.7-3.7-55.5-3.7-62.4 0-14.7 9.5-24.5 12.2-26.1 2.5-1.5 5.4-3 8.3-4.6 18-9.6 40.4-21.6 40.4-43.7 0-16.2-9.3-23.2-15.4-27.8-.8-.6-1.5-1.1-2.2-1.7-2.1-1.7-3.7-3-4.3-4.4-4.4-9.8-3.6-34.2-1.7-37.6.6-.6 16.7-20.9 11.8-39.2-2-7.4-6.9-13.3-14.1-17-5.3-2.7-11.9-4.2-19.5-4.5-.1-2-.5-3.9-.9-5.9-.6-2.6-1.1-5.3-.9-8.1.4-4.7.8-9 2.2-11.3 8.4-13.3 28.8-17.6 29-17.6l12.3-2.4-8.1-9.5c-.1-.2-17.3-17.5-46.3-17.5-7.9 0-16 1.3-24.1 3.9-24.2 7.8-42.9 30.5-49.4 39.3-3.1-1-6.3-1.9-9.6-2.7-4.2-15.8 9-38.5 9-38.5s-13.6-3-33.7 15.2c-2.6-6.5-8.1-20.5-1.8-37.2C184.6 10.1 177.2 26 175 40.4c-7.6-5.4-6.7-23.1-7.2-27.6-7.5.9-29.2 21.9-28.2 48.3-2 .5-3.9 1.1-5.9 1.7-6.5-8.8-25.1-31.5-49.4-39.3-7.9-2.2-16-3.5-23.9-3.5-29 0-46.1 17.3-46.3 17.5L6 46.9l12.3 2.4c.2 0 20.6 4.3 29 17.6 1.4 2.2 1.8 6.6 2.2 11.3.2 2.8-.4 5.5-.9 8.1-.4 1.9-.8 3.9-.9 5.9-7.7.3-14.2 1.8-19.5 4.5-7.2 3.7-12.1 9.6-14.1 17-5 18.2 11.2 38.5 11.8 39.2 1.9 3.4 2.7 27.8-1.7 37.6-.6 1.4-2.2 2.7-4.3 4.4-.7.5-1.4 1.1-2.2 1.7-6.1 4.6-15.4 11.7-15.4 27.8 0 22.1 22.4 34.1 40.4 43.7 3 1.6 5.8 3.1 8.3 4.6 2.7 1.6 12.2 11.4 12.2 26.1 0 6.9-.6 39.7-3.7 62.4-11.6-9.9-22.2-25.9-24.6-43.8 0 0-29.2 22.6-20.6 70.8 5.2 29.5 23.2 46.1 47 54.7 8.8 19.1 29.4 45.7 67.3 49.6C143 504.3 163 512 192.2 512h.2c29.1 0 49.1-7.7 63.6-19.5 37.9-3.9 58.5-30.5 67.3-49.6 23.8-8.7 41.7-25.2 47-54.7 8.2-48.4-21.1-70.9-21.1-70.9zM305.7 37.7c5.6-1.8 11.6-2.7 17.7-2.7 11 0 19.9 3 24.7 5-3.1 1.4-6.4 3.2-9.7 5.3-2.4-.4-5.6-.8-9.2-.8-10.5 0-20.5 3.1-28.7 8.9-12.3 8.7-18 16.9-20.7 22.4-2.2-1.3-4.5-2.5-7.1-3.7-1.6-.8-3.1-1.5-4.7-2.2 6.1-9.1 19.9-26.5 37.7-32.2zm21 18.2c-.8 1-1.6 2.1-2.3 3.2-3.3 5.2-3.9 11.6-4.4 17.8-.5 6.4-1.1 12.5-4.4 17-4.2.8-8.1 1.7-11.5 2.7-2.3-3.1-5.6-7-10.5-11.2 1.4-4.8 5.5-16.1 13.5-22.5 5.6-4.3 12.2-6.7 19.6-7zM45.6 45.3c-3.3-2.2-6.6-4-9.7-5.3 4.8-2 13.7-5 24.7-5 6.1 0 12 .9 17.7 2.7 17.8 5.8 31.6 23.2 37.7 32.1-1.6.7-3.2 1.4-4.8 2.2-2.5 1.2-4.9 2.5-7.1 3.7-2.6-5.4-8.3-13.7-20.7-22.4-8.3-5.8-18.2-8.9-28.8-8.9-3.4.1-6.6.5-9 .9zm44.7 40.1c-4.9 4.2-8.3 8-10.5 11.2-3.4-.9-7.3-1.9-11.5-2.7C65 89.5 64.5 83.4 64 77c-.5-6.2-1.1-12.6-4.4-17.8-.7-1.1-1.5-2.2-2.3-3.2 7.4.3 14 2.6 19.5 7 8 6.3 12.1 17.6 13.5 22.4zM58.1 259.9c-2.7-1.6-5.6-3.1-8.4-4.6-14.9-8-30.2-16.3-30.2-30.5 0-11.1 4.3-14.6 8.9-18.2l.5-.4c.7-.6 1.4-1.2 2.2-1.8-.9 7.2-1.9 13.3-2.7 14.9 0 0 12.1-15 15.7-44.3 1.4-11.5-1.1-34.3-5.1-43 .2 4.9 0 9.8-.3 14.4-.4-.8-.8-1.6-1.3-2.2-3.2-4-11.8-17.5-9.4-26.6.9-3.5 3.1-6 6.7-7.8 3.8-1.9 8.8-2.9 15.1-2.9 12.3 0 25.9 3.7 32.9 6 25.1 8 55.4 30.9 64.1 37.7.2.2.4.3.4.3l5.6 3.9-3.5-5.8c-.2-.3-19.1-31.4-53.2-46.5 2-2.9 7.4-8.1 21.6-15.1 21.4-10.5 46.5-15.8 74.3-15.8 27.9 0 52.9 5.3 74.3 15.8 14.2 6.9 19.6 12.2 21.6 15.1-34 15.1-52.9 46.2-53.1 46.5l-3.5 5.8 5.6-3.9s.2-.1.4-.3c8.7-6.8 39-29.8 64.1-37.7 7-2.2 20.6-6 32.9-6 6.3 0 11.3 1 15.1 2.9 3.5 1.8 5.7 4.4 6.7 7.8 2.5 9.1-6.1 22.6-9.4 26.6-.5.6-.9 1.3-1.3 2.2-.3-4.6-.5-9.5-.3-14.4-4 8.8-6.5 31.5-5.1 43 3.6 29.3 15.7 44.3 15.7 44.3-.8-1.6-1.8-7.7-2.7-14.9.7.6 1.5 1.2 2.2 1.8l.5.4c4.6 3.7 8.9 7.1 8.9 18.2 0 14.2-15.4 22.5-30.2 30.5-2.9 1.5-5.7 3.1-8.4 4.6-8.7 5-18 16.7-19.1 34.2-.9 14.6.9 49.9 3.4 75.9-12.4 4.8-26.7 6.4-39.7 6.8-2-4.1-3.9-8.5-5.5-13.1-.7-2-19.6-51.1-26.4-62.2 5.5 39 17.5 73.7 23.5 89.6-3.5-.5-7.3-.7-11.7-.7h-117c-4.4 0-8.3.3-11.7.7 6-15.9 18.1-50.6 23.5-89.6-6.8 11.2-25.7 60.3-26.4 62.2-1.6 4.6-3.5 9-5.5 13.1-13-.4-27.2-2-39.7-6.8 2.5-26 4.3-61.2 3.4-75.9-.9-17.4-10.3-29.2-19-34.2zM34.8 404.6c-12.1-20-8.7-54.1-3.7-59.1 10.9 34.4 47.2 44.3 74.4 45.4-2.7 4.2-5.2 7.6-7 10l-1.4 1.4c-7.2 7.8-8.6 18.5-4.1 31.8-22.7-.1-46.3-9.8-58.2-29.5zm45.7 43.5c6 1.1 12.2 1.9 18.6 2.4 3.5 8 7.4 15.9 12.3 23.1-14.4-5.9-24.4-16-30.9-25.5zM192 498.2c-60.6-.1-78.3-45.8-84.9-64.7-3.7-10.5-3.4-18.2.9-23.1 2.9-3.3 9.5-7.2 24.6-7.2h118.8c15.1 0 21.8 3.9 24.6 7.2 4.2 4.8 4.5 12.6.9 23.1-6.6 18.8-24.3 64.6-84.9 64.7zm80.6-24.6c4.9-7.2 8.8-15.1 12.3-23.1 6.4-.5 12.6-1.3 18.6-2.4-6.5 9.5-16.5 19.6-30.9 25.5zm76.6-69c-12 19.7-35.6 29.3-58.1 29.7 4.5-13.3 3.1-24.1-4.1-31.8-.4-.5-.9-1-1.4-1.5-1.8-2.4-4.3-5.8-7-10 27.2-1.2 63.5-11 74.4-45.4 5 5 8.4 39.1-3.8 59z"] }; +var faGulp = { prefix: 'fab', iconName: 'gulp', icon: [256, 512, [], "f3ae", "M209.8 391.1l-14.1 24.6-4.6 80.2c0 8.9-28.3 16.1-63.1 16.1s-63.1-7.2-63.1-16.1l-5.8-79.4-14.9-25.4c41.2 17.3 126 16.7 165.6 0zm-196-253.3l13.6 125.5c5.9-20 20.8-47 40-55.2 6.3-2.7 12.7-2.7 18.7.9 5.2 3 9.6 9.3 10.1 11.8 1.2 6.5-2 9.1-4.5 9.1-3 0-5.3-4.6-6.8-7.3-4.1-7.3-10.3-7.6-16.9-2.8-6.9 5-12.9 13.4-17.1 20.7-5.1 8.8-9.4 18.5-12 28.2-1.5 5.6-2.9 14.6-.6 19.9 1 2.2 2.5 3.6 4.9 3.6 5 0 12.3-6.6 15.8-10.1 4.5-4.5 10.3-11.5 12.5-16l5.2-15.5c2.6-6.8 9.9-5.6 9.9 0 0 10.2-3.7 13.6-10 34.7-5.8 19.5-7.6 25.8-7.6 25.8-.7 2.8-3.4 7.5-6.3 7.5-1.2 0-2.1-.4-2.6-1.2-1-1.4-.9-5.3-.8-6.3.2-3.2 6.3-22.2 7.3-25.2-2 2.2-4.1 4.4-6.4 6.6-5.4 5.1-14.1 11.8-21.5 11.8-3.4 0-5.6-.9-7.7-2.4l7.6 79.6c2 5 39.2 17.1 88.2 17.1 49.1 0 86.3-12.2 88.2-17.1l10.9-94.6c-5.7 5.2-12.3 11.6-19.6 14.8-5.4 2.3-17.4 3.8-17.4-5.7 0-5.2 9.1-14.8 14.4-21.5 1.4-1.7 4.7-5.9 4.7-8.1 0-2.9-6-2.2-11.7 2.5-3.2 2.7-6.2 6.3-8.7 9.7-4.3 6-6.6 11.2-8.5 15.5-6.2 14.2-4.1 8.6-9.1 22-5 13.3-4.2 11.8-5.2 14-.9 1.9-2.2 3.5-4 4.5-1.9 1-4.5.9-6.1-.3-.9-.6-1.3-1.9-1.3-3.7 0-.9.1-1.8.3-2.7 1.5-6.1 7.8-18.1 15-34.3 1.6-3.7 1-2.6.8-2.3-6.2 6-10.9 8.9-14.4 10.5-5.8 2.6-13 2.6-14.5-4.1-.1-.4-.1-.8-.2-1.2-11.8 9.2-24.3 11.7-20-8.1-4.6 8.2-12.6 14.9-22.4 14.9-4.1 0-7.1-1.4-8.6-5.1-2.3-5.5 1.3-14.9 4.6-23.8 1.7-4.5 4-9.9 7.1-16.2 1.6-3.4 4.2-5.4 7.6-4.5.6.2 1.1.4 1.6.7 2.6 1.8 1.6 4.5.3 7.2-3.8 7.5-7.1 13-9.3 20.8-.9 3.3-2 9 1.5 9 2.4 0 4.7-.8 6.9-2.4 4.6-3.4 8.3-8.5 11.1-13.5 2-3.6 4.4-8.3 5.6-12.3.5-1.7 1.1-3.3 1.8-4.8 1.1-2.5 2.6-5.1 5.2-5.1 1.3 0 2.4.5 3.2 1.5 1.7 2.2 1.3 4.5.4 6.9-2 5.6-4.7 10.6-6.9 16.7-1.3 3.5-2.7 8-2.7 11.7 0 3.4 3.7 2.6 6.8 1.2 2.4-1.1 4.8-2.8 6.8-4.5 1.2-4.9.9-3.8 26.4-68.2 1.3-3.3 3.7-4.7 6.1-4.7 1.2 0 2.2.4 3.2 1.1 1.7 1.3 1.7 4.1 1 6.2-.7 1.9-.6 1.3-4.5 10.5-5.2 12.1-8.6 20.8-13.2 31.9-1.9 4.6-7.7 18.9-8.7 22.3-.6 2.2-1.3 5.8 1 5.8 5.4 0 19.3-13.1 23.1-17 .2-.3.5-.4.9-.6.6-1.9 1.2-3.7 1.7-5.5 1.4-3.8 2.7-8.2 5.3-11.3.8-1 1.7-1.6 2.7-1.6 2.8 0 4.2 1.2 4.2 4 0 1.1-.7 5.1-1.1 6.2 1.4-1.5 2.9-3 4.5-4.5 15-13.9 25.7-6.8 25.7.2 0 7.4-8.9 17.7-13.8 23.4-1.6 1.9-4.9 5.4-5 6.4 0 1.3.9 1.8 2.2 1.8 2 0 6.4-3.5 8-4.7 5-3.9 11.8-9.9 16.6-14.1l14.8-136.8c-30.5 17.1-197.6 17.2-228.3.2zm229.7-8.5c0 21-231.2 21-231.2 0 0-8.8 51.8-15.9 115.6-15.9 9 0 17.8.1 26.3.4l12.6-48.7L228.1.6c1.4-1.4 5.8-.2 9.9 3.5s6.6 7.9 5.3 9.3l-.1.1L185.9 74l-10 40.7c39.9 2.6 67.6 8.1 67.6 14.6zm-69.4 4.6c0-.8-.9-1.5-2.5-2.1l-.2.8c0 1.3-5 2.4-11.1 2.4s-11.1-1.1-11.1-2.4c0-.1 0-.2.1-.3l.2-.7c-1.8.6-3 1.4-3 2.3 0 2.1 6.2 3.7 13.7 3.7 7.7.1 13.9-1.6 13.9-3.7z"] }; +var faHackerNews = { prefix: 'fab', iconName: 'hacker-news', icon: [448, 512, [], "f1d4", "M0 32v448h448V32H0zm21.2 197.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z"] }; +var faHackerNewsSquare = { prefix: 'fab', iconName: 'hacker-news-square', icon: [448, 512, [], "f3af", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM21.2 229.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z"] }; +var faHips = { prefix: 'fab', iconName: 'hips', icon: [640, 512, [], "f452", "M0 80.2c0-1.8.9-2.7 2.7-2.7h40.9c1.9 0 2.8.9 2.8 2.7v81.2c15.2-7.7 31.7-11.5 49.8-11.4 24 .1 44.2 6.2 60.3 18 18.7 13.5 28 31.9 28 55.3v136.1c0 1.9-.9 2.8-2.7 2.8h-27.3c-9.1 0-16.4-7.3-16.4-16.3V223.3c0-.9 2.7-27-45.8-27-48.6 0-45.8 26.2-45.8 27v136.1c0 1.9-.9 2.8-2.8 2.8h-41c-1.8 0-2.7-.9-2.7-2.8V80.2zm497.7 221.5c13.7 10.2 34.1 19.1 58.4 19.1 23.3 0 32.8-4.5 36.5-13.6 3-7.9-.6-16.1-12.2-21.2l-53.6-23.5c-21.4-9.4-33.8-24-37.2-43.6-5.7-33.7 22.2-53.3 22.7-53.7 13.2-9.6 32-15.4 58.5-15.4 19 0 37.4 3.3 55.1 9.9 1.3.5 1.9 1.3 1.9 2.6V207c0 2.1-2.3 3.4-4 2.4-39.7-20.7-76.6-12.3-84-6.8-6.6 4.9-6 12.5 2.6 16.1L600 244c16.5 7.1 28.1 18.4 34.9 34.1 5.5 12.6 6.6 25.6 3.1 39.1-9.6 36.9-44.9 45.5-45.6 45.8-10.5 3.1-23.6 4.3-36.3 4.3-16.6 0-32.6-2.7-48.2-8.2-9.7-3.4-14.6-10.3-14.6-20.7V304c0-2.1 2.3-3.7 4.4-2.3zM376.2 149.8c-31.7 0-104.2 20.1-104.2 103.5v183.5c0 .8.6 2.7 2.7 2.7h40.9c1.9 0 2.8-.9 2.8-2.7V348c16.5 12.7 35.8 19.1 57.7 19.1 60.5 0 108.7-48.5 108.7-108.7.1-60.3-48.2-108.6-108.6-108.6zm0 170.9c-17.2 0-31.9-6.1-44-18.2-12.2-12.2-18.2-26.8-18.2-44 0-34.5 27.6-62.2 62.2-62.2 34.5 0 62.2 27.6 62.2 62.2.1 34.3-27.3 62.2-62.2 62.2zm-124.6 38.7c0 1.9-.9 2.8-2.8 2.8h-40.9c-1.6 0-2.7-1.4-2.7-2.8V157.6c0-1.4 1.1-2.8 2.7-2.8h40.9c1.9 0 2.8.9 2.8 2.8v201.8M228.3 72.5c15.9 0 28.9 12.7 28.9 28.9 0 15.8-12.7 28.9-28.9 28.9s-28.9-13.3-28.9-28.9c.1-16 13-28.9 28.9-28.9"] }; +var faHireAHelper = { prefix: 'fab', iconName: 'hire-a-helper', icon: [512, 512, [], "f3b0", "M443.1 0H71.9C67.9 37.3 37.4 67.8 0 71.7v371.5c37.4 4.9 66 32.4 71.9 68.8h372.2c3-36.4 32.5-65.8 67.9-69.8V71.7c-36.4-5.9-65-35.3-68.9-71.7zm-37 404.9c-36.3 0-18.8-2-55.1-2-35.8 0-21 2-56.1 2-5.9 0-4.9-8.2 0-9.8 22.8-7.6 22.9-10.2 24.6-12.8 10.4-15.6 5.9-83 5.9-113 0-5.3-6.4-12.8-13.8-12.8H200.4c-7.4 0-13.8 7.5-13.8 12.8 0 30-4.5 97.4 5.9 113 1.7 2.5 1.8 5.2 24.6 12.8 4.9 1.6 6 9.8 0 9.8-35.1 0-20.3-2-56.1-2-36.3 0-18.8 2-55.1 2-7.9 0-5.8-10.8 0-10.8 10.2-3.4 13.5-3.5 21.7-13.8 7.7-12.9 7.9-44.4 7.9-127.8V151.3c0-22.2-12.2-28.3-28.6-32.4-8.8-2.2-4-11.8 1-11.8 36.5 0 20.6 2 57.1 2 32.7 0 16.5-2 49.2-2 3.3 0 8.5 8.3 1 10.8-4.9 1.6-27.6 3.7-27.6 39.3 0 45.6-.2 55.8 1 68.8 0 1.3 2.3 12.8 12.8 12.8h109.2c10.5 0 12.8-11.5 12.8-12.8 1.2-13 1-23.2 1-68.8 0-35.6-22.7-37.7-27.6-39.3-7.5-2.5-2.3-10.8 1-10.8 32.7 0 16.5 2 49.2 2 36.5 0 20.6-2 57.1-2 4.9 0 9.9 9.6 1 11.8-16.4 4.1-28.6 10.3-28.6 32.4v101.2c0 83.4.1 114.9 7.9 127.8 8.2 10.2 11.4 10.4 21.7 13.8 5.8 0 7.8 10.8 0 10.8z"] }; +var faHooli = { prefix: 'fab', iconName: 'hooli', icon: [640, 512, [], "f427", "M508.4 352h57.9V156.7L508.4 184v168zm73.7-110.5V352H640V241.5h-57.9zm-250.7-8.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.2-1.1-50.4 17.1c-1.9 1.9-3.7 3.9-5.3 6-38.2-29.6-72.5-46.5-102.1-61.1v-20.7l-22.5 10.6c-54.4-22.1-89-18.2-97.3.1 0 0-24.9 32.8 61.9 110.9v-31c-48.8-54.6-39-76.1-35.3-79.2 13.5-11.4 37.5-8 64.4 2.1L65.2 184v63.3c13.1 14.7 30.5 31.5 53.5 50.4l4.5 3.6v-29.8c0-6.9 1.7-18.2 10.8-18.2s10.6 6.9 10.6 15V317c18 12.2 37.3 22.1 57.7 29.6v-93.9c0-18.7-13.4-37.4-40.6-37.4-15.8-.1-30.5 8.2-38.5 21.9v-54.3c41.9 20.9 83.9 46.5 99.9 58.3-10.2 14.6-9.3 28.1-9.3 43.7 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.7-33.8 16.7-52.5 0-18.5 1.5-34.2-16.7-52.3zm-39.7 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm185.7-71.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.3-1.1-50.4 17.1c-18.2 18.2-16.8 33.9-16.8 52.6 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.8-33.8 16.8-52.5-.1-18.8 1.3-34.5-16.8-52.6zm-39.8 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm173.5-73c15.9 0 28.9-12.9 28.9-28.9s-12.9-24.5-28.9-24.5c-15.9 0-28.9 8.6-28.9 24.5s12.9 28.9 28.9 28.9zM144.5 352l38.3.8c-13.2-4.6-26-10.2-38.3-16.8v16zm-21.4 0v-28.6c-6.5-4.2-13-8.7-19.4-13.6-14.8-11.2-27.5-21.7-38.5-31.5V352h57.9zm59.7.8c36.5 12.5 69.9 14.2 94.7 7.2-19.9.2-45.8-2.6-75.3-13.3v5.3l-19.4.8z"] }; +var faHotjar = { prefix: 'fab', iconName: 'hotjar', icon: [448, 512, [], "f3b1", "M414.9 161.5C340.2 29 121.1 0 121.1 0S222.2 110.4 93 197.7C11.3 252.8-21 324.4 14 402.6c26.8 59.9 83.5 84.3 144.6 93.4-29.2-55.1-6.6-122.4-4.1-129.6 57.1 86.4 165 0 110.8-93.9 71 15.4 81.6 138.6 27.1 215.5 80.5-25.3 134.1-88.9 148.8-145.6 15.5-59.3 3.7-127.9-26.3-180.9z"] }; +var faHouzz = { prefix: 'fab', iconName: 'houzz', icon: [414, 512, [], "f27c", "M258.9 330.7H154.3V480H0V32h109.5v104.5l305.1 85.6V480H258.9V330.7z"] }; +var faHtml5 = { prefix: 'fab', iconName: 'html5', icon: [384, 512, [], "f13b", "M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z"] }; +var faHubspot = { prefix: 'fab', iconName: 'hubspot', icon: [512, 512, [], "f3b2", "M267.4 211.6c-25.1 23.7-40.8 57.3-40.8 94.6 0 29.3 9.7 56.3 26 78L203.1 434c-4.4-1.6-9.1-2.5-14-2.5-10.8 0-20.9 4.2-28.5 11.8-7.6 7.6-11.8 17.8-11.8 28.6s4.2 20.9 11.8 28.5c7.6 7.6 17.8 11.6 28.5 11.6 10.8 0 20.9-3.9 28.6-11.6 7.6-7.6 11.8-17.8 11.8-28.5 0-4.2-.6-8.2-1.9-12.1l50-50.2c22 16.9 49.4 26.9 79.3 26.9 71.9 0 130-58.3 130-130.2 0-65.2-47.7-119.2-110.2-128.7V116c17.5-7.4 28.2-23.8 28.2-42.9 0-26.1-20.9-47.9-47-47.9S311.2 47 311.2 73.1c0 19.1 10.7 35.5 28.2 42.9v61.2c-15.2 2.1-29.6 6.7-42.7 13.6-27.6-20.9-117.5-85.7-168.9-124.8 1.2-4.4 2-9 2-13.8C129.8 23.4 106.3 0 77.4 0 48.6 0 25.2 23.4 25.2 52.2c0 28.9 23.4 52.3 52.2 52.3 9.8 0 18.9-2.9 26.8-7.6l163.2 114.7zm89.5 163.6c-38.1 0-69-30.9-69-69s30.9-69 69-69 69 30.9 69 69-30.9 69-69 69z"] }; +var faImdb = { prefix: 'fab', iconName: 'imdb', icon: [448, 512, [], "f2d8", "M350.5 288.7c0 5.4 1.6 14.4-6.2 14.4-1.6 0-3-.8-3.8-2.4-2.2-5.1-1.1-44.1-1.1-44.7 0-3.8-1.1-12.7 4.9-12.7 7.3 0 6.2 7.3 6.2 12.7v32.7zM265 229.9c0-9.7 1.6-16-10.3-16v83.7c12.2.3 10.3-8.7 10.3-18.4v-49.3zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM21.3 228.8c-.1.1-.2.3-.3.4h.3v-.4zM97 192H64v127.8h33V192zm113.3 0h-43.1l-7.6 59.9c-2.7-20-5.4-40.1-8.7-59.9h-42.8v127.8h29v-84.5l12.2 84.5h20.6l11.6-86.4v86.4h28.7V192zm86.3 45.3c0-8.1.3-16.8-1.4-24.4-4.3-22.5-31.4-20.9-49-20.9h-24.6v127.8c86.1.1 75 6 75-82.5zm85.9 17.3c0-17.3-.8-30.1-22.2-30.1-8.9 0-14.9 2.7-20.9 9.2V192h-31.7v127.8h29.8l1.9-8.1c5.7 6.8 11.9 9.8 20.9 9.8 19.8 0 22.2-15.2 22.2-30.9v-36z"] }; +var faInstagram = { prefix: 'fab', iconName: 'instagram', icon: [448, 512, [], "f16d", "M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"] }; +var faInternetExplorer = { prefix: 'fab', iconName: 'internet-explorer', icon: [512, 512, [], "f26b", "M483.049 159.706c10.855-24.575 21.424-60.438 21.424-87.871 0-72.722-79.641-98.371-209.673-38.577-107.632-7.181-211.221 73.67-237.098 186.457 30.852-34.862 78.271-82.298 121.977-101.158C125.404 166.85 79.128 228.002 43.992 291.725 23.246 329.651 0 390.94 0 436.747c0 98.575 92.854 86.5 180.251 42.006 31.423 15.43 66.559 15.573 101.695 15.573 97.124 0 184.249-54.294 216.814-146.022H377.927c-52.509 88.593-196.819 52.996-196.819-47.436H509.9c6.407-43.581-1.655-95.715-26.851-141.162zM64.559 346.877c17.711 51.15 53.703 95.871 100.266 123.304-88.741 48.94-173.267 29.096-100.266-123.304zm115.977-108.873c2-55.151 50.276-94.871 103.98-94.871 53.418 0 101.981 39.72 103.981 94.871H180.536zm184.536-187.6c21.425-10.287 48.563-22.003 72.558-22.003 31.422 0 54.274 21.717 54.274 53.722 0 20.003-7.427 49.007-14.569 67.867-26.28-42.292-65.986-81.584-112.263-99.586z"] }; +var faIoxhost = { prefix: 'fab', iconName: 'ioxhost', icon: [640, 512, [], "f208", "M616 160h-67.3C511.2 70.7 422.9 8 320 8 183 8 72 119 72 256c0 16.4 1.6 32.5 4.7 48H24c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h67.3c37.5 89.3 125.8 152 228.7 152 137 0 248-111 248-248 0-16.4-1.6-32.5-4.7-48H616c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24zm-96 96c0 110.5-89.5 200-200 200-75.7 0-141.6-42-175.5-104H424c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24H125.8c-3.8-15.4-5.8-31.4-5.8-48 0-110.5 89.5-200 200-200 75.7 0 141.6 42 175.5 104H216c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h298.2c3.8 15.4 5.8 31.4 5.8 48zm-304-24h208c13.3 0 24 10.7 24 24 0 13.2-10.7 24-24 24H216c-13.3 0-24-10.7-24-24 0-13.2 10.7-24 24-24z"] }; +var faItunes = { prefix: 'fab', iconName: 'itunes', icon: [448, 512, [], "f3b4", "M223.6 80.3C129 80.3 52.5 157 52.5 251.5S129 422.8 223.6 422.8s171.2-76.7 171.2-171.2c0-94.6-76.7-171.3-171.2-171.3zm79.4 240c-3.2 13.6-13.5 21.2-27.3 23.8-12.1 2.2-22.2 2.8-31.9-5-11.8-10-12-26.4-1.4-36.8 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 3.2-3.6 2.2-2 2.2-80.8 0-5.6-2.7-7.1-8.4-6.1-4 .7-91.9 17.1-91.9 17.1-5 1.1-6.7 2.6-6.7 8.3 0 116.1.5 110.8-1.2 118.5-2.1 9-7.6 15.8-14.9 19.6-8.3 4.6-23.4 6.6-31.4 5.2-21.4-4-28.9-28.7-14.4-42.9 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 5-5.7.9-127 2.6-133.7.4-2.6 1.5-4.8 3.5-6.4 2.1-1.7 5.8-2.7 6.7-2.7 101-19 113.3-21.4 115.1-21.4 5.7-.4 9 3 9 8.7-.1 170.6.4 161.4-1 167.6zM345.2 32H102.8C45.9 32 0 77.9 0 134.8v242.4C0 434.1 45.9 480 102.8 480h242.4c57 0 102.8-45.9 102.8-102.8V134.8C448 77.9 402.1 32 345.2 32zM223.6 444c-106.3 0-192.5-86.2-192.5-192.5S117.3 59 223.6 59s192.5 86.2 192.5 192.5S329.9 444 223.6 444z"] }; +var faItunesNote = { prefix: 'fab', iconName: 'itunes-note', icon: [384, 512, [], "f3b5", "M381.9 388.2c-6.4 27.4-27.2 42.8-55.1 48-24.5 4.5-44.9 5.6-64.5-10.2-23.9-20.1-24.2-53.4-2.7-74.4 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 6.4-7.2 4.4-4.1 4.4-163.2 0-11.2-5.5-14.3-17-12.3-8.2 1.4-185.7 34.6-185.7 34.6-10.2 2.2-13.4 5.2-13.4 16.7 0 234.7 1.1 223.9-2.5 239.5-4.2 18.2-15.4 31.9-30.2 39.5-16.8 9.3-47.2 13.4-63.4 10.4-43.2-8.1-58.4-58-29.1-86.6 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 10.1-11.5 1.8-256.6 5.2-270.2.8-5.2 3-9.6 7.1-12.9 4.2-3.5 11.8-5.5 13.4-5.5 204-38.2 228.9-43.1 232.4-43.1 11.5-.8 18.1 6 18.1 17.6.2 344.5 1.1 326-1.8 338.5z"] }; +var faJava = { prefix: 'fab', iconName: 'java', icon: [377, 512, [], "f4e4", "M121.6 396s-19.6 11.4 13.9 15.2c40.6 4.6 61.3 4 106-4.5 0 0 11.8 7.4 28.2 13.8C169.5 463.4 42.9 418 121.6 396m-12.2-56.1s-21.9 16.2 11.6 19.7c43.3 4.5 77.6 4.8 136.8-6.6 0 0 8.2 8.3 21.1 12.8-121.3 35.5-256.3 2.9-169.5-25.9m103.2-95.1c24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3.1 0-175.2 43.8-91.5 140.2m132.6 192.6s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6.7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2 204.2 33.2 372.4-14.9 319.4-38.8M131 281.8s-93.1 22.1-33 30.1c25.4 3.4 76 2.6 123.1-1.3 38.5-3.2 77.2-10.2 77.2-10.2s-13.6 5.8-23.4 12.5c-94.5 24.9-277 13.3-224.5-12.1 44.5-21.4 80.6-19 80.6-19m167 93.3c96.1-49.9 51.6-97.9 20.6-91.4-7.6 1.6-11 3-11 3s2.8-4.4 8.2-6.3c61.3-21.6 108.5 63.6-19.8 97.3 0-.1 1.5-1.4 2-2.6M240 0s53.2 53.2-50.5 135c-83.1 65.6-19 103.1 0 145.8-48.5-43.8-84.1-82.3-60.2-118.2C164.4 110.1 261.5 84.5 240 0m-99.5 510.4c92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6"] }; +var faJediOrder = { prefix: 'fab', iconName: 'jedi-order', icon: [448, 512, [], "f50e", "M231.89 335.72l31.44-45.89-20.18 55.5 62.56 9.09-62.56 9.08 24.22 47.43s-30.22-31.77-34.49-36.25c1.76 68.78 2.19 85.7 2.19 85.7s154.4-71.65 68.62-230.09c0 0 106.97-118.07 10.09-190.73 0 0 165.5 99.91 60.55 271.46 0 0 86.78-84.77 41.37-170.54 0 0 78.71 111.01-17.16 233.11 0 0 26.24-16.15 49.45-77.71 0 0-16.93 183.26-221.96 185.66v.02h-4.08v-.02C16.93 479.14 0 295.88 0 295.88c23.21 61.56 49.44 77.71 49.44 77.71-95.87-122.11-17.15-233.11-17.15-233.11-45.41 85.78 41.38 170.54 41.38 170.54-104.95-171.56 60.54-271.46 60.54-271.46-96.88 72.66 10.09 190.73 10.09 190.73-85.78 158.44 68.62 230.09 68.62 230.09s.43-16.93 2.19-85.7l-34.48 36.25 24.22-47.43-62.56-9.08 62.56-9.09-20.18-55.5 31.44 45.89c2.25-87.85 7.82-305.82 7.85-306.85l.01-2.43.02 1 .03-1 .01 2.43c.05 1.72 5.61 219.2 7.86 306.85z"] }; +var faJenkins = { prefix: 'fab', iconName: 'jenkins', icon: [512, 512, [], "f3b6", "M487.1 425c-1.4-11.2-19-23.1-28.2-31.9-5.1-5-29-23.1-30.4-29.9-1.4-6.6 9.7-21.5 13.3-28.9 5.1-10.7 8.8-23.7 11.3-32.6 18.8-66.1 20.7-156.9-6.2-211.2-10.2-20.6-38.6-49-56.4-62.5-42-31.7-119.6-35.3-170.1-16.6-14.1 5.2-27.8 9.8-40.1 17.1-33.1 19.4-68.3 32.5-78.1 71.6-24.2 10.8-31.5 41.8-30.3 77.8.2 7 4.1 15.8 2.7 22.4-.7 3.3-5.2 7.6-6.1 9.8-11.6 27.7-2.3 64 11.1 83.7 8.1 11.9 21.5 22.4 39.2 25.2.7 10.6 3.3 19.7 8.2 30.4 3.1 6.8 14.7 19 10.4 27.7-2.2 4.4-21 13.8-27.3 17.6C89 407.2 73.7 415 54.2 429c-12.6 9-32.3 10.2-29.2 31.1 2.1 14.1 10.1 31.6 14.7 45.8.7 2 1.4 4.1 2.1 6h422c4.9-15.3 9.7-30.9 14.6-47.2 3.4-11.4 10.2-27.8 8.7-39.7zM205.9 33.7c1.8-.5 3.4.7 4.9 2.4-.2 5.2-5.4 5.1-8.9 6.8-5.4 6.7-13.4 9.8-20 17.2-6.8 7.5-14.4 27.7-23.4 30-4.5 1.1-9.7-.8-13.6-.5-10.4.7-17.7 6-28.3 7.5 13.6-29.9 56.1-54 89.3-63.4zm-104.8 93.6c13.5-14.9 32.1-24.1 54.8-25.9 11.7 29.7-8.4 65-.9 97.6 2.3 9.9 10.2 25.4-2.4 25.7.3-28.3-34.8-46.3-61.3-29.6-1.8-21.5-4.9-51.7 9.8-67.8zm36.7 200.2c-1-4.1-2.7-12.9-2.3-15.1 1.6-8.7 17.1-12.5 11-24.7-11.3-.1-13.8 10.2-24.1 11.3-26.7 2.6-45.6-35.4-44.4-58.4 1-19.5 17.6-38.2 40.1-35.8 16 1.8 21.4 19.2 24.5 34.7 9.2.5 22.5-.4 26.9-7.6-.6-17.5-8.8-31.6-8.2-47.7 1-30.3 17.5-57.6 4.8-87.4 13.6-30.9 53.5-55.3 83.1-70 36.6-18.3 94.9-3.7 129.3 15.8 19.7 11.1 34.4 32.7 48.3 50.7-19.5-5.8-36.1 4.2-33.1 20.3 16.3-14.9 44.2-.2 52.5 16.4 7.9 15.8 7.8 39.3 9 62.8 2.9 57-10.4 115.9-39.1 157.1-7.7 11-14.1 23-24.9 30.6-26 18.2-65.4 34.7-99.2 23.4-44.7-15-65-44.8-89.5-78.8.7 18.7 13.8 34.1 26.8 48.4 11.3 12.5 25 26.6 39.7 32.4-12.3-2.9-31.1-3.8-36.2 7.2-28.6-1.9-55.1-4.8-68.7-24.2-10.6-15.4-21.4-41.4-26.3-61.4zm222 124.1c4.1-3 11.1-2.9 17.4-3.6-5.4-2.7-13-3.7-19.3-2.2-.1-4.2-2-6.8-3.2-10.2 10.6-3.8 35.5-28.5 49.6-20.3 6.7 3.9 9.5 26.2 10.1 37 .4 9-.8 18-4.5 22.8-18.8-.6-35.8-2.8-50.7-7 .9-6.1-1-12.1.6-16.5zm-17.2-20c-16.8.8-26-1.2-38.3-10.8.2-.8 1.4-.5 1.5-1.4 18 8 40.8-3.3 59-4.9-7.9 5.1-14.6 11.6-22.2 17.1zm-12.1 33.2c-1.6-9.4-3.5-12-2.8-20.2 25-16.6 29.7 28.6 2.8 20.2zM226 438.6c-11.6-.7-48.1-14-38.5-23.7 9.4 6.5 27.5 4.9 41.3 7.3.8 4.4-2.8 10.2-2.8 16.4zM57.7 497.1c-4.3-12.7-9.2-25.1-14.8-36.9 30.8-23.8 65.3-48.9 102.2-63.5 2.8-1.1 23.2 25.4 26.2 27.6 16.5 11.7 37 21 56.2 30.2 1.2 8.8 3.9 20.2 8.7 35.5.7 2.3 1.4 4.7 2.2 7.2H57.7zm240.6 5.7h-.8c.3-.2.5-.4.8-.5v.5zm7.5-5.7c2.1-1.4 4.3-2.8 6.4-4.3 1.1 1.4 2.2 2.8 3.2 4.3h-9.6zm15.1-24.7c-10.8 7.3-20.6 18.3-33.3 25.2-6 3.3-27 11.7-33.4 10.2-3.6-.8-3.9-5.3-5.4-9.5-3.1-9-10.1-23.4-10.8-37-.8-17.2-2.5-46 16-42.4 14.9 2.9 32.3 9.7 43.9 16.1 7.1 3.9 11.1 8.6 21.9 9.5-.1 1.4-.1 2.8-.2 4.3-5.9 3.9-15.3 3.8-21.8 7.1 9.5.4 17 2.7 23.5 5.9-.1 3.4-.3 7-.4 10.6zm53.4 24.7h-14c-.1-3.2-2.8-5.8-6.1-5.8s-5.9 2.6-6.1 5.8h-17.4c-2.8-4.4-5.7-8.6-8.9-12.5 2.1-2.2 4-4.7 6-6.9 9 3.7 14.8-4.9 21.7-4.2 7.9.8 14.2 11.7 25.4 11l-.6 12.6zm8.7 0c.2-4 .4-7.8.6-11.5 15.6-7.3 29 1.3 35.7 11.5H383zm83.4-37c-2.3 11.2-5.8 24-9.9 37.1-.2-.1-.4-.1-.6-.1H428c.6-1.1 1.2-2.2 1.9-3.3-2.6-6.1-9-8.7-10.9-15.5 12.1-22.7 6.5-93.4-24.2-78.5 4.3-6.3 15.6-11.5 20.8-19.3 13 10.4 20.8 20.3 33.2 31.4 6.8 6 20 13.3 21.4 23.1.8 5.5-2.6 18.9-3.8 25.1zM222.2 130.5c5.4-14.9 27.2-34.7 45-32 7.7 1.2 18 8.2 12.2 17.7-30.2-7-45.2 12.6-54.4 33.1-8.1-2-4.9-13.1-2.8-18.8zm184.1 63.1c8.2-3.6 22.4-.7 29.6-5.3-4.2-11.5-10.3-21.4-9.3-37.7.5 0 1 0 1.4.1 6.8 14.2 12.7 29.2 21.4 41.7-5.7 13.5-43.6 25.4-43.1 1.2zm20.4-43zm-117.2 45.7c-6.8-10.9-19-32.5-14.5-45.3 6.5 11.9 8.6 24.4 17.8 33.3 4.1 4 12.2 9 8.2 20.2-.9 2.7-7.8 8.6-11.7 9.7-14.4 4.3-47.9.9-36.6-17.1 11.9.7 27.9 7.8 36.8-.8zm27.3 70c3.8 6.6 1.4 18.7 12.1 20.6 20.2 3.4 43.6-12.3 58.1-17.8 9-15.2-.8-20.7-8.9-30.5-16.6-20-38.8-44.8-38-74.7 6.7-4.9 7.3 7.4 8.2 9.7 8.7 20.3 30.4 46.2 46.3 63.5 3.9 4.3 10.3 8.4 11 11.2 2.1 8.2-5.4 18-4.5 23.5-21.7 13.9-45.8 29.1-81.4 25.6-7.4-6.7-10.3-21.4-2.9-31.1zm-201.3-9.2c-6.8-3.9-8.4-21-16.4-21.4-11.4-.7-9.3 22.2-9.3 35.5-7.8-7.1-9.2-29.1-3.5-40.3-6.6-3.2-9.5 3.6-13.1 5.9 4.7-34.1 49.8-15.8 42.3 20.3zm299.6 28.8c-10.1 19.2-24.4 40.4-54 41-.6-6.2-1.1-15.6 0-19.4 22.7-2.2 36.6-13.7 54-21.6zm-141.9 12.4c18.9 9.9 53.6 11 79.3 10.2 1.4 5.6 1.3 12.6 1.4 19.4-33 1.8-72-6.4-80.7-29.6zm92.2 46.7c-1.7 4.3-5.3 9.3-9.8 11.1-12.1 4.9-45.6 8.7-62.4-.3-10.7-5.7-17.5-18.5-23.4-26-2.8-3.6-16.9-12.9-.2-12.9 13.1 32.7 58 29 95.8 28.1z"] }; +var faJoget = { prefix: 'fab', iconName: 'joget', icon: [496, 512, [], "f3b7", "M227.5 468.7c-9-13.6-19.9-33.3-23.7-42.4-5.7-13.7-27.2-45.6 31.2-67.1 51.7-19.1 176.7-16.5 208.8-17.6-4 9-8.6 17.9-13.9 26.6-40.4 65.5-110.4 101.5-182 101.5-6.8 0-13.6-.4-20.4-1M66.1 143.9C128 43.4 259.6 12.2 360.1 74.1c74.8 46.1 111.2 130.9 99.3 212.7-24.9-.5-179.3-3.6-230.3-4.9-55.5-1.4-81.7-20.8-58.5-48.2 23.2-27.4 51.1-40.7 68.9-51.2 17.9-10.5 27.3-33.7-23.6-29.7C87.3 161.5 48.6 252.1 37.6 293c-8.8-49.7-.1-102.7 28.5-149.1m-29.2-18c-71.9 116.6-35.6 269.3 81 341.2 116.6 71.9 269.3 35.6 341.2-80.9 71.9-116.6 35.6-269.4-81-341.2-40.5-25.1-85.5-37-129.9-37C165 8 83.8 49.9 36.9 125.9m244.4 110.4c-31.5 20.5-65.3 31.3-65.3 31.3l169.5-1.6 46.5-23.4s3.6-9.5-19.1-15.5c-22.7-6-57 11.3-86.7 27.2-29.7 15.8-31.1 8.2-31.1 8.2s40.2-28.1 50.7-34.5c10.5-6.4 31.9-14 13.4-24.6-3.2-1.8-6.7-2.7-10.4-2.7-17.8 0-41.5 18.7-67.5 35.6"] }; +var faJoomla = { prefix: 'fab', iconName: 'joomla', icon: [448, 512, [], "f1aa", "M.6 92.1C.6 58.8 27.4 32 60.4 32c30 0 54.5 21.9 59.2 50.2 32.6-7.6 67.1.6 96.5 30l-44.3 44.3c-20.5-20.5-42.6-16.3-55.4-3.5-14.3 14.3-14.3 37.9 0 52.2l99.5 99.5-44 44.3c-87.7-87.2-49.7-49.7-99.8-99.7-26.8-26.5-35-64.8-24.8-98.9C20.4 144.6.6 120.7.6 92.1zm129.5 116.4l44.3 44.3c10-10 89.7-89.7 99.7-99.8 14.3-14.3 37.6-14.3 51.9 0 12.8 12.8 17 35-3.5 55.4l44 44.3c31.2-31.2 38.5-67.6 28.9-101.2 29.2-4.1 51.9-29.2 51.9-59.5 0-33.2-26.8-60.1-59.8-60.1-30.3 0-55.4 22.5-59.5 51.6-33.8-9.9-71.7-1.5-98.3 25.1-18.3 19.1-71.1 71.5-99.6 99.9zm266.3 152.2c8.2-32.7-.9-68.5-26.3-93.9-11.8-12.2 5 4.7-99.5-99.7l-44.3 44.3 99.7 99.7c14.3 14.3 14.3 37.6 0 51.9-12.8 12.8-35 17-55.4-3.5l-44 44.3c27.6 30.2 68 38.8 102.7 28 5.5 27.4 29.7 48.1 58.9 48.1 33 0 59.8-26.8 59.8-60.1 0-30.2-22.5-55-51.6-59.1zm-84.3-53.1l-44-44.3c-87 86.4-50.4 50.4-99.7 99.8-14.3 14.3-37.6 14.3-51.9 0-13.1-13.4-16.9-35.3 3.2-55.4l-44-44.3c-30.2 30.2-38 65.2-29.5 98.3-26.7 6-46.2 29.9-46.2 58.2C0 453.2 26.8 480 59.8 480c28.6 0 52.5-19.8 58.6-46.7 32.7 8.2 68.5-.6 94.2-26 32.1-32 12.2-12.4 99.5-99.7z"] }; +var faJs = { prefix: 'fab', iconName: 'js', icon: [448, 512, [], "f3b8", "M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"] }; +var faJsSquare = { prefix: 'fab', iconName: 'js-square', icon: [448, 512, [], "f3b9", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM243.8 381.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"] }; +var faJsfiddle = { prefix: 'fab', iconName: 'jsfiddle', icon: [576, 512, [], "f1cc", "M510.634 237.462c-4.727-2.621-5.664-5.748-6.381-10.776-2.352-16.488-3.539-33.619-9.097-49.095-35.895-99.957-153.99-143.386-246.849-91.646-27.37 15.25-48.971 36.369-65.493 63.903-3.184-1.508-5.458-2.71-7.824-3.686-30.102-12.421-59.049-10.121-85.331 9.167-25.531 18.737-36.422 44.548-32.676 76.408.355 3.025-1.967 7.621-4.514 9.545-39.712 29.992-56.031 78.065-41.902 124.615 13.831 45.569 57.514 79.796 105.608 81.433 30.291 1.031 60.637.546 90.959.539 84.041-.021 168.09.531 252.12-.48 52.664-.634 96.108-36.873 108.212-87.293 11.54-48.074-11.144-97.3-56.832-122.634zm21.107 156.88c-18.23 22.432-42.343 35.253-71.28 35.65-56.874.781-113.767.23-170.652.23 0 .7-163.028.159-163.728.154-43.861-.332-76.739-19.766-95.175-59.995-18.902-41.245-4.004-90.848 34.186-116.106 9.182-6.073 12.505-11.566 10.096-23.136-5.49-26.361 4.453-47.956 26.42-62.981 22.987-15.723 47.422-16.146 72.034-3.083 10.269 5.45 14.607 11.564 22.198-2.527 14.222-26.399 34.557-46.727 60.671-61.294 97.46-54.366 228.37 7.568 230.24 132.697.122 8.15 2.412 12.428 9.848 15.894 57.56 26.829 74.456 96.122 35.142 144.497zm-87.789-80.499c-5.848 31.157-34.622 55.096-66.666 55.095-16.953-.001-32.058-6.545-44.079-17.705-27.697-25.713-71.141-74.98-95.937-93.387-20.056-14.888-41.99-12.333-60.272 3.782-49.996 44.071 15.859 121.775 67.063 77.188 4.548-3.96 7.84-9.543 12.744-12.844 8.184-5.509 20.766-.884 13.168 10.622-17.358 26.284-49.33 38.197-78.863 29.301-28.897-8.704-48.84-35.968-48.626-70.179 1.225-22.485 12.364-43.06 35.414-55.965 22.575-12.638 46.369-13.146 66.991 2.474C295.68 280.7 320.467 323.97 352.185 343.47c24.558 15.099 54.254 7.363 68.823-17.506 28.83-49.209-34.592-105.016-78.868-63.46-3.989 3.744-6.917 8.932-11.41 11.72-10.975 6.811-17.333-4.113-12.809-10.353 20.703-28.554 50.464-40.44 83.271-28.214 31.429 11.714 49.108 44.366 42.76 78.186z"] }; +var faKeybase = { prefix: 'fab', iconName: 'keybase', icon: [412, 512, [], "f4f5", "M177.2 430.9c0 9.8-8 17.8-17.8 17.8s-17.8-8-17.8-17.8 8-17.8 17.8-17.8c9.8-.1 17.8 7.9 17.8 17.8zM270 413c-9.8 0-17.8 8-17.8 17.8s8 17.8 17.8 17.8 17.8-8 17.8-17.8-8-17.8-17.8-17.8zm142.3-36c0 38.9-7.6 73.9-22.2 103h-27.3c23.5-38.7 30.5-94.8 22.4-134.3-16.1 29.5-52.1 38.6-85.9 28.8-127.8-37.5-192.5 19.7-234.6 50.3l18.9-59.3-39.9 42.3c4.8 26.7 15.7 51.3 31.2 72.3H46.1c-9.7-15.8-17.2-33-22.2-51.3L.1 454c0-74.9-5.5-147.6 61.5-215.2 20.2-20.4 43.7-36.2 69.1-46.7-6.8-13.5-9.5-29.2-7.8-46l-19.9-1.2c-17.9-1.1-31.6-16.5-30.6-34.4v-.1L74 84.2c1.1-17.1 15.4-30.6 32.5-30.6 1.3 0-.3-.1 28.2 1.7 13.9.8 21.5 9.8 22.8 11.4 7.1-10.4 14.5-20.5 24.6-34.5l20.6 12.1c-13.6 29-9.1 36.2-9 36.3 3.9 0 13.9-.5 32.4 5.7C246 92.9 262 107 271 126c.4.9 15.5 29 1.2 62.6 19 6.1 51.3 19.9 82.4 51.8 36.6 37.6 57.7 87.4 57.7 136.6zM128 122.3c3.2-10 7.7-19.7 13.1-29.4.1-2 2.2-13.1-7.8-13.8-28.5-1.8-26.3-1.6-26.7-1.6-4.6 0-8.3 3.5-8.6 8.1l-1.6 26.2c-.3 4.7 3.4 8.8 8.1 9.1l23.5 1.4zm25.8 61.8c5.6 9.4 14.1 16.1 22.3 20 0-21.2 28.5-41.9 52.8-17.5l8.4 10.3c20.8-18.8 19.4-45.3 12.1-60.9-13.8-29.1-46.9-32-54.3-31.7-10.3.4-19.7-5.4-23.7-15.3-13.7 21.2-37.2 62.5-17.6 95.1zm82.9 68.4L217 268.6c-1.9 1.6-2.2 4.4-.6 6.3l8.9 10.9c1 1.2 3.8 2.7 6.3.6l19.6-16 5.5 6.8c4.9 6 13.8-1.4 9-7.3-63.6-78.3-41.5-51.1-55.3-68.1-4.7-6-13.9 1.4-9 7.3 1.9 2.3 18.4 22.6 19.8 24.3l-9.6 7.9c-4.6 3.8 2.6 13.3 7.4 9.4l9.7-8 8 9.8zm118.4 25.7c-16.9-23.7-42.6-46.7-73.4-60.4-7.9-3.5-15-6.1-22.9-8.6-2 2.2-4.1 4.3-6.4 6.2l31.9 39.2c10.4 12.7 8.5 31.5-4.2 41.9-1.3 1.1-13.1 10.7-29 4.9-2.9 2.3-10.1 9.9-22.2 9.9-8.6 0-16.6-3.8-22.1-10.5l-8.9-10.9c-6.3-7.8-7.9-17.9-5-26.8-8.2-9.9-8.3-21.3-4.6-30-7.2-1.3-26.7-6.2-42.7-21.4-55.8 20.7-88 64.4-101.3 91.2-14.9 30.2-18.8 60.9-19.9 90.2 8.2-8.7-3.9 4.1 114-120.9l-29.9 93.6c57.8-31.1 124-36 197.4-14.4 23.6 6.9 45.1 1.6 56-13.9 11.1-15.6 8.5-37.7-6.8-59.3zM110.6 107.3l15.6 1 1-15.6-15.6-1-1 15.6z"] }; +var faKeycdn = { prefix: 'fab', iconName: 'keycdn', icon: [512, 512, [], "f3ba", "M63.8 409.3l60.5-59c32.1 42.8 71.1 66 126.6 67.4 30.5.7 60.3-7 86.4-22.4 5.1 5.3 18.5 19.5 20.9 22-32.2 20.7-69.6 31.1-108.1 30.2-43.3-1.1-84.6-16.7-117.7-44.4.3-.6-38.2 37.5-38.6 37.9 9.5 29.8-13.1 62.4-46.3 62.4C20.7 503.3 0 481.7 0 454.9c0-34.3 33.1-56.6 63.8-45.6zm354.9-252.4c19.1 31.3 29.6 67.4 28.7 104-1.1 44.8-19 87.5-48.6 121 .3.3 23.8 25.2 24.1 25.5 9.6-1.3 19.2 2 25.9 9.1 11.3 12 10.9 30.9-1.1 42.4-12 11.3-30.9 10.9-42.4-1.1-6.7-7-9.4-16.8-7.6-26.3-24.9-26.6-44.4-47.2-44.4-47.2 42.7-34.1 63.3-79.6 64.4-124.2.7-28.9-7.2-57.2-21.1-82.2l22.1-21zM104 53.1c6.7 7 9.4 16.8 7.6 26.3l45.9 48.1c-4.7 3.8-13.3 10.4-22.8 21.3-25.4 28.5-39.6 64.8-40.7 102.9-.7 28.9 6.1 57.2 20 82.4l-22 21.5C72.7 324 63.1 287.9 64.2 250.9c1-44.6 18.3-87.6 47.5-121.1l-25.3-26.4c-9.6 1.3-19.2-2-25.9-9.1-11.3-12-10.9-30.9 1.1-42.4C73.5 40.7 92.2 41 104 53.1zM464.9 8c26 0 47.1 22.4 47.1 48.3S490.9 104 464.9 104c-6.3.1-14-1.1-15.9-1.8l-62.9 59.7c-32.7-43.6-76.7-65.9-126.9-67.2-30.5-.7-60.3 6.8-86.2 22.4l-21.1-22C184.1 74.3 221.5 64 260 64.9c43.3 1.1 84.6 16.7 117.7 44.6l41.1-38.6c-1.5-4.7-2.2-9.6-2.2-14.5C416.5 29.7 438.9 8 464.9 8zM256.7 113.4c5.5 0 10.9.4 16.4 1.1 78.1 9.8 133.4 81.1 123.8 159.1-9.8 78.1-81.1 133.4-159.1 123.8-78.1-9.8-133.4-81.1-123.8-159.2 9.3-72.4 70.1-124.6 142.7-124.8zm-59 119.4c.6 22.7 12.2 41.8 32.4 52.2l-11 51.7h73.7l-11-51.7c20.1-10.9 32.1-29 32.4-52.2-.4-32.8-25.8-57.5-58.3-58.3-32.1.8-57.3 24.8-58.2 58.3zM256 160"] }; +var faKickstarter = { prefix: 'fab', iconName: 'kickstarter', icon: [448, 512, [], "f3bb", "M400 480H48c-26.4 0-48-21.6-48-48V80c0-26.4 21.6-48 48-48h352c26.4 0 48 21.6 48 48v352c0 26.4-21.6 48-48 48zM199.6 178.5c0-30.7-17.6-45.1-39.7-45.1-25.8 0-40 19.8-40 44.5v154.8c0 25.8 13.7 45.6 40.5 45.6 21.5 0 39.2-14 39.2-45.6v-41.8l60.6 75.7c12.3 14.9 39 16.8 55.8 0 14.6-15.1 14.8-36.8 4-50.4l-49.1-62.8 40.5-58.7c9.4-13.5 9.5-34.5-5.6-49.1-16.4-15.9-44.6-17.3-61.4 7l-44.8 64.7v-38.8z"] }; +var faKickstarterK = { prefix: 'fab', iconName: 'kickstarter-k', icon: [384, 512, [], "f3bc", "M147.3 114.4c0-56.2-32.5-82.4-73.4-82.4C26.2 32 0 68.2 0 113.4v283c0 47.3 25.3 83.4 74.9 83.4 39.8 0 72.4-25.6 72.4-83.4v-76.5l112.1 138.3c22.7 27.2 72.1 30.7 103.2 0 27-27.6 27.3-67.4 7.4-92.2l-90.8-114.8 74.9-107.4c17.4-24.7 17.5-63.1-10.4-89.8-30.3-29-82.4-31.6-113.6 12.8L147.3 185v-70.6z"] }; +var faKorvue = { prefix: 'fab', iconName: 'korvue', icon: [446, 512, [], "f42f", "M386.5 34h-327C26.8 34 0 60.8 0 93.5v327.1C0 453.2 26.8 480 59.5 480h327.1c33 0 59.5-26.8 59.5-59.5v-327C446 60.8 419.2 34 386.5 34zM87.1 120.8h96v116l61.8-116h110.9l-81.2 132H87.1v-132zm161.8 272.1l-65.7-113.6v113.6h-96V262.1h191.5l88.6 130.8H248.9z"] }; +var faLaravel = { prefix: 'fab', iconName: 'laravel', icon: [640, 512, [], "f3bd", "M637.5 241.6c-4.2-4.8-62.8-78.1-73.1-90.5-10.3-12.4-15.4-10.2-21.7-9.3-6.4.9-80.5 13.4-89.1 14.8-8.6 1.5-14 4.9-8.7 12.3 4.7 6.6 53.4 75.7 64.2 90.9l-193.7 46.4L161.2 48.7c-6.1-9.1-7.4-12.3-21.4-11.6-14 .6-120.9 9.5-128.5 10.2-7.6.6-16 4-8.4 22s129 279.6 132.4 287.2c3.4 7.6 12.2 20 32.8 15 21.1-5.1 94.3-24.2 134.3-34.7 21.1 38.3 64.2 115.9 72.2 127 10.6 14.9 18 12.4 34.3 7.4 12.8-3.9 199.6-71.1 208-74.5 8.4-3.5 13.6-5.9 7.9-14.4-4.2-6.2-53.5-72.2-79.3-106.8 17.7-4.7 80.6-21.4 87.3-23.3 7.9-2 9-5.8 4.7-10.6zm-352.2 72c-2.3.5-110.8 26.5-116.6 27.8-5.8 1.3-5.8.7-6.5-1.3-.7-2-129-266.7-130.8-270-1.8-3.3-1.7-5.9 0-5.9s102.5-9 106-9.2c3.6-.2 3.2.6 4.5 2.8 0 0 142.2 245.4 144.6 249.7 2.6 4.3 1.1 5.6-1.2 6.1zm306 57.4c1.7 2.7 3.5 4.5-2 6.4-5.4 2-183.7 62.1-187.1 63.6-3.5 1.5-6.2 2-10.6-4.5s-62.4-106.8-62.4-106.8L518 280.6c4.7-1.5 6.2-2.5 9.2 2.2 2.9 4.8 62.4 85.5 64.1 88.2zm12.1-134.1c-4.2.9-73.6 18.1-73.6 18.1l-56.7-77.8c-1.6-2.3-2.9-4.5 1.1-5s68.4-12.2 71.3-12.8c2.9-.7 5.4-1.5 9 3.4 3.6 4.9 52.6 67 54.5 69.4 1.8 2.3-1.4 3.7-5.6 4.7z"] }; +var faLastfm = { prefix: 'fab', iconName: 'lastfm', icon: [512, 512, [], "f202", "M225.8 367.1l-18.8-51s-30.5 34-76.2 34c-40.5 0-69.2-35.2-69.2-91.5 0-72.1 36.4-97.9 72.1-97.9 66.5 0 74.8 53.3 100.9 134.9 18.8 56.9 54 102.6 155.4 102.6 72.7 0 122-22.3 122-80.9 0-72.9-62.7-80.6-115-92.1-25.8-5.9-33.4-16.4-33.4-34 0-19.9 15.8-31.7 41.6-31.7 28.2 0 43.4 10.6 45.7 35.8l58.6-7c-4.7-52.8-41.1-74.5-100.9-74.5-52.8 0-104.4 19.9-104.4 83.9 0 39.9 19.4 65.1 68 76.8 44.9 10.6 79.8 13.8 79.8 45.7 0 21.7-21.1 30.5-61 30.5-59.2 0-83.9-31.1-97.9-73.9-32-96.8-43.6-163-161.3-163C45.7 113.8 0 168.3 0 261c0 89.1 45.7 137.2 127.9 137.2 66.2 0 97.9-31.1 97.9-31.1z"] }; +var faLastfmSquare = { prefix: 'fab', iconName: 'lastfm-square', icon: [448, 512, [], "f203", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-92.2 312.9c-63.4 0-85.4-28.6-97.1-64.1-16.3-51-21.5-84.3-63-84.3-22.4 0-45.1 16.1-45.1 61.2 0 35.2 18 57.2 43.3 57.2 28.6 0 47.6-21.3 47.6-21.3l11.7 31.9s-19.8 19.4-61.2 19.4c-51.3 0-79.9-30.1-79.9-85.8 0-57.9 28.6-92 82.5-92 73.5 0 80.8 41.4 100.8 101.9 8.8 26.8 24.2 46.2 61.2 46.2 24.9 0 38.1-5.5 38.1-19.1 0-19.9-21.8-22-49.9-28.6-30.4-7.3-42.5-23.1-42.5-48 0-40 32.3-52.4 65.2-52.4 37.4 0 60.1 13.6 63 46.6l-36.7 4.4c-1.5-15.8-11-22.4-28.6-22.4-16.1 0-26 7.3-26 19.8 0 11 4.8 17.6 20.9 21.3 32.7 7.1 71.8 12 71.8 57.5.1 36.7-30.7 50.6-76.1 50.6z"] }; +var faLeanpub = { prefix: 'fab', iconName: 'leanpub', icon: [576, 512, [], "f212", "M386.539 111.485l15.096 248.955-10.979-.275c-36.232-.824-71.64 8.783-102.657 27.997-31.016-19.214-66.424-27.997-102.657-27.997-45.564 0-82.07 10.705-123.516 27.723L93.117 129.6c28.546-11.803 61.484-18.115 92.226-18.115 41.173 0 73.836 13.175 102.657 42.544 27.723-28.271 59.013-41.721 98.539-42.544zM569.07 448c-25.526 0-47.485-5.215-70.542-15.645-34.31-15.645-69.993-24.978-107.871-24.978-38.977 0-74.934 12.901-102.657 40.623-27.723-27.723-63.68-40.623-102.657-40.623-37.878 0-73.561 9.333-107.871 24.978C55.239 442.236 32.731 448 8.303 448H6.93L49.475 98.859C88.726 76.626 136.486 64 181.775 64 218.83 64 256.984 71.685 288 93.095 319.016 71.685 357.17 64 394.225 64c45.289 0 93.049 12.626 132.3 34.859L569.07 448zm-43.368-44.741l-34.036-280.246c-30.742-13.999-67.248-21.41-101.009-21.41-38.428 0-74.385 12.077-102.657 38.702-28.272-26.625-64.228-38.702-102.657-38.702-33.761 0-70.267 7.411-101.009 21.41L50.298 403.259c47.211-19.487 82.894-33.486 135.045-33.486 37.604 0 70.817 9.606 102.657 29.644 31.84-20.038 65.052-29.644 102.657-29.644 52.151 0 87.834 13.999 135.045 33.486z"] }; +var faLess = { prefix: 'fab', iconName: 'less', icon: [640, 512, [], "f41d", "M612.7 219c0-20.5 3.2-32.6 3.2-54.6 0-34.2-12.6-45.2-40.5-45.2h-20.5v24.2h6.3c14.2 0 17.3 4.7 17.3 22.1 0 16.3-1.6 32.6-1.6 51.5 0 24.2 7.9 33.6 23.6 37.3v1.6c-15.8 3.7-23.6 13.1-23.6 37.3 0 18.9 1.6 34.2 1.6 51.5 0 17.9-3.7 22.6-17.3 22.6v.5h-6.3V393h20.5c27.8 0 40.5-11 40.5-45.2 0-22.6-3.2-34.2-3.2-54.6 0-11 6.8-22.6 27.3-23.6v-27.3c-20.5-.7-27.3-12.3-27.3-23.3zm-105.6 32c-15.8-6.3-30.5-10-30.5-20.5 0-7.9 6.3-12.6 17.9-12.6s22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-21 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51s-22.5-41-43-47.8zm-358.9 59.4c-3.7 0-8.4-3.2-8.4-13.1V119.1H65.2c-28.4 0-41 11-41 45.2 0 22.6 3.2 35.2 3.2 54.6 0 11-6.8 22.6-27.3 23.6v27.3c20.5.5 27.3 12.1 27.3 23.1 0 19.4-3.2 31-3.2 53.6 0 34.2 12.6 45.2 40.5 45.2h20.5v-24.2h-6.3c-13.1 0-17.3-5.3-17.3-22.6s1.6-32.1 1.6-51.5c0-24.2-7.9-33.6-23.6-37.3v-1.6c15.8-3.7 23.6-13.1 23.6-37.3 0-18.9-1.6-34.2-1.6-51.5s3.7-22.1 17.3-22.1H93v150.8c0 32.1 11 53.1 43.1 53.1 10 0 17.9-1.6 23.6-3.7l-5.3-34.2c-3.1.8-4.6.8-6.2.8zM379.9 251c-16.3-6.3-31-10-31-20.5 0-7.9 6.3-12.6 17.9-12.6 11.6 0 22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-20.5 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51 .1-28.9-22.5-41-43-47.8zm-155-68.8c-38.4 0-75.1 32.1-74.1 82.5 0 52 34.2 82.5 79.3 82.5 18.9 0 39.9-6.8 56.2-17.9l-15.8-27.8c-11.6 6.8-22.6 10-34.2 10-21 0-37.3-10-41.5-34.2H290c.5-3.7 1.6-11 1.6-19.4.6-42.6-22.6-75.7-66.7-75.7zm-30 66.2c3.2-21 15.8-31 30.5-31 18.9 0 26.3 13.1 26.3 31h-56.8z"] }; +var faLine = { prefix: 'fab', iconName: 'line', icon: [448, 512, [], "f3c0", "M272.1 204.2v71.1c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.1 0-2.1-.6-2.6-1.3l-32.6-44v42.2c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.8 0-3.2-1.4-3.2-3.2v-71.1c0-1.8 1.4-3.2 3.2-3.2H219c1 0 2.1.5 2.6 1.4l32.6 44v-42.2c0-1.8 1.4-3.2 3.2-3.2h11.4c1.8-.1 3.3 1.4 3.3 3.1zm-82-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 1.8 1.4 3.2 3.2 3.2h11.4c1.8 0 3.2-1.4 3.2-3.2v-71.1c0-1.7-1.4-3.2-3.2-3.2zm-27.5 59.6h-31.1v-56.4c0-1.8-1.4-3.2-3.2-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 .9.3 1.6.9 2.2.6.5 1.3.9 2.2.9h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.7-1.4-3.2-3.1-3.2zM332.1 201h-45.7c-1.7 0-3.2 1.4-3.2 3.2v71.1c0 1.7 1.4 3.2 3.2 3.2h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2V234c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2v-11.4c-.1-1.7-1.5-3.2-3.2-3.2zM448 113.7V399c-.1 44.8-36.8 81.1-81.7 81H81c-44.8-.1-81.1-36.9-81-81.7V113c.1-44.8 36.9-81.1 81.7-81H367c44.8.1 81.1 36.8 81 81.7zm-61.6 122.6c0-73-73.2-132.4-163.1-132.4-89.9 0-163.1 59.4-163.1 132.4 0 65.4 58 120.2 136.4 130.6 19.1 4.1 16.9 11.1 12.6 36.8-.7 4.1-3.3 16.1 14.1 8.8 17.4-7.3 93.9-55.3 128.2-94.7 23.6-26 34.9-52.3 34.9-81.5z"] }; +var faLinkedin = { prefix: 'fab', iconName: 'linkedin', icon: [448, 512, [], "f08c", "M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"] }; +var faLinkedinIn = { prefix: 'fab', iconName: 'linkedin-in', icon: [448, 512, [], "f0e1", "M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"] }; +var faLinode = { prefix: 'fab', iconName: 'linode', icon: [448, 512, [], "f2b8", "M437.4 226.3c-.3-.9-.9-1.4-1.4-2l-70-38.6c-.9-.6-2-.6-3.1 0l-58.9 36c-.9.6-1.4 1.7-1.4 2.6l-.9 31.4-24-16c-.9-.6-2.3-.6-3.1 0L240 260.9l-1.4-35.1c0-.9-.6-2-1.4-2.3l-36-24.3 33.7-17.4c1.1-.6 1.7-1.7 1.7-2.9l-5.7-132.3c0-.9-.9-2-1.7-2.6L138.6.3c-.9-.3-1.7-.3-2.3-.3L12.6 38.6c-1.4.6-2.3 2-2 3.7L38 175.4c.9 3.4 34 27.4 38.6 30.9l-26.9 12.9c-1.4.9-2 2.3-1.7 3.4l20.6 100.3c.6 2.9 23.7 23.1 27.1 26.3l-17.4 10.6c-.9.6-1.7 2-1.4 3.1 1.4 7.1 15.4 77.7 16.9 79.1l65.1 69.1c.6.6 1.4.6 2.3.9.6 0 1.1-.3 1.7-.6l83.7-66.9c.9-.6 1.1-1.4 1.1-2.3l-2-46 28 23.7c1.1.9 2.9.9 4 0l66.9-53.4c.9-.6 1.1-1.4 1.1-2.3l2.3-33.4 20.3 14c1.1.9 2.6.9 3.7 0l54.6-43.7c.6-.3 1.1-1.1 1.1-2 .9-6.5 10.3-70.8 9.7-72.8zm-204.8 4.8l4 92.6-90.6 61.2-14-96.6 100.6-57.2zm-7.7-180l5.4 126-106.6 55.4L104 97.7l120.9-46.6zM44 173.1L18 48l79.7 49.4 19.4 132.9L44 173.1zm30.6 147.8L55.7 230l70 58.3 13.7 93.4-64.8-60.8zm24.3 117.7l-13.7-67.1 61.7 60.9 9.7 67.4-57.7-61.2zm64.5 64.5l-10.6-70.9 85.7-61.4 3.1 70-78.2 62.3zm82-115.1c0-3.4.9-22.9-2-25.1l-24.3-20 22.3-14.9c2.3-1.7 1.1-5.7 1.1-8l29.4 22.6.6 68.3-27.1-22.9zm94.3-25.4l-60.9 48.6-.6-68.6 65.7-46.9-4.2 66.9zm27.7-25.7l-19.1-13.4 2-34c.3-.9-.3-2-1.1-2.6L308 259.7l.6-30 64.6 40.6-5.8 66.6zm54.6-39.8l-48.3 38.3 5.7-65.1 51.1-36.6-8.5 63.4z"] }; +var faLinux = { prefix: 'fab', iconName: 'linux', icon: [448, 512, [], "f17c", "M196.1 123.6c-.2-1.4 1.9-2.3 3.2-2.9 1.7-.7 3.9-1 5.5-.1.4.2.8.7.6 1.1-.4 1.2-2.4 1-3.5 1.6-1 .5-1.8 1.7-3 1.7-1 .1-2.7-.4-2.8-1.4zm24.7-.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm214.7 310.2c-.5 8.2-6.5 13.8-13.9 18.3-14.9 9-37.3 15.8-50.9 32.2l-2.6-2.2 2.6 2.2c-14.2 16.9-31.7 26.6-48.3 27.9-16.5 1.3-32-6.3-40.3-23v-.1c-1.1-2.1-1.9-4.4-2.5-6.7-21.5 1.2-40.2-5.3-55.1-4.1-22 1.2-35.8 6.5-48.3 6.6-4.8 10.6-14.3 17.6-25.9 20.2-16 3.7-36.1 0-55.9-10.4l1.6-3-1.6 3c-18.5-9.8-42-8.9-59.3-12.5-8.7-1.8-16.3-5-20.1-12.3-3.7-7.3-3-17.3 2.2-31.7 1.7-5.1.4-12.7-.8-20.8-.6-3.9-1.2-7.9-1.2-11.8 0-4.3.7-8.5 2.8-12.4 4.5-8.5 11.8-12.1 18.5-14.5 6.7-2.4 12.8-4 17-8.3 5.2-5.5 10.1-14.4 16.6-20.2-2.6-17.2.2-35.4 6.2-53.3 12.6-37.9 39.2-74.2 58.1-96.7 16.1-22.9 20.8-41.3 22.5-64.7C158 103.4 132.4-.2 234.8 0c80.9.1 76.3 85.4 75.8 131.3-.3 30.1 16.3 50.5 33.4 72 15.2 18 35.1 44.3 46.5 74.4 9.3 24.6 12.9 51.8 3.7 79.1 1.4.5 2.8 1.2 4.1 2 1.4.8 2.7 1.8 4 2.9 6.6 5.6 8.7 14.3 10.5 22.4 1.9 8.1 3.6 15.7 7.2 19.7 11.1 12.4 15.9 21.5 15.5 29.7zM220.8 109.1c3.6.9 8.9 2.4 13 4.4-2.1-12.2 4.5-23.5 11.8-23 8.9.3 13.9 15.5 9.1 27.3-.8 1.9-2.8 3.4-3.9 4.6 6.7 2.3 11 4.1 12.6 4.9 7.9-9.5 10.8-26.2 4.3-40.4-9.8-21.4-34.2-21.8-44 .4-3.2 7.2-3.9 14.9-2.9 21.8zm-46.2 18.8c7.8-5.7 6.9-4.7 5.9-5.5-8-6.9-6.6-27.4 1.8-28.1 6.3-.5 10.8 10.7 9.6 19.6 3.1-2.1 6.7-3.6 10.2-4.6 1.7-19.3-9-33.5-19.1-33.5-18.9 0-24 37.5-8.4 52.1zm-9.4 20.9c1.5 4.9 6.1 10.5 14.7 15.3 7.8 4.6 12 11.5 20 15 2.6 1.1 5.7 1.9 9.6 2.1 18.4 1.1 27.1-11.3 38.2-14.9 11.7-3.7 20.1-11 22.7-18.1 3.2-8.5-2.1-14.7-10.5-18.2-11.3-4.9-16.3-5.2-22.6-9.3-10.3-6.6-18.8-8.9-25.9-8.9-14.4 0-23.2 9.8-27.9 14.2-.5.5-7.9 5.9-14.1 10.5-4.2 3.3-5.6 7.4-4.2 12.3zm-33.5 252.8L112.1 366c-6.8-9.2-13.8-14.8-21.9-16-7.7-1.2-12.6 1.4-17.7 6.9-4.8 5.1-8.8 12.3-14.3 18-7.8 6.5-9.3 6.2-19.6 9.9-6.3 2.2-11.3 4.6-14.8 11.3-2.7 5-2.1 12.2-.9 20 1.2 7.9 3 16.3.6 23.9v.2c-5 13.7-5 21.7-2.6 26.4 7.9 15.4 46.6 6.1 76.5 21.9 31.4 16.4 72.6 17.1 75.3-18 2.1-20.5-31.5-49-41-68.9zm153.9 35.8c3.2-11 6.3-21.3 6.8-29 .8-15.2 1.6-28.7 4.4-39.9 3.1-12.6 9.3-23.1 21.4-27.3 2.3-21.1 18.7-21.1 38.3-12.5 18.9 8.5 26 16 22.8 26.1 1 0 2-.1 4.2 0 5.2-16.9-14.3-28-30.7-34.8 2.9-12 2.4-24.1-.4-35.7-6-25.3-22.6-47.8-35.2-59-2.3-.1-2.1 1.9 2.6 6.5 11.6 10.7 37.1 49.2 23.3 84.9-3.9-1-7.6-1.5-10.9-1.4-5.3-29.1-17.5-53.2-23.6-64.6-11.5-21.4-29.5-65.3-37.2-95.7-4.5 6.4-12.4 11.9-22.3 15-4.7 1.5-9.7 5.5-15.9 9-13.9 8-30 8.8-42.4-1.2-4.5-3.6-8-7.6-12.6-10.3-1.6-.9-5.1-3.3-6.2-4.1-2 37.8-27.3 85.3-39.3 112.7-8.3 19.7-13.2 40.8-13.8 61.5-21.8-29.1-5.9-66.3 2.6-82.4 9.5-17.6 11-22.5 8.7-20.8-8.6 14-22 36.3-27.2 59.2-2.7 11.9-3.2 24 .3 35.2 3.5 11.2 11.1 21.5 24.6 29.9 0 0 24.8 14.3 38.3 32.5 7.4 10 9.7 18.7 7.4 24.9-2.5 6.7-9.6 8.9-16.7 8.9 4.8 6 10.3 13 14.4 19.6 37.6 25.7 82.2 15.7 114.3-7.2zM415 408.5c-10-11.3-7.2-33.1-17.1-41.6-6.9-6-13.6-5.4-22.6-5.1-7.7 8.8-25.8 19.6-38.4 16.3-11.5-2.9-18-16.3-18.8-29.5-.3.2-.7.3-1 .5-7.1 3.9-11.1 10.8-13.7 21.1-2.5 10.2-3.4 23.5-4.2 38.7-.7 11.8-6.2 26.4-9.9 40.6-3.5 13.2-5.8 25.2-1.1 36.3 7.2 14.5 19.5 20.4 33.7 19.3 14.2-1.1 30.4-9.8 43.6-25.5 22-26.6 62.3-29.7 63.2-46.5.3-5.1-3.1-13-13.7-24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4 3.9-3.4 5.9-6.3 3.1-6.6-2.8-.3-2.6 2.6-6 5.1-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2-10.4 0-18.7-4.8-24.9-9.7-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z"] }; +var faLyft = { prefix: 'fab', iconName: 'lyft', icon: [512, 512, [], "f3c3", "M0 81.1h77.8v208.7c0 33.1 15 52.8 27.2 61-12.7 11.1-51.2 20.9-80.2-2.8C7.8 334 0 310.7 0 289V81.1zm485.9 173.5v-22h23.8v-76.8h-26.1c-10.1-46.3-51.2-80.7-100.3-80.7-56.6 0-102.7 46-102.7 102.7V357c16 2.3 35.4-.3 51.7-14 17.1-14 24.8-37.2 24.8-59v-6.7h38.8v-76.8h-38.8v-23.3c0-34.6 52.2-34.6 52.2 0v77.1c0 56.6 46 102.7 102.7 102.7v-76.5c-14.5 0-26.1-11.7-26.1-25.9zm-294.3-99v113c0 15.4-23.8 15.4-23.8 0v-113H91v132.7c0 23.8 8 54 45 63.9 37 9.8 58.2-10.6 58.2-10.6-2.1 13.4-14.5 23.3-34.9 25.3-15.5 1.6-35.2-3.6-45-7.8v70.3c25.1 7.5 51.5 9.8 77.6 4.7 47.1-9.1 76.8-48.4 76.8-100.8V155.1h-77.1v.5z"] }; +var faMagento = { prefix: 'fab', iconName: 'magento', icon: [448, 512, [], "f3c4", "M445.7 127.9V384l-63.4 36.5V164.7L223.8 73.1 65.2 164.7l.4 255.9L2.3 384V128.1L224.2 0l221.5 127.9zM255.6 420.5L224 438.9l-31.8-18.2v-256l-63.3 36.6.1 255.9 94.9 54.9 95.1-54.9v-256l-63.4-36.6v255.9z"] }; +var faMandalorian = { prefix: 'fab', iconName: 'mandalorian', icon: [390, 512, [], "f50f", "M203.28 511.89c-.98-3.26-1.69-15.83-1.39-24.58.55-15.89.98-24.72 1.4-28.76.64-6.2 2.87-20.72 3.28-21.38.6-.96.4-27.87-.24-33.13-.31-2.58-.63-11.9-.69-20.73-.13-16.47-.53-20.12-2.73-24.76-1.1-2.32-1.23-3.84-.99-11.43.16-4.81 0-10.53-.34-12.71-2.05-12.97-3.46-27.7-3.25-33.9.21-6.12.43-7.15 2.06-9.67 3.05-4.71 6.51-14.04 8.62-23.27 2.26-9.86 3.88-17.18 4.59-20.74.89-4.42 2.43-9.72 4.36-15.05 2.27-6.25 2.49-15.39.37-15.39-.3 0-1.38 1.22-2.41 2.71-1.03 1.49-4.76 4.8-8.29 7.36-8.37 6.08-11.7 9.39-12.66 12.58-.93 3.11-1.02 7.23-.16 7.76.34.21 1.29 2.4 2.11 4.88 1.62 4.88 1.87 10.12.72 15.36-.39 1.77-1.05 5.47-1.46 8.23-.41 2.76-.98 6.46-1.25 8.22-.28 1.76-.97 3.68-1.55 4.26-.96.96-1.14.91-2.05-.53-.55-.87-1.2-3.01-1.44-4.75-.25-1.74-1.63-7.11-3.08-11.93-3.28-10.9-3.52-16.15-.96-20.96.92-1.73 1.67-3.81 1.67-4.61 0-2.39-2.2-5.32-7.41-9.89-7.05-6.18-8.63-7.92-10.23-11.3-1.71-3.6-3.06-4.06-4.54-1.54-1.78 3.01-2.6 9.11-2.97 22.02l-.35 12.13 1.95 2.25c3.21 3.7 12.07 16.45 13.78 19.83 3.41 6.74 4.34 11.69 4.41 23.56.07 11.84.95 22.75 2 24.71.36.66.51 1.35.34 1.52-.17.17.41 2.09 1.29 4.27.88 2.18 1.81 6.22 2.06 8.98.25 2.76 1.02 7.43 1.71 10.37 2.23 9.56 2.77 14.08 2.39 20.14-.2 3.27-.53 11.07-.73 17.32-1.31 41.76-1.85 57.98-2.04 61.21-.12 2.02-.39 11.51-.6 21.07-.36 16.3-1.3 27.37-2.42 28.65-.64.73-8.07-4.91-12.52-9.49-3.75-3.87-4.02-4.79-2.83-9.95.7-3.01 2.26-18.29 3.33-32.62.36-4.78.81-10.5 1.01-12.71.83-9.37 1.66-20.35 2.61-34.78.56-8.46 1.33-16.44 1.72-17.73.38-1.29.89-9.89 1.13-19.11l.43-16.77-2.26-4.3c-1.72-3.28-4.87-6.94-13.22-15.34-6.03-6.07-11.84-12.3-12.91-13.85l-1.95-2.81.75-10.9c1.09-15.71 1.1-48.57.02-59.06l-.89-8.7-3.28-4.52c-5.86-8.08-5.8-7.75-6.22-33.27-.1-6.07-.38-11.5-.63-12.06-.83-1.87-3.05-2.66-8.54-3.05-8.86-.62-10.96-1.9-23.85-14.55-6.15-6.04-12.34-11.97-13.75-13.19-2.81-2.42-2.79-1.99-.56-9.63l1.35-4.65-1.69-3.04c-.93-1.67-2.09-3.51-2.59-4.07-1.33-1.51-5.5-10.89-5.99-13.49-.31-1.66-.09-2.67.87-3.9 2.23-2.86 3.4-5.68 4.45-10.73 2.33-11.19 7.74-26.09 10.6-29.22 3.18-3.47 7.7-1.05 9.41 5.03 1.34 4.79 1.37 9.79.1 18.55-.53 3.68-.98 8.68-.99 11.11-.02 4.01.19 4.69 2.25 7.39 3.33 4.37 7.73 7.41 15.2 10.52 1.7.71 3.82 1.99 4.72 2.85 11.17 10.72 18.62 16.18 22.95 16.85 5.18.8 7.98 4.54 10.04 13.39 1.31 5.65 4 11.14 5.46 11.14.59 0 2.09-.63 3.33-1.39 1.98-1.22 2.25-1.73 2.25-4.18-.01-3.71-1.17-14.08-2-17.84-.37-1.66-.78-4.06-.93-5.35-.14-1.29-.61-3.85-1.03-5.69-2.55-11.16-3.65-15.46-4.1-16.05-1.55-2.02-4.08-10.2-4.93-15.92-1.64-11.11-3.96-14.23-12.91-17.39-4.64-1.64-8.89-4.12-13.32-7.78-1.15-.95-4.01-3.22-6.35-5.06-2.35-1.83-4.41-3.53-4.6-3.76-.18-.23-1.39-1.14-2.69-2.02-6.24-4.22-8.84-6.98-11.26-11.96l-2.44-5.02-.22-12.98-.22-12.98 6.91-6.55c3.95-3.75 8.48-7.35 10.59-8.43 3.31-1.69 4.45-1.89 11.37-2.05 8.53-.19 10.12.02 11.66 1.56 1.53 1.53 1.36 6.4-.29 8.5-.74.94-1.34 1.98-1.34 2.32 0 .58-2.61 4.91-5.42 8.99-.68.99-2.13 5.35-2.37 6.82 20.44 13.39 21.55 3.77 14.07 28.98l11.4 2.54c3.11-8.66 6.47-17.26 8.61-26.22.29-7.63-11.98-4.19-15.4-8.68-2.33-5.93 3.13-14.18 6.06-19.2 1.6-2.34 6.62-4.7 8.82-4.15.88.22 4.16-.35 7.37-1.28 3.18-.92 6.58-1.68 7.55-1.68.97 0 3.66-.58 5.98-1.29 3.65-1.11 4.5-1.17 6.35-.4 1.17.48 3.79 1.09 5.82 1.36 2.02.26 4.72 1.12 6 1.91 1.28.79 3.53 1.77 5.02 2.17 2.51.68 3 .57 7.05-1.67l4.35-2.4 10.7-.41c10.44-.4 10.81-.47 15.26-2.68l4.58-2.3 2.46 1.43c1.76 1.02 3.14 2.73 4.85 5.98 2.36 4.51 2.38 4.58 1.37 7.37-.88 2.44-.89 3.3-.1 6.39.5 1.96 1.45 4.62 2.1 5.91.65 1.29 1.24 3.09 1.31 4.01.31 4.33-.03 5.3-2.41 6.92-2.17 1.47-6.98 7.91-6.98 9.34 0 .32-.48 1.69-1.07 3.03-5.04 11.51-6.76 13.56-14.26 16.98-9.2 4.2-12.3 5.19-16.21 5.19-3.1 0-4 .25-4.54 1.26-.37.69-2.21 2.37-4.09 3.71-2.04 1.47-3.8 3.38-4.38 4.78-.54 1.28-1.66 2.59-2.49 2.91-.83.32-1.94 1.08-2.45 1.71-.52.62-3.66 3.04-7 5.38-3.33 2.34-6.87 5.02-7.87 5.96-1 .94-2.07 1.71-2.39 1.71s-1.28.74-2.13 1.65c-1.31 1.39-1.49 2.11-1.14 4.6.22 1.63.86 4.27 1.42 5.88 1.32 3.8 1.31 7.86-.05 10.57-1.43 2.86-.89 6.65 1.35 9.59 2.01 2.63 2.16 4.56.71 8.84-.61 1.8-1.05 5.45-1.06 8.91-.02 4.88.22 6.28 1.46 8.38 1.2 2.04 1.82 2.48 3.24 2.32 1.98-.23 2.3-1.05 4.71-12.12 2.18-10.03 3.71-11.92 13.76-17.08 2.94-1.51 7.46-3.96 10.03-5.44 2.58-1.48 6.79-3.69 9.37-4.91 6.67-3.16 11.05-6.52 15.22-11.67 7.11-8.79 9.98-16.22 12.85-33.3.55-3.28 1.43-5.65 2.86-7.73 1.29-1.87 2.37-4.62 2.89-7.31 1.02-5.3 2.85-9.08 5.58-11.51 4.7-4.18 6-1.09 4.59 10.87-.46 3.86-1.1 10.33-1.44 14.38l-.61 7.36 4.45 4.09 4.45 4.09.11 8.42c.06 4.63.47 9.53.92 10.89l.82 2.47-6.43 6.28c-8.54 8.33-12.88 13.93-16.76 21.61-1.77 3.49-3.74 7.11-4.38 8.03-2.18 3.11-6.46 13.01-8.76 20.26l-2.29 7.22-6.97 6.49c-3.83 3.57-7.96 7.25-9.17 8.17-3.05 2.32-4.26 5.15-4.26 9.99 0 2.98.43 4.96 1.59 7.26.87 1.74 1.81 3.91 2.09 4.83.28.92.98 2.22 1.57 2.89 1.4 1.59 1.92 16.12.83 23.22-.68 4.48-3.63 12.02-4.7 12.02-1.79 0-4.06 9.27-5.07 20.74-.18 2.02-.62 5.94-.98 8.7-.36 2.76-.96 9.98-1.35 16.05-.77 12.22-.19 18.77 2.05 23.15 3.41 6.69.52 12.69-11.03 22.84l-3.97 3.49.07 5.19c.04 2.86.55 6.85 1.14 8.87 4.61 15.98 4.73 16.92 4.38 37.13-.46 26.4-.26 40.27.63 44.15.42 1.84.91 5 1.08 7.02.17 2.02.66 5.33 1.08 7.36.47 2.26.78 11.02.79 22.74l.02 19.06-1.81 2.63c-2.71 3.91-15.11 13.54-15.49 12.29zm29.53-45.11c-.18-.3-.33-6.87-.33-14.59 0-14.06-.89-27.54-2.26-34.45-.4-2.02-.81-9.7-.9-17.06-.15-11.93-1.4-24.37-2.64-26.38-.66-1.07-3.02-17.66-3.03-21.3-.01-4.23 1.02-6 5.28-9.13 4.14-3.04 4.86-3.14 5.48-.72.28 1.1 1.45 5.62 2.6 10.03 3.93 15.12 4.14 16.27 4.05 21.74-.1 5.78-.13 6.13-1.74 17.73-.98 7.07-1.17 12.39-1.04 28.43.17 19.4-.64 35.73-2.04 41.27-.71 2.78-2.8 5.48-3.43 4.43zm-70.99-37.58c-.24-.38-1.01-5.24-1.73-10.79-.72-5.56-1.49-10.41-1.73-10.79-.23-.38-.68-3.3-.99-6.49-.31-3.19-.91-7.46-1.33-9.48-.99-4.79-3.35-19.35-3.42-21.07-.03-.74-.34-4.05-.7-7.36-.67-6.21-.84-27.67-.22-28.29.96-.96 6.63 2.76 11.33 7.43l5.28 5.25-.45 6.47c-.25 3.56-.6 10.23-.78 14.83-.18 4.6-.49 9.87-.67 11.71-.18 1.84-.61 9.36-.94 16.72-.79 17.41-1.94 31.29-2.65 32-.32.3-.76.24-1-.14zM74.63 162.61c21.07 12.79 17.84 14.15 28.49 17.66 13.01 4.29 18.87 7.13 23.15 16.87-43.66 36.14-69.01 57.9-76.71 70.82-31.02 52.01-5.99 101.59 62.75 87.21-14.18 29.23-77.97 28.63-98.68-4.9-24.68-39.95-22.09-118.3 61-187.66zm210.79 179.02c56.66 6.88 82.32-37.74 46.54-89.23 0 0-26.87-29.34-64.28-67.96 2.98-15.45 9.49-32.12 30.57-53.82 89.2 63.51 92 141.61 92.46 149.36 4.27 70.58-78.66 91.12-105.29 61.65z"] }; +var faMastodon = { prefix: 'fab', iconName: 'mastodon', icon: [417, 512, [], "f4f6", "M417.8 179.1c0-97.2-63.7-125.7-63.7-125.7-62.5-28.7-228.5-28.4-290.4 0 0 0-63.7 28.5-63.7 125.7 0 115.7-6.6 259.4 105.6 289.1 40.5 10.7 75.3 13 103.3 11.4 50.8-2.8 79.3-18.1 79.3-18.1l-1.7-36.9s-36.3 11.4-77.1 10.1c-40.4-1.4-83-4.4-89.6-54-.6-4.4-.9-9-.9-13.9 85.6 20.9 158.6 9.1 178.7 6.7 56.1-6.7 105-41.3 111.2-72.9 9.8-49.8 9-121.5 9-121.5zm-75.1 125.2h-46.6V190.1c0-49.7-64-51.6-64 6.9v62.5h-46.3V197c0-58.5-64-56.6-64-6.9v114.2H75.1c0-122.1-5.2-147.9 18.4-175 25.9-28.9 79.8-30.8 103.8 6.1l11.6 19.5 11.6-19.5c24.1-37.1 78.1-34.8 103.8-6.1 23.7 27.3 18.4 53 18.4 175z"] }; +var faMaxcdn = { prefix: 'fab', iconName: 'maxcdn', icon: [512, 512, [], "f136", "M461.1 442.7h-97.4L415.6 200c2.3-10.2.9-19.5-4.4-25.7-5-6.1-13.7-9.6-24.2-9.6h-49.3l-59.5 278h-97.4l59.5-278h-83.4l-59.5 278H0l59.5-278-44.6-95.4H387c39.4 0 75.3 16.3 98.3 44.9 23.3 28.6 31.8 67.4 23.6 105.9l-47.8 222.6z"] }; +var faMedapps = { prefix: 'fab', iconName: 'medapps', icon: [320, 512, [], "f3c6", "M118.3 238.4c3.5-12.5 6.9-33.6 13.2-33.6 8.3 1.8 9.6 23.4 18.6 36.6 4.6-23.5 5.3-85.1 14.1-86.7 9-.7 19.7 66.5 22 77.5 9.9 4.1 48.9 6.6 48.9 6.6 1.9 7.3-24 7.6-40 7.8-4.6 14.8-5.4 27.7-11.4 28-4.7.2-8.2-28.8-17.5-49.6l-9.4 65.5c-4.4 13-15.5-22.5-21.9-39.3-3.3-.1-62.4-1.6-47.6-7.8l31-5zM228 448c21.2 0 21.2-32 0-32H92c-21.2 0-21.2 32 0 32h136zm-24 64c21.2 0 21.2-32 0-32h-88c-21.2 0-21.2 32 0 32h88zm34.2-141.5c3.2-18.9 5.2-36.4 11.9-48.8 7.9-14.7 16.1-28.1 24-41 24.6-40.4 45.9-75.2 45.9-125.5C320 69.6 248.2 0 160 0S0 69.6 0 155.2c0 50.2 21.3 85.1 45.9 125.5 7.9 12.9 16 26.3 24 41 6.7 12.5 8.7 29.8 11.9 48.9 3.5 21 36.1 15.7 32.6-5.1-3.6-21.7-5.6-40.7-15.3-58.6C66.5 246.5 33 211.3 33 155.2 33 87.3 90 32 160 32s127 55.3 127 123.2c0 56.1-33.5 91.3-66.1 151.6-9.7 18-11.7 37.4-15.3 58.6-3.4 20.6 29 26.4 32.6 5.1z"] }; +var faMedium = { prefix: 'fab', iconName: 'medium', icon: [448, 512, [], "f23a", "M0 32v448h448V32H0zm372.2 106.1l-24 23c-2.1 1.6-3.1 4.2-2.7 6.7v169.3c-.4 2.6.6 5.2 2.7 6.7l23.5 23v5.1h-118V367l24.3-23.6c2.4-2.4 2.4-3.1 2.4-6.7V199.8l-67.6 171.6h-9.1L125 199.8v115c-.7 4.8 1 9.7 4.4 13.2l31.6 38.3v5.1H71.2v-5.1l31.6-38.3c3.4-3.5 4.9-8.4 4.1-13.2v-133c.4-3.7-1-7.3-3.8-9.8L75 138.1V133h87.3l67.4 148L289 133.1h83.2v5z"] }; +var faMediumM = { prefix: 'fab', iconName: 'medium-m', icon: [512, 512, [], "f3c7", "M71.5 142.3c.6-5.9-1.7-11.8-6.1-15.8L20.3 72.1V64h140.2l108.4 237.7L364.2 64h133.7v8.1l-38.6 37c-3.3 2.5-5 6.7-4.3 10.8v272c-.7 4.1 1 8.3 4.3 10.8l37.7 37v8.1H307.3v-8.1l39.1-37.9c3.8-3.8 3.8-5 3.8-10.8V171.2L241.5 447.1h-14.7L100.4 171.2v184.9c-1.1 7.8 1.5 15.6 7 21.2l50.8 61.6v8.1h-144v-8L65 377.3c5.4-5.6 7.9-13.5 6.5-21.2V142.3z"] }; +var faMedrt = { prefix: 'fab', iconName: 'medrt', icon: [544, 512, [], "f3c8", "M113.7 256c0 121.8 83.9 222.8 193.5 241.1-18.7 4.5-38.2 6.9-58.2 6.9C111.4 504 0 393 0 256S111.4 8 248.9 8c20.1 0 39.6 2.4 58.2 6.9C197.5 33.2 113.7 134.2 113.7 256m297.4 100.3c-77.7 55.4-179.6 47.5-240.4-14.6 5.5 14.1 12.7 27.7 21.7 40.5 61.6 88.2 182.4 109.3 269.7 47 87.3-62.3 108.1-184.3 46.5-272.6-9-12.9-19.3-24.3-30.5-34.2 37.4 78.8 10.7 178.5-67 233.9m-218.8-244c-1.4 1-2.7 2.1-4 3.1 64.3-17.8 135.9 4 178.9 60.5 35.7 47 42.9 106.6 24.4 158 56.7-56.2 67.6-142.1 22.3-201.8-50-65.5-149.1-74.4-221.6-19.8M296 224c-4.4 0-8-3.6-8-8v-40c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v40c0 4.4-3.6 8-8 8h-40c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h40c4.4 0 8 3.6 8 8v40c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-40c0-4.4 3.6-8 8-8h40c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-40z"] }; +var faMeetup = { prefix: 'fab', iconName: 'meetup', icon: [512, 512, [], "f2e0", "M99 414.3c1.1 5.7-2.3 11.1-8 12.3-5.4 1.1-10.9-2.3-12-8-1.1-5.4 2.3-11.1 7.7-12.3 5.4-1.2 11.1 2.3 12.3 8zm143.1 71.4c-6.3 4.6-8 13.4-3.7 20 4.6 6.6 13.4 8.3 20 3.7 6.3-4.6 8-13.4 3.4-20-4.2-6.5-13.1-8.3-19.7-3.7zm-86-462.3c6.3-1.4 10.3-7.7 8.9-14-1.1-6.6-7.4-10.6-13.7-9.1-6.3 1.4-10.3 7.7-9.1 14 1.4 6.6 7.6 10.6 13.9 9.1zM34.4 226.3c-10-6.9-23.7-4.3-30.6 6-6.9 10-4.3 24 5.7 30.9 10 7.1 23.7 4.6 30.6-5.7 6.9-10.4 4.3-24.1-5.7-31.2zm272-170.9c10.6-6.3 13.7-20 7.7-30.3-6.3-10.6-19.7-14-30-7.7s-13.7 20-7.4 30.6c6 10.3 19.4 13.7 29.7 7.4zm-191.1 58c7.7-5.4 9.4-16 4.3-23.7s-15.7-9.4-23.1-4.3c-7.7 5.4-9.4 16-4.3 23.7 5.1 7.8 15.6 9.5 23.1 4.3zm372.3 156c-7.4 1.7-12.3 9.1-10.6 16.9 1.4 7.4 8.9 12.3 16.3 10.6 7.4-1.4 12.3-8.9 10.6-16.6-1.5-7.4-8.9-12.3-16.3-10.9zm39.7-56.8c-1.1-5.7-6.6-9.1-12-8-5.7 1.1-9.1 6.9-8 12.6 1.1 5.4 6.6 9.1 12.3 8 5.4-1.5 9.1-6.9 7.7-12.6zM447 138.9c-8.6 6-10.6 17.7-4.9 26.3 5.7 8.6 17.4 10.6 26 4.9 8.3-6 10.3-17.7 4.6-26.3-5.7-8.7-17.4-10.9-25.7-4.9zm-6.3 139.4c26.3 43.1 15.1 100-26.3 129.1-17.4 12.3-37.1 17.7-56.9 17.1-12 47.1-69.4 64.6-105.1 32.6-1.1.9-2.6 1.7-3.7 2.9-39.1 27.1-92.3 17.4-119.4-22.3-9.7-14.3-14.6-30.6-15.1-46.9-65.4-10.9-90-94-41.1-139.7-28.3-46.9.6-107.4 53.4-114.9C151.6 70 234.1 38.6 290.1 82c67.4-22.3 136.3 29.4 130.9 101.1 41.1 12.6 52.8 66.9 19.7 95.2zm-70 74.3c-3.1-20.6-40.9-4.6-43.1-27.1-3.1-32 43.7-101.1 40-128-3.4-24-19.4-29.1-33.4-29.4-13.4-.3-16.9 2-21.4 4.6-2.9 1.7-6.6 4.9-11.7-.3-6.3-6-11.1-11.7-19.4-12.9-12.3-2-17.7 2-26.6 9.7-3.4 2.9-12 12.9-20 9.1-3.4-1.7-15.4-7.7-24-11.4-16.3-7.1-40 4.6-48.6 20-12.9 22.9-38 113.1-41.7 125.1-8.6 26.6 10.9 48.6 36.9 47.1 11.1-.6 18.3-4.6 25.4-17.4 4-7.4 41.7-107.7 44.6-112.6 2-3.4 8.9-8 14.6-5.1 5.7 3.1 6.9 9.4 6 15.1-1.1 9.7-28 70.9-28.9 77.7-3.4 22.9 26.9 26.6 38.6 4 3.7-7.1 45.7-92.6 49.4-98.3 4.3-6.3 7.4-8.3 11.7-8 3.1 0 8.3.9 7.1 10.9-1.4 9.4-35.1 72.3-38.9 87.7-4.6 20.6 6.6 41.4 24.9 50.6 11.4 5.7 62.5 15.7 58.5-11.1zm5.7 92.3c-10.3 7.4-12.9 22-5.7 32.6 7.1 10.6 21.4 13.1 32 6 10.6-7.4 13.1-22 6-32.6-7.4-10.6-21.7-13.5-32.3-6z"] }; +var faMicrosoft = { prefix: 'fab', iconName: 'microsoft', icon: [448, 512, [], "f3ca", "M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z"] }; +var faMix = { prefix: 'fab', iconName: 'mix', icon: [448, 512, [], "f3cb", "M0 64v348.9c0 56.2 88 58.1 88 0V174.3c7.9-52.9 88-50.4 88 6.5v175.3c0 57.9 96 58 96 0V240c5.3-54.7 88-52.5 88 4.3v23.8c0 59.9 88 56.6 88 0V64H0z"] }; +var faMixcloud = { prefix: 'fab', iconName: 'mixcloud', icon: [640, 512, [], "f289", "M424.43 219.729C416.124 134.727 344.135 68 256.919 68c-72.266 0-136.224 46.516-159.205 114.074-54.545 8.029-96.63 54.822-96.63 111.582 0 62.298 50.668 112.966 113.243 112.966h289.614c52.329 0 94.969-42.362 94.969-94.693 0-45.131-32.118-83.063-74.48-92.2zm-20.489 144.53H114.327c-39.04 0-70.881-31.564-70.881-70.604s31.841-70.604 70.881-70.604c18.827 0 36.548 7.475 49.838 20.766 19.963 19.963 50.133-10.227 30.18-30.18-14.675-14.398-32.672-24.365-52.053-29.349 19.935-44.3 64.79-73.926 114.628-73.926 69.496 0 125.979 56.483 125.979 125.702 0 13.568-2.215 26.857-6.369 39.594-8.943 27.517 32.133 38.939 40.147 13.29 2.769-8.306 4.984-16.889 6.369-25.472 19.381 7.476 33.502 26.303 33.502 48.453 0 28.795-23.535 52.33-52.607 52.33zm235.069-52.33c0 44.024-12.737 86.386-37.102 122.657-4.153 6.092-10.798 9.414-17.72 9.414-16.317 0-27.127-18.826-17.443-32.949 19.381-29.349 29.903-63.682 29.903-99.122s-10.521-69.773-29.903-98.845c-15.655-22.831 19.361-47.24 35.163-23.534 24.366 35.993 37.102 78.356 37.102 122.379zm-70.88 0c0 31.565-9.137 62.021-26.857 88.325-4.153 6.091-10.798 9.136-17.72 9.136-17.201 0-27.022-18.979-17.443-32.948 13.013-19.104 19.658-41.255 19.658-64.513 0-22.981-6.645-45.408-19.658-64.512-15.761-22.986 19.008-47.095 35.163-23.535 17.719 26.026 26.857 56.483 26.857 88.047z"] }; +var faMizuni = { prefix: 'fab', iconName: 'mizuni', icon: [496, 512, [], "f3cc", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm-80 351.9c-31.4 10.6-58.8 27.3-80 48.2V136c0-22.1 17.9-40 40-40s40 17.9 40 40v223.9zm120-9.9c-12.9-2-26.2-3.1-39.8-3.1-13.8 0-27.2 1.1-40.2 3.1V136c0-22.1 17.9-40 40-40s40 17.9 40 40v214zm120 57.7c-21.2-20.8-48.6-37.4-80-48V136c0-22.1 17.9-40 40-40s40 17.9 40 40v271.7z"] }; +var faModx = { prefix: 'fab', iconName: 'modx', icon: [448, 512, [], "f285", "M356 241.8l36.7 23.7V480l-133-83.8L356 241.8zM440 75H226.3l-23 37.8 153.5 96.5L440 75zm-89 142.8L55.2 32v214.5l46 29L351 217.8zM97 294.2L8 437h213.7l125-200.5L97 294.2z"] }; +var faMonero = { prefix: 'fab', iconName: 'monero', icon: [496, 512, [], "f3d0", "M352 384h108.4C417 455.9 338.1 504 248 504S79 455.9 35.6 384H144V256.2L248 361l104-105v128zM88 336V128l159.4 159.4L408 128v208h74.8c8.5-25.1 13.2-52 13.2-80C496 119 385 8 248 8S0 119 0 256c0 28 4.6 54.9 13.2 80H88z"] }; +var faNapster = { prefix: 'fab', iconName: 'napster', icon: [496, 512, [], "f3d2", "M298.3 373.6c-14.2 13.6-31.3 24.1-50.4 30.5-19-6.4-36.2-16.9-50.3-30.5h100.7zm44-199.6c20-16.9 43.6-29.2 69.6-36.2V299c0 219.4-328 217.6-328 .3V137.7c25.9 6.9 49.6 19.6 69.5 36.4 56.8-40 132.5-39.9 188.9-.1zm-208.8-58.5c64.4-60 164.3-60.1 228.9-.2-7.1 3.5-13.9 7.3-20.6 11.5-58.7-30.5-129.2-30.4-187.9.1-6.3-4-13.9-8.2-20.4-11.4zM43.8 93.2v69.3c-58.4 36.5-58.4 121.1.1 158.3 26.4 245.1 381.7 240.3 407.6 1.5l.3-1.7c58.7-36.3 58.9-121.7.2-158.2V93.2c-17.3.5-34 3-50.1 7.4-82-91.5-225.5-91.5-307.5.1-16.3-4.4-33.1-7-50.6-7.5zM259.2 352s36-.3 61.3-1.5c10.2-.5 21.1-4 25.5-6.5 26.3-15.1 25.4-39.2 26.2-47.4-79.5-.6-99.9-3.9-113 55.4zm-135.5-55.3c.8 8.2-.1 32.3 26.2 47.4 4.4 2.5 15.2 6 25.5 6.5 25.3 1.1 61.3 1.5 61.3 1.5-13.2-59.4-33.7-56.1-113-55.4zm169.1 123.4c-3.2-5.3-6.9-7.3-6.9-7.3-24.8 7.3-52.2 6.9-75.9 0 0 0-2.9 1.5-6.4 6.6-2.8 4.1-3.7 9.6-3.7 9.6 29.1 17.6 67.1 17.6 96.2 0-.1-.1-.3-4-3.3-8.9z"] }; +var faNintendoSwitch = { prefix: 'fab', iconName: 'nintendo-switch', icon: [448, 512, [], "f418", "M95.9 33.5c-44.6 8-80.5 41-91.8 84.4C0 133.6-.3 142.8.2 264.4.4 376 .5 378.6 2.4 387.3c10.3 46.5 43.3 79.6 90.3 90.5 6.1 1.4 13.9 1.7 64.1 1.9 51.9.4 57.3.3 58.7-1.1 1.4-1.4 1.5-19.3 1.5-222.2 0-150.5-.3-221.3-.9-222.6-.9-1.7-2.5-1.8-56.9-1.7-44.2.1-57.5.4-63.3 1.4zm83.9 222.6V444l-37.8-.5c-34.8-.4-38.5-.6-45.5-2.3-29.9-7.7-52-30.7-58.3-60.7-2-9.4-2-240.1-.1-249.3 5.6-26.1 23.7-47.7 48-57.4 12.2-4.9 17.9-5.5 57.6-5.6l35.9-.1v188zm-75.9-131.2c-5.8 1.1-14.7 5.6-19.5 9.7-9.7 8.4-14.6 20.4-13.8 34.5.4 7.3.8 9.3 3.8 15.2 4.4 9 10.9 15.6 19.9 20 6.2 3.1 7.8 3.4 15.9 3.7 7.3.3 9.9 0 14.8-1.7 20.1-6.8 32.3-26.3 28.8-46.4-3.9-23.7-26.6-39.7-49.9-35zm158.2-92.3c-.4.3-.6 100.8-.6 223.5 0 202.3.1 222.8 1.5 223.4 2.5.9 74.5.6 83.4-.4 37.7-4.3 71-27.2 89-61.2 2.3-4.4 5.4-11.7 7-16.2 5.8-17.4 5.7-12.8 5.7-146.1 0-106.4-.2-122.3-1.5-129-9.2-48.3-46.1-84.8-94.5-93.1-6.5-1.1-16.5-1.4-48.8-1.4-22.4-.1-40.9.2-41.2.5zm99.1 202.1c14.5 3.8 26.3 14.8 31.2 28.9 3.1 8.7 3 21.5-.1 29.5-5.7 14.7-16.8 25-31.1 28.8-23.2 6-47.9-8-54.6-31-2-7-1.9-18.9.4-26.2 6.9-22.7 31-36.1 54.2-30z"] }; +var faNode = { prefix: 'fab', iconName: 'node', icon: [640, 512, [], "f419", "M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4.1l14.8 8.8c.5.3 1.3.3 1.8 0L375 408c.5-.3.9-.9.9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6.3-.9 1-.9 1.6v66.7c0 .6.4 1.2.9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9.7-1.7 1.7-1.7h7.3c.9 0 1.7.7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7zm46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6.2.8.8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5.3-.4.5-.8.4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7.7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8zm54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1zm-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3 0 5.2 4.2 9.4 9.3 9.4 5.2-.1 9.4-4.3 9.4-9.4zm-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7.1 1.8 1.2 2.1 2.8.1 1 .3 2.7.6 3.3zm-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8zM137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3.4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3.7 2.5 1.8 3.2 1.1.7 2.5.7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1 1.3 0 2.6.3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1.7 2.6.7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2l.2-95zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4zm-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6.3-.9.9-.9 1.6v24.3c0 .7.4 1.3.9 1.6l21 12.1c.6.3 1.3.3 1.8 0l21-12.1c.6-.3.9-.9.9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3.7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1.7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2l36.7-21.3zM559 219c-.4.3-.7.7-.7 1.2v13.6c0 .5.3 1 .7 1.2l11.8 6.8c.4.3 1 .3 1.4 0L584 235c.4-.3.7-.7.7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0L559 219zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7.1-.5.2-1.1.2-1.7zm-74.3-124.9l-.8.5h1.1l-.3-.5zm76.2 130.2l-.4-.7v.9l.4-.2z"] }; +var faNodeJs = { prefix: 'fab', iconName: 'node-js', icon: [448, 512, [], "f3d3", "M224 508c-6.7 0-13.5-1.8-19.4-5.2l-61.7-36.5c-9.2-5.2-4.7-7-1.7-8 12.3-4.3 14.8-5.2 27.9-12.7 1.4-.8 3.2-.5 4.6.4l47.4 28.1c1.7 1 4.1 1 5.7 0l184.7-106.6c1.7-1 2.8-3 2.8-5V149.3c0-2.1-1.1-4-2.9-5.1L226.8 37.7c-1.7-1-4-1-5.7 0L36.6 144.3c-1.8 1-2.9 3-2.9 5.1v213.1c0 2 1.1 4 2.9 4.9l50.6 29.2c27.5 13.7 44.3-2.4 44.3-18.7V167.5c0-3 2.4-5.3 5.4-5.3h23.4c2.9 0 5.4 2.3 5.4 5.3V378c0 36.6-20 57.6-54.7 57.6-10.7 0-19.1 0-42.5-11.6l-48.4-27.9C8.1 389.2.7 376.3.7 362.4V149.3c0-13.8 7.4-26.8 19.4-33.7L204.6 9c11.7-6.6 27.2-6.6 38.8 0l184.7 106.7c12 6.9 19.4 19.8 19.4 33.7v213.1c0 13.8-7.4 26.7-19.4 33.7L243.4 502.8c-5.9 3.4-12.6 5.2-19.4 5.2zm149.1-210.1c0-39.9-27-50.5-83.7-58-57.4-7.6-63.2-11.5-63.2-24.9 0-11.1 4.9-25.9 47.4-25.9 37.9 0 51.9 8.2 57.7 33.8.5 2.4 2.7 4.2 5.2 4.2h24c1.5 0 2.9-.6 3.9-1.7s1.5-2.6 1.4-4.1c-3.7-44.1-33-64.6-92.2-64.6-52.7 0-84.1 22.2-84.1 59.5 0 40.4 31.3 51.6 81.8 56.6 60.5 5.9 65.2 14.8 65.2 26.7 0 20.6-16.6 29.4-55.5 29.4-48.9 0-59.6-12.3-63.2-36.6-.4-2.6-2.6-4.5-5.3-4.5h-23.9c-3 0-5.3 2.4-5.3 5.3 0 31.1 16.9 68.2 97.8 68.2 58.4-.1 92-23.2 92-63.4z"] }; +var faNpm = { prefix: 'fab', iconName: 'npm', icon: [576, 512, [], "f3d4", "M288 288h-32v-64h32v64zm288-128v192H288v32H160v-32H0V160h576zm-416 32H32v128h64v-96h32v96h32V192zm160 0H192v160h64v-32h64V192zm224 0H352v128h64v-96h32v96h32v-96h32v96h32V192z"] }; +var faNs8 = { prefix: 'fab', iconName: 'ns8', icon: [640, 512, [], "f3d5", "M187.1 159.9l-34.2 113.7-54.5-113.7H49L0 320h44.9L76 213.5 126.6 320h56.9L232 159.9h-44.9zm452.5-.9c-2.9-18-23.9-28.1-42.1-31.3-44.6-7.8-101.9 16.3-88.5 58.8v.1c-43.8 8.7-74.3 26.8-94.2 48.2-3-9.8-13.6-16.6-34-16.6h-87.6c-9.3 0-12.9-2.3-11.5-7.4 1.6-5.5 1.9-6.8 3.7-12.2 2.1-6.4 7.8-7.1 13.3-7.1h133.5l9.7-31.5c-139.7 0-144.5-.5-160.1 1.2-12.3 1.3-23.5 4.8-30.6 15-6.8 9.9-14.4 35.6-17.6 47.1-5.4 19.4-.6 28.6 32.8 28.6h87.3c7.8 0 8.8 2.7 7.7 6.6-1.1 4.4-2.8 10-4.5 14.6-1.6 4.2-4.7 7.4-13.8 7.4H216.3L204.7 320c139.9 0 145.3-.6 160.9-2.3 6.6-.7 13-2.1 18.5-4.9.2 3.7.5 7.3 1.2 10.8 5.4 30.5 27.4 52.3 56.8 59.5 48.6 11.9 108.7-16.8 135.1-68 18.7-36.2 14.1-76.2-3.4-105.5h.1c29.6-5.9 70.3-22 65.7-50.6zM530.7 263.7c-5.9 29.5-36.6 47.8-61.6 43.9-30.9-4.8-38.5-39.5-14.1-64.8 16.2-16.8 45.2-24 68.5-26.9 6.7 14.1 10.3 32 7.2 47.8zm21.8-83.1c-4.2-6-9.8-18.5-2.5-26.3 6.7-7.2 20.9-10.1 31.8-7.7 15.3 3.4 19.7 15.9 4.9 24.4-10.7 6.1-23.6 8.1-34.2 9.6z"] }; +var faNutritionix = { prefix: 'fab', iconName: 'nutritionix', icon: [400, 512, [], "f3d6", "M88 8.1S221.4-.1 209 112.5c0 0 19.1-74.9 103-40.6 0 0-17.7 74-88 56 0 0 14.6-54.6 66.1-56.6 0 0-39.9-10.3-82.1 48.8 0 0-19.8-94.5-93.6-99.7 0 0 75.2 19.4 77.6 107.5 0 .1-106.4 7-104-119.8zm312 315.6c0 48.5-9.7 95.3-32 132.3-42.2 30.9-105 48-168 48-62.9 0-125.8-17.1-168-48C9.7 419 0 372.2 0 323.7 0 275.3 17.7 229 40 192c42.2-30.9 97.1-48.6 160-48.6 63 0 117.8 17.6 160 48.6 22.3 37 40 83.3 40 131.7zM120 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM192 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM264 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM336 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm24-39.6c-4.8-22.3-7.4-36.9-16-56-38.8-19.9-90.5-32-144-32S94.8 180.1 56 200c-8.8 19.5-11.2 33.9-16 56 42.2-7.9 98.7-14.8 160-14.8s117.8 6.9 160 14.8z"] }; +var faOdnoklassniki = { prefix: 'fab', iconName: 'odnoklassniki', icon: [320, 512, [], "f263", "M275.1 334c-27.4 17.4-65.1 24.3-90 26.9l20.9 20.6 76.3 76.3c27.9 28.6-17.5 73.3-45.7 45.7-19.1-19.4-47.1-47.4-76.3-76.6L84 503.4c-28.2 27.5-73.6-17.6-45.4-45.7 19.4-19.4 47.1-47.4 76.3-76.3l20.6-20.6c-24.6-2.6-62.9-9.1-90.6-26.9-32.6-21-46.9-33.3-34.3-59 7.4-14.6 27.7-26.9 54.6-5.7 0 0 36.3 28.9 94.9 28.9s94.9-28.9 94.9-28.9c26.9-21.1 47.1-8.9 54.6 5.7 12.4 25.7-1.9 38-34.5 59.1zM30.3 129.7C30.3 58 88.6 0 160 0s129.7 58 129.7 129.7c0 71.4-58.3 129.4-129.7 129.4s-129.7-58-129.7-129.4zm66 0c0 35.1 28.6 63.7 63.7 63.7s63.7-28.6 63.7-63.7c0-35.4-28.6-64-63.7-64s-63.7 28.6-63.7 64z"] }; +var faOdnoklassnikiSquare = { prefix: 'fab', iconName: 'odnoklassniki-square', icon: [448, 512, [], "f264", "M184.2 177.1c0-22.1 17.9-40 39.8-40s39.8 17.9 39.8 40c0 22-17.9 39.8-39.8 39.8s-39.8-17.9-39.8-39.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-305.1 97.1c0 44.6 36.4 80.9 81.1 80.9s81.1-36.2 81.1-80.9c0-44.8-36.4-81.1-81.1-81.1s-81.1 36.2-81.1 81.1zm174.5 90.7c-4.6-9.1-17.3-16.8-34.1-3.6 0 0-22.7 18-59.3 18s-59.3-18-59.3-18c-16.8-13.2-29.5-5.5-34.1 3.6-7.9 16.1 1.1 23.7 21.4 37 17.3 11.1 41.2 15.2 56.6 16.8l-12.9 12.9c-18.2 18-35.5 35.5-47.7 47.7-17.6 17.6 10.7 45.8 28.4 28.6l47.7-47.9c18.2 18.2 35.7 35.7 47.7 47.9 17.6 17.2 46-10.7 28.6-28.6l-47.7-47.7-13-12.9c15.5-1.6 39.1-5.9 56.2-16.8 20.4-13.3 29.3-21 21.5-37z"] }; +var faOldRepublic = { prefix: 'fab', iconName: 'old-republic', icon: [496, 512, [], "f510", "M235.76 10.23c7.5-.31 15-.28 22.5-.09 3.61.14 7.2.4 10.79.73 4.92.27 9.79 1.03 14.67 1.62 2.93.43 5.83.98 8.75 1.46 7.9 1.33 15.67 3.28 23.39 5.4 12.24 3.47 24.19 7.92 35.76 13.21 26.56 12.24 50.94 29.21 71.63 49.88 20.03 20.09 36.72 43.55 48.89 69.19 1.13 2.59 2.44 5.1 3.47 7.74 2.81 6.43 5.39 12.97 7.58 19.63 4.14 12.33 7.34 24.99 9.42 37.83.57 3.14 1.04 6.3 1.4 9.47.55 3.83.94 7.69 1.18 11.56.83 8.34.84 16.73.77 25.1-.07 4.97-.26 9.94-.75 14.89-.24 3.38-.51 6.76-.98 10.12-.39 2.72-.63 5.46-1.11 8.17-.9 5.15-1.7 10.31-2.87 15.41-4.1 18.5-10.3 36.55-18.51 53.63-15.77 32.83-38.83 62.17-67.12 85.12a246.503 246.503 0 0 1-56.91 34.86c-6.21 2.68-12.46 5.25-18.87 7.41-3.51 1.16-7.01 2.38-10.57 3.39-6.62 1.88-13.29 3.64-20.04 5-4.66.91-9.34 1.73-14.03 2.48-5.25.66-10.5 1.44-15.79 1.74-6.69.66-13.41.84-20.12.81-6.82.03-13.65-.12-20.45-.79-3.29-.23-6.57-.5-9.83-.95-2.72-.39-5.46-.63-8.17-1.11-4.12-.72-8.25-1.37-12.35-2.22-4.25-.94-8.49-1.89-12.69-3.02-8.63-2.17-17.08-5.01-25.41-8.13-10.49-4.12-20.79-8.75-30.64-14.25-2.14-1.15-4.28-2.29-6.35-3.57-11.22-6.58-21.86-14.1-31.92-22.34-34.68-28.41-61.41-66.43-76.35-108.7-3.09-8.74-5.71-17.65-7.8-26.68-1.48-6.16-2.52-12.42-3.58-18.66-.4-2.35-.61-4.73-.95-7.09-.6-3.96-.75-7.96-1.17-11.94-.8-9.47-.71-18.99-.51-28.49.14-3.51.34-7.01.7-10.51.31-3.17.46-6.37.92-9.52.41-2.81.65-5.65 1.16-8.44.7-3.94 1.3-7.9 2.12-11.82 3.43-16.52 8.47-32.73 15.26-48.18 1.15-2.92 2.59-5.72 3.86-8.59 8.05-16.71 17.9-32.56 29.49-47.06 20-25.38 45.1-46.68 73.27-62.47 7.5-4.15 15.16-8.05 23.07-11.37 15.82-6.88 32.41-11.95 49.31-15.38 3.51-.67 7.04-1.24 10.56-1.85 2.62-.47 5.28-.7 7.91-1.08 3.53-.53 7.1-.68 10.65-1.04 2.46-.24 4.91-.36 7.36-.51m8.64 24.41c-9.23.1-18.43.99-27.57 2.23-7.3 1.08-14.53 2.6-21.71 4.3-13.91 3.5-27.48 8.34-40.46 14.42-10.46 4.99-20.59 10.7-30.18 17.22-4.18 2.92-8.4 5.8-12.34 9.03-5.08 3.97-9.98 8.17-14.68 12.59-2.51 2.24-4.81 4.7-7.22 7.06-28.22 28.79-48.44 65.39-57.5 104.69-2.04 8.44-3.54 17.02-4.44 25.65-1.1 8.89-1.44 17.85-1.41 26.8.11 7.14.38 14.28 1.22 21.37.62 7.12 1.87 14.16 3.2 21.18 1.07 4.65 2.03 9.32 3.33 13.91 6.29 23.38 16.5 45.7 30.07 65.75 8.64 12.98 18.78 24.93 29.98 35.77 16.28 15.82 35.05 29.04 55.34 39.22 7.28 3.52 14.66 6.87 22.27 9.63 5.04 1.76 10.06 3.57 15.22 4.98 11.26 3.23 22.77 5.6 34.39 7.06 2.91.29 5.81.61 8.72.9 13.82 1.08 27.74 1 41.54-.43 4.45-.6 8.92-.99 13.35-1.78 3.63-.67 7.28-1.25 10.87-2.1 4.13-.98 8.28-1.91 12.36-3.07 26.5-7.34 51.58-19.71 73.58-36.2 15.78-11.82 29.96-25.76 42.12-41.28 3.26-4.02 6.17-8.31 9.13-12.55 3.39-5.06 6.58-10.25 9.6-15.54 2.4-4.44 4.74-8.91 6.95-13.45 5.69-12.05 10.28-24.62 13.75-37.49 2.59-10.01 4.75-20.16 5.9-30.45 1.77-13.47 1.94-27.1 1.29-40.65-.29-3.89-.67-7.77-1-11.66-2.23-19.08-6.79-37.91-13.82-55.8-5.95-15.13-13.53-29.63-22.61-43.13-12.69-18.8-28.24-35.68-45.97-49.83-25.05-20-54.47-34.55-85.65-42.08-7.78-1.93-15.69-3.34-23.63-4.45-3.91-.59-7.85-.82-11.77-1.24-7.39-.57-14.81-.72-22.22-.58zM139.26 83.53c13.3-8.89 28.08-15.38 43.3-20.18-3.17 1.77-6.44 3.38-9.53 5.29-11.21 6.68-21.52 14.9-30.38 24.49-6.8 7.43-12.76 15.73-17.01 24.89-3.29 6.86-5.64 14.19-6.86 21.71-.93 4.85-1.3 9.81-1.17 14.75.13 13.66 4.44 27.08 11.29 38.82 5.92 10.22 13.63 19.33 22.36 27.26 4.85 4.36 10.24 8.09 14.95 12.6 2.26 2.19 4.49 4.42 6.43 6.91 2.62 3.31 4.89 6.99 5.99 11.1.9 3.02.66 6.2.69 9.31.02 4.1-.04 8.2.03 12.3.14 3.54-.02 7.09.11 10.63.08 2.38.02 4.76.05 7.14.16 5.77.06 11.53.15 17.3.11 2.91.02 5.82.13 8.74.03 1.63.13 3.28-.03 4.91-.91.12-1.82.18-2.73.16-10.99 0-21.88-2.63-31.95-6.93-6-2.7-11.81-5.89-17.09-9.83-5.75-4.19-11.09-8.96-15.79-14.31-6.53-7.24-11.98-15.39-16.62-23.95-1.07-2.03-2.24-4.02-3.18-6.12-1.16-2.64-2.62-5.14-3.67-7.82-4.05-9.68-6.57-19.94-8.08-30.31-.49-4.44-1.09-8.88-1.2-13.35-.7-15.73.84-31.55 4.67-46.82 2.12-8.15 4.77-16.18 8.31-23.83 6.32-14.2 15.34-27.18 26.3-38.19 6.28-6.2 13.13-11.84 20.53-16.67zm175.37-20.12c2.74.74 5.41 1.74 8.09 2.68 6.36 2.33 12.68 4.84 18.71 7.96 13.11 6.44 25.31 14.81 35.82 24.97 10.2 9.95 18.74 21.6 25.14 34.34 1.28 2.75 2.64 5.46 3.81 8.26 6.31 15.1 10 31.26 11.23 47.57.41 4.54.44 9.09.45 13.64.07 11.64-1.49 23.25-4.3 34.53-1.97 7.27-4.35 14.49-7.86 21.18-3.18 6.64-6.68 13.16-10.84 19.24-6.94 10.47-15.6 19.87-25.82 27.22-10.48 7.64-22.64 13.02-35.4 15.38-3.51.69-7.08 1.08-10.66 1.21-1.85.06-3.72.16-5.56-.1-.28-2.15 0-4.31-.01-6.46-.03-3.73.14-7.45.1-11.17.19-7.02.02-14.05.21-21.07.03-2.38-.03-4.76.03-7.14.17-5.07-.04-10.14.14-15.21.1-2.99-.24-6.04.51-8.96.66-2.5 1.78-4.86 3.09-7.08 4.46-7.31 11.06-12.96 17.68-18.26 5.38-4.18 10.47-8.77 15.02-13.84 7.68-8.37 14.17-17.88 18.78-28.27 2.5-5.93 4.52-12.1 5.55-18.46.86-4.37 1.06-8.83 1.01-13.27-.02-7.85-1.4-15.65-3.64-23.17-1.75-5.73-4.27-11.18-7.09-16.45-3.87-6.93-8.65-13.31-13.96-19.2-9.94-10.85-21.75-19.94-34.6-27.1-1.85-1.02-3.84-1.82-5.63-2.97zm-100.8 58.45c.98-1.18 1.99-2.33 3.12-3.38-.61.93-1.27 1.81-1.95 2.68-3.1 3.88-5.54 8.31-7.03 13.06-.87 3.27-1.68 6.6-1.73 10-.07 2.52-.08 5.07.32 7.57 1.13 7.63 4.33 14.85 8.77 21.12 2 2.7 4.25 5.27 6.92 7.33 1.62 1.27 3.53 2.09 5.34 3.05 3.11 1.68 6.32 3.23 9.07 5.48 2.67 2.09 4.55 5.33 4.4 8.79-.01 73.67 0 147.34-.01 221.02 0 1.35-.08 2.7.04 4.04.13 1.48.82 2.83 1.47 4.15.86 1.66 1.78 3.34 3.18 4.62.85.77 1.97 1.4 3.15 1.24 1.5-.2 2.66-1.35 3.45-2.57.96-1.51 1.68-3.16 2.28-4.85.76-2.13.44-4.42.54-6.63.14-4.03-.02-8.06.14-12.09.03-5.89.03-11.77.06-17.66.14-3.62.03-7.24.11-10.86.15-4.03-.02-8.06.14-12.09.03-5.99.03-11.98.07-17.97.14-3.62.02-7.24.11-10.86.14-3.93-.02-7.86.14-11.78.03-5.99.03-11.98.06-17.97.16-3.94-.01-7.88.19-11.82.29 1.44.13 2.92.22 4.38.19 3.61.42 7.23.76 10.84.32 3.44.44 6.89.86 10.32.37 3.1.51 6.22.95 9.31.57 4.09.87 8.21 1.54 12.29 1.46 9.04 2.83 18.11 5.09 26.99 1.13 4.82 2.4 9.61 4 14.3 2.54 7.9 5.72 15.67 10.31 22.62 1.73 2.64 3.87 4.98 6.1 7.21.27.25.55.51.88.71.6.25 1.31-.07 1.7-.57.71-.88 1.17-1.94 1.7-2.93 4.05-7.8 8.18-15.56 12.34-23.31.7-1.31 1.44-2.62 2.56-3.61 1.75-1.57 3.84-2.69 5.98-3.63 2.88-1.22 5.9-2.19 9.03-2.42 6.58-.62 13.11.75 19.56 1.85 3.69.58 7.4 1.17 11.13 1.41 3.74.1 7.48.05 11.21-.28 8.55-.92 16.99-2.96 24.94-6.25 5.3-2.24 10.46-4.83 15.31-7.93 11.46-7.21 21.46-16.57 30.04-27.01 1.17-1.42 2.25-2.9 3.46-4.28-1.2 3.24-2.67 6.37-4.16 9.48-1.25 2.9-2.84 5.61-4.27 8.42-5.16 9.63-11.02 18.91-17.75 27.52-4.03 5.21-8.53 10.05-13.33 14.57-6.64 6.05-14.07 11.37-22.43 14.76-8.21 3.37-17.31 4.63-26.09 3.29-3.56-.58-7.01-1.69-10.41-2.88-2.79-.97-5.39-2.38-8.03-3.69-3.43-1.71-6.64-3.81-9.71-6.08 2.71 3.06 5.69 5.86 8.7 8.61 4.27 3.76 8.74 7.31 13.63 10.23 3.98 2.45 8.29 4.4 12.84 5.51 1.46.37 2.96.46 4.45.6-1.25 1.1-2.63 2.04-3.99 2.98-9.61 6.54-20.01 11.86-30.69 16.43-20.86 8.7-43.17 13.97-65.74 15.34-4.66.24-9.32.36-13.98.36-4.98-.11-9.97-.13-14.92-.65-11.2-.76-22.29-2.73-33.17-5.43-10.35-2.71-20.55-6.12-30.3-10.55-8.71-3.86-17.12-8.42-24.99-13.79-1.83-1.31-3.74-2.53-5.37-4.08 6.6-1.19 13.03-3.39 18.99-6.48 5.74-2.86 10.99-6.66 15.63-11.07 2.24-2.19 4.29-4.59 6.19-7.09-3.43 2.13-6.93 4.15-10.62 5.78-4.41 2.16-9.07 3.77-13.81 5.02-5.73 1.52-11.74 1.73-17.61 1.14-8.13-.95-15.86-4.27-22.51-8.98-4.32-2.94-8.22-6.43-11.96-10.06-9.93-10.16-18.2-21.81-25.66-33.86-3.94-6.27-7.53-12.75-11.12-19.22-1.05-2.04-2.15-4.05-3.18-6.1 2.85 2.92 5.57 5.97 8.43 8.88 8.99 8.97 18.56 17.44 29.16 24.48 7.55 4.9 15.67 9.23 24.56 11.03 3.11.73 6.32.47 9.47.81 2.77.28 5.56.2 8.34.3 5.05.06 10.11.04 15.16-.16 3.65-.16 7.27-.66 10.89-1.09 2.07-.25 4.11-.71 6.14-1.2 3.88-.95 8.11-.96 11.83.61 4.76 1.85 8.44 5.64 11.38 9.71 2.16 3.02 4.06 6.22 5.66 9.58 1.16 2.43 2.46 4.79 3.55 7.26 1 2.24 2.15 4.42 3.42 6.52.67 1.02 1.4 2.15 2.62 2.55 1.06-.75 1.71-1.91 2.28-3.03 2.1-4.16 3.42-8.65 4.89-13.05 2.02-6.59 3.78-13.27 5.19-20.02 2.21-9.25 3.25-18.72 4.54-28.13.56-3.98.83-7.99 1.31-11.97.87-10.64 1.9-21.27 2.24-31.94.08-1.86.24-3.71.25-5.57.01-4.35.25-8.69.22-13.03-.01-2.38-.01-4.76 0-7.13.05-5.07-.2-10.14-.22-15.21-.2-6.61-.71-13.2-1.29-19.78-.73-5.88-1.55-11.78-3.12-17.51-2.05-7.75-5.59-15.03-9.8-21.82-3.16-5.07-6.79-9.88-11.09-14.03-3.88-3.86-8.58-7.08-13.94-8.45-1.5-.41-3.06-.45-4.59-.64.07-2.99.7-5.93 1.26-8.85 1.59-7.71 3.8-15.3 6.76-22.6 1.52-4.03 3.41-7.9 5.39-11.72 3.45-6.56 7.62-12.79 12.46-18.46zm31.27 1.7c.35-.06.71-.12 1.07-.19.19 1.79.09 3.58.1 5.37v38.13c-.01 1.74.13 3.49-.15 5.22-.36-.03-.71-.05-1.06-.05-.95-3.75-1.72-7.55-2.62-11.31-.38-1.53-.58-3.09-1.07-4.59-1.7-.24-3.43-.17-5.15-.2-5.06-.01-10.13 0-15.19-.01-1.66-.01-3.32.09-4.98-.03-.03-.39-.26-.91.16-1.18 1.28-.65 2.72-.88 4.06-1.35 3.43-1.14 6.88-2.16 10.31-3.31 1.39-.48 2.9-.72 4.16-1.54.04-.56.02-1.13-.05-1.68-1.23-.55-2.53-.87-3.81-1.28-3.13-1.03-6.29-1.96-9.41-3.02-1.79-.62-3.67-1-5.41-1.79-.03-.37-.07-.73-.11-1.09 5.09-.19 10.2.06 15.3-.12 3.36-.13 6.73.08 10.09-.07.12-.39.26-.77.37-1.16 1.08-4.94 2.33-9.83 3.39-14.75zm5.97-.2c.36.05.72.12 1.08.2.98 3.85 1.73 7.76 2.71 11.61.36 1.42.56 2.88 1.03 4.27 2.53.18 5.07-.01 7.61.05 5.16.12 10.33.12 15.49.07.76-.01 1.52.03 2.28.08-.04.36-.07.72-.1 1.08-1.82.83-3.78 1.25-5.67 1.89-3.73 1.23-7.48 2.39-11.22 3.57-.57.17-1.12.42-1.67.64-.15.55-.18 1.12-.12 1.69.87.48 1.82.81 2.77 1.09 4.88 1.52 9.73 3.14 14.63 4.6.38.13.78.27 1.13.49.4.27.23.79.15 1.18-1.66.13-3.31.03-4.97.04-5.17.01-10.33-.01-15.5.01-1.61.03-3.22-.02-4.82.21-.52 1.67-.72 3.42-1.17 5.11-.94 3.57-1.52 7.24-2.54 10.78-.36.01-.71.02-1.06.06-.29-1.73-.15-3.48-.15-5.22v-38.13c.02-1.78-.08-3.58.11-5.37zM65.05 168.33c1.12-2.15 2.08-4.4 3.37-6.46-1.82 7.56-2.91 15.27-3.62 23-.8 7.71-.85 15.49-.54 23.23 1.05 19.94 5.54 39.83 14.23 57.88 2.99 5.99 6.35 11.83 10.5 17.11 6.12 7.47 12.53 14.76 19.84 21.09 4.8 4.1 9.99 7.78 15.54 10.8 3.27 1.65 6.51 3.39 9.94 4.68 5.01 2.03 10.19 3.61 15.42 4.94 3.83.96 7.78 1.41 11.52 2.71 5 1.57 9.47 4.61 13.03 8.43 4.93 5.23 8.09 11.87 10.2 18.67.99 2.9 1.59 5.91 2.17 8.92.15.75.22 1.52.16 2.29-6.5 2.78-13.26 5.06-20.26 6.18-4.11.78-8.29.99-12.46 1.08-10.25.24-20.47-1.76-30.12-5.12-3.74-1.42-7.49-2.85-11.03-4.72-8.06-3.84-15.64-8.7-22.46-14.46-2.92-2.55-5.83-5.13-8.4-8.03-9.16-9.83-16.3-21.41-21.79-33.65-2.39-5.55-4.61-11.18-6.37-16.96-1.17-3.94-2.36-7.89-3.26-11.91-.75-2.94-1.22-5.95-1.87-8.92-.46-2.14-.69-4.32-1.03-6.48-.85-5.43-1.28-10.93-1.33-16.43.11-6.18.25-12.37 1.07-18.5.4-2.86.67-5.74 1.15-8.6.98-5.7 2.14-11.37 3.71-16.93 3.09-11.65 7.48-22.95 12.69-33.84zm363.73-6.44c1.1 1.66 1.91 3.48 2.78 5.26 2.1 4.45 4.24 8.9 6.02 13.49 7.61 18.76 12.3 38.79 13.04 59.05.02 1.76.07 3.52.11 5.29.13 9.57-1.27 19.09-3.18 28.45-.73 3.59-1.54 7.17-2.58 10.69-4.04 14.72-10 29-18.41 41.78-8.21 12.57-19.01 23.55-31.84 31.41-5.73 3.59-11.79 6.64-18.05 9.19-5.78 2.19-11.71 4.03-17.8 5.11-6.4 1.05-12.91 1.52-19.4 1.23-7.92-.48-15.78-2.07-23.21-4.85-1.94-.8-3.94-1.46-5.84-2.33-.21-1.51.25-2.99.53-4.46 1.16-5.74 3.03-11.36 5.7-16.58 2.37-4.51 5.52-8.65 9.46-11.9 2.43-2.05 5.24-3.61 8.16-4.83 3.58-1.5 7.47-1.97 11.24-2.83 7.23-1.71 14.37-3.93 21.15-7 10.35-4.65 19.71-11.38 27.65-19.46 1.59-1.61 3.23-3.18 4.74-4.87 3.37-3.76 6.71-7.57 9.85-11.53 7.48-10.07 12.82-21.59 16.71-33.48 1.58-5.3 3.21-10.6 4.21-16.05.63-2.87 1.04-5.78 1.52-8.68.87-6.09 1.59-12.22 1.68-18.38.12-6.65.14-13.32-.53-19.94-.73-7.99-1.87-15.96-3.71-23.78z"] }; +var faOpencart = { prefix: 'fab', iconName: 'opencart', icon: [640, 512, [], "f23d", "M423.3 440.7c0 25.3-20.3 45.6-45.6 45.6s-45.8-20.3-45.8-45.6 20.6-45.8 45.8-45.8c25.4 0 45.6 20.5 45.6 45.8zm-253.9-45.8c-25.3 0-45.6 20.6-45.6 45.8s20.3 45.6 45.6 45.6 45.8-20.3 45.8-45.6-20.5-45.8-45.8-45.8zm291.7-270C158.9 124.9 81.9 112.1 0 25.7c34.4 51.7 53.3 148.9 373.1 144.2 333.3-5 130 86.1 70.8 188.9 186.7-166.7 319.4-233.9 17.2-233.9z"] }; +var faOpenid = { prefix: 'fab', iconName: 'openid', icon: [448, 512, [], "f19b", "M271.5 432l-68 32C88.5 453.7 0 392.5 0 318.2c0-71.5 82.5-131 191.7-144.3v43c-71.5 12.5-124 53-124 101.3 0 51 58.5 93.3 135.7 103v-340l68-33.2v384zM448 291l-131.3-28.5 36.8-20.7c-19.5-11.5-43.5-20-70-24.8v-43c46.2 5.5 87.7 19.5 120.3 39.3l35-19.8L448 291z"] }; +var faOpera = { prefix: 'fab', iconName: 'opera', icon: [496, 512, [], "f26a", "M313.9 32.7c-170.2 0-252.6 223.8-147.5 355.1 36.5 45.4 88.6 75.6 147.5 75.6 36.3 0 70.3-11.1 99.4-30.4-43.8 39.2-101.9 63-165.3 63-3.9 0-8 0-11.9-.3C104.6 489.6 0 381.1 0 248 0 111 111 0 248 0h.8c63.1.3 120.7 24.1 164.4 63.1-29-19.4-63.1-30.4-99.3-30.4zm101.8 397.7c-40.9 24.7-90.7 23.6-132-5.8 56.2-20.5 97.7-91.6 97.7-176.6 0-84.7-41.2-155.8-97.4-176.6 41.8-29.2 91.2-30.3 132.9-5 105.9 98.7 105.5 265.7-1.2 364z"] }; +var faOptinMonster = { prefix: 'fab', iconName: 'optin-monster', icon: [576, 512, [], "f23c", "M550.671 450.303c0 11.62-15.673 19.457-32.158 14.863-12.16-3.243-31.346-17.565-36.211-27.294-5.674-11.62 4.054-32.698 18.916-30.806 15.674 1.621 49.453 25.401 49.453 43.237zM372.86 75.223c-3.783-72.151-100.796-79.718-125.928-23.51 44.588-24.321 90.257-15.673 125.928 23.51zM74.795 407.066c-15.673 1.621-49.452 25.401-49.452 43.237 0 11.62 15.673 19.457 32.157 14.863 12.16-3.243 31.076-17.565 35.94-27.294 5.946-11.62-3.782-32.698-18.645-30.806zm497.765 14.322c1.081 3.513 1.892 7.026 1.892 10.809.81 31.616-44.317 64.045-73.503 65.125-17.295.81-34.59-8.377-42.696-23.51-113.497 4.053-226.994 4.864-340.22 0-8.377 15.133-25.672 24.05-42.967 23.51-28.915-1.081-74.043-33.509-73.503-65.125.27-3.783.811-7.296 1.892-10.809-5.566-9.463-4.845-15.282 5.405-11.62 3.243-5.134 7.026-9.458 11.08-13.782-2.57-10.917 1.27-14.094 11.079-9.188 4.594-3.243 9.998-6.485 15.944-9.188 0-15.757 11.839-11.131 17.295-5.675 12.467-1.78 20.129.709 26.753 5.675v-19.726c-12.987 0-40.641-11.375-45.94-36.212-4.974-20.725 2.607-38.075 25.132-47.56.81-5.945 8.107-14.052 14.862-15.944 7.567-1.892 12.431 4.594 14.052 10.269 7.425 0 17.757 1.465 21.078 8.107 5.405-.541 11.079-1.352 16.484-1.892-2.432-1.892-5.134-3.513-8.107-4.594-5.134-8.917-13.782-11.079-24.591-11.62 0-.81 0-1.621.27-2.702-19.727-.541-44.048-5.675-54.857-17.835-21.321-23.638-15.935-83.577 12.16-103.498 8.377-5.675 21.618-.811 22.699 9.728 2.425 20.598.399 26.833 26.212 25.942 8.107-7.836 16.755-14.592 26.483-19.997-14.862-1.352-28.914 1.621-43.778 3.783 12.752-12.48 23.953-25.442 56.748-42.427 23.511-11.89 49.993-20.808 76.205-23.239-18.646-7.837-39.993-11.891-59.721-16.484 76.475-16.214 174.569-22.159 244.289 37.562 18.105 15.403 32.427 36.211 42.696 59.992 39.799 4.853 36.47-5.581 38.643-25.132 1.081-10.269 14.322-15.403 22.699-9.458 14.862 10.539 22.159 30.806 24.59 48.101 2.162 17.835.27 41.345-12.43 55.127-10.809 12.16-34.32 17.565-53.776 18.105v2.703c-11.08.27-20.268 2.432-25.673 11.62-2.972 1.081-5.674 2.703-8.377 4.594 5.675.54 11.35 1.351 16.755 1.891 1.869-5.619 12.535-8.377 21.077-8.377 1.621-5.405 6.756-11.89 14.052-10.269s14.052 9.998 14.863 15.944c10.809 4.324 22.159 12.16 25.131 25.672 1.892 8.107 1.621 15.133.27 21.888-5.726 25.262-33.361 36.212-45.939 36.212 0 6.756 0 13.241-.27 19.726 8.01-6.006 16.367-7.158 26.752-5.675 5.919-5.919 17.565-9.41 17.565 5.675 5.675 2.703 11.349 5.945 15.944 9.188 10.1-5.051 13.669-.539 10.809 9.188 4.053 4.323 8.107 8.917 11.079 13.782 10.136-3.62 11.021 2.078 5.409 11.62zm-73.773-254.016c17.295 6.756 26.212 22.159 30.265 35.67 1.081-10.539-2.702-39.453-13.782-51.073-7.296-7.296-14.052-5.134-14.052.81.001 6.216-1.35 11.62-2.431 14.593zm-18.646 12.43c12.971 15.673 17.024 41.615 12.7 62.963 10.809-2.162 20.537-6.215 26.212-12.16 1.892-2.162 3.783-4.864 4.864-7.566-1.081-21.348-10.269-42.697-29.725-48.912-3.242 3.243-9.187 4.864-14.051 5.675zm-21.889.811c7.567 20.537 12.431 42.696 14.322 64.585 3.513 0 7.567-.27 11.62-.811 5.945-24.321-.27-51.614-14.052-63.504-3.783 0-8.107 0-11.89-.27zM77.768 167.372c-1.081-2.973-2.432-8.377-2.432-14.593 0-5.945-7.026-8.107-14.052-.81-11.35 11.62-14.863 40.534-13.782 51.073 4.053-13.512 12.971-28.915 30.266-35.67zm5.675 75.394c-4.324-21.348-.27-47.291 12.701-62.963-4.865-.811-10.809-2.432-14.052-5.675-19.457 6.215-28.375 27.563-29.726 48.912 1.351 2.702 2.972 5.404 4.864 7.566 5.675 6.215 15.403 9.998 26.213 12.16zm41.345-61.073c-5.134 1.081-9.998 2.973-14.862 4.865l-12.16 5.134v-.27c-7.296 14.052-9.999 34.319-5.405 52.965 4.594.541 8.647.811 12.7.811 2.432-22.159 9.188-43.778 19.727-63.505zm88.095-23.239c0 42.155 34.319 76.205 76.205 76.205s76.205-34.05 76.205-76.205c0-41.886-34.319-75.935-76.205-75.935s-76.205 34.049-76.205 75.935zm152.41 97.283c9.969 50.608 3.299 64.692 16.484 58.099 15.944-8.107 22.699-39.183 22.97-57.019-12.971-.81-26.213-.81-39.454-1.08zm-71.611-.541v-.27c-.27 5.134.27 38.103 4.324 41.075 11.079 5.405 39.453 4.594 51.073 1.081 5.405-1.621 2.432-37.022 1.621-41.886-18.916-.27-38.102-.27-57.018 0zm-14.053 0v-.27c-19.456.27-38.642.27-57.829.811-1.892 9.187-4.594 48.911 1.892 51.614 12.971 5.675 41.616 5.134 54.586 1.621 4.595-2.432 2.433-45.399 1.351-53.776zm-85.662 57.56c5.405 2.432 8.647 2.432 9.728-4.324 1.892-8.647 2.432-36.752 4.865-52.155-12.16.27-24.591.811-36.752 1.621-5.405 19.727.27 45.129 22.159 54.858zm-65.666-11.08c43.778 47.02 92.689 85.663 155.923 106.47 67.558-19.186 115.659-59.991 163.219-107.011-11.095-4.315-7.715-10.363-7.296-11.62-8.918-.81-17.835-1.892-26.483-2.702-9.458 32.968-35.94 52.965-46.75 31.616-2.702-5.134-3.513-11.62-4.594-16.754-3.783 8.377-13.242 8.107-24.591 8.918-13.241 1.081-31.617 1.351-44.048-2.972-2.972 12.971-11.079 12.971-26.752 14.322-14.052 1.352-48.642 4.054-54.857-10.809-1.081 28.644-35.13 9.998-45.129-7.026-3.243-5.675-5.405-11.35-7.026-17.565-7.837.81-15.673 1.621-23.511 2.702 2.443 3.663 1.549 9.052-8.105 12.431zM115.6 453.545c-5.674-23.239-18.646-49.722-33.508-54.046-22.429-6.756-68.909 23.51-66.207 54.586 12.701 19.457 39.994 35.67 59.181 36.481 17.835.81 35.94-11.08 39.724-28.914.539-2.432.81-5.134.81-8.107zm7.296-5.944c33.509-19.457 69.179-35.671 105.931-47.02-38.643-20.537-68.098-47.831-97.283-77.016-2.162 1.352-5.134 2.432-7.836 3.513-1.637 4.91 8.718 5.33 5.405 12.431-2.162 4.054-8.648 7.567-15.133 9.188-2.161 2.702-5.134 4.864-7.836 6.485h-.27c-.27 13.511-.27 27.024.27 40.535 8.939 15.964 15.426 33.314 16.752 51.884zm320.764 12.7c-36.752-21.348-74.044-41.345-115.659-52.965-13.782 6.215-27.833 11.349-42.155 15.403-2.162.811-2.162.811-4.324 0-11.89-3.783-23.239-8.107-34.859-13.241-40.265 11.62-77.286 29.185-112.416 50.803h-.27v.27c.27 0 .27 0 .27-.27 103.227 4.054 206.455 3.513 309.413 0zm27.023-64.045l-.27.27c.541-13.782.811-27.563.811-41.345-2.973-1.621-5.675-4.054-8.107-6.756-6.485-1.351-12.971-5.134-15.133-8.918-1.892-4.053 1.351-7.566 5.945-10.269-.27-.541-.541-1.621-.541-2.432-2.972-.811-5.405-1.892-7.567-3.243-31.616 29.455-65.396 56.749-103.498 76.746 38.914 11.62 75.935 28.104 111.875 47.561 1.05-14.692 7.231-35.749 16.485-51.614zm23.24 3.244c-14.593 4.323-27.834 30.806-33.509 54.046 0 23.826 21.278 37.897 40.534 37.022 19.186-.811 46.48-17.024 59.181-36.481 2.973-31.077-43.507-61.344-66.206-54.587zM290.709 134.133c.045 0 .089.003.134.003.046 0 .09-.003.136-.003h-.27zm0 96.743c28.645 0 51.884-21.618 51.884-48.371 0-36.092-40.507-58.079-72.151-44.318 9.458 2.972 16.484 11.62 16.484 21.618 0 23.257-33.291 31.955-46.48 11.35-7.297 34.067 19.368 59.721 50.263 59.721zM68.039 474.083c.54 6.486 12.16 12.701 21.618 9.458 6.756-2.703 14.593-10.539 17.295-16.214 2.973-7.026-1.081-19.997-9.728-18.375-8.917 1.621-29.725 16.754-29.185 25.131zm410.75-25.131c-8.377-1.621-12.431 11.349-9.458 18.375 2.432 5.675 10.269 13.511 17.295 16.214 9.187 3.243 21.078-2.972 21.348-9.458.811-8.377-20.267-23.51-29.185-25.131z"] }; +var faOsi = { prefix: 'fab', iconName: 'osi', icon: [495, 512, [], "f41a", "M0 259.2C2.3 123.4 97.4 26.8 213.8 11.1c138.8-18.6 255.6 75.8 278 201.1 21.3 118.8-44 230-151.6 274-9.3 3.8-14.4 1.7-18-7.7-17.8-46.3-35.6-92.7-53.4-139-3.1-8.1-1-13.2 7-16.8 24.2-11 39.3-29.4 43.3-55.8 6.4-42.4-24.5-78.7-64.5-82.2-39-3.4-71.8 23.7-77.5 59.7-5.2 33 11.1 63.7 41.9 77.7 9.6 4.4 11.5 8.6 7.8 18.4-17.9 46.6-35.8 93.2-53.7 139.9-2.6 6.9-8.3 9.3-15.5 6.5-52.6-20.3-101.4-61-130.8-119C1.9 318.7 1.6 280.2 0 259.2zm20.9-1.9c.4 6.6.6 14.3 1.3 22.1 6.3 71.9 49.6 143.5 131 183.1 3.2 1.5 4.4.8 5.6-2.3 14.9-39.1 29.9-78.2 45-117.3 1.3-3.3.6-4.8-2.4-6.7-31.6-19.9-47.3-48.5-45.6-86 1-21.6 9.3-40.5 23.8-56.3 30-32.7 77-39.8 115.5-17.6 31.9 18.4 49.5 53.8 45.2 90.4-3.6 30.6-19.3 53.9-45.7 69.8-2.7 1.6-3.5 2.9-2.3 6 15.2 39.2 30.2 78.4 45.2 117.7 1.2 3.1 2.4 3.8 5.6 2.3 35.5-16.6 65.2-40.3 88.1-72 34.8-48.2 49.1-101.9 42.3-161C459.8 112 354.1 14.7 218 31.5 111.9 44.5 22.7 134 20.9 257.3z"] }; +var faPage4 = { prefix: 'fab', iconName: 'page4', icon: [496, 512, [], "f3d7", "M248 504C111 504 0 393 0 256S111 8 248 8c20.9 0 41.3 2.6 60.7 7.5L42.3 392H248v112zm0-143.6V146.8L98.6 360.4H248zm96 31.6v92.7c45.7-19.2 84.5-51.7 111.4-92.7H344zm57.4-138.2l-21.2 8.4 21.2 8.3v-16.7zm-20.3 54.5c-6.7 0-8 6.3-8 12.9v7.7h16.2v-10c0-5.9-2.3-10.6-8.2-10.6zM496 256c0 37.3-8.2 72.7-23 104.4H344V27.3C433.3 64.8 496 153.1 496 256zM360.4 143.6h68.2V96h-13.9v32.6h-13.9V99h-13.9v29.6h-12.7V96h-13.9v47.6zm68.1 185.3H402v-11c0-15.4-5.6-25.2-20.9-25.2-15.4 0-20.7 10.6-20.7 25.9v25.3h68.2v-15zm0-103l-68.2 29.7V268l68.2 29.5v-16.6l-14.4-5.7v-26.5l14.4-5.9v-16.9zm-4.8-68.5h-35.6V184H402v-12.2h11c8.6 15.8 1.3 35.3-18.6 35.3-22.5 0-28.3-25.3-15.5-37.7l-11.6-10.6c-16.2 17.5-12.2 63.9 27.1 63.9 34 0 44.7-35.9 29.3-65.3z"] }; +var faPagelines = { prefix: 'fab', iconName: 'pagelines', icon: [384, 512, [], "f18c", "M384 312.7c-55.1 136.7-187.1 54-187.1 54-40.5 81.8-107.4 134.4-184.6 134.7-16.1 0-16.6-24.4 0-24.4 64.4-.3 120.5-42.7 157.2-110.1-41.1 15.9-118.6 27.9-161.6-82.2 109-44.9 159.1 11.2 178.3 45.5 9.9-24.4 17-50.9 21.6-79.7 0 0-139.7 21.9-149.5-98.1 119.1-47.9 152.6 76.7 152.6 76.7 1.6-16.7 3.3-52.6 3.3-53.4 0 0-106.3-73.7-38.1-165.2 124.6 43 61.4 162.4 61.4 162.4.5 1.6.5 23.8 0 33.4 0 0 45.2-89 136.4-57.5-4.2 134-141.9 106.4-141.9 106.4-4.4 27.4-11.2 53.4-20 77.5 0 0 83-91.8 172-20z"] }; +var faPalfed = { prefix: 'fab', iconName: 'palfed', icon: [576, 512, [], "f3d8", "M384.9 193.9c0-47.4-55.2-44.2-95.4-29.8-1.3 39.4-2.5 80.7-3 119.8.7 2.8 2.6 6.2 15.1 6.2 36.8 0 83.4-42.8 83.3-96.2zm-194.5 72.2c.2 0 6.5-2.7 11.2-2.7 26.6 0 20.7 44.1-14.4 44.1-21.5 0-37.1-18.1-37.1-43 0-42 42.9-95.6 100.7-126.5 1-12.4 3-22 10.5-28.2 11.2-9 26.6-3.5 29.5 11.1 72.2-22.2 135.2 1 135.2 72 0 77.9-79.3 152.6-140.1 138.2-.1 39.4.9 74.4 2.7 100v.2c.2 3.4.6 12.5-5.3 19.1-9.6 10.6-33.4 10-36.4-22.3-4.1-44.4.2-206.1 1.4-242.5-21.5 15-58.5 50.3-58.5 75.9.2 2.5.4 4 .6 4.6zM8 181.1s-.1 37.4 38.4 37.4h30l22.4 217.2s0 44.3 44.7 44.3h288.9s44.7-.4 44.7-44.3l22.4-217.2h30s38.4 1.2 38.4-37.4c0 0 .1-37.4-38.4-37.4h-30.1c-7.3-25.6-30.2-74.3-119.4-74.3h-28V50.3s-2.7-18.4-21.1-18.4h-85.8s-21.1 0-21.1 18.4v19.1h-28.1s-105 4.2-120.5 74.3h-29S8 142.5 8 181.1z"] }; +var faPatreon = { prefix: 'fab', iconName: 'patreon', icon: [512, 512, [], "f3d9", "M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z"] }; +var faPaypal = { prefix: 'fab', iconName: 'paypal', icon: [384, 512, [], "f1ed", "M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z"] }; +var faPeriscope = { prefix: 'fab', iconName: 'periscope', icon: [448, 512, [], "f3da", "M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z"] }; +var faPhabricator = { prefix: 'fab', iconName: 'phabricator', icon: [496, 512, [], "f3db", "M323 262.1l-.1-13s21.7-19.8 21.1-21.2l-9.5-20c-.6-1.4-29.5-.5-29.5-.5l-9.4-9.3s.2-28.5-1.2-29.1l-20.1-9.2c-1.4-.6-20.7 21-20.7 21l-13.1-.2s-20.5-21.4-21.9-20.8l-20 8.3c-1.4.5.2 28.9.2 28.9l-9.1 9.1s-29.2-.9-29.7.4l-8.1 19.8c-.6 1.4 21 21 21 21l.1 12.9s-21.7 19.8-21.1 21.2l9.5 20c.6 1.4 29.5.5 29.5.5l9.4 9.3s-.2 31.8 1.2 32.3l20.1 8.3c1.4.6 20.7-23.5 20.7-23.5l13.1.2s20.5 23.8 21.8 23.3l20-7.5c1.4-.6-.2-32.1-.2-32.1l9.1-9.1s29.2.9 29.7-.5l8.1-19.8c.7-1.1-20.9-20.7-20.9-20.7zm-44.9-8.7c.7 17.1-12.8 31.6-30.1 32.4-17.3.8-32.1-12.5-32.8-29.6-.7-17.1 12.8-31.6 30.1-32.3 17.3-.8 32.1 12.5 32.8 29.5zm201.2-37.9l-97-97-.1.1c-75.1-73.3-195.4-72.8-269.8 1.6-50.9 51-27.8 27.9-95.7 95.3-22.3 22.3-22.3 58.7 0 81 69.9 69.4 46.4 46 97.4 97l.1-.1c75.1 73.3 195.4 72.9 269.8-1.6 51-50.9 27.9-27.9 95.3-95.3 22.3-22.3 22.3-58.7 0-81zM140.4 363.8c-59.6-59.5-59.6-156 0-215.5 59.5-59.6 156-59.5 215.6 0 59.5 59.5 59.6 156 0 215.6-59.6 59.5-156 59.4-215.6-.1z"] }; +var faPhoenixFramework = { prefix: 'fab', iconName: 'phoenix-framework', icon: [640, 512, [], "f3dc", "M212.9 344.3c3.8-.1 22.8-1.4 25.6-2.2-2.4-2.6-43.6-1-68-49.6-4.3-8.6-7.5-17.6-6.4-27.6 2.9-25.5 32.9-30 52-18.5 36 21.6 63.3 91.3 113.7 97.5 37 4.5 84.6-17 108.2-45.4-.6-.1-.8-.2-1-.1-.4.1-.8.2-1.1.3-33.3 12.1-94.3 9.7-134.7-14.8-37.6-22.8-53.1-58.7-51.8-74.6 1.8-21.3 22.9-23.2 35.9-19.6 14.4 3.9 24.4 17.6 38.9 27.4 15.6 10.4 32.9 13.7 51.3 10.3 14.9-2.7 34.4-12.3 36.5-14.5-1.1-.1-1.8-.1-2.5-.2-6.2-.6-12.4-.8-18.5-1.7C279.8 194.5 262.1 47.4 138.5 37.9 94.2 34.5 39.1 46 2.2 72.9c-.8.6-1.5 1.2-2.2 1.8.1.2.1.3.2.5.8 0 1.6-.1 2.4-.2 6.3-1 12.5-.8 18.7.3 23.8 4.3 47.7 23.1 55.9 76.5 5.3 34.3-.7 50.8 8 86.1 19 77.1 91 107.6 127.7 106.4zM75.3 64.9c-.9-1-.9-1.2-1.3-2 12.1-2.6 24.2-4.1 36.6-4.8-1.1 14.7-22.2 21.3-35.3 6.8zm196.9 350.5c-42.8 1.2-92-26.7-123.5-61.4-4.6-5-16.8-20.2-18.6-23.4l.4-.4c6.6 4.1 25.7 18.6 54.8 27 24.2 7 48.1 6.3 71.6-3.3 22.7-9.3 41-.5 43.1 2.9-18.5 3.8-20.1 4.4-24 7.9-5.1 4.4-4.6 11.7 7 17.2 26.2 12.4 63-2.8 97.2 25.4 2.4 2 8.1 7.8 10.1 10.7-.1.2-.3.3-.4.5-4.8-1.5-16.4-7.5-40.2-9.3-24.7-2-46.3 5.3-77.5 6.2zm174.8-252c16.4-5.2 41.3-13.4 66.5-3.3 16.1 6.5 26.2 18.7 32.1 34.6 3.5 9.4 5.1 19.7 5.1 28.7-.2 0-.4 0-.6.1-.2-.4-.4-.9-.5-1.3-5-22-29.9-43.8-67.6-29.9-50.2 18.6-130.4 9.7-176.9-48-.7-.9-2.4-1.7-1.3-3.2.1-.2 2.1.6 3 1.3 18.1 13.4 38.3 21.9 60.3 26.2 30.5 6.1 54.6 2.9 79.9-5.2zm102.7 117.5c-32.4.2-33.8 50.1-103.6 64.4-18.2 3.7-38.7 4.6-44.9 4.2v-.4c2.8-1.5 14.7-2.6 29.7-16.6 7.9-7.3 15.3-15.1 22.8-22.9 19.5-20.2 41.4-42.2 81.9-39 23.1 1.8 29.3 8.2 36.1 12.7.3.2.4.5.7.9-.5 0-.7.1-.9 0-7-2.7-14.3-3.3-21.8-3.3zm-12.3-24.1c-.1.2-.1.4-.2.6-28.9-4.4-48-7.9-68.5 4-17 9.9-31.4 20.5-62 24.4-27.1 3.4-45.1 2.4-66.1-8-.3-.2-.6-.4-1-.6 0-.2.1-.3.1-.5 24.9 3.8 36.4 5.1 55.5-5.8 22.3-12.9 40.1-26.6 71.3-31 29.6-4.1 51.3 2.5 70.9 16.9zM268.6 97.3c-.6-.6-1.1-1.2-2.1-2.3 7.6 0 29.7-1.2 53.4 8.4 19.7 8 32.2 21 50.2 32.9 11.1 7.3 23.4 9.3 36.4 8.1 4.3-.4 8.5-1.2 12.8-1.7.4-.1.9 0 1.5.3-.6.4-1.2.9-1.8 1.2-8.1 4-16.7 6.3-25.6 7.1-26.1 2.6-50.3-3.7-73.4-15.4-19.3-9.9-36.4-22.9-51.4-38.6zM640 335.7c-3.5 3.1-22.7 11.6-42.7 5.3-12.3-3.9-19.5-14.9-31.6-24.1-10-7.6-20.9-7.9-28.1-8.4.6-.8.9-1.2 1.2-1.4 14.8-9.2 30.5-12.2 47.3-6.5 12.5 4.2 19.2 13.5 30.4 24.2 10.8 10.4 21 9.9 23.1 10.5.1-.1.2 0 .4.4zm-212.5 137c2.2 1.2 1.6 1.5 1.5 2-18.5-1.4-33.9-7.6-46.8-22.2-21.8-24.7-41.7-27.9-48.6-29.7.5-.2.8-.4 1.1-.4 13.1.1 26.1.7 38.9 3.9 25.3 6.4 35 25.4 41.6 35.3 3.2 4.8 7.3 8.3 12.3 11.1z"] }; +var faPhoenixSquadron = { prefix: 'fab', iconName: 'phoenix-squadron', icon: [513, 512, [], "f511", "M96.24 62.81C142.91 26.57 202.15 6.57 261.28 8.08c29.67-.38 59.29 5.38 87.17 15.37-24.2-4.64-49.18-6.35-73.6-2.45-43 5.35-83.26 27.23-112.16 59.35 5.69-.99 10.81-3.68 16.07-5.88 18.19-7.89 37.6-13.29 57.4-14.87 19.8-2.14 39.75-.43 59.45 1.93-14.46 2.79-29.2 4.58-43.11 9.61-34.53 11.11-65.46 33.26-86.55 62.82-13.84 19.77-23.7 42.99-24.74 67.33-.35 16.54 5.23 34.91 19.89 44.17 11.13 6.66 24.85 9.39 37.63 6.76 15.49-2.47 30.16-8.67 43.73-16.38 11.55-6.84 22.73-14.59 32.05-24.32 3.8-3.23 2.54-8.48 2.63-12.83-2.13-.34-4.4-1.11-6.32.3a203.975 203.975 0 0 1-35.93 15.42c-20.07 6.19-42.28 8.48-62.28.78 12.83 1.73 26.14.31 37.85-5.46 20.29-9.75 36.92-25.27 54.6-38.88 27.84-21.29 57.64-40.11 89.17-55.47 25.78-12.01 53.09-22.85 81.81-24.2-15.68 13.76-32.25 26.6-46.92 41.51-14.55 14.04-27.54 29.58-40.23 45.31-3.53 4.61-8.98 6.96-13.62 10.19-22.24 15.03-40.6 35.96-52.04 60.28-9.36 19.74-14.55 41.97-11.81 63.84 1.95 13.73 8.74 27.67 20.96 35.01 12.94 7.99 29.14 8.09 43.61 5.11 32.9-7.47 61.61-28.97 81.28-56 20.5-27.6 30.61-62.38 29.25-96.64-.52-7.52-1.58-15-1.67-22.55 8.02 19.54 14.87 39.83 16.7 61.01 2.01 14.32.75 28.84-1.62 43.02-1.92 11.02-5.69 21.58-7.81 32.53 20.36-22.73 34.17-51.24 39.46-81.31 5.72-35.37.58-72.36-14.25-104.95 20.84 32.12 32.43 69.79 35.81 107.8.5 12.77.5 25.58 0 38.34-2.91 34.26-12.97 67.95-29.76 98-26.2 47.48-68.2 85.89-117.54 108.32-78.52 36.34-175.2 31.41-248.72-14.72-38.84-23.78-71.06-58.32-91.68-98.96C10.72 337.43 2.04 305.5 0 273.13V241.7c3.94-69.97 40.99-136.32 96.24-178.89m222.65 80.57c5.51-.8 10.82-2.57 16.02-4.5 4.99-1.77 9.27-5.95 10.35-11.25-8.91 5-17.95 9.95-26.37 15.75z"] }; +var faPhp = { prefix: 'fab', iconName: 'php', icon: [640, 512, [], "f457", "M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z"] }; +var faPiedPiper = { prefix: 'fab', iconName: 'pied-piper', icon: [448, 512, [], "f2ae", "M32 419L0 479.2l.8-328C.8 85.3 54 32 120 32h327.2c-93 28.9-189.9 94.2-253.9 168.6C122.7 282 82.6 338 32 419M448 32S305.2 98.8 261.6 199.1c-23.2 53.6-28.9 118.1-71 158.6-28.9 27.8-69.8 38.2-105.3 56.3-23.2 12-66.4 40.5-84.9 66h328.4c66 0 119.3-53.3 119.3-119.2-.1 0-.1-328.8-.1-328.8z"] }; +var faPiedPiperAlt = { prefix: 'fab', iconName: 'pied-piper-alt', icon: [576, 512, [], "f1a8", "M242 187c6.3-11.8 13.2-17 25.9-21.8 27.3-10.3 40.2-30.5 58.9-51.1 11.9 8.4 12 24.6 31.6 23v21.8l6.3.3c37.4-14.4 74.7-30.2 106.6-54.6 48.3-36.8 52.9-50 81.3-100l2-2.6c-.6 14.1-6.3 27.3-12.4 39.9-30.5 63.8-78.7 100.3-146.8 116.7-12.4 2.9-26.4 3.2-37.6 8.9 1.4 9.8 13.2 18.1 13.2 23 0 3.4-5.5 7.2-7.5 8.6-11.2-12.9-16.1-19.3-22.7-22.1-7.6-3.5-63.9-6.4-98.8 10zm137.9 256.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9L244 246zm-12.6 31.8l24.1 61.2 21-13.8-31.3-50.9-13.8 3.5zM555.5 0l-.6 1.1-.3.9.6-.6.3-1.4zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46v27.3l11.8-3.4-2.9-23.8h-8.9zm76.1 2.9c0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3l2 12.4c9-1.5 58.4-6.6 58.4-14.1z"] }; +var faPiedPiperHat = { prefix: 'fab', iconName: 'pied-piper-hat', icon: [640, 512, [], "f4e5", "M640 24.9c-80.8 53.6-89.4 92.5-96.4 104.4-6.7 12.2-11.7 60.3-23.3 83.6-11.7 23.6-54.2 42.2-66.1 50-11.7 7.8-28.3 38.1-41.9 64.2-108.1-4.4-167.4 38.8-259.2 93.6 29.4-9.7 43.3-16.7 43.3-16.7 94.2-36 139.3-68.3 281.1-49.2 1.1 0 1.9.6 2.8.8 3.9 2.2 5.3 6.9 3.1 10.8l-53.9 95.8c-2.5 4.7-7.8 7.2-13.1 6.1-126.8-23.8-226.9 17.3-318.9 18.6C24.1 488 0 453.4 0 451.8c0-1.1.6-1.7 1.7-1.7 0 0 38.3 0 103.1-15.3C178.4 294.5 244 245.4 315.4 245.4c0 0 71.7 0 90.6 61.9 22.8-39.7 28.3-49.2 28.3-49.2 5.3-9.4 35-77.2 86.4-141.4 51.5-64 90.4-79.9 119.3-91.8z"] }; +var faPiedPiperPp = { prefix: 'fab', iconName: 'pied-piper-pp', icon: [448, 512, [], "f1a7", "M205.3 174.6c0 21.1-14.2 38.1-31.7 38.1-7.1 0-12.8-1.2-17.2-3.7v-68c4.4-2.7 10.1-4.2 17.2-4.2 17.5 0 31.7 16.9 31.7 37.8zm52.6 67c-7.1 0-12.8 1.5-17.2 4.2v68c4.4 2.5 10.1 3.7 17.2 3.7 17.4 0 31.7-16.9 31.7-37.8 0-21.1-14.3-38.1-31.7-38.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM185 255.1c41 0 74.2-35.6 74.2-79.6 0-44-33.2-79.6-74.2-79.6-12 0-24.1 3.2-34.6 8.8h-45.7V311l51.8-10.1v-50.6c8.6 3.1 18.1 4.8 28.5 4.8zm158.4 25.3c0-44-33.2-79.6-73.9-79.6-3.2 0-6.4.2-9.6.7-3.7 12.5-10.1 23.8-19.2 33.4-13.8 15-32.2 23.8-51.8 24.8V416l51.8-10.1v-50.6c8.6 3.2 18.2 4.7 28.7 4.7 40.8 0 74-35.6 74-79.6z"] }; +var faPinterest = { prefix: 'fab', iconName: 'pinterest', icon: [496, 512, [], "f0d2", "M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3.8-3.4 5-20.3 6.9-28.1.6-2.5.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z"] }; +var faPinterestP = { prefix: 'fab', iconName: 'pinterest-p', icon: [384, 512, [], "f231", "M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z"] }; +var faPinterestSquare = { prefix: 'fab', iconName: 'pinterest-square', icon: [448, 512, [], "f0d3", "M448 80v352c0 26.5-21.5 48-48 48H154.4c9.8-16.4 22.4-40 27.4-59.3 3-11.5 15.3-58.4 15.3-58.4 8 15.3 31.4 28.2 56.3 28.2 74.1 0 127.4-68.1 127.4-152.7 0-81.1-66.2-141.8-151.4-141.8-106 0-162.2 71.1-162.2 148.6 0 36 19.2 80.8 49.8 95.1 4.7 2.2 7.1 1.2 8.2-3.3.8-3.4 5-20.1 6.8-27.8.6-2.5.3-4.6-1.7-7-10.1-12.3-18.3-34.9-18.3-56 0-54.2 41-106.6 110.9-106.6 60.3 0 102.6 41.1 102.6 99.9 0 66.4-33.5 112.4-77.2 112.4-24.1 0-42.1-19.9-36.4-44.4 6.9-29.2 20.3-60.7 20.3-81.8 0-53-75.5-45.7-75.5 25 0 21.7 7.3 36.5 7.3 36.5-31.4 132.8-36.1 134.5-29.6 192.6l2.2.8H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z"] }; +var faPlaystation = { prefix: 'fab', iconName: 'playstation', icon: [576, 512, [], "f3df", "M570.9 372.3c-11.3 14.2-38.8 24.3-38.8 24.3L327 470.2v-54.3l150.9-53.8c17.1-6.1 19.8-14.8 5.8-19.4-13.9-4.6-39.1-3.3-56.2 2.9L327 381.1v-56.4c23.2-7.8 47.1-13.6 75.7-16.8 40.9-4.5 90.9.6 130.2 15.5 44.2 14 49.2 34.7 38 48.9zm-224.4-92.5v-139c0-16.3-3-31.3-18.3-35.6-11.7-3.8-19 7.1-19 23.4v347.9l-93.8-29.8V32c39.9 7.4 98 24.9 129.2 35.4C424.1 94.7 451 128.7 451 205.2c0 74.5-46 102.8-104.5 74.6zM43.2 410.2c-45.4-12.8-53-39.5-32.3-54.8 19.1-14.2 51.7-24.9 51.7-24.9l134.5-47.8v54.5l-96.8 34.6c-17.1 6.1-19.7 14.8-5.8 19.4 13.9 4.6 39.1 3.3 56.2-2.9l46.4-16.9v48.8c-51.6 9.3-101.4 7.3-153.9-10z"] }; +var faProductHunt = { prefix: 'fab', iconName: 'product-hunt', icon: [512, 512, [], "f288", "M326.3 218.8c0 20.5-16.7 37.2-37.2 37.2h-70.3v-74.4h70.3c20.5 0 37.2 16.7 37.2 37.2zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-128.1-37.2c0-47.9-38.9-86.8-86.8-86.8H169.2v248h49.6v-74.4h70.3c47.9 0 86.8-38.9 86.8-86.8z"] }; +var faPushed = { prefix: 'fab', iconName: 'pushed', icon: [432, 512, [], "f3e1", "M407 111.9l-98.5-9 14-33.4c10.4-23.5-10.8-40.4-28.7-37L22.5 76.9c-15.1 2.7-26 18.3-21.4 36.6l105.1 348.3c6.5 21.3 36.7 24.2 47.7 7l35.3-80.8 235.2-231.3c16.4-16.8 4.3-42.9-17.4-44.8zM297.6 53.6c5.1-.7 7.5 2.5 5.2 7.4L286 100.9 108.6 84.6l189-31zM22.7 107.9c-3.1-5.1 1-10 6.1-9.1l248.7 22.7-96.9 230.7L22.7 107.9zM136 456.4c-2.6 4-7.9 3.1-9.4-1.2L43.5 179.7l127.7 197.6c-7 15-35.2 79.1-35.2 79.1zm272.8-314.5L210.1 337.3l89.7-213.7 106.4 9.7c4 1.1 5.7 5.3 2.6 8.6z"] }; +var faPython = { prefix: 'fab', iconName: 'python', icon: [448, 512, [], "f3e2", "M167.8 36.4c-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1zm-6.7 28.4c11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4zm185.2 81.4v47.5c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6-7.7-30.9-22.3-54.2-53.4-54.2h-40.1zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3z"] }; +var faQq = { prefix: 'fab', iconName: 'qq', icon: [448, 512, [], "f1d6", "M433.754 420.445c-11.526 1.393-44.86-52.741-44.86-52.741 0 31.345-16.136 72.247-51.051 101.786 16.842 5.192 54.843 19.167 45.803 34.421-7.316 12.343-125.51 7.881-159.632 4.037-34.122 3.844-152.316 8.306-159.632-4.037-9.045-15.25 28.918-29.214 45.783-34.415-34.92-29.539-51.059-70.445-51.059-101.792 0 0-33.334 54.134-44.859 52.741-5.37-.65-12.424-29.644 9.347-99.704 10.261-33.024 21.995-60.478 40.144-105.779C60.683 98.063 108.982.006 224 0c113.737.006 163.156 96.133 160.264 214.963 18.118 45.223 29.912 72.85 40.144 105.778 21.768 70.06 14.716 99.053 9.346 99.704z"] }; +var faQuinscape = { prefix: 'fab', iconName: 'quinscape', icon: [489, 512, [], "f459", "M301.9 474.6h-1.3c-87.3 0-158.1-70.8-158.1-158.1s70.8-158.1 158.1-158.1c94.9 0 168.2 83.1 157 176.6 4 5.1 8.2 9.6 11.2 15.3 13.4-30.3 20.3-62.4 20.3-97.7C489.1 117.5 379.6 8 244.5 8 109.5 8 0 117.5 0 252.6s109.5 244.6 244.5 244.6c24.8 0 47.8-3.2 70.4-10.1-5.2-3.5-9-8.2-13.4-12.6l.4.1zm-21.2-69.8c0-54.8 44.4-99.2 99.2-99.2 54.8 0 99.2 44.4 99.2 99.2 0 54.8-44.4 99.2-99.2 99.2-54.8 0-99.2-44.4-99.2-99.2"] }; +var faQuora = { prefix: 'fab', iconName: 'quora', icon: [448, 512, [], "f2c4", "M440.5 386.7h-29.3c-1.5 13.5-10.5 30.8-33 30.8-20.5 0-35.3-14.2-49.5-35.8 44.2-34.2 74.7-87.5 74.7-153C403.5 111.2 306.8 32 205 32 105.3 32 7.3 111.7 7.3 228.7c0 134.1 131.3 221.6 249 189C276 451.3 302 480 351.5 480c81.8 0 90.8-75.3 89-93.3zM297 329.2C277.5 300 253.3 277 205.5 277c-30.5 0-54.3 10-69 22.8l12.2 24.3c6.2-3 13-4 19.8-4 35.5 0 53.7 30.8 69.2 61.3-10 3-20.7 4.2-32.7 4.2-75 0-107.5-53-107.5-156.7C97.5 124.5 130 71 205 71c76.2 0 108.7 53.5 108.7 157.7.1 41.8-5.4 75.6-16.7 100.5z"] }; +var faRProject = { prefix: 'fab', iconName: 'r-project', icon: [581, 512, [], "f4f7", "M581 226.6C581 119.1 450.9 32 290.5 32S0 119.1 0 226.6C0 322.4 103.3 402 239.4 418.1V480h99.1v-61.5c24.3-2.7 47.6-7.4 69.4-13.9L448 480h112l-67.4-113.7c54.5-35.4 88.4-84.9 88.4-139.7zm-466.8 14.5c0-73.5 98.9-133 220.8-133s211.9 40.7 211.9 133c0 50.1-26.5 85-70.3 106.4-2.4-1.6-4.7-2.9-6.4-3.7-10.2-5.2-27.8-10.5-27.8-10.5s86.6-6.4 86.6-92.7-90.6-87.9-90.6-87.9h-199V361c-74.1-21.5-125.2-67.1-125.2-119.9zm225.1 38.3v-55.6c57.8 0 87.8-6.8 87.8 27.3 0 36.5-38.2 28.3-87.8 28.3zm-.9 72.5H365c10.8 0 18.9 11.7 24 19.2-16.1 1.9-33 2.8-50.6 2.9v-22.1z"] }; +var faRavelry = { prefix: 'fab', iconName: 'ravelry', icon: [512, 512, [], "f2d9", "M407.4 61.5C331.6 22.1 257.8 31 182.9 66c-11.3 5.2-15.5 10.6-19.9 19-10.3 19.2-16.2 37.4-19.9 52.7-21.2 25.6-36.4 56.1-43.3 89.9-10.6 18-20.9 41.4-23.1 71.4 0 0-.7 7.6-.5 7.9-35.3-4.6-76.2-27-76.2-27 9.1 14.5 61.3 32.3 76.3 37.9 0 0 1.7 98 64.5 131.2-11.3-17.2-13.3-20.2-13.3-20.2S94.8 369 100.4 324.7c.7 0 1.5.2 2.2.2 23.9 87.4 103.2 151.4 196.9 151.4 6.2 0 12.1-.2 18-.7 14 1.5 27.6.5 40.1-3.9 6.9-2.2 13.8-6.4 20.2-10.8 70.2-39.1 100.9-82 123.1-147.7 5.4-16 8.1-35.5 9.8-52.2 8.7-82.3-30.6-161.6-103.3-199.5zM138.8 163.2s-1.2 12.3-.7 19.7c-3.4 2.5-10.1 8.1-18.2 16.7 5.2-12.8 11.3-25.1 18.9-36.4zm-31.2 121.9c4.4-17.2 13.3-39.1 29.8-55.1 0 0 1.7 48 15.8 90.1l-41.4-6.9c-2.2-9.2-3.5-18.5-4.2-28.1zm7.9 42.8c14.8 3.2 34 7.6 43.1 9.1 27.3 76.8 108.3 124.3 108.3 124.3 1 .5 1.7.7 2.7 1-73.1-11.6-132.7-64.7-154.1-134.4zM386 444.1c-14.5 4.7-36.2 8.4-64.7 3.7 0 0-91.1-23.1-127.5-107.8 38.2.7 52.4-.2 78-3.9 39.4-5.7 79-16.2 115-33 11.8-5.4 11.1-19.4 9.6-29.8-2-12.8-11.1-12.1-21.4-4.7 0 0-82 58.6-189.8 53.7-18.7-32-26.8-110.8-26.8-110.8 41.4-35.2 83.2-59.6 168.4-52.4.2-6.4 3-27.1-20.4-28.1 0 0-93.5-11.1-146 33.5 2.5-16.5 5.9-29.3 11.1-39.4 34.2-30.8 79-49.5 128.3-49.5 106.4 0 193 87.1 193 194.5-.2 76-43.8 142-106.8 174z"] }; +var faReact = { prefix: 'fab', iconName: 'react', icon: [512, 512, [], "f41b", "M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zm-130 189.1c4.6 8.8 9.3 17.5 14.3 26.1 5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5zm0-50.6c-6.3-14.9-11.6-29.5-16-43.6 14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26zm11.4 25.3c6.6-13.8 13.8-27.3 21.4-40.6 7.6-13.3 15.8-26.2 24.4-38.9 15-1.1 30.3-1.7 45.9-1.7 15.6 0 31 .6 45.9 1.7 8.5 12.6 16.6 25.5 24.3 38.7 7.7 13.2 14.9 26.7 21.7 40.4-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6-15.7 0-30.9-.5-45.6-1.4-8.7-12.7-16.9-25.7-24.6-39-7.7-13.3-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zM256 210.2c25.3 0 45.8 20.5 45.8 45.8 0 25.3-20.5 45.8-45.8 45.8-25.3 0-45.8-20.5-45.8-45.8 0-25.3 20.5-45.8 45.8-45.8"] }; +var faReadme = { prefix: 'fab', iconName: 'readme', icon: [576, 512, [], "f4d5", "M528.3 46.5H388.5c-48.1 0-89.9 33.3-100.4 80.3-10.6-47-52.3-80.3-100.4-80.3H48c-26.5 0-48 21.5-48 48v245.8c0 26.5 21.5 48 48 48h89.7c102.2 0 132.7 24.4 147.3 75 .7 2.8 5.2 2.8 6 0 14.7-50.6 45.2-75 147.3-75H528c26.5 0 48-21.5 48-48V94.6c0-26.4-21.3-47.9-47.7-48.1zM242 311.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5V289c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V251zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm259.3 121.7c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5V228c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.8c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V190z"] }; +var faRebel = { prefix: 'fab', iconName: 'rebel', icon: [512, 512, [], "f1d0", "M256.5 504C117.2 504 9 387.8 13.2 249.9 16 170.7 56.4 97.7 129.7 49.5c.3 0 1.9-.6 1.1.8-5.8 5.5-111.3 129.8-14.1 226.4 49.8 49.5 90 2.5 90 2.5 38.5-50.1-.6-125.9-.6-125.9-10-24.9-45.7-40.1-45.7-40.1l28.8-31.8c24.4 10.5 43.2 38.7 43.2 38.7.8-29.6-21.9-61.4-21.9-61.4L255.1 8l44.3 50.1c-20.5 28.8-21.9 62.6-21.9 62.6 13.8-23 43.5-39.3 43.5-39.3l28.5 31.8c-27.4 8.9-45.4 39.9-45.4 39.9-15.8 28.5-27.1 89.4.6 127.3 32.4 44.6 87.7-2.8 87.7-2.8 102.7-91.9-10.5-225-10.5-225-6.1-5.5.8-2.8.8-2.8 50.1 36.5 114.6 84.4 116.2 204.8C500.9 400.2 399 504 256.5 504z"] }; +var faRedRiver = { prefix: 'fab', iconName: 'red-river', icon: [448, 512, [], "f3e3", "M353.2 32H94.8C42.4 32 0 74.4 0 126.8v258.4C0 437.6 42.4 480 94.8 480h258.4c52.4 0 94.8-42.4 94.8-94.8V126.8c0-52.4-42.4-94.8-94.8-94.8zM144.9 200.9v56.3c0 27-21.9 48.9-48.9 48.9V151.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9h-56.3c-12.3-.6-24.6 11.6-24 24zm176.3 72h-56.3c-12.3-.6-24.6 11.6-24 24v56.3c0 27-21.9 48.9-48.9 48.9V247.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9z"] }; +var faReddit = { prefix: 'fab', iconName: 'reddit', icon: [512, 512, [], "f1a1", "M201.5 305.5c-13.8 0-24.9-11.1-24.9-24.6 0-13.8 11.1-24.9 24.9-24.9 13.6 0 24.6 11.1 24.6 24.9 0 13.6-11.1 24.6-24.6 24.6zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-132.3-41.2c-9.4 0-17.7 3.9-23.8 10-22.4-15.5-52.6-25.5-86.1-26.6l17.4-78.3 55.4 12.5c0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.3 24.9-24.9s-11.1-24.9-24.9-24.9c-9.7 0-18 5.8-22.1 13.8l-61.2-13.6c-3-.8-6.1 1.4-6.9 4.4l-19.1 86.4c-33.2 1.4-63.1 11.3-85.5 26.8-6.1-6.4-14.7-10.2-24.1-10.2-34.9 0-46.3 46.9-14.4 62.8-1.1 5-1.7 10.2-1.7 15.5 0 52.6 59.2 95.2 132 95.2 73.1 0 132.3-42.6 132.3-95.2 0-5.3-.6-10.8-1.9-15.8 31.3-16 19.8-62.5-14.9-62.5zM302.8 331c-18.2 18.2-76.1 17.9-93.6 0-2.2-2.2-6.1-2.2-8.3 0-2.5 2.5-2.5 6.4 0 8.6 22.8 22.8 87.3 22.8 110.2 0 2.5-2.2 2.5-6.1 0-8.6-2.2-2.2-6.1-2.2-8.3 0zm7.7-75c-13.6 0-24.6 11.1-24.6 24.9 0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.1 24.9-24.6 0-13.8-11-24.9-24.9-24.9z"] }; +var faRedditAlien = { prefix: 'fab', iconName: 'reddit-alien', icon: [512, 512, [], "f281", "M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2.1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z"] }; +var faRedditSquare = { prefix: 'fab', iconName: 'reddit-square', icon: [448, 512, [], "f1a2", "M283.2 345.5c2.7 2.7 2.7 6.8 0 9.2-24.5 24.5-93.8 24.6-118.4 0-2.7-2.4-2.7-6.5 0-9.2 2.4-2.4 6.5-2.4 8.9 0 18.7 19.2 81 19.6 100.5 0 2.4-2.3 6.6-2.3 9 0zm-91.3-53.8c0-14.9-11.9-26.8-26.5-26.8-14.9 0-26.8 11.9-26.8 26.8 0 14.6 11.9 26.5 26.8 26.5 14.6 0 26.5-11.9 26.5-26.5zm90.7-26.8c-14.6 0-26.5 11.9-26.5 26.8 0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-11.9 26.8-26.5 0-14.9-11.9-26.8-26.8-26.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-99.7 140.6c-10.1 0-19 4.2-25.6 10.7-24.1-16.7-56.5-27.4-92.5-28.6l18.7-84.2 59.5 13.4c0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-12.2 26.8-26.8 0-14.6-11.9-26.8-26.8-26.8-10.4 0-19.3 6.2-23.8 14.9l-65.7-14.6c-3.3-.9-6.5 1.5-7.4 4.8l-20.5 92.8c-35.7 1.5-67.8 12.2-91.9 28.9-6.5-6.8-15.8-11-25.9-11-37.5 0-49.8 50.4-15.5 67.5-1.2 5.4-1.8 11-1.8 16.7 0 56.5 63.7 102.3 141.9 102.3 78.5 0 142.2-45.8 142.2-102.3 0-5.7-.6-11.6-2.1-17 33.6-17.2 21.2-67.2-16.1-67.2z"] }; +var faRendact = { prefix: 'fab', iconName: 'rendact', icon: [496, 512, [], "f3e4", "M248 8C111 8 0 119 0 256s111 248 248 248c18.6 0 36.7-2.1 54.1-5.9-5.6-7.4-10.8-14.4-15.9-21.3-12.4 2.1-25.2 3.3-38.3 3.3C124.3 480 24 379.7 24 256S124.3 32 248 32s224 100.3 224 224c0 71-33 134.2-84.5 175.3-25.9 18.8-39.1 21.4-83.5-44.2-78.7-112.9-48-71.1-73.7-108.3 72.8 8.9 228.5-72 168.6-168.6C314-26.8 15 93.8 59.7 226.4c3.2 9.8 14.4 38.6 45.6 38.6 2 0 2.6-.6 2-1.7-4.4-8.7-20.1-9.8-20.1-37.4 0-40.5 40.5-89.6 100.3-120 66.1-32.3 131.9-30.2 158.2 5.4 27.2 38.3-20.9 119.2-120.4 136.9 7.5-9.4 57-75.2 62.8-84 22.7-34.6 23.6-49 14-59.2-15.5-16.9-29.5-10.3-50.7-11.7-10.8-.9-113.7 181.2-136.4 216.9-5.9 9-21.2 34.1-21.2 50.9 0 21.3 2.8 51.4 20.6 51.4 10.6 0 8-18.7 8-26.6 0-12.9 27.4-49.4 74.8-104.6 20.4 36.1 57.7 114.3 130.2 209.7 98-33.1 168.5-125.8 168.5-235C496 119 385 8 248 8z"] }; +var faRenren = { prefix: 'fab', iconName: 'renren', icon: [512, 512, [], "f18b", "M214 169.1c0 110.4-61 205.4-147.6 247.4C30 373.2 8 317.7 8 256.6 8 133.9 97.1 32.2 214 12.5v156.6zM255 504c-42.9 0-83.3-11-118.5-30.4C193.7 437.5 239.9 382.9 255 319c15.5 63.9 61.7 118.5 118.8 154.7C338.7 493 298.3 504 255 504zm190.6-87.5C359 374.5 298 279.6 298 169.1V12.5c116.9 19.7 206 121.4 206 244.1 0 61.1-22 116.6-58.4 159.9z"] }; +var faReplyd = { prefix: 'fab', iconName: 'replyd', icon: [448, 512, [], "f3e6", "M320 480H128C57.6 480 0 422.4 0 352V160C0 89.6 57.6 32 128 32h192c70.4 0 128 57.6 128 128v192c0 70.4-57.6 128-128 128zM193.4 273.2c-6.1-2-11.6-3.1-16.4-3.1-7.2 0-13.5 1.9-18.9 5.6-5.4 3.7-9.6 9-12.8 15.8h-1.1l-4.2-18.3h-28v138.9h36.1v-89.7c1.5-5.4 4.4-9.8 8.7-13.2 4.3-3.4 9.8-5.1 16.2-5.1 4.6 0 9.8 1 15.6 3.1l4.8-34zm115.2 103.4c-3.2 2.4-7.7 4.8-13.7 7.1-6 2.3-12.8 3.5-20.4 3.5-12.2 0-21.1-3-26.5-8.9-5.5-5.9-8.5-14.7-9-26.4h83.3c.9-4.8 1.6-9.4 2.1-13.9.5-4.4.7-8.6.7-12.5 0-10.7-1.6-19.7-4.7-26.9-3.2-7.2-7.3-13-12.5-17.2-5.2-4.3-11.1-7.3-17.8-9.2-6.7-1.8-13.5-2.8-20.6-2.8-21.1 0-37.5 6.1-49.2 18.3s-17.5 30.5-17.5 55c0 22.8 5.2 40.7 15.6 53.7 10.4 13.1 26.8 19.6 49.2 19.6 10.7 0 20.9-1.5 30.4-4.6 9.5-3.1 17.1-6.8 22.6-11.2l-12-23.6zm-21.8-70.3c3.8 5.4 5.3 13.1 4.6 23.1h-51.7c.9-9.4 3.7-17 8.2-22.6 4.5-5.6 11.5-8.5 21-8.5 8.2-.1 14.1 2.6 17.9 8zm79.9 2.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4s2 11.7 6.1 15.6zm0 100.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4 0 6.6 2 11.7 6.1 15.6z"] }; +var faResearchgate = { prefix: 'fab', iconName: 'researchgate', icon: [448, 512, [], "f4f8", "M0 32v448h448V32H0zm262.2 334.4c-6.6 3-33.2 6-50-14.2-9.2-10.6-25.3-33.3-42.2-63.6-8.9 0-14.7 0-21.4-.6v46.4c0 23.5 6 21.2 25.8 23.9v8.1c-6.9-.3-23.1-.8-35.6-.8-13.1 0-26.1.6-33.6.8v-8.1c15.5-2.9 22-1.3 22-23.9V225c0-22.6-6.4-21-22-23.9V193c25.8 1 53.1-.6 70.9-.6 31.7 0 55.9 14.4 55.9 45.6 0 21.1-16.7 42.2-39.2 47.5 13.6 24.2 30 45.6 42.2 58.9 7.2 7.8 17.2 14.7 27.2 14.7v7.3zm22.9-135c-23.3 0-32.2-15.7-32.2-32.2V167c0-12.2 8.8-30.4 34-30.4s30.4 17.9 30.4 17.9l-10.7 7.2s-5.5-12.5-19.7-12.5c-7.9 0-19.7 7.3-19.7 19.7v26.8c0 13.4 6.6 23.3 17.9 23.3 14.1 0 21.5-10.9 21.5-26.8h-17.9v-10.7h30.4c0 20.5 4.7 49.9-34 49.9zm-116.5 44.7c-9.4 0-13.6-.3-20-.8v-69.7c6.4-.6 15-.6 22.5-.6 23.3 0 37.2 12.2 37.2 34.5 0 21.9-15 36.6-39.7 36.6z"] }; +var faResolving = { prefix: 'fab', iconName: 'resolving', icon: [496, 512, [], "f3e7", "M281.2 278.2c46-13.3 49.6-23.5 44-43.4L314 195.5c-6.1-20.9-18.4-28.1-71.1-12.8L54.7 236.8l28.6 98.6 197.9-57.2zM248.5 8C131.4 8 33.2 88.7 7.2 197.5l221.9-63.9c34.8-10.2 54.2-11.7 79.3-8.2 36.3 6.1 52.7 25 61.4 55.2l10.7 37.8c8.2 28.1 1 50.6-23.5 73.6-19.4 17.4-31.2 24.5-61.4 33.2L203 351.8l220.4 27.1 9.7 34.2-48.1 13.3-286.8-37.3 23 80.2c36.8 22 80.3 34.7 126.3 34.7 137 0 248.5-111.4 248.5-248.3C497 119.4 385.5 8 248.5 8zM38.3 388.6L0 256.8c0 48.5 14.3 93.4 38.3 131.8z"] }; +var faRocketchat = { prefix: 'fab', iconName: 'rocketchat', icon: [448, 512, [], "f3e8", "M448 256.2c0-87.2-99.6-153.3-219.8-153.3-18.8 0-37.3 1.6-55.3 4.8-11.1-10.5-24.2-20-38-27.4C61.2 44.2 0 79.4 0 79.4s56.9 47.1 47.6 88.3c-52.3 52.3-52.5 124.1 0 176.6C56.9 385.6 0 432.6 0 432.6s61.2 35.2 134.9-.8c13.8-7.5 26.9-16.9 38-27.4 18 3.2 36.5 4.8 55.3 4.8 120.3-.1 219.8-65.8 219.8-153zm-219.7 124c-23.7 0-46.3-2.8-67.3-7.8-21.3 25.8-68.1 61.7-113.6 50.1 14.8-16 36.7-43.1 32-87.6-27.3-21.4-43.6-48.7-43.6-78.5 0-68.4 86.2-123.9 192.5-123.9S420.8 188 420.8 256.4c0 68.3-86.2 123.8-192.5 123.8zm25.6-123.9c0 14.2-11.5 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.5-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm88.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm-177.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.2 0 25.6 11.6 25.6 25.8z"] }; +var faRockrms = { prefix: 'fab', iconName: 'rockrms', icon: [496, 512, [], "f3e9", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm157.4 419.5h-90l-112-131.3c-17.9-20.4-3.9-56.1 26.6-56.1h75.3l-84.6-99.3-84.3 98.9h-90L193.5 67.2c14.4-18.4 41.3-17.3 54.5 0l157.7 185.1c19 22.8 2 57.2-27.6 56.1-.6 0-74.2.2-74.2.2l101.5 118.9z"] }; +var faSafari = { prefix: 'fab', iconName: 'safari', icon: [512, 512, [], "f267", "M236.9 256.8c0-9.1 6.6-17.7 16.3-17.7 8.9 0 17.4 6.4 17.4 16.1 0 9.1-6.4 17.7-16.1 17.7-9 0-17.6-6.7-17.6-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-26.6 0c0-122.3-99.1-221.4-221.4-221.4S34.6 133.7 34.6 256 133.7 477.4 256 477.4 477.4 378.3 477.4 256zm-72.5 96.6c0 3.6 13 10.2 16.3 12.2-27.4 41.5-69.8 71.4-117.9 83.3l-4.4-18.5c-.3-2.5-1.9-2.8-4.2-2.8-1.9 0-3 2.8-2.8 4.2l4.4 18.8c-13.3 2.8-26.8 4.2-40.4 4.2-36.3 0-72-10.2-103-29.1 1.7-2.8 12.2-18 12.2-20.2 0-1.9-1.7-3.6-3.6-3.6-3.9 0-12.2 16.6-14.7 19.9-41.8-27.7-72-70.6-83.6-119.6l19.1-4.2c2.2-.6 2.8-2.2 2.8-4.2 0-1.9-2.8-3-4.4-2.8L62 294.5c-2.5-12.7-3.9-25.5-3.9-38.5 0-37.1 10.5-73.6 30.2-104.9 2.8 1.7 16.1 10.8 18.3 10.8 1.9 0 3.6-1.4 3.6-3.3 0-3.9-14.7-11.3-18-13.6 28.2-41.2 71.1-70.9 119.8-81.9l4.2 18.5c.6 2.2 2.2 2.8 4.2 2.8s3-2.8 2.8-4.4L219 61.7c12.2-2.2 24.6-3.6 37.1-3.6 37.1 0 73.3 10.5 104.9 30.2-1.9 2.8-10.8 15.8-10.8 18 0 1.9 1.4 3.6 3.3 3.6 3.9 0 11.3-14.4 13.3-17.7 41 27.7 70.3 70 81.7 118.2l-15.5 3.3c-2.5.6-2.8 2.2-2.8 4.4 0 1.9 2.8 3 4.2 2.8l15.8-3.6c2.5 12.7 3.9 25.7 3.9 38.7 0 36.3-10 72-28.8 102.7-2.8-1.4-14.4-9.7-16.6-9.7-2.1 0-3.8 1.7-3.8 3.6zm-33.2-242.2c-13 12.2-134.2 123.7-137.6 129.5l-96.6 160.5c12.7-11.9 134.2-124 137.3-129.3l96.9-160.7z"] }; +var faSass = { prefix: 'fab', iconName: 'sass', icon: [640, 512, [], "f41e", "M551.1 291.9c-22.4.1-41.8 5.5-58 13.5-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-3.8 11.1-5.3 19.1-2.3 11.7-25.8 53.5-39.1 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-2.7 11.4-5.3 19.1-2.6 7.7-33.9 77.3-42.1 95.4-4.2 9.2-7.8 16.6-10.4 21.6s-.2.3-.4.9c-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4.3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2-.8 0-1.4 2-1.4 2s10.1-42.4-19.4-42.4c-18.4 0-44 20.2-56.6 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.8-38.2-101.9-65.2-99.1-116.5 1-18.7 7.5-67.8 127.1-127.4 98-48.8 176.4-35.4 189.9-5.6 19.4 42.5-41.9 121.6-143.7 133-38.8 4.3-59.2-10.7-64.3-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.8 28.9 18.7 6.1 64.2 9.5 119.2-11.8C367 196.5 415.1 130.2 401 74.7 386.6 18.3 293.1-.2 204.6 31.2 151.9 49.9 94.9 79.3 53.9 117.6 5.2 163.2-2.6 202.9.6 219.5c11.4 58.9 92.6 97.3 125.1 125.7-1.6.9-3.1 1.7-4.5 2.5-16.3 8.1-78.2 40.5-93.7 74.7-17.5 38.8 2.9 66.6 16.3 70.4 41.8 11.6 84.6-9.3 107.6-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.3-4.9 16.4-9.4 23.5-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.5 5 15.4 5 13.8 0 20-11.4 26.9-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.4 0 18.8-12.1 23-18.3v.1s.2-.4.7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.6-46 16.2-31.8 31.7-71.5 31.7-71.5s1.4 9.7 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2s0 .1.1.2c-3 4-6.4 8.3-9.9 12.5-12.8 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.7 2.5 11.5-.8 19.6-3.6 23.5-5.4 6.2-2.2 13.4-5.7 20.2-10.6 12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5 19.8-28.9 35.1-60.6 35.1-60.6s1.4 9.7 6.2 25.8c2.4 8.1 7.1 17 11.4 25.7-18.6 15.1-30.1 32.6-34.1 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5 6.5-2.2 14.3-5.7 21.6-11.1 12.5-9.2 24.6-22.1 23.8-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.1-10.2 62.1-7.2 55.7 6.5 66.6 41.3 64.5 55.8-2.1 14.6-13.8 22.6-17.7 25-3.9 2.4-5.1 3.3-4.8 5.1.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.2-11.8 30.3-38.7 1.6-34-31.1-71.4-89-71.1zM121.8 436.6c-18.4 20.1-44.2 27.7-55.3 21.3C54.6 451 59.3 421.4 82 400c13.8-13 31.6-25 43.4-32.4 2.7-1.6 6.6-4 11.4-6.9.8-.5 1.2-.7 1.2-.7.9-.6 1.9-1.1 2.9-1.7 8.3 30.4.3 57.2-19.1 78.3zm134.4-91.4c-6.4 15.7-19.9 55.7-28.1 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.1-11.3 21.2-14.9 23.8-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.9-13.9 0 .5.1 1 .1 1.6-.1 17.9-17.3 30-25.1 34.8zm85.6-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.6-15.3 19-24.5 1.2 3.8 1.9 7.4 1.9 10.8-.1 22.5-16.2 30.9-25.9 34.4z"] }; +var faSchlix = { prefix: 'fab', iconName: 'schlix', icon: [448, 512, [], "f3ea", "M350.5 157.7l-54.2-46.1 73.4-39 78.3 44.2-97.5 40.9zM192 122.1l45.7-28.2 34.7 34.6-55.4 29-25-35.4zm-65.1 6.6l31.9-22.1L176 135l-36.7 22.5-12.4-28.8zm-23.3 88.2l-8.8-34.8 29.6-18.3 13.1 35.3-33.9 17.8zm-21.2-83.7l23.9-18.1 8.9 24-26.7 18.3-6.1-24.2zM59 206.5l-3.6-28.4 22.3-15.5 6.1 28.7L59 206.5zm-30.6 16.6l20.8-12.8 3.3 33.4-22.9 12-1.2-32.6zM1.4 268l19.2-10.2.4 38.2-21 8.8L1.4 268zm59.1 59.3l-28.3 8.3-1.6-46.8 25.1-10.7 4.8 49.2zM99 263.2l-31.1 13-5.2-40.8L90.1 221l8.9 42.2zM123.2 377l-41.6 5.9-8.1-63.5 35.2-10.8 14.5 68.4zm28.5-139.9l21.2 57.1-46.2 13.6-13.7-54.1 38.7-16.6zm85.7 230.5l-70.9-3.3-24.3-95.8 55.2-8.6 40 107.7zm-84.9-279.7l42.2-22.4 28 45.9-50.8 21.3-19.4-44.8zm41 94.9l61.3-18.7 52.8 86.6-79.8 11.3-34.3-79.2zm51.4-85.6l67.3-28.8 65.5 65.4-88.6 26.2-44.2-62.8z"] }; +var faScribd = { prefix: 'fab', iconName: 'scribd', icon: [384, 512, [], "f28a", "M42.3 252.7c-16.1-19-24.7-45.9-24.8-79.9 0-100.4 75.2-153.1 167.2-153.1 98.6-1.6 156.8 49 184.3 70.6l-50.5 72.1-37.3-24.6 26.9-38.6c-36.5-24-79.4-36.5-123-35.8-50.7-.8-111.7 27.2-111.7 76.2 0 18.7 11.2 20.7 28.6 15.6 23.3-5.3 41.9.6 55.8 14 26.4 24.3 23.2 67.6-.7 91.9-29.2 29.5-85.2 27.3-114.8-8.4zm317.7 5.9c-15.5-18.8-38.9-29.4-63.2-28.6-38.1-2-71.1 28-70.5 67.2-.7 16.8 6 33 18.4 44.3 14.1 13.9 33 19.7 56.3 14.4 17.4-5.1 28.6-3.1 28.6 15.6 0 4.3-.5 8.5-1.4 12.7-16.7 40.9-59.5 64.4-121.4 64.4-51.9.2-102.4-16.4-144.1-47.3l33.7-39.4-35.6-27.4L0 406.3l15.4 13.8c52.5 46.8 120.4 72.5 190.7 72.2 51.4 0 94.4-10.5 133.6-44.1 57.1-51.4 54.2-149.2 20.3-189.6z"] }; +var faSearchengin = { prefix: 'fab', iconName: 'searchengin', icon: [460, 512, [], "f3eb", "M220.6 130.3l-67.2 28.2V43.2L98.7 233.5l54.7-24.2v130.3l67.2-209.3zm-83.2-96.7l-1.3 4.7-15.2 52.9C80.6 106.7 52 145.8 52 191.5c0 52.3 34.3 95.9 83.4 105.5v53.6C57.5 340.1 0 272.4 0 191.6c0-80.5 59.8-147.2 137.4-158zm311.4 447.2c-11.2 11.2-23.1 12.3-28.6 10.5-5.4-1.8-27.1-19.9-60.4-44.4-33.3-24.6-33.6-35.7-43-56.7-9.4-20.9-30.4-42.6-57.5-52.4l-9.7-14.7c-24.7 16.9-53 26.9-81.3 28.7l2.1-6.6 15.9-49.5c46.5-11.9 80.9-54 80.9-104.2 0-54.5-38.4-102.1-96-107.1V32.3C254.4 37.4 320 106.8 320 191.6c0 33.6-11.2 64.7-29 90.4l14.6 9.6c9.8 27.1 31.5 48 52.4 57.4s32.2 9.7 56.8 43c24.6 33.2 42.7 54.9 44.5 60.3s.7 17.3-10.5 28.5zm-9.9-17.9c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8z"] }; +var faSellcast = { prefix: 'fab', iconName: 'sellcast', icon: [448, 512, [], "f2da", "M353.4 32H94.7C42.6 32 0 74.6 0 126.6v258.7C0 437.4 42.6 480 94.7 480h258.7c52.1 0 94.7-42.6 94.7-94.6V126.6c0-52-42.6-94.6-94.7-94.6zm-50 316.4c-27.9 48.2-89.9 64.9-138.2 37.2-22.9 39.8-54.9 8.6-42.3-13.2l15.7-27.2c5.9-10.3 19.2-13.9 29.5-7.9 18.6 10.8-.1-.1 18.5 10.7 27.6 15.9 63.4 6.3 79.4-21.3 15.9-27.6 6.3-63.4-21.3-79.4-17.8-10.2-.6-.4-18.6-10.6-24.6-14.2-3.4-51.9 21.6-37.5 18.6 10.8-.1-.1 18.5 10.7 48.4 28 65.1 90.3 37.2 138.5zm21.8-208.8c-17 29.5-16.3 28.8-19 31.5-6.5 6.5-16.3 8.7-26.5 3.6-18.6-10.8.1.1-18.5-10.7-27.6-15.9-63.4-6.3-79.4 21.3s-6.3 63.4 21.3 79.4c0 0 18.5 10.6 18.6 10.6 24.6 14.2 3.4 51.9-21.6 37.5-18.6-10.8.1.1-18.5-10.7-48.2-27.8-64.9-90.1-37.1-138.4 27.9-48.2 89.9-64.9 138.2-37.2l4.8-8.4c14.3-24.9 52-3.3 37.7 21.5z"] }; +var faSellsy = { prefix: 'fab', iconName: 'sellsy', icon: [640, 512, [], "f213", "M539.71 237.308c3.064-12.257 4.29-24.821 4.29-37.384C544 107.382 468.618 32 376.076 32c-77.22 0-144.634 53.012-163.02 127.781-15.322-13.176-34.934-20.53-55.157-20.53-46.271 0-83.962 37.69-83.962 83.961 0 7.354.92 15.015 3.065 22.369-42.9 20.225-70.785 63.738-70.785 111.234C6.216 424.843 61.68 480 129.401 480h381.198c67.72 0 123.184-55.157 123.184-123.184.001-56.384-38.916-106.025-94.073-119.508zM199.88 401.554c0 8.274-7.048 15.321-15.321 15.321H153.61c-8.274 0-15.321-7.048-15.321-15.321V290.626c0-8.273 7.048-15.321 15.321-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v110.928zm89.477 0c0 8.274-7.048 15.321-15.322 15.321h-30.949c-8.274 0-15.321-7.048-15.321-15.321V270.096c0-8.274 7.048-15.321 15.321-15.321h30.949c8.274 0 15.322 7.048 15.322 15.321v131.458zm89.477 0c0 8.274-7.047 15.321-15.321 15.321h-30.949c-8.274 0-15.322-7.048-15.322-15.321V238.84c0-8.274 7.048-15.321 15.322-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v162.714zm87.027 0c0 8.274-7.048 15.321-15.322 15.321h-28.497c-8.274 0-15.321-7.048-15.321-15.321V176.941c0-8.579 7.047-15.628 15.321-15.628h28.497c8.274 0 15.322 7.048 15.322 15.628v224.613z"] }; +var faServicestack = { prefix: 'fab', iconName: 'servicestack', icon: [496, 512, [], "f3ec", "M88 216c81.7 10.2 273.7 102.3 304 232H0c99.5-8.1 184.5-137 88-232zm32-152c32.3 35.6 47.7 83.9 46.4 133.6C249.3 231.3 373.7 321.3 400 448h96C455.3 231.9 222.8 79.5 120 64z"] }; +var faShirtsinbulk = { prefix: 'fab', iconName: 'shirtsinbulk', icon: [448, 512, [], "f214", "M395.208 221.583H406v33.542h-10.792v-33.542zm0-9.625H406v-33.542h-10.792v33.542zm0 86.333H406V264.75h-10.792v33.541zM358.75 135.25h-33.542v10.5h33.542v-10.5zm36.458 206.208H406v-33.542h-10.792v33.542zM311.5 135.25h-33.542v10.5H311.5v-10.5zm-47.25 0H231v10.5h33.25v-10.5zm-47.25 0h-33.25v10.5H217v-10.5zm178.208 33.542H406V135.25h-33.542v10.5h22.75v23.042zm-255.792 259l30.625 13.417 4.375-9.917-30.625-13.417-4.375 9.917zM179.083 445l30.334 13.708 4.374-9.916-30.333-13.417-4.375 9.625zm216.125-60.375H406v-33.542h-10.792v33.542zm-334.833 8.167L91 406.208l4.375-9.624-30.625-13.709-4.375 9.917zm39.666 17.499l30.625 13.417 4.375-9.917-30.625-13.416-4.375 9.916zm132.417 38.501l4.375 9.916L267.459 445l-4.375-9.625-30.626 13.417zm118.417-52.208l4.375 9.624 30.624-13.416-4.374-9.917-30.625 13.709zM311.5 413.791l4.375 9.917 30.625-13.417-4.374-9.916-30.626 13.416zm-39.667 17.501l4.375 9.917 30.625-13.417-4.375-9.917-30.625 13.417zM311.5 46.583h-33.542v10.5H311.5v-10.5zm94.209 0h-33.251v10.5h33.251v-10.5zm-188.709 0h-33.25v10.5H217v-10.5zm141.75 0h-33.542v10.5h33.542v-10.5zm-94.5 0H231v10.5h33.25v-10.5zM448 3.708v406l-226.334 98.584L0 409.708v-406h448zm-29.166 116.958H29.166V390.75l192.792 85.75 196.875-85.75V120.666zm0-87.791H29.166V91.5h389.667V32.875zM75.542 46.583H42.291v10.5h33.251v-10.5zm94.5 0H136.5v10.5h33.542v-10.5zm-47.251 0H89.25v10.5h33.542v-10.5zm7.584 236.542c0-50.167 41.125-91.292 91.292-91.292 50.458 0 91.292 41.125 91.292 91.292 0 50.458-40.833 91.292-91.292 91.292-50.167-.001-91.292-40.834-91.292-91.292zm120.75 18.084c0 13.125-23.917 14.291-32.666 14.291-12.25 0-29.75-2.625-35.875-14.875h-.875L172.666 319c14.876 9.333 29.167 12.25 47.25 12.25 19.542 0 51.042-5.833 51.042-31.209 0-48.125-78.458-16.333-78.458-37.916 0-13.125 20.708-14.875 29.75-14.875 10.791 0 29.166 3.208 35.583 13.124h.875l8.751-16.916c-15.167-6.125-27.417-11.959-44.334-11.959-20.125 0-49.583 6.417-49.583 31.792 0 44.334 77.583 11.959 77.583 37.918zM122.791 135.25H89.25v10.5h33.542v-10.5zm-69.999 10.5h22.75v-10.5H42v33.542h10.792V145.75zm0 32.666H42v33.542h10.792v-33.542zm117.25-43.166H136.5v10.5h33.542v-10.5zm-117.25 86.333H42v33.542h10.792v-33.542zm0 86.334H42v33.542h10.792v-33.542zm0-43.167H42v33.542h10.792V264.75zm0 86.333H42v33.542h10.792v-33.542z"] }; +var faSimplybuilt = { prefix: 'fab', iconName: 'simplybuilt', icon: [512, 512, [], "f215", "M481.2 64h-106c-14.5 0-26.6 11.8-26.6 26.3v39.6H163.3V90.3c0-14.5-12-26.3-26.6-26.3h-106C16.1 64 4.3 75.8 4.3 90.3v331.4c0 14.5 11.8 26.3 26.6 26.3h450.4c14.8 0 26.6-11.8 26.6-26.3V90.3c-.2-14.5-12-26.3-26.7-26.3zM149.8 355.8c-36.6 0-66.4-29.7-66.4-66.4 0-36.9 29.7-66.6 66.4-66.6 36.9 0 66.6 29.7 66.6 66.6 0 36.7-29.7 66.4-66.6 66.4zm212.4 0c-36.9 0-66.6-29.7-66.6-66.6 0-36.6 29.7-66.4 66.6-66.4 36.6 0 66.4 29.7 66.4 66.4 0 36.9-29.8 66.6-66.4 66.6z"] }; +var faSistrix = { prefix: 'fab', iconName: 'sistrix', icon: [448, 512, [], "f3ee", "M448 449L301.2 300.2c20-27.9 31.9-62.2 31.9-99.2 0-93.1-74.7-168.9-166.5-168.9C74.7 32 0 107.8 0 200.9s74.7 168.9 166.5 168.9c39.8 0 76.3-14.2 105-37.9l146 148.1 30.5-31zM166.5 330.8c-70.6 0-128.1-58.3-128.1-129.9S95.9 71 166.5 71s128.1 58.3 128.1 129.9-57.4 129.9-128.1 129.9z"] }; +var faSith = { prefix: 'fab', iconName: 'sith', icon: [448, 512, [], "f512", "M0 32l69.71 118.75-58.86-11.52 69.84 91.03a146.741 146.741 0 0 0 0 51.45l-69.84 91.03 58.86-11.52L0 480l118.75-69.71-11.52 58.86 91.03-69.84c17.02 3.04 34.47 3.04 51.48 0l91.03 69.84-11.52-58.86L448 480l-69.71-118.78 58.86 11.52-69.84-91.03c3.03-17.01 3.04-34.44 0-51.45l69.84-91.03-58.86 11.52L448 32l-118.75 69.71 11.52-58.9-91.06 69.87c-8.5-1.52-17.1-2.29-25.71-2.29s-17.21.78-25.71 2.29l-91.06-69.87 11.52 58.9L0 32zm224 99.78c31.8 0 63.6 12.12 87.85 36.37 48.5 48.5 48.49 127.21 0 175.7s-127.2 48.46-175.7-.03c-48.5-48.5-48.49-127.21 0-175.7 24.24-24.25 56.05-36.34 87.85-36.34zm0 36.66c-22.42 0-44.83 8.52-61.92 25.61-34.18 34.18-34.19 89.68 0 123.87s89.65 34.18 123.84 0c34.18-34.18 34.19-89.68 0-123.87-17.09-17.09-39.5-25.61-61.92-25.61z"] }; +var faSkyatlas = { prefix: 'fab', iconName: 'skyatlas', icon: [640, 512, [], "f216", "M640 329.3c0 65.9-52.5 114.4-117.5 114.4-165.9 0-196.6-249.7-359.7-249.7-146.9 0-147.1 212.2 5.6 212.2 42.5 0 90.9-17.8 125.3-42.5 5.6-4.1 16.9-16.3 22.8-16.3s10.9 5 10.9 10.9c0 7.8-13.1 19.1-18.7 24.1-40.9 35.6-100.3 61.2-154.7 61.2-83.4.1-154-59-154-144.9s67.5-149.1 152.8-149.1c185.3 0 222.5 245.9 361.9 245.9 99.9 0 94.8-139.7 3.4-139.7-17.5 0-35 11.6-46.9 11.6-8.4 0-15.9-7.2-15.9-15.6 0-11.6 5.3-23.7 5.3-36.3 0-66.6-50.9-114.7-116.9-114.7-53.1 0-80 36.9-88.8 36.9-6.2 0-11.2-5-11.2-11.2 0-5.6 4.1-10.3 7.8-14.4 25.3-28.8 64.7-43.7 102.8-43.7 79.4 0 139.1 58.4 139.1 137.8 0 6.9-.3 13.7-1.2 20.6 11.9-3.1 24.1-4.7 35.9-4.7 60.7 0 111.9 45.3 111.9 107.2z"] }; +var faSkype = { prefix: 'fab', iconName: 'skype', icon: [448, 512, [], "f17e", "M424.7 299.8c2.9-14 4.7-28.9 4.7-43.8 0-113.5-91.9-205.3-205.3-205.3-14.9 0-29.7 1.7-43.8 4.7C161.3 40.7 137.7 32 112 32 50.2 32 0 82.2 0 144c0 25.7 8.7 49.3 23.3 68.2-2.9 14-4.7 28.9-4.7 43.8 0 113.5 91.9 205.3 205.3 205.3 14.9 0 29.7-1.7 43.8-4.7 19 14.6 42.6 23.3 68.2 23.3 61.8 0 112-50.2 112-112 .1-25.6-8.6-49.2-23.2-68.1zm-194.6 91.5c-65.6 0-120.5-29.2-120.5-65 0-16 9-30.6 29.5-30.6 31.2 0 34.1 44.9 88.1 44.9 25.7 0 42.3-11.4 42.3-26.3 0-18.7-16-21.6-42-28-62.5-15.4-117.8-22-117.8-87.2 0-59.2 58.6-81.1 109.1-81.1 55.1 0 110.8 21.9 110.8 55.4 0 16.9-11.4 31.8-30.3 31.8-28.3 0-29.2-33.5-75-33.5-25.7 0-42 7-42 22.5 0 19.8 20.8 21.8 69.1 33 41.4 9.3 90.7 26.8 90.7 77.6 0 59.1-57.1 86.5-112 86.5z"] }; +var faSlack = { prefix: 'fab', iconName: 'slack', icon: [448, 512, [], "f198", "M244.2 217.5l19.3 57.7-59.8 20-19.3-57.7 59.8-20zm41.4 243.7C131.6 507.4 65 471.6 18.8 317.6S8.4 97 162.4 50.8C316.4 4.6 383 40.4 429.2 194.4c46.2 154 10.4 220.6-143.6 266.8zM366.2 265c-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-19.3-57.7 29-9.7c12.2-3.9 18.6-17.2 14.7-29.4-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-59.8 20.1-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l19.3 57.7-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 59.8-20.1 10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 29-9.7c12.2-4.2 18.6-17.5 14.7-29.6z"] }; +var faSlackHash = { prefix: 'fab', iconName: 'slack-hash', icon: [448, 512, [], "f3ef", "M446.2 270.4c-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-30.3-90 45.4-15.1c19.1-6.2 29.1-26.8 23-45.9-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-93.4 31.2-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-45.3 15c-19.1 6.2-29.1 26.8-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l30.3 90L78 354.8c-19 6.2-29.1 26.9-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 93.6-31.3 15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 45.4-15.1c19-6 29.1-26.7 22.9-45.7zm-254.1 47.2l-30.3-90.2 93.5-31.3 30.3 90.2-93.5 31.3z"] }; +var faSlideshare = { prefix: 'fab', iconName: 'slideshare', icon: [512, 512, [], "f1e7", "M249.429 211.436c0 31.716-27.715 57.717-61.717 57.717-34.001 0-61.716-26.001-61.716-57.717 0-32.001 27.715-57.716 61.716-57.716 34.001 0 61.717 25.715 61.717 57.716zm254.294 50.002c-18.286 22.573-53.144 50.288-106.289 72.003C453.722 525.163 260 555.735 263.143 457.446c0 1.714-.286-52.859-.286-93.432-4.285-.858-8.571-2-13.714-3.143 0 40.858-.286 98.289-.286 96.575C252 555.735 58.278 525.163 114.566 333.441c-53.145-21.715-88.003-49.43-106.29-72.003-9.143-13.714.858-28.287 16.001-17.715 2 1.428 4.285 2.857 6.285 4.285V49.716C30.563 22.287 51.135 0 76.565 0h359.157c25.429 0 46.002 22.287 46.002 49.716v198.293l6-4.285c15.143-10.573 25.143 4 15.999 17.714zm-46.572-189.15c0-32.858-10.572-45.716-40.859-45.716H98.566c-31.716 0-40.573 10.858-40.573 45.716v192.293c67.717 35.43 125.72 29.144 157.435 28.001 13.429-.286 22.001 2.286 27.144 7.715 1.689 1.687 10.023 9.446 20.287 17.143 1.143-15.715 10.001-25.715 33.716-24.858 32.287 1.428 91.718 7.715 160.577-29.716V72.288zM331.146 153.72c-34.002 0-61.716 25.715-61.716 57.716 0 31.716 27.715 57.717 61.716 57.717 34.287 0 61.716-26.001 61.716-57.717 0-32.001-27.429-57.716-61.716-57.716z"] }; +var faSnapchat = { prefix: 'fab', iconName: 'snapchat', icon: [496, 512, [], "f2ab", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm169.5 338.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C183.1 100 230.7 96 244.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z"] }; +var faSnapchatGhost = { prefix: 'fab', iconName: 'snapchat-ghost', icon: [512, 512, [], "f2ac", "M510.846 392.673c-5.211 12.157-27.239 21.089-67.36 27.318-2.064 2.786-3.775 14.686-6.507 23.956-1.625 5.566-5.623 8.869-12.128 8.869l-.297-.005c-9.395 0-19.203-4.323-38.852-4.323-26.521 0-35.662 6.043-56.254 20.588-21.832 15.438-42.771 28.764-74.027 27.399-31.646 2.334-58.025-16.908-72.871-27.404-20.714-14.643-29.828-20.582-56.241-20.582-18.864 0-30.736 4.72-38.852 4.72-8.073 0-11.213-4.922-12.422-9.04-2.703-9.189-4.404-21.263-6.523-24.13-20.679-3.209-67.31-11.344-68.498-32.15a10.627 10.627 0 0 1 8.877-11.069c69.583-11.455 100.924-82.901 102.227-85.934.074-.176.155-.344.237-.515 3.713-7.537 4.544-13.849 2.463-18.753-5.05-11.896-26.872-16.164-36.053-19.796-23.715-9.366-27.015-20.128-25.612-27.504 2.437-12.836 21.725-20.735 33.002-15.453 8.919 4.181 16.843 6.297 23.547 6.297 5.022 0 8.212-1.204 9.96-2.171-2.043-35.936-7.101-87.29 5.687-115.969C158.122 21.304 229.705 15.42 250.826 15.42c.944 0 9.141-.089 10.11-.089 52.148 0 102.254 26.78 126.723 81.643 12.777 28.65 7.749 79.792 5.695 116.009 1.582.872 4.357 1.942 8.599 2.139 6.397-.286 13.815-2.389 22.069-6.257 6.085-2.846 14.406-2.461 20.48.058l.029.01c9.476 3.385 15.439 10.215 15.589 17.87.184 9.747-8.522 18.165-25.878 25.018-2.118.835-4.694 1.655-7.434 2.525-9.797 3.106-24.6 7.805-28.616 17.271-2.079 4.904-1.256 11.211 2.46 18.748.087.168.166.342.239.515 1.301 3.03 32.615 74.46 102.23 85.934 6.427 1.058 11.163 7.877 7.725 15.859z"] }; +var faSnapchatSquare = { prefix: 'fab', iconName: 'snapchat-square', icon: [448, 512, [], "f2ad", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6.5 314.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C159.1 100 206.7 96 220.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z"] }; +var faSoundcloud = { prefix: 'fab', iconName: 'soundcloud', icon: [640, 512, [], "f1be", "M111.4 256.3l5.8 65-5.8 68.3c-.3 2.5-2.2 4.4-4.4 4.4s-4.2-1.9-4.2-4.4l-5.6-68.3 5.6-65c0-2.2 1.9-4.2 4.2-4.2 2.2 0 4.1 2 4.4 4.2zm21.4-45.6c-2.8 0-4.7 2.2-5 5l-5 105.6 5 68.3c.3 2.8 2.2 5 5 5 2.5 0 4.7-2.2 4.7-5l5.8-68.3-5.8-105.6c0-2.8-2.2-5-4.7-5zm25.5-24.1c-3.1 0-5.3 2.2-5.6 5.3l-4.4 130 4.4 67.8c.3 3.1 2.5 5.3 5.6 5.3 2.8 0 5.3-2.2 5.3-5.3l5.3-67.8-5.3-130c0-3.1-2.5-5.3-5.3-5.3zM7.2 283.2c-1.4 0-2.2 1.1-2.5 2.5L0 321.3l4.7 35c.3 1.4 1.1 2.5 2.5 2.5s2.2-1.1 2.5-2.5l5.6-35-5.6-35.6c-.3-1.4-1.1-2.5-2.5-2.5zm23.6-21.9c-1.4 0-2.5 1.1-2.5 2.5l-6.4 57.5 6.4 56.1c0 1.7 1.1 2.8 2.5 2.8s2.5-1.1 2.8-2.5l7.2-56.4-7.2-57.5c-.3-1.4-1.4-2.5-2.8-2.5zm25.3-11.4c-1.7 0-3.1 1.4-3.3 3.3L47 321.3l5.8 65.8c.3 1.7 1.7 3.1 3.3 3.1 1.7 0 3.1-1.4 3.1-3.1l6.9-65.8-6.9-68.1c0-1.9-1.4-3.3-3.1-3.3zm25.3-2.2c-1.9 0-3.6 1.4-3.6 3.6l-5.8 70 5.8 67.8c0 2.2 1.7 3.6 3.6 3.6s3.6-1.4 3.9-3.6l6.4-67.8-6.4-70c-.3-2.2-2-3.6-3.9-3.6zm241.4-110.9c-1.1-.8-2.8-1.4-4.2-1.4-2.2 0-4.2.8-5.6 1.9-1.9 1.7-3.1 4.2-3.3 6.7v.8l-3.3 176.7 1.7 32.5 1.7 31.7c.3 4.7 4.2 8.6 8.9 8.6s8.6-3.9 8.6-8.6l3.9-64.2-3.9-177.5c-.4-3-2-5.8-4.5-7.2zm-26.7 15.3c-1.4-.8-2.8-1.4-4.4-1.4s-3.1.6-4.4 1.4c-2.2 1.4-3.6 3.9-3.6 6.7l-.3 1.7-2.8 160.8s0 .3 3.1 65.6v.3c0 1.7.6 3.3 1.7 4.7 1.7 1.9 3.9 3.1 6.4 3.1 2.2 0 4.2-1.1 5.6-2.5 1.7-1.4 2.5-3.3 2.5-5.6l.3-6.7 3.1-58.6-3.3-162.8c-.3-2.8-1.7-5.3-3.9-6.7zm-111.4 22.5c-3.1 0-5.8 2.8-5.8 6.1l-4.4 140.6 4.4 67.2c.3 3.3 2.8 5.8 5.8 5.8 3.3 0 5.8-2.5 6.1-5.8l5-67.2-5-140.6c-.2-3.3-2.7-6.1-6.1-6.1zm376.7 62.8c-10.8 0-21.1 2.2-30.6 6.1-6.4-70.8-65.8-126.4-138.3-126.4-17.8 0-35 3.3-50.3 9.4-6.1 2.2-7.8 4.4-7.8 9.2v249.7c0 5 3.9 8.6 8.6 9.2h218.3c43.3 0 78.6-35 78.6-78.3.1-43.6-35.2-78.9-78.5-78.9zm-296.7-60.3c-4.2 0-7.5 3.3-7.8 7.8l-3.3 136.7 3.3 65.6c.3 4.2 3.6 7.5 7.8 7.5 4.2 0 7.5-3.3 7.5-7.5l3.9-65.6-3.9-136.7c-.3-4.5-3.3-7.8-7.5-7.8zm-53.6-7.8c-3.3 0-6.4 3.1-6.4 6.7l-3.9 145.3 3.9 66.9c.3 3.6 3.1 6.4 6.4 6.4 3.6 0 6.4-2.8 6.7-6.4l4.4-66.9-4.4-145.3c-.3-3.6-3.1-6.7-6.7-6.7zm26.7 3.4c-3.9 0-6.9 3.1-6.9 6.9L227 321.3l3.9 66.4c.3 3.9 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9l4.2-66.4-4.2-141.7c0-3.9-3-6.9-6.9-6.9z"] }; +var faSpeakap = { prefix: 'fab', iconName: 'speakap', icon: [448, 512, [], "f3f3", "M352 32H96C43.2 32 0 75.2 0 128v256c0 52.8 43.2 96 96 96h256c52.8 0 96-43.2 96-96V128c0-52.8-43.2-96-96-96zM221 382.9c-39.6 0-81.9-17.8-81.9-53.7V302H179v17.8c0 15.1 19.5 24.5 41.9 24.5 24.2 0 41.3-10.4 41.3-29.5 0-23.8-27.2-31.9-54.7-42.6-31.9-12.4-63.1-26.2-63.1-69.1 0-48 38.6-66.4 79.9-66.4 37.6 0 75.5 14.1 75.5 41.9v31.2h-39.9v-16.1c0-12.1-17.8-18.5-35.6-18.5-19.5 0-35.6 8.1-35.6 26.2 0 22.1 22.5 29.2 47 38.9 35.9 12.4 71.1 27.2 71.1 71.5.1 48.6-40.8 71.1-85.8 71.1z"] }; +var faSpotify = { prefix: 'fab', iconName: 'spotify', icon: [496, 512, [], "f1bc", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm100.7 364.9c-4.2 0-6.8-1.3-10.7-3.6-62.4-37.6-135-39.2-206.7-24.5-3.9 1-9 2.6-11.9 2.6-9.7 0-15.8-7.7-15.8-15.8 0-10.3 6.1-15.2 13.6-16.8 81.9-18.1 165.6-16.5 237 26.2 6.1 3.9 9.7 7.4 9.7 16.5s-7.1 15.4-15.2 15.4zm26.9-65.6c-5.2 0-8.7-2.3-12.3-4.2-62.5-37-155.7-51.9-238.6-29.4-4.8 1.3-7.4 2.6-11.9 2.6-10.7 0-19.4-8.7-19.4-19.4s5.2-17.8 15.5-20.7c27.8-7.8 56.2-13.6 97.8-13.6 64.9 0 127.6 16.1 177 45.5 8.1 4.8 11.3 11 11.3 19.7-.1 10.8-8.5 19.5-19.4 19.5zm31-76.2c-5.2 0-8.4-1.3-12.9-3.9-71.2-42.5-198.5-52.7-280.9-29.7-3.6 1-8.1 2.6-12.9 2.6-13.2 0-23.3-10.3-23.3-23.6 0-13.6 8.4-21.3 17.4-23.9 35.2-10.3 74.6-15.2 117.5-15.2 73 0 149.5 15.2 205.4 47.8 7.8 4.5 12.9 10.7 12.9 22.6 0 13.6-11 23.3-23.2 23.3z"] }; +var faStackExchange = { prefix: 'fab', iconName: 'stack-exchange', icon: [448, 512, [], "f18d", "M17.7 332.3h412.7v22c0 37.7-29.3 68-65.3 68h-19L259.3 512v-89.7H83c-36 0-65.3-30.3-65.3-68v-22zm0-23.6h412.7v-85H17.7v85zm0-109.4h412.7v-85H17.7v85zM365 0H83C47 0 17.7 30.3 17.7 67.7V90h412.7V67.7C430.3 30.3 401 0 365 0z"] }; +var faStackOverflow = { prefix: 'fab', iconName: 'stack-overflow', icon: [384, 512, [], "f16c", "M293.7 300l-181.2-84.5 16.7-36.5 181.3 84.7-16.8 36.3zm48-76L188.2 95.7l-25.5 30.8 153.5 128.3 25.5-30.8zm39.6-31.7L262 32l-32 24 119.3 160.3 32-24zM290.7 311L95 269.7 86.8 309l195.7 41 8.2-39zm31.6 129H42.7V320h-40v160h359.5V320h-40v120zm-39.8-80h-200v39.7h200V360z"] }; +var faStaylinked = { prefix: 'fab', iconName: 'staylinked', icon: [440, 512, [], "f3f5", "M201.6 127.4c4.1-3.2 10.3-3 13.8.5l170 167.3-2.7-2.7 44.3 41.3c3.7 3.5 3.3 9-.7 12.2l-198 163.9c-9.9 7.6-17.3.8-17.3.8L2.3 314.6c-3.5-3.5-3-9 1.2-12.2l45.8-34.9c4.2-3.2 10.4-3 13.9.5l151.9 147.5c3.7 3.5 10 3.7 14.2.4l93.2-74c4.1-3.2 4.5-8.7.9-12.2l-84-81.3c-3.6-3.5-9.9-3.7-14-.5l-.1.1c-4.1 3.2-10.4 3-14-.5l-68.1-64.3c-3.5-3.5-3.1-9 1.1-12.2l57.3-43.6m14.8 257.3c3.7 3.5 10.1 3.7 14.3.4l50.2-38.8-.3-.3 7.7-6c4.2-3.2 4.6-8.7.9-12.2l-57.1-54.4c-3.6-3.5-10-3.7-14.2-.5l-.1.1c-4.2 3.2-10.5 3.1-14.2-.4L109 180.8c-3.6-3.5-3.1-8.9 1.1-12.2l92.2-71.5c4.1-3.2 10.3-3 13.9.5l160.4 159c3.7 3.5 10 3.7 14.1.5l45.8-35.8c4.1-3.2 4.4-8.7.7-12.2L226.7 2.5c-1.5-1.2-8-5.5-16.3 1.1L3.6 165.7c-4.2 3.2-4.8 8.7-1.2 12.2l42.3 41.7"] }; +var faSteam = { prefix: 'fab', iconName: 'steam', icon: [496, 512, [], "f1b6", "M496 256c0 137-111.2 248-248.4 248-113.8 0-209.6-76.3-239-180.4l95.2 39.3c6.4 32.1 34.9 56.4 68.9 56.4 39.2 0 71.9-32.4 70.2-73.5l84.5-60.2c52.1 1.3 95.8-40.9 95.8-93.5 0-51.6-42-93.5-93.7-93.5s-93.7 42-93.7 93.5v1.2L176.6 279c-15.5-.9-30.7 3.4-43.5 12.1L0 236.1C10.2 108.4 117.1 8 247.6 8 384.8 8 496 119 496 256zM155.7 384.3l-30.5-12.6a52.79 52.79 0 0 0 27.2 25.8c26.9 11.2 57.8-1.6 69-28.4 5.4-13 5.5-27.3.1-40.3-5.4-13-15.5-23.2-28.5-28.6-12.9-5.4-26.7-5.2-38.9-.6l31.5 13c19.8 8.2 29.2 30.9 20.9 50.7-8.3 19.9-31 29.2-50.8 21zm173.8-129.9c-34.4 0-62.4-28-62.4-62.3s28-62.3 62.4-62.3 62.4 28 62.4 62.3-27.9 62.3-62.4 62.3zm.1-15.6c25.9 0 46.9-21 46.9-46.8 0-25.9-21-46.8-46.9-46.8s-46.9 21-46.9 46.8c.1 25.8 21.1 46.8 46.9 46.8z"] }; +var faSteamSquare = { prefix: 'fab', iconName: 'steam-square', icon: [448, 512, [], "f1b7", "M185.2 356.5c7.7-18.5-1-39.7-19.6-47.4l-29.5-12.2c11.4-4.3 24.3-4.5 36.4.5 12.2 5.1 21.6 14.6 26.7 26.7 5 12.2 5 25.6-.1 37.7-10.5 25.1-39.4 37-64.6 26.5-11.6-4.8-20.4-13.6-25.4-24.2l28.5 11.8c18.6 7.8 39.9-.9 47.6-19.4zM400 32H48C21.5 32 0 53.5 0 80v160.7l116.6 48.1c12-8.2 26.2-12.1 40.7-11.3l55.4-80.2v-1.1c0-48.2 39.3-87.5 87.6-87.5s87.6 39.3 87.6 87.5c0 49.2-40.9 88.7-89.6 87.5l-79 56.3c1.6 38.5-29.1 68.8-65.7 68.8-31.8 0-58.5-22.7-64.5-52.7L0 319.2V432c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-99.7 222.5c-32.2 0-58.4-26.1-58.4-58.3s26.2-58.3 58.4-58.3 58.4 26.2 58.4 58.3-26.2 58.3-58.4 58.3zm.1-14.6c24.2 0 43.9-19.6 43.9-43.8 0-24.2-19.6-43.8-43.9-43.8-24.2 0-43.9 19.6-43.9 43.8 0 24.2 19.7 43.8 43.9 43.8z"] }; +var faSteamSymbol = { prefix: 'fab', iconName: 'steam-symbol', icon: [448, 512, [], "f3f6", "M395.5 177.5c0 33.8-27.5 61-61 61-33.8 0-61-27.3-61-61s27.3-61 61-61c33.5 0 61 27.2 61 61zm52.5.2c0 63-51 113.8-113.7 113.8L225 371.3c-4 43-40.5 76.8-84.5 76.8-40.5 0-74.7-28.8-83-67L0 358V250.7L97.2 290c15.1-9.2 32.2-13.3 52-11.5l71-101.7c.5-62.3 51.5-112.8 114-112.8C397 64 448 115 448 177.7zM203 363c0-34.7-27.8-62.5-62.5-62.5-4.5 0-9 .5-13.5 1.5l26 10.5c25.5 10.2 38 39 27.7 64.5-10.2 25.5-39.2 38-64.7 27.5-10.2-4-20.5-8.3-30.7-12.2 10.5 19.7 31.2 33.2 55.2 33.2 34.7 0 62.5-27.8 62.5-62.5zm207.5-185.3c0-42-34.3-76.2-76.2-76.2-42.3 0-76.5 34.2-76.5 76.2 0 42.2 34.3 76.2 76.5 76.2 41.9.1 76.2-33.9 76.2-76.2z"] }; +var faStickerMule = { prefix: 'fab', iconName: 'sticker-mule', icon: [576, 512, [], "f3f7", "M353.1 509.8c-5.9 2.9-32.1 3.2-36.5-.5-4.1-3-2.2-11.9-1.5-15 2.2-15-2.5-7.9-9.8-11.5-3.1-1.5-4.1-5.5-4.6-10-.5-1.5-1-2.5-1.5-3.5-1.7-10.7 6.8-33.6 8.2-43.4 4.9-23.7-.7-37.2 1.5-46.9 3.7-16.2 4.1-3.5 4.1-29.9-1.4-25.9 3.3-36.9.5-38.9-14.8 0-64.3 10.7-112.2 2-46.1-8.9-59.4-29-65.4-30.9-10.3-4.5-23.2.5-27.3 7-.1.1-35 70.6-39.6 87.8-6.2 20.5-.5 47.4 4.1 66.8 0 .1 4.5 14.6 10.3 19.5 2.1 1.5 5.1 2.5 7.2 4.5 2.8 2.7 9.4 15.2 9.8 16 2.6 4.5 3.6 8-1.5 10.5-3.6 2-9.3 2.5-14.4 2.5-2.6.5-1.5 3.5-3.1 5-2.9 2.8-20.7 6.1-29.9 2.5-2.6-1-5.7-3-6.2-5-1.5-4 2.1-9-1-12.5-4.5-2.9-13.1-2-17-12-2.2-5.4-2.6-7.6-2.6-49.4 0-9.7-5.9-38.7-8.2-46.9-1.5-5.5-1.5-11.5 0-16 .3-.9 4.1-4.6 4.1-13-1-1.5-4.6-.5-5.1-1.5-10.4-80.6-5.9-79-7.7-98.3-1.5-16-10.9-43.9-6.7-64.3.5-2.4 3.4-21 24.2-38.9 31-26.7 48.4-38.3 159-11.5 1.1.4 66.3 21.1 110.7-9 15.5-11.3 28.8-11.3 35.5-16 .1-.1 61.7-52.1 87-65.3 47.2-29.4 69.9-16.7 75.1-18 4.7-1 13.4-25.8 17-25.8 5.5 0 1.6 20.2 3.6 25.9.5 2 3.6 5 6.2 5 2.3 0 1.7-.8 10.3-5 8.4-5.4 14.9-17.6 20.6-17 11.7 1.6-19 41.6-19 46.9 0 2 .2.8 4.6 9.5 2.6 5.5 4.6 13.5 6.2 20 8.3 29.7 5.7 14.6 13.4 36.9 20.2 50.1 20.6 45.2 20.6 52.9 0 7.5-4.1 11-7.2 16.5-1.5 3-4.6 7.5-7.2 8-2.7.7 7-1.5-13.4 2.5-7.2 1-13.4-4.5-14.9-9.5-1.6-4.7 2.8-10.1-11.8-22.9-10.3-10-21.1-11.3-31.9-17-9.8-5.7-11.9 1-18 8-18 22.9-34 46.9-52 69.8-11.8 15-24.2 30.4-33.5 47.4-3.9 6.8-9.5 28.1-10.3 29.9-6.2 17.7-5.5 25.8-16.5 68.3-3.1 10-5.7 21.4-8.7 32.4-2.2 6.8-7.4 49.3-.5 59.4 2.1 3.5 8.7 4.5 11.3 8 .1.1 9.6 18.2 9.3 20 0 6.1-9.4 5.6-11.3 6.5-4.8 2.9-3.8 5.9-6.4 7.4"] }; +var faStrava = { prefix: 'fab', iconName: 'strava', icon: [369, 512, [], "f428", "M301.6 292l-43.9 88.2-44.6-88.2h-67.6l112.2 220 111.5-220h-67.6zM151.4 0L0 292h89.2l62.2-116.1L213.1 292h88.5L151.4 0z"] }; +var faStripe = { prefix: 'fab', iconName: 'stripe', icon: [640, 512, [], "f429", "M640 261.6c0-45.5-22-81.4-64.2-81.4s-67.9 35.9-67.9 81.1c0 53.5 30.3 78.2 73.5 78.2 21.2 0 37.1-4.8 49.2-11.5v-33.4c-12.1 6.1-26 9.8-43.6 9.8-17.3 0-32.5-6.1-34.5-26.9h86.9c.2-2.3.6-11.6.6-15.9m-87.9-16.8c0-20 12.3-28.4 23.4-28.4 10.9 0 22.5 8.4 22.5 28.4h-45.9zm-112.9-64.6c-17.4 0-28.6 8.2-34.8 13.9l-2.3-11H363v204.8l44.4-9.4.1-50.2c6.4 4.7 15.9 11.2 31.4 11.2 31.8 0 60.8-23.2 60.8-79.6.1-51.6-29.3-79.7-60.5-79.7m-10.6 122.5c-10.4 0-16.6-3.8-20.9-8.4l-.3-66c4.6-5.1 11-8.8 21.2-8.8 16.2 0 27.4 18.2 27.4 41.4.1 23.9-10.9 41.8-27.4 41.8M346.4 124v36.2l-44.6 9.5v-36.2l44.6-9.5m-44.5 59.2h44.6v153.2h-44.6V183.2zm-47.8 13.1c10.4-19.1 31.1-15.2 37.1-13.1V224c-5.7-1.8-23.4-4.5-33.9 9.3v103.1H213V183.2h38.4l2.7 13.1m-89-13.1h33.7V221h-33.7v63.2c0 26.2 28 18 33.7 15.7v33.8c-5.9 3.2-16.6 5.9-31.2 5.9-26.3 0-46.1-17-46.1-43.3l.2-142.4 43.3-9.2.1 38.5zM44.9 228.3c0 20 67.9 10.5 67.9 63.4 0 32-25.4 47.8-62.3 47.8-15.3 0-32-3-48.5-10.1v-40c14.9 8.1 33.9 14.2 48.6 14.2 9.9 0 17-2.7 17-10.9 0-21.2-67.5-13.2-67.5-62.4 0-31.4 24-50.2 60-50.2 14.7 0 29.4 2.3 44.1 8.1V230c-13.5-7.3-30.7-11.4-44.2-11.4-9.3.1-15.1 2.8-15.1 9.7"] }; +var faStripeS = { prefix: 'fab', iconName: 'stripe-s', icon: [362, 512, [], "f42a", "M144.3 154.6c0-22.3 18.6-30.9 48.4-30.9 43.4 0 98.5 13.3 141.9 36.7V26.1C287.3 7.2 240.1 0 192.8 0 77.1 0 0 60.4 0 161.4c0 157.9 216.8 132.3 216.8 200.4 0 26.4-22.9 34.9-54.7 34.9-47.2 0-108.2-19.5-156.1-45.5v128.5c53 22.8 106.8 32.4 156 32.4 118.6 0 200.3-51 200.3-153.6 0-170.2-218-139.7-218-203.9"] }; +var faStudiovinari = { prefix: 'fab', iconName: 'studiovinari', icon: [512, 512, [], "f3f8", "M480.3 187.7l4.2 28v28l-25.1 44.1-39.8 78.4-56.1 67.5-79.1 37.8-17.7 24.5-7.7 12-9.6 4s17.3-63.6 19.4-63.6c2.1 0 20.3.7 20.3.7l66.7-38.6-92.5 26.1-55.9 36.8-22.8 28-6.6 1.4 20.8-73.6 6.9-5.5 20.7 12.9 88.3-45.2 56.8-51.5 14.8-68.4-125.4 23.3 15.2-18.2-173.4-53.3 81.9-10.5-166-122.9L133.5 108 32.2 0l252.9 126.6-31.5-38L378 163 234.7 64l18.7 38.4-49.6-18.1L158.3 0l194.6 122L310 66.2l108 96.4 12-8.9-21-16.4 4.2-37.8L451 89.1l29.2 24.7 11.5 4.2-7 6.2 8.5 12-13.1 7.4-10.3 20.2 10.5 23.9z"] }; +var faStumbleupon = { prefix: 'fab', iconName: 'stumbleupon', icon: [512, 512, [], "f1a4", "M502.9 266v69.7c0 62.1-50.3 112.4-112.4 112.4-61.8 0-112.4-49.8-112.4-111.3v-70.2l34.3 16 51.1-15.2V338c0 14.7 12 26.5 26.7 26.5S417 352.7 417 338v-72h85.9zm-224.7-58.2l34.3 16 51.1-15.2V173c0-60.5-51.1-109-112.1-109-60.8 0-112.1 48.2-112.1 108.2v162.4c0 14.9-12 26.7-26.7 26.7S86 349.5 86 334.6V266H0v69.7C0 397.7 50.3 448 112.4 448c61.6 0 112.4-49.5 112.4-110.8V176.9c0-14.7 12-26.7 26.7-26.7s26.7 12 26.7 26.7v30.9z"] }; +var faStumbleuponCircle = { prefix: 'fab', iconName: 'stumbleupon-circle', icon: [496, 512, [], "f1a3", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 177.5c-9.8 0-17.8 8-17.8 17.8v106.9c0 40.9-33.9 73.9-74.9 73.9-41.4 0-74.9-33.5-74.9-74.9v-46.5h57.3v45.8c0 10 8 17.8 17.8 17.8s17.8-7.9 17.8-17.8V200.1c0-40 34.2-72.1 74.7-72.1 40.7 0 74.7 32.3 74.7 72.6v23.7l-34.1 10.1-22.9-10.7v-20.6c.1-9.6-7.9-17.6-17.7-17.6zm167.6 123.6c0 41.4-33.5 74.9-74.9 74.9-41.2 0-74.9-33.2-74.9-74.2V263l22.9 10.7 34.1-10.1v47.1c0 9.8 8 17.6 17.8 17.6s17.8-7.9 17.8-17.6v-48h57.3c-.1 45.9-.1 46.4-.1 46.4z"] }; +var faSuperpowers = { prefix: 'fab', iconName: 'superpowers', icon: [448, 512, [], "f2dd", "M448 32c-83.3 11-166.8 22-250 33-92 12.5-163.3 86.7-169 180-3.3 55.5 18 109.5 57.8 148.2L0 480c83.3-11 166.5-22 249.8-33 91.8-12.5 163.3-86.8 168.7-179.8 3.5-55.5-18-109.5-57.7-148.2L448 32zm-79.7 232.3c-4.2 79.5-74 139.2-152.8 134.5-79.5-4.7-140.7-71-136.3-151 4.5-79.2 74.3-139.3 153-134.5 79.3 4.7 140.5 71 136.1 151z"] }; +var faSupple = { prefix: 'fab', iconName: 'supple', icon: [640, 512, [], "f3f9", "M640 262.5c0 64.1-109 116.1-243.5 116.1-24.8 0-48.6-1.8-71.1-5 7.7.4 15.5.6 23.4.6 134.5 0 243.5-56.9 243.5-127.1 0-29.4-19.1-56.4-51.2-78 60 21.1 98.9 55.1 98.9 93.4zM47.7 227.9c-.1-70.2 108.8-127.3 243.3-127.6 7.9 0 15.6.2 23.3.5-22.5-3.2-46.3-4.9-71-4.9C108.8 96.3-.1 148.5 0 212.6c.1 38.3 39.1 72.3 99.3 93.3-32.3-21.5-51.5-48.6-51.6-78zm60.2 39.9s10.5 13.2 29.3 13.2c17.9 0 28.4-11.5 28.4-25.1 0-28-40.2-25.1-40.2-39.7 0-5.4 5.3-9.1 12.5-9.1 5.7 0 11.3 2.6 11.3 6.6v3.9h14.2v-7.9c0-12.1-15.4-16.8-25.4-16.8-16.5 0-28.5 10.2-28.5 24.1 0 26.6 40.2 25.4 40.2 39.9 0 6.6-5.8 10.1-12.3 10.1-11.9 0-20.7-10.1-20.7-10.1l-8.8 10.9zm120.8-73.6v54.4c0 11.3-7.1 17.8-17.8 17.8-10.7 0-17.8-6.5-17.8-17.7v-54.5h-15.8v55c0 18.9 13.4 31.9 33.7 31.9 20.1 0 33.4-13 33.4-31.9v-55h-15.7zm34.4 85.4h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.8-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5.1 14.7-14 14.7h-12.6zm57 43h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.7-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5 14.7-14 14.7h-12.6zm57.1 34.8c0 5.8 2.4 8.2 8.2 8.2h37.6c5.8 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-18.6c-1.7 0-2.6-1-2.6-2.6v-61.2c0-5.7-2.4-8.2-8.2-8.2H401v13.4h5.2c1.7 0 2.6 1 2.6 2.6v61.2zm63.4 0c0 5.8 2.4 8.2 8.2 8.2H519c5.7 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-19.7c-1.7 0-2.6-1-2.6-2.6v-20.3h27.7v-13.4H488v-22.4h19.2c1.7 0 2.6 1 2.6 2.6v5.2H524v-13c0-5.7-2.5-8.2-8.2-8.2h-51.6v13.4h7.8v63.9zm58.9-76v5.9h1.6v-5.9h2.7v-1.2h-7v1.2h2.7zm5.7-1.2v7.1h1.5v-5.7l2.3 5.7h1.3l2.3-5.7v5.7h1.5v-7.1h-2.3l-2.1 5.1-2.1-5.1h-2.4z"] }; +var faTeamspeak = { prefix: 'fab', iconName: 'teamspeak', icon: [453, 512, [], "f4f9", "M203.4 65.8c-10.3-2-42.1-3.7-52.3-3.7-8.4 0-6.9 2-6.9 2 63.7 50.1 75.4 121.1 75.6 122.1 1.9 15.6-3.1 22.9-8.7 31.3-1.4 1.8-2.7 5 .3 8.9l28.9 39.4h-.3c9.4 14.1 28.1 32.2-5.4 39.9-7.7 1.9-18.7 6.3-11.2 15.8 2.2 2.9 8.8 9.5 1.8 16.5-7.5 4.8-2.7 7.9-1.8 10.4 1.8 6.6-2.6 11.2-4.3 12.7-4.2 3.2-3.7 7.8-2.6 10.1v.1c3.1 13.1-1.7 27.1-3.9 34.9l.1-.1c-1.4 3.2 22-2.6 22.1-2.6 87.5-23 150.6-88.5 150.6-165.7-.1-86.3-78.7-157.9-182-172m239.4 126.7c-12.9-35.4-34.5-62.3-58.9-85.4-75.8-71.7-175.6-76.6-214-74.8C133 34 79.5 43.7 67.1 59.4c-4.6 5.8-4 6.2-24.4 103.2C36.7 165 0 181.3 0 225.9c-.3 88.7 133.8 89.3 133.8-.3 0-24.6-13-46.1-32.5-58V49.2c12-3 119.7-28.8 223.6 37.3 29.8 19 104.3 76.9 96.9 182.8-1.5 21.2-5.7 40.8-13.6 56.4-57 113.5-170.7 133.8-212.8 137.9-68.3 6.6-122.5-14.1-124-14-2.7.1-12 7.1-11.7 7.4 36.6 12.1 74.3 23 121 23 48 0 84.3-8.2 118-21.6C401.8 417.3 453.6 340 453.6 253.7c0-22.9-4.3-43.2-10.8-61.2m-246.3 33.6c-8.5-15.6.5-15.9 4.8-23.4 5.5-9.6 1.7-22.1-1.7-32.2-9.6-28.5-33.8-84.5-83-103.6v100c4.5 4.5 54.1 33.5 58.2 116.8 4.1 82.7-52 121.6-51.7 123.3 22.8 4.5 66 10.7 76.7-8.6 5.7-10.2-1.5-28.1-.9-28.1-3.6-14.2 7.8-19.4 7.8-21.8 0-1.4-7.2-3.1-7.2-8.1 0-5.9 8.5-6.2 9.4-10.7.9-4.5-3.1-7.8-5.1-16.6-3.5-19 27.9-16 30.8-23.1 1.4-3.3-1.4-7.8-3.4-10.7"] }; +var faTelegram = { prefix: 'fab', iconName: 'telegram', icon: [496, 512, [], "f2c6", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm121.8 169.9l-40.7 191.8c-3 13.6-11.1 16.9-22.4 10.5l-62-45.7-29.9 28.8c-3.3 3.3-6.1 6.1-12.5 6.1l4.4-63.1 114.9-103.8c5-4.4-1.1-6.9-7.7-2.5l-142 89.4-61.2-19.1c-13.3-4.2-13.6-13.3 2.8-19.7l239.1-92.2c11.1-4 20.8 2.7 17.2 19.5z"] }; +var faTelegramPlane = { prefix: 'fab', iconName: 'telegram-plane', icon: [448, 512, [], "f3fe", "M446.7 98.6l-67.6 318.8c-5.1 22.5-18.4 28.1-37.3 17.5l-103-75.9-49.7 47.8c-5.5 5.5-10.1 10.1-20.7 10.1l7.4-104.9 190.9-172.5c8.3-7.4-1.8-11.5-12.9-4.1L117.8 284 16.2 252.2c-22.1-6.9-22.5-22.1 4.6-32.7L418.2 66.4c18.4-6.9 34.5 4.1 28.5 32.2z"] }; +var faTencentWeibo = { prefix: 'fab', iconName: 'tencent-weibo', icon: [384, 512, [], "f1d5", "M72.3 495.8c1.4 19.9-27.6 22.2-29.7 2.9C31 368.8 73.7 259.2 144 185.5c-15.6-34 9.2-77.1 50.6-77.1 30.3 0 55.1 24.6 55.1 55.1 0 44-49.5 70.8-86.9 45.1-65.7 71.3-101.4 169.8-90.5 287.2zM192 .1C66.1.1-12.3 134.3 43.7 242.4 52.4 259.8 79 246.9 70 229 23.7 136.4 91 29.8 192 29.8c75.4 0 136.9 61.4 136.9 136.9 0 90.8-86.9 153.9-167.7 133.1-19.1-4.1-25.6 24.4-6.6 29.1 110.7 23.2 204-60 204-162.3C358.6 74.7 284 .1 192 .1z"] }; +var faThemeisle = { prefix: 'fab', iconName: 'themeisle', icon: [512, 512, [], "f2b2", "M208 88.286c0-10 6.286-21.714 17.715-21.714 11.142 0 17.714 11.714 17.714 21.714 0 10.285-6.572 21.714-17.714 21.714C214.286 110 208 98.571 208 88.286zm304 160c0 36.001-11.429 102.286-36.286 129.714-22.858 24.858-87.428 61.143-120.857 70.572l-1.143.286v32.571c0 16.286-12.572 30.571-29.143 30.571-10 0-19.429-5.714-24.572-14.286-5.427 8.572-14.856 14.286-24.856 14.286-10 0-19.429-5.714-24.858-14.286-5.142 8.572-14.571 14.286-24.57 14.286-10.286 0-19.429-5.714-24.858-14.286-5.143 8.572-14.571 14.286-24.571 14.286-18.857 0-29.429-15.714-29.429-32.857-16.286 12.285-35.715 19.428-56.571 19.428-22 0-43.429-8.285-60.286-22.857 10.285-.286 20.571-2.286 30.285-5.714-20.857-5.714-39.428-18.857-52-36.286 21.37 4.645 46.209 1.673 67.143-11.143-22-22-56.571-58.857-68.572-87.428C1.143 321.714 0 303.714 0 289.429c0-49.714 20.286-160 86.286-160 10.571 0 18.857 4.858 23.143 14.857a158.792 158.792 0 0 1 12-15.428c2-2.572 5.714-5.429 7.143-8.286 7.999-12.571 11.714-21.142 21.714-34C182.571 45.428 232 17.143 285.143 17.143c6 0 12 .285 17.714 1.143C313.714 6.571 328.857 0 344.572 0c14.571 0 29.714 6 40 16.286.857.858 1.428 2.286 1.428 3.428 0 3.714-10.285 13.429-12.857 16.286 4.286 1.429 15.714 6.858 15.714 12 0 2.857-2.857 5.143-4.571 7.143 31.429 27.714 49.429 67.143 56.286 108 4.286-5.143 10.285-8.572 17.143-8.572 10.571 0 20.857 7.144 28.571 14.001C507.143 187.143 512 221.714 512 248.286zM188 89.428c0 18.286 12.571 37.143 32.286 37.143 19.714 0 32.285-18.857 32.285-37.143 0-18-12.571-36.857-32.285-36.857-19.715 0-32.286 18.858-32.286 36.857zM237.714 194c0-19.714 3.714-39.143 8.571-58.286-52.039 79.534-13.531 184.571 68.858 184.571 21.428 0 42.571-7.714 60-20 2-7.429 3.714-14.857 3.714-22.572 0-14.286-6.286-21.428-20.572-21.428-4.571 0-9.143.857-13.429 1.714-63.343 12.668-107.142 3.669-107.142-63.999zm-41.142 254.858c0-11.143-8.858-20.857-20.286-20.857-11.429 0-20 9.715-20 20.857v32.571c0 11.143 8.571 21.142 20 21.142 11.428 0 20.286-9.715 20.286-21.142v-32.571zm49.143 0c0-11.143-8.572-20.857-20-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20-10 20-21.142v-32.571zm49.713 0c0-11.143-8.857-20.857-20.285-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20.285-9.715 20.285-21.142v-32.571zm49.715 0c0-11.143-8.857-20.857-20.286-20.857-11.428 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.858 21.142 20.286 21.142 11.429 0 20.286-10 20.286-21.142v-32.571zM421.714 286c-30.857 59.142-90.285 102.572-158.571 102.572-96.571 0-160.571-84.572-160.571-176.572 0-16.857 2-33.429 6-49.714-20 33.715-29.714 72.572-29.714 111.429 0 60.286 24.857 121.715 71.429 160.857 5.143-9.714 14.857-16.286 26-16.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.571-14.286 24.858-14.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.857-14.286 24.858-14.286 10 0 19.428 5.714 24.857 14.286 5.143-8.571 14.571-14.286 24.572-14.286 10.857 0 20.857 6.572 25.714 16 43.427-36.286 68.569-92 71.426-148.286zm10.572-99.714c0-53.714-34.571-105.714-92.572-105.714-30.285 0-58.571 15.143-78.857 36.857C240.862 183.812 233.41 254 302.286 254c28.805 0 97.357-28.538 84.286 36.857 28.857-26 45.714-65.714 45.714-104.571z"] }; +var faTradeFederation = { prefix: 'fab', iconName: 'trade-federation', icon: [496, 512, [], "f513", "M202.45 108.42v81.61H38.94l48.22 61.91h114.73v196.75h64.61V252.96h83.27v-62.69h-83.18V171.1h145.62v-62.68H202.45zm4.86 6h197.77v50.68H259.44v30.93h83.18v50.93h-83.26v195.73h-52.73V245.94H89.86l-39.95-49.91h157.4v-81.61zM247.99 8.8C111.03 8.8 0 119.83 0 256.8s111.03 248 247.99 248S496 393.76 496 256.8 384.96 8.8 247.99 8.8zm.02 13.24c129.66 0 234.76 105.12 234.76 234.78s-105.1 234.76-234.76 234.76S13.23 386.47 13.23 256.81 118.35 22.04 248.01 22.04zm0 7.89c-125.3 0-226.89 101.57-226.89 226.87s101.59 226.89 226.89 226.89S474.88 382.1 474.88 256.8 373.31 29.93 248.01 29.93zm-.02 13.3c117.95 0 213.56 95.62 213.56 213.56s-95.62 213.56-213.56 213.56S34.43 374.75 34.43 256.8 130.04 43.23 247.99 43.23zm-73.32 104.8l15.66 18.05-22.16-9.45-12.33 20.47 2.15-23.99-23.28-5.4 23.48-5.37-2.06-23.81 12.37 20.67 22.01-9.32-15.84 18.15zm-47.14-46.54l8.01 12.4 12.69-5.86-9.32 11.45 9.5 10.25-13.77-5.32-6.82 12.2.81-14.74-13.71-2.71 14.27-3.78-1.66-13.89zm250.77 75.59l11.99 19.56 20.88-9.11-14.9 17.45 15.11 17.04-21.2-8.78-11.54 19.64 1.8-22.87-22.24-4.9 22.31-5.36-2.21-22.67zm-107.05 98.45l13.86-3.22-1.28-14.17 7.35 12.18 13.08-5.59-9.31 10.75 9.36 10.71-13.1-5.54-7.29 12.21 1.22-14.17-13.89-3.16zm-125.43 6.5l23.73-3.87-1.73-24.53 11.01 21.38 22.79-9.22-16.93 17.08 15.81 18.83-21.47-10.82-13.02 20.86 3.66-23.77-23.85-5.94zm63.44-165.66v81.61H54.16l36.72 46.01h117.7v196.75h48.82V245.01h83.27v-47.03H257.4v-34.83h145.73v-46.78H209.26zm10.86 11.2h171.8v24.36H246.88v56.23h82.93v23.94h-82.93v197.42h-26.76V232.1H96.31l-20.09-23.94h143.9v-80.59z"] }; +var faTrello = { prefix: 'fab', iconName: 'trello', icon: [448, 512, [], "f181", "M392 32H56C25.1 32 0 57.1 0 88v336c0 30.9 25.1 56 56 56h336c30.9 0 56-25.1 56-56V88c0-30.9-25.1-56-56-56zM194.9 371.4c0 14.8-12 26.9-26.9 26.9H85.1c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9H168c14.8 0 26.9 12 26.9 26.9v254.3zm194.9-112c0 14.8-12 26.9-26.9 26.9H280c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9h82.9c14.8 0 26.9 12 26.9 26.9v142.3z"] }; +var faTripadvisor = { prefix: 'fab', iconName: 'tripadvisor', icon: [576, 512, [], "f262", "M166.4 280.521c0 13.236-10.73 23.966-23.966 23.966s-23.966-10.73-23.966-23.966 10.73-23.966 23.966-23.966 23.966 10.729 23.966 23.966zm264.962-23.956c-13.23 0-23.956 10.725-23.956 23.956 0 13.23 10.725 23.956 23.956 23.956 13.23 0 23.956-10.725 23.956-23.956-.001-13.231-10.726-23.956-23.956-23.956zm89.388 139.49c-62.667 49.104-153.276 38.109-202.379-24.559l-30.979 46.325-30.683-45.939c-48.277 60.39-135.622 71.891-197.885 26.055-64.058-47.158-77.759-137.316-30.601-201.374A186.762 186.762 0 0 0 0 139.416l90.286-.05a358.48 358.48 0 0 1 197.065-54.03 350.382 350.382 0 0 1 192.181 53.349l96.218.074a185.713 185.713 0 0 0-28.352 57.649c46.793 62.747 34.964 151.37-26.648 199.647zM259.366 281.761c-.007-63.557-51.535-115.075-115.092-115.068C80.717 166.7 29.2 218.228 29.206 281.785c.007 63.557 51.535 115.075 115.092 115.068 63.513-.075 114.984-51.539 115.068-115.052v-.04zm28.591-10.455c5.433-73.44 65.51-130.884 139.12-133.022a339.146 339.146 0 0 0-139.727-27.812 356.31 356.31 0 0 0-140.164 27.253c74.344 1.582 135.299 59.424 140.771 133.581zm251.706-28.767c-21.992-59.634-88.162-90.148-147.795-68.157-59.634 21.992-90.148 88.162-68.157 147.795v.032c22.038 59.607 88.198 90.091 147.827 68.113 59.615-22.004 90.113-88.162 68.125-147.783zm-326.039 37.975v.115c-.057 39.328-31.986 71.163-71.314 71.106-39.328-.057-71.163-31.986-71.106-71.314.057-39.328 31.986-71.163 71.314-71.106 39.259.116 71.042 31.94 71.106 71.199zm-24.512 0v-.084c-.051-25.784-20.994-46.645-46.778-46.594-25.784.051-46.645 20.994-46.594 46.777.051 25.784 20.994 46.645 46.777 46.594 25.726-.113 46.537-20.968 46.595-46.693zm313.423 0v.048c-.02 39.328-31.918 71.194-71.247 71.173s-71.194-31.918-71.173-71.247c.02-39.328 31.918-71.194 71.247-71.173 39.29.066 71.121 31.909 71.173 71.199zm-24.504-.008c-.009-25.784-20.918-46.679-46.702-46.67-25.784.009-46.679 20.918-46.67 46.702.009 25.784 20.918 46.678 46.702 46.67 25.765-.046 46.636-20.928 46.67-46.693v-.009z"] }; +var faTumblr = { prefix: 'fab', iconName: 'tumblr', icon: [320, 512, [], "f173", "M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z"] }; +var faTumblrSquare = { prefix: 'fab', iconName: 'tumblr-square', icon: [448, 512, [], "f174", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-82.3 364.2c-8.5 9.1-31.2 19.8-60.9 19.8-75.5 0-91.9-55.5-91.9-87.9v-90h-29.7c-3.4 0-6.2-2.8-6.2-6.2v-42.5c0-4.5 2.8-8.5 7.1-10 38.8-13.7 50.9-47.5 52.7-73.2.5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2h-52.1V321c0 21.4 14.8 33.5 42.5 22.4 3-1.2 5.6-2 8-1.4 2.2.5 3.6 2.1 4.6 4.9l13.8 40.2c1 3.2 2 6.7-.3 9.1z"] }; +var faTwitch = { prefix: 'fab', iconName: 'twitch', icon: [448, 512, [], "f1e8", "M40.1 32L10 108.9v314.3h107V480h60.2l56.8-56.8h87l117-117V32H40.1zm357.8 254.1L331 353H224l-56.8 56.8V353H76.9V72.1h321v214zM331 149v116.9h-40.1V149H331zm-107 0v116.9h-40.1V149H224z"] }; +var faTwitter = { prefix: 'fab', iconName: 'twitter', icon: [512, 512, [], "f099", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"] }; +var faTwitterSquare = { prefix: 'fab', iconName: 'twitter-square', icon: [448, 512, [], "f081", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z"] }; +var faTypo3 = { prefix: 'fab', iconName: 'typo3', icon: [433, 512, [], "f42b", "M330.8 341c-7 2.3-11.6 2.3-18.5 2.3-57.2 0-140.6-198.5-140.6-264.9 0-24.7 5.4-32.4 13.9-39.4-69.5 8.5-149.3 34-176.3 66.4-5.4 7.7-9.3 20.8-9.3 37.1C0 246 106.8 480 184.1 480c36.3 0 97.3-59.5 146.7-139M294.5 32c71.8 0 138.8 11.6 138.8 52.5 0 82.6-52.5 182.3-78.8 182.3-47.9 0-101.7-132.1-101.7-198.5 0-30.9 11.6-36.3 41.7-36.3"] }; +var faUber = { prefix: 'fab', iconName: 'uber', icon: [448, 512, [], "f402", "M414.1 32H33.9C15.2 32 0 47.2 0 65.9V446c0 18.8 15.2 34 33.9 34H414c18.7 0 33.9-15.2 33.9-33.9V65.9C448 47.2 432.8 32 414.1 32zM237.6 391.1C163 398.6 96.4 344.2 88.9 269.6h94.4V290c0 3.7 3 6.8 6.8 6.8H258c3.7 0 6.8-3 6.8-6.8v-67.9c0-3.7-3-6.8-6.8-6.8h-67.9c-3.7 0-6.8 3-6.8 6.8v20.4H88.9c7-69.4 65.4-122.2 135.1-122.2 69.7 0 128.1 52.8 135.1 122.2 7.5 74.5-46.9 141.1-121.5 148.6z"] }; +var faUikit = { prefix: 'fab', iconName: 'uikit', icon: [448, 512, [], "f403", "M443.9 128v256L218 512 0 384V169.7l87.6 45.1v117l133.5 75.5 135.8-75.5v-151l-101.1-57.6 87.6-53.1L443.9 128zM308.6 49.1L223.8 0l-88.6 54.8 86 47.3 87.4-53z"] }; +var faUniregistry = { prefix: 'fab', iconName: 'uniregistry', icon: [384, 512, [], "f404", "M281.1 220.1H384v-14.8H281.1v14.8zm0-37.1H384v-12.4H281.1V183zm0 74.2H384v-17.3H281.1v17.3zm-157.7 86.7H8.5c2.6 8.5 5.8 16.8 9.6 24.8h138.3c-12.9-5.7-24.1-14.2-33-24.8m145.7-12.4h109.7c1.8-7.3 3.1-14.7 3.9-22.3H278.3c-2.1 7.9-5.2 15.4-9.2 22.3m-41.5 37.1H367c3.7-8 5.8-16.2 8.5-24.8h-115c-8.8 10.7-20.1 19.2-32.9 24.8M384 32H281.1v2.5H384V32zM192 480c39.5 0 76.2-11.8 106.8-32.2H85.3C115.8 468.2 152.5 480 192 480m89.1-334.2H384V136H281.1v9.8zm0-37.1H384v-7.4H281.1v7.4zm0-37.1H384v-4.9H281.1v4.9zm-178.2 99H0V183h102.9v-12.4zM38.8 405.7h305.3c6.7-8.5 12.6-17.6 17.8-27.2H23c5.2 9.6 9.2 18.7 15.8 27.2m64.1-118.8v-12.4H0v12.4c0 2.5 0 5 .1 7.4h103.1c-.2-2.4-.3-4.9-.3-7.4m178.2 0c0 2.5-.1 5-.4 7.4h103.1c.1-2.5.2-4.9.2-7.4v-12.4H281.1v12.4zm-203 156h227.7c11.8-8.7 22.7-18.6 32.2-29.7H44.9c9.6 11 21.4 21 33.2 29.7m24.8-376.2H0v4.9h102.9v-4.9zm0-34.7H0v2.5h102.9V32zm0 173.3H0v14.8h102.9v-14.8zm0 34.6H0v17.3h102.9v-17.3zm0-103.9H0v9.9h102.9V136zm0-34.7H0v7.4h102.9v-7.4zm2.8 207.9H1.3c.9 7.6 2.2 15 3.9 22.3h109.7c-4-6.9-7.2-14.4-9.2-22.3"] }; +var faUntappd = { prefix: 'fab', iconName: 'untappd', icon: [640, 512, [], "f405", "M401.3 49.9c-79.8 160.1-84.6 152.5-87.9 173.2l-5.2 32.8c-1.9 12-6.6 23.5-13.7 33.4L145.6 497.1c-7.6 10.6-20.4 16.2-33.4 14.6-40.3-5-77.8-32.2-95.3-68.5-5.7-11.8-4.5-25.8 3.1-36.4l148.9-207.9c7.1-9.9 16.4-18 27.2-23.7l29.3-15.5c18.5-9.8 9.7-11.9 135.6-138.9 1-4.8 1-7.3 3.6-8 3-.7 6.6-1 6.3-4.6l-.4-4.6c-.2-1.9 1.3-3.6 3.2-3.6 4.5-.1 13.2 1.2 25.6 10 12.3 8.9 16.4 16.8 17.7 21.1.6 1.8-.6 3.7-2.4 4.2l-4.5 1.1c-3.4.9-2.5 4.4-2.3 7.4.1 2.8-2.3 3.6-6.5 6.1zM230.1 36.4c3.4.9 2.5 4.4 2.3 7.4-.2 2.7 2.1 3.5 6.4 6 7.9 15.9 15.3 30.5 22.2 44 .7 1.3 2.3 1.5 3.3.5 11.2-12 24.6-26.2 40.5-42.6 1.3-1.4 1.4-3.5.1-4.9-8-8.2-16.5-16.9-25.6-26.1-1-4.7-1-7.3-3.6-8-3-.8-6.6-1-6.3-4.6.3-3.3 1.4-8.1-2.8-8.2-4.5-.1-13.2 1.1-25.6 10-12.3 8.9-16.4 16.8-17.7 21.1-1.4 4.2 3.6 4.6 6.8 5.4zM620 406.7L471.2 198.8c-13.2-18.5-26.6-23.4-56.4-39.1-11.2-5.9-14.2-10.9-30.5-28.9-1-1.1-2.9-.9-3.6.5-46.3 88.8-47.1 82.8-49 94.8-1.7 10.7-1.3 20 .3 29.8 1.9 12 6.6 23.5 13.7 33.4l148.9 207.9c7.6 10.6 20.2 16.2 33.1 14.7 40.3-4.9 78-32 95.7-68.6 5.4-11.9 4.3-25.9-3.4-36.6z"] }; +var faUsb = { prefix: 'fab', iconName: 'usb', icon: [640, 512, [], "f287", "M641.5 256c0 3.1-1.7 6.1-4.5 7.5L547.9 317c-1.4.8-2.8 1.4-4.5 1.4-1.4 0-3.1-.3-4.5-1.1-2.8-1.7-4.5-4.5-4.5-7.8v-35.6H295.7c25.3 39.6 40.5 106.9 69.6 106.9H392V354c0-5 3.9-8.9 8.9-8.9H490c5 0 8.9 3.9 8.9 8.9v89.1c0 5-3.9 8.9-8.9 8.9h-89.1c-5 0-8.9-3.9-8.9-8.9v-26.7h-26.7c-75.4 0-81.1-142.5-124.7-142.5H140.3c-8.1 30.6-35.9 53.5-69 53.5C32 327.3 0 295.3 0 256s32-71.3 71.3-71.3c33.1 0 61 22.8 69 53.5 39.1 0 43.9 9.5 74.6-60.4C255 88.7 273 95.7 323.8 95.7c7.5-20.9 27-35.6 50.4-35.6 29.5 0 53.5 23.9 53.5 53.5s-23.9 53.5-53.5 53.5c-23.4 0-42.9-14.8-50.4-35.6H294c-29.1 0-44.3 67.4-69.6 106.9h310.1v-35.6c0-3.3 1.7-6.1 4.5-7.8 2.8-1.7 6.4-1.4 8.9.3l89.1 53.5c2.8 1.1 4.5 4.1 4.5 7.2z"] }; +var faUssunnah = { prefix: 'fab', iconName: 'ussunnah', icon: [512, 512, [], "f407", "M156.8 285.1l5.7 14.4h-8.2c-1.3-3.2-3.1-7.7-3.8-9.5-2.5-6.3-1.1-8.4 0-10 1.9-2.7 3.2-4.4 3.6-5.2 0 2.2.8 5.7 2.7 10.3zm297.3 18.8c-2.1 13.8-5.7 27.1-10.5 39.7l43 23.4-44.8-18.8c-5.3 13.2-12 25.6-19.9 37.2l34.2 30.2-36.8-26.4c-8.4 11.8-18 22.6-28.7 32.3l24.9 34.7-28.1-31.8c-11 9.6-23.1 18-36.1 25.1l15.7 37.2-19.3-35.3c-13.1 6.8-27 12.1-41.6 15.9l6.7 38.4-10.5-37.4c-14.3 3.4-29.2 5.3-44.5 5.4L256 512l-1.9-38.4c-15.3-.1-30.2-2-44.5-5.3L199 505.6l6.7-38.2c-14.6-3.7-28.6-9.1-41.7-15.8l-19.2 35.1 15.6-37c-13-7-25.2-15.4-36.2-25.1l-27.9 31.6 24.7-34.4c-10.7-9.7-20.4-20.5-28.8-32.3l-36.5 26.2 33.9-29.9c-7.9-11.6-14.6-24.1-20-37.3l-44.4 18.7L67.8 344c-4.8-12.7-8.4-26.1-10.5-39.9l-51 9 50.3-14.2c-1.1-8.5-1.7-17.1-1.7-25.9 0-4.7.2-9.4.5-14.1L0 256l56-2.8c1.3-13.1 3.8-25.8 7.5-38.1L6.4 199l58.9 10.4c4-12 9.1-23.5 15.2-34.4l-55.1-30 58.3 24.6C90 159 97.2 149.2 105.3 140L55.8 96.4l53.9 38.7c8.1-8.6 17-16.5 26.6-23.6l-40-55.6 45.6 51.6c9.5-6.6 19.7-12.3 30.3-17.2l-27.3-64.9 33.8 62.1c10.5-4.4 21.4-7.9 32.7-10.4L199 6.4l19.5 69.2c11-2.1 22.3-3.2 33.8-3.4L256 0l3.6 72.2c11.5.2 22.8 1.4 33.8 3.5L313 6.4l-12.4 70.7c11.3 2.6 22.2 6.1 32.6 10.5l33.9-62.2-27.4 65.1c10.6 4.9 20.7 10.7 30.2 17.2l45.8-51.8-40.1 55.9c9.5 7.1 18.4 15 26.5 23.6l54.2-38.9-49.7 43.9c8 9.1 15.2 18.9 21.5 29.4l58.7-24.7-55.5 30.2c6.1 10.9 11.1 22.3 15.1 34.3l59.3-10.4-57.5 16.2c3.7 12.2 6.2 24.9 7.5 37.9L512 256l-56 2.8c.3 4.6.5 9.3.5 14.1 0 8.7-.6 17.3-1.6 25.8l50.7 14.3-51.5-9.1zm-21.8-31c0-97.5-79-176.5-176.5-176.5s-176.5 79-176.5 176.5 79 176.5 176.5 176.5 176.5-79 176.5-176.5zm-24 0c0 84.3-68.3 152.6-152.6 152.6s-152.6-68.3-152.6-152.6 68.3-152.6 152.6-152.6 152.6 68.3 152.6 152.6zM195 241c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-40.7-19c0 2.1 1.3 3.8 3.6 5.1 3.5 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-19 0c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.4 6.8-9.6 10.9-9.6 12.6zm204.9 87.9c-8.4-3-8.7-6.8-8.7-15.6V182c-8.2 12.5-14.2 18.6-18 18.6 6.3 14.4 9.5 23.9 9.5 28.3v64.3c0 2.2-2.2 6.5-4.7 6.5h-18c-2.8-7.5-10.2-26.9-15.3-40.3-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3 2.6 6.7 6.4 16.5 7.9 20.2h-9.2c-3.9-10.4-9.6-25.4-11.8-31.1-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3.8 2 2.8 7.3 4.3 10.9H256c-1.5-4.1-5.6-14.6-8.4-22-2 2.5-7.2 9.2-10.7 13.7 2.5 1.6 4.3 3.6 5.2 6.3.2.6.5 1.4.6 1.7H225c-4.6-13.9-11.4-27.7-11.4-34.1 0-2.2.3-5.1 1.1-8.2-8.8 10.8-14 15.9-14 25 0 7.5 10.4 28.3 10.4 33.3 0 1.7-.5 3.3-1.4 4.9-9.6-12.7-15.5-20.7-18.8-20.7h-12l-11.2-28c-3.8-9.6-5.7-16-5.7-18.8 0-3.8.5-7.7 1.7-12.2-1 1.3-3.7 4.7-5.5 7.1-.8-2.1-3.1-7.7-4.6-11.5-2.1 2.5-7.5 9.1-11.2 13.6.9 2.3 3.3 8.1 4.9 12.2-2.5 3.3-9.1 11.8-13.6 17.7-4 5.3-5.8 13.3-2.7 21.8 2.5 6.7 2 7.9-1.7 14.1H191c5.5 0 14.3 14 15.5 22 13.2-16 15.4-19.6 16.8-21.6h107c3.9 0 7.2-1.9 9.9-5.8zm20.1-26.6V181.7c-9 12.5-15.9 18.6-20.7 18.6 7.1 14.4 10.7 23.9 10.7 28.3v66.3c0 17.5 8.6 20.4 24 20.4 8.1 0 12.5-.8 13.7-2.7-4.3-1.6-7.6-2.5-9.9-3.3-8.1-3.2-17.8-7.4-17.8-26z"] }; +var faVaadin = { prefix: 'fab', iconName: 'vaadin', icon: [448, 512, [], "f408", "M224.5 140.7c1.5-17.6 4.9-52.7 49.8-52.7h98.6c20.7 0 32.1-7.8 32.1-21.6V54.1c0-12.2 9.3-22.1 21.5-22.1S448 41.9 448 54.1v36.5c0 42.9-21.5 62-66.8 62H280.7c-30.1 0-33 14.7-33 27.1 0 1.3-.1 2.5-.2 3.7-.7 12.3-10.9 22.2-23.4 22.2s-22.7-9.8-23.4-22.2c-.1-1.2-.2-2.4-.2-3.7 0-12.3-3-27.1-33-27.1H66.8c-45.3 0-66.8-19.1-66.8-62V54.1C0 41.9 9.4 32 21.6 32s21.5 9.9 21.5 22.1v12.3C43.1 80.2 54.5 88 75.2 88h98.6c44.8 0 48.3 35.1 49.8 52.7h.9zM224 456c11.5 0 21.4-7 25.7-16.3 1.1-1.8 97.1-169.6 98.2-171.4 11.9-19.6-3.2-44.3-27.2-44.3-13.9 0-23.3 6.4-29.8 20.3L224 362l-66.9-117.7c-6.4-13.9-15.9-20.3-29.8-20.3-24 0-39.1 24.6-27.2 44.3 1.1 1.9 97.1 169.6 98.2 171.4 4.3 9.3 14.2 16.3 25.7 16.3z"] }; +var faViacoin = { prefix: 'fab', iconName: 'viacoin', icon: [384, 512, [], "f237", "M384 32h-64l-80.7 192h-94.5L64 32H0l48 112H0v48h68.5l13.8 32H0v48h102.8L192 480l89.2-208H384v-48h-82.3l13.8-32H384v-48h-48l48-112zM192 336l-27-64h54l-27 64z"] }; +var faViadeo = { prefix: 'fab', iconName: 'viadeo', icon: [448, 512, [], "f2a9", "M276.2 150.5v.7C258.3 98.6 233.6 47.8 205.4 0c43.3 29.2 67 100 70.8 150.5zm32.7 121.7c7.6 18.2 11 37.5 11 57 0 77.7-57.8 141-137.8 139.4l3.8-.3c74.2-46.7 109.3-118.6 109.3-205.1 0-38.1-6.5-75.9-18.9-112 1 11.7 1 23.7 1 35.4 0 91.8-18.1 241.6-116.6 280C95 455.2 49.4 398 49.4 329.2c0-75.6 57.4-142.3 135.4-142.3 16.8 0 33.7 3.1 49.1 9.6 1.7-15.1 6.5-29.9 13.4-43.3-19.9-7.2-41.2-10.7-62.5-10.7-161.5 0-238.7 195.9-129.9 313.7 67.9 74.6 192 73.9 259.8 0 56.6-61.3 60.9-142.4 36.4-201-12.7 8-27.1 13.9-42.2 17zM418.1 11.7c-31 66.5-81.3 47.2-115.8 80.1-12.4 12-20.6 34-20.6 50.5 0 14.1 4.5 27.1 12 38.8 47.4-11 98.3-46 118.2-90.7-.7 5.5-4.8 14.4-7.2 19.2-20.3 35.7-64.6 65.6-99.7 84.9 14.8 14.4 33.7 25.8 55 25.8 79 0 110.1-134.6 58.1-208.6z"] }; +var faViadeoSquare = { prefix: 'fab', iconName: 'viadeo-square', icon: [448, 512, [], "f2aa", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM280.7 381.2c-42.4 46.2-120 46.6-162.4 0-68-73.6-19.8-196.1 81.2-196.1 13.3 0 26.6 2.1 39.1 6.7-4.3 8.4-7.3 17.6-8.4 27.1-9.7-4.1-20.2-6-30.7-6-48.8 0-84.6 41.7-84.6 88.9 0 43 28.5 78.7 69.5 85.9 61.5-24 72.9-117.6 72.9-175 0-7.3 0-14.8-.6-22.1-11.2-32.9-26.6-64.6-44.2-94.5 27.1 18.3 41.9 62.5 44.2 94.1v.4c7.7 22.5 11.8 46.2 11.8 70 0 54.1-21.9 99-68.3 128.2l-2.4.2c50 1 86.2-38.6 86.2-87.2 0-12.2-2.1-24.3-6.9-35.7 9.5-1.9 18.5-5.6 26.4-10.5 15.3 36.6 12.6 87.3-22.8 125.6zM309 233.7c-13.3 0-25.1-7.1-34.4-16.1 21.9-12 49.6-30.7 62.3-53 1.5-3 4.1-8.6 4.5-12-12.5 27.9-44.2 49.8-73.9 56.7-4.7-7.3-7.5-15.5-7.5-24.3 0-10.3 5.2-24.1 12.9-31.6 21.6-20.5 53-8.5 72.4-50 32.5 46.2 13.1 130.3-36.3 130.3z"] }; +var faViber = { prefix: 'fab', iconName: 'viber', icon: [512, 512, [], "f409", "M444 49.9C431.3 38.2 379.9.9 265.3.4c0 0-135.1-8.1-200.9 52.3C27.8 89.3 14.9 143 13.5 209.5c-1.4 66.5-3.1 191.1 117 224.9h.1l-.1 51.6s-.8 20.9 13 25.1c16.6 5.2 26.4-10.7 42.3-27.8 8.7-9.4 20.7-23.2 29.8-33.7 82.2 6.9 145.3-8.9 152.5-11.2 16.6-5.4 110.5-17.4 125.7-142 15.8-128.6-7.6-209.8-49.8-246.5zM457.9 287c-12.9 104-89 110.6-103 115.1-6 1.9-61.5 15.7-131.2 11.2 0 0-52 62.7-68.2 79-5.3 5.3-11.1 4.8-11-5.7 0-6.9.4-85.7.4-85.7-.1 0-.1 0 0 0-101.8-28.2-95.8-134.3-94.7-189.8 1.1-55.5 11.6-101 42.6-131.6 55.7-50.5 170.4-43 170.4-43 96.9.4 143.3 29.6 154.1 39.4 35.7 30.6 53.9 103.8 40.6 211.1zm-139-80.8c.4 8.6-12.5 9.2-12.9.6-1.1-22-11.4-32.7-32.6-33.9-8.6-.5-7.8-13.4.7-12.9 27.9 1.5 43.4 17.5 44.8 46.2zm20.3 11.3c1-42.4-25.5-75.6-75.8-79.3-8.5-.6-7.6-13.5.9-12.9 58 4.2 88.9 44.1 87.8 92.5-.1 8.6-13.1 8.2-12.9-.3zm47 13.4c.1 8.6-12.9 8.7-12.9.1-.6-81.5-54.9-125.9-120.8-126.4-8.5-.1-8.5-12.9 0-12.9 73.7.5 133 51.4 133.7 139.2zM374.9 329v.2c-10.8 19-31 40-51.8 33.3l-.2-.3c-21.1-5.9-70.8-31.5-102.2-56.5-16.2-12.8-31-27.9-42.4-42.4-10.3-12.9-20.7-28.2-30.8-46.6-21.3-38.5-26-55.7-26-55.7-6.7-20.8 14.2-41 33.3-51.8h.2c9.2-4.8 18-3.2 23.9 3.9 0 0 12.4 14.8 17.7 22.1 5 6.8 11.7 17.7 15.2 23.8 6.1 10.9 2.3 22-3.7 26.6l-12 9.6c-6.1 4.9-5.3 14-5.3 14s17.8 67.3 84.3 84.3c0 0 9.1.8 14-5.3l9.6-12c4.6-6 15.7-9.8 26.6-3.7 14.7 8.3 33.4 21.2 45.8 32.9 7 5.7 8.6 14.4 3.8 23.6z"] }; +var faVimeo = { prefix: 'fab', iconName: 'vimeo', icon: [448, 512, [], "f40a", "M403.2 32H44.8C20.1 32 0 52.1 0 76.8v358.4C0 459.9 20.1 480 44.8 480h358.4c24.7 0 44.8-20.1 44.8-44.8V76.8c0-24.7-20.1-44.8-44.8-44.8zM377 180.8c-1.4 31.5-23.4 74.7-66 129.4-44 57.2-81.3 85.8-111.7 85.8-18.9 0-34.8-17.4-47.9-52.3-25.5-93.3-36.4-148-57.4-148-2.4 0-10.9 5.1-25.4 15.2l-15.2-19.6c37.3-32.8 72.9-69.2 95.2-71.2 25.2-2.4 40.7 14.8 46.5 51.7 20.7 131.2 29.9 151 67.6 91.6 13.5-21.4 20.8-37.7 21.8-48.9 3.5-33.2-25.9-30.9-45.8-22.4 15.9-52.1 46.3-77.4 91.2-76 33.3.9 49 22.5 47.1 64.7z"] }; +var faVimeoSquare = { prefix: 'fab', iconName: 'vimeo-square', icon: [448, 512, [], "f194", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16.2 149.6c-1.4 31.1-23.2 73.8-65.3 127.9-43.5 56.5-80.3 84.8-110.4 84.8-18.7 0-34.4-17.2-47.3-51.6-25.2-92.3-35.9-146.4-56.7-146.4-2.4 0-10.8 5-25.1 15.1L64 192c36.9-32.4 72.1-68.4 94.1-70.4 24.9-2.4 40.2 14.6 46 51.1 20.5 129.6 29.6 149.2 66.8 90.5 13.4-21.2 20.6-37.2 21.5-48.3 3.4-32.8-25.6-30.6-45.2-22.2 15.7-51.5 45.8-76.5 90.1-75.1 32.9 1 48.4 22.4 46.5 64z"] }; +var faVimeoV = { prefix: 'fab', iconName: 'vimeo-v', icon: [448, 512, [], "f27d", "M447.8 153.6c-2 43.6-32.4 103.3-91.4 179.1-60.9 79.2-112.4 118.8-154.6 118.8-26.1 0-48.2-24.1-66.3-72.3C100.3 250 85.3 174.3 56.2 174.3c-3.4 0-15.1 7.1-35.2 21.1L0 168.2c51.6-45.3 100.9-95.7 131.8-98.5 34.9-3.4 56.3 20.5 64.4 71.5 28.7 181.5 41.4 208.9 93.6 126.7 18.7-29.6 28.8-52.1 30.2-67.6 4.8-45.9-35.8-42.8-63.3-31 22-72.1 64.1-107.1 126.2-105.1 45.8 1.2 67.5 31.1 64.9 89.4z"] }; +var faVine = { prefix: 'fab', iconName: 'vine', icon: [384, 512, [], "f1ca", "M384 254.7v52.1c-18.4 4.2-36.9 6.1-52.1 6.1-36.9 77.4-103 143.8-125.1 156.2-14 7.9-27.1 8.4-42.7-.8C137 452 34.2 367.7 0 102.7h74.5C93.2 261.8 139 343.4 189.3 404.5c27.9-27.9 54.8-65.1 75.6-106.9-49.8-25.3-80.1-80.9-80.1-145.6 0-65.6 37.7-115.1 102.2-115.1 114.9 0 106.2 127.9 81.6 181.5 0 0-46.4 9.2-63.5-20.5 3.4-11.3 8.2-30.8 8.2-48.5 0-31.3-11.3-46.6-28.4-46.6-18.2 0-30.8 17.1-30.8 50 .1 79.2 59.4 118.7 129.9 101.9z"] }; +var faVk = { prefix: 'fab', iconName: 'vk', icon: [576, 512, [], "f189", "M545 117.7c3.7-12.5 0-21.7-17.8-21.7h-58.9c-15 0-21.9 7.9-25.6 16.7 0 0-30 73.1-72.4 120.5-13.7 13.7-20 18.1-27.5 18.1-3.7 0-9.4-4.4-9.4-16.9V117.7c0-15-4.2-21.7-16.6-21.7h-92.6c-9.4 0-15 7-15 13.5 0 14.2 21.2 17.5 23.4 57.5v86.8c0 19-3.4 22.5-10.9 22.5-20 0-68.6-73.4-97.4-157.4-5.8-16.3-11.5-22.9-26.6-22.9H38.8c-16.8 0-20.2 7.9-20.2 16.7 0 15.6 20 93.1 93.1 195.5C160.4 378.1 229 416 291.4 416c37.5 0 42.1-8.4 42.1-22.9 0-66.8-3.4-73.1 15.4-73.1 8.7 0 23.7 4.4 58.7 38.1 40 40 46.6 57.9 69 57.9h58.9c16.8 0 25.3-8.4 20.4-25-11.2-34.9-86.9-106.7-90.3-111.5-8.7-11.2-6.2-16.2 0-26.2.1-.1 72-101.3 79.4-135.6z"] }; +var faVnv = { prefix: 'fab', iconName: 'vnv', icon: [640, 512, [], "f40b", "M104.9 352c-34.1 0-46.4-30.4-46.4-30.4L2.6 210.1S-7.8 192 13 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.7-74.5c5.6-9.5 8.4-18.1 18.8-18.1h32.8c20.8 0 10.4 18.1 10.4 18.1l-55.8 111.5S174.2 352 140 352h-35.1zm395 0c-34.1 0-46.4-30.4-46.4-30.4l-55.9-111.5S387.2 192 408 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.8-74.5c5.6-9.5 8.4-18.1 18.8-18.1H627c20.8 0 10.4 18.1 10.4 18.1l-55.9 111.5S569.3 352 535.1 352h-35.2zM337.6 192c34.1 0 46.4 30.4 46.4 30.4l55.9 111.5s10.4 18.1-10.4 18.1h-32.8c-10.4 0-13.2-8.7-18.8-18.1l-36.7-74.5s-5.2-13.1-21.1-13.1c-15.9 0-21.1 13.1-21.1 13.1l-36.7 74.5c-5.6 9.4-8.4 18.1-18.8 18.1h-32.9c-20.8 0-10.4-18.1-10.4-18.1l55.9-111.5s12.2-30.4 46.4-30.4h35.1z"] }; +var faVuejs = { prefix: 'fab', iconName: 'vuejs', icon: [448, 512, [], "f41f", "M356.9 64.3H280l-56 88.6-48-88.6H0L224 448 448 64.3h-91.1zm-301.2 32h53.8L224 294.5 338.4 96.3h53.8L224 384.5 55.7 96.3z"] }; +var faWeibo = { prefix: 'fab', iconName: 'weibo', icon: [512, 512, [], "f18a", "M407 177.6c7.6-24-13.4-46.8-37.4-41.7-22 4.8-28.8-28.1-7.1-32.8 50.1-10.9 92.3 37.1 76.5 84.8-6.8 21.2-38.8 10.8-32-10.3zM214.8 446.7C108.5 446.7 0 395.3 0 310.4c0-44.3 28-95.4 76.3-143.7C176 67 279.5 65.8 249.9 161c-4 13.1 12.3 5.7 12.3 6 79.5-33.6 140.5-16.8 114 51.4-3.7 9.4 1.1 10.9 8.3 13.1 135.7 42.3 34.8 215.2-169.7 215.2zm143.7-146.3c-5.4-55.7-78.5-94-163.4-85.7-84.8 8.6-148.8 60.3-143.4 116s78.5 94 163.4 85.7c84.8-8.6 148.8-60.3 143.4-116zM347.9 35.1c-25.9 5.6-16.8 43.7 8.3 38.3 72.3-15.2 134.8 52.8 111.7 124-7.4 24.2 29.1 37 37.4 12 31.9-99.8-55.1-195.9-157.4-174.3zm-78.5 311c-17.1 38.8-66.8 60-109.1 46.3-40.8-13.1-58-53.4-40.3-89.7 17.7-35.4 63.1-55.4 103.4-45.1 42 10.8 63.1 50.2 46 88.5zm-86.3-30c-12.9-5.4-30 .3-38 12.9-8.3 12.9-4.3 28 8.6 34 13.1 6 30.8.3 39.1-12.9 8-13.1 3.7-28.3-9.7-34zm32.6-13.4c-5.1-1.7-11.4.6-14.3 5.4-2.9 5.1-1.4 10.6 3.7 12.9 5.1 2 11.7-.3 14.6-5.4 2.8-5.2 1.1-10.9-4-12.9z"] }; +var faWeixin = { prefix: 'fab', iconName: 'weixin', icon: [576, 512, [], "f1d7", "M385.2 167.6c6.4 0 12.6.3 18.8 1.1C387.4 90.3 303.3 32 207.7 32 100.5 32 13 104.8 13 197.4c0 53.4 29.3 97.5 77.9 131.6l-19.3 58.6 68-34.1c24.4 4.8 43.8 9.7 68.2 9.7 6.2 0 12.1-.3 18.3-.8-4-12.9-6.2-26.6-6.2-40.8-.1-84.9 72.9-154 165.3-154zm-104.5-52.9c14.5 0 24.2 9.7 24.2 24.4 0 14.5-9.7 24.2-24.2 24.2-14.8 0-29.3-9.7-29.3-24.2.1-14.7 14.6-24.4 29.3-24.4zm-136.4 48.6c-14.5 0-29.3-9.7-29.3-24.2 0-14.8 14.8-24.4 29.3-24.4 14.8 0 24.4 9.7 24.4 24.4 0 14.6-9.6 24.2-24.4 24.2zM563 319.4c0-77.9-77.9-141.3-165.4-141.3-92.7 0-165.4 63.4-165.4 141.3S305 460.7 397.6 460.7c19.3 0 38.9-5.1 58.6-9.9l53.4 29.3-14.8-48.6C534 402.1 563 363.2 563 319.4zm-219.1-24.5c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.8 0 24.4 9.7 24.4 19.3 0 10-9.7 19.6-24.4 19.6zm107.1 0c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.5 0 24.4 9.7 24.4 19.3.1 10-9.9 19.6-24.4 19.6z"] }; +var faWhatsapp = { prefix: 'fab', iconName: 'whatsapp', icon: [448, 512, [], "f232", "M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"] }; +var faWhatsappSquare = { prefix: 'fab', iconName: 'whatsapp-square', icon: [448, 512, [], "f40c", "M224 122.8c-72.7 0-131.8 59.1-131.9 131.8 0 24.9 7 49.2 20.2 70.1l3.1 5-13.3 48.6 49.9-13.1 4.8 2.9c20.2 12 43.4 18.4 67.1 18.4h.1c72.6 0 133.3-59.1 133.3-131.8 0-35.2-15.2-68.3-40.1-93.2-25-25-58-38.7-93.2-38.7zm77.5 188.4c-3.3 9.3-19.1 17.7-26.7 18.8-12.6 1.9-22.4.9-47.5-9.9-39.7-17.2-65.7-57.2-67.7-59.8-2-2.6-16.2-21.5-16.2-41s10.2-29.1 13.9-33.1c3.6-4 7.9-5 10.6-5 2.6 0 5.3 0 7.6.1 2.4.1 5.7-.9 8.9 6.8 3.3 7.9 11.2 27.4 12.2 29.4s1.7 4.3.3 6.9c-7.6 15.2-15.7 14.6-11.6 21.6 15.3 26.3 30.6 35.4 53.9 47.1 4 2 6.3 1.7 8.6-1 2.3-2.6 9.9-11.6 12.5-15.5 2.6-4 5.3-3.3 8.9-2 3.6 1.3 23.1 10.9 27.1 12.9s6.6 3 7.6 4.6c.9 1.9.9 9.9-2.4 19.1zM400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM223.9 413.2c-26.6 0-52.7-6.7-75.8-19.3L64 416l22.5-82.2c-13.9-24-21.2-51.3-21.2-79.3C65.4 167.1 136.5 96 223.9 96c42.4 0 82.2 16.5 112.2 46.5 29.9 30 47.9 69.8 47.9 112.2 0 87.4-72.7 158.5-160.1 158.5z"] }; +var faWhmcs = { prefix: 'fab', iconName: 'whmcs', icon: [448, 512, [], "f40d", "M448 161v-21.3l-28.5-8.8-2.2-10.4 20.1-20.7L427 80.4l-29 7.5-7.2-7.5 7.5-28.2-19.1-11.6-21.3 21-10.7-3.2-7-26.4h-22.6l-6.2 26.4-12.1 3.2-19.7-21-19.4 11 8.1 27.7-8.1 8.4-28.5-7.5-11 19.1 20.7 21-2.9 10.4-28.5 7.8-.3 21.7 28.8 7.5 2.4 12.1-20.1 19.9 10.4 18.5 29.6-7.5 7.2 8.6-8.1 26.9 19.9 11.6 19.4-20.4 11.6 2.9 6.7 28.5 22.6.3 6.7-28.8 11.6-3.5 20.7 21.6 20.4-12.1-8.8-28 7.8-8.1 28.8 8.8 10.3-20.1-20.9-18.8 2.2-12.1 29.1-7zm-119.2 45.2c-31.3 0-56.8-25.4-56.8-56.8s25.4-56.8 56.8-56.8 56.8 25.4 56.8 56.8c0 31.5-25.4 56.8-56.8 56.8zm72.3 16.4l46.9 14.5V277l-55.1 13.4-4.1 22.7 38.9 35.3-19.2 37.9-54-16.7-14.6 15.2 16.7 52.5-38.3 22.7-38.9-40.5-21.7 6.6-12.6 54-42.4-.5-12.6-53.6-21.7-5.6-36.4 38.4-37.4-21.7 15.2-50.5-13.7-16.1-55.5 14.1-19.7-34.8 37.9-37.4-4.8-22.8-54-14.1.5-40.9L54 219.9l5.7-19.7-38.9-39.4L41.5 125l53.6 14.1 15.2-15.7-15.2-52 36.4-20.7 36.8 39.4L191 84l11.6-52H245l11.6 45.9L234 72l-6.3-1.7-3.3 5.7-11 19.1-3.3 5.6 4.6 4.6 17.2 17.4-.3 1-23.8 6.5-6.2 1.7-.1 6.4-.2 12.9C153.8 161.6 118 204 118 254.7c0 58.3 47.3 105.7 105.7 105.7 50.5 0 92.7-35.4 103.2-82.8l13.2.2 6.9.1 1.6-6.7 5.6-24 1.9-.6 17.1 17.8 4.7 4.9 5.8-3.4 20.4-12.1 5.8-3.5-2-6.5-6.8-21.2z"] }; +var faWikipediaW = { prefix: 'fab', iconName: 'wikipedia-w', icon: [640, 512, [], "f266", "M640 51.2l-.3 12.2c-28.1.8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3.3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4.2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5.3v13.1c-19.4.6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4.3-3.6 0-10.3.3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5.8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1.2.5z"] }; +var faWindows = { prefix: 'fab', iconName: 'windows', icon: [448, 512, [], "f17a", "M0 93.7l183.6-25.3v177.4H0V93.7zm0 324.6l183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z"] }; +var faWolfPackBattalion = { prefix: 'fab', iconName: 'wolf-pack-battalion', icon: [456, 512, [], "f514", "M239.73 471.53l10.56 15.84 5.28-12.32 5.28 7.04V512c21.06-7.92 21.11-66.86 25.51-97.21 4.62-31.89-.88-92.81 81.37-149.11-8.88-23.61-12-49.43-2.64-80.05 27.87 3.34 53.94 10.58 63.34 54.1l-30.35 8.36c11.15 23.04 17.01 46.76 13.2 72.14L384 313.18l-6.16 33.43-18.47-7.04-8.8 33.43-19.35-7.04 26.39 21.11 8.8-28.15 24.63 5.28 7.04-35.63 26.39 14.52c.25-20.02 6.97-58.06-8.8-84.45l26.39 5.28c3.99-22.07-2.38-39.21-7.92-56.74l22.43 9.68c-.44-25.07-29.94-56.79-61.58-58.5-20.22-1.09-56.74-25.17-54.1-51.9 1.96-19.87 17.45-42.62 43.11-49.7-43.99 36.51-9.68 67.3 5.28 73.46 4.4-11.44 17.54-69.08 0-130.2-40.47 22.87-89.73 65.1-93.25 147.79l-58.06 38.71-3.52 93.25 107.33-59.82 7.04 7.04-17.59 3.52-43.99 38.71-15.84-5.28-28.15 49.26-3.52 119.64 21.11 15.84-32.55 15.84-32.55-15.84 21.11-15.84-3.52-119.64-28.15-49.26-15.84 5.28-43.99-38.71-17.59-3.52 7.04-7.04 107.33 59.82-3.52-93.25-58.06-38.71C157.03 65.1 107.77 22.87 67.3 0c-17.54 61.12-4.4 118.76 0 130.2 14.96-6.16 49.26-36.95 5.28-73.46 25.66 7.08 41.15 29.83 43.11 49.7 2.63 26.74-33.88 50.81-54.1 51.9C29.94 160.06.44 191.78 0 216.85l22.43-9.68c-5.54 17.53-11.91 34.67-7.92 56.74l26.39-5.28c-15.76 26.39-9.05 64.43-8.8 84.45l26.39-14.52 7.04 35.63 24.63-5.28 8.8 28.15 26.39-21.11-19.34 7.05-8.8-33.43-18.47 7.04-6.16-33.43-27.27 7.04c-3.82-25.38 2.05-49.1 13.2-72.14l-30.35-8.36c9.4-43.52 35.47-50.77 63.34-54.1 9.36 30.62 6.24 56.45-2.64 80.05 82.25 56.3 76.75 117.23 81.37 149.11 4.4 30.35 4.45 89.29 25.51 97.21v-29.91l5.28-7.04 5.28 12.32 10.56-15.84 11.44 21.11 11.43-21.1zm79.17-95.01l-15.84-10.56c7.47-4.36 13.76-8.42 19.35-12.32-.6 7.26-.27 13.88-3.51 22.88zm28.15-49.26c-.4 10.94-.9 21.66-1.76 31.67-7.85-1.86-15.57-3.8-21.11-7.04 8.24-7.9 15.55-16.27 22.87-24.63zm24.63 5.28c-.02-13.43-2.05-24.21-5.28-33.43-5.38 9.09-11.23 18.18-18.47 27.27l23.75 6.16zm3.52-80.94c19.44 12.81 27.8 33.66 29.91 56.3-12.32-4.53-24.63-9.31-36.95-10.56 5.06-11.99 6.65-28.14 7.04-45.74zm-1.76-45.74c.81 14.3 1.84 28.82 1.76 42.23 19.22-8.11 29.78-9.72 43.99-14.08-10.6-18.95-27.22-25.52-45.75-28.15zM137.68 376.52l15.84-10.56c-7.47-4.36-13.76-8.42-19.35-12.32.6 7.26.27 13.88 3.51 22.88zm-28.15-49.26c.4 10.94.9 21.66 1.76 31.67 7.85-1.86 15.57-3.8 21.11-7.04-8.24-7.9-15.55-16.27-22.87-24.63zm-24.64 5.28c.02-13.43 2.05-24.21 5.28-33.43 5.38 9.09 11.23 18.18 18.47 27.27l-23.75 6.16zm-3.52-80.94c-19.44 12.81-27.8 33.66-29.91 56.3 12.32-4.53 24.63-9.31 36.95-10.56-5.05-11.99-6.65-28.14-7.04-45.74zm1.76-45.74c-.81 14.3-1.84 28.82-1.76 42.23-19.22-8.11-29.78-9.72-43.99-14.08 10.61-18.95 27.22-25.52 45.75-28.15z"] }; +var faWordpress = { prefix: 'fab', iconName: 'wordpress', icon: [512, 512, [], "f19a", "M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z"] }; +var faWordpressSimple = { prefix: 'fab', iconName: 'wordpress-simple', icon: [512, 512, [], "f411", "M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8zM33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256zm223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6zm30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3-80.7-239.6zm81.4 297.2l68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7z"] }; +var faWpbeginner = { prefix: 'fab', iconName: 'wpbeginner', icon: [512, 512, [], "f297", "M462.799 322.374C519.01 386.682 466.961 480 370.944 480c-39.602 0-78.824-17.687-100.142-50.04-6.887.356-22.702.356-29.59 0C219.848 462.381 180.588 480 141.069 480c-95.49 0-148.348-92.996-91.855-157.626C-29.925 190.523 80.479 32 256.006 32c175.632 0 285.87 158.626 206.793 290.374zm-339.647-82.972h41.529v-58.075h-41.529v58.075zm217.18 86.072v-23.839c-60.506 20.915-132.355 9.198-187.589-33.971l.246 24.897c51.101 46.367 131.746 57.875 187.343 32.913zm-150.753-86.072h166.058v-58.075H189.579v58.075z"] }; +var faWpexplorer = { prefix: 'fab', iconName: 'wpexplorer', icon: [512, 512, [], "f2de", "M512 256c0 141.2-114.7 256-256 256C114.8 512 0 397.3 0 256S114.7 0 256 0s256 114.7 256 256zm-32 0c0-123.2-100.3-224-224-224C132.5 32 32 132.5 32 256s100.5 224 224 224 224-100.5 224-224zM160.9 124.6l86.9 37.1-37.1 86.9-86.9-37.1 37.1-86.9zm110 169.1l46.6 94h-14.6l-50-100-48.9 100h-14l51.1-106.9-22.3-9.4 6-14 68.6 29.1-6 14.3-16.5-7.1zm-11.8-116.3l68.6 29.4-29.4 68.3L230 246l29.1-68.6zm80.3 42.9l54.6 23.1-23.4 54.3-54.3-23.1 23.1-54.3z"] }; +var faWpforms = { prefix: 'fab', iconName: 'wpforms', icon: [448, 512, [], "f298", "M448 75.2v361.7c0 24.3-19 43.2-43.2 43.2H43.2C19.3 480 0 461.4 0 436.8V75.2C0 51.1 18.8 32 43.2 32h361.7c24 0 43.1 18.8 43.1 43.2zm-37.3 361.6V75.2c0-3-2.6-5.8-5.8-5.8h-9.3L285.3 144 224 94.1 162.8 144 52.5 69.3h-9.3c-3.2 0-5.8 2.8-5.8 5.8v361.7c0 3 2.6 5.8 5.8 5.8h361.7c3.2.1 5.8-2.7 5.8-5.8zM150.2 186v37H76.7v-37h73.5zm0 74.4v37.3H76.7v-37.3h73.5zm11.1-147.3l54-43.7H96.8l64.5 43.7zm210 72.9v37h-196v-37h196zm0 74.4v37.3h-196v-37.3h196zm-84.6-147.3l64.5-43.7H232.8l53.9 43.7zM371.3 335v37.3h-99.4V335h99.4z"] }; +var faXbox = { prefix: 'fab', iconName: 'xbox', icon: [512, 512, [], "f412", "M369.9 318.2c44.3 54.3 64.7 98.8 54.4 118.7-7.9 15.1-56.7 44.6-92.6 55.9-29.6 9.3-68.4 13.3-100.4 10.2-38.2-3.7-76.9-17.4-110.1-39C93.3 445.8 87 438.3 87 423.4c0-29.9 32.9-82.3 89.2-142.1 32-33.9 76.5-73.7 81.4-72.6 9.4 2.1 84.3 75.1 112.3 109.5zM188.6 143.8c-29.7-26.9-58.1-53.9-86.4-63.4-15.2-5.1-16.3-4.8-28.7 8.1-29.2 30.4-53.5 79.7-60.3 122.4-5.4 34.2-6.1 43.8-4.2 60.5 5.6 50.5 17.3 85.4 40.5 120.9 9.5 14.6 12.1 17.3 9.3 9.9-4.2-11-.3-37.5 9.5-64 14.3-39 53.9-112.9 120.3-194.4zm311.6 63.5C483.3 127.3 432.7 77 425.6 77c-7.3 0-24.2 6.5-36 13.9-23.3 14.5-41 31.4-64.3 52.8C367.7 197 427.5 283.1 448.2 346c6.8 20.7 9.7 41.1 7.4 52.3-1.7 8.5-1.7 8.5 1.4 4.6 6.1-7.7 19.9-31.3 25.4-43.5 7.4-16.2 15-40.2 18.6-58.7 4.3-22.5 3.9-70.8-.8-93.4zM141.3 43C189 40.5 251 77.5 255.6 78.4c.7.1 10.4-4.2 21.6-9.7 63.9-31.1 94-25.8 107.4-25.2-63.9-39.3-152.7-50-233.9-11.7-23.4 11.1-24 11.9-9.4 11.2z"] }; +var faXing = { prefix: 'fab', iconName: 'xing', icon: [384, 512, [], "f168", "M162.7 210c-1.8 3.3-25.2 44.4-70.1 123.5-4.9 8.3-10.8 12.5-17.7 12.5H9.8c-7.7 0-12.1-7.5-8.5-14.4l69-121.3c.2 0 .2-.1 0-.3l-43.9-75.6c-4.3-7.8.3-14.1 8.5-14.1H100c7.3 0 13.3 4.1 18 12.2l44.7 77.5zM382.6 46.1l-144 253v.3L330.2 466c3.9 7.1.2 14.1-8.5 14.1h-65.2c-7.6 0-13.6-4-18-12.2l-92.4-168.5c3.3-5.8 51.5-90.8 144.8-255.2 4.6-8.1 10.4-12.2 17.5-12.2h65.7c8 0 12.3 6.7 8.5 14.1z"] }; +var faXingSquare = { prefix: 'fab', iconName: 'xing-square', icon: [448, 512, [], "f169", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM140.4 320.2H93.8c-5.5 0-8.7-5.3-6-10.3l49.3-86.7c.1 0 .1-.1 0-.2l-31.4-54c-3-5.6.2-10.1 6-10.1h46.6c5.2 0 9.5 2.9 12.9 8.7l31.9 55.3c-1.3 2.3-18 31.7-50.1 88.2-3.5 6.2-7.7 9.1-12.6 9.1zm219.7-214.1L257.3 286.8v.2l65.5 119c2.8 5.1.1 10.1-6 10.1h-46.6c-5.5 0-9.7-2.9-12.9-8.7l-66-120.3c2.3-4.1 36.8-64.9 103.4-182.3 3.3-5.8 7.4-8.7 12.5-8.7h46.9c5.7-.1 8.8 4.7 6 10z"] }; +var faYCombinator = { prefix: 'fab', iconName: 'y-combinator', icon: [448, 512, [], "f23b", "M448 32v448H0V32h448zM236 287.5L313.5 142h-32.7L235 233c-4.7 9.3-9 18.3-12.8 26.8L210 233l-45.2-91h-35l76.7 143.8v94.5H236v-92.8z"] }; +var faYahoo = { prefix: 'fab', iconName: 'yahoo', icon: [448, 512, [], "f19e", "M252 292l4 220c-12.7-2.2-23.5-3.9-32.3-3.9-8.4 0-19.2 1.7-32.3 3.9l4-220C140.4 197.2 85 95.2 21.4 0c11.9 3.1 23 3.9 33.2 3.9 9 0 20.4-.8 34.1-3.9 40.9 72.2 82.1 138.7 135 225.5C261 163.9 314.8 81.4 358.6 0c11.1 2.9 22 3.9 32.9 3.9 11.5 0 23.2-1 35-3.9C392.1 47.9 294.9 216.9 252 292z"] }; +var faYandex = { prefix: 'fab', iconName: 'yandex', icon: [256, 512, [], "f413", "M153.1 315.8L65.7 512H2l96-209.8c-45.1-22.9-75.2-64.4-75.2-141.1C22.7 53.7 90.8 0 171.7 0H254v512h-55.1V315.8h-45.8zm45.8-269.3h-29.4c-44.4 0-87.4 29.4-87.4 114.6 0 82.3 39.4 108.8 87.4 108.8h29.4V46.5z"] }; +var faYandexInternational = { prefix: 'fab', iconName: 'yandex-international', icon: [320, 512, [], "f414", "M129.5 512V345.9L18.5 48h55.8l81.8 229.7L250.2 0h51.3L180.8 347.8V512h-51.3z"] }; +var faYelp = { prefix: 'fab', iconName: 'yelp', icon: [384, 512, [], "f1e9", "M136.9 328c-1 .3-109.2 35.7-115.8 35.7-15.2-.9-18.5-16.2-19.9-31.2-1.5-14.2-1.4-29.8.3-46.8 1.9-18.8 5.5-45.1 24.2-44 4.8 0 67.1 25.9 112.7 44.4 17.1 6.8 18.6 35.8-1.5 41.9zm57.9-113.9c1.8 38.2-25.5 48.5-47.2 14.3L41.3 60.4c-1.5-6.6.3-12.4 5.3-17.4C62.2 26.5 146 3.2 168.1 8.9c7.5 1.9 12.1 6.1 13.8 12.6 1.3 8.3 11.5 167.4 12.9 192.6zm-1.4 164.8c0 4.6.2 116.4-1.7 121.5-2.3 6-7 9.7-14.3 11.2-10.1 1.7-27.1-1.9-51-10.7-22-8.1-56.7-21.5-49.3-42.5 2.8-6.9 51.4-62.8 77.3-93.6 12-15.2 39.8-5.5 39 14.1zm180.2-117.8c-5.6 3.7-110.8 28.2-118.1 30.6l.3-.6c-18.1 4.7-35.4-18.5-23.3-34.6 3.7-3.7 65.9-92.4 72.8-97 5.2-3.6 11.3-3.8 18.3-.6 18.4 8.8 55.1 63.1 57.4 84.6-.1 2.9 1.2 11.7-7.4 17.6zm10.1 130.7c-2.7 20.6-44.5 73.4-63.8 81-6.9 2.6-12.9 2-17.7-2-5-3.5-61.8-97.1-64.9-102.3-10.9-16.2 6.8-39.8 25.6-33.2 0 0 110.5 35.7 114.7 39.4 5.2 4.1 7.2 9.8 6.1 17.1z"] }; +var faYoast = { prefix: 'fab', iconName: 'yoast', icon: [448, 512, [], "f2b1", "M91.3 76h186l-7 18.9h-179c-39.7 0-71.9 31.6-71.9 70.3v205.4c0 35.4 24.9 70.3 84 70.3V460H91.3C41.2 460 0 419.8 0 370.5V165.2C0 115.9 40.7 76 91.3 76zm229.1-56h66.5C243.1 398.1 241.2 418.9 202.2 459.3c-20.8 21.6-49.3 31.7-78.3 32.7v-51.1c49.2-7.7 64.6-49.9 64.6-75.3 0-20.1.6-12.6-82.1-223.2h61.4L218.2 299 320.4 20zM448 161.5V460H234c6.6-9.6 10.7-16.3 12.1-19.4h182.5V161.5c0-32.5-17.1-51.9-48.2-62.9l6.7-17.6c41.7 13.6 60.9 43.1 60.9 80.5z"] }; +var faYoutube = { prefix: 'fab', iconName: 'youtube', icon: [576, 512, [], "f167", "M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"] }; +var faYoutubeSquare = { prefix: 'fab', iconName: 'youtube-square', icon: [448, 512, [], "f431", "M186.8 202.1l95.2 54.1-95.2 54.1V202.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-42 176.3s0-59.6-7.6-88.2c-4.2-15.8-16.5-28.2-32.2-32.4C337.9 128 224 128 224 128s-113.9 0-142.2 7.7c-15.7 4.2-28 16.6-32.2 32.4-7.6 28.5-7.6 88.2-7.6 88.2s0 59.6 7.6 88.2c4.2 15.8 16.5 27.7 32.2 31.9C110.1 384 224 384 224 384s113.9 0 142.2-7.7c15.7-4.2 28-16.1 32.2-31.9 7.6-28.5 7.6-88.1 7.6-88.1z"] }; +var icons$1 = { + fa500px: fa500px, + faAccessibleIcon: faAccessibleIcon, + faAccusoft: faAccusoft, + faAdn: faAdn, + faAdversal: faAdversal, + faAffiliatetheme: faAffiliatetheme, + faAlgolia: faAlgolia, + faAmazon: faAmazon, + faAmazonPay: faAmazonPay, + faAmilia: faAmilia, + faAndroid: faAndroid, + faAngellist: faAngellist, + faAngrycreative: faAngrycreative, + faAngular: faAngular, + faAppStore: faAppStore, + faAppStoreIos: faAppStoreIos, + faApper: faApper, + faApple: faApple, + faApplePay: faApplePay, + faAsymmetrik: faAsymmetrik, + faAudible: faAudible, + faAutoprefixer: faAutoprefixer, + faAvianex: faAvianex, + faAviato: faAviato, + faAws: faAws, + faBandcamp: faBandcamp, + faBehance: faBehance, + faBehanceSquare: faBehanceSquare, + faBimobject: faBimobject, + faBitbucket: faBitbucket, + faBitcoin: faBitcoin, + faBity: faBity, + faBlackTie: faBlackTie, + faBlackberry: faBlackberry, + faBlogger: faBlogger, + faBloggerB: faBloggerB, + faBluetooth: faBluetooth, + faBluetoothB: faBluetoothB, + faBtc: faBtc, + faBuromobelexperte: faBuromobelexperte, + faBuysellads: faBuysellads, + faCcAmazonPay: faCcAmazonPay, + faCcAmex: faCcAmex, + faCcApplePay: faCcApplePay, + faCcDinersClub: faCcDinersClub, + faCcDiscover: faCcDiscover, + faCcJcb: faCcJcb, + faCcMastercard: faCcMastercard, + faCcPaypal: faCcPaypal, + faCcStripe: faCcStripe, + faCcVisa: faCcVisa, + faCentercode: faCentercode, + faChrome: faChrome, + faCloudscale: faCloudscale, + faCloudsmith: faCloudsmith, + faCloudversify: faCloudversify, + faCodepen: faCodepen, + faCodiepie: faCodiepie, + faConnectdevelop: faConnectdevelop, + faContao: faContao, + faCpanel: faCpanel, + faCreativeCommons: faCreativeCommons, + faCreativeCommonsBy: faCreativeCommonsBy, + faCreativeCommonsNc: faCreativeCommonsNc, + faCreativeCommonsNcEu: faCreativeCommonsNcEu, + faCreativeCommonsNcJp: faCreativeCommonsNcJp, + faCreativeCommonsNd: faCreativeCommonsNd, + faCreativeCommonsPd: faCreativeCommonsPd, + faCreativeCommonsPdAlt: faCreativeCommonsPdAlt, + faCreativeCommonsRemix: faCreativeCommonsRemix, + faCreativeCommonsSa: faCreativeCommonsSa, + faCreativeCommonsSampling: faCreativeCommonsSampling, + faCreativeCommonsSamplingPlus: faCreativeCommonsSamplingPlus, + faCreativeCommonsShare: faCreativeCommonsShare, + faCss3: faCss3, + faCss3Alt: faCss3Alt, + faCuttlefish: faCuttlefish, + faDAndD: faDAndD, + faDashcube: faDashcube, + faDelicious: faDelicious, + faDeploydog: faDeploydog, + faDeskpro: faDeskpro, + faDeviantart: faDeviantart, + faDigg: faDigg, + faDigitalOcean: faDigitalOcean, + faDiscord: faDiscord, + faDiscourse: faDiscourse, + faDochub: faDochub, + faDocker: faDocker, + faDraft2digital: faDraft2digital, + faDribbble: faDribbble, + faDribbbleSquare: faDribbbleSquare, + faDropbox: faDropbox, + faDrupal: faDrupal, + faDyalog: faDyalog, + faEarlybirds: faEarlybirds, + faEbay: faEbay, + faEdge: faEdge, + faElementor: faElementor, + faEmber: faEmber, + faEmpire: faEmpire, + faEnvira: faEnvira, + faErlang: faErlang, + faEthereum: faEthereum, + faEtsy: faEtsy, + faExpeditedssl: faExpeditedssl, + faFacebook: faFacebook, + faFacebookF: faFacebookF, + faFacebookMessenger: faFacebookMessenger, + faFacebookSquare: faFacebookSquare, + faFirefox: faFirefox, + faFirstOrder: faFirstOrder, + faFirstOrderAlt: faFirstOrderAlt, + faFirstdraft: faFirstdraft, + faFlickr: faFlickr, + faFlipboard: faFlipboard, + faFly: faFly, + faFontAwesome: faFontAwesome, + faFontAwesomeAlt: faFontAwesomeAlt, + faFontAwesomeFlag: faFontAwesomeFlag, + faFontAwesomeLogoFull: faFontAwesomeLogoFull, + faFonticons: faFonticons, + faFonticonsFi: faFonticonsFi, + faFortAwesome: faFortAwesome, + faFortAwesomeAlt: faFortAwesomeAlt, + faForumbee: faForumbee, + faFoursquare: faFoursquare, + faFreeCodeCamp: faFreeCodeCamp, + faFreebsd: faFreebsd, + faFulcrum: faFulcrum, + faGalacticRepublic: faGalacticRepublic, + faGalacticSenate: faGalacticSenate, + faGetPocket: faGetPocket, + faGg: faGg, + faGgCircle: faGgCircle, + faGit: faGit, + faGitSquare: faGitSquare, + faGithub: faGithub, + faGithubAlt: faGithubAlt, + faGithubSquare: faGithubSquare, + faGitkraken: faGitkraken, + faGitlab: faGitlab, + faGitter: faGitter, + faGlide: faGlide, + faGlideG: faGlideG, + faGofore: faGofore, + faGoodreads: faGoodreads, + faGoodreadsG: faGoodreadsG, + faGoogle: faGoogle, + faGoogleDrive: faGoogleDrive, + faGooglePlay: faGooglePlay, + faGooglePlus: faGooglePlus, + faGooglePlusG: faGooglePlusG, + faGooglePlusSquare: faGooglePlusSquare, + faGoogleWallet: faGoogleWallet, + faGratipay: faGratipay, + faGrav: faGrav, + faGripfire: faGripfire, + faGrunt: faGrunt, + faGulp: faGulp, + faHackerNews: faHackerNews, + faHackerNewsSquare: faHackerNewsSquare, + faHips: faHips, + faHireAHelper: faHireAHelper, + faHooli: faHooli, + faHotjar: faHotjar, + faHouzz: faHouzz, + faHtml5: faHtml5, + faHubspot: faHubspot, + faImdb: faImdb, + faInstagram: faInstagram, + faInternetExplorer: faInternetExplorer, + faIoxhost: faIoxhost, + faItunes: faItunes, + faItunesNote: faItunesNote, + faJava: faJava, + faJediOrder: faJediOrder, + faJenkins: faJenkins, + faJoget: faJoget, + faJoomla: faJoomla, + faJs: faJs, + faJsSquare: faJsSquare, + faJsfiddle: faJsfiddle, + faKeybase: faKeybase, + faKeycdn: faKeycdn, + faKickstarter: faKickstarter, + faKickstarterK: faKickstarterK, + faKorvue: faKorvue, + faLaravel: faLaravel, + faLastfm: faLastfm, + faLastfmSquare: faLastfmSquare, + faLeanpub: faLeanpub, + faLess: faLess, + faLine: faLine, + faLinkedin: faLinkedin, + faLinkedinIn: faLinkedinIn, + faLinode: faLinode, + faLinux: faLinux, + faLyft: faLyft, + faMagento: faMagento, + faMandalorian: faMandalorian, + faMastodon: faMastodon, + faMaxcdn: faMaxcdn, + faMedapps: faMedapps, + faMedium: faMedium, + faMediumM: faMediumM, + faMedrt: faMedrt, + faMeetup: faMeetup, + faMicrosoft: faMicrosoft, + faMix: faMix, + faMixcloud: faMixcloud, + faMizuni: faMizuni, + faModx: faModx, + faMonero: faMonero, + faNapster: faNapster, + faNintendoSwitch: faNintendoSwitch, + faNode: faNode, + faNodeJs: faNodeJs, + faNpm: faNpm, + faNs8: faNs8, + faNutritionix: faNutritionix, + faOdnoklassniki: faOdnoklassniki, + faOdnoklassnikiSquare: faOdnoklassnikiSquare, + faOldRepublic: faOldRepublic, + faOpencart: faOpencart, + faOpenid: faOpenid, + faOpera: faOpera, + faOptinMonster: faOptinMonster, + faOsi: faOsi, + faPage4: faPage4, + faPagelines: faPagelines, + faPalfed: faPalfed, + faPatreon: faPatreon, + faPaypal: faPaypal, + faPeriscope: faPeriscope, + faPhabricator: faPhabricator, + faPhoenixFramework: faPhoenixFramework, + faPhoenixSquadron: faPhoenixSquadron, + faPhp: faPhp, + faPiedPiper: faPiedPiper, + faPiedPiperAlt: faPiedPiperAlt, + faPiedPiperHat: faPiedPiperHat, + faPiedPiperPp: faPiedPiperPp, + faPinterest: faPinterest, + faPinterestP: faPinterestP, + faPinterestSquare: faPinterestSquare, + faPlaystation: faPlaystation, + faProductHunt: faProductHunt, + faPushed: faPushed, + faPython: faPython, + faQq: faQq, + faQuinscape: faQuinscape, + faQuora: faQuora, + faRProject: faRProject, + faRavelry: faRavelry, + faReact: faReact, + faReadme: faReadme, + faRebel: faRebel, + faRedRiver: faRedRiver, + faReddit: faReddit, + faRedditAlien: faRedditAlien, + faRedditSquare: faRedditSquare, + faRendact: faRendact, + faRenren: faRenren, + faReplyd: faReplyd, + faResearchgate: faResearchgate, + faResolving: faResolving, + faRocketchat: faRocketchat, + faRockrms: faRockrms, + faSafari: faSafari, + faSass: faSass, + faSchlix: faSchlix, + faScribd: faScribd, + faSearchengin: faSearchengin, + faSellcast: faSellcast, + faSellsy: faSellsy, + faServicestack: faServicestack, + faShirtsinbulk: faShirtsinbulk, + faSimplybuilt: faSimplybuilt, + faSistrix: faSistrix, + faSith: faSith, + faSkyatlas: faSkyatlas, + faSkype: faSkype, + faSlack: faSlack, + faSlackHash: faSlackHash, + faSlideshare: faSlideshare, + faSnapchat: faSnapchat, + faSnapchatGhost: faSnapchatGhost, + faSnapchatSquare: faSnapchatSquare, + faSoundcloud: faSoundcloud, + faSpeakap: faSpeakap, + faSpotify: faSpotify, + faStackExchange: faStackExchange, + faStackOverflow: faStackOverflow, + faStaylinked: faStaylinked, + faSteam: faSteam, + faSteamSquare: faSteamSquare, + faSteamSymbol: faSteamSymbol, + faStickerMule: faStickerMule, + faStrava: faStrava, + faStripe: faStripe, + faStripeS: faStripeS, + faStudiovinari: faStudiovinari, + faStumbleupon: faStumbleupon, + faStumbleuponCircle: faStumbleuponCircle, + faSuperpowers: faSuperpowers, + faSupple: faSupple, + faTeamspeak: faTeamspeak, + faTelegram: faTelegram, + faTelegramPlane: faTelegramPlane, + faTencentWeibo: faTencentWeibo, + faThemeisle: faThemeisle, + faTradeFederation: faTradeFederation, + faTrello: faTrello, + faTripadvisor: faTripadvisor, + faTumblr: faTumblr, + faTumblrSquare: faTumblrSquare, + faTwitch: faTwitch, + faTwitter: faTwitter, + faTwitterSquare: faTwitterSquare, + faTypo3: faTypo3, + faUber: faUber, + faUikit: faUikit, + faUniregistry: faUniregistry, + faUntappd: faUntappd, + faUsb: faUsb, + faUssunnah: faUssunnah, + faVaadin: faVaadin, + faViacoin: faViacoin, + faViadeo: faViadeo, + faViadeoSquare: faViadeoSquare, + faViber: faViber, + faVimeo: faVimeo, + faVimeoSquare: faVimeoSquare, + faVimeoV: faVimeoV, + faVine: faVine, + faVk: faVk, + faVnv: faVnv, + faVuejs: faVuejs, + faWeibo: faWeibo, + faWeixin: faWeixin, + faWhatsapp: faWhatsapp, + faWhatsappSquare: faWhatsappSquare, + faWhmcs: faWhmcs, + faWikipediaW: faWikipediaW, + faWindows: faWindows, + faWolfPackBattalion: faWolfPackBattalion, + faWordpress: faWordpress, + faWordpressSimple: faWordpressSimple, + faWpbeginner: faWpbeginner, + faWpexplorer: faWpexplorer, + faWpforms: faWpforms, + faXbox: faXbox, + faXing: faXing, + faXingSquare: faXingSquare, + faYCombinator: faYCombinator, + faYahoo: faYahoo, + faYandex: faYandex, + faYandexInternational: faYandexInternational, + faYelp: faYelp, + faYoast: faYoast, + faYoutube: faYoutube, + faYoutubeSquare: faYoutubeSquare +}; + +bunker(function () { + define('fab', icons$1); +}); + +exports['default'] = icons$1; +exports.prefix = prefix; +exports.fa500px = fa500px; +exports.faAccessibleIcon = faAccessibleIcon; +exports.faAccusoft = faAccusoft; +exports.faAdn = faAdn; +exports.faAdversal = faAdversal; +exports.faAffiliatetheme = faAffiliatetheme; +exports.faAlgolia = faAlgolia; +exports.faAmazon = faAmazon; +exports.faAmazonPay = faAmazonPay; +exports.faAmilia = faAmilia; +exports.faAndroid = faAndroid; +exports.faAngellist = faAngellist; +exports.faAngrycreative = faAngrycreative; +exports.faAngular = faAngular; +exports.faAppStore = faAppStore; +exports.faAppStoreIos = faAppStoreIos; +exports.faApper = faApper; +exports.faApple = faApple; +exports.faApplePay = faApplePay; +exports.faAsymmetrik = faAsymmetrik; +exports.faAudible = faAudible; +exports.faAutoprefixer = faAutoprefixer; +exports.faAvianex = faAvianex; +exports.faAviato = faAviato; +exports.faAws = faAws; +exports.faBandcamp = faBandcamp; +exports.faBehance = faBehance; +exports.faBehanceSquare = faBehanceSquare; +exports.faBimobject = faBimobject; +exports.faBitbucket = faBitbucket; +exports.faBitcoin = faBitcoin; +exports.faBity = faBity; +exports.faBlackTie = faBlackTie; +exports.faBlackberry = faBlackberry; +exports.faBlogger = faBlogger; +exports.faBloggerB = faBloggerB; +exports.faBluetooth = faBluetooth; +exports.faBluetoothB = faBluetoothB; +exports.faBtc = faBtc; +exports.faBuromobelexperte = faBuromobelexperte; +exports.faBuysellads = faBuysellads; +exports.faCcAmazonPay = faCcAmazonPay; +exports.faCcAmex = faCcAmex; +exports.faCcApplePay = faCcApplePay; +exports.faCcDinersClub = faCcDinersClub; +exports.faCcDiscover = faCcDiscover; +exports.faCcJcb = faCcJcb; +exports.faCcMastercard = faCcMastercard; +exports.faCcPaypal = faCcPaypal; +exports.faCcStripe = faCcStripe; +exports.faCcVisa = faCcVisa; +exports.faCentercode = faCentercode; +exports.faChrome = faChrome; +exports.faCloudscale = faCloudscale; +exports.faCloudsmith = faCloudsmith; +exports.faCloudversify = faCloudversify; +exports.faCodepen = faCodepen; +exports.faCodiepie = faCodiepie; +exports.faConnectdevelop = faConnectdevelop; +exports.faContao = faContao; +exports.faCpanel = faCpanel; +exports.faCreativeCommons = faCreativeCommons; +exports.faCreativeCommonsBy = faCreativeCommonsBy; +exports.faCreativeCommonsNc = faCreativeCommonsNc; +exports.faCreativeCommonsNcEu = faCreativeCommonsNcEu; +exports.faCreativeCommonsNcJp = faCreativeCommonsNcJp; +exports.faCreativeCommonsNd = faCreativeCommonsNd; +exports.faCreativeCommonsPd = faCreativeCommonsPd; +exports.faCreativeCommonsPdAlt = faCreativeCommonsPdAlt; +exports.faCreativeCommonsRemix = faCreativeCommonsRemix; +exports.faCreativeCommonsSa = faCreativeCommonsSa; +exports.faCreativeCommonsSampling = faCreativeCommonsSampling; +exports.faCreativeCommonsSamplingPlus = faCreativeCommonsSamplingPlus; +exports.faCreativeCommonsShare = faCreativeCommonsShare; +exports.faCss3 = faCss3; +exports.faCss3Alt = faCss3Alt; +exports.faCuttlefish = faCuttlefish; +exports.faDAndD = faDAndD; +exports.faDashcube = faDashcube; +exports.faDelicious = faDelicious; +exports.faDeploydog = faDeploydog; +exports.faDeskpro = faDeskpro; +exports.faDeviantart = faDeviantart; +exports.faDigg = faDigg; +exports.faDigitalOcean = faDigitalOcean; +exports.faDiscord = faDiscord; +exports.faDiscourse = faDiscourse; +exports.faDochub = faDochub; +exports.faDocker = faDocker; +exports.faDraft2digital = faDraft2digital; +exports.faDribbble = faDribbble; +exports.faDribbbleSquare = faDribbbleSquare; +exports.faDropbox = faDropbox; +exports.faDrupal = faDrupal; +exports.faDyalog = faDyalog; +exports.faEarlybirds = faEarlybirds; +exports.faEbay = faEbay; +exports.faEdge = faEdge; +exports.faElementor = faElementor; +exports.faEmber = faEmber; +exports.faEmpire = faEmpire; +exports.faEnvira = faEnvira; +exports.faErlang = faErlang; +exports.faEthereum = faEthereum; +exports.faEtsy = faEtsy; +exports.faExpeditedssl = faExpeditedssl; +exports.faFacebook = faFacebook; +exports.faFacebookF = faFacebookF; +exports.faFacebookMessenger = faFacebookMessenger; +exports.faFacebookSquare = faFacebookSquare; +exports.faFirefox = faFirefox; +exports.faFirstOrder = faFirstOrder; +exports.faFirstOrderAlt = faFirstOrderAlt; +exports.faFirstdraft = faFirstdraft; +exports.faFlickr = faFlickr; +exports.faFlipboard = faFlipboard; +exports.faFly = faFly; +exports.faFontAwesome = faFontAwesome; +exports.faFontAwesomeAlt = faFontAwesomeAlt; +exports.faFontAwesomeFlag = faFontAwesomeFlag; +exports.faFontAwesomeLogoFull = faFontAwesomeLogoFull; +exports.faFonticons = faFonticons; +exports.faFonticonsFi = faFonticonsFi; +exports.faFortAwesome = faFortAwesome; +exports.faFortAwesomeAlt = faFortAwesomeAlt; +exports.faForumbee = faForumbee; +exports.faFoursquare = faFoursquare; +exports.faFreeCodeCamp = faFreeCodeCamp; +exports.faFreebsd = faFreebsd; +exports.faFulcrum = faFulcrum; +exports.faGalacticRepublic = faGalacticRepublic; +exports.faGalacticSenate = faGalacticSenate; +exports.faGetPocket = faGetPocket; +exports.faGg = faGg; +exports.faGgCircle = faGgCircle; +exports.faGit = faGit; +exports.faGitSquare = faGitSquare; +exports.faGithub = faGithub; +exports.faGithubAlt = faGithubAlt; +exports.faGithubSquare = faGithubSquare; +exports.faGitkraken = faGitkraken; +exports.faGitlab = faGitlab; +exports.faGitter = faGitter; +exports.faGlide = faGlide; +exports.faGlideG = faGlideG; +exports.faGofore = faGofore; +exports.faGoodreads = faGoodreads; +exports.faGoodreadsG = faGoodreadsG; +exports.faGoogle = faGoogle; +exports.faGoogleDrive = faGoogleDrive; +exports.faGooglePlay = faGooglePlay; +exports.faGooglePlus = faGooglePlus; +exports.faGooglePlusG = faGooglePlusG; +exports.faGooglePlusSquare = faGooglePlusSquare; +exports.faGoogleWallet = faGoogleWallet; +exports.faGratipay = faGratipay; +exports.faGrav = faGrav; +exports.faGripfire = faGripfire; +exports.faGrunt = faGrunt; +exports.faGulp = faGulp; +exports.faHackerNews = faHackerNews; +exports.faHackerNewsSquare = faHackerNewsSquare; +exports.faHips = faHips; +exports.faHireAHelper = faHireAHelper; +exports.faHooli = faHooli; +exports.faHotjar = faHotjar; +exports.faHouzz = faHouzz; +exports.faHtml5 = faHtml5; +exports.faHubspot = faHubspot; +exports.faImdb = faImdb; +exports.faInstagram = faInstagram; +exports.faInternetExplorer = faInternetExplorer; +exports.faIoxhost = faIoxhost; +exports.faItunes = faItunes; +exports.faItunesNote = faItunesNote; +exports.faJava = faJava; +exports.faJediOrder = faJediOrder; +exports.faJenkins = faJenkins; +exports.faJoget = faJoget; +exports.faJoomla = faJoomla; +exports.faJs = faJs; +exports.faJsSquare = faJsSquare; +exports.faJsfiddle = faJsfiddle; +exports.faKeybase = faKeybase; +exports.faKeycdn = faKeycdn; +exports.faKickstarter = faKickstarter; +exports.faKickstarterK = faKickstarterK; +exports.faKorvue = faKorvue; +exports.faLaravel = faLaravel; +exports.faLastfm = faLastfm; +exports.faLastfmSquare = faLastfmSquare; +exports.faLeanpub = faLeanpub; +exports.faLess = faLess; +exports.faLine = faLine; +exports.faLinkedin = faLinkedin; +exports.faLinkedinIn = faLinkedinIn; +exports.faLinode = faLinode; +exports.faLinux = faLinux; +exports.faLyft = faLyft; +exports.faMagento = faMagento; +exports.faMandalorian = faMandalorian; +exports.faMastodon = faMastodon; +exports.faMaxcdn = faMaxcdn; +exports.faMedapps = faMedapps; +exports.faMedium = faMedium; +exports.faMediumM = faMediumM; +exports.faMedrt = faMedrt; +exports.faMeetup = faMeetup; +exports.faMicrosoft = faMicrosoft; +exports.faMix = faMix; +exports.faMixcloud = faMixcloud; +exports.faMizuni = faMizuni; +exports.faModx = faModx; +exports.faMonero = faMonero; +exports.faNapster = faNapster; +exports.faNintendoSwitch = faNintendoSwitch; +exports.faNode = faNode; +exports.faNodeJs = faNodeJs; +exports.faNpm = faNpm; +exports.faNs8 = faNs8; +exports.faNutritionix = faNutritionix; +exports.faOdnoklassniki = faOdnoklassniki; +exports.faOdnoklassnikiSquare = faOdnoklassnikiSquare; +exports.faOldRepublic = faOldRepublic; +exports.faOpencart = faOpencart; +exports.faOpenid = faOpenid; +exports.faOpera = faOpera; +exports.faOptinMonster = faOptinMonster; +exports.faOsi = faOsi; +exports.faPage4 = faPage4; +exports.faPagelines = faPagelines; +exports.faPalfed = faPalfed; +exports.faPatreon = faPatreon; +exports.faPaypal = faPaypal; +exports.faPeriscope = faPeriscope; +exports.faPhabricator = faPhabricator; +exports.faPhoenixFramework = faPhoenixFramework; +exports.faPhoenixSquadron = faPhoenixSquadron; +exports.faPhp = faPhp; +exports.faPiedPiper = faPiedPiper; +exports.faPiedPiperAlt = faPiedPiperAlt; +exports.faPiedPiperHat = faPiedPiperHat; +exports.faPiedPiperPp = faPiedPiperPp; +exports.faPinterest = faPinterest; +exports.faPinterestP = faPinterestP; +exports.faPinterestSquare = faPinterestSquare; +exports.faPlaystation = faPlaystation; +exports.faProductHunt = faProductHunt; +exports.faPushed = faPushed; +exports.faPython = faPython; +exports.faQq = faQq; +exports.faQuinscape = faQuinscape; +exports.faQuora = faQuora; +exports.faRProject = faRProject; +exports.faRavelry = faRavelry; +exports.faReact = faReact; +exports.faReadme = faReadme; +exports.faRebel = faRebel; +exports.faRedRiver = faRedRiver; +exports.faReddit = faReddit; +exports.faRedditAlien = faRedditAlien; +exports.faRedditSquare = faRedditSquare; +exports.faRendact = faRendact; +exports.faRenren = faRenren; +exports.faReplyd = faReplyd; +exports.faResearchgate = faResearchgate; +exports.faResolving = faResolving; +exports.faRocketchat = faRocketchat; +exports.faRockrms = faRockrms; +exports.faSafari = faSafari; +exports.faSass = faSass; +exports.faSchlix = faSchlix; +exports.faScribd = faScribd; +exports.faSearchengin = faSearchengin; +exports.faSellcast = faSellcast; +exports.faSellsy = faSellsy; +exports.faServicestack = faServicestack; +exports.faShirtsinbulk = faShirtsinbulk; +exports.faSimplybuilt = faSimplybuilt; +exports.faSistrix = faSistrix; +exports.faSith = faSith; +exports.faSkyatlas = faSkyatlas; +exports.faSkype = faSkype; +exports.faSlack = faSlack; +exports.faSlackHash = faSlackHash; +exports.faSlideshare = faSlideshare; +exports.faSnapchat = faSnapchat; +exports.faSnapchatGhost = faSnapchatGhost; +exports.faSnapchatSquare = faSnapchatSquare; +exports.faSoundcloud = faSoundcloud; +exports.faSpeakap = faSpeakap; +exports.faSpotify = faSpotify; +exports.faStackExchange = faStackExchange; +exports.faStackOverflow = faStackOverflow; +exports.faStaylinked = faStaylinked; +exports.faSteam = faSteam; +exports.faSteamSquare = faSteamSquare; +exports.faSteamSymbol = faSteamSymbol; +exports.faStickerMule = faStickerMule; +exports.faStrava = faStrava; +exports.faStripe = faStripe; +exports.faStripeS = faStripeS; +exports.faStudiovinari = faStudiovinari; +exports.faStumbleupon = faStumbleupon; +exports.faStumbleuponCircle = faStumbleuponCircle; +exports.faSuperpowers = faSuperpowers; +exports.faSupple = faSupple; +exports.faTeamspeak = faTeamspeak; +exports.faTelegram = faTelegram; +exports.faTelegramPlane = faTelegramPlane; +exports.faTencentWeibo = faTencentWeibo; +exports.faThemeisle = faThemeisle; +exports.faTradeFederation = faTradeFederation; +exports.faTrello = faTrello; +exports.faTripadvisor = faTripadvisor; +exports.faTumblr = faTumblr; +exports.faTumblrSquare = faTumblrSquare; +exports.faTwitch = faTwitch; +exports.faTwitter = faTwitter; +exports.faTwitterSquare = faTwitterSquare; +exports.faTypo3 = faTypo3; +exports.faUber = faUber; +exports.faUikit = faUikit; +exports.faUniregistry = faUniregistry; +exports.faUntappd = faUntappd; +exports.faUsb = faUsb; +exports.faUssunnah = faUssunnah; +exports.faVaadin = faVaadin; +exports.faViacoin = faViacoin; +exports.faViadeo = faViadeo; +exports.faViadeoSquare = faViadeoSquare; +exports.faViber = faViber; +exports.faVimeo = faVimeo; +exports.faVimeoSquare = faVimeoSquare; +exports.faVimeoV = faVimeoV; +exports.faVine = faVine; +exports.faVk = faVk; +exports.faVnv = faVnv; +exports.faVuejs = faVuejs; +exports.faWeibo = faWeibo; +exports.faWeixin = faWeixin; +exports.faWhatsapp = faWhatsapp; +exports.faWhatsappSquare = faWhatsappSquare; +exports.faWhmcs = faWhmcs; +exports.faWikipediaW = faWikipediaW; +exports.faWindows = faWindows; +exports.faWolfPackBattalion = faWolfPackBattalion; +exports.faWordpress = faWordpress; +exports.faWordpressSimple = faWordpressSimple; +exports.faWpbeginner = faWpbeginner; +exports.faWpexplorer = faWpexplorer; +exports.faWpforms = faWpforms; +exports.faXbox = faXbox; +exports.faXing = faXing; +exports.faXingSquare = faXingSquare; +exports.faYCombinator = faYCombinator; +exports.faYahoo = faYahoo; +exports.faYandex = faYandex; +exports.faYandexInternational = faYandexInternational; +exports.faYelp = faYelp; +exports.faYoast = faYoast; +exports.faYoutube = faYoutube; +exports.faYoutubeSquare = faYoutubeSquare; + +Object.defineProperty(exports, '__esModule', { value: true }); + +}))); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/package.json b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/package.json new file mode 100644 index 0000000000..853bd64f07 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/package.json @@ -0,0 +1,58 @@ +{ + "description": "The iconic font, CSS, and SVG framework", + "keywords": [ + "font", + "awesome", + "fontawesome", + "icon", + "svg", + "bootstrap" + ], + "homepage": "https://fontawesome.com", + "bugs": { + "url": "http://github.com/FortAwesome/Font-Awesome/issues" + }, + "author": { + "name": "Dave Gandy", + "email": "dave@fontawesome.com", + "web": "http://twitter.com/davegandy" + }, + "contributors": [ + { + "name": "Brian Talbot", + "web": "http://twitter.com/talbs" + }, + { + "name": "Travis Chase", + "web": "http://twitter.com/supercodepoet" + }, + { + "name": "Rob Madole", + "web": "http://twitter.com/robmadole" + }, + { + "name": "Geremia Taglialatela", + "web": "http://twitter.com/gtagliala" + }, + { + "name": "Mike Wilkerson", + "web": "http://twitter.com/mw77" + } + ], + "repository": { + "type": "git", + "url": "https://github.com/FortAwesome/Font-Awesome" + }, + "engines": { + "node": ">=6" + }, + "dependencies": { + "@fortawesome/fontawesome-common-types": "^0.1.7" + }, + "version": "5.0.13", + "name": "@fortawesome/fontawesome-free-brands", + "main": "index.js", + "module": "index.es.js", + "jsnext:main": "index.es.js", + "types": "./index.d.ts" +} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/shakable.es.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/shakable.es.js new file mode 100644 index 0000000000..42acc3f80b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/shakable.es.js @@ -0,0 +1,736 @@ +/*! + * Font Awesome Free 5.0.13 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +var prefix = "fab"; +var fa500px = { prefix: 'fab', iconName: '500px', icon: [448, 512, [], "f26e", "M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3.3-16 16.5-21.2 23.9l-.5.6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8zm63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2zM393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4zM213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6.2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6z"] }; +var faAccessibleIcon = { prefix: 'fab', iconName: 'accessible-icon', icon: [448, 512, [], "f368", "M423.9 255.8L411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7zm-64.9-154c28.1 0 50.9-22.8 50.9-50.9C409.9 22.8 387.1 0 359 0c-28.1 0-50.9 22.8-50.9 50.9 0 28.1 22.8 50.9 50.9 50.9zM179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3z"] }; +var faAccusoft = { prefix: 'fab', iconName: 'accusoft', icon: [640, 512, [], "f369", "M482.2 372.1C476.5 365.2 250 75 242.3 65.5c-13.7-17.2 0-16.8 19.2-16.9 9.7-.1 106.3-.6 116.5-.6 24.1-.1 28.7.6 38.4 12.8 2.1 2.7 205.1 245.8 207.2 248.3 5.5 6.7 15.2 19.1 7.2 23.4-2.4 1.3-114.6 47.7-117.8 48.9-10.1 4-17.5 6.8-30.8-9.3m114.7-5.6s-115 50.4-117.5 51.6c-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2-2.3-.3-24.6-4.7-38-7.2m-326-181.3s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3v-1l-51.2-65.8"] }; +var faAdn = { prefix: 'fab', iconName: 'adn', icon: [496, 512, [], "f170", "M248 167.5l64.9 98.8H183.1l64.9-98.8zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7h30.2z"] }; +var faAdversal = { prefix: 'fab', iconName: 'adversal', icon: [512, 512, [], "f36a", "M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2zM178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4.4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3zm286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7.4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9zm3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6.4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1.2-.1.3-.1.5zm-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2.4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1zm-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8z"] }; +var faAffiliatetheme = { prefix: 'fab', iconName: 'affiliatetheme', icon: [512, 512, [], "f36b", "M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2 29.1 21.6 11.1 96.6-40.2 167.5zm351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9.1-8.5-.3-16.8-1-25z"] }; +var faAlgolia = { prefix: 'fab', iconName: 'algolia', icon: [448, 512, [], "f36c", "M229.3 182.6c-49.3 0-89.2 39.9-89.2 89.2 0 49.3 39.9 89.2 89.2 89.2s89.2-39.9 89.2-89.2c0-49.3-40-89.2-89.2-89.2zm62.7 56.6l-58.9 30.6c-1.8.9-3.8-.4-3.8-2.3V201c0-1.5 1.3-2.7 2.7-2.6 26.2 1 48.9 15.7 61.1 37.1.7 1.3.2 3-1.1 3.7zM389.1 32H58.9C26.4 32 0 58.4 0 90.9V421c0 32.6 26.4 59 58.9 59H389c32.6 0 58.9-26.4 58.9-58.9V90.9C448 58.4 421.6 32 389.1 32zm-202.6 84.7c0-10.8 8.7-19.5 19.5-19.5h45.3c10.8 0 19.5 8.7 19.5 19.5v15.4c0 1.8-1.7 3-3.3 2.5-12.3-3.4-25.1-5.1-38.1-5.1-13.5 0-26.7 1.8-39.4 5.5-1.7.5-3.4-.8-3.4-2.5v-15.8zm-84.4 37l9.2-9.2c7.6-7.6 19.9-7.6 27.5 0l7.7 7.7c1.1 1.1 1 3-.3 4-6.2 4.5-12.1 9.4-17.6 14.9-5.4 5.4-10.4 11.3-14.8 17.4-1 1.3-2.9 1.5-4 .3l-7.7-7.7c-7.6-7.5-7.6-19.8 0-27.4zm127.2 244.8c-70 0-126.6-56.7-126.6-126.6s56.7-126.6 126.6-126.6c70 0 126.6 56.6 126.6 126.6 0 69.8-56.7 126.6-126.6 126.6z"] }; +var faAmazon = { prefix: 'fab', iconName: 'amazon', icon: [448, 512, [], "f270", "M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z"] }; +var faAmazonPay = { prefix: 'fab', iconName: 'amazon-pay', icon: [611, 512, [], "f42c", "M0 325.2c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7 40.7 20.4 83.2 35.6 127.4 46.3 20.9 5 41.9 9 63.2 11.8 31.5 4.2 63.2 6 95 5.2 17.4-.4 34.8-1.8 52.1-3.8 56.4-6.7 110.9-20.8 163.3-42.8 2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9-2.8 2.8-6.3 5.1-9.6 7.4-30.7 21.1-64.2 36.4-99.6 47.9-24.6 7.9-49.6 13.8-75.1 17.6-17.6 2.6-35.4 4.4-53.2 4.8-.8 0-1.7.2-2.5.3H294c-.8-.1-1.7-.3-2.5-.3-3.6-.2-7.2-.3-10.7-.4-16.9-.7-33.7-2.6-50.4-5.3-27.4-4.5-54.2-11.4-80.4-20.9-54.1-19.6-102.6-48.6-145.6-87-1.8-1.6-3-3.8-4.4-5.7v-2zM158 65c-1.4.2-2.9.4-4.3.6-14 1.7-26.6 6.9-38 15.1-2.4 1.7-4.6 3.5-7.1 5.4-.2-.5-.4-1-.4-1.4-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6H87.8c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3V215c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zm-47.4 41.9c0-1.5.4-2.4 1.7-3.3 13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9-1.2-.9-1.7-1.7-1.7-3.3.1-14.1 0-28.1 0-42.2 0-14 .1-28 0-42.1zM316.3 65c-1 .1-2 .3-2.9.4-9.8.5-19.4 1.7-28.9 4.1-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9 0 .4-.1.9-.2 1.4-.5-.1-.9 0-1.3-.1-10.5-2.5-21.1-4.3-32-4.9-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4.4-.4.9-.7 1.6-1.1.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0 2.7-.1 4.5-1.9 4.8-4.7.1-.9.1-1.9.1-2.8v-106c0-4.3-.2-8.6-.9-12.9-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1zm35 127.7c0 1.3-.4 2.2-1.5 3-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8-6.3-2.5-10.4-6.9-12.4-13.3s-2-13-.1-19.4c2.5-8.3 8.4-13 16.4-15.6 8.1-2.6 16.5-3 24.8-2.2 8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3-.1 4.7-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3-6.8-2.3-13.9-3.3-21-3.9-13.1-1.1-26.2-.5-39.2 1.9-14.3 2.7-27.9 7.3-40 15.6-1.4 1-2.8 2.1-3.7 3.5-.7 1.1-.9 2.8-.5 4 .4 1.5 2.1 1.9 3.6 1.8.7 0 1.5 0 2.2-.1 7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9 4.8.3 9.7 1.4 14.4 2.7 5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1-.4 1-.8 2-1 3-.5 2.9 1.2 4.8 4.1 4.1 1.7-.4 3.6-1.3 4.8-2.5 4.4-4.3 8.9-8.6 12.7-13.4 12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9v-17.3zM479.1 198.9c-12.9-35.7-25.8-71.5-38.7-107.2-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5.5 2.1 1.1 4.1 1.9 6.1 19.6 48.5 39.3 97.1 59.1 145.5 1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3-5.1 1.4-10.2 1.6-15.4 1.1-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8-.1 3.3-.1 6.6 0 9.9.1 5.5 2 8 7.4 8.9 5.6 1 11.3 1.9 16.9 2 17.1.4 30.7-6.5 39.5-21.4 3.5-5.9 6.7-12.1 9.2-18.4 23.7-59.8 47.1-119.7 70.6-179.6.7-1.8 1.3-3.6 1.6-5.5.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0-3.7 0-6.3 1.6-7.7 5.2-.5 1.4-1.1 2.7-1.6 4.1-11.6 33.3-23.2 66.6-34.8 100-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z"] }; +var faAmilia = { prefix: 'fab', iconName: 'amilia', icon: [448, 512, [], "f36d", "M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm-87.9 327.7c0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5V380c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7"] }; +var faAndroid = { prefix: 'fab', iconName: 'android', icon: [448, 512, [], "f17b", "M89.6 204.5v115.8c0 15.4-12.1 27.7-27.5 27.7-15.3 0-30.1-12.4-30.1-27.7V204.5c0-15.1 14.8-27.5 30.1-27.5 15.1 0 27.5 12.4 27.5 27.5zm10.8 157c0 16.4 13.2 29.6 29.6 29.6h19.9l.3 61.1c0 36.9 55.2 36.6 55.2 0v-61.1h37.2v61.1c0 36.7 55.5 36.8 55.5 0v-61.1h20.2c16.2 0 29.4-13.2 29.4-29.6V182.1H100.4v179.4zm248-189.1H99.3c0-42.8 25.6-80 63.6-99.4l-19.1-35.3c-2.8-4.9 4.3-8 6.7-3.8l19.4 35.6c34.9-15.5 75-14.7 108.3 0L297.5 34c2.5-4.3 9.5-1.1 6.7 3.8L285.1 73c37.7 19.4 63.3 56.6 63.3 99.4zm-170.7-55.5c0-5.7-4.6-10.5-10.5-10.5-5.7 0-10.2 4.8-10.2 10.5s4.6 10.5 10.2 10.5c5.9 0 10.5-4.8 10.5-10.5zm113.4 0c0-5.7-4.6-10.5-10.2-10.5-5.9 0-10.5 4.8-10.5 10.5s4.6 10.5 10.5 10.5c5.6 0 10.2-4.8 10.2-10.5zm94.8 60.1c-15.1 0-27.5 12.1-27.5 27.5v115.8c0 15.4 12.4 27.7 27.5 27.7 15.4 0 30.1-12.4 30.1-27.7V204.5c0-15.4-14.8-27.5-30.1-27.5z"] }; +var faAngellist = { prefix: 'fab', iconName: 'angellist', icon: [448, 512, [], "f209", "M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7zM311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6 33.1-93.7zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8zM140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7.1-7.7 12.7-21.1 20.4-21.1zm184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3.3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7.1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7zm-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1z"] }; +var faAngrycreative = { prefix: 'fab', iconName: 'angrycreative', icon: [640, 512, [], "f36e", "M640 238.2l-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4 93.1-6.2zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9-12.8 120zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3-126.2 7.7zm-44.3-70.2l-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7 2.7-29.8zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1zm21.1 70.8l5.8-60c-5 13.5-14.7 21.1-27.9 26.6l22.1 33.4zm135.4-45l-7.9-37.8-15.8 39.3 23.7-1.5zm-170.1-74.6l-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8.3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2-56.8 3.7zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1.6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2l-2.9 28.8zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3zm-201.3 8.2l23.8-1.6-8.3-37.6-15.5 39.2z"] }; +var faAngular = { prefix: 'fab', iconName: 'angular', icon: [415, 512, [], "f420", "M169.7 268.1h76.2l-38.1-91.6-38.1 91.6zM207.8 32L0 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7L207.8 32zM338 373.8h-48.6l-26.2-65.4H152.6l-26.2 65.4H77.7L207.8 81.5 338 373.8z"] }; +var faAppStore = { prefix: 'fab', iconName: 'app-store', icon: [512, 512, [], "f36f", "M255.9 120.9l9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5 9.8 5.6 13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4 0-11.3 9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5l8.9 15.7zm-78.7 218l-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5-9.8-5.6-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6zm168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4 0 11.3-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216z"] }; +var faAppStoreIos = { prefix: 'fab', iconName: 'app-store-ios', icon: [448, 512, [], "f370", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7c16.1-4.9 29.3-1.1 39.6 11.4L127 384.5zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40zm98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20z"] }; +var faApper = { prefix: 'fab', iconName: 'apper', icon: [640, 512, [], "f371", "M42.1 239.1c22.2 0 29 2.8 33.5 14.6h.8v-22.9c0-11.3-4.8-15.4-17.9-15.4-11.3 0-14.4 2.5-15.1 12.8H4.8c.3-13.9 1.5-19.1 5.8-24.4C17.9 195 29.5 192 56.7 192c33 0 47.1 5 53.9 18.9 2 4.3 4 15.6 4 23.7v76.3H76.3l1.3-19.1h-1c-5.3 15.6-13.6 20.4-35.5 20.4-30.3 0-41.1-10.1-41.1-37.3 0-25.2 12.3-35.8 42.1-35.8zm17.1 48.1c13.1 0 16.9-3 16.9-13.4 0-9.1-4.3-11.6-19.6-11.6-13.1 0-17.9 3-17.9 12.1-.1 10.4 3.7 12.9 20.6 12.9zm77.8-94.9h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.2 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3H137v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm57.9-60.7h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.3 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3h-39.5v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm53.8-3.8c0-25.4 3.3-37.8 12.3-45.8 8.8-8.1 22.2-11.3 45.1-11.3 42.8 0 55.7 12.8 55.7 55.7v11.1h-75.3c-.3 2-.3 4-.3 4.8 0 16.9 4.5 21.9 20.1 21.9 13.9 0 17.9-3 17.9-13.9h37.5v2.3c0 9.8-2.5 18.9-6.8 24.7-7.3 9.8-19.6 13.6-44.3 13.6-27.5 0-41.6-3.3-50.6-12.3-8.5-8.5-11.3-21.3-11.3-50.8zm76.4-11.6c-.3-1.8-.3-3.3-.3-3.8 0-12.3-3.3-14.6-19.6-14.6-14.4 0-17.1 3-18.1 15.1l-.3 3.3h38.3zm55.6-45.3h38.3l-1.8 19.9h.7c6.8-14.9 14.4-20.2 29.7-20.2 10.8 0 19.1 3.3 23.4 9.3 5.3 7.3 6.8 14.4 6.8 34 0 1.5 0 5 .2 9.3h-35c.3-1.8.3-3.3.3-4 0-15.4-2-19.4-10.3-19.4-6.3 0-10.8 3.3-13.1 9.3-1 3-1 4.3-1 12.3v68h-38.3V192.3z"] }; +var faApple = { prefix: 'fab', iconName: 'apple', icon: [376, 512, [], "f179", "M314.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C59.3 141.2 0 184.8 0 273.5c0 26.2 4.8 53.3 14.4 81.2 12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z"] }; +var faApplePay = { prefix: 'fab', iconName: 'apple-pay', icon: [640, 512, [], "f415", "M116.9 158.5c-7.5 8.9-19.5 15.9-31.5 14.9-1.5-12 4.4-24.8 11.3-32.6 7.5-9.1 20.6-15.6 31.3-16.1 1.2 12.4-3.7 24.7-11.1 33.8m10.9 17.2c-17.4-1-32.3 9.9-40.5 9.9-8.4 0-21-9.4-34.8-9.1-17.9.3-34.5 10.4-43.6 26.5-18.8 32.3-4.9 80 13.3 106.3 8.9 13 19.5 27.3 33.5 26.8 13.3-.5 18.5-8.6 34.5-8.6 16.1 0 20.8 8.6 34.8 8.4 14.5-.3 23.6-13 32.5-26 10.1-14.8 14.3-29.1 14.5-29.9-.3-.3-28-10.9-28.3-42.9-.3-26.8 21.9-39.5 22.9-40.3-12.5-18.6-32-20.6-38.8-21.1m100.4-36.2v194.9h30.3v-66.6h41.9c38.3 0 65.1-26.3 65.1-64.3s-26.4-64-64.1-64h-73.2zm30.3 25.5h34.9c26.3 0 41.3 14 41.3 38.6s-15 38.8-41.4 38.8h-34.8V165zm162.2 170.9c19 0 36.6-9.6 44.6-24.9h.6v23.4h28v-97c0-28.1-22.5-46.3-57.1-46.3-32.1 0-55.9 18.4-56.8 43.6h27.3c2.3-12 13.4-19.9 28.6-19.9 18.5 0 28.9 8.6 28.9 24.5v10.8l-37.8 2.3c-35.1 2.1-54.1 16.5-54.1 41.5.1 25.2 19.7 42 47.8 42zm8.2-23.1c-16.1 0-26.4-7.8-26.4-19.6 0-12.3 9.9-19.4 28.8-20.5l33.6-2.1v11c0 18.2-15.5 31.2-36 31.2zm102.5 74.6c29.5 0 43.4-11.3 55.5-45.4L640 193h-30.8l-35.6 115.1h-.6L537.4 193h-31.6L557 334.9l-2.8 8.6c-4.6 14.6-12.1 20.3-25.5 20.3-2.4 0-7-.3-8.9-.5v23.4c1.8.4 9.3.7 11.6.7z"] }; +var faAsymmetrik = { prefix: 'fab', iconName: 'asymmetrik', icon: [576, 512, [], "f372", "M517.5 309.2c38.8-40 58.1-80 58.5-116.1.8-65.5-59.4-118.2-169.4-135C277.9 38.4 118.1 73.6 0 140.5 52 114 110.6 92.3 170.7 82.3c74.5-20.5 153-25.4 221.3-14.8C544.5 91.3 588.8 195 490.8 299.2c-10.2 10.8-22 21.1-35 30.6L304.9 103.4 114.7 388.9c-65.6-29.4-76.5-90.2-19.1-151.2 20.8-22.2 48.3-41.9 79.5-58.1 20-12.2 39.7-22.6 62-30.7-65.1 20.3-122.7 52.9-161.6 92.9-27.7 28.6-41.4 57.1-41.7 82.9-.5 35.1 23.4 65.1 68.4 83l-34.5 51.7h101.6l22-34.4c22.2 1 45.3 0 68.6-2.7l-22.8 37.1h135.5L340 406.3c18.6-5.3 36.9-11.5 54.5-18.7l45.9 71.8H542L468.6 349c18.5-12.1 35-25.5 48.9-39.8zm-187.6 80.5l-25-40.6-32.7 53.3c-23.4 3.5-46.7 5.1-69.2 4.4l101.9-159.3 78.7 123c-17.2 7.4-35.3 13.9-53.7 19.2z"] }; +var faAudible = { prefix: 'fab', iconName: 'audible', icon: [640, 512, [], "f373", "M640 199.9v54l-320 200L0 254v-54l320 200 320-200.1zm-194.5 72l47.1-29.4c-37.2-55.8-100.7-92.6-172.7-92.6-72 0-135.5 36.7-172.6 92.4h.3c2.5-2.3 5.1-4.5 7.7-6.7 89.7-74.4 219.4-58.1 290.2 36.3zm-220.1 18.8c16.9-11.9 36.5-18.7 57.4-18.7 34.4 0 65.2 18.4 86.4 47.6l45.4-28.4c-20.9-29.9-55.6-49.5-94.8-49.5-38.9 0-73.4 19.4-94.4 49zM103.6 161.1c131.8-104.3 318.2-76.4 417.5 62.1l.7 1 48.8-30.4C517.1 112.1 424.8 58.1 319.9 58.1c-103.5 0-196.6 53.5-250.5 135.6 9.9-10.5 22.7-23.5 34.2-32.6zm467 32.7z"] }; +var faAutoprefixer = { prefix: 'fab', iconName: 'autoprefixer', icon: [640, 512, [], "f41c", "M318.4 16l-161 480h77.5l25.4-81.4h119.5L405 496h77.5L318.4 16zm-40.3 341.9l41.2-130.4h1.5l40.9 130.4h-83.6zM640 405l-10-31.4L462.1 358l19.4 56.5L640 405zm-462.1-47L10 373.7 0 405l158.5 9.4 19.4-56.4z"] }; +var faAvianex = { prefix: 'fab', iconName: 'avianex', icon: [512, 512, [], "f374", "M453.1 32h-312c-38.9 0-76.2 31.2-83.3 69.7L1.2 410.3C-5.9 448.8 19.9 480 58.9 480h312c38.9 0 76.2-31.2 83.3-69.7l56.7-308.5c7-38.6-18.8-69.8-57.8-69.8zm-58.2 347.3l-32 13.5-115.4-110c-14.7 10-29.2 19.5-41.7 27.1l22.1 64.2-17.9 12.7-40.6-61-52.4-48.1 15.7-15.4 58 31.1c9.3-10.5 20.8-22.6 32.8-34.9L203 228.9l-68.8-99.8 18.8-28.9 8.9-4.8L265 207.8l4.9 4.5c19.4-18.8 33.8-32.4 33.8-32.4 7.7-6.5 21.5-2.9 30.7 7.9 9 10.5 10.6 24.7 2.7 31.3-1.8 1.3-15.5 11.4-35.3 25.6l4.5 7.3 94.9 119.4-6.3 7.9z"] }; +var faAviato = { prefix: 'fab', iconName: 'aviato', icon: [640, 512, [], "f421", "M107.2 283.5l-19-41.8H36.1l-19 41.8H0l62.2-131.4 62.2 131.4h-17.2zm-45-98.1l-19.6 42.5h39.2l-19.6-42.5zm112.7 102.4l-62.2-131.4h17.1l45.1 96 45.1-96h17l-62.1 131.4zm80.6-4.3V156.4H271v127.1h-15.5zm209.1-115.6v115.6h-17.3V167.9h-41.2v-11.5h99.6v11.5h-41.1zM640 218.8c0 9.2-1.7 17.8-5.1 25.8-3.4 8-8.2 15.1-14.2 21.1-6 6-13.1 10.8-21.1 14.2-8 3.4-16.6 5.1-25.8 5.1s-17.8-1.7-25.8-5.1c-8-3.4-15.1-8.2-21.1-14.2-6-6-10.8-13-14.2-21.1-3.4-8-5.1-16.6-5.1-25.8s1.7-17.8 5.1-25.8c3.4-8 8.2-15.1 14.2-21.1 6-6 13-8.4 21.1-11.9 8-3.4 16.6-5.1 25.8-5.1s17.8 1.7 25.8 5.1c8 3.4 15.1 5.8 21.1 11.9 6 6 10.7 13.1 14.2 21.1 3.4 8 5.1 16.6 5.1 25.8zm-15.5 0c0-7.3-1.3-14-3.9-20.3-2.6-6.3-6.2-11.7-10.8-16.3-4.6-4.6-10-8.2-16.2-10.9-6.2-2.7-12.8-4-19.8-4s-13.6 1.3-19.8 4c-6.2 2.7-11.6 6.3-16.2 10.9-4.6 4.6-8.2 10-10.8 16.3-2.6 6.3-3.9 13.1-3.9 20.3 0 7.3 1.3 14 3.9 20.3 2.6 6.3 6.2 11.7 10.8 16.3 4.6 4.6 10 8.2 16.2 10.9 6.2 2.7 12.8 4 19.8 4s13.6-1.3 19.8-4c6.2-2.7 11.6-6.3 16.2-10.9 4.6-4.6 8.2-10 10.8-16.3 2.6-6.3 3.9-13.1 3.9-20.3zm-94.8 96.7v-6.3l88.9-10-242.9 13.4c.6-2.2 1.1-4.6 1.4-7.2.3-2 .5-4.2.6-6.5l64.8-8.1-64.9 1.9c0-.4-.1-.7-.1-1.1-2.8-17.2-25.5-23.7-25.5-23.7l-1.1-26.3h23.8l19 41.8h17.1L348.6 152l-62.2 131.4h17.1l19-41.8h23.6L345 268s-22.7 6.5-25.5 23.7c-.1.3-.1.7-.1 1.1l-64.9-1.9 64.8 8.1c.1 2.3.3 4.4.6 6.5.3 2.6.8 5 1.4 7.2L78.4 299.2l88.9 10v6.3c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4 0-6.2-4.6-11.3-10.5-12.2v-5.8l80.3 9v5.4c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-4.9l28.4 3.2v23.7h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9V323l38.3 4.3c8.1 11.4 19 13.6 19 13.6l-.1 6.7-5.1.2-.1 12.1h4.1l.1-5h5.2l.1 5h4.1l-.1-12.1-5.1-.2-.1-6.7s10.9-2.1 19-13.6l38.3-4.3v23.2h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9v-23.7l28.4-3.2v4.9c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-5.4l80.3-9v5.8c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4-.2-6.3-4.7-11.4-10.7-12.3zm-200.8-87.6l19.6-42.5 19.6 42.5h-17.9l-1.7-40.3-1.7 40.3h-17.9z"] }; +var faAws = { prefix: 'fab', iconName: 'aws', icon: [512, 512, [], "f375", "M261.2 136.1c-14 57.5-13.1 54.4-25.8 107-1.6 6.5-4.1 8.4-10.7 8.5h-14.4c-5.8-.1-8.2-1.6-9.9-7.3-12.3-39.4-28.8-94.1-39.9-130.7-4.1-13.5-1.4-13.2 9.3-12.9 3.7.1 7.3 0 11 0 5.1.1 7.7 2 9.1 7.1 3.6 12.9 6 22.8 26.6 104.1.4 1.6.9 3.1 1.4 4.6h1.1c.5-2 1.1-3.9 1.6-5.9 7.8-32.9 15.5-65.9 23.3-98.8 2.4-10.2 6.7-11.2 17-11.2h7.6c6.9.1 9 1.5 10.7 8.3 6 23.4 23.5 101.8 26.7 110.4 5.1-18.3-1.8 7.9 28.5-109 2.1-8.1 4.1-9.7 12.3-9.7h12.7c5.4.1 7 1.8 5.7 7.1-2.4 9.5-2.9 9.9-41.3 132.9-3.1 9.9-4.2 10.8-14.6 10.8h-10.6c-7.3 0-9.2-1.3-11-8.4-4.3-16.2-23.3-95.7-26.4-106.9zM125.4 247.3c4.2 5.8 8.1 6.3 14.1 2.4l6.3-4.2c6.8-4.5 7.3-6.3 3.6-13.5-4.3-8.4-6.4-17.3-6.3-26.9 0-3.1.6-55.7-.9-66.8-2.7-19.3-12.5-32.8-31.7-38.7-10.7-3.4-21.7-3.3-32.7-3-15.1.4-29.4 4.6-42.8 11.4-1.8.9-3.7 3.1-4.1 4.9-.8 3.9-1.1 8.1-.7 12.1.6 5.9 2.6 7 8.2 5.1 5.1-1.7 10-3.9 15.1-5.4 14.5-4.4 29.2-6.4 44.1-1.7 7.1 2.2 11.7 6.9 14.3 13.8 3 7.9 2.4 16.1 2.4 24.2 0 5.5-.1 5.5-5.5 4.5-13.9-2.6-27.7-5-41.9-3.1-15.2 2.1-28.6 7.3-38.2 20-9.1 12-10 25.6-7.4 39.5 2.8 15 11.8 25.7 26.4 30.4 20.6 6.7 40.1 3.3 57.7-9.5 3.8-2.8 7.2-6.2 11.1-9.5 3.1 5 5.8 9.7 8.9 14zm-15.3-61.6c3 .4 4.5 1.9 4.3 5.1-.2 3.8.1 7.6-.3 11.4-1.2 11.7-7.7 19.7-17.9 24.9-8.2 4.2-16.9 5.8-26.1 5-15.2-1.3-21-13.1-19.6-26.3C51.8 193.2 59 186.2 72 184c13.8-2.4 16-1.1 38.1 1.7zm348.8 65.1c21.3-8.6 32.9-26.2 29.2-50-2.2-14.6-11.8-24.2-25.2-29.5-14.7-5.9-33.8-10.3-48.1-18.2-4.4-2.4-7.4-6.3-7.6-11.9-.4-11.1 4.2-17.2 15.4-19.8 9.3-2.1 18.8-2.2 28.1-.4 7.3 1.4 14.3 4.2 21.4 6.3 2.8.9 5.9 2.1 7.8-1.6 3.8-7.3.4-18.7-7.3-21.8-22.5-9-45.5-11.6-68.2-1.6-14.6 6.4-24.6 17.4-26 34.2-1.6 19.3 6.9 33.4 24.1 41.7 7.7 3.7 16.1 5.9 24.2 8.9 8.1 3 16.2 5.8 24.1 9.1 12.3 5.3 11.6 24.2 1.2 30-27.7 15.3-64.9-2.4-69.2-3.8-3.3-1.1-5.3.2-6.3 3.7-3 11.3.7 18.8 11.6 22.7 21.7 7.9 49.6 10.5 70.8 2zM296 413.5c50.8-5.8 98.7-20.8 142.7-47 8-4.7 15.5-10.3 23.1-15.7 7.3-5.2 3.2-18.4-11.3-12.2-54.4 23.2-111.2 36.1-170.2 38.9-30.5 1.5-60.8-.3-91.1-4.7-63.1-9.2-122.4-29.2-177.6-61.2-2.1-1.2-4.2-2.5-6.5-3-4.9-1.1-7.7 4.7-2.4 9.7 24 22.1 50.3 40.8 79.1 55.7 53.7 27.7 110.5 42.7 171.2 42 14.4-.8 28.8-.9 43-2.5zm174.7-92.2c14.8.8 19.4 5.9 15.7 20.2-3.8 14.8-9.3 29.2-13.9 43.8-.9 2.9-4.2 6.3-.8 8.8 3.7 2.6 6.5-1 9-3.3 10.2-9.5 17.4-21 22.5-33.8 5.4-13.4 9.3-27.2 8.7-41.9-.2-6.2-1.8-8.8-7.8-10.5-5.4-1.5-11-2.8-16.5-3.2-21.6-1.8-42.5.5-62 10.6-3.1 1.6-6 3.7-8.7 5.9-1.1.9-3.2 5.3 2.4 6.1 1.9.3 3.9-.1 5.9-.3 16.9-1.6 28.6-3.3 45.5-2.4z"] }; +var faBandcamp = { prefix: 'fab', iconName: 'bandcamp', icon: [496, 512, [], "f2d5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm48.2 326.1h-181L199.9 178h181l-84.7 156.1z"] }; +var faBehance = { prefix: 'fab', iconName: 'behance', icon: [576, 512, [], "f1b4", "M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z"] }; +var faBehanceSquare = { prefix: 'fab', iconName: 'behance-square', icon: [448, 512, [], "f1b5", "M186.5 293c0 19.3-14 25.4-31.2 25.4h-45.1v-52.9h46c18.6.1 30.3 7.8 30.3 27.5zm-7.7-82.3c0-17.7-13.7-21.9-28.9-21.9h-39.6v44.8H153c15.1 0 25.8-6.6 25.8-22.9zm132.3 23.2c-18.3 0-30.5 11.4-31.7 29.7h62.2c-1.7-18.5-11.3-29.7-30.5-29.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM271.7 185h77.8v-18.9h-77.8V185zm-43 110.3c0-24.1-11.4-44.9-35-51.6 17.2-8.2 26.2-17.7 26.2-37 0-38.2-28.5-47.5-61.4-47.5H68v192h93.1c34.9-.2 67.6-16.9 67.6-55.9zM380 280.5c0-41.1-24.1-75.4-67.6-75.4-42.4 0-71.1 31.8-71.1 73.6 0 43.3 27.3 73 71.1 73 33.2 0 54.7-14.9 65.1-46.8h-33.7c-3.7 11.9-18.6 18.1-30.2 18.1-22.4 0-34.1-13.1-34.1-35.3h100.2c.1-2.3.3-4.8.3-7.2z"] }; +var faBimobject = { prefix: 'fab', iconName: 'bimobject', icon: [448, 512, [], "f378", "M416 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm-64 257.4c0 49.4-11.4 82.6-103.8 82.6h-16.9c-44.1 0-62.4-14.9-70.4-38.8h-.9V368H96V136h64v74.7h1.1c4.6-30.5 39.7-38.8 69.7-38.8h17.3c92.4 0 103.8 33.1 103.8 82.5v35zm-64-28.9v22.9c0 21.7-3.4 33.8-38.4 33.8h-45.3c-28.9 0-44.1-6.5-44.1-35.7v-19c0-29.3 15.2-35.7 44.1-35.7h45.3c35-.2 38.4 12 38.4 33.7z"] }; +var faBitbucket = { prefix: 'fab', iconName: 'bitbucket', icon: [512, 512, [], "f171", "M23.1 32C14.2 31.9 7 38.9 6.9 47.8c0 .9.1 1.8.2 2.8L74.9 462c1.7 10.4 10.7 18 21.2 18.1h325.1c7.9.1 14.7-5.6 16-13.4l67.8-416c1.4-8.7-4.5-16.9-13.2-18.3-.9-.1-1.8-.2-2.8-.2L23.1 32zm285.3 297.3H204.6l-28.1-146.8h157l-25.1 146.8z"] }; +var faBitcoin = { prefix: 'fab', iconName: 'bitcoin', icon: [512, 512, [], "f379", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z"] }; +var faBity = { prefix: 'fab', iconName: 'bity', icon: [496, 512, [], "f37a", "M78.4 67.2C173.8-22 324.5-24 421.5 71c14.3 14.1-6.4 37.1-22.4 21.5-84.8-82.4-215.8-80.3-298.9-3.2-16.3 15.1-36.5-8.3-21.8-22.1zm98.9 418.6c19.3 5.7 29.3-23.6 7.9-30C73 421.9 9.4 306.1 37.7 194.8c5-19.6-24.9-28.1-30.2-7.1-32.1 127.4 41.1 259.8 169.8 298.1zm148.1-2c121.9-40.2 192.9-166.9 164.4-291-4.5-19.7-34.9-13.8-30 7.9 24.2 107.7-37.1 217.9-143.2 253.4-21.2 7-10.4 36 8.8 29.7zm-62.9-79l.2-71.8c0-8.2-6.6-14.8-14.8-14.8-8.2 0-14.8 6.7-14.8 14.8l-.2 71.8c0 8.2 6.6 14.8 14.8 14.8s14.8-6.6 14.8-14.8zm71-269c2.1 90.9 4.7 131.9-85.5 132.5-92.5-.7-86.9-44.3-85.5-132.5 0-21.8-32.5-19.6-32.5 0v71.6c0 69.3 60.7 90.9 118 90.1 57.3.8 118-20.8 118-90.1v-71.6c0-19.6-32.5-21.8-32.5 0z"] }; +var faBlackTie = { prefix: 'fab', iconName: 'black-tie', icon: [448, 512, [], "f27e", "M0 32v448h448V32H0zm316.5 325.2L224 445.9l-92.5-88.7 64.5-184-64.5-86.6h184.9L252 173.2l64.5 184z"] }; +var faBlackberry = { prefix: 'fab', iconName: 'blackberry', icon: [512, 512, [], "f37b", "M166 116.9c0 23.4-16.4 49.1-72.5 49.1H23.4l21-88.8h67.8c42.1 0 53.8 23.3 53.8 39.7zm126.2-39.7h-67.8L205.7 166h70.1c53.8 0 70.1-25.7 70.1-49.1.1-16.4-11.6-39.7-53.7-39.7zM88.8 208.1H21L0 296.9h70.1c56.1 0 72.5-23.4 72.5-49.1 0-16.3-11.7-39.7-53.8-39.7zm180.1 0h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 0-16.3-11.7-39.7-53.7-39.7zm189.3-53.8h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7zm-28 137.9h-67.8L343.7 381h70.1c56.1 0 70.1-23.4 70.1-49.1 0-16.3-11.6-39.7-53.7-39.7zM240.8 346H173l-18.7 88.8h70.1c56.1 0 70.1-25.7 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7z"] }; +var faBlogger = { prefix: 'fab', iconName: 'blogger', icon: [448, 512, [], "f37c", "M162.4 196c4.8-4.9 6.2-5.1 36.4-5.1 27.2 0 28.1.1 32.1 2.1 5.8 2.9 8.3 7 8.3 13.6 0 5.9-2.4 10-7.6 13.4-2.8 1.8-4.5 1.9-31.1 2.1-16.4.1-29.5-.2-31.5-.8-10.3-2.9-14.1-17.7-6.6-25.3zm61.4 94.5c-53.9 0-55.8.2-60.2 4.1-3.5 3.1-5.7 9.4-5.1 13.9.7 4.7 4.8 10.1 9.2 12 2.2 1 14.1 1.7 56.3 1.2l47.9-.6 9.2-1.5c9-5.1 10.5-17.4 3.1-24.4-5.3-4.7-5-4.7-60.4-4.7zm223.4 130.1c-3.5 28.4-23 50.4-51.1 57.5-7.2 1.8-9.7 1.9-172.9 1.8-157.8 0-165.9-.1-172-1.8-8.4-2.2-15.6-5.5-22.3-10-5.6-3.8-13.9-11.8-17-16.4-3.8-5.6-8.2-15.3-10-22C.1 423 0 420.3 0 256.3 0 93.2 0 89.7 1.8 82.6 8.1 57.9 27.7 39 53 33.4c7.3-1.6 332.1-1.9 340-.3 21.2 4.3 37.9 17.1 47.6 36.4 7.7 15.3 7-1.5 7.3 180.6.2 115.8 0 164.5-.7 170.5zm-85.4-185.2c-1.1-5-4.2-9.6-7.7-11.5-1.1-.6-8-1.3-15.5-1.7-12.4-.6-13.8-.8-17.8-3.1-6.2-3.6-7.9-7.6-8-18.3 0-20.4-8.5-39.4-25.3-56.5-12-12.2-25.3-20.5-40.6-25.1-3.6-1.1-11.8-1.5-39.2-1.8-42.9-.5-52.5.4-67.1 6.2-27 10.7-46.3 33.4-53.4 62.4-1.3 5.4-1.6 14.2-1.9 64.3-.4 62.8 0 72.1 4 84.5 9.7 30.7 37.1 53.4 64.6 58.4 9.2 1.7 122.2 2.1 133.7.5 20.1-2.7 35.9-10.8 50.7-25.9 10.7-10.9 17.4-22.8 21.8-38.5 3.2-10.9 2.9-88.4 1.7-93.9z"] }; +var faBloggerB = { prefix: 'fab', iconName: 'blogger-b', icon: [448, 512, [], "f37d", "M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z"] }; +var faBluetooth = { prefix: 'fab', iconName: 'bluetooth', icon: [448, 512, [], "f293", "M292.6 171.1L249.7 214l-.3-86 43.2 43.1m-43.2 219.8l43.1-43.1-42.9-42.9-.2 86zM416 259.4C416 465 344.1 512 230.9 512S32 465 32 259.4 115.4 0 228.6 0 416 53.9 416 259.4zm-158.5 0l79.4-88.6L211.8 36.5v176.9L138 139.6l-27 26.9 92.7 93-92.7 93 26.9 26.9 73.8-73.8 2.3 170 127.4-127.5-83.9-88.7z"] }; +var faBluetoothB = { prefix: 'fab', iconName: 'bluetooth-b', icon: [320, 512, [], "f294", "M196.48 260.023l92.626-103.333L143.125 0v206.33l-86.111-86.111-31.406 31.405 108.061 108.399L25.608 368.422l31.406 31.405 86.111-86.111L145.84 512l148.552-148.644-97.912-103.333zm40.86-102.996l-49.977 49.978-.338-100.295 50.315 50.317zM187.363 313.04l49.977 49.978-50.315 50.316.338-100.294z"] }; +var faBtc = { prefix: 'fab', iconName: 'btc', icon: [384, 512, [], "f15a", "M310.204 242.638c27.73-14.18 45.377-39.39 41.28-81.3-5.358-57.351-52.458-76.573-114.85-81.929V0h-48.528v77.203c-12.605 0-25.525.315-38.444.63V0h-48.528v79.409c-17.842.539-38.622.276-97.37 0v51.678c38.314-.678 58.417-3.14 63.023 21.427v217.429c-2.925 19.492-18.524 16.685-53.255 16.071L3.765 443.68c88.481 0 97.37.315 97.37.315V512h48.528v-67.06c13.234.315 26.154.315 38.444.315V512h48.528v-68.005c81.299-4.412 135.647-24.894 142.895-101.467 5.671-61.446-23.32-88.862-69.326-99.89zM150.608 134.553c27.415 0 113.126-8.507 113.126 48.528 0 54.515-85.71 48.212-113.126 48.212v-96.74zm0 251.776V279.821c32.772 0 133.127-9.138 133.127 53.255-.001 60.186-100.355 53.253-133.127 53.253z"] }; +var faBuromobelexperte = { prefix: 'fab', iconName: 'buromobelexperte', icon: [448, 512, [], "f37f", "M0 32v128h128V32H0zm120 120H8V40h112v112zm40-120v128h128V32H160zm120 120H168V40h112v112zm40-120v128h128V32H320zm120 120H328V40h112v112zM0 192v128h128V192H0zm120 120H8V200h112v112zm40-120v128h128V192H160zm120 120H168V200h112v112zm40-120v128h128V192H320zm120 120H328V200h112v112zM0 352v128h128V352H0zm120 120H8V360h112v112zm40-120v128h128V352H160zm120 120H168V360h112v112zm40-120v128h128V352H320z"] }; +var faBuysellads = { prefix: 'fab', iconName: 'buysellads', icon: [448, 512, [], "f20d", "M224 150.7l42.9 160.7h-85.8L224 150.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-65.3 325.3l-94.5-298.7H159.8L65.3 405.3H156l111.7-91.6 24.2 91.6h90.8z"] }; +var faCcAmazonPay = { prefix: 'fab', iconName: 'cc-amazon-pay', icon: [576, 512, [], "f42d", "M124.7 201.8c.1-11.8 0-23.5 0-35.3v-35.3c0-1.3.4-2 1.4-2.7 11.5-8 24.1-12.1 38.2-11.1 12.5.9 22.7 7 28.1 21.7 3.3 8.9 4.1 18.2 4.1 27.7 0 8.7-.7 17.3-3.4 25.6-5.7 17.8-18.7 24.7-35.7 23.9-11.7-.5-21.9-5-31.4-11.7-.9-.8-1.4-1.6-1.3-2.8zm154.9 14.6c4.6 1.8 9.3 2 14.1 1.5 11.6-1.2 21.9-5.7 31.3-12.5.9-.6 1.3-1.3 1.3-2.5-.1-3.9 0-7.9 0-11.8 0-4-.1-8 0-12 0-1.4-.4-2-1.8-2.2-7-.9-13.9-2.2-20.9-2.9-7-.6-14-.3-20.8 1.9-6.7 2.2-11.7 6.2-13.7 13.1-1.6 5.4-1.6 10.8.1 16.2 1.6 5.5 5.2 9.2 10.4 11.2zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zm-207.5 23.9c.4 1.7.9 3.4 1.6 5.1 16.5 40.6 32.9 81.3 49.5 121.9 1.4 3.5 1.7 6.4.2 9.9-2.8 6.2-4.9 12.6-7.8 18.7-2.6 5.5-6.7 9.5-12.7 11.2-4.2 1.1-8.5 1.3-12.9.9-2.1-.2-4.2-.7-6.3-.8-2.8-.2-4.2 1.1-4.3 4-.1 2.8-.1 5.6 0 8.3.1 4.6 1.6 6.7 6.2 7.5 4.7.8 9.4 1.6 14.2 1.7 14.3.3 25.7-5.4 33.1-17.9 2.9-4.9 5.6-10.1 7.7-15.4 19.8-50.1 39.5-100.3 59.2-150.5.6-1.5 1.1-3 1.3-4.6.4-2.4-.7-3.6-3.1-3.7-5.6-.1-11.1 0-16.7 0-3.1 0-5.3 1.4-6.4 4.3-.4 1.1-.9 2.3-1.3 3.4l-29.1 83.7c-2.1 6.1-4.2 12.1-6.5 18.6-.4-.9-.6-1.4-.8-1.9-10.8-29.9-21.6-59.9-32.4-89.8-1.7-4.7-3.5-9.5-5.3-14.2-.9-2.5-2.7-4-5.4-4-6.4-.1-12.8-.2-19.2-.1-2.2 0-3.3 1.6-2.8 3.7zM242.4 206c1.7 11.7 7.6 20.8 18 26.6 9.9 5.5 20.7 6.2 31.7 4.6 12.7-1.9 23.9-7.3 33.8-15.5.4-.3.8-.6 1.4-1 .5 3.2.9 6.2 1.5 9.2.5 2.6 2.1 4.3 4.5 4.4 4.6.1 9.1.1 13.7 0 2.3-.1 3.8-1.6 4-3.9.1-.8.1-1.6.1-2.3v-88.8c0-3.6-.2-7.2-.7-10.8-1.6-10.8-6.2-19.7-15.9-25.4-5.6-3.3-11.8-5-18.2-5.9-3-.4-6-.7-9.1-1.1h-10c-.8.1-1.6.3-2.5.3-8.2.4-16.3 1.4-24.2 3.5-5.1 1.3-10 3.2-15 4.9-3 1-4.5 3.2-4.4 6.5.1 2.8-.1 5.6 0 8.3.1 4.1 1.8 5.2 5.7 4.1 6.5-1.7 13.1-3.5 19.7-4.8 10.3-1.9 20.7-2.7 31.1-1.2 5.4.8 10.5 2.4 14.1 7 3.1 4 4.2 8.8 4.4 13.7.3 6.9.2 13.9.3 20.8 0 .4-.1.7-.2 1.2-.4 0-.8 0-1.1-.1-8.8-2.1-17.7-3.6-26.8-4.1-9.5-.5-18.9.1-27.9 3.2-10.8 3.8-19.5 10.3-24.6 20.8-4.1 8.3-4.6 17-3.4 25.8zM98.7 106.9v175.3c0 .8 0 1.7.1 2.5.2 2.5 1.7 4.1 4.1 4.2 5.9.1 11.8.1 17.7 0 2.5 0 4-1.7 4.1-4.1.1-.8.1-1.7.1-2.5v-60.7c.9.7 1.4 1.2 1.9 1.6 15 12.5 32.2 16.6 51.1 12.9 17.1-3.4 28.9-13.9 36.7-29.2 5.8-11.6 8.3-24.1 8.7-37 .5-14.3-1-28.4-6.8-41.7-7.1-16.4-18.9-27.3-36.7-30.9-2.7-.6-5.5-.8-8.2-1.2h-7c-1.2.2-2.4.3-3.6.5-11.7 1.4-22.3 5.8-31.8 12.7-2 1.4-3.9 3-5.9 4.5-.1-.5-.3-.8-.4-1.2-.4-2.3-.7-4.6-1.1-6.9-.6-3.9-2.5-5.5-6.4-5.6h-9.7c-5.9-.1-6.9 1-6.9 6.8zM493.6 339c-2.7-.7-5.1 0-7.6 1-43.9 18.4-89.5 30.2-136.8 35.8-14.5 1.7-29.1 2.8-43.7 3.2-26.6.7-53.2-.8-79.6-4.3-17.8-2.4-35.5-5.7-53-9.9-37-8.9-72.7-21.7-106.7-38.8-8.8-4.4-17.4-9.3-26.1-14-3.8-2.1-6.2-1.5-8.2 2.1v1.7c1.2 1.6 2.2 3.4 3.7 4.8 36 32.2 76.6 56.5 122 72.9 21.9 7.9 44.4 13.7 67.3 17.5 14 2.3 28 3.8 42.2 4.5 3 .1 6 .2 9 .4.7 0 1.4.2 2.1.3h17.7c.7-.1 1.4-.3 2.1-.3 14.9-.4 29.8-1.8 44.6-4 21.4-3.2 42.4-8.1 62.9-14.7 29.6-9.6 57.7-22.4 83.4-40.1 2.8-1.9 5.7-3.8 8-6.2 4.3-4.4 2.3-10.4-3.3-11.9zm50.4-27.7c-.8-4.2-4-5.8-7.6-7-5.7-1.9-11.6-2.8-17.6-3.3-11-.9-22-.4-32.8 1.6-12 2.2-23.4 6.1-33.5 13.1-1.2.8-2.4 1.8-3.1 3-.6.9-.7 2.3-.5 3.4.3 1.3 1.7 1.6 3 1.5.6 0 1.2 0 1.8-.1l19.5-2.1c9.6-.9 19.2-1.5 28.8-.8 4.1.3 8.1 1.2 12 2.2 4.3 1.1 6.2 4.4 6.4 8.7.3 6.7-1.2 13.1-2.9 19.5-3.5 12.9-8.3 25.4-13.3 37.8-.3.8-.7 1.7-.8 2.5-.4 2.5 1 4 3.4 3.5 1.4-.3 3-1.1 4-2.1 3.7-3.6 7.5-7.2 10.6-11.2 10.7-13.8 17-29.6 20.7-46.6.7-3 1.2-6.1 1.7-9.1.2-4.7.2-9.6.2-14.5z"] }; +var faCcAmex = { prefix: 'fab', iconName: 'cc-amex', icon: [576, 512, [], "f1f3", "M576 255.4c-37.9-.2-44.2-.9-54.5 5v-5c-45.3 0-53.5-1.7-64.9 5.2v-5.2h-78.2v5.1c-11.4-6.5-21.4-5.1-75.7-5.1v5.6c-6.3-3.7-14.5-5.6-24.3-5.6h-58c-3.5 3.8-12.5 13.7-15.7 17.2-12.7-14.1-10.5-11.6-15.5-17.2h-83.1v92.3h82c3.3-3.5 12.9-13.9 16.1-17.4 12.7 14.3 10.3 11.7 15.4 17.4h48.9c0-14.7.1-8.3.1-23 11.5.2 24.3-.2 34.3-6.2 0 13.9-.1 17.1-.1 29.2h39.6c0-18.5.1-7.4.1-25.3 6.2 0 7.7 0 9.4.1.1 1.3 0 0 0 25.2 152.8 0 145.9 1.1 156.7-4.5v4.5c34.8 0 54.8 2.2 67.5-6.1V432c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V228.3h26.6c4.2-10.1 2.2-5.3 6.4-15.3h19.2c4.2 10 2.2 5.2 6.4 15.3h52.9v-11.4c2.2 5 1.1 2.5 5.1 11.4h29.5c2.4-5.5 2.6-5.8 5.1-11.4v11.4h135.5v-25.1c6.4 0 8-.1 9.8.2 0 0-.2 10.9.1 24.8h66.5v-8.9c7.4 5.9 17.4 8.9 29.7 8.9h26.8c4.2-10.1 2.2-5.3 6.4-15.3h19c6.5 15 .2.5 6.6 15.3h52.8v-21.9c11.8 19.7 7.8 12.9 13.2 21.9h41.6v-92h-39.9v18.4c-12.2-20.2-6.3-10.4-11.2-18.4h-43.3v20.6c-6.2-14.6-4.6-10.8-8.8-20.6h-32.4c-.4 0-2.3.2-2.3-.3h-27.6c-12.8 0-23.1 3.2-30.7 9.3v-9.3h-39.9v5.3c-10.8-6.1-20.7-5.1-64.4-5.3-.1 0-11.6-.1-11.6 0h-103c-2.5 6.1-6.8 16.4-12.6 30-2.8-6-11-23.8-13.9-30h-46V157c-7.4-17.4-4.7-11-9-21.1H22.9c-3.4 7.9-13.7 32-23.1 53.9V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48v175.4zm-186.6-80.6c-.3.2-1.4 2.2-1.4 7.6 0 6 .9 7.7 1.1 7.9.2.1 1.1.5 3.4.5l7.3-16.9c-1.1 0-2.1-.1-3.1-.1-5.6 0-7 .7-7.3 1zm-19.9 130.9c9.2 3.3 11 9.5 11 18.4l-.1 13.8h-16.6l.1-11.5c0-11.8-3.8-13.8-14.8-13.8h-17.6l-.1 25.3h-16.6l.1-69.3h39.4c13 0 27.1 2.3 27.1 18.7-.1 7.6-4.2 15.3-11.9 18.4zm-6.3-15.4c0-6.4-5.6-7.4-10.7-7.4h-21v15.6h20.7c5.6 0 11-1.3 11-8.2zm181.7-7.1H575v-14.6h-32.9c-12.8 0-23.8 6.6-23.8 20.7 0 33 42.7 12.8 42.7 27.4 0 5.1-4.3 6.4-8.4 6.4h-32l-.1 14.8h32c8.4 0 17.6-1.8 22.5-8.9v-25.8c-10.5-13.8-39.3-1.3-39.3-13.5 0-5.8 4.6-6.5 9.2-6.5zm-99.2-.3v-14.3h-55.2l-.1 69.3h55.2l.1-14.3-38.6-.3v-13.8H445v-14.1h-37.8v-12.5h38.5zm42.2 40.1h-32.2l-.1 14.8h32.2c14.8 0 26.2-5.6 26.2-22 0-33.2-42.9-11.2-42.9-26.3 0-5.6 4.9-6.4 9.2-6.4h30.4v-14.6h-33.2c-12.8 0-23.5 6.6-23.5 20.7 0 33 42.7 12.5 42.7 27.4-.1 5.4-4.7 6.4-8.8 6.4zm-78.1-158.7c-17.4-.3-33.2-4.1-33.2 19.7 0 11.8 2.8 19.9 16.1 19.9h7.4l23.5-54.5h24.8l27.9 65.4v-65.4h25.3l29.1 48.1v-48.1h16.9v69H524l-31.2-51.9v51.9h-33.7l-6.6-15.3h-34.3l-6.4 15.3h-19.2c-22.8 0-33-11.8-33-34 0-23.3 10.5-35.3 34-35.3h16.1v15.2zm14.3 24.5h22.8l-11.2-27.6-11.6 27.6zm-72.6-39.6h-16.9v69.3h16.9v-69.3zm-38.1 37.3c9.5 3.3 11 9.2 11 18.4v13.5h-16.6c-.3-14.8 3.6-25.1-14.8-25.1h-18v25.1h-16.4v-69.3l39.1.3c13.3 0 27.4 2 27.4 18.4.1 8-4.3 15.7-11.7 18.7zm-6.7-15.3c0-6.4-5.6-7.4-10.7-7.4h-21v15.3h20.7c5.7 0 11-1.3 11-7.9zm-59.5-7.4v-14.6h-55.5v69.3h55.5v-14.3h-38.9v-13.8h37.8v-14.1h-37.8v-12.5h38.9zm-84.6 54.7v-54.2l-24 54.2H124l-24-54.2v54.2H66.2l-6.4-15.3H25.3l-6.4 15.3H1l29.7-69.3h24.5l28.1 65.7v-65.7h27.1l21.7 47 19.7-47h27.6v69.3h-16.8zM53.9 188.8l-11.5-27.6-11.2 27.6h22.7zm253 102.5c0 27.9-30.4 23.3-49.3 23.3l-.1 23.3h-32.2l-20.4-23-21.3 23h-65.4l.1-69.3h66.5l20.5 22.8 21-22.8H279c15.6 0 27.9 5.4 27.9 22.7zm-112.7 11.8l-17.9-20.2h-41.7v12.5h36.3v14.1h-36.3v13.8h40.6l19-20.2zM241 276l-25.3 27.4 25.3 28.1V276zm48.3 15.3c0-6.1-4.6-8.4-10.2-8.4h-21.5v17.6h21.2c5.9 0 10.5-2.8 10.5-9.2z"] }; +var faCcApplePay = { prefix: 'fab', iconName: 'cc-apple-pay', icon: [576, 512, [], "f416", "M302.2 218.4c0 17.2-10.5 27.1-29 27.1h-24.3v-54.2h24.4c18.4 0 28.9 9.8 28.9 27.1zm47.5 62.6c0 8.3 7.2 13.7 18.5 13.7 14.4 0 25.2-9.1 25.2-21.9v-7.7l-23.5 1.5c-13.3.9-20.2 5.8-20.2 14.4zM576 79v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM127.8 197.2c8.4.7 16.8-4.2 22.1-10.4 5.2-6.4 8.6-15 7.7-23.7-7.4.3-16.6 4.9-21.9 11.3-4.8 5.5-8.9 14.4-7.9 22.8zm60.6 74.5c-.2-.2-19.6-7.6-19.8-30-.2-18.7 15.3-27.7 16-28.2-8.8-13-22.4-14.4-27.1-14.7-12.2-.7-22.6 6.9-28.4 6.9-5.9 0-14.7-6.6-24.3-6.4-12.5.2-24.2 7.3-30.5 18.6-13.1 22.6-3.4 56 9.3 74.4 6.2 9.1 13.7 19.1 23.5 18.7 9.3-.4 13-6 24.2-6 11.3 0 14.5 6 24.3 5.9 10.2-.2 16.5-9.1 22.8-18.2 6.9-10.4 9.8-20.4 10-21zm135.4-53.4c0-26.6-18.5-44.8-44.9-44.8h-51.2v136.4h21.2v-46.6h29.3c26.8 0 45.6-18.4 45.6-45zm90 23.7c0-19.7-15.8-32.4-40-32.4-22.5 0-39.1 12.9-39.7 30.5h19.1c1.6-8.4 9.4-13.9 20-13.9 13 0 20.2 6 20.2 17.2v7.5l-26.4 1.6c-24.6 1.5-37.9 11.6-37.9 29.1 0 17.7 13.7 29.4 33.4 29.4 13.3 0 25.6-6.7 31.2-17.4h.4V310h19.6v-68zM516 210.9h-21.5l-24.9 80.6h-.4l-24.9-80.6H422l35.9 99.3-1.9 6c-3.2 10.2-8.5 14.2-17.9 14.2-1.7 0-4.9-.2-6.2-.3v16.4c1.2.4 6.5.5 8.1.5 20.7 0 30.4-7.9 38.9-31.8L516 210.9z"] }; +var faCcDinersClub = { prefix: 'fab', iconName: 'cc-diners-club', icon: [576, 512, [], "f24c", "M239.7 79.9c-96.9 0-175.8 78.6-175.8 175.8 0 96.9 78.9 175.8 175.8 175.8 97.2 0 175.8-78.9 175.8-175.8 0-97.2-78.6-175.8-175.8-175.8zm-39.9 279.6c-41.7-15.9-71.4-56.4-71.4-103.8s29.7-87.9 71.4-104.1v207.9zm79.8.3V151.6c41.7 16.2 71.4 56.7 71.4 104.1s-29.7 87.9-71.4 104.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM329.7 448h-90.3c-106.2 0-193.8-85.5-193.8-190.2C45.6 143.2 133.2 64 239.4 64h90.3c105 0 200.7 79.2 200.7 193.8 0 104.7-95.7 190.2-200.7 190.2z"] }; +var faCcDiscover = { prefix: 'fab', iconName: 'cc-discover', icon: [576, 512, [], "f1f2", "M83 212.1c0 7.9-3.2 15.5-8.9 20.7-4.9 4.4-11.6 6.4-21.9 6.4H48V185h4.2c10.3 0 16.7 1.7 21.9 6.6 5.7 5 8.9 12.6 8.9 20.5zM504.8 184h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8 0-7.9-5.5-12.1-15.6-12.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM428 253h45.3v-13.8H444V217h28.3v-13.8H444V185h29.3v-14H428v82zm-86.2-82l35 84.2h8.6l35.5-84.2h-17.5l-22.2 55.2-21.9-55.2h-17.5zm-83 41.6c0 24.6 19.9 44.6 44.6 44.6 24.6 0 44.6-19.9 44.6-44.6 0-24.6-19.9-44.6-44.6-44.6-24.6 0-44.6 19.9-44.6 44.6zm-68-.5c0 32.5 33.6 52.5 63.3 38.2v-19c-19.3 19.3-46.8 5.8-46.8-19.2 0-23.7 26.7-39.1 46.8-19v-19c-30.2-15-63.3 6.8-63.3 38zm-33.9 28.3c-7.6 0-13.8-3.7-17.5-10.8l-10.3 9.9c17.8 26.1 56.6 18.2 56.6-11.3 0-13.1-5.4-19-23.6-25.6-9.6-3.4-12.3-5.9-12.3-10.3 0-8.7 14.5-14.1 24.9-2.5l8.4-10.8c-19.1-17.1-49.7-8.9-49.7 14.3 0 11.3 5.2 17.2 20.2 22.7 25.7 9.1 14.7 24.4 3.3 24.4zm-57.4-28.3c0-24.1-18-41.1-44.1-41.1H32v82h23.4c30.9 0 44.1-22.4 44.1-40.9zm23.4-41.1h-16v82h16v-82zM544 288c-33.3 20.8-226.4 124.4-416 160h401c8.2 0 15-6.8 15-15V288zm0-35l-25.9-34.5c12.1-2.5 18.7-10.6 18.7-23.2 0-28.5-30.3-24.4-52.9-24.4v82h16v-32.8h2.2l22.2 32.8H544z"] }; +var faCcJcb = { prefix: 'fab', iconName: 'cc-jcb', icon: [576, 512, [], "f24b", "M431.5 244.3V212c41.2 0 38.5.2 38.5.2 7.3 1.3 13.3 7.3 13.3 16 0 8.8-6 14.5-13.3 15.8-1.2.4-3.3.3-38.5.3zm42.8 20.2c-2.8-.7-3.3-.5-42.8-.5v35c39.6 0 40 .2 42.8-.5 7.5-1.5 13.5-8 13.5-17 0-8.7-6-15.5-13.5-17zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM182 192.3h-57c0 67.1 10.7 109.7-35.8 109.7-19.5 0-38.8-5.7-57.2-14.8v28c30 8.3 68 8.3 68 8.3 97.9 0 82-47.7 82-131.2zm178.5 4.5c-63.4-16-165-14.9-165 59.3 0 77.1 108.2 73.6 165 59.2V287C312.9 311.7 253 309 253 256s59.8-55.6 107.5-31.2v-28zM544 286.5c0-18.5-16.5-30.5-38-32v-.8c19.5-2.7 30.3-15.5 30.3-30.2 0-19-15.7-30-37-31 0 0 6.3-.3-120.3-.3v127.5h122.7c24.3.1 42.3-12.9 42.3-33.2z"] }; +var faCcMastercard = { prefix: 'fab', iconName: 'cc-mastercard', icon: [576, 512, [], "f1f1", "M482.9 410.3c0 6.8-4.6 11.7-11.2 11.7-6.8 0-11.2-5.2-11.2-11.7 0-6.5 4.4-11.7 11.2-11.7 6.6 0 11.2 5.2 11.2 11.7zm-310.8-11.7c-7.1 0-11.2 5.2-11.2 11.7 0 6.5 4.1 11.7 11.2 11.7 6.5 0 10.9-4.9 10.9-11.7-.1-6.5-4.4-11.7-10.9-11.7zm117.5-.3c-5.4 0-8.7 3.5-9.5 8.7h19.1c-.9-5.7-4.4-8.7-9.6-8.7zm107.8.3c-6.8 0-10.9 5.2-10.9 11.7 0 6.5 4.1 11.7 10.9 11.7 6.8 0 11.2-4.9 11.2-11.7 0-6.5-4.4-11.7-11.2-11.7zm105.9 26.1c0 .3.3.5.3 1.1 0 .3-.3.5-.3 1.1-.3.3-.3.5-.5.8-.3.3-.5.5-1.1.5-.3.3-.5.3-1.1.3-.3 0-.5 0-1.1-.3-.3 0-.5-.3-.8-.5-.3-.3-.5-.5-.5-.8-.3-.5-.3-.8-.3-1.1 0-.5 0-.8.3-1.1 0-.5.3-.8.5-1.1.3-.3.5-.3.8-.5.5-.3.8-.3 1.1-.3.5 0 .8 0 1.1.3.5.3.8.3 1.1.5s.2.6.5 1.1zm-2.2 1.4c.5 0 .5-.3.8-.3.3-.3.3-.5.3-.8 0-.3 0-.5-.3-.8-.3 0-.5-.3-1.1-.3h-1.6v3.5h.8V426h.3l1.1 1.4h.8l-1.1-1.3zM576 81v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V81c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM64 220.6c0 76.5 62.1 138.5 138.5 138.5 27.2 0 53.9-8.2 76.5-23.1-72.9-59.3-72.4-171.2 0-230.5-22.6-15-49.3-23.1-76.5-23.1-76.4-.1-138.5 62-138.5 138.2zm224 108.8c70.5-55 70.2-162.2 0-217.5-70.2 55.3-70.5 162.6 0 217.5zm-142.3 76.3c0-8.7-5.7-14.4-14.7-14.7-4.6 0-9.5 1.4-12.8 6.5-2.4-4.1-6.5-6.5-12.2-6.5-3.8 0-7.6 1.4-10.6 5.4V392h-8.2v36.7h8.2c0-18.9-2.5-30.2 9-30.2 10.2 0 8.2 10.2 8.2 30.2h7.9c0-18.3-2.5-30.2 9-30.2 10.2 0 8.2 10 8.2 30.2h8.2v-23zm44.9-13.7h-7.9v4.4c-2.7-3.3-6.5-5.4-11.7-5.4-10.3 0-18.2 8.2-18.2 19.3 0 11.2 7.9 19.3 18.2 19.3 5.2 0 9-1.9 11.7-5.4v4.6h7.9V392zm40.5 25.6c0-15-22.9-8.2-22.9-15.2 0-5.7 11.9-4.8 18.5-1.1l3.3-6.5c-9.4-6.1-30.2-6-30.2 8.2 0 14.3 22.9 8.3 22.9 15 0 6.3-13.5 5.8-20.7.8l-3.5 6.3c11.2 7.6 32.6 6 32.6-7.5zm35.4 9.3l-2.2-6.8c-3.8 2.1-12.2 4.4-12.2-4.1v-16.6h13.1V392h-13.1v-11.2h-8.2V392h-7.6v7.3h7.6V416c0 17.6 17.3 14.4 22.6 10.9zm13.3-13.4h27.5c0-16.2-7.4-22.6-17.4-22.6-10.6 0-18.2 7.9-18.2 19.3 0 20.5 22.6 23.9 33.8 14.2l-3.8-6c-7.8 6.4-19.6 5.8-21.9-4.9zm59.1-21.5c-4.6-2-11.6-1.8-15.2 4.4V392h-8.2v36.7h8.2V408c0-11.6 9.5-10.1 12.8-8.4l2.4-7.6zm10.6 18.3c0-11.4 11.6-15.1 20.7-8.4l3.8-6.5c-11.6-9.1-32.7-4.1-32.7 15 0 19.8 22.4 23.8 32.7 15l-3.8-6.5c-9.2 6.5-20.7 2.6-20.7-8.6zm66.7-18.3H408v4.4c-8.3-11-29.9-4.8-29.9 13.9 0 19.2 22.4 24.7 29.9 13.9v4.6h8.2V392zm33.7 0c-2.4-1.2-11-2.9-15.2 4.4V392h-7.9v36.7h7.9V408c0-11 9-10.3 12.8-8.4l2.4-7.6zm40.3-14.9h-7.9v19.3c-8.2-10.9-29.9-5.1-29.9 13.9 0 19.4 22.5 24.6 29.9 13.9v4.6h7.9v-51.7zm7.6-75.1v4.6h.8V302h1.9v-.8h-4.6v.8h1.9zm6.6 123.8c0-.5 0-1.1-.3-1.6-.3-.3-.5-.8-.8-1.1-.3-.3-.8-.5-1.1-.8-.5 0-1.1-.3-1.6-.3-.3 0-.8.3-1.4.3-.5.3-.8.5-1.1.8-.5.3-.8.8-.8 1.1-.3.5-.3 1.1-.3 1.6 0 .3 0 .8.3 1.4 0 .3.3.8.8 1.1.3.3.5.5 1.1.8.5.3 1.1.3 1.4.3.5 0 1.1 0 1.6-.3.3-.3.8-.5 1.1-.8.3-.3.5-.8.8-1.1.3-.6.3-1.1.3-1.4zm3.2-124.7h-1.4l-1.6 3.5-1.6-3.5h-1.4v5.4h.8v-4.1l1.6 3.5h1.1l1.4-3.5v4.1h1.1v-5.4zm4.4-80.5c0-76.2-62.1-138.3-138.5-138.3-27.2 0-53.9 8.2-76.5 23.1 72.1 59.3 73.2 171.5 0 230.5 22.6 15 49.5 23.1 76.5 23.1 76.4.1 138.5-61.9 138.5-138.4z"] }; +var faCcPaypal = { prefix: 'fab', iconName: 'cc-paypal', icon: [576, 512, [], "f1f4", "M186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5z"] }; +var faCcStripe = { prefix: 'fab', iconName: 'cc-stripe', icon: [576, 512, [], "f1f5", "M396.9 256.5c0 19.1-8.8 33.4-21.9 33.4-8.3 0-13.3-3-16.8-6.7l-.2-52.8c3.7-4.1 8.8-7 17-7 12.9-.1 21.9 14.5 21.9 33.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM122.2 281.1c0-42.3-54.3-34.7-54.3-50.7 0-5.5 4.6-7.7 12.1-7.7 10.8 0 24.5 3.3 35.3 9.1v-33.4c-11.8-4.7-23.5-6.5-35.3-6.5-28.8 0-48 15-48 40.2 0 39.3 54 32.9 54 49.9 0 6.6-5.7 8.7-13.6 8.7-11.8 0-26.9-4.9-38.9-11.3v33.9c13.2 5.7 26.6 8.1 38.8 8.1 29.6-.2 49.9-14.7 49.9-40.3zm68.9-86.9h-27v-30.8l-34.7 7.4-.2 113.9c0 21 15.8 36.5 36.9 36.5 11.6 0 20.2-2.1 24.9-4.7v-28.9c-4.5 1.8-27 8.3-27-12.6v-50.5h27v-30.3zm73.8 0c-4.7-1.7-21.3-4.8-29.6 10.5l-2.2-10.5h-30.7v124.5h35.5v-84.4c8.4-11 22.6-8.9 27.1-7.4v-32.7zm44.2 0h-35.7v124.5h35.7V194.2zm0-47.3l-35.7 7.6v28.9l35.7-7.6v-28.9zm122.7 108.8c0-41.3-23.5-63.8-48.4-63.8-13.9 0-22.9 6.6-27.8 11.1l-1.8-8.8h-31.3V360l35.5-7.5.1-40.2c5.1 3.7 12.7 9 25.1 9 25.4-.1 48.6-20.5 48.6-65.6zm112.2 1.2c0-36.4-17.6-65.1-51.3-65.1-33.8 0-54.3 28.7-54.3 64.9 0 42.8 24.2 64.5 58.8 64.5 17 0 29.7-3.9 39.4-9.2v-28.6c-9.7 4.9-20.8 7.9-34.9 7.9-13.8 0-26-4.9-27.6-21.5h69.5c.1-2 .4-9.4.4-12.9zm-51.6-36.1c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7z"] }; +var faCcVisa = { prefix: 'fab', iconName: 'cc-visa', icon: [576, 512, [], "f1f0", "M470.1 231.3s7.6 37.2 9.3 45H446c3.3-8.9 16-43.5 16-43.5-.2.3 3.3-9.1 5.3-14.9l2.8 13.4zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM152.5 331.2L215.7 176h-42.5l-39.3 106-4.3-21.5-14-71.4c-2.3-9.9-9.4-12.7-18.2-13.1H32.7l-.7 3.1c15.8 4 29.9 9.8 42.2 17.1l35.8 135h42.5zm94.4.2L272.1 176h-40.2l-25.1 155.4h40.1zm139.9-50.8c.2-17.7-10.6-31.2-33.7-42.3-14.1-7.1-22.7-11.9-22.7-19.2.2-6.6 7.3-13.4 23.1-13.4 13.1-.3 22.7 2.8 29.9 5.9l3.6 1.7 5.5-33.6c-7.9-3.1-20.5-6.6-36-6.6-39.7 0-67.6 21.2-67.8 51.4-.3 22.3 20 34.7 35.2 42.2 15.5 7.6 20.8 12.6 20.8 19.3-.2 10.4-12.6 15.2-24.1 15.2-16 0-24.6-2.5-37.7-8.3l-5.3-2.5-5.6 34.9c9.4 4.3 26.8 8.1 44.8 8.3 42.2.1 69.7-20.8 70-53zM528 331.4L495.6 176h-31.1c-9.6 0-16.9 2.8-21 12.9l-59.7 142.5H426s6.9-19.2 8.4-23.3H486c1.2 5.5 4.8 23.3 4.8 23.3H528z"] }; +var faCentercode = { prefix: 'fab', iconName: 'centercode', icon: [512, 512, [], "f380", "M329.2 268.6c-3.8 35.2-35.4 60.6-70.6 56.8-35.2-3.8-60.6-35.4-56.8-70.6 3.8-35.2 35.4-60.6 70.6-56.8 35.1 3.8 60.6 35.4 56.8 70.6zm-85.8 235.1C96.7 496-8.2 365.5 10.1 224.3c11.2-86.6 65.8-156.9 139.1-192 161-77.1 349.7 37.4 354.7 216.6 4.1 147-118.4 262.2-260.5 254.8zm179.9-180c27.9-118-160.5-205.9-237.2-234.2-57.5 56.3-69.1 188.6-33.8 344.4 68.8 15.8 169.1-26.4 271-110.2z"] }; +var faChrome = { prefix: 'fab', iconName: 'chrome', icon: [496, 512, [], "f268", "M131.5 217.5L55.1 100.1c47.6-59.2 119-91.8 192-92.1 42.3-.3 85.5 10.5 124.8 33.2 43.4 25.2 76.4 61.4 97.4 103L264 133.4c-58.1-3.4-113.4 29.3-132.5 84.1zm32.9 38.5c0 46.2 37.4 83.6 83.6 83.6s83.6-37.4 83.6-83.6-37.4-83.6-83.6-83.6-83.6 37.3-83.6 83.6zm314.9-89.2L339.6 174c37.9 44.3 38.5 108.2 6.6 157.2L234.1 503.6c46.5 2.5 94.4-7.7 137.8-32.9 107.4-62 150.9-192 107.4-303.9zM133.7 303.6L40.4 120.1C14.9 159.1 0 205.9 0 256c0 124 90.8 226.7 209.5 244.9l63.7-124.8c-57.6 10.8-113.2-20.8-139.5-72.5z"] }; +var faCloudscale = { prefix: 'fab', iconName: 'cloudscale', icon: [448, 512, [], "f383", "M318.1 154l-9.4 7.6c-22.5-19.3-51.5-33.6-83.3-33.6C153.8 128 96 188.8 96 260.3c0 6.6.4 13.1 1.4 19.4-2-56 41.8-97.4 92.6-97.4 24.2 0 46.2 9.4 62.6 24.7l-25.2 20.4c-8.3-.9-16.8 1.8-23.1 8.1-11.1 11-11.1 28.9 0 40 11.1 11 28.9 11 40 0 6.3-6.3 9-14.9 8.1-23.1l75.2-88.8c6.3-6.5-3.3-15.9-9.5-9.6zm-83.8 111.5c-5.6 5.5-14.6 5.5-20.2 0-5.6-5.6-5.6-14.6 0-20.2s14.6-5.6 20.2 0 5.6 14.7 0 20.2zM224 32C100.5 32 0 132.5 0 256s100.5 224 224 224 224-100.5 224-224S347.5 32 224 32zm0 384c-88.2 0-160-71.8-160-160S135.8 96 224 96s160 71.8 160 160-71.8 160-160 160z"] }; +var faCloudsmith = { prefix: 'fab', iconName: 'cloudsmith', icon: [332, 512, [], "f384", "M332.5 419.9c0 46.4-37.6 84.1-84 84.1s-84-37.7-84-84.1 37.6-84 84-84 84 37.6 84 84zm-84-243.9c46.4 0 80-37.6 80-84s-33.6-84-80-84-88 37.6-88 84-29.6 76-76 76-84 41.6-84 88 37.6 80 84 80 84-33.6 84-80 33.6-80 80-80z"] }; +var faCloudversify = { prefix: 'fab', iconName: 'cloudversify', icon: [616, 512, [], "f385", "M148.6 304c8.2 68.5 67.4 115.5 146 111.3 51.2 43.3 136.8 45.8 186.4-5.6 69.2 1.1 118.5-44.6 131.5-99.5 14.8-62.5-18.2-132.5-92.1-155.1-33-88.1-131.4-101.5-186.5-85-57.3 17.3-84.3 53.2-99.3 109.7-7.8 2.7-26.5 8.9-45 24.1 11.7 0 15.2 8.9 15.2 19.5v20.4c0 10.7-8.7 19.5-19.5 19.5h-20.2c-10.7 0-19.5-6-19.5-16.7V240H98.8C95 240 88 244.3 88 251.9v40.4c0 6.4 5.3 11.8 11.7 11.8h48.9zm227.4 8c-10.7 46.3 21.7 72.4 55.3 86.8C324.1 432.6 259.7 348 296 288c-33.2 21.6-33.7 71.2-29.2 92.9-17.9-12.4-53.8-32.4-57.4-79.8-3-39.9 21.5-75.7 57-93.9C297 191.4 369.9 198.7 400 248c-14.1-48-53.8-70.1-101.8-74.8 30.9-30.7 64.4-50.3 114.2-43.7 69.8 9.3 133.2 82.8 67.7 150.5 35-16.3 48.7-54.4 47.5-76.9l10.5 19.6c11.8 22 15.2 47.6 9.4 72-9.2 39-40.6 68.8-79.7 76.5-32.1 6.3-83.1-5.1-91.8-59.2zM128 208H88.2c-8.9 0-16.2-7.3-16.2-16.2v-39.6c0-8.9 7.3-16.2 16.2-16.2H128c8.9 0 16.2 7.3 16.2 16.2v39.6c0 8.9-7.3 16.2-16.2 16.2zM10.1 168C4.5 168 0 163.5 0 157.9v-27.8c0-5.6 4.5-10.1 10.1-10.1h27.7c5.5 0 10.1 4.5 10.1 10.1v27.8c0 5.6-4.5 10.1-10.1 10.1H10.1zM168 142.7v-21.4c0-5.1 4.2-9.3 9.3-9.3h21.4c5.1 0 9.3 4.2 9.3 9.3v21.4c0 5.1-4.2 9.3-9.3 9.3h-21.4c-5.1 0-9.3-4.2-9.3-9.3zM56 235.5v25c0 6.3-5.1 11.5-11.4 11.5H19.4C13.1 272 8 266.8 8 260.5v-25c0-6.3 5.1-11.5 11.4-11.5h25.1c6.4 0 11.5 5.2 11.5 11.5z"] }; +var faCodepen = { prefix: 'fab', iconName: 'codepen', icon: [512, 512, [], "f1cb", "M502.285 159.704l-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285zM278 63.131l172.286 114.858-76.857 51.429L278 165.703V63.131zm-44 0v102.572l-95.429 63.715-76.857-51.429L234 63.131zM44 219.132l55.143 36.857L44 292.846v-73.714zm190 229.715L61.714 333.989l76.857-51.429L234 346.275v102.572zm22-140.858l-77.715-52 77.715-52 77.715 52-77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429L278 448.847zm190-156.001l-55.143-36.857L468 219.132v73.714z"] }; +var faCodiepie = { prefix: 'fab', iconName: 'codiepie', icon: [472, 512, [], "f284", "M422.5 202.9c30.7 0 33.5 53.1-.3 53.1h-10.8v44.3h-26.6v-97.4h37.7zM472 352.6C429.9 444.5 350.4 504 248 504 111 504 0 393 0 256S111 8 248 8c97.4 0 172.8 53.7 218.2 138.4l-186 108.8L472 352.6zm-38.5 12.5l-60.3-30.7c-27.1 44.3-70.4 71.4-122.4 71.4-82.5 0-149.2-66.7-149.2-148.9 0-82.5 66.7-149.2 149.2-149.2 48.4 0 88.9 23.5 116.9 63.4l59.5-34.6c-40.7-62.6-104.7-100-179.2-100-121.2 0-219.5 98.3-219.5 219.5S126.8 475.5 248 475.5c78.6 0 146.5-42.1 185.5-110.4z"] }; +var faConnectdevelop = { prefix: 'fab', iconName: 'connectdevelop', icon: [576, 512, [], "f20e", "M550.5 241l-50.089-86.786c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.733-14.732-15.001l-55.447-95.893c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.268-15.268-15.268-4.821 0-8.839 2.143-11.786 5.625H299.518C296.839 18.143 292.821 16 288 16s-8.839 2.143-11.518 5.625H170.411C167.464 18.143 163.447 16 158.625 16c-8.303 0-15.268 6.696-15.268 15.268 0 1.607.536 3.482 1.072 4.821l-55.983 97.233c-5.356 2.41-9.107 7.5-9.107 13.661 0 .535.268 1.071.268 1.607l-53.304 92.143c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.393 12.054 15l55.179 95.358c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.393 12.054 14.732l51.697 89.732c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.268 15.268 15.268 4.821 0 8.839-2.143 11.518-5.357h106.875C279.161 493.857 283.447 496 288 496s8.839-2.143 11.518-5.357h107.143c2.678 2.946 6.696 4.821 10.982 4.821 8.571 0 15.268-6.964 15.268-15.268 0-1.607-.267-2.946-.803-4.285l51.697-90.268c6.964-1.339 12.054-7.5 12.054-14.732 0-1.607-.268-3.214-.804-4.821l54.911-95.358c6.964-1.339 12.322-7.5 12.322-15-.002-7.232-5.092-13.393-11.788-14.732zM153.535 450.732l-43.66-75.803h43.66v75.803zm0-83.839h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.999-47.41v50.624zm0-62.411l-50.357 53.304c-1.339-.536-2.679-1.34-4.018-1.607L43.447 259.75c.535-1.339.535-2.679.535-4.018s0-2.41-.268-3.482l51.965-90c2.679-.268 5.357-1.072 7.768-2.679l50.089 51.965v92.946zm0-102.322l-45.803-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.928-15.804v72.053zm0-80.625l-43.66 15.804 43.66-75.536v59.732zm326.519 39.108l.804 1.339L445.5 329.125l-63.75-67.232 98.036-101.518.268.268zM291.75 355.107l11.518 11.786H280.5l11.25-11.786zm-.268-11.25l-83.303-85.446 79.553-84.375 83.036 87.589-79.286 82.232zm5.357 5.893l79.286-82.232 67.5 71.25-5.892 28.125H313.714l-16.875-17.143zM410.411 44.393c1.071.536 2.142 1.072 3.482 1.34l57.857 100.714v.536c0 2.946.803 5.624 2.143 7.767L376.393 256l-83.035-87.589L410.411 44.393zm-9.107-2.143L287.732 162.518l-57.054-60.268 166.339-60h4.287zm-123.483 0c2.678 2.678 6.16 4.285 10.179 4.285s7.5-1.607 10.179-4.285h75L224.786 95.821 173.893 42.25h103.928zm-116.249 5.625l1.071-2.142a33.834 33.834 0 0 0 2.679-.804l51.161 53.84-54.911 19.821V47.875zm0 79.286l60.803-21.964 59.732 63.214-79.553 84.107-40.982-42.053v-83.304zm0 92.678L198 257.607l-36.428 38.304v-76.072zm0 87.858l42.053-44.464 82.768 85.982-17.143 17.678H161.572v-59.196zm6.964 162.053c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.732h99.91l-91.607 94.821h-1.339zm129.911 0c-2.679-2.41-6.428-4.285-10.447-4.285s-7.767 1.875-10.447 4.285h-96.429l91.607-94.821h38.304l91.607 94.821H298.447zm120-11.786l-4.286 7.5c-1.339.268-2.41.803-3.482 1.339l-89.196-91.875h114.376l-17.412 83.036zm12.856-22.232l12.858-60.803h21.964l-34.822 60.803zm34.822-68.839h-20.357l4.553-21.16 17.143 18.214c-.535.803-1.071 1.874-1.339 2.946zm66.161-107.411l-55.447 96.697c-1.339.535-2.679 1.071-4.018 1.874l-20.625-21.964 34.554-163.928 45.803 79.286c-.267 1.339-.803 2.678-.803 4.285 0 1.339.268 2.411.536 3.75z"] }; +var faContao = { prefix: 'fab', iconName: 'contao', icon: [512, 512, [], "f26d", "M45.4 305c14.4 67.1 26.4 129 68.2 175H34c-18.7 0-34-15.2-34-34V66c0-18.7 15.2-34 34-34h57.7C77.9 44.6 65.6 59.2 54.8 75.6c-45.4 70-27 146.8-9.4 229.4zM478 32h-90.2c21.4 21.4 39.2 49.5 52.7 84.1l-137.1 29.3c-14.9-29-37.8-53.3-82.6-43.9-24.6 5.3-41 19.3-48.3 34.6-8.8 18.7-13.2 39.8 8.2 140.3 21.1 100.2 33.7 117.7 49.5 131.2 12.9 11.1 33.4 17 58.3 11.7 44.5-9.4 55.7-40.7 57.4-73.2l137.4-29.6c3.2 71.5-18.7 125.2-57.4 163.6H478c18.7 0 34-15.2 34-34V66c0-18.8-15.2-34-34-34z"] }; +var faCpanel = { prefix: 'fab', iconName: 'cpanel', icon: [640, 512, [], "f388", "M52.9 213.7h40l-6.2 23.6c-1.9 6.5-7.4 10.9-14.3 10.9H53.8c-24.9 0-24.7 37.4 0 37.4h11.3c4.2 0 7.6 3.9 6.4 8.3L64.4 320H52c-33.5 0-59-31.4-50.3-65.2 7.3-27 28.3-41.1 51.2-41.1M73.1 320L108 189.9c1.8-6.4 7.2-10.9 14.3-10.9h37c24.1 0 45.4 16.4 51 41.2 6.6 29.1-14.5 65.3-51.7 65.3h-32l6.4-23.8c1.8-6.2 7.3-10.8 14.3-10.8h10.3c12.4 0 20.8-11.7 18.3-22.6-2.1-9.2-9.9-14.8-18.3-14.8h-19.8L112 309.2c-1.9 6.2-7.4 10.7-14.2 10.7l-24.7.1m220.6-69.4c.3-1 1.9-5.3-2.1-5.3h-57.5c-9.7 0-16.6-8.9-14.2-18.5l3.5-13.4h77.9c18.8 0 33.3 17.6 28.5 36.8l-14 51.8c-2.8 10.6-12.2 17.8-23.4 17.8l-57.5-.2c-42.9 0-38.5-63.8.7-63.8H284l-3.5 13.2c-1.9 6.2-7.4 10.8-14.2 10.8h-21.6c-5.3 0-5.3 7.9 0 7.9h34.9c4.6 0 5.1-3.9 5.5-5.3l8.6-31.8m103.1-36.9c34.4 0 59.3 32.3 50.3 65.4l-8.8 33.1c-1.2 4.9-5.7 7.8-10.3 7.8h-19.1c-4.5 0-7.6-4-6.4-8.3l10.6-40c3.3-11.6-5.6-23.4-18.1-23.4h-19.8l-17.2 64c-1.2 4.8-5.6 7.8-10.4 7.8h-18.9c-4.2 0-7.6-3.9-6.4-8.3l26.2-98h48.3M498 251.6l-8 30c-.9 3.3 1.5 6.7 5.1 6.7h73.3l-5.7 21c-1.9 6.2-7.4 10.7-14.2 10.7h-66.7c-20 0-33.3-19-28.3-36.7l10.8-40c4.8-17.6 20.7-29.6 38.6-29.6h47.3c19 0 33.2 17.7 28.3 36.8l-3.2 12c-2.9 11-12.7 17.6-23.2 17.6h-53.4l3.5-13c1.6-6.2 7.2-10.8 14.2-10.8H538c2 0 3.3-1 3.9-3l.7-2.6c.7-2.7-1.3-5.1-3.9-5.1h-32.9c-4.1 0-6.9 2.1-7.8 6zm70.2 68.4l35.6-133.1c1.2-4.7 5.5-7.9 10.4-7.9h18.9c4.5 0 7.7 4 6.5 8.3l-26.5 98.2c-5.1 20.7-24.2 34.5-44.9 34.5"] }; +var faCreativeCommons = { prefix: 'fab', iconName: 'creative-commons', icon: [496, 512, [], "f25e", "M254.8 214.8l-33.2 17.3c-9.4-19.6-25.2-19.9-27.5-19.9-22.1 0-33.2 14.6-33.2 43.8 0 23.6 9.2 43.8 33.2 43.8 14.5 0 24.7-7.1 30.6-21.3l30.6 15.5c-6.2 11.5-25.7 39-65.1 39-22.6 0-74-10.3-74-77.1 0-58.7 43-77.1 72.6-77.1 30.8.2 52.7 12.1 66 36zm143.1 0l-32.8 17.3c-9.5-19.8-25.7-19.9-27.9-19.9-22.1 0-33.2 14.6-33.2 43.8 0 23.6 9.2 43.8 33.2 43.8 14.5 0 24.6-7.1 30.5-21.3l31 15.5c-2.1 3.7-21.4 39-65.1 39-22.7 0-74-9.9-74-77.1 0-58.7 43-77.1 72.6-77.1 30.8.2 52.7 12.1 65.7 36zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z"] }; +var faCreativeCommonsBy = { prefix: 'fab', iconName: 'creative-commons-by', icon: [496, 512, [], "f4e7", "M314.9 194.4v101.4h-28.3v120.5h-77.1V295.9h-28.3V194.4c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7H299c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3zm-101.5-63.7c0-23.3 11.5-35 34.5-35s34.5 11.7 34.5 35c0 23-11.5 34.5-34.5 34.5s-34.5-11.5-34.5-34.5zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z"] }; +var faCreativeCommonsNc = { prefix: 'fab', iconName: 'creative-commons-nc', icon: [496, 512, [], "f4e8", "M247.6 8C387.4 8 496 115.9 496 256c0 147.2-118.5 248-248.4 248C113.1 504 0 393.2 0 256 0 123.1 104.7 8 247.6 8zM55.8 189.1c-7.4 20.4-11.1 42.7-11.1 66.9 0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4v38.1h-28.8V368c-27.5-.3-52.6-10.2-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4zM248.4 52.3c-38.4 0-112.4 8.7-170.5 93l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3v-38.1h28.8v38.1c22.7 1.2 43.4 8.9 62 23L295 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8z"] }; +var faCreativeCommonsNcEu = { prefix: 'fab', iconName: 'creative-commons-nc-eu', icon: [496, 512, [], "f4e9", "M247.7 8C103.6 8 0 124.8 0 256c0 136.3 111.7 248 247.7 248C377.9 504 496 403.1 496 256 496 117 388.4 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-23.2 3.7-45.2 10.9-66l65.7 29.1h-4.7v29.5h23.3c0 6.2-.4 3.2-.4 19.5h-22.8v29.5h27c11.4 67 67.2 101.3 124.6 101.3 26.6 0 50.6-7.9 64.8-15.8l-10-46.1c-8.7 4.6-28.2 10.8-47.3 10.8-28.2 0-58.1-10.9-67.3-50.2h90.3l128.3 56.8c-1.5 2.1-56.2 104.3-178.8 104.3zm-16.7-190.6l-.5-.4.9.4h-.4zm77.2-19.5h3.7v-29.5h-70.3l-28.6-12.6c2.5-5.5 5.4-10.5 8.8-14.3 12.9-15.8 31.1-22.4 51.1-22.4 18.3 0 35.3 5.4 46.1 10l11.6-47.3c-15-6.6-37-12.4-62.3-12.4-39 0-72.2 15.8-95.9 42.3-5.3 6.1-9.8 12.9-13.9 20.1l-81.6-36.1c64.6-96.8 157.7-93.6 170.7-93.6 113 0 203 90.2 203 203.4 0 18.7-2.1 36.3-6.3 52.9l-136.1-60.5z"] }; +var faCreativeCommonsNcJp = { prefix: 'fab', iconName: 'creative-commons-nc-jp', icon: [496, 512, [], "f4ea", "M247.7 8C103.6 8 0 124.8 0 256c0 136.4 111.8 248 247.7 248C377.9 504 496 403.2 496 256 496 117.2 388.5 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-21.1 3-41.2 9-60.3l127 56.5h-27.9v38.6h58.1l5.7 11.8v18.7h-63.8V360h63.8v56h61.7v-56h64.2v-35.7l81 36.1c-1.5 2.2-57.1 98.3-175.2 98.3zm87.6-137.3h-57.6v-18.7l2.9-5.6 54.7 24.3zm6.5-51.4v-17.8h-38.6l63-116H301l-43.4 96-23-10.2-39.6-85.7h-65.8l27.3 51-81.9-36.5c27.8-44.1 82.6-98.1 173.7-98.1 112.8 0 203 90 203 203.4 0 21-2.7 40.6-7.9 59l-101-45.1z"] }; +var faCreativeCommonsNd = { prefix: 'fab', iconName: 'creative-commons-nd', icon: [496, 512, [], "f4eb", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm94 144.3v42.5H162.1V197h180.3zm0 79.8v42.5H162.1v-42.5h180.3z"] }; +var faCreativeCommonsPd = { prefix: 'fab', iconName: 'creative-commons-pd', icon: [496, 512, [], "f4ec", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm0 449.5c-139.2 0-235.8-138-190.2-267.9l78.8 35.1c-2.1 10.5-3.3 21.5-3.3 32.9 0 99 73.9 126.9 120.4 126.9 22.9 0 53.5-6.7 79.4-29.5L297 311.1c-5.5 6.3-17.6 16.7-36.3 16.7-37.8 0-53.7-39.9-53.9-71.9 230.4 102.6 216.5 96.5 217.9 96.8-34.3 62.4-100.6 104.8-176.7 104.8zm194.2-150l-224-100c18.8-34 54.9-30.7 74.7-11l40.4-41.6c-27.1-23.3-58-27.5-78.1-27.5-47.4 0-80.9 20.5-100.7 51.6l-74.9-33.4c36.1-54.9 98.1-91.2 168.5-91.2 111.1 0 201.5 90.4 201.5 201.5 0 18-2.4 35.4-6.8 52-.3-.1-.4-.2-.6-.4z"] }; +var faCreativeCommonsPdAlt = { prefix: 'fab', iconName: 'creative-commons-pd-alt', icon: [496, 512, [], "f4ed", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM135.5 323.3V186h68.2c33.7 0 50.5 15.5 50.5 46.5 0 9-3 46.5-57.1 46.5h-27v44.3h-34.6zm34.1-111.6v41.6h29.2c27.9 0 30-41.6-.9-41.6h-28.3zm93.9 111.6V186h53.2c21.4 0 70 5.2 70 68.6 0 63.5-48.6 68.6-70 68.6h-53.2zm34.1-108.5v79.7h19.9c24 0 34.5-15.3 34.5-39.9 0-42-31.2-39.9-35-39.9l-19.4.1z"] }; +var faCreativeCommonsRemix = { prefix: 'fab', iconName: 'creative-commons-remix', icon: [496, 512, [], "f4ee", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm161.7 207.7l4.9 2.2v70c-7.2 3.6-63.4 27.5-67.3 28.8-6.5-1.8-113.7-46.8-137.3-56.2l-64.2 26.6-63.3-27.5v-63.8l59.3-24.8c-.7-.7-.4 5-.4-70.4l67.3-29.7L361 178.5v61.6l49.1 20.3zm-70.4 81.5v-43.8h-.4v-1.8l-113.8-46.5V295l113.8 46.9v-.4l.4.4zm7.5-57.6l39.9-16.4-36.8-15.5-39 16.4 35.9 15.5zm52.3 38.1v-43L355.2 298v43.4l44.3-19z"] }; +var faCreativeCommonsSa = { prefix: 'fab', iconName: 'creative-commons-sa', icon: [496, 512, [], "f4ef", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM137.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97h62.5c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6-33.1 0-51.7 14.6-55.8 43.8h18.2l-49.2 49.2-49-49.2h19.4z"] }; +var faCreativeCommonsSampling = { prefix: 'fab', iconName: 'creative-commons-sampling', icon: [496, 512, [], "f4f0", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm3.6 53.2c2.8-.3 11.5 1 11.5 11.5l6.6 107.2 4.9-59.3c0-6 4.7-10.6 10.6-10.6 5.9 0 10.6 4.7 10.6 10.6 0 2.5-.5-5.7 5.7 81.5l5.8-64.2c.3-2.9 2.9-9.3 10.2-9.3 3.8 0 9.9 2.3 10.6 8.9l11.5 96.5 5.3-12.8c1.8-4.4 5.2-6.6 10.2-6.6h58v21.3h-50.9l-18.2 44.3c-3.9 9.9-19.5 9.1-20.8-3.1l-4-31.9-7.5 92.6c-.3 3-3 9.3-10.2 9.3-3 0-9.8-2.1-10.6-9.3 0-1.9.6 5.8-6.2-77.9l-5.3 72.2c-1.1 4.8-4.8 9.3-10.6 9.3-2.9 0-9.8-2-10.6-9.3 0-1.9.5 6.7-5.8-87.7l-5.8 94.8c0 6.3-3.6 12.4-10.6 12.4-5.2 0-10.6-4.1-10.6-12l-5.8-87.7c-5.8 92.5-5.3 84-5.3 85.9-1.1 4.8-4.8 9.3-10.6 9.3-3 0-9.8-2.1-10.6-9.3 0-.7-.4-1.1-.4-2.6l-6.2-88.6L182 348c-.7 6.5-6.7 9.3-10.6 9.3-5.8 0-9.6-4.1-10.6-8.9L149.7 272c-2 4-3.5 8.4-11.1 8.4H87.2v-21.3H132l13.7-27.9c4.4-9.9 18.2-7.2 19.9 2.7l3.1 20.4 8.4-97.9c0-6 4.8-10.6 10.6-10.6.5 0 10.6-.2 10.6 12.4l4.9 69.1 6.6-92.6c0-10.1 9.5-10.6 10.2-10.6.6 0 10.6.7 10.6 10.6l5.3 80.6 6.2-97.9c.1-1.1-.6-10.3 9.9-11.5z"] }; +var faCreativeCommonsSamplingPlus = { prefix: 'fab', iconName: 'creative-commons-sampling-plus', icon: [496, 512, [], "f4f1", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm107 205.6c-4.7 0-9 2.8-10.7 7.2l-4 9.5-11-92.8c-1.7-13.9-22-13.4-23.1.4l-4.3 51.4-5.2-68.8c-1.1-14.3-22.1-14.2-23.2 0l-3.5 44.9-5.9-94.3c-.9-14.5-22.3-14.4-23.2 0l-5.1 83.7-4.3-66.3c-.9-14.4-22.2-14.4-23.2 0l-5.3 80.2-4.1-57c-1.1-14.3-22-14.3-23.2-.2l-7.7 89.8-1.8-12.2c-1.7-11.4-17.1-13.6-22-3.3l-13.2 27.7H87.5v23.2h51.3c4.4 0 8.4-2.5 10.4-6.4l10.7 73.1c2 13.5 21.9 13 23.1-.7l3.8-43.6 5.7 78.3c1.1 14.4 22.3 14.2 23.2-.1l4.6-70.4 4.8 73.3c.9 14.4 22.3 14.4 23.2-.1l4.9-80.5 4.5 71.8c.9 14.3 22.1 14.5 23.2.2l4.6-58.6 4.9 64.4c1.1 14.3 22 14.2 23.1.1l6.8-83 2.7 22.3c1.4 11.8 17.7 14.1 22.3 3.1l18-43.4h50.5V258l-58.4.3zm-78 5.2h-21.9v21.9c0 4.1-3.3 7.5-7.5 7.5-4.1 0-7.5-3.3-7.5-7.5v-21.9h-21.9c-4.1 0-7.5-3.3-7.5-7.5 0-4.1 3.4-7.5 7.5-7.5h21.9v-21.9c0-4.1 3.4-7.5 7.5-7.5s7.5 3.3 7.5 7.5v21.9h21.9c4.1 0 7.5 3.3 7.5 7.5 0 4.1-3.4 7.5-7.5 7.5z"] }; +var faCreativeCommonsShare = { prefix: 'fab', iconName: 'creative-commons-share', icon: [496, 512, [], "f4f2", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm101 132.4c7.8 0 13.7 6.1 13.7 13.7v182.5c0 7.7-6.1 13.7-13.7 13.7H214.3c-7.7 0-13.7-6-13.7-13.7v-54h-54c-7.8 0-13.7-6-13.7-13.7V131.1c0-8.2 6.6-12.7 12.4-13.7h136.4c7.7 0 13.7 6 13.7 13.7v54h54zM159.9 300.3h40.7V198.9c0-7.4 5.8-12.6 12-13.7h55.8v-40.3H159.9v155.4zm176.2-88.1H227.6v155.4h108.5V212.2z"] }; +var faCss3 = { prefix: 'fab', iconName: 'css3', icon: [512, 512, [], "f13c", "M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z"] }; +var faCss3Alt = { prefix: 'fab', iconName: 'css3-alt', icon: [384, 512, [], "f38b", "M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z"] }; +var faCuttlefish = { prefix: 'fab', iconName: 'cuttlefish', icon: [440, 512, [], "f38c", "M344 305.5c-17.5 31.6-57.4 54.5-96 54.5-56.6 0-104-47.4-104-104s47.4-104 104-104c38.6 0 78.5 22.9 96 54.5 13.7-50.9 41.7-93.3 87-117.8C385.7 39.1 320.5 8 248 8 111 8 0 119 0 256s111 248 248 248c72.5 0 137.7-31.1 183-80.7-45.3-24.5-73.3-66.9-87-117.8z"] }; +var faDAndD = { prefix: 'fab', iconName: 'd-and-d', icon: [576, 512, [], "f38d", "M82.5 98.9c-.6-17.2 2-33.8 12.7-48.2.3 7.4 1.2 14.5 4.2 21.6 5.9-27.5 19.7-49.3 42.3-65.5-1.9 5.9-3.5 11.8-3 17.7 8.7-7.4 18.8-17.8 44.4-22.7 14.7-2.8 29.7-2 42.1 1 38.5 9.3 61 34.3 69.7 72.3 5.3 23.1.7 45-8.3 66.4-5.2 12.4-12 24.4-20.7 35.1-2-1.9-3.9-3.8-5.8-5.6-42.8-40.8-26.8-25.2-37.4-37.4-1.1-1.2-1-2.2-.1-3.6 8.3-13.5 11.8-28.2 10-44-1.1-9.8-4.3-18.9-11.3-26.2-14.5-15.3-39.2-15-53.5.6-11.4 12.5-14.1 27.4-10.9 43.6.2 1.3.4 2.7 0 3.9-3.4 13.7-4.6 27.6-2.5 41.6.1.5.1 1.1.1 1.6 0 .3-.1.5-.2 1.1-21.8-11-36-28.3-43.2-52.2-8.3 17.8-11.1 35.5-6.6 54.1-15.6-15.2-21.3-34.3-22-55.2zm469.6 123.2c-11.6-11.6-25-20.4-40.1-26.6-12.8-5.2-26-7.9-39.9-7.1-10 .6-19.6 3.1-29 6.4-2.5.9-5.1 1.6-7.7 2.2-4.9 1.2-7.3-3.1-4.7-6.8 3.2-4.6 3.4-4.2 15-12 .6-.4 1.2-.8 2.2-1.5h-2.5c-.6 0-1.2.2-1.9.3-19.3 3.3-30.7 15.5-48.9 29.6-10.4 8.1-13.8 3.8-12-.5 1.4-3.5 3.3-6.7 5.1-10 1-1.8 2.3-3.4 3.5-5.1-.2-.2-.5-.3-.7-.5-27 18.3-46.7 42.4-57.7 73.3.3.3.7.6 1 .9.3-.6.5-1.2.9-1.7 10.4-12.1 22.8-21.8 36.6-29.8 18.2-10.6 37.5-18.3 58.7-20.2 4.3-.4 8.7-.1 13.1-.1-1.8.7-3.5.9-5.3 1.1-18.5 2.4-35.5 9-51.5 18.5-30.2 17.9-54.5 42.2-75.1 70.4-.3.4-.4.9-.7 1.3 14.5 5.3 24 17.3 36.1 25.6.2-.1.3-.2.4-.4l1.2-2.7c12.2-26.9 27-52.3 46.7-74.5 16.7-18.8 38-25.3 62.5-20 5.9 1.3 11.4 4.4 17.2 6.8 2.3-1.4 5.1-3.2 8-4.7 8.4-4.3 17.4-7 26.7-9 14.7-3.1 29.5-4.9 44.5-1.3v-.5c-.5-.4-1.2-.8-1.7-1.4zM316.7 397.6c-39.4-33-22.8-19.5-42.7-35.6-.8.9 0-.2-1.9 3-11.2 19.1-25.5 35.3-44 47.6-10.3 6.8-21.5 11.8-34.1 11.8-21.6 0-38.2-9.5-49.4-27.8-12-19.5-13.3-40.7-8.2-62.6 7.8-33.8 30.1-55.2 38.6-64.3-18.7-6.2-33 1.7-46.4 13.9.8-13.9 4.3-26.2 11.8-37.3-24.3 10.6-45.9 25-64.8 43.9-.3-5.8 5.4-43.7 5.6-44.7.3-2.7-.6-5.3-3-7.4-24.2 24.7-44.5 51.8-56.1 84.6 7.4-5.9 14.9-11.4 23.6-16.2-8.3 22.3-19.6 52.8-7.8 101.1 4.6 19 11.9 36.8 24.1 52.3 2.9 3.7 6.3 6.9 9.5 10.3.2-.2.4-.3.6-.5-1.4-7-2.2-14.1-1.5-21.9 2.2 3.2 3.9 6 5.9 8.6 12.6 16 28.7 27.4 47.2 35.6 25 11.3 51.1 13.3 77.9 8.6 54.9-9.7 90.7-48.6 116-98.8 1-1.8.6-2.9-.9-4.2zm172-46.4c-9.5-3.1-22.2-4.2-28.7-2.9 9.9 4 14.1 6.6 18.8 12 12.6 14.4 10.4 34.7-5.4 45.6-11.7 8.1-24.9 10.5-38.9 9.1-1.2-.1-2.3-.4-3-.6 2.8-3.7 6-7 8.1-10.8 9.4-16.8 5.4-42.1-8.7-56.1-2.1-2.1-4.6-3.9-7-5.9-.3 1.3-.1 2.1.1 2.8 4.2 16.6-8.1 32.4-24.8 31.8-7.6-.3-13.9-3.8-19.6-8.5-19.5-16.1-39.1-32.1-58.5-48.3-5.9-4.9-12.5-8.1-20.1-8.7-4.6-.4-9.3-.6-13.9-.9-5.9-.4-8.8-2.8-10.4-8.4-.9-3.4-1.5-6.8-2.2-10.2-1.5-8.1-6.2-13-14.3-14.2-4.4-.7-8.9-1-13.3-1.5-13-1.4-19.8-7.4-22.6-20.3-5 11-1.6 22.4 7.3 29.9 4.5 3.8 9.3 7.3 13.8 11.2 4.6 3.8 7.4 8.7 7.9 14.8.4 4.7.8 9.5 1.8 14.1 2.2 10.6 8.9 18.4 17 25.1 16.5 13.7 33 27.3 49.5 41.1 17.9 15 13.9 32.8 13 56-.9 22.9 12.2 42.9 33.5 51.2 1 .4 2 .6 3.6 1.1-15.7-18.2-10.1-44.1.7-52.3.3 2.2.4 4.3.9 6.4 9.4 44.1 45.4 64.2 85 56.9 16-2.9 30.6-8.9 42.9-19.8 2-1.8 3.7-4.1 5.9-6.5-19.3 4.6-35.8.1-50.9-10.6.7-.3 1.3-.3 1.9-.3 21.3 1.8 40.6-3.4 57-17.4 19.5-16.6 26.6-42.9 17.4-66-8.3-20.1-23.6-32.3-43.8-38.9zM99.4 179.3c-5.3-9.2-13.2-15.6-22.1-21.3 13.7-.5 26.6.2 39.6 3.7-7-12.2-8.5-24.7-5-38.7 5.3 11.9 13.7 20.1 23.6 26.8 19.7 13.2 35.7 19.6 46.7 30.2 3.4 3.3 6.3 7.1 9.6 10.9-.8-2.1-1.4-4.1-2.2-6-5-10.6-13-18.6-22.6-25-1.8-1.2-2.8-2.5-3.4-4.5-3.3-12.5-3-25.1-.7-37.6 1-5.5 2.8-10.9 4.5-16.3.8-2.4 2.3-4.6 4-6.6.6 6.9 0 25.5 19.6 46 10.8 11.3 22.4 21.9 33.9 32.7 9 8.5 18.3 16.7 25.5 26.8 1.1 1.6 2.2 3.3 3.8 4.7-5-13-14.2-24.1-24.2-33.8-9.6-9.3-19.4-18.4-29.2-27.4-3.3-3-4.6-6.7-5.1-10.9-1.2-10.4 0-20.6 4.3-30.2.5-1 1.1-2 1.9-3.3.5 4.2.6 7.9 1.4 11.6 4.8 23.1 20.4 36.3 49.3 63.5 10 9.4 19.3 19.2 25.6 31.6 4.8 9.3 7.3 19 5.7 29.6-.1.6.5 1.7 1.1 2 6.2 2.6 10 6.9 9.7 14.3 7.7-2.6 12.5-8 16.4-14.5 4.2 20.2-9.1 50.3-27.2 58.7.4-4.5 5-23.4-16.5-27.7-6.8-1.3-12.8-1.3-22.9-2.1 4.7-9 10.4-20.6.5-22.4-24.9-4.6-52.8 1.9-57.8 4.6 8.2.4 16.3 1 23.5 3.3-2 6.5-4 12.7-5.8 18.9-1.9 6.5 2.1 14.6 9.3 9.6 1.2-.9 2.3-1.9 3.3-2.7-3.1 17.9-2.9 15.9-2.8 18.3.3 10.2 9.5 7.8 15.7 7.3-2.5 11.8-29.5 27.3-45.4 25.8 7-4.7 12.7-10.3 15.9-17.9-6.5.8-12.9 1.6-19.2 2.4l-.3-.9c4.7-3.4 8-7.8 10.2-13.1 8.7-21.1-3.6-38-25-39.9-9.1-.8-17.8.8-25.9 5.5 6.2-15.6 17.2-26.6 32.6-34.5-15.2-4.3-8.9-2.7-24.6-6.3 14.6-9.3 30.2-13.2 46.5-14.6-5.2-3.2-48.1-3.6-70.2 20.9 7.9 1.4 15.5 2.8 23.2 4.2-23.8 7-44 19.7-62.4 35.6 1.1-4.8 2.7-9.5 3.3-14.3.6-4.5.8-9.2.1-13.6-1.5-9.4-8.9-15.1-19.7-16.3-7.9-.9-15.6.1-23.3 1.3-.9.1-1.7.3-2.9 0 15.8-14.8 36-21.7 53.1-33.5 6-4.5 6.8-8.2 3-14.9zm128.4 26.8c3.3 16 12.6 25.5 23.8 24.3-4.6-11.3-12.1-19.5-23.8-24.3z"] }; +var faDashcube = { prefix: 'fab', iconName: 'dashcube', icon: [448, 512, [], "f210", "M326.6 104H110.4c-51.1 0-91.2 43.3-91.2 93.5V427c0 50.5 40.1 85 91.2 85h227.2c51.1 0 91.2-34.5 91.2-85V0L326.6 104zM153.9 416.5c-17.7 0-32.4-15.1-32.4-32.8V240.8c0-17.7 14.7-32.5 32.4-32.5h140.7c17.7 0 32 14.8 32 32.5v123.5l51.1 52.3H153.9z"] }; +var faDelicious = { prefix: 'fab', iconName: 'delicious', icon: [448, 512, [], "f1a5", "M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1.5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3 1 1.1 2.1 2.2 3.3 3.3 5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12zM416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192v176z"] }; +var faDeploydog = { prefix: 'fab', iconName: 'deploydog', icon: [512, 512, [], "f38e", "M382.2 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.6 0-33.2 16.4-33.2 32.6zM188.5 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.7 0-33.2 16.4-33.2 32.6zM448 96c17.5 0 32 14.4 32 32v256c0 17.5-14.4 32-32 32H64c-17.5 0-32-14.4-32-32V128c0-17.5 14.4-32 32-32h384m0-32H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h384c35.2 0 64-28.8 64-64V128c0-35.2-28.8-64-64-64z"] }; +var faDeskpro = { prefix: 'fab', iconName: 'deskpro', icon: [480, 512, [], "f38f", "M205.9 512l31.1-38.4c12.3-.2 25.6-1.4 36.5-6.6 38.9-18.6 38.4-61.9 38.3-63.8-.1-5-.8-4.4-28.9-37.4H362c-.2 50.1-7.3 68.5-10.2 75.7-9.4 23.7-43.9 62.8-95.2 69.4-8.7 1.1-32.8 1.2-50.7 1.1zm200.4-167.7c38.6 0 58.5-13.6 73.7-30.9l-175.5-.3-17.4 31.3 119.2-.1zm-43.6-223.9v168.3h-73.5l-32.7 55.5H250c-52.3 0-58.1-56.5-58.3-58.9-1.2-13.2-21.3-11.6-20.1 1.8 1.4 15.8 8.8 40 26.4 57.1h-91c-25.5 0-110.8-26.8-107-114V16.9C0 .9 9.7.3 15 .1h82c.2 0 .3.1.5.1 4.3-.4 50.1-2.1 50.1 43.7 0 13.3 20.2 13.4 20.2 0 0-18.2-5.5-32.8-15.8-43.7h84.2c108.7-.4 126.5 79.4 126.5 120.2zm-132.5 56l64 29.3c13.3-45.5-42.2-71.7-64-29.3z"] }; +var faDeviantart = { prefix: 'fab', iconName: 'deviantart', icon: [320, 512, [], "f1bd", "M320 93.2l-98.2 179.1 7.4 9.5H320v127.7H159.1l-13.5 9.2-43.7 84c-.3 0-8.6 8.6-9.2 9.2H0v-93.2l93.2-179.4-7.4-9.2H0V102.5h156l13.5-9.2 43.7-84c.3 0 8.6-8.6 9.2-9.2H320v93.1z"] }; +var faDigg = { prefix: 'fab', iconName: 'digg', icon: [512, 512, [], "f1a6", "M81.7 172.3H0v174.4h132.7V96h-51v76.3zm0 133.4H50.9v-92.3h30.8v92.3zm297.2-133.4v174.4h81.8v28.5h-81.8V416H512V172.3H378.9zm81.8 133.4h-30.8v-92.3h30.8v92.3zm-235.6 41h82.1v28.5h-82.1V416h133.3V172.3H225.1v174.4zm51.2-133.3h30.8v92.3h-30.8v-92.3zM153.3 96h51.3v51h-51.3V96zm0 76.3h51.3v174.4h-51.3V172.3z"] }; +var faDigitalOcean = { prefix: 'fab', iconName: 'digital-ocean', icon: [512, 512, [], "f391", "M256 504v-96.1c101.8 0 180.8-100.9 141.7-208-14.3-39.6-46.1-71.4-85.8-85.7-107.1-38.8-208.1 39.9-208.1 141.7H8C8 93.7 164.9-32.8 335 20.3c74.2 23.3 133.6 82.4 156.6 156.6C544.8 347.2 418.6 504 256 504zm.3-191.4h-95.6v95.6h95.6v-95.6zm-95.6 95.6H87v73.6h73.7v-73.6zM87 346.6H25.4v61.6H87v-61.6z"] }; +var faDiscord = { prefix: 'fab', iconName: 'discord', icon: [448, 512, [], "f392", "M297.216 243.2c0 15.616-11.52 28.416-26.112 28.416-14.336 0-26.112-12.8-26.112-28.416s11.52-28.416 26.112-28.416c14.592 0 26.112 12.8 26.112 28.416zm-119.552-28.416c-14.592 0-26.112 12.8-26.112 28.416s11.776 28.416 26.112 28.416c14.592 0 26.112-12.8 26.112-28.416.256-15.616-11.52-28.416-26.112-28.416zM448 52.736V512c-64.494-56.994-43.868-38.128-118.784-107.776l13.568 47.36H52.48C23.552 451.584 0 428.032 0 398.848V52.736C0 23.552 23.552 0 52.48 0h343.04C424.448 0 448 23.552 448 52.736zm-72.96 242.688c0-82.432-36.864-149.248-36.864-149.248-36.864-27.648-71.936-26.88-71.936-26.88l-3.584 4.096c43.52 13.312 63.744 32.512 63.744 32.512-60.811-33.329-132.244-33.335-191.232-7.424-9.472 4.352-15.104 7.424-15.104 7.424s21.248-20.224 67.328-33.536l-2.56-3.072s-35.072-.768-71.936 26.88c0 0-36.864 66.816-36.864 149.248 0 0 21.504 37.12 78.08 38.912 0 0 9.472-11.52 17.152-21.248-32.512-9.728-44.8-30.208-44.8-30.208 3.766 2.636 9.976 6.053 10.496 6.4 43.21 24.198 104.588 32.126 159.744 8.96 8.96-3.328 18.944-8.192 29.44-15.104 0 0-12.8 20.992-46.336 30.464 7.68 9.728 16.896 20.736 16.896 20.736 56.576-1.792 78.336-38.912 78.336-38.912z"] }; +var faDiscourse = { prefix: 'fab', iconName: 'discourse', icon: [448, 512, [], "f393", "M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z"] }; +var faDochub = { prefix: 'fab', iconName: 'dochub', icon: [416, 512, [], "f394", "M397.9 160H256V19.6L397.9 160zM304 192v130c0 66.8-36.5 100.1-113.3 100.1H96V84.8h94.7c12 0 23.1.8 33.1 2.5v-84C212.9 1.1 201.4 0 189.2 0H0v512h189.2C329.7 512 400 447.4 400 318.1V192h-96z"] }; +var faDocker = { prefix: 'fab', iconName: 'docker', icon: [640, 512, [], "f395", "M349.9 236.3h-66.1v-59.4h66.1v59.4zm0-204.3h-66.1v60.7h66.1V32zm78.2 144.8H362v59.4h66.1v-59.4zm-156.3-72.1h-66.1v60.1h66.1v-60.1zm78.1 0h-66.1v60.1h66.1v-60.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4.4 67.6.1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1l-13.3-8.9zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm-78.1-72.1h-66.1v60.1h66.1v-60.1z"] }; +var faDraft2digital = { prefix: 'fab', iconName: 'draft2digital', icon: [480, 512, [], "f396", "M369.9 425.4V371l47.1 27.2-47.1 27.2zM82.4 380.6c25.5-27.3 97.7-104.7 150.9-170 35.1-43.1 40.3-82.4 28.4-112.7-7.4-18.8-17.5-30.2-24.3-35.7 45.3 2.1 68 23.4 82.2 38.3 0 0 42.4 48.2 5.8 113.3-37 65.9-110.9 147.5-128.5 166.7H82.4zm51.8-219.2c0 12.4-10 22.4-22.4 22.4-12.4 0-22.4-10-22.4-22.4 0-12.4 10-22.4 22.4-22.4 12.4 0 22.4 10.1 22.4 22.4M336 315.9v64.7h-91.3c30.8-35 81.8-95.9 111.8-149.3 35.2-62.6 16.1-123.4-12.8-153.3-4.4-4.6-62.2-62.9-166-41.2-59.1 12.4-89.4 43.4-104.3 67.3-13.1 20.9-17 39.8-18.2 47.7-5.5 33 19.4 67.1 56.7 67.1 31.7 0 57.3-25.7 57.3-57.4 0-27.1-19.7-52.1-48-56.8 1.8-7.3 17.7-21.1 26.3-24.7 41.1-17.3 78 5.2 83.3 33.5 8.3 44.3-37.1 90.4-69.7 127.6C84.5 328.1 18.3 396.8 0 415.9l336-.1V480l144-81.9-144-82.2z"] }; +var faDribbble = { prefix: 'fab', iconName: 'dribbble', icon: [512, 512, [], "f17d", "M256 8C119.252 8 8 119.252 8 256s111.252 248 248 248 248-111.252 248-248S392.748 8 256 8zm163.97 114.366c29.503 36.046 47.369 81.957 47.835 131.955-6.984-1.477-77.018-15.682-147.502-6.818-5.752-14.041-11.181-26.393-18.617-41.614 78.321-31.977 113.818-77.482 118.284-83.523zM396.421 97.87c-3.81 5.427-35.697 48.286-111.021 76.519-34.712-63.776-73.185-116.168-79.04-124.008 67.176-16.193 137.966 1.27 190.061 47.489zm-230.48-33.25c5.585 7.659 43.438 60.116 78.537 122.509-99.087 26.313-186.36 25.934-195.834 25.809C62.38 147.205 106.678 92.573 165.941 64.62zM44.17 256.323c0-2.166.043-4.322.108-6.473 9.268.19 111.92 1.513 217.706-30.146 6.064 11.868 11.857 23.915 17.174 35.949-76.599 21.575-146.194 83.527-180.531 142.306C64.794 360.405 44.17 310.73 44.17 256.323zm81.807 167.113c22.127-45.233 82.178-103.622 167.579-132.756 29.74 77.283 42.039 142.053 45.189 160.638-68.112 29.013-150.015 21.053-212.768-27.882zm248.38 8.489c-2.171-12.886-13.446-74.897-41.152-151.033 66.38-10.626 124.7 6.768 131.947 9.055-9.442 58.941-43.273 109.844-90.795 141.978z"] }; +var faDribbbleSquare = { prefix: 'fab', iconName: 'dribbble-square', icon: [448, 512, [], "f397", "M90.2 228.2c8.9-42.4 37.4-77.7 75.7-95.7 3.6 4.9 28 38.8 50.7 79-64 17-120.3 16.8-126.4 16.7zM314.6 154c-33.6-29.8-79.3-41.1-122.6-30.6 3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4zM140.1 364c40.5 31.6 93.3 36.7 137.3 18-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6zm98.8-108.2c-3.4-7.8-7.2-15.5-11.1-23.2C159.6 253 93.4 252.2 87.4 252c0 1.4-.1 2.8-.1 4.2 0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8zm34.9 16.3c17.9 49.1 25.1 89.1 26.5 97.4 30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8zm-20.3-48.4c4.8 9.8 8.3 17.8 12 26.8 45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 176c0-88.2-71.8-160-160-160S64 167.8 64 256s71.8 160 160 160 160-71.8 160-160z"] }; +var faDropbox = { prefix: 'fab', iconName: 'dropbox', icon: [528, 512, [], "f16b", "M264.4 116.3l-132 84.3 132 84.3-132 84.3L0 284.1l132.3-84.3L0 116.3 132.3 32l132.1 84.3zM131.6 395.7l132-84.3 132 84.3-132 84.3-132-84.3zm132.8-111.6l132-84.3-132-83.6L395.7 32 528 116.3l-132.3 84.3L528 284.8l-132.3 84.3-131.3-85z"] }; +var faDrupal = { prefix: 'fab', iconName: 'drupal', icon: [448, 512, [], "f1a9", "M319.5 114.7c-22.2-14-43.5-19.5-64.7-33.5-13-8.8-31.3-30-46.5-48.3-2.7 29.3-11.5 41.2-22 49.5-21.3 17-34.8 22.2-53.5 32.3C117 123 32 181.5 32 290.5 32 399.7 123.8 480 225.8 480 327.5 480 416 406 416 294c0-112.3-83-171-96.5-179.3zm2.5 325.6c-20.1 20.1-90.1 28.7-116.7 4.2-4.8-4.8.3-12 6.5-12 0 0 17 13.3 51.5 13.3 27 0 46-7.7 54.5-14 6.1-4.6 8.4 4.3 4.2 8.5zm-54.5-52.6c8.7-3.6 29-3.8 36.8 1.3 4.1 2.8 16.1 18.8 6.2 23.7-8.4 4.2-1.2-15.7-26.5-15.7-14.7 0-19.5 5.2-26.7 11-7 6-9.8 8-12.2 4.7-6-8.2 15.9-22.3 22.4-25zM360 405c-15.2-1-45.5-48.8-65-49.5-30.9-.9-104.1 80.7-161.3 42-38.8-26.6-14.6-104.8 51.8-105.2 49.5-.5 83.8 49 108.5 48.5 21.3-.3 61.8-41.8 81.8-41.8 48.7 0 23.3 109.3-15.8 106z"] }; +var faDyalog = { prefix: 'fab', iconName: 'dyalog', icon: [416, 512, [], "f399", "M0 32v119.2h64V96h107.2C284.6 96 352 176.2 352 255.9 352 332 293.4 416 171.2 416H0v64h171.2C331.9 480 416 367.3 416 255.9c0-58.7-22.1-113.4-62.3-154.3C308.9 56 245.7 32 171.2 32H0z"] }; +var faEarlybirds = { prefix: 'fab', iconName: 'earlybirds', icon: [480, 512, [], "f39a", "M313.2 47.5c1.2-13 21.3-14 36.6-8.7.9.3 26.2 9.7 19 15.2-27.9-7.4-56.4 18.2-55.6-6.5zm-201 6.9c30.7-8.1 62 20 61.1-7.1-1.3-14.2-23.4-15.3-40.2-9.6-1 .3-28.7 10.5-20.9 16.7zM319.4 160c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-159.7 0c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm318.5 163.2c-9.9 24-40.7 11-63.9-1.2-13.5 69.1-58.1 111.4-126.3 124.2.3.9-2-.1 24 1 33.6 1.4 63.8-3.1 97.4-8-19.8-13.8-11.4-37.1-9.8-38.1 1.4-.9 14.7 1.7 21.6 11.5 8.6-12.5 28.4-14.8 30.2-13.6 1.6 1.1 6.6 20.9-6.9 34.6 4.7-.9 8.2-1.6 9.8-2.1 2.6-.8 17.7 11.3 3.1 13.3-14.3 2.3-22.6 5.1-47.1 10.8-45.9 10.7-85.9 11.8-117.7 12.8l1 11.6c3.8 18.1-23.4 24.3-27.6 6.2.8 17.9-27.1 21.8-28.4-1l-.5 5.3c-.7 18.4-28.4 17.9-28.3-.6-7.5 13.5-28.1 6.8-26.4-8.5l1.2-12.4c-36.7.9-59.7 3.1-61.8 3.1-20.9 0-20.9-31.6 0-31.6 2.4 0 27.7 1.3 63.2 2.8-61.1-15.5-103.7-55-114.9-118.2-25 12.8-57.5 26.8-68.2.8-10.5-25.4 21.5-42.6 66.8-73.4.7-6.6 1.6-13.3 2.7-19.8-14.4-19.6-11.6-36.3-16.1-60.4-16.8 2.4-23.2-9.1-23.6-23.1.3-7.3 2.1-14.9 2.4-15.4 1.1-1.8 10.1-2 12.7-2.6 6-31.7 50.6-33.2 90.9-34.5 19.7-21.8 45.2-41.5 80.9-48.3C203.3 29 215.2 8.5 216.2 8c1.7-.8 21.2 4.3 26.3 23.2 5.2-8.8 18.3-11.4 19.6-10.7 1.1.6 6.4 15-4.9 25.9 40.3 3.5 72.2 24.7 96 50.7 36.1 1.5 71.8 5.9 77.1 34 2.7.6 11.6.8 12.7 2.6.3.5 2.1 8.1 2.4 15.4-.5 13.9-6.8 25.4-23.6 23.1-3.2 17.3-2.7 32.9-8.7 47.7 2.4 11.7 4 23.8 4.8 36.4 37 25.4 70.3 42.5 60.3 66.9zM207.4 159.9c.9-44-37.9-42.2-78.6-40.3-21.7 1-38.9 1.9-45.5 13.9-11.4 20.9 5.9 92.9 23.2 101.2 9.8 4.7 73.4 7.9 86.3-7.1 8.2-9.4 15-49.4 14.6-67.7zm52 58.3c-4.3-12.4-6-30.1-15.3-32.7-2-.5-9-.5-11 0-10 2.8-10.8 22.1-17 37.2 15.4 0 19.3 9.7 23.7 9.7 4.3 0 6.3-11.3 19.6-14.2zm135.7-84.7c-6.6-12.1-24.8-12.9-46.5-13.9-40.2-1.9-78.2-3.8-77.3 40.3-.5 18.3 5 58.3 13.2 67.8 13 14.9 76.6 11.8 86.3 7.1 15.8-7.6 36.5-78.9 24.3-101.3z"] }; +var faEbay = { prefix: 'fab', iconName: 'ebay', icon: [640, 512, [], "f4f4", "M405.2 263.8c-29.1.9-47.2 6.2-47.2 25.3 0 12.4 9.9 25.8 35 25.8 33.7 0 51.6-18.4 51.6-48.4v-3.3c-11.8 0-26.3.1-39.4.6m71.5 39.7c0 9.3.3 18.6 1 26.8h-29.8c-.8-6.9-1.1-13.6-1.1-20.2-16.1 19.8-35.3 25.5-61.9 25.5-39.5 0-60.6-20.9-60.6-45 0-35 28.8-47.3 78.6-48.4 13.7-.3 29-.4 41.7-.4v-3.4c0-23.4-15-33-41-33-19.3 0-33.6 8-35 21.8h-33.7c3.6-34.4 39.7-43.1 71.5-43.1 38.1 0 70.3 13.5 70.3 53.8v65.6zm-349-56.8c-2.3-54.7-87.5-56.6-94.4 0h94.4zm-95 21.4c3.5 58.3 79.2 57.4 91.2 21.6H157c-6.4 34.4-43 46.1-74.4 46.1-57.2 0-82.5-31.5-82.5-74 0-46.8 26.2-77.6 83-77.6 45.3 0 78.4 23.7 78.4 75.4v8.5H32.7zm211 45.7c29.8 0 50.2-21.5 50.2-53.8 0-32.4-20.4-53.8-50.2-53.8-29.6 0-50.2 21.4-50.2 53.8 0 32.3 20.6 53.8 50.2 53.8m-82.2-186h32.1v80.6c15.7-18.7 37.4-24.2 58.7-24.2 35.7 0 75.4 24.1 75.4 76.2 0 43.6-31.5 75.4-76 75.4-23.3 0-45.1-8.3-58.7-24.9 0 6.6-.4 13.2-1.1 19.5h-31.5c.5-10.2 1.1-22.8 1.1-33.1V127.8zM640 189.5l-99.2 194.8h-35.9l28.5-54.1-74.6-140.7h37.5l54.9 109.9L606 189.5h34z"] }; +var faEdge = { prefix: 'fab', iconName: 'edge', icon: [512, 512, [], "f282", "M25.714 228.163c.111-.162.23-.323.342-.485-.021.162-.045.323-.065.485h-.277zm460.572 15.508c0-44.032-7.754-84.465-28.801-122.405C416.498 47.879 343.912 8.001 258.893 8.001 118.962 7.724 40.617 113.214 26.056 227.679c42.429-61.312 117.073-121.376 220.375-124.966 0 0 109.666 0 99.419 104.957H169.997c6.369-37.386 18.554-58.986 34.339-78.926-75.048 34.893-121.85 96.096-120.742 188.315.83 71.448 50.124 144.836 120.743 171.976 83.357 31.847 192.776 7.2 240.132-21.324V363.307c-80.864 56.494-270.871 60.925-272.255-67.572h314.073v-52.064z"] }; +var faElementor = { prefix: 'fab', iconName: 'elementor', icon: [448, 512, [], "f430", "M425.6 32H22.4C10 32 0 42 0 54.4v403.2C0 470 10 480 22.4 480h403.2c12.4 0 22.4-10 22.4-22.4V54.4C448 42 438 32 425.6 32M164.3 355.5h-39.8v-199h39.8v199zm159.3 0H204.1v-39.8h119.5v39.8zm0-79.6H204.1v-39.8h119.5v39.8zm0-79.7H204.1v-39.8h119.5v39.8z"] }; +var faEmber = { prefix: 'fab', iconName: 'ember', icon: [640, 512, [], "f423", "M639.9 254.6c-1.1-10.7-10.7-6.8-10.7-6.8s-15.6 12.1-29.3 10.7c-13.7-1.3-9.4-32-9.4-32s3-28.1-5.1-30.4c-8.1-2.4-18 7.3-18 7.3s-12.4 13.7-18.3 31.2l-1.6.5s1.9-30.6-.3-37.6c-1.6-3.5-16.4-3.2-18.8 3s-14.2 49.2-15 67.2c0 0-23.1 19.6-43.3 22.8s-25-9.4-25-9.4 54.8-15.3 52.9-59.1c-1.9-43.8-44.2-27.6-49-24-4.6 3.5-29.4 18.4-36.6 59.7-.2 1.4-.7 7.5-.7 7.5s-21.2 14.2-33 18c0 0 33-55.6-7.3-80.9-18.3-11-32.8 12.1-32.8 12.1s54.5-60.7 42.5-112c-5.8-24.4-18-27.1-29.2-23.1-17 6.7-23.5 16.7-23.5 16.7s-22 32-27.1 79.5-12.6 105.1-12.6 105.1-10.5 10.2-20.2 10.7-5.4-28.7-5.4-28.7 7.5-44.6 7-52.1-1.1-11.6-9.9-14.2c-8.9-2.7-18.5 8.6-18.5 8.6s-25.5 38.7-27.7 44.6l-1.3 2.4-1.3-1.6s18-52.7.8-53.5c-17.2-.8-28.5 18.8-28.5 18.8s-19.6 32.8-20.4 36.5l-1.3-1.6s8.1-38.2 6.4-47.6c-1.6-9.4-10.5-7.5-10.5-7.5s-11.3-1.3-14.2 5.9-13.7 55.3-15 70.7c0 0-28.2 20.2-46.8 20.4-18.5.3-16.7-11.8-16.7-11.8s68-23.3 49.4-69.2c-8.3-11.8-18-15.5-31.7-15.3-13.7.3-30.3 8.6-41.3 33.3-5.3 11.8-6.8 23-7.8 31.5 0 0-12.3 2.4-18.8-2.9s-10 0-10 0-11.2 14-.1 18.3 28.1 6.1 28.1 6.1c1.6 7.5 6.2 19.5 19.6 29.7 20.2 15.3 58.8-1.3 58.8-1.3l15.9-8.8s.5 14.6 12.1 16.7c11.6 2.1 16.4 1 36.5-47.9 11.8-25 12.6-23.6 12.6-23.6l1.3-.3s-9.1 46.8-5.6 59.7C187.7 319.4 203 318 203 318s8.3 2.4 15-21.2c6.7-23.6 19.6-49.9 19.6-49.9h1.6s-5.6 48.1 3 63.7c8.6 15.6 30.9 5.3 30.9 5.3s15.6-7.8 18-10.2c0 0 18.5 15.8 44.6 12.9 58.3-11.5 79.1-25.9 79.1-25.9s10 24.4 41.1 26.7c35.5 2.7 54.8-18.6 54.8-18.6s-.3 13.5 12.1 18.6c12.4 5.1 20.7-22.8 20.7-22.8l20.7-57.2h1.9s1.1 37.3 21.5 43.2 47-13.7 47-13.7 6.4-3.5 5.3-14.3zm-578 5.3c.8-32 21.8-45.9 29-39 7.3 7 4.6 22-9.1 31.4-13.7 9.5-19.9 7.6-19.9 7.6zm272.8-123.8s19.1-49.7 23.6-25.5-40 96.2-40 96.2c.5-16.2 16.4-70.7 16.4-70.7zm22.8 138.4c-12.6 33-43.3 19.6-43.3 19.6s-3.5-11.8 6.4-44.9 33.3-20.2 33.3-20.2 16.2 12.4 3.6 45.5zm84.6-14.6s-3-10.5 8.1-30.6c11-20.2 19.6-9.1 19.6-9.1s9.4 10.2-1.3 25.5-26.4 14.2-26.4 14.2z"] }; +var faEmpire = { prefix: 'fab', iconName: 'empire', icon: [496, 512, [], "f1d1", "M287.6 54.2c-10.8-2.2-22.1-3.3-33.5-3.6V32.4c78.1 2.2 146.1 44 184.6 106.6l-15.8 9.1c-6.1-9.7-12.7-18.8-20.2-27.1l-18 15.5c-26-29.6-61.4-50.7-101.9-58.4l4.8-23.9zM53.4 322.4l23-7.7c-6.4-18.3-10-38.2-10-58.7s3.3-40.4 9.7-58.7l-22.7-7.7c3.6-10.8 8.3-21.3 13.6-31l-15.8-9.1C34 181 24.1 217.5 24.1 256s10 75 27.1 106.6l15.8-9.1c-5.3-10-9.7-20.3-13.6-31.1zM213.1 434c-40.4-8-75.8-29.1-101.9-58.7l-18 15.8c-7.5-8.6-14.4-17.7-20.2-27.4l-16 9.4c38.5 62.3 106.8 104.3 184.9 106.6v-18.3c-11.3-.3-22.7-1.7-33.5-3.6l4.7-23.8zM93.3 120.9l18 15.5c26-29.6 61.4-50.7 101.9-58.4l-4.7-23.8c10.8-2.2 22.1-3.3 33.5-3.6V32.4C163.9 34.6 95.9 76.4 57.4 139l15.8 9.1c6-9.7 12.6-18.9 20.1-27.2zm309.4 270.2l-18-15.8c-26 29.6-61.4 50.7-101.9 58.7l4.7 23.8c-10.8 1.9-22.1 3.3-33.5 3.6v18.3c78.1-2.2 146.4-44.3 184.9-106.6l-16.1-9.4c-5.7 9.7-12.6 18.8-20.1 27.4zM496 256c0 137-111 248-248 248S0 393 0 256 111 8 248 8s248 111 248 248zm-12.2 0c0-130.1-105.7-235.8-235.8-235.8S12.2 125.9 12.2 256 117.9 491.8 248 491.8 483.8 386.1 483.8 256zm-39-106.6l-15.8 9.1c5.3 9.7 10 20.2 13.6 31l-22.7 7.7c6.4 18.3 9.7 38.2 9.7 58.7s-3.6 40.4-10 58.7l23 7.7c-3.9 10.8-8.3 21-13.6 31l15.8 9.1C462 331 471.9 294.5 471.9 256s-9.9-75-27.1-106.6zm-183 177.7c16.3-3.3 30.4-11.6 40.7-23.5l51.2 44.8c11.9-13.6 21.3-29.3 27.1-46.8l-64.2-22.1c2.5-7.5 3.9-15.2 3.9-23.5s-1.4-16.1-3.9-23.5l64.5-22.1c-6.1-17.4-15.5-33.2-27.4-46.8l-51.2 44.8c-10.2-11.9-24.4-20.5-40.7-23.8l13.3-66.4c-8.6-1.9-17.7-2.8-27.1-2.8-9.4 0-18.5.8-27.1 2.8l13.3 66.4c-16.3 3.3-30.4 11.9-40.7 23.8l-51.2-44.8c-11.9 13.6-21.3 29.3-27.4 46.8l64.5 22.1c-2.5 7.5-3.9 15.2-3.9 23.5s1.4 16.1 3.9 23.5l-64.2 22.1c5.8 17.4 15.2 33.2 27.1 46.8l51.2-44.8c10.2 11.9 24.4 20.2 40.7 23.5l-13.3 66.7c8.6 1.7 17.7 2.8 27.1 2.8 9.4 0 18.5-1.1 27.1-2.8l-13.3-66.7z"] }; +var faEnvira = { prefix: 'fab', iconName: 'envira', icon: [448, 512, [], "f299", "M0 32c477.6 0 366.6 317.3 367.1 366.3L448 480h-26l-70.4-71.2c-39 4.2-124.4 34.5-214.4-37C47 300.3 52 214.7 0 32zm79.7 46c-49.7-23.5-5.2 9.2-5.2 9.2 45.2 31.2 66 73.7 90.2 119.9 31.5 60.2 79 139.7 144.2 167.7 65 28 34.2 12.5 6-8.5-28.2-21.2-68.2-87-91-130.2-31.7-60-61-118.6-144.2-158.1z"] }; +var faErlang = { prefix: 'fab', iconName: 'erlang', icon: [640, 512, [], "f39d", "M21.7 246.4c-.1 86.8 29 159.5 78.7 212.1H0v-405h87.2c-41.5 50.2-65.6 116.2-65.5 192.9zM640 53.6h-83.6c31.4 42.7 48.7 97.5 46.2 162.7.5 6 .5 11.7 0 24.1H230.2c-.2 109.7 38.9 194.9 138.6 195.3 68.5-.3 118-51 151.9-106.1l96.4 48.2c-17.4 30.9-36.5 57.8-57.9 80.8H640v-405zm-80.8 405s0-.1 0 0h-.2.2zm-3.1-405h.3l-.1-.1-.2.1zm-230.7 9.6c-45.9.1-85.1 33.5-89.2 83.2h169.9c-1.1-49.7-34.5-83.1-80.7-83.2z"] }; +var faEthereum = { prefix: 'fab', iconName: 'ethereum', icon: [320, 512, [], "f42e", "M311.9 260.8L160 353.6 8 260.8 160 0l151.9 260.8zM160 383.4L8 290.6 160 512l152-221.4-152 92.8z"] }; +var faEtsy = { prefix: 'fab', iconName: 'etsy', icon: [384, 512, [], "f2d7", "M384 348c-1.75 10.75-13.75 110-15.5 132-117.879-4.299-219.895-4.743-368.5 0v-25.5c45.457-8.948 60.627-8.019 61-35.25 1.793-72.322 3.524-244.143 0-322-1.029-28.46-12.13-26.765-61-36v-25.5c73.886 2.358 255.933 8.551 362.999-3.75-3.5 38.25-7.75 126.5-7.75 126.5H332C320.947 115.665 313.241 68 277.25 68h-137c-10.25 0-10.75 3.5-10.75 9.75V241.5c58 .5 88.5-2.5 88.5-2.5 29.77-.951 27.56-8.502 40.75-65.251h25.75c-4.407 101.351-3.91 61.829-1.75 160.25H257c-9.155-40.086-9.065-61.045-39.501-61.5 0 0-21.5-2-88-2v139c0 26 14.25 38.25 44.25 38.25H263c63.636 0 66.564-24.996 98.751-99.75H384z"] }; +var faExpeditedssl = { prefix: 'fab', iconName: 'expeditedssl', icon: [496, 512, [], "f23e", "M248 43.4C130.6 43.4 35.4 138.6 35.4 256S130.6 468.6 248 468.6 460.6 373.4 460.6 256 365.4 43.4 248 43.4zm-97.4 132.9c0-53.7 43.7-97.4 97.4-97.4s97.4 43.7 97.4 97.4v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6c0-82.1-124-82.1-124 0v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6zM389.7 380c0 9.7-8 17.7-17.7 17.7H124c-9.7 0-17.7-8-17.7-17.7V238.3c0-9.7 8-17.7 17.7-17.7h248c9.7 0 17.7 8 17.7 17.7V380zm-248-137.3v132.9c0 2.5-1.9 4.4-4.4 4.4h-8.9c-2.5 0-4.4-1.9-4.4-4.4V242.7c0-2.5 1.9-4.4 4.4-4.4h8.9c2.5 0 4.4 1.9 4.4 4.4zm141.7 48.7c0 13-7.2 24.4-17.7 30.4v31.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-31.6c-10.5-6.1-17.7-17.4-17.7-30.4 0-19.7 15.8-35.4 35.4-35.4s35.5 15.8 35.5 35.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 478.3C121 486.3 17.7 383 17.7 256S121 25.7 248 25.7 478.3 129 478.3 256 375 486.3 248 486.3z"] }; +var faFacebook = { prefix: 'fab', iconName: 'facebook', icon: [448, 512, [], "f09a", "M448 56.7v398.5c0 13.7-11.1 24.7-24.7 24.7H309.1V306.5h58.2l8.7-67.6h-67v-43.2c0-19.6 5.4-32.9 33.5-32.9h35.8v-60.5c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9h-58.4v67.6h58.4V480H24.7C11.1 480 0 468.9 0 455.3V56.7C0 43.1 11.1 32 24.7 32h398.5c13.7 0 24.8 11.1 24.8 24.7z"] }; +var faFacebookF = { prefix: 'fab', iconName: 'facebook-f', icon: [264, 512, [], "f39e", "M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"] }; +var faFacebookMessenger = { prefix: 'fab', iconName: 'facebook-messenger', icon: [448, 512, [], "f39f", "M224 32C15.9 32-77.5 278 84.6 400.6V480l75.7-42c142.2 39.8 285.4-59.9 285.4-198.7C445.8 124.8 346.5 32 224 32zm23.4 278.1L190 250.5 79.6 311.6l121.1-128.5 57.4 59.6 110.4-61.1-121.1 128.5z"] }; +var faFacebookSquare = { prefix: 'fab', iconName: 'facebook-square', icon: [448, 512, [], "f082", "M448 80v352c0 26.5-21.5 48-48 48h-85.3V302.8h60.6l8.7-67.6h-69.3V192c0-19.6 5.4-32.9 33.5-32.9H384V98.7c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9H184v67.6h60.9V480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z"] }; +var faFirefox = { prefix: 'fab', iconName: 'firefox', icon: [480, 512, [], "f269", "M478.1 235.3c-.7-4.5-1.4-7.1-1.4-7.1s-1.8 2-4.7 5.9c-.9-10.7-2.8-21.2-5.8-31.6-3.7-12.9-8.5-25.4-14.5-37.4-3.8-8-8.2-15.6-13.3-22.8-1.8-2.7-3.7-5.4-5.6-7.9-8.8-14.4-19-23.3-30.7-40-7.6-12.8-12.9-26.9-15.4-41.6-3.2 8.9-5.7 18-7.4 27.3-12.1-12.2-22.5-20.8-28.9-26.7C319.4 24.2 323 9.1 323 9.1S264.7 74.2 289.9 142c8.7 23 23.8 43.1 43.4 57.9 24.4 20.2 50.8 36 64.7 76.6-11.2-21.3-28.1-39.2-48.8-51.5 6.2 14.7 9.4 30.6 9.3 46.5 0 61-49.6 110.5-110.6 110.4-8.3 0-16.5-.9-24.5-2.8-9.5-1.8-18.7-4.9-27.4-9.3-12.9-7.8-24-18.1-32.8-30.3l-.2-.3 2 .7c4.6 1.6 9.2 2.8 14 3.7 18.7 4 38.3 1.7 55.6-6.6 17.5-9.7 28-16.9 36.6-14h.2c8.4 2.7 15-5.5 9-14-10.4-13.4-27.4-20-44.2-17-17.5 2.5-33.5 15-56.4 2.9-1.5-.8-2.9-1.6-4.3-2.5-1.6-.9 4.9 1.3 3.4.3-5-2.5-9.8-5.4-14.4-8.6-.3-.3 3.5 1.1 3.1.8-5.9-4-11-9.2-15-15.2-4.1-7.4-4.5-16.4-1-24.1 2.1-3.8 5.4-6.9 9.3-8.7 3 1.5 4.8 2.6 4.8 2.6s-1.3-2.5-2.1-3.8c.3-.1.5 0 .8-.2 2.6 1.1 8.3 4 11.4 5.8 2.1 1.1 3.8 2.7 5.2 4.7 0 0 1-.5.3-2.7-1.1-2.7-2.9-5-5.4-6.6h.2c2.3 1.2 4.5 2.6 6.6 4.1 1.9-4.4 2.8-9.2 2.6-14 .2-2.6-.2-5.3-1.1-7.8-.8-1.6.5-2.2 1.9-.5-.2-1.3-.7-2.5-1.2-3.7v-.1s.8-1.1 1.2-1.5c1-1 2.1-1.9 3.4-2.7 7.2-4.5 14.8-8.4 22.7-11.6 6.4-2.8 11.7-4.9 12.8-5.6 1.6-1 3.1-2.2 4.5-3.5 5.3-4.5 9-10.8 10.2-17.7.1-.9.2-1.8.3-2.8v-1.5c-.9-3.5-6.9-6.1-38.4-9.1-11.1-1.8-20-10.1-22.5-21.1v.1c-.4 1.1-.9 2.3-1.3 3.5.4-1.2.8-2.3 1.3-3.5v-.2c6-15.7 16.8-29.1 30.8-38.3.8-.7-3.2.2-2.4-.5 2.7-1.3 5.4-2.5 8.2-3.5 1.4-.6-6-3.4-12.6-2.7-4 .2-8 1.2-11.7 2.8 1.6-1.3 6.2-3.1 5.1-3.1-8.4 1.6-16.5 4.7-23.9 9 0-.8.1-1.5.5-2.2-5.9 2.5-11 6.5-15 11.5.1-.9.2-1.8.2-2.7-2.7 2-5.2 4.3-7.3 6.9l-.1.1c-17.4-6.7-36.3-8.3-54.6-4.7l-.2-.1h.2c-3.8-3.1-7.1-6.7-9.7-10.9l-.2.1-.4-.2c-1.2-1.8-2.4-3.8-3.7-6-.9-1.6-1.8-3.4-2.7-5.2 0-.1-.1-.2-.2-.2-.4 0-.6 1.7-.9 1.3v-.1c-3.2-8.3-4.7-17.2-4.4-26.2l-.2.1c-5.1 3.5-9 8.6-11.1 14.5-.9 2.1-1.6 3.3-2.2 4.5v-.5c.1-1.1.6-3.3.5-3.1-.1.2-.2.3-.3.4-1.5 1.7-2.9 3.7-3.9 5.8-.9 1.9-1.7 3.9-2.3 5.9-.1.3 0-.3 0-1s.1-2 0-1.7l-.3.7c-6.7 14.9-10.9 30.8-12.4 47.1-.4 2.8-.6 5.6-.5 8.3v.2c-4.8 5.2-9 11-12.7 17.1-12.1 20.4-21.1 42.5-26.8 65.6 4-8.8 8.8-17.2 14.3-25.1C5.5 228.5 0 257.4 0 286.6c1.8-8.6 4.2-17 7-25.3-1.7 34.5 4.9 68.9 19.4 100.3 19.4 43.5 51.6 80 92.3 104.7 16.6 11.2 34.7 19.9 53.8 25.8 2.5.9 5.1 1.8 7.7 2.7-.8-.3-1.6-.7-2.4-1 22.6 6.8 46.2 10.3 69.8 10.3 83.7 0 111.3-31.9 113.8-35 4.1-3.7 7.5-8.2 9.9-13.3 1.6-.7 3.2-1.4 4.9-2.1l1-.5 1.9-.9c12.6-5.9 24.5-13.4 35.3-22.1 16.3-11.7 27.9-28.7 32.9-48.1 3-7.1 3.1-15 .4-22.2.9-1.4 1.7-2.8 2.7-4.3 18-28.9 28.2-61.9 29.6-95.9v-2.8c0-7.3-.6-14.5-1.9-21.6z"] }; +var faFirstOrder = { prefix: 'fab', iconName: 'first-order', icon: [448, 512, [], "f2b0", "M12.9 229.2c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4h-.2zM224 96.6c-7.1 0-14.6.6-21.4 1.7l3.7 67.4-22-64c-14.3 3.7-27.7 9.4-40 16.6l29.4 61.4-45.1-50.9c-11.4 8.9-21.7 19.1-30.6 30.9l50.6 45.4-61.1-29.7c-7.1 12.3-12.9 25.7-16.6 40l64.3 22.6-68-4c-.9 7.1-1.4 14.6-1.4 22s.6 14.6 1.4 21.7l67.7-4-64 22.6c3.7 14.3 9.4 27.7 16.6 40.3l61.1-29.7L97.7 352c8.9 11.7 19.1 22.3 30.9 30.9l44.9-50.9-29.5 61.4c12.3 7.4 25.7 13.1 40 16.9l22.3-64.6-4 68c7.1 1.1 14.6 1.7 21.7 1.7 7.4 0 14.6-.6 21.7-1.7l-4-68.6 22.6 65.1c14.3-4 27.7-9.4 40-16.9L274.9 332l44.9 50.9c11.7-8.9 22-19.1 30.6-30.9l-50.6-45.1 61.1 29.4c7.1-12.3 12.9-25.7 16.6-40.3l-64-22.3 67.4 4c1.1-7.1 1.4-14.3 1.4-21.7s-.3-14.9-1.4-22l-67.7 4 64-22.3c-3.7-14.3-9.1-28-16.6-40.3l-60.9 29.7 50.6-45.4c-8.9-11.7-19.1-22-30.6-30.9l-45.1 50.9 29.4-61.1c-12.3-7.4-25.7-13.1-40-16.9L241.7 166l4-67.7c-7.1-1.2-14.3-1.7-21.7-1.7zM443.4 128v256L224 512 4.6 384V128L224 0l219.4 128zm-17.1 10.3L224 20.9 21.7 138.3v235.1L224 491.1l202.3-117.7V138.3zM224 37.1l187.7 109.4v218.9L224 474.9 36.3 365.4V146.6L224 37.1zm0 50.9c-92.3 0-166.9 75.1-166.9 168 0 92.6 74.6 167.7 166.9 167.7 92 0 166.9-75.1 166.9-167.7 0-92.9-74.9-168-166.9-168z"] }; +var faFirstOrderAlt = { prefix: 'fab', iconName: 'first-order-alt', icon: [496, 512, [], "f50a", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 488.21C115.34 496.21 7.79 388.66 7.79 256S115.34 15.79 248 15.79 488.21 123.34 488.21 256 380.66 496.21 248 496.21zm0-459.92C126.66 36.29 28.29 134.66 28.29 256S126.66 475.71 248 475.71 467.71 377.34 467.71 256 369.34 36.29 248 36.29zm0 431.22c-116.81 0-211.51-94.69-211.51-211.51S131.19 44.49 248 44.49 459.51 139.19 459.51 256 364.81 467.51 248 467.51zm186.23-162.98a191.613 191.613 0 0 1-20.13 48.69l-74.13-35.88 61.48 54.82a193.515 193.515 0 0 1-37.2 37.29l-54.8-61.57 35.88 74.27a190.944 190.944 0 0 1-48.63 20.23l-27.29-78.47 4.79 82.93c-8.61 1.18-17.4 1.8-26.33 1.8s-17.72-.62-26.33-1.8l4.76-82.46-27.15 78.03a191.365 191.365 0 0 1-48.65-20.2l35.93-74.34-54.87 61.64a193.85 193.85 0 0 1-37.22-37.28l61.59-54.9-74.26 35.93a191.638 191.638 0 0 1-20.14-48.69l77.84-27.11-82.23 4.76c-1.16-8.57-1.78-17.32-1.78-26.21 0-9 .63-17.84 1.82-26.51l82.38 4.77-77.94-27.16a191.726 191.726 0 0 1 20.23-48.67l74.22 35.92-61.52-54.86a193.85 193.85 0 0 1 37.28-37.22l54.76 61.53-35.83-74.17a191.49 191.49 0 0 1 48.65-20.13l26.87 77.25-4.71-81.61c8.61-1.18 17.39-1.8 26.32-1.8s17.71.62 26.32 1.8l-4.74 82.16 27.05-77.76c17.27 4.5 33.6 11.35 48.63 20.17l-35.82 74.12 54.72-61.47a193.13 193.13 0 0 1 37.24 37.23l-61.45 54.77 74.12-35.86a191.515 191.515 0 0 1 20.2 48.65l-77.81 27.1 82.24-4.75c1.19 8.66 1.82 17.5 1.82 26.49 0 8.88-.61 17.63-1.78 26.19l-82.12-4.75 77.72 27.09z"] }; +var faFirstdraft = { prefix: 'fab', iconName: 'firstdraft', icon: [384, 512, [], "f3a1", "M384 192h-64v128H192v128H0v-25.6h166.4v-128h128v-128H384V192zm-25.6 38.4v128h-128v128H64V512h192V384h128V230.4h-25.6zm25.6 192h-89.6V512H320v-64h64v-25.6zM0 0v384h128V256h128V128h128V0H0z"] }; +var faFlickr = { prefix: 'fab', iconName: 'flickr', icon: [448, 512, [], "f16e", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5zm159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5z"] }; +var faFlipboard = { prefix: 'fab', iconName: 'flipboard', icon: [448, 512, [], "f44d", "M0 32v448h448V32H0zm358.4 179.2h-89.6v89.6h-89.6v89.6H89.6V121.6h268.8v89.6z"] }; +var faFly = { prefix: 'fab', iconName: 'fly', icon: [384, 512, [], "f417", "M197.8 427.8c12.9 11.7 33.7 33.3 33.2 50.7 0 .8-.1 1.6-.1 2.5-1.8 19.8-18.8 31.1-39.1 31-25-.1-39.9-16.8-38.7-35.8 1-16.2 20.5-36.7 32.4-47.6 2.3-2.1 2.7-2.7 5.6-3.6 3.4 0 3.9.3 6.7 2.8zM331.9 67.3c-16.3-25.7-38.6-40.6-63.3-52.1C243.1 4.5 214-.2 192 0c-44.1 0-71.2 13.2-81.1 17.3C57.3 45.2 26.5 87.2 28 158.6c7.1 82.2 97 176 155.8 233.8 1.7 1.6 4.5 4.5 6.2 5.1l3.3.1c2.1-.7 1.8-.5 3.5-2.1 52.3-49.2 140.7-145.8 155.9-215.7 7-39.2 3.1-72.5-20.8-112.5zM186.8 351.9c-28-51.1-65.2-130.7-69.3-189-3.4-47.5 11.4-131.2 69.3-136.7v325.7zM328.7 180c-16.4 56.8-77.3 128-118.9 170.3C237.6 298.4 275 217 277 158.4c1.6-45.9-9.8-105.8-48-131.4 88.8 18.3 115.5 98.1 99.7 153z"] }; +var faFontAwesome = { prefix: 'fab', iconName: 'font-awesome', icon: [448, 512, [], "f2b4", "M397.8 32H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-45.4 284.3c0 4.2-3.6 6-7.8 7.8-16.7 7.2-34.6 13.7-53.8 13.7-26.9 0-39.4-16.7-71.7-16.7-23.3 0-47.8 8.4-67.5 17.3-1.2.6-2.4.6-3.6 1.2V385c0 1.8 0 3.6-.6 4.8v1.2c-2.4 8.4-10.2 14.3-19.1 14.3-11.3 0-20.3-9-20.3-20.3V166.4c-7.8-6-13.1-15.5-13.1-26.3 0-18.5 14.9-33.5 33.5-33.5 18.5 0 33.5 14.9 33.5 33.5 0 10.8-4.8 20.3-13.1 26.3v18.5c1.8-.6 3.6-1.2 5.4-2.4 18.5-7.8 40.6-14.3 61.5-14.3 22.7 0 40.6 6 60.9 13.7 4.2 1.8 8.4 2.4 13.1 2.4 22.7 0 47.8-16.1 53.8-16.1 4.8 0 9 3.6 9 7.8v140.3z"] }; +var faFontAwesomeAlt = { prefix: 'fab', iconName: 'font-awesome-alt', icon: [448, 512, [], "f35c", "M397.8 67.8c7.8 0 14.3 6.6 14.3 14.3v347.6c0 7.8-6.6 14.3-14.3 14.3H50.2c-7.8 0-14.3-6.6-14.3-14.3V82.2c0-7.8 6.6-14.3 14.3-14.3h347.6m0-35.9H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-58.5 139.2c-6 0-29.9 15.5-52.6 15.5-4.2 0-8.4-.6-12.5-2.4-19.7-7.8-37-13.7-59.1-13.7-20.3 0-41.8 6.6-59.7 13.7-1.8.6-3.6 1.2-4.8 1.8v-17.9c7.8-6 12.5-14.9 12.5-25.7 0-17.9-14.3-32.3-32.3-32.3s-32.3 14.3-32.3 32.3c0 10.2 4.8 19.7 12.5 25.7v212.1c0 10.8 9 19.7 19.7 19.7 9 0 16.1-6 18.5-13.7V385c.6-1.8.6-3 .6-4.8V336c1.2 0 2.4-.6 3-1.2 19.7-8.4 43-16.7 65.7-16.7 31.1 0 43 16.1 69.3 16.1 18.5 0 36.4-6.6 52-13.7 4.2-1.8 7.2-3.6 7.2-7.8V178.3c1.8-4.1-2.3-7.1-7.7-7.1z"] }; +var faFontAwesomeFlag = { prefix: 'fab', iconName: 'font-awesome-flag', icon: [448, 512, [], "f425", "M444.373 359.424c0 7.168-6.144 10.24-13.312 13.312-28.672 12.288-59.392 23.552-92.16 23.552-46.08 0-67.584-28.672-122.88-28.672-39.936 0-81.92 14.336-115.712 29.696-2.048 1.024-4.096 1.024-6.144 2.048v77.824c0 21.405-16.122 34.816-33.792 34.816-19.456 0-34.816-15.36-34.816-34.816V102.4C12.245 92.16 3.029 75.776 3.029 57.344 3.029 25.6 28.629 0 60.373 0s57.344 25.6 57.344 57.344c0 18.432-8.192 34.816-22.528 45.056v31.744c4.124-1.374 58.768-28.672 114.688-28.672 65.27 0 97.676 27.648 126.976 27.648 38.912 0 81.92-27.648 92.16-27.648 8.192 0 15.36 6.144 15.36 13.312v240.64z"] }; +var faFontAwesomeLogoFull = { prefix: 'fab', iconName: 'font-awesome-logo-full', icon: [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"] }; +var faFonticons = { prefix: 'fab', iconName: 'fonticons', icon: [448, 512, [], "f280", "M0 32v448h448V32H0zm167.4 196h67.4l-11.1 37.3H168v112.9c0 5.8-2 6.7 3.2 7.3l43.5 4.1v25.1H84V389l21.3-2c5.2-.6 6.7-2.3 6.7-7.9V267.7c0-2.3-2.9-2.3-5.8-2.3H84V228h28v-21c0-49.6 26.5-70 77.3-70 34.1 0 64.7 8.2 64.7 52.8l-50.7 6.1c.3-18.7-4.4-23-16.3-23-18.4 0-19 9.9-19 27.4v23.3c0 2.4-3.5 4.4-.6 4.4zM364 414.7H261.3v-25.1l20.4-2.6c5.2-.6 7.6-1.7 7.6-7.3V271.8c0-4.1-2.9-6.7-6.7-7.9l-24.2-6.4 6.7-29.5h80.2v151.7c0 5.8-2.6 6.4 2.9 7.3l15.7 2.6v25.1zm-21.9-255.5l9 33.2-7.3 7.3-31.2-16.6-31.2 16.6-7.3-7.3 9-33.2-21.8-24.2 3.5-9.6h27.7l15.5-28h9.3l15.5 28h27.7l3.5 9.6-21.9 24.2z"] }; +var faFonticonsFi = { prefix: 'fab', iconName: 'fonticons-fi', icon: [384, 512, [], "f3a2", "M114.4 224h92.4l-15.2 51.2h-76.4V433c0 8-2.8 9.2 4.4 10l59.6 5.6V483H0v-35.2l29.2-2.8c7.2-.8 9.2-3.2 9.2-10.8V278.4c0-3.2-4-3.2-8-3.2H0V224h38.4v-28.8c0-68 36.4-96 106-96 46.8 0 88.8 11.2 88.8 72.4l-69.6 8.4c.4-25.6-6-31.6-22.4-31.6-25.2 0-26 13.6-26 37.6v32c0 3.2-4.8 6-.8 6zM384 483H243.2v-34.4l28-3.6c7.2-.8 10.4-2.4 10.4-10V287c0-5.6-4-9.2-9.2-10.8l-33.2-8.8 9.2-40.4h110v208c0 8-3.6 8.8 4 10l21.6 3.6V483zm-30-347.2l12.4 45.6-10 10-42.8-22.8-42.8 22.8-10-10 12.4-45.6-30-36.4 4.8-10h38L307.2 51H320l21.2 38.4h38l4.8 13.2-30 33.2z"] }; +var faFortAwesome = { prefix: 'fab', iconName: 'fort-awesome', icon: [512, 512, [], "f286", "M489.2 287.9h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6V146.2c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-6-8-4.6-11.7-4.6v-38c8.3-2 17.1-3.4 25.7-3.4 10.9 0 20.9 4.3 31.4 4.3 4.6 0 27.7-1.1 27.7-8v-60c0-2.6-2-4.6-4.6-4.6-5.1 0-15.1 4.3-24 4.3-9.7 0-20.9-4.3-32.6-4.3-8 0-16 1.1-23.7 2.9v-4.9c5.4-2.6 9.1-8.3 9.1-14.3 0-20.7-31.4-20.8-31.4 0 0 6 3.7 11.7 9.1 14.3v111.7c-3.7 0-11.7-1.4-11.7 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32H128v-32c0-2.6-2-4.6-4.6-4.6H96c-2.6 0-4.6 2-4.6 4.6v178.3H54.8v-32c0-2.6-2-4.6-4.6-4.6H22.8c-2.6 0-4.6 2-4.6 4.6V512h182.9v-96c0-72.6 109.7-72.6 109.7 0v96h182.9V292.5c.1-2.6-1.9-4.6-4.5-4.6zm-288.1-4.5c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64zm146.4 0c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64z"] }; +var faFortAwesomeAlt = { prefix: 'fab', iconName: 'fort-awesome-alt', icon: [512, 512, [], "f3a3", "M211.7 241.1v51.7c0 2.1-1.6 3.7-3.7 3.7h-22.2c-2.1 0-3.7-1.6-3.7-3.7v-51.7c0-2.1 1.6-3.7 3.7-3.7H208c2.1 0 3.7 1.6 3.7 3.7zm114.5-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7h22.2c2.1 0 3.7-1.6 3.7-3.7v-51.7c-.1-2.1-1.7-3.7-3.7-3.7zm-29.1 263.2c-.9.1-1.7.3-2.6.4-1 .2-2.1.3-3.1.5-.9.1-1.8.3-2.8.4-1 .1-2 .3-3 .4-1 .1-2 .2-2.9.3-1 .1-1.9.2-2.9.3-1 .1-2.1.2-3.1.3-.9.1-1.8.2-2.7.2-1.1.1-2.3.1-3.4.2-.8 0-1.7.1-2.5.1-1.3.1-2.6.1-3.9.1-.7 0-1.4.1-2.1.1-2 0-4 .1-6 .1s-4 0-6-.1c-.7 0-1.4 0-2.1-.1-1.3 0-2.6-.1-3.9-.1-.8 0-1.7-.1-2.5-.1-1.1-.1-2.3-.1-3.4-.2-.9-.1-1.8-.1-2.7-.2-1-.1-2.1-.2-3.1-.3-1-.1-1.9-.2-2.9-.3-1-.1-2-.2-2.9-.3-1-.1-2-.2-3-.4-.9-.1-1.8-.3-2.8-.4-1-.1-2.1-.3-3.1-.5-.9-.1-1.7-.3-2.6-.4-65.6-10.9-122.5-47.7-160-99.4-.2-.2-.3-.5-.5-.7-.8-1.1-1.6-2.2-2.3-3.3-.3-.4-.6-.8-.8-1.2-.7-1.1-1.4-2.1-2.1-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.4-2.1-2-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.3-2.2-2-3.3-.2-.4-.5-.8-.7-1.2-2.4-4-4.6-8.1-6.8-12.2-.1-.2-.2-.3-.3-.5-.6-1.1-1.1-2.2-1.7-3.3-.3-.6-.6-1.1-.8-1.7-.5-1-1-2.1-1.5-3.1-.3-.7-.6-1.3-.9-2-.5-1-.9-2-1.4-3l-.9-2.1c-.4-1-.9-2-1.3-3-.3-.7-.6-1.5-.9-2.2l-1.2-3c-.3-.8-.6-1.5-.9-2.3-.4-1-.8-2-1.1-3-.3-.9-.6-1.8-1-2.8-.6-1.6-1.1-3.3-1.7-4.9-.3-.9-.6-1.8-.9-2.8-.3-.9-.5-1.8-.8-2.7-.3-.9-.6-1.9-.8-2.8-.3-.9-.5-1.8-.8-2.7-.3-1-.5-1.9-.8-2.9-.2-.9-.5-1.8-.7-2.7-.3-1-.5-2-.7-3-.2-.9-.4-1.7-.6-2.6-.2-1.1-.5-2.2-.7-3.2-.2-.8-.3-1.6-.5-2.4-.3-1.3-.5-2.7-.8-4-.1-.6-.2-1.1-.3-1.7l-.9-5.7c-.1-.6-.2-1.3-.3-1.9-.2-1.3-.4-2.6-.5-3.9-.1-.8-.2-1.5-.3-2.3-.1-1.2-.3-2.4-.4-3.6-.1-.8-.2-1.6-.2-2.4-.1-1.2-.2-2.4-.3-3.5-.1-.8-.1-1.6-.2-2.4-.1-1.2-.2-2.4-.2-3.7 0-.8-.1-1.5-.1-2.3-.1-1.3-.1-2.7-.2-4 0-.7 0-1.3-.1-2 0-2-.1-4-.1-6 0-53.5 16.9-103 45.8-143.6 2.3-3.2 4.7-6.4 7.1-9.5 4.9-6.2 10.1-12.3 15.6-18 2.7-2.9 5.5-5.7 8.4-8.4 2.9-2.7 5.8-5.4 8.8-8 4.5-3.9 9.1-7.6 13.9-11.2 1.6-1.2 3.2-2.4 4.8-3.5C140 34.2 171.7 20.1 206 13c16.1-3.3 32.9-5 50-5s33.8 1.7 50 5c34.3 7 66 21.1 93.6 40.7 1.6 1.2 3.2 2.3 4.8 3.5 4.8 3.6 9.4 7.3 13.9 11.2 12 10.4 23 21.9 32.8 34.4 2.5 3.1 4.8 6.3 7.1 9.5C487.1 153 504 202.5 504 256c0 2 0 4-.1 6 0 .7 0 1.3-.1 2 0 1.3-.1 2.7-.2 4 0 .8-.1 1.5-.1 2.3-.1 1.2-.1 2.4-.2.7-.1.8-.1 1.6-.2 2.4-.1 1.2-.2 2.4-.3 3.5-.1.8-.2 1.6-.2 2.4-.1 1.2-.3 2.4-.4 3.6-.1.8-.2 1.5-.3 2.3-.2 1.3-.4 2.6-.5 3.9-.1.6-.2 1.3-.3 1.9l-.9 5.7c-.1.6-.2 1.1-.3 1.7-.2 1.3-.5 2.7-.8 4-.2.8-.3 1.6-.5 2.4-.2 1.1-.5 2.2-.7 3.2-.2.9-.4 1.7-.6 2.6-.2 1-.5 2-.7 3-.2.9-.5 1.8-.7 2.7-.3 1-.5 1.9-.8 2.9-.2.9-.5 1.8-.8 2.7-.3.9-.6 1.9-.8 2.8-.3.9-.5 1.8-.8 2.7-.3.9-.6 1.8-.9 2.8-.5 1.6-1.1 3.3-1.7 4.9-.3.9-.6 1.8-1 2.8-.4 1-.7 2-1.1 3-.3.8-.6 1.5-.9 2.3l-1.2 3c-.3.7-.6 1.5-.9 2.2-.4 1-.8 2-1.3 3l-.9 2.1c-.4 1-.9 2-1.4 3-.3.7-.6 1.3-.9 2-.5 1-1 2.1-1.5 3.1-.3.6-.6 1.1-.8 1.7-.6 1.1-1.1 2.2-1.7 3.3-.1.2-.2.3-.3.5-2.2 4.1-4.4 8.2-6.8 12.2-.2.4-.5.8-.7 1.2-.7 1.1-1.3 2.2-2 3.3-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2 3.2-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2.1 3.2-.3.4-.6.8-.8 1.2-.8 1.1-1.5 2.2-2.3 3.3-.2.2-.3.5-.5.7-37.6 54.7-94.5 91.4-160.1 102.4zm117.3-86.2c13-13 24.2-27.4 33.6-42.9v-71.3c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7V326h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-4.8-6.5-3.7-9.5-3.7v-30.7c6.7-1.6 13.8-2.8 20.8-2.8 8.8 0 16.8 3.5 25.4 3.5 3.7 0 22.4-.9 22.4-6.5V93.4c0-2.1-1.6-3.7-3.7-3.7-4.2 0-12.2 3.5-19.4 3.5-7.9 0-16.9-3.5-26.3-3.5-6.5 0-12.9.9-19.2 2.3v-3.9c4.4-2.1 7.4-6.7 7.4-11.5 0-16.8-25.4-16.8-25.4 0 0 4.8 3 9.5 7.4 11.5v90.2c-3 0-9.5-1.1-9.5 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v144H93.5v-25.8c0-2.1-1.6-3.7-3.7-3.7H67.7c-2.1 0-3.7 1.6-3.7 3.7v71.3c9.4 15.5 20.6 29.9 33.6 42.9 20.6 20.6 44.5 36.7 71.2 48 13.9 5.9 28.2 10.3 42.9 13.2v-75.8c0-58.6 88.6-58.6 88.6 0v75.8c14.7-2.9 29-7.4 42.9-13.2 26.7-11.3 50.6-27.4 71.2-48"] }; +var faForumbee = { prefix: 'fab', iconName: 'forumbee', icon: [448, 512, [], "f211", "M5.8 309.7C2 292.7 0 275.5 0 258.3 0 135 99.8 35 223.1 35c16.6 0 33.3 2 49.3 5.5C149 87.5 51.9 186 5.8 309.7zm392.9-189.2C385 103 369 87.8 350.9 75.2c-149.6 44.3-266.3 162.1-309.7 312 12.5 18.1 28 35.6 45.2 49 43.1-151.3 161.2-271.7 312.3-315.7zm15.8 252.7c15.2-25.1 25.4-53.7 29.5-82.8-79.4 42.9-145 110.6-187.6 190.3 30-4.4 58.9-15.3 84.6-31.3 35 13.1 70.9 24.3 107 33.6-9.3-36.5-20.4-74.5-33.5-109.8zm29.7-145.5c-2.6-19.5-7.9-38.7-15.8-56.8C290.5 216.7 182 327.5 137.1 466c18.1 7.6 37 12.5 56.6 15.2C240 367.1 330.5 274.4 444.2 227.7z"] }; +var faFoursquare = { prefix: 'fab', iconName: 'foursquare', icon: [368, 512, [], "f180", "M323.1 3H49.9C12.4 3 0 31.3 0 49.1v433.8c0 20.3 12.1 27.7 18.2 30.1 6.2 2.5 22.8 4.6 32.9-7.1C180 356.5 182.2 354 182.2 354c3.1-3.4 3.4-3.1 6.8-3.1h83.4c35.1 0 40.6-25.2 44.3-39.7l48.6-243C373.8 25.8 363.1 3 323.1 3zm-16.3 73.8l-11.4 59.7c-1.2 6.5-9.5 13.2-16.9 13.2H172.1c-12 0-20.6 8.3-20.6 20.3v13c0 12 8.6 20.6 20.6 20.6h90.4c8.3 0 16.6 9.2 14.8 18.2-1.8 8.9-10.5 53.8-11.4 58.8-.9 4.9-6.8 13.5-16.9 13.5h-73.5c-13.5 0-17.2 1.8-26.5 12.6 0 0-8.9 11.4-89.5 108.3-.9.9-1.8.6-1.8-.3V75.9c0-7.7 6.8-16.6 16.6-16.6h219c8.2 0 15.6 7.7 13.5 17.5z"] }; +var faFreeCodeCamp = { prefix: 'fab', iconName: 'free-code-camp', icon: [576, 512, [], "f2c5", "M69.3 144.5c-41 68.5-36.4 163 1 227C92.5 409.7 120 423.9 120 438c0 6.8-6 13-12.8 13C87.7 451 8 375.5 8 253.2c0-111.5 78-186 97.1-186 6 0 14.9 4.8 14.9 11.1 0 12.7-28.3 28.6-50.7 66.2zm195.8 213.8c4.5 1.8 12.3 5.2 12.3-1.2 0-2.7-2.2-2.9-4.3-3.6-8.5-3.4-14-7.7-19.1-15.2-8.2-12.1-10.1-24.2-10.1-38.6 0-32.1 44.2-37.9 44.2-70 0-12.3-7.7-15.9-7.7-19.3 0-2.2.7-2.2 2.9-2.2 8 0 19.1 13.3 22.5 19.8 2.2 4.6 2.4 6 2.4 11.1 0 7-.7 14.2-.7 21.3 0 27 31.9 19.8 31.9 6.8 0-6-3.6-11.6-3.6-17.4 0-.7 0-1.2.7-1.2 3.4 0 9.4 7.7 11.1 10.1 5.8 8.9 8.5 20.8 8.5 31.4 0 32.4-29.5 49-29.5 56 0 1 2.9 7.7 12.1 1.9 29.7-15.1 53.1-47.6 53.1-89.8 0-33.6-8.7-57.7-32.1-82.6-3.9-4.1-16.4-16.9-22.5-16.9-8.2 0 7.2 18.6 7.2 31.2 0 7.2-4.8 12.3-12.3 12.3-11.6 0-14.5-25.4-15.9-33.3-5.8-33.8-12.8-58.2-46.4-74.1-10.4-5-36.5-11.8-36.5-2.2 0 2.4 2.7 4.1 4.6 5.1 9.2 5.6 19.6 21.4 19.6 38.2 0 46.1-57.7 88.2-57.7 136.2-.2 40.3 28.1 72.6 65.3 86.2zM470.4 67c-6 0-14.4 6.5-14.4 12.6 0 8.7 12.1 19.6 17.6 25.4 81.6 85.1 78.6 214.3 17.6 291-7 8.9-35.3 35.3-35.3 43.5 0 5.1 8.2 11.4 13.2 11.4 25.4 0 98.8-80.8 98.8-185.7C568 145.9 491.8 67 470.4 67zm-42.3 323.1H167c-9.4 0-15.5 7.5-15.5 16.4 0 8.5 7 15.5 15.5 15.5h261.1c9.4 0 11.9-7.5 11.9-16.4 0-8.5-3.5-15.5-11.9-15.5z"] }; +var faFreebsd = { prefix: 'fab', iconName: 'freebsd', icon: [448, 512, [], "f3a4", "M303.7 96.2c11.1-11.1 115.5-77 139.2-53.2 23.7 23.7-42.1 128.1-53.2 139.2-11.1 11.1-39.4.9-63.1-22.9-23.8-23.7-34.1-52-22.9-63.1zM109.9 68.1C73.6 47.5 22 24.6 5.6 41.1c-16.6 16.6 7.1 69.4 27.9 105.7 18.5-32.2 44.8-59.3 76.4-78.7zM406.7 174c3.3 11.3 2.7 20.7-2.7 26.1-20.3 20.3-87.5-27-109.3-70.1-18-32.3-11.1-53.4 14.9-48.7 5.7-3.6 12.3-7.6 19.6-11.6-29.8-15.5-63.6-24.3-99.5-24.3-119.1 0-215.6 96.5-215.6 215.6 0 119 96.5 215.6 215.6 215.6S445.3 380.1 445.3 261c0-38.4-10.1-74.5-27.7-105.8-3.9 7-7.6 13.3-10.9 18.8z"] }; +var faFulcrum = { prefix: 'fab', iconName: 'fulcrum', icon: [269, 512, [], "f50b", "M70.75 164.14l-35.38 43.55L0 164.14l35.38-43.55 35.37 43.55zM119.23 0L98.69 198.18 47.72 256l50.98 57.82L119.23 512V300.89L78.15 256l41.08-44.89V0zm79.67 164.14l35.38 43.55 35.38-43.55-35.38-43.55-35.38 43.55zm-48.48 46.97L191.5 256l-41.08 44.89V512l20.54-198.18L221.94 256l-50.98-57.82L150.42 0v211.11z"] }; +var faGalacticRepublic = { prefix: 'fab', iconName: 'galactic-republic', icon: [496, 512, [], "f50c", "M248 504C111.25 504 0 392.75 0 256S111.25 8 248 8s248 111.25 248 248-111.25 248-248 248zm0-479.47C120.37 24.53 16.53 128.37 16.53 256S120.37 487.47 248 487.47 479.47 383.63 479.47 256 375.63 24.53 248 24.53zm27.62 21.81v24.62a185.933 185.933 0 0 1 83.57 34.54l17.39-17.36c-28.75-22.06-63.3-36.89-100.96-41.8zm-55.37.07c-37.64 4.94-72.16 19.8-100.88 41.85l17.28 17.36h.08c24.07-17.84 52.55-30.06 83.52-34.67V46.41zm12.25 50.17v82.87c-10.04 2.03-19.42 5.94-27.67 11.42l-58.62-58.59-21.93 21.93 58.67 58.67c-5.47 8.23-9.45 17.59-11.47 27.62h-82.9v31h82.9c2.02 10.02 6.01 19.31 11.47 27.54l-58.67 58.69 21.93 21.93 58.62-58.62a77.873 77.873 0 0 0 27.67 11.47v82.9h31v-82.9c10.05-2.03 19.37-6.06 27.62-11.55l58.67 58.69 21.93-21.93-58.67-58.69c5.46-8.23 9.47-17.52 11.5-27.54h82.87v-31h-82.87c-2.02-10.02-6.03-19.38-11.5-27.62l58.67-58.67-21.93-21.93-58.67 58.67c-8.25-5.49-17.57-9.47-27.62-11.5V96.58h-31zm183.24 30.72l-17.36 17.36a186.337 186.337 0 0 1 34.67 83.67h24.62c-4.95-37.69-19.83-72.29-41.93-101.03zm-335.55.13c-22.06 28.72-36.91 63.26-41.85 100.91h24.65c4.6-30.96 16.76-59.45 34.59-83.52l-17.39-17.39zM38.34 283.67c4.92 37.64 19.75 72.18 41.8 100.9l17.36-17.39c-17.81-24.07-29.92-52.57-34.51-83.52H38.34zm394.7 0c-4.61 30.99-16.8 59.5-34.67 83.6l17.36 17.36c22.08-28.74 36.98-63.29 41.93-100.96h-24.62zM136.66 406.38l-17.36 17.36c28.73 22.09 63.3 36.98 100.96 41.93v-24.64c-30.99-4.63-59.53-16.79-83.6-34.65zm222.53.05c-24.09 17.84-52.58 30.08-83.57 34.67v24.57c37.67-4.92 72.21-19.79 100.96-41.85l-17.31-17.39h-.08z"] }; +var faGalacticSenate = { prefix: 'fab', iconName: 'galactic-senate', icon: [512, 512, [], "f50d", "M249.86 33.48v26.07C236.28 80.17 226 168.14 225.39 274.9c11.74-15.62 19.13-33.33 19.13-48.24v-16.88c-.03-5.32.75-10.53 2.19-15.65.65-2.14 1.39-4.08 2.62-5.82 1.23-1.75 3.43-3.79 6.68-3.79 3.24 0 5.45 2.05 6.68 3.79 1.23 1.75 1.97 3.68 2.62 5.82 1.44 5.12 2.22 10.33 2.19 15.65v16.88c0 14.91 7.39 32.62 19.13 48.24-.63-106.76-10.91-194.73-24.49-215.35V33.48h-12.28zm-26.34 147.77c-9.52 2.15-18.7 5.19-27.46 9.08 8.9 16.12 9.76 32.64 1.71 37.29-8 4.62-21.85-4.23-31.36-19.82-11.58 8.79-21.88 19.32-30.56 31.09 14.73 9.62 22.89 22.92 18.32 30.66-4.54 7.7-20.03 7.14-35.47-.96-5.78 13.25-9.75 27.51-11.65 42.42 9.68.18 18.67 2.38 26.18 6.04 17.78-.3 32.77-1.96 40.49-4.22 5.55-26.35 23.02-48.23 46.32-59.51.73-25.55 1.88-49.67 3.48-72.07zm64.96 0c1.59 22.4 2.75 46.52 3.47 72.07 23.29 11.28 40.77 33.16 46.32 59.51 7.72 2.26 22.71 3.92 40.49 4.22 7.51-3.66 16.5-5.85 26.18-6.04-1.9-14.91-5.86-29.17-11.65-42.42-15.44 8.1-30.93 8.66-35.47.96-4.57-7.74 3.6-21.05 18.32-30.66-8.68-11.77-18.98-22.3-30.56-31.09-9.51 15.59-23.36 24.44-31.36 19.82-8.05-4.65-7.19-21.16 1.71-37.29a147.49 147.49 0 0 0-27.45-9.08zm-32.48 8.6c-3.23 0-5.86 8.81-6.09 19.93h-.05v16.88c0 41.42-49.01 95.04-93.49 95.04-52 0-122.75-1.45-156.37 29.17v2.51c9.42 17.12 20.58 33.17 33.18 47.97C45.7 380.26 84.77 360.4 141.2 360c45.68 1.02 79.03 20.33 90.76 40.87.01.01-.01.04 0 .05 7.67 2.14 15.85 3.23 24.04 3.21 8.19.02 16.37-1.07 24.04-3.21.01-.01-.01-.04 0-.05 11.74-20.54 45.08-39.85 90.76-40.87 56.43.39 95.49 20.26 108.02 41.35 12.6-14.8 23.76-30.86 33.18-47.97v-2.51c-33.61-30.62-104.37-29.17-156.37-29.17-44.48 0-93.49-53.62-93.49-95.04v-16.88h-.05c-.23-11.12-2.86-19.93-6.09-19.93zm0 96.59c22.42 0 40.6 18.18 40.6 40.6s-18.18 40.65-40.6 40.65-40.6-18.23-40.6-40.65c0-22.42 18.18-40.6 40.6-40.6zm0 7.64c-18.19 0-32.96 14.77-32.96 32.96S237.81 360 256 360s32.96-14.77 32.96-32.96-14.77-32.96-32.96-32.96zm0 6.14c14.81 0 26.82 12.01 26.82 26.82s-12.01 26.82-26.82 26.82-26.82-12.01-26.82-26.82 12.01-26.82 26.82-26.82zm-114.8 66.67c-10.19.07-21.6.36-30.5 1.66.43 4.42 1.51 18.63 7.11 29.76 9.11-2.56 18.36-3.9 27.62-3.9 41.28.94 71.48 34.35 78.26 74.47l.11 4.7c10.4 1.91 21.19 2.94 32.21 2.94 11.03 0 21.81-1.02 32.21-2.94l.11-4.7c6.78-40.12 36.98-73.53 78.26-74.47 9.26 0 18.51 1.34 27.62 3.9 5.6-11.13 6.68-25.34 7.11-29.76-8.9-1.3-20.32-1.58-30.5-1.66-18.76.42-35.19 4.17-48.61 9.67-12.54 16.03-29.16 30.03-49.58 33.07-.09.02-.17.04-.27.05-.05.01-.11.04-.16.05-5.24 1.07-10.63 1.6-16.19 1.6-5.55 0-10.95-.53-16.19-1.6-.05-.01-.11-.04-.16-.05-.1-.02-.17-.04-.27-.05-20.42-3.03-37.03-17.04-49.58-33.07-13.42-5.49-29.86-9.25-48.61-9.67z"] }; +var faGetPocket = { prefix: 'fab', iconName: 'get-pocket', icon: [448, 512, [], "f265", "M407.6 64h-367C18.5 64 0 82.5 0 104.6v135.2C0 364.5 99.7 464 224.2 464c124 0 223.8-99.5 223.8-224.2V104.6c0-22.4-17.7-40.6-40.4-40.6zm-162 268.5c-12.4 11.8-31.4 11.1-42.4 0C89.5 223.6 88.3 227.4 88.3 209.3c0-16.9 13.8-30.7 30.7-30.7 17 0 16.1 3.8 105.2 89.3 90.6-86.9 88.6-89.3 105.5-89.3 16.9 0 30.7 13.8 30.7 30.7 0 17.8-2.9 15.7-114.8 123.2z"] }; +var faGg = { prefix: 'fab', iconName: 'gg', icon: [512, 512, [], "f260", "M179.2 230.4l102.4 102.4-102.4 102.4L0 256 179.2 76.8l44.8 44.8-25.6 25.6-19.2-19.2-128 128 128 128 51.5-51.5-77.1-76.5 25.6-25.6zM332.8 76.8L230.4 179.2l102.4 102.4 25.6-25.6-77.1-76.5 51.5-51.5 128 128-128 128-19.2-19.2-25.6 25.6 44.8 44.8L512 256 332.8 76.8z"] }; +var faGgCircle = { prefix: 'fab', iconName: 'gg-circle', icon: [512, 512, [], "f261", "M257 8C120 8 9 119 9 256s111 248 248 248 248-111 248-248S394 8 257 8zm-49.5 374.8L81.8 257.1l125.7-125.7 35.2 35.4-24.2 24.2-11.1-11.1-77.2 77.2 77.2 77.2 26.6-26.6-53.1-52.9 24.4-24.4 77.2 77.2-75 75.2zm99-2.2l-35.2-35.2 24.1-24.4 11.1 11.1 77.2-77.2-77.2-77.2-26.5 26.5 53.1 52.9-24.4 24.4-77.2-77.2 75-75L432.2 255 306.5 380.6z"] }; +var faGit = { prefix: 'fab', iconName: 'git', icon: [448, 512, [], "f1d3", "M18.8 221.7c0 25.3 16.2 60 41.5 68.5v1c-18.8 8.3-24 50.6 1 65.8v1C34 367 16 384.3 16 414.2c0 51.5 48.8 65.8 91.5 65.8 52 0 90.7-18.7 90.7-76 0-70.5-101-44.5-101-82.8 0-13.5 7.2-18.7 19.7-21.3 41.5-7.7 67.5-40 67.5-82.2 0-7.3-1.5-14.2-4-21 6.7-1.5 13.2-3.3 19.7-5.5v-50.5c-17.2 6.8-35.7 11.8-54.5 11.8-53.8-31-126.8 1.3-126.8 69.2zm87.7 163.8c17 0 41.2 3 41.2 25 0 21.8-19.5 26.3-37.7 26.3-17.3 0-43.3-2.7-43.3-25.2.1-22.3 22.1-26.1 39.8-26.1zM103.3 256c-22 0-31.3-13-31.3-33.8 0-49.3 61-48.8 61-.5 0 20.3-8 34.3-29.7 34.3zM432 305.5v49c-13.3 7.3-30.5 9.8-45.5 9.8-53.5 0-59.8-42.2-59.8-85.7v-87.7h.5v-1c-7 0-7.3-1.6-24 1v-47.5h24c0-22.3.3-31-1.5-41.2h56.7c-2 13.8-1.5 27.5-1.5 41.2h51v47.5s-19.3-1-51-1V281c0 14.8 3.3 32.8 21.8 32.8 9.8 0 21.3-2.8 29.3-8.3zM286 68.7c0 18.7-14.5 36.2-33.8 36.2-19.8 0-34.5-17.2-34.5-36.2 0-19.3 14.5-36.7 34.5-36.7C272 32 286 50 286 68.7zm-6.2 74.5c-1.8 14.6-1.6 199.8 0 217.8h-55.5c1.6-18.1 1.8-203 0-217.8h55.5z"] }; +var faGitSquare = { prefix: 'fab', iconName: 'git-square', icon: [448, 512, [], "f1d2", "M140.1 348.5c12.1 0 29.5 2.1 29.5 17.9 0 15.5-13.9 18.8-27 18.8-12.3 0-30.9-2-30.9-18s15.7-18.7 28.4-18.7zm-24.7-116.6c0 14.8 6.6 24.1 22.3 24.1 15.5 0 21.2-10 21.2-24.5.1-34.4-43.5-34.8-43.5.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-241 93.7c-12.3 4.8-25.5 8.4-38.9 8.4-38.5-22.1-90.7.9-90.7 49.5 0 18 11.6 42.9 29.6 48.9v.7c-13.4 5.9-17.1 36.1.7 47v.7c-19.5 6.4-32.3 18.8-32.3 40.2 0 36.8 34.8 47 65.4 47 37.1 0 64.8-13.4 64.8-54.3 0-50.4-72.1-31.8-72.1-59.1 0-9.6 5.2-13.4 14.1-15.2 29.6-5.5 48.2-28.6 48.2-58.7 0-5.2-1.1-10.2-2.9-15 4.8-1.1 9.5-2.3 14.1-3.9v-36.2zm56.8 1.8h-39.6c1.3 10.6 1.1 142.6 0 155.5h39.6c-1.1-12.8-1.2-145.1 0-155.5zm4.5-53.3c0-13.4-10-26.2-24.1-26.2-14.3 0-24.6 12.5-24.6 26.2 0 13.6 10.5 25.9 24.6 25.9 13.7 0 24.1-12.5 24.1-25.9zm104.3 53.3h-36.4c0-9.8-.4-19.6 1.1-29.5h-40.5c1.3 7.3 1.1 13.6 1.1 29.5h-17.1v33.9c11.9-1.9 12.1-.7 17.1-.7v.7h-.4v62.7c0 31.1 4.5 61.2 42.7 61.2 10.7 0 23-1.8 32.5-7v-35c-5.7 3.9-13.9 5.9-20.9 5.9-13.2 0-15.5-12.9-15.5-23.4v-65.2c22.7 0 36.4.7 36.4.7v-33.8z"] }; +var faGithub = { prefix: 'fab', iconName: 'github', icon: [496, 512, [], "f09b", "M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"] }; +var faGithubAlt = { prefix: 'fab', iconName: 'github-alt', icon: [480, 512, [], "f113", "M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1zM480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2zm-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3zm-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1z"] }; +var faGithubSquare = { prefix: 'fab', iconName: 'github-square', icon: [448, 512, [], "f092", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z"] }; +var faGitkraken = { prefix: 'fab', iconName: 'gitkraken', icon: [592, 512, [], "f3a6", "M565.7 118.1c-2.3-6.1-9.3-9.2-15.3-6.6-5.7 2.4-8.5 8.9-6.3 14.6 10.9 29 16.9 60.5 16.9 93.3 0 134.6-100.3 245.7-230.2 262.7V358.4c7.9-1.5 15.5-3.6 23-6.2v104c106.7-25.9 185.9-122.1 185.9-236.8 0-91.8-50.8-171.8-125.8-213.3-5.7-3.2-13-.9-15.9 5-2.7 5.5-.6 12.2 4.7 15.1 67.9 37.6 113.9 110 113.9 193.2 0 93.3-57.9 173.1-139.8 205.4v-92.2c14.2-4.5 24.9-17.7 24.9-33.5 0-13.1-6.8-24.4-17.3-30.5 8.3-79.5 44.5-58.6 44.5-83.9V170c0-38-87.9-161.8-129-164.7-2.5-.2-5-.2-7.6 0C251.1 8.3 163.2 132 163.2 170v14.8c0 25.3 36.3 4.3 44.5 83.9-10.6 6.1-17.3 17.4-17.3 30.5 0 15.8 10.6 29 24.8 33.5v92.2c-81.9-32.2-139.8-112-139.8-205.4 0-83.1 46-155.5 113.9-193.2 5.4-3 7.4-9.6 4.7-15.1-2.9-5.9-10.1-8.2-15.9-5-75 41.5-125.8 121.5-125.8 213.3 0 114.7 79.2 210.8 185.9 236.8v-104c7.6 2.5 15.1 4.6 23 6.2v123.7C131.4 465.2 31 354.1 31 219.5c0-32.8 6-64.3 16.9-93.3 2.2-5.8-.6-12.2-6.3-14.6-6-2.6-13 .4-15.3 6.6C14.5 149.7 8 183.8 8 219.5c0 155.1 122.6 281.6 276.3 287.8V361.4c6.8.4 15 .5 23.4 0v145.8C461.4 501.1 584 374.6 584 219.5c0-35.7-6.5-69.8-18.3-101.4zM365.9 275.5c13 0 23.7 10.5 23.7 23.7 0 13.1-10.6 23.7-23.7 23.7-13 0-23.7-10.5-23.7-23.7 0-13.1 10.6-23.7 23.7-23.7zm-139.8 47.3c-13.2 0-23.7-10.7-23.7-23.7s10.5-23.7 23.7-23.7c13.1 0 23.7 10.6 23.7 23.7 0 13-10.5 23.7-23.7 23.7z"] }; +var faGitlab = { prefix: 'fab', iconName: 'gitlab', icon: [512, 512, [], "f296", "M29.782 199.732L256 493.714 8.074 309.699c-6.856-5.142-9.712-13.996-7.141-21.993l28.849-87.974zm75.405-174.806c-3.142-8.854-15.709-8.854-18.851 0L29.782 199.732h131.961L105.187 24.926zm56.556 174.806L256 493.714l94.257-293.982H161.743zm349.324 87.974l-28.849-87.974L256 493.714l247.926-184.015c6.855-5.142 9.711-13.996 7.141-21.993zm-85.404-262.78c-3.142-8.854-15.709-8.854-18.851 0l-56.555 174.806h131.961L425.663 24.926z"] }; +var faGitter = { prefix: 'fab', iconName: 'gitter', icon: [384, 512, [], "f426", "M66.4 322.5H16V0h50.4v322.5zM166.9 76.1h-50.4V512h50.4V76.1zm100.6 0h-50.4V512h50.4V76.1zM368 76h-50.4v247H368V76z"] }; +var faGlide = { prefix: 'fab', iconName: 'glide', icon: [448, 512, [], "f2a5", "M252.8 148.6c0 8.8-1.6 17.7-3.4 26.4-5.8 27.8-11.6 55.8-17.3 83.6-1.4 6.3-8.3 4.9-13.7 4.9-23.8 0-30.5-26-30.5-45.5 0-29.3 11.2-68.1 38.5-83.1 4.3-2.5 9.2-4.2 14.1-4.2 11.4 0 12.3 8.3 12.3 17.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 187c0-5.1-20.8-37.7-25.5-39.5-2.2-.9-7.2-2.3-9.6-2.3-23.1 0-38.7 10.5-58.2 21.5l-.5-.5c4.3-29.4 14.6-57.2 14.6-87.4 0-44.6-23.8-62.7-67.5-62.7-71.7 0-108 70.8-108 123.5 0 54.7 32 85 86.3 85 7.5 0 6.9-.6 6.9 2.3-10.5 80.3-56.5 82.9-56.5 58.9 0-24.4 28-36.5 28.3-38-.2-7.6-29.3-17.2-36.7-17.2-21.1 0-32.7 33-32.7 50.6 0 32.3 20.4 54.7 53.3 54.7 48.2 0 83.4-49.7 94.3-91.7 9.4-37.7 7-39.4 12.3-42.1 20-10.1 35.8-16.8 58.4-16.8 11.1 0 19 2.3 36.7 5.2 1.8.1 4.1-1.7 4.1-3.5z"] }; +var faGlideG = { prefix: 'fab', iconName: 'glide-g', icon: [448, 512, [], "f2a6", "M407.1 211.2c-3.5-1.4-11.6-3.8-15.4-3.8-37.1 0-62.2 16.8-93.5 34.5l-.9-.9c7-47.3 23.5-91.9 23.5-140.4C320.8 29.1 282.6 0 212.4 0 97.3 0 39 113.7 39 198.4 39 286.3 90.3 335 177.6 335c12 0 11-1 11 3.8-16.9 128.9-90.8 133.1-90.8 94.6 0-39.2 45-58.6 45.5-61-.3-12.2-47-27.6-58.9-27.6-33.9.1-52.4 51.2-52.4 79.3C32 476 64.8 512 117.5 512c77.4 0 134-77.8 151.4-145.4 15.1-60.5 11.2-63.3 19.7-67.6 32.2-16.2 57.5-27 93.8-27 17.8 0 30.5 3.7 58.9 8.4 2.9 0 6.7-2.9 6.7-5.8 0-8-33.4-60.5-40.9-63.4zm-175.3-84.4c-9.3 44.7-18.6 89.6-27.8 134.3-2.3 10.2-13.3 7.8-22 7.8-38.3 0-49-41.8-49-73.1 0-47 18-109.3 61.8-133.4 7-4.1 14.8-6.7 22.6-6.7 18.6 0 20 13.3 20 28.7-.1 14.3-2.7 28.5-5.6 42.4z"] }; +var faGofore = { prefix: 'fab', iconName: 'gofore', icon: [400, 512, [], "f3a7", "M324 319.8h-13.2v34.7c-24.5 23.1-56.3 35.8-89.9 35.8-73.2 0-132.4-60.2-132.4-134.4 0-74.1 59.2-134.4 132.4-134.4 35.3 0 68.6 14 93.6 39.4l62.3-63.3C335 55.3 279.7 32 220.7 32 98 32 0 132.6 0 256c0 122.5 97 224 220.7 224 63.2 0 124.5-26.2 171-82.5-2-27.6-13.4-77.7-67.7-77.7zm-12.1-112.5H205.6v89H324c33.5 0 60.5 15.1 76 41.8v-30.6c0-65.2-40.4-100.2-88.1-100.2z"] }; +var faGoodreads = { prefix: 'fab', iconName: 'goodreads', icon: [448, 512, [], "f3a8", "M299.9 191.2c5.1 37.3-4.7 79-35.9 100.7-22.3 15.5-52.8 14.1-70.8 5.7-37.1-17.3-49.5-58.6-46.8-97.2 4.3-60.9 40.9-87.9 75.3-87.5 46.9-.2 71.8 31.8 78.2 78.3zM448 88v336c0 30.9-25.1 56-56 56H56c-30.9 0-56-25.1-56-56V88c0-30.9 25.1-56 56-56h336c30.9 0 56 25.1 56 56zM330 313.2s-.1-34-.1-217.3h-29v40.3c-.8.3-1.2-.5-1.6-1.2-9.6-20.7-35.9-46.3-76-46-51.9.4-87.2 31.2-100.6 77.8-4.3 14.9-5.8 30.1-5.5 45.6 1.7 77.9 45.1 117.8 112.4 115.2 28.9-1.1 54.5-17 69-45.2.5-1 1.1-1.9 1.7-2.9.2.1.4.1.6.2.3 3.8.2 30.7.1 34.5-.2 14.8-2 29.5-7.2 43.5-7.8 21-22.3 34.7-44.5 39.5-17.8 3.9-35.6 3.8-53.2-1.2-21.5-6.1-36.5-19-41.1-41.8-.3-1.6-1.3-1.3-2.3-1.3h-26.8c.8 10.6 3.2 20.3 8.5 29.2 24.2 40.5 82.7 48.5 128.2 37.4 49.9-12.3 67.3-54.9 67.4-106.3z"] }; +var faGoodreadsG = { prefix: 'fab', iconName: 'goodreads-g', icon: [384, 512, [], "f3a9", "M42.6 403.3h2.8c12.7 0 25.5 0 38.2.1 1.6 0 3.1-.4 3.6 2.1 7.1 34.9 30 54.6 62.9 63.9 26.9 7.6 54.1 7.8 81.3 1.8 33.8-7.4 56-28.3 68-60.4 8-21.5 10.7-43.8 11-66.5.1-5.8.3-47-.2-52.8l-.9-.3c-.8 1.5-1.7 2.9-2.5 4.4-22.1 43.1-61.3 67.4-105.4 69.1-103 4-169.4-57-172-176.2-.5-23.7 1.8-46.9 8.3-69.7C58.3 47.7 112.3.6 191.6 0c61.3-.4 101.5 38.7 116.2 70.3.5 1.1 1.3 2.3 2.4 1.9V10.6h44.3c0 280.3.1 332.2.1 332.2-.1 78.5-26.7 143.7-103 162.2-69.5 16.9-159 4.8-196-57.2-8-13.5-11.8-28.3-13-44.5zM188.9 36.5c-52.5-.5-108.5 40.7-115 133.8-4.1 59 14.8 122.2 71.5 148.6 27.6 12.9 74.3 15 108.3-8.7 47.6-33.2 62.7-97 54.8-154-9.7-71.1-47.8-120-119.6-119.7z"] }; +var faGoogle = { prefix: 'fab', iconName: 'google', icon: [488, 512, [], "f1a0", "M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z"] }; +var faGoogleDrive = { prefix: 'fab', iconName: 'google-drive', icon: [512, 512, [], "f3aa", "M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z"] }; +var faGooglePlay = { prefix: 'fab', iconName: 'google-play', icon: [512, 512, [], "f3ab", "M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z"] }; +var faGooglePlus = { prefix: 'fab', iconName: 'google-plus', icon: [496, 512, [], "f2b3", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm-70.7 372c-68.8 0-124-55.5-124-124s55.2-124 124-124c31.3 0 60.1 11 83 32.3l-33.6 32.6c-13.2-12.9-31.3-19.1-49.4-19.1-42.9 0-77.2 35.5-77.2 78.1s34.2 78.1 77.2 78.1c32.6 0 64.9-19.1 70.1-53.3h-70.1v-42.6h116.9c1.3 6.8 1.9 13.6 1.9 20.7 0 70.8-47.5 121.2-118.8 121.2zm230.2-106.2v35.5H372v-35.5h-35.5v-35.5H372v-35.5h35.5v35.5h35.2v35.5h-35.2z"] }; +var faGooglePlusG = { prefix: 'fab', iconName: 'google-plus-g', icon: [640, 512, [], "f0d5", "M386.061 228.496c1.834 9.692 3.143 19.384 3.143 31.956C389.204 370.205 315.599 448 204.8 448c-106.084 0-192-85.915-192-192s85.916-192 192-192c51.864 0 95.083 18.859 128.611 50.292l-52.126 50.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484 0-118.92 54.221-118.92 121.277 0 67.056 53.436 121.277 118.92 121.277 75.961 0 104.513-54.745 108.965-82.773H204.8v-66.009h181.261zm185.406 6.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001h-55.733z"] }; +var faGooglePlusSquare = { prefix: 'fab', iconName: 'google-plus-square', icon: [448, 512, [], "f0d4", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM164 356c-55.3 0-100-44.7-100-100s44.7-100 100-100c27 0 49.5 9.8 67 26.2l-27.1 26.1c-7.4-7.1-20.3-15.4-39.8-15.4-34.1 0-61.9 28.2-61.9 63.2 0 34.9 27.8 63.2 61.9 63.2 39.6 0 54.4-28.5 56.8-43.1H164v-34.4h94.4c1 5 1.6 10.1 1.6 16.6 0 57.1-38.3 97.6-96 97.6zm220-81.8h-29v29h-29.2v-29h-29V245h29v-29H355v29h29v29.2z"] }; +var faGoogleWallet = { prefix: 'fab', iconName: 'google-wallet', icon: [448, 512, [], "f1ee", "M156.8 126.8c37.6 60.6 64.2 113.1 84.3 162.5-8.3 33.8-18.8 66.5-31.3 98.3-13.2-52.3-26.5-101.3-56-148.5 6.5-36.4 2.3-73.6 3-112.3zM109.3 200H16.1c-6.5 0-10.5 7.5-6.5 12.7C51.8 267 81.3 330.5 101.3 400h103.5c-16.2-69.7-38.7-133.7-82.5-193.5-3-4-8-6.5-13-6.5zm47.8-88c68.5 108 130 234.5 138.2 368H409c-12-138-68.4-265-143.2-368H157.1zm251.8-68.5c-1.8-6.8-8.2-11.5-15.2-11.5h-88.3c-5.3 0-9 5-7.8 10.3 13.2 46.5 22.3 95.5 26.5 146 48.2 86.2 79.7 178.3 90.6 270.8 15.8-60.5 25.3-133.5 25.3-203 0-73.6-12.1-145.1-31.1-212.6z"] }; +var faGratipay = { prefix: 'fab', iconName: 'gratipay', icon: [496, 512, [], "f184", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm114.6 226.4l-113 152.7-112.7-152.7c-8.7-11.9-19.1-50.4 13.6-72 28.1-18.1 54.6-4.2 68.5 11.9 15.9 17.9 46.6 16.9 61.7 0 13.9-16.1 40.4-30 68.1-11.9 32.9 21.6 22.6 60 13.8 72z"] }; +var faGrav = { prefix: 'fab', iconName: 'grav', icon: [512, 512, [], "f2d6", "M301.1 212c4.4 4.4 4.4 11.9 0 16.3l-9.7 9.7c-4.4 4.7-11.9 4.7-16.6 0l-10.5-10.5c-4.4-4.7-4.4-11.9 0-16.6l9.7-9.7c4.4-4.4 11.9-4.4 16.6 0l10.5 10.8zm-30.2-19.7c3-3 3-7.8 0-10.5-2.8-3-7.5-3-10.5 0-2.8 2.8-2.8 7.5 0 10.5 3.1 2.8 7.8 2.8 10.5 0zm-26 5.3c-3 2.8-3 7.5 0 10.2 2.8 3 7.5 3 10.5 0 2.8-2.8 2.8-7.5 0-10.2-3-3-7.7-3-10.5 0zm72.5-13.3c-19.9-14.4-33.8-43.2-11.9-68.1 21.6-24.9 40.7-17.2 59.8.8 11.9 11.3 29.3 24.9 17.2 48.2-12.5 23.5-45.1 33.2-65.1 19.1zm47.7-44.5c-8.9-10-23.3 6.9-15.5 16.1 7.4 9 32.1 2.4 15.5-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-66.2 42.6c2.5-16.1-20.2-16.6-25.2-25.7-13.6-24.1-27.7-36.8-54.5-30.4 11.6-8 23.5-6.1 23.5-6.1.3-6.4 0-13-9.4-24.9 3.9-12.5.3-22.4.3-22.4 15.5-8.6 26.8-24.4 29.1-43.2 3.6-31-18.8-59.2-49.8-62.8-22.1-2.5-43.7 7.7-54.3 25.7-23.2 40.1 1.4 70.9 22.4 81.4-14.4-1.4-34.3-11.9-40.1-34.3-6.6-25.7 2.8-49.8 8.9-61.4 0 0-4.4-5.8-8-8.9 0 0-13.8 0-24.6 5.3 11.9-15.2 25.2-14.4 25.2-14.4 0-6.4-.6-14.9-3.6-21.6-5.4-11-23.8-12.9-31.7 2.8.1-.2.3-.4.4-.5-5 11.9-1.1 55.9 16.9 87.2-2.5 1.4-9.1 6.1-13 10-21.6 9.7-56.2 60.3-56.2 60.3-28.2 10.8-77.2 50.9-70.6 79.7.3 3 1.4 5.5 3 7.5-2.8 2.2-5.5 5-8.3 8.3-11.9 13.8-5.3 35.2 17.7 24.4 15.8-7.2 29.6-20.2 36.3-30.4 0 0-5.5-5-16.3-4.4 27.7-6.6 34.3-9.4 46.2-9.1 8 3.9 8-34.3 8-34.3 0-14.7-2.2-31-11.1-41.5 12.5 12.2 29.1 32.7 28 60.6-.8 18.3-15.2 23-15.2 23-9.1 16.6-43.2 65.9-30.4 106 0 0-9.7-14.9-10.2-22.1-17.4 19.4-46.5 52.3-24.6 64.5 26.6 14.7 108.8-88.6 126.2-142.3 34.6-20.8 55.4-47.3 63.9-65 22 43.5 95.3 94.5 101.1 59z"] }; +var faGripfire = { prefix: 'fab', iconName: 'gripfire', icon: [384, 512, [], "f3ac", "M171.8 503.8c0-5.3 4.8-12.2 4.8-22.3 0-15.2-13-39.9-78.1-86.6C64.2 365.8 32 336.4 32 286.6 32 171.9 179.1 110.1 179.1 18c0-3.3-.2-6.7-.6-10 5.1 2.4 39.1 43.3 39.1 90.4 0 80.5-105.1 129.2-105.1 203 0 26.9 16.6 47.2 32.6 69.5 22.5 30.2 44.2 56.9 44.2 86.5-.1 14.5-4.4 29.7-17.5 46.4zm146-241.4c1.5 8.4 2.2 16.6 2.2 24.6 0 51.8-29.4 97.5-67.3 136.8-1 1-2.2 2.4-3.2 2.4-3.6 0-35.5-41.6-35.5-53.2 0 0 41.8-55.7 41.8-96.9 0-10.8-2.7-21.7-9.1-33.4-1.5 32.3-55.7 87.7-58.1 87.7-2.7 0-17.9-22-17.9-42.1 0-5.3 1-10.7 3.2-15.8 2.4-5.5 56.6-72 56.6-116.7 0-6.2-1-12-3.4-17.1l-4-7.2c16.7 6.5 82.6 64.1 94.7 130.9"] }; +var faGrunt = { prefix: 'fab', iconName: 'grunt', icon: [384, 512, [], "f3ad", "M61.3 189.3c-1.1 10 5.2 19.1 5.2 19.1.7-7.5 2.2-12.8 4-16.6.4 10.3 3.2 23.5 12.8 34.1 6.9 7.6 35.6 23.3 54.9 6.1 1 2.4 2.1 5.3 3 8.5 2.9 10.3-2.7 25.3-2.7 25.3s15.1-17.1 13.9-32.5c10.8-.5 21.4-8.4 21.1-19.5 0 0-18.9 10.4-35.5-8.8-9.7-11.2-40.9-42-83.1-31.8 4.3 1 8.9 2.4 13.5 4.1h-.1c-4.2 2-6.5 7.1-7 12zm28.3-1.8c19.5 11 37.4 25.7 44.9 37-5.7 3.3-21.7 10.4-38-1.7-10.3-7.6-9.8-26.2-6.9-35.3zm79.2 233.7c2.2 2.3 1.5 5.3.9 6.8-1.1 2.7-5.5 11.6-13 19.8-2.7 2.9-6.6 4.6-11 4.6-4.3 0-8.7-1.6-11.8-4.3-2.3-2.1-10.2-9.5-13.7-18.6-1.3-3.4-1-6.1.9-8.1 1.3-1.3 4-2.9 9.5-2.9H160c4.1 0 7 .9 8.8 2.7zm62.9-187.9c-1.2 15.5 13.9 32.5 13.9 32.5s-5.6-15-2.7-25.3c.9-3.2 2-6 3-8.5 19.3 17.3 48 1.5 54.8-6.1 9.6-10.6 12.3-23.8 12.8-34.1 1.8 3.8 3.4 9.1 4 16.6 0 0 6.4-9.1 5.2-19.1-.6-5-2.9-10-7-11.8h-.1c4.6-1.8 9.2-3.2 13.5-4.1-42.3-10.2-73.4 20.6-83.1 31.8-16.7 19.2-35.5 8.8-35.5 8.8-.2 10.9 10.4 18.9 21.2 19.3zm17.8-8.8c7.5-11.4 25.4-26 44.9-37 3 9.1 3.4 27.7-7 35.4-16.3 12.1-32.2 5-37.9 1.6-.1.1 0 0 0 0zM263 421.4c1.9 1.9 2.2 4.6.9 7.9-3.5 8.9-11.4 16.1-13.7 18.1-3.1 2.6-7.4 4.2-11.8 4.2s-8.3-1.6-11-4.5c-7.5-8-12-16.7-13-19.3-.6-1.5-1.3-4.4.9-6.7 1.7-1.8 4.7-2.7 8.9-2.7h29.4c5.4.1 8.1 1.7 9.4 3zm-98.3-251.5c9.9 6 18.8 8.1 27.3 8.3 8.5-.2 17.4-2.3 27.3-8.3 0 0-14.5 17.7-27.2 17.8h-.2c-12.7-.2-27.2-17.8-27.2-17.8zm184.5 147.4c-2.4 17.9-13 33.8-24.6 43.7-3.1-22.7-3.7-55.5-3.7-62.4 0-14.7 9.5-24.5 12.2-26.1 2.5-1.5 5.4-3 8.3-4.6 18-9.6 40.4-21.6 40.4-43.7 0-16.2-9.3-23.2-15.4-27.8-.8-.6-1.5-1.1-2.2-1.7-2.1-1.7-3.7-3-4.3-4.4-4.4-9.8-3.6-34.2-1.7-37.6.6-.6 16.7-20.9 11.8-39.2-2-7.4-6.9-13.3-14.1-17-5.3-2.7-11.9-4.2-19.5-4.5-.1-2-.5-3.9-.9-5.9-.6-2.6-1.1-5.3-.9-8.1.4-4.7.8-9 2.2-11.3 8.4-13.3 28.8-17.6 29-17.6l12.3-2.4-8.1-9.5c-.1-.2-17.3-17.5-46.3-17.5-7.9 0-16 1.3-24.1 3.9-24.2 7.8-42.9 30.5-49.4 39.3-3.1-1-6.3-1.9-9.6-2.7-4.2-15.8 9-38.5 9-38.5s-13.6-3-33.7 15.2c-2.6-6.5-8.1-20.5-1.8-37.2C184.6 10.1 177.2 26 175 40.4c-7.6-5.4-6.7-23.1-7.2-27.6-7.5.9-29.2 21.9-28.2 48.3-2 .5-3.9 1.1-5.9 1.7-6.5-8.8-25.1-31.5-49.4-39.3-7.9-2.2-16-3.5-23.9-3.5-29 0-46.1 17.3-46.3 17.5L6 46.9l12.3 2.4c.2 0 20.6 4.3 29 17.6 1.4 2.2 1.8 6.6 2.2 11.3.2 2.8-.4 5.5-.9 8.1-.4 1.9-.8 3.9-.9 5.9-7.7.3-14.2 1.8-19.5 4.5-7.2 3.7-12.1 9.6-14.1 17-5 18.2 11.2 38.5 11.8 39.2 1.9 3.4 2.7 27.8-1.7 37.6-.6 1.4-2.2 2.7-4.3 4.4-.7.5-1.4 1.1-2.2 1.7-6.1 4.6-15.4 11.7-15.4 27.8 0 22.1 22.4 34.1 40.4 43.7 3 1.6 5.8 3.1 8.3 4.6 2.7 1.6 12.2 11.4 12.2 26.1 0 6.9-.6 39.7-3.7 62.4-11.6-9.9-22.2-25.9-24.6-43.8 0 0-29.2 22.6-20.6 70.8 5.2 29.5 23.2 46.1 47 54.7 8.8 19.1 29.4 45.7 67.3 49.6C143 504.3 163 512 192.2 512h.2c29.1 0 49.1-7.7 63.6-19.5 37.9-3.9 58.5-30.5 67.3-49.6 23.8-8.7 41.7-25.2 47-54.7 8.2-48.4-21.1-70.9-21.1-70.9zM305.7 37.7c5.6-1.8 11.6-2.7 17.7-2.7 11 0 19.9 3 24.7 5-3.1 1.4-6.4 3.2-9.7 5.3-2.4-.4-5.6-.8-9.2-.8-10.5 0-20.5 3.1-28.7 8.9-12.3 8.7-18 16.9-20.7 22.4-2.2-1.3-4.5-2.5-7.1-3.7-1.6-.8-3.1-1.5-4.7-2.2 6.1-9.1 19.9-26.5 37.7-32.2zm21 18.2c-.8 1-1.6 2.1-2.3 3.2-3.3 5.2-3.9 11.6-4.4 17.8-.5 6.4-1.1 12.5-4.4 17-4.2.8-8.1 1.7-11.5 2.7-2.3-3.1-5.6-7-10.5-11.2 1.4-4.8 5.5-16.1 13.5-22.5 5.6-4.3 12.2-6.7 19.6-7zM45.6 45.3c-3.3-2.2-6.6-4-9.7-5.3 4.8-2 13.7-5 24.7-5 6.1 0 12 .9 17.7 2.7 17.8 5.8 31.6 23.2 37.7 32.1-1.6.7-3.2 1.4-4.8 2.2-2.5 1.2-4.9 2.5-7.1 3.7-2.6-5.4-8.3-13.7-20.7-22.4-8.3-5.8-18.2-8.9-28.8-8.9-3.4.1-6.6.5-9 .9zm44.7 40.1c-4.9 4.2-8.3 8-10.5 11.2-3.4-.9-7.3-1.9-11.5-2.7C65 89.5 64.5 83.4 64 77c-.5-6.2-1.1-12.6-4.4-17.8-.7-1.1-1.5-2.2-2.3-3.2 7.4.3 14 2.6 19.5 7 8 6.3 12.1 17.6 13.5 22.4zM58.1 259.9c-2.7-1.6-5.6-3.1-8.4-4.6-14.9-8-30.2-16.3-30.2-30.5 0-11.1 4.3-14.6 8.9-18.2l.5-.4c.7-.6 1.4-1.2 2.2-1.8-.9 7.2-1.9 13.3-2.7 14.9 0 0 12.1-15 15.7-44.3 1.4-11.5-1.1-34.3-5.1-43 .2 4.9 0 9.8-.3 14.4-.4-.8-.8-1.6-1.3-2.2-3.2-4-11.8-17.5-9.4-26.6.9-3.5 3.1-6 6.7-7.8 3.8-1.9 8.8-2.9 15.1-2.9 12.3 0 25.9 3.7 32.9 6 25.1 8 55.4 30.9 64.1 37.7.2.2.4.3.4.3l5.6 3.9-3.5-5.8c-.2-.3-19.1-31.4-53.2-46.5 2-2.9 7.4-8.1 21.6-15.1 21.4-10.5 46.5-15.8 74.3-15.8 27.9 0 52.9 5.3 74.3 15.8 14.2 6.9 19.6 12.2 21.6 15.1-34 15.1-52.9 46.2-53.1 46.5l-3.5 5.8 5.6-3.9s.2-.1.4-.3c8.7-6.8 39-29.8 64.1-37.7 7-2.2 20.6-6 32.9-6 6.3 0 11.3 1 15.1 2.9 3.5 1.8 5.7 4.4 6.7 7.8 2.5 9.1-6.1 22.6-9.4 26.6-.5.6-.9 1.3-1.3 2.2-.3-4.6-.5-9.5-.3-14.4-4 8.8-6.5 31.5-5.1 43 3.6 29.3 15.7 44.3 15.7 44.3-.8-1.6-1.8-7.7-2.7-14.9.7.6 1.5 1.2 2.2 1.8l.5.4c4.6 3.7 8.9 7.1 8.9 18.2 0 14.2-15.4 22.5-30.2 30.5-2.9 1.5-5.7 3.1-8.4 4.6-8.7 5-18 16.7-19.1 34.2-.9 14.6.9 49.9 3.4 75.9-12.4 4.8-26.7 6.4-39.7 6.8-2-4.1-3.9-8.5-5.5-13.1-.7-2-19.6-51.1-26.4-62.2 5.5 39 17.5 73.7 23.5 89.6-3.5-.5-7.3-.7-11.7-.7h-117c-4.4 0-8.3.3-11.7.7 6-15.9 18.1-50.6 23.5-89.6-6.8 11.2-25.7 60.3-26.4 62.2-1.6 4.6-3.5 9-5.5 13.1-13-.4-27.2-2-39.7-6.8 2.5-26 4.3-61.2 3.4-75.9-.9-17.4-10.3-29.2-19-34.2zM34.8 404.6c-12.1-20-8.7-54.1-3.7-59.1 10.9 34.4 47.2 44.3 74.4 45.4-2.7 4.2-5.2 7.6-7 10l-1.4 1.4c-7.2 7.8-8.6 18.5-4.1 31.8-22.7-.1-46.3-9.8-58.2-29.5zm45.7 43.5c6 1.1 12.2 1.9 18.6 2.4 3.5 8 7.4 15.9 12.3 23.1-14.4-5.9-24.4-16-30.9-25.5zM192 498.2c-60.6-.1-78.3-45.8-84.9-64.7-3.7-10.5-3.4-18.2.9-23.1 2.9-3.3 9.5-7.2 24.6-7.2h118.8c15.1 0 21.8 3.9 24.6 7.2 4.2 4.8 4.5 12.6.9 23.1-6.6 18.8-24.3 64.6-84.9 64.7zm80.6-24.6c4.9-7.2 8.8-15.1 12.3-23.1 6.4-.5 12.6-1.3 18.6-2.4-6.5 9.5-16.5 19.6-30.9 25.5zm76.6-69c-12 19.7-35.6 29.3-58.1 29.7 4.5-13.3 3.1-24.1-4.1-31.8-.4-.5-.9-1-1.4-1.5-1.8-2.4-4.3-5.8-7-10 27.2-1.2 63.5-11 74.4-45.4 5 5 8.4 39.1-3.8 59z"] }; +var faGulp = { prefix: 'fab', iconName: 'gulp', icon: [256, 512, [], "f3ae", "M209.8 391.1l-14.1 24.6-4.6 80.2c0 8.9-28.3 16.1-63.1 16.1s-63.1-7.2-63.1-16.1l-5.8-79.4-14.9-25.4c41.2 17.3 126 16.7 165.6 0zm-196-253.3l13.6 125.5c5.9-20 20.8-47 40-55.2 6.3-2.7 12.7-2.7 18.7.9 5.2 3 9.6 9.3 10.1 11.8 1.2 6.5-2 9.1-4.5 9.1-3 0-5.3-4.6-6.8-7.3-4.1-7.3-10.3-7.6-16.9-2.8-6.9 5-12.9 13.4-17.1 20.7-5.1 8.8-9.4 18.5-12 28.2-1.5 5.6-2.9 14.6-.6 19.9 1 2.2 2.5 3.6 4.9 3.6 5 0 12.3-6.6 15.8-10.1 4.5-4.5 10.3-11.5 12.5-16l5.2-15.5c2.6-6.8 9.9-5.6 9.9 0 0 10.2-3.7 13.6-10 34.7-5.8 19.5-7.6 25.8-7.6 25.8-.7 2.8-3.4 7.5-6.3 7.5-1.2 0-2.1-.4-2.6-1.2-1-1.4-.9-5.3-.8-6.3.2-3.2 6.3-22.2 7.3-25.2-2 2.2-4.1 4.4-6.4 6.6-5.4 5.1-14.1 11.8-21.5 11.8-3.4 0-5.6-.9-7.7-2.4l7.6 79.6c2 5 39.2 17.1 88.2 17.1 49.1 0 86.3-12.2 88.2-17.1l10.9-94.6c-5.7 5.2-12.3 11.6-19.6 14.8-5.4 2.3-17.4 3.8-17.4-5.7 0-5.2 9.1-14.8 14.4-21.5 1.4-1.7 4.7-5.9 4.7-8.1 0-2.9-6-2.2-11.7 2.5-3.2 2.7-6.2 6.3-8.7 9.7-4.3 6-6.6 11.2-8.5 15.5-6.2 14.2-4.1 8.6-9.1 22-5 13.3-4.2 11.8-5.2 14-.9 1.9-2.2 3.5-4 4.5-1.9 1-4.5.9-6.1-.3-.9-.6-1.3-1.9-1.3-3.7 0-.9.1-1.8.3-2.7 1.5-6.1 7.8-18.1 15-34.3 1.6-3.7 1-2.6.8-2.3-6.2 6-10.9 8.9-14.4 10.5-5.8 2.6-13 2.6-14.5-4.1-.1-.4-.1-.8-.2-1.2-11.8 9.2-24.3 11.7-20-8.1-4.6 8.2-12.6 14.9-22.4 14.9-4.1 0-7.1-1.4-8.6-5.1-2.3-5.5 1.3-14.9 4.6-23.8 1.7-4.5 4-9.9 7.1-16.2 1.6-3.4 4.2-5.4 7.6-4.5.6.2 1.1.4 1.6.7 2.6 1.8 1.6 4.5.3 7.2-3.8 7.5-7.1 13-9.3 20.8-.9 3.3-2 9 1.5 9 2.4 0 4.7-.8 6.9-2.4 4.6-3.4 8.3-8.5 11.1-13.5 2-3.6 4.4-8.3 5.6-12.3.5-1.7 1.1-3.3 1.8-4.8 1.1-2.5 2.6-5.1 5.2-5.1 1.3 0 2.4.5 3.2 1.5 1.7 2.2 1.3 4.5.4 6.9-2 5.6-4.7 10.6-6.9 16.7-1.3 3.5-2.7 8-2.7 11.7 0 3.4 3.7 2.6 6.8 1.2 2.4-1.1 4.8-2.8 6.8-4.5 1.2-4.9.9-3.8 26.4-68.2 1.3-3.3 3.7-4.7 6.1-4.7 1.2 0 2.2.4 3.2 1.1 1.7 1.3 1.7 4.1 1 6.2-.7 1.9-.6 1.3-4.5 10.5-5.2 12.1-8.6 20.8-13.2 31.9-1.9 4.6-7.7 18.9-8.7 22.3-.6 2.2-1.3 5.8 1 5.8 5.4 0 19.3-13.1 23.1-17 .2-.3.5-.4.9-.6.6-1.9 1.2-3.7 1.7-5.5 1.4-3.8 2.7-8.2 5.3-11.3.8-1 1.7-1.6 2.7-1.6 2.8 0 4.2 1.2 4.2 4 0 1.1-.7 5.1-1.1 6.2 1.4-1.5 2.9-3 4.5-4.5 15-13.9 25.7-6.8 25.7.2 0 7.4-8.9 17.7-13.8 23.4-1.6 1.9-4.9 5.4-5 6.4 0 1.3.9 1.8 2.2 1.8 2 0 6.4-3.5 8-4.7 5-3.9 11.8-9.9 16.6-14.1l14.8-136.8c-30.5 17.1-197.6 17.2-228.3.2zm229.7-8.5c0 21-231.2 21-231.2 0 0-8.8 51.8-15.9 115.6-15.9 9 0 17.8.1 26.3.4l12.6-48.7L228.1.6c1.4-1.4 5.8-.2 9.9 3.5s6.6 7.9 5.3 9.3l-.1.1L185.9 74l-10 40.7c39.9 2.6 67.6 8.1 67.6 14.6zm-69.4 4.6c0-.8-.9-1.5-2.5-2.1l-.2.8c0 1.3-5 2.4-11.1 2.4s-11.1-1.1-11.1-2.4c0-.1 0-.2.1-.3l.2-.7c-1.8.6-3 1.4-3 2.3 0 2.1 6.2 3.7 13.7 3.7 7.7.1 13.9-1.6 13.9-3.7z"] }; +var faHackerNews = { prefix: 'fab', iconName: 'hacker-news', icon: [448, 512, [], "f1d4", "M0 32v448h448V32H0zm21.2 197.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z"] }; +var faHackerNewsSquare = { prefix: 'fab', iconName: 'hacker-news-square', icon: [448, 512, [], "f3af", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM21.2 229.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z"] }; +var faHips = { prefix: 'fab', iconName: 'hips', icon: [640, 512, [], "f452", "M0 80.2c0-1.8.9-2.7 2.7-2.7h40.9c1.9 0 2.8.9 2.8 2.7v81.2c15.2-7.7 31.7-11.5 49.8-11.4 24 .1 44.2 6.2 60.3 18 18.7 13.5 28 31.9 28 55.3v136.1c0 1.9-.9 2.8-2.7 2.8h-27.3c-9.1 0-16.4-7.3-16.4-16.3V223.3c0-.9 2.7-27-45.8-27-48.6 0-45.8 26.2-45.8 27v136.1c0 1.9-.9 2.8-2.8 2.8h-41c-1.8 0-2.7-.9-2.7-2.8V80.2zm497.7 221.5c13.7 10.2 34.1 19.1 58.4 19.1 23.3 0 32.8-4.5 36.5-13.6 3-7.9-.6-16.1-12.2-21.2l-53.6-23.5c-21.4-9.4-33.8-24-37.2-43.6-5.7-33.7 22.2-53.3 22.7-53.7 13.2-9.6 32-15.4 58.5-15.4 19 0 37.4 3.3 55.1 9.9 1.3.5 1.9 1.3 1.9 2.6V207c0 2.1-2.3 3.4-4 2.4-39.7-20.7-76.6-12.3-84-6.8-6.6 4.9-6 12.5 2.6 16.1L600 244c16.5 7.1 28.1 18.4 34.9 34.1 5.5 12.6 6.6 25.6 3.1 39.1-9.6 36.9-44.9 45.5-45.6 45.8-10.5 3.1-23.6 4.3-36.3 4.3-16.6 0-32.6-2.7-48.2-8.2-9.7-3.4-14.6-10.3-14.6-20.7V304c0-2.1 2.3-3.7 4.4-2.3zM376.2 149.8c-31.7 0-104.2 20.1-104.2 103.5v183.5c0 .8.6 2.7 2.7 2.7h40.9c1.9 0 2.8-.9 2.8-2.7V348c16.5 12.7 35.8 19.1 57.7 19.1 60.5 0 108.7-48.5 108.7-108.7.1-60.3-48.2-108.6-108.6-108.6zm0 170.9c-17.2 0-31.9-6.1-44-18.2-12.2-12.2-18.2-26.8-18.2-44 0-34.5 27.6-62.2 62.2-62.2 34.5 0 62.2 27.6 62.2 62.2.1 34.3-27.3 62.2-62.2 62.2zm-124.6 38.7c0 1.9-.9 2.8-2.8 2.8h-40.9c-1.6 0-2.7-1.4-2.7-2.8V157.6c0-1.4 1.1-2.8 2.7-2.8h40.9c1.9 0 2.8.9 2.8 2.8v201.8M228.3 72.5c15.9 0 28.9 12.7 28.9 28.9 0 15.8-12.7 28.9-28.9 28.9s-28.9-13.3-28.9-28.9c.1-16 13-28.9 28.9-28.9"] }; +var faHireAHelper = { prefix: 'fab', iconName: 'hire-a-helper', icon: [512, 512, [], "f3b0", "M443.1 0H71.9C67.9 37.3 37.4 67.8 0 71.7v371.5c37.4 4.9 66 32.4 71.9 68.8h372.2c3-36.4 32.5-65.8 67.9-69.8V71.7c-36.4-5.9-65-35.3-68.9-71.7zm-37 404.9c-36.3 0-18.8-2-55.1-2-35.8 0-21 2-56.1 2-5.9 0-4.9-8.2 0-9.8 22.8-7.6 22.9-10.2 24.6-12.8 10.4-15.6 5.9-83 5.9-113 0-5.3-6.4-12.8-13.8-12.8H200.4c-7.4 0-13.8 7.5-13.8 12.8 0 30-4.5 97.4 5.9 113 1.7 2.5 1.8 5.2 24.6 12.8 4.9 1.6 6 9.8 0 9.8-35.1 0-20.3-2-56.1-2-36.3 0-18.8 2-55.1 2-7.9 0-5.8-10.8 0-10.8 10.2-3.4 13.5-3.5 21.7-13.8 7.7-12.9 7.9-44.4 7.9-127.8V151.3c0-22.2-12.2-28.3-28.6-32.4-8.8-2.2-4-11.8 1-11.8 36.5 0 20.6 2 57.1 2 32.7 0 16.5-2 49.2-2 3.3 0 8.5 8.3 1 10.8-4.9 1.6-27.6 3.7-27.6 39.3 0 45.6-.2 55.8 1 68.8 0 1.3 2.3 12.8 12.8 12.8h109.2c10.5 0 12.8-11.5 12.8-12.8 1.2-13 1-23.2 1-68.8 0-35.6-22.7-37.7-27.6-39.3-7.5-2.5-2.3-10.8 1-10.8 32.7 0 16.5 2 49.2 2 36.5 0 20.6-2 57.1-2 4.9 0 9.9 9.6 1 11.8-16.4 4.1-28.6 10.3-28.6 32.4v101.2c0 83.4.1 114.9 7.9 127.8 8.2 10.2 11.4 10.4 21.7 13.8 5.8 0 7.8 10.8 0 10.8z"] }; +var faHooli = { prefix: 'fab', iconName: 'hooli', icon: [640, 512, [], "f427", "M508.4 352h57.9V156.7L508.4 184v168zm73.7-110.5V352H640V241.5h-57.9zm-250.7-8.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.2-1.1-50.4 17.1c-1.9 1.9-3.7 3.9-5.3 6-38.2-29.6-72.5-46.5-102.1-61.1v-20.7l-22.5 10.6c-54.4-22.1-89-18.2-97.3.1 0 0-24.9 32.8 61.9 110.9v-31c-48.8-54.6-39-76.1-35.3-79.2 13.5-11.4 37.5-8 64.4 2.1L65.2 184v63.3c13.1 14.7 30.5 31.5 53.5 50.4l4.5 3.6v-29.8c0-6.9 1.7-18.2 10.8-18.2s10.6 6.9 10.6 15V317c18 12.2 37.3 22.1 57.7 29.6v-93.9c0-18.7-13.4-37.4-40.6-37.4-15.8-.1-30.5 8.2-38.5 21.9v-54.3c41.9 20.9 83.9 46.5 99.9 58.3-10.2 14.6-9.3 28.1-9.3 43.7 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.7-33.8 16.7-52.5 0-18.5 1.5-34.2-16.7-52.3zm-39.7 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm185.7-71.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.3-1.1-50.4 17.1c-18.2 18.2-16.8 33.9-16.8 52.6 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.8-33.8 16.8-52.5-.1-18.8 1.3-34.5-16.8-52.6zm-39.8 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm173.5-73c15.9 0 28.9-12.9 28.9-28.9s-12.9-24.5-28.9-24.5c-15.9 0-28.9 8.6-28.9 24.5s12.9 28.9 28.9 28.9zM144.5 352l38.3.8c-13.2-4.6-26-10.2-38.3-16.8v16zm-21.4 0v-28.6c-6.5-4.2-13-8.7-19.4-13.6-14.8-11.2-27.5-21.7-38.5-31.5V352h57.9zm59.7.8c36.5 12.5 69.9 14.2 94.7 7.2-19.9.2-45.8-2.6-75.3-13.3v5.3l-19.4.8z"] }; +var faHotjar = { prefix: 'fab', iconName: 'hotjar', icon: [448, 512, [], "f3b1", "M414.9 161.5C340.2 29 121.1 0 121.1 0S222.2 110.4 93 197.7C11.3 252.8-21 324.4 14 402.6c26.8 59.9 83.5 84.3 144.6 93.4-29.2-55.1-6.6-122.4-4.1-129.6 57.1 86.4 165 0 110.8-93.9 71 15.4 81.6 138.6 27.1 215.5 80.5-25.3 134.1-88.9 148.8-145.6 15.5-59.3 3.7-127.9-26.3-180.9z"] }; +var faHouzz = { prefix: 'fab', iconName: 'houzz', icon: [414, 512, [], "f27c", "M258.9 330.7H154.3V480H0V32h109.5v104.5l305.1 85.6V480H258.9V330.7z"] }; +var faHtml5 = { prefix: 'fab', iconName: 'html5', icon: [384, 512, [], "f13b", "M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z"] }; +var faHubspot = { prefix: 'fab', iconName: 'hubspot', icon: [512, 512, [], "f3b2", "M267.4 211.6c-25.1 23.7-40.8 57.3-40.8 94.6 0 29.3 9.7 56.3 26 78L203.1 434c-4.4-1.6-9.1-2.5-14-2.5-10.8 0-20.9 4.2-28.5 11.8-7.6 7.6-11.8 17.8-11.8 28.6s4.2 20.9 11.8 28.5c7.6 7.6 17.8 11.6 28.5 11.6 10.8 0 20.9-3.9 28.6-11.6 7.6-7.6 11.8-17.8 11.8-28.5 0-4.2-.6-8.2-1.9-12.1l50-50.2c22 16.9 49.4 26.9 79.3 26.9 71.9 0 130-58.3 130-130.2 0-65.2-47.7-119.2-110.2-128.7V116c17.5-7.4 28.2-23.8 28.2-42.9 0-26.1-20.9-47.9-47-47.9S311.2 47 311.2 73.1c0 19.1 10.7 35.5 28.2 42.9v61.2c-15.2 2.1-29.6 6.7-42.7 13.6-27.6-20.9-117.5-85.7-168.9-124.8 1.2-4.4 2-9 2-13.8C129.8 23.4 106.3 0 77.4 0 48.6 0 25.2 23.4 25.2 52.2c0 28.9 23.4 52.3 52.2 52.3 9.8 0 18.9-2.9 26.8-7.6l163.2 114.7zm89.5 163.6c-38.1 0-69-30.9-69-69s30.9-69 69-69 69 30.9 69 69-30.9 69-69 69z"] }; +var faImdb = { prefix: 'fab', iconName: 'imdb', icon: [448, 512, [], "f2d8", "M350.5 288.7c0 5.4 1.6 14.4-6.2 14.4-1.6 0-3-.8-3.8-2.4-2.2-5.1-1.1-44.1-1.1-44.7 0-3.8-1.1-12.7 4.9-12.7 7.3 0 6.2 7.3 6.2 12.7v32.7zM265 229.9c0-9.7 1.6-16-10.3-16v83.7c12.2.3 10.3-8.7 10.3-18.4v-49.3zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM21.3 228.8c-.1.1-.2.3-.3.4h.3v-.4zM97 192H64v127.8h33V192zm113.3 0h-43.1l-7.6 59.9c-2.7-20-5.4-40.1-8.7-59.9h-42.8v127.8h29v-84.5l12.2 84.5h20.6l11.6-86.4v86.4h28.7V192zm86.3 45.3c0-8.1.3-16.8-1.4-24.4-4.3-22.5-31.4-20.9-49-20.9h-24.6v127.8c86.1.1 75 6 75-82.5zm85.9 17.3c0-17.3-.8-30.1-22.2-30.1-8.9 0-14.9 2.7-20.9 9.2V192h-31.7v127.8h29.8l1.9-8.1c5.7 6.8 11.9 9.8 20.9 9.8 19.8 0 22.2-15.2 22.2-30.9v-36z"] }; +var faInstagram = { prefix: 'fab', iconName: 'instagram', icon: [448, 512, [], "f16d", "M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"] }; +var faInternetExplorer = { prefix: 'fab', iconName: 'internet-explorer', icon: [512, 512, [], "f26b", "M483.049 159.706c10.855-24.575 21.424-60.438 21.424-87.871 0-72.722-79.641-98.371-209.673-38.577-107.632-7.181-211.221 73.67-237.098 186.457 30.852-34.862 78.271-82.298 121.977-101.158C125.404 166.85 79.128 228.002 43.992 291.725 23.246 329.651 0 390.94 0 436.747c0 98.575 92.854 86.5 180.251 42.006 31.423 15.43 66.559 15.573 101.695 15.573 97.124 0 184.249-54.294 216.814-146.022H377.927c-52.509 88.593-196.819 52.996-196.819-47.436H509.9c6.407-43.581-1.655-95.715-26.851-141.162zM64.559 346.877c17.711 51.15 53.703 95.871 100.266 123.304-88.741 48.94-173.267 29.096-100.266-123.304zm115.977-108.873c2-55.151 50.276-94.871 103.98-94.871 53.418 0 101.981 39.72 103.981 94.871H180.536zm184.536-187.6c21.425-10.287 48.563-22.003 72.558-22.003 31.422 0 54.274 21.717 54.274 53.722 0 20.003-7.427 49.007-14.569 67.867-26.28-42.292-65.986-81.584-112.263-99.586z"] }; +var faIoxhost = { prefix: 'fab', iconName: 'ioxhost', icon: [640, 512, [], "f208", "M616 160h-67.3C511.2 70.7 422.9 8 320 8 183 8 72 119 72 256c0 16.4 1.6 32.5 4.7 48H24c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h67.3c37.5 89.3 125.8 152 228.7 152 137 0 248-111 248-248 0-16.4-1.6-32.5-4.7-48H616c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24zm-96 96c0 110.5-89.5 200-200 200-75.7 0-141.6-42-175.5-104H424c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24H125.8c-3.8-15.4-5.8-31.4-5.8-48 0-110.5 89.5-200 200-200 75.7 0 141.6 42 175.5 104H216c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h298.2c3.8 15.4 5.8 31.4 5.8 48zm-304-24h208c13.3 0 24 10.7 24 24 0 13.2-10.7 24-24 24H216c-13.3 0-24-10.7-24-24 0-13.2 10.7-24 24-24z"] }; +var faItunes = { prefix: 'fab', iconName: 'itunes', icon: [448, 512, [], "f3b4", "M223.6 80.3C129 80.3 52.5 157 52.5 251.5S129 422.8 223.6 422.8s171.2-76.7 171.2-171.2c0-94.6-76.7-171.3-171.2-171.3zm79.4 240c-3.2 13.6-13.5 21.2-27.3 23.8-12.1 2.2-22.2 2.8-31.9-5-11.8-10-12-26.4-1.4-36.8 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 3.2-3.6 2.2-2 2.2-80.8 0-5.6-2.7-7.1-8.4-6.1-4 .7-91.9 17.1-91.9 17.1-5 1.1-6.7 2.6-6.7 8.3 0 116.1.5 110.8-1.2 118.5-2.1 9-7.6 15.8-14.9 19.6-8.3 4.6-23.4 6.6-31.4 5.2-21.4-4-28.9-28.7-14.4-42.9 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 5-5.7.9-127 2.6-133.7.4-2.6 1.5-4.8 3.5-6.4 2.1-1.7 5.8-2.7 6.7-2.7 101-19 113.3-21.4 115.1-21.4 5.7-.4 9 3 9 8.7-.1 170.6.4 161.4-1 167.6zM345.2 32H102.8C45.9 32 0 77.9 0 134.8v242.4C0 434.1 45.9 480 102.8 480h242.4c57 0 102.8-45.9 102.8-102.8V134.8C448 77.9 402.1 32 345.2 32zM223.6 444c-106.3 0-192.5-86.2-192.5-192.5S117.3 59 223.6 59s192.5 86.2 192.5 192.5S329.9 444 223.6 444z"] }; +var faItunesNote = { prefix: 'fab', iconName: 'itunes-note', icon: [384, 512, [], "f3b5", "M381.9 388.2c-6.4 27.4-27.2 42.8-55.1 48-24.5 4.5-44.9 5.6-64.5-10.2-23.9-20.1-24.2-53.4-2.7-74.4 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 6.4-7.2 4.4-4.1 4.4-163.2 0-11.2-5.5-14.3-17-12.3-8.2 1.4-185.7 34.6-185.7 34.6-10.2 2.2-13.4 5.2-13.4 16.7 0 234.7 1.1 223.9-2.5 239.5-4.2 18.2-15.4 31.9-30.2 39.5-16.8 9.3-47.2 13.4-63.4 10.4-43.2-8.1-58.4-58-29.1-86.6 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 10.1-11.5 1.8-256.6 5.2-270.2.8-5.2 3-9.6 7.1-12.9 4.2-3.5 11.8-5.5 13.4-5.5 204-38.2 228.9-43.1 232.4-43.1 11.5-.8 18.1 6 18.1 17.6.2 344.5 1.1 326-1.8 338.5z"] }; +var faJava = { prefix: 'fab', iconName: 'java', icon: [377, 512, [], "f4e4", "M121.6 396s-19.6 11.4 13.9 15.2c40.6 4.6 61.3 4 106-4.5 0 0 11.8 7.4 28.2 13.8C169.5 463.4 42.9 418 121.6 396m-12.2-56.1s-21.9 16.2 11.6 19.7c43.3 4.5 77.6 4.8 136.8-6.6 0 0 8.2 8.3 21.1 12.8-121.3 35.5-256.3 2.9-169.5-25.9m103.2-95.1c24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3.1 0-175.2 43.8-91.5 140.2m132.6 192.6s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6.7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2 204.2 33.2 372.4-14.9 319.4-38.8M131 281.8s-93.1 22.1-33 30.1c25.4 3.4 76 2.6 123.1-1.3 38.5-3.2 77.2-10.2 77.2-10.2s-13.6 5.8-23.4 12.5c-94.5 24.9-277 13.3-224.5-12.1 44.5-21.4 80.6-19 80.6-19m167 93.3c96.1-49.9 51.6-97.9 20.6-91.4-7.6 1.6-11 3-11 3s2.8-4.4 8.2-6.3c61.3-21.6 108.5 63.6-19.8 97.3 0-.1 1.5-1.4 2-2.6M240 0s53.2 53.2-50.5 135c-83.1 65.6-19 103.1 0 145.8-48.5-43.8-84.1-82.3-60.2-118.2C164.4 110.1 261.5 84.5 240 0m-99.5 510.4c92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6"] }; +var faJediOrder = { prefix: 'fab', iconName: 'jedi-order', icon: [448, 512, [], "f50e", "M231.89 335.72l31.44-45.89-20.18 55.5 62.56 9.09-62.56 9.08 24.22 47.43s-30.22-31.77-34.49-36.25c1.76 68.78 2.19 85.7 2.19 85.7s154.4-71.65 68.62-230.09c0 0 106.97-118.07 10.09-190.73 0 0 165.5 99.91 60.55 271.46 0 0 86.78-84.77 41.37-170.54 0 0 78.71 111.01-17.16 233.11 0 0 26.24-16.15 49.45-77.71 0 0-16.93 183.26-221.96 185.66v.02h-4.08v-.02C16.93 479.14 0 295.88 0 295.88c23.21 61.56 49.44 77.71 49.44 77.71-95.87-122.11-17.15-233.11-17.15-233.11-45.41 85.78 41.38 170.54 41.38 170.54-104.95-171.56 60.54-271.46 60.54-271.46-96.88 72.66 10.09 190.73 10.09 190.73-85.78 158.44 68.62 230.09 68.62 230.09s.43-16.93 2.19-85.7l-34.48 36.25 24.22-47.43-62.56-9.08 62.56-9.09-20.18-55.5 31.44 45.89c2.25-87.85 7.82-305.82 7.85-306.85l.01-2.43.02 1 .03-1 .01 2.43c.05 1.72 5.61 219.2 7.86 306.85z"] }; +var faJenkins = { prefix: 'fab', iconName: 'jenkins', icon: [512, 512, [], "f3b6", "M487.1 425c-1.4-11.2-19-23.1-28.2-31.9-5.1-5-29-23.1-30.4-29.9-1.4-6.6 9.7-21.5 13.3-28.9 5.1-10.7 8.8-23.7 11.3-32.6 18.8-66.1 20.7-156.9-6.2-211.2-10.2-20.6-38.6-49-56.4-62.5-42-31.7-119.6-35.3-170.1-16.6-14.1 5.2-27.8 9.8-40.1 17.1-33.1 19.4-68.3 32.5-78.1 71.6-24.2 10.8-31.5 41.8-30.3 77.8.2 7 4.1 15.8 2.7 22.4-.7 3.3-5.2 7.6-6.1 9.8-11.6 27.7-2.3 64 11.1 83.7 8.1 11.9 21.5 22.4 39.2 25.2.7 10.6 3.3 19.7 8.2 30.4 3.1 6.8 14.7 19 10.4 27.7-2.2 4.4-21 13.8-27.3 17.6C89 407.2 73.7 415 54.2 429c-12.6 9-32.3 10.2-29.2 31.1 2.1 14.1 10.1 31.6 14.7 45.8.7 2 1.4 4.1 2.1 6h422c4.9-15.3 9.7-30.9 14.6-47.2 3.4-11.4 10.2-27.8 8.7-39.7zM205.9 33.7c1.8-.5 3.4.7 4.9 2.4-.2 5.2-5.4 5.1-8.9 6.8-5.4 6.7-13.4 9.8-20 17.2-6.8 7.5-14.4 27.7-23.4 30-4.5 1.1-9.7-.8-13.6-.5-10.4.7-17.7 6-28.3 7.5 13.6-29.9 56.1-54 89.3-63.4zm-104.8 93.6c13.5-14.9 32.1-24.1 54.8-25.9 11.7 29.7-8.4 65-.9 97.6 2.3 9.9 10.2 25.4-2.4 25.7.3-28.3-34.8-46.3-61.3-29.6-1.8-21.5-4.9-51.7 9.8-67.8zm36.7 200.2c-1-4.1-2.7-12.9-2.3-15.1 1.6-8.7 17.1-12.5 11-24.7-11.3-.1-13.8 10.2-24.1 11.3-26.7 2.6-45.6-35.4-44.4-58.4 1-19.5 17.6-38.2 40.1-35.8 16 1.8 21.4 19.2 24.5 34.7 9.2.5 22.5-.4 26.9-7.6-.6-17.5-8.8-31.6-8.2-47.7 1-30.3 17.5-57.6 4.8-87.4 13.6-30.9 53.5-55.3 83.1-70 36.6-18.3 94.9-3.7 129.3 15.8 19.7 11.1 34.4 32.7 48.3 50.7-19.5-5.8-36.1 4.2-33.1 20.3 16.3-14.9 44.2-.2 52.5 16.4 7.9 15.8 7.8 39.3 9 62.8 2.9 57-10.4 115.9-39.1 157.1-7.7 11-14.1 23-24.9 30.6-26 18.2-65.4 34.7-99.2 23.4-44.7-15-65-44.8-89.5-78.8.7 18.7 13.8 34.1 26.8 48.4 11.3 12.5 25 26.6 39.7 32.4-12.3-2.9-31.1-3.8-36.2 7.2-28.6-1.9-55.1-4.8-68.7-24.2-10.6-15.4-21.4-41.4-26.3-61.4zm222 124.1c4.1-3 11.1-2.9 17.4-3.6-5.4-2.7-13-3.7-19.3-2.2-.1-4.2-2-6.8-3.2-10.2 10.6-3.8 35.5-28.5 49.6-20.3 6.7 3.9 9.5 26.2 10.1 37 .4 9-.8 18-4.5 22.8-18.8-.6-35.8-2.8-50.7-7 .9-6.1-1-12.1.6-16.5zm-17.2-20c-16.8.8-26-1.2-38.3-10.8.2-.8 1.4-.5 1.5-1.4 18 8 40.8-3.3 59-4.9-7.9 5.1-14.6 11.6-22.2 17.1zm-12.1 33.2c-1.6-9.4-3.5-12-2.8-20.2 25-16.6 29.7 28.6 2.8 20.2zM226 438.6c-11.6-.7-48.1-14-38.5-23.7 9.4 6.5 27.5 4.9 41.3 7.3.8 4.4-2.8 10.2-2.8 16.4zM57.7 497.1c-4.3-12.7-9.2-25.1-14.8-36.9 30.8-23.8 65.3-48.9 102.2-63.5 2.8-1.1 23.2 25.4 26.2 27.6 16.5 11.7 37 21 56.2 30.2 1.2 8.8 3.9 20.2 8.7 35.5.7 2.3 1.4 4.7 2.2 7.2H57.7zm240.6 5.7h-.8c.3-.2.5-.4.8-.5v.5zm7.5-5.7c2.1-1.4 4.3-2.8 6.4-4.3 1.1 1.4 2.2 2.8 3.2 4.3h-9.6zm15.1-24.7c-10.8 7.3-20.6 18.3-33.3 25.2-6 3.3-27 11.7-33.4 10.2-3.6-.8-3.9-5.3-5.4-9.5-3.1-9-10.1-23.4-10.8-37-.8-17.2-2.5-46 16-42.4 14.9 2.9 32.3 9.7 43.9 16.1 7.1 3.9 11.1 8.6 21.9 9.5-.1 1.4-.1 2.8-.2 4.3-5.9 3.9-15.3 3.8-21.8 7.1 9.5.4 17 2.7 23.5 5.9-.1 3.4-.3 7-.4 10.6zm53.4 24.7h-14c-.1-3.2-2.8-5.8-6.1-5.8s-5.9 2.6-6.1 5.8h-17.4c-2.8-4.4-5.7-8.6-8.9-12.5 2.1-2.2 4-4.7 6-6.9 9 3.7 14.8-4.9 21.7-4.2 7.9.8 14.2 11.7 25.4 11l-.6 12.6zm8.7 0c.2-4 .4-7.8.6-11.5 15.6-7.3 29 1.3 35.7 11.5H383zm83.4-37c-2.3 11.2-5.8 24-9.9 37.1-.2-.1-.4-.1-.6-.1H428c.6-1.1 1.2-2.2 1.9-3.3-2.6-6.1-9-8.7-10.9-15.5 12.1-22.7 6.5-93.4-24.2-78.5 4.3-6.3 15.6-11.5 20.8-19.3 13 10.4 20.8 20.3 33.2 31.4 6.8 6 20 13.3 21.4 23.1.8 5.5-2.6 18.9-3.8 25.1zM222.2 130.5c5.4-14.9 27.2-34.7 45-32 7.7 1.2 18 8.2 12.2 17.7-30.2-7-45.2 12.6-54.4 33.1-8.1-2-4.9-13.1-2.8-18.8zm184.1 63.1c8.2-3.6 22.4-.7 29.6-5.3-4.2-11.5-10.3-21.4-9.3-37.7.5 0 1 0 1.4.1 6.8 14.2 12.7 29.2 21.4 41.7-5.7 13.5-43.6 25.4-43.1 1.2zm20.4-43zm-117.2 45.7c-6.8-10.9-19-32.5-14.5-45.3 6.5 11.9 8.6 24.4 17.8 33.3 4.1 4 12.2 9 8.2 20.2-.9 2.7-7.8 8.6-11.7 9.7-14.4 4.3-47.9.9-36.6-17.1 11.9.7 27.9 7.8 36.8-.8zm27.3 70c3.8 6.6 1.4 18.7 12.1 20.6 20.2 3.4 43.6-12.3 58.1-17.8 9-15.2-.8-20.7-8.9-30.5-16.6-20-38.8-44.8-38-74.7 6.7-4.9 7.3 7.4 8.2 9.7 8.7 20.3 30.4 46.2 46.3 63.5 3.9 4.3 10.3 8.4 11 11.2 2.1 8.2-5.4 18-4.5 23.5-21.7 13.9-45.8 29.1-81.4 25.6-7.4-6.7-10.3-21.4-2.9-31.1zm-201.3-9.2c-6.8-3.9-8.4-21-16.4-21.4-11.4-.7-9.3 22.2-9.3 35.5-7.8-7.1-9.2-29.1-3.5-40.3-6.6-3.2-9.5 3.6-13.1 5.9 4.7-34.1 49.8-15.8 42.3 20.3zm299.6 28.8c-10.1 19.2-24.4 40.4-54 41-.6-6.2-1.1-15.6 0-19.4 22.7-2.2 36.6-13.7 54-21.6zm-141.9 12.4c18.9 9.9 53.6 11 79.3 10.2 1.4 5.6 1.3 12.6 1.4 19.4-33 1.8-72-6.4-80.7-29.6zm92.2 46.7c-1.7 4.3-5.3 9.3-9.8 11.1-12.1 4.9-45.6 8.7-62.4-.3-10.7-5.7-17.5-18.5-23.4-26-2.8-3.6-16.9-12.9-.2-12.9 13.1 32.7 58 29 95.8 28.1z"] }; +var faJoget = { prefix: 'fab', iconName: 'joget', icon: [496, 512, [], "f3b7", "M227.5 468.7c-9-13.6-19.9-33.3-23.7-42.4-5.7-13.7-27.2-45.6 31.2-67.1 51.7-19.1 176.7-16.5 208.8-17.6-4 9-8.6 17.9-13.9 26.6-40.4 65.5-110.4 101.5-182 101.5-6.8 0-13.6-.4-20.4-1M66.1 143.9C128 43.4 259.6 12.2 360.1 74.1c74.8 46.1 111.2 130.9 99.3 212.7-24.9-.5-179.3-3.6-230.3-4.9-55.5-1.4-81.7-20.8-58.5-48.2 23.2-27.4 51.1-40.7 68.9-51.2 17.9-10.5 27.3-33.7-23.6-29.7C87.3 161.5 48.6 252.1 37.6 293c-8.8-49.7-.1-102.7 28.5-149.1m-29.2-18c-71.9 116.6-35.6 269.3 81 341.2 116.6 71.9 269.3 35.6 341.2-80.9 71.9-116.6 35.6-269.4-81-341.2-40.5-25.1-85.5-37-129.9-37C165 8 83.8 49.9 36.9 125.9m244.4 110.4c-31.5 20.5-65.3 31.3-65.3 31.3l169.5-1.6 46.5-23.4s3.6-9.5-19.1-15.5c-22.7-6-57 11.3-86.7 27.2-29.7 15.8-31.1 8.2-31.1 8.2s40.2-28.1 50.7-34.5c10.5-6.4 31.9-14 13.4-24.6-3.2-1.8-6.7-2.7-10.4-2.7-17.8 0-41.5 18.7-67.5 35.6"] }; +var faJoomla = { prefix: 'fab', iconName: 'joomla', icon: [448, 512, [], "f1aa", "M.6 92.1C.6 58.8 27.4 32 60.4 32c30 0 54.5 21.9 59.2 50.2 32.6-7.6 67.1.6 96.5 30l-44.3 44.3c-20.5-20.5-42.6-16.3-55.4-3.5-14.3 14.3-14.3 37.9 0 52.2l99.5 99.5-44 44.3c-87.7-87.2-49.7-49.7-99.8-99.7-26.8-26.5-35-64.8-24.8-98.9C20.4 144.6.6 120.7.6 92.1zm129.5 116.4l44.3 44.3c10-10 89.7-89.7 99.7-99.8 14.3-14.3 37.6-14.3 51.9 0 12.8 12.8 17 35-3.5 55.4l44 44.3c31.2-31.2 38.5-67.6 28.9-101.2 29.2-4.1 51.9-29.2 51.9-59.5 0-33.2-26.8-60.1-59.8-60.1-30.3 0-55.4 22.5-59.5 51.6-33.8-9.9-71.7-1.5-98.3 25.1-18.3 19.1-71.1 71.5-99.6 99.9zm266.3 152.2c8.2-32.7-.9-68.5-26.3-93.9-11.8-12.2 5 4.7-99.5-99.7l-44.3 44.3 99.7 99.7c14.3 14.3 14.3 37.6 0 51.9-12.8 12.8-35 17-55.4-3.5l-44 44.3c27.6 30.2 68 38.8 102.7 28 5.5 27.4 29.7 48.1 58.9 48.1 33 0 59.8-26.8 59.8-60.1 0-30.2-22.5-55-51.6-59.1zm-84.3-53.1l-44-44.3c-87 86.4-50.4 50.4-99.7 99.8-14.3 14.3-37.6 14.3-51.9 0-13.1-13.4-16.9-35.3 3.2-55.4l-44-44.3c-30.2 30.2-38 65.2-29.5 98.3-26.7 6-46.2 29.9-46.2 58.2C0 453.2 26.8 480 59.8 480c28.6 0 52.5-19.8 58.6-46.7 32.7 8.2 68.5-.6 94.2-26 32.1-32 12.2-12.4 99.5-99.7z"] }; +var faJs = { prefix: 'fab', iconName: 'js', icon: [448, 512, [], "f3b8", "M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"] }; +var faJsSquare = { prefix: 'fab', iconName: 'js-square', icon: [448, 512, [], "f3b9", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM243.8 381.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"] }; +var faJsfiddle = { prefix: 'fab', iconName: 'jsfiddle', icon: [576, 512, [], "f1cc", "M510.634 237.462c-4.727-2.621-5.664-5.748-6.381-10.776-2.352-16.488-3.539-33.619-9.097-49.095-35.895-99.957-153.99-143.386-246.849-91.646-27.37 15.25-48.971 36.369-65.493 63.903-3.184-1.508-5.458-2.71-7.824-3.686-30.102-12.421-59.049-10.121-85.331 9.167-25.531 18.737-36.422 44.548-32.676 76.408.355 3.025-1.967 7.621-4.514 9.545-39.712 29.992-56.031 78.065-41.902 124.615 13.831 45.569 57.514 79.796 105.608 81.433 30.291 1.031 60.637.546 90.959.539 84.041-.021 168.09.531 252.12-.48 52.664-.634 96.108-36.873 108.212-87.293 11.54-48.074-11.144-97.3-56.832-122.634zm21.107 156.88c-18.23 22.432-42.343 35.253-71.28 35.65-56.874.781-113.767.23-170.652.23 0 .7-163.028.159-163.728.154-43.861-.332-76.739-19.766-95.175-59.995-18.902-41.245-4.004-90.848 34.186-116.106 9.182-6.073 12.505-11.566 10.096-23.136-5.49-26.361 4.453-47.956 26.42-62.981 22.987-15.723 47.422-16.146 72.034-3.083 10.269 5.45 14.607 11.564 22.198-2.527 14.222-26.399 34.557-46.727 60.671-61.294 97.46-54.366 228.37 7.568 230.24 132.697.122 8.15 2.412 12.428 9.848 15.894 57.56 26.829 74.456 96.122 35.142 144.497zm-87.789-80.499c-5.848 31.157-34.622 55.096-66.666 55.095-16.953-.001-32.058-6.545-44.079-17.705-27.697-25.713-71.141-74.98-95.937-93.387-20.056-14.888-41.99-12.333-60.272 3.782-49.996 44.071 15.859 121.775 67.063 77.188 4.548-3.96 7.84-9.543 12.744-12.844 8.184-5.509 20.766-.884 13.168 10.622-17.358 26.284-49.33 38.197-78.863 29.301-28.897-8.704-48.84-35.968-48.626-70.179 1.225-22.485 12.364-43.06 35.414-55.965 22.575-12.638 46.369-13.146 66.991 2.474C295.68 280.7 320.467 323.97 352.185 343.47c24.558 15.099 54.254 7.363 68.823-17.506 28.83-49.209-34.592-105.016-78.868-63.46-3.989 3.744-6.917 8.932-11.41 11.72-10.975 6.811-17.333-4.113-12.809-10.353 20.703-28.554 50.464-40.44 83.271-28.214 31.429 11.714 49.108 44.366 42.76 78.186z"] }; +var faKeybase = { prefix: 'fab', iconName: 'keybase', icon: [412, 512, [], "f4f5", "M177.2 430.9c0 9.8-8 17.8-17.8 17.8s-17.8-8-17.8-17.8 8-17.8 17.8-17.8c9.8-.1 17.8 7.9 17.8 17.8zM270 413c-9.8 0-17.8 8-17.8 17.8s8 17.8 17.8 17.8 17.8-8 17.8-17.8-8-17.8-17.8-17.8zm142.3-36c0 38.9-7.6 73.9-22.2 103h-27.3c23.5-38.7 30.5-94.8 22.4-134.3-16.1 29.5-52.1 38.6-85.9 28.8-127.8-37.5-192.5 19.7-234.6 50.3l18.9-59.3-39.9 42.3c4.8 26.7 15.7 51.3 31.2 72.3H46.1c-9.7-15.8-17.2-33-22.2-51.3L.1 454c0-74.9-5.5-147.6 61.5-215.2 20.2-20.4 43.7-36.2 69.1-46.7-6.8-13.5-9.5-29.2-7.8-46l-19.9-1.2c-17.9-1.1-31.6-16.5-30.6-34.4v-.1L74 84.2c1.1-17.1 15.4-30.6 32.5-30.6 1.3 0-.3-.1 28.2 1.7 13.9.8 21.5 9.8 22.8 11.4 7.1-10.4 14.5-20.5 24.6-34.5l20.6 12.1c-13.6 29-9.1 36.2-9 36.3 3.9 0 13.9-.5 32.4 5.7C246 92.9 262 107 271 126c.4.9 15.5 29 1.2 62.6 19 6.1 51.3 19.9 82.4 51.8 36.6 37.6 57.7 87.4 57.7 136.6zM128 122.3c3.2-10 7.7-19.7 13.1-29.4.1-2 2.2-13.1-7.8-13.8-28.5-1.8-26.3-1.6-26.7-1.6-4.6 0-8.3 3.5-8.6 8.1l-1.6 26.2c-.3 4.7 3.4 8.8 8.1 9.1l23.5 1.4zm25.8 61.8c5.6 9.4 14.1 16.1 22.3 20 0-21.2 28.5-41.9 52.8-17.5l8.4 10.3c20.8-18.8 19.4-45.3 12.1-60.9-13.8-29.1-46.9-32-54.3-31.7-10.3.4-19.7-5.4-23.7-15.3-13.7 21.2-37.2 62.5-17.6 95.1zm82.9 68.4L217 268.6c-1.9 1.6-2.2 4.4-.6 6.3l8.9 10.9c1 1.2 3.8 2.7 6.3.6l19.6-16 5.5 6.8c4.9 6 13.8-1.4 9-7.3-63.6-78.3-41.5-51.1-55.3-68.1-4.7-6-13.9 1.4-9 7.3 1.9 2.3 18.4 22.6 19.8 24.3l-9.6 7.9c-4.6 3.8 2.6 13.3 7.4 9.4l9.7-8 8 9.8zm118.4 25.7c-16.9-23.7-42.6-46.7-73.4-60.4-7.9-3.5-15-6.1-22.9-8.6-2 2.2-4.1 4.3-6.4 6.2l31.9 39.2c10.4 12.7 8.5 31.5-4.2 41.9-1.3 1.1-13.1 10.7-29 4.9-2.9 2.3-10.1 9.9-22.2 9.9-8.6 0-16.6-3.8-22.1-10.5l-8.9-10.9c-6.3-7.8-7.9-17.9-5-26.8-8.2-9.9-8.3-21.3-4.6-30-7.2-1.3-26.7-6.2-42.7-21.4-55.8 20.7-88 64.4-101.3 91.2-14.9 30.2-18.8 60.9-19.9 90.2 8.2-8.7-3.9 4.1 114-120.9l-29.9 93.6c57.8-31.1 124-36 197.4-14.4 23.6 6.9 45.1 1.6 56-13.9 11.1-15.6 8.5-37.7-6.8-59.3zM110.6 107.3l15.6 1 1-15.6-15.6-1-1 15.6z"] }; +var faKeycdn = { prefix: 'fab', iconName: 'keycdn', icon: [512, 512, [], "f3ba", "M63.8 409.3l60.5-59c32.1 42.8 71.1 66 126.6 67.4 30.5.7 60.3-7 86.4-22.4 5.1 5.3 18.5 19.5 20.9 22-32.2 20.7-69.6 31.1-108.1 30.2-43.3-1.1-84.6-16.7-117.7-44.4.3-.6-38.2 37.5-38.6 37.9 9.5 29.8-13.1 62.4-46.3 62.4C20.7 503.3 0 481.7 0 454.9c0-34.3 33.1-56.6 63.8-45.6zm354.9-252.4c19.1 31.3 29.6 67.4 28.7 104-1.1 44.8-19 87.5-48.6 121 .3.3 23.8 25.2 24.1 25.5 9.6-1.3 19.2 2 25.9 9.1 11.3 12 10.9 30.9-1.1 42.4-12 11.3-30.9 10.9-42.4-1.1-6.7-7-9.4-16.8-7.6-26.3-24.9-26.6-44.4-47.2-44.4-47.2 42.7-34.1 63.3-79.6 64.4-124.2.7-28.9-7.2-57.2-21.1-82.2l22.1-21zM104 53.1c6.7 7 9.4 16.8 7.6 26.3l45.9 48.1c-4.7 3.8-13.3 10.4-22.8 21.3-25.4 28.5-39.6 64.8-40.7 102.9-.7 28.9 6.1 57.2 20 82.4l-22 21.5C72.7 324 63.1 287.9 64.2 250.9c1-44.6 18.3-87.6 47.5-121.1l-25.3-26.4c-9.6 1.3-19.2-2-25.9-9.1-11.3-12-10.9-30.9 1.1-42.4C73.5 40.7 92.2 41 104 53.1zM464.9 8c26 0 47.1 22.4 47.1 48.3S490.9 104 464.9 104c-6.3.1-14-1.1-15.9-1.8l-62.9 59.7c-32.7-43.6-76.7-65.9-126.9-67.2-30.5-.7-60.3 6.8-86.2 22.4l-21.1-22C184.1 74.3 221.5 64 260 64.9c43.3 1.1 84.6 16.7 117.7 44.6l41.1-38.6c-1.5-4.7-2.2-9.6-2.2-14.5C416.5 29.7 438.9 8 464.9 8zM256.7 113.4c5.5 0 10.9.4 16.4 1.1 78.1 9.8 133.4 81.1 123.8 159.1-9.8 78.1-81.1 133.4-159.1 123.8-78.1-9.8-133.4-81.1-123.8-159.2 9.3-72.4 70.1-124.6 142.7-124.8zm-59 119.4c.6 22.7 12.2 41.8 32.4 52.2l-11 51.7h73.7l-11-51.7c20.1-10.9 32.1-29 32.4-52.2-.4-32.8-25.8-57.5-58.3-58.3-32.1.8-57.3 24.8-58.2 58.3zM256 160"] }; +var faKickstarter = { prefix: 'fab', iconName: 'kickstarter', icon: [448, 512, [], "f3bb", "M400 480H48c-26.4 0-48-21.6-48-48V80c0-26.4 21.6-48 48-48h352c26.4 0 48 21.6 48 48v352c0 26.4-21.6 48-48 48zM199.6 178.5c0-30.7-17.6-45.1-39.7-45.1-25.8 0-40 19.8-40 44.5v154.8c0 25.8 13.7 45.6 40.5 45.6 21.5 0 39.2-14 39.2-45.6v-41.8l60.6 75.7c12.3 14.9 39 16.8 55.8 0 14.6-15.1 14.8-36.8 4-50.4l-49.1-62.8 40.5-58.7c9.4-13.5 9.5-34.5-5.6-49.1-16.4-15.9-44.6-17.3-61.4 7l-44.8 64.7v-38.8z"] }; +var faKickstarterK = { prefix: 'fab', iconName: 'kickstarter-k', icon: [384, 512, [], "f3bc", "M147.3 114.4c0-56.2-32.5-82.4-73.4-82.4C26.2 32 0 68.2 0 113.4v283c0 47.3 25.3 83.4 74.9 83.4 39.8 0 72.4-25.6 72.4-83.4v-76.5l112.1 138.3c22.7 27.2 72.1 30.7 103.2 0 27-27.6 27.3-67.4 7.4-92.2l-90.8-114.8 74.9-107.4c17.4-24.7 17.5-63.1-10.4-89.8-30.3-29-82.4-31.6-113.6 12.8L147.3 185v-70.6z"] }; +var faKorvue = { prefix: 'fab', iconName: 'korvue', icon: [446, 512, [], "f42f", "M386.5 34h-327C26.8 34 0 60.8 0 93.5v327.1C0 453.2 26.8 480 59.5 480h327.1c33 0 59.5-26.8 59.5-59.5v-327C446 60.8 419.2 34 386.5 34zM87.1 120.8h96v116l61.8-116h110.9l-81.2 132H87.1v-132zm161.8 272.1l-65.7-113.6v113.6h-96V262.1h191.5l88.6 130.8H248.9z"] }; +var faLaravel = { prefix: 'fab', iconName: 'laravel', icon: [640, 512, [], "f3bd", "M637.5 241.6c-4.2-4.8-62.8-78.1-73.1-90.5-10.3-12.4-15.4-10.2-21.7-9.3-6.4.9-80.5 13.4-89.1 14.8-8.6 1.5-14 4.9-8.7 12.3 4.7 6.6 53.4 75.7 64.2 90.9l-193.7 46.4L161.2 48.7c-6.1-9.1-7.4-12.3-21.4-11.6-14 .6-120.9 9.5-128.5 10.2-7.6.6-16 4-8.4 22s129 279.6 132.4 287.2c3.4 7.6 12.2 20 32.8 15 21.1-5.1 94.3-24.2 134.3-34.7 21.1 38.3 64.2 115.9 72.2 127 10.6 14.9 18 12.4 34.3 7.4 12.8-3.9 199.6-71.1 208-74.5 8.4-3.5 13.6-5.9 7.9-14.4-4.2-6.2-53.5-72.2-79.3-106.8 17.7-4.7 80.6-21.4 87.3-23.3 7.9-2 9-5.8 4.7-10.6zm-352.2 72c-2.3.5-110.8 26.5-116.6 27.8-5.8 1.3-5.8.7-6.5-1.3-.7-2-129-266.7-130.8-270-1.8-3.3-1.7-5.9 0-5.9s102.5-9 106-9.2c3.6-.2 3.2.6 4.5 2.8 0 0 142.2 245.4 144.6 249.7 2.6 4.3 1.1 5.6-1.2 6.1zm306 57.4c1.7 2.7 3.5 4.5-2 6.4-5.4 2-183.7 62.1-187.1 63.6-3.5 1.5-6.2 2-10.6-4.5s-62.4-106.8-62.4-106.8L518 280.6c4.7-1.5 6.2-2.5 9.2 2.2 2.9 4.8 62.4 85.5 64.1 88.2zm12.1-134.1c-4.2.9-73.6 18.1-73.6 18.1l-56.7-77.8c-1.6-2.3-2.9-4.5 1.1-5s68.4-12.2 71.3-12.8c2.9-.7 5.4-1.5 9 3.4 3.6 4.9 52.6 67 54.5 69.4 1.8 2.3-1.4 3.7-5.6 4.7z"] }; +var faLastfm = { prefix: 'fab', iconName: 'lastfm', icon: [512, 512, [], "f202", "M225.8 367.1l-18.8-51s-30.5 34-76.2 34c-40.5 0-69.2-35.2-69.2-91.5 0-72.1 36.4-97.9 72.1-97.9 66.5 0 74.8 53.3 100.9 134.9 18.8 56.9 54 102.6 155.4 102.6 72.7 0 122-22.3 122-80.9 0-72.9-62.7-80.6-115-92.1-25.8-5.9-33.4-16.4-33.4-34 0-19.9 15.8-31.7 41.6-31.7 28.2 0 43.4 10.6 45.7 35.8l58.6-7c-4.7-52.8-41.1-74.5-100.9-74.5-52.8 0-104.4 19.9-104.4 83.9 0 39.9 19.4 65.1 68 76.8 44.9 10.6 79.8 13.8 79.8 45.7 0 21.7-21.1 30.5-61 30.5-59.2 0-83.9-31.1-97.9-73.9-32-96.8-43.6-163-161.3-163C45.7 113.8 0 168.3 0 261c0 89.1 45.7 137.2 127.9 137.2 66.2 0 97.9-31.1 97.9-31.1z"] }; +var faLastfmSquare = { prefix: 'fab', iconName: 'lastfm-square', icon: [448, 512, [], "f203", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-92.2 312.9c-63.4 0-85.4-28.6-97.1-64.1-16.3-51-21.5-84.3-63-84.3-22.4 0-45.1 16.1-45.1 61.2 0 35.2 18 57.2 43.3 57.2 28.6 0 47.6-21.3 47.6-21.3l11.7 31.9s-19.8 19.4-61.2 19.4c-51.3 0-79.9-30.1-79.9-85.8 0-57.9 28.6-92 82.5-92 73.5 0 80.8 41.4 100.8 101.9 8.8 26.8 24.2 46.2 61.2 46.2 24.9 0 38.1-5.5 38.1-19.1 0-19.9-21.8-22-49.9-28.6-30.4-7.3-42.5-23.1-42.5-48 0-40 32.3-52.4 65.2-52.4 37.4 0 60.1 13.6 63 46.6l-36.7 4.4c-1.5-15.8-11-22.4-28.6-22.4-16.1 0-26 7.3-26 19.8 0 11 4.8 17.6 20.9 21.3 32.7 7.1 71.8 12 71.8 57.5.1 36.7-30.7 50.6-76.1 50.6z"] }; +var faLeanpub = { prefix: 'fab', iconName: 'leanpub', icon: [576, 512, [], "f212", "M386.539 111.485l15.096 248.955-10.979-.275c-36.232-.824-71.64 8.783-102.657 27.997-31.016-19.214-66.424-27.997-102.657-27.997-45.564 0-82.07 10.705-123.516 27.723L93.117 129.6c28.546-11.803 61.484-18.115 92.226-18.115 41.173 0 73.836 13.175 102.657 42.544 27.723-28.271 59.013-41.721 98.539-42.544zM569.07 448c-25.526 0-47.485-5.215-70.542-15.645-34.31-15.645-69.993-24.978-107.871-24.978-38.977 0-74.934 12.901-102.657 40.623-27.723-27.723-63.68-40.623-102.657-40.623-37.878 0-73.561 9.333-107.871 24.978C55.239 442.236 32.731 448 8.303 448H6.93L49.475 98.859C88.726 76.626 136.486 64 181.775 64 218.83 64 256.984 71.685 288 93.095 319.016 71.685 357.17 64 394.225 64c45.289 0 93.049 12.626 132.3 34.859L569.07 448zm-43.368-44.741l-34.036-280.246c-30.742-13.999-67.248-21.41-101.009-21.41-38.428 0-74.385 12.077-102.657 38.702-28.272-26.625-64.228-38.702-102.657-38.702-33.761 0-70.267 7.411-101.009 21.41L50.298 403.259c47.211-19.487 82.894-33.486 135.045-33.486 37.604 0 70.817 9.606 102.657 29.644 31.84-20.038 65.052-29.644 102.657-29.644 52.151 0 87.834 13.999 135.045 33.486z"] }; +var faLess = { prefix: 'fab', iconName: 'less', icon: [640, 512, [], "f41d", "M612.7 219c0-20.5 3.2-32.6 3.2-54.6 0-34.2-12.6-45.2-40.5-45.2h-20.5v24.2h6.3c14.2 0 17.3 4.7 17.3 22.1 0 16.3-1.6 32.6-1.6 51.5 0 24.2 7.9 33.6 23.6 37.3v1.6c-15.8 3.7-23.6 13.1-23.6 37.3 0 18.9 1.6 34.2 1.6 51.5 0 17.9-3.7 22.6-17.3 22.6v.5h-6.3V393h20.5c27.8 0 40.5-11 40.5-45.2 0-22.6-3.2-34.2-3.2-54.6 0-11 6.8-22.6 27.3-23.6v-27.3c-20.5-.7-27.3-12.3-27.3-23.3zm-105.6 32c-15.8-6.3-30.5-10-30.5-20.5 0-7.9 6.3-12.6 17.9-12.6s22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-21 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51s-22.5-41-43-47.8zm-358.9 59.4c-3.7 0-8.4-3.2-8.4-13.1V119.1H65.2c-28.4 0-41 11-41 45.2 0 22.6 3.2 35.2 3.2 54.6 0 11-6.8 22.6-27.3 23.6v27.3c20.5.5 27.3 12.1 27.3 23.1 0 19.4-3.2 31-3.2 53.6 0 34.2 12.6 45.2 40.5 45.2h20.5v-24.2h-6.3c-13.1 0-17.3-5.3-17.3-22.6s1.6-32.1 1.6-51.5c0-24.2-7.9-33.6-23.6-37.3v-1.6c15.8-3.7 23.6-13.1 23.6-37.3 0-18.9-1.6-34.2-1.6-51.5s3.7-22.1 17.3-22.1H93v150.8c0 32.1 11 53.1 43.1 53.1 10 0 17.9-1.6 23.6-3.7l-5.3-34.2c-3.1.8-4.6.8-6.2.8zM379.9 251c-16.3-6.3-31-10-31-20.5 0-7.9 6.3-12.6 17.9-12.6 11.6 0 22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-20.5 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51 .1-28.9-22.5-41-43-47.8zm-155-68.8c-38.4 0-75.1 32.1-74.1 82.5 0 52 34.2 82.5 79.3 82.5 18.9 0 39.9-6.8 56.2-17.9l-15.8-27.8c-11.6 6.8-22.6 10-34.2 10-21 0-37.3-10-41.5-34.2H290c.5-3.7 1.6-11 1.6-19.4.6-42.6-22.6-75.7-66.7-75.7zm-30 66.2c3.2-21 15.8-31 30.5-31 18.9 0 26.3 13.1 26.3 31h-56.8z"] }; +var faLine = { prefix: 'fab', iconName: 'line', icon: [448, 512, [], "f3c0", "M272.1 204.2v71.1c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.1 0-2.1-.6-2.6-1.3l-32.6-44v42.2c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.8 0-3.2-1.4-3.2-3.2v-71.1c0-1.8 1.4-3.2 3.2-3.2H219c1 0 2.1.5 2.6 1.4l32.6 44v-42.2c0-1.8 1.4-3.2 3.2-3.2h11.4c1.8-.1 3.3 1.4 3.3 3.1zm-82-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 1.8 1.4 3.2 3.2 3.2h11.4c1.8 0 3.2-1.4 3.2-3.2v-71.1c0-1.7-1.4-3.2-3.2-3.2zm-27.5 59.6h-31.1v-56.4c0-1.8-1.4-3.2-3.2-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 .9.3 1.6.9 2.2.6.5 1.3.9 2.2.9h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.7-1.4-3.2-3.1-3.2zM332.1 201h-45.7c-1.7 0-3.2 1.4-3.2 3.2v71.1c0 1.7 1.4 3.2 3.2 3.2h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2V234c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2v-11.4c-.1-1.7-1.5-3.2-3.2-3.2zM448 113.7V399c-.1 44.8-36.8 81.1-81.7 81H81c-44.8-.1-81.1-36.9-81-81.7V113c.1-44.8 36.9-81.1 81.7-81H367c44.8.1 81.1 36.8 81 81.7zm-61.6 122.6c0-73-73.2-132.4-163.1-132.4-89.9 0-163.1 59.4-163.1 132.4 0 65.4 58 120.2 136.4 130.6 19.1 4.1 16.9 11.1 12.6 36.8-.7 4.1-3.3 16.1 14.1 8.8 17.4-7.3 93.9-55.3 128.2-94.7 23.6-26 34.9-52.3 34.9-81.5z"] }; +var faLinkedin = { prefix: 'fab', iconName: 'linkedin', icon: [448, 512, [], "f08c", "M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"] }; +var faLinkedinIn = { prefix: 'fab', iconName: 'linkedin-in', icon: [448, 512, [], "f0e1", "M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"] }; +var faLinode = { prefix: 'fab', iconName: 'linode', icon: [448, 512, [], "f2b8", "M437.4 226.3c-.3-.9-.9-1.4-1.4-2l-70-38.6c-.9-.6-2-.6-3.1 0l-58.9 36c-.9.6-1.4 1.7-1.4 2.6l-.9 31.4-24-16c-.9-.6-2.3-.6-3.1 0L240 260.9l-1.4-35.1c0-.9-.6-2-1.4-2.3l-36-24.3 33.7-17.4c1.1-.6 1.7-1.7 1.7-2.9l-5.7-132.3c0-.9-.9-2-1.7-2.6L138.6.3c-.9-.3-1.7-.3-2.3-.3L12.6 38.6c-1.4.6-2.3 2-2 3.7L38 175.4c.9 3.4 34 27.4 38.6 30.9l-26.9 12.9c-1.4.9-2 2.3-1.7 3.4l20.6 100.3c.6 2.9 23.7 23.1 27.1 26.3l-17.4 10.6c-.9.6-1.7 2-1.4 3.1 1.4 7.1 15.4 77.7 16.9 79.1l65.1 69.1c.6.6 1.4.6 2.3.9.6 0 1.1-.3 1.7-.6l83.7-66.9c.9-.6 1.1-1.4 1.1-2.3l-2-46 28 23.7c1.1.9 2.9.9 4 0l66.9-53.4c.9-.6 1.1-1.4 1.1-2.3l2.3-33.4 20.3 14c1.1.9 2.6.9 3.7 0l54.6-43.7c.6-.3 1.1-1.1 1.1-2 .9-6.5 10.3-70.8 9.7-72.8zm-204.8 4.8l4 92.6-90.6 61.2-14-96.6 100.6-57.2zm-7.7-180l5.4 126-106.6 55.4L104 97.7l120.9-46.6zM44 173.1L18 48l79.7 49.4 19.4 132.9L44 173.1zm30.6 147.8L55.7 230l70 58.3 13.7 93.4-64.8-60.8zm24.3 117.7l-13.7-67.1 61.7 60.9 9.7 67.4-57.7-61.2zm64.5 64.5l-10.6-70.9 85.7-61.4 3.1 70-78.2 62.3zm82-115.1c0-3.4.9-22.9-2-25.1l-24.3-20 22.3-14.9c2.3-1.7 1.1-5.7 1.1-8l29.4 22.6.6 68.3-27.1-22.9zm94.3-25.4l-60.9 48.6-.6-68.6 65.7-46.9-4.2 66.9zm27.7-25.7l-19.1-13.4 2-34c.3-.9-.3-2-1.1-2.6L308 259.7l.6-30 64.6 40.6-5.8 66.6zm54.6-39.8l-48.3 38.3 5.7-65.1 51.1-36.6-8.5 63.4z"] }; +var faLinux = { prefix: 'fab', iconName: 'linux', icon: [448, 512, [], "f17c", "M196.1 123.6c-.2-1.4 1.9-2.3 3.2-2.9 1.7-.7 3.9-1 5.5-.1.4.2.8.7.6 1.1-.4 1.2-2.4 1-3.5 1.6-1 .5-1.8 1.7-3 1.7-1 .1-2.7-.4-2.8-1.4zm24.7-.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm214.7 310.2c-.5 8.2-6.5 13.8-13.9 18.3-14.9 9-37.3 15.8-50.9 32.2l-2.6-2.2 2.6 2.2c-14.2 16.9-31.7 26.6-48.3 27.9-16.5 1.3-32-6.3-40.3-23v-.1c-1.1-2.1-1.9-4.4-2.5-6.7-21.5 1.2-40.2-5.3-55.1-4.1-22 1.2-35.8 6.5-48.3 6.6-4.8 10.6-14.3 17.6-25.9 20.2-16 3.7-36.1 0-55.9-10.4l1.6-3-1.6 3c-18.5-9.8-42-8.9-59.3-12.5-8.7-1.8-16.3-5-20.1-12.3-3.7-7.3-3-17.3 2.2-31.7 1.7-5.1.4-12.7-.8-20.8-.6-3.9-1.2-7.9-1.2-11.8 0-4.3.7-8.5 2.8-12.4 4.5-8.5 11.8-12.1 18.5-14.5 6.7-2.4 12.8-4 17-8.3 5.2-5.5 10.1-14.4 16.6-20.2-2.6-17.2.2-35.4 6.2-53.3 12.6-37.9 39.2-74.2 58.1-96.7 16.1-22.9 20.8-41.3 22.5-64.7C158 103.4 132.4-.2 234.8 0c80.9.1 76.3 85.4 75.8 131.3-.3 30.1 16.3 50.5 33.4 72 15.2 18 35.1 44.3 46.5 74.4 9.3 24.6 12.9 51.8 3.7 79.1 1.4.5 2.8 1.2 4.1 2 1.4.8 2.7 1.8 4 2.9 6.6 5.6 8.7 14.3 10.5 22.4 1.9 8.1 3.6 15.7 7.2 19.7 11.1 12.4 15.9 21.5 15.5 29.7zM220.8 109.1c3.6.9 8.9 2.4 13 4.4-2.1-12.2 4.5-23.5 11.8-23 8.9.3 13.9 15.5 9.1 27.3-.8 1.9-2.8 3.4-3.9 4.6 6.7 2.3 11 4.1 12.6 4.9 7.9-9.5 10.8-26.2 4.3-40.4-9.8-21.4-34.2-21.8-44 .4-3.2 7.2-3.9 14.9-2.9 21.8zm-46.2 18.8c7.8-5.7 6.9-4.7 5.9-5.5-8-6.9-6.6-27.4 1.8-28.1 6.3-.5 10.8 10.7 9.6 19.6 3.1-2.1 6.7-3.6 10.2-4.6 1.7-19.3-9-33.5-19.1-33.5-18.9 0-24 37.5-8.4 52.1zm-9.4 20.9c1.5 4.9 6.1 10.5 14.7 15.3 7.8 4.6 12 11.5 20 15 2.6 1.1 5.7 1.9 9.6 2.1 18.4 1.1 27.1-11.3 38.2-14.9 11.7-3.7 20.1-11 22.7-18.1 3.2-8.5-2.1-14.7-10.5-18.2-11.3-4.9-16.3-5.2-22.6-9.3-10.3-6.6-18.8-8.9-25.9-8.9-14.4 0-23.2 9.8-27.9 14.2-.5.5-7.9 5.9-14.1 10.5-4.2 3.3-5.6 7.4-4.2 12.3zm-33.5 252.8L112.1 366c-6.8-9.2-13.8-14.8-21.9-16-7.7-1.2-12.6 1.4-17.7 6.9-4.8 5.1-8.8 12.3-14.3 18-7.8 6.5-9.3 6.2-19.6 9.9-6.3 2.2-11.3 4.6-14.8 11.3-2.7 5-2.1 12.2-.9 20 1.2 7.9 3 16.3.6 23.9v.2c-5 13.7-5 21.7-2.6 26.4 7.9 15.4 46.6 6.1 76.5 21.9 31.4 16.4 72.6 17.1 75.3-18 2.1-20.5-31.5-49-41-68.9zm153.9 35.8c3.2-11 6.3-21.3 6.8-29 .8-15.2 1.6-28.7 4.4-39.9 3.1-12.6 9.3-23.1 21.4-27.3 2.3-21.1 18.7-21.1 38.3-12.5 18.9 8.5 26 16 22.8 26.1 1 0 2-.1 4.2 0 5.2-16.9-14.3-28-30.7-34.8 2.9-12 2.4-24.1-.4-35.7-6-25.3-22.6-47.8-35.2-59-2.3-.1-2.1 1.9 2.6 6.5 11.6 10.7 37.1 49.2 23.3 84.9-3.9-1-7.6-1.5-10.9-1.4-5.3-29.1-17.5-53.2-23.6-64.6-11.5-21.4-29.5-65.3-37.2-95.7-4.5 6.4-12.4 11.9-22.3 15-4.7 1.5-9.7 5.5-15.9 9-13.9 8-30 8.8-42.4-1.2-4.5-3.6-8-7.6-12.6-10.3-1.6-.9-5.1-3.3-6.2-4.1-2 37.8-27.3 85.3-39.3 112.7-8.3 19.7-13.2 40.8-13.8 61.5-21.8-29.1-5.9-66.3 2.6-82.4 9.5-17.6 11-22.5 8.7-20.8-8.6 14-22 36.3-27.2 59.2-2.7 11.9-3.2 24 .3 35.2 3.5 11.2 11.1 21.5 24.6 29.9 0 0 24.8 14.3 38.3 32.5 7.4 10 9.7 18.7 7.4 24.9-2.5 6.7-9.6 8.9-16.7 8.9 4.8 6 10.3 13 14.4 19.6 37.6 25.7 82.2 15.7 114.3-7.2zM415 408.5c-10-11.3-7.2-33.1-17.1-41.6-6.9-6-13.6-5.4-22.6-5.1-7.7 8.8-25.8 19.6-38.4 16.3-11.5-2.9-18-16.3-18.8-29.5-.3.2-.7.3-1 .5-7.1 3.9-11.1 10.8-13.7 21.1-2.5 10.2-3.4 23.5-4.2 38.7-.7 11.8-6.2 26.4-9.9 40.6-3.5 13.2-5.8 25.2-1.1 36.3 7.2 14.5 19.5 20.4 33.7 19.3 14.2-1.1 30.4-9.8 43.6-25.5 22-26.6 62.3-29.7 63.2-46.5.3-5.1-3.1-13-13.7-24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4 3.9-3.4 5.9-6.3 3.1-6.6-2.8-.3-2.6 2.6-6 5.1-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2-10.4 0-18.7-4.8-24.9-9.7-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z"] }; +var faLyft = { prefix: 'fab', iconName: 'lyft', icon: [512, 512, [], "f3c3", "M0 81.1h77.8v208.7c0 33.1 15 52.8 27.2 61-12.7 11.1-51.2 20.9-80.2-2.8C7.8 334 0 310.7 0 289V81.1zm485.9 173.5v-22h23.8v-76.8h-26.1c-10.1-46.3-51.2-80.7-100.3-80.7-56.6 0-102.7 46-102.7 102.7V357c16 2.3 35.4-.3 51.7-14 17.1-14 24.8-37.2 24.8-59v-6.7h38.8v-76.8h-38.8v-23.3c0-34.6 52.2-34.6 52.2 0v77.1c0 56.6 46 102.7 102.7 102.7v-76.5c-14.5 0-26.1-11.7-26.1-25.9zm-294.3-99v113c0 15.4-23.8 15.4-23.8 0v-113H91v132.7c0 23.8 8 54 45 63.9 37 9.8 58.2-10.6 58.2-10.6-2.1 13.4-14.5 23.3-34.9 25.3-15.5 1.6-35.2-3.6-45-7.8v70.3c25.1 7.5 51.5 9.8 77.6 4.7 47.1-9.1 76.8-48.4 76.8-100.8V155.1h-77.1v.5z"] }; +var faMagento = { prefix: 'fab', iconName: 'magento', icon: [448, 512, [], "f3c4", "M445.7 127.9V384l-63.4 36.5V164.7L223.8 73.1 65.2 164.7l.4 255.9L2.3 384V128.1L224.2 0l221.5 127.9zM255.6 420.5L224 438.9l-31.8-18.2v-256l-63.3 36.6.1 255.9 94.9 54.9 95.1-54.9v-256l-63.4-36.6v255.9z"] }; +var faMandalorian = { prefix: 'fab', iconName: 'mandalorian', icon: [390, 512, [], "f50f", "M203.28 511.89c-.98-3.26-1.69-15.83-1.39-24.58.55-15.89.98-24.72 1.4-28.76.64-6.2 2.87-20.72 3.28-21.38.6-.96.4-27.87-.24-33.13-.31-2.58-.63-11.9-.69-20.73-.13-16.47-.53-20.12-2.73-24.76-1.1-2.32-1.23-3.84-.99-11.43.16-4.81 0-10.53-.34-12.71-2.05-12.97-3.46-27.7-3.25-33.9.21-6.12.43-7.15 2.06-9.67 3.05-4.71 6.51-14.04 8.62-23.27 2.26-9.86 3.88-17.18 4.59-20.74.89-4.42 2.43-9.72 4.36-15.05 2.27-6.25 2.49-15.39.37-15.39-.3 0-1.38 1.22-2.41 2.71-1.03 1.49-4.76 4.8-8.29 7.36-8.37 6.08-11.7 9.39-12.66 12.58-.93 3.11-1.02 7.23-.16 7.76.34.21 1.29 2.4 2.11 4.88 1.62 4.88 1.87 10.12.72 15.36-.39 1.77-1.05 5.47-1.46 8.23-.41 2.76-.98 6.46-1.25 8.22-.28 1.76-.97 3.68-1.55 4.26-.96.96-1.14.91-2.05-.53-.55-.87-1.2-3.01-1.44-4.75-.25-1.74-1.63-7.11-3.08-11.93-3.28-10.9-3.52-16.15-.96-20.96.92-1.73 1.67-3.81 1.67-4.61 0-2.39-2.2-5.32-7.41-9.89-7.05-6.18-8.63-7.92-10.23-11.3-1.71-3.6-3.06-4.06-4.54-1.54-1.78 3.01-2.6 9.11-2.97 22.02l-.35 12.13 1.95 2.25c3.21 3.7 12.07 16.45 13.78 19.83 3.41 6.74 4.34 11.69 4.41 23.56.07 11.84.95 22.75 2 24.71.36.66.51 1.35.34 1.52-.17.17.41 2.09 1.29 4.27.88 2.18 1.81 6.22 2.06 8.98.25 2.76 1.02 7.43 1.71 10.37 2.23 9.56 2.77 14.08 2.39 20.14-.2 3.27-.53 11.07-.73 17.32-1.31 41.76-1.85 57.98-2.04 61.21-.12 2.02-.39 11.51-.6 21.07-.36 16.3-1.3 27.37-2.42 28.65-.64.73-8.07-4.91-12.52-9.49-3.75-3.87-4.02-4.79-2.83-9.95.7-3.01 2.26-18.29 3.33-32.62.36-4.78.81-10.5 1.01-12.71.83-9.37 1.66-20.35 2.61-34.78.56-8.46 1.33-16.44 1.72-17.73.38-1.29.89-9.89 1.13-19.11l.43-16.77-2.26-4.3c-1.72-3.28-4.87-6.94-13.22-15.34-6.03-6.07-11.84-12.3-12.91-13.85l-1.95-2.81.75-10.9c1.09-15.71 1.1-48.57.02-59.06l-.89-8.7-3.28-4.52c-5.86-8.08-5.8-7.75-6.22-33.27-.1-6.07-.38-11.5-.63-12.06-.83-1.87-3.05-2.66-8.54-3.05-8.86-.62-10.96-1.9-23.85-14.55-6.15-6.04-12.34-11.97-13.75-13.19-2.81-2.42-2.79-1.99-.56-9.63l1.35-4.65-1.69-3.04c-.93-1.67-2.09-3.51-2.59-4.07-1.33-1.51-5.5-10.89-5.99-13.49-.31-1.66-.09-2.67.87-3.9 2.23-2.86 3.4-5.68 4.45-10.73 2.33-11.19 7.74-26.09 10.6-29.22 3.18-3.47 7.7-1.05 9.41 5.03 1.34 4.79 1.37 9.79.1 18.55-.53 3.68-.98 8.68-.99 11.11-.02 4.01.19 4.69 2.25 7.39 3.33 4.37 7.73 7.41 15.2 10.52 1.7.71 3.82 1.99 4.72 2.85 11.17 10.72 18.62 16.18 22.95 16.85 5.18.8 7.98 4.54 10.04 13.39 1.31 5.65 4 11.14 5.46 11.14.59 0 2.09-.63 3.33-1.39 1.98-1.22 2.25-1.73 2.25-4.18-.01-3.71-1.17-14.08-2-17.84-.37-1.66-.78-4.06-.93-5.35-.14-1.29-.61-3.85-1.03-5.69-2.55-11.16-3.65-15.46-4.1-16.05-1.55-2.02-4.08-10.2-4.93-15.92-1.64-11.11-3.96-14.23-12.91-17.39-4.64-1.64-8.89-4.12-13.32-7.78-1.15-.95-4.01-3.22-6.35-5.06-2.35-1.83-4.41-3.53-4.6-3.76-.18-.23-1.39-1.14-2.69-2.02-6.24-4.22-8.84-6.98-11.26-11.96l-2.44-5.02-.22-12.98-.22-12.98 6.91-6.55c3.95-3.75 8.48-7.35 10.59-8.43 3.31-1.69 4.45-1.89 11.37-2.05 8.53-.19 10.12.02 11.66 1.56 1.53 1.53 1.36 6.4-.29 8.5-.74.94-1.34 1.98-1.34 2.32 0 .58-2.61 4.91-5.42 8.99-.68.99-2.13 5.35-2.37 6.82 20.44 13.39 21.55 3.77 14.07 28.98l11.4 2.54c3.11-8.66 6.47-17.26 8.61-26.22.29-7.63-11.98-4.19-15.4-8.68-2.33-5.93 3.13-14.18 6.06-19.2 1.6-2.34 6.62-4.7 8.82-4.15.88.22 4.16-.35 7.37-1.28 3.18-.92 6.58-1.68 7.55-1.68.97 0 3.66-.58 5.98-1.29 3.65-1.11 4.5-1.17 6.35-.4 1.17.48 3.79 1.09 5.82 1.36 2.02.26 4.72 1.12 6 1.91 1.28.79 3.53 1.77 5.02 2.17 2.51.68 3 .57 7.05-1.67l4.35-2.4 10.7-.41c10.44-.4 10.81-.47 15.26-2.68l4.58-2.3 2.46 1.43c1.76 1.02 3.14 2.73 4.85 5.98 2.36 4.51 2.38 4.58 1.37 7.37-.88 2.44-.89 3.3-.1 6.39.5 1.96 1.45 4.62 2.1 5.91.65 1.29 1.24 3.09 1.31 4.01.31 4.33-.03 5.3-2.41 6.92-2.17 1.47-6.98 7.91-6.98 9.34 0 .32-.48 1.69-1.07 3.03-5.04 11.51-6.76 13.56-14.26 16.98-9.2 4.2-12.3 5.19-16.21 5.19-3.1 0-4 .25-4.54 1.26-.37.69-2.21 2.37-4.09 3.71-2.04 1.47-3.8 3.38-4.38 4.78-.54 1.28-1.66 2.59-2.49 2.91-.83.32-1.94 1.08-2.45 1.71-.52.62-3.66 3.04-7 5.38-3.33 2.34-6.87 5.02-7.87 5.96-1 .94-2.07 1.71-2.39 1.71s-1.28.74-2.13 1.65c-1.31 1.39-1.49 2.11-1.14 4.6.22 1.63.86 4.27 1.42 5.88 1.32 3.8 1.31 7.86-.05 10.57-1.43 2.86-.89 6.65 1.35 9.59 2.01 2.63 2.16 4.56.71 8.84-.61 1.8-1.05 5.45-1.06 8.91-.02 4.88.22 6.28 1.46 8.38 1.2 2.04 1.82 2.48 3.24 2.32 1.98-.23 2.3-1.05 4.71-12.12 2.18-10.03 3.71-11.92 13.76-17.08 2.94-1.51 7.46-3.96 10.03-5.44 2.58-1.48 6.79-3.69 9.37-4.91 6.67-3.16 11.05-6.52 15.22-11.67 7.11-8.79 9.98-16.22 12.85-33.3.55-3.28 1.43-5.65 2.86-7.73 1.29-1.87 2.37-4.62 2.89-7.31 1.02-5.3 2.85-9.08 5.58-11.51 4.7-4.18 6-1.09 4.59 10.87-.46 3.86-1.1 10.33-1.44 14.38l-.61 7.36 4.45 4.09 4.45 4.09.11 8.42c.06 4.63.47 9.53.92 10.89l.82 2.47-6.43 6.28c-8.54 8.33-12.88 13.93-16.76 21.61-1.77 3.49-3.74 7.11-4.38 8.03-2.18 3.11-6.46 13.01-8.76 20.26l-2.29 7.22-6.97 6.49c-3.83 3.57-7.96 7.25-9.17 8.17-3.05 2.32-4.26 5.15-4.26 9.99 0 2.98.43 4.96 1.59 7.26.87 1.74 1.81 3.91 2.09 4.83.28.92.98 2.22 1.57 2.89 1.4 1.59 1.92 16.12.83 23.22-.68 4.48-3.63 12.02-4.7 12.02-1.79 0-4.06 9.27-5.07 20.74-.18 2.02-.62 5.94-.98 8.7-.36 2.76-.96 9.98-1.35 16.05-.77 12.22-.19 18.77 2.05 23.15 3.41 6.69.52 12.69-11.03 22.84l-3.97 3.49.07 5.19c.04 2.86.55 6.85 1.14 8.87 4.61 15.98 4.73 16.92 4.38 37.13-.46 26.4-.26 40.27.63 44.15.42 1.84.91 5 1.08 7.02.17 2.02.66 5.33 1.08 7.36.47 2.26.78 11.02.79 22.74l.02 19.06-1.81 2.63c-2.71 3.91-15.11 13.54-15.49 12.29zm29.53-45.11c-.18-.3-.33-6.87-.33-14.59 0-14.06-.89-27.54-2.26-34.45-.4-2.02-.81-9.7-.9-17.06-.15-11.93-1.4-24.37-2.64-26.38-.66-1.07-3.02-17.66-3.03-21.3-.01-4.23 1.02-6 5.28-9.13 4.14-3.04 4.86-3.14 5.48-.72.28 1.1 1.45 5.62 2.6 10.03 3.93 15.12 4.14 16.27 4.05 21.74-.1 5.78-.13 6.13-1.74 17.73-.98 7.07-1.17 12.39-1.04 28.43.17 19.4-.64 35.73-2.04 41.27-.71 2.78-2.8 5.48-3.43 4.43zm-70.99-37.58c-.24-.38-1.01-5.24-1.73-10.79-.72-5.56-1.49-10.41-1.73-10.79-.23-.38-.68-3.3-.99-6.49-.31-3.19-.91-7.46-1.33-9.48-.99-4.79-3.35-19.35-3.42-21.07-.03-.74-.34-4.05-.7-7.36-.67-6.21-.84-27.67-.22-28.29.96-.96 6.63 2.76 11.33 7.43l5.28 5.25-.45 6.47c-.25 3.56-.6 10.23-.78 14.83-.18 4.6-.49 9.87-.67 11.71-.18 1.84-.61 9.36-.94 16.72-.79 17.41-1.94 31.29-2.65 32-.32.3-.76.24-1-.14zM74.63 162.61c21.07 12.79 17.84 14.15 28.49 17.66 13.01 4.29 18.87 7.13 23.15 16.87-43.66 36.14-69.01 57.9-76.71 70.82-31.02 52.01-5.99 101.59 62.75 87.21-14.18 29.23-77.97 28.63-98.68-4.9-24.68-39.95-22.09-118.3 61-187.66zm210.79 179.02c56.66 6.88 82.32-37.74 46.54-89.23 0 0-26.87-29.34-64.28-67.96 2.98-15.45 9.49-32.12 30.57-53.82 89.2 63.51 92 141.61 92.46 149.36 4.27 70.58-78.66 91.12-105.29 61.65z"] }; +var faMastodon = { prefix: 'fab', iconName: 'mastodon', icon: [417, 512, [], "f4f6", "M417.8 179.1c0-97.2-63.7-125.7-63.7-125.7-62.5-28.7-228.5-28.4-290.4 0 0 0-63.7 28.5-63.7 125.7 0 115.7-6.6 259.4 105.6 289.1 40.5 10.7 75.3 13 103.3 11.4 50.8-2.8 79.3-18.1 79.3-18.1l-1.7-36.9s-36.3 11.4-77.1 10.1c-40.4-1.4-83-4.4-89.6-54-.6-4.4-.9-9-.9-13.9 85.6 20.9 158.6 9.1 178.7 6.7 56.1-6.7 105-41.3 111.2-72.9 9.8-49.8 9-121.5 9-121.5zm-75.1 125.2h-46.6V190.1c0-49.7-64-51.6-64 6.9v62.5h-46.3V197c0-58.5-64-56.6-64-6.9v114.2H75.1c0-122.1-5.2-147.9 18.4-175 25.9-28.9 79.8-30.8 103.8 6.1l11.6 19.5 11.6-19.5c24.1-37.1 78.1-34.8 103.8-6.1 23.7 27.3 18.4 53 18.4 175z"] }; +var faMaxcdn = { prefix: 'fab', iconName: 'maxcdn', icon: [512, 512, [], "f136", "M461.1 442.7h-97.4L415.6 200c2.3-10.2.9-19.5-4.4-25.7-5-6.1-13.7-9.6-24.2-9.6h-49.3l-59.5 278h-97.4l59.5-278h-83.4l-59.5 278H0l59.5-278-44.6-95.4H387c39.4 0 75.3 16.3 98.3 44.9 23.3 28.6 31.8 67.4 23.6 105.9l-47.8 222.6z"] }; +var faMedapps = { prefix: 'fab', iconName: 'medapps', icon: [320, 512, [], "f3c6", "M118.3 238.4c3.5-12.5 6.9-33.6 13.2-33.6 8.3 1.8 9.6 23.4 18.6 36.6 4.6-23.5 5.3-85.1 14.1-86.7 9-.7 19.7 66.5 22 77.5 9.9 4.1 48.9 6.6 48.9 6.6 1.9 7.3-24 7.6-40 7.8-4.6 14.8-5.4 27.7-11.4 28-4.7.2-8.2-28.8-17.5-49.6l-9.4 65.5c-4.4 13-15.5-22.5-21.9-39.3-3.3-.1-62.4-1.6-47.6-7.8l31-5zM228 448c21.2 0 21.2-32 0-32H92c-21.2 0-21.2 32 0 32h136zm-24 64c21.2 0 21.2-32 0-32h-88c-21.2 0-21.2 32 0 32h88zm34.2-141.5c3.2-18.9 5.2-36.4 11.9-48.8 7.9-14.7 16.1-28.1 24-41 24.6-40.4 45.9-75.2 45.9-125.5C320 69.6 248.2 0 160 0S0 69.6 0 155.2c0 50.2 21.3 85.1 45.9 125.5 7.9 12.9 16 26.3 24 41 6.7 12.5 8.7 29.8 11.9 48.9 3.5 21 36.1 15.7 32.6-5.1-3.6-21.7-5.6-40.7-15.3-58.6C66.5 246.5 33 211.3 33 155.2 33 87.3 90 32 160 32s127 55.3 127 123.2c0 56.1-33.5 91.3-66.1 151.6-9.7 18-11.7 37.4-15.3 58.6-3.4 20.6 29 26.4 32.6 5.1z"] }; +var faMedium = { prefix: 'fab', iconName: 'medium', icon: [448, 512, [], "f23a", "M0 32v448h448V32H0zm372.2 106.1l-24 23c-2.1 1.6-3.1 4.2-2.7 6.7v169.3c-.4 2.6.6 5.2 2.7 6.7l23.5 23v5.1h-118V367l24.3-23.6c2.4-2.4 2.4-3.1 2.4-6.7V199.8l-67.6 171.6h-9.1L125 199.8v115c-.7 4.8 1 9.7 4.4 13.2l31.6 38.3v5.1H71.2v-5.1l31.6-38.3c3.4-3.5 4.9-8.4 4.1-13.2v-133c.4-3.7-1-7.3-3.8-9.8L75 138.1V133h87.3l67.4 148L289 133.1h83.2v5z"] }; +var faMediumM = { prefix: 'fab', iconName: 'medium-m', icon: [512, 512, [], "f3c7", "M71.5 142.3c.6-5.9-1.7-11.8-6.1-15.8L20.3 72.1V64h140.2l108.4 237.7L364.2 64h133.7v8.1l-38.6 37c-3.3 2.5-5 6.7-4.3 10.8v272c-.7 4.1 1 8.3 4.3 10.8l37.7 37v8.1H307.3v-8.1l39.1-37.9c3.8-3.8 3.8-5 3.8-10.8V171.2L241.5 447.1h-14.7L100.4 171.2v184.9c-1.1 7.8 1.5 15.6 7 21.2l50.8 61.6v8.1h-144v-8L65 377.3c5.4-5.6 7.9-13.5 6.5-21.2V142.3z"] }; +var faMedrt = { prefix: 'fab', iconName: 'medrt', icon: [544, 512, [], "f3c8", "M113.7 256c0 121.8 83.9 222.8 193.5 241.1-18.7 4.5-38.2 6.9-58.2 6.9C111.4 504 0 393 0 256S111.4 8 248.9 8c20.1 0 39.6 2.4 58.2 6.9C197.5 33.2 113.7 134.2 113.7 256m297.4 100.3c-77.7 55.4-179.6 47.5-240.4-14.6 5.5 14.1 12.7 27.7 21.7 40.5 61.6 88.2 182.4 109.3 269.7 47 87.3-62.3 108.1-184.3 46.5-272.6-9-12.9-19.3-24.3-30.5-34.2 37.4 78.8 10.7 178.5-67 233.9m-218.8-244c-1.4 1-2.7 2.1-4 3.1 64.3-17.8 135.9 4 178.9 60.5 35.7 47 42.9 106.6 24.4 158 56.7-56.2 67.6-142.1 22.3-201.8-50-65.5-149.1-74.4-221.6-19.8M296 224c-4.4 0-8-3.6-8-8v-40c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v40c0 4.4-3.6 8-8 8h-40c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h40c4.4 0 8 3.6 8 8v40c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-40c0-4.4 3.6-8 8-8h40c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-40z"] }; +var faMeetup = { prefix: 'fab', iconName: 'meetup', icon: [512, 512, [], "f2e0", "M99 414.3c1.1 5.7-2.3 11.1-8 12.3-5.4 1.1-10.9-2.3-12-8-1.1-5.4 2.3-11.1 7.7-12.3 5.4-1.2 11.1 2.3 12.3 8zm143.1 71.4c-6.3 4.6-8 13.4-3.7 20 4.6 6.6 13.4 8.3 20 3.7 6.3-4.6 8-13.4 3.4-20-4.2-6.5-13.1-8.3-19.7-3.7zm-86-462.3c6.3-1.4 10.3-7.7 8.9-14-1.1-6.6-7.4-10.6-13.7-9.1-6.3 1.4-10.3 7.7-9.1 14 1.4 6.6 7.6 10.6 13.9 9.1zM34.4 226.3c-10-6.9-23.7-4.3-30.6 6-6.9 10-4.3 24 5.7 30.9 10 7.1 23.7 4.6 30.6-5.7 6.9-10.4 4.3-24.1-5.7-31.2zm272-170.9c10.6-6.3 13.7-20 7.7-30.3-6.3-10.6-19.7-14-30-7.7s-13.7 20-7.4 30.6c6 10.3 19.4 13.7 29.7 7.4zm-191.1 58c7.7-5.4 9.4-16 4.3-23.7s-15.7-9.4-23.1-4.3c-7.7 5.4-9.4 16-4.3 23.7 5.1 7.8 15.6 9.5 23.1 4.3zm372.3 156c-7.4 1.7-12.3 9.1-10.6 16.9 1.4 7.4 8.9 12.3 16.3 10.6 7.4-1.4 12.3-8.9 10.6-16.6-1.5-7.4-8.9-12.3-16.3-10.9zm39.7-56.8c-1.1-5.7-6.6-9.1-12-8-5.7 1.1-9.1 6.9-8 12.6 1.1 5.4 6.6 9.1 12.3 8 5.4-1.5 9.1-6.9 7.7-12.6zM447 138.9c-8.6 6-10.6 17.7-4.9 26.3 5.7 8.6 17.4 10.6 26 4.9 8.3-6 10.3-17.7 4.6-26.3-5.7-8.7-17.4-10.9-25.7-4.9zm-6.3 139.4c26.3 43.1 15.1 100-26.3 129.1-17.4 12.3-37.1 17.7-56.9 17.1-12 47.1-69.4 64.6-105.1 32.6-1.1.9-2.6 1.7-3.7 2.9-39.1 27.1-92.3 17.4-119.4-22.3-9.7-14.3-14.6-30.6-15.1-46.9-65.4-10.9-90-94-41.1-139.7-28.3-46.9.6-107.4 53.4-114.9C151.6 70 234.1 38.6 290.1 82c67.4-22.3 136.3 29.4 130.9 101.1 41.1 12.6 52.8 66.9 19.7 95.2zm-70 74.3c-3.1-20.6-40.9-4.6-43.1-27.1-3.1-32 43.7-101.1 40-128-3.4-24-19.4-29.1-33.4-29.4-13.4-.3-16.9 2-21.4 4.6-2.9 1.7-6.6 4.9-11.7-.3-6.3-6-11.1-11.7-19.4-12.9-12.3-2-17.7 2-26.6 9.7-3.4 2.9-12 12.9-20 9.1-3.4-1.7-15.4-7.7-24-11.4-16.3-7.1-40 4.6-48.6 20-12.9 22.9-38 113.1-41.7 125.1-8.6 26.6 10.9 48.6 36.9 47.1 11.1-.6 18.3-4.6 25.4-17.4 4-7.4 41.7-107.7 44.6-112.6 2-3.4 8.9-8 14.6-5.1 5.7 3.1 6.9 9.4 6 15.1-1.1 9.7-28 70.9-28.9 77.7-3.4 22.9 26.9 26.6 38.6 4 3.7-7.1 45.7-92.6 49.4-98.3 4.3-6.3 7.4-8.3 11.7-8 3.1 0 8.3.9 7.1 10.9-1.4 9.4-35.1 72.3-38.9 87.7-4.6 20.6 6.6 41.4 24.9 50.6 11.4 5.7 62.5 15.7 58.5-11.1zm5.7 92.3c-10.3 7.4-12.9 22-5.7 32.6 7.1 10.6 21.4 13.1 32 6 10.6-7.4 13.1-22 6-32.6-7.4-10.6-21.7-13.5-32.3-6z"] }; +var faMicrosoft = { prefix: 'fab', iconName: 'microsoft', icon: [448, 512, [], "f3ca", "M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z"] }; +var faMix = { prefix: 'fab', iconName: 'mix', icon: [448, 512, [], "f3cb", "M0 64v348.9c0 56.2 88 58.1 88 0V174.3c7.9-52.9 88-50.4 88 6.5v175.3c0 57.9 96 58 96 0V240c5.3-54.7 88-52.5 88 4.3v23.8c0 59.9 88 56.6 88 0V64H0z"] }; +var faMixcloud = { prefix: 'fab', iconName: 'mixcloud', icon: [640, 512, [], "f289", "M424.43 219.729C416.124 134.727 344.135 68 256.919 68c-72.266 0-136.224 46.516-159.205 114.074-54.545 8.029-96.63 54.822-96.63 111.582 0 62.298 50.668 112.966 113.243 112.966h289.614c52.329 0 94.969-42.362 94.969-94.693 0-45.131-32.118-83.063-74.48-92.2zm-20.489 144.53H114.327c-39.04 0-70.881-31.564-70.881-70.604s31.841-70.604 70.881-70.604c18.827 0 36.548 7.475 49.838 20.766 19.963 19.963 50.133-10.227 30.18-30.18-14.675-14.398-32.672-24.365-52.053-29.349 19.935-44.3 64.79-73.926 114.628-73.926 69.496 0 125.979 56.483 125.979 125.702 0 13.568-2.215 26.857-6.369 39.594-8.943 27.517 32.133 38.939 40.147 13.29 2.769-8.306 4.984-16.889 6.369-25.472 19.381 7.476 33.502 26.303 33.502 48.453 0 28.795-23.535 52.33-52.607 52.33zm235.069-52.33c0 44.024-12.737 86.386-37.102 122.657-4.153 6.092-10.798 9.414-17.72 9.414-16.317 0-27.127-18.826-17.443-32.949 19.381-29.349 29.903-63.682 29.903-99.122s-10.521-69.773-29.903-98.845c-15.655-22.831 19.361-47.24 35.163-23.534 24.366 35.993 37.102 78.356 37.102 122.379zm-70.88 0c0 31.565-9.137 62.021-26.857 88.325-4.153 6.091-10.798 9.136-17.72 9.136-17.201 0-27.022-18.979-17.443-32.948 13.013-19.104 19.658-41.255 19.658-64.513 0-22.981-6.645-45.408-19.658-64.512-15.761-22.986 19.008-47.095 35.163-23.535 17.719 26.026 26.857 56.483 26.857 88.047z"] }; +var faMizuni = { prefix: 'fab', iconName: 'mizuni', icon: [496, 512, [], "f3cc", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm-80 351.9c-31.4 10.6-58.8 27.3-80 48.2V136c0-22.1 17.9-40 40-40s40 17.9 40 40v223.9zm120-9.9c-12.9-2-26.2-3.1-39.8-3.1-13.8 0-27.2 1.1-40.2 3.1V136c0-22.1 17.9-40 40-40s40 17.9 40 40v214zm120 57.7c-21.2-20.8-48.6-37.4-80-48V136c0-22.1 17.9-40 40-40s40 17.9 40 40v271.7z"] }; +var faModx = { prefix: 'fab', iconName: 'modx', icon: [448, 512, [], "f285", "M356 241.8l36.7 23.7V480l-133-83.8L356 241.8zM440 75H226.3l-23 37.8 153.5 96.5L440 75zm-89 142.8L55.2 32v214.5l46 29L351 217.8zM97 294.2L8 437h213.7l125-200.5L97 294.2z"] }; +var faMonero = { prefix: 'fab', iconName: 'monero', icon: [496, 512, [], "f3d0", "M352 384h108.4C417 455.9 338.1 504 248 504S79 455.9 35.6 384H144V256.2L248 361l104-105v128zM88 336V128l159.4 159.4L408 128v208h74.8c8.5-25.1 13.2-52 13.2-80C496 119 385 8 248 8S0 119 0 256c0 28 4.6 54.9 13.2 80H88z"] }; +var faNapster = { prefix: 'fab', iconName: 'napster', icon: [496, 512, [], "f3d2", "M298.3 373.6c-14.2 13.6-31.3 24.1-50.4 30.5-19-6.4-36.2-16.9-50.3-30.5h100.7zm44-199.6c20-16.9 43.6-29.2 69.6-36.2V299c0 219.4-328 217.6-328 .3V137.7c25.9 6.9 49.6 19.6 69.5 36.4 56.8-40 132.5-39.9 188.9-.1zm-208.8-58.5c64.4-60 164.3-60.1 228.9-.2-7.1 3.5-13.9 7.3-20.6 11.5-58.7-30.5-129.2-30.4-187.9.1-6.3-4-13.9-8.2-20.4-11.4zM43.8 93.2v69.3c-58.4 36.5-58.4 121.1.1 158.3 26.4 245.1 381.7 240.3 407.6 1.5l.3-1.7c58.7-36.3 58.9-121.7.2-158.2V93.2c-17.3.5-34 3-50.1 7.4-82-91.5-225.5-91.5-307.5.1-16.3-4.4-33.1-7-50.6-7.5zM259.2 352s36-.3 61.3-1.5c10.2-.5 21.1-4 25.5-6.5 26.3-15.1 25.4-39.2 26.2-47.4-79.5-.6-99.9-3.9-113 55.4zm-135.5-55.3c.8 8.2-.1 32.3 26.2 47.4 4.4 2.5 15.2 6 25.5 6.5 25.3 1.1 61.3 1.5 61.3 1.5-13.2-59.4-33.7-56.1-113-55.4zm169.1 123.4c-3.2-5.3-6.9-7.3-6.9-7.3-24.8 7.3-52.2 6.9-75.9 0 0 0-2.9 1.5-6.4 6.6-2.8 4.1-3.7 9.6-3.7 9.6 29.1 17.6 67.1 17.6 96.2 0-.1-.1-.3-4-3.3-8.9z"] }; +var faNintendoSwitch = { prefix: 'fab', iconName: 'nintendo-switch', icon: [448, 512, [], "f418", "M95.9 33.5c-44.6 8-80.5 41-91.8 84.4C0 133.6-.3 142.8.2 264.4.4 376 .5 378.6 2.4 387.3c10.3 46.5 43.3 79.6 90.3 90.5 6.1 1.4 13.9 1.7 64.1 1.9 51.9.4 57.3.3 58.7-1.1 1.4-1.4 1.5-19.3 1.5-222.2 0-150.5-.3-221.3-.9-222.6-.9-1.7-2.5-1.8-56.9-1.7-44.2.1-57.5.4-63.3 1.4zm83.9 222.6V444l-37.8-.5c-34.8-.4-38.5-.6-45.5-2.3-29.9-7.7-52-30.7-58.3-60.7-2-9.4-2-240.1-.1-249.3 5.6-26.1 23.7-47.7 48-57.4 12.2-4.9 17.9-5.5 57.6-5.6l35.9-.1v188zm-75.9-131.2c-5.8 1.1-14.7 5.6-19.5 9.7-9.7 8.4-14.6 20.4-13.8 34.5.4 7.3.8 9.3 3.8 15.2 4.4 9 10.9 15.6 19.9 20 6.2 3.1 7.8 3.4 15.9 3.7 7.3.3 9.9 0 14.8-1.7 20.1-6.8 32.3-26.3 28.8-46.4-3.9-23.7-26.6-39.7-49.9-35zm158.2-92.3c-.4.3-.6 100.8-.6 223.5 0 202.3.1 222.8 1.5 223.4 2.5.9 74.5.6 83.4-.4 37.7-4.3 71-27.2 89-61.2 2.3-4.4 5.4-11.7 7-16.2 5.8-17.4 5.7-12.8 5.7-146.1 0-106.4-.2-122.3-1.5-129-9.2-48.3-46.1-84.8-94.5-93.1-6.5-1.1-16.5-1.4-48.8-1.4-22.4-.1-40.9.2-41.2.5zm99.1 202.1c14.5 3.8 26.3 14.8 31.2 28.9 3.1 8.7 3 21.5-.1 29.5-5.7 14.7-16.8 25-31.1 28.8-23.2 6-47.9-8-54.6-31-2-7-1.9-18.9.4-26.2 6.9-22.7 31-36.1 54.2-30z"] }; +var faNode = { prefix: 'fab', iconName: 'node', icon: [640, 512, [], "f419", "M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4.1l14.8 8.8c.5.3 1.3.3 1.8 0L375 408c.5-.3.9-.9.9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6.3-.9 1-.9 1.6v66.7c0 .6.4 1.2.9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9.7-1.7 1.7-1.7h7.3c.9 0 1.7.7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7zm46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6.2.8.8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5.3-.4.5-.8.4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7.7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8zm54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1zm-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3 0 5.2 4.2 9.4 9.3 9.4 5.2-.1 9.4-4.3 9.4-9.4zm-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7.1 1.8 1.2 2.1 2.8.1 1 .3 2.7.6 3.3zm-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8zM137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3.4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3.7 2.5 1.8 3.2 1.1.7 2.5.7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1 1.3 0 2.6.3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1.7 2.6.7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2l.2-95zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4zm-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6.3-.9.9-.9 1.6v24.3c0 .7.4 1.3.9 1.6l21 12.1c.6.3 1.3.3 1.8 0l21-12.1c.6-.3.9-.9.9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3.7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1.7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2l36.7-21.3zM559 219c-.4.3-.7.7-.7 1.2v13.6c0 .5.3 1 .7 1.2l11.8 6.8c.4.3 1 .3 1.4 0L584 235c.4-.3.7-.7.7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0L559 219zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7.1-.5.2-1.1.2-1.7zm-74.3-124.9l-.8.5h1.1l-.3-.5zm76.2 130.2l-.4-.7v.9l.4-.2z"] }; +var faNodeJs = { prefix: 'fab', iconName: 'node-js', icon: [448, 512, [], "f3d3", "M224 508c-6.7 0-13.5-1.8-19.4-5.2l-61.7-36.5c-9.2-5.2-4.7-7-1.7-8 12.3-4.3 14.8-5.2 27.9-12.7 1.4-.8 3.2-.5 4.6.4l47.4 28.1c1.7 1 4.1 1 5.7 0l184.7-106.6c1.7-1 2.8-3 2.8-5V149.3c0-2.1-1.1-4-2.9-5.1L226.8 37.7c-1.7-1-4-1-5.7 0L36.6 144.3c-1.8 1-2.9 3-2.9 5.1v213.1c0 2 1.1 4 2.9 4.9l50.6 29.2c27.5 13.7 44.3-2.4 44.3-18.7V167.5c0-3 2.4-5.3 5.4-5.3h23.4c2.9 0 5.4 2.3 5.4 5.3V378c0 36.6-20 57.6-54.7 57.6-10.7 0-19.1 0-42.5-11.6l-48.4-27.9C8.1 389.2.7 376.3.7 362.4V149.3c0-13.8 7.4-26.8 19.4-33.7L204.6 9c11.7-6.6 27.2-6.6 38.8 0l184.7 106.7c12 6.9 19.4 19.8 19.4 33.7v213.1c0 13.8-7.4 26.7-19.4 33.7L243.4 502.8c-5.9 3.4-12.6 5.2-19.4 5.2zm149.1-210.1c0-39.9-27-50.5-83.7-58-57.4-7.6-63.2-11.5-63.2-24.9 0-11.1 4.9-25.9 47.4-25.9 37.9 0 51.9 8.2 57.7 33.8.5 2.4 2.7 4.2 5.2 4.2h24c1.5 0 2.9-.6 3.9-1.7s1.5-2.6 1.4-4.1c-3.7-44.1-33-64.6-92.2-64.6-52.7 0-84.1 22.2-84.1 59.5 0 40.4 31.3 51.6 81.8 56.6 60.5 5.9 65.2 14.8 65.2 26.7 0 20.6-16.6 29.4-55.5 29.4-48.9 0-59.6-12.3-63.2-36.6-.4-2.6-2.6-4.5-5.3-4.5h-23.9c-3 0-5.3 2.4-5.3 5.3 0 31.1 16.9 68.2 97.8 68.2 58.4-.1 92-23.2 92-63.4z"] }; +var faNpm = { prefix: 'fab', iconName: 'npm', icon: [576, 512, [], "f3d4", "M288 288h-32v-64h32v64zm288-128v192H288v32H160v-32H0V160h576zm-416 32H32v128h64v-96h32v96h32V192zm160 0H192v160h64v-32h64V192zm224 0H352v128h64v-96h32v96h32v-96h32v96h32V192z"] }; +var faNs8 = { prefix: 'fab', iconName: 'ns8', icon: [640, 512, [], "f3d5", "M187.1 159.9l-34.2 113.7-54.5-113.7H49L0 320h44.9L76 213.5 126.6 320h56.9L232 159.9h-44.9zm452.5-.9c-2.9-18-23.9-28.1-42.1-31.3-44.6-7.8-101.9 16.3-88.5 58.8v.1c-43.8 8.7-74.3 26.8-94.2 48.2-3-9.8-13.6-16.6-34-16.6h-87.6c-9.3 0-12.9-2.3-11.5-7.4 1.6-5.5 1.9-6.8 3.7-12.2 2.1-6.4 7.8-7.1 13.3-7.1h133.5l9.7-31.5c-139.7 0-144.5-.5-160.1 1.2-12.3 1.3-23.5 4.8-30.6 15-6.8 9.9-14.4 35.6-17.6 47.1-5.4 19.4-.6 28.6 32.8 28.6h87.3c7.8 0 8.8 2.7 7.7 6.6-1.1 4.4-2.8 10-4.5 14.6-1.6 4.2-4.7 7.4-13.8 7.4H216.3L204.7 320c139.9 0 145.3-.6 160.9-2.3 6.6-.7 13-2.1 18.5-4.9.2 3.7.5 7.3 1.2 10.8 5.4 30.5 27.4 52.3 56.8 59.5 48.6 11.9 108.7-16.8 135.1-68 18.7-36.2 14.1-76.2-3.4-105.5h.1c29.6-5.9 70.3-22 65.7-50.6zM530.7 263.7c-5.9 29.5-36.6 47.8-61.6 43.9-30.9-4.8-38.5-39.5-14.1-64.8 16.2-16.8 45.2-24 68.5-26.9 6.7 14.1 10.3 32 7.2 47.8zm21.8-83.1c-4.2-6-9.8-18.5-2.5-26.3 6.7-7.2 20.9-10.1 31.8-7.7 15.3 3.4 19.7 15.9 4.9 24.4-10.7 6.1-23.6 8.1-34.2 9.6z"] }; +var faNutritionix = { prefix: 'fab', iconName: 'nutritionix', icon: [400, 512, [], "f3d6", "M88 8.1S221.4-.1 209 112.5c0 0 19.1-74.9 103-40.6 0 0-17.7 74-88 56 0 0 14.6-54.6 66.1-56.6 0 0-39.9-10.3-82.1 48.8 0 0-19.8-94.5-93.6-99.7 0 0 75.2 19.4 77.6 107.5 0 .1-106.4 7-104-119.8zm312 315.6c0 48.5-9.7 95.3-32 132.3-42.2 30.9-105 48-168 48-62.9 0-125.8-17.1-168-48C9.7 419 0 372.2 0 323.7 0 275.3 17.7 229 40 192c42.2-30.9 97.1-48.6 160-48.6 63 0 117.8 17.6 160 48.6 22.3 37 40 83.3 40 131.7zM120 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM192 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM264 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM336 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm24-39.6c-4.8-22.3-7.4-36.9-16-56-38.8-19.9-90.5-32-144-32S94.8 180.1 56 200c-8.8 19.5-11.2 33.9-16 56 42.2-7.9 98.7-14.8 160-14.8s117.8 6.9 160 14.8z"] }; +var faOdnoklassniki = { prefix: 'fab', iconName: 'odnoklassniki', icon: [320, 512, [], "f263", "M275.1 334c-27.4 17.4-65.1 24.3-90 26.9l20.9 20.6 76.3 76.3c27.9 28.6-17.5 73.3-45.7 45.7-19.1-19.4-47.1-47.4-76.3-76.6L84 503.4c-28.2 27.5-73.6-17.6-45.4-45.7 19.4-19.4 47.1-47.4 76.3-76.3l20.6-20.6c-24.6-2.6-62.9-9.1-90.6-26.9-32.6-21-46.9-33.3-34.3-59 7.4-14.6 27.7-26.9 54.6-5.7 0 0 36.3 28.9 94.9 28.9s94.9-28.9 94.9-28.9c26.9-21.1 47.1-8.9 54.6 5.7 12.4 25.7-1.9 38-34.5 59.1zM30.3 129.7C30.3 58 88.6 0 160 0s129.7 58 129.7 129.7c0 71.4-58.3 129.4-129.7 129.4s-129.7-58-129.7-129.4zm66 0c0 35.1 28.6 63.7 63.7 63.7s63.7-28.6 63.7-63.7c0-35.4-28.6-64-63.7-64s-63.7 28.6-63.7 64z"] }; +var faOdnoklassnikiSquare = { prefix: 'fab', iconName: 'odnoklassniki-square', icon: [448, 512, [], "f264", "M184.2 177.1c0-22.1 17.9-40 39.8-40s39.8 17.9 39.8 40c0 22-17.9 39.8-39.8 39.8s-39.8-17.9-39.8-39.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-305.1 97.1c0 44.6 36.4 80.9 81.1 80.9s81.1-36.2 81.1-80.9c0-44.8-36.4-81.1-81.1-81.1s-81.1 36.2-81.1 81.1zm174.5 90.7c-4.6-9.1-17.3-16.8-34.1-3.6 0 0-22.7 18-59.3 18s-59.3-18-59.3-18c-16.8-13.2-29.5-5.5-34.1 3.6-7.9 16.1 1.1 23.7 21.4 37 17.3 11.1 41.2 15.2 56.6 16.8l-12.9 12.9c-18.2 18-35.5 35.5-47.7 47.7-17.6 17.6 10.7 45.8 28.4 28.6l47.7-47.9c18.2 18.2 35.7 35.7 47.7 47.9 17.6 17.2 46-10.7 28.6-28.6l-47.7-47.7-13-12.9c15.5-1.6 39.1-5.9 56.2-16.8 20.4-13.3 29.3-21 21.5-37z"] }; +var faOldRepublic = { prefix: 'fab', iconName: 'old-republic', icon: [496, 512, [], "f510", "M235.76 10.23c7.5-.31 15-.28 22.5-.09 3.61.14 7.2.4 10.79.73 4.92.27 9.79 1.03 14.67 1.62 2.93.43 5.83.98 8.75 1.46 7.9 1.33 15.67 3.28 23.39 5.4 12.24 3.47 24.19 7.92 35.76 13.21 26.56 12.24 50.94 29.21 71.63 49.88 20.03 20.09 36.72 43.55 48.89 69.19 1.13 2.59 2.44 5.1 3.47 7.74 2.81 6.43 5.39 12.97 7.58 19.63 4.14 12.33 7.34 24.99 9.42 37.83.57 3.14 1.04 6.3 1.4 9.47.55 3.83.94 7.69 1.18 11.56.83 8.34.84 16.73.77 25.1-.07 4.97-.26 9.94-.75 14.89-.24 3.38-.51 6.76-.98 10.12-.39 2.72-.63 5.46-1.11 8.17-.9 5.15-1.7 10.31-2.87 15.41-4.1 18.5-10.3 36.55-18.51 53.63-15.77 32.83-38.83 62.17-67.12 85.12a246.503 246.503 0 0 1-56.91 34.86c-6.21 2.68-12.46 5.25-18.87 7.41-3.51 1.16-7.01 2.38-10.57 3.39-6.62 1.88-13.29 3.64-20.04 5-4.66.91-9.34 1.73-14.03 2.48-5.25.66-10.5 1.44-15.79 1.74-6.69.66-13.41.84-20.12.81-6.82.03-13.65-.12-20.45-.79-3.29-.23-6.57-.5-9.83-.95-2.72-.39-5.46-.63-8.17-1.11-4.12-.72-8.25-1.37-12.35-2.22-4.25-.94-8.49-1.89-12.69-3.02-8.63-2.17-17.08-5.01-25.41-8.13-10.49-4.12-20.79-8.75-30.64-14.25-2.14-1.15-4.28-2.29-6.35-3.57-11.22-6.58-21.86-14.1-31.92-22.34-34.68-28.41-61.41-66.43-76.35-108.7-3.09-8.74-5.71-17.65-7.8-26.68-1.48-6.16-2.52-12.42-3.58-18.66-.4-2.35-.61-4.73-.95-7.09-.6-3.96-.75-7.96-1.17-11.94-.8-9.47-.71-18.99-.51-28.49.14-3.51.34-7.01.7-10.51.31-3.17.46-6.37.92-9.52.41-2.81.65-5.65 1.16-8.44.7-3.94 1.3-7.9 2.12-11.82 3.43-16.52 8.47-32.73 15.26-48.18 1.15-2.92 2.59-5.72 3.86-8.59 8.05-16.71 17.9-32.56 29.49-47.06 20-25.38 45.1-46.68 73.27-62.47 7.5-4.15 15.16-8.05 23.07-11.37 15.82-6.88 32.41-11.95 49.31-15.38 3.51-.67 7.04-1.24 10.56-1.85 2.62-.47 5.28-.7 7.91-1.08 3.53-.53 7.1-.68 10.65-1.04 2.46-.24 4.91-.36 7.36-.51m8.64 24.41c-9.23.1-18.43.99-27.57 2.23-7.3 1.08-14.53 2.6-21.71 4.3-13.91 3.5-27.48 8.34-40.46 14.42-10.46 4.99-20.59 10.7-30.18 17.22-4.18 2.92-8.4 5.8-12.34 9.03-5.08 3.97-9.98 8.17-14.68 12.59-2.51 2.24-4.81 4.7-7.22 7.06-28.22 28.79-48.44 65.39-57.5 104.69-2.04 8.44-3.54 17.02-4.44 25.65-1.1 8.89-1.44 17.85-1.41 26.8.11 7.14.38 14.28 1.22 21.37.62 7.12 1.87 14.16 3.2 21.18 1.07 4.65 2.03 9.32 3.33 13.91 6.29 23.38 16.5 45.7 30.07 65.75 8.64 12.98 18.78 24.93 29.98 35.77 16.28 15.82 35.05 29.04 55.34 39.22 7.28 3.52 14.66 6.87 22.27 9.63 5.04 1.76 10.06 3.57 15.22 4.98 11.26 3.23 22.77 5.6 34.39 7.06 2.91.29 5.81.61 8.72.9 13.82 1.08 27.74 1 41.54-.43 4.45-.6 8.92-.99 13.35-1.78 3.63-.67 7.28-1.25 10.87-2.1 4.13-.98 8.28-1.91 12.36-3.07 26.5-7.34 51.58-19.71 73.58-36.2 15.78-11.82 29.96-25.76 42.12-41.28 3.26-4.02 6.17-8.31 9.13-12.55 3.39-5.06 6.58-10.25 9.6-15.54 2.4-4.44 4.74-8.91 6.95-13.45 5.69-12.05 10.28-24.62 13.75-37.49 2.59-10.01 4.75-20.16 5.9-30.45 1.77-13.47 1.94-27.1 1.29-40.65-.29-3.89-.67-7.77-1-11.66-2.23-19.08-6.79-37.91-13.82-55.8-5.95-15.13-13.53-29.63-22.61-43.13-12.69-18.8-28.24-35.68-45.97-49.83-25.05-20-54.47-34.55-85.65-42.08-7.78-1.93-15.69-3.34-23.63-4.45-3.91-.59-7.85-.82-11.77-1.24-7.39-.57-14.81-.72-22.22-.58zM139.26 83.53c13.3-8.89 28.08-15.38 43.3-20.18-3.17 1.77-6.44 3.38-9.53 5.29-11.21 6.68-21.52 14.9-30.38 24.49-6.8 7.43-12.76 15.73-17.01 24.89-3.29 6.86-5.64 14.19-6.86 21.71-.93 4.85-1.3 9.81-1.17 14.75.13 13.66 4.44 27.08 11.29 38.82 5.92 10.22 13.63 19.33 22.36 27.26 4.85 4.36 10.24 8.09 14.95 12.6 2.26 2.19 4.49 4.42 6.43 6.91 2.62 3.31 4.89 6.99 5.99 11.1.9 3.02.66 6.2.69 9.31.02 4.1-.04 8.2.03 12.3.14 3.54-.02 7.09.11 10.63.08 2.38.02 4.76.05 7.14.16 5.77.06 11.53.15 17.3.11 2.91.02 5.82.13 8.74.03 1.63.13 3.28-.03 4.91-.91.12-1.82.18-2.73.16-10.99 0-21.88-2.63-31.95-6.93-6-2.7-11.81-5.89-17.09-9.83-5.75-4.19-11.09-8.96-15.79-14.31-6.53-7.24-11.98-15.39-16.62-23.95-1.07-2.03-2.24-4.02-3.18-6.12-1.16-2.64-2.62-5.14-3.67-7.82-4.05-9.68-6.57-19.94-8.08-30.31-.49-4.44-1.09-8.88-1.2-13.35-.7-15.73.84-31.55 4.67-46.82 2.12-8.15 4.77-16.18 8.31-23.83 6.32-14.2 15.34-27.18 26.3-38.19 6.28-6.2 13.13-11.84 20.53-16.67zm175.37-20.12c2.74.74 5.41 1.74 8.09 2.68 6.36 2.33 12.68 4.84 18.71 7.96 13.11 6.44 25.31 14.81 35.82 24.97 10.2 9.95 18.74 21.6 25.14 34.34 1.28 2.75 2.64 5.46 3.81 8.26 6.31 15.1 10 31.26 11.23 47.57.41 4.54.44 9.09.45 13.64.07 11.64-1.49 23.25-4.3 34.53-1.97 7.27-4.35 14.49-7.86 21.18-3.18 6.64-6.68 13.16-10.84 19.24-6.94 10.47-15.6 19.87-25.82 27.22-10.48 7.64-22.64 13.02-35.4 15.38-3.51.69-7.08 1.08-10.66 1.21-1.85.06-3.72.16-5.56-.1-.28-2.15 0-4.31-.01-6.46-.03-3.73.14-7.45.1-11.17.19-7.02.02-14.05.21-21.07.03-2.38-.03-4.76.03-7.14.17-5.07-.04-10.14.14-15.21.1-2.99-.24-6.04.51-8.96.66-2.5 1.78-4.86 3.09-7.08 4.46-7.31 11.06-12.96 17.68-18.26 5.38-4.18 10.47-8.77 15.02-13.84 7.68-8.37 14.17-17.88 18.78-28.27 2.5-5.93 4.52-12.1 5.55-18.46.86-4.37 1.06-8.83 1.01-13.27-.02-7.85-1.4-15.65-3.64-23.17-1.75-5.73-4.27-11.18-7.09-16.45-3.87-6.93-8.65-13.31-13.96-19.2-9.94-10.85-21.75-19.94-34.6-27.1-1.85-1.02-3.84-1.82-5.63-2.97zm-100.8 58.45c.98-1.18 1.99-2.33 3.12-3.38-.61.93-1.27 1.81-1.95 2.68-3.1 3.88-5.54 8.31-7.03 13.06-.87 3.27-1.68 6.6-1.73 10-.07 2.52-.08 5.07.32 7.57 1.13 7.63 4.33 14.85 8.77 21.12 2 2.7 4.25 5.27 6.92 7.33 1.62 1.27 3.53 2.09 5.34 3.05 3.11 1.68 6.32 3.23 9.07 5.48 2.67 2.09 4.55 5.33 4.4 8.79-.01 73.67 0 147.34-.01 221.02 0 1.35-.08 2.7.04 4.04.13 1.48.82 2.83 1.47 4.15.86 1.66 1.78 3.34 3.18 4.62.85.77 1.97 1.4 3.15 1.24 1.5-.2 2.66-1.35 3.45-2.57.96-1.51 1.68-3.16 2.28-4.85.76-2.13.44-4.42.54-6.63.14-4.03-.02-8.06.14-12.09.03-5.89.03-11.77.06-17.66.14-3.62.03-7.24.11-10.86.15-4.03-.02-8.06.14-12.09.03-5.99.03-11.98.07-17.97.14-3.62.02-7.24.11-10.86.14-3.93-.02-7.86.14-11.78.03-5.99.03-11.98.06-17.97.16-3.94-.01-7.88.19-11.82.29 1.44.13 2.92.22 4.38.19 3.61.42 7.23.76 10.84.32 3.44.44 6.89.86 10.32.37 3.1.51 6.22.95 9.31.57 4.09.87 8.21 1.54 12.29 1.46 9.04 2.83 18.11 5.09 26.99 1.13 4.82 2.4 9.61 4 14.3 2.54 7.9 5.72 15.67 10.31 22.62 1.73 2.64 3.87 4.98 6.1 7.21.27.25.55.51.88.71.6.25 1.31-.07 1.7-.57.71-.88 1.17-1.94 1.7-2.93 4.05-7.8 8.18-15.56 12.34-23.31.7-1.31 1.44-2.62 2.56-3.61 1.75-1.57 3.84-2.69 5.98-3.63 2.88-1.22 5.9-2.19 9.03-2.42 6.58-.62 13.11.75 19.56 1.85 3.69.58 7.4 1.17 11.13 1.41 3.74.1 7.48.05 11.21-.28 8.55-.92 16.99-2.96 24.94-6.25 5.3-2.24 10.46-4.83 15.31-7.93 11.46-7.21 21.46-16.57 30.04-27.01 1.17-1.42 2.25-2.9 3.46-4.28-1.2 3.24-2.67 6.37-4.16 9.48-1.25 2.9-2.84 5.61-4.27 8.42-5.16 9.63-11.02 18.91-17.75 27.52-4.03 5.21-8.53 10.05-13.33 14.57-6.64 6.05-14.07 11.37-22.43 14.76-8.21 3.37-17.31 4.63-26.09 3.29-3.56-.58-7.01-1.69-10.41-2.88-2.79-.97-5.39-2.38-8.03-3.69-3.43-1.71-6.64-3.81-9.71-6.08 2.71 3.06 5.69 5.86 8.7 8.61 4.27 3.76 8.74 7.31 13.63 10.23 3.98 2.45 8.29 4.4 12.84 5.51 1.46.37 2.96.46 4.45.6-1.25 1.1-2.63 2.04-3.99 2.98-9.61 6.54-20.01 11.86-30.69 16.43-20.86 8.7-43.17 13.97-65.74 15.34-4.66.24-9.32.36-13.98.36-4.98-.11-9.97-.13-14.92-.65-11.2-.76-22.29-2.73-33.17-5.43-10.35-2.71-20.55-6.12-30.3-10.55-8.71-3.86-17.12-8.42-24.99-13.79-1.83-1.31-3.74-2.53-5.37-4.08 6.6-1.19 13.03-3.39 18.99-6.48 5.74-2.86 10.99-6.66 15.63-11.07 2.24-2.19 4.29-4.59 6.19-7.09-3.43 2.13-6.93 4.15-10.62 5.78-4.41 2.16-9.07 3.77-13.81 5.02-5.73 1.52-11.74 1.73-17.61 1.14-8.13-.95-15.86-4.27-22.51-8.98-4.32-2.94-8.22-6.43-11.96-10.06-9.93-10.16-18.2-21.81-25.66-33.86-3.94-6.27-7.53-12.75-11.12-19.22-1.05-2.04-2.15-4.05-3.18-6.1 2.85 2.92 5.57 5.97 8.43 8.88 8.99 8.97 18.56 17.44 29.16 24.48 7.55 4.9 15.67 9.23 24.56 11.03 3.11.73 6.32.47 9.47.81 2.77.28 5.56.2 8.34.3 5.05.06 10.11.04 15.16-.16 3.65-.16 7.27-.66 10.89-1.09 2.07-.25 4.11-.71 6.14-1.2 3.88-.95 8.11-.96 11.83.61 4.76 1.85 8.44 5.64 11.38 9.71 2.16 3.02 4.06 6.22 5.66 9.58 1.16 2.43 2.46 4.79 3.55 7.26 1 2.24 2.15 4.42 3.42 6.52.67 1.02 1.4 2.15 2.62 2.55 1.06-.75 1.71-1.91 2.28-3.03 2.1-4.16 3.42-8.65 4.89-13.05 2.02-6.59 3.78-13.27 5.19-20.02 2.21-9.25 3.25-18.72 4.54-28.13.56-3.98.83-7.99 1.31-11.97.87-10.64 1.9-21.27 2.24-31.94.08-1.86.24-3.71.25-5.57.01-4.35.25-8.69.22-13.03-.01-2.38-.01-4.76 0-7.13.05-5.07-.2-10.14-.22-15.21-.2-6.61-.71-13.2-1.29-19.78-.73-5.88-1.55-11.78-3.12-17.51-2.05-7.75-5.59-15.03-9.8-21.82-3.16-5.07-6.79-9.88-11.09-14.03-3.88-3.86-8.58-7.08-13.94-8.45-1.5-.41-3.06-.45-4.59-.64.07-2.99.7-5.93 1.26-8.85 1.59-7.71 3.8-15.3 6.76-22.6 1.52-4.03 3.41-7.9 5.39-11.72 3.45-6.56 7.62-12.79 12.46-18.46zm31.27 1.7c.35-.06.71-.12 1.07-.19.19 1.79.09 3.58.1 5.37v38.13c-.01 1.74.13 3.49-.15 5.22-.36-.03-.71-.05-1.06-.05-.95-3.75-1.72-7.55-2.62-11.31-.38-1.53-.58-3.09-1.07-4.59-1.7-.24-3.43-.17-5.15-.2-5.06-.01-10.13 0-15.19-.01-1.66-.01-3.32.09-4.98-.03-.03-.39-.26-.91.16-1.18 1.28-.65 2.72-.88 4.06-1.35 3.43-1.14 6.88-2.16 10.31-3.31 1.39-.48 2.9-.72 4.16-1.54.04-.56.02-1.13-.05-1.68-1.23-.55-2.53-.87-3.81-1.28-3.13-1.03-6.29-1.96-9.41-3.02-1.79-.62-3.67-1-5.41-1.79-.03-.37-.07-.73-.11-1.09 5.09-.19 10.2.06 15.3-.12 3.36-.13 6.73.08 10.09-.07.12-.39.26-.77.37-1.16 1.08-4.94 2.33-9.83 3.39-14.75zm5.97-.2c.36.05.72.12 1.08.2.98 3.85 1.73 7.76 2.71 11.61.36 1.42.56 2.88 1.03 4.27 2.53.18 5.07-.01 7.61.05 5.16.12 10.33.12 15.49.07.76-.01 1.52.03 2.28.08-.04.36-.07.72-.1 1.08-1.82.83-3.78 1.25-5.67 1.89-3.73 1.23-7.48 2.39-11.22 3.57-.57.17-1.12.42-1.67.64-.15.55-.18 1.12-.12 1.69.87.48 1.82.81 2.77 1.09 4.88 1.52 9.73 3.14 14.63 4.6.38.13.78.27 1.13.49.4.27.23.79.15 1.18-1.66.13-3.31.03-4.97.04-5.17.01-10.33-.01-15.5.01-1.61.03-3.22-.02-4.82.21-.52 1.67-.72 3.42-1.17 5.11-.94 3.57-1.52 7.24-2.54 10.78-.36.01-.71.02-1.06.06-.29-1.73-.15-3.48-.15-5.22v-38.13c.02-1.78-.08-3.58.11-5.37zM65.05 168.33c1.12-2.15 2.08-4.4 3.37-6.46-1.82 7.56-2.91 15.27-3.62 23-.8 7.71-.85 15.49-.54 23.23 1.05 19.94 5.54 39.83 14.23 57.88 2.99 5.99 6.35 11.83 10.5 17.11 6.12 7.47 12.53 14.76 19.84 21.09 4.8 4.1 9.99 7.78 15.54 10.8 3.27 1.65 6.51 3.39 9.94 4.68 5.01 2.03 10.19 3.61 15.42 4.94 3.83.96 7.78 1.41 11.52 2.71 5 1.57 9.47 4.61 13.03 8.43 4.93 5.23 8.09 11.87 10.2 18.67.99 2.9 1.59 5.91 2.17 8.92.15.75.22 1.52.16 2.29-6.5 2.78-13.26 5.06-20.26 6.18-4.11.78-8.29.99-12.46 1.08-10.25.24-20.47-1.76-30.12-5.12-3.74-1.42-7.49-2.85-11.03-4.72-8.06-3.84-15.64-8.7-22.46-14.46-2.92-2.55-5.83-5.13-8.4-8.03-9.16-9.83-16.3-21.41-21.79-33.65-2.39-5.55-4.61-11.18-6.37-16.96-1.17-3.94-2.36-7.89-3.26-11.91-.75-2.94-1.22-5.95-1.87-8.92-.46-2.14-.69-4.32-1.03-6.48-.85-5.43-1.28-10.93-1.33-16.43.11-6.18.25-12.37 1.07-18.5.4-2.86.67-5.74 1.15-8.6.98-5.7 2.14-11.37 3.71-16.93 3.09-11.65 7.48-22.95 12.69-33.84zm363.73-6.44c1.1 1.66 1.91 3.48 2.78 5.26 2.1 4.45 4.24 8.9 6.02 13.49 7.61 18.76 12.3 38.79 13.04 59.05.02 1.76.07 3.52.11 5.29.13 9.57-1.27 19.09-3.18 28.45-.73 3.59-1.54 7.17-2.58 10.69-4.04 14.72-10 29-18.41 41.78-8.21 12.57-19.01 23.55-31.84 31.41-5.73 3.59-11.79 6.64-18.05 9.19-5.78 2.19-11.71 4.03-17.8 5.11-6.4 1.05-12.91 1.52-19.4 1.23-7.92-.48-15.78-2.07-23.21-4.85-1.94-.8-3.94-1.46-5.84-2.33-.21-1.51.25-2.99.53-4.46 1.16-5.74 3.03-11.36 5.7-16.58 2.37-4.51 5.52-8.65 9.46-11.9 2.43-2.05 5.24-3.61 8.16-4.83 3.58-1.5 7.47-1.97 11.24-2.83 7.23-1.71 14.37-3.93 21.15-7 10.35-4.65 19.71-11.38 27.65-19.46 1.59-1.61 3.23-3.18 4.74-4.87 3.37-3.76 6.71-7.57 9.85-11.53 7.48-10.07 12.82-21.59 16.71-33.48 1.58-5.3 3.21-10.6 4.21-16.05.63-2.87 1.04-5.78 1.52-8.68.87-6.09 1.59-12.22 1.68-18.38.12-6.65.14-13.32-.53-19.94-.73-7.99-1.87-15.96-3.71-23.78z"] }; +var faOpencart = { prefix: 'fab', iconName: 'opencart', icon: [640, 512, [], "f23d", "M423.3 440.7c0 25.3-20.3 45.6-45.6 45.6s-45.8-20.3-45.8-45.6 20.6-45.8 45.8-45.8c25.4 0 45.6 20.5 45.6 45.8zm-253.9-45.8c-25.3 0-45.6 20.6-45.6 45.8s20.3 45.6 45.6 45.6 45.8-20.3 45.8-45.6-20.5-45.8-45.8-45.8zm291.7-270C158.9 124.9 81.9 112.1 0 25.7c34.4 51.7 53.3 148.9 373.1 144.2 333.3-5 130 86.1 70.8 188.9 186.7-166.7 319.4-233.9 17.2-233.9z"] }; +var faOpenid = { prefix: 'fab', iconName: 'openid', icon: [448, 512, [], "f19b", "M271.5 432l-68 32C88.5 453.7 0 392.5 0 318.2c0-71.5 82.5-131 191.7-144.3v43c-71.5 12.5-124 53-124 101.3 0 51 58.5 93.3 135.7 103v-340l68-33.2v384zM448 291l-131.3-28.5 36.8-20.7c-19.5-11.5-43.5-20-70-24.8v-43c46.2 5.5 87.7 19.5 120.3 39.3l35-19.8L448 291z"] }; +var faOpera = { prefix: 'fab', iconName: 'opera', icon: [496, 512, [], "f26a", "M313.9 32.7c-170.2 0-252.6 223.8-147.5 355.1 36.5 45.4 88.6 75.6 147.5 75.6 36.3 0 70.3-11.1 99.4-30.4-43.8 39.2-101.9 63-165.3 63-3.9 0-8 0-11.9-.3C104.6 489.6 0 381.1 0 248 0 111 111 0 248 0h.8c63.1.3 120.7 24.1 164.4 63.1-29-19.4-63.1-30.4-99.3-30.4zm101.8 397.7c-40.9 24.7-90.7 23.6-132-5.8 56.2-20.5 97.7-91.6 97.7-176.6 0-84.7-41.2-155.8-97.4-176.6 41.8-29.2 91.2-30.3 132.9-5 105.9 98.7 105.5 265.7-1.2 364z"] }; +var faOptinMonster = { prefix: 'fab', iconName: 'optin-monster', icon: [576, 512, [], "f23c", "M550.671 450.303c0 11.62-15.673 19.457-32.158 14.863-12.16-3.243-31.346-17.565-36.211-27.294-5.674-11.62 4.054-32.698 18.916-30.806 15.674 1.621 49.453 25.401 49.453 43.237zM372.86 75.223c-3.783-72.151-100.796-79.718-125.928-23.51 44.588-24.321 90.257-15.673 125.928 23.51zM74.795 407.066c-15.673 1.621-49.452 25.401-49.452 43.237 0 11.62 15.673 19.457 32.157 14.863 12.16-3.243 31.076-17.565 35.94-27.294 5.946-11.62-3.782-32.698-18.645-30.806zm497.765 14.322c1.081 3.513 1.892 7.026 1.892 10.809.81 31.616-44.317 64.045-73.503 65.125-17.295.81-34.59-8.377-42.696-23.51-113.497 4.053-226.994 4.864-340.22 0-8.377 15.133-25.672 24.05-42.967 23.51-28.915-1.081-74.043-33.509-73.503-65.125.27-3.783.811-7.296 1.892-10.809-5.566-9.463-4.845-15.282 5.405-11.62 3.243-5.134 7.026-9.458 11.08-13.782-2.57-10.917 1.27-14.094 11.079-9.188 4.594-3.243 9.998-6.485 15.944-9.188 0-15.757 11.839-11.131 17.295-5.675 12.467-1.78 20.129.709 26.753 5.675v-19.726c-12.987 0-40.641-11.375-45.94-36.212-4.974-20.725 2.607-38.075 25.132-47.56.81-5.945 8.107-14.052 14.862-15.944 7.567-1.892 12.431 4.594 14.052 10.269 7.425 0 17.757 1.465 21.078 8.107 5.405-.541 11.079-1.352 16.484-1.892-2.432-1.892-5.134-3.513-8.107-4.594-5.134-8.917-13.782-11.079-24.591-11.62 0-.81 0-1.621.27-2.702-19.727-.541-44.048-5.675-54.857-17.835-21.321-23.638-15.935-83.577 12.16-103.498 8.377-5.675 21.618-.811 22.699 9.728 2.425 20.598.399 26.833 26.212 25.942 8.107-7.836 16.755-14.592 26.483-19.997-14.862-1.352-28.914 1.621-43.778 3.783 12.752-12.48 23.953-25.442 56.748-42.427 23.511-11.89 49.993-20.808 76.205-23.239-18.646-7.837-39.993-11.891-59.721-16.484 76.475-16.214 174.569-22.159 244.289 37.562 18.105 15.403 32.427 36.211 42.696 59.992 39.799 4.853 36.47-5.581 38.643-25.132 1.081-10.269 14.322-15.403 22.699-9.458 14.862 10.539 22.159 30.806 24.59 48.101 2.162 17.835.27 41.345-12.43 55.127-10.809 12.16-34.32 17.565-53.776 18.105v2.703c-11.08.27-20.268 2.432-25.673 11.62-2.972 1.081-5.674 2.703-8.377 4.594 5.675.54 11.35 1.351 16.755 1.891 1.869-5.619 12.535-8.377 21.077-8.377 1.621-5.405 6.756-11.89 14.052-10.269s14.052 9.998 14.863 15.944c10.809 4.324 22.159 12.16 25.131 25.672 1.892 8.107 1.621 15.133.27 21.888-5.726 25.262-33.361 36.212-45.939 36.212 0 6.756 0 13.241-.27 19.726 8.01-6.006 16.367-7.158 26.752-5.675 5.919-5.919 17.565-9.41 17.565 5.675 5.675 2.703 11.349 5.945 15.944 9.188 10.1-5.051 13.669-.539 10.809 9.188 4.053 4.323 8.107 8.917 11.079 13.782 10.136-3.62 11.021 2.078 5.409 11.62zm-73.773-254.016c17.295 6.756 26.212 22.159 30.265 35.67 1.081-10.539-2.702-39.453-13.782-51.073-7.296-7.296-14.052-5.134-14.052.81.001 6.216-1.35 11.62-2.431 14.593zm-18.646 12.43c12.971 15.673 17.024 41.615 12.7 62.963 10.809-2.162 20.537-6.215 26.212-12.16 1.892-2.162 3.783-4.864 4.864-7.566-1.081-21.348-10.269-42.697-29.725-48.912-3.242 3.243-9.187 4.864-14.051 5.675zm-21.889.811c7.567 20.537 12.431 42.696 14.322 64.585 3.513 0 7.567-.27 11.62-.811 5.945-24.321-.27-51.614-14.052-63.504-3.783 0-8.107 0-11.89-.27zM77.768 167.372c-1.081-2.973-2.432-8.377-2.432-14.593 0-5.945-7.026-8.107-14.052-.81-11.35 11.62-14.863 40.534-13.782 51.073 4.053-13.512 12.971-28.915 30.266-35.67zm5.675 75.394c-4.324-21.348-.27-47.291 12.701-62.963-4.865-.811-10.809-2.432-14.052-5.675-19.457 6.215-28.375 27.563-29.726 48.912 1.351 2.702 2.972 5.404 4.864 7.566 5.675 6.215 15.403 9.998 26.213 12.16zm41.345-61.073c-5.134 1.081-9.998 2.973-14.862 4.865l-12.16 5.134v-.27c-7.296 14.052-9.999 34.319-5.405 52.965 4.594.541 8.647.811 12.7.811 2.432-22.159 9.188-43.778 19.727-63.505zm88.095-23.239c0 42.155 34.319 76.205 76.205 76.205s76.205-34.05 76.205-76.205c0-41.886-34.319-75.935-76.205-75.935s-76.205 34.049-76.205 75.935zm152.41 97.283c9.969 50.608 3.299 64.692 16.484 58.099 15.944-8.107 22.699-39.183 22.97-57.019-12.971-.81-26.213-.81-39.454-1.08zm-71.611-.541v-.27c-.27 5.134.27 38.103 4.324 41.075 11.079 5.405 39.453 4.594 51.073 1.081 5.405-1.621 2.432-37.022 1.621-41.886-18.916-.27-38.102-.27-57.018 0zm-14.053 0v-.27c-19.456.27-38.642.27-57.829.811-1.892 9.187-4.594 48.911 1.892 51.614 12.971 5.675 41.616 5.134 54.586 1.621 4.595-2.432 2.433-45.399 1.351-53.776zm-85.662 57.56c5.405 2.432 8.647 2.432 9.728-4.324 1.892-8.647 2.432-36.752 4.865-52.155-12.16.27-24.591.811-36.752 1.621-5.405 19.727.27 45.129 22.159 54.858zm-65.666-11.08c43.778 47.02 92.689 85.663 155.923 106.47 67.558-19.186 115.659-59.991 163.219-107.011-11.095-4.315-7.715-10.363-7.296-11.62-8.918-.81-17.835-1.892-26.483-2.702-9.458 32.968-35.94 52.965-46.75 31.616-2.702-5.134-3.513-11.62-4.594-16.754-3.783 8.377-13.242 8.107-24.591 8.918-13.241 1.081-31.617 1.351-44.048-2.972-2.972 12.971-11.079 12.971-26.752 14.322-14.052 1.352-48.642 4.054-54.857-10.809-1.081 28.644-35.13 9.998-45.129-7.026-3.243-5.675-5.405-11.35-7.026-17.565-7.837.81-15.673 1.621-23.511 2.702 2.443 3.663 1.549 9.052-8.105 12.431zM115.6 453.545c-5.674-23.239-18.646-49.722-33.508-54.046-22.429-6.756-68.909 23.51-66.207 54.586 12.701 19.457 39.994 35.67 59.181 36.481 17.835.81 35.94-11.08 39.724-28.914.539-2.432.81-5.134.81-8.107zm7.296-5.944c33.509-19.457 69.179-35.671 105.931-47.02-38.643-20.537-68.098-47.831-97.283-77.016-2.162 1.352-5.134 2.432-7.836 3.513-1.637 4.91 8.718 5.33 5.405 12.431-2.162 4.054-8.648 7.567-15.133 9.188-2.161 2.702-5.134 4.864-7.836 6.485h-.27c-.27 13.511-.27 27.024.27 40.535 8.939 15.964 15.426 33.314 16.752 51.884zm320.764 12.7c-36.752-21.348-74.044-41.345-115.659-52.965-13.782 6.215-27.833 11.349-42.155 15.403-2.162.811-2.162.811-4.324 0-11.89-3.783-23.239-8.107-34.859-13.241-40.265 11.62-77.286 29.185-112.416 50.803h-.27v.27c.27 0 .27 0 .27-.27 103.227 4.054 206.455 3.513 309.413 0zm27.023-64.045l-.27.27c.541-13.782.811-27.563.811-41.345-2.973-1.621-5.675-4.054-8.107-6.756-6.485-1.351-12.971-5.134-15.133-8.918-1.892-4.053 1.351-7.566 5.945-10.269-.27-.541-.541-1.621-.541-2.432-2.972-.811-5.405-1.892-7.567-3.243-31.616 29.455-65.396 56.749-103.498 76.746 38.914 11.62 75.935 28.104 111.875 47.561 1.05-14.692 7.231-35.749 16.485-51.614zm23.24 3.244c-14.593 4.323-27.834 30.806-33.509 54.046 0 23.826 21.278 37.897 40.534 37.022 19.186-.811 46.48-17.024 59.181-36.481 2.973-31.077-43.507-61.344-66.206-54.587zM290.709 134.133c.045 0 .089.003.134.003.046 0 .09-.003.136-.003h-.27zm0 96.743c28.645 0 51.884-21.618 51.884-48.371 0-36.092-40.507-58.079-72.151-44.318 9.458 2.972 16.484 11.62 16.484 21.618 0 23.257-33.291 31.955-46.48 11.35-7.297 34.067 19.368 59.721 50.263 59.721zM68.039 474.083c.54 6.486 12.16 12.701 21.618 9.458 6.756-2.703 14.593-10.539 17.295-16.214 2.973-7.026-1.081-19.997-9.728-18.375-8.917 1.621-29.725 16.754-29.185 25.131zm410.75-25.131c-8.377-1.621-12.431 11.349-9.458 18.375 2.432 5.675 10.269 13.511 17.295 16.214 9.187 3.243 21.078-2.972 21.348-9.458.811-8.377-20.267-23.51-29.185-25.131z"] }; +var faOsi = { prefix: 'fab', iconName: 'osi', icon: [495, 512, [], "f41a", "M0 259.2C2.3 123.4 97.4 26.8 213.8 11.1c138.8-18.6 255.6 75.8 278 201.1 21.3 118.8-44 230-151.6 274-9.3 3.8-14.4 1.7-18-7.7-17.8-46.3-35.6-92.7-53.4-139-3.1-8.1-1-13.2 7-16.8 24.2-11 39.3-29.4 43.3-55.8 6.4-42.4-24.5-78.7-64.5-82.2-39-3.4-71.8 23.7-77.5 59.7-5.2 33 11.1 63.7 41.9 77.7 9.6 4.4 11.5 8.6 7.8 18.4-17.9 46.6-35.8 93.2-53.7 139.9-2.6 6.9-8.3 9.3-15.5 6.5-52.6-20.3-101.4-61-130.8-119C1.9 318.7 1.6 280.2 0 259.2zm20.9-1.9c.4 6.6.6 14.3 1.3 22.1 6.3 71.9 49.6 143.5 131 183.1 3.2 1.5 4.4.8 5.6-2.3 14.9-39.1 29.9-78.2 45-117.3 1.3-3.3.6-4.8-2.4-6.7-31.6-19.9-47.3-48.5-45.6-86 1-21.6 9.3-40.5 23.8-56.3 30-32.7 77-39.8 115.5-17.6 31.9 18.4 49.5 53.8 45.2 90.4-3.6 30.6-19.3 53.9-45.7 69.8-2.7 1.6-3.5 2.9-2.3 6 15.2 39.2 30.2 78.4 45.2 117.7 1.2 3.1 2.4 3.8 5.6 2.3 35.5-16.6 65.2-40.3 88.1-72 34.8-48.2 49.1-101.9 42.3-161C459.8 112 354.1 14.7 218 31.5 111.9 44.5 22.7 134 20.9 257.3z"] }; +var faPage4 = { prefix: 'fab', iconName: 'page4', icon: [496, 512, [], "f3d7", "M248 504C111 504 0 393 0 256S111 8 248 8c20.9 0 41.3 2.6 60.7 7.5L42.3 392H248v112zm0-143.6V146.8L98.6 360.4H248zm96 31.6v92.7c45.7-19.2 84.5-51.7 111.4-92.7H344zm57.4-138.2l-21.2 8.4 21.2 8.3v-16.7zm-20.3 54.5c-6.7 0-8 6.3-8 12.9v7.7h16.2v-10c0-5.9-2.3-10.6-8.2-10.6zM496 256c0 37.3-8.2 72.7-23 104.4H344V27.3C433.3 64.8 496 153.1 496 256zM360.4 143.6h68.2V96h-13.9v32.6h-13.9V99h-13.9v29.6h-12.7V96h-13.9v47.6zm68.1 185.3H402v-11c0-15.4-5.6-25.2-20.9-25.2-15.4 0-20.7 10.6-20.7 25.9v25.3h68.2v-15zm0-103l-68.2 29.7V268l68.2 29.5v-16.6l-14.4-5.7v-26.5l14.4-5.9v-16.9zm-4.8-68.5h-35.6V184H402v-12.2h11c8.6 15.8 1.3 35.3-18.6 35.3-22.5 0-28.3-25.3-15.5-37.7l-11.6-10.6c-16.2 17.5-12.2 63.9 27.1 63.9 34 0 44.7-35.9 29.3-65.3z"] }; +var faPagelines = { prefix: 'fab', iconName: 'pagelines', icon: [384, 512, [], "f18c", "M384 312.7c-55.1 136.7-187.1 54-187.1 54-40.5 81.8-107.4 134.4-184.6 134.7-16.1 0-16.6-24.4 0-24.4 64.4-.3 120.5-42.7 157.2-110.1-41.1 15.9-118.6 27.9-161.6-82.2 109-44.9 159.1 11.2 178.3 45.5 9.9-24.4 17-50.9 21.6-79.7 0 0-139.7 21.9-149.5-98.1 119.1-47.9 152.6 76.7 152.6 76.7 1.6-16.7 3.3-52.6 3.3-53.4 0 0-106.3-73.7-38.1-165.2 124.6 43 61.4 162.4 61.4 162.4.5 1.6.5 23.8 0 33.4 0 0 45.2-89 136.4-57.5-4.2 134-141.9 106.4-141.9 106.4-4.4 27.4-11.2 53.4-20 77.5 0 0 83-91.8 172-20z"] }; +var faPalfed = { prefix: 'fab', iconName: 'palfed', icon: [576, 512, [], "f3d8", "M384.9 193.9c0-47.4-55.2-44.2-95.4-29.8-1.3 39.4-2.5 80.7-3 119.8.7 2.8 2.6 6.2 15.1 6.2 36.8 0 83.4-42.8 83.3-96.2zm-194.5 72.2c.2 0 6.5-2.7 11.2-2.7 26.6 0 20.7 44.1-14.4 44.1-21.5 0-37.1-18.1-37.1-43 0-42 42.9-95.6 100.7-126.5 1-12.4 3-22 10.5-28.2 11.2-9 26.6-3.5 29.5 11.1 72.2-22.2 135.2 1 135.2 72 0 77.9-79.3 152.6-140.1 138.2-.1 39.4.9 74.4 2.7 100v.2c.2 3.4.6 12.5-5.3 19.1-9.6 10.6-33.4 10-36.4-22.3-4.1-44.4.2-206.1 1.4-242.5-21.5 15-58.5 50.3-58.5 75.9.2 2.5.4 4 .6 4.6zM8 181.1s-.1 37.4 38.4 37.4h30l22.4 217.2s0 44.3 44.7 44.3h288.9s44.7-.4 44.7-44.3l22.4-217.2h30s38.4 1.2 38.4-37.4c0 0 .1-37.4-38.4-37.4h-30.1c-7.3-25.6-30.2-74.3-119.4-74.3h-28V50.3s-2.7-18.4-21.1-18.4h-85.8s-21.1 0-21.1 18.4v19.1h-28.1s-105 4.2-120.5 74.3h-29S8 142.5 8 181.1z"] }; +var faPatreon = { prefix: 'fab', iconName: 'patreon', icon: [512, 512, [], "f3d9", "M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z"] }; +var faPaypal = { prefix: 'fab', iconName: 'paypal', icon: [384, 512, [], "f1ed", "M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z"] }; +var faPeriscope = { prefix: 'fab', iconName: 'periscope', icon: [448, 512, [], "f3da", "M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z"] }; +var faPhabricator = { prefix: 'fab', iconName: 'phabricator', icon: [496, 512, [], "f3db", "M323 262.1l-.1-13s21.7-19.8 21.1-21.2l-9.5-20c-.6-1.4-29.5-.5-29.5-.5l-9.4-9.3s.2-28.5-1.2-29.1l-20.1-9.2c-1.4-.6-20.7 21-20.7 21l-13.1-.2s-20.5-21.4-21.9-20.8l-20 8.3c-1.4.5.2 28.9.2 28.9l-9.1 9.1s-29.2-.9-29.7.4l-8.1 19.8c-.6 1.4 21 21 21 21l.1 12.9s-21.7 19.8-21.1 21.2l9.5 20c.6 1.4 29.5.5 29.5.5l9.4 9.3s-.2 31.8 1.2 32.3l20.1 8.3c1.4.6 20.7-23.5 20.7-23.5l13.1.2s20.5 23.8 21.8 23.3l20-7.5c1.4-.6-.2-32.1-.2-32.1l9.1-9.1s29.2.9 29.7-.5l8.1-19.8c.7-1.1-20.9-20.7-20.9-20.7zm-44.9-8.7c.7 17.1-12.8 31.6-30.1 32.4-17.3.8-32.1-12.5-32.8-29.6-.7-17.1 12.8-31.6 30.1-32.3 17.3-.8 32.1 12.5 32.8 29.5zm201.2-37.9l-97-97-.1.1c-75.1-73.3-195.4-72.8-269.8 1.6-50.9 51-27.8 27.9-95.7 95.3-22.3 22.3-22.3 58.7 0 81 69.9 69.4 46.4 46 97.4 97l.1-.1c75.1 73.3 195.4 72.9 269.8-1.6 51-50.9 27.9-27.9 95.3-95.3 22.3-22.3 22.3-58.7 0-81zM140.4 363.8c-59.6-59.5-59.6-156 0-215.5 59.5-59.6 156-59.5 215.6 0 59.5 59.5 59.6 156 0 215.6-59.6 59.5-156 59.4-215.6-.1z"] }; +var faPhoenixFramework = { prefix: 'fab', iconName: 'phoenix-framework', icon: [640, 512, [], "f3dc", "M212.9 344.3c3.8-.1 22.8-1.4 25.6-2.2-2.4-2.6-43.6-1-68-49.6-4.3-8.6-7.5-17.6-6.4-27.6 2.9-25.5 32.9-30 52-18.5 36 21.6 63.3 91.3 113.7 97.5 37 4.5 84.6-17 108.2-45.4-.6-.1-.8-.2-1-.1-.4.1-.8.2-1.1.3-33.3 12.1-94.3 9.7-134.7-14.8-37.6-22.8-53.1-58.7-51.8-74.6 1.8-21.3 22.9-23.2 35.9-19.6 14.4 3.9 24.4 17.6 38.9 27.4 15.6 10.4 32.9 13.7 51.3 10.3 14.9-2.7 34.4-12.3 36.5-14.5-1.1-.1-1.8-.1-2.5-.2-6.2-.6-12.4-.8-18.5-1.7C279.8 194.5 262.1 47.4 138.5 37.9 94.2 34.5 39.1 46 2.2 72.9c-.8.6-1.5 1.2-2.2 1.8.1.2.1.3.2.5.8 0 1.6-.1 2.4-.2 6.3-1 12.5-.8 18.7.3 23.8 4.3 47.7 23.1 55.9 76.5 5.3 34.3-.7 50.8 8 86.1 19 77.1 91 107.6 127.7 106.4zM75.3 64.9c-.9-1-.9-1.2-1.3-2 12.1-2.6 24.2-4.1 36.6-4.8-1.1 14.7-22.2 21.3-35.3 6.8zm196.9 350.5c-42.8 1.2-92-26.7-123.5-61.4-4.6-5-16.8-20.2-18.6-23.4l.4-.4c6.6 4.1 25.7 18.6 54.8 27 24.2 7 48.1 6.3 71.6-3.3 22.7-9.3 41-.5 43.1 2.9-18.5 3.8-20.1 4.4-24 7.9-5.1 4.4-4.6 11.7 7 17.2 26.2 12.4 63-2.8 97.2 25.4 2.4 2 8.1 7.8 10.1 10.7-.1.2-.3.3-.4.5-4.8-1.5-16.4-7.5-40.2-9.3-24.7-2-46.3 5.3-77.5 6.2zm174.8-252c16.4-5.2 41.3-13.4 66.5-3.3 16.1 6.5 26.2 18.7 32.1 34.6 3.5 9.4 5.1 19.7 5.1 28.7-.2 0-.4 0-.6.1-.2-.4-.4-.9-.5-1.3-5-22-29.9-43.8-67.6-29.9-50.2 18.6-130.4 9.7-176.9-48-.7-.9-2.4-1.7-1.3-3.2.1-.2 2.1.6 3 1.3 18.1 13.4 38.3 21.9 60.3 26.2 30.5 6.1 54.6 2.9 79.9-5.2zm102.7 117.5c-32.4.2-33.8 50.1-103.6 64.4-18.2 3.7-38.7 4.6-44.9 4.2v-.4c2.8-1.5 14.7-2.6 29.7-16.6 7.9-7.3 15.3-15.1 22.8-22.9 19.5-20.2 41.4-42.2 81.9-39 23.1 1.8 29.3 8.2 36.1 12.7.3.2.4.5.7.9-.5 0-.7.1-.9 0-7-2.7-14.3-3.3-21.8-3.3zm-12.3-24.1c-.1.2-.1.4-.2.6-28.9-4.4-48-7.9-68.5 4-17 9.9-31.4 20.5-62 24.4-27.1 3.4-45.1 2.4-66.1-8-.3-.2-.6-.4-1-.6 0-.2.1-.3.1-.5 24.9 3.8 36.4 5.1 55.5-5.8 22.3-12.9 40.1-26.6 71.3-31 29.6-4.1 51.3 2.5 70.9 16.9zM268.6 97.3c-.6-.6-1.1-1.2-2.1-2.3 7.6 0 29.7-1.2 53.4 8.4 19.7 8 32.2 21 50.2 32.9 11.1 7.3 23.4 9.3 36.4 8.1 4.3-.4 8.5-1.2 12.8-1.7.4-.1.9 0 1.5.3-.6.4-1.2.9-1.8 1.2-8.1 4-16.7 6.3-25.6 7.1-26.1 2.6-50.3-3.7-73.4-15.4-19.3-9.9-36.4-22.9-51.4-38.6zM640 335.7c-3.5 3.1-22.7 11.6-42.7 5.3-12.3-3.9-19.5-14.9-31.6-24.1-10-7.6-20.9-7.9-28.1-8.4.6-.8.9-1.2 1.2-1.4 14.8-9.2 30.5-12.2 47.3-6.5 12.5 4.2 19.2 13.5 30.4 24.2 10.8 10.4 21 9.9 23.1 10.5.1-.1.2 0 .4.4zm-212.5 137c2.2 1.2 1.6 1.5 1.5 2-18.5-1.4-33.9-7.6-46.8-22.2-21.8-24.7-41.7-27.9-48.6-29.7.5-.2.8-.4 1.1-.4 13.1.1 26.1.7 38.9 3.9 25.3 6.4 35 25.4 41.6 35.3 3.2 4.8 7.3 8.3 12.3 11.1z"] }; +var faPhoenixSquadron = { prefix: 'fab', iconName: 'phoenix-squadron', icon: [513, 512, [], "f511", "M96.24 62.81C142.91 26.57 202.15 6.57 261.28 8.08c29.67-.38 59.29 5.38 87.17 15.37-24.2-4.64-49.18-6.35-73.6-2.45-43 5.35-83.26 27.23-112.16 59.35 5.69-.99 10.81-3.68 16.07-5.88 18.19-7.89 37.6-13.29 57.4-14.87 19.8-2.14 39.75-.43 59.45 1.93-14.46 2.79-29.2 4.58-43.11 9.61-34.53 11.11-65.46 33.26-86.55 62.82-13.84 19.77-23.7 42.99-24.74 67.33-.35 16.54 5.23 34.91 19.89 44.17 11.13 6.66 24.85 9.39 37.63 6.76 15.49-2.47 30.16-8.67 43.73-16.38 11.55-6.84 22.73-14.59 32.05-24.32 3.8-3.23 2.54-8.48 2.63-12.83-2.13-.34-4.4-1.11-6.32.3a203.975 203.975 0 0 1-35.93 15.42c-20.07 6.19-42.28 8.48-62.28.78 12.83 1.73 26.14.31 37.85-5.46 20.29-9.75 36.92-25.27 54.6-38.88 27.84-21.29 57.64-40.11 89.17-55.47 25.78-12.01 53.09-22.85 81.81-24.2-15.68 13.76-32.25 26.6-46.92 41.51-14.55 14.04-27.54 29.58-40.23 45.31-3.53 4.61-8.98 6.96-13.62 10.19-22.24 15.03-40.6 35.96-52.04 60.28-9.36 19.74-14.55 41.97-11.81 63.84 1.95 13.73 8.74 27.67 20.96 35.01 12.94 7.99 29.14 8.09 43.61 5.11 32.9-7.47 61.61-28.97 81.28-56 20.5-27.6 30.61-62.38 29.25-96.64-.52-7.52-1.58-15-1.67-22.55 8.02 19.54 14.87 39.83 16.7 61.01 2.01 14.32.75 28.84-1.62 43.02-1.92 11.02-5.69 21.58-7.81 32.53 20.36-22.73 34.17-51.24 39.46-81.31 5.72-35.37.58-72.36-14.25-104.95 20.84 32.12 32.43 69.79 35.81 107.8.5 12.77.5 25.58 0 38.34-2.91 34.26-12.97 67.95-29.76 98-26.2 47.48-68.2 85.89-117.54 108.32-78.52 36.34-175.2 31.41-248.72-14.72-38.84-23.78-71.06-58.32-91.68-98.96C10.72 337.43 2.04 305.5 0 273.13V241.7c3.94-69.97 40.99-136.32 96.24-178.89m222.65 80.57c5.51-.8 10.82-2.57 16.02-4.5 4.99-1.77 9.27-5.95 10.35-11.25-8.91 5-17.95 9.95-26.37 15.75z"] }; +var faPhp = { prefix: 'fab', iconName: 'php', icon: [640, 512, [], "f457", "M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z"] }; +var faPiedPiper = { prefix: 'fab', iconName: 'pied-piper', icon: [448, 512, [], "f2ae", "M32 419L0 479.2l.8-328C.8 85.3 54 32 120 32h327.2c-93 28.9-189.9 94.2-253.9 168.6C122.7 282 82.6 338 32 419M448 32S305.2 98.8 261.6 199.1c-23.2 53.6-28.9 118.1-71 158.6-28.9 27.8-69.8 38.2-105.3 56.3-23.2 12-66.4 40.5-84.9 66h328.4c66 0 119.3-53.3 119.3-119.2-.1 0-.1-328.8-.1-328.8z"] }; +var faPiedPiperAlt = { prefix: 'fab', iconName: 'pied-piper-alt', icon: [576, 512, [], "f1a8", "M242 187c6.3-11.8 13.2-17 25.9-21.8 27.3-10.3 40.2-30.5 58.9-51.1 11.9 8.4 12 24.6 31.6 23v21.8l6.3.3c37.4-14.4 74.7-30.2 106.6-54.6 48.3-36.8 52.9-50 81.3-100l2-2.6c-.6 14.1-6.3 27.3-12.4 39.9-30.5 63.8-78.7 100.3-146.8 116.7-12.4 2.9-26.4 3.2-37.6 8.9 1.4 9.8 13.2 18.1 13.2 23 0 3.4-5.5 7.2-7.5 8.6-11.2-12.9-16.1-19.3-22.7-22.1-7.6-3.5-63.9-6.4-98.8 10zm137.9 256.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9L244 246zm-12.6 31.8l24.1 61.2 21-13.8-31.3-50.9-13.8 3.5zM555.5 0l-.6 1.1-.3.9.6-.6.3-1.4zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46v27.3l11.8-3.4-2.9-23.8h-8.9zm76.1 2.9c0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3l2 12.4c9-1.5 58.4-6.6 58.4-14.1z"] }; +var faPiedPiperHat = { prefix: 'fab', iconName: 'pied-piper-hat', icon: [640, 512, [], "f4e5", "M640 24.9c-80.8 53.6-89.4 92.5-96.4 104.4-6.7 12.2-11.7 60.3-23.3 83.6-11.7 23.6-54.2 42.2-66.1 50-11.7 7.8-28.3 38.1-41.9 64.2-108.1-4.4-167.4 38.8-259.2 93.6 29.4-9.7 43.3-16.7 43.3-16.7 94.2-36 139.3-68.3 281.1-49.2 1.1 0 1.9.6 2.8.8 3.9 2.2 5.3 6.9 3.1 10.8l-53.9 95.8c-2.5 4.7-7.8 7.2-13.1 6.1-126.8-23.8-226.9 17.3-318.9 18.6C24.1 488 0 453.4 0 451.8c0-1.1.6-1.7 1.7-1.7 0 0 38.3 0 103.1-15.3C178.4 294.5 244 245.4 315.4 245.4c0 0 71.7 0 90.6 61.9 22.8-39.7 28.3-49.2 28.3-49.2 5.3-9.4 35-77.2 86.4-141.4 51.5-64 90.4-79.9 119.3-91.8z"] }; +var faPiedPiperPp = { prefix: 'fab', iconName: 'pied-piper-pp', icon: [448, 512, [], "f1a7", "M205.3 174.6c0 21.1-14.2 38.1-31.7 38.1-7.1 0-12.8-1.2-17.2-3.7v-68c4.4-2.7 10.1-4.2 17.2-4.2 17.5 0 31.7 16.9 31.7 37.8zm52.6 67c-7.1 0-12.8 1.5-17.2 4.2v68c4.4 2.5 10.1 3.7 17.2 3.7 17.4 0 31.7-16.9 31.7-37.8 0-21.1-14.3-38.1-31.7-38.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM185 255.1c41 0 74.2-35.6 74.2-79.6 0-44-33.2-79.6-74.2-79.6-12 0-24.1 3.2-34.6 8.8h-45.7V311l51.8-10.1v-50.6c8.6 3.1 18.1 4.8 28.5 4.8zm158.4 25.3c0-44-33.2-79.6-73.9-79.6-3.2 0-6.4.2-9.6.7-3.7 12.5-10.1 23.8-19.2 33.4-13.8 15-32.2 23.8-51.8 24.8V416l51.8-10.1v-50.6c8.6 3.2 18.2 4.7 28.7 4.7 40.8 0 74-35.6 74-79.6z"] }; +var faPinterest = { prefix: 'fab', iconName: 'pinterest', icon: [496, 512, [], "f0d2", "M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3.8-3.4 5-20.3 6.9-28.1.6-2.5.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z"] }; +var faPinterestP = { prefix: 'fab', iconName: 'pinterest-p', icon: [384, 512, [], "f231", "M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z"] }; +var faPinterestSquare = { prefix: 'fab', iconName: 'pinterest-square', icon: [448, 512, [], "f0d3", "M448 80v352c0 26.5-21.5 48-48 48H154.4c9.8-16.4 22.4-40 27.4-59.3 3-11.5 15.3-58.4 15.3-58.4 8 15.3 31.4 28.2 56.3 28.2 74.1 0 127.4-68.1 127.4-152.7 0-81.1-66.2-141.8-151.4-141.8-106 0-162.2 71.1-162.2 148.6 0 36 19.2 80.8 49.8 95.1 4.7 2.2 7.1 1.2 8.2-3.3.8-3.4 5-20.1 6.8-27.8.6-2.5.3-4.6-1.7-7-10.1-12.3-18.3-34.9-18.3-56 0-54.2 41-106.6 110.9-106.6 60.3 0 102.6 41.1 102.6 99.9 0 66.4-33.5 112.4-77.2 112.4-24.1 0-42.1-19.9-36.4-44.4 6.9-29.2 20.3-60.7 20.3-81.8 0-53-75.5-45.7-75.5 25 0 21.7 7.3 36.5 7.3 36.5-31.4 132.8-36.1 134.5-29.6 192.6l2.2.8H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z"] }; +var faPlaystation = { prefix: 'fab', iconName: 'playstation', icon: [576, 512, [], "f3df", "M570.9 372.3c-11.3 14.2-38.8 24.3-38.8 24.3L327 470.2v-54.3l150.9-53.8c17.1-6.1 19.8-14.8 5.8-19.4-13.9-4.6-39.1-3.3-56.2 2.9L327 381.1v-56.4c23.2-7.8 47.1-13.6 75.7-16.8 40.9-4.5 90.9.6 130.2 15.5 44.2 14 49.2 34.7 38 48.9zm-224.4-92.5v-139c0-16.3-3-31.3-18.3-35.6-11.7-3.8-19 7.1-19 23.4v347.9l-93.8-29.8V32c39.9 7.4 98 24.9 129.2 35.4C424.1 94.7 451 128.7 451 205.2c0 74.5-46 102.8-104.5 74.6zM43.2 410.2c-45.4-12.8-53-39.5-32.3-54.8 19.1-14.2 51.7-24.9 51.7-24.9l134.5-47.8v54.5l-96.8 34.6c-17.1 6.1-19.7 14.8-5.8 19.4 13.9 4.6 39.1 3.3 56.2-2.9l46.4-16.9v48.8c-51.6 9.3-101.4 7.3-153.9-10z"] }; +var faProductHunt = { prefix: 'fab', iconName: 'product-hunt', icon: [512, 512, [], "f288", "M326.3 218.8c0 20.5-16.7 37.2-37.2 37.2h-70.3v-74.4h70.3c20.5 0 37.2 16.7 37.2 37.2zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-128.1-37.2c0-47.9-38.9-86.8-86.8-86.8H169.2v248h49.6v-74.4h70.3c47.9 0 86.8-38.9 86.8-86.8z"] }; +var faPushed = { prefix: 'fab', iconName: 'pushed', icon: [432, 512, [], "f3e1", "M407 111.9l-98.5-9 14-33.4c10.4-23.5-10.8-40.4-28.7-37L22.5 76.9c-15.1 2.7-26 18.3-21.4 36.6l105.1 348.3c6.5 21.3 36.7 24.2 47.7 7l35.3-80.8 235.2-231.3c16.4-16.8 4.3-42.9-17.4-44.8zM297.6 53.6c5.1-.7 7.5 2.5 5.2 7.4L286 100.9 108.6 84.6l189-31zM22.7 107.9c-3.1-5.1 1-10 6.1-9.1l248.7 22.7-96.9 230.7L22.7 107.9zM136 456.4c-2.6 4-7.9 3.1-9.4-1.2L43.5 179.7l127.7 197.6c-7 15-35.2 79.1-35.2 79.1zm272.8-314.5L210.1 337.3l89.7-213.7 106.4 9.7c4 1.1 5.7 5.3 2.6 8.6z"] }; +var faPython = { prefix: 'fab', iconName: 'python', icon: [448, 512, [], "f3e2", "M167.8 36.4c-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1zm-6.7 28.4c11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4zm185.2 81.4v47.5c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6-7.7-30.9-22.3-54.2-53.4-54.2h-40.1zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3z"] }; +var faQq = { prefix: 'fab', iconName: 'qq', icon: [448, 512, [], "f1d6", "M433.754 420.445c-11.526 1.393-44.86-52.741-44.86-52.741 0 31.345-16.136 72.247-51.051 101.786 16.842 5.192 54.843 19.167 45.803 34.421-7.316 12.343-125.51 7.881-159.632 4.037-34.122 3.844-152.316 8.306-159.632-4.037-9.045-15.25 28.918-29.214 45.783-34.415-34.92-29.539-51.059-70.445-51.059-101.792 0 0-33.334 54.134-44.859 52.741-5.37-.65-12.424-29.644 9.347-99.704 10.261-33.024 21.995-60.478 40.144-105.779C60.683 98.063 108.982.006 224 0c113.737.006 163.156 96.133 160.264 214.963 18.118 45.223 29.912 72.85 40.144 105.778 21.768 70.06 14.716 99.053 9.346 99.704z"] }; +var faQuinscape = { prefix: 'fab', iconName: 'quinscape', icon: [489, 512, [], "f459", "M301.9 474.6h-1.3c-87.3 0-158.1-70.8-158.1-158.1s70.8-158.1 158.1-158.1c94.9 0 168.2 83.1 157 176.6 4 5.1 8.2 9.6 11.2 15.3 13.4-30.3 20.3-62.4 20.3-97.7C489.1 117.5 379.6 8 244.5 8 109.5 8 0 117.5 0 252.6s109.5 244.6 244.5 244.6c24.8 0 47.8-3.2 70.4-10.1-5.2-3.5-9-8.2-13.4-12.6l.4.1zm-21.2-69.8c0-54.8 44.4-99.2 99.2-99.2 54.8 0 99.2 44.4 99.2 99.2 0 54.8-44.4 99.2-99.2 99.2-54.8 0-99.2-44.4-99.2-99.2"] }; +var faQuora = { prefix: 'fab', iconName: 'quora', icon: [448, 512, [], "f2c4", "M440.5 386.7h-29.3c-1.5 13.5-10.5 30.8-33 30.8-20.5 0-35.3-14.2-49.5-35.8 44.2-34.2 74.7-87.5 74.7-153C403.5 111.2 306.8 32 205 32 105.3 32 7.3 111.7 7.3 228.7c0 134.1 131.3 221.6 249 189C276 451.3 302 480 351.5 480c81.8 0 90.8-75.3 89-93.3zM297 329.2C277.5 300 253.3 277 205.5 277c-30.5 0-54.3 10-69 22.8l12.2 24.3c6.2-3 13-4 19.8-4 35.5 0 53.7 30.8 69.2 61.3-10 3-20.7 4.2-32.7 4.2-75 0-107.5-53-107.5-156.7C97.5 124.5 130 71 205 71c76.2 0 108.7 53.5 108.7 157.7.1 41.8-5.4 75.6-16.7 100.5z"] }; +var faRProject = { prefix: 'fab', iconName: 'r-project', icon: [581, 512, [], "f4f7", "M581 226.6C581 119.1 450.9 32 290.5 32S0 119.1 0 226.6C0 322.4 103.3 402 239.4 418.1V480h99.1v-61.5c24.3-2.7 47.6-7.4 69.4-13.9L448 480h112l-67.4-113.7c54.5-35.4 88.4-84.9 88.4-139.7zm-466.8 14.5c0-73.5 98.9-133 220.8-133s211.9 40.7 211.9 133c0 50.1-26.5 85-70.3 106.4-2.4-1.6-4.7-2.9-6.4-3.7-10.2-5.2-27.8-10.5-27.8-10.5s86.6-6.4 86.6-92.7-90.6-87.9-90.6-87.9h-199V361c-74.1-21.5-125.2-67.1-125.2-119.9zm225.1 38.3v-55.6c57.8 0 87.8-6.8 87.8 27.3 0 36.5-38.2 28.3-87.8 28.3zm-.9 72.5H365c10.8 0 18.9 11.7 24 19.2-16.1 1.9-33 2.8-50.6 2.9v-22.1z"] }; +var faRavelry = { prefix: 'fab', iconName: 'ravelry', icon: [512, 512, [], "f2d9", "M407.4 61.5C331.6 22.1 257.8 31 182.9 66c-11.3 5.2-15.5 10.6-19.9 19-10.3 19.2-16.2 37.4-19.9 52.7-21.2 25.6-36.4 56.1-43.3 89.9-10.6 18-20.9 41.4-23.1 71.4 0 0-.7 7.6-.5 7.9-35.3-4.6-76.2-27-76.2-27 9.1 14.5 61.3 32.3 76.3 37.9 0 0 1.7 98 64.5 131.2-11.3-17.2-13.3-20.2-13.3-20.2S94.8 369 100.4 324.7c.7 0 1.5.2 2.2.2 23.9 87.4 103.2 151.4 196.9 151.4 6.2 0 12.1-.2 18-.7 14 1.5 27.6.5 40.1-3.9 6.9-2.2 13.8-6.4 20.2-10.8 70.2-39.1 100.9-82 123.1-147.7 5.4-16 8.1-35.5 9.8-52.2 8.7-82.3-30.6-161.6-103.3-199.5zM138.8 163.2s-1.2 12.3-.7 19.7c-3.4 2.5-10.1 8.1-18.2 16.7 5.2-12.8 11.3-25.1 18.9-36.4zm-31.2 121.9c4.4-17.2 13.3-39.1 29.8-55.1 0 0 1.7 48 15.8 90.1l-41.4-6.9c-2.2-9.2-3.5-18.5-4.2-28.1zm7.9 42.8c14.8 3.2 34 7.6 43.1 9.1 27.3 76.8 108.3 124.3 108.3 124.3 1 .5 1.7.7 2.7 1-73.1-11.6-132.7-64.7-154.1-134.4zM386 444.1c-14.5 4.7-36.2 8.4-64.7 3.7 0 0-91.1-23.1-127.5-107.8 38.2.7 52.4-.2 78-3.9 39.4-5.7 79-16.2 115-33 11.8-5.4 11.1-19.4 9.6-29.8-2-12.8-11.1-12.1-21.4-4.7 0 0-82 58.6-189.8 53.7-18.7-32-26.8-110.8-26.8-110.8 41.4-35.2 83.2-59.6 168.4-52.4.2-6.4 3-27.1-20.4-28.1 0 0-93.5-11.1-146 33.5 2.5-16.5 5.9-29.3 11.1-39.4 34.2-30.8 79-49.5 128.3-49.5 106.4 0 193 87.1 193 194.5-.2 76-43.8 142-106.8 174z"] }; +var faReact = { prefix: 'fab', iconName: 'react', icon: [512, 512, [], "f41b", "M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zm-130 189.1c4.6 8.8 9.3 17.5 14.3 26.1 5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5zm0-50.6c-6.3-14.9-11.6-29.5-16-43.6 14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26zm11.4 25.3c6.6-13.8 13.8-27.3 21.4-40.6 7.6-13.3 15.8-26.2 24.4-38.9 15-1.1 30.3-1.7 45.9-1.7 15.6 0 31 .6 45.9 1.7 8.5 12.6 16.6 25.5 24.3 38.7 7.7 13.2 14.9 26.7 21.7 40.4-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6-15.7 0-30.9-.5-45.6-1.4-8.7-12.7-16.9-25.7-24.6-39-7.7-13.3-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zM256 210.2c25.3 0 45.8 20.5 45.8 45.8 0 25.3-20.5 45.8-45.8 45.8-25.3 0-45.8-20.5-45.8-45.8 0-25.3 20.5-45.8 45.8-45.8"] }; +var faReadme = { prefix: 'fab', iconName: 'readme', icon: [576, 512, [], "f4d5", "M528.3 46.5H388.5c-48.1 0-89.9 33.3-100.4 80.3-10.6-47-52.3-80.3-100.4-80.3H48c-26.5 0-48 21.5-48 48v245.8c0 26.5 21.5 48 48 48h89.7c102.2 0 132.7 24.4 147.3 75 .7 2.8 5.2 2.8 6 0 14.7-50.6 45.2-75 147.3-75H528c26.5 0 48-21.5 48-48V94.6c0-26.4-21.3-47.9-47.7-48.1zM242 311.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5V289c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V251zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm259.3 121.7c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5V228c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.8c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V190z"] }; +var faRebel = { prefix: 'fab', iconName: 'rebel', icon: [512, 512, [], "f1d0", "M256.5 504C117.2 504 9 387.8 13.2 249.9 16 170.7 56.4 97.7 129.7 49.5c.3 0 1.9-.6 1.1.8-5.8 5.5-111.3 129.8-14.1 226.4 49.8 49.5 90 2.5 90 2.5 38.5-50.1-.6-125.9-.6-125.9-10-24.9-45.7-40.1-45.7-40.1l28.8-31.8c24.4 10.5 43.2 38.7 43.2 38.7.8-29.6-21.9-61.4-21.9-61.4L255.1 8l44.3 50.1c-20.5 28.8-21.9 62.6-21.9 62.6 13.8-23 43.5-39.3 43.5-39.3l28.5 31.8c-27.4 8.9-45.4 39.9-45.4 39.9-15.8 28.5-27.1 89.4.6 127.3 32.4 44.6 87.7-2.8 87.7-2.8 102.7-91.9-10.5-225-10.5-225-6.1-5.5.8-2.8.8-2.8 50.1 36.5 114.6 84.4 116.2 204.8C500.9 400.2 399 504 256.5 504z"] }; +var faRedRiver = { prefix: 'fab', iconName: 'red-river', icon: [448, 512, [], "f3e3", "M353.2 32H94.8C42.4 32 0 74.4 0 126.8v258.4C0 437.6 42.4 480 94.8 480h258.4c52.4 0 94.8-42.4 94.8-94.8V126.8c0-52.4-42.4-94.8-94.8-94.8zM144.9 200.9v56.3c0 27-21.9 48.9-48.9 48.9V151.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9h-56.3c-12.3-.6-24.6 11.6-24 24zm176.3 72h-56.3c-12.3-.6-24.6 11.6-24 24v56.3c0 27-21.9 48.9-48.9 48.9V247.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9z"] }; +var faReddit = { prefix: 'fab', iconName: 'reddit', icon: [512, 512, [], "f1a1", "M201.5 305.5c-13.8 0-24.9-11.1-24.9-24.6 0-13.8 11.1-24.9 24.9-24.9 13.6 0 24.6 11.1 24.6 24.9 0 13.6-11.1 24.6-24.6 24.6zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-132.3-41.2c-9.4 0-17.7 3.9-23.8 10-22.4-15.5-52.6-25.5-86.1-26.6l17.4-78.3 55.4 12.5c0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.3 24.9-24.9s-11.1-24.9-24.9-24.9c-9.7 0-18 5.8-22.1 13.8l-61.2-13.6c-3-.8-6.1 1.4-6.9 4.4l-19.1 86.4c-33.2 1.4-63.1 11.3-85.5 26.8-6.1-6.4-14.7-10.2-24.1-10.2-34.9 0-46.3 46.9-14.4 62.8-1.1 5-1.7 10.2-1.7 15.5 0 52.6 59.2 95.2 132 95.2 73.1 0 132.3-42.6 132.3-95.2 0-5.3-.6-10.8-1.9-15.8 31.3-16 19.8-62.5-14.9-62.5zM302.8 331c-18.2 18.2-76.1 17.9-93.6 0-2.2-2.2-6.1-2.2-8.3 0-2.5 2.5-2.5 6.4 0 8.6 22.8 22.8 87.3 22.8 110.2 0 2.5-2.2 2.5-6.1 0-8.6-2.2-2.2-6.1-2.2-8.3 0zm7.7-75c-13.6 0-24.6 11.1-24.6 24.9 0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.1 24.9-24.6 0-13.8-11-24.9-24.9-24.9z"] }; +var faRedditAlien = { prefix: 'fab', iconName: 'reddit-alien', icon: [512, 512, [], "f281", "M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2.1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z"] }; +var faRedditSquare = { prefix: 'fab', iconName: 'reddit-square', icon: [448, 512, [], "f1a2", "M283.2 345.5c2.7 2.7 2.7 6.8 0 9.2-24.5 24.5-93.8 24.6-118.4 0-2.7-2.4-2.7-6.5 0-9.2 2.4-2.4 6.5-2.4 8.9 0 18.7 19.2 81 19.6 100.5 0 2.4-2.3 6.6-2.3 9 0zm-91.3-53.8c0-14.9-11.9-26.8-26.5-26.8-14.9 0-26.8 11.9-26.8 26.8 0 14.6 11.9 26.5 26.8 26.5 14.6 0 26.5-11.9 26.5-26.5zm90.7-26.8c-14.6 0-26.5 11.9-26.5 26.8 0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-11.9 26.8-26.5 0-14.9-11.9-26.8-26.8-26.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-99.7 140.6c-10.1 0-19 4.2-25.6 10.7-24.1-16.7-56.5-27.4-92.5-28.6l18.7-84.2 59.5 13.4c0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-12.2 26.8-26.8 0-14.6-11.9-26.8-26.8-26.8-10.4 0-19.3 6.2-23.8 14.9l-65.7-14.6c-3.3-.9-6.5 1.5-7.4 4.8l-20.5 92.8c-35.7 1.5-67.8 12.2-91.9 28.9-6.5-6.8-15.8-11-25.9-11-37.5 0-49.8 50.4-15.5 67.5-1.2 5.4-1.8 11-1.8 16.7 0 56.5 63.7 102.3 141.9 102.3 78.5 0 142.2-45.8 142.2-102.3 0-5.7-.6-11.6-2.1-17 33.6-17.2 21.2-67.2-16.1-67.2z"] }; +var faRendact = { prefix: 'fab', iconName: 'rendact', icon: [496, 512, [], "f3e4", "M248 8C111 8 0 119 0 256s111 248 248 248c18.6 0 36.7-2.1 54.1-5.9-5.6-7.4-10.8-14.4-15.9-21.3-12.4 2.1-25.2 3.3-38.3 3.3C124.3 480 24 379.7 24 256S124.3 32 248 32s224 100.3 224 224c0 71-33 134.2-84.5 175.3-25.9 18.8-39.1 21.4-83.5-44.2-78.7-112.9-48-71.1-73.7-108.3 72.8 8.9 228.5-72 168.6-168.6C314-26.8 15 93.8 59.7 226.4c3.2 9.8 14.4 38.6 45.6 38.6 2 0 2.6-.6 2-1.7-4.4-8.7-20.1-9.8-20.1-37.4 0-40.5 40.5-89.6 100.3-120 66.1-32.3 131.9-30.2 158.2 5.4 27.2 38.3-20.9 119.2-120.4 136.9 7.5-9.4 57-75.2 62.8-84 22.7-34.6 23.6-49 14-59.2-15.5-16.9-29.5-10.3-50.7-11.7-10.8-.9-113.7 181.2-136.4 216.9-5.9 9-21.2 34.1-21.2 50.9 0 21.3 2.8 51.4 20.6 51.4 10.6 0 8-18.7 8-26.6 0-12.9 27.4-49.4 74.8-104.6 20.4 36.1 57.7 114.3 130.2 209.7 98-33.1 168.5-125.8 168.5-235C496 119 385 8 248 8z"] }; +var faRenren = { prefix: 'fab', iconName: 'renren', icon: [512, 512, [], "f18b", "M214 169.1c0 110.4-61 205.4-147.6 247.4C30 373.2 8 317.7 8 256.6 8 133.9 97.1 32.2 214 12.5v156.6zM255 504c-42.9 0-83.3-11-118.5-30.4C193.7 437.5 239.9 382.9 255 319c15.5 63.9 61.7 118.5 118.8 154.7C338.7 493 298.3 504 255 504zm190.6-87.5C359 374.5 298 279.6 298 169.1V12.5c116.9 19.7 206 121.4 206 244.1 0 61.1-22 116.6-58.4 159.9z"] }; +var faReplyd = { prefix: 'fab', iconName: 'replyd', icon: [448, 512, [], "f3e6", "M320 480H128C57.6 480 0 422.4 0 352V160C0 89.6 57.6 32 128 32h192c70.4 0 128 57.6 128 128v192c0 70.4-57.6 128-128 128zM193.4 273.2c-6.1-2-11.6-3.1-16.4-3.1-7.2 0-13.5 1.9-18.9 5.6-5.4 3.7-9.6 9-12.8 15.8h-1.1l-4.2-18.3h-28v138.9h36.1v-89.7c1.5-5.4 4.4-9.8 8.7-13.2 4.3-3.4 9.8-5.1 16.2-5.1 4.6 0 9.8 1 15.6 3.1l4.8-34zm115.2 103.4c-3.2 2.4-7.7 4.8-13.7 7.1-6 2.3-12.8 3.5-20.4 3.5-12.2 0-21.1-3-26.5-8.9-5.5-5.9-8.5-14.7-9-26.4h83.3c.9-4.8 1.6-9.4 2.1-13.9.5-4.4.7-8.6.7-12.5 0-10.7-1.6-19.7-4.7-26.9-3.2-7.2-7.3-13-12.5-17.2-5.2-4.3-11.1-7.3-17.8-9.2-6.7-1.8-13.5-2.8-20.6-2.8-21.1 0-37.5 6.1-49.2 18.3s-17.5 30.5-17.5 55c0 22.8 5.2 40.7 15.6 53.7 10.4 13.1 26.8 19.6 49.2 19.6 10.7 0 20.9-1.5 30.4-4.6 9.5-3.1 17.1-6.8 22.6-11.2l-12-23.6zm-21.8-70.3c3.8 5.4 5.3 13.1 4.6 23.1h-51.7c.9-9.4 3.7-17 8.2-22.6 4.5-5.6 11.5-8.5 21-8.5 8.2-.1 14.1 2.6 17.9 8zm79.9 2.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4s2 11.7 6.1 15.6zm0 100.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4 0 6.6 2 11.7 6.1 15.6z"] }; +var faResearchgate = { prefix: 'fab', iconName: 'researchgate', icon: [448, 512, [], "f4f8", "M0 32v448h448V32H0zm262.2 334.4c-6.6 3-33.2 6-50-14.2-9.2-10.6-25.3-33.3-42.2-63.6-8.9 0-14.7 0-21.4-.6v46.4c0 23.5 6 21.2 25.8 23.9v8.1c-6.9-.3-23.1-.8-35.6-.8-13.1 0-26.1.6-33.6.8v-8.1c15.5-2.9 22-1.3 22-23.9V225c0-22.6-6.4-21-22-23.9V193c25.8 1 53.1-.6 70.9-.6 31.7 0 55.9 14.4 55.9 45.6 0 21.1-16.7 42.2-39.2 47.5 13.6 24.2 30 45.6 42.2 58.9 7.2 7.8 17.2 14.7 27.2 14.7v7.3zm22.9-135c-23.3 0-32.2-15.7-32.2-32.2V167c0-12.2 8.8-30.4 34-30.4s30.4 17.9 30.4 17.9l-10.7 7.2s-5.5-12.5-19.7-12.5c-7.9 0-19.7 7.3-19.7 19.7v26.8c0 13.4 6.6 23.3 17.9 23.3 14.1 0 21.5-10.9 21.5-26.8h-17.9v-10.7h30.4c0 20.5 4.7 49.9-34 49.9zm-116.5 44.7c-9.4 0-13.6-.3-20-.8v-69.7c6.4-.6 15-.6 22.5-.6 23.3 0 37.2 12.2 37.2 34.5 0 21.9-15 36.6-39.7 36.6z"] }; +var faResolving = { prefix: 'fab', iconName: 'resolving', icon: [496, 512, [], "f3e7", "M281.2 278.2c46-13.3 49.6-23.5 44-43.4L314 195.5c-6.1-20.9-18.4-28.1-71.1-12.8L54.7 236.8l28.6 98.6 197.9-57.2zM248.5 8C131.4 8 33.2 88.7 7.2 197.5l221.9-63.9c34.8-10.2 54.2-11.7 79.3-8.2 36.3 6.1 52.7 25 61.4 55.2l10.7 37.8c8.2 28.1 1 50.6-23.5 73.6-19.4 17.4-31.2 24.5-61.4 33.2L203 351.8l220.4 27.1 9.7 34.2-48.1 13.3-286.8-37.3 23 80.2c36.8 22 80.3 34.7 126.3 34.7 137 0 248.5-111.4 248.5-248.3C497 119.4 385.5 8 248.5 8zM38.3 388.6L0 256.8c0 48.5 14.3 93.4 38.3 131.8z"] }; +var faRocketchat = { prefix: 'fab', iconName: 'rocketchat', icon: [448, 512, [], "f3e8", "M448 256.2c0-87.2-99.6-153.3-219.8-153.3-18.8 0-37.3 1.6-55.3 4.8-11.1-10.5-24.2-20-38-27.4C61.2 44.2 0 79.4 0 79.4s56.9 47.1 47.6 88.3c-52.3 52.3-52.5 124.1 0 176.6C56.9 385.6 0 432.6 0 432.6s61.2 35.2 134.9-.8c13.8-7.5 26.9-16.9 38-27.4 18 3.2 36.5 4.8 55.3 4.8 120.3-.1 219.8-65.8 219.8-153zm-219.7 124c-23.7 0-46.3-2.8-67.3-7.8-21.3 25.8-68.1 61.7-113.6 50.1 14.8-16 36.7-43.1 32-87.6-27.3-21.4-43.6-48.7-43.6-78.5 0-68.4 86.2-123.9 192.5-123.9S420.8 188 420.8 256.4c0 68.3-86.2 123.8-192.5 123.8zm25.6-123.9c0 14.2-11.5 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.5-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm88.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm-177.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.2 0 25.6 11.6 25.6 25.8z"] }; +var faRockrms = { prefix: 'fab', iconName: 'rockrms', icon: [496, 512, [], "f3e9", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm157.4 419.5h-90l-112-131.3c-17.9-20.4-3.9-56.1 26.6-56.1h75.3l-84.6-99.3-84.3 98.9h-90L193.5 67.2c14.4-18.4 41.3-17.3 54.5 0l157.7 185.1c19 22.8 2 57.2-27.6 56.1-.6 0-74.2.2-74.2.2l101.5 118.9z"] }; +var faSafari = { prefix: 'fab', iconName: 'safari', icon: [512, 512, [], "f267", "M236.9 256.8c0-9.1 6.6-17.7 16.3-17.7 8.9 0 17.4 6.4 17.4 16.1 0 9.1-6.4 17.7-16.1 17.7-9 0-17.6-6.7-17.6-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-26.6 0c0-122.3-99.1-221.4-221.4-221.4S34.6 133.7 34.6 256 133.7 477.4 256 477.4 477.4 378.3 477.4 256zm-72.5 96.6c0 3.6 13 10.2 16.3 12.2-27.4 41.5-69.8 71.4-117.9 83.3l-4.4-18.5c-.3-2.5-1.9-2.8-4.2-2.8-1.9 0-3 2.8-2.8 4.2l4.4 18.8c-13.3 2.8-26.8 4.2-40.4 4.2-36.3 0-72-10.2-103-29.1 1.7-2.8 12.2-18 12.2-20.2 0-1.9-1.7-3.6-3.6-3.6-3.9 0-12.2 16.6-14.7 19.9-41.8-27.7-72-70.6-83.6-119.6l19.1-4.2c2.2-.6 2.8-2.2 2.8-4.2 0-1.9-2.8-3-4.4-2.8L62 294.5c-2.5-12.7-3.9-25.5-3.9-38.5 0-37.1 10.5-73.6 30.2-104.9 2.8 1.7 16.1 10.8 18.3 10.8 1.9 0 3.6-1.4 3.6-3.3 0-3.9-14.7-11.3-18-13.6 28.2-41.2 71.1-70.9 119.8-81.9l4.2 18.5c.6 2.2 2.2 2.8 4.2 2.8s3-2.8 2.8-4.4L219 61.7c12.2-2.2 24.6-3.6 37.1-3.6 37.1 0 73.3 10.5 104.9 30.2-1.9 2.8-10.8 15.8-10.8 18 0 1.9 1.4 3.6 3.3 3.6 3.9 0 11.3-14.4 13.3-17.7 41 27.7 70.3 70 81.7 118.2l-15.5 3.3c-2.5.6-2.8 2.2-2.8 4.4 0 1.9 2.8 3 4.2 2.8l15.8-3.6c2.5 12.7 3.9 25.7 3.9 38.7 0 36.3-10 72-28.8 102.7-2.8-1.4-14.4-9.7-16.6-9.7-2.1 0-3.8 1.7-3.8 3.6zm-33.2-242.2c-13 12.2-134.2 123.7-137.6 129.5l-96.6 160.5c12.7-11.9 134.2-124 137.3-129.3l96.9-160.7z"] }; +var faSass = { prefix: 'fab', iconName: 'sass', icon: [640, 512, [], "f41e", "M551.1 291.9c-22.4.1-41.8 5.5-58 13.5-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-3.8 11.1-5.3 19.1-2.3 11.7-25.8 53.5-39.1 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-2.7 11.4-5.3 19.1-2.6 7.7-33.9 77.3-42.1 95.4-4.2 9.2-7.8 16.6-10.4 21.6s-.2.3-.4.9c-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4.3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2-.8 0-1.4 2-1.4 2s10.1-42.4-19.4-42.4c-18.4 0-44 20.2-56.6 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.8-38.2-101.9-65.2-99.1-116.5 1-18.7 7.5-67.8 127.1-127.4 98-48.8 176.4-35.4 189.9-5.6 19.4 42.5-41.9 121.6-143.7 133-38.8 4.3-59.2-10.7-64.3-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.8 28.9 18.7 6.1 64.2 9.5 119.2-11.8C367 196.5 415.1 130.2 401 74.7 386.6 18.3 293.1-.2 204.6 31.2 151.9 49.9 94.9 79.3 53.9 117.6 5.2 163.2-2.6 202.9.6 219.5c11.4 58.9 92.6 97.3 125.1 125.7-1.6.9-3.1 1.7-4.5 2.5-16.3 8.1-78.2 40.5-93.7 74.7-17.5 38.8 2.9 66.6 16.3 70.4 41.8 11.6 84.6-9.3 107.6-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.3-4.9 16.4-9.4 23.5-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.5 5 15.4 5 13.8 0 20-11.4 26.9-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.4 0 18.8-12.1 23-18.3v.1s.2-.4.7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.6-46 16.2-31.8 31.7-71.5 31.7-71.5s1.4 9.7 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2s0 .1.1.2c-3 4-6.4 8.3-9.9 12.5-12.8 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.7 2.5 11.5-.8 19.6-3.6 23.5-5.4 6.2-2.2 13.4-5.7 20.2-10.6 12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5 19.8-28.9 35.1-60.6 35.1-60.6s1.4 9.7 6.2 25.8c2.4 8.1 7.1 17 11.4 25.7-18.6 15.1-30.1 32.6-34.1 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5 6.5-2.2 14.3-5.7 21.6-11.1 12.5-9.2 24.6-22.1 23.8-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.1-10.2 62.1-7.2 55.7 6.5 66.6 41.3 64.5 55.8-2.1 14.6-13.8 22.6-17.7 25-3.9 2.4-5.1 3.3-4.8 5.1.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.2-11.8 30.3-38.7 1.6-34-31.1-71.4-89-71.1zM121.8 436.6c-18.4 20.1-44.2 27.7-55.3 21.3C54.6 451 59.3 421.4 82 400c13.8-13 31.6-25 43.4-32.4 2.7-1.6 6.6-4 11.4-6.9.8-.5 1.2-.7 1.2-.7.9-.6 1.9-1.1 2.9-1.7 8.3 30.4.3 57.2-19.1 78.3zm134.4-91.4c-6.4 15.7-19.9 55.7-28.1 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.1-11.3 21.2-14.9 23.8-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.9-13.9 0 .5.1 1 .1 1.6-.1 17.9-17.3 30-25.1 34.8zm85.6-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.6-15.3 19-24.5 1.2 3.8 1.9 7.4 1.9 10.8-.1 22.5-16.2 30.9-25.9 34.4z"] }; +var faSchlix = { prefix: 'fab', iconName: 'schlix', icon: [448, 512, [], "f3ea", "M350.5 157.7l-54.2-46.1 73.4-39 78.3 44.2-97.5 40.9zM192 122.1l45.7-28.2 34.7 34.6-55.4 29-25-35.4zm-65.1 6.6l31.9-22.1L176 135l-36.7 22.5-12.4-28.8zm-23.3 88.2l-8.8-34.8 29.6-18.3 13.1 35.3-33.9 17.8zm-21.2-83.7l23.9-18.1 8.9 24-26.7 18.3-6.1-24.2zM59 206.5l-3.6-28.4 22.3-15.5 6.1 28.7L59 206.5zm-30.6 16.6l20.8-12.8 3.3 33.4-22.9 12-1.2-32.6zM1.4 268l19.2-10.2.4 38.2-21 8.8L1.4 268zm59.1 59.3l-28.3 8.3-1.6-46.8 25.1-10.7 4.8 49.2zM99 263.2l-31.1 13-5.2-40.8L90.1 221l8.9 42.2zM123.2 377l-41.6 5.9-8.1-63.5 35.2-10.8 14.5 68.4zm28.5-139.9l21.2 57.1-46.2 13.6-13.7-54.1 38.7-16.6zm85.7 230.5l-70.9-3.3-24.3-95.8 55.2-8.6 40 107.7zm-84.9-279.7l42.2-22.4 28 45.9-50.8 21.3-19.4-44.8zm41 94.9l61.3-18.7 52.8 86.6-79.8 11.3-34.3-79.2zm51.4-85.6l67.3-28.8 65.5 65.4-88.6 26.2-44.2-62.8z"] }; +var faScribd = { prefix: 'fab', iconName: 'scribd', icon: [384, 512, [], "f28a", "M42.3 252.7c-16.1-19-24.7-45.9-24.8-79.9 0-100.4 75.2-153.1 167.2-153.1 98.6-1.6 156.8 49 184.3 70.6l-50.5 72.1-37.3-24.6 26.9-38.6c-36.5-24-79.4-36.5-123-35.8-50.7-.8-111.7 27.2-111.7 76.2 0 18.7 11.2 20.7 28.6 15.6 23.3-5.3 41.9.6 55.8 14 26.4 24.3 23.2 67.6-.7 91.9-29.2 29.5-85.2 27.3-114.8-8.4zm317.7 5.9c-15.5-18.8-38.9-29.4-63.2-28.6-38.1-2-71.1 28-70.5 67.2-.7 16.8 6 33 18.4 44.3 14.1 13.9 33 19.7 56.3 14.4 17.4-5.1 28.6-3.1 28.6 15.6 0 4.3-.5 8.5-1.4 12.7-16.7 40.9-59.5 64.4-121.4 64.4-51.9.2-102.4-16.4-144.1-47.3l33.7-39.4-35.6-27.4L0 406.3l15.4 13.8c52.5 46.8 120.4 72.5 190.7 72.2 51.4 0 94.4-10.5 133.6-44.1 57.1-51.4 54.2-149.2 20.3-189.6z"] }; +var faSearchengin = { prefix: 'fab', iconName: 'searchengin', icon: [460, 512, [], "f3eb", "M220.6 130.3l-67.2 28.2V43.2L98.7 233.5l54.7-24.2v130.3l67.2-209.3zm-83.2-96.7l-1.3 4.7-15.2 52.9C80.6 106.7 52 145.8 52 191.5c0 52.3 34.3 95.9 83.4 105.5v53.6C57.5 340.1 0 272.4 0 191.6c0-80.5 59.8-147.2 137.4-158zm311.4 447.2c-11.2 11.2-23.1 12.3-28.6 10.5-5.4-1.8-27.1-19.9-60.4-44.4-33.3-24.6-33.6-35.7-43-56.7-9.4-20.9-30.4-42.6-57.5-52.4l-9.7-14.7c-24.7 16.9-53 26.9-81.3 28.7l2.1-6.6 15.9-49.5c46.5-11.9 80.9-54 80.9-104.2 0-54.5-38.4-102.1-96-107.1V32.3C254.4 37.4 320 106.8 320 191.6c0 33.6-11.2 64.7-29 90.4l14.6 9.6c9.8 27.1 31.5 48 52.4 57.4s32.2 9.7 56.8 43c24.6 33.2 42.7 54.9 44.5 60.3s.7 17.3-10.5 28.5zm-9.9-17.9c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8z"] }; +var faSellcast = { prefix: 'fab', iconName: 'sellcast', icon: [448, 512, [], "f2da", "M353.4 32H94.7C42.6 32 0 74.6 0 126.6v258.7C0 437.4 42.6 480 94.7 480h258.7c52.1 0 94.7-42.6 94.7-94.6V126.6c0-52-42.6-94.6-94.7-94.6zm-50 316.4c-27.9 48.2-89.9 64.9-138.2 37.2-22.9 39.8-54.9 8.6-42.3-13.2l15.7-27.2c5.9-10.3 19.2-13.9 29.5-7.9 18.6 10.8-.1-.1 18.5 10.7 27.6 15.9 63.4 6.3 79.4-21.3 15.9-27.6 6.3-63.4-21.3-79.4-17.8-10.2-.6-.4-18.6-10.6-24.6-14.2-3.4-51.9 21.6-37.5 18.6 10.8-.1-.1 18.5 10.7 48.4 28 65.1 90.3 37.2 138.5zm21.8-208.8c-17 29.5-16.3 28.8-19 31.5-6.5 6.5-16.3 8.7-26.5 3.6-18.6-10.8.1.1-18.5-10.7-27.6-15.9-63.4-6.3-79.4 21.3s-6.3 63.4 21.3 79.4c0 0 18.5 10.6 18.6 10.6 24.6 14.2 3.4 51.9-21.6 37.5-18.6-10.8.1.1-18.5-10.7-48.2-27.8-64.9-90.1-37.1-138.4 27.9-48.2 89.9-64.9 138.2-37.2l4.8-8.4c14.3-24.9 52-3.3 37.7 21.5z"] }; +var faSellsy = { prefix: 'fab', iconName: 'sellsy', icon: [640, 512, [], "f213", "M539.71 237.308c3.064-12.257 4.29-24.821 4.29-37.384C544 107.382 468.618 32 376.076 32c-77.22 0-144.634 53.012-163.02 127.781-15.322-13.176-34.934-20.53-55.157-20.53-46.271 0-83.962 37.69-83.962 83.961 0 7.354.92 15.015 3.065 22.369-42.9 20.225-70.785 63.738-70.785 111.234C6.216 424.843 61.68 480 129.401 480h381.198c67.72 0 123.184-55.157 123.184-123.184.001-56.384-38.916-106.025-94.073-119.508zM199.88 401.554c0 8.274-7.048 15.321-15.321 15.321H153.61c-8.274 0-15.321-7.048-15.321-15.321V290.626c0-8.273 7.048-15.321 15.321-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v110.928zm89.477 0c0 8.274-7.048 15.321-15.322 15.321h-30.949c-8.274 0-15.321-7.048-15.321-15.321V270.096c0-8.274 7.048-15.321 15.321-15.321h30.949c8.274 0 15.322 7.048 15.322 15.321v131.458zm89.477 0c0 8.274-7.047 15.321-15.321 15.321h-30.949c-8.274 0-15.322-7.048-15.322-15.321V238.84c0-8.274 7.048-15.321 15.322-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v162.714zm87.027 0c0 8.274-7.048 15.321-15.322 15.321h-28.497c-8.274 0-15.321-7.048-15.321-15.321V176.941c0-8.579 7.047-15.628 15.321-15.628h28.497c8.274 0 15.322 7.048 15.322 15.628v224.613z"] }; +var faServicestack = { prefix: 'fab', iconName: 'servicestack', icon: [496, 512, [], "f3ec", "M88 216c81.7 10.2 273.7 102.3 304 232H0c99.5-8.1 184.5-137 88-232zm32-152c32.3 35.6 47.7 83.9 46.4 133.6C249.3 231.3 373.7 321.3 400 448h96C455.3 231.9 222.8 79.5 120 64z"] }; +var faShirtsinbulk = { prefix: 'fab', iconName: 'shirtsinbulk', icon: [448, 512, [], "f214", "M395.208 221.583H406v33.542h-10.792v-33.542zm0-9.625H406v-33.542h-10.792v33.542zm0 86.333H406V264.75h-10.792v33.541zM358.75 135.25h-33.542v10.5h33.542v-10.5zm36.458 206.208H406v-33.542h-10.792v33.542zM311.5 135.25h-33.542v10.5H311.5v-10.5zm-47.25 0H231v10.5h33.25v-10.5zm-47.25 0h-33.25v10.5H217v-10.5zm178.208 33.542H406V135.25h-33.542v10.5h22.75v23.042zm-255.792 259l30.625 13.417 4.375-9.917-30.625-13.417-4.375 9.917zM179.083 445l30.334 13.708 4.374-9.916-30.333-13.417-4.375 9.625zm216.125-60.375H406v-33.542h-10.792v33.542zm-334.833 8.167L91 406.208l4.375-9.624-30.625-13.709-4.375 9.917zm39.666 17.499l30.625 13.417 4.375-9.917-30.625-13.416-4.375 9.916zm132.417 38.501l4.375 9.916L267.459 445l-4.375-9.625-30.626 13.417zm118.417-52.208l4.375 9.624 30.624-13.416-4.374-9.917-30.625 13.709zM311.5 413.791l4.375 9.917 30.625-13.417-4.374-9.916-30.626 13.416zm-39.667 17.501l4.375 9.917 30.625-13.417-4.375-9.917-30.625 13.417zM311.5 46.583h-33.542v10.5H311.5v-10.5zm94.209 0h-33.251v10.5h33.251v-10.5zm-188.709 0h-33.25v10.5H217v-10.5zm141.75 0h-33.542v10.5h33.542v-10.5zm-94.5 0H231v10.5h33.25v-10.5zM448 3.708v406l-226.334 98.584L0 409.708v-406h448zm-29.166 116.958H29.166V390.75l192.792 85.75 196.875-85.75V120.666zm0-87.791H29.166V91.5h389.667V32.875zM75.542 46.583H42.291v10.5h33.251v-10.5zm94.5 0H136.5v10.5h33.542v-10.5zm-47.251 0H89.25v10.5h33.542v-10.5zm7.584 236.542c0-50.167 41.125-91.292 91.292-91.292 50.458 0 91.292 41.125 91.292 91.292 0 50.458-40.833 91.292-91.292 91.292-50.167-.001-91.292-40.834-91.292-91.292zm120.75 18.084c0 13.125-23.917 14.291-32.666 14.291-12.25 0-29.75-2.625-35.875-14.875h-.875L172.666 319c14.876 9.333 29.167 12.25 47.25 12.25 19.542 0 51.042-5.833 51.042-31.209 0-48.125-78.458-16.333-78.458-37.916 0-13.125 20.708-14.875 29.75-14.875 10.791 0 29.166 3.208 35.583 13.124h.875l8.751-16.916c-15.167-6.125-27.417-11.959-44.334-11.959-20.125 0-49.583 6.417-49.583 31.792 0 44.334 77.583 11.959 77.583 37.918zM122.791 135.25H89.25v10.5h33.542v-10.5zm-69.999 10.5h22.75v-10.5H42v33.542h10.792V145.75zm0 32.666H42v33.542h10.792v-33.542zm117.25-43.166H136.5v10.5h33.542v-10.5zm-117.25 86.333H42v33.542h10.792v-33.542zm0 86.334H42v33.542h10.792v-33.542zm0-43.167H42v33.542h10.792V264.75zm0 86.333H42v33.542h10.792v-33.542z"] }; +var faSimplybuilt = { prefix: 'fab', iconName: 'simplybuilt', icon: [512, 512, [], "f215", "M481.2 64h-106c-14.5 0-26.6 11.8-26.6 26.3v39.6H163.3V90.3c0-14.5-12-26.3-26.6-26.3h-106C16.1 64 4.3 75.8 4.3 90.3v331.4c0 14.5 11.8 26.3 26.6 26.3h450.4c14.8 0 26.6-11.8 26.6-26.3V90.3c-.2-14.5-12-26.3-26.7-26.3zM149.8 355.8c-36.6 0-66.4-29.7-66.4-66.4 0-36.9 29.7-66.6 66.4-66.6 36.9 0 66.6 29.7 66.6 66.6 0 36.7-29.7 66.4-66.6 66.4zm212.4 0c-36.9 0-66.6-29.7-66.6-66.6 0-36.6 29.7-66.4 66.6-66.4 36.6 0 66.4 29.7 66.4 66.4 0 36.9-29.8 66.6-66.4 66.6z"] }; +var faSistrix = { prefix: 'fab', iconName: 'sistrix', icon: [448, 512, [], "f3ee", "M448 449L301.2 300.2c20-27.9 31.9-62.2 31.9-99.2 0-93.1-74.7-168.9-166.5-168.9C74.7 32 0 107.8 0 200.9s74.7 168.9 166.5 168.9c39.8 0 76.3-14.2 105-37.9l146 148.1 30.5-31zM166.5 330.8c-70.6 0-128.1-58.3-128.1-129.9S95.9 71 166.5 71s128.1 58.3 128.1 129.9-57.4 129.9-128.1 129.9z"] }; +var faSith = { prefix: 'fab', iconName: 'sith', icon: [448, 512, [], "f512", "M0 32l69.71 118.75-58.86-11.52 69.84 91.03a146.741 146.741 0 0 0 0 51.45l-69.84 91.03 58.86-11.52L0 480l118.75-69.71-11.52 58.86 91.03-69.84c17.02 3.04 34.47 3.04 51.48 0l91.03 69.84-11.52-58.86L448 480l-69.71-118.78 58.86 11.52-69.84-91.03c3.03-17.01 3.04-34.44 0-51.45l69.84-91.03-58.86 11.52L448 32l-118.75 69.71 11.52-58.9-91.06 69.87c-8.5-1.52-17.1-2.29-25.71-2.29s-17.21.78-25.71 2.29l-91.06-69.87 11.52 58.9L0 32zm224 99.78c31.8 0 63.6 12.12 87.85 36.37 48.5 48.5 48.49 127.21 0 175.7s-127.2 48.46-175.7-.03c-48.5-48.5-48.49-127.21 0-175.7 24.24-24.25 56.05-36.34 87.85-36.34zm0 36.66c-22.42 0-44.83 8.52-61.92 25.61-34.18 34.18-34.19 89.68 0 123.87s89.65 34.18 123.84 0c34.18-34.18 34.19-89.68 0-123.87-17.09-17.09-39.5-25.61-61.92-25.61z"] }; +var faSkyatlas = { prefix: 'fab', iconName: 'skyatlas', icon: [640, 512, [], "f216", "M640 329.3c0 65.9-52.5 114.4-117.5 114.4-165.9 0-196.6-249.7-359.7-249.7-146.9 0-147.1 212.2 5.6 212.2 42.5 0 90.9-17.8 125.3-42.5 5.6-4.1 16.9-16.3 22.8-16.3s10.9 5 10.9 10.9c0 7.8-13.1 19.1-18.7 24.1-40.9 35.6-100.3 61.2-154.7 61.2-83.4.1-154-59-154-144.9s67.5-149.1 152.8-149.1c185.3 0 222.5 245.9 361.9 245.9 99.9 0 94.8-139.7 3.4-139.7-17.5 0-35 11.6-46.9 11.6-8.4 0-15.9-7.2-15.9-15.6 0-11.6 5.3-23.7 5.3-36.3 0-66.6-50.9-114.7-116.9-114.7-53.1 0-80 36.9-88.8 36.9-6.2 0-11.2-5-11.2-11.2 0-5.6 4.1-10.3 7.8-14.4 25.3-28.8 64.7-43.7 102.8-43.7 79.4 0 139.1 58.4 139.1 137.8 0 6.9-.3 13.7-1.2 20.6 11.9-3.1 24.1-4.7 35.9-4.7 60.7 0 111.9 45.3 111.9 107.2z"] }; +var faSkype = { prefix: 'fab', iconName: 'skype', icon: [448, 512, [], "f17e", "M424.7 299.8c2.9-14 4.7-28.9 4.7-43.8 0-113.5-91.9-205.3-205.3-205.3-14.9 0-29.7 1.7-43.8 4.7C161.3 40.7 137.7 32 112 32 50.2 32 0 82.2 0 144c0 25.7 8.7 49.3 23.3 68.2-2.9 14-4.7 28.9-4.7 43.8 0 113.5 91.9 205.3 205.3 205.3 14.9 0 29.7-1.7 43.8-4.7 19 14.6 42.6 23.3 68.2 23.3 61.8 0 112-50.2 112-112 .1-25.6-8.6-49.2-23.2-68.1zm-194.6 91.5c-65.6 0-120.5-29.2-120.5-65 0-16 9-30.6 29.5-30.6 31.2 0 34.1 44.9 88.1 44.9 25.7 0 42.3-11.4 42.3-26.3 0-18.7-16-21.6-42-28-62.5-15.4-117.8-22-117.8-87.2 0-59.2 58.6-81.1 109.1-81.1 55.1 0 110.8 21.9 110.8 55.4 0 16.9-11.4 31.8-30.3 31.8-28.3 0-29.2-33.5-75-33.5-25.7 0-42 7-42 22.5 0 19.8 20.8 21.8 69.1 33 41.4 9.3 90.7 26.8 90.7 77.6 0 59.1-57.1 86.5-112 86.5z"] }; +var faSlack = { prefix: 'fab', iconName: 'slack', icon: [448, 512, [], "f198", "M244.2 217.5l19.3 57.7-59.8 20-19.3-57.7 59.8-20zm41.4 243.7C131.6 507.4 65 471.6 18.8 317.6S8.4 97 162.4 50.8C316.4 4.6 383 40.4 429.2 194.4c46.2 154 10.4 220.6-143.6 266.8zM366.2 265c-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-19.3-57.7 29-9.7c12.2-3.9 18.6-17.2 14.7-29.4-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-59.8 20.1-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l19.3 57.7-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 59.8-20.1 10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 29-9.7c12.2-4.2 18.6-17.5 14.7-29.6z"] }; +var faSlackHash = { prefix: 'fab', iconName: 'slack-hash', icon: [448, 512, [], "f3ef", "M446.2 270.4c-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-30.3-90 45.4-15.1c19.1-6.2 29.1-26.8 23-45.9-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-93.4 31.2-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-45.3 15c-19.1 6.2-29.1 26.8-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l30.3 90L78 354.8c-19 6.2-29.1 26.9-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 93.6-31.3 15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 45.4-15.1c19-6 29.1-26.7 22.9-45.7zm-254.1 47.2l-30.3-90.2 93.5-31.3 30.3 90.2-93.5 31.3z"] }; +var faSlideshare = { prefix: 'fab', iconName: 'slideshare', icon: [512, 512, [], "f1e7", "M249.429 211.436c0 31.716-27.715 57.717-61.717 57.717-34.001 0-61.716-26.001-61.716-57.717 0-32.001 27.715-57.716 61.716-57.716 34.001 0 61.717 25.715 61.717 57.716zm254.294 50.002c-18.286 22.573-53.144 50.288-106.289 72.003C453.722 525.163 260 555.735 263.143 457.446c0 1.714-.286-52.859-.286-93.432-4.285-.858-8.571-2-13.714-3.143 0 40.858-.286 98.289-.286 96.575C252 555.735 58.278 525.163 114.566 333.441c-53.145-21.715-88.003-49.43-106.29-72.003-9.143-13.714.858-28.287 16.001-17.715 2 1.428 4.285 2.857 6.285 4.285V49.716C30.563 22.287 51.135 0 76.565 0h359.157c25.429 0 46.002 22.287 46.002 49.716v198.293l6-4.285c15.143-10.573 25.143 4 15.999 17.714zm-46.572-189.15c0-32.858-10.572-45.716-40.859-45.716H98.566c-31.716 0-40.573 10.858-40.573 45.716v192.293c67.717 35.43 125.72 29.144 157.435 28.001 13.429-.286 22.001 2.286 27.144 7.715 1.689 1.687 10.023 9.446 20.287 17.143 1.143-15.715 10.001-25.715 33.716-24.858 32.287 1.428 91.718 7.715 160.577-29.716V72.288zM331.146 153.72c-34.002 0-61.716 25.715-61.716 57.716 0 31.716 27.715 57.717 61.716 57.717 34.287 0 61.716-26.001 61.716-57.717 0-32.001-27.429-57.716-61.716-57.716z"] }; +var faSnapchat = { prefix: 'fab', iconName: 'snapchat', icon: [496, 512, [], "f2ab", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm169.5 338.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C183.1 100 230.7 96 244.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z"] }; +var faSnapchatGhost = { prefix: 'fab', iconName: 'snapchat-ghost', icon: [512, 512, [], "f2ac", "M510.846 392.673c-5.211 12.157-27.239 21.089-67.36 27.318-2.064 2.786-3.775 14.686-6.507 23.956-1.625 5.566-5.623 8.869-12.128 8.869l-.297-.005c-9.395 0-19.203-4.323-38.852-4.323-26.521 0-35.662 6.043-56.254 20.588-21.832 15.438-42.771 28.764-74.027 27.399-31.646 2.334-58.025-16.908-72.871-27.404-20.714-14.643-29.828-20.582-56.241-20.582-18.864 0-30.736 4.72-38.852 4.72-8.073 0-11.213-4.922-12.422-9.04-2.703-9.189-4.404-21.263-6.523-24.13-20.679-3.209-67.31-11.344-68.498-32.15a10.627 10.627 0 0 1 8.877-11.069c69.583-11.455 100.924-82.901 102.227-85.934.074-.176.155-.344.237-.515 3.713-7.537 4.544-13.849 2.463-18.753-5.05-11.896-26.872-16.164-36.053-19.796-23.715-9.366-27.015-20.128-25.612-27.504 2.437-12.836 21.725-20.735 33.002-15.453 8.919 4.181 16.843 6.297 23.547 6.297 5.022 0 8.212-1.204 9.96-2.171-2.043-35.936-7.101-87.29 5.687-115.969C158.122 21.304 229.705 15.42 250.826 15.42c.944 0 9.141-.089 10.11-.089 52.148 0 102.254 26.78 126.723 81.643 12.777 28.65 7.749 79.792 5.695 116.009 1.582.872 4.357 1.942 8.599 2.139 6.397-.286 13.815-2.389 22.069-6.257 6.085-2.846 14.406-2.461 20.48.058l.029.01c9.476 3.385 15.439 10.215 15.589 17.87.184 9.747-8.522 18.165-25.878 25.018-2.118.835-4.694 1.655-7.434 2.525-9.797 3.106-24.6 7.805-28.616 17.271-2.079 4.904-1.256 11.211 2.46 18.748.087.168.166.342.239.515 1.301 3.03 32.615 74.46 102.23 85.934 6.427 1.058 11.163 7.877 7.725 15.859z"] }; +var faSnapchatSquare = { prefix: 'fab', iconName: 'snapchat-square', icon: [448, 512, [], "f2ad", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6.5 314.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C159.1 100 206.7 96 220.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z"] }; +var faSoundcloud = { prefix: 'fab', iconName: 'soundcloud', icon: [640, 512, [], "f1be", "M111.4 256.3l5.8 65-5.8 68.3c-.3 2.5-2.2 4.4-4.4 4.4s-4.2-1.9-4.2-4.4l-5.6-68.3 5.6-65c0-2.2 1.9-4.2 4.2-4.2 2.2 0 4.1 2 4.4 4.2zm21.4-45.6c-2.8 0-4.7 2.2-5 5l-5 105.6 5 68.3c.3 2.8 2.2 5 5 5 2.5 0 4.7-2.2 4.7-5l5.8-68.3-5.8-105.6c0-2.8-2.2-5-4.7-5zm25.5-24.1c-3.1 0-5.3 2.2-5.6 5.3l-4.4 130 4.4 67.8c.3 3.1 2.5 5.3 5.6 5.3 2.8 0 5.3-2.2 5.3-5.3l5.3-67.8-5.3-130c0-3.1-2.5-5.3-5.3-5.3zM7.2 283.2c-1.4 0-2.2 1.1-2.5 2.5L0 321.3l4.7 35c.3 1.4 1.1 2.5 2.5 2.5s2.2-1.1 2.5-2.5l5.6-35-5.6-35.6c-.3-1.4-1.1-2.5-2.5-2.5zm23.6-21.9c-1.4 0-2.5 1.1-2.5 2.5l-6.4 57.5 6.4 56.1c0 1.7 1.1 2.8 2.5 2.8s2.5-1.1 2.8-2.5l7.2-56.4-7.2-57.5c-.3-1.4-1.4-2.5-2.8-2.5zm25.3-11.4c-1.7 0-3.1 1.4-3.3 3.3L47 321.3l5.8 65.8c.3 1.7 1.7 3.1 3.3 3.1 1.7 0 3.1-1.4 3.1-3.1l6.9-65.8-6.9-68.1c0-1.9-1.4-3.3-3.1-3.3zm25.3-2.2c-1.9 0-3.6 1.4-3.6 3.6l-5.8 70 5.8 67.8c0 2.2 1.7 3.6 3.6 3.6s3.6-1.4 3.9-3.6l6.4-67.8-6.4-70c-.3-2.2-2-3.6-3.9-3.6zm241.4-110.9c-1.1-.8-2.8-1.4-4.2-1.4-2.2 0-4.2.8-5.6 1.9-1.9 1.7-3.1 4.2-3.3 6.7v.8l-3.3 176.7 1.7 32.5 1.7 31.7c.3 4.7 4.2 8.6 8.9 8.6s8.6-3.9 8.6-8.6l3.9-64.2-3.9-177.5c-.4-3-2-5.8-4.5-7.2zm-26.7 15.3c-1.4-.8-2.8-1.4-4.4-1.4s-3.1.6-4.4 1.4c-2.2 1.4-3.6 3.9-3.6 6.7l-.3 1.7-2.8 160.8s0 .3 3.1 65.6v.3c0 1.7.6 3.3 1.7 4.7 1.7 1.9 3.9 3.1 6.4 3.1 2.2 0 4.2-1.1 5.6-2.5 1.7-1.4 2.5-3.3 2.5-5.6l.3-6.7 3.1-58.6-3.3-162.8c-.3-2.8-1.7-5.3-3.9-6.7zm-111.4 22.5c-3.1 0-5.8 2.8-5.8 6.1l-4.4 140.6 4.4 67.2c.3 3.3 2.8 5.8 5.8 5.8 3.3 0 5.8-2.5 6.1-5.8l5-67.2-5-140.6c-.2-3.3-2.7-6.1-6.1-6.1zm376.7 62.8c-10.8 0-21.1 2.2-30.6 6.1-6.4-70.8-65.8-126.4-138.3-126.4-17.8 0-35 3.3-50.3 9.4-6.1 2.2-7.8 4.4-7.8 9.2v249.7c0 5 3.9 8.6 8.6 9.2h218.3c43.3 0 78.6-35 78.6-78.3.1-43.6-35.2-78.9-78.5-78.9zm-296.7-60.3c-4.2 0-7.5 3.3-7.8 7.8l-3.3 136.7 3.3 65.6c.3 4.2 3.6 7.5 7.8 7.5 4.2 0 7.5-3.3 7.5-7.5l3.9-65.6-3.9-136.7c-.3-4.5-3.3-7.8-7.5-7.8zm-53.6-7.8c-3.3 0-6.4 3.1-6.4 6.7l-3.9 145.3 3.9 66.9c.3 3.6 3.1 6.4 6.4 6.4 3.6 0 6.4-2.8 6.7-6.4l4.4-66.9-4.4-145.3c-.3-3.6-3.1-6.7-6.7-6.7zm26.7 3.4c-3.9 0-6.9 3.1-6.9 6.9L227 321.3l3.9 66.4c.3 3.9 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9l4.2-66.4-4.2-141.7c0-3.9-3-6.9-6.9-6.9z"] }; +var faSpeakap = { prefix: 'fab', iconName: 'speakap', icon: [448, 512, [], "f3f3", "M352 32H96C43.2 32 0 75.2 0 128v256c0 52.8 43.2 96 96 96h256c52.8 0 96-43.2 96-96V128c0-52.8-43.2-96-96-96zM221 382.9c-39.6 0-81.9-17.8-81.9-53.7V302H179v17.8c0 15.1 19.5 24.5 41.9 24.5 24.2 0 41.3-10.4 41.3-29.5 0-23.8-27.2-31.9-54.7-42.6-31.9-12.4-63.1-26.2-63.1-69.1 0-48 38.6-66.4 79.9-66.4 37.6 0 75.5 14.1 75.5 41.9v31.2h-39.9v-16.1c0-12.1-17.8-18.5-35.6-18.5-19.5 0-35.6 8.1-35.6 26.2 0 22.1 22.5 29.2 47 38.9 35.9 12.4 71.1 27.2 71.1 71.5.1 48.6-40.8 71.1-85.8 71.1z"] }; +var faSpotify = { prefix: 'fab', iconName: 'spotify', icon: [496, 512, [], "f1bc", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm100.7 364.9c-4.2 0-6.8-1.3-10.7-3.6-62.4-37.6-135-39.2-206.7-24.5-3.9 1-9 2.6-11.9 2.6-9.7 0-15.8-7.7-15.8-15.8 0-10.3 6.1-15.2 13.6-16.8 81.9-18.1 165.6-16.5 237 26.2 6.1 3.9 9.7 7.4 9.7 16.5s-7.1 15.4-15.2 15.4zm26.9-65.6c-5.2 0-8.7-2.3-12.3-4.2-62.5-37-155.7-51.9-238.6-29.4-4.8 1.3-7.4 2.6-11.9 2.6-10.7 0-19.4-8.7-19.4-19.4s5.2-17.8 15.5-20.7c27.8-7.8 56.2-13.6 97.8-13.6 64.9 0 127.6 16.1 177 45.5 8.1 4.8 11.3 11 11.3 19.7-.1 10.8-8.5 19.5-19.4 19.5zm31-76.2c-5.2 0-8.4-1.3-12.9-3.9-71.2-42.5-198.5-52.7-280.9-29.7-3.6 1-8.1 2.6-12.9 2.6-13.2 0-23.3-10.3-23.3-23.6 0-13.6 8.4-21.3 17.4-23.9 35.2-10.3 74.6-15.2 117.5-15.2 73 0 149.5 15.2 205.4 47.8 7.8 4.5 12.9 10.7 12.9 22.6 0 13.6-11 23.3-23.2 23.3z"] }; +var faStackExchange = { prefix: 'fab', iconName: 'stack-exchange', icon: [448, 512, [], "f18d", "M17.7 332.3h412.7v22c0 37.7-29.3 68-65.3 68h-19L259.3 512v-89.7H83c-36 0-65.3-30.3-65.3-68v-22zm0-23.6h412.7v-85H17.7v85zm0-109.4h412.7v-85H17.7v85zM365 0H83C47 0 17.7 30.3 17.7 67.7V90h412.7V67.7C430.3 30.3 401 0 365 0z"] }; +var faStackOverflow = { prefix: 'fab', iconName: 'stack-overflow', icon: [384, 512, [], "f16c", "M293.7 300l-181.2-84.5 16.7-36.5 181.3 84.7-16.8 36.3zm48-76L188.2 95.7l-25.5 30.8 153.5 128.3 25.5-30.8zm39.6-31.7L262 32l-32 24 119.3 160.3 32-24zM290.7 311L95 269.7 86.8 309l195.7 41 8.2-39zm31.6 129H42.7V320h-40v160h359.5V320h-40v120zm-39.8-80h-200v39.7h200V360z"] }; +var faStaylinked = { prefix: 'fab', iconName: 'staylinked', icon: [440, 512, [], "f3f5", "M201.6 127.4c4.1-3.2 10.3-3 13.8.5l170 167.3-2.7-2.7 44.3 41.3c3.7 3.5 3.3 9-.7 12.2l-198 163.9c-9.9 7.6-17.3.8-17.3.8L2.3 314.6c-3.5-3.5-3-9 1.2-12.2l45.8-34.9c4.2-3.2 10.4-3 13.9.5l151.9 147.5c3.7 3.5 10 3.7 14.2.4l93.2-74c4.1-3.2 4.5-8.7.9-12.2l-84-81.3c-3.6-3.5-9.9-3.7-14-.5l-.1.1c-4.1 3.2-10.4 3-14-.5l-68.1-64.3c-3.5-3.5-3.1-9 1.1-12.2l57.3-43.6m14.8 257.3c3.7 3.5 10.1 3.7 14.3.4l50.2-38.8-.3-.3 7.7-6c4.2-3.2 4.6-8.7.9-12.2l-57.1-54.4c-3.6-3.5-10-3.7-14.2-.5l-.1.1c-4.2 3.2-10.5 3.1-14.2-.4L109 180.8c-3.6-3.5-3.1-8.9 1.1-12.2l92.2-71.5c4.1-3.2 10.3-3 13.9.5l160.4 159c3.7 3.5 10 3.7 14.1.5l45.8-35.8c4.1-3.2 4.4-8.7.7-12.2L226.7 2.5c-1.5-1.2-8-5.5-16.3 1.1L3.6 165.7c-4.2 3.2-4.8 8.7-1.2 12.2l42.3 41.7"] }; +var faSteam = { prefix: 'fab', iconName: 'steam', icon: [496, 512, [], "f1b6", "M496 256c0 137-111.2 248-248.4 248-113.8 0-209.6-76.3-239-180.4l95.2 39.3c6.4 32.1 34.9 56.4 68.9 56.4 39.2 0 71.9-32.4 70.2-73.5l84.5-60.2c52.1 1.3 95.8-40.9 95.8-93.5 0-51.6-42-93.5-93.7-93.5s-93.7 42-93.7 93.5v1.2L176.6 279c-15.5-.9-30.7 3.4-43.5 12.1L0 236.1C10.2 108.4 117.1 8 247.6 8 384.8 8 496 119 496 256zM155.7 384.3l-30.5-12.6a52.79 52.79 0 0 0 27.2 25.8c26.9 11.2 57.8-1.6 69-28.4 5.4-13 5.5-27.3.1-40.3-5.4-13-15.5-23.2-28.5-28.6-12.9-5.4-26.7-5.2-38.9-.6l31.5 13c19.8 8.2 29.2 30.9 20.9 50.7-8.3 19.9-31 29.2-50.8 21zm173.8-129.9c-34.4 0-62.4-28-62.4-62.3s28-62.3 62.4-62.3 62.4 28 62.4 62.3-27.9 62.3-62.4 62.3zm.1-15.6c25.9 0 46.9-21 46.9-46.8 0-25.9-21-46.8-46.9-46.8s-46.9 21-46.9 46.8c.1 25.8 21.1 46.8 46.9 46.8z"] }; +var faSteamSquare = { prefix: 'fab', iconName: 'steam-square', icon: [448, 512, [], "f1b7", "M185.2 356.5c7.7-18.5-1-39.7-19.6-47.4l-29.5-12.2c11.4-4.3 24.3-4.5 36.4.5 12.2 5.1 21.6 14.6 26.7 26.7 5 12.2 5 25.6-.1 37.7-10.5 25.1-39.4 37-64.6 26.5-11.6-4.8-20.4-13.6-25.4-24.2l28.5 11.8c18.6 7.8 39.9-.9 47.6-19.4zM400 32H48C21.5 32 0 53.5 0 80v160.7l116.6 48.1c12-8.2 26.2-12.1 40.7-11.3l55.4-80.2v-1.1c0-48.2 39.3-87.5 87.6-87.5s87.6 39.3 87.6 87.5c0 49.2-40.9 88.7-89.6 87.5l-79 56.3c1.6 38.5-29.1 68.8-65.7 68.8-31.8 0-58.5-22.7-64.5-52.7L0 319.2V432c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-99.7 222.5c-32.2 0-58.4-26.1-58.4-58.3s26.2-58.3 58.4-58.3 58.4 26.2 58.4 58.3-26.2 58.3-58.4 58.3zm.1-14.6c24.2 0 43.9-19.6 43.9-43.8 0-24.2-19.6-43.8-43.9-43.8-24.2 0-43.9 19.6-43.9 43.8 0 24.2 19.7 43.8 43.9 43.8z"] }; +var faSteamSymbol = { prefix: 'fab', iconName: 'steam-symbol', icon: [448, 512, [], "f3f6", "M395.5 177.5c0 33.8-27.5 61-61 61-33.8 0-61-27.3-61-61s27.3-61 61-61c33.5 0 61 27.2 61 61zm52.5.2c0 63-51 113.8-113.7 113.8L225 371.3c-4 43-40.5 76.8-84.5 76.8-40.5 0-74.7-28.8-83-67L0 358V250.7L97.2 290c15.1-9.2 32.2-13.3 52-11.5l71-101.7c.5-62.3 51.5-112.8 114-112.8C397 64 448 115 448 177.7zM203 363c0-34.7-27.8-62.5-62.5-62.5-4.5 0-9 .5-13.5 1.5l26 10.5c25.5 10.2 38 39 27.7 64.5-10.2 25.5-39.2 38-64.7 27.5-10.2-4-20.5-8.3-30.7-12.2 10.5 19.7 31.2 33.2 55.2 33.2 34.7 0 62.5-27.8 62.5-62.5zm207.5-185.3c0-42-34.3-76.2-76.2-76.2-42.3 0-76.5 34.2-76.5 76.2 0 42.2 34.3 76.2 76.5 76.2 41.9.1 76.2-33.9 76.2-76.2z"] }; +var faStickerMule = { prefix: 'fab', iconName: 'sticker-mule', icon: [576, 512, [], "f3f7", "M353.1 509.8c-5.9 2.9-32.1 3.2-36.5-.5-4.1-3-2.2-11.9-1.5-15 2.2-15-2.5-7.9-9.8-11.5-3.1-1.5-4.1-5.5-4.6-10-.5-1.5-1-2.5-1.5-3.5-1.7-10.7 6.8-33.6 8.2-43.4 4.9-23.7-.7-37.2 1.5-46.9 3.7-16.2 4.1-3.5 4.1-29.9-1.4-25.9 3.3-36.9.5-38.9-14.8 0-64.3 10.7-112.2 2-46.1-8.9-59.4-29-65.4-30.9-10.3-4.5-23.2.5-27.3 7-.1.1-35 70.6-39.6 87.8-6.2 20.5-.5 47.4 4.1 66.8 0 .1 4.5 14.6 10.3 19.5 2.1 1.5 5.1 2.5 7.2 4.5 2.8 2.7 9.4 15.2 9.8 16 2.6 4.5 3.6 8-1.5 10.5-3.6 2-9.3 2.5-14.4 2.5-2.6.5-1.5 3.5-3.1 5-2.9 2.8-20.7 6.1-29.9 2.5-2.6-1-5.7-3-6.2-5-1.5-4 2.1-9-1-12.5-4.5-2.9-13.1-2-17-12-2.2-5.4-2.6-7.6-2.6-49.4 0-9.7-5.9-38.7-8.2-46.9-1.5-5.5-1.5-11.5 0-16 .3-.9 4.1-4.6 4.1-13-1-1.5-4.6-.5-5.1-1.5-10.4-80.6-5.9-79-7.7-98.3-1.5-16-10.9-43.9-6.7-64.3.5-2.4 3.4-21 24.2-38.9 31-26.7 48.4-38.3 159-11.5 1.1.4 66.3 21.1 110.7-9 15.5-11.3 28.8-11.3 35.5-16 .1-.1 61.7-52.1 87-65.3 47.2-29.4 69.9-16.7 75.1-18 4.7-1 13.4-25.8 17-25.8 5.5 0 1.6 20.2 3.6 25.9.5 2 3.6 5 6.2 5 2.3 0 1.7-.8 10.3-5 8.4-5.4 14.9-17.6 20.6-17 11.7 1.6-19 41.6-19 46.9 0 2 .2.8 4.6 9.5 2.6 5.5 4.6 13.5 6.2 20 8.3 29.7 5.7 14.6 13.4 36.9 20.2 50.1 20.6 45.2 20.6 52.9 0 7.5-4.1 11-7.2 16.5-1.5 3-4.6 7.5-7.2 8-2.7.7 7-1.5-13.4 2.5-7.2 1-13.4-4.5-14.9-9.5-1.6-4.7 2.8-10.1-11.8-22.9-10.3-10-21.1-11.3-31.9-17-9.8-5.7-11.9 1-18 8-18 22.9-34 46.9-52 69.8-11.8 15-24.2 30.4-33.5 47.4-3.9 6.8-9.5 28.1-10.3 29.9-6.2 17.7-5.5 25.8-16.5 68.3-3.1 10-5.7 21.4-8.7 32.4-2.2 6.8-7.4 49.3-.5 59.4 2.1 3.5 8.7 4.5 11.3 8 .1.1 9.6 18.2 9.3 20 0 6.1-9.4 5.6-11.3 6.5-4.8 2.9-3.8 5.9-6.4 7.4"] }; +var faStrava = { prefix: 'fab', iconName: 'strava', icon: [369, 512, [], "f428", "M301.6 292l-43.9 88.2-44.6-88.2h-67.6l112.2 220 111.5-220h-67.6zM151.4 0L0 292h89.2l62.2-116.1L213.1 292h88.5L151.4 0z"] }; +var faStripe = { prefix: 'fab', iconName: 'stripe', icon: [640, 512, [], "f429", "M640 261.6c0-45.5-22-81.4-64.2-81.4s-67.9 35.9-67.9 81.1c0 53.5 30.3 78.2 73.5 78.2 21.2 0 37.1-4.8 49.2-11.5v-33.4c-12.1 6.1-26 9.8-43.6 9.8-17.3 0-32.5-6.1-34.5-26.9h86.9c.2-2.3.6-11.6.6-15.9m-87.9-16.8c0-20 12.3-28.4 23.4-28.4 10.9 0 22.5 8.4 22.5 28.4h-45.9zm-112.9-64.6c-17.4 0-28.6 8.2-34.8 13.9l-2.3-11H363v204.8l44.4-9.4.1-50.2c6.4 4.7 15.9 11.2 31.4 11.2 31.8 0 60.8-23.2 60.8-79.6.1-51.6-29.3-79.7-60.5-79.7m-10.6 122.5c-10.4 0-16.6-3.8-20.9-8.4l-.3-66c4.6-5.1 11-8.8 21.2-8.8 16.2 0 27.4 18.2 27.4 41.4.1 23.9-10.9 41.8-27.4 41.8M346.4 124v36.2l-44.6 9.5v-36.2l44.6-9.5m-44.5 59.2h44.6v153.2h-44.6V183.2zm-47.8 13.1c10.4-19.1 31.1-15.2 37.1-13.1V224c-5.7-1.8-23.4-4.5-33.9 9.3v103.1H213V183.2h38.4l2.7 13.1m-89-13.1h33.7V221h-33.7v63.2c0 26.2 28 18 33.7 15.7v33.8c-5.9 3.2-16.6 5.9-31.2 5.9-26.3 0-46.1-17-46.1-43.3l.2-142.4 43.3-9.2.1 38.5zM44.9 228.3c0 20 67.9 10.5 67.9 63.4 0 32-25.4 47.8-62.3 47.8-15.3 0-32-3-48.5-10.1v-40c14.9 8.1 33.9 14.2 48.6 14.2 9.9 0 17-2.7 17-10.9 0-21.2-67.5-13.2-67.5-62.4 0-31.4 24-50.2 60-50.2 14.7 0 29.4 2.3 44.1 8.1V230c-13.5-7.3-30.7-11.4-44.2-11.4-9.3.1-15.1 2.8-15.1 9.7"] }; +var faStripeS = { prefix: 'fab', iconName: 'stripe-s', icon: [362, 512, [], "f42a", "M144.3 154.6c0-22.3 18.6-30.9 48.4-30.9 43.4 0 98.5 13.3 141.9 36.7V26.1C287.3 7.2 240.1 0 192.8 0 77.1 0 0 60.4 0 161.4c0 157.9 216.8 132.3 216.8 200.4 0 26.4-22.9 34.9-54.7 34.9-47.2 0-108.2-19.5-156.1-45.5v128.5c53 22.8 106.8 32.4 156 32.4 118.6 0 200.3-51 200.3-153.6 0-170.2-218-139.7-218-203.9"] }; +var faStudiovinari = { prefix: 'fab', iconName: 'studiovinari', icon: [512, 512, [], "f3f8", "M480.3 187.7l4.2 28v28l-25.1 44.1-39.8 78.4-56.1 67.5-79.1 37.8-17.7 24.5-7.7 12-9.6 4s17.3-63.6 19.4-63.6c2.1 0 20.3.7 20.3.7l66.7-38.6-92.5 26.1-55.9 36.8-22.8 28-6.6 1.4 20.8-73.6 6.9-5.5 20.7 12.9 88.3-45.2 56.8-51.5 14.8-68.4-125.4 23.3 15.2-18.2-173.4-53.3 81.9-10.5-166-122.9L133.5 108 32.2 0l252.9 126.6-31.5-38L378 163 234.7 64l18.7 38.4-49.6-18.1L158.3 0l194.6 122L310 66.2l108 96.4 12-8.9-21-16.4 4.2-37.8L451 89.1l29.2 24.7 11.5 4.2-7 6.2 8.5 12-13.1 7.4-10.3 20.2 10.5 23.9z"] }; +var faStumbleupon = { prefix: 'fab', iconName: 'stumbleupon', icon: [512, 512, [], "f1a4", "M502.9 266v69.7c0 62.1-50.3 112.4-112.4 112.4-61.8 0-112.4-49.8-112.4-111.3v-70.2l34.3 16 51.1-15.2V338c0 14.7 12 26.5 26.7 26.5S417 352.7 417 338v-72h85.9zm-224.7-58.2l34.3 16 51.1-15.2V173c0-60.5-51.1-109-112.1-109-60.8 0-112.1 48.2-112.1 108.2v162.4c0 14.9-12 26.7-26.7 26.7S86 349.5 86 334.6V266H0v69.7C0 397.7 50.3 448 112.4 448c61.6 0 112.4-49.5 112.4-110.8V176.9c0-14.7 12-26.7 26.7-26.7s26.7 12 26.7 26.7v30.9z"] }; +var faStumbleuponCircle = { prefix: 'fab', iconName: 'stumbleupon-circle', icon: [496, 512, [], "f1a3", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 177.5c-9.8 0-17.8 8-17.8 17.8v106.9c0 40.9-33.9 73.9-74.9 73.9-41.4 0-74.9-33.5-74.9-74.9v-46.5h57.3v45.8c0 10 8 17.8 17.8 17.8s17.8-7.9 17.8-17.8V200.1c0-40 34.2-72.1 74.7-72.1 40.7 0 74.7 32.3 74.7 72.6v23.7l-34.1 10.1-22.9-10.7v-20.6c.1-9.6-7.9-17.6-17.7-17.6zm167.6 123.6c0 41.4-33.5 74.9-74.9 74.9-41.2 0-74.9-33.2-74.9-74.2V263l22.9 10.7 34.1-10.1v47.1c0 9.8 8 17.6 17.8 17.6s17.8-7.9 17.8-17.6v-48h57.3c-.1 45.9-.1 46.4-.1 46.4z"] }; +var faSuperpowers = { prefix: 'fab', iconName: 'superpowers', icon: [448, 512, [], "f2dd", "M448 32c-83.3 11-166.8 22-250 33-92 12.5-163.3 86.7-169 180-3.3 55.5 18 109.5 57.8 148.2L0 480c83.3-11 166.5-22 249.8-33 91.8-12.5 163.3-86.8 168.7-179.8 3.5-55.5-18-109.5-57.7-148.2L448 32zm-79.7 232.3c-4.2 79.5-74 139.2-152.8 134.5-79.5-4.7-140.7-71-136.3-151 4.5-79.2 74.3-139.3 153-134.5 79.3 4.7 140.5 71 136.1 151z"] }; +var faSupple = { prefix: 'fab', iconName: 'supple', icon: [640, 512, [], "f3f9", "M640 262.5c0 64.1-109 116.1-243.5 116.1-24.8 0-48.6-1.8-71.1-5 7.7.4 15.5.6 23.4.6 134.5 0 243.5-56.9 243.5-127.1 0-29.4-19.1-56.4-51.2-78 60 21.1 98.9 55.1 98.9 93.4zM47.7 227.9c-.1-70.2 108.8-127.3 243.3-127.6 7.9 0 15.6.2 23.3.5-22.5-3.2-46.3-4.9-71-4.9C108.8 96.3-.1 148.5 0 212.6c.1 38.3 39.1 72.3 99.3 93.3-32.3-21.5-51.5-48.6-51.6-78zm60.2 39.9s10.5 13.2 29.3 13.2c17.9 0 28.4-11.5 28.4-25.1 0-28-40.2-25.1-40.2-39.7 0-5.4 5.3-9.1 12.5-9.1 5.7 0 11.3 2.6 11.3 6.6v3.9h14.2v-7.9c0-12.1-15.4-16.8-25.4-16.8-16.5 0-28.5 10.2-28.5 24.1 0 26.6 40.2 25.4 40.2 39.9 0 6.6-5.8 10.1-12.3 10.1-11.9 0-20.7-10.1-20.7-10.1l-8.8 10.9zm120.8-73.6v54.4c0 11.3-7.1 17.8-17.8 17.8-10.7 0-17.8-6.5-17.8-17.7v-54.5h-15.8v55c0 18.9 13.4 31.9 33.7 31.9 20.1 0 33.4-13 33.4-31.9v-55h-15.7zm34.4 85.4h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.8-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5.1 14.7-14 14.7h-12.6zm57 43h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.7-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5 14.7-14 14.7h-12.6zm57.1 34.8c0 5.8 2.4 8.2 8.2 8.2h37.6c5.8 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-18.6c-1.7 0-2.6-1-2.6-2.6v-61.2c0-5.7-2.4-8.2-8.2-8.2H401v13.4h5.2c1.7 0 2.6 1 2.6 2.6v61.2zm63.4 0c0 5.8 2.4 8.2 8.2 8.2H519c5.7 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-19.7c-1.7 0-2.6-1-2.6-2.6v-20.3h27.7v-13.4H488v-22.4h19.2c1.7 0 2.6 1 2.6 2.6v5.2H524v-13c0-5.7-2.5-8.2-8.2-8.2h-51.6v13.4h7.8v63.9zm58.9-76v5.9h1.6v-5.9h2.7v-1.2h-7v1.2h2.7zm5.7-1.2v7.1h1.5v-5.7l2.3 5.7h1.3l2.3-5.7v5.7h1.5v-7.1h-2.3l-2.1 5.1-2.1-5.1h-2.4z"] }; +var faTeamspeak = { prefix: 'fab', iconName: 'teamspeak', icon: [453, 512, [], "f4f9", "M203.4 65.8c-10.3-2-42.1-3.7-52.3-3.7-8.4 0-6.9 2-6.9 2 63.7 50.1 75.4 121.1 75.6 122.1 1.9 15.6-3.1 22.9-8.7 31.3-1.4 1.8-2.7 5 .3 8.9l28.9 39.4h-.3c9.4 14.1 28.1 32.2-5.4 39.9-7.7 1.9-18.7 6.3-11.2 15.8 2.2 2.9 8.8 9.5 1.8 16.5-7.5 4.8-2.7 7.9-1.8 10.4 1.8 6.6-2.6 11.2-4.3 12.7-4.2 3.2-3.7 7.8-2.6 10.1v.1c3.1 13.1-1.7 27.1-3.9 34.9l.1-.1c-1.4 3.2 22-2.6 22.1-2.6 87.5-23 150.6-88.5 150.6-165.7-.1-86.3-78.7-157.9-182-172m239.4 126.7c-12.9-35.4-34.5-62.3-58.9-85.4-75.8-71.7-175.6-76.6-214-74.8C133 34 79.5 43.7 67.1 59.4c-4.6 5.8-4 6.2-24.4 103.2C36.7 165 0 181.3 0 225.9c-.3 88.7 133.8 89.3 133.8-.3 0-24.6-13-46.1-32.5-58V49.2c12-3 119.7-28.8 223.6 37.3 29.8 19 104.3 76.9 96.9 182.8-1.5 21.2-5.7 40.8-13.6 56.4-57 113.5-170.7 133.8-212.8 137.9-68.3 6.6-122.5-14.1-124-14-2.7.1-12 7.1-11.7 7.4 36.6 12.1 74.3 23 121 23 48 0 84.3-8.2 118-21.6C401.8 417.3 453.6 340 453.6 253.7c0-22.9-4.3-43.2-10.8-61.2m-246.3 33.6c-8.5-15.6.5-15.9 4.8-23.4 5.5-9.6 1.7-22.1-1.7-32.2-9.6-28.5-33.8-84.5-83-103.6v100c4.5 4.5 54.1 33.5 58.2 116.8 4.1 82.7-52 121.6-51.7 123.3 22.8 4.5 66 10.7 76.7-8.6 5.7-10.2-1.5-28.1-.9-28.1-3.6-14.2 7.8-19.4 7.8-21.8 0-1.4-7.2-3.1-7.2-8.1 0-5.9 8.5-6.2 9.4-10.7.9-4.5-3.1-7.8-5.1-16.6-3.5-19 27.9-16 30.8-23.1 1.4-3.3-1.4-7.8-3.4-10.7"] }; +var faTelegram = { prefix: 'fab', iconName: 'telegram', icon: [496, 512, [], "f2c6", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm121.8 169.9l-40.7 191.8c-3 13.6-11.1 16.9-22.4 10.5l-62-45.7-29.9 28.8c-3.3 3.3-6.1 6.1-12.5 6.1l4.4-63.1 114.9-103.8c5-4.4-1.1-6.9-7.7-2.5l-142 89.4-61.2-19.1c-13.3-4.2-13.6-13.3 2.8-19.7l239.1-92.2c11.1-4 20.8 2.7 17.2 19.5z"] }; +var faTelegramPlane = { prefix: 'fab', iconName: 'telegram-plane', icon: [448, 512, [], "f3fe", "M446.7 98.6l-67.6 318.8c-5.1 22.5-18.4 28.1-37.3 17.5l-103-75.9-49.7 47.8c-5.5 5.5-10.1 10.1-20.7 10.1l7.4-104.9 190.9-172.5c8.3-7.4-1.8-11.5-12.9-4.1L117.8 284 16.2 252.2c-22.1-6.9-22.5-22.1 4.6-32.7L418.2 66.4c18.4-6.9 34.5 4.1 28.5 32.2z"] }; +var faTencentWeibo = { prefix: 'fab', iconName: 'tencent-weibo', icon: [384, 512, [], "f1d5", "M72.3 495.8c1.4 19.9-27.6 22.2-29.7 2.9C31 368.8 73.7 259.2 144 185.5c-15.6-34 9.2-77.1 50.6-77.1 30.3 0 55.1 24.6 55.1 55.1 0 44-49.5 70.8-86.9 45.1-65.7 71.3-101.4 169.8-90.5 287.2zM192 .1C66.1.1-12.3 134.3 43.7 242.4 52.4 259.8 79 246.9 70 229 23.7 136.4 91 29.8 192 29.8c75.4 0 136.9 61.4 136.9 136.9 0 90.8-86.9 153.9-167.7 133.1-19.1-4.1-25.6 24.4-6.6 29.1 110.7 23.2 204-60 204-162.3C358.6 74.7 284 .1 192 .1z"] }; +var faThemeisle = { prefix: 'fab', iconName: 'themeisle', icon: [512, 512, [], "f2b2", "M208 88.286c0-10 6.286-21.714 17.715-21.714 11.142 0 17.714 11.714 17.714 21.714 0 10.285-6.572 21.714-17.714 21.714C214.286 110 208 98.571 208 88.286zm304 160c0 36.001-11.429 102.286-36.286 129.714-22.858 24.858-87.428 61.143-120.857 70.572l-1.143.286v32.571c0 16.286-12.572 30.571-29.143 30.571-10 0-19.429-5.714-24.572-14.286-5.427 8.572-14.856 14.286-24.856 14.286-10 0-19.429-5.714-24.858-14.286-5.142 8.572-14.571 14.286-24.57 14.286-10.286 0-19.429-5.714-24.858-14.286-5.143 8.572-14.571 14.286-24.571 14.286-18.857 0-29.429-15.714-29.429-32.857-16.286 12.285-35.715 19.428-56.571 19.428-22 0-43.429-8.285-60.286-22.857 10.285-.286 20.571-2.286 30.285-5.714-20.857-5.714-39.428-18.857-52-36.286 21.37 4.645 46.209 1.673 67.143-11.143-22-22-56.571-58.857-68.572-87.428C1.143 321.714 0 303.714 0 289.429c0-49.714 20.286-160 86.286-160 10.571 0 18.857 4.858 23.143 14.857a158.792 158.792 0 0 1 12-15.428c2-2.572 5.714-5.429 7.143-8.286 7.999-12.571 11.714-21.142 21.714-34C182.571 45.428 232 17.143 285.143 17.143c6 0 12 .285 17.714 1.143C313.714 6.571 328.857 0 344.572 0c14.571 0 29.714 6 40 16.286.857.858 1.428 2.286 1.428 3.428 0 3.714-10.285 13.429-12.857 16.286 4.286 1.429 15.714 6.858 15.714 12 0 2.857-2.857 5.143-4.571 7.143 31.429 27.714 49.429 67.143 56.286 108 4.286-5.143 10.285-8.572 17.143-8.572 10.571 0 20.857 7.144 28.571 14.001C507.143 187.143 512 221.714 512 248.286zM188 89.428c0 18.286 12.571 37.143 32.286 37.143 19.714 0 32.285-18.857 32.285-37.143 0-18-12.571-36.857-32.285-36.857-19.715 0-32.286 18.858-32.286 36.857zM237.714 194c0-19.714 3.714-39.143 8.571-58.286-52.039 79.534-13.531 184.571 68.858 184.571 21.428 0 42.571-7.714 60-20 2-7.429 3.714-14.857 3.714-22.572 0-14.286-6.286-21.428-20.572-21.428-4.571 0-9.143.857-13.429 1.714-63.343 12.668-107.142 3.669-107.142-63.999zm-41.142 254.858c0-11.143-8.858-20.857-20.286-20.857-11.429 0-20 9.715-20 20.857v32.571c0 11.143 8.571 21.142 20 21.142 11.428 0 20.286-9.715 20.286-21.142v-32.571zm49.143 0c0-11.143-8.572-20.857-20-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20-10 20-21.142v-32.571zm49.713 0c0-11.143-8.857-20.857-20.285-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20.285-9.715 20.285-21.142v-32.571zm49.715 0c0-11.143-8.857-20.857-20.286-20.857-11.428 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.858 21.142 20.286 21.142 11.429 0 20.286-10 20.286-21.142v-32.571zM421.714 286c-30.857 59.142-90.285 102.572-158.571 102.572-96.571 0-160.571-84.572-160.571-176.572 0-16.857 2-33.429 6-49.714-20 33.715-29.714 72.572-29.714 111.429 0 60.286 24.857 121.715 71.429 160.857 5.143-9.714 14.857-16.286 26-16.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.571-14.286 24.858-14.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.857-14.286 24.858-14.286 10 0 19.428 5.714 24.857 14.286 5.143-8.571 14.571-14.286 24.572-14.286 10.857 0 20.857 6.572 25.714 16 43.427-36.286 68.569-92 71.426-148.286zm10.572-99.714c0-53.714-34.571-105.714-92.572-105.714-30.285 0-58.571 15.143-78.857 36.857C240.862 183.812 233.41 254 302.286 254c28.805 0 97.357-28.538 84.286 36.857 28.857-26 45.714-65.714 45.714-104.571z"] }; +var faTradeFederation = { prefix: 'fab', iconName: 'trade-federation', icon: [496, 512, [], "f513", "M202.45 108.42v81.61H38.94l48.22 61.91h114.73v196.75h64.61V252.96h83.27v-62.69h-83.18V171.1h145.62v-62.68H202.45zm4.86 6h197.77v50.68H259.44v30.93h83.18v50.93h-83.26v195.73h-52.73V245.94H89.86l-39.95-49.91h157.4v-81.61zM247.99 8.8C111.03 8.8 0 119.83 0 256.8s111.03 248 247.99 248S496 393.76 496 256.8 384.96 8.8 247.99 8.8zm.02 13.24c129.66 0 234.76 105.12 234.76 234.78s-105.1 234.76-234.76 234.76S13.23 386.47 13.23 256.81 118.35 22.04 248.01 22.04zm0 7.89c-125.3 0-226.89 101.57-226.89 226.87s101.59 226.89 226.89 226.89S474.88 382.1 474.88 256.8 373.31 29.93 248.01 29.93zm-.02 13.3c117.95 0 213.56 95.62 213.56 213.56s-95.62 213.56-213.56 213.56S34.43 374.75 34.43 256.8 130.04 43.23 247.99 43.23zm-73.32 104.8l15.66 18.05-22.16-9.45-12.33 20.47 2.15-23.99-23.28-5.4 23.48-5.37-2.06-23.81 12.37 20.67 22.01-9.32-15.84 18.15zm-47.14-46.54l8.01 12.4 12.69-5.86-9.32 11.45 9.5 10.25-13.77-5.32-6.82 12.2.81-14.74-13.71-2.71 14.27-3.78-1.66-13.89zm250.77 75.59l11.99 19.56 20.88-9.11-14.9 17.45 15.11 17.04-21.2-8.78-11.54 19.64 1.8-22.87-22.24-4.9 22.31-5.36-2.21-22.67zm-107.05 98.45l13.86-3.22-1.28-14.17 7.35 12.18 13.08-5.59-9.31 10.75 9.36 10.71-13.1-5.54-7.29 12.21 1.22-14.17-13.89-3.16zm-125.43 6.5l23.73-3.87-1.73-24.53 11.01 21.38 22.79-9.22-16.93 17.08 15.81 18.83-21.47-10.82-13.02 20.86 3.66-23.77-23.85-5.94zm63.44-165.66v81.61H54.16l36.72 46.01h117.7v196.75h48.82V245.01h83.27v-47.03H257.4v-34.83h145.73v-46.78H209.26zm10.86 11.2h171.8v24.36H246.88v56.23h82.93v23.94h-82.93v197.42h-26.76V232.1H96.31l-20.09-23.94h143.9v-80.59z"] }; +var faTrello = { prefix: 'fab', iconName: 'trello', icon: [448, 512, [], "f181", "M392 32H56C25.1 32 0 57.1 0 88v336c0 30.9 25.1 56 56 56h336c30.9 0 56-25.1 56-56V88c0-30.9-25.1-56-56-56zM194.9 371.4c0 14.8-12 26.9-26.9 26.9H85.1c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9H168c14.8 0 26.9 12 26.9 26.9v254.3zm194.9-112c0 14.8-12 26.9-26.9 26.9H280c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9h82.9c14.8 0 26.9 12 26.9 26.9v142.3z"] }; +var faTripadvisor = { prefix: 'fab', iconName: 'tripadvisor', icon: [576, 512, [], "f262", "M166.4 280.521c0 13.236-10.73 23.966-23.966 23.966s-23.966-10.73-23.966-23.966 10.73-23.966 23.966-23.966 23.966 10.729 23.966 23.966zm264.962-23.956c-13.23 0-23.956 10.725-23.956 23.956 0 13.23 10.725 23.956 23.956 23.956 13.23 0 23.956-10.725 23.956-23.956-.001-13.231-10.726-23.956-23.956-23.956zm89.388 139.49c-62.667 49.104-153.276 38.109-202.379-24.559l-30.979 46.325-30.683-45.939c-48.277 60.39-135.622 71.891-197.885 26.055-64.058-47.158-77.759-137.316-30.601-201.374A186.762 186.762 0 0 0 0 139.416l90.286-.05a358.48 358.48 0 0 1 197.065-54.03 350.382 350.382 0 0 1 192.181 53.349l96.218.074a185.713 185.713 0 0 0-28.352 57.649c46.793 62.747 34.964 151.37-26.648 199.647zM259.366 281.761c-.007-63.557-51.535-115.075-115.092-115.068C80.717 166.7 29.2 218.228 29.206 281.785c.007 63.557 51.535 115.075 115.092 115.068 63.513-.075 114.984-51.539 115.068-115.052v-.04zm28.591-10.455c5.433-73.44 65.51-130.884 139.12-133.022a339.146 339.146 0 0 0-139.727-27.812 356.31 356.31 0 0 0-140.164 27.253c74.344 1.582 135.299 59.424 140.771 133.581zm251.706-28.767c-21.992-59.634-88.162-90.148-147.795-68.157-59.634 21.992-90.148 88.162-68.157 147.795v.032c22.038 59.607 88.198 90.091 147.827 68.113 59.615-22.004 90.113-88.162 68.125-147.783zm-326.039 37.975v.115c-.057 39.328-31.986 71.163-71.314 71.106-39.328-.057-71.163-31.986-71.106-71.314.057-39.328 31.986-71.163 71.314-71.106 39.259.116 71.042 31.94 71.106 71.199zm-24.512 0v-.084c-.051-25.784-20.994-46.645-46.778-46.594-25.784.051-46.645 20.994-46.594 46.777.051 25.784 20.994 46.645 46.777 46.594 25.726-.113 46.537-20.968 46.595-46.693zm313.423 0v.048c-.02 39.328-31.918 71.194-71.247 71.173s-71.194-31.918-71.173-71.247c.02-39.328 31.918-71.194 71.247-71.173 39.29.066 71.121 31.909 71.173 71.199zm-24.504-.008c-.009-25.784-20.918-46.679-46.702-46.67-25.784.009-46.679 20.918-46.67 46.702.009 25.784 20.918 46.678 46.702 46.67 25.765-.046 46.636-20.928 46.67-46.693v-.009z"] }; +var faTumblr = { prefix: 'fab', iconName: 'tumblr', icon: [320, 512, [], "f173", "M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z"] }; +var faTumblrSquare = { prefix: 'fab', iconName: 'tumblr-square', icon: [448, 512, [], "f174", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-82.3 364.2c-8.5 9.1-31.2 19.8-60.9 19.8-75.5 0-91.9-55.5-91.9-87.9v-90h-29.7c-3.4 0-6.2-2.8-6.2-6.2v-42.5c0-4.5 2.8-8.5 7.1-10 38.8-13.7 50.9-47.5 52.7-73.2.5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2h-52.1V321c0 21.4 14.8 33.5 42.5 22.4 3-1.2 5.6-2 8-1.4 2.2.5 3.6 2.1 4.6 4.9l13.8 40.2c1 3.2 2 6.7-.3 9.1z"] }; +var faTwitch = { prefix: 'fab', iconName: 'twitch', icon: [448, 512, [], "f1e8", "M40.1 32L10 108.9v314.3h107V480h60.2l56.8-56.8h87l117-117V32H40.1zm357.8 254.1L331 353H224l-56.8 56.8V353H76.9V72.1h321v214zM331 149v116.9h-40.1V149H331zm-107 0v116.9h-40.1V149H224z"] }; +var faTwitter = { prefix: 'fab', iconName: 'twitter', icon: [512, 512, [], "f099", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"] }; +var faTwitterSquare = { prefix: 'fab', iconName: 'twitter-square', icon: [448, 512, [], "f081", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z"] }; +var faTypo3 = { prefix: 'fab', iconName: 'typo3', icon: [433, 512, [], "f42b", "M330.8 341c-7 2.3-11.6 2.3-18.5 2.3-57.2 0-140.6-198.5-140.6-264.9 0-24.7 5.4-32.4 13.9-39.4-69.5 8.5-149.3 34-176.3 66.4-5.4 7.7-9.3 20.8-9.3 37.1C0 246 106.8 480 184.1 480c36.3 0 97.3-59.5 146.7-139M294.5 32c71.8 0 138.8 11.6 138.8 52.5 0 82.6-52.5 182.3-78.8 182.3-47.9 0-101.7-132.1-101.7-198.5 0-30.9 11.6-36.3 41.7-36.3"] }; +var faUber = { prefix: 'fab', iconName: 'uber', icon: [448, 512, [], "f402", "M414.1 32H33.9C15.2 32 0 47.2 0 65.9V446c0 18.8 15.2 34 33.9 34H414c18.7 0 33.9-15.2 33.9-33.9V65.9C448 47.2 432.8 32 414.1 32zM237.6 391.1C163 398.6 96.4 344.2 88.9 269.6h94.4V290c0 3.7 3 6.8 6.8 6.8H258c3.7 0 6.8-3 6.8-6.8v-67.9c0-3.7-3-6.8-6.8-6.8h-67.9c-3.7 0-6.8 3-6.8 6.8v20.4H88.9c7-69.4 65.4-122.2 135.1-122.2 69.7 0 128.1 52.8 135.1 122.2 7.5 74.5-46.9 141.1-121.5 148.6z"] }; +var faUikit = { prefix: 'fab', iconName: 'uikit', icon: [448, 512, [], "f403", "M443.9 128v256L218 512 0 384V169.7l87.6 45.1v117l133.5 75.5 135.8-75.5v-151l-101.1-57.6 87.6-53.1L443.9 128zM308.6 49.1L223.8 0l-88.6 54.8 86 47.3 87.4-53z"] }; +var faUniregistry = { prefix: 'fab', iconName: 'uniregistry', icon: [384, 512, [], "f404", "M281.1 220.1H384v-14.8H281.1v14.8zm0-37.1H384v-12.4H281.1V183zm0 74.2H384v-17.3H281.1v17.3zm-157.7 86.7H8.5c2.6 8.5 5.8 16.8 9.6 24.8h138.3c-12.9-5.7-24.1-14.2-33-24.8m145.7-12.4h109.7c1.8-7.3 3.1-14.7 3.9-22.3H278.3c-2.1 7.9-5.2 15.4-9.2 22.3m-41.5 37.1H367c3.7-8 5.8-16.2 8.5-24.8h-115c-8.8 10.7-20.1 19.2-32.9 24.8M384 32H281.1v2.5H384V32zM192 480c39.5 0 76.2-11.8 106.8-32.2H85.3C115.8 468.2 152.5 480 192 480m89.1-334.2H384V136H281.1v9.8zm0-37.1H384v-7.4H281.1v7.4zm0-37.1H384v-4.9H281.1v4.9zm-178.2 99H0V183h102.9v-12.4zM38.8 405.7h305.3c6.7-8.5 12.6-17.6 17.8-27.2H23c5.2 9.6 9.2 18.7 15.8 27.2m64.1-118.8v-12.4H0v12.4c0 2.5 0 5 .1 7.4h103.1c-.2-2.4-.3-4.9-.3-7.4m178.2 0c0 2.5-.1 5-.4 7.4h103.1c.1-2.5.2-4.9.2-7.4v-12.4H281.1v12.4zm-203 156h227.7c11.8-8.7 22.7-18.6 32.2-29.7H44.9c9.6 11 21.4 21 33.2 29.7m24.8-376.2H0v4.9h102.9v-4.9zm0-34.7H0v2.5h102.9V32zm0 173.3H0v14.8h102.9v-14.8zm0 34.6H0v17.3h102.9v-17.3zm0-103.9H0v9.9h102.9V136zm0-34.7H0v7.4h102.9v-7.4zm2.8 207.9H1.3c.9 7.6 2.2 15 3.9 22.3h109.7c-4-6.9-7.2-14.4-9.2-22.3"] }; +var faUntappd = { prefix: 'fab', iconName: 'untappd', icon: [640, 512, [], "f405", "M401.3 49.9c-79.8 160.1-84.6 152.5-87.9 173.2l-5.2 32.8c-1.9 12-6.6 23.5-13.7 33.4L145.6 497.1c-7.6 10.6-20.4 16.2-33.4 14.6-40.3-5-77.8-32.2-95.3-68.5-5.7-11.8-4.5-25.8 3.1-36.4l148.9-207.9c7.1-9.9 16.4-18 27.2-23.7l29.3-15.5c18.5-9.8 9.7-11.9 135.6-138.9 1-4.8 1-7.3 3.6-8 3-.7 6.6-1 6.3-4.6l-.4-4.6c-.2-1.9 1.3-3.6 3.2-3.6 4.5-.1 13.2 1.2 25.6 10 12.3 8.9 16.4 16.8 17.7 21.1.6 1.8-.6 3.7-2.4 4.2l-4.5 1.1c-3.4.9-2.5 4.4-2.3 7.4.1 2.8-2.3 3.6-6.5 6.1zM230.1 36.4c3.4.9 2.5 4.4 2.3 7.4-.2 2.7 2.1 3.5 6.4 6 7.9 15.9 15.3 30.5 22.2 44 .7 1.3 2.3 1.5 3.3.5 11.2-12 24.6-26.2 40.5-42.6 1.3-1.4 1.4-3.5.1-4.9-8-8.2-16.5-16.9-25.6-26.1-1-4.7-1-7.3-3.6-8-3-.8-6.6-1-6.3-4.6.3-3.3 1.4-8.1-2.8-8.2-4.5-.1-13.2 1.1-25.6 10-12.3 8.9-16.4 16.8-17.7 21.1-1.4 4.2 3.6 4.6 6.8 5.4zM620 406.7L471.2 198.8c-13.2-18.5-26.6-23.4-56.4-39.1-11.2-5.9-14.2-10.9-30.5-28.9-1-1.1-2.9-.9-3.6.5-46.3 88.8-47.1 82.8-49 94.8-1.7 10.7-1.3 20 .3 29.8 1.9 12 6.6 23.5 13.7 33.4l148.9 207.9c7.6 10.6 20.2 16.2 33.1 14.7 40.3-4.9 78-32 95.7-68.6 5.4-11.9 4.3-25.9-3.4-36.6z"] }; +var faUsb = { prefix: 'fab', iconName: 'usb', icon: [640, 512, [], "f287", "M641.5 256c0 3.1-1.7 6.1-4.5 7.5L547.9 317c-1.4.8-2.8 1.4-4.5 1.4-1.4 0-3.1-.3-4.5-1.1-2.8-1.7-4.5-4.5-4.5-7.8v-35.6H295.7c25.3 39.6 40.5 106.9 69.6 106.9H392V354c0-5 3.9-8.9 8.9-8.9H490c5 0 8.9 3.9 8.9 8.9v89.1c0 5-3.9 8.9-8.9 8.9h-89.1c-5 0-8.9-3.9-8.9-8.9v-26.7h-26.7c-75.4 0-81.1-142.5-124.7-142.5H140.3c-8.1 30.6-35.9 53.5-69 53.5C32 327.3 0 295.3 0 256s32-71.3 71.3-71.3c33.1 0 61 22.8 69 53.5 39.1 0 43.9 9.5 74.6-60.4C255 88.7 273 95.7 323.8 95.7c7.5-20.9 27-35.6 50.4-35.6 29.5 0 53.5 23.9 53.5 53.5s-23.9 53.5-53.5 53.5c-23.4 0-42.9-14.8-50.4-35.6H294c-29.1 0-44.3 67.4-69.6 106.9h310.1v-35.6c0-3.3 1.7-6.1 4.5-7.8 2.8-1.7 6.4-1.4 8.9.3l89.1 53.5c2.8 1.1 4.5 4.1 4.5 7.2z"] }; +var faUssunnah = { prefix: 'fab', iconName: 'ussunnah', icon: [512, 512, [], "f407", "M156.8 285.1l5.7 14.4h-8.2c-1.3-3.2-3.1-7.7-3.8-9.5-2.5-6.3-1.1-8.4 0-10 1.9-2.7 3.2-4.4 3.6-5.2 0 2.2.8 5.7 2.7 10.3zm297.3 18.8c-2.1 13.8-5.7 27.1-10.5 39.7l43 23.4-44.8-18.8c-5.3 13.2-12 25.6-19.9 37.2l34.2 30.2-36.8-26.4c-8.4 11.8-18 22.6-28.7 32.3l24.9 34.7-28.1-31.8c-11 9.6-23.1 18-36.1 25.1l15.7 37.2-19.3-35.3c-13.1 6.8-27 12.1-41.6 15.9l6.7 38.4-10.5-37.4c-14.3 3.4-29.2 5.3-44.5 5.4L256 512l-1.9-38.4c-15.3-.1-30.2-2-44.5-5.3L199 505.6l6.7-38.2c-14.6-3.7-28.6-9.1-41.7-15.8l-19.2 35.1 15.6-37c-13-7-25.2-15.4-36.2-25.1l-27.9 31.6 24.7-34.4c-10.7-9.7-20.4-20.5-28.8-32.3l-36.5 26.2 33.9-29.9c-7.9-11.6-14.6-24.1-20-37.3l-44.4 18.7L67.8 344c-4.8-12.7-8.4-26.1-10.5-39.9l-51 9 50.3-14.2c-1.1-8.5-1.7-17.1-1.7-25.9 0-4.7.2-9.4.5-14.1L0 256l56-2.8c1.3-13.1 3.8-25.8 7.5-38.1L6.4 199l58.9 10.4c4-12 9.1-23.5 15.2-34.4l-55.1-30 58.3 24.6C90 159 97.2 149.2 105.3 140L55.8 96.4l53.9 38.7c8.1-8.6 17-16.5 26.6-23.6l-40-55.6 45.6 51.6c9.5-6.6 19.7-12.3 30.3-17.2l-27.3-64.9 33.8 62.1c10.5-4.4 21.4-7.9 32.7-10.4L199 6.4l19.5 69.2c11-2.1 22.3-3.2 33.8-3.4L256 0l3.6 72.2c11.5.2 22.8 1.4 33.8 3.5L313 6.4l-12.4 70.7c11.3 2.6 22.2 6.1 32.6 10.5l33.9-62.2-27.4 65.1c10.6 4.9 20.7 10.7 30.2 17.2l45.8-51.8-40.1 55.9c9.5 7.1 18.4 15 26.5 23.6l54.2-38.9-49.7 43.9c8 9.1 15.2 18.9 21.5 29.4l58.7-24.7-55.5 30.2c6.1 10.9 11.1 22.3 15.1 34.3l59.3-10.4-57.5 16.2c3.7 12.2 6.2 24.9 7.5 37.9L512 256l-56 2.8c.3 4.6.5 9.3.5 14.1 0 8.7-.6 17.3-1.6 25.8l50.7 14.3-51.5-9.1zm-21.8-31c0-97.5-79-176.5-176.5-176.5s-176.5 79-176.5 176.5 79 176.5 176.5 176.5 176.5-79 176.5-176.5zm-24 0c0 84.3-68.3 152.6-152.6 152.6s-152.6-68.3-152.6-152.6 68.3-152.6 152.6-152.6 152.6 68.3 152.6 152.6zM195 241c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-40.7-19c0 2.1 1.3 3.8 3.6 5.1 3.5 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-19 0c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.4 6.8-9.6 10.9-9.6 12.6zm204.9 87.9c-8.4-3-8.7-6.8-8.7-15.6V182c-8.2 12.5-14.2 18.6-18 18.6 6.3 14.4 9.5 23.9 9.5 28.3v64.3c0 2.2-2.2 6.5-4.7 6.5h-18c-2.8-7.5-10.2-26.9-15.3-40.3-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3 2.6 6.7 6.4 16.5 7.9 20.2h-9.2c-3.9-10.4-9.6-25.4-11.8-31.1-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3.8 2 2.8 7.3 4.3 10.9H256c-1.5-4.1-5.6-14.6-8.4-22-2 2.5-7.2 9.2-10.7 13.7 2.5 1.6 4.3 3.6 5.2 6.3.2.6.5 1.4.6 1.7H225c-4.6-13.9-11.4-27.7-11.4-34.1 0-2.2.3-5.1 1.1-8.2-8.8 10.8-14 15.9-14 25 0 7.5 10.4 28.3 10.4 33.3 0 1.7-.5 3.3-1.4 4.9-9.6-12.7-15.5-20.7-18.8-20.7h-12l-11.2-28c-3.8-9.6-5.7-16-5.7-18.8 0-3.8.5-7.7 1.7-12.2-1 1.3-3.7 4.7-5.5 7.1-.8-2.1-3.1-7.7-4.6-11.5-2.1 2.5-7.5 9.1-11.2 13.6.9 2.3 3.3 8.1 4.9 12.2-2.5 3.3-9.1 11.8-13.6 17.7-4 5.3-5.8 13.3-2.7 21.8 2.5 6.7 2 7.9-1.7 14.1H191c5.5 0 14.3 14 15.5 22 13.2-16 15.4-19.6 16.8-21.6h107c3.9 0 7.2-1.9 9.9-5.8zm20.1-26.6V181.7c-9 12.5-15.9 18.6-20.7 18.6 7.1 14.4 10.7 23.9 10.7 28.3v66.3c0 17.5 8.6 20.4 24 20.4 8.1 0 12.5-.8 13.7-2.7-4.3-1.6-7.6-2.5-9.9-3.3-8.1-3.2-17.8-7.4-17.8-26z"] }; +var faVaadin = { prefix: 'fab', iconName: 'vaadin', icon: [448, 512, [], "f408", "M224.5 140.7c1.5-17.6 4.9-52.7 49.8-52.7h98.6c20.7 0 32.1-7.8 32.1-21.6V54.1c0-12.2 9.3-22.1 21.5-22.1S448 41.9 448 54.1v36.5c0 42.9-21.5 62-66.8 62H280.7c-30.1 0-33 14.7-33 27.1 0 1.3-.1 2.5-.2 3.7-.7 12.3-10.9 22.2-23.4 22.2s-22.7-9.8-23.4-22.2c-.1-1.2-.2-2.4-.2-3.7 0-12.3-3-27.1-33-27.1H66.8c-45.3 0-66.8-19.1-66.8-62V54.1C0 41.9 9.4 32 21.6 32s21.5 9.9 21.5 22.1v12.3C43.1 80.2 54.5 88 75.2 88h98.6c44.8 0 48.3 35.1 49.8 52.7h.9zM224 456c11.5 0 21.4-7 25.7-16.3 1.1-1.8 97.1-169.6 98.2-171.4 11.9-19.6-3.2-44.3-27.2-44.3-13.9 0-23.3 6.4-29.8 20.3L224 362l-66.9-117.7c-6.4-13.9-15.9-20.3-29.8-20.3-24 0-39.1 24.6-27.2 44.3 1.1 1.9 97.1 169.6 98.2 171.4 4.3 9.3 14.2 16.3 25.7 16.3z"] }; +var faViacoin = { prefix: 'fab', iconName: 'viacoin', icon: [384, 512, [], "f237", "M384 32h-64l-80.7 192h-94.5L64 32H0l48 112H0v48h68.5l13.8 32H0v48h102.8L192 480l89.2-208H384v-48h-82.3l13.8-32H384v-48h-48l48-112zM192 336l-27-64h54l-27 64z"] }; +var faViadeo = { prefix: 'fab', iconName: 'viadeo', icon: [448, 512, [], "f2a9", "M276.2 150.5v.7C258.3 98.6 233.6 47.8 205.4 0c43.3 29.2 67 100 70.8 150.5zm32.7 121.7c7.6 18.2 11 37.5 11 57 0 77.7-57.8 141-137.8 139.4l3.8-.3c74.2-46.7 109.3-118.6 109.3-205.1 0-38.1-6.5-75.9-18.9-112 1 11.7 1 23.7 1 35.4 0 91.8-18.1 241.6-116.6 280C95 455.2 49.4 398 49.4 329.2c0-75.6 57.4-142.3 135.4-142.3 16.8 0 33.7 3.1 49.1 9.6 1.7-15.1 6.5-29.9 13.4-43.3-19.9-7.2-41.2-10.7-62.5-10.7-161.5 0-238.7 195.9-129.9 313.7 67.9 74.6 192 73.9 259.8 0 56.6-61.3 60.9-142.4 36.4-201-12.7 8-27.1 13.9-42.2 17zM418.1 11.7c-31 66.5-81.3 47.2-115.8 80.1-12.4 12-20.6 34-20.6 50.5 0 14.1 4.5 27.1 12 38.8 47.4-11 98.3-46 118.2-90.7-.7 5.5-4.8 14.4-7.2 19.2-20.3 35.7-64.6 65.6-99.7 84.9 14.8 14.4 33.7 25.8 55 25.8 79 0 110.1-134.6 58.1-208.6z"] }; +var faViadeoSquare = { prefix: 'fab', iconName: 'viadeo-square', icon: [448, 512, [], "f2aa", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM280.7 381.2c-42.4 46.2-120 46.6-162.4 0-68-73.6-19.8-196.1 81.2-196.1 13.3 0 26.6 2.1 39.1 6.7-4.3 8.4-7.3 17.6-8.4 27.1-9.7-4.1-20.2-6-30.7-6-48.8 0-84.6 41.7-84.6 88.9 0 43 28.5 78.7 69.5 85.9 61.5-24 72.9-117.6 72.9-175 0-7.3 0-14.8-.6-22.1-11.2-32.9-26.6-64.6-44.2-94.5 27.1 18.3 41.9 62.5 44.2 94.1v.4c7.7 22.5 11.8 46.2 11.8 70 0 54.1-21.9 99-68.3 128.2l-2.4.2c50 1 86.2-38.6 86.2-87.2 0-12.2-2.1-24.3-6.9-35.7 9.5-1.9 18.5-5.6 26.4-10.5 15.3 36.6 12.6 87.3-22.8 125.6zM309 233.7c-13.3 0-25.1-7.1-34.4-16.1 21.9-12 49.6-30.7 62.3-53 1.5-3 4.1-8.6 4.5-12-12.5 27.9-44.2 49.8-73.9 56.7-4.7-7.3-7.5-15.5-7.5-24.3 0-10.3 5.2-24.1 12.9-31.6 21.6-20.5 53-8.5 72.4-50 32.5 46.2 13.1 130.3-36.3 130.3z"] }; +var faViber = { prefix: 'fab', iconName: 'viber', icon: [512, 512, [], "f409", "M444 49.9C431.3 38.2 379.9.9 265.3.4c0 0-135.1-8.1-200.9 52.3C27.8 89.3 14.9 143 13.5 209.5c-1.4 66.5-3.1 191.1 117 224.9h.1l-.1 51.6s-.8 20.9 13 25.1c16.6 5.2 26.4-10.7 42.3-27.8 8.7-9.4 20.7-23.2 29.8-33.7 82.2 6.9 145.3-8.9 152.5-11.2 16.6-5.4 110.5-17.4 125.7-142 15.8-128.6-7.6-209.8-49.8-246.5zM457.9 287c-12.9 104-89 110.6-103 115.1-6 1.9-61.5 15.7-131.2 11.2 0 0-52 62.7-68.2 79-5.3 5.3-11.1 4.8-11-5.7 0-6.9.4-85.7.4-85.7-.1 0-.1 0 0 0-101.8-28.2-95.8-134.3-94.7-189.8 1.1-55.5 11.6-101 42.6-131.6 55.7-50.5 170.4-43 170.4-43 96.9.4 143.3 29.6 154.1 39.4 35.7 30.6 53.9 103.8 40.6 211.1zm-139-80.8c.4 8.6-12.5 9.2-12.9.6-1.1-22-11.4-32.7-32.6-33.9-8.6-.5-7.8-13.4.7-12.9 27.9 1.5 43.4 17.5 44.8 46.2zm20.3 11.3c1-42.4-25.5-75.6-75.8-79.3-8.5-.6-7.6-13.5.9-12.9 58 4.2 88.9 44.1 87.8 92.5-.1 8.6-13.1 8.2-12.9-.3zm47 13.4c.1 8.6-12.9 8.7-12.9.1-.6-81.5-54.9-125.9-120.8-126.4-8.5-.1-8.5-12.9 0-12.9 73.7.5 133 51.4 133.7 139.2zM374.9 329v.2c-10.8 19-31 40-51.8 33.3l-.2-.3c-21.1-5.9-70.8-31.5-102.2-56.5-16.2-12.8-31-27.9-42.4-42.4-10.3-12.9-20.7-28.2-30.8-46.6-21.3-38.5-26-55.7-26-55.7-6.7-20.8 14.2-41 33.3-51.8h.2c9.2-4.8 18-3.2 23.9 3.9 0 0 12.4 14.8 17.7 22.1 5 6.8 11.7 17.7 15.2 23.8 6.1 10.9 2.3 22-3.7 26.6l-12 9.6c-6.1 4.9-5.3 14-5.3 14s17.8 67.3 84.3 84.3c0 0 9.1.8 14-5.3l9.6-12c4.6-6 15.7-9.8 26.6-3.7 14.7 8.3 33.4 21.2 45.8 32.9 7 5.7 8.6 14.4 3.8 23.6z"] }; +var faVimeo = { prefix: 'fab', iconName: 'vimeo', icon: [448, 512, [], "f40a", "M403.2 32H44.8C20.1 32 0 52.1 0 76.8v358.4C0 459.9 20.1 480 44.8 480h358.4c24.7 0 44.8-20.1 44.8-44.8V76.8c0-24.7-20.1-44.8-44.8-44.8zM377 180.8c-1.4 31.5-23.4 74.7-66 129.4-44 57.2-81.3 85.8-111.7 85.8-18.9 0-34.8-17.4-47.9-52.3-25.5-93.3-36.4-148-57.4-148-2.4 0-10.9 5.1-25.4 15.2l-15.2-19.6c37.3-32.8 72.9-69.2 95.2-71.2 25.2-2.4 40.7 14.8 46.5 51.7 20.7 131.2 29.9 151 67.6 91.6 13.5-21.4 20.8-37.7 21.8-48.9 3.5-33.2-25.9-30.9-45.8-22.4 15.9-52.1 46.3-77.4 91.2-76 33.3.9 49 22.5 47.1 64.7z"] }; +var faVimeoSquare = { prefix: 'fab', iconName: 'vimeo-square', icon: [448, 512, [], "f194", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16.2 149.6c-1.4 31.1-23.2 73.8-65.3 127.9-43.5 56.5-80.3 84.8-110.4 84.8-18.7 0-34.4-17.2-47.3-51.6-25.2-92.3-35.9-146.4-56.7-146.4-2.4 0-10.8 5-25.1 15.1L64 192c36.9-32.4 72.1-68.4 94.1-70.4 24.9-2.4 40.2 14.6 46 51.1 20.5 129.6 29.6 149.2 66.8 90.5 13.4-21.2 20.6-37.2 21.5-48.3 3.4-32.8-25.6-30.6-45.2-22.2 15.7-51.5 45.8-76.5 90.1-75.1 32.9 1 48.4 22.4 46.5 64z"] }; +var faVimeoV = { prefix: 'fab', iconName: 'vimeo-v', icon: [448, 512, [], "f27d", "M447.8 153.6c-2 43.6-32.4 103.3-91.4 179.1-60.9 79.2-112.4 118.8-154.6 118.8-26.1 0-48.2-24.1-66.3-72.3C100.3 250 85.3 174.3 56.2 174.3c-3.4 0-15.1 7.1-35.2 21.1L0 168.2c51.6-45.3 100.9-95.7 131.8-98.5 34.9-3.4 56.3 20.5 64.4 71.5 28.7 181.5 41.4 208.9 93.6 126.7 18.7-29.6 28.8-52.1 30.2-67.6 4.8-45.9-35.8-42.8-63.3-31 22-72.1 64.1-107.1 126.2-105.1 45.8 1.2 67.5 31.1 64.9 89.4z"] }; +var faVine = { prefix: 'fab', iconName: 'vine', icon: [384, 512, [], "f1ca", "M384 254.7v52.1c-18.4 4.2-36.9 6.1-52.1 6.1-36.9 77.4-103 143.8-125.1 156.2-14 7.9-27.1 8.4-42.7-.8C137 452 34.2 367.7 0 102.7h74.5C93.2 261.8 139 343.4 189.3 404.5c27.9-27.9 54.8-65.1 75.6-106.9-49.8-25.3-80.1-80.9-80.1-145.6 0-65.6 37.7-115.1 102.2-115.1 114.9 0 106.2 127.9 81.6 181.5 0 0-46.4 9.2-63.5-20.5 3.4-11.3 8.2-30.8 8.2-48.5 0-31.3-11.3-46.6-28.4-46.6-18.2 0-30.8 17.1-30.8 50 .1 79.2 59.4 118.7 129.9 101.9z"] }; +var faVk = { prefix: 'fab', iconName: 'vk', icon: [576, 512, [], "f189", "M545 117.7c3.7-12.5 0-21.7-17.8-21.7h-58.9c-15 0-21.9 7.9-25.6 16.7 0 0-30 73.1-72.4 120.5-13.7 13.7-20 18.1-27.5 18.1-3.7 0-9.4-4.4-9.4-16.9V117.7c0-15-4.2-21.7-16.6-21.7h-92.6c-9.4 0-15 7-15 13.5 0 14.2 21.2 17.5 23.4 57.5v86.8c0 19-3.4 22.5-10.9 22.5-20 0-68.6-73.4-97.4-157.4-5.8-16.3-11.5-22.9-26.6-22.9H38.8c-16.8 0-20.2 7.9-20.2 16.7 0 15.6 20 93.1 93.1 195.5C160.4 378.1 229 416 291.4 416c37.5 0 42.1-8.4 42.1-22.9 0-66.8-3.4-73.1 15.4-73.1 8.7 0 23.7 4.4 58.7 38.1 40 40 46.6 57.9 69 57.9h58.9c16.8 0 25.3-8.4 20.4-25-11.2-34.9-86.9-106.7-90.3-111.5-8.7-11.2-6.2-16.2 0-26.2.1-.1 72-101.3 79.4-135.6z"] }; +var faVnv = { prefix: 'fab', iconName: 'vnv', icon: [640, 512, [], "f40b", "M104.9 352c-34.1 0-46.4-30.4-46.4-30.4L2.6 210.1S-7.8 192 13 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.7-74.5c5.6-9.5 8.4-18.1 18.8-18.1h32.8c20.8 0 10.4 18.1 10.4 18.1l-55.8 111.5S174.2 352 140 352h-35.1zm395 0c-34.1 0-46.4-30.4-46.4-30.4l-55.9-111.5S387.2 192 408 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.8-74.5c5.6-9.5 8.4-18.1 18.8-18.1H627c20.8 0 10.4 18.1 10.4 18.1l-55.9 111.5S569.3 352 535.1 352h-35.2zM337.6 192c34.1 0 46.4 30.4 46.4 30.4l55.9 111.5s10.4 18.1-10.4 18.1h-32.8c-10.4 0-13.2-8.7-18.8-18.1l-36.7-74.5s-5.2-13.1-21.1-13.1c-15.9 0-21.1 13.1-21.1 13.1l-36.7 74.5c-5.6 9.4-8.4 18.1-18.8 18.1h-32.9c-20.8 0-10.4-18.1-10.4-18.1l55.9-111.5s12.2-30.4 46.4-30.4h35.1z"] }; +var faVuejs = { prefix: 'fab', iconName: 'vuejs', icon: [448, 512, [], "f41f", "M356.9 64.3H280l-56 88.6-48-88.6H0L224 448 448 64.3h-91.1zm-301.2 32h53.8L224 294.5 338.4 96.3h53.8L224 384.5 55.7 96.3z"] }; +var faWeibo = { prefix: 'fab', iconName: 'weibo', icon: [512, 512, [], "f18a", "M407 177.6c7.6-24-13.4-46.8-37.4-41.7-22 4.8-28.8-28.1-7.1-32.8 50.1-10.9 92.3 37.1 76.5 84.8-6.8 21.2-38.8 10.8-32-10.3zM214.8 446.7C108.5 446.7 0 395.3 0 310.4c0-44.3 28-95.4 76.3-143.7C176 67 279.5 65.8 249.9 161c-4 13.1 12.3 5.7 12.3 6 79.5-33.6 140.5-16.8 114 51.4-3.7 9.4 1.1 10.9 8.3 13.1 135.7 42.3 34.8 215.2-169.7 215.2zm143.7-146.3c-5.4-55.7-78.5-94-163.4-85.7-84.8 8.6-148.8 60.3-143.4 116s78.5 94 163.4 85.7c84.8-8.6 148.8-60.3 143.4-116zM347.9 35.1c-25.9 5.6-16.8 43.7 8.3 38.3 72.3-15.2 134.8 52.8 111.7 124-7.4 24.2 29.1 37 37.4 12 31.9-99.8-55.1-195.9-157.4-174.3zm-78.5 311c-17.1 38.8-66.8 60-109.1 46.3-40.8-13.1-58-53.4-40.3-89.7 17.7-35.4 63.1-55.4 103.4-45.1 42 10.8 63.1 50.2 46 88.5zm-86.3-30c-12.9-5.4-30 .3-38 12.9-8.3 12.9-4.3 28 8.6 34 13.1 6 30.8.3 39.1-12.9 8-13.1 3.7-28.3-9.7-34zm32.6-13.4c-5.1-1.7-11.4.6-14.3 5.4-2.9 5.1-1.4 10.6 3.7 12.9 5.1 2 11.7-.3 14.6-5.4 2.8-5.2 1.1-10.9-4-12.9z"] }; +var faWeixin = { prefix: 'fab', iconName: 'weixin', icon: [576, 512, [], "f1d7", "M385.2 167.6c6.4 0 12.6.3 18.8 1.1C387.4 90.3 303.3 32 207.7 32 100.5 32 13 104.8 13 197.4c0 53.4 29.3 97.5 77.9 131.6l-19.3 58.6 68-34.1c24.4 4.8 43.8 9.7 68.2 9.7 6.2 0 12.1-.3 18.3-.8-4-12.9-6.2-26.6-6.2-40.8-.1-84.9 72.9-154 165.3-154zm-104.5-52.9c14.5 0 24.2 9.7 24.2 24.4 0 14.5-9.7 24.2-24.2 24.2-14.8 0-29.3-9.7-29.3-24.2.1-14.7 14.6-24.4 29.3-24.4zm-136.4 48.6c-14.5 0-29.3-9.7-29.3-24.2 0-14.8 14.8-24.4 29.3-24.4 14.8 0 24.4 9.7 24.4 24.4 0 14.6-9.6 24.2-24.4 24.2zM563 319.4c0-77.9-77.9-141.3-165.4-141.3-92.7 0-165.4 63.4-165.4 141.3S305 460.7 397.6 460.7c19.3 0 38.9-5.1 58.6-9.9l53.4 29.3-14.8-48.6C534 402.1 563 363.2 563 319.4zm-219.1-24.5c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.8 0 24.4 9.7 24.4 19.3 0 10-9.7 19.6-24.4 19.6zm107.1 0c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.5 0 24.4 9.7 24.4 19.3.1 10-9.9 19.6-24.4 19.6z"] }; +var faWhatsapp = { prefix: 'fab', iconName: 'whatsapp', icon: [448, 512, [], "f232", "M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"] }; +var faWhatsappSquare = { prefix: 'fab', iconName: 'whatsapp-square', icon: [448, 512, [], "f40c", "M224 122.8c-72.7 0-131.8 59.1-131.9 131.8 0 24.9 7 49.2 20.2 70.1l3.1 5-13.3 48.6 49.9-13.1 4.8 2.9c20.2 12 43.4 18.4 67.1 18.4h.1c72.6 0 133.3-59.1 133.3-131.8 0-35.2-15.2-68.3-40.1-93.2-25-25-58-38.7-93.2-38.7zm77.5 188.4c-3.3 9.3-19.1 17.7-26.7 18.8-12.6 1.9-22.4.9-47.5-9.9-39.7-17.2-65.7-57.2-67.7-59.8-2-2.6-16.2-21.5-16.2-41s10.2-29.1 13.9-33.1c3.6-4 7.9-5 10.6-5 2.6 0 5.3 0 7.6.1 2.4.1 5.7-.9 8.9 6.8 3.3 7.9 11.2 27.4 12.2 29.4s1.7 4.3.3 6.9c-7.6 15.2-15.7 14.6-11.6 21.6 15.3 26.3 30.6 35.4 53.9 47.1 4 2 6.3 1.7 8.6-1 2.3-2.6 9.9-11.6 12.5-15.5 2.6-4 5.3-3.3 8.9-2 3.6 1.3 23.1 10.9 27.1 12.9s6.6 3 7.6 4.6c.9 1.9.9 9.9-2.4 19.1zM400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM223.9 413.2c-26.6 0-52.7-6.7-75.8-19.3L64 416l22.5-82.2c-13.9-24-21.2-51.3-21.2-79.3C65.4 167.1 136.5 96 223.9 96c42.4 0 82.2 16.5 112.2 46.5 29.9 30 47.9 69.8 47.9 112.2 0 87.4-72.7 158.5-160.1 158.5z"] }; +var faWhmcs = { prefix: 'fab', iconName: 'whmcs', icon: [448, 512, [], "f40d", "M448 161v-21.3l-28.5-8.8-2.2-10.4 20.1-20.7L427 80.4l-29 7.5-7.2-7.5 7.5-28.2-19.1-11.6-21.3 21-10.7-3.2-7-26.4h-22.6l-6.2 26.4-12.1 3.2-19.7-21-19.4 11 8.1 27.7-8.1 8.4-28.5-7.5-11 19.1 20.7 21-2.9 10.4-28.5 7.8-.3 21.7 28.8 7.5 2.4 12.1-20.1 19.9 10.4 18.5 29.6-7.5 7.2 8.6-8.1 26.9 19.9 11.6 19.4-20.4 11.6 2.9 6.7 28.5 22.6.3 6.7-28.8 11.6-3.5 20.7 21.6 20.4-12.1-8.8-28 7.8-8.1 28.8 8.8 10.3-20.1-20.9-18.8 2.2-12.1 29.1-7zm-119.2 45.2c-31.3 0-56.8-25.4-56.8-56.8s25.4-56.8 56.8-56.8 56.8 25.4 56.8 56.8c0 31.5-25.4 56.8-56.8 56.8zm72.3 16.4l46.9 14.5V277l-55.1 13.4-4.1 22.7 38.9 35.3-19.2 37.9-54-16.7-14.6 15.2 16.7 52.5-38.3 22.7-38.9-40.5-21.7 6.6-12.6 54-42.4-.5-12.6-53.6-21.7-5.6-36.4 38.4-37.4-21.7 15.2-50.5-13.7-16.1-55.5 14.1-19.7-34.8 37.9-37.4-4.8-22.8-54-14.1.5-40.9L54 219.9l5.7-19.7-38.9-39.4L41.5 125l53.6 14.1 15.2-15.7-15.2-52 36.4-20.7 36.8 39.4L191 84l11.6-52H245l11.6 45.9L234 72l-6.3-1.7-3.3 5.7-11 19.1-3.3 5.6 4.6 4.6 17.2 17.4-.3 1-23.8 6.5-6.2 1.7-.1 6.4-.2 12.9C153.8 161.6 118 204 118 254.7c0 58.3 47.3 105.7 105.7 105.7 50.5 0 92.7-35.4 103.2-82.8l13.2.2 6.9.1 1.6-6.7 5.6-24 1.9-.6 17.1 17.8 4.7 4.9 5.8-3.4 20.4-12.1 5.8-3.5-2-6.5-6.8-21.2z"] }; +var faWikipediaW = { prefix: 'fab', iconName: 'wikipedia-w', icon: [640, 512, [], "f266", "M640 51.2l-.3 12.2c-28.1.8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3.3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4.2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5.3v13.1c-19.4.6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4.3-3.6 0-10.3.3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5.8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1.2.5z"] }; +var faWindows = { prefix: 'fab', iconName: 'windows', icon: [448, 512, [], "f17a", "M0 93.7l183.6-25.3v177.4H0V93.7zm0 324.6l183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z"] }; +var faWolfPackBattalion = { prefix: 'fab', iconName: 'wolf-pack-battalion', icon: [456, 512, [], "f514", "M239.73 471.53l10.56 15.84 5.28-12.32 5.28 7.04V512c21.06-7.92 21.11-66.86 25.51-97.21 4.62-31.89-.88-92.81 81.37-149.11-8.88-23.61-12-49.43-2.64-80.05 27.87 3.34 53.94 10.58 63.34 54.1l-30.35 8.36c11.15 23.04 17.01 46.76 13.2 72.14L384 313.18l-6.16 33.43-18.47-7.04-8.8 33.43-19.35-7.04 26.39 21.11 8.8-28.15 24.63 5.28 7.04-35.63 26.39 14.52c.25-20.02 6.97-58.06-8.8-84.45l26.39 5.28c3.99-22.07-2.38-39.21-7.92-56.74l22.43 9.68c-.44-25.07-29.94-56.79-61.58-58.5-20.22-1.09-56.74-25.17-54.1-51.9 1.96-19.87 17.45-42.62 43.11-49.7-43.99 36.51-9.68 67.3 5.28 73.46 4.4-11.44 17.54-69.08 0-130.2-40.47 22.87-89.73 65.1-93.25 147.79l-58.06 38.71-3.52 93.25 107.33-59.82 7.04 7.04-17.59 3.52-43.99 38.71-15.84-5.28-28.15 49.26-3.52 119.64 21.11 15.84-32.55 15.84-32.55-15.84 21.11-15.84-3.52-119.64-28.15-49.26-15.84 5.28-43.99-38.71-17.59-3.52 7.04-7.04 107.33 59.82-3.52-93.25-58.06-38.71C157.03 65.1 107.77 22.87 67.3 0c-17.54 61.12-4.4 118.76 0 130.2 14.96-6.16 49.26-36.95 5.28-73.46 25.66 7.08 41.15 29.83 43.11 49.7 2.63 26.74-33.88 50.81-54.1 51.9C29.94 160.06.44 191.78 0 216.85l22.43-9.68c-5.54 17.53-11.91 34.67-7.92 56.74l26.39-5.28c-15.76 26.39-9.05 64.43-8.8 84.45l26.39-14.52 7.04 35.63 24.63-5.28 8.8 28.15 26.39-21.11-19.34 7.05-8.8-33.43-18.47 7.04-6.16-33.43-27.27 7.04c-3.82-25.38 2.05-49.1 13.2-72.14l-30.35-8.36c9.4-43.52 35.47-50.77 63.34-54.1 9.36 30.62 6.24 56.45-2.64 80.05 82.25 56.3 76.75 117.23 81.37 149.11 4.4 30.35 4.45 89.29 25.51 97.21v-29.91l5.28-7.04 5.28 12.32 10.56-15.84 11.44 21.11 11.43-21.1zm79.17-95.01l-15.84-10.56c7.47-4.36 13.76-8.42 19.35-12.32-.6 7.26-.27 13.88-3.51 22.88zm28.15-49.26c-.4 10.94-.9 21.66-1.76 31.67-7.85-1.86-15.57-3.8-21.11-7.04 8.24-7.9 15.55-16.27 22.87-24.63zm24.63 5.28c-.02-13.43-2.05-24.21-5.28-33.43-5.38 9.09-11.23 18.18-18.47 27.27l23.75 6.16zm3.52-80.94c19.44 12.81 27.8 33.66 29.91 56.3-12.32-4.53-24.63-9.31-36.95-10.56 5.06-11.99 6.65-28.14 7.04-45.74zm-1.76-45.74c.81 14.3 1.84 28.82 1.76 42.23 19.22-8.11 29.78-9.72 43.99-14.08-10.6-18.95-27.22-25.52-45.75-28.15zM137.68 376.52l15.84-10.56c-7.47-4.36-13.76-8.42-19.35-12.32.6 7.26.27 13.88 3.51 22.88zm-28.15-49.26c.4 10.94.9 21.66 1.76 31.67 7.85-1.86 15.57-3.8 21.11-7.04-8.24-7.9-15.55-16.27-22.87-24.63zm-24.64 5.28c.02-13.43 2.05-24.21 5.28-33.43 5.38 9.09 11.23 18.18 18.47 27.27l-23.75 6.16zm-3.52-80.94c-19.44 12.81-27.8 33.66-29.91 56.3 12.32-4.53 24.63-9.31 36.95-10.56-5.05-11.99-6.65-28.14-7.04-45.74zm1.76-45.74c-.81 14.3-1.84 28.82-1.76 42.23-19.22-8.11-29.78-9.72-43.99-14.08 10.61-18.95 27.22-25.52 45.75-28.15z"] }; +var faWordpress = { prefix: 'fab', iconName: 'wordpress', icon: [512, 512, [], "f19a", "M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z"] }; +var faWordpressSimple = { prefix: 'fab', iconName: 'wordpress-simple', icon: [512, 512, [], "f411", "M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8zM33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256zm223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6zm30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3-80.7-239.6zm81.4 297.2l68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7z"] }; +var faWpbeginner = { prefix: 'fab', iconName: 'wpbeginner', icon: [512, 512, [], "f297", "M462.799 322.374C519.01 386.682 466.961 480 370.944 480c-39.602 0-78.824-17.687-100.142-50.04-6.887.356-22.702.356-29.59 0C219.848 462.381 180.588 480 141.069 480c-95.49 0-148.348-92.996-91.855-157.626C-29.925 190.523 80.479 32 256.006 32c175.632 0 285.87 158.626 206.793 290.374zm-339.647-82.972h41.529v-58.075h-41.529v58.075zm217.18 86.072v-23.839c-60.506 20.915-132.355 9.198-187.589-33.971l.246 24.897c51.101 46.367 131.746 57.875 187.343 32.913zm-150.753-86.072h166.058v-58.075H189.579v58.075z"] }; +var faWpexplorer = { prefix: 'fab', iconName: 'wpexplorer', icon: [512, 512, [], "f2de", "M512 256c0 141.2-114.7 256-256 256C114.8 512 0 397.3 0 256S114.7 0 256 0s256 114.7 256 256zm-32 0c0-123.2-100.3-224-224-224C132.5 32 32 132.5 32 256s100.5 224 224 224 224-100.5 224-224zM160.9 124.6l86.9 37.1-37.1 86.9-86.9-37.1 37.1-86.9zm110 169.1l46.6 94h-14.6l-50-100-48.9 100h-14l51.1-106.9-22.3-9.4 6-14 68.6 29.1-6 14.3-16.5-7.1zm-11.8-116.3l68.6 29.4-29.4 68.3L230 246l29.1-68.6zm80.3 42.9l54.6 23.1-23.4 54.3-54.3-23.1 23.1-54.3z"] }; +var faWpforms = { prefix: 'fab', iconName: 'wpforms', icon: [448, 512, [], "f298", "M448 75.2v361.7c0 24.3-19 43.2-43.2 43.2H43.2C19.3 480 0 461.4 0 436.8V75.2C0 51.1 18.8 32 43.2 32h361.7c24 0 43.1 18.8 43.1 43.2zm-37.3 361.6V75.2c0-3-2.6-5.8-5.8-5.8h-9.3L285.3 144 224 94.1 162.8 144 52.5 69.3h-9.3c-3.2 0-5.8 2.8-5.8 5.8v361.7c0 3 2.6 5.8 5.8 5.8h361.7c3.2.1 5.8-2.7 5.8-5.8zM150.2 186v37H76.7v-37h73.5zm0 74.4v37.3H76.7v-37.3h73.5zm11.1-147.3l54-43.7H96.8l64.5 43.7zm210 72.9v37h-196v-37h196zm0 74.4v37.3h-196v-37.3h196zm-84.6-147.3l64.5-43.7H232.8l53.9 43.7zM371.3 335v37.3h-99.4V335h99.4z"] }; +var faXbox = { prefix: 'fab', iconName: 'xbox', icon: [512, 512, [], "f412", "M369.9 318.2c44.3 54.3 64.7 98.8 54.4 118.7-7.9 15.1-56.7 44.6-92.6 55.9-29.6 9.3-68.4 13.3-100.4 10.2-38.2-3.7-76.9-17.4-110.1-39C93.3 445.8 87 438.3 87 423.4c0-29.9 32.9-82.3 89.2-142.1 32-33.9 76.5-73.7 81.4-72.6 9.4 2.1 84.3 75.1 112.3 109.5zM188.6 143.8c-29.7-26.9-58.1-53.9-86.4-63.4-15.2-5.1-16.3-4.8-28.7 8.1-29.2 30.4-53.5 79.7-60.3 122.4-5.4 34.2-6.1 43.8-4.2 60.5 5.6 50.5 17.3 85.4 40.5 120.9 9.5 14.6 12.1 17.3 9.3 9.9-4.2-11-.3-37.5 9.5-64 14.3-39 53.9-112.9 120.3-194.4zm311.6 63.5C483.3 127.3 432.7 77 425.6 77c-7.3 0-24.2 6.5-36 13.9-23.3 14.5-41 31.4-64.3 52.8C367.7 197 427.5 283.1 448.2 346c6.8 20.7 9.7 41.1 7.4 52.3-1.7 8.5-1.7 8.5 1.4 4.6 6.1-7.7 19.9-31.3 25.4-43.5 7.4-16.2 15-40.2 18.6-58.7 4.3-22.5 3.9-70.8-.8-93.4zM141.3 43C189 40.5 251 77.5 255.6 78.4c.7.1 10.4-4.2 21.6-9.7 63.9-31.1 94-25.8 107.4-25.2-63.9-39.3-152.7-50-233.9-11.7-23.4 11.1-24 11.9-9.4 11.2z"] }; +var faXing = { prefix: 'fab', iconName: 'xing', icon: [384, 512, [], "f168", "M162.7 210c-1.8 3.3-25.2 44.4-70.1 123.5-4.9 8.3-10.8 12.5-17.7 12.5H9.8c-7.7 0-12.1-7.5-8.5-14.4l69-121.3c.2 0 .2-.1 0-.3l-43.9-75.6c-4.3-7.8.3-14.1 8.5-14.1H100c7.3 0 13.3 4.1 18 12.2l44.7 77.5zM382.6 46.1l-144 253v.3L330.2 466c3.9 7.1.2 14.1-8.5 14.1h-65.2c-7.6 0-13.6-4-18-12.2l-92.4-168.5c3.3-5.8 51.5-90.8 144.8-255.2 4.6-8.1 10.4-12.2 17.5-12.2h65.7c8 0 12.3 6.7 8.5 14.1z"] }; +var faXingSquare = { prefix: 'fab', iconName: 'xing-square', icon: [448, 512, [], "f169", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM140.4 320.2H93.8c-5.5 0-8.7-5.3-6-10.3l49.3-86.7c.1 0 .1-.1 0-.2l-31.4-54c-3-5.6.2-10.1 6-10.1h46.6c5.2 0 9.5 2.9 12.9 8.7l31.9 55.3c-1.3 2.3-18 31.7-50.1 88.2-3.5 6.2-7.7 9.1-12.6 9.1zm219.7-214.1L257.3 286.8v.2l65.5 119c2.8 5.1.1 10.1-6 10.1h-46.6c-5.5 0-9.7-2.9-12.9-8.7l-66-120.3c2.3-4.1 36.8-64.9 103.4-182.3 3.3-5.8 7.4-8.7 12.5-8.7h46.9c5.7-.1 8.8 4.7 6 10z"] }; +var faYCombinator = { prefix: 'fab', iconName: 'y-combinator', icon: [448, 512, [], "f23b", "M448 32v448H0V32h448zM236 287.5L313.5 142h-32.7L235 233c-4.7 9.3-9 18.3-12.8 26.8L210 233l-45.2-91h-35l76.7 143.8v94.5H236v-92.8z"] }; +var faYahoo = { prefix: 'fab', iconName: 'yahoo', icon: [448, 512, [], "f19e", "M252 292l4 220c-12.7-2.2-23.5-3.9-32.3-3.9-8.4 0-19.2 1.7-32.3 3.9l4-220C140.4 197.2 85 95.2 21.4 0c11.9 3.1 23 3.9 33.2 3.9 9 0 20.4-.8 34.1-3.9 40.9 72.2 82.1 138.7 135 225.5C261 163.9 314.8 81.4 358.6 0c11.1 2.9 22 3.9 32.9 3.9 11.5 0 23.2-1 35-3.9C392.1 47.9 294.9 216.9 252 292z"] }; +var faYandex = { prefix: 'fab', iconName: 'yandex', icon: [256, 512, [], "f413", "M153.1 315.8L65.7 512H2l96-209.8c-45.1-22.9-75.2-64.4-75.2-141.1C22.7 53.7 90.8 0 171.7 0H254v512h-55.1V315.8h-45.8zm45.8-269.3h-29.4c-44.4 0-87.4 29.4-87.4 114.6 0 82.3 39.4 108.8 87.4 108.8h29.4V46.5z"] }; +var faYandexInternational = { prefix: 'fab', iconName: 'yandex-international', icon: [320, 512, [], "f414", "M129.5 512V345.9L18.5 48h55.8l81.8 229.7L250.2 0h51.3L180.8 347.8V512h-51.3z"] }; +var faYelp = { prefix: 'fab', iconName: 'yelp', icon: [384, 512, [], "f1e9", "M136.9 328c-1 .3-109.2 35.7-115.8 35.7-15.2-.9-18.5-16.2-19.9-31.2-1.5-14.2-1.4-29.8.3-46.8 1.9-18.8 5.5-45.1 24.2-44 4.8 0 67.1 25.9 112.7 44.4 17.1 6.8 18.6 35.8-1.5 41.9zm57.9-113.9c1.8 38.2-25.5 48.5-47.2 14.3L41.3 60.4c-1.5-6.6.3-12.4 5.3-17.4C62.2 26.5 146 3.2 168.1 8.9c7.5 1.9 12.1 6.1 13.8 12.6 1.3 8.3 11.5 167.4 12.9 192.6zm-1.4 164.8c0 4.6.2 116.4-1.7 121.5-2.3 6-7 9.7-14.3 11.2-10.1 1.7-27.1-1.9-51-10.7-22-8.1-56.7-21.5-49.3-42.5 2.8-6.9 51.4-62.8 77.3-93.6 12-15.2 39.8-5.5 39 14.1zm180.2-117.8c-5.6 3.7-110.8 28.2-118.1 30.6l.3-.6c-18.1 4.7-35.4-18.5-23.3-34.6 3.7-3.7 65.9-92.4 72.8-97 5.2-3.6 11.3-3.8 18.3-.6 18.4 8.8 55.1 63.1 57.4 84.6-.1 2.9 1.2 11.7-7.4 17.6zm10.1 130.7c-2.7 20.6-44.5 73.4-63.8 81-6.9 2.6-12.9 2-17.7-2-5-3.5-61.8-97.1-64.9-102.3-10.9-16.2 6.8-39.8 25.6-33.2 0 0 110.5 35.7 114.7 39.4 5.2 4.1 7.2 9.8 6.1 17.1z"] }; +var faYoast = { prefix: 'fab', iconName: 'yoast', icon: [448, 512, [], "f2b1", "M91.3 76h186l-7 18.9h-179c-39.7 0-71.9 31.6-71.9 70.3v205.4c0 35.4 24.9 70.3 84 70.3V460H91.3C41.2 460 0 419.8 0 370.5V165.2C0 115.9 40.7 76 91.3 76zm229.1-56h66.5C243.1 398.1 241.2 418.9 202.2 459.3c-20.8 21.6-49.3 31.7-78.3 32.7v-51.1c49.2-7.7 64.6-49.9 64.6-75.3 0-20.1.6-12.6-82.1-223.2h61.4L218.2 299 320.4 20zM448 161.5V460H234c6.6-9.6 10.7-16.3 12.1-19.4h182.5V161.5c0-32.5-17.1-51.9-48.2-62.9l6.7-17.6c41.7 13.6 60.9 43.1 60.9 80.5z"] }; +var faYoutube = { prefix: 'fab', iconName: 'youtube', icon: [576, 512, [], "f167", "M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"] }; +var faYoutubeSquare = { prefix: 'fab', iconName: 'youtube-square', icon: [448, 512, [], "f431", "M186.8 202.1l95.2 54.1-95.2 54.1V202.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-42 176.3s0-59.6-7.6-88.2c-4.2-15.8-16.5-28.2-32.2-32.4C337.9 128 224 128 224 128s-113.9 0-142.2 7.7c-15.7 4.2-28 16.6-32.2 32.4-7.6 28.5-7.6 88.2-7.6 88.2s0 59.6 7.6 88.2c4.2 15.8 16.5 27.7 32.2 31.9C110.1 384 224 384 224 384s113.9 0 142.2-7.7c15.7-4.2 28-16.1 32.2-31.9 7.6-28.5 7.6-88.1 7.6-88.1z"] }; +var icons$1 = { + fa500px: fa500px, + faAccessibleIcon: faAccessibleIcon, + faAccusoft: faAccusoft, + faAdn: faAdn, + faAdversal: faAdversal, + faAffiliatetheme: faAffiliatetheme, + faAlgolia: faAlgolia, + faAmazon: faAmazon, + faAmazonPay: faAmazonPay, + faAmilia: faAmilia, + faAndroid: faAndroid, + faAngellist: faAngellist, + faAngrycreative: faAngrycreative, + faAngular: faAngular, + faAppStore: faAppStore, + faAppStoreIos: faAppStoreIos, + faApper: faApper, + faApple: faApple, + faApplePay: faApplePay, + faAsymmetrik: faAsymmetrik, + faAudible: faAudible, + faAutoprefixer: faAutoprefixer, + faAvianex: faAvianex, + faAviato: faAviato, + faAws: faAws, + faBandcamp: faBandcamp, + faBehance: faBehance, + faBehanceSquare: faBehanceSquare, + faBimobject: faBimobject, + faBitbucket: faBitbucket, + faBitcoin: faBitcoin, + faBity: faBity, + faBlackTie: faBlackTie, + faBlackberry: faBlackberry, + faBlogger: faBlogger, + faBloggerB: faBloggerB, + faBluetooth: faBluetooth, + faBluetoothB: faBluetoothB, + faBtc: faBtc, + faBuromobelexperte: faBuromobelexperte, + faBuysellads: faBuysellads, + faCcAmazonPay: faCcAmazonPay, + faCcAmex: faCcAmex, + faCcApplePay: faCcApplePay, + faCcDinersClub: faCcDinersClub, + faCcDiscover: faCcDiscover, + faCcJcb: faCcJcb, + faCcMastercard: faCcMastercard, + faCcPaypal: faCcPaypal, + faCcStripe: faCcStripe, + faCcVisa: faCcVisa, + faCentercode: faCentercode, + faChrome: faChrome, + faCloudscale: faCloudscale, + faCloudsmith: faCloudsmith, + faCloudversify: faCloudversify, + faCodepen: faCodepen, + faCodiepie: faCodiepie, + faConnectdevelop: faConnectdevelop, + faContao: faContao, + faCpanel: faCpanel, + faCreativeCommons: faCreativeCommons, + faCreativeCommonsBy: faCreativeCommonsBy, + faCreativeCommonsNc: faCreativeCommonsNc, + faCreativeCommonsNcEu: faCreativeCommonsNcEu, + faCreativeCommonsNcJp: faCreativeCommonsNcJp, + faCreativeCommonsNd: faCreativeCommonsNd, + faCreativeCommonsPd: faCreativeCommonsPd, + faCreativeCommonsPdAlt: faCreativeCommonsPdAlt, + faCreativeCommonsRemix: faCreativeCommonsRemix, + faCreativeCommonsSa: faCreativeCommonsSa, + faCreativeCommonsSampling: faCreativeCommonsSampling, + faCreativeCommonsSamplingPlus: faCreativeCommonsSamplingPlus, + faCreativeCommonsShare: faCreativeCommonsShare, + faCss3: faCss3, + faCss3Alt: faCss3Alt, + faCuttlefish: faCuttlefish, + faDAndD: faDAndD, + faDashcube: faDashcube, + faDelicious: faDelicious, + faDeploydog: faDeploydog, + faDeskpro: faDeskpro, + faDeviantart: faDeviantart, + faDigg: faDigg, + faDigitalOcean: faDigitalOcean, + faDiscord: faDiscord, + faDiscourse: faDiscourse, + faDochub: faDochub, + faDocker: faDocker, + faDraft2digital: faDraft2digital, + faDribbble: faDribbble, + faDribbbleSquare: faDribbbleSquare, + faDropbox: faDropbox, + faDrupal: faDrupal, + faDyalog: faDyalog, + faEarlybirds: faEarlybirds, + faEbay: faEbay, + faEdge: faEdge, + faElementor: faElementor, + faEmber: faEmber, + faEmpire: faEmpire, + faEnvira: faEnvira, + faErlang: faErlang, + faEthereum: faEthereum, + faEtsy: faEtsy, + faExpeditedssl: faExpeditedssl, + faFacebook: faFacebook, + faFacebookF: faFacebookF, + faFacebookMessenger: faFacebookMessenger, + faFacebookSquare: faFacebookSquare, + faFirefox: faFirefox, + faFirstOrder: faFirstOrder, + faFirstOrderAlt: faFirstOrderAlt, + faFirstdraft: faFirstdraft, + faFlickr: faFlickr, + faFlipboard: faFlipboard, + faFly: faFly, + faFontAwesome: faFontAwesome, + faFontAwesomeAlt: faFontAwesomeAlt, + faFontAwesomeFlag: faFontAwesomeFlag, + faFontAwesomeLogoFull: faFontAwesomeLogoFull, + faFonticons: faFonticons, + faFonticonsFi: faFonticonsFi, + faFortAwesome: faFortAwesome, + faFortAwesomeAlt: faFortAwesomeAlt, + faForumbee: faForumbee, + faFoursquare: faFoursquare, + faFreeCodeCamp: faFreeCodeCamp, + faFreebsd: faFreebsd, + faFulcrum: faFulcrum, + faGalacticRepublic: faGalacticRepublic, + faGalacticSenate: faGalacticSenate, + faGetPocket: faGetPocket, + faGg: faGg, + faGgCircle: faGgCircle, + faGit: faGit, + faGitSquare: faGitSquare, + faGithub: faGithub, + faGithubAlt: faGithubAlt, + faGithubSquare: faGithubSquare, + faGitkraken: faGitkraken, + faGitlab: faGitlab, + faGitter: faGitter, + faGlide: faGlide, + faGlideG: faGlideG, + faGofore: faGofore, + faGoodreads: faGoodreads, + faGoodreadsG: faGoodreadsG, + faGoogle: faGoogle, + faGoogleDrive: faGoogleDrive, + faGooglePlay: faGooglePlay, + faGooglePlus: faGooglePlus, + faGooglePlusG: faGooglePlusG, + faGooglePlusSquare: faGooglePlusSquare, + faGoogleWallet: faGoogleWallet, + faGratipay: faGratipay, + faGrav: faGrav, + faGripfire: faGripfire, + faGrunt: faGrunt, + faGulp: faGulp, + faHackerNews: faHackerNews, + faHackerNewsSquare: faHackerNewsSquare, + faHips: faHips, + faHireAHelper: faHireAHelper, + faHooli: faHooli, + faHotjar: faHotjar, + faHouzz: faHouzz, + faHtml5: faHtml5, + faHubspot: faHubspot, + faImdb: faImdb, + faInstagram: faInstagram, + faInternetExplorer: faInternetExplorer, + faIoxhost: faIoxhost, + faItunes: faItunes, + faItunesNote: faItunesNote, + faJava: faJava, + faJediOrder: faJediOrder, + faJenkins: faJenkins, + faJoget: faJoget, + faJoomla: faJoomla, + faJs: faJs, + faJsSquare: faJsSquare, + faJsfiddle: faJsfiddle, + faKeybase: faKeybase, + faKeycdn: faKeycdn, + faKickstarter: faKickstarter, + faKickstarterK: faKickstarterK, + faKorvue: faKorvue, + faLaravel: faLaravel, + faLastfm: faLastfm, + faLastfmSquare: faLastfmSquare, + faLeanpub: faLeanpub, + faLess: faLess, + faLine: faLine, + faLinkedin: faLinkedin, + faLinkedinIn: faLinkedinIn, + faLinode: faLinode, + faLinux: faLinux, + faLyft: faLyft, + faMagento: faMagento, + faMandalorian: faMandalorian, + faMastodon: faMastodon, + faMaxcdn: faMaxcdn, + faMedapps: faMedapps, + faMedium: faMedium, + faMediumM: faMediumM, + faMedrt: faMedrt, + faMeetup: faMeetup, + faMicrosoft: faMicrosoft, + faMix: faMix, + faMixcloud: faMixcloud, + faMizuni: faMizuni, + faModx: faModx, + faMonero: faMonero, + faNapster: faNapster, + faNintendoSwitch: faNintendoSwitch, + faNode: faNode, + faNodeJs: faNodeJs, + faNpm: faNpm, + faNs8: faNs8, + faNutritionix: faNutritionix, + faOdnoklassniki: faOdnoklassniki, + faOdnoklassnikiSquare: faOdnoklassnikiSquare, + faOldRepublic: faOldRepublic, + faOpencart: faOpencart, + faOpenid: faOpenid, + faOpera: faOpera, + faOptinMonster: faOptinMonster, + faOsi: faOsi, + faPage4: faPage4, + faPagelines: faPagelines, + faPalfed: faPalfed, + faPatreon: faPatreon, + faPaypal: faPaypal, + faPeriscope: faPeriscope, + faPhabricator: faPhabricator, + faPhoenixFramework: faPhoenixFramework, + faPhoenixSquadron: faPhoenixSquadron, + faPhp: faPhp, + faPiedPiper: faPiedPiper, + faPiedPiperAlt: faPiedPiperAlt, + faPiedPiperHat: faPiedPiperHat, + faPiedPiperPp: faPiedPiperPp, + faPinterest: faPinterest, + faPinterestP: faPinterestP, + faPinterestSquare: faPinterestSquare, + faPlaystation: faPlaystation, + faProductHunt: faProductHunt, + faPushed: faPushed, + faPython: faPython, + faQq: faQq, + faQuinscape: faQuinscape, + faQuora: faQuora, + faRProject: faRProject, + faRavelry: faRavelry, + faReact: faReact, + faReadme: faReadme, + faRebel: faRebel, + faRedRiver: faRedRiver, + faReddit: faReddit, + faRedditAlien: faRedditAlien, + faRedditSquare: faRedditSquare, + faRendact: faRendact, + faRenren: faRenren, + faReplyd: faReplyd, + faResearchgate: faResearchgate, + faResolving: faResolving, + faRocketchat: faRocketchat, + faRockrms: faRockrms, + faSafari: faSafari, + faSass: faSass, + faSchlix: faSchlix, + faScribd: faScribd, + faSearchengin: faSearchengin, + faSellcast: faSellcast, + faSellsy: faSellsy, + faServicestack: faServicestack, + faShirtsinbulk: faShirtsinbulk, + faSimplybuilt: faSimplybuilt, + faSistrix: faSistrix, + faSith: faSith, + faSkyatlas: faSkyatlas, + faSkype: faSkype, + faSlack: faSlack, + faSlackHash: faSlackHash, + faSlideshare: faSlideshare, + faSnapchat: faSnapchat, + faSnapchatGhost: faSnapchatGhost, + faSnapchatSquare: faSnapchatSquare, + faSoundcloud: faSoundcloud, + faSpeakap: faSpeakap, + faSpotify: faSpotify, + faStackExchange: faStackExchange, + faStackOverflow: faStackOverflow, + faStaylinked: faStaylinked, + faSteam: faSteam, + faSteamSquare: faSteamSquare, + faSteamSymbol: faSteamSymbol, + faStickerMule: faStickerMule, + faStrava: faStrava, + faStripe: faStripe, + faStripeS: faStripeS, + faStudiovinari: faStudiovinari, + faStumbleupon: faStumbleupon, + faStumbleuponCircle: faStumbleuponCircle, + faSuperpowers: faSuperpowers, + faSupple: faSupple, + faTeamspeak: faTeamspeak, + faTelegram: faTelegram, + faTelegramPlane: faTelegramPlane, + faTencentWeibo: faTencentWeibo, + faThemeisle: faThemeisle, + faTradeFederation: faTradeFederation, + faTrello: faTrello, + faTripadvisor: faTripadvisor, + faTumblr: faTumblr, + faTumblrSquare: faTumblrSquare, + faTwitch: faTwitch, + faTwitter: faTwitter, + faTwitterSquare: faTwitterSquare, + faTypo3: faTypo3, + faUber: faUber, + faUikit: faUikit, + faUniregistry: faUniregistry, + faUntappd: faUntappd, + faUsb: faUsb, + faUssunnah: faUssunnah, + faVaadin: faVaadin, + faViacoin: faViacoin, + faViadeo: faViadeo, + faViadeoSquare: faViadeoSquare, + faViber: faViber, + faVimeo: faVimeo, + faVimeoSquare: faVimeoSquare, + faVimeoV: faVimeoV, + faVine: faVine, + faVk: faVk, + faVnv: faVnv, + faVuejs: faVuejs, + faWeibo: faWeibo, + faWeixin: faWeixin, + faWhatsapp: faWhatsapp, + faWhatsappSquare: faWhatsappSquare, + faWhmcs: faWhmcs, + faWikipediaW: faWikipediaW, + faWindows: faWindows, + faWolfPackBattalion: faWolfPackBattalion, + faWordpress: faWordpress, + faWordpressSimple: faWordpressSimple, + faWpbeginner: faWpbeginner, + faWpexplorer: faWpexplorer, + faWpforms: faWpforms, + faXbox: faXbox, + faXing: faXing, + faXingSquare: faXingSquare, + faYCombinator: faYCombinator, + faYahoo: faYahoo, + faYandex: faYandex, + faYandexInternational: faYandexInternational, + faYelp: faYelp, + faYoast: faYoast, + faYoutube: faYoutube, + faYoutubeSquare: faYoutubeSquare +}; + +export { prefix, fa500px, faAccessibleIcon, faAccusoft, faAdn, faAdversal, faAffiliatetheme, faAlgolia, faAmazon, faAmazonPay, faAmilia, faAndroid, faAngellist, faAngrycreative, faAngular, faAppStore, faAppStoreIos, faApper, faApple, faApplePay, faAsymmetrik, faAudible, faAutoprefixer, faAvianex, faAviato, faAws, faBandcamp, faBehance, faBehanceSquare, faBimobject, faBitbucket, faBitcoin, faBity, faBlackTie, faBlackberry, faBlogger, faBloggerB, faBluetooth, faBluetoothB, faBtc, faBuromobelexperte, faBuysellads, faCcAmazonPay, faCcAmex, faCcApplePay, faCcDinersClub, faCcDiscover, faCcJcb, faCcMastercard, faCcPaypal, faCcStripe, faCcVisa, faCentercode, faChrome, faCloudscale, faCloudsmith, faCloudversify, faCodepen, faCodiepie, faConnectdevelop, faContao, faCpanel, faCreativeCommons, faCreativeCommonsBy, faCreativeCommonsNc, faCreativeCommonsNcEu, faCreativeCommonsNcJp, faCreativeCommonsNd, faCreativeCommonsPd, faCreativeCommonsPdAlt, faCreativeCommonsRemix, faCreativeCommonsSa, faCreativeCommonsSampling, faCreativeCommonsSamplingPlus, faCreativeCommonsShare, faCss3, faCss3Alt, faCuttlefish, faDAndD, faDashcube, faDelicious, faDeploydog, faDeskpro, faDeviantart, faDigg, faDigitalOcean, faDiscord, faDiscourse, faDochub, faDocker, faDraft2digital, faDribbble, faDribbbleSquare, faDropbox, faDrupal, faDyalog, faEarlybirds, faEbay, faEdge, faElementor, faEmber, faEmpire, faEnvira, faErlang, faEthereum, faEtsy, faExpeditedssl, faFacebook, faFacebookF, faFacebookMessenger, faFacebookSquare, faFirefox, faFirstOrder, faFirstOrderAlt, faFirstdraft, faFlickr, faFlipboard, faFly, faFontAwesome, faFontAwesomeAlt, faFontAwesomeFlag, faFontAwesomeLogoFull, faFonticons, faFonticonsFi, faFortAwesome, faFortAwesomeAlt, faForumbee, faFoursquare, faFreeCodeCamp, faFreebsd, faFulcrum, faGalacticRepublic, faGalacticSenate, faGetPocket, faGg, faGgCircle, faGit, faGitSquare, faGithub, faGithubAlt, faGithubSquare, faGitkraken, faGitlab, faGitter, faGlide, faGlideG, faGofore, faGoodreads, faGoodreadsG, faGoogle, faGoogleDrive, faGooglePlay, faGooglePlus, faGooglePlusG, faGooglePlusSquare, faGoogleWallet, faGratipay, faGrav, faGripfire, faGrunt, faGulp, faHackerNews, faHackerNewsSquare, faHips, faHireAHelper, faHooli, faHotjar, faHouzz, faHtml5, faHubspot, faImdb, faInstagram, faInternetExplorer, faIoxhost, faItunes, faItunesNote, faJava, faJediOrder, faJenkins, faJoget, faJoomla, faJs, faJsSquare, faJsfiddle, faKeybase, faKeycdn, faKickstarter, faKickstarterK, faKorvue, faLaravel, faLastfm, faLastfmSquare, faLeanpub, faLess, faLine, faLinkedin, faLinkedinIn, faLinode, faLinux, faLyft, faMagento, faMandalorian, faMastodon, faMaxcdn, faMedapps, faMedium, faMediumM, faMedrt, faMeetup, faMicrosoft, faMix, faMixcloud, faMizuni, faModx, faMonero, faNapster, faNintendoSwitch, faNode, faNodeJs, faNpm, faNs8, faNutritionix, faOdnoklassniki, faOdnoklassnikiSquare, faOldRepublic, faOpencart, faOpenid, faOpera, faOptinMonster, faOsi, faPage4, faPagelines, faPalfed, faPatreon, faPaypal, faPeriscope, faPhabricator, faPhoenixFramework, faPhoenixSquadron, faPhp, faPiedPiper, faPiedPiperAlt, faPiedPiperHat, faPiedPiperPp, faPinterest, faPinterestP, faPinterestSquare, faPlaystation, faProductHunt, faPushed, faPython, faQq, faQuinscape, faQuora, faRProject, faRavelry, faReact, faReadme, faRebel, faRedRiver, faReddit, faRedditAlien, faRedditSquare, faRendact, faRenren, faReplyd, faResearchgate, faResolving, faRocketchat, faRockrms, faSafari, faSass, faSchlix, faScribd, faSearchengin, faSellcast, faSellsy, faServicestack, faShirtsinbulk, faSimplybuilt, faSistrix, faSith, faSkyatlas, faSkype, faSlack, faSlackHash, faSlideshare, faSnapchat, faSnapchatGhost, faSnapchatSquare, faSoundcloud, faSpeakap, faSpotify, faStackExchange, faStackOverflow, faStaylinked, faSteam, faSteamSquare, faSteamSymbol, faStickerMule, faStrava, faStripe, faStripeS, faStudiovinari, faStumbleupon, faStumbleuponCircle, faSuperpowers, faSupple, faTeamspeak, faTelegram, faTelegramPlane, faTencentWeibo, faThemeisle, faTradeFederation, faTrello, faTripadvisor, faTumblr, faTumblrSquare, faTwitch, faTwitter, faTwitterSquare, faTypo3, faUber, faUikit, faUniregistry, faUntappd, faUsb, faUssunnah, faVaadin, faViacoin, faViadeo, faViadeoSquare, faViber, faVimeo, faVimeoSquare, faVimeoV, faVine, faVk, faVnv, faVuejs, faWeibo, faWeixin, faWhatsapp, faWhatsappSquare, faWhmcs, faWikipediaW, faWindows, faWolfPackBattalion, faWordpress, faWordpressSimple, faWpbeginner, faWpexplorer, faWpforms, faXbox, faXing, faXingSquare, faYCombinator, faYahoo, faYandex, faYandexInternational, faYelp, faYoast, faYoutube, faYoutubeSquare }; +export default icons$1; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/shakable.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/shakable.js new file mode 100644 index 0000000000..f637acbbaf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-brands/shakable.js @@ -0,0 +1,1109 @@ +/*! + * Font Awesome Free 5.0.13 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : + typeof define === 'function' && define.amd ? define(['exports'], factory) : + (factory((global['fontawesome-free-brands'] = {}))); +}(this, (function (exports) { 'use strict'; + +var prefix = "fab"; +var fa500px = { prefix: 'fab', iconName: '500px', icon: [448, 512, [], "f26e", "M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3.3-16 16.5-21.2 23.9l-.5.6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8zm63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2zM393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4zM213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6.2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6z"] }; +var faAccessibleIcon = { prefix: 'fab', iconName: 'accessible-icon', icon: [448, 512, [], "f368", "M423.9 255.8L411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7zm-64.9-154c28.1 0 50.9-22.8 50.9-50.9C409.9 22.8 387.1 0 359 0c-28.1 0-50.9 22.8-50.9 50.9 0 28.1 22.8 50.9 50.9 50.9zM179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3z"] }; +var faAccusoft = { prefix: 'fab', iconName: 'accusoft', icon: [640, 512, [], "f369", "M482.2 372.1C476.5 365.2 250 75 242.3 65.5c-13.7-17.2 0-16.8 19.2-16.9 9.7-.1 106.3-.6 116.5-.6 24.1-.1 28.7.6 38.4 12.8 2.1 2.7 205.1 245.8 207.2 248.3 5.5 6.7 15.2 19.1 7.2 23.4-2.4 1.3-114.6 47.7-117.8 48.9-10.1 4-17.5 6.8-30.8-9.3m114.7-5.6s-115 50.4-117.5 51.6c-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2-2.3-.3-24.6-4.7-38-7.2m-326-181.3s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3v-1l-51.2-65.8"] }; +var faAdn = { prefix: 'fab', iconName: 'adn', icon: [496, 512, [], "f170", "M248 167.5l64.9 98.8H183.1l64.9-98.8zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7h30.2z"] }; +var faAdversal = { prefix: 'fab', iconName: 'adversal', icon: [512, 512, [], "f36a", "M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2zM178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4.4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3zm286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7.4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9zm3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6.4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1.2-.1.3-.1.5zm-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2.4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1zm-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8z"] }; +var faAffiliatetheme = { prefix: 'fab', iconName: 'affiliatetheme', icon: [512, 512, [], "f36b", "M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2 29.1 21.6 11.1 96.6-40.2 167.5zm351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9.1-8.5-.3-16.8-1-25z"] }; +var faAlgolia = { prefix: 'fab', iconName: 'algolia', icon: [448, 512, [], "f36c", "M229.3 182.6c-49.3 0-89.2 39.9-89.2 89.2 0 49.3 39.9 89.2 89.2 89.2s89.2-39.9 89.2-89.2c0-49.3-40-89.2-89.2-89.2zm62.7 56.6l-58.9 30.6c-1.8.9-3.8-.4-3.8-2.3V201c0-1.5 1.3-2.7 2.7-2.6 26.2 1 48.9 15.7 61.1 37.1.7 1.3.2 3-1.1 3.7zM389.1 32H58.9C26.4 32 0 58.4 0 90.9V421c0 32.6 26.4 59 58.9 59H389c32.6 0 58.9-26.4 58.9-58.9V90.9C448 58.4 421.6 32 389.1 32zm-202.6 84.7c0-10.8 8.7-19.5 19.5-19.5h45.3c10.8 0 19.5 8.7 19.5 19.5v15.4c0 1.8-1.7 3-3.3 2.5-12.3-3.4-25.1-5.1-38.1-5.1-13.5 0-26.7 1.8-39.4 5.5-1.7.5-3.4-.8-3.4-2.5v-15.8zm-84.4 37l9.2-9.2c7.6-7.6 19.9-7.6 27.5 0l7.7 7.7c1.1 1.1 1 3-.3 4-6.2 4.5-12.1 9.4-17.6 14.9-5.4 5.4-10.4 11.3-14.8 17.4-1 1.3-2.9 1.5-4 .3l-7.7-7.7c-7.6-7.5-7.6-19.8 0-27.4zm127.2 244.8c-70 0-126.6-56.7-126.6-126.6s56.7-126.6 126.6-126.6c70 0 126.6 56.6 126.6 126.6 0 69.8-56.7 126.6-126.6 126.6z"] }; +var faAmazon = { prefix: 'fab', iconName: 'amazon', icon: [448, 512, [], "f270", "M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z"] }; +var faAmazonPay = { prefix: 'fab', iconName: 'amazon-pay', icon: [611, 512, [], "f42c", "M0 325.2c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7 40.7 20.4 83.2 35.6 127.4 46.3 20.9 5 41.9 9 63.2 11.8 31.5 4.2 63.2 6 95 5.2 17.4-.4 34.8-1.8 52.1-3.8 56.4-6.7 110.9-20.8 163.3-42.8 2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9-2.8 2.8-6.3 5.1-9.6 7.4-30.7 21.1-64.2 36.4-99.6 47.9-24.6 7.9-49.6 13.8-75.1 17.6-17.6 2.6-35.4 4.4-53.2 4.8-.8 0-1.7.2-2.5.3H294c-.8-.1-1.7-.3-2.5-.3-3.6-.2-7.2-.3-10.7-.4-16.9-.7-33.7-2.6-50.4-5.3-27.4-4.5-54.2-11.4-80.4-20.9-54.1-19.6-102.6-48.6-145.6-87-1.8-1.6-3-3.8-4.4-5.7v-2zM158 65c-1.4.2-2.9.4-4.3.6-14 1.7-26.6 6.9-38 15.1-2.4 1.7-4.6 3.5-7.1 5.4-.2-.5-.4-1-.4-1.4-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6H87.8c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3V215c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zm-47.4 41.9c0-1.5.4-2.4 1.7-3.3 13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9-1.2-.9-1.7-1.7-1.7-3.3.1-14.1 0-28.1 0-42.2 0-14 .1-28 0-42.1zM316.3 65c-1 .1-2 .3-2.9.4-9.8.5-19.4 1.7-28.9 4.1-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9 0 .4-.1.9-.2 1.4-.5-.1-.9 0-1.3-.1-10.5-2.5-21.1-4.3-32-4.9-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4.4-.4.9-.7 1.6-1.1.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0 2.7-.1 4.5-1.9 4.8-4.7.1-.9.1-1.9.1-2.8v-106c0-4.3-.2-8.6-.9-12.9-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1zm35 127.7c0 1.3-.4 2.2-1.5 3-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8-6.3-2.5-10.4-6.9-12.4-13.3s-2-13-.1-19.4c2.5-8.3 8.4-13 16.4-15.6 8.1-2.6 16.5-3 24.8-2.2 8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3-.1 4.7-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3-6.8-2.3-13.9-3.3-21-3.9-13.1-1.1-26.2-.5-39.2 1.9-14.3 2.7-27.9 7.3-40 15.6-1.4 1-2.8 2.1-3.7 3.5-.7 1.1-.9 2.8-.5 4 .4 1.5 2.1 1.9 3.6 1.8.7 0 1.5 0 2.2-.1 7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9 4.8.3 9.7 1.4 14.4 2.7 5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1-.4 1-.8 2-1 3-.5 2.9 1.2 4.8 4.1 4.1 1.7-.4 3.6-1.3 4.8-2.5 4.4-4.3 8.9-8.6 12.7-13.4 12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9v-17.3zM479.1 198.9c-12.9-35.7-25.8-71.5-38.7-107.2-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5.5 2.1 1.1 4.1 1.9 6.1 19.6 48.5 39.3 97.1 59.1 145.5 1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3-5.1 1.4-10.2 1.6-15.4 1.1-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8-.1 3.3-.1 6.6 0 9.9.1 5.5 2 8 7.4 8.9 5.6 1 11.3 1.9 16.9 2 17.1.4 30.7-6.5 39.5-21.4 3.5-5.9 6.7-12.1 9.2-18.4 23.7-59.8 47.1-119.7 70.6-179.6.7-1.8 1.3-3.6 1.6-5.5.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0-3.7 0-6.3 1.6-7.7 5.2-.5 1.4-1.1 2.7-1.6 4.1-11.6 33.3-23.2 66.6-34.8 100-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z"] }; +var faAmilia = { prefix: 'fab', iconName: 'amilia', icon: [448, 512, [], "f36d", "M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm-87.9 327.7c0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5V380c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7"] }; +var faAndroid = { prefix: 'fab', iconName: 'android', icon: [448, 512, [], "f17b", "M89.6 204.5v115.8c0 15.4-12.1 27.7-27.5 27.7-15.3 0-30.1-12.4-30.1-27.7V204.5c0-15.1 14.8-27.5 30.1-27.5 15.1 0 27.5 12.4 27.5 27.5zm10.8 157c0 16.4 13.2 29.6 29.6 29.6h19.9l.3 61.1c0 36.9 55.2 36.6 55.2 0v-61.1h37.2v61.1c0 36.7 55.5 36.8 55.5 0v-61.1h20.2c16.2 0 29.4-13.2 29.4-29.6V182.1H100.4v179.4zm248-189.1H99.3c0-42.8 25.6-80 63.6-99.4l-19.1-35.3c-2.8-4.9 4.3-8 6.7-3.8l19.4 35.6c34.9-15.5 75-14.7 108.3 0L297.5 34c2.5-4.3 9.5-1.1 6.7 3.8L285.1 73c37.7 19.4 63.3 56.6 63.3 99.4zm-170.7-55.5c0-5.7-4.6-10.5-10.5-10.5-5.7 0-10.2 4.8-10.2 10.5s4.6 10.5 10.2 10.5c5.9 0 10.5-4.8 10.5-10.5zm113.4 0c0-5.7-4.6-10.5-10.2-10.5-5.9 0-10.5 4.8-10.5 10.5s4.6 10.5 10.5 10.5c5.6 0 10.2-4.8 10.2-10.5zm94.8 60.1c-15.1 0-27.5 12.1-27.5 27.5v115.8c0 15.4 12.4 27.7 27.5 27.7 15.4 0 30.1-12.4 30.1-27.7V204.5c0-15.4-14.8-27.5-30.1-27.5z"] }; +var faAngellist = { prefix: 'fab', iconName: 'angellist', icon: [448, 512, [], "f209", "M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7zM311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6 33.1-93.7zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8zM140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7.1-7.7 12.7-21.1 20.4-21.1zm184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3.3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7.1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7zm-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1z"] }; +var faAngrycreative = { prefix: 'fab', iconName: 'angrycreative', icon: [640, 512, [], "f36e", "M640 238.2l-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4 93.1-6.2zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9-12.8 120zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3-126.2 7.7zm-44.3-70.2l-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7 2.7-29.8zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1zm21.1 70.8l5.8-60c-5 13.5-14.7 21.1-27.9 26.6l22.1 33.4zm135.4-45l-7.9-37.8-15.8 39.3 23.7-1.5zm-170.1-74.6l-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8.3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2-56.8 3.7zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1.6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2l-2.9 28.8zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3zm-201.3 8.2l23.8-1.6-8.3-37.6-15.5 39.2z"] }; +var faAngular = { prefix: 'fab', iconName: 'angular', icon: [415, 512, [], "f420", "M169.7 268.1h76.2l-38.1-91.6-38.1 91.6zM207.8 32L0 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7L207.8 32zM338 373.8h-48.6l-26.2-65.4H152.6l-26.2 65.4H77.7L207.8 81.5 338 373.8z"] }; +var faAppStore = { prefix: 'fab', iconName: 'app-store', icon: [512, 512, [], "f36f", "M255.9 120.9l9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5 9.8 5.6 13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4 0-11.3 9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5l8.9 15.7zm-78.7 218l-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5-9.8-5.6-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6zm168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4 0 11.3-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216z"] }; +var faAppStoreIos = { prefix: 'fab', iconName: 'app-store-ios', icon: [448, 512, [], "f370", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7c16.1-4.9 29.3-1.1 39.6 11.4L127 384.5zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40zm98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20z"] }; +var faApper = { prefix: 'fab', iconName: 'apper', icon: [640, 512, [], "f371", "M42.1 239.1c22.2 0 29 2.8 33.5 14.6h.8v-22.9c0-11.3-4.8-15.4-17.9-15.4-11.3 0-14.4 2.5-15.1 12.8H4.8c.3-13.9 1.5-19.1 5.8-24.4C17.9 195 29.5 192 56.7 192c33 0 47.1 5 53.9 18.9 2 4.3 4 15.6 4 23.7v76.3H76.3l1.3-19.1h-1c-5.3 15.6-13.6 20.4-35.5 20.4-30.3 0-41.1-10.1-41.1-37.3 0-25.2 12.3-35.8 42.1-35.8zm17.1 48.1c13.1 0 16.9-3 16.9-13.4 0-9.1-4.3-11.6-19.6-11.6-13.1 0-17.9 3-17.9 12.1-.1 10.4 3.7 12.9 20.6 12.9zm77.8-94.9h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.2 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3H137v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm57.9-60.7h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.3 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3h-39.5v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm53.8-3.8c0-25.4 3.3-37.8 12.3-45.8 8.8-8.1 22.2-11.3 45.1-11.3 42.8 0 55.7 12.8 55.7 55.7v11.1h-75.3c-.3 2-.3 4-.3 4.8 0 16.9 4.5 21.9 20.1 21.9 13.9 0 17.9-3 17.9-13.9h37.5v2.3c0 9.8-2.5 18.9-6.8 24.7-7.3 9.8-19.6 13.6-44.3 13.6-27.5 0-41.6-3.3-50.6-12.3-8.5-8.5-11.3-21.3-11.3-50.8zm76.4-11.6c-.3-1.8-.3-3.3-.3-3.8 0-12.3-3.3-14.6-19.6-14.6-14.4 0-17.1 3-18.1 15.1l-.3 3.3h38.3zm55.6-45.3h38.3l-1.8 19.9h.7c6.8-14.9 14.4-20.2 29.7-20.2 10.8 0 19.1 3.3 23.4 9.3 5.3 7.3 6.8 14.4 6.8 34 0 1.5 0 5 .2 9.3h-35c.3-1.8.3-3.3.3-4 0-15.4-2-19.4-10.3-19.4-6.3 0-10.8 3.3-13.1 9.3-1 3-1 4.3-1 12.3v68h-38.3V192.3z"] }; +var faApple = { prefix: 'fab', iconName: 'apple', icon: [376, 512, [], "f179", "M314.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C59.3 141.2 0 184.8 0 273.5c0 26.2 4.8 53.3 14.4 81.2 12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z"] }; +var faApplePay = { prefix: 'fab', iconName: 'apple-pay', icon: [640, 512, [], "f415", "M116.9 158.5c-7.5 8.9-19.5 15.9-31.5 14.9-1.5-12 4.4-24.8 11.3-32.6 7.5-9.1 20.6-15.6 31.3-16.1 1.2 12.4-3.7 24.7-11.1 33.8m10.9 17.2c-17.4-1-32.3 9.9-40.5 9.9-8.4 0-21-9.4-34.8-9.1-17.9.3-34.5 10.4-43.6 26.5-18.8 32.3-4.9 80 13.3 106.3 8.9 13 19.5 27.3 33.5 26.8 13.3-.5 18.5-8.6 34.5-8.6 16.1 0 20.8 8.6 34.8 8.4 14.5-.3 23.6-13 32.5-26 10.1-14.8 14.3-29.1 14.5-29.9-.3-.3-28-10.9-28.3-42.9-.3-26.8 21.9-39.5 22.9-40.3-12.5-18.6-32-20.6-38.8-21.1m100.4-36.2v194.9h30.3v-66.6h41.9c38.3 0 65.1-26.3 65.1-64.3s-26.4-64-64.1-64h-73.2zm30.3 25.5h34.9c26.3 0 41.3 14 41.3 38.6s-15 38.8-41.4 38.8h-34.8V165zm162.2 170.9c19 0 36.6-9.6 44.6-24.9h.6v23.4h28v-97c0-28.1-22.5-46.3-57.1-46.3-32.1 0-55.9 18.4-56.8 43.6h27.3c2.3-12 13.4-19.9 28.6-19.9 18.5 0 28.9 8.6 28.9 24.5v10.8l-37.8 2.3c-35.1 2.1-54.1 16.5-54.1 41.5.1 25.2 19.7 42 47.8 42zm8.2-23.1c-16.1 0-26.4-7.8-26.4-19.6 0-12.3 9.9-19.4 28.8-20.5l33.6-2.1v11c0 18.2-15.5 31.2-36 31.2zm102.5 74.6c29.5 0 43.4-11.3 55.5-45.4L640 193h-30.8l-35.6 115.1h-.6L537.4 193h-31.6L557 334.9l-2.8 8.6c-4.6 14.6-12.1 20.3-25.5 20.3-2.4 0-7-.3-8.9-.5v23.4c1.8.4 9.3.7 11.6.7z"] }; +var faAsymmetrik = { prefix: 'fab', iconName: 'asymmetrik', icon: [576, 512, [], "f372", "M517.5 309.2c38.8-40 58.1-80 58.5-116.1.8-65.5-59.4-118.2-169.4-135C277.9 38.4 118.1 73.6 0 140.5 52 114 110.6 92.3 170.7 82.3c74.5-20.5 153-25.4 221.3-14.8C544.5 91.3 588.8 195 490.8 299.2c-10.2 10.8-22 21.1-35 30.6L304.9 103.4 114.7 388.9c-65.6-29.4-76.5-90.2-19.1-151.2 20.8-22.2 48.3-41.9 79.5-58.1 20-12.2 39.7-22.6 62-30.7-65.1 20.3-122.7 52.9-161.6 92.9-27.7 28.6-41.4 57.1-41.7 82.9-.5 35.1 23.4 65.1 68.4 83l-34.5 51.7h101.6l22-34.4c22.2 1 45.3 0 68.6-2.7l-22.8 37.1h135.5L340 406.3c18.6-5.3 36.9-11.5 54.5-18.7l45.9 71.8H542L468.6 349c18.5-12.1 35-25.5 48.9-39.8zm-187.6 80.5l-25-40.6-32.7 53.3c-23.4 3.5-46.7 5.1-69.2 4.4l101.9-159.3 78.7 123c-17.2 7.4-35.3 13.9-53.7 19.2z"] }; +var faAudible = { prefix: 'fab', iconName: 'audible', icon: [640, 512, [], "f373", "M640 199.9v54l-320 200L0 254v-54l320 200 320-200.1zm-194.5 72l47.1-29.4c-37.2-55.8-100.7-92.6-172.7-92.6-72 0-135.5 36.7-172.6 92.4h.3c2.5-2.3 5.1-4.5 7.7-6.7 89.7-74.4 219.4-58.1 290.2 36.3zm-220.1 18.8c16.9-11.9 36.5-18.7 57.4-18.7 34.4 0 65.2 18.4 86.4 47.6l45.4-28.4c-20.9-29.9-55.6-49.5-94.8-49.5-38.9 0-73.4 19.4-94.4 49zM103.6 161.1c131.8-104.3 318.2-76.4 417.5 62.1l.7 1 48.8-30.4C517.1 112.1 424.8 58.1 319.9 58.1c-103.5 0-196.6 53.5-250.5 135.6 9.9-10.5 22.7-23.5 34.2-32.6zm467 32.7z"] }; +var faAutoprefixer = { prefix: 'fab', iconName: 'autoprefixer', icon: [640, 512, [], "f41c", "M318.4 16l-161 480h77.5l25.4-81.4h119.5L405 496h77.5L318.4 16zm-40.3 341.9l41.2-130.4h1.5l40.9 130.4h-83.6zM640 405l-10-31.4L462.1 358l19.4 56.5L640 405zm-462.1-47L10 373.7 0 405l158.5 9.4 19.4-56.4z"] }; +var faAvianex = { prefix: 'fab', iconName: 'avianex', icon: [512, 512, [], "f374", "M453.1 32h-312c-38.9 0-76.2 31.2-83.3 69.7L1.2 410.3C-5.9 448.8 19.9 480 58.9 480h312c38.9 0 76.2-31.2 83.3-69.7l56.7-308.5c7-38.6-18.8-69.8-57.8-69.8zm-58.2 347.3l-32 13.5-115.4-110c-14.7 10-29.2 19.5-41.7 27.1l22.1 64.2-17.9 12.7-40.6-61-52.4-48.1 15.7-15.4 58 31.1c9.3-10.5 20.8-22.6 32.8-34.9L203 228.9l-68.8-99.8 18.8-28.9 8.9-4.8L265 207.8l4.9 4.5c19.4-18.8 33.8-32.4 33.8-32.4 7.7-6.5 21.5-2.9 30.7 7.9 9 10.5 10.6 24.7 2.7 31.3-1.8 1.3-15.5 11.4-35.3 25.6l4.5 7.3 94.9 119.4-6.3 7.9z"] }; +var faAviato = { prefix: 'fab', iconName: 'aviato', icon: [640, 512, [], "f421", "M107.2 283.5l-19-41.8H36.1l-19 41.8H0l62.2-131.4 62.2 131.4h-17.2zm-45-98.1l-19.6 42.5h39.2l-19.6-42.5zm112.7 102.4l-62.2-131.4h17.1l45.1 96 45.1-96h17l-62.1 131.4zm80.6-4.3V156.4H271v127.1h-15.5zm209.1-115.6v115.6h-17.3V167.9h-41.2v-11.5h99.6v11.5h-41.1zM640 218.8c0 9.2-1.7 17.8-5.1 25.8-3.4 8-8.2 15.1-14.2 21.1-6 6-13.1 10.8-21.1 14.2-8 3.4-16.6 5.1-25.8 5.1s-17.8-1.7-25.8-5.1c-8-3.4-15.1-8.2-21.1-14.2-6-6-10.8-13-14.2-21.1-3.4-8-5.1-16.6-5.1-25.8s1.7-17.8 5.1-25.8c3.4-8 8.2-15.1 14.2-21.1 6-6 13-8.4 21.1-11.9 8-3.4 16.6-5.1 25.8-5.1s17.8 1.7 25.8 5.1c8 3.4 15.1 5.8 21.1 11.9 6 6 10.7 13.1 14.2 21.1 3.4 8 5.1 16.6 5.1 25.8zm-15.5 0c0-7.3-1.3-14-3.9-20.3-2.6-6.3-6.2-11.7-10.8-16.3-4.6-4.6-10-8.2-16.2-10.9-6.2-2.7-12.8-4-19.8-4s-13.6 1.3-19.8 4c-6.2 2.7-11.6 6.3-16.2 10.9-4.6 4.6-8.2 10-10.8 16.3-2.6 6.3-3.9 13.1-3.9 20.3 0 7.3 1.3 14 3.9 20.3 2.6 6.3 6.2 11.7 10.8 16.3 4.6 4.6 10 8.2 16.2 10.9 6.2 2.7 12.8 4 19.8 4s13.6-1.3 19.8-4c6.2-2.7 11.6-6.3 16.2-10.9 4.6-4.6 8.2-10 10.8-16.3 2.6-6.3 3.9-13.1 3.9-20.3zm-94.8 96.7v-6.3l88.9-10-242.9 13.4c.6-2.2 1.1-4.6 1.4-7.2.3-2 .5-4.2.6-6.5l64.8-8.1-64.9 1.9c0-.4-.1-.7-.1-1.1-2.8-17.2-25.5-23.7-25.5-23.7l-1.1-26.3h23.8l19 41.8h17.1L348.6 152l-62.2 131.4h17.1l19-41.8h23.6L345 268s-22.7 6.5-25.5 23.7c-.1.3-.1.7-.1 1.1l-64.9-1.9 64.8 8.1c.1 2.3.3 4.4.6 6.5.3 2.6.8 5 1.4 7.2L78.4 299.2l88.9 10v6.3c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4 0-6.2-4.6-11.3-10.5-12.2v-5.8l80.3 9v5.4c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-4.9l28.4 3.2v23.7h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9V323l38.3 4.3c8.1 11.4 19 13.6 19 13.6l-.1 6.7-5.1.2-.1 12.1h4.1l.1-5h5.2l.1 5h4.1l-.1-12.1-5.1-.2-.1-6.7s10.9-2.1 19-13.6l38.3-4.3v23.2h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9v-23.7l28.4-3.2v4.9c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-5.4l80.3-9v5.8c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4-.2-6.3-4.7-11.4-10.7-12.3zm-200.8-87.6l19.6-42.5 19.6 42.5h-17.9l-1.7-40.3-1.7 40.3h-17.9z"] }; +var faAws = { prefix: 'fab', iconName: 'aws', icon: [512, 512, [], "f375", "M261.2 136.1c-14 57.5-13.1 54.4-25.8 107-1.6 6.5-4.1 8.4-10.7 8.5h-14.4c-5.8-.1-8.2-1.6-9.9-7.3-12.3-39.4-28.8-94.1-39.9-130.7-4.1-13.5-1.4-13.2 9.3-12.9 3.7.1 7.3 0 11 0 5.1.1 7.7 2 9.1 7.1 3.6 12.9 6 22.8 26.6 104.1.4 1.6.9 3.1 1.4 4.6h1.1c.5-2 1.1-3.9 1.6-5.9 7.8-32.9 15.5-65.9 23.3-98.8 2.4-10.2 6.7-11.2 17-11.2h7.6c6.9.1 9 1.5 10.7 8.3 6 23.4 23.5 101.8 26.7 110.4 5.1-18.3-1.8 7.9 28.5-109 2.1-8.1 4.1-9.7 12.3-9.7h12.7c5.4.1 7 1.8 5.7 7.1-2.4 9.5-2.9 9.9-41.3 132.9-3.1 9.9-4.2 10.8-14.6 10.8h-10.6c-7.3 0-9.2-1.3-11-8.4-4.3-16.2-23.3-95.7-26.4-106.9zM125.4 247.3c4.2 5.8 8.1 6.3 14.1 2.4l6.3-4.2c6.8-4.5 7.3-6.3 3.6-13.5-4.3-8.4-6.4-17.3-6.3-26.9 0-3.1.6-55.7-.9-66.8-2.7-19.3-12.5-32.8-31.7-38.7-10.7-3.4-21.7-3.3-32.7-3-15.1.4-29.4 4.6-42.8 11.4-1.8.9-3.7 3.1-4.1 4.9-.8 3.9-1.1 8.1-.7 12.1.6 5.9 2.6 7 8.2 5.1 5.1-1.7 10-3.9 15.1-5.4 14.5-4.4 29.2-6.4 44.1-1.7 7.1 2.2 11.7 6.9 14.3 13.8 3 7.9 2.4 16.1 2.4 24.2 0 5.5-.1 5.5-5.5 4.5-13.9-2.6-27.7-5-41.9-3.1-15.2 2.1-28.6 7.3-38.2 20-9.1 12-10 25.6-7.4 39.5 2.8 15 11.8 25.7 26.4 30.4 20.6 6.7 40.1 3.3 57.7-9.5 3.8-2.8 7.2-6.2 11.1-9.5 3.1 5 5.8 9.7 8.9 14zm-15.3-61.6c3 .4 4.5 1.9 4.3 5.1-.2 3.8.1 7.6-.3 11.4-1.2 11.7-7.7 19.7-17.9 24.9-8.2 4.2-16.9 5.8-26.1 5-15.2-1.3-21-13.1-19.6-26.3C51.8 193.2 59 186.2 72 184c13.8-2.4 16-1.1 38.1 1.7zm348.8 65.1c21.3-8.6 32.9-26.2 29.2-50-2.2-14.6-11.8-24.2-25.2-29.5-14.7-5.9-33.8-10.3-48.1-18.2-4.4-2.4-7.4-6.3-7.6-11.9-.4-11.1 4.2-17.2 15.4-19.8 9.3-2.1 18.8-2.2 28.1-.4 7.3 1.4 14.3 4.2 21.4 6.3 2.8.9 5.9 2.1 7.8-1.6 3.8-7.3.4-18.7-7.3-21.8-22.5-9-45.5-11.6-68.2-1.6-14.6 6.4-24.6 17.4-26 34.2-1.6 19.3 6.9 33.4 24.1 41.7 7.7 3.7 16.1 5.9 24.2 8.9 8.1 3 16.2 5.8 24.1 9.1 12.3 5.3 11.6 24.2 1.2 30-27.7 15.3-64.9-2.4-69.2-3.8-3.3-1.1-5.3.2-6.3 3.7-3 11.3.7 18.8 11.6 22.7 21.7 7.9 49.6 10.5 70.8 2zM296 413.5c50.8-5.8 98.7-20.8 142.7-47 8-4.7 15.5-10.3 23.1-15.7 7.3-5.2 3.2-18.4-11.3-12.2-54.4 23.2-111.2 36.1-170.2 38.9-30.5 1.5-60.8-.3-91.1-4.7-63.1-9.2-122.4-29.2-177.6-61.2-2.1-1.2-4.2-2.5-6.5-3-4.9-1.1-7.7 4.7-2.4 9.7 24 22.1 50.3 40.8 79.1 55.7 53.7 27.7 110.5 42.7 171.2 42 14.4-.8 28.8-.9 43-2.5zm174.7-92.2c14.8.8 19.4 5.9 15.7 20.2-3.8 14.8-9.3 29.2-13.9 43.8-.9 2.9-4.2 6.3-.8 8.8 3.7 2.6 6.5-1 9-3.3 10.2-9.5 17.4-21 22.5-33.8 5.4-13.4 9.3-27.2 8.7-41.9-.2-6.2-1.8-8.8-7.8-10.5-5.4-1.5-11-2.8-16.5-3.2-21.6-1.8-42.5.5-62 10.6-3.1 1.6-6 3.7-8.7 5.9-1.1.9-3.2 5.3 2.4 6.1 1.9.3 3.9-.1 5.9-.3 16.9-1.6 28.6-3.3 45.5-2.4z"] }; +var faBandcamp = { prefix: 'fab', iconName: 'bandcamp', icon: [496, 512, [], "f2d5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm48.2 326.1h-181L199.9 178h181l-84.7 156.1z"] }; +var faBehance = { prefix: 'fab', iconName: 'behance', icon: [576, 512, [], "f1b4", "M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z"] }; +var faBehanceSquare = { prefix: 'fab', iconName: 'behance-square', icon: [448, 512, [], "f1b5", "M186.5 293c0 19.3-14 25.4-31.2 25.4h-45.1v-52.9h46c18.6.1 30.3 7.8 30.3 27.5zm-7.7-82.3c0-17.7-13.7-21.9-28.9-21.9h-39.6v44.8H153c15.1 0 25.8-6.6 25.8-22.9zm132.3 23.2c-18.3 0-30.5 11.4-31.7 29.7h62.2c-1.7-18.5-11.3-29.7-30.5-29.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM271.7 185h77.8v-18.9h-77.8V185zm-43 110.3c0-24.1-11.4-44.9-35-51.6 17.2-8.2 26.2-17.7 26.2-37 0-38.2-28.5-47.5-61.4-47.5H68v192h93.1c34.9-.2 67.6-16.9 67.6-55.9zM380 280.5c0-41.1-24.1-75.4-67.6-75.4-42.4 0-71.1 31.8-71.1 73.6 0 43.3 27.3 73 71.1 73 33.2 0 54.7-14.9 65.1-46.8h-33.7c-3.7 11.9-18.6 18.1-30.2 18.1-22.4 0-34.1-13.1-34.1-35.3h100.2c.1-2.3.3-4.8.3-7.2z"] }; +var faBimobject = { prefix: 'fab', iconName: 'bimobject', icon: [448, 512, [], "f378", "M416 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm-64 257.4c0 49.4-11.4 82.6-103.8 82.6h-16.9c-44.1 0-62.4-14.9-70.4-38.8h-.9V368H96V136h64v74.7h1.1c4.6-30.5 39.7-38.8 69.7-38.8h17.3c92.4 0 103.8 33.1 103.8 82.5v35zm-64-28.9v22.9c0 21.7-3.4 33.8-38.4 33.8h-45.3c-28.9 0-44.1-6.5-44.1-35.7v-19c0-29.3 15.2-35.7 44.1-35.7h45.3c35-.2 38.4 12 38.4 33.7z"] }; +var faBitbucket = { prefix: 'fab', iconName: 'bitbucket', icon: [512, 512, [], "f171", "M23.1 32C14.2 31.9 7 38.9 6.9 47.8c0 .9.1 1.8.2 2.8L74.9 462c1.7 10.4 10.7 18 21.2 18.1h325.1c7.9.1 14.7-5.6 16-13.4l67.8-416c1.4-8.7-4.5-16.9-13.2-18.3-.9-.1-1.8-.2-2.8-.2L23.1 32zm285.3 297.3H204.6l-28.1-146.8h157l-25.1 146.8z"] }; +var faBitcoin = { prefix: 'fab', iconName: 'bitcoin', icon: [512, 512, [], "f379", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z"] }; +var faBity = { prefix: 'fab', iconName: 'bity', icon: [496, 512, [], "f37a", "M78.4 67.2C173.8-22 324.5-24 421.5 71c14.3 14.1-6.4 37.1-22.4 21.5-84.8-82.4-215.8-80.3-298.9-3.2-16.3 15.1-36.5-8.3-21.8-22.1zm98.9 418.6c19.3 5.7 29.3-23.6 7.9-30C73 421.9 9.4 306.1 37.7 194.8c5-19.6-24.9-28.1-30.2-7.1-32.1 127.4 41.1 259.8 169.8 298.1zm148.1-2c121.9-40.2 192.9-166.9 164.4-291-4.5-19.7-34.9-13.8-30 7.9 24.2 107.7-37.1 217.9-143.2 253.4-21.2 7-10.4 36 8.8 29.7zm-62.9-79l.2-71.8c0-8.2-6.6-14.8-14.8-14.8-8.2 0-14.8 6.7-14.8 14.8l-.2 71.8c0 8.2 6.6 14.8 14.8 14.8s14.8-6.6 14.8-14.8zm71-269c2.1 90.9 4.7 131.9-85.5 132.5-92.5-.7-86.9-44.3-85.5-132.5 0-21.8-32.5-19.6-32.5 0v71.6c0 69.3 60.7 90.9 118 90.1 57.3.8 118-20.8 118-90.1v-71.6c0-19.6-32.5-21.8-32.5 0z"] }; +var faBlackTie = { prefix: 'fab', iconName: 'black-tie', icon: [448, 512, [], "f27e", "M0 32v448h448V32H0zm316.5 325.2L224 445.9l-92.5-88.7 64.5-184-64.5-86.6h184.9L252 173.2l64.5 184z"] }; +var faBlackberry = { prefix: 'fab', iconName: 'blackberry', icon: [512, 512, [], "f37b", "M166 116.9c0 23.4-16.4 49.1-72.5 49.1H23.4l21-88.8h67.8c42.1 0 53.8 23.3 53.8 39.7zm126.2-39.7h-67.8L205.7 166h70.1c53.8 0 70.1-25.7 70.1-49.1.1-16.4-11.6-39.7-53.7-39.7zM88.8 208.1H21L0 296.9h70.1c56.1 0 72.5-23.4 72.5-49.1 0-16.3-11.7-39.7-53.8-39.7zm180.1 0h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 0-16.3-11.7-39.7-53.7-39.7zm189.3-53.8h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7zm-28 137.9h-67.8L343.7 381h70.1c56.1 0 70.1-23.4 70.1-49.1 0-16.3-11.6-39.7-53.7-39.7zM240.8 346H173l-18.7 88.8h70.1c56.1 0 70.1-25.7 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7z"] }; +var faBlogger = { prefix: 'fab', iconName: 'blogger', icon: [448, 512, [], "f37c", "M162.4 196c4.8-4.9 6.2-5.1 36.4-5.1 27.2 0 28.1.1 32.1 2.1 5.8 2.9 8.3 7 8.3 13.6 0 5.9-2.4 10-7.6 13.4-2.8 1.8-4.5 1.9-31.1 2.1-16.4.1-29.5-.2-31.5-.8-10.3-2.9-14.1-17.7-6.6-25.3zm61.4 94.5c-53.9 0-55.8.2-60.2 4.1-3.5 3.1-5.7 9.4-5.1 13.9.7 4.7 4.8 10.1 9.2 12 2.2 1 14.1 1.7 56.3 1.2l47.9-.6 9.2-1.5c9-5.1 10.5-17.4 3.1-24.4-5.3-4.7-5-4.7-60.4-4.7zm223.4 130.1c-3.5 28.4-23 50.4-51.1 57.5-7.2 1.8-9.7 1.9-172.9 1.8-157.8 0-165.9-.1-172-1.8-8.4-2.2-15.6-5.5-22.3-10-5.6-3.8-13.9-11.8-17-16.4-3.8-5.6-8.2-15.3-10-22C.1 423 0 420.3 0 256.3 0 93.2 0 89.7 1.8 82.6 8.1 57.9 27.7 39 53 33.4c7.3-1.6 332.1-1.9 340-.3 21.2 4.3 37.9 17.1 47.6 36.4 7.7 15.3 7-1.5 7.3 180.6.2 115.8 0 164.5-.7 170.5zm-85.4-185.2c-1.1-5-4.2-9.6-7.7-11.5-1.1-.6-8-1.3-15.5-1.7-12.4-.6-13.8-.8-17.8-3.1-6.2-3.6-7.9-7.6-8-18.3 0-20.4-8.5-39.4-25.3-56.5-12-12.2-25.3-20.5-40.6-25.1-3.6-1.1-11.8-1.5-39.2-1.8-42.9-.5-52.5.4-67.1 6.2-27 10.7-46.3 33.4-53.4 62.4-1.3 5.4-1.6 14.2-1.9 64.3-.4 62.8 0 72.1 4 84.5 9.7 30.7 37.1 53.4 64.6 58.4 9.2 1.7 122.2 2.1 133.7.5 20.1-2.7 35.9-10.8 50.7-25.9 10.7-10.9 17.4-22.8 21.8-38.5 3.2-10.9 2.9-88.4 1.7-93.9z"] }; +var faBloggerB = { prefix: 'fab', iconName: 'blogger-b', icon: [448, 512, [], "f37d", "M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z"] }; +var faBluetooth = { prefix: 'fab', iconName: 'bluetooth', icon: [448, 512, [], "f293", "M292.6 171.1L249.7 214l-.3-86 43.2 43.1m-43.2 219.8l43.1-43.1-42.9-42.9-.2 86zM416 259.4C416 465 344.1 512 230.9 512S32 465 32 259.4 115.4 0 228.6 0 416 53.9 416 259.4zm-158.5 0l79.4-88.6L211.8 36.5v176.9L138 139.6l-27 26.9 92.7 93-92.7 93 26.9 26.9 73.8-73.8 2.3 170 127.4-127.5-83.9-88.7z"] }; +var faBluetoothB = { prefix: 'fab', iconName: 'bluetooth-b', icon: [320, 512, [], "f294", "M196.48 260.023l92.626-103.333L143.125 0v206.33l-86.111-86.111-31.406 31.405 108.061 108.399L25.608 368.422l31.406 31.405 86.111-86.111L145.84 512l148.552-148.644-97.912-103.333zm40.86-102.996l-49.977 49.978-.338-100.295 50.315 50.317zM187.363 313.04l49.977 49.978-50.315 50.316.338-100.294z"] }; +var faBtc = { prefix: 'fab', iconName: 'btc', icon: [384, 512, [], "f15a", "M310.204 242.638c27.73-14.18 45.377-39.39 41.28-81.3-5.358-57.351-52.458-76.573-114.85-81.929V0h-48.528v77.203c-12.605 0-25.525.315-38.444.63V0h-48.528v79.409c-17.842.539-38.622.276-97.37 0v51.678c38.314-.678 58.417-3.14 63.023 21.427v217.429c-2.925 19.492-18.524 16.685-53.255 16.071L3.765 443.68c88.481 0 97.37.315 97.37.315V512h48.528v-67.06c13.234.315 26.154.315 38.444.315V512h48.528v-68.005c81.299-4.412 135.647-24.894 142.895-101.467 5.671-61.446-23.32-88.862-69.326-99.89zM150.608 134.553c27.415 0 113.126-8.507 113.126 48.528 0 54.515-85.71 48.212-113.126 48.212v-96.74zm0 251.776V279.821c32.772 0 133.127-9.138 133.127 53.255-.001 60.186-100.355 53.253-133.127 53.253z"] }; +var faBuromobelexperte = { prefix: 'fab', iconName: 'buromobelexperte', icon: [448, 512, [], "f37f", "M0 32v128h128V32H0zm120 120H8V40h112v112zm40-120v128h128V32H160zm120 120H168V40h112v112zm40-120v128h128V32H320zm120 120H328V40h112v112zM0 192v128h128V192H0zm120 120H8V200h112v112zm40-120v128h128V192H160zm120 120H168V200h112v112zm40-120v128h128V192H320zm120 120H328V200h112v112zM0 352v128h128V352H0zm120 120H8V360h112v112zm40-120v128h128V352H160zm120 120H168V360h112v112zm40-120v128h128V352H320z"] }; +var faBuysellads = { prefix: 'fab', iconName: 'buysellads', icon: [448, 512, [], "f20d", "M224 150.7l42.9 160.7h-85.8L224 150.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-65.3 325.3l-94.5-298.7H159.8L65.3 405.3H156l111.7-91.6 24.2 91.6h90.8z"] }; +var faCcAmazonPay = { prefix: 'fab', iconName: 'cc-amazon-pay', icon: [576, 512, [], "f42d", "M124.7 201.8c.1-11.8 0-23.5 0-35.3v-35.3c0-1.3.4-2 1.4-2.7 11.5-8 24.1-12.1 38.2-11.1 12.5.9 22.7 7 28.1 21.7 3.3 8.9 4.1 18.2 4.1 27.7 0 8.7-.7 17.3-3.4 25.6-5.7 17.8-18.7 24.7-35.7 23.9-11.7-.5-21.9-5-31.4-11.7-.9-.8-1.4-1.6-1.3-2.8zm154.9 14.6c4.6 1.8 9.3 2 14.1 1.5 11.6-1.2 21.9-5.7 31.3-12.5.9-.6 1.3-1.3 1.3-2.5-.1-3.9 0-7.9 0-11.8 0-4-.1-8 0-12 0-1.4-.4-2-1.8-2.2-7-.9-13.9-2.2-20.9-2.9-7-.6-14-.3-20.8 1.9-6.7 2.2-11.7 6.2-13.7 13.1-1.6 5.4-1.6 10.8.1 16.2 1.6 5.5 5.2 9.2 10.4 11.2zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zm-207.5 23.9c.4 1.7.9 3.4 1.6 5.1 16.5 40.6 32.9 81.3 49.5 121.9 1.4 3.5 1.7 6.4.2 9.9-2.8 6.2-4.9 12.6-7.8 18.7-2.6 5.5-6.7 9.5-12.7 11.2-4.2 1.1-8.5 1.3-12.9.9-2.1-.2-4.2-.7-6.3-.8-2.8-.2-4.2 1.1-4.3 4-.1 2.8-.1 5.6 0 8.3.1 4.6 1.6 6.7 6.2 7.5 4.7.8 9.4 1.6 14.2 1.7 14.3.3 25.7-5.4 33.1-17.9 2.9-4.9 5.6-10.1 7.7-15.4 19.8-50.1 39.5-100.3 59.2-150.5.6-1.5 1.1-3 1.3-4.6.4-2.4-.7-3.6-3.1-3.7-5.6-.1-11.1 0-16.7 0-3.1 0-5.3 1.4-6.4 4.3-.4 1.1-.9 2.3-1.3 3.4l-29.1 83.7c-2.1 6.1-4.2 12.1-6.5 18.6-.4-.9-.6-1.4-.8-1.9-10.8-29.9-21.6-59.9-32.4-89.8-1.7-4.7-3.5-9.5-5.3-14.2-.9-2.5-2.7-4-5.4-4-6.4-.1-12.8-.2-19.2-.1-2.2 0-3.3 1.6-2.8 3.7zM242.4 206c1.7 11.7 7.6 20.8 18 26.6 9.9 5.5 20.7 6.2 31.7 4.6 12.7-1.9 23.9-7.3 33.8-15.5.4-.3.8-.6 1.4-1 .5 3.2.9 6.2 1.5 9.2.5 2.6 2.1 4.3 4.5 4.4 4.6.1 9.1.1 13.7 0 2.3-.1 3.8-1.6 4-3.9.1-.8.1-1.6.1-2.3v-88.8c0-3.6-.2-7.2-.7-10.8-1.6-10.8-6.2-19.7-15.9-25.4-5.6-3.3-11.8-5-18.2-5.9-3-.4-6-.7-9.1-1.1h-10c-.8.1-1.6.3-2.5.3-8.2.4-16.3 1.4-24.2 3.5-5.1 1.3-10 3.2-15 4.9-3 1-4.5 3.2-4.4 6.5.1 2.8-.1 5.6 0 8.3.1 4.1 1.8 5.2 5.7 4.1 6.5-1.7 13.1-3.5 19.7-4.8 10.3-1.9 20.7-2.7 31.1-1.2 5.4.8 10.5 2.4 14.1 7 3.1 4 4.2 8.8 4.4 13.7.3 6.9.2 13.9.3 20.8 0 .4-.1.7-.2 1.2-.4 0-.8 0-1.1-.1-8.8-2.1-17.7-3.6-26.8-4.1-9.5-.5-18.9.1-27.9 3.2-10.8 3.8-19.5 10.3-24.6 20.8-4.1 8.3-4.6 17-3.4 25.8zM98.7 106.9v175.3c0 .8 0 1.7.1 2.5.2 2.5 1.7 4.1 4.1 4.2 5.9.1 11.8.1 17.7 0 2.5 0 4-1.7 4.1-4.1.1-.8.1-1.7.1-2.5v-60.7c.9.7 1.4 1.2 1.9 1.6 15 12.5 32.2 16.6 51.1 12.9 17.1-3.4 28.9-13.9 36.7-29.2 5.8-11.6 8.3-24.1 8.7-37 .5-14.3-1-28.4-6.8-41.7-7.1-16.4-18.9-27.3-36.7-30.9-2.7-.6-5.5-.8-8.2-1.2h-7c-1.2.2-2.4.3-3.6.5-11.7 1.4-22.3 5.8-31.8 12.7-2 1.4-3.9 3-5.9 4.5-.1-.5-.3-.8-.4-1.2-.4-2.3-.7-4.6-1.1-6.9-.6-3.9-2.5-5.5-6.4-5.6h-9.7c-5.9-.1-6.9 1-6.9 6.8zM493.6 339c-2.7-.7-5.1 0-7.6 1-43.9 18.4-89.5 30.2-136.8 35.8-14.5 1.7-29.1 2.8-43.7 3.2-26.6.7-53.2-.8-79.6-4.3-17.8-2.4-35.5-5.7-53-9.9-37-8.9-72.7-21.7-106.7-38.8-8.8-4.4-17.4-9.3-26.1-14-3.8-2.1-6.2-1.5-8.2 2.1v1.7c1.2 1.6 2.2 3.4 3.7 4.8 36 32.2 76.6 56.5 122 72.9 21.9 7.9 44.4 13.7 67.3 17.5 14 2.3 28 3.8 42.2 4.5 3 .1 6 .2 9 .4.7 0 1.4.2 2.1.3h17.7c.7-.1 1.4-.3 2.1-.3 14.9-.4 29.8-1.8 44.6-4 21.4-3.2 42.4-8.1 62.9-14.7 29.6-9.6 57.7-22.4 83.4-40.1 2.8-1.9 5.7-3.8 8-6.2 4.3-4.4 2.3-10.4-3.3-11.9zm50.4-27.7c-.8-4.2-4-5.8-7.6-7-5.7-1.9-11.6-2.8-17.6-3.3-11-.9-22-.4-32.8 1.6-12 2.2-23.4 6.1-33.5 13.1-1.2.8-2.4 1.8-3.1 3-.6.9-.7 2.3-.5 3.4.3 1.3 1.7 1.6 3 1.5.6 0 1.2 0 1.8-.1l19.5-2.1c9.6-.9 19.2-1.5 28.8-.8 4.1.3 8.1 1.2 12 2.2 4.3 1.1 6.2 4.4 6.4 8.7.3 6.7-1.2 13.1-2.9 19.5-3.5 12.9-8.3 25.4-13.3 37.8-.3.8-.7 1.7-.8 2.5-.4 2.5 1 4 3.4 3.5 1.4-.3 3-1.1 4-2.1 3.7-3.6 7.5-7.2 10.6-11.2 10.7-13.8 17-29.6 20.7-46.6.7-3 1.2-6.1 1.7-9.1.2-4.7.2-9.6.2-14.5z"] }; +var faCcAmex = { prefix: 'fab', iconName: 'cc-amex', icon: [576, 512, [], "f1f3", "M576 255.4c-37.9-.2-44.2-.9-54.5 5v-5c-45.3 0-53.5-1.7-64.9 5.2v-5.2h-78.2v5.1c-11.4-6.5-21.4-5.1-75.7-5.1v5.6c-6.3-3.7-14.5-5.6-24.3-5.6h-58c-3.5 3.8-12.5 13.7-15.7 17.2-12.7-14.1-10.5-11.6-15.5-17.2h-83.1v92.3h82c3.3-3.5 12.9-13.9 16.1-17.4 12.7 14.3 10.3 11.7 15.4 17.4h48.9c0-14.7.1-8.3.1-23 11.5.2 24.3-.2 34.3-6.2 0 13.9-.1 17.1-.1 29.2h39.6c0-18.5.1-7.4.1-25.3 6.2 0 7.7 0 9.4.1.1 1.3 0 0 0 25.2 152.8 0 145.9 1.1 156.7-4.5v4.5c34.8 0 54.8 2.2 67.5-6.1V432c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V228.3h26.6c4.2-10.1 2.2-5.3 6.4-15.3h19.2c4.2 10 2.2 5.2 6.4 15.3h52.9v-11.4c2.2 5 1.1 2.5 5.1 11.4h29.5c2.4-5.5 2.6-5.8 5.1-11.4v11.4h135.5v-25.1c6.4 0 8-.1 9.8.2 0 0-.2 10.9.1 24.8h66.5v-8.9c7.4 5.9 17.4 8.9 29.7 8.9h26.8c4.2-10.1 2.2-5.3 6.4-15.3h19c6.5 15 .2.5 6.6 15.3h52.8v-21.9c11.8 19.7 7.8 12.9 13.2 21.9h41.6v-92h-39.9v18.4c-12.2-20.2-6.3-10.4-11.2-18.4h-43.3v20.6c-6.2-14.6-4.6-10.8-8.8-20.6h-32.4c-.4 0-2.3.2-2.3-.3h-27.6c-12.8 0-23.1 3.2-30.7 9.3v-9.3h-39.9v5.3c-10.8-6.1-20.7-5.1-64.4-5.3-.1 0-11.6-.1-11.6 0h-103c-2.5 6.1-6.8 16.4-12.6 30-2.8-6-11-23.8-13.9-30h-46V157c-7.4-17.4-4.7-11-9-21.1H22.9c-3.4 7.9-13.7 32-23.1 53.9V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48v175.4zm-186.6-80.6c-.3.2-1.4 2.2-1.4 7.6 0 6 .9 7.7 1.1 7.9.2.1 1.1.5 3.4.5l7.3-16.9c-1.1 0-2.1-.1-3.1-.1-5.6 0-7 .7-7.3 1zm-19.9 130.9c9.2 3.3 11 9.5 11 18.4l-.1 13.8h-16.6l.1-11.5c0-11.8-3.8-13.8-14.8-13.8h-17.6l-.1 25.3h-16.6l.1-69.3h39.4c13 0 27.1 2.3 27.1 18.7-.1 7.6-4.2 15.3-11.9 18.4zm-6.3-15.4c0-6.4-5.6-7.4-10.7-7.4h-21v15.6h20.7c5.6 0 11-1.3 11-8.2zm181.7-7.1H575v-14.6h-32.9c-12.8 0-23.8 6.6-23.8 20.7 0 33 42.7 12.8 42.7 27.4 0 5.1-4.3 6.4-8.4 6.4h-32l-.1 14.8h32c8.4 0 17.6-1.8 22.5-8.9v-25.8c-10.5-13.8-39.3-1.3-39.3-13.5 0-5.8 4.6-6.5 9.2-6.5zm-99.2-.3v-14.3h-55.2l-.1 69.3h55.2l.1-14.3-38.6-.3v-13.8H445v-14.1h-37.8v-12.5h38.5zm42.2 40.1h-32.2l-.1 14.8h32.2c14.8 0 26.2-5.6 26.2-22 0-33.2-42.9-11.2-42.9-26.3 0-5.6 4.9-6.4 9.2-6.4h30.4v-14.6h-33.2c-12.8 0-23.5 6.6-23.5 20.7 0 33 42.7 12.5 42.7 27.4-.1 5.4-4.7 6.4-8.8 6.4zm-78.1-158.7c-17.4-.3-33.2-4.1-33.2 19.7 0 11.8 2.8 19.9 16.1 19.9h7.4l23.5-54.5h24.8l27.9 65.4v-65.4h25.3l29.1 48.1v-48.1h16.9v69H524l-31.2-51.9v51.9h-33.7l-6.6-15.3h-34.3l-6.4 15.3h-19.2c-22.8 0-33-11.8-33-34 0-23.3 10.5-35.3 34-35.3h16.1v15.2zm14.3 24.5h22.8l-11.2-27.6-11.6 27.6zm-72.6-39.6h-16.9v69.3h16.9v-69.3zm-38.1 37.3c9.5 3.3 11 9.2 11 18.4v13.5h-16.6c-.3-14.8 3.6-25.1-14.8-25.1h-18v25.1h-16.4v-69.3l39.1.3c13.3 0 27.4 2 27.4 18.4.1 8-4.3 15.7-11.7 18.7zm-6.7-15.3c0-6.4-5.6-7.4-10.7-7.4h-21v15.3h20.7c5.7 0 11-1.3 11-7.9zm-59.5-7.4v-14.6h-55.5v69.3h55.5v-14.3h-38.9v-13.8h37.8v-14.1h-37.8v-12.5h38.9zm-84.6 54.7v-54.2l-24 54.2H124l-24-54.2v54.2H66.2l-6.4-15.3H25.3l-6.4 15.3H1l29.7-69.3h24.5l28.1 65.7v-65.7h27.1l21.7 47 19.7-47h27.6v69.3h-16.8zM53.9 188.8l-11.5-27.6-11.2 27.6h22.7zm253 102.5c0 27.9-30.4 23.3-49.3 23.3l-.1 23.3h-32.2l-20.4-23-21.3 23h-65.4l.1-69.3h66.5l20.5 22.8 21-22.8H279c15.6 0 27.9 5.4 27.9 22.7zm-112.7 11.8l-17.9-20.2h-41.7v12.5h36.3v14.1h-36.3v13.8h40.6l19-20.2zM241 276l-25.3 27.4 25.3 28.1V276zm48.3 15.3c0-6.1-4.6-8.4-10.2-8.4h-21.5v17.6h21.2c5.9 0 10.5-2.8 10.5-9.2z"] }; +var faCcApplePay = { prefix: 'fab', iconName: 'cc-apple-pay', icon: [576, 512, [], "f416", "M302.2 218.4c0 17.2-10.5 27.1-29 27.1h-24.3v-54.2h24.4c18.4 0 28.9 9.8 28.9 27.1zm47.5 62.6c0 8.3 7.2 13.7 18.5 13.7 14.4 0 25.2-9.1 25.2-21.9v-7.7l-23.5 1.5c-13.3.9-20.2 5.8-20.2 14.4zM576 79v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM127.8 197.2c8.4.7 16.8-4.2 22.1-10.4 5.2-6.4 8.6-15 7.7-23.7-7.4.3-16.6 4.9-21.9 11.3-4.8 5.5-8.9 14.4-7.9 22.8zm60.6 74.5c-.2-.2-19.6-7.6-19.8-30-.2-18.7 15.3-27.7 16-28.2-8.8-13-22.4-14.4-27.1-14.7-12.2-.7-22.6 6.9-28.4 6.9-5.9 0-14.7-6.6-24.3-6.4-12.5.2-24.2 7.3-30.5 18.6-13.1 22.6-3.4 56 9.3 74.4 6.2 9.1 13.7 19.1 23.5 18.7 9.3-.4 13-6 24.2-6 11.3 0 14.5 6 24.3 5.9 10.2-.2 16.5-9.1 22.8-18.2 6.9-10.4 9.8-20.4 10-21zm135.4-53.4c0-26.6-18.5-44.8-44.9-44.8h-51.2v136.4h21.2v-46.6h29.3c26.8 0 45.6-18.4 45.6-45zm90 23.7c0-19.7-15.8-32.4-40-32.4-22.5 0-39.1 12.9-39.7 30.5h19.1c1.6-8.4 9.4-13.9 20-13.9 13 0 20.2 6 20.2 17.2v7.5l-26.4 1.6c-24.6 1.5-37.9 11.6-37.9 29.1 0 17.7 13.7 29.4 33.4 29.4 13.3 0 25.6-6.7 31.2-17.4h.4V310h19.6v-68zM516 210.9h-21.5l-24.9 80.6h-.4l-24.9-80.6H422l35.9 99.3-1.9 6c-3.2 10.2-8.5 14.2-17.9 14.2-1.7 0-4.9-.2-6.2-.3v16.4c1.2.4 6.5.5 8.1.5 20.7 0 30.4-7.9 38.9-31.8L516 210.9z"] }; +var faCcDinersClub = { prefix: 'fab', iconName: 'cc-diners-club', icon: [576, 512, [], "f24c", "M239.7 79.9c-96.9 0-175.8 78.6-175.8 175.8 0 96.9 78.9 175.8 175.8 175.8 97.2 0 175.8-78.9 175.8-175.8 0-97.2-78.6-175.8-175.8-175.8zm-39.9 279.6c-41.7-15.9-71.4-56.4-71.4-103.8s29.7-87.9 71.4-104.1v207.9zm79.8.3V151.6c41.7 16.2 71.4 56.7 71.4 104.1s-29.7 87.9-71.4 104.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM329.7 448h-90.3c-106.2 0-193.8-85.5-193.8-190.2C45.6 143.2 133.2 64 239.4 64h90.3c105 0 200.7 79.2 200.7 193.8 0 104.7-95.7 190.2-200.7 190.2z"] }; +var faCcDiscover = { prefix: 'fab', iconName: 'cc-discover', icon: [576, 512, [], "f1f2", "M83 212.1c0 7.9-3.2 15.5-8.9 20.7-4.9 4.4-11.6 6.4-21.9 6.4H48V185h4.2c10.3 0 16.7 1.7 21.9 6.6 5.7 5 8.9 12.6 8.9 20.5zM504.8 184h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8 0-7.9-5.5-12.1-15.6-12.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM428 253h45.3v-13.8H444V217h28.3v-13.8H444V185h29.3v-14H428v82zm-86.2-82l35 84.2h8.6l35.5-84.2h-17.5l-22.2 55.2-21.9-55.2h-17.5zm-83 41.6c0 24.6 19.9 44.6 44.6 44.6 24.6 0 44.6-19.9 44.6-44.6 0-24.6-19.9-44.6-44.6-44.6-24.6 0-44.6 19.9-44.6 44.6zm-68-.5c0 32.5 33.6 52.5 63.3 38.2v-19c-19.3 19.3-46.8 5.8-46.8-19.2 0-23.7 26.7-39.1 46.8-19v-19c-30.2-15-63.3 6.8-63.3 38zm-33.9 28.3c-7.6 0-13.8-3.7-17.5-10.8l-10.3 9.9c17.8 26.1 56.6 18.2 56.6-11.3 0-13.1-5.4-19-23.6-25.6-9.6-3.4-12.3-5.9-12.3-10.3 0-8.7 14.5-14.1 24.9-2.5l8.4-10.8c-19.1-17.1-49.7-8.9-49.7 14.3 0 11.3 5.2 17.2 20.2 22.7 25.7 9.1 14.7 24.4 3.3 24.4zm-57.4-28.3c0-24.1-18-41.1-44.1-41.1H32v82h23.4c30.9 0 44.1-22.4 44.1-40.9zm23.4-41.1h-16v82h16v-82zM544 288c-33.3 20.8-226.4 124.4-416 160h401c8.2 0 15-6.8 15-15V288zm0-35l-25.9-34.5c12.1-2.5 18.7-10.6 18.7-23.2 0-28.5-30.3-24.4-52.9-24.4v82h16v-32.8h2.2l22.2 32.8H544z"] }; +var faCcJcb = { prefix: 'fab', iconName: 'cc-jcb', icon: [576, 512, [], "f24b", "M431.5 244.3V212c41.2 0 38.5.2 38.5.2 7.3 1.3 13.3 7.3 13.3 16 0 8.8-6 14.5-13.3 15.8-1.2.4-3.3.3-38.5.3zm42.8 20.2c-2.8-.7-3.3-.5-42.8-.5v35c39.6 0 40 .2 42.8-.5 7.5-1.5 13.5-8 13.5-17 0-8.7-6-15.5-13.5-17zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM182 192.3h-57c0 67.1 10.7 109.7-35.8 109.7-19.5 0-38.8-5.7-57.2-14.8v28c30 8.3 68 8.3 68 8.3 97.9 0 82-47.7 82-131.2zm178.5 4.5c-63.4-16-165-14.9-165 59.3 0 77.1 108.2 73.6 165 59.2V287C312.9 311.7 253 309 253 256s59.8-55.6 107.5-31.2v-28zM544 286.5c0-18.5-16.5-30.5-38-32v-.8c19.5-2.7 30.3-15.5 30.3-30.2 0-19-15.7-30-37-31 0 0 6.3-.3-120.3-.3v127.5h122.7c24.3.1 42.3-12.9 42.3-33.2z"] }; +var faCcMastercard = { prefix: 'fab', iconName: 'cc-mastercard', icon: [576, 512, [], "f1f1", "M482.9 410.3c0 6.8-4.6 11.7-11.2 11.7-6.8 0-11.2-5.2-11.2-11.7 0-6.5 4.4-11.7 11.2-11.7 6.6 0 11.2 5.2 11.2 11.7zm-310.8-11.7c-7.1 0-11.2 5.2-11.2 11.7 0 6.5 4.1 11.7 11.2 11.7 6.5 0 10.9-4.9 10.9-11.7-.1-6.5-4.4-11.7-10.9-11.7zm117.5-.3c-5.4 0-8.7 3.5-9.5 8.7h19.1c-.9-5.7-4.4-8.7-9.6-8.7zm107.8.3c-6.8 0-10.9 5.2-10.9 11.7 0 6.5 4.1 11.7 10.9 11.7 6.8 0 11.2-4.9 11.2-11.7 0-6.5-4.4-11.7-11.2-11.7zm105.9 26.1c0 .3.3.5.3 1.1 0 .3-.3.5-.3 1.1-.3.3-.3.5-.5.8-.3.3-.5.5-1.1.5-.3.3-.5.3-1.1.3-.3 0-.5 0-1.1-.3-.3 0-.5-.3-.8-.5-.3-.3-.5-.5-.5-.8-.3-.5-.3-.8-.3-1.1 0-.5 0-.8.3-1.1 0-.5.3-.8.5-1.1.3-.3.5-.3.8-.5.5-.3.8-.3 1.1-.3.5 0 .8 0 1.1.3.5.3.8.3 1.1.5s.2.6.5 1.1zm-2.2 1.4c.5 0 .5-.3.8-.3.3-.3.3-.5.3-.8 0-.3 0-.5-.3-.8-.3 0-.5-.3-1.1-.3h-1.6v3.5h.8V426h.3l1.1 1.4h.8l-1.1-1.3zM576 81v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V81c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM64 220.6c0 76.5 62.1 138.5 138.5 138.5 27.2 0 53.9-8.2 76.5-23.1-72.9-59.3-72.4-171.2 0-230.5-22.6-15-49.3-23.1-76.5-23.1-76.4-.1-138.5 62-138.5 138.2zm224 108.8c70.5-55 70.2-162.2 0-217.5-70.2 55.3-70.5 162.6 0 217.5zm-142.3 76.3c0-8.7-5.7-14.4-14.7-14.7-4.6 0-9.5 1.4-12.8 6.5-2.4-4.1-6.5-6.5-12.2-6.5-3.8 0-7.6 1.4-10.6 5.4V392h-8.2v36.7h8.2c0-18.9-2.5-30.2 9-30.2 10.2 0 8.2 10.2 8.2 30.2h7.9c0-18.3-2.5-30.2 9-30.2 10.2 0 8.2 10 8.2 30.2h8.2v-23zm44.9-13.7h-7.9v4.4c-2.7-3.3-6.5-5.4-11.7-5.4-10.3 0-18.2 8.2-18.2 19.3 0 11.2 7.9 19.3 18.2 19.3 5.2 0 9-1.9 11.7-5.4v4.6h7.9V392zm40.5 25.6c0-15-22.9-8.2-22.9-15.2 0-5.7 11.9-4.8 18.5-1.1l3.3-6.5c-9.4-6.1-30.2-6-30.2 8.2 0 14.3 22.9 8.3 22.9 15 0 6.3-13.5 5.8-20.7.8l-3.5 6.3c11.2 7.6 32.6 6 32.6-7.5zm35.4 9.3l-2.2-6.8c-3.8 2.1-12.2 4.4-12.2-4.1v-16.6h13.1V392h-13.1v-11.2h-8.2V392h-7.6v7.3h7.6V416c0 17.6 17.3 14.4 22.6 10.9zm13.3-13.4h27.5c0-16.2-7.4-22.6-17.4-22.6-10.6 0-18.2 7.9-18.2 19.3 0 20.5 22.6 23.9 33.8 14.2l-3.8-6c-7.8 6.4-19.6 5.8-21.9-4.9zm59.1-21.5c-4.6-2-11.6-1.8-15.2 4.4V392h-8.2v36.7h8.2V408c0-11.6 9.5-10.1 12.8-8.4l2.4-7.6zm10.6 18.3c0-11.4 11.6-15.1 20.7-8.4l3.8-6.5c-11.6-9.1-32.7-4.1-32.7 15 0 19.8 22.4 23.8 32.7 15l-3.8-6.5c-9.2 6.5-20.7 2.6-20.7-8.6zm66.7-18.3H408v4.4c-8.3-11-29.9-4.8-29.9 13.9 0 19.2 22.4 24.7 29.9 13.9v4.6h8.2V392zm33.7 0c-2.4-1.2-11-2.9-15.2 4.4V392h-7.9v36.7h7.9V408c0-11 9-10.3 12.8-8.4l2.4-7.6zm40.3-14.9h-7.9v19.3c-8.2-10.9-29.9-5.1-29.9 13.9 0 19.4 22.5 24.6 29.9 13.9v4.6h7.9v-51.7zm7.6-75.1v4.6h.8V302h1.9v-.8h-4.6v.8h1.9zm6.6 123.8c0-.5 0-1.1-.3-1.6-.3-.3-.5-.8-.8-1.1-.3-.3-.8-.5-1.1-.8-.5 0-1.1-.3-1.6-.3-.3 0-.8.3-1.4.3-.5.3-.8.5-1.1.8-.5.3-.8.8-.8 1.1-.3.5-.3 1.1-.3 1.6 0 .3 0 .8.3 1.4 0 .3.3.8.8 1.1.3.3.5.5 1.1.8.5.3 1.1.3 1.4.3.5 0 1.1 0 1.6-.3.3-.3.8-.5 1.1-.8.3-.3.5-.8.8-1.1.3-.6.3-1.1.3-1.4zm3.2-124.7h-1.4l-1.6 3.5-1.6-3.5h-1.4v5.4h.8v-4.1l1.6 3.5h1.1l1.4-3.5v4.1h1.1v-5.4zm4.4-80.5c0-76.2-62.1-138.3-138.5-138.3-27.2 0-53.9 8.2-76.5 23.1 72.1 59.3 73.2 171.5 0 230.5 22.6 15 49.5 23.1 76.5 23.1 76.4.1 138.5-61.9 138.5-138.4z"] }; +var faCcPaypal = { prefix: 'fab', iconName: 'cc-paypal', icon: [576, 512, [], "f1f4", "M186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5z"] }; +var faCcStripe = { prefix: 'fab', iconName: 'cc-stripe', icon: [576, 512, [], "f1f5", "M396.9 256.5c0 19.1-8.8 33.4-21.9 33.4-8.3 0-13.3-3-16.8-6.7l-.2-52.8c3.7-4.1 8.8-7 17-7 12.9-.1 21.9 14.5 21.9 33.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM122.2 281.1c0-42.3-54.3-34.7-54.3-50.7 0-5.5 4.6-7.7 12.1-7.7 10.8 0 24.5 3.3 35.3 9.1v-33.4c-11.8-4.7-23.5-6.5-35.3-6.5-28.8 0-48 15-48 40.2 0 39.3 54 32.9 54 49.9 0 6.6-5.7 8.7-13.6 8.7-11.8 0-26.9-4.9-38.9-11.3v33.9c13.2 5.7 26.6 8.1 38.8 8.1 29.6-.2 49.9-14.7 49.9-40.3zm68.9-86.9h-27v-30.8l-34.7 7.4-.2 113.9c0 21 15.8 36.5 36.9 36.5 11.6 0 20.2-2.1 24.9-4.7v-28.9c-4.5 1.8-27 8.3-27-12.6v-50.5h27v-30.3zm73.8 0c-4.7-1.7-21.3-4.8-29.6 10.5l-2.2-10.5h-30.7v124.5h35.5v-84.4c8.4-11 22.6-8.9 27.1-7.4v-32.7zm44.2 0h-35.7v124.5h35.7V194.2zm0-47.3l-35.7 7.6v28.9l35.7-7.6v-28.9zm122.7 108.8c0-41.3-23.5-63.8-48.4-63.8-13.9 0-22.9 6.6-27.8 11.1l-1.8-8.8h-31.3V360l35.5-7.5.1-40.2c5.1 3.7 12.7 9 25.1 9 25.4-.1 48.6-20.5 48.6-65.6zm112.2 1.2c0-36.4-17.6-65.1-51.3-65.1-33.8 0-54.3 28.7-54.3 64.9 0 42.8 24.2 64.5 58.8 64.5 17 0 29.7-3.9 39.4-9.2v-28.6c-9.7 4.9-20.8 7.9-34.9 7.9-13.8 0-26-4.9-27.6-21.5h69.5c.1-2 .4-9.4.4-12.9zm-51.6-36.1c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7z"] }; +var faCcVisa = { prefix: 'fab', iconName: 'cc-visa', icon: [576, 512, [], "f1f0", "M470.1 231.3s7.6 37.2 9.3 45H446c3.3-8.9 16-43.5 16-43.5-.2.3 3.3-9.1 5.3-14.9l2.8 13.4zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM152.5 331.2L215.7 176h-42.5l-39.3 106-4.3-21.5-14-71.4c-2.3-9.9-9.4-12.7-18.2-13.1H32.7l-.7 3.1c15.8 4 29.9 9.8 42.2 17.1l35.8 135h42.5zm94.4.2L272.1 176h-40.2l-25.1 155.4h40.1zm139.9-50.8c.2-17.7-10.6-31.2-33.7-42.3-14.1-7.1-22.7-11.9-22.7-19.2.2-6.6 7.3-13.4 23.1-13.4 13.1-.3 22.7 2.8 29.9 5.9l3.6 1.7 5.5-33.6c-7.9-3.1-20.5-6.6-36-6.6-39.7 0-67.6 21.2-67.8 51.4-.3 22.3 20 34.7 35.2 42.2 15.5 7.6 20.8 12.6 20.8 19.3-.2 10.4-12.6 15.2-24.1 15.2-16 0-24.6-2.5-37.7-8.3l-5.3-2.5-5.6 34.9c9.4 4.3 26.8 8.1 44.8 8.3 42.2.1 69.7-20.8 70-53zM528 331.4L495.6 176h-31.1c-9.6 0-16.9 2.8-21 12.9l-59.7 142.5H426s6.9-19.2 8.4-23.3H486c1.2 5.5 4.8 23.3 4.8 23.3H528z"] }; +var faCentercode = { prefix: 'fab', iconName: 'centercode', icon: [512, 512, [], "f380", "M329.2 268.6c-3.8 35.2-35.4 60.6-70.6 56.8-35.2-3.8-60.6-35.4-56.8-70.6 3.8-35.2 35.4-60.6 70.6-56.8 35.1 3.8 60.6 35.4 56.8 70.6zm-85.8 235.1C96.7 496-8.2 365.5 10.1 224.3c11.2-86.6 65.8-156.9 139.1-192 161-77.1 349.7 37.4 354.7 216.6 4.1 147-118.4 262.2-260.5 254.8zm179.9-180c27.9-118-160.5-205.9-237.2-234.2-57.5 56.3-69.1 188.6-33.8 344.4 68.8 15.8 169.1-26.4 271-110.2z"] }; +var faChrome = { prefix: 'fab', iconName: 'chrome', icon: [496, 512, [], "f268", "M131.5 217.5L55.1 100.1c47.6-59.2 119-91.8 192-92.1 42.3-.3 85.5 10.5 124.8 33.2 43.4 25.2 76.4 61.4 97.4 103L264 133.4c-58.1-3.4-113.4 29.3-132.5 84.1zm32.9 38.5c0 46.2 37.4 83.6 83.6 83.6s83.6-37.4 83.6-83.6-37.4-83.6-83.6-83.6-83.6 37.3-83.6 83.6zm314.9-89.2L339.6 174c37.9 44.3 38.5 108.2 6.6 157.2L234.1 503.6c46.5 2.5 94.4-7.7 137.8-32.9 107.4-62 150.9-192 107.4-303.9zM133.7 303.6L40.4 120.1C14.9 159.1 0 205.9 0 256c0 124 90.8 226.7 209.5 244.9l63.7-124.8c-57.6 10.8-113.2-20.8-139.5-72.5z"] }; +var faCloudscale = { prefix: 'fab', iconName: 'cloudscale', icon: [448, 512, [], "f383", "M318.1 154l-9.4 7.6c-22.5-19.3-51.5-33.6-83.3-33.6C153.8 128 96 188.8 96 260.3c0 6.6.4 13.1 1.4 19.4-2-56 41.8-97.4 92.6-97.4 24.2 0 46.2 9.4 62.6 24.7l-25.2 20.4c-8.3-.9-16.8 1.8-23.1 8.1-11.1 11-11.1 28.9 0 40 11.1 11 28.9 11 40 0 6.3-6.3 9-14.9 8.1-23.1l75.2-88.8c6.3-6.5-3.3-15.9-9.5-9.6zm-83.8 111.5c-5.6 5.5-14.6 5.5-20.2 0-5.6-5.6-5.6-14.6 0-20.2s14.6-5.6 20.2 0 5.6 14.7 0 20.2zM224 32C100.5 32 0 132.5 0 256s100.5 224 224 224 224-100.5 224-224S347.5 32 224 32zm0 384c-88.2 0-160-71.8-160-160S135.8 96 224 96s160 71.8 160 160-71.8 160-160 160z"] }; +var faCloudsmith = { prefix: 'fab', iconName: 'cloudsmith', icon: [332, 512, [], "f384", "M332.5 419.9c0 46.4-37.6 84.1-84 84.1s-84-37.7-84-84.1 37.6-84 84-84 84 37.6 84 84zm-84-243.9c46.4 0 80-37.6 80-84s-33.6-84-80-84-88 37.6-88 84-29.6 76-76 76-84 41.6-84 88 37.6 80 84 80 84-33.6 84-80 33.6-80 80-80z"] }; +var faCloudversify = { prefix: 'fab', iconName: 'cloudversify', icon: [616, 512, [], "f385", "M148.6 304c8.2 68.5 67.4 115.5 146 111.3 51.2 43.3 136.8 45.8 186.4-5.6 69.2 1.1 118.5-44.6 131.5-99.5 14.8-62.5-18.2-132.5-92.1-155.1-33-88.1-131.4-101.5-186.5-85-57.3 17.3-84.3 53.2-99.3 109.7-7.8 2.7-26.5 8.9-45 24.1 11.7 0 15.2 8.9 15.2 19.5v20.4c0 10.7-8.7 19.5-19.5 19.5h-20.2c-10.7 0-19.5-6-19.5-16.7V240H98.8C95 240 88 244.3 88 251.9v40.4c0 6.4 5.3 11.8 11.7 11.8h48.9zm227.4 8c-10.7 46.3 21.7 72.4 55.3 86.8C324.1 432.6 259.7 348 296 288c-33.2 21.6-33.7 71.2-29.2 92.9-17.9-12.4-53.8-32.4-57.4-79.8-3-39.9 21.5-75.7 57-93.9C297 191.4 369.9 198.7 400 248c-14.1-48-53.8-70.1-101.8-74.8 30.9-30.7 64.4-50.3 114.2-43.7 69.8 9.3 133.2 82.8 67.7 150.5 35-16.3 48.7-54.4 47.5-76.9l10.5 19.6c11.8 22 15.2 47.6 9.4 72-9.2 39-40.6 68.8-79.7 76.5-32.1 6.3-83.1-5.1-91.8-59.2zM128 208H88.2c-8.9 0-16.2-7.3-16.2-16.2v-39.6c0-8.9 7.3-16.2 16.2-16.2H128c8.9 0 16.2 7.3 16.2 16.2v39.6c0 8.9-7.3 16.2-16.2 16.2zM10.1 168C4.5 168 0 163.5 0 157.9v-27.8c0-5.6 4.5-10.1 10.1-10.1h27.7c5.5 0 10.1 4.5 10.1 10.1v27.8c0 5.6-4.5 10.1-10.1 10.1H10.1zM168 142.7v-21.4c0-5.1 4.2-9.3 9.3-9.3h21.4c5.1 0 9.3 4.2 9.3 9.3v21.4c0 5.1-4.2 9.3-9.3 9.3h-21.4c-5.1 0-9.3-4.2-9.3-9.3zM56 235.5v25c0 6.3-5.1 11.5-11.4 11.5H19.4C13.1 272 8 266.8 8 260.5v-25c0-6.3 5.1-11.5 11.4-11.5h25.1c6.4 0 11.5 5.2 11.5 11.5z"] }; +var faCodepen = { prefix: 'fab', iconName: 'codepen', icon: [512, 512, [], "f1cb", "M502.285 159.704l-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285zM278 63.131l172.286 114.858-76.857 51.429L278 165.703V63.131zm-44 0v102.572l-95.429 63.715-76.857-51.429L234 63.131zM44 219.132l55.143 36.857L44 292.846v-73.714zm190 229.715L61.714 333.989l76.857-51.429L234 346.275v102.572zm22-140.858l-77.715-52 77.715-52 77.715 52-77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429L278 448.847zm190-156.001l-55.143-36.857L468 219.132v73.714z"] }; +var faCodiepie = { prefix: 'fab', iconName: 'codiepie', icon: [472, 512, [], "f284", "M422.5 202.9c30.7 0 33.5 53.1-.3 53.1h-10.8v44.3h-26.6v-97.4h37.7zM472 352.6C429.9 444.5 350.4 504 248 504 111 504 0 393 0 256S111 8 248 8c97.4 0 172.8 53.7 218.2 138.4l-186 108.8L472 352.6zm-38.5 12.5l-60.3-30.7c-27.1 44.3-70.4 71.4-122.4 71.4-82.5 0-149.2-66.7-149.2-148.9 0-82.5 66.7-149.2 149.2-149.2 48.4 0 88.9 23.5 116.9 63.4l59.5-34.6c-40.7-62.6-104.7-100-179.2-100-121.2 0-219.5 98.3-219.5 219.5S126.8 475.5 248 475.5c78.6 0 146.5-42.1 185.5-110.4z"] }; +var faConnectdevelop = { prefix: 'fab', iconName: 'connectdevelop', icon: [576, 512, [], "f20e", "M550.5 241l-50.089-86.786c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.733-14.732-15.001l-55.447-95.893c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.268-15.268-15.268-4.821 0-8.839 2.143-11.786 5.625H299.518C296.839 18.143 292.821 16 288 16s-8.839 2.143-11.518 5.625H170.411C167.464 18.143 163.447 16 158.625 16c-8.303 0-15.268 6.696-15.268 15.268 0 1.607.536 3.482 1.072 4.821l-55.983 97.233c-5.356 2.41-9.107 7.5-9.107 13.661 0 .535.268 1.071.268 1.607l-53.304 92.143c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.393 12.054 15l55.179 95.358c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.393 12.054 14.732l51.697 89.732c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.268 15.268 15.268 4.821 0 8.839-2.143 11.518-5.357h106.875C279.161 493.857 283.447 496 288 496s8.839-2.143 11.518-5.357h107.143c2.678 2.946 6.696 4.821 10.982 4.821 8.571 0 15.268-6.964 15.268-15.268 0-1.607-.267-2.946-.803-4.285l51.697-90.268c6.964-1.339 12.054-7.5 12.054-14.732 0-1.607-.268-3.214-.804-4.821l54.911-95.358c6.964-1.339 12.322-7.5 12.322-15-.002-7.232-5.092-13.393-11.788-14.732zM153.535 450.732l-43.66-75.803h43.66v75.803zm0-83.839h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.999-47.41v50.624zm0-62.411l-50.357 53.304c-1.339-.536-2.679-1.34-4.018-1.607L43.447 259.75c.535-1.339.535-2.679.535-4.018s0-2.41-.268-3.482l51.965-90c2.679-.268 5.357-1.072 7.768-2.679l50.089 51.965v92.946zm0-102.322l-45.803-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.928-15.804v72.053zm0-80.625l-43.66 15.804 43.66-75.536v59.732zm326.519 39.108l.804 1.339L445.5 329.125l-63.75-67.232 98.036-101.518.268.268zM291.75 355.107l11.518 11.786H280.5l11.25-11.786zm-.268-11.25l-83.303-85.446 79.553-84.375 83.036 87.589-79.286 82.232zm5.357 5.893l79.286-82.232 67.5 71.25-5.892 28.125H313.714l-16.875-17.143zM410.411 44.393c1.071.536 2.142 1.072 3.482 1.34l57.857 100.714v.536c0 2.946.803 5.624 2.143 7.767L376.393 256l-83.035-87.589L410.411 44.393zm-9.107-2.143L287.732 162.518l-57.054-60.268 166.339-60h4.287zm-123.483 0c2.678 2.678 6.16 4.285 10.179 4.285s7.5-1.607 10.179-4.285h75L224.786 95.821 173.893 42.25h103.928zm-116.249 5.625l1.071-2.142a33.834 33.834 0 0 0 2.679-.804l51.161 53.84-54.911 19.821V47.875zm0 79.286l60.803-21.964 59.732 63.214-79.553 84.107-40.982-42.053v-83.304zm0 92.678L198 257.607l-36.428 38.304v-76.072zm0 87.858l42.053-44.464 82.768 85.982-17.143 17.678H161.572v-59.196zm6.964 162.053c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.732h99.91l-91.607 94.821h-1.339zm129.911 0c-2.679-2.41-6.428-4.285-10.447-4.285s-7.767 1.875-10.447 4.285h-96.429l91.607-94.821h38.304l91.607 94.821H298.447zm120-11.786l-4.286 7.5c-1.339.268-2.41.803-3.482 1.339l-89.196-91.875h114.376l-17.412 83.036zm12.856-22.232l12.858-60.803h21.964l-34.822 60.803zm34.822-68.839h-20.357l4.553-21.16 17.143 18.214c-.535.803-1.071 1.874-1.339 2.946zm66.161-107.411l-55.447 96.697c-1.339.535-2.679 1.071-4.018 1.874l-20.625-21.964 34.554-163.928 45.803 79.286c-.267 1.339-.803 2.678-.803 4.285 0 1.339.268 2.411.536 3.75z"] }; +var faContao = { prefix: 'fab', iconName: 'contao', icon: [512, 512, [], "f26d", "M45.4 305c14.4 67.1 26.4 129 68.2 175H34c-18.7 0-34-15.2-34-34V66c0-18.7 15.2-34 34-34h57.7C77.9 44.6 65.6 59.2 54.8 75.6c-45.4 70-27 146.8-9.4 229.4zM478 32h-90.2c21.4 21.4 39.2 49.5 52.7 84.1l-137.1 29.3c-14.9-29-37.8-53.3-82.6-43.9-24.6 5.3-41 19.3-48.3 34.6-8.8 18.7-13.2 39.8 8.2 140.3 21.1 100.2 33.7 117.7 49.5 131.2 12.9 11.1 33.4 17 58.3 11.7 44.5-9.4 55.7-40.7 57.4-73.2l137.4-29.6c3.2 71.5-18.7 125.2-57.4 163.6H478c18.7 0 34-15.2 34-34V66c0-18.8-15.2-34-34-34z"] }; +var faCpanel = { prefix: 'fab', iconName: 'cpanel', icon: [640, 512, [], "f388", "M52.9 213.7h40l-6.2 23.6c-1.9 6.5-7.4 10.9-14.3 10.9H53.8c-24.9 0-24.7 37.4 0 37.4h11.3c4.2 0 7.6 3.9 6.4 8.3L64.4 320H52c-33.5 0-59-31.4-50.3-65.2 7.3-27 28.3-41.1 51.2-41.1M73.1 320L108 189.9c1.8-6.4 7.2-10.9 14.3-10.9h37c24.1 0 45.4 16.4 51 41.2 6.6 29.1-14.5 65.3-51.7 65.3h-32l6.4-23.8c1.8-6.2 7.3-10.8 14.3-10.8h10.3c12.4 0 20.8-11.7 18.3-22.6-2.1-9.2-9.9-14.8-18.3-14.8h-19.8L112 309.2c-1.9 6.2-7.4 10.7-14.2 10.7l-24.7.1m220.6-69.4c.3-1 1.9-5.3-2.1-5.3h-57.5c-9.7 0-16.6-8.9-14.2-18.5l3.5-13.4h77.9c18.8 0 33.3 17.6 28.5 36.8l-14 51.8c-2.8 10.6-12.2 17.8-23.4 17.8l-57.5-.2c-42.9 0-38.5-63.8.7-63.8H284l-3.5 13.2c-1.9 6.2-7.4 10.8-14.2 10.8h-21.6c-5.3 0-5.3 7.9 0 7.9h34.9c4.6 0 5.1-3.9 5.5-5.3l8.6-31.8m103.1-36.9c34.4 0 59.3 32.3 50.3 65.4l-8.8 33.1c-1.2 4.9-5.7 7.8-10.3 7.8h-19.1c-4.5 0-7.6-4-6.4-8.3l10.6-40c3.3-11.6-5.6-23.4-18.1-23.4h-19.8l-17.2 64c-1.2 4.8-5.6 7.8-10.4 7.8h-18.9c-4.2 0-7.6-3.9-6.4-8.3l26.2-98h48.3M498 251.6l-8 30c-.9 3.3 1.5 6.7 5.1 6.7h73.3l-5.7 21c-1.9 6.2-7.4 10.7-14.2 10.7h-66.7c-20 0-33.3-19-28.3-36.7l10.8-40c4.8-17.6 20.7-29.6 38.6-29.6h47.3c19 0 33.2 17.7 28.3 36.8l-3.2 12c-2.9 11-12.7 17.6-23.2 17.6h-53.4l3.5-13c1.6-6.2 7.2-10.8 14.2-10.8H538c2 0 3.3-1 3.9-3l.7-2.6c.7-2.7-1.3-5.1-3.9-5.1h-32.9c-4.1 0-6.9 2.1-7.8 6zm70.2 68.4l35.6-133.1c1.2-4.7 5.5-7.9 10.4-7.9h18.9c4.5 0 7.7 4 6.5 8.3l-26.5 98.2c-5.1 20.7-24.2 34.5-44.9 34.5"] }; +var faCreativeCommons = { prefix: 'fab', iconName: 'creative-commons', icon: [496, 512, [], "f25e", "M254.8 214.8l-33.2 17.3c-9.4-19.6-25.2-19.9-27.5-19.9-22.1 0-33.2 14.6-33.2 43.8 0 23.6 9.2 43.8 33.2 43.8 14.5 0 24.7-7.1 30.6-21.3l30.6 15.5c-6.2 11.5-25.7 39-65.1 39-22.6 0-74-10.3-74-77.1 0-58.7 43-77.1 72.6-77.1 30.8.2 52.7 12.1 66 36zm143.1 0l-32.8 17.3c-9.5-19.8-25.7-19.9-27.9-19.9-22.1 0-33.2 14.6-33.2 43.8 0 23.6 9.2 43.8 33.2 43.8 14.5 0 24.6-7.1 30.5-21.3l31 15.5c-2.1 3.7-21.4 39-65.1 39-22.7 0-74-9.9-74-77.1 0-58.7 43-77.1 72.6-77.1 30.8.2 52.7 12.1 65.7 36zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z"] }; +var faCreativeCommonsBy = { prefix: 'fab', iconName: 'creative-commons-by', icon: [496, 512, [], "f4e7", "M314.9 194.4v101.4h-28.3v120.5h-77.1V295.9h-28.3V194.4c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7H299c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3zm-101.5-63.7c0-23.3 11.5-35 34.5-35s34.5 11.7 34.5 35c0 23-11.5 34.5-34.5 34.5s-34.5-11.5-34.5-34.5zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z"] }; +var faCreativeCommonsNc = { prefix: 'fab', iconName: 'creative-commons-nc', icon: [496, 512, [], "f4e8", "M247.6 8C387.4 8 496 115.9 496 256c0 147.2-118.5 248-248.4 248C113.1 504 0 393.2 0 256 0 123.1 104.7 8 247.6 8zM55.8 189.1c-7.4 20.4-11.1 42.7-11.1 66.9 0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4v38.1h-28.8V368c-27.5-.3-52.6-10.2-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4zM248.4 52.3c-38.4 0-112.4 8.7-170.5 93l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3v-38.1h28.8v38.1c22.7 1.2 43.4 8.9 62 23L295 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8z"] }; +var faCreativeCommonsNcEu = { prefix: 'fab', iconName: 'creative-commons-nc-eu', icon: [496, 512, [], "f4e9", "M247.7 8C103.6 8 0 124.8 0 256c0 136.3 111.7 248 247.7 248C377.9 504 496 403.1 496 256 496 117 388.4 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-23.2 3.7-45.2 10.9-66l65.7 29.1h-4.7v29.5h23.3c0 6.2-.4 3.2-.4 19.5h-22.8v29.5h27c11.4 67 67.2 101.3 124.6 101.3 26.6 0 50.6-7.9 64.8-15.8l-10-46.1c-8.7 4.6-28.2 10.8-47.3 10.8-28.2 0-58.1-10.9-67.3-50.2h90.3l128.3 56.8c-1.5 2.1-56.2 104.3-178.8 104.3zm-16.7-190.6l-.5-.4.9.4h-.4zm77.2-19.5h3.7v-29.5h-70.3l-28.6-12.6c2.5-5.5 5.4-10.5 8.8-14.3 12.9-15.8 31.1-22.4 51.1-22.4 18.3 0 35.3 5.4 46.1 10l11.6-47.3c-15-6.6-37-12.4-62.3-12.4-39 0-72.2 15.8-95.9 42.3-5.3 6.1-9.8 12.9-13.9 20.1l-81.6-36.1c64.6-96.8 157.7-93.6 170.7-93.6 113 0 203 90.2 203 203.4 0 18.7-2.1 36.3-6.3 52.9l-136.1-60.5z"] }; +var faCreativeCommonsNcJp = { prefix: 'fab', iconName: 'creative-commons-nc-jp', icon: [496, 512, [], "f4ea", "M247.7 8C103.6 8 0 124.8 0 256c0 136.4 111.8 248 247.7 248C377.9 504 496 403.2 496 256 496 117.2 388.5 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-21.1 3-41.2 9-60.3l127 56.5h-27.9v38.6h58.1l5.7 11.8v18.7h-63.8V360h63.8v56h61.7v-56h64.2v-35.7l81 36.1c-1.5 2.2-57.1 98.3-175.2 98.3zm87.6-137.3h-57.6v-18.7l2.9-5.6 54.7 24.3zm6.5-51.4v-17.8h-38.6l63-116H301l-43.4 96-23-10.2-39.6-85.7h-65.8l27.3 51-81.9-36.5c27.8-44.1 82.6-98.1 173.7-98.1 112.8 0 203 90 203 203.4 0 21-2.7 40.6-7.9 59l-101-45.1z"] }; +var faCreativeCommonsNd = { prefix: 'fab', iconName: 'creative-commons-nd', icon: [496, 512, [], "f4eb", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm94 144.3v42.5H162.1V197h180.3zm0 79.8v42.5H162.1v-42.5h180.3z"] }; +var faCreativeCommonsPd = { prefix: 'fab', iconName: 'creative-commons-pd', icon: [496, 512, [], "f4ec", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm0 449.5c-139.2 0-235.8-138-190.2-267.9l78.8 35.1c-2.1 10.5-3.3 21.5-3.3 32.9 0 99 73.9 126.9 120.4 126.9 22.9 0 53.5-6.7 79.4-29.5L297 311.1c-5.5 6.3-17.6 16.7-36.3 16.7-37.8 0-53.7-39.9-53.9-71.9 230.4 102.6 216.5 96.5 217.9 96.8-34.3 62.4-100.6 104.8-176.7 104.8zm194.2-150l-224-100c18.8-34 54.9-30.7 74.7-11l40.4-41.6c-27.1-23.3-58-27.5-78.1-27.5-47.4 0-80.9 20.5-100.7 51.6l-74.9-33.4c36.1-54.9 98.1-91.2 168.5-91.2 111.1 0 201.5 90.4 201.5 201.5 0 18-2.4 35.4-6.8 52-.3-.1-.4-.2-.6-.4z"] }; +var faCreativeCommonsPdAlt = { prefix: 'fab', iconName: 'creative-commons-pd-alt', icon: [496, 512, [], "f4ed", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM135.5 323.3V186h68.2c33.7 0 50.5 15.5 50.5 46.5 0 9-3 46.5-57.1 46.5h-27v44.3h-34.6zm34.1-111.6v41.6h29.2c27.9 0 30-41.6-.9-41.6h-28.3zm93.9 111.6V186h53.2c21.4 0 70 5.2 70 68.6 0 63.5-48.6 68.6-70 68.6h-53.2zm34.1-108.5v79.7h19.9c24 0 34.5-15.3 34.5-39.9 0-42-31.2-39.9-35-39.9l-19.4.1z"] }; +var faCreativeCommonsRemix = { prefix: 'fab', iconName: 'creative-commons-remix', icon: [496, 512, [], "f4ee", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm161.7 207.7l4.9 2.2v70c-7.2 3.6-63.4 27.5-67.3 28.8-6.5-1.8-113.7-46.8-137.3-56.2l-64.2 26.6-63.3-27.5v-63.8l59.3-24.8c-.7-.7-.4 5-.4-70.4l67.3-29.7L361 178.5v61.6l49.1 20.3zm-70.4 81.5v-43.8h-.4v-1.8l-113.8-46.5V295l113.8 46.9v-.4l.4.4zm7.5-57.6l39.9-16.4-36.8-15.5-39 16.4 35.9 15.5zm52.3 38.1v-43L355.2 298v43.4l44.3-19z"] }; +var faCreativeCommonsSa = { prefix: 'fab', iconName: 'creative-commons-sa', icon: [496, 512, [], "f4ef", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM137.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97h62.5c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6-33.1 0-51.7 14.6-55.8 43.8h18.2l-49.2 49.2-49-49.2h19.4z"] }; +var faCreativeCommonsSampling = { prefix: 'fab', iconName: 'creative-commons-sampling', icon: [496, 512, [], "f4f0", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm3.6 53.2c2.8-.3 11.5 1 11.5 11.5l6.6 107.2 4.9-59.3c0-6 4.7-10.6 10.6-10.6 5.9 0 10.6 4.7 10.6 10.6 0 2.5-.5-5.7 5.7 81.5l5.8-64.2c.3-2.9 2.9-9.3 10.2-9.3 3.8 0 9.9 2.3 10.6 8.9l11.5 96.5 5.3-12.8c1.8-4.4 5.2-6.6 10.2-6.6h58v21.3h-50.9l-18.2 44.3c-3.9 9.9-19.5 9.1-20.8-3.1l-4-31.9-7.5 92.6c-.3 3-3 9.3-10.2 9.3-3 0-9.8-2.1-10.6-9.3 0-1.9.6 5.8-6.2-77.9l-5.3 72.2c-1.1 4.8-4.8 9.3-10.6 9.3-2.9 0-9.8-2-10.6-9.3 0-1.9.5 6.7-5.8-87.7l-5.8 94.8c0 6.3-3.6 12.4-10.6 12.4-5.2 0-10.6-4.1-10.6-12l-5.8-87.7c-5.8 92.5-5.3 84-5.3 85.9-1.1 4.8-4.8 9.3-10.6 9.3-3 0-9.8-2.1-10.6-9.3 0-.7-.4-1.1-.4-2.6l-6.2-88.6L182 348c-.7 6.5-6.7 9.3-10.6 9.3-5.8 0-9.6-4.1-10.6-8.9L149.7 272c-2 4-3.5 8.4-11.1 8.4H87.2v-21.3H132l13.7-27.9c4.4-9.9 18.2-7.2 19.9 2.7l3.1 20.4 8.4-97.9c0-6 4.8-10.6 10.6-10.6.5 0 10.6-.2 10.6 12.4l4.9 69.1 6.6-92.6c0-10.1 9.5-10.6 10.2-10.6.6 0 10.6.7 10.6 10.6l5.3 80.6 6.2-97.9c.1-1.1-.6-10.3 9.9-11.5z"] }; +var faCreativeCommonsSamplingPlus = { prefix: 'fab', iconName: 'creative-commons-sampling-plus', icon: [496, 512, [], "f4f1", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm107 205.6c-4.7 0-9 2.8-10.7 7.2l-4 9.5-11-92.8c-1.7-13.9-22-13.4-23.1.4l-4.3 51.4-5.2-68.8c-1.1-14.3-22.1-14.2-23.2 0l-3.5 44.9-5.9-94.3c-.9-14.5-22.3-14.4-23.2 0l-5.1 83.7-4.3-66.3c-.9-14.4-22.2-14.4-23.2 0l-5.3 80.2-4.1-57c-1.1-14.3-22-14.3-23.2-.2l-7.7 89.8-1.8-12.2c-1.7-11.4-17.1-13.6-22-3.3l-13.2 27.7H87.5v23.2h51.3c4.4 0 8.4-2.5 10.4-6.4l10.7 73.1c2 13.5 21.9 13 23.1-.7l3.8-43.6 5.7 78.3c1.1 14.4 22.3 14.2 23.2-.1l4.6-70.4 4.8 73.3c.9 14.4 22.3 14.4 23.2-.1l4.9-80.5 4.5 71.8c.9 14.3 22.1 14.5 23.2.2l4.6-58.6 4.9 64.4c1.1 14.3 22 14.2 23.1.1l6.8-83 2.7 22.3c1.4 11.8 17.7 14.1 22.3 3.1l18-43.4h50.5V258l-58.4.3zm-78 5.2h-21.9v21.9c0 4.1-3.3 7.5-7.5 7.5-4.1 0-7.5-3.3-7.5-7.5v-21.9h-21.9c-4.1 0-7.5-3.3-7.5-7.5 0-4.1 3.4-7.5 7.5-7.5h21.9v-21.9c0-4.1 3.4-7.5 7.5-7.5s7.5 3.3 7.5 7.5v21.9h21.9c4.1 0 7.5 3.3 7.5 7.5 0 4.1-3.4 7.5-7.5 7.5z"] }; +var faCreativeCommonsShare = { prefix: 'fab', iconName: 'creative-commons-share', icon: [496, 512, [], "f4f2", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm101 132.4c7.8 0 13.7 6.1 13.7 13.7v182.5c0 7.7-6.1 13.7-13.7 13.7H214.3c-7.7 0-13.7-6-13.7-13.7v-54h-54c-7.8 0-13.7-6-13.7-13.7V131.1c0-8.2 6.6-12.7 12.4-13.7h136.4c7.7 0 13.7 6 13.7 13.7v54h54zM159.9 300.3h40.7V198.9c0-7.4 5.8-12.6 12-13.7h55.8v-40.3H159.9v155.4zm176.2-88.1H227.6v155.4h108.5V212.2z"] }; +var faCss3 = { prefix: 'fab', iconName: 'css3', icon: [512, 512, [], "f13c", "M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z"] }; +var faCss3Alt = { prefix: 'fab', iconName: 'css3-alt', icon: [384, 512, [], "f38b", "M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z"] }; +var faCuttlefish = { prefix: 'fab', iconName: 'cuttlefish', icon: [440, 512, [], "f38c", "M344 305.5c-17.5 31.6-57.4 54.5-96 54.5-56.6 0-104-47.4-104-104s47.4-104 104-104c38.6 0 78.5 22.9 96 54.5 13.7-50.9 41.7-93.3 87-117.8C385.7 39.1 320.5 8 248 8 111 8 0 119 0 256s111 248 248 248c72.5 0 137.7-31.1 183-80.7-45.3-24.5-73.3-66.9-87-117.8z"] }; +var faDAndD = { prefix: 'fab', iconName: 'd-and-d', icon: [576, 512, [], "f38d", "M82.5 98.9c-.6-17.2 2-33.8 12.7-48.2.3 7.4 1.2 14.5 4.2 21.6 5.9-27.5 19.7-49.3 42.3-65.5-1.9 5.9-3.5 11.8-3 17.7 8.7-7.4 18.8-17.8 44.4-22.7 14.7-2.8 29.7-2 42.1 1 38.5 9.3 61 34.3 69.7 72.3 5.3 23.1.7 45-8.3 66.4-5.2 12.4-12 24.4-20.7 35.1-2-1.9-3.9-3.8-5.8-5.6-42.8-40.8-26.8-25.2-37.4-37.4-1.1-1.2-1-2.2-.1-3.6 8.3-13.5 11.8-28.2 10-44-1.1-9.8-4.3-18.9-11.3-26.2-14.5-15.3-39.2-15-53.5.6-11.4 12.5-14.1 27.4-10.9 43.6.2 1.3.4 2.7 0 3.9-3.4 13.7-4.6 27.6-2.5 41.6.1.5.1 1.1.1 1.6 0 .3-.1.5-.2 1.1-21.8-11-36-28.3-43.2-52.2-8.3 17.8-11.1 35.5-6.6 54.1-15.6-15.2-21.3-34.3-22-55.2zm469.6 123.2c-11.6-11.6-25-20.4-40.1-26.6-12.8-5.2-26-7.9-39.9-7.1-10 .6-19.6 3.1-29 6.4-2.5.9-5.1 1.6-7.7 2.2-4.9 1.2-7.3-3.1-4.7-6.8 3.2-4.6 3.4-4.2 15-12 .6-.4 1.2-.8 2.2-1.5h-2.5c-.6 0-1.2.2-1.9.3-19.3 3.3-30.7 15.5-48.9 29.6-10.4 8.1-13.8 3.8-12-.5 1.4-3.5 3.3-6.7 5.1-10 1-1.8 2.3-3.4 3.5-5.1-.2-.2-.5-.3-.7-.5-27 18.3-46.7 42.4-57.7 73.3.3.3.7.6 1 .9.3-.6.5-1.2.9-1.7 10.4-12.1 22.8-21.8 36.6-29.8 18.2-10.6 37.5-18.3 58.7-20.2 4.3-.4 8.7-.1 13.1-.1-1.8.7-3.5.9-5.3 1.1-18.5 2.4-35.5 9-51.5 18.5-30.2 17.9-54.5 42.2-75.1 70.4-.3.4-.4.9-.7 1.3 14.5 5.3 24 17.3 36.1 25.6.2-.1.3-.2.4-.4l1.2-2.7c12.2-26.9 27-52.3 46.7-74.5 16.7-18.8 38-25.3 62.5-20 5.9 1.3 11.4 4.4 17.2 6.8 2.3-1.4 5.1-3.2 8-4.7 8.4-4.3 17.4-7 26.7-9 14.7-3.1 29.5-4.9 44.5-1.3v-.5c-.5-.4-1.2-.8-1.7-1.4zM316.7 397.6c-39.4-33-22.8-19.5-42.7-35.6-.8.9 0-.2-1.9 3-11.2 19.1-25.5 35.3-44 47.6-10.3 6.8-21.5 11.8-34.1 11.8-21.6 0-38.2-9.5-49.4-27.8-12-19.5-13.3-40.7-8.2-62.6 7.8-33.8 30.1-55.2 38.6-64.3-18.7-6.2-33 1.7-46.4 13.9.8-13.9 4.3-26.2 11.8-37.3-24.3 10.6-45.9 25-64.8 43.9-.3-5.8 5.4-43.7 5.6-44.7.3-2.7-.6-5.3-3-7.4-24.2 24.7-44.5 51.8-56.1 84.6 7.4-5.9 14.9-11.4 23.6-16.2-8.3 22.3-19.6 52.8-7.8 101.1 4.6 19 11.9 36.8 24.1 52.3 2.9 3.7 6.3 6.9 9.5 10.3.2-.2.4-.3.6-.5-1.4-7-2.2-14.1-1.5-21.9 2.2 3.2 3.9 6 5.9 8.6 12.6 16 28.7 27.4 47.2 35.6 25 11.3 51.1 13.3 77.9 8.6 54.9-9.7 90.7-48.6 116-98.8 1-1.8.6-2.9-.9-4.2zm172-46.4c-9.5-3.1-22.2-4.2-28.7-2.9 9.9 4 14.1 6.6 18.8 12 12.6 14.4 10.4 34.7-5.4 45.6-11.7 8.1-24.9 10.5-38.9 9.1-1.2-.1-2.3-.4-3-.6 2.8-3.7 6-7 8.1-10.8 9.4-16.8 5.4-42.1-8.7-56.1-2.1-2.1-4.6-3.9-7-5.9-.3 1.3-.1 2.1.1 2.8 4.2 16.6-8.1 32.4-24.8 31.8-7.6-.3-13.9-3.8-19.6-8.5-19.5-16.1-39.1-32.1-58.5-48.3-5.9-4.9-12.5-8.1-20.1-8.7-4.6-.4-9.3-.6-13.9-.9-5.9-.4-8.8-2.8-10.4-8.4-.9-3.4-1.5-6.8-2.2-10.2-1.5-8.1-6.2-13-14.3-14.2-4.4-.7-8.9-1-13.3-1.5-13-1.4-19.8-7.4-22.6-20.3-5 11-1.6 22.4 7.3 29.9 4.5 3.8 9.3 7.3 13.8 11.2 4.6 3.8 7.4 8.7 7.9 14.8.4 4.7.8 9.5 1.8 14.1 2.2 10.6 8.9 18.4 17 25.1 16.5 13.7 33 27.3 49.5 41.1 17.9 15 13.9 32.8 13 56-.9 22.9 12.2 42.9 33.5 51.2 1 .4 2 .6 3.6 1.1-15.7-18.2-10.1-44.1.7-52.3.3 2.2.4 4.3.9 6.4 9.4 44.1 45.4 64.2 85 56.9 16-2.9 30.6-8.9 42.9-19.8 2-1.8 3.7-4.1 5.9-6.5-19.3 4.6-35.8.1-50.9-10.6.7-.3 1.3-.3 1.9-.3 21.3 1.8 40.6-3.4 57-17.4 19.5-16.6 26.6-42.9 17.4-66-8.3-20.1-23.6-32.3-43.8-38.9zM99.4 179.3c-5.3-9.2-13.2-15.6-22.1-21.3 13.7-.5 26.6.2 39.6 3.7-7-12.2-8.5-24.7-5-38.7 5.3 11.9 13.7 20.1 23.6 26.8 19.7 13.2 35.7 19.6 46.7 30.2 3.4 3.3 6.3 7.1 9.6 10.9-.8-2.1-1.4-4.1-2.2-6-5-10.6-13-18.6-22.6-25-1.8-1.2-2.8-2.5-3.4-4.5-3.3-12.5-3-25.1-.7-37.6 1-5.5 2.8-10.9 4.5-16.3.8-2.4 2.3-4.6 4-6.6.6 6.9 0 25.5 19.6 46 10.8 11.3 22.4 21.9 33.9 32.7 9 8.5 18.3 16.7 25.5 26.8 1.1 1.6 2.2 3.3 3.8 4.7-5-13-14.2-24.1-24.2-33.8-9.6-9.3-19.4-18.4-29.2-27.4-3.3-3-4.6-6.7-5.1-10.9-1.2-10.4 0-20.6 4.3-30.2.5-1 1.1-2 1.9-3.3.5 4.2.6 7.9 1.4 11.6 4.8 23.1 20.4 36.3 49.3 63.5 10 9.4 19.3 19.2 25.6 31.6 4.8 9.3 7.3 19 5.7 29.6-.1.6.5 1.7 1.1 2 6.2 2.6 10 6.9 9.7 14.3 7.7-2.6 12.5-8 16.4-14.5 4.2 20.2-9.1 50.3-27.2 58.7.4-4.5 5-23.4-16.5-27.7-6.8-1.3-12.8-1.3-22.9-2.1 4.7-9 10.4-20.6.5-22.4-24.9-4.6-52.8 1.9-57.8 4.6 8.2.4 16.3 1 23.5 3.3-2 6.5-4 12.7-5.8 18.9-1.9 6.5 2.1 14.6 9.3 9.6 1.2-.9 2.3-1.9 3.3-2.7-3.1 17.9-2.9 15.9-2.8 18.3.3 10.2 9.5 7.8 15.7 7.3-2.5 11.8-29.5 27.3-45.4 25.8 7-4.7 12.7-10.3 15.9-17.9-6.5.8-12.9 1.6-19.2 2.4l-.3-.9c4.7-3.4 8-7.8 10.2-13.1 8.7-21.1-3.6-38-25-39.9-9.1-.8-17.8.8-25.9 5.5 6.2-15.6 17.2-26.6 32.6-34.5-15.2-4.3-8.9-2.7-24.6-6.3 14.6-9.3 30.2-13.2 46.5-14.6-5.2-3.2-48.1-3.6-70.2 20.9 7.9 1.4 15.5 2.8 23.2 4.2-23.8 7-44 19.7-62.4 35.6 1.1-4.8 2.7-9.5 3.3-14.3.6-4.5.8-9.2.1-13.6-1.5-9.4-8.9-15.1-19.7-16.3-7.9-.9-15.6.1-23.3 1.3-.9.1-1.7.3-2.9 0 15.8-14.8 36-21.7 53.1-33.5 6-4.5 6.8-8.2 3-14.9zm128.4 26.8c3.3 16 12.6 25.5 23.8 24.3-4.6-11.3-12.1-19.5-23.8-24.3z"] }; +var faDashcube = { prefix: 'fab', iconName: 'dashcube', icon: [448, 512, [], "f210", "M326.6 104H110.4c-51.1 0-91.2 43.3-91.2 93.5V427c0 50.5 40.1 85 91.2 85h227.2c51.1 0 91.2-34.5 91.2-85V0L326.6 104zM153.9 416.5c-17.7 0-32.4-15.1-32.4-32.8V240.8c0-17.7 14.7-32.5 32.4-32.5h140.7c17.7 0 32 14.8 32 32.5v123.5l51.1 52.3H153.9z"] }; +var faDelicious = { prefix: 'fab', iconName: 'delicious', icon: [448, 512, [], "f1a5", "M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1.5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3 1 1.1 2.1 2.2 3.3 3.3 5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12zM416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192v176z"] }; +var faDeploydog = { prefix: 'fab', iconName: 'deploydog', icon: [512, 512, [], "f38e", "M382.2 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.6 0-33.2 16.4-33.2 32.6zM188.5 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.7 0-33.2 16.4-33.2 32.6zM448 96c17.5 0 32 14.4 32 32v256c0 17.5-14.4 32-32 32H64c-17.5 0-32-14.4-32-32V128c0-17.5 14.4-32 32-32h384m0-32H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h384c35.2 0 64-28.8 64-64V128c0-35.2-28.8-64-64-64z"] }; +var faDeskpro = { prefix: 'fab', iconName: 'deskpro', icon: [480, 512, [], "f38f", "M205.9 512l31.1-38.4c12.3-.2 25.6-1.4 36.5-6.6 38.9-18.6 38.4-61.9 38.3-63.8-.1-5-.8-4.4-28.9-37.4H362c-.2 50.1-7.3 68.5-10.2 75.7-9.4 23.7-43.9 62.8-95.2 69.4-8.7 1.1-32.8 1.2-50.7 1.1zm200.4-167.7c38.6 0 58.5-13.6 73.7-30.9l-175.5-.3-17.4 31.3 119.2-.1zm-43.6-223.9v168.3h-73.5l-32.7 55.5H250c-52.3 0-58.1-56.5-58.3-58.9-1.2-13.2-21.3-11.6-20.1 1.8 1.4 15.8 8.8 40 26.4 57.1h-91c-25.5 0-110.8-26.8-107-114V16.9C0 .9 9.7.3 15 .1h82c.2 0 .3.1.5.1 4.3-.4 50.1-2.1 50.1 43.7 0 13.3 20.2 13.4 20.2 0 0-18.2-5.5-32.8-15.8-43.7h84.2c108.7-.4 126.5 79.4 126.5 120.2zm-132.5 56l64 29.3c13.3-45.5-42.2-71.7-64-29.3z"] }; +var faDeviantart = { prefix: 'fab', iconName: 'deviantart', icon: [320, 512, [], "f1bd", "M320 93.2l-98.2 179.1 7.4 9.5H320v127.7H159.1l-13.5 9.2-43.7 84c-.3 0-8.6 8.6-9.2 9.2H0v-93.2l93.2-179.4-7.4-9.2H0V102.5h156l13.5-9.2 43.7-84c.3 0 8.6-8.6 9.2-9.2H320v93.1z"] }; +var faDigg = { prefix: 'fab', iconName: 'digg', icon: [512, 512, [], "f1a6", "M81.7 172.3H0v174.4h132.7V96h-51v76.3zm0 133.4H50.9v-92.3h30.8v92.3zm297.2-133.4v174.4h81.8v28.5h-81.8V416H512V172.3H378.9zm81.8 133.4h-30.8v-92.3h30.8v92.3zm-235.6 41h82.1v28.5h-82.1V416h133.3V172.3H225.1v174.4zm51.2-133.3h30.8v92.3h-30.8v-92.3zM153.3 96h51.3v51h-51.3V96zm0 76.3h51.3v174.4h-51.3V172.3z"] }; +var faDigitalOcean = { prefix: 'fab', iconName: 'digital-ocean', icon: [512, 512, [], "f391", "M256 504v-96.1c101.8 0 180.8-100.9 141.7-208-14.3-39.6-46.1-71.4-85.8-85.7-107.1-38.8-208.1 39.9-208.1 141.7H8C8 93.7 164.9-32.8 335 20.3c74.2 23.3 133.6 82.4 156.6 156.6C544.8 347.2 418.6 504 256 504zm.3-191.4h-95.6v95.6h95.6v-95.6zm-95.6 95.6H87v73.6h73.7v-73.6zM87 346.6H25.4v61.6H87v-61.6z"] }; +var faDiscord = { prefix: 'fab', iconName: 'discord', icon: [448, 512, [], "f392", "M297.216 243.2c0 15.616-11.52 28.416-26.112 28.416-14.336 0-26.112-12.8-26.112-28.416s11.52-28.416 26.112-28.416c14.592 0 26.112 12.8 26.112 28.416zm-119.552-28.416c-14.592 0-26.112 12.8-26.112 28.416s11.776 28.416 26.112 28.416c14.592 0 26.112-12.8 26.112-28.416.256-15.616-11.52-28.416-26.112-28.416zM448 52.736V512c-64.494-56.994-43.868-38.128-118.784-107.776l13.568 47.36H52.48C23.552 451.584 0 428.032 0 398.848V52.736C0 23.552 23.552 0 52.48 0h343.04C424.448 0 448 23.552 448 52.736zm-72.96 242.688c0-82.432-36.864-149.248-36.864-149.248-36.864-27.648-71.936-26.88-71.936-26.88l-3.584 4.096c43.52 13.312 63.744 32.512 63.744 32.512-60.811-33.329-132.244-33.335-191.232-7.424-9.472 4.352-15.104 7.424-15.104 7.424s21.248-20.224 67.328-33.536l-2.56-3.072s-35.072-.768-71.936 26.88c0 0-36.864 66.816-36.864 149.248 0 0 21.504 37.12 78.08 38.912 0 0 9.472-11.52 17.152-21.248-32.512-9.728-44.8-30.208-44.8-30.208 3.766 2.636 9.976 6.053 10.496 6.4 43.21 24.198 104.588 32.126 159.744 8.96 8.96-3.328 18.944-8.192 29.44-15.104 0 0-12.8 20.992-46.336 30.464 7.68 9.728 16.896 20.736 16.896 20.736 56.576-1.792 78.336-38.912 78.336-38.912z"] }; +var faDiscourse = { prefix: 'fab', iconName: 'discourse', icon: [448, 512, [], "f393", "M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z"] }; +var faDochub = { prefix: 'fab', iconName: 'dochub', icon: [416, 512, [], "f394", "M397.9 160H256V19.6L397.9 160zM304 192v130c0 66.8-36.5 100.1-113.3 100.1H96V84.8h94.7c12 0 23.1.8 33.1 2.5v-84C212.9 1.1 201.4 0 189.2 0H0v512h189.2C329.7 512 400 447.4 400 318.1V192h-96z"] }; +var faDocker = { prefix: 'fab', iconName: 'docker', icon: [640, 512, [], "f395", "M349.9 236.3h-66.1v-59.4h66.1v59.4zm0-204.3h-66.1v60.7h66.1V32zm78.2 144.8H362v59.4h66.1v-59.4zm-156.3-72.1h-66.1v60.1h66.1v-60.1zm78.1 0h-66.1v60.1h66.1v-60.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4.4 67.6.1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1l-13.3-8.9zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm-78.1-72.1h-66.1v60.1h66.1v-60.1z"] }; +var faDraft2digital = { prefix: 'fab', iconName: 'draft2digital', icon: [480, 512, [], "f396", "M369.9 425.4V371l47.1 27.2-47.1 27.2zM82.4 380.6c25.5-27.3 97.7-104.7 150.9-170 35.1-43.1 40.3-82.4 28.4-112.7-7.4-18.8-17.5-30.2-24.3-35.7 45.3 2.1 68 23.4 82.2 38.3 0 0 42.4 48.2 5.8 113.3-37 65.9-110.9 147.5-128.5 166.7H82.4zm51.8-219.2c0 12.4-10 22.4-22.4 22.4-12.4 0-22.4-10-22.4-22.4 0-12.4 10-22.4 22.4-22.4 12.4 0 22.4 10.1 22.4 22.4M336 315.9v64.7h-91.3c30.8-35 81.8-95.9 111.8-149.3 35.2-62.6 16.1-123.4-12.8-153.3-4.4-4.6-62.2-62.9-166-41.2-59.1 12.4-89.4 43.4-104.3 67.3-13.1 20.9-17 39.8-18.2 47.7-5.5 33 19.4 67.1 56.7 67.1 31.7 0 57.3-25.7 57.3-57.4 0-27.1-19.7-52.1-48-56.8 1.8-7.3 17.7-21.1 26.3-24.7 41.1-17.3 78 5.2 83.3 33.5 8.3 44.3-37.1 90.4-69.7 127.6C84.5 328.1 18.3 396.8 0 415.9l336-.1V480l144-81.9-144-82.2z"] }; +var faDribbble = { prefix: 'fab', iconName: 'dribbble', icon: [512, 512, [], "f17d", "M256 8C119.252 8 8 119.252 8 256s111.252 248 248 248 248-111.252 248-248S392.748 8 256 8zm163.97 114.366c29.503 36.046 47.369 81.957 47.835 131.955-6.984-1.477-77.018-15.682-147.502-6.818-5.752-14.041-11.181-26.393-18.617-41.614 78.321-31.977 113.818-77.482 118.284-83.523zM396.421 97.87c-3.81 5.427-35.697 48.286-111.021 76.519-34.712-63.776-73.185-116.168-79.04-124.008 67.176-16.193 137.966 1.27 190.061 47.489zm-230.48-33.25c5.585 7.659 43.438 60.116 78.537 122.509-99.087 26.313-186.36 25.934-195.834 25.809C62.38 147.205 106.678 92.573 165.941 64.62zM44.17 256.323c0-2.166.043-4.322.108-6.473 9.268.19 111.92 1.513 217.706-30.146 6.064 11.868 11.857 23.915 17.174 35.949-76.599 21.575-146.194 83.527-180.531 142.306C64.794 360.405 44.17 310.73 44.17 256.323zm81.807 167.113c22.127-45.233 82.178-103.622 167.579-132.756 29.74 77.283 42.039 142.053 45.189 160.638-68.112 29.013-150.015 21.053-212.768-27.882zm248.38 8.489c-2.171-12.886-13.446-74.897-41.152-151.033 66.38-10.626 124.7 6.768 131.947 9.055-9.442 58.941-43.273 109.844-90.795 141.978z"] }; +var faDribbbleSquare = { prefix: 'fab', iconName: 'dribbble-square', icon: [448, 512, [], "f397", "M90.2 228.2c8.9-42.4 37.4-77.7 75.7-95.7 3.6 4.9 28 38.8 50.7 79-64 17-120.3 16.8-126.4 16.7zM314.6 154c-33.6-29.8-79.3-41.1-122.6-30.6 3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4zM140.1 364c40.5 31.6 93.3 36.7 137.3 18-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6zm98.8-108.2c-3.4-7.8-7.2-15.5-11.1-23.2C159.6 253 93.4 252.2 87.4 252c0 1.4-.1 2.8-.1 4.2 0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8zm34.9 16.3c17.9 49.1 25.1 89.1 26.5 97.4 30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8zm-20.3-48.4c4.8 9.8 8.3 17.8 12 26.8 45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 176c0-88.2-71.8-160-160-160S64 167.8 64 256s71.8 160 160 160 160-71.8 160-160z"] }; +var faDropbox = { prefix: 'fab', iconName: 'dropbox', icon: [528, 512, [], "f16b", "M264.4 116.3l-132 84.3 132 84.3-132 84.3L0 284.1l132.3-84.3L0 116.3 132.3 32l132.1 84.3zM131.6 395.7l132-84.3 132 84.3-132 84.3-132-84.3zm132.8-111.6l132-84.3-132-83.6L395.7 32 528 116.3l-132.3 84.3L528 284.8l-132.3 84.3-131.3-85z"] }; +var faDrupal = { prefix: 'fab', iconName: 'drupal', icon: [448, 512, [], "f1a9", "M319.5 114.7c-22.2-14-43.5-19.5-64.7-33.5-13-8.8-31.3-30-46.5-48.3-2.7 29.3-11.5 41.2-22 49.5-21.3 17-34.8 22.2-53.5 32.3C117 123 32 181.5 32 290.5 32 399.7 123.8 480 225.8 480 327.5 480 416 406 416 294c0-112.3-83-171-96.5-179.3zm2.5 325.6c-20.1 20.1-90.1 28.7-116.7 4.2-4.8-4.8.3-12 6.5-12 0 0 17 13.3 51.5 13.3 27 0 46-7.7 54.5-14 6.1-4.6 8.4 4.3 4.2 8.5zm-54.5-52.6c8.7-3.6 29-3.8 36.8 1.3 4.1 2.8 16.1 18.8 6.2 23.7-8.4 4.2-1.2-15.7-26.5-15.7-14.7 0-19.5 5.2-26.7 11-7 6-9.8 8-12.2 4.7-6-8.2 15.9-22.3 22.4-25zM360 405c-15.2-1-45.5-48.8-65-49.5-30.9-.9-104.1 80.7-161.3 42-38.8-26.6-14.6-104.8 51.8-105.2 49.5-.5 83.8 49 108.5 48.5 21.3-.3 61.8-41.8 81.8-41.8 48.7 0 23.3 109.3-15.8 106z"] }; +var faDyalog = { prefix: 'fab', iconName: 'dyalog', icon: [416, 512, [], "f399", "M0 32v119.2h64V96h107.2C284.6 96 352 176.2 352 255.9 352 332 293.4 416 171.2 416H0v64h171.2C331.9 480 416 367.3 416 255.9c0-58.7-22.1-113.4-62.3-154.3C308.9 56 245.7 32 171.2 32H0z"] }; +var faEarlybirds = { prefix: 'fab', iconName: 'earlybirds', icon: [480, 512, [], "f39a", "M313.2 47.5c1.2-13 21.3-14 36.6-8.7.9.3 26.2 9.7 19 15.2-27.9-7.4-56.4 18.2-55.6-6.5zm-201 6.9c30.7-8.1 62 20 61.1-7.1-1.3-14.2-23.4-15.3-40.2-9.6-1 .3-28.7 10.5-20.9 16.7zM319.4 160c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-159.7 0c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm318.5 163.2c-9.9 24-40.7 11-63.9-1.2-13.5 69.1-58.1 111.4-126.3 124.2.3.9-2-.1 24 1 33.6 1.4 63.8-3.1 97.4-8-19.8-13.8-11.4-37.1-9.8-38.1 1.4-.9 14.7 1.7 21.6 11.5 8.6-12.5 28.4-14.8 30.2-13.6 1.6 1.1 6.6 20.9-6.9 34.6 4.7-.9 8.2-1.6 9.8-2.1 2.6-.8 17.7 11.3 3.1 13.3-14.3 2.3-22.6 5.1-47.1 10.8-45.9 10.7-85.9 11.8-117.7 12.8l1 11.6c3.8 18.1-23.4 24.3-27.6 6.2.8 17.9-27.1 21.8-28.4-1l-.5 5.3c-.7 18.4-28.4 17.9-28.3-.6-7.5 13.5-28.1 6.8-26.4-8.5l1.2-12.4c-36.7.9-59.7 3.1-61.8 3.1-20.9 0-20.9-31.6 0-31.6 2.4 0 27.7 1.3 63.2 2.8-61.1-15.5-103.7-55-114.9-118.2-25 12.8-57.5 26.8-68.2.8-10.5-25.4 21.5-42.6 66.8-73.4.7-6.6 1.6-13.3 2.7-19.8-14.4-19.6-11.6-36.3-16.1-60.4-16.8 2.4-23.2-9.1-23.6-23.1.3-7.3 2.1-14.9 2.4-15.4 1.1-1.8 10.1-2 12.7-2.6 6-31.7 50.6-33.2 90.9-34.5 19.7-21.8 45.2-41.5 80.9-48.3C203.3 29 215.2 8.5 216.2 8c1.7-.8 21.2 4.3 26.3 23.2 5.2-8.8 18.3-11.4 19.6-10.7 1.1.6 6.4 15-4.9 25.9 40.3 3.5 72.2 24.7 96 50.7 36.1 1.5 71.8 5.9 77.1 34 2.7.6 11.6.8 12.7 2.6.3.5 2.1 8.1 2.4 15.4-.5 13.9-6.8 25.4-23.6 23.1-3.2 17.3-2.7 32.9-8.7 47.7 2.4 11.7 4 23.8 4.8 36.4 37 25.4 70.3 42.5 60.3 66.9zM207.4 159.9c.9-44-37.9-42.2-78.6-40.3-21.7 1-38.9 1.9-45.5 13.9-11.4 20.9 5.9 92.9 23.2 101.2 9.8 4.7 73.4 7.9 86.3-7.1 8.2-9.4 15-49.4 14.6-67.7zm52 58.3c-4.3-12.4-6-30.1-15.3-32.7-2-.5-9-.5-11 0-10 2.8-10.8 22.1-17 37.2 15.4 0 19.3 9.7 23.7 9.7 4.3 0 6.3-11.3 19.6-14.2zm135.7-84.7c-6.6-12.1-24.8-12.9-46.5-13.9-40.2-1.9-78.2-3.8-77.3 40.3-.5 18.3 5 58.3 13.2 67.8 13 14.9 76.6 11.8 86.3 7.1 15.8-7.6 36.5-78.9 24.3-101.3z"] }; +var faEbay = { prefix: 'fab', iconName: 'ebay', icon: [640, 512, [], "f4f4", "M405.2 263.8c-29.1.9-47.2 6.2-47.2 25.3 0 12.4 9.9 25.8 35 25.8 33.7 0 51.6-18.4 51.6-48.4v-3.3c-11.8 0-26.3.1-39.4.6m71.5 39.7c0 9.3.3 18.6 1 26.8h-29.8c-.8-6.9-1.1-13.6-1.1-20.2-16.1 19.8-35.3 25.5-61.9 25.5-39.5 0-60.6-20.9-60.6-45 0-35 28.8-47.3 78.6-48.4 13.7-.3 29-.4 41.7-.4v-3.4c0-23.4-15-33-41-33-19.3 0-33.6 8-35 21.8h-33.7c3.6-34.4 39.7-43.1 71.5-43.1 38.1 0 70.3 13.5 70.3 53.8v65.6zm-349-56.8c-2.3-54.7-87.5-56.6-94.4 0h94.4zm-95 21.4c3.5 58.3 79.2 57.4 91.2 21.6H157c-6.4 34.4-43 46.1-74.4 46.1-57.2 0-82.5-31.5-82.5-74 0-46.8 26.2-77.6 83-77.6 45.3 0 78.4 23.7 78.4 75.4v8.5H32.7zm211 45.7c29.8 0 50.2-21.5 50.2-53.8 0-32.4-20.4-53.8-50.2-53.8-29.6 0-50.2 21.4-50.2 53.8 0 32.3 20.6 53.8 50.2 53.8m-82.2-186h32.1v80.6c15.7-18.7 37.4-24.2 58.7-24.2 35.7 0 75.4 24.1 75.4 76.2 0 43.6-31.5 75.4-76 75.4-23.3 0-45.1-8.3-58.7-24.9 0 6.6-.4 13.2-1.1 19.5h-31.5c.5-10.2 1.1-22.8 1.1-33.1V127.8zM640 189.5l-99.2 194.8h-35.9l28.5-54.1-74.6-140.7h37.5l54.9 109.9L606 189.5h34z"] }; +var faEdge = { prefix: 'fab', iconName: 'edge', icon: [512, 512, [], "f282", "M25.714 228.163c.111-.162.23-.323.342-.485-.021.162-.045.323-.065.485h-.277zm460.572 15.508c0-44.032-7.754-84.465-28.801-122.405C416.498 47.879 343.912 8.001 258.893 8.001 118.962 7.724 40.617 113.214 26.056 227.679c42.429-61.312 117.073-121.376 220.375-124.966 0 0 109.666 0 99.419 104.957H169.997c6.369-37.386 18.554-58.986 34.339-78.926-75.048 34.893-121.85 96.096-120.742 188.315.83 71.448 50.124 144.836 120.743 171.976 83.357 31.847 192.776 7.2 240.132-21.324V363.307c-80.864 56.494-270.871 60.925-272.255-67.572h314.073v-52.064z"] }; +var faElementor = { prefix: 'fab', iconName: 'elementor', icon: [448, 512, [], "f430", "M425.6 32H22.4C10 32 0 42 0 54.4v403.2C0 470 10 480 22.4 480h403.2c12.4 0 22.4-10 22.4-22.4V54.4C448 42 438 32 425.6 32M164.3 355.5h-39.8v-199h39.8v199zm159.3 0H204.1v-39.8h119.5v39.8zm0-79.6H204.1v-39.8h119.5v39.8zm0-79.7H204.1v-39.8h119.5v39.8z"] }; +var faEmber = { prefix: 'fab', iconName: 'ember', icon: [640, 512, [], "f423", "M639.9 254.6c-1.1-10.7-10.7-6.8-10.7-6.8s-15.6 12.1-29.3 10.7c-13.7-1.3-9.4-32-9.4-32s3-28.1-5.1-30.4c-8.1-2.4-18 7.3-18 7.3s-12.4 13.7-18.3 31.2l-1.6.5s1.9-30.6-.3-37.6c-1.6-3.5-16.4-3.2-18.8 3s-14.2 49.2-15 67.2c0 0-23.1 19.6-43.3 22.8s-25-9.4-25-9.4 54.8-15.3 52.9-59.1c-1.9-43.8-44.2-27.6-49-24-4.6 3.5-29.4 18.4-36.6 59.7-.2 1.4-.7 7.5-.7 7.5s-21.2 14.2-33 18c0 0 33-55.6-7.3-80.9-18.3-11-32.8 12.1-32.8 12.1s54.5-60.7 42.5-112c-5.8-24.4-18-27.1-29.2-23.1-17 6.7-23.5 16.7-23.5 16.7s-22 32-27.1 79.5-12.6 105.1-12.6 105.1-10.5 10.2-20.2 10.7-5.4-28.7-5.4-28.7 7.5-44.6 7-52.1-1.1-11.6-9.9-14.2c-8.9-2.7-18.5 8.6-18.5 8.6s-25.5 38.7-27.7 44.6l-1.3 2.4-1.3-1.6s18-52.7.8-53.5c-17.2-.8-28.5 18.8-28.5 18.8s-19.6 32.8-20.4 36.5l-1.3-1.6s8.1-38.2 6.4-47.6c-1.6-9.4-10.5-7.5-10.5-7.5s-11.3-1.3-14.2 5.9-13.7 55.3-15 70.7c0 0-28.2 20.2-46.8 20.4-18.5.3-16.7-11.8-16.7-11.8s68-23.3 49.4-69.2c-8.3-11.8-18-15.5-31.7-15.3-13.7.3-30.3 8.6-41.3 33.3-5.3 11.8-6.8 23-7.8 31.5 0 0-12.3 2.4-18.8-2.9s-10 0-10 0-11.2 14-.1 18.3 28.1 6.1 28.1 6.1c1.6 7.5 6.2 19.5 19.6 29.7 20.2 15.3 58.8-1.3 58.8-1.3l15.9-8.8s.5 14.6 12.1 16.7c11.6 2.1 16.4 1 36.5-47.9 11.8-25 12.6-23.6 12.6-23.6l1.3-.3s-9.1 46.8-5.6 59.7C187.7 319.4 203 318 203 318s8.3 2.4 15-21.2c6.7-23.6 19.6-49.9 19.6-49.9h1.6s-5.6 48.1 3 63.7c8.6 15.6 30.9 5.3 30.9 5.3s15.6-7.8 18-10.2c0 0 18.5 15.8 44.6 12.9 58.3-11.5 79.1-25.9 79.1-25.9s10 24.4 41.1 26.7c35.5 2.7 54.8-18.6 54.8-18.6s-.3 13.5 12.1 18.6c12.4 5.1 20.7-22.8 20.7-22.8l20.7-57.2h1.9s1.1 37.3 21.5 43.2 47-13.7 47-13.7 6.4-3.5 5.3-14.3zm-578 5.3c.8-32 21.8-45.9 29-39 7.3 7 4.6 22-9.1 31.4-13.7 9.5-19.9 7.6-19.9 7.6zm272.8-123.8s19.1-49.7 23.6-25.5-40 96.2-40 96.2c.5-16.2 16.4-70.7 16.4-70.7zm22.8 138.4c-12.6 33-43.3 19.6-43.3 19.6s-3.5-11.8 6.4-44.9 33.3-20.2 33.3-20.2 16.2 12.4 3.6 45.5zm84.6-14.6s-3-10.5 8.1-30.6c11-20.2 19.6-9.1 19.6-9.1s9.4 10.2-1.3 25.5-26.4 14.2-26.4 14.2z"] }; +var faEmpire = { prefix: 'fab', iconName: 'empire', icon: [496, 512, [], "f1d1", "M287.6 54.2c-10.8-2.2-22.1-3.3-33.5-3.6V32.4c78.1 2.2 146.1 44 184.6 106.6l-15.8 9.1c-6.1-9.7-12.7-18.8-20.2-27.1l-18 15.5c-26-29.6-61.4-50.7-101.9-58.4l4.8-23.9zM53.4 322.4l23-7.7c-6.4-18.3-10-38.2-10-58.7s3.3-40.4 9.7-58.7l-22.7-7.7c3.6-10.8 8.3-21.3 13.6-31l-15.8-9.1C34 181 24.1 217.5 24.1 256s10 75 27.1 106.6l15.8-9.1c-5.3-10-9.7-20.3-13.6-31.1zM213.1 434c-40.4-8-75.8-29.1-101.9-58.7l-18 15.8c-7.5-8.6-14.4-17.7-20.2-27.4l-16 9.4c38.5 62.3 106.8 104.3 184.9 106.6v-18.3c-11.3-.3-22.7-1.7-33.5-3.6l4.7-23.8zM93.3 120.9l18 15.5c26-29.6 61.4-50.7 101.9-58.4l-4.7-23.8c10.8-2.2 22.1-3.3 33.5-3.6V32.4C163.9 34.6 95.9 76.4 57.4 139l15.8 9.1c6-9.7 12.6-18.9 20.1-27.2zm309.4 270.2l-18-15.8c-26 29.6-61.4 50.7-101.9 58.7l4.7 23.8c-10.8 1.9-22.1 3.3-33.5 3.6v18.3c78.1-2.2 146.4-44.3 184.9-106.6l-16.1-9.4c-5.7 9.7-12.6 18.8-20.1 27.4zM496 256c0 137-111 248-248 248S0 393 0 256 111 8 248 8s248 111 248 248zm-12.2 0c0-130.1-105.7-235.8-235.8-235.8S12.2 125.9 12.2 256 117.9 491.8 248 491.8 483.8 386.1 483.8 256zm-39-106.6l-15.8 9.1c5.3 9.7 10 20.2 13.6 31l-22.7 7.7c6.4 18.3 9.7 38.2 9.7 58.7s-3.6 40.4-10 58.7l23 7.7c-3.9 10.8-8.3 21-13.6 31l15.8 9.1C462 331 471.9 294.5 471.9 256s-9.9-75-27.1-106.6zm-183 177.7c16.3-3.3 30.4-11.6 40.7-23.5l51.2 44.8c11.9-13.6 21.3-29.3 27.1-46.8l-64.2-22.1c2.5-7.5 3.9-15.2 3.9-23.5s-1.4-16.1-3.9-23.5l64.5-22.1c-6.1-17.4-15.5-33.2-27.4-46.8l-51.2 44.8c-10.2-11.9-24.4-20.5-40.7-23.8l13.3-66.4c-8.6-1.9-17.7-2.8-27.1-2.8-9.4 0-18.5.8-27.1 2.8l13.3 66.4c-16.3 3.3-30.4 11.9-40.7 23.8l-51.2-44.8c-11.9 13.6-21.3 29.3-27.4 46.8l64.5 22.1c-2.5 7.5-3.9 15.2-3.9 23.5s1.4 16.1 3.9 23.5l-64.2 22.1c5.8 17.4 15.2 33.2 27.1 46.8l51.2-44.8c10.2 11.9 24.4 20.2 40.7 23.5l-13.3 66.7c8.6 1.7 17.7 2.8 27.1 2.8 9.4 0 18.5-1.1 27.1-2.8l-13.3-66.7z"] }; +var faEnvira = { prefix: 'fab', iconName: 'envira', icon: [448, 512, [], "f299", "M0 32c477.6 0 366.6 317.3 367.1 366.3L448 480h-26l-70.4-71.2c-39 4.2-124.4 34.5-214.4-37C47 300.3 52 214.7 0 32zm79.7 46c-49.7-23.5-5.2 9.2-5.2 9.2 45.2 31.2 66 73.7 90.2 119.9 31.5 60.2 79 139.7 144.2 167.7 65 28 34.2 12.5 6-8.5-28.2-21.2-68.2-87-91-130.2-31.7-60-61-118.6-144.2-158.1z"] }; +var faErlang = { prefix: 'fab', iconName: 'erlang', icon: [640, 512, [], "f39d", "M21.7 246.4c-.1 86.8 29 159.5 78.7 212.1H0v-405h87.2c-41.5 50.2-65.6 116.2-65.5 192.9zM640 53.6h-83.6c31.4 42.7 48.7 97.5 46.2 162.7.5 6 .5 11.7 0 24.1H230.2c-.2 109.7 38.9 194.9 138.6 195.3 68.5-.3 118-51 151.9-106.1l96.4 48.2c-17.4 30.9-36.5 57.8-57.9 80.8H640v-405zm-80.8 405s0-.1 0 0h-.2.2zm-3.1-405h.3l-.1-.1-.2.1zm-230.7 9.6c-45.9.1-85.1 33.5-89.2 83.2h169.9c-1.1-49.7-34.5-83.1-80.7-83.2z"] }; +var faEthereum = { prefix: 'fab', iconName: 'ethereum', icon: [320, 512, [], "f42e", "M311.9 260.8L160 353.6 8 260.8 160 0l151.9 260.8zM160 383.4L8 290.6 160 512l152-221.4-152 92.8z"] }; +var faEtsy = { prefix: 'fab', iconName: 'etsy', icon: [384, 512, [], "f2d7", "M384 348c-1.75 10.75-13.75 110-15.5 132-117.879-4.299-219.895-4.743-368.5 0v-25.5c45.457-8.948 60.627-8.019 61-35.25 1.793-72.322 3.524-244.143 0-322-1.029-28.46-12.13-26.765-61-36v-25.5c73.886 2.358 255.933 8.551 362.999-3.75-3.5 38.25-7.75 126.5-7.75 126.5H332C320.947 115.665 313.241 68 277.25 68h-137c-10.25 0-10.75 3.5-10.75 9.75V241.5c58 .5 88.5-2.5 88.5-2.5 29.77-.951 27.56-8.502 40.75-65.251h25.75c-4.407 101.351-3.91 61.829-1.75 160.25H257c-9.155-40.086-9.065-61.045-39.501-61.5 0 0-21.5-2-88-2v139c0 26 14.25 38.25 44.25 38.25H263c63.636 0 66.564-24.996 98.751-99.75H384z"] }; +var faExpeditedssl = { prefix: 'fab', iconName: 'expeditedssl', icon: [496, 512, [], "f23e", "M248 43.4C130.6 43.4 35.4 138.6 35.4 256S130.6 468.6 248 468.6 460.6 373.4 460.6 256 365.4 43.4 248 43.4zm-97.4 132.9c0-53.7 43.7-97.4 97.4-97.4s97.4 43.7 97.4 97.4v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6c0-82.1-124-82.1-124 0v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6zM389.7 380c0 9.7-8 17.7-17.7 17.7H124c-9.7 0-17.7-8-17.7-17.7V238.3c0-9.7 8-17.7 17.7-17.7h248c9.7 0 17.7 8 17.7 17.7V380zm-248-137.3v132.9c0 2.5-1.9 4.4-4.4 4.4h-8.9c-2.5 0-4.4-1.9-4.4-4.4V242.7c0-2.5 1.9-4.4 4.4-4.4h8.9c2.5 0 4.4 1.9 4.4 4.4zm141.7 48.7c0 13-7.2 24.4-17.7 30.4v31.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-31.6c-10.5-6.1-17.7-17.4-17.7-30.4 0-19.7 15.8-35.4 35.4-35.4s35.5 15.8 35.5 35.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 478.3C121 486.3 17.7 383 17.7 256S121 25.7 248 25.7 478.3 129 478.3 256 375 486.3 248 486.3z"] }; +var faFacebook = { prefix: 'fab', iconName: 'facebook', icon: [448, 512, [], "f09a", "M448 56.7v398.5c0 13.7-11.1 24.7-24.7 24.7H309.1V306.5h58.2l8.7-67.6h-67v-43.2c0-19.6 5.4-32.9 33.5-32.9h35.8v-60.5c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9h-58.4v67.6h58.4V480H24.7C11.1 480 0 468.9 0 455.3V56.7C0 43.1 11.1 32 24.7 32h398.5c13.7 0 24.8 11.1 24.8 24.7z"] }; +var faFacebookF = { prefix: 'fab', iconName: 'facebook-f', icon: [264, 512, [], "f39e", "M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"] }; +var faFacebookMessenger = { prefix: 'fab', iconName: 'facebook-messenger', icon: [448, 512, [], "f39f", "M224 32C15.9 32-77.5 278 84.6 400.6V480l75.7-42c142.2 39.8 285.4-59.9 285.4-198.7C445.8 124.8 346.5 32 224 32zm23.4 278.1L190 250.5 79.6 311.6l121.1-128.5 57.4 59.6 110.4-61.1-121.1 128.5z"] }; +var faFacebookSquare = { prefix: 'fab', iconName: 'facebook-square', icon: [448, 512, [], "f082", "M448 80v352c0 26.5-21.5 48-48 48h-85.3V302.8h60.6l8.7-67.6h-69.3V192c0-19.6 5.4-32.9 33.5-32.9H384V98.7c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9H184v67.6h60.9V480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z"] }; +var faFirefox = { prefix: 'fab', iconName: 'firefox', icon: [480, 512, [], "f269", "M478.1 235.3c-.7-4.5-1.4-7.1-1.4-7.1s-1.8 2-4.7 5.9c-.9-10.7-2.8-21.2-5.8-31.6-3.7-12.9-8.5-25.4-14.5-37.4-3.8-8-8.2-15.6-13.3-22.8-1.8-2.7-3.7-5.4-5.6-7.9-8.8-14.4-19-23.3-30.7-40-7.6-12.8-12.9-26.9-15.4-41.6-3.2 8.9-5.7 18-7.4 27.3-12.1-12.2-22.5-20.8-28.9-26.7C319.4 24.2 323 9.1 323 9.1S264.7 74.2 289.9 142c8.7 23 23.8 43.1 43.4 57.9 24.4 20.2 50.8 36 64.7 76.6-11.2-21.3-28.1-39.2-48.8-51.5 6.2 14.7 9.4 30.6 9.3 46.5 0 61-49.6 110.5-110.6 110.4-8.3 0-16.5-.9-24.5-2.8-9.5-1.8-18.7-4.9-27.4-9.3-12.9-7.8-24-18.1-32.8-30.3l-.2-.3 2 .7c4.6 1.6 9.2 2.8 14 3.7 18.7 4 38.3 1.7 55.6-6.6 17.5-9.7 28-16.9 36.6-14h.2c8.4 2.7 15-5.5 9-14-10.4-13.4-27.4-20-44.2-17-17.5 2.5-33.5 15-56.4 2.9-1.5-.8-2.9-1.6-4.3-2.5-1.6-.9 4.9 1.3 3.4.3-5-2.5-9.8-5.4-14.4-8.6-.3-.3 3.5 1.1 3.1.8-5.9-4-11-9.2-15-15.2-4.1-7.4-4.5-16.4-1-24.1 2.1-3.8 5.4-6.9 9.3-8.7 3 1.5 4.8 2.6 4.8 2.6s-1.3-2.5-2.1-3.8c.3-.1.5 0 .8-.2 2.6 1.1 8.3 4 11.4 5.8 2.1 1.1 3.8 2.7 5.2 4.7 0 0 1-.5.3-2.7-1.1-2.7-2.9-5-5.4-6.6h.2c2.3 1.2 4.5 2.6 6.6 4.1 1.9-4.4 2.8-9.2 2.6-14 .2-2.6-.2-5.3-1.1-7.8-.8-1.6.5-2.2 1.9-.5-.2-1.3-.7-2.5-1.2-3.7v-.1s.8-1.1 1.2-1.5c1-1 2.1-1.9 3.4-2.7 7.2-4.5 14.8-8.4 22.7-11.6 6.4-2.8 11.7-4.9 12.8-5.6 1.6-1 3.1-2.2 4.5-3.5 5.3-4.5 9-10.8 10.2-17.7.1-.9.2-1.8.3-2.8v-1.5c-.9-3.5-6.9-6.1-38.4-9.1-11.1-1.8-20-10.1-22.5-21.1v.1c-.4 1.1-.9 2.3-1.3 3.5.4-1.2.8-2.3 1.3-3.5v-.2c6-15.7 16.8-29.1 30.8-38.3.8-.7-3.2.2-2.4-.5 2.7-1.3 5.4-2.5 8.2-3.5 1.4-.6-6-3.4-12.6-2.7-4 .2-8 1.2-11.7 2.8 1.6-1.3 6.2-3.1 5.1-3.1-8.4 1.6-16.5 4.7-23.9 9 0-.8.1-1.5.5-2.2-5.9 2.5-11 6.5-15 11.5.1-.9.2-1.8.2-2.7-2.7 2-5.2 4.3-7.3 6.9l-.1.1c-17.4-6.7-36.3-8.3-54.6-4.7l-.2-.1h.2c-3.8-3.1-7.1-6.7-9.7-10.9l-.2.1-.4-.2c-1.2-1.8-2.4-3.8-3.7-6-.9-1.6-1.8-3.4-2.7-5.2 0-.1-.1-.2-.2-.2-.4 0-.6 1.7-.9 1.3v-.1c-3.2-8.3-4.7-17.2-4.4-26.2l-.2.1c-5.1 3.5-9 8.6-11.1 14.5-.9 2.1-1.6 3.3-2.2 4.5v-.5c.1-1.1.6-3.3.5-3.1-.1.2-.2.3-.3.4-1.5 1.7-2.9 3.7-3.9 5.8-.9 1.9-1.7 3.9-2.3 5.9-.1.3 0-.3 0-1s.1-2 0-1.7l-.3.7c-6.7 14.9-10.9 30.8-12.4 47.1-.4 2.8-.6 5.6-.5 8.3v.2c-4.8 5.2-9 11-12.7 17.1-12.1 20.4-21.1 42.5-26.8 65.6 4-8.8 8.8-17.2 14.3-25.1C5.5 228.5 0 257.4 0 286.6c1.8-8.6 4.2-17 7-25.3-1.7 34.5 4.9 68.9 19.4 100.3 19.4 43.5 51.6 80 92.3 104.7 16.6 11.2 34.7 19.9 53.8 25.8 2.5.9 5.1 1.8 7.7 2.7-.8-.3-1.6-.7-2.4-1 22.6 6.8 46.2 10.3 69.8 10.3 83.7 0 111.3-31.9 113.8-35 4.1-3.7 7.5-8.2 9.9-13.3 1.6-.7 3.2-1.4 4.9-2.1l1-.5 1.9-.9c12.6-5.9 24.5-13.4 35.3-22.1 16.3-11.7 27.9-28.7 32.9-48.1 3-7.1 3.1-15 .4-22.2.9-1.4 1.7-2.8 2.7-4.3 18-28.9 28.2-61.9 29.6-95.9v-2.8c0-7.3-.6-14.5-1.9-21.6z"] }; +var faFirstOrder = { prefix: 'fab', iconName: 'first-order', icon: [448, 512, [], "f2b0", "M12.9 229.2c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4h-.2zM224 96.6c-7.1 0-14.6.6-21.4 1.7l3.7 67.4-22-64c-14.3 3.7-27.7 9.4-40 16.6l29.4 61.4-45.1-50.9c-11.4 8.9-21.7 19.1-30.6 30.9l50.6 45.4-61.1-29.7c-7.1 12.3-12.9 25.7-16.6 40l64.3 22.6-68-4c-.9 7.1-1.4 14.6-1.4 22s.6 14.6 1.4 21.7l67.7-4-64 22.6c3.7 14.3 9.4 27.7 16.6 40.3l61.1-29.7L97.7 352c8.9 11.7 19.1 22.3 30.9 30.9l44.9-50.9-29.5 61.4c12.3 7.4 25.7 13.1 40 16.9l22.3-64.6-4 68c7.1 1.1 14.6 1.7 21.7 1.7 7.4 0 14.6-.6 21.7-1.7l-4-68.6 22.6 65.1c14.3-4 27.7-9.4 40-16.9L274.9 332l44.9 50.9c11.7-8.9 22-19.1 30.6-30.9l-50.6-45.1 61.1 29.4c7.1-12.3 12.9-25.7 16.6-40.3l-64-22.3 67.4 4c1.1-7.1 1.4-14.3 1.4-21.7s-.3-14.9-1.4-22l-67.7 4 64-22.3c-3.7-14.3-9.1-28-16.6-40.3l-60.9 29.7 50.6-45.4c-8.9-11.7-19.1-22-30.6-30.9l-45.1 50.9 29.4-61.1c-12.3-7.4-25.7-13.1-40-16.9L241.7 166l4-67.7c-7.1-1.2-14.3-1.7-21.7-1.7zM443.4 128v256L224 512 4.6 384V128L224 0l219.4 128zm-17.1 10.3L224 20.9 21.7 138.3v235.1L224 491.1l202.3-117.7V138.3zM224 37.1l187.7 109.4v218.9L224 474.9 36.3 365.4V146.6L224 37.1zm0 50.9c-92.3 0-166.9 75.1-166.9 168 0 92.6 74.6 167.7 166.9 167.7 92 0 166.9-75.1 166.9-167.7 0-92.9-74.9-168-166.9-168z"] }; +var faFirstOrderAlt = { prefix: 'fab', iconName: 'first-order-alt', icon: [496, 512, [], "f50a", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 488.21C115.34 496.21 7.79 388.66 7.79 256S115.34 15.79 248 15.79 488.21 123.34 488.21 256 380.66 496.21 248 496.21zm0-459.92C126.66 36.29 28.29 134.66 28.29 256S126.66 475.71 248 475.71 467.71 377.34 467.71 256 369.34 36.29 248 36.29zm0 431.22c-116.81 0-211.51-94.69-211.51-211.51S131.19 44.49 248 44.49 459.51 139.19 459.51 256 364.81 467.51 248 467.51zm186.23-162.98a191.613 191.613 0 0 1-20.13 48.69l-74.13-35.88 61.48 54.82a193.515 193.515 0 0 1-37.2 37.29l-54.8-61.57 35.88 74.27a190.944 190.944 0 0 1-48.63 20.23l-27.29-78.47 4.79 82.93c-8.61 1.18-17.4 1.8-26.33 1.8s-17.72-.62-26.33-1.8l4.76-82.46-27.15 78.03a191.365 191.365 0 0 1-48.65-20.2l35.93-74.34-54.87 61.64a193.85 193.85 0 0 1-37.22-37.28l61.59-54.9-74.26 35.93a191.638 191.638 0 0 1-20.14-48.69l77.84-27.11-82.23 4.76c-1.16-8.57-1.78-17.32-1.78-26.21 0-9 .63-17.84 1.82-26.51l82.38 4.77-77.94-27.16a191.726 191.726 0 0 1 20.23-48.67l74.22 35.92-61.52-54.86a193.85 193.85 0 0 1 37.28-37.22l54.76 61.53-35.83-74.17a191.49 191.49 0 0 1 48.65-20.13l26.87 77.25-4.71-81.61c8.61-1.18 17.39-1.8 26.32-1.8s17.71.62 26.32 1.8l-4.74 82.16 27.05-77.76c17.27 4.5 33.6 11.35 48.63 20.17l-35.82 74.12 54.72-61.47a193.13 193.13 0 0 1 37.24 37.23l-61.45 54.77 74.12-35.86a191.515 191.515 0 0 1 20.2 48.65l-77.81 27.1 82.24-4.75c1.19 8.66 1.82 17.5 1.82 26.49 0 8.88-.61 17.63-1.78 26.19l-82.12-4.75 77.72 27.09z"] }; +var faFirstdraft = { prefix: 'fab', iconName: 'firstdraft', icon: [384, 512, [], "f3a1", "M384 192h-64v128H192v128H0v-25.6h166.4v-128h128v-128H384V192zm-25.6 38.4v128h-128v128H64V512h192V384h128V230.4h-25.6zm25.6 192h-89.6V512H320v-64h64v-25.6zM0 0v384h128V256h128V128h128V0H0z"] }; +var faFlickr = { prefix: 'fab', iconName: 'flickr', icon: [448, 512, [], "f16e", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5zm159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5z"] }; +var faFlipboard = { prefix: 'fab', iconName: 'flipboard', icon: [448, 512, [], "f44d", "M0 32v448h448V32H0zm358.4 179.2h-89.6v89.6h-89.6v89.6H89.6V121.6h268.8v89.6z"] }; +var faFly = { prefix: 'fab', iconName: 'fly', icon: [384, 512, [], "f417", "M197.8 427.8c12.9 11.7 33.7 33.3 33.2 50.7 0 .8-.1 1.6-.1 2.5-1.8 19.8-18.8 31.1-39.1 31-25-.1-39.9-16.8-38.7-35.8 1-16.2 20.5-36.7 32.4-47.6 2.3-2.1 2.7-2.7 5.6-3.6 3.4 0 3.9.3 6.7 2.8zM331.9 67.3c-16.3-25.7-38.6-40.6-63.3-52.1C243.1 4.5 214-.2 192 0c-44.1 0-71.2 13.2-81.1 17.3C57.3 45.2 26.5 87.2 28 158.6c7.1 82.2 97 176 155.8 233.8 1.7 1.6 4.5 4.5 6.2 5.1l3.3.1c2.1-.7 1.8-.5 3.5-2.1 52.3-49.2 140.7-145.8 155.9-215.7 7-39.2 3.1-72.5-20.8-112.5zM186.8 351.9c-28-51.1-65.2-130.7-69.3-189-3.4-47.5 11.4-131.2 69.3-136.7v325.7zM328.7 180c-16.4 56.8-77.3 128-118.9 170.3C237.6 298.4 275 217 277 158.4c1.6-45.9-9.8-105.8-48-131.4 88.8 18.3 115.5 98.1 99.7 153z"] }; +var faFontAwesome = { prefix: 'fab', iconName: 'font-awesome', icon: [448, 512, [], "f2b4", "M397.8 32H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-45.4 284.3c0 4.2-3.6 6-7.8 7.8-16.7 7.2-34.6 13.7-53.8 13.7-26.9 0-39.4-16.7-71.7-16.7-23.3 0-47.8 8.4-67.5 17.3-1.2.6-2.4.6-3.6 1.2V385c0 1.8 0 3.6-.6 4.8v1.2c-2.4 8.4-10.2 14.3-19.1 14.3-11.3 0-20.3-9-20.3-20.3V166.4c-7.8-6-13.1-15.5-13.1-26.3 0-18.5 14.9-33.5 33.5-33.5 18.5 0 33.5 14.9 33.5 33.5 0 10.8-4.8 20.3-13.1 26.3v18.5c1.8-.6 3.6-1.2 5.4-2.4 18.5-7.8 40.6-14.3 61.5-14.3 22.7 0 40.6 6 60.9 13.7 4.2 1.8 8.4 2.4 13.1 2.4 22.7 0 47.8-16.1 53.8-16.1 4.8 0 9 3.6 9 7.8v140.3z"] }; +var faFontAwesomeAlt = { prefix: 'fab', iconName: 'font-awesome-alt', icon: [448, 512, [], "f35c", "M397.8 67.8c7.8 0 14.3 6.6 14.3 14.3v347.6c0 7.8-6.6 14.3-14.3 14.3H50.2c-7.8 0-14.3-6.6-14.3-14.3V82.2c0-7.8 6.6-14.3 14.3-14.3h347.6m0-35.9H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-58.5 139.2c-6 0-29.9 15.5-52.6 15.5-4.2 0-8.4-.6-12.5-2.4-19.7-7.8-37-13.7-59.1-13.7-20.3 0-41.8 6.6-59.7 13.7-1.8.6-3.6 1.2-4.8 1.8v-17.9c7.8-6 12.5-14.9 12.5-25.7 0-17.9-14.3-32.3-32.3-32.3s-32.3 14.3-32.3 32.3c0 10.2 4.8 19.7 12.5 25.7v212.1c0 10.8 9 19.7 19.7 19.7 9 0 16.1-6 18.5-13.7V385c.6-1.8.6-3 .6-4.8V336c1.2 0 2.4-.6 3-1.2 19.7-8.4 43-16.7 65.7-16.7 31.1 0 43 16.1 69.3 16.1 18.5 0 36.4-6.6 52-13.7 4.2-1.8 7.2-3.6 7.2-7.8V178.3c1.8-4.1-2.3-7.1-7.7-7.1z"] }; +var faFontAwesomeFlag = { prefix: 'fab', iconName: 'font-awesome-flag', icon: [448, 512, [], "f425", "M444.373 359.424c0 7.168-6.144 10.24-13.312 13.312-28.672 12.288-59.392 23.552-92.16 23.552-46.08 0-67.584-28.672-122.88-28.672-39.936 0-81.92 14.336-115.712 29.696-2.048 1.024-4.096 1.024-6.144 2.048v77.824c0 21.405-16.122 34.816-33.792 34.816-19.456 0-34.816-15.36-34.816-34.816V102.4C12.245 92.16 3.029 75.776 3.029 57.344 3.029 25.6 28.629 0 60.373 0s57.344 25.6 57.344 57.344c0 18.432-8.192 34.816-22.528 45.056v31.744c4.124-1.374 58.768-28.672 114.688-28.672 65.27 0 97.676 27.648 126.976 27.648 38.912 0 81.92-27.648 92.16-27.648 8.192 0 15.36 6.144 15.36 13.312v240.64z"] }; +var faFontAwesomeLogoFull = { prefix: 'fab', iconName: 'font-awesome-logo-full', icon: [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"] }; +var faFonticons = { prefix: 'fab', iconName: 'fonticons', icon: [448, 512, [], "f280", "M0 32v448h448V32H0zm167.4 196h67.4l-11.1 37.3H168v112.9c0 5.8-2 6.7 3.2 7.3l43.5 4.1v25.1H84V389l21.3-2c5.2-.6 6.7-2.3 6.7-7.9V267.7c0-2.3-2.9-2.3-5.8-2.3H84V228h28v-21c0-49.6 26.5-70 77.3-70 34.1 0 64.7 8.2 64.7 52.8l-50.7 6.1c.3-18.7-4.4-23-16.3-23-18.4 0-19 9.9-19 27.4v23.3c0 2.4-3.5 4.4-.6 4.4zM364 414.7H261.3v-25.1l20.4-2.6c5.2-.6 7.6-1.7 7.6-7.3V271.8c0-4.1-2.9-6.7-6.7-7.9l-24.2-6.4 6.7-29.5h80.2v151.7c0 5.8-2.6 6.4 2.9 7.3l15.7 2.6v25.1zm-21.9-255.5l9 33.2-7.3 7.3-31.2-16.6-31.2 16.6-7.3-7.3 9-33.2-21.8-24.2 3.5-9.6h27.7l15.5-28h9.3l15.5 28h27.7l3.5 9.6-21.9 24.2z"] }; +var faFonticonsFi = { prefix: 'fab', iconName: 'fonticons-fi', icon: [384, 512, [], "f3a2", "M114.4 224h92.4l-15.2 51.2h-76.4V433c0 8-2.8 9.2 4.4 10l59.6 5.6V483H0v-35.2l29.2-2.8c7.2-.8 9.2-3.2 9.2-10.8V278.4c0-3.2-4-3.2-8-3.2H0V224h38.4v-28.8c0-68 36.4-96 106-96 46.8 0 88.8 11.2 88.8 72.4l-69.6 8.4c.4-25.6-6-31.6-22.4-31.6-25.2 0-26 13.6-26 37.6v32c0 3.2-4.8 6-.8 6zM384 483H243.2v-34.4l28-3.6c7.2-.8 10.4-2.4 10.4-10V287c0-5.6-4-9.2-9.2-10.8l-33.2-8.8 9.2-40.4h110v208c0 8-3.6 8.8 4 10l21.6 3.6V483zm-30-347.2l12.4 45.6-10 10-42.8-22.8-42.8 22.8-10-10 12.4-45.6-30-36.4 4.8-10h38L307.2 51H320l21.2 38.4h38l4.8 13.2-30 33.2z"] }; +var faFortAwesome = { prefix: 'fab', iconName: 'fort-awesome', icon: [512, 512, [], "f286", "M489.2 287.9h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6V146.2c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-6-8-4.6-11.7-4.6v-38c8.3-2 17.1-3.4 25.7-3.4 10.9 0 20.9 4.3 31.4 4.3 4.6 0 27.7-1.1 27.7-8v-60c0-2.6-2-4.6-4.6-4.6-5.1 0-15.1 4.3-24 4.3-9.7 0-20.9-4.3-32.6-4.3-8 0-16 1.1-23.7 2.9v-4.9c5.4-2.6 9.1-8.3 9.1-14.3 0-20.7-31.4-20.8-31.4 0 0 6 3.7 11.7 9.1 14.3v111.7c-3.7 0-11.7-1.4-11.7 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32H128v-32c0-2.6-2-4.6-4.6-4.6H96c-2.6 0-4.6 2-4.6 4.6v178.3H54.8v-32c0-2.6-2-4.6-4.6-4.6H22.8c-2.6 0-4.6 2-4.6 4.6V512h182.9v-96c0-72.6 109.7-72.6 109.7 0v96h182.9V292.5c.1-2.6-1.9-4.6-4.5-4.6zm-288.1-4.5c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64zm146.4 0c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64z"] }; +var faFortAwesomeAlt = { prefix: 'fab', iconName: 'fort-awesome-alt', icon: [512, 512, [], "f3a3", "M211.7 241.1v51.7c0 2.1-1.6 3.7-3.7 3.7h-22.2c-2.1 0-3.7-1.6-3.7-3.7v-51.7c0-2.1 1.6-3.7 3.7-3.7H208c2.1 0 3.7 1.6 3.7 3.7zm114.5-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7h22.2c2.1 0 3.7-1.6 3.7-3.7v-51.7c-.1-2.1-1.7-3.7-3.7-3.7zm-29.1 263.2c-.9.1-1.7.3-2.6.4-1 .2-2.1.3-3.1.5-.9.1-1.8.3-2.8.4-1 .1-2 .3-3 .4-1 .1-2 .2-2.9.3-1 .1-1.9.2-2.9.3-1 .1-2.1.2-3.1.3-.9.1-1.8.2-2.7.2-1.1.1-2.3.1-3.4.2-.8 0-1.7.1-2.5.1-1.3.1-2.6.1-3.9.1-.7 0-1.4.1-2.1.1-2 0-4 .1-6 .1s-4 0-6-.1c-.7 0-1.4 0-2.1-.1-1.3 0-2.6-.1-3.9-.1-.8 0-1.7-.1-2.5-.1-1.1-.1-2.3-.1-3.4-.2-.9-.1-1.8-.1-2.7-.2-1-.1-2.1-.2-3.1-.3-1-.1-1.9-.2-2.9-.3-1-.1-2-.2-2.9-.3-1-.1-2-.2-3-.4-.9-.1-1.8-.3-2.8-.4-1-.1-2.1-.3-3.1-.5-.9-.1-1.7-.3-2.6-.4-65.6-10.9-122.5-47.7-160-99.4-.2-.2-.3-.5-.5-.7-.8-1.1-1.6-2.2-2.3-3.3-.3-.4-.6-.8-.8-1.2-.7-1.1-1.4-2.1-2.1-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.4-2.1-2-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.3-2.2-2-3.3-.2-.4-.5-.8-.7-1.2-2.4-4-4.6-8.1-6.8-12.2-.1-.2-.2-.3-.3-.5-.6-1.1-1.1-2.2-1.7-3.3-.3-.6-.6-1.1-.8-1.7-.5-1-1-2.1-1.5-3.1-.3-.7-.6-1.3-.9-2-.5-1-.9-2-1.4-3l-.9-2.1c-.4-1-.9-2-1.3-3-.3-.7-.6-1.5-.9-2.2l-1.2-3c-.3-.8-.6-1.5-.9-2.3-.4-1-.8-2-1.1-3-.3-.9-.6-1.8-1-2.8-.6-1.6-1.1-3.3-1.7-4.9-.3-.9-.6-1.8-.9-2.8-.3-.9-.5-1.8-.8-2.7-.3-.9-.6-1.9-.8-2.8-.3-.9-.5-1.8-.8-2.7-.3-1-.5-1.9-.8-2.9-.2-.9-.5-1.8-.7-2.7-.3-1-.5-2-.7-3-.2-.9-.4-1.7-.6-2.6-.2-1.1-.5-2.2-.7-3.2-.2-.8-.3-1.6-.5-2.4-.3-1.3-.5-2.7-.8-4-.1-.6-.2-1.1-.3-1.7l-.9-5.7c-.1-.6-.2-1.3-.3-1.9-.2-1.3-.4-2.6-.5-3.9-.1-.8-.2-1.5-.3-2.3-.1-1.2-.3-2.4-.4-3.6-.1-.8-.2-1.6-.2-2.4-.1-1.2-.2-2.4-.3-3.5-.1-.8-.1-1.6-.2-2.4-.1-1.2-.2-2.4-.2-3.7 0-.8-.1-1.5-.1-2.3-.1-1.3-.1-2.7-.2-4 0-.7 0-1.3-.1-2 0-2-.1-4-.1-6 0-53.5 16.9-103 45.8-143.6 2.3-3.2 4.7-6.4 7.1-9.5 4.9-6.2 10.1-12.3 15.6-18 2.7-2.9 5.5-5.7 8.4-8.4 2.9-2.7 5.8-5.4 8.8-8 4.5-3.9 9.1-7.6 13.9-11.2 1.6-1.2 3.2-2.4 4.8-3.5C140 34.2 171.7 20.1 206 13c16.1-3.3 32.9-5 50-5s33.8 1.7 50 5c34.3 7 66 21.1 93.6 40.7 1.6 1.2 3.2 2.3 4.8 3.5 4.8 3.6 9.4 7.3 13.9 11.2 12 10.4 23 21.9 32.8 34.4 2.5 3.1 4.8 6.3 7.1 9.5C487.1 153 504 202.5 504 256c0 2 0 4-.1 6 0 .7 0 1.3-.1 2 0 1.3-.1 2.7-.2 4 0 .8-.1 1.5-.1 2.3-.1 1.2-.1 2.4-.2.7-.1.8-.1 1.6-.2 2.4-.1 1.2-.2 2.4-.3 3.5-.1.8-.2 1.6-.2 2.4-.1 1.2-.3 2.4-.4 3.6-.1.8-.2 1.5-.3 2.3-.2 1.3-.4 2.6-.5 3.9-.1.6-.2 1.3-.3 1.9l-.9 5.7c-.1.6-.2 1.1-.3 1.7-.2 1.3-.5 2.7-.8 4-.2.8-.3 1.6-.5 2.4-.2 1.1-.5 2.2-.7 3.2-.2.9-.4 1.7-.6 2.6-.2 1-.5 2-.7 3-.2.9-.5 1.8-.7 2.7-.3 1-.5 1.9-.8 2.9-.2.9-.5 1.8-.8 2.7-.3.9-.6 1.9-.8 2.8-.3.9-.5 1.8-.8 2.7-.3.9-.6 1.8-.9 2.8-.5 1.6-1.1 3.3-1.7 4.9-.3.9-.6 1.8-1 2.8-.4 1-.7 2-1.1 3-.3.8-.6 1.5-.9 2.3l-1.2 3c-.3.7-.6 1.5-.9 2.2-.4 1-.8 2-1.3 3l-.9 2.1c-.4 1-.9 2-1.4 3-.3.7-.6 1.3-.9 2-.5 1-1 2.1-1.5 3.1-.3.6-.6 1.1-.8 1.7-.6 1.1-1.1 2.2-1.7 3.3-.1.2-.2.3-.3.5-2.2 4.1-4.4 8.2-6.8 12.2-.2.4-.5.8-.7 1.2-.7 1.1-1.3 2.2-2 3.3-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2 3.2-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2.1 3.2-.3.4-.6.8-.8 1.2-.8 1.1-1.5 2.2-2.3 3.3-.2.2-.3.5-.5.7-37.6 54.7-94.5 91.4-160.1 102.4zm117.3-86.2c13-13 24.2-27.4 33.6-42.9v-71.3c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7V326h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-4.8-6.5-3.7-9.5-3.7v-30.7c6.7-1.6 13.8-2.8 20.8-2.8 8.8 0 16.8 3.5 25.4 3.5 3.7 0 22.4-.9 22.4-6.5V93.4c0-2.1-1.6-3.7-3.7-3.7-4.2 0-12.2 3.5-19.4 3.5-7.9 0-16.9-3.5-26.3-3.5-6.5 0-12.9.9-19.2 2.3v-3.9c4.4-2.1 7.4-6.7 7.4-11.5 0-16.8-25.4-16.8-25.4 0 0 4.8 3 9.5 7.4 11.5v90.2c-3 0-9.5-1.1-9.5 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v144H93.5v-25.8c0-2.1-1.6-3.7-3.7-3.7H67.7c-2.1 0-3.7 1.6-3.7 3.7v71.3c9.4 15.5 20.6 29.9 33.6 42.9 20.6 20.6 44.5 36.7 71.2 48 13.9 5.9 28.2 10.3 42.9 13.2v-75.8c0-58.6 88.6-58.6 88.6 0v75.8c14.7-2.9 29-7.4 42.9-13.2 26.7-11.3 50.6-27.4 71.2-48"] }; +var faForumbee = { prefix: 'fab', iconName: 'forumbee', icon: [448, 512, [], "f211", "M5.8 309.7C2 292.7 0 275.5 0 258.3 0 135 99.8 35 223.1 35c16.6 0 33.3 2 49.3 5.5C149 87.5 51.9 186 5.8 309.7zm392.9-189.2C385 103 369 87.8 350.9 75.2c-149.6 44.3-266.3 162.1-309.7 312 12.5 18.1 28 35.6 45.2 49 43.1-151.3 161.2-271.7 312.3-315.7zm15.8 252.7c15.2-25.1 25.4-53.7 29.5-82.8-79.4 42.9-145 110.6-187.6 190.3 30-4.4 58.9-15.3 84.6-31.3 35 13.1 70.9 24.3 107 33.6-9.3-36.5-20.4-74.5-33.5-109.8zm29.7-145.5c-2.6-19.5-7.9-38.7-15.8-56.8C290.5 216.7 182 327.5 137.1 466c18.1 7.6 37 12.5 56.6 15.2C240 367.1 330.5 274.4 444.2 227.7z"] }; +var faFoursquare = { prefix: 'fab', iconName: 'foursquare', icon: [368, 512, [], "f180", "M323.1 3H49.9C12.4 3 0 31.3 0 49.1v433.8c0 20.3 12.1 27.7 18.2 30.1 6.2 2.5 22.8 4.6 32.9-7.1C180 356.5 182.2 354 182.2 354c3.1-3.4 3.4-3.1 6.8-3.1h83.4c35.1 0 40.6-25.2 44.3-39.7l48.6-243C373.8 25.8 363.1 3 323.1 3zm-16.3 73.8l-11.4 59.7c-1.2 6.5-9.5 13.2-16.9 13.2H172.1c-12 0-20.6 8.3-20.6 20.3v13c0 12 8.6 20.6 20.6 20.6h90.4c8.3 0 16.6 9.2 14.8 18.2-1.8 8.9-10.5 53.8-11.4 58.8-.9 4.9-6.8 13.5-16.9 13.5h-73.5c-13.5 0-17.2 1.8-26.5 12.6 0 0-8.9 11.4-89.5 108.3-.9.9-1.8.6-1.8-.3V75.9c0-7.7 6.8-16.6 16.6-16.6h219c8.2 0 15.6 7.7 13.5 17.5z"] }; +var faFreeCodeCamp = { prefix: 'fab', iconName: 'free-code-camp', icon: [576, 512, [], "f2c5", "M69.3 144.5c-41 68.5-36.4 163 1 227C92.5 409.7 120 423.9 120 438c0 6.8-6 13-12.8 13C87.7 451 8 375.5 8 253.2c0-111.5 78-186 97.1-186 6 0 14.9 4.8 14.9 11.1 0 12.7-28.3 28.6-50.7 66.2zm195.8 213.8c4.5 1.8 12.3 5.2 12.3-1.2 0-2.7-2.2-2.9-4.3-3.6-8.5-3.4-14-7.7-19.1-15.2-8.2-12.1-10.1-24.2-10.1-38.6 0-32.1 44.2-37.9 44.2-70 0-12.3-7.7-15.9-7.7-19.3 0-2.2.7-2.2 2.9-2.2 8 0 19.1 13.3 22.5 19.8 2.2 4.6 2.4 6 2.4 11.1 0 7-.7 14.2-.7 21.3 0 27 31.9 19.8 31.9 6.8 0-6-3.6-11.6-3.6-17.4 0-.7 0-1.2.7-1.2 3.4 0 9.4 7.7 11.1 10.1 5.8 8.9 8.5 20.8 8.5 31.4 0 32.4-29.5 49-29.5 56 0 1 2.9 7.7 12.1 1.9 29.7-15.1 53.1-47.6 53.1-89.8 0-33.6-8.7-57.7-32.1-82.6-3.9-4.1-16.4-16.9-22.5-16.9-8.2 0 7.2 18.6 7.2 31.2 0 7.2-4.8 12.3-12.3 12.3-11.6 0-14.5-25.4-15.9-33.3-5.8-33.8-12.8-58.2-46.4-74.1-10.4-5-36.5-11.8-36.5-2.2 0 2.4 2.7 4.1 4.6 5.1 9.2 5.6 19.6 21.4 19.6 38.2 0 46.1-57.7 88.2-57.7 136.2-.2 40.3 28.1 72.6 65.3 86.2zM470.4 67c-6 0-14.4 6.5-14.4 12.6 0 8.7 12.1 19.6 17.6 25.4 81.6 85.1 78.6 214.3 17.6 291-7 8.9-35.3 35.3-35.3 43.5 0 5.1 8.2 11.4 13.2 11.4 25.4 0 98.8-80.8 98.8-185.7C568 145.9 491.8 67 470.4 67zm-42.3 323.1H167c-9.4 0-15.5 7.5-15.5 16.4 0 8.5 7 15.5 15.5 15.5h261.1c9.4 0 11.9-7.5 11.9-16.4 0-8.5-3.5-15.5-11.9-15.5z"] }; +var faFreebsd = { prefix: 'fab', iconName: 'freebsd', icon: [448, 512, [], "f3a4", "M303.7 96.2c11.1-11.1 115.5-77 139.2-53.2 23.7 23.7-42.1 128.1-53.2 139.2-11.1 11.1-39.4.9-63.1-22.9-23.8-23.7-34.1-52-22.9-63.1zM109.9 68.1C73.6 47.5 22 24.6 5.6 41.1c-16.6 16.6 7.1 69.4 27.9 105.7 18.5-32.2 44.8-59.3 76.4-78.7zM406.7 174c3.3 11.3 2.7 20.7-2.7 26.1-20.3 20.3-87.5-27-109.3-70.1-18-32.3-11.1-53.4 14.9-48.7 5.7-3.6 12.3-7.6 19.6-11.6-29.8-15.5-63.6-24.3-99.5-24.3-119.1 0-215.6 96.5-215.6 215.6 0 119 96.5 215.6 215.6 215.6S445.3 380.1 445.3 261c0-38.4-10.1-74.5-27.7-105.8-3.9 7-7.6 13.3-10.9 18.8z"] }; +var faFulcrum = { prefix: 'fab', iconName: 'fulcrum', icon: [269, 512, [], "f50b", "M70.75 164.14l-35.38 43.55L0 164.14l35.38-43.55 35.37 43.55zM119.23 0L98.69 198.18 47.72 256l50.98 57.82L119.23 512V300.89L78.15 256l41.08-44.89V0zm79.67 164.14l35.38 43.55 35.38-43.55-35.38-43.55-35.38 43.55zm-48.48 46.97L191.5 256l-41.08 44.89V512l20.54-198.18L221.94 256l-50.98-57.82L150.42 0v211.11z"] }; +var faGalacticRepublic = { prefix: 'fab', iconName: 'galactic-republic', icon: [496, 512, [], "f50c", "M248 504C111.25 504 0 392.75 0 256S111.25 8 248 8s248 111.25 248 248-111.25 248-248 248zm0-479.47C120.37 24.53 16.53 128.37 16.53 256S120.37 487.47 248 487.47 479.47 383.63 479.47 256 375.63 24.53 248 24.53zm27.62 21.81v24.62a185.933 185.933 0 0 1 83.57 34.54l17.39-17.36c-28.75-22.06-63.3-36.89-100.96-41.8zm-55.37.07c-37.64 4.94-72.16 19.8-100.88 41.85l17.28 17.36h.08c24.07-17.84 52.55-30.06 83.52-34.67V46.41zm12.25 50.17v82.87c-10.04 2.03-19.42 5.94-27.67 11.42l-58.62-58.59-21.93 21.93 58.67 58.67c-5.47 8.23-9.45 17.59-11.47 27.62h-82.9v31h82.9c2.02 10.02 6.01 19.31 11.47 27.54l-58.67 58.69 21.93 21.93 58.62-58.62a77.873 77.873 0 0 0 27.67 11.47v82.9h31v-82.9c10.05-2.03 19.37-6.06 27.62-11.55l58.67 58.69 21.93-21.93-58.67-58.69c5.46-8.23 9.47-17.52 11.5-27.54h82.87v-31h-82.87c-2.02-10.02-6.03-19.38-11.5-27.62l58.67-58.67-21.93-21.93-58.67 58.67c-8.25-5.49-17.57-9.47-27.62-11.5V96.58h-31zm183.24 30.72l-17.36 17.36a186.337 186.337 0 0 1 34.67 83.67h24.62c-4.95-37.69-19.83-72.29-41.93-101.03zm-335.55.13c-22.06 28.72-36.91 63.26-41.85 100.91h24.65c4.6-30.96 16.76-59.45 34.59-83.52l-17.39-17.39zM38.34 283.67c4.92 37.64 19.75 72.18 41.8 100.9l17.36-17.39c-17.81-24.07-29.92-52.57-34.51-83.52H38.34zm394.7 0c-4.61 30.99-16.8 59.5-34.67 83.6l17.36 17.36c22.08-28.74 36.98-63.29 41.93-100.96h-24.62zM136.66 406.38l-17.36 17.36c28.73 22.09 63.3 36.98 100.96 41.93v-24.64c-30.99-4.63-59.53-16.79-83.6-34.65zm222.53.05c-24.09 17.84-52.58 30.08-83.57 34.67v24.57c37.67-4.92 72.21-19.79 100.96-41.85l-17.31-17.39h-.08z"] }; +var faGalacticSenate = { prefix: 'fab', iconName: 'galactic-senate', icon: [512, 512, [], "f50d", "M249.86 33.48v26.07C236.28 80.17 226 168.14 225.39 274.9c11.74-15.62 19.13-33.33 19.13-48.24v-16.88c-.03-5.32.75-10.53 2.19-15.65.65-2.14 1.39-4.08 2.62-5.82 1.23-1.75 3.43-3.79 6.68-3.79 3.24 0 5.45 2.05 6.68 3.79 1.23 1.75 1.97 3.68 2.62 5.82 1.44 5.12 2.22 10.33 2.19 15.65v16.88c0 14.91 7.39 32.62 19.13 48.24-.63-106.76-10.91-194.73-24.49-215.35V33.48h-12.28zm-26.34 147.77c-9.52 2.15-18.7 5.19-27.46 9.08 8.9 16.12 9.76 32.64 1.71 37.29-8 4.62-21.85-4.23-31.36-19.82-11.58 8.79-21.88 19.32-30.56 31.09 14.73 9.62 22.89 22.92 18.32 30.66-4.54 7.7-20.03 7.14-35.47-.96-5.78 13.25-9.75 27.51-11.65 42.42 9.68.18 18.67 2.38 26.18 6.04 17.78-.3 32.77-1.96 40.49-4.22 5.55-26.35 23.02-48.23 46.32-59.51.73-25.55 1.88-49.67 3.48-72.07zm64.96 0c1.59 22.4 2.75 46.52 3.47 72.07 23.29 11.28 40.77 33.16 46.32 59.51 7.72 2.26 22.71 3.92 40.49 4.22 7.51-3.66 16.5-5.85 26.18-6.04-1.9-14.91-5.86-29.17-11.65-42.42-15.44 8.1-30.93 8.66-35.47.96-4.57-7.74 3.6-21.05 18.32-30.66-8.68-11.77-18.98-22.3-30.56-31.09-9.51 15.59-23.36 24.44-31.36 19.82-8.05-4.65-7.19-21.16 1.71-37.29a147.49 147.49 0 0 0-27.45-9.08zm-32.48 8.6c-3.23 0-5.86 8.81-6.09 19.93h-.05v16.88c0 41.42-49.01 95.04-93.49 95.04-52 0-122.75-1.45-156.37 29.17v2.51c9.42 17.12 20.58 33.17 33.18 47.97C45.7 380.26 84.77 360.4 141.2 360c45.68 1.02 79.03 20.33 90.76 40.87.01.01-.01.04 0 .05 7.67 2.14 15.85 3.23 24.04 3.21 8.19.02 16.37-1.07 24.04-3.21.01-.01-.01-.04 0-.05 11.74-20.54 45.08-39.85 90.76-40.87 56.43.39 95.49 20.26 108.02 41.35 12.6-14.8 23.76-30.86 33.18-47.97v-2.51c-33.61-30.62-104.37-29.17-156.37-29.17-44.48 0-93.49-53.62-93.49-95.04v-16.88h-.05c-.23-11.12-2.86-19.93-6.09-19.93zm0 96.59c22.42 0 40.6 18.18 40.6 40.6s-18.18 40.65-40.6 40.65-40.6-18.23-40.6-40.65c0-22.42 18.18-40.6 40.6-40.6zm0 7.64c-18.19 0-32.96 14.77-32.96 32.96S237.81 360 256 360s32.96-14.77 32.96-32.96-14.77-32.96-32.96-32.96zm0 6.14c14.81 0 26.82 12.01 26.82 26.82s-12.01 26.82-26.82 26.82-26.82-12.01-26.82-26.82 12.01-26.82 26.82-26.82zm-114.8 66.67c-10.19.07-21.6.36-30.5 1.66.43 4.42 1.51 18.63 7.11 29.76 9.11-2.56 18.36-3.9 27.62-3.9 41.28.94 71.48 34.35 78.26 74.47l.11 4.7c10.4 1.91 21.19 2.94 32.21 2.94 11.03 0 21.81-1.02 32.21-2.94l.11-4.7c6.78-40.12 36.98-73.53 78.26-74.47 9.26 0 18.51 1.34 27.62 3.9 5.6-11.13 6.68-25.34 7.11-29.76-8.9-1.3-20.32-1.58-30.5-1.66-18.76.42-35.19 4.17-48.61 9.67-12.54 16.03-29.16 30.03-49.58 33.07-.09.02-.17.04-.27.05-.05.01-.11.04-.16.05-5.24 1.07-10.63 1.6-16.19 1.6-5.55 0-10.95-.53-16.19-1.6-.05-.01-.11-.04-.16-.05-.1-.02-.17-.04-.27-.05-20.42-3.03-37.03-17.04-49.58-33.07-13.42-5.49-29.86-9.25-48.61-9.67z"] }; +var faGetPocket = { prefix: 'fab', iconName: 'get-pocket', icon: [448, 512, [], "f265", "M407.6 64h-367C18.5 64 0 82.5 0 104.6v135.2C0 364.5 99.7 464 224.2 464c124 0 223.8-99.5 223.8-224.2V104.6c0-22.4-17.7-40.6-40.4-40.6zm-162 268.5c-12.4 11.8-31.4 11.1-42.4 0C89.5 223.6 88.3 227.4 88.3 209.3c0-16.9 13.8-30.7 30.7-30.7 17 0 16.1 3.8 105.2 89.3 90.6-86.9 88.6-89.3 105.5-89.3 16.9 0 30.7 13.8 30.7 30.7 0 17.8-2.9 15.7-114.8 123.2z"] }; +var faGg = { prefix: 'fab', iconName: 'gg', icon: [512, 512, [], "f260", "M179.2 230.4l102.4 102.4-102.4 102.4L0 256 179.2 76.8l44.8 44.8-25.6 25.6-19.2-19.2-128 128 128 128 51.5-51.5-77.1-76.5 25.6-25.6zM332.8 76.8L230.4 179.2l102.4 102.4 25.6-25.6-77.1-76.5 51.5-51.5 128 128-128 128-19.2-19.2-25.6 25.6 44.8 44.8L512 256 332.8 76.8z"] }; +var faGgCircle = { prefix: 'fab', iconName: 'gg-circle', icon: [512, 512, [], "f261", "M257 8C120 8 9 119 9 256s111 248 248 248 248-111 248-248S394 8 257 8zm-49.5 374.8L81.8 257.1l125.7-125.7 35.2 35.4-24.2 24.2-11.1-11.1-77.2 77.2 77.2 77.2 26.6-26.6-53.1-52.9 24.4-24.4 77.2 77.2-75 75.2zm99-2.2l-35.2-35.2 24.1-24.4 11.1 11.1 77.2-77.2-77.2-77.2-26.5 26.5 53.1 52.9-24.4 24.4-77.2-77.2 75-75L432.2 255 306.5 380.6z"] }; +var faGit = { prefix: 'fab', iconName: 'git', icon: [448, 512, [], "f1d3", "M18.8 221.7c0 25.3 16.2 60 41.5 68.5v1c-18.8 8.3-24 50.6 1 65.8v1C34 367 16 384.3 16 414.2c0 51.5 48.8 65.8 91.5 65.8 52 0 90.7-18.7 90.7-76 0-70.5-101-44.5-101-82.8 0-13.5 7.2-18.7 19.7-21.3 41.5-7.7 67.5-40 67.5-82.2 0-7.3-1.5-14.2-4-21 6.7-1.5 13.2-3.3 19.7-5.5v-50.5c-17.2 6.8-35.7 11.8-54.5 11.8-53.8-31-126.8 1.3-126.8 69.2zm87.7 163.8c17 0 41.2 3 41.2 25 0 21.8-19.5 26.3-37.7 26.3-17.3 0-43.3-2.7-43.3-25.2.1-22.3 22.1-26.1 39.8-26.1zM103.3 256c-22 0-31.3-13-31.3-33.8 0-49.3 61-48.8 61-.5 0 20.3-8 34.3-29.7 34.3zM432 305.5v49c-13.3 7.3-30.5 9.8-45.5 9.8-53.5 0-59.8-42.2-59.8-85.7v-87.7h.5v-1c-7 0-7.3-1.6-24 1v-47.5h24c0-22.3.3-31-1.5-41.2h56.7c-2 13.8-1.5 27.5-1.5 41.2h51v47.5s-19.3-1-51-1V281c0 14.8 3.3 32.8 21.8 32.8 9.8 0 21.3-2.8 29.3-8.3zM286 68.7c0 18.7-14.5 36.2-33.8 36.2-19.8 0-34.5-17.2-34.5-36.2 0-19.3 14.5-36.7 34.5-36.7C272 32 286 50 286 68.7zm-6.2 74.5c-1.8 14.6-1.6 199.8 0 217.8h-55.5c1.6-18.1 1.8-203 0-217.8h55.5z"] }; +var faGitSquare = { prefix: 'fab', iconName: 'git-square', icon: [448, 512, [], "f1d2", "M140.1 348.5c12.1 0 29.5 2.1 29.5 17.9 0 15.5-13.9 18.8-27 18.8-12.3 0-30.9-2-30.9-18s15.7-18.7 28.4-18.7zm-24.7-116.6c0 14.8 6.6 24.1 22.3 24.1 15.5 0 21.2-10 21.2-24.5.1-34.4-43.5-34.8-43.5.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-241 93.7c-12.3 4.8-25.5 8.4-38.9 8.4-38.5-22.1-90.7.9-90.7 49.5 0 18 11.6 42.9 29.6 48.9v.7c-13.4 5.9-17.1 36.1.7 47v.7c-19.5 6.4-32.3 18.8-32.3 40.2 0 36.8 34.8 47 65.4 47 37.1 0 64.8-13.4 64.8-54.3 0-50.4-72.1-31.8-72.1-59.1 0-9.6 5.2-13.4 14.1-15.2 29.6-5.5 48.2-28.6 48.2-58.7 0-5.2-1.1-10.2-2.9-15 4.8-1.1 9.5-2.3 14.1-3.9v-36.2zm56.8 1.8h-39.6c1.3 10.6 1.1 142.6 0 155.5h39.6c-1.1-12.8-1.2-145.1 0-155.5zm4.5-53.3c0-13.4-10-26.2-24.1-26.2-14.3 0-24.6 12.5-24.6 26.2 0 13.6 10.5 25.9 24.6 25.9 13.7 0 24.1-12.5 24.1-25.9zm104.3 53.3h-36.4c0-9.8-.4-19.6 1.1-29.5h-40.5c1.3 7.3 1.1 13.6 1.1 29.5h-17.1v33.9c11.9-1.9 12.1-.7 17.1-.7v.7h-.4v62.7c0 31.1 4.5 61.2 42.7 61.2 10.7 0 23-1.8 32.5-7v-35c-5.7 3.9-13.9 5.9-20.9 5.9-13.2 0-15.5-12.9-15.5-23.4v-65.2c22.7 0 36.4.7 36.4.7v-33.8z"] }; +var faGithub = { prefix: 'fab', iconName: 'github', icon: [496, 512, [], "f09b", "M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"] }; +var faGithubAlt = { prefix: 'fab', iconName: 'github-alt', icon: [480, 512, [], "f113", "M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1zM480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2zm-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3zm-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1z"] }; +var faGithubSquare = { prefix: 'fab', iconName: 'github-square', icon: [448, 512, [], "f092", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z"] }; +var faGitkraken = { prefix: 'fab', iconName: 'gitkraken', icon: [592, 512, [], "f3a6", "M565.7 118.1c-2.3-6.1-9.3-9.2-15.3-6.6-5.7 2.4-8.5 8.9-6.3 14.6 10.9 29 16.9 60.5 16.9 93.3 0 134.6-100.3 245.7-230.2 262.7V358.4c7.9-1.5 15.5-3.6 23-6.2v104c106.7-25.9 185.9-122.1 185.9-236.8 0-91.8-50.8-171.8-125.8-213.3-5.7-3.2-13-.9-15.9 5-2.7 5.5-.6 12.2 4.7 15.1 67.9 37.6 113.9 110 113.9 193.2 0 93.3-57.9 173.1-139.8 205.4v-92.2c14.2-4.5 24.9-17.7 24.9-33.5 0-13.1-6.8-24.4-17.3-30.5 8.3-79.5 44.5-58.6 44.5-83.9V170c0-38-87.9-161.8-129-164.7-2.5-.2-5-.2-7.6 0C251.1 8.3 163.2 132 163.2 170v14.8c0 25.3 36.3 4.3 44.5 83.9-10.6 6.1-17.3 17.4-17.3 30.5 0 15.8 10.6 29 24.8 33.5v92.2c-81.9-32.2-139.8-112-139.8-205.4 0-83.1 46-155.5 113.9-193.2 5.4-3 7.4-9.6 4.7-15.1-2.9-5.9-10.1-8.2-15.9-5-75 41.5-125.8 121.5-125.8 213.3 0 114.7 79.2 210.8 185.9 236.8v-104c7.6 2.5 15.1 4.6 23 6.2v123.7C131.4 465.2 31 354.1 31 219.5c0-32.8 6-64.3 16.9-93.3 2.2-5.8-.6-12.2-6.3-14.6-6-2.6-13 .4-15.3 6.6C14.5 149.7 8 183.8 8 219.5c0 155.1 122.6 281.6 276.3 287.8V361.4c6.8.4 15 .5 23.4 0v145.8C461.4 501.1 584 374.6 584 219.5c0-35.7-6.5-69.8-18.3-101.4zM365.9 275.5c13 0 23.7 10.5 23.7 23.7 0 13.1-10.6 23.7-23.7 23.7-13 0-23.7-10.5-23.7-23.7 0-13.1 10.6-23.7 23.7-23.7zm-139.8 47.3c-13.2 0-23.7-10.7-23.7-23.7s10.5-23.7 23.7-23.7c13.1 0 23.7 10.6 23.7 23.7 0 13-10.5 23.7-23.7 23.7z"] }; +var faGitlab = { prefix: 'fab', iconName: 'gitlab', icon: [512, 512, [], "f296", "M29.782 199.732L256 493.714 8.074 309.699c-6.856-5.142-9.712-13.996-7.141-21.993l28.849-87.974zm75.405-174.806c-3.142-8.854-15.709-8.854-18.851 0L29.782 199.732h131.961L105.187 24.926zm56.556 174.806L256 493.714l94.257-293.982H161.743zm349.324 87.974l-28.849-87.974L256 493.714l247.926-184.015c6.855-5.142 9.711-13.996 7.141-21.993zm-85.404-262.78c-3.142-8.854-15.709-8.854-18.851 0l-56.555 174.806h131.961L425.663 24.926z"] }; +var faGitter = { prefix: 'fab', iconName: 'gitter', icon: [384, 512, [], "f426", "M66.4 322.5H16V0h50.4v322.5zM166.9 76.1h-50.4V512h50.4V76.1zm100.6 0h-50.4V512h50.4V76.1zM368 76h-50.4v247H368V76z"] }; +var faGlide = { prefix: 'fab', iconName: 'glide', icon: [448, 512, [], "f2a5", "M252.8 148.6c0 8.8-1.6 17.7-3.4 26.4-5.8 27.8-11.6 55.8-17.3 83.6-1.4 6.3-8.3 4.9-13.7 4.9-23.8 0-30.5-26-30.5-45.5 0-29.3 11.2-68.1 38.5-83.1 4.3-2.5 9.2-4.2 14.1-4.2 11.4 0 12.3 8.3 12.3 17.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 187c0-5.1-20.8-37.7-25.5-39.5-2.2-.9-7.2-2.3-9.6-2.3-23.1 0-38.7 10.5-58.2 21.5l-.5-.5c4.3-29.4 14.6-57.2 14.6-87.4 0-44.6-23.8-62.7-67.5-62.7-71.7 0-108 70.8-108 123.5 0 54.7 32 85 86.3 85 7.5 0 6.9-.6 6.9 2.3-10.5 80.3-56.5 82.9-56.5 58.9 0-24.4 28-36.5 28.3-38-.2-7.6-29.3-17.2-36.7-17.2-21.1 0-32.7 33-32.7 50.6 0 32.3 20.4 54.7 53.3 54.7 48.2 0 83.4-49.7 94.3-91.7 9.4-37.7 7-39.4 12.3-42.1 20-10.1 35.8-16.8 58.4-16.8 11.1 0 19 2.3 36.7 5.2 1.8.1 4.1-1.7 4.1-3.5z"] }; +var faGlideG = { prefix: 'fab', iconName: 'glide-g', icon: [448, 512, [], "f2a6", "M407.1 211.2c-3.5-1.4-11.6-3.8-15.4-3.8-37.1 0-62.2 16.8-93.5 34.5l-.9-.9c7-47.3 23.5-91.9 23.5-140.4C320.8 29.1 282.6 0 212.4 0 97.3 0 39 113.7 39 198.4 39 286.3 90.3 335 177.6 335c12 0 11-1 11 3.8-16.9 128.9-90.8 133.1-90.8 94.6 0-39.2 45-58.6 45.5-61-.3-12.2-47-27.6-58.9-27.6-33.9.1-52.4 51.2-52.4 79.3C32 476 64.8 512 117.5 512c77.4 0 134-77.8 151.4-145.4 15.1-60.5 11.2-63.3 19.7-67.6 32.2-16.2 57.5-27 93.8-27 17.8 0 30.5 3.7 58.9 8.4 2.9 0 6.7-2.9 6.7-5.8 0-8-33.4-60.5-40.9-63.4zm-175.3-84.4c-9.3 44.7-18.6 89.6-27.8 134.3-2.3 10.2-13.3 7.8-22 7.8-38.3 0-49-41.8-49-73.1 0-47 18-109.3 61.8-133.4 7-4.1 14.8-6.7 22.6-6.7 18.6 0 20 13.3 20 28.7-.1 14.3-2.7 28.5-5.6 42.4z"] }; +var faGofore = { prefix: 'fab', iconName: 'gofore', icon: [400, 512, [], "f3a7", "M324 319.8h-13.2v34.7c-24.5 23.1-56.3 35.8-89.9 35.8-73.2 0-132.4-60.2-132.4-134.4 0-74.1 59.2-134.4 132.4-134.4 35.3 0 68.6 14 93.6 39.4l62.3-63.3C335 55.3 279.7 32 220.7 32 98 32 0 132.6 0 256c0 122.5 97 224 220.7 224 63.2 0 124.5-26.2 171-82.5-2-27.6-13.4-77.7-67.7-77.7zm-12.1-112.5H205.6v89H324c33.5 0 60.5 15.1 76 41.8v-30.6c0-65.2-40.4-100.2-88.1-100.2z"] }; +var faGoodreads = { prefix: 'fab', iconName: 'goodreads', icon: [448, 512, [], "f3a8", "M299.9 191.2c5.1 37.3-4.7 79-35.9 100.7-22.3 15.5-52.8 14.1-70.8 5.7-37.1-17.3-49.5-58.6-46.8-97.2 4.3-60.9 40.9-87.9 75.3-87.5 46.9-.2 71.8 31.8 78.2 78.3zM448 88v336c0 30.9-25.1 56-56 56H56c-30.9 0-56-25.1-56-56V88c0-30.9 25.1-56 56-56h336c30.9 0 56 25.1 56 56zM330 313.2s-.1-34-.1-217.3h-29v40.3c-.8.3-1.2-.5-1.6-1.2-9.6-20.7-35.9-46.3-76-46-51.9.4-87.2 31.2-100.6 77.8-4.3 14.9-5.8 30.1-5.5 45.6 1.7 77.9 45.1 117.8 112.4 115.2 28.9-1.1 54.5-17 69-45.2.5-1 1.1-1.9 1.7-2.9.2.1.4.1.6.2.3 3.8.2 30.7.1 34.5-.2 14.8-2 29.5-7.2 43.5-7.8 21-22.3 34.7-44.5 39.5-17.8 3.9-35.6 3.8-53.2-1.2-21.5-6.1-36.5-19-41.1-41.8-.3-1.6-1.3-1.3-2.3-1.3h-26.8c.8 10.6 3.2 20.3 8.5 29.2 24.2 40.5 82.7 48.5 128.2 37.4 49.9-12.3 67.3-54.9 67.4-106.3z"] }; +var faGoodreadsG = { prefix: 'fab', iconName: 'goodreads-g', icon: [384, 512, [], "f3a9", "M42.6 403.3h2.8c12.7 0 25.5 0 38.2.1 1.6 0 3.1-.4 3.6 2.1 7.1 34.9 30 54.6 62.9 63.9 26.9 7.6 54.1 7.8 81.3 1.8 33.8-7.4 56-28.3 68-60.4 8-21.5 10.7-43.8 11-66.5.1-5.8.3-47-.2-52.8l-.9-.3c-.8 1.5-1.7 2.9-2.5 4.4-22.1 43.1-61.3 67.4-105.4 69.1-103 4-169.4-57-172-176.2-.5-23.7 1.8-46.9 8.3-69.7C58.3 47.7 112.3.6 191.6 0c61.3-.4 101.5 38.7 116.2 70.3.5 1.1 1.3 2.3 2.4 1.9V10.6h44.3c0 280.3.1 332.2.1 332.2-.1 78.5-26.7 143.7-103 162.2-69.5 16.9-159 4.8-196-57.2-8-13.5-11.8-28.3-13-44.5zM188.9 36.5c-52.5-.5-108.5 40.7-115 133.8-4.1 59 14.8 122.2 71.5 148.6 27.6 12.9 74.3 15 108.3-8.7 47.6-33.2 62.7-97 54.8-154-9.7-71.1-47.8-120-119.6-119.7z"] }; +var faGoogle = { prefix: 'fab', iconName: 'google', icon: [488, 512, [], "f1a0", "M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z"] }; +var faGoogleDrive = { prefix: 'fab', iconName: 'google-drive', icon: [512, 512, [], "f3aa", "M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z"] }; +var faGooglePlay = { prefix: 'fab', iconName: 'google-play', icon: [512, 512, [], "f3ab", "M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z"] }; +var faGooglePlus = { prefix: 'fab', iconName: 'google-plus', icon: [496, 512, [], "f2b3", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm-70.7 372c-68.8 0-124-55.5-124-124s55.2-124 124-124c31.3 0 60.1 11 83 32.3l-33.6 32.6c-13.2-12.9-31.3-19.1-49.4-19.1-42.9 0-77.2 35.5-77.2 78.1s34.2 78.1 77.2 78.1c32.6 0 64.9-19.1 70.1-53.3h-70.1v-42.6h116.9c1.3 6.8 1.9 13.6 1.9 20.7 0 70.8-47.5 121.2-118.8 121.2zm230.2-106.2v35.5H372v-35.5h-35.5v-35.5H372v-35.5h35.5v35.5h35.2v35.5h-35.2z"] }; +var faGooglePlusG = { prefix: 'fab', iconName: 'google-plus-g', icon: [640, 512, [], "f0d5", "M386.061 228.496c1.834 9.692 3.143 19.384 3.143 31.956C389.204 370.205 315.599 448 204.8 448c-106.084 0-192-85.915-192-192s85.916-192 192-192c51.864 0 95.083 18.859 128.611 50.292l-52.126 50.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484 0-118.92 54.221-118.92 121.277 0 67.056 53.436 121.277 118.92 121.277 75.961 0 104.513-54.745 108.965-82.773H204.8v-66.009h181.261zm185.406 6.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001h-55.733z"] }; +var faGooglePlusSquare = { prefix: 'fab', iconName: 'google-plus-square', icon: [448, 512, [], "f0d4", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM164 356c-55.3 0-100-44.7-100-100s44.7-100 100-100c27 0 49.5 9.8 67 26.2l-27.1 26.1c-7.4-7.1-20.3-15.4-39.8-15.4-34.1 0-61.9 28.2-61.9 63.2 0 34.9 27.8 63.2 61.9 63.2 39.6 0 54.4-28.5 56.8-43.1H164v-34.4h94.4c1 5 1.6 10.1 1.6 16.6 0 57.1-38.3 97.6-96 97.6zm220-81.8h-29v29h-29.2v-29h-29V245h29v-29H355v29h29v29.2z"] }; +var faGoogleWallet = { prefix: 'fab', iconName: 'google-wallet', icon: [448, 512, [], "f1ee", "M156.8 126.8c37.6 60.6 64.2 113.1 84.3 162.5-8.3 33.8-18.8 66.5-31.3 98.3-13.2-52.3-26.5-101.3-56-148.5 6.5-36.4 2.3-73.6 3-112.3zM109.3 200H16.1c-6.5 0-10.5 7.5-6.5 12.7C51.8 267 81.3 330.5 101.3 400h103.5c-16.2-69.7-38.7-133.7-82.5-193.5-3-4-8-6.5-13-6.5zm47.8-88c68.5 108 130 234.5 138.2 368H409c-12-138-68.4-265-143.2-368H157.1zm251.8-68.5c-1.8-6.8-8.2-11.5-15.2-11.5h-88.3c-5.3 0-9 5-7.8 10.3 13.2 46.5 22.3 95.5 26.5 146 48.2 86.2 79.7 178.3 90.6 270.8 15.8-60.5 25.3-133.5 25.3-203 0-73.6-12.1-145.1-31.1-212.6z"] }; +var faGratipay = { prefix: 'fab', iconName: 'gratipay', icon: [496, 512, [], "f184", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm114.6 226.4l-113 152.7-112.7-152.7c-8.7-11.9-19.1-50.4 13.6-72 28.1-18.1 54.6-4.2 68.5 11.9 15.9 17.9 46.6 16.9 61.7 0 13.9-16.1 40.4-30 68.1-11.9 32.9 21.6 22.6 60 13.8 72z"] }; +var faGrav = { prefix: 'fab', iconName: 'grav', icon: [512, 512, [], "f2d6", "M301.1 212c4.4 4.4 4.4 11.9 0 16.3l-9.7 9.7c-4.4 4.7-11.9 4.7-16.6 0l-10.5-10.5c-4.4-4.7-4.4-11.9 0-16.6l9.7-9.7c4.4-4.4 11.9-4.4 16.6 0l10.5 10.8zm-30.2-19.7c3-3 3-7.8 0-10.5-2.8-3-7.5-3-10.5 0-2.8 2.8-2.8 7.5 0 10.5 3.1 2.8 7.8 2.8 10.5 0zm-26 5.3c-3 2.8-3 7.5 0 10.2 2.8 3 7.5 3 10.5 0 2.8-2.8 2.8-7.5 0-10.2-3-3-7.7-3-10.5 0zm72.5-13.3c-19.9-14.4-33.8-43.2-11.9-68.1 21.6-24.9 40.7-17.2 59.8.8 11.9 11.3 29.3 24.9 17.2 48.2-12.5 23.5-45.1 33.2-65.1 19.1zm47.7-44.5c-8.9-10-23.3 6.9-15.5 16.1 7.4 9 32.1 2.4 15.5-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-66.2 42.6c2.5-16.1-20.2-16.6-25.2-25.7-13.6-24.1-27.7-36.8-54.5-30.4 11.6-8 23.5-6.1 23.5-6.1.3-6.4 0-13-9.4-24.9 3.9-12.5.3-22.4.3-22.4 15.5-8.6 26.8-24.4 29.1-43.2 3.6-31-18.8-59.2-49.8-62.8-22.1-2.5-43.7 7.7-54.3 25.7-23.2 40.1 1.4 70.9 22.4 81.4-14.4-1.4-34.3-11.9-40.1-34.3-6.6-25.7 2.8-49.8 8.9-61.4 0 0-4.4-5.8-8-8.9 0 0-13.8 0-24.6 5.3 11.9-15.2 25.2-14.4 25.2-14.4 0-6.4-.6-14.9-3.6-21.6-5.4-11-23.8-12.9-31.7 2.8.1-.2.3-.4.4-.5-5 11.9-1.1 55.9 16.9 87.2-2.5 1.4-9.1 6.1-13 10-21.6 9.7-56.2 60.3-56.2 60.3-28.2 10.8-77.2 50.9-70.6 79.7.3 3 1.4 5.5 3 7.5-2.8 2.2-5.5 5-8.3 8.3-11.9 13.8-5.3 35.2 17.7 24.4 15.8-7.2 29.6-20.2 36.3-30.4 0 0-5.5-5-16.3-4.4 27.7-6.6 34.3-9.4 46.2-9.1 8 3.9 8-34.3 8-34.3 0-14.7-2.2-31-11.1-41.5 12.5 12.2 29.1 32.7 28 60.6-.8 18.3-15.2 23-15.2 23-9.1 16.6-43.2 65.9-30.4 106 0 0-9.7-14.9-10.2-22.1-17.4 19.4-46.5 52.3-24.6 64.5 26.6 14.7 108.8-88.6 126.2-142.3 34.6-20.8 55.4-47.3 63.9-65 22 43.5 95.3 94.5 101.1 59z"] }; +var faGripfire = { prefix: 'fab', iconName: 'gripfire', icon: [384, 512, [], "f3ac", "M171.8 503.8c0-5.3 4.8-12.2 4.8-22.3 0-15.2-13-39.9-78.1-86.6C64.2 365.8 32 336.4 32 286.6 32 171.9 179.1 110.1 179.1 18c0-3.3-.2-6.7-.6-10 5.1 2.4 39.1 43.3 39.1 90.4 0 80.5-105.1 129.2-105.1 203 0 26.9 16.6 47.2 32.6 69.5 22.5 30.2 44.2 56.9 44.2 86.5-.1 14.5-4.4 29.7-17.5 46.4zm146-241.4c1.5 8.4 2.2 16.6 2.2 24.6 0 51.8-29.4 97.5-67.3 136.8-1 1-2.2 2.4-3.2 2.4-3.6 0-35.5-41.6-35.5-53.2 0 0 41.8-55.7 41.8-96.9 0-10.8-2.7-21.7-9.1-33.4-1.5 32.3-55.7 87.7-58.1 87.7-2.7 0-17.9-22-17.9-42.1 0-5.3 1-10.7 3.2-15.8 2.4-5.5 56.6-72 56.6-116.7 0-6.2-1-12-3.4-17.1l-4-7.2c16.7 6.5 82.6 64.1 94.7 130.9"] }; +var faGrunt = { prefix: 'fab', iconName: 'grunt', icon: [384, 512, [], "f3ad", "M61.3 189.3c-1.1 10 5.2 19.1 5.2 19.1.7-7.5 2.2-12.8 4-16.6.4 10.3 3.2 23.5 12.8 34.1 6.9 7.6 35.6 23.3 54.9 6.1 1 2.4 2.1 5.3 3 8.5 2.9 10.3-2.7 25.3-2.7 25.3s15.1-17.1 13.9-32.5c10.8-.5 21.4-8.4 21.1-19.5 0 0-18.9 10.4-35.5-8.8-9.7-11.2-40.9-42-83.1-31.8 4.3 1 8.9 2.4 13.5 4.1h-.1c-4.2 2-6.5 7.1-7 12zm28.3-1.8c19.5 11 37.4 25.7 44.9 37-5.7 3.3-21.7 10.4-38-1.7-10.3-7.6-9.8-26.2-6.9-35.3zm79.2 233.7c2.2 2.3 1.5 5.3.9 6.8-1.1 2.7-5.5 11.6-13 19.8-2.7 2.9-6.6 4.6-11 4.6-4.3 0-8.7-1.6-11.8-4.3-2.3-2.1-10.2-9.5-13.7-18.6-1.3-3.4-1-6.1.9-8.1 1.3-1.3 4-2.9 9.5-2.9H160c4.1 0 7 .9 8.8 2.7zm62.9-187.9c-1.2 15.5 13.9 32.5 13.9 32.5s-5.6-15-2.7-25.3c.9-3.2 2-6 3-8.5 19.3 17.3 48 1.5 54.8-6.1 9.6-10.6 12.3-23.8 12.8-34.1 1.8 3.8 3.4 9.1 4 16.6 0 0 6.4-9.1 5.2-19.1-.6-5-2.9-10-7-11.8h-.1c4.6-1.8 9.2-3.2 13.5-4.1-42.3-10.2-73.4 20.6-83.1 31.8-16.7 19.2-35.5 8.8-35.5 8.8-.2 10.9 10.4 18.9 21.2 19.3zm17.8-8.8c7.5-11.4 25.4-26 44.9-37 3 9.1 3.4 27.7-7 35.4-16.3 12.1-32.2 5-37.9 1.6-.1.1 0 0 0 0zM263 421.4c1.9 1.9 2.2 4.6.9 7.9-3.5 8.9-11.4 16.1-13.7 18.1-3.1 2.6-7.4 4.2-11.8 4.2s-8.3-1.6-11-4.5c-7.5-8-12-16.7-13-19.3-.6-1.5-1.3-4.4.9-6.7 1.7-1.8 4.7-2.7 8.9-2.7h29.4c5.4.1 8.1 1.7 9.4 3zm-98.3-251.5c9.9 6 18.8 8.1 27.3 8.3 8.5-.2 17.4-2.3 27.3-8.3 0 0-14.5 17.7-27.2 17.8h-.2c-12.7-.2-27.2-17.8-27.2-17.8zm184.5 147.4c-2.4 17.9-13 33.8-24.6 43.7-3.1-22.7-3.7-55.5-3.7-62.4 0-14.7 9.5-24.5 12.2-26.1 2.5-1.5 5.4-3 8.3-4.6 18-9.6 40.4-21.6 40.4-43.7 0-16.2-9.3-23.2-15.4-27.8-.8-.6-1.5-1.1-2.2-1.7-2.1-1.7-3.7-3-4.3-4.4-4.4-9.8-3.6-34.2-1.7-37.6.6-.6 16.7-20.9 11.8-39.2-2-7.4-6.9-13.3-14.1-17-5.3-2.7-11.9-4.2-19.5-4.5-.1-2-.5-3.9-.9-5.9-.6-2.6-1.1-5.3-.9-8.1.4-4.7.8-9 2.2-11.3 8.4-13.3 28.8-17.6 29-17.6l12.3-2.4-8.1-9.5c-.1-.2-17.3-17.5-46.3-17.5-7.9 0-16 1.3-24.1 3.9-24.2 7.8-42.9 30.5-49.4 39.3-3.1-1-6.3-1.9-9.6-2.7-4.2-15.8 9-38.5 9-38.5s-13.6-3-33.7 15.2c-2.6-6.5-8.1-20.5-1.8-37.2C184.6 10.1 177.2 26 175 40.4c-7.6-5.4-6.7-23.1-7.2-27.6-7.5.9-29.2 21.9-28.2 48.3-2 .5-3.9 1.1-5.9 1.7-6.5-8.8-25.1-31.5-49.4-39.3-7.9-2.2-16-3.5-23.9-3.5-29 0-46.1 17.3-46.3 17.5L6 46.9l12.3 2.4c.2 0 20.6 4.3 29 17.6 1.4 2.2 1.8 6.6 2.2 11.3.2 2.8-.4 5.5-.9 8.1-.4 1.9-.8 3.9-.9 5.9-7.7.3-14.2 1.8-19.5 4.5-7.2 3.7-12.1 9.6-14.1 17-5 18.2 11.2 38.5 11.8 39.2 1.9 3.4 2.7 27.8-1.7 37.6-.6 1.4-2.2 2.7-4.3 4.4-.7.5-1.4 1.1-2.2 1.7-6.1 4.6-15.4 11.7-15.4 27.8 0 22.1 22.4 34.1 40.4 43.7 3 1.6 5.8 3.1 8.3 4.6 2.7 1.6 12.2 11.4 12.2 26.1 0 6.9-.6 39.7-3.7 62.4-11.6-9.9-22.2-25.9-24.6-43.8 0 0-29.2 22.6-20.6 70.8 5.2 29.5 23.2 46.1 47 54.7 8.8 19.1 29.4 45.7 67.3 49.6C143 504.3 163 512 192.2 512h.2c29.1 0 49.1-7.7 63.6-19.5 37.9-3.9 58.5-30.5 67.3-49.6 23.8-8.7 41.7-25.2 47-54.7 8.2-48.4-21.1-70.9-21.1-70.9zM305.7 37.7c5.6-1.8 11.6-2.7 17.7-2.7 11 0 19.9 3 24.7 5-3.1 1.4-6.4 3.2-9.7 5.3-2.4-.4-5.6-.8-9.2-.8-10.5 0-20.5 3.1-28.7 8.9-12.3 8.7-18 16.9-20.7 22.4-2.2-1.3-4.5-2.5-7.1-3.7-1.6-.8-3.1-1.5-4.7-2.2 6.1-9.1 19.9-26.5 37.7-32.2zm21 18.2c-.8 1-1.6 2.1-2.3 3.2-3.3 5.2-3.9 11.6-4.4 17.8-.5 6.4-1.1 12.5-4.4 17-4.2.8-8.1 1.7-11.5 2.7-2.3-3.1-5.6-7-10.5-11.2 1.4-4.8 5.5-16.1 13.5-22.5 5.6-4.3 12.2-6.7 19.6-7zM45.6 45.3c-3.3-2.2-6.6-4-9.7-5.3 4.8-2 13.7-5 24.7-5 6.1 0 12 .9 17.7 2.7 17.8 5.8 31.6 23.2 37.7 32.1-1.6.7-3.2 1.4-4.8 2.2-2.5 1.2-4.9 2.5-7.1 3.7-2.6-5.4-8.3-13.7-20.7-22.4-8.3-5.8-18.2-8.9-28.8-8.9-3.4.1-6.6.5-9 .9zm44.7 40.1c-4.9 4.2-8.3 8-10.5 11.2-3.4-.9-7.3-1.9-11.5-2.7C65 89.5 64.5 83.4 64 77c-.5-6.2-1.1-12.6-4.4-17.8-.7-1.1-1.5-2.2-2.3-3.2 7.4.3 14 2.6 19.5 7 8 6.3 12.1 17.6 13.5 22.4zM58.1 259.9c-2.7-1.6-5.6-3.1-8.4-4.6-14.9-8-30.2-16.3-30.2-30.5 0-11.1 4.3-14.6 8.9-18.2l.5-.4c.7-.6 1.4-1.2 2.2-1.8-.9 7.2-1.9 13.3-2.7 14.9 0 0 12.1-15 15.7-44.3 1.4-11.5-1.1-34.3-5.1-43 .2 4.9 0 9.8-.3 14.4-.4-.8-.8-1.6-1.3-2.2-3.2-4-11.8-17.5-9.4-26.6.9-3.5 3.1-6 6.7-7.8 3.8-1.9 8.8-2.9 15.1-2.9 12.3 0 25.9 3.7 32.9 6 25.1 8 55.4 30.9 64.1 37.7.2.2.4.3.4.3l5.6 3.9-3.5-5.8c-.2-.3-19.1-31.4-53.2-46.5 2-2.9 7.4-8.1 21.6-15.1 21.4-10.5 46.5-15.8 74.3-15.8 27.9 0 52.9 5.3 74.3 15.8 14.2 6.9 19.6 12.2 21.6 15.1-34 15.1-52.9 46.2-53.1 46.5l-3.5 5.8 5.6-3.9s.2-.1.4-.3c8.7-6.8 39-29.8 64.1-37.7 7-2.2 20.6-6 32.9-6 6.3 0 11.3 1 15.1 2.9 3.5 1.8 5.7 4.4 6.7 7.8 2.5 9.1-6.1 22.6-9.4 26.6-.5.6-.9 1.3-1.3 2.2-.3-4.6-.5-9.5-.3-14.4-4 8.8-6.5 31.5-5.1 43 3.6 29.3 15.7 44.3 15.7 44.3-.8-1.6-1.8-7.7-2.7-14.9.7.6 1.5 1.2 2.2 1.8l.5.4c4.6 3.7 8.9 7.1 8.9 18.2 0 14.2-15.4 22.5-30.2 30.5-2.9 1.5-5.7 3.1-8.4 4.6-8.7 5-18 16.7-19.1 34.2-.9 14.6.9 49.9 3.4 75.9-12.4 4.8-26.7 6.4-39.7 6.8-2-4.1-3.9-8.5-5.5-13.1-.7-2-19.6-51.1-26.4-62.2 5.5 39 17.5 73.7 23.5 89.6-3.5-.5-7.3-.7-11.7-.7h-117c-4.4 0-8.3.3-11.7.7 6-15.9 18.1-50.6 23.5-89.6-6.8 11.2-25.7 60.3-26.4 62.2-1.6 4.6-3.5 9-5.5 13.1-13-.4-27.2-2-39.7-6.8 2.5-26 4.3-61.2 3.4-75.9-.9-17.4-10.3-29.2-19-34.2zM34.8 404.6c-12.1-20-8.7-54.1-3.7-59.1 10.9 34.4 47.2 44.3 74.4 45.4-2.7 4.2-5.2 7.6-7 10l-1.4 1.4c-7.2 7.8-8.6 18.5-4.1 31.8-22.7-.1-46.3-9.8-58.2-29.5zm45.7 43.5c6 1.1 12.2 1.9 18.6 2.4 3.5 8 7.4 15.9 12.3 23.1-14.4-5.9-24.4-16-30.9-25.5zM192 498.2c-60.6-.1-78.3-45.8-84.9-64.7-3.7-10.5-3.4-18.2.9-23.1 2.9-3.3 9.5-7.2 24.6-7.2h118.8c15.1 0 21.8 3.9 24.6 7.2 4.2 4.8 4.5 12.6.9 23.1-6.6 18.8-24.3 64.6-84.9 64.7zm80.6-24.6c4.9-7.2 8.8-15.1 12.3-23.1 6.4-.5 12.6-1.3 18.6-2.4-6.5 9.5-16.5 19.6-30.9 25.5zm76.6-69c-12 19.7-35.6 29.3-58.1 29.7 4.5-13.3 3.1-24.1-4.1-31.8-.4-.5-.9-1-1.4-1.5-1.8-2.4-4.3-5.8-7-10 27.2-1.2 63.5-11 74.4-45.4 5 5 8.4 39.1-3.8 59z"] }; +var faGulp = { prefix: 'fab', iconName: 'gulp', icon: [256, 512, [], "f3ae", "M209.8 391.1l-14.1 24.6-4.6 80.2c0 8.9-28.3 16.1-63.1 16.1s-63.1-7.2-63.1-16.1l-5.8-79.4-14.9-25.4c41.2 17.3 126 16.7 165.6 0zm-196-253.3l13.6 125.5c5.9-20 20.8-47 40-55.2 6.3-2.7 12.7-2.7 18.7.9 5.2 3 9.6 9.3 10.1 11.8 1.2 6.5-2 9.1-4.5 9.1-3 0-5.3-4.6-6.8-7.3-4.1-7.3-10.3-7.6-16.9-2.8-6.9 5-12.9 13.4-17.1 20.7-5.1 8.8-9.4 18.5-12 28.2-1.5 5.6-2.9 14.6-.6 19.9 1 2.2 2.5 3.6 4.9 3.6 5 0 12.3-6.6 15.8-10.1 4.5-4.5 10.3-11.5 12.5-16l5.2-15.5c2.6-6.8 9.9-5.6 9.9 0 0 10.2-3.7 13.6-10 34.7-5.8 19.5-7.6 25.8-7.6 25.8-.7 2.8-3.4 7.5-6.3 7.5-1.2 0-2.1-.4-2.6-1.2-1-1.4-.9-5.3-.8-6.3.2-3.2 6.3-22.2 7.3-25.2-2 2.2-4.1 4.4-6.4 6.6-5.4 5.1-14.1 11.8-21.5 11.8-3.4 0-5.6-.9-7.7-2.4l7.6 79.6c2 5 39.2 17.1 88.2 17.1 49.1 0 86.3-12.2 88.2-17.1l10.9-94.6c-5.7 5.2-12.3 11.6-19.6 14.8-5.4 2.3-17.4 3.8-17.4-5.7 0-5.2 9.1-14.8 14.4-21.5 1.4-1.7 4.7-5.9 4.7-8.1 0-2.9-6-2.2-11.7 2.5-3.2 2.7-6.2 6.3-8.7 9.7-4.3 6-6.6 11.2-8.5 15.5-6.2 14.2-4.1 8.6-9.1 22-5 13.3-4.2 11.8-5.2 14-.9 1.9-2.2 3.5-4 4.5-1.9 1-4.5.9-6.1-.3-.9-.6-1.3-1.9-1.3-3.7 0-.9.1-1.8.3-2.7 1.5-6.1 7.8-18.1 15-34.3 1.6-3.7 1-2.6.8-2.3-6.2 6-10.9 8.9-14.4 10.5-5.8 2.6-13 2.6-14.5-4.1-.1-.4-.1-.8-.2-1.2-11.8 9.2-24.3 11.7-20-8.1-4.6 8.2-12.6 14.9-22.4 14.9-4.1 0-7.1-1.4-8.6-5.1-2.3-5.5 1.3-14.9 4.6-23.8 1.7-4.5 4-9.9 7.1-16.2 1.6-3.4 4.2-5.4 7.6-4.5.6.2 1.1.4 1.6.7 2.6 1.8 1.6 4.5.3 7.2-3.8 7.5-7.1 13-9.3 20.8-.9 3.3-2 9 1.5 9 2.4 0 4.7-.8 6.9-2.4 4.6-3.4 8.3-8.5 11.1-13.5 2-3.6 4.4-8.3 5.6-12.3.5-1.7 1.1-3.3 1.8-4.8 1.1-2.5 2.6-5.1 5.2-5.1 1.3 0 2.4.5 3.2 1.5 1.7 2.2 1.3 4.5.4 6.9-2 5.6-4.7 10.6-6.9 16.7-1.3 3.5-2.7 8-2.7 11.7 0 3.4 3.7 2.6 6.8 1.2 2.4-1.1 4.8-2.8 6.8-4.5 1.2-4.9.9-3.8 26.4-68.2 1.3-3.3 3.7-4.7 6.1-4.7 1.2 0 2.2.4 3.2 1.1 1.7 1.3 1.7 4.1 1 6.2-.7 1.9-.6 1.3-4.5 10.5-5.2 12.1-8.6 20.8-13.2 31.9-1.9 4.6-7.7 18.9-8.7 22.3-.6 2.2-1.3 5.8 1 5.8 5.4 0 19.3-13.1 23.1-17 .2-.3.5-.4.9-.6.6-1.9 1.2-3.7 1.7-5.5 1.4-3.8 2.7-8.2 5.3-11.3.8-1 1.7-1.6 2.7-1.6 2.8 0 4.2 1.2 4.2 4 0 1.1-.7 5.1-1.1 6.2 1.4-1.5 2.9-3 4.5-4.5 15-13.9 25.7-6.8 25.7.2 0 7.4-8.9 17.7-13.8 23.4-1.6 1.9-4.9 5.4-5 6.4 0 1.3.9 1.8 2.2 1.8 2 0 6.4-3.5 8-4.7 5-3.9 11.8-9.9 16.6-14.1l14.8-136.8c-30.5 17.1-197.6 17.2-228.3.2zm229.7-8.5c0 21-231.2 21-231.2 0 0-8.8 51.8-15.9 115.6-15.9 9 0 17.8.1 26.3.4l12.6-48.7L228.1.6c1.4-1.4 5.8-.2 9.9 3.5s6.6 7.9 5.3 9.3l-.1.1L185.9 74l-10 40.7c39.9 2.6 67.6 8.1 67.6 14.6zm-69.4 4.6c0-.8-.9-1.5-2.5-2.1l-.2.8c0 1.3-5 2.4-11.1 2.4s-11.1-1.1-11.1-2.4c0-.1 0-.2.1-.3l.2-.7c-1.8.6-3 1.4-3 2.3 0 2.1 6.2 3.7 13.7 3.7 7.7.1 13.9-1.6 13.9-3.7z"] }; +var faHackerNews = { prefix: 'fab', iconName: 'hacker-news', icon: [448, 512, [], "f1d4", "M0 32v448h448V32H0zm21.2 197.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z"] }; +var faHackerNewsSquare = { prefix: 'fab', iconName: 'hacker-news-square', icon: [448, 512, [], "f3af", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM21.2 229.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z"] }; +var faHips = { prefix: 'fab', iconName: 'hips', icon: [640, 512, [], "f452", "M0 80.2c0-1.8.9-2.7 2.7-2.7h40.9c1.9 0 2.8.9 2.8 2.7v81.2c15.2-7.7 31.7-11.5 49.8-11.4 24 .1 44.2 6.2 60.3 18 18.7 13.5 28 31.9 28 55.3v136.1c0 1.9-.9 2.8-2.7 2.8h-27.3c-9.1 0-16.4-7.3-16.4-16.3V223.3c0-.9 2.7-27-45.8-27-48.6 0-45.8 26.2-45.8 27v136.1c0 1.9-.9 2.8-2.8 2.8h-41c-1.8 0-2.7-.9-2.7-2.8V80.2zm497.7 221.5c13.7 10.2 34.1 19.1 58.4 19.1 23.3 0 32.8-4.5 36.5-13.6 3-7.9-.6-16.1-12.2-21.2l-53.6-23.5c-21.4-9.4-33.8-24-37.2-43.6-5.7-33.7 22.2-53.3 22.7-53.7 13.2-9.6 32-15.4 58.5-15.4 19 0 37.4 3.3 55.1 9.9 1.3.5 1.9 1.3 1.9 2.6V207c0 2.1-2.3 3.4-4 2.4-39.7-20.7-76.6-12.3-84-6.8-6.6 4.9-6 12.5 2.6 16.1L600 244c16.5 7.1 28.1 18.4 34.9 34.1 5.5 12.6 6.6 25.6 3.1 39.1-9.6 36.9-44.9 45.5-45.6 45.8-10.5 3.1-23.6 4.3-36.3 4.3-16.6 0-32.6-2.7-48.2-8.2-9.7-3.4-14.6-10.3-14.6-20.7V304c0-2.1 2.3-3.7 4.4-2.3zM376.2 149.8c-31.7 0-104.2 20.1-104.2 103.5v183.5c0 .8.6 2.7 2.7 2.7h40.9c1.9 0 2.8-.9 2.8-2.7V348c16.5 12.7 35.8 19.1 57.7 19.1 60.5 0 108.7-48.5 108.7-108.7.1-60.3-48.2-108.6-108.6-108.6zm0 170.9c-17.2 0-31.9-6.1-44-18.2-12.2-12.2-18.2-26.8-18.2-44 0-34.5 27.6-62.2 62.2-62.2 34.5 0 62.2 27.6 62.2 62.2.1 34.3-27.3 62.2-62.2 62.2zm-124.6 38.7c0 1.9-.9 2.8-2.8 2.8h-40.9c-1.6 0-2.7-1.4-2.7-2.8V157.6c0-1.4 1.1-2.8 2.7-2.8h40.9c1.9 0 2.8.9 2.8 2.8v201.8M228.3 72.5c15.9 0 28.9 12.7 28.9 28.9 0 15.8-12.7 28.9-28.9 28.9s-28.9-13.3-28.9-28.9c.1-16 13-28.9 28.9-28.9"] }; +var faHireAHelper = { prefix: 'fab', iconName: 'hire-a-helper', icon: [512, 512, [], "f3b0", "M443.1 0H71.9C67.9 37.3 37.4 67.8 0 71.7v371.5c37.4 4.9 66 32.4 71.9 68.8h372.2c3-36.4 32.5-65.8 67.9-69.8V71.7c-36.4-5.9-65-35.3-68.9-71.7zm-37 404.9c-36.3 0-18.8-2-55.1-2-35.8 0-21 2-56.1 2-5.9 0-4.9-8.2 0-9.8 22.8-7.6 22.9-10.2 24.6-12.8 10.4-15.6 5.9-83 5.9-113 0-5.3-6.4-12.8-13.8-12.8H200.4c-7.4 0-13.8 7.5-13.8 12.8 0 30-4.5 97.4 5.9 113 1.7 2.5 1.8 5.2 24.6 12.8 4.9 1.6 6 9.8 0 9.8-35.1 0-20.3-2-56.1-2-36.3 0-18.8 2-55.1 2-7.9 0-5.8-10.8 0-10.8 10.2-3.4 13.5-3.5 21.7-13.8 7.7-12.9 7.9-44.4 7.9-127.8V151.3c0-22.2-12.2-28.3-28.6-32.4-8.8-2.2-4-11.8 1-11.8 36.5 0 20.6 2 57.1 2 32.7 0 16.5-2 49.2-2 3.3 0 8.5 8.3 1 10.8-4.9 1.6-27.6 3.7-27.6 39.3 0 45.6-.2 55.8 1 68.8 0 1.3 2.3 12.8 12.8 12.8h109.2c10.5 0 12.8-11.5 12.8-12.8 1.2-13 1-23.2 1-68.8 0-35.6-22.7-37.7-27.6-39.3-7.5-2.5-2.3-10.8 1-10.8 32.7 0 16.5 2 49.2 2 36.5 0 20.6-2 57.1-2 4.9 0 9.9 9.6 1 11.8-16.4 4.1-28.6 10.3-28.6 32.4v101.2c0 83.4.1 114.9 7.9 127.8 8.2 10.2 11.4 10.4 21.7 13.8 5.8 0 7.8 10.8 0 10.8z"] }; +var faHooli = { prefix: 'fab', iconName: 'hooli', icon: [640, 512, [], "f427", "M508.4 352h57.9V156.7L508.4 184v168zm73.7-110.5V352H640V241.5h-57.9zm-250.7-8.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.2-1.1-50.4 17.1c-1.9 1.9-3.7 3.9-5.3 6-38.2-29.6-72.5-46.5-102.1-61.1v-20.7l-22.5 10.6c-54.4-22.1-89-18.2-97.3.1 0 0-24.9 32.8 61.9 110.9v-31c-48.8-54.6-39-76.1-35.3-79.2 13.5-11.4 37.5-8 64.4 2.1L65.2 184v63.3c13.1 14.7 30.5 31.5 53.5 50.4l4.5 3.6v-29.8c0-6.9 1.7-18.2 10.8-18.2s10.6 6.9 10.6 15V317c18 12.2 37.3 22.1 57.7 29.6v-93.9c0-18.7-13.4-37.4-40.6-37.4-15.8-.1-30.5 8.2-38.5 21.9v-54.3c41.9 20.9 83.9 46.5 99.9 58.3-10.2 14.6-9.3 28.1-9.3 43.7 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.7-33.8 16.7-52.5 0-18.5 1.5-34.2-16.7-52.3zm-39.7 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm185.7-71.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.3-1.1-50.4 17.1c-18.2 18.2-16.8 33.9-16.8 52.6 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.8-33.8 16.8-52.5-.1-18.8 1.3-34.5-16.8-52.6zm-39.8 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm173.5-73c15.9 0 28.9-12.9 28.9-28.9s-12.9-24.5-28.9-24.5c-15.9 0-28.9 8.6-28.9 24.5s12.9 28.9 28.9 28.9zM144.5 352l38.3.8c-13.2-4.6-26-10.2-38.3-16.8v16zm-21.4 0v-28.6c-6.5-4.2-13-8.7-19.4-13.6-14.8-11.2-27.5-21.7-38.5-31.5V352h57.9zm59.7.8c36.5 12.5 69.9 14.2 94.7 7.2-19.9.2-45.8-2.6-75.3-13.3v5.3l-19.4.8z"] }; +var faHotjar = { prefix: 'fab', iconName: 'hotjar', icon: [448, 512, [], "f3b1", "M414.9 161.5C340.2 29 121.1 0 121.1 0S222.2 110.4 93 197.7C11.3 252.8-21 324.4 14 402.6c26.8 59.9 83.5 84.3 144.6 93.4-29.2-55.1-6.6-122.4-4.1-129.6 57.1 86.4 165 0 110.8-93.9 71 15.4 81.6 138.6 27.1 215.5 80.5-25.3 134.1-88.9 148.8-145.6 15.5-59.3 3.7-127.9-26.3-180.9z"] }; +var faHouzz = { prefix: 'fab', iconName: 'houzz', icon: [414, 512, [], "f27c", "M258.9 330.7H154.3V480H0V32h109.5v104.5l305.1 85.6V480H258.9V330.7z"] }; +var faHtml5 = { prefix: 'fab', iconName: 'html5', icon: [384, 512, [], "f13b", "M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z"] }; +var faHubspot = { prefix: 'fab', iconName: 'hubspot', icon: [512, 512, [], "f3b2", "M267.4 211.6c-25.1 23.7-40.8 57.3-40.8 94.6 0 29.3 9.7 56.3 26 78L203.1 434c-4.4-1.6-9.1-2.5-14-2.5-10.8 0-20.9 4.2-28.5 11.8-7.6 7.6-11.8 17.8-11.8 28.6s4.2 20.9 11.8 28.5c7.6 7.6 17.8 11.6 28.5 11.6 10.8 0 20.9-3.9 28.6-11.6 7.6-7.6 11.8-17.8 11.8-28.5 0-4.2-.6-8.2-1.9-12.1l50-50.2c22 16.9 49.4 26.9 79.3 26.9 71.9 0 130-58.3 130-130.2 0-65.2-47.7-119.2-110.2-128.7V116c17.5-7.4 28.2-23.8 28.2-42.9 0-26.1-20.9-47.9-47-47.9S311.2 47 311.2 73.1c0 19.1 10.7 35.5 28.2 42.9v61.2c-15.2 2.1-29.6 6.7-42.7 13.6-27.6-20.9-117.5-85.7-168.9-124.8 1.2-4.4 2-9 2-13.8C129.8 23.4 106.3 0 77.4 0 48.6 0 25.2 23.4 25.2 52.2c0 28.9 23.4 52.3 52.2 52.3 9.8 0 18.9-2.9 26.8-7.6l163.2 114.7zm89.5 163.6c-38.1 0-69-30.9-69-69s30.9-69 69-69 69 30.9 69 69-30.9 69-69 69z"] }; +var faImdb = { prefix: 'fab', iconName: 'imdb', icon: [448, 512, [], "f2d8", "M350.5 288.7c0 5.4 1.6 14.4-6.2 14.4-1.6 0-3-.8-3.8-2.4-2.2-5.1-1.1-44.1-1.1-44.7 0-3.8-1.1-12.7 4.9-12.7 7.3 0 6.2 7.3 6.2 12.7v32.7zM265 229.9c0-9.7 1.6-16-10.3-16v83.7c12.2.3 10.3-8.7 10.3-18.4v-49.3zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM21.3 228.8c-.1.1-.2.3-.3.4h.3v-.4zM97 192H64v127.8h33V192zm113.3 0h-43.1l-7.6 59.9c-2.7-20-5.4-40.1-8.7-59.9h-42.8v127.8h29v-84.5l12.2 84.5h20.6l11.6-86.4v86.4h28.7V192zm86.3 45.3c0-8.1.3-16.8-1.4-24.4-4.3-22.5-31.4-20.9-49-20.9h-24.6v127.8c86.1.1 75 6 75-82.5zm85.9 17.3c0-17.3-.8-30.1-22.2-30.1-8.9 0-14.9 2.7-20.9 9.2V192h-31.7v127.8h29.8l1.9-8.1c5.7 6.8 11.9 9.8 20.9 9.8 19.8 0 22.2-15.2 22.2-30.9v-36z"] }; +var faInstagram = { prefix: 'fab', iconName: 'instagram', icon: [448, 512, [], "f16d", "M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"] }; +var faInternetExplorer = { prefix: 'fab', iconName: 'internet-explorer', icon: [512, 512, [], "f26b", "M483.049 159.706c10.855-24.575 21.424-60.438 21.424-87.871 0-72.722-79.641-98.371-209.673-38.577-107.632-7.181-211.221 73.67-237.098 186.457 30.852-34.862 78.271-82.298 121.977-101.158C125.404 166.85 79.128 228.002 43.992 291.725 23.246 329.651 0 390.94 0 436.747c0 98.575 92.854 86.5 180.251 42.006 31.423 15.43 66.559 15.573 101.695 15.573 97.124 0 184.249-54.294 216.814-146.022H377.927c-52.509 88.593-196.819 52.996-196.819-47.436H509.9c6.407-43.581-1.655-95.715-26.851-141.162zM64.559 346.877c17.711 51.15 53.703 95.871 100.266 123.304-88.741 48.94-173.267 29.096-100.266-123.304zm115.977-108.873c2-55.151 50.276-94.871 103.98-94.871 53.418 0 101.981 39.72 103.981 94.871H180.536zm184.536-187.6c21.425-10.287 48.563-22.003 72.558-22.003 31.422 0 54.274 21.717 54.274 53.722 0 20.003-7.427 49.007-14.569 67.867-26.28-42.292-65.986-81.584-112.263-99.586z"] }; +var faIoxhost = { prefix: 'fab', iconName: 'ioxhost', icon: [640, 512, [], "f208", "M616 160h-67.3C511.2 70.7 422.9 8 320 8 183 8 72 119 72 256c0 16.4 1.6 32.5 4.7 48H24c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h67.3c37.5 89.3 125.8 152 228.7 152 137 0 248-111 248-248 0-16.4-1.6-32.5-4.7-48H616c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24zm-96 96c0 110.5-89.5 200-200 200-75.7 0-141.6-42-175.5-104H424c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24H125.8c-3.8-15.4-5.8-31.4-5.8-48 0-110.5 89.5-200 200-200 75.7 0 141.6 42 175.5 104H216c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h298.2c3.8 15.4 5.8 31.4 5.8 48zm-304-24h208c13.3 0 24 10.7 24 24 0 13.2-10.7 24-24 24H216c-13.3 0-24-10.7-24-24 0-13.2 10.7-24 24-24z"] }; +var faItunes = { prefix: 'fab', iconName: 'itunes', icon: [448, 512, [], "f3b4", "M223.6 80.3C129 80.3 52.5 157 52.5 251.5S129 422.8 223.6 422.8s171.2-76.7 171.2-171.2c0-94.6-76.7-171.3-171.2-171.3zm79.4 240c-3.2 13.6-13.5 21.2-27.3 23.8-12.1 2.2-22.2 2.8-31.9-5-11.8-10-12-26.4-1.4-36.8 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 3.2-3.6 2.2-2 2.2-80.8 0-5.6-2.7-7.1-8.4-6.1-4 .7-91.9 17.1-91.9 17.1-5 1.1-6.7 2.6-6.7 8.3 0 116.1.5 110.8-1.2 118.5-2.1 9-7.6 15.8-14.9 19.6-8.3 4.6-23.4 6.6-31.4 5.2-21.4-4-28.9-28.7-14.4-42.9 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 5-5.7.9-127 2.6-133.7.4-2.6 1.5-4.8 3.5-6.4 2.1-1.7 5.8-2.7 6.7-2.7 101-19 113.3-21.4 115.1-21.4 5.7-.4 9 3 9 8.7-.1 170.6.4 161.4-1 167.6zM345.2 32H102.8C45.9 32 0 77.9 0 134.8v242.4C0 434.1 45.9 480 102.8 480h242.4c57 0 102.8-45.9 102.8-102.8V134.8C448 77.9 402.1 32 345.2 32zM223.6 444c-106.3 0-192.5-86.2-192.5-192.5S117.3 59 223.6 59s192.5 86.2 192.5 192.5S329.9 444 223.6 444z"] }; +var faItunesNote = { prefix: 'fab', iconName: 'itunes-note', icon: [384, 512, [], "f3b5", "M381.9 388.2c-6.4 27.4-27.2 42.8-55.1 48-24.5 4.5-44.9 5.6-64.5-10.2-23.9-20.1-24.2-53.4-2.7-74.4 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 6.4-7.2 4.4-4.1 4.4-163.2 0-11.2-5.5-14.3-17-12.3-8.2 1.4-185.7 34.6-185.7 34.6-10.2 2.2-13.4 5.2-13.4 16.7 0 234.7 1.1 223.9-2.5 239.5-4.2 18.2-15.4 31.9-30.2 39.5-16.8 9.3-47.2 13.4-63.4 10.4-43.2-8.1-58.4-58-29.1-86.6 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 10.1-11.5 1.8-256.6 5.2-270.2.8-5.2 3-9.6 7.1-12.9 4.2-3.5 11.8-5.5 13.4-5.5 204-38.2 228.9-43.1 232.4-43.1 11.5-.8 18.1 6 18.1 17.6.2 344.5 1.1 326-1.8 338.5z"] }; +var faJava = { prefix: 'fab', iconName: 'java', icon: [377, 512, [], "f4e4", "M121.6 396s-19.6 11.4 13.9 15.2c40.6 4.6 61.3 4 106-4.5 0 0 11.8 7.4 28.2 13.8C169.5 463.4 42.9 418 121.6 396m-12.2-56.1s-21.9 16.2 11.6 19.7c43.3 4.5 77.6 4.8 136.8-6.6 0 0 8.2 8.3 21.1 12.8-121.3 35.5-256.3 2.9-169.5-25.9m103.2-95.1c24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3.1 0-175.2 43.8-91.5 140.2m132.6 192.6s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6.7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2 204.2 33.2 372.4-14.9 319.4-38.8M131 281.8s-93.1 22.1-33 30.1c25.4 3.4 76 2.6 123.1-1.3 38.5-3.2 77.2-10.2 77.2-10.2s-13.6 5.8-23.4 12.5c-94.5 24.9-277 13.3-224.5-12.1 44.5-21.4 80.6-19 80.6-19m167 93.3c96.1-49.9 51.6-97.9 20.6-91.4-7.6 1.6-11 3-11 3s2.8-4.4 8.2-6.3c61.3-21.6 108.5 63.6-19.8 97.3 0-.1 1.5-1.4 2-2.6M240 0s53.2 53.2-50.5 135c-83.1 65.6-19 103.1 0 145.8-48.5-43.8-84.1-82.3-60.2-118.2C164.4 110.1 261.5 84.5 240 0m-99.5 510.4c92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6"] }; +var faJediOrder = { prefix: 'fab', iconName: 'jedi-order', icon: [448, 512, [], "f50e", "M231.89 335.72l31.44-45.89-20.18 55.5 62.56 9.09-62.56 9.08 24.22 47.43s-30.22-31.77-34.49-36.25c1.76 68.78 2.19 85.7 2.19 85.7s154.4-71.65 68.62-230.09c0 0 106.97-118.07 10.09-190.73 0 0 165.5 99.91 60.55 271.46 0 0 86.78-84.77 41.37-170.54 0 0 78.71 111.01-17.16 233.11 0 0 26.24-16.15 49.45-77.71 0 0-16.93 183.26-221.96 185.66v.02h-4.08v-.02C16.93 479.14 0 295.88 0 295.88c23.21 61.56 49.44 77.71 49.44 77.71-95.87-122.11-17.15-233.11-17.15-233.11-45.41 85.78 41.38 170.54 41.38 170.54-104.95-171.56 60.54-271.46 60.54-271.46-96.88 72.66 10.09 190.73 10.09 190.73-85.78 158.44 68.62 230.09 68.62 230.09s.43-16.93 2.19-85.7l-34.48 36.25 24.22-47.43-62.56-9.08 62.56-9.09-20.18-55.5 31.44 45.89c2.25-87.85 7.82-305.82 7.85-306.85l.01-2.43.02 1 .03-1 .01 2.43c.05 1.72 5.61 219.2 7.86 306.85z"] }; +var faJenkins = { prefix: 'fab', iconName: 'jenkins', icon: [512, 512, [], "f3b6", "M487.1 425c-1.4-11.2-19-23.1-28.2-31.9-5.1-5-29-23.1-30.4-29.9-1.4-6.6 9.7-21.5 13.3-28.9 5.1-10.7 8.8-23.7 11.3-32.6 18.8-66.1 20.7-156.9-6.2-211.2-10.2-20.6-38.6-49-56.4-62.5-42-31.7-119.6-35.3-170.1-16.6-14.1 5.2-27.8 9.8-40.1 17.1-33.1 19.4-68.3 32.5-78.1 71.6-24.2 10.8-31.5 41.8-30.3 77.8.2 7 4.1 15.8 2.7 22.4-.7 3.3-5.2 7.6-6.1 9.8-11.6 27.7-2.3 64 11.1 83.7 8.1 11.9 21.5 22.4 39.2 25.2.7 10.6 3.3 19.7 8.2 30.4 3.1 6.8 14.7 19 10.4 27.7-2.2 4.4-21 13.8-27.3 17.6C89 407.2 73.7 415 54.2 429c-12.6 9-32.3 10.2-29.2 31.1 2.1 14.1 10.1 31.6 14.7 45.8.7 2 1.4 4.1 2.1 6h422c4.9-15.3 9.7-30.9 14.6-47.2 3.4-11.4 10.2-27.8 8.7-39.7zM205.9 33.7c1.8-.5 3.4.7 4.9 2.4-.2 5.2-5.4 5.1-8.9 6.8-5.4 6.7-13.4 9.8-20 17.2-6.8 7.5-14.4 27.7-23.4 30-4.5 1.1-9.7-.8-13.6-.5-10.4.7-17.7 6-28.3 7.5 13.6-29.9 56.1-54 89.3-63.4zm-104.8 93.6c13.5-14.9 32.1-24.1 54.8-25.9 11.7 29.7-8.4 65-.9 97.6 2.3 9.9 10.2 25.4-2.4 25.7.3-28.3-34.8-46.3-61.3-29.6-1.8-21.5-4.9-51.7 9.8-67.8zm36.7 200.2c-1-4.1-2.7-12.9-2.3-15.1 1.6-8.7 17.1-12.5 11-24.7-11.3-.1-13.8 10.2-24.1 11.3-26.7 2.6-45.6-35.4-44.4-58.4 1-19.5 17.6-38.2 40.1-35.8 16 1.8 21.4 19.2 24.5 34.7 9.2.5 22.5-.4 26.9-7.6-.6-17.5-8.8-31.6-8.2-47.7 1-30.3 17.5-57.6 4.8-87.4 13.6-30.9 53.5-55.3 83.1-70 36.6-18.3 94.9-3.7 129.3 15.8 19.7 11.1 34.4 32.7 48.3 50.7-19.5-5.8-36.1 4.2-33.1 20.3 16.3-14.9 44.2-.2 52.5 16.4 7.9 15.8 7.8 39.3 9 62.8 2.9 57-10.4 115.9-39.1 157.1-7.7 11-14.1 23-24.9 30.6-26 18.2-65.4 34.7-99.2 23.4-44.7-15-65-44.8-89.5-78.8.7 18.7 13.8 34.1 26.8 48.4 11.3 12.5 25 26.6 39.7 32.4-12.3-2.9-31.1-3.8-36.2 7.2-28.6-1.9-55.1-4.8-68.7-24.2-10.6-15.4-21.4-41.4-26.3-61.4zm222 124.1c4.1-3 11.1-2.9 17.4-3.6-5.4-2.7-13-3.7-19.3-2.2-.1-4.2-2-6.8-3.2-10.2 10.6-3.8 35.5-28.5 49.6-20.3 6.7 3.9 9.5 26.2 10.1 37 .4 9-.8 18-4.5 22.8-18.8-.6-35.8-2.8-50.7-7 .9-6.1-1-12.1.6-16.5zm-17.2-20c-16.8.8-26-1.2-38.3-10.8.2-.8 1.4-.5 1.5-1.4 18 8 40.8-3.3 59-4.9-7.9 5.1-14.6 11.6-22.2 17.1zm-12.1 33.2c-1.6-9.4-3.5-12-2.8-20.2 25-16.6 29.7 28.6 2.8 20.2zM226 438.6c-11.6-.7-48.1-14-38.5-23.7 9.4 6.5 27.5 4.9 41.3 7.3.8 4.4-2.8 10.2-2.8 16.4zM57.7 497.1c-4.3-12.7-9.2-25.1-14.8-36.9 30.8-23.8 65.3-48.9 102.2-63.5 2.8-1.1 23.2 25.4 26.2 27.6 16.5 11.7 37 21 56.2 30.2 1.2 8.8 3.9 20.2 8.7 35.5.7 2.3 1.4 4.7 2.2 7.2H57.7zm240.6 5.7h-.8c.3-.2.5-.4.8-.5v.5zm7.5-5.7c2.1-1.4 4.3-2.8 6.4-4.3 1.1 1.4 2.2 2.8 3.2 4.3h-9.6zm15.1-24.7c-10.8 7.3-20.6 18.3-33.3 25.2-6 3.3-27 11.7-33.4 10.2-3.6-.8-3.9-5.3-5.4-9.5-3.1-9-10.1-23.4-10.8-37-.8-17.2-2.5-46 16-42.4 14.9 2.9 32.3 9.7 43.9 16.1 7.1 3.9 11.1 8.6 21.9 9.5-.1 1.4-.1 2.8-.2 4.3-5.9 3.9-15.3 3.8-21.8 7.1 9.5.4 17 2.7 23.5 5.9-.1 3.4-.3 7-.4 10.6zm53.4 24.7h-14c-.1-3.2-2.8-5.8-6.1-5.8s-5.9 2.6-6.1 5.8h-17.4c-2.8-4.4-5.7-8.6-8.9-12.5 2.1-2.2 4-4.7 6-6.9 9 3.7 14.8-4.9 21.7-4.2 7.9.8 14.2 11.7 25.4 11l-.6 12.6zm8.7 0c.2-4 .4-7.8.6-11.5 15.6-7.3 29 1.3 35.7 11.5H383zm83.4-37c-2.3 11.2-5.8 24-9.9 37.1-.2-.1-.4-.1-.6-.1H428c.6-1.1 1.2-2.2 1.9-3.3-2.6-6.1-9-8.7-10.9-15.5 12.1-22.7 6.5-93.4-24.2-78.5 4.3-6.3 15.6-11.5 20.8-19.3 13 10.4 20.8 20.3 33.2 31.4 6.8 6 20 13.3 21.4 23.1.8 5.5-2.6 18.9-3.8 25.1zM222.2 130.5c5.4-14.9 27.2-34.7 45-32 7.7 1.2 18 8.2 12.2 17.7-30.2-7-45.2 12.6-54.4 33.1-8.1-2-4.9-13.1-2.8-18.8zm184.1 63.1c8.2-3.6 22.4-.7 29.6-5.3-4.2-11.5-10.3-21.4-9.3-37.7.5 0 1 0 1.4.1 6.8 14.2 12.7 29.2 21.4 41.7-5.7 13.5-43.6 25.4-43.1 1.2zm20.4-43zm-117.2 45.7c-6.8-10.9-19-32.5-14.5-45.3 6.5 11.9 8.6 24.4 17.8 33.3 4.1 4 12.2 9 8.2 20.2-.9 2.7-7.8 8.6-11.7 9.7-14.4 4.3-47.9.9-36.6-17.1 11.9.7 27.9 7.8 36.8-.8zm27.3 70c3.8 6.6 1.4 18.7 12.1 20.6 20.2 3.4 43.6-12.3 58.1-17.8 9-15.2-.8-20.7-8.9-30.5-16.6-20-38.8-44.8-38-74.7 6.7-4.9 7.3 7.4 8.2 9.7 8.7 20.3 30.4 46.2 46.3 63.5 3.9 4.3 10.3 8.4 11 11.2 2.1 8.2-5.4 18-4.5 23.5-21.7 13.9-45.8 29.1-81.4 25.6-7.4-6.7-10.3-21.4-2.9-31.1zm-201.3-9.2c-6.8-3.9-8.4-21-16.4-21.4-11.4-.7-9.3 22.2-9.3 35.5-7.8-7.1-9.2-29.1-3.5-40.3-6.6-3.2-9.5 3.6-13.1 5.9 4.7-34.1 49.8-15.8 42.3 20.3zm299.6 28.8c-10.1 19.2-24.4 40.4-54 41-.6-6.2-1.1-15.6 0-19.4 22.7-2.2 36.6-13.7 54-21.6zm-141.9 12.4c18.9 9.9 53.6 11 79.3 10.2 1.4 5.6 1.3 12.6 1.4 19.4-33 1.8-72-6.4-80.7-29.6zm92.2 46.7c-1.7 4.3-5.3 9.3-9.8 11.1-12.1 4.9-45.6 8.7-62.4-.3-10.7-5.7-17.5-18.5-23.4-26-2.8-3.6-16.9-12.9-.2-12.9 13.1 32.7 58 29 95.8 28.1z"] }; +var faJoget = { prefix: 'fab', iconName: 'joget', icon: [496, 512, [], "f3b7", "M227.5 468.7c-9-13.6-19.9-33.3-23.7-42.4-5.7-13.7-27.2-45.6 31.2-67.1 51.7-19.1 176.7-16.5 208.8-17.6-4 9-8.6 17.9-13.9 26.6-40.4 65.5-110.4 101.5-182 101.5-6.8 0-13.6-.4-20.4-1M66.1 143.9C128 43.4 259.6 12.2 360.1 74.1c74.8 46.1 111.2 130.9 99.3 212.7-24.9-.5-179.3-3.6-230.3-4.9-55.5-1.4-81.7-20.8-58.5-48.2 23.2-27.4 51.1-40.7 68.9-51.2 17.9-10.5 27.3-33.7-23.6-29.7C87.3 161.5 48.6 252.1 37.6 293c-8.8-49.7-.1-102.7 28.5-149.1m-29.2-18c-71.9 116.6-35.6 269.3 81 341.2 116.6 71.9 269.3 35.6 341.2-80.9 71.9-116.6 35.6-269.4-81-341.2-40.5-25.1-85.5-37-129.9-37C165 8 83.8 49.9 36.9 125.9m244.4 110.4c-31.5 20.5-65.3 31.3-65.3 31.3l169.5-1.6 46.5-23.4s3.6-9.5-19.1-15.5c-22.7-6-57 11.3-86.7 27.2-29.7 15.8-31.1 8.2-31.1 8.2s40.2-28.1 50.7-34.5c10.5-6.4 31.9-14 13.4-24.6-3.2-1.8-6.7-2.7-10.4-2.7-17.8 0-41.5 18.7-67.5 35.6"] }; +var faJoomla = { prefix: 'fab', iconName: 'joomla', icon: [448, 512, [], "f1aa", "M.6 92.1C.6 58.8 27.4 32 60.4 32c30 0 54.5 21.9 59.2 50.2 32.6-7.6 67.1.6 96.5 30l-44.3 44.3c-20.5-20.5-42.6-16.3-55.4-3.5-14.3 14.3-14.3 37.9 0 52.2l99.5 99.5-44 44.3c-87.7-87.2-49.7-49.7-99.8-99.7-26.8-26.5-35-64.8-24.8-98.9C20.4 144.6.6 120.7.6 92.1zm129.5 116.4l44.3 44.3c10-10 89.7-89.7 99.7-99.8 14.3-14.3 37.6-14.3 51.9 0 12.8 12.8 17 35-3.5 55.4l44 44.3c31.2-31.2 38.5-67.6 28.9-101.2 29.2-4.1 51.9-29.2 51.9-59.5 0-33.2-26.8-60.1-59.8-60.1-30.3 0-55.4 22.5-59.5 51.6-33.8-9.9-71.7-1.5-98.3 25.1-18.3 19.1-71.1 71.5-99.6 99.9zm266.3 152.2c8.2-32.7-.9-68.5-26.3-93.9-11.8-12.2 5 4.7-99.5-99.7l-44.3 44.3 99.7 99.7c14.3 14.3 14.3 37.6 0 51.9-12.8 12.8-35 17-55.4-3.5l-44 44.3c27.6 30.2 68 38.8 102.7 28 5.5 27.4 29.7 48.1 58.9 48.1 33 0 59.8-26.8 59.8-60.1 0-30.2-22.5-55-51.6-59.1zm-84.3-53.1l-44-44.3c-87 86.4-50.4 50.4-99.7 99.8-14.3 14.3-37.6 14.3-51.9 0-13.1-13.4-16.9-35.3 3.2-55.4l-44-44.3c-30.2 30.2-38 65.2-29.5 98.3-26.7 6-46.2 29.9-46.2 58.2C0 453.2 26.8 480 59.8 480c28.6 0 52.5-19.8 58.6-46.7 32.7 8.2 68.5-.6 94.2-26 32.1-32 12.2-12.4 99.5-99.7z"] }; +var faJs = { prefix: 'fab', iconName: 'js', icon: [448, 512, [], "f3b8", "M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"] }; +var faJsSquare = { prefix: 'fab', iconName: 'js-square', icon: [448, 512, [], "f3b9", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM243.8 381.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"] }; +var faJsfiddle = { prefix: 'fab', iconName: 'jsfiddle', icon: [576, 512, [], "f1cc", "M510.634 237.462c-4.727-2.621-5.664-5.748-6.381-10.776-2.352-16.488-3.539-33.619-9.097-49.095-35.895-99.957-153.99-143.386-246.849-91.646-27.37 15.25-48.971 36.369-65.493 63.903-3.184-1.508-5.458-2.71-7.824-3.686-30.102-12.421-59.049-10.121-85.331 9.167-25.531 18.737-36.422 44.548-32.676 76.408.355 3.025-1.967 7.621-4.514 9.545-39.712 29.992-56.031 78.065-41.902 124.615 13.831 45.569 57.514 79.796 105.608 81.433 30.291 1.031 60.637.546 90.959.539 84.041-.021 168.09.531 252.12-.48 52.664-.634 96.108-36.873 108.212-87.293 11.54-48.074-11.144-97.3-56.832-122.634zm21.107 156.88c-18.23 22.432-42.343 35.253-71.28 35.65-56.874.781-113.767.23-170.652.23 0 .7-163.028.159-163.728.154-43.861-.332-76.739-19.766-95.175-59.995-18.902-41.245-4.004-90.848 34.186-116.106 9.182-6.073 12.505-11.566 10.096-23.136-5.49-26.361 4.453-47.956 26.42-62.981 22.987-15.723 47.422-16.146 72.034-3.083 10.269 5.45 14.607 11.564 22.198-2.527 14.222-26.399 34.557-46.727 60.671-61.294 97.46-54.366 228.37 7.568 230.24 132.697.122 8.15 2.412 12.428 9.848 15.894 57.56 26.829 74.456 96.122 35.142 144.497zm-87.789-80.499c-5.848 31.157-34.622 55.096-66.666 55.095-16.953-.001-32.058-6.545-44.079-17.705-27.697-25.713-71.141-74.98-95.937-93.387-20.056-14.888-41.99-12.333-60.272 3.782-49.996 44.071 15.859 121.775 67.063 77.188 4.548-3.96 7.84-9.543 12.744-12.844 8.184-5.509 20.766-.884 13.168 10.622-17.358 26.284-49.33 38.197-78.863 29.301-28.897-8.704-48.84-35.968-48.626-70.179 1.225-22.485 12.364-43.06 35.414-55.965 22.575-12.638 46.369-13.146 66.991 2.474C295.68 280.7 320.467 323.97 352.185 343.47c24.558 15.099 54.254 7.363 68.823-17.506 28.83-49.209-34.592-105.016-78.868-63.46-3.989 3.744-6.917 8.932-11.41 11.72-10.975 6.811-17.333-4.113-12.809-10.353 20.703-28.554 50.464-40.44 83.271-28.214 31.429 11.714 49.108 44.366 42.76 78.186z"] }; +var faKeybase = { prefix: 'fab', iconName: 'keybase', icon: [412, 512, [], "f4f5", "M177.2 430.9c0 9.8-8 17.8-17.8 17.8s-17.8-8-17.8-17.8 8-17.8 17.8-17.8c9.8-.1 17.8 7.9 17.8 17.8zM270 413c-9.8 0-17.8 8-17.8 17.8s8 17.8 17.8 17.8 17.8-8 17.8-17.8-8-17.8-17.8-17.8zm142.3-36c0 38.9-7.6 73.9-22.2 103h-27.3c23.5-38.7 30.5-94.8 22.4-134.3-16.1 29.5-52.1 38.6-85.9 28.8-127.8-37.5-192.5 19.7-234.6 50.3l18.9-59.3-39.9 42.3c4.8 26.7 15.7 51.3 31.2 72.3H46.1c-9.7-15.8-17.2-33-22.2-51.3L.1 454c0-74.9-5.5-147.6 61.5-215.2 20.2-20.4 43.7-36.2 69.1-46.7-6.8-13.5-9.5-29.2-7.8-46l-19.9-1.2c-17.9-1.1-31.6-16.5-30.6-34.4v-.1L74 84.2c1.1-17.1 15.4-30.6 32.5-30.6 1.3 0-.3-.1 28.2 1.7 13.9.8 21.5 9.8 22.8 11.4 7.1-10.4 14.5-20.5 24.6-34.5l20.6 12.1c-13.6 29-9.1 36.2-9 36.3 3.9 0 13.9-.5 32.4 5.7C246 92.9 262 107 271 126c.4.9 15.5 29 1.2 62.6 19 6.1 51.3 19.9 82.4 51.8 36.6 37.6 57.7 87.4 57.7 136.6zM128 122.3c3.2-10 7.7-19.7 13.1-29.4.1-2 2.2-13.1-7.8-13.8-28.5-1.8-26.3-1.6-26.7-1.6-4.6 0-8.3 3.5-8.6 8.1l-1.6 26.2c-.3 4.7 3.4 8.8 8.1 9.1l23.5 1.4zm25.8 61.8c5.6 9.4 14.1 16.1 22.3 20 0-21.2 28.5-41.9 52.8-17.5l8.4 10.3c20.8-18.8 19.4-45.3 12.1-60.9-13.8-29.1-46.9-32-54.3-31.7-10.3.4-19.7-5.4-23.7-15.3-13.7 21.2-37.2 62.5-17.6 95.1zm82.9 68.4L217 268.6c-1.9 1.6-2.2 4.4-.6 6.3l8.9 10.9c1 1.2 3.8 2.7 6.3.6l19.6-16 5.5 6.8c4.9 6 13.8-1.4 9-7.3-63.6-78.3-41.5-51.1-55.3-68.1-4.7-6-13.9 1.4-9 7.3 1.9 2.3 18.4 22.6 19.8 24.3l-9.6 7.9c-4.6 3.8 2.6 13.3 7.4 9.4l9.7-8 8 9.8zm118.4 25.7c-16.9-23.7-42.6-46.7-73.4-60.4-7.9-3.5-15-6.1-22.9-8.6-2 2.2-4.1 4.3-6.4 6.2l31.9 39.2c10.4 12.7 8.5 31.5-4.2 41.9-1.3 1.1-13.1 10.7-29 4.9-2.9 2.3-10.1 9.9-22.2 9.9-8.6 0-16.6-3.8-22.1-10.5l-8.9-10.9c-6.3-7.8-7.9-17.9-5-26.8-8.2-9.9-8.3-21.3-4.6-30-7.2-1.3-26.7-6.2-42.7-21.4-55.8 20.7-88 64.4-101.3 91.2-14.9 30.2-18.8 60.9-19.9 90.2 8.2-8.7-3.9 4.1 114-120.9l-29.9 93.6c57.8-31.1 124-36 197.4-14.4 23.6 6.9 45.1 1.6 56-13.9 11.1-15.6 8.5-37.7-6.8-59.3zM110.6 107.3l15.6 1 1-15.6-15.6-1-1 15.6z"] }; +var faKeycdn = { prefix: 'fab', iconName: 'keycdn', icon: [512, 512, [], "f3ba", "M63.8 409.3l60.5-59c32.1 42.8 71.1 66 126.6 67.4 30.5.7 60.3-7 86.4-22.4 5.1 5.3 18.5 19.5 20.9 22-32.2 20.7-69.6 31.1-108.1 30.2-43.3-1.1-84.6-16.7-117.7-44.4.3-.6-38.2 37.5-38.6 37.9 9.5 29.8-13.1 62.4-46.3 62.4C20.7 503.3 0 481.7 0 454.9c0-34.3 33.1-56.6 63.8-45.6zm354.9-252.4c19.1 31.3 29.6 67.4 28.7 104-1.1 44.8-19 87.5-48.6 121 .3.3 23.8 25.2 24.1 25.5 9.6-1.3 19.2 2 25.9 9.1 11.3 12 10.9 30.9-1.1 42.4-12 11.3-30.9 10.9-42.4-1.1-6.7-7-9.4-16.8-7.6-26.3-24.9-26.6-44.4-47.2-44.4-47.2 42.7-34.1 63.3-79.6 64.4-124.2.7-28.9-7.2-57.2-21.1-82.2l22.1-21zM104 53.1c6.7 7 9.4 16.8 7.6 26.3l45.9 48.1c-4.7 3.8-13.3 10.4-22.8 21.3-25.4 28.5-39.6 64.8-40.7 102.9-.7 28.9 6.1 57.2 20 82.4l-22 21.5C72.7 324 63.1 287.9 64.2 250.9c1-44.6 18.3-87.6 47.5-121.1l-25.3-26.4c-9.6 1.3-19.2-2-25.9-9.1-11.3-12-10.9-30.9 1.1-42.4C73.5 40.7 92.2 41 104 53.1zM464.9 8c26 0 47.1 22.4 47.1 48.3S490.9 104 464.9 104c-6.3.1-14-1.1-15.9-1.8l-62.9 59.7c-32.7-43.6-76.7-65.9-126.9-67.2-30.5-.7-60.3 6.8-86.2 22.4l-21.1-22C184.1 74.3 221.5 64 260 64.9c43.3 1.1 84.6 16.7 117.7 44.6l41.1-38.6c-1.5-4.7-2.2-9.6-2.2-14.5C416.5 29.7 438.9 8 464.9 8zM256.7 113.4c5.5 0 10.9.4 16.4 1.1 78.1 9.8 133.4 81.1 123.8 159.1-9.8 78.1-81.1 133.4-159.1 123.8-78.1-9.8-133.4-81.1-123.8-159.2 9.3-72.4 70.1-124.6 142.7-124.8zm-59 119.4c.6 22.7 12.2 41.8 32.4 52.2l-11 51.7h73.7l-11-51.7c20.1-10.9 32.1-29 32.4-52.2-.4-32.8-25.8-57.5-58.3-58.3-32.1.8-57.3 24.8-58.2 58.3zM256 160"] }; +var faKickstarter = { prefix: 'fab', iconName: 'kickstarter', icon: [448, 512, [], "f3bb", "M400 480H48c-26.4 0-48-21.6-48-48V80c0-26.4 21.6-48 48-48h352c26.4 0 48 21.6 48 48v352c0 26.4-21.6 48-48 48zM199.6 178.5c0-30.7-17.6-45.1-39.7-45.1-25.8 0-40 19.8-40 44.5v154.8c0 25.8 13.7 45.6 40.5 45.6 21.5 0 39.2-14 39.2-45.6v-41.8l60.6 75.7c12.3 14.9 39 16.8 55.8 0 14.6-15.1 14.8-36.8 4-50.4l-49.1-62.8 40.5-58.7c9.4-13.5 9.5-34.5-5.6-49.1-16.4-15.9-44.6-17.3-61.4 7l-44.8 64.7v-38.8z"] }; +var faKickstarterK = { prefix: 'fab', iconName: 'kickstarter-k', icon: [384, 512, [], "f3bc", "M147.3 114.4c0-56.2-32.5-82.4-73.4-82.4C26.2 32 0 68.2 0 113.4v283c0 47.3 25.3 83.4 74.9 83.4 39.8 0 72.4-25.6 72.4-83.4v-76.5l112.1 138.3c22.7 27.2 72.1 30.7 103.2 0 27-27.6 27.3-67.4 7.4-92.2l-90.8-114.8 74.9-107.4c17.4-24.7 17.5-63.1-10.4-89.8-30.3-29-82.4-31.6-113.6 12.8L147.3 185v-70.6z"] }; +var faKorvue = { prefix: 'fab', iconName: 'korvue', icon: [446, 512, [], "f42f", "M386.5 34h-327C26.8 34 0 60.8 0 93.5v327.1C0 453.2 26.8 480 59.5 480h327.1c33 0 59.5-26.8 59.5-59.5v-327C446 60.8 419.2 34 386.5 34zM87.1 120.8h96v116l61.8-116h110.9l-81.2 132H87.1v-132zm161.8 272.1l-65.7-113.6v113.6h-96V262.1h191.5l88.6 130.8H248.9z"] }; +var faLaravel = { prefix: 'fab', iconName: 'laravel', icon: [640, 512, [], "f3bd", "M637.5 241.6c-4.2-4.8-62.8-78.1-73.1-90.5-10.3-12.4-15.4-10.2-21.7-9.3-6.4.9-80.5 13.4-89.1 14.8-8.6 1.5-14 4.9-8.7 12.3 4.7 6.6 53.4 75.7 64.2 90.9l-193.7 46.4L161.2 48.7c-6.1-9.1-7.4-12.3-21.4-11.6-14 .6-120.9 9.5-128.5 10.2-7.6.6-16 4-8.4 22s129 279.6 132.4 287.2c3.4 7.6 12.2 20 32.8 15 21.1-5.1 94.3-24.2 134.3-34.7 21.1 38.3 64.2 115.9 72.2 127 10.6 14.9 18 12.4 34.3 7.4 12.8-3.9 199.6-71.1 208-74.5 8.4-3.5 13.6-5.9 7.9-14.4-4.2-6.2-53.5-72.2-79.3-106.8 17.7-4.7 80.6-21.4 87.3-23.3 7.9-2 9-5.8 4.7-10.6zm-352.2 72c-2.3.5-110.8 26.5-116.6 27.8-5.8 1.3-5.8.7-6.5-1.3-.7-2-129-266.7-130.8-270-1.8-3.3-1.7-5.9 0-5.9s102.5-9 106-9.2c3.6-.2 3.2.6 4.5 2.8 0 0 142.2 245.4 144.6 249.7 2.6 4.3 1.1 5.6-1.2 6.1zm306 57.4c1.7 2.7 3.5 4.5-2 6.4-5.4 2-183.7 62.1-187.1 63.6-3.5 1.5-6.2 2-10.6-4.5s-62.4-106.8-62.4-106.8L518 280.6c4.7-1.5 6.2-2.5 9.2 2.2 2.9 4.8 62.4 85.5 64.1 88.2zm12.1-134.1c-4.2.9-73.6 18.1-73.6 18.1l-56.7-77.8c-1.6-2.3-2.9-4.5 1.1-5s68.4-12.2 71.3-12.8c2.9-.7 5.4-1.5 9 3.4 3.6 4.9 52.6 67 54.5 69.4 1.8 2.3-1.4 3.7-5.6 4.7z"] }; +var faLastfm = { prefix: 'fab', iconName: 'lastfm', icon: [512, 512, [], "f202", "M225.8 367.1l-18.8-51s-30.5 34-76.2 34c-40.5 0-69.2-35.2-69.2-91.5 0-72.1 36.4-97.9 72.1-97.9 66.5 0 74.8 53.3 100.9 134.9 18.8 56.9 54 102.6 155.4 102.6 72.7 0 122-22.3 122-80.9 0-72.9-62.7-80.6-115-92.1-25.8-5.9-33.4-16.4-33.4-34 0-19.9 15.8-31.7 41.6-31.7 28.2 0 43.4 10.6 45.7 35.8l58.6-7c-4.7-52.8-41.1-74.5-100.9-74.5-52.8 0-104.4 19.9-104.4 83.9 0 39.9 19.4 65.1 68 76.8 44.9 10.6 79.8 13.8 79.8 45.7 0 21.7-21.1 30.5-61 30.5-59.2 0-83.9-31.1-97.9-73.9-32-96.8-43.6-163-161.3-163C45.7 113.8 0 168.3 0 261c0 89.1 45.7 137.2 127.9 137.2 66.2 0 97.9-31.1 97.9-31.1z"] }; +var faLastfmSquare = { prefix: 'fab', iconName: 'lastfm-square', icon: [448, 512, [], "f203", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-92.2 312.9c-63.4 0-85.4-28.6-97.1-64.1-16.3-51-21.5-84.3-63-84.3-22.4 0-45.1 16.1-45.1 61.2 0 35.2 18 57.2 43.3 57.2 28.6 0 47.6-21.3 47.6-21.3l11.7 31.9s-19.8 19.4-61.2 19.4c-51.3 0-79.9-30.1-79.9-85.8 0-57.9 28.6-92 82.5-92 73.5 0 80.8 41.4 100.8 101.9 8.8 26.8 24.2 46.2 61.2 46.2 24.9 0 38.1-5.5 38.1-19.1 0-19.9-21.8-22-49.9-28.6-30.4-7.3-42.5-23.1-42.5-48 0-40 32.3-52.4 65.2-52.4 37.4 0 60.1 13.6 63 46.6l-36.7 4.4c-1.5-15.8-11-22.4-28.6-22.4-16.1 0-26 7.3-26 19.8 0 11 4.8 17.6 20.9 21.3 32.7 7.1 71.8 12 71.8 57.5.1 36.7-30.7 50.6-76.1 50.6z"] }; +var faLeanpub = { prefix: 'fab', iconName: 'leanpub', icon: [576, 512, [], "f212", "M386.539 111.485l15.096 248.955-10.979-.275c-36.232-.824-71.64 8.783-102.657 27.997-31.016-19.214-66.424-27.997-102.657-27.997-45.564 0-82.07 10.705-123.516 27.723L93.117 129.6c28.546-11.803 61.484-18.115 92.226-18.115 41.173 0 73.836 13.175 102.657 42.544 27.723-28.271 59.013-41.721 98.539-42.544zM569.07 448c-25.526 0-47.485-5.215-70.542-15.645-34.31-15.645-69.993-24.978-107.871-24.978-38.977 0-74.934 12.901-102.657 40.623-27.723-27.723-63.68-40.623-102.657-40.623-37.878 0-73.561 9.333-107.871 24.978C55.239 442.236 32.731 448 8.303 448H6.93L49.475 98.859C88.726 76.626 136.486 64 181.775 64 218.83 64 256.984 71.685 288 93.095 319.016 71.685 357.17 64 394.225 64c45.289 0 93.049 12.626 132.3 34.859L569.07 448zm-43.368-44.741l-34.036-280.246c-30.742-13.999-67.248-21.41-101.009-21.41-38.428 0-74.385 12.077-102.657 38.702-28.272-26.625-64.228-38.702-102.657-38.702-33.761 0-70.267 7.411-101.009 21.41L50.298 403.259c47.211-19.487 82.894-33.486 135.045-33.486 37.604 0 70.817 9.606 102.657 29.644 31.84-20.038 65.052-29.644 102.657-29.644 52.151 0 87.834 13.999 135.045 33.486z"] }; +var faLess = { prefix: 'fab', iconName: 'less', icon: [640, 512, [], "f41d", "M612.7 219c0-20.5 3.2-32.6 3.2-54.6 0-34.2-12.6-45.2-40.5-45.2h-20.5v24.2h6.3c14.2 0 17.3 4.7 17.3 22.1 0 16.3-1.6 32.6-1.6 51.5 0 24.2 7.9 33.6 23.6 37.3v1.6c-15.8 3.7-23.6 13.1-23.6 37.3 0 18.9 1.6 34.2 1.6 51.5 0 17.9-3.7 22.6-17.3 22.6v.5h-6.3V393h20.5c27.8 0 40.5-11 40.5-45.2 0-22.6-3.2-34.2-3.2-54.6 0-11 6.8-22.6 27.3-23.6v-27.3c-20.5-.7-27.3-12.3-27.3-23.3zm-105.6 32c-15.8-6.3-30.5-10-30.5-20.5 0-7.9 6.3-12.6 17.9-12.6s22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-21 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51s-22.5-41-43-47.8zm-358.9 59.4c-3.7 0-8.4-3.2-8.4-13.1V119.1H65.2c-28.4 0-41 11-41 45.2 0 22.6 3.2 35.2 3.2 54.6 0 11-6.8 22.6-27.3 23.6v27.3c20.5.5 27.3 12.1 27.3 23.1 0 19.4-3.2 31-3.2 53.6 0 34.2 12.6 45.2 40.5 45.2h20.5v-24.2h-6.3c-13.1 0-17.3-5.3-17.3-22.6s1.6-32.1 1.6-51.5c0-24.2-7.9-33.6-23.6-37.3v-1.6c15.8-3.7 23.6-13.1 23.6-37.3 0-18.9-1.6-34.2-1.6-51.5s3.7-22.1 17.3-22.1H93v150.8c0 32.1 11 53.1 43.1 53.1 10 0 17.9-1.6 23.6-3.7l-5.3-34.2c-3.1.8-4.6.8-6.2.8zM379.9 251c-16.3-6.3-31-10-31-20.5 0-7.9 6.3-12.6 17.9-12.6 11.6 0 22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-20.5 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51 .1-28.9-22.5-41-43-47.8zm-155-68.8c-38.4 0-75.1 32.1-74.1 82.5 0 52 34.2 82.5 79.3 82.5 18.9 0 39.9-6.8 56.2-17.9l-15.8-27.8c-11.6 6.8-22.6 10-34.2 10-21 0-37.3-10-41.5-34.2H290c.5-3.7 1.6-11 1.6-19.4.6-42.6-22.6-75.7-66.7-75.7zm-30 66.2c3.2-21 15.8-31 30.5-31 18.9 0 26.3 13.1 26.3 31h-56.8z"] }; +var faLine = { prefix: 'fab', iconName: 'line', icon: [448, 512, [], "f3c0", "M272.1 204.2v71.1c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.1 0-2.1-.6-2.6-1.3l-32.6-44v42.2c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.8 0-3.2-1.4-3.2-3.2v-71.1c0-1.8 1.4-3.2 3.2-3.2H219c1 0 2.1.5 2.6 1.4l32.6 44v-42.2c0-1.8 1.4-3.2 3.2-3.2h11.4c1.8-.1 3.3 1.4 3.3 3.1zm-82-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 1.8 1.4 3.2 3.2 3.2h11.4c1.8 0 3.2-1.4 3.2-3.2v-71.1c0-1.7-1.4-3.2-3.2-3.2zm-27.5 59.6h-31.1v-56.4c0-1.8-1.4-3.2-3.2-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 .9.3 1.6.9 2.2.6.5 1.3.9 2.2.9h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.7-1.4-3.2-3.1-3.2zM332.1 201h-45.7c-1.7 0-3.2 1.4-3.2 3.2v71.1c0 1.7 1.4 3.2 3.2 3.2h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2V234c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2v-11.4c-.1-1.7-1.5-3.2-3.2-3.2zM448 113.7V399c-.1 44.8-36.8 81.1-81.7 81H81c-44.8-.1-81.1-36.9-81-81.7V113c.1-44.8 36.9-81.1 81.7-81H367c44.8.1 81.1 36.8 81 81.7zm-61.6 122.6c0-73-73.2-132.4-163.1-132.4-89.9 0-163.1 59.4-163.1 132.4 0 65.4 58 120.2 136.4 130.6 19.1 4.1 16.9 11.1 12.6 36.8-.7 4.1-3.3 16.1 14.1 8.8 17.4-7.3 93.9-55.3 128.2-94.7 23.6-26 34.9-52.3 34.9-81.5z"] }; +var faLinkedin = { prefix: 'fab', iconName: 'linkedin', icon: [448, 512, [], "f08c", "M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"] }; +var faLinkedinIn = { prefix: 'fab', iconName: 'linkedin-in', icon: [448, 512, [], "f0e1", "M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"] }; +var faLinode = { prefix: 'fab', iconName: 'linode', icon: [448, 512, [], "f2b8", "M437.4 226.3c-.3-.9-.9-1.4-1.4-2l-70-38.6c-.9-.6-2-.6-3.1 0l-58.9 36c-.9.6-1.4 1.7-1.4 2.6l-.9 31.4-24-16c-.9-.6-2.3-.6-3.1 0L240 260.9l-1.4-35.1c0-.9-.6-2-1.4-2.3l-36-24.3 33.7-17.4c1.1-.6 1.7-1.7 1.7-2.9l-5.7-132.3c0-.9-.9-2-1.7-2.6L138.6.3c-.9-.3-1.7-.3-2.3-.3L12.6 38.6c-1.4.6-2.3 2-2 3.7L38 175.4c.9 3.4 34 27.4 38.6 30.9l-26.9 12.9c-1.4.9-2 2.3-1.7 3.4l20.6 100.3c.6 2.9 23.7 23.1 27.1 26.3l-17.4 10.6c-.9.6-1.7 2-1.4 3.1 1.4 7.1 15.4 77.7 16.9 79.1l65.1 69.1c.6.6 1.4.6 2.3.9.6 0 1.1-.3 1.7-.6l83.7-66.9c.9-.6 1.1-1.4 1.1-2.3l-2-46 28 23.7c1.1.9 2.9.9 4 0l66.9-53.4c.9-.6 1.1-1.4 1.1-2.3l2.3-33.4 20.3 14c1.1.9 2.6.9 3.7 0l54.6-43.7c.6-.3 1.1-1.1 1.1-2 .9-6.5 10.3-70.8 9.7-72.8zm-204.8 4.8l4 92.6-90.6 61.2-14-96.6 100.6-57.2zm-7.7-180l5.4 126-106.6 55.4L104 97.7l120.9-46.6zM44 173.1L18 48l79.7 49.4 19.4 132.9L44 173.1zm30.6 147.8L55.7 230l70 58.3 13.7 93.4-64.8-60.8zm24.3 117.7l-13.7-67.1 61.7 60.9 9.7 67.4-57.7-61.2zm64.5 64.5l-10.6-70.9 85.7-61.4 3.1 70-78.2 62.3zm82-115.1c0-3.4.9-22.9-2-25.1l-24.3-20 22.3-14.9c2.3-1.7 1.1-5.7 1.1-8l29.4 22.6.6 68.3-27.1-22.9zm94.3-25.4l-60.9 48.6-.6-68.6 65.7-46.9-4.2 66.9zm27.7-25.7l-19.1-13.4 2-34c.3-.9-.3-2-1.1-2.6L308 259.7l.6-30 64.6 40.6-5.8 66.6zm54.6-39.8l-48.3 38.3 5.7-65.1 51.1-36.6-8.5 63.4z"] }; +var faLinux = { prefix: 'fab', iconName: 'linux', icon: [448, 512, [], "f17c", "M196.1 123.6c-.2-1.4 1.9-2.3 3.2-2.9 1.7-.7 3.9-1 5.5-.1.4.2.8.7.6 1.1-.4 1.2-2.4 1-3.5 1.6-1 .5-1.8 1.7-3 1.7-1 .1-2.7-.4-2.8-1.4zm24.7-.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm214.7 310.2c-.5 8.2-6.5 13.8-13.9 18.3-14.9 9-37.3 15.8-50.9 32.2l-2.6-2.2 2.6 2.2c-14.2 16.9-31.7 26.6-48.3 27.9-16.5 1.3-32-6.3-40.3-23v-.1c-1.1-2.1-1.9-4.4-2.5-6.7-21.5 1.2-40.2-5.3-55.1-4.1-22 1.2-35.8 6.5-48.3 6.6-4.8 10.6-14.3 17.6-25.9 20.2-16 3.7-36.1 0-55.9-10.4l1.6-3-1.6 3c-18.5-9.8-42-8.9-59.3-12.5-8.7-1.8-16.3-5-20.1-12.3-3.7-7.3-3-17.3 2.2-31.7 1.7-5.1.4-12.7-.8-20.8-.6-3.9-1.2-7.9-1.2-11.8 0-4.3.7-8.5 2.8-12.4 4.5-8.5 11.8-12.1 18.5-14.5 6.7-2.4 12.8-4 17-8.3 5.2-5.5 10.1-14.4 16.6-20.2-2.6-17.2.2-35.4 6.2-53.3 12.6-37.9 39.2-74.2 58.1-96.7 16.1-22.9 20.8-41.3 22.5-64.7C158 103.4 132.4-.2 234.8 0c80.9.1 76.3 85.4 75.8 131.3-.3 30.1 16.3 50.5 33.4 72 15.2 18 35.1 44.3 46.5 74.4 9.3 24.6 12.9 51.8 3.7 79.1 1.4.5 2.8 1.2 4.1 2 1.4.8 2.7 1.8 4 2.9 6.6 5.6 8.7 14.3 10.5 22.4 1.9 8.1 3.6 15.7 7.2 19.7 11.1 12.4 15.9 21.5 15.5 29.7zM220.8 109.1c3.6.9 8.9 2.4 13 4.4-2.1-12.2 4.5-23.5 11.8-23 8.9.3 13.9 15.5 9.1 27.3-.8 1.9-2.8 3.4-3.9 4.6 6.7 2.3 11 4.1 12.6 4.9 7.9-9.5 10.8-26.2 4.3-40.4-9.8-21.4-34.2-21.8-44 .4-3.2 7.2-3.9 14.9-2.9 21.8zm-46.2 18.8c7.8-5.7 6.9-4.7 5.9-5.5-8-6.9-6.6-27.4 1.8-28.1 6.3-.5 10.8 10.7 9.6 19.6 3.1-2.1 6.7-3.6 10.2-4.6 1.7-19.3-9-33.5-19.1-33.5-18.9 0-24 37.5-8.4 52.1zm-9.4 20.9c1.5 4.9 6.1 10.5 14.7 15.3 7.8 4.6 12 11.5 20 15 2.6 1.1 5.7 1.9 9.6 2.1 18.4 1.1 27.1-11.3 38.2-14.9 11.7-3.7 20.1-11 22.7-18.1 3.2-8.5-2.1-14.7-10.5-18.2-11.3-4.9-16.3-5.2-22.6-9.3-10.3-6.6-18.8-8.9-25.9-8.9-14.4 0-23.2 9.8-27.9 14.2-.5.5-7.9 5.9-14.1 10.5-4.2 3.3-5.6 7.4-4.2 12.3zm-33.5 252.8L112.1 366c-6.8-9.2-13.8-14.8-21.9-16-7.7-1.2-12.6 1.4-17.7 6.9-4.8 5.1-8.8 12.3-14.3 18-7.8 6.5-9.3 6.2-19.6 9.9-6.3 2.2-11.3 4.6-14.8 11.3-2.7 5-2.1 12.2-.9 20 1.2 7.9 3 16.3.6 23.9v.2c-5 13.7-5 21.7-2.6 26.4 7.9 15.4 46.6 6.1 76.5 21.9 31.4 16.4 72.6 17.1 75.3-18 2.1-20.5-31.5-49-41-68.9zm153.9 35.8c3.2-11 6.3-21.3 6.8-29 .8-15.2 1.6-28.7 4.4-39.9 3.1-12.6 9.3-23.1 21.4-27.3 2.3-21.1 18.7-21.1 38.3-12.5 18.9 8.5 26 16 22.8 26.1 1 0 2-.1 4.2 0 5.2-16.9-14.3-28-30.7-34.8 2.9-12 2.4-24.1-.4-35.7-6-25.3-22.6-47.8-35.2-59-2.3-.1-2.1 1.9 2.6 6.5 11.6 10.7 37.1 49.2 23.3 84.9-3.9-1-7.6-1.5-10.9-1.4-5.3-29.1-17.5-53.2-23.6-64.6-11.5-21.4-29.5-65.3-37.2-95.7-4.5 6.4-12.4 11.9-22.3 15-4.7 1.5-9.7 5.5-15.9 9-13.9 8-30 8.8-42.4-1.2-4.5-3.6-8-7.6-12.6-10.3-1.6-.9-5.1-3.3-6.2-4.1-2 37.8-27.3 85.3-39.3 112.7-8.3 19.7-13.2 40.8-13.8 61.5-21.8-29.1-5.9-66.3 2.6-82.4 9.5-17.6 11-22.5 8.7-20.8-8.6 14-22 36.3-27.2 59.2-2.7 11.9-3.2 24 .3 35.2 3.5 11.2 11.1 21.5 24.6 29.9 0 0 24.8 14.3 38.3 32.5 7.4 10 9.7 18.7 7.4 24.9-2.5 6.7-9.6 8.9-16.7 8.9 4.8 6 10.3 13 14.4 19.6 37.6 25.7 82.2 15.7 114.3-7.2zM415 408.5c-10-11.3-7.2-33.1-17.1-41.6-6.9-6-13.6-5.4-22.6-5.1-7.7 8.8-25.8 19.6-38.4 16.3-11.5-2.9-18-16.3-18.8-29.5-.3.2-.7.3-1 .5-7.1 3.9-11.1 10.8-13.7 21.1-2.5 10.2-3.4 23.5-4.2 38.7-.7 11.8-6.2 26.4-9.9 40.6-3.5 13.2-5.8 25.2-1.1 36.3 7.2 14.5 19.5 20.4 33.7 19.3 14.2-1.1 30.4-9.8 43.6-25.5 22-26.6 62.3-29.7 63.2-46.5.3-5.1-3.1-13-13.7-24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4 3.9-3.4 5.9-6.3 3.1-6.6-2.8-.3-2.6 2.6-6 5.1-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2-10.4 0-18.7-4.8-24.9-9.7-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z"] }; +var faLyft = { prefix: 'fab', iconName: 'lyft', icon: [512, 512, [], "f3c3", "M0 81.1h77.8v208.7c0 33.1 15 52.8 27.2 61-12.7 11.1-51.2 20.9-80.2-2.8C7.8 334 0 310.7 0 289V81.1zm485.9 173.5v-22h23.8v-76.8h-26.1c-10.1-46.3-51.2-80.7-100.3-80.7-56.6 0-102.7 46-102.7 102.7V357c16 2.3 35.4-.3 51.7-14 17.1-14 24.8-37.2 24.8-59v-6.7h38.8v-76.8h-38.8v-23.3c0-34.6 52.2-34.6 52.2 0v77.1c0 56.6 46 102.7 102.7 102.7v-76.5c-14.5 0-26.1-11.7-26.1-25.9zm-294.3-99v113c0 15.4-23.8 15.4-23.8 0v-113H91v132.7c0 23.8 8 54 45 63.9 37 9.8 58.2-10.6 58.2-10.6-2.1 13.4-14.5 23.3-34.9 25.3-15.5 1.6-35.2-3.6-45-7.8v70.3c25.1 7.5 51.5 9.8 77.6 4.7 47.1-9.1 76.8-48.4 76.8-100.8V155.1h-77.1v.5z"] }; +var faMagento = { prefix: 'fab', iconName: 'magento', icon: [448, 512, [], "f3c4", "M445.7 127.9V384l-63.4 36.5V164.7L223.8 73.1 65.2 164.7l.4 255.9L2.3 384V128.1L224.2 0l221.5 127.9zM255.6 420.5L224 438.9l-31.8-18.2v-256l-63.3 36.6.1 255.9 94.9 54.9 95.1-54.9v-256l-63.4-36.6v255.9z"] }; +var faMandalorian = { prefix: 'fab', iconName: 'mandalorian', icon: [390, 512, [], "f50f", "M203.28 511.89c-.98-3.26-1.69-15.83-1.39-24.58.55-15.89.98-24.72 1.4-28.76.64-6.2 2.87-20.72 3.28-21.38.6-.96.4-27.87-.24-33.13-.31-2.58-.63-11.9-.69-20.73-.13-16.47-.53-20.12-2.73-24.76-1.1-2.32-1.23-3.84-.99-11.43.16-4.81 0-10.53-.34-12.71-2.05-12.97-3.46-27.7-3.25-33.9.21-6.12.43-7.15 2.06-9.67 3.05-4.71 6.51-14.04 8.62-23.27 2.26-9.86 3.88-17.18 4.59-20.74.89-4.42 2.43-9.72 4.36-15.05 2.27-6.25 2.49-15.39.37-15.39-.3 0-1.38 1.22-2.41 2.71-1.03 1.49-4.76 4.8-8.29 7.36-8.37 6.08-11.7 9.39-12.66 12.58-.93 3.11-1.02 7.23-.16 7.76.34.21 1.29 2.4 2.11 4.88 1.62 4.88 1.87 10.12.72 15.36-.39 1.77-1.05 5.47-1.46 8.23-.41 2.76-.98 6.46-1.25 8.22-.28 1.76-.97 3.68-1.55 4.26-.96.96-1.14.91-2.05-.53-.55-.87-1.2-3.01-1.44-4.75-.25-1.74-1.63-7.11-3.08-11.93-3.28-10.9-3.52-16.15-.96-20.96.92-1.73 1.67-3.81 1.67-4.61 0-2.39-2.2-5.32-7.41-9.89-7.05-6.18-8.63-7.92-10.23-11.3-1.71-3.6-3.06-4.06-4.54-1.54-1.78 3.01-2.6 9.11-2.97 22.02l-.35 12.13 1.95 2.25c3.21 3.7 12.07 16.45 13.78 19.83 3.41 6.74 4.34 11.69 4.41 23.56.07 11.84.95 22.75 2 24.71.36.66.51 1.35.34 1.52-.17.17.41 2.09 1.29 4.27.88 2.18 1.81 6.22 2.06 8.98.25 2.76 1.02 7.43 1.71 10.37 2.23 9.56 2.77 14.08 2.39 20.14-.2 3.27-.53 11.07-.73 17.32-1.31 41.76-1.85 57.98-2.04 61.21-.12 2.02-.39 11.51-.6 21.07-.36 16.3-1.3 27.37-2.42 28.65-.64.73-8.07-4.91-12.52-9.49-3.75-3.87-4.02-4.79-2.83-9.95.7-3.01 2.26-18.29 3.33-32.62.36-4.78.81-10.5 1.01-12.71.83-9.37 1.66-20.35 2.61-34.78.56-8.46 1.33-16.44 1.72-17.73.38-1.29.89-9.89 1.13-19.11l.43-16.77-2.26-4.3c-1.72-3.28-4.87-6.94-13.22-15.34-6.03-6.07-11.84-12.3-12.91-13.85l-1.95-2.81.75-10.9c1.09-15.71 1.1-48.57.02-59.06l-.89-8.7-3.28-4.52c-5.86-8.08-5.8-7.75-6.22-33.27-.1-6.07-.38-11.5-.63-12.06-.83-1.87-3.05-2.66-8.54-3.05-8.86-.62-10.96-1.9-23.85-14.55-6.15-6.04-12.34-11.97-13.75-13.19-2.81-2.42-2.79-1.99-.56-9.63l1.35-4.65-1.69-3.04c-.93-1.67-2.09-3.51-2.59-4.07-1.33-1.51-5.5-10.89-5.99-13.49-.31-1.66-.09-2.67.87-3.9 2.23-2.86 3.4-5.68 4.45-10.73 2.33-11.19 7.74-26.09 10.6-29.22 3.18-3.47 7.7-1.05 9.41 5.03 1.34 4.79 1.37 9.79.1 18.55-.53 3.68-.98 8.68-.99 11.11-.02 4.01.19 4.69 2.25 7.39 3.33 4.37 7.73 7.41 15.2 10.52 1.7.71 3.82 1.99 4.72 2.85 11.17 10.72 18.62 16.18 22.95 16.85 5.18.8 7.98 4.54 10.04 13.39 1.31 5.65 4 11.14 5.46 11.14.59 0 2.09-.63 3.33-1.39 1.98-1.22 2.25-1.73 2.25-4.18-.01-3.71-1.17-14.08-2-17.84-.37-1.66-.78-4.06-.93-5.35-.14-1.29-.61-3.85-1.03-5.69-2.55-11.16-3.65-15.46-4.1-16.05-1.55-2.02-4.08-10.2-4.93-15.92-1.64-11.11-3.96-14.23-12.91-17.39-4.64-1.64-8.89-4.12-13.32-7.78-1.15-.95-4.01-3.22-6.35-5.06-2.35-1.83-4.41-3.53-4.6-3.76-.18-.23-1.39-1.14-2.69-2.02-6.24-4.22-8.84-6.98-11.26-11.96l-2.44-5.02-.22-12.98-.22-12.98 6.91-6.55c3.95-3.75 8.48-7.35 10.59-8.43 3.31-1.69 4.45-1.89 11.37-2.05 8.53-.19 10.12.02 11.66 1.56 1.53 1.53 1.36 6.4-.29 8.5-.74.94-1.34 1.98-1.34 2.32 0 .58-2.61 4.91-5.42 8.99-.68.99-2.13 5.35-2.37 6.82 20.44 13.39 21.55 3.77 14.07 28.98l11.4 2.54c3.11-8.66 6.47-17.26 8.61-26.22.29-7.63-11.98-4.19-15.4-8.68-2.33-5.93 3.13-14.18 6.06-19.2 1.6-2.34 6.62-4.7 8.82-4.15.88.22 4.16-.35 7.37-1.28 3.18-.92 6.58-1.68 7.55-1.68.97 0 3.66-.58 5.98-1.29 3.65-1.11 4.5-1.17 6.35-.4 1.17.48 3.79 1.09 5.82 1.36 2.02.26 4.72 1.12 6 1.91 1.28.79 3.53 1.77 5.02 2.17 2.51.68 3 .57 7.05-1.67l4.35-2.4 10.7-.41c10.44-.4 10.81-.47 15.26-2.68l4.58-2.3 2.46 1.43c1.76 1.02 3.14 2.73 4.85 5.98 2.36 4.51 2.38 4.58 1.37 7.37-.88 2.44-.89 3.3-.1 6.39.5 1.96 1.45 4.62 2.1 5.91.65 1.29 1.24 3.09 1.31 4.01.31 4.33-.03 5.3-2.41 6.92-2.17 1.47-6.98 7.91-6.98 9.34 0 .32-.48 1.69-1.07 3.03-5.04 11.51-6.76 13.56-14.26 16.98-9.2 4.2-12.3 5.19-16.21 5.19-3.1 0-4 .25-4.54 1.26-.37.69-2.21 2.37-4.09 3.71-2.04 1.47-3.8 3.38-4.38 4.78-.54 1.28-1.66 2.59-2.49 2.91-.83.32-1.94 1.08-2.45 1.71-.52.62-3.66 3.04-7 5.38-3.33 2.34-6.87 5.02-7.87 5.96-1 .94-2.07 1.71-2.39 1.71s-1.28.74-2.13 1.65c-1.31 1.39-1.49 2.11-1.14 4.6.22 1.63.86 4.27 1.42 5.88 1.32 3.8 1.31 7.86-.05 10.57-1.43 2.86-.89 6.65 1.35 9.59 2.01 2.63 2.16 4.56.71 8.84-.61 1.8-1.05 5.45-1.06 8.91-.02 4.88.22 6.28 1.46 8.38 1.2 2.04 1.82 2.48 3.24 2.32 1.98-.23 2.3-1.05 4.71-12.12 2.18-10.03 3.71-11.92 13.76-17.08 2.94-1.51 7.46-3.96 10.03-5.44 2.58-1.48 6.79-3.69 9.37-4.91 6.67-3.16 11.05-6.52 15.22-11.67 7.11-8.79 9.98-16.22 12.85-33.3.55-3.28 1.43-5.65 2.86-7.73 1.29-1.87 2.37-4.62 2.89-7.31 1.02-5.3 2.85-9.08 5.58-11.51 4.7-4.18 6-1.09 4.59 10.87-.46 3.86-1.1 10.33-1.44 14.38l-.61 7.36 4.45 4.09 4.45 4.09.11 8.42c.06 4.63.47 9.53.92 10.89l.82 2.47-6.43 6.28c-8.54 8.33-12.88 13.93-16.76 21.61-1.77 3.49-3.74 7.11-4.38 8.03-2.18 3.11-6.46 13.01-8.76 20.26l-2.29 7.22-6.97 6.49c-3.83 3.57-7.96 7.25-9.17 8.17-3.05 2.32-4.26 5.15-4.26 9.99 0 2.98.43 4.96 1.59 7.26.87 1.74 1.81 3.91 2.09 4.83.28.92.98 2.22 1.57 2.89 1.4 1.59 1.92 16.12.83 23.22-.68 4.48-3.63 12.02-4.7 12.02-1.79 0-4.06 9.27-5.07 20.74-.18 2.02-.62 5.94-.98 8.7-.36 2.76-.96 9.98-1.35 16.05-.77 12.22-.19 18.77 2.05 23.15 3.41 6.69.52 12.69-11.03 22.84l-3.97 3.49.07 5.19c.04 2.86.55 6.85 1.14 8.87 4.61 15.98 4.73 16.92 4.38 37.13-.46 26.4-.26 40.27.63 44.15.42 1.84.91 5 1.08 7.02.17 2.02.66 5.33 1.08 7.36.47 2.26.78 11.02.79 22.74l.02 19.06-1.81 2.63c-2.71 3.91-15.11 13.54-15.49 12.29zm29.53-45.11c-.18-.3-.33-6.87-.33-14.59 0-14.06-.89-27.54-2.26-34.45-.4-2.02-.81-9.7-.9-17.06-.15-11.93-1.4-24.37-2.64-26.38-.66-1.07-3.02-17.66-3.03-21.3-.01-4.23 1.02-6 5.28-9.13 4.14-3.04 4.86-3.14 5.48-.72.28 1.1 1.45 5.62 2.6 10.03 3.93 15.12 4.14 16.27 4.05 21.74-.1 5.78-.13 6.13-1.74 17.73-.98 7.07-1.17 12.39-1.04 28.43.17 19.4-.64 35.73-2.04 41.27-.71 2.78-2.8 5.48-3.43 4.43zm-70.99-37.58c-.24-.38-1.01-5.24-1.73-10.79-.72-5.56-1.49-10.41-1.73-10.79-.23-.38-.68-3.3-.99-6.49-.31-3.19-.91-7.46-1.33-9.48-.99-4.79-3.35-19.35-3.42-21.07-.03-.74-.34-4.05-.7-7.36-.67-6.21-.84-27.67-.22-28.29.96-.96 6.63 2.76 11.33 7.43l5.28 5.25-.45 6.47c-.25 3.56-.6 10.23-.78 14.83-.18 4.6-.49 9.87-.67 11.71-.18 1.84-.61 9.36-.94 16.72-.79 17.41-1.94 31.29-2.65 32-.32.3-.76.24-1-.14zM74.63 162.61c21.07 12.79 17.84 14.15 28.49 17.66 13.01 4.29 18.87 7.13 23.15 16.87-43.66 36.14-69.01 57.9-76.71 70.82-31.02 52.01-5.99 101.59 62.75 87.21-14.18 29.23-77.97 28.63-98.68-4.9-24.68-39.95-22.09-118.3 61-187.66zm210.79 179.02c56.66 6.88 82.32-37.74 46.54-89.23 0 0-26.87-29.34-64.28-67.96 2.98-15.45 9.49-32.12 30.57-53.82 89.2 63.51 92 141.61 92.46 149.36 4.27 70.58-78.66 91.12-105.29 61.65z"] }; +var faMastodon = { prefix: 'fab', iconName: 'mastodon', icon: [417, 512, [], "f4f6", "M417.8 179.1c0-97.2-63.7-125.7-63.7-125.7-62.5-28.7-228.5-28.4-290.4 0 0 0-63.7 28.5-63.7 125.7 0 115.7-6.6 259.4 105.6 289.1 40.5 10.7 75.3 13 103.3 11.4 50.8-2.8 79.3-18.1 79.3-18.1l-1.7-36.9s-36.3 11.4-77.1 10.1c-40.4-1.4-83-4.4-89.6-54-.6-4.4-.9-9-.9-13.9 85.6 20.9 158.6 9.1 178.7 6.7 56.1-6.7 105-41.3 111.2-72.9 9.8-49.8 9-121.5 9-121.5zm-75.1 125.2h-46.6V190.1c0-49.7-64-51.6-64 6.9v62.5h-46.3V197c0-58.5-64-56.6-64-6.9v114.2H75.1c0-122.1-5.2-147.9 18.4-175 25.9-28.9 79.8-30.8 103.8 6.1l11.6 19.5 11.6-19.5c24.1-37.1 78.1-34.8 103.8-6.1 23.7 27.3 18.4 53 18.4 175z"] }; +var faMaxcdn = { prefix: 'fab', iconName: 'maxcdn', icon: [512, 512, [], "f136", "M461.1 442.7h-97.4L415.6 200c2.3-10.2.9-19.5-4.4-25.7-5-6.1-13.7-9.6-24.2-9.6h-49.3l-59.5 278h-97.4l59.5-278h-83.4l-59.5 278H0l59.5-278-44.6-95.4H387c39.4 0 75.3 16.3 98.3 44.9 23.3 28.6 31.8 67.4 23.6 105.9l-47.8 222.6z"] }; +var faMedapps = { prefix: 'fab', iconName: 'medapps', icon: [320, 512, [], "f3c6", "M118.3 238.4c3.5-12.5 6.9-33.6 13.2-33.6 8.3 1.8 9.6 23.4 18.6 36.6 4.6-23.5 5.3-85.1 14.1-86.7 9-.7 19.7 66.5 22 77.5 9.9 4.1 48.9 6.6 48.9 6.6 1.9 7.3-24 7.6-40 7.8-4.6 14.8-5.4 27.7-11.4 28-4.7.2-8.2-28.8-17.5-49.6l-9.4 65.5c-4.4 13-15.5-22.5-21.9-39.3-3.3-.1-62.4-1.6-47.6-7.8l31-5zM228 448c21.2 0 21.2-32 0-32H92c-21.2 0-21.2 32 0 32h136zm-24 64c21.2 0 21.2-32 0-32h-88c-21.2 0-21.2 32 0 32h88zm34.2-141.5c3.2-18.9 5.2-36.4 11.9-48.8 7.9-14.7 16.1-28.1 24-41 24.6-40.4 45.9-75.2 45.9-125.5C320 69.6 248.2 0 160 0S0 69.6 0 155.2c0 50.2 21.3 85.1 45.9 125.5 7.9 12.9 16 26.3 24 41 6.7 12.5 8.7 29.8 11.9 48.9 3.5 21 36.1 15.7 32.6-5.1-3.6-21.7-5.6-40.7-15.3-58.6C66.5 246.5 33 211.3 33 155.2 33 87.3 90 32 160 32s127 55.3 127 123.2c0 56.1-33.5 91.3-66.1 151.6-9.7 18-11.7 37.4-15.3 58.6-3.4 20.6 29 26.4 32.6 5.1z"] }; +var faMedium = { prefix: 'fab', iconName: 'medium', icon: [448, 512, [], "f23a", "M0 32v448h448V32H0zm372.2 106.1l-24 23c-2.1 1.6-3.1 4.2-2.7 6.7v169.3c-.4 2.6.6 5.2 2.7 6.7l23.5 23v5.1h-118V367l24.3-23.6c2.4-2.4 2.4-3.1 2.4-6.7V199.8l-67.6 171.6h-9.1L125 199.8v115c-.7 4.8 1 9.7 4.4 13.2l31.6 38.3v5.1H71.2v-5.1l31.6-38.3c3.4-3.5 4.9-8.4 4.1-13.2v-133c.4-3.7-1-7.3-3.8-9.8L75 138.1V133h87.3l67.4 148L289 133.1h83.2v5z"] }; +var faMediumM = { prefix: 'fab', iconName: 'medium-m', icon: [512, 512, [], "f3c7", "M71.5 142.3c.6-5.9-1.7-11.8-6.1-15.8L20.3 72.1V64h140.2l108.4 237.7L364.2 64h133.7v8.1l-38.6 37c-3.3 2.5-5 6.7-4.3 10.8v272c-.7 4.1 1 8.3 4.3 10.8l37.7 37v8.1H307.3v-8.1l39.1-37.9c3.8-3.8 3.8-5 3.8-10.8V171.2L241.5 447.1h-14.7L100.4 171.2v184.9c-1.1 7.8 1.5 15.6 7 21.2l50.8 61.6v8.1h-144v-8L65 377.3c5.4-5.6 7.9-13.5 6.5-21.2V142.3z"] }; +var faMedrt = { prefix: 'fab', iconName: 'medrt', icon: [544, 512, [], "f3c8", "M113.7 256c0 121.8 83.9 222.8 193.5 241.1-18.7 4.5-38.2 6.9-58.2 6.9C111.4 504 0 393 0 256S111.4 8 248.9 8c20.1 0 39.6 2.4 58.2 6.9C197.5 33.2 113.7 134.2 113.7 256m297.4 100.3c-77.7 55.4-179.6 47.5-240.4-14.6 5.5 14.1 12.7 27.7 21.7 40.5 61.6 88.2 182.4 109.3 269.7 47 87.3-62.3 108.1-184.3 46.5-272.6-9-12.9-19.3-24.3-30.5-34.2 37.4 78.8 10.7 178.5-67 233.9m-218.8-244c-1.4 1-2.7 2.1-4 3.1 64.3-17.8 135.9 4 178.9 60.5 35.7 47 42.9 106.6 24.4 158 56.7-56.2 67.6-142.1 22.3-201.8-50-65.5-149.1-74.4-221.6-19.8M296 224c-4.4 0-8-3.6-8-8v-40c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v40c0 4.4-3.6 8-8 8h-40c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h40c4.4 0 8 3.6 8 8v40c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-40c0-4.4 3.6-8 8-8h40c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-40z"] }; +var faMeetup = { prefix: 'fab', iconName: 'meetup', icon: [512, 512, [], "f2e0", "M99 414.3c1.1 5.7-2.3 11.1-8 12.3-5.4 1.1-10.9-2.3-12-8-1.1-5.4 2.3-11.1 7.7-12.3 5.4-1.2 11.1 2.3 12.3 8zm143.1 71.4c-6.3 4.6-8 13.4-3.7 20 4.6 6.6 13.4 8.3 20 3.7 6.3-4.6 8-13.4 3.4-20-4.2-6.5-13.1-8.3-19.7-3.7zm-86-462.3c6.3-1.4 10.3-7.7 8.9-14-1.1-6.6-7.4-10.6-13.7-9.1-6.3 1.4-10.3 7.7-9.1 14 1.4 6.6 7.6 10.6 13.9 9.1zM34.4 226.3c-10-6.9-23.7-4.3-30.6 6-6.9 10-4.3 24 5.7 30.9 10 7.1 23.7 4.6 30.6-5.7 6.9-10.4 4.3-24.1-5.7-31.2zm272-170.9c10.6-6.3 13.7-20 7.7-30.3-6.3-10.6-19.7-14-30-7.7s-13.7 20-7.4 30.6c6 10.3 19.4 13.7 29.7 7.4zm-191.1 58c7.7-5.4 9.4-16 4.3-23.7s-15.7-9.4-23.1-4.3c-7.7 5.4-9.4 16-4.3 23.7 5.1 7.8 15.6 9.5 23.1 4.3zm372.3 156c-7.4 1.7-12.3 9.1-10.6 16.9 1.4 7.4 8.9 12.3 16.3 10.6 7.4-1.4 12.3-8.9 10.6-16.6-1.5-7.4-8.9-12.3-16.3-10.9zm39.7-56.8c-1.1-5.7-6.6-9.1-12-8-5.7 1.1-9.1 6.9-8 12.6 1.1 5.4 6.6 9.1 12.3 8 5.4-1.5 9.1-6.9 7.7-12.6zM447 138.9c-8.6 6-10.6 17.7-4.9 26.3 5.7 8.6 17.4 10.6 26 4.9 8.3-6 10.3-17.7 4.6-26.3-5.7-8.7-17.4-10.9-25.7-4.9zm-6.3 139.4c26.3 43.1 15.1 100-26.3 129.1-17.4 12.3-37.1 17.7-56.9 17.1-12 47.1-69.4 64.6-105.1 32.6-1.1.9-2.6 1.7-3.7 2.9-39.1 27.1-92.3 17.4-119.4-22.3-9.7-14.3-14.6-30.6-15.1-46.9-65.4-10.9-90-94-41.1-139.7-28.3-46.9.6-107.4 53.4-114.9C151.6 70 234.1 38.6 290.1 82c67.4-22.3 136.3 29.4 130.9 101.1 41.1 12.6 52.8 66.9 19.7 95.2zm-70 74.3c-3.1-20.6-40.9-4.6-43.1-27.1-3.1-32 43.7-101.1 40-128-3.4-24-19.4-29.1-33.4-29.4-13.4-.3-16.9 2-21.4 4.6-2.9 1.7-6.6 4.9-11.7-.3-6.3-6-11.1-11.7-19.4-12.9-12.3-2-17.7 2-26.6 9.7-3.4 2.9-12 12.9-20 9.1-3.4-1.7-15.4-7.7-24-11.4-16.3-7.1-40 4.6-48.6 20-12.9 22.9-38 113.1-41.7 125.1-8.6 26.6 10.9 48.6 36.9 47.1 11.1-.6 18.3-4.6 25.4-17.4 4-7.4 41.7-107.7 44.6-112.6 2-3.4 8.9-8 14.6-5.1 5.7 3.1 6.9 9.4 6 15.1-1.1 9.7-28 70.9-28.9 77.7-3.4 22.9 26.9 26.6 38.6 4 3.7-7.1 45.7-92.6 49.4-98.3 4.3-6.3 7.4-8.3 11.7-8 3.1 0 8.3.9 7.1 10.9-1.4 9.4-35.1 72.3-38.9 87.7-4.6 20.6 6.6 41.4 24.9 50.6 11.4 5.7 62.5 15.7 58.5-11.1zm5.7 92.3c-10.3 7.4-12.9 22-5.7 32.6 7.1 10.6 21.4 13.1 32 6 10.6-7.4 13.1-22 6-32.6-7.4-10.6-21.7-13.5-32.3-6z"] }; +var faMicrosoft = { prefix: 'fab', iconName: 'microsoft', icon: [448, 512, [], "f3ca", "M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z"] }; +var faMix = { prefix: 'fab', iconName: 'mix', icon: [448, 512, [], "f3cb", "M0 64v348.9c0 56.2 88 58.1 88 0V174.3c7.9-52.9 88-50.4 88 6.5v175.3c0 57.9 96 58 96 0V240c5.3-54.7 88-52.5 88 4.3v23.8c0 59.9 88 56.6 88 0V64H0z"] }; +var faMixcloud = { prefix: 'fab', iconName: 'mixcloud', icon: [640, 512, [], "f289", "M424.43 219.729C416.124 134.727 344.135 68 256.919 68c-72.266 0-136.224 46.516-159.205 114.074-54.545 8.029-96.63 54.822-96.63 111.582 0 62.298 50.668 112.966 113.243 112.966h289.614c52.329 0 94.969-42.362 94.969-94.693 0-45.131-32.118-83.063-74.48-92.2zm-20.489 144.53H114.327c-39.04 0-70.881-31.564-70.881-70.604s31.841-70.604 70.881-70.604c18.827 0 36.548 7.475 49.838 20.766 19.963 19.963 50.133-10.227 30.18-30.18-14.675-14.398-32.672-24.365-52.053-29.349 19.935-44.3 64.79-73.926 114.628-73.926 69.496 0 125.979 56.483 125.979 125.702 0 13.568-2.215 26.857-6.369 39.594-8.943 27.517 32.133 38.939 40.147 13.29 2.769-8.306 4.984-16.889 6.369-25.472 19.381 7.476 33.502 26.303 33.502 48.453 0 28.795-23.535 52.33-52.607 52.33zm235.069-52.33c0 44.024-12.737 86.386-37.102 122.657-4.153 6.092-10.798 9.414-17.72 9.414-16.317 0-27.127-18.826-17.443-32.949 19.381-29.349 29.903-63.682 29.903-99.122s-10.521-69.773-29.903-98.845c-15.655-22.831 19.361-47.24 35.163-23.534 24.366 35.993 37.102 78.356 37.102 122.379zm-70.88 0c0 31.565-9.137 62.021-26.857 88.325-4.153 6.091-10.798 9.136-17.72 9.136-17.201 0-27.022-18.979-17.443-32.948 13.013-19.104 19.658-41.255 19.658-64.513 0-22.981-6.645-45.408-19.658-64.512-15.761-22.986 19.008-47.095 35.163-23.535 17.719 26.026 26.857 56.483 26.857 88.047z"] }; +var faMizuni = { prefix: 'fab', iconName: 'mizuni', icon: [496, 512, [], "f3cc", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm-80 351.9c-31.4 10.6-58.8 27.3-80 48.2V136c0-22.1 17.9-40 40-40s40 17.9 40 40v223.9zm120-9.9c-12.9-2-26.2-3.1-39.8-3.1-13.8 0-27.2 1.1-40.2 3.1V136c0-22.1 17.9-40 40-40s40 17.9 40 40v214zm120 57.7c-21.2-20.8-48.6-37.4-80-48V136c0-22.1 17.9-40 40-40s40 17.9 40 40v271.7z"] }; +var faModx = { prefix: 'fab', iconName: 'modx', icon: [448, 512, [], "f285", "M356 241.8l36.7 23.7V480l-133-83.8L356 241.8zM440 75H226.3l-23 37.8 153.5 96.5L440 75zm-89 142.8L55.2 32v214.5l46 29L351 217.8zM97 294.2L8 437h213.7l125-200.5L97 294.2z"] }; +var faMonero = { prefix: 'fab', iconName: 'monero', icon: [496, 512, [], "f3d0", "M352 384h108.4C417 455.9 338.1 504 248 504S79 455.9 35.6 384H144V256.2L248 361l104-105v128zM88 336V128l159.4 159.4L408 128v208h74.8c8.5-25.1 13.2-52 13.2-80C496 119 385 8 248 8S0 119 0 256c0 28 4.6 54.9 13.2 80H88z"] }; +var faNapster = { prefix: 'fab', iconName: 'napster', icon: [496, 512, [], "f3d2", "M298.3 373.6c-14.2 13.6-31.3 24.1-50.4 30.5-19-6.4-36.2-16.9-50.3-30.5h100.7zm44-199.6c20-16.9 43.6-29.2 69.6-36.2V299c0 219.4-328 217.6-328 .3V137.7c25.9 6.9 49.6 19.6 69.5 36.4 56.8-40 132.5-39.9 188.9-.1zm-208.8-58.5c64.4-60 164.3-60.1 228.9-.2-7.1 3.5-13.9 7.3-20.6 11.5-58.7-30.5-129.2-30.4-187.9.1-6.3-4-13.9-8.2-20.4-11.4zM43.8 93.2v69.3c-58.4 36.5-58.4 121.1.1 158.3 26.4 245.1 381.7 240.3 407.6 1.5l.3-1.7c58.7-36.3 58.9-121.7.2-158.2V93.2c-17.3.5-34 3-50.1 7.4-82-91.5-225.5-91.5-307.5.1-16.3-4.4-33.1-7-50.6-7.5zM259.2 352s36-.3 61.3-1.5c10.2-.5 21.1-4 25.5-6.5 26.3-15.1 25.4-39.2 26.2-47.4-79.5-.6-99.9-3.9-113 55.4zm-135.5-55.3c.8 8.2-.1 32.3 26.2 47.4 4.4 2.5 15.2 6 25.5 6.5 25.3 1.1 61.3 1.5 61.3 1.5-13.2-59.4-33.7-56.1-113-55.4zm169.1 123.4c-3.2-5.3-6.9-7.3-6.9-7.3-24.8 7.3-52.2 6.9-75.9 0 0 0-2.9 1.5-6.4 6.6-2.8 4.1-3.7 9.6-3.7 9.6 29.1 17.6 67.1 17.6 96.2 0-.1-.1-.3-4-3.3-8.9z"] }; +var faNintendoSwitch = { prefix: 'fab', iconName: 'nintendo-switch', icon: [448, 512, [], "f418", "M95.9 33.5c-44.6 8-80.5 41-91.8 84.4C0 133.6-.3 142.8.2 264.4.4 376 .5 378.6 2.4 387.3c10.3 46.5 43.3 79.6 90.3 90.5 6.1 1.4 13.9 1.7 64.1 1.9 51.9.4 57.3.3 58.7-1.1 1.4-1.4 1.5-19.3 1.5-222.2 0-150.5-.3-221.3-.9-222.6-.9-1.7-2.5-1.8-56.9-1.7-44.2.1-57.5.4-63.3 1.4zm83.9 222.6V444l-37.8-.5c-34.8-.4-38.5-.6-45.5-2.3-29.9-7.7-52-30.7-58.3-60.7-2-9.4-2-240.1-.1-249.3 5.6-26.1 23.7-47.7 48-57.4 12.2-4.9 17.9-5.5 57.6-5.6l35.9-.1v188zm-75.9-131.2c-5.8 1.1-14.7 5.6-19.5 9.7-9.7 8.4-14.6 20.4-13.8 34.5.4 7.3.8 9.3 3.8 15.2 4.4 9 10.9 15.6 19.9 20 6.2 3.1 7.8 3.4 15.9 3.7 7.3.3 9.9 0 14.8-1.7 20.1-6.8 32.3-26.3 28.8-46.4-3.9-23.7-26.6-39.7-49.9-35zm158.2-92.3c-.4.3-.6 100.8-.6 223.5 0 202.3.1 222.8 1.5 223.4 2.5.9 74.5.6 83.4-.4 37.7-4.3 71-27.2 89-61.2 2.3-4.4 5.4-11.7 7-16.2 5.8-17.4 5.7-12.8 5.7-146.1 0-106.4-.2-122.3-1.5-129-9.2-48.3-46.1-84.8-94.5-93.1-6.5-1.1-16.5-1.4-48.8-1.4-22.4-.1-40.9.2-41.2.5zm99.1 202.1c14.5 3.8 26.3 14.8 31.2 28.9 3.1 8.7 3 21.5-.1 29.5-5.7 14.7-16.8 25-31.1 28.8-23.2 6-47.9-8-54.6-31-2-7-1.9-18.9.4-26.2 6.9-22.7 31-36.1 54.2-30z"] }; +var faNode = { prefix: 'fab', iconName: 'node', icon: [640, 512, [], "f419", "M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4.1l14.8 8.8c.5.3 1.3.3 1.8 0L375 408c.5-.3.9-.9.9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6.3-.9 1-.9 1.6v66.7c0 .6.4 1.2.9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9.7-1.7 1.7-1.7h7.3c.9 0 1.7.7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7zm46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6.2.8.8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5.3-.4.5-.8.4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7.7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8zm54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1zm-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3 0 5.2 4.2 9.4 9.3 9.4 5.2-.1 9.4-4.3 9.4-9.4zm-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7.1 1.8 1.2 2.1 2.8.1 1 .3 2.7.6 3.3zm-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8zM137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3.4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3.7 2.5 1.8 3.2 1.1.7 2.5.7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1 1.3 0 2.6.3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1.7 2.6.7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2l.2-95zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4zm-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6.3-.9.9-.9 1.6v24.3c0 .7.4 1.3.9 1.6l21 12.1c.6.3 1.3.3 1.8 0l21-12.1c.6-.3.9-.9.9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3.7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1.7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2l36.7-21.3zM559 219c-.4.3-.7.7-.7 1.2v13.6c0 .5.3 1 .7 1.2l11.8 6.8c.4.3 1 .3 1.4 0L584 235c.4-.3.7-.7.7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0L559 219zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7.1-.5.2-1.1.2-1.7zm-74.3-124.9l-.8.5h1.1l-.3-.5zm76.2 130.2l-.4-.7v.9l.4-.2z"] }; +var faNodeJs = { prefix: 'fab', iconName: 'node-js', icon: [448, 512, [], "f3d3", "M224 508c-6.7 0-13.5-1.8-19.4-5.2l-61.7-36.5c-9.2-5.2-4.7-7-1.7-8 12.3-4.3 14.8-5.2 27.9-12.7 1.4-.8 3.2-.5 4.6.4l47.4 28.1c1.7 1 4.1 1 5.7 0l184.7-106.6c1.7-1 2.8-3 2.8-5V149.3c0-2.1-1.1-4-2.9-5.1L226.8 37.7c-1.7-1-4-1-5.7 0L36.6 144.3c-1.8 1-2.9 3-2.9 5.1v213.1c0 2 1.1 4 2.9 4.9l50.6 29.2c27.5 13.7 44.3-2.4 44.3-18.7V167.5c0-3 2.4-5.3 5.4-5.3h23.4c2.9 0 5.4 2.3 5.4 5.3V378c0 36.6-20 57.6-54.7 57.6-10.7 0-19.1 0-42.5-11.6l-48.4-27.9C8.1 389.2.7 376.3.7 362.4V149.3c0-13.8 7.4-26.8 19.4-33.7L204.6 9c11.7-6.6 27.2-6.6 38.8 0l184.7 106.7c12 6.9 19.4 19.8 19.4 33.7v213.1c0 13.8-7.4 26.7-19.4 33.7L243.4 502.8c-5.9 3.4-12.6 5.2-19.4 5.2zm149.1-210.1c0-39.9-27-50.5-83.7-58-57.4-7.6-63.2-11.5-63.2-24.9 0-11.1 4.9-25.9 47.4-25.9 37.9 0 51.9 8.2 57.7 33.8.5 2.4 2.7 4.2 5.2 4.2h24c1.5 0 2.9-.6 3.9-1.7s1.5-2.6 1.4-4.1c-3.7-44.1-33-64.6-92.2-64.6-52.7 0-84.1 22.2-84.1 59.5 0 40.4 31.3 51.6 81.8 56.6 60.5 5.9 65.2 14.8 65.2 26.7 0 20.6-16.6 29.4-55.5 29.4-48.9 0-59.6-12.3-63.2-36.6-.4-2.6-2.6-4.5-5.3-4.5h-23.9c-3 0-5.3 2.4-5.3 5.3 0 31.1 16.9 68.2 97.8 68.2 58.4-.1 92-23.2 92-63.4z"] }; +var faNpm = { prefix: 'fab', iconName: 'npm', icon: [576, 512, [], "f3d4", "M288 288h-32v-64h32v64zm288-128v192H288v32H160v-32H0V160h576zm-416 32H32v128h64v-96h32v96h32V192zm160 0H192v160h64v-32h64V192zm224 0H352v128h64v-96h32v96h32v-96h32v96h32V192z"] }; +var faNs8 = { prefix: 'fab', iconName: 'ns8', icon: [640, 512, [], "f3d5", "M187.1 159.9l-34.2 113.7-54.5-113.7H49L0 320h44.9L76 213.5 126.6 320h56.9L232 159.9h-44.9zm452.5-.9c-2.9-18-23.9-28.1-42.1-31.3-44.6-7.8-101.9 16.3-88.5 58.8v.1c-43.8 8.7-74.3 26.8-94.2 48.2-3-9.8-13.6-16.6-34-16.6h-87.6c-9.3 0-12.9-2.3-11.5-7.4 1.6-5.5 1.9-6.8 3.7-12.2 2.1-6.4 7.8-7.1 13.3-7.1h133.5l9.7-31.5c-139.7 0-144.5-.5-160.1 1.2-12.3 1.3-23.5 4.8-30.6 15-6.8 9.9-14.4 35.6-17.6 47.1-5.4 19.4-.6 28.6 32.8 28.6h87.3c7.8 0 8.8 2.7 7.7 6.6-1.1 4.4-2.8 10-4.5 14.6-1.6 4.2-4.7 7.4-13.8 7.4H216.3L204.7 320c139.9 0 145.3-.6 160.9-2.3 6.6-.7 13-2.1 18.5-4.9.2 3.7.5 7.3 1.2 10.8 5.4 30.5 27.4 52.3 56.8 59.5 48.6 11.9 108.7-16.8 135.1-68 18.7-36.2 14.1-76.2-3.4-105.5h.1c29.6-5.9 70.3-22 65.7-50.6zM530.7 263.7c-5.9 29.5-36.6 47.8-61.6 43.9-30.9-4.8-38.5-39.5-14.1-64.8 16.2-16.8 45.2-24 68.5-26.9 6.7 14.1 10.3 32 7.2 47.8zm21.8-83.1c-4.2-6-9.8-18.5-2.5-26.3 6.7-7.2 20.9-10.1 31.8-7.7 15.3 3.4 19.7 15.9 4.9 24.4-10.7 6.1-23.6 8.1-34.2 9.6z"] }; +var faNutritionix = { prefix: 'fab', iconName: 'nutritionix', icon: [400, 512, [], "f3d6", "M88 8.1S221.4-.1 209 112.5c0 0 19.1-74.9 103-40.6 0 0-17.7 74-88 56 0 0 14.6-54.6 66.1-56.6 0 0-39.9-10.3-82.1 48.8 0 0-19.8-94.5-93.6-99.7 0 0 75.2 19.4 77.6 107.5 0 .1-106.4 7-104-119.8zm312 315.6c0 48.5-9.7 95.3-32 132.3-42.2 30.9-105 48-168 48-62.9 0-125.8-17.1-168-48C9.7 419 0 372.2 0 323.7 0 275.3 17.7 229 40 192c42.2-30.9 97.1-48.6 160-48.6 63 0 117.8 17.6 160 48.6 22.3 37 40 83.3 40 131.7zM120 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM192 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM264 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM336 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm24-39.6c-4.8-22.3-7.4-36.9-16-56-38.8-19.9-90.5-32-144-32S94.8 180.1 56 200c-8.8 19.5-11.2 33.9-16 56 42.2-7.9 98.7-14.8 160-14.8s117.8 6.9 160 14.8z"] }; +var faOdnoklassniki = { prefix: 'fab', iconName: 'odnoklassniki', icon: [320, 512, [], "f263", "M275.1 334c-27.4 17.4-65.1 24.3-90 26.9l20.9 20.6 76.3 76.3c27.9 28.6-17.5 73.3-45.7 45.7-19.1-19.4-47.1-47.4-76.3-76.6L84 503.4c-28.2 27.5-73.6-17.6-45.4-45.7 19.4-19.4 47.1-47.4 76.3-76.3l20.6-20.6c-24.6-2.6-62.9-9.1-90.6-26.9-32.6-21-46.9-33.3-34.3-59 7.4-14.6 27.7-26.9 54.6-5.7 0 0 36.3 28.9 94.9 28.9s94.9-28.9 94.9-28.9c26.9-21.1 47.1-8.9 54.6 5.7 12.4 25.7-1.9 38-34.5 59.1zM30.3 129.7C30.3 58 88.6 0 160 0s129.7 58 129.7 129.7c0 71.4-58.3 129.4-129.7 129.4s-129.7-58-129.7-129.4zm66 0c0 35.1 28.6 63.7 63.7 63.7s63.7-28.6 63.7-63.7c0-35.4-28.6-64-63.7-64s-63.7 28.6-63.7 64z"] }; +var faOdnoklassnikiSquare = { prefix: 'fab', iconName: 'odnoklassniki-square', icon: [448, 512, [], "f264", "M184.2 177.1c0-22.1 17.9-40 39.8-40s39.8 17.9 39.8 40c0 22-17.9 39.8-39.8 39.8s-39.8-17.9-39.8-39.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-305.1 97.1c0 44.6 36.4 80.9 81.1 80.9s81.1-36.2 81.1-80.9c0-44.8-36.4-81.1-81.1-81.1s-81.1 36.2-81.1 81.1zm174.5 90.7c-4.6-9.1-17.3-16.8-34.1-3.6 0 0-22.7 18-59.3 18s-59.3-18-59.3-18c-16.8-13.2-29.5-5.5-34.1 3.6-7.9 16.1 1.1 23.7 21.4 37 17.3 11.1 41.2 15.2 56.6 16.8l-12.9 12.9c-18.2 18-35.5 35.5-47.7 47.7-17.6 17.6 10.7 45.8 28.4 28.6l47.7-47.9c18.2 18.2 35.7 35.7 47.7 47.9 17.6 17.2 46-10.7 28.6-28.6l-47.7-47.7-13-12.9c15.5-1.6 39.1-5.9 56.2-16.8 20.4-13.3 29.3-21 21.5-37z"] }; +var faOldRepublic = { prefix: 'fab', iconName: 'old-republic', icon: [496, 512, [], "f510", "M235.76 10.23c7.5-.31 15-.28 22.5-.09 3.61.14 7.2.4 10.79.73 4.92.27 9.79 1.03 14.67 1.62 2.93.43 5.83.98 8.75 1.46 7.9 1.33 15.67 3.28 23.39 5.4 12.24 3.47 24.19 7.92 35.76 13.21 26.56 12.24 50.94 29.21 71.63 49.88 20.03 20.09 36.72 43.55 48.89 69.19 1.13 2.59 2.44 5.1 3.47 7.74 2.81 6.43 5.39 12.97 7.58 19.63 4.14 12.33 7.34 24.99 9.42 37.83.57 3.14 1.04 6.3 1.4 9.47.55 3.83.94 7.69 1.18 11.56.83 8.34.84 16.73.77 25.1-.07 4.97-.26 9.94-.75 14.89-.24 3.38-.51 6.76-.98 10.12-.39 2.72-.63 5.46-1.11 8.17-.9 5.15-1.7 10.31-2.87 15.41-4.1 18.5-10.3 36.55-18.51 53.63-15.77 32.83-38.83 62.17-67.12 85.12a246.503 246.503 0 0 1-56.91 34.86c-6.21 2.68-12.46 5.25-18.87 7.41-3.51 1.16-7.01 2.38-10.57 3.39-6.62 1.88-13.29 3.64-20.04 5-4.66.91-9.34 1.73-14.03 2.48-5.25.66-10.5 1.44-15.79 1.74-6.69.66-13.41.84-20.12.81-6.82.03-13.65-.12-20.45-.79-3.29-.23-6.57-.5-9.83-.95-2.72-.39-5.46-.63-8.17-1.11-4.12-.72-8.25-1.37-12.35-2.22-4.25-.94-8.49-1.89-12.69-3.02-8.63-2.17-17.08-5.01-25.41-8.13-10.49-4.12-20.79-8.75-30.64-14.25-2.14-1.15-4.28-2.29-6.35-3.57-11.22-6.58-21.86-14.1-31.92-22.34-34.68-28.41-61.41-66.43-76.35-108.7-3.09-8.74-5.71-17.65-7.8-26.68-1.48-6.16-2.52-12.42-3.58-18.66-.4-2.35-.61-4.73-.95-7.09-.6-3.96-.75-7.96-1.17-11.94-.8-9.47-.71-18.99-.51-28.49.14-3.51.34-7.01.7-10.51.31-3.17.46-6.37.92-9.52.41-2.81.65-5.65 1.16-8.44.7-3.94 1.3-7.9 2.12-11.82 3.43-16.52 8.47-32.73 15.26-48.18 1.15-2.92 2.59-5.72 3.86-8.59 8.05-16.71 17.9-32.56 29.49-47.06 20-25.38 45.1-46.68 73.27-62.47 7.5-4.15 15.16-8.05 23.07-11.37 15.82-6.88 32.41-11.95 49.31-15.38 3.51-.67 7.04-1.24 10.56-1.85 2.62-.47 5.28-.7 7.91-1.08 3.53-.53 7.1-.68 10.65-1.04 2.46-.24 4.91-.36 7.36-.51m8.64 24.41c-9.23.1-18.43.99-27.57 2.23-7.3 1.08-14.53 2.6-21.71 4.3-13.91 3.5-27.48 8.34-40.46 14.42-10.46 4.99-20.59 10.7-30.18 17.22-4.18 2.92-8.4 5.8-12.34 9.03-5.08 3.97-9.98 8.17-14.68 12.59-2.51 2.24-4.81 4.7-7.22 7.06-28.22 28.79-48.44 65.39-57.5 104.69-2.04 8.44-3.54 17.02-4.44 25.65-1.1 8.89-1.44 17.85-1.41 26.8.11 7.14.38 14.28 1.22 21.37.62 7.12 1.87 14.16 3.2 21.18 1.07 4.65 2.03 9.32 3.33 13.91 6.29 23.38 16.5 45.7 30.07 65.75 8.64 12.98 18.78 24.93 29.98 35.77 16.28 15.82 35.05 29.04 55.34 39.22 7.28 3.52 14.66 6.87 22.27 9.63 5.04 1.76 10.06 3.57 15.22 4.98 11.26 3.23 22.77 5.6 34.39 7.06 2.91.29 5.81.61 8.72.9 13.82 1.08 27.74 1 41.54-.43 4.45-.6 8.92-.99 13.35-1.78 3.63-.67 7.28-1.25 10.87-2.1 4.13-.98 8.28-1.91 12.36-3.07 26.5-7.34 51.58-19.71 73.58-36.2 15.78-11.82 29.96-25.76 42.12-41.28 3.26-4.02 6.17-8.31 9.13-12.55 3.39-5.06 6.58-10.25 9.6-15.54 2.4-4.44 4.74-8.91 6.95-13.45 5.69-12.05 10.28-24.62 13.75-37.49 2.59-10.01 4.75-20.16 5.9-30.45 1.77-13.47 1.94-27.1 1.29-40.65-.29-3.89-.67-7.77-1-11.66-2.23-19.08-6.79-37.91-13.82-55.8-5.95-15.13-13.53-29.63-22.61-43.13-12.69-18.8-28.24-35.68-45.97-49.83-25.05-20-54.47-34.55-85.65-42.08-7.78-1.93-15.69-3.34-23.63-4.45-3.91-.59-7.85-.82-11.77-1.24-7.39-.57-14.81-.72-22.22-.58zM139.26 83.53c13.3-8.89 28.08-15.38 43.3-20.18-3.17 1.77-6.44 3.38-9.53 5.29-11.21 6.68-21.52 14.9-30.38 24.49-6.8 7.43-12.76 15.73-17.01 24.89-3.29 6.86-5.64 14.19-6.86 21.71-.93 4.85-1.3 9.81-1.17 14.75.13 13.66 4.44 27.08 11.29 38.82 5.92 10.22 13.63 19.33 22.36 27.26 4.85 4.36 10.24 8.09 14.95 12.6 2.26 2.19 4.49 4.42 6.43 6.91 2.62 3.31 4.89 6.99 5.99 11.1.9 3.02.66 6.2.69 9.31.02 4.1-.04 8.2.03 12.3.14 3.54-.02 7.09.11 10.63.08 2.38.02 4.76.05 7.14.16 5.77.06 11.53.15 17.3.11 2.91.02 5.82.13 8.74.03 1.63.13 3.28-.03 4.91-.91.12-1.82.18-2.73.16-10.99 0-21.88-2.63-31.95-6.93-6-2.7-11.81-5.89-17.09-9.83-5.75-4.19-11.09-8.96-15.79-14.31-6.53-7.24-11.98-15.39-16.62-23.95-1.07-2.03-2.24-4.02-3.18-6.12-1.16-2.64-2.62-5.14-3.67-7.82-4.05-9.68-6.57-19.94-8.08-30.31-.49-4.44-1.09-8.88-1.2-13.35-.7-15.73.84-31.55 4.67-46.82 2.12-8.15 4.77-16.18 8.31-23.83 6.32-14.2 15.34-27.18 26.3-38.19 6.28-6.2 13.13-11.84 20.53-16.67zm175.37-20.12c2.74.74 5.41 1.74 8.09 2.68 6.36 2.33 12.68 4.84 18.71 7.96 13.11 6.44 25.31 14.81 35.82 24.97 10.2 9.95 18.74 21.6 25.14 34.34 1.28 2.75 2.64 5.46 3.81 8.26 6.31 15.1 10 31.26 11.23 47.57.41 4.54.44 9.09.45 13.64.07 11.64-1.49 23.25-4.3 34.53-1.97 7.27-4.35 14.49-7.86 21.18-3.18 6.64-6.68 13.16-10.84 19.24-6.94 10.47-15.6 19.87-25.82 27.22-10.48 7.64-22.64 13.02-35.4 15.38-3.51.69-7.08 1.08-10.66 1.21-1.85.06-3.72.16-5.56-.1-.28-2.15 0-4.31-.01-6.46-.03-3.73.14-7.45.1-11.17.19-7.02.02-14.05.21-21.07.03-2.38-.03-4.76.03-7.14.17-5.07-.04-10.14.14-15.21.1-2.99-.24-6.04.51-8.96.66-2.5 1.78-4.86 3.09-7.08 4.46-7.31 11.06-12.96 17.68-18.26 5.38-4.18 10.47-8.77 15.02-13.84 7.68-8.37 14.17-17.88 18.78-28.27 2.5-5.93 4.52-12.1 5.55-18.46.86-4.37 1.06-8.83 1.01-13.27-.02-7.85-1.4-15.65-3.64-23.17-1.75-5.73-4.27-11.18-7.09-16.45-3.87-6.93-8.65-13.31-13.96-19.2-9.94-10.85-21.75-19.94-34.6-27.1-1.85-1.02-3.84-1.82-5.63-2.97zm-100.8 58.45c.98-1.18 1.99-2.33 3.12-3.38-.61.93-1.27 1.81-1.95 2.68-3.1 3.88-5.54 8.31-7.03 13.06-.87 3.27-1.68 6.6-1.73 10-.07 2.52-.08 5.07.32 7.57 1.13 7.63 4.33 14.85 8.77 21.12 2 2.7 4.25 5.27 6.92 7.33 1.62 1.27 3.53 2.09 5.34 3.05 3.11 1.68 6.32 3.23 9.07 5.48 2.67 2.09 4.55 5.33 4.4 8.79-.01 73.67 0 147.34-.01 221.02 0 1.35-.08 2.7.04 4.04.13 1.48.82 2.83 1.47 4.15.86 1.66 1.78 3.34 3.18 4.62.85.77 1.97 1.4 3.15 1.24 1.5-.2 2.66-1.35 3.45-2.57.96-1.51 1.68-3.16 2.28-4.85.76-2.13.44-4.42.54-6.63.14-4.03-.02-8.06.14-12.09.03-5.89.03-11.77.06-17.66.14-3.62.03-7.24.11-10.86.15-4.03-.02-8.06.14-12.09.03-5.99.03-11.98.07-17.97.14-3.62.02-7.24.11-10.86.14-3.93-.02-7.86.14-11.78.03-5.99.03-11.98.06-17.97.16-3.94-.01-7.88.19-11.82.29 1.44.13 2.92.22 4.38.19 3.61.42 7.23.76 10.84.32 3.44.44 6.89.86 10.32.37 3.1.51 6.22.95 9.31.57 4.09.87 8.21 1.54 12.29 1.46 9.04 2.83 18.11 5.09 26.99 1.13 4.82 2.4 9.61 4 14.3 2.54 7.9 5.72 15.67 10.31 22.62 1.73 2.64 3.87 4.98 6.1 7.21.27.25.55.51.88.71.6.25 1.31-.07 1.7-.57.71-.88 1.17-1.94 1.7-2.93 4.05-7.8 8.18-15.56 12.34-23.31.7-1.31 1.44-2.62 2.56-3.61 1.75-1.57 3.84-2.69 5.98-3.63 2.88-1.22 5.9-2.19 9.03-2.42 6.58-.62 13.11.75 19.56 1.85 3.69.58 7.4 1.17 11.13 1.41 3.74.1 7.48.05 11.21-.28 8.55-.92 16.99-2.96 24.94-6.25 5.3-2.24 10.46-4.83 15.31-7.93 11.46-7.21 21.46-16.57 30.04-27.01 1.17-1.42 2.25-2.9 3.46-4.28-1.2 3.24-2.67 6.37-4.16 9.48-1.25 2.9-2.84 5.61-4.27 8.42-5.16 9.63-11.02 18.91-17.75 27.52-4.03 5.21-8.53 10.05-13.33 14.57-6.64 6.05-14.07 11.37-22.43 14.76-8.21 3.37-17.31 4.63-26.09 3.29-3.56-.58-7.01-1.69-10.41-2.88-2.79-.97-5.39-2.38-8.03-3.69-3.43-1.71-6.64-3.81-9.71-6.08 2.71 3.06 5.69 5.86 8.7 8.61 4.27 3.76 8.74 7.31 13.63 10.23 3.98 2.45 8.29 4.4 12.84 5.51 1.46.37 2.96.46 4.45.6-1.25 1.1-2.63 2.04-3.99 2.98-9.61 6.54-20.01 11.86-30.69 16.43-20.86 8.7-43.17 13.97-65.74 15.34-4.66.24-9.32.36-13.98.36-4.98-.11-9.97-.13-14.92-.65-11.2-.76-22.29-2.73-33.17-5.43-10.35-2.71-20.55-6.12-30.3-10.55-8.71-3.86-17.12-8.42-24.99-13.79-1.83-1.31-3.74-2.53-5.37-4.08 6.6-1.19 13.03-3.39 18.99-6.48 5.74-2.86 10.99-6.66 15.63-11.07 2.24-2.19 4.29-4.59 6.19-7.09-3.43 2.13-6.93 4.15-10.62 5.78-4.41 2.16-9.07 3.77-13.81 5.02-5.73 1.52-11.74 1.73-17.61 1.14-8.13-.95-15.86-4.27-22.51-8.98-4.32-2.94-8.22-6.43-11.96-10.06-9.93-10.16-18.2-21.81-25.66-33.86-3.94-6.27-7.53-12.75-11.12-19.22-1.05-2.04-2.15-4.05-3.18-6.1 2.85 2.92 5.57 5.97 8.43 8.88 8.99 8.97 18.56 17.44 29.16 24.48 7.55 4.9 15.67 9.23 24.56 11.03 3.11.73 6.32.47 9.47.81 2.77.28 5.56.2 8.34.3 5.05.06 10.11.04 15.16-.16 3.65-.16 7.27-.66 10.89-1.09 2.07-.25 4.11-.71 6.14-1.2 3.88-.95 8.11-.96 11.83.61 4.76 1.85 8.44 5.64 11.38 9.71 2.16 3.02 4.06 6.22 5.66 9.58 1.16 2.43 2.46 4.79 3.55 7.26 1 2.24 2.15 4.42 3.42 6.52.67 1.02 1.4 2.15 2.62 2.55 1.06-.75 1.71-1.91 2.28-3.03 2.1-4.16 3.42-8.65 4.89-13.05 2.02-6.59 3.78-13.27 5.19-20.02 2.21-9.25 3.25-18.72 4.54-28.13.56-3.98.83-7.99 1.31-11.97.87-10.64 1.9-21.27 2.24-31.94.08-1.86.24-3.71.25-5.57.01-4.35.25-8.69.22-13.03-.01-2.38-.01-4.76 0-7.13.05-5.07-.2-10.14-.22-15.21-.2-6.61-.71-13.2-1.29-19.78-.73-5.88-1.55-11.78-3.12-17.51-2.05-7.75-5.59-15.03-9.8-21.82-3.16-5.07-6.79-9.88-11.09-14.03-3.88-3.86-8.58-7.08-13.94-8.45-1.5-.41-3.06-.45-4.59-.64.07-2.99.7-5.93 1.26-8.85 1.59-7.71 3.8-15.3 6.76-22.6 1.52-4.03 3.41-7.9 5.39-11.72 3.45-6.56 7.62-12.79 12.46-18.46zm31.27 1.7c.35-.06.71-.12 1.07-.19.19 1.79.09 3.58.1 5.37v38.13c-.01 1.74.13 3.49-.15 5.22-.36-.03-.71-.05-1.06-.05-.95-3.75-1.72-7.55-2.62-11.31-.38-1.53-.58-3.09-1.07-4.59-1.7-.24-3.43-.17-5.15-.2-5.06-.01-10.13 0-15.19-.01-1.66-.01-3.32.09-4.98-.03-.03-.39-.26-.91.16-1.18 1.28-.65 2.72-.88 4.06-1.35 3.43-1.14 6.88-2.16 10.31-3.31 1.39-.48 2.9-.72 4.16-1.54.04-.56.02-1.13-.05-1.68-1.23-.55-2.53-.87-3.81-1.28-3.13-1.03-6.29-1.96-9.41-3.02-1.79-.62-3.67-1-5.41-1.79-.03-.37-.07-.73-.11-1.09 5.09-.19 10.2.06 15.3-.12 3.36-.13 6.73.08 10.09-.07.12-.39.26-.77.37-1.16 1.08-4.94 2.33-9.83 3.39-14.75zm5.97-.2c.36.05.72.12 1.08.2.98 3.85 1.73 7.76 2.71 11.61.36 1.42.56 2.88 1.03 4.27 2.53.18 5.07-.01 7.61.05 5.16.12 10.33.12 15.49.07.76-.01 1.52.03 2.28.08-.04.36-.07.72-.1 1.08-1.82.83-3.78 1.25-5.67 1.89-3.73 1.23-7.48 2.39-11.22 3.57-.57.17-1.12.42-1.67.64-.15.55-.18 1.12-.12 1.69.87.48 1.82.81 2.77 1.09 4.88 1.52 9.73 3.14 14.63 4.6.38.13.78.27 1.13.49.4.27.23.79.15 1.18-1.66.13-3.31.03-4.97.04-5.17.01-10.33-.01-15.5.01-1.61.03-3.22-.02-4.82.21-.52 1.67-.72 3.42-1.17 5.11-.94 3.57-1.52 7.24-2.54 10.78-.36.01-.71.02-1.06.06-.29-1.73-.15-3.48-.15-5.22v-38.13c.02-1.78-.08-3.58.11-5.37zM65.05 168.33c1.12-2.15 2.08-4.4 3.37-6.46-1.82 7.56-2.91 15.27-3.62 23-.8 7.71-.85 15.49-.54 23.23 1.05 19.94 5.54 39.83 14.23 57.88 2.99 5.99 6.35 11.83 10.5 17.11 6.12 7.47 12.53 14.76 19.84 21.09 4.8 4.1 9.99 7.78 15.54 10.8 3.27 1.65 6.51 3.39 9.94 4.68 5.01 2.03 10.19 3.61 15.42 4.94 3.83.96 7.78 1.41 11.52 2.71 5 1.57 9.47 4.61 13.03 8.43 4.93 5.23 8.09 11.87 10.2 18.67.99 2.9 1.59 5.91 2.17 8.92.15.75.22 1.52.16 2.29-6.5 2.78-13.26 5.06-20.26 6.18-4.11.78-8.29.99-12.46 1.08-10.25.24-20.47-1.76-30.12-5.12-3.74-1.42-7.49-2.85-11.03-4.72-8.06-3.84-15.64-8.7-22.46-14.46-2.92-2.55-5.83-5.13-8.4-8.03-9.16-9.83-16.3-21.41-21.79-33.65-2.39-5.55-4.61-11.18-6.37-16.96-1.17-3.94-2.36-7.89-3.26-11.91-.75-2.94-1.22-5.95-1.87-8.92-.46-2.14-.69-4.32-1.03-6.48-.85-5.43-1.28-10.93-1.33-16.43.11-6.18.25-12.37 1.07-18.5.4-2.86.67-5.74 1.15-8.6.98-5.7 2.14-11.37 3.71-16.93 3.09-11.65 7.48-22.95 12.69-33.84zm363.73-6.44c1.1 1.66 1.91 3.48 2.78 5.26 2.1 4.45 4.24 8.9 6.02 13.49 7.61 18.76 12.3 38.79 13.04 59.05.02 1.76.07 3.52.11 5.29.13 9.57-1.27 19.09-3.18 28.45-.73 3.59-1.54 7.17-2.58 10.69-4.04 14.72-10 29-18.41 41.78-8.21 12.57-19.01 23.55-31.84 31.41-5.73 3.59-11.79 6.64-18.05 9.19-5.78 2.19-11.71 4.03-17.8 5.11-6.4 1.05-12.91 1.52-19.4 1.23-7.92-.48-15.78-2.07-23.21-4.85-1.94-.8-3.94-1.46-5.84-2.33-.21-1.51.25-2.99.53-4.46 1.16-5.74 3.03-11.36 5.7-16.58 2.37-4.51 5.52-8.65 9.46-11.9 2.43-2.05 5.24-3.61 8.16-4.83 3.58-1.5 7.47-1.97 11.24-2.83 7.23-1.71 14.37-3.93 21.15-7 10.35-4.65 19.71-11.38 27.65-19.46 1.59-1.61 3.23-3.18 4.74-4.87 3.37-3.76 6.71-7.57 9.85-11.53 7.48-10.07 12.82-21.59 16.71-33.48 1.58-5.3 3.21-10.6 4.21-16.05.63-2.87 1.04-5.78 1.52-8.68.87-6.09 1.59-12.22 1.68-18.38.12-6.65.14-13.32-.53-19.94-.73-7.99-1.87-15.96-3.71-23.78z"] }; +var faOpencart = { prefix: 'fab', iconName: 'opencart', icon: [640, 512, [], "f23d", "M423.3 440.7c0 25.3-20.3 45.6-45.6 45.6s-45.8-20.3-45.8-45.6 20.6-45.8 45.8-45.8c25.4 0 45.6 20.5 45.6 45.8zm-253.9-45.8c-25.3 0-45.6 20.6-45.6 45.8s20.3 45.6 45.6 45.6 45.8-20.3 45.8-45.6-20.5-45.8-45.8-45.8zm291.7-270C158.9 124.9 81.9 112.1 0 25.7c34.4 51.7 53.3 148.9 373.1 144.2 333.3-5 130 86.1 70.8 188.9 186.7-166.7 319.4-233.9 17.2-233.9z"] }; +var faOpenid = { prefix: 'fab', iconName: 'openid', icon: [448, 512, [], "f19b", "M271.5 432l-68 32C88.5 453.7 0 392.5 0 318.2c0-71.5 82.5-131 191.7-144.3v43c-71.5 12.5-124 53-124 101.3 0 51 58.5 93.3 135.7 103v-340l68-33.2v384zM448 291l-131.3-28.5 36.8-20.7c-19.5-11.5-43.5-20-70-24.8v-43c46.2 5.5 87.7 19.5 120.3 39.3l35-19.8L448 291z"] }; +var faOpera = { prefix: 'fab', iconName: 'opera', icon: [496, 512, [], "f26a", "M313.9 32.7c-170.2 0-252.6 223.8-147.5 355.1 36.5 45.4 88.6 75.6 147.5 75.6 36.3 0 70.3-11.1 99.4-30.4-43.8 39.2-101.9 63-165.3 63-3.9 0-8 0-11.9-.3C104.6 489.6 0 381.1 0 248 0 111 111 0 248 0h.8c63.1.3 120.7 24.1 164.4 63.1-29-19.4-63.1-30.4-99.3-30.4zm101.8 397.7c-40.9 24.7-90.7 23.6-132-5.8 56.2-20.5 97.7-91.6 97.7-176.6 0-84.7-41.2-155.8-97.4-176.6 41.8-29.2 91.2-30.3 132.9-5 105.9 98.7 105.5 265.7-1.2 364z"] }; +var faOptinMonster = { prefix: 'fab', iconName: 'optin-monster', icon: [576, 512, [], "f23c", "M550.671 450.303c0 11.62-15.673 19.457-32.158 14.863-12.16-3.243-31.346-17.565-36.211-27.294-5.674-11.62 4.054-32.698 18.916-30.806 15.674 1.621 49.453 25.401 49.453 43.237zM372.86 75.223c-3.783-72.151-100.796-79.718-125.928-23.51 44.588-24.321 90.257-15.673 125.928 23.51zM74.795 407.066c-15.673 1.621-49.452 25.401-49.452 43.237 0 11.62 15.673 19.457 32.157 14.863 12.16-3.243 31.076-17.565 35.94-27.294 5.946-11.62-3.782-32.698-18.645-30.806zm497.765 14.322c1.081 3.513 1.892 7.026 1.892 10.809.81 31.616-44.317 64.045-73.503 65.125-17.295.81-34.59-8.377-42.696-23.51-113.497 4.053-226.994 4.864-340.22 0-8.377 15.133-25.672 24.05-42.967 23.51-28.915-1.081-74.043-33.509-73.503-65.125.27-3.783.811-7.296 1.892-10.809-5.566-9.463-4.845-15.282 5.405-11.62 3.243-5.134 7.026-9.458 11.08-13.782-2.57-10.917 1.27-14.094 11.079-9.188 4.594-3.243 9.998-6.485 15.944-9.188 0-15.757 11.839-11.131 17.295-5.675 12.467-1.78 20.129.709 26.753 5.675v-19.726c-12.987 0-40.641-11.375-45.94-36.212-4.974-20.725 2.607-38.075 25.132-47.56.81-5.945 8.107-14.052 14.862-15.944 7.567-1.892 12.431 4.594 14.052 10.269 7.425 0 17.757 1.465 21.078 8.107 5.405-.541 11.079-1.352 16.484-1.892-2.432-1.892-5.134-3.513-8.107-4.594-5.134-8.917-13.782-11.079-24.591-11.62 0-.81 0-1.621.27-2.702-19.727-.541-44.048-5.675-54.857-17.835-21.321-23.638-15.935-83.577 12.16-103.498 8.377-5.675 21.618-.811 22.699 9.728 2.425 20.598.399 26.833 26.212 25.942 8.107-7.836 16.755-14.592 26.483-19.997-14.862-1.352-28.914 1.621-43.778 3.783 12.752-12.48 23.953-25.442 56.748-42.427 23.511-11.89 49.993-20.808 76.205-23.239-18.646-7.837-39.993-11.891-59.721-16.484 76.475-16.214 174.569-22.159 244.289 37.562 18.105 15.403 32.427 36.211 42.696 59.992 39.799 4.853 36.47-5.581 38.643-25.132 1.081-10.269 14.322-15.403 22.699-9.458 14.862 10.539 22.159 30.806 24.59 48.101 2.162 17.835.27 41.345-12.43 55.127-10.809 12.16-34.32 17.565-53.776 18.105v2.703c-11.08.27-20.268 2.432-25.673 11.62-2.972 1.081-5.674 2.703-8.377 4.594 5.675.54 11.35 1.351 16.755 1.891 1.869-5.619 12.535-8.377 21.077-8.377 1.621-5.405 6.756-11.89 14.052-10.269s14.052 9.998 14.863 15.944c10.809 4.324 22.159 12.16 25.131 25.672 1.892 8.107 1.621 15.133.27 21.888-5.726 25.262-33.361 36.212-45.939 36.212 0 6.756 0 13.241-.27 19.726 8.01-6.006 16.367-7.158 26.752-5.675 5.919-5.919 17.565-9.41 17.565 5.675 5.675 2.703 11.349 5.945 15.944 9.188 10.1-5.051 13.669-.539 10.809 9.188 4.053 4.323 8.107 8.917 11.079 13.782 10.136-3.62 11.021 2.078 5.409 11.62zm-73.773-254.016c17.295 6.756 26.212 22.159 30.265 35.67 1.081-10.539-2.702-39.453-13.782-51.073-7.296-7.296-14.052-5.134-14.052.81.001 6.216-1.35 11.62-2.431 14.593zm-18.646 12.43c12.971 15.673 17.024 41.615 12.7 62.963 10.809-2.162 20.537-6.215 26.212-12.16 1.892-2.162 3.783-4.864 4.864-7.566-1.081-21.348-10.269-42.697-29.725-48.912-3.242 3.243-9.187 4.864-14.051 5.675zm-21.889.811c7.567 20.537 12.431 42.696 14.322 64.585 3.513 0 7.567-.27 11.62-.811 5.945-24.321-.27-51.614-14.052-63.504-3.783 0-8.107 0-11.89-.27zM77.768 167.372c-1.081-2.973-2.432-8.377-2.432-14.593 0-5.945-7.026-8.107-14.052-.81-11.35 11.62-14.863 40.534-13.782 51.073 4.053-13.512 12.971-28.915 30.266-35.67zm5.675 75.394c-4.324-21.348-.27-47.291 12.701-62.963-4.865-.811-10.809-2.432-14.052-5.675-19.457 6.215-28.375 27.563-29.726 48.912 1.351 2.702 2.972 5.404 4.864 7.566 5.675 6.215 15.403 9.998 26.213 12.16zm41.345-61.073c-5.134 1.081-9.998 2.973-14.862 4.865l-12.16 5.134v-.27c-7.296 14.052-9.999 34.319-5.405 52.965 4.594.541 8.647.811 12.7.811 2.432-22.159 9.188-43.778 19.727-63.505zm88.095-23.239c0 42.155 34.319 76.205 76.205 76.205s76.205-34.05 76.205-76.205c0-41.886-34.319-75.935-76.205-75.935s-76.205 34.049-76.205 75.935zm152.41 97.283c9.969 50.608 3.299 64.692 16.484 58.099 15.944-8.107 22.699-39.183 22.97-57.019-12.971-.81-26.213-.81-39.454-1.08zm-71.611-.541v-.27c-.27 5.134.27 38.103 4.324 41.075 11.079 5.405 39.453 4.594 51.073 1.081 5.405-1.621 2.432-37.022 1.621-41.886-18.916-.27-38.102-.27-57.018 0zm-14.053 0v-.27c-19.456.27-38.642.27-57.829.811-1.892 9.187-4.594 48.911 1.892 51.614 12.971 5.675 41.616 5.134 54.586 1.621 4.595-2.432 2.433-45.399 1.351-53.776zm-85.662 57.56c5.405 2.432 8.647 2.432 9.728-4.324 1.892-8.647 2.432-36.752 4.865-52.155-12.16.27-24.591.811-36.752 1.621-5.405 19.727.27 45.129 22.159 54.858zm-65.666-11.08c43.778 47.02 92.689 85.663 155.923 106.47 67.558-19.186 115.659-59.991 163.219-107.011-11.095-4.315-7.715-10.363-7.296-11.62-8.918-.81-17.835-1.892-26.483-2.702-9.458 32.968-35.94 52.965-46.75 31.616-2.702-5.134-3.513-11.62-4.594-16.754-3.783 8.377-13.242 8.107-24.591 8.918-13.241 1.081-31.617 1.351-44.048-2.972-2.972 12.971-11.079 12.971-26.752 14.322-14.052 1.352-48.642 4.054-54.857-10.809-1.081 28.644-35.13 9.998-45.129-7.026-3.243-5.675-5.405-11.35-7.026-17.565-7.837.81-15.673 1.621-23.511 2.702 2.443 3.663 1.549 9.052-8.105 12.431zM115.6 453.545c-5.674-23.239-18.646-49.722-33.508-54.046-22.429-6.756-68.909 23.51-66.207 54.586 12.701 19.457 39.994 35.67 59.181 36.481 17.835.81 35.94-11.08 39.724-28.914.539-2.432.81-5.134.81-8.107zm7.296-5.944c33.509-19.457 69.179-35.671 105.931-47.02-38.643-20.537-68.098-47.831-97.283-77.016-2.162 1.352-5.134 2.432-7.836 3.513-1.637 4.91 8.718 5.33 5.405 12.431-2.162 4.054-8.648 7.567-15.133 9.188-2.161 2.702-5.134 4.864-7.836 6.485h-.27c-.27 13.511-.27 27.024.27 40.535 8.939 15.964 15.426 33.314 16.752 51.884zm320.764 12.7c-36.752-21.348-74.044-41.345-115.659-52.965-13.782 6.215-27.833 11.349-42.155 15.403-2.162.811-2.162.811-4.324 0-11.89-3.783-23.239-8.107-34.859-13.241-40.265 11.62-77.286 29.185-112.416 50.803h-.27v.27c.27 0 .27 0 .27-.27 103.227 4.054 206.455 3.513 309.413 0zm27.023-64.045l-.27.27c.541-13.782.811-27.563.811-41.345-2.973-1.621-5.675-4.054-8.107-6.756-6.485-1.351-12.971-5.134-15.133-8.918-1.892-4.053 1.351-7.566 5.945-10.269-.27-.541-.541-1.621-.541-2.432-2.972-.811-5.405-1.892-7.567-3.243-31.616 29.455-65.396 56.749-103.498 76.746 38.914 11.62 75.935 28.104 111.875 47.561 1.05-14.692 7.231-35.749 16.485-51.614zm23.24 3.244c-14.593 4.323-27.834 30.806-33.509 54.046 0 23.826 21.278 37.897 40.534 37.022 19.186-.811 46.48-17.024 59.181-36.481 2.973-31.077-43.507-61.344-66.206-54.587zM290.709 134.133c.045 0 .089.003.134.003.046 0 .09-.003.136-.003h-.27zm0 96.743c28.645 0 51.884-21.618 51.884-48.371 0-36.092-40.507-58.079-72.151-44.318 9.458 2.972 16.484 11.62 16.484 21.618 0 23.257-33.291 31.955-46.48 11.35-7.297 34.067 19.368 59.721 50.263 59.721zM68.039 474.083c.54 6.486 12.16 12.701 21.618 9.458 6.756-2.703 14.593-10.539 17.295-16.214 2.973-7.026-1.081-19.997-9.728-18.375-8.917 1.621-29.725 16.754-29.185 25.131zm410.75-25.131c-8.377-1.621-12.431 11.349-9.458 18.375 2.432 5.675 10.269 13.511 17.295 16.214 9.187 3.243 21.078-2.972 21.348-9.458.811-8.377-20.267-23.51-29.185-25.131z"] }; +var faOsi = { prefix: 'fab', iconName: 'osi', icon: [495, 512, [], "f41a", "M0 259.2C2.3 123.4 97.4 26.8 213.8 11.1c138.8-18.6 255.6 75.8 278 201.1 21.3 118.8-44 230-151.6 274-9.3 3.8-14.4 1.7-18-7.7-17.8-46.3-35.6-92.7-53.4-139-3.1-8.1-1-13.2 7-16.8 24.2-11 39.3-29.4 43.3-55.8 6.4-42.4-24.5-78.7-64.5-82.2-39-3.4-71.8 23.7-77.5 59.7-5.2 33 11.1 63.7 41.9 77.7 9.6 4.4 11.5 8.6 7.8 18.4-17.9 46.6-35.8 93.2-53.7 139.9-2.6 6.9-8.3 9.3-15.5 6.5-52.6-20.3-101.4-61-130.8-119C1.9 318.7 1.6 280.2 0 259.2zm20.9-1.9c.4 6.6.6 14.3 1.3 22.1 6.3 71.9 49.6 143.5 131 183.1 3.2 1.5 4.4.8 5.6-2.3 14.9-39.1 29.9-78.2 45-117.3 1.3-3.3.6-4.8-2.4-6.7-31.6-19.9-47.3-48.5-45.6-86 1-21.6 9.3-40.5 23.8-56.3 30-32.7 77-39.8 115.5-17.6 31.9 18.4 49.5 53.8 45.2 90.4-3.6 30.6-19.3 53.9-45.7 69.8-2.7 1.6-3.5 2.9-2.3 6 15.2 39.2 30.2 78.4 45.2 117.7 1.2 3.1 2.4 3.8 5.6 2.3 35.5-16.6 65.2-40.3 88.1-72 34.8-48.2 49.1-101.9 42.3-161C459.8 112 354.1 14.7 218 31.5 111.9 44.5 22.7 134 20.9 257.3z"] }; +var faPage4 = { prefix: 'fab', iconName: 'page4', icon: [496, 512, [], "f3d7", "M248 504C111 504 0 393 0 256S111 8 248 8c20.9 0 41.3 2.6 60.7 7.5L42.3 392H248v112zm0-143.6V146.8L98.6 360.4H248zm96 31.6v92.7c45.7-19.2 84.5-51.7 111.4-92.7H344zm57.4-138.2l-21.2 8.4 21.2 8.3v-16.7zm-20.3 54.5c-6.7 0-8 6.3-8 12.9v7.7h16.2v-10c0-5.9-2.3-10.6-8.2-10.6zM496 256c0 37.3-8.2 72.7-23 104.4H344V27.3C433.3 64.8 496 153.1 496 256zM360.4 143.6h68.2V96h-13.9v32.6h-13.9V99h-13.9v29.6h-12.7V96h-13.9v47.6zm68.1 185.3H402v-11c0-15.4-5.6-25.2-20.9-25.2-15.4 0-20.7 10.6-20.7 25.9v25.3h68.2v-15zm0-103l-68.2 29.7V268l68.2 29.5v-16.6l-14.4-5.7v-26.5l14.4-5.9v-16.9zm-4.8-68.5h-35.6V184H402v-12.2h11c8.6 15.8 1.3 35.3-18.6 35.3-22.5 0-28.3-25.3-15.5-37.7l-11.6-10.6c-16.2 17.5-12.2 63.9 27.1 63.9 34 0 44.7-35.9 29.3-65.3z"] }; +var faPagelines = { prefix: 'fab', iconName: 'pagelines', icon: [384, 512, [], "f18c", "M384 312.7c-55.1 136.7-187.1 54-187.1 54-40.5 81.8-107.4 134.4-184.6 134.7-16.1 0-16.6-24.4 0-24.4 64.4-.3 120.5-42.7 157.2-110.1-41.1 15.9-118.6 27.9-161.6-82.2 109-44.9 159.1 11.2 178.3 45.5 9.9-24.4 17-50.9 21.6-79.7 0 0-139.7 21.9-149.5-98.1 119.1-47.9 152.6 76.7 152.6 76.7 1.6-16.7 3.3-52.6 3.3-53.4 0 0-106.3-73.7-38.1-165.2 124.6 43 61.4 162.4 61.4 162.4.5 1.6.5 23.8 0 33.4 0 0 45.2-89 136.4-57.5-4.2 134-141.9 106.4-141.9 106.4-4.4 27.4-11.2 53.4-20 77.5 0 0 83-91.8 172-20z"] }; +var faPalfed = { prefix: 'fab', iconName: 'palfed', icon: [576, 512, [], "f3d8", "M384.9 193.9c0-47.4-55.2-44.2-95.4-29.8-1.3 39.4-2.5 80.7-3 119.8.7 2.8 2.6 6.2 15.1 6.2 36.8 0 83.4-42.8 83.3-96.2zm-194.5 72.2c.2 0 6.5-2.7 11.2-2.7 26.6 0 20.7 44.1-14.4 44.1-21.5 0-37.1-18.1-37.1-43 0-42 42.9-95.6 100.7-126.5 1-12.4 3-22 10.5-28.2 11.2-9 26.6-3.5 29.5 11.1 72.2-22.2 135.2 1 135.2 72 0 77.9-79.3 152.6-140.1 138.2-.1 39.4.9 74.4 2.7 100v.2c.2 3.4.6 12.5-5.3 19.1-9.6 10.6-33.4 10-36.4-22.3-4.1-44.4.2-206.1 1.4-242.5-21.5 15-58.5 50.3-58.5 75.9.2 2.5.4 4 .6 4.6zM8 181.1s-.1 37.4 38.4 37.4h30l22.4 217.2s0 44.3 44.7 44.3h288.9s44.7-.4 44.7-44.3l22.4-217.2h30s38.4 1.2 38.4-37.4c0 0 .1-37.4-38.4-37.4h-30.1c-7.3-25.6-30.2-74.3-119.4-74.3h-28V50.3s-2.7-18.4-21.1-18.4h-85.8s-21.1 0-21.1 18.4v19.1h-28.1s-105 4.2-120.5 74.3h-29S8 142.5 8 181.1z"] }; +var faPatreon = { prefix: 'fab', iconName: 'patreon', icon: [512, 512, [], "f3d9", "M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z"] }; +var faPaypal = { prefix: 'fab', iconName: 'paypal', icon: [384, 512, [], "f1ed", "M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z"] }; +var faPeriscope = { prefix: 'fab', iconName: 'periscope', icon: [448, 512, [], "f3da", "M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z"] }; +var faPhabricator = { prefix: 'fab', iconName: 'phabricator', icon: [496, 512, [], "f3db", "M323 262.1l-.1-13s21.7-19.8 21.1-21.2l-9.5-20c-.6-1.4-29.5-.5-29.5-.5l-9.4-9.3s.2-28.5-1.2-29.1l-20.1-9.2c-1.4-.6-20.7 21-20.7 21l-13.1-.2s-20.5-21.4-21.9-20.8l-20 8.3c-1.4.5.2 28.9.2 28.9l-9.1 9.1s-29.2-.9-29.7.4l-8.1 19.8c-.6 1.4 21 21 21 21l.1 12.9s-21.7 19.8-21.1 21.2l9.5 20c.6 1.4 29.5.5 29.5.5l9.4 9.3s-.2 31.8 1.2 32.3l20.1 8.3c1.4.6 20.7-23.5 20.7-23.5l13.1.2s20.5 23.8 21.8 23.3l20-7.5c1.4-.6-.2-32.1-.2-32.1l9.1-9.1s29.2.9 29.7-.5l8.1-19.8c.7-1.1-20.9-20.7-20.9-20.7zm-44.9-8.7c.7 17.1-12.8 31.6-30.1 32.4-17.3.8-32.1-12.5-32.8-29.6-.7-17.1 12.8-31.6 30.1-32.3 17.3-.8 32.1 12.5 32.8 29.5zm201.2-37.9l-97-97-.1.1c-75.1-73.3-195.4-72.8-269.8 1.6-50.9 51-27.8 27.9-95.7 95.3-22.3 22.3-22.3 58.7 0 81 69.9 69.4 46.4 46 97.4 97l.1-.1c75.1 73.3 195.4 72.9 269.8-1.6 51-50.9 27.9-27.9 95.3-95.3 22.3-22.3 22.3-58.7 0-81zM140.4 363.8c-59.6-59.5-59.6-156 0-215.5 59.5-59.6 156-59.5 215.6 0 59.5 59.5 59.6 156 0 215.6-59.6 59.5-156 59.4-215.6-.1z"] }; +var faPhoenixFramework = { prefix: 'fab', iconName: 'phoenix-framework', icon: [640, 512, [], "f3dc", "M212.9 344.3c3.8-.1 22.8-1.4 25.6-2.2-2.4-2.6-43.6-1-68-49.6-4.3-8.6-7.5-17.6-6.4-27.6 2.9-25.5 32.9-30 52-18.5 36 21.6 63.3 91.3 113.7 97.5 37 4.5 84.6-17 108.2-45.4-.6-.1-.8-.2-1-.1-.4.1-.8.2-1.1.3-33.3 12.1-94.3 9.7-134.7-14.8-37.6-22.8-53.1-58.7-51.8-74.6 1.8-21.3 22.9-23.2 35.9-19.6 14.4 3.9 24.4 17.6 38.9 27.4 15.6 10.4 32.9 13.7 51.3 10.3 14.9-2.7 34.4-12.3 36.5-14.5-1.1-.1-1.8-.1-2.5-.2-6.2-.6-12.4-.8-18.5-1.7C279.8 194.5 262.1 47.4 138.5 37.9 94.2 34.5 39.1 46 2.2 72.9c-.8.6-1.5 1.2-2.2 1.8.1.2.1.3.2.5.8 0 1.6-.1 2.4-.2 6.3-1 12.5-.8 18.7.3 23.8 4.3 47.7 23.1 55.9 76.5 5.3 34.3-.7 50.8 8 86.1 19 77.1 91 107.6 127.7 106.4zM75.3 64.9c-.9-1-.9-1.2-1.3-2 12.1-2.6 24.2-4.1 36.6-4.8-1.1 14.7-22.2 21.3-35.3 6.8zm196.9 350.5c-42.8 1.2-92-26.7-123.5-61.4-4.6-5-16.8-20.2-18.6-23.4l.4-.4c6.6 4.1 25.7 18.6 54.8 27 24.2 7 48.1 6.3 71.6-3.3 22.7-9.3 41-.5 43.1 2.9-18.5 3.8-20.1 4.4-24 7.9-5.1 4.4-4.6 11.7 7 17.2 26.2 12.4 63-2.8 97.2 25.4 2.4 2 8.1 7.8 10.1 10.7-.1.2-.3.3-.4.5-4.8-1.5-16.4-7.5-40.2-9.3-24.7-2-46.3 5.3-77.5 6.2zm174.8-252c16.4-5.2 41.3-13.4 66.5-3.3 16.1 6.5 26.2 18.7 32.1 34.6 3.5 9.4 5.1 19.7 5.1 28.7-.2 0-.4 0-.6.1-.2-.4-.4-.9-.5-1.3-5-22-29.9-43.8-67.6-29.9-50.2 18.6-130.4 9.7-176.9-48-.7-.9-2.4-1.7-1.3-3.2.1-.2 2.1.6 3 1.3 18.1 13.4 38.3 21.9 60.3 26.2 30.5 6.1 54.6 2.9 79.9-5.2zm102.7 117.5c-32.4.2-33.8 50.1-103.6 64.4-18.2 3.7-38.7 4.6-44.9 4.2v-.4c2.8-1.5 14.7-2.6 29.7-16.6 7.9-7.3 15.3-15.1 22.8-22.9 19.5-20.2 41.4-42.2 81.9-39 23.1 1.8 29.3 8.2 36.1 12.7.3.2.4.5.7.9-.5 0-.7.1-.9 0-7-2.7-14.3-3.3-21.8-3.3zm-12.3-24.1c-.1.2-.1.4-.2.6-28.9-4.4-48-7.9-68.5 4-17 9.9-31.4 20.5-62 24.4-27.1 3.4-45.1 2.4-66.1-8-.3-.2-.6-.4-1-.6 0-.2.1-.3.1-.5 24.9 3.8 36.4 5.1 55.5-5.8 22.3-12.9 40.1-26.6 71.3-31 29.6-4.1 51.3 2.5 70.9 16.9zM268.6 97.3c-.6-.6-1.1-1.2-2.1-2.3 7.6 0 29.7-1.2 53.4 8.4 19.7 8 32.2 21 50.2 32.9 11.1 7.3 23.4 9.3 36.4 8.1 4.3-.4 8.5-1.2 12.8-1.7.4-.1.9 0 1.5.3-.6.4-1.2.9-1.8 1.2-8.1 4-16.7 6.3-25.6 7.1-26.1 2.6-50.3-3.7-73.4-15.4-19.3-9.9-36.4-22.9-51.4-38.6zM640 335.7c-3.5 3.1-22.7 11.6-42.7 5.3-12.3-3.9-19.5-14.9-31.6-24.1-10-7.6-20.9-7.9-28.1-8.4.6-.8.9-1.2 1.2-1.4 14.8-9.2 30.5-12.2 47.3-6.5 12.5 4.2 19.2 13.5 30.4 24.2 10.8 10.4 21 9.9 23.1 10.5.1-.1.2 0 .4.4zm-212.5 137c2.2 1.2 1.6 1.5 1.5 2-18.5-1.4-33.9-7.6-46.8-22.2-21.8-24.7-41.7-27.9-48.6-29.7.5-.2.8-.4 1.1-.4 13.1.1 26.1.7 38.9 3.9 25.3 6.4 35 25.4 41.6 35.3 3.2 4.8 7.3 8.3 12.3 11.1z"] }; +var faPhoenixSquadron = { prefix: 'fab', iconName: 'phoenix-squadron', icon: [513, 512, [], "f511", "M96.24 62.81C142.91 26.57 202.15 6.57 261.28 8.08c29.67-.38 59.29 5.38 87.17 15.37-24.2-4.64-49.18-6.35-73.6-2.45-43 5.35-83.26 27.23-112.16 59.35 5.69-.99 10.81-3.68 16.07-5.88 18.19-7.89 37.6-13.29 57.4-14.87 19.8-2.14 39.75-.43 59.45 1.93-14.46 2.79-29.2 4.58-43.11 9.61-34.53 11.11-65.46 33.26-86.55 62.82-13.84 19.77-23.7 42.99-24.74 67.33-.35 16.54 5.23 34.91 19.89 44.17 11.13 6.66 24.85 9.39 37.63 6.76 15.49-2.47 30.16-8.67 43.73-16.38 11.55-6.84 22.73-14.59 32.05-24.32 3.8-3.23 2.54-8.48 2.63-12.83-2.13-.34-4.4-1.11-6.32.3a203.975 203.975 0 0 1-35.93 15.42c-20.07 6.19-42.28 8.48-62.28.78 12.83 1.73 26.14.31 37.85-5.46 20.29-9.75 36.92-25.27 54.6-38.88 27.84-21.29 57.64-40.11 89.17-55.47 25.78-12.01 53.09-22.85 81.81-24.2-15.68 13.76-32.25 26.6-46.92 41.51-14.55 14.04-27.54 29.58-40.23 45.31-3.53 4.61-8.98 6.96-13.62 10.19-22.24 15.03-40.6 35.96-52.04 60.28-9.36 19.74-14.55 41.97-11.81 63.84 1.95 13.73 8.74 27.67 20.96 35.01 12.94 7.99 29.14 8.09 43.61 5.11 32.9-7.47 61.61-28.97 81.28-56 20.5-27.6 30.61-62.38 29.25-96.64-.52-7.52-1.58-15-1.67-22.55 8.02 19.54 14.87 39.83 16.7 61.01 2.01 14.32.75 28.84-1.62 43.02-1.92 11.02-5.69 21.58-7.81 32.53 20.36-22.73 34.17-51.24 39.46-81.31 5.72-35.37.58-72.36-14.25-104.95 20.84 32.12 32.43 69.79 35.81 107.8.5 12.77.5 25.58 0 38.34-2.91 34.26-12.97 67.95-29.76 98-26.2 47.48-68.2 85.89-117.54 108.32-78.52 36.34-175.2 31.41-248.72-14.72-38.84-23.78-71.06-58.32-91.68-98.96C10.72 337.43 2.04 305.5 0 273.13V241.7c3.94-69.97 40.99-136.32 96.24-178.89m222.65 80.57c5.51-.8 10.82-2.57 16.02-4.5 4.99-1.77 9.27-5.95 10.35-11.25-8.91 5-17.95 9.95-26.37 15.75z"] }; +var faPhp = { prefix: 'fab', iconName: 'php', icon: [640, 512, [], "f457", "M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z"] }; +var faPiedPiper = { prefix: 'fab', iconName: 'pied-piper', icon: [448, 512, [], "f2ae", "M32 419L0 479.2l.8-328C.8 85.3 54 32 120 32h327.2c-93 28.9-189.9 94.2-253.9 168.6C122.7 282 82.6 338 32 419M448 32S305.2 98.8 261.6 199.1c-23.2 53.6-28.9 118.1-71 158.6-28.9 27.8-69.8 38.2-105.3 56.3-23.2 12-66.4 40.5-84.9 66h328.4c66 0 119.3-53.3 119.3-119.2-.1 0-.1-328.8-.1-328.8z"] }; +var faPiedPiperAlt = { prefix: 'fab', iconName: 'pied-piper-alt', icon: [576, 512, [], "f1a8", "M242 187c6.3-11.8 13.2-17 25.9-21.8 27.3-10.3 40.2-30.5 58.9-51.1 11.9 8.4 12 24.6 31.6 23v21.8l6.3.3c37.4-14.4 74.7-30.2 106.6-54.6 48.3-36.8 52.9-50 81.3-100l2-2.6c-.6 14.1-6.3 27.3-12.4 39.9-30.5 63.8-78.7 100.3-146.8 116.7-12.4 2.9-26.4 3.2-37.6 8.9 1.4 9.8 13.2 18.1 13.2 23 0 3.4-5.5 7.2-7.5 8.6-11.2-12.9-16.1-19.3-22.7-22.1-7.6-3.5-63.9-6.4-98.8 10zm137.9 256.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9L244 246zm-12.6 31.8l24.1 61.2 21-13.8-31.3-50.9-13.8 3.5zM555.5 0l-.6 1.1-.3.9.6-.6.3-1.4zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46v27.3l11.8-3.4-2.9-23.8h-8.9zm76.1 2.9c0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3l2 12.4c9-1.5 58.4-6.6 58.4-14.1z"] }; +var faPiedPiperHat = { prefix: 'fab', iconName: 'pied-piper-hat', icon: [640, 512, [], "f4e5", "M640 24.9c-80.8 53.6-89.4 92.5-96.4 104.4-6.7 12.2-11.7 60.3-23.3 83.6-11.7 23.6-54.2 42.2-66.1 50-11.7 7.8-28.3 38.1-41.9 64.2-108.1-4.4-167.4 38.8-259.2 93.6 29.4-9.7 43.3-16.7 43.3-16.7 94.2-36 139.3-68.3 281.1-49.2 1.1 0 1.9.6 2.8.8 3.9 2.2 5.3 6.9 3.1 10.8l-53.9 95.8c-2.5 4.7-7.8 7.2-13.1 6.1-126.8-23.8-226.9 17.3-318.9 18.6C24.1 488 0 453.4 0 451.8c0-1.1.6-1.7 1.7-1.7 0 0 38.3 0 103.1-15.3C178.4 294.5 244 245.4 315.4 245.4c0 0 71.7 0 90.6 61.9 22.8-39.7 28.3-49.2 28.3-49.2 5.3-9.4 35-77.2 86.4-141.4 51.5-64 90.4-79.9 119.3-91.8z"] }; +var faPiedPiperPp = { prefix: 'fab', iconName: 'pied-piper-pp', icon: [448, 512, [], "f1a7", "M205.3 174.6c0 21.1-14.2 38.1-31.7 38.1-7.1 0-12.8-1.2-17.2-3.7v-68c4.4-2.7 10.1-4.2 17.2-4.2 17.5 0 31.7 16.9 31.7 37.8zm52.6 67c-7.1 0-12.8 1.5-17.2 4.2v68c4.4 2.5 10.1 3.7 17.2 3.7 17.4 0 31.7-16.9 31.7-37.8 0-21.1-14.3-38.1-31.7-38.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM185 255.1c41 0 74.2-35.6 74.2-79.6 0-44-33.2-79.6-74.2-79.6-12 0-24.1 3.2-34.6 8.8h-45.7V311l51.8-10.1v-50.6c8.6 3.1 18.1 4.8 28.5 4.8zm158.4 25.3c0-44-33.2-79.6-73.9-79.6-3.2 0-6.4.2-9.6.7-3.7 12.5-10.1 23.8-19.2 33.4-13.8 15-32.2 23.8-51.8 24.8V416l51.8-10.1v-50.6c8.6 3.2 18.2 4.7 28.7 4.7 40.8 0 74-35.6 74-79.6z"] }; +var faPinterest = { prefix: 'fab', iconName: 'pinterest', icon: [496, 512, [], "f0d2", "M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3.8-3.4 5-20.3 6.9-28.1.6-2.5.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z"] }; +var faPinterestP = { prefix: 'fab', iconName: 'pinterest-p', icon: [384, 512, [], "f231", "M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z"] }; +var faPinterestSquare = { prefix: 'fab', iconName: 'pinterest-square', icon: [448, 512, [], "f0d3", "M448 80v352c0 26.5-21.5 48-48 48H154.4c9.8-16.4 22.4-40 27.4-59.3 3-11.5 15.3-58.4 15.3-58.4 8 15.3 31.4 28.2 56.3 28.2 74.1 0 127.4-68.1 127.4-152.7 0-81.1-66.2-141.8-151.4-141.8-106 0-162.2 71.1-162.2 148.6 0 36 19.2 80.8 49.8 95.1 4.7 2.2 7.1 1.2 8.2-3.3.8-3.4 5-20.1 6.8-27.8.6-2.5.3-4.6-1.7-7-10.1-12.3-18.3-34.9-18.3-56 0-54.2 41-106.6 110.9-106.6 60.3 0 102.6 41.1 102.6 99.9 0 66.4-33.5 112.4-77.2 112.4-24.1 0-42.1-19.9-36.4-44.4 6.9-29.2 20.3-60.7 20.3-81.8 0-53-75.5-45.7-75.5 25 0 21.7 7.3 36.5 7.3 36.5-31.4 132.8-36.1 134.5-29.6 192.6l2.2.8H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z"] }; +var faPlaystation = { prefix: 'fab', iconName: 'playstation', icon: [576, 512, [], "f3df", "M570.9 372.3c-11.3 14.2-38.8 24.3-38.8 24.3L327 470.2v-54.3l150.9-53.8c17.1-6.1 19.8-14.8 5.8-19.4-13.9-4.6-39.1-3.3-56.2 2.9L327 381.1v-56.4c23.2-7.8 47.1-13.6 75.7-16.8 40.9-4.5 90.9.6 130.2 15.5 44.2 14 49.2 34.7 38 48.9zm-224.4-92.5v-139c0-16.3-3-31.3-18.3-35.6-11.7-3.8-19 7.1-19 23.4v347.9l-93.8-29.8V32c39.9 7.4 98 24.9 129.2 35.4C424.1 94.7 451 128.7 451 205.2c0 74.5-46 102.8-104.5 74.6zM43.2 410.2c-45.4-12.8-53-39.5-32.3-54.8 19.1-14.2 51.7-24.9 51.7-24.9l134.5-47.8v54.5l-96.8 34.6c-17.1 6.1-19.7 14.8-5.8 19.4 13.9 4.6 39.1 3.3 56.2-2.9l46.4-16.9v48.8c-51.6 9.3-101.4 7.3-153.9-10z"] }; +var faProductHunt = { prefix: 'fab', iconName: 'product-hunt', icon: [512, 512, [], "f288", "M326.3 218.8c0 20.5-16.7 37.2-37.2 37.2h-70.3v-74.4h70.3c20.5 0 37.2 16.7 37.2 37.2zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-128.1-37.2c0-47.9-38.9-86.8-86.8-86.8H169.2v248h49.6v-74.4h70.3c47.9 0 86.8-38.9 86.8-86.8z"] }; +var faPushed = { prefix: 'fab', iconName: 'pushed', icon: [432, 512, [], "f3e1", "M407 111.9l-98.5-9 14-33.4c10.4-23.5-10.8-40.4-28.7-37L22.5 76.9c-15.1 2.7-26 18.3-21.4 36.6l105.1 348.3c6.5 21.3 36.7 24.2 47.7 7l35.3-80.8 235.2-231.3c16.4-16.8 4.3-42.9-17.4-44.8zM297.6 53.6c5.1-.7 7.5 2.5 5.2 7.4L286 100.9 108.6 84.6l189-31zM22.7 107.9c-3.1-5.1 1-10 6.1-9.1l248.7 22.7-96.9 230.7L22.7 107.9zM136 456.4c-2.6 4-7.9 3.1-9.4-1.2L43.5 179.7l127.7 197.6c-7 15-35.2 79.1-35.2 79.1zm272.8-314.5L210.1 337.3l89.7-213.7 106.4 9.7c4 1.1 5.7 5.3 2.6 8.6z"] }; +var faPython = { prefix: 'fab', iconName: 'python', icon: [448, 512, [], "f3e2", "M167.8 36.4c-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1zm-6.7 28.4c11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4zm185.2 81.4v47.5c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6-7.7-30.9-22.3-54.2-53.4-54.2h-40.1zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3z"] }; +var faQq = { prefix: 'fab', iconName: 'qq', icon: [448, 512, [], "f1d6", "M433.754 420.445c-11.526 1.393-44.86-52.741-44.86-52.741 0 31.345-16.136 72.247-51.051 101.786 16.842 5.192 54.843 19.167 45.803 34.421-7.316 12.343-125.51 7.881-159.632 4.037-34.122 3.844-152.316 8.306-159.632-4.037-9.045-15.25 28.918-29.214 45.783-34.415-34.92-29.539-51.059-70.445-51.059-101.792 0 0-33.334 54.134-44.859 52.741-5.37-.65-12.424-29.644 9.347-99.704 10.261-33.024 21.995-60.478 40.144-105.779C60.683 98.063 108.982.006 224 0c113.737.006 163.156 96.133 160.264 214.963 18.118 45.223 29.912 72.85 40.144 105.778 21.768 70.06 14.716 99.053 9.346 99.704z"] }; +var faQuinscape = { prefix: 'fab', iconName: 'quinscape', icon: [489, 512, [], "f459", "M301.9 474.6h-1.3c-87.3 0-158.1-70.8-158.1-158.1s70.8-158.1 158.1-158.1c94.9 0 168.2 83.1 157 176.6 4 5.1 8.2 9.6 11.2 15.3 13.4-30.3 20.3-62.4 20.3-97.7C489.1 117.5 379.6 8 244.5 8 109.5 8 0 117.5 0 252.6s109.5 244.6 244.5 244.6c24.8 0 47.8-3.2 70.4-10.1-5.2-3.5-9-8.2-13.4-12.6l.4.1zm-21.2-69.8c0-54.8 44.4-99.2 99.2-99.2 54.8 0 99.2 44.4 99.2 99.2 0 54.8-44.4 99.2-99.2 99.2-54.8 0-99.2-44.4-99.2-99.2"] }; +var faQuora = { prefix: 'fab', iconName: 'quora', icon: [448, 512, [], "f2c4", "M440.5 386.7h-29.3c-1.5 13.5-10.5 30.8-33 30.8-20.5 0-35.3-14.2-49.5-35.8 44.2-34.2 74.7-87.5 74.7-153C403.5 111.2 306.8 32 205 32 105.3 32 7.3 111.7 7.3 228.7c0 134.1 131.3 221.6 249 189C276 451.3 302 480 351.5 480c81.8 0 90.8-75.3 89-93.3zM297 329.2C277.5 300 253.3 277 205.5 277c-30.5 0-54.3 10-69 22.8l12.2 24.3c6.2-3 13-4 19.8-4 35.5 0 53.7 30.8 69.2 61.3-10 3-20.7 4.2-32.7 4.2-75 0-107.5-53-107.5-156.7C97.5 124.5 130 71 205 71c76.2 0 108.7 53.5 108.7 157.7.1 41.8-5.4 75.6-16.7 100.5z"] }; +var faRProject = { prefix: 'fab', iconName: 'r-project', icon: [581, 512, [], "f4f7", "M581 226.6C581 119.1 450.9 32 290.5 32S0 119.1 0 226.6C0 322.4 103.3 402 239.4 418.1V480h99.1v-61.5c24.3-2.7 47.6-7.4 69.4-13.9L448 480h112l-67.4-113.7c54.5-35.4 88.4-84.9 88.4-139.7zm-466.8 14.5c0-73.5 98.9-133 220.8-133s211.9 40.7 211.9 133c0 50.1-26.5 85-70.3 106.4-2.4-1.6-4.7-2.9-6.4-3.7-10.2-5.2-27.8-10.5-27.8-10.5s86.6-6.4 86.6-92.7-90.6-87.9-90.6-87.9h-199V361c-74.1-21.5-125.2-67.1-125.2-119.9zm225.1 38.3v-55.6c57.8 0 87.8-6.8 87.8 27.3 0 36.5-38.2 28.3-87.8 28.3zm-.9 72.5H365c10.8 0 18.9 11.7 24 19.2-16.1 1.9-33 2.8-50.6 2.9v-22.1z"] }; +var faRavelry = { prefix: 'fab', iconName: 'ravelry', icon: [512, 512, [], "f2d9", "M407.4 61.5C331.6 22.1 257.8 31 182.9 66c-11.3 5.2-15.5 10.6-19.9 19-10.3 19.2-16.2 37.4-19.9 52.7-21.2 25.6-36.4 56.1-43.3 89.9-10.6 18-20.9 41.4-23.1 71.4 0 0-.7 7.6-.5 7.9-35.3-4.6-76.2-27-76.2-27 9.1 14.5 61.3 32.3 76.3 37.9 0 0 1.7 98 64.5 131.2-11.3-17.2-13.3-20.2-13.3-20.2S94.8 369 100.4 324.7c.7 0 1.5.2 2.2.2 23.9 87.4 103.2 151.4 196.9 151.4 6.2 0 12.1-.2 18-.7 14 1.5 27.6.5 40.1-3.9 6.9-2.2 13.8-6.4 20.2-10.8 70.2-39.1 100.9-82 123.1-147.7 5.4-16 8.1-35.5 9.8-52.2 8.7-82.3-30.6-161.6-103.3-199.5zM138.8 163.2s-1.2 12.3-.7 19.7c-3.4 2.5-10.1 8.1-18.2 16.7 5.2-12.8 11.3-25.1 18.9-36.4zm-31.2 121.9c4.4-17.2 13.3-39.1 29.8-55.1 0 0 1.7 48 15.8 90.1l-41.4-6.9c-2.2-9.2-3.5-18.5-4.2-28.1zm7.9 42.8c14.8 3.2 34 7.6 43.1 9.1 27.3 76.8 108.3 124.3 108.3 124.3 1 .5 1.7.7 2.7 1-73.1-11.6-132.7-64.7-154.1-134.4zM386 444.1c-14.5 4.7-36.2 8.4-64.7 3.7 0 0-91.1-23.1-127.5-107.8 38.2.7 52.4-.2 78-3.9 39.4-5.7 79-16.2 115-33 11.8-5.4 11.1-19.4 9.6-29.8-2-12.8-11.1-12.1-21.4-4.7 0 0-82 58.6-189.8 53.7-18.7-32-26.8-110.8-26.8-110.8 41.4-35.2 83.2-59.6 168.4-52.4.2-6.4 3-27.1-20.4-28.1 0 0-93.5-11.1-146 33.5 2.5-16.5 5.9-29.3 11.1-39.4 34.2-30.8 79-49.5 128.3-49.5 106.4 0 193 87.1 193 194.5-.2 76-43.8 142-106.8 174z"] }; +var faReact = { prefix: 'fab', iconName: 'react', icon: [512, 512, [], "f41b", "M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zm-130 189.1c4.6 8.8 9.3 17.5 14.3 26.1 5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5zm0-50.6c-6.3-14.9-11.6-29.5-16-43.6 14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26zm11.4 25.3c6.6-13.8 13.8-27.3 21.4-40.6 7.6-13.3 15.8-26.2 24.4-38.9 15-1.1 30.3-1.7 45.9-1.7 15.6 0 31 .6 45.9 1.7 8.5 12.6 16.6 25.5 24.3 38.7 7.7 13.2 14.9 26.7 21.7 40.4-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6-15.7 0-30.9-.5-45.6-1.4-8.7-12.7-16.9-25.7-24.6-39-7.7-13.3-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zM256 210.2c25.3 0 45.8 20.5 45.8 45.8 0 25.3-20.5 45.8-45.8 45.8-25.3 0-45.8-20.5-45.8-45.8 0-25.3 20.5-45.8 45.8-45.8"] }; +var faReadme = { prefix: 'fab', iconName: 'readme', icon: [576, 512, [], "f4d5", "M528.3 46.5H388.5c-48.1 0-89.9 33.3-100.4 80.3-10.6-47-52.3-80.3-100.4-80.3H48c-26.5 0-48 21.5-48 48v245.8c0 26.5 21.5 48 48 48h89.7c102.2 0 132.7 24.4 147.3 75 .7 2.8 5.2 2.8 6 0 14.7-50.6 45.2-75 147.3-75H528c26.5 0 48-21.5 48-48V94.6c0-26.4-21.3-47.9-47.7-48.1zM242 311.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5V289c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V251zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm259.3 121.7c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5V228c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.8c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V190z"] }; +var faRebel = { prefix: 'fab', iconName: 'rebel', icon: [512, 512, [], "f1d0", "M256.5 504C117.2 504 9 387.8 13.2 249.9 16 170.7 56.4 97.7 129.7 49.5c.3 0 1.9-.6 1.1.8-5.8 5.5-111.3 129.8-14.1 226.4 49.8 49.5 90 2.5 90 2.5 38.5-50.1-.6-125.9-.6-125.9-10-24.9-45.7-40.1-45.7-40.1l28.8-31.8c24.4 10.5 43.2 38.7 43.2 38.7.8-29.6-21.9-61.4-21.9-61.4L255.1 8l44.3 50.1c-20.5 28.8-21.9 62.6-21.9 62.6 13.8-23 43.5-39.3 43.5-39.3l28.5 31.8c-27.4 8.9-45.4 39.9-45.4 39.9-15.8 28.5-27.1 89.4.6 127.3 32.4 44.6 87.7-2.8 87.7-2.8 102.7-91.9-10.5-225-10.5-225-6.1-5.5.8-2.8.8-2.8 50.1 36.5 114.6 84.4 116.2 204.8C500.9 400.2 399 504 256.5 504z"] }; +var faRedRiver = { prefix: 'fab', iconName: 'red-river', icon: [448, 512, [], "f3e3", "M353.2 32H94.8C42.4 32 0 74.4 0 126.8v258.4C0 437.6 42.4 480 94.8 480h258.4c52.4 0 94.8-42.4 94.8-94.8V126.8c0-52.4-42.4-94.8-94.8-94.8zM144.9 200.9v56.3c0 27-21.9 48.9-48.9 48.9V151.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9h-56.3c-12.3-.6-24.6 11.6-24 24zm176.3 72h-56.3c-12.3-.6-24.6 11.6-24 24v56.3c0 27-21.9 48.9-48.9 48.9V247.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9z"] }; +var faReddit = { prefix: 'fab', iconName: 'reddit', icon: [512, 512, [], "f1a1", "M201.5 305.5c-13.8 0-24.9-11.1-24.9-24.6 0-13.8 11.1-24.9 24.9-24.9 13.6 0 24.6 11.1 24.6 24.9 0 13.6-11.1 24.6-24.6 24.6zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-132.3-41.2c-9.4 0-17.7 3.9-23.8 10-22.4-15.5-52.6-25.5-86.1-26.6l17.4-78.3 55.4 12.5c0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.3 24.9-24.9s-11.1-24.9-24.9-24.9c-9.7 0-18 5.8-22.1 13.8l-61.2-13.6c-3-.8-6.1 1.4-6.9 4.4l-19.1 86.4c-33.2 1.4-63.1 11.3-85.5 26.8-6.1-6.4-14.7-10.2-24.1-10.2-34.9 0-46.3 46.9-14.4 62.8-1.1 5-1.7 10.2-1.7 15.5 0 52.6 59.2 95.2 132 95.2 73.1 0 132.3-42.6 132.3-95.2 0-5.3-.6-10.8-1.9-15.8 31.3-16 19.8-62.5-14.9-62.5zM302.8 331c-18.2 18.2-76.1 17.9-93.6 0-2.2-2.2-6.1-2.2-8.3 0-2.5 2.5-2.5 6.4 0 8.6 22.8 22.8 87.3 22.8 110.2 0 2.5-2.2 2.5-6.1 0-8.6-2.2-2.2-6.1-2.2-8.3 0zm7.7-75c-13.6 0-24.6 11.1-24.6 24.9 0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.1 24.9-24.6 0-13.8-11-24.9-24.9-24.9z"] }; +var faRedditAlien = { prefix: 'fab', iconName: 'reddit-alien', icon: [512, 512, [], "f281", "M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2.1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z"] }; +var faRedditSquare = { prefix: 'fab', iconName: 'reddit-square', icon: [448, 512, [], "f1a2", "M283.2 345.5c2.7 2.7 2.7 6.8 0 9.2-24.5 24.5-93.8 24.6-118.4 0-2.7-2.4-2.7-6.5 0-9.2 2.4-2.4 6.5-2.4 8.9 0 18.7 19.2 81 19.6 100.5 0 2.4-2.3 6.6-2.3 9 0zm-91.3-53.8c0-14.9-11.9-26.8-26.5-26.8-14.9 0-26.8 11.9-26.8 26.8 0 14.6 11.9 26.5 26.8 26.5 14.6 0 26.5-11.9 26.5-26.5zm90.7-26.8c-14.6 0-26.5 11.9-26.5 26.8 0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-11.9 26.8-26.5 0-14.9-11.9-26.8-26.8-26.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-99.7 140.6c-10.1 0-19 4.2-25.6 10.7-24.1-16.7-56.5-27.4-92.5-28.6l18.7-84.2 59.5 13.4c0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-12.2 26.8-26.8 0-14.6-11.9-26.8-26.8-26.8-10.4 0-19.3 6.2-23.8 14.9l-65.7-14.6c-3.3-.9-6.5 1.5-7.4 4.8l-20.5 92.8c-35.7 1.5-67.8 12.2-91.9 28.9-6.5-6.8-15.8-11-25.9-11-37.5 0-49.8 50.4-15.5 67.5-1.2 5.4-1.8 11-1.8 16.7 0 56.5 63.7 102.3 141.9 102.3 78.5 0 142.2-45.8 142.2-102.3 0-5.7-.6-11.6-2.1-17 33.6-17.2 21.2-67.2-16.1-67.2z"] }; +var faRendact = { prefix: 'fab', iconName: 'rendact', icon: [496, 512, [], "f3e4", "M248 8C111 8 0 119 0 256s111 248 248 248c18.6 0 36.7-2.1 54.1-5.9-5.6-7.4-10.8-14.4-15.9-21.3-12.4 2.1-25.2 3.3-38.3 3.3C124.3 480 24 379.7 24 256S124.3 32 248 32s224 100.3 224 224c0 71-33 134.2-84.5 175.3-25.9 18.8-39.1 21.4-83.5-44.2-78.7-112.9-48-71.1-73.7-108.3 72.8 8.9 228.5-72 168.6-168.6C314-26.8 15 93.8 59.7 226.4c3.2 9.8 14.4 38.6 45.6 38.6 2 0 2.6-.6 2-1.7-4.4-8.7-20.1-9.8-20.1-37.4 0-40.5 40.5-89.6 100.3-120 66.1-32.3 131.9-30.2 158.2 5.4 27.2 38.3-20.9 119.2-120.4 136.9 7.5-9.4 57-75.2 62.8-84 22.7-34.6 23.6-49 14-59.2-15.5-16.9-29.5-10.3-50.7-11.7-10.8-.9-113.7 181.2-136.4 216.9-5.9 9-21.2 34.1-21.2 50.9 0 21.3 2.8 51.4 20.6 51.4 10.6 0 8-18.7 8-26.6 0-12.9 27.4-49.4 74.8-104.6 20.4 36.1 57.7 114.3 130.2 209.7 98-33.1 168.5-125.8 168.5-235C496 119 385 8 248 8z"] }; +var faRenren = { prefix: 'fab', iconName: 'renren', icon: [512, 512, [], "f18b", "M214 169.1c0 110.4-61 205.4-147.6 247.4C30 373.2 8 317.7 8 256.6 8 133.9 97.1 32.2 214 12.5v156.6zM255 504c-42.9 0-83.3-11-118.5-30.4C193.7 437.5 239.9 382.9 255 319c15.5 63.9 61.7 118.5 118.8 154.7C338.7 493 298.3 504 255 504zm190.6-87.5C359 374.5 298 279.6 298 169.1V12.5c116.9 19.7 206 121.4 206 244.1 0 61.1-22 116.6-58.4 159.9z"] }; +var faReplyd = { prefix: 'fab', iconName: 'replyd', icon: [448, 512, [], "f3e6", "M320 480H128C57.6 480 0 422.4 0 352V160C0 89.6 57.6 32 128 32h192c70.4 0 128 57.6 128 128v192c0 70.4-57.6 128-128 128zM193.4 273.2c-6.1-2-11.6-3.1-16.4-3.1-7.2 0-13.5 1.9-18.9 5.6-5.4 3.7-9.6 9-12.8 15.8h-1.1l-4.2-18.3h-28v138.9h36.1v-89.7c1.5-5.4 4.4-9.8 8.7-13.2 4.3-3.4 9.8-5.1 16.2-5.1 4.6 0 9.8 1 15.6 3.1l4.8-34zm115.2 103.4c-3.2 2.4-7.7 4.8-13.7 7.1-6 2.3-12.8 3.5-20.4 3.5-12.2 0-21.1-3-26.5-8.9-5.5-5.9-8.5-14.7-9-26.4h83.3c.9-4.8 1.6-9.4 2.1-13.9.5-4.4.7-8.6.7-12.5 0-10.7-1.6-19.7-4.7-26.9-3.2-7.2-7.3-13-12.5-17.2-5.2-4.3-11.1-7.3-17.8-9.2-6.7-1.8-13.5-2.8-20.6-2.8-21.1 0-37.5 6.1-49.2 18.3s-17.5 30.5-17.5 55c0 22.8 5.2 40.7 15.6 53.7 10.4 13.1 26.8 19.6 49.2 19.6 10.7 0 20.9-1.5 30.4-4.6 9.5-3.1 17.1-6.8 22.6-11.2l-12-23.6zm-21.8-70.3c3.8 5.4 5.3 13.1 4.6 23.1h-51.7c.9-9.4 3.7-17 8.2-22.6 4.5-5.6 11.5-8.5 21-8.5 8.2-.1 14.1 2.6 17.9 8zm79.9 2.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4s2 11.7 6.1 15.6zm0 100.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4 0 6.6 2 11.7 6.1 15.6z"] }; +var faResearchgate = { prefix: 'fab', iconName: 'researchgate', icon: [448, 512, [], "f4f8", "M0 32v448h448V32H0zm262.2 334.4c-6.6 3-33.2 6-50-14.2-9.2-10.6-25.3-33.3-42.2-63.6-8.9 0-14.7 0-21.4-.6v46.4c0 23.5 6 21.2 25.8 23.9v8.1c-6.9-.3-23.1-.8-35.6-.8-13.1 0-26.1.6-33.6.8v-8.1c15.5-2.9 22-1.3 22-23.9V225c0-22.6-6.4-21-22-23.9V193c25.8 1 53.1-.6 70.9-.6 31.7 0 55.9 14.4 55.9 45.6 0 21.1-16.7 42.2-39.2 47.5 13.6 24.2 30 45.6 42.2 58.9 7.2 7.8 17.2 14.7 27.2 14.7v7.3zm22.9-135c-23.3 0-32.2-15.7-32.2-32.2V167c0-12.2 8.8-30.4 34-30.4s30.4 17.9 30.4 17.9l-10.7 7.2s-5.5-12.5-19.7-12.5c-7.9 0-19.7 7.3-19.7 19.7v26.8c0 13.4 6.6 23.3 17.9 23.3 14.1 0 21.5-10.9 21.5-26.8h-17.9v-10.7h30.4c0 20.5 4.7 49.9-34 49.9zm-116.5 44.7c-9.4 0-13.6-.3-20-.8v-69.7c6.4-.6 15-.6 22.5-.6 23.3 0 37.2 12.2 37.2 34.5 0 21.9-15 36.6-39.7 36.6z"] }; +var faResolving = { prefix: 'fab', iconName: 'resolving', icon: [496, 512, [], "f3e7", "M281.2 278.2c46-13.3 49.6-23.5 44-43.4L314 195.5c-6.1-20.9-18.4-28.1-71.1-12.8L54.7 236.8l28.6 98.6 197.9-57.2zM248.5 8C131.4 8 33.2 88.7 7.2 197.5l221.9-63.9c34.8-10.2 54.2-11.7 79.3-8.2 36.3 6.1 52.7 25 61.4 55.2l10.7 37.8c8.2 28.1 1 50.6-23.5 73.6-19.4 17.4-31.2 24.5-61.4 33.2L203 351.8l220.4 27.1 9.7 34.2-48.1 13.3-286.8-37.3 23 80.2c36.8 22 80.3 34.7 126.3 34.7 137 0 248.5-111.4 248.5-248.3C497 119.4 385.5 8 248.5 8zM38.3 388.6L0 256.8c0 48.5 14.3 93.4 38.3 131.8z"] }; +var faRocketchat = { prefix: 'fab', iconName: 'rocketchat', icon: [448, 512, [], "f3e8", "M448 256.2c0-87.2-99.6-153.3-219.8-153.3-18.8 0-37.3 1.6-55.3 4.8-11.1-10.5-24.2-20-38-27.4C61.2 44.2 0 79.4 0 79.4s56.9 47.1 47.6 88.3c-52.3 52.3-52.5 124.1 0 176.6C56.9 385.6 0 432.6 0 432.6s61.2 35.2 134.9-.8c13.8-7.5 26.9-16.9 38-27.4 18 3.2 36.5 4.8 55.3 4.8 120.3-.1 219.8-65.8 219.8-153zm-219.7 124c-23.7 0-46.3-2.8-67.3-7.8-21.3 25.8-68.1 61.7-113.6 50.1 14.8-16 36.7-43.1 32-87.6-27.3-21.4-43.6-48.7-43.6-78.5 0-68.4 86.2-123.9 192.5-123.9S420.8 188 420.8 256.4c0 68.3-86.2 123.8-192.5 123.8zm25.6-123.9c0 14.2-11.5 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.5-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm88.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm-177.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.2 0 25.6 11.6 25.6 25.8z"] }; +var faRockrms = { prefix: 'fab', iconName: 'rockrms', icon: [496, 512, [], "f3e9", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm157.4 419.5h-90l-112-131.3c-17.9-20.4-3.9-56.1 26.6-56.1h75.3l-84.6-99.3-84.3 98.9h-90L193.5 67.2c14.4-18.4 41.3-17.3 54.5 0l157.7 185.1c19 22.8 2 57.2-27.6 56.1-.6 0-74.2.2-74.2.2l101.5 118.9z"] }; +var faSafari = { prefix: 'fab', iconName: 'safari', icon: [512, 512, [], "f267", "M236.9 256.8c0-9.1 6.6-17.7 16.3-17.7 8.9 0 17.4 6.4 17.4 16.1 0 9.1-6.4 17.7-16.1 17.7-9 0-17.6-6.7-17.6-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-26.6 0c0-122.3-99.1-221.4-221.4-221.4S34.6 133.7 34.6 256 133.7 477.4 256 477.4 477.4 378.3 477.4 256zm-72.5 96.6c0 3.6 13 10.2 16.3 12.2-27.4 41.5-69.8 71.4-117.9 83.3l-4.4-18.5c-.3-2.5-1.9-2.8-4.2-2.8-1.9 0-3 2.8-2.8 4.2l4.4 18.8c-13.3 2.8-26.8 4.2-40.4 4.2-36.3 0-72-10.2-103-29.1 1.7-2.8 12.2-18 12.2-20.2 0-1.9-1.7-3.6-3.6-3.6-3.9 0-12.2 16.6-14.7 19.9-41.8-27.7-72-70.6-83.6-119.6l19.1-4.2c2.2-.6 2.8-2.2 2.8-4.2 0-1.9-2.8-3-4.4-2.8L62 294.5c-2.5-12.7-3.9-25.5-3.9-38.5 0-37.1 10.5-73.6 30.2-104.9 2.8 1.7 16.1 10.8 18.3 10.8 1.9 0 3.6-1.4 3.6-3.3 0-3.9-14.7-11.3-18-13.6 28.2-41.2 71.1-70.9 119.8-81.9l4.2 18.5c.6 2.2 2.2 2.8 4.2 2.8s3-2.8 2.8-4.4L219 61.7c12.2-2.2 24.6-3.6 37.1-3.6 37.1 0 73.3 10.5 104.9 30.2-1.9 2.8-10.8 15.8-10.8 18 0 1.9 1.4 3.6 3.3 3.6 3.9 0 11.3-14.4 13.3-17.7 41 27.7 70.3 70 81.7 118.2l-15.5 3.3c-2.5.6-2.8 2.2-2.8 4.4 0 1.9 2.8 3 4.2 2.8l15.8-3.6c2.5 12.7 3.9 25.7 3.9 38.7 0 36.3-10 72-28.8 102.7-2.8-1.4-14.4-9.7-16.6-9.7-2.1 0-3.8 1.7-3.8 3.6zm-33.2-242.2c-13 12.2-134.2 123.7-137.6 129.5l-96.6 160.5c12.7-11.9 134.2-124 137.3-129.3l96.9-160.7z"] }; +var faSass = { prefix: 'fab', iconName: 'sass', icon: [640, 512, [], "f41e", "M551.1 291.9c-22.4.1-41.8 5.5-58 13.5-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-3.8 11.1-5.3 19.1-2.3 11.7-25.8 53.5-39.1 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-2.7 11.4-5.3 19.1-2.6 7.7-33.9 77.3-42.1 95.4-4.2 9.2-7.8 16.6-10.4 21.6s-.2.3-.4.9c-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4.3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2-.8 0-1.4 2-1.4 2s10.1-42.4-19.4-42.4c-18.4 0-44 20.2-56.6 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.8-38.2-101.9-65.2-99.1-116.5 1-18.7 7.5-67.8 127.1-127.4 98-48.8 176.4-35.4 189.9-5.6 19.4 42.5-41.9 121.6-143.7 133-38.8 4.3-59.2-10.7-64.3-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.8 28.9 18.7 6.1 64.2 9.5 119.2-11.8C367 196.5 415.1 130.2 401 74.7 386.6 18.3 293.1-.2 204.6 31.2 151.9 49.9 94.9 79.3 53.9 117.6 5.2 163.2-2.6 202.9.6 219.5c11.4 58.9 92.6 97.3 125.1 125.7-1.6.9-3.1 1.7-4.5 2.5-16.3 8.1-78.2 40.5-93.7 74.7-17.5 38.8 2.9 66.6 16.3 70.4 41.8 11.6 84.6-9.3 107.6-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.3-4.9 16.4-9.4 23.5-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.5 5 15.4 5 13.8 0 20-11.4 26.9-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.4 0 18.8-12.1 23-18.3v.1s.2-.4.7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.6-46 16.2-31.8 31.7-71.5 31.7-71.5s1.4 9.7 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2s0 .1.1.2c-3 4-6.4 8.3-9.9 12.5-12.8 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.7 2.5 11.5-.8 19.6-3.6 23.5-5.4 6.2-2.2 13.4-5.7 20.2-10.6 12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5 19.8-28.9 35.1-60.6 35.1-60.6s1.4 9.7 6.2 25.8c2.4 8.1 7.1 17 11.4 25.7-18.6 15.1-30.1 32.6-34.1 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5 6.5-2.2 14.3-5.7 21.6-11.1 12.5-9.2 24.6-22.1 23.8-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.1-10.2 62.1-7.2 55.7 6.5 66.6 41.3 64.5 55.8-2.1 14.6-13.8 22.6-17.7 25-3.9 2.4-5.1 3.3-4.8 5.1.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.2-11.8 30.3-38.7 1.6-34-31.1-71.4-89-71.1zM121.8 436.6c-18.4 20.1-44.2 27.7-55.3 21.3C54.6 451 59.3 421.4 82 400c13.8-13 31.6-25 43.4-32.4 2.7-1.6 6.6-4 11.4-6.9.8-.5 1.2-.7 1.2-.7.9-.6 1.9-1.1 2.9-1.7 8.3 30.4.3 57.2-19.1 78.3zm134.4-91.4c-6.4 15.7-19.9 55.7-28.1 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.1-11.3 21.2-14.9 23.8-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.9-13.9 0 .5.1 1 .1 1.6-.1 17.9-17.3 30-25.1 34.8zm85.6-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.6-15.3 19-24.5 1.2 3.8 1.9 7.4 1.9 10.8-.1 22.5-16.2 30.9-25.9 34.4z"] }; +var faSchlix = { prefix: 'fab', iconName: 'schlix', icon: [448, 512, [], "f3ea", "M350.5 157.7l-54.2-46.1 73.4-39 78.3 44.2-97.5 40.9zM192 122.1l45.7-28.2 34.7 34.6-55.4 29-25-35.4zm-65.1 6.6l31.9-22.1L176 135l-36.7 22.5-12.4-28.8zm-23.3 88.2l-8.8-34.8 29.6-18.3 13.1 35.3-33.9 17.8zm-21.2-83.7l23.9-18.1 8.9 24-26.7 18.3-6.1-24.2zM59 206.5l-3.6-28.4 22.3-15.5 6.1 28.7L59 206.5zm-30.6 16.6l20.8-12.8 3.3 33.4-22.9 12-1.2-32.6zM1.4 268l19.2-10.2.4 38.2-21 8.8L1.4 268zm59.1 59.3l-28.3 8.3-1.6-46.8 25.1-10.7 4.8 49.2zM99 263.2l-31.1 13-5.2-40.8L90.1 221l8.9 42.2zM123.2 377l-41.6 5.9-8.1-63.5 35.2-10.8 14.5 68.4zm28.5-139.9l21.2 57.1-46.2 13.6-13.7-54.1 38.7-16.6zm85.7 230.5l-70.9-3.3-24.3-95.8 55.2-8.6 40 107.7zm-84.9-279.7l42.2-22.4 28 45.9-50.8 21.3-19.4-44.8zm41 94.9l61.3-18.7 52.8 86.6-79.8 11.3-34.3-79.2zm51.4-85.6l67.3-28.8 65.5 65.4-88.6 26.2-44.2-62.8z"] }; +var faScribd = { prefix: 'fab', iconName: 'scribd', icon: [384, 512, [], "f28a", "M42.3 252.7c-16.1-19-24.7-45.9-24.8-79.9 0-100.4 75.2-153.1 167.2-153.1 98.6-1.6 156.8 49 184.3 70.6l-50.5 72.1-37.3-24.6 26.9-38.6c-36.5-24-79.4-36.5-123-35.8-50.7-.8-111.7 27.2-111.7 76.2 0 18.7 11.2 20.7 28.6 15.6 23.3-5.3 41.9.6 55.8 14 26.4 24.3 23.2 67.6-.7 91.9-29.2 29.5-85.2 27.3-114.8-8.4zm317.7 5.9c-15.5-18.8-38.9-29.4-63.2-28.6-38.1-2-71.1 28-70.5 67.2-.7 16.8 6 33 18.4 44.3 14.1 13.9 33 19.7 56.3 14.4 17.4-5.1 28.6-3.1 28.6 15.6 0 4.3-.5 8.5-1.4 12.7-16.7 40.9-59.5 64.4-121.4 64.4-51.9.2-102.4-16.4-144.1-47.3l33.7-39.4-35.6-27.4L0 406.3l15.4 13.8c52.5 46.8 120.4 72.5 190.7 72.2 51.4 0 94.4-10.5 133.6-44.1 57.1-51.4 54.2-149.2 20.3-189.6z"] }; +var faSearchengin = { prefix: 'fab', iconName: 'searchengin', icon: [460, 512, [], "f3eb", "M220.6 130.3l-67.2 28.2V43.2L98.7 233.5l54.7-24.2v130.3l67.2-209.3zm-83.2-96.7l-1.3 4.7-15.2 52.9C80.6 106.7 52 145.8 52 191.5c0 52.3 34.3 95.9 83.4 105.5v53.6C57.5 340.1 0 272.4 0 191.6c0-80.5 59.8-147.2 137.4-158zm311.4 447.2c-11.2 11.2-23.1 12.3-28.6 10.5-5.4-1.8-27.1-19.9-60.4-44.4-33.3-24.6-33.6-35.7-43-56.7-9.4-20.9-30.4-42.6-57.5-52.4l-9.7-14.7c-24.7 16.9-53 26.9-81.3 28.7l2.1-6.6 15.9-49.5c46.5-11.9 80.9-54 80.9-104.2 0-54.5-38.4-102.1-96-107.1V32.3C254.4 37.4 320 106.8 320 191.6c0 33.6-11.2 64.7-29 90.4l14.6 9.6c9.8 27.1 31.5 48 52.4 57.4s32.2 9.7 56.8 43c24.6 33.2 42.7 54.9 44.5 60.3s.7 17.3-10.5 28.5zm-9.9-17.9c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8z"] }; +var faSellcast = { prefix: 'fab', iconName: 'sellcast', icon: [448, 512, [], "f2da", "M353.4 32H94.7C42.6 32 0 74.6 0 126.6v258.7C0 437.4 42.6 480 94.7 480h258.7c52.1 0 94.7-42.6 94.7-94.6V126.6c0-52-42.6-94.6-94.7-94.6zm-50 316.4c-27.9 48.2-89.9 64.9-138.2 37.2-22.9 39.8-54.9 8.6-42.3-13.2l15.7-27.2c5.9-10.3 19.2-13.9 29.5-7.9 18.6 10.8-.1-.1 18.5 10.7 27.6 15.9 63.4 6.3 79.4-21.3 15.9-27.6 6.3-63.4-21.3-79.4-17.8-10.2-.6-.4-18.6-10.6-24.6-14.2-3.4-51.9 21.6-37.5 18.6 10.8-.1-.1 18.5 10.7 48.4 28 65.1 90.3 37.2 138.5zm21.8-208.8c-17 29.5-16.3 28.8-19 31.5-6.5 6.5-16.3 8.7-26.5 3.6-18.6-10.8.1.1-18.5-10.7-27.6-15.9-63.4-6.3-79.4 21.3s-6.3 63.4 21.3 79.4c0 0 18.5 10.6 18.6 10.6 24.6 14.2 3.4 51.9-21.6 37.5-18.6-10.8.1.1-18.5-10.7-48.2-27.8-64.9-90.1-37.1-138.4 27.9-48.2 89.9-64.9 138.2-37.2l4.8-8.4c14.3-24.9 52-3.3 37.7 21.5z"] }; +var faSellsy = { prefix: 'fab', iconName: 'sellsy', icon: [640, 512, [], "f213", "M539.71 237.308c3.064-12.257 4.29-24.821 4.29-37.384C544 107.382 468.618 32 376.076 32c-77.22 0-144.634 53.012-163.02 127.781-15.322-13.176-34.934-20.53-55.157-20.53-46.271 0-83.962 37.69-83.962 83.961 0 7.354.92 15.015 3.065 22.369-42.9 20.225-70.785 63.738-70.785 111.234C6.216 424.843 61.68 480 129.401 480h381.198c67.72 0 123.184-55.157 123.184-123.184.001-56.384-38.916-106.025-94.073-119.508zM199.88 401.554c0 8.274-7.048 15.321-15.321 15.321H153.61c-8.274 0-15.321-7.048-15.321-15.321V290.626c0-8.273 7.048-15.321 15.321-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v110.928zm89.477 0c0 8.274-7.048 15.321-15.322 15.321h-30.949c-8.274 0-15.321-7.048-15.321-15.321V270.096c0-8.274 7.048-15.321 15.321-15.321h30.949c8.274 0 15.322 7.048 15.322 15.321v131.458zm89.477 0c0 8.274-7.047 15.321-15.321 15.321h-30.949c-8.274 0-15.322-7.048-15.322-15.321V238.84c0-8.274 7.048-15.321 15.322-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v162.714zm87.027 0c0 8.274-7.048 15.321-15.322 15.321h-28.497c-8.274 0-15.321-7.048-15.321-15.321V176.941c0-8.579 7.047-15.628 15.321-15.628h28.497c8.274 0 15.322 7.048 15.322 15.628v224.613z"] }; +var faServicestack = { prefix: 'fab', iconName: 'servicestack', icon: [496, 512, [], "f3ec", "M88 216c81.7 10.2 273.7 102.3 304 232H0c99.5-8.1 184.5-137 88-232zm32-152c32.3 35.6 47.7 83.9 46.4 133.6C249.3 231.3 373.7 321.3 400 448h96C455.3 231.9 222.8 79.5 120 64z"] }; +var faShirtsinbulk = { prefix: 'fab', iconName: 'shirtsinbulk', icon: [448, 512, [], "f214", "M395.208 221.583H406v33.542h-10.792v-33.542zm0-9.625H406v-33.542h-10.792v33.542zm0 86.333H406V264.75h-10.792v33.541zM358.75 135.25h-33.542v10.5h33.542v-10.5zm36.458 206.208H406v-33.542h-10.792v33.542zM311.5 135.25h-33.542v10.5H311.5v-10.5zm-47.25 0H231v10.5h33.25v-10.5zm-47.25 0h-33.25v10.5H217v-10.5zm178.208 33.542H406V135.25h-33.542v10.5h22.75v23.042zm-255.792 259l30.625 13.417 4.375-9.917-30.625-13.417-4.375 9.917zM179.083 445l30.334 13.708 4.374-9.916-30.333-13.417-4.375 9.625zm216.125-60.375H406v-33.542h-10.792v33.542zm-334.833 8.167L91 406.208l4.375-9.624-30.625-13.709-4.375 9.917zm39.666 17.499l30.625 13.417 4.375-9.917-30.625-13.416-4.375 9.916zm132.417 38.501l4.375 9.916L267.459 445l-4.375-9.625-30.626 13.417zm118.417-52.208l4.375 9.624 30.624-13.416-4.374-9.917-30.625 13.709zM311.5 413.791l4.375 9.917 30.625-13.417-4.374-9.916-30.626 13.416zm-39.667 17.501l4.375 9.917 30.625-13.417-4.375-9.917-30.625 13.417zM311.5 46.583h-33.542v10.5H311.5v-10.5zm94.209 0h-33.251v10.5h33.251v-10.5zm-188.709 0h-33.25v10.5H217v-10.5zm141.75 0h-33.542v10.5h33.542v-10.5zm-94.5 0H231v10.5h33.25v-10.5zM448 3.708v406l-226.334 98.584L0 409.708v-406h448zm-29.166 116.958H29.166V390.75l192.792 85.75 196.875-85.75V120.666zm0-87.791H29.166V91.5h389.667V32.875zM75.542 46.583H42.291v10.5h33.251v-10.5zm94.5 0H136.5v10.5h33.542v-10.5zm-47.251 0H89.25v10.5h33.542v-10.5zm7.584 236.542c0-50.167 41.125-91.292 91.292-91.292 50.458 0 91.292 41.125 91.292 91.292 0 50.458-40.833 91.292-91.292 91.292-50.167-.001-91.292-40.834-91.292-91.292zm120.75 18.084c0 13.125-23.917 14.291-32.666 14.291-12.25 0-29.75-2.625-35.875-14.875h-.875L172.666 319c14.876 9.333 29.167 12.25 47.25 12.25 19.542 0 51.042-5.833 51.042-31.209 0-48.125-78.458-16.333-78.458-37.916 0-13.125 20.708-14.875 29.75-14.875 10.791 0 29.166 3.208 35.583 13.124h.875l8.751-16.916c-15.167-6.125-27.417-11.959-44.334-11.959-20.125 0-49.583 6.417-49.583 31.792 0 44.334 77.583 11.959 77.583 37.918zM122.791 135.25H89.25v10.5h33.542v-10.5zm-69.999 10.5h22.75v-10.5H42v33.542h10.792V145.75zm0 32.666H42v33.542h10.792v-33.542zm117.25-43.166H136.5v10.5h33.542v-10.5zm-117.25 86.333H42v33.542h10.792v-33.542zm0 86.334H42v33.542h10.792v-33.542zm0-43.167H42v33.542h10.792V264.75zm0 86.333H42v33.542h10.792v-33.542z"] }; +var faSimplybuilt = { prefix: 'fab', iconName: 'simplybuilt', icon: [512, 512, [], "f215", "M481.2 64h-106c-14.5 0-26.6 11.8-26.6 26.3v39.6H163.3V90.3c0-14.5-12-26.3-26.6-26.3h-106C16.1 64 4.3 75.8 4.3 90.3v331.4c0 14.5 11.8 26.3 26.6 26.3h450.4c14.8 0 26.6-11.8 26.6-26.3V90.3c-.2-14.5-12-26.3-26.7-26.3zM149.8 355.8c-36.6 0-66.4-29.7-66.4-66.4 0-36.9 29.7-66.6 66.4-66.6 36.9 0 66.6 29.7 66.6 66.6 0 36.7-29.7 66.4-66.6 66.4zm212.4 0c-36.9 0-66.6-29.7-66.6-66.6 0-36.6 29.7-66.4 66.6-66.4 36.6 0 66.4 29.7 66.4 66.4 0 36.9-29.8 66.6-66.4 66.6z"] }; +var faSistrix = { prefix: 'fab', iconName: 'sistrix', icon: [448, 512, [], "f3ee", "M448 449L301.2 300.2c20-27.9 31.9-62.2 31.9-99.2 0-93.1-74.7-168.9-166.5-168.9C74.7 32 0 107.8 0 200.9s74.7 168.9 166.5 168.9c39.8 0 76.3-14.2 105-37.9l146 148.1 30.5-31zM166.5 330.8c-70.6 0-128.1-58.3-128.1-129.9S95.9 71 166.5 71s128.1 58.3 128.1 129.9-57.4 129.9-128.1 129.9z"] }; +var faSith = { prefix: 'fab', iconName: 'sith', icon: [448, 512, [], "f512", "M0 32l69.71 118.75-58.86-11.52 69.84 91.03a146.741 146.741 0 0 0 0 51.45l-69.84 91.03 58.86-11.52L0 480l118.75-69.71-11.52 58.86 91.03-69.84c17.02 3.04 34.47 3.04 51.48 0l91.03 69.84-11.52-58.86L448 480l-69.71-118.78 58.86 11.52-69.84-91.03c3.03-17.01 3.04-34.44 0-51.45l69.84-91.03-58.86 11.52L448 32l-118.75 69.71 11.52-58.9-91.06 69.87c-8.5-1.52-17.1-2.29-25.71-2.29s-17.21.78-25.71 2.29l-91.06-69.87 11.52 58.9L0 32zm224 99.78c31.8 0 63.6 12.12 87.85 36.37 48.5 48.5 48.49 127.21 0 175.7s-127.2 48.46-175.7-.03c-48.5-48.5-48.49-127.21 0-175.7 24.24-24.25 56.05-36.34 87.85-36.34zm0 36.66c-22.42 0-44.83 8.52-61.92 25.61-34.18 34.18-34.19 89.68 0 123.87s89.65 34.18 123.84 0c34.18-34.18 34.19-89.68 0-123.87-17.09-17.09-39.5-25.61-61.92-25.61z"] }; +var faSkyatlas = { prefix: 'fab', iconName: 'skyatlas', icon: [640, 512, [], "f216", "M640 329.3c0 65.9-52.5 114.4-117.5 114.4-165.9 0-196.6-249.7-359.7-249.7-146.9 0-147.1 212.2 5.6 212.2 42.5 0 90.9-17.8 125.3-42.5 5.6-4.1 16.9-16.3 22.8-16.3s10.9 5 10.9 10.9c0 7.8-13.1 19.1-18.7 24.1-40.9 35.6-100.3 61.2-154.7 61.2-83.4.1-154-59-154-144.9s67.5-149.1 152.8-149.1c185.3 0 222.5 245.9 361.9 245.9 99.9 0 94.8-139.7 3.4-139.7-17.5 0-35 11.6-46.9 11.6-8.4 0-15.9-7.2-15.9-15.6 0-11.6 5.3-23.7 5.3-36.3 0-66.6-50.9-114.7-116.9-114.7-53.1 0-80 36.9-88.8 36.9-6.2 0-11.2-5-11.2-11.2 0-5.6 4.1-10.3 7.8-14.4 25.3-28.8 64.7-43.7 102.8-43.7 79.4 0 139.1 58.4 139.1 137.8 0 6.9-.3 13.7-1.2 20.6 11.9-3.1 24.1-4.7 35.9-4.7 60.7 0 111.9 45.3 111.9 107.2z"] }; +var faSkype = { prefix: 'fab', iconName: 'skype', icon: [448, 512, [], "f17e", "M424.7 299.8c2.9-14 4.7-28.9 4.7-43.8 0-113.5-91.9-205.3-205.3-205.3-14.9 0-29.7 1.7-43.8 4.7C161.3 40.7 137.7 32 112 32 50.2 32 0 82.2 0 144c0 25.7 8.7 49.3 23.3 68.2-2.9 14-4.7 28.9-4.7 43.8 0 113.5 91.9 205.3 205.3 205.3 14.9 0 29.7-1.7 43.8-4.7 19 14.6 42.6 23.3 68.2 23.3 61.8 0 112-50.2 112-112 .1-25.6-8.6-49.2-23.2-68.1zm-194.6 91.5c-65.6 0-120.5-29.2-120.5-65 0-16 9-30.6 29.5-30.6 31.2 0 34.1 44.9 88.1 44.9 25.7 0 42.3-11.4 42.3-26.3 0-18.7-16-21.6-42-28-62.5-15.4-117.8-22-117.8-87.2 0-59.2 58.6-81.1 109.1-81.1 55.1 0 110.8 21.9 110.8 55.4 0 16.9-11.4 31.8-30.3 31.8-28.3 0-29.2-33.5-75-33.5-25.7 0-42 7-42 22.5 0 19.8 20.8 21.8 69.1 33 41.4 9.3 90.7 26.8 90.7 77.6 0 59.1-57.1 86.5-112 86.5z"] }; +var faSlack = { prefix: 'fab', iconName: 'slack', icon: [448, 512, [], "f198", "M244.2 217.5l19.3 57.7-59.8 20-19.3-57.7 59.8-20zm41.4 243.7C131.6 507.4 65 471.6 18.8 317.6S8.4 97 162.4 50.8C316.4 4.6 383 40.4 429.2 194.4c46.2 154 10.4 220.6-143.6 266.8zM366.2 265c-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-19.3-57.7 29-9.7c12.2-3.9 18.6-17.2 14.7-29.4-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-59.8 20.1-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l19.3 57.7-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 59.8-20.1 10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 29-9.7c12.2-4.2 18.6-17.5 14.7-29.6z"] }; +var faSlackHash = { prefix: 'fab', iconName: 'slack-hash', icon: [448, 512, [], "f3ef", "M446.2 270.4c-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-30.3-90 45.4-15.1c19.1-6.2 29.1-26.8 23-45.9-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-93.4 31.2-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-45.3 15c-19.1 6.2-29.1 26.8-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l30.3 90L78 354.8c-19 6.2-29.1 26.9-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 93.6-31.3 15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 45.4-15.1c19-6 29.1-26.7 22.9-45.7zm-254.1 47.2l-30.3-90.2 93.5-31.3 30.3 90.2-93.5 31.3z"] }; +var faSlideshare = { prefix: 'fab', iconName: 'slideshare', icon: [512, 512, [], "f1e7", "M249.429 211.436c0 31.716-27.715 57.717-61.717 57.717-34.001 0-61.716-26.001-61.716-57.717 0-32.001 27.715-57.716 61.716-57.716 34.001 0 61.717 25.715 61.717 57.716zm254.294 50.002c-18.286 22.573-53.144 50.288-106.289 72.003C453.722 525.163 260 555.735 263.143 457.446c0 1.714-.286-52.859-.286-93.432-4.285-.858-8.571-2-13.714-3.143 0 40.858-.286 98.289-.286 96.575C252 555.735 58.278 525.163 114.566 333.441c-53.145-21.715-88.003-49.43-106.29-72.003-9.143-13.714.858-28.287 16.001-17.715 2 1.428 4.285 2.857 6.285 4.285V49.716C30.563 22.287 51.135 0 76.565 0h359.157c25.429 0 46.002 22.287 46.002 49.716v198.293l6-4.285c15.143-10.573 25.143 4 15.999 17.714zm-46.572-189.15c0-32.858-10.572-45.716-40.859-45.716H98.566c-31.716 0-40.573 10.858-40.573 45.716v192.293c67.717 35.43 125.72 29.144 157.435 28.001 13.429-.286 22.001 2.286 27.144 7.715 1.689 1.687 10.023 9.446 20.287 17.143 1.143-15.715 10.001-25.715 33.716-24.858 32.287 1.428 91.718 7.715 160.577-29.716V72.288zM331.146 153.72c-34.002 0-61.716 25.715-61.716 57.716 0 31.716 27.715 57.717 61.716 57.717 34.287 0 61.716-26.001 61.716-57.717 0-32.001-27.429-57.716-61.716-57.716z"] }; +var faSnapchat = { prefix: 'fab', iconName: 'snapchat', icon: [496, 512, [], "f2ab", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm169.5 338.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C183.1 100 230.7 96 244.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z"] }; +var faSnapchatGhost = { prefix: 'fab', iconName: 'snapchat-ghost', icon: [512, 512, [], "f2ac", "M510.846 392.673c-5.211 12.157-27.239 21.089-67.36 27.318-2.064 2.786-3.775 14.686-6.507 23.956-1.625 5.566-5.623 8.869-12.128 8.869l-.297-.005c-9.395 0-19.203-4.323-38.852-4.323-26.521 0-35.662 6.043-56.254 20.588-21.832 15.438-42.771 28.764-74.027 27.399-31.646 2.334-58.025-16.908-72.871-27.404-20.714-14.643-29.828-20.582-56.241-20.582-18.864 0-30.736 4.72-38.852 4.72-8.073 0-11.213-4.922-12.422-9.04-2.703-9.189-4.404-21.263-6.523-24.13-20.679-3.209-67.31-11.344-68.498-32.15a10.627 10.627 0 0 1 8.877-11.069c69.583-11.455 100.924-82.901 102.227-85.934.074-.176.155-.344.237-.515 3.713-7.537 4.544-13.849 2.463-18.753-5.05-11.896-26.872-16.164-36.053-19.796-23.715-9.366-27.015-20.128-25.612-27.504 2.437-12.836 21.725-20.735 33.002-15.453 8.919 4.181 16.843 6.297 23.547 6.297 5.022 0 8.212-1.204 9.96-2.171-2.043-35.936-7.101-87.29 5.687-115.969C158.122 21.304 229.705 15.42 250.826 15.42c.944 0 9.141-.089 10.11-.089 52.148 0 102.254 26.78 126.723 81.643 12.777 28.65 7.749 79.792 5.695 116.009 1.582.872 4.357 1.942 8.599 2.139 6.397-.286 13.815-2.389 22.069-6.257 6.085-2.846 14.406-2.461 20.48.058l.029.01c9.476 3.385 15.439 10.215 15.589 17.87.184 9.747-8.522 18.165-25.878 25.018-2.118.835-4.694 1.655-7.434 2.525-9.797 3.106-24.6 7.805-28.616 17.271-2.079 4.904-1.256 11.211 2.46 18.748.087.168.166.342.239.515 1.301 3.03 32.615 74.46 102.23 85.934 6.427 1.058 11.163 7.877 7.725 15.859z"] }; +var faSnapchatSquare = { prefix: 'fab', iconName: 'snapchat-square', icon: [448, 512, [], "f2ad", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6.5 314.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C159.1 100 206.7 96 220.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z"] }; +var faSoundcloud = { prefix: 'fab', iconName: 'soundcloud', icon: [640, 512, [], "f1be", "M111.4 256.3l5.8 65-5.8 68.3c-.3 2.5-2.2 4.4-4.4 4.4s-4.2-1.9-4.2-4.4l-5.6-68.3 5.6-65c0-2.2 1.9-4.2 4.2-4.2 2.2 0 4.1 2 4.4 4.2zm21.4-45.6c-2.8 0-4.7 2.2-5 5l-5 105.6 5 68.3c.3 2.8 2.2 5 5 5 2.5 0 4.7-2.2 4.7-5l5.8-68.3-5.8-105.6c0-2.8-2.2-5-4.7-5zm25.5-24.1c-3.1 0-5.3 2.2-5.6 5.3l-4.4 130 4.4 67.8c.3 3.1 2.5 5.3 5.6 5.3 2.8 0 5.3-2.2 5.3-5.3l5.3-67.8-5.3-130c0-3.1-2.5-5.3-5.3-5.3zM7.2 283.2c-1.4 0-2.2 1.1-2.5 2.5L0 321.3l4.7 35c.3 1.4 1.1 2.5 2.5 2.5s2.2-1.1 2.5-2.5l5.6-35-5.6-35.6c-.3-1.4-1.1-2.5-2.5-2.5zm23.6-21.9c-1.4 0-2.5 1.1-2.5 2.5l-6.4 57.5 6.4 56.1c0 1.7 1.1 2.8 2.5 2.8s2.5-1.1 2.8-2.5l7.2-56.4-7.2-57.5c-.3-1.4-1.4-2.5-2.8-2.5zm25.3-11.4c-1.7 0-3.1 1.4-3.3 3.3L47 321.3l5.8 65.8c.3 1.7 1.7 3.1 3.3 3.1 1.7 0 3.1-1.4 3.1-3.1l6.9-65.8-6.9-68.1c0-1.9-1.4-3.3-3.1-3.3zm25.3-2.2c-1.9 0-3.6 1.4-3.6 3.6l-5.8 70 5.8 67.8c0 2.2 1.7 3.6 3.6 3.6s3.6-1.4 3.9-3.6l6.4-67.8-6.4-70c-.3-2.2-2-3.6-3.9-3.6zm241.4-110.9c-1.1-.8-2.8-1.4-4.2-1.4-2.2 0-4.2.8-5.6 1.9-1.9 1.7-3.1 4.2-3.3 6.7v.8l-3.3 176.7 1.7 32.5 1.7 31.7c.3 4.7 4.2 8.6 8.9 8.6s8.6-3.9 8.6-8.6l3.9-64.2-3.9-177.5c-.4-3-2-5.8-4.5-7.2zm-26.7 15.3c-1.4-.8-2.8-1.4-4.4-1.4s-3.1.6-4.4 1.4c-2.2 1.4-3.6 3.9-3.6 6.7l-.3 1.7-2.8 160.8s0 .3 3.1 65.6v.3c0 1.7.6 3.3 1.7 4.7 1.7 1.9 3.9 3.1 6.4 3.1 2.2 0 4.2-1.1 5.6-2.5 1.7-1.4 2.5-3.3 2.5-5.6l.3-6.7 3.1-58.6-3.3-162.8c-.3-2.8-1.7-5.3-3.9-6.7zm-111.4 22.5c-3.1 0-5.8 2.8-5.8 6.1l-4.4 140.6 4.4 67.2c.3 3.3 2.8 5.8 5.8 5.8 3.3 0 5.8-2.5 6.1-5.8l5-67.2-5-140.6c-.2-3.3-2.7-6.1-6.1-6.1zm376.7 62.8c-10.8 0-21.1 2.2-30.6 6.1-6.4-70.8-65.8-126.4-138.3-126.4-17.8 0-35 3.3-50.3 9.4-6.1 2.2-7.8 4.4-7.8 9.2v249.7c0 5 3.9 8.6 8.6 9.2h218.3c43.3 0 78.6-35 78.6-78.3.1-43.6-35.2-78.9-78.5-78.9zm-296.7-60.3c-4.2 0-7.5 3.3-7.8 7.8l-3.3 136.7 3.3 65.6c.3 4.2 3.6 7.5 7.8 7.5 4.2 0 7.5-3.3 7.5-7.5l3.9-65.6-3.9-136.7c-.3-4.5-3.3-7.8-7.5-7.8zm-53.6-7.8c-3.3 0-6.4 3.1-6.4 6.7l-3.9 145.3 3.9 66.9c.3 3.6 3.1 6.4 6.4 6.4 3.6 0 6.4-2.8 6.7-6.4l4.4-66.9-4.4-145.3c-.3-3.6-3.1-6.7-6.7-6.7zm26.7 3.4c-3.9 0-6.9 3.1-6.9 6.9L227 321.3l3.9 66.4c.3 3.9 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9l4.2-66.4-4.2-141.7c0-3.9-3-6.9-6.9-6.9z"] }; +var faSpeakap = { prefix: 'fab', iconName: 'speakap', icon: [448, 512, [], "f3f3", "M352 32H96C43.2 32 0 75.2 0 128v256c0 52.8 43.2 96 96 96h256c52.8 0 96-43.2 96-96V128c0-52.8-43.2-96-96-96zM221 382.9c-39.6 0-81.9-17.8-81.9-53.7V302H179v17.8c0 15.1 19.5 24.5 41.9 24.5 24.2 0 41.3-10.4 41.3-29.5 0-23.8-27.2-31.9-54.7-42.6-31.9-12.4-63.1-26.2-63.1-69.1 0-48 38.6-66.4 79.9-66.4 37.6 0 75.5 14.1 75.5 41.9v31.2h-39.9v-16.1c0-12.1-17.8-18.5-35.6-18.5-19.5 0-35.6 8.1-35.6 26.2 0 22.1 22.5 29.2 47 38.9 35.9 12.4 71.1 27.2 71.1 71.5.1 48.6-40.8 71.1-85.8 71.1z"] }; +var faSpotify = { prefix: 'fab', iconName: 'spotify', icon: [496, 512, [], "f1bc", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm100.7 364.9c-4.2 0-6.8-1.3-10.7-3.6-62.4-37.6-135-39.2-206.7-24.5-3.9 1-9 2.6-11.9 2.6-9.7 0-15.8-7.7-15.8-15.8 0-10.3 6.1-15.2 13.6-16.8 81.9-18.1 165.6-16.5 237 26.2 6.1 3.9 9.7 7.4 9.7 16.5s-7.1 15.4-15.2 15.4zm26.9-65.6c-5.2 0-8.7-2.3-12.3-4.2-62.5-37-155.7-51.9-238.6-29.4-4.8 1.3-7.4 2.6-11.9 2.6-10.7 0-19.4-8.7-19.4-19.4s5.2-17.8 15.5-20.7c27.8-7.8 56.2-13.6 97.8-13.6 64.9 0 127.6 16.1 177 45.5 8.1 4.8 11.3 11 11.3 19.7-.1 10.8-8.5 19.5-19.4 19.5zm31-76.2c-5.2 0-8.4-1.3-12.9-3.9-71.2-42.5-198.5-52.7-280.9-29.7-3.6 1-8.1 2.6-12.9 2.6-13.2 0-23.3-10.3-23.3-23.6 0-13.6 8.4-21.3 17.4-23.9 35.2-10.3 74.6-15.2 117.5-15.2 73 0 149.5 15.2 205.4 47.8 7.8 4.5 12.9 10.7 12.9 22.6 0 13.6-11 23.3-23.2 23.3z"] }; +var faStackExchange = { prefix: 'fab', iconName: 'stack-exchange', icon: [448, 512, [], "f18d", "M17.7 332.3h412.7v22c0 37.7-29.3 68-65.3 68h-19L259.3 512v-89.7H83c-36 0-65.3-30.3-65.3-68v-22zm0-23.6h412.7v-85H17.7v85zm0-109.4h412.7v-85H17.7v85zM365 0H83C47 0 17.7 30.3 17.7 67.7V90h412.7V67.7C430.3 30.3 401 0 365 0z"] }; +var faStackOverflow = { prefix: 'fab', iconName: 'stack-overflow', icon: [384, 512, [], "f16c", "M293.7 300l-181.2-84.5 16.7-36.5 181.3 84.7-16.8 36.3zm48-76L188.2 95.7l-25.5 30.8 153.5 128.3 25.5-30.8zm39.6-31.7L262 32l-32 24 119.3 160.3 32-24zM290.7 311L95 269.7 86.8 309l195.7 41 8.2-39zm31.6 129H42.7V320h-40v160h359.5V320h-40v120zm-39.8-80h-200v39.7h200V360z"] }; +var faStaylinked = { prefix: 'fab', iconName: 'staylinked', icon: [440, 512, [], "f3f5", "M201.6 127.4c4.1-3.2 10.3-3 13.8.5l170 167.3-2.7-2.7 44.3 41.3c3.7 3.5 3.3 9-.7 12.2l-198 163.9c-9.9 7.6-17.3.8-17.3.8L2.3 314.6c-3.5-3.5-3-9 1.2-12.2l45.8-34.9c4.2-3.2 10.4-3 13.9.5l151.9 147.5c3.7 3.5 10 3.7 14.2.4l93.2-74c4.1-3.2 4.5-8.7.9-12.2l-84-81.3c-3.6-3.5-9.9-3.7-14-.5l-.1.1c-4.1 3.2-10.4 3-14-.5l-68.1-64.3c-3.5-3.5-3.1-9 1.1-12.2l57.3-43.6m14.8 257.3c3.7 3.5 10.1 3.7 14.3.4l50.2-38.8-.3-.3 7.7-6c4.2-3.2 4.6-8.7.9-12.2l-57.1-54.4c-3.6-3.5-10-3.7-14.2-.5l-.1.1c-4.2 3.2-10.5 3.1-14.2-.4L109 180.8c-3.6-3.5-3.1-8.9 1.1-12.2l92.2-71.5c4.1-3.2 10.3-3 13.9.5l160.4 159c3.7 3.5 10 3.7 14.1.5l45.8-35.8c4.1-3.2 4.4-8.7.7-12.2L226.7 2.5c-1.5-1.2-8-5.5-16.3 1.1L3.6 165.7c-4.2 3.2-4.8 8.7-1.2 12.2l42.3 41.7"] }; +var faSteam = { prefix: 'fab', iconName: 'steam', icon: [496, 512, [], "f1b6", "M496 256c0 137-111.2 248-248.4 248-113.8 0-209.6-76.3-239-180.4l95.2 39.3c6.4 32.1 34.9 56.4 68.9 56.4 39.2 0 71.9-32.4 70.2-73.5l84.5-60.2c52.1 1.3 95.8-40.9 95.8-93.5 0-51.6-42-93.5-93.7-93.5s-93.7 42-93.7 93.5v1.2L176.6 279c-15.5-.9-30.7 3.4-43.5 12.1L0 236.1C10.2 108.4 117.1 8 247.6 8 384.8 8 496 119 496 256zM155.7 384.3l-30.5-12.6a52.79 52.79 0 0 0 27.2 25.8c26.9 11.2 57.8-1.6 69-28.4 5.4-13 5.5-27.3.1-40.3-5.4-13-15.5-23.2-28.5-28.6-12.9-5.4-26.7-5.2-38.9-.6l31.5 13c19.8 8.2 29.2 30.9 20.9 50.7-8.3 19.9-31 29.2-50.8 21zm173.8-129.9c-34.4 0-62.4-28-62.4-62.3s28-62.3 62.4-62.3 62.4 28 62.4 62.3-27.9 62.3-62.4 62.3zm.1-15.6c25.9 0 46.9-21 46.9-46.8 0-25.9-21-46.8-46.9-46.8s-46.9 21-46.9 46.8c.1 25.8 21.1 46.8 46.9 46.8z"] }; +var faSteamSquare = { prefix: 'fab', iconName: 'steam-square', icon: [448, 512, [], "f1b7", "M185.2 356.5c7.7-18.5-1-39.7-19.6-47.4l-29.5-12.2c11.4-4.3 24.3-4.5 36.4.5 12.2 5.1 21.6 14.6 26.7 26.7 5 12.2 5 25.6-.1 37.7-10.5 25.1-39.4 37-64.6 26.5-11.6-4.8-20.4-13.6-25.4-24.2l28.5 11.8c18.6 7.8 39.9-.9 47.6-19.4zM400 32H48C21.5 32 0 53.5 0 80v160.7l116.6 48.1c12-8.2 26.2-12.1 40.7-11.3l55.4-80.2v-1.1c0-48.2 39.3-87.5 87.6-87.5s87.6 39.3 87.6 87.5c0 49.2-40.9 88.7-89.6 87.5l-79 56.3c1.6 38.5-29.1 68.8-65.7 68.8-31.8 0-58.5-22.7-64.5-52.7L0 319.2V432c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-99.7 222.5c-32.2 0-58.4-26.1-58.4-58.3s26.2-58.3 58.4-58.3 58.4 26.2 58.4 58.3-26.2 58.3-58.4 58.3zm.1-14.6c24.2 0 43.9-19.6 43.9-43.8 0-24.2-19.6-43.8-43.9-43.8-24.2 0-43.9 19.6-43.9 43.8 0 24.2 19.7 43.8 43.9 43.8z"] }; +var faSteamSymbol = { prefix: 'fab', iconName: 'steam-symbol', icon: [448, 512, [], "f3f6", "M395.5 177.5c0 33.8-27.5 61-61 61-33.8 0-61-27.3-61-61s27.3-61 61-61c33.5 0 61 27.2 61 61zm52.5.2c0 63-51 113.8-113.7 113.8L225 371.3c-4 43-40.5 76.8-84.5 76.8-40.5 0-74.7-28.8-83-67L0 358V250.7L97.2 290c15.1-9.2 32.2-13.3 52-11.5l71-101.7c.5-62.3 51.5-112.8 114-112.8C397 64 448 115 448 177.7zM203 363c0-34.7-27.8-62.5-62.5-62.5-4.5 0-9 .5-13.5 1.5l26 10.5c25.5 10.2 38 39 27.7 64.5-10.2 25.5-39.2 38-64.7 27.5-10.2-4-20.5-8.3-30.7-12.2 10.5 19.7 31.2 33.2 55.2 33.2 34.7 0 62.5-27.8 62.5-62.5zm207.5-185.3c0-42-34.3-76.2-76.2-76.2-42.3 0-76.5 34.2-76.5 76.2 0 42.2 34.3 76.2 76.5 76.2 41.9.1 76.2-33.9 76.2-76.2z"] }; +var faStickerMule = { prefix: 'fab', iconName: 'sticker-mule', icon: [576, 512, [], "f3f7", "M353.1 509.8c-5.9 2.9-32.1 3.2-36.5-.5-4.1-3-2.2-11.9-1.5-15 2.2-15-2.5-7.9-9.8-11.5-3.1-1.5-4.1-5.5-4.6-10-.5-1.5-1-2.5-1.5-3.5-1.7-10.7 6.8-33.6 8.2-43.4 4.9-23.7-.7-37.2 1.5-46.9 3.7-16.2 4.1-3.5 4.1-29.9-1.4-25.9 3.3-36.9.5-38.9-14.8 0-64.3 10.7-112.2 2-46.1-8.9-59.4-29-65.4-30.9-10.3-4.5-23.2.5-27.3 7-.1.1-35 70.6-39.6 87.8-6.2 20.5-.5 47.4 4.1 66.8 0 .1 4.5 14.6 10.3 19.5 2.1 1.5 5.1 2.5 7.2 4.5 2.8 2.7 9.4 15.2 9.8 16 2.6 4.5 3.6 8-1.5 10.5-3.6 2-9.3 2.5-14.4 2.5-2.6.5-1.5 3.5-3.1 5-2.9 2.8-20.7 6.1-29.9 2.5-2.6-1-5.7-3-6.2-5-1.5-4 2.1-9-1-12.5-4.5-2.9-13.1-2-17-12-2.2-5.4-2.6-7.6-2.6-49.4 0-9.7-5.9-38.7-8.2-46.9-1.5-5.5-1.5-11.5 0-16 .3-.9 4.1-4.6 4.1-13-1-1.5-4.6-.5-5.1-1.5-10.4-80.6-5.9-79-7.7-98.3-1.5-16-10.9-43.9-6.7-64.3.5-2.4 3.4-21 24.2-38.9 31-26.7 48.4-38.3 159-11.5 1.1.4 66.3 21.1 110.7-9 15.5-11.3 28.8-11.3 35.5-16 .1-.1 61.7-52.1 87-65.3 47.2-29.4 69.9-16.7 75.1-18 4.7-1 13.4-25.8 17-25.8 5.5 0 1.6 20.2 3.6 25.9.5 2 3.6 5 6.2 5 2.3 0 1.7-.8 10.3-5 8.4-5.4 14.9-17.6 20.6-17 11.7 1.6-19 41.6-19 46.9 0 2 .2.8 4.6 9.5 2.6 5.5 4.6 13.5 6.2 20 8.3 29.7 5.7 14.6 13.4 36.9 20.2 50.1 20.6 45.2 20.6 52.9 0 7.5-4.1 11-7.2 16.5-1.5 3-4.6 7.5-7.2 8-2.7.7 7-1.5-13.4 2.5-7.2 1-13.4-4.5-14.9-9.5-1.6-4.7 2.8-10.1-11.8-22.9-10.3-10-21.1-11.3-31.9-17-9.8-5.7-11.9 1-18 8-18 22.9-34 46.9-52 69.8-11.8 15-24.2 30.4-33.5 47.4-3.9 6.8-9.5 28.1-10.3 29.9-6.2 17.7-5.5 25.8-16.5 68.3-3.1 10-5.7 21.4-8.7 32.4-2.2 6.8-7.4 49.3-.5 59.4 2.1 3.5 8.7 4.5 11.3 8 .1.1 9.6 18.2 9.3 20 0 6.1-9.4 5.6-11.3 6.5-4.8 2.9-3.8 5.9-6.4 7.4"] }; +var faStrava = { prefix: 'fab', iconName: 'strava', icon: [369, 512, [], "f428", "M301.6 292l-43.9 88.2-44.6-88.2h-67.6l112.2 220 111.5-220h-67.6zM151.4 0L0 292h89.2l62.2-116.1L213.1 292h88.5L151.4 0z"] }; +var faStripe = { prefix: 'fab', iconName: 'stripe', icon: [640, 512, [], "f429", "M640 261.6c0-45.5-22-81.4-64.2-81.4s-67.9 35.9-67.9 81.1c0 53.5 30.3 78.2 73.5 78.2 21.2 0 37.1-4.8 49.2-11.5v-33.4c-12.1 6.1-26 9.8-43.6 9.8-17.3 0-32.5-6.1-34.5-26.9h86.9c.2-2.3.6-11.6.6-15.9m-87.9-16.8c0-20 12.3-28.4 23.4-28.4 10.9 0 22.5 8.4 22.5 28.4h-45.9zm-112.9-64.6c-17.4 0-28.6 8.2-34.8 13.9l-2.3-11H363v204.8l44.4-9.4.1-50.2c6.4 4.7 15.9 11.2 31.4 11.2 31.8 0 60.8-23.2 60.8-79.6.1-51.6-29.3-79.7-60.5-79.7m-10.6 122.5c-10.4 0-16.6-3.8-20.9-8.4l-.3-66c4.6-5.1 11-8.8 21.2-8.8 16.2 0 27.4 18.2 27.4 41.4.1 23.9-10.9 41.8-27.4 41.8M346.4 124v36.2l-44.6 9.5v-36.2l44.6-9.5m-44.5 59.2h44.6v153.2h-44.6V183.2zm-47.8 13.1c10.4-19.1 31.1-15.2 37.1-13.1V224c-5.7-1.8-23.4-4.5-33.9 9.3v103.1H213V183.2h38.4l2.7 13.1m-89-13.1h33.7V221h-33.7v63.2c0 26.2 28 18 33.7 15.7v33.8c-5.9 3.2-16.6 5.9-31.2 5.9-26.3 0-46.1-17-46.1-43.3l.2-142.4 43.3-9.2.1 38.5zM44.9 228.3c0 20 67.9 10.5 67.9 63.4 0 32-25.4 47.8-62.3 47.8-15.3 0-32-3-48.5-10.1v-40c14.9 8.1 33.9 14.2 48.6 14.2 9.9 0 17-2.7 17-10.9 0-21.2-67.5-13.2-67.5-62.4 0-31.4 24-50.2 60-50.2 14.7 0 29.4 2.3 44.1 8.1V230c-13.5-7.3-30.7-11.4-44.2-11.4-9.3.1-15.1 2.8-15.1 9.7"] }; +var faStripeS = { prefix: 'fab', iconName: 'stripe-s', icon: [362, 512, [], "f42a", "M144.3 154.6c0-22.3 18.6-30.9 48.4-30.9 43.4 0 98.5 13.3 141.9 36.7V26.1C287.3 7.2 240.1 0 192.8 0 77.1 0 0 60.4 0 161.4c0 157.9 216.8 132.3 216.8 200.4 0 26.4-22.9 34.9-54.7 34.9-47.2 0-108.2-19.5-156.1-45.5v128.5c53 22.8 106.8 32.4 156 32.4 118.6 0 200.3-51 200.3-153.6 0-170.2-218-139.7-218-203.9"] }; +var faStudiovinari = { prefix: 'fab', iconName: 'studiovinari', icon: [512, 512, [], "f3f8", "M480.3 187.7l4.2 28v28l-25.1 44.1-39.8 78.4-56.1 67.5-79.1 37.8-17.7 24.5-7.7 12-9.6 4s17.3-63.6 19.4-63.6c2.1 0 20.3.7 20.3.7l66.7-38.6-92.5 26.1-55.9 36.8-22.8 28-6.6 1.4 20.8-73.6 6.9-5.5 20.7 12.9 88.3-45.2 56.8-51.5 14.8-68.4-125.4 23.3 15.2-18.2-173.4-53.3 81.9-10.5-166-122.9L133.5 108 32.2 0l252.9 126.6-31.5-38L378 163 234.7 64l18.7 38.4-49.6-18.1L158.3 0l194.6 122L310 66.2l108 96.4 12-8.9-21-16.4 4.2-37.8L451 89.1l29.2 24.7 11.5 4.2-7 6.2 8.5 12-13.1 7.4-10.3 20.2 10.5 23.9z"] }; +var faStumbleupon = { prefix: 'fab', iconName: 'stumbleupon', icon: [512, 512, [], "f1a4", "M502.9 266v69.7c0 62.1-50.3 112.4-112.4 112.4-61.8 0-112.4-49.8-112.4-111.3v-70.2l34.3 16 51.1-15.2V338c0 14.7 12 26.5 26.7 26.5S417 352.7 417 338v-72h85.9zm-224.7-58.2l34.3 16 51.1-15.2V173c0-60.5-51.1-109-112.1-109-60.8 0-112.1 48.2-112.1 108.2v162.4c0 14.9-12 26.7-26.7 26.7S86 349.5 86 334.6V266H0v69.7C0 397.7 50.3 448 112.4 448c61.6 0 112.4-49.5 112.4-110.8V176.9c0-14.7 12-26.7 26.7-26.7s26.7 12 26.7 26.7v30.9z"] }; +var faStumbleuponCircle = { prefix: 'fab', iconName: 'stumbleupon-circle', icon: [496, 512, [], "f1a3", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 177.5c-9.8 0-17.8 8-17.8 17.8v106.9c0 40.9-33.9 73.9-74.9 73.9-41.4 0-74.9-33.5-74.9-74.9v-46.5h57.3v45.8c0 10 8 17.8 17.8 17.8s17.8-7.9 17.8-17.8V200.1c0-40 34.2-72.1 74.7-72.1 40.7 0 74.7 32.3 74.7 72.6v23.7l-34.1 10.1-22.9-10.7v-20.6c.1-9.6-7.9-17.6-17.7-17.6zm167.6 123.6c0 41.4-33.5 74.9-74.9 74.9-41.2 0-74.9-33.2-74.9-74.2V263l22.9 10.7 34.1-10.1v47.1c0 9.8 8 17.6 17.8 17.6s17.8-7.9 17.8-17.6v-48h57.3c-.1 45.9-.1 46.4-.1 46.4z"] }; +var faSuperpowers = { prefix: 'fab', iconName: 'superpowers', icon: [448, 512, [], "f2dd", "M448 32c-83.3 11-166.8 22-250 33-92 12.5-163.3 86.7-169 180-3.3 55.5 18 109.5 57.8 148.2L0 480c83.3-11 166.5-22 249.8-33 91.8-12.5 163.3-86.8 168.7-179.8 3.5-55.5-18-109.5-57.7-148.2L448 32zm-79.7 232.3c-4.2 79.5-74 139.2-152.8 134.5-79.5-4.7-140.7-71-136.3-151 4.5-79.2 74.3-139.3 153-134.5 79.3 4.7 140.5 71 136.1 151z"] }; +var faSupple = { prefix: 'fab', iconName: 'supple', icon: [640, 512, [], "f3f9", "M640 262.5c0 64.1-109 116.1-243.5 116.1-24.8 0-48.6-1.8-71.1-5 7.7.4 15.5.6 23.4.6 134.5 0 243.5-56.9 243.5-127.1 0-29.4-19.1-56.4-51.2-78 60 21.1 98.9 55.1 98.9 93.4zM47.7 227.9c-.1-70.2 108.8-127.3 243.3-127.6 7.9 0 15.6.2 23.3.5-22.5-3.2-46.3-4.9-71-4.9C108.8 96.3-.1 148.5 0 212.6c.1 38.3 39.1 72.3 99.3 93.3-32.3-21.5-51.5-48.6-51.6-78zm60.2 39.9s10.5 13.2 29.3 13.2c17.9 0 28.4-11.5 28.4-25.1 0-28-40.2-25.1-40.2-39.7 0-5.4 5.3-9.1 12.5-9.1 5.7 0 11.3 2.6 11.3 6.6v3.9h14.2v-7.9c0-12.1-15.4-16.8-25.4-16.8-16.5 0-28.5 10.2-28.5 24.1 0 26.6 40.2 25.4 40.2 39.9 0 6.6-5.8 10.1-12.3 10.1-11.9 0-20.7-10.1-20.7-10.1l-8.8 10.9zm120.8-73.6v54.4c0 11.3-7.1 17.8-17.8 17.8-10.7 0-17.8-6.5-17.8-17.7v-54.5h-15.8v55c0 18.9 13.4 31.9 33.7 31.9 20.1 0 33.4-13 33.4-31.9v-55h-15.7zm34.4 85.4h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.8-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5.1 14.7-14 14.7h-12.6zm57 43h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.7-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5 14.7-14 14.7h-12.6zm57.1 34.8c0 5.8 2.4 8.2 8.2 8.2h37.6c5.8 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-18.6c-1.7 0-2.6-1-2.6-2.6v-61.2c0-5.7-2.4-8.2-8.2-8.2H401v13.4h5.2c1.7 0 2.6 1 2.6 2.6v61.2zm63.4 0c0 5.8 2.4 8.2 8.2 8.2H519c5.7 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-19.7c-1.7 0-2.6-1-2.6-2.6v-20.3h27.7v-13.4H488v-22.4h19.2c1.7 0 2.6 1 2.6 2.6v5.2H524v-13c0-5.7-2.5-8.2-8.2-8.2h-51.6v13.4h7.8v63.9zm58.9-76v5.9h1.6v-5.9h2.7v-1.2h-7v1.2h2.7zm5.7-1.2v7.1h1.5v-5.7l2.3 5.7h1.3l2.3-5.7v5.7h1.5v-7.1h-2.3l-2.1 5.1-2.1-5.1h-2.4z"] }; +var faTeamspeak = { prefix: 'fab', iconName: 'teamspeak', icon: [453, 512, [], "f4f9", "M203.4 65.8c-10.3-2-42.1-3.7-52.3-3.7-8.4 0-6.9 2-6.9 2 63.7 50.1 75.4 121.1 75.6 122.1 1.9 15.6-3.1 22.9-8.7 31.3-1.4 1.8-2.7 5 .3 8.9l28.9 39.4h-.3c9.4 14.1 28.1 32.2-5.4 39.9-7.7 1.9-18.7 6.3-11.2 15.8 2.2 2.9 8.8 9.5 1.8 16.5-7.5 4.8-2.7 7.9-1.8 10.4 1.8 6.6-2.6 11.2-4.3 12.7-4.2 3.2-3.7 7.8-2.6 10.1v.1c3.1 13.1-1.7 27.1-3.9 34.9l.1-.1c-1.4 3.2 22-2.6 22.1-2.6 87.5-23 150.6-88.5 150.6-165.7-.1-86.3-78.7-157.9-182-172m239.4 126.7c-12.9-35.4-34.5-62.3-58.9-85.4-75.8-71.7-175.6-76.6-214-74.8C133 34 79.5 43.7 67.1 59.4c-4.6 5.8-4 6.2-24.4 103.2C36.7 165 0 181.3 0 225.9c-.3 88.7 133.8 89.3 133.8-.3 0-24.6-13-46.1-32.5-58V49.2c12-3 119.7-28.8 223.6 37.3 29.8 19 104.3 76.9 96.9 182.8-1.5 21.2-5.7 40.8-13.6 56.4-57 113.5-170.7 133.8-212.8 137.9-68.3 6.6-122.5-14.1-124-14-2.7.1-12 7.1-11.7 7.4 36.6 12.1 74.3 23 121 23 48 0 84.3-8.2 118-21.6C401.8 417.3 453.6 340 453.6 253.7c0-22.9-4.3-43.2-10.8-61.2m-246.3 33.6c-8.5-15.6.5-15.9 4.8-23.4 5.5-9.6 1.7-22.1-1.7-32.2-9.6-28.5-33.8-84.5-83-103.6v100c4.5 4.5 54.1 33.5 58.2 116.8 4.1 82.7-52 121.6-51.7 123.3 22.8 4.5 66 10.7 76.7-8.6 5.7-10.2-1.5-28.1-.9-28.1-3.6-14.2 7.8-19.4 7.8-21.8 0-1.4-7.2-3.1-7.2-8.1 0-5.9 8.5-6.2 9.4-10.7.9-4.5-3.1-7.8-5.1-16.6-3.5-19 27.9-16 30.8-23.1 1.4-3.3-1.4-7.8-3.4-10.7"] }; +var faTelegram = { prefix: 'fab', iconName: 'telegram', icon: [496, 512, [], "f2c6", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm121.8 169.9l-40.7 191.8c-3 13.6-11.1 16.9-22.4 10.5l-62-45.7-29.9 28.8c-3.3 3.3-6.1 6.1-12.5 6.1l4.4-63.1 114.9-103.8c5-4.4-1.1-6.9-7.7-2.5l-142 89.4-61.2-19.1c-13.3-4.2-13.6-13.3 2.8-19.7l239.1-92.2c11.1-4 20.8 2.7 17.2 19.5z"] }; +var faTelegramPlane = { prefix: 'fab', iconName: 'telegram-plane', icon: [448, 512, [], "f3fe", "M446.7 98.6l-67.6 318.8c-5.1 22.5-18.4 28.1-37.3 17.5l-103-75.9-49.7 47.8c-5.5 5.5-10.1 10.1-20.7 10.1l7.4-104.9 190.9-172.5c8.3-7.4-1.8-11.5-12.9-4.1L117.8 284 16.2 252.2c-22.1-6.9-22.5-22.1 4.6-32.7L418.2 66.4c18.4-6.9 34.5 4.1 28.5 32.2z"] }; +var faTencentWeibo = { prefix: 'fab', iconName: 'tencent-weibo', icon: [384, 512, [], "f1d5", "M72.3 495.8c1.4 19.9-27.6 22.2-29.7 2.9C31 368.8 73.7 259.2 144 185.5c-15.6-34 9.2-77.1 50.6-77.1 30.3 0 55.1 24.6 55.1 55.1 0 44-49.5 70.8-86.9 45.1-65.7 71.3-101.4 169.8-90.5 287.2zM192 .1C66.1.1-12.3 134.3 43.7 242.4 52.4 259.8 79 246.9 70 229 23.7 136.4 91 29.8 192 29.8c75.4 0 136.9 61.4 136.9 136.9 0 90.8-86.9 153.9-167.7 133.1-19.1-4.1-25.6 24.4-6.6 29.1 110.7 23.2 204-60 204-162.3C358.6 74.7 284 .1 192 .1z"] }; +var faThemeisle = { prefix: 'fab', iconName: 'themeisle', icon: [512, 512, [], "f2b2", "M208 88.286c0-10 6.286-21.714 17.715-21.714 11.142 0 17.714 11.714 17.714 21.714 0 10.285-6.572 21.714-17.714 21.714C214.286 110 208 98.571 208 88.286zm304 160c0 36.001-11.429 102.286-36.286 129.714-22.858 24.858-87.428 61.143-120.857 70.572l-1.143.286v32.571c0 16.286-12.572 30.571-29.143 30.571-10 0-19.429-5.714-24.572-14.286-5.427 8.572-14.856 14.286-24.856 14.286-10 0-19.429-5.714-24.858-14.286-5.142 8.572-14.571 14.286-24.57 14.286-10.286 0-19.429-5.714-24.858-14.286-5.143 8.572-14.571 14.286-24.571 14.286-18.857 0-29.429-15.714-29.429-32.857-16.286 12.285-35.715 19.428-56.571 19.428-22 0-43.429-8.285-60.286-22.857 10.285-.286 20.571-2.286 30.285-5.714-20.857-5.714-39.428-18.857-52-36.286 21.37 4.645 46.209 1.673 67.143-11.143-22-22-56.571-58.857-68.572-87.428C1.143 321.714 0 303.714 0 289.429c0-49.714 20.286-160 86.286-160 10.571 0 18.857 4.858 23.143 14.857a158.792 158.792 0 0 1 12-15.428c2-2.572 5.714-5.429 7.143-8.286 7.999-12.571 11.714-21.142 21.714-34C182.571 45.428 232 17.143 285.143 17.143c6 0 12 .285 17.714 1.143C313.714 6.571 328.857 0 344.572 0c14.571 0 29.714 6 40 16.286.857.858 1.428 2.286 1.428 3.428 0 3.714-10.285 13.429-12.857 16.286 4.286 1.429 15.714 6.858 15.714 12 0 2.857-2.857 5.143-4.571 7.143 31.429 27.714 49.429 67.143 56.286 108 4.286-5.143 10.285-8.572 17.143-8.572 10.571 0 20.857 7.144 28.571 14.001C507.143 187.143 512 221.714 512 248.286zM188 89.428c0 18.286 12.571 37.143 32.286 37.143 19.714 0 32.285-18.857 32.285-37.143 0-18-12.571-36.857-32.285-36.857-19.715 0-32.286 18.858-32.286 36.857zM237.714 194c0-19.714 3.714-39.143 8.571-58.286-52.039 79.534-13.531 184.571 68.858 184.571 21.428 0 42.571-7.714 60-20 2-7.429 3.714-14.857 3.714-22.572 0-14.286-6.286-21.428-20.572-21.428-4.571 0-9.143.857-13.429 1.714-63.343 12.668-107.142 3.669-107.142-63.999zm-41.142 254.858c0-11.143-8.858-20.857-20.286-20.857-11.429 0-20 9.715-20 20.857v32.571c0 11.143 8.571 21.142 20 21.142 11.428 0 20.286-9.715 20.286-21.142v-32.571zm49.143 0c0-11.143-8.572-20.857-20-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20-10 20-21.142v-32.571zm49.713 0c0-11.143-8.857-20.857-20.285-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20.285-9.715 20.285-21.142v-32.571zm49.715 0c0-11.143-8.857-20.857-20.286-20.857-11.428 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.858 21.142 20.286 21.142 11.429 0 20.286-10 20.286-21.142v-32.571zM421.714 286c-30.857 59.142-90.285 102.572-158.571 102.572-96.571 0-160.571-84.572-160.571-176.572 0-16.857 2-33.429 6-49.714-20 33.715-29.714 72.572-29.714 111.429 0 60.286 24.857 121.715 71.429 160.857 5.143-9.714 14.857-16.286 26-16.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.571-14.286 24.858-14.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.857-14.286 24.858-14.286 10 0 19.428 5.714 24.857 14.286 5.143-8.571 14.571-14.286 24.572-14.286 10.857 0 20.857 6.572 25.714 16 43.427-36.286 68.569-92 71.426-148.286zm10.572-99.714c0-53.714-34.571-105.714-92.572-105.714-30.285 0-58.571 15.143-78.857 36.857C240.862 183.812 233.41 254 302.286 254c28.805 0 97.357-28.538 84.286 36.857 28.857-26 45.714-65.714 45.714-104.571z"] }; +var faTradeFederation = { prefix: 'fab', iconName: 'trade-federation', icon: [496, 512, [], "f513", "M202.45 108.42v81.61H38.94l48.22 61.91h114.73v196.75h64.61V252.96h83.27v-62.69h-83.18V171.1h145.62v-62.68H202.45zm4.86 6h197.77v50.68H259.44v30.93h83.18v50.93h-83.26v195.73h-52.73V245.94H89.86l-39.95-49.91h157.4v-81.61zM247.99 8.8C111.03 8.8 0 119.83 0 256.8s111.03 248 247.99 248S496 393.76 496 256.8 384.96 8.8 247.99 8.8zm.02 13.24c129.66 0 234.76 105.12 234.76 234.78s-105.1 234.76-234.76 234.76S13.23 386.47 13.23 256.81 118.35 22.04 248.01 22.04zm0 7.89c-125.3 0-226.89 101.57-226.89 226.87s101.59 226.89 226.89 226.89S474.88 382.1 474.88 256.8 373.31 29.93 248.01 29.93zm-.02 13.3c117.95 0 213.56 95.62 213.56 213.56s-95.62 213.56-213.56 213.56S34.43 374.75 34.43 256.8 130.04 43.23 247.99 43.23zm-73.32 104.8l15.66 18.05-22.16-9.45-12.33 20.47 2.15-23.99-23.28-5.4 23.48-5.37-2.06-23.81 12.37 20.67 22.01-9.32-15.84 18.15zm-47.14-46.54l8.01 12.4 12.69-5.86-9.32 11.45 9.5 10.25-13.77-5.32-6.82 12.2.81-14.74-13.71-2.71 14.27-3.78-1.66-13.89zm250.77 75.59l11.99 19.56 20.88-9.11-14.9 17.45 15.11 17.04-21.2-8.78-11.54 19.64 1.8-22.87-22.24-4.9 22.31-5.36-2.21-22.67zm-107.05 98.45l13.86-3.22-1.28-14.17 7.35 12.18 13.08-5.59-9.31 10.75 9.36 10.71-13.1-5.54-7.29 12.21 1.22-14.17-13.89-3.16zm-125.43 6.5l23.73-3.87-1.73-24.53 11.01 21.38 22.79-9.22-16.93 17.08 15.81 18.83-21.47-10.82-13.02 20.86 3.66-23.77-23.85-5.94zm63.44-165.66v81.61H54.16l36.72 46.01h117.7v196.75h48.82V245.01h83.27v-47.03H257.4v-34.83h145.73v-46.78H209.26zm10.86 11.2h171.8v24.36H246.88v56.23h82.93v23.94h-82.93v197.42h-26.76V232.1H96.31l-20.09-23.94h143.9v-80.59z"] }; +var faTrello = { prefix: 'fab', iconName: 'trello', icon: [448, 512, [], "f181", "M392 32H56C25.1 32 0 57.1 0 88v336c0 30.9 25.1 56 56 56h336c30.9 0 56-25.1 56-56V88c0-30.9-25.1-56-56-56zM194.9 371.4c0 14.8-12 26.9-26.9 26.9H85.1c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9H168c14.8 0 26.9 12 26.9 26.9v254.3zm194.9-112c0 14.8-12 26.9-26.9 26.9H280c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9h82.9c14.8 0 26.9 12 26.9 26.9v142.3z"] }; +var faTripadvisor = { prefix: 'fab', iconName: 'tripadvisor', icon: [576, 512, [], "f262", "M166.4 280.521c0 13.236-10.73 23.966-23.966 23.966s-23.966-10.73-23.966-23.966 10.73-23.966 23.966-23.966 23.966 10.729 23.966 23.966zm264.962-23.956c-13.23 0-23.956 10.725-23.956 23.956 0 13.23 10.725 23.956 23.956 23.956 13.23 0 23.956-10.725 23.956-23.956-.001-13.231-10.726-23.956-23.956-23.956zm89.388 139.49c-62.667 49.104-153.276 38.109-202.379-24.559l-30.979 46.325-30.683-45.939c-48.277 60.39-135.622 71.891-197.885 26.055-64.058-47.158-77.759-137.316-30.601-201.374A186.762 186.762 0 0 0 0 139.416l90.286-.05a358.48 358.48 0 0 1 197.065-54.03 350.382 350.382 0 0 1 192.181 53.349l96.218.074a185.713 185.713 0 0 0-28.352 57.649c46.793 62.747 34.964 151.37-26.648 199.647zM259.366 281.761c-.007-63.557-51.535-115.075-115.092-115.068C80.717 166.7 29.2 218.228 29.206 281.785c.007 63.557 51.535 115.075 115.092 115.068 63.513-.075 114.984-51.539 115.068-115.052v-.04zm28.591-10.455c5.433-73.44 65.51-130.884 139.12-133.022a339.146 339.146 0 0 0-139.727-27.812 356.31 356.31 0 0 0-140.164 27.253c74.344 1.582 135.299 59.424 140.771 133.581zm251.706-28.767c-21.992-59.634-88.162-90.148-147.795-68.157-59.634 21.992-90.148 88.162-68.157 147.795v.032c22.038 59.607 88.198 90.091 147.827 68.113 59.615-22.004 90.113-88.162 68.125-147.783zm-326.039 37.975v.115c-.057 39.328-31.986 71.163-71.314 71.106-39.328-.057-71.163-31.986-71.106-71.314.057-39.328 31.986-71.163 71.314-71.106 39.259.116 71.042 31.94 71.106 71.199zm-24.512 0v-.084c-.051-25.784-20.994-46.645-46.778-46.594-25.784.051-46.645 20.994-46.594 46.777.051 25.784 20.994 46.645 46.777 46.594 25.726-.113 46.537-20.968 46.595-46.693zm313.423 0v.048c-.02 39.328-31.918 71.194-71.247 71.173s-71.194-31.918-71.173-71.247c.02-39.328 31.918-71.194 71.247-71.173 39.29.066 71.121 31.909 71.173 71.199zm-24.504-.008c-.009-25.784-20.918-46.679-46.702-46.67-25.784.009-46.679 20.918-46.67 46.702.009 25.784 20.918 46.678 46.702 46.67 25.765-.046 46.636-20.928 46.67-46.693v-.009z"] }; +var faTumblr = { prefix: 'fab', iconName: 'tumblr', icon: [320, 512, [], "f173", "M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z"] }; +var faTumblrSquare = { prefix: 'fab', iconName: 'tumblr-square', icon: [448, 512, [], "f174", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-82.3 364.2c-8.5 9.1-31.2 19.8-60.9 19.8-75.5 0-91.9-55.5-91.9-87.9v-90h-29.7c-3.4 0-6.2-2.8-6.2-6.2v-42.5c0-4.5 2.8-8.5 7.1-10 38.8-13.7 50.9-47.5 52.7-73.2.5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2h-52.1V321c0 21.4 14.8 33.5 42.5 22.4 3-1.2 5.6-2 8-1.4 2.2.5 3.6 2.1 4.6 4.9l13.8 40.2c1 3.2 2 6.7-.3 9.1z"] }; +var faTwitch = { prefix: 'fab', iconName: 'twitch', icon: [448, 512, [], "f1e8", "M40.1 32L10 108.9v314.3h107V480h60.2l56.8-56.8h87l117-117V32H40.1zm357.8 254.1L331 353H224l-56.8 56.8V353H76.9V72.1h321v214zM331 149v116.9h-40.1V149H331zm-107 0v116.9h-40.1V149H224z"] }; +var faTwitter = { prefix: 'fab', iconName: 'twitter', icon: [512, 512, [], "f099", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"] }; +var faTwitterSquare = { prefix: 'fab', iconName: 'twitter-square', icon: [448, 512, [], "f081", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z"] }; +var faTypo3 = { prefix: 'fab', iconName: 'typo3', icon: [433, 512, [], "f42b", "M330.8 341c-7 2.3-11.6 2.3-18.5 2.3-57.2 0-140.6-198.5-140.6-264.9 0-24.7 5.4-32.4 13.9-39.4-69.5 8.5-149.3 34-176.3 66.4-5.4 7.7-9.3 20.8-9.3 37.1C0 246 106.8 480 184.1 480c36.3 0 97.3-59.5 146.7-139M294.5 32c71.8 0 138.8 11.6 138.8 52.5 0 82.6-52.5 182.3-78.8 182.3-47.9 0-101.7-132.1-101.7-198.5 0-30.9 11.6-36.3 41.7-36.3"] }; +var faUber = { prefix: 'fab', iconName: 'uber', icon: [448, 512, [], "f402", "M414.1 32H33.9C15.2 32 0 47.2 0 65.9V446c0 18.8 15.2 34 33.9 34H414c18.7 0 33.9-15.2 33.9-33.9V65.9C448 47.2 432.8 32 414.1 32zM237.6 391.1C163 398.6 96.4 344.2 88.9 269.6h94.4V290c0 3.7 3 6.8 6.8 6.8H258c3.7 0 6.8-3 6.8-6.8v-67.9c0-3.7-3-6.8-6.8-6.8h-67.9c-3.7 0-6.8 3-6.8 6.8v20.4H88.9c7-69.4 65.4-122.2 135.1-122.2 69.7 0 128.1 52.8 135.1 122.2 7.5 74.5-46.9 141.1-121.5 148.6z"] }; +var faUikit = { prefix: 'fab', iconName: 'uikit', icon: [448, 512, [], "f403", "M443.9 128v256L218 512 0 384V169.7l87.6 45.1v117l133.5 75.5 135.8-75.5v-151l-101.1-57.6 87.6-53.1L443.9 128zM308.6 49.1L223.8 0l-88.6 54.8 86 47.3 87.4-53z"] }; +var faUniregistry = { prefix: 'fab', iconName: 'uniregistry', icon: [384, 512, [], "f404", "M281.1 220.1H384v-14.8H281.1v14.8zm0-37.1H384v-12.4H281.1V183zm0 74.2H384v-17.3H281.1v17.3zm-157.7 86.7H8.5c2.6 8.5 5.8 16.8 9.6 24.8h138.3c-12.9-5.7-24.1-14.2-33-24.8m145.7-12.4h109.7c1.8-7.3 3.1-14.7 3.9-22.3H278.3c-2.1 7.9-5.2 15.4-9.2 22.3m-41.5 37.1H367c3.7-8 5.8-16.2 8.5-24.8h-115c-8.8 10.7-20.1 19.2-32.9 24.8M384 32H281.1v2.5H384V32zM192 480c39.5 0 76.2-11.8 106.8-32.2H85.3C115.8 468.2 152.5 480 192 480m89.1-334.2H384V136H281.1v9.8zm0-37.1H384v-7.4H281.1v7.4zm0-37.1H384v-4.9H281.1v4.9zm-178.2 99H0V183h102.9v-12.4zM38.8 405.7h305.3c6.7-8.5 12.6-17.6 17.8-27.2H23c5.2 9.6 9.2 18.7 15.8 27.2m64.1-118.8v-12.4H0v12.4c0 2.5 0 5 .1 7.4h103.1c-.2-2.4-.3-4.9-.3-7.4m178.2 0c0 2.5-.1 5-.4 7.4h103.1c.1-2.5.2-4.9.2-7.4v-12.4H281.1v12.4zm-203 156h227.7c11.8-8.7 22.7-18.6 32.2-29.7H44.9c9.6 11 21.4 21 33.2 29.7m24.8-376.2H0v4.9h102.9v-4.9zm0-34.7H0v2.5h102.9V32zm0 173.3H0v14.8h102.9v-14.8zm0 34.6H0v17.3h102.9v-17.3zm0-103.9H0v9.9h102.9V136zm0-34.7H0v7.4h102.9v-7.4zm2.8 207.9H1.3c.9 7.6 2.2 15 3.9 22.3h109.7c-4-6.9-7.2-14.4-9.2-22.3"] }; +var faUntappd = { prefix: 'fab', iconName: 'untappd', icon: [640, 512, [], "f405", "M401.3 49.9c-79.8 160.1-84.6 152.5-87.9 173.2l-5.2 32.8c-1.9 12-6.6 23.5-13.7 33.4L145.6 497.1c-7.6 10.6-20.4 16.2-33.4 14.6-40.3-5-77.8-32.2-95.3-68.5-5.7-11.8-4.5-25.8 3.1-36.4l148.9-207.9c7.1-9.9 16.4-18 27.2-23.7l29.3-15.5c18.5-9.8 9.7-11.9 135.6-138.9 1-4.8 1-7.3 3.6-8 3-.7 6.6-1 6.3-4.6l-.4-4.6c-.2-1.9 1.3-3.6 3.2-3.6 4.5-.1 13.2 1.2 25.6 10 12.3 8.9 16.4 16.8 17.7 21.1.6 1.8-.6 3.7-2.4 4.2l-4.5 1.1c-3.4.9-2.5 4.4-2.3 7.4.1 2.8-2.3 3.6-6.5 6.1zM230.1 36.4c3.4.9 2.5 4.4 2.3 7.4-.2 2.7 2.1 3.5 6.4 6 7.9 15.9 15.3 30.5 22.2 44 .7 1.3 2.3 1.5 3.3.5 11.2-12 24.6-26.2 40.5-42.6 1.3-1.4 1.4-3.5.1-4.9-8-8.2-16.5-16.9-25.6-26.1-1-4.7-1-7.3-3.6-8-3-.8-6.6-1-6.3-4.6.3-3.3 1.4-8.1-2.8-8.2-4.5-.1-13.2 1.1-25.6 10-12.3 8.9-16.4 16.8-17.7 21.1-1.4 4.2 3.6 4.6 6.8 5.4zM620 406.7L471.2 198.8c-13.2-18.5-26.6-23.4-56.4-39.1-11.2-5.9-14.2-10.9-30.5-28.9-1-1.1-2.9-.9-3.6.5-46.3 88.8-47.1 82.8-49 94.8-1.7 10.7-1.3 20 .3 29.8 1.9 12 6.6 23.5 13.7 33.4l148.9 207.9c7.6 10.6 20.2 16.2 33.1 14.7 40.3-4.9 78-32 95.7-68.6 5.4-11.9 4.3-25.9-3.4-36.6z"] }; +var faUsb = { prefix: 'fab', iconName: 'usb', icon: [640, 512, [], "f287", "M641.5 256c0 3.1-1.7 6.1-4.5 7.5L547.9 317c-1.4.8-2.8 1.4-4.5 1.4-1.4 0-3.1-.3-4.5-1.1-2.8-1.7-4.5-4.5-4.5-7.8v-35.6H295.7c25.3 39.6 40.5 106.9 69.6 106.9H392V354c0-5 3.9-8.9 8.9-8.9H490c5 0 8.9 3.9 8.9 8.9v89.1c0 5-3.9 8.9-8.9 8.9h-89.1c-5 0-8.9-3.9-8.9-8.9v-26.7h-26.7c-75.4 0-81.1-142.5-124.7-142.5H140.3c-8.1 30.6-35.9 53.5-69 53.5C32 327.3 0 295.3 0 256s32-71.3 71.3-71.3c33.1 0 61 22.8 69 53.5 39.1 0 43.9 9.5 74.6-60.4C255 88.7 273 95.7 323.8 95.7c7.5-20.9 27-35.6 50.4-35.6 29.5 0 53.5 23.9 53.5 53.5s-23.9 53.5-53.5 53.5c-23.4 0-42.9-14.8-50.4-35.6H294c-29.1 0-44.3 67.4-69.6 106.9h310.1v-35.6c0-3.3 1.7-6.1 4.5-7.8 2.8-1.7 6.4-1.4 8.9.3l89.1 53.5c2.8 1.1 4.5 4.1 4.5 7.2z"] }; +var faUssunnah = { prefix: 'fab', iconName: 'ussunnah', icon: [512, 512, [], "f407", "M156.8 285.1l5.7 14.4h-8.2c-1.3-3.2-3.1-7.7-3.8-9.5-2.5-6.3-1.1-8.4 0-10 1.9-2.7 3.2-4.4 3.6-5.2 0 2.2.8 5.7 2.7 10.3zm297.3 18.8c-2.1 13.8-5.7 27.1-10.5 39.7l43 23.4-44.8-18.8c-5.3 13.2-12 25.6-19.9 37.2l34.2 30.2-36.8-26.4c-8.4 11.8-18 22.6-28.7 32.3l24.9 34.7-28.1-31.8c-11 9.6-23.1 18-36.1 25.1l15.7 37.2-19.3-35.3c-13.1 6.8-27 12.1-41.6 15.9l6.7 38.4-10.5-37.4c-14.3 3.4-29.2 5.3-44.5 5.4L256 512l-1.9-38.4c-15.3-.1-30.2-2-44.5-5.3L199 505.6l6.7-38.2c-14.6-3.7-28.6-9.1-41.7-15.8l-19.2 35.1 15.6-37c-13-7-25.2-15.4-36.2-25.1l-27.9 31.6 24.7-34.4c-10.7-9.7-20.4-20.5-28.8-32.3l-36.5 26.2 33.9-29.9c-7.9-11.6-14.6-24.1-20-37.3l-44.4 18.7L67.8 344c-4.8-12.7-8.4-26.1-10.5-39.9l-51 9 50.3-14.2c-1.1-8.5-1.7-17.1-1.7-25.9 0-4.7.2-9.4.5-14.1L0 256l56-2.8c1.3-13.1 3.8-25.8 7.5-38.1L6.4 199l58.9 10.4c4-12 9.1-23.5 15.2-34.4l-55.1-30 58.3 24.6C90 159 97.2 149.2 105.3 140L55.8 96.4l53.9 38.7c8.1-8.6 17-16.5 26.6-23.6l-40-55.6 45.6 51.6c9.5-6.6 19.7-12.3 30.3-17.2l-27.3-64.9 33.8 62.1c10.5-4.4 21.4-7.9 32.7-10.4L199 6.4l19.5 69.2c11-2.1 22.3-3.2 33.8-3.4L256 0l3.6 72.2c11.5.2 22.8 1.4 33.8 3.5L313 6.4l-12.4 70.7c11.3 2.6 22.2 6.1 32.6 10.5l33.9-62.2-27.4 65.1c10.6 4.9 20.7 10.7 30.2 17.2l45.8-51.8-40.1 55.9c9.5 7.1 18.4 15 26.5 23.6l54.2-38.9-49.7 43.9c8 9.1 15.2 18.9 21.5 29.4l58.7-24.7-55.5 30.2c6.1 10.9 11.1 22.3 15.1 34.3l59.3-10.4-57.5 16.2c3.7 12.2 6.2 24.9 7.5 37.9L512 256l-56 2.8c.3 4.6.5 9.3.5 14.1 0 8.7-.6 17.3-1.6 25.8l50.7 14.3-51.5-9.1zm-21.8-31c0-97.5-79-176.5-176.5-176.5s-176.5 79-176.5 176.5 79 176.5 176.5 176.5 176.5-79 176.5-176.5zm-24 0c0 84.3-68.3 152.6-152.6 152.6s-152.6-68.3-152.6-152.6 68.3-152.6 152.6-152.6 152.6 68.3 152.6 152.6zM195 241c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-40.7-19c0 2.1 1.3 3.8 3.6 5.1 3.5 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-19 0c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.4 6.8-9.6 10.9-9.6 12.6zm204.9 87.9c-8.4-3-8.7-6.8-8.7-15.6V182c-8.2 12.5-14.2 18.6-18 18.6 6.3 14.4 9.5 23.9 9.5 28.3v64.3c0 2.2-2.2 6.5-4.7 6.5h-18c-2.8-7.5-10.2-26.9-15.3-40.3-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3 2.6 6.7 6.4 16.5 7.9 20.2h-9.2c-3.9-10.4-9.6-25.4-11.8-31.1-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3.8 2 2.8 7.3 4.3 10.9H256c-1.5-4.1-5.6-14.6-8.4-22-2 2.5-7.2 9.2-10.7 13.7 2.5 1.6 4.3 3.6 5.2 6.3.2.6.5 1.4.6 1.7H225c-4.6-13.9-11.4-27.7-11.4-34.1 0-2.2.3-5.1 1.1-8.2-8.8 10.8-14 15.9-14 25 0 7.5 10.4 28.3 10.4 33.3 0 1.7-.5 3.3-1.4 4.9-9.6-12.7-15.5-20.7-18.8-20.7h-12l-11.2-28c-3.8-9.6-5.7-16-5.7-18.8 0-3.8.5-7.7 1.7-12.2-1 1.3-3.7 4.7-5.5 7.1-.8-2.1-3.1-7.7-4.6-11.5-2.1 2.5-7.5 9.1-11.2 13.6.9 2.3 3.3 8.1 4.9 12.2-2.5 3.3-9.1 11.8-13.6 17.7-4 5.3-5.8 13.3-2.7 21.8 2.5 6.7 2 7.9-1.7 14.1H191c5.5 0 14.3 14 15.5 22 13.2-16 15.4-19.6 16.8-21.6h107c3.9 0 7.2-1.9 9.9-5.8zm20.1-26.6V181.7c-9 12.5-15.9 18.6-20.7 18.6 7.1 14.4 10.7 23.9 10.7 28.3v66.3c0 17.5 8.6 20.4 24 20.4 8.1 0 12.5-.8 13.7-2.7-4.3-1.6-7.6-2.5-9.9-3.3-8.1-3.2-17.8-7.4-17.8-26z"] }; +var faVaadin = { prefix: 'fab', iconName: 'vaadin', icon: [448, 512, [], "f408", "M224.5 140.7c1.5-17.6 4.9-52.7 49.8-52.7h98.6c20.7 0 32.1-7.8 32.1-21.6V54.1c0-12.2 9.3-22.1 21.5-22.1S448 41.9 448 54.1v36.5c0 42.9-21.5 62-66.8 62H280.7c-30.1 0-33 14.7-33 27.1 0 1.3-.1 2.5-.2 3.7-.7 12.3-10.9 22.2-23.4 22.2s-22.7-9.8-23.4-22.2c-.1-1.2-.2-2.4-.2-3.7 0-12.3-3-27.1-33-27.1H66.8c-45.3 0-66.8-19.1-66.8-62V54.1C0 41.9 9.4 32 21.6 32s21.5 9.9 21.5 22.1v12.3C43.1 80.2 54.5 88 75.2 88h98.6c44.8 0 48.3 35.1 49.8 52.7h.9zM224 456c11.5 0 21.4-7 25.7-16.3 1.1-1.8 97.1-169.6 98.2-171.4 11.9-19.6-3.2-44.3-27.2-44.3-13.9 0-23.3 6.4-29.8 20.3L224 362l-66.9-117.7c-6.4-13.9-15.9-20.3-29.8-20.3-24 0-39.1 24.6-27.2 44.3 1.1 1.9 97.1 169.6 98.2 171.4 4.3 9.3 14.2 16.3 25.7 16.3z"] }; +var faViacoin = { prefix: 'fab', iconName: 'viacoin', icon: [384, 512, [], "f237", "M384 32h-64l-80.7 192h-94.5L64 32H0l48 112H0v48h68.5l13.8 32H0v48h102.8L192 480l89.2-208H384v-48h-82.3l13.8-32H384v-48h-48l48-112zM192 336l-27-64h54l-27 64z"] }; +var faViadeo = { prefix: 'fab', iconName: 'viadeo', icon: [448, 512, [], "f2a9", "M276.2 150.5v.7C258.3 98.6 233.6 47.8 205.4 0c43.3 29.2 67 100 70.8 150.5zm32.7 121.7c7.6 18.2 11 37.5 11 57 0 77.7-57.8 141-137.8 139.4l3.8-.3c74.2-46.7 109.3-118.6 109.3-205.1 0-38.1-6.5-75.9-18.9-112 1 11.7 1 23.7 1 35.4 0 91.8-18.1 241.6-116.6 280C95 455.2 49.4 398 49.4 329.2c0-75.6 57.4-142.3 135.4-142.3 16.8 0 33.7 3.1 49.1 9.6 1.7-15.1 6.5-29.9 13.4-43.3-19.9-7.2-41.2-10.7-62.5-10.7-161.5 0-238.7 195.9-129.9 313.7 67.9 74.6 192 73.9 259.8 0 56.6-61.3 60.9-142.4 36.4-201-12.7 8-27.1 13.9-42.2 17zM418.1 11.7c-31 66.5-81.3 47.2-115.8 80.1-12.4 12-20.6 34-20.6 50.5 0 14.1 4.5 27.1 12 38.8 47.4-11 98.3-46 118.2-90.7-.7 5.5-4.8 14.4-7.2 19.2-20.3 35.7-64.6 65.6-99.7 84.9 14.8 14.4 33.7 25.8 55 25.8 79 0 110.1-134.6 58.1-208.6z"] }; +var faViadeoSquare = { prefix: 'fab', iconName: 'viadeo-square', icon: [448, 512, [], "f2aa", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM280.7 381.2c-42.4 46.2-120 46.6-162.4 0-68-73.6-19.8-196.1 81.2-196.1 13.3 0 26.6 2.1 39.1 6.7-4.3 8.4-7.3 17.6-8.4 27.1-9.7-4.1-20.2-6-30.7-6-48.8 0-84.6 41.7-84.6 88.9 0 43 28.5 78.7 69.5 85.9 61.5-24 72.9-117.6 72.9-175 0-7.3 0-14.8-.6-22.1-11.2-32.9-26.6-64.6-44.2-94.5 27.1 18.3 41.9 62.5 44.2 94.1v.4c7.7 22.5 11.8 46.2 11.8 70 0 54.1-21.9 99-68.3 128.2l-2.4.2c50 1 86.2-38.6 86.2-87.2 0-12.2-2.1-24.3-6.9-35.7 9.5-1.9 18.5-5.6 26.4-10.5 15.3 36.6 12.6 87.3-22.8 125.6zM309 233.7c-13.3 0-25.1-7.1-34.4-16.1 21.9-12 49.6-30.7 62.3-53 1.5-3 4.1-8.6 4.5-12-12.5 27.9-44.2 49.8-73.9 56.7-4.7-7.3-7.5-15.5-7.5-24.3 0-10.3 5.2-24.1 12.9-31.6 21.6-20.5 53-8.5 72.4-50 32.5 46.2 13.1 130.3-36.3 130.3z"] }; +var faViber = { prefix: 'fab', iconName: 'viber', icon: [512, 512, [], "f409", "M444 49.9C431.3 38.2 379.9.9 265.3.4c0 0-135.1-8.1-200.9 52.3C27.8 89.3 14.9 143 13.5 209.5c-1.4 66.5-3.1 191.1 117 224.9h.1l-.1 51.6s-.8 20.9 13 25.1c16.6 5.2 26.4-10.7 42.3-27.8 8.7-9.4 20.7-23.2 29.8-33.7 82.2 6.9 145.3-8.9 152.5-11.2 16.6-5.4 110.5-17.4 125.7-142 15.8-128.6-7.6-209.8-49.8-246.5zM457.9 287c-12.9 104-89 110.6-103 115.1-6 1.9-61.5 15.7-131.2 11.2 0 0-52 62.7-68.2 79-5.3 5.3-11.1 4.8-11-5.7 0-6.9.4-85.7.4-85.7-.1 0-.1 0 0 0-101.8-28.2-95.8-134.3-94.7-189.8 1.1-55.5 11.6-101 42.6-131.6 55.7-50.5 170.4-43 170.4-43 96.9.4 143.3 29.6 154.1 39.4 35.7 30.6 53.9 103.8 40.6 211.1zm-139-80.8c.4 8.6-12.5 9.2-12.9.6-1.1-22-11.4-32.7-32.6-33.9-8.6-.5-7.8-13.4.7-12.9 27.9 1.5 43.4 17.5 44.8 46.2zm20.3 11.3c1-42.4-25.5-75.6-75.8-79.3-8.5-.6-7.6-13.5.9-12.9 58 4.2 88.9 44.1 87.8 92.5-.1 8.6-13.1 8.2-12.9-.3zm47 13.4c.1 8.6-12.9 8.7-12.9.1-.6-81.5-54.9-125.9-120.8-126.4-8.5-.1-8.5-12.9 0-12.9 73.7.5 133 51.4 133.7 139.2zM374.9 329v.2c-10.8 19-31 40-51.8 33.3l-.2-.3c-21.1-5.9-70.8-31.5-102.2-56.5-16.2-12.8-31-27.9-42.4-42.4-10.3-12.9-20.7-28.2-30.8-46.6-21.3-38.5-26-55.7-26-55.7-6.7-20.8 14.2-41 33.3-51.8h.2c9.2-4.8 18-3.2 23.9 3.9 0 0 12.4 14.8 17.7 22.1 5 6.8 11.7 17.7 15.2 23.8 6.1 10.9 2.3 22-3.7 26.6l-12 9.6c-6.1 4.9-5.3 14-5.3 14s17.8 67.3 84.3 84.3c0 0 9.1.8 14-5.3l9.6-12c4.6-6 15.7-9.8 26.6-3.7 14.7 8.3 33.4 21.2 45.8 32.9 7 5.7 8.6 14.4 3.8 23.6z"] }; +var faVimeo = { prefix: 'fab', iconName: 'vimeo', icon: [448, 512, [], "f40a", "M403.2 32H44.8C20.1 32 0 52.1 0 76.8v358.4C0 459.9 20.1 480 44.8 480h358.4c24.7 0 44.8-20.1 44.8-44.8V76.8c0-24.7-20.1-44.8-44.8-44.8zM377 180.8c-1.4 31.5-23.4 74.7-66 129.4-44 57.2-81.3 85.8-111.7 85.8-18.9 0-34.8-17.4-47.9-52.3-25.5-93.3-36.4-148-57.4-148-2.4 0-10.9 5.1-25.4 15.2l-15.2-19.6c37.3-32.8 72.9-69.2 95.2-71.2 25.2-2.4 40.7 14.8 46.5 51.7 20.7 131.2 29.9 151 67.6 91.6 13.5-21.4 20.8-37.7 21.8-48.9 3.5-33.2-25.9-30.9-45.8-22.4 15.9-52.1 46.3-77.4 91.2-76 33.3.9 49 22.5 47.1 64.7z"] }; +var faVimeoSquare = { prefix: 'fab', iconName: 'vimeo-square', icon: [448, 512, [], "f194", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16.2 149.6c-1.4 31.1-23.2 73.8-65.3 127.9-43.5 56.5-80.3 84.8-110.4 84.8-18.7 0-34.4-17.2-47.3-51.6-25.2-92.3-35.9-146.4-56.7-146.4-2.4 0-10.8 5-25.1 15.1L64 192c36.9-32.4 72.1-68.4 94.1-70.4 24.9-2.4 40.2 14.6 46 51.1 20.5 129.6 29.6 149.2 66.8 90.5 13.4-21.2 20.6-37.2 21.5-48.3 3.4-32.8-25.6-30.6-45.2-22.2 15.7-51.5 45.8-76.5 90.1-75.1 32.9 1 48.4 22.4 46.5 64z"] }; +var faVimeoV = { prefix: 'fab', iconName: 'vimeo-v', icon: [448, 512, [], "f27d", "M447.8 153.6c-2 43.6-32.4 103.3-91.4 179.1-60.9 79.2-112.4 118.8-154.6 118.8-26.1 0-48.2-24.1-66.3-72.3C100.3 250 85.3 174.3 56.2 174.3c-3.4 0-15.1 7.1-35.2 21.1L0 168.2c51.6-45.3 100.9-95.7 131.8-98.5 34.9-3.4 56.3 20.5 64.4 71.5 28.7 181.5 41.4 208.9 93.6 126.7 18.7-29.6 28.8-52.1 30.2-67.6 4.8-45.9-35.8-42.8-63.3-31 22-72.1 64.1-107.1 126.2-105.1 45.8 1.2 67.5 31.1 64.9 89.4z"] }; +var faVine = { prefix: 'fab', iconName: 'vine', icon: [384, 512, [], "f1ca", "M384 254.7v52.1c-18.4 4.2-36.9 6.1-52.1 6.1-36.9 77.4-103 143.8-125.1 156.2-14 7.9-27.1 8.4-42.7-.8C137 452 34.2 367.7 0 102.7h74.5C93.2 261.8 139 343.4 189.3 404.5c27.9-27.9 54.8-65.1 75.6-106.9-49.8-25.3-80.1-80.9-80.1-145.6 0-65.6 37.7-115.1 102.2-115.1 114.9 0 106.2 127.9 81.6 181.5 0 0-46.4 9.2-63.5-20.5 3.4-11.3 8.2-30.8 8.2-48.5 0-31.3-11.3-46.6-28.4-46.6-18.2 0-30.8 17.1-30.8 50 .1 79.2 59.4 118.7 129.9 101.9z"] }; +var faVk = { prefix: 'fab', iconName: 'vk', icon: [576, 512, [], "f189", "M545 117.7c3.7-12.5 0-21.7-17.8-21.7h-58.9c-15 0-21.9 7.9-25.6 16.7 0 0-30 73.1-72.4 120.5-13.7 13.7-20 18.1-27.5 18.1-3.7 0-9.4-4.4-9.4-16.9V117.7c0-15-4.2-21.7-16.6-21.7h-92.6c-9.4 0-15 7-15 13.5 0 14.2 21.2 17.5 23.4 57.5v86.8c0 19-3.4 22.5-10.9 22.5-20 0-68.6-73.4-97.4-157.4-5.8-16.3-11.5-22.9-26.6-22.9H38.8c-16.8 0-20.2 7.9-20.2 16.7 0 15.6 20 93.1 93.1 195.5C160.4 378.1 229 416 291.4 416c37.5 0 42.1-8.4 42.1-22.9 0-66.8-3.4-73.1 15.4-73.1 8.7 0 23.7 4.4 58.7 38.1 40 40 46.6 57.9 69 57.9h58.9c16.8 0 25.3-8.4 20.4-25-11.2-34.9-86.9-106.7-90.3-111.5-8.7-11.2-6.2-16.2 0-26.2.1-.1 72-101.3 79.4-135.6z"] }; +var faVnv = { prefix: 'fab', iconName: 'vnv', icon: [640, 512, [], "f40b", "M104.9 352c-34.1 0-46.4-30.4-46.4-30.4L2.6 210.1S-7.8 192 13 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.7-74.5c5.6-9.5 8.4-18.1 18.8-18.1h32.8c20.8 0 10.4 18.1 10.4 18.1l-55.8 111.5S174.2 352 140 352h-35.1zm395 0c-34.1 0-46.4-30.4-46.4-30.4l-55.9-111.5S387.2 192 408 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.8-74.5c5.6-9.5 8.4-18.1 18.8-18.1H627c20.8 0 10.4 18.1 10.4 18.1l-55.9 111.5S569.3 352 535.1 352h-35.2zM337.6 192c34.1 0 46.4 30.4 46.4 30.4l55.9 111.5s10.4 18.1-10.4 18.1h-32.8c-10.4 0-13.2-8.7-18.8-18.1l-36.7-74.5s-5.2-13.1-21.1-13.1c-15.9 0-21.1 13.1-21.1 13.1l-36.7 74.5c-5.6 9.4-8.4 18.1-18.8 18.1h-32.9c-20.8 0-10.4-18.1-10.4-18.1l55.9-111.5s12.2-30.4 46.4-30.4h35.1z"] }; +var faVuejs = { prefix: 'fab', iconName: 'vuejs', icon: [448, 512, [], "f41f", "M356.9 64.3H280l-56 88.6-48-88.6H0L224 448 448 64.3h-91.1zm-301.2 32h53.8L224 294.5 338.4 96.3h53.8L224 384.5 55.7 96.3z"] }; +var faWeibo = { prefix: 'fab', iconName: 'weibo', icon: [512, 512, [], "f18a", "M407 177.6c7.6-24-13.4-46.8-37.4-41.7-22 4.8-28.8-28.1-7.1-32.8 50.1-10.9 92.3 37.1 76.5 84.8-6.8 21.2-38.8 10.8-32-10.3zM214.8 446.7C108.5 446.7 0 395.3 0 310.4c0-44.3 28-95.4 76.3-143.7C176 67 279.5 65.8 249.9 161c-4 13.1 12.3 5.7 12.3 6 79.5-33.6 140.5-16.8 114 51.4-3.7 9.4 1.1 10.9 8.3 13.1 135.7 42.3 34.8 215.2-169.7 215.2zm143.7-146.3c-5.4-55.7-78.5-94-163.4-85.7-84.8 8.6-148.8 60.3-143.4 116s78.5 94 163.4 85.7c84.8-8.6 148.8-60.3 143.4-116zM347.9 35.1c-25.9 5.6-16.8 43.7 8.3 38.3 72.3-15.2 134.8 52.8 111.7 124-7.4 24.2 29.1 37 37.4 12 31.9-99.8-55.1-195.9-157.4-174.3zm-78.5 311c-17.1 38.8-66.8 60-109.1 46.3-40.8-13.1-58-53.4-40.3-89.7 17.7-35.4 63.1-55.4 103.4-45.1 42 10.8 63.1 50.2 46 88.5zm-86.3-30c-12.9-5.4-30 .3-38 12.9-8.3 12.9-4.3 28 8.6 34 13.1 6 30.8.3 39.1-12.9 8-13.1 3.7-28.3-9.7-34zm32.6-13.4c-5.1-1.7-11.4.6-14.3 5.4-2.9 5.1-1.4 10.6 3.7 12.9 5.1 2 11.7-.3 14.6-5.4 2.8-5.2 1.1-10.9-4-12.9z"] }; +var faWeixin = { prefix: 'fab', iconName: 'weixin', icon: [576, 512, [], "f1d7", "M385.2 167.6c6.4 0 12.6.3 18.8 1.1C387.4 90.3 303.3 32 207.7 32 100.5 32 13 104.8 13 197.4c0 53.4 29.3 97.5 77.9 131.6l-19.3 58.6 68-34.1c24.4 4.8 43.8 9.7 68.2 9.7 6.2 0 12.1-.3 18.3-.8-4-12.9-6.2-26.6-6.2-40.8-.1-84.9 72.9-154 165.3-154zm-104.5-52.9c14.5 0 24.2 9.7 24.2 24.4 0 14.5-9.7 24.2-24.2 24.2-14.8 0-29.3-9.7-29.3-24.2.1-14.7 14.6-24.4 29.3-24.4zm-136.4 48.6c-14.5 0-29.3-9.7-29.3-24.2 0-14.8 14.8-24.4 29.3-24.4 14.8 0 24.4 9.7 24.4 24.4 0 14.6-9.6 24.2-24.4 24.2zM563 319.4c0-77.9-77.9-141.3-165.4-141.3-92.7 0-165.4 63.4-165.4 141.3S305 460.7 397.6 460.7c19.3 0 38.9-5.1 58.6-9.9l53.4 29.3-14.8-48.6C534 402.1 563 363.2 563 319.4zm-219.1-24.5c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.8 0 24.4 9.7 24.4 19.3 0 10-9.7 19.6-24.4 19.6zm107.1 0c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.5 0 24.4 9.7 24.4 19.3.1 10-9.9 19.6-24.4 19.6z"] }; +var faWhatsapp = { prefix: 'fab', iconName: 'whatsapp', icon: [448, 512, [], "f232", "M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"] }; +var faWhatsappSquare = { prefix: 'fab', iconName: 'whatsapp-square', icon: [448, 512, [], "f40c", "M224 122.8c-72.7 0-131.8 59.1-131.9 131.8 0 24.9 7 49.2 20.2 70.1l3.1 5-13.3 48.6 49.9-13.1 4.8 2.9c20.2 12 43.4 18.4 67.1 18.4h.1c72.6 0 133.3-59.1 133.3-131.8 0-35.2-15.2-68.3-40.1-93.2-25-25-58-38.7-93.2-38.7zm77.5 188.4c-3.3 9.3-19.1 17.7-26.7 18.8-12.6 1.9-22.4.9-47.5-9.9-39.7-17.2-65.7-57.2-67.7-59.8-2-2.6-16.2-21.5-16.2-41s10.2-29.1 13.9-33.1c3.6-4 7.9-5 10.6-5 2.6 0 5.3 0 7.6.1 2.4.1 5.7-.9 8.9 6.8 3.3 7.9 11.2 27.4 12.2 29.4s1.7 4.3.3 6.9c-7.6 15.2-15.7 14.6-11.6 21.6 15.3 26.3 30.6 35.4 53.9 47.1 4 2 6.3 1.7 8.6-1 2.3-2.6 9.9-11.6 12.5-15.5 2.6-4 5.3-3.3 8.9-2 3.6 1.3 23.1 10.9 27.1 12.9s6.6 3 7.6 4.6c.9 1.9.9 9.9-2.4 19.1zM400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM223.9 413.2c-26.6 0-52.7-6.7-75.8-19.3L64 416l22.5-82.2c-13.9-24-21.2-51.3-21.2-79.3C65.4 167.1 136.5 96 223.9 96c42.4 0 82.2 16.5 112.2 46.5 29.9 30 47.9 69.8 47.9 112.2 0 87.4-72.7 158.5-160.1 158.5z"] }; +var faWhmcs = { prefix: 'fab', iconName: 'whmcs', icon: [448, 512, [], "f40d", "M448 161v-21.3l-28.5-8.8-2.2-10.4 20.1-20.7L427 80.4l-29 7.5-7.2-7.5 7.5-28.2-19.1-11.6-21.3 21-10.7-3.2-7-26.4h-22.6l-6.2 26.4-12.1 3.2-19.7-21-19.4 11 8.1 27.7-8.1 8.4-28.5-7.5-11 19.1 20.7 21-2.9 10.4-28.5 7.8-.3 21.7 28.8 7.5 2.4 12.1-20.1 19.9 10.4 18.5 29.6-7.5 7.2 8.6-8.1 26.9 19.9 11.6 19.4-20.4 11.6 2.9 6.7 28.5 22.6.3 6.7-28.8 11.6-3.5 20.7 21.6 20.4-12.1-8.8-28 7.8-8.1 28.8 8.8 10.3-20.1-20.9-18.8 2.2-12.1 29.1-7zm-119.2 45.2c-31.3 0-56.8-25.4-56.8-56.8s25.4-56.8 56.8-56.8 56.8 25.4 56.8 56.8c0 31.5-25.4 56.8-56.8 56.8zm72.3 16.4l46.9 14.5V277l-55.1 13.4-4.1 22.7 38.9 35.3-19.2 37.9-54-16.7-14.6 15.2 16.7 52.5-38.3 22.7-38.9-40.5-21.7 6.6-12.6 54-42.4-.5-12.6-53.6-21.7-5.6-36.4 38.4-37.4-21.7 15.2-50.5-13.7-16.1-55.5 14.1-19.7-34.8 37.9-37.4-4.8-22.8-54-14.1.5-40.9L54 219.9l5.7-19.7-38.9-39.4L41.5 125l53.6 14.1 15.2-15.7-15.2-52 36.4-20.7 36.8 39.4L191 84l11.6-52H245l11.6 45.9L234 72l-6.3-1.7-3.3 5.7-11 19.1-3.3 5.6 4.6 4.6 17.2 17.4-.3 1-23.8 6.5-6.2 1.7-.1 6.4-.2 12.9C153.8 161.6 118 204 118 254.7c0 58.3 47.3 105.7 105.7 105.7 50.5 0 92.7-35.4 103.2-82.8l13.2.2 6.9.1 1.6-6.7 5.6-24 1.9-.6 17.1 17.8 4.7 4.9 5.8-3.4 20.4-12.1 5.8-3.5-2-6.5-6.8-21.2z"] }; +var faWikipediaW = { prefix: 'fab', iconName: 'wikipedia-w', icon: [640, 512, [], "f266", "M640 51.2l-.3 12.2c-28.1.8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3.3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4.2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5.3v13.1c-19.4.6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4.3-3.6 0-10.3.3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5.8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1.2.5z"] }; +var faWindows = { prefix: 'fab', iconName: 'windows', icon: [448, 512, [], "f17a", "M0 93.7l183.6-25.3v177.4H0V93.7zm0 324.6l183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z"] }; +var faWolfPackBattalion = { prefix: 'fab', iconName: 'wolf-pack-battalion', icon: [456, 512, [], "f514", "M239.73 471.53l10.56 15.84 5.28-12.32 5.28 7.04V512c21.06-7.92 21.11-66.86 25.51-97.21 4.62-31.89-.88-92.81 81.37-149.11-8.88-23.61-12-49.43-2.64-80.05 27.87 3.34 53.94 10.58 63.34 54.1l-30.35 8.36c11.15 23.04 17.01 46.76 13.2 72.14L384 313.18l-6.16 33.43-18.47-7.04-8.8 33.43-19.35-7.04 26.39 21.11 8.8-28.15 24.63 5.28 7.04-35.63 26.39 14.52c.25-20.02 6.97-58.06-8.8-84.45l26.39 5.28c3.99-22.07-2.38-39.21-7.92-56.74l22.43 9.68c-.44-25.07-29.94-56.79-61.58-58.5-20.22-1.09-56.74-25.17-54.1-51.9 1.96-19.87 17.45-42.62 43.11-49.7-43.99 36.51-9.68 67.3 5.28 73.46 4.4-11.44 17.54-69.08 0-130.2-40.47 22.87-89.73 65.1-93.25 147.79l-58.06 38.71-3.52 93.25 107.33-59.82 7.04 7.04-17.59 3.52-43.99 38.71-15.84-5.28-28.15 49.26-3.52 119.64 21.11 15.84-32.55 15.84-32.55-15.84 21.11-15.84-3.52-119.64-28.15-49.26-15.84 5.28-43.99-38.71-17.59-3.52 7.04-7.04 107.33 59.82-3.52-93.25-58.06-38.71C157.03 65.1 107.77 22.87 67.3 0c-17.54 61.12-4.4 118.76 0 130.2 14.96-6.16 49.26-36.95 5.28-73.46 25.66 7.08 41.15 29.83 43.11 49.7 2.63 26.74-33.88 50.81-54.1 51.9C29.94 160.06.44 191.78 0 216.85l22.43-9.68c-5.54 17.53-11.91 34.67-7.92 56.74l26.39-5.28c-15.76 26.39-9.05 64.43-8.8 84.45l26.39-14.52 7.04 35.63 24.63-5.28 8.8 28.15 26.39-21.11-19.34 7.05-8.8-33.43-18.47 7.04-6.16-33.43-27.27 7.04c-3.82-25.38 2.05-49.1 13.2-72.14l-30.35-8.36c9.4-43.52 35.47-50.77 63.34-54.1 9.36 30.62 6.24 56.45-2.64 80.05 82.25 56.3 76.75 117.23 81.37 149.11 4.4 30.35 4.45 89.29 25.51 97.21v-29.91l5.28-7.04 5.28 12.32 10.56-15.84 11.44 21.11 11.43-21.1zm79.17-95.01l-15.84-10.56c7.47-4.36 13.76-8.42 19.35-12.32-.6 7.26-.27 13.88-3.51 22.88zm28.15-49.26c-.4 10.94-.9 21.66-1.76 31.67-7.85-1.86-15.57-3.8-21.11-7.04 8.24-7.9 15.55-16.27 22.87-24.63zm24.63 5.28c-.02-13.43-2.05-24.21-5.28-33.43-5.38 9.09-11.23 18.18-18.47 27.27l23.75 6.16zm3.52-80.94c19.44 12.81 27.8 33.66 29.91 56.3-12.32-4.53-24.63-9.31-36.95-10.56 5.06-11.99 6.65-28.14 7.04-45.74zm-1.76-45.74c.81 14.3 1.84 28.82 1.76 42.23 19.22-8.11 29.78-9.72 43.99-14.08-10.6-18.95-27.22-25.52-45.75-28.15zM137.68 376.52l15.84-10.56c-7.47-4.36-13.76-8.42-19.35-12.32.6 7.26.27 13.88 3.51 22.88zm-28.15-49.26c.4 10.94.9 21.66 1.76 31.67 7.85-1.86 15.57-3.8 21.11-7.04-8.24-7.9-15.55-16.27-22.87-24.63zm-24.64 5.28c.02-13.43 2.05-24.21 5.28-33.43 5.38 9.09 11.23 18.18 18.47 27.27l-23.75 6.16zm-3.52-80.94c-19.44 12.81-27.8 33.66-29.91 56.3 12.32-4.53 24.63-9.31 36.95-10.56-5.05-11.99-6.65-28.14-7.04-45.74zm1.76-45.74c-.81 14.3-1.84 28.82-1.76 42.23-19.22-8.11-29.78-9.72-43.99-14.08 10.61-18.95 27.22-25.52 45.75-28.15z"] }; +var faWordpress = { prefix: 'fab', iconName: 'wordpress', icon: [512, 512, [], "f19a", "M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z"] }; +var faWordpressSimple = { prefix: 'fab', iconName: 'wordpress-simple', icon: [512, 512, [], "f411", "M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8zM33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256zm223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6zm30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3-80.7-239.6zm81.4 297.2l68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7z"] }; +var faWpbeginner = { prefix: 'fab', iconName: 'wpbeginner', icon: [512, 512, [], "f297", "M462.799 322.374C519.01 386.682 466.961 480 370.944 480c-39.602 0-78.824-17.687-100.142-50.04-6.887.356-22.702.356-29.59 0C219.848 462.381 180.588 480 141.069 480c-95.49 0-148.348-92.996-91.855-157.626C-29.925 190.523 80.479 32 256.006 32c175.632 0 285.87 158.626 206.793 290.374zm-339.647-82.972h41.529v-58.075h-41.529v58.075zm217.18 86.072v-23.839c-60.506 20.915-132.355 9.198-187.589-33.971l.246 24.897c51.101 46.367 131.746 57.875 187.343 32.913zm-150.753-86.072h166.058v-58.075H189.579v58.075z"] }; +var faWpexplorer = { prefix: 'fab', iconName: 'wpexplorer', icon: [512, 512, [], "f2de", "M512 256c0 141.2-114.7 256-256 256C114.8 512 0 397.3 0 256S114.7 0 256 0s256 114.7 256 256zm-32 0c0-123.2-100.3-224-224-224C132.5 32 32 132.5 32 256s100.5 224 224 224 224-100.5 224-224zM160.9 124.6l86.9 37.1-37.1 86.9-86.9-37.1 37.1-86.9zm110 169.1l46.6 94h-14.6l-50-100-48.9 100h-14l51.1-106.9-22.3-9.4 6-14 68.6 29.1-6 14.3-16.5-7.1zm-11.8-116.3l68.6 29.4-29.4 68.3L230 246l29.1-68.6zm80.3 42.9l54.6 23.1-23.4 54.3-54.3-23.1 23.1-54.3z"] }; +var faWpforms = { prefix: 'fab', iconName: 'wpforms', icon: [448, 512, [], "f298", "M448 75.2v361.7c0 24.3-19 43.2-43.2 43.2H43.2C19.3 480 0 461.4 0 436.8V75.2C0 51.1 18.8 32 43.2 32h361.7c24 0 43.1 18.8 43.1 43.2zm-37.3 361.6V75.2c0-3-2.6-5.8-5.8-5.8h-9.3L285.3 144 224 94.1 162.8 144 52.5 69.3h-9.3c-3.2 0-5.8 2.8-5.8 5.8v361.7c0 3 2.6 5.8 5.8 5.8h361.7c3.2.1 5.8-2.7 5.8-5.8zM150.2 186v37H76.7v-37h73.5zm0 74.4v37.3H76.7v-37.3h73.5zm11.1-147.3l54-43.7H96.8l64.5 43.7zm210 72.9v37h-196v-37h196zm0 74.4v37.3h-196v-37.3h196zm-84.6-147.3l64.5-43.7H232.8l53.9 43.7zM371.3 335v37.3h-99.4V335h99.4z"] }; +var faXbox = { prefix: 'fab', iconName: 'xbox', icon: [512, 512, [], "f412", "M369.9 318.2c44.3 54.3 64.7 98.8 54.4 118.7-7.9 15.1-56.7 44.6-92.6 55.9-29.6 9.3-68.4 13.3-100.4 10.2-38.2-3.7-76.9-17.4-110.1-39C93.3 445.8 87 438.3 87 423.4c0-29.9 32.9-82.3 89.2-142.1 32-33.9 76.5-73.7 81.4-72.6 9.4 2.1 84.3 75.1 112.3 109.5zM188.6 143.8c-29.7-26.9-58.1-53.9-86.4-63.4-15.2-5.1-16.3-4.8-28.7 8.1-29.2 30.4-53.5 79.7-60.3 122.4-5.4 34.2-6.1 43.8-4.2 60.5 5.6 50.5 17.3 85.4 40.5 120.9 9.5 14.6 12.1 17.3 9.3 9.9-4.2-11-.3-37.5 9.5-64 14.3-39 53.9-112.9 120.3-194.4zm311.6 63.5C483.3 127.3 432.7 77 425.6 77c-7.3 0-24.2 6.5-36 13.9-23.3 14.5-41 31.4-64.3 52.8C367.7 197 427.5 283.1 448.2 346c6.8 20.7 9.7 41.1 7.4 52.3-1.7 8.5-1.7 8.5 1.4 4.6 6.1-7.7 19.9-31.3 25.4-43.5 7.4-16.2 15-40.2 18.6-58.7 4.3-22.5 3.9-70.8-.8-93.4zM141.3 43C189 40.5 251 77.5 255.6 78.4c.7.1 10.4-4.2 21.6-9.7 63.9-31.1 94-25.8 107.4-25.2-63.9-39.3-152.7-50-233.9-11.7-23.4 11.1-24 11.9-9.4 11.2z"] }; +var faXing = { prefix: 'fab', iconName: 'xing', icon: [384, 512, [], "f168", "M162.7 210c-1.8 3.3-25.2 44.4-70.1 123.5-4.9 8.3-10.8 12.5-17.7 12.5H9.8c-7.7 0-12.1-7.5-8.5-14.4l69-121.3c.2 0 .2-.1 0-.3l-43.9-75.6c-4.3-7.8.3-14.1 8.5-14.1H100c7.3 0 13.3 4.1 18 12.2l44.7 77.5zM382.6 46.1l-144 253v.3L330.2 466c3.9 7.1.2 14.1-8.5 14.1h-65.2c-7.6 0-13.6-4-18-12.2l-92.4-168.5c3.3-5.8 51.5-90.8 144.8-255.2 4.6-8.1 10.4-12.2 17.5-12.2h65.7c8 0 12.3 6.7 8.5 14.1z"] }; +var faXingSquare = { prefix: 'fab', iconName: 'xing-square', icon: [448, 512, [], "f169", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM140.4 320.2H93.8c-5.5 0-8.7-5.3-6-10.3l49.3-86.7c.1 0 .1-.1 0-.2l-31.4-54c-3-5.6.2-10.1 6-10.1h46.6c5.2 0 9.5 2.9 12.9 8.7l31.9 55.3c-1.3 2.3-18 31.7-50.1 88.2-3.5 6.2-7.7 9.1-12.6 9.1zm219.7-214.1L257.3 286.8v.2l65.5 119c2.8 5.1.1 10.1-6 10.1h-46.6c-5.5 0-9.7-2.9-12.9-8.7l-66-120.3c2.3-4.1 36.8-64.9 103.4-182.3 3.3-5.8 7.4-8.7 12.5-8.7h46.9c5.7-.1 8.8 4.7 6 10z"] }; +var faYCombinator = { prefix: 'fab', iconName: 'y-combinator', icon: [448, 512, [], "f23b", "M448 32v448H0V32h448zM236 287.5L313.5 142h-32.7L235 233c-4.7 9.3-9 18.3-12.8 26.8L210 233l-45.2-91h-35l76.7 143.8v94.5H236v-92.8z"] }; +var faYahoo = { prefix: 'fab', iconName: 'yahoo', icon: [448, 512, [], "f19e", "M252 292l4 220c-12.7-2.2-23.5-3.9-32.3-3.9-8.4 0-19.2 1.7-32.3 3.9l4-220C140.4 197.2 85 95.2 21.4 0c11.9 3.1 23 3.9 33.2 3.9 9 0 20.4-.8 34.1-3.9 40.9 72.2 82.1 138.7 135 225.5C261 163.9 314.8 81.4 358.6 0c11.1 2.9 22 3.9 32.9 3.9 11.5 0 23.2-1 35-3.9C392.1 47.9 294.9 216.9 252 292z"] }; +var faYandex = { prefix: 'fab', iconName: 'yandex', icon: [256, 512, [], "f413", "M153.1 315.8L65.7 512H2l96-209.8c-45.1-22.9-75.2-64.4-75.2-141.1C22.7 53.7 90.8 0 171.7 0H254v512h-55.1V315.8h-45.8zm45.8-269.3h-29.4c-44.4 0-87.4 29.4-87.4 114.6 0 82.3 39.4 108.8 87.4 108.8h29.4V46.5z"] }; +var faYandexInternational = { prefix: 'fab', iconName: 'yandex-international', icon: [320, 512, [], "f414", "M129.5 512V345.9L18.5 48h55.8l81.8 229.7L250.2 0h51.3L180.8 347.8V512h-51.3z"] }; +var faYelp = { prefix: 'fab', iconName: 'yelp', icon: [384, 512, [], "f1e9", "M136.9 328c-1 .3-109.2 35.7-115.8 35.7-15.2-.9-18.5-16.2-19.9-31.2-1.5-14.2-1.4-29.8.3-46.8 1.9-18.8 5.5-45.1 24.2-44 4.8 0 67.1 25.9 112.7 44.4 17.1 6.8 18.6 35.8-1.5 41.9zm57.9-113.9c1.8 38.2-25.5 48.5-47.2 14.3L41.3 60.4c-1.5-6.6.3-12.4 5.3-17.4C62.2 26.5 146 3.2 168.1 8.9c7.5 1.9 12.1 6.1 13.8 12.6 1.3 8.3 11.5 167.4 12.9 192.6zm-1.4 164.8c0 4.6.2 116.4-1.7 121.5-2.3 6-7 9.7-14.3 11.2-10.1 1.7-27.1-1.9-51-10.7-22-8.1-56.7-21.5-49.3-42.5 2.8-6.9 51.4-62.8 77.3-93.6 12-15.2 39.8-5.5 39 14.1zm180.2-117.8c-5.6 3.7-110.8 28.2-118.1 30.6l.3-.6c-18.1 4.7-35.4-18.5-23.3-34.6 3.7-3.7 65.9-92.4 72.8-97 5.2-3.6 11.3-3.8 18.3-.6 18.4 8.8 55.1 63.1 57.4 84.6-.1 2.9 1.2 11.7-7.4 17.6zm10.1 130.7c-2.7 20.6-44.5 73.4-63.8 81-6.9 2.6-12.9 2-17.7-2-5-3.5-61.8-97.1-64.9-102.3-10.9-16.2 6.8-39.8 25.6-33.2 0 0 110.5 35.7 114.7 39.4 5.2 4.1 7.2 9.8 6.1 17.1z"] }; +var faYoast = { prefix: 'fab', iconName: 'yoast', icon: [448, 512, [], "f2b1", "M91.3 76h186l-7 18.9h-179c-39.7 0-71.9 31.6-71.9 70.3v205.4c0 35.4 24.9 70.3 84 70.3V460H91.3C41.2 460 0 419.8 0 370.5V165.2C0 115.9 40.7 76 91.3 76zm229.1-56h66.5C243.1 398.1 241.2 418.9 202.2 459.3c-20.8 21.6-49.3 31.7-78.3 32.7v-51.1c49.2-7.7 64.6-49.9 64.6-75.3 0-20.1.6-12.6-82.1-223.2h61.4L218.2 299 320.4 20zM448 161.5V460H234c6.6-9.6 10.7-16.3 12.1-19.4h182.5V161.5c0-32.5-17.1-51.9-48.2-62.9l6.7-17.6c41.7 13.6 60.9 43.1 60.9 80.5z"] }; +var faYoutube = { prefix: 'fab', iconName: 'youtube', icon: [576, 512, [], "f167", "M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"] }; +var faYoutubeSquare = { prefix: 'fab', iconName: 'youtube-square', icon: [448, 512, [], "f431", "M186.8 202.1l95.2 54.1-95.2 54.1V202.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-42 176.3s0-59.6-7.6-88.2c-4.2-15.8-16.5-28.2-32.2-32.4C337.9 128 224 128 224 128s-113.9 0-142.2 7.7c-15.7 4.2-28 16.6-32.2 32.4-7.6 28.5-7.6 88.2-7.6 88.2s0 59.6 7.6 88.2c4.2 15.8 16.5 27.7 32.2 31.9C110.1 384 224 384 224 384s113.9 0 142.2-7.7c15.7-4.2 28-16.1 32.2-31.9 7.6-28.5 7.6-88.1 7.6-88.1z"] }; +var icons$1 = { + fa500px: fa500px, + faAccessibleIcon: faAccessibleIcon, + faAccusoft: faAccusoft, + faAdn: faAdn, + faAdversal: faAdversal, + faAffiliatetheme: faAffiliatetheme, + faAlgolia: faAlgolia, + faAmazon: faAmazon, + faAmazonPay: faAmazonPay, + faAmilia: faAmilia, + faAndroid: faAndroid, + faAngellist: faAngellist, + faAngrycreative: faAngrycreative, + faAngular: faAngular, + faAppStore: faAppStore, + faAppStoreIos: faAppStoreIos, + faApper: faApper, + faApple: faApple, + faApplePay: faApplePay, + faAsymmetrik: faAsymmetrik, + faAudible: faAudible, + faAutoprefixer: faAutoprefixer, + faAvianex: faAvianex, + faAviato: faAviato, + faAws: faAws, + faBandcamp: faBandcamp, + faBehance: faBehance, + faBehanceSquare: faBehanceSquare, + faBimobject: faBimobject, + faBitbucket: faBitbucket, + faBitcoin: faBitcoin, + faBity: faBity, + faBlackTie: faBlackTie, + faBlackberry: faBlackberry, + faBlogger: faBlogger, + faBloggerB: faBloggerB, + faBluetooth: faBluetooth, + faBluetoothB: faBluetoothB, + faBtc: faBtc, + faBuromobelexperte: faBuromobelexperte, + faBuysellads: faBuysellads, + faCcAmazonPay: faCcAmazonPay, + faCcAmex: faCcAmex, + faCcApplePay: faCcApplePay, + faCcDinersClub: faCcDinersClub, + faCcDiscover: faCcDiscover, + faCcJcb: faCcJcb, + faCcMastercard: faCcMastercard, + faCcPaypal: faCcPaypal, + faCcStripe: faCcStripe, + faCcVisa: faCcVisa, + faCentercode: faCentercode, + faChrome: faChrome, + faCloudscale: faCloudscale, + faCloudsmith: faCloudsmith, + faCloudversify: faCloudversify, + faCodepen: faCodepen, + faCodiepie: faCodiepie, + faConnectdevelop: faConnectdevelop, + faContao: faContao, + faCpanel: faCpanel, + faCreativeCommons: faCreativeCommons, + faCreativeCommonsBy: faCreativeCommonsBy, + faCreativeCommonsNc: faCreativeCommonsNc, + faCreativeCommonsNcEu: faCreativeCommonsNcEu, + faCreativeCommonsNcJp: faCreativeCommonsNcJp, + faCreativeCommonsNd: faCreativeCommonsNd, + faCreativeCommonsPd: faCreativeCommonsPd, + faCreativeCommonsPdAlt: faCreativeCommonsPdAlt, + faCreativeCommonsRemix: faCreativeCommonsRemix, + faCreativeCommonsSa: faCreativeCommonsSa, + faCreativeCommonsSampling: faCreativeCommonsSampling, + faCreativeCommonsSamplingPlus: faCreativeCommonsSamplingPlus, + faCreativeCommonsShare: faCreativeCommonsShare, + faCss3: faCss3, + faCss3Alt: faCss3Alt, + faCuttlefish: faCuttlefish, + faDAndD: faDAndD, + faDashcube: faDashcube, + faDelicious: faDelicious, + faDeploydog: faDeploydog, + faDeskpro: faDeskpro, + faDeviantart: faDeviantart, + faDigg: faDigg, + faDigitalOcean: faDigitalOcean, + faDiscord: faDiscord, + faDiscourse: faDiscourse, + faDochub: faDochub, + faDocker: faDocker, + faDraft2digital: faDraft2digital, + faDribbble: faDribbble, + faDribbbleSquare: faDribbbleSquare, + faDropbox: faDropbox, + faDrupal: faDrupal, + faDyalog: faDyalog, + faEarlybirds: faEarlybirds, + faEbay: faEbay, + faEdge: faEdge, + faElementor: faElementor, + faEmber: faEmber, + faEmpire: faEmpire, + faEnvira: faEnvira, + faErlang: faErlang, + faEthereum: faEthereum, + faEtsy: faEtsy, + faExpeditedssl: faExpeditedssl, + faFacebook: faFacebook, + faFacebookF: faFacebookF, + faFacebookMessenger: faFacebookMessenger, + faFacebookSquare: faFacebookSquare, + faFirefox: faFirefox, + faFirstOrder: faFirstOrder, + faFirstOrderAlt: faFirstOrderAlt, + faFirstdraft: faFirstdraft, + faFlickr: faFlickr, + faFlipboard: faFlipboard, + faFly: faFly, + faFontAwesome: faFontAwesome, + faFontAwesomeAlt: faFontAwesomeAlt, + faFontAwesomeFlag: faFontAwesomeFlag, + faFontAwesomeLogoFull: faFontAwesomeLogoFull, + faFonticons: faFonticons, + faFonticonsFi: faFonticonsFi, + faFortAwesome: faFortAwesome, + faFortAwesomeAlt: faFortAwesomeAlt, + faForumbee: faForumbee, + faFoursquare: faFoursquare, + faFreeCodeCamp: faFreeCodeCamp, + faFreebsd: faFreebsd, + faFulcrum: faFulcrum, + faGalacticRepublic: faGalacticRepublic, + faGalacticSenate: faGalacticSenate, + faGetPocket: faGetPocket, + faGg: faGg, + faGgCircle: faGgCircle, + faGit: faGit, + faGitSquare: faGitSquare, + faGithub: faGithub, + faGithubAlt: faGithubAlt, + faGithubSquare: faGithubSquare, + faGitkraken: faGitkraken, + faGitlab: faGitlab, + faGitter: faGitter, + faGlide: faGlide, + faGlideG: faGlideG, + faGofore: faGofore, + faGoodreads: faGoodreads, + faGoodreadsG: faGoodreadsG, + faGoogle: faGoogle, + faGoogleDrive: faGoogleDrive, + faGooglePlay: faGooglePlay, + faGooglePlus: faGooglePlus, + faGooglePlusG: faGooglePlusG, + faGooglePlusSquare: faGooglePlusSquare, + faGoogleWallet: faGoogleWallet, + faGratipay: faGratipay, + faGrav: faGrav, + faGripfire: faGripfire, + faGrunt: faGrunt, + faGulp: faGulp, + faHackerNews: faHackerNews, + faHackerNewsSquare: faHackerNewsSquare, + faHips: faHips, + faHireAHelper: faHireAHelper, + faHooli: faHooli, + faHotjar: faHotjar, + faHouzz: faHouzz, + faHtml5: faHtml5, + faHubspot: faHubspot, + faImdb: faImdb, + faInstagram: faInstagram, + faInternetExplorer: faInternetExplorer, + faIoxhost: faIoxhost, + faItunes: faItunes, + faItunesNote: faItunesNote, + faJava: faJava, + faJediOrder: faJediOrder, + faJenkins: faJenkins, + faJoget: faJoget, + faJoomla: faJoomla, + faJs: faJs, + faJsSquare: faJsSquare, + faJsfiddle: faJsfiddle, + faKeybase: faKeybase, + faKeycdn: faKeycdn, + faKickstarter: faKickstarter, + faKickstarterK: faKickstarterK, + faKorvue: faKorvue, + faLaravel: faLaravel, + faLastfm: faLastfm, + faLastfmSquare: faLastfmSquare, + faLeanpub: faLeanpub, + faLess: faLess, + faLine: faLine, + faLinkedin: faLinkedin, + faLinkedinIn: faLinkedinIn, + faLinode: faLinode, + faLinux: faLinux, + faLyft: faLyft, + faMagento: faMagento, + faMandalorian: faMandalorian, + faMastodon: faMastodon, + faMaxcdn: faMaxcdn, + faMedapps: faMedapps, + faMedium: faMedium, + faMediumM: faMediumM, + faMedrt: faMedrt, + faMeetup: faMeetup, + faMicrosoft: faMicrosoft, + faMix: faMix, + faMixcloud: faMixcloud, + faMizuni: faMizuni, + faModx: faModx, + faMonero: faMonero, + faNapster: faNapster, + faNintendoSwitch: faNintendoSwitch, + faNode: faNode, + faNodeJs: faNodeJs, + faNpm: faNpm, + faNs8: faNs8, + faNutritionix: faNutritionix, + faOdnoklassniki: faOdnoklassniki, + faOdnoklassnikiSquare: faOdnoklassnikiSquare, + faOldRepublic: faOldRepublic, + faOpencart: faOpencart, + faOpenid: faOpenid, + faOpera: faOpera, + faOptinMonster: faOptinMonster, + faOsi: faOsi, + faPage4: faPage4, + faPagelines: faPagelines, + faPalfed: faPalfed, + faPatreon: faPatreon, + faPaypal: faPaypal, + faPeriscope: faPeriscope, + faPhabricator: faPhabricator, + faPhoenixFramework: faPhoenixFramework, + faPhoenixSquadron: faPhoenixSquadron, + faPhp: faPhp, + faPiedPiper: faPiedPiper, + faPiedPiperAlt: faPiedPiperAlt, + faPiedPiperHat: faPiedPiperHat, + faPiedPiperPp: faPiedPiperPp, + faPinterest: faPinterest, + faPinterestP: faPinterestP, + faPinterestSquare: faPinterestSquare, + faPlaystation: faPlaystation, + faProductHunt: faProductHunt, + faPushed: faPushed, + faPython: faPython, + faQq: faQq, + faQuinscape: faQuinscape, + faQuora: faQuora, + faRProject: faRProject, + faRavelry: faRavelry, + faReact: faReact, + faReadme: faReadme, + faRebel: faRebel, + faRedRiver: faRedRiver, + faReddit: faReddit, + faRedditAlien: faRedditAlien, + faRedditSquare: faRedditSquare, + faRendact: faRendact, + faRenren: faRenren, + faReplyd: faReplyd, + faResearchgate: faResearchgate, + faResolving: faResolving, + faRocketchat: faRocketchat, + faRockrms: faRockrms, + faSafari: faSafari, + faSass: faSass, + faSchlix: faSchlix, + faScribd: faScribd, + faSearchengin: faSearchengin, + faSellcast: faSellcast, + faSellsy: faSellsy, + faServicestack: faServicestack, + faShirtsinbulk: faShirtsinbulk, + faSimplybuilt: faSimplybuilt, + faSistrix: faSistrix, + faSith: faSith, + faSkyatlas: faSkyatlas, + faSkype: faSkype, + faSlack: faSlack, + faSlackHash: faSlackHash, + faSlideshare: faSlideshare, + faSnapchat: faSnapchat, + faSnapchatGhost: faSnapchatGhost, + faSnapchatSquare: faSnapchatSquare, + faSoundcloud: faSoundcloud, + faSpeakap: faSpeakap, + faSpotify: faSpotify, + faStackExchange: faStackExchange, + faStackOverflow: faStackOverflow, + faStaylinked: faStaylinked, + faSteam: faSteam, + faSteamSquare: faSteamSquare, + faSteamSymbol: faSteamSymbol, + faStickerMule: faStickerMule, + faStrava: faStrava, + faStripe: faStripe, + faStripeS: faStripeS, + faStudiovinari: faStudiovinari, + faStumbleupon: faStumbleupon, + faStumbleuponCircle: faStumbleuponCircle, + faSuperpowers: faSuperpowers, + faSupple: faSupple, + faTeamspeak: faTeamspeak, + faTelegram: faTelegram, + faTelegramPlane: faTelegramPlane, + faTencentWeibo: faTencentWeibo, + faThemeisle: faThemeisle, + faTradeFederation: faTradeFederation, + faTrello: faTrello, + faTripadvisor: faTripadvisor, + faTumblr: faTumblr, + faTumblrSquare: faTumblrSquare, + faTwitch: faTwitch, + faTwitter: faTwitter, + faTwitterSquare: faTwitterSquare, + faTypo3: faTypo3, + faUber: faUber, + faUikit: faUikit, + faUniregistry: faUniregistry, + faUntappd: faUntappd, + faUsb: faUsb, + faUssunnah: faUssunnah, + faVaadin: faVaadin, + faViacoin: faViacoin, + faViadeo: faViadeo, + faViadeoSquare: faViadeoSquare, + faViber: faViber, + faVimeo: faVimeo, + faVimeoSquare: faVimeoSquare, + faVimeoV: faVimeoV, + faVine: faVine, + faVk: faVk, + faVnv: faVnv, + faVuejs: faVuejs, + faWeibo: faWeibo, + faWeixin: faWeixin, + faWhatsapp: faWhatsapp, + faWhatsappSquare: faWhatsappSquare, + faWhmcs: faWhmcs, + faWikipediaW: faWikipediaW, + faWindows: faWindows, + faWolfPackBattalion: faWolfPackBattalion, + faWordpress: faWordpress, + faWordpressSimple: faWordpressSimple, + faWpbeginner: faWpbeginner, + faWpexplorer: faWpexplorer, + faWpforms: faWpforms, + faXbox: faXbox, + faXing: faXing, + faXingSquare: faXingSquare, + faYCombinator: faYCombinator, + faYahoo: faYahoo, + faYandex: faYandex, + faYandexInternational: faYandexInternational, + faYelp: faYelp, + faYoast: faYoast, + faYoutube: faYoutube, + faYoutubeSquare: faYoutubeSquare +}; + +exports['default'] = icons$1; +exports.prefix = prefix; +exports.fa500px = fa500px; +exports.faAccessibleIcon = faAccessibleIcon; +exports.faAccusoft = faAccusoft; +exports.faAdn = faAdn; +exports.faAdversal = faAdversal; +exports.faAffiliatetheme = faAffiliatetheme; +exports.faAlgolia = faAlgolia; +exports.faAmazon = faAmazon; +exports.faAmazonPay = faAmazonPay; +exports.faAmilia = faAmilia; +exports.faAndroid = faAndroid; +exports.faAngellist = faAngellist; +exports.faAngrycreative = faAngrycreative; +exports.faAngular = faAngular; +exports.faAppStore = faAppStore; +exports.faAppStoreIos = faAppStoreIos; +exports.faApper = faApper; +exports.faApple = faApple; +exports.faApplePay = faApplePay; +exports.faAsymmetrik = faAsymmetrik; +exports.faAudible = faAudible; +exports.faAutoprefixer = faAutoprefixer; +exports.faAvianex = faAvianex; +exports.faAviato = faAviato; +exports.faAws = faAws; +exports.faBandcamp = faBandcamp; +exports.faBehance = faBehance; +exports.faBehanceSquare = faBehanceSquare; +exports.faBimobject = faBimobject; +exports.faBitbucket = faBitbucket; +exports.faBitcoin = faBitcoin; +exports.faBity = faBity; +exports.faBlackTie = faBlackTie; +exports.faBlackberry = faBlackberry; +exports.faBlogger = faBlogger; +exports.faBloggerB = faBloggerB; +exports.faBluetooth = faBluetooth; +exports.faBluetoothB = faBluetoothB; +exports.faBtc = faBtc; +exports.faBuromobelexperte = faBuromobelexperte; +exports.faBuysellads = faBuysellads; +exports.faCcAmazonPay = faCcAmazonPay; +exports.faCcAmex = faCcAmex; +exports.faCcApplePay = faCcApplePay; +exports.faCcDinersClub = faCcDinersClub; +exports.faCcDiscover = faCcDiscover; +exports.faCcJcb = faCcJcb; +exports.faCcMastercard = faCcMastercard; +exports.faCcPaypal = faCcPaypal; +exports.faCcStripe = faCcStripe; +exports.faCcVisa = faCcVisa; +exports.faCentercode = faCentercode; +exports.faChrome = faChrome; +exports.faCloudscale = faCloudscale; +exports.faCloudsmith = faCloudsmith; +exports.faCloudversify = faCloudversify; +exports.faCodepen = faCodepen; +exports.faCodiepie = faCodiepie; +exports.faConnectdevelop = faConnectdevelop; +exports.faContao = faContao; +exports.faCpanel = faCpanel; +exports.faCreativeCommons = faCreativeCommons; +exports.faCreativeCommonsBy = faCreativeCommonsBy; +exports.faCreativeCommonsNc = faCreativeCommonsNc; +exports.faCreativeCommonsNcEu = faCreativeCommonsNcEu; +exports.faCreativeCommonsNcJp = faCreativeCommonsNcJp; +exports.faCreativeCommonsNd = faCreativeCommonsNd; +exports.faCreativeCommonsPd = faCreativeCommonsPd; +exports.faCreativeCommonsPdAlt = faCreativeCommonsPdAlt; +exports.faCreativeCommonsRemix = faCreativeCommonsRemix; +exports.faCreativeCommonsSa = faCreativeCommonsSa; +exports.faCreativeCommonsSampling = faCreativeCommonsSampling; +exports.faCreativeCommonsSamplingPlus = faCreativeCommonsSamplingPlus; +exports.faCreativeCommonsShare = faCreativeCommonsShare; +exports.faCss3 = faCss3; +exports.faCss3Alt = faCss3Alt; +exports.faCuttlefish = faCuttlefish; +exports.faDAndD = faDAndD; +exports.faDashcube = faDashcube; +exports.faDelicious = faDelicious; +exports.faDeploydog = faDeploydog; +exports.faDeskpro = faDeskpro; +exports.faDeviantart = faDeviantart; +exports.faDigg = faDigg; +exports.faDigitalOcean = faDigitalOcean; +exports.faDiscord = faDiscord; +exports.faDiscourse = faDiscourse; +exports.faDochub = faDochub; +exports.faDocker = faDocker; +exports.faDraft2digital = faDraft2digital; +exports.faDribbble = faDribbble; +exports.faDribbbleSquare = faDribbbleSquare; +exports.faDropbox = faDropbox; +exports.faDrupal = faDrupal; +exports.faDyalog = faDyalog; +exports.faEarlybirds = faEarlybirds; +exports.faEbay = faEbay; +exports.faEdge = faEdge; +exports.faElementor = faElementor; +exports.faEmber = faEmber; +exports.faEmpire = faEmpire; +exports.faEnvira = faEnvira; +exports.faErlang = faErlang; +exports.faEthereum = faEthereum; +exports.faEtsy = faEtsy; +exports.faExpeditedssl = faExpeditedssl; +exports.faFacebook = faFacebook; +exports.faFacebookF = faFacebookF; +exports.faFacebookMessenger = faFacebookMessenger; +exports.faFacebookSquare = faFacebookSquare; +exports.faFirefox = faFirefox; +exports.faFirstOrder = faFirstOrder; +exports.faFirstOrderAlt = faFirstOrderAlt; +exports.faFirstdraft = faFirstdraft; +exports.faFlickr = faFlickr; +exports.faFlipboard = faFlipboard; +exports.faFly = faFly; +exports.faFontAwesome = faFontAwesome; +exports.faFontAwesomeAlt = faFontAwesomeAlt; +exports.faFontAwesomeFlag = faFontAwesomeFlag; +exports.faFontAwesomeLogoFull = faFontAwesomeLogoFull; +exports.faFonticons = faFonticons; +exports.faFonticonsFi = faFonticonsFi; +exports.faFortAwesome = faFortAwesome; +exports.faFortAwesomeAlt = faFortAwesomeAlt; +exports.faForumbee = faForumbee; +exports.faFoursquare = faFoursquare; +exports.faFreeCodeCamp = faFreeCodeCamp; +exports.faFreebsd = faFreebsd; +exports.faFulcrum = faFulcrum; +exports.faGalacticRepublic = faGalacticRepublic; +exports.faGalacticSenate = faGalacticSenate; +exports.faGetPocket = faGetPocket; +exports.faGg = faGg; +exports.faGgCircle = faGgCircle; +exports.faGit = faGit; +exports.faGitSquare = faGitSquare; +exports.faGithub = faGithub; +exports.faGithubAlt = faGithubAlt; +exports.faGithubSquare = faGithubSquare; +exports.faGitkraken = faGitkraken; +exports.faGitlab = faGitlab; +exports.faGitter = faGitter; +exports.faGlide = faGlide; +exports.faGlideG = faGlideG; +exports.faGofore = faGofore; +exports.faGoodreads = faGoodreads; +exports.faGoodreadsG = faGoodreadsG; +exports.faGoogle = faGoogle; +exports.faGoogleDrive = faGoogleDrive; +exports.faGooglePlay = faGooglePlay; +exports.faGooglePlus = faGooglePlus; +exports.faGooglePlusG = faGooglePlusG; +exports.faGooglePlusSquare = faGooglePlusSquare; +exports.faGoogleWallet = faGoogleWallet; +exports.faGratipay = faGratipay; +exports.faGrav = faGrav; +exports.faGripfire = faGripfire; +exports.faGrunt = faGrunt; +exports.faGulp = faGulp; +exports.faHackerNews = faHackerNews; +exports.faHackerNewsSquare = faHackerNewsSquare; +exports.faHips = faHips; +exports.faHireAHelper = faHireAHelper; +exports.faHooli = faHooli; +exports.faHotjar = faHotjar; +exports.faHouzz = faHouzz; +exports.faHtml5 = faHtml5; +exports.faHubspot = faHubspot; +exports.faImdb = faImdb; +exports.faInstagram = faInstagram; +exports.faInternetExplorer = faInternetExplorer; +exports.faIoxhost = faIoxhost; +exports.faItunes = faItunes; +exports.faItunesNote = faItunesNote; +exports.faJava = faJava; +exports.faJediOrder = faJediOrder; +exports.faJenkins = faJenkins; +exports.faJoget = faJoget; +exports.faJoomla = faJoomla; +exports.faJs = faJs; +exports.faJsSquare = faJsSquare; +exports.faJsfiddle = faJsfiddle; +exports.faKeybase = faKeybase; +exports.faKeycdn = faKeycdn; +exports.faKickstarter = faKickstarter; +exports.faKickstarterK = faKickstarterK; +exports.faKorvue = faKorvue; +exports.faLaravel = faLaravel; +exports.faLastfm = faLastfm; +exports.faLastfmSquare = faLastfmSquare; +exports.faLeanpub = faLeanpub; +exports.faLess = faLess; +exports.faLine = faLine; +exports.faLinkedin = faLinkedin; +exports.faLinkedinIn = faLinkedinIn; +exports.faLinode = faLinode; +exports.faLinux = faLinux; +exports.faLyft = faLyft; +exports.faMagento = faMagento; +exports.faMandalorian = faMandalorian; +exports.faMastodon = faMastodon; +exports.faMaxcdn = faMaxcdn; +exports.faMedapps = faMedapps; +exports.faMedium = faMedium; +exports.faMediumM = faMediumM; +exports.faMedrt = faMedrt; +exports.faMeetup = faMeetup; +exports.faMicrosoft = faMicrosoft; +exports.faMix = faMix; +exports.faMixcloud = faMixcloud; +exports.faMizuni = faMizuni; +exports.faModx = faModx; +exports.faMonero = faMonero; +exports.faNapster = faNapster; +exports.faNintendoSwitch = faNintendoSwitch; +exports.faNode = faNode; +exports.faNodeJs = faNodeJs; +exports.faNpm = faNpm; +exports.faNs8 = faNs8; +exports.faNutritionix = faNutritionix; +exports.faOdnoklassniki = faOdnoklassniki; +exports.faOdnoklassnikiSquare = faOdnoklassnikiSquare; +exports.faOldRepublic = faOldRepublic; +exports.faOpencart = faOpencart; +exports.faOpenid = faOpenid; +exports.faOpera = faOpera; +exports.faOptinMonster = faOptinMonster; +exports.faOsi = faOsi; +exports.faPage4 = faPage4; +exports.faPagelines = faPagelines; +exports.faPalfed = faPalfed; +exports.faPatreon = faPatreon; +exports.faPaypal = faPaypal; +exports.faPeriscope = faPeriscope; +exports.faPhabricator = faPhabricator; +exports.faPhoenixFramework = faPhoenixFramework; +exports.faPhoenixSquadron = faPhoenixSquadron; +exports.faPhp = faPhp; +exports.faPiedPiper = faPiedPiper; +exports.faPiedPiperAlt = faPiedPiperAlt; +exports.faPiedPiperHat = faPiedPiperHat; +exports.faPiedPiperPp = faPiedPiperPp; +exports.faPinterest = faPinterest; +exports.faPinterestP = faPinterestP; +exports.faPinterestSquare = faPinterestSquare; +exports.faPlaystation = faPlaystation; +exports.faProductHunt = faProductHunt; +exports.faPushed = faPushed; +exports.faPython = faPython; +exports.faQq = faQq; +exports.faQuinscape = faQuinscape; +exports.faQuora = faQuora; +exports.faRProject = faRProject; +exports.faRavelry = faRavelry; +exports.faReact = faReact; +exports.faReadme = faReadme; +exports.faRebel = faRebel; +exports.faRedRiver = faRedRiver; +exports.faReddit = faReddit; +exports.faRedditAlien = faRedditAlien; +exports.faRedditSquare = faRedditSquare; +exports.faRendact = faRendact; +exports.faRenren = faRenren; +exports.faReplyd = faReplyd; +exports.faResearchgate = faResearchgate; +exports.faResolving = faResolving; +exports.faRocketchat = faRocketchat; +exports.faRockrms = faRockrms; +exports.faSafari = faSafari; +exports.faSass = faSass; +exports.faSchlix = faSchlix; +exports.faScribd = faScribd; +exports.faSearchengin = faSearchengin; +exports.faSellcast = faSellcast; +exports.faSellsy = faSellsy; +exports.faServicestack = faServicestack; +exports.faShirtsinbulk = faShirtsinbulk; +exports.faSimplybuilt = faSimplybuilt; +exports.faSistrix = faSistrix; +exports.faSith = faSith; +exports.faSkyatlas = faSkyatlas; +exports.faSkype = faSkype; +exports.faSlack = faSlack; +exports.faSlackHash = faSlackHash; +exports.faSlideshare = faSlideshare; +exports.faSnapchat = faSnapchat; +exports.faSnapchatGhost = faSnapchatGhost; +exports.faSnapchatSquare = faSnapchatSquare; +exports.faSoundcloud = faSoundcloud; +exports.faSpeakap = faSpeakap; +exports.faSpotify = faSpotify; +exports.faStackExchange = faStackExchange; +exports.faStackOverflow = faStackOverflow; +exports.faStaylinked = faStaylinked; +exports.faSteam = faSteam; +exports.faSteamSquare = faSteamSquare; +exports.faSteamSymbol = faSteamSymbol; +exports.faStickerMule = faStickerMule; +exports.faStrava = faStrava; +exports.faStripe = faStripe; +exports.faStripeS = faStripeS; +exports.faStudiovinari = faStudiovinari; +exports.faStumbleupon = faStumbleupon; +exports.faStumbleuponCircle = faStumbleuponCircle; +exports.faSuperpowers = faSuperpowers; +exports.faSupple = faSupple; +exports.faTeamspeak = faTeamspeak; +exports.faTelegram = faTelegram; +exports.faTelegramPlane = faTelegramPlane; +exports.faTencentWeibo = faTencentWeibo; +exports.faThemeisle = faThemeisle; +exports.faTradeFederation = faTradeFederation; +exports.faTrello = faTrello; +exports.faTripadvisor = faTripadvisor; +exports.faTumblr = faTumblr; +exports.faTumblrSquare = faTumblrSquare; +exports.faTwitch = faTwitch; +exports.faTwitter = faTwitter; +exports.faTwitterSquare = faTwitterSquare; +exports.faTypo3 = faTypo3; +exports.faUber = faUber; +exports.faUikit = faUikit; +exports.faUniregistry = faUniregistry; +exports.faUntappd = faUntappd; +exports.faUsb = faUsb; +exports.faUssunnah = faUssunnah; +exports.faVaadin = faVaadin; +exports.faViacoin = faViacoin; +exports.faViadeo = faViadeo; +exports.faViadeoSquare = faViadeoSquare; +exports.faViber = faViber; +exports.faVimeo = faVimeo; +exports.faVimeoSquare = faVimeoSquare; +exports.faVimeoV = faVimeoV; +exports.faVine = faVine; +exports.faVk = faVk; +exports.faVnv = faVnv; +exports.faVuejs = faVuejs; +exports.faWeibo = faWeibo; +exports.faWeixin = faWeixin; +exports.faWhatsapp = faWhatsapp; +exports.faWhatsappSquare = faWhatsappSquare; +exports.faWhmcs = faWhmcs; +exports.faWikipediaW = faWikipediaW; +exports.faWindows = faWindows; +exports.faWolfPackBattalion = faWolfPackBattalion; +exports.faWordpress = faWordpress; +exports.faWordpressSimple = faWordpressSimple; +exports.faWpbeginner = faWpbeginner; +exports.faWpexplorer = faWpexplorer; +exports.faWpforms = faWpforms; +exports.faXbox = faXbox; +exports.faXing = faXing; +exports.faXingSquare = faXingSquare; +exports.faYCombinator = faYCombinator; +exports.faYahoo = faYahoo; +exports.faYandex = faYandex; +exports.faYandexInternational = faYandexInternational; +exports.faYelp = faYelp; +exports.faYoast = faYoast; +exports.faYoutube = faYoutube; +exports.faYoutubeSquare = faYoutubeSquare; + +Object.defineProperty(exports, '__esModule', { value: true }); + +}))); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/LICENSE.txt b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/LICENSE.txt new file mode 100644 index 0000000000..28c1c4bc73 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/LICENSE.txt @@ -0,0 +1,34 @@ +Font Awesome Free License +------------------------- + +Font Awesome Free is free, open source, and GPL friendly. You can use it for +commercial projects, open source projects, or really almost whatever you want. +Full Font Awesome Free license: https://fontawesome.com/license. + +# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) +In the Font Awesome Free download, the CC BY 4.0 license applies to all icons +packaged as SVG and JS file types. + +# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL) +In the Font Awesome Free download, the SIL OLF license applies to all icons +packaged as web and desktop font files. + +# Code: MIT License (https://opensource.org/licenses/MIT) +In the Font Awesome Free download, the MIT license applies to all non-font and +non-icon files. + +# Attribution +Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font +Awesome Free files already contain embedded comments with sufficient +attribution, so you shouldn't need to do anything additional when using these +files normally. + +We've kept attribution comments terse, so we ask that you do not actively work +to remove them from files, especially code. They're a great way for folks to +learn about Font Awesome. + +# Brand Icons +All brand icons are trademarks of their respective owners. The use of these +trademarks does not indicate endorsement of the trademark holder by Font +Awesome, nor vice versa. **Please do not use brand logos for any purpose except +to represent the company, product, or service to which they refer.** diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/README.md b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/README.md new file mode 100644 index 0000000000..a6f4f056d7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/README.md @@ -0,0 +1,27 @@ +# @fortawesome/fontawesome-free-regular - SVG with JavaScript version + +> "I came here to chew bubblegum and install Font Awesome 5 - and I'm all out of bubblegum" + +[![npm](https://img.shields.io/npm/v/@fortawesome/fontawesome-free-regular.svg?style=flat-square)](https://www.npmjs.com/package/@fortawesome/fontawesome-free-regular) + +## Installation + +``` +$ npm i --save @fortawesome/fontawesome-free-regular +``` + +Or + +``` +$ yarn add @fortawesome/fontawesome-free-regular +``` + +## Documentation + +Get started [here](https://fontawesome.com/get-started/svg-with-js). Continue your journey [here](https://fontawesome.com/how-to-use/svg-with-js). + +Or go straight to the [API documentation](https://fontawesome.com/how-to-use/font-awesome-api). + +## Issues and support + +Start with [GitHub issues](https://github.com/FortAwesome/Font-Awesome/issues) and ping us on [Twitter](https://twitter.com/fontawesome) if you need to. diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faAddressBook.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faAddressBook.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faAddressBook.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faAddressBook.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faAddressBook.js new file mode 100644 index 0000000000..93bc421545 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faAddressBook.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'address-book', icon: [448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-68 304H48V48h320v416zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faAddressCard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faAddressCard.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faAddressCard.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faAddressCard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faAddressCard.js new file mode 100644 index 0000000000..e2399a9726 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faAddressCard.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'address-card', icon: [576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H48V80h480v352zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2zM360 320h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleDown.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleDown.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleDown.js new file mode 100644 index 0000000000..49577c18da --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleDown.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'arrow-alt-circle-down', icon: [512, 512, [], "f358", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm-32-316v116h-67c-10.7 0-16 12.9-8.5 20.5l99 99c4.7 4.7 12.3 4.7 17 0l99-99c7.6-7.6 2.2-20.5-8.5-20.5h-67V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleLeft.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleLeft.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleLeft.js new file mode 100644 index 0000000000..e07a26d5f9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleLeft.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'arrow-alt-circle-left', icon: [512, 512, [], "f359", "M8 256c0 137 111 248 248 248s248-111 248-248S393 8 256 8 8 119 8 256zm448 0c0 110.5-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56s200 89.5 200 200zm-72-20v40c0 6.6-5.4 12-12 12H256v67c0 10.7-12.9 16-20.5 8.5l-99-99c-4.7-4.7-4.7-12.3 0-17l99-99c7.6-7.6 20.5-2.2 20.5 8.5v67h116c6.6 0 12 5.4 12 12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleRight.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleRight.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleRight.js new file mode 100644 index 0000000000..79a6039b98 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleRight.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'arrow-alt-circle-right', icon: [512, 512, [], "f35a", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleUp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleUp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleUp.js new file mode 100644 index 0000000000..e65437f666 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faArrowAltCircleUp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'arrow-alt-circle-up', icon: [512, 512, [], "f35b", "M256 504c137 0 248-111 248-248S393 8 256 8 8 119 8 256s111 248 248 248zm0-448c110.5 0 200 89.5 200 200s-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56zm20 328h-40c-6.6 0-12-5.4-12-12V256h-67c-10.7 0-16-12.9-8.5-20.5l99-99c4.7-4.7 12.3-4.7 17 0l99 99c7.6 7.6 2.2 20.5-8.5 20.5h-67v116c0 6.6-5.4 12-12 12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBell.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBell.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBell.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBell.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBell.js new file mode 100644 index 0000000000..48e5fc6f58 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBell.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'bell', icon: [448, 512, [], "f0f3", "M425.403 330.939c-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.843 31.843 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095C118.101 62.783 57.143 131.831 57.143 214.857c0 81.933-17.551 99.292-34.543 116.078C-25.496 378.441 9.726 448 66.919 448H160c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h93.08c57.19 0 92.415-69.583 44.323-117.061zM224 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm157.092-72H66.9c-16.762 0-25.135-20.39-13.334-32.191 28.585-28.585 51.577-55.724 51.577-152.952C105.143 149.319 158.462 96 224 96s118.857 53.319 118.857 118.857c0 97.65 23.221 124.574 51.568 152.952C406.278 379.661 397.783 400 381.092 400z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBellSlash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBellSlash.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBellSlash.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBellSlash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBellSlash.js new file mode 100644 index 0000000000..993f8e04f5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBellSlash.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'bell-slash', icon: [576, 512, [], "f1f6", "M130.9 400c-16.762 0-25.135-20.39-13.334-32.191 25.226-25.226 46.094-49.338 50.649-121.48l-46.777-41.274a168.48 168.48 0 0 0-.296 9.802c0 81.933-17.551 99.292-34.543 116.078C38.504 378.441 73.726 448 130.919 448H224c0 35.346 28.654 64 64 64s64-28.654 64-64h44.777l-54.4-48H130.9zM288 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm283.867.553l-67.931-59.571c13.104-24.118 11.524-56.318-14.532-82.042-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.848 31.848 0 0 0 320 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095c-41.471 6.618-77.891 28.571-103.249 59.841L36.459 3.037c-5.058-4.436-12.777-3.956-17.24 1.071L3.056 22.313C-1.407 27.34-.925 35.012 4.134 39.447l535.408 469.516c5.058 4.436 12.777 3.956 17.24-1.071l16.163-18.205c4.462-5.027 3.98-12.699-1.078-17.134zM288 96c65.538 0 118.857 53.319 118.857 118.857 0 97.65 23.221 124.574 51.568 152.952 2.908 2.908 4.573 6.328 5.209 9.832L194.482 141.612C216.258 113.867 250.075 96 288 96z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBookmark.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBookmark.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBookmark.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBookmark.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBookmark.js new file mode 100644 index 0000000000..5403c328fd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBookmark.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'bookmark', icon: [384, 512, [], "f02e", "M336 0H48C21.49 0 0 21.49 0 48v464l192-112 192 112V48c0-26.51-21.49-48-48-48zm0 428.43l-144-84-144 84V54a6 6 0 0 1 6-6h276c3.314 0 6 2.683 6 5.996V428.43z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBuilding.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBuilding.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBuilding.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBuilding.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBuilding.js new file mode 100644 index 0000000000..aa4bc0608f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faBuilding.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'building', icon: [448, 512, [], "f1ad", "M128 148v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12zm140 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-128 96h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm128 0h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-76 84v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm76 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm180 124v36H0v-36c0-6.6 5.4-12 12-12h19.5V24c0-13.3 10.7-24 24-24h337c13.3 0 24 10.7 24 24v440H436c6.6 0 12 5.4 12 12zM79.5 463H192v-67c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v67h112.5V49L80 48l-.5 415z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendar.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendar.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendar.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendar.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendar.js new file mode 100644 index 0000000000..8b435098a4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendar.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'calendar', icon: [448, 512, [], "f133", "M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarAlt.js new file mode 100644 index 0000000000..12c046cfbf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'calendar-alt', icon: [448, 512, [], "f073", "M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarCheck.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarCheck.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarCheck.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarCheck.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarCheck.js new file mode 100644 index 0000000000..aae60697c7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarCheck.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'calendar-check', icon: [448, 512, [], "f274", "M400 64h-48V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H160V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V160h352v298a6 6 0 0 1-6 6zm-52.849-200.65L198.842 404.519c-4.705 4.667-12.303 4.637-16.971-.068l-75.091-75.699c-4.667-4.705-4.637-12.303.068-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l44.104 44.461 111.072-110.181c4.705-4.667 12.303-4.637 16.971.068l22.536 22.718c4.667 4.705 4.636 12.303-.069 16.97z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarMinus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarMinus.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarMinus.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarMinus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarMinus.js new file mode 100644 index 0000000000..47cd6fc026 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarMinus.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'calendar-minus', icon: [448, 512, [], "f272", "M124 328c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H124zm324-216v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarPlus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarPlus.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarPlus.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarPlus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarPlus.js new file mode 100644 index 0000000000..3ef2023cd5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarPlus.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'calendar-plus', icon: [448, 512, [], "f271", "M336 292v24c0 6.6-5.4 12-12 12h-76v76c0 6.6-5.4 12-12 12h-24c-6.6 0-12-5.4-12-12v-76h-76c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h76v-76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v76h76c6.6 0 12 5.4 12 12zm112-180v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarTimes.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarTimes.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarTimes.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarTimes.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarTimes.js new file mode 100644 index 0000000000..13fab8ac4f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCalendarTimes.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'calendar-times', icon: [448, 512, [], "f273", "M311.7 374.7l-17 17c-4.7 4.7-12.3 4.7-17 0L224 337.9l-53.7 53.7c-4.7 4.7-12.3 4.7-17 0l-17-17c-4.7-4.7-4.7-12.3 0-17l53.7-53.7-53.7-53.7c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0l53.7 53.7 53.7-53.7c4.7-4.7 12.3-4.7 17 0l17 17c4.7 4.7 4.7 12.3 0 17L257.9 304l53.7 53.7c4.8 4.7 4.8 12.3.1 17zM448 112v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareDown.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareDown.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareDown.js new file mode 100644 index 0000000000..1dbd607855 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareDown.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'caret-square-down', icon: [448, 512, [], "f150", "M125.1 208h197.8c10.7 0 16.1 13 8.5 20.5l-98.9 98.3c-4.7 4.7-12.2 4.7-16.9 0l-98.9-98.3c-7.7-7.5-2.3-20.5 8.4-20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareLeft.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareLeft.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareLeft.js new file mode 100644 index 0000000000..012a76c791 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareLeft.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'caret-square-left', icon: [448, 512, [], "f191", "M272 157.1v197.8c0 10.7-13 16.1-20.5 8.5l-98.3-98.9c-4.7-4.7-4.7-12.2 0-16.9l98.3-98.9c7.5-7.7 20.5-2.3 20.5 8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareRight.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareRight.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareRight.js new file mode 100644 index 0000000000..1761e834b0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareRight.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'caret-square-right', icon: [448, 512, [], "f152", "M176 354.9V157.1c0-10.7 13-16.1 20.5-8.5l98.3 98.9c4.7 4.7 4.7 12.2 0 16.9l-98.3 98.9c-7.5 7.7-20.5 2.3-20.5-8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareUp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareUp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareUp.js new file mode 100644 index 0000000000..3efea45b69 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCaretSquareUp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'caret-square-up', icon: [448, 512, [], "f151", "M322.9 304H125.1c-10.7 0-16.1-13-8.5-20.5l98.9-98.3c4.7-4.7 12.2-4.7 16.9 0l98.9 98.3c7.7 7.5 2.3 20.5-8.4 20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faChartBar.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faChartBar.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faChartBar.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faChartBar.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faChartBar.js new file mode 100644 index 0000000000..bc492f580e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faChartBar.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'chart-bar', icon: [512, 512, [], "f080", "M500 400c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v324h452zm-356-60v-72c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V140c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V204c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V108c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCheckCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCheckCircle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCheckCircle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCheckCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCheckCircle.js new file mode 100644 index 0000000000..994fcb7630 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCheckCircle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'check-circle', icon: [512, 512, [], "f058", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCheckSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCheckSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCheckSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCheckSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCheckSquare.js new file mode 100644 index 0000000000..006368c86a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCheckSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'check-square', icon: [448, 512, [], "f14a", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm0 400H48V80h352v352zm-35.864-241.724L191.547 361.48c-4.705 4.667-12.303 4.637-16.97-.068l-90.781-91.516c-4.667-4.705-4.637-12.303.069-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l59.792 60.277 141.352-140.216c4.705-4.667 12.303-4.637 16.97.068l22.536 22.718c4.667 4.706 4.637 12.304-.068 16.971z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCircle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCircle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCircle.js new file mode 100644 index 0000000000..834d979393 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCircle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'circle', icon: [512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClipboard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClipboard.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClipboard.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClipboard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClipboard.js new file mode 100644 index 0000000000..eb08987521 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClipboard.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'clipboard', icon: [384, 512, [], "f328", "M336 64h-80c0-35.29-28.71-64-64-64s-64 28.71-64 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h42v36c0 6.627 5.373 12 12 12h168c6.627 0 12-5.373 12-12v-36h42a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zM192 40c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClock.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClock.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClock.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClock.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClock.js new file mode 100644 index 0000000000..068cb9c8e4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClock.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'clock', icon: [512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClone.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClone.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClone.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClone.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClone.js new file mode 100644 index 0000000000..9380a51df1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClone.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'clone', icon: [512, 512, [], "f24d", "M464 0H144c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h320c26.51 0 48-21.49 48-48v-48h48c26.51 0 48-21.49 48-48V48c0-26.51-21.49-48-48-48zM362 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h42v224c0 26.51 21.49 48 48 48h224v42a6 6 0 0 1-6 6zm96-96H150a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h308a6 6 0 0 1 6 6v308a6 6 0 0 1-6 6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClosedCaptioning.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClosedCaptioning.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClosedCaptioning.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClosedCaptioning.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClosedCaptioning.js new file mode 100644 index 0000000000..3f1df904bf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faClosedCaptioning.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'closed-captioning', icon: [512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 336H54c-3.3 0-6-2.7-6-6V118c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v276c0 3.3-2.7 6-6 6zm-211.1-85.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7zm190.4 0c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.9-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 220.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faComment.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faComment.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faComment.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faComment.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faComment.js new file mode 100644 index 0000000000..8a27921576 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faComment.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'comment', icon: [512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCommentAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCommentAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCommentAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCommentAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCommentAlt.js new file mode 100644 index 0000000000..b26094afb2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCommentAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'comment-alt', icon: [512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 7.1 5.8 12 12 12 2.4 0 4.9-.7 7.1-2.4L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm16 352c0 8.8-7.2 16-16 16H288l-12.8 9.6L208 428v-60H64c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h384c8.8 0 16 7.2 16 16v288z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCommentDots.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCommentDots.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCommentDots.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCommentDots.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCommentDots.js new file mode 100644 index 0000000000..c7bd5fdfbf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCommentDots.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'comment-dots', icon: [512, 512, [], "f4ad", "M144 208c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faComments.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faComments.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faComments.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faComments.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faComments.js new file mode 100644 index 0000000000..b3e34f627e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faComments.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'comments', icon: [576, 512, [], "f086", "M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCompass.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCompass.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCompass.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCompass.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCompass.js new file mode 100644 index 0000000000..963d574891 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCompass.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'compass', icon: [512, 512, [], "f14e", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm91.326-312.131l-33.359 137.779a24.005 24.005 0 0 1-6.772 11.729l-102.64 97.779c-17.104 16.293-45.56.434-39.88-23.024l33.359-137.779a23.997 23.997 0 0 1 6.772-11.729l102.642-97.779c17.285-16.47 45.494-.175 39.878 23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCopy.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCopy.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCopy.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCopy.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCopy.js new file mode 100644 index 0000000000..cbc6a33a00 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCopy.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'copy', icon: [448, 512, [], "f0c5", "M433.941 65.941l-51.882-51.882A48 48 0 0 0 348.118 0H176c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48v-48h80c26.51 0 48-21.49 48-48V99.882a48 48 0 0 0-14.059-33.941zM266 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h74v224c0 26.51 21.49 48 48 48h96v42a6 6 0 0 1-6 6zm128-96H182a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h106v88c0 13.255 10.745 24 24 24h88v202a6 6 0 0 1-6 6zm6-256h-64V48h9.632c1.591 0 3.117.632 4.243 1.757l48.368 48.368a6 6 0 0 1 1.757 4.243V112z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCopyright.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCopyright.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCopyright.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCopyright.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCopyright.js new file mode 100644 index 0000000000..c3e19b87eb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCopyright.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'copyright', icon: [512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm107.351-101.064c-9.614 9.712-45.53 41.396-104.065 41.396-82.43 0-140.484-61.425-140.484-141.567 0-79.152 60.275-139.401 139.762-139.401 55.531 0 88.738 26.62 97.593 34.779a11.965 11.965 0 0 1 1.936 15.322l-18.155 28.113c-3.841 5.95-11.966 7.282-17.499 2.921-8.595-6.776-31.814-22.538-61.708-22.538-48.303 0-77.916 35.33-77.916 80.082 0 41.589 26.888 83.692 78.277 83.692 32.657 0 56.843-19.039 65.726-27.225 5.27-4.857 13.596-4.039 17.82 1.738l19.865 27.17a11.947 11.947 0 0 1-1.152 15.518z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCreditCard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCreditCard.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCreditCard.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCreditCard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCreditCard.js new file mode 100644 index 0000000000..cc3b812964 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faCreditCard.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'credit-card', icon: [576, 512, [], "f09d", "M527.9 32H48.1C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48.1 48h479.8c26.6 0 48.1-21.5 48.1-48V80c0-26.5-21.5-48-48.1-48zM54.1 80h467.8c3.3 0 6 2.7 6 6v42H48.1V86c0-3.3 2.7-6 6-6zm467.8 352H54.1c-3.3 0-6-2.7-6-6V256h479.8v170c0 3.3-2.7 6-6 6zM192 332v40c0 6.6-5.4 12-12 12h-72c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12zm192 0v40c0 6.6-5.4 12-12 12H236c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faDotCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faDotCircle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faDotCircle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faDotCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faDotCircle.js new file mode 100644 index 0000000000..889072023c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faDotCircle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'dot-circle', icon: [512, 512, [], "f192", "M256 56c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m0-48C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 168c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEdit.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEdit.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEdit.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEdit.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEdit.js new file mode 100644 index 0000000000..ee0647c8ba --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEdit.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'edit', icon: [576, 512, [], "f044", "M402.3 344.9l32-32c5-5 13.7-1.5 13.7 5.7V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h273.5c7.1 0 10.7 8.6 5.7 13.7l-32 32c-1.5 1.5-3.5 2.3-5.7 2.3H48v352h352V350.5c0-2.1.8-4.1 2.3-5.6zm156.6-201.8L296.3 405.7l-90.4 10c-26.2 2.9-48.5-19.2-45.6-45.6l10-90.4L432.9 17.1c22.9-22.9 59.9-22.9 82.7 0l43.2 43.2c22.9 22.9 22.9 60 .1 82.8zM460.1 174L402 115.9 216.2 301.8l-7.3 65.3 65.3-7.3L460.1 174zm64.8-79.7l-43.2-43.2c-4.1-4.1-10.8-4.1-14.8 0L436 82l58.1 58.1 30.9-30.9c4-4.2 4-10.8-.1-14.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEnvelope.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEnvelope.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEnvelope.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEnvelope.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEnvelope.js new file mode 100644 index 0000000000..a4fe288cec --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEnvelope.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'envelope', icon: [512, 512, [], "f0e0", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEnvelopeOpen.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEnvelopeOpen.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEnvelopeOpen.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEnvelopeOpen.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEnvelopeOpen.js new file mode 100644 index 0000000000..5769983df1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEnvelopeOpen.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'envelope-open', icon: [512, 512, [], "f2b6", "M494.586 164.516c-4.697-3.883-111.723-89.95-135.251-108.657C337.231 38.191 299.437 0 256 0c-43.205 0-80.636 37.717-103.335 55.859-24.463 19.45-131.07 105.195-135.15 108.549A48.004 48.004 0 0 0 0 201.485V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V201.509a48 48 0 0 0-17.414-36.993zM464 458a6 6 0 0 1-6 6H54a6 6 0 0 1-6-6V204.347c0-1.813.816-3.526 2.226-4.665 15.87-12.814 108.793-87.554 132.364-106.293C200.755 78.88 232.398 48 256 48c23.693 0 55.857 31.369 73.41 45.389 23.573 18.741 116.503 93.493 132.366 106.316a5.99 5.99 0 0 1 2.224 4.663V458zm-31.991-187.704c4.249 5.159 3.465 12.795-1.745 16.981-28.975 23.283-59.274 47.597-70.929 56.863C336.636 362.283 299.205 400 256 400c-43.452 0-81.287-38.237-103.335-55.86-11.279-8.967-41.744-33.413-70.927-56.865-5.21-4.187-5.993-11.822-1.745-16.981l15.258-18.528c4.178-5.073 11.657-5.843 16.779-1.726 28.618 23.001 58.566 47.035 70.56 56.571C200.143 320.631 232.307 352 256 352c23.602 0 55.246-30.88 73.41-45.389 11.994-9.535 41.944-33.57 70.563-56.568 5.122-4.116 12.601-3.346 16.778 1.727l15.258 18.526z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEye.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEye.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEye.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEye.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEye.js new file mode 100644 index 0000000000..047db7213a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEye.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'eye', icon: [576, 512, [], "f06e", "M569.354 231.631C512.97 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-102.556 0-192.091-54.701-240-136 44.157-74.933 123.677-127.27 216.162-135.007C273.958 131.078 280 144.83 280 160c0 30.928-25.072 56-56 56s-56-25.072-56-56l.001-.042C157.794 179.043 152 200.844 152 224c0 75.111 60.889 136 136 136s136-60.889 136-136c0-31.031-10.4-59.629-27.895-82.515C451.704 164.638 498.009 205.106 528 256c-47.908 81.299-137.444 136-240 136z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEyeSlash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEyeSlash.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEyeSlash.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEyeSlash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEyeSlash.js new file mode 100644 index 0000000000..5e0f23f198 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faEyeSlash.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'eye-slash', icon: [576, 512, [], "f070", "M272.702 359.139c-80.483-9.011-136.212-86.886-116.93-167.042l116.93 167.042zM288 392c-102.556 0-192.092-54.701-240-136 21.755-36.917 52.1-68.342 88.344-91.658l-27.541-39.343C67.001 152.234 31.921 188.741 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.004 376.006 168.14 440 288 440a332.89 332.89 0 0 0 39.648-2.367l-32.021-45.744A284.16 284.16 0 0 1 288 392zm281.354-111.631c-33.232 56.394-83.421 101.742-143.554 129.492l48.116 68.74c3.801 5.429 2.48 12.912-2.949 16.712L450.23 509.83c-5.429 3.801-12.912 2.48-16.712-2.949L102.084 33.399c-3.801-5.429-2.48-12.912 2.949-16.712L125.77 2.17c5.429-3.801 12.912-2.48 16.712 2.949l55.526 79.325C226.612 76.343 256.808 72 288 72c119.86 0 224.996 63.994 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM528 256c-44.157-74.933-123.677-127.27-216.162-135.007C302.042 131.078 296 144.83 296 160c0 30.928 25.072 56 56 56s56-25.072 56-56l-.001-.042c30.632 57.277 16.739 130.26-36.928 171.719l26.695 38.135C452.626 346.551 498.308 306.386 528 256z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFile.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFile.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFile.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFile.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFile.js new file mode 100644 index 0000000000..1eb80b033b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFile.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'file', icon: [384, 512, [], "f15b", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileAlt.js new file mode 100644 index 0000000000..41b9c19e3b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'file-alt', icon: [384, 512, [], "f15c", "M288 248v28c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-28c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm-12 72H108c-6.6 0-12 5.4-12 12v28c0 6.6 5.4 12 12 12h168c6.6 0 12-5.4 12-12v-28c0-6.6-5.4-12-12-12zm108-188.1V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48C0 21.5 21.5 0 48 0h204.1C264.8 0 277 5.1 286 14.1L369.9 98c9 8.9 14.1 21.2 14.1 33.9zm-128-80V128h76.1L256 51.9zM336 464V176H232c-13.3 0-24-10.7-24-24V48H48v416h288z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileArchive.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileArchive.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileArchive.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileArchive.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileArchive.js new file mode 100644 index 0000000000..a9aaabfbb8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileArchive.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'file-archive', icon: [384, 512, [], "f1c6", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM256 51.882L332.118 128H256V51.882zM336 464H48V48h79.714v16h32V48H208v104c0 13.255 10.745 24 24 24h104v288zM192.27 96h-32V64h32v32zm-32 0v32h-32V96h32zm0 64v32h-32v-32h32zm32 0h-32v-32h32v32zm1.909 105.678A12 12 0 0 0 182.406 256H160.27v-32h-32v32l-19.69 97.106C101.989 385.611 126.834 416 160 416c33.052 0 57.871-30.192 51.476-62.62l-17.297-87.702zM160.27 390.073c-17.918 0-32.444-12.105-32.444-27.036 0-14.932 14.525-27.036 32.444-27.036s32.444 12.105 32.444 27.036c0 14.931-14.526 27.036-32.444 27.036zm32-166.073h-32v-32h32v32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileAudio.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileAudio.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileAudio.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileAudio.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileAudio.js new file mode 100644 index 0000000000..7cb3ac63d4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileAudio.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'file-audio', icon: [384, 512, [], "f1c7", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm144-76.024c0 10.691-12.926 16.045-20.485 8.485L136 360.486h-28c-6.627 0-12-5.373-12-12v-56c0-6.627 5.373-12 12-12h28l35.515-36.947c7.56-7.56 20.485-2.206 20.485 8.485v135.952zm41.201-47.13c9.051-9.297 9.06-24.133.001-33.439-22.149-22.752 12.235-56.246 34.395-33.481 27.198 27.94 27.212 72.444.001 100.401-21.793 22.386-56.947-10.315-34.397-33.481z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileCode.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileCode.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileCode.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileCode.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileCode.js new file mode 100644 index 0000000000..0896c13b47 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileCode.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'file-code', icon: [384, 512, [], "f1c9", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm101.677-115.115L116.854 320l32.822-28.885a8.793 8.793 0 0 0 .605-12.624l-17.403-18.564c-3.384-3.613-8.964-3.662-12.438-.401L62.78 313.58c-3.703 3.474-3.704 9.367.001 12.84l57.659 54.055a8.738 8.738 0 0 0 6.012 2.381 8.746 8.746 0 0 0 6.427-2.782l17.403-18.563a8.795 8.795 0 0 0-.605-12.626zm84.284-127.85l-24.401-7.084a8.796 8.796 0 0 0-10.905 5.998L144.04 408.061c-1.353 4.66 1.338 9.552 5.998 10.905l24.403 7.084c4.68 1.355 9.557-1.354 10.905-5.998l54.612-188.112c1.354-4.66-1.337-9.552-5.997-10.905zm87.258 92.545l-57.658-54.055c-3.526-3.307-9.099-3.165-12.439.401l-17.403 18.563a8.795 8.795 0 0 0 .605 12.625L267.146 320l-32.822 28.885a8.793 8.793 0 0 0-.605 12.624l17.403 18.564a8.797 8.797 0 0 0 12.439.401h-.001l57.66-54.055c3.703-3.473 3.703-9.366-.001-12.839z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileExcel.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileExcel.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileExcel.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileExcel.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileExcel.js new file mode 100644 index 0000000000..83d35a0600 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileExcel.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'file-excel', icon: [384, 512, [], "f1c3", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm212-240h-28.8c-4.4 0-8.4 2.4-10.5 6.3-18 33.1-22.2 42.4-28.6 57.7-13.9-29.1-6.9-17.3-28.6-57.7-2.1-3.9-6.2-6.3-10.6-6.3H124c-9.3 0-15 10-10.4 18l46.3 78-46.3 78c-4.7 8 1.1 18 10.4 18h28.9c4.4 0 8.4-2.4 10.5-6.3 21.7-40 23-45 28.6-57.7 14.9 30.2 5.9 15.9 28.6 57.7 2.1 3.9 6.2 6.3 10.6 6.3H260c9.3 0 15-10 10.4-18L224 320c.7-1.1 30.3-50.5 46.3-78 4.7-8-1.1-18-10.3-18z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileImage.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileImage.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileImage.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileImage.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileImage.js new file mode 100644 index 0000000000..5ebc109527 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileImage.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'file-image', icon: [384, 512, [], "f1c5", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm32-48h224V288l-23.5-23.5c-4.7-4.7-12.3-4.7-17 0L176 352l-39.5-39.5c-4.7-4.7-12.3-4.7-17 0L80 352v64zm48-240c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFilePdf.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFilePdf.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFilePdf.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFilePdf.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFilePdf.js new file mode 100644 index 0000000000..00c1439c1c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFilePdf.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'file-pdf', icon: [384, 512, [], "f1c1", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm250.2-143.7c-12.2-12-47-8.7-64.4-6.5-17.2-10.5-28.7-25-36.8-46.3 3.9-16.1 10.1-40.6 5.4-56-4.2-26.2-37.8-23.6-42.6-5.9-4.4 16.1-.4 38.5 7 67.1-10 23.9-24.9 56-35.4 74.4-20 10.3-47 26.2-51 46.2-3.3 15.8 26 55.2 76.1-31.2 22.4-7.4 46.8-16.5 68.4-20.1 18.9 10.2 41 17 55.8 17 25.5 0 28-28.2 17.5-38.7zm-198.1 77.8c5.1-13.7 24.5-29.5 30.4-35-19 30.3-30.4 35.7-30.4 35zm81.6-190.6c7.4 0 6.7 32.1 1.8 40.8-4.4-13.9-4.3-40.8-1.8-40.8zm-24.4 136.6c9.7-16.9 18-37 24.7-54.7 8.3 15.1 18.9 27.2 30.1 35.5-20.8 4.3-38.9 13.1-54.8 19.2zm131.6-5s-5 6-37.3-7.8c35.1-2.6 40.9 5.4 37.3 7.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFilePowerpoint.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFilePowerpoint.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFilePowerpoint.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFilePowerpoint.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFilePowerpoint.js new file mode 100644 index 0000000000..f187960c42 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFilePowerpoint.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'file-powerpoint', icon: [384, 512, [], "f1c4", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm72-60V236c0-6.6 5.4-12 12-12h69.2c36.7 0 62.8 27 62.8 66.3 0 74.3-68.7 66.5-95.5 66.5V404c0 6.6-5.4 12-12 12H132c-6.6 0-12-5.4-12-12zm48.5-87.4h23c7.9 0 13.9-2.4 18.1-7.2 8.5-9.8 8.4-28.5.1-37.8-4.1-4.6-9.9-7-17.4-7h-23.9v52z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileVideo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileVideo.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileVideo.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileVideo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileVideo.js new file mode 100644 index 0000000000..b0089eaef1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileVideo.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'file-video', icon: [384, 512, [], "f1c8", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm228.687-211.303L224 305.374V268c0-11.046-8.954-20-20-20H100c-11.046 0-20 8.954-20 20v104c0 11.046 8.954 20 20 20h104c11.046 0 20-8.954 20-20v-37.374l52.687 52.674C286.704 397.318 304 390.28 304 375.986V264.011c0-14.311-17.309-21.319-27.313-11.314z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileWord.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileWord.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileWord.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileWord.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileWord.js new file mode 100644 index 0000000000..24b7c488cf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFileWord.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'file-word', icon: [384, 512, [], "f1c2", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm220.1-208c-5.7 0-10.6 4-11.7 9.5-20.6 97.7-20.4 95.4-21 103.5-.2-1.2-.4-2.6-.7-4.3-.8-5.1.3.2-23.6-99.5-1.3-5.4-6.1-9.2-11.7-9.2h-13.3c-5.5 0-10.3 3.8-11.7 9.1-24.4 99-24 96.2-24.8 103.7-.1-1.1-.2-2.5-.5-4.2-.7-5.2-14.1-73.3-19.1-99-1.1-5.6-6-9.7-11.8-9.7h-16.8c-7.8 0-13.5 7.3-11.7 14.8 8 32.6 26.7 109.5 33.2 136 1.3 5.4 6.1 9.1 11.7 9.1h25.2c5.5 0 10.3-3.7 11.6-9.1l17.9-71.4c1.5-6.2 2.5-12 3-17.3l2.9 17.3c.1.4 12.6 50.5 17.9 71.4 1.3 5.3 6.1 9.1 11.6 9.1h24.7c5.5 0 10.3-3.7 11.6-9.1 20.8-81.9 30.2-119 34.5-136 1.9-7.6-3.8-14.9-11.6-14.9h-15.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFlag.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFlag.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFlag.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFlag.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFlag.js new file mode 100644 index 0000000000..9964f36f84 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFlag.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'flag', icon: [512, 512, [], "f024", "M336.174 80c-49.132 0-93.305-32-161.913-32-31.301 0-58.303 6.482-80.721 15.168a48.04 48.04 0 0 0 2.142-20.727C93.067 19.575 74.167 1.594 51.201.104 23.242-1.71 0 20.431 0 48c0 17.764 9.657 33.262 24 41.562V496c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-83.443C109.869 395.28 143.259 384 199.826 384c49.132 0 93.305 32 161.913 32 58.479 0 101.972-22.617 128.548-39.981C503.846 367.161 512 352.051 512 335.855V95.937c0-34.459-35.264-57.768-66.904-44.117C409.193 67.309 371.641 80 336.174 80zM464 336c-21.783 15.412-60.824 32-102.261 32-59.945 0-102.002-32-161.913-32-43.361 0-96.379 9.403-127.826 24V128c21.784-15.412 60.824-32 102.261-32 59.945 0 102.002 32 161.913 32 43.271 0 96.32-17.366 127.826-32v240z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFolder.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFolder.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFolder.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFolder.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFolder.js new file mode 100644 index 0000000000..fd4219ca54 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFolder.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'folder', icon: [512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48zm-6 272H54c-3.314 0-6-2.678-6-5.992V117.992A5.993 5.993 0 0 1 54 112h134.118l64 64H458a6 6 0 0 1 6 6v212a6 6 0 0 1-6 6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFolderOpen.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFolderOpen.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFolderOpen.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFolderOpen.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFolderOpen.js new file mode 100644 index 0000000000..a40e914795 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFolderOpen.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'folder-open', icon: [576, 512, [], "f07c", "M527.943 224H480v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h400a48.001 48.001 0 0 0 40.704-22.56l79.942-128c19.948-31.917-3.038-73.44-40.703-73.44zM54 112h134.118l64 64H426a6 6 0 0 1 6 6v42H152a48 48 0 0 0-41.098 23.202L48 351.449V117.993A5.993 5.993 0 0 1 54 112zm394 288H72l77.234-128H528l-80 128z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFontAwesomeLogoFull.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFontAwesomeLogoFull.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFontAwesomeLogoFull.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFontAwesomeLogoFull.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFontAwesomeLogoFull.js new file mode 100644 index 0000000000..afec2bc229 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFontAwesomeLogoFull.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'font-awesome-logo-full', icon: [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFrown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFrown.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFrown.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFrown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFrown.js new file mode 100644 index 0000000000..d9f412aef3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFrown.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'frown', icon: [496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 128c-40.2 0-78 17.7-103.8 48.6-8.5 10.2-7.1 25.3 3.1 33.8 10.2 8.5 25.3 7.1 33.8-3.1 16.6-19.9 41-31.4 66.9-31.4s50.3 11.4 66.9 31.4c4.8 5.7 11.6 8.6 18.5 8.6 5.4 0 10.9-1.8 15.4-5.6 10.2-8.5 11.5-23.6 3.1-33.8C326 321.7 288.2 304 248 304z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFutbol.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFutbol.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFutbol.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFutbol.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFutbol.js new file mode 100644 index 0000000000..7b89928ff5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faFutbol.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'futbol', icon: [496, 512, [], "f1e3", "M483.8 179.4C449.8 74.6 352.6 8 248.1 8c-25.4 0-51.2 3.9-76.7 12.2C41.2 62.5-30.1 202.4 12.2 332.6 46.2 437.4 143.4 504 247.9 504c25.4 0 51.2-3.9 76.7-12.2 130.2-42.3 201.5-182.2 159.2-312.4zm-74.5 193.7l-52.2 6.4-43.7-60.9 24.4-75.2 71.1-22.1 38.9 36.4c-.2 30.7-7.4 61.1-21.7 89.2-4.7 9.3-10.7 17.8-16.8 26.2zm0-235.4l-10.4 53.1-70.7 22-64.2-46.5V92.5l47.4-26.2c39.2 13 73.4 38 97.9 71.4zM184.9 66.4L232 92.5v73.8l-64.2 46.5-70.6-22-10.1-52.5c24.3-33.4 57.9-58.6 97.8-71.9zM139 379.5L85.9 373c-14.4-20.1-37.3-59.6-37.8-115.3l39-36.4 71.1 22.2 24.3 74.3-43.5 61.7zm48.2 67l-22.4-48.1 43.6-61.7H287l44.3 61.7-22.4 48.1c-6.2 1.8-57.6 20.4-121.7 0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faGem.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faGem.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faGem.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faGem.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faGem.js new file mode 100644 index 0000000000..f72f33ee63 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faGem.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'gem', icon: [576, 512, [], "f3a5", "M464 0H112c-4 0-7.8 2-10 5.4L2 152.6c-2.9 4.4-2.6 10.2.7 14.2l276 340.8c4.8 5.9 13.8 5.9 18.6 0l276-340.8c3.3-4.1 3.6-9.8.7-14.2L474.1 5.4C471.8 2 468.1 0 464 0zm-19.3 48l63.3 96h-68.4l-51.7-96h56.8zm-202.1 0h90.7l51.7 96H191l51.6-96zm-111.3 0h56.8l-51.7 96H68l63.3-96zm-43 144h51.4L208 352 88.3 192zm102.9 0h193.6L288 435.3 191.2 192zM368 352l68.2-160h51.4L368 352z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandLizard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandLizard.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandLizard.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandLizard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandLizard.js new file mode 100644 index 0000000000..ea3e186a53 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandLizard.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'hand-lizard', icon: [576, 512, [], "f258", "M556.686 290.542L410.328 64.829C397.001 44.272 374.417 32 349.917 32H56C25.121 32 0 57.122 0 88v8c0 44.112 35.888 80 80 80h196.042l-18.333 48H144c-48.523 0-88 39.477-88 88 0 30.879 25.121 56 56 56h131.552c2.987 0 5.914.549 8.697 1.631L352 408.418V480h224V355.829c0-23.225-6.679-45.801-19.314-65.287zM528 432H400v-23.582c0-19.948-12.014-37.508-30.604-44.736l-99.751-38.788A71.733 71.733 0 0 0 243.552 320H112c-4.411 0-8-3.589-8-8 0-22.056 17.944-40 40-40h113.709c19.767 0 37.786-12.407 44.84-30.873l24.552-64.281c8.996-23.553-8.428-48.846-33.63-48.846H80c-17.645 0-32-14.355-32-32v-8c0-4.411 3.589-8 8-8h293.917c8.166 0 15.693 4.09 20.137 10.942l146.358 225.715A71.84 71.84 0 0 1 528 355.829V432z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPaper.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPaper.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPaper.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPaper.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPaper.js new file mode 100644 index 0000000000..f9680ac483 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPaper.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'hand-paper', icon: [448, 512, [], "f256", "M372.57 112.641v-10.825c0-43.612-40.52-76.691-83.039-65.546-25.629-49.5-94.09-47.45-117.982.747C130.269 26.456 89.144 57.945 89.144 102v126.13c-19.953-7.427-43.308-5.068-62.083 8.871-29.355 21.796-35.794 63.333-14.55 93.153L132.48 498.569a32 32 0 0 0 26.062 13.432h222.897c14.904 0 27.835-10.289 31.182-24.813l30.184-130.958A203.637 203.637 0 0 0 448 310.564V179c0-40.62-35.523-71.992-75.43-66.359zm27.427 197.922c0 11.731-1.334 23.469-3.965 34.886L368.707 464h-201.92L51.591 302.303c-14.439-20.27 15.023-42.776 29.394-22.605l27.128 38.079c8.995 12.626 29.031 6.287 29.031-9.283V102c0-25.645 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V67c0-25.663 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V101.125c0-25.672 36.57-24.81 36.57.691V256c0 8.837 7.163 16 16 16h6.857c8.837 0 16-7.163 16-16v-76.309c0-26.242 36.57-25.64 36.57-.691v131.563z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPeace.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPeace.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPeace.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPeace.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPeace.js new file mode 100644 index 0000000000..ef510f3af6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPeace.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'hand-peace', icon: [448, 512, [], "f25b", "M362.146 191.976c-13.71-21.649-38.761-34.016-65.006-30.341V74c0-40.804-32.811-74-73.141-74-40.33 0-73.14 33.196-73.14 74L160 168l-18.679-78.85C126.578 50.843 83.85 32.11 46.209 47.208 8.735 62.238-9.571 104.963 5.008 142.85l55.757 144.927c-30.557 24.956-43.994 57.809-24.733 92.218l54.853 97.999C102.625 498.97 124.73 512 148.575 512h205.702c30.744 0 57.558-21.44 64.555-51.797l27.427-118.999a67.801 67.801 0 0 0 1.729-15.203L448 256c0-44.956-43.263-77.343-85.854-64.024zM399.987 326c0 1.488-.169 2.977-.502 4.423l-27.427 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H148.575c-6.486 0-12.542-3.621-15.805-9.449l-54.854-98c-4.557-8.141-2.619-18.668 4.508-24.488l26.647-21.764a16 16 0 0 0 4.812-18.139l-64.09-166.549C37.226 92.956 84.37 74.837 96.51 106.389l59.784 155.357A16 16 0 0 0 171.227 272h11.632c8.837 0 16-7.163 16-16V74c0-34.375 50.281-34.43 50.281 0v182c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16v-28c0-25.122 36.567-25.159 36.567 0v28c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16 0-25.12 36.567-25.16 36.567 0v70z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointDown.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointDown.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointDown.js new file mode 100644 index 0000000000..5f490b365c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointDown.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'hand-point-down', icon: [448, 512, [], "f0a7", "M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointLeft.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointLeft.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointLeft.js new file mode 100644 index 0000000000..fd599a3922 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointLeft.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'hand-point-left', icon: [512, 512, [], "f0a5", "M0 220.8C0 266.416 37.765 304 83.2 304h35.647a93.148 93.148 0 0 0 7.929 22.064c-2.507 22.006 3.503 44.978 15.985 62.791C143.9 441.342 180.159 480 242.701 480H264c60.063 0 98.512-40 127.2-40h2.679c5.747 4.952 13.536 8 22.12 8h64c17.673 0 32-12.894 32-28.8V188.8c0-15.906-14.327-28.8-32-28.8h-64c-8.584 0-16.373 3.048-22.12 8H391.2c-6.964 0-14.862-6.193-30.183-23.668l-.129-.148-.131-.146c-8.856-9.937-18.116-20.841-25.851-33.253C316.202 80.537 304.514 32 259.2 32c-56.928 0-92 35.286-92 83.2 0 8.026.814 15.489 2.176 22.4H83.2C38.101 137.6 0 175.701 0 220.8zm48 0c0-18.7 16.775-35.2 35.2-35.2h158.4c0-17.325-26.4-35.2-26.4-70.4 0-26.4 20.625-35.2 44-35.2 8.794 0 20.445 32.712 34.926 56.1 9.074 14.575 19.524 27.225 30.799 39.875 16.109 18.374 33.836 36.633 59.075 39.596v176.752C341.21 396.087 309.491 432 264 432h-21.299c-40.524 0-57.124-22.197-50.601-61.325-14.612-8.001-24.151-33.979-12.925-53.625-19.365-18.225-17.787-46.381-4.95-61.05H83.2C64.225 256 48 239.775 48 220.8zM448 360c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointRight.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointRight.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointRight.js new file mode 100644 index 0000000000..9ec2b20c43 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointRight.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'hand-point-right', icon: [512, 512, [], "f0a4", "M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointUp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointUp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointUp.js new file mode 100644 index 0000000000..efa3cc822a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointUp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'hand-point-up', icon: [448, 512, [], "f0a6", "M105.6 83.2v86.177a115.52 115.52 0 0 0-22.4-2.176c-47.914 0-83.2 35.072-83.2 92 0 45.314 48.537 57.002 78.784 75.707 12.413 7.735 23.317 16.994 33.253 25.851l.146.131.148.129C129.807 376.338 136 384.236 136 391.2v2.679c-4.952 5.747-8 13.536-8 22.12v64c0 17.673 12.894 32 28.8 32h230.4c15.906 0 28.8-14.327 28.8-32v-64c0-8.584-3.048-16.373-8-22.12V391.2c0-28.688 40-67.137 40-127.2v-21.299c0-62.542-38.658-98.8-91.145-99.94-17.813-12.482-40.785-18.491-62.791-15.985A93.148 93.148 0 0 0 272 118.847V83.2C272 37.765 234.416 0 188.8 0c-45.099 0-83.2 38.101-83.2 83.2zm118.4 0v91.026c14.669-12.837 42.825-14.415 61.05 4.95 19.646-11.227 45.624-1.687 53.625 12.925 39.128-6.524 61.325 10.076 61.325 50.6V264c0 45.491-35.913 77.21-39.676 120H183.571c-2.964-25.239-21.222-42.966-39.596-59.075-12.65-11.275-25.3-21.725-39.875-30.799C80.712 279.645 48 267.994 48 259.2c0-23.375 8.8-44 35.2-44 35.2 0 53.075 26.4 70.4 26.4V83.2c0-18.425 16.5-35.2 35.2-35.2 18.975 0 35.2 16.225 35.2 35.2zM352 424c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointer.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointer.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointer.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointer.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointer.js new file mode 100644 index 0000000000..6d0f74680e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandPointer.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'hand-pointer', icon: [448, 512, [], "f25a", "M358.182 179.361c-19.493-24.768-52.679-31.945-79.872-19.098-15.127-15.687-36.182-22.487-56.595-19.629V67c0-36.944-29.736-67-66.286-67S89.143 30.056 89.143 67v161.129c-19.909-7.41-43.272-5.094-62.083 8.872-29.355 21.795-35.793 63.333-14.55 93.152l109.699 154.001C134.632 501.59 154.741 512 176 512h178.286c30.802 0 57.574-21.5 64.557-51.797l27.429-118.999A67.873 67.873 0 0 0 448 326v-84c0-46.844-46.625-79.273-89.818-62.639zM80.985 279.697l27.126 38.079c8.995 12.626 29.031 6.287 29.031-9.283V67c0-25.12 36.571-25.16 36.571 0v175c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16v-35c0-25.12 36.571-25.16 36.571 0v35c0 8.836 7.163 16 16 16H272c8.837 0 16-7.164 16-16v-21c0-25.12 36.571-25.16 36.571 0v21c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16 0-25.121 36.571-25.16 36.571 0v84c0 1.488-.169 2.977-.502 4.423l-27.43 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H176c-5.769 0-11.263-2.878-14.697-7.697l-109.712-154c-14.406-20.223 14.994-42.818 29.394-22.606zM176.143 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.733 0-14-7.163-14-16zm75.428 0v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16zM327 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandRock.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandRock.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandRock.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandRock.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandRock.js new file mode 100644 index 0000000000..878bdbef0c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandRock.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'hand-rock', icon: [512, 512, [], "f255", "M408.864 79.052c-22.401-33.898-66.108-42.273-98.813-23.588-29.474-31.469-79.145-31.093-108.334-.022-47.16-27.02-108.71 5.055-110.671 60.806C44.846 105.407 0 140.001 0 187.429v56.953c0 32.741 14.28 63.954 39.18 85.634l97.71 85.081c4.252 3.702 3.11 5.573 3.11 32.903 0 17.673 14.327 32 32 32h252c17.673 0 32-14.327 32-32 0-23.513-1.015-30.745 3.982-42.37l42.835-99.656c6.094-14.177 9.183-29.172 9.183-44.568V146.963c0-52.839-54.314-88.662-103.136-67.911zM464 261.406a64.505 64.505 0 0 1-5.282 25.613l-42.835 99.655c-5.23 12.171-7.883 25.04-7.883 38.25V432H188v-10.286c0-16.37-7.14-31.977-19.59-42.817l-97.71-85.08C56.274 281.255 48 263.236 48 244.381v-56.953c0-33.208 52-33.537 52 .677v41.228a16 16 0 0 0 5.493 12.067l7 6.095A16 16 0 0 0 139 235.429V118.857c0-33.097 52-33.725 52 .677v26.751c0 8.836 7.164 16 16 16h7c8.836 0 16-7.164 16-16v-41.143c0-33.134 52-33.675 52 .677v40.466c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16v-27.429c0-33.03 52-33.78 52 .677v26.751c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16 0-33.146 52-33.613 52 .677v114.445z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandScissors.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandScissors.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandScissors.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandScissors.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandScissors.js new file mode 100644 index 0000000000..8093a77b51 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandScissors.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'hand-scissors', icon: [512, 512, [], "f257", "M256 480l70-.013c5.114 0 10.231-.583 15.203-1.729l118.999-27.427C490.56 443.835 512 417.02 512 386.277V180.575c0-23.845-13.03-45.951-34.005-57.69l-97.999-54.853c-34.409-19.261-67.263-5.824-92.218 24.733L142.85 37.008c-37.887-14.579-80.612 3.727-95.642 41.201-15.098 37.642 3.635 80.37 41.942 95.112L168 192l-94-9.141c-40.804 0-74 32.811-74 73.14 0 40.33 33.196 73.141 74 73.141h87.635c-3.675 26.245 8.692 51.297 30.341 65.006C178.657 436.737 211.044 480 256 480zm0-48.013c-25.16 0-25.12-36.567 0-36.567 8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16h-28c-25.159 0-25.122-36.567 0-36.567h28c8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16H74c-34.43 0-34.375-50.281 0-50.281h182c8.837 0 16-7.163 16-16v-11.632a16 16 0 0 0-10.254-14.933L106.389 128.51c-31.552-12.14-13.432-59.283 19.222-46.717l166.549 64.091a16.001 16.001 0 0 0 18.139-4.812l21.764-26.647c5.82-7.127 16.348-9.064 24.488-4.508l98 54.854c5.828 3.263 9.449 9.318 9.449 15.805v205.701c0 8.491-5.994 15.804-14.576 17.782l-119.001 27.427a19.743 19.743 0 0 1-4.423.502h-70z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandSpock.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandSpock.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandSpock.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandSpock.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandSpock.js new file mode 100644 index 0000000000..011f7a3e7b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandSpock.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'hand-spock', icon: [512, 512, [], "f259", "M21.096 381.79l129.092 121.513a32 32 0 0 0 21.932 8.698h237.6c14.17 0 26.653-9.319 30.68-22.904l31.815-107.313A115.955 115.955 0 0 0 477 348.811v-36.839c0-4.051.476-8.104 1.414-12.045l31.73-133.41c10.099-42.412-22.316-82.738-65.544-82.525-4.144-24.856-22.543-47.165-49.85-53.992-35.803-8.952-72.227 12.655-81.25 48.75L296.599 184 274.924 52.01c-8.286-36.07-44.303-58.572-80.304-50.296-29.616 6.804-50.138 32.389-51.882 61.295-42.637.831-73.455 40.563-64.071 81.844l31.04 136.508c-27.194-22.515-67.284-19.992-91.482 5.722-25.376 26.961-24.098 69.325 2.871 94.707zm32.068-61.811l.002-.001c7.219-7.672 19.241-7.98 26.856-.813l53.012 49.894C143.225 378.649 160 371.4 160 357.406v-69.479c0-1.193-.134-2.383-.397-3.546l-34.13-150.172c-5.596-24.617 31.502-32.86 37.054-8.421l30.399 133.757a16 16 0 0 0 15.603 12.454h8.604c10.276 0 17.894-9.567 15.594-19.583l-41.62-181.153c-5.623-24.469 31.39-33.076 37.035-8.508l45.22 196.828A16 16 0 0 0 288.956 272h13.217a16 16 0 0 0 15.522-12.119l42.372-169.49c6.104-24.422 42.962-15.159 36.865 9.217L358.805 252.12c-2.521 10.088 5.115 19.88 15.522 19.88h9.694a16 16 0 0 0 15.565-12.295L426.509 146.6c5.821-24.448 42.797-15.687 36.966 8.802L431.72 288.81a100.094 100.094 0 0 0-2.72 23.162v36.839c0 6.548-.943 13.051-2.805 19.328L397.775 464h-219.31L53.978 346.836c-7.629-7.18-7.994-19.229-.814-26.857z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandshake.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandshake.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandshake.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandshake.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandshake.js new file mode 100644 index 0000000000..4493dedda3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHandshake.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'handshake', icon: [640, 512, [], "f2b5", "M519.2 127.9l-47.6-47.6A56.252 56.252 0 0 0 432 64H205.2c-14.8 0-29.1 5.9-39.6 16.3L118 127.9H0v255.7h64c17.6 0 31.8-14.2 31.9-31.7h9.1l84.6 76.4c30.9 25.1 73.8 25.7 105.6 3.8 12.5 10.8 26 15.9 41.1 15.9 18.2 0 35.3-7.4 48.8-24 22.1 8.7 48.2 2.6 64-16.8l26.2-32.3c5.6-6.9 9.1-14.8 10.9-23h57.9c.1 17.5 14.4 31.7 31.9 31.7h64V127.9H519.2zM48 351.6c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16zm390-6.9l-26.1 32.2c-2.8 3.4-7.8 4-11.3 1.2l-23.9-19.4-30 36.5c-6 7.3-15 4.8-18 2.4l-36.8-31.5-15.6 19.2c-13.9 17.1-39.2 19.7-55.3 6.6l-97.3-88H96V175.8h41.9l61.7-61.6c2-.8 3.7-1.5 5.7-2.3H262l-38.7 35.5c-29.4 26.9-31.1 72.3-4.4 101.3 14.8 16.2 61.2 41.2 101.5 4.4l8.2-7.5 108.2 87.8c3.4 2.8 3.9 7.9 1.2 11.3zm106-40.8h-69.2c-2.3-2.8-4.9-5.4-7.7-7.7l-102.7-83.4 12.5-11.4c6.5-6 7-16.1 1-22.6L367 167.1c-6-6.5-16.1-6.9-22.6-1l-55.2 50.6c-9.5 8.7-25.7 9.4-34.6 0-9.3-9.9-8.5-25.1 1.2-33.9l65.6-60.1c7.4-6.8 17-10.5 27-10.5l83.7-.2c2.1 0 4.1.8 5.5 2.3l61.7 61.6H544v128zm48 47.7c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHdd.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHdd.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHdd.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHdd.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHdd.js new file mode 100644 index 0000000000..812d5976d0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHdd.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'hdd', icon: [576, 512, [], "f0a0", "M567.403 235.642L462.323 84.589A48 48 0 0 0 422.919 64H153.081a48 48 0 0 0-39.404 20.589L8.597 235.642A48.001 48.001 0 0 0 0 263.054V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V263.054c0-9.801-3-19.366-8.597-27.412zM153.081 112h269.838l77.913 112H75.168l77.913-112zM528 400H48V272h480v128zm-32-64c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32zm-96 0c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHeart.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHeart.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHeart.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHeart.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHeart.js new file mode 100644 index 0000000000..df11193fe4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHeart.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'heart', icon: [512, 512, [], "f004", "M458.4 64.3C400.6 15.7 311.3 23 256 79.3 200.7 23 111.4 15.6 53.6 64.3-21.6 127.6-10.6 230.8 43 285.5l175.4 178.7c10 10.2 23.4 15.9 37.6 15.9 14.3 0 27.6-5.6 37.6-15.8L469 285.6c53.5-54.7 64.7-157.9-10.6-221.3zm-23.6 187.5L259.4 430.5c-2.4 2.4-4.4 2.4-6.8 0L77.2 251.8c-36.5-37.2-43.9-107.6 7.3-150.7 38.9-32.7 98.9-27.8 136.5 10.5l35 35.7 35-35.7c37.8-38.5 97.8-43.2 136.5-10.6 51.1 43.1 43.5 113.9 7.3 150.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHospital.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHospital.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHospital.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHospital.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHospital.js new file mode 100644 index 0000000000..4198573f79 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHospital.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'hospital', icon: [448, 512, [], "f0f8", "M128 244v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12zm140 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm-76 84v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm76 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm180 124v36H0v-36c0-6.627 5.373-12 12-12h19.5V85.035C31.5 73.418 42.245 64 55.5 64H144V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v40h88.5c13.255 0 24 9.418 24 21.035V464H436c6.627 0 12 5.373 12 12zM79.5 463H192v-67c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v67h112.5V112H304v24c0 13.255-10.745 24-24 24H168c-13.255 0-24-10.745-24-24v-24H79.5v351zM266 64h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHourglass.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHourglass.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHourglass.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHourglass.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHourglass.js new file mode 100644 index 0000000000..ed05249828 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faHourglass.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'hourglass', icon: [384, 512, [], "f254", "M368 48h4c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12H12C5.373 0 0 5.373 0 12v24c0 6.627 5.373 12 12 12h4c0 80.564 32.188 165.807 97.18 208C47.899 298.381 16 383.9 16 464h-4c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12h-4c0-80.564-32.188-165.807-97.18-208C336.102 213.619 368 128.1 368 48zM64 48h256c0 101.62-57.307 184-128 184S64 149.621 64 48zm256 416H64c0-101.62 57.308-184 128-184s128 82.38 128 184z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faIdBadge.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faIdBadge.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faIdBadge.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faIdBadge.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faIdBadge.js new file mode 100644 index 0000000000..38364e0cf9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faIdBadge.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'id-badge', icon: [384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm0 464H48V48h288v416zM144 112h96c8.8 0 16-7.2 16-16s-7.2-16-16-16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16zm48 176c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faIdCard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faIdCard.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faIdCard.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faIdCard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faIdCard.js new file mode 100644 index 0000000000..323088b95d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faIdCard.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'id-card', icon: [576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H303.2c.9-4.5.8 3.6.8-22.4 0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6 0 26-.2 17.9.8 22.4H48V144h480v288zm-168-80h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm-168 96c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faImage.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faImage.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faImage.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faImage.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faImage.js new file mode 100644 index 0000000000..4d38ac666d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faImage.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'image', icon: [512, 512, [], "f03e", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 336H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v276a6 6 0 0 1-6 6zM128 152c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zM96 352h320v-80l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L192 304l-39.515-39.515c-4.686-4.686-12.284-4.686-16.971 0L96 304v48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faImages.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faImages.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faImages.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faImages.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faImages.js new file mode 100644 index 0000000000..73efd8cf9d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faImages.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'images', icon: [576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v48H54a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6v-10h48zm42-336H150a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6V86a6 6 0 0 0-6-6zm6-48c26.51 0 48 21.49 48 48v256c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h384zM264 144c0 22.091-17.909 40-40 40s-40-17.909-40-40 17.909-40 40-40 40 17.909 40 40zm-72 96l39.515-39.515c4.686-4.686 12.284-4.686 16.971 0L288 240l103.515-103.515c4.686-4.686 12.284-4.686 16.971 0L480 208v80H192v-48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faKeyboard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faKeyboard.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faKeyboard.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faKeyboard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faKeyboard.js new file mode 100644 index 0000000000..d58e18096e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faKeyboard.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'keyboard', icon: [576, 512, [], "f11c", "M528 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm8 336c0 4.411-3.589 8-8 8H48c-4.411 0-8-3.589-8-8V112c0-4.411 3.589-8 8-8h480c4.411 0 8 3.589 8 8v288zM170 270v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-336 82v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm384 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zM122 188v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-98 158v-16c0-6.627-5.373-12-12-12H180c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h216c6.627 0 12-5.373 12-12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faLemon.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faLemon.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faLemon.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faLemon.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faLemon.js new file mode 100644 index 0000000000..91cd2c7282 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faLemon.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'lemon', icon: [512, 512, [], "f094", "M484.112 27.889C455.989-.233 416.108-8.057 387.059 8.865 347.604 31.848 223.504-41.111 91.196 91.197-41.277 223.672 31.923 347.472 8.866 387.058c-16.922 29.051-9.1 68.932 19.022 97.054 28.135 28.135 68.011 35.938 97.057 19.021 39.423-22.97 163.557 49.969 295.858-82.329 132.474-132.477 59.273-256.277 82.331-295.861 16.922-29.05 9.1-68.931-19.022-97.054zm-22.405 72.894c-38.8 66.609 45.6 165.635-74.845 286.08-120.44 120.443-219.475 36.048-286.076 74.843-22.679 13.207-64.035-27.241-50.493-50.488 38.8-66.609-45.6-165.635 74.845-286.08C245.573 4.702 344.616 89.086 411.219 50.292c22.73-13.24 64.005 27.288 50.488 50.491zm-169.861 8.736c1.37 10.96-6.404 20.957-17.365 22.327-54.846 6.855-135.779 87.787-142.635 142.635-1.373 10.989-11.399 18.734-22.326 17.365-10.961-1.37-18.735-11.366-17.365-22.326 9.162-73.286 104.167-168.215 177.365-177.365 10.953-1.368 20.956 6.403 22.326 17.364z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faLifeRing.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faLifeRing.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faLifeRing.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faLifeRing.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faLifeRing.js new file mode 100644 index 0000000000..da769a3f61 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faLifeRing.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'life-ring', icon: [512, 512, [], "f1cd", "M256 504c136.967 0 248-111.033 248-248S392.967 8 256 8 8 119.033 8 256s111.033 248 248 248zm-103.398-76.72l53.411-53.411c31.806 13.506 68.128 13.522 99.974 0l53.411 53.411c-63.217 38.319-143.579 38.319-206.796 0zM336 256c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zm91.28 103.398l-53.411-53.411c13.505-31.806 13.522-68.128 0-99.974l53.411-53.411c38.319 63.217 38.319 143.579 0 206.796zM359.397 84.72l-53.411 53.411c-31.806-13.505-68.128-13.522-99.973 0L152.602 84.72c63.217-38.319 143.579-38.319 206.795 0zM84.72 152.602l53.411 53.411c-13.506 31.806-13.522 68.128 0 99.974L84.72 359.398c-38.319-63.217-38.319-143.579 0-206.796z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faLightbulb.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faLightbulb.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faLightbulb.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faLightbulb.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faLightbulb.js new file mode 100644 index 0000000000..35908035be --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faLightbulb.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'lightbulb', icon: [384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zM128 176c0-35.29 28.71-64 64-64 8.837 0 16-7.164 16-16s-7.163-16-16-16c-52.935 0-96 43.065-96 96 0 8.836 7.164 16 16 16s16-7.164 16-16zm64-128c70.734 0 128 57.254 128 128 0 77.602-37.383 60.477-80.98 160h-94.04C101.318 236.33 64 253.869 64 176c0-70.735 57.254-128 128-128m0-48C94.805 0 16 78.803 16 176c0 101.731 51.697 91.541 90.516 192.674 3.55 9.249 12.47 15.326 22.376 15.326h126.215c9.906 0 18.826-6.078 22.376-15.326C316.303 267.541 368 277.731 368 176 368 78.803 289.195 0 192 0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faListAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faListAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faListAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faListAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faListAlt.js new file mode 100644 index 0000000000..0f37c274e8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faListAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'list-alt', icon: [512, 512, [], "f022", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zm-42-92v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm-252 12c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMap.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMap.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMap.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMap.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMap.js new file mode 100644 index 0000000000..34da38e075 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMap.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'map', icon: [576, 512, [], "f279", "M508.505 36.17L381.517 92.576 207.179 34.463a47.992 47.992 0 0 0-34.674 1.674l-144 64A48 48 0 0 0 0 144v287.967c0 34.938 35.991 57.864 67.495 43.863l126.988-56.406 174.339 58.113a47.992 47.992 0 0 0 34.674-1.674l144-64A48 48 0 0 0 576 368V80.033c0-34.938-35.991-57.864-67.495-43.863zM360 424l-144-48V88l144 48v288zm-312 8V144l120-53.333v288L48 432zm480-64l-120 53.333v-288L528 80v288z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMeh.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMeh.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMeh.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMeh.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMeh.js new file mode 100644 index 0000000000..8e0f3d850a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMeh.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'meh', icon: [496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm8 144H160c-13.2 0-24 10.8-24 24s10.8 24 24 24h176c13.2 0 24-10.8 24-24s-10.8-24-24-24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMinusSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMinusSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMinusSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMinusSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMinusSquare.js new file mode 100644 index 0000000000..55839d7aa0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMinusSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'minus-square', icon: [448, 512, [], "f146", "M108 284c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h232c6.6 0 12 5.4 12 12v32c0 6.6-5.4 12-12 12H108zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMoneyBillAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMoneyBillAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMoneyBillAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMoneyBillAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMoneyBillAlt.js new file mode 100644 index 0000000000..cead795421 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMoneyBillAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'money-bill-alt', icon: [640, 512, [], "f3d1", "M320 144c-53.02 0-96 50.14-96 112 0 61.85 42.98 112 96 112 53 0 96-50.13 96-112 0-61.86-42.98-112-96-112zm40 168c0 4.42-3.58 8-8 8h-64c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h16v-55.44l-.47.31a7.992 7.992 0 0 1-11.09-2.22l-8.88-13.31a7.992 7.992 0 0 1 2.22-11.09l15.33-10.22a23.99 23.99 0 0 1 13.31-4.03H328c4.42 0 8 3.58 8 8v88h16c4.42 0 8 3.58 8 8v16zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zm-16 272c-35.35 0-64 28.65-64 64H112c0-35.35-28.65-64-64-64V176c35.35 0 64-28.65 64-64h416c0 35.35 28.65 64 64 64v160z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMoon.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMoon.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMoon.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMoon.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMoon.js new file mode 100644 index 0000000000..945783bd7c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faMoon.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'moon', icon: [512, 512, [], "f186", "M279.135 512c78.756 0 150.982-35.804 198.844-94.775 28.27-34.831-2.558-85.722-46.249-77.401-82.348 15.683-158.272-47.268-158.272-130.792 0-48.424 26.06-92.292 67.434-115.836 38.745-22.05 28.999-80.788-15.022-88.919A257.936 257.936 0 0 0 279.135 0c-141.36 0-256 114.575-256 256 0 141.36 114.576 256 256 256zm0-464c12.985 0 25.689 1.201 38.016 3.478-54.76 31.163-91.693 90.042-91.693 157.554 0 113.848 103.641 199.2 215.252 177.944C402.574 433.964 344.366 464 279.135 464c-114.875 0-208-93.125-208-208s93.125-208 208-208z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faNewspaper.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faNewspaper.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faNewspaper.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faNewspaper.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faNewspaper.js new file mode 100644 index 0000000000..e41248ca72 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faNewspaper.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'newspaper', icon: [576, 512, [], "f1ea", "M552 64H112c-20.858 0-38.643 13.377-45.248 32H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h496c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24zM48 392V144h16v248c0 4.411-3.589 8-8 8s-8-3.589-8-8zm480 8H111.422c.374-2.614.578-5.283.578-8V112h416v288zM172 280h136c6.627 0 12-5.373 12-12v-96c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v96c0 6.627 5.373 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H172c-6.627 0-12-5.373-12-12zm192 0v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0-144v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0 72v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faObjectGroup.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faObjectGroup.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faObjectGroup.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faObjectGroup.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faObjectGroup.js new file mode 100644 index 0000000000..a44a947dd3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faObjectGroup.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'object-group', icon: [512, 512, [], "f247", "M500 128c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v256H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V128h12zm-52-64h32v32h-32V64zM32 64h32v32H32V64zm32 384H32v-32h32v32zm416 0h-32v-32h32v32zm-40-64h-12c-6.627 0-12 5.373-12 12v12H96v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h12v256zm-36-192h-84v-52c0-6.628-5.373-12-12-12H108c-6.627 0-12 5.372-12 12v168c0 6.628 5.373 12 12 12h84v52c0 6.628 5.373 12 12 12h200c6.627 0 12-5.372 12-12V204c0-6.628-5.373-12-12-12zm-268-24h144v112H136V168zm240 176H232v-24h76c6.627 0 12-5.372 12-12v-76h56v112z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faObjectUngroup.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faObjectUngroup.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faObjectUngroup.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faObjectUngroup.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faObjectUngroup.js new file mode 100644 index 0000000000..1dd5a2da35 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faObjectUngroup.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'object-ungroup', icon: [576, 512, [], "f248", "M564 224c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12h-88v-24h12c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v160H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h88v24h-12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V224h12zM352 64h32v32h-32V64zm0 256h32v32h-32v-32zM64 352H32v-32h32v32zm0-256H32V64h32v32zm32 216v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h12v160h-12c-6.627 0-12 5.373-12 12v12H96zm128 136h-32v-32h32v32zm280-64h-12c-6.627 0-12 5.373-12 12v12H256v-12c0-6.627-5.373-12-12-12h-12v-24h88v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12v-88h88v12c0 6.627 5.373 12 12 12h12v160zm40 64h-32v-32h32v32zm0-256h-32v-32h32v32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPaperPlane.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPaperPlane.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPaperPlane.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPaperPlane.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPaperPlane.js new file mode 100644 index 0000000000..fd68da50b3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPaperPlane.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'paper-plane', icon: [512, 512, [], "f1d8", "M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPauseCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPauseCircle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPauseCircle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPauseCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPauseCircle.js new file mode 100644 index 0000000000..7c1bc49dd9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPauseCircle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'pause-circle', icon: [512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm96-280v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16zm-112 0v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPlayCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPlayCircle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPlayCircle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPlayCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPlayCircle.js new file mode 100644 index 0000000000..7bb3904e57 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPlayCircle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'play-circle', icon: [512, 512, [], "f144", "M371.7 238l-176-107c-15.8-8.8-35.7 2.5-35.7 21v208c0 18.4 19.8 29.8 35.7 21l176-101c16.4-9.1 16.4-32.8 0-42zM504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPlusSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPlusSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPlusSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPlusSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPlusSquare.js new file mode 100644 index 0000000000..3a014091b0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faPlusSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'plus-square', icon: [448, 512, [], "f0fe", "M352 240v32c0 6.6-5.4 12-12 12h-88v88c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-88h-88c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h88v-88c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v88h88c6.6 0 12 5.4 12 12zm96-160v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faQuestionCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faQuestionCircle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faQuestionCircle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faQuestionCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faQuestionCircle.js new file mode 100644 index 0000000000..cec086827e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faQuestionCircle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'question-circle', icon: [512, 512, [], "f059", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 448c-110.532 0-200-89.431-200-200 0-110.495 89.472-200 200-200 110.491 0 200 89.471 200 200 0 110.53-89.431 200-200 200zm107.244-255.2c0 67.052-72.421 68.084-72.421 92.863V300c0 6.627-5.373 12-12 12h-45.647c-6.627 0-12-5.373-12-12v-8.659c0-35.745 27.1-50.034 47.579-61.516 17.561-9.845 28.324-16.541 28.324-29.579 0-17.246-21.999-28.693-39.784-28.693-23.189 0-33.894 10.977-48.942 29.969-4.057 5.12-11.46 6.071-16.666 2.124l-27.824-21.098c-5.107-3.872-6.251-11.066-2.644-16.363C184.846 131.491 214.94 112 261.794 112c49.071 0 101.45 38.304 101.45 88.8zM298 368c0 23.159-18.841 42-42 42s-42-18.841-42-42 18.841-42 42-42 42 18.841 42 42z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faRegistered.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faRegistered.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faRegistered.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faRegistered.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faRegistered.js new file mode 100644 index 0000000000..0c584e6301 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faRegistered.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'registered', icon: [512, 512, [], "f25d", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm110.442-81.791c-53.046-96.284-50.25-91.468-53.271-96.085 24.267-13.879 39.482-41.563 39.482-73.176 0-52.503-30.247-85.252-101.498-85.252h-78.667c-6.617 0-12 5.383-12 12V380c0 6.617 5.383 12 12 12h38.568c6.617 0 12-5.383 12-12v-83.663h31.958l47.515 89.303a11.98 11.98 0 0 0 10.593 6.36h42.81c9.14 0 14.914-9.799 10.51-17.791zM256.933 239.906h-33.875v-64.14h27.377c32.417 0 38.929 12.133 38.929 31.709-.001 20.913-11.518 32.431-32.431 32.431z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSave.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSave.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSave.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSave.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSave.js new file mode 100644 index 0000000000..383e4ac19c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSave.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'save', icon: [448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM272 80v80H144V80h128zm122 352H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h42v104c0 13.255 10.745 24 24 24h176c13.255 0 24-10.745 24-24V83.882l78.243 78.243a6 6 0 0 1 1.757 4.243V426a6 6 0 0 1-6 6zM224 232c-48.523 0-88 39.477-88 88s39.477 88 88 88 88-39.477 88-88-39.477-88-88-88zm0 128c-22.056 0-40-17.944-40-40s17.944-40 40-40 40 17.944 40 40-17.944 40-40 40z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faShareSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faShareSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faShareSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faShareSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faShareSquare.js new file mode 100644 index 0000000000..a390f4d310 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faShareSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'share-square', icon: [576, 512, [], "f14d", "M561.938 158.06L417.94 14.092C387.926-15.922 336 5.097 336 48.032v57.198c-42.45 1.88-84.03 6.55-120.76 17.99-35.17 10.95-63.07 27.58-82.91 49.42C108.22 199.2 96 232.6 96 271.94c0 61.697 33.178 112.455 84.87 144.76 37.546 23.508 85.248-12.651 71.02-55.74-15.515-47.119-17.156-70.923 84.11-78.76V336c0 42.993 51.968 63.913 81.94 33.94l143.998-144c18.75-18.74 18.75-49.14 0-67.88zM384 336V232.16C255.309 234.082 166.492 255.35 206.31 376 176.79 357.55 144 324.08 144 271.94c0-109.334 129.14-118.947 240-119.85V48l144 144-144 144zm24.74 84.493a82.658 82.658 0 0 0 20.974-9.303c7.976-4.952 18.286.826 18.286 10.214V464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h132c6.627 0 12 5.373 12 12v4.486c0 4.917-2.987 9.369-7.569 11.152-13.702 5.331-26.396 11.537-38.05 18.585a12.138 12.138 0 0 1-6.28 1.777H54a6 6 0 0 0-6 6v340a6 6 0 0 0 6 6h340a6 6 0 0 0 6-6v-25.966c0-5.37 3.579-10.059 8.74-11.541z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSmile.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSmile.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSmile.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSmile.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSmile.js new file mode 100644 index 0000000000..041153f01d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSmile.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'smile', icon: [496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm84-143.4c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.6-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.2-8.4-25.3-7.1-33.8 3.1zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSnowflake.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSnowflake.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSnowflake.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSnowflake.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSnowflake.js new file mode 100644 index 0000000000..915eea229c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSnowflake.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'snowflake', icon: [448, 512, [], "f2dc", "M438.237 355.927l-66.574-38.54 59.448-10.327c5.846-1.375 10.609-5.183 13.458-10.13 2.48-4.307 3.506-9.478 2.524-14.651-2.11-11.115-12.686-18.039-23.621-15.467l-85.423 31.115L255.914 256l82.136-41.926 85.423 31.115c10.936 2.572 21.512-4.352 23.621-15.467 2.111-11.115-5.046-22.209-15.981-24.781l-59.448-10.327 66.573-38.54c9.54-5.523 12.615-18.092 6.867-28.074-5.748-9.982-18.14-13.596-27.68-8.074l-66.574 38.54 20.805-56.787c3.246-10.782-2.758-22.542-13.413-26.268-10.654-3.725-21.922 1.997-25.168 12.779l-15.838 89.735-72.423 41.926V136l69.585-58.621c7.689-8.21 6.997-20.856-1.548-28.245-8.545-7.391-21.705-6.723-29.394 1.486l-38.644 46.46V20c0-11.046-9.318-20-20.813-20s-20.813 8.954-20.813 20v77.08l-38.644-46.46c-7.689-8.21-20.849-8.876-29.394-1.486-8.544 7.389-9.236 20.035-1.547 28.245L203.187 136v83.853l-72.423-41.926-15.838-89.736c-3.247-10.782-14.515-16.504-25.169-12.779-10.656 3.725-16.659 15.486-13.413 26.268l20.805 56.787-66.573-38.54c-9.54-5.523-21.933-1.908-27.68 8.074s-2.673 22.551 6.867 28.074l66.574 38.54-59.449 10.328C5.953 207.515-1.202 218.609.907 229.724c2.11 11.114 12.686 18.038 23.622 15.466l85.422-31.115L192.086 256l-82.136 41.926-85.423-31.115c-10.936-2.572-21.511 4.352-23.622 15.466-2.109 11.113 5.046 22.209 15.981 24.781l59.449 10.328-66.574 38.54C.223 361.449-2.852 374.018 2.896 384s18.14 13.597 27.68 8.074l66.574-38.54-20.805 56.786c-1.735 5.764-.828 11.805 2.02 16.751 2.48 4.307 6.433 7.784 11.392 9.517 10.655 3.725 21.923-1.997 25.169-12.779l15.838-89.736 72.423-41.926V376l-69.585 58.621c-7.69 8.21-6.997 20.855 1.547 28.245 8.544 7.388 21.705 6.723 29.394-1.487l38.644-46.46V492c0 11.046 9.318 20 20.813 20s20.813-8.954 20.813-20v-77.081l38.644 46.46c4.111 4.389 9.782 6.621 15.478 6.621 4.96 0 9.939-1.694 13.916-5.134 8.545-7.39 9.237-20.035 1.548-28.245L244.813 376v-83.853l72.423 41.926 15.838 89.736c3.246 10.782 14.514 16.504 25.168 12.779 10.653-3.726 16.659-15.487 13.412-26.268l-20.805-56.787 66.574 38.54c9.54 5.523 21.933 1.908 27.68-8.074 5.749-9.981 2.675-22.55-6.866-28.072z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSquare.js new file mode 100644 index 0000000000..bd7c8d0273 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'square', icon: [448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h340c3.3 0 6 2.7 6 6v340c0 3.3-2.7 6-6 6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStar.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStar.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStar.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStar.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStar.js new file mode 100644 index 0000000000..e61f6c0a13 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStar.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'star', icon: [576, 512, [], "f005", "M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStarHalf.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStarHalf.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStarHalf.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStarHalf.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStarHalf.js new file mode 100644 index 0000000000..14c3d4f15d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStarHalf.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'star-half', icon: [576, 512, [], "f089", "M288 385.3l-124.3 65.4 23.7-138.4-100.6-98 139-20.2 62.2-126V0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6v-54.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStickyNote.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStickyNote.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStickyNote.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStickyNote.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStickyNote.js new file mode 100644 index 0000000000..93b99d1f81 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStickyNote.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'sticky-note', icon: [448, 512, [], "f249", "M448 348.106V80c0-26.51-21.49-48-48-48H48C21.49 32 0 53.49 0 80v351.988c0 26.51 21.49 48 48 48h268.118a48 48 0 0 0 33.941-14.059l83.882-83.882A48 48 0 0 0 448 348.106zm-128 80v-76.118h76.118L320 428.106zM400 80v223.988H296c-13.255 0-24 10.745-24 24v104H48V80h352z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStopCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStopCircle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStopCircle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStopCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStopCircle.js new file mode 100644 index 0000000000..9d31d36883 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faStopCircle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'stop-circle', icon: [512, 512, [], "f28d", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm296-80v160c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSun.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSun.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSun.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSun.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSun.js new file mode 100644 index 0000000000..dd298ebcb9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faSun.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'sun', icon: [512, 512, [], "f185", "M220.116 487.936l-20.213-49.425a3.992 3.992 0 0 0-5.808-1.886l-45.404 28.104c-29.466 18.24-66.295-8.519-58.054-42.179l12.699-51.865a3.993 3.993 0 0 0-3.59-4.941l-53.251-3.951c-34.554-2.562-48.632-45.855-22.174-68.247L65.08 259.05a3.992 3.992 0 0 0 0-6.106l-40.76-34.497c-26.45-22.384-12.39-65.682 22.174-68.246l53.251-3.951a3.993 3.993 0 0 0 3.59-4.941L90.637 89.443c-8.239-33.656 28.581-60.42 58.054-42.179l45.403 28.104a3.993 3.993 0 0 0 5.808-1.887l20.213-49.425c13.116-32.071 58.638-32.081 71.758 0l20.212 49.424a3.994 3.994 0 0 0 5.809 1.887l45.403-28.104c29.464-18.236 66.297 8.513 58.054 42.179l-12.699 51.865a3.995 3.995 0 0 0 3.59 4.941l53.251 3.951c34.553 2.563 48.633 45.854 22.175 68.246l-40.76 34.497a3.993 3.993 0 0 0 0 6.107l40.76 34.496c26.511 22.441 12.322 65.689-22.175 68.247l-53.251 3.951a3.993 3.993 0 0 0-3.589 4.942l12.698 51.864c8.241 33.658-28.583 60.421-58.054 42.18l-45.403-28.104a3.994 3.994 0 0 0-5.809 1.887l-20.212 49.424c-13.159 32.178-58.675 31.993-71.757 0zm16.814-64.568l19.064 46.616 19.064-46.615c10.308-25.2 40.778-35.066 63.892-20.759l42.822 26.507-11.976-48.919c-6.475-26.444 12.38-52.339 39.487-54.349l50.226-3.726-38.444-32.536c-20.782-17.591-20.747-49.621.001-67.18l38.442-32.536-50.225-3.727c-27.151-2.015-45.95-27.948-39.488-54.349l11.978-48.919-42.823 26.507c-23.151 14.327-53.603 4.4-63.892-20.76l-19.064-46.615-19.064 46.617c-10.305 25.198-40.778 35.066-63.891 20.76l-42.823-26.508 11.977 48.918c6.474 26.446-12.381 52.338-39.488 54.35l-50.224 3.726 38.443 32.537c20.782 17.588 20.747 49.619 0 67.178L52.48 322.123l50.226 3.726c27.151 2.014 45.95 27.947 39.487 54.349l-11.977 48.919 42.823-26.507c23.188-14.355 53.622-4.352 63.891 20.758zM256 384c-70.58 0-128-57.421-128-128 0-70.58 57.42-128 128-128 70.579 0 128 57.42 128 128 0 70.579-57.421 128-128 128zm0-208c-44.112 0-80 35.888-80 80s35.888 80 80 80 80-35.888 80-80-35.888-80-80-80z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faThumbsDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faThumbsDown.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faThumbsDown.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faThumbsDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faThumbsDown.js new file mode 100644 index 0000000000..51cab3d3e2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faThumbsDown.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'thumbs-down', icon: [512, 512, [], "f165", "M466.27 225.31c4.674-22.647.864-44.538-8.99-62.99 2.958-23.868-4.021-48.565-17.34-66.99C438.986 39.423 404.117 0 327 0c-7 0-15 .01-22.22.01C201.195.01 168.997 40 128 40h-10.845c-5.64-4.975-13.042-8-21.155-8H32C14.327 32 0 46.327 0 64v240c0 17.673 14.327 32 32 32h64c11.842 0 22.175-6.438 27.708-16h7.052c19.146 16.953 46.013 60.653 68.76 83.4 13.667 13.667 10.153 108.6 71.76 108.6 57.58 0 95.27-31.936 95.27-104.73 0-18.41-3.93-33.73-8.85-46.54h36.48c48.602 0 85.82-41.565 85.82-85.58 0-19.15-4.96-34.99-13.73-49.84zM64 296c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm330.18 16.73H290.19c0 37.82 28.36 55.37 28.36 94.54 0 23.75 0 56.73-47.27 56.73-18.91-18.91-9.46-66.18-37.82-94.54C206.9 342.89 167.28 272 138.92 272H128V85.83c53.611 0 100.001-37.82 171.64-37.82h37.82c35.512 0 60.82 17.12 53.12 65.9 15.2 8.16 26.5 36.44 13.94 57.57 21.581 20.384 18.699 51.065 5.21 65.62 9.45 0 22.36 18.91 22.27 37.81-.09 18.91-16.71 37.82-37.82 37.82z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faThumbsUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faThumbsUp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faThumbsUp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faThumbsUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faThumbsUp.js new file mode 100644 index 0000000000..f06cdb52cc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faThumbsUp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'thumbs-up', icon: [512, 512, [], "f164", "M466.27 286.69C475.04 271.84 480 256 480 236.85c0-44.015-37.218-85.58-85.82-85.58H357.7c4.92-12.81 8.85-28.13 8.85-46.54C366.55 31.936 328.86 0 271.28 0c-61.607 0-58.093 94.933-71.76 108.6-22.747 22.747-49.615 66.447-68.76 83.4H32c-17.673 0-32 14.327-32 32v240c0 17.673 14.327 32 32 32h64c14.893 0 27.408-10.174 30.978-23.95 44.509 1.001 75.06 39.94 177.802 39.94 7.22 0 15.22.01 22.22.01 77.117 0 111.986-39.423 112.94-95.33 13.319-18.425 20.299-43.122 17.34-66.99 9.854-18.452 13.664-40.343 8.99-62.99zm-61.75 53.83c12.56 21.13 1.26 49.41-13.94 57.57 7.7 48.78-17.608 65.9-53.12 65.9h-37.82c-71.639 0-118.029-37.82-171.64-37.82V240h10.92c28.36 0 67.98-70.89 94.54-97.46 28.36-28.36 18.91-75.63 37.82-94.54 47.27 0 47.27 32.98 47.27 56.73 0 39.17-28.36 56.72-28.36 94.54h103.99c21.11 0 37.73 18.91 37.82 37.82.09 18.9-12.82 37.81-22.27 37.81 13.489 14.555 16.371 45.236-5.21 65.62zM88 432c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faTimesCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faTimesCircle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faTimesCircle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faTimesCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faTimesCircle.js new file mode 100644 index 0000000000..a1b53a588b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faTimesCircle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'times-circle', icon: [512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm101.8-262.2L295.6 256l62.2 62.2c4.7 4.7 4.7 12.3 0 17l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L256 295.6l-62.2 62.2c-4.7 4.7-12.3 4.7-17 0l-22.6-22.6c-4.7-4.7-4.7-12.3 0-17l62.2-62.2-62.2-62.2c-4.7-4.7-4.7-12.3 0-17l22.6-22.6c4.7-4.7 12.3-4.7 17 0l62.2 62.2 62.2-62.2c4.7-4.7 12.3-4.7 17 0l22.6 22.6c4.7 4.7 4.7 12.3 0 17z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faTrashAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faTrashAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faTrashAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faTrashAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faTrashAlt.js new file mode 100644 index 0000000000..cf25284924 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faTrashAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'trash-alt', icon: [448, 512, [], "f2ed", "M192 188v216c0 6.627-5.373 12-12 12h-24c-6.627 0-12-5.373-12-12V188c0-6.627 5.373-12 12-12h24c6.627 0 12 5.373 12 12zm100-12h-24c-6.627 0-12 5.373-12 12v216c0 6.627 5.373 12 12 12h24c6.627 0 12-5.373 12-12V188c0-6.627-5.373-12-12-12zm132-96c13.255 0 24 10.745 24 24v12c0 6.627-5.373 12-12 12h-20v336c0 26.51-21.49 48-48 48H80c-26.51 0-48-21.49-48-48V128H12c-6.627 0-12-5.373-12-12v-12c0-13.255 10.745-24 24-24h74.411l34.018-56.696A48 48 0 0 1 173.589 0h100.823a48 48 0 0 1 41.16 23.304L349.589 80H424zm-269.611 0h139.223L276.16 50.913A6 6 0 0 0 271.015 48h-94.028a6 6 0 0 0-5.145 2.913L154.389 80zM368 128H80v330a6 6 0 0 0 6 6h276a6 6 0 0 0 6-6V128z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faUser.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faUser.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faUser.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faUser.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faUser.js new file mode 100644 index 0000000000..cb2ae2000a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faUser.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'user', icon: [448, 512, [], "f007", "M313.6 304c-28.7 0-42.5 16-89.6 16-47.1 0-60.8-16-89.6-16C60.2 304 0 364.2 0 438.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-25.6c0-74.2-60.2-134.4-134.4-134.4zM400 464H48v-25.6c0-47.6 38.8-86.4 86.4-86.4 14.6 0 38.3 16 89.6 16 51.7 0 74.9-16 89.6-16 47.6 0 86.4 38.8 86.4 86.4V464zM224 288c79.5 0 144-64.5 144-144S303.5 0 224 0 80 64.5 80 144s64.5 144 144 144zm0-240c52.9 0 96 43.1 96 96s-43.1 96-96 96-96-43.1-96-96 43.1-96 96-96z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faUserCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faUserCircle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faUserCircle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faUserCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faUserCircle.js new file mode 100644 index 0000000000..06b3afce4b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faUserCircle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'user-circle', icon: [496, 512, [], "f2bd", "M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowClose.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowClose.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowClose.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowClose.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowClose.js new file mode 100644 index 0000000000..9c3817737c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowClose.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'window-close', icon: [512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v340zM356.5 194.6L295.1 256l61.4 61.4c4.6 4.6 4.6 12.1 0 16.8l-22.3 22.3c-4.6 4.6-12.1 4.6-16.8 0L256 295.1l-61.4 61.4c-4.6 4.6-12.1 4.6-16.8 0l-22.3-22.3c-4.6-4.6-4.6-12.1 0-16.8l61.4-61.4-61.4-61.4c-4.6-4.6-4.6-12.1 0-16.8l22.3-22.3c4.6-4.6 12.1-4.6 16.8 0l61.4 61.4 61.4-61.4c4.6-4.6 12.1-4.6 16.8 0l22.3 22.3c4.7 4.6 4.7 12.1 0 16.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowMaximize.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowMaximize.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowMaximize.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowMaximize.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowMaximize.js new file mode 100644 index 0000000000..795fa9190b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowMaximize.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'window-maximize', icon: [512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V192h416v234z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowMinimize.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowMinimize.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowMinimize.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowMinimize.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowMinimize.js new file mode 100644 index 0000000000..7978f89e09 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowMinimize.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'window-minimize', icon: [512, 512, [], "f2d1", "M480 480H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h448c17.7 0 32 14.3 32 32s-14.3 32-32 32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowRestore.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowRestore.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowRestore.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowRestore.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowRestore.js new file mode 100644 index 0000000000..eb3d054c4e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/faWindowRestore.js @@ -0,0 +1 @@ +module.exports = { prefix: 'far', iconName: 'window-restore', icon: [512, 512, [], "f2d2", "M464 0H144c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-96 464H48V256h320v208zm96-96h-48V144c0-26.5-21.5-48-48-48H144V48h320v320z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/index.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/index.d.ts new file mode 100644 index 0000000000..fa96f2e496 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/index.d.ts @@ -0,0 +1,123 @@ +import { IconDefinition, IconLookup, IconName, IconPrefix, IconPack } from '@fortawesome/fontawesome-common-types'; +export { IconDefinition, IconLookup, IconName, IconPrefix, IconPack } from '@fortawesome/fontawesome-common-types'; +declare const pack: IconPack; +export default pack; +export const faAddressBook: IconDefinition; +export const faAddressCard: IconDefinition; +export const faArrowAltCircleDown: IconDefinition; +export const faArrowAltCircleLeft: IconDefinition; +export const faArrowAltCircleRight: IconDefinition; +export const faArrowAltCircleUp: IconDefinition; +export const faBell: IconDefinition; +export const faBellSlash: IconDefinition; +export const faBookmark: IconDefinition; +export const faBuilding: IconDefinition; +export const faCalendar: IconDefinition; +export const faCalendarAlt: IconDefinition; +export const faCalendarCheck: IconDefinition; +export const faCalendarMinus: IconDefinition; +export const faCalendarPlus: IconDefinition; +export const faCalendarTimes: IconDefinition; +export const faCaretSquareDown: IconDefinition; +export const faCaretSquareLeft: IconDefinition; +export const faCaretSquareRight: IconDefinition; +export const faCaretSquareUp: IconDefinition; +export const faChartBar: IconDefinition; +export const faCheckCircle: IconDefinition; +export const faCheckSquare: IconDefinition; +export const faCircle: IconDefinition; +export const faClipboard: IconDefinition; +export const faClock: IconDefinition; +export const faClone: IconDefinition; +export const faClosedCaptioning: IconDefinition; +export const faComment: IconDefinition; +export const faCommentAlt: IconDefinition; +export const faCommentDots: IconDefinition; +export const faComments: IconDefinition; +export const faCompass: IconDefinition; +export const faCopy: IconDefinition; +export const faCopyright: IconDefinition; +export const faCreditCard: IconDefinition; +export const faDotCircle: IconDefinition; +export const faEdit: IconDefinition; +export const faEnvelope: IconDefinition; +export const faEnvelopeOpen: IconDefinition; +export const faEye: IconDefinition; +export const faEyeSlash: IconDefinition; +export const faFile: IconDefinition; +export const faFileAlt: IconDefinition; +export const faFileArchive: IconDefinition; +export const faFileAudio: IconDefinition; +export const faFileCode: IconDefinition; +export const faFileExcel: IconDefinition; +export const faFileImage: IconDefinition; +export const faFilePdf: IconDefinition; +export const faFilePowerpoint: IconDefinition; +export const faFileVideo: IconDefinition; +export const faFileWord: IconDefinition; +export const faFlag: IconDefinition; +export const faFolder: IconDefinition; +export const faFolderOpen: IconDefinition; +export const faFontAwesomeLogoFull: IconDefinition; +export const faFrown: IconDefinition; +export const faFutbol: IconDefinition; +export const faGem: IconDefinition; +export const faHandLizard: IconDefinition; +export const faHandPaper: IconDefinition; +export const faHandPeace: IconDefinition; +export const faHandPointDown: IconDefinition; +export const faHandPointLeft: IconDefinition; +export const faHandPointRight: IconDefinition; +export const faHandPointUp: IconDefinition; +export const faHandPointer: IconDefinition; +export const faHandRock: IconDefinition; +export const faHandScissors: IconDefinition; +export const faHandSpock: IconDefinition; +export const faHandshake: IconDefinition; +export const faHdd: IconDefinition; +export const faHeart: IconDefinition; +export const faHospital: IconDefinition; +export const faHourglass: IconDefinition; +export const faIdBadge: IconDefinition; +export const faIdCard: IconDefinition; +export const faImage: IconDefinition; +export const faImages: IconDefinition; +export const faKeyboard: IconDefinition; +export const faLemon: IconDefinition; +export const faLifeRing: IconDefinition; +export const faLightbulb: IconDefinition; +export const faListAlt: IconDefinition; +export const faMap: IconDefinition; +export const faMeh: IconDefinition; +export const faMinusSquare: IconDefinition; +export const faMoneyBillAlt: IconDefinition; +export const faMoon: IconDefinition; +export const faNewspaper: IconDefinition; +export const faObjectGroup: IconDefinition; +export const faObjectUngroup: IconDefinition; +export const faPaperPlane: IconDefinition; +export const faPauseCircle: IconDefinition; +export const faPlayCircle: IconDefinition; +export const faPlusSquare: IconDefinition; +export const faQuestionCircle: IconDefinition; +export const faRegistered: IconDefinition; +export const faSave: IconDefinition; +export const faShareSquare: IconDefinition; +export const faSmile: IconDefinition; +export const faSnowflake: IconDefinition; +export const faSquare: IconDefinition; +export const faStar: IconDefinition; +export const faStarHalf: IconDefinition; +export const faStickyNote: IconDefinition; +export const faStopCircle: IconDefinition; +export const faSun: IconDefinition; +export const faThumbsDown: IconDefinition; +export const faThumbsUp: IconDefinition; +export const faTimesCircle: IconDefinition; +export const faTrashAlt: IconDefinition; +export const faUser: IconDefinition; +export const faUserCircle: IconDefinition; +export const faWindowClose: IconDefinition; +export const faWindowMaximize: IconDefinition; +export const faWindowMinimize: IconDefinition; +export const faWindowRestore: IconDefinition; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/index.es.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/index.es.js new file mode 100644 index 0000000000..4cb1842593 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/index.es.js @@ -0,0 +1,360 @@ +/*! + * Font Awesome Free 5.0.13 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +var _WINDOW = {}; +try { + if (typeof window !== 'undefined') _WINDOW = window; + +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; + + + + + +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; + + + + + + + +var PRODUCTION = function () { + try { + return process.env.NODE_ENV === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + + + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var prefix = "far"; +var faAddressBook = { prefix: 'far', iconName: 'address-book', icon: [448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-68 304H48V48h320v416zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"] }; +var faAddressCard = { prefix: 'far', iconName: 'address-card', icon: [576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H48V80h480v352zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2zM360 320h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8z"] }; +var faArrowAltCircleDown = { prefix: 'far', iconName: 'arrow-alt-circle-down', icon: [512, 512, [], "f358", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm-32-316v116h-67c-10.7 0-16 12.9-8.5 20.5l99 99c4.7 4.7 12.3 4.7 17 0l99-99c7.6-7.6 2.2-20.5-8.5-20.5h-67V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12z"] }; +var faArrowAltCircleLeft = { prefix: 'far', iconName: 'arrow-alt-circle-left', icon: [512, 512, [], "f359", "M8 256c0 137 111 248 248 248s248-111 248-248S393 8 256 8 8 119 8 256zm448 0c0 110.5-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56s200 89.5 200 200zm-72-20v40c0 6.6-5.4 12-12 12H256v67c0 10.7-12.9 16-20.5 8.5l-99-99c-4.7-4.7-4.7-12.3 0-17l99-99c7.6-7.6 20.5-2.2 20.5 8.5v67h116c6.6 0 12 5.4 12 12z"] }; +var faArrowAltCircleRight = { prefix: 'far', iconName: 'arrow-alt-circle-right', icon: [512, 512, [], "f35a", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z"] }; +var faArrowAltCircleUp = { prefix: 'far', iconName: 'arrow-alt-circle-up', icon: [512, 512, [], "f35b", "M256 504c137 0 248-111 248-248S393 8 256 8 8 119 8 256s111 248 248 248zm0-448c110.5 0 200 89.5 200 200s-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56zm20 328h-40c-6.6 0-12-5.4-12-12V256h-67c-10.7 0-16-12.9-8.5-20.5l99-99c4.7-4.7 12.3-4.7 17 0l99 99c7.6 7.6 2.2 20.5-8.5 20.5h-67v116c0 6.6-5.4 12-12 12z"] }; +var faBell = { prefix: 'far', iconName: 'bell', icon: [448, 512, [], "f0f3", "M425.403 330.939c-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.843 31.843 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095C118.101 62.783 57.143 131.831 57.143 214.857c0 81.933-17.551 99.292-34.543 116.078C-25.496 378.441 9.726 448 66.919 448H160c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h93.08c57.19 0 92.415-69.583 44.323-117.061zM224 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm157.092-72H66.9c-16.762 0-25.135-20.39-13.334-32.191 28.585-28.585 51.577-55.724 51.577-152.952C105.143 149.319 158.462 96 224 96s118.857 53.319 118.857 118.857c0 97.65 23.221 124.574 51.568 152.952C406.278 379.661 397.783 400 381.092 400z"] }; +var faBellSlash = { prefix: 'far', iconName: 'bell-slash', icon: [576, 512, [], "f1f6", "M130.9 400c-16.762 0-25.135-20.39-13.334-32.191 25.226-25.226 46.094-49.338 50.649-121.48l-46.777-41.274a168.48 168.48 0 0 0-.296 9.802c0 81.933-17.551 99.292-34.543 116.078C38.504 378.441 73.726 448 130.919 448H224c0 35.346 28.654 64 64 64s64-28.654 64-64h44.777l-54.4-48H130.9zM288 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm283.867.553l-67.931-59.571c13.104-24.118 11.524-56.318-14.532-82.042-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.848 31.848 0 0 0 320 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095c-41.471 6.618-77.891 28.571-103.249 59.841L36.459 3.037c-5.058-4.436-12.777-3.956-17.24 1.071L3.056 22.313C-1.407 27.34-.925 35.012 4.134 39.447l535.408 469.516c5.058 4.436 12.777 3.956 17.24-1.071l16.163-18.205c4.462-5.027 3.98-12.699-1.078-17.134zM288 96c65.538 0 118.857 53.319 118.857 118.857 0 97.65 23.221 124.574 51.568 152.952 2.908 2.908 4.573 6.328 5.209 9.832L194.482 141.612C216.258 113.867 250.075 96 288 96z"] }; +var faBookmark = { prefix: 'far', iconName: 'bookmark', icon: [384, 512, [], "f02e", "M336 0H48C21.49 0 0 21.49 0 48v464l192-112 192 112V48c0-26.51-21.49-48-48-48zm0 428.43l-144-84-144 84V54a6 6 0 0 1 6-6h276c3.314 0 6 2.683 6 5.996V428.43z"] }; +var faBuilding = { prefix: 'far', iconName: 'building', icon: [448, 512, [], "f1ad", "M128 148v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12zm140 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-128 96h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm128 0h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-76 84v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm76 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm180 124v36H0v-36c0-6.6 5.4-12 12-12h19.5V24c0-13.3 10.7-24 24-24h337c13.3 0 24 10.7 24 24v440H436c6.6 0 12 5.4 12 12zM79.5 463H192v-67c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v67h112.5V49L80 48l-.5 415z"] }; +var faCalendar = { prefix: 'far', iconName: 'calendar', icon: [448, 512, [], "f133", "M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z"] }; +var faCalendarAlt = { prefix: 'far', iconName: 'calendar-alt', icon: [448, 512, [], "f073", "M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCalendarCheck = { prefix: 'far', iconName: 'calendar-check', icon: [448, 512, [], "f274", "M400 64h-48V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H160V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V160h352v298a6 6 0 0 1-6 6zm-52.849-200.65L198.842 404.519c-4.705 4.667-12.303 4.637-16.971-.068l-75.091-75.699c-4.667-4.705-4.637-12.303.068-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l44.104 44.461 111.072-110.181c4.705-4.667 12.303-4.637 16.971.068l22.536 22.718c4.667 4.705 4.636 12.303-.069 16.97z"] }; +var faCalendarMinus = { prefix: 'far', iconName: 'calendar-minus', icon: [448, 512, [], "f272", "M124 328c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H124zm324-216v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCalendarPlus = { prefix: 'far', iconName: 'calendar-plus', icon: [448, 512, [], "f271", "M336 292v24c0 6.6-5.4 12-12 12h-76v76c0 6.6-5.4 12-12 12h-24c-6.6 0-12-5.4-12-12v-76h-76c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h76v-76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v76h76c6.6 0 12 5.4 12 12zm112-180v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCalendarTimes = { prefix: 'far', iconName: 'calendar-times', icon: [448, 512, [], "f273", "M311.7 374.7l-17 17c-4.7 4.7-12.3 4.7-17 0L224 337.9l-53.7 53.7c-4.7 4.7-12.3 4.7-17 0l-17-17c-4.7-4.7-4.7-12.3 0-17l53.7-53.7-53.7-53.7c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0l53.7 53.7 53.7-53.7c4.7-4.7 12.3-4.7 17 0l17 17c4.7 4.7 4.7 12.3 0 17L257.9 304l53.7 53.7c4.8 4.7 4.8 12.3.1 17zM448 112v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCaretSquareDown = { prefix: 'far', iconName: 'caret-square-down', icon: [448, 512, [], "f150", "M125.1 208h197.8c10.7 0 16.1 13 8.5 20.5l-98.9 98.3c-4.7 4.7-12.2 4.7-16.9 0l-98.9-98.3c-7.7-7.5-2.3-20.5 8.4-20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCaretSquareLeft = { prefix: 'far', iconName: 'caret-square-left', icon: [448, 512, [], "f191", "M272 157.1v197.8c0 10.7-13 16.1-20.5 8.5l-98.3-98.9c-4.7-4.7-4.7-12.2 0-16.9l98.3-98.9c7.5-7.7 20.5-2.3 20.5 8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCaretSquareRight = { prefix: 'far', iconName: 'caret-square-right', icon: [448, 512, [], "f152", "M176 354.9V157.1c0-10.7 13-16.1 20.5-8.5l98.3 98.9c4.7 4.7 4.7 12.2 0 16.9l-98.3 98.9c-7.5 7.7-20.5 2.3-20.5-8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCaretSquareUp = { prefix: 'far', iconName: 'caret-square-up', icon: [448, 512, [], "f151", "M322.9 304H125.1c-10.7 0-16.1-13-8.5-20.5l98.9-98.3c4.7-4.7 12.2-4.7 16.9 0l98.9 98.3c7.7 7.5 2.3 20.5-8.4 20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faChartBar = { prefix: 'far', iconName: 'chart-bar', icon: [512, 512, [], "f080", "M500 400c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v324h452zm-356-60v-72c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V140c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V204c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V108c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12z"] }; +var faCheckCircle = { prefix: 'far', iconName: 'check-circle', icon: [512, 512, [], "f058", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"] }; +var faCheckSquare = { prefix: 'far', iconName: 'check-square', icon: [448, 512, [], "f14a", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm0 400H48V80h352v352zm-35.864-241.724L191.547 361.48c-4.705 4.667-12.303 4.637-16.97-.068l-90.781-91.516c-4.667-4.705-4.637-12.303.069-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l59.792 60.277 141.352-140.216c4.705-4.667 12.303-4.637 16.97.068l22.536 22.718c4.667 4.706 4.637 12.304-.068 16.971z"] }; +var faCircle = { prefix: 'far', iconName: 'circle', icon: [512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z"] }; +var faClipboard = { prefix: 'far', iconName: 'clipboard', icon: [384, 512, [], "f328", "M336 64h-80c0-35.29-28.71-64-64-64s-64 28.71-64 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h42v36c0 6.627 5.373 12 12 12h168c6.627 0 12-5.373 12-12v-36h42a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zM192 40c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24"] }; +var faClock = { prefix: 'far', iconName: 'clock', icon: [512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"] }; +var faClone = { prefix: 'far', iconName: 'clone', icon: [512, 512, [], "f24d", "M464 0H144c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h320c26.51 0 48-21.49 48-48v-48h48c26.51 0 48-21.49 48-48V48c0-26.51-21.49-48-48-48zM362 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h42v224c0 26.51 21.49 48 48 48h224v42a6 6 0 0 1-6 6zm96-96H150a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h308a6 6 0 0 1 6 6v308a6 6 0 0 1-6 6z"] }; +var faClosedCaptioning = { prefix: 'far', iconName: 'closed-captioning', icon: [512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 336H54c-3.3 0-6-2.7-6-6V118c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v276c0 3.3-2.7 6-6 6zm-211.1-85.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7zm190.4 0c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.9-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 220.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7z"] }; +var faComment = { prefix: 'far', iconName: 'comment', icon: [512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"] }; +var faCommentAlt = { prefix: 'far', iconName: 'comment-alt', icon: [512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 7.1 5.8 12 12 12 2.4 0 4.9-.7 7.1-2.4L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm16 352c0 8.8-7.2 16-16 16H288l-12.8 9.6L208 428v-60H64c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h384c8.8 0 16 7.2 16 16v288z"] }; +var faCommentDots = { prefix: 'far', iconName: 'comment-dots', icon: [512, 512, [], "f4ad", "M144 208c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"] }; +var faComments = { prefix: 'far', iconName: 'comments', icon: [576, 512, [], "f086", "M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"] }; +var faCompass = { prefix: 'far', iconName: 'compass', icon: [512, 512, [], "f14e", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm91.326-312.131l-33.359 137.779a24.005 24.005 0 0 1-6.772 11.729l-102.64 97.779c-17.104 16.293-45.56.434-39.88-23.024l33.359-137.779a23.997 23.997 0 0 1 6.772-11.729l102.642-97.779c17.285-16.47 45.494-.175 39.878 23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; +var faCopy = { prefix: 'far', iconName: 'copy', icon: [448, 512, [], "f0c5", "M433.941 65.941l-51.882-51.882A48 48 0 0 0 348.118 0H176c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48v-48h80c26.51 0 48-21.49 48-48V99.882a48 48 0 0 0-14.059-33.941zM266 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h74v224c0 26.51 21.49 48 48 48h96v42a6 6 0 0 1-6 6zm128-96H182a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h106v88c0 13.255 10.745 24 24 24h88v202a6 6 0 0 1-6 6zm6-256h-64V48h9.632c1.591 0 3.117.632 4.243 1.757l48.368 48.368a6 6 0 0 1 1.757 4.243V112z"] }; +var faCopyright = { prefix: 'far', iconName: 'copyright', icon: [512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm107.351-101.064c-9.614 9.712-45.53 41.396-104.065 41.396-82.43 0-140.484-61.425-140.484-141.567 0-79.152 60.275-139.401 139.762-139.401 55.531 0 88.738 26.62 97.593 34.779a11.965 11.965 0 0 1 1.936 15.322l-18.155 28.113c-3.841 5.95-11.966 7.282-17.499 2.921-8.595-6.776-31.814-22.538-61.708-22.538-48.303 0-77.916 35.33-77.916 80.082 0 41.589 26.888 83.692 78.277 83.692 32.657 0 56.843-19.039 65.726-27.225 5.27-4.857 13.596-4.039 17.82 1.738l19.865 27.17a11.947 11.947 0 0 1-1.152 15.518z"] }; +var faCreditCard = { prefix: 'far', iconName: 'credit-card', icon: [576, 512, [], "f09d", "M527.9 32H48.1C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48.1 48h479.8c26.6 0 48.1-21.5 48.1-48V80c0-26.5-21.5-48-48.1-48zM54.1 80h467.8c3.3 0 6 2.7 6 6v42H48.1V86c0-3.3 2.7-6 6-6zm467.8 352H54.1c-3.3 0-6-2.7-6-6V256h479.8v170c0 3.3-2.7 6-6 6zM192 332v40c0 6.6-5.4 12-12 12h-72c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12zm192 0v40c0 6.6-5.4 12-12 12H236c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12z"] }; +var faDotCircle = { prefix: 'far', iconName: 'dot-circle', icon: [512, 512, [], "f192", "M256 56c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m0-48C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 168c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80z"] }; +var faEdit = { prefix: 'far', iconName: 'edit', icon: [576, 512, [], "f044", "M402.3 344.9l32-32c5-5 13.7-1.5 13.7 5.7V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h273.5c7.1 0 10.7 8.6 5.7 13.7l-32 32c-1.5 1.5-3.5 2.3-5.7 2.3H48v352h352V350.5c0-2.1.8-4.1 2.3-5.6zm156.6-201.8L296.3 405.7l-90.4 10c-26.2 2.9-48.5-19.2-45.6-45.6l10-90.4L432.9 17.1c22.9-22.9 59.9-22.9 82.7 0l43.2 43.2c22.9 22.9 22.9 60 .1 82.8zM460.1 174L402 115.9 216.2 301.8l-7.3 65.3 65.3-7.3L460.1 174zm64.8-79.7l-43.2-43.2c-4.1-4.1-10.8-4.1-14.8 0L436 82l58.1 58.1 30.9-30.9c4-4.2 4-10.8-.1-14.9z"] }; +var faEnvelope = { prefix: 'far', iconName: 'envelope', icon: [512, 512, [], "f0e0", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z"] }; +var faEnvelopeOpen = { prefix: 'far', iconName: 'envelope-open', icon: [512, 512, [], "f2b6", "M494.586 164.516c-4.697-3.883-111.723-89.95-135.251-108.657C337.231 38.191 299.437 0 256 0c-43.205 0-80.636 37.717-103.335 55.859-24.463 19.45-131.07 105.195-135.15 108.549A48.004 48.004 0 0 0 0 201.485V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V201.509a48 48 0 0 0-17.414-36.993zM464 458a6 6 0 0 1-6 6H54a6 6 0 0 1-6-6V204.347c0-1.813.816-3.526 2.226-4.665 15.87-12.814 108.793-87.554 132.364-106.293C200.755 78.88 232.398 48 256 48c23.693 0 55.857 31.369 73.41 45.389 23.573 18.741 116.503 93.493 132.366 106.316a5.99 5.99 0 0 1 2.224 4.663V458zm-31.991-187.704c4.249 5.159 3.465 12.795-1.745 16.981-28.975 23.283-59.274 47.597-70.929 56.863C336.636 362.283 299.205 400 256 400c-43.452 0-81.287-38.237-103.335-55.86-11.279-8.967-41.744-33.413-70.927-56.865-5.21-4.187-5.993-11.822-1.745-16.981l15.258-18.528c4.178-5.073 11.657-5.843 16.779-1.726 28.618 23.001 58.566 47.035 70.56 56.571C200.143 320.631 232.307 352 256 352c23.602 0 55.246-30.88 73.41-45.389 11.994-9.535 41.944-33.57 70.563-56.568 5.122-4.116 12.601-3.346 16.778 1.727l15.258 18.526z"] }; +var faEye = { prefix: 'far', iconName: 'eye', icon: [576, 512, [], "f06e", "M569.354 231.631C512.97 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-102.556 0-192.091-54.701-240-136 44.157-74.933 123.677-127.27 216.162-135.007C273.958 131.078 280 144.83 280 160c0 30.928-25.072 56-56 56s-56-25.072-56-56l.001-.042C157.794 179.043 152 200.844 152 224c0 75.111 60.889 136 136 136s136-60.889 136-136c0-31.031-10.4-59.629-27.895-82.515C451.704 164.638 498.009 205.106 528 256c-47.908 81.299-137.444 136-240 136z"] }; +var faEyeSlash = { prefix: 'far', iconName: 'eye-slash', icon: [576, 512, [], "f070", "M272.702 359.139c-80.483-9.011-136.212-86.886-116.93-167.042l116.93 167.042zM288 392c-102.556 0-192.092-54.701-240-136 21.755-36.917 52.1-68.342 88.344-91.658l-27.541-39.343C67.001 152.234 31.921 188.741 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.004 376.006 168.14 440 288 440a332.89 332.89 0 0 0 39.648-2.367l-32.021-45.744A284.16 284.16 0 0 1 288 392zm281.354-111.631c-33.232 56.394-83.421 101.742-143.554 129.492l48.116 68.74c3.801 5.429 2.48 12.912-2.949 16.712L450.23 509.83c-5.429 3.801-12.912 2.48-16.712-2.949L102.084 33.399c-3.801-5.429-2.48-12.912 2.949-16.712L125.77 2.17c5.429-3.801 12.912-2.48 16.712 2.949l55.526 79.325C226.612 76.343 256.808 72 288 72c119.86 0 224.996 63.994 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM528 256c-44.157-74.933-123.677-127.27-216.162-135.007C302.042 131.078 296 144.83 296 160c0 30.928 25.072 56 56 56s56-25.072 56-56l-.001-.042c30.632 57.277 16.739 130.26-36.928 171.719l26.695 38.135C452.626 346.551 498.308 306.386 528 256z"] }; +var faFile = { prefix: 'far', iconName: 'file', icon: [384, 512, [], "f15b", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48z"] }; +var faFileAlt = { prefix: 'far', iconName: 'file-alt', icon: [384, 512, [], "f15c", "M288 248v28c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-28c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm-12 72H108c-6.6 0-12 5.4-12 12v28c0 6.6 5.4 12 12 12h168c6.6 0 12-5.4 12-12v-28c0-6.6-5.4-12-12-12zm108-188.1V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48C0 21.5 21.5 0 48 0h204.1C264.8 0 277 5.1 286 14.1L369.9 98c9 8.9 14.1 21.2 14.1 33.9zm-128-80V128h76.1L256 51.9zM336 464V176H232c-13.3 0-24-10.7-24-24V48H48v416h288z"] }; +var faFileArchive = { prefix: 'far', iconName: 'file-archive', icon: [384, 512, [], "f1c6", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM256 51.882L332.118 128H256V51.882zM336 464H48V48h79.714v16h32V48H208v104c0 13.255 10.745 24 24 24h104v288zM192.27 96h-32V64h32v32zm-32 0v32h-32V96h32zm0 64v32h-32v-32h32zm32 0h-32v-32h32v32zm1.909 105.678A12 12 0 0 0 182.406 256H160.27v-32h-32v32l-19.69 97.106C101.989 385.611 126.834 416 160 416c33.052 0 57.871-30.192 51.476-62.62l-17.297-87.702zM160.27 390.073c-17.918 0-32.444-12.105-32.444-27.036 0-14.932 14.525-27.036 32.444-27.036s32.444 12.105 32.444 27.036c0 14.931-14.526 27.036-32.444 27.036zm32-166.073h-32v-32h32v32z"] }; +var faFileAudio = { prefix: 'far', iconName: 'file-audio', icon: [384, 512, [], "f1c7", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm144-76.024c0 10.691-12.926 16.045-20.485 8.485L136 360.486h-28c-6.627 0-12-5.373-12-12v-56c0-6.627 5.373-12 12-12h28l35.515-36.947c7.56-7.56 20.485-2.206 20.485 8.485v135.952zm41.201-47.13c9.051-9.297 9.06-24.133.001-33.439-22.149-22.752 12.235-56.246 34.395-33.481 27.198 27.94 27.212 72.444.001 100.401-21.793 22.386-56.947-10.315-34.397-33.481z"] }; +var faFileCode = { prefix: 'far', iconName: 'file-code', icon: [384, 512, [], "f1c9", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm101.677-115.115L116.854 320l32.822-28.885a8.793 8.793 0 0 0 .605-12.624l-17.403-18.564c-3.384-3.613-8.964-3.662-12.438-.401L62.78 313.58c-3.703 3.474-3.704 9.367.001 12.84l57.659 54.055a8.738 8.738 0 0 0 6.012 2.381 8.746 8.746 0 0 0 6.427-2.782l17.403-18.563a8.795 8.795 0 0 0-.605-12.626zm84.284-127.85l-24.401-7.084a8.796 8.796 0 0 0-10.905 5.998L144.04 408.061c-1.353 4.66 1.338 9.552 5.998 10.905l24.403 7.084c4.68 1.355 9.557-1.354 10.905-5.998l54.612-188.112c1.354-4.66-1.337-9.552-5.997-10.905zm87.258 92.545l-57.658-54.055c-3.526-3.307-9.099-3.165-12.439.401l-17.403 18.563a8.795 8.795 0 0 0 .605 12.625L267.146 320l-32.822 28.885a8.793 8.793 0 0 0-.605 12.624l17.403 18.564a8.797 8.797 0 0 0 12.439.401h-.001l57.66-54.055c3.703-3.473 3.703-9.366-.001-12.839z"] }; +var faFileExcel = { prefix: 'far', iconName: 'file-excel', icon: [384, 512, [], "f1c3", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm212-240h-28.8c-4.4 0-8.4 2.4-10.5 6.3-18 33.1-22.2 42.4-28.6 57.7-13.9-29.1-6.9-17.3-28.6-57.7-2.1-3.9-6.2-6.3-10.6-6.3H124c-9.3 0-15 10-10.4 18l46.3 78-46.3 78c-4.7 8 1.1 18 10.4 18h28.9c4.4 0 8.4-2.4 10.5-6.3 21.7-40 23-45 28.6-57.7 14.9 30.2 5.9 15.9 28.6 57.7 2.1 3.9 6.2 6.3 10.6 6.3H260c9.3 0 15-10 10.4-18L224 320c.7-1.1 30.3-50.5 46.3-78 4.7-8-1.1-18-10.3-18z"] }; +var faFileImage = { prefix: 'far', iconName: 'file-image', icon: [384, 512, [], "f1c5", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm32-48h224V288l-23.5-23.5c-4.7-4.7-12.3-4.7-17 0L176 352l-39.5-39.5c-4.7-4.7-12.3-4.7-17 0L80 352v64zm48-240c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z"] }; +var faFilePdf = { prefix: 'far', iconName: 'file-pdf', icon: [384, 512, [], "f1c1", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm250.2-143.7c-12.2-12-47-8.7-64.4-6.5-17.2-10.5-28.7-25-36.8-46.3 3.9-16.1 10.1-40.6 5.4-56-4.2-26.2-37.8-23.6-42.6-5.9-4.4 16.1-.4 38.5 7 67.1-10 23.9-24.9 56-35.4 74.4-20 10.3-47 26.2-51 46.2-3.3 15.8 26 55.2 76.1-31.2 22.4-7.4 46.8-16.5 68.4-20.1 18.9 10.2 41 17 55.8 17 25.5 0 28-28.2 17.5-38.7zm-198.1 77.8c5.1-13.7 24.5-29.5 30.4-35-19 30.3-30.4 35.7-30.4 35zm81.6-190.6c7.4 0 6.7 32.1 1.8 40.8-4.4-13.9-4.3-40.8-1.8-40.8zm-24.4 136.6c9.7-16.9 18-37 24.7-54.7 8.3 15.1 18.9 27.2 30.1 35.5-20.8 4.3-38.9 13.1-54.8 19.2zm131.6-5s-5 6-37.3-7.8c35.1-2.6 40.9 5.4 37.3 7.8z"] }; +var faFilePowerpoint = { prefix: 'far', iconName: 'file-powerpoint', icon: [384, 512, [], "f1c4", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm72-60V236c0-6.6 5.4-12 12-12h69.2c36.7 0 62.8 27 62.8 66.3 0 74.3-68.7 66.5-95.5 66.5V404c0 6.6-5.4 12-12 12H132c-6.6 0-12-5.4-12-12zm48.5-87.4h23c7.9 0 13.9-2.4 18.1-7.2 8.5-9.8 8.4-28.5.1-37.8-4.1-4.6-9.9-7-17.4-7h-23.9v52z"] }; +var faFileVideo = { prefix: 'far', iconName: 'file-video', icon: [384, 512, [], "f1c8", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm228.687-211.303L224 305.374V268c0-11.046-8.954-20-20-20H100c-11.046 0-20 8.954-20 20v104c0 11.046 8.954 20 20 20h104c11.046 0 20-8.954 20-20v-37.374l52.687 52.674C286.704 397.318 304 390.28 304 375.986V264.011c0-14.311-17.309-21.319-27.313-11.314z"] }; +var faFileWord = { prefix: 'far', iconName: 'file-word', icon: [384, 512, [], "f1c2", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm220.1-208c-5.7 0-10.6 4-11.7 9.5-20.6 97.7-20.4 95.4-21 103.5-.2-1.2-.4-2.6-.7-4.3-.8-5.1.3.2-23.6-99.5-1.3-5.4-6.1-9.2-11.7-9.2h-13.3c-5.5 0-10.3 3.8-11.7 9.1-24.4 99-24 96.2-24.8 103.7-.1-1.1-.2-2.5-.5-4.2-.7-5.2-14.1-73.3-19.1-99-1.1-5.6-6-9.7-11.8-9.7h-16.8c-7.8 0-13.5 7.3-11.7 14.8 8 32.6 26.7 109.5 33.2 136 1.3 5.4 6.1 9.1 11.7 9.1h25.2c5.5 0 10.3-3.7 11.6-9.1l17.9-71.4c1.5-6.2 2.5-12 3-17.3l2.9 17.3c.1.4 12.6 50.5 17.9 71.4 1.3 5.3 6.1 9.1 11.6 9.1h24.7c5.5 0 10.3-3.7 11.6-9.1 20.8-81.9 30.2-119 34.5-136 1.9-7.6-3.8-14.9-11.6-14.9h-15.8z"] }; +var faFlag = { prefix: 'far', iconName: 'flag', icon: [512, 512, [], "f024", "M336.174 80c-49.132 0-93.305-32-161.913-32-31.301 0-58.303 6.482-80.721 15.168a48.04 48.04 0 0 0 2.142-20.727C93.067 19.575 74.167 1.594 51.201.104 23.242-1.71 0 20.431 0 48c0 17.764 9.657 33.262 24 41.562V496c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-83.443C109.869 395.28 143.259 384 199.826 384c49.132 0 93.305 32 161.913 32 58.479 0 101.972-22.617 128.548-39.981C503.846 367.161 512 352.051 512 335.855V95.937c0-34.459-35.264-57.768-66.904-44.117C409.193 67.309 371.641 80 336.174 80zM464 336c-21.783 15.412-60.824 32-102.261 32-59.945 0-102.002-32-161.913-32-43.361 0-96.379 9.403-127.826 24V128c21.784-15.412 60.824-32 102.261-32 59.945 0 102.002 32 161.913 32 43.271 0 96.32-17.366 127.826-32v240z"] }; +var faFolder = { prefix: 'far', iconName: 'folder', icon: [512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48zm-6 272H54c-3.314 0-6-2.678-6-5.992V117.992A5.993 5.993 0 0 1 54 112h134.118l64 64H458a6 6 0 0 1 6 6v212a6 6 0 0 1-6 6z"] }; +var faFolderOpen = { prefix: 'far', iconName: 'folder-open', icon: [576, 512, [], "f07c", "M527.943 224H480v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h400a48.001 48.001 0 0 0 40.704-22.56l79.942-128c19.948-31.917-3.038-73.44-40.703-73.44zM54 112h134.118l64 64H426a6 6 0 0 1 6 6v42H152a48 48 0 0 0-41.098 23.202L48 351.449V117.993A5.993 5.993 0 0 1 54 112zm394 288H72l77.234-128H528l-80 128z"] }; +var faFontAwesomeLogoFull = { prefix: 'far', iconName: 'font-awesome-logo-full', icon: [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"] }; +var faFrown = { prefix: 'far', iconName: 'frown', icon: [496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 128c-40.2 0-78 17.7-103.8 48.6-8.5 10.2-7.1 25.3 3.1 33.8 10.2 8.5 25.3 7.1 33.8-3.1 16.6-19.9 41-31.4 66.9-31.4s50.3 11.4 66.9 31.4c4.8 5.7 11.6 8.6 18.5 8.6 5.4 0 10.9-1.8 15.4-5.6 10.2-8.5 11.5-23.6 3.1-33.8C326 321.7 288.2 304 248 304z"] }; +var faFutbol = { prefix: 'far', iconName: 'futbol', icon: [496, 512, [], "f1e3", "M483.8 179.4C449.8 74.6 352.6 8 248.1 8c-25.4 0-51.2 3.9-76.7 12.2C41.2 62.5-30.1 202.4 12.2 332.6 46.2 437.4 143.4 504 247.9 504c25.4 0 51.2-3.9 76.7-12.2 130.2-42.3 201.5-182.2 159.2-312.4zm-74.5 193.7l-52.2 6.4-43.7-60.9 24.4-75.2 71.1-22.1 38.9 36.4c-.2 30.7-7.4 61.1-21.7 89.2-4.7 9.3-10.7 17.8-16.8 26.2zm0-235.4l-10.4 53.1-70.7 22-64.2-46.5V92.5l47.4-26.2c39.2 13 73.4 38 97.9 71.4zM184.9 66.4L232 92.5v73.8l-64.2 46.5-70.6-22-10.1-52.5c24.3-33.4 57.9-58.6 97.8-71.9zM139 379.5L85.9 373c-14.4-20.1-37.3-59.6-37.8-115.3l39-36.4 71.1 22.2 24.3 74.3-43.5 61.7zm48.2 67l-22.4-48.1 43.6-61.7H287l44.3 61.7-22.4 48.1c-6.2 1.8-57.6 20.4-121.7 0z"] }; +var faGem = { prefix: 'far', iconName: 'gem', icon: [576, 512, [], "f3a5", "M464 0H112c-4 0-7.8 2-10 5.4L2 152.6c-2.9 4.4-2.6 10.2.7 14.2l276 340.8c4.8 5.9 13.8 5.9 18.6 0l276-340.8c3.3-4.1 3.6-9.8.7-14.2L474.1 5.4C471.8 2 468.1 0 464 0zm-19.3 48l63.3 96h-68.4l-51.7-96h56.8zm-202.1 0h90.7l51.7 96H191l51.6-96zm-111.3 0h56.8l-51.7 96H68l63.3-96zm-43 144h51.4L208 352 88.3 192zm102.9 0h193.6L288 435.3 191.2 192zM368 352l68.2-160h51.4L368 352z"] }; +var faHandLizard = { prefix: 'far', iconName: 'hand-lizard', icon: [576, 512, [], "f258", "M556.686 290.542L410.328 64.829C397.001 44.272 374.417 32 349.917 32H56C25.121 32 0 57.122 0 88v8c0 44.112 35.888 80 80 80h196.042l-18.333 48H144c-48.523 0-88 39.477-88 88 0 30.879 25.121 56 56 56h131.552c2.987 0 5.914.549 8.697 1.631L352 408.418V480h224V355.829c0-23.225-6.679-45.801-19.314-65.287zM528 432H400v-23.582c0-19.948-12.014-37.508-30.604-44.736l-99.751-38.788A71.733 71.733 0 0 0 243.552 320H112c-4.411 0-8-3.589-8-8 0-22.056 17.944-40 40-40h113.709c19.767 0 37.786-12.407 44.84-30.873l24.552-64.281c8.996-23.553-8.428-48.846-33.63-48.846H80c-17.645 0-32-14.355-32-32v-8c0-4.411 3.589-8 8-8h293.917c8.166 0 15.693 4.09 20.137 10.942l146.358 225.715A71.84 71.84 0 0 1 528 355.829V432z"] }; +var faHandPaper = { prefix: 'far', iconName: 'hand-paper', icon: [448, 512, [], "f256", "M372.57 112.641v-10.825c0-43.612-40.52-76.691-83.039-65.546-25.629-49.5-94.09-47.45-117.982.747C130.269 26.456 89.144 57.945 89.144 102v126.13c-19.953-7.427-43.308-5.068-62.083 8.871-29.355 21.796-35.794 63.333-14.55 93.153L132.48 498.569a32 32 0 0 0 26.062 13.432h222.897c14.904 0 27.835-10.289 31.182-24.813l30.184-130.958A203.637 203.637 0 0 0 448 310.564V179c0-40.62-35.523-71.992-75.43-66.359zm27.427 197.922c0 11.731-1.334 23.469-3.965 34.886L368.707 464h-201.92L51.591 302.303c-14.439-20.27 15.023-42.776 29.394-22.605l27.128 38.079c8.995 12.626 29.031 6.287 29.031-9.283V102c0-25.645 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V67c0-25.663 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V101.125c0-25.672 36.57-24.81 36.57.691V256c0 8.837 7.163 16 16 16h6.857c8.837 0 16-7.163 16-16v-76.309c0-26.242 36.57-25.64 36.57-.691v131.563z"] }; +var faHandPeace = { prefix: 'far', iconName: 'hand-peace', icon: [448, 512, [], "f25b", "M362.146 191.976c-13.71-21.649-38.761-34.016-65.006-30.341V74c0-40.804-32.811-74-73.141-74-40.33 0-73.14 33.196-73.14 74L160 168l-18.679-78.85C126.578 50.843 83.85 32.11 46.209 47.208 8.735 62.238-9.571 104.963 5.008 142.85l55.757 144.927c-30.557 24.956-43.994 57.809-24.733 92.218l54.853 97.999C102.625 498.97 124.73 512 148.575 512h205.702c30.744 0 57.558-21.44 64.555-51.797l27.427-118.999a67.801 67.801 0 0 0 1.729-15.203L448 256c0-44.956-43.263-77.343-85.854-64.024zM399.987 326c0 1.488-.169 2.977-.502 4.423l-27.427 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H148.575c-6.486 0-12.542-3.621-15.805-9.449l-54.854-98c-4.557-8.141-2.619-18.668 4.508-24.488l26.647-21.764a16 16 0 0 0 4.812-18.139l-64.09-166.549C37.226 92.956 84.37 74.837 96.51 106.389l59.784 155.357A16 16 0 0 0 171.227 272h11.632c8.837 0 16-7.163 16-16V74c0-34.375 50.281-34.43 50.281 0v182c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16v-28c0-25.122 36.567-25.159 36.567 0v28c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16 0-25.12 36.567-25.16 36.567 0v70z"] }; +var faHandPointDown = { prefix: 'far', iconName: 'hand-point-down', icon: [448, 512, [], "f0a7", "M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z"] }; +var faHandPointLeft = { prefix: 'far', iconName: 'hand-point-left', icon: [512, 512, [], "f0a5", "M0 220.8C0 266.416 37.765 304 83.2 304h35.647a93.148 93.148 0 0 0 7.929 22.064c-2.507 22.006 3.503 44.978 15.985 62.791C143.9 441.342 180.159 480 242.701 480H264c60.063 0 98.512-40 127.2-40h2.679c5.747 4.952 13.536 8 22.12 8h64c17.673 0 32-12.894 32-28.8V188.8c0-15.906-14.327-28.8-32-28.8h-64c-8.584 0-16.373 3.048-22.12 8H391.2c-6.964 0-14.862-6.193-30.183-23.668l-.129-.148-.131-.146c-8.856-9.937-18.116-20.841-25.851-33.253C316.202 80.537 304.514 32 259.2 32c-56.928 0-92 35.286-92 83.2 0 8.026.814 15.489 2.176 22.4H83.2C38.101 137.6 0 175.701 0 220.8zm48 0c0-18.7 16.775-35.2 35.2-35.2h158.4c0-17.325-26.4-35.2-26.4-70.4 0-26.4 20.625-35.2 44-35.2 8.794 0 20.445 32.712 34.926 56.1 9.074 14.575 19.524 27.225 30.799 39.875 16.109 18.374 33.836 36.633 59.075 39.596v176.752C341.21 396.087 309.491 432 264 432h-21.299c-40.524 0-57.124-22.197-50.601-61.325-14.612-8.001-24.151-33.979-12.925-53.625-19.365-18.225-17.787-46.381-4.95-61.05H83.2C64.225 256 48 239.775 48 220.8zM448 360c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z"] }; +var faHandPointRight = { prefix: 'far', iconName: 'hand-point-right', icon: [512, 512, [], "f0a4", "M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"] }; +var faHandPointUp = { prefix: 'far', iconName: 'hand-point-up', icon: [448, 512, [], "f0a6", "M105.6 83.2v86.177a115.52 115.52 0 0 0-22.4-2.176c-47.914 0-83.2 35.072-83.2 92 0 45.314 48.537 57.002 78.784 75.707 12.413 7.735 23.317 16.994 33.253 25.851l.146.131.148.129C129.807 376.338 136 384.236 136 391.2v2.679c-4.952 5.747-8 13.536-8 22.12v64c0 17.673 12.894 32 28.8 32h230.4c15.906 0 28.8-14.327 28.8-32v-64c0-8.584-3.048-16.373-8-22.12V391.2c0-28.688 40-67.137 40-127.2v-21.299c0-62.542-38.658-98.8-91.145-99.94-17.813-12.482-40.785-18.491-62.791-15.985A93.148 93.148 0 0 0 272 118.847V83.2C272 37.765 234.416 0 188.8 0c-45.099 0-83.2 38.101-83.2 83.2zm118.4 0v91.026c14.669-12.837 42.825-14.415 61.05 4.95 19.646-11.227 45.624-1.687 53.625 12.925 39.128-6.524 61.325 10.076 61.325 50.6V264c0 45.491-35.913 77.21-39.676 120H183.571c-2.964-25.239-21.222-42.966-39.596-59.075-12.65-11.275-25.3-21.725-39.875-30.799C80.712 279.645 48 267.994 48 259.2c0-23.375 8.8-44 35.2-44 35.2 0 53.075 26.4 70.4 26.4V83.2c0-18.425 16.5-35.2 35.2-35.2 18.975 0 35.2 16.225 35.2 35.2zM352 424c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z"] }; +var faHandPointer = { prefix: 'far', iconName: 'hand-pointer', icon: [448, 512, [], "f25a", "M358.182 179.361c-19.493-24.768-52.679-31.945-79.872-19.098-15.127-15.687-36.182-22.487-56.595-19.629V67c0-36.944-29.736-67-66.286-67S89.143 30.056 89.143 67v161.129c-19.909-7.41-43.272-5.094-62.083 8.872-29.355 21.795-35.793 63.333-14.55 93.152l109.699 154.001C134.632 501.59 154.741 512 176 512h178.286c30.802 0 57.574-21.5 64.557-51.797l27.429-118.999A67.873 67.873 0 0 0 448 326v-84c0-46.844-46.625-79.273-89.818-62.639zM80.985 279.697l27.126 38.079c8.995 12.626 29.031 6.287 29.031-9.283V67c0-25.12 36.571-25.16 36.571 0v175c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16v-35c0-25.12 36.571-25.16 36.571 0v35c0 8.836 7.163 16 16 16H272c8.837 0 16-7.164 16-16v-21c0-25.12 36.571-25.16 36.571 0v21c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16 0-25.121 36.571-25.16 36.571 0v84c0 1.488-.169 2.977-.502 4.423l-27.43 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H176c-5.769 0-11.263-2.878-14.697-7.697l-109.712-154c-14.406-20.223 14.994-42.818 29.394-22.606zM176.143 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.733 0-14-7.163-14-16zm75.428 0v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16zM327 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16z"] }; +var faHandRock = { prefix: 'far', iconName: 'hand-rock', icon: [512, 512, [], "f255", "M408.864 79.052c-22.401-33.898-66.108-42.273-98.813-23.588-29.474-31.469-79.145-31.093-108.334-.022-47.16-27.02-108.71 5.055-110.671 60.806C44.846 105.407 0 140.001 0 187.429v56.953c0 32.741 14.28 63.954 39.18 85.634l97.71 85.081c4.252 3.702 3.11 5.573 3.11 32.903 0 17.673 14.327 32 32 32h252c17.673 0 32-14.327 32-32 0-23.513-1.015-30.745 3.982-42.37l42.835-99.656c6.094-14.177 9.183-29.172 9.183-44.568V146.963c0-52.839-54.314-88.662-103.136-67.911zM464 261.406a64.505 64.505 0 0 1-5.282 25.613l-42.835 99.655c-5.23 12.171-7.883 25.04-7.883 38.25V432H188v-10.286c0-16.37-7.14-31.977-19.59-42.817l-97.71-85.08C56.274 281.255 48 263.236 48 244.381v-56.953c0-33.208 52-33.537 52 .677v41.228a16 16 0 0 0 5.493 12.067l7 6.095A16 16 0 0 0 139 235.429V118.857c0-33.097 52-33.725 52 .677v26.751c0 8.836 7.164 16 16 16h7c8.836 0 16-7.164 16-16v-41.143c0-33.134 52-33.675 52 .677v40.466c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16v-27.429c0-33.03 52-33.78 52 .677v26.751c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16 0-33.146 52-33.613 52 .677v114.445z"] }; +var faHandScissors = { prefix: 'far', iconName: 'hand-scissors', icon: [512, 512, [], "f257", "M256 480l70-.013c5.114 0 10.231-.583 15.203-1.729l118.999-27.427C490.56 443.835 512 417.02 512 386.277V180.575c0-23.845-13.03-45.951-34.005-57.69l-97.999-54.853c-34.409-19.261-67.263-5.824-92.218 24.733L142.85 37.008c-37.887-14.579-80.612 3.727-95.642 41.201-15.098 37.642 3.635 80.37 41.942 95.112L168 192l-94-9.141c-40.804 0-74 32.811-74 73.14 0 40.33 33.196 73.141 74 73.141h87.635c-3.675 26.245 8.692 51.297 30.341 65.006C178.657 436.737 211.044 480 256 480zm0-48.013c-25.16 0-25.12-36.567 0-36.567 8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16h-28c-25.159 0-25.122-36.567 0-36.567h28c8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16H74c-34.43 0-34.375-50.281 0-50.281h182c8.837 0 16-7.163 16-16v-11.632a16 16 0 0 0-10.254-14.933L106.389 128.51c-31.552-12.14-13.432-59.283 19.222-46.717l166.549 64.091a16.001 16.001 0 0 0 18.139-4.812l21.764-26.647c5.82-7.127 16.348-9.064 24.488-4.508l98 54.854c5.828 3.263 9.449 9.318 9.449 15.805v205.701c0 8.491-5.994 15.804-14.576 17.782l-119.001 27.427a19.743 19.743 0 0 1-4.423.502h-70z"] }; +var faHandSpock = { prefix: 'far', iconName: 'hand-spock', icon: [512, 512, [], "f259", "M21.096 381.79l129.092 121.513a32 32 0 0 0 21.932 8.698h237.6c14.17 0 26.653-9.319 30.68-22.904l31.815-107.313A115.955 115.955 0 0 0 477 348.811v-36.839c0-4.051.476-8.104 1.414-12.045l31.73-133.41c10.099-42.412-22.316-82.738-65.544-82.525-4.144-24.856-22.543-47.165-49.85-53.992-35.803-8.952-72.227 12.655-81.25 48.75L296.599 184 274.924 52.01c-8.286-36.07-44.303-58.572-80.304-50.296-29.616 6.804-50.138 32.389-51.882 61.295-42.637.831-73.455 40.563-64.071 81.844l31.04 136.508c-27.194-22.515-67.284-19.992-91.482 5.722-25.376 26.961-24.098 69.325 2.871 94.707zm32.068-61.811l.002-.001c7.219-7.672 19.241-7.98 26.856-.813l53.012 49.894C143.225 378.649 160 371.4 160 357.406v-69.479c0-1.193-.134-2.383-.397-3.546l-34.13-150.172c-5.596-24.617 31.502-32.86 37.054-8.421l30.399 133.757a16 16 0 0 0 15.603 12.454h8.604c10.276 0 17.894-9.567 15.594-19.583l-41.62-181.153c-5.623-24.469 31.39-33.076 37.035-8.508l45.22 196.828A16 16 0 0 0 288.956 272h13.217a16 16 0 0 0 15.522-12.119l42.372-169.49c6.104-24.422 42.962-15.159 36.865 9.217L358.805 252.12c-2.521 10.088 5.115 19.88 15.522 19.88h9.694a16 16 0 0 0 15.565-12.295L426.509 146.6c5.821-24.448 42.797-15.687 36.966 8.802L431.72 288.81a100.094 100.094 0 0 0-2.72 23.162v36.839c0 6.548-.943 13.051-2.805 19.328L397.775 464h-219.31L53.978 346.836c-7.629-7.18-7.994-19.229-.814-26.857z"] }; +var faHandshake = { prefix: 'far', iconName: 'handshake', icon: [640, 512, [], "f2b5", "M519.2 127.9l-47.6-47.6A56.252 56.252 0 0 0 432 64H205.2c-14.8 0-29.1 5.9-39.6 16.3L118 127.9H0v255.7h64c17.6 0 31.8-14.2 31.9-31.7h9.1l84.6 76.4c30.9 25.1 73.8 25.7 105.6 3.8 12.5 10.8 26 15.9 41.1 15.9 18.2 0 35.3-7.4 48.8-24 22.1 8.7 48.2 2.6 64-16.8l26.2-32.3c5.6-6.9 9.1-14.8 10.9-23h57.9c.1 17.5 14.4 31.7 31.9 31.7h64V127.9H519.2zM48 351.6c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16zm390-6.9l-26.1 32.2c-2.8 3.4-7.8 4-11.3 1.2l-23.9-19.4-30 36.5c-6 7.3-15 4.8-18 2.4l-36.8-31.5-15.6 19.2c-13.9 17.1-39.2 19.7-55.3 6.6l-97.3-88H96V175.8h41.9l61.7-61.6c2-.8 3.7-1.5 5.7-2.3H262l-38.7 35.5c-29.4 26.9-31.1 72.3-4.4 101.3 14.8 16.2 61.2 41.2 101.5 4.4l8.2-7.5 108.2 87.8c3.4 2.8 3.9 7.9 1.2 11.3zm106-40.8h-69.2c-2.3-2.8-4.9-5.4-7.7-7.7l-102.7-83.4 12.5-11.4c6.5-6 7-16.1 1-22.6L367 167.1c-6-6.5-16.1-6.9-22.6-1l-55.2 50.6c-9.5 8.7-25.7 9.4-34.6 0-9.3-9.9-8.5-25.1 1.2-33.9l65.6-60.1c7.4-6.8 17-10.5 27-10.5l83.7-.2c2.1 0 4.1.8 5.5 2.3l61.7 61.6H544v128zm48 47.7c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16z"] }; +var faHdd = { prefix: 'far', iconName: 'hdd', icon: [576, 512, [], "f0a0", "M567.403 235.642L462.323 84.589A48 48 0 0 0 422.919 64H153.081a48 48 0 0 0-39.404 20.589L8.597 235.642A48.001 48.001 0 0 0 0 263.054V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V263.054c0-9.801-3-19.366-8.597-27.412zM153.081 112h269.838l77.913 112H75.168l77.913-112zM528 400H48V272h480v128zm-32-64c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32zm-96 0c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32z"] }; +var faHeart = { prefix: 'far', iconName: 'heart', icon: [512, 512, [], "f004", "M458.4 64.3C400.6 15.7 311.3 23 256 79.3 200.7 23 111.4 15.6 53.6 64.3-21.6 127.6-10.6 230.8 43 285.5l175.4 178.7c10 10.2 23.4 15.9 37.6 15.9 14.3 0 27.6-5.6 37.6-15.8L469 285.6c53.5-54.7 64.7-157.9-10.6-221.3zm-23.6 187.5L259.4 430.5c-2.4 2.4-4.4 2.4-6.8 0L77.2 251.8c-36.5-37.2-43.9-107.6 7.3-150.7 38.9-32.7 98.9-27.8 136.5 10.5l35 35.7 35-35.7c37.8-38.5 97.8-43.2 136.5-10.6 51.1 43.1 43.5 113.9 7.3 150.8z"] }; +var faHospital = { prefix: 'far', iconName: 'hospital', icon: [448, 512, [], "f0f8", "M128 244v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12zm140 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm-76 84v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm76 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm180 124v36H0v-36c0-6.627 5.373-12 12-12h19.5V85.035C31.5 73.418 42.245 64 55.5 64H144V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v40h88.5c13.255 0 24 9.418 24 21.035V464H436c6.627 0 12 5.373 12 12zM79.5 463H192v-67c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v67h112.5V112H304v24c0 13.255-10.745 24-24 24H168c-13.255 0-24-10.745-24-24v-24H79.5v351zM266 64h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6z"] }; +var faHourglass = { prefix: 'far', iconName: 'hourglass', icon: [384, 512, [], "f254", "M368 48h4c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12H12C5.373 0 0 5.373 0 12v24c0 6.627 5.373 12 12 12h4c0 80.564 32.188 165.807 97.18 208C47.899 298.381 16 383.9 16 464h-4c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12h-4c0-80.564-32.188-165.807-97.18-208C336.102 213.619 368 128.1 368 48zM64 48h256c0 101.62-57.307 184-128 184S64 149.621 64 48zm256 416H64c0-101.62 57.308-184 128-184s128 82.38 128 184z"] }; +var faIdBadge = { prefix: 'far', iconName: 'id-badge', icon: [384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm0 464H48V48h288v416zM144 112h96c8.8 0 16-7.2 16-16s-7.2-16-16-16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16zm48 176c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"] }; +var faIdCard = { prefix: 'far', iconName: 'id-card', icon: [576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H303.2c.9-4.5.8 3.6.8-22.4 0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6 0 26-.2 17.9.8 22.4H48V144h480v288zm-168-80h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm-168 96c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z"] }; +var faImage = { prefix: 'far', iconName: 'image', icon: [512, 512, [], "f03e", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 336H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v276a6 6 0 0 1-6 6zM128 152c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zM96 352h320v-80l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L192 304l-39.515-39.515c-4.686-4.686-12.284-4.686-16.971 0L96 304v48z"] }; +var faImages = { prefix: 'far', iconName: 'images', icon: [576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v48H54a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6v-10h48zm42-336H150a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6V86a6 6 0 0 0-6-6zm6-48c26.51 0 48 21.49 48 48v256c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h384zM264 144c0 22.091-17.909 40-40 40s-40-17.909-40-40 17.909-40 40-40 40 17.909 40 40zm-72 96l39.515-39.515c4.686-4.686 12.284-4.686 16.971 0L288 240l103.515-103.515c4.686-4.686 12.284-4.686 16.971 0L480 208v80H192v-48z"] }; +var faKeyboard = { prefix: 'far', iconName: 'keyboard', icon: [576, 512, [], "f11c", "M528 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm8 336c0 4.411-3.589 8-8 8H48c-4.411 0-8-3.589-8-8V112c0-4.411 3.589-8 8-8h480c4.411 0 8 3.589 8 8v288zM170 270v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-336 82v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm384 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zM122 188v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-98 158v-16c0-6.627-5.373-12-12-12H180c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h216c6.627 0 12-5.373 12-12z"] }; +var faLemon = { prefix: 'far', iconName: 'lemon', icon: [512, 512, [], "f094", "M484.112 27.889C455.989-.233 416.108-8.057 387.059 8.865 347.604 31.848 223.504-41.111 91.196 91.197-41.277 223.672 31.923 347.472 8.866 387.058c-16.922 29.051-9.1 68.932 19.022 97.054 28.135 28.135 68.011 35.938 97.057 19.021 39.423-22.97 163.557 49.969 295.858-82.329 132.474-132.477 59.273-256.277 82.331-295.861 16.922-29.05 9.1-68.931-19.022-97.054zm-22.405 72.894c-38.8 66.609 45.6 165.635-74.845 286.08-120.44 120.443-219.475 36.048-286.076 74.843-22.679 13.207-64.035-27.241-50.493-50.488 38.8-66.609-45.6-165.635 74.845-286.08C245.573 4.702 344.616 89.086 411.219 50.292c22.73-13.24 64.005 27.288 50.488 50.491zm-169.861 8.736c1.37 10.96-6.404 20.957-17.365 22.327-54.846 6.855-135.779 87.787-142.635 142.635-1.373 10.989-11.399 18.734-22.326 17.365-10.961-1.37-18.735-11.366-17.365-22.326 9.162-73.286 104.167-168.215 177.365-177.365 10.953-1.368 20.956 6.403 22.326 17.364z"] }; +var faLifeRing = { prefix: 'far', iconName: 'life-ring', icon: [512, 512, [], "f1cd", "M256 504c136.967 0 248-111.033 248-248S392.967 8 256 8 8 119.033 8 256s111.033 248 248 248zm-103.398-76.72l53.411-53.411c31.806 13.506 68.128 13.522 99.974 0l53.411 53.411c-63.217 38.319-143.579 38.319-206.796 0zM336 256c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zm91.28 103.398l-53.411-53.411c13.505-31.806 13.522-68.128 0-99.974l53.411-53.411c38.319 63.217 38.319 143.579 0 206.796zM359.397 84.72l-53.411 53.411c-31.806-13.505-68.128-13.522-99.973 0L152.602 84.72c63.217-38.319 143.579-38.319 206.795 0zM84.72 152.602l53.411 53.411c-13.506 31.806-13.522 68.128 0 99.974L84.72 359.398c-38.319-63.217-38.319-143.579 0-206.796z"] }; +var faLightbulb = { prefix: 'far', iconName: 'lightbulb', icon: [384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zM128 176c0-35.29 28.71-64 64-64 8.837 0 16-7.164 16-16s-7.163-16-16-16c-52.935 0-96 43.065-96 96 0 8.836 7.164 16 16 16s16-7.164 16-16zm64-128c70.734 0 128 57.254 128 128 0 77.602-37.383 60.477-80.98 160h-94.04C101.318 236.33 64 253.869 64 176c0-70.735 57.254-128 128-128m0-48C94.805 0 16 78.803 16 176c0 101.731 51.697 91.541 90.516 192.674 3.55 9.249 12.47 15.326 22.376 15.326h126.215c9.906 0 18.826-6.078 22.376-15.326C316.303 267.541 368 277.731 368 176 368 78.803 289.195 0 192 0z"] }; +var faListAlt = { prefix: 'far', iconName: 'list-alt', icon: [512, 512, [], "f022", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zm-42-92v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm-252 12c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36z"] }; +var faMap = { prefix: 'far', iconName: 'map', icon: [576, 512, [], "f279", "M508.505 36.17L381.517 92.576 207.179 34.463a47.992 47.992 0 0 0-34.674 1.674l-144 64A48 48 0 0 0 0 144v287.967c0 34.938 35.991 57.864 67.495 43.863l126.988-56.406 174.339 58.113a47.992 47.992 0 0 0 34.674-1.674l144-64A48 48 0 0 0 576 368V80.033c0-34.938-35.991-57.864-67.495-43.863zM360 424l-144-48V88l144 48v288zm-312 8V144l120-53.333v288L48 432zm480-64l-120 53.333v-288L528 80v288z"] }; +var faMeh = { prefix: 'far', iconName: 'meh', icon: [496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm8 144H160c-13.2 0-24 10.8-24 24s10.8 24 24 24h176c13.2 0 24-10.8 24-24s-10.8-24-24-24z"] }; +var faMinusSquare = { prefix: 'far', iconName: 'minus-square', icon: [448, 512, [], "f146", "M108 284c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h232c6.6 0 12 5.4 12 12v32c0 6.6-5.4 12-12 12H108zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faMoneyBillAlt = { prefix: 'far', iconName: 'money-bill-alt', icon: [640, 512, [], "f3d1", "M320 144c-53.02 0-96 50.14-96 112 0 61.85 42.98 112 96 112 53 0 96-50.13 96-112 0-61.86-42.98-112-96-112zm40 168c0 4.42-3.58 8-8 8h-64c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h16v-55.44l-.47.31a7.992 7.992 0 0 1-11.09-2.22l-8.88-13.31a7.992 7.992 0 0 1 2.22-11.09l15.33-10.22a23.99 23.99 0 0 1 13.31-4.03H328c4.42 0 8 3.58 8 8v88h16c4.42 0 8 3.58 8 8v16zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zm-16 272c-35.35 0-64 28.65-64 64H112c0-35.35-28.65-64-64-64V176c35.35 0 64-28.65 64-64h416c0 35.35 28.65 64 64 64v160z"] }; +var faMoon = { prefix: 'far', iconName: 'moon', icon: [512, 512, [], "f186", "M279.135 512c78.756 0 150.982-35.804 198.844-94.775 28.27-34.831-2.558-85.722-46.249-77.401-82.348 15.683-158.272-47.268-158.272-130.792 0-48.424 26.06-92.292 67.434-115.836 38.745-22.05 28.999-80.788-15.022-88.919A257.936 257.936 0 0 0 279.135 0c-141.36 0-256 114.575-256 256 0 141.36 114.576 256 256 256zm0-464c12.985 0 25.689 1.201 38.016 3.478-54.76 31.163-91.693 90.042-91.693 157.554 0 113.848 103.641 199.2 215.252 177.944C402.574 433.964 344.366 464 279.135 464c-114.875 0-208-93.125-208-208s93.125-208 208-208z"] }; +var faNewspaper = { prefix: 'far', iconName: 'newspaper', icon: [576, 512, [], "f1ea", "M552 64H112c-20.858 0-38.643 13.377-45.248 32H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h496c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24zM48 392V144h16v248c0 4.411-3.589 8-8 8s-8-3.589-8-8zm480 8H111.422c.374-2.614.578-5.283.578-8V112h416v288zM172 280h136c6.627 0 12-5.373 12-12v-96c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v96c0 6.627 5.373 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H172c-6.627 0-12-5.373-12-12zm192 0v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0-144v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0 72v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12z"] }; +var faObjectGroup = { prefix: 'far', iconName: 'object-group', icon: [512, 512, [], "f247", "M500 128c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v256H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V128h12zm-52-64h32v32h-32V64zM32 64h32v32H32V64zm32 384H32v-32h32v32zm416 0h-32v-32h32v32zm-40-64h-12c-6.627 0-12 5.373-12 12v12H96v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h12v256zm-36-192h-84v-52c0-6.628-5.373-12-12-12H108c-6.627 0-12 5.372-12 12v168c0 6.628 5.373 12 12 12h84v52c0 6.628 5.373 12 12 12h200c6.627 0 12-5.372 12-12V204c0-6.628-5.373-12-12-12zm-268-24h144v112H136V168zm240 176H232v-24h76c6.627 0 12-5.372 12-12v-76h56v112z"] }; +var faObjectUngroup = { prefix: 'far', iconName: 'object-ungroup', icon: [576, 512, [], "f248", "M564 224c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12h-88v-24h12c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v160H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h88v24h-12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V224h12zM352 64h32v32h-32V64zm0 256h32v32h-32v-32zM64 352H32v-32h32v32zm0-256H32V64h32v32zm32 216v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h12v160h-12c-6.627 0-12 5.373-12 12v12H96zm128 136h-32v-32h32v32zm280-64h-12c-6.627 0-12 5.373-12 12v12H256v-12c0-6.627-5.373-12-12-12h-12v-24h88v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12v-88h88v12c0 6.627 5.373 12 12 12h12v160zm40 64h-32v-32h32v32zm0-256h-32v-32h32v32z"] }; +var faPaperPlane = { prefix: 'far', iconName: 'paper-plane', icon: [512, 512, [], "f1d8", "M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z"] }; +var faPauseCircle = { prefix: 'far', iconName: 'pause-circle', icon: [512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm96-280v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16zm-112 0v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16z"] }; +var faPlayCircle = { prefix: 'far', iconName: 'play-circle', icon: [512, 512, [], "f144", "M371.7 238l-176-107c-15.8-8.8-35.7 2.5-35.7 21v208c0 18.4 19.8 29.8 35.7 21l176-101c16.4-9.1 16.4-32.8 0-42zM504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256z"] }; +var faPlusSquare = { prefix: 'far', iconName: 'plus-square', icon: [448, 512, [], "f0fe", "M352 240v32c0 6.6-5.4 12-12 12h-88v88c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-88h-88c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h88v-88c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v88h88c6.6 0 12 5.4 12 12zm96-160v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faQuestionCircle = { prefix: 'far', iconName: 'question-circle', icon: [512, 512, [], "f059", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 448c-110.532 0-200-89.431-200-200 0-110.495 89.472-200 200-200 110.491 0 200 89.471 200 200 0 110.53-89.431 200-200 200zm107.244-255.2c0 67.052-72.421 68.084-72.421 92.863V300c0 6.627-5.373 12-12 12h-45.647c-6.627 0-12-5.373-12-12v-8.659c0-35.745 27.1-50.034 47.579-61.516 17.561-9.845 28.324-16.541 28.324-29.579 0-17.246-21.999-28.693-39.784-28.693-23.189 0-33.894 10.977-48.942 29.969-4.057 5.12-11.46 6.071-16.666 2.124l-27.824-21.098c-5.107-3.872-6.251-11.066-2.644-16.363C184.846 131.491 214.94 112 261.794 112c49.071 0 101.45 38.304 101.45 88.8zM298 368c0 23.159-18.841 42-42 42s-42-18.841-42-42 18.841-42 42-42 42 18.841 42 42z"] }; +var faRegistered = { prefix: 'far', iconName: 'registered', icon: [512, 512, [], "f25d", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm110.442-81.791c-53.046-96.284-50.25-91.468-53.271-96.085 24.267-13.879 39.482-41.563 39.482-73.176 0-52.503-30.247-85.252-101.498-85.252h-78.667c-6.617 0-12 5.383-12 12V380c0 6.617 5.383 12 12 12h38.568c6.617 0 12-5.383 12-12v-83.663h31.958l47.515 89.303a11.98 11.98 0 0 0 10.593 6.36h42.81c9.14 0 14.914-9.799 10.51-17.791zM256.933 239.906h-33.875v-64.14h27.377c32.417 0 38.929 12.133 38.929 31.709-.001 20.913-11.518 32.431-32.431 32.431z"] }; +var faSave = { prefix: 'far', iconName: 'save', icon: [448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM272 80v80H144V80h128zm122 352H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h42v104c0 13.255 10.745 24 24 24h176c13.255 0 24-10.745 24-24V83.882l78.243 78.243a6 6 0 0 1 1.757 4.243V426a6 6 0 0 1-6 6zM224 232c-48.523 0-88 39.477-88 88s39.477 88 88 88 88-39.477 88-88-39.477-88-88-88zm0 128c-22.056 0-40-17.944-40-40s17.944-40 40-40 40 17.944 40 40-17.944 40-40 40z"] }; +var faShareSquare = { prefix: 'far', iconName: 'share-square', icon: [576, 512, [], "f14d", "M561.938 158.06L417.94 14.092C387.926-15.922 336 5.097 336 48.032v57.198c-42.45 1.88-84.03 6.55-120.76 17.99-35.17 10.95-63.07 27.58-82.91 49.42C108.22 199.2 96 232.6 96 271.94c0 61.697 33.178 112.455 84.87 144.76 37.546 23.508 85.248-12.651 71.02-55.74-15.515-47.119-17.156-70.923 84.11-78.76V336c0 42.993 51.968 63.913 81.94 33.94l143.998-144c18.75-18.74 18.75-49.14 0-67.88zM384 336V232.16C255.309 234.082 166.492 255.35 206.31 376 176.79 357.55 144 324.08 144 271.94c0-109.334 129.14-118.947 240-119.85V48l144 144-144 144zm24.74 84.493a82.658 82.658 0 0 0 20.974-9.303c7.976-4.952 18.286.826 18.286 10.214V464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h132c6.627 0 12 5.373 12 12v4.486c0 4.917-2.987 9.369-7.569 11.152-13.702 5.331-26.396 11.537-38.05 18.585a12.138 12.138 0 0 1-6.28 1.777H54a6 6 0 0 0-6 6v340a6 6 0 0 0 6 6h340a6 6 0 0 0 6-6v-25.966c0-5.37 3.579-10.059 8.74-11.541z"] }; +var faSmile = { prefix: 'far', iconName: 'smile', icon: [496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm84-143.4c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.6-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.2-8.4-25.3-7.1-33.8 3.1zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z"] }; +var faSnowflake = { prefix: 'far', iconName: 'snowflake', icon: [448, 512, [], "f2dc", "M438.237 355.927l-66.574-38.54 59.448-10.327c5.846-1.375 10.609-5.183 13.458-10.13 2.48-4.307 3.506-9.478 2.524-14.651-2.11-11.115-12.686-18.039-23.621-15.467l-85.423 31.115L255.914 256l82.136-41.926 85.423 31.115c10.936 2.572 21.512-4.352 23.621-15.467 2.111-11.115-5.046-22.209-15.981-24.781l-59.448-10.327 66.573-38.54c9.54-5.523 12.615-18.092 6.867-28.074-5.748-9.982-18.14-13.596-27.68-8.074l-66.574 38.54 20.805-56.787c3.246-10.782-2.758-22.542-13.413-26.268-10.654-3.725-21.922 1.997-25.168 12.779l-15.838 89.735-72.423 41.926V136l69.585-58.621c7.689-8.21 6.997-20.856-1.548-28.245-8.545-7.391-21.705-6.723-29.394 1.486l-38.644 46.46V20c0-11.046-9.318-20-20.813-20s-20.813 8.954-20.813 20v77.08l-38.644-46.46c-7.689-8.21-20.849-8.876-29.394-1.486-8.544 7.389-9.236 20.035-1.547 28.245L203.187 136v83.853l-72.423-41.926-15.838-89.736c-3.247-10.782-14.515-16.504-25.169-12.779-10.656 3.725-16.659 15.486-13.413 26.268l20.805 56.787-66.573-38.54c-9.54-5.523-21.933-1.908-27.68 8.074s-2.673 22.551 6.867 28.074l66.574 38.54-59.449 10.328C5.953 207.515-1.202 218.609.907 229.724c2.11 11.114 12.686 18.038 23.622 15.466l85.422-31.115L192.086 256l-82.136 41.926-85.423-31.115c-10.936-2.572-21.511 4.352-23.622 15.466-2.109 11.113 5.046 22.209 15.981 24.781l59.449 10.328-66.574 38.54C.223 361.449-2.852 374.018 2.896 384s18.14 13.597 27.68 8.074l66.574-38.54-20.805 56.786c-1.735 5.764-.828 11.805 2.02 16.751 2.48 4.307 6.433 7.784 11.392 9.517 10.655 3.725 21.923-1.997 25.169-12.779l15.838-89.736 72.423-41.926V376l-69.585 58.621c-7.69 8.21-6.997 20.855 1.547 28.245 8.544 7.388 21.705 6.723 29.394-1.487l38.644-46.46V492c0 11.046 9.318 20 20.813 20s20.813-8.954 20.813-20v-77.081l38.644 46.46c4.111 4.389 9.782 6.621 15.478 6.621 4.96 0 9.939-1.694 13.916-5.134 8.545-7.39 9.237-20.035 1.548-28.245L244.813 376v-83.853l72.423 41.926 15.838 89.736c3.246 10.782 14.514 16.504 25.168 12.779 10.653-3.726 16.659-15.487 13.412-26.268l-20.805-56.787 66.574 38.54c9.54 5.523 21.933 1.908 27.68-8.074 5.749-9.981 2.675-22.55-6.866-28.072z"] }; +var faSquare = { prefix: 'far', iconName: 'square', icon: [448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h340c3.3 0 6 2.7 6 6v340c0 3.3-2.7 6-6 6z"] }; +var faStar = { prefix: 'far', iconName: 'star', icon: [576, 512, [], "f005", "M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z"] }; +var faStarHalf = { prefix: 'far', iconName: 'star-half', icon: [576, 512, [], "f089", "M288 385.3l-124.3 65.4 23.7-138.4-100.6-98 139-20.2 62.2-126V0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6v-54.3z"] }; +var faStickyNote = { prefix: 'far', iconName: 'sticky-note', icon: [448, 512, [], "f249", "M448 348.106V80c0-26.51-21.49-48-48-48H48C21.49 32 0 53.49 0 80v351.988c0 26.51 21.49 48 48 48h268.118a48 48 0 0 0 33.941-14.059l83.882-83.882A48 48 0 0 0 448 348.106zm-128 80v-76.118h76.118L320 428.106zM400 80v223.988H296c-13.255 0-24 10.745-24 24v104H48V80h352z"] }; +var faStopCircle = { prefix: 'far', iconName: 'stop-circle', icon: [512, 512, [], "f28d", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm296-80v160c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16z"] }; +var faSun = { prefix: 'far', iconName: 'sun', icon: [512, 512, [], "f185", "M220.116 487.936l-20.213-49.425a3.992 3.992 0 0 0-5.808-1.886l-45.404 28.104c-29.466 18.24-66.295-8.519-58.054-42.179l12.699-51.865a3.993 3.993 0 0 0-3.59-4.941l-53.251-3.951c-34.554-2.562-48.632-45.855-22.174-68.247L65.08 259.05a3.992 3.992 0 0 0 0-6.106l-40.76-34.497c-26.45-22.384-12.39-65.682 22.174-68.246l53.251-3.951a3.993 3.993 0 0 0 3.59-4.941L90.637 89.443c-8.239-33.656 28.581-60.42 58.054-42.179l45.403 28.104a3.993 3.993 0 0 0 5.808-1.887l20.213-49.425c13.116-32.071 58.638-32.081 71.758 0l20.212 49.424a3.994 3.994 0 0 0 5.809 1.887l45.403-28.104c29.464-18.236 66.297 8.513 58.054 42.179l-12.699 51.865a3.995 3.995 0 0 0 3.59 4.941l53.251 3.951c34.553 2.563 48.633 45.854 22.175 68.246l-40.76 34.497a3.993 3.993 0 0 0 0 6.107l40.76 34.496c26.511 22.441 12.322 65.689-22.175 68.247l-53.251 3.951a3.993 3.993 0 0 0-3.589 4.942l12.698 51.864c8.241 33.658-28.583 60.421-58.054 42.18l-45.403-28.104a3.994 3.994 0 0 0-5.809 1.887l-20.212 49.424c-13.159 32.178-58.675 31.993-71.757 0zm16.814-64.568l19.064 46.616 19.064-46.615c10.308-25.2 40.778-35.066 63.892-20.759l42.822 26.507-11.976-48.919c-6.475-26.444 12.38-52.339 39.487-54.349l50.226-3.726-38.444-32.536c-20.782-17.591-20.747-49.621.001-67.18l38.442-32.536-50.225-3.727c-27.151-2.015-45.95-27.948-39.488-54.349l11.978-48.919-42.823 26.507c-23.151 14.327-53.603 4.4-63.892-20.76l-19.064-46.615-19.064 46.617c-10.305 25.198-40.778 35.066-63.891 20.76l-42.823-26.508 11.977 48.918c6.474 26.446-12.381 52.338-39.488 54.35l-50.224 3.726 38.443 32.537c20.782 17.588 20.747 49.619 0 67.178L52.48 322.123l50.226 3.726c27.151 2.014 45.95 27.947 39.487 54.349l-11.977 48.919 42.823-26.507c23.188-14.355 53.622-4.352 63.891 20.758zM256 384c-70.58 0-128-57.421-128-128 0-70.58 57.42-128 128-128 70.579 0 128 57.42 128 128 0 70.579-57.421 128-128 128zm0-208c-44.112 0-80 35.888-80 80s35.888 80 80 80 80-35.888 80-80-35.888-80-80-80z"] }; +var faThumbsDown = { prefix: 'far', iconName: 'thumbs-down', icon: [512, 512, [], "f165", "M466.27 225.31c4.674-22.647.864-44.538-8.99-62.99 2.958-23.868-4.021-48.565-17.34-66.99C438.986 39.423 404.117 0 327 0c-7 0-15 .01-22.22.01C201.195.01 168.997 40 128 40h-10.845c-5.64-4.975-13.042-8-21.155-8H32C14.327 32 0 46.327 0 64v240c0 17.673 14.327 32 32 32h64c11.842 0 22.175-6.438 27.708-16h7.052c19.146 16.953 46.013 60.653 68.76 83.4 13.667 13.667 10.153 108.6 71.76 108.6 57.58 0 95.27-31.936 95.27-104.73 0-18.41-3.93-33.73-8.85-46.54h36.48c48.602 0 85.82-41.565 85.82-85.58 0-19.15-4.96-34.99-13.73-49.84zM64 296c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm330.18 16.73H290.19c0 37.82 28.36 55.37 28.36 94.54 0 23.75 0 56.73-47.27 56.73-18.91-18.91-9.46-66.18-37.82-94.54C206.9 342.89 167.28 272 138.92 272H128V85.83c53.611 0 100.001-37.82 171.64-37.82h37.82c35.512 0 60.82 17.12 53.12 65.9 15.2 8.16 26.5 36.44 13.94 57.57 21.581 20.384 18.699 51.065 5.21 65.62 9.45 0 22.36 18.91 22.27 37.81-.09 18.91-16.71 37.82-37.82 37.82z"] }; +var faThumbsUp = { prefix: 'far', iconName: 'thumbs-up', icon: [512, 512, [], "f164", "M466.27 286.69C475.04 271.84 480 256 480 236.85c0-44.015-37.218-85.58-85.82-85.58H357.7c4.92-12.81 8.85-28.13 8.85-46.54C366.55 31.936 328.86 0 271.28 0c-61.607 0-58.093 94.933-71.76 108.6-22.747 22.747-49.615 66.447-68.76 83.4H32c-17.673 0-32 14.327-32 32v240c0 17.673 14.327 32 32 32h64c14.893 0 27.408-10.174 30.978-23.95 44.509 1.001 75.06 39.94 177.802 39.94 7.22 0 15.22.01 22.22.01 77.117 0 111.986-39.423 112.94-95.33 13.319-18.425 20.299-43.122 17.34-66.99 9.854-18.452 13.664-40.343 8.99-62.99zm-61.75 53.83c12.56 21.13 1.26 49.41-13.94 57.57 7.7 48.78-17.608 65.9-53.12 65.9h-37.82c-71.639 0-118.029-37.82-171.64-37.82V240h10.92c28.36 0 67.98-70.89 94.54-97.46 28.36-28.36 18.91-75.63 37.82-94.54 47.27 0 47.27 32.98 47.27 56.73 0 39.17-28.36 56.72-28.36 94.54h103.99c21.11 0 37.73 18.91 37.82 37.82.09 18.9-12.82 37.81-22.27 37.81 13.489 14.555 16.371 45.236-5.21 65.62zM88 432c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"] }; +var faTimesCircle = { prefix: 'far', iconName: 'times-circle', icon: [512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm101.8-262.2L295.6 256l62.2 62.2c4.7 4.7 4.7 12.3 0 17l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L256 295.6l-62.2 62.2c-4.7 4.7-12.3 4.7-17 0l-22.6-22.6c-4.7-4.7-4.7-12.3 0-17l62.2-62.2-62.2-62.2c-4.7-4.7-4.7-12.3 0-17l22.6-22.6c4.7-4.7 12.3-4.7 17 0l62.2 62.2 62.2-62.2c4.7-4.7 12.3-4.7 17 0l22.6 22.6c4.7 4.7 4.7 12.3 0 17z"] }; +var faTrashAlt = { prefix: 'far', iconName: 'trash-alt', icon: [448, 512, [], "f2ed", "M192 188v216c0 6.627-5.373 12-12 12h-24c-6.627 0-12-5.373-12-12V188c0-6.627 5.373-12 12-12h24c6.627 0 12 5.373 12 12zm100-12h-24c-6.627 0-12 5.373-12 12v216c0 6.627 5.373 12 12 12h24c6.627 0 12-5.373 12-12V188c0-6.627-5.373-12-12-12zm132-96c13.255 0 24 10.745 24 24v12c0 6.627-5.373 12-12 12h-20v336c0 26.51-21.49 48-48 48H80c-26.51 0-48-21.49-48-48V128H12c-6.627 0-12-5.373-12-12v-12c0-13.255 10.745-24 24-24h74.411l34.018-56.696A48 48 0 0 1 173.589 0h100.823a48 48 0 0 1 41.16 23.304L349.589 80H424zm-269.611 0h139.223L276.16 50.913A6 6 0 0 0 271.015 48h-94.028a6 6 0 0 0-5.145 2.913L154.389 80zM368 128H80v330a6 6 0 0 0 6 6h276a6 6 0 0 0 6-6V128z"] }; +var faUser = { prefix: 'far', iconName: 'user', icon: [448, 512, [], "f007", "M313.6 304c-28.7 0-42.5 16-89.6 16-47.1 0-60.8-16-89.6-16C60.2 304 0 364.2 0 438.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-25.6c0-74.2-60.2-134.4-134.4-134.4zM400 464H48v-25.6c0-47.6 38.8-86.4 86.4-86.4 14.6 0 38.3 16 89.6 16 51.7 0 74.9-16 89.6-16 47.6 0 86.4 38.8 86.4 86.4V464zM224 288c79.5 0 144-64.5 144-144S303.5 0 224 0 80 64.5 80 144s64.5 144 144 144zm0-240c52.9 0 96 43.1 96 96s-43.1 96-96 96-96-43.1-96-96 43.1-96 96-96z"] }; +var faUserCircle = { prefix: 'far', iconName: 'user-circle', icon: [496, 512, [], "f2bd", "M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"] }; +var faWindowClose = { prefix: 'far', iconName: 'window-close', icon: [512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v340zM356.5 194.6L295.1 256l61.4 61.4c4.6 4.6 4.6 12.1 0 16.8l-22.3 22.3c-4.6 4.6-12.1 4.6-16.8 0L256 295.1l-61.4 61.4c-4.6 4.6-12.1 4.6-16.8 0l-22.3-22.3c-4.6-4.6-4.6-12.1 0-16.8l61.4-61.4-61.4-61.4c-4.6-4.6-4.6-12.1 0-16.8l22.3-22.3c4.6-4.6 12.1-4.6 16.8 0l61.4 61.4 61.4-61.4c4.6-4.6 12.1-4.6 16.8 0l22.3 22.3c4.7 4.6 4.7 12.1 0 16.8z"] }; +var faWindowMaximize = { prefix: 'far', iconName: 'window-maximize', icon: [512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V192h416v234z"] }; +var faWindowMinimize = { prefix: 'far', iconName: 'window-minimize', icon: [512, 512, [], "f2d1", "M480 480H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h448c17.7 0 32 14.3 32 32s-14.3 32-32 32z"] }; +var faWindowRestore = { prefix: 'far', iconName: 'window-restore', icon: [512, 512, [], "f2d2", "M464 0H144c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-96 464H48V256h320v208zm96-96h-48V144c0-26.5-21.5-48-48-48H144V48h320v320z"] }; +var icons$1 = { + faAddressBook: faAddressBook, + faAddressCard: faAddressCard, + faArrowAltCircleDown: faArrowAltCircleDown, + faArrowAltCircleLeft: faArrowAltCircleLeft, + faArrowAltCircleRight: faArrowAltCircleRight, + faArrowAltCircleUp: faArrowAltCircleUp, + faBell: faBell, + faBellSlash: faBellSlash, + faBookmark: faBookmark, + faBuilding: faBuilding, + faCalendar: faCalendar, + faCalendarAlt: faCalendarAlt, + faCalendarCheck: faCalendarCheck, + faCalendarMinus: faCalendarMinus, + faCalendarPlus: faCalendarPlus, + faCalendarTimes: faCalendarTimes, + faCaretSquareDown: faCaretSquareDown, + faCaretSquareLeft: faCaretSquareLeft, + faCaretSquareRight: faCaretSquareRight, + faCaretSquareUp: faCaretSquareUp, + faChartBar: faChartBar, + faCheckCircle: faCheckCircle, + faCheckSquare: faCheckSquare, + faCircle: faCircle, + faClipboard: faClipboard, + faClock: faClock, + faClone: faClone, + faClosedCaptioning: faClosedCaptioning, + faComment: faComment, + faCommentAlt: faCommentAlt, + faCommentDots: faCommentDots, + faComments: faComments, + faCompass: faCompass, + faCopy: faCopy, + faCopyright: faCopyright, + faCreditCard: faCreditCard, + faDotCircle: faDotCircle, + faEdit: faEdit, + faEnvelope: faEnvelope, + faEnvelopeOpen: faEnvelopeOpen, + faEye: faEye, + faEyeSlash: faEyeSlash, + faFile: faFile, + faFileAlt: faFileAlt, + faFileArchive: faFileArchive, + faFileAudio: faFileAudio, + faFileCode: faFileCode, + faFileExcel: faFileExcel, + faFileImage: faFileImage, + faFilePdf: faFilePdf, + faFilePowerpoint: faFilePowerpoint, + faFileVideo: faFileVideo, + faFileWord: faFileWord, + faFlag: faFlag, + faFolder: faFolder, + faFolderOpen: faFolderOpen, + faFontAwesomeLogoFull: faFontAwesomeLogoFull, + faFrown: faFrown, + faFutbol: faFutbol, + faGem: faGem, + faHandLizard: faHandLizard, + faHandPaper: faHandPaper, + faHandPeace: faHandPeace, + faHandPointDown: faHandPointDown, + faHandPointLeft: faHandPointLeft, + faHandPointRight: faHandPointRight, + faHandPointUp: faHandPointUp, + faHandPointer: faHandPointer, + faHandRock: faHandRock, + faHandScissors: faHandScissors, + faHandSpock: faHandSpock, + faHandshake: faHandshake, + faHdd: faHdd, + faHeart: faHeart, + faHospital: faHospital, + faHourglass: faHourglass, + faIdBadge: faIdBadge, + faIdCard: faIdCard, + faImage: faImage, + faImages: faImages, + faKeyboard: faKeyboard, + faLemon: faLemon, + faLifeRing: faLifeRing, + faLightbulb: faLightbulb, + faListAlt: faListAlt, + faMap: faMap, + faMeh: faMeh, + faMinusSquare: faMinusSquare, + faMoneyBillAlt: faMoneyBillAlt, + faMoon: faMoon, + faNewspaper: faNewspaper, + faObjectGroup: faObjectGroup, + faObjectUngroup: faObjectUngroup, + faPaperPlane: faPaperPlane, + faPauseCircle: faPauseCircle, + faPlayCircle: faPlayCircle, + faPlusSquare: faPlusSquare, + faQuestionCircle: faQuestionCircle, + faRegistered: faRegistered, + faSave: faSave, + faShareSquare: faShareSquare, + faSmile: faSmile, + faSnowflake: faSnowflake, + faSquare: faSquare, + faStar: faStar, + faStarHalf: faStarHalf, + faStickyNote: faStickyNote, + faStopCircle: faStopCircle, + faSun: faSun, + faThumbsDown: faThumbsDown, + faThumbsUp: faThumbsUp, + faTimesCircle: faTimesCircle, + faTrashAlt: faTrashAlt, + faUser: faUser, + faUserCircle: faUserCircle, + faWindowClose: faWindowClose, + faWindowMaximize: faWindowMaximize, + faWindowMinimize: faWindowMinimize, + faWindowRestore: faWindowRestore +}; + +bunker(function () { + define('far', icons$1); +}); + +export { prefix, faAddressBook, faAddressCard, faArrowAltCircleDown, faArrowAltCircleLeft, faArrowAltCircleRight, faArrowAltCircleUp, faBell, faBellSlash, faBookmark, faBuilding, faCalendar, faCalendarAlt, faCalendarCheck, faCalendarMinus, faCalendarPlus, faCalendarTimes, faCaretSquareDown, faCaretSquareLeft, faCaretSquareRight, faCaretSquareUp, faChartBar, faCheckCircle, faCheckSquare, faCircle, faClipboard, faClock, faClone, faClosedCaptioning, faComment, faCommentAlt, faCommentDots, faComments, faCompass, faCopy, faCopyright, faCreditCard, faDotCircle, faEdit, faEnvelope, faEnvelopeOpen, faEye, faEyeSlash, faFile, faFileAlt, faFileArchive, faFileAudio, faFileCode, faFileExcel, faFileImage, faFilePdf, faFilePowerpoint, faFileVideo, faFileWord, faFlag, faFolder, faFolderOpen, faFontAwesomeLogoFull, faFrown, faFutbol, faGem, faHandLizard, faHandPaper, faHandPeace, faHandPointDown, faHandPointLeft, faHandPointRight, faHandPointUp, faHandPointer, faHandRock, faHandScissors, faHandSpock, faHandshake, faHdd, faHeart, faHospital, faHourglass, faIdBadge, faIdCard, faImage, faImages, faKeyboard, faLemon, faLifeRing, faLightbulb, faListAlt, faMap, faMeh, faMinusSquare, faMoneyBillAlt, faMoon, faNewspaper, faObjectGroup, faObjectUngroup, faPaperPlane, faPauseCircle, faPlayCircle, faPlusSquare, faQuestionCircle, faRegistered, faSave, faShareSquare, faSmile, faSnowflake, faSquare, faStar, faStarHalf, faStickyNote, faStopCircle, faSun, faThumbsDown, faThumbsUp, faTimesCircle, faTrashAlt, faUser, faUserCircle, faWindowClose, faWindowMaximize, faWindowMinimize, faWindowRestore }; +export default icons$1; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/index.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/index.js new file mode 100644 index 0000000000..8383498fb3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/index.js @@ -0,0 +1,489 @@ +/*! + * Font Awesome Free 5.0.13 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : + typeof define === 'function' && define.amd ? define(['exports'], factory) : + (factory((global['fontawesome-free-regular'] = {}))); +}(this, (function (exports) { 'use strict'; + +var _WINDOW = {}; +try { + if (typeof window !== 'undefined') _WINDOW = window; + +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; + + + + + +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; + + + + + + + +var PRODUCTION = function () { + try { + return process.env.NODE_ENV === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + + + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var prefix = "far"; +var faAddressBook = { prefix: 'far', iconName: 'address-book', icon: [448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-68 304H48V48h320v416zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"] }; +var faAddressCard = { prefix: 'far', iconName: 'address-card', icon: [576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H48V80h480v352zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2zM360 320h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8z"] }; +var faArrowAltCircleDown = { prefix: 'far', iconName: 'arrow-alt-circle-down', icon: [512, 512, [], "f358", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm-32-316v116h-67c-10.7 0-16 12.9-8.5 20.5l99 99c4.7 4.7 12.3 4.7 17 0l99-99c7.6-7.6 2.2-20.5-8.5-20.5h-67V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12z"] }; +var faArrowAltCircleLeft = { prefix: 'far', iconName: 'arrow-alt-circle-left', icon: [512, 512, [], "f359", "M8 256c0 137 111 248 248 248s248-111 248-248S393 8 256 8 8 119 8 256zm448 0c0 110.5-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56s200 89.5 200 200zm-72-20v40c0 6.6-5.4 12-12 12H256v67c0 10.7-12.9 16-20.5 8.5l-99-99c-4.7-4.7-4.7-12.3 0-17l99-99c7.6-7.6 20.5-2.2 20.5 8.5v67h116c6.6 0 12 5.4 12 12z"] }; +var faArrowAltCircleRight = { prefix: 'far', iconName: 'arrow-alt-circle-right', icon: [512, 512, [], "f35a", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z"] }; +var faArrowAltCircleUp = { prefix: 'far', iconName: 'arrow-alt-circle-up', icon: [512, 512, [], "f35b", "M256 504c137 0 248-111 248-248S393 8 256 8 8 119 8 256s111 248 248 248zm0-448c110.5 0 200 89.5 200 200s-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56zm20 328h-40c-6.6 0-12-5.4-12-12V256h-67c-10.7 0-16-12.9-8.5-20.5l99-99c4.7-4.7 12.3-4.7 17 0l99 99c7.6 7.6 2.2 20.5-8.5 20.5h-67v116c0 6.6-5.4 12-12 12z"] }; +var faBell = { prefix: 'far', iconName: 'bell', icon: [448, 512, [], "f0f3", "M425.403 330.939c-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.843 31.843 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095C118.101 62.783 57.143 131.831 57.143 214.857c0 81.933-17.551 99.292-34.543 116.078C-25.496 378.441 9.726 448 66.919 448H160c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h93.08c57.19 0 92.415-69.583 44.323-117.061zM224 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm157.092-72H66.9c-16.762 0-25.135-20.39-13.334-32.191 28.585-28.585 51.577-55.724 51.577-152.952C105.143 149.319 158.462 96 224 96s118.857 53.319 118.857 118.857c0 97.65 23.221 124.574 51.568 152.952C406.278 379.661 397.783 400 381.092 400z"] }; +var faBellSlash = { prefix: 'far', iconName: 'bell-slash', icon: [576, 512, [], "f1f6", "M130.9 400c-16.762 0-25.135-20.39-13.334-32.191 25.226-25.226 46.094-49.338 50.649-121.48l-46.777-41.274a168.48 168.48 0 0 0-.296 9.802c0 81.933-17.551 99.292-34.543 116.078C38.504 378.441 73.726 448 130.919 448H224c0 35.346 28.654 64 64 64s64-28.654 64-64h44.777l-54.4-48H130.9zM288 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm283.867.553l-67.931-59.571c13.104-24.118 11.524-56.318-14.532-82.042-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.848 31.848 0 0 0 320 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095c-41.471 6.618-77.891 28.571-103.249 59.841L36.459 3.037c-5.058-4.436-12.777-3.956-17.24 1.071L3.056 22.313C-1.407 27.34-.925 35.012 4.134 39.447l535.408 469.516c5.058 4.436 12.777 3.956 17.24-1.071l16.163-18.205c4.462-5.027 3.98-12.699-1.078-17.134zM288 96c65.538 0 118.857 53.319 118.857 118.857 0 97.65 23.221 124.574 51.568 152.952 2.908 2.908 4.573 6.328 5.209 9.832L194.482 141.612C216.258 113.867 250.075 96 288 96z"] }; +var faBookmark = { prefix: 'far', iconName: 'bookmark', icon: [384, 512, [], "f02e", "M336 0H48C21.49 0 0 21.49 0 48v464l192-112 192 112V48c0-26.51-21.49-48-48-48zm0 428.43l-144-84-144 84V54a6 6 0 0 1 6-6h276c3.314 0 6 2.683 6 5.996V428.43z"] }; +var faBuilding = { prefix: 'far', iconName: 'building', icon: [448, 512, [], "f1ad", "M128 148v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12zm140 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-128 96h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm128 0h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-76 84v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm76 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm180 124v36H0v-36c0-6.6 5.4-12 12-12h19.5V24c0-13.3 10.7-24 24-24h337c13.3 0 24 10.7 24 24v440H436c6.6 0 12 5.4 12 12zM79.5 463H192v-67c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v67h112.5V49L80 48l-.5 415z"] }; +var faCalendar = { prefix: 'far', iconName: 'calendar', icon: [448, 512, [], "f133", "M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z"] }; +var faCalendarAlt = { prefix: 'far', iconName: 'calendar-alt', icon: [448, 512, [], "f073", "M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCalendarCheck = { prefix: 'far', iconName: 'calendar-check', icon: [448, 512, [], "f274", "M400 64h-48V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H160V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V160h352v298a6 6 0 0 1-6 6zm-52.849-200.65L198.842 404.519c-4.705 4.667-12.303 4.637-16.971-.068l-75.091-75.699c-4.667-4.705-4.637-12.303.068-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l44.104 44.461 111.072-110.181c4.705-4.667 12.303-4.637 16.971.068l22.536 22.718c4.667 4.705 4.636 12.303-.069 16.97z"] }; +var faCalendarMinus = { prefix: 'far', iconName: 'calendar-minus', icon: [448, 512, [], "f272", "M124 328c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H124zm324-216v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCalendarPlus = { prefix: 'far', iconName: 'calendar-plus', icon: [448, 512, [], "f271", "M336 292v24c0 6.6-5.4 12-12 12h-76v76c0 6.6-5.4 12-12 12h-24c-6.6 0-12-5.4-12-12v-76h-76c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h76v-76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v76h76c6.6 0 12 5.4 12 12zm112-180v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCalendarTimes = { prefix: 'far', iconName: 'calendar-times', icon: [448, 512, [], "f273", "M311.7 374.7l-17 17c-4.7 4.7-12.3 4.7-17 0L224 337.9l-53.7 53.7c-4.7 4.7-12.3 4.7-17 0l-17-17c-4.7-4.7-4.7-12.3 0-17l53.7-53.7-53.7-53.7c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0l53.7 53.7 53.7-53.7c4.7-4.7 12.3-4.7 17 0l17 17c4.7 4.7 4.7 12.3 0 17L257.9 304l53.7 53.7c4.8 4.7 4.8 12.3.1 17zM448 112v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCaretSquareDown = { prefix: 'far', iconName: 'caret-square-down', icon: [448, 512, [], "f150", "M125.1 208h197.8c10.7 0 16.1 13 8.5 20.5l-98.9 98.3c-4.7 4.7-12.2 4.7-16.9 0l-98.9-98.3c-7.7-7.5-2.3-20.5 8.4-20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCaretSquareLeft = { prefix: 'far', iconName: 'caret-square-left', icon: [448, 512, [], "f191", "M272 157.1v197.8c0 10.7-13 16.1-20.5 8.5l-98.3-98.9c-4.7-4.7-4.7-12.2 0-16.9l98.3-98.9c7.5-7.7 20.5-2.3 20.5 8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCaretSquareRight = { prefix: 'far', iconName: 'caret-square-right', icon: [448, 512, [], "f152", "M176 354.9V157.1c0-10.7 13-16.1 20.5-8.5l98.3 98.9c4.7 4.7 4.7 12.2 0 16.9l-98.3 98.9c-7.5 7.7-20.5 2.3-20.5-8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCaretSquareUp = { prefix: 'far', iconName: 'caret-square-up', icon: [448, 512, [], "f151", "M322.9 304H125.1c-10.7 0-16.1-13-8.5-20.5l98.9-98.3c4.7-4.7 12.2-4.7 16.9 0l98.9 98.3c7.7 7.5 2.3 20.5-8.4 20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faChartBar = { prefix: 'far', iconName: 'chart-bar', icon: [512, 512, [], "f080", "M500 400c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v324h452zm-356-60v-72c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V140c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V204c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V108c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12z"] }; +var faCheckCircle = { prefix: 'far', iconName: 'check-circle', icon: [512, 512, [], "f058", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"] }; +var faCheckSquare = { prefix: 'far', iconName: 'check-square', icon: [448, 512, [], "f14a", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm0 400H48V80h352v352zm-35.864-241.724L191.547 361.48c-4.705 4.667-12.303 4.637-16.97-.068l-90.781-91.516c-4.667-4.705-4.637-12.303.069-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l59.792 60.277 141.352-140.216c4.705-4.667 12.303-4.637 16.97.068l22.536 22.718c4.667 4.706 4.637 12.304-.068 16.971z"] }; +var faCircle = { prefix: 'far', iconName: 'circle', icon: [512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z"] }; +var faClipboard = { prefix: 'far', iconName: 'clipboard', icon: [384, 512, [], "f328", "M336 64h-80c0-35.29-28.71-64-64-64s-64 28.71-64 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h42v36c0 6.627 5.373 12 12 12h168c6.627 0 12-5.373 12-12v-36h42a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zM192 40c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24"] }; +var faClock = { prefix: 'far', iconName: 'clock', icon: [512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"] }; +var faClone = { prefix: 'far', iconName: 'clone', icon: [512, 512, [], "f24d", "M464 0H144c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h320c26.51 0 48-21.49 48-48v-48h48c26.51 0 48-21.49 48-48V48c0-26.51-21.49-48-48-48zM362 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h42v224c0 26.51 21.49 48 48 48h224v42a6 6 0 0 1-6 6zm96-96H150a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h308a6 6 0 0 1 6 6v308a6 6 0 0 1-6 6z"] }; +var faClosedCaptioning = { prefix: 'far', iconName: 'closed-captioning', icon: [512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 336H54c-3.3 0-6-2.7-6-6V118c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v276c0 3.3-2.7 6-6 6zm-211.1-85.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7zm190.4 0c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.9-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 220.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7z"] }; +var faComment = { prefix: 'far', iconName: 'comment', icon: [512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"] }; +var faCommentAlt = { prefix: 'far', iconName: 'comment-alt', icon: [512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 7.1 5.8 12 12 12 2.4 0 4.9-.7 7.1-2.4L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm16 352c0 8.8-7.2 16-16 16H288l-12.8 9.6L208 428v-60H64c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h384c8.8 0 16 7.2 16 16v288z"] }; +var faCommentDots = { prefix: 'far', iconName: 'comment-dots', icon: [512, 512, [], "f4ad", "M144 208c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"] }; +var faComments = { prefix: 'far', iconName: 'comments', icon: [576, 512, [], "f086", "M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"] }; +var faCompass = { prefix: 'far', iconName: 'compass', icon: [512, 512, [], "f14e", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm91.326-312.131l-33.359 137.779a24.005 24.005 0 0 1-6.772 11.729l-102.64 97.779c-17.104 16.293-45.56.434-39.88-23.024l33.359-137.779a23.997 23.997 0 0 1 6.772-11.729l102.642-97.779c17.285-16.47 45.494-.175 39.878 23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; +var faCopy = { prefix: 'far', iconName: 'copy', icon: [448, 512, [], "f0c5", "M433.941 65.941l-51.882-51.882A48 48 0 0 0 348.118 0H176c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48v-48h80c26.51 0 48-21.49 48-48V99.882a48 48 0 0 0-14.059-33.941zM266 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h74v224c0 26.51 21.49 48 48 48h96v42a6 6 0 0 1-6 6zm128-96H182a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h106v88c0 13.255 10.745 24 24 24h88v202a6 6 0 0 1-6 6zm6-256h-64V48h9.632c1.591 0 3.117.632 4.243 1.757l48.368 48.368a6 6 0 0 1 1.757 4.243V112z"] }; +var faCopyright = { prefix: 'far', iconName: 'copyright', icon: [512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm107.351-101.064c-9.614 9.712-45.53 41.396-104.065 41.396-82.43 0-140.484-61.425-140.484-141.567 0-79.152 60.275-139.401 139.762-139.401 55.531 0 88.738 26.62 97.593 34.779a11.965 11.965 0 0 1 1.936 15.322l-18.155 28.113c-3.841 5.95-11.966 7.282-17.499 2.921-8.595-6.776-31.814-22.538-61.708-22.538-48.303 0-77.916 35.33-77.916 80.082 0 41.589 26.888 83.692 78.277 83.692 32.657 0 56.843-19.039 65.726-27.225 5.27-4.857 13.596-4.039 17.82 1.738l19.865 27.17a11.947 11.947 0 0 1-1.152 15.518z"] }; +var faCreditCard = { prefix: 'far', iconName: 'credit-card', icon: [576, 512, [], "f09d", "M527.9 32H48.1C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48.1 48h479.8c26.6 0 48.1-21.5 48.1-48V80c0-26.5-21.5-48-48.1-48zM54.1 80h467.8c3.3 0 6 2.7 6 6v42H48.1V86c0-3.3 2.7-6 6-6zm467.8 352H54.1c-3.3 0-6-2.7-6-6V256h479.8v170c0 3.3-2.7 6-6 6zM192 332v40c0 6.6-5.4 12-12 12h-72c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12zm192 0v40c0 6.6-5.4 12-12 12H236c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12z"] }; +var faDotCircle = { prefix: 'far', iconName: 'dot-circle', icon: [512, 512, [], "f192", "M256 56c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m0-48C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 168c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80z"] }; +var faEdit = { prefix: 'far', iconName: 'edit', icon: [576, 512, [], "f044", "M402.3 344.9l32-32c5-5 13.7-1.5 13.7 5.7V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h273.5c7.1 0 10.7 8.6 5.7 13.7l-32 32c-1.5 1.5-3.5 2.3-5.7 2.3H48v352h352V350.5c0-2.1.8-4.1 2.3-5.6zm156.6-201.8L296.3 405.7l-90.4 10c-26.2 2.9-48.5-19.2-45.6-45.6l10-90.4L432.9 17.1c22.9-22.9 59.9-22.9 82.7 0l43.2 43.2c22.9 22.9 22.9 60 .1 82.8zM460.1 174L402 115.9 216.2 301.8l-7.3 65.3 65.3-7.3L460.1 174zm64.8-79.7l-43.2-43.2c-4.1-4.1-10.8-4.1-14.8 0L436 82l58.1 58.1 30.9-30.9c4-4.2 4-10.8-.1-14.9z"] }; +var faEnvelope = { prefix: 'far', iconName: 'envelope', icon: [512, 512, [], "f0e0", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z"] }; +var faEnvelopeOpen = { prefix: 'far', iconName: 'envelope-open', icon: [512, 512, [], "f2b6", "M494.586 164.516c-4.697-3.883-111.723-89.95-135.251-108.657C337.231 38.191 299.437 0 256 0c-43.205 0-80.636 37.717-103.335 55.859-24.463 19.45-131.07 105.195-135.15 108.549A48.004 48.004 0 0 0 0 201.485V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V201.509a48 48 0 0 0-17.414-36.993zM464 458a6 6 0 0 1-6 6H54a6 6 0 0 1-6-6V204.347c0-1.813.816-3.526 2.226-4.665 15.87-12.814 108.793-87.554 132.364-106.293C200.755 78.88 232.398 48 256 48c23.693 0 55.857 31.369 73.41 45.389 23.573 18.741 116.503 93.493 132.366 106.316a5.99 5.99 0 0 1 2.224 4.663V458zm-31.991-187.704c4.249 5.159 3.465 12.795-1.745 16.981-28.975 23.283-59.274 47.597-70.929 56.863C336.636 362.283 299.205 400 256 400c-43.452 0-81.287-38.237-103.335-55.86-11.279-8.967-41.744-33.413-70.927-56.865-5.21-4.187-5.993-11.822-1.745-16.981l15.258-18.528c4.178-5.073 11.657-5.843 16.779-1.726 28.618 23.001 58.566 47.035 70.56 56.571C200.143 320.631 232.307 352 256 352c23.602 0 55.246-30.88 73.41-45.389 11.994-9.535 41.944-33.57 70.563-56.568 5.122-4.116 12.601-3.346 16.778 1.727l15.258 18.526z"] }; +var faEye = { prefix: 'far', iconName: 'eye', icon: [576, 512, [], "f06e", "M569.354 231.631C512.97 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-102.556 0-192.091-54.701-240-136 44.157-74.933 123.677-127.27 216.162-135.007C273.958 131.078 280 144.83 280 160c0 30.928-25.072 56-56 56s-56-25.072-56-56l.001-.042C157.794 179.043 152 200.844 152 224c0 75.111 60.889 136 136 136s136-60.889 136-136c0-31.031-10.4-59.629-27.895-82.515C451.704 164.638 498.009 205.106 528 256c-47.908 81.299-137.444 136-240 136z"] }; +var faEyeSlash = { prefix: 'far', iconName: 'eye-slash', icon: [576, 512, [], "f070", "M272.702 359.139c-80.483-9.011-136.212-86.886-116.93-167.042l116.93 167.042zM288 392c-102.556 0-192.092-54.701-240-136 21.755-36.917 52.1-68.342 88.344-91.658l-27.541-39.343C67.001 152.234 31.921 188.741 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.004 376.006 168.14 440 288 440a332.89 332.89 0 0 0 39.648-2.367l-32.021-45.744A284.16 284.16 0 0 1 288 392zm281.354-111.631c-33.232 56.394-83.421 101.742-143.554 129.492l48.116 68.74c3.801 5.429 2.48 12.912-2.949 16.712L450.23 509.83c-5.429 3.801-12.912 2.48-16.712-2.949L102.084 33.399c-3.801-5.429-2.48-12.912 2.949-16.712L125.77 2.17c5.429-3.801 12.912-2.48 16.712 2.949l55.526 79.325C226.612 76.343 256.808 72 288 72c119.86 0 224.996 63.994 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM528 256c-44.157-74.933-123.677-127.27-216.162-135.007C302.042 131.078 296 144.83 296 160c0 30.928 25.072 56 56 56s56-25.072 56-56l-.001-.042c30.632 57.277 16.739 130.26-36.928 171.719l26.695 38.135C452.626 346.551 498.308 306.386 528 256z"] }; +var faFile = { prefix: 'far', iconName: 'file', icon: [384, 512, [], "f15b", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48z"] }; +var faFileAlt = { prefix: 'far', iconName: 'file-alt', icon: [384, 512, [], "f15c", "M288 248v28c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-28c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm-12 72H108c-6.6 0-12 5.4-12 12v28c0 6.6 5.4 12 12 12h168c6.6 0 12-5.4 12-12v-28c0-6.6-5.4-12-12-12zm108-188.1V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48C0 21.5 21.5 0 48 0h204.1C264.8 0 277 5.1 286 14.1L369.9 98c9 8.9 14.1 21.2 14.1 33.9zm-128-80V128h76.1L256 51.9zM336 464V176H232c-13.3 0-24-10.7-24-24V48H48v416h288z"] }; +var faFileArchive = { prefix: 'far', iconName: 'file-archive', icon: [384, 512, [], "f1c6", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM256 51.882L332.118 128H256V51.882zM336 464H48V48h79.714v16h32V48H208v104c0 13.255 10.745 24 24 24h104v288zM192.27 96h-32V64h32v32zm-32 0v32h-32V96h32zm0 64v32h-32v-32h32zm32 0h-32v-32h32v32zm1.909 105.678A12 12 0 0 0 182.406 256H160.27v-32h-32v32l-19.69 97.106C101.989 385.611 126.834 416 160 416c33.052 0 57.871-30.192 51.476-62.62l-17.297-87.702zM160.27 390.073c-17.918 0-32.444-12.105-32.444-27.036 0-14.932 14.525-27.036 32.444-27.036s32.444 12.105 32.444 27.036c0 14.931-14.526 27.036-32.444 27.036zm32-166.073h-32v-32h32v32z"] }; +var faFileAudio = { prefix: 'far', iconName: 'file-audio', icon: [384, 512, [], "f1c7", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm144-76.024c0 10.691-12.926 16.045-20.485 8.485L136 360.486h-28c-6.627 0-12-5.373-12-12v-56c0-6.627 5.373-12 12-12h28l35.515-36.947c7.56-7.56 20.485-2.206 20.485 8.485v135.952zm41.201-47.13c9.051-9.297 9.06-24.133.001-33.439-22.149-22.752 12.235-56.246 34.395-33.481 27.198 27.94 27.212 72.444.001 100.401-21.793 22.386-56.947-10.315-34.397-33.481z"] }; +var faFileCode = { prefix: 'far', iconName: 'file-code', icon: [384, 512, [], "f1c9", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm101.677-115.115L116.854 320l32.822-28.885a8.793 8.793 0 0 0 .605-12.624l-17.403-18.564c-3.384-3.613-8.964-3.662-12.438-.401L62.78 313.58c-3.703 3.474-3.704 9.367.001 12.84l57.659 54.055a8.738 8.738 0 0 0 6.012 2.381 8.746 8.746 0 0 0 6.427-2.782l17.403-18.563a8.795 8.795 0 0 0-.605-12.626zm84.284-127.85l-24.401-7.084a8.796 8.796 0 0 0-10.905 5.998L144.04 408.061c-1.353 4.66 1.338 9.552 5.998 10.905l24.403 7.084c4.68 1.355 9.557-1.354 10.905-5.998l54.612-188.112c1.354-4.66-1.337-9.552-5.997-10.905zm87.258 92.545l-57.658-54.055c-3.526-3.307-9.099-3.165-12.439.401l-17.403 18.563a8.795 8.795 0 0 0 .605 12.625L267.146 320l-32.822 28.885a8.793 8.793 0 0 0-.605 12.624l17.403 18.564a8.797 8.797 0 0 0 12.439.401h-.001l57.66-54.055c3.703-3.473 3.703-9.366-.001-12.839z"] }; +var faFileExcel = { prefix: 'far', iconName: 'file-excel', icon: [384, 512, [], "f1c3", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm212-240h-28.8c-4.4 0-8.4 2.4-10.5 6.3-18 33.1-22.2 42.4-28.6 57.7-13.9-29.1-6.9-17.3-28.6-57.7-2.1-3.9-6.2-6.3-10.6-6.3H124c-9.3 0-15 10-10.4 18l46.3 78-46.3 78c-4.7 8 1.1 18 10.4 18h28.9c4.4 0 8.4-2.4 10.5-6.3 21.7-40 23-45 28.6-57.7 14.9 30.2 5.9 15.9 28.6 57.7 2.1 3.9 6.2 6.3 10.6 6.3H260c9.3 0 15-10 10.4-18L224 320c.7-1.1 30.3-50.5 46.3-78 4.7-8-1.1-18-10.3-18z"] }; +var faFileImage = { prefix: 'far', iconName: 'file-image', icon: [384, 512, [], "f1c5", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm32-48h224V288l-23.5-23.5c-4.7-4.7-12.3-4.7-17 0L176 352l-39.5-39.5c-4.7-4.7-12.3-4.7-17 0L80 352v64zm48-240c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z"] }; +var faFilePdf = { prefix: 'far', iconName: 'file-pdf', icon: [384, 512, [], "f1c1", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm250.2-143.7c-12.2-12-47-8.7-64.4-6.5-17.2-10.5-28.7-25-36.8-46.3 3.9-16.1 10.1-40.6 5.4-56-4.2-26.2-37.8-23.6-42.6-5.9-4.4 16.1-.4 38.5 7 67.1-10 23.9-24.9 56-35.4 74.4-20 10.3-47 26.2-51 46.2-3.3 15.8 26 55.2 76.1-31.2 22.4-7.4 46.8-16.5 68.4-20.1 18.9 10.2 41 17 55.8 17 25.5 0 28-28.2 17.5-38.7zm-198.1 77.8c5.1-13.7 24.5-29.5 30.4-35-19 30.3-30.4 35.7-30.4 35zm81.6-190.6c7.4 0 6.7 32.1 1.8 40.8-4.4-13.9-4.3-40.8-1.8-40.8zm-24.4 136.6c9.7-16.9 18-37 24.7-54.7 8.3 15.1 18.9 27.2 30.1 35.5-20.8 4.3-38.9 13.1-54.8 19.2zm131.6-5s-5 6-37.3-7.8c35.1-2.6 40.9 5.4 37.3 7.8z"] }; +var faFilePowerpoint = { prefix: 'far', iconName: 'file-powerpoint', icon: [384, 512, [], "f1c4", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm72-60V236c0-6.6 5.4-12 12-12h69.2c36.7 0 62.8 27 62.8 66.3 0 74.3-68.7 66.5-95.5 66.5V404c0 6.6-5.4 12-12 12H132c-6.6 0-12-5.4-12-12zm48.5-87.4h23c7.9 0 13.9-2.4 18.1-7.2 8.5-9.8 8.4-28.5.1-37.8-4.1-4.6-9.9-7-17.4-7h-23.9v52z"] }; +var faFileVideo = { prefix: 'far', iconName: 'file-video', icon: [384, 512, [], "f1c8", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm228.687-211.303L224 305.374V268c0-11.046-8.954-20-20-20H100c-11.046 0-20 8.954-20 20v104c0 11.046 8.954 20 20 20h104c11.046 0 20-8.954 20-20v-37.374l52.687 52.674C286.704 397.318 304 390.28 304 375.986V264.011c0-14.311-17.309-21.319-27.313-11.314z"] }; +var faFileWord = { prefix: 'far', iconName: 'file-word', icon: [384, 512, [], "f1c2", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm220.1-208c-5.7 0-10.6 4-11.7 9.5-20.6 97.7-20.4 95.4-21 103.5-.2-1.2-.4-2.6-.7-4.3-.8-5.1.3.2-23.6-99.5-1.3-5.4-6.1-9.2-11.7-9.2h-13.3c-5.5 0-10.3 3.8-11.7 9.1-24.4 99-24 96.2-24.8 103.7-.1-1.1-.2-2.5-.5-4.2-.7-5.2-14.1-73.3-19.1-99-1.1-5.6-6-9.7-11.8-9.7h-16.8c-7.8 0-13.5 7.3-11.7 14.8 8 32.6 26.7 109.5 33.2 136 1.3 5.4 6.1 9.1 11.7 9.1h25.2c5.5 0 10.3-3.7 11.6-9.1l17.9-71.4c1.5-6.2 2.5-12 3-17.3l2.9 17.3c.1.4 12.6 50.5 17.9 71.4 1.3 5.3 6.1 9.1 11.6 9.1h24.7c5.5 0 10.3-3.7 11.6-9.1 20.8-81.9 30.2-119 34.5-136 1.9-7.6-3.8-14.9-11.6-14.9h-15.8z"] }; +var faFlag = { prefix: 'far', iconName: 'flag', icon: [512, 512, [], "f024", "M336.174 80c-49.132 0-93.305-32-161.913-32-31.301 0-58.303 6.482-80.721 15.168a48.04 48.04 0 0 0 2.142-20.727C93.067 19.575 74.167 1.594 51.201.104 23.242-1.71 0 20.431 0 48c0 17.764 9.657 33.262 24 41.562V496c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-83.443C109.869 395.28 143.259 384 199.826 384c49.132 0 93.305 32 161.913 32 58.479 0 101.972-22.617 128.548-39.981C503.846 367.161 512 352.051 512 335.855V95.937c0-34.459-35.264-57.768-66.904-44.117C409.193 67.309 371.641 80 336.174 80zM464 336c-21.783 15.412-60.824 32-102.261 32-59.945 0-102.002-32-161.913-32-43.361 0-96.379 9.403-127.826 24V128c21.784-15.412 60.824-32 102.261-32 59.945 0 102.002 32 161.913 32 43.271 0 96.32-17.366 127.826-32v240z"] }; +var faFolder = { prefix: 'far', iconName: 'folder', icon: [512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48zm-6 272H54c-3.314 0-6-2.678-6-5.992V117.992A5.993 5.993 0 0 1 54 112h134.118l64 64H458a6 6 0 0 1 6 6v212a6 6 0 0 1-6 6z"] }; +var faFolderOpen = { prefix: 'far', iconName: 'folder-open', icon: [576, 512, [], "f07c", "M527.943 224H480v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h400a48.001 48.001 0 0 0 40.704-22.56l79.942-128c19.948-31.917-3.038-73.44-40.703-73.44zM54 112h134.118l64 64H426a6 6 0 0 1 6 6v42H152a48 48 0 0 0-41.098 23.202L48 351.449V117.993A5.993 5.993 0 0 1 54 112zm394 288H72l77.234-128H528l-80 128z"] }; +var faFontAwesomeLogoFull = { prefix: 'far', iconName: 'font-awesome-logo-full', icon: [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"] }; +var faFrown = { prefix: 'far', iconName: 'frown', icon: [496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 128c-40.2 0-78 17.7-103.8 48.6-8.5 10.2-7.1 25.3 3.1 33.8 10.2 8.5 25.3 7.1 33.8-3.1 16.6-19.9 41-31.4 66.9-31.4s50.3 11.4 66.9 31.4c4.8 5.7 11.6 8.6 18.5 8.6 5.4 0 10.9-1.8 15.4-5.6 10.2-8.5 11.5-23.6 3.1-33.8C326 321.7 288.2 304 248 304z"] }; +var faFutbol = { prefix: 'far', iconName: 'futbol', icon: [496, 512, [], "f1e3", "M483.8 179.4C449.8 74.6 352.6 8 248.1 8c-25.4 0-51.2 3.9-76.7 12.2C41.2 62.5-30.1 202.4 12.2 332.6 46.2 437.4 143.4 504 247.9 504c25.4 0 51.2-3.9 76.7-12.2 130.2-42.3 201.5-182.2 159.2-312.4zm-74.5 193.7l-52.2 6.4-43.7-60.9 24.4-75.2 71.1-22.1 38.9 36.4c-.2 30.7-7.4 61.1-21.7 89.2-4.7 9.3-10.7 17.8-16.8 26.2zm0-235.4l-10.4 53.1-70.7 22-64.2-46.5V92.5l47.4-26.2c39.2 13 73.4 38 97.9 71.4zM184.9 66.4L232 92.5v73.8l-64.2 46.5-70.6-22-10.1-52.5c24.3-33.4 57.9-58.6 97.8-71.9zM139 379.5L85.9 373c-14.4-20.1-37.3-59.6-37.8-115.3l39-36.4 71.1 22.2 24.3 74.3-43.5 61.7zm48.2 67l-22.4-48.1 43.6-61.7H287l44.3 61.7-22.4 48.1c-6.2 1.8-57.6 20.4-121.7 0z"] }; +var faGem = { prefix: 'far', iconName: 'gem', icon: [576, 512, [], "f3a5", "M464 0H112c-4 0-7.8 2-10 5.4L2 152.6c-2.9 4.4-2.6 10.2.7 14.2l276 340.8c4.8 5.9 13.8 5.9 18.6 0l276-340.8c3.3-4.1 3.6-9.8.7-14.2L474.1 5.4C471.8 2 468.1 0 464 0zm-19.3 48l63.3 96h-68.4l-51.7-96h56.8zm-202.1 0h90.7l51.7 96H191l51.6-96zm-111.3 0h56.8l-51.7 96H68l63.3-96zm-43 144h51.4L208 352 88.3 192zm102.9 0h193.6L288 435.3 191.2 192zM368 352l68.2-160h51.4L368 352z"] }; +var faHandLizard = { prefix: 'far', iconName: 'hand-lizard', icon: [576, 512, [], "f258", "M556.686 290.542L410.328 64.829C397.001 44.272 374.417 32 349.917 32H56C25.121 32 0 57.122 0 88v8c0 44.112 35.888 80 80 80h196.042l-18.333 48H144c-48.523 0-88 39.477-88 88 0 30.879 25.121 56 56 56h131.552c2.987 0 5.914.549 8.697 1.631L352 408.418V480h224V355.829c0-23.225-6.679-45.801-19.314-65.287zM528 432H400v-23.582c0-19.948-12.014-37.508-30.604-44.736l-99.751-38.788A71.733 71.733 0 0 0 243.552 320H112c-4.411 0-8-3.589-8-8 0-22.056 17.944-40 40-40h113.709c19.767 0 37.786-12.407 44.84-30.873l24.552-64.281c8.996-23.553-8.428-48.846-33.63-48.846H80c-17.645 0-32-14.355-32-32v-8c0-4.411 3.589-8 8-8h293.917c8.166 0 15.693 4.09 20.137 10.942l146.358 225.715A71.84 71.84 0 0 1 528 355.829V432z"] }; +var faHandPaper = { prefix: 'far', iconName: 'hand-paper', icon: [448, 512, [], "f256", "M372.57 112.641v-10.825c0-43.612-40.52-76.691-83.039-65.546-25.629-49.5-94.09-47.45-117.982.747C130.269 26.456 89.144 57.945 89.144 102v126.13c-19.953-7.427-43.308-5.068-62.083 8.871-29.355 21.796-35.794 63.333-14.55 93.153L132.48 498.569a32 32 0 0 0 26.062 13.432h222.897c14.904 0 27.835-10.289 31.182-24.813l30.184-130.958A203.637 203.637 0 0 0 448 310.564V179c0-40.62-35.523-71.992-75.43-66.359zm27.427 197.922c0 11.731-1.334 23.469-3.965 34.886L368.707 464h-201.92L51.591 302.303c-14.439-20.27 15.023-42.776 29.394-22.605l27.128 38.079c8.995 12.626 29.031 6.287 29.031-9.283V102c0-25.645 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V67c0-25.663 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V101.125c0-25.672 36.57-24.81 36.57.691V256c0 8.837 7.163 16 16 16h6.857c8.837 0 16-7.163 16-16v-76.309c0-26.242 36.57-25.64 36.57-.691v131.563z"] }; +var faHandPeace = { prefix: 'far', iconName: 'hand-peace', icon: [448, 512, [], "f25b", "M362.146 191.976c-13.71-21.649-38.761-34.016-65.006-30.341V74c0-40.804-32.811-74-73.141-74-40.33 0-73.14 33.196-73.14 74L160 168l-18.679-78.85C126.578 50.843 83.85 32.11 46.209 47.208 8.735 62.238-9.571 104.963 5.008 142.85l55.757 144.927c-30.557 24.956-43.994 57.809-24.733 92.218l54.853 97.999C102.625 498.97 124.73 512 148.575 512h205.702c30.744 0 57.558-21.44 64.555-51.797l27.427-118.999a67.801 67.801 0 0 0 1.729-15.203L448 256c0-44.956-43.263-77.343-85.854-64.024zM399.987 326c0 1.488-.169 2.977-.502 4.423l-27.427 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H148.575c-6.486 0-12.542-3.621-15.805-9.449l-54.854-98c-4.557-8.141-2.619-18.668 4.508-24.488l26.647-21.764a16 16 0 0 0 4.812-18.139l-64.09-166.549C37.226 92.956 84.37 74.837 96.51 106.389l59.784 155.357A16 16 0 0 0 171.227 272h11.632c8.837 0 16-7.163 16-16V74c0-34.375 50.281-34.43 50.281 0v182c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16v-28c0-25.122 36.567-25.159 36.567 0v28c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16 0-25.12 36.567-25.16 36.567 0v70z"] }; +var faHandPointDown = { prefix: 'far', iconName: 'hand-point-down', icon: [448, 512, [], "f0a7", "M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z"] }; +var faHandPointLeft = { prefix: 'far', iconName: 'hand-point-left', icon: [512, 512, [], "f0a5", "M0 220.8C0 266.416 37.765 304 83.2 304h35.647a93.148 93.148 0 0 0 7.929 22.064c-2.507 22.006 3.503 44.978 15.985 62.791C143.9 441.342 180.159 480 242.701 480H264c60.063 0 98.512-40 127.2-40h2.679c5.747 4.952 13.536 8 22.12 8h64c17.673 0 32-12.894 32-28.8V188.8c0-15.906-14.327-28.8-32-28.8h-64c-8.584 0-16.373 3.048-22.12 8H391.2c-6.964 0-14.862-6.193-30.183-23.668l-.129-.148-.131-.146c-8.856-9.937-18.116-20.841-25.851-33.253C316.202 80.537 304.514 32 259.2 32c-56.928 0-92 35.286-92 83.2 0 8.026.814 15.489 2.176 22.4H83.2C38.101 137.6 0 175.701 0 220.8zm48 0c0-18.7 16.775-35.2 35.2-35.2h158.4c0-17.325-26.4-35.2-26.4-70.4 0-26.4 20.625-35.2 44-35.2 8.794 0 20.445 32.712 34.926 56.1 9.074 14.575 19.524 27.225 30.799 39.875 16.109 18.374 33.836 36.633 59.075 39.596v176.752C341.21 396.087 309.491 432 264 432h-21.299c-40.524 0-57.124-22.197-50.601-61.325-14.612-8.001-24.151-33.979-12.925-53.625-19.365-18.225-17.787-46.381-4.95-61.05H83.2C64.225 256 48 239.775 48 220.8zM448 360c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z"] }; +var faHandPointRight = { prefix: 'far', iconName: 'hand-point-right', icon: [512, 512, [], "f0a4", "M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"] }; +var faHandPointUp = { prefix: 'far', iconName: 'hand-point-up', icon: [448, 512, [], "f0a6", "M105.6 83.2v86.177a115.52 115.52 0 0 0-22.4-2.176c-47.914 0-83.2 35.072-83.2 92 0 45.314 48.537 57.002 78.784 75.707 12.413 7.735 23.317 16.994 33.253 25.851l.146.131.148.129C129.807 376.338 136 384.236 136 391.2v2.679c-4.952 5.747-8 13.536-8 22.12v64c0 17.673 12.894 32 28.8 32h230.4c15.906 0 28.8-14.327 28.8-32v-64c0-8.584-3.048-16.373-8-22.12V391.2c0-28.688 40-67.137 40-127.2v-21.299c0-62.542-38.658-98.8-91.145-99.94-17.813-12.482-40.785-18.491-62.791-15.985A93.148 93.148 0 0 0 272 118.847V83.2C272 37.765 234.416 0 188.8 0c-45.099 0-83.2 38.101-83.2 83.2zm118.4 0v91.026c14.669-12.837 42.825-14.415 61.05 4.95 19.646-11.227 45.624-1.687 53.625 12.925 39.128-6.524 61.325 10.076 61.325 50.6V264c0 45.491-35.913 77.21-39.676 120H183.571c-2.964-25.239-21.222-42.966-39.596-59.075-12.65-11.275-25.3-21.725-39.875-30.799C80.712 279.645 48 267.994 48 259.2c0-23.375 8.8-44 35.2-44 35.2 0 53.075 26.4 70.4 26.4V83.2c0-18.425 16.5-35.2 35.2-35.2 18.975 0 35.2 16.225 35.2 35.2zM352 424c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z"] }; +var faHandPointer = { prefix: 'far', iconName: 'hand-pointer', icon: [448, 512, [], "f25a", "M358.182 179.361c-19.493-24.768-52.679-31.945-79.872-19.098-15.127-15.687-36.182-22.487-56.595-19.629V67c0-36.944-29.736-67-66.286-67S89.143 30.056 89.143 67v161.129c-19.909-7.41-43.272-5.094-62.083 8.872-29.355 21.795-35.793 63.333-14.55 93.152l109.699 154.001C134.632 501.59 154.741 512 176 512h178.286c30.802 0 57.574-21.5 64.557-51.797l27.429-118.999A67.873 67.873 0 0 0 448 326v-84c0-46.844-46.625-79.273-89.818-62.639zM80.985 279.697l27.126 38.079c8.995 12.626 29.031 6.287 29.031-9.283V67c0-25.12 36.571-25.16 36.571 0v175c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16v-35c0-25.12 36.571-25.16 36.571 0v35c0 8.836 7.163 16 16 16H272c8.837 0 16-7.164 16-16v-21c0-25.12 36.571-25.16 36.571 0v21c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16 0-25.121 36.571-25.16 36.571 0v84c0 1.488-.169 2.977-.502 4.423l-27.43 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H176c-5.769 0-11.263-2.878-14.697-7.697l-109.712-154c-14.406-20.223 14.994-42.818 29.394-22.606zM176.143 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.733 0-14-7.163-14-16zm75.428 0v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16zM327 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16z"] }; +var faHandRock = { prefix: 'far', iconName: 'hand-rock', icon: [512, 512, [], "f255", "M408.864 79.052c-22.401-33.898-66.108-42.273-98.813-23.588-29.474-31.469-79.145-31.093-108.334-.022-47.16-27.02-108.71 5.055-110.671 60.806C44.846 105.407 0 140.001 0 187.429v56.953c0 32.741 14.28 63.954 39.18 85.634l97.71 85.081c4.252 3.702 3.11 5.573 3.11 32.903 0 17.673 14.327 32 32 32h252c17.673 0 32-14.327 32-32 0-23.513-1.015-30.745 3.982-42.37l42.835-99.656c6.094-14.177 9.183-29.172 9.183-44.568V146.963c0-52.839-54.314-88.662-103.136-67.911zM464 261.406a64.505 64.505 0 0 1-5.282 25.613l-42.835 99.655c-5.23 12.171-7.883 25.04-7.883 38.25V432H188v-10.286c0-16.37-7.14-31.977-19.59-42.817l-97.71-85.08C56.274 281.255 48 263.236 48 244.381v-56.953c0-33.208 52-33.537 52 .677v41.228a16 16 0 0 0 5.493 12.067l7 6.095A16 16 0 0 0 139 235.429V118.857c0-33.097 52-33.725 52 .677v26.751c0 8.836 7.164 16 16 16h7c8.836 0 16-7.164 16-16v-41.143c0-33.134 52-33.675 52 .677v40.466c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16v-27.429c0-33.03 52-33.78 52 .677v26.751c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16 0-33.146 52-33.613 52 .677v114.445z"] }; +var faHandScissors = { prefix: 'far', iconName: 'hand-scissors', icon: [512, 512, [], "f257", "M256 480l70-.013c5.114 0 10.231-.583 15.203-1.729l118.999-27.427C490.56 443.835 512 417.02 512 386.277V180.575c0-23.845-13.03-45.951-34.005-57.69l-97.999-54.853c-34.409-19.261-67.263-5.824-92.218 24.733L142.85 37.008c-37.887-14.579-80.612 3.727-95.642 41.201-15.098 37.642 3.635 80.37 41.942 95.112L168 192l-94-9.141c-40.804 0-74 32.811-74 73.14 0 40.33 33.196 73.141 74 73.141h87.635c-3.675 26.245 8.692 51.297 30.341 65.006C178.657 436.737 211.044 480 256 480zm0-48.013c-25.16 0-25.12-36.567 0-36.567 8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16h-28c-25.159 0-25.122-36.567 0-36.567h28c8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16H74c-34.43 0-34.375-50.281 0-50.281h182c8.837 0 16-7.163 16-16v-11.632a16 16 0 0 0-10.254-14.933L106.389 128.51c-31.552-12.14-13.432-59.283 19.222-46.717l166.549 64.091a16.001 16.001 0 0 0 18.139-4.812l21.764-26.647c5.82-7.127 16.348-9.064 24.488-4.508l98 54.854c5.828 3.263 9.449 9.318 9.449 15.805v205.701c0 8.491-5.994 15.804-14.576 17.782l-119.001 27.427a19.743 19.743 0 0 1-4.423.502h-70z"] }; +var faHandSpock = { prefix: 'far', iconName: 'hand-spock', icon: [512, 512, [], "f259", "M21.096 381.79l129.092 121.513a32 32 0 0 0 21.932 8.698h237.6c14.17 0 26.653-9.319 30.68-22.904l31.815-107.313A115.955 115.955 0 0 0 477 348.811v-36.839c0-4.051.476-8.104 1.414-12.045l31.73-133.41c10.099-42.412-22.316-82.738-65.544-82.525-4.144-24.856-22.543-47.165-49.85-53.992-35.803-8.952-72.227 12.655-81.25 48.75L296.599 184 274.924 52.01c-8.286-36.07-44.303-58.572-80.304-50.296-29.616 6.804-50.138 32.389-51.882 61.295-42.637.831-73.455 40.563-64.071 81.844l31.04 136.508c-27.194-22.515-67.284-19.992-91.482 5.722-25.376 26.961-24.098 69.325 2.871 94.707zm32.068-61.811l.002-.001c7.219-7.672 19.241-7.98 26.856-.813l53.012 49.894C143.225 378.649 160 371.4 160 357.406v-69.479c0-1.193-.134-2.383-.397-3.546l-34.13-150.172c-5.596-24.617 31.502-32.86 37.054-8.421l30.399 133.757a16 16 0 0 0 15.603 12.454h8.604c10.276 0 17.894-9.567 15.594-19.583l-41.62-181.153c-5.623-24.469 31.39-33.076 37.035-8.508l45.22 196.828A16 16 0 0 0 288.956 272h13.217a16 16 0 0 0 15.522-12.119l42.372-169.49c6.104-24.422 42.962-15.159 36.865 9.217L358.805 252.12c-2.521 10.088 5.115 19.88 15.522 19.88h9.694a16 16 0 0 0 15.565-12.295L426.509 146.6c5.821-24.448 42.797-15.687 36.966 8.802L431.72 288.81a100.094 100.094 0 0 0-2.72 23.162v36.839c0 6.548-.943 13.051-2.805 19.328L397.775 464h-219.31L53.978 346.836c-7.629-7.18-7.994-19.229-.814-26.857z"] }; +var faHandshake = { prefix: 'far', iconName: 'handshake', icon: [640, 512, [], "f2b5", "M519.2 127.9l-47.6-47.6A56.252 56.252 0 0 0 432 64H205.2c-14.8 0-29.1 5.9-39.6 16.3L118 127.9H0v255.7h64c17.6 0 31.8-14.2 31.9-31.7h9.1l84.6 76.4c30.9 25.1 73.8 25.7 105.6 3.8 12.5 10.8 26 15.9 41.1 15.9 18.2 0 35.3-7.4 48.8-24 22.1 8.7 48.2 2.6 64-16.8l26.2-32.3c5.6-6.9 9.1-14.8 10.9-23h57.9c.1 17.5 14.4 31.7 31.9 31.7h64V127.9H519.2zM48 351.6c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16zm390-6.9l-26.1 32.2c-2.8 3.4-7.8 4-11.3 1.2l-23.9-19.4-30 36.5c-6 7.3-15 4.8-18 2.4l-36.8-31.5-15.6 19.2c-13.9 17.1-39.2 19.7-55.3 6.6l-97.3-88H96V175.8h41.9l61.7-61.6c2-.8 3.7-1.5 5.7-2.3H262l-38.7 35.5c-29.4 26.9-31.1 72.3-4.4 101.3 14.8 16.2 61.2 41.2 101.5 4.4l8.2-7.5 108.2 87.8c3.4 2.8 3.9 7.9 1.2 11.3zm106-40.8h-69.2c-2.3-2.8-4.9-5.4-7.7-7.7l-102.7-83.4 12.5-11.4c6.5-6 7-16.1 1-22.6L367 167.1c-6-6.5-16.1-6.9-22.6-1l-55.2 50.6c-9.5 8.7-25.7 9.4-34.6 0-9.3-9.9-8.5-25.1 1.2-33.9l65.6-60.1c7.4-6.8 17-10.5 27-10.5l83.7-.2c2.1 0 4.1.8 5.5 2.3l61.7 61.6H544v128zm48 47.7c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16z"] }; +var faHdd = { prefix: 'far', iconName: 'hdd', icon: [576, 512, [], "f0a0", "M567.403 235.642L462.323 84.589A48 48 0 0 0 422.919 64H153.081a48 48 0 0 0-39.404 20.589L8.597 235.642A48.001 48.001 0 0 0 0 263.054V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V263.054c0-9.801-3-19.366-8.597-27.412zM153.081 112h269.838l77.913 112H75.168l77.913-112zM528 400H48V272h480v128zm-32-64c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32zm-96 0c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32z"] }; +var faHeart = { prefix: 'far', iconName: 'heart', icon: [512, 512, [], "f004", "M458.4 64.3C400.6 15.7 311.3 23 256 79.3 200.7 23 111.4 15.6 53.6 64.3-21.6 127.6-10.6 230.8 43 285.5l175.4 178.7c10 10.2 23.4 15.9 37.6 15.9 14.3 0 27.6-5.6 37.6-15.8L469 285.6c53.5-54.7 64.7-157.9-10.6-221.3zm-23.6 187.5L259.4 430.5c-2.4 2.4-4.4 2.4-6.8 0L77.2 251.8c-36.5-37.2-43.9-107.6 7.3-150.7 38.9-32.7 98.9-27.8 136.5 10.5l35 35.7 35-35.7c37.8-38.5 97.8-43.2 136.5-10.6 51.1 43.1 43.5 113.9 7.3 150.8z"] }; +var faHospital = { prefix: 'far', iconName: 'hospital', icon: [448, 512, [], "f0f8", "M128 244v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12zm140 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm-76 84v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm76 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm180 124v36H0v-36c0-6.627 5.373-12 12-12h19.5V85.035C31.5 73.418 42.245 64 55.5 64H144V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v40h88.5c13.255 0 24 9.418 24 21.035V464H436c6.627 0 12 5.373 12 12zM79.5 463H192v-67c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v67h112.5V112H304v24c0 13.255-10.745 24-24 24H168c-13.255 0-24-10.745-24-24v-24H79.5v351zM266 64h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6z"] }; +var faHourglass = { prefix: 'far', iconName: 'hourglass', icon: [384, 512, [], "f254", "M368 48h4c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12H12C5.373 0 0 5.373 0 12v24c0 6.627 5.373 12 12 12h4c0 80.564 32.188 165.807 97.18 208C47.899 298.381 16 383.9 16 464h-4c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12h-4c0-80.564-32.188-165.807-97.18-208C336.102 213.619 368 128.1 368 48zM64 48h256c0 101.62-57.307 184-128 184S64 149.621 64 48zm256 416H64c0-101.62 57.308-184 128-184s128 82.38 128 184z"] }; +var faIdBadge = { prefix: 'far', iconName: 'id-badge', icon: [384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm0 464H48V48h288v416zM144 112h96c8.8 0 16-7.2 16-16s-7.2-16-16-16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16zm48 176c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"] }; +var faIdCard = { prefix: 'far', iconName: 'id-card', icon: [576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H303.2c.9-4.5.8 3.6.8-22.4 0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6 0 26-.2 17.9.8 22.4H48V144h480v288zm-168-80h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm-168 96c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z"] }; +var faImage = { prefix: 'far', iconName: 'image', icon: [512, 512, [], "f03e", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 336H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v276a6 6 0 0 1-6 6zM128 152c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zM96 352h320v-80l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L192 304l-39.515-39.515c-4.686-4.686-12.284-4.686-16.971 0L96 304v48z"] }; +var faImages = { prefix: 'far', iconName: 'images', icon: [576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v48H54a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6v-10h48zm42-336H150a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6V86a6 6 0 0 0-6-6zm6-48c26.51 0 48 21.49 48 48v256c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h384zM264 144c0 22.091-17.909 40-40 40s-40-17.909-40-40 17.909-40 40-40 40 17.909 40 40zm-72 96l39.515-39.515c4.686-4.686 12.284-4.686 16.971 0L288 240l103.515-103.515c4.686-4.686 12.284-4.686 16.971 0L480 208v80H192v-48z"] }; +var faKeyboard = { prefix: 'far', iconName: 'keyboard', icon: [576, 512, [], "f11c", "M528 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm8 336c0 4.411-3.589 8-8 8H48c-4.411 0-8-3.589-8-8V112c0-4.411 3.589-8 8-8h480c4.411 0 8 3.589 8 8v288zM170 270v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-336 82v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm384 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zM122 188v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-98 158v-16c0-6.627-5.373-12-12-12H180c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h216c6.627 0 12-5.373 12-12z"] }; +var faLemon = { prefix: 'far', iconName: 'lemon', icon: [512, 512, [], "f094", "M484.112 27.889C455.989-.233 416.108-8.057 387.059 8.865 347.604 31.848 223.504-41.111 91.196 91.197-41.277 223.672 31.923 347.472 8.866 387.058c-16.922 29.051-9.1 68.932 19.022 97.054 28.135 28.135 68.011 35.938 97.057 19.021 39.423-22.97 163.557 49.969 295.858-82.329 132.474-132.477 59.273-256.277 82.331-295.861 16.922-29.05 9.1-68.931-19.022-97.054zm-22.405 72.894c-38.8 66.609 45.6 165.635-74.845 286.08-120.44 120.443-219.475 36.048-286.076 74.843-22.679 13.207-64.035-27.241-50.493-50.488 38.8-66.609-45.6-165.635 74.845-286.08C245.573 4.702 344.616 89.086 411.219 50.292c22.73-13.24 64.005 27.288 50.488 50.491zm-169.861 8.736c1.37 10.96-6.404 20.957-17.365 22.327-54.846 6.855-135.779 87.787-142.635 142.635-1.373 10.989-11.399 18.734-22.326 17.365-10.961-1.37-18.735-11.366-17.365-22.326 9.162-73.286 104.167-168.215 177.365-177.365 10.953-1.368 20.956 6.403 22.326 17.364z"] }; +var faLifeRing = { prefix: 'far', iconName: 'life-ring', icon: [512, 512, [], "f1cd", "M256 504c136.967 0 248-111.033 248-248S392.967 8 256 8 8 119.033 8 256s111.033 248 248 248zm-103.398-76.72l53.411-53.411c31.806 13.506 68.128 13.522 99.974 0l53.411 53.411c-63.217 38.319-143.579 38.319-206.796 0zM336 256c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zm91.28 103.398l-53.411-53.411c13.505-31.806 13.522-68.128 0-99.974l53.411-53.411c38.319 63.217 38.319 143.579 0 206.796zM359.397 84.72l-53.411 53.411c-31.806-13.505-68.128-13.522-99.973 0L152.602 84.72c63.217-38.319 143.579-38.319 206.795 0zM84.72 152.602l53.411 53.411c-13.506 31.806-13.522 68.128 0 99.974L84.72 359.398c-38.319-63.217-38.319-143.579 0-206.796z"] }; +var faLightbulb = { prefix: 'far', iconName: 'lightbulb', icon: [384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zM128 176c0-35.29 28.71-64 64-64 8.837 0 16-7.164 16-16s-7.163-16-16-16c-52.935 0-96 43.065-96 96 0 8.836 7.164 16 16 16s16-7.164 16-16zm64-128c70.734 0 128 57.254 128 128 0 77.602-37.383 60.477-80.98 160h-94.04C101.318 236.33 64 253.869 64 176c0-70.735 57.254-128 128-128m0-48C94.805 0 16 78.803 16 176c0 101.731 51.697 91.541 90.516 192.674 3.55 9.249 12.47 15.326 22.376 15.326h126.215c9.906 0 18.826-6.078 22.376-15.326C316.303 267.541 368 277.731 368 176 368 78.803 289.195 0 192 0z"] }; +var faListAlt = { prefix: 'far', iconName: 'list-alt', icon: [512, 512, [], "f022", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zm-42-92v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm-252 12c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36z"] }; +var faMap = { prefix: 'far', iconName: 'map', icon: [576, 512, [], "f279", "M508.505 36.17L381.517 92.576 207.179 34.463a47.992 47.992 0 0 0-34.674 1.674l-144 64A48 48 0 0 0 0 144v287.967c0 34.938 35.991 57.864 67.495 43.863l126.988-56.406 174.339 58.113a47.992 47.992 0 0 0 34.674-1.674l144-64A48 48 0 0 0 576 368V80.033c0-34.938-35.991-57.864-67.495-43.863zM360 424l-144-48V88l144 48v288zm-312 8V144l120-53.333v288L48 432zm480-64l-120 53.333v-288L528 80v288z"] }; +var faMeh = { prefix: 'far', iconName: 'meh', icon: [496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm8 144H160c-13.2 0-24 10.8-24 24s10.8 24 24 24h176c13.2 0 24-10.8 24-24s-10.8-24-24-24z"] }; +var faMinusSquare = { prefix: 'far', iconName: 'minus-square', icon: [448, 512, [], "f146", "M108 284c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h232c6.6 0 12 5.4 12 12v32c0 6.6-5.4 12-12 12H108zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faMoneyBillAlt = { prefix: 'far', iconName: 'money-bill-alt', icon: [640, 512, [], "f3d1", "M320 144c-53.02 0-96 50.14-96 112 0 61.85 42.98 112 96 112 53 0 96-50.13 96-112 0-61.86-42.98-112-96-112zm40 168c0 4.42-3.58 8-8 8h-64c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h16v-55.44l-.47.31a7.992 7.992 0 0 1-11.09-2.22l-8.88-13.31a7.992 7.992 0 0 1 2.22-11.09l15.33-10.22a23.99 23.99 0 0 1 13.31-4.03H328c4.42 0 8 3.58 8 8v88h16c4.42 0 8 3.58 8 8v16zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zm-16 272c-35.35 0-64 28.65-64 64H112c0-35.35-28.65-64-64-64V176c35.35 0 64-28.65 64-64h416c0 35.35 28.65 64 64 64v160z"] }; +var faMoon = { prefix: 'far', iconName: 'moon', icon: [512, 512, [], "f186", "M279.135 512c78.756 0 150.982-35.804 198.844-94.775 28.27-34.831-2.558-85.722-46.249-77.401-82.348 15.683-158.272-47.268-158.272-130.792 0-48.424 26.06-92.292 67.434-115.836 38.745-22.05 28.999-80.788-15.022-88.919A257.936 257.936 0 0 0 279.135 0c-141.36 0-256 114.575-256 256 0 141.36 114.576 256 256 256zm0-464c12.985 0 25.689 1.201 38.016 3.478-54.76 31.163-91.693 90.042-91.693 157.554 0 113.848 103.641 199.2 215.252 177.944C402.574 433.964 344.366 464 279.135 464c-114.875 0-208-93.125-208-208s93.125-208 208-208z"] }; +var faNewspaper = { prefix: 'far', iconName: 'newspaper', icon: [576, 512, [], "f1ea", "M552 64H112c-20.858 0-38.643 13.377-45.248 32H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h496c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24zM48 392V144h16v248c0 4.411-3.589 8-8 8s-8-3.589-8-8zm480 8H111.422c.374-2.614.578-5.283.578-8V112h416v288zM172 280h136c6.627 0 12-5.373 12-12v-96c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v96c0 6.627 5.373 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H172c-6.627 0-12-5.373-12-12zm192 0v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0-144v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0 72v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12z"] }; +var faObjectGroup = { prefix: 'far', iconName: 'object-group', icon: [512, 512, [], "f247", "M500 128c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v256H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V128h12zm-52-64h32v32h-32V64zM32 64h32v32H32V64zm32 384H32v-32h32v32zm416 0h-32v-32h32v32zm-40-64h-12c-6.627 0-12 5.373-12 12v12H96v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h12v256zm-36-192h-84v-52c0-6.628-5.373-12-12-12H108c-6.627 0-12 5.372-12 12v168c0 6.628 5.373 12 12 12h84v52c0 6.628 5.373 12 12 12h200c6.627 0 12-5.372 12-12V204c0-6.628-5.373-12-12-12zm-268-24h144v112H136V168zm240 176H232v-24h76c6.627 0 12-5.372 12-12v-76h56v112z"] }; +var faObjectUngroup = { prefix: 'far', iconName: 'object-ungroup', icon: [576, 512, [], "f248", "M564 224c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12h-88v-24h12c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v160H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h88v24h-12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V224h12zM352 64h32v32h-32V64zm0 256h32v32h-32v-32zM64 352H32v-32h32v32zm0-256H32V64h32v32zm32 216v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h12v160h-12c-6.627 0-12 5.373-12 12v12H96zm128 136h-32v-32h32v32zm280-64h-12c-6.627 0-12 5.373-12 12v12H256v-12c0-6.627-5.373-12-12-12h-12v-24h88v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12v-88h88v12c0 6.627 5.373 12 12 12h12v160zm40 64h-32v-32h32v32zm0-256h-32v-32h32v32z"] }; +var faPaperPlane = { prefix: 'far', iconName: 'paper-plane', icon: [512, 512, [], "f1d8", "M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z"] }; +var faPauseCircle = { prefix: 'far', iconName: 'pause-circle', icon: [512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm96-280v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16zm-112 0v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16z"] }; +var faPlayCircle = { prefix: 'far', iconName: 'play-circle', icon: [512, 512, [], "f144", "M371.7 238l-176-107c-15.8-8.8-35.7 2.5-35.7 21v208c0 18.4 19.8 29.8 35.7 21l176-101c16.4-9.1 16.4-32.8 0-42zM504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256z"] }; +var faPlusSquare = { prefix: 'far', iconName: 'plus-square', icon: [448, 512, [], "f0fe", "M352 240v32c0 6.6-5.4 12-12 12h-88v88c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-88h-88c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h88v-88c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v88h88c6.6 0 12 5.4 12 12zm96-160v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faQuestionCircle = { prefix: 'far', iconName: 'question-circle', icon: [512, 512, [], "f059", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 448c-110.532 0-200-89.431-200-200 0-110.495 89.472-200 200-200 110.491 0 200 89.471 200 200 0 110.53-89.431 200-200 200zm107.244-255.2c0 67.052-72.421 68.084-72.421 92.863V300c0 6.627-5.373 12-12 12h-45.647c-6.627 0-12-5.373-12-12v-8.659c0-35.745 27.1-50.034 47.579-61.516 17.561-9.845 28.324-16.541 28.324-29.579 0-17.246-21.999-28.693-39.784-28.693-23.189 0-33.894 10.977-48.942 29.969-4.057 5.12-11.46 6.071-16.666 2.124l-27.824-21.098c-5.107-3.872-6.251-11.066-2.644-16.363C184.846 131.491 214.94 112 261.794 112c49.071 0 101.45 38.304 101.45 88.8zM298 368c0 23.159-18.841 42-42 42s-42-18.841-42-42 18.841-42 42-42 42 18.841 42 42z"] }; +var faRegistered = { prefix: 'far', iconName: 'registered', icon: [512, 512, [], "f25d", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm110.442-81.791c-53.046-96.284-50.25-91.468-53.271-96.085 24.267-13.879 39.482-41.563 39.482-73.176 0-52.503-30.247-85.252-101.498-85.252h-78.667c-6.617 0-12 5.383-12 12V380c0 6.617 5.383 12 12 12h38.568c6.617 0 12-5.383 12-12v-83.663h31.958l47.515 89.303a11.98 11.98 0 0 0 10.593 6.36h42.81c9.14 0 14.914-9.799 10.51-17.791zM256.933 239.906h-33.875v-64.14h27.377c32.417 0 38.929 12.133 38.929 31.709-.001 20.913-11.518 32.431-32.431 32.431z"] }; +var faSave = { prefix: 'far', iconName: 'save', icon: [448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM272 80v80H144V80h128zm122 352H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h42v104c0 13.255 10.745 24 24 24h176c13.255 0 24-10.745 24-24V83.882l78.243 78.243a6 6 0 0 1 1.757 4.243V426a6 6 0 0 1-6 6zM224 232c-48.523 0-88 39.477-88 88s39.477 88 88 88 88-39.477 88-88-39.477-88-88-88zm0 128c-22.056 0-40-17.944-40-40s17.944-40 40-40 40 17.944 40 40-17.944 40-40 40z"] }; +var faShareSquare = { prefix: 'far', iconName: 'share-square', icon: [576, 512, [], "f14d", "M561.938 158.06L417.94 14.092C387.926-15.922 336 5.097 336 48.032v57.198c-42.45 1.88-84.03 6.55-120.76 17.99-35.17 10.95-63.07 27.58-82.91 49.42C108.22 199.2 96 232.6 96 271.94c0 61.697 33.178 112.455 84.87 144.76 37.546 23.508 85.248-12.651 71.02-55.74-15.515-47.119-17.156-70.923 84.11-78.76V336c0 42.993 51.968 63.913 81.94 33.94l143.998-144c18.75-18.74 18.75-49.14 0-67.88zM384 336V232.16C255.309 234.082 166.492 255.35 206.31 376 176.79 357.55 144 324.08 144 271.94c0-109.334 129.14-118.947 240-119.85V48l144 144-144 144zm24.74 84.493a82.658 82.658 0 0 0 20.974-9.303c7.976-4.952 18.286.826 18.286 10.214V464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h132c6.627 0 12 5.373 12 12v4.486c0 4.917-2.987 9.369-7.569 11.152-13.702 5.331-26.396 11.537-38.05 18.585a12.138 12.138 0 0 1-6.28 1.777H54a6 6 0 0 0-6 6v340a6 6 0 0 0 6 6h340a6 6 0 0 0 6-6v-25.966c0-5.37 3.579-10.059 8.74-11.541z"] }; +var faSmile = { prefix: 'far', iconName: 'smile', icon: [496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm84-143.4c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.6-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.2-8.4-25.3-7.1-33.8 3.1zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z"] }; +var faSnowflake = { prefix: 'far', iconName: 'snowflake', icon: [448, 512, [], "f2dc", "M438.237 355.927l-66.574-38.54 59.448-10.327c5.846-1.375 10.609-5.183 13.458-10.13 2.48-4.307 3.506-9.478 2.524-14.651-2.11-11.115-12.686-18.039-23.621-15.467l-85.423 31.115L255.914 256l82.136-41.926 85.423 31.115c10.936 2.572 21.512-4.352 23.621-15.467 2.111-11.115-5.046-22.209-15.981-24.781l-59.448-10.327 66.573-38.54c9.54-5.523 12.615-18.092 6.867-28.074-5.748-9.982-18.14-13.596-27.68-8.074l-66.574 38.54 20.805-56.787c3.246-10.782-2.758-22.542-13.413-26.268-10.654-3.725-21.922 1.997-25.168 12.779l-15.838 89.735-72.423 41.926V136l69.585-58.621c7.689-8.21 6.997-20.856-1.548-28.245-8.545-7.391-21.705-6.723-29.394 1.486l-38.644 46.46V20c0-11.046-9.318-20-20.813-20s-20.813 8.954-20.813 20v77.08l-38.644-46.46c-7.689-8.21-20.849-8.876-29.394-1.486-8.544 7.389-9.236 20.035-1.547 28.245L203.187 136v83.853l-72.423-41.926-15.838-89.736c-3.247-10.782-14.515-16.504-25.169-12.779-10.656 3.725-16.659 15.486-13.413 26.268l20.805 56.787-66.573-38.54c-9.54-5.523-21.933-1.908-27.68 8.074s-2.673 22.551 6.867 28.074l66.574 38.54-59.449 10.328C5.953 207.515-1.202 218.609.907 229.724c2.11 11.114 12.686 18.038 23.622 15.466l85.422-31.115L192.086 256l-82.136 41.926-85.423-31.115c-10.936-2.572-21.511 4.352-23.622 15.466-2.109 11.113 5.046 22.209 15.981 24.781l59.449 10.328-66.574 38.54C.223 361.449-2.852 374.018 2.896 384s18.14 13.597 27.68 8.074l66.574-38.54-20.805 56.786c-1.735 5.764-.828 11.805 2.02 16.751 2.48 4.307 6.433 7.784 11.392 9.517 10.655 3.725 21.923-1.997 25.169-12.779l15.838-89.736 72.423-41.926V376l-69.585 58.621c-7.69 8.21-6.997 20.855 1.547 28.245 8.544 7.388 21.705 6.723 29.394-1.487l38.644-46.46V492c0 11.046 9.318 20 20.813 20s20.813-8.954 20.813-20v-77.081l38.644 46.46c4.111 4.389 9.782 6.621 15.478 6.621 4.96 0 9.939-1.694 13.916-5.134 8.545-7.39 9.237-20.035 1.548-28.245L244.813 376v-83.853l72.423 41.926 15.838 89.736c3.246 10.782 14.514 16.504 25.168 12.779 10.653-3.726 16.659-15.487 13.412-26.268l-20.805-56.787 66.574 38.54c9.54 5.523 21.933 1.908 27.68-8.074 5.749-9.981 2.675-22.55-6.866-28.072z"] }; +var faSquare = { prefix: 'far', iconName: 'square', icon: [448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h340c3.3 0 6 2.7 6 6v340c0 3.3-2.7 6-6 6z"] }; +var faStar = { prefix: 'far', iconName: 'star', icon: [576, 512, [], "f005", "M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z"] }; +var faStarHalf = { prefix: 'far', iconName: 'star-half', icon: [576, 512, [], "f089", "M288 385.3l-124.3 65.4 23.7-138.4-100.6-98 139-20.2 62.2-126V0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6v-54.3z"] }; +var faStickyNote = { prefix: 'far', iconName: 'sticky-note', icon: [448, 512, [], "f249", "M448 348.106V80c0-26.51-21.49-48-48-48H48C21.49 32 0 53.49 0 80v351.988c0 26.51 21.49 48 48 48h268.118a48 48 0 0 0 33.941-14.059l83.882-83.882A48 48 0 0 0 448 348.106zm-128 80v-76.118h76.118L320 428.106zM400 80v223.988H296c-13.255 0-24 10.745-24 24v104H48V80h352z"] }; +var faStopCircle = { prefix: 'far', iconName: 'stop-circle', icon: [512, 512, [], "f28d", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm296-80v160c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16z"] }; +var faSun = { prefix: 'far', iconName: 'sun', icon: [512, 512, [], "f185", "M220.116 487.936l-20.213-49.425a3.992 3.992 0 0 0-5.808-1.886l-45.404 28.104c-29.466 18.24-66.295-8.519-58.054-42.179l12.699-51.865a3.993 3.993 0 0 0-3.59-4.941l-53.251-3.951c-34.554-2.562-48.632-45.855-22.174-68.247L65.08 259.05a3.992 3.992 0 0 0 0-6.106l-40.76-34.497c-26.45-22.384-12.39-65.682 22.174-68.246l53.251-3.951a3.993 3.993 0 0 0 3.59-4.941L90.637 89.443c-8.239-33.656 28.581-60.42 58.054-42.179l45.403 28.104a3.993 3.993 0 0 0 5.808-1.887l20.213-49.425c13.116-32.071 58.638-32.081 71.758 0l20.212 49.424a3.994 3.994 0 0 0 5.809 1.887l45.403-28.104c29.464-18.236 66.297 8.513 58.054 42.179l-12.699 51.865a3.995 3.995 0 0 0 3.59 4.941l53.251 3.951c34.553 2.563 48.633 45.854 22.175 68.246l-40.76 34.497a3.993 3.993 0 0 0 0 6.107l40.76 34.496c26.511 22.441 12.322 65.689-22.175 68.247l-53.251 3.951a3.993 3.993 0 0 0-3.589 4.942l12.698 51.864c8.241 33.658-28.583 60.421-58.054 42.18l-45.403-28.104a3.994 3.994 0 0 0-5.809 1.887l-20.212 49.424c-13.159 32.178-58.675 31.993-71.757 0zm16.814-64.568l19.064 46.616 19.064-46.615c10.308-25.2 40.778-35.066 63.892-20.759l42.822 26.507-11.976-48.919c-6.475-26.444 12.38-52.339 39.487-54.349l50.226-3.726-38.444-32.536c-20.782-17.591-20.747-49.621.001-67.18l38.442-32.536-50.225-3.727c-27.151-2.015-45.95-27.948-39.488-54.349l11.978-48.919-42.823 26.507c-23.151 14.327-53.603 4.4-63.892-20.76l-19.064-46.615-19.064 46.617c-10.305 25.198-40.778 35.066-63.891 20.76l-42.823-26.508 11.977 48.918c6.474 26.446-12.381 52.338-39.488 54.35l-50.224 3.726 38.443 32.537c20.782 17.588 20.747 49.619 0 67.178L52.48 322.123l50.226 3.726c27.151 2.014 45.95 27.947 39.487 54.349l-11.977 48.919 42.823-26.507c23.188-14.355 53.622-4.352 63.891 20.758zM256 384c-70.58 0-128-57.421-128-128 0-70.58 57.42-128 128-128 70.579 0 128 57.42 128 128 0 70.579-57.421 128-128 128zm0-208c-44.112 0-80 35.888-80 80s35.888 80 80 80 80-35.888 80-80-35.888-80-80-80z"] }; +var faThumbsDown = { prefix: 'far', iconName: 'thumbs-down', icon: [512, 512, [], "f165", "M466.27 225.31c4.674-22.647.864-44.538-8.99-62.99 2.958-23.868-4.021-48.565-17.34-66.99C438.986 39.423 404.117 0 327 0c-7 0-15 .01-22.22.01C201.195.01 168.997 40 128 40h-10.845c-5.64-4.975-13.042-8-21.155-8H32C14.327 32 0 46.327 0 64v240c0 17.673 14.327 32 32 32h64c11.842 0 22.175-6.438 27.708-16h7.052c19.146 16.953 46.013 60.653 68.76 83.4 13.667 13.667 10.153 108.6 71.76 108.6 57.58 0 95.27-31.936 95.27-104.73 0-18.41-3.93-33.73-8.85-46.54h36.48c48.602 0 85.82-41.565 85.82-85.58 0-19.15-4.96-34.99-13.73-49.84zM64 296c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm330.18 16.73H290.19c0 37.82 28.36 55.37 28.36 94.54 0 23.75 0 56.73-47.27 56.73-18.91-18.91-9.46-66.18-37.82-94.54C206.9 342.89 167.28 272 138.92 272H128V85.83c53.611 0 100.001-37.82 171.64-37.82h37.82c35.512 0 60.82 17.12 53.12 65.9 15.2 8.16 26.5 36.44 13.94 57.57 21.581 20.384 18.699 51.065 5.21 65.62 9.45 0 22.36 18.91 22.27 37.81-.09 18.91-16.71 37.82-37.82 37.82z"] }; +var faThumbsUp = { prefix: 'far', iconName: 'thumbs-up', icon: [512, 512, [], "f164", "M466.27 286.69C475.04 271.84 480 256 480 236.85c0-44.015-37.218-85.58-85.82-85.58H357.7c4.92-12.81 8.85-28.13 8.85-46.54C366.55 31.936 328.86 0 271.28 0c-61.607 0-58.093 94.933-71.76 108.6-22.747 22.747-49.615 66.447-68.76 83.4H32c-17.673 0-32 14.327-32 32v240c0 17.673 14.327 32 32 32h64c14.893 0 27.408-10.174 30.978-23.95 44.509 1.001 75.06 39.94 177.802 39.94 7.22 0 15.22.01 22.22.01 77.117 0 111.986-39.423 112.94-95.33 13.319-18.425 20.299-43.122 17.34-66.99 9.854-18.452 13.664-40.343 8.99-62.99zm-61.75 53.83c12.56 21.13 1.26 49.41-13.94 57.57 7.7 48.78-17.608 65.9-53.12 65.9h-37.82c-71.639 0-118.029-37.82-171.64-37.82V240h10.92c28.36 0 67.98-70.89 94.54-97.46 28.36-28.36 18.91-75.63 37.82-94.54 47.27 0 47.27 32.98 47.27 56.73 0 39.17-28.36 56.72-28.36 94.54h103.99c21.11 0 37.73 18.91 37.82 37.82.09 18.9-12.82 37.81-22.27 37.81 13.489 14.555 16.371 45.236-5.21 65.62zM88 432c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"] }; +var faTimesCircle = { prefix: 'far', iconName: 'times-circle', icon: [512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm101.8-262.2L295.6 256l62.2 62.2c4.7 4.7 4.7 12.3 0 17l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L256 295.6l-62.2 62.2c-4.7 4.7-12.3 4.7-17 0l-22.6-22.6c-4.7-4.7-4.7-12.3 0-17l62.2-62.2-62.2-62.2c-4.7-4.7-4.7-12.3 0-17l22.6-22.6c4.7-4.7 12.3-4.7 17 0l62.2 62.2 62.2-62.2c4.7-4.7 12.3-4.7 17 0l22.6 22.6c4.7 4.7 4.7 12.3 0 17z"] }; +var faTrashAlt = { prefix: 'far', iconName: 'trash-alt', icon: [448, 512, [], "f2ed", "M192 188v216c0 6.627-5.373 12-12 12h-24c-6.627 0-12-5.373-12-12V188c0-6.627 5.373-12 12-12h24c6.627 0 12 5.373 12 12zm100-12h-24c-6.627 0-12 5.373-12 12v216c0 6.627 5.373 12 12 12h24c6.627 0 12-5.373 12-12V188c0-6.627-5.373-12-12-12zm132-96c13.255 0 24 10.745 24 24v12c0 6.627-5.373 12-12 12h-20v336c0 26.51-21.49 48-48 48H80c-26.51 0-48-21.49-48-48V128H12c-6.627 0-12-5.373-12-12v-12c0-13.255 10.745-24 24-24h74.411l34.018-56.696A48 48 0 0 1 173.589 0h100.823a48 48 0 0 1 41.16 23.304L349.589 80H424zm-269.611 0h139.223L276.16 50.913A6 6 0 0 0 271.015 48h-94.028a6 6 0 0 0-5.145 2.913L154.389 80zM368 128H80v330a6 6 0 0 0 6 6h276a6 6 0 0 0 6-6V128z"] }; +var faUser = { prefix: 'far', iconName: 'user', icon: [448, 512, [], "f007", "M313.6 304c-28.7 0-42.5 16-89.6 16-47.1 0-60.8-16-89.6-16C60.2 304 0 364.2 0 438.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-25.6c0-74.2-60.2-134.4-134.4-134.4zM400 464H48v-25.6c0-47.6 38.8-86.4 86.4-86.4 14.6 0 38.3 16 89.6 16 51.7 0 74.9-16 89.6-16 47.6 0 86.4 38.8 86.4 86.4V464zM224 288c79.5 0 144-64.5 144-144S303.5 0 224 0 80 64.5 80 144s64.5 144 144 144zm0-240c52.9 0 96 43.1 96 96s-43.1 96-96 96-96-43.1-96-96 43.1-96 96-96z"] }; +var faUserCircle = { prefix: 'far', iconName: 'user-circle', icon: [496, 512, [], "f2bd", "M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"] }; +var faWindowClose = { prefix: 'far', iconName: 'window-close', icon: [512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v340zM356.5 194.6L295.1 256l61.4 61.4c4.6 4.6 4.6 12.1 0 16.8l-22.3 22.3c-4.6 4.6-12.1 4.6-16.8 0L256 295.1l-61.4 61.4c-4.6 4.6-12.1 4.6-16.8 0l-22.3-22.3c-4.6-4.6-4.6-12.1 0-16.8l61.4-61.4-61.4-61.4c-4.6-4.6-4.6-12.1 0-16.8l22.3-22.3c4.6-4.6 12.1-4.6 16.8 0l61.4 61.4 61.4-61.4c4.6-4.6 12.1-4.6 16.8 0l22.3 22.3c4.7 4.6 4.7 12.1 0 16.8z"] }; +var faWindowMaximize = { prefix: 'far', iconName: 'window-maximize', icon: [512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V192h416v234z"] }; +var faWindowMinimize = { prefix: 'far', iconName: 'window-minimize', icon: [512, 512, [], "f2d1", "M480 480H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h448c17.7 0 32 14.3 32 32s-14.3 32-32 32z"] }; +var faWindowRestore = { prefix: 'far', iconName: 'window-restore', icon: [512, 512, [], "f2d2", "M464 0H144c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-96 464H48V256h320v208zm96-96h-48V144c0-26.5-21.5-48-48-48H144V48h320v320z"] }; +var icons$1 = { + faAddressBook: faAddressBook, + faAddressCard: faAddressCard, + faArrowAltCircleDown: faArrowAltCircleDown, + faArrowAltCircleLeft: faArrowAltCircleLeft, + faArrowAltCircleRight: faArrowAltCircleRight, + faArrowAltCircleUp: faArrowAltCircleUp, + faBell: faBell, + faBellSlash: faBellSlash, + faBookmark: faBookmark, + faBuilding: faBuilding, + faCalendar: faCalendar, + faCalendarAlt: faCalendarAlt, + faCalendarCheck: faCalendarCheck, + faCalendarMinus: faCalendarMinus, + faCalendarPlus: faCalendarPlus, + faCalendarTimes: faCalendarTimes, + faCaretSquareDown: faCaretSquareDown, + faCaretSquareLeft: faCaretSquareLeft, + faCaretSquareRight: faCaretSquareRight, + faCaretSquareUp: faCaretSquareUp, + faChartBar: faChartBar, + faCheckCircle: faCheckCircle, + faCheckSquare: faCheckSquare, + faCircle: faCircle, + faClipboard: faClipboard, + faClock: faClock, + faClone: faClone, + faClosedCaptioning: faClosedCaptioning, + faComment: faComment, + faCommentAlt: faCommentAlt, + faCommentDots: faCommentDots, + faComments: faComments, + faCompass: faCompass, + faCopy: faCopy, + faCopyright: faCopyright, + faCreditCard: faCreditCard, + faDotCircle: faDotCircle, + faEdit: faEdit, + faEnvelope: faEnvelope, + faEnvelopeOpen: faEnvelopeOpen, + faEye: faEye, + faEyeSlash: faEyeSlash, + faFile: faFile, + faFileAlt: faFileAlt, + faFileArchive: faFileArchive, + faFileAudio: faFileAudio, + faFileCode: faFileCode, + faFileExcel: faFileExcel, + faFileImage: faFileImage, + faFilePdf: faFilePdf, + faFilePowerpoint: faFilePowerpoint, + faFileVideo: faFileVideo, + faFileWord: faFileWord, + faFlag: faFlag, + faFolder: faFolder, + faFolderOpen: faFolderOpen, + faFontAwesomeLogoFull: faFontAwesomeLogoFull, + faFrown: faFrown, + faFutbol: faFutbol, + faGem: faGem, + faHandLizard: faHandLizard, + faHandPaper: faHandPaper, + faHandPeace: faHandPeace, + faHandPointDown: faHandPointDown, + faHandPointLeft: faHandPointLeft, + faHandPointRight: faHandPointRight, + faHandPointUp: faHandPointUp, + faHandPointer: faHandPointer, + faHandRock: faHandRock, + faHandScissors: faHandScissors, + faHandSpock: faHandSpock, + faHandshake: faHandshake, + faHdd: faHdd, + faHeart: faHeart, + faHospital: faHospital, + faHourglass: faHourglass, + faIdBadge: faIdBadge, + faIdCard: faIdCard, + faImage: faImage, + faImages: faImages, + faKeyboard: faKeyboard, + faLemon: faLemon, + faLifeRing: faLifeRing, + faLightbulb: faLightbulb, + faListAlt: faListAlt, + faMap: faMap, + faMeh: faMeh, + faMinusSquare: faMinusSquare, + faMoneyBillAlt: faMoneyBillAlt, + faMoon: faMoon, + faNewspaper: faNewspaper, + faObjectGroup: faObjectGroup, + faObjectUngroup: faObjectUngroup, + faPaperPlane: faPaperPlane, + faPauseCircle: faPauseCircle, + faPlayCircle: faPlayCircle, + faPlusSquare: faPlusSquare, + faQuestionCircle: faQuestionCircle, + faRegistered: faRegistered, + faSave: faSave, + faShareSquare: faShareSquare, + faSmile: faSmile, + faSnowflake: faSnowflake, + faSquare: faSquare, + faStar: faStar, + faStarHalf: faStarHalf, + faStickyNote: faStickyNote, + faStopCircle: faStopCircle, + faSun: faSun, + faThumbsDown: faThumbsDown, + faThumbsUp: faThumbsUp, + faTimesCircle: faTimesCircle, + faTrashAlt: faTrashAlt, + faUser: faUser, + faUserCircle: faUserCircle, + faWindowClose: faWindowClose, + faWindowMaximize: faWindowMaximize, + faWindowMinimize: faWindowMinimize, + faWindowRestore: faWindowRestore +}; + +bunker(function () { + define('far', icons$1); +}); + +exports['default'] = icons$1; +exports.prefix = prefix; +exports.faAddressBook = faAddressBook; +exports.faAddressCard = faAddressCard; +exports.faArrowAltCircleDown = faArrowAltCircleDown; +exports.faArrowAltCircleLeft = faArrowAltCircleLeft; +exports.faArrowAltCircleRight = faArrowAltCircleRight; +exports.faArrowAltCircleUp = faArrowAltCircleUp; +exports.faBell = faBell; +exports.faBellSlash = faBellSlash; +exports.faBookmark = faBookmark; +exports.faBuilding = faBuilding; +exports.faCalendar = faCalendar; +exports.faCalendarAlt = faCalendarAlt; +exports.faCalendarCheck = faCalendarCheck; +exports.faCalendarMinus = faCalendarMinus; +exports.faCalendarPlus = faCalendarPlus; +exports.faCalendarTimes = faCalendarTimes; +exports.faCaretSquareDown = faCaretSquareDown; +exports.faCaretSquareLeft = faCaretSquareLeft; +exports.faCaretSquareRight = faCaretSquareRight; +exports.faCaretSquareUp = faCaretSquareUp; +exports.faChartBar = faChartBar; +exports.faCheckCircle = faCheckCircle; +exports.faCheckSquare = faCheckSquare; +exports.faCircle = faCircle; +exports.faClipboard = faClipboard; +exports.faClock = faClock; +exports.faClone = faClone; +exports.faClosedCaptioning = faClosedCaptioning; +exports.faComment = faComment; +exports.faCommentAlt = faCommentAlt; +exports.faCommentDots = faCommentDots; +exports.faComments = faComments; +exports.faCompass = faCompass; +exports.faCopy = faCopy; +exports.faCopyright = faCopyright; +exports.faCreditCard = faCreditCard; +exports.faDotCircle = faDotCircle; +exports.faEdit = faEdit; +exports.faEnvelope = faEnvelope; +exports.faEnvelopeOpen = faEnvelopeOpen; +exports.faEye = faEye; +exports.faEyeSlash = faEyeSlash; +exports.faFile = faFile; +exports.faFileAlt = faFileAlt; +exports.faFileArchive = faFileArchive; +exports.faFileAudio = faFileAudio; +exports.faFileCode = faFileCode; +exports.faFileExcel = faFileExcel; +exports.faFileImage = faFileImage; +exports.faFilePdf = faFilePdf; +exports.faFilePowerpoint = faFilePowerpoint; +exports.faFileVideo = faFileVideo; +exports.faFileWord = faFileWord; +exports.faFlag = faFlag; +exports.faFolder = faFolder; +exports.faFolderOpen = faFolderOpen; +exports.faFontAwesomeLogoFull = faFontAwesomeLogoFull; +exports.faFrown = faFrown; +exports.faFutbol = faFutbol; +exports.faGem = faGem; +exports.faHandLizard = faHandLizard; +exports.faHandPaper = faHandPaper; +exports.faHandPeace = faHandPeace; +exports.faHandPointDown = faHandPointDown; +exports.faHandPointLeft = faHandPointLeft; +exports.faHandPointRight = faHandPointRight; +exports.faHandPointUp = faHandPointUp; +exports.faHandPointer = faHandPointer; +exports.faHandRock = faHandRock; +exports.faHandScissors = faHandScissors; +exports.faHandSpock = faHandSpock; +exports.faHandshake = faHandshake; +exports.faHdd = faHdd; +exports.faHeart = faHeart; +exports.faHospital = faHospital; +exports.faHourglass = faHourglass; +exports.faIdBadge = faIdBadge; +exports.faIdCard = faIdCard; +exports.faImage = faImage; +exports.faImages = faImages; +exports.faKeyboard = faKeyboard; +exports.faLemon = faLemon; +exports.faLifeRing = faLifeRing; +exports.faLightbulb = faLightbulb; +exports.faListAlt = faListAlt; +exports.faMap = faMap; +exports.faMeh = faMeh; +exports.faMinusSquare = faMinusSquare; +exports.faMoneyBillAlt = faMoneyBillAlt; +exports.faMoon = faMoon; +exports.faNewspaper = faNewspaper; +exports.faObjectGroup = faObjectGroup; +exports.faObjectUngroup = faObjectUngroup; +exports.faPaperPlane = faPaperPlane; +exports.faPauseCircle = faPauseCircle; +exports.faPlayCircle = faPlayCircle; +exports.faPlusSquare = faPlusSquare; +exports.faQuestionCircle = faQuestionCircle; +exports.faRegistered = faRegistered; +exports.faSave = faSave; +exports.faShareSquare = faShareSquare; +exports.faSmile = faSmile; +exports.faSnowflake = faSnowflake; +exports.faSquare = faSquare; +exports.faStar = faStar; +exports.faStarHalf = faStarHalf; +exports.faStickyNote = faStickyNote; +exports.faStopCircle = faStopCircle; +exports.faSun = faSun; +exports.faThumbsDown = faThumbsDown; +exports.faThumbsUp = faThumbsUp; +exports.faTimesCircle = faTimesCircle; +exports.faTrashAlt = faTrashAlt; +exports.faUser = faUser; +exports.faUserCircle = faUserCircle; +exports.faWindowClose = faWindowClose; +exports.faWindowMaximize = faWindowMaximize; +exports.faWindowMinimize = faWindowMinimize; +exports.faWindowRestore = faWindowRestore; + +Object.defineProperty(exports, '__esModule', { value: true }); + +}))); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/package.json b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/package.json new file mode 100644 index 0000000000..89def0a1e9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/package.json @@ -0,0 +1,59 @@ +{ + "description": "The iconic font, CSS, and SVG framework", + "keywords": [ + "font", + "awesome", + "fontawesome", + "icon", + "svg", + "bootstrap" + ], + "homepage": "https://fontawesome.com", + "bugs": { + "url": "http://github.com/FortAwesome/Font-Awesome/issues" + }, + "author": { + "name": "Dave Gandy", + "email": "dave@fontawesome.com", + "web": "http://twitter.com/davegandy" + }, + "contributors": [ + { + "name": "Brian Talbot", + "web": "http://twitter.com/talbs" + }, + { + "name": "Travis Chase", + "web": "http://twitter.com/supercodepoet" + }, + { + "name": "Rob Madole", + "web": "http://twitter.com/robmadole" + }, + { + "name": "Geremia Taglialatela", + "web": "http://twitter.com/gtagliala" + }, + { + "name": "Mike Wilkerson", + "web": "http://twitter.com/mw77" + } + ], + "repository": { + "type": "git", + "url": "https://github.com/FortAwesome/Font-Awesome" + }, + "engines": { + "node": ">=6" + }, + "dependencies": { + "@fortawesome/fontawesome-common-types": "^0.1.7" + }, + "version": "5.0.13", + "name": "@fortawesome/fontawesome-free-regular", + "main": "index.js", + "module": "index.es.js", + "jsnext:main": "index.es.js", + "license": "(CC-BY-4.0 AND MIT)", + "types": "./index.d.ts" +} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/shakable.es.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/shakable.es.js new file mode 100644 index 0000000000..5ea5ecc110 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/shakable.es.js @@ -0,0 +1,248 @@ +/*! + * Font Awesome Free 5.0.13 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +var prefix = "far"; +var faAddressBook = { prefix: 'far', iconName: 'address-book', icon: [448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-68 304H48V48h320v416zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"] }; +var faAddressCard = { prefix: 'far', iconName: 'address-card', icon: [576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H48V80h480v352zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2zM360 320h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8z"] }; +var faArrowAltCircleDown = { prefix: 'far', iconName: 'arrow-alt-circle-down', icon: [512, 512, [], "f358", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm-32-316v116h-67c-10.7 0-16 12.9-8.5 20.5l99 99c4.7 4.7 12.3 4.7 17 0l99-99c7.6-7.6 2.2-20.5-8.5-20.5h-67V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12z"] }; +var faArrowAltCircleLeft = { prefix: 'far', iconName: 'arrow-alt-circle-left', icon: [512, 512, [], "f359", "M8 256c0 137 111 248 248 248s248-111 248-248S393 8 256 8 8 119 8 256zm448 0c0 110.5-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56s200 89.5 200 200zm-72-20v40c0 6.6-5.4 12-12 12H256v67c0 10.7-12.9 16-20.5 8.5l-99-99c-4.7-4.7-4.7-12.3 0-17l99-99c7.6-7.6 20.5-2.2 20.5 8.5v67h116c6.6 0 12 5.4 12 12z"] }; +var faArrowAltCircleRight = { prefix: 'far', iconName: 'arrow-alt-circle-right', icon: [512, 512, [], "f35a", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z"] }; +var faArrowAltCircleUp = { prefix: 'far', iconName: 'arrow-alt-circle-up', icon: [512, 512, [], "f35b", "M256 504c137 0 248-111 248-248S393 8 256 8 8 119 8 256s111 248 248 248zm0-448c110.5 0 200 89.5 200 200s-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56zm20 328h-40c-6.6 0-12-5.4-12-12V256h-67c-10.7 0-16-12.9-8.5-20.5l99-99c4.7-4.7 12.3-4.7 17 0l99 99c7.6 7.6 2.2 20.5-8.5 20.5h-67v116c0 6.6-5.4 12-12 12z"] }; +var faBell = { prefix: 'far', iconName: 'bell', icon: [448, 512, [], "f0f3", "M425.403 330.939c-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.843 31.843 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095C118.101 62.783 57.143 131.831 57.143 214.857c0 81.933-17.551 99.292-34.543 116.078C-25.496 378.441 9.726 448 66.919 448H160c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h93.08c57.19 0 92.415-69.583 44.323-117.061zM224 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm157.092-72H66.9c-16.762 0-25.135-20.39-13.334-32.191 28.585-28.585 51.577-55.724 51.577-152.952C105.143 149.319 158.462 96 224 96s118.857 53.319 118.857 118.857c0 97.65 23.221 124.574 51.568 152.952C406.278 379.661 397.783 400 381.092 400z"] }; +var faBellSlash = { prefix: 'far', iconName: 'bell-slash', icon: [576, 512, [], "f1f6", "M130.9 400c-16.762 0-25.135-20.39-13.334-32.191 25.226-25.226 46.094-49.338 50.649-121.48l-46.777-41.274a168.48 168.48 0 0 0-.296 9.802c0 81.933-17.551 99.292-34.543 116.078C38.504 378.441 73.726 448 130.919 448H224c0 35.346 28.654 64 64 64s64-28.654 64-64h44.777l-54.4-48H130.9zM288 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm283.867.553l-67.931-59.571c13.104-24.118 11.524-56.318-14.532-82.042-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.848 31.848 0 0 0 320 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095c-41.471 6.618-77.891 28.571-103.249 59.841L36.459 3.037c-5.058-4.436-12.777-3.956-17.24 1.071L3.056 22.313C-1.407 27.34-.925 35.012 4.134 39.447l535.408 469.516c5.058 4.436 12.777 3.956 17.24-1.071l16.163-18.205c4.462-5.027 3.98-12.699-1.078-17.134zM288 96c65.538 0 118.857 53.319 118.857 118.857 0 97.65 23.221 124.574 51.568 152.952 2.908 2.908 4.573 6.328 5.209 9.832L194.482 141.612C216.258 113.867 250.075 96 288 96z"] }; +var faBookmark = { prefix: 'far', iconName: 'bookmark', icon: [384, 512, [], "f02e", "M336 0H48C21.49 0 0 21.49 0 48v464l192-112 192 112V48c0-26.51-21.49-48-48-48zm0 428.43l-144-84-144 84V54a6 6 0 0 1 6-6h276c3.314 0 6 2.683 6 5.996V428.43z"] }; +var faBuilding = { prefix: 'far', iconName: 'building', icon: [448, 512, [], "f1ad", "M128 148v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12zm140 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-128 96h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm128 0h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-76 84v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm76 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm180 124v36H0v-36c0-6.6 5.4-12 12-12h19.5V24c0-13.3 10.7-24 24-24h337c13.3 0 24 10.7 24 24v440H436c6.6 0 12 5.4 12 12zM79.5 463H192v-67c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v67h112.5V49L80 48l-.5 415z"] }; +var faCalendar = { prefix: 'far', iconName: 'calendar', icon: [448, 512, [], "f133", "M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z"] }; +var faCalendarAlt = { prefix: 'far', iconName: 'calendar-alt', icon: [448, 512, [], "f073", "M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCalendarCheck = { prefix: 'far', iconName: 'calendar-check', icon: [448, 512, [], "f274", "M400 64h-48V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H160V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V160h352v298a6 6 0 0 1-6 6zm-52.849-200.65L198.842 404.519c-4.705 4.667-12.303 4.637-16.971-.068l-75.091-75.699c-4.667-4.705-4.637-12.303.068-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l44.104 44.461 111.072-110.181c4.705-4.667 12.303-4.637 16.971.068l22.536 22.718c4.667 4.705 4.636 12.303-.069 16.97z"] }; +var faCalendarMinus = { prefix: 'far', iconName: 'calendar-minus', icon: [448, 512, [], "f272", "M124 328c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H124zm324-216v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCalendarPlus = { prefix: 'far', iconName: 'calendar-plus', icon: [448, 512, [], "f271", "M336 292v24c0 6.6-5.4 12-12 12h-76v76c0 6.6-5.4 12-12 12h-24c-6.6 0-12-5.4-12-12v-76h-76c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h76v-76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v76h76c6.6 0 12 5.4 12 12zm112-180v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCalendarTimes = { prefix: 'far', iconName: 'calendar-times', icon: [448, 512, [], "f273", "M311.7 374.7l-17 17c-4.7 4.7-12.3 4.7-17 0L224 337.9l-53.7 53.7c-4.7 4.7-12.3 4.7-17 0l-17-17c-4.7-4.7-4.7-12.3 0-17l53.7-53.7-53.7-53.7c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0l53.7 53.7 53.7-53.7c4.7-4.7 12.3-4.7 17 0l17 17c4.7 4.7 4.7 12.3 0 17L257.9 304l53.7 53.7c4.8 4.7 4.8 12.3.1 17zM448 112v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCaretSquareDown = { prefix: 'far', iconName: 'caret-square-down', icon: [448, 512, [], "f150", "M125.1 208h197.8c10.7 0 16.1 13 8.5 20.5l-98.9 98.3c-4.7 4.7-12.2 4.7-16.9 0l-98.9-98.3c-7.7-7.5-2.3-20.5 8.4-20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCaretSquareLeft = { prefix: 'far', iconName: 'caret-square-left', icon: [448, 512, [], "f191", "M272 157.1v197.8c0 10.7-13 16.1-20.5 8.5l-98.3-98.9c-4.7-4.7-4.7-12.2 0-16.9l98.3-98.9c7.5-7.7 20.5-2.3 20.5 8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCaretSquareRight = { prefix: 'far', iconName: 'caret-square-right', icon: [448, 512, [], "f152", "M176 354.9V157.1c0-10.7 13-16.1 20.5-8.5l98.3 98.9c4.7 4.7 4.7 12.2 0 16.9l-98.3 98.9c-7.5 7.7-20.5 2.3-20.5-8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCaretSquareUp = { prefix: 'far', iconName: 'caret-square-up', icon: [448, 512, [], "f151", "M322.9 304H125.1c-10.7 0-16.1-13-8.5-20.5l98.9-98.3c4.7-4.7 12.2-4.7 16.9 0l98.9 98.3c7.7 7.5 2.3 20.5-8.4 20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faChartBar = { prefix: 'far', iconName: 'chart-bar', icon: [512, 512, [], "f080", "M500 400c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v324h452zm-356-60v-72c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V140c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V204c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V108c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12z"] }; +var faCheckCircle = { prefix: 'far', iconName: 'check-circle', icon: [512, 512, [], "f058", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"] }; +var faCheckSquare = { prefix: 'far', iconName: 'check-square', icon: [448, 512, [], "f14a", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm0 400H48V80h352v352zm-35.864-241.724L191.547 361.48c-4.705 4.667-12.303 4.637-16.97-.068l-90.781-91.516c-4.667-4.705-4.637-12.303.069-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l59.792 60.277 141.352-140.216c4.705-4.667 12.303-4.637 16.97.068l22.536 22.718c4.667 4.706 4.637 12.304-.068 16.971z"] }; +var faCircle = { prefix: 'far', iconName: 'circle', icon: [512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z"] }; +var faClipboard = { prefix: 'far', iconName: 'clipboard', icon: [384, 512, [], "f328", "M336 64h-80c0-35.29-28.71-64-64-64s-64 28.71-64 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h42v36c0 6.627 5.373 12 12 12h168c6.627 0 12-5.373 12-12v-36h42a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zM192 40c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24"] }; +var faClock = { prefix: 'far', iconName: 'clock', icon: [512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"] }; +var faClone = { prefix: 'far', iconName: 'clone', icon: [512, 512, [], "f24d", "M464 0H144c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h320c26.51 0 48-21.49 48-48v-48h48c26.51 0 48-21.49 48-48V48c0-26.51-21.49-48-48-48zM362 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h42v224c0 26.51 21.49 48 48 48h224v42a6 6 0 0 1-6 6zm96-96H150a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h308a6 6 0 0 1 6 6v308a6 6 0 0 1-6 6z"] }; +var faClosedCaptioning = { prefix: 'far', iconName: 'closed-captioning', icon: [512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 336H54c-3.3 0-6-2.7-6-6V118c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v276c0 3.3-2.7 6-6 6zm-211.1-85.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7zm190.4 0c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.9-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 220.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7z"] }; +var faComment = { prefix: 'far', iconName: 'comment', icon: [512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"] }; +var faCommentAlt = { prefix: 'far', iconName: 'comment-alt', icon: [512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 7.1 5.8 12 12 12 2.4 0 4.9-.7 7.1-2.4L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm16 352c0 8.8-7.2 16-16 16H288l-12.8 9.6L208 428v-60H64c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h384c8.8 0 16 7.2 16 16v288z"] }; +var faCommentDots = { prefix: 'far', iconName: 'comment-dots', icon: [512, 512, [], "f4ad", "M144 208c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"] }; +var faComments = { prefix: 'far', iconName: 'comments', icon: [576, 512, [], "f086", "M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"] }; +var faCompass = { prefix: 'far', iconName: 'compass', icon: [512, 512, [], "f14e", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm91.326-312.131l-33.359 137.779a24.005 24.005 0 0 1-6.772 11.729l-102.64 97.779c-17.104 16.293-45.56.434-39.88-23.024l33.359-137.779a23.997 23.997 0 0 1 6.772-11.729l102.642-97.779c17.285-16.47 45.494-.175 39.878 23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; +var faCopy = { prefix: 'far', iconName: 'copy', icon: [448, 512, [], "f0c5", "M433.941 65.941l-51.882-51.882A48 48 0 0 0 348.118 0H176c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48v-48h80c26.51 0 48-21.49 48-48V99.882a48 48 0 0 0-14.059-33.941zM266 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h74v224c0 26.51 21.49 48 48 48h96v42a6 6 0 0 1-6 6zm128-96H182a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h106v88c0 13.255 10.745 24 24 24h88v202a6 6 0 0 1-6 6zm6-256h-64V48h9.632c1.591 0 3.117.632 4.243 1.757l48.368 48.368a6 6 0 0 1 1.757 4.243V112z"] }; +var faCopyright = { prefix: 'far', iconName: 'copyright', icon: [512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm107.351-101.064c-9.614 9.712-45.53 41.396-104.065 41.396-82.43 0-140.484-61.425-140.484-141.567 0-79.152 60.275-139.401 139.762-139.401 55.531 0 88.738 26.62 97.593 34.779a11.965 11.965 0 0 1 1.936 15.322l-18.155 28.113c-3.841 5.95-11.966 7.282-17.499 2.921-8.595-6.776-31.814-22.538-61.708-22.538-48.303 0-77.916 35.33-77.916 80.082 0 41.589 26.888 83.692 78.277 83.692 32.657 0 56.843-19.039 65.726-27.225 5.27-4.857 13.596-4.039 17.82 1.738l19.865 27.17a11.947 11.947 0 0 1-1.152 15.518z"] }; +var faCreditCard = { prefix: 'far', iconName: 'credit-card', icon: [576, 512, [], "f09d", "M527.9 32H48.1C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48.1 48h479.8c26.6 0 48.1-21.5 48.1-48V80c0-26.5-21.5-48-48.1-48zM54.1 80h467.8c3.3 0 6 2.7 6 6v42H48.1V86c0-3.3 2.7-6 6-6zm467.8 352H54.1c-3.3 0-6-2.7-6-6V256h479.8v170c0 3.3-2.7 6-6 6zM192 332v40c0 6.6-5.4 12-12 12h-72c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12zm192 0v40c0 6.6-5.4 12-12 12H236c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12z"] }; +var faDotCircle = { prefix: 'far', iconName: 'dot-circle', icon: [512, 512, [], "f192", "M256 56c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m0-48C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 168c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80z"] }; +var faEdit = { prefix: 'far', iconName: 'edit', icon: [576, 512, [], "f044", "M402.3 344.9l32-32c5-5 13.7-1.5 13.7 5.7V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h273.5c7.1 0 10.7 8.6 5.7 13.7l-32 32c-1.5 1.5-3.5 2.3-5.7 2.3H48v352h352V350.5c0-2.1.8-4.1 2.3-5.6zm156.6-201.8L296.3 405.7l-90.4 10c-26.2 2.9-48.5-19.2-45.6-45.6l10-90.4L432.9 17.1c22.9-22.9 59.9-22.9 82.7 0l43.2 43.2c22.9 22.9 22.9 60 .1 82.8zM460.1 174L402 115.9 216.2 301.8l-7.3 65.3 65.3-7.3L460.1 174zm64.8-79.7l-43.2-43.2c-4.1-4.1-10.8-4.1-14.8 0L436 82l58.1 58.1 30.9-30.9c4-4.2 4-10.8-.1-14.9z"] }; +var faEnvelope = { prefix: 'far', iconName: 'envelope', icon: [512, 512, [], "f0e0", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z"] }; +var faEnvelopeOpen = { prefix: 'far', iconName: 'envelope-open', icon: [512, 512, [], "f2b6", "M494.586 164.516c-4.697-3.883-111.723-89.95-135.251-108.657C337.231 38.191 299.437 0 256 0c-43.205 0-80.636 37.717-103.335 55.859-24.463 19.45-131.07 105.195-135.15 108.549A48.004 48.004 0 0 0 0 201.485V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V201.509a48 48 0 0 0-17.414-36.993zM464 458a6 6 0 0 1-6 6H54a6 6 0 0 1-6-6V204.347c0-1.813.816-3.526 2.226-4.665 15.87-12.814 108.793-87.554 132.364-106.293C200.755 78.88 232.398 48 256 48c23.693 0 55.857 31.369 73.41 45.389 23.573 18.741 116.503 93.493 132.366 106.316a5.99 5.99 0 0 1 2.224 4.663V458zm-31.991-187.704c4.249 5.159 3.465 12.795-1.745 16.981-28.975 23.283-59.274 47.597-70.929 56.863C336.636 362.283 299.205 400 256 400c-43.452 0-81.287-38.237-103.335-55.86-11.279-8.967-41.744-33.413-70.927-56.865-5.21-4.187-5.993-11.822-1.745-16.981l15.258-18.528c4.178-5.073 11.657-5.843 16.779-1.726 28.618 23.001 58.566 47.035 70.56 56.571C200.143 320.631 232.307 352 256 352c23.602 0 55.246-30.88 73.41-45.389 11.994-9.535 41.944-33.57 70.563-56.568 5.122-4.116 12.601-3.346 16.778 1.727l15.258 18.526z"] }; +var faEye = { prefix: 'far', iconName: 'eye', icon: [576, 512, [], "f06e", "M569.354 231.631C512.97 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-102.556 0-192.091-54.701-240-136 44.157-74.933 123.677-127.27 216.162-135.007C273.958 131.078 280 144.83 280 160c0 30.928-25.072 56-56 56s-56-25.072-56-56l.001-.042C157.794 179.043 152 200.844 152 224c0 75.111 60.889 136 136 136s136-60.889 136-136c0-31.031-10.4-59.629-27.895-82.515C451.704 164.638 498.009 205.106 528 256c-47.908 81.299-137.444 136-240 136z"] }; +var faEyeSlash = { prefix: 'far', iconName: 'eye-slash', icon: [576, 512, [], "f070", "M272.702 359.139c-80.483-9.011-136.212-86.886-116.93-167.042l116.93 167.042zM288 392c-102.556 0-192.092-54.701-240-136 21.755-36.917 52.1-68.342 88.344-91.658l-27.541-39.343C67.001 152.234 31.921 188.741 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.004 376.006 168.14 440 288 440a332.89 332.89 0 0 0 39.648-2.367l-32.021-45.744A284.16 284.16 0 0 1 288 392zm281.354-111.631c-33.232 56.394-83.421 101.742-143.554 129.492l48.116 68.74c3.801 5.429 2.48 12.912-2.949 16.712L450.23 509.83c-5.429 3.801-12.912 2.48-16.712-2.949L102.084 33.399c-3.801-5.429-2.48-12.912 2.949-16.712L125.77 2.17c5.429-3.801 12.912-2.48 16.712 2.949l55.526 79.325C226.612 76.343 256.808 72 288 72c119.86 0 224.996 63.994 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM528 256c-44.157-74.933-123.677-127.27-216.162-135.007C302.042 131.078 296 144.83 296 160c0 30.928 25.072 56 56 56s56-25.072 56-56l-.001-.042c30.632 57.277 16.739 130.26-36.928 171.719l26.695 38.135C452.626 346.551 498.308 306.386 528 256z"] }; +var faFile = { prefix: 'far', iconName: 'file', icon: [384, 512, [], "f15b", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48z"] }; +var faFileAlt = { prefix: 'far', iconName: 'file-alt', icon: [384, 512, [], "f15c", "M288 248v28c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-28c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm-12 72H108c-6.6 0-12 5.4-12 12v28c0 6.6 5.4 12 12 12h168c6.6 0 12-5.4 12-12v-28c0-6.6-5.4-12-12-12zm108-188.1V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48C0 21.5 21.5 0 48 0h204.1C264.8 0 277 5.1 286 14.1L369.9 98c9 8.9 14.1 21.2 14.1 33.9zm-128-80V128h76.1L256 51.9zM336 464V176H232c-13.3 0-24-10.7-24-24V48H48v416h288z"] }; +var faFileArchive = { prefix: 'far', iconName: 'file-archive', icon: [384, 512, [], "f1c6", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM256 51.882L332.118 128H256V51.882zM336 464H48V48h79.714v16h32V48H208v104c0 13.255 10.745 24 24 24h104v288zM192.27 96h-32V64h32v32zm-32 0v32h-32V96h32zm0 64v32h-32v-32h32zm32 0h-32v-32h32v32zm1.909 105.678A12 12 0 0 0 182.406 256H160.27v-32h-32v32l-19.69 97.106C101.989 385.611 126.834 416 160 416c33.052 0 57.871-30.192 51.476-62.62l-17.297-87.702zM160.27 390.073c-17.918 0-32.444-12.105-32.444-27.036 0-14.932 14.525-27.036 32.444-27.036s32.444 12.105 32.444 27.036c0 14.931-14.526 27.036-32.444 27.036zm32-166.073h-32v-32h32v32z"] }; +var faFileAudio = { prefix: 'far', iconName: 'file-audio', icon: [384, 512, [], "f1c7", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm144-76.024c0 10.691-12.926 16.045-20.485 8.485L136 360.486h-28c-6.627 0-12-5.373-12-12v-56c0-6.627 5.373-12 12-12h28l35.515-36.947c7.56-7.56 20.485-2.206 20.485 8.485v135.952zm41.201-47.13c9.051-9.297 9.06-24.133.001-33.439-22.149-22.752 12.235-56.246 34.395-33.481 27.198 27.94 27.212 72.444.001 100.401-21.793 22.386-56.947-10.315-34.397-33.481z"] }; +var faFileCode = { prefix: 'far', iconName: 'file-code', icon: [384, 512, [], "f1c9", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm101.677-115.115L116.854 320l32.822-28.885a8.793 8.793 0 0 0 .605-12.624l-17.403-18.564c-3.384-3.613-8.964-3.662-12.438-.401L62.78 313.58c-3.703 3.474-3.704 9.367.001 12.84l57.659 54.055a8.738 8.738 0 0 0 6.012 2.381 8.746 8.746 0 0 0 6.427-2.782l17.403-18.563a8.795 8.795 0 0 0-.605-12.626zm84.284-127.85l-24.401-7.084a8.796 8.796 0 0 0-10.905 5.998L144.04 408.061c-1.353 4.66 1.338 9.552 5.998 10.905l24.403 7.084c4.68 1.355 9.557-1.354 10.905-5.998l54.612-188.112c1.354-4.66-1.337-9.552-5.997-10.905zm87.258 92.545l-57.658-54.055c-3.526-3.307-9.099-3.165-12.439.401l-17.403 18.563a8.795 8.795 0 0 0 .605 12.625L267.146 320l-32.822 28.885a8.793 8.793 0 0 0-.605 12.624l17.403 18.564a8.797 8.797 0 0 0 12.439.401h-.001l57.66-54.055c3.703-3.473 3.703-9.366-.001-12.839z"] }; +var faFileExcel = { prefix: 'far', iconName: 'file-excel', icon: [384, 512, [], "f1c3", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm212-240h-28.8c-4.4 0-8.4 2.4-10.5 6.3-18 33.1-22.2 42.4-28.6 57.7-13.9-29.1-6.9-17.3-28.6-57.7-2.1-3.9-6.2-6.3-10.6-6.3H124c-9.3 0-15 10-10.4 18l46.3 78-46.3 78c-4.7 8 1.1 18 10.4 18h28.9c4.4 0 8.4-2.4 10.5-6.3 21.7-40 23-45 28.6-57.7 14.9 30.2 5.9 15.9 28.6 57.7 2.1 3.9 6.2 6.3 10.6 6.3H260c9.3 0 15-10 10.4-18L224 320c.7-1.1 30.3-50.5 46.3-78 4.7-8-1.1-18-10.3-18z"] }; +var faFileImage = { prefix: 'far', iconName: 'file-image', icon: [384, 512, [], "f1c5", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm32-48h224V288l-23.5-23.5c-4.7-4.7-12.3-4.7-17 0L176 352l-39.5-39.5c-4.7-4.7-12.3-4.7-17 0L80 352v64zm48-240c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z"] }; +var faFilePdf = { prefix: 'far', iconName: 'file-pdf', icon: [384, 512, [], "f1c1", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm250.2-143.7c-12.2-12-47-8.7-64.4-6.5-17.2-10.5-28.7-25-36.8-46.3 3.9-16.1 10.1-40.6 5.4-56-4.2-26.2-37.8-23.6-42.6-5.9-4.4 16.1-.4 38.5 7 67.1-10 23.9-24.9 56-35.4 74.4-20 10.3-47 26.2-51 46.2-3.3 15.8 26 55.2 76.1-31.2 22.4-7.4 46.8-16.5 68.4-20.1 18.9 10.2 41 17 55.8 17 25.5 0 28-28.2 17.5-38.7zm-198.1 77.8c5.1-13.7 24.5-29.5 30.4-35-19 30.3-30.4 35.7-30.4 35zm81.6-190.6c7.4 0 6.7 32.1 1.8 40.8-4.4-13.9-4.3-40.8-1.8-40.8zm-24.4 136.6c9.7-16.9 18-37 24.7-54.7 8.3 15.1 18.9 27.2 30.1 35.5-20.8 4.3-38.9 13.1-54.8 19.2zm131.6-5s-5 6-37.3-7.8c35.1-2.6 40.9 5.4 37.3 7.8z"] }; +var faFilePowerpoint = { prefix: 'far', iconName: 'file-powerpoint', icon: [384, 512, [], "f1c4", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm72-60V236c0-6.6 5.4-12 12-12h69.2c36.7 0 62.8 27 62.8 66.3 0 74.3-68.7 66.5-95.5 66.5V404c0 6.6-5.4 12-12 12H132c-6.6 0-12-5.4-12-12zm48.5-87.4h23c7.9 0 13.9-2.4 18.1-7.2 8.5-9.8 8.4-28.5.1-37.8-4.1-4.6-9.9-7-17.4-7h-23.9v52z"] }; +var faFileVideo = { prefix: 'far', iconName: 'file-video', icon: [384, 512, [], "f1c8", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm228.687-211.303L224 305.374V268c0-11.046-8.954-20-20-20H100c-11.046 0-20 8.954-20 20v104c0 11.046 8.954 20 20 20h104c11.046 0 20-8.954 20-20v-37.374l52.687 52.674C286.704 397.318 304 390.28 304 375.986V264.011c0-14.311-17.309-21.319-27.313-11.314z"] }; +var faFileWord = { prefix: 'far', iconName: 'file-word', icon: [384, 512, [], "f1c2", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm220.1-208c-5.7 0-10.6 4-11.7 9.5-20.6 97.7-20.4 95.4-21 103.5-.2-1.2-.4-2.6-.7-4.3-.8-5.1.3.2-23.6-99.5-1.3-5.4-6.1-9.2-11.7-9.2h-13.3c-5.5 0-10.3 3.8-11.7 9.1-24.4 99-24 96.2-24.8 103.7-.1-1.1-.2-2.5-.5-4.2-.7-5.2-14.1-73.3-19.1-99-1.1-5.6-6-9.7-11.8-9.7h-16.8c-7.8 0-13.5 7.3-11.7 14.8 8 32.6 26.7 109.5 33.2 136 1.3 5.4 6.1 9.1 11.7 9.1h25.2c5.5 0 10.3-3.7 11.6-9.1l17.9-71.4c1.5-6.2 2.5-12 3-17.3l2.9 17.3c.1.4 12.6 50.5 17.9 71.4 1.3 5.3 6.1 9.1 11.6 9.1h24.7c5.5 0 10.3-3.7 11.6-9.1 20.8-81.9 30.2-119 34.5-136 1.9-7.6-3.8-14.9-11.6-14.9h-15.8z"] }; +var faFlag = { prefix: 'far', iconName: 'flag', icon: [512, 512, [], "f024", "M336.174 80c-49.132 0-93.305-32-161.913-32-31.301 0-58.303 6.482-80.721 15.168a48.04 48.04 0 0 0 2.142-20.727C93.067 19.575 74.167 1.594 51.201.104 23.242-1.71 0 20.431 0 48c0 17.764 9.657 33.262 24 41.562V496c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-83.443C109.869 395.28 143.259 384 199.826 384c49.132 0 93.305 32 161.913 32 58.479 0 101.972-22.617 128.548-39.981C503.846 367.161 512 352.051 512 335.855V95.937c0-34.459-35.264-57.768-66.904-44.117C409.193 67.309 371.641 80 336.174 80zM464 336c-21.783 15.412-60.824 32-102.261 32-59.945 0-102.002-32-161.913-32-43.361 0-96.379 9.403-127.826 24V128c21.784-15.412 60.824-32 102.261-32 59.945 0 102.002 32 161.913 32 43.271 0 96.32-17.366 127.826-32v240z"] }; +var faFolder = { prefix: 'far', iconName: 'folder', icon: [512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48zm-6 272H54c-3.314 0-6-2.678-6-5.992V117.992A5.993 5.993 0 0 1 54 112h134.118l64 64H458a6 6 0 0 1 6 6v212a6 6 0 0 1-6 6z"] }; +var faFolderOpen = { prefix: 'far', iconName: 'folder-open', icon: [576, 512, [], "f07c", "M527.943 224H480v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h400a48.001 48.001 0 0 0 40.704-22.56l79.942-128c19.948-31.917-3.038-73.44-40.703-73.44zM54 112h134.118l64 64H426a6 6 0 0 1 6 6v42H152a48 48 0 0 0-41.098 23.202L48 351.449V117.993A5.993 5.993 0 0 1 54 112zm394 288H72l77.234-128H528l-80 128z"] }; +var faFontAwesomeLogoFull = { prefix: 'far', iconName: 'font-awesome-logo-full', icon: [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"] }; +var faFrown = { prefix: 'far', iconName: 'frown', icon: [496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 128c-40.2 0-78 17.7-103.8 48.6-8.5 10.2-7.1 25.3 3.1 33.8 10.2 8.5 25.3 7.1 33.8-3.1 16.6-19.9 41-31.4 66.9-31.4s50.3 11.4 66.9 31.4c4.8 5.7 11.6 8.6 18.5 8.6 5.4 0 10.9-1.8 15.4-5.6 10.2-8.5 11.5-23.6 3.1-33.8C326 321.7 288.2 304 248 304z"] }; +var faFutbol = { prefix: 'far', iconName: 'futbol', icon: [496, 512, [], "f1e3", "M483.8 179.4C449.8 74.6 352.6 8 248.1 8c-25.4 0-51.2 3.9-76.7 12.2C41.2 62.5-30.1 202.4 12.2 332.6 46.2 437.4 143.4 504 247.9 504c25.4 0 51.2-3.9 76.7-12.2 130.2-42.3 201.5-182.2 159.2-312.4zm-74.5 193.7l-52.2 6.4-43.7-60.9 24.4-75.2 71.1-22.1 38.9 36.4c-.2 30.7-7.4 61.1-21.7 89.2-4.7 9.3-10.7 17.8-16.8 26.2zm0-235.4l-10.4 53.1-70.7 22-64.2-46.5V92.5l47.4-26.2c39.2 13 73.4 38 97.9 71.4zM184.9 66.4L232 92.5v73.8l-64.2 46.5-70.6-22-10.1-52.5c24.3-33.4 57.9-58.6 97.8-71.9zM139 379.5L85.9 373c-14.4-20.1-37.3-59.6-37.8-115.3l39-36.4 71.1 22.2 24.3 74.3-43.5 61.7zm48.2 67l-22.4-48.1 43.6-61.7H287l44.3 61.7-22.4 48.1c-6.2 1.8-57.6 20.4-121.7 0z"] }; +var faGem = { prefix: 'far', iconName: 'gem', icon: [576, 512, [], "f3a5", "M464 0H112c-4 0-7.8 2-10 5.4L2 152.6c-2.9 4.4-2.6 10.2.7 14.2l276 340.8c4.8 5.9 13.8 5.9 18.6 0l276-340.8c3.3-4.1 3.6-9.8.7-14.2L474.1 5.4C471.8 2 468.1 0 464 0zm-19.3 48l63.3 96h-68.4l-51.7-96h56.8zm-202.1 0h90.7l51.7 96H191l51.6-96zm-111.3 0h56.8l-51.7 96H68l63.3-96zm-43 144h51.4L208 352 88.3 192zm102.9 0h193.6L288 435.3 191.2 192zM368 352l68.2-160h51.4L368 352z"] }; +var faHandLizard = { prefix: 'far', iconName: 'hand-lizard', icon: [576, 512, [], "f258", "M556.686 290.542L410.328 64.829C397.001 44.272 374.417 32 349.917 32H56C25.121 32 0 57.122 0 88v8c0 44.112 35.888 80 80 80h196.042l-18.333 48H144c-48.523 0-88 39.477-88 88 0 30.879 25.121 56 56 56h131.552c2.987 0 5.914.549 8.697 1.631L352 408.418V480h224V355.829c0-23.225-6.679-45.801-19.314-65.287zM528 432H400v-23.582c0-19.948-12.014-37.508-30.604-44.736l-99.751-38.788A71.733 71.733 0 0 0 243.552 320H112c-4.411 0-8-3.589-8-8 0-22.056 17.944-40 40-40h113.709c19.767 0 37.786-12.407 44.84-30.873l24.552-64.281c8.996-23.553-8.428-48.846-33.63-48.846H80c-17.645 0-32-14.355-32-32v-8c0-4.411 3.589-8 8-8h293.917c8.166 0 15.693 4.09 20.137 10.942l146.358 225.715A71.84 71.84 0 0 1 528 355.829V432z"] }; +var faHandPaper = { prefix: 'far', iconName: 'hand-paper', icon: [448, 512, [], "f256", "M372.57 112.641v-10.825c0-43.612-40.52-76.691-83.039-65.546-25.629-49.5-94.09-47.45-117.982.747C130.269 26.456 89.144 57.945 89.144 102v126.13c-19.953-7.427-43.308-5.068-62.083 8.871-29.355 21.796-35.794 63.333-14.55 93.153L132.48 498.569a32 32 0 0 0 26.062 13.432h222.897c14.904 0 27.835-10.289 31.182-24.813l30.184-130.958A203.637 203.637 0 0 0 448 310.564V179c0-40.62-35.523-71.992-75.43-66.359zm27.427 197.922c0 11.731-1.334 23.469-3.965 34.886L368.707 464h-201.92L51.591 302.303c-14.439-20.27 15.023-42.776 29.394-22.605l27.128 38.079c8.995 12.626 29.031 6.287 29.031-9.283V102c0-25.645 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V67c0-25.663 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V101.125c0-25.672 36.57-24.81 36.57.691V256c0 8.837 7.163 16 16 16h6.857c8.837 0 16-7.163 16-16v-76.309c0-26.242 36.57-25.64 36.57-.691v131.563z"] }; +var faHandPeace = { prefix: 'far', iconName: 'hand-peace', icon: [448, 512, [], "f25b", "M362.146 191.976c-13.71-21.649-38.761-34.016-65.006-30.341V74c0-40.804-32.811-74-73.141-74-40.33 0-73.14 33.196-73.14 74L160 168l-18.679-78.85C126.578 50.843 83.85 32.11 46.209 47.208 8.735 62.238-9.571 104.963 5.008 142.85l55.757 144.927c-30.557 24.956-43.994 57.809-24.733 92.218l54.853 97.999C102.625 498.97 124.73 512 148.575 512h205.702c30.744 0 57.558-21.44 64.555-51.797l27.427-118.999a67.801 67.801 0 0 0 1.729-15.203L448 256c0-44.956-43.263-77.343-85.854-64.024zM399.987 326c0 1.488-.169 2.977-.502 4.423l-27.427 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H148.575c-6.486 0-12.542-3.621-15.805-9.449l-54.854-98c-4.557-8.141-2.619-18.668 4.508-24.488l26.647-21.764a16 16 0 0 0 4.812-18.139l-64.09-166.549C37.226 92.956 84.37 74.837 96.51 106.389l59.784 155.357A16 16 0 0 0 171.227 272h11.632c8.837 0 16-7.163 16-16V74c0-34.375 50.281-34.43 50.281 0v182c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16v-28c0-25.122 36.567-25.159 36.567 0v28c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16 0-25.12 36.567-25.16 36.567 0v70z"] }; +var faHandPointDown = { prefix: 'far', iconName: 'hand-point-down', icon: [448, 512, [], "f0a7", "M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z"] }; +var faHandPointLeft = { prefix: 'far', iconName: 'hand-point-left', icon: [512, 512, [], "f0a5", "M0 220.8C0 266.416 37.765 304 83.2 304h35.647a93.148 93.148 0 0 0 7.929 22.064c-2.507 22.006 3.503 44.978 15.985 62.791C143.9 441.342 180.159 480 242.701 480H264c60.063 0 98.512-40 127.2-40h2.679c5.747 4.952 13.536 8 22.12 8h64c17.673 0 32-12.894 32-28.8V188.8c0-15.906-14.327-28.8-32-28.8h-64c-8.584 0-16.373 3.048-22.12 8H391.2c-6.964 0-14.862-6.193-30.183-23.668l-.129-.148-.131-.146c-8.856-9.937-18.116-20.841-25.851-33.253C316.202 80.537 304.514 32 259.2 32c-56.928 0-92 35.286-92 83.2 0 8.026.814 15.489 2.176 22.4H83.2C38.101 137.6 0 175.701 0 220.8zm48 0c0-18.7 16.775-35.2 35.2-35.2h158.4c0-17.325-26.4-35.2-26.4-70.4 0-26.4 20.625-35.2 44-35.2 8.794 0 20.445 32.712 34.926 56.1 9.074 14.575 19.524 27.225 30.799 39.875 16.109 18.374 33.836 36.633 59.075 39.596v176.752C341.21 396.087 309.491 432 264 432h-21.299c-40.524 0-57.124-22.197-50.601-61.325-14.612-8.001-24.151-33.979-12.925-53.625-19.365-18.225-17.787-46.381-4.95-61.05H83.2C64.225 256 48 239.775 48 220.8zM448 360c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z"] }; +var faHandPointRight = { prefix: 'far', iconName: 'hand-point-right', icon: [512, 512, [], "f0a4", "M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"] }; +var faHandPointUp = { prefix: 'far', iconName: 'hand-point-up', icon: [448, 512, [], "f0a6", "M105.6 83.2v86.177a115.52 115.52 0 0 0-22.4-2.176c-47.914 0-83.2 35.072-83.2 92 0 45.314 48.537 57.002 78.784 75.707 12.413 7.735 23.317 16.994 33.253 25.851l.146.131.148.129C129.807 376.338 136 384.236 136 391.2v2.679c-4.952 5.747-8 13.536-8 22.12v64c0 17.673 12.894 32 28.8 32h230.4c15.906 0 28.8-14.327 28.8-32v-64c0-8.584-3.048-16.373-8-22.12V391.2c0-28.688 40-67.137 40-127.2v-21.299c0-62.542-38.658-98.8-91.145-99.94-17.813-12.482-40.785-18.491-62.791-15.985A93.148 93.148 0 0 0 272 118.847V83.2C272 37.765 234.416 0 188.8 0c-45.099 0-83.2 38.101-83.2 83.2zm118.4 0v91.026c14.669-12.837 42.825-14.415 61.05 4.95 19.646-11.227 45.624-1.687 53.625 12.925 39.128-6.524 61.325 10.076 61.325 50.6V264c0 45.491-35.913 77.21-39.676 120H183.571c-2.964-25.239-21.222-42.966-39.596-59.075-12.65-11.275-25.3-21.725-39.875-30.799C80.712 279.645 48 267.994 48 259.2c0-23.375 8.8-44 35.2-44 35.2 0 53.075 26.4 70.4 26.4V83.2c0-18.425 16.5-35.2 35.2-35.2 18.975 0 35.2 16.225 35.2 35.2zM352 424c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z"] }; +var faHandPointer = { prefix: 'far', iconName: 'hand-pointer', icon: [448, 512, [], "f25a", "M358.182 179.361c-19.493-24.768-52.679-31.945-79.872-19.098-15.127-15.687-36.182-22.487-56.595-19.629V67c0-36.944-29.736-67-66.286-67S89.143 30.056 89.143 67v161.129c-19.909-7.41-43.272-5.094-62.083 8.872-29.355 21.795-35.793 63.333-14.55 93.152l109.699 154.001C134.632 501.59 154.741 512 176 512h178.286c30.802 0 57.574-21.5 64.557-51.797l27.429-118.999A67.873 67.873 0 0 0 448 326v-84c0-46.844-46.625-79.273-89.818-62.639zM80.985 279.697l27.126 38.079c8.995 12.626 29.031 6.287 29.031-9.283V67c0-25.12 36.571-25.16 36.571 0v175c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16v-35c0-25.12 36.571-25.16 36.571 0v35c0 8.836 7.163 16 16 16H272c8.837 0 16-7.164 16-16v-21c0-25.12 36.571-25.16 36.571 0v21c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16 0-25.121 36.571-25.16 36.571 0v84c0 1.488-.169 2.977-.502 4.423l-27.43 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H176c-5.769 0-11.263-2.878-14.697-7.697l-109.712-154c-14.406-20.223 14.994-42.818 29.394-22.606zM176.143 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.733 0-14-7.163-14-16zm75.428 0v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16zM327 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16z"] }; +var faHandRock = { prefix: 'far', iconName: 'hand-rock', icon: [512, 512, [], "f255", "M408.864 79.052c-22.401-33.898-66.108-42.273-98.813-23.588-29.474-31.469-79.145-31.093-108.334-.022-47.16-27.02-108.71 5.055-110.671 60.806C44.846 105.407 0 140.001 0 187.429v56.953c0 32.741 14.28 63.954 39.18 85.634l97.71 85.081c4.252 3.702 3.11 5.573 3.11 32.903 0 17.673 14.327 32 32 32h252c17.673 0 32-14.327 32-32 0-23.513-1.015-30.745 3.982-42.37l42.835-99.656c6.094-14.177 9.183-29.172 9.183-44.568V146.963c0-52.839-54.314-88.662-103.136-67.911zM464 261.406a64.505 64.505 0 0 1-5.282 25.613l-42.835 99.655c-5.23 12.171-7.883 25.04-7.883 38.25V432H188v-10.286c0-16.37-7.14-31.977-19.59-42.817l-97.71-85.08C56.274 281.255 48 263.236 48 244.381v-56.953c0-33.208 52-33.537 52 .677v41.228a16 16 0 0 0 5.493 12.067l7 6.095A16 16 0 0 0 139 235.429V118.857c0-33.097 52-33.725 52 .677v26.751c0 8.836 7.164 16 16 16h7c8.836 0 16-7.164 16-16v-41.143c0-33.134 52-33.675 52 .677v40.466c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16v-27.429c0-33.03 52-33.78 52 .677v26.751c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16 0-33.146 52-33.613 52 .677v114.445z"] }; +var faHandScissors = { prefix: 'far', iconName: 'hand-scissors', icon: [512, 512, [], "f257", "M256 480l70-.013c5.114 0 10.231-.583 15.203-1.729l118.999-27.427C490.56 443.835 512 417.02 512 386.277V180.575c0-23.845-13.03-45.951-34.005-57.69l-97.999-54.853c-34.409-19.261-67.263-5.824-92.218 24.733L142.85 37.008c-37.887-14.579-80.612 3.727-95.642 41.201-15.098 37.642 3.635 80.37 41.942 95.112L168 192l-94-9.141c-40.804 0-74 32.811-74 73.14 0 40.33 33.196 73.141 74 73.141h87.635c-3.675 26.245 8.692 51.297 30.341 65.006C178.657 436.737 211.044 480 256 480zm0-48.013c-25.16 0-25.12-36.567 0-36.567 8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16h-28c-25.159 0-25.122-36.567 0-36.567h28c8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16H74c-34.43 0-34.375-50.281 0-50.281h182c8.837 0 16-7.163 16-16v-11.632a16 16 0 0 0-10.254-14.933L106.389 128.51c-31.552-12.14-13.432-59.283 19.222-46.717l166.549 64.091a16.001 16.001 0 0 0 18.139-4.812l21.764-26.647c5.82-7.127 16.348-9.064 24.488-4.508l98 54.854c5.828 3.263 9.449 9.318 9.449 15.805v205.701c0 8.491-5.994 15.804-14.576 17.782l-119.001 27.427a19.743 19.743 0 0 1-4.423.502h-70z"] }; +var faHandSpock = { prefix: 'far', iconName: 'hand-spock', icon: [512, 512, [], "f259", "M21.096 381.79l129.092 121.513a32 32 0 0 0 21.932 8.698h237.6c14.17 0 26.653-9.319 30.68-22.904l31.815-107.313A115.955 115.955 0 0 0 477 348.811v-36.839c0-4.051.476-8.104 1.414-12.045l31.73-133.41c10.099-42.412-22.316-82.738-65.544-82.525-4.144-24.856-22.543-47.165-49.85-53.992-35.803-8.952-72.227 12.655-81.25 48.75L296.599 184 274.924 52.01c-8.286-36.07-44.303-58.572-80.304-50.296-29.616 6.804-50.138 32.389-51.882 61.295-42.637.831-73.455 40.563-64.071 81.844l31.04 136.508c-27.194-22.515-67.284-19.992-91.482 5.722-25.376 26.961-24.098 69.325 2.871 94.707zm32.068-61.811l.002-.001c7.219-7.672 19.241-7.98 26.856-.813l53.012 49.894C143.225 378.649 160 371.4 160 357.406v-69.479c0-1.193-.134-2.383-.397-3.546l-34.13-150.172c-5.596-24.617 31.502-32.86 37.054-8.421l30.399 133.757a16 16 0 0 0 15.603 12.454h8.604c10.276 0 17.894-9.567 15.594-19.583l-41.62-181.153c-5.623-24.469 31.39-33.076 37.035-8.508l45.22 196.828A16 16 0 0 0 288.956 272h13.217a16 16 0 0 0 15.522-12.119l42.372-169.49c6.104-24.422 42.962-15.159 36.865 9.217L358.805 252.12c-2.521 10.088 5.115 19.88 15.522 19.88h9.694a16 16 0 0 0 15.565-12.295L426.509 146.6c5.821-24.448 42.797-15.687 36.966 8.802L431.72 288.81a100.094 100.094 0 0 0-2.72 23.162v36.839c0 6.548-.943 13.051-2.805 19.328L397.775 464h-219.31L53.978 346.836c-7.629-7.18-7.994-19.229-.814-26.857z"] }; +var faHandshake = { prefix: 'far', iconName: 'handshake', icon: [640, 512, [], "f2b5", "M519.2 127.9l-47.6-47.6A56.252 56.252 0 0 0 432 64H205.2c-14.8 0-29.1 5.9-39.6 16.3L118 127.9H0v255.7h64c17.6 0 31.8-14.2 31.9-31.7h9.1l84.6 76.4c30.9 25.1 73.8 25.7 105.6 3.8 12.5 10.8 26 15.9 41.1 15.9 18.2 0 35.3-7.4 48.8-24 22.1 8.7 48.2 2.6 64-16.8l26.2-32.3c5.6-6.9 9.1-14.8 10.9-23h57.9c.1 17.5 14.4 31.7 31.9 31.7h64V127.9H519.2zM48 351.6c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16zm390-6.9l-26.1 32.2c-2.8 3.4-7.8 4-11.3 1.2l-23.9-19.4-30 36.5c-6 7.3-15 4.8-18 2.4l-36.8-31.5-15.6 19.2c-13.9 17.1-39.2 19.7-55.3 6.6l-97.3-88H96V175.8h41.9l61.7-61.6c2-.8 3.7-1.5 5.7-2.3H262l-38.7 35.5c-29.4 26.9-31.1 72.3-4.4 101.3 14.8 16.2 61.2 41.2 101.5 4.4l8.2-7.5 108.2 87.8c3.4 2.8 3.9 7.9 1.2 11.3zm106-40.8h-69.2c-2.3-2.8-4.9-5.4-7.7-7.7l-102.7-83.4 12.5-11.4c6.5-6 7-16.1 1-22.6L367 167.1c-6-6.5-16.1-6.9-22.6-1l-55.2 50.6c-9.5 8.7-25.7 9.4-34.6 0-9.3-9.9-8.5-25.1 1.2-33.9l65.6-60.1c7.4-6.8 17-10.5 27-10.5l83.7-.2c2.1 0 4.1.8 5.5 2.3l61.7 61.6H544v128zm48 47.7c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16z"] }; +var faHdd = { prefix: 'far', iconName: 'hdd', icon: [576, 512, [], "f0a0", "M567.403 235.642L462.323 84.589A48 48 0 0 0 422.919 64H153.081a48 48 0 0 0-39.404 20.589L8.597 235.642A48.001 48.001 0 0 0 0 263.054V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V263.054c0-9.801-3-19.366-8.597-27.412zM153.081 112h269.838l77.913 112H75.168l77.913-112zM528 400H48V272h480v128zm-32-64c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32zm-96 0c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32z"] }; +var faHeart = { prefix: 'far', iconName: 'heart', icon: [512, 512, [], "f004", "M458.4 64.3C400.6 15.7 311.3 23 256 79.3 200.7 23 111.4 15.6 53.6 64.3-21.6 127.6-10.6 230.8 43 285.5l175.4 178.7c10 10.2 23.4 15.9 37.6 15.9 14.3 0 27.6-5.6 37.6-15.8L469 285.6c53.5-54.7 64.7-157.9-10.6-221.3zm-23.6 187.5L259.4 430.5c-2.4 2.4-4.4 2.4-6.8 0L77.2 251.8c-36.5-37.2-43.9-107.6 7.3-150.7 38.9-32.7 98.9-27.8 136.5 10.5l35 35.7 35-35.7c37.8-38.5 97.8-43.2 136.5-10.6 51.1 43.1 43.5 113.9 7.3 150.8z"] }; +var faHospital = { prefix: 'far', iconName: 'hospital', icon: [448, 512, [], "f0f8", "M128 244v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12zm140 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm-76 84v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm76 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm180 124v36H0v-36c0-6.627 5.373-12 12-12h19.5V85.035C31.5 73.418 42.245 64 55.5 64H144V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v40h88.5c13.255 0 24 9.418 24 21.035V464H436c6.627 0 12 5.373 12 12zM79.5 463H192v-67c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v67h112.5V112H304v24c0 13.255-10.745 24-24 24H168c-13.255 0-24-10.745-24-24v-24H79.5v351zM266 64h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6z"] }; +var faHourglass = { prefix: 'far', iconName: 'hourglass', icon: [384, 512, [], "f254", "M368 48h4c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12H12C5.373 0 0 5.373 0 12v24c0 6.627 5.373 12 12 12h4c0 80.564 32.188 165.807 97.18 208C47.899 298.381 16 383.9 16 464h-4c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12h-4c0-80.564-32.188-165.807-97.18-208C336.102 213.619 368 128.1 368 48zM64 48h256c0 101.62-57.307 184-128 184S64 149.621 64 48zm256 416H64c0-101.62 57.308-184 128-184s128 82.38 128 184z"] }; +var faIdBadge = { prefix: 'far', iconName: 'id-badge', icon: [384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm0 464H48V48h288v416zM144 112h96c8.8 0 16-7.2 16-16s-7.2-16-16-16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16zm48 176c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"] }; +var faIdCard = { prefix: 'far', iconName: 'id-card', icon: [576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H303.2c.9-4.5.8 3.6.8-22.4 0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6 0 26-.2 17.9.8 22.4H48V144h480v288zm-168-80h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm-168 96c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z"] }; +var faImage = { prefix: 'far', iconName: 'image', icon: [512, 512, [], "f03e", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 336H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v276a6 6 0 0 1-6 6zM128 152c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zM96 352h320v-80l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L192 304l-39.515-39.515c-4.686-4.686-12.284-4.686-16.971 0L96 304v48z"] }; +var faImages = { prefix: 'far', iconName: 'images', icon: [576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v48H54a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6v-10h48zm42-336H150a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6V86a6 6 0 0 0-6-6zm6-48c26.51 0 48 21.49 48 48v256c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h384zM264 144c0 22.091-17.909 40-40 40s-40-17.909-40-40 17.909-40 40-40 40 17.909 40 40zm-72 96l39.515-39.515c4.686-4.686 12.284-4.686 16.971 0L288 240l103.515-103.515c4.686-4.686 12.284-4.686 16.971 0L480 208v80H192v-48z"] }; +var faKeyboard = { prefix: 'far', iconName: 'keyboard', icon: [576, 512, [], "f11c", "M528 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm8 336c0 4.411-3.589 8-8 8H48c-4.411 0-8-3.589-8-8V112c0-4.411 3.589-8 8-8h480c4.411 0 8 3.589 8 8v288zM170 270v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-336 82v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm384 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zM122 188v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-98 158v-16c0-6.627-5.373-12-12-12H180c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h216c6.627 0 12-5.373 12-12z"] }; +var faLemon = { prefix: 'far', iconName: 'lemon', icon: [512, 512, [], "f094", "M484.112 27.889C455.989-.233 416.108-8.057 387.059 8.865 347.604 31.848 223.504-41.111 91.196 91.197-41.277 223.672 31.923 347.472 8.866 387.058c-16.922 29.051-9.1 68.932 19.022 97.054 28.135 28.135 68.011 35.938 97.057 19.021 39.423-22.97 163.557 49.969 295.858-82.329 132.474-132.477 59.273-256.277 82.331-295.861 16.922-29.05 9.1-68.931-19.022-97.054zm-22.405 72.894c-38.8 66.609 45.6 165.635-74.845 286.08-120.44 120.443-219.475 36.048-286.076 74.843-22.679 13.207-64.035-27.241-50.493-50.488 38.8-66.609-45.6-165.635 74.845-286.08C245.573 4.702 344.616 89.086 411.219 50.292c22.73-13.24 64.005 27.288 50.488 50.491zm-169.861 8.736c1.37 10.96-6.404 20.957-17.365 22.327-54.846 6.855-135.779 87.787-142.635 142.635-1.373 10.989-11.399 18.734-22.326 17.365-10.961-1.37-18.735-11.366-17.365-22.326 9.162-73.286 104.167-168.215 177.365-177.365 10.953-1.368 20.956 6.403 22.326 17.364z"] }; +var faLifeRing = { prefix: 'far', iconName: 'life-ring', icon: [512, 512, [], "f1cd", "M256 504c136.967 0 248-111.033 248-248S392.967 8 256 8 8 119.033 8 256s111.033 248 248 248zm-103.398-76.72l53.411-53.411c31.806 13.506 68.128 13.522 99.974 0l53.411 53.411c-63.217 38.319-143.579 38.319-206.796 0zM336 256c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zm91.28 103.398l-53.411-53.411c13.505-31.806 13.522-68.128 0-99.974l53.411-53.411c38.319 63.217 38.319 143.579 0 206.796zM359.397 84.72l-53.411 53.411c-31.806-13.505-68.128-13.522-99.973 0L152.602 84.72c63.217-38.319 143.579-38.319 206.795 0zM84.72 152.602l53.411 53.411c-13.506 31.806-13.522 68.128 0 99.974L84.72 359.398c-38.319-63.217-38.319-143.579 0-206.796z"] }; +var faLightbulb = { prefix: 'far', iconName: 'lightbulb', icon: [384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zM128 176c0-35.29 28.71-64 64-64 8.837 0 16-7.164 16-16s-7.163-16-16-16c-52.935 0-96 43.065-96 96 0 8.836 7.164 16 16 16s16-7.164 16-16zm64-128c70.734 0 128 57.254 128 128 0 77.602-37.383 60.477-80.98 160h-94.04C101.318 236.33 64 253.869 64 176c0-70.735 57.254-128 128-128m0-48C94.805 0 16 78.803 16 176c0 101.731 51.697 91.541 90.516 192.674 3.55 9.249 12.47 15.326 22.376 15.326h126.215c9.906 0 18.826-6.078 22.376-15.326C316.303 267.541 368 277.731 368 176 368 78.803 289.195 0 192 0z"] }; +var faListAlt = { prefix: 'far', iconName: 'list-alt', icon: [512, 512, [], "f022", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zm-42-92v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm-252 12c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36z"] }; +var faMap = { prefix: 'far', iconName: 'map', icon: [576, 512, [], "f279", "M508.505 36.17L381.517 92.576 207.179 34.463a47.992 47.992 0 0 0-34.674 1.674l-144 64A48 48 0 0 0 0 144v287.967c0 34.938 35.991 57.864 67.495 43.863l126.988-56.406 174.339 58.113a47.992 47.992 0 0 0 34.674-1.674l144-64A48 48 0 0 0 576 368V80.033c0-34.938-35.991-57.864-67.495-43.863zM360 424l-144-48V88l144 48v288zm-312 8V144l120-53.333v288L48 432zm480-64l-120 53.333v-288L528 80v288z"] }; +var faMeh = { prefix: 'far', iconName: 'meh', icon: [496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm8 144H160c-13.2 0-24 10.8-24 24s10.8 24 24 24h176c13.2 0 24-10.8 24-24s-10.8-24-24-24z"] }; +var faMinusSquare = { prefix: 'far', iconName: 'minus-square', icon: [448, 512, [], "f146", "M108 284c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h232c6.6 0 12 5.4 12 12v32c0 6.6-5.4 12-12 12H108zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faMoneyBillAlt = { prefix: 'far', iconName: 'money-bill-alt', icon: [640, 512, [], "f3d1", "M320 144c-53.02 0-96 50.14-96 112 0 61.85 42.98 112 96 112 53 0 96-50.13 96-112 0-61.86-42.98-112-96-112zm40 168c0 4.42-3.58 8-8 8h-64c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h16v-55.44l-.47.31a7.992 7.992 0 0 1-11.09-2.22l-8.88-13.31a7.992 7.992 0 0 1 2.22-11.09l15.33-10.22a23.99 23.99 0 0 1 13.31-4.03H328c4.42 0 8 3.58 8 8v88h16c4.42 0 8 3.58 8 8v16zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zm-16 272c-35.35 0-64 28.65-64 64H112c0-35.35-28.65-64-64-64V176c35.35 0 64-28.65 64-64h416c0 35.35 28.65 64 64 64v160z"] }; +var faMoon = { prefix: 'far', iconName: 'moon', icon: [512, 512, [], "f186", "M279.135 512c78.756 0 150.982-35.804 198.844-94.775 28.27-34.831-2.558-85.722-46.249-77.401-82.348 15.683-158.272-47.268-158.272-130.792 0-48.424 26.06-92.292 67.434-115.836 38.745-22.05 28.999-80.788-15.022-88.919A257.936 257.936 0 0 0 279.135 0c-141.36 0-256 114.575-256 256 0 141.36 114.576 256 256 256zm0-464c12.985 0 25.689 1.201 38.016 3.478-54.76 31.163-91.693 90.042-91.693 157.554 0 113.848 103.641 199.2 215.252 177.944C402.574 433.964 344.366 464 279.135 464c-114.875 0-208-93.125-208-208s93.125-208 208-208z"] }; +var faNewspaper = { prefix: 'far', iconName: 'newspaper', icon: [576, 512, [], "f1ea", "M552 64H112c-20.858 0-38.643 13.377-45.248 32H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h496c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24zM48 392V144h16v248c0 4.411-3.589 8-8 8s-8-3.589-8-8zm480 8H111.422c.374-2.614.578-5.283.578-8V112h416v288zM172 280h136c6.627 0 12-5.373 12-12v-96c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v96c0 6.627 5.373 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H172c-6.627 0-12-5.373-12-12zm192 0v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0-144v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0 72v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12z"] }; +var faObjectGroup = { prefix: 'far', iconName: 'object-group', icon: [512, 512, [], "f247", "M500 128c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v256H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V128h12zm-52-64h32v32h-32V64zM32 64h32v32H32V64zm32 384H32v-32h32v32zm416 0h-32v-32h32v32zm-40-64h-12c-6.627 0-12 5.373-12 12v12H96v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h12v256zm-36-192h-84v-52c0-6.628-5.373-12-12-12H108c-6.627 0-12 5.372-12 12v168c0 6.628 5.373 12 12 12h84v52c0 6.628 5.373 12 12 12h200c6.627 0 12-5.372 12-12V204c0-6.628-5.373-12-12-12zm-268-24h144v112H136V168zm240 176H232v-24h76c6.627 0 12-5.372 12-12v-76h56v112z"] }; +var faObjectUngroup = { prefix: 'far', iconName: 'object-ungroup', icon: [576, 512, [], "f248", "M564 224c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12h-88v-24h12c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v160H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h88v24h-12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V224h12zM352 64h32v32h-32V64zm0 256h32v32h-32v-32zM64 352H32v-32h32v32zm0-256H32V64h32v32zm32 216v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h12v160h-12c-6.627 0-12 5.373-12 12v12H96zm128 136h-32v-32h32v32zm280-64h-12c-6.627 0-12 5.373-12 12v12H256v-12c0-6.627-5.373-12-12-12h-12v-24h88v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12v-88h88v12c0 6.627 5.373 12 12 12h12v160zm40 64h-32v-32h32v32zm0-256h-32v-32h32v32z"] }; +var faPaperPlane = { prefix: 'far', iconName: 'paper-plane', icon: [512, 512, [], "f1d8", "M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z"] }; +var faPauseCircle = { prefix: 'far', iconName: 'pause-circle', icon: [512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm96-280v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16zm-112 0v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16z"] }; +var faPlayCircle = { prefix: 'far', iconName: 'play-circle', icon: [512, 512, [], "f144", "M371.7 238l-176-107c-15.8-8.8-35.7 2.5-35.7 21v208c0 18.4 19.8 29.8 35.7 21l176-101c16.4-9.1 16.4-32.8 0-42zM504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256z"] }; +var faPlusSquare = { prefix: 'far', iconName: 'plus-square', icon: [448, 512, [], "f0fe", "M352 240v32c0 6.6-5.4 12-12 12h-88v88c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-88h-88c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h88v-88c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v88h88c6.6 0 12 5.4 12 12zm96-160v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faQuestionCircle = { prefix: 'far', iconName: 'question-circle', icon: [512, 512, [], "f059", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 448c-110.532 0-200-89.431-200-200 0-110.495 89.472-200 200-200 110.491 0 200 89.471 200 200 0 110.53-89.431 200-200 200zm107.244-255.2c0 67.052-72.421 68.084-72.421 92.863V300c0 6.627-5.373 12-12 12h-45.647c-6.627 0-12-5.373-12-12v-8.659c0-35.745 27.1-50.034 47.579-61.516 17.561-9.845 28.324-16.541 28.324-29.579 0-17.246-21.999-28.693-39.784-28.693-23.189 0-33.894 10.977-48.942 29.969-4.057 5.12-11.46 6.071-16.666 2.124l-27.824-21.098c-5.107-3.872-6.251-11.066-2.644-16.363C184.846 131.491 214.94 112 261.794 112c49.071 0 101.45 38.304 101.45 88.8zM298 368c0 23.159-18.841 42-42 42s-42-18.841-42-42 18.841-42 42-42 42 18.841 42 42z"] }; +var faRegistered = { prefix: 'far', iconName: 'registered', icon: [512, 512, [], "f25d", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm110.442-81.791c-53.046-96.284-50.25-91.468-53.271-96.085 24.267-13.879 39.482-41.563 39.482-73.176 0-52.503-30.247-85.252-101.498-85.252h-78.667c-6.617 0-12 5.383-12 12V380c0 6.617 5.383 12 12 12h38.568c6.617 0 12-5.383 12-12v-83.663h31.958l47.515 89.303a11.98 11.98 0 0 0 10.593 6.36h42.81c9.14 0 14.914-9.799 10.51-17.791zM256.933 239.906h-33.875v-64.14h27.377c32.417 0 38.929 12.133 38.929 31.709-.001 20.913-11.518 32.431-32.431 32.431z"] }; +var faSave = { prefix: 'far', iconName: 'save', icon: [448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM272 80v80H144V80h128zm122 352H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h42v104c0 13.255 10.745 24 24 24h176c13.255 0 24-10.745 24-24V83.882l78.243 78.243a6 6 0 0 1 1.757 4.243V426a6 6 0 0 1-6 6zM224 232c-48.523 0-88 39.477-88 88s39.477 88 88 88 88-39.477 88-88-39.477-88-88-88zm0 128c-22.056 0-40-17.944-40-40s17.944-40 40-40 40 17.944 40 40-17.944 40-40 40z"] }; +var faShareSquare = { prefix: 'far', iconName: 'share-square', icon: [576, 512, [], "f14d", "M561.938 158.06L417.94 14.092C387.926-15.922 336 5.097 336 48.032v57.198c-42.45 1.88-84.03 6.55-120.76 17.99-35.17 10.95-63.07 27.58-82.91 49.42C108.22 199.2 96 232.6 96 271.94c0 61.697 33.178 112.455 84.87 144.76 37.546 23.508 85.248-12.651 71.02-55.74-15.515-47.119-17.156-70.923 84.11-78.76V336c0 42.993 51.968 63.913 81.94 33.94l143.998-144c18.75-18.74 18.75-49.14 0-67.88zM384 336V232.16C255.309 234.082 166.492 255.35 206.31 376 176.79 357.55 144 324.08 144 271.94c0-109.334 129.14-118.947 240-119.85V48l144 144-144 144zm24.74 84.493a82.658 82.658 0 0 0 20.974-9.303c7.976-4.952 18.286.826 18.286 10.214V464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h132c6.627 0 12 5.373 12 12v4.486c0 4.917-2.987 9.369-7.569 11.152-13.702 5.331-26.396 11.537-38.05 18.585a12.138 12.138 0 0 1-6.28 1.777H54a6 6 0 0 0-6 6v340a6 6 0 0 0 6 6h340a6 6 0 0 0 6-6v-25.966c0-5.37 3.579-10.059 8.74-11.541z"] }; +var faSmile = { prefix: 'far', iconName: 'smile', icon: [496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm84-143.4c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.6-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.2-8.4-25.3-7.1-33.8 3.1zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z"] }; +var faSnowflake = { prefix: 'far', iconName: 'snowflake', icon: [448, 512, [], "f2dc", "M438.237 355.927l-66.574-38.54 59.448-10.327c5.846-1.375 10.609-5.183 13.458-10.13 2.48-4.307 3.506-9.478 2.524-14.651-2.11-11.115-12.686-18.039-23.621-15.467l-85.423 31.115L255.914 256l82.136-41.926 85.423 31.115c10.936 2.572 21.512-4.352 23.621-15.467 2.111-11.115-5.046-22.209-15.981-24.781l-59.448-10.327 66.573-38.54c9.54-5.523 12.615-18.092 6.867-28.074-5.748-9.982-18.14-13.596-27.68-8.074l-66.574 38.54 20.805-56.787c3.246-10.782-2.758-22.542-13.413-26.268-10.654-3.725-21.922 1.997-25.168 12.779l-15.838 89.735-72.423 41.926V136l69.585-58.621c7.689-8.21 6.997-20.856-1.548-28.245-8.545-7.391-21.705-6.723-29.394 1.486l-38.644 46.46V20c0-11.046-9.318-20-20.813-20s-20.813 8.954-20.813 20v77.08l-38.644-46.46c-7.689-8.21-20.849-8.876-29.394-1.486-8.544 7.389-9.236 20.035-1.547 28.245L203.187 136v83.853l-72.423-41.926-15.838-89.736c-3.247-10.782-14.515-16.504-25.169-12.779-10.656 3.725-16.659 15.486-13.413 26.268l20.805 56.787-66.573-38.54c-9.54-5.523-21.933-1.908-27.68 8.074s-2.673 22.551 6.867 28.074l66.574 38.54-59.449 10.328C5.953 207.515-1.202 218.609.907 229.724c2.11 11.114 12.686 18.038 23.622 15.466l85.422-31.115L192.086 256l-82.136 41.926-85.423-31.115c-10.936-2.572-21.511 4.352-23.622 15.466-2.109 11.113 5.046 22.209 15.981 24.781l59.449 10.328-66.574 38.54C.223 361.449-2.852 374.018 2.896 384s18.14 13.597 27.68 8.074l66.574-38.54-20.805 56.786c-1.735 5.764-.828 11.805 2.02 16.751 2.48 4.307 6.433 7.784 11.392 9.517 10.655 3.725 21.923-1.997 25.169-12.779l15.838-89.736 72.423-41.926V376l-69.585 58.621c-7.69 8.21-6.997 20.855 1.547 28.245 8.544 7.388 21.705 6.723 29.394-1.487l38.644-46.46V492c0 11.046 9.318 20 20.813 20s20.813-8.954 20.813-20v-77.081l38.644 46.46c4.111 4.389 9.782 6.621 15.478 6.621 4.96 0 9.939-1.694 13.916-5.134 8.545-7.39 9.237-20.035 1.548-28.245L244.813 376v-83.853l72.423 41.926 15.838 89.736c3.246 10.782 14.514 16.504 25.168 12.779 10.653-3.726 16.659-15.487 13.412-26.268l-20.805-56.787 66.574 38.54c9.54 5.523 21.933 1.908 27.68-8.074 5.749-9.981 2.675-22.55-6.866-28.072z"] }; +var faSquare = { prefix: 'far', iconName: 'square', icon: [448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h340c3.3 0 6 2.7 6 6v340c0 3.3-2.7 6-6 6z"] }; +var faStar = { prefix: 'far', iconName: 'star', icon: [576, 512, [], "f005", "M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z"] }; +var faStarHalf = { prefix: 'far', iconName: 'star-half', icon: [576, 512, [], "f089", "M288 385.3l-124.3 65.4 23.7-138.4-100.6-98 139-20.2 62.2-126V0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6v-54.3z"] }; +var faStickyNote = { prefix: 'far', iconName: 'sticky-note', icon: [448, 512, [], "f249", "M448 348.106V80c0-26.51-21.49-48-48-48H48C21.49 32 0 53.49 0 80v351.988c0 26.51 21.49 48 48 48h268.118a48 48 0 0 0 33.941-14.059l83.882-83.882A48 48 0 0 0 448 348.106zm-128 80v-76.118h76.118L320 428.106zM400 80v223.988H296c-13.255 0-24 10.745-24 24v104H48V80h352z"] }; +var faStopCircle = { prefix: 'far', iconName: 'stop-circle', icon: [512, 512, [], "f28d", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm296-80v160c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16z"] }; +var faSun = { prefix: 'far', iconName: 'sun', icon: [512, 512, [], "f185", "M220.116 487.936l-20.213-49.425a3.992 3.992 0 0 0-5.808-1.886l-45.404 28.104c-29.466 18.24-66.295-8.519-58.054-42.179l12.699-51.865a3.993 3.993 0 0 0-3.59-4.941l-53.251-3.951c-34.554-2.562-48.632-45.855-22.174-68.247L65.08 259.05a3.992 3.992 0 0 0 0-6.106l-40.76-34.497c-26.45-22.384-12.39-65.682 22.174-68.246l53.251-3.951a3.993 3.993 0 0 0 3.59-4.941L90.637 89.443c-8.239-33.656 28.581-60.42 58.054-42.179l45.403 28.104a3.993 3.993 0 0 0 5.808-1.887l20.213-49.425c13.116-32.071 58.638-32.081 71.758 0l20.212 49.424a3.994 3.994 0 0 0 5.809 1.887l45.403-28.104c29.464-18.236 66.297 8.513 58.054 42.179l-12.699 51.865a3.995 3.995 0 0 0 3.59 4.941l53.251 3.951c34.553 2.563 48.633 45.854 22.175 68.246l-40.76 34.497a3.993 3.993 0 0 0 0 6.107l40.76 34.496c26.511 22.441 12.322 65.689-22.175 68.247l-53.251 3.951a3.993 3.993 0 0 0-3.589 4.942l12.698 51.864c8.241 33.658-28.583 60.421-58.054 42.18l-45.403-28.104a3.994 3.994 0 0 0-5.809 1.887l-20.212 49.424c-13.159 32.178-58.675 31.993-71.757 0zm16.814-64.568l19.064 46.616 19.064-46.615c10.308-25.2 40.778-35.066 63.892-20.759l42.822 26.507-11.976-48.919c-6.475-26.444 12.38-52.339 39.487-54.349l50.226-3.726-38.444-32.536c-20.782-17.591-20.747-49.621.001-67.18l38.442-32.536-50.225-3.727c-27.151-2.015-45.95-27.948-39.488-54.349l11.978-48.919-42.823 26.507c-23.151 14.327-53.603 4.4-63.892-20.76l-19.064-46.615-19.064 46.617c-10.305 25.198-40.778 35.066-63.891 20.76l-42.823-26.508 11.977 48.918c6.474 26.446-12.381 52.338-39.488 54.35l-50.224 3.726 38.443 32.537c20.782 17.588 20.747 49.619 0 67.178L52.48 322.123l50.226 3.726c27.151 2.014 45.95 27.947 39.487 54.349l-11.977 48.919 42.823-26.507c23.188-14.355 53.622-4.352 63.891 20.758zM256 384c-70.58 0-128-57.421-128-128 0-70.58 57.42-128 128-128 70.579 0 128 57.42 128 128 0 70.579-57.421 128-128 128zm0-208c-44.112 0-80 35.888-80 80s35.888 80 80 80 80-35.888 80-80-35.888-80-80-80z"] }; +var faThumbsDown = { prefix: 'far', iconName: 'thumbs-down', icon: [512, 512, [], "f165", "M466.27 225.31c4.674-22.647.864-44.538-8.99-62.99 2.958-23.868-4.021-48.565-17.34-66.99C438.986 39.423 404.117 0 327 0c-7 0-15 .01-22.22.01C201.195.01 168.997 40 128 40h-10.845c-5.64-4.975-13.042-8-21.155-8H32C14.327 32 0 46.327 0 64v240c0 17.673 14.327 32 32 32h64c11.842 0 22.175-6.438 27.708-16h7.052c19.146 16.953 46.013 60.653 68.76 83.4 13.667 13.667 10.153 108.6 71.76 108.6 57.58 0 95.27-31.936 95.27-104.73 0-18.41-3.93-33.73-8.85-46.54h36.48c48.602 0 85.82-41.565 85.82-85.58 0-19.15-4.96-34.99-13.73-49.84zM64 296c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm330.18 16.73H290.19c0 37.82 28.36 55.37 28.36 94.54 0 23.75 0 56.73-47.27 56.73-18.91-18.91-9.46-66.18-37.82-94.54C206.9 342.89 167.28 272 138.92 272H128V85.83c53.611 0 100.001-37.82 171.64-37.82h37.82c35.512 0 60.82 17.12 53.12 65.9 15.2 8.16 26.5 36.44 13.94 57.57 21.581 20.384 18.699 51.065 5.21 65.62 9.45 0 22.36 18.91 22.27 37.81-.09 18.91-16.71 37.82-37.82 37.82z"] }; +var faThumbsUp = { prefix: 'far', iconName: 'thumbs-up', icon: [512, 512, [], "f164", "M466.27 286.69C475.04 271.84 480 256 480 236.85c0-44.015-37.218-85.58-85.82-85.58H357.7c4.92-12.81 8.85-28.13 8.85-46.54C366.55 31.936 328.86 0 271.28 0c-61.607 0-58.093 94.933-71.76 108.6-22.747 22.747-49.615 66.447-68.76 83.4H32c-17.673 0-32 14.327-32 32v240c0 17.673 14.327 32 32 32h64c14.893 0 27.408-10.174 30.978-23.95 44.509 1.001 75.06 39.94 177.802 39.94 7.22 0 15.22.01 22.22.01 77.117 0 111.986-39.423 112.94-95.33 13.319-18.425 20.299-43.122 17.34-66.99 9.854-18.452 13.664-40.343 8.99-62.99zm-61.75 53.83c12.56 21.13 1.26 49.41-13.94 57.57 7.7 48.78-17.608 65.9-53.12 65.9h-37.82c-71.639 0-118.029-37.82-171.64-37.82V240h10.92c28.36 0 67.98-70.89 94.54-97.46 28.36-28.36 18.91-75.63 37.82-94.54 47.27 0 47.27 32.98 47.27 56.73 0 39.17-28.36 56.72-28.36 94.54h103.99c21.11 0 37.73 18.91 37.82 37.82.09 18.9-12.82 37.81-22.27 37.81 13.489 14.555 16.371 45.236-5.21 65.62zM88 432c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"] }; +var faTimesCircle = { prefix: 'far', iconName: 'times-circle', icon: [512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm101.8-262.2L295.6 256l62.2 62.2c4.7 4.7 4.7 12.3 0 17l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L256 295.6l-62.2 62.2c-4.7 4.7-12.3 4.7-17 0l-22.6-22.6c-4.7-4.7-4.7-12.3 0-17l62.2-62.2-62.2-62.2c-4.7-4.7-4.7-12.3 0-17l22.6-22.6c4.7-4.7 12.3-4.7 17 0l62.2 62.2 62.2-62.2c4.7-4.7 12.3-4.7 17 0l22.6 22.6c4.7 4.7 4.7 12.3 0 17z"] }; +var faTrashAlt = { prefix: 'far', iconName: 'trash-alt', icon: [448, 512, [], "f2ed", "M192 188v216c0 6.627-5.373 12-12 12h-24c-6.627 0-12-5.373-12-12V188c0-6.627 5.373-12 12-12h24c6.627 0 12 5.373 12 12zm100-12h-24c-6.627 0-12 5.373-12 12v216c0 6.627 5.373 12 12 12h24c6.627 0 12-5.373 12-12V188c0-6.627-5.373-12-12-12zm132-96c13.255 0 24 10.745 24 24v12c0 6.627-5.373 12-12 12h-20v336c0 26.51-21.49 48-48 48H80c-26.51 0-48-21.49-48-48V128H12c-6.627 0-12-5.373-12-12v-12c0-13.255 10.745-24 24-24h74.411l34.018-56.696A48 48 0 0 1 173.589 0h100.823a48 48 0 0 1 41.16 23.304L349.589 80H424zm-269.611 0h139.223L276.16 50.913A6 6 0 0 0 271.015 48h-94.028a6 6 0 0 0-5.145 2.913L154.389 80zM368 128H80v330a6 6 0 0 0 6 6h276a6 6 0 0 0 6-6V128z"] }; +var faUser = { prefix: 'far', iconName: 'user', icon: [448, 512, [], "f007", "M313.6 304c-28.7 0-42.5 16-89.6 16-47.1 0-60.8-16-89.6-16C60.2 304 0 364.2 0 438.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-25.6c0-74.2-60.2-134.4-134.4-134.4zM400 464H48v-25.6c0-47.6 38.8-86.4 86.4-86.4 14.6 0 38.3 16 89.6 16 51.7 0 74.9-16 89.6-16 47.6 0 86.4 38.8 86.4 86.4V464zM224 288c79.5 0 144-64.5 144-144S303.5 0 224 0 80 64.5 80 144s64.5 144 144 144zm0-240c52.9 0 96 43.1 96 96s-43.1 96-96 96-96-43.1-96-96 43.1-96 96-96z"] }; +var faUserCircle = { prefix: 'far', iconName: 'user-circle', icon: [496, 512, [], "f2bd", "M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"] }; +var faWindowClose = { prefix: 'far', iconName: 'window-close', icon: [512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v340zM356.5 194.6L295.1 256l61.4 61.4c4.6 4.6 4.6 12.1 0 16.8l-22.3 22.3c-4.6 4.6-12.1 4.6-16.8 0L256 295.1l-61.4 61.4c-4.6 4.6-12.1 4.6-16.8 0l-22.3-22.3c-4.6-4.6-4.6-12.1 0-16.8l61.4-61.4-61.4-61.4c-4.6-4.6-4.6-12.1 0-16.8l22.3-22.3c4.6-4.6 12.1-4.6 16.8 0l61.4 61.4 61.4-61.4c4.6-4.6 12.1-4.6 16.8 0l22.3 22.3c4.7 4.6 4.7 12.1 0 16.8z"] }; +var faWindowMaximize = { prefix: 'far', iconName: 'window-maximize', icon: [512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V192h416v234z"] }; +var faWindowMinimize = { prefix: 'far', iconName: 'window-minimize', icon: [512, 512, [], "f2d1", "M480 480H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h448c17.7 0 32 14.3 32 32s-14.3 32-32 32z"] }; +var faWindowRestore = { prefix: 'far', iconName: 'window-restore', icon: [512, 512, [], "f2d2", "M464 0H144c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-96 464H48V256h320v208zm96-96h-48V144c0-26.5-21.5-48-48-48H144V48h320v320z"] }; +var icons$1 = { + faAddressBook: faAddressBook, + faAddressCard: faAddressCard, + faArrowAltCircleDown: faArrowAltCircleDown, + faArrowAltCircleLeft: faArrowAltCircleLeft, + faArrowAltCircleRight: faArrowAltCircleRight, + faArrowAltCircleUp: faArrowAltCircleUp, + faBell: faBell, + faBellSlash: faBellSlash, + faBookmark: faBookmark, + faBuilding: faBuilding, + faCalendar: faCalendar, + faCalendarAlt: faCalendarAlt, + faCalendarCheck: faCalendarCheck, + faCalendarMinus: faCalendarMinus, + faCalendarPlus: faCalendarPlus, + faCalendarTimes: faCalendarTimes, + faCaretSquareDown: faCaretSquareDown, + faCaretSquareLeft: faCaretSquareLeft, + faCaretSquareRight: faCaretSquareRight, + faCaretSquareUp: faCaretSquareUp, + faChartBar: faChartBar, + faCheckCircle: faCheckCircle, + faCheckSquare: faCheckSquare, + faCircle: faCircle, + faClipboard: faClipboard, + faClock: faClock, + faClone: faClone, + faClosedCaptioning: faClosedCaptioning, + faComment: faComment, + faCommentAlt: faCommentAlt, + faCommentDots: faCommentDots, + faComments: faComments, + faCompass: faCompass, + faCopy: faCopy, + faCopyright: faCopyright, + faCreditCard: faCreditCard, + faDotCircle: faDotCircle, + faEdit: faEdit, + faEnvelope: faEnvelope, + faEnvelopeOpen: faEnvelopeOpen, + faEye: faEye, + faEyeSlash: faEyeSlash, + faFile: faFile, + faFileAlt: faFileAlt, + faFileArchive: faFileArchive, + faFileAudio: faFileAudio, + faFileCode: faFileCode, + faFileExcel: faFileExcel, + faFileImage: faFileImage, + faFilePdf: faFilePdf, + faFilePowerpoint: faFilePowerpoint, + faFileVideo: faFileVideo, + faFileWord: faFileWord, + faFlag: faFlag, + faFolder: faFolder, + faFolderOpen: faFolderOpen, + faFontAwesomeLogoFull: faFontAwesomeLogoFull, + faFrown: faFrown, + faFutbol: faFutbol, + faGem: faGem, + faHandLizard: faHandLizard, + faHandPaper: faHandPaper, + faHandPeace: faHandPeace, + faHandPointDown: faHandPointDown, + faHandPointLeft: faHandPointLeft, + faHandPointRight: faHandPointRight, + faHandPointUp: faHandPointUp, + faHandPointer: faHandPointer, + faHandRock: faHandRock, + faHandScissors: faHandScissors, + faHandSpock: faHandSpock, + faHandshake: faHandshake, + faHdd: faHdd, + faHeart: faHeart, + faHospital: faHospital, + faHourglass: faHourglass, + faIdBadge: faIdBadge, + faIdCard: faIdCard, + faImage: faImage, + faImages: faImages, + faKeyboard: faKeyboard, + faLemon: faLemon, + faLifeRing: faLifeRing, + faLightbulb: faLightbulb, + faListAlt: faListAlt, + faMap: faMap, + faMeh: faMeh, + faMinusSquare: faMinusSquare, + faMoneyBillAlt: faMoneyBillAlt, + faMoon: faMoon, + faNewspaper: faNewspaper, + faObjectGroup: faObjectGroup, + faObjectUngroup: faObjectUngroup, + faPaperPlane: faPaperPlane, + faPauseCircle: faPauseCircle, + faPlayCircle: faPlayCircle, + faPlusSquare: faPlusSquare, + faQuestionCircle: faQuestionCircle, + faRegistered: faRegistered, + faSave: faSave, + faShareSquare: faShareSquare, + faSmile: faSmile, + faSnowflake: faSnowflake, + faSquare: faSquare, + faStar: faStar, + faStarHalf: faStarHalf, + faStickyNote: faStickyNote, + faStopCircle: faStopCircle, + faSun: faSun, + faThumbsDown: faThumbsDown, + faThumbsUp: faThumbsUp, + faTimesCircle: faTimesCircle, + faTrashAlt: faTrashAlt, + faUser: faUser, + faUserCircle: faUserCircle, + faWindowClose: faWindowClose, + faWindowMaximize: faWindowMaximize, + faWindowMinimize: faWindowMinimize, + faWindowRestore: faWindowRestore +}; + +export { prefix, faAddressBook, faAddressCard, faArrowAltCircleDown, faArrowAltCircleLeft, faArrowAltCircleRight, faArrowAltCircleUp, faBell, faBellSlash, faBookmark, faBuilding, faCalendar, faCalendarAlt, faCalendarCheck, faCalendarMinus, faCalendarPlus, faCalendarTimes, faCaretSquareDown, faCaretSquareLeft, faCaretSquareRight, faCaretSquareUp, faChartBar, faCheckCircle, faCheckSquare, faCircle, faClipboard, faClock, faClone, faClosedCaptioning, faComment, faCommentAlt, faCommentDots, faComments, faCompass, faCopy, faCopyright, faCreditCard, faDotCircle, faEdit, faEnvelope, faEnvelopeOpen, faEye, faEyeSlash, faFile, faFileAlt, faFileArchive, faFileAudio, faFileCode, faFileExcel, faFileImage, faFilePdf, faFilePowerpoint, faFileVideo, faFileWord, faFlag, faFolder, faFolderOpen, faFontAwesomeLogoFull, faFrown, faFutbol, faGem, faHandLizard, faHandPaper, faHandPeace, faHandPointDown, faHandPointLeft, faHandPointRight, faHandPointUp, faHandPointer, faHandRock, faHandScissors, faHandSpock, faHandshake, faHdd, faHeart, faHospital, faHourglass, faIdBadge, faIdCard, faImage, faImages, faKeyboard, faLemon, faLifeRing, faLightbulb, faListAlt, faMap, faMeh, faMinusSquare, faMoneyBillAlt, faMoon, faNewspaper, faObjectGroup, faObjectUngroup, faPaperPlane, faPauseCircle, faPlayCircle, faPlusSquare, faQuestionCircle, faRegistered, faSave, faShareSquare, faSmile, faSnowflake, faSquare, faStar, faStarHalf, faStickyNote, faStopCircle, faSun, faThumbsDown, faThumbsUp, faTimesCircle, faTrashAlt, faUser, faUserCircle, faWindowClose, faWindowMaximize, faWindowMinimize, faWindowRestore }; +export default icons$1; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/shakable.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/shakable.js new file mode 100644 index 0000000000..340b09f8b6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-regular/shakable.js @@ -0,0 +1,377 @@ +/*! + * Font Awesome Free 5.0.13 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : + typeof define === 'function' && define.amd ? define(['exports'], factory) : + (factory((global['fontawesome-free-regular'] = {}))); +}(this, (function (exports) { 'use strict'; + +var prefix = "far"; +var faAddressBook = { prefix: 'far', iconName: 'address-book', icon: [448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-68 304H48V48h320v416zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"] }; +var faAddressCard = { prefix: 'far', iconName: 'address-card', icon: [576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H48V80h480v352zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2zM360 320h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8z"] }; +var faArrowAltCircleDown = { prefix: 'far', iconName: 'arrow-alt-circle-down', icon: [512, 512, [], "f358", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm-32-316v116h-67c-10.7 0-16 12.9-8.5 20.5l99 99c4.7 4.7 12.3 4.7 17 0l99-99c7.6-7.6 2.2-20.5-8.5-20.5h-67V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12z"] }; +var faArrowAltCircleLeft = { prefix: 'far', iconName: 'arrow-alt-circle-left', icon: [512, 512, [], "f359", "M8 256c0 137 111 248 248 248s248-111 248-248S393 8 256 8 8 119 8 256zm448 0c0 110.5-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56s200 89.5 200 200zm-72-20v40c0 6.6-5.4 12-12 12H256v67c0 10.7-12.9 16-20.5 8.5l-99-99c-4.7-4.7-4.7-12.3 0-17l99-99c7.6-7.6 20.5-2.2 20.5 8.5v67h116c6.6 0 12 5.4 12 12z"] }; +var faArrowAltCircleRight = { prefix: 'far', iconName: 'arrow-alt-circle-right', icon: [512, 512, [], "f35a", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z"] }; +var faArrowAltCircleUp = { prefix: 'far', iconName: 'arrow-alt-circle-up', icon: [512, 512, [], "f35b", "M256 504c137 0 248-111 248-248S393 8 256 8 8 119 8 256s111 248 248 248zm0-448c110.5 0 200 89.5 200 200s-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56zm20 328h-40c-6.6 0-12-5.4-12-12V256h-67c-10.7 0-16-12.9-8.5-20.5l99-99c4.7-4.7 12.3-4.7 17 0l99 99c7.6 7.6 2.2 20.5-8.5 20.5h-67v116c0 6.6-5.4 12-12 12z"] }; +var faBell = { prefix: 'far', iconName: 'bell', icon: [448, 512, [], "f0f3", "M425.403 330.939c-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.843 31.843 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095C118.101 62.783 57.143 131.831 57.143 214.857c0 81.933-17.551 99.292-34.543 116.078C-25.496 378.441 9.726 448 66.919 448H160c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h93.08c57.19 0 92.415-69.583 44.323-117.061zM224 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm157.092-72H66.9c-16.762 0-25.135-20.39-13.334-32.191 28.585-28.585 51.577-55.724 51.577-152.952C105.143 149.319 158.462 96 224 96s118.857 53.319 118.857 118.857c0 97.65 23.221 124.574 51.568 152.952C406.278 379.661 397.783 400 381.092 400z"] }; +var faBellSlash = { prefix: 'far', iconName: 'bell-slash', icon: [576, 512, [], "f1f6", "M130.9 400c-16.762 0-25.135-20.39-13.334-32.191 25.226-25.226 46.094-49.338 50.649-121.48l-46.777-41.274a168.48 168.48 0 0 0-.296 9.802c0 81.933-17.551 99.292-34.543 116.078C38.504 378.441 73.726 448 130.919 448H224c0 35.346 28.654 64 64 64s64-28.654 64-64h44.777l-54.4-48H130.9zM288 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm283.867.553l-67.931-59.571c13.104-24.118 11.524-56.318-14.532-82.042-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.848 31.848 0 0 0 320 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095c-41.471 6.618-77.891 28.571-103.249 59.841L36.459 3.037c-5.058-4.436-12.777-3.956-17.24 1.071L3.056 22.313C-1.407 27.34-.925 35.012 4.134 39.447l535.408 469.516c5.058 4.436 12.777 3.956 17.24-1.071l16.163-18.205c4.462-5.027 3.98-12.699-1.078-17.134zM288 96c65.538 0 118.857 53.319 118.857 118.857 0 97.65 23.221 124.574 51.568 152.952 2.908 2.908 4.573 6.328 5.209 9.832L194.482 141.612C216.258 113.867 250.075 96 288 96z"] }; +var faBookmark = { prefix: 'far', iconName: 'bookmark', icon: [384, 512, [], "f02e", "M336 0H48C21.49 0 0 21.49 0 48v464l192-112 192 112V48c0-26.51-21.49-48-48-48zm0 428.43l-144-84-144 84V54a6 6 0 0 1 6-6h276c3.314 0 6 2.683 6 5.996V428.43z"] }; +var faBuilding = { prefix: 'far', iconName: 'building', icon: [448, 512, [], "f1ad", "M128 148v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12zm140 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-128 96h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm128 0h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-76 84v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm76 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm180 124v36H0v-36c0-6.6 5.4-12 12-12h19.5V24c0-13.3 10.7-24 24-24h337c13.3 0 24 10.7 24 24v440H436c6.6 0 12 5.4 12 12zM79.5 463H192v-67c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v67h112.5V49L80 48l-.5 415z"] }; +var faCalendar = { prefix: 'far', iconName: 'calendar', icon: [448, 512, [], "f133", "M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z"] }; +var faCalendarAlt = { prefix: 'far', iconName: 'calendar-alt', icon: [448, 512, [], "f073", "M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCalendarCheck = { prefix: 'far', iconName: 'calendar-check', icon: [448, 512, [], "f274", "M400 64h-48V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H160V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V160h352v298a6 6 0 0 1-6 6zm-52.849-200.65L198.842 404.519c-4.705 4.667-12.303 4.637-16.971-.068l-75.091-75.699c-4.667-4.705-4.637-12.303.068-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l44.104 44.461 111.072-110.181c4.705-4.667 12.303-4.637 16.971.068l22.536 22.718c4.667 4.705 4.636 12.303-.069 16.97z"] }; +var faCalendarMinus = { prefix: 'far', iconName: 'calendar-minus', icon: [448, 512, [], "f272", "M124 328c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H124zm324-216v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCalendarPlus = { prefix: 'far', iconName: 'calendar-plus', icon: [448, 512, [], "f271", "M336 292v24c0 6.6-5.4 12-12 12h-76v76c0 6.6-5.4 12-12 12h-24c-6.6 0-12-5.4-12-12v-76h-76c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h76v-76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v76h76c6.6 0 12 5.4 12 12zm112-180v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCalendarTimes = { prefix: 'far', iconName: 'calendar-times', icon: [448, 512, [], "f273", "M311.7 374.7l-17 17c-4.7 4.7-12.3 4.7-17 0L224 337.9l-53.7 53.7c-4.7 4.7-12.3 4.7-17 0l-17-17c-4.7-4.7-4.7-12.3 0-17l53.7-53.7-53.7-53.7c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0l53.7 53.7 53.7-53.7c4.7-4.7 12.3-4.7 17 0l17 17c4.7 4.7 4.7 12.3 0 17L257.9 304l53.7 53.7c4.8 4.7 4.8 12.3.1 17zM448 112v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCaretSquareDown = { prefix: 'far', iconName: 'caret-square-down', icon: [448, 512, [], "f150", "M125.1 208h197.8c10.7 0 16.1 13 8.5 20.5l-98.9 98.3c-4.7 4.7-12.2 4.7-16.9 0l-98.9-98.3c-7.7-7.5-2.3-20.5 8.4-20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCaretSquareLeft = { prefix: 'far', iconName: 'caret-square-left', icon: [448, 512, [], "f191", "M272 157.1v197.8c0 10.7-13 16.1-20.5 8.5l-98.3-98.9c-4.7-4.7-4.7-12.2 0-16.9l98.3-98.9c7.5-7.7 20.5-2.3 20.5 8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCaretSquareRight = { prefix: 'far', iconName: 'caret-square-right', icon: [448, 512, [], "f152", "M176 354.9V157.1c0-10.7 13-16.1 20.5-8.5l98.3 98.9c4.7 4.7 4.7 12.2 0 16.9l-98.3 98.9c-7.5 7.7-20.5 2.3-20.5-8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCaretSquareUp = { prefix: 'far', iconName: 'caret-square-up', icon: [448, 512, [], "f151", "M322.9 304H125.1c-10.7 0-16.1-13-8.5-20.5l98.9-98.3c4.7-4.7 12.2-4.7 16.9 0l98.9 98.3c7.7 7.5 2.3 20.5-8.4 20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faChartBar = { prefix: 'far', iconName: 'chart-bar', icon: [512, 512, [], "f080", "M500 400c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v324h452zm-356-60v-72c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V140c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V204c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V108c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12z"] }; +var faCheckCircle = { prefix: 'far', iconName: 'check-circle', icon: [512, 512, [], "f058", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"] }; +var faCheckSquare = { prefix: 'far', iconName: 'check-square', icon: [448, 512, [], "f14a", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm0 400H48V80h352v352zm-35.864-241.724L191.547 361.48c-4.705 4.667-12.303 4.637-16.97-.068l-90.781-91.516c-4.667-4.705-4.637-12.303.069-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l59.792 60.277 141.352-140.216c4.705-4.667 12.303-4.637 16.97.068l22.536 22.718c4.667 4.706 4.637 12.304-.068 16.971z"] }; +var faCircle = { prefix: 'far', iconName: 'circle', icon: [512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z"] }; +var faClipboard = { prefix: 'far', iconName: 'clipboard', icon: [384, 512, [], "f328", "M336 64h-80c0-35.29-28.71-64-64-64s-64 28.71-64 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h42v36c0 6.627 5.373 12 12 12h168c6.627 0 12-5.373 12-12v-36h42a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zM192 40c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24"] }; +var faClock = { prefix: 'far', iconName: 'clock', icon: [512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"] }; +var faClone = { prefix: 'far', iconName: 'clone', icon: [512, 512, [], "f24d", "M464 0H144c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h320c26.51 0 48-21.49 48-48v-48h48c26.51 0 48-21.49 48-48V48c0-26.51-21.49-48-48-48zM362 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h42v224c0 26.51 21.49 48 48 48h224v42a6 6 0 0 1-6 6zm96-96H150a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h308a6 6 0 0 1 6 6v308a6 6 0 0 1-6 6z"] }; +var faClosedCaptioning = { prefix: 'far', iconName: 'closed-captioning', icon: [512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 336H54c-3.3 0-6-2.7-6-6V118c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v276c0 3.3-2.7 6-6 6zm-211.1-85.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7zm190.4 0c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.9-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 220.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7z"] }; +var faComment = { prefix: 'far', iconName: 'comment', icon: [512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"] }; +var faCommentAlt = { prefix: 'far', iconName: 'comment-alt', icon: [512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 7.1 5.8 12 12 12 2.4 0 4.9-.7 7.1-2.4L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm16 352c0 8.8-7.2 16-16 16H288l-12.8 9.6L208 428v-60H64c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h384c8.8 0 16 7.2 16 16v288z"] }; +var faCommentDots = { prefix: 'far', iconName: 'comment-dots', icon: [512, 512, [], "f4ad", "M144 208c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"] }; +var faComments = { prefix: 'far', iconName: 'comments', icon: [576, 512, [], "f086", "M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"] }; +var faCompass = { prefix: 'far', iconName: 'compass', icon: [512, 512, [], "f14e", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm91.326-312.131l-33.359 137.779a24.005 24.005 0 0 1-6.772 11.729l-102.64 97.779c-17.104 16.293-45.56.434-39.88-23.024l33.359-137.779a23.997 23.997 0 0 1 6.772-11.729l102.642-97.779c17.285-16.47 45.494-.175 39.878 23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; +var faCopy = { prefix: 'far', iconName: 'copy', icon: [448, 512, [], "f0c5", "M433.941 65.941l-51.882-51.882A48 48 0 0 0 348.118 0H176c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48v-48h80c26.51 0 48-21.49 48-48V99.882a48 48 0 0 0-14.059-33.941zM266 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h74v224c0 26.51 21.49 48 48 48h96v42a6 6 0 0 1-6 6zm128-96H182a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h106v88c0 13.255 10.745 24 24 24h88v202a6 6 0 0 1-6 6zm6-256h-64V48h9.632c1.591 0 3.117.632 4.243 1.757l48.368 48.368a6 6 0 0 1 1.757 4.243V112z"] }; +var faCopyright = { prefix: 'far', iconName: 'copyright', icon: [512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm107.351-101.064c-9.614 9.712-45.53 41.396-104.065 41.396-82.43 0-140.484-61.425-140.484-141.567 0-79.152 60.275-139.401 139.762-139.401 55.531 0 88.738 26.62 97.593 34.779a11.965 11.965 0 0 1 1.936 15.322l-18.155 28.113c-3.841 5.95-11.966 7.282-17.499 2.921-8.595-6.776-31.814-22.538-61.708-22.538-48.303 0-77.916 35.33-77.916 80.082 0 41.589 26.888 83.692 78.277 83.692 32.657 0 56.843-19.039 65.726-27.225 5.27-4.857 13.596-4.039 17.82 1.738l19.865 27.17a11.947 11.947 0 0 1-1.152 15.518z"] }; +var faCreditCard = { prefix: 'far', iconName: 'credit-card', icon: [576, 512, [], "f09d", "M527.9 32H48.1C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48.1 48h479.8c26.6 0 48.1-21.5 48.1-48V80c0-26.5-21.5-48-48.1-48zM54.1 80h467.8c3.3 0 6 2.7 6 6v42H48.1V86c0-3.3 2.7-6 6-6zm467.8 352H54.1c-3.3 0-6-2.7-6-6V256h479.8v170c0 3.3-2.7 6-6 6zM192 332v40c0 6.6-5.4 12-12 12h-72c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12zm192 0v40c0 6.6-5.4 12-12 12H236c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12z"] }; +var faDotCircle = { prefix: 'far', iconName: 'dot-circle', icon: [512, 512, [], "f192", "M256 56c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m0-48C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 168c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80z"] }; +var faEdit = { prefix: 'far', iconName: 'edit', icon: [576, 512, [], "f044", "M402.3 344.9l32-32c5-5 13.7-1.5 13.7 5.7V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h273.5c7.1 0 10.7 8.6 5.7 13.7l-32 32c-1.5 1.5-3.5 2.3-5.7 2.3H48v352h352V350.5c0-2.1.8-4.1 2.3-5.6zm156.6-201.8L296.3 405.7l-90.4 10c-26.2 2.9-48.5-19.2-45.6-45.6l10-90.4L432.9 17.1c22.9-22.9 59.9-22.9 82.7 0l43.2 43.2c22.9 22.9 22.9 60 .1 82.8zM460.1 174L402 115.9 216.2 301.8l-7.3 65.3 65.3-7.3L460.1 174zm64.8-79.7l-43.2-43.2c-4.1-4.1-10.8-4.1-14.8 0L436 82l58.1 58.1 30.9-30.9c4-4.2 4-10.8-.1-14.9z"] }; +var faEnvelope = { prefix: 'far', iconName: 'envelope', icon: [512, 512, [], "f0e0", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z"] }; +var faEnvelopeOpen = { prefix: 'far', iconName: 'envelope-open', icon: [512, 512, [], "f2b6", "M494.586 164.516c-4.697-3.883-111.723-89.95-135.251-108.657C337.231 38.191 299.437 0 256 0c-43.205 0-80.636 37.717-103.335 55.859-24.463 19.45-131.07 105.195-135.15 108.549A48.004 48.004 0 0 0 0 201.485V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V201.509a48 48 0 0 0-17.414-36.993zM464 458a6 6 0 0 1-6 6H54a6 6 0 0 1-6-6V204.347c0-1.813.816-3.526 2.226-4.665 15.87-12.814 108.793-87.554 132.364-106.293C200.755 78.88 232.398 48 256 48c23.693 0 55.857 31.369 73.41 45.389 23.573 18.741 116.503 93.493 132.366 106.316a5.99 5.99 0 0 1 2.224 4.663V458zm-31.991-187.704c4.249 5.159 3.465 12.795-1.745 16.981-28.975 23.283-59.274 47.597-70.929 56.863C336.636 362.283 299.205 400 256 400c-43.452 0-81.287-38.237-103.335-55.86-11.279-8.967-41.744-33.413-70.927-56.865-5.21-4.187-5.993-11.822-1.745-16.981l15.258-18.528c4.178-5.073 11.657-5.843 16.779-1.726 28.618 23.001 58.566 47.035 70.56 56.571C200.143 320.631 232.307 352 256 352c23.602 0 55.246-30.88 73.41-45.389 11.994-9.535 41.944-33.57 70.563-56.568 5.122-4.116 12.601-3.346 16.778 1.727l15.258 18.526z"] }; +var faEye = { prefix: 'far', iconName: 'eye', icon: [576, 512, [], "f06e", "M569.354 231.631C512.97 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-102.556 0-192.091-54.701-240-136 44.157-74.933 123.677-127.27 216.162-135.007C273.958 131.078 280 144.83 280 160c0 30.928-25.072 56-56 56s-56-25.072-56-56l.001-.042C157.794 179.043 152 200.844 152 224c0 75.111 60.889 136 136 136s136-60.889 136-136c0-31.031-10.4-59.629-27.895-82.515C451.704 164.638 498.009 205.106 528 256c-47.908 81.299-137.444 136-240 136z"] }; +var faEyeSlash = { prefix: 'far', iconName: 'eye-slash', icon: [576, 512, [], "f070", "M272.702 359.139c-80.483-9.011-136.212-86.886-116.93-167.042l116.93 167.042zM288 392c-102.556 0-192.092-54.701-240-136 21.755-36.917 52.1-68.342 88.344-91.658l-27.541-39.343C67.001 152.234 31.921 188.741 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.004 376.006 168.14 440 288 440a332.89 332.89 0 0 0 39.648-2.367l-32.021-45.744A284.16 284.16 0 0 1 288 392zm281.354-111.631c-33.232 56.394-83.421 101.742-143.554 129.492l48.116 68.74c3.801 5.429 2.48 12.912-2.949 16.712L450.23 509.83c-5.429 3.801-12.912 2.48-16.712-2.949L102.084 33.399c-3.801-5.429-2.48-12.912 2.949-16.712L125.77 2.17c5.429-3.801 12.912-2.48 16.712 2.949l55.526 79.325C226.612 76.343 256.808 72 288 72c119.86 0 224.996 63.994 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM528 256c-44.157-74.933-123.677-127.27-216.162-135.007C302.042 131.078 296 144.83 296 160c0 30.928 25.072 56 56 56s56-25.072 56-56l-.001-.042c30.632 57.277 16.739 130.26-36.928 171.719l26.695 38.135C452.626 346.551 498.308 306.386 528 256z"] }; +var faFile = { prefix: 'far', iconName: 'file', icon: [384, 512, [], "f15b", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48z"] }; +var faFileAlt = { prefix: 'far', iconName: 'file-alt', icon: [384, 512, [], "f15c", "M288 248v28c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-28c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm-12 72H108c-6.6 0-12 5.4-12 12v28c0 6.6 5.4 12 12 12h168c6.6 0 12-5.4 12-12v-28c0-6.6-5.4-12-12-12zm108-188.1V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48C0 21.5 21.5 0 48 0h204.1C264.8 0 277 5.1 286 14.1L369.9 98c9 8.9 14.1 21.2 14.1 33.9zm-128-80V128h76.1L256 51.9zM336 464V176H232c-13.3 0-24-10.7-24-24V48H48v416h288z"] }; +var faFileArchive = { prefix: 'far', iconName: 'file-archive', icon: [384, 512, [], "f1c6", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM256 51.882L332.118 128H256V51.882zM336 464H48V48h79.714v16h32V48H208v104c0 13.255 10.745 24 24 24h104v288zM192.27 96h-32V64h32v32zm-32 0v32h-32V96h32zm0 64v32h-32v-32h32zm32 0h-32v-32h32v32zm1.909 105.678A12 12 0 0 0 182.406 256H160.27v-32h-32v32l-19.69 97.106C101.989 385.611 126.834 416 160 416c33.052 0 57.871-30.192 51.476-62.62l-17.297-87.702zM160.27 390.073c-17.918 0-32.444-12.105-32.444-27.036 0-14.932 14.525-27.036 32.444-27.036s32.444 12.105 32.444 27.036c0 14.931-14.526 27.036-32.444 27.036zm32-166.073h-32v-32h32v32z"] }; +var faFileAudio = { prefix: 'far', iconName: 'file-audio', icon: [384, 512, [], "f1c7", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm144-76.024c0 10.691-12.926 16.045-20.485 8.485L136 360.486h-28c-6.627 0-12-5.373-12-12v-56c0-6.627 5.373-12 12-12h28l35.515-36.947c7.56-7.56 20.485-2.206 20.485 8.485v135.952zm41.201-47.13c9.051-9.297 9.06-24.133.001-33.439-22.149-22.752 12.235-56.246 34.395-33.481 27.198 27.94 27.212 72.444.001 100.401-21.793 22.386-56.947-10.315-34.397-33.481z"] }; +var faFileCode = { prefix: 'far', iconName: 'file-code', icon: [384, 512, [], "f1c9", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm101.677-115.115L116.854 320l32.822-28.885a8.793 8.793 0 0 0 .605-12.624l-17.403-18.564c-3.384-3.613-8.964-3.662-12.438-.401L62.78 313.58c-3.703 3.474-3.704 9.367.001 12.84l57.659 54.055a8.738 8.738 0 0 0 6.012 2.381 8.746 8.746 0 0 0 6.427-2.782l17.403-18.563a8.795 8.795 0 0 0-.605-12.626zm84.284-127.85l-24.401-7.084a8.796 8.796 0 0 0-10.905 5.998L144.04 408.061c-1.353 4.66 1.338 9.552 5.998 10.905l24.403 7.084c4.68 1.355 9.557-1.354 10.905-5.998l54.612-188.112c1.354-4.66-1.337-9.552-5.997-10.905zm87.258 92.545l-57.658-54.055c-3.526-3.307-9.099-3.165-12.439.401l-17.403 18.563a8.795 8.795 0 0 0 .605 12.625L267.146 320l-32.822 28.885a8.793 8.793 0 0 0-.605 12.624l17.403 18.564a8.797 8.797 0 0 0 12.439.401h-.001l57.66-54.055c3.703-3.473 3.703-9.366-.001-12.839z"] }; +var faFileExcel = { prefix: 'far', iconName: 'file-excel', icon: [384, 512, [], "f1c3", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm212-240h-28.8c-4.4 0-8.4 2.4-10.5 6.3-18 33.1-22.2 42.4-28.6 57.7-13.9-29.1-6.9-17.3-28.6-57.7-2.1-3.9-6.2-6.3-10.6-6.3H124c-9.3 0-15 10-10.4 18l46.3 78-46.3 78c-4.7 8 1.1 18 10.4 18h28.9c4.4 0 8.4-2.4 10.5-6.3 21.7-40 23-45 28.6-57.7 14.9 30.2 5.9 15.9 28.6 57.7 2.1 3.9 6.2 6.3 10.6 6.3H260c9.3 0 15-10 10.4-18L224 320c.7-1.1 30.3-50.5 46.3-78 4.7-8-1.1-18-10.3-18z"] }; +var faFileImage = { prefix: 'far', iconName: 'file-image', icon: [384, 512, [], "f1c5", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm32-48h224V288l-23.5-23.5c-4.7-4.7-12.3-4.7-17 0L176 352l-39.5-39.5c-4.7-4.7-12.3-4.7-17 0L80 352v64zm48-240c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z"] }; +var faFilePdf = { prefix: 'far', iconName: 'file-pdf', icon: [384, 512, [], "f1c1", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm250.2-143.7c-12.2-12-47-8.7-64.4-6.5-17.2-10.5-28.7-25-36.8-46.3 3.9-16.1 10.1-40.6 5.4-56-4.2-26.2-37.8-23.6-42.6-5.9-4.4 16.1-.4 38.5 7 67.1-10 23.9-24.9 56-35.4 74.4-20 10.3-47 26.2-51 46.2-3.3 15.8 26 55.2 76.1-31.2 22.4-7.4 46.8-16.5 68.4-20.1 18.9 10.2 41 17 55.8 17 25.5 0 28-28.2 17.5-38.7zm-198.1 77.8c5.1-13.7 24.5-29.5 30.4-35-19 30.3-30.4 35.7-30.4 35zm81.6-190.6c7.4 0 6.7 32.1 1.8 40.8-4.4-13.9-4.3-40.8-1.8-40.8zm-24.4 136.6c9.7-16.9 18-37 24.7-54.7 8.3 15.1 18.9 27.2 30.1 35.5-20.8 4.3-38.9 13.1-54.8 19.2zm131.6-5s-5 6-37.3-7.8c35.1-2.6 40.9 5.4 37.3 7.8z"] }; +var faFilePowerpoint = { prefix: 'far', iconName: 'file-powerpoint', icon: [384, 512, [], "f1c4", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm72-60V236c0-6.6 5.4-12 12-12h69.2c36.7 0 62.8 27 62.8 66.3 0 74.3-68.7 66.5-95.5 66.5V404c0 6.6-5.4 12-12 12H132c-6.6 0-12-5.4-12-12zm48.5-87.4h23c7.9 0 13.9-2.4 18.1-7.2 8.5-9.8 8.4-28.5.1-37.8-4.1-4.6-9.9-7-17.4-7h-23.9v52z"] }; +var faFileVideo = { prefix: 'far', iconName: 'file-video', icon: [384, 512, [], "f1c8", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm228.687-211.303L224 305.374V268c0-11.046-8.954-20-20-20H100c-11.046 0-20 8.954-20 20v104c0 11.046 8.954 20 20 20h104c11.046 0 20-8.954 20-20v-37.374l52.687 52.674C286.704 397.318 304 390.28 304 375.986V264.011c0-14.311-17.309-21.319-27.313-11.314z"] }; +var faFileWord = { prefix: 'far', iconName: 'file-word', icon: [384, 512, [], "f1c2", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm220.1-208c-5.7 0-10.6 4-11.7 9.5-20.6 97.7-20.4 95.4-21 103.5-.2-1.2-.4-2.6-.7-4.3-.8-5.1.3.2-23.6-99.5-1.3-5.4-6.1-9.2-11.7-9.2h-13.3c-5.5 0-10.3 3.8-11.7 9.1-24.4 99-24 96.2-24.8 103.7-.1-1.1-.2-2.5-.5-4.2-.7-5.2-14.1-73.3-19.1-99-1.1-5.6-6-9.7-11.8-9.7h-16.8c-7.8 0-13.5 7.3-11.7 14.8 8 32.6 26.7 109.5 33.2 136 1.3 5.4 6.1 9.1 11.7 9.1h25.2c5.5 0 10.3-3.7 11.6-9.1l17.9-71.4c1.5-6.2 2.5-12 3-17.3l2.9 17.3c.1.4 12.6 50.5 17.9 71.4 1.3 5.3 6.1 9.1 11.6 9.1h24.7c5.5 0 10.3-3.7 11.6-9.1 20.8-81.9 30.2-119 34.5-136 1.9-7.6-3.8-14.9-11.6-14.9h-15.8z"] }; +var faFlag = { prefix: 'far', iconName: 'flag', icon: [512, 512, [], "f024", "M336.174 80c-49.132 0-93.305-32-161.913-32-31.301 0-58.303 6.482-80.721 15.168a48.04 48.04 0 0 0 2.142-20.727C93.067 19.575 74.167 1.594 51.201.104 23.242-1.71 0 20.431 0 48c0 17.764 9.657 33.262 24 41.562V496c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-83.443C109.869 395.28 143.259 384 199.826 384c49.132 0 93.305 32 161.913 32 58.479 0 101.972-22.617 128.548-39.981C503.846 367.161 512 352.051 512 335.855V95.937c0-34.459-35.264-57.768-66.904-44.117C409.193 67.309 371.641 80 336.174 80zM464 336c-21.783 15.412-60.824 32-102.261 32-59.945 0-102.002-32-161.913-32-43.361 0-96.379 9.403-127.826 24V128c21.784-15.412 60.824-32 102.261-32 59.945 0 102.002 32 161.913 32 43.271 0 96.32-17.366 127.826-32v240z"] }; +var faFolder = { prefix: 'far', iconName: 'folder', icon: [512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48zm-6 272H54c-3.314 0-6-2.678-6-5.992V117.992A5.993 5.993 0 0 1 54 112h134.118l64 64H458a6 6 0 0 1 6 6v212a6 6 0 0 1-6 6z"] }; +var faFolderOpen = { prefix: 'far', iconName: 'folder-open', icon: [576, 512, [], "f07c", "M527.943 224H480v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h400a48.001 48.001 0 0 0 40.704-22.56l79.942-128c19.948-31.917-3.038-73.44-40.703-73.44zM54 112h134.118l64 64H426a6 6 0 0 1 6 6v42H152a48 48 0 0 0-41.098 23.202L48 351.449V117.993A5.993 5.993 0 0 1 54 112zm394 288H72l77.234-128H528l-80 128z"] }; +var faFontAwesomeLogoFull = { prefix: 'far', iconName: 'font-awesome-logo-full', icon: [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"] }; +var faFrown = { prefix: 'far', iconName: 'frown', icon: [496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 128c-40.2 0-78 17.7-103.8 48.6-8.5 10.2-7.1 25.3 3.1 33.8 10.2 8.5 25.3 7.1 33.8-3.1 16.6-19.9 41-31.4 66.9-31.4s50.3 11.4 66.9 31.4c4.8 5.7 11.6 8.6 18.5 8.6 5.4 0 10.9-1.8 15.4-5.6 10.2-8.5 11.5-23.6 3.1-33.8C326 321.7 288.2 304 248 304z"] }; +var faFutbol = { prefix: 'far', iconName: 'futbol', icon: [496, 512, [], "f1e3", "M483.8 179.4C449.8 74.6 352.6 8 248.1 8c-25.4 0-51.2 3.9-76.7 12.2C41.2 62.5-30.1 202.4 12.2 332.6 46.2 437.4 143.4 504 247.9 504c25.4 0 51.2-3.9 76.7-12.2 130.2-42.3 201.5-182.2 159.2-312.4zm-74.5 193.7l-52.2 6.4-43.7-60.9 24.4-75.2 71.1-22.1 38.9 36.4c-.2 30.7-7.4 61.1-21.7 89.2-4.7 9.3-10.7 17.8-16.8 26.2zm0-235.4l-10.4 53.1-70.7 22-64.2-46.5V92.5l47.4-26.2c39.2 13 73.4 38 97.9 71.4zM184.9 66.4L232 92.5v73.8l-64.2 46.5-70.6-22-10.1-52.5c24.3-33.4 57.9-58.6 97.8-71.9zM139 379.5L85.9 373c-14.4-20.1-37.3-59.6-37.8-115.3l39-36.4 71.1 22.2 24.3 74.3-43.5 61.7zm48.2 67l-22.4-48.1 43.6-61.7H287l44.3 61.7-22.4 48.1c-6.2 1.8-57.6 20.4-121.7 0z"] }; +var faGem = { prefix: 'far', iconName: 'gem', icon: [576, 512, [], "f3a5", "M464 0H112c-4 0-7.8 2-10 5.4L2 152.6c-2.9 4.4-2.6 10.2.7 14.2l276 340.8c4.8 5.9 13.8 5.9 18.6 0l276-340.8c3.3-4.1 3.6-9.8.7-14.2L474.1 5.4C471.8 2 468.1 0 464 0zm-19.3 48l63.3 96h-68.4l-51.7-96h56.8zm-202.1 0h90.7l51.7 96H191l51.6-96zm-111.3 0h56.8l-51.7 96H68l63.3-96zm-43 144h51.4L208 352 88.3 192zm102.9 0h193.6L288 435.3 191.2 192zM368 352l68.2-160h51.4L368 352z"] }; +var faHandLizard = { prefix: 'far', iconName: 'hand-lizard', icon: [576, 512, [], "f258", "M556.686 290.542L410.328 64.829C397.001 44.272 374.417 32 349.917 32H56C25.121 32 0 57.122 0 88v8c0 44.112 35.888 80 80 80h196.042l-18.333 48H144c-48.523 0-88 39.477-88 88 0 30.879 25.121 56 56 56h131.552c2.987 0 5.914.549 8.697 1.631L352 408.418V480h224V355.829c0-23.225-6.679-45.801-19.314-65.287zM528 432H400v-23.582c0-19.948-12.014-37.508-30.604-44.736l-99.751-38.788A71.733 71.733 0 0 0 243.552 320H112c-4.411 0-8-3.589-8-8 0-22.056 17.944-40 40-40h113.709c19.767 0 37.786-12.407 44.84-30.873l24.552-64.281c8.996-23.553-8.428-48.846-33.63-48.846H80c-17.645 0-32-14.355-32-32v-8c0-4.411 3.589-8 8-8h293.917c8.166 0 15.693 4.09 20.137 10.942l146.358 225.715A71.84 71.84 0 0 1 528 355.829V432z"] }; +var faHandPaper = { prefix: 'far', iconName: 'hand-paper', icon: [448, 512, [], "f256", "M372.57 112.641v-10.825c0-43.612-40.52-76.691-83.039-65.546-25.629-49.5-94.09-47.45-117.982.747C130.269 26.456 89.144 57.945 89.144 102v126.13c-19.953-7.427-43.308-5.068-62.083 8.871-29.355 21.796-35.794 63.333-14.55 93.153L132.48 498.569a32 32 0 0 0 26.062 13.432h222.897c14.904 0 27.835-10.289 31.182-24.813l30.184-130.958A203.637 203.637 0 0 0 448 310.564V179c0-40.62-35.523-71.992-75.43-66.359zm27.427 197.922c0 11.731-1.334 23.469-3.965 34.886L368.707 464h-201.92L51.591 302.303c-14.439-20.27 15.023-42.776 29.394-22.605l27.128 38.079c8.995 12.626 29.031 6.287 29.031-9.283V102c0-25.645 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V67c0-25.663 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V101.125c0-25.672 36.57-24.81 36.57.691V256c0 8.837 7.163 16 16 16h6.857c8.837 0 16-7.163 16-16v-76.309c0-26.242 36.57-25.64 36.57-.691v131.563z"] }; +var faHandPeace = { prefix: 'far', iconName: 'hand-peace', icon: [448, 512, [], "f25b", "M362.146 191.976c-13.71-21.649-38.761-34.016-65.006-30.341V74c0-40.804-32.811-74-73.141-74-40.33 0-73.14 33.196-73.14 74L160 168l-18.679-78.85C126.578 50.843 83.85 32.11 46.209 47.208 8.735 62.238-9.571 104.963 5.008 142.85l55.757 144.927c-30.557 24.956-43.994 57.809-24.733 92.218l54.853 97.999C102.625 498.97 124.73 512 148.575 512h205.702c30.744 0 57.558-21.44 64.555-51.797l27.427-118.999a67.801 67.801 0 0 0 1.729-15.203L448 256c0-44.956-43.263-77.343-85.854-64.024zM399.987 326c0 1.488-.169 2.977-.502 4.423l-27.427 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H148.575c-6.486 0-12.542-3.621-15.805-9.449l-54.854-98c-4.557-8.141-2.619-18.668 4.508-24.488l26.647-21.764a16 16 0 0 0 4.812-18.139l-64.09-166.549C37.226 92.956 84.37 74.837 96.51 106.389l59.784 155.357A16 16 0 0 0 171.227 272h11.632c8.837 0 16-7.163 16-16V74c0-34.375 50.281-34.43 50.281 0v182c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16v-28c0-25.122 36.567-25.159 36.567 0v28c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16 0-25.12 36.567-25.16 36.567 0v70z"] }; +var faHandPointDown = { prefix: 'far', iconName: 'hand-point-down', icon: [448, 512, [], "f0a7", "M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z"] }; +var faHandPointLeft = { prefix: 'far', iconName: 'hand-point-left', icon: [512, 512, [], "f0a5", "M0 220.8C0 266.416 37.765 304 83.2 304h35.647a93.148 93.148 0 0 0 7.929 22.064c-2.507 22.006 3.503 44.978 15.985 62.791C143.9 441.342 180.159 480 242.701 480H264c60.063 0 98.512-40 127.2-40h2.679c5.747 4.952 13.536 8 22.12 8h64c17.673 0 32-12.894 32-28.8V188.8c0-15.906-14.327-28.8-32-28.8h-64c-8.584 0-16.373 3.048-22.12 8H391.2c-6.964 0-14.862-6.193-30.183-23.668l-.129-.148-.131-.146c-8.856-9.937-18.116-20.841-25.851-33.253C316.202 80.537 304.514 32 259.2 32c-56.928 0-92 35.286-92 83.2 0 8.026.814 15.489 2.176 22.4H83.2C38.101 137.6 0 175.701 0 220.8zm48 0c0-18.7 16.775-35.2 35.2-35.2h158.4c0-17.325-26.4-35.2-26.4-70.4 0-26.4 20.625-35.2 44-35.2 8.794 0 20.445 32.712 34.926 56.1 9.074 14.575 19.524 27.225 30.799 39.875 16.109 18.374 33.836 36.633 59.075 39.596v176.752C341.21 396.087 309.491 432 264 432h-21.299c-40.524 0-57.124-22.197-50.601-61.325-14.612-8.001-24.151-33.979-12.925-53.625-19.365-18.225-17.787-46.381-4.95-61.05H83.2C64.225 256 48 239.775 48 220.8zM448 360c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z"] }; +var faHandPointRight = { prefix: 'far', iconName: 'hand-point-right', icon: [512, 512, [], "f0a4", "M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"] }; +var faHandPointUp = { prefix: 'far', iconName: 'hand-point-up', icon: [448, 512, [], "f0a6", "M105.6 83.2v86.177a115.52 115.52 0 0 0-22.4-2.176c-47.914 0-83.2 35.072-83.2 92 0 45.314 48.537 57.002 78.784 75.707 12.413 7.735 23.317 16.994 33.253 25.851l.146.131.148.129C129.807 376.338 136 384.236 136 391.2v2.679c-4.952 5.747-8 13.536-8 22.12v64c0 17.673 12.894 32 28.8 32h230.4c15.906 0 28.8-14.327 28.8-32v-64c0-8.584-3.048-16.373-8-22.12V391.2c0-28.688 40-67.137 40-127.2v-21.299c0-62.542-38.658-98.8-91.145-99.94-17.813-12.482-40.785-18.491-62.791-15.985A93.148 93.148 0 0 0 272 118.847V83.2C272 37.765 234.416 0 188.8 0c-45.099 0-83.2 38.101-83.2 83.2zm118.4 0v91.026c14.669-12.837 42.825-14.415 61.05 4.95 19.646-11.227 45.624-1.687 53.625 12.925 39.128-6.524 61.325 10.076 61.325 50.6V264c0 45.491-35.913 77.21-39.676 120H183.571c-2.964-25.239-21.222-42.966-39.596-59.075-12.65-11.275-25.3-21.725-39.875-30.799C80.712 279.645 48 267.994 48 259.2c0-23.375 8.8-44 35.2-44 35.2 0 53.075 26.4 70.4 26.4V83.2c0-18.425 16.5-35.2 35.2-35.2 18.975 0 35.2 16.225 35.2 35.2zM352 424c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z"] }; +var faHandPointer = { prefix: 'far', iconName: 'hand-pointer', icon: [448, 512, [], "f25a", "M358.182 179.361c-19.493-24.768-52.679-31.945-79.872-19.098-15.127-15.687-36.182-22.487-56.595-19.629V67c0-36.944-29.736-67-66.286-67S89.143 30.056 89.143 67v161.129c-19.909-7.41-43.272-5.094-62.083 8.872-29.355 21.795-35.793 63.333-14.55 93.152l109.699 154.001C134.632 501.59 154.741 512 176 512h178.286c30.802 0 57.574-21.5 64.557-51.797l27.429-118.999A67.873 67.873 0 0 0 448 326v-84c0-46.844-46.625-79.273-89.818-62.639zM80.985 279.697l27.126 38.079c8.995 12.626 29.031 6.287 29.031-9.283V67c0-25.12 36.571-25.16 36.571 0v175c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16v-35c0-25.12 36.571-25.16 36.571 0v35c0 8.836 7.163 16 16 16H272c8.837 0 16-7.164 16-16v-21c0-25.12 36.571-25.16 36.571 0v21c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16 0-25.121 36.571-25.16 36.571 0v84c0 1.488-.169 2.977-.502 4.423l-27.43 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H176c-5.769 0-11.263-2.878-14.697-7.697l-109.712-154c-14.406-20.223 14.994-42.818 29.394-22.606zM176.143 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.733 0-14-7.163-14-16zm75.428 0v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16zM327 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16z"] }; +var faHandRock = { prefix: 'far', iconName: 'hand-rock', icon: [512, 512, [], "f255", "M408.864 79.052c-22.401-33.898-66.108-42.273-98.813-23.588-29.474-31.469-79.145-31.093-108.334-.022-47.16-27.02-108.71 5.055-110.671 60.806C44.846 105.407 0 140.001 0 187.429v56.953c0 32.741 14.28 63.954 39.18 85.634l97.71 85.081c4.252 3.702 3.11 5.573 3.11 32.903 0 17.673 14.327 32 32 32h252c17.673 0 32-14.327 32-32 0-23.513-1.015-30.745 3.982-42.37l42.835-99.656c6.094-14.177 9.183-29.172 9.183-44.568V146.963c0-52.839-54.314-88.662-103.136-67.911zM464 261.406a64.505 64.505 0 0 1-5.282 25.613l-42.835 99.655c-5.23 12.171-7.883 25.04-7.883 38.25V432H188v-10.286c0-16.37-7.14-31.977-19.59-42.817l-97.71-85.08C56.274 281.255 48 263.236 48 244.381v-56.953c0-33.208 52-33.537 52 .677v41.228a16 16 0 0 0 5.493 12.067l7 6.095A16 16 0 0 0 139 235.429V118.857c0-33.097 52-33.725 52 .677v26.751c0 8.836 7.164 16 16 16h7c8.836 0 16-7.164 16-16v-41.143c0-33.134 52-33.675 52 .677v40.466c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16v-27.429c0-33.03 52-33.78 52 .677v26.751c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16 0-33.146 52-33.613 52 .677v114.445z"] }; +var faHandScissors = { prefix: 'far', iconName: 'hand-scissors', icon: [512, 512, [], "f257", "M256 480l70-.013c5.114 0 10.231-.583 15.203-1.729l118.999-27.427C490.56 443.835 512 417.02 512 386.277V180.575c0-23.845-13.03-45.951-34.005-57.69l-97.999-54.853c-34.409-19.261-67.263-5.824-92.218 24.733L142.85 37.008c-37.887-14.579-80.612 3.727-95.642 41.201-15.098 37.642 3.635 80.37 41.942 95.112L168 192l-94-9.141c-40.804 0-74 32.811-74 73.14 0 40.33 33.196 73.141 74 73.141h87.635c-3.675 26.245 8.692 51.297 30.341 65.006C178.657 436.737 211.044 480 256 480zm0-48.013c-25.16 0-25.12-36.567 0-36.567 8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16h-28c-25.159 0-25.122-36.567 0-36.567h28c8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16H74c-34.43 0-34.375-50.281 0-50.281h182c8.837 0 16-7.163 16-16v-11.632a16 16 0 0 0-10.254-14.933L106.389 128.51c-31.552-12.14-13.432-59.283 19.222-46.717l166.549 64.091a16.001 16.001 0 0 0 18.139-4.812l21.764-26.647c5.82-7.127 16.348-9.064 24.488-4.508l98 54.854c5.828 3.263 9.449 9.318 9.449 15.805v205.701c0 8.491-5.994 15.804-14.576 17.782l-119.001 27.427a19.743 19.743 0 0 1-4.423.502h-70z"] }; +var faHandSpock = { prefix: 'far', iconName: 'hand-spock', icon: [512, 512, [], "f259", "M21.096 381.79l129.092 121.513a32 32 0 0 0 21.932 8.698h237.6c14.17 0 26.653-9.319 30.68-22.904l31.815-107.313A115.955 115.955 0 0 0 477 348.811v-36.839c0-4.051.476-8.104 1.414-12.045l31.73-133.41c10.099-42.412-22.316-82.738-65.544-82.525-4.144-24.856-22.543-47.165-49.85-53.992-35.803-8.952-72.227 12.655-81.25 48.75L296.599 184 274.924 52.01c-8.286-36.07-44.303-58.572-80.304-50.296-29.616 6.804-50.138 32.389-51.882 61.295-42.637.831-73.455 40.563-64.071 81.844l31.04 136.508c-27.194-22.515-67.284-19.992-91.482 5.722-25.376 26.961-24.098 69.325 2.871 94.707zm32.068-61.811l.002-.001c7.219-7.672 19.241-7.98 26.856-.813l53.012 49.894C143.225 378.649 160 371.4 160 357.406v-69.479c0-1.193-.134-2.383-.397-3.546l-34.13-150.172c-5.596-24.617 31.502-32.86 37.054-8.421l30.399 133.757a16 16 0 0 0 15.603 12.454h8.604c10.276 0 17.894-9.567 15.594-19.583l-41.62-181.153c-5.623-24.469 31.39-33.076 37.035-8.508l45.22 196.828A16 16 0 0 0 288.956 272h13.217a16 16 0 0 0 15.522-12.119l42.372-169.49c6.104-24.422 42.962-15.159 36.865 9.217L358.805 252.12c-2.521 10.088 5.115 19.88 15.522 19.88h9.694a16 16 0 0 0 15.565-12.295L426.509 146.6c5.821-24.448 42.797-15.687 36.966 8.802L431.72 288.81a100.094 100.094 0 0 0-2.72 23.162v36.839c0 6.548-.943 13.051-2.805 19.328L397.775 464h-219.31L53.978 346.836c-7.629-7.18-7.994-19.229-.814-26.857z"] }; +var faHandshake = { prefix: 'far', iconName: 'handshake', icon: [640, 512, [], "f2b5", "M519.2 127.9l-47.6-47.6A56.252 56.252 0 0 0 432 64H205.2c-14.8 0-29.1 5.9-39.6 16.3L118 127.9H0v255.7h64c17.6 0 31.8-14.2 31.9-31.7h9.1l84.6 76.4c30.9 25.1 73.8 25.7 105.6 3.8 12.5 10.8 26 15.9 41.1 15.9 18.2 0 35.3-7.4 48.8-24 22.1 8.7 48.2 2.6 64-16.8l26.2-32.3c5.6-6.9 9.1-14.8 10.9-23h57.9c.1 17.5 14.4 31.7 31.9 31.7h64V127.9H519.2zM48 351.6c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16zm390-6.9l-26.1 32.2c-2.8 3.4-7.8 4-11.3 1.2l-23.9-19.4-30 36.5c-6 7.3-15 4.8-18 2.4l-36.8-31.5-15.6 19.2c-13.9 17.1-39.2 19.7-55.3 6.6l-97.3-88H96V175.8h41.9l61.7-61.6c2-.8 3.7-1.5 5.7-2.3H262l-38.7 35.5c-29.4 26.9-31.1 72.3-4.4 101.3 14.8 16.2 61.2 41.2 101.5 4.4l8.2-7.5 108.2 87.8c3.4 2.8 3.9 7.9 1.2 11.3zm106-40.8h-69.2c-2.3-2.8-4.9-5.4-7.7-7.7l-102.7-83.4 12.5-11.4c6.5-6 7-16.1 1-22.6L367 167.1c-6-6.5-16.1-6.9-22.6-1l-55.2 50.6c-9.5 8.7-25.7 9.4-34.6 0-9.3-9.9-8.5-25.1 1.2-33.9l65.6-60.1c7.4-6.8 17-10.5 27-10.5l83.7-.2c2.1 0 4.1.8 5.5 2.3l61.7 61.6H544v128zm48 47.7c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16z"] }; +var faHdd = { prefix: 'far', iconName: 'hdd', icon: [576, 512, [], "f0a0", "M567.403 235.642L462.323 84.589A48 48 0 0 0 422.919 64H153.081a48 48 0 0 0-39.404 20.589L8.597 235.642A48.001 48.001 0 0 0 0 263.054V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V263.054c0-9.801-3-19.366-8.597-27.412zM153.081 112h269.838l77.913 112H75.168l77.913-112zM528 400H48V272h480v128zm-32-64c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32zm-96 0c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32z"] }; +var faHeart = { prefix: 'far', iconName: 'heart', icon: [512, 512, [], "f004", "M458.4 64.3C400.6 15.7 311.3 23 256 79.3 200.7 23 111.4 15.6 53.6 64.3-21.6 127.6-10.6 230.8 43 285.5l175.4 178.7c10 10.2 23.4 15.9 37.6 15.9 14.3 0 27.6-5.6 37.6-15.8L469 285.6c53.5-54.7 64.7-157.9-10.6-221.3zm-23.6 187.5L259.4 430.5c-2.4 2.4-4.4 2.4-6.8 0L77.2 251.8c-36.5-37.2-43.9-107.6 7.3-150.7 38.9-32.7 98.9-27.8 136.5 10.5l35 35.7 35-35.7c37.8-38.5 97.8-43.2 136.5-10.6 51.1 43.1 43.5 113.9 7.3 150.8z"] }; +var faHospital = { prefix: 'far', iconName: 'hospital', icon: [448, 512, [], "f0f8", "M128 244v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12zm140 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm-76 84v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm76 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm180 124v36H0v-36c0-6.627 5.373-12 12-12h19.5V85.035C31.5 73.418 42.245 64 55.5 64H144V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v40h88.5c13.255 0 24 9.418 24 21.035V464H436c6.627 0 12 5.373 12 12zM79.5 463H192v-67c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v67h112.5V112H304v24c0 13.255-10.745 24-24 24H168c-13.255 0-24-10.745-24-24v-24H79.5v351zM266 64h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6z"] }; +var faHourglass = { prefix: 'far', iconName: 'hourglass', icon: [384, 512, [], "f254", "M368 48h4c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12H12C5.373 0 0 5.373 0 12v24c0 6.627 5.373 12 12 12h4c0 80.564 32.188 165.807 97.18 208C47.899 298.381 16 383.9 16 464h-4c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12h-4c0-80.564-32.188-165.807-97.18-208C336.102 213.619 368 128.1 368 48zM64 48h256c0 101.62-57.307 184-128 184S64 149.621 64 48zm256 416H64c0-101.62 57.308-184 128-184s128 82.38 128 184z"] }; +var faIdBadge = { prefix: 'far', iconName: 'id-badge', icon: [384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm0 464H48V48h288v416zM144 112h96c8.8 0 16-7.2 16-16s-7.2-16-16-16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16zm48 176c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"] }; +var faIdCard = { prefix: 'far', iconName: 'id-card', icon: [576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H303.2c.9-4.5.8 3.6.8-22.4 0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6 0 26-.2 17.9.8 22.4H48V144h480v288zm-168-80h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm-168 96c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z"] }; +var faImage = { prefix: 'far', iconName: 'image', icon: [512, 512, [], "f03e", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 336H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v276a6 6 0 0 1-6 6zM128 152c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zM96 352h320v-80l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L192 304l-39.515-39.515c-4.686-4.686-12.284-4.686-16.971 0L96 304v48z"] }; +var faImages = { prefix: 'far', iconName: 'images', icon: [576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v48H54a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6v-10h48zm42-336H150a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6V86a6 6 0 0 0-6-6zm6-48c26.51 0 48 21.49 48 48v256c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h384zM264 144c0 22.091-17.909 40-40 40s-40-17.909-40-40 17.909-40 40-40 40 17.909 40 40zm-72 96l39.515-39.515c4.686-4.686 12.284-4.686 16.971 0L288 240l103.515-103.515c4.686-4.686 12.284-4.686 16.971 0L480 208v80H192v-48z"] }; +var faKeyboard = { prefix: 'far', iconName: 'keyboard', icon: [576, 512, [], "f11c", "M528 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm8 336c0 4.411-3.589 8-8 8H48c-4.411 0-8-3.589-8-8V112c0-4.411 3.589-8 8-8h480c4.411 0 8 3.589 8 8v288zM170 270v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-336 82v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm384 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zM122 188v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-98 158v-16c0-6.627-5.373-12-12-12H180c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h216c6.627 0 12-5.373 12-12z"] }; +var faLemon = { prefix: 'far', iconName: 'lemon', icon: [512, 512, [], "f094", "M484.112 27.889C455.989-.233 416.108-8.057 387.059 8.865 347.604 31.848 223.504-41.111 91.196 91.197-41.277 223.672 31.923 347.472 8.866 387.058c-16.922 29.051-9.1 68.932 19.022 97.054 28.135 28.135 68.011 35.938 97.057 19.021 39.423-22.97 163.557 49.969 295.858-82.329 132.474-132.477 59.273-256.277 82.331-295.861 16.922-29.05 9.1-68.931-19.022-97.054zm-22.405 72.894c-38.8 66.609 45.6 165.635-74.845 286.08-120.44 120.443-219.475 36.048-286.076 74.843-22.679 13.207-64.035-27.241-50.493-50.488 38.8-66.609-45.6-165.635 74.845-286.08C245.573 4.702 344.616 89.086 411.219 50.292c22.73-13.24 64.005 27.288 50.488 50.491zm-169.861 8.736c1.37 10.96-6.404 20.957-17.365 22.327-54.846 6.855-135.779 87.787-142.635 142.635-1.373 10.989-11.399 18.734-22.326 17.365-10.961-1.37-18.735-11.366-17.365-22.326 9.162-73.286 104.167-168.215 177.365-177.365 10.953-1.368 20.956 6.403 22.326 17.364z"] }; +var faLifeRing = { prefix: 'far', iconName: 'life-ring', icon: [512, 512, [], "f1cd", "M256 504c136.967 0 248-111.033 248-248S392.967 8 256 8 8 119.033 8 256s111.033 248 248 248zm-103.398-76.72l53.411-53.411c31.806 13.506 68.128 13.522 99.974 0l53.411 53.411c-63.217 38.319-143.579 38.319-206.796 0zM336 256c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zm91.28 103.398l-53.411-53.411c13.505-31.806 13.522-68.128 0-99.974l53.411-53.411c38.319 63.217 38.319 143.579 0 206.796zM359.397 84.72l-53.411 53.411c-31.806-13.505-68.128-13.522-99.973 0L152.602 84.72c63.217-38.319 143.579-38.319 206.795 0zM84.72 152.602l53.411 53.411c-13.506 31.806-13.522 68.128 0 99.974L84.72 359.398c-38.319-63.217-38.319-143.579 0-206.796z"] }; +var faLightbulb = { prefix: 'far', iconName: 'lightbulb', icon: [384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zM128 176c0-35.29 28.71-64 64-64 8.837 0 16-7.164 16-16s-7.163-16-16-16c-52.935 0-96 43.065-96 96 0 8.836 7.164 16 16 16s16-7.164 16-16zm64-128c70.734 0 128 57.254 128 128 0 77.602-37.383 60.477-80.98 160h-94.04C101.318 236.33 64 253.869 64 176c0-70.735 57.254-128 128-128m0-48C94.805 0 16 78.803 16 176c0 101.731 51.697 91.541 90.516 192.674 3.55 9.249 12.47 15.326 22.376 15.326h126.215c9.906 0 18.826-6.078 22.376-15.326C316.303 267.541 368 277.731 368 176 368 78.803 289.195 0 192 0z"] }; +var faListAlt = { prefix: 'far', iconName: 'list-alt', icon: [512, 512, [], "f022", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zm-42-92v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm-252 12c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36z"] }; +var faMap = { prefix: 'far', iconName: 'map', icon: [576, 512, [], "f279", "M508.505 36.17L381.517 92.576 207.179 34.463a47.992 47.992 0 0 0-34.674 1.674l-144 64A48 48 0 0 0 0 144v287.967c0 34.938 35.991 57.864 67.495 43.863l126.988-56.406 174.339 58.113a47.992 47.992 0 0 0 34.674-1.674l144-64A48 48 0 0 0 576 368V80.033c0-34.938-35.991-57.864-67.495-43.863zM360 424l-144-48V88l144 48v288zm-312 8V144l120-53.333v288L48 432zm480-64l-120 53.333v-288L528 80v288z"] }; +var faMeh = { prefix: 'far', iconName: 'meh', icon: [496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm8 144H160c-13.2 0-24 10.8-24 24s10.8 24 24 24h176c13.2 0 24-10.8 24-24s-10.8-24-24-24z"] }; +var faMinusSquare = { prefix: 'far', iconName: 'minus-square', icon: [448, 512, [], "f146", "M108 284c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h232c6.6 0 12 5.4 12 12v32c0 6.6-5.4 12-12 12H108zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faMoneyBillAlt = { prefix: 'far', iconName: 'money-bill-alt', icon: [640, 512, [], "f3d1", "M320 144c-53.02 0-96 50.14-96 112 0 61.85 42.98 112 96 112 53 0 96-50.13 96-112 0-61.86-42.98-112-96-112zm40 168c0 4.42-3.58 8-8 8h-64c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h16v-55.44l-.47.31a7.992 7.992 0 0 1-11.09-2.22l-8.88-13.31a7.992 7.992 0 0 1 2.22-11.09l15.33-10.22a23.99 23.99 0 0 1 13.31-4.03H328c4.42 0 8 3.58 8 8v88h16c4.42 0 8 3.58 8 8v16zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zm-16 272c-35.35 0-64 28.65-64 64H112c0-35.35-28.65-64-64-64V176c35.35 0 64-28.65 64-64h416c0 35.35 28.65 64 64 64v160z"] }; +var faMoon = { prefix: 'far', iconName: 'moon', icon: [512, 512, [], "f186", "M279.135 512c78.756 0 150.982-35.804 198.844-94.775 28.27-34.831-2.558-85.722-46.249-77.401-82.348 15.683-158.272-47.268-158.272-130.792 0-48.424 26.06-92.292 67.434-115.836 38.745-22.05 28.999-80.788-15.022-88.919A257.936 257.936 0 0 0 279.135 0c-141.36 0-256 114.575-256 256 0 141.36 114.576 256 256 256zm0-464c12.985 0 25.689 1.201 38.016 3.478-54.76 31.163-91.693 90.042-91.693 157.554 0 113.848 103.641 199.2 215.252 177.944C402.574 433.964 344.366 464 279.135 464c-114.875 0-208-93.125-208-208s93.125-208 208-208z"] }; +var faNewspaper = { prefix: 'far', iconName: 'newspaper', icon: [576, 512, [], "f1ea", "M552 64H112c-20.858 0-38.643 13.377-45.248 32H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h496c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24zM48 392V144h16v248c0 4.411-3.589 8-8 8s-8-3.589-8-8zm480 8H111.422c.374-2.614.578-5.283.578-8V112h416v288zM172 280h136c6.627 0 12-5.373 12-12v-96c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v96c0 6.627 5.373 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H172c-6.627 0-12-5.373-12-12zm192 0v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0-144v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0 72v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12z"] }; +var faObjectGroup = { prefix: 'far', iconName: 'object-group', icon: [512, 512, [], "f247", "M500 128c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v256H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V128h12zm-52-64h32v32h-32V64zM32 64h32v32H32V64zm32 384H32v-32h32v32zm416 0h-32v-32h32v32zm-40-64h-12c-6.627 0-12 5.373-12 12v12H96v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h12v256zm-36-192h-84v-52c0-6.628-5.373-12-12-12H108c-6.627 0-12 5.372-12 12v168c0 6.628 5.373 12 12 12h84v52c0 6.628 5.373 12 12 12h200c6.627 0 12-5.372 12-12V204c0-6.628-5.373-12-12-12zm-268-24h144v112H136V168zm240 176H232v-24h76c6.627 0 12-5.372 12-12v-76h56v112z"] }; +var faObjectUngroup = { prefix: 'far', iconName: 'object-ungroup', icon: [576, 512, [], "f248", "M564 224c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12h-88v-24h12c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v160H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h88v24h-12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V224h12zM352 64h32v32h-32V64zm0 256h32v32h-32v-32zM64 352H32v-32h32v32zm0-256H32V64h32v32zm32 216v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h12v160h-12c-6.627 0-12 5.373-12 12v12H96zm128 136h-32v-32h32v32zm280-64h-12c-6.627 0-12 5.373-12 12v12H256v-12c0-6.627-5.373-12-12-12h-12v-24h88v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12v-88h88v12c0 6.627 5.373 12 12 12h12v160zm40 64h-32v-32h32v32zm0-256h-32v-32h32v32z"] }; +var faPaperPlane = { prefix: 'far', iconName: 'paper-plane', icon: [512, 512, [], "f1d8", "M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z"] }; +var faPauseCircle = { prefix: 'far', iconName: 'pause-circle', icon: [512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm96-280v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16zm-112 0v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16z"] }; +var faPlayCircle = { prefix: 'far', iconName: 'play-circle', icon: [512, 512, [], "f144", "M371.7 238l-176-107c-15.8-8.8-35.7 2.5-35.7 21v208c0 18.4 19.8 29.8 35.7 21l176-101c16.4-9.1 16.4-32.8 0-42zM504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256z"] }; +var faPlusSquare = { prefix: 'far', iconName: 'plus-square', icon: [448, 512, [], "f0fe", "M352 240v32c0 6.6-5.4 12-12 12h-88v88c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-88h-88c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h88v-88c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v88h88c6.6 0 12 5.4 12 12zm96-160v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faQuestionCircle = { prefix: 'far', iconName: 'question-circle', icon: [512, 512, [], "f059", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 448c-110.532 0-200-89.431-200-200 0-110.495 89.472-200 200-200 110.491 0 200 89.471 200 200 0 110.53-89.431 200-200 200zm107.244-255.2c0 67.052-72.421 68.084-72.421 92.863V300c0 6.627-5.373 12-12 12h-45.647c-6.627 0-12-5.373-12-12v-8.659c0-35.745 27.1-50.034 47.579-61.516 17.561-9.845 28.324-16.541 28.324-29.579 0-17.246-21.999-28.693-39.784-28.693-23.189 0-33.894 10.977-48.942 29.969-4.057 5.12-11.46 6.071-16.666 2.124l-27.824-21.098c-5.107-3.872-6.251-11.066-2.644-16.363C184.846 131.491 214.94 112 261.794 112c49.071 0 101.45 38.304 101.45 88.8zM298 368c0 23.159-18.841 42-42 42s-42-18.841-42-42 18.841-42 42-42 42 18.841 42 42z"] }; +var faRegistered = { prefix: 'far', iconName: 'registered', icon: [512, 512, [], "f25d", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm110.442-81.791c-53.046-96.284-50.25-91.468-53.271-96.085 24.267-13.879 39.482-41.563 39.482-73.176 0-52.503-30.247-85.252-101.498-85.252h-78.667c-6.617 0-12 5.383-12 12V380c0 6.617 5.383 12 12 12h38.568c6.617 0 12-5.383 12-12v-83.663h31.958l47.515 89.303a11.98 11.98 0 0 0 10.593 6.36h42.81c9.14 0 14.914-9.799 10.51-17.791zM256.933 239.906h-33.875v-64.14h27.377c32.417 0 38.929 12.133 38.929 31.709-.001 20.913-11.518 32.431-32.431 32.431z"] }; +var faSave = { prefix: 'far', iconName: 'save', icon: [448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM272 80v80H144V80h128zm122 352H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h42v104c0 13.255 10.745 24 24 24h176c13.255 0 24-10.745 24-24V83.882l78.243 78.243a6 6 0 0 1 1.757 4.243V426a6 6 0 0 1-6 6zM224 232c-48.523 0-88 39.477-88 88s39.477 88 88 88 88-39.477 88-88-39.477-88-88-88zm0 128c-22.056 0-40-17.944-40-40s17.944-40 40-40 40 17.944 40 40-17.944 40-40 40z"] }; +var faShareSquare = { prefix: 'far', iconName: 'share-square', icon: [576, 512, [], "f14d", "M561.938 158.06L417.94 14.092C387.926-15.922 336 5.097 336 48.032v57.198c-42.45 1.88-84.03 6.55-120.76 17.99-35.17 10.95-63.07 27.58-82.91 49.42C108.22 199.2 96 232.6 96 271.94c0 61.697 33.178 112.455 84.87 144.76 37.546 23.508 85.248-12.651 71.02-55.74-15.515-47.119-17.156-70.923 84.11-78.76V336c0 42.993 51.968 63.913 81.94 33.94l143.998-144c18.75-18.74 18.75-49.14 0-67.88zM384 336V232.16C255.309 234.082 166.492 255.35 206.31 376 176.79 357.55 144 324.08 144 271.94c0-109.334 129.14-118.947 240-119.85V48l144 144-144 144zm24.74 84.493a82.658 82.658 0 0 0 20.974-9.303c7.976-4.952 18.286.826 18.286 10.214V464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h132c6.627 0 12 5.373 12 12v4.486c0 4.917-2.987 9.369-7.569 11.152-13.702 5.331-26.396 11.537-38.05 18.585a12.138 12.138 0 0 1-6.28 1.777H54a6 6 0 0 0-6 6v340a6 6 0 0 0 6 6h340a6 6 0 0 0 6-6v-25.966c0-5.37 3.579-10.059 8.74-11.541z"] }; +var faSmile = { prefix: 'far', iconName: 'smile', icon: [496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm84-143.4c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.6-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.2-8.4-25.3-7.1-33.8 3.1zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z"] }; +var faSnowflake = { prefix: 'far', iconName: 'snowflake', icon: [448, 512, [], "f2dc", "M438.237 355.927l-66.574-38.54 59.448-10.327c5.846-1.375 10.609-5.183 13.458-10.13 2.48-4.307 3.506-9.478 2.524-14.651-2.11-11.115-12.686-18.039-23.621-15.467l-85.423 31.115L255.914 256l82.136-41.926 85.423 31.115c10.936 2.572 21.512-4.352 23.621-15.467 2.111-11.115-5.046-22.209-15.981-24.781l-59.448-10.327 66.573-38.54c9.54-5.523 12.615-18.092 6.867-28.074-5.748-9.982-18.14-13.596-27.68-8.074l-66.574 38.54 20.805-56.787c3.246-10.782-2.758-22.542-13.413-26.268-10.654-3.725-21.922 1.997-25.168 12.779l-15.838 89.735-72.423 41.926V136l69.585-58.621c7.689-8.21 6.997-20.856-1.548-28.245-8.545-7.391-21.705-6.723-29.394 1.486l-38.644 46.46V20c0-11.046-9.318-20-20.813-20s-20.813 8.954-20.813 20v77.08l-38.644-46.46c-7.689-8.21-20.849-8.876-29.394-1.486-8.544 7.389-9.236 20.035-1.547 28.245L203.187 136v83.853l-72.423-41.926-15.838-89.736c-3.247-10.782-14.515-16.504-25.169-12.779-10.656 3.725-16.659 15.486-13.413 26.268l20.805 56.787-66.573-38.54c-9.54-5.523-21.933-1.908-27.68 8.074s-2.673 22.551 6.867 28.074l66.574 38.54-59.449 10.328C5.953 207.515-1.202 218.609.907 229.724c2.11 11.114 12.686 18.038 23.622 15.466l85.422-31.115L192.086 256l-82.136 41.926-85.423-31.115c-10.936-2.572-21.511 4.352-23.622 15.466-2.109 11.113 5.046 22.209 15.981 24.781l59.449 10.328-66.574 38.54C.223 361.449-2.852 374.018 2.896 384s18.14 13.597 27.68 8.074l66.574-38.54-20.805 56.786c-1.735 5.764-.828 11.805 2.02 16.751 2.48 4.307 6.433 7.784 11.392 9.517 10.655 3.725 21.923-1.997 25.169-12.779l15.838-89.736 72.423-41.926V376l-69.585 58.621c-7.69 8.21-6.997 20.855 1.547 28.245 8.544 7.388 21.705 6.723 29.394-1.487l38.644-46.46V492c0 11.046 9.318 20 20.813 20s20.813-8.954 20.813-20v-77.081l38.644 46.46c4.111 4.389 9.782 6.621 15.478 6.621 4.96 0 9.939-1.694 13.916-5.134 8.545-7.39 9.237-20.035 1.548-28.245L244.813 376v-83.853l72.423 41.926 15.838 89.736c3.246 10.782 14.514 16.504 25.168 12.779 10.653-3.726 16.659-15.487 13.412-26.268l-20.805-56.787 66.574 38.54c9.54 5.523 21.933 1.908 27.68-8.074 5.749-9.981 2.675-22.55-6.866-28.072z"] }; +var faSquare = { prefix: 'far', iconName: 'square', icon: [448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h340c3.3 0 6 2.7 6 6v340c0 3.3-2.7 6-6 6z"] }; +var faStar = { prefix: 'far', iconName: 'star', icon: [576, 512, [], "f005", "M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z"] }; +var faStarHalf = { prefix: 'far', iconName: 'star-half', icon: [576, 512, [], "f089", "M288 385.3l-124.3 65.4 23.7-138.4-100.6-98 139-20.2 62.2-126V0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6v-54.3z"] }; +var faStickyNote = { prefix: 'far', iconName: 'sticky-note', icon: [448, 512, [], "f249", "M448 348.106V80c0-26.51-21.49-48-48-48H48C21.49 32 0 53.49 0 80v351.988c0 26.51 21.49 48 48 48h268.118a48 48 0 0 0 33.941-14.059l83.882-83.882A48 48 0 0 0 448 348.106zm-128 80v-76.118h76.118L320 428.106zM400 80v223.988H296c-13.255 0-24 10.745-24 24v104H48V80h352z"] }; +var faStopCircle = { prefix: 'far', iconName: 'stop-circle', icon: [512, 512, [], "f28d", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm296-80v160c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16z"] }; +var faSun = { prefix: 'far', iconName: 'sun', icon: [512, 512, [], "f185", "M220.116 487.936l-20.213-49.425a3.992 3.992 0 0 0-5.808-1.886l-45.404 28.104c-29.466 18.24-66.295-8.519-58.054-42.179l12.699-51.865a3.993 3.993 0 0 0-3.59-4.941l-53.251-3.951c-34.554-2.562-48.632-45.855-22.174-68.247L65.08 259.05a3.992 3.992 0 0 0 0-6.106l-40.76-34.497c-26.45-22.384-12.39-65.682 22.174-68.246l53.251-3.951a3.993 3.993 0 0 0 3.59-4.941L90.637 89.443c-8.239-33.656 28.581-60.42 58.054-42.179l45.403 28.104a3.993 3.993 0 0 0 5.808-1.887l20.213-49.425c13.116-32.071 58.638-32.081 71.758 0l20.212 49.424a3.994 3.994 0 0 0 5.809 1.887l45.403-28.104c29.464-18.236 66.297 8.513 58.054 42.179l-12.699 51.865a3.995 3.995 0 0 0 3.59 4.941l53.251 3.951c34.553 2.563 48.633 45.854 22.175 68.246l-40.76 34.497a3.993 3.993 0 0 0 0 6.107l40.76 34.496c26.511 22.441 12.322 65.689-22.175 68.247l-53.251 3.951a3.993 3.993 0 0 0-3.589 4.942l12.698 51.864c8.241 33.658-28.583 60.421-58.054 42.18l-45.403-28.104a3.994 3.994 0 0 0-5.809 1.887l-20.212 49.424c-13.159 32.178-58.675 31.993-71.757 0zm16.814-64.568l19.064 46.616 19.064-46.615c10.308-25.2 40.778-35.066 63.892-20.759l42.822 26.507-11.976-48.919c-6.475-26.444 12.38-52.339 39.487-54.349l50.226-3.726-38.444-32.536c-20.782-17.591-20.747-49.621.001-67.18l38.442-32.536-50.225-3.727c-27.151-2.015-45.95-27.948-39.488-54.349l11.978-48.919-42.823 26.507c-23.151 14.327-53.603 4.4-63.892-20.76l-19.064-46.615-19.064 46.617c-10.305 25.198-40.778 35.066-63.891 20.76l-42.823-26.508 11.977 48.918c6.474 26.446-12.381 52.338-39.488 54.35l-50.224 3.726 38.443 32.537c20.782 17.588 20.747 49.619 0 67.178L52.48 322.123l50.226 3.726c27.151 2.014 45.95 27.947 39.487 54.349l-11.977 48.919 42.823-26.507c23.188-14.355 53.622-4.352 63.891 20.758zM256 384c-70.58 0-128-57.421-128-128 0-70.58 57.42-128 128-128 70.579 0 128 57.42 128 128 0 70.579-57.421 128-128 128zm0-208c-44.112 0-80 35.888-80 80s35.888 80 80 80 80-35.888 80-80-35.888-80-80-80z"] }; +var faThumbsDown = { prefix: 'far', iconName: 'thumbs-down', icon: [512, 512, [], "f165", "M466.27 225.31c4.674-22.647.864-44.538-8.99-62.99 2.958-23.868-4.021-48.565-17.34-66.99C438.986 39.423 404.117 0 327 0c-7 0-15 .01-22.22.01C201.195.01 168.997 40 128 40h-10.845c-5.64-4.975-13.042-8-21.155-8H32C14.327 32 0 46.327 0 64v240c0 17.673 14.327 32 32 32h64c11.842 0 22.175-6.438 27.708-16h7.052c19.146 16.953 46.013 60.653 68.76 83.4 13.667 13.667 10.153 108.6 71.76 108.6 57.58 0 95.27-31.936 95.27-104.73 0-18.41-3.93-33.73-8.85-46.54h36.48c48.602 0 85.82-41.565 85.82-85.58 0-19.15-4.96-34.99-13.73-49.84zM64 296c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm330.18 16.73H290.19c0 37.82 28.36 55.37 28.36 94.54 0 23.75 0 56.73-47.27 56.73-18.91-18.91-9.46-66.18-37.82-94.54C206.9 342.89 167.28 272 138.92 272H128V85.83c53.611 0 100.001-37.82 171.64-37.82h37.82c35.512 0 60.82 17.12 53.12 65.9 15.2 8.16 26.5 36.44 13.94 57.57 21.581 20.384 18.699 51.065 5.21 65.62 9.45 0 22.36 18.91 22.27 37.81-.09 18.91-16.71 37.82-37.82 37.82z"] }; +var faThumbsUp = { prefix: 'far', iconName: 'thumbs-up', icon: [512, 512, [], "f164", "M466.27 286.69C475.04 271.84 480 256 480 236.85c0-44.015-37.218-85.58-85.82-85.58H357.7c4.92-12.81 8.85-28.13 8.85-46.54C366.55 31.936 328.86 0 271.28 0c-61.607 0-58.093 94.933-71.76 108.6-22.747 22.747-49.615 66.447-68.76 83.4H32c-17.673 0-32 14.327-32 32v240c0 17.673 14.327 32 32 32h64c14.893 0 27.408-10.174 30.978-23.95 44.509 1.001 75.06 39.94 177.802 39.94 7.22 0 15.22.01 22.22.01 77.117 0 111.986-39.423 112.94-95.33 13.319-18.425 20.299-43.122 17.34-66.99 9.854-18.452 13.664-40.343 8.99-62.99zm-61.75 53.83c12.56 21.13 1.26 49.41-13.94 57.57 7.7 48.78-17.608 65.9-53.12 65.9h-37.82c-71.639 0-118.029-37.82-171.64-37.82V240h10.92c28.36 0 67.98-70.89 94.54-97.46 28.36-28.36 18.91-75.63 37.82-94.54 47.27 0 47.27 32.98 47.27 56.73 0 39.17-28.36 56.72-28.36 94.54h103.99c21.11 0 37.73 18.91 37.82 37.82.09 18.9-12.82 37.81-22.27 37.81 13.489 14.555 16.371 45.236-5.21 65.62zM88 432c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"] }; +var faTimesCircle = { prefix: 'far', iconName: 'times-circle', icon: [512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm101.8-262.2L295.6 256l62.2 62.2c4.7 4.7 4.7 12.3 0 17l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L256 295.6l-62.2 62.2c-4.7 4.7-12.3 4.7-17 0l-22.6-22.6c-4.7-4.7-4.7-12.3 0-17l62.2-62.2-62.2-62.2c-4.7-4.7-4.7-12.3 0-17l22.6-22.6c4.7-4.7 12.3-4.7 17 0l62.2 62.2 62.2-62.2c4.7-4.7 12.3-4.7 17 0l22.6 22.6c4.7 4.7 4.7 12.3 0 17z"] }; +var faTrashAlt = { prefix: 'far', iconName: 'trash-alt', icon: [448, 512, [], "f2ed", "M192 188v216c0 6.627-5.373 12-12 12h-24c-6.627 0-12-5.373-12-12V188c0-6.627 5.373-12 12-12h24c6.627 0 12 5.373 12 12zm100-12h-24c-6.627 0-12 5.373-12 12v216c0 6.627 5.373 12 12 12h24c6.627 0 12-5.373 12-12V188c0-6.627-5.373-12-12-12zm132-96c13.255 0 24 10.745 24 24v12c0 6.627-5.373 12-12 12h-20v336c0 26.51-21.49 48-48 48H80c-26.51 0-48-21.49-48-48V128H12c-6.627 0-12-5.373-12-12v-12c0-13.255 10.745-24 24-24h74.411l34.018-56.696A48 48 0 0 1 173.589 0h100.823a48 48 0 0 1 41.16 23.304L349.589 80H424zm-269.611 0h139.223L276.16 50.913A6 6 0 0 0 271.015 48h-94.028a6 6 0 0 0-5.145 2.913L154.389 80zM368 128H80v330a6 6 0 0 0 6 6h276a6 6 0 0 0 6-6V128z"] }; +var faUser = { prefix: 'far', iconName: 'user', icon: [448, 512, [], "f007", "M313.6 304c-28.7 0-42.5 16-89.6 16-47.1 0-60.8-16-89.6-16C60.2 304 0 364.2 0 438.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-25.6c0-74.2-60.2-134.4-134.4-134.4zM400 464H48v-25.6c0-47.6 38.8-86.4 86.4-86.4 14.6 0 38.3 16 89.6 16 51.7 0 74.9-16 89.6-16 47.6 0 86.4 38.8 86.4 86.4V464zM224 288c79.5 0 144-64.5 144-144S303.5 0 224 0 80 64.5 80 144s64.5 144 144 144zm0-240c52.9 0 96 43.1 96 96s-43.1 96-96 96-96-43.1-96-96 43.1-96 96-96z"] }; +var faUserCircle = { prefix: 'far', iconName: 'user-circle', icon: [496, 512, [], "f2bd", "M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"] }; +var faWindowClose = { prefix: 'far', iconName: 'window-close', icon: [512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v340zM356.5 194.6L295.1 256l61.4 61.4c4.6 4.6 4.6 12.1 0 16.8l-22.3 22.3c-4.6 4.6-12.1 4.6-16.8 0L256 295.1l-61.4 61.4c-4.6 4.6-12.1 4.6-16.8 0l-22.3-22.3c-4.6-4.6-4.6-12.1 0-16.8l61.4-61.4-61.4-61.4c-4.6-4.6-4.6-12.1 0-16.8l22.3-22.3c4.6-4.6 12.1-4.6 16.8 0l61.4 61.4 61.4-61.4c4.6-4.6 12.1-4.6 16.8 0l22.3 22.3c4.7 4.6 4.7 12.1 0 16.8z"] }; +var faWindowMaximize = { prefix: 'far', iconName: 'window-maximize', icon: [512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V192h416v234z"] }; +var faWindowMinimize = { prefix: 'far', iconName: 'window-minimize', icon: [512, 512, [], "f2d1", "M480 480H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h448c17.7 0 32 14.3 32 32s-14.3 32-32 32z"] }; +var faWindowRestore = { prefix: 'far', iconName: 'window-restore', icon: [512, 512, [], "f2d2", "M464 0H144c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-96 464H48V256h320v208zm96-96h-48V144c0-26.5-21.5-48-48-48H144V48h320v320z"] }; +var icons$1 = { + faAddressBook: faAddressBook, + faAddressCard: faAddressCard, + faArrowAltCircleDown: faArrowAltCircleDown, + faArrowAltCircleLeft: faArrowAltCircleLeft, + faArrowAltCircleRight: faArrowAltCircleRight, + faArrowAltCircleUp: faArrowAltCircleUp, + faBell: faBell, + faBellSlash: faBellSlash, + faBookmark: faBookmark, + faBuilding: faBuilding, + faCalendar: faCalendar, + faCalendarAlt: faCalendarAlt, + faCalendarCheck: faCalendarCheck, + faCalendarMinus: faCalendarMinus, + faCalendarPlus: faCalendarPlus, + faCalendarTimes: faCalendarTimes, + faCaretSquareDown: faCaretSquareDown, + faCaretSquareLeft: faCaretSquareLeft, + faCaretSquareRight: faCaretSquareRight, + faCaretSquareUp: faCaretSquareUp, + faChartBar: faChartBar, + faCheckCircle: faCheckCircle, + faCheckSquare: faCheckSquare, + faCircle: faCircle, + faClipboard: faClipboard, + faClock: faClock, + faClone: faClone, + faClosedCaptioning: faClosedCaptioning, + faComment: faComment, + faCommentAlt: faCommentAlt, + faCommentDots: faCommentDots, + faComments: faComments, + faCompass: faCompass, + faCopy: faCopy, + faCopyright: faCopyright, + faCreditCard: faCreditCard, + faDotCircle: faDotCircle, + faEdit: faEdit, + faEnvelope: faEnvelope, + faEnvelopeOpen: faEnvelopeOpen, + faEye: faEye, + faEyeSlash: faEyeSlash, + faFile: faFile, + faFileAlt: faFileAlt, + faFileArchive: faFileArchive, + faFileAudio: faFileAudio, + faFileCode: faFileCode, + faFileExcel: faFileExcel, + faFileImage: faFileImage, + faFilePdf: faFilePdf, + faFilePowerpoint: faFilePowerpoint, + faFileVideo: faFileVideo, + faFileWord: faFileWord, + faFlag: faFlag, + faFolder: faFolder, + faFolderOpen: faFolderOpen, + faFontAwesomeLogoFull: faFontAwesomeLogoFull, + faFrown: faFrown, + faFutbol: faFutbol, + faGem: faGem, + faHandLizard: faHandLizard, + faHandPaper: faHandPaper, + faHandPeace: faHandPeace, + faHandPointDown: faHandPointDown, + faHandPointLeft: faHandPointLeft, + faHandPointRight: faHandPointRight, + faHandPointUp: faHandPointUp, + faHandPointer: faHandPointer, + faHandRock: faHandRock, + faHandScissors: faHandScissors, + faHandSpock: faHandSpock, + faHandshake: faHandshake, + faHdd: faHdd, + faHeart: faHeart, + faHospital: faHospital, + faHourglass: faHourglass, + faIdBadge: faIdBadge, + faIdCard: faIdCard, + faImage: faImage, + faImages: faImages, + faKeyboard: faKeyboard, + faLemon: faLemon, + faLifeRing: faLifeRing, + faLightbulb: faLightbulb, + faListAlt: faListAlt, + faMap: faMap, + faMeh: faMeh, + faMinusSquare: faMinusSquare, + faMoneyBillAlt: faMoneyBillAlt, + faMoon: faMoon, + faNewspaper: faNewspaper, + faObjectGroup: faObjectGroup, + faObjectUngroup: faObjectUngroup, + faPaperPlane: faPaperPlane, + faPauseCircle: faPauseCircle, + faPlayCircle: faPlayCircle, + faPlusSquare: faPlusSquare, + faQuestionCircle: faQuestionCircle, + faRegistered: faRegistered, + faSave: faSave, + faShareSquare: faShareSquare, + faSmile: faSmile, + faSnowflake: faSnowflake, + faSquare: faSquare, + faStar: faStar, + faStarHalf: faStarHalf, + faStickyNote: faStickyNote, + faStopCircle: faStopCircle, + faSun: faSun, + faThumbsDown: faThumbsDown, + faThumbsUp: faThumbsUp, + faTimesCircle: faTimesCircle, + faTrashAlt: faTrashAlt, + faUser: faUser, + faUserCircle: faUserCircle, + faWindowClose: faWindowClose, + faWindowMaximize: faWindowMaximize, + faWindowMinimize: faWindowMinimize, + faWindowRestore: faWindowRestore +}; + +exports['default'] = icons$1; +exports.prefix = prefix; +exports.faAddressBook = faAddressBook; +exports.faAddressCard = faAddressCard; +exports.faArrowAltCircleDown = faArrowAltCircleDown; +exports.faArrowAltCircleLeft = faArrowAltCircleLeft; +exports.faArrowAltCircleRight = faArrowAltCircleRight; +exports.faArrowAltCircleUp = faArrowAltCircleUp; +exports.faBell = faBell; +exports.faBellSlash = faBellSlash; +exports.faBookmark = faBookmark; +exports.faBuilding = faBuilding; +exports.faCalendar = faCalendar; +exports.faCalendarAlt = faCalendarAlt; +exports.faCalendarCheck = faCalendarCheck; +exports.faCalendarMinus = faCalendarMinus; +exports.faCalendarPlus = faCalendarPlus; +exports.faCalendarTimes = faCalendarTimes; +exports.faCaretSquareDown = faCaretSquareDown; +exports.faCaretSquareLeft = faCaretSquareLeft; +exports.faCaretSquareRight = faCaretSquareRight; +exports.faCaretSquareUp = faCaretSquareUp; +exports.faChartBar = faChartBar; +exports.faCheckCircle = faCheckCircle; +exports.faCheckSquare = faCheckSquare; +exports.faCircle = faCircle; +exports.faClipboard = faClipboard; +exports.faClock = faClock; +exports.faClone = faClone; +exports.faClosedCaptioning = faClosedCaptioning; +exports.faComment = faComment; +exports.faCommentAlt = faCommentAlt; +exports.faCommentDots = faCommentDots; +exports.faComments = faComments; +exports.faCompass = faCompass; +exports.faCopy = faCopy; +exports.faCopyright = faCopyright; +exports.faCreditCard = faCreditCard; +exports.faDotCircle = faDotCircle; +exports.faEdit = faEdit; +exports.faEnvelope = faEnvelope; +exports.faEnvelopeOpen = faEnvelopeOpen; +exports.faEye = faEye; +exports.faEyeSlash = faEyeSlash; +exports.faFile = faFile; +exports.faFileAlt = faFileAlt; +exports.faFileArchive = faFileArchive; +exports.faFileAudio = faFileAudio; +exports.faFileCode = faFileCode; +exports.faFileExcel = faFileExcel; +exports.faFileImage = faFileImage; +exports.faFilePdf = faFilePdf; +exports.faFilePowerpoint = faFilePowerpoint; +exports.faFileVideo = faFileVideo; +exports.faFileWord = faFileWord; +exports.faFlag = faFlag; +exports.faFolder = faFolder; +exports.faFolderOpen = faFolderOpen; +exports.faFontAwesomeLogoFull = faFontAwesomeLogoFull; +exports.faFrown = faFrown; +exports.faFutbol = faFutbol; +exports.faGem = faGem; +exports.faHandLizard = faHandLizard; +exports.faHandPaper = faHandPaper; +exports.faHandPeace = faHandPeace; +exports.faHandPointDown = faHandPointDown; +exports.faHandPointLeft = faHandPointLeft; +exports.faHandPointRight = faHandPointRight; +exports.faHandPointUp = faHandPointUp; +exports.faHandPointer = faHandPointer; +exports.faHandRock = faHandRock; +exports.faHandScissors = faHandScissors; +exports.faHandSpock = faHandSpock; +exports.faHandshake = faHandshake; +exports.faHdd = faHdd; +exports.faHeart = faHeart; +exports.faHospital = faHospital; +exports.faHourglass = faHourglass; +exports.faIdBadge = faIdBadge; +exports.faIdCard = faIdCard; +exports.faImage = faImage; +exports.faImages = faImages; +exports.faKeyboard = faKeyboard; +exports.faLemon = faLemon; +exports.faLifeRing = faLifeRing; +exports.faLightbulb = faLightbulb; +exports.faListAlt = faListAlt; +exports.faMap = faMap; +exports.faMeh = faMeh; +exports.faMinusSquare = faMinusSquare; +exports.faMoneyBillAlt = faMoneyBillAlt; +exports.faMoon = faMoon; +exports.faNewspaper = faNewspaper; +exports.faObjectGroup = faObjectGroup; +exports.faObjectUngroup = faObjectUngroup; +exports.faPaperPlane = faPaperPlane; +exports.faPauseCircle = faPauseCircle; +exports.faPlayCircle = faPlayCircle; +exports.faPlusSquare = faPlusSquare; +exports.faQuestionCircle = faQuestionCircle; +exports.faRegistered = faRegistered; +exports.faSave = faSave; +exports.faShareSquare = faShareSquare; +exports.faSmile = faSmile; +exports.faSnowflake = faSnowflake; +exports.faSquare = faSquare; +exports.faStar = faStar; +exports.faStarHalf = faStarHalf; +exports.faStickyNote = faStickyNote; +exports.faStopCircle = faStopCircle; +exports.faSun = faSun; +exports.faThumbsDown = faThumbsDown; +exports.faThumbsUp = faThumbsUp; +exports.faTimesCircle = faTimesCircle; +exports.faTrashAlt = faTrashAlt; +exports.faUser = faUser; +exports.faUserCircle = faUserCircle; +exports.faWindowClose = faWindowClose; +exports.faWindowMaximize = faWindowMaximize; +exports.faWindowMinimize = faWindowMinimize; +exports.faWindowRestore = faWindowRestore; + +Object.defineProperty(exports, '__esModule', { value: true }); + +}))); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/LICENSE.txt b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/LICENSE.txt new file mode 100644 index 0000000000..28c1c4bc73 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/LICENSE.txt @@ -0,0 +1,34 @@ +Font Awesome Free License +------------------------- + +Font Awesome Free is free, open source, and GPL friendly. You can use it for +commercial projects, open source projects, or really almost whatever you want. +Full Font Awesome Free license: https://fontawesome.com/license. + +# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) +In the Font Awesome Free download, the CC BY 4.0 license applies to all icons +packaged as SVG and JS file types. + +# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL) +In the Font Awesome Free download, the SIL OLF license applies to all icons +packaged as web and desktop font files. + +# Code: MIT License (https://opensource.org/licenses/MIT) +In the Font Awesome Free download, the MIT license applies to all non-font and +non-icon files. + +# Attribution +Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font +Awesome Free files already contain embedded comments with sufficient +attribution, so you shouldn't need to do anything additional when using these +files normally. + +We've kept attribution comments terse, so we ask that you do not actively work +to remove them from files, especially code. They're a great way for folks to +learn about Font Awesome. + +# Brand Icons +All brand icons are trademarks of their respective owners. The use of these +trademarks does not indicate endorsement of the trademark holder by Font +Awesome, nor vice versa. **Please do not use brand logos for any purpose except +to represent the company, product, or service to which they refer.** diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/README.md b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/README.md new file mode 100644 index 0000000000..66f91406d9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/README.md @@ -0,0 +1,27 @@ +# @fortawesome/fontawesome-free-solid - SVG with JavaScript version + +> "I came here to chew bubblegum and install Font Awesome 5 - and I'm all out of bubblegum" + +[![npm](https://img.shields.io/npm/v/@fortawesome/fontawesome-free-solid.svg?style=flat-square)](https://www.npmjs.com/package/@fortawesome/fontawesome-free-solid) + +## Installation + +``` +$ npm i --save @fortawesome/fontawesome-free-solid +``` + +Or + +``` +$ yarn add @fortawesome/fontawesome-free-solid +``` + +## Documentation + +Get started [here](https://fontawesome.com/get-started/svg-with-js). Continue your journey [here](https://fontawesome.com/how-to-use/svg-with-js). + +Or go straight to the [API documentation](https://fontawesome.com/how-to-use/font-awesome-api). + +## Issues and support + +Start with [GitHub issues](https://github.com/FortAwesome/Font-Awesome/issues) and ping us on [Twitter](https://twitter.com/fontawesome) if you need to. diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAddressBook.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAddressBook.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAddressBook.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAddressBook.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAddressBook.js new file mode 100644 index 0000000000..f283d2a4b5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAddressBook.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'address-book', icon: [448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAddressCard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAddressCard.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAddressCard.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAddressCard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAddressCard.js new file mode 100644 index 0000000000..b7b3496c2c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAddressCard.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'address-card', icon: [576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-352 96c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H86.4C74 384 64 375.4 64 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2zM512 312c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAdjust.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAdjust.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAdjust.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAdjust.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAdjust.js new file mode 100644 index 0000000000..f109731a22 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAdjust.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'adjust', icon: [512, 512, [], "f042", "M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignCenter.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignCenter.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignCenter.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignCenter.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignCenter.js new file mode 100644 index 0000000000..990df243a6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignCenter.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'align-center', icon: [448, 512, [], "f037", "M352 44v40c0 8.837-7.163 16-16 16H112c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h224c8.837 0 16 7.163 16 16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm320-200H112c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignJustify.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignJustify.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignJustify.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignJustify.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignJustify.js new file mode 100644 index 0000000000..eaf69c1567 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignJustify.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'align-justify', icon: [448, 512, [], "f039", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm16 144h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0-128h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignLeft.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignLeft.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignLeft.js new file mode 100644 index 0000000000..1568d5884b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignLeft.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'align-left', icon: [448, 512, [], "f036", "M288 44v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16zM0 172v40c0 8.837 7.163 16 16 16h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16zm16 312h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm256-200H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignRight.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignRight.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignRight.js new file mode 100644 index 0000000000..af841b93b2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAlignRight.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'align-right', icon: [448, 512, [], "f038", "M160 84V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H176c-8.837 0-16-7.163-16-16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAllergies.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAllergies.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAllergies.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAllergies.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAllergies.js new file mode 100644 index 0000000000..623531c4d1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAllergies.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'allergies', icon: [448, 512, [], "f461", "M416 112c-17.6 0-32 14.4-32 32v72c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v152c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V32c0-17.6-14.4-32-32-32s-32 14.4-32 32v184c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32S96 46.4 96 64v241l-23.6-32.5c-13-17.9-38-21.8-55.9-8.8s-21.8 38-8.8 55.9l125.6 172.7c9 12.4 23.5 19.8 38.8 19.8h197.6c22.3 0 41.6-15.3 46.7-37l26.5-112.7c3.2-13.7 4.9-28.3 5.1-42.3V144c0-17.6-14.4-32-32-32zM176 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 32c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32-128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAmbulance.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAmbulance.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAmbulance.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAmbulance.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAmbulance.js new file mode 100644 index 0000000000..6b94b294f7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAmbulance.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'ambulance', icon: [640, 512, [], "f0f9", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm144-248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm176 248c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAmericanSignLanguageInterpreting.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAmericanSignLanguageInterpreting.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAmericanSignLanguageInterpreting.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAmericanSignLanguageInterpreting.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAmericanSignLanguageInterpreting.js new file mode 100644 index 0000000000..8d183e5021 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAmericanSignLanguageInterpreting.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'american-sign-language-interpreting', icon: [640, 512, [], "f2a3", "M290.547 189.039c-20.295-10.149-44.147-11.199-64.739-3.89 42.606 0 71.208 20.475 85.578 50.576 8.576 17.899-5.148 38.071-23.617 38.071 18.429 0 32.211 20.136 23.617 38.071-14.725 30.846-46.123 50.854-80.298 50.854-.557 0-94.471-8.615-94.471-8.615l-66.406 33.347c-9.384 4.693-19.815.379-23.895-7.781L1.86 290.747c-4.167-8.615-1.111-18.897 6.946-23.621l58.072-33.069L108 159.861c6.39-57.245 34.731-109.767 79.743-146.726 11.391-9.448 28.341-7.781 37.51 3.613 9.446 11.394 7.78 28.067-3.612 37.516-12.503 10.559-23.618 22.509-32.509 35.57 21.672-14.729 46.679-24.732 74.186-28.067 14.725-1.945 28.063 8.336 29.73 23.065 1.945 14.728-8.336 28.067-23.062 29.734-16.116 1.945-31.12 7.503-44.178 15.284 26.114-5.713 58.712-3.138 88.079 11.115 13.336 6.669 18.893 22.509 12.224 35.848-6.389 13.06-22.504 18.617-35.564 12.226zm-27.229 69.472c-6.112-12.505-18.338-20.286-32.231-20.286a35.46 35.46 0 0 0-35.565 35.57c0 21.428 17.808 35.57 35.565 35.57 13.893 0 26.119-7.781 32.231-20.286 4.446-9.449 13.614-15.006 23.339-15.284-9.725-.277-18.893-5.835-23.339-15.284zm374.821-37.237c4.168 8.615 1.111 18.897-6.946 23.621l-58.071 33.069L532 352.16c-6.39 57.245-34.731 109.767-79.743 146.726-10.932 9.112-27.799 8.144-37.51-3.613-9.446-11.394-7.78-28.067 3.613-37.516 12.503-10.559 23.617-22.509 32.508-35.57-21.672 14.729-46.679 24.732-74.186 28.067-10.021 2.506-27.552-5.643-29.73-23.065-1.945-14.728 8.336-28.067 23.062-29.734 16.116-1.946 31.12-7.503 44.178-15.284-26.114 5.713-58.712 3.138-88.079-11.115-13.336-6.669-18.893-22.509-12.224-35.848 6.389-13.061 22.505-18.619 35.565-12.227 20.295 10.149 44.147 11.199 64.739 3.89-42.606 0-71.208-20.475-85.578-50.576-8.576-17.899 5.148-38.071 23.617-38.071-18.429 0-32.211-20.136-23.617-38.071 14.033-29.396 44.039-50.887 81.966-50.854l92.803 8.615 66.406-33.347c9.408-4.704 19.828-.354 23.894 7.781l44.455 88.926zm-229.227-18.618c-13.893 0-26.119 7.781-32.231 20.286-4.446 9.449-13.614 15.006-23.339 15.284 9.725.278 18.893 5.836 23.339 15.284 6.112 12.505 18.338 20.286 32.231 20.286a35.46 35.46 0 0 0 35.565-35.57c0-21.429-17.808-35.57-35.565-35.57z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAnchor.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAnchor.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAnchor.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAnchor.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAnchor.js new file mode 100644 index 0000000000..edb80bbd34 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAnchor.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'anchor', icon: [576, 512, [], "f13d", "M12.971 352h32.394C67.172 454.735 181.944 512 288 512c106.229 0 220.853-57.38 242.635-160h32.394c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0l-67.029 67.029c-7.56 7.56-2.206 20.485 8.485 20.485h35.146c-20.29 54.317-84.963 86.588-144.117 94.015V256h52c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-52v-5.47c37.281-13.178 63.995-48.725 64-90.518C384.005 43.772 341.605.738 289.37.01 235.723-.739 192 42.525 192 96c0 41.798 26.716 77.35 64 90.53V192h-52c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v190.015c-58.936-7.399-123.82-39.679-144.117-94.015h35.146c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0L4.485 331.515C-3.074 339.074 2.28 352 12.971 352zM288 64c17.645 0 32 14.355 32 32s-14.355 32-32 32-32-14.355-32-32 14.355-32 32-32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleDown.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleDown.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleDown.js new file mode 100644 index 0000000000..c5bee5f45b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleDown.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'angle-double-down', icon: [320, 512, [], "f103", "M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleLeft.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleLeft.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleLeft.js new file mode 100644 index 0000000000..9eac500685 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleLeft.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'angle-double-left', icon: [448, 512, [], "f100", "M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleRight.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleRight.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleRight.js new file mode 100644 index 0000000000..fb783ec001 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleRight.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'angle-double-right', icon: [448, 512, [], "f101", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleUp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleUp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleUp.js new file mode 100644 index 0000000000..75820623f5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDoubleUp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'angle-double-up', icon: [320, 512, [], "f102", "M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDown.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDown.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDown.js new file mode 100644 index 0000000000..8c6ef2c430 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleDown.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'angle-down', icon: [320, 512, [], "f107", "M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleLeft.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleLeft.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleLeft.js new file mode 100644 index 0000000000..4f8a8da44f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleLeft.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'angle-left', icon: [256, 512, [], "f104", "M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleRight.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleRight.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleRight.js new file mode 100644 index 0000000000..4c4468e03c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleRight.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'angle-right', icon: [256, 512, [], "f105", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleUp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleUp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleUp.js new file mode 100644 index 0000000000..6f15c00197 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAngleUp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'angle-up', icon: [320, 512, [], "f106", "M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArchive.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArchive.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArchive.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArchive.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArchive.js new file mode 100644 index 0000000000..0f73d935ab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArchive.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'archive', icon: [512, 512, [], "f187", "M32 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160H32v288zm160-212c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v8c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-8zM480 32H32C14.3 32 0 46.3 0 64v48c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16V64c0-17.7-14.3-32-32-32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleDown.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleDown.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleDown.js new file mode 100644 index 0000000000..0b19066da8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleDown.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'arrow-alt-circle-down', icon: [512, 512, [], "f358", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM212 140v116h-70.9c-10.7 0-16.1 13-8.5 20.5l114.9 114.3c4.7 4.7 12.2 4.7 16.9 0l114.9-114.3c7.6-7.6 2.2-20.5-8.5-20.5H300V140c0-6.6-5.4-12-12-12h-64c-6.6 0-12 5.4-12 12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleLeft.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleLeft.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleLeft.js new file mode 100644 index 0000000000..1b848c3553 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleLeft.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'arrow-alt-circle-left', icon: [512, 512, [], "f359", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleRight.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleRight.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleRight.js new file mode 100644 index 0000000000..302b5db277 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleRight.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'arrow-alt-circle-right', icon: [512, 512, [], "f35a", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleUp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleUp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleUp.js new file mode 100644 index 0000000000..c74c14f380 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowAltCircleUp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'arrow-alt-circle-up', icon: [512, 512, [], "f35b", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm292 116V256h70.9c10.7 0 16.1-13 8.5-20.5L264.5 121.2c-4.7-4.7-12.2-4.7-16.9 0l-115 114.3c-7.6 7.6-2.2 20.5 8.5 20.5H212v116c0 6.6 5.4 12 12 12h64c6.6 0 12-5.4 12-12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleDown.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleDown.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleDown.js new file mode 100644 index 0000000000..f80dcd40ee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleDown.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'arrow-circle-down', icon: [512, 512, [], "f0ab", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-143.6-28.9L288 302.6V120c0-13.3-10.7-24-24-24h-16c-13.3 0-24 10.7-24 24v182.6l-72.4-75.5c-9.3-9.7-24.8-9.9-34.3-.4l-10.9 11c-9.4 9.4-9.4 24.6 0 33.9L239 404.3c9.4 9.4 24.6 9.4 33.9 0l132.7-132.7c9.4-9.4 9.4-24.6 0-33.9l-10.9-11c-9.5-9.5-25-9.3-34.3.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleLeft.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleLeft.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleLeft.js new file mode 100644 index 0000000000..f4e2422917 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleLeft.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'arrow-circle-left', icon: [512, 512, [], "f0a8", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm28.9-143.6L209.4 288H392c13.3 0 24-10.7 24-24v-16c0-13.3-10.7-24-24-24H209.4l75.5-72.4c9.7-9.3 9.9-24.8.4-34.3l-11-10.9c-9.4-9.4-24.6-9.4-33.9 0L107.7 239c-9.4 9.4-9.4 24.6 0 33.9l132.7 132.7c9.4 9.4 24.6 9.4 33.9 0l11-10.9c9.5-9.5 9.3-25-.4-34.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleRight.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleRight.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleRight.js new file mode 100644 index 0000000000..97dc2aec97 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleRight.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'arrow-circle-right', icon: [512, 512, [], "f0a9", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28.9 143.6l75.5 72.4H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h182.6l-75.5 72.4c-9.7 9.3-9.9 24.8-.4 34.3l11 10.9c9.4 9.4 24.6 9.4 33.9 0L404.3 273c9.4-9.4 9.4-24.6 0-33.9L271.6 106.3c-9.4-9.4-24.6-9.4-33.9 0l-11 10.9c-9.5 9.6-9.3 25.1.4 34.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleUp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleUp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleUp.js new file mode 100644 index 0000000000..c64eb12da9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowCircleUp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'arrow-circle-up', icon: [512, 512, [], "f0aa", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowDown.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowDown.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowDown.js new file mode 100644 index 0000000000..872402f1dd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowDown.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'arrow-down', icon: [448, 512, [], "f063", "M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowLeft.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowLeft.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowLeft.js new file mode 100644 index 0000000000..5ea0bdf62b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowLeft.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'arrow-left', icon: [448, 512, [], "f060", "M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowRight.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowRight.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowRight.js new file mode 100644 index 0000000000..f1d8cfa4aa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowRight.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'arrow-right', icon: [448, 512, [], "f061", "M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowUp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowUp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowUp.js new file mode 100644 index 0000000000..c0077ea355 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowUp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'arrow-up', icon: [448, 512, [], "f062", "M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowsAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowsAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowsAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowsAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowsAlt.js new file mode 100644 index 0000000000..79ba5ec117 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowsAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'arrows-alt', icon: [512, 512, [], "f0b2", "M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowsAltH.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowsAltH.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowsAltH.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowsAltH.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowsAltH.js new file mode 100644 index 0000000000..f976c8b958 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowsAltH.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'arrows-alt-h', icon: [512, 512, [], "f337", "M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowsAltV.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowsAltV.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowsAltV.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowsAltV.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowsAltV.js new file mode 100644 index 0000000000..7d73f73c66 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faArrowsAltV.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'arrows-alt-v', icon: [256, 512, [], "f338", "M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAssistiveListeningSystems.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAssistiveListeningSystems.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAssistiveListeningSystems.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAssistiveListeningSystems.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAssistiveListeningSystems.js new file mode 100644 index 0000000000..83188e2ab5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAssistiveListeningSystems.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'assistive-listening-systems', icon: [512, 512, [], "f2a2", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAsterisk.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAsterisk.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAsterisk.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAsterisk.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAsterisk.js new file mode 100644 index 0000000000..5482b2f8d0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAsterisk.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'asterisk', icon: [512, 512, [], "f069", "M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAt.js new file mode 100644 index 0000000000..276bfa79d9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'at', icon: [512, 512, [], "f1fa", "M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAudioDescription.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAudioDescription.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAudioDescription.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAudioDescription.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAudioDescription.js new file mode 100644 index 0000000000..21b5f8943e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faAudioDescription.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'audio-description', icon: [512, 512, [], "f29e", "M162.925 238.709l8.822 30.655h-25.606l9.041-30.652c1.277-4.421 2.651-9.994 3.872-15.245 1.22 5.251 2.594 10.823 3.871 15.242zm166.474-32.099h-14.523v98.781h14.523c29.776 0 46.175-17.678 46.175-49.776 0-32.239-17.49-49.005-46.175-49.005zM512 112v288c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48zM245.459 336.139l-57.097-168A12.001 12.001 0 0 0 177 160h-35.894a12.001 12.001 0 0 0-11.362 8.139l-57.097 168C70.003 343.922 75.789 352 84.009 352h29.133a12 12 0 0 0 11.535-8.693l8.574-29.906h51.367l8.793 29.977A12 12 0 0 0 204.926 352h29.172c8.22 0 14.006-8.078 11.361-15.861zm184.701-80.525c0-58.977-37.919-95.614-98.96-95.614h-57.366c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12H331.2c61.041 0 98.96-36.933 98.96-96.386z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBackward.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBackward.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBackward.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBackward.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBackward.js new file mode 100644 index 0000000000..e1370d0cdd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBackward.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'backward', icon: [512, 512, [], "f04a", "M11.5 280.6l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2zm256 0l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBalanceScale.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBalanceScale.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBalanceScale.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBalanceScale.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBalanceScale.js new file mode 100644 index 0000000000..7deb308543 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBalanceScale.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'balance-scale', icon: [640, 512, [], "f24e", "M256 336h-.02c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0C-2.06 328.75.02 320.33.02 336H0c0 44.18 57.31 80 128 80s128-35.82 128-80zM128 176l72 144H56l72-144zm511.98 160c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 320l72-144 72 144H440zm88 128H352V153.25c23.51-10.29 41.16-31.48 46.39-57.25H528c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H383.64C369.04 12.68 346.09 0 320 0s-49.04 12.68-63.64 32H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h129.61c5.23 25.76 22.87 46.96 46.39 57.25V448H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBan.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBan.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBan.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBan.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBan.js new file mode 100644 index 0000000000..a137b0c29d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBan.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'ban', icon: [512, 512, [], "f05e", "M256 8C119.034 8 8 119.033 8 256s111.034 248 248 248 248-111.034 248-248S392.967 8 256 8zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676zM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBandAid.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBandAid.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBandAid.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBandAid.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBandAid.js new file mode 100644 index 0000000000..c2d269e10a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBandAid.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'band-aid', icon: [640, 512, [], "f462", "M0 160v192c0 35.3 28.7 64 64 64h96V96H64c-35.3 0-64 28.7-64 64zm576-64h-96v320h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64zM192 416h256V96H192v320zm176-232c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBarcode.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBarcode.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBarcode.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBarcode.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBarcode.js new file mode 100644 index 0000000000..c18758b545 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBarcode.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'barcode', icon: [512, 512, [], "f02a", "M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBars.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBars.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBars.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBars.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBars.js new file mode 100644 index 0000000000..273cba2ee1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBars.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'bars', icon: [448, 512, [], "f0c9", "M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBaseballBall.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBaseballBall.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBaseballBall.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBaseballBall.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBaseballBall.js new file mode 100644 index 0000000000..9d3a4a6272 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBaseballBall.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'baseball-ball', icon: [496, 512, [], "f433", "M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBasketballBall.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBasketballBall.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBasketballBall.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBasketballBall.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBasketballBall.js new file mode 100644 index 0000000000..29bc679f5f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBasketballBall.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'basketball-ball', icon: [496, 512, [], "f434", "M212.3 10.3c-43.8 6.3-86.2 24.1-122.2 53.8l77.4 77.4c27.8-35.8 43.3-81.2 44.8-131.2zM248 222L405.9 64.1c-42.4-35-93.6-53.5-145.5-56.1-1.2 63.9-21.5 122.3-58.7 167.7L248 222zM56.1 98.1c-29.7 36-47.5 78.4-53.8 122.2 50-1.5 95.5-17 131.2-44.8L56.1 98.1zm272.2 204.2c45.3-37.1 103.7-57.4 167.7-58.7-2.6-51.9-21.1-103.1-56.1-145.5L282 256l46.3 46.3zM248 290L90.1 447.9c42.4 34.9 93.6 53.5 145.5 56.1 1.3-64 21.6-122.4 58.7-167.7L248 290zm191.9 123.9c29.7-36 47.5-78.4 53.8-122.2-50.1 1.6-95.5 17.1-131.2 44.8l77.4 77.4zM167.7 209.7C122.3 246.9 63.9 267.3 0 268.4c2.6 51.9 21.1 103.1 56.1 145.5L214 256l-46.3-46.3zm116 292c43.8-6.3 86.2-24.1 122.2-53.8l-77.4-77.4c-27.7 35.7-43.2 81.2-44.8 131.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBath.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBath.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBath.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBath.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBath.js new file mode 100644 index 0000000000..7fa610c83a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBath.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'bath', icon: [512, 512, [], "f2cd", "M488 256H80V112c0-17.645 14.355-32 32-32 11.351 0 21.332 5.945 27.015 14.88-16.492 25.207-14.687 59.576 6.838 83.035-4.176 4.713-4.021 11.916.491 16.428l11.314 11.314c4.686 4.686 12.284 4.686 16.971 0l95.03-95.029c4.686-4.686 4.686-12.284 0-16.971l-11.314-11.314c-4.512-4.512-11.715-4.666-16.428-.491-17.949-16.469-42.294-21.429-64.178-15.365C163.281 45.667 139.212 32 112 32c-44.112 0-80 35.888-80 80v144h-8c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h8v32c0 28.43 12.362 53.969 32 71.547V456c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-8h256v8c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-32.453c19.638-17.578 32-43.117 32-71.547v-32h8c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryEmpty.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryEmpty.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryEmpty.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryEmpty.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryEmpty.js new file mode 100644 index 0000000000..190e04bfe8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryEmpty.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'battery-empty', icon: [640, 512, [], "f244", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryFull.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryFull.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryFull.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryFull.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryFull.js new file mode 100644 index 0000000000..762f5a6a27 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryFull.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'battery-full', icon: [640, 512, [], "f240", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-48 96H96v128h416V192z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryHalf.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryHalf.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryHalf.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryHalf.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryHalf.js new file mode 100644 index 0000000000..95d96cd8b6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryHalf.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'battery-half', icon: [640, 512, [], "f242", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-240 96H96v128h224V192z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryQuarter.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryQuarter.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryQuarter.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryQuarter.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryQuarter.js new file mode 100644 index 0000000000..62e462babd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryQuarter.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'battery-quarter', icon: [640, 512, [], "f243", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-336 96H96v128h128V192z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryThreeQuarters.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryThreeQuarters.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryThreeQuarters.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryThreeQuarters.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryThreeQuarters.js new file mode 100644 index 0000000000..18a9af5bc5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBatteryThreeQuarters.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'battery-three-quarters', icon: [640, 512, [], "f241", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-144 96H96v128h320V192z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBed.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBed.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBed.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBed.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBed.js new file mode 100644 index 0000000000..529db20bdb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBed.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'bed', icon: [576, 512, [], "f236", "M552 288c13.255 0 24 10.745 24 24v136h-96v-64H96v64H0V88c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24v200h456zM192 96c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80zm384 128c0-53.019-42.981-96-96-96H312c-13.255 0-24 10.745-24 24v104h288v-32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBeer.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBeer.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBeer.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBeer.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBeer.js new file mode 100644 index 0000000000..015ad396f5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBeer.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'beer', icon: [448, 512, [], "f0fc", "M368 96h-48V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24v-42.11l80.606-35.977C429.396 365.063 448 336.388 448 304.86V176c0-44.112-35.888-80-80-80zm16 208.86a16.018 16.018 0 0 1-9.479 14.611L320 343.805V160h48c8.822 0 16 7.178 16 16v128.86zM208 384c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16zm-96 0c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBell.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBell.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBell.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBell.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBell.js new file mode 100644 index 0000000000..693c938c62 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBell.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'bell', icon: [448, 512, [], "f0f3", "M433.884 366.059C411.634 343.809 384 316.118 384 208c0-79.394-57.831-145.269-133.663-157.83A31.845 31.845 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 6.75 2.095 13.008 5.663 18.17C121.831 62.731 64 128.606 64 208c0 108.118-27.643 135.809-49.893 158.059C-16.042 396.208 5.325 448 48.048 448H160c0 35.346 28.654 64 64 64s64-28.654 64-64h111.943c42.638 0 64.151-51.731 33.941-81.941zM224 472a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16c0 13.234 10.766 24 24 24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBellSlash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBellSlash.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBellSlash.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBellSlash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBellSlash.js new file mode 100644 index 0000000000..c2da40b517 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBellSlash.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'bell-slash', icon: [576, 512, [], "f1f6", "M78.107 366.059C47.958 396.208 69.325 448 112.048 448H224c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h32.685L127.848 221.379c-2.198 97.078-28.439 123.378-49.741 144.68zM264 448c0 13.234 10.766 24 24 24a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16zm305.896 43.733l-10.762 12.086c-8.915 10.012-24.333 10.967-34.437 2.133L8.256 54.393C-1.848 45.558-2.811 30.28 6.104 20.267L16.865 8.181C25.781-1.831 41.199-2.786 51.303 6.049l113.81 99.512c24.017-28.778 57.946-48.996 96.55-55.39A31.85 31.85 0 0 1 256 32c0-17.673 14.327-32 32-32s32 14.327 32 32c0 6.75-2.095 13.008-5.663 18.17C390.169 62.731 448 128.606 448 208c0 108.118 27.634 135.809 49.884 158.059 12.149 12.149 15.923 27.776 13.33 42.121l56.53 49.427c10.104 8.835 11.067 24.113 2.152 34.126z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBicycle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBicycle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBicycle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBicycle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBicycle.js new file mode 100644 index 0000000000..74b8808209 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBicycle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'bicycle', icon: [640, 512, [], "f206", "M512.509 192.001c-16.373-.064-32.03 2.955-46.436 8.495l-77.68-125.153A24 24 0 0 0 368.001 64h-64c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h50.649l14.896 24H256.002v-16c0-8.837-7.163-16-16-16h-87.459c-13.441 0-24.777 10.999-24.536 24.437.232 13.044 10.876 23.563 23.995 23.563h48.726l-29.417 47.52c-13.433-4.83-27.904-7.483-42.992-7.52C58.094 191.83.412 249.012.002 319.236-.413 390.279 57.055 448 128.002 448c59.642 0 109.758-40.793 123.967-96h52.033a24 24 0 0 0 20.406-11.367L410.37 201.77l14.938 24.067c-25.455 23.448-41.385 57.081-41.307 94.437.145 68.833 57.899 127.051 126.729 127.719 70.606.685 128.181-55.803 129.255-125.996 1.086-70.941-56.526-129.72-127.476-129.996zM186.75 265.772c9.727 10.529 16.673 23.661 19.642 38.228h-43.306l23.664-38.228zM128.002 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c5.869 0 11.586.653 17.099 1.859l-45.505 73.509C89.715 331.327 101.213 352 120.002 352h81.3c-12.37 28.225-40.562 48-73.3 48zm162.63-96h-35.624c-3.96-31.756-19.556-59.894-42.383-80.026L237.371 184h127.547l-74.286 120zm217.057 95.886c-41.036-2.165-74.049-35.692-75.627-76.755-.812-21.121 6.633-40.518 19.335-55.263l44.433 71.586c4.66 7.508 14.524 9.816 22.032 5.156l13.594-8.437c7.508-4.66 9.817-14.524 5.156-22.032l-44.468-71.643a79.901 79.901 0 0 1 19.858-2.497c44.112 0 80 35.888 80 80-.001 45.54-38.252 82.316-84.313 79.885z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBinoculars.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBinoculars.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBinoculars.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBinoculars.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBinoculars.js new file mode 100644 index 0000000000..f529762402 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBinoculars.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'binoculars', icon: [512, 512, [], "f1e5", "M192 104H96V56c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24v48zm224-48c0-13.255-10.745-24-24-24h-48c-13.255 0-24 10.745-24 24v48h96V56zM0 456c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H0v16zm88-328c-13.255 0-24 10.745-24 24C64 256 0 272 0 416h168V312c0-13.255 10.745-24 24-24V128H88zm256 328c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H344v16zM216 128v160h80V128h-80zm128 288h168c0-144-64-160-64-264 0-13.255-10.745-24-24-24H320v160c13.255 0 24 10.745 24 24v104z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBirthdayCake.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBirthdayCake.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBirthdayCake.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBirthdayCake.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBirthdayCake.js new file mode 100644 index 0000000000..fd36b8917b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBirthdayCake.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'birthday-cake', icon: [448, 512, [], "f1fd", "M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBlender.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBlender.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBlender.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBlender.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBlender.js new file mode 100644 index 0000000000..27fba314f7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBlender.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'blender', icon: [512, 512, [], "f517", "M416 384H160c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-128 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm40-416h166.54L512 0H48C21.49 0 0 21.49 0 48v160c0 26.51 21.49 48 48 48h103.27l8.73 96h256l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H328c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM64 192V64h69.82l11.64 128H64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBlind.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBlind.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBlind.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBlind.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBlind.js new file mode 100644 index 0000000000..d68f3e2fc0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBlind.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'blind', icon: [384, 512, [], "f29d", "M380.15 510.837a8 8 0 0 1-10.989-2.687l-125.33-206.427a31.923 31.923 0 0 0 12.958-9.485l126.048 207.608a8 8 0 0 1-2.687 10.991zM142.803 314.338l-32.54 89.485 36.12 88.285c6.693 16.36 25.377 24.192 41.733 17.501 16.357-6.692 24.193-25.376 17.501-41.734l-62.814-153.537zM96 88c24.301 0 44-19.699 44-44S120.301 0 96 0 52 19.699 52 44s19.699 44 44 44zm154.837 169.128l-120-152c-4.733-5.995-11.75-9.108-18.837-9.112V96H80v.026c-7.146.003-14.217 3.161-18.944 9.24L0 183.766v95.694c0 13.455 11.011 24.791 24.464 24.536C37.505 303.748 48 293.1 48 280v-79.766l16-20.571v140.698L9.927 469.055c-6.04 16.609 2.528 34.969 19.138 41.009 16.602 6.039 34.968-2.524 41.009-19.138L136 309.638V202.441l-31.406-39.816a4 4 0 1 1 6.269-4.971l102.3 129.217c9.145 11.584 24.368 11.339 33.708 3.965 10.41-8.216 12.159-23.334 3.966-33.708z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBold.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBold.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBold.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBold.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBold.js new file mode 100644 index 0000000000..a9cd4f6481 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBold.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'bold', icon: [384, 512, [], "f032", "M304.793 243.891c33.639-18.537 53.657-54.16 53.657-95.693 0-48.236-26.25-87.626-68.626-104.179C265.138 34.01 240.849 32 209.661 32H24c-8.837 0-16 7.163-16 16v33.049c0 8.837 7.163 16 16 16h33.113v318.53H24c-8.837 0-16 7.163-16 16V464c0 8.837 7.163 16 16 16h195.69c24.203 0 44.834-1.289 66.866-7.584C337.52 457.193 376 410.647 376 350.014c0-52.168-26.573-91.684-71.207-106.123zM142.217 100.809h67.444c16.294 0 27.536 2.019 37.525 6.717 15.828 8.479 24.906 26.502 24.906 49.446 0 35.029-20.32 56.79-53.029 56.79h-76.846V100.809zm112.642 305.475c-10.14 4.056-22.677 4.907-31.409 4.907h-81.233V281.943h84.367c39.645 0 63.057 25.38 63.057 63.057.001 28.425-13.66 52.483-34.782 61.284z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBolt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBolt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBolt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBolt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBolt.js new file mode 100644 index 0000000000..ca654afc21 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBolt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'bolt', icon: [320, 512, [], "f0e7", "M295.973 160H180.572L215.19 30.184C219.25 14.956 207.756 0 192 0H56C43.971 0 33.8 8.905 32.211 20.828l-31.996 240C-1.704 275.217 9.504 288 24.004 288h118.701L96.646 482.466C93.05 497.649 104.659 512 119.992 512c8.35 0 16.376-4.374 20.778-11.978l175.973-303.997c9.244-15.967-2.288-36.025-20.77-36.025z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBomb.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBomb.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBomb.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBomb.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBomb.js new file mode 100644 index 0000000000..6386c15862 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBomb.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'bomb', icon: [512, 512, [], "f1e2", "M440.5 88.5l-52 52L415 167c9.4 9.4 9.4 24.6 0 33.9l-17.4 17.4c11.8 26.1 18.4 55.1 18.4 85.6 0 114.9-93.1 208-208 208S0 418.9 0 304 93.1 96 208 96c30.5 0 59.5 6.6 85.6 18.4L311 97c9.4-9.4 24.6-9.4 33.9 0l26.5 26.5 52-52 17.1 17zM500 60h-24c-6.6 0-12 5.4-12 12s5.4 12 12 12h24c6.6 0 12-5.4 12-12s-5.4-12-12-12zM440 0c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12s12-5.4 12-12V12c0-6.6-5.4-12-12-12zm33.9 55l17-17c4.7-4.7 4.7-12.3 0-17-4.7-4.7-12.3-4.7-17 0l-17 17c-4.7 4.7-4.7 12.3 0 17 4.8 4.7 12.4 4.7 17 0zm-67.8 0c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17zm67.8 34c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17zM112 272c0-35.3 28.7-64 64-64 8.8 0 16-7.2 16-16s-7.2-16-16-16c-52.9 0-96 43.1-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBook.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBook.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBook.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBook.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBook.js new file mode 100644 index 0000000000..80df6a825e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBook.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'book', icon: [448, 512, [], "f02d", "M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBookOpen.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBookOpen.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBookOpen.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBookOpen.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBookOpen.js new file mode 100644 index 0000000000..1c1204bf27 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBookOpen.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'book-open', icon: [576, 512, [], "f518", "M542.2.1c-54.8 3.1-163.7 14.4-231 55.6-4.6 2.8-7.3 7.9-7.3 13.2v363.9c0 11.5 12.6 18.8 23.3 13.5 69.2-34.8 169.2-44.3 218.7-46.9 16.9-.9 30-14.4 30-30.7v-338C576 13 560.6-1 542.2.1zM264.7 55.6C197.5 14.5 88.6 3.2 33.8.1 15.4-1 0 13 0 30.7v337.8c0 16.2 13.1 29.8 30 30.7 49.5 2.6 149.6 12.1 218.8 47 10.6 5.4 23.2-1.9 23.2-13.5V68.6c0-5.3-2.6-10.1-7.3-13z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBookmark.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBookmark.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBookmark.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBookmark.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBookmark.js new file mode 100644 index 0000000000..b37ecca715 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBookmark.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'bookmark', icon: [384, 512, [], "f02e", "M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBowlingBall.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBowlingBall.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBowlingBall.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBowlingBall.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBowlingBall.js new file mode 100644 index 0000000000..53db0df96e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBowlingBall.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'bowling-ball', icon: [496, 512, [], "f436", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM120 192c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64-96c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm48 144c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBox.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBox.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBox.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBox.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBox.js new file mode 100644 index 0000000000..a0f31175e3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBox.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'box', icon: [512, 512, [], "f466", "M509.5 184.6L458.9 32.8C452.4 13.2 434.1 0 413.4 0H272v192h238.7c-.4-2.5-.4-5-1.2-7.4zM240 0H98.6c-20.7 0-39 13.2-45.5 32.8L2.5 184.6c-.8 2.4-.8 4.9-1.2 7.4H240V0zM0 224v240c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V224H0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBoxOpen.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBoxOpen.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBoxOpen.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBoxOpen.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBoxOpen.js new file mode 100644 index 0000000000..019718b08d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBoxOpen.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'box-open', icon: [640, 512, [], "f49e", "M53.2 41L1.7 143.8c-4.6 9.2.3 20.2 10.1 23l197.9 56.5c7.1 2 14.7-1 18.5-7.3L320 64 69.8 32.1c-6.9-.8-13.5 2.7-16.6 8.9zm585.1 102.8L586.8 41c-3.1-6.2-9.8-9.8-16.7-8.9L320 64l91.7 152.1c3.8 6.3 11.4 9.3 18.5 7.3l197.9-56.5c9.9-2.9 14.7-13.9 10.2-23.1zM425.7 256c-16.9 0-32.8-9-41.4-23.4L320 126l-64.2 106.6c-8.7 14.5-24.6 23.5-41.5 23.5-4.5 0-9-.6-13.3-1.9L64 215v178c0 14.7 10 27.5 24.2 31l216.2 54.1c10.2 2.5 20.9 2.5 31 0L551.8 424c14.2-3.6 24.2-16.4 24.2-31V215l-137 39.1c-4.3 1.3-8.8 1.9-13.3 1.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBoxes.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBoxes.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBoxes.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBoxes.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBoxes.js new file mode 100644 index 0000000000..4fe7d29139 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBoxes.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'boxes', icon: [576, 512, [], "f468", "M560 288h-80v96l-32-21.3-32 21.3v-96h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16zm-384-64h224c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16h-80v96l-32-21.3L256 96V0h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16zm64 64h-80v96l-32-21.3L96 384v-96H16c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBraille.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBraille.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBraille.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBraille.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBraille.js new file mode 100644 index 0000000000..f456a311af --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBraille.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'braille', icon: [640, 512, [], "f2a1", "M128 256c0 35.346-28.654 64-64 64S0 291.346 0 256s28.654-64 64-64 64 28.654 64 64zM64 384c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352C28.654 32 0 60.654 0 96s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm224 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-320c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBriefcase.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBriefcase.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBriefcase.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBriefcase.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBriefcase.js new file mode 100644 index 0000000000..eed465b0c9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBriefcase.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'briefcase', icon: [512, 512, [], "f0b1", "M320 288h192v144c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V288h192v20c0 6.627 5.373 12 12 12h104c6.627 0 12-5.373 12-12v-20zm192-112v80H0v-80c0-26.51 21.49-48 48-48h80V80c0-26.51 21.49-48 48-48h160c26.51 0 48 21.49 48 48v48h80c26.51 0 48 21.49 48 48zM320 96H192v32h128V96z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBriefcaseMedical.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBriefcaseMedical.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBriefcaseMedical.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBriefcaseMedical.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBriefcaseMedical.js new file mode 100644 index 0000000000..7571a88ca2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBriefcaseMedical.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'briefcase-medical', icon: [512, 512, [], "f469", "M464 128h-80V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48zM192 96h128v32H192V96zm160 248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBroadcastTower.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBroadcastTower.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBroadcastTower.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBroadcastTower.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBroadcastTower.js new file mode 100644 index 0000000000..edf3e36bf8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBroadcastTower.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'broadcast-tower', icon: [640, 512, [], "f519", "M150.94 192h33.73c11.01 0 18.61-10.83 14.86-21.18-4.93-13.58-7.55-27.98-7.55-42.82s2.62-29.24 7.55-42.82C203.29 74.83 195.68 64 184.67 64h-33.73c-7.01 0-13.46 4.49-15.41 11.23C130.64 92.21 128 109.88 128 128c0 18.12 2.64 35.79 7.54 52.76 1.94 6.74 8.39 11.24 15.4 11.24zM89.92 23.34C95.56 12.72 87.97 0 75.96 0H40.63c-6.27 0-12.14 3.59-14.74 9.31C9.4 45.54 0 85.65 0 128c0 24.75 3.12 68.33 26.69 118.86 2.62 5.63 8.42 9.14 14.61 9.14h34.84c12.02 0 19.61-12.74 13.95-23.37-49.78-93.32-16.71-178.15-.17-209.29zM614.06 9.29C611.46 3.58 605.6 0 599.33 0h-35.42c-11.98 0-19.66 12.66-14.02 23.25 18.27 34.29 48.42 119.42.28 209.23-5.72 10.68 1.8 23.52 13.91 23.52h35.23c6.27 0 12.13-3.58 14.73-9.29C630.57 210.48 640 170.36 640 128s-9.42-82.48-25.94-118.71zM489.06 64h-33.73c-11.01 0-18.61 10.83-14.86 21.18 4.93 13.58 7.55 27.98 7.55 42.82s-2.62 29.24-7.55 42.82c-3.76 10.35 3.85 21.18 14.86 21.18h33.73c7.02 0 13.46-4.49 15.41-11.24 4.9-16.97 7.53-34.64 7.53-52.76 0-18.12-2.64-35.79-7.54-52.76-1.94-6.75-8.39-11.24-15.4-11.24zm-116.3 100.12c7.05-10.29 11.2-22.71 11.2-36.12 0-35.35-28.63-64-63.96-64-35.32 0-63.96 28.65-63.96 64 0 13.41 4.15 25.83 11.2 36.12l-130.5 313.41c-3.4 8.15.46 17.52 8.61 20.92l29.51 12.31c8.15 3.4 17.52-.46 20.91-8.61L244.96 384h150.07l49.2 118.15c3.4 8.16 12.76 12.01 20.91 8.61l29.51-12.31c8.15-3.4 12-12.77 8.61-20.92l-130.5-313.41zM271.62 320L320 203.81 368.38 320h-96.76z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBroom.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBroom.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBroom.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBroom.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBroom.js new file mode 100644 index 0000000000..1ff6743707 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBroom.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'broom', icon: [512, 512, [], "f51a", "M10.8 247.2C-.7 251.8-3.7 266.7 5 275.4l54.8 54.8 73.2-24.4-24.4 73.2 128 128c8.8 8.8 23.6 5.7 28.2-5.8l98.1-243.7-108.4-108.4-243.7 98.1zM507.3 27.3L484.7 4.7c-6.2-6.3-16.4-6.3-22.6 0L359.8 106.9l-40.4-40.4c-4.2-4.3-11.4-3-13.9 2.5l-27.2 58.6 106.1 106.1 58.6-27.2c5.4-2.5 6.7-9.7 2.5-13.9l-40.4-40.4L507.3 49.9c6.3-6.2 6.3-16.3 0-22.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBug.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBug.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBug.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBug.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBug.js new file mode 100644 index 0000000000..cca5b4370d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBug.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'bug', icon: [512, 512, [], "f188", "M511.988 288.9c-.478 17.43-15.217 31.1-32.653 31.1H424v16c0 21.864-4.882 42.584-13.6 61.145l60.228 60.228c12.496 12.497 12.496 32.758 0 45.255-12.498 12.497-32.759 12.496-45.256 0l-54.736-54.736C345.886 467.965 314.351 480 280 480V236c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v244c-34.351 0-65.886-12.035-90.636-32.108l-54.736 54.736c-12.498 12.497-32.759 12.496-45.256 0-12.496-12.497-12.496-32.758 0-45.255l60.228-60.228C92.882 378.584 88 357.864 88 336v-16H32.666C15.23 320 .491 306.33.013 288.9-.484 270.816 14.028 256 32 256h56v-58.745l-46.628-46.628c-12.496-12.497-12.496-32.758 0-45.255 12.498-12.497 32.758-12.497 45.256 0L141.255 160h229.489l54.627-54.627c12.498-12.497 32.758-12.497 45.256 0 12.496 12.497 12.496 32.758 0 45.255L424 197.255V256h56c17.972 0 32.484 14.816 31.988 32.9zM257 0c-61.856 0-112 50.144-112 112h224C369 50.144 318.856 0 257 0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBuilding.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBuilding.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBuilding.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBuilding.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBuilding.js new file mode 100644 index 0000000000..3dca2e0561 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBuilding.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'building', icon: [448, 512, [], "f1ad", "M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBullhorn.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBullhorn.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBullhorn.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBullhorn.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBullhorn.js new file mode 100644 index 0000000000..8836f2afdf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBullhorn.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'bullhorn', icon: [576, 512, [], "f0a1", "M576 224c0-20.896-13.36-38.666-32-45.258V64c0-35.346-28.654-64-64-64-64.985 56-142.031 128-272 128H48c-26.51 0-48 21.49-48 48v96c0 26.51 21.49 48 48 48h43.263c-18.742 64.65 2.479 116.379 18.814 167.44 1.702 5.32 5.203 9.893 9.922 12.88 20.78 13.155 68.355 15.657 93.773 5.151 16.046-6.633 19.96-27.423 7.522-39.537-18.508-18.026-30.136-36.91-19.795-60.858a12.278 12.278 0 0 0-1.045-11.673c-16.309-24.679-3.581-62.107 28.517-72.752C346.403 327.887 418.591 395.081 480 448c35.346 0 64-28.654 64-64V269.258c18.64-6.592 32-24.362 32-45.258zm-96 139.855c-54.609-44.979-125.033-92.94-224-104.982v-69.747c98.967-12.042 169.391-60.002 224-104.982v279.711z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBullseye.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBullseye.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBullseye.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBullseye.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBullseye.js new file mode 100644 index 0000000000..d904ed57b9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBullseye.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'bullseye', icon: [512, 512, [], "f140", "M256 72c101.689 0 184 82.295 184 184 0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-101.689 82.295-184 184-184m0-64C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 184c35.29 0 64 28.71 64 64s-28.71 64-64 64-64-28.71-64-64 28.71-64 64-64m0-64c-70.692 0-128 57.308-128 128s57.308 128 128 128 128-57.308 128-128-57.308-128-128-128z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBurn.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBurn.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBurn.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBurn.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBurn.js new file mode 100644 index 0000000000..e4559334fb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBurn.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'burn', icon: [384, 512, [], "f46a", "M192 0C79.7 101.3 0 220.9 0 300.5 0 425 79 512 192 512s192-87 192-211.5c0-79.9-80.2-199.6-192-300.5zm0 448c-56.5 0-96-39-96-94.8 0-13.5 4.6-61.5 96-161.2 91.4 99.7 96 147.7 96 161.2 0 55.8-39.5 94.8-96 94.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBus.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBus.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBus.js new file mode 100644 index 0000000000..f9f586dc72 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faBus.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'bus', icon: [512, 512, [], "f207", "M512 152v80c0 13.255-10.745 24-24 24h-8v168c0 13.255-10.745 24-24 24h-8v40c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24v-40H160v40c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24v-40h-8c-13.255 0-24-10.745-24-24V256h-8c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h8V80C32 35.817 132.288 0 256 0s224 35.817 224 80v48h8c13.255 0 24 10.745 24 24zM112 320c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288 0c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm32-56V120c0-13.255-10.745-24-24-24H104c-13.255 0-24 10.745-24 24v144c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalculator.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalculator.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalculator.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalculator.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalculator.js new file mode 100644 index 0000000000..25db31e733 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalculator.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'calculator', icon: [448, 512, [], "f1ec", "M0 464V48C0 21.49 21.49 0 48 0h352c26.51 0 48 21.49 48 48v416c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm384-284V76c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v104c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12zM128 308v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm256 128V268c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-256 0v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm128-128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm0 128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendar.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendar.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendar.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendar.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendar.js new file mode 100644 index 0000000000..a325d94377 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendar.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'calendar', icon: [448, 512, [], "f133", "M12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm436-44v-36c0-26.5-21.5-48-48-48h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v36c0 6.6 5.4 12 12 12h424c6.6 0 12-5.4 12-12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarAlt.js new file mode 100644 index 0000000000..739d246137 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'calendar-alt', icon: [448, 512, [], "f073", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm116 204c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarCheck.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarCheck.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarCheck.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarCheck.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarCheck.js new file mode 100644 index 0000000000..0e0b5c7fe1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarCheck.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'calendar-check', icon: [448, 512, [], "f274", "M436 160H12c-6.627 0-12-5.373-12-12v-36c0-26.51 21.49-48 48-48h48V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h128V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h48c26.51 0 48 21.49 48 48v36c0 6.627-5.373 12-12 12zM12 192h424c6.627 0 12 5.373 12 12v260c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V204c0-6.627 5.373-12 12-12zm333.296 95.947l-28.169-28.398c-4.667-4.705-12.265-4.736-16.97-.068L194.12 364.665l-45.98-46.352c-4.667-4.705-12.266-4.736-16.971-.068l-28.397 28.17c-4.705 4.667-4.736 12.265-.068 16.97l82.601 83.269c4.667 4.705 12.265 4.736 16.97.068l142.953-141.805c4.705-4.667 4.736-12.265.068-16.97z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarMinus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarMinus.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarMinus.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarMinus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarMinus.js new file mode 100644 index 0000000000..3474901ab7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarMinus.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'calendar-minus', icon: [448, 512, [], "f272", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm304 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H132c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h184z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarPlus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarPlus.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarPlus.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarPlus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarPlus.js new file mode 100644 index 0000000000..b9a3f36c3b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarPlus.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'calendar-plus', icon: [448, 512, [], "f271", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm316 140c0-6.6-5.4-12-12-12h-60v-60c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v60h-60c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h60v60c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-60h60c6.6 0 12-5.4 12-12v-40z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarTimes.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarTimes.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarTimes.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarTimes.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarTimes.js new file mode 100644 index 0000000000..6afb4320fd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCalendarTimes.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'calendar-times', icon: [448, 512, [], "f273", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm257.3 160l48.1-48.1c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0L224 306.7l-48.1-48.1c-4.7-4.7-12.3-4.7-17 0l-28.3 28.3c-4.7 4.7-4.7 12.3 0 17l48.1 48.1-48.1 48.1c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l48.1-48.1 48.1 48.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L269.3 352z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCamera.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCamera.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCamera.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCamera.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCamera.js new file mode 100644 index 0000000000..04c01b168e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCamera.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'camera', icon: [512, 512, [], "f030", "M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCameraRetro.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCameraRetro.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCameraRetro.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCameraRetro.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCameraRetro.js new file mode 100644 index 0000000000..867c2c0a7e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCameraRetro.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'camera-retro', icon: [512, 512, [], "f083", "M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm0 32h106c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H38c-3.3 0-6-2.7-6-6V80c0-8.8 7.2-16 16-16zm426 96H38c-3.3 0-6-2.7-6-6v-36c0-3.3 2.7-6 6-6h138l30.2-45.3c1.1-1.7 3-2.7 5-2.7H464c8.8 0 16 7.2 16 16v74c0 3.3-2.7 6-6 6zM256 424c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88zm-48 104c-8.8 0-16-7.2-16-16 0-35.3 28.7-64 64-64 8.8 0 16 7.2 16 16s-7.2 16-16 16c-17.6 0-32 14.4-32 32 0 8.8-7.2 16-16 16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCapsules.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCapsules.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCapsules.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCapsules.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCapsules.js new file mode 100644 index 0000000000..8ba1911074 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCapsules.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'capsules', icon: [576, 512, [], "f46b", "M555.3 300.1L424.2 112.8C401.9 81 366.4 64 330.4 64c-22.6 0-45.5 6.7-65.5 20.7-19.7 13.8-33.7 32.8-41.5 53.8C220.5 79.2 172 32 112 32 50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V218.9c3.3 8.6 7.3 17.1 12.8 25L368 431.2c22.2 31.8 57.7 48.8 93.8 48.8 22.7 0 45.5-6.7 65.5-20.7 51.7-36.2 64.2-107.5 28-159.2zM160 256H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm194.8 44.9l-65.6-93.7c-7.7-11-10.7-24.4-8.3-37.6 2.3-13.2 9.7-24.8 20.7-32.5 8.5-6 18.5-9.1 28.8-9.1 16.5 0 31.9 8 41.3 21.5l65.6 93.7-82.5 57.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCar.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCar.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCar.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCar.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCar.js new file mode 100644 index 0000000000..ffb2cb0208 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCar.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'car', icon: [512, 512, [], "f1b9", "M499.991 168h-54.815l-7.854-20.944c-9.192-24.513-25.425-45.351-46.942-60.263S343.651 64 317.472 64H194.528c-26.18 0-51.391 7.882-72.908 22.793-21.518 14.912-37.75 35.75-46.942 60.263L66.824 168H12.009c-8.191 0-13.974 8.024-11.384 15.795l8 24A12 12 0 0 0 20.009 216h28.815l-.052.14C29.222 227.093 16 247.997 16 272v48c0 16.225 6.049 31.029 16 42.309V424c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-40h256v40c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-61.691c9.951-11.281 16-26.085 16-42.309v-48c0-24.003-13.222-44.907-32.772-55.86l-.052-.14h28.815a12 12 0 0 0 11.384-8.205l8-24c2.59-7.771-3.193-15.795-11.384-15.795zm-365.388 1.528C143.918 144.689 168 128 194.528 128h122.944c26.528 0 50.61 16.689 59.925 41.528L391.824 208H120.176l14.427-38.472zM88 328c-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32s48 30.327 48 48-30.327 16-48 16zm336 0c-17.673 0-48 1.673-48-16 0-17.673 30.327-48 48-48s32 14.327 32 32c0 17.673-14.327 32-32 32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretDown.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretDown.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretDown.js new file mode 100644 index 0000000000..b40c1ced8b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretDown.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'caret-down', icon: [320, 512, [], "f0d7", "M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretLeft.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretLeft.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretLeft.js new file mode 100644 index 0000000000..6132a312e7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretLeft.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'caret-left', icon: [192, 512, [], "f0d9", "M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretRight.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretRight.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretRight.js new file mode 100644 index 0000000000..1ffe0149ba --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretRight.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'caret-right', icon: [192, 512, [], "f0da", "M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareDown.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareDown.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareDown.js new file mode 100644 index 0000000000..6b93f0401a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareDown.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'caret-square-down', icon: [448, 512, [], "f150", "M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM92.5 220.5l123 123c4.7 4.7 12.3 4.7 17 0l123-123c7.6-7.6 2.2-20.5-8.5-20.5H101c-10.7 0-16.1 12.9-8.5 20.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareLeft.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareLeft.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareLeft.js new file mode 100644 index 0000000000..c4392b1bd1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareLeft.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'caret-square-left', icon: [448, 512, [], "f191", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM259.515 124.485l-123.03 123.03c-4.686 4.686-4.686 12.284 0 16.971l123.029 123.029c7.56 7.56 20.485 2.206 20.485-8.485V132.971c.001-10.691-12.925-16.045-20.484-8.486z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareRight.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareRight.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareRight.js new file mode 100644 index 0000000000..42a1cb556c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareRight.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'caret-square-right', icon: [448, 512, [], "f152", "M48 32h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48zm140.485 355.515l123.029-123.029c4.686-4.686 4.686-12.284 0-16.971l-123.029-123.03c-7.56-7.56-20.485-2.206-20.485 8.485v246.059c0 10.691 12.926 16.045 20.485 8.486z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareUp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareUp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareUp.js new file mode 100644 index 0000000000..687d2214fd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretSquareUp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'caret-square-up', icon: [448, 512, [], "f151", "M0 432V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm355.515-140.485l-123.03-123.03c-4.686-4.686-12.284-4.686-16.971 0L92.485 291.515c-7.56 7.56-2.206 20.485 8.485 20.485h246.059c10.691 0 16.045-12.926 8.486-20.485z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretUp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretUp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretUp.js new file mode 100644 index 0000000000..bfda4b46e1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCaretUp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'caret-up', icon: [320, 512, [], "f0d8", "M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCartArrowDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCartArrowDown.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCartArrowDown.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCartArrowDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCartArrowDown.js new file mode 100644 index 0000000000..a36ad30930 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCartArrowDown.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'cart-arrow-down', icon: [576, 512, [], "f218", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCartPlus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCartPlus.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCartPlus.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCartPlus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCartPlus.js new file mode 100644 index 0000000000..e6346ceee8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCartPlus.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'cart-plus', icon: [576, 512, [], "f217", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM408 168h-48v-40c0-8.837-7.163-16-16-16h-16c-8.837 0-16 7.163-16 16v40h-48c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h48v40c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-40h48c8.837 0 16-7.163 16-16v-16c0-8.837-7.163-16-16-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCertificate.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCertificate.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCertificate.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCertificate.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCertificate.js new file mode 100644 index 0000000000..a7b398c875 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCertificate.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'certificate', icon: [512, 512, [], "f0a3", "M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChalkboard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChalkboard.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChalkboard.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChalkboard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChalkboard.js new file mode 100644 index 0000000000..b207a8f1f7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChalkboard.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'chalkboard', icon: [640, 512, [], "f51b", "M96 64h448v352h64V40c0-22.06-17.94-40-40-40H72C49.94 0 32 17.94 32 40v376h64V64zm528 384H480v-64H288v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChalkboardTeacher.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChalkboardTeacher.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChalkboardTeacher.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChalkboardTeacher.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChalkboardTeacher.js new file mode 100644 index 0000000000..45785cb719 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChalkboardTeacher.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'chalkboard-teacher', icon: [640, 512, [], "f51c", "M208 352c-2.39 0-4.78.35-7.06 1.09C187.98 357.3 174.35 360 160 360c-14.35 0-27.98-2.7-40.95-6.91-2.28-.74-4.66-1.09-7.05-1.09C49.94 352-.33 402.48 0 464.62.14 490.88 21.73 512 48 512h224c26.27 0 47.86-21.12 48-47.38.33-62.14-49.94-112.62-112-112.62zm-48-32c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM592 0H208c-26.47 0-48 22.25-48 49.59V96c23.42 0 45.1 6.78 64 17.8V64h352v288h-64v-64H384v64h-76.24c19.1 16.69 33.12 38.73 39.69 64H592c26.47 0 48-22.25 48-49.59V49.59C640 22.25 618.47 0 592 0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartArea.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartArea.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartArea.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartArea.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartArea.js new file mode 100644 index 0000000000..cc85c00cdc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartArea.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'chart-area', icon: [512, 512, [], "f1fe", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartBar.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartBar.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartBar.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartBar.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartBar.js new file mode 100644 index 0000000000..e20b84c88d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartBar.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'chart-bar', icon: [512, 512, [], "f080", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zm-308-44v-72c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V204c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V108c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartLine.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartLine.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartLine.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartLine.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartLine.js new file mode 100644 index 0000000000..104ff54b94 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartLine.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'chart-line', icon: [512, 512, [], "f201", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM456 96H344c-21.4 0-32.1 25.9-17 41l32.9 32.9-72 72.9-55.6-55.6c-4.7-4.7-12.2-4.7-16.9 0L96.4 305c-4.7 4.6-4.8 12.2-.2 16.9l28.5 29.4c4.7 4.8 12.4 4.9 17.1.1l82.1-82.1 55.5 55.5c4.7 4.7 12.3 4.7 17 0l109.2-109.2L439 249c15.1 15.1 41 4.4 41-17V120c0-13.3-10.7-24-24-24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartPie.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartPie.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartPie.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartPie.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartPie.js new file mode 100644 index 0000000000..73e2a0ddd2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChartPie.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'chart-pie', icon: [576, 512, [], "f200", "M288 12.3V240h227.7c6.9 0 12.3-5.8 12-12.7-6.4-122.4-104.5-220.6-227-227-6.9-.3-12.7 5.1-12.7 12zM552.7 288c6.9 0 12.3 5.8 12 12.7-2.8 53.2-23.2 105.6-61.2 147.8-4.6 5.1-12.6 5.4-17.5.5L325 288h227.7zM401 433c4.8 4.8 4.7 12.8-.4 17.3-42.6 38.4-99 61.7-160.8 61.7C107.6 511.9-.2 403.8 0 271.5.2 143.4 100.8 38.9 227.3 32.3c6.9-.4 12.7 5.1 12.7 12V272l161 161z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCheck.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCheck.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCheck.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCheck.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCheck.js new file mode 100644 index 0000000000..3aa3e7abe8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCheck.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'check', icon: [512, 512, [], "f00c", "M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCheckCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCheckCircle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCheckCircle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCheckCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCheckCircle.js new file mode 100644 index 0000000000..56c49fb264 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCheckCircle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'check-circle', icon: [512, 512, [], "f058", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCheckSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCheckSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCheckSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCheckSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCheckSquare.js new file mode 100644 index 0000000000..71be8a698f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCheckSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'check-square', icon: [448, 512, [], "f14a", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChess.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChess.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChess.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChess.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChess.js new file mode 100644 index 0000000000..c80b7818cb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChess.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'chess', icon: [512, 512, [], "f439", "M199.821 217.633a6 6 0 0 1 6 6l-.001 20.766a6 6 0 0 1-6 6h-25.805c0 31.715-2.153 96.201 17.398 153.229H64.597C84.54 345.452 82.02 279.245 82.02 250.399H56.183a6 6 0 0 1-6-6l.002-20.766a6 6 0 0 1 6-6h143.636zM41.554 115.088l34.58 95.071h103.734l34.572-95.072c2.846-7.826-2.95-16.101-11.278-16.101H152v-30.22h21.57a6 6 0 0 0 6-6V40.383a6 6 0 0 0-6-6h-28.367V6a6 6 0 0 0-6-6H116.82a6 6 0 0 0-6 6v28.383H82.421a6 6 0 0 0-6 6v22.383a6 6 0 0 0 6 6H104v30.219H52.831c-8.328.001-14.124 8.276-11.277 16.103zM222.678 445.17v-28.067a6 6 0 0 0-6-6H39.322a6 6 0 0 0-6 6v28.067l-22.148 14.164a6 6 0 0 0-2.767 5.055V506a6 6 0 0 0 6 6h227.187a6 6 0 0 0 6-6v-41.612a6 6 0 0 0-2.767-5.055l-22.149-14.163zm90.578-144.225l24.88 16.963c.09 18.124-.167 63.904-11.905 114.522h147.526c-11.713-50.475-11.969-96.324-11.882-114.537l24.859-16.949a3.856 3.856 0 0 0 1.684-3.187v-69.901a3.857 3.857 0 0 0-3.857-3.857h-27.655a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.858-3.857h-52.918a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.857-3.857H315.43a3.857 3.857 0 0 0-3.857 3.857v69.901a3.855 3.855 0 0 0 1.683 3.188zm71.585 51.906c0-8.372 6.787-15.158 15.159-15.158s15.158 6.787 15.158 15.158v30.318h-30.317v-30.318zM504.62 470.059l-13.664-10.639v-15.552a3.857 3.857 0 0 0-3.857-3.857H312.915a3.857 3.857 0 0 0-3.857 3.857v15.552l-13.677 10.639a3.857 3.857 0 0 0-1.488 3.044v35.039a3.857 3.857 0 0 0 3.857 3.857h204.5a3.857 3.857 0 0 0 3.857-3.857v-35.04a3.859 3.859 0 0 0-1.487-3.043z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessBishop.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessBishop.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessBishop.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessBishop.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessBishop.js new file mode 100644 index 0000000000..f33710b78d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessBishop.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'chess-bishop', icon: [320, 512, [], "f43a", "M123.158 77.881C107.369 72.53 96 57.597 96 40c0-22.091 17.909-40 40-40h47.796c22.091 0 40 17.909 40 40 0 17.541-11.295 32.434-27.005 37.829 23.993 16.657 48.577 46.839 68.703 82.05L144.929 280.443a6 6 0 0 0 0 8.485l14.142 14.142a6 6 0 0 0 8.485 0L280.9 189.726c17.758 38.297 29.371 79.443 29.371 114.273 0 53.786-22.897 75.788-58.446 86.033V448H68.174v-57.97C32.631 379.784 9.739 357.781 9.739 304c0-78.029 58.281-187.766 113.419-226.119zM320 500v-24c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessBoard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessBoard.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessBoard.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessBoard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessBoard.js new file mode 100644 index 0000000000..31c8249187 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessBoard.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'chess-board', icon: [512, 512, [], "f43c", "M256 256v64h-64v-64h64zm0-256h-64v64h64V0zm0 256h64v-64h-64v64zM384 0h-64v64h64V0zm0 512h64v-64h-64v64zm128-64v-64h-64v64h64zm-384 64h64v-64h-64v64zm0-512H64v64h64V0zm384 192v-64h-64v64h64zm0 128v-64h-64v64h64zM0 512h64v-64H0v64zM0 64v64h64V64H0zm0 128v64h64v-64H0zm0 128v64h64v-64H0zm256 192h64v-64h-64v64zm-64-128v64h64v-64h-64zm64-192v-64h-64v64h64zM64 384v64h64v-64H64zm64-128H64v64h64v-64zm256 128h64v-64h-64v64zM512 0h-64v64h64V0zM384 256h64v-64h-64v64zm0-192v64h64V64h-64zm-64 320v64h64v-64h-64zm-192-64v64h64v-64h-64zm128 0v64h64v-64h-64zm-64-128h-64v64h64v-64zm-64-64H64v64h64v-64zm192 192h64v-64h-64v64zM192 128V64h-64v64h64zm128 0V64h-64v64h64zm0 64h64v-64h-64v64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessKing.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessKing.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessKing.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessKing.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessKing.js new file mode 100644 index 0000000000..d1f2e32b64 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessKing.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'chess-king', icon: [448, 512, [], "f43f", "M416 476v24c0 6.627-5.373 12-12 12H44c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12zm-8.033-324H248v-48h50a6 6 0 0 0 6-6V62a6 6 0 0 0-6-6h-50V6a6 6 0 0 0-6-6h-36a6 6 0 0 0-6 6v50h-50a6 6 0 0 0-6 6v36a6 6 0 0 0 6 6h50v48H40.033c-27.574 0-46.879 27.244-37.738 53.259L87.582 448h272.836l85.287-242.741C454.846 179.244 435.541 152 407.967 152z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessKnight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessKnight.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessKnight.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessKnight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessKnight.js new file mode 100644 index 0000000000..6576bf6b93 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessKnight.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'chess-knight', icon: [384, 512, [], "f441", "M352 224v224H32v-46.557c0-30.302 17.12-58.003 44.223-71.554l57.243-28.622A48 48 0 0 0 160 258.334V208l-22.127 11.063a23.996 23.996 0 0 0-12.55 15.645l-11.835 47.338a12 12 0 0 1-7.185 8.231l-29.601 11.84a11.998 11.998 0 0 1-9.33-.176L7.126 275.167A12 12 0 0 1 0 264.201v-158.26c0-6.365 2.529-12.47 7.03-16.971L16 80 1.789 51.578A16.937 16.937 0 0 1 0 44c0-6.627 5.373-12 12-12h148c106.039 0 192 85.961 192 192zm20 240H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12zM52 128c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessPawn.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessPawn.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessPawn.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessPawn.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessPawn.js new file mode 100644 index 0000000000..c019664dbe --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessPawn.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'chess-pawn', icon: [320, 512, [], "f443", "M264 448H56s60-42.743 60-176H84c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h40.209C95.721 210.56 76 181.588 76 148c0-46.392 37.608-84 84-84s84 37.608 84 84c0 33.588-19.721 62.56-48.209 76H236c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12h-32c0 133.257 60 176 60 176zm28 16H28c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h264c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessQueen.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessQueen.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessQueen.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessQueen.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessQueen.js new file mode 100644 index 0000000000..f2a4284574 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessQueen.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'chess-queen', icon: [512, 512, [], "f445", "M436 512H76c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12zM255.579 0c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zm204.568 154.634c-5.768-3.045-12.916-.932-16.082 4.77-8.616 15.516-22.747 37.801-44.065 37.801-28.714 0-30.625-19.804-31.686-57.542-.183-6.492-5.501-11.664-11.995-11.664h-41.006c-5.175 0-9.754 3.328-11.388 8.238-8.89 26.709-26.073 40.992-47.925 40.992s-39.034-14.283-47.925-40.992c-1.634-4.91-6.213-8.238-11.388-8.238h-41.005c-6.495 0-11.813 5.174-11.995 11.667-1.052 37.642-2.934 57.539-31.688 57.539-20.691 0-33.817-20.224-44.425-38.025-3.266-5.48-10.258-7.431-15.899-4.453l-39.179 20.679a12 12 0 0 0-5.51 15.145L112 448h288l105.014-257.448a12 12 0 0 0-5.51-15.145l-39.357-20.773z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessRook.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessRook.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessRook.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessRook.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessRook.js new file mode 100644 index 0000000000..639e55af86 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChessRook.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'chess-rook', icon: [384, 512, [], "f447", "M81.241 215.027C80.957 258.92 77.411 348.076 48 448h287.982c-29.4-99.604-32.936-188.912-33.221-232.975l45.418-42.312a11.998 11.998 0 0 0 3.82-8.78V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v44h-48V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v44H96V44c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v119.932c0 3.33 1.384 6.51 3.82 8.78l45.421 42.315zM160 256c0-17.673 14.327-32 32-32 17.673 0 32 14.327 32 32v64.004h-64V256zm224 220v24c0 6.627-5.373 12-12 12H12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleDown.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleDown.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleDown.js new file mode 100644 index 0000000000..d050959a80 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleDown.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'chevron-circle-down', icon: [512, 512, [], "f13a", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM273 369.9l135.5-135.5c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L256 285.1 154.4 183.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L239 369.9c9.4 9.4 24.6 9.4 34 0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleLeft.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleLeft.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleLeft.js new file mode 100644 index 0000000000..a9bd1bbc52 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleLeft.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'chevron-circle-left', icon: [512, 512, [], "f137", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleRight.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleRight.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleRight.js new file mode 100644 index 0000000000..227ac1c1c1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleRight.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'chevron-circle-right', icon: [512, 512, [], "f138", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleUp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleUp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleUp.js new file mode 100644 index 0000000000..b78c00a312 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronCircleUp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'chevron-circle-up', icon: [512, 512, [], "f139", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm231-113.9L103.5 277.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L256 226.9l101.6 101.6c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L273 142.1c-9.4-9.4-24.6-9.4-34 0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronDown.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronDown.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronDown.js new file mode 100644 index 0000000000..4a528bd6d6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronDown.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'chevron-down', icon: [448, 512, [], "f078", "M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronLeft.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronLeft.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronLeft.js new file mode 100644 index 0000000000..45e5ee10d9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronLeft.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'chevron-left', icon: [320, 512, [], "f053", "M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronRight.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronRight.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronRight.js new file mode 100644 index 0000000000..9f43676422 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronRight.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'chevron-right', icon: [320, 512, [], "f054", "M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronUp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronUp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronUp.js new file mode 100644 index 0000000000..5796d66650 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChevronUp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'chevron-up', icon: [448, 512, [], "f077", "M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChild.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChild.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChild.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChild.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChild.js new file mode 100644 index 0000000000..bfb176acf1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChild.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'child', icon: [384, 512, [], "f1ae", "M120 72c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.764-32.235 72-72 72s-72-32.236-72-72zm254.627 1.373c-12.496-12.497-32.758-12.497-45.254 0L242.745 160H141.254L54.627 73.373c-12.496-12.497-32.758-12.497-45.254 0-12.497 12.497-12.497 32.758 0 45.255L104 213.254V480c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V368h16v112c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V213.254l94.627-94.627c12.497-12.497 12.497-32.757 0-45.254z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChurch.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChurch.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChurch.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChurch.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChurch.js new file mode 100644 index 0000000000..875a7ef12a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faChurch.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'church', icon: [640, 512, [], "f51d", "M464.46 246.68L352 179.2V128h48c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-48V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v48h-48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v51.2l-112.46 67.48A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.65-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.54A32.024 32.024 0 0 0 0 395.96zm620.61-29.42L512 320v192h112c8.84 0 16-7.16 16-16V395.96c0-12.8-7.63-24.37-19.39-29.42z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCircle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCircle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCircle.js new file mode 100644 index 0000000000..a683d0aac7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCircle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'circle', icon: [512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCircleNotch.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCircleNotch.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCircleNotch.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCircleNotch.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCircleNotch.js new file mode 100644 index 0000000000..dabfd2cbf0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCircleNotch.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'circle-notch', icon: [512, 512, [], "f1ce", "M288 39.056v16.659c0 10.804 7.281 20.159 17.686 23.066C383.204 100.434 440 171.518 440 256c0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-84.47 56.786-155.564 134.312-177.219C216.719 75.874 224 66.517 224 55.712V39.064c0-15.709-14.834-27.153-30.046-23.234C86.603 43.482 7.394 141.206 8.003 257.332c.72 137.052 111.477 246.956 248.531 246.667C393.255 503.711 504 392.788 504 256c0-115.633-79.14-212.779-186.211-240.236C302.678 11.889 288 23.456 288 39.056z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClipboard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClipboard.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClipboard.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClipboard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClipboard.js new file mode 100644 index 0000000000..e3149cd80d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClipboard.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'clipboard', icon: [384, 512, [], "f328", "M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClipboardCheck.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClipboardCheck.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClipboardCheck.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClipboardCheck.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClipboardCheck.js new file mode 100644 index 0000000000..70942a630a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClipboardCheck.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'clipboard-check', icon: [384, 512, [], "f46c", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm121.2 231.8l-143 141.8c-4.7 4.7-12.3 4.6-17-.1l-82.6-83.3c-4.7-4.7-4.6-12.3.1-17L99.1 285c4.7-4.7 12.3-4.6 17 .1l46 46.4 106-105.2c4.7-4.7 12.3-4.6 17 .1l28.2 28.4c4.7 4.8 4.6 12.3-.1 17z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClipboardList.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClipboardList.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClipboardList.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClipboardList.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClipboardList.js new file mode 100644 index 0000000000..6f44eb1ec5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClipboardList.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'clipboard-list', icon: [384, 512, [], "f46d", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM96 424c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm96-192c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm128 368c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClock.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClock.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClock.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClock.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClock.js new file mode 100644 index 0000000000..70b5a561fa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClock.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'clock', icon: [512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm57.1 350.1L224.9 294c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v137.7l63.5 46.2c5.4 3.9 6.5 11.4 2.6 16.8l-28.2 38.8c-3.9 5.3-11.4 6.5-16.8 2.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClone.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClone.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClone.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClone.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClone.js new file mode 100644 index 0000000000..8aa8d724e2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClone.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'clone', icon: [512, 512, [], "f24d", "M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClosedCaptioning.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClosedCaptioning.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClosedCaptioning.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClosedCaptioning.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClosedCaptioning.js new file mode 100644 index 0000000000..a1d106addd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faClosedCaptioning.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'closed-captioning', icon: [512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM218.1 287.7c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2.1 48 51.1 70.5 92.3 32.6zm190.4 0c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.5 56.9-172.7 32.1-172.7-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 222.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCloud.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCloud.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCloud.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCloud.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCloud.js new file mode 100644 index 0000000000..08fe1b2a22 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCloud.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'cloud', icon: [640, 512, [], "f0c2", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCloudDownloadAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCloudDownloadAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCloudDownloadAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCloudDownloadAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCloudDownloadAlt.js new file mode 100644 index 0000000000..d608ddb8d1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCloudDownloadAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'cloud-download-alt', icon: [640, 512, [], "f381", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCloudUploadAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCloudUploadAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCloudUploadAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCloudUploadAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCloudUploadAlt.js new file mode 100644 index 0000000000..e2552c9484 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCloudUploadAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'cloud-upload-alt', icon: [640, 512, [], "f382", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCode.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCode.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCode.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCode.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCode.js new file mode 100644 index 0000000000..d3ffc1f6d4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCode.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'code', icon: [640, 512, [], "f121", "M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCodeBranch.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCodeBranch.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCodeBranch.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCodeBranch.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCodeBranch.js new file mode 100644 index 0000000000..74e9ef4732 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCodeBranch.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'code-branch', icon: [384, 512, [], "f126", "M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCoffee.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCoffee.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCoffee.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCoffee.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCoffee.js new file mode 100644 index 0000000000..15a56e16cf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCoffee.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'coffee', icon: [640, 512, [], "f0f4", "M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCog.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCog.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCog.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCog.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCog.js new file mode 100644 index 0000000000..5c10a48d7a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCog.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'cog', icon: [512, 512, [], "f013", "M444.788 291.1l42.616 24.599c4.867 2.809 7.126 8.618 5.459 13.985-11.07 35.642-29.97 67.842-54.689 94.586a12.016 12.016 0 0 1-14.832 2.254l-42.584-24.595a191.577 191.577 0 0 1-60.759 35.13v49.182a12.01 12.01 0 0 1-9.377 11.718c-34.956 7.85-72.499 8.256-109.219.007-5.49-1.233-9.403-6.096-9.403-11.723v-49.184a191.555 191.555 0 0 1-60.759-35.13l-42.584 24.595a12.016 12.016 0 0 1-14.832-2.254c-24.718-26.744-43.619-58.944-54.689-94.586-1.667-5.366.592-11.175 5.459-13.985L67.212 291.1a193.48 193.48 0 0 1 0-70.199l-42.616-24.599c-4.867-2.809-7.126-8.618-5.459-13.985 11.07-35.642 29.97-67.842 54.689-94.586a12.016 12.016 0 0 1 14.832-2.254l42.584 24.595a191.577 191.577 0 0 1 60.759-35.13V25.759a12.01 12.01 0 0 1 9.377-11.718c34.956-7.85 72.499-8.256 109.219-.007 5.49 1.233 9.403 6.096 9.403 11.723v49.184a191.555 191.555 0 0 1 60.759 35.13l42.584-24.595a12.016 12.016 0 0 1 14.832 2.254c24.718 26.744 43.619 58.944 54.689 94.586 1.667 5.366-.592 11.175-5.459 13.985L444.788 220.9a193.485 193.485 0 0 1 0 70.2zM336 256c0-44.112-35.888-80-80-80s-80 35.888-80 80 35.888 80 80 80 80-35.888 80-80z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCogs.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCogs.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCogs.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCogs.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCogs.js new file mode 100644 index 0000000000..6f906983e2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCogs.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'cogs', icon: [640, 512, [], "f085", "M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCoins.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCoins.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCoins.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCoins.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCoins.js new file mode 100644 index 0000000000..e76cb021d2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCoins.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'coins', icon: [512, 512, [], "f51e", "M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faColumns.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faColumns.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faColumns.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faColumns.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faColumns.js new file mode 100644 index 0000000000..b487618f31 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faColumns.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'columns', icon: [512, 512, [], "f0db", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faComment.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faComment.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faComment.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faComment.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faComment.js new file mode 100644 index 0000000000..dcf0c2bfc6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faComment.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'comment', icon: [512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCommentAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCommentAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCommentAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCommentAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCommentAlt.js new file mode 100644 index 0000000000..b719d02a3f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCommentAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'comment-alt', icon: [512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 9.8 11.2 15.5 19.1 9.7L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCommentDots.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCommentDots.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCommentDots.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCommentDots.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCommentDots.js new file mode 100644 index 0000000000..aa98615a9c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCommentDots.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'comment-dots', icon: [512, 512, [], "f4ad", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCommentSlash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCommentSlash.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCommentSlash.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCommentSlash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCommentSlash.js new file mode 100644 index 0000000000..8b63f6c7db --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCommentSlash.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'comment-slash', icon: [640, 512, [], "f4b3", "M64 240c0 49.6 21.4 95 57 130.7-12.6 50.3-54.3 95.2-54.8 95.8-2.2 2.3-2.8 5.7-1.5 8.7 1.3 2.9 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 27.4 0 53.7-3.6 78.4-10L72.9 186.4c-5.6 17.1-8.9 35-8.9 53.6zm569.8 218.1l-114.4-88.4C554.6 334.1 576 289.2 576 240c0-114.9-114.6-208-256-208-65.1 0-124.2 20.1-169.4 52.7L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faComments.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faComments.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faComments.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faComments.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faComments.js new file mode 100644 index 0000000000..041782a09d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faComments.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'comments', icon: [576, 512, [], "f086", "M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCompactDisc.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCompactDisc.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCompactDisc.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCompactDisc.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCompactDisc.js new file mode 100644 index 0000000000..da914e05f5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCompactDisc.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'compact-disc', icon: [496, 512, [], "f51f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 256H56c0-105.9 86.1-192 192-192v32c-88.2 0-160 71.8-160 160zm160 96c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCompass.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCompass.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCompass.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCompass.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCompass.js new file mode 100644 index 0000000000..43c428b8ab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCompass.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'compass', icon: [512, 512, [], "f14e", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM307.446 120.844l-102.642 97.779a23.997 23.997 0 0 0-6.772 11.729l-33.359 137.779c-5.68 23.459 22.777 39.318 39.88 23.024l102.64-97.779a23.99 23.99 0 0 0 6.772-11.729l33.359-137.779c5.618-23.198-22.591-39.493-39.878-23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCompress.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCompress.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCompress.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCompress.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCompress.js new file mode 100644 index 0000000000..1c86959dd3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCompress.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'compress', icon: [448, 512, [], "f066", "M436 192H312c-13.3 0-24-10.7-24-24V44c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-276-24V44c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v84H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 300V344c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-84h84c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H312c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCopy.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCopy.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCopy.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCopy.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCopy.js new file mode 100644 index 0000000000..f634d4fff8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCopy.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'copy', icon: [448, 512, [], "f0c5", "M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCopyright.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCopyright.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCopyright.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCopyright.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCopyright.js new file mode 100644 index 0000000000..628c39f720 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCopyright.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'copyright', icon: [512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm117.134 346.753c-1.592 1.867-39.776 45.731-109.851 45.731-84.692 0-144.484-63.26-144.484-145.567 0-81.303 62.004-143.401 143.762-143.401 66.957 0 101.965 37.315 103.422 38.904a12 12 0 0 1 1.238 14.623l-22.38 34.655c-4.049 6.267-12.774 7.351-18.234 2.295-.233-.214-26.529-23.88-61.88-23.88-46.116 0-73.916 33.575-73.916 76.082 0 39.602 25.514 79.692 74.277 79.692 38.697 0 65.28-28.338 65.544-28.625 5.132-5.565 14.059-5.033 18.508 1.053l24.547 33.572a12.001 12.001 0 0 1-.553 14.866z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCouch.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCouch.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCouch.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCouch.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCouch.js new file mode 100644 index 0000000000..9badd9a388 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCouch.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'couch', icon: [640, 512, [], "f4b8", "M160 224v64h320v-64c0-35.3 28.7-64 64-64h32c0-53-43-96-96-96H160c-53 0-96 43-96 96h32c35.3 0 64 28.7 64 64zm416-32h-32c-17.7 0-32 14.3-32 32v96H128v-96c0-17.7-14.3-32-32-32H64c-35.3 0-64 28.7-64 64 0 23.6 13 44 32 55.1V432c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-16h384v16c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V311.1c19-11.1 32-31.5 32-55.1 0-35.3-28.7-64-64-64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCreditCard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCreditCard.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCreditCard.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCreditCard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCreditCard.js new file mode 100644 index 0000000000..3e999b8f79 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCreditCard.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'credit-card', icon: [576, 512, [], "f09d", "M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V256H0v176zm192-68c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-40zm-128 0c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM576 80v48H0V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrop.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrop.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrop.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrop.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrop.js new file mode 100644 index 0000000000..3214b281db --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrop.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'crop', icon: [512, 512, [], "f125", "M488 352h-40V109.3l57-57c9.4-9.4 9.4-24.6 0-33.9L493.7 7c-9.4-9.4-24.6-9.4-33.9 0l-57 57H160V24c0-13.3-10.7-24-24-24H88C74.7 0 64 10.7 64 24v40H24C10.7 64 0 74.7 0 88v48c0 13.3 10.7 24 24 24h40v264c0 13.3 10.7 24 24 24h264v40c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24v-40h40c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zM306.7 160L160 306.7V160h146.7zM205.3 352L352 205.3V352H205.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrosshairs.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrosshairs.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrosshairs.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrosshairs.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrosshairs.js new file mode 100644 index 0000000000..3ceb6ae83f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrosshairs.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'crosshairs', icon: [512, 512, [], "f05b", "M500 224h-30.364C455.724 130.325 381.675 56.276 288 42.364V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v30.364C130.325 56.276 56.276 130.325 42.364 224H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h30.364C56.276 381.675 130.325 455.724 224 469.636V500c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-30.364C381.675 455.724 455.724 381.675 469.636 288H500c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zM288 404.634V364c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40.634C165.826 392.232 119.783 346.243 107.366 288H148c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40.634C119.768 165.826 165.757 119.783 224 107.366V148c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40.634C346.174 119.768 392.217 165.757 404.634 224H364c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40.634C392.232 346.174 346.243 392.217 288 404.634zM288 256c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrow.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrow.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrow.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrow.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrow.js new file mode 100644 index 0000000000..1bc1797298 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrow.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'crow', icon: [640, 512, [], "f520", "M544 32h-16.36C513.04 12.68 490.09 0 464 0c-44.18 0-80 35.82-80 80v20.98L12.09 393.57A30.216 30.216 0 0 0 0 417.74c0 22.46 23.64 37.07 43.73 27.03L165.27 384h96.49l44.41 120.1c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38L312.94 384H352c1.91 0 3.76-.23 5.66-.29l44.51 120.38c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38l-41.24-111.53C485.74 352.8 544 279.26 544 192v-80l96-16c0-35.35-42.98-64-96-64zm-80 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrown.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrown.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrown.js new file mode 100644 index 0000000000..449f54bfb7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCrown.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'crown', icon: [640, 512, [], "f521", "M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.4 7.7-.8L128 416h384l72.3-192.8c2.5.4 5.1.8 7.7.8 26.5 0 48-21.5 48-48s-21.5-48-48-48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCube.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCube.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCube.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCube.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCube.js new file mode 100644 index 0000000000..c1567162df --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCube.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'cube', icon: [512, 512, [], "f1b2", "M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCubes.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCubes.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCubes.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCubes.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCubes.js new file mode 100644 index 0000000000..9d4281fd0b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCubes.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'cubes', icon: [512, 512, [], "f1b3", "M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCut.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCut.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCut.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCut.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCut.js new file mode 100644 index 0000000000..b8775a4056 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faCut.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'cut', icon: [448, 512, [], "f0c4", "M444.485 422.426c4.689 4.689 4.684 12.287 0 16.971-32.804 32.804-85.991 32.804-118.795 0L210.176 323.883l-24.859 24.859C189.63 359.657 192 371.552 192 384c0 53.019-42.981 96-96 96S0 437.019 0 384s42.981-96 96-96c4.536 0 8.995.322 13.363.93l32.93-32.93-32.93-32.93c-4.368.608-8.827.93-13.363.93-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96c0 12.448-2.37 24.343-6.682 35.258l24.859 24.859L325.69 72.603c32.804-32.804 85.991-32.804 118.795 0 4.684 4.684 4.689 12.282 0 16.971L278.059 256l166.426 166.426zM96 96c-17.645 0-32 14.355-32 32s14.355 32 32 32 32-14.355 32-32-14.355-32-32-32m0 256c-17.645 0-32 14.355-32 32s14.355 32 32 32 32-14.355 32-32-14.355-32-32-32m112-108c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDatabase.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDatabase.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDatabase.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDatabase.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDatabase.js new file mode 100644 index 0000000000..0368ac4bbf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDatabase.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'database', icon: [448, 512, [], "f1c0", "M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDeaf.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDeaf.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDeaf.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDeaf.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDeaf.js new file mode 100644 index 0000000000..31bf0acdf2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDeaf.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'deaf', icon: [512, 512, [], "f2a4", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm268.485-52.201L480.2 3.515c-4.687-4.686-12.284-4.686-16.971 0L376.2 90.544c-4.686 4.686-4.686 12.284 0 16.971l28.285 28.285c4.686 4.686 12.284 4.686 16.97 0l87.03-87.029c4.687-4.688 4.687-12.286 0-16.972zM168.97 314.745c-4.686-4.686-12.284-4.686-16.97 0L3.515 463.23c-4.686 4.686-4.686 12.284 0 16.971L31.8 508.485c4.687 4.686 12.284 4.686 16.971 0L197.256 360c4.686-4.686 4.686-12.284 0-16.971l-28.286-28.284z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDesktop.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDesktop.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDesktop.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDesktop.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDesktop.js new file mode 100644 index 0000000000..893e8fb263 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDesktop.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'desktop', icon: [576, 512, [], "f108", "M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiagnoses.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiagnoses.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiagnoses.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiagnoses.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiagnoses.js new file mode 100644 index 0000000000..76d36030e8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiagnoses.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'diagnoses', icon: [640, 512, [], "f470", "M496 256c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm-176-80c48.5 0 88-39.5 88-88S368.5 0 320 0s-88 39.5-88 88 39.5 88 88 88zM59.8 364c10.2 15.3 29.3 17.8 42.9 9.8 16.2-9.6 56.2-31.7 105.3-48.6V416h224v-90.7c49.1 16.8 89.1 39 105.3 48.6 13.6 8 32.7 5.3 42.9-9.8l17.8-26.7c8.8-13.2 7.6-34.6-10-45.1-11.9-7.1-29.7-17-51.1-27.4-28.1 46.1-99.4 17.8-87.7-35.1C409.3 217.2 365.1 208 320 208c-57 0-112.9 14.5-160 32.2-.2 40.2-47.6 63.3-79.2 36-11.2 6-21.3 11.6-28.7 16-17.6 10.5-18.8 31.8-10 45.1L59.8 364zM368 344c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-160 8c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm512 192H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDice.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDice.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDice.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDice.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDice.js new file mode 100644 index 0000000000..a64d271f5c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDice.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'dice', icon: [640, 512, [], "f522", "M592 192H473.26c12.69 29.59 7.12 65.2-17 89.32L320 417.58V464c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48V240c0-26.51-21.49-48-48-48zM480 376c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm-46.37-186.7L258.7 14.37c-19.16-19.16-50.23-19.16-69.39 0L14.37 189.3c-19.16 19.16-19.16 50.23 0 69.39L189.3 433.63c19.16 19.16 50.23 19.16 69.39 0L433.63 258.7c19.16-19.17 19.16-50.24 0-69.4zM96 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceFive.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceFive.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceFive.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceFive.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceFive.js new file mode 100644 index 0000000000..6c46ee6792 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceFive.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'dice-five', icon: [448, 512, [], "f523", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceFour.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceFour.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceFour.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceFour.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceFour.js new file mode 100644 index 0000000000..f701b5d800 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceFour.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'dice-four', icon: [448, 512, [], "f524", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceOne.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceOne.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceOne.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceOne.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceOne.js new file mode 100644 index 0000000000..7d8476424a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceOne.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'dice-one', icon: [448, 512, [], "f525", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM224 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceSix.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceSix.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceSix.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceSix.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceSix.js new file mode 100644 index 0000000000..e9bbe855a7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceSix.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'dice-six', icon: [448, 512, [], "f526", "M384 0H64C28.65 0 0 28.65 0 64v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V64c0-35.35-28.65-64-64-64zM128 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceThree.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceThree.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceThree.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceThree.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceThree.js new file mode 100644 index 0000000000..ae0b7ec345 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceThree.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'dice-three', icon: [448, 512, [], "f527", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceTwo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceTwo.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceTwo.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceTwo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceTwo.js new file mode 100644 index 0000000000..caba014062 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDiceTwo.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'dice-two', icon: [448, 512, [], "f528", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDivide.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDivide.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDivide.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDivide.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDivide.js new file mode 100644 index 0000000000..abaeb8ae06 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDivide.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'divide', icon: [448, 512, [], "f529", "M224 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm0-192c35.35 0 64-28.65 64-64s-28.65-64-64-64-64 28.65-64 64 28.65 64 64 64zm192 48H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDna.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDna.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDna.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDna.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDna.js new file mode 100644 index 0000000000..f6b44831fb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDna.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'dna', icon: [448, 512, [], "f471", "M.1 494.1c-1.1 9.5 6.3 17.8 15.9 17.8l32.3.1c8.1 0 14.9-5.9 16-13.9.7-4.9 1.8-11.1 3.4-18.1H380c1.6 6.9 2.9 13.2 3.5 18.1 1.1 8 7.9 14 16 13.9l32.3-.1c9.6 0 17.1-8.3 15.9-17.8-4.6-37.9-25.6-129-118.9-207.7-17.6 12.4-37.1 24.2-58.5 35.4 6.2 4.6 11.4 9.4 17 14.2H159.7c21.3-18.1 47-35.6 78.7-51.4C410.5 199.1 442.1 65.8 447.9 17.9 449 8.4 441.6.1 432 .1L399.6 0c-8.1 0-14.9 5.9-16 13.9-.7 4.9-1.8 11.1-3.4 18.1H67.8c-1.6-7-2.7-13.1-3.4-18.1-1.1-8-7.9-14-16-13.9L16.1.1C6.5.1-1 8.4.1 17.9 5.3 60.8 31.4 171.8 160 256 31.5 340.2 5.3 451.2.1 494.1zM224 219.6c-25.1-13.7-46.4-28.4-64.3-43.6h128.5c-17.8 15.2-39.1 30-64.2 43.6zM355.1 96c-5.8 10.4-12.8 21.1-21 32H114c-8.3-10.9-15.3-21.6-21-32h262.1zM92.9 416c5.8-10.4 12.8-21.1 21-32h219.4c8.3 10.9 15.4 21.6 21.2 32H92.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDollarSign.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDollarSign.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDollarSign.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDollarSign.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDollarSign.js new file mode 100644 index 0000000000..2cc7e31b62 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDollarSign.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'dollar-sign', icon: [288, 512, [], "f155", "M209.2 233.4l-108-31.6C88.7 198.2 80 186.5 80 173.5c0-16.3 13.2-29.5 29.5-29.5h66.3c12.2 0 24.2 3.7 34.2 10.5 6.1 4.1 14.3 3.1 19.5-2l34.8-34c7.1-6.9 6.1-18.4-1.8-24.5C238 74.8 207.4 64.1 176 64V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C45.8 64-5.4 118.7.5 183.6c4.2 46.1 39.4 83.6 83.8 96.6l102.5 30c12.5 3.7 21.2 15.3 21.2 28.3 0 16.3-13.2 29.5-29.5 29.5h-66.3C100 368 88 364.3 78 357.5c-6.1-4.1-14.3-3.1-19.5 2l-34.8 34c-7.1 6.9-6.1 18.4 1.8 24.5 24.5 19.2 55.1 29.9 86.5 30v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48.2c46.6-.9 90.3-28.6 105.7-72.7 21.5-61.6-14.6-124.8-72.5-141.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDolly.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDolly.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDolly.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDolly.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDolly.js new file mode 100644 index 0000000000..015b48de74 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDolly.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'dolly', icon: [576, 512, [], "f472", "M294.2 277.7c18 5 34.7 13.4 49.5 24.7l161.5-53.8c8.4-2.8 12.9-11.9 10.1-20.2L454.9 47.2c-2.8-8.4-11.9-12.9-20.2-10.1l-61.1 20.4 33.1 99.4L346 177l-33.1-99.4-61.6 20.5c-8.4 2.8-12.9 11.9-10.1 20.2l53 159.4zm281 48.7L565 296c-2.8-8.4-11.9-12.9-20.2-10.1l-213.5 71.2c-17.2-22-43.6-36.4-73.5-37L158.4 21.9C154 8.8 141.8 0 128 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h88.9l92.2 276.7c-26.1 20.4-41.7 53.6-36 90.5 6.1 39.4 37.9 72.3 77.3 79.2 60.2 10.7 112.3-34.8 113.4-92.6l213.3-71.2c8.3-2.8 12.9-11.8 10.1-20.2zM256 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDollyFlatbed.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDollyFlatbed.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDollyFlatbed.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDollyFlatbed.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDollyFlatbed.js new file mode 100644 index 0000000000..0e2f0b2c04 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDollyFlatbed.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'dolly-flatbed', icon: [640, 512, [], "f474", "M208 320h384c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H448v128l-48-32-48 32V32H208c-8.8 0-16 7.2-16 16v256c0 8.8 7.2 16 16 16zm416 64H128V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h82.9c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H451c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H624c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDonate.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDonate.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDonate.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDonate.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDonate.js new file mode 100644 index 0000000000..8e469b1851 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDonate.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'donate', icon: [512, 512, [], "f4b9", "M256 416c114.9 0 208-93.1 208-208S370.9 0 256 0 48 93.1 48 208s93.1 208 208 208zM233.8 97.4V80.6c0-9.2 7.4-16.6 16.6-16.6h11.1c9.2 0 16.6 7.4 16.6 16.6v17c15.5.8 30.5 6.1 43 15.4 5.6 4.1 6.2 12.3 1.2 17.1L306 145.6c-3.8 3.7-9.5 3.8-14 1-5.4-3.4-11.4-5.1-17.8-5.1h-38.9c-9 0-16.3 8.2-16.3 18.3 0 8.2 5 15.5 12.1 17.6l62.3 18.7c25.7 7.7 43.7 32.4 43.7 60.1 0 34-26.4 61.5-59.1 62.4v16.8c0 9.2-7.4 16.6-16.6 16.6h-11.1c-9.2 0-16.6-7.4-16.6-16.6v-17c-15.5-.8-30.5-6.1-43-15.4-5.6-4.1-6.2-12.3-1.2-17.1l16.3-15.5c3.8-3.7 9.5-3.8 14-1 5.4 3.4 11.4 5.1 17.8 5.1h38.9c9 0 16.3-8.2 16.3-18.3 0-8.2-5-15.5-12.1-17.6l-62.3-18.7c-25.7-7.7-43.7-32.4-43.7-60.1.1-34 26.4-61.5 59.1-62.4zM480 352h-32.5c-19.6 26-44.6 47.7-73 64h63.8c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8h63.8c-28.4-16.3-53.3-38-73-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDoorClosed.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDoorClosed.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDoorClosed.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDoorClosed.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDoorClosed.js new file mode 100644 index 0000000000..fa5ee13ef1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDoorClosed.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'door-closed', icon: [640, 512, [], "f52a", "M624 448H512V50.8C512 22.78 490.47 0 464 0H175.99c-26.47 0-48 22.78-48 50.8V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM415.99 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32c.01 17.67-14.32 32-32 32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDoorOpen.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDoorOpen.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDoorOpen.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDoorOpen.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDoorOpen.js new file mode 100644 index 0000000000..e09de578a2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDoorOpen.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'door-open', icon: [640, 512, [], "f52b", "M624 448h-80V113.45C544 86.19 522.47 64 496 64H384v64h96v384h144c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM312.24 1.01l-192 49.74C105.99 54.44 96 67.7 96 82.92V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h336V33.18c0-21.58-19.56-37.41-39.76-32.17zM264 288c-13.25 0-24-14.33-24-32s10.75-32 24-32 24 14.33 24 32-10.75 32-24 32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDotCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDotCircle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDotCircle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDotCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDotCircle.js new file mode 100644 index 0000000000..5789fcdf58 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDotCircle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'dot-circle', icon: [512, 512, [], "f192", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDove.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDove.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDove.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDove.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDove.js new file mode 100644 index 0000000000..a5e1539967 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDove.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'dove', icon: [512, 512, [], "f4ba", "M288 167.2v-28.1c-28.2-36.3-47.1-79.3-54.1-125.2-2.1-13.5-19-18.8-27.8-8.3-21.1 24.9-37.7 54.1-48.9 86.5 34.2 38.3 80 64.6 130.8 75.1zM400 64c-44.2 0-80 35.9-80 80.1v59.4C215.6 197.3 127 133 87 41.8c-5.5-12.5-23.2-13.2-29-.9C41.4 76 32 115.2 32 156.6c0 70.8 34.1 136.9 85.1 185.9 13.2 12.7 26.1 23.2 38.9 32.8l-143.9 36C1.4 414-3.4 426.4 2.6 435.7 20 462.6 63 508.2 155.8 512c8 .3 16-2.6 22.1-7.9l65.2-56.1H320c88.4 0 160-71.5 160-159.9V128l32-64H400zm0 96.1c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDownload.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDownload.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDownload.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDownload.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDownload.js new file mode 100644 index 0000000000..ae67480a60 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDownload.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'download', icon: [512, 512, [], "f019", "M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDumbbell.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDumbbell.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDumbbell.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDumbbell.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDumbbell.js new file mode 100644 index 0000000000..475013f854 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faDumbbell.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'dumbbell', icon: [640, 512, [], "f44b", "M104 96H56c-13.3 0-24 10.7-24 24v104H8c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h24v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm528 128h-24V120c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v272c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h24c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM456 32h-48c-13.3 0-24 10.7-24 24v168H256V56c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v400c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h128v168c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEdit.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEdit.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEdit.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEdit.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEdit.js new file mode 100644 index 0000000000..690747e6e9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEdit.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'edit', icon: [576, 512, [], "f044", "M402.6 83.2l90.2 90.2c3.8 3.8 3.8 10 0 13.8L274.4 405.6l-92.8 10.3c-12.4 1.4-22.9-9.1-21.5-21.5l10.3-92.8L388.8 83.2c3.8-3.8 10-3.8 13.8 0zm162-22.9l-48.8-48.8c-15.2-15.2-39.9-15.2-55.2 0l-35.4 35.4c-3.8 3.8-3.8 10 0 13.8l90.2 90.2c3.8 3.8 10 3.8 13.8 0l35.4-35.4c15.2-15.3 15.2-40 0-55.2zM384 346.2V448H64V128h229.8c3.2 0 6.2-1.3 8.5-3.5l40-40c7.6-7.6 2.2-20.5-8.5-20.5H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V306.2c0-10.7-12.9-16-20.5-8.5l-40 40c-2.2 2.3-3.5 5.3-3.5 8.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEject.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEject.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEject.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEject.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEject.js new file mode 100644 index 0000000000..dd90048df7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEject.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'eject', icon: [448, 512, [], "f052", "M448 384v64c0 17.673-14.327 32-32 32H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h384c17.673 0 32 14.327 32 32zM48.053 320h351.886c41.651 0 63.581-49.674 35.383-80.435L259.383 47.558c-19.014-20.743-51.751-20.744-70.767 0L12.67 239.565C-15.475 270.268 6.324 320 48.053 320z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEllipsisH.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEllipsisH.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEllipsisH.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEllipsisH.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEllipsisH.js new file mode 100644 index 0000000000..ef1eed4b36 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEllipsisH.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'ellipsis-h', icon: [512, 512, [], "f141", "M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEllipsisV.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEllipsisV.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEllipsisV.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEllipsisV.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEllipsisV.js new file mode 100644 index 0000000000..19ad81bcea --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEllipsisV.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'ellipsis-v', icon: [192, 512, [], "f142", "M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEnvelope.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEnvelope.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEnvelope.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEnvelope.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEnvelope.js new file mode 100644 index 0000000000..a79c79cafa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEnvelope.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'envelope', icon: [512, 512, [], "f0e0", "M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEnvelopeOpen.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEnvelopeOpen.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEnvelopeOpen.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEnvelopeOpen.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEnvelopeOpen.js new file mode 100644 index 0000000000..5c11bf1527 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEnvelopeOpen.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'envelope-open', icon: [512, 512, [], "f2b6", "M512 464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V200.724a48 48 0 0 1 18.387-37.776c24.913-19.529 45.501-35.365 164.2-121.511C199.412 29.17 232.797-.347 256 .003c23.198-.354 56.596 29.172 73.413 41.433 118.687 86.137 139.303 101.995 164.2 121.512A48 48 0 0 1 512 200.724V464zm-65.666-196.605c-2.563-3.728-7.7-4.595-11.339-1.907-22.845 16.873-55.462 40.705-105.582 77.079-16.825 12.266-50.21 41.781-73.413 41.43-23.211.344-56.559-29.143-73.413-41.43-50.114-36.37-82.734-60.204-105.582-77.079-3.639-2.688-8.776-1.821-11.339 1.907l-9.072 13.196a7.998 7.998 0 0 0 1.839 10.967c22.887 16.899 55.454 40.69 105.303 76.868 20.274 14.781 56.524 47.813 92.264 47.573 35.724.242 71.961-32.771 92.263-47.573 49.85-36.179 82.418-59.97 105.303-76.868a7.998 7.998 0 0 0 1.839-10.967l-9.071-13.196z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEnvelopeSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEnvelopeSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEnvelopeSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEnvelopeSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEnvelopeSquare.js new file mode 100644 index 0000000000..b4478fa306 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEnvelopeSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'envelope-square', icon: [448, 512, [], "f199", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM178.117 262.104C87.429 196.287 88.353 196.121 64 177.167V152c0-13.255 10.745-24 24-24h272c13.255 0 24 10.745 24 24v25.167c-24.371 18.969-23.434 19.124-114.117 84.938-10.5 7.655-31.392 26.12-45.883 25.894-14.503.218-35.367-18.227-45.883-25.895zM384 217.775V360c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V217.775c13.958 10.794 33.329 25.236 95.303 70.214 14.162 10.341 37.975 32.145 64.694 32.01 26.887.134 51.037-22.041 64.72-32.025 61.958-44.965 81.325-59.406 95.283-70.199z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEquals.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEquals.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEquals.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEquals.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEquals.js new file mode 100644 index 0000000000..57803bf912 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEquals.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'equals', icon: [448, 512, [], "f52c", "M416 304H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32zm0-192H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEraser.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEraser.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEraser.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEraser.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEraser.js new file mode 100644 index 0000000000..c6e2573a52 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEraser.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'eraser', icon: [512, 512, [], "f12d", "M497.941 273.941c18.745-18.745 18.745-49.137 0-67.882l-160-160c-18.745-18.745-49.136-18.746-67.883 0l-256 256c-18.745 18.745-18.745 49.137 0 67.882l96 96A48.004 48.004 0 0 0 144 480h356c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H355.883l142.058-142.059zm-302.627-62.627l137.373 137.373L265.373 416H150.628l-80-80 124.686-124.686z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEuroSign.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEuroSign.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEuroSign.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEuroSign.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEuroSign.js new file mode 100644 index 0000000000..e2b867f0a1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEuroSign.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'euro-sign', icon: [320, 512, [], "f153", "M310.706 413.765c-1.314-6.63-7.835-10.872-14.424-9.369-10.692 2.439-27.422 5.413-45.426 5.413-56.763 0-101.929-34.79-121.461-85.449h113.689a12 12 0 0 0 11.708-9.369l6.373-28.36c1.686-7.502-4.019-14.631-11.708-14.631H115.22c-1.21-14.328-1.414-28.287.137-42.245H261.95a12 12 0 0 0 11.723-9.434l6.512-29.755c1.638-7.484-4.061-14.566-11.723-14.566H130.184c20.633-44.991 62.69-75.03 117.619-75.03 14.486 0 28.564 2.25 37.851 4.145 6.216 1.268 12.347-2.498 14.002-8.623l11.991-44.368c1.822-6.741-2.465-13.616-9.326-14.917C290.217 34.912 270.71 32 249.635 32 152.451 32 74.03 92.252 45.075 176H12c-6.627 0-12 5.373-12 12v29.755c0 6.627 5.373 12 12 12h21.569c-1.009 13.607-1.181 29.287-.181 42.245H12c-6.627 0-12 5.373-12 12v28.36c0 6.627 5.373 12 12 12h30.114C67.139 414.692 145.264 480 249.635 480c26.301 0 48.562-4.544 61.101-7.788 6.167-1.595 10.027-7.708 8.788-13.957l-8.818-44.49z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExchangeAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExchangeAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExchangeAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExchangeAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExchangeAlt.js new file mode 100644 index 0000000000..1b568b6fce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExchangeAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'exchange-alt', icon: [512, 512, [], "f362", "M0 168v-16c0-13.255 10.745-24 24-24h360V80c0-21.367 25.899-32.042 40.971-16.971l80 80c9.372 9.373 9.372 24.569 0 33.941l-80 80C409.956 271.982 384 261.456 384 240v-48H24c-13.255 0-24-10.745-24-24zm488 152H128v-48c0-21.314-25.862-32.08-40.971-16.971l-80 80c-9.372 9.373-9.372 24.569 0 33.941l80 80C102.057 463.997 128 453.437 128 432v-48h360c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExclamation.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExclamation.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExclamation.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExclamation.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExclamation.js new file mode 100644 index 0000000000..7a01d27ecb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExclamation.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'exclamation', icon: [192, 512, [], "f12a", "M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExclamationCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExclamationCircle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExclamationCircle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExclamationCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExclamationCircle.js new file mode 100644 index 0000000000..b827d5e68f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExclamationCircle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'exclamation-circle', icon: [512, 512, [], "f06a", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExclamationTriangle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExclamationTriangle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExclamationTriangle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExclamationTriangle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExclamationTriangle.js new file mode 100644 index 0000000000..1bff4445c8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExclamationTriangle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'exclamation-triangle', icon: [576, 512, [], "f071", "M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExpand.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExpand.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExpand.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExpand.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExpand.js new file mode 100644 index 0000000000..d06f3e4aca --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExpand.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'expand', icon: [448, 512, [], "f065", "M0 180V56c0-13.3 10.7-24 24-24h124c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H64v84c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12zM288 44v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V56c0-13.3-10.7-24-24-24H300c-6.6 0-12 5.4-12 12zm148 276h-40c-6.6 0-12 5.4-12 12v84h-84c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24V332c0-6.6-5.4-12-12-12zM160 468v-40c0-6.6-5.4-12-12-12H64v-84c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v124c0 13.3 10.7 24 24 24h124c6.6 0 12-5.4 12-12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExpandArrowsAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExpandArrowsAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExpandArrowsAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExpandArrowsAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExpandArrowsAlt.js new file mode 100644 index 0000000000..da8fea767e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExpandArrowsAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'expand-arrows-alt', icon: [448, 512, [], "f31e", "M448.1 344v112c0 13.3-10.7 24-24 24h-112c-21.4 0-32.1-25.9-17-41l36.2-36.2L224 295.6 116.8 402.9 153 439c15.1 15.1 4.4 41-17 41H24c-13.3 0-24-10.7-24-24V344c0-21.4 25.9-32.1 41-17l36.2 36.2L184.5 256 77.2 148.7 41 185c-15.1 15.1-41 4.4-41-17V56c0-13.3 10.7-24 24-24h112c21.4 0 32.1 25.9 17 41l-36.2 36.2L224 216.4l107.3-107.3L295.1 73c-15.1-15.1-4.4-41 17-41h112c13.3 0 24 10.7 24 24v112c0 21.4-25.9 32.1-41 17l-36.2-36.2L263.6 256l107.3 107.3 36.2-36.2c15.1-15.2 41-4.5 41 16.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExternalLinkAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExternalLinkAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExternalLinkAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExternalLinkAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExternalLinkAlt.js new file mode 100644 index 0000000000..0259430051 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExternalLinkAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'external-link-alt', icon: [576, 512, [], "f35d", "M576 24v127.984c0 21.461-25.96 31.98-40.971 16.971l-35.707-35.709-243.523 243.523c-9.373 9.373-24.568 9.373-33.941 0l-22.627-22.627c-9.373-9.373-9.373-24.569 0-33.941L442.756 76.676l-35.703-35.705C391.982 25.9 402.656 0 424.024 0H552c13.255 0 24 10.745 24 24zM407.029 270.794l-16 16A23.999 23.999 0 0 0 384 303.765V448H64V128h264a24.003 24.003 0 0 0 16.97-7.029l16-16C376.089 89.851 365.381 64 344 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V287.764c0-21.382-25.852-32.09-40.971-16.97z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExternalLinkSquareAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExternalLinkSquareAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExternalLinkSquareAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExternalLinkSquareAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExternalLinkSquareAlt.js new file mode 100644 index 0000000000..039fc2d79c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faExternalLinkSquareAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'external-link-square-alt', icon: [448, 512, [], "f360", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-88 16H248.029c-21.313 0-32.08 25.861-16.971 40.971l31.984 31.987L67.515 364.485c-4.686 4.686-4.686 12.284 0 16.971l31.029 31.029c4.687 4.686 12.285 4.686 16.971 0l195.526-195.526 31.988 31.991C358.058 263.977 384 253.425 384 231.979V120c0-13.255-10.745-24-24-24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEye.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEye.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEye.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEye.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEye.js new file mode 100644 index 0000000000..4705e438b1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEye.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'eye', icon: [576, 512, [], "f06e", "M569.354 231.631C512.969 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-75.162 0-136-60.827-136-136 0-75.162 60.826-136 136-136 75.162 0 136 60.826 136 136 0 75.162-60.826 136-136 136zm104-136c0 57.438-46.562 104-104 104s-104-46.562-104-104c0-17.708 4.431-34.379 12.236-48.973l-.001.032c0 23.651 19.173 42.823 42.824 42.823s42.824-19.173 42.824-42.823c0-23.651-19.173-42.824-42.824-42.824l-.032.001C253.621 156.431 270.292 152 288 152c57.438 0 104 46.562 104 104z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEyeDropper.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEyeDropper.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEyeDropper.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEyeDropper.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEyeDropper.js new file mode 100644 index 0000000000..c1b2ce56b4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEyeDropper.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'eye-dropper', icon: [512, 512, [], "f1fb", "M177.38 206.64L39.03 344.97A24.01 24.01 0 0 0 32 361.94V424L0 480l32 32 56-32h62.06c6.36 0 12.47-2.53 16.97-7.03l138.35-138.33-128-128zm225.552 30.47l16.952 16.95c9.37 9.37 9.37 24.57 0 33.94l-40.973 40.97c-9.292 9.312-24.506 9.434-33.94 0L183.028 167.03c-9.37-9.37-9.37-24.57 0-33.94L224 92.12c9.289-9.309 24.502-9.438 33.94 0l16.992 16.99 82.606-82.601c35.19-35.19 92.5-35.5 128 0 40.49 48.08 29.66 98.34 0 128l-82.606 82.601z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEyeSlash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEyeSlash.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEyeSlash.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEyeSlash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEyeSlash.js new file mode 100644 index 0000000000..1db5dcf446 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faEyeSlash.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'eye-slash', icon: [576, 512, [], "f070", "M286.693 391.984l32.579 46.542A333.958 333.958 0 0 1 288 440C168.19 440 63.031 376.051 6.646 280.369a47.999 47.999 0 0 1 0-48.739c24.023-40.766 56.913-75.775 96.024-102.537l57.077 81.539C154.736 224.82 152 240.087 152 256c0 74.736 60.135 135.282 134.693 135.984zm282.661-111.615c-31.667 53.737-78.747 97.46-135.175 125.475l.011.015 41.47 59.2c7.6 10.86 4.96 25.82-5.9 33.42l-13.11 9.18c-10.86 7.6-25.82 4.96-33.42-5.9L100.34 46.94c-7.6-10.86-4.96-25.82 5.9-33.42l13.11-9.18c10.86-7.6 25.82-4.96 33.42 5.9l51.038 72.617C230.68 75.776 258.905 72 288 72c119.81 0 224.969 63.949 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM424 256c0-75.174-60.838-136-136-136-17.939 0-35.056 3.473-50.729 9.772l19.299 27.058c25.869-8.171 55.044-6.163 80.4 7.41h-.03c-23.65 0-42.82 19.17-42.82 42.82 0 23.626 19.147 42.82 42.82 42.82 23.65 0 42.82-19.17 42.82-42.82v-.03c18.462 34.49 16.312 77.914-8.25 110.95v.01l19.314 27.061C411.496 321.2 424 290.074 424 256zM262.014 356.727l-77.53-110.757c-5.014 52.387 29.314 98.354 77.53 110.757z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFastBackward.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFastBackward.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFastBackward.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFastBackward.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFastBackward.js new file mode 100644 index 0000000000..3cfc443da5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFastBackward.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'fast-backward', icon: [512, 512, [], "f049", "M0 436V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v151.9L235.5 71.4C256.1 54.3 288 68.6 288 96v131.9L459.5 71.4C480.1 54.3 512 68.6 512 96v320c0 27.4-31.9 41.7-52.5 24.6L288 285.3V416c0 27.4-31.9 41.7-52.5 24.6L64 285.3V436c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFastForward.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFastForward.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFastForward.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFastForward.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFastForward.js new file mode 100644 index 0000000000..0c10288354 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFastForward.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'fast-forward', icon: [512, 512, [], "f050", "M512 76v360c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V284.1L276.5 440.6c-20.6 17.2-52.5 2.8-52.5-24.6V284.1L52.5 440.6C31.9 457.8 0 443.4 0 416V96c0-27.4 31.9-41.7 52.5-24.6L224 226.8V96c0-27.4 31.9-41.7 52.5-24.6L448 226.8V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFax.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFax.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFax.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFax.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFax.js new file mode 100644 index 0000000000..9097d79c90 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFax.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'fax', icon: [512, 512, [], "f1ac", "M128 144v320c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V144c0-26.51 21.49-48 48-48h32c26.51 0 48 21.49 48 48zm384 64v256c0 26.51-21.49 48-48 48H192c-26.51 0-48-21.49-48-48V40c0-22.091 17.909-40 40-40h207.432a39.996 39.996 0 0 1 28.284 11.716l48.569 48.569A39.999 39.999 0 0 1 480 88.568v74.174c18.641 6.591 32 24.36 32 45.258zm-320-16h240V96h-24c-13.203 0-24-10.797-24-24V48H192v144zm96 204c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm128 128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFeather.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFeather.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFeather.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFeather.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFeather.js new file mode 100644 index 0000000000..46b7a8b62b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFeather.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'feather', icon: [512, 512, [], "f52d", "M512 0C504.81.01 98.51 22.01 71.47 287.42c-2.62 22.6-4.22 45.28-5.37 67.98l160.65-160.65c6.25-6.25 16.38-6.25 22.62 0s6.25 16.38 0 22.62l-240 240a31.9 31.9 0 0 0-9.38 22.67C.02 497.68 14.33 512 32 512c8.19 0 16.38-3.12 22.62-9.38l55.05-55.05c38.4-.5 76.76-2.63 114.91-7.05 11.58-1.18 22.54-3.29 33.21-5.84L256 384h101.86c12.61-10.63 24.12-22.45 34.76-35.07L384 288h50.19C502.8 163.6 512 .1 512 0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFemale.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFemale.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFemale.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFemale.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFemale.js new file mode 100644 index 0000000000..66ed9df904 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFemale.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'female', icon: [256, 512, [], "f182", "M128 0c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64S92.654 0 128 0m119.283 354.179l-48-192A24 24 0 0 0 176 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H80a24 24 0 0 0-23.283 18.179l-48 192C4.935 369.305 16.383 384 32 384h56v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V384h56c15.591 0 27.071-14.671 23.283-29.821z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFighterJet.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFighterJet.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFighterJet.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFighterJet.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFighterJet.js new file mode 100644 index 0000000000..055e77072e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFighterJet.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'fighter-jet', icon: [640, 512, [], "f0fb", "M544 224l-128-16-48-16h-24L227.158 44h39.509C278.333 44 288 41.375 288 38s-9.667-6-21.333-6H152v12h16v164h-48l-66.667-80H18.667L8 138.667V208h8v16h48v2.666l-64 8v42.667l64 8V288H16v16H8v69.333L18.667 384h34.667L120 304h48v164h-16v12h114.667c11.667 0 21.333-2.625 21.333-6s-9.667-6-21.333-6h-39.509L344 320h24l48-16 128-16c96-21.333 96-26.583 96-32 0-5.417 0-10.667-96-32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFile.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFile.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFile.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFile.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFile.js new file mode 100644 index 0000000000..63953cbbe8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFile.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'file', icon: [384, 512, [], "f15b", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileAlt.js new file mode 100644 index 0000000000..5c22497f04 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'file-alt', icon: [384, 512, [], "f15c", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileArchive.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileArchive.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileArchive.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileArchive.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileArchive.js new file mode 100644 index 0000000000..ab5fd489bd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileArchive.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'file-archive', icon: [384, 512, [], "f1c6", "M224 136V0h-63.6v32h-32V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM95.9 32h32v32h-32V32zm32.3 384c-33.2 0-58-30.4-51.4-62.9L96.4 256v-32h32v-32h-32v-32h32v-32h-32V96h32V64h32v32h-32v32h32v32h-32v32h32v32h-32v32h22.1c5.7 0 10.7 4.1 11.8 9.7l17.3 87.7c6.4 32.4-18.4 62.6-51.4 62.6zm32.7-53c0 14.9-14.5 27-32.4 27S96 378 96 363c0-14.9 14.5-27 32.4-27s32.5 12.1 32.5 27zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileAudio.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileAudio.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileAudio.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileAudio.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileAudio.js new file mode 100644 index 0000000000..d33439b305 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileAudio.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'file-audio', icon: [384, 512, [], "f1c7", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileCode.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileCode.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileCode.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileCode.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileCode.js new file mode 100644 index 0000000000..5be166663a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileCode.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'file-code', icon: [384, 512, [], "f1c9", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zM123.206 400.505a5.4 5.4 0 0 1-7.633.246l-64.866-60.812a5.4 5.4 0 0 1 0-7.879l64.866-60.812a5.4 5.4 0 0 1 7.633.246l19.579 20.885a5.4 5.4 0 0 1-.372 7.747L101.65 336l40.763 35.874a5.4 5.4 0 0 1 .372 7.747l-19.579 20.884zm51.295 50.479l-27.453-7.97a5.402 5.402 0 0 1-3.681-6.692l61.44-211.626a5.402 5.402 0 0 1 6.692-3.681l27.452 7.97a5.4 5.4 0 0 1 3.68 6.692l-61.44 211.626a5.397 5.397 0 0 1-6.69 3.681zm160.792-111.045l-64.866 60.812a5.4 5.4 0 0 1-7.633-.246l-19.58-20.885a5.4 5.4 0 0 1 .372-7.747L284.35 336l-40.763-35.874a5.4 5.4 0 0 1-.372-7.747l19.58-20.885a5.4 5.4 0 0 1 7.633-.246l64.866 60.812a5.4 5.4 0 0 1-.001 7.879z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileExcel.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileExcel.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileExcel.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileExcel.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileExcel.js new file mode 100644 index 0000000000..cf75800a4b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileExcel.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'file-excel', icon: [384, 512, [], "f1c3", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm60.1 106.5L224 336l60.1 93.5c5.1 8-.6 18.5-10.1 18.5h-34.9c-4.4 0-8.5-2.4-10.6-6.3C208.9 405.5 192 373 192 373c-6.4 14.8-10 20-36.6 68.8-2.1 3.9-6.1 6.3-10.5 6.3H110c-9.5 0-15.2-10.5-10.1-18.5l60.3-93.5-60.3-93.5c-5.2-8 .6-18.5 10.1-18.5h34.8c4.4 0 8.5 2.4 10.6 6.3 26.1 48.8 20 33.6 36.6 68.5 0 0 6.1-11.7 36.6-68.5 2.1-3.9 6.2-6.3 10.6-6.3H274c9.5-.1 15.2 10.4 10.1 18.4zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileImage.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileImage.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileImage.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileImage.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileImage.js new file mode 100644 index 0000000000..77d8fbb0a2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileImage.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'file-image', icon: [384, 512, [], "f1c5", "M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileMedical.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileMedical.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileMedical.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileMedical.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileMedical.js new file mode 100644 index 0000000000..45f440c9ad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileMedical.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'file-medical', icon: [384, 512, [], "f477", "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 160v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileMedicalAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileMedicalAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileMedicalAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileMedicalAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileMedicalAlt.js new file mode 100644 index 0000000000..55e307b09d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileMedicalAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'file-medical-alt', icon: [448, 512, [], "f478", "M288 136V0H88C74.7 0 64 10.7 64 24v232H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h140.9c3 0 5.8 1.7 7.2 4.4l19.9 39.8 56.8-113.7c2.9-5.9 11.4-5.9 14.3 0l34.7 69.5H352c8.8 0 16 7.2 16 16s-7.2 16-16 16h-89.9L240 275.8l-56.8 113.7c-2.9 5.9-11.4 5.9-14.3 0L134.1 320H64v168c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H312c-13.2 0-24-10.8-24-24zm153-31L343.1 7c-4.5-4.5-10.6-7-17-7H320v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilePdf.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilePdf.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilePdf.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilePdf.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilePdf.js new file mode 100644 index 0000000000..b5d9cd4db3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilePdf.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'file-pdf', icon: [384, 512, [], "f1c1", "M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilePowerpoint.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilePowerpoint.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilePowerpoint.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilePowerpoint.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilePowerpoint.js new file mode 100644 index 0000000000..6311de6f6b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilePowerpoint.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'file-powerpoint', icon: [384, 512, [], "f1c4", "M193.7 271.2c8.8 0 15.5 2.7 20.3 8.1 9.6 10.9 9.8 32.7-.2 44.1-4.9 5.6-11.9 8.5-21.1 8.5h-26.9v-60.7h27.9zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm53 165.2c0 90.3-88.8 77.6-111.1 77.6V436c0 6.6-5.4 12-12 12h-30.8c-6.6 0-12-5.4-12-12V236.2c0-6.6 5.4-12 12-12h81c44.5 0 72.9 32.8 72.9 77z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileVideo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileVideo.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileVideo.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileVideo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileVideo.js new file mode 100644 index 0000000000..6695e2bf4e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileVideo.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'file-video', icon: [384, 512, [], "f1c8", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileWord.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileWord.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileWord.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileWord.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileWord.js new file mode 100644 index 0000000000..190b556677 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFileWord.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'file-word', icon: [384, 512, [], "f1c2", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm57.1 120H305c7.7 0 13.4 7.1 11.7 14.7l-38 168c-1.2 5.5-6.1 9.3-11.7 9.3h-38c-5.5 0-10.3-3.8-11.6-9.1-25.8-103.5-20.8-81.2-25.6-110.5h-.5c-1.1 14.3-2.4 17.4-25.6 110.5-1.3 5.3-6.1 9.1-11.6 9.1H117c-5.6 0-10.5-3.9-11.7-9.4l-37.8-168c-1.7-7.5 4-14.6 11.7-14.6h24.5c5.7 0 10.7 4 11.8 9.7 15.6 78 20.1 109.5 21 122.2 1.6-10.2 7.3-32.7 29.4-122.7 1.3-5.4 6.1-9.1 11.7-9.1h29.1c5.6 0 10.4 3.8 11.7 9.2 24 100.4 28.8 124 29.6 129.4-.2-11.2-2.6-17.8 21.6-129.2 1-5.6 5.9-9.5 11.5-9.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilm.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilm.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilm.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilm.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilm.js new file mode 100644 index 0000000000..4f5dfd8cf6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilm.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'film', icon: [512, 512, [], "f008", "M488 64h-8v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V64H96v20c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12V64h-8C10.7 64 0 74.7 0 88v336c0 13.3 10.7 24 24 24h8v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h320v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h8c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM96 372c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm272 208c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm0-168c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm112 152c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilter.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilter.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilter.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilter.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilter.js new file mode 100644 index 0000000000..7f92fe446b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFilter.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'filter', icon: [512, 512, [], "f0b0", "M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFire.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFire.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFire.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFire.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFire.js new file mode 100644 index 0000000000..0517cbdfb2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFire.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'fire', icon: [384, 512, [], "f06d", "M216 23.858c0-23.802-30.653-32.765-44.149-13.038C48 191.851 224 200 224 288c0 35.629-29.114 64.458-64.85 63.994C123.98 351.538 96 322.22 96 287.046v-85.51c0-21.703-26.471-32.225-41.432-16.504C27.801 213.158 0 261.332 0 320c0 105.869 86.131 192 192 192s192-86.131 192-192c0-170.29-168-193.003-168-296.142z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFireExtinguisher.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFireExtinguisher.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFireExtinguisher.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFireExtinguisher.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFireExtinguisher.js new file mode 100644 index 0000000000..dbc985c338 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFireExtinguisher.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'fire-extinguisher', icon: [448, 512, [], "f134", "M434.027 26.329l-168 28C254.693 56.218 256 67.8 256 72h-58.332C208.353 36.108 181.446 0 144 0c-39.435 0-66.368 39.676-52.228 76.203-52.039 13.051-75.381 54.213-90.049 90.884-4.923 12.307 1.063 26.274 13.37 31.197 12.317 4.926 26.279-1.075 31.196-13.37C75.058 112.99 106.964 120 168 120v27.076c-41.543 10.862-72 49.235-72 94.129V488c0 13.255 10.745 24 24 24h144c13.255 0 24-10.745 24-24V240c0-44.731-30.596-82.312-72-92.97V120h40c0 2.974-1.703 15.716 10.027 17.671l168 28C441.342 166.89 448 161.25 448 153.834V38.166c0-7.416-6.658-13.056-13.973-11.837zM144 72c-8.822 0-16-7.178-16-16s7.178-16 16-16 16 7.178 16 16-7.178 16-16 16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFirstAid.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFirstAid.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFirstAid.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFirstAid.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFirstAid.js new file mode 100644 index 0000000000..319667417e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFirstAid.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'first-aid', icon: [576, 512, [], "f479", "M0 80v352c0 26.5 21.5 48 48 48h48V32H48C21.5 32 0 53.5 0 80zm128 400h320V32H128v448zm64-248c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48zM528 32h-48v448h48c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFlag.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFlag.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFlag.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFlag.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFlag.js new file mode 100644 index 0000000000..87fa2a398f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFlag.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'flag', icon: [512, 512, [], "f024", "M349.565 98.783C295.978 98.783 251.721 64 184.348 64c-24.955 0-47.309 4.384-68.045 12.013a55.947 55.947 0 0 0 3.586-23.562C118.117 24.015 94.806 1.206 66.338.048 34.345-1.254 8 24.296 8 56c0 19.026 9.497 35.825 24 45.945V488c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-94.4c28.311-12.064 63.582-22.122 114.435-22.122 53.588 0 97.844 34.783 165.217 34.783 48.169 0 86.667-16.294 122.505-40.858C506.84 359.452 512 349.571 512 339.045v-243.1c0-23.393-24.269-38.87-45.485-29.016-34.338 15.948-76.454 31.854-116.95 31.854z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFlagCheckered.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFlagCheckered.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFlagCheckered.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFlagCheckered.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFlagCheckered.js new file mode 100644 index 0000000000..c48cead079 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFlagCheckered.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'flag-checkered', icon: [512, 512, [], "f11e", "M466.515 66.928C487.731 57.074 512 72.551 512 95.944v243.1c0 10.526-5.161 20.407-13.843 26.358-35.837 24.564-74.335 40.858-122.505 40.858-67.373 0-111.63-34.783-165.217-34.783-50.853 0-86.124 10.058-114.435 22.122V488c0 13.255-10.745 24-24 24H56c-13.255 0-24-10.745-24-24V101.945C17.497 91.825 8 75.026 8 56 8 24.296 34.345-1.254 66.338.048c28.468 1.158 51.779 23.968 53.551 52.404.52 8.342-.81 16.31-3.586 23.562C137.039 68.384 159.393 64 184.348 64c67.373 0 111.63 34.783 165.217 34.783 40.496 0 82.612-15.906 116.95-31.855zM96 134.63v70.49c29-10.67 51.18-17.83 73.6-20.91v-71.57c-23.5 2.17-40.44 9.79-73.6 21.99zm220.8 9.19c-26.417-4.672-49.886-13.979-73.6-21.34v67.42c24.175 6.706 47.566 16.444 73.6 22.31v-68.39zm-147.2 40.39v70.04c32.796-2.978 53.91-.635 73.6 3.8V189.9c-25.247-7.035-46.581-9.423-73.6-5.69zm73.6 142.23c26.338 4.652 49.732 13.927 73.6 21.34v-67.41c-24.277-6.746-47.54-16.45-73.6-22.32v68.39zM96 342.1c23.62-8.39 47.79-13.84 73.6-16.56v-71.29c-26.11 2.35-47.36 8.04-73.6 17.36v70.49zm368-221.6c-21.3 8.85-46.59 17.64-73.6 22.47v71.91c27.31-4.36 50.03-14.1 73.6-23.89V120.5zm0 209.96v-70.49c-22.19 14.2-48.78 22.61-73.6 26.02v71.58c25.07-2.38 48.49-11.04 73.6-27.11zM316.8 212.21v68.16c25.664 7.134 46.616 9.342 73.6 5.62v-71.11c-25.999 4.187-49.943 2.676-73.6-2.67z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFlask.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFlask.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFlask.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFlask.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFlask.js new file mode 100644 index 0000000000..5154991e71 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFlask.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'flask', icon: [448, 512, [], "f0c3", "M437.2 403.5L320 215V64h8c13.3 0 24-10.7 24-24V24c0-13.3-10.7-24-24-24H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h8v151L10.8 403.5C-18.5 450.6 15.3 512 70.9 512h306.2c55.7 0 89.4-61.5 60.1-108.5zM137.9 320l48.2-77.6c3.7-5.2 5.8-11.6 5.8-18.4V64h64v160c0 6.9 2.2 13.2 5.8 18.4l48.2 77.6h-172z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFolder.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFolder.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFolder.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFolder.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFolder.js new file mode 100644 index 0000000000..35090695f3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFolder.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'folder', icon: [512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFolderOpen.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFolderOpen.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFolderOpen.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFolderOpen.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFolderOpen.js new file mode 100644 index 0000000000..41510432f7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFolderOpen.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'folder-open', icon: [576, 512, [], "f07c", "M572.694 292.093L500.27 416.248A63.997 63.997 0 0 1 444.989 448H45.025c-18.523 0-30.064-20.093-20.731-36.093l72.424-124.155A64 64 0 0 1 152 256h399.964c18.523 0 30.064 20.093 20.73 36.093zM152 224h328v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v278.046l69.077-118.418C86.214 242.25 117.989 224 152 224z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFont.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFont.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFont.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFont.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFont.js new file mode 100644 index 0000000000..f81caa8bf4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFont.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'font', icon: [448, 512, [], "f031", "M152 416h-24.013l26.586-80.782H292.8L319.386 416H296c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-26.739L275.495 42.746A16 16 0 0 0 260.382 32h-72.766a16 16 0 0 0-15.113 10.746L42.739 416H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm64.353-271.778c4.348-15.216 6.61-28.156 7.586-34.644.839 6.521 2.939 19.476 7.727 34.706l41.335 124.006h-98.619l41.971-124.068z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFontAwesomeLogoFull.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFontAwesomeLogoFull.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFontAwesomeLogoFull.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFontAwesomeLogoFull.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFontAwesomeLogoFull.js new file mode 100644 index 0000000000..73c9db6455 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFontAwesomeLogoFull.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'font-awesome-logo-full', icon: [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFootballBall.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFootballBall.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFootballBall.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFootballBall.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFootballBall.js new file mode 100644 index 0000000000..83612f9ed7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFootballBall.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'football-ball', icon: [496, 512, [], "f44e", "M481.5 60.3c-4.8-18.2-19.1-32.5-37.3-37.4C420.3 16.5 383 8.9 339.4 8L496 164.8c-.8-43.5-8.2-80.6-14.5-104.5zm-467 391.4c4.8 18.2 19.1 32.5 37.3 37.4 23.9 6.4 61.2 14 104.8 14.9L0 347.2c.8 43.5 8.2 80.6 14.5 104.5zM4.2 283.4L220.4 500c132.5-19.4 248.8-118.7 271.5-271.4L275.6 12C143.1 31.4 26.8 130.7 4.2 283.4zm317.3-123.6c3.1-3.1 8.2-3.1 11.3 0l11.3 11.3c3.1 3.1 3.1 8.2 0 11.3l-28.3 28.3 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-22.6 22.7 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L248 278.6l-22.6 22.6 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-28.3 28.3c-3.1 3.1-8.2 3.1-11.3 0l-11.3-11.3c-3.1-3.1-3.1-8.2 0-11.3l28.3-28.3-28.3-28.2c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 28.3-28.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faForward.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faForward.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faForward.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faForward.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faForward.js new file mode 100644 index 0000000000..df9185243c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faForward.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'forward', icon: [512, 512, [], "f04e", "M500.5 231.4l-192-160C287.9 54.3 256 68.6 256 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2zm-256 0l-192-160C31.9 54.3 0 68.6 0 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFrog.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFrog.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFrog.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFrog.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFrog.js new file mode 100644 index 0000000000..3a95eca90a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFrog.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'frog', icon: [576, 512, [], "f52e", "M446.53 97.43C439.67 60.23 407.19 32 368 32c-39.23 0-71.72 28.29-78.54 65.54C126.75 112.96-.5 250.12 0 416.98.11 451.9 29.08 480 64 480h304c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-79.49l35.8-48.33c24.14-36.23 10.35-88.28-33.71-106.6-23.89-9.93-51.55-4.65-72.24 10.88l-32.76 24.59c-7.06 5.31-17.09 3.91-22.41-3.19-5.3-7.08-3.88-17.11 3.19-22.41l34.78-26.09c36.84-27.66 88.28-27.62 125.13 0 10.87 8.15 45.87 39.06 40.8 93.21L469.62 480H560c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-53.63l-98.52-104.68 154.44-86.65A58.16 58.16 0 0 0 576 189.94c0-21.4-11.72-40.95-30.48-51.23-40.56-22.22-98.99-41.28-98.99-41.28zM368 136c-13.26 0-24-10.75-24-24 0-13.26 10.74-24 24-24 13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFrown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFrown.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFrown.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFrown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFrown.js new file mode 100644 index 0000000000..0bbd608813 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFrown.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'frown', icon: [496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm192.7 220.3c-3 2.5-6.6 3.7-10.2 3.7-4.6 0-9.1-2-12.3-5.8-22.4-26.8-55.3-42.2-90.2-42.2s-67.8 15.4-90.2 42.2c-5.6 6.8-15.7 7.7-22.5 2-6.8-5.7-7.7-15.7-2-22.5C161.7 339.6 203.6 320 248 320s86.3 19.6 114.7 53.8c5.7 6.7 4.8 16.8-2 22.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFutbol.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFutbol.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFutbol.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFutbol.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFutbol.js new file mode 100644 index 0000000000..9327516bef --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faFutbol.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'futbol', icon: [512, 512, [], "f1e3", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-48 0l-.003-.282-26.064 22.741-62.679-58.5 16.454-84.355 34.303 3.072c-24.889-34.216-60.004-60.089-100.709-73.141l13.651 31.939L256 139l-74.953-41.525 13.651-31.939c-40.631 13.028-75.78 38.87-100.709 73.141l34.565-3.073 16.192 84.355-62.678 58.5-26.064-22.741-.003.282c0 43.015 13.497 83.952 38.472 117.991l7.704-33.897 85.138 10.447 36.301 77.826-29.902 17.786c40.202 13.122 84.29 13.148 124.572 0l-29.902-17.786 36.301-77.826 85.138-10.447 7.704 33.897C442.503 339.952 456 299.015 456 256zm-248.102 69.571l-29.894-91.312L256 177.732l77.996 56.527-29.622 91.312h-96.476z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGamepad.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGamepad.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGamepad.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGamepad.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGamepad.js new file mode 100644 index 0000000000..3bba5cf92b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGamepad.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'gamepad', icon: [640, 512, [], "f11b", "M480 96H160C71.6 96 0 167.6 0 256s71.6 160 160 160c44.8 0 85.2-18.4 114.2-48h91.5c29 29.6 69.5 48 114.2 48 88.4 0 160-71.6 160-160S568.4 96 480 96zM256 276c0 6.6-5.4 12-12 12h-52v52c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-52H76c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h52v-52c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h52c6.6 0 12 5.4 12 12v40zm184 68c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-80c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGasPump.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGasPump.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGasPump.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGasPump.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGasPump.js new file mode 100644 index 0000000000..5ae9b07bff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGasPump.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'gas-pump', icon: [512, 512, [], "f52f", "M336 448H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm157.2-340.7l-81-81c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-6.2 6.2-6.2 16.4 0 22.6L416 97.9V160c0 28.1 20.9 51.3 48 55.2V376c0 13.2-10.8 24-24 24s-24-10.8-24-24v-32c0-48.6-39.4-88-88-88h-8V64c0-35.3-28.7-64-64-64H96C60.7 0 32 28.7 32 64v352h288V304h8c22.1 0 40 17.9 40 40v27.8c0 37.7 27 72 64.5 75.9 43 4.3 79.5-29.5 79.5-71.7V152.6c0-17-6.8-33.3-18.8-45.3zM256 192H96V64h160v128z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGavel.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGavel.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGavel.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGavel.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGavel.js new file mode 100644 index 0000000000..a071fd2e1e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGavel.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'gavel', icon: [512, 512, [], "f0e3", "M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGem.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGem.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGem.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGem.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGem.js new file mode 100644 index 0000000000..634c09d99d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGem.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'gem', icon: [576, 512, [], "f3a5", "M485.5 0L576 160H474.9L405.7 0h79.8zm-128 0l69.2 160H149.3L218.5 0h139zm-267 0h79.8l-69.2 160H0L90.5 0zM0 192h100.7l123 251.7c1.5 3.1-2.7 5.9-5 3.3L0 192zm148.2 0h279.6l-137 318.2c-1 2.4-4.5 2.4-5.5 0L148.2 192zm204.1 251.7l123-251.7H576L357.3 446.9c-2.3 2.7-6.5-.1-5-3.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGenderless.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGenderless.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGenderless.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGenderless.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGenderless.js new file mode 100644 index 0000000000..dfce16b91b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGenderless.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'genderless', icon: [288, 512, [], "f22d", "M144 176c44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80 35.9-80 80-80m0-64C64.5 112 0 176.5 0 256s64.5 144 144 144 144-64.5 144-144-64.5-144-144-144z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGift.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGift.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGift.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGift.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGift.js new file mode 100644 index 0000000000..ff4ee504dd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGift.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'gift', icon: [512, 512, [], "f06b", "M32 448c0 17.7 14.3 32 32 32h160V320H32v128zm448-288h-42.1c6.2-12.1 10.1-25.5 10.1-40 0-48.5-39.5-88-88-88-41.6 0-68.5 21.3-103 68.3-34.5-47-61.4-68.3-103-68.3-48.5 0-88 39.5-88 88 0 14.5 3.8 27.9 10.1 40H32c-17.7 0-32 14.3-32 32v80c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-80c0-17.7-14.3-32-32-32zm-326.1 0c-22.1 0-40-17.9-40-40s17.9-40 40-40c19.9 0 34.6 3.3 86.1 80h-86.1zm206.1 0h-86.1c51.4-76.5 65.7-80 86.1-80 22.1 0 40 17.9 40 40s-17.9 40-40 40zm-72 320h160c17.7 0 32-14.3 32-32V320H288v160z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGlassMartini.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGlassMartini.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGlassMartini.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGlassMartini.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGlassMartini.js new file mode 100644 index 0000000000..e5b5c97938 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGlassMartini.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'glass-martini', icon: [512, 512, [], "f000", "M507.3 27.3c10-10 2.9-27.3-11.3-27.3H16C1.8 0-5.4 17.2 4.7 27.3L216 238.6V472h-92c-15.5 0-28 12.5-28 28 0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12 0-15.5-12.5-28-28-28h-92V238.6L507.3 27.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGlasses.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGlasses.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGlasses.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGlasses.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGlasses.js new file mode 100644 index 0000000000..40ef6d9e6a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGlasses.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'glasses', icon: [576, 512, [], "f530", "M574.1 280.37L528.75 98.66c-5.91-23.7-21.59-44.05-43-55.81-21.44-11.73-46.97-14.11-70.19-6.33l-15.25 5.08c-8.39 2.79-12.92 11.86-10.12 20.24l5.06 15.18c2.79 8.38 11.85 12.91 20.23 10.12l13.18-4.39c10.87-3.62 23-3.57 33.16 1.73 10.29 5.37 17.57 14.56 20.37 25.82l38.46 153.82c-22.19-6.81-49.79-12.46-81.2-12.46-34.77 0-73.98 7.02-114.85 26.74h-73.18c-40.87-19.74-80.08-26.75-114.86-26.75-31.42 0-59.02 5.65-81.21 12.46l38.46-153.83c2.79-11.25 10.09-20.45 20.38-25.81 10.16-5.3 22.28-5.35 33.15-1.73l13.17 4.39c8.38 2.79 17.44-1.74 20.23-10.12l5.06-15.18c2.8-8.38-1.73-17.45-10.12-20.24l-15.25-5.08c-23.22-7.78-48.75-5.41-70.19 6.33-21.41 11.77-37.09 32.11-43 55.8L1.9 280.37A64.218 64.218 0 0 0 0 295.86v70.25C0 429.01 51.58 480 115.2 480h37.12c60.28 0 110.37-45.94 114.88-105.37l2.93-38.63h35.75l2.93 38.63C313.31 434.06 363.4 480 423.68 480h37.12c63.62 0 115.2-50.99 115.2-113.88v-70.25c0-5.23-.64-10.43-1.9-15.5zm-370.72 89.42c-1.97 25.91-24.4 46.21-51.06 46.21H115.2C86.97 416 64 393.62 64 366.11v-37.54c18.12-6.49 43.42-12.92 72.58-12.92 23.86 0 47.26 4.33 69.93 12.92l-3.13 41.22zM512 366.12c0 27.51-22.97 49.88-51.2 49.88h-37.12c-26.67 0-49.1-20.3-51.06-46.21l-3.13-41.22c22.67-8.59 46.08-12.92 69.95-12.92 29.12 0 54.43 6.44 72.55 12.93v37.54z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGlobe.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGlobe.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGlobe.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGlobe.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGlobe.js new file mode 100644 index 0000000000..9aaa66f2a4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGlobe.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'globe', icon: [496, 512, [], "f0ac", "M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGolfBall.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGolfBall.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGolfBall.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGolfBall.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGolfBall.js new file mode 100644 index 0000000000..94a03a2069 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGolfBall.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'golf-ball', icon: [416, 512, [], "f450", "M96 416h224c0 17.7-14.3 32-32 32h-16c-17.7 0-32 14.3-32 32v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-20c0-17.7-14.3-32-32-32h-16c-17.7 0-32-14.3-32-32zm320-208c0 74.2-39 139.2-97.5 176h-221C39 347.2 0 282.2 0 208 0 93.1 93.1 0 208 0s208 93.1 208 208zm-180.1 43.9c18.3 0 33.1-14.8 33.1-33.1 0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1zm49.1 46.9c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1zm64-64c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGraduationCap.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGraduationCap.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGraduationCap.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGraduationCap.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGraduationCap.js new file mode 100644 index 0000000000..ce1dc63b23 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGraduationCap.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'graduation-cap', icon: [640, 512, [], "f19d", "M622.884 199.005l-275.817 85.1a96 96 0 0 1-54.134 0L92.398 222.232c-8.564 11.438-11.018 23.05-11.918 38.335C89.778 266.165 96 276.355 96 288c0 11.952-6.557 22.366-16.265 27.861l16.197 123.096c.63 4.786-3.1 9.043-7.932 9.043H40c-4.828 0-8.562-4.253-7.932-9.044L48.265 315.86C38.557 310.366 32 299.952 32 288c0-12.034 6.646-22.511 16.465-27.976.947-17.951 3.974-33.231 12.152-47.597l-43.502-13.422c-22.876-6.801-22.766-39.241 0-46.01l275.817-85.1a96 96 0 0 1 54.134 0l275.817 85.1c22.877 6.801 22.767 39.241.001 46.01zM356.503 314.682l-.207.064-.207.061a127.998 127.998 0 0 1-72.177 0l-.207-.061-.207-.064-150.914-46.57L120 352c0 35.346 89.543 64 200 64s200-28.654 200-64l-12.583-83.888-150.914 46.57z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGreaterThan.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGreaterThan.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGreaterThan.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGreaterThan.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGreaterThan.js new file mode 100644 index 0000000000..a7ceddfc23 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGreaterThan.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'greater-than', icon: [384, 512, [], "f531", "M365.52 209.85L59.22 67.01c-16.06-7.49-35.15-.54-42.64 15.52L3.01 111.61c-7.49 16.06-.54 35.15 15.52 42.64L236.96 256.1 18.49 357.99C2.47 365.46-4.46 384.5 3.01 400.52l13.52 29C24 445.54 43.04 452.47 59.06 445l306.47-142.91a32.003 32.003 0 0 0 18.48-29v-34.23c-.01-12.45-7.21-23.76-18.49-29.01z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGreaterThanEqual.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGreaterThanEqual.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGreaterThanEqual.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGreaterThanEqual.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGreaterThanEqual.js new file mode 100644 index 0000000000..7a7ab9b37f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faGreaterThanEqual.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'greater-than-equal', icon: [448, 512, [], "f532", "M55.22 107.69l175.56 68.09-175.44 68.05c-18.39 6.03-27.88 24.39-21.2 41l12.09 30.08c6.68 16.61 26.99 25.19 45.38 19.15L393.02 214.2c13.77-4.52 22.98-16.61 22.98-30.17v-15.96c0-13.56-9.21-25.65-22.98-30.17L91.3 17.92c-18.29-6-38.51 2.53-45.15 19.06L34.12 66.9c-6.64 16.53 2.81 34.79 21.1 40.79zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHSquare.js new file mode 100644 index 0000000000..cb9c9fd55d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'h-square', icon: [448, 512, [], "f0fd", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-112 48h-32c-8.837 0-16 7.163-16 16v80H160v-80c0-8.837-7.163-16-16-16h-32c-8.837 0-16 7.163-16 16v224c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16v-80h128v80c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144c0-8.837-7.163-16-16-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandHolding.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandHolding.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandHolding.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandHolding.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandHolding.js new file mode 100644 index 0000000000..78171de917 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandHolding.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hand-holding', icon: [576, 512, [], "f4bd", "M565.3 328.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandHoldingHeart.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandHoldingHeart.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandHoldingHeart.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandHoldingHeart.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandHoldingHeart.js new file mode 100644 index 0000000000..d3decc5fe3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandHoldingHeart.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hand-holding-heart', icon: [576, 512, [], "f4be", "M275.3 250.5c7 7.4 18.4 7.4 25.5 0l108.9-114.2c31.6-33.2 29.8-88.2-5.6-118.8-30.8-26.7-76.7-21.9-104.9 7.7L288 36.9l-11.1-11.6C248.7-4.4 202.8-9.2 172 17.5c-35.3 30.6-37.2 85.6-5.6 118.8l108.9 114.2zm290 77.6c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandHoldingUsd.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandHoldingUsd.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandHoldingUsd.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandHoldingUsd.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandHoldingUsd.js new file mode 100644 index 0000000000..79e3009e08 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandHoldingUsd.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hand-holding-usd', icon: [544, 512, [], "f4c0", "M257.6 144.3l50 14.3c3.6 1 6.1 4.4 6.1 8.1 0 4.6-3.8 8.4-8.4 8.4h-32.8c-3.6 0-7.1-.8-10.3-2.2-4.8-2.2-10.4-1.7-14.1 2l-17.5 17.5c-5.3 5.3-4.7 14.3 1.5 18.4 9.5 6.3 20.3 10.1 31.8 11.5V240c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16v-17.6c30.3-3.6 53.3-31 49.3-63-2.9-23-20.7-41.3-42.9-47.7l-50-14.3c-3.6-1-6.1-4.4-6.1-8.1 0-4.6 3.8-8.4 8.4-8.4h32.8c3.6 0 7.1.8 10.3 2.2 4.8 2.2 10.4 1.7 14.1-2l17.5-17.5c5.3-5.3 4.7-14.3-1.5-18.4-9.5-6.3-20.3-10.1-31.8-11.5V16c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16v17.6c-30.3 3.6-53.3 31-49.3 63 2.9 23 20.7 41.3 42.9 47.7zm276.3 183.8c-11.2-10.7-28.5-10-40.3 0L406.4 402c-10.7 9.1-24 14-37.8 14H256.9c-8.3 0-15.1-7.2-15.1-16s6.8-16 15.1-16h73.9c15.1 0 29-10.9 31.4-26.6 3.1-20-11.5-37.4-29.8-37.4H181.3c-25.5 0-50.2 9.3-69.9 26.3L67.5 384H15.1C6.8 384 0 391.2 0 400v96c0 8.8 6.8 16 15.1 16H352c13.7 0 27-4.9 37.8-14l142.8-121c14.4-12.1 15.5-35.3 1.3-48.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandLizard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandLizard.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandLizard.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandLizard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandLizard.js new file mode 100644 index 0000000000..75629d5c32 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandLizard.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hand-lizard', icon: [576, 512, [], "f258", "M384 480h192V363.778a95.998 95.998 0 0 0-14.833-51.263L398.127 54.368A48 48 0 0 0 357.544 32H24C10.745 32 0 42.745 0 56v16c0 30.928 25.072 56 56 56h229.981c12.844 0 21.556 13.067 16.615 24.923l-21.41 51.385A32 32 0 0 1 251.648 224H128c-35.346 0-64 28.654-64 64v8c0 13.255 10.745 24 24 24h147.406a47.995 47.995 0 0 1 25.692 7.455l111.748 70.811A24.001 24.001 0 0 1 384 418.539V480z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPaper.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPaper.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPaper.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPaper.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPaper.js new file mode 100644 index 0000000000..cf90525321 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPaper.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hand-paper', icon: [448, 512, [], "f256", "M408.781 128.007C386.356 127.578 368 146.36 368 168.79V256h-8V79.79c0-22.43-18.356-41.212-40.781-40.783C297.488 39.423 280 57.169 280 79v177h-8V40.79C272 18.36 253.644-.422 231.219.007 209.488.423 192 18.169 192 40v216h-8V80.79c0-22.43-18.356-41.212-40.781-40.783C121.488 40.423 104 58.169 104 80v235.992l-31.648-43.519c-12.993-17.866-38.009-21.817-55.877-8.823-17.865 12.994-21.815 38.01-8.822 55.877l125.601 172.705A48 48 0 0 0 172.073 512h197.59c22.274 0 41.622-15.324 46.724-37.006l26.508-112.66a192.011 192.011 0 0 0 5.104-43.975V168c.001-21.831-17.487-39.577-39.218-39.993z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPeace.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPeace.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPeace.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPeace.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPeace.js new file mode 100644 index 0000000000..2a9c32ed17 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPeace.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hand-peace', icon: [448, 512, [], "f25b", "M408 216c-22.092 0-40 17.909-40 40h-8v-32c0-22.091-17.908-40-40-40s-40 17.909-40 40v32h-8V48c0-26.51-21.49-48-48-48s-48 21.49-48 48v208h-13.572L92.688 78.449C82.994 53.774 55.134 41.63 30.461 51.324 5.787 61.017-6.356 88.877 3.337 113.551l74.765 190.342-31.09 24.872c-15.381 12.306-19.515 33.978-9.741 51.081l64 112A39.998 39.998 0 0 0 136 512h240c18.562 0 34.686-12.77 38.937-30.838l32-136A39.97 39.97 0 0 0 448 336v-80c0-22.091-17.908-40-40-40z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointDown.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointDown.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointDown.js new file mode 100644 index 0000000000..dcc7a83fda --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointDown.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hand-point-down', icon: [384, 512, [], "f0a7", "M91.826 467.2V317.966c-8.248 5.841-16.558 10.57-24.918 14.153C35.098 345.752-.014 322.222 0 288c.008-18.616 10.897-32.203 29.092-40 28.286-12.122 64.329-78.648 77.323-107.534 7.956-17.857 25.479-28.453 43.845-28.464l.001-.002h171.526c11.812 0 21.897 8.596 23.703 20.269 7.25 46.837 38.483 61.76 38.315 123.731-.007 2.724.195 13.254.195 16 0 50.654-22.122 81.574-71.263 72.6-9.297 18.597-39.486 30.738-62.315 16.45-21.177 24.645-53.896 22.639-70.944 6.299V467.2c0 24.15-20.201 44.8-43.826 44.8-23.283 0-43.826-21.35-43.826-44.8zM112 72V24c0-13.255 10.745-24 24-24h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24zm212-24c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointLeft.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointLeft.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointLeft.js new file mode 100644 index 0000000000..359a6ce445 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointLeft.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hand-point-left', icon: [512, 512, [], "f0a5", "M44.8 155.826h149.234c-5.841-8.248-10.57-16.558-14.153-24.918C166.248 99.098 189.778 63.986 224 64c18.616.008 32.203 10.897 40 29.092 12.122 28.286 78.648 64.329 107.534 77.323 17.857 7.956 28.453 25.479 28.464 43.845l.002.001v171.526c0 11.812-8.596 21.897-20.269 23.703-46.837 7.25-61.76 38.483-123.731 38.315-2.724-.007-13.254.195-16 .195-50.654 0-81.574-22.122-72.6-71.263-18.597-9.297-30.738-39.486-16.45-62.315-24.645-21.177-22.639-53.896-6.299-70.944H44.8c-24.15 0-44.8-20.201-44.8-43.826 0-23.283 21.35-43.826 44.8-43.826zM440 176h48c13.255 0 24 10.745 24 24v192c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24zm24 212c11.046 0 20-8.954 20-20s-8.954-20-20-20-20 8.954-20 20 8.954 20 20 20z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointRight.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointRight.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointRight.js new file mode 100644 index 0000000000..80097060d9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointRight.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hand-point-right', icon: [512, 512, [], "f0a4", "M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointUp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointUp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointUp.js new file mode 100644 index 0000000000..69f6beca80 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointUp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hand-point-up', icon: [384, 512, [], "f0a6", "M135.652 0c23.625 0 43.826 20.65 43.826 44.8v99.851c17.048-16.34 49.766-18.346 70.944 6.299 22.829-14.288 53.017-2.147 62.315 16.45C361.878 158.426 384 189.346 384 240c0 2.746-.203 13.276-.195 16 .168 61.971-31.065 76.894-38.315 123.731C343.683 391.404 333.599 400 321.786 400H150.261l-.001-.002c-18.366-.011-35.889-10.607-43.845-28.464C93.421 342.648 57.377 276.122 29.092 264 10.897 256.203.008 242.616 0 224c-.014-34.222 35.098-57.752 66.908-44.119 8.359 3.583 16.67 8.312 24.918 14.153V44.8c0-23.45 20.543-44.8 43.826-44.8zM136 416h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24v-48c0-13.255 10.745-24 24-24zm168 28c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointer.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointer.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointer.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointer.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointer.js new file mode 100644 index 0000000000..f4aea6e9b3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandPointer.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hand-pointer', icon: [448, 512, [], "f25a", "M448 240v96c0 3.084-.356 6.159-1.063 9.162l-32 136C410.686 499.23 394.562 512 376 512H168a40.004 40.004 0 0 1-32.35-16.473l-127.997-176c-12.993-17.866-9.043-42.883 8.822-55.876 17.867-12.994 42.884-9.043 55.877 8.823L104 315.992V40c0-22.091 17.908-40 40-40s40 17.909 40 40v200h8v-40c0-22.091 17.908-40 40-40s40 17.909 40 40v40h8v-24c0-22.091 17.908-40 40-40s40 17.909 40 40v24h8c0-22.091 17.908-40 40-40s40 17.909 40 40zm-256 80h-8v96h8v-96zm88 0h-8v96h8v-96zm88 0h-8v96h8v-96z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandRock.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandRock.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandRock.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandRock.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandRock.js new file mode 100644 index 0000000000..05533f44ed --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandRock.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hand-rock', icon: [512, 512, [], "f255", "M512 128.79c0-26.322-20.861-48.344-47.18-48.783C437.935 79.558 416 101.217 416 128h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C333.935 47.558 312 69.217 312 96v32h-8V80.79c0-26.322-20.861-48.344-47.18-48.783C229.935 31.558 208 53.217 208 80v48h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C125.935 47.558 104 69.217 104 96v136l-8-7.111V176.79c0-26.322-20.861-48.344-47.18-48.783C21.935 127.558 0 149.217 0 176v66.445a95.998 95.998 0 0 0 32.221 71.751l111.668 99.261A47.999 47.999 0 0 1 160 449.333V456c0 13.255 10.745 24 24 24h240c13.255 0 24-10.745 24-24v-2.921a96.01 96.01 0 0 1 7.523-37.254l48.954-116.265A96.002 96.002 0 0 0 512 262.306V128.79z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandScissors.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandScissors.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandScissors.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandScissors.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandScissors.js new file mode 100644 index 0000000000..5186ac6e42 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandScissors.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hand-scissors', icon: [512, 512, [], "f257", "M216 440c0-22.092 17.909-40 40-40v-8h-32c-22.091 0-40-17.908-40-40s17.909-40 40-40h32v-8H48c-26.51 0-48-21.49-48-48s21.49-48 48-48h208v-13.572l-177.551-69.74c-24.674-9.694-36.818-37.555-27.125-62.228 9.693-24.674 37.554-36.817 62.228-27.124l190.342 74.765 24.872-31.09c12.306-15.381 33.978-19.515 51.081-9.741l112 64A40.002 40.002 0 0 1 512 168v240c0 18.562-12.77 34.686-30.838 38.937l-136 32A39.982 39.982 0 0 1 336 480h-80c-22.091 0-40-17.908-40-40z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandSpock.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandSpock.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandSpock.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandSpock.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandSpock.js new file mode 100644 index 0000000000..614c4d1d33 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandSpock.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hand-spock', icon: [512, 512, [], "f259", "M10.872 316.585c15.139-16.086 40.454-16.854 56.543-1.713L128 371.893v-79.405L88.995 120.865c-4.896-21.542 8.598-42.974 30.14-47.87 21.549-4.894 42.975 8.599 47.87 30.141L201.747 256h9.833L164.016 48.966c-4.946-21.531 8.498-42.994 30.028-47.94 21.532-4.95 42.994 8.498 47.94 30.028L293.664 256h15.105l48.425-193.702c5.357-21.432 27.075-34.462 48.507-29.104 21.432 5.358 34.463 27.075 29.104 48.507L391.231 256h11.08l30.768-129.265c5.117-21.491 26.685-34.768 48.177-29.647 21.491 5.117 34.765 26.686 29.647 48.177l-36.292 152.467A96.024 96.024 0 0 0 472 319.967v42.102a96.002 96.002 0 0 1-3.96 27.287l-26.174 88.287C435.825 498.022 417.101 512 395.846 512H179.172a48.002 48.002 0 0 1-32.898-13.046L12.585 373.128c-16.087-15.141-16.853-40.456-1.713-56.543z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHands.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHands.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHands.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHands.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHands.js new file mode 100644 index 0000000000..d85104f9d2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHands.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hands', icon: [640, 512, [], "f4c2", "M204.8 230.4c-10.6-14.1-30.7-17-44.8-6.4-14.1 10.6-17 30.7-6.4 44.8l38.1 50.8c4.8 6.4 4.1 15.3-1.5 20.9l-12.8 12.8c-6.7 6.7-17.6 6.2-23.6-1.1L64 244.4V96c0-17.7-14.3-32-32-32S0 78.3 0 96v218.4c0 10.9 3.7 21.5 10.5 30l104.1 134.3c5 6.5 8.4 13.9 10.4 21.7 1.8 6.9 8.1 11.6 15.3 11.6H272c8.8 0 16-7.2 16-16V384c0-27.7-9-54.6-25.6-76.8l-57.6-76.8zM608 64c-17.7 0-32 14.3-32 32v148.4l-89.8 107.8c-6 7.2-17 7.7-23.6 1.1l-12.8-12.8c-5.6-5.6-6.3-14.5-1.5-20.9l38.1-50.8c10.6-14.1 7.7-34.2-6.4-44.8-14.1-10.6-34.2-7.7-44.8 6.4l-57.6 76.8C361 329.4 352 356.3 352 384v112c0 8.8 7.2 16 16 16h131.7c7.1 0 13.5-4.7 15.3-11.6 2-7.8 5.4-15.2 10.4-21.7l104.1-134.3c6.8-8.5 10.5-19.1 10.5-30V96c0-17.7-14.3-32-32-32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandsHelping.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandsHelping.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandsHelping.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandsHelping.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandsHelping.js new file mode 100644 index 0000000000..544e54fa6e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandsHelping.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hands-helping', icon: [640, 512, [], "f4c4", "M488 192H336v56c0 39.7-32.3 72-72 72s-72-32.3-72-72V126.4l-64.9 39C107.8 176.9 96 197.8 96 220.2v47.3l-80 46.2C.7 322.5-4.6 342.1 4.3 357.4l80 138.6c8.8 15.3 28.4 20.5 43.7 11.7L231.4 448H368c35.3 0 64-28.7 64-64h16c17.7 0 32-14.3 32-32v-64h8c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zm147.7-37.4L555.7 16C546.9.7 527.3-4.5 512 4.3L408.6 64H306.4c-12 0-23.7 3.4-33.9 9.7L239 94.6c-9.4 5.8-15 16.1-15 27.1V248c0 22.1 17.9 40 40 40s40-17.9 40-40v-88h184c30.9 0 56 25.1 56 56v28.5l80-46.2c15.3-8.9 20.5-28.4 11.7-43.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandshake.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandshake.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandshake.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandshake.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandshake.js new file mode 100644 index 0000000000..f5f676e984 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHandshake.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'handshake', icon: [640, 512, [], "f2b5", "M434.7 64h-85.9c-8 0-15.7 3-21.6 8.4l-98.3 90c-.1.1-.2.3-.3.4-16.6 15.6-16.3 40.5-2.1 56 12.7 13.9 39.4 17.6 56.1 2.7.1-.1.3-.1.4-.2l79.9-73.2c6.5-5.9 16.7-5.5 22.6 1 6 6.5 5.5 16.6-1 22.6l-26.1 23.9L504 313.8c2.9 2.4 5.5 5 7.9 7.7V128l-54.6-54.6c-5.9-6-14.1-9.4-22.6-9.4zM544 128.2v223.9c0 17.7 14.3 32 32 32h64V128.2h-96zm48 223.9c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM0 384h64c17.7 0 32-14.3 32-32V128.2H0V384zm48-63.9c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16c0-8.9 7.2-16 16-16zm435.9 18.6L334.6 217.5l-30 27.5c-29.7 27.1-75.2 24.5-101.7-4.4-26.9-29.4-24.8-74.9 4.4-101.7L289.1 64h-83.8c-8.5 0-16.6 3.4-22.6 9.4L128 128v223.9h18.3l90.5 81.9c27.4 22.3 67.7 18.1 90-9.3l.2-.2 17.9 15.5c15.9 13 39.4 10.5 52.3-5.4l31.4-38.6 5.4 4.4c13.7 11.1 33.9 9.1 45-4.7l9.5-11.7c11.2-13.8 9.1-33.9-4.6-45.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHashtag.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHashtag.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHashtag.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHashtag.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHashtag.js new file mode 100644 index 0000000000..fddaaeb51b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHashtag.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hashtag', icon: [448, 512, [], "f292", "M440.667 182.109l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l14.623-81.891C377.123 38.754 371.468 32 363.997 32h-40.632a12 12 0 0 0-11.813 9.891L296.175 128H197.54l14.623-81.891C213.477 38.754 207.822 32 200.35 32h-40.632a12 12 0 0 0-11.813 9.891L132.528 128H53.432a12 12 0 0 0-11.813 9.891l-7.143 40C33.163 185.246 38.818 192 46.289 192h74.81L98.242 320H19.146a12 12 0 0 0-11.813 9.891l-7.143 40C-1.123 377.246 4.532 384 12.003 384h74.81L72.19 465.891C70.877 473.246 76.532 480 84.003 480h40.632a12 12 0 0 0 11.813-9.891L151.826 384h98.634l-14.623 81.891C234.523 473.246 240.178 480 247.65 480h40.632a12 12 0 0 0 11.813-9.891L315.472 384h79.096a12 12 0 0 0 11.813-9.891l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l22.857-128h79.096a12 12 0 0 0 11.813-9.891zM261.889 320h-98.634l22.857-128h98.634l-22.857 128z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHdd.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHdd.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHdd.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHdd.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHdd.js new file mode 100644 index 0000000000..c797ac378e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHdd.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hdd', icon: [576, 512, [], "f0a0", "M576 304v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48zm-48-80a79.557 79.557 0 0 1 30.777 6.165L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L17.223 230.165A79.557 79.557 0 0 1 48 224h480zm-48 96c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm-96 0c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeading.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeading.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeading.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeading.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeading.js new file mode 100644 index 0000000000..98963eec13 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeading.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'heading', icon: [512, 512, [], "f1dc", "M496 80V48c0-8.837-7.163-16-16-16H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.621v128H154.379V96H192c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.275v320H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.621V288H357.62v128H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.275V96H480c8.837 0 16-7.163 16-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeadphones.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeadphones.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeadphones.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeadphones.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeadphones.js new file mode 100644 index 0000000000..ffc268b850 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeadphones.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'headphones', icon: [512, 512, [], "f025", "M256 32C114.52 32 0 146.496 0 288v48a32 32 0 0 0 17.689 28.622l14.383 7.191C34.083 431.903 83.421 480 144 480h24c13.255 0 24-10.745 24-24V280c0-13.255-10.745-24-24-24h-24c-31.342 0-59.671 12.879-80 33.627V288c0-105.869 86.131-192 192-192s192 86.131 192 192v1.627C427.671 268.879 399.342 256 368 256h-24c-13.255 0-24 10.745-24 24v176c0 13.255 10.745 24 24 24h24c60.579 0 109.917-48.098 111.928-108.187l14.382-7.191A32 32 0 0 0 512 336v-48c0-141.479-114.496-256-256-256z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeart.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeart.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeart.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeart.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeart.js new file mode 100644 index 0000000000..5d0121d3e3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeart.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'heart', icon: [512, 512, [], "f004", "M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeartbeat.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeartbeat.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeartbeat.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeartbeat.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeartbeat.js new file mode 100644 index 0000000000..eda86fc88d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHeartbeat.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'heartbeat', icon: [512, 512, [], "f21e", "M320.2 243.8l-49.7 99.4c-6 12.1-23.4 11.7-28.9-.6l-56.9-126.3-30 71.7H60.6l182.5 186.5c7.1 7.3 18.6 7.3 25.7 0L451.4 288H342.3l-22.1-44.2zM473.7 73.9l-2.4-2.5c-51.5-52.6-135.8-52.6-187.4 0L256 100l-27.9-28.5c-51.5-52.7-135.9-52.7-187.4 0l-2.4 2.4C-10.4 123.7-12.5 203 31 256h102.4l35.9-86.2c5.4-12.9 23.6-13.2 29.4-.4l58.2 129.3 49-97.9c5.9-11.8 22.7-11.8 28.6 0l27.6 55.2H481c43.5-53 41.4-132.3-7.3-182.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHelicopter.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHelicopter.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHelicopter.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHelicopter.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHelicopter.js new file mode 100644 index 0000000000..4578227bcd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHelicopter.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'helicopter', icon: [640, 512, [], "f533", "M304 384h272c17.67 0 32-14.33 32-32 0-123.71-100.29-224-224-224V64h176c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H144c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h176v64H112L68.8 70.4C65.78 66.37 61.03 64 56 64H16.01C5.6 64-2.04 73.78.49 83.88L32 192l160 64 86.4 115.2A31.992 31.992 0 0 0 304 384zm112-188.49C478.55 208.3 528.03 257.44 540.79 320H416V195.51zm219.37 263.3l-22.15-22.2c-6.25-6.26-16.24-6.1-22.64.01-7.09 6.77-13.84 11.25-24.64 11.25H240c-8.84 0-16 7.18-16 16.03v32.06c0 8.85 7.16 16.03 16 16.03h325.94c14.88 0 35.3-.47 68.45-29.52 7.02-6.14 7.57-17.05.98-23.66z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHistory.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHistory.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHistory.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHistory.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHistory.js new file mode 100644 index 0000000000..2d7acea41f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHistory.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'history', icon: [512, 512, [], "f1da", "M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHockeyPuck.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHockeyPuck.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHockeyPuck.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHockeyPuck.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHockeyPuck.js new file mode 100644 index 0000000000..c4915777ba --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHockeyPuck.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hockey-puck', icon: [512, 512, [], "f453", "M0 160c0-53 114.6-96 256-96s256 43 256 96-114.6 96-256 96S0 213 0 160zm0 82.2V352c0 53 114.6 96 256 96s256-43 256-96V242.2c-113.4 82.3-398.5 82.4-512 0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHome.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHome.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHome.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHome.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHome.js new file mode 100644 index 0000000000..afbd4d6b14 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHome.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'home', icon: [576, 512, [], "f015", "M488 312.7V456c0 13.3-10.7 24-24 24H348c-6.6 0-12-5.4-12-12V356c0-6.6-5.4-12-12-12h-72c-6.6 0-12 5.4-12 12v112c0 6.6-5.4 12-12 12H112c-13.3 0-24-10.7-24-24V312.7c0-3.6 1.6-7 4.4-9.3l188-154.8c4.4-3.6 10.8-3.6 15.3 0l188 154.8c2.7 2.3 4.3 5.7 4.3 9.3zm83.6-60.9L488 182.9V44.4c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12V117l-89.5-73.7c-17.7-14.6-43.3-14.6-61 0L4.4 251.8c-5.1 4.2-5.8 11.8-1.6 16.9l25.5 31c4.2 5.1 11.8 5.8 16.9 1.6l235.2-193.7c4.4-3.6 10.8-3.6 15.3 0l235.2 193.7c5.1 4.2 12.7 3.5 16.9-1.6l25.5-31c4.2-5.2 3.4-12.7-1.7-16.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHospital.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHospital.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHospital.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHospital.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHospital.js new file mode 100644 index 0000000000..a500e6da14 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHospital.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hospital', icon: [448, 512, [], "f0f8", "M448 492v20H0v-20c0-6.627 5.373-12 12-12h20V120c0-13.255 10.745-24 24-24h88V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v72h88c13.255 0 24 10.745 24 24v360h20c6.627 0 12 5.373 12 12zM308 192h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-168 64h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm104 128h-40c-6.627 0-12 5.373-12 12v84h64v-84c0-6.627-5.373-12-12-12zm64-96h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-116 12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zM182 96h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHospitalAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHospitalAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHospitalAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHospitalAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHospitalAlt.js new file mode 100644 index 0000000000..ec6f4ca01d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHospitalAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hospital-alt', icon: [576, 512, [], "f47d", "M544 96H416V32c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32v368c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16V128c0-17.7-14.3-32-32-32zM160 436c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm160 128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm16-170c0 3.3-2.7 6-6 6h-26v26c0 3.3-2.7 6-6 6h-20c-3.3 0-6-2.7-6-6v-26h-26c-3.3 0-6-2.7-6-6v-20c0-3.3 2.7-6 6-6h26V86c0-3.3 2.7-6 6-6h20c3.3 0 6 2.7 6 6v26h26c3.3 0 6 2.7 6 6v20zm144 298c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHospitalSymbol.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHospitalSymbol.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHospitalSymbol.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHospitalSymbol.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHospitalSymbol.js new file mode 100644 index 0000000000..807fa02e40 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHospitalSymbol.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hospital-symbol', icon: [512, 512, [], "f47e", "M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm112 376c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-88h-96v88c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V136c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v88h96v-88c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v240z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglass.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglass.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglass.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglass.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglass.js new file mode 100644 index 0000000000..f56b3930bc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglass.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hourglass', icon: [384, 512, [], "f254", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglassEnd.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglassEnd.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglassEnd.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglassEnd.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglassEnd.js new file mode 100644 index 0000000000..1b03d3935f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglassEnd.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hourglass-end', icon: [384, 512, [], "f253", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64zM192 208c-57.787 0-104-66.518-104-144h208c0 77.945-46.51 144-104 144z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglassHalf.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglassHalf.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglassHalf.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglassHalf.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglassHalf.js new file mode 100644 index 0000000000..e74a863509 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglassHalf.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hourglass-half', icon: [384, 512, [], "f252", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-75.078 384H99.08c17.059-46.797 52.096-80 92.92-80 40.821 0 75.862 33.196 92.922 80zm.019-256H99.078C91.988 108.548 88 86.748 88 64h208c0 22.805-3.987 44.587-11.059 64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglassStart.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglassStart.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglassStart.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglassStart.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglassStart.js new file mode 100644 index 0000000000..832fcc0903 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faHourglassStart.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'hourglass-start', icon: [384, 512, [], "f251", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-64 448H88c0-77.458 46.204-144 104-144 57.786 0 104 66.517 104 144z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faICursor.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faICursor.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faICursor.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faICursor.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faICursor.js new file mode 100644 index 0000000000..18766ab6f7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faICursor.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'i-cursor', icon: [256, 512, [], "f246", "M256 52.048V12.065C256 5.496 250.726.148 244.158.066 211.621-.344 166.469.011 128 37.959 90.266.736 46.979-.114 11.913.114 5.318.157 0 5.519 0 12.114v39.645c0 6.687 5.458 12.078 12.145 11.998C38.111 63.447 96 67.243 96 112.182V224H60c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h36v112c0 44.932-56.075 48.031-83.95 47.959C5.404 447.942 0 453.306 0 459.952v39.983c0 6.569 5.274 11.917 11.842 11.999 32.537.409 77.689.054 116.158-37.894 37.734 37.223 81.021 38.073 116.087 37.845 6.595-.043 11.913-5.405 11.913-12V460.24c0-6.687-5.458-12.078-12.145-11.998C217.889 448.553 160 444.939 160 400V288h36c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-36V112.182c0-44.932 56.075-48.213 83.95-48.142 6.646.018 12.05-5.346 12.05-11.992z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIdBadge.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIdBadge.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIdBadge.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIdBadge.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIdBadge.js new file mode 100644 index 0000000000..d4fea6adef --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIdBadge.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'id-badge', icon: [384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM144 32h96c8.8 0 16 7.2 16 16s-7.2 16-16 16h-96c-8.8 0-16-7.2-16-16s7.2-16 16-16zm48 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 416 80 407.4 80 396.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIdCard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIdCard.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIdCard.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIdCard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIdCard.js new file mode 100644 index 0000000000..c4933788c8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIdCard.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'id-card', icon: [576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v16h576V80c0-26.5-21.5-48-48-48zM0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V128H0v304zm352-232c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zM176 192c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zM67.1 396.2C75.5 370.5 99.6 352 128 352h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.9-5.2 19.8-15.6 19.8H82.7c-10.4 0-18.8-10-15.6-19.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIdCardAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIdCardAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIdCardAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIdCardAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIdCardAlt.js new file mode 100644 index 0000000000..92fd139d80 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIdCardAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'id-card-alt', icon: [576, 512, [], "f47f", "M528 64H384v96H192V64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM288 224c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm93.3 224H194.7c-10.4 0-18.8-10-15.6-19.8 8.3-25.6 32.4-44.2 60.9-44.2h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.8-5.2 19.8-15.6 19.8zM352 32c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v96h128V32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faImage.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faImage.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faImage.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faImage.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faImage.js new file mode 100644 index 0000000000..4ac0b781e2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faImage.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'image', icon: [512, 512, [], "f03e", "M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faImages.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faImages.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faImages.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faImages.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faImages.js new file mode 100644 index 0000000000..96d60ad81d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faImages.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'images', icon: [576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v208c0 44.112 35.888 80 80 80h336zm96-80V80c0-26.51-21.49-48-48-48H144c-26.51 0-48 21.49-48 48v256c0 26.51 21.49 48 48 48h384c26.51 0 48-21.49 48-48zM256 128c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-96 144l55.515-55.515c4.686-4.686 12.284-4.686 16.971 0L272 256l135.515-135.515c4.686-4.686 12.284-4.686 16.971 0L512 208v112H160v-48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInbox.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInbox.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInbox.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInbox.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInbox.js new file mode 100644 index 0000000000..bf9ee7d529 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInbox.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'inbox', icon: [576, 512, [], "f01c", "M567.938 243.908L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L8.062 243.908A47.994 47.994 0 0 0 0 270.533V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V270.533a47.994 47.994 0 0 0-8.062-26.625zM162.252 128h251.497l85.333 128H376l-32 64H232l-32-64H76.918l85.334-128z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIndent.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIndent.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIndent.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIndent.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIndent.js new file mode 100644 index 0000000000..3a290526f5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIndent.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'indent', icon: [448, 512, [], "f03c", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm176 144h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm-52.687-111.313l-96-95.984C17.266 138.652 0 145.776 0 160.016v191.975c0 14.329 17.325 21.304 27.313 11.313l96-95.992c6.249-6.247 6.249-16.377 0-22.625z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIndustry.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIndustry.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIndustry.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIndustry.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIndustry.js new file mode 100644 index 0000000000..0a0384fc70 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faIndustry.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'industry', icon: [512, 512, [], "f275", "M475.115 163.781L336 252.309v-68.28c0-18.916-20.931-30.399-36.885-20.248L160 252.309V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h464c13.255 0 24-10.745 24-24V184.029c0-18.917-20.931-30.399-36.885-20.248z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInfinity.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInfinity.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInfinity.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInfinity.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInfinity.js new file mode 100644 index 0000000000..6153d545e5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInfinity.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'infinity', icon: [640, 512, [], "f534", "M471.1 96C405 96 353.3 137.3 320 174.6 286.7 137.3 235 96 168.9 96 75.8 96 0 167.8 0 256s75.8 160 168.9 160c66.1 0 117.8-41.3 151.1-78.6 33.3 37.3 85 78.6 151.1 78.6 93.1 0 168.9-71.8 168.9-160S564.2 96 471.1 96zM168.9 320c-40.2 0-72.9-28.7-72.9-64s32.7-64 72.9-64c38.2 0 73.4 36.1 94 64-20.4 27.6-55.9 64-94 64zm302.2 0c-38.2 0-73.4-36.1-94-64 20.4-27.6 55.9-64 94-64 40.2 0 72.9 28.7 72.9 64s-32.7 64-72.9 64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInfo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInfo.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInfo.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInfo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInfo.js new file mode 100644 index 0000000000..b200b1da82 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInfo.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'info', icon: [192, 512, [], "f129", "M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInfoCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInfoCircle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInfoCircle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInfoCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInfoCircle.js new file mode 100644 index 0000000000..1f19638835 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faInfoCircle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'info-circle', icon: [512, 512, [], "f05a", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faItalic.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faItalic.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faItalic.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faItalic.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faItalic.js new file mode 100644 index 0000000000..6882ad5113 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faItalic.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'italic', icon: [320, 512, [], "f033", "M204.758 416h-33.849l62.092-320h40.725a16 16 0 0 0 15.704-12.937l6.242-32C297.599 41.184 290.034 32 279.968 32H120.235a16 16 0 0 0-15.704 12.937l-6.242 32C96.362 86.816 103.927 96 113.993 96h33.846l-62.09 320H46.278a16 16 0 0 0-15.704 12.935l-6.245 32C22.402 470.815 29.967 480 40.034 480h158.479a16 16 0 0 0 15.704-12.935l6.245-32c1.927-9.88-5.638-19.065-15.704-19.065z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faKey.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faKey.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faKey.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faKey.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faKey.js new file mode 100644 index 0000000000..40a8ffccbf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faKey.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'key', icon: [512, 512, [], "f084", "M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faKeyboard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faKeyboard.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faKeyboard.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faKeyboard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faKeyboard.js new file mode 100644 index 0000000000..eb9c1ce9ea --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faKeyboard.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'keyboard', icon: [576, 512, [], "f11c", "M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faKiwiBird.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faKiwiBird.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faKiwiBird.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faKiwiBird.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faKiwiBird.js new file mode 100644 index 0000000000..66bfabede1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faKiwiBird.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'kiwi-bird', icon: [576, 512, [], "f535", "M575.81 217.98C572.64 157.41 518.28 112 457.63 112h-9.37c-52.82 0-104.25-16.25-147.74-46.24-41.99-28.96-96.04-41.62-153.21-28.7C129.3 41.12-.08 78.24 0 224c.04 70.95 38.68 132.8 95.99 166.01V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-54.26c15.36 3.96 31.4 6.26 48 6.26 5.44 0 10.68-.73 16-1.18V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-59.43c14.24-5.06 27.88-11.39 40.34-19.51C342.07 355.25 393.86 336 448.46 336c25.48 0 16.01-.31 23.05-.78l74.41 136.44c2.86 5.23 8.3 8.34 14.05 8.34 1.31 0 2.64-.16 3.95-.5 7.09-1.8 12.05-8.19 12.05-15.5 0 0 .14-240.24-.16-246.02zM463.97 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm80 153.25l-39.86-73.08c15.12-5.83 28.73-14.6 39.86-25.98v99.06z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLanguage.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLanguage.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLanguage.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLanguage.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLanguage.js new file mode 100644 index 0000000000..169cf5ece0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLanguage.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'language', icon: [640, 512, [], "f1ab", "M304 416H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h280v320zm-120.676-72.622A12 12 0 0 0 194.839 352h22.863c8.22 0 14.007-8.078 11.362-15.861L171.61 167.085a12 12 0 0 0-11.362-8.139h-32.489a12.001 12.001 0 0 0-11.362 8.139L58.942 336.139C56.297 343.922 62.084 352 70.304 352h22.805a12 12 0 0 0 11.535-8.693l9.118-31.807h60.211l9.351 31.878zm-39.051-140.42s4.32 21.061 7.83 33.21l10.8 37.531h-38.07l11.07-37.531c3.51-12.15 7.83-33.21 7.83-33.21h.54zM616 416H336V96h280c13.255 0 24 10.745 24 24v272c0 13.255-10.745 24-24 24zm-36-228h-64v-16c0-6.627-5.373-12-12-12h-16c-6.627 0-12 5.373-12 12v16h-64c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h114.106c-6.263 14.299-16.518 28.972-30.023 43.206-6.56-6.898-12.397-13.91-17.365-20.933-3.639-5.144-10.585-6.675-15.995-3.446l-7.28 4.346-6.498 3.879c-5.956 3.556-7.693 11.421-3.735 17.117 6.065 8.729 13.098 17.336 20.984 25.726-8.122 6.226-16.841 12.244-26.103 17.964-5.521 3.41-7.381 10.556-4.162 16.19l7.941 13.896c3.362 5.883 10.935 7.826 16.706 4.276 12.732-7.831 24.571-16.175 35.443-24.891 10.917 8.761 22.766 17.102 35.396 24.881 5.774 3.556 13.353 1.618 16.717-4.27l7.944-13.903c3.213-5.623 1.37-12.76-4.135-16.171a312.737 312.737 0 0 1-26.06-18.019c21.024-22.425 35.768-46.289 42.713-69.85H580c6.627 0 12-5.373 12-12v-16c0-6.625-5.373-11.998-12-11.998z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLaptop.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLaptop.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLaptop.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLaptop.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLaptop.js new file mode 100644 index 0000000000..5dac5f4113 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLaptop.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'laptop', icon: [640, 512, [], "f109", "M512 64v256H128V64h384m16-64H112C85.5 0 64 21.5 64 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm100 416H389.5c-3 0-5.5 2.1-5.9 5.1C381.2 436.3 368 448 352 448h-64c-16 0-29.2-11.7-31.6-26.9-.5-2.9-3-5.1-5.9-5.1H12c-6.6 0-12 5.4-12 12v36c0 26.5 21.5 48 48 48h544c26.5 0 48-21.5 48-48v-36c0-6.6-5.4-12-12-12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLeaf.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLeaf.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLeaf.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLeaf.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLeaf.js new file mode 100644 index 0000000000..87fb7799a3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLeaf.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'leaf', icon: [576, 512, [], "f06c", "M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLemon.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLemon.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLemon.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLemon.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLemon.js new file mode 100644 index 0000000000..48c772b66f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLemon.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'lemon', icon: [512, 512, [], "f094", "M489.038 22.963C465.944-.13 434.648-5.93 413.947 6.129c-58.906 34.312-181.25-53.077-321.073 86.746S40.441 355.041 6.129 413.945c-12.059 20.702-6.26 51.999 16.833 75.093 23.095 23.095 54.392 28.891 75.095 16.832 58.901-34.31 181.246 53.079 321.068-86.743S471.56 156.96 505.871 98.056c12.059-20.702 6.261-51.999-16.833-75.093zM243.881 95.522c-58.189 14.547-133.808 90.155-148.358 148.358-1.817 7.27-8.342 12.124-15.511 12.124-1.284 0-2.59-.156-3.893-.481-8.572-2.144-13.784-10.83-11.642-19.403C81.901 166.427 166.316 81.93 236.119 64.478c8.575-2.143 17.261 3.069 19.403 11.642s-3.069 17.259-11.641 19.402z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLessThan.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLessThan.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLessThan.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLessThan.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLessThan.js new file mode 100644 index 0000000000..c6bbead820 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLessThan.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'less-than', icon: [384, 512, [], "f536", "M365.46 357.74L147.04 255.89l218.47-101.88c16.02-7.47 22.95-26.51 15.48-42.53l-13.52-29C360 66.46 340.96 59.53 324.94 67L18.48 209.91a32.014 32.014 0 0 0-18.48 29v34.24c0 12.44 7.21 23.75 18.48 29l306.31 142.83c16.06 7.49 35.15.54 42.64-15.52l13.56-29.08c7.49-16.06.54-35.15-15.53-42.64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLessThanEqual.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLessThanEqual.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLessThanEqual.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLessThanEqual.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLessThanEqual.js new file mode 100644 index 0000000000..5d6e354581 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLessThanEqual.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'less-than-equal', icon: [448, 512, [], "f537", "M54.98 214.2l301.41 119.87c18.39 6.03 38.71-2.54 45.38-19.15l12.09-30.08c6.68-16.61-2.82-34.97-21.21-41l-175.44-68.05 175.56-68.09c18.29-6 27.74-24.27 21.1-40.79l-12.03-29.92c-6.64-16.53-26.86-25.06-45.15-19.06L54.98 137.89C41.21 142.41 32 154.5 32 168.07v15.96c0 13.56 9.21 25.65 22.98 30.17zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLevelDownAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLevelDownAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLevelDownAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLevelDownAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLevelDownAlt.js new file mode 100644 index 0000000000..c3906686b1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLevelDownAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'level-down-alt', icon: [320, 512, [], "f3be", "M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLevelUpAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLevelUpAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLevelUpAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLevelUpAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLevelUpAlt.js new file mode 100644 index 0000000000..63955ec6e5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLevelUpAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'level-up-alt', icon: [320, 512, [], "f3bf", "M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLifeRing.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLifeRing.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLifeRing.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLifeRing.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLifeRing.js new file mode 100644 index 0000000000..b315ba552c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLifeRing.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'life-ring', icon: [512, 512, [], "f1cd", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm173.696 119.559l-63.399 63.399c-10.987-18.559-26.67-34.252-45.255-45.255l63.399-63.399a218.396 218.396 0 0 1 45.255 45.255zM256 352c-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96-42.981 96-96 96zM127.559 82.304l63.399 63.399c-18.559 10.987-34.252 26.67-45.255 45.255l-63.399-63.399a218.372 218.372 0 0 1 45.255-45.255zM82.304 384.441l63.399-63.399c10.987 18.559 26.67 34.252 45.255 45.255l-63.399 63.399a218.396 218.396 0 0 1-45.255-45.255zm302.137 45.255l-63.399-63.399c18.559-10.987 34.252-26.67 45.255-45.255l63.399 63.399a218.403 218.403 0 0 1-45.255 45.255z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLightbulb.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLightbulb.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLightbulb.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLightbulb.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLightbulb.js new file mode 100644 index 0000000000..a3708ed419 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLightbulb.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'lightbulb', icon: [384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zm-143.107-44c-9.907 0-18.826-6.078-22.376-15.327C67.697 267.541 16 277.731 16 176 16 78.803 94.805 0 192 0s176 78.803 176 176c0 101.731-51.697 91.541-90.516 192.673-3.55 9.249-12.47 15.327-22.376 15.327H128.893zM112 176c0-44.112 35.888-80 80-80 8.837 0 16-7.164 16-16s-7.163-16-16-16c-61.757 0-112 50.243-112 112 0 8.836 7.164 16 16 16s16-7.164 16-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLink.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLink.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLink.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLink.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLink.js new file mode 100644 index 0000000000..3305e6a077 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLink.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'link', icon: [512, 512, [], "f0c1", "M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLiraSign.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLiraSign.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLiraSign.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLiraSign.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLiraSign.js new file mode 100644 index 0000000000..61b5847743 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLiraSign.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'lira-sign', icon: [384, 512, [], "f195", "M371.994 256h-48.019C317.64 256 312 260.912 312 267.246 312 368 230.179 416 144 416V256.781l134.603-29.912A12 12 0 0 0 288 215.155v-40.976c0-7.677-7.109-13.38-14.603-11.714L144 191.219V160.78l134.603-29.912A12 12 0 0 0 288 119.154V78.179c0-7.677-7.109-13.38-14.603-11.714L144 95.219V44c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v68.997L9.397 125.131A12 12 0 0 0 0 136.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 178.558v30.439L9.397 221.131A12 12 0 0 0 0 232.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 274.558V468c0 6.627 5.373 12 12 12h79.583c134.091 0 223.255-77.834 228.408-211.592.261-6.782-5.211-12.408-11.997-12.408z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faList.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faList.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faList.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faList.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faList.js new file mode 100644 index 0000000000..e3eea3762b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faList.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'list', icon: [512, 512, [], "f03a", "M128 116V76c0-8.837 7.163-16 16-16h352c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H144c-8.837 0-16-7.163-16-16zm16 176h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 144h64c8.837 0 16-7.163 16-16V64c0-8.837-7.163-16-16-16H16C7.163 48 0 55.163 0 64v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faListAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faListAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faListAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faListAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faListAlt.js new file mode 100644 index 0000000000..96f92f38e4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faListAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'list-alt', icon: [512, 512, [], "f022", "M464 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM128 120c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288-136v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faListOl.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faListOl.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faListOl.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faListOl.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faListOl.js new file mode 100644 index 0000000000..4b0332d171 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faListOl.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'list-ol', icon: [512, 512, [], "f0cb", "M3.263 139.527c0-7.477 3.917-11.572 11.573-11.572h15.131V88.078c0-5.163.534-10.503.534-10.503h-.356s-1.779 2.67-2.848 3.738c-4.451 4.273-10.504 4.451-15.666-1.068l-5.518-6.231c-5.342-5.341-4.984-11.216.534-16.379l21.72-19.938C32.815 33.602 36.732 32 42.785 32H54.89c7.656 0 11.749 3.916 11.749 11.572v84.384h15.488c7.655 0 11.572 4.094 11.572 11.572v8.901c0 7.477-3.917 11.572-11.572 11.572H14.836c-7.656 0-11.573-4.095-11.573-11.572v-8.902zM2.211 304.591c0-47.278 50.955-56.383 50.955-69.165 0-7.18-5.954-8.755-9.28-8.755-3.153 0-6.479 1.051-9.455 3.852-5.079 4.903-10.507 7.004-16.111 2.451l-8.579-6.829c-5.779-4.553-7.18-9.805-2.803-15.409C13.592 201.981 26.025 192 47.387 192c19.437 0 44.476 10.506 44.476 39.573 0 38.347-46.753 46.402-48.679 56.909h39.049c7.529 0 11.557 4.027 11.557 11.382v8.755c0 7.354-4.028 11.382-11.557 11.382h-67.94c-7.005 0-12.083-4.028-12.083-11.382v-4.028zM5.654 454.61l5.603-9.28c3.853-6.654 9.105-7.004 15.584-3.152 4.903 2.101 9.63 3.152 14.359 3.152 10.155 0 14.358-3.502 14.358-8.23 0-6.654-5.604-9.106-15.934-9.106h-4.728c-5.954 0-9.28-2.101-12.258-7.88l-1.05-1.926c-2.451-4.728-1.226-9.806 2.801-14.884l5.604-7.004c6.829-8.405 12.257-13.483 12.257-13.483v-.35s-4.203 1.051-12.608 1.051H16.685c-7.53 0-11.383-4.028-11.383-11.382v-8.755c0-7.53 3.853-11.382 11.383-11.382h58.484c7.529 0 11.382 4.027 11.382 11.382v3.327c0 5.778-1.401 9.806-5.079 14.183l-17.509 20.137c19.611 5.078 28.716 20.487 28.716 34.845 0 21.363-14.358 44.126-48.503 44.126-16.636 0-28.192-4.728-35.896-9.455-5.779-4.202-6.304-9.805-2.626-15.934zM144 132h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faListUl.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faListUl.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faListUl.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faListUl.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faListUl.js new file mode 100644 index 0000000000..a6c38a0d49 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faListUl.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'list-ul', icon: [512, 512, [], "f0ca", "M96 96c0 26.51-21.49 48-48 48S0 122.51 0 96s21.49-48 48-48 48 21.49 48 48zM48 208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm0 160c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm96-236h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLocationArrow.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLocationArrow.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLocationArrow.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLocationArrow.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLocationArrow.js new file mode 100644 index 0000000000..8d707afa83 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLocationArrow.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'location-arrow', icon: [512, 512, [], "f124", "M443.683 4.529L27.818 196.418C-18.702 217.889-3.39 288 47.933 288H224v175.993c0 51.727 70.161 66.526 91.582 20.115L507.38 68.225c18.905-40.961-23.752-82.133-63.697-63.696z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLock.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLock.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLock.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLock.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLock.js new file mode 100644 index 0000000000..5d91911031 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLock.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'lock', icon: [448, 512, [], "f023", "M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLockOpen.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLockOpen.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLockOpen.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLockOpen.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLockOpen.js new file mode 100644 index 0000000000..beb323cfad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLockOpen.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'lock-open', icon: [576, 512, [], "f3c1", "M423.5 0C339.5.3 272 69.5 272 153.5V224H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48h-48v-71.1c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v80c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-80C576 68 507.5-.3 423.5 0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltDown.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltDown.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltDown.js new file mode 100644 index 0000000000..53cc6220d0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltDown.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'long-arrow-alt-down', icon: [256, 512, [], "f309", "M168 345.941V44c0-6.627-5.373-12-12-12h-56c-6.627 0-12 5.373-12 12v301.941H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.569 9.373 33.941 0l86.059-86.059c15.119-15.119 4.411-40.971-16.971-40.971H168z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltLeft.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltLeft.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltLeft.js new file mode 100644 index 0000000000..94f0405adc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltLeft.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'long-arrow-alt-left', icon: [448, 512, [], "f30a", "M134.059 296H436c6.627 0 12-5.373 12-12v-56c0-6.627-5.373-12-12-12H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.569 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltRight.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltRight.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltRight.js new file mode 100644 index 0000000000..ce37811506 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltRight.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'long-arrow-alt-right', icon: [448, 512, [], "f30b", "M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltUp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltUp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltUp.js new file mode 100644 index 0000000000..88804729b1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLongArrowAltUp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'long-arrow-alt-up', icon: [256, 512, [], "f30c", "M88 166.059V468c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12V166.059h46.059c21.382 0 32.09-25.851 16.971-40.971l-86.059-86.059c-9.373-9.373-24.569-9.373-33.941 0l-86.059 86.059c-15.119 15.119-4.411 40.971 16.971 40.971H88z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLowVision.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLowVision.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLowVision.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLowVision.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLowVision.js new file mode 100644 index 0000000000..4e0fc45d41 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faLowVision.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'low-vision', icon: [576, 512, [], "f2a8", "M569.344 231.631C512.96 135.949 407.81 72 288 72c-28.468 0-56.102 3.619-82.451 10.409L152.778 10.24c-7.601-10.858-22.564-13.5-33.423-5.9l-13.114 9.178c-10.86 7.601-13.502 22.566-5.9 33.426l43.131 58.395C89.449 131.73 40.228 174.683 6.682 231.581c-.01.017-.023.033-.034.05-8.765 14.875-8.964 33.528 0 48.739 38.5 65.332 99.742 115.862 172.859 141.349L55.316 244.302A272.194 272.194 0 0 1 83.61 208.39l119.4 170.58h.01l40.63 58.04a330.055 330.055 0 0 0 78.94 1.17l-189.98-271.4a277.628 277.628 0 0 1 38.777-21.563l251.836 356.544c7.601 10.858 22.564 13.499 33.423 5.9l13.114-9.178c10.86-7.601 13.502-22.567 5.9-33.426l-43.12-58.377-.007-.009c57.161-27.978 104.835-72.04 136.81-126.301a47.938 47.938 0 0 0 .001-48.739zM390.026 345.94l-19.066-27.23c24.682-32.567 27.711-76.353 8.8-111.68v.03c0 23.65-19.17 42.82-42.82 42.82-23.828 0-42.82-19.349-42.82-42.82 0-23.65 19.17-42.82 42.82-42.82h.03c-24.75-13.249-53.522-15.643-79.51-7.68l-19.068-27.237C253.758 123.306 270.488 120 288 120c75.162 0 136 60.826 136 136 0 34.504-12.833 65.975-33.974 89.94z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMagic.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMagic.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMagic.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMagic.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMagic.js new file mode 100644 index 0000000000..830ce11154 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMagic.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'magic', icon: [512, 512, [], "f0d0", "M101.1 505L7 410.9c-9.4-9.4-9.4-24.6 0-33.9L377 7c9.4-9.4 24.6-9.4 33.9 0l94.1 94.1c9.4 9.4 9.4 24.6 0 33.9L135 505c-9.3 9.3-24.5 9.3-33.9 0zM304 159.2l48.8 48.8 89.9-89.9-48.8-48.8-89.9 89.9zM138.9 39.3l-11.7 23.8-26.2 3.8c-4.7.7-6.6 6.5-3.2 9.8l19 18.5-4.5 26.1c-.8 4.7 4.1 8.3 8.3 6.1L144 115l23.4 12.3c4.2 2.2 9.1-1.4 8.3-6.1l-4.5-26.1 19-18.5c3.4-3.3 1.5-9.1-3.2-9.8L160.8 63l-11.7-23.8c-2-4.1-8.1-4.1-10.2.1zm97.7-20.7l-7.8 15.8-17.5 2.6c-3.1.5-4.4 4.3-2.1 6.5l12.6 12.3-3 17.4c-.5 3.1 2.8 5.5 5.6 4L240 69l15.6 8.2c2.8 1.5 6.1-.9 5.6-4l-3-17.4 12.6-12.3c2.3-2.2 1-6.1-2.1-6.5l-17.5-2.5-7.8-15.8c-1.4-3-5.4-3-6.8-.1zm-192 0l-7.8 15.8L19.3 37c-3.1.5-4.4 4.3-2.1 6.5l12.6 12.3-3 17.4c-.5 3.1 2.8 5.5 5.6 4L48 69l15.6 8.2c2.8 1.5 6.1-.9 5.6-4l-3-17.4 12.6-12.3c2.3-2.2 1-6.1-2.1-6.5l-17.5-2.5-7.8-15.8c-1.4-3-5.4-3-6.8-.1zm416 223.5l-7.8 15.8-17.5 2.5c-3.1.5-4.4 4.3-2.1 6.5l12.6 12.3-3 17.4c-.5 3.1 2.8 5.5 5.6 4l15.6-8.2 15.6 8.2c2.8 1.5 6.1-.9 5.6-4l-3-17.4 12.6-12.3c2.3-2.2 1-6.1-2.1-6.5l-17.5-2.5-7.8-15.8c-1.4-2.8-5.4-2.8-6.8 0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMagnet.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMagnet.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMagnet.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMagnet.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMagnet.js new file mode 100644 index 0000000000..d39559469d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMagnet.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'magnet', icon: [512, 512, [], "f076", "M164.1 160H12c-6.6 0-12-5.4-12-12V68c0-19.9 16.1-36 36-36h104c19.9 0 36 16.1 36 36v80c.1 6.6-5.3 12-11.9 12zm348-12V67.9c0-19.9-16.1-36-36-36h-104c-19.9 0-36 16.1-36 36v80c0 6.6 5.4 12 12 12h152c6.6.1 12-5.3 12-11.9zm-164 44c-6.6 0-12 5.4-12 12v52c0 128.1-160 127.9-160 0v-52c0-6.6-5.4-12-12-12h-152c-6.7 0-12 5.4-12 12.1.1 21.4.6 40.3 0 53.3C.1 408 136.3 504 256.9 504 377.5 504 512 408 512 257.3c-.6-12.8-.2-33 0-53.2 0-6.7-5.3-12.1-12-12.1H348.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMale.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMale.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMale.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMale.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMale.js new file mode 100644 index 0000000000..0341da5771 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMale.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'male', icon: [192, 512, [], "f183", "M96 0c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64S60.654 0 96 0m48 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H48c-26.51 0-48 21.49-48 48v136c0 13.255 10.745 24 24 24h16v136c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V352h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMap.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMap.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMap.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMap.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMap.js new file mode 100644 index 0000000000..5174f4db6a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMap.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'map', icon: [576, 512, [], "f279", "M576 56.015v335.97a23.998 23.998 0 0 1-13.267 21.466l-128 64C418.948 485.344 400 473.992 400 455.985v-335.97a23.998 23.998 0 0 1 13.267-21.466l128-64C557.052 26.656 576 38.008 576 56.015zm-206.253 42.07l-144-64c-15.751-7-33.747 4.461-33.747 21.932v335.967a24 24 0 0 0 14.253 21.931l144 64c15.751 7 33.747-4.461 33.747-21.931V120.017a24 24 0 0 0-14.253-21.932zm-228.48-63.536l-128 63.985A23.998 23.998 0 0 0 0 120v335.985c0 18.007 18.948 29.359 34.733 21.466l128-63.985A23.998 23.998 0 0 0 176 392V56.015c0-18.007-18.948-29.359-34.733-21.466z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapMarker.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapMarker.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapMarker.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapMarker.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapMarker.js new file mode 100644 index 0000000000..e4b0342f69 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapMarker.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'map-marker', icon: [384, 512, [], "f041", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapMarkerAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapMarkerAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapMarkerAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapMarkerAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapMarkerAlt.js new file mode 100644 index 0000000000..909338155a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapMarkerAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'map-marker-alt', icon: [384, 512, [], "f3c5", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapPin.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapPin.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapPin.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapPin.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapPin.js new file mode 100644 index 0000000000..2083664f9b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapPin.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'map-pin', icon: [320, 512, [], "f276", "M192 300.813v172.82l-22.015 33.023c-4.75 7.125-15.219 7.125-19.969 0L128 473.633v-172.82a162.221 162.221 0 0 0 64 0zM160 0c79.529 0 144 64.471 144 144s-64.471 144-144 144S16 223.529 16 144 80.471 0 160 0M80 136c0-39.701 32.299-72 72-72a8 8 0 0 0 0-16c-48.523 0-88 39.477-88 88a8 8 0 0 0 16 0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapSigns.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapSigns.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapSigns.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapSigns.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapSigns.js new file mode 100644 index 0000000000..825c22b0c6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMapSigns.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'map-signs', icon: [512, 512, [], "f277", "M487.515 104.485L439.03 152.97a23.998 23.998 0 0 1-16.97 7.029H56c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h160v-8c0-13.255 10.745-24 24-24h32c13.255 0 24 10.745 24 24v8h126.059a24 24 0 0 1 16.97 7.029l48.485 48.485c4.687 4.687 4.687 12.285.001 16.971zM216 368v120c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V368h-80zm240-144H296v-48h-80v48H89.941a24 24 0 0 0-16.97 7.029l-48.485 48.485c-4.686 4.686-4.686 12.284 0 16.971l48.485 48.485a23.998 23.998 0 0 0 16.97 7.029H456c13.255 0 24-10.745 24-24v-80C480 234.745 469.255 224 456 224z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMars.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMars.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMars.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMars.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMars.js new file mode 100644 index 0000000000..8d20217d32 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMars.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'mars', icon: [384, 512, [], "f222", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c0-6.6-5.4-12-12-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsDouble.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsDouble.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsDouble.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsDouble.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsDouble.js new file mode 100644 index 0000000000..86793214f2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsDouble.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'mars-double', icon: [512, 512, [], "f227", "M340 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C198.5 72.1 172.2 64 144 64 64.5 64 0 128.5 0 208s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.5 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 288c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80zm356-128.1h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7c-18.2-11.4-39-18.9-61.5-21.3-2.1 21.8-8.2 43.3-18.4 63.3 1.1 0 2.2-.1 3.2-.1 44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80c0-1.1 0-2.2.1-3.2-20 10.2-41.5 16.4-63.3 18.4C168.4 455.6 229.6 512 304 512c79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12v-79c0-6.7-5.4-12.1-12-12.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsStroke.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsStroke.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsStroke.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsStroke.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsStroke.js new file mode 100644 index 0000000000..584fe3cb20 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsStroke.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'mars-stroke', icon: [384, 512, [], "f229", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-17.5 17.5-14.1-14.1c-4.7-4.7-12.3-4.7-17 0L224.5 133c-4.7 4.7-4.7 12.3 0 17l14.1 14.1-18 18c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l18-18 14.1 14.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L329.2 164l17.5-17.5 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c-.1-6.6-5.5-12-12.1-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsStrokeH.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsStrokeH.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsStrokeH.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsStrokeH.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsStrokeH.js new file mode 100644 index 0000000000..1403a884c4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsStrokeH.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'mars-stroke-h', icon: [480, 512, [], "f22b", "M476.2 247.5l-55.9-55.9c-7.6-7.6-20.5-2.2-20.5 8.5V224H376v-20c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v20h-27.6c-5.8-25.6-18.7-49.9-38.6-69.8C189.6 98 98.4 98 42.2 154.2c-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 19.9-19.9 32.8-44.2 38.6-69.8H312v20c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-20h23.9v23.9c0 10.7 12.9 16 20.5 8.5l55.9-55.9c4.6-4.7 4.6-12.3-.1-17zm-275.6 65.1c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsStrokeV.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsStrokeV.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsStrokeV.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsStrokeV.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsStrokeV.js new file mode 100644 index 0000000000..631e5961aa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMarsStrokeV.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'mars-stroke-v', icon: [288, 512, [], "f22a", "M245.8 234.2c-19.9-19.9-44.2-32.8-69.8-38.6v-25.4h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V81.4h23.9c10.7 0 16-12.9 8.5-20.5L152.5 5.1c-4.7-4.7-12.3-4.7-17 0L79.6 61c-7.6 7.6-2.2 20.5 8.5 20.5H112v24.7H92c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h20v25.4c-25.6 5.8-49.9 18.7-69.8 38.6-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 56.3-56.2 56.3-147.4 0-203.6zm-45.2 158.4c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMedkit.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMedkit.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMedkit.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMedkit.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMedkit.js new file mode 100644 index 0000000000..982e31ba8f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMedkit.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'medkit', icon: [512, 512, [], "f0fa", "M96 480h320V128h-32V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v48H96v352zm96-384h128v32H192V96zm320 80v256c0 26.51-21.49 48-48 48h-16V128h16c26.51 0 48 21.49 48 48zM64 480H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v352zm288-208v32c0 8.837-7.163 16-16 16h-48v48c0 8.837-7.163 16-16 16h-32c-8.837 0-16-7.163-16-16v-48h-48c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h48v-48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v48h48c8.837 0 16 7.163 16 16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMeh.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMeh.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMeh.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMeh.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMeh.js new file mode 100644 index 0000000000..d63c59eb8f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMeh.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'meh', icon: [496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm176 192H152c-8.8 0-16-7.2-16-16s7.2-16 16-16h192c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-16-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMemory.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMemory.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMemory.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMemory.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMemory.js new file mode 100644 index 0000000000..5869345cb2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMemory.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'memory', icon: [640, 512, [], "f538", "M640 130.94V96c0-17.67-14.33-32-32-32H32C14.33 64 0 78.33 0 96v34.94c18.6 6.61 32 24.19 32 45.06s-13.4 38.45-32 45.06V320h640v-98.94c-18.6-6.61-32-24.19-32-45.06s13.4-38.45 32-45.06zM224 256h-64V128h64v128zm128 0h-64V128h64v128zm128 0h-64V128h64v128zM0 448h64v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h64v-96H0v96z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMercury.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMercury.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMercury.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMercury.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMercury.js new file mode 100644 index 0000000000..5ffb9f31d4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMercury.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'mercury', icon: [288, 512, [], "f223", "M288 208c0-44.2-19.9-83.7-51.2-110.1 2.5-1.8 4.9-3.8 7.2-5.8 24.7-21.2 39.8-48.8 43.2-78.8.9-7.1-4.7-13.3-11.9-13.3h-40.5C229 0 224.1 4.1 223 9.8c-2.4 12.5-9.6 24.3-20.7 33.8C187 56.8 166.3 64 144 64s-43-7.2-58.4-20.4C74.5 34.1 67.4 22.3 64.9 9.8 63.8 4.1 58.9 0 53.2 0H12.7C5.5 0-.1 6.2.8 13.3 4.2 43.4 19.2 71 44 92.2c2.3 2 4.7 3.9 7.2 5.8C19.9 124.3 0 163.8 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrochip.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrochip.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrochip.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrochip.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrochip.js new file mode 100644 index 0000000000..df1407be98 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrochip.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'microchip', icon: [512, 512, [], "f2db", "M416 48v416c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h224c26.51 0 48 21.49 48 48zm96 58v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42V88h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zM30 376h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophone.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophone.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophone.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophone.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophone.js new file mode 100644 index 0000000000..3ca75967de --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophone.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'microphone', icon: [352, 512, [], "f130", "M176 352c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96zm160-160h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophoneAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophoneAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophoneAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophoneAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophoneAlt.js new file mode 100644 index 0000000000..09fd2d8e92 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophoneAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'microphone-alt', icon: [352, 512, [], "f3c9", "M336 192h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16zM176 352c53.02 0 96-42.98 96-96h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophoneAltSlash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophoneAltSlash.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophoneAltSlash.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophoneAltSlash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophoneAltSlash.js new file mode 100644 index 0000000000..725cc7b1b6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophoneAltSlash.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'microphone-alt-slash', icon: [640, 512, [], "f539", "M633.82 458.1L476.26 336.33C488.74 312.21 496 284.98 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67h-43.67l-41.4-32H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.78c11.71-1.62 23.1-4.28 33.96-8.08l-50.4-38.96c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophoneSlash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophoneSlash.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophoneSlash.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophoneSlash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophoneSlash.js new file mode 100644 index 0000000000..9bb2e66a2f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMicrophoneSlash.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'microphone-slash', icon: [640, 512, [], "f131", "M633.82 458.1l-157.8-121.96C488.61 312.13 496 285.01 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67V96c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.77c11.66-1.6 22.85-4.54 33.67-8.31l-50.11-38.73c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMinus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMinus.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMinus.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMinus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMinus.js new file mode 100644 index 0000000000..025a14a441 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMinus.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'minus', icon: [448, 512, [], "f068", "M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMinusCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMinusCircle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMinusCircle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMinusCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMinusCircle.js new file mode 100644 index 0000000000..1c7a34505e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMinusCircle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'minus-circle', icon: [512, 512, [], "f056", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM124 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H124z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMinusSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMinusSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMinusSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMinusSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMinusSquare.js new file mode 100644 index 0000000000..3b33bd6b61 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMinusSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'minus-square', icon: [448, 512, [], "f146", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H92z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMobile.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMobile.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMobile.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMobile.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMobile.js new file mode 100644 index 0000000000..3faea9fe71 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMobile.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'mobile', icon: [320, 512, [], "f10b", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMobileAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMobileAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMobileAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMobileAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMobileAlt.js new file mode 100644 index 0000000000..507167db17 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMobileAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'mobile-alt', icon: [320, 512, [], "f3cd", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm112-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v312z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBill.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBill.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBill.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBill.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBill.js new file mode 100644 index 0000000000..ba766abfa2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBill.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'money-bill', icon: [640, 512, [], "f0d6", "M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 176c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 48h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBillAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBillAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBillAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBillAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBillAlt.js new file mode 100644 index 0000000000..dbadf466b4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBillAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'money-bill-alt', icon: [640, 512, [], "f3d1", "M352 288h-16v-88c0-4.42-3.58-8-8-8h-13.58c-4.74 0-9.37 1.4-13.31 4.03l-15.33 10.22a7.994 7.994 0 0 0-2.22 11.09l8.88 13.31a7.994 7.994 0 0 0 11.09 2.22l.47-.31V288h-16c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8h64c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 192c-53.02 0-96-50.15-96-112 0-61.86 42.98-112 96-112s96 50.14 96 112c0 61.87-43 112-96 112zm272 32h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBillWave.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBillWave.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBillWave.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBillWave.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBillWave.js new file mode 100644 index 0000000000..8c18784548 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBillWave.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'money-bill-wave', icon: [640, 512, [], "f53a", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM48 132.22c20.12 5.04 41.12 7.57 62.72 8.93C104.84 170.54 79 192.69 48 192.69v-60.47zm0 285v-47.78c34.37 0 62.18 27.27 63.71 61.4-22.53-1.81-43.59-6.31-63.71-13.62zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 27.78c-17.52-4.39-35.71-6.85-54.32-8.44 5.87-26.08 27.5-45.88 54.32-49.28v57.72zm0-236.11c-30.89-3.91-54.86-29.7-55.81-61.55 19.54 2.17 38.09 6.23 55.81 12.66v48.89z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBillWaveAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBillWaveAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBillWaveAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBillWaveAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBillWaveAlt.js new file mode 100644 index 0000000000..a0ec6853d6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyBillWaveAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'money-bill-wave-alt', icon: [640, 512, [], "f53b", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyCheck.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyCheck.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyCheck.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyCheck.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyCheck.js new file mode 100644 index 0000000000..a14270b963 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyCheck.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'money-check', icon: [640, 512, [], "f53c", "M0 448c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128H0v320zm448-208c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-32zm0 120c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H456c-4.42 0-8-3.58-8-8v-16zM64 264c0-4.42 3.58-8 8-8h304c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm0 96c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zM624 32H16C7.16 32 0 39.16 0 48v48h640V48c0-8.84-7.16-16-16-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyCheckAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyCheckAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyCheckAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyCheckAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyCheckAlt.js new file mode 100644 index 0000000000..d832db6f95 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoneyCheckAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'money-check-alt', icon: [640, 512, [], "f53d", "M608 32H32C14.33 32 0 46.33 0 64v384c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM176 327.88V344c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V152c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07zM416 312c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm160 0c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h272c4.42 0 8 3.58 8 8v16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoon.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoon.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoon.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoon.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoon.js new file mode 100644 index 0000000000..e0195691af --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMoon.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'moon', icon: [512, 512, [], "f186", "M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMotorcycle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMotorcycle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMotorcycle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMotorcycle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMotorcycle.js new file mode 100644 index 0000000000..dfa0fb3e55 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMotorcycle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'motorcycle', icon: [640, 512, [], "f21c", "M512.949 192.003c-14.862-.108-29.14 2.322-42.434 6.874L437.589 144H520c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24h-45.311a24 24 0 0 0-17.839 7.945l-37.496 41.663-22.774-37.956A24 24 0 0 0 376 64h-80c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h66.411l19.2 32H227.904c-17.727-23.073-44.924-40-99.904-40H72.54c-13.455 0-24.791 11.011-24.536 24.464C48.252 141.505 58.9 152 72 152h56c24.504 0 38.686 10.919 47.787 24.769l-11.291 20.529c-13.006-3.865-26.871-5.736-41.251-5.21C55.857 194.549 1.565 249.605.034 317.021-1.603 389.076 56.317 448 128 448c59.642 0 109.744-40.794 123.953-96h84.236c13.673 0 24.589-11.421 23.976-25.077-2.118-47.12 17.522-93.665 56.185-125.026l12.485 20.808c-27.646 23.654-45.097 58.88-44.831 98.179.47 69.556 57.203 126.452 126.758 127.11 71.629.678 129.839-57.487 129.234-129.099-.588-69.591-57.455-126.386-127.047-126.892zM128 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c4.242 0 8.405.341 12.469.982L98.97 316.434C90.187 332.407 101.762 352 120 352h81.297c-12.37 28.225-40.56 48-73.297 48zm388.351-.116C470.272 402.337 432 365.554 432 320c0-21.363 8.434-40.781 22.125-55.144l49.412 82.352c4.546 7.577 14.375 10.034 21.952 5.488l13.72-8.232c7.577-4.546 10.034-14.375 5.488-21.952l-48.556-80.927A80.005 80.005 0 0 1 512 240c45.554 0 82.338 38.273 79.884 84.352-2.16 40.558-34.974 73.372-75.533 75.532z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMousePointer.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMousePointer.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMousePointer.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMousePointer.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMousePointer.js new file mode 100644 index 0000000000..7ff24df201 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMousePointer.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'mouse-pointer', icon: [320, 512, [], "f245", "M302.189 329.126H196.105l55.831 135.993c3.889 9.428-.555 19.999-9.444 23.999l-49.165 21.427c-9.165 4-19.443-.571-23.332-9.714l-53.053-129.136-86.664 89.138C18.729 472.71 0 463.554 0 447.977V18.299C0 1.899 19.921-6.096 30.277 5.443l284.412 292.542c11.472 11.179 3.007 31.141-12.5 31.141z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMusic.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMusic.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMusic.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMusic.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMusic.js new file mode 100644 index 0000000000..60dc7f823f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faMusic.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'music', icon: [512, 512, [], "f001", "M470.4 1.5l-304 96C153.1 101.7 144 114 144 128v264.6c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V220.5l272-85.9v194c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V32c0-21.7-21.1-37-41.6-30.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNeuter.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNeuter.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNeuter.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNeuter.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNeuter.js new file mode 100644 index 0000000000..5c2d544d9b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNeuter.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'neuter', icon: [288, 512, [], "f22c", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V468c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V316.4c64.1-14.5 112-71.9 112-140.4zm-144 80c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNewspaper.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNewspaper.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNewspaper.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNewspaper.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNewspaper.js new file mode 100644 index 0000000000..89cd1a0da0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNewspaper.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'newspaper', icon: [576, 512, [], "f1ea", "M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNotEqual.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNotEqual.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNotEqual.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNotEqual.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNotEqual.js new file mode 100644 index 0000000000..8bd369563b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNotEqual.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'not-equal', icon: [448, 512, [], "f53e", "M416 208c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32h-23.88l51.87-66.81c5.37-7.02 4.04-17.06-2.97-22.43L415.61 3.3c-7.02-5.38-17.06-4.04-22.44 2.97L311.09 112H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h204.56l-74.53 96H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h55.49l-51.87 66.81c-5.37 7.01-4.04 17.05 2.97 22.43L64 508.7c7.02 5.38 17.06 4.04 22.43-2.97L168.52 400H416c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32H243.05l74.53-96H416z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNotesMedical.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNotesMedical.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNotesMedical.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNotesMedical.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNotesMedical.js new file mode 100644 index 0000000000..2d6f95370b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faNotesMedical.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'notes-medical', icon: [384, 512, [], "f481", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm96 304c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm0-192c0 4.4-3.6 8-8 8H104c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faObjectGroup.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faObjectGroup.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faObjectGroup.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faObjectGroup.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faObjectGroup.js new file mode 100644 index 0000000000..c71ddecbca --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faObjectGroup.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'object-group', icon: [512, 512, [], "f247", "M480 128V96h20c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v20H64V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v40c0 6.627 5.373 12 12 12h20v320H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-20h384v20c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-20V128zM96 276V140c0-6.627 5.373-12 12-12h168c6.627 0 12 5.373 12 12v136c0 6.627-5.373 12-12 12H108c-6.627 0-12-5.373-12-12zm320 96c0 6.627-5.373 12-12 12H236c-6.627 0-12-5.373-12-12v-52h72c13.255 0 24-10.745 24-24v-72h84c6.627 0 12 5.373 12 12v136z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faObjectUngroup.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faObjectUngroup.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faObjectUngroup.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faObjectUngroup.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faObjectUngroup.js new file mode 100644 index 0000000000..9d2a2b5856 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faObjectUngroup.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'object-ungroup', icon: [576, 512, [], "f248", "M64 320v26a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6v-52a6 6 0 0 1 6-6h26V96H6a6 6 0 0 1-6-6V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v26h288V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-26v192h26a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-52a6 6 0 0 1-6-6v-26H64zm480-64v-32h26a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-52a6 6 0 0 0-6 6v26H408v72h8c13.255 0 24 10.745 24 24v64c0 13.255-10.745 24-24 24h-64c-13.255 0-24-10.745-24-24v-8H192v72h-26a6 6 0 0 0-6 6v52a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-26h288v26a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-26V256z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faOutdent.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faOutdent.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faOutdent.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faOutdent.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faOutdent.js new file mode 100644 index 0000000000..44fb87f463 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faOutdent.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'outdent', icon: [448, 512, [], "f03b", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm208 144h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm192-128h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM4.687 267.313l96 95.984C110.734 373.348 128 366.224 128 351.984V160.008c0-14.329-17.325-21.304-27.313-11.313l-96 95.992c-6.249 6.248-6.249 16.378 0 22.626z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaintBrush.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaintBrush.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaintBrush.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaintBrush.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaintBrush.js new file mode 100644 index 0000000000..18cbbf4db1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaintBrush.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'paint-brush', icon: [512, 512, [], "f1fc", "M269.9 364.6c1.4 6.4 2.1 13 2.1 19.7 0 81.2-54.2 127.7-134.8 127.7C41.5 512 0 435.1 0 347.6c10.4 7.1 46.9 36.5 58.7 36.5 7 0 13-4 15.5-10.6 23.6-62.2 66.5-76.5 112.9-77.4 15.6 33.8 46.1 59.6 82.8 68.5zM460.6 0c-14.4 0-27.9 6.4-38.2 15.7C228.2 190 208 194.1 208 245.4c0 48.8 40.5 90.6 90.2 90.6 59 0 93.2-43.4 200.6-244.8 7-13.7 13.2-28.5 13.2-43.9C512 19.7 487.3 0 460.6 0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPalette.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPalette.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPalette.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPalette.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPalette.js new file mode 100644 index 0000000000..1f5f3e9967 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPalette.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'palette', icon: [512, 512, [], "f53f", "M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPallet.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPallet.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPallet.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPallet.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPallet.js new file mode 100644 index 0000000000..499d578ea8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPallet.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'pallet', icon: [640, 512, [], "f482", "M144 256h352c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H384v128l-64-32-64 32V0H144c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16zm480 128c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v64H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-64h48zm-336 64H128v-64h160v64zm224 0H352v-64h160v64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaperPlane.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaperPlane.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaperPlane.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaperPlane.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaperPlane.js new file mode 100644 index 0000000000..587a9bfede --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaperPlane.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'paper-plane', icon: [512, 512, [], "f1d8", "M476 3.2L12.5 270.6c-18.1 10.4-15.8 35.6 2.2 43.2L121 358.4l287.3-253.2c5.5-4.9 13.3 2.6 8.6 8.3L176 407v80.5c0 23.6 28.5 32.9 42.5 15.8L282 426l124.6 52.2c14.2 6 30.4-2.9 33-18.2l72-432C515 7.8 493.3-6.8 476 3.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaperclip.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaperclip.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaperclip.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaperclip.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaperclip.js new file mode 100644 index 0000000000..50a1fad40f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaperclip.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'paperclip', icon: [448, 512, [], "f0c6", "M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faParachuteBox.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faParachuteBox.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faParachuteBox.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faParachuteBox.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faParachuteBox.js new file mode 100644 index 0000000000..88436d13d7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faParachuteBox.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'parachute-box', icon: [512, 512, [], "f4cd", "M511.9 175c-9.1-75.6-78.4-132.4-158.3-158.7C390 55.7 416 116.9 416 192h28.1L327.5 321.5c-2.5-.6-4.8-1.5-7.5-1.5h-48V192h112C384 76.8 315.1 0 256 0S128 76.8 128 192h112v128h-48c-2.7 0-5 .9-7.5 1.5L67.9 192H96c0-75.1 26-136.3 62.4-175.7C78.5 42.7 9.2 99.5.1 175c-1.1 9.1 6.8 17 16 17h8.7l136.7 151.9c-.7 2.6-1.6 5.2-1.6 8.1v128c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32V352c0-2.9-.9-5.4-1.6-8.1L487.1 192h8.7c9.3 0 17.2-7.8 16.1-17z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faParagraph.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faParagraph.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faParagraph.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faParagraph.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faParagraph.js new file mode 100644 index 0000000000..e95e3bf724 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faParagraph.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'paragraph', icon: [448, 512, [], "f1dd", "M408 32H177.531C88.948 32 16.045 103.335 16 191.918 15.956 280.321 87.607 352 176 352v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h32v344c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h40c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faParking.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faParking.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faParking.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faParking.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faParking.js new file mode 100644 index 0000000000..79ee932541 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faParking.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'parking', icon: [448, 512, [], "f540", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM240 320h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h96c52.9 0 96 43.1 96 96s-43.1 96-96 96zm0-128h-48v64h48c17.6 0 32-14.4 32-32s-14.4-32-32-32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaste.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaste.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaste.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaste.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaste.js new file mode 100644 index 0000000000..b729aea51d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaste.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'paste', icon: [448, 512, [], "f0ea", "M128 184c0-30.879 25.122-56 56-56h136V56c0-13.255-10.745-24-24-24h-80.61C204.306 12.89 183.637 0 160 0s-44.306 12.89-55.39 32H24C10.745 32 0 42.745 0 56v336c0 13.255 10.745 24 24 24h104V184zm32-144c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24zm184 248h104v200c0 13.255-10.745 24-24 24H184c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.059V256h-96v-96h6.059a24 24 0 0 1 16.97 7.029l65.941 65.941a24.002 24.002 0 0 1 7.03 16.971z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPause.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPause.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPause.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPause.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPause.js new file mode 100644 index 0000000000..9fc334855a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPause.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'pause', icon: [448, 512, [], "f04c", "M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPauseCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPauseCircle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPauseCircle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPauseCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPauseCircle.js new file mode 100644 index 0000000000..36726732af --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPauseCircle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'pause-circle', icon: [512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-16 328c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160zm112 0c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaw.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaw.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaw.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaw.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaw.js new file mode 100644 index 0000000000..2b841f049b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPaw.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'paw', icon: [512, 512, [], "f1b0", "M85.231 330.958C36 330.958 0 273.792 0 231.5c0-28.292 16-58.042 49.538-58.042 49.231 0 85.231 57.458 85.231 99.75 0 28.292-15.692 57.75-49.538 57.75zm348 106.167c0 37.042-32 42.875-63.385 42.875-41.231 0-74.462-26.25-113.846-26.25-41.231 0-76.308 25.958-120.923 25.958-29.847 0-56.308-9.625-56.308-42.583C78.769 368 180.616 265.333 256 265.333s177.231 102.959 177.231 171.792zM182.462 203.792c-49.847 0-80-59.5-80-100.333C102.462 70.792 120.308 32 160 32c50.154 0 80 59.5 80 100.333 0 32.667-17.846 71.459-57.538 71.459zM272 132.333C272 91.5 301.846 32 352 32c39.692 0 57.539 38.792 57.539 71.458 0 40.833-30.154 100.333-80.001 100.333C289.846 203.792 272 165 272 132.333zM512 231.5c0 42.292-36 99.458-85.231 99.458-33.847 0-49.538-29.458-49.538-57.75 0-42.291 35.999-99.75 85.231-99.75C496 173.458 512 203.208 512 231.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPenSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPenSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPenSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPenSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPenSquare.js new file mode 100644 index 0000000000..aac206fb88 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPenSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'pen-square', icon: [448, 512, [], "f14b", "M400 480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zM238.1 177.9L102.4 313.6l-6.3 57.1c-.8 7.6 5.6 14.1 13.3 13.3l57.1-6.3L302.2 242c2.3-2.3 2.3-6.1 0-8.5L246.7 178c-2.5-2.4-6.3-2.4-8.6-.1zM345 165.1L314.9 135c-9.4-9.4-24.6-9.4-33.9 0l-23.1 23.1c-2.3 2.3-2.3 6.1 0 8.5l55.5 55.5c2.3 2.3 6.1 2.3 8.5 0L345 199c9.3-9.3 9.3-24.5 0-33.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPencilAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPencilAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPencilAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPencilAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPencilAlt.js new file mode 100644 index 0000000000..2ad74e7404 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPencilAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'pencil-alt', icon: [512, 512, [], "f303", "M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPeopleCarry.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPeopleCarry.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPeopleCarry.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPeopleCarry.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPeopleCarry.js new file mode 100644 index 0000000000..4ac7f0d43c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPeopleCarry.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'people-carry', icon: [640, 512, [], "f4ce", "M128 96c26.5 0 48-21.5 48-48S154.5 0 128 0 80 21.5 80 48s21.5 48 48 48zm384 0c26.5 0 48-21.5 48-48S538.5 0 512 0s-48 21.5-48 48 21.5 48 48 48zm125.7 372.1l-44-110-41.1 46.4-2 18.2 27.7 69.2c5 12.5 17 20.1 29.7 20.1 4 0 8-.7 11.9-2.3 16.4-6.6 24.4-25.2 17.8-41.6zm-34.2-209.8L585 178.1c-4.6-20-18.6-36.8-37.5-44.9-18.5-8-39-6.7-56.1 3.3-22.7 13.4-39.7 34.5-48.1 59.4L432 229.8 416 240v-96c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16v96l-16.1-10.2-11.3-33.9c-8.3-25-25.4-46-48.1-59.4-17.2-10-37.6-11.3-56.1-3.3-18.9 8.1-32.9 24.9-37.5 44.9l-18.4 80.2c-4.6 20 .7 41.2 14.4 56.7l67.2 75.9 10.1 92.6C130 499.8 143.8 512 160 512c1.2 0 2.3-.1 3.5-.2 17.6-1.9 30.2-17.7 28.3-35.3l-10.1-92.8c-1.5-13-6.9-25.1-15.6-35l-43.3-49 17.6-70.3 6.8 20.4c4.1 12.5 11.9 23.4 24.5 32.6l51.1 32.5c4.6 2.9 12.1 4.6 17.2 5h160c5.1-.4 12.6-2.1 17.2-5l51.1-32.5c12.6-9.2 20.4-20 24.5-32.6l6.8-20.4 17.6 70.3-43.3 49c-8.7 9.9-14.1 22-15.6 35l-10.1 92.8c-1.9 17.6 10.8 33.4 28.3 35.3 1.2.1 2.3.2 3.5.2 16.1 0 30-12.1 31.8-28.5l10.1-92.6 67.2-75.9c13.6-15.5 19-36.7 14.4-56.7zM46.3 358.1l-44 110c-6.6 16.4 1.4 35 17.8 41.6 16.8 6.6 35.1-1.7 41.6-17.8l27.7-69.2-2-18.2-41.1-46.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPercent.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPercent.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPercent.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPercent.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPercent.js new file mode 100644 index 0000000000..69f862c56d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPercent.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'percent', icon: [448, 512, [], "f295", "M112 224c61.9 0 112-50.1 112-112S173.9 0 112 0 0 50.1 0 112s50.1 112 112 112zm0-160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm224 224c-61.9 0-112 50.1-112 112s50.1 112 112 112 112-50.1 112-112-50.1-112-112-112zm0 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zM392.3.2l31.6-.1c19.4-.1 30.9 21.8 19.7 37.8L77.4 501.6a23.95 23.95 0 0 1-19.6 10.2l-33.4.1c-19.5 0-30.9-21.9-19.7-37.8l368-463.7C377.2 4 384.5.2 392.3.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPercentage.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPercentage.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPercentage.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPercentage.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPercentage.js new file mode 100644 index 0000000000..964e7e5c61 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPercentage.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'percentage', icon: [384, 512, [], "f541", "M109.25 173.25c24.99-24.99 24.99-65.52 0-90.51-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 25 25 65.52 25 90.51 0zm256 165.49c-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 24.99 24.99 65.52 24.99 90.51 0 25-24.99 25-65.51 0-90.51zm-1.94-231.43l-22.62-22.62c-12.5-12.5-32.76-12.5-45.25 0L20.69 359.44c-12.5 12.5-12.5 32.76 0 45.25l22.62 22.62c12.5 12.5 32.76 12.5 45.25 0l274.75-274.75c12.5-12.49 12.5-32.75 0-45.25z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhone.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhone.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhone.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhone.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhone.js new file mode 100644 index 0000000000..7f0cddab88 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhone.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'phone', icon: [512, 512, [], "f095", "M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhoneSlash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhoneSlash.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhoneSlash.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhoneSlash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhoneSlash.js new file mode 100644 index 0000000000..f86bc28089 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhoneSlash.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'phone-slash', icon: [640, 512, [], "f3dd", "M268.2 381.4l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48c-10.7 4.6-16.5 16.1-13.9 27.5l24 104c2.5 10.8 12.1 18.6 23.4 18.6 100.7 0 193.7-32.4 269.7-86.9l-80-61.8c-10.9 6.5-22.1 12.7-33.6 18.1zm365.6 76.7L475.1 335.5C537.9 256.4 576 156.9 576 48c0-11.2-7.7-20.9-18.6-23.4l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-12.2 26.1-27.9 50.3-46 72.8L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhoneSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhoneSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhoneSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhoneSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhoneSquare.js new file mode 100644 index 0000000000..bc22735b15 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhoneSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'phone-square', icon: [448, 512, [], "f098", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM94 416c-7.033 0-13.057-4.873-14.616-11.627l-14.998-65a15 15 0 0 1 8.707-17.16l69.998-29.999a15 15 0 0 1 17.518 4.289l30.997 37.885c48.944-22.963 88.297-62.858 110.781-110.78l-37.886-30.997a15.001 15.001 0 0 1-4.289-17.518l30-69.998a15 15 0 0 1 17.16-8.707l65 14.998A14.997 14.997 0 0 1 384 126c0 160.292-129.945 290-290 290z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhoneVolume.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhoneVolume.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhoneVolume.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhoneVolume.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhoneVolume.js new file mode 100644 index 0000000000..5430e15914 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPhoneVolume.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'phone-volume', icon: [384, 512, [], "f2a0", "M97.333 506.966c-129.874-129.874-129.681-340.252 0-469.933 5.698-5.698 14.527-6.632 21.263-2.422l64.817 40.513a17.187 17.187 0 0 1 6.849 20.958l-32.408 81.021a17.188 17.188 0 0 1-17.669 10.719l-55.81-5.58c-21.051 58.261-20.612 122.471 0 179.515l55.811-5.581a17.188 17.188 0 0 1 17.669 10.719l32.408 81.022a17.188 17.188 0 0 1-6.849 20.958l-64.817 40.513a17.19 17.19 0 0 1-21.264-2.422zM247.126 95.473c11.832 20.047 11.832 45.008 0 65.055-3.95 6.693-13.108 7.959-18.718 2.581l-5.975-5.726c-3.911-3.748-4.793-9.622-2.261-14.41a32.063 32.063 0 0 0 0-29.945c-2.533-4.788-1.65-10.662 2.261-14.41l5.975-5.726c5.61-5.378 14.768-4.112 18.718 2.581zm91.787-91.187c60.14 71.604 60.092 175.882 0 247.428-4.474 5.327-12.53 5.746-17.552.933l-5.798-5.557c-4.56-4.371-4.977-11.529-.93-16.379 49.687-59.538 49.646-145.933 0-205.422-4.047-4.85-3.631-12.008.93-16.379l5.798-5.557c5.022-4.813 13.078-4.394 17.552.933zm-45.972 44.941c36.05 46.322 36.108 111.149 0 157.546-4.39 5.641-12.697 6.251-17.856 1.304l-5.818-5.579c-4.4-4.219-4.998-11.095-1.285-15.931 26.536-34.564 26.534-82.572 0-117.134-3.713-4.836-3.115-11.711 1.285-15.931l5.818-5.579c5.159-4.947 13.466-4.337 17.856 1.304z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPiggyBank.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPiggyBank.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPiggyBank.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPiggyBank.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPiggyBank.js new file mode 100644 index 0000000000..6bbd381525 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPiggyBank.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'piggy-bank', icon: [576, 512, [], "f4d3", "M560 224h-29.5c-8.8-20-21.6-37.7-37.4-52.5L512 96h-32c-29.4 0-55.4 13.5-73 34.3-7.6-1.1-15.1-2.3-23-2.3H256c-77.4 0-141.9 55-156.8 128H56c-14.8 0-26.5-13.5-23.5-28.8C34.7 215.8 45.4 208 57 208h1c3.3 0 6-2.7 6-6v-20c0-3.3-2.7-6-6-6-28.5 0-53.9 20.4-57.5 48.6C-3.9 258.8 22.7 288 56 288h40c0 52.2 25.4 98.1 64 127.3V496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-48h128v48c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80.7c11.8-8.9 22.3-19.4 31.3-31.3H560c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16zm-128 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM256 96h128c5.4 0 10.7.4 15.9.8 0-.3.1-.5.1-.8 0-53-43-96-96-96s-96 43-96 96c0 2.1.5 4.1.6 6.2 15.2-3.9 31-6.2 47.4-6.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPills.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPills.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPills.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPills.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPills.js new file mode 100644 index 0000000000..2ac5b7d7d2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPills.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'pills', icon: [576, 512, [], "f484", "M112 32C50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V144c0-61.9-50.1-112-112-112zm48 224H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm139.7-29.7c-3.5-3.5-9.4-3.1-12.3.8-45.3 62.5-40.4 150.1 15.9 206.4 56.3 56.3 143.9 61.2 206.4 15.9 4-2.9 4.3-8.8.8-12.3L299.7 226.3zm229.8-19c-56.3-56.3-143.9-61.2-206.4-15.9-4 2.9-4.3 8.8-.8 12.3l210.8 210.8c3.5 3.5 9.4 3.1 12.3-.8 45.3-62.6 40.5-150.1-15.9-206.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlane.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlane.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlane.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlane.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlane.js new file mode 100644 index 0000000000..45716e3a87 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlane.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'plane', icon: [576, 512, [], "f072", "M480 192H365.71L260.61 8.06A16.014 16.014 0 0 0 246.71 0h-65.5c-10.63 0-18.3 10.17-15.38 20.39L214.86 192H112l-43.2-57.6c-3.02-4.03-7.77-6.4-12.8-6.4H16.01C5.6 128-2.04 137.78.49 147.88L32 256 .49 364.12C-2.04 374.22 5.6 384 16.01 384H56c5.04 0 9.78-2.37 12.8-6.4L112 320h102.86l-49.03 171.6c-2.92 10.22 4.75 20.4 15.38 20.4h65.5c5.74 0 11.04-3.08 13.89-8.06L365.71 320H480c35.35 0 96-28.65 96-64s-60.65-64-96-64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlay.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlay.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlay.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlay.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlay.js new file mode 100644 index 0000000000..5f3f2f172e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlay.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'play', icon: [448, 512, [], "f04b", "M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlayCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlayCircle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlayCircle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlayCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlayCircle.js new file mode 100644 index 0000000000..d535aeb612 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlayCircle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'play-circle', icon: [512, 512, [], "f144", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlug.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlug.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlug.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlug.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlug.js new file mode 100644 index 0000000000..a8f9b45f09 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlug.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'plug', icon: [384, 512, [], "f1e6", "M256 144V32c0-17.673 14.327-32 32-32s32 14.327 32 32v112h-64zm112 16H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h16v32c0 77.406 54.969 141.971 128 156.796V512h64v-99.204c73.031-14.825 128-79.39 128-156.796v-32h16c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm-240-16V32c0-17.673-14.327-32-32-32S64 14.327 64 32v112h64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlus.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlus.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlus.js new file mode 100644 index 0000000000..7a4a93ddf0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlus.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'plus', icon: [448, 512, [], "f067", "M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlusCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlusCircle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlusCircle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlusCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlusCircle.js new file mode 100644 index 0000000000..c0eb8bafbf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlusCircle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'plus-circle', icon: [512, 512, [], "f055", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlusSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlusSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlusSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlusSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlusSquare.js new file mode 100644 index 0000000000..77358c27ab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPlusSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'plus-square', icon: [448, 512, [], "f0fe", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-32 252c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92H92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPodcast.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPodcast.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPodcast.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPodcast.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPodcast.js new file mode 100644 index 0000000000..6b5c583dbf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPodcast.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'podcast', icon: [448, 512, [], "f2ce", "M267.429 488.563C262.286 507.573 242.858 512 224 512c-18.857 0-38.286-4.427-43.428-23.437C172.927 460.134 160 388.898 160 355.75c0-35.156 31.142-43.75 64-43.75s64 8.594 64 43.75c0 32.949-12.871 104.179-20.571 132.813zM156.867 288.554c-18.693-18.308-29.958-44.173-28.784-72.599 2.054-49.724 42.395-89.956 92.124-91.881C274.862 121.958 320 165.807 320 220c0 26.827-11.064 51.116-28.866 68.552-2.675 2.62-2.401 6.986.628 9.187 9.312 6.765 16.46 15.343 21.234 25.363 1.741 3.654 6.497 4.66 9.449 1.891 28.826-27.043 46.553-65.783 45.511-108.565-1.855-76.206-63.595-138.208-139.793-140.369C146.869 73.753 80 139.215 80 220c0 41.361 17.532 78.7 45.55 104.989 2.953 2.771 7.711 1.77 9.453-1.887 4.774-10.021 11.923-18.598 21.235-25.363 3.029-2.2 3.304-6.566.629-9.185zM224 0C100.204 0 0 100.185 0 224c0 89.992 52.602 165.647 125.739 201.408 4.333 2.118 9.267-1.544 8.535-6.31-2.382-15.512-4.342-30.946-5.406-44.339-.146-1.836-1.149-3.486-2.678-4.512-47.4-31.806-78.564-86.016-78.187-147.347.592-96.237 79.29-174.648 175.529-174.899C320.793 47.747 400 126.797 400 224c0 61.932-32.158 116.49-80.65 147.867-.999 14.037-3.069 30.588-5.624 47.23-.732 4.767 4.203 8.429 8.535 6.31C395.227 389.727 448 314.187 448 224 448 100.205 347.815 0 224 0zm0 160c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPoo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPoo.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPoo.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPoo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPoo.js new file mode 100644 index 0000000000..806c33caec --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPoo.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'poo', icon: [512, 512, [], "f2fe", "M451.4 369.1C468.7 356 480 335.4 480 312c0-39.8-32.2-72-72-72h-14.1c13.4-11.7 22.1-28.8 22.1-48 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C250.3 14.6 256 30.6 256 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 19.2 8.7 36.3 22.1 48H104c-39.8 0-72 32.2-72 72 0 23.4 11.3 44 28.6 57.1C26.3 374.6 0 404.1 0 440c0 39.8 32.2 72 72 72h368c39.8 0 72-32.2 72-72 0-35.9-26.3-65.4-60.6-70.9zM192 256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm159.5 139C341 422.9 293 448 256 448s-85-25.1-95.5-53c-2-5.3 2-11 7.8-11h175.4c5.8 0 9.8 5.7 7.8 11zM320 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPortrait.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPortrait.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPortrait.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPortrait.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPortrait.js new file mode 100644 index 0000000000..b5f7f594bf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPortrait.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'portrait', icon: [384, 512, [], "f3e0", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM192 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 384 80 375.4 80 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPoundSign.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPoundSign.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPoundSign.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPoundSign.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPoundSign.js new file mode 100644 index 0000000000..32f3d3f00c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPoundSign.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'pound-sign', icon: [320, 512, [], "f154", "M308 352h-45.495c-6.627 0-12 5.373-12 12v50.848H128V288h84c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-84v-63.556c0-32.266 24.562-57.086 61.792-57.086 23.658 0 45.878 11.505 57.652 18.849 5.151 3.213 11.888 2.051 15.688-2.685l28.493-35.513c4.233-5.276 3.279-13.005-2.119-17.081C273.124 54.56 236.576 32 187.931 32 106.026 32 48 84.742 48 157.961V224H20c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h28v128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12V364c0-6.627-5.373-12-12-12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPowerOff.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPowerOff.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPowerOff.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPowerOff.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPowerOff.js new file mode 100644 index 0000000000..ec3e3429ae --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPowerOff.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'power-off', icon: [512, 512, [], "f011", "M400 54.1c63 45 104 118.6 104 201.9 0 136.8-110.8 247.7-247.5 248C120 504.3 8.2 393 8 256.4 7.9 173.1 48.9 99.3 111.8 54.2c11.7-8.3 28-4.8 35 7.7L162.6 90c5.9 10.5 3.1 23.8-6.6 31-41.5 30.8-68 79.6-68 134.9-.1 92.3 74.5 168.1 168 168.1 91.6 0 168.6-74.2 168-169.1-.3-51.8-24.7-101.8-68.1-134-9.7-7.2-12.4-20.5-6.5-30.9l15.8-28.1c7-12.4 23.2-16.1 34.8-7.8zM296 264V24c0-13.3-10.7-24-24-24h-32c-13.3 0-24 10.7-24 24v240c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPrescriptionBottle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPrescriptionBottle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPrescriptionBottle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPrescriptionBottle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPrescriptionBottle.js new file mode 100644 index 0000000000..f910eb8f2a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPrescriptionBottle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'prescription-bottle', icon: [384, 512, [], "f485", "M32 192h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v64zM360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPrescriptionBottleAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPrescriptionBottleAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPrescriptionBottleAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPrescriptionBottleAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPrescriptionBottleAlt.js new file mode 100644 index 0000000000..3b5e33a887 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPrescriptionBottleAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'prescription-bottle-alt', icon: [384, 512, [], "f486", "M360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24zM32 480c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v352zm64-184c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPrint.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPrint.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPrint.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPrint.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPrint.js new file mode 100644 index 0000000000..f1fa28ef47 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPrint.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'print', icon: [512, 512, [], "f02f", "M464 192h-16V81.941a24 24 0 0 0-7.029-16.97L383.029 7.029A24 24 0 0 0 366.059 0H88C74.745 0 64 10.745 64 24v168H48c-26.51 0-48 21.49-48 48v132c0 6.627 5.373 12 12 12h52v104c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V384h52c6.627 0 12-5.373 12-12V240c0-26.51-21.49-48-48-48zm-80 256H128v-96h256v96zM128 224V64h192v40c0 13.2 10.8 24 24 24h40v96H128zm304 72c-13.254 0-24-10.746-24-24s10.746-24 24-24 24 10.746 24 24-10.746 24-24 24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faProcedures.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faProcedures.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faProcedures.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faProcedures.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faProcedures.js new file mode 100644 index 0000000000..f8d022f4f0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faProcedures.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'procedures', icon: [640, 512, [], "f487", "M528 224H272c-8.8 0-16 7.2-16 16v144H64V144c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v352c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h512v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-61.9-50.1-112-112-112zM136 96h126.1l27.6 55.2c5.9 11.8 22.7 11.8 28.6 0L368 51.8 390.1 96H512c8.8 0 16-7.2 16-16s-7.2-16-16-16H409.9L382.3 8.8C376.4-3 359.6-3 353.7 8.8L304 108.2l-19.9-39.8c-1.4-2.7-4.1-4.4-7.2-4.4H136c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm24 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faProjectDiagram.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faProjectDiagram.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faProjectDiagram.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faProjectDiagram.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faProjectDiagram.js new file mode 100644 index 0000000000..9fdb50df25 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faProjectDiagram.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'project-diagram', icon: [640, 512, [], "f542", "M384 320H256c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM192 32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v128c0 17.67 14.33 32 32 32h95.72l73.16 128.04C211.98 300.98 232.4 288 256 288h.28L192 175.51V128h224V64H192V32zM608 0H480c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPuzzlePiece.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPuzzlePiece.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPuzzlePiece.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPuzzlePiece.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPuzzlePiece.js new file mode 100644 index 0000000000..d194e100a1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faPuzzlePiece.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'puzzle-piece', icon: [576, 512, [], "f12e", "M519.442 288.651c-41.519 0-59.5 31.593-82.058 31.593C377.409 320.244 432 144 432 144s-196.288 80-196.288-3.297c0-35.827 36.288-46.25 36.288-85.985C272 19.216 243.885 0 210.539 0c-34.654 0-66.366 18.891-66.366 56.346 0 41.364 31.711 59.277 31.711 81.75C175.885 207.719 0 166.758 0 166.758v333.237s178.635 41.047 178.635-28.662c0-22.473-40-40.107-40-81.471 0-37.456 29.25-56.346 63.577-56.346 33.673 0 61.788 19.216 61.788 54.717 0 39.735-36.288 50.158-36.288 85.985 0 60.803 129.675 25.73 181.23 25.73 0 0-34.725-120.101 25.827-120.101 35.962 0 46.423 36.152 86.308 36.152C556.712 416 576 387.99 576 354.443c0-34.199-18.962-65.792-56.558-65.792z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQrcode.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQrcode.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQrcode.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQrcode.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQrcode.js new file mode 100644 index 0000000000..a5360eb1d3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQrcode.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'qrcode', icon: [448, 512, [], "f029", "M0 224h192V32H0v192zM64 96h64v64H64V96zm192-64v192h192V32H256zm128 128h-64V96h64v64zM0 480h192V288H0v192zm64-128h64v64H64v-64zm352-64h32v128h-96v-32h-32v96h-64V288h96v32h64v-32zm0 160h32v32h-32v-32zm-64 0h32v32h-32v-32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuestion.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuestion.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuestion.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuestion.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuestion.js new file mode 100644 index 0000000000..4dc9deff60 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuestion.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'question', icon: [384, 512, [], "f128", "M202.021 0C122.202 0 70.503 32.703 29.914 91.026c-7.363 10.58-5.093 25.086 5.178 32.874l43.138 32.709c10.373 7.865 25.132 6.026 33.253-4.148 25.049-31.381 43.63-49.449 82.757-49.449 30.764 0 68.816 19.799 68.816 49.631 0 22.552-18.617 34.134-48.993 51.164-35.423 19.86-82.299 44.576-82.299 106.405V320c0 13.255 10.745 24 24 24h72.471c13.255 0 24-10.745 24-24v-5.773c0-42.86 125.268-44.645 125.268-160.627C377.504 66.256 286.902 0 202.021 0zM192 373.459c-38.196 0-69.271 31.075-69.271 69.271 0 38.195 31.075 69.27 69.271 69.27s69.271-31.075 69.271-69.271-31.075-69.27-69.271-69.27z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuestionCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuestionCircle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuestionCircle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuestionCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuestionCircle.js new file mode 100644 index 0000000000..c046f87c24 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuestionCircle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'question-circle', icon: [512, 512, [], "f059", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuidditch.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuidditch.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuidditch.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuidditch.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuidditch.js new file mode 100644 index 0000000000..a2575b8ee6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuidditch.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'quidditch', icon: [640, 512, [], "f458", "M256.5 216.8L343.2 326s-16.6 102.4-76.6 150.1C206.7 523.8 0 510.2 0 510.2s3.8-23.1 11-55.4l94.6-112.2c4-4.7-.9-11.6-6.6-9.5l-60.4 22.1c14.4-41.7 32.7-80 54.6-97.5 59.9-47.8 163.3-40.9 163.3-40.9zm238 135c-44 0-79.8 35.8-79.8 79.9 0 44.1 35.7 79.9 79.8 79.9 44.1 0 79.8-35.8 79.8-79.9 0-44.2-35.8-79.9-79.8-79.9zM636.5 31L616.7 6c-5.5-6.9-15.5-8-22.4-2.6L361.8 181.3l-34.1-43c-5.1-6.4-15.1-5.2-18.6 2.2l-25.3 54.6 86.7 109.2 58.8-12.4c8-1.7 11.4-11.2 6.3-17.6l-34.1-42.9L634 53.5c6.9-5.5 8-15.6 2.5-22.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuoteLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuoteLeft.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuoteLeft.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuoteLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuoteLeft.js new file mode 100644 index 0000000000..d68e9e3e96 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuoteLeft.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'quote-left', icon: [512, 512, [], "f10d", "M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuoteRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuoteRight.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuoteRight.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuoteRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuoteRight.js new file mode 100644 index 0000000000..226e7157a1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faQuoteRight.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'quote-right', icon: [512, 512, [], "f10e", "M464 32H336c-26.5 0-48 21.5-48 48v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48zm-288 0H48C21.5 32 0 53.5 0 80v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRandom.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRandom.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRandom.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRandom.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRandom.js new file mode 100644 index 0000000000..4b39f2d928 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRandom.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'random', icon: [512, 512, [], "f074", "M504.971 359.029c9.373 9.373 9.373 24.569 0 33.941l-80 79.984c-15.01 15.01-40.971 4.49-40.971-16.971V416h-58.785a12.004 12.004 0 0 1-8.773-3.812l-70.556-75.596 53.333-57.143L352 336h32v-39.981c0-21.438 25.943-31.998 40.971-16.971l80 79.981zM12 176h84l52.781 56.551 53.333-57.143-70.556-75.596A11.999 11.999 0 0 0 122.785 96H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12zm372 0v39.984c0 21.46 25.961 31.98 40.971 16.971l80-79.984c9.373-9.373 9.373-24.569 0-33.941l-80-79.981C409.943 24.021 384 34.582 384 56.019V96h-58.785a12.004 12.004 0 0 0-8.773 3.812L96 336H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h110.785c3.326 0 6.503-1.381 8.773-3.812L352 176h32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faReceipt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faReceipt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faReceipt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faReceipt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faReceipt.js new file mode 100644 index 0000000000..eb74c88c64 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faReceipt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'receipt', icon: [384, 512, [], "f543", "M358.4 3.2L320 48 265.6 3.2a15.9 15.9 0 0 0-19.2 0L192 48 137.6 3.2a15.9 15.9 0 0 0-19.2 0L64 48 25.6 3.2C15-4.7 0 2.8 0 16v480c0 13.2 15 20.7 25.6 12.8L64 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L192 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L320 464l38.4 44.8c10.5 7.9 25.6.4 25.6-12.8V16c0-13.2-15-20.7-25.6-12.8zM320 360c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRecycle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRecycle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRecycle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRecycle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRecycle.js new file mode 100644 index 0000000000..7a70bf8cae --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRecycle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'recycle', icon: [512, 512, [], "f1b8", "M184.561 261.903c3.232 13.997-12.123 24.635-24.068 17.168l-40.736-25.455-50.867 81.402C55.606 356.273 70.96 384 96.012 384H148c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12H96.115c-75.334 0-121.302-83.048-81.408-146.88l50.822-81.388-40.725-25.448c-12.081-7.547-8.966-25.961 4.879-29.158l110.237-25.45c8.611-1.988 17.201 3.381 19.189 11.99l25.452 110.237zm98.561-182.915l41.289 66.076-40.74 25.457c-12.051 7.528-9 25.953 4.879 29.158l110.237 25.45c8.672 1.999 17.215-3.438 19.189-11.99l25.45-110.237c3.197-13.844-11.99-24.719-24.068-17.168l-40.687 25.424-41.263-66.082c-37.521-60.033-125.209-60.171-162.816 0l-17.963 28.766c-3.51 5.62-1.8 13.021 3.82 16.533l33.919 21.195c5.62 3.512 13.024 1.803 16.536-3.817l17.961-28.743c12.712-20.341 41.973-19.676 54.257-.022zM497.288 301.12l-27.515-44.065c-3.511-5.623-10.916-7.334-16.538-3.821l-33.861 21.159c-5.62 3.512-7.33 10.915-3.818 16.536l27.564 44.112c13.257 21.211-2.057 48.96-27.136 48.96H320V336.02c0-14.213-17.242-21.383-27.313-11.313l-80 79.981c-6.249 6.248-6.249 16.379 0 22.627l80 79.989C302.689 517.308 320 510.3 320 495.989V448h95.88c75.274 0 121.335-82.997 81.408-146.88z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRedo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRedo.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRedo.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRedo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRedo.js new file mode 100644 index 0000000000..de99c6bbb6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRedo.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'redo', icon: [512, 512, [], "f01e", "M500.333 0h-47.411c-6.853 0-12.314 5.729-11.986 12.574l3.966 82.759C399.416 41.899 331.672 8 256.001 8 119.34 8 7.899 119.526 8 256.187 8.101 393.068 119.096 504 256 504c63.926 0 122.202-24.187 166.178-63.908 5.113-4.618 5.354-12.561.482-17.433l-33.971-33.971c-4.466-4.466-11.64-4.717-16.38-.543C341.308 415.448 300.606 432 256 432c-97.267 0-176-78.716-176-176 0-97.267 78.716-176 176-176 60.892 0 114.506 30.858 146.099 77.8l-101.525-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRedoAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRedoAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRedoAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRedoAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRedoAlt.js new file mode 100644 index 0000000000..f32608a938 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRedoAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'redo-alt', icon: [512, 512, [], "f2f9", "M256.455 8c66.269.119 126.437 26.233 170.859 68.685l35.715-35.715C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.75c-30.864-28.899-70.801-44.907-113.23-45.273-92.398-.798-170.283 73.977-169.484 169.442C88.764 348.009 162.184 424 256 424c41.127 0 79.997-14.678 110.629-41.556 4.743-4.161 11.906-3.908 16.368.553l39.662 39.662c4.872 4.872 4.631 12.815-.482 17.433C378.202 479.813 319.926 504 256 504 119.034 504 8.001 392.967 8 256.002 7.999 119.193 119.646 7.755 256.455 8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRegistered.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRegistered.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRegistered.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRegistered.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRegistered.js new file mode 100644 index 0000000000..488258bbed --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRegistered.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'registered', icon: [512, 512, [], "f25d", "M285.363 207.475c0 18.6-9.831 28.431-28.431 28.431h-29.876v-56.14h23.378c28.668 0 34.929 8.773 34.929 27.709zM504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM363.411 360.414c-46.729-84.825-43.299-78.636-44.702-80.98 23.432-15.172 37.945-42.979 37.945-74.486 0-54.244-31.5-89.252-105.498-89.252h-70.667c-13.255 0-24 10.745-24 24V372c0 13.255 10.745 24 24 24h22.567c13.255 0 24-10.745 24-24v-71.663h25.556l44.129 82.937a24.001 24.001 0 0 0 21.188 12.727h24.464c18.261-.001 29.829-19.591 21.018-35.587z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faReply.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faReply.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faReply.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faReply.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faReply.js new file mode 100644 index 0000000000..38b82800b0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faReply.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'reply', icon: [512, 512, [], "f3e5", "M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faReplyAll.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faReplyAll.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faReplyAll.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faReplyAll.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faReplyAll.js new file mode 100644 index 0000000000..576fdf7862 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faReplyAll.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'reply-all', icon: [576, 512, [], "f122", "M136.309 189.836L312.313 37.851C327.72 24.546 352 35.348 352 56.015v82.763c129.182 10.231 224 52.212 224 183.548 0 61.441-39.582 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 38.512-123.162-3.922-169.482-112.59-182.015v84.175c0 20.701-24.3 31.453-39.687 18.164L136.309 226.164c-11.071-9.561-11.086-26.753 0-36.328zm-128 36.328L184.313 378.15C199.7 391.439 224 380.687 224 359.986v-15.818l-108.606-93.785A55.96 55.96 0 0 1 96 207.998a55.953 55.953 0 0 1 19.393-42.38L224 71.832V56.015c0-20.667-24.28-31.469-39.687-18.164L8.309 189.836c-11.086 9.575-11.071 26.767 0 36.328z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRetweet.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRetweet.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRetweet.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRetweet.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRetweet.js new file mode 100644 index 0000000000..a33a659681 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRetweet.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'retweet', icon: [640, 512, [], "f079", "M629.657 343.598L528.971 444.284c-9.373 9.372-24.568 9.372-33.941 0L394.343 343.598c-9.373-9.373-9.373-24.569 0-33.941l10.823-10.823c9.562-9.562 25.133-9.34 34.419.492L480 342.118V160H292.451a24.005 24.005 0 0 1-16.971-7.029l-16-16C244.361 121.851 255.069 96 276.451 96H520c13.255 0 24 10.745 24 24v222.118l40.416-42.792c9.285-9.831 24.856-10.054 34.419-.492l10.823 10.823c9.372 9.372 9.372 24.569-.001 33.941zm-265.138 15.431A23.999 23.999 0 0 0 347.548 352H160V169.881l40.416 42.792c9.286 9.831 24.856 10.054 34.419.491l10.822-10.822c9.373-9.373 9.373-24.569 0-33.941L144.971 67.716c-9.373-9.373-24.569-9.373-33.941 0L10.343 168.402c-9.373 9.373-9.373 24.569 0 33.941l10.822 10.822c9.562 9.562 25.133 9.34 34.419-.491L96 169.881V392c0 13.255 10.745 24 24 24h243.549c21.382 0 32.09-25.851 16.971-40.971l-16.001-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRibbon.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRibbon.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRibbon.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRibbon.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRibbon.js new file mode 100644 index 0000000000..a926d6c523 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRibbon.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'ribbon', icon: [448, 512, [], "f4d6", "M6.1 444.3c-9.6 10.8-7.5 27.6 4.5 35.7l68.8 27.9c9.9 6.7 23.3 5 31.3-3.8l91.8-101.9-79.2-87.9-117.2 130zm435.8 0s-292-324.6-295.4-330.1c15.4-8.4 40.2-17.9 77.5-17.9s62.1 9.5 77.5 17.9c-3.3 5.6-56 64.6-56 64.6l79.1 87.7 34.2-38c28.7-31.9 33.3-78.6 11.4-115.5l-43.7-73.5c-4.3-7.2-9.9-13.3-16.8-18-40.7-27.6-127.4-29.7-171.4 0-6.9 4.7-12.5 10.8-16.8 18l-43.6 73.2c-1.5 2.5-37.1 62.2 11.5 116L337.5 504c8 8.9 21.4 10.5 31.3 3.8l68.8-27.9c11.9-8 14-24.8 4.3-35.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRoad.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRoad.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRoad.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRoad.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRoad.js new file mode 100644 index 0000000000..052bb1c1c3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRoad.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'road', icon: [576, 512, [], "f018", "M567.3 383.6L429.9 78.2C426 69.5 417.4 64 408 64h-96.1l1.9 18.8c.7 7.1-4.8 13.2-11.9 13.2H274c-7.1 0-12.7-6.2-11.9-13.2L264 64h-96c-9.4 0-18 5.5-21.9 14.2L8.7 383.6C3.2 395.8 0 409.6 0 424c0 13.3 10.7 24 24 24h213.6c-7.1 0-12.7-6.2-11.9-13.2l10.8-104c.6-6.1 5.8-10.8 11.9-10.8h79.2c6.1 0 11.3 4.6 11.9 10.8l10.8 104c.7 7.1-4.8 13.2-11.9 13.2H552c13.2 0 24-10.7 24-24 0-13.9-3-27.7-8.7-40.4zM254.7 154.8l3.3-32c.6-6.1 5.8-10.8 11.9-10.8h36.2c6.1 0 11.3 4.6 11.9 10.8l3.3 32c.7 7.1-4.8 13.2-11.9 13.2h-42.8c-7.1 0-12.7-6.2-11.9-13.2zM321.8 288h-67.6c-7.1 0-12.7-6.2-11.9-13.2l7.4-72c.6-6.1 5.8-10.8 11.9-10.8h52.7c6.1 0 11.3 4.6 11.9 10.8l7.4 72c.9 7-4.7 13.2-11.8 13.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRobot.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRobot.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRobot.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRobot.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRobot.js new file mode 100644 index 0000000000..c1d509b8c2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRobot.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'robot', icon: [640, 512, [], "f544", "M0 256v128c0 17.7 14.3 32 32 32h32V224H32c-17.7 0-32 14.3-32 32zM464 96H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H176c-44.2 0-80 35.8-80 80v272c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V176c0-44.2-35.8-80-80-80zM256 416h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm128 120h-64v-32h64v32zm96 0h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm192-72h-32v192h32c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRocket.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRocket.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRocket.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRocket.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRocket.js new file mode 100644 index 0000000000..f937c0bc87 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRocket.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'rocket', icon: [512, 512, [], "f135", "M505.1 19.1C503.8 13 499 8.2 492.9 6.9 460.7 0 435.5 0 410.4 0 307.2 0 245.3 55.2 199.1 128H94.9c-18.2 0-34.8 10.3-42.9 26.5L2.6 253.3c-8 16 3.6 34.7 21.5 34.7h95.1c-5.9 12.8-11.9 25.5-18 37.7-3.1 6.2-1.9 13.6 3 18.5l63.6 63.6c4.9 4.9 12.3 6.1 18.5 3 12.2-6.1 24.9-12 37.7-17.9V488c0 17.8 18.8 29.4 34.7 21.5l98.7-49.4c16.3-8.1 26.5-24.8 26.5-42.9V312.8c72.6-46.3 128-108.4 128-211.1.1-25.2.1-50.4-6.8-82.6zM400 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRss.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRss.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRss.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRss.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRss.js new file mode 100644 index 0000000000..d83a063b85 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRss.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'rss', icon: [448, 512, [], "f09e", "M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRssSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRssSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRssSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRssSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRssSquare.js new file mode 100644 index 0000000000..f9edf05820 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRssSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'rss-square', icon: [448, 512, [], "f143", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM112 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm157.533 0h-34.335c-6.011 0-11.051-4.636-11.442-10.634-5.214-80.05-69.243-143.92-149.123-149.123-5.997-.39-10.633-5.431-10.633-11.441v-34.335c0-6.535 5.468-11.777 11.994-11.425 110.546 5.974 198.997 94.536 204.964 204.964.352 6.526-4.89 11.994-11.425 11.994zm103.027 0h-34.334c-6.161 0-11.175-4.882-11.427-11.038-5.598-136.535-115.204-246.161-251.76-251.76C68.882 152.949 64 147.935 64 141.774V107.44c0-6.454 5.338-11.664 11.787-11.432 167.83 6.025 302.21 141.191 308.205 308.205.232 6.449-4.978 11.787-11.432 11.787z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRubleSign.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRubleSign.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRubleSign.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRubleSign.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRubleSign.js new file mode 100644 index 0000000000..8673337954 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRubleSign.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'ruble-sign', icon: [384, 512, [], "f158", "M239.36 320C324.48 320 384 260.542 384 175.071S324.48 32 239.36 32H76c-6.627 0-12 5.373-12 12v206.632H12c-6.627 0-12 5.373-12 12V308c0 6.627 5.373 12 12 12h52v32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v52c0 6.627 5.373 12 12 12h58.56c6.627 0 12-5.373 12-12v-52H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H146.56v-32h92.8zm-92.8-219.252h78.72c46.72 0 74.88 29.11 74.88 74.323 0 45.832-28.16 75.561-76.16 75.561h-77.44V100.748z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRuler.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRuler.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRuler.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRuler.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRuler.js new file mode 100644 index 0000000000..343444f86e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRuler.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'ruler', icon: [640, 512, [], "f545", "M635.7 167.2L556.1 31.7c-8.8-15-28.3-20.1-43.5-11.5l-69 39.1L503.3 161c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L416 75l-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L333.2 122 278 153.3 337.8 255c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-59.7-101.7-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-27.9-47.5-55.2 31.3 59.7 101.7c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L84.9 262.9l-69 39.1C.7 310.7-4.6 329.8 4.2 344.8l79.6 135.6c8.8 15 28.3 20.1 43.5 11.5L624.1 210c15.2-8.6 20.4-27.8 11.6-42.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRulerCombined.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRulerCombined.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRulerCombined.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRulerCombined.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRulerCombined.js new file mode 100644 index 0000000000..5b020d11de --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRulerCombined.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'ruler-combined', icon: [512, 512, [], "f546", "M160 288h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56v-64h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56V96h-56c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8h56V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 2.77.91 5.24 1.57 7.8L160 329.38V288zm320 64h-32v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-41.37L24.2 510.43c2.56.66 5.04 1.57 7.8 1.57h448c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRulerHorizontal.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRulerHorizontal.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRulerHorizontal.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRulerHorizontal.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRulerHorizontal.js new file mode 100644 index 0000000000..b1523ad3b1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRulerHorizontal.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'ruler-horizontal', icon: [576, 512, [], "f547", "M544 128h-48v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8H88c-4.42 0-8-3.58-8-8v-88H32c-17.67 0-32 14.33-32 32v192c0 17.67 14.33 32 32 32h512c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRulerVertical.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRulerVertical.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRulerVertical.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRulerVertical.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRulerVertical.js new file mode 100644 index 0000000000..6a86e0efaf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRulerVertical.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'ruler-vertical', icon: [256, 512, [], "f548", "M168 416c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 17.67 14.33 32 32 32h192c17.67 0 32-14.33 32-32v-64h-88z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRupeeSign.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRupeeSign.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRupeeSign.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRupeeSign.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRupeeSign.js new file mode 100644 index 0000000000..bd8b0b03fc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faRupeeSign.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'rupee-sign', icon: [320, 512, [], "f156", "M308 96c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v44.748c0 6.627 5.373 12 12 12h85.28c27.308 0 48.261 9.958 60.97 27.252H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h158.757c-6.217 36.086-32.961 58.632-74.757 58.632H12c-6.627 0-12 5.373-12 12v53.012c0 3.349 1.4 6.546 3.861 8.818l165.052 152.356a12.001 12.001 0 0 0 8.139 3.182h82.562c10.924 0 16.166-13.408 8.139-20.818L116.871 319.906c76.499-2.34 131.144-53.395 138.318-127.906H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-58.69c-3.486-11.541-8.28-22.246-14.252-32H308z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSave.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSave.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSave.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSave.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSave.js new file mode 100644 index 0000000000..102d27a5a5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSave.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'save', icon: [448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSchool.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSchool.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSchool.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSchool.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSchool.js new file mode 100644 index 0000000000..96de5e7190 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSchool.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'school', icon: [640, 512, [], "f549", "M0 224v272c0 8.84 7.16 16 16 16h80V192H32c-17.67 0-32 14.33-32 32zm360-48h-24v-40c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v64c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zm137.75-63.96l-160-106.67a32.02 32.02 0 0 0-35.5 0l-160 106.67A32.002 32.002 0 0 0 128 138.66V512h128V368c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v144h128V138.67c0-10.7-5.35-20.7-14.25-26.63zM320 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm288-64h-64v320h80c8.84 0 16-7.16 16-16V224c0-17.67-14.33-32-32-32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faScrewdriver.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faScrewdriver.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faScrewdriver.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faScrewdriver.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faScrewdriver.js new file mode 100644 index 0000000000..0ee2970428 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faScrewdriver.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'screwdriver', icon: [512, 512, [], "f54a", "M448 0L320 96v62.06l-83.03 83.03c6.79 4.25 13.27 9.06 19.07 14.87 5.8 5.8 10.62 12.28 14.87 19.07L353.94 192H416l96-128-64-64zM128 278.59L10.92 395.67c-14.55 14.55-14.55 38.15 0 52.71l52.7 52.7c14.56 14.56 38.15 14.56 52.71 0L233.41 384c29.11-29.11 29.11-76.3 0-105.41s-76.3-29.11-105.41 0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSearch.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSearch.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSearch.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSearch.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSearch.js new file mode 100644 index 0000000000..1b8a7440be --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSearch.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'search', icon: [512, 512, [], "f002", "M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSearchMinus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSearchMinus.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSearchMinus.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSearchMinus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSearchMinus.js new file mode 100644 index 0000000000..cb032eec38 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSearchMinus.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'search-minus', icon: [512, 512, [], "f010", "M304 192v32c0 6.6-5.4 12-12 12H124c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSearchPlus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSearchPlus.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSearchPlus.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSearchPlus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSearchPlus.js new file mode 100644 index 0000000000..a87a12d998 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSearchPlus.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'search-plus', icon: [512, 512, [], "f00e", "M304 192v32c0 6.6-5.4 12-12 12h-56v56c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-56h-56c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h56v-56c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v56h56c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSeedling.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSeedling.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSeedling.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSeedling.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSeedling.js new file mode 100644 index 0000000000..a575005d50 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSeedling.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'seedling', icon: [512, 512, [], "f4d8", "M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faServer.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faServer.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faServer.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faServer.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faServer.js new file mode 100644 index 0000000000..7e75af6b3d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faServer.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'server', icon: [512, 512, [], "f233", "M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShare.js new file mode 100644 index 0000000000..518ad4e515 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'share', icon: [512, 512, [], "f064", "M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShareAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShareAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShareAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShareAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShareAlt.js new file mode 100644 index 0000000000..731e32370a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShareAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'share-alt', icon: [448, 512, [], "f1e0", "M352 320c-22.608 0-43.387 7.819-59.79 20.895l-102.486-64.054a96.551 96.551 0 0 0 0-41.683l102.486-64.054C308.613 184.181 329.392 192 352 192c53.019 0 96-42.981 96-96S405.019 0 352 0s-96 42.981-96 96c0 7.158.79 14.13 2.276 20.841L155.79 180.895C139.387 167.819 118.608 160 96 160c-53.019 0-96 42.981-96 96s42.981 96 96 96c22.608 0 43.387-7.819 59.79-20.895l102.486 64.054A96.301 96.301 0 0 0 256 416c0 53.019 42.981 96 96 96s96-42.981 96-96-42.981-96-96-96z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShareAltSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShareAltSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShareAltSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShareAltSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShareAltSquare.js new file mode 100644 index 0000000000..0b0ca93529 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShareAltSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'share-alt-square', icon: [448, 512, [], "f1e1", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zM304 296c-14.562 0-27.823 5.561-37.783 14.671l-67.958-40.775a56.339 56.339 0 0 0 0-27.793l67.958-40.775C276.177 210.439 289.438 216 304 216c30.928 0 56-25.072 56-56s-25.072-56-56-56-56 25.072-56 56c0 4.797.605 9.453 1.74 13.897l-67.958 40.775C171.823 205.561 158.562 200 144 200c-30.928 0-56 25.072-56 56s25.072 56 56 56c14.562 0 27.823-5.561 37.783-14.671l67.958 40.775a56.088 56.088 0 0 0-1.74 13.897c0 30.928 25.072 56 56 56s56-25.072 56-56C360 321.072 334.928 296 304 296z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShareSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShareSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShareSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShareSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShareSquare.js new file mode 100644 index 0000000000..ee2ac020af --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShareSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'share-square', icon: [576, 512, [], "f14d", "M568.482 177.448L424.479 313.433C409.3 327.768 384 317.14 384 295.985v-71.963c-144.575.97-205.566 35.113-164.775 171.353 4.483 14.973-12.846 26.567-25.006 17.33C155.252 383.105 120 326.488 120 269.339c0-143.937 117.599-172.5 264-173.312V24.012c0-21.174 25.317-31.768 40.479-17.448l144.003 135.988c10.02 9.463 10.028 25.425 0 34.896zM384 379.128V448H64V128h50.916a11.99 11.99 0 0 0 8.648-3.693c14.953-15.568 32.237-27.89 51.014-37.676C185.708 80.83 181.584 64 169.033 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48v-88.806c0-8.288-8.197-14.066-16.011-11.302a71.83 71.83 0 0 1-34.189 3.377c-7.27-1.046-13.8 4.514-13.8 11.859z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShekelSign.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShekelSign.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShekelSign.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShekelSign.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShekelSign.js new file mode 100644 index 0000000000..50fcd242db --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShekelSign.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'shekel-sign', icon: [448, 512, [], "f20b", "M248 168v168c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V168c0-75.11-60.89-136-136-136H24C10.75 32 0 42.74 0 56v408c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112h112c30.93 0 56 25.07 56 56zM432 32h-48c-8.84 0-16 7.16-16 16v296c0 30.93-25.07 56-56 56H200V176c0-8.84-7.16-16-16-16h-48c-8.84 0-16 7.16-16 16v280c0 13.25 10.75 24 24 24h168c75.11 0 136-60.89 136-136V48c0-8.84-7.16-16-16-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShieldAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShieldAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShieldAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShieldAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShieldAlt.js new file mode 100644 index 0000000000..b94dd74496 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShieldAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'shield-alt', icon: [512, 512, [], "f3ed", "M496 128c0 221.282-135.934 344.645-221.539 380.308a48 48 0 0 1-36.923 0C130.495 463.713 16 326.487 16 128a48 48 0 0 1 29.539-44.308l192-80a48 48 0 0 1 36.923 0l192 80A48 48 0 0 1 496 128zM256 446.313l.066.034c93.735-46.689 172.497-156.308 175.817-307.729L256 65.333v380.98z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShip.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShip.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShip.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShip.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShip.js new file mode 100644 index 0000000000..f21afa7ae8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShip.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'ship', icon: [640, 512, [], "f21a", "M496.616 372.639l70.012-70.012c16.899-16.9 9.942-45.771-12.836-53.092L512 236.102V96c0-17.673-14.327-32-32-32h-64V24c0-13.255-10.745-24-24-24H248c-13.255 0-24 10.745-24 24v40h-64c-17.673 0-32 14.327-32 32v140.102l-41.792 13.433c-22.753 7.313-29.754 36.173-12.836 53.092l70.012 70.012C125.828 416.287 85.587 448 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24 61.023 0 107.499-20.61 143.258-59.396C181.677 487.432 216.021 512 256 512h128c39.979 0 74.323-24.568 88.742-59.396C508.495 491.384 554.968 512 616 512c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24-60.817 0-101.542-31.001-119.384-75.361zM192 128h256v87.531l-118.208-37.995a31.995 31.995 0 0 0-19.584 0L192 215.531V128z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShippingFast.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShippingFast.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShippingFast.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShippingFast.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShippingFast.js new file mode 100644 index 0000000000..09184873ef --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShippingFast.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'shipping-fast', icon: [640, 512, [], "f48b", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H112C85.5 0 64 21.5 64 48v48H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h272c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H40c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H64v128c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoePrints.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoePrints.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoePrints.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoePrints.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoePrints.js new file mode 100644 index 0000000000..fc943fb6f5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoePrints.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'shoe-prints', icon: [640, 512, [], "f54b", "M192 160h32V32h-32c-35.35 0-64 28.65-64 64s28.65 64 64 64zM0 416c0 35.35 28.65 64 64 64h32V352H64c-35.35 0-64 28.65-64 64zm337.46-128c-34.91 0-76.16 13.12-104.73 32-24.79 16.38-44.52 32-104.73 32v128l57.53 15.97c26.21 7.28 53.01 13.12 80.31 15.05 32.69 2.31 65.6.67 97.58-6.2C472.9 481.3 512 429.22 512 384c0-64-84.18-96-174.54-96zM491.42 7.19C459.44.32 426.53-1.33 393.84.99c-27.3 1.93-54.1 7.77-80.31 15.04L256 32v128c60.2 0 79.94 15.62 104.73 32 28.57 18.88 69.82 32 104.73 32C555.82 224 640 192 640 128c0-45.22-39.1-97.3-148.58-120.81z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoppingBag.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoppingBag.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoppingBag.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoppingBag.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoppingBag.js new file mode 100644 index 0000000000..fd7cd3155c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoppingBag.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'shopping-bag', icon: [448, 512, [], "f290", "M352 160v-32C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128v32H0v272c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V160h-96zm-192-32c0-35.29 28.71-64 64-64s64 28.71 64 64v32H160v-32zm160 120c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm-192 0c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoppingBasket.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoppingBasket.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoppingBasket.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoppingBasket.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoppingBasket.js new file mode 100644 index 0000000000..8f18a62b03 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoppingBasket.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'shopping-basket', icon: [576, 512, [], "f291", "M576 216v16c0 13.255-10.745 24-24 24h-8l-26.113 182.788C514.509 462.435 494.257 480 470.37 480H105.63c-23.887 0-44.139-17.565-47.518-41.212L32 256h-8c-13.255 0-24-10.745-24-24v-16c0-13.255 10.745-24 24-24h67.341l106.78-146.821c10.395-14.292 30.407-17.453 44.701-7.058 14.293 10.395 17.453 30.408 7.058 44.701L170.477 192h235.046L326.12 82.821c-10.395-14.292-7.234-34.306 7.059-44.701 14.291-10.395 34.306-7.235 44.701 7.058L484.659 192H552c13.255 0 24 10.745 24 24zM312 392V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm112 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm-224 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoppingCart.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoppingCart.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoppingCart.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoppingCart.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoppingCart.js new file mode 100644 index 0000000000..4e72f600b7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShoppingCart.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'shopping-cart', icon: [576, 512, [], "f07a", "M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShower.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShower.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShower.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShower.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShower.js new file mode 100644 index 0000000000..9deb7c87aa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faShower.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'shower', icon: [512, 512, [], "f2cc", "M389.66 135.6L231.6 293.66c-9.37 9.37-24.57 9.37-33.94 0l-11.32-11.32c-9.37-9.37-9.37-24.57 0-33.94l.11-.11c-34.03-40.21-35.16-98.94-3.39-140.38-11.97-7.55-26.14-11.91-41.3-11.91C98.88 96 64 130.88 64 173.76V480H0V173.76C0 95.59 63.59 32 141.76 32c36.93 0 70.61 14.2 95.86 37.42 35.9-11.51 76.5-4.5 106.67 21.03l.11-.11c9.37-9.37 24.57-9.37 33.94 0l11.32 11.32c9.37 9.37 9.37 24.57 0 33.94zM384 208c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm48-16c8.837 0 16 7.163 16 16s-7.163 16-16 16-16-7.163-16-16 7.163-16 16-16zm80 16c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-128 32c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-96 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm64 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSign.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSign.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSign.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSign.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSign.js new file mode 100644 index 0000000000..6279566651 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSign.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'sign', icon: [512, 512, [], "f4d9", "M496 64H128V16c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16v48H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V128h368c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM160 384h320V160H160v224z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignInAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignInAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignInAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignInAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignInAlt.js new file mode 100644 index 0000000000..9e15222ed4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignInAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'sign-in-alt', icon: [512, 512, [], "f2f6", "M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignLanguage.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignLanguage.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignLanguage.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignLanguage.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignLanguage.js new file mode 100644 index 0000000000..cf26b3598e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignLanguage.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'sign-language', icon: [448, 512, [], "f2a7", "M91.434 483.987c-.307-16.018 13.109-29.129 29.13-29.129h62.293v-5.714H56.993c-16.021 0-29.437-13.111-29.13-29.129C28.16 404.491 40.835 392 56.428 392h126.429v-5.714H29.136c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h154.286v-5.714H57.707c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h168.566l-31.085-22.606c-12.762-9.281-15.583-27.149-6.302-39.912 9.281-12.761 27.15-15.582 39.912-6.302l123.361 89.715a34.287 34.287 0 0 1 14.12 27.728v141.136c0 15.91-10.946 29.73-26.433 33.374l-80.471 18.934a137.16 137.16 0 0 1-31.411 3.646H120c-15.593-.001-28.269-12.492-28.566-28.014zm73.249-225.701h36.423l-11.187-8.136c-18.579-13.511-20.313-40.887-3.17-56.536l-13.004-16.7c-9.843-12.641-28.43-15.171-40.88-5.088-12.065 9.771-14.133 27.447-4.553 39.75l36.371 46.71zm283.298-2.103l-5.003-152.452c-.518-15.771-13.722-28.136-29.493-27.619-15.773.518-28.137 13.722-27.619 29.493l1.262 38.415L283.565 11.019c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l76.889 98.745-4.509 3.511-94.79-121.734c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l94.443 121.288-4.509 3.511-77.675-99.754c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l52.053 66.849c12.497-8.257 29.055-8.285 41.69.904l123.36 89.714c10.904 7.93 17.415 20.715 17.415 34.198v16.999l61.064-47.549a34.285 34.285 0 0 0 13.202-28.177z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignOutAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignOutAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignOutAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignOutAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignOutAlt.js new file mode 100644 index 0000000000..453fdf3469 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignOutAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'sign-out-alt', icon: [512, 512, [], "f2f5", "M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignal.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignal.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignal.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignal.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignal.js new file mode 100644 index 0000000000..a9fcefc29c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSignal.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'signal', icon: [640, 512, [], "f012", "M36 384h56c6.6 0 12 5.4 12 12v104c0 6.6-5.4 12-12 12H36c-6.6 0-12-5.4-12-12V396c0-6.6 5.4-12 12-12zm116-36v152c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V348c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-80v232c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V268c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-112v344c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V156c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zM536 12v488c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V12c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSitemap.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSitemap.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSitemap.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSitemap.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSitemap.js new file mode 100644 index 0000000000..08de67dabb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSitemap.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'sitemap', icon: [640, 512, [], "f0e8", "M128 352H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm-24-80h192v48h48v-48h192v48h48v-57.59c0-21.17-17.23-38.41-38.41-38.41H344v-64h40c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H256c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h40v64H94.41C73.23 224 56 241.23 56 262.41V320h48v-48zm264 80h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm240 0h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSkull.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSkull.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSkull.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSkull.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSkull.js new file mode 100644 index 0000000000..4df5073e59 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSkull.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'skull', icon: [512, 512, [], "f54c", "M256 0C114.6 0 0 100.3 0 224c0 70.1 36.9 132.6 94.5 173.7 9.6 6.9 15.2 18.1 13.5 29.9l-9.4 66.2c-1.4 9.6 6 18.2 15.7 18.2H192v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h64v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h77.7c9.7 0 17.1-8.6 15.7-18.2l-9.4-66.2c-1.7-11.7 3.8-23 13.5-29.9C475.1 356.6 512 294.1 512 224 512 100.3 397.4 0 256 0zm-96 320c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm192 0c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSlidersH.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSlidersH.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSlidersH.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSlidersH.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSlidersH.js new file mode 100644 index 0000000000..08c10d4fc7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSlidersH.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'sliders-h', icon: [512, 512, [], "f1de", "M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSmile.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSmile.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSmile.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSmile.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSmile.js new file mode 100644 index 0000000000..c87d3ce42f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSmile.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'smile', icon: [496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-5.7-6.8-4.7-16.9 2-22.5 6.8-5.7 16.9-4.7 22.5 2 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c5.7-6.8 15.7-7.7 22.5-2 6.9 5.7 7.8 15.8 2.2 22.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSmoking.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSmoking.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSmoking.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSmoking.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSmoking.js new file mode 100644 index 0000000000..e2ed79c6ea --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSmoking.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'smoking', icon: [640, 512, [], "f48d", "M632 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8zM553.3 87.1c-5.7-3.8-9.3-10-9.3-16.8V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v62.3c0 22 10.2 43.4 28.6 55.4 42.2 27.3 67.4 73.8 67.4 124V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-65.5-32.4-126.2-86.7-162.6zM432 352H48c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h384c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zm-32 112H224v-64h176v64zm87.7-322.4C463.8 125 448 99.3 448 70.3V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v66.4c0 43.7 24.6 81.6 60.3 106.7 22.4 15.7 35.7 41.2 35.7 68.6V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-43.3-21-83.4-56.3-108.1zM536 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSmokingBan.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSmokingBan.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSmokingBan.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSmokingBan.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSmokingBan.js new file mode 100644 index 0000000000..d625c4ef90 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSmokingBan.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'smoking-ban', icon: [512, 512, [], "f54d", "M96 304c0 8.8 7.2 16 16 16h117.5l-96-96H112c-8.8 0-16 7.2-16 16v64zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 448c-105.9 0-192-86.1-192-192 0-41.4 13.3-79.7 35.7-111.1l267.4 267.4C335.7 434.7 297.4 448 256 448zm45.2-192H384v32h-50.8l-32-32zm111.1 111.1L365.2 320H400c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16H269.2L144.9 99.7C176.3 77.3 214.6 64 256 64c105.9 0 192 86.1 192 192 0 41.4-13.3 79.7-35.7 111.1zM320.6 128c-15.6 0-28.6-11.2-31.4-25.9-.7-3.6-4-6.1-7.7-6.1h-16.2c-5 0-8.7 4.5-8 9.4 4.6 30.9 31.2 54.6 63.3 54.6 15.6 0 28.6 11.2 31.4 25.9.7 3.6 4 6.1 7.7 6.1h16.2c5 0 8.7-4.5 8-9.4-4.6-30.9-31.2-54.6-63.3-54.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSnowflake.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSnowflake.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSnowflake.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSnowflake.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSnowflake.js new file mode 100644 index 0000000000..9107462ffb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSnowflake.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'snowflake', icon: [448, 512, [], "f2dc", "M444.816 301.639a24.12 24.12 0 0 0 2.661-16.978c-2.725-12.966-15.339-21.245-28.174-18.492l-87.407 25.046L264 256l67.896-35.215 87.407 25.046c12.835 2.753 25.449-5.526 28.174-18.492 2.725-12.966-5.471-25.708-18.305-28.461l-47.477-7.137 53.077-30.956c11.363-6.627 15.257-21.306 8.696-32.785-6.561-11.479-21.091-15.412-32.454-8.785l-53.077 30.956 17.621-45.104c4.057-12.606-2.768-26.146-15.247-30.245-12.478-4.099-25.883 2.797-29.94 15.402l-22.232 88.99-60.38 35.215V144l65.175-63.945c8.778-9.852 7.987-25.027-1.766-33.894-9.753-8.867-24.775-8.068-33.552 1.784l-29.857 37.967V24c0-13.255-10.637-24-23.758-24s-23.758 10.745-23.758 24v61.912l-29.857-37.967c-8.779-9.852-23.799-10.652-33.552-1.784-9.753 8.867-10.543 24.042-1.766 33.894L200.242 144v70.431l-60.38-35.215-22.232-88.99c-4.057-12.605-17.462-19.501-29.94-15.402-12.478 4.099-19.304 17.64-15.247 30.245l17.62 45.104-53.077-30.956c-11.363-6.627-25.893-2.694-32.454 8.785s-2.667 26.157 8.696 32.785l53.077 30.956-47.477 7.137C5.993 201.634-2.203 214.375.523 227.341c2.725 12.965 15.339 21.245 28.174 18.492l87.407-25.046L184 256l-67.896 35.215-87.406-25.045c-12.835-2.753-25.449 5.526-28.174 18.492-2.725 12.967 5.47 25.708 18.305 28.461l47.477 7.137-53.077 30.956C1.866 357.843-2.027 372.521 4.533 384s21.091 15.412 32.454 8.785l53.077-30.956-17.62 45.104a24.157 24.157 0 0 0 2.022 19.428c2.831 4.953 7.416 8.909 13.224 10.816 12.478 4.099 25.883-2.797 29.94-15.402l22.232-88.99 60.38-35.215V368l-65.175 63.945c-8.778 9.852-7.987 25.027 1.766 33.894 9.754 8.868 24.774 8.068 33.552-1.784l29.857-37.967V488c0 13.255 10.637 24 23.758 24s23.758-10.745 23.758-24v-61.912l29.857 37.967A23.59 23.59 0 0 0 295.282 472a23.534 23.534 0 0 0 15.885-6.161c9.753-8.867 10.544-24.042 1.766-33.894L247.758 368v-70.431l60.38 35.215 22.232 88.99c4.057 12.605 17.462 19.501 29.94 15.402 12.479-4.099 19.304-17.64 15.247-30.245l-17.621-45.104 53.077 30.956c11.363 6.627 25.893 2.694 32.454-8.785s2.667-26.157-8.696-32.785l-53.077-30.956 47.477-7.137c6.86-1.469 12.394-5.793 15.645-11.481z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSort.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSort.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSort.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSort.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSort.js new file mode 100644 index 0000000000..65c0a24973 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSort.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'sort', icon: [320, 512, [], "f0dc", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAlphaDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAlphaDown.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAlphaDown.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAlphaDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAlphaDown.js new file mode 100644 index 0000000000..aff97d39de --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAlphaDown.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'sort-alpha-down', icon: [448, 512, [], "f15d", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zm119.075-180.007A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAlphaUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAlphaUp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAlphaUp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAlphaUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAlphaUp.js new file mode 100644 index 0000000000..8467aee7b4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAlphaUp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'sort-alpha-up', icon: [448, 512, [], "f15e", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zm301.671 98.621A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAmountDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAmountDown.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAmountDown.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAmountDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAmountDown.js new file mode 100644 index 0000000000..50cd8223b2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAmountDown.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'sort-amount-down', icon: [512, 512, [], "f160", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAmountUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAmountUp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAmountUp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAmountUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAmountUp.js new file mode 100644 index 0000000000..97952c11da --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortAmountUp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'sort-amount-up', icon: [512, 512, [], "f161", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortDown.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortDown.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortDown.js new file mode 100644 index 0000000000..475882be95 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortDown.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'sort-down', icon: [320, 512, [], "f0dd", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortNumericDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortNumericDown.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortNumericDown.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortNumericDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortNumericDown.js new file mode 100644 index 0000000000..bfa65e6266 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortNumericDown.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'sort-numeric-down', icon: [448, 512, [], "f162", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM175.984 368H128V48c0-8.837-7.163-16-16-16H80c-8.837 0-16 7.163-16 16v320H16.019c-14.212 0-21.384 17.244-11.314 27.314l79.981 80.002c6.245 6.245 16.38 6.247 22.627 0l79.984-80.002c10.05-10.05 2.928-27.314-11.313-27.314z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortNumericUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortNumericUp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortNumericUp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortNumericUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortNumericUp.js new file mode 100644 index 0000000000..b495ae83b2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortNumericUp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'sort-numeric-up', icon: [448, 512, [], "f163", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM16.016 144H64v320c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144h47.981c14.212 0 21.384-17.244 11.314-27.314l-79.981-80.002c-6.245-6.245-16.38-6.247-22.627 0L4.702 116.686C-5.347 126.736 1.775 144 16.016 144z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortUp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortUp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortUp.js new file mode 100644 index 0000000000..05794401fa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSortUp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'sort-up', icon: [320, 512, [], "f0de", "M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSpaceShuttle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSpaceShuttle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSpaceShuttle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSpaceShuttle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSpaceShuttle.js new file mode 100644 index 0000000000..437ced9fda --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSpaceShuttle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'space-shuttle', icon: [640, 512, [], "f197", "M592.604 208.244C559.735 192.836 515.777 184 472 184H186.327c-4.952-6.555-10.585-11.978-16.72-16H376C229.157 137.747 219.403 32 96.003 32H96v128H80V32c-26.51 0-48 28.654-48 64v64c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v16c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v64c0 35.346 21.49 64 48 64V352h16v128h.003c123.4 0 133.154-105.747 279.997-136H169.606c6.135-4.022 11.768-9.445 16.72-16H472c43.777 0 87.735-8.836 120.604-24.244C622.282 289.845 640 271.992 640 256s-17.718-33.845-47.396-47.756zM488 296a8 8 0 0 1-8-8v-64a8 8 0 0 1 8-8c31.909 0 31.942 80 0 80z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSpinner.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSpinner.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSpinner.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSpinner.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSpinner.js new file mode 100644 index 0000000000..5ebc0bf7db --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSpinner.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'spinner', icon: [512, 512, [], "f110", "M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSquare.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSquare.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSquare.js new file mode 100644 index 0000000000..e0b35b356e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSquare.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'square', icon: [448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSquareFull.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSquareFull.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSquareFull.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSquareFull.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSquareFull.js new file mode 100644 index 0000000000..8814a439be --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSquareFull.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'square-full', icon: [512, 512, [], "f45c", "M512 512H0V0h512v512z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStar.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStar.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStar.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStar.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStar.js new file mode 100644 index 0000000000..19f397f144 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStar.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'star', icon: [576, 512, [], "f005", "M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStarHalf.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStarHalf.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStarHalf.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStarHalf.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStarHalf.js new file mode 100644 index 0000000000..ed49c6163f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStarHalf.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'star-half', icon: [576, 512, [], "f089", "M288 0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6V0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStepBackward.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStepBackward.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStepBackward.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStepBackward.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStepBackward.js new file mode 100644 index 0000000000..2ca043da2d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStepBackward.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'step-backward', icon: [448, 512, [], "f048", "M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStepForward.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStepForward.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStepForward.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStepForward.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStepForward.js new file mode 100644 index 0000000000..08c47407ee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStepForward.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'step-forward', icon: [448, 512, [], "f051", "M384 44v424c0 6.6-5.4 12-12 12h-48c-6.6 0-12-5.4-12-12V291.6l-195.5 181C95.9 489.7 64 475.4 64 448V64c0-27.4 31.9-41.7 52.5-24.6L312 219.3V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStethoscope.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStethoscope.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStethoscope.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStethoscope.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStethoscope.js new file mode 100644 index 0000000000..1a6d46f7fc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStethoscope.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'stethoscope', icon: [512, 512, [], "f0f1", "M447.1 112c-34.2.5-62.3 28.4-63 62.6-.5 24.3 12.5 45.6 32 56.8V344c0 57.3-50.2 104-112 104-60 0-109.2-44.1-111.9-99.2C265 333.8 320 269.2 320 192V36.6c0-11.4-8.1-21.3-19.3-23.5L237.8.5c-13-2.6-25.6 5.8-28.2 18.8L206.4 35c-2.6 13 5.8 25.6 18.8 28.2l30.7 6.1v121.4c0 52.9-42.2 96.7-95.1 97.2-53.4.5-96.9-42.7-96.9-96V69.4l30.7-6.1c13-2.6 21.4-15.2 18.8-28.2l-3.1-15.7C107.7 6.4 95.1-2 82.1.6L19.3 13C8.1 15.3 0 25.1 0 36.6V192c0 77.3 55.1 142 128.1 156.8C130.7 439.2 208.6 512 304 512c97 0 176-75.4 176-168V231.4c19.1-11.1 32-31.7 32-55.4 0-35.7-29.2-64.5-64.9-64zm.9 80c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStickyNote.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStickyNote.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStickyNote.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStickyNote.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStickyNote.js new file mode 100644 index 0000000000..c747a4b52f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStickyNote.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'sticky-note', icon: [448, 512, [], "f249", "M312 320h136V56c0-13.3-10.7-24-24-24H24C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h264V344c0-13.2 10.8-24 24-24zm129 55l-98 98c-4.5 4.5-10.6 7-17 7h-6V352h128v6.1c0 6.3-2.5 12.4-7 16.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStop.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStop.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStop.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStop.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStop.js new file mode 100644 index 0000000000..f28d39934a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStop.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'stop', icon: [448, 512, [], "f04d", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStopCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStopCircle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStopCircle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStopCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStopCircle.js new file mode 100644 index 0000000000..fe286dd7e6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStopCircle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'stop-circle', icon: [512, 512, [], "f28d", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStopwatch.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStopwatch.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStopwatch.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStopwatch.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStopwatch.js new file mode 100644 index 0000000000..c2aacc98f1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStopwatch.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'stopwatch', icon: [448, 512, [], "f2f2", "M432 304c0 114.9-93.1 208-208 208S16 418.9 16 304c0-104 76.3-190.2 176-205.5V64h-28c-6.6 0-12-5.4-12-12V12c0-6.6 5.4-12 12-12h120c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-28v34.5c37.5 5.8 71.7 21.6 99.7 44.6l27.5-27.5c4.7-4.7 12.3-4.7 17 0l28.3 28.3c4.7 4.7 4.7 12.3 0 17l-29.4 29.4-.6.6C419.7 223.3 432 262.2 432 304zm-176 36V188.5c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12V340c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStore.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStore.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStore.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStore.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStore.js new file mode 100644 index 0000000000..4378aef299 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStore.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'store', icon: [616, 512, [], "f54e", "M602 118.6L537.1 15C531.3 5.7 521 0 510 0H106C95 0 84.7 5.7 78.9 15L14 118.6c-33.5 53.5-3.8 127.9 58.8 136.4 4.5.6 9.1.9 13.7.9 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18.1 20.1 44.3 33.1 73.8 33.1 4.7 0 9.2-.3 13.7-.9 62.8-8.4 92.6-82.8 59-136.4zM529.5 288c-10 0-19.9-1.5-29.5-3.8V384H116v-99.8c-9.6 2.2-19.5 3.8-29.5 3.8-6 0-12.1-.4-18-1.2-5.6-.8-11.1-2.1-16.4-3.6V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V283.2c-5.4 1.6-10.8 2.9-16.4 3.6-6.1.8-12.1 1.2-18.2 1.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStoreAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStoreAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStoreAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStoreAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStoreAlt.js new file mode 100644 index 0000000000..12a4797649 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStoreAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'store-alt', icon: [640, 512, [], "f54f", "M320 384H128V224H64v256c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V224h-64v160zm314.6-241.8l-85.3-128c-6-8.9-16-14.2-26.7-14.2H117.4c-10.7 0-20.7 5.3-26.6 14.2l-85.3 128c-14.2 21.3 1 49.8 26.6 49.8H608c25.5 0 40.7-28.5 26.6-49.8zM512 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h-64v272z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStream.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStream.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStream.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStream.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStream.js new file mode 100644 index 0000000000..54a1b0d26f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStream.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'stream', icon: [512, 512, [], "f550", "M16 128h416c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H16C7.16 32 0 39.16 0 48v64c0 8.84 7.16 16 16 16zm480 80H80c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm-64 176H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStreetView.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStreetView.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStreetView.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStreetView.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStreetView.js new file mode 100644 index 0000000000..7228fc625d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStreetView.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'street-view', icon: [512, 512, [], "f21d", "M192 64c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zm112 80h-11.36c-22.711 10.443-49.59 10.894-73.28 0H208c-26.51 0-48 21.49-48 48v104c0 13.255 10.745 24 24 24h16v104c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V320h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48zm85.642 189.152a72.503 72.503 0 0 1-29.01 27.009C391.133 365.251 480 385.854 480 416c0 46.304-167.656 64-224 64-70.303 0-224-20.859-224-64 0-30.123 88.361-50.665 119.367-55.839a72.516 72.516 0 0 1-29.01-27.009C74.959 343.395 0 367.599 0 416c0 77.111 178.658 96 256 96 77.249 0 256-18.865 256-96 0-48.403-74.967-72.606-122.358-82.848z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStrikethrough.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStrikethrough.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStrikethrough.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStrikethrough.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStrikethrough.js new file mode 100644 index 0000000000..e6ccc74c89 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStrikethrough.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'strikethrough', icon: [512, 512, [], "f0cc", "M496 288H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h480c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16zm-214.666 16c27.258 12.937 46.524 28.683 46.524 56.243 0 33.108-28.977 53.676-75.621 53.676-32.325 0-76.874-12.08-76.874-44.271V368c0-8.837-7.164-16-16-16H113.75c-8.836 0-16 7.163-16 16v19.204c0 66.845 77.717 101.82 154.487 101.82 88.578 0 162.013-45.438 162.013-134.424 0-19.815-3.618-36.417-10.143-50.6H281.334zm-30.952-96c-32.422-13.505-56.836-28.946-56.836-59.683 0-33.92 30.901-47.406 64.962-47.406 42.647 0 64.962 16.593 64.962 32.985V136c0 8.837 7.164 16 16 16h45.613c8.836 0 16-7.163 16-16v-30.318c0-52.438-71.725-79.875-142.575-79.875-85.203 0-150.726 40.972-150.726 125.646 0 22.71 4.665 41.176 12.777 56.547h129.823z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStroopwafel.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStroopwafel.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStroopwafel.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStroopwafel.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStroopwafel.js new file mode 100644 index 0000000000..d979d31618 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faStroopwafel.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'stroopwafel', icon: [512, 512, [], "f551", "M188.12 210.74L142.86 256l45.25 45.25L233.37 256l-45.25-45.26zm113.13-22.62L256 142.86l-45.25 45.25L256 233.37l45.25-45.25zm-90.5 135.76L256 369.14l45.26-45.26L256 278.63l-45.25 45.25zM256 0C114.62 0 0 114.62 0 256s114.62 256 256 256 256-114.62 256-256S397.38 0 256 0zm186.68 295.6l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-28.29-28.29-45.25 45.25 33.94 33.94 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-33.94-33.94-45.26 45.26 28.29 28.29c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0L256 414.39l-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l28.29-28.29-45.25-45.26-33.94 33.94 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 33.94-33.94-45.25-45.25-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0L69.32 295.6c-3.12-3.12-3.12-8.19 0-11.31L97.61 256l-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l28.29 28.29 45.25-45.26-33.94-33.94-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 33.94 33.94 45.26-45.25-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0L256 97.61l28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-28.29 28.29 45.26 45.25 33.94-33.94-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-33.94 33.94 45.25 45.26 28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31L414.39 256l28.29 28.28a8.015 8.015 0 0 1 0 11.32zM278.63 256l45.26 45.25L369.14 256l-45.25-45.26L278.63 256z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSubscript.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSubscript.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSubscript.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSubscript.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSubscript.js new file mode 100644 index 0000000000..b98b97f2cc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSubscript.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'subscript', icon: [512, 512, [], "f12c", "M395.198 416c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 256c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 96H16C7.163 96 0 88.837 0 80V48c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035A15.999 15.999 0 0 1 204.226 32H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 256H272z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSubway.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSubway.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSubway.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSubway.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSubway.js new file mode 100644 index 0000000000..4a3466376f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSubway.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'subway', icon: [448, 512, [], "f239", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zM200 232V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm200 0V120c0-13.255-10.745-24-24-24H272c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm-48 56c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm-256 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSuitcase.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSuitcase.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSuitcase.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSuitcase.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSuitcase.js new file mode 100644 index 0000000000..29406c986a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSuitcase.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'suitcase', icon: [512, 512, [], "f0f2", "M128 480h256V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v400zm64-384h128v32H192V96zm320 80v256c0 26.5-21.5 48-48 48h-48V128h48c26.5 0 48 21.5 48 48zM96 480H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h48v352z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSun.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSun.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSun.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSun.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSun.js new file mode 100644 index 0000000000..2c1cc260a4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSun.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'sun', icon: [512, 512, [], "f185", "M274.835 12.646l25.516 62.393c4.213 10.301 16.671 14.349 26.134 8.492l57.316-35.479c15.49-9.588 34.808 4.447 30.475 22.142l-16.03 65.475c-2.647 10.81 5.053 21.408 16.152 22.231l67.224 4.987c18.167 1.348 25.546 24.057 11.641 35.826L441.81 242.26c-8.495 7.19-8.495 20.289 0 27.479l51.454 43.548c13.906 11.769 6.527 34.478-11.641 35.826l-67.224 4.987c-11.099.823-18.799 11.421-16.152 22.231l16.03 65.475c4.332 17.695-14.986 31.73-30.475 22.142l-57.316-35.479c-9.463-5.858-21.922-1.81-26.134 8.492l-25.516 62.393c-6.896 16.862-30.774 16.862-37.67 0l-25.516-62.393c-4.213-10.301-16.671-14.349-26.134-8.492l-57.317 35.479c-15.49 9.588-34.808-4.447-30.475-22.142l16.03-65.475c2.647-10.81-5.053-21.408-16.152-22.231l-67.224-4.987c-18.167-1.348-25.546-24.057-11.641-35.826L70.19 269.74c8.495-7.19 8.495-20.289 0-27.479l-51.454-43.548c-13.906-11.769-6.527-34.478 11.641-35.826l67.224-4.987c11.099-.823 18.799-11.421 16.152-22.231l-16.03-65.475c-4.332-17.695 14.986-31.73 30.475-22.142l57.317 35.479c9.463 5.858 21.921 1.81 26.134-8.492l25.516-62.393c6.896-16.861 30.774-16.861 37.67 0zM392 256c0-74.991-61.01-136-136-136-74.991 0-136 61.009-136 136s61.009 136 136 136c74.99 0 136-61.009 136-136zm-32 0c0 57.346-46.654 104-104 104s-104-46.654-104-104 46.654-104 104-104 104 46.654 104 104z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSuperscript.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSuperscript.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSuperscript.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSuperscript.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSuperscript.js new file mode 100644 index 0000000000..ee2bb22875 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSuperscript.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'superscript', icon: [512, 512, [], "f12b", "M395.198 256c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 256H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035a16 16 0 0 1 13.598-7.567H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 416H272z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSync.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSync.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSync.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSync.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSync.js new file mode 100644 index 0000000000..e987d880db --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSync.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'sync', icon: [512, 512, [], "f021", "M440.935 12.574l3.966 82.766C399.416 41.904 331.674 8 256 8 134.813 8 33.933 94.924 12.296 209.824 10.908 217.193 16.604 224 24.103 224h49.084c5.57 0 10.377-3.842 11.676-9.259C103.407 137.408 172.931 80 256 80c60.893 0 114.512 30.856 146.104 77.801l-101.53-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12h-47.411c-6.853 0-12.315 5.729-11.987 12.574zM256 432c-60.895 0-114.517-30.858-146.109-77.805l101.868 4.871c6.845.327 12.573-5.134 12.573-11.986v-47.412c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12V500c0 6.627 5.373 12 12 12h47.385c6.863 0 12.328-5.745 11.985-12.599l-4.129-82.575C112.725 470.166 180.405 504 256 504c121.187 0 222.067-86.924 243.704-201.824 1.388-7.369-4.308-14.176-11.807-14.176h-49.084c-5.57 0-10.377 3.842-11.676 9.259C408.593 374.592 339.069 432 256 432z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSyncAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSyncAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSyncAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSyncAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSyncAlt.js new file mode 100644 index 0000000000..b715612c1e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSyncAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'sync-alt', icon: [512, 512, [], "f2f1", "M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSyringe.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSyringe.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSyringe.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSyringe.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSyringe.js new file mode 100644 index 0000000000..95900a04f4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faSyringe.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'syringe', icon: [512, 512, [], "f48e", "M201.5 174.8l55.7 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-55.7-55.8-45.3 45.3 55.8 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L111 265.2l-26.4 26.4c-17.3 17.3-25.6 41.1-23 65.4l7.1 63.6L2.3 487c-3.1 3.1-3.1 8.2 0 11.3l11.3 11.3c3.1 3.1 8.2 3.1 11.3 0l66.3-66.3 63.6 7.1c23.9 2.6 47.9-5.4 65.4-23l181.9-181.9-135.7-135.7-64.9 65zm308.2-93.3L430.5 2.3c-3.1-3.1-8.2-3.1-11.3 0l-11.3 11.3c-3.1 3.1-3.1 8.2 0 11.3l28.3 28.3-45.3 45.3-56.6-56.6-17-17c-3.1-3.1-8.2-3.1-11.3 0l-33.9 33.9c-3.1 3.1-3.1 8.2 0 11.3l17 17L424.8 223l17 17c3.1 3.1 8.2 3.1 11.3 0l33.9-34c3.1-3.1 3.1-8.2 0-11.3l-73.5-73.5 45.3-45.3 28.3 28.3c3.1 3.1 8.2 3.1 11.3 0l11.3-11.3c3.1-3.2 3.1-8.2 0-11.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTable.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTable.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTable.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTable.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTable.js new file mode 100644 index 0000000000..e70683cc9e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTable.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'table', icon: [512, 512, [], "f0ce", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64v-96h160v96zm0-160H64v-96h160v96zm224 160H288v-96h160v96zm0-160H288v-96h160v96z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTableTennis.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTableTennis.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTableTennis.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTableTennis.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTableTennis.js new file mode 100644 index 0000000000..6ae41657e1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTableTennis.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'table-tennis', icon: [512, 512, [], "f45d", "M496.2 296.5C527.7 218.7 512 126.2 449 63.1 365.1-21 229-21 145.1 63.1l-56 56.1 211.5 211.5c46.1-62.1 131.5-77.4 195.6-34.2zm-217.9 79.7L57.9 155.9c-27.3 45.3-21.7 105 17.3 144.1l34.5 34.6L6.7 424c-8.6 7.5-9.1 20.7-1 28.8l53.4 53.5c8 8.1 21.2 7.6 28.7-1L177.1 402l35.7 35.7c19.7 19.7 44.6 30.5 70.3 33.3-7.1-17-11-35.6-11-55.1-.1-13.8 2.5-27 6.2-39.7zM416 320c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTablet.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTablet.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTablet.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTablet.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTablet.js new file mode 100644 index 0000000000..5485e2b49b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTablet.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'tablet', icon: [448, 512, [], "f10a", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTabletAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTabletAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTabletAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTabletAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTabletAlt.js new file mode 100644 index 0000000000..9f619c2032 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTabletAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'tablet-alt', icon: [448, 512, [], "f3fa", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm176-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h328c6.6 0 12 5.4 12 12v312z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTablets.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTablets.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTablets.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTablets.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTablets.js new file mode 100644 index 0000000000..b011a8f6a8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTablets.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'tablets', icon: [640, 512, [], "f490", "M160 192C78.9 192 12.5 250.5.1 326.7c-.8 4.8 3.3 9.3 8.3 9.3h303.3c5 0 9.1-4.5 8.3-9.3C307.5 250.5 241.1 192 160 192zm151.6 176H8.4c-5 0-9.1 4.5-8.3 9.3C12.5 453.5 78.9 512 160 512s147.5-58.5 159.9-134.7c.8-4.8-3.3-9.3-8.3-9.3zM593.4 46.6c-56.5-56.5-144.2-61.4-206.9-16-4 2.9-4.3 8.9-.8 12.3L597 254.3c3.5 3.5 9.5 3.2 12.3-.8 45.5-62.7 40.6-150.4-15.9-206.9zM363 65.7c-3.5-3.5-9.5-3.2-12.3.8-45.4 62.7-40.5 150.4 15.9 206.9 56.5 56.5 144.2 61.4 206.9 15.9 4-2.9 4.3-8.9.8-12.3L363 65.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTachometerAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTachometerAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTachometerAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTachometerAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTachometerAlt.js new file mode 100644 index 0000000000..19c532946d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTachometerAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'tachometer-alt', icon: [576, 512, [], "f3fd", "M75.694 480a48.02 48.02 0 0 1-42.448-25.571C12.023 414.3 0 368.556 0 320 0 160.942 128.942 32 288 32s288 128.942 288 288c0 48.556-12.023 94.3-33.246 134.429A48.018 48.018 0 0 1 500.306 480H75.694zM512 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zM288 128c17.673 0 32-14.327 32-32 0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32zM64 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm65.608-158.392c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm316.784 0c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm-87.078 31.534c-12.627-4.04-26.133 2.92-30.173 15.544l-45.923 143.511C250.108 322.645 224 350.264 224 384c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64 0-19.773-8.971-37.447-23.061-49.187l45.919-143.498c4.039-12.625-2.92-26.133-15.544-30.173z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTag.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTag.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTag.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTag.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTag.js new file mode 100644 index 0000000000..367fa27495 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTag.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'tag', icon: [512, 512, [], "f02b", "M0 252.118V48C0 21.49 21.49 0 48 0h204.118a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882L293.823 497.941c-18.745 18.745-49.137 18.745-67.882 0L14.059 286.059A48 48 0 0 1 0 252.118zM112 64c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTags.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTags.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTags.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTags.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTags.js new file mode 100644 index 0000000000..535afd8dbc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTags.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'tags', icon: [640, 512, [], "f02c", "M497.941 225.941L286.059 14.059A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v204.118a48 48 0 0 0 14.059 33.941l211.882 211.882c18.744 18.745 49.136 18.746 67.882 0l204.118-204.118c18.745-18.745 18.745-49.137 0-67.882zM112 160c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm513.941 133.823L421.823 497.941c-18.745 18.745-49.137 18.745-67.882 0l-.36-.36L527.64 323.522c16.999-16.999 26.36-39.6 26.36-63.64s-9.362-46.641-26.36-63.64L331.397 0h48.721a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTape.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTape.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTape.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTape.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTape.js new file mode 100644 index 0000000000..9291b3ae77 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTape.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'tape', icon: [640, 512, [], "f4db", "M224 192c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm400 224H380.6c41.5-40.7 67.4-97.3 67.4-160 0-123.7-100.3-224-224-224S0 132.3 0 256s100.3 224 224 224h400c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400-64c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTasks.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTasks.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTasks.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTasks.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTasks.js new file mode 100644 index 0000000000..63e309a0a5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTasks.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'tasks', icon: [512, 512, [], "f0ae", "M208 132h288c8.8 0 16-7.2 16-16V76c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zM64 368c-26.5 0-48.6 21.5-48.6 48s22.1 48 48.6 48 48-21.5 48-48-21.5-48-48-48zm92.5-299l-72.2 72.2-15.6 15.6c-4.7 4.7-12.9 4.7-17.6 0L3.5 109.4c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.3c4.7-4.7 12.3-4.7 17 0l17 16.5c4.6 4.7 4.6 12.3-.1 17zm0 159.6l-72.2 72.2-15.7 15.7c-4.7 4.7-12.9 4.7-17.6 0L3.5 269c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.7c4.7-4.7 12.3-4.7 17 0l17 17c4.6 4.6 4.6 12.2-.1 16.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTaxi.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTaxi.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTaxi.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTaxi.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTaxi.js new file mode 100644 index 0000000000..de168bae5c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTaxi.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'taxi', icon: [512, 512, [], "f1ba", "M461.951 243.865l-21.816-87.268A79.885 79.885 0 0 0 362.522 96H352V56c0-13.255-10.745-24-24-24H184c-13.255 0-24 10.745-24 24v40h-10.522a79.885 79.885 0 0 0-77.612 60.597L50.05 243.865C25.515 252.823 8 276.366 8 304v48c0 20.207 9.374 38.214 24 49.943V456c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-40h256v40c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-54.057c14.626-11.729 24-29.737 24-49.943v-48c0-27.634-17.515-51.177-42.049-60.135zM149.478 160h213.045a15.975 15.975 0 0 1 15.522 12.12l16.97 67.88h-278.03l16.97-67.881A15.976 15.976 0 0 1 149.478 160zM132 336c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm320 0c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTerminal.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTerminal.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTerminal.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTerminal.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTerminal.js new file mode 100644 index 0000000000..12f15dd866 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTerminal.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'terminal', icon: [640, 512, [], "f120", "M257.981 272.971L63.638 467.314c-9.373 9.373-24.569 9.373-33.941 0L7.029 444.647c-9.357-9.357-9.375-24.522-.04-33.901L161.011 256 6.99 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L257.981 239.03c9.373 9.372 9.373 24.568 0 33.941zM640 456v-32c0-13.255-10.745-24-24-24H312c-13.255 0-24 10.745-24 24v32c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTextHeight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTextHeight.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTextHeight.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTextHeight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTextHeight.js new file mode 100644 index 0000000000..6e86910987 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTextHeight.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'text-height', icon: [576, 512, [], "f034", "M16 32h288c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96h-54.761v320H232c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H88c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm475.308 4.685l79.995 80.001C581.309 126.693 574.297 144 559.99 144H512v224h48c15.639 0 20.635 17.991 11.313 27.314l-79.995 80.001c-6.247 6.247-16.381 6.245-22.626 0l-79.995-80.001C378.691 385.307 385.703 368 400.01 368H448V144h-48c-15.639 0-20.635-17.991-11.313-27.314l79.995-80.001c6.247-6.248 16.381-6.245 22.626 0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTextWidth.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTextWidth.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTextWidth.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTextWidth.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTextWidth.js new file mode 100644 index 0000000000..b556f3f67d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTextWidth.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'text-width', icon: [448, 512, [], "f035", "M16 32h416c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96H261.743v128H296c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H152c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm427.315 340.682l-80.001-79.995C353.991 283.365 336 288.362 336 304v48H112v-47.99c0-14.307-17.307-21.319-27.314-11.313L4.685 372.692c-6.245 6.245-6.247 16.379 0 22.626l80.001 79.995C94.009 484.635 112 479.638 112 464v-48h224v47.99c0 14.307 17.307 21.319 27.314 11.313l80.001-79.995c6.245-6.245 6.248-16.379 0-22.626z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTh.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTh.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTh.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTh.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTh.js new file mode 100644 index 0000000000..73caa9eddf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTh.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'th', icon: [512, 512, [], "f00a", "M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThLarge.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThLarge.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThLarge.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThLarge.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThLarge.js new file mode 100644 index 0000000000..0adebe0604 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThLarge.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'th-large', icon: [512, 512, [], "f009", "M296 32h192c13.255 0 24 10.745 24 24v160c0 13.255-10.745 24-24 24H296c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24zm-80 0H24C10.745 32 0 42.745 0 56v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zM0 296v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm296 184h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H296c-13.255 0-24 10.745-24 24v160c0 13.255 10.745 24 24 24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThList.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThList.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThList.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThList.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThList.js new file mode 100644 index 0000000000..1c2829d783 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThList.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'th-list', icon: [512, 512, [], "f00b", "M149.333 216v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zM125.333 32H24C10.745 32 0 42.745 0 56v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zm80 448H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm-24-424v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24zm24 264H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometer.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometer.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometer.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometer.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometer.js new file mode 100644 index 0000000000..8adfc42418 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometer.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'thermometer', icon: [512, 512, [], "f491", "M476.8 20.4c-37.5-30.7-95.5-26.3-131.9 10.2l-45.7 46 50.5 50.5c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.4-50.5-45.1 45.4 50.3 50.4c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L209 167.4l-45.1 45.4L214 263c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.1-50.2L96 281.1V382L7 471c-9.4 9.4-9.4 24.6 0 33.9 9.4 9.4 24.6 9.4 33.9 0l89-89h99.9L484 162.6c34.9-34.9 42.2-101.5-7.2-142.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerEmpty.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerEmpty.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerEmpty.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerEmpty.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerEmpty.js new file mode 100644 index 0000000000..116b18e1c7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerEmpty.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'thermometer-empty', icon: [256, 512, [], "f2cb", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerFull.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerFull.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerFull.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerFull.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerFull.js new file mode 100644 index 0000000000..d9c943e694 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerFull.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'thermometer-full', icon: [256, 512, [], "f2c7", "M224 96c0-53.019-42.981-96-96-96S32 42.981 32 96v203.347C12.225 321.756.166 351.136.002 383.333c-.359 70.303 56.787 128.176 127.089 128.664.299.002.61.003.909.003 70.698 0 128-57.304 128-128 0-32.459-12.088-62.09-32-84.653V96zm-96 368l-.576-.002c-43.86-.304-79.647-36.544-79.423-80.42.173-33.98 19.266-51.652 31.999-66.08V96c0-26.467 21.533-48 48-48s48 21.533 48 48v221.498c12.63 14.312 32 32.164 32 66.502 0 44.112-35.888 80-80 80zm64-80c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V96c0-17.673 14.327-32 32-32s32 14.327 32 32v232.583c19.124 11.068 32 31.732 32 55.417z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerHalf.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerHalf.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerHalf.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerHalf.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerHalf.js new file mode 100644 index 0000000000..75eed33270 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerHalf.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'thermometer-half', icon: [256, 512, [], "f2c9", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V224c0-17.673 14.327-32 32-32s32 14.327 32 32v104.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerQuarter.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerQuarter.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerQuarter.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerQuarter.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerQuarter.js new file mode 100644 index 0000000000..a0597dc33d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerQuarter.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'thermometer-quarter', icon: [256, 512, [], "f2ca", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V288c0-17.673 14.327-32 32-32s32 14.327 32 32v40.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerThreeQuarters.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerThreeQuarters.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerThreeQuarters.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerThreeQuarters.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerThreeQuarters.js new file mode 100644 index 0000000000..241be575b3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThermometerThreeQuarters.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'thermometer-three-quarters', icon: [256, 512, [], "f2c8", "M192 384c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-23.685 12.876-44.349 32-55.417V160c0-17.673 14.327-32 32-32s32 14.327 32 32v168.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThumbsDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThumbsDown.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThumbsDown.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThumbsDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThumbsDown.js new file mode 100644 index 0000000000..1724ffbc6e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThumbsDown.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'thumbs-down', icon: [512, 512, [], "f165", "M0 56v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56zm40 200c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24zm272 256c-20.183 0-29.485-39.293-33.931-57.795-5.206-21.666-10.589-44.07-25.393-58.902-32.469-32.524-49.503-73.967-89.117-113.111a11.98 11.98 0 0 1-3.558-8.521V59.901c0-6.541 5.243-11.878 11.783-11.998 15.831-.29 36.694-9.079 52.651-16.178C256.189 17.598 295.709.017 343.995 0h2.844c42.777 0 93.363.413 113.774 29.737 8.392 12.057 10.446 27.034 6.148 44.632 16.312 17.053 25.063 48.863 16.382 74.757 17.544 23.432 19.143 56.132 9.308 79.469l.11.11c11.893 11.949 19.523 31.259 19.439 49.197-.156 30.352-26.157 58.098-59.553 58.098H350.723C358.03 364.34 384 388.132 384 430.548 384 504 336 512 312 512z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThumbsUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThumbsUp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThumbsUp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThumbsUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThumbsUp.js new file mode 100644 index 0000000000..ceeb3e4d1a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThumbsUp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'thumbs-up', icon: [512, 512, [], "f164", "M104 224H24c-13.255 0-24 10.745-24 24v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V248c0-13.255-10.745-24-24-24zM64 472c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zM384 81.452c0 42.416-25.97 66.208-33.277 94.548h101.723c33.397 0 59.397 27.746 59.553 58.098.084 17.938-7.546 37.249-19.439 49.197l-.11.11c9.836 23.337 8.237 56.037-9.308 79.469 8.681 25.895-.069 57.704-16.382 74.757 4.298 17.598 2.244 32.575-6.148 44.632C440.202 511.587 389.616 512 346.839 512l-2.845-.001c-48.287-.017-87.806-17.598-119.56-31.725-15.957-7.099-36.821-15.887-52.651-16.178-6.54-.12-11.783-5.457-11.783-11.998v-213.77c0-3.2 1.282-6.271 3.558-8.521 39.614-39.144 56.648-80.587 89.117-113.111 14.804-14.832 20.188-37.236 25.393-58.902C282.515 39.293 291.817 0 312 0c24 0 72 8 72 81.452z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThumbtack.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThumbtack.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThumbtack.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThumbtack.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThumbtack.js new file mode 100644 index 0000000000..14dbee1cf7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faThumbtack.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'thumbtack', icon: [384, 512, [], "f08d", "M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTicketAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTicketAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTicketAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTicketAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTicketAlt.js new file mode 100644 index 0000000000..f093b9774b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTicketAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'ticket-alt', icon: [576, 512, [], "f3ff", "M128 160h320v192H128V160zm400 96c0 26.51 21.49 48 48 48v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c26.51 0 48-21.49 48-48s-21.49-48-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v96c-26.51 0-48 21.49-48 48zm-48-104c0-13.255-10.745-24-24-24H120c-13.255 0-24 10.745-24 24v208c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V152z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTimes.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTimes.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTimes.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTimes.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTimes.js new file mode 100644 index 0000000000..0ff0fa3c6b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTimes.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'times', icon: [352, 512, [], "f00d", "M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTimesCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTimesCircle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTimesCircle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTimesCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTimesCircle.js new file mode 100644 index 0000000000..c984ba1c8b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTimesCircle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'times-circle', icon: [512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTint.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTint.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTint.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTint.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTint.js new file mode 100644 index 0000000000..1b7cf6565b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTint.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'tint', icon: [384, 512, [], "f043", "M192 512c-98.435 0-178.087-79.652-178.087-178.087 0-111.196 101.194-154.065 148.522-311.825 9.104-30.116 51.099-28.778 59.13 0 47.546 158.486 148.522 200.069 148.522 311.825C370.087 432.348 290.435 512 192 512zm-42.522-171.826c-1.509-5.533-9.447-5.532-10.956 0-9.223 29.425-27.913 37.645-27.913 58.435C110.609 417.13 125.478 432 144 432s33.391-14.87 33.391-33.391c0-20.839-18.673-28.956-27.913-58.435z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faToggleOff.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faToggleOff.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faToggleOff.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faToggleOff.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faToggleOff.js new file mode 100644 index 0000000000..2bac1db3f8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faToggleOff.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'toggle-off', icon: [576, 512, [], "f204", "M384 64H192C85.961 64 0 149.961 0 256s85.961 192 192 192h192c106.039 0 192-85.961 192-192S490.039 64 384 64zM64 256c0-70.741 57.249-128 128-128 70.741 0 128 57.249 128 128 0 70.741-57.249 128-128 128-70.741 0-128-57.249-128-128zm320 128h-48.905c65.217-72.858 65.236-183.12 0-256H384c70.741 0 128 57.249 128 128 0 70.74-57.249 128-128 128z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faToggleOn.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faToggleOn.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faToggleOn.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faToggleOn.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faToggleOn.js new file mode 100644 index 0000000000..6563dc59ce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faToggleOn.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'toggle-on', icon: [576, 512, [], "f205", "M576 256c0 106.039-85.961 192-192 192H192C85.961 448 0 362.039 0 256S85.961 64 192 64h192c106.039 0 192 85.961 192 192zM384 128c-70.741 0-128 57.249-128 128 0 70.741 57.249 128 128 128 70.741 0 128-57.249 128-128 0-70.741-57.249-128-128-128"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faToolbox.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faToolbox.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faToolbox.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faToolbox.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faToolbox.js new file mode 100644 index 0000000000..a3a51ae277 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faToolbox.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'toolbox', icon: [512, 512, [], "f552", "M502.63 214.63l-45.25-45.25c-6-6-14.14-9.37-22.63-9.37H384V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v80H77.25c-8.49 0-16.62 3.37-22.63 9.37L9.37 214.63c-6 6-9.37 14.14-9.37 22.63V320h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-82.75c0-8.48-3.37-16.62-9.37-22.62zM320 160H192V96h128v64zm64 208c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H192v16c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H0v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96H384v16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrademark.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrademark.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrademark.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrademark.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrademark.js new file mode 100644 index 0000000000..cd81ecb85d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrademark.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'trademark', icon: [640, 512, [], "f25c", "M97.119 163.133H12c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h248.559c6.627 0 12 5.373 12 12v43.133c0 6.627-5.373 12-12 12H175.44V404c0 6.627-5.373 12-12 12h-54.322c-6.627 0-12-5.373-12-12V163.133zM329.825 96h65.425a12 12 0 0 1 11.346 8.093l43.759 127.068c7.161 20.588 16.111 52.812 16.111 52.812h.896s8.95-32.224 16.111-52.812l43.758-127.068A12 12 0 0 1 538.577 96h65.41a12 12 0 0 1 11.961 11.03l24.012 296c.567 6.987-4.951 12.97-11.961 12.97h-54.101a12 12 0 0 1-11.972-11.182l-9.082-132.93c-1.79-24.168 0-53.706 0-53.706h-.896s-10.741 33.566-17.902 53.706l-30.7 84.731a12 12 0 0 1-11.282 7.912h-50.302a12 12 0 0 1-11.282-7.912l-30.7-84.731c-7.161-20.14-17.903-53.706-17.903-53.706h-.895s1.79 29.538 0 53.706l-9.082 132.93c-.428 6.295-5.66 11.182-11.97 11.182H305.4c-7.017 0-12.536-5.994-11.959-12.987l24.425-296A11.999 11.999 0 0 1 329.825 96z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrain.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrain.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrain.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrain.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrain.js new file mode 100644 index 0000000000..55435d4661 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrain.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'train', icon: [448, 512, [], "f238", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zm-48 136V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24zm-176 64c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTransgender.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTransgender.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTransgender.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTransgender.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTransgender.js new file mode 100644 index 0000000000..59f44391d7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTransgender.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'transgender', icon: [384, 512, [], "f224", "M372 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C198.5 104.1 172.2 96 144 96 64.5 96 0 160.5 0 240c0 68.5 47.9 125.9 112 140.4V408H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM144 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTransgenderAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTransgenderAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTransgenderAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTransgenderAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTransgenderAlt.js new file mode 100644 index 0000000000..a89dfe91f9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTransgenderAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'transgender-alt', icon: [480, 512, [], "f225", "M468 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C294.5 104.1 268.2 96 240 96c-28.2 0-54.5 8.1-76.7 22.1l-16.5-16.5 19.8-19.8c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0l-19.8 19.8-19-19 16.9-16.9C107.1 12.9 101.7 0 91 0H12C5.4 0 0 5.4 0 12v79c0 10.7 12.9 16 20.5 8.5l16.9-16.9 19 19-19.8 19.8c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l19.8-19.8 16.5 16.5C104.1 185.5 96 211.8 96 240c0 68.5 47.9 125.9 112 140.4V408h-36c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM240 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrash.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrash.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrash.js new file mode 100644 index 0000000000..cf914dde3a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrash.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'trash', icon: [448, 512, [], "f1f8", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm415.2 56.7L394.8 467c-1.6 25.3-22.6 45-47.9 45H101.1c-25.3 0-46.3-19.7-47.9-45L32.8 140.7c-.4-6.9 5.1-12.7 12-12.7h358.5c6.8 0 12.3 5.8 11.9 12.7z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrashAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrashAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrashAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrashAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrashAlt.js new file mode 100644 index 0000000000..d1003ed320 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrashAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'trash-alt', icon: [448, 512, [], "f2ed", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm416 56v324c0 26.5-21.5 48-48 48H80c-26.5 0-48-21.5-48-48V140c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12zm-272 68c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTree.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTree.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTree.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTree.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTree.js new file mode 100644 index 0000000000..746d2229ab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTree.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'tree', icon: [384, 512, [], "f1bb", "M377.33 375.429L293.906 288H328c21.017 0 31.872-25.207 17.448-40.479L262.79 160H296c20.878 0 31.851-24.969 17.587-40.331l-104-112.003c-9.485-10.214-25.676-10.229-35.174 0l-104 112.003C56.206 134.969 67.037 160 88 160h33.21l-82.659 87.521C24.121 262.801 34.993 288 56 288h34.094L6.665 375.429C-7.869 390.655 2.925 416 24.025 416H144c0 32.781-11.188 49.26-33.995 67.506C98.225 492.93 104.914 512 120 512h144c15.086 0 21.776-19.069 9.995-28.494-19.768-15.814-33.992-31.665-33.995-67.496V416h119.97c21.05 0 31.929-25.309 17.36-40.571z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrophy.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrophy.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrophy.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrophy.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrophy.js new file mode 100644 index 0000000000..821da60b9a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTrophy.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'trophy', icon: [576, 512, [], "f091", "M552 64H448V24c0-13.3-10.7-24-24-24H152c-13.3 0-24 10.7-24 24v40H24C10.7 64 0 74.7 0 88v56c0 35.7 22.5 72.4 61.9 100.7 31.5 22.7 69.8 37.1 110 41.7C203.3 338.5 240 360 240 360v72h-48c-35.3 0-64 20.7-64 56v12c0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12v-12c0-35.3-28.7-56-64-56h-48v-72s36.7-21.5 68.1-73.6c40.3-4.6 78.6-19 110-41.7 39.3-28.3 61.9-65 61.9-100.7V88c0-13.3-10.7-24-24-24zM99.3 192.8C74.9 175.2 64 155.6 64 144v-16h64.2c1 32.6 5.8 61.2 12.8 86.2-15.1-5.2-29.2-12.4-41.7-21.4zM512 144c0 16.1-17.7 36.1-35.3 48.8-12.5 9-26.7 16.2-41.8 21.4 7-25 11.8-53.6 12.8-86.2H512v16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTruck.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTruck.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTruck.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTruck.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTruck.js new file mode 100644 index 0000000000..eacf0a39bd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTruck.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'truck', icon: [640, 512, [], "f0d1", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTruckLoading.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTruckLoading.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTruckLoading.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTruckLoading.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTruckLoading.js new file mode 100644 index 0000000000..aa507ddf2d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTruckLoading.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'truck-loading', icon: [640, 512, [], "f4de", "M50.2 375.6c2.3 8.5 11.1 13.6 19.6 11.3l216.4-58c8.5-2.3 13.6-11.1 11.3-19.6l-49.7-185.5c-2.3-8.5-11.1-13.6-19.6-11.3L151 133.3l24.8 92.7-61.8 16.5-24.8-92.7-77.3 20.7C3.4 172.8-1.7 181.6.6 190.1l49.6 185.5zM384 0c-17.7 0-32 14.3-32 32v323.6L5.9 450c-4.3 1.2-6.8 5.6-5.6 9.8l12.6 46.3c1.2 4.3 5.6 6.8 9.8 5.6l393.7-107.4C418.8 464.1 467.6 512 528 512c61.9 0 112-50.1 112-112V0H384zm144 448c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTruckMoving.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTruckMoving.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTruckMoving.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTruckMoving.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTruckMoving.js new file mode 100644 index 0000000000..55e87e0236 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTruckMoving.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'truck-moving', icon: [640, 512, [], "f4df", "M621.3 237.3l-58.5-58.5c-12-12-28.3-18.7-45.3-18.7H480V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v336c0 44.2 35.8 80 80 80 26.3 0 49.4-12.9 64-32.4 14.6 19.6 37.7 32.4 64 32.4 44.2 0 80-35.8 80-80 0-5.5-.6-10.8-1.6-16h163.2c-1.1 5.2-1.6 10.5-1.6 16 0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H624c8.8 0 16-7.2 16-16v-85.5c0-17-6.7-33.2-18.7-45.2zM80 432c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm128 0c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm272-224h37.5c4.3 0 8.3 1.7 11.3 4.7l43.3 43.3H480v-48zm48 224c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTshirt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTshirt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTshirt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTshirt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTshirt.js new file mode 100644 index 0000000000..cda8abdfa2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTshirt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'tshirt', icon: [640, 512, [], "f553", "M631.2 96.5L436.5 0C416.4 27.8 371.9 47.2 320 47.2S223.6 27.8 203.5 0L8.8 96.5c-7.9 4-11.1 13.6-7.2 21.5l57.2 114.5c4 7.9 13.6 11.1 21.5 7.2l56.6-27.7c10.6-5.2 23 2.5 23 14.4V480c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V226.3c0-11.8 12.4-19.6 23-14.4l56.6 27.7c7.9 4 17.5.8 21.5-7.2L638.3 118c4-7.9.8-17.6-7.1-21.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTty.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTty.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTty.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTty.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTty.js new file mode 100644 index 0000000000..95fe2fbe29 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTty.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'tty', icon: [512, 512, [], "f1e4", "M5.37 103.822c138.532-138.532 362.936-138.326 501.262 0 6.078 6.078 7.074 15.496 2.583 22.681l-43.214 69.138a18.332 18.332 0 0 1-22.356 7.305l-86.422-34.569a18.335 18.335 0 0 1-11.434-18.846L351.741 90c-62.145-22.454-130.636-21.986-191.483 0l5.953 59.532a18.331 18.331 0 0 1-11.434 18.846l-86.423 34.568a18.334 18.334 0 0 1-22.356-7.305L2.787 126.502a18.333 18.333 0 0 1 2.583-22.68zM96 308v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H92c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zM96 500v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H140c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTv.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTv.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTv.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTv.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTv.js new file mode 100644 index 0000000000..e95c6c0119 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faTv.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'tv', icon: [640, 512, [], "f26c", "M592 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h245.1v32h-160c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32-14.3 32-32s-14.3-32-32-32h-160v-32H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h512v288z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUmbrella.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUmbrella.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUmbrella.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUmbrella.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUmbrella.js new file mode 100644 index 0000000000..bf8e6855d3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUmbrella.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'umbrella', icon: [576, 512, [], "f0e9", "M557.011 267.631c-51.432-45.217-107.572-43.698-158.567 30.731-5.298 7.861-14.906 7.165-19.736 0-2.483-3.624-32.218-60.808-90.708-60.808-45.766 0-70.542 31.378-90.709 60.808-4.829 7.165-14.436 7.861-19.734 0-50.904-74.285-106.613-76.406-158.567-30.731-10.21 8.264-20.912-1.109-18.696-9.481C32.146 134.573 158.516 64.612 288.001 64.612c128.793 0 256.546 69.961 287.706 193.538 2.206 8.322-8.426 17.793-18.696 9.481zM256 261.001V416c0 17.645-14.355 32-32 32s-32-14.355-32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 52.935 43.065 96 96 96s96-43.065 96-96V261.288c-21.836-10.806-45.425-9.737-64-.287zm64-211.007V32c0-17.673-14.327-32-32-32s-32 14.327-32 32v17.987a372.105 372.105 0 0 1 64 .007z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnderline.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnderline.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnderline.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnderline.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnderline.js new file mode 100644 index 0000000000..f9c12f91a3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnderline.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'underline', icon: [448, 512, [], "f0cd", "M224.264 388.24c-91.669 0-156.603-51.165-156.603-151.392V64H39.37c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h137.39c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.813v172.848c0 53.699 28.314 79.444 76.317 79.444 46.966 0 75.796-25.434 75.796-79.965V64h-28.291c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h136.868c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.291v172.848c0 99.405-64.881 151.392-156.082 151.392zM16 448h416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUndo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUndo.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUndo.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUndo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUndo.js new file mode 100644 index 0000000000..79a279ed6f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUndo.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'undo', icon: [512, 512, [], "f0e2", "M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUndoAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUndoAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUndoAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUndoAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUndoAlt.js new file mode 100644 index 0000000000..f3c0ae313d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUndoAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'undo-alt', icon: [512, 512, [], "f2ea", "M255.545 8c-66.269.119-126.438 26.233-170.86 68.685L48.971 40.971C33.851 25.851 8 36.559 8 57.941V192c0 13.255 10.745 24 24 24h134.059c21.382 0 32.09-25.851 16.971-40.971l-41.75-41.75c30.864-28.899 70.801-44.907 113.23-45.273 92.398-.798 170.283 73.977 169.484 169.442C423.236 348.009 349.816 424 256 424c-41.127 0-79.997-14.678-110.63-41.556-4.743-4.161-11.906-3.908-16.368.553L89.34 422.659c-4.872 4.872-4.631 12.815.482 17.433C133.798 479.813 192.074 504 256 504c136.966 0 247.999-111.033 248-247.998C504.001 119.193 392.354 7.755 255.545 8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUniversalAccess.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUniversalAccess.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUniversalAccess.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUniversalAccess.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUniversalAccess.js new file mode 100644 index 0000000000..7b4051e20a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUniversalAccess.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'universal-access', icon: [512, 512, [], "f29a", "M256 48c114.953 0 208 93.029 208 208 0 114.953-93.029 208-208 208-114.953 0-208-93.029-208-208 0-114.953 93.029-208 208-208m0-40C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 56C149.961 64 64 149.961 64 256s85.961 192 192 192 192-85.961 192-192S362.039 64 256 64zm0 44c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36zm117.741 98.023c-28.712 6.779-55.511 12.748-82.14 15.807.851 101.023 12.306 123.052 25.037 155.621 3.617 9.26-.957 19.698-10.217 23.315-9.261 3.617-19.699-.957-23.316-10.217-8.705-22.308-17.086-40.636-22.261-78.549h-9.686c-5.167 37.851-13.534 56.208-22.262 78.549-3.615 9.255-14.05 13.836-23.315 10.217-9.26-3.617-13.834-14.056-10.217-23.315 12.713-32.541 24.185-54.541 25.037-155.621-26.629-3.058-53.428-9.027-82.141-15.807-8.6-2.031-13.926-10.648-11.895-19.249s10.647-13.926 19.249-11.895c96.686 22.829 124.283 22.783 220.775 0 8.599-2.03 17.218 3.294 19.249 11.895 2.029 8.601-3.297 17.219-11.897 19.249z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUniversity.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUniversity.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUniversity.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUniversity.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUniversity.js new file mode 100644 index 0000000000..661406ddbd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUniversity.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'university', icon: [512, 512, [], "f19c", "M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnlink.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnlink.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnlink.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnlink.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnlink.js new file mode 100644 index 0000000000..80eee5d3c7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnlink.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'unlink', icon: [512, 512, [], "f127", "M304.083 405.907c4.686 4.686 4.686 12.284 0 16.971l-44.674 44.674c-59.263 59.262-155.693 59.266-214.961 0-59.264-59.265-59.264-155.696 0-214.96l44.675-44.675c4.686-4.686 12.284-4.686 16.971 0l39.598 39.598c4.686 4.686 4.686 12.284 0 16.971l-44.675 44.674c-28.072 28.073-28.072 73.75 0 101.823 28.072 28.072 73.75 28.073 101.824 0l44.674-44.674c4.686-4.686 12.284-4.686 16.971 0l39.597 39.598zm-56.568-260.216c4.686 4.686 12.284 4.686 16.971 0l44.674-44.674c28.072-28.075 73.75-28.073 101.824 0 28.072 28.073 28.072 73.75 0 101.823l-44.675 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.598 39.598c4.686 4.686 12.284 4.686 16.971 0l44.675-44.675c59.265-59.265 59.265-155.695 0-214.96-59.266-59.264-155.695-59.264-214.961 0l-44.674 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.597 39.598zm234.828 359.28l22.627-22.627c9.373-9.373 9.373-24.569 0-33.941L63.598 7.029c-9.373-9.373-24.569-9.373-33.941 0L7.029 29.657c-9.373 9.373-9.373 24.569 0 33.941l441.373 441.373c9.373 9.372 24.569 9.372 33.941 0z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnlock.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnlock.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnlock.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnlock.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnlock.js new file mode 100644 index 0000000000..6ba6793bac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnlock.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'unlock', icon: [448, 512, [], "f09c", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnlockAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnlockAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnlockAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnlockAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnlockAlt.js new file mode 100644 index 0000000000..06f4a2d81e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUnlockAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'unlock-alt', icon: [448, 512, [], "f13e", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zM264 408c0 22.1-17.9 40-40 40s-40-17.9-40-40v-48c0-22.1 17.9-40 40-40s40 17.9 40 40v48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUpload.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUpload.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUpload.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUpload.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUpload.js new file mode 100644 index 0000000000..64d76eafbe --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUpload.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'upload', icon: [512, 512, [], "f093", "M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUser.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUser.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUser.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUser.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUser.js new file mode 100644 index 0000000000..eab52f2c99 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUser.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'user', icon: [448, 512, [], "f007", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserAlt.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserAlt.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserAlt.js new file mode 100644 index 0000000000..f3dd0b1b51 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserAlt.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'user-alt', icon: [512, 512, [], "f406", "M256 288c79.5 0 144-64.5 144-144S335.5 0 256 0 112 64.5 112 144s64.5 144 144 144zm128 32h-55.1c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16H128C57.3 320 0 377.3 0 448v16c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-16c0-70.7-57.3-128-128-128z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserAltSlash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserAltSlash.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserAltSlash.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserAltSlash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserAltSlash.js new file mode 100644 index 0000000000..f3d5fd6dd5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserAltSlash.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'user-alt-slash', icon: [640, 512, [], "f4fa", "M633.8 458.1L389.6 269.3C433.8 244.7 464 198.1 464 144 464 64.5 399.5 0 320 0c-67.1 0-123 46.1-139 108.2L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM198.4 320C124.2 320 64 380.2 64 454.4v9.6c0 26.5 21.5 48 48 48h382.2L245.8 320h-47.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserAstronaut.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserAstronaut.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserAstronaut.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserAstronaut.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserAstronaut.js new file mode 100644 index 0000000000..2cca14fdb2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserAstronaut.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'user-astronaut', icon: [448, 512, [], "f4fb", "M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserCheck.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserCheck.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserCheck.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserCheck.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserCheck.js new file mode 100644 index 0000000000..7c9784e45b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserCheck.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'user-check', icon: [640, 512, [], "f4fc", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4zm323-128.4l-27.8-28.1c-4.6-4.7-12.1-4.7-16.8-.1l-104.8 104-45.5-45.8c-4.6-4.7-12.1-4.7-16.8-.1l-28.1 27.9c-4.7 4.6-4.7 12.1-.1 16.8l81.7 82.3c4.6 4.7 12.1 4.7 16.8.1l141.3-140.2c4.6-4.7 4.7-12.2.1-16.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserCircle.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserCircle.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserCircle.js new file mode 100644 index 0000000000..4912b2f025 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserCircle.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'user-circle', icon: [496, 512, [], "f2bd", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 96c48.6 0 88 39.4 88 88s-39.4 88-88 88-88-39.4-88-88 39.4-88 88-88zm0 344c-58.7 0-111.3-26.6-146.5-68.2 18.8-35.4 55.6-59.8 98.5-59.8 2.4 0 4.8.4 7.1 1.1 13 4.2 26.6 6.9 40.9 6.9 14.3 0 28-2.7 40.9-6.9 2.3-.7 4.7-1.1 7.1-1.1 42.9 0 79.7 24.4 98.5 59.8C359.3 421.4 306.7 448 248 448z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserClock.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserClock.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserClock.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserClock.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserClock.js new file mode 100644 index 0000000000..6ef9b1755f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserClock.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'user-clock', icon: [640, 512, [], "f4fd", "M496 224c-79.6 0-144 64.4-144 144s64.4 144 144 144 144-64.4 144-144-64.4-144-144-144zm64 150.3c0 5.3-4.4 9.7-9.7 9.7h-60.6c-5.3 0-9.7-4.4-9.7-9.7v-76.6c0-5.3 4.4-9.7 9.7-9.7h12.6c5.3 0 9.7 4.4 9.7 9.7V352h38.3c5.3 0 9.7 4.4 9.7 9.7v12.6zM320 368c0-27.8 6.7-54.1 18.2-77.5-8-1.5-16.2-2.5-24.6-2.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h347.1c-45.3-31.9-75.1-84.5-75.1-144zm-96-112c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserCog.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserCog.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserCog.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserCog.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserCog.js new file mode 100644 index 0000000000..6d54b42653 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserCog.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'user-cog', icon: [640, 512, [], "f4fe", "M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserEdit.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserEdit.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserEdit.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserEdit.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserEdit.js new file mode 100644 index 0000000000..c04a5b420d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserEdit.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'user-edit', icon: [640, 512, [], "f4ff", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h274.9c-2.4-6.8-3.4-14-2.6-21.3l6.8-60.9 1.2-11.1 7.9-7.9 77.3-77.3c-24.5-27.7-60-45.5-99.9-45.5zm45.3 145.3l-6.8 61c-1.1 10.2 7.5 18.8 17.6 17.6l60.9-6.8 137.9-137.9-71.7-71.7-137.9 137.8zM633 268.9L595.1 231c-9.3-9.3-24.5-9.3-33.8 0l-37.8 37.8-4.1 4.1 71.8 71.7 41.8-41.8c9.3-9.4 9.3-24.5 0-33.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserFriends.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserFriends.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserFriends.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserFriends.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserFriends.js new file mode 100644 index 0000000000..75c7a7d427 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserFriends.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'user-friends', icon: [640, 512, [], "f500", "M192 256c61.9 0 112-50.1 112-112S253.9 32 192 32 80 82.1 80 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C51.6 288 0 339.6 0 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zM480 256c53 0 96-43 96-96s-43-96-96-96-96 43-96 96 43 96 96 96zm48 32h-3.8c-13.9 4.8-28.6 8-44.2 8s-30.3-3.2-44.2-8H432c-20.4 0-39.2 5.9-55.7 15.4 24.4 26.3 39.7 61.2 39.7 99.8v38.4c0 2.2-.5 4.3-.6 6.4H592c26.5 0 48-21.5 48-48 0-61.9-50.1-112-112-112z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserGraduate.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserGraduate.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserGraduate.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserGraduate.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserGraduate.js new file mode 100644 index 0000000000..81997b0730 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserGraduate.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'user-graduate', icon: [448, 512, [], "f501", "M319.4 320.6L224 416l-95.4-95.4C57.1 323.7 0 382.2 0 454.4v9.6c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-9.6c0-72.2-57.1-130.7-128.6-133.8zM13.6 79.8l6.4 1.5v58.4c-7 4.2-12 11.5-12 20.3 0 8.4 4.6 15.4 11.1 19.7L3.5 242c-1.7 6.9 2.1 14 7.6 14h41.8c5.5 0 9.3-7.1 7.6-14l-15.6-62.3C51.4 175.4 56 168.4 56 160c0-8.8-5-16.1-12-20.3V87.1l66 15.9c-8.6 17.2-14 36.4-14 57 0 70.7 57.3 128 128 128s128-57.3 128-128c0-20.6-5.3-39.8-14-57l96.3-23.2c18.2-4.4 18.2-27.1 0-31.5l-190.4-46c-13-3.1-26.7-3.1-39.7 0L13.6 48.2c-18.1 4.4-18.1 27.2 0 31.6z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserLock.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserLock.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserLock.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserLock.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserLock.js new file mode 100644 index 0000000000..d2b7e35da8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserLock.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'user-lock', icon: [640, 512, [], "f502", "M320 320c0-11.1 3.1-21.4 8.1-30.5-4.8-.5-9.5-1.5-14.5-1.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h280.9c-5.5-9.5-8.9-20.3-8.9-32V320zm-96-64c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm384 32h-32v-48c0-44.2-35.8-80-80-80s-80 35.8-80 80v48h-32c-17.7 0-32 14.3-32 32v160c0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32V320c0-17.7-14.3-32-32-32zm-80 0h-64v-48c0-17.6 14.4-32 32-32s32 14.4 32 32v48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserMd.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserMd.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserMd.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserMd.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserMd.js new file mode 100644 index 0000000000..182403dfbc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserMd.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'user-md', icon: [448, 512, [], "f0f0", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zM104 424c0 13.3 10.7 24 24 24s24-10.7 24-24-10.7-24-24-24-24 10.7-24 24zm216-135.4v49c36.5 7.4 64 39.8 64 78.4v41.7c0 7.6-5.4 14.2-12.9 15.7l-32.2 6.4c-4.3.9-8.5-1.9-9.4-6.3l-3.1-15.7c-.9-4.3 1.9-8.6 6.3-9.4l19.3-3.9V416c0-62.8-96-65.1-96 1.9v26.7l19.3 3.9c4.3.9 7.1 5.1 6.3 9.4l-3.1 15.7c-.9 4.3-5.1 7.1-9.4 6.3l-31.2-4.2c-7.9-1.1-13.8-7.8-13.8-15.9V416c0-38.6 27.5-70.9 64-78.4v-45.2c-2.2.7-4.4 1.1-6.6 1.9-18 6.3-37.3 9.8-57.4 9.8s-39.4-3.5-57.4-9.8c-7.4-2.6-14.9-4.2-22.6-5.2v81.6c23.1 6.9 40 28.1 40 53.4 0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.3 16.9-46.5 40-53.4v-80.4C48.5 301 0 355.8 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-72-56.8-130.3-128-133.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserMinus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserMinus.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserMinus.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserMinus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserMinus.js new file mode 100644 index 0000000000..d8ca656891 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserMinus.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'user-minus', icon: [640, 512, [], "f503", "M624 208H432c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserNinja.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserNinja.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserNinja.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserNinja.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserNinja.js new file mode 100644 index 0000000000..2f42f14321 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserNinja.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'user-ninja', icon: [448, 512, [], "f504", "M325.4 289.2L224 390.6 122.6 289.2C54 295.3 0 352.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-70.2-54-127.1-122.6-133.2zM32 192c27.3 0 51.8-11.5 69.2-29.7 15.1 53.9 64 93.7 122.8 93.7 70.7 0 128-57.3 128-128S294.7 0 224 0c-50.4 0-93.6 29.4-114.5 71.8C92.1 47.8 64 32 32 32c0 33.4 17.1 62.8 43.1 80-26 17.2-43.1 46.6-43.1 80zm144-96h96c17.7 0 32 14.3 32 32H144c0-17.7 14.3-32 32-32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserPlus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserPlus.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserPlus.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserPlus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserPlus.js new file mode 100644 index 0000000000..85576c1699 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserPlus.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'user-plus', icon: [640, 512, [], "f234", "M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserSecret.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserSecret.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserSecret.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserSecret.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserSecret.js new file mode 100644 index 0000000000..929a10a2cf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserSecret.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'user-secret', icon: [448, 512, [], "f21b", "M383.9 308.3l23.9-62.6c4-10.5-3.7-21.7-15-21.7h-58.5c11-18.9 17.8-40.6 17.8-64v-.3c39.2-7.8 64-19.1 64-31.7 0-13.3-27.3-25.1-70.1-33-9.2-32.8-27-65.8-40.6-82.8-9.5-11.9-25.9-15.6-39.5-8.8l-27.6 13.8c-9 4.5-19.6 4.5-28.6 0L182.1 3.4c-13.6-6.8-30-3.1-39.5 8.8-13.5 17-31.4 50-40.6 82.8-42.7 7.9-70 19.7-70 33 0 12.6 24.8 23.9 64 31.7v.3c0 23.4 6.8 45.1 17.8 64H56.3c-11.5 0-19.2 11.7-14.7 22.3l25.8 60.2C27.3 329.8 0 372.7 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-48.4-25.8-90.4-64.1-114.1zM176 480l-41.6-192 49.6 32 24 40-32 120zm96 0l-32-120 24-40 49.6-32L272 480zm41.7-298.5c-3.9 11.9-7 24.6-16.5 33.4-10.1 9.3-48 22.4-64-25-2.8-8.4-15.4-8.4-18.3 0-17 50.2-56 32.4-64 25-9.5-8.8-12.7-21.5-16.5-33.4-.8-2.5-6.3-5.7-6.3-5.8v-10.8c28.3 3.6 61 5.8 96 5.8s67.7-2.1 96-5.8v10.8c-.1.1-5.6 3.2-6.4 5.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserShield.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserShield.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserShield.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserShield.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserShield.js new file mode 100644 index 0000000000..47558e4588 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserShield.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'user-shield', icon: [640, 512, [], "f505", "M622.3 271.1l-115.2-45c-4.1-1.6-12.6-3.7-22.2 0l-115.2 45c-10.7 4.2-17.7 14-17.7 24.9 0 111.6 68.7 188.8 132.9 213.9 9.6 3.7 18 1.6 22.2 0C558.4 489.9 640 420.5 640 296c0-10.9-7-20.7-17.7-24.9zM496 462.4V273.3l95.5 37.3c-5.6 87.1-60.9 135.4-95.5 151.8zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm96 40c0-2.5.8-4.8 1.1-7.2-2.5-.1-4.9-.8-7.5-.8h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c6.8 0 13.3-1.5 19.2-4-54-42.9-99.2-116.7-99.2-212z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserSlash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserSlash.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserSlash.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserSlash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserSlash.js new file mode 100644 index 0000000000..5b26955732 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserSlash.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'user-slash', icon: [640, 512, [], "f506", "M633.8 458.1L362.3 248.3C412.1 230.7 448 183.8 448 128 448 57.3 390.7 0 320 0c-67.1 0-121.5 51.8-126.9 117.4L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM96 422.4V464c0 26.5 21.5 48 48 48h350.2L207.4 290.3C144.2 301.3 96 356 96 422.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserTag.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserTag.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserTag.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserTag.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserTag.js new file mode 100644 index 0000000000..1d1ba68e71 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserTag.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'user-tag', icon: [640, 512, [], "f507", "M630.6 364.9l-90.3-90.2c-12-12-28.3-18.7-45.3-18.7h-79.3c-17.7 0-32 14.3-32 32v79.2c0 17 6.7 33.2 18.7 45.2l90.3 90.2c12.5 12.5 32.8 12.5 45.3 0l92.5-92.5c12.6-12.5 12.6-32.7.1-45.2zm-182.8-21c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24c0 13.2-10.7 24-24 24zm-223.8-88c70.7 0 128-57.3 128-128C352 57.3 294.7 0 224 0S96 57.3 96 128c0 70.6 57.3 127.9 128 127.9zm127.8 111.2V294c-12.2-3.6-24.9-6.2-38.2-6.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 287.9 0 348.1 0 422.3v41.6c0 26.5 21.5 48 48 48h352c15.5 0 29.1-7.5 37.9-18.9l-58-58c-18.1-18.1-28.1-42.2-28.1-67.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserTie.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserTie.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserTie.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserTie.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserTie.js new file mode 100644 index 0000000000..f28be331d5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserTie.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'user-tie', icon: [448, 512, [], "f508", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm95.8 32.6L272 480l-32-136 32-56h-96l32 56-32 136-47.8-191.4C56.9 292 0 350.3 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-72.1-56.9-130.4-128.2-133.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserTimes.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserTimes.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserTimes.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserTimes.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserTimes.js new file mode 100644 index 0000000000..0d83793def --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUserTimes.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'user-times', icon: [640, 512, [], "f235", "M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUsers.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUsers.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUsers.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUsers.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUsers.js new file mode 100644 index 0000000000..e2750a492a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUsers.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'users', icon: [640, 512, [], "f0c0", "M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUsersCog.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUsersCog.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUsersCog.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUsersCog.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUsersCog.js new file mode 100644 index 0000000000..bdff52db79 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUsersCog.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'users-cog', icon: [640, 512, [], "f509", "M610.5 341.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 368.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm224 32c1.9 0 3.7-.5 5.6-.6 8.3-21.7 20.5-42.1 36.3-59.2 7.4-8 17.9-12.6 28.9-12.6 6.9 0 13.7 1.8 19.6 5.3l7.9 4.6c.8-.5 1.6-.9 2.4-1.4 7-14.6 11.2-30.8 11.2-48 0-61.9-50.1-112-112-112S208 82.1 208 144c0 61.9 50.1 112 112 112zm105.2 194.5c-2.3-1.2-4.6-2.6-6.8-3.9-8.2 4.8-15.3 9.8-27.5 9.8-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-10.7-34.5 24.9-49.7 25.8-50.3-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-3.8-2.2-7-5-9.8-8.1-3.3.2-6.5.6-9.8.6-24.6 0-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h255.4c-3.7-6-6.2-12.8-6.2-20.3v-9.2zM173.1 274.6C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUtensilSpoon.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUtensilSpoon.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUtensilSpoon.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUtensilSpoon.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUtensilSpoon.js new file mode 100644 index 0000000000..dc8a5962dd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUtensilSpoon.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'utensil-spoon', icon: [512, 512, [], "f2e5", "M480.1 31.9c-55-55.1-164.9-34.5-227.8 28.5-49.3 49.3-55.1 110-28.8 160.4L9 413.2c-11.6 10.5-12.1 28.5-1 39.5L59.3 504c11 11 29.1 10.5 39.5-1.1l192.4-214.4c50.4 26.3 111.1 20.5 160.4-28.8 63-62.9 83.6-172.8 28.5-227.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUtensils.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUtensils.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUtensils.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUtensils.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUtensils.js new file mode 100644 index 0000000000..26b4e147ff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faUtensils.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'utensils', icon: [416, 512, [], "f2e7", "M207.9 15.2c.8 4.7 16.1 94.5 16.1 128.8 0 52.3-27.8 89.6-68.9 104.6L168 486.7c.7 13.7-10.2 25.3-24 25.3H80c-13.7 0-24.7-11.5-24-25.3l12.9-238.1C27.7 233.6 0 196.2 0 144 0 109.6 15.3 19.9 16.1 15.2 19.3-5.1 61.4-5.4 64 16.3v141.2c1.3 3.4 15.1 3.2 16 0 1.4-25.3 7.9-139.2 8-141.8 3.3-20.8 44.7-20.8 47.9 0 .2 2.7 6.6 116.5 8 141.8.9 3.2 14.8 3.4 16 0V16.3c2.6-21.6 44.8-21.4 48-1.1zm119.2 285.7l-15 185.1c-1.2 14 9.9 26 23.9 26h56c13.3 0 24-10.7 24-24V24c0-13.2-10.7-24-24-24-82.5 0-221.4 178.5-64.9 300.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVenus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVenus.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVenus.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVenus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVenus.js new file mode 100644 index 0000000000..ffd98352f7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVenus.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'venus', icon: [288, 512, [], "f221", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVenusDouble.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVenusDouble.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVenusDouble.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVenusDouble.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVenusDouble.js new file mode 100644 index 0000000000..dad8803638 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVenusDouble.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'venus-double', icon: [512, 512, [], "f226", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80zm336 140.4V368h36c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-36v36c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-36h-36c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h36v-51.6c-21.2-4.8-40.6-14.3-57.2-27.3 14-16.7 25-36 32.1-57.1 14.5 14.8 34.7 24 57.1 24 44.1 0 80-35.9 80-80s-35.9-80-80-80c-22.3 0-42.6 9.2-57.1 24-7.1-21.1-18-40.4-32.1-57.1C303.4 43.6 334.3 32 368 32c79.5 0 144 64.5 144 144 0 68.5-47.9 125.9-112 140.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVenusMars.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVenusMars.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVenusMars.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVenusMars.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVenusMars.js new file mode 100644 index 0000000000..8359940403 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVenusMars.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'venus-mars', icon: [576, 512, [], "f228", "M564 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C422.5 72.1 396.2 64 368 64c-33.7 0-64.6 11.6-89.2 30.9 14 16.7 25 36 32.1 57.1 14.5-14.8 34.7-24 57.1-24 44.1 0 80 35.9 80 80s-35.9 80-80 80c-22.3 0-42.6-9.2-57.1-24-7.1 21.1-18 40.4-32.1 57.1 24.5 19.4 55.5 30.9 89.2 30.9 79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 64C64.5 64 0 128.5 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.6 112-71.9 112-140.4 0-79.5-64.5-144-144-144zm0 224c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVial.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVial.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVial.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVial.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVial.js new file mode 100644 index 0000000000..f284f77daf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVial.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'vial', icon: [480, 512, [], "f492", "M477.7 186.1L309.5 18.3c-3.1-3.1-8.2-3.1-11.3 0l-34 33.9c-3.1 3.1-3.1 8.2 0 11.3l11.2 11.1L33 316.5c-38.8 38.7-45.1 102-9.4 143.5 20.6 24 49.5 36 78.4 35.9 26.4 0 52.8-10 72.9-30.1l246.3-245.7 11.2 11.1c3.1 3.1 8.2 3.1 11.3 0l34-33.9c3.1-3 3.1-8.1 0-11.2zM318 256H161l148-147.7 78.5 78.3L318 256z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVials.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVials.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVials.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVials.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVials.js new file mode 100644 index 0000000000..450647fd4e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVials.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'vials', icon: [640, 512, [], "f493", "M72 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H72c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64zm480 384H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM360 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVideo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVideo.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVideo.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVideo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVideo.js new file mode 100644 index 0000000000..2534df20b2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVideo.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'video', icon: [576, 512, [], "f03d", "M336.2 64H47.8C21.4 64 0 85.4 0 111.8v288.4C0 426.6 21.4 448 47.8 448h288.4c26.4 0 47.8-21.4 47.8-47.8V111.8c0-26.4-21.4-47.8-47.8-47.8zm189.4 37.7L416 177.3v157.4l109.6 75.5c21.2 14.6 50.4-.3 50.4-25.8V127.5c0-25.4-29.1-40.4-50.4-25.8z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVideoSlash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVideoSlash.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVideoSlash.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVideoSlash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVideoSlash.js new file mode 100644 index 0000000000..f293a8cda2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVideoSlash.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'video-slash', icon: [640, 512, [], "f4e2", "M633.8 458.1l-55-42.5c15.4-1.4 29.2-13.7 29.2-31.1v-257c0-25.5-29.1-40.4-50.4-25.8L448 177.3v137.2l-32-24.7v-178c0-26.4-21.4-47.8-47.8-47.8H123.9L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4L42.7 82 416 370.6l178.5 138c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.5-6.9 4.2-17-2.8-22.4zM32 400.2c0 26.4 21.4 47.8 47.8 47.8h288.4c11.2 0 21.4-4 29.6-10.5L32 154.7v245.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolleyballBall.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolleyballBall.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolleyballBall.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolleyballBall.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolleyballBall.js new file mode 100644 index 0000000000..f7caeb3bf7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolleyballBall.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'volleyball-ball', icon: [495, 512, [], "f45f", "M223.3 243.4c-.9-37-8.6-72.8-22.7-105.7-90.8 42.4-157.5 122.4-180.3 216.8 13.4 30.8 32.9 58.3 56.9 81.1 22.7-79.2 74.2-147.8 146.1-192.2zM186.4 109c-15-26.4-34.5-50.1-57.4-70.7C38 88.1-15.8 191.2 4 300.5c33.4-83.1 98.4-152 182.4-191.5zM374 274.1c8.6-99.8-27.3-197.5-97.5-264.4-14.7-1.7-51.6-5.5-98.9 8.5 57.3 59.3 91 138.2 93.5 222.7 32.5 17.7 67.3 29 102.9 33.2zm-124.7 9.5c-31.6 19.3-58.7 43.9-80.2 72.6 82 57.3 184.5 75.1 277.5 47.8 19.7-26.4 34.2-56.8 42.2-89.9-26.6 6.6-53.7 10.4-80.9 10.4-54.6-.1-108.9-14.1-158.6-40.9zM151 383.3c-15.2 26-25.7 54.4-32.1 84.2 37.6 23 81.7 36.5 129.1 36.5 61 0 116.7-22.1 159.9-58.6C295 461.5 204.6 420.6 151 383.3zM331.3 22.7c55.3 70.4 82.5 161.2 74.6 253.6 30.3.2 60.5-4.8 89.7-14.2 0-2 .3-4 .3-6 0-107.8-68.7-199.1-164.6-233.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolumeDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolumeDown.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolumeDown.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolumeDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolumeDown.js new file mode 100644 index 0000000000..0d68141922 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolumeDown.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'volume-down', icon: [384, 512, [], "f027", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zM384 256c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolumeOff.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolumeOff.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolumeOff.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolumeOff.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolumeOff.js new file mode 100644 index 0000000000..15829556b3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolumeOff.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'volume-off', icon: [256, 512, [], "f026", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolumeUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolumeUp.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolumeUp.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolumeUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolumeUp.js new file mode 100644 index 0000000000..8ba17bac92 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faVolumeUp.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'volume-up', icon: [576, 512, [], "f028", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zm182.056-77.876C422.982.92 403.283 5.668 394.061 20.745c-9.221 15.077-4.473 34.774 10.604 43.995C468.967 104.063 512 174.983 512 256c0 73.431-36.077 142.292-96.507 184.206-14.522 10.072-18.129 30.01-8.057 44.532 10.076 14.528 30.016 18.126 44.531 8.057C529.633 438.927 576 350.406 576 256c0-103.244-54.579-194.877-137.944-245.859zM480 256c0-68.547-36.15-129.777-91.957-163.901-15.076-9.22-34.774-4.471-43.994 10.607-9.22 15.078-4.471 34.774 10.607 43.994C393.067 170.188 416 211.048 416 256c0 41.964-20.62 81.319-55.158 105.276-14.521 10.073-18.128 30.01-8.056 44.532 6.216 8.96 16.185 13.765 26.322 13.765a31.862 31.862 0 0 0 18.21-5.709C449.091 377.953 480 318.938 480 256zm-96 0c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWalking.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWalking.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWalking.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWalking.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWalking.js new file mode 100644 index 0000000000..58cc8b2386 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWalking.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'walking', icon: [320, 512, [], "f554", "M208 96c26.5 0 48-21.5 48-48S234.5 0 208 0s-48 21.5-48 48 21.5 48 48 48zm94.5 149.1l-23.3-11.8-9.7-29.4c-14.7-44.6-55.7-75.8-102.2-75.9-36-.1-55.9 10.1-93.3 25.2-21.6 8.7-39.3 25.2-49.7 46.2L17.6 213c-7.8 15.8-1.5 35 14.2 42.9 15.6 7.9 34.6 1.5 42.5-14.3L81 228c3.5-7 9.3-12.5 16.5-15.4l26.8-10.8-15.2 60.7c-5.2 20.8.4 42.9 14.9 58.8l59.9 65.4c7.2 7.9 12.3 17.4 14.9 27.7l18.3 73.3c4.3 17.1 21.7 27.6 38.8 23.3 17.1-4.3 27.6-21.7 23.3-38.8l-22.2-89c-2.6-10.3-7.7-19.9-14.9-27.7l-45.5-49.7 17.2-68.7 5.5 16.5c5.3 16.1 16.7 29.4 31.7 37l23.3 11.8c15.6 7.9 34.6 1.5 42.5-14.3 7.7-15.7 1.4-35.1-14.3-43zM73.6 385.8c-3.2 8.1-8 15.4-14.2 21.5l-50 50.1c-12.5 12.5-12.5 32.8 0 45.3s32.7 12.5 45.2 0l59.4-59.4c6.1-6.1 10.9-13.4 14.2-21.5l13.5-33.8c-55.3-60.3-38.7-41.8-47.4-53.7l-20.7 51.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWallet.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWallet.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWallet.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWallet.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWallet.js new file mode 100644 index 0000000000..ca38fddb0c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWallet.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'wallet', icon: [512, 512, [], "f555", "M461.2 128H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h384c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h397.2c28.02 0 50.8-21.53 50.8-48V176c0-26.47-22.78-48-50.8-48zM416 336c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWarehouse.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWarehouse.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWarehouse.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWarehouse.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWarehouse.js new file mode 100644 index 0000000000..b5a235ee8b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWarehouse.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'warehouse', icon: [640, 512, [], "f494", "M504 352H136.4c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0 96H136.1c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0-192H136.6c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm106.5-139L338.4 3.7a48.15 48.15 0 0 0-36.9 0L29.5 117C11.7 124.5 0 141.9 0 161.3V504c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V256c0-17.6 14.6-32 32.6-32h382.8c18 0 32.6 14.4 32.6 32v248c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V161.3c0-19.4-11.7-36.8-29.5-44.3z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWeight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWeight.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWeight.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWeight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWeight.js new file mode 100644 index 0000000000..970fbcd8c2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWeight.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'weight', icon: [512, 512, [], "f496", "M448 64h-26c16.4 28.3 26 61 26 96 0 105.9-86.1 192-192 192S64 265.9 64 160c0-35 9.6-67.7 26-96H64C28.7 64 0 92.7 0 128v320c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64zM256 320c88.4 0 160-71.6 160-160S344.4 0 256 0 96 71.6 96 160s71.6 160 160 160zm-.3-151.9l33.6-78.4c3.5-8.2 12.9-11.9 21-8.4s11.9 12.9 8.4 21L285 180.9c6.7 7.1 10.9 16.6 10.9 27.1 0 22.1-17.9 40-40 40s-40-17.9-40-40c.1-22 17.9-39.8 39.8-39.9z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWheelchair.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWheelchair.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWheelchair.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWheelchair.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWheelchair.js new file mode 100644 index 0000000000..f17a5e5912 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWheelchair.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'wheelchair', icon: [512, 512, [], "f193", "M496.101 385.669l14.227 28.663c3.929 7.915.697 17.516-7.218 21.445l-65.465 32.886c-16.049 7.967-35.556 1.194-43.189-15.055L331.679 320H192c-15.925 0-29.426-11.71-31.679-27.475C126.433 55.308 128.38 70.044 128 64c0-36.358 30.318-65.635 67.052-63.929 33.271 1.545 60.048 28.905 60.925 62.201.868 32.933-23.152 60.423-54.608 65.039l4.67 32.69H336c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H215.182l4.572 32H352a32 32 0 0 1 28.962 18.392L438.477 396.8l36.178-18.349c7.915-3.929 17.517-.697 21.446 7.218zM311.358 352h-24.506c-7.788 54.204-54.528 96-110.852 96-61.757 0-112-50.243-112-112 0-41.505 22.694-77.809 56.324-97.156-3.712-25.965-6.844-47.86-9.488-66.333C45.956 198.464 0 261.963 0 336c0 97.047 78.953 176 176 176 71.87 0 133.806-43.308 161.11-105.192L311.358 352z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWifi.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWifi.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWifi.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWifi.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWifi.js new file mode 100644 index 0000000000..942e68b867 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWifi.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'wifi', icon: [640, 512, [], "f1eb", "M384 416c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm136.659-124.443c6.465-6.465 6.245-17.065-.564-23.167-113.793-101.985-286.526-101.869-400.19 0-6.809 6.102-7.029 16.702-.564 23.167l34.006 34.006c5.927 5.927 15.464 6.32 21.769.796 82.88-72.609 207.074-72.447 289.768 0 6.305 5.524 15.842 5.132 21.769-.796l34.006-34.006zm112.11-113.718c6.385-6.385 6.254-16.816-.35-22.973-175.768-163.86-449.134-163.8-624.837 0-6.604 6.157-6.735 16.589-.35 22.973l33.966 33.966c6.095 6.095 15.891 6.231 22.224.383 144.763-133.668 368.356-133.702 513.156 0 6.333 5.848 16.129 5.712 22.224-.383l33.967-33.966z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowClose.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowClose.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowClose.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowClose.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowClose.js new file mode 100644 index 0000000000..34b86462fc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowClose.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'window-close', icon: [512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-83.6 290.5c4.8 4.8 4.8 12.6 0 17.4l-40.5 40.5c-4.8 4.8-12.6 4.8-17.4 0L256 313.3l-66.5 67.1c-4.8 4.8-12.6 4.8-17.4 0l-40.5-40.5c-4.8-4.8-4.8-12.6 0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6 0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1 66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8 4.8 12.6 0 17.4L313.3 256l67.1 66.5z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowMaximize.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowMaximize.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowMaximize.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowMaximize.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowMaximize.js new file mode 100644 index 0000000000..b1730ef27d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowMaximize.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'window-maximize', icon: [512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16 160H64v-84c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12v84z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowMinimize.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowMinimize.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowMinimize.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowMinimize.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowMinimize.js new file mode 100644 index 0000000000..0ef1be7842 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowMinimize.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'window-minimize', icon: [512, 512, [], "f2d1", "M464 352H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowRestore.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowRestore.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowRestore.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowRestore.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowRestore.js new file mode 100644 index 0000000000..5ca187a910 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWindowRestore.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'window-restore', icon: [512, 512, [], "f2d2", "M512 48v288c0 26.5-21.5 48-48 48h-48V176c0-44.1-35.9-80-80-80H128V48c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zM384 176v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zm-68 28c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v52h252v-52z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWineGlass.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWineGlass.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWineGlass.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWineGlass.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWineGlass.js new file mode 100644 index 0000000000..12a617eae2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWineGlass.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'wine-glass', icon: [288, 512, [], "f4e3", "M287.4 192.7l-16-178.1C270.7 6.3 263.9 0 255.7 0H32.3c-8.2 0-15 6.3-15.7 14.6L.6 192.7c-7.2 80 50.7 148.9 127.4 157.6V480H74.1c-24.5 0-33.2 32-20 32h179.8c13.1 0 4.5-32-20-32H160V350.3c76.7-8.8 134.6-77.6 127.4-157.6zM226.2 48l7.2 80H54.6l7.2-80h164.4z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWonSign.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWonSign.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWonSign.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWonSign.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWonSign.js new file mode 100644 index 0000000000..dd1e558b9a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWonSign.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'won-sign', icon: [576, 512, [], "f159", "M564 192c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-48.028l18.572-80.61c1.732-7.518-3.978-14.694-11.693-14.694h-46.107a11.998 11.998 0 0 0-11.736 9.5L450.73 128H340.839l-19.725-85.987a12 12 0 0 0-11.696-9.317H265.43a12 12 0 0 0-11.687 9.277L233.696 128H124.975L107.5 42.299a12 12 0 0 0-11.758-9.602H53.628c-7.686 0-13.39 7.124-11.709 14.624L60 128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h62.342l7.171 32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h83.856l40.927 182.624A12 12 0 0 0 148.492 480h56.767c5.583 0 10.428-3.85 11.689-9.288L259.335 288h55.086l42.386 182.712A12 12 0 0 0 368.496 480h56.826a12 12 0 0 0 11.694-9.306L479.108 288H564c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-70.146l7.373-32H564zm-425.976 0h80.757l-7.457 32h-66.776l-6.524-32zm45.796 150.029c-6.194 25.831-6.758 47.25-7.321 47.25h-1.126s-1.689-22.05-6.758-47.25L157.599 288h38.812l-12.591 54.029zM274.182 224l1.996-8.602c1.856-7.962 3.457-15.968 4.803-23.398h11.794c1.347 7.43 2.947 15.436 4.803 23.398l1.996 8.602h-25.392zm130.959 118.029c-5.068 25.2-6.758 47.25-6.758 47.25h-1.126c-.563 0-1.126-21.42-7.321-47.25L377.542 288h39.107l-11.508 54.029zM430.281 224h-67.42l-7.34-32h81.577l-6.817 32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWrench.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWrench.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWrench.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWrench.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWrench.js new file mode 100644 index 0000000000..6ee193cf62 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faWrench.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'wrench', icon: [512, 512, [], "f0ad", "M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faXRay.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faXRay.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faXRay.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faXRay.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faXRay.js new file mode 100644 index 0000000000..6467ba814d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faXRay.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'x-ray', icon: [640, 512, [], "f497", "M240 384c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm160 32c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zM624 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zm0 448h-48V96H64v352H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM480 248c0 4.4-3.6 8-8 8H336v32h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48v-16h-64v16c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48h64v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-32H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h136v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-24c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v24h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h136c4.4 0 8 3.6 8 8v16z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faYenSign.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faYenSign.d.ts new file mode 100644 index 0000000000..68c5ddb060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faYenSign.d.ts @@ -0,0 +1,3 @@ +import { IconDefinition } from "@fortawesome/fontawesome-common-types"; +declare const iconDef: IconDefinition; +export = iconDef; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faYenSign.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faYenSign.js new file mode 100644 index 0000000000..55f559739f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/faYenSign.js @@ -0,0 +1 @@ +module.exports = { prefix: 'fas', iconName: 'yen-sign', icon: [384, 512, [], "f157", "M351.208 32h-65.277a12 12 0 0 0-10.778 6.724l-55.39 113.163c-14.513 34.704-27.133 71.932-27.133 71.932h-1.262s-12.62-37.228-27.133-71.932l-55.39-113.163A11.997 11.997 0 0 0 98.068 32H32.792c-9.057 0-14.85 9.65-10.59 17.643L102.322 200H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h88.162L152 293.228V320H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h108v92c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-92h108c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12H232v-26.772L251.838 256H340c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12h-58.322l80.12-150.357C366.058 41.65 360.266 32 351.208 32z"] }; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/index.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/index.d.ts new file mode 100644 index 0000000000..b66ed5f17f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/index.d.ts @@ -0,0 +1,631 @@ +import { IconDefinition, IconLookup, IconName, IconPrefix, IconPack } from '@fortawesome/fontawesome-common-types'; +export { IconDefinition, IconLookup, IconName, IconPrefix, IconPack } from '@fortawesome/fontawesome-common-types'; +declare const pack: IconPack; +export default pack; +export const faAddressBook: IconDefinition; +export const faAddressCard: IconDefinition; +export const faAdjust: IconDefinition; +export const faAlignCenter: IconDefinition; +export const faAlignJustify: IconDefinition; +export const faAlignLeft: IconDefinition; +export const faAlignRight: IconDefinition; +export const faAllergies: IconDefinition; +export const faAmbulance: IconDefinition; +export const faAmericanSignLanguageInterpreting: IconDefinition; +export const faAnchor: IconDefinition; +export const faAngleDoubleDown: IconDefinition; +export const faAngleDoubleLeft: IconDefinition; +export const faAngleDoubleRight: IconDefinition; +export const faAngleDoubleUp: IconDefinition; +export const faAngleDown: IconDefinition; +export const faAngleLeft: IconDefinition; +export const faAngleRight: IconDefinition; +export const faAngleUp: IconDefinition; +export const faArchive: IconDefinition; +export const faArrowAltCircleDown: IconDefinition; +export const faArrowAltCircleLeft: IconDefinition; +export const faArrowAltCircleRight: IconDefinition; +export const faArrowAltCircleUp: IconDefinition; +export const faArrowCircleDown: IconDefinition; +export const faArrowCircleLeft: IconDefinition; +export const faArrowCircleRight: IconDefinition; +export const faArrowCircleUp: IconDefinition; +export const faArrowDown: IconDefinition; +export const faArrowLeft: IconDefinition; +export const faArrowRight: IconDefinition; +export const faArrowUp: IconDefinition; +export const faArrowsAlt: IconDefinition; +export const faArrowsAltH: IconDefinition; +export const faArrowsAltV: IconDefinition; +export const faAssistiveListeningSystems: IconDefinition; +export const faAsterisk: IconDefinition; +export const faAt: IconDefinition; +export const faAudioDescription: IconDefinition; +export const faBackward: IconDefinition; +export const faBalanceScale: IconDefinition; +export const faBan: IconDefinition; +export const faBandAid: IconDefinition; +export const faBarcode: IconDefinition; +export const faBars: IconDefinition; +export const faBaseballBall: IconDefinition; +export const faBasketballBall: IconDefinition; +export const faBath: IconDefinition; +export const faBatteryEmpty: IconDefinition; +export const faBatteryFull: IconDefinition; +export const faBatteryHalf: IconDefinition; +export const faBatteryQuarter: IconDefinition; +export const faBatteryThreeQuarters: IconDefinition; +export const faBed: IconDefinition; +export const faBeer: IconDefinition; +export const faBell: IconDefinition; +export const faBellSlash: IconDefinition; +export const faBicycle: IconDefinition; +export const faBinoculars: IconDefinition; +export const faBirthdayCake: IconDefinition; +export const faBlender: IconDefinition; +export const faBlind: IconDefinition; +export const faBold: IconDefinition; +export const faBolt: IconDefinition; +export const faBomb: IconDefinition; +export const faBook: IconDefinition; +export const faBookOpen: IconDefinition; +export const faBookmark: IconDefinition; +export const faBowlingBall: IconDefinition; +export const faBox: IconDefinition; +export const faBoxOpen: IconDefinition; +export const faBoxes: IconDefinition; +export const faBraille: IconDefinition; +export const faBriefcase: IconDefinition; +export const faBriefcaseMedical: IconDefinition; +export const faBroadcastTower: IconDefinition; +export const faBroom: IconDefinition; +export const faBug: IconDefinition; +export const faBuilding: IconDefinition; +export const faBullhorn: IconDefinition; +export const faBullseye: IconDefinition; +export const faBurn: IconDefinition; +export const faBus: IconDefinition; +export const faCalculator: IconDefinition; +export const faCalendar: IconDefinition; +export const faCalendarAlt: IconDefinition; +export const faCalendarCheck: IconDefinition; +export const faCalendarMinus: IconDefinition; +export const faCalendarPlus: IconDefinition; +export const faCalendarTimes: IconDefinition; +export const faCamera: IconDefinition; +export const faCameraRetro: IconDefinition; +export const faCapsules: IconDefinition; +export const faCar: IconDefinition; +export const faCaretDown: IconDefinition; +export const faCaretLeft: IconDefinition; +export const faCaretRight: IconDefinition; +export const faCaretSquareDown: IconDefinition; +export const faCaretSquareLeft: IconDefinition; +export const faCaretSquareRight: IconDefinition; +export const faCaretSquareUp: IconDefinition; +export const faCaretUp: IconDefinition; +export const faCartArrowDown: IconDefinition; +export const faCartPlus: IconDefinition; +export const faCertificate: IconDefinition; +export const faChalkboard: IconDefinition; +export const faChalkboardTeacher: IconDefinition; +export const faChartArea: IconDefinition; +export const faChartBar: IconDefinition; +export const faChartLine: IconDefinition; +export const faChartPie: IconDefinition; +export const faCheck: IconDefinition; +export const faCheckCircle: IconDefinition; +export const faCheckSquare: IconDefinition; +export const faChess: IconDefinition; +export const faChessBishop: IconDefinition; +export const faChessBoard: IconDefinition; +export const faChessKing: IconDefinition; +export const faChessKnight: IconDefinition; +export const faChessPawn: IconDefinition; +export const faChessQueen: IconDefinition; +export const faChessRook: IconDefinition; +export const faChevronCircleDown: IconDefinition; +export const faChevronCircleLeft: IconDefinition; +export const faChevronCircleRight: IconDefinition; +export const faChevronCircleUp: IconDefinition; +export const faChevronDown: IconDefinition; +export const faChevronLeft: IconDefinition; +export const faChevronRight: IconDefinition; +export const faChevronUp: IconDefinition; +export const faChild: IconDefinition; +export const faChurch: IconDefinition; +export const faCircle: IconDefinition; +export const faCircleNotch: IconDefinition; +export const faClipboard: IconDefinition; +export const faClipboardCheck: IconDefinition; +export const faClipboardList: IconDefinition; +export const faClock: IconDefinition; +export const faClone: IconDefinition; +export const faClosedCaptioning: IconDefinition; +export const faCloud: IconDefinition; +export const faCloudDownloadAlt: IconDefinition; +export const faCloudUploadAlt: IconDefinition; +export const faCode: IconDefinition; +export const faCodeBranch: IconDefinition; +export const faCoffee: IconDefinition; +export const faCog: IconDefinition; +export const faCogs: IconDefinition; +export const faCoins: IconDefinition; +export const faColumns: IconDefinition; +export const faComment: IconDefinition; +export const faCommentAlt: IconDefinition; +export const faCommentDots: IconDefinition; +export const faCommentSlash: IconDefinition; +export const faComments: IconDefinition; +export const faCompactDisc: IconDefinition; +export const faCompass: IconDefinition; +export const faCompress: IconDefinition; +export const faCopy: IconDefinition; +export const faCopyright: IconDefinition; +export const faCouch: IconDefinition; +export const faCreditCard: IconDefinition; +export const faCrop: IconDefinition; +export const faCrosshairs: IconDefinition; +export const faCrow: IconDefinition; +export const faCrown: IconDefinition; +export const faCube: IconDefinition; +export const faCubes: IconDefinition; +export const faCut: IconDefinition; +export const faDatabase: IconDefinition; +export const faDeaf: IconDefinition; +export const faDesktop: IconDefinition; +export const faDiagnoses: IconDefinition; +export const faDice: IconDefinition; +export const faDiceFive: IconDefinition; +export const faDiceFour: IconDefinition; +export const faDiceOne: IconDefinition; +export const faDiceSix: IconDefinition; +export const faDiceThree: IconDefinition; +export const faDiceTwo: IconDefinition; +export const faDivide: IconDefinition; +export const faDna: IconDefinition; +export const faDollarSign: IconDefinition; +export const faDolly: IconDefinition; +export const faDollyFlatbed: IconDefinition; +export const faDonate: IconDefinition; +export const faDoorClosed: IconDefinition; +export const faDoorOpen: IconDefinition; +export const faDotCircle: IconDefinition; +export const faDove: IconDefinition; +export const faDownload: IconDefinition; +export const faDumbbell: IconDefinition; +export const faEdit: IconDefinition; +export const faEject: IconDefinition; +export const faEllipsisH: IconDefinition; +export const faEllipsisV: IconDefinition; +export const faEnvelope: IconDefinition; +export const faEnvelopeOpen: IconDefinition; +export const faEnvelopeSquare: IconDefinition; +export const faEquals: IconDefinition; +export const faEraser: IconDefinition; +export const faEuroSign: IconDefinition; +export const faExchangeAlt: IconDefinition; +export const faExclamation: IconDefinition; +export const faExclamationCircle: IconDefinition; +export const faExclamationTriangle: IconDefinition; +export const faExpand: IconDefinition; +export const faExpandArrowsAlt: IconDefinition; +export const faExternalLinkAlt: IconDefinition; +export const faExternalLinkSquareAlt: IconDefinition; +export const faEye: IconDefinition; +export const faEyeDropper: IconDefinition; +export const faEyeSlash: IconDefinition; +export const faFastBackward: IconDefinition; +export const faFastForward: IconDefinition; +export const faFax: IconDefinition; +export const faFeather: IconDefinition; +export const faFemale: IconDefinition; +export const faFighterJet: IconDefinition; +export const faFile: IconDefinition; +export const faFileAlt: IconDefinition; +export const faFileArchive: IconDefinition; +export const faFileAudio: IconDefinition; +export const faFileCode: IconDefinition; +export const faFileExcel: IconDefinition; +export const faFileImage: IconDefinition; +export const faFileMedical: IconDefinition; +export const faFileMedicalAlt: IconDefinition; +export const faFilePdf: IconDefinition; +export const faFilePowerpoint: IconDefinition; +export const faFileVideo: IconDefinition; +export const faFileWord: IconDefinition; +export const faFilm: IconDefinition; +export const faFilter: IconDefinition; +export const faFire: IconDefinition; +export const faFireExtinguisher: IconDefinition; +export const faFirstAid: IconDefinition; +export const faFlag: IconDefinition; +export const faFlagCheckered: IconDefinition; +export const faFlask: IconDefinition; +export const faFolder: IconDefinition; +export const faFolderOpen: IconDefinition; +export const faFont: IconDefinition; +export const faFontAwesomeLogoFull: IconDefinition; +export const faFootballBall: IconDefinition; +export const faForward: IconDefinition; +export const faFrog: IconDefinition; +export const faFrown: IconDefinition; +export const faFutbol: IconDefinition; +export const faGamepad: IconDefinition; +export const faGasPump: IconDefinition; +export const faGavel: IconDefinition; +export const faGem: IconDefinition; +export const faGenderless: IconDefinition; +export const faGift: IconDefinition; +export const faGlassMartini: IconDefinition; +export const faGlasses: IconDefinition; +export const faGlobe: IconDefinition; +export const faGolfBall: IconDefinition; +export const faGraduationCap: IconDefinition; +export const faGreaterThan: IconDefinition; +export const faGreaterThanEqual: IconDefinition; +export const faHSquare: IconDefinition; +export const faHandHolding: IconDefinition; +export const faHandHoldingHeart: IconDefinition; +export const faHandHoldingUsd: IconDefinition; +export const faHandLizard: IconDefinition; +export const faHandPaper: IconDefinition; +export const faHandPeace: IconDefinition; +export const faHandPointDown: IconDefinition; +export const faHandPointLeft: IconDefinition; +export const faHandPointRight: IconDefinition; +export const faHandPointUp: IconDefinition; +export const faHandPointer: IconDefinition; +export const faHandRock: IconDefinition; +export const faHandScissors: IconDefinition; +export const faHandSpock: IconDefinition; +export const faHands: IconDefinition; +export const faHandsHelping: IconDefinition; +export const faHandshake: IconDefinition; +export const faHashtag: IconDefinition; +export const faHdd: IconDefinition; +export const faHeading: IconDefinition; +export const faHeadphones: IconDefinition; +export const faHeart: IconDefinition; +export const faHeartbeat: IconDefinition; +export const faHelicopter: IconDefinition; +export const faHistory: IconDefinition; +export const faHockeyPuck: IconDefinition; +export const faHome: IconDefinition; +export const faHospital: IconDefinition; +export const faHospitalAlt: IconDefinition; +export const faHospitalSymbol: IconDefinition; +export const faHourglass: IconDefinition; +export const faHourglassEnd: IconDefinition; +export const faHourglassHalf: IconDefinition; +export const faHourglassStart: IconDefinition; +export const faICursor: IconDefinition; +export const faIdBadge: IconDefinition; +export const faIdCard: IconDefinition; +export const faIdCardAlt: IconDefinition; +export const faImage: IconDefinition; +export const faImages: IconDefinition; +export const faInbox: IconDefinition; +export const faIndent: IconDefinition; +export const faIndustry: IconDefinition; +export const faInfinity: IconDefinition; +export const faInfo: IconDefinition; +export const faInfoCircle: IconDefinition; +export const faItalic: IconDefinition; +export const faKey: IconDefinition; +export const faKeyboard: IconDefinition; +export const faKiwiBird: IconDefinition; +export const faLanguage: IconDefinition; +export const faLaptop: IconDefinition; +export const faLeaf: IconDefinition; +export const faLemon: IconDefinition; +export const faLessThan: IconDefinition; +export const faLessThanEqual: IconDefinition; +export const faLevelDownAlt: IconDefinition; +export const faLevelUpAlt: IconDefinition; +export const faLifeRing: IconDefinition; +export const faLightbulb: IconDefinition; +export const faLink: IconDefinition; +export const faLiraSign: IconDefinition; +export const faList: IconDefinition; +export const faListAlt: IconDefinition; +export const faListOl: IconDefinition; +export const faListUl: IconDefinition; +export const faLocationArrow: IconDefinition; +export const faLock: IconDefinition; +export const faLockOpen: IconDefinition; +export const faLongArrowAltDown: IconDefinition; +export const faLongArrowAltLeft: IconDefinition; +export const faLongArrowAltRight: IconDefinition; +export const faLongArrowAltUp: IconDefinition; +export const faLowVision: IconDefinition; +export const faMagic: IconDefinition; +export const faMagnet: IconDefinition; +export const faMale: IconDefinition; +export const faMap: IconDefinition; +export const faMapMarker: IconDefinition; +export const faMapMarkerAlt: IconDefinition; +export const faMapPin: IconDefinition; +export const faMapSigns: IconDefinition; +export const faMars: IconDefinition; +export const faMarsDouble: IconDefinition; +export const faMarsStroke: IconDefinition; +export const faMarsStrokeH: IconDefinition; +export const faMarsStrokeV: IconDefinition; +export const faMedkit: IconDefinition; +export const faMeh: IconDefinition; +export const faMemory: IconDefinition; +export const faMercury: IconDefinition; +export const faMicrochip: IconDefinition; +export const faMicrophone: IconDefinition; +export const faMicrophoneAlt: IconDefinition; +export const faMicrophoneAltSlash: IconDefinition; +export const faMicrophoneSlash: IconDefinition; +export const faMinus: IconDefinition; +export const faMinusCircle: IconDefinition; +export const faMinusSquare: IconDefinition; +export const faMobile: IconDefinition; +export const faMobileAlt: IconDefinition; +export const faMoneyBill: IconDefinition; +export const faMoneyBillAlt: IconDefinition; +export const faMoneyBillWave: IconDefinition; +export const faMoneyBillWaveAlt: IconDefinition; +export const faMoneyCheck: IconDefinition; +export const faMoneyCheckAlt: IconDefinition; +export const faMoon: IconDefinition; +export const faMotorcycle: IconDefinition; +export const faMousePointer: IconDefinition; +export const faMusic: IconDefinition; +export const faNeuter: IconDefinition; +export const faNewspaper: IconDefinition; +export const faNotEqual: IconDefinition; +export const faNotesMedical: IconDefinition; +export const faObjectGroup: IconDefinition; +export const faObjectUngroup: IconDefinition; +export const faOutdent: IconDefinition; +export const faPaintBrush: IconDefinition; +export const faPalette: IconDefinition; +export const faPallet: IconDefinition; +export const faPaperPlane: IconDefinition; +export const faPaperclip: IconDefinition; +export const faParachuteBox: IconDefinition; +export const faParagraph: IconDefinition; +export const faParking: IconDefinition; +export const faPaste: IconDefinition; +export const faPause: IconDefinition; +export const faPauseCircle: IconDefinition; +export const faPaw: IconDefinition; +export const faPenSquare: IconDefinition; +export const faPencilAlt: IconDefinition; +export const faPeopleCarry: IconDefinition; +export const faPercent: IconDefinition; +export const faPercentage: IconDefinition; +export const faPhone: IconDefinition; +export const faPhoneSlash: IconDefinition; +export const faPhoneSquare: IconDefinition; +export const faPhoneVolume: IconDefinition; +export const faPiggyBank: IconDefinition; +export const faPills: IconDefinition; +export const faPlane: IconDefinition; +export const faPlay: IconDefinition; +export const faPlayCircle: IconDefinition; +export const faPlug: IconDefinition; +export const faPlus: IconDefinition; +export const faPlusCircle: IconDefinition; +export const faPlusSquare: IconDefinition; +export const faPodcast: IconDefinition; +export const faPoo: IconDefinition; +export const faPortrait: IconDefinition; +export const faPoundSign: IconDefinition; +export const faPowerOff: IconDefinition; +export const faPrescriptionBottle: IconDefinition; +export const faPrescriptionBottleAlt: IconDefinition; +export const faPrint: IconDefinition; +export const faProcedures: IconDefinition; +export const faProjectDiagram: IconDefinition; +export const faPuzzlePiece: IconDefinition; +export const faQrcode: IconDefinition; +export const faQuestion: IconDefinition; +export const faQuestionCircle: IconDefinition; +export const faQuidditch: IconDefinition; +export const faQuoteLeft: IconDefinition; +export const faQuoteRight: IconDefinition; +export const faRandom: IconDefinition; +export const faReceipt: IconDefinition; +export const faRecycle: IconDefinition; +export const faRedo: IconDefinition; +export const faRedoAlt: IconDefinition; +export const faRegistered: IconDefinition; +export const faReply: IconDefinition; +export const faReplyAll: IconDefinition; +export const faRetweet: IconDefinition; +export const faRibbon: IconDefinition; +export const faRoad: IconDefinition; +export const faRobot: IconDefinition; +export const faRocket: IconDefinition; +export const faRss: IconDefinition; +export const faRssSquare: IconDefinition; +export const faRubleSign: IconDefinition; +export const faRuler: IconDefinition; +export const faRulerCombined: IconDefinition; +export const faRulerHorizontal: IconDefinition; +export const faRulerVertical: IconDefinition; +export const faRupeeSign: IconDefinition; +export const faSave: IconDefinition; +export const faSchool: IconDefinition; +export const faScrewdriver: IconDefinition; +export const faSearch: IconDefinition; +export const faSearchMinus: IconDefinition; +export const faSearchPlus: IconDefinition; +export const faSeedling: IconDefinition; +export const faServer: IconDefinition; +export const faShare: IconDefinition; +export const faShareAlt: IconDefinition; +export const faShareAltSquare: IconDefinition; +export const faShareSquare: IconDefinition; +export const faShekelSign: IconDefinition; +export const faShieldAlt: IconDefinition; +export const faShip: IconDefinition; +export const faShippingFast: IconDefinition; +export const faShoePrints: IconDefinition; +export const faShoppingBag: IconDefinition; +export const faShoppingBasket: IconDefinition; +export const faShoppingCart: IconDefinition; +export const faShower: IconDefinition; +export const faSign: IconDefinition; +export const faSignInAlt: IconDefinition; +export const faSignLanguage: IconDefinition; +export const faSignOutAlt: IconDefinition; +export const faSignal: IconDefinition; +export const faSitemap: IconDefinition; +export const faSkull: IconDefinition; +export const faSlidersH: IconDefinition; +export const faSmile: IconDefinition; +export const faSmoking: IconDefinition; +export const faSmokingBan: IconDefinition; +export const faSnowflake: IconDefinition; +export const faSort: IconDefinition; +export const faSortAlphaDown: IconDefinition; +export const faSortAlphaUp: IconDefinition; +export const faSortAmountDown: IconDefinition; +export const faSortAmountUp: IconDefinition; +export const faSortDown: IconDefinition; +export const faSortNumericDown: IconDefinition; +export const faSortNumericUp: IconDefinition; +export const faSortUp: IconDefinition; +export const faSpaceShuttle: IconDefinition; +export const faSpinner: IconDefinition; +export const faSquare: IconDefinition; +export const faSquareFull: IconDefinition; +export const faStar: IconDefinition; +export const faStarHalf: IconDefinition; +export const faStepBackward: IconDefinition; +export const faStepForward: IconDefinition; +export const faStethoscope: IconDefinition; +export const faStickyNote: IconDefinition; +export const faStop: IconDefinition; +export const faStopCircle: IconDefinition; +export const faStopwatch: IconDefinition; +export const faStore: IconDefinition; +export const faStoreAlt: IconDefinition; +export const faStream: IconDefinition; +export const faStreetView: IconDefinition; +export const faStrikethrough: IconDefinition; +export const faStroopwafel: IconDefinition; +export const faSubscript: IconDefinition; +export const faSubway: IconDefinition; +export const faSuitcase: IconDefinition; +export const faSun: IconDefinition; +export const faSuperscript: IconDefinition; +export const faSync: IconDefinition; +export const faSyncAlt: IconDefinition; +export const faSyringe: IconDefinition; +export const faTable: IconDefinition; +export const faTableTennis: IconDefinition; +export const faTablet: IconDefinition; +export const faTabletAlt: IconDefinition; +export const faTablets: IconDefinition; +export const faTachometerAlt: IconDefinition; +export const faTag: IconDefinition; +export const faTags: IconDefinition; +export const faTape: IconDefinition; +export const faTasks: IconDefinition; +export const faTaxi: IconDefinition; +export const faTerminal: IconDefinition; +export const faTextHeight: IconDefinition; +export const faTextWidth: IconDefinition; +export const faTh: IconDefinition; +export const faThLarge: IconDefinition; +export const faThList: IconDefinition; +export const faThermometer: IconDefinition; +export const faThermometerEmpty: IconDefinition; +export const faThermometerFull: IconDefinition; +export const faThermometerHalf: IconDefinition; +export const faThermometerQuarter: IconDefinition; +export const faThermometerThreeQuarters: IconDefinition; +export const faThumbsDown: IconDefinition; +export const faThumbsUp: IconDefinition; +export const faThumbtack: IconDefinition; +export const faTicketAlt: IconDefinition; +export const faTimes: IconDefinition; +export const faTimesCircle: IconDefinition; +export const faTint: IconDefinition; +export const faToggleOff: IconDefinition; +export const faToggleOn: IconDefinition; +export const faToolbox: IconDefinition; +export const faTrademark: IconDefinition; +export const faTrain: IconDefinition; +export const faTransgender: IconDefinition; +export const faTransgenderAlt: IconDefinition; +export const faTrash: IconDefinition; +export const faTrashAlt: IconDefinition; +export const faTree: IconDefinition; +export const faTrophy: IconDefinition; +export const faTruck: IconDefinition; +export const faTruckLoading: IconDefinition; +export const faTruckMoving: IconDefinition; +export const faTshirt: IconDefinition; +export const faTty: IconDefinition; +export const faTv: IconDefinition; +export const faUmbrella: IconDefinition; +export const faUnderline: IconDefinition; +export const faUndo: IconDefinition; +export const faUndoAlt: IconDefinition; +export const faUniversalAccess: IconDefinition; +export const faUniversity: IconDefinition; +export const faUnlink: IconDefinition; +export const faUnlock: IconDefinition; +export const faUnlockAlt: IconDefinition; +export const faUpload: IconDefinition; +export const faUser: IconDefinition; +export const faUserAlt: IconDefinition; +export const faUserAltSlash: IconDefinition; +export const faUserAstronaut: IconDefinition; +export const faUserCheck: IconDefinition; +export const faUserCircle: IconDefinition; +export const faUserClock: IconDefinition; +export const faUserCog: IconDefinition; +export const faUserEdit: IconDefinition; +export const faUserFriends: IconDefinition; +export const faUserGraduate: IconDefinition; +export const faUserLock: IconDefinition; +export const faUserMd: IconDefinition; +export const faUserMinus: IconDefinition; +export const faUserNinja: IconDefinition; +export const faUserPlus: IconDefinition; +export const faUserSecret: IconDefinition; +export const faUserShield: IconDefinition; +export const faUserSlash: IconDefinition; +export const faUserTag: IconDefinition; +export const faUserTie: IconDefinition; +export const faUserTimes: IconDefinition; +export const faUsers: IconDefinition; +export const faUsersCog: IconDefinition; +export const faUtensilSpoon: IconDefinition; +export const faUtensils: IconDefinition; +export const faVenus: IconDefinition; +export const faVenusDouble: IconDefinition; +export const faVenusMars: IconDefinition; +export const faVial: IconDefinition; +export const faVials: IconDefinition; +export const faVideo: IconDefinition; +export const faVideoSlash: IconDefinition; +export const faVolleyballBall: IconDefinition; +export const faVolumeDown: IconDefinition; +export const faVolumeOff: IconDefinition; +export const faVolumeUp: IconDefinition; +export const faWalking: IconDefinition; +export const faWallet: IconDefinition; +export const faWarehouse: IconDefinition; +export const faWeight: IconDefinition; +export const faWheelchair: IconDefinition; +export const faWifi: IconDefinition; +export const faWindowClose: IconDefinition; +export const faWindowMaximize: IconDefinition; +export const faWindowMinimize: IconDefinition; +export const faWindowRestore: IconDefinition; +export const faWineGlass: IconDefinition; +export const faWonSign: IconDefinition; +export const faWrench: IconDefinition; +export const faXRay: IconDefinition; +export const faYenSign: IconDefinition; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/index.es.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/index.es.js new file mode 100644 index 0000000000..f886314367 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/index.es.js @@ -0,0 +1,1376 @@ +/*! + * Font Awesome Free 5.0.13 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +var _WINDOW = {}; +try { + if (typeof window !== 'undefined') _WINDOW = window; + +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; + + + + + +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; + + + + + + + +var PRODUCTION = function () { + try { + return process.env.NODE_ENV === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + + + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var prefix = "fas"; +var faAddressBook = { prefix: 'fas', iconName: 'address-book', icon: [448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"] }; +var faAddressCard = { prefix: 'fas', iconName: 'address-card', icon: [576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-352 96c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H86.4C74 384 64 375.4 64 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2zM512 312c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z"] }; +var faAdjust = { prefix: 'fas', iconName: 'adjust', icon: [512, 512, [], "f042", "M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z"] }; +var faAlignCenter = { prefix: 'fas', iconName: 'align-center', icon: [448, 512, [], "f037", "M352 44v40c0 8.837-7.163 16-16 16H112c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h224c8.837 0 16 7.163 16 16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm320-200H112c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z"] }; +var faAlignJustify = { prefix: 'fas', iconName: 'align-justify', icon: [448, 512, [], "f039", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm16 144h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0-128h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faAlignLeft = { prefix: 'fas', iconName: 'align-left', icon: [448, 512, [], "f036", "M288 44v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16zM0 172v40c0 8.837 7.163 16 16 16h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16zm16 312h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm256-200H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z"] }; +var faAlignRight = { prefix: 'fas', iconName: 'align-right', icon: [448, 512, [], "f038", "M160 84V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H176c-8.837 0-16-7.163-16-16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faAllergies = { prefix: 'fas', iconName: 'allergies', icon: [448, 512, [], "f461", "M416 112c-17.6 0-32 14.4-32 32v72c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v152c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V32c0-17.6-14.4-32-32-32s-32 14.4-32 32v184c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32S96 46.4 96 64v241l-23.6-32.5c-13-17.9-38-21.8-55.9-8.8s-21.8 38-8.8 55.9l125.6 172.7c9 12.4 23.5 19.8 38.8 19.8h197.6c22.3 0 41.6-15.3 46.7-37l26.5-112.7c3.2-13.7 4.9-28.3 5.1-42.3V144c0-17.6-14.4-32-32-32zM176 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 32c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32-128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"] }; +var faAmbulance = { prefix: 'fas', iconName: 'ambulance', icon: [640, 512, [], "f0f9", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm144-248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm176 248c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"] }; +var faAmericanSignLanguageInterpreting = { prefix: 'fas', iconName: 'american-sign-language-interpreting', icon: [640, 512, [], "f2a3", "M290.547 189.039c-20.295-10.149-44.147-11.199-64.739-3.89 42.606 0 71.208 20.475 85.578 50.576 8.576 17.899-5.148 38.071-23.617 38.071 18.429 0 32.211 20.136 23.617 38.071-14.725 30.846-46.123 50.854-80.298 50.854-.557 0-94.471-8.615-94.471-8.615l-66.406 33.347c-9.384 4.693-19.815.379-23.895-7.781L1.86 290.747c-4.167-8.615-1.111-18.897 6.946-23.621l58.072-33.069L108 159.861c6.39-57.245 34.731-109.767 79.743-146.726 11.391-9.448 28.341-7.781 37.51 3.613 9.446 11.394 7.78 28.067-3.612 37.516-12.503 10.559-23.618 22.509-32.509 35.57 21.672-14.729 46.679-24.732 74.186-28.067 14.725-1.945 28.063 8.336 29.73 23.065 1.945 14.728-8.336 28.067-23.062 29.734-16.116 1.945-31.12 7.503-44.178 15.284 26.114-5.713 58.712-3.138 88.079 11.115 13.336 6.669 18.893 22.509 12.224 35.848-6.389 13.06-22.504 18.617-35.564 12.226zm-27.229 69.472c-6.112-12.505-18.338-20.286-32.231-20.286a35.46 35.46 0 0 0-35.565 35.57c0 21.428 17.808 35.57 35.565 35.57 13.893 0 26.119-7.781 32.231-20.286 4.446-9.449 13.614-15.006 23.339-15.284-9.725-.277-18.893-5.835-23.339-15.284zm374.821-37.237c4.168 8.615 1.111 18.897-6.946 23.621l-58.071 33.069L532 352.16c-6.39 57.245-34.731 109.767-79.743 146.726-10.932 9.112-27.799 8.144-37.51-3.613-9.446-11.394-7.78-28.067 3.613-37.516 12.503-10.559 23.617-22.509 32.508-35.57-21.672 14.729-46.679 24.732-74.186 28.067-10.021 2.506-27.552-5.643-29.73-23.065-1.945-14.728 8.336-28.067 23.062-29.734 16.116-1.946 31.12-7.503 44.178-15.284-26.114 5.713-58.712 3.138-88.079-11.115-13.336-6.669-18.893-22.509-12.224-35.848 6.389-13.061 22.505-18.619 35.565-12.227 20.295 10.149 44.147 11.199 64.739 3.89-42.606 0-71.208-20.475-85.578-50.576-8.576-17.899 5.148-38.071 23.617-38.071-18.429 0-32.211-20.136-23.617-38.071 14.033-29.396 44.039-50.887 81.966-50.854l92.803 8.615 66.406-33.347c9.408-4.704 19.828-.354 23.894 7.781l44.455 88.926zm-229.227-18.618c-13.893 0-26.119 7.781-32.231 20.286-4.446 9.449-13.614 15.006-23.339 15.284 9.725.278 18.893 5.836 23.339 15.284 6.112 12.505 18.338 20.286 32.231 20.286a35.46 35.46 0 0 0 35.565-35.57c0-21.429-17.808-35.57-35.565-35.57z"] }; +var faAnchor = { prefix: 'fas', iconName: 'anchor', icon: [576, 512, [], "f13d", "M12.971 352h32.394C67.172 454.735 181.944 512 288 512c106.229 0 220.853-57.38 242.635-160h32.394c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0l-67.029 67.029c-7.56 7.56-2.206 20.485 8.485 20.485h35.146c-20.29 54.317-84.963 86.588-144.117 94.015V256h52c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-52v-5.47c37.281-13.178 63.995-48.725 64-90.518C384.005 43.772 341.605.738 289.37.01 235.723-.739 192 42.525 192 96c0 41.798 26.716 77.35 64 90.53V192h-52c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v190.015c-58.936-7.399-123.82-39.679-144.117-94.015h35.146c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0L4.485 331.515C-3.074 339.074 2.28 352 12.971 352zM288 64c17.645 0 32 14.355 32 32s-14.355 32-32 32-32-14.355-32-32 14.355-32 32-32z"] }; +var faAngleDoubleDown = { prefix: 'fas', iconName: 'angle-double-down', icon: [320, 512, [], "f103", "M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z"] }; +var faAngleDoubleLeft = { prefix: 'fas', iconName: 'angle-double-left', icon: [448, 512, [], "f100", "M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z"] }; +var faAngleDoubleRight = { prefix: 'fas', iconName: 'angle-double-right', icon: [448, 512, [], "f101", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z"] }; +var faAngleDoubleUp = { prefix: 'fas', iconName: 'angle-double-up', icon: [320, 512, [], "f102", "M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z"] }; +var faAngleDown = { prefix: 'fas', iconName: 'angle-down', icon: [320, 512, [], "f107", "M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"] }; +var faAngleLeft = { prefix: 'fas', iconName: 'angle-left', icon: [256, 512, [], "f104", "M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"] }; +var faAngleRight = { prefix: 'fas', iconName: 'angle-right', icon: [256, 512, [], "f105", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"] }; +var faAngleUp = { prefix: 'fas', iconName: 'angle-up', icon: [320, 512, [], "f106", "M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z"] }; +var faArchive = { prefix: 'fas', iconName: 'archive', icon: [512, 512, [], "f187", "M32 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160H32v288zm160-212c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v8c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-8zM480 32H32C14.3 32 0 46.3 0 64v48c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16V64c0-17.7-14.3-32-32-32z"] }; +var faArrowAltCircleDown = { prefix: 'fas', iconName: 'arrow-alt-circle-down', icon: [512, 512, [], "f358", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM212 140v116h-70.9c-10.7 0-16.1 13-8.5 20.5l114.9 114.3c4.7 4.7 12.2 4.7 16.9 0l114.9-114.3c7.6-7.6 2.2-20.5-8.5-20.5H300V140c0-6.6-5.4-12-12-12h-64c-6.6 0-12 5.4-12 12z"] }; +var faArrowAltCircleLeft = { prefix: 'fas', iconName: 'arrow-alt-circle-left', icon: [512, 512, [], "f359", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z"] }; +var faArrowAltCircleRight = { prefix: 'fas', iconName: 'arrow-alt-circle-right', icon: [512, 512, [], "f35a", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z"] }; +var faArrowAltCircleUp = { prefix: 'fas', iconName: 'arrow-alt-circle-up', icon: [512, 512, [], "f35b", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm292 116V256h70.9c10.7 0 16.1-13 8.5-20.5L264.5 121.2c-4.7-4.7-12.2-4.7-16.9 0l-115 114.3c-7.6 7.6-2.2 20.5 8.5 20.5H212v116c0 6.6 5.4 12 12 12h64c6.6 0 12-5.4 12-12z"] }; +var faArrowCircleDown = { prefix: 'fas', iconName: 'arrow-circle-down', icon: [512, 512, [], "f0ab", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-143.6-28.9L288 302.6V120c0-13.3-10.7-24-24-24h-16c-13.3 0-24 10.7-24 24v182.6l-72.4-75.5c-9.3-9.7-24.8-9.9-34.3-.4l-10.9 11c-9.4 9.4-9.4 24.6 0 33.9L239 404.3c9.4 9.4 24.6 9.4 33.9 0l132.7-132.7c9.4-9.4 9.4-24.6 0-33.9l-10.9-11c-9.5-9.5-25-9.3-34.3.4z"] }; +var faArrowCircleLeft = { prefix: 'fas', iconName: 'arrow-circle-left', icon: [512, 512, [], "f0a8", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm28.9-143.6L209.4 288H392c13.3 0 24-10.7 24-24v-16c0-13.3-10.7-24-24-24H209.4l75.5-72.4c9.7-9.3 9.9-24.8.4-34.3l-11-10.9c-9.4-9.4-24.6-9.4-33.9 0L107.7 239c-9.4 9.4-9.4 24.6 0 33.9l132.7 132.7c9.4 9.4 24.6 9.4 33.9 0l11-10.9c9.5-9.5 9.3-25-.4-34.3z"] }; +var faArrowCircleRight = { prefix: 'fas', iconName: 'arrow-circle-right', icon: [512, 512, [], "f0a9", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28.9 143.6l75.5 72.4H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h182.6l-75.5 72.4c-9.7 9.3-9.9 24.8-.4 34.3l11 10.9c9.4 9.4 24.6 9.4 33.9 0L404.3 273c9.4-9.4 9.4-24.6 0-33.9L271.6 106.3c-9.4-9.4-24.6-9.4-33.9 0l-11 10.9c-9.5 9.6-9.3 25.1.4 34.4z"] }; +var faArrowCircleUp = { prefix: 'fas', iconName: 'arrow-circle-up', icon: [512, 512, [], "f0aa", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z"] }; +var faArrowDown = { prefix: 'fas', iconName: 'arrow-down', icon: [448, 512, [], "f063", "M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z"] }; +var faArrowLeft = { prefix: 'fas', iconName: 'arrow-left', icon: [448, 512, [], "f060", "M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z"] }; +var faArrowRight = { prefix: 'fas', iconName: 'arrow-right', icon: [448, 512, [], "f061", "M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z"] }; +var faArrowUp = { prefix: 'fas', iconName: 'arrow-up', icon: [448, 512, [], "f062", "M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z"] }; +var faArrowsAlt = { prefix: 'fas', iconName: 'arrows-alt', icon: [512, 512, [], "f0b2", "M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z"] }; +var faArrowsAltH = { prefix: 'fas', iconName: 'arrows-alt-h', icon: [512, 512, [], "f337", "M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z"] }; +var faArrowsAltV = { prefix: 'fas', iconName: 'arrows-alt-v', icon: [256, 512, [], "f338", "M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z"] }; +var faAssistiveListeningSystems = { prefix: 'fas', iconName: 'assistive-listening-systems', icon: [512, 512, [], "f2a2", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z"] }; +var faAsterisk = { prefix: 'fas', iconName: 'asterisk', icon: [512, 512, [], "f069", "M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z"] }; +var faAt = { prefix: 'fas', iconName: 'at', icon: [512, 512, [], "f1fa", "M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z"] }; +var faAudioDescription = { prefix: 'fas', iconName: 'audio-description', icon: [512, 512, [], "f29e", "M162.925 238.709l8.822 30.655h-25.606l9.041-30.652c1.277-4.421 2.651-9.994 3.872-15.245 1.22 5.251 2.594 10.823 3.871 15.242zm166.474-32.099h-14.523v98.781h14.523c29.776 0 46.175-17.678 46.175-49.776 0-32.239-17.49-49.005-46.175-49.005zM512 112v288c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48zM245.459 336.139l-57.097-168A12.001 12.001 0 0 0 177 160h-35.894a12.001 12.001 0 0 0-11.362 8.139l-57.097 168C70.003 343.922 75.789 352 84.009 352h29.133a12 12 0 0 0 11.535-8.693l8.574-29.906h51.367l8.793 29.977A12 12 0 0 0 204.926 352h29.172c8.22 0 14.006-8.078 11.361-15.861zm184.701-80.525c0-58.977-37.919-95.614-98.96-95.614h-57.366c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12H331.2c61.041 0 98.96-36.933 98.96-96.386z"] }; +var faBackward = { prefix: 'fas', iconName: 'backward', icon: [512, 512, [], "f04a", "M11.5 280.6l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2zm256 0l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2z"] }; +var faBalanceScale = { prefix: 'fas', iconName: 'balance-scale', icon: [640, 512, [], "f24e", "M256 336h-.02c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0C-2.06 328.75.02 320.33.02 336H0c0 44.18 57.31 80 128 80s128-35.82 128-80zM128 176l72 144H56l72-144zm511.98 160c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 320l72-144 72 144H440zm88 128H352V153.25c23.51-10.29 41.16-31.48 46.39-57.25H528c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H383.64C369.04 12.68 346.09 0 320 0s-49.04 12.68-63.64 32H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h129.61c5.23 25.76 22.87 46.96 46.39 57.25V448H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"] }; +var faBan = { prefix: 'fas', iconName: 'ban', icon: [512, 512, [], "f05e", "M256 8C119.034 8 8 119.033 8 256s111.034 248 248 248 248-111.034 248-248S392.967 8 256 8zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676zM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676z"] }; +var faBandAid = { prefix: 'fas', iconName: 'band-aid', icon: [640, 512, [], "f462", "M0 160v192c0 35.3 28.7 64 64 64h96V96H64c-35.3 0-64 28.7-64 64zm576-64h-96v320h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64zM192 416h256V96H192v320zm176-232c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24z"] }; +var faBarcode = { prefix: 'fas', iconName: 'barcode', icon: [512, 512, [], "f02a", "M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z"] }; +var faBars = { prefix: 'fas', iconName: 'bars', icon: [448, 512, [], "f0c9", "M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faBaseballBall = { prefix: 'fas', iconName: 'baseball-ball', icon: [496, 512, [], "f433", "M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z"] }; +var faBasketballBall = { prefix: 'fas', iconName: 'basketball-ball', icon: [496, 512, [], "f434", "M212.3 10.3c-43.8 6.3-86.2 24.1-122.2 53.8l77.4 77.4c27.8-35.8 43.3-81.2 44.8-131.2zM248 222L405.9 64.1c-42.4-35-93.6-53.5-145.5-56.1-1.2 63.9-21.5 122.3-58.7 167.7L248 222zM56.1 98.1c-29.7 36-47.5 78.4-53.8 122.2 50-1.5 95.5-17 131.2-44.8L56.1 98.1zm272.2 204.2c45.3-37.1 103.7-57.4 167.7-58.7-2.6-51.9-21.1-103.1-56.1-145.5L282 256l46.3 46.3zM248 290L90.1 447.9c42.4 34.9 93.6 53.5 145.5 56.1 1.3-64 21.6-122.4 58.7-167.7L248 290zm191.9 123.9c29.7-36 47.5-78.4 53.8-122.2-50.1 1.6-95.5 17.1-131.2 44.8l77.4 77.4zM167.7 209.7C122.3 246.9 63.9 267.3 0 268.4c2.6 51.9 21.1 103.1 56.1 145.5L214 256l-46.3-46.3zm116 292c43.8-6.3 86.2-24.1 122.2-53.8l-77.4-77.4c-27.7 35.7-43.2 81.2-44.8 131.2z"] }; +var faBath = { prefix: 'fas', iconName: 'bath', icon: [512, 512, [], "f2cd", "M488 256H80V112c0-17.645 14.355-32 32-32 11.351 0 21.332 5.945 27.015 14.88-16.492 25.207-14.687 59.576 6.838 83.035-4.176 4.713-4.021 11.916.491 16.428l11.314 11.314c4.686 4.686 12.284 4.686 16.971 0l95.03-95.029c4.686-4.686 4.686-12.284 0-16.971l-11.314-11.314c-4.512-4.512-11.715-4.666-16.428-.491-17.949-16.469-42.294-21.429-64.178-15.365C163.281 45.667 139.212 32 112 32c-44.112 0-80 35.888-80 80v144h-8c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h8v32c0 28.43 12.362 53.969 32 71.547V456c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-8h256v8c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-32.453c19.638-17.578 32-43.117 32-71.547v-32h8c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z"] }; +var faBatteryEmpty = { prefix: 'fas', iconName: 'battery-empty', icon: [640, 512, [], "f244", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48z"] }; +var faBatteryFull = { prefix: 'fas', iconName: 'battery-full', icon: [640, 512, [], "f240", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-48 96H96v128h416V192z"] }; +var faBatteryHalf = { prefix: 'fas', iconName: 'battery-half', icon: [640, 512, [], "f242", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-240 96H96v128h224V192z"] }; +var faBatteryQuarter = { prefix: 'fas', iconName: 'battery-quarter', icon: [640, 512, [], "f243", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-336 96H96v128h128V192z"] }; +var faBatteryThreeQuarters = { prefix: 'fas', iconName: 'battery-three-quarters', icon: [640, 512, [], "f241", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-144 96H96v128h320V192z"] }; +var faBed = { prefix: 'fas', iconName: 'bed', icon: [576, 512, [], "f236", "M552 288c13.255 0 24 10.745 24 24v136h-96v-64H96v64H0V88c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24v200h456zM192 96c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80zm384 128c0-53.019-42.981-96-96-96H312c-13.255 0-24 10.745-24 24v104h288v-32z"] }; +var faBeer = { prefix: 'fas', iconName: 'beer', icon: [448, 512, [], "f0fc", "M368 96h-48V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24v-42.11l80.606-35.977C429.396 365.063 448 336.388 448 304.86V176c0-44.112-35.888-80-80-80zm16 208.86a16.018 16.018 0 0 1-9.479 14.611L320 343.805V160h48c8.822 0 16 7.178 16 16v128.86zM208 384c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16zm-96 0c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16z"] }; +var faBell = { prefix: 'fas', iconName: 'bell', icon: [448, 512, [], "f0f3", "M433.884 366.059C411.634 343.809 384 316.118 384 208c0-79.394-57.831-145.269-133.663-157.83A31.845 31.845 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 6.75 2.095 13.008 5.663 18.17C121.831 62.731 64 128.606 64 208c0 108.118-27.643 135.809-49.893 158.059C-16.042 396.208 5.325 448 48.048 448H160c0 35.346 28.654 64 64 64s64-28.654 64-64h111.943c42.638 0 64.151-51.731 33.941-81.941zM224 472a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16c0 13.234 10.766 24 24 24z"] }; +var faBellSlash = { prefix: 'fas', iconName: 'bell-slash', icon: [576, 512, [], "f1f6", "M78.107 366.059C47.958 396.208 69.325 448 112.048 448H224c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h32.685L127.848 221.379c-2.198 97.078-28.439 123.378-49.741 144.68zM264 448c0 13.234 10.766 24 24 24a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16zm305.896 43.733l-10.762 12.086c-8.915 10.012-24.333 10.967-34.437 2.133L8.256 54.393C-1.848 45.558-2.811 30.28 6.104 20.267L16.865 8.181C25.781-1.831 41.199-2.786 51.303 6.049l113.81 99.512c24.017-28.778 57.946-48.996 96.55-55.39A31.85 31.85 0 0 1 256 32c0-17.673 14.327-32 32-32s32 14.327 32 32c0 6.75-2.095 13.008-5.663 18.17C390.169 62.731 448 128.606 448 208c0 108.118 27.634 135.809 49.884 158.059 12.149 12.149 15.923 27.776 13.33 42.121l56.53 49.427c10.104 8.835 11.067 24.113 2.152 34.126z"] }; +var faBicycle = { prefix: 'fas', iconName: 'bicycle', icon: [640, 512, [], "f206", "M512.509 192.001c-16.373-.064-32.03 2.955-46.436 8.495l-77.68-125.153A24 24 0 0 0 368.001 64h-64c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h50.649l14.896 24H256.002v-16c0-8.837-7.163-16-16-16h-87.459c-13.441 0-24.777 10.999-24.536 24.437.232 13.044 10.876 23.563 23.995 23.563h48.726l-29.417 47.52c-13.433-4.83-27.904-7.483-42.992-7.52C58.094 191.83.412 249.012.002 319.236-.413 390.279 57.055 448 128.002 448c59.642 0 109.758-40.793 123.967-96h52.033a24 24 0 0 0 20.406-11.367L410.37 201.77l14.938 24.067c-25.455 23.448-41.385 57.081-41.307 94.437.145 68.833 57.899 127.051 126.729 127.719 70.606.685 128.181-55.803 129.255-125.996 1.086-70.941-56.526-129.72-127.476-129.996zM186.75 265.772c9.727 10.529 16.673 23.661 19.642 38.228h-43.306l23.664-38.228zM128.002 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c5.869 0 11.586.653 17.099 1.859l-45.505 73.509C89.715 331.327 101.213 352 120.002 352h81.3c-12.37 28.225-40.562 48-73.3 48zm162.63-96h-35.624c-3.96-31.756-19.556-59.894-42.383-80.026L237.371 184h127.547l-74.286 120zm217.057 95.886c-41.036-2.165-74.049-35.692-75.627-76.755-.812-21.121 6.633-40.518 19.335-55.263l44.433 71.586c4.66 7.508 14.524 9.816 22.032 5.156l13.594-8.437c7.508-4.66 9.817-14.524 5.156-22.032l-44.468-71.643a79.901 79.901 0 0 1 19.858-2.497c44.112 0 80 35.888 80 80-.001 45.54-38.252 82.316-84.313 79.885z"] }; +var faBinoculars = { prefix: 'fas', iconName: 'binoculars', icon: [512, 512, [], "f1e5", "M192 104H96V56c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24v48zm224-48c0-13.255-10.745-24-24-24h-48c-13.255 0-24 10.745-24 24v48h96V56zM0 456c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H0v16zm88-328c-13.255 0-24 10.745-24 24C64 256 0 272 0 416h168V312c0-13.255 10.745-24 24-24V128H88zm256 328c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H344v16zM216 128v160h80V128h-80zm128 288h168c0-144-64-160-64-264 0-13.255-10.745-24-24-24H320v160c13.255 0 24 10.745 24 24v104z"] }; +var faBirthdayCake = { prefix: 'fas', iconName: 'birthday-cake', icon: [448, 512, [], "f1fd", "M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z"] }; +var faBlender = { prefix: 'fas', iconName: 'blender', icon: [512, 512, [], "f517", "M416 384H160c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-128 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm40-416h166.54L512 0H48C21.49 0 0 21.49 0 48v160c0 26.51 21.49 48 48 48h103.27l8.73 96h256l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H328c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM64 192V64h69.82l11.64 128H64z"] }; +var faBlind = { prefix: 'fas', iconName: 'blind', icon: [384, 512, [], "f29d", "M380.15 510.837a8 8 0 0 1-10.989-2.687l-125.33-206.427a31.923 31.923 0 0 0 12.958-9.485l126.048 207.608a8 8 0 0 1-2.687 10.991zM142.803 314.338l-32.54 89.485 36.12 88.285c6.693 16.36 25.377 24.192 41.733 17.501 16.357-6.692 24.193-25.376 17.501-41.734l-62.814-153.537zM96 88c24.301 0 44-19.699 44-44S120.301 0 96 0 52 19.699 52 44s19.699 44 44 44zm154.837 169.128l-120-152c-4.733-5.995-11.75-9.108-18.837-9.112V96H80v.026c-7.146.003-14.217 3.161-18.944 9.24L0 183.766v95.694c0 13.455 11.011 24.791 24.464 24.536C37.505 303.748 48 293.1 48 280v-79.766l16-20.571v140.698L9.927 469.055c-6.04 16.609 2.528 34.969 19.138 41.009 16.602 6.039 34.968-2.524 41.009-19.138L136 309.638V202.441l-31.406-39.816a4 4 0 1 1 6.269-4.971l102.3 129.217c9.145 11.584 24.368 11.339 33.708 3.965 10.41-8.216 12.159-23.334 3.966-33.708z"] }; +var faBold = { prefix: 'fas', iconName: 'bold', icon: [384, 512, [], "f032", "M304.793 243.891c33.639-18.537 53.657-54.16 53.657-95.693 0-48.236-26.25-87.626-68.626-104.179C265.138 34.01 240.849 32 209.661 32H24c-8.837 0-16 7.163-16 16v33.049c0 8.837 7.163 16 16 16h33.113v318.53H24c-8.837 0-16 7.163-16 16V464c0 8.837 7.163 16 16 16h195.69c24.203 0 44.834-1.289 66.866-7.584C337.52 457.193 376 410.647 376 350.014c0-52.168-26.573-91.684-71.207-106.123zM142.217 100.809h67.444c16.294 0 27.536 2.019 37.525 6.717 15.828 8.479 24.906 26.502 24.906 49.446 0 35.029-20.32 56.79-53.029 56.79h-76.846V100.809zm112.642 305.475c-10.14 4.056-22.677 4.907-31.409 4.907h-81.233V281.943h84.367c39.645 0 63.057 25.38 63.057 63.057.001 28.425-13.66 52.483-34.782 61.284z"] }; +var faBolt = { prefix: 'fas', iconName: 'bolt', icon: [320, 512, [], "f0e7", "M295.973 160H180.572L215.19 30.184C219.25 14.956 207.756 0 192 0H56C43.971 0 33.8 8.905 32.211 20.828l-31.996 240C-1.704 275.217 9.504 288 24.004 288h118.701L96.646 482.466C93.05 497.649 104.659 512 119.992 512c8.35 0 16.376-4.374 20.778-11.978l175.973-303.997c9.244-15.967-2.288-36.025-20.77-36.025z"] }; +var faBomb = { prefix: 'fas', iconName: 'bomb', icon: [512, 512, [], "f1e2", "M440.5 88.5l-52 52L415 167c9.4 9.4 9.4 24.6 0 33.9l-17.4 17.4c11.8 26.1 18.4 55.1 18.4 85.6 0 114.9-93.1 208-208 208S0 418.9 0 304 93.1 96 208 96c30.5 0 59.5 6.6 85.6 18.4L311 97c9.4-9.4 24.6-9.4 33.9 0l26.5 26.5 52-52 17.1 17zM500 60h-24c-6.6 0-12 5.4-12 12s5.4 12 12 12h24c6.6 0 12-5.4 12-12s-5.4-12-12-12zM440 0c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12s12-5.4 12-12V12c0-6.6-5.4-12-12-12zm33.9 55l17-17c4.7-4.7 4.7-12.3 0-17-4.7-4.7-12.3-4.7-17 0l-17 17c-4.7 4.7-4.7 12.3 0 17 4.8 4.7 12.4 4.7 17 0zm-67.8 0c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17zm67.8 34c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17zM112 272c0-35.3 28.7-64 64-64 8.8 0 16-7.2 16-16s-7.2-16-16-16c-52.9 0-96 43.1-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16z"] }; +var faBook = { prefix: 'fas', iconName: 'book', icon: [448, 512, [], "f02d", "M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z"] }; +var faBookOpen = { prefix: 'fas', iconName: 'book-open', icon: [576, 512, [], "f518", "M542.2.1c-54.8 3.1-163.7 14.4-231 55.6-4.6 2.8-7.3 7.9-7.3 13.2v363.9c0 11.5 12.6 18.8 23.3 13.5 69.2-34.8 169.2-44.3 218.7-46.9 16.9-.9 30-14.4 30-30.7v-338C576 13 560.6-1 542.2.1zM264.7 55.6C197.5 14.5 88.6 3.2 33.8.1 15.4-1 0 13 0 30.7v337.8c0 16.2 13.1 29.8 30 30.7 49.5 2.6 149.6 12.1 218.8 47 10.6 5.4 23.2-1.9 23.2-13.5V68.6c0-5.3-2.6-10.1-7.3-13z"] }; +var faBookmark = { prefix: 'fas', iconName: 'bookmark', icon: [384, 512, [], "f02e", "M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z"] }; +var faBowlingBall = { prefix: 'fas', iconName: 'bowling-ball', icon: [496, 512, [], "f436", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM120 192c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64-96c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm48 144c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faBox = { prefix: 'fas', iconName: 'box', icon: [512, 512, [], "f466", "M509.5 184.6L458.9 32.8C452.4 13.2 434.1 0 413.4 0H272v192h238.7c-.4-2.5-.4-5-1.2-7.4zM240 0H98.6c-20.7 0-39 13.2-45.5 32.8L2.5 184.6c-.8 2.4-.8 4.9-1.2 7.4H240V0zM0 224v240c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V224H0z"] }; +var faBoxOpen = { prefix: 'fas', iconName: 'box-open', icon: [640, 512, [], "f49e", "M53.2 41L1.7 143.8c-4.6 9.2.3 20.2 10.1 23l197.9 56.5c7.1 2 14.7-1 18.5-7.3L320 64 69.8 32.1c-6.9-.8-13.5 2.7-16.6 8.9zm585.1 102.8L586.8 41c-3.1-6.2-9.8-9.8-16.7-8.9L320 64l91.7 152.1c3.8 6.3 11.4 9.3 18.5 7.3l197.9-56.5c9.9-2.9 14.7-13.9 10.2-23.1zM425.7 256c-16.9 0-32.8-9-41.4-23.4L320 126l-64.2 106.6c-8.7 14.5-24.6 23.5-41.5 23.5-4.5 0-9-.6-13.3-1.9L64 215v178c0 14.7 10 27.5 24.2 31l216.2 54.1c10.2 2.5 20.9 2.5 31 0L551.8 424c14.2-3.6 24.2-16.4 24.2-31V215l-137 39.1c-4.3 1.3-8.8 1.9-13.3 1.9z"] }; +var faBoxes = { prefix: 'fas', iconName: 'boxes', icon: [576, 512, [], "f468", "M560 288h-80v96l-32-21.3-32 21.3v-96h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16zm-384-64h224c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16h-80v96l-32-21.3L256 96V0h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16zm64 64h-80v96l-32-21.3L96 384v-96H16c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16z"] }; +var faBraille = { prefix: 'fas', iconName: 'braille', icon: [640, 512, [], "f2a1", "M128 256c0 35.346-28.654 64-64 64S0 291.346 0 256s28.654-64 64-64 64 28.654 64 64zM64 384c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352C28.654 32 0 60.654 0 96s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm224 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-320c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; +var faBriefcase = { prefix: 'fas', iconName: 'briefcase', icon: [512, 512, [], "f0b1", "M320 288h192v144c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V288h192v20c0 6.627 5.373 12 12 12h104c6.627 0 12-5.373 12-12v-20zm192-112v80H0v-80c0-26.51 21.49-48 48-48h80V80c0-26.51 21.49-48 48-48h160c26.51 0 48 21.49 48 48v48h80c26.51 0 48 21.49 48 48zM320 96H192v32h128V96z"] }; +var faBriefcaseMedical = { prefix: 'fas', iconName: 'briefcase-medical', icon: [512, 512, [], "f469", "M464 128h-80V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48zM192 96h128v32H192V96zm160 248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48z"] }; +var faBroadcastTower = { prefix: 'fas', iconName: 'broadcast-tower', icon: [640, 512, [], "f519", "M150.94 192h33.73c11.01 0 18.61-10.83 14.86-21.18-4.93-13.58-7.55-27.98-7.55-42.82s2.62-29.24 7.55-42.82C203.29 74.83 195.68 64 184.67 64h-33.73c-7.01 0-13.46 4.49-15.41 11.23C130.64 92.21 128 109.88 128 128c0 18.12 2.64 35.79 7.54 52.76 1.94 6.74 8.39 11.24 15.4 11.24zM89.92 23.34C95.56 12.72 87.97 0 75.96 0H40.63c-6.27 0-12.14 3.59-14.74 9.31C9.4 45.54 0 85.65 0 128c0 24.75 3.12 68.33 26.69 118.86 2.62 5.63 8.42 9.14 14.61 9.14h34.84c12.02 0 19.61-12.74 13.95-23.37-49.78-93.32-16.71-178.15-.17-209.29zM614.06 9.29C611.46 3.58 605.6 0 599.33 0h-35.42c-11.98 0-19.66 12.66-14.02 23.25 18.27 34.29 48.42 119.42.28 209.23-5.72 10.68 1.8 23.52 13.91 23.52h35.23c6.27 0 12.13-3.58 14.73-9.29C630.57 210.48 640 170.36 640 128s-9.42-82.48-25.94-118.71zM489.06 64h-33.73c-11.01 0-18.61 10.83-14.86 21.18 4.93 13.58 7.55 27.98 7.55 42.82s-2.62 29.24-7.55 42.82c-3.76 10.35 3.85 21.18 14.86 21.18h33.73c7.02 0 13.46-4.49 15.41-11.24 4.9-16.97 7.53-34.64 7.53-52.76 0-18.12-2.64-35.79-7.54-52.76-1.94-6.75-8.39-11.24-15.4-11.24zm-116.3 100.12c7.05-10.29 11.2-22.71 11.2-36.12 0-35.35-28.63-64-63.96-64-35.32 0-63.96 28.65-63.96 64 0 13.41 4.15 25.83 11.2 36.12l-130.5 313.41c-3.4 8.15.46 17.52 8.61 20.92l29.51 12.31c8.15 3.4 17.52-.46 20.91-8.61L244.96 384h150.07l49.2 118.15c3.4 8.16 12.76 12.01 20.91 8.61l29.51-12.31c8.15-3.4 12-12.77 8.61-20.92l-130.5-313.41zM271.62 320L320 203.81 368.38 320h-96.76z"] }; +var faBroom = { prefix: 'fas', iconName: 'broom', icon: [512, 512, [], "f51a", "M10.8 247.2C-.7 251.8-3.7 266.7 5 275.4l54.8 54.8 73.2-24.4-24.4 73.2 128 128c8.8 8.8 23.6 5.7 28.2-5.8l98.1-243.7-108.4-108.4-243.7 98.1zM507.3 27.3L484.7 4.7c-6.2-6.3-16.4-6.3-22.6 0L359.8 106.9l-40.4-40.4c-4.2-4.3-11.4-3-13.9 2.5l-27.2 58.6 106.1 106.1 58.6-27.2c5.4-2.5 6.7-9.7 2.5-13.9l-40.4-40.4L507.3 49.9c6.3-6.2 6.3-16.3 0-22.6z"] }; +var faBug = { prefix: 'fas', iconName: 'bug', icon: [512, 512, [], "f188", "M511.988 288.9c-.478 17.43-15.217 31.1-32.653 31.1H424v16c0 21.864-4.882 42.584-13.6 61.145l60.228 60.228c12.496 12.497 12.496 32.758 0 45.255-12.498 12.497-32.759 12.496-45.256 0l-54.736-54.736C345.886 467.965 314.351 480 280 480V236c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v244c-34.351 0-65.886-12.035-90.636-32.108l-54.736 54.736c-12.498 12.497-32.759 12.496-45.256 0-12.496-12.497-12.496-32.758 0-45.255l60.228-60.228C92.882 378.584 88 357.864 88 336v-16H32.666C15.23 320 .491 306.33.013 288.9-.484 270.816 14.028 256 32 256h56v-58.745l-46.628-46.628c-12.496-12.497-12.496-32.758 0-45.255 12.498-12.497 32.758-12.497 45.256 0L141.255 160h229.489l54.627-54.627c12.498-12.497 32.758-12.497 45.256 0 12.496 12.497 12.496 32.758 0 45.255L424 197.255V256h56c17.972 0 32.484 14.816 31.988 32.9zM257 0c-61.856 0-112 50.144-112 112h224C369 50.144 318.856 0 257 0z"] }; +var faBuilding = { prefix: 'fas', iconName: 'building', icon: [448, 512, [], "f1ad", "M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z"] }; +var faBullhorn = { prefix: 'fas', iconName: 'bullhorn', icon: [576, 512, [], "f0a1", "M576 224c0-20.896-13.36-38.666-32-45.258V64c0-35.346-28.654-64-64-64-64.985 56-142.031 128-272 128H48c-26.51 0-48 21.49-48 48v96c0 26.51 21.49 48 48 48h43.263c-18.742 64.65 2.479 116.379 18.814 167.44 1.702 5.32 5.203 9.893 9.922 12.88 20.78 13.155 68.355 15.657 93.773 5.151 16.046-6.633 19.96-27.423 7.522-39.537-18.508-18.026-30.136-36.91-19.795-60.858a12.278 12.278 0 0 0-1.045-11.673c-16.309-24.679-3.581-62.107 28.517-72.752C346.403 327.887 418.591 395.081 480 448c35.346 0 64-28.654 64-64V269.258c18.64-6.592 32-24.362 32-45.258zm-96 139.855c-54.609-44.979-125.033-92.94-224-104.982v-69.747c98.967-12.042 169.391-60.002 224-104.982v279.711z"] }; +var faBullseye = { prefix: 'fas', iconName: 'bullseye', icon: [512, 512, [], "f140", "M256 72c101.689 0 184 82.295 184 184 0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-101.689 82.295-184 184-184m0-64C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 184c35.29 0 64 28.71 64 64s-28.71 64-64 64-64-28.71-64-64 28.71-64 64-64m0-64c-70.692 0-128 57.308-128 128s57.308 128 128 128 128-57.308 128-128-57.308-128-128-128z"] }; +var faBurn = { prefix: 'fas', iconName: 'burn', icon: [384, 512, [], "f46a", "M192 0C79.7 101.3 0 220.9 0 300.5 0 425 79 512 192 512s192-87 192-211.5c0-79.9-80.2-199.6-192-300.5zm0 448c-56.5 0-96-39-96-94.8 0-13.5 4.6-61.5 96-161.2 91.4 99.7 96 147.7 96 161.2 0 55.8-39.5 94.8-96 94.8z"] }; +var faBus = { prefix: 'fas', iconName: 'bus', icon: [512, 512, [], "f207", "M512 152v80c0 13.255-10.745 24-24 24h-8v168c0 13.255-10.745 24-24 24h-8v40c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24v-40H160v40c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24v-40h-8c-13.255 0-24-10.745-24-24V256h-8c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h8V80C32 35.817 132.288 0 256 0s224 35.817 224 80v48h8c13.255 0 24 10.745 24 24zM112 320c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288 0c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm32-56V120c0-13.255-10.745-24-24-24H104c-13.255 0-24 10.745-24 24v144c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z"] }; +var faCalculator = { prefix: 'fas', iconName: 'calculator', icon: [448, 512, [], "f1ec", "M0 464V48C0 21.49 21.49 0 48 0h352c26.51 0 48 21.49 48 48v416c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm384-284V76c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v104c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12zM128 308v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm256 128V268c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-256 0v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm128-128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm0 128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"] }; +var faCalendar = { prefix: 'fas', iconName: 'calendar', icon: [448, 512, [], "f133", "M12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm436-44v-36c0-26.5-21.5-48-48-48h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v36c0 6.6 5.4 12 12 12h424c6.6 0 12-5.4 12-12z"] }; +var faCalendarAlt = { prefix: 'fas', iconName: 'calendar-alt', icon: [448, 512, [], "f073", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm116 204c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40z"] }; +var faCalendarCheck = { prefix: 'fas', iconName: 'calendar-check', icon: [448, 512, [], "f274", "M436 160H12c-6.627 0-12-5.373-12-12v-36c0-26.51 21.49-48 48-48h48V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h128V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h48c26.51 0 48 21.49 48 48v36c0 6.627-5.373 12-12 12zM12 192h424c6.627 0 12 5.373 12 12v260c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V204c0-6.627 5.373-12 12-12zm333.296 95.947l-28.169-28.398c-4.667-4.705-12.265-4.736-16.97-.068L194.12 364.665l-45.98-46.352c-4.667-4.705-12.266-4.736-16.971-.068l-28.397 28.17c-4.705 4.667-4.736 12.265-.068 16.97l82.601 83.269c4.667 4.705 12.265 4.736 16.97.068l142.953-141.805c4.705-4.667 4.736-12.265.068-16.97z"] }; +var faCalendarMinus = { prefix: 'fas', iconName: 'calendar-minus', icon: [448, 512, [], "f272", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm304 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H132c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h184z"] }; +var faCalendarPlus = { prefix: 'fas', iconName: 'calendar-plus', icon: [448, 512, [], "f271", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm316 140c0-6.6-5.4-12-12-12h-60v-60c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v60h-60c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h60v60c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-60h60c6.6 0 12-5.4 12-12v-40z"] }; +var faCalendarTimes = { prefix: 'fas', iconName: 'calendar-times', icon: [448, 512, [], "f273", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm257.3 160l48.1-48.1c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0L224 306.7l-48.1-48.1c-4.7-4.7-12.3-4.7-17 0l-28.3 28.3c-4.7 4.7-4.7 12.3 0 17l48.1 48.1-48.1 48.1c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l48.1-48.1 48.1 48.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L269.3 352z"] }; +var faCamera = { prefix: 'fas', iconName: 'camera', icon: [512, 512, [], "f030", "M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z"] }; +var faCameraRetro = { prefix: 'fas', iconName: 'camera-retro', icon: [512, 512, [], "f083", "M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm0 32h106c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H38c-3.3 0-6-2.7-6-6V80c0-8.8 7.2-16 16-16zm426 96H38c-3.3 0-6-2.7-6-6v-36c0-3.3 2.7-6 6-6h138l30.2-45.3c1.1-1.7 3-2.7 5-2.7H464c8.8 0 16 7.2 16 16v74c0 3.3-2.7 6-6 6zM256 424c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88zm-48 104c-8.8 0-16-7.2-16-16 0-35.3 28.7-64 64-64 8.8 0 16 7.2 16 16s-7.2 16-16 16c-17.6 0-32 14.4-32 32 0 8.8-7.2 16-16 16z"] }; +var faCapsules = { prefix: 'fas', iconName: 'capsules', icon: [576, 512, [], "f46b", "M555.3 300.1L424.2 112.8C401.9 81 366.4 64 330.4 64c-22.6 0-45.5 6.7-65.5 20.7-19.7 13.8-33.7 32.8-41.5 53.8C220.5 79.2 172 32 112 32 50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V218.9c3.3 8.6 7.3 17.1 12.8 25L368 431.2c22.2 31.8 57.7 48.8 93.8 48.8 22.7 0 45.5-6.7 65.5-20.7 51.7-36.2 64.2-107.5 28-159.2zM160 256H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm194.8 44.9l-65.6-93.7c-7.7-11-10.7-24.4-8.3-37.6 2.3-13.2 9.7-24.8 20.7-32.5 8.5-6 18.5-9.1 28.8-9.1 16.5 0 31.9 8 41.3 21.5l65.6 93.7-82.5 57.7z"] }; +var faCar = { prefix: 'fas', iconName: 'car', icon: [512, 512, [], "f1b9", "M499.991 168h-54.815l-7.854-20.944c-9.192-24.513-25.425-45.351-46.942-60.263S343.651 64 317.472 64H194.528c-26.18 0-51.391 7.882-72.908 22.793-21.518 14.912-37.75 35.75-46.942 60.263L66.824 168H12.009c-8.191 0-13.974 8.024-11.384 15.795l8 24A12 12 0 0 0 20.009 216h28.815l-.052.14C29.222 227.093 16 247.997 16 272v48c0 16.225 6.049 31.029 16 42.309V424c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-40h256v40c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-61.691c9.951-11.281 16-26.085 16-42.309v-48c0-24.003-13.222-44.907-32.772-55.86l-.052-.14h28.815a12 12 0 0 0 11.384-8.205l8-24c2.59-7.771-3.193-15.795-11.384-15.795zm-365.388 1.528C143.918 144.689 168 128 194.528 128h122.944c26.528 0 50.61 16.689 59.925 41.528L391.824 208H120.176l14.427-38.472zM88 328c-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32s48 30.327 48 48-30.327 16-48 16zm336 0c-17.673 0-48 1.673-48-16 0-17.673 30.327-48 48-48s32 14.327 32 32c0 17.673-14.327 32-32 32z"] }; +var faCaretDown = { prefix: 'fas', iconName: 'caret-down', icon: [320, 512, [], "f0d7", "M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z"] }; +var faCaretLeft = { prefix: 'fas', iconName: 'caret-left', icon: [192, 512, [], "f0d9", "M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z"] }; +var faCaretRight = { prefix: 'fas', iconName: 'caret-right', icon: [192, 512, [], "f0da", "M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z"] }; +var faCaretSquareDown = { prefix: 'fas', iconName: 'caret-square-down', icon: [448, 512, [], "f150", "M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM92.5 220.5l123 123c4.7 4.7 12.3 4.7 17 0l123-123c7.6-7.6 2.2-20.5-8.5-20.5H101c-10.7 0-16.1 12.9-8.5 20.5z"] }; +var faCaretSquareLeft = { prefix: 'fas', iconName: 'caret-square-left', icon: [448, 512, [], "f191", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM259.515 124.485l-123.03 123.03c-4.686 4.686-4.686 12.284 0 16.971l123.029 123.029c7.56 7.56 20.485 2.206 20.485-8.485V132.971c.001-10.691-12.925-16.045-20.484-8.486z"] }; +var faCaretSquareRight = { prefix: 'fas', iconName: 'caret-square-right', icon: [448, 512, [], "f152", "M48 32h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48zm140.485 355.515l123.029-123.029c4.686-4.686 4.686-12.284 0-16.971l-123.029-123.03c-7.56-7.56-20.485-2.206-20.485 8.485v246.059c0 10.691 12.926 16.045 20.485 8.486z"] }; +var faCaretSquareUp = { prefix: 'fas', iconName: 'caret-square-up', icon: [448, 512, [], "f151", "M0 432V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm355.515-140.485l-123.03-123.03c-4.686-4.686-12.284-4.686-16.971 0L92.485 291.515c-7.56 7.56-2.206 20.485 8.485 20.485h246.059c10.691 0 16.045-12.926 8.486-20.485z"] }; +var faCaretUp = { prefix: 'fas', iconName: 'caret-up', icon: [320, 512, [], "f0d8", "M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z"] }; +var faCartArrowDown = { prefix: 'fas', iconName: 'cart-arrow-down', icon: [576, 512, [], "f218", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z"] }; +var faCartPlus = { prefix: 'fas', iconName: 'cart-plus', icon: [576, 512, [], "f217", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM408 168h-48v-40c0-8.837-7.163-16-16-16h-16c-8.837 0-16 7.163-16 16v40h-48c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h48v40c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-40h48c8.837 0 16-7.163 16-16v-16c0-8.837-7.163-16-16-16z"] }; +var faCertificate = { prefix: 'fas', iconName: 'certificate', icon: [512, 512, [], "f0a3", "M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z"] }; +var faChalkboard = { prefix: 'fas', iconName: 'chalkboard', icon: [640, 512, [], "f51b", "M96 64h448v352h64V40c0-22.06-17.94-40-40-40H72C49.94 0 32 17.94 32 40v376h64V64zm528 384H480v-64H288v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"] }; +var faChalkboardTeacher = { prefix: 'fas', iconName: 'chalkboard-teacher', icon: [640, 512, [], "f51c", "M208 352c-2.39 0-4.78.35-7.06 1.09C187.98 357.3 174.35 360 160 360c-14.35 0-27.98-2.7-40.95-6.91-2.28-.74-4.66-1.09-7.05-1.09C49.94 352-.33 402.48 0 464.62.14 490.88 21.73 512 48 512h224c26.27 0 47.86-21.12 48-47.38.33-62.14-49.94-112.62-112-112.62zm-48-32c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM592 0H208c-26.47 0-48 22.25-48 49.59V96c23.42 0 45.1 6.78 64 17.8V64h352v288h-64v-64H384v64h-76.24c19.1 16.69 33.12 38.73 39.69 64H592c26.47 0 48-22.25 48-49.59V49.59C640 22.25 618.47 0 592 0z"] }; +var faChartArea = { prefix: 'fas', iconName: 'chart-area', icon: [512, 512, [], "f1fe", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z"] }; +var faChartBar = { prefix: 'fas', iconName: 'chart-bar', icon: [512, 512, [], "f080", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zm-308-44v-72c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V204c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V108c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"] }; +var faChartLine = { prefix: 'fas', iconName: 'chart-line', icon: [512, 512, [], "f201", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM456 96H344c-21.4 0-32.1 25.9-17 41l32.9 32.9-72 72.9-55.6-55.6c-4.7-4.7-12.2-4.7-16.9 0L96.4 305c-4.7 4.6-4.8 12.2-.2 16.9l28.5 29.4c4.7 4.8 12.4 4.9 17.1.1l82.1-82.1 55.5 55.5c4.7 4.7 12.3 4.7 17 0l109.2-109.2L439 249c15.1 15.1 41 4.4 41-17V120c0-13.3-10.7-24-24-24z"] }; +var faChartPie = { prefix: 'fas', iconName: 'chart-pie', icon: [576, 512, [], "f200", "M288 12.3V240h227.7c6.9 0 12.3-5.8 12-12.7-6.4-122.4-104.5-220.6-227-227-6.9-.3-12.7 5.1-12.7 12zM552.7 288c6.9 0 12.3 5.8 12 12.7-2.8 53.2-23.2 105.6-61.2 147.8-4.6 5.1-12.6 5.4-17.5.5L325 288h227.7zM401 433c4.8 4.8 4.7 12.8-.4 17.3-42.6 38.4-99 61.7-160.8 61.7C107.6 511.9-.2 403.8 0 271.5.2 143.4 100.8 38.9 227.3 32.3c6.9-.4 12.7 5.1 12.7 12V272l161 161z"] }; +var faCheck = { prefix: 'fas', iconName: 'check', icon: [512, 512, [], "f00c", "M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"] }; +var faCheckCircle = { prefix: 'fas', iconName: 'check-circle', icon: [512, 512, [], "f058", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"] }; +var faCheckSquare = { prefix: 'fas', iconName: 'check-square', icon: [448, 512, [], "f14a", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"] }; +var faChess = { prefix: 'fas', iconName: 'chess', icon: [512, 512, [], "f439", "M199.821 217.633a6 6 0 0 1 6 6l-.001 20.766a6 6 0 0 1-6 6h-25.805c0 31.715-2.153 96.201 17.398 153.229H64.597C84.54 345.452 82.02 279.245 82.02 250.399H56.183a6 6 0 0 1-6-6l.002-20.766a6 6 0 0 1 6-6h143.636zM41.554 115.088l34.58 95.071h103.734l34.572-95.072c2.846-7.826-2.95-16.101-11.278-16.101H152v-30.22h21.57a6 6 0 0 0 6-6V40.383a6 6 0 0 0-6-6h-28.367V6a6 6 0 0 0-6-6H116.82a6 6 0 0 0-6 6v28.383H82.421a6 6 0 0 0-6 6v22.383a6 6 0 0 0 6 6H104v30.219H52.831c-8.328.001-14.124 8.276-11.277 16.103zM222.678 445.17v-28.067a6 6 0 0 0-6-6H39.322a6 6 0 0 0-6 6v28.067l-22.148 14.164a6 6 0 0 0-2.767 5.055V506a6 6 0 0 0 6 6h227.187a6 6 0 0 0 6-6v-41.612a6 6 0 0 0-2.767-5.055l-22.149-14.163zm90.578-144.225l24.88 16.963c.09 18.124-.167 63.904-11.905 114.522h147.526c-11.713-50.475-11.969-96.324-11.882-114.537l24.859-16.949a3.856 3.856 0 0 0 1.684-3.187v-69.901a3.857 3.857 0 0 0-3.857-3.857h-27.655a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.858-3.857h-52.918a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.857-3.857H315.43a3.857 3.857 0 0 0-3.857 3.857v69.901a3.855 3.855 0 0 0 1.683 3.188zm71.585 51.906c0-8.372 6.787-15.158 15.159-15.158s15.158 6.787 15.158 15.158v30.318h-30.317v-30.318zM504.62 470.059l-13.664-10.639v-15.552a3.857 3.857 0 0 0-3.857-3.857H312.915a3.857 3.857 0 0 0-3.857 3.857v15.552l-13.677 10.639a3.857 3.857 0 0 0-1.488 3.044v35.039a3.857 3.857 0 0 0 3.857 3.857h204.5a3.857 3.857 0 0 0 3.857-3.857v-35.04a3.859 3.859 0 0 0-1.487-3.043z"] }; +var faChessBishop = { prefix: 'fas', iconName: 'chess-bishop', icon: [320, 512, [], "f43a", "M123.158 77.881C107.369 72.53 96 57.597 96 40c0-22.091 17.909-40 40-40h47.796c22.091 0 40 17.909 40 40 0 17.541-11.295 32.434-27.005 37.829 23.993 16.657 48.577 46.839 68.703 82.05L144.929 280.443a6 6 0 0 0 0 8.485l14.142 14.142a6 6 0 0 0 8.485 0L280.9 189.726c17.758 38.297 29.371 79.443 29.371 114.273 0 53.786-22.897 75.788-58.446 86.033V448H68.174v-57.97C32.631 379.784 9.739 357.781 9.739 304c0-78.029 58.281-187.766 113.419-226.119zM320 500v-24c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12z"] }; +var faChessBoard = { prefix: 'fas', iconName: 'chess-board', icon: [512, 512, [], "f43c", "M256 256v64h-64v-64h64zm0-256h-64v64h64V0zm0 256h64v-64h-64v64zM384 0h-64v64h64V0zm0 512h64v-64h-64v64zm128-64v-64h-64v64h64zm-384 64h64v-64h-64v64zm0-512H64v64h64V0zm384 192v-64h-64v64h64zm0 128v-64h-64v64h64zM0 512h64v-64H0v64zM0 64v64h64V64H0zm0 128v64h64v-64H0zm0 128v64h64v-64H0zm256 192h64v-64h-64v64zm-64-128v64h64v-64h-64zm64-192v-64h-64v64h64zM64 384v64h64v-64H64zm64-128H64v64h64v-64zm256 128h64v-64h-64v64zM512 0h-64v64h64V0zM384 256h64v-64h-64v64zm0-192v64h64V64h-64zm-64 320v64h64v-64h-64zm-192-64v64h64v-64h-64zm128 0v64h64v-64h-64zm-64-128h-64v64h64v-64zm-64-64H64v64h64v-64zm192 192h64v-64h-64v64zM192 128V64h-64v64h64zm128 0V64h-64v64h64zm0 64h64v-64h-64v64z"] }; +var faChessKing = { prefix: 'fas', iconName: 'chess-king', icon: [448, 512, [], "f43f", "M416 476v24c0 6.627-5.373 12-12 12H44c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12zm-8.033-324H248v-48h50a6 6 0 0 0 6-6V62a6 6 0 0 0-6-6h-50V6a6 6 0 0 0-6-6h-36a6 6 0 0 0-6 6v50h-50a6 6 0 0 0-6 6v36a6 6 0 0 0 6 6h50v48H40.033c-27.574 0-46.879 27.244-37.738 53.259L87.582 448h272.836l85.287-242.741C454.846 179.244 435.541 152 407.967 152z"] }; +var faChessKnight = { prefix: 'fas', iconName: 'chess-knight', icon: [384, 512, [], "f441", "M352 224v224H32v-46.557c0-30.302 17.12-58.003 44.223-71.554l57.243-28.622A48 48 0 0 0 160 258.334V208l-22.127 11.063a23.996 23.996 0 0 0-12.55 15.645l-11.835 47.338a12 12 0 0 1-7.185 8.231l-29.601 11.84a11.998 11.998 0 0 1-9.33-.176L7.126 275.167A12 12 0 0 1 0 264.201v-158.26c0-6.365 2.529-12.47 7.03-16.971L16 80 1.789 51.578A16.937 16.937 0 0 1 0 44c0-6.627 5.373-12 12-12h148c106.039 0 192 85.961 192 192zm20 240H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12zM52 128c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z"] }; +var faChessPawn = { prefix: 'fas', iconName: 'chess-pawn', icon: [320, 512, [], "f443", "M264 448H56s60-42.743 60-176H84c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h40.209C95.721 210.56 76 181.588 76 148c0-46.392 37.608-84 84-84s84 37.608 84 84c0 33.588-19.721 62.56-48.209 76H236c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12h-32c0 133.257 60 176 60 176zm28 16H28c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h264c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12z"] }; +var faChessQueen = { prefix: 'fas', iconName: 'chess-queen', icon: [512, 512, [], "f445", "M436 512H76c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12zM255.579 0c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zm204.568 154.634c-5.768-3.045-12.916-.932-16.082 4.77-8.616 15.516-22.747 37.801-44.065 37.801-28.714 0-30.625-19.804-31.686-57.542-.183-6.492-5.501-11.664-11.995-11.664h-41.006c-5.175 0-9.754 3.328-11.388 8.238-8.89 26.709-26.073 40.992-47.925 40.992s-39.034-14.283-47.925-40.992c-1.634-4.91-6.213-8.238-11.388-8.238h-41.005c-6.495 0-11.813 5.174-11.995 11.667-1.052 37.642-2.934 57.539-31.688 57.539-20.691 0-33.817-20.224-44.425-38.025-3.266-5.48-10.258-7.431-15.899-4.453l-39.179 20.679a12 12 0 0 0-5.51 15.145L112 448h288l105.014-257.448a12 12 0 0 0-5.51-15.145l-39.357-20.773z"] }; +var faChessRook = { prefix: 'fas', iconName: 'chess-rook', icon: [384, 512, [], "f447", "M81.241 215.027C80.957 258.92 77.411 348.076 48 448h287.982c-29.4-99.604-32.936-188.912-33.221-232.975l45.418-42.312a11.998 11.998 0 0 0 3.82-8.78V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v44h-48V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v44H96V44c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v119.932c0 3.33 1.384 6.51 3.82 8.78l45.421 42.315zM160 256c0-17.673 14.327-32 32-32 17.673 0 32 14.327 32 32v64.004h-64V256zm224 220v24c0 6.627-5.373 12-12 12H12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12z"] }; +var faChevronCircleDown = { prefix: 'fas', iconName: 'chevron-circle-down', icon: [512, 512, [], "f13a", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM273 369.9l135.5-135.5c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L256 285.1 154.4 183.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L239 369.9c9.4 9.4 24.6 9.4 34 0z"] }; +var faChevronCircleLeft = { prefix: 'fas', iconName: 'chevron-circle-left', icon: [512, 512, [], "f137", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z"] }; +var faChevronCircleRight = { prefix: 'fas', iconName: 'chevron-circle-right', icon: [512, 512, [], "f138", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z"] }; +var faChevronCircleUp = { prefix: 'fas', iconName: 'chevron-circle-up', icon: [512, 512, [], "f139", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm231-113.9L103.5 277.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L256 226.9l101.6 101.6c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L273 142.1c-9.4-9.4-24.6-9.4-34 0z"] }; +var faChevronDown = { prefix: 'fas', iconName: 'chevron-down', icon: [448, 512, [], "f078", "M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"] }; +var faChevronLeft = { prefix: 'fas', iconName: 'chevron-left', icon: [320, 512, [], "f053", "M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z"] }; +var faChevronRight = { prefix: 'fas', iconName: 'chevron-right', icon: [320, 512, [], "f054", "M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z"] }; +var faChevronUp = { prefix: 'fas', iconName: 'chevron-up', icon: [448, 512, [], "f077", "M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z"] }; +var faChild = { prefix: 'fas', iconName: 'child', icon: [384, 512, [], "f1ae", "M120 72c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.764-32.235 72-72 72s-72-32.236-72-72zm254.627 1.373c-12.496-12.497-32.758-12.497-45.254 0L242.745 160H141.254L54.627 73.373c-12.496-12.497-32.758-12.497-45.254 0-12.497 12.497-12.497 32.758 0 45.255L104 213.254V480c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V368h16v112c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V213.254l94.627-94.627c12.497-12.497 12.497-32.757 0-45.254z"] }; +var faChurch = { prefix: 'fas', iconName: 'church', icon: [640, 512, [], "f51d", "M464.46 246.68L352 179.2V128h48c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-48V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v48h-48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v51.2l-112.46 67.48A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.65-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.54A32.024 32.024 0 0 0 0 395.96zm620.61-29.42L512 320v192h112c8.84 0 16-7.16 16-16V395.96c0-12.8-7.63-24.37-19.39-29.42z"] }; +var faCircle = { prefix: 'fas', iconName: 'circle', icon: [512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"] }; +var faCircleNotch = { prefix: 'fas', iconName: 'circle-notch', icon: [512, 512, [], "f1ce", "M288 39.056v16.659c0 10.804 7.281 20.159 17.686 23.066C383.204 100.434 440 171.518 440 256c0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-84.47 56.786-155.564 134.312-177.219C216.719 75.874 224 66.517 224 55.712V39.064c0-15.709-14.834-27.153-30.046-23.234C86.603 43.482 7.394 141.206 8.003 257.332c.72 137.052 111.477 246.956 248.531 246.667C393.255 503.711 504 392.788 504 256c0-115.633-79.14-212.779-186.211-240.236C302.678 11.889 288 23.456 288 39.056z"] }; +var faClipboard = { prefix: 'fas', iconName: 'clipboard', icon: [384, 512, [], "f328", "M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z"] }; +var faClipboardCheck = { prefix: 'fas', iconName: 'clipboard-check', icon: [384, 512, [], "f46c", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm121.2 231.8l-143 141.8c-4.7 4.7-12.3 4.6-17-.1l-82.6-83.3c-4.7-4.7-4.6-12.3.1-17L99.1 285c4.7-4.7 12.3-4.6 17 .1l46 46.4 106-105.2c4.7-4.7 12.3-4.6 17 .1l28.2 28.4c4.7 4.8 4.6 12.3-.1 17z"] }; +var faClipboardList = { prefix: 'fas', iconName: 'clipboard-list', icon: [384, 512, [], "f46d", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM96 424c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm96-192c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm128 368c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z"] }; +var faClock = { prefix: 'fas', iconName: 'clock', icon: [512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm57.1 350.1L224.9 294c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v137.7l63.5 46.2c5.4 3.9 6.5 11.4 2.6 16.8l-28.2 38.8c-3.9 5.3-11.4 6.5-16.8 2.6z"] }; +var faClone = { prefix: 'fas', iconName: 'clone', icon: [512, 512, [], "f24d", "M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z"] }; +var faClosedCaptioning = { prefix: 'fas', iconName: 'closed-captioning', icon: [512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM218.1 287.7c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2.1 48 51.1 70.5 92.3 32.6zm190.4 0c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.5 56.9-172.7 32.1-172.7-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 222.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6z"] }; +var faCloud = { prefix: 'fas', iconName: 'cloud', icon: [640, 512, [], "f0c2", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z"] }; +var faCloudDownloadAlt = { prefix: 'fas', iconName: 'cloud-download-alt', icon: [640, 512, [], "f381", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z"] }; +var faCloudUploadAlt = { prefix: 'fas', iconName: 'cloud-upload-alt', icon: [640, 512, [], "f382", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z"] }; +var faCode = { prefix: 'fas', iconName: 'code', icon: [640, 512, [], "f121", "M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"] }; +var faCodeBranch = { prefix: 'fas', iconName: 'code-branch', icon: [384, 512, [], "f126", "M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"] }; +var faCoffee = { prefix: 'fas', iconName: 'coffee', icon: [640, 512, [], "f0f4", "M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z"] }; +var faCog = { prefix: 'fas', iconName: 'cog', icon: [512, 512, [], "f013", "M444.788 291.1l42.616 24.599c4.867 2.809 7.126 8.618 5.459 13.985-11.07 35.642-29.97 67.842-54.689 94.586a12.016 12.016 0 0 1-14.832 2.254l-42.584-24.595a191.577 191.577 0 0 1-60.759 35.13v49.182a12.01 12.01 0 0 1-9.377 11.718c-34.956 7.85-72.499 8.256-109.219.007-5.49-1.233-9.403-6.096-9.403-11.723v-49.184a191.555 191.555 0 0 1-60.759-35.13l-42.584 24.595a12.016 12.016 0 0 1-14.832-2.254c-24.718-26.744-43.619-58.944-54.689-94.586-1.667-5.366.592-11.175 5.459-13.985L67.212 291.1a193.48 193.48 0 0 1 0-70.199l-42.616-24.599c-4.867-2.809-7.126-8.618-5.459-13.985 11.07-35.642 29.97-67.842 54.689-94.586a12.016 12.016 0 0 1 14.832-2.254l42.584 24.595a191.577 191.577 0 0 1 60.759-35.13V25.759a12.01 12.01 0 0 1 9.377-11.718c34.956-7.85 72.499-8.256 109.219-.007 5.49 1.233 9.403 6.096 9.403 11.723v49.184a191.555 191.555 0 0 1 60.759 35.13l42.584-24.595a12.016 12.016 0 0 1 14.832 2.254c24.718 26.744 43.619 58.944 54.689 94.586 1.667 5.366-.592 11.175-5.459 13.985L444.788 220.9a193.485 193.485 0 0 1 0 70.2zM336 256c0-44.112-35.888-80-80-80s-80 35.888-80 80 35.888 80 80 80 80-35.888 80-80z"] }; +var faCogs = { prefix: 'fas', iconName: 'cogs', icon: [640, 512, [], "f085", "M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z"] }; +var faCoins = { prefix: 'fas', iconName: 'coins', icon: [512, 512, [], "f51e", "M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z"] }; +var faColumns = { prefix: 'fas', iconName: 'columns', icon: [512, 512, [], "f0db", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z"] }; +var faComment = { prefix: 'fas', iconName: 'comment', icon: [512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32z"] }; +var faCommentAlt = { prefix: 'fas', iconName: 'comment-alt', icon: [512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 9.8 11.2 15.5 19.1 9.7L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z"] }; +var faCommentDots = { prefix: 'fas', iconName: 'comment-dots', icon: [512, 512, [], "f4ad", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faCommentSlash = { prefix: 'fas', iconName: 'comment-slash', icon: [640, 512, [], "f4b3", "M64 240c0 49.6 21.4 95 57 130.7-12.6 50.3-54.3 95.2-54.8 95.8-2.2 2.3-2.8 5.7-1.5 8.7 1.3 2.9 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 27.4 0 53.7-3.6 78.4-10L72.9 186.4c-5.6 17.1-8.9 35-8.9 53.6zm569.8 218.1l-114.4-88.4C554.6 334.1 576 289.2 576 240c0-114.9-114.6-208-256-208-65.1 0-124.2 20.1-169.4 52.7L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z"] }; +var faComments = { prefix: 'fas', iconName: 'comments', icon: [576, 512, [], "f086", "M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z"] }; +var faCompactDisc = { prefix: 'fas', iconName: 'compact-disc', icon: [496, 512, [], "f51f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 256H56c0-105.9 86.1-192 192-192v32c-88.2 0-160 71.8-160 160zm160 96c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"] }; +var faCompass = { prefix: 'fas', iconName: 'compass', icon: [512, 512, [], "f14e", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM307.446 120.844l-102.642 97.779a23.997 23.997 0 0 0-6.772 11.729l-33.359 137.779c-5.68 23.459 22.777 39.318 39.88 23.024l102.64-97.779a23.99 23.99 0 0 0 6.772-11.729l33.359-137.779c5.618-23.198-22.591-39.493-39.878-23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; +var faCompress = { prefix: 'fas', iconName: 'compress', icon: [448, 512, [], "f066", "M436 192H312c-13.3 0-24-10.7-24-24V44c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-276-24V44c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v84H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 300V344c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-84h84c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H312c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"] }; +var faCopy = { prefix: 'fas', iconName: 'copy', icon: [448, 512, [], "f0c5", "M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z"] }; +var faCopyright = { prefix: 'fas', iconName: 'copyright', icon: [512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm117.134 346.753c-1.592 1.867-39.776 45.731-109.851 45.731-84.692 0-144.484-63.26-144.484-145.567 0-81.303 62.004-143.401 143.762-143.401 66.957 0 101.965 37.315 103.422 38.904a12 12 0 0 1 1.238 14.623l-22.38 34.655c-4.049 6.267-12.774 7.351-18.234 2.295-.233-.214-26.529-23.88-61.88-23.88-46.116 0-73.916 33.575-73.916 76.082 0 39.602 25.514 79.692 74.277 79.692 38.697 0 65.28-28.338 65.544-28.625 5.132-5.565 14.059-5.033 18.508 1.053l24.547 33.572a12.001 12.001 0 0 1-.553 14.866z"] }; +var faCouch = { prefix: 'fas', iconName: 'couch', icon: [640, 512, [], "f4b8", "M160 224v64h320v-64c0-35.3 28.7-64 64-64h32c0-53-43-96-96-96H160c-53 0-96 43-96 96h32c35.3 0 64 28.7 64 64zm416-32h-32c-17.7 0-32 14.3-32 32v96H128v-96c0-17.7-14.3-32-32-32H64c-35.3 0-64 28.7-64 64 0 23.6 13 44 32 55.1V432c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-16h384v16c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V311.1c19-11.1 32-31.5 32-55.1 0-35.3-28.7-64-64-64z"] }; +var faCreditCard = { prefix: 'fas', iconName: 'credit-card', icon: [576, 512, [], "f09d", "M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V256H0v176zm192-68c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-40zm-128 0c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM576 80v48H0V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48z"] }; +var faCrop = { prefix: 'fas', iconName: 'crop', icon: [512, 512, [], "f125", "M488 352h-40V109.3l57-57c9.4-9.4 9.4-24.6 0-33.9L493.7 7c-9.4-9.4-24.6-9.4-33.9 0l-57 57H160V24c0-13.3-10.7-24-24-24H88C74.7 0 64 10.7 64 24v40H24C10.7 64 0 74.7 0 88v48c0 13.3 10.7 24 24 24h40v264c0 13.3 10.7 24 24 24h264v40c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24v-40h40c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zM306.7 160L160 306.7V160h146.7zM205.3 352L352 205.3V352H205.3z"] }; +var faCrosshairs = { prefix: 'fas', iconName: 'crosshairs', icon: [512, 512, [], "f05b", "M500 224h-30.364C455.724 130.325 381.675 56.276 288 42.364V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v30.364C130.325 56.276 56.276 130.325 42.364 224H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h30.364C56.276 381.675 130.325 455.724 224 469.636V500c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-30.364C381.675 455.724 455.724 381.675 469.636 288H500c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zM288 404.634V364c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40.634C165.826 392.232 119.783 346.243 107.366 288H148c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40.634C119.768 165.826 165.757 119.783 224 107.366V148c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40.634C346.174 119.768 392.217 165.757 404.634 224H364c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40.634C392.232 346.174 346.243 392.217 288 404.634zM288 256c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z"] }; +var faCrow = { prefix: 'fas', iconName: 'crow', icon: [640, 512, [], "f520", "M544 32h-16.36C513.04 12.68 490.09 0 464 0c-44.18 0-80 35.82-80 80v20.98L12.09 393.57A30.216 30.216 0 0 0 0 417.74c0 22.46 23.64 37.07 43.73 27.03L165.27 384h96.49l44.41 120.1c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38L312.94 384H352c1.91 0 3.76-.23 5.66-.29l44.51 120.38c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38l-41.24-111.53C485.74 352.8 544 279.26 544 192v-80l96-16c0-35.35-42.98-64-96-64zm-80 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"] }; +var faCrown = { prefix: 'fas', iconName: 'crown', icon: [640, 512, [], "f521", "M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.4 7.7-.8L128 416h384l72.3-192.8c2.5.4 5.1.8 7.7.8 26.5 0 48-21.5 48-48s-21.5-48-48-48z"] }; +var faCube = { prefix: 'fas', iconName: 'cube', icon: [512, 512, [], "f1b2", "M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z"] }; +var faCubes = { prefix: 'fas', iconName: 'cubes', icon: [512, 512, [], "f1b3", "M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z"] }; +var faCut = { prefix: 'fas', iconName: 'cut', icon: [448, 512, [], "f0c4", "M444.485 422.426c4.689 4.689 4.684 12.287 0 16.971-32.804 32.804-85.991 32.804-118.795 0L210.176 323.883l-24.859 24.859C189.63 359.657 192 371.552 192 384c0 53.019-42.981 96-96 96S0 437.019 0 384s42.981-96 96-96c4.536 0 8.995.322 13.363.93l32.93-32.93-32.93-32.93c-4.368.608-8.827.93-13.363.93-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96c0 12.448-2.37 24.343-6.682 35.258l24.859 24.859L325.69 72.603c32.804-32.804 85.991-32.804 118.795 0 4.684 4.684 4.689 12.282 0 16.971L278.059 256l166.426 166.426zM96 96c-17.645 0-32 14.355-32 32s14.355 32 32 32 32-14.355 32-32-14.355-32-32-32m0 256c-17.645 0-32 14.355-32 32s14.355 32 32 32 32-14.355 32-32-14.355-32-32-32m112-108c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12z"] }; +var faDatabase = { prefix: 'fas', iconName: 'database', icon: [448, 512, [], "f1c0", "M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z"] }; +var faDeaf = { prefix: 'fas', iconName: 'deaf', icon: [512, 512, [], "f2a4", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm268.485-52.201L480.2 3.515c-4.687-4.686-12.284-4.686-16.971 0L376.2 90.544c-4.686 4.686-4.686 12.284 0 16.971l28.285 28.285c4.686 4.686 12.284 4.686 16.97 0l87.03-87.029c4.687-4.688 4.687-12.286 0-16.972zM168.97 314.745c-4.686-4.686-12.284-4.686-16.97 0L3.515 463.23c-4.686 4.686-4.686 12.284 0 16.971L31.8 508.485c4.687 4.686 12.284 4.686 16.971 0L197.256 360c4.686-4.686 4.686-12.284 0-16.971l-28.286-28.284z"] }; +var faDesktop = { prefix: 'fas', iconName: 'desktop', icon: [576, 512, [], "f108", "M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z"] }; +var faDiagnoses = { prefix: 'fas', iconName: 'diagnoses', icon: [640, 512, [], "f470", "M496 256c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm-176-80c48.5 0 88-39.5 88-88S368.5 0 320 0s-88 39.5-88 88 39.5 88 88 88zM59.8 364c10.2 15.3 29.3 17.8 42.9 9.8 16.2-9.6 56.2-31.7 105.3-48.6V416h224v-90.7c49.1 16.8 89.1 39 105.3 48.6 13.6 8 32.7 5.3 42.9-9.8l17.8-26.7c8.8-13.2 7.6-34.6-10-45.1-11.9-7.1-29.7-17-51.1-27.4-28.1 46.1-99.4 17.8-87.7-35.1C409.3 217.2 365.1 208 320 208c-57 0-112.9 14.5-160 32.2-.2 40.2-47.6 63.3-79.2 36-11.2 6-21.3 11.6-28.7 16-17.6 10.5-18.8 31.8-10 45.1L59.8 364zM368 344c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-160 8c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm512 192H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z"] }; +var faDice = { prefix: 'fas', iconName: 'dice', icon: [640, 512, [], "f522", "M592 192H473.26c12.69 29.59 7.12 65.2-17 89.32L320 417.58V464c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48V240c0-26.51-21.49-48-48-48zM480 376c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm-46.37-186.7L258.7 14.37c-19.16-19.16-50.23-19.16-69.39 0L14.37 189.3c-19.16 19.16-19.16 50.23 0 69.39L189.3 433.63c19.16 19.16 50.23 19.16 69.39 0L433.63 258.7c19.16-19.17 19.16-50.24 0-69.4zM96 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"] }; +var faDiceFive = { prefix: 'fas', iconName: 'dice-five', icon: [448, 512, [], "f523", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceFour = { prefix: 'fas', iconName: 'dice-four', icon: [448, 512, [], "f524", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceOne = { prefix: 'fas', iconName: 'dice-one', icon: [448, 512, [], "f525", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM224 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceSix = { prefix: 'fas', iconName: 'dice-six', icon: [448, 512, [], "f526", "M384 0H64C28.65 0 0 28.65 0 64v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V64c0-35.35-28.65-64-64-64zM128 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceThree = { prefix: 'fas', iconName: 'dice-three', icon: [448, 512, [], "f527", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceTwo = { prefix: 'fas', iconName: 'dice-two', icon: [448, 512, [], "f528", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDivide = { prefix: 'fas', iconName: 'divide', icon: [448, 512, [], "f529", "M224 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm0-192c35.35 0 64-28.65 64-64s-28.65-64-64-64-64 28.65-64 64 28.65 64 64 64zm192 48H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; +var faDna = { prefix: 'fas', iconName: 'dna', icon: [448, 512, [], "f471", "M.1 494.1c-1.1 9.5 6.3 17.8 15.9 17.8l32.3.1c8.1 0 14.9-5.9 16-13.9.7-4.9 1.8-11.1 3.4-18.1H380c1.6 6.9 2.9 13.2 3.5 18.1 1.1 8 7.9 14 16 13.9l32.3-.1c9.6 0 17.1-8.3 15.9-17.8-4.6-37.9-25.6-129-118.9-207.7-17.6 12.4-37.1 24.2-58.5 35.4 6.2 4.6 11.4 9.4 17 14.2H159.7c21.3-18.1 47-35.6 78.7-51.4C410.5 199.1 442.1 65.8 447.9 17.9 449 8.4 441.6.1 432 .1L399.6 0c-8.1 0-14.9 5.9-16 13.9-.7 4.9-1.8 11.1-3.4 18.1H67.8c-1.6-7-2.7-13.1-3.4-18.1-1.1-8-7.9-14-16-13.9L16.1.1C6.5.1-1 8.4.1 17.9 5.3 60.8 31.4 171.8 160 256 31.5 340.2 5.3 451.2.1 494.1zM224 219.6c-25.1-13.7-46.4-28.4-64.3-43.6h128.5c-17.8 15.2-39.1 30-64.2 43.6zM355.1 96c-5.8 10.4-12.8 21.1-21 32H114c-8.3-10.9-15.3-21.6-21-32h262.1zM92.9 416c5.8-10.4 12.8-21.1 21-32h219.4c8.3 10.9 15.4 21.6 21.2 32H92.9z"] }; +var faDollarSign = { prefix: 'fas', iconName: 'dollar-sign', icon: [288, 512, [], "f155", "M209.2 233.4l-108-31.6C88.7 198.2 80 186.5 80 173.5c0-16.3 13.2-29.5 29.5-29.5h66.3c12.2 0 24.2 3.7 34.2 10.5 6.1 4.1 14.3 3.1 19.5-2l34.8-34c7.1-6.9 6.1-18.4-1.8-24.5C238 74.8 207.4 64.1 176 64V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C45.8 64-5.4 118.7.5 183.6c4.2 46.1 39.4 83.6 83.8 96.6l102.5 30c12.5 3.7 21.2 15.3 21.2 28.3 0 16.3-13.2 29.5-29.5 29.5h-66.3C100 368 88 364.3 78 357.5c-6.1-4.1-14.3-3.1-19.5 2l-34.8 34c-7.1 6.9-6.1 18.4 1.8 24.5 24.5 19.2 55.1 29.9 86.5 30v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48.2c46.6-.9 90.3-28.6 105.7-72.7 21.5-61.6-14.6-124.8-72.5-141.7z"] }; +var faDolly = { prefix: 'fas', iconName: 'dolly', icon: [576, 512, [], "f472", "M294.2 277.7c18 5 34.7 13.4 49.5 24.7l161.5-53.8c8.4-2.8 12.9-11.9 10.1-20.2L454.9 47.2c-2.8-8.4-11.9-12.9-20.2-10.1l-61.1 20.4 33.1 99.4L346 177l-33.1-99.4-61.6 20.5c-8.4 2.8-12.9 11.9-10.1 20.2l53 159.4zm281 48.7L565 296c-2.8-8.4-11.9-12.9-20.2-10.1l-213.5 71.2c-17.2-22-43.6-36.4-73.5-37L158.4 21.9C154 8.8 141.8 0 128 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h88.9l92.2 276.7c-26.1 20.4-41.7 53.6-36 90.5 6.1 39.4 37.9 72.3 77.3 79.2 60.2 10.7 112.3-34.8 113.4-92.6l213.3-71.2c8.3-2.8 12.9-11.8 10.1-20.2zM256 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; +var faDollyFlatbed = { prefix: 'fas', iconName: 'dolly-flatbed', icon: [640, 512, [], "f474", "M208 320h384c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H448v128l-48-32-48 32V32H208c-8.8 0-16 7.2-16 16v256c0 8.8 7.2 16 16 16zm416 64H128V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h82.9c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H451c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H624c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z"] }; +var faDonate = { prefix: 'fas', iconName: 'donate', icon: [512, 512, [], "f4b9", "M256 416c114.9 0 208-93.1 208-208S370.9 0 256 0 48 93.1 48 208s93.1 208 208 208zM233.8 97.4V80.6c0-9.2 7.4-16.6 16.6-16.6h11.1c9.2 0 16.6 7.4 16.6 16.6v17c15.5.8 30.5 6.1 43 15.4 5.6 4.1 6.2 12.3 1.2 17.1L306 145.6c-3.8 3.7-9.5 3.8-14 1-5.4-3.4-11.4-5.1-17.8-5.1h-38.9c-9 0-16.3 8.2-16.3 18.3 0 8.2 5 15.5 12.1 17.6l62.3 18.7c25.7 7.7 43.7 32.4 43.7 60.1 0 34-26.4 61.5-59.1 62.4v16.8c0 9.2-7.4 16.6-16.6 16.6h-11.1c-9.2 0-16.6-7.4-16.6-16.6v-17c-15.5-.8-30.5-6.1-43-15.4-5.6-4.1-6.2-12.3-1.2-17.1l16.3-15.5c3.8-3.7 9.5-3.8 14-1 5.4 3.4 11.4 5.1 17.8 5.1h38.9c9 0 16.3-8.2 16.3-18.3 0-8.2-5-15.5-12.1-17.6l-62.3-18.7c-25.7-7.7-43.7-32.4-43.7-60.1.1-34 26.4-61.5 59.1-62.4zM480 352h-32.5c-19.6 26-44.6 47.7-73 64h63.8c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8h63.8c-28.4-16.3-53.3-38-73-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32z"] }; +var faDoorClosed = { prefix: 'fas', iconName: 'door-closed', icon: [640, 512, [], "f52a", "M624 448H512V50.8C512 22.78 490.47 0 464 0H175.99c-26.47 0-48 22.78-48 50.8V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM415.99 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32c.01 17.67-14.32 32-32 32z"] }; +var faDoorOpen = { prefix: 'fas', iconName: 'door-open', icon: [640, 512, [], "f52b", "M624 448h-80V113.45C544 86.19 522.47 64 496 64H384v64h96v384h144c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM312.24 1.01l-192 49.74C105.99 54.44 96 67.7 96 82.92V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h336V33.18c0-21.58-19.56-37.41-39.76-32.17zM264 288c-13.25 0-24-14.33-24-32s10.75-32 24-32 24 14.33 24 32-10.75 32-24 32z"] }; +var faDotCircle = { prefix: 'fas', iconName: 'dot-circle', icon: [512, 512, [], "f192", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z"] }; +var faDove = { prefix: 'fas', iconName: 'dove', icon: [512, 512, [], "f4ba", "M288 167.2v-28.1c-28.2-36.3-47.1-79.3-54.1-125.2-2.1-13.5-19-18.8-27.8-8.3-21.1 24.9-37.7 54.1-48.9 86.5 34.2 38.3 80 64.6 130.8 75.1zM400 64c-44.2 0-80 35.9-80 80.1v59.4C215.6 197.3 127 133 87 41.8c-5.5-12.5-23.2-13.2-29-.9C41.4 76 32 115.2 32 156.6c0 70.8 34.1 136.9 85.1 185.9 13.2 12.7 26.1 23.2 38.9 32.8l-143.9 36C1.4 414-3.4 426.4 2.6 435.7 20 462.6 63 508.2 155.8 512c8 .3 16-2.6 22.1-7.9l65.2-56.1H320c88.4 0 160-71.5 160-159.9V128l32-64H400zm0 96.1c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"] }; +var faDownload = { prefix: 'fas', iconName: 'download', icon: [512, 512, [], "f019", "M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"] }; +var faDumbbell = { prefix: 'fas', iconName: 'dumbbell', icon: [640, 512, [], "f44b", "M104 96H56c-13.3 0-24 10.7-24 24v104H8c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h24v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm528 128h-24V120c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v272c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h24c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM456 32h-48c-13.3 0-24 10.7-24 24v168H256V56c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v400c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h128v168c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24z"] }; +var faEdit = { prefix: 'fas', iconName: 'edit', icon: [576, 512, [], "f044", "M402.6 83.2l90.2 90.2c3.8 3.8 3.8 10 0 13.8L274.4 405.6l-92.8 10.3c-12.4 1.4-22.9-9.1-21.5-21.5l10.3-92.8L388.8 83.2c3.8-3.8 10-3.8 13.8 0zm162-22.9l-48.8-48.8c-15.2-15.2-39.9-15.2-55.2 0l-35.4 35.4c-3.8 3.8-3.8 10 0 13.8l90.2 90.2c3.8 3.8 10 3.8 13.8 0l35.4-35.4c15.2-15.3 15.2-40 0-55.2zM384 346.2V448H64V128h229.8c3.2 0 6.2-1.3 8.5-3.5l40-40c7.6-7.6 2.2-20.5-8.5-20.5H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V306.2c0-10.7-12.9-16-20.5-8.5l-40 40c-2.2 2.3-3.5 5.3-3.5 8.5z"] }; +var faEject = { prefix: 'fas', iconName: 'eject', icon: [448, 512, [], "f052", "M448 384v64c0 17.673-14.327 32-32 32H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h384c17.673 0 32 14.327 32 32zM48.053 320h351.886c41.651 0 63.581-49.674 35.383-80.435L259.383 47.558c-19.014-20.743-51.751-20.744-70.767 0L12.67 239.565C-15.475 270.268 6.324 320 48.053 320z"] }; +var faEllipsisH = { prefix: 'fas', iconName: 'ellipsis-h', icon: [512, 512, [], "f141", "M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z"] }; +var faEllipsisV = { prefix: 'fas', iconName: 'ellipsis-v', icon: [192, 512, [], "f142", "M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z"] }; +var faEnvelope = { prefix: 'fas', iconName: 'envelope', icon: [512, 512, [], "f0e0", "M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"] }; +var faEnvelopeOpen = { prefix: 'fas', iconName: 'envelope-open', icon: [512, 512, [], "f2b6", "M512 464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V200.724a48 48 0 0 1 18.387-37.776c24.913-19.529 45.501-35.365 164.2-121.511C199.412 29.17 232.797-.347 256 .003c23.198-.354 56.596 29.172 73.413 41.433 118.687 86.137 139.303 101.995 164.2 121.512A48 48 0 0 1 512 200.724V464zm-65.666-196.605c-2.563-3.728-7.7-4.595-11.339-1.907-22.845 16.873-55.462 40.705-105.582 77.079-16.825 12.266-50.21 41.781-73.413 41.43-23.211.344-56.559-29.143-73.413-41.43-50.114-36.37-82.734-60.204-105.582-77.079-3.639-2.688-8.776-1.821-11.339 1.907l-9.072 13.196a7.998 7.998 0 0 0 1.839 10.967c22.887 16.899 55.454 40.69 105.303 76.868 20.274 14.781 56.524 47.813 92.264 47.573 35.724.242 71.961-32.771 92.263-47.573 49.85-36.179 82.418-59.97 105.303-76.868a7.998 7.998 0 0 0 1.839-10.967l-9.071-13.196z"] }; +var faEnvelopeSquare = { prefix: 'fas', iconName: 'envelope-square', icon: [448, 512, [], "f199", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM178.117 262.104C87.429 196.287 88.353 196.121 64 177.167V152c0-13.255 10.745-24 24-24h272c13.255 0 24 10.745 24 24v25.167c-24.371 18.969-23.434 19.124-114.117 84.938-10.5 7.655-31.392 26.12-45.883 25.894-14.503.218-35.367-18.227-45.883-25.895zM384 217.775V360c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V217.775c13.958 10.794 33.329 25.236 95.303 70.214 14.162 10.341 37.975 32.145 64.694 32.01 26.887.134 51.037-22.041 64.72-32.025 61.958-44.965 81.325-59.406 95.283-70.199z"] }; +var faEquals = { prefix: 'fas', iconName: 'equals', icon: [448, 512, [], "f52c", "M416 304H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32zm0-192H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; +var faEraser = { prefix: 'fas', iconName: 'eraser', icon: [512, 512, [], "f12d", "M497.941 273.941c18.745-18.745 18.745-49.137 0-67.882l-160-160c-18.745-18.745-49.136-18.746-67.883 0l-256 256c-18.745 18.745-18.745 49.137 0 67.882l96 96A48.004 48.004 0 0 0 144 480h356c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H355.883l142.058-142.059zm-302.627-62.627l137.373 137.373L265.373 416H150.628l-80-80 124.686-124.686z"] }; +var faEuroSign = { prefix: 'fas', iconName: 'euro-sign', icon: [320, 512, [], "f153", "M310.706 413.765c-1.314-6.63-7.835-10.872-14.424-9.369-10.692 2.439-27.422 5.413-45.426 5.413-56.763 0-101.929-34.79-121.461-85.449h113.689a12 12 0 0 0 11.708-9.369l6.373-28.36c1.686-7.502-4.019-14.631-11.708-14.631H115.22c-1.21-14.328-1.414-28.287.137-42.245H261.95a12 12 0 0 0 11.723-9.434l6.512-29.755c1.638-7.484-4.061-14.566-11.723-14.566H130.184c20.633-44.991 62.69-75.03 117.619-75.03 14.486 0 28.564 2.25 37.851 4.145 6.216 1.268 12.347-2.498 14.002-8.623l11.991-44.368c1.822-6.741-2.465-13.616-9.326-14.917C290.217 34.912 270.71 32 249.635 32 152.451 32 74.03 92.252 45.075 176H12c-6.627 0-12 5.373-12 12v29.755c0 6.627 5.373 12 12 12h21.569c-1.009 13.607-1.181 29.287-.181 42.245H12c-6.627 0-12 5.373-12 12v28.36c0 6.627 5.373 12 12 12h30.114C67.139 414.692 145.264 480 249.635 480c26.301 0 48.562-4.544 61.101-7.788 6.167-1.595 10.027-7.708 8.788-13.957l-8.818-44.49z"] }; +var faExchangeAlt = { prefix: 'fas', iconName: 'exchange-alt', icon: [512, 512, [], "f362", "M0 168v-16c0-13.255 10.745-24 24-24h360V80c0-21.367 25.899-32.042 40.971-16.971l80 80c9.372 9.373 9.372 24.569 0 33.941l-80 80C409.956 271.982 384 261.456 384 240v-48H24c-13.255 0-24-10.745-24-24zm488 152H128v-48c0-21.314-25.862-32.08-40.971-16.971l-80 80c-9.372 9.373-9.372 24.569 0 33.941l80 80C102.057 463.997 128 453.437 128 432v-48h360c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z"] }; +var faExclamation = { prefix: 'fas', iconName: 'exclamation', icon: [192, 512, [], "f12a", "M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z"] }; +var faExclamationCircle = { prefix: 'fas', iconName: 'exclamation-circle', icon: [512, 512, [], "f06a", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"] }; +var faExclamationTriangle = { prefix: 'fas', iconName: 'exclamation-triangle', icon: [576, 512, [], "f071", "M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"] }; +var faExpand = { prefix: 'fas', iconName: 'expand', icon: [448, 512, [], "f065", "M0 180V56c0-13.3 10.7-24 24-24h124c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H64v84c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12zM288 44v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V56c0-13.3-10.7-24-24-24H300c-6.6 0-12 5.4-12 12zm148 276h-40c-6.6 0-12 5.4-12 12v84h-84c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24V332c0-6.6-5.4-12-12-12zM160 468v-40c0-6.6-5.4-12-12-12H64v-84c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v124c0 13.3 10.7 24 24 24h124c6.6 0 12-5.4 12-12z"] }; +var faExpandArrowsAlt = { prefix: 'fas', iconName: 'expand-arrows-alt', icon: [448, 512, [], "f31e", "M448.1 344v112c0 13.3-10.7 24-24 24h-112c-21.4 0-32.1-25.9-17-41l36.2-36.2L224 295.6 116.8 402.9 153 439c15.1 15.1 4.4 41-17 41H24c-13.3 0-24-10.7-24-24V344c0-21.4 25.9-32.1 41-17l36.2 36.2L184.5 256 77.2 148.7 41 185c-15.1 15.1-41 4.4-41-17V56c0-13.3 10.7-24 24-24h112c21.4 0 32.1 25.9 17 41l-36.2 36.2L224 216.4l107.3-107.3L295.1 73c-15.1-15.1-4.4-41 17-41h112c13.3 0 24 10.7 24 24v112c0 21.4-25.9 32.1-41 17l-36.2-36.2L263.6 256l107.3 107.3 36.2-36.2c15.1-15.2 41-4.5 41 16.9z"] }; +var faExternalLinkAlt = { prefix: 'fas', iconName: 'external-link-alt', icon: [576, 512, [], "f35d", "M576 24v127.984c0 21.461-25.96 31.98-40.971 16.971l-35.707-35.709-243.523 243.523c-9.373 9.373-24.568 9.373-33.941 0l-22.627-22.627c-9.373-9.373-9.373-24.569 0-33.941L442.756 76.676l-35.703-35.705C391.982 25.9 402.656 0 424.024 0H552c13.255 0 24 10.745 24 24zM407.029 270.794l-16 16A23.999 23.999 0 0 0 384 303.765V448H64V128h264a24.003 24.003 0 0 0 16.97-7.029l16-16C376.089 89.851 365.381 64 344 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V287.764c0-21.382-25.852-32.09-40.971-16.97z"] }; +var faExternalLinkSquareAlt = { prefix: 'fas', iconName: 'external-link-square-alt', icon: [448, 512, [], "f360", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-88 16H248.029c-21.313 0-32.08 25.861-16.971 40.971l31.984 31.987L67.515 364.485c-4.686 4.686-4.686 12.284 0 16.971l31.029 31.029c4.687 4.686 12.285 4.686 16.971 0l195.526-195.526 31.988 31.991C358.058 263.977 384 253.425 384 231.979V120c0-13.255-10.745-24-24-24z"] }; +var faEye = { prefix: 'fas', iconName: 'eye', icon: [576, 512, [], "f06e", "M569.354 231.631C512.969 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-75.162 0-136-60.827-136-136 0-75.162 60.826-136 136-136 75.162 0 136 60.826 136 136 0 75.162-60.826 136-136 136zm104-136c0 57.438-46.562 104-104 104s-104-46.562-104-104c0-17.708 4.431-34.379 12.236-48.973l-.001.032c0 23.651 19.173 42.823 42.824 42.823s42.824-19.173 42.824-42.823c0-23.651-19.173-42.824-42.824-42.824l-.032.001C253.621 156.431 270.292 152 288 152c57.438 0 104 46.562 104 104z"] }; +var faEyeDropper = { prefix: 'fas', iconName: 'eye-dropper', icon: [512, 512, [], "f1fb", "M177.38 206.64L39.03 344.97A24.01 24.01 0 0 0 32 361.94V424L0 480l32 32 56-32h62.06c6.36 0 12.47-2.53 16.97-7.03l138.35-138.33-128-128zm225.552 30.47l16.952 16.95c9.37 9.37 9.37 24.57 0 33.94l-40.973 40.97c-9.292 9.312-24.506 9.434-33.94 0L183.028 167.03c-9.37-9.37-9.37-24.57 0-33.94L224 92.12c9.289-9.309 24.502-9.438 33.94 0l16.992 16.99 82.606-82.601c35.19-35.19 92.5-35.5 128 0 40.49 48.08 29.66 98.34 0 128l-82.606 82.601z"] }; +var faEyeSlash = { prefix: 'fas', iconName: 'eye-slash', icon: [576, 512, [], "f070", "M286.693 391.984l32.579 46.542A333.958 333.958 0 0 1 288 440C168.19 440 63.031 376.051 6.646 280.369a47.999 47.999 0 0 1 0-48.739c24.023-40.766 56.913-75.775 96.024-102.537l57.077 81.539C154.736 224.82 152 240.087 152 256c0 74.736 60.135 135.282 134.693 135.984zm282.661-111.615c-31.667 53.737-78.747 97.46-135.175 125.475l.011.015 41.47 59.2c7.6 10.86 4.96 25.82-5.9 33.42l-13.11 9.18c-10.86 7.6-25.82 4.96-33.42-5.9L100.34 46.94c-7.6-10.86-4.96-25.82 5.9-33.42l13.11-9.18c10.86-7.6 25.82-4.96 33.42 5.9l51.038 72.617C230.68 75.776 258.905 72 288 72c119.81 0 224.969 63.949 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM424 256c0-75.174-60.838-136-136-136-17.939 0-35.056 3.473-50.729 9.772l19.299 27.058c25.869-8.171 55.044-6.163 80.4 7.41h-.03c-23.65 0-42.82 19.17-42.82 42.82 0 23.626 19.147 42.82 42.82 42.82 23.65 0 42.82-19.17 42.82-42.82v-.03c18.462 34.49 16.312 77.914-8.25 110.95v.01l19.314 27.061C411.496 321.2 424 290.074 424 256zM262.014 356.727l-77.53-110.757c-5.014 52.387 29.314 98.354 77.53 110.757z"] }; +var faFastBackward = { prefix: 'fas', iconName: 'fast-backward', icon: [512, 512, [], "f049", "M0 436V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v151.9L235.5 71.4C256.1 54.3 288 68.6 288 96v131.9L459.5 71.4C480.1 54.3 512 68.6 512 96v320c0 27.4-31.9 41.7-52.5 24.6L288 285.3V416c0 27.4-31.9 41.7-52.5 24.6L64 285.3V436c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12z"] }; +var faFastForward = { prefix: 'fas', iconName: 'fast-forward', icon: [512, 512, [], "f050", "M512 76v360c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V284.1L276.5 440.6c-20.6 17.2-52.5 2.8-52.5-24.6V284.1L52.5 440.6C31.9 457.8 0 443.4 0 416V96c0-27.4 31.9-41.7 52.5-24.6L224 226.8V96c0-27.4 31.9-41.7 52.5-24.6L448 226.8V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12z"] }; +var faFax = { prefix: 'fas', iconName: 'fax', icon: [512, 512, [], "f1ac", "M128 144v320c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V144c0-26.51 21.49-48 48-48h32c26.51 0 48 21.49 48 48zm384 64v256c0 26.51-21.49 48-48 48H192c-26.51 0-48-21.49-48-48V40c0-22.091 17.909-40 40-40h207.432a39.996 39.996 0 0 1 28.284 11.716l48.569 48.569A39.999 39.999 0 0 1 480 88.568v74.174c18.641 6.591 32 24.36 32 45.258zm-320-16h240V96h-24c-13.203 0-24-10.797-24-24V48H192v144zm96 204c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm128 128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40z"] }; +var faFeather = { prefix: 'fas', iconName: 'feather', icon: [512, 512, [], "f52d", "M512 0C504.81.01 98.51 22.01 71.47 287.42c-2.62 22.6-4.22 45.28-5.37 67.98l160.65-160.65c6.25-6.25 16.38-6.25 22.62 0s6.25 16.38 0 22.62l-240 240a31.9 31.9 0 0 0-9.38 22.67C.02 497.68 14.33 512 32 512c8.19 0 16.38-3.12 22.62-9.38l55.05-55.05c38.4-.5 76.76-2.63 114.91-7.05 11.58-1.18 22.54-3.29 33.21-5.84L256 384h101.86c12.61-10.63 24.12-22.45 34.76-35.07L384 288h50.19C502.8 163.6 512 .1 512 0z"] }; +var faFemale = { prefix: 'fas', iconName: 'female', icon: [256, 512, [], "f182", "M128 0c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64S92.654 0 128 0m119.283 354.179l-48-192A24 24 0 0 0 176 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H80a24 24 0 0 0-23.283 18.179l-48 192C4.935 369.305 16.383 384 32 384h56v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V384h56c15.591 0 27.071-14.671 23.283-29.821z"] }; +var faFighterJet = { prefix: 'fas', iconName: 'fighter-jet', icon: [640, 512, [], "f0fb", "M544 224l-128-16-48-16h-24L227.158 44h39.509C278.333 44 288 41.375 288 38s-9.667-6-21.333-6H152v12h16v164h-48l-66.667-80H18.667L8 138.667V208h8v16h48v2.666l-64 8v42.667l64 8V288H16v16H8v69.333L18.667 384h34.667L120 304h48v164h-16v12h114.667c11.667 0 21.333-2.625 21.333-6s-9.667-6-21.333-6h-39.509L344 320h24l48-16 128-16c96-21.333 96-26.583 96-32 0-5.417 0-10.667-96-32z"] }; +var faFile = { prefix: 'fas', iconName: 'file', icon: [384, 512, [], "f15b", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileAlt = { prefix: 'fas', iconName: 'file-alt', icon: [384, 512, [], "f15c", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileArchive = { prefix: 'fas', iconName: 'file-archive', icon: [384, 512, [], "f1c6", "M224 136V0h-63.6v32h-32V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM95.9 32h32v32h-32V32zm32.3 384c-33.2 0-58-30.4-51.4-62.9L96.4 256v-32h32v-32h-32v-32h32v-32h-32V96h32V64h32v32h-32v32h32v32h-32v32h32v32h-32v32h22.1c5.7 0 10.7 4.1 11.8 9.7l17.3 87.7c6.4 32.4-18.4 62.6-51.4 62.6zm32.7-53c0 14.9-14.5 27-32.4 27S96 378 96 363c0-14.9 14.5-27 32.4-27s32.5 12.1 32.5 27zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileAudio = { prefix: 'fas', iconName: 'file-audio', icon: [384, 512, [], "f1c7", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileCode = { prefix: 'fas', iconName: 'file-code', icon: [384, 512, [], "f1c9", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zM123.206 400.505a5.4 5.4 0 0 1-7.633.246l-64.866-60.812a5.4 5.4 0 0 1 0-7.879l64.866-60.812a5.4 5.4 0 0 1 7.633.246l19.579 20.885a5.4 5.4 0 0 1-.372 7.747L101.65 336l40.763 35.874a5.4 5.4 0 0 1 .372 7.747l-19.579 20.884zm51.295 50.479l-27.453-7.97a5.402 5.402 0 0 1-3.681-6.692l61.44-211.626a5.402 5.402 0 0 1 6.692-3.681l27.452 7.97a5.4 5.4 0 0 1 3.68 6.692l-61.44 211.626a5.397 5.397 0 0 1-6.69 3.681zm160.792-111.045l-64.866 60.812a5.4 5.4 0 0 1-7.633-.246l-19.58-20.885a5.4 5.4 0 0 1 .372-7.747L284.35 336l-40.763-35.874a5.4 5.4 0 0 1-.372-7.747l19.58-20.885a5.4 5.4 0 0 1 7.633-.246l64.866 60.812a5.4 5.4 0 0 1-.001 7.879z"] }; +var faFileExcel = { prefix: 'fas', iconName: 'file-excel', icon: [384, 512, [], "f1c3", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm60.1 106.5L224 336l60.1 93.5c5.1 8-.6 18.5-10.1 18.5h-34.9c-4.4 0-8.5-2.4-10.6-6.3C208.9 405.5 192 373 192 373c-6.4 14.8-10 20-36.6 68.8-2.1 3.9-6.1 6.3-10.5 6.3H110c-9.5 0-15.2-10.5-10.1-18.5l60.3-93.5-60.3-93.5c-5.2-8 .6-18.5 10.1-18.5h34.8c4.4 0 8.5 2.4 10.6 6.3 26.1 48.8 20 33.6 36.6 68.5 0 0 6.1-11.7 36.6-68.5 2.1-3.9 6.2-6.3 10.6-6.3H274c9.5-.1 15.2 10.4 10.1 18.4zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileImage = { prefix: 'fas', iconName: 'file-image', icon: [384, 512, [], "f1c5", "M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z"] }; +var faFileMedical = { prefix: 'fas', iconName: 'file-medical', icon: [384, 512, [], "f477", "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 160v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8z"] }; +var faFileMedicalAlt = { prefix: 'fas', iconName: 'file-medical-alt', icon: [448, 512, [], "f478", "M288 136V0H88C74.7 0 64 10.7 64 24v232H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h140.9c3 0 5.8 1.7 7.2 4.4l19.9 39.8 56.8-113.7c2.9-5.9 11.4-5.9 14.3 0l34.7 69.5H352c8.8 0 16 7.2 16 16s-7.2 16-16 16h-89.9L240 275.8l-56.8 113.7c-2.9 5.9-11.4 5.9-14.3 0L134.1 320H64v168c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H312c-13.2 0-24-10.8-24-24zm153-31L343.1 7c-4.5-4.5-10.6-7-17-7H320v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"] }; +var faFilePdf = { prefix: 'fas', iconName: 'file-pdf', icon: [384, 512, [], "f1c1", "M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z"] }; +var faFilePowerpoint = { prefix: 'fas', iconName: 'file-powerpoint', icon: [384, 512, [], "f1c4", "M193.7 271.2c8.8 0 15.5 2.7 20.3 8.1 9.6 10.9 9.8 32.7-.2 44.1-4.9 5.6-11.9 8.5-21.1 8.5h-26.9v-60.7h27.9zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm53 165.2c0 90.3-88.8 77.6-111.1 77.6V436c0 6.6-5.4 12-12 12h-30.8c-6.6 0-12-5.4-12-12V236.2c0-6.6 5.4-12 12-12h81c44.5 0 72.9 32.8 72.9 77z"] }; +var faFileVideo = { prefix: 'fas', iconName: 'file-video', icon: [384, 512, [], "f1c8", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z"] }; +var faFileWord = { prefix: 'fas', iconName: 'file-word', icon: [384, 512, [], "f1c2", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm57.1 120H305c7.7 0 13.4 7.1 11.7 14.7l-38 168c-1.2 5.5-6.1 9.3-11.7 9.3h-38c-5.5 0-10.3-3.8-11.6-9.1-25.8-103.5-20.8-81.2-25.6-110.5h-.5c-1.1 14.3-2.4 17.4-25.6 110.5-1.3 5.3-6.1 9.1-11.6 9.1H117c-5.6 0-10.5-3.9-11.7-9.4l-37.8-168c-1.7-7.5 4-14.6 11.7-14.6h24.5c5.7 0 10.7 4 11.8 9.7 15.6 78 20.1 109.5 21 122.2 1.6-10.2 7.3-32.7 29.4-122.7 1.3-5.4 6.1-9.1 11.7-9.1h29.1c5.6 0 10.4 3.8 11.7 9.2 24 100.4 28.8 124 29.6 129.4-.2-11.2-2.6-17.8 21.6-129.2 1-5.6 5.9-9.5 11.5-9.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFilm = { prefix: 'fas', iconName: 'film', icon: [512, 512, [], "f008", "M488 64h-8v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V64H96v20c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12V64h-8C10.7 64 0 74.7 0 88v336c0 13.3 10.7 24 24 24h8v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h320v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h8c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM96 372c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm272 208c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm0-168c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm112 152c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z"] }; +var faFilter = { prefix: 'fas', iconName: 'filter', icon: [512, 512, [], "f0b0", "M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z"] }; +var faFire = { prefix: 'fas', iconName: 'fire', icon: [384, 512, [], "f06d", "M216 23.858c0-23.802-30.653-32.765-44.149-13.038C48 191.851 224 200 224 288c0 35.629-29.114 64.458-64.85 63.994C123.98 351.538 96 322.22 96 287.046v-85.51c0-21.703-26.471-32.225-41.432-16.504C27.801 213.158 0 261.332 0 320c0 105.869 86.131 192 192 192s192-86.131 192-192c0-170.29-168-193.003-168-296.142z"] }; +var faFireExtinguisher = { prefix: 'fas', iconName: 'fire-extinguisher', icon: [448, 512, [], "f134", "M434.027 26.329l-168 28C254.693 56.218 256 67.8 256 72h-58.332C208.353 36.108 181.446 0 144 0c-39.435 0-66.368 39.676-52.228 76.203-52.039 13.051-75.381 54.213-90.049 90.884-4.923 12.307 1.063 26.274 13.37 31.197 12.317 4.926 26.279-1.075 31.196-13.37C75.058 112.99 106.964 120 168 120v27.076c-41.543 10.862-72 49.235-72 94.129V488c0 13.255 10.745 24 24 24h144c13.255 0 24-10.745 24-24V240c0-44.731-30.596-82.312-72-92.97V120h40c0 2.974-1.703 15.716 10.027 17.671l168 28C441.342 166.89 448 161.25 448 153.834V38.166c0-7.416-6.658-13.056-13.973-11.837zM144 72c-8.822 0-16-7.178-16-16s7.178-16 16-16 16 7.178 16 16-7.178 16-16 16z"] }; +var faFirstAid = { prefix: 'fas', iconName: 'first-aid', icon: [576, 512, [], "f479", "M0 80v352c0 26.5 21.5 48 48 48h48V32H48C21.5 32 0 53.5 0 80zm128 400h320V32H128v448zm64-248c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48zM528 32h-48v448h48c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"] }; +var faFlag = { prefix: 'fas', iconName: 'flag', icon: [512, 512, [], "f024", "M349.565 98.783C295.978 98.783 251.721 64 184.348 64c-24.955 0-47.309 4.384-68.045 12.013a55.947 55.947 0 0 0 3.586-23.562C118.117 24.015 94.806 1.206 66.338.048 34.345-1.254 8 24.296 8 56c0 19.026 9.497 35.825 24 45.945V488c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-94.4c28.311-12.064 63.582-22.122 114.435-22.122 53.588 0 97.844 34.783 165.217 34.783 48.169 0 86.667-16.294 122.505-40.858C506.84 359.452 512 349.571 512 339.045v-243.1c0-23.393-24.269-38.87-45.485-29.016-34.338 15.948-76.454 31.854-116.95 31.854z"] }; +var faFlagCheckered = { prefix: 'fas', iconName: 'flag-checkered', icon: [512, 512, [], "f11e", "M466.515 66.928C487.731 57.074 512 72.551 512 95.944v243.1c0 10.526-5.161 20.407-13.843 26.358-35.837 24.564-74.335 40.858-122.505 40.858-67.373 0-111.63-34.783-165.217-34.783-50.853 0-86.124 10.058-114.435 22.122V488c0 13.255-10.745 24-24 24H56c-13.255 0-24-10.745-24-24V101.945C17.497 91.825 8 75.026 8 56 8 24.296 34.345-1.254 66.338.048c28.468 1.158 51.779 23.968 53.551 52.404.52 8.342-.81 16.31-3.586 23.562C137.039 68.384 159.393 64 184.348 64c67.373 0 111.63 34.783 165.217 34.783 40.496 0 82.612-15.906 116.95-31.855zM96 134.63v70.49c29-10.67 51.18-17.83 73.6-20.91v-71.57c-23.5 2.17-40.44 9.79-73.6 21.99zm220.8 9.19c-26.417-4.672-49.886-13.979-73.6-21.34v67.42c24.175 6.706 47.566 16.444 73.6 22.31v-68.39zm-147.2 40.39v70.04c32.796-2.978 53.91-.635 73.6 3.8V189.9c-25.247-7.035-46.581-9.423-73.6-5.69zm73.6 142.23c26.338 4.652 49.732 13.927 73.6 21.34v-67.41c-24.277-6.746-47.54-16.45-73.6-22.32v68.39zM96 342.1c23.62-8.39 47.79-13.84 73.6-16.56v-71.29c-26.11 2.35-47.36 8.04-73.6 17.36v70.49zm368-221.6c-21.3 8.85-46.59 17.64-73.6 22.47v71.91c27.31-4.36 50.03-14.1 73.6-23.89V120.5zm0 209.96v-70.49c-22.19 14.2-48.78 22.61-73.6 26.02v71.58c25.07-2.38 48.49-11.04 73.6-27.11zM316.8 212.21v68.16c25.664 7.134 46.616 9.342 73.6 5.62v-71.11c-25.999 4.187-49.943 2.676-73.6-2.67z"] }; +var faFlask = { prefix: 'fas', iconName: 'flask', icon: [448, 512, [], "f0c3", "M437.2 403.5L320 215V64h8c13.3 0 24-10.7 24-24V24c0-13.3-10.7-24-24-24H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h8v151L10.8 403.5C-18.5 450.6 15.3 512 70.9 512h306.2c55.7 0 89.4-61.5 60.1-108.5zM137.9 320l48.2-77.6c3.7-5.2 5.8-11.6 5.8-18.4V64h64v160c0 6.9 2.2 13.2 5.8 18.4l48.2 77.6h-172z"] }; +var faFolder = { prefix: 'fas', iconName: 'folder', icon: [512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z"] }; +var faFolderOpen = { prefix: 'fas', iconName: 'folder-open', icon: [576, 512, [], "f07c", "M572.694 292.093L500.27 416.248A63.997 63.997 0 0 1 444.989 448H45.025c-18.523 0-30.064-20.093-20.731-36.093l72.424-124.155A64 64 0 0 1 152 256h399.964c18.523 0 30.064 20.093 20.73 36.093zM152 224h328v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v278.046l69.077-118.418C86.214 242.25 117.989 224 152 224z"] }; +var faFont = { prefix: 'fas', iconName: 'font', icon: [448, 512, [], "f031", "M152 416h-24.013l26.586-80.782H292.8L319.386 416H296c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-26.739L275.495 42.746A16 16 0 0 0 260.382 32h-72.766a16 16 0 0 0-15.113 10.746L42.739 416H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm64.353-271.778c4.348-15.216 6.61-28.156 7.586-34.644.839 6.521 2.939 19.476 7.727 34.706l41.335 124.006h-98.619l41.971-124.068z"] }; +var faFontAwesomeLogoFull = { prefix: 'fas', iconName: 'font-awesome-logo-full', icon: [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"] }; +var faFootballBall = { prefix: 'fas', iconName: 'football-ball', icon: [496, 512, [], "f44e", "M481.5 60.3c-4.8-18.2-19.1-32.5-37.3-37.4C420.3 16.5 383 8.9 339.4 8L496 164.8c-.8-43.5-8.2-80.6-14.5-104.5zm-467 391.4c4.8 18.2 19.1 32.5 37.3 37.4 23.9 6.4 61.2 14 104.8 14.9L0 347.2c.8 43.5 8.2 80.6 14.5 104.5zM4.2 283.4L220.4 500c132.5-19.4 248.8-118.7 271.5-271.4L275.6 12C143.1 31.4 26.8 130.7 4.2 283.4zm317.3-123.6c3.1-3.1 8.2-3.1 11.3 0l11.3 11.3c3.1 3.1 3.1 8.2 0 11.3l-28.3 28.3 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-22.6 22.7 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L248 278.6l-22.6 22.6 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-28.3 28.3c-3.1 3.1-8.2 3.1-11.3 0l-11.3-11.3c-3.1-3.1-3.1-8.2 0-11.3l28.3-28.3-28.3-28.2c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 28.3-28.5z"] }; +var faForward = { prefix: 'fas', iconName: 'forward', icon: [512, 512, [], "f04e", "M500.5 231.4l-192-160C287.9 54.3 256 68.6 256 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2zm-256 0l-192-160C31.9 54.3 0 68.6 0 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2z"] }; +var faFrog = { prefix: 'fas', iconName: 'frog', icon: [576, 512, [], "f52e", "M446.53 97.43C439.67 60.23 407.19 32 368 32c-39.23 0-71.72 28.29-78.54 65.54C126.75 112.96-.5 250.12 0 416.98.11 451.9 29.08 480 64 480h304c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-79.49l35.8-48.33c24.14-36.23 10.35-88.28-33.71-106.6-23.89-9.93-51.55-4.65-72.24 10.88l-32.76 24.59c-7.06 5.31-17.09 3.91-22.41-3.19-5.3-7.08-3.88-17.11 3.19-22.41l34.78-26.09c36.84-27.66 88.28-27.62 125.13 0 10.87 8.15 45.87 39.06 40.8 93.21L469.62 480H560c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-53.63l-98.52-104.68 154.44-86.65A58.16 58.16 0 0 0 576 189.94c0-21.4-11.72-40.95-30.48-51.23-40.56-22.22-98.99-41.28-98.99-41.28zM368 136c-13.26 0-24-10.75-24-24 0-13.26 10.74-24 24-24 13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24z"] }; +var faFrown = { prefix: 'fas', iconName: 'frown', icon: [496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm192.7 220.3c-3 2.5-6.6 3.7-10.2 3.7-4.6 0-9.1-2-12.3-5.8-22.4-26.8-55.3-42.2-90.2-42.2s-67.8 15.4-90.2 42.2c-5.6 6.8-15.7 7.7-22.5 2-6.8-5.7-7.7-15.7-2-22.5C161.7 339.6 203.6 320 248 320s86.3 19.6 114.7 53.8c5.7 6.7 4.8 16.8-2 22.5z"] }; +var faFutbol = { prefix: 'fas', iconName: 'futbol', icon: [512, 512, [], "f1e3", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-48 0l-.003-.282-26.064 22.741-62.679-58.5 16.454-84.355 34.303 3.072c-24.889-34.216-60.004-60.089-100.709-73.141l13.651 31.939L256 139l-74.953-41.525 13.651-31.939c-40.631 13.028-75.78 38.87-100.709 73.141l34.565-3.073 16.192 84.355-62.678 58.5-26.064-22.741-.003.282c0 43.015 13.497 83.952 38.472 117.991l7.704-33.897 85.138 10.447 36.301 77.826-29.902 17.786c40.202 13.122 84.29 13.148 124.572 0l-29.902-17.786 36.301-77.826 85.138-10.447 7.704 33.897C442.503 339.952 456 299.015 456 256zm-248.102 69.571l-29.894-91.312L256 177.732l77.996 56.527-29.622 91.312h-96.476z"] }; +var faGamepad = { prefix: 'fas', iconName: 'gamepad', icon: [640, 512, [], "f11b", "M480 96H160C71.6 96 0 167.6 0 256s71.6 160 160 160c44.8 0 85.2-18.4 114.2-48h91.5c29 29.6 69.5 48 114.2 48 88.4 0 160-71.6 160-160S568.4 96 480 96zM256 276c0 6.6-5.4 12-12 12h-52v52c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-52H76c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h52v-52c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h52c6.6 0 12 5.4 12 12v40zm184 68c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-80c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; +var faGasPump = { prefix: 'fas', iconName: 'gas-pump', icon: [512, 512, [], "f52f", "M336 448H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm157.2-340.7l-81-81c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-6.2 6.2-6.2 16.4 0 22.6L416 97.9V160c0 28.1 20.9 51.3 48 55.2V376c0 13.2-10.8 24-24 24s-24-10.8-24-24v-32c0-48.6-39.4-88-88-88h-8V64c0-35.3-28.7-64-64-64H96C60.7 0 32 28.7 32 64v352h288V304h8c22.1 0 40 17.9 40 40v27.8c0 37.7 27 72 64.5 75.9 43 4.3 79.5-29.5 79.5-71.7V152.6c0-17-6.8-33.3-18.8-45.3zM256 192H96V64h160v128z"] }; +var faGavel = { prefix: 'fas', iconName: 'gavel', icon: [512, 512, [], "f0e3", "M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z"] }; +var faGem = { prefix: 'fas', iconName: 'gem', icon: [576, 512, [], "f3a5", "M485.5 0L576 160H474.9L405.7 0h79.8zm-128 0l69.2 160H149.3L218.5 0h139zm-267 0h79.8l-69.2 160H0L90.5 0zM0 192h100.7l123 251.7c1.5 3.1-2.7 5.9-5 3.3L0 192zm148.2 0h279.6l-137 318.2c-1 2.4-4.5 2.4-5.5 0L148.2 192zm204.1 251.7l123-251.7H576L357.3 446.9c-2.3 2.7-6.5-.1-5-3.2z"] }; +var faGenderless = { prefix: 'fas', iconName: 'genderless', icon: [288, 512, [], "f22d", "M144 176c44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80 35.9-80 80-80m0-64C64.5 112 0 176.5 0 256s64.5 144 144 144 144-64.5 144-144-64.5-144-144-144z"] }; +var faGift = { prefix: 'fas', iconName: 'gift', icon: [512, 512, [], "f06b", "M32 448c0 17.7 14.3 32 32 32h160V320H32v128zm448-288h-42.1c6.2-12.1 10.1-25.5 10.1-40 0-48.5-39.5-88-88-88-41.6 0-68.5 21.3-103 68.3-34.5-47-61.4-68.3-103-68.3-48.5 0-88 39.5-88 88 0 14.5 3.8 27.9 10.1 40H32c-17.7 0-32 14.3-32 32v80c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-80c0-17.7-14.3-32-32-32zm-326.1 0c-22.1 0-40-17.9-40-40s17.9-40 40-40c19.9 0 34.6 3.3 86.1 80h-86.1zm206.1 0h-86.1c51.4-76.5 65.7-80 86.1-80 22.1 0 40 17.9 40 40s-17.9 40-40 40zm-72 320h160c17.7 0 32-14.3 32-32V320H288v160z"] }; +var faGlassMartini = { prefix: 'fas', iconName: 'glass-martini', icon: [512, 512, [], "f000", "M507.3 27.3c10-10 2.9-27.3-11.3-27.3H16C1.8 0-5.4 17.2 4.7 27.3L216 238.6V472h-92c-15.5 0-28 12.5-28 28 0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12 0-15.5-12.5-28-28-28h-92V238.6L507.3 27.3z"] }; +var faGlasses = { prefix: 'fas', iconName: 'glasses', icon: [576, 512, [], "f530", "M574.1 280.37L528.75 98.66c-5.91-23.7-21.59-44.05-43-55.81-21.44-11.73-46.97-14.11-70.19-6.33l-15.25 5.08c-8.39 2.79-12.92 11.86-10.12 20.24l5.06 15.18c2.79 8.38 11.85 12.91 20.23 10.12l13.18-4.39c10.87-3.62 23-3.57 33.16 1.73 10.29 5.37 17.57 14.56 20.37 25.82l38.46 153.82c-22.19-6.81-49.79-12.46-81.2-12.46-34.77 0-73.98 7.02-114.85 26.74h-73.18c-40.87-19.74-80.08-26.75-114.86-26.75-31.42 0-59.02 5.65-81.21 12.46l38.46-153.83c2.79-11.25 10.09-20.45 20.38-25.81 10.16-5.3 22.28-5.35 33.15-1.73l13.17 4.39c8.38 2.79 17.44-1.74 20.23-10.12l5.06-15.18c2.8-8.38-1.73-17.45-10.12-20.24l-15.25-5.08c-23.22-7.78-48.75-5.41-70.19 6.33-21.41 11.77-37.09 32.11-43 55.8L1.9 280.37A64.218 64.218 0 0 0 0 295.86v70.25C0 429.01 51.58 480 115.2 480h37.12c60.28 0 110.37-45.94 114.88-105.37l2.93-38.63h35.75l2.93 38.63C313.31 434.06 363.4 480 423.68 480h37.12c63.62 0 115.2-50.99 115.2-113.88v-70.25c0-5.23-.64-10.43-1.9-15.5zm-370.72 89.42c-1.97 25.91-24.4 46.21-51.06 46.21H115.2C86.97 416 64 393.62 64 366.11v-37.54c18.12-6.49 43.42-12.92 72.58-12.92 23.86 0 47.26 4.33 69.93 12.92l-3.13 41.22zM512 366.12c0 27.51-22.97 49.88-51.2 49.88h-37.12c-26.67 0-49.1-20.3-51.06-46.21l-3.13-41.22c22.67-8.59 46.08-12.92 69.95-12.92 29.12 0 54.43 6.44 72.55 12.93v37.54z"] }; +var faGlobe = { prefix: 'fas', iconName: 'globe', icon: [496, 512, [], "f0ac", "M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z"] }; +var faGolfBall = { prefix: 'fas', iconName: 'golf-ball', icon: [416, 512, [], "f450", "M96 416h224c0 17.7-14.3 32-32 32h-16c-17.7 0-32 14.3-32 32v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-20c0-17.7-14.3-32-32-32h-16c-17.7 0-32-14.3-32-32zm320-208c0 74.2-39 139.2-97.5 176h-221C39 347.2 0 282.2 0 208 0 93.1 93.1 0 208 0s208 93.1 208 208zm-180.1 43.9c18.3 0 33.1-14.8 33.1-33.1 0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1zm49.1 46.9c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1zm64-64c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1z"] }; +var faGraduationCap = { prefix: 'fas', iconName: 'graduation-cap', icon: [640, 512, [], "f19d", "M622.884 199.005l-275.817 85.1a96 96 0 0 1-54.134 0L92.398 222.232c-8.564 11.438-11.018 23.05-11.918 38.335C89.778 266.165 96 276.355 96 288c0 11.952-6.557 22.366-16.265 27.861l16.197 123.096c.63 4.786-3.1 9.043-7.932 9.043H40c-4.828 0-8.562-4.253-7.932-9.044L48.265 315.86C38.557 310.366 32 299.952 32 288c0-12.034 6.646-22.511 16.465-27.976.947-17.951 3.974-33.231 12.152-47.597l-43.502-13.422c-22.876-6.801-22.766-39.241 0-46.01l275.817-85.1a96 96 0 0 1 54.134 0l275.817 85.1c22.877 6.801 22.767 39.241.001 46.01zM356.503 314.682l-.207.064-.207.061a127.998 127.998 0 0 1-72.177 0l-.207-.061-.207-.064-150.914-46.57L120 352c0 35.346 89.543 64 200 64s200-28.654 200-64l-12.583-83.888-150.914 46.57z"] }; +var faGreaterThan = { prefix: 'fas', iconName: 'greater-than', icon: [384, 512, [], "f531", "M365.52 209.85L59.22 67.01c-16.06-7.49-35.15-.54-42.64 15.52L3.01 111.61c-7.49 16.06-.54 35.15 15.52 42.64L236.96 256.1 18.49 357.99C2.47 365.46-4.46 384.5 3.01 400.52l13.52 29C24 445.54 43.04 452.47 59.06 445l306.47-142.91a32.003 32.003 0 0 0 18.48-29v-34.23c-.01-12.45-7.21-23.76-18.49-29.01z"] }; +var faGreaterThanEqual = { prefix: 'fas', iconName: 'greater-than-equal', icon: [448, 512, [], "f532", "M55.22 107.69l175.56 68.09-175.44 68.05c-18.39 6.03-27.88 24.39-21.2 41l12.09 30.08c6.68 16.61 26.99 25.19 45.38 19.15L393.02 214.2c13.77-4.52 22.98-16.61 22.98-30.17v-15.96c0-13.56-9.21-25.65-22.98-30.17L91.3 17.92c-18.29-6-38.51 2.53-45.15 19.06L34.12 66.9c-6.64 16.53 2.81 34.79 21.1 40.79zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"] }; +var faHSquare = { prefix: 'fas', iconName: 'h-square', icon: [448, 512, [], "f0fd", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-112 48h-32c-8.837 0-16 7.163-16 16v80H160v-80c0-8.837-7.163-16-16-16h-32c-8.837 0-16 7.163-16 16v224c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16v-80h128v80c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144c0-8.837-7.163-16-16-16z"] }; +var faHandHolding = { prefix: 'fas', iconName: 'hand-holding', icon: [576, 512, [], "f4bd", "M565.3 328.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z"] }; +var faHandHoldingHeart = { prefix: 'fas', iconName: 'hand-holding-heart', icon: [576, 512, [], "f4be", "M275.3 250.5c7 7.4 18.4 7.4 25.5 0l108.9-114.2c31.6-33.2 29.8-88.2-5.6-118.8-30.8-26.7-76.7-21.9-104.9 7.7L288 36.9l-11.1-11.6C248.7-4.4 202.8-9.2 172 17.5c-35.3 30.6-37.2 85.6-5.6 118.8l108.9 114.2zm290 77.6c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z"] }; +var faHandHoldingUsd = { prefix: 'fas', iconName: 'hand-holding-usd', icon: [544, 512, [], "f4c0", "M257.6 144.3l50 14.3c3.6 1 6.1 4.4 6.1 8.1 0 4.6-3.8 8.4-8.4 8.4h-32.8c-3.6 0-7.1-.8-10.3-2.2-4.8-2.2-10.4-1.7-14.1 2l-17.5 17.5c-5.3 5.3-4.7 14.3 1.5 18.4 9.5 6.3 20.3 10.1 31.8 11.5V240c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16v-17.6c30.3-3.6 53.3-31 49.3-63-2.9-23-20.7-41.3-42.9-47.7l-50-14.3c-3.6-1-6.1-4.4-6.1-8.1 0-4.6 3.8-8.4 8.4-8.4h32.8c3.6 0 7.1.8 10.3 2.2 4.8 2.2 10.4 1.7 14.1-2l17.5-17.5c5.3-5.3 4.7-14.3-1.5-18.4-9.5-6.3-20.3-10.1-31.8-11.5V16c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16v17.6c-30.3 3.6-53.3 31-49.3 63 2.9 23 20.7 41.3 42.9 47.7zm276.3 183.8c-11.2-10.7-28.5-10-40.3 0L406.4 402c-10.7 9.1-24 14-37.8 14H256.9c-8.3 0-15.1-7.2-15.1-16s6.8-16 15.1-16h73.9c15.1 0 29-10.9 31.4-26.6 3.1-20-11.5-37.4-29.8-37.4H181.3c-25.5 0-50.2 9.3-69.9 26.3L67.5 384H15.1C6.8 384 0 391.2 0 400v96c0 8.8 6.8 16 15.1 16H352c13.7 0 27-4.9 37.8-14l142.8-121c14.4-12.1 15.5-35.3 1.3-48.9z"] }; +var faHandLizard = { prefix: 'fas', iconName: 'hand-lizard', icon: [576, 512, [], "f258", "M384 480h192V363.778a95.998 95.998 0 0 0-14.833-51.263L398.127 54.368A48 48 0 0 0 357.544 32H24C10.745 32 0 42.745 0 56v16c0 30.928 25.072 56 56 56h229.981c12.844 0 21.556 13.067 16.615 24.923l-21.41 51.385A32 32 0 0 1 251.648 224H128c-35.346 0-64 28.654-64 64v8c0 13.255 10.745 24 24 24h147.406a47.995 47.995 0 0 1 25.692 7.455l111.748 70.811A24.001 24.001 0 0 1 384 418.539V480z"] }; +var faHandPaper = { prefix: 'fas', iconName: 'hand-paper', icon: [448, 512, [], "f256", "M408.781 128.007C386.356 127.578 368 146.36 368 168.79V256h-8V79.79c0-22.43-18.356-41.212-40.781-40.783C297.488 39.423 280 57.169 280 79v177h-8V40.79C272 18.36 253.644-.422 231.219.007 209.488.423 192 18.169 192 40v216h-8V80.79c0-22.43-18.356-41.212-40.781-40.783C121.488 40.423 104 58.169 104 80v235.992l-31.648-43.519c-12.993-17.866-38.009-21.817-55.877-8.823-17.865 12.994-21.815 38.01-8.822 55.877l125.601 172.705A48 48 0 0 0 172.073 512h197.59c22.274 0 41.622-15.324 46.724-37.006l26.508-112.66a192.011 192.011 0 0 0 5.104-43.975V168c.001-21.831-17.487-39.577-39.218-39.993z"] }; +var faHandPeace = { prefix: 'fas', iconName: 'hand-peace', icon: [448, 512, [], "f25b", "M408 216c-22.092 0-40 17.909-40 40h-8v-32c0-22.091-17.908-40-40-40s-40 17.909-40 40v32h-8V48c0-26.51-21.49-48-48-48s-48 21.49-48 48v208h-13.572L92.688 78.449C82.994 53.774 55.134 41.63 30.461 51.324 5.787 61.017-6.356 88.877 3.337 113.551l74.765 190.342-31.09 24.872c-15.381 12.306-19.515 33.978-9.741 51.081l64 112A39.998 39.998 0 0 0 136 512h240c18.562 0 34.686-12.77 38.937-30.838l32-136A39.97 39.97 0 0 0 448 336v-80c0-22.091-17.908-40-40-40z"] }; +var faHandPointDown = { prefix: 'fas', iconName: 'hand-point-down', icon: [384, 512, [], "f0a7", "M91.826 467.2V317.966c-8.248 5.841-16.558 10.57-24.918 14.153C35.098 345.752-.014 322.222 0 288c.008-18.616 10.897-32.203 29.092-40 28.286-12.122 64.329-78.648 77.323-107.534 7.956-17.857 25.479-28.453 43.845-28.464l.001-.002h171.526c11.812 0 21.897 8.596 23.703 20.269 7.25 46.837 38.483 61.76 38.315 123.731-.007 2.724.195 13.254.195 16 0 50.654-22.122 81.574-71.263 72.6-9.297 18.597-39.486 30.738-62.315 16.45-21.177 24.645-53.896 22.639-70.944 6.299V467.2c0 24.15-20.201 44.8-43.826 44.8-23.283 0-43.826-21.35-43.826-44.8zM112 72V24c0-13.255 10.745-24 24-24h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24zm212-24c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z"] }; +var faHandPointLeft = { prefix: 'fas', iconName: 'hand-point-left', icon: [512, 512, [], "f0a5", "M44.8 155.826h149.234c-5.841-8.248-10.57-16.558-14.153-24.918C166.248 99.098 189.778 63.986 224 64c18.616.008 32.203 10.897 40 29.092 12.122 28.286 78.648 64.329 107.534 77.323 17.857 7.956 28.453 25.479 28.464 43.845l.002.001v171.526c0 11.812-8.596 21.897-20.269 23.703-46.837 7.25-61.76 38.483-123.731 38.315-2.724-.007-13.254.195-16 .195-50.654 0-81.574-22.122-72.6-71.263-18.597-9.297-30.738-39.486-16.45-62.315-24.645-21.177-22.639-53.896-6.299-70.944H44.8c-24.15 0-44.8-20.201-44.8-43.826 0-23.283 21.35-43.826 44.8-43.826zM440 176h48c13.255 0 24 10.745 24 24v192c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24zm24 212c11.046 0 20-8.954 20-20s-8.954-20-20-20-20 8.954-20 20 8.954 20 20 20z"] }; +var faHandPointRight = { prefix: 'fas', iconName: 'hand-point-right', icon: [512, 512, [], "f0a4", "M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z"] }; +var faHandPointUp = { prefix: 'fas', iconName: 'hand-point-up', icon: [384, 512, [], "f0a6", "M135.652 0c23.625 0 43.826 20.65 43.826 44.8v99.851c17.048-16.34 49.766-18.346 70.944 6.299 22.829-14.288 53.017-2.147 62.315 16.45C361.878 158.426 384 189.346 384 240c0 2.746-.203 13.276-.195 16 .168 61.971-31.065 76.894-38.315 123.731C343.683 391.404 333.599 400 321.786 400H150.261l-.001-.002c-18.366-.011-35.889-10.607-43.845-28.464C93.421 342.648 57.377 276.122 29.092 264 10.897 256.203.008 242.616 0 224c-.014-34.222 35.098-57.752 66.908-44.119 8.359 3.583 16.67 8.312 24.918 14.153V44.8c0-23.45 20.543-44.8 43.826-44.8zM136 416h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24v-48c0-13.255 10.745-24 24-24zm168 28c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z"] }; +var faHandPointer = { prefix: 'fas', iconName: 'hand-pointer', icon: [448, 512, [], "f25a", "M448 240v96c0 3.084-.356 6.159-1.063 9.162l-32 136C410.686 499.23 394.562 512 376 512H168a40.004 40.004 0 0 1-32.35-16.473l-127.997-176c-12.993-17.866-9.043-42.883 8.822-55.876 17.867-12.994 42.884-9.043 55.877 8.823L104 315.992V40c0-22.091 17.908-40 40-40s40 17.909 40 40v200h8v-40c0-22.091 17.908-40 40-40s40 17.909 40 40v40h8v-24c0-22.091 17.908-40 40-40s40 17.909 40 40v24h8c0-22.091 17.908-40 40-40s40 17.909 40 40zm-256 80h-8v96h8v-96zm88 0h-8v96h8v-96zm88 0h-8v96h8v-96z"] }; +var faHandRock = { prefix: 'fas', iconName: 'hand-rock', icon: [512, 512, [], "f255", "M512 128.79c0-26.322-20.861-48.344-47.18-48.783C437.935 79.558 416 101.217 416 128h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C333.935 47.558 312 69.217 312 96v32h-8V80.79c0-26.322-20.861-48.344-47.18-48.783C229.935 31.558 208 53.217 208 80v48h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C125.935 47.558 104 69.217 104 96v136l-8-7.111V176.79c0-26.322-20.861-48.344-47.18-48.783C21.935 127.558 0 149.217 0 176v66.445a95.998 95.998 0 0 0 32.221 71.751l111.668 99.261A47.999 47.999 0 0 1 160 449.333V456c0 13.255 10.745 24 24 24h240c13.255 0 24-10.745 24-24v-2.921a96.01 96.01 0 0 1 7.523-37.254l48.954-116.265A96.002 96.002 0 0 0 512 262.306V128.79z"] }; +var faHandScissors = { prefix: 'fas', iconName: 'hand-scissors', icon: [512, 512, [], "f257", "M216 440c0-22.092 17.909-40 40-40v-8h-32c-22.091 0-40-17.908-40-40s17.909-40 40-40h32v-8H48c-26.51 0-48-21.49-48-48s21.49-48 48-48h208v-13.572l-177.551-69.74c-24.674-9.694-36.818-37.555-27.125-62.228 9.693-24.674 37.554-36.817 62.228-27.124l190.342 74.765 24.872-31.09c12.306-15.381 33.978-19.515 51.081-9.741l112 64A40.002 40.002 0 0 1 512 168v240c0 18.562-12.77 34.686-30.838 38.937l-136 32A39.982 39.982 0 0 1 336 480h-80c-22.091 0-40-17.908-40-40z"] }; +var faHandSpock = { prefix: 'fas', iconName: 'hand-spock', icon: [512, 512, [], "f259", "M10.872 316.585c15.139-16.086 40.454-16.854 56.543-1.713L128 371.893v-79.405L88.995 120.865c-4.896-21.542 8.598-42.974 30.14-47.87 21.549-4.894 42.975 8.599 47.87 30.141L201.747 256h9.833L164.016 48.966c-4.946-21.531 8.498-42.994 30.028-47.94 21.532-4.95 42.994 8.498 47.94 30.028L293.664 256h15.105l48.425-193.702c5.357-21.432 27.075-34.462 48.507-29.104 21.432 5.358 34.463 27.075 29.104 48.507L391.231 256h11.08l30.768-129.265c5.117-21.491 26.685-34.768 48.177-29.647 21.491 5.117 34.765 26.686 29.647 48.177l-36.292 152.467A96.024 96.024 0 0 0 472 319.967v42.102a96.002 96.002 0 0 1-3.96 27.287l-26.174 88.287C435.825 498.022 417.101 512 395.846 512H179.172a48.002 48.002 0 0 1-32.898-13.046L12.585 373.128c-16.087-15.141-16.853-40.456-1.713-56.543z"] }; +var faHands = { prefix: 'fas', iconName: 'hands', icon: [640, 512, [], "f4c2", "M204.8 230.4c-10.6-14.1-30.7-17-44.8-6.4-14.1 10.6-17 30.7-6.4 44.8l38.1 50.8c4.8 6.4 4.1 15.3-1.5 20.9l-12.8 12.8c-6.7 6.7-17.6 6.2-23.6-1.1L64 244.4V96c0-17.7-14.3-32-32-32S0 78.3 0 96v218.4c0 10.9 3.7 21.5 10.5 30l104.1 134.3c5 6.5 8.4 13.9 10.4 21.7 1.8 6.9 8.1 11.6 15.3 11.6H272c8.8 0 16-7.2 16-16V384c0-27.7-9-54.6-25.6-76.8l-57.6-76.8zM608 64c-17.7 0-32 14.3-32 32v148.4l-89.8 107.8c-6 7.2-17 7.7-23.6 1.1l-12.8-12.8c-5.6-5.6-6.3-14.5-1.5-20.9l38.1-50.8c10.6-14.1 7.7-34.2-6.4-44.8-14.1-10.6-34.2-7.7-44.8 6.4l-57.6 76.8C361 329.4 352 356.3 352 384v112c0 8.8 7.2 16 16 16h131.7c7.1 0 13.5-4.7 15.3-11.6 2-7.8 5.4-15.2 10.4-21.7l104.1-134.3c6.8-8.5 10.5-19.1 10.5-30V96c0-17.7-14.3-32-32-32z"] }; +var faHandsHelping = { prefix: 'fas', iconName: 'hands-helping', icon: [640, 512, [], "f4c4", "M488 192H336v56c0 39.7-32.3 72-72 72s-72-32.3-72-72V126.4l-64.9 39C107.8 176.9 96 197.8 96 220.2v47.3l-80 46.2C.7 322.5-4.6 342.1 4.3 357.4l80 138.6c8.8 15.3 28.4 20.5 43.7 11.7L231.4 448H368c35.3 0 64-28.7 64-64h16c17.7 0 32-14.3 32-32v-64h8c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zm147.7-37.4L555.7 16C546.9.7 527.3-4.5 512 4.3L408.6 64H306.4c-12 0-23.7 3.4-33.9 9.7L239 94.6c-9.4 5.8-15 16.1-15 27.1V248c0 22.1 17.9 40 40 40s40-17.9 40-40v-88h184c30.9 0 56 25.1 56 56v28.5l80-46.2c15.3-8.9 20.5-28.4 11.7-43.7z"] }; +var faHandshake = { prefix: 'fas', iconName: 'handshake', icon: [640, 512, [], "f2b5", "M434.7 64h-85.9c-8 0-15.7 3-21.6 8.4l-98.3 90c-.1.1-.2.3-.3.4-16.6 15.6-16.3 40.5-2.1 56 12.7 13.9 39.4 17.6 56.1 2.7.1-.1.3-.1.4-.2l79.9-73.2c6.5-5.9 16.7-5.5 22.6 1 6 6.5 5.5 16.6-1 22.6l-26.1 23.9L504 313.8c2.9 2.4 5.5 5 7.9 7.7V128l-54.6-54.6c-5.9-6-14.1-9.4-22.6-9.4zM544 128.2v223.9c0 17.7 14.3 32 32 32h64V128.2h-96zm48 223.9c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM0 384h64c17.7 0 32-14.3 32-32V128.2H0V384zm48-63.9c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16c0-8.9 7.2-16 16-16zm435.9 18.6L334.6 217.5l-30 27.5c-29.7 27.1-75.2 24.5-101.7-4.4-26.9-29.4-24.8-74.9 4.4-101.7L289.1 64h-83.8c-8.5 0-16.6 3.4-22.6 9.4L128 128v223.9h18.3l90.5 81.9c27.4 22.3 67.7 18.1 90-9.3l.2-.2 17.9 15.5c15.9 13 39.4 10.5 52.3-5.4l31.4-38.6 5.4 4.4c13.7 11.1 33.9 9.1 45-4.7l9.5-11.7c11.2-13.8 9.1-33.9-4.6-45.1z"] }; +var faHashtag = { prefix: 'fas', iconName: 'hashtag', icon: [448, 512, [], "f292", "M440.667 182.109l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l14.623-81.891C377.123 38.754 371.468 32 363.997 32h-40.632a12 12 0 0 0-11.813 9.891L296.175 128H197.54l14.623-81.891C213.477 38.754 207.822 32 200.35 32h-40.632a12 12 0 0 0-11.813 9.891L132.528 128H53.432a12 12 0 0 0-11.813 9.891l-7.143 40C33.163 185.246 38.818 192 46.289 192h74.81L98.242 320H19.146a12 12 0 0 0-11.813 9.891l-7.143 40C-1.123 377.246 4.532 384 12.003 384h74.81L72.19 465.891C70.877 473.246 76.532 480 84.003 480h40.632a12 12 0 0 0 11.813-9.891L151.826 384h98.634l-14.623 81.891C234.523 473.246 240.178 480 247.65 480h40.632a12 12 0 0 0 11.813-9.891L315.472 384h79.096a12 12 0 0 0 11.813-9.891l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l22.857-128h79.096a12 12 0 0 0 11.813-9.891zM261.889 320h-98.634l22.857-128h98.634l-22.857 128z"] }; +var faHdd = { prefix: 'fas', iconName: 'hdd', icon: [576, 512, [], "f0a0", "M576 304v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48zm-48-80a79.557 79.557 0 0 1 30.777 6.165L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L17.223 230.165A79.557 79.557 0 0 1 48 224h480zm-48 96c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm-96 0c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; +var faHeading = { prefix: 'fas', iconName: 'heading', icon: [512, 512, [], "f1dc", "M496 80V48c0-8.837-7.163-16-16-16H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.621v128H154.379V96H192c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.275v320H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.621V288H357.62v128H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.275V96H480c8.837 0 16-7.163 16-16z"] }; +var faHeadphones = { prefix: 'fas', iconName: 'headphones', icon: [512, 512, [], "f025", "M256 32C114.52 32 0 146.496 0 288v48a32 32 0 0 0 17.689 28.622l14.383 7.191C34.083 431.903 83.421 480 144 480h24c13.255 0 24-10.745 24-24V280c0-13.255-10.745-24-24-24h-24c-31.342 0-59.671 12.879-80 33.627V288c0-105.869 86.131-192 192-192s192 86.131 192 192v1.627C427.671 268.879 399.342 256 368 256h-24c-13.255 0-24 10.745-24 24v176c0 13.255 10.745 24 24 24h24c60.579 0 109.917-48.098 111.928-108.187l14.382-7.191A32 32 0 0 0 512 336v-48c0-141.479-114.496-256-256-256z"] }; +var faHeart = { prefix: 'fas', iconName: 'heart', icon: [512, 512, [], "f004", "M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z"] }; +var faHeartbeat = { prefix: 'fas', iconName: 'heartbeat', icon: [512, 512, [], "f21e", "M320.2 243.8l-49.7 99.4c-6 12.1-23.4 11.7-28.9-.6l-56.9-126.3-30 71.7H60.6l182.5 186.5c7.1 7.3 18.6 7.3 25.7 0L451.4 288H342.3l-22.1-44.2zM473.7 73.9l-2.4-2.5c-51.5-52.6-135.8-52.6-187.4 0L256 100l-27.9-28.5c-51.5-52.7-135.9-52.7-187.4 0l-2.4 2.4C-10.4 123.7-12.5 203 31 256h102.4l35.9-86.2c5.4-12.9 23.6-13.2 29.4-.4l58.2 129.3 49-97.9c5.9-11.8 22.7-11.8 28.6 0l27.6 55.2H481c43.5-53 41.4-132.3-7.3-182.1z"] }; +var faHelicopter = { prefix: 'fas', iconName: 'helicopter', icon: [640, 512, [], "f533", "M304 384h272c17.67 0 32-14.33 32-32 0-123.71-100.29-224-224-224V64h176c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H144c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h176v64H112L68.8 70.4C65.78 66.37 61.03 64 56 64H16.01C5.6 64-2.04 73.78.49 83.88L32 192l160 64 86.4 115.2A31.992 31.992 0 0 0 304 384zm112-188.49C478.55 208.3 528.03 257.44 540.79 320H416V195.51zm219.37 263.3l-22.15-22.2c-6.25-6.26-16.24-6.1-22.64.01-7.09 6.77-13.84 11.25-24.64 11.25H240c-8.84 0-16 7.18-16 16.03v32.06c0 8.85 7.16 16.03 16 16.03h325.94c14.88 0 35.3-.47 68.45-29.52 7.02-6.14 7.57-17.05.98-23.66z"] }; +var faHistory = { prefix: 'fas', iconName: 'history', icon: [512, 512, [], "f1da", "M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z"] }; +var faHockeyPuck = { prefix: 'fas', iconName: 'hockey-puck', icon: [512, 512, [], "f453", "M0 160c0-53 114.6-96 256-96s256 43 256 96-114.6 96-256 96S0 213 0 160zm0 82.2V352c0 53 114.6 96 256 96s256-43 256-96V242.2c-113.4 82.3-398.5 82.4-512 0z"] }; +var faHome = { prefix: 'fas', iconName: 'home', icon: [576, 512, [], "f015", "M488 312.7V456c0 13.3-10.7 24-24 24H348c-6.6 0-12-5.4-12-12V356c0-6.6-5.4-12-12-12h-72c-6.6 0-12 5.4-12 12v112c0 6.6-5.4 12-12 12H112c-13.3 0-24-10.7-24-24V312.7c0-3.6 1.6-7 4.4-9.3l188-154.8c4.4-3.6 10.8-3.6 15.3 0l188 154.8c2.7 2.3 4.3 5.7 4.3 9.3zm83.6-60.9L488 182.9V44.4c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12V117l-89.5-73.7c-17.7-14.6-43.3-14.6-61 0L4.4 251.8c-5.1 4.2-5.8 11.8-1.6 16.9l25.5 31c4.2 5.1 11.8 5.8 16.9 1.6l235.2-193.7c4.4-3.6 10.8-3.6 15.3 0l235.2 193.7c5.1 4.2 12.7 3.5 16.9-1.6l25.5-31c4.2-5.2 3.4-12.7-1.7-16.9z"] }; +var faHospital = { prefix: 'fas', iconName: 'hospital', icon: [448, 512, [], "f0f8", "M448 492v20H0v-20c0-6.627 5.373-12 12-12h20V120c0-13.255 10.745-24 24-24h88V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v72h88c13.255 0 24 10.745 24 24v360h20c6.627 0 12 5.373 12 12zM308 192h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-168 64h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm104 128h-40c-6.627 0-12 5.373-12 12v84h64v-84c0-6.627-5.373-12-12-12zm64-96h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-116 12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zM182 96h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6z"] }; +var faHospitalAlt = { prefix: 'fas', iconName: 'hospital-alt', icon: [576, 512, [], "f47d", "M544 96H416V32c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32v368c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16V128c0-17.7-14.3-32-32-32zM160 436c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm160 128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm16-170c0 3.3-2.7 6-6 6h-26v26c0 3.3-2.7 6-6 6h-20c-3.3 0-6-2.7-6-6v-26h-26c-3.3 0-6-2.7-6-6v-20c0-3.3 2.7-6 6-6h26V86c0-3.3 2.7-6 6-6h20c3.3 0 6 2.7 6 6v26h26c3.3 0 6 2.7 6 6v20zm144 298c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z"] }; +var faHospitalSymbol = { prefix: 'fas', iconName: 'hospital-symbol', icon: [512, 512, [], "f47e", "M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm112 376c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-88h-96v88c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V136c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v88h96v-88c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v240z"] }; +var faHourglass = { prefix: 'fas', iconName: 'hourglass', icon: [384, 512, [], "f254", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64z"] }; +var faHourglassEnd = { prefix: 'fas', iconName: 'hourglass-end', icon: [384, 512, [], "f253", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64zM192 208c-57.787 0-104-66.518-104-144h208c0 77.945-46.51 144-104 144z"] }; +var faHourglassHalf = { prefix: 'fas', iconName: 'hourglass-half', icon: [384, 512, [], "f252", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-75.078 384H99.08c17.059-46.797 52.096-80 92.92-80 40.821 0 75.862 33.196 92.922 80zm.019-256H99.078C91.988 108.548 88 86.748 88 64h208c0 22.805-3.987 44.587-11.059 64z"] }; +var faHourglassStart = { prefix: 'fas', iconName: 'hourglass-start', icon: [384, 512, [], "f251", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-64 448H88c0-77.458 46.204-144 104-144 57.786 0 104 66.517 104 144z"] }; +var faICursor = { prefix: 'fas', iconName: 'i-cursor', icon: [256, 512, [], "f246", "M256 52.048V12.065C256 5.496 250.726.148 244.158.066 211.621-.344 166.469.011 128 37.959 90.266.736 46.979-.114 11.913.114 5.318.157 0 5.519 0 12.114v39.645c0 6.687 5.458 12.078 12.145 11.998C38.111 63.447 96 67.243 96 112.182V224H60c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h36v112c0 44.932-56.075 48.031-83.95 47.959C5.404 447.942 0 453.306 0 459.952v39.983c0 6.569 5.274 11.917 11.842 11.999 32.537.409 77.689.054 116.158-37.894 37.734 37.223 81.021 38.073 116.087 37.845 6.595-.043 11.913-5.405 11.913-12V460.24c0-6.687-5.458-12.078-12.145-11.998C217.889 448.553 160 444.939 160 400V288h36c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-36V112.182c0-44.932 56.075-48.213 83.95-48.142 6.646.018 12.05-5.346 12.05-11.992z"] }; +var faIdBadge = { prefix: 'fas', iconName: 'id-badge', icon: [384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM144 32h96c8.8 0 16 7.2 16 16s-7.2 16-16 16h-96c-8.8 0-16-7.2-16-16s7.2-16 16-16zm48 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 416 80 407.4 80 396.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"] }; +var faIdCard = { prefix: 'fas', iconName: 'id-card', icon: [576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v16h576V80c0-26.5-21.5-48-48-48zM0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V128H0v304zm352-232c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zM176 192c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zM67.1 396.2C75.5 370.5 99.6 352 128 352h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.9-5.2 19.8-15.6 19.8H82.7c-10.4 0-18.8-10-15.6-19.8z"] }; +var faIdCardAlt = { prefix: 'fas', iconName: 'id-card-alt', icon: [576, 512, [], "f47f", "M528 64H384v96H192V64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM288 224c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm93.3 224H194.7c-10.4 0-18.8-10-15.6-19.8 8.3-25.6 32.4-44.2 60.9-44.2h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.8-5.2 19.8-15.6 19.8zM352 32c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v96h128V32z"] }; +var faImage = { prefix: 'fas', iconName: 'image', icon: [512, 512, [], "f03e", "M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z"] }; +var faImages = { prefix: 'fas', iconName: 'images', icon: [576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v208c0 44.112 35.888 80 80 80h336zm96-80V80c0-26.51-21.49-48-48-48H144c-26.51 0-48 21.49-48 48v256c0 26.51 21.49 48 48 48h384c26.51 0 48-21.49 48-48zM256 128c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-96 144l55.515-55.515c4.686-4.686 12.284-4.686 16.971 0L272 256l135.515-135.515c4.686-4.686 12.284-4.686 16.971 0L512 208v112H160v-48z"] }; +var faInbox = { prefix: 'fas', iconName: 'inbox', icon: [576, 512, [], "f01c", "M567.938 243.908L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L8.062 243.908A47.994 47.994 0 0 0 0 270.533V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V270.533a47.994 47.994 0 0 0-8.062-26.625zM162.252 128h251.497l85.333 128H376l-32 64H232l-32-64H76.918l85.334-128z"] }; +var faIndent = { prefix: 'fas', iconName: 'indent', icon: [448, 512, [], "f03c", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm176 144h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm-52.687-111.313l-96-95.984C17.266 138.652 0 145.776 0 160.016v191.975c0 14.329 17.325 21.304 27.313 11.313l96-95.992c6.249-6.247 6.249-16.377 0-22.625z"] }; +var faIndustry = { prefix: 'fas', iconName: 'industry', icon: [512, 512, [], "f275", "M475.115 163.781L336 252.309v-68.28c0-18.916-20.931-30.399-36.885-20.248L160 252.309V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h464c13.255 0 24-10.745 24-24V184.029c0-18.917-20.931-30.399-36.885-20.248z"] }; +var faInfinity = { prefix: 'fas', iconName: 'infinity', icon: [640, 512, [], "f534", "M471.1 96C405 96 353.3 137.3 320 174.6 286.7 137.3 235 96 168.9 96 75.8 96 0 167.8 0 256s75.8 160 168.9 160c66.1 0 117.8-41.3 151.1-78.6 33.3 37.3 85 78.6 151.1 78.6 93.1 0 168.9-71.8 168.9-160S564.2 96 471.1 96zM168.9 320c-40.2 0-72.9-28.7-72.9-64s32.7-64 72.9-64c38.2 0 73.4 36.1 94 64-20.4 27.6-55.9 64-94 64zm302.2 0c-38.2 0-73.4-36.1-94-64 20.4-27.6 55.9-64 94-64 40.2 0 72.9 28.7 72.9 64s-32.7 64-72.9 64z"] }; +var faInfo = { prefix: 'fas', iconName: 'info', icon: [192, 512, [], "f129", "M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z"] }; +var faInfoCircle = { prefix: 'fas', iconName: 'info-circle', icon: [512, 512, [], "f05a", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z"] }; +var faItalic = { prefix: 'fas', iconName: 'italic', icon: [320, 512, [], "f033", "M204.758 416h-33.849l62.092-320h40.725a16 16 0 0 0 15.704-12.937l6.242-32C297.599 41.184 290.034 32 279.968 32H120.235a16 16 0 0 0-15.704 12.937l-6.242 32C96.362 86.816 103.927 96 113.993 96h33.846l-62.09 320H46.278a16 16 0 0 0-15.704 12.935l-6.245 32C22.402 470.815 29.967 480 40.034 480h158.479a16 16 0 0 0 15.704-12.935l6.245-32c1.927-9.88-5.638-19.065-15.704-19.065z"] }; +var faKey = { prefix: 'fas', iconName: 'key', icon: [512, 512, [], "f084", "M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z"] }; +var faKeyboard = { prefix: 'fas', iconName: 'keyboard', icon: [576, 512, [], "f11c", "M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"] }; +var faKiwiBird = { prefix: 'fas', iconName: 'kiwi-bird', icon: [576, 512, [], "f535", "M575.81 217.98C572.64 157.41 518.28 112 457.63 112h-9.37c-52.82 0-104.25-16.25-147.74-46.24-41.99-28.96-96.04-41.62-153.21-28.7C129.3 41.12-.08 78.24 0 224c.04 70.95 38.68 132.8 95.99 166.01V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-54.26c15.36 3.96 31.4 6.26 48 6.26 5.44 0 10.68-.73 16-1.18V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-59.43c14.24-5.06 27.88-11.39 40.34-19.51C342.07 355.25 393.86 336 448.46 336c25.48 0 16.01-.31 23.05-.78l74.41 136.44c2.86 5.23 8.3 8.34 14.05 8.34 1.31 0 2.64-.16 3.95-.5 7.09-1.8 12.05-8.19 12.05-15.5 0 0 .14-240.24-.16-246.02zM463.97 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm80 153.25l-39.86-73.08c15.12-5.83 28.73-14.6 39.86-25.98v99.06z"] }; +var faLanguage = { prefix: 'fas', iconName: 'language', icon: [640, 512, [], "f1ab", "M304 416H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h280v320zm-120.676-72.622A12 12 0 0 0 194.839 352h22.863c8.22 0 14.007-8.078 11.362-15.861L171.61 167.085a12 12 0 0 0-11.362-8.139h-32.489a12.001 12.001 0 0 0-11.362 8.139L58.942 336.139C56.297 343.922 62.084 352 70.304 352h22.805a12 12 0 0 0 11.535-8.693l9.118-31.807h60.211l9.351 31.878zm-39.051-140.42s4.32 21.061 7.83 33.21l10.8 37.531h-38.07l11.07-37.531c3.51-12.15 7.83-33.21 7.83-33.21h.54zM616 416H336V96h280c13.255 0 24 10.745 24 24v272c0 13.255-10.745 24-24 24zm-36-228h-64v-16c0-6.627-5.373-12-12-12h-16c-6.627 0-12 5.373-12 12v16h-64c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h114.106c-6.263 14.299-16.518 28.972-30.023 43.206-6.56-6.898-12.397-13.91-17.365-20.933-3.639-5.144-10.585-6.675-15.995-3.446l-7.28 4.346-6.498 3.879c-5.956 3.556-7.693 11.421-3.735 17.117 6.065 8.729 13.098 17.336 20.984 25.726-8.122 6.226-16.841 12.244-26.103 17.964-5.521 3.41-7.381 10.556-4.162 16.19l7.941 13.896c3.362 5.883 10.935 7.826 16.706 4.276 12.732-7.831 24.571-16.175 35.443-24.891 10.917 8.761 22.766 17.102 35.396 24.881 5.774 3.556 13.353 1.618 16.717-4.27l7.944-13.903c3.213-5.623 1.37-12.76-4.135-16.171a312.737 312.737 0 0 1-26.06-18.019c21.024-22.425 35.768-46.289 42.713-69.85H580c6.627 0 12-5.373 12-12v-16c0-6.625-5.373-11.998-12-11.998z"] }; +var faLaptop = { prefix: 'fas', iconName: 'laptop', icon: [640, 512, [], "f109", "M512 64v256H128V64h384m16-64H112C85.5 0 64 21.5 64 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm100 416H389.5c-3 0-5.5 2.1-5.9 5.1C381.2 436.3 368 448 352 448h-64c-16 0-29.2-11.7-31.6-26.9-.5-2.9-3-5.1-5.9-5.1H12c-6.6 0-12 5.4-12 12v36c0 26.5 21.5 48 48 48h544c26.5 0 48-21.5 48-48v-36c0-6.6-5.4-12-12-12z"] }; +var faLeaf = { prefix: 'fas', iconName: 'leaf', icon: [576, 512, [], "f06c", "M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z"] }; +var faLemon = { prefix: 'fas', iconName: 'lemon', icon: [512, 512, [], "f094", "M489.038 22.963C465.944-.13 434.648-5.93 413.947 6.129c-58.906 34.312-181.25-53.077-321.073 86.746S40.441 355.041 6.129 413.945c-12.059 20.702-6.26 51.999 16.833 75.093 23.095 23.095 54.392 28.891 75.095 16.832 58.901-34.31 181.246 53.079 321.068-86.743S471.56 156.96 505.871 98.056c12.059-20.702 6.261-51.999-16.833-75.093zM243.881 95.522c-58.189 14.547-133.808 90.155-148.358 148.358-1.817 7.27-8.342 12.124-15.511 12.124-1.284 0-2.59-.156-3.893-.481-8.572-2.144-13.784-10.83-11.642-19.403C81.901 166.427 166.316 81.93 236.119 64.478c8.575-2.143 17.261 3.069 19.403 11.642s-3.069 17.259-11.641 19.402z"] }; +var faLessThan = { prefix: 'fas', iconName: 'less-than', icon: [384, 512, [], "f536", "M365.46 357.74L147.04 255.89l218.47-101.88c16.02-7.47 22.95-26.51 15.48-42.53l-13.52-29C360 66.46 340.96 59.53 324.94 67L18.48 209.91a32.014 32.014 0 0 0-18.48 29v34.24c0 12.44 7.21 23.75 18.48 29l306.31 142.83c16.06 7.49 35.15.54 42.64-15.52l13.56-29.08c7.49-16.06.54-35.15-15.53-42.64z"] }; +var faLessThanEqual = { prefix: 'fas', iconName: 'less-than-equal', icon: [448, 512, [], "f537", "M54.98 214.2l301.41 119.87c18.39 6.03 38.71-2.54 45.38-19.15l12.09-30.08c6.68-16.61-2.82-34.97-21.21-41l-175.44-68.05 175.56-68.09c18.29-6 27.74-24.27 21.1-40.79l-12.03-29.92c-6.64-16.53-26.86-25.06-45.15-19.06L54.98 137.89C41.21 142.41 32 154.5 32 168.07v15.96c0 13.56 9.21 25.65 22.98 30.17zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"] }; +var faLevelDownAlt = { prefix: 'fas', iconName: 'level-down-alt', icon: [320, 512, [], "f3be", "M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z"] }; +var faLevelUpAlt = { prefix: 'fas', iconName: 'level-up-alt', icon: [320, 512, [], "f3bf", "M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z"] }; +var faLifeRing = { prefix: 'fas', iconName: 'life-ring', icon: [512, 512, [], "f1cd", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm173.696 119.559l-63.399 63.399c-10.987-18.559-26.67-34.252-45.255-45.255l63.399-63.399a218.396 218.396 0 0 1 45.255 45.255zM256 352c-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96-42.981 96-96 96zM127.559 82.304l63.399 63.399c-18.559 10.987-34.252 26.67-45.255 45.255l-63.399-63.399a218.372 218.372 0 0 1 45.255-45.255zM82.304 384.441l63.399-63.399c10.987 18.559 26.67 34.252 45.255 45.255l-63.399 63.399a218.396 218.396 0 0 1-45.255-45.255zm302.137 45.255l-63.399-63.399c18.559-10.987 34.252-26.67 45.255-45.255l63.399 63.399a218.403 218.403 0 0 1-45.255 45.255z"] }; +var faLightbulb = { prefix: 'fas', iconName: 'lightbulb', icon: [384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zm-143.107-44c-9.907 0-18.826-6.078-22.376-15.327C67.697 267.541 16 277.731 16 176 16 78.803 94.805 0 192 0s176 78.803 176 176c0 101.731-51.697 91.541-90.516 192.673-3.55 9.249-12.47 15.327-22.376 15.327H128.893zM112 176c0-44.112 35.888-80 80-80 8.837 0 16-7.164 16-16s-7.163-16-16-16c-61.757 0-112 50.243-112 112 0 8.836 7.164 16 16 16s16-7.164 16-16z"] }; +var faLink = { prefix: 'fas', iconName: 'link', icon: [512, 512, [], "f0c1", "M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z"] }; +var faLiraSign = { prefix: 'fas', iconName: 'lira-sign', icon: [384, 512, [], "f195", "M371.994 256h-48.019C317.64 256 312 260.912 312 267.246 312 368 230.179 416 144 416V256.781l134.603-29.912A12 12 0 0 0 288 215.155v-40.976c0-7.677-7.109-13.38-14.603-11.714L144 191.219V160.78l134.603-29.912A12 12 0 0 0 288 119.154V78.179c0-7.677-7.109-13.38-14.603-11.714L144 95.219V44c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v68.997L9.397 125.131A12 12 0 0 0 0 136.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 178.558v30.439L9.397 221.131A12 12 0 0 0 0 232.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 274.558V468c0 6.627 5.373 12 12 12h79.583c134.091 0 223.255-77.834 228.408-211.592.261-6.782-5.211-12.408-11.997-12.408z"] }; +var faList = { prefix: 'fas', iconName: 'list', icon: [512, 512, [], "f03a", "M128 116V76c0-8.837 7.163-16 16-16h352c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H144c-8.837 0-16-7.163-16-16zm16 176h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 144h64c8.837 0 16-7.163 16-16V64c0-8.837-7.163-16-16-16H16C7.163 48 0 55.163 0 64v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16z"] }; +var faListAlt = { prefix: 'fas', iconName: 'list-alt', icon: [512, 512, [], "f022", "M464 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM128 120c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288-136v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12z"] }; +var faListOl = { prefix: 'fas', iconName: 'list-ol', icon: [512, 512, [], "f0cb", "M3.263 139.527c0-7.477 3.917-11.572 11.573-11.572h15.131V88.078c0-5.163.534-10.503.534-10.503h-.356s-1.779 2.67-2.848 3.738c-4.451 4.273-10.504 4.451-15.666-1.068l-5.518-6.231c-5.342-5.341-4.984-11.216.534-16.379l21.72-19.938C32.815 33.602 36.732 32 42.785 32H54.89c7.656 0 11.749 3.916 11.749 11.572v84.384h15.488c7.655 0 11.572 4.094 11.572 11.572v8.901c0 7.477-3.917 11.572-11.572 11.572H14.836c-7.656 0-11.573-4.095-11.573-11.572v-8.902zM2.211 304.591c0-47.278 50.955-56.383 50.955-69.165 0-7.18-5.954-8.755-9.28-8.755-3.153 0-6.479 1.051-9.455 3.852-5.079 4.903-10.507 7.004-16.111 2.451l-8.579-6.829c-5.779-4.553-7.18-9.805-2.803-15.409C13.592 201.981 26.025 192 47.387 192c19.437 0 44.476 10.506 44.476 39.573 0 38.347-46.753 46.402-48.679 56.909h39.049c7.529 0 11.557 4.027 11.557 11.382v8.755c0 7.354-4.028 11.382-11.557 11.382h-67.94c-7.005 0-12.083-4.028-12.083-11.382v-4.028zM5.654 454.61l5.603-9.28c3.853-6.654 9.105-7.004 15.584-3.152 4.903 2.101 9.63 3.152 14.359 3.152 10.155 0 14.358-3.502 14.358-8.23 0-6.654-5.604-9.106-15.934-9.106h-4.728c-5.954 0-9.28-2.101-12.258-7.88l-1.05-1.926c-2.451-4.728-1.226-9.806 2.801-14.884l5.604-7.004c6.829-8.405 12.257-13.483 12.257-13.483v-.35s-4.203 1.051-12.608 1.051H16.685c-7.53 0-11.383-4.028-11.383-11.382v-8.755c0-7.53 3.853-11.382 11.383-11.382h58.484c7.529 0 11.382 4.027 11.382 11.382v3.327c0 5.778-1.401 9.806-5.079 14.183l-17.509 20.137c19.611 5.078 28.716 20.487 28.716 34.845 0 21.363-14.358 44.126-48.503 44.126-16.636 0-28.192-4.728-35.896-9.455-5.779-4.202-6.304-9.805-2.626-15.934zM144 132h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faListUl = { prefix: 'fas', iconName: 'list-ul', icon: [512, 512, [], "f0ca", "M96 96c0 26.51-21.49 48-48 48S0 122.51 0 96s21.49-48 48-48 48 21.49 48 48zM48 208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm0 160c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm96-236h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faLocationArrow = { prefix: 'fas', iconName: 'location-arrow', icon: [512, 512, [], "f124", "M443.683 4.529L27.818 196.418C-18.702 217.889-3.39 288 47.933 288H224v175.993c0 51.727 70.161 66.526 91.582 20.115L507.38 68.225c18.905-40.961-23.752-82.133-63.697-63.696z"] }; +var faLock = { prefix: 'fas', iconName: 'lock', icon: [448, 512, [], "f023", "M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z"] }; +var faLockOpen = { prefix: 'fas', iconName: 'lock-open', icon: [576, 512, [], "f3c1", "M423.5 0C339.5.3 272 69.5 272 153.5V224H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48h-48v-71.1c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v80c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-80C576 68 507.5-.3 423.5 0z"] }; +var faLongArrowAltDown = { prefix: 'fas', iconName: 'long-arrow-alt-down', icon: [256, 512, [], "f309", "M168 345.941V44c0-6.627-5.373-12-12-12h-56c-6.627 0-12 5.373-12 12v301.941H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.569 9.373 33.941 0l86.059-86.059c15.119-15.119 4.411-40.971-16.971-40.971H168z"] }; +var faLongArrowAltLeft = { prefix: 'fas', iconName: 'long-arrow-alt-left', icon: [448, 512, [], "f30a", "M134.059 296H436c6.627 0 12-5.373 12-12v-56c0-6.627-5.373-12-12-12H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.569 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296z"] }; +var faLongArrowAltRight = { prefix: 'fas', iconName: 'long-arrow-alt-right', icon: [448, 512, [], "f30b", "M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z"] }; +var faLongArrowAltUp = { prefix: 'fas', iconName: 'long-arrow-alt-up', icon: [256, 512, [], "f30c", "M88 166.059V468c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12V166.059h46.059c21.382 0 32.09-25.851 16.971-40.971l-86.059-86.059c-9.373-9.373-24.569-9.373-33.941 0l-86.059 86.059c-15.119 15.119-4.411 40.971 16.971 40.971H88z"] }; +var faLowVision = { prefix: 'fas', iconName: 'low-vision', icon: [576, 512, [], "f2a8", "M569.344 231.631C512.96 135.949 407.81 72 288 72c-28.468 0-56.102 3.619-82.451 10.409L152.778 10.24c-7.601-10.858-22.564-13.5-33.423-5.9l-13.114 9.178c-10.86 7.601-13.502 22.566-5.9 33.426l43.131 58.395C89.449 131.73 40.228 174.683 6.682 231.581c-.01.017-.023.033-.034.05-8.765 14.875-8.964 33.528 0 48.739 38.5 65.332 99.742 115.862 172.859 141.349L55.316 244.302A272.194 272.194 0 0 1 83.61 208.39l119.4 170.58h.01l40.63 58.04a330.055 330.055 0 0 0 78.94 1.17l-189.98-271.4a277.628 277.628 0 0 1 38.777-21.563l251.836 356.544c7.601 10.858 22.564 13.499 33.423 5.9l13.114-9.178c10.86-7.601 13.502-22.567 5.9-33.426l-43.12-58.377-.007-.009c57.161-27.978 104.835-72.04 136.81-126.301a47.938 47.938 0 0 0 .001-48.739zM390.026 345.94l-19.066-27.23c24.682-32.567 27.711-76.353 8.8-111.68v.03c0 23.65-19.17 42.82-42.82 42.82-23.828 0-42.82-19.349-42.82-42.82 0-23.65 19.17-42.82 42.82-42.82h.03c-24.75-13.249-53.522-15.643-79.51-7.68l-19.068-27.237C253.758 123.306 270.488 120 288 120c75.162 0 136 60.826 136 136 0 34.504-12.833 65.975-33.974 89.94z"] }; +var faMagic = { prefix: 'fas', iconName: 'magic', icon: [512, 512, [], "f0d0", "M101.1 505L7 410.9c-9.4-9.4-9.4-24.6 0-33.9L377 7c9.4-9.4 24.6-9.4 33.9 0l94.1 94.1c9.4 9.4 9.4 24.6 0 33.9L135 505c-9.3 9.3-24.5 9.3-33.9 0zM304 159.2l48.8 48.8 89.9-89.9-48.8-48.8-89.9 89.9zM138.9 39.3l-11.7 23.8-26.2 3.8c-4.7.7-6.6 6.5-3.2 9.8l19 18.5-4.5 26.1c-.8 4.7 4.1 8.3 8.3 6.1L144 115l23.4 12.3c4.2 2.2 9.1-1.4 8.3-6.1l-4.5-26.1 19-18.5c3.4-3.3 1.5-9.1-3.2-9.8L160.8 63l-11.7-23.8c-2-4.1-8.1-4.1-10.2.1zm97.7-20.7l-7.8 15.8-17.5 2.6c-3.1.5-4.4 4.3-2.1 6.5l12.6 12.3-3 17.4c-.5 3.1 2.8 5.5 5.6 4L240 69l15.6 8.2c2.8 1.5 6.1-.9 5.6-4l-3-17.4 12.6-12.3c2.3-2.2 1-6.1-2.1-6.5l-17.5-2.5-7.8-15.8c-1.4-3-5.4-3-6.8-.1zm-192 0l-7.8 15.8L19.3 37c-3.1.5-4.4 4.3-2.1 6.5l12.6 12.3-3 17.4c-.5 3.1 2.8 5.5 5.6 4L48 69l15.6 8.2c2.8 1.5 6.1-.9 5.6-4l-3-17.4 12.6-12.3c2.3-2.2 1-6.1-2.1-6.5l-17.5-2.5-7.8-15.8c-1.4-3-5.4-3-6.8-.1zm416 223.5l-7.8 15.8-17.5 2.5c-3.1.5-4.4 4.3-2.1 6.5l12.6 12.3-3 17.4c-.5 3.1 2.8 5.5 5.6 4l15.6-8.2 15.6 8.2c2.8 1.5 6.1-.9 5.6-4l-3-17.4 12.6-12.3c2.3-2.2 1-6.1-2.1-6.5l-17.5-2.5-7.8-15.8c-1.4-2.8-5.4-2.8-6.8 0z"] }; +var faMagnet = { prefix: 'fas', iconName: 'magnet', icon: [512, 512, [], "f076", "M164.1 160H12c-6.6 0-12-5.4-12-12V68c0-19.9 16.1-36 36-36h104c19.9 0 36 16.1 36 36v80c.1 6.6-5.3 12-11.9 12zm348-12V67.9c0-19.9-16.1-36-36-36h-104c-19.9 0-36 16.1-36 36v80c0 6.6 5.4 12 12 12h152c6.6.1 12-5.3 12-11.9zm-164 44c-6.6 0-12 5.4-12 12v52c0 128.1-160 127.9-160 0v-52c0-6.6-5.4-12-12-12h-152c-6.7 0-12 5.4-12 12.1.1 21.4.6 40.3 0 53.3C.1 408 136.3 504 256.9 504 377.5 504 512 408 512 257.3c-.6-12.8-.2-33 0-53.2 0-6.7-5.3-12.1-12-12.1H348.1z"] }; +var faMale = { prefix: 'fas', iconName: 'male', icon: [192, 512, [], "f183", "M96 0c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64S60.654 0 96 0m48 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H48c-26.51 0-48 21.49-48 48v136c0 13.255 10.745 24 24 24h16v136c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V352h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48z"] }; +var faMap = { prefix: 'fas', iconName: 'map', icon: [576, 512, [], "f279", "M576 56.015v335.97a23.998 23.998 0 0 1-13.267 21.466l-128 64C418.948 485.344 400 473.992 400 455.985v-335.97a23.998 23.998 0 0 1 13.267-21.466l128-64C557.052 26.656 576 38.008 576 56.015zm-206.253 42.07l-144-64c-15.751-7-33.747 4.461-33.747 21.932v335.967a24 24 0 0 0 14.253 21.931l144 64c15.751 7 33.747-4.461 33.747-21.931V120.017a24 24 0 0 0-14.253-21.932zm-228.48-63.536l-128 63.985A23.998 23.998 0 0 0 0 120v335.985c0 18.007 18.948 29.359 34.733 21.466l128-63.985A23.998 23.998 0 0 0 176 392V56.015c0-18.007-18.948-29.359-34.733-21.466z"] }; +var faMapMarker = { prefix: 'fas', iconName: 'map-marker', icon: [384, 512, [], "f041", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0z"] }; +var faMapMarkerAlt = { prefix: 'fas', iconName: 'map-marker-alt', icon: [384, 512, [], "f3c5", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"] }; +var faMapPin = { prefix: 'fas', iconName: 'map-pin', icon: [320, 512, [], "f276", "M192 300.813v172.82l-22.015 33.023c-4.75 7.125-15.219 7.125-19.969 0L128 473.633v-172.82a162.221 162.221 0 0 0 64 0zM160 0c79.529 0 144 64.471 144 144s-64.471 144-144 144S16 223.529 16 144 80.471 0 160 0M80 136c0-39.701 32.299-72 72-72a8 8 0 0 0 0-16c-48.523 0-88 39.477-88 88a8 8 0 0 0 16 0z"] }; +var faMapSigns = { prefix: 'fas', iconName: 'map-signs', icon: [512, 512, [], "f277", "M487.515 104.485L439.03 152.97a23.998 23.998 0 0 1-16.97 7.029H56c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h160v-8c0-13.255 10.745-24 24-24h32c13.255 0 24 10.745 24 24v8h126.059a24 24 0 0 1 16.97 7.029l48.485 48.485c4.687 4.687 4.687 12.285.001 16.971zM216 368v120c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V368h-80zm240-144H296v-48h-80v48H89.941a24 24 0 0 0-16.97 7.029l-48.485 48.485c-4.686 4.686-4.686 12.284 0 16.971l48.485 48.485a23.998 23.998 0 0 0 16.97 7.029H456c13.255 0 24-10.745 24-24v-80C480 234.745 469.255 224 456 224z"] }; +var faMars = { prefix: 'fas', iconName: 'mars', icon: [384, 512, [], "f222", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c0-6.6-5.4-12-12-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faMarsDouble = { prefix: 'fas', iconName: 'mars-double', icon: [512, 512, [], "f227", "M340 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C198.5 72.1 172.2 64 144 64 64.5 64 0 128.5 0 208s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.5 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 288c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80zm356-128.1h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7c-18.2-11.4-39-18.9-61.5-21.3-2.1 21.8-8.2 43.3-18.4 63.3 1.1 0 2.2-.1 3.2-.1 44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80c0-1.1 0-2.2.1-3.2-20 10.2-41.5 16.4-63.3 18.4C168.4 455.6 229.6 512 304 512c79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12v-79c0-6.7-5.4-12.1-12-12.1z"] }; +var faMarsStroke = { prefix: 'fas', iconName: 'mars-stroke', icon: [384, 512, [], "f229", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-17.5 17.5-14.1-14.1c-4.7-4.7-12.3-4.7-17 0L224.5 133c-4.7 4.7-4.7 12.3 0 17l14.1 14.1-18 18c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l18-18 14.1 14.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L329.2 164l17.5-17.5 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c-.1-6.6-5.5-12-12.1-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faMarsStrokeH = { prefix: 'fas', iconName: 'mars-stroke-h', icon: [480, 512, [], "f22b", "M476.2 247.5l-55.9-55.9c-7.6-7.6-20.5-2.2-20.5 8.5V224H376v-20c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v20h-27.6c-5.8-25.6-18.7-49.9-38.6-69.8C189.6 98 98.4 98 42.2 154.2c-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 19.9-19.9 32.8-44.2 38.6-69.8H312v20c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-20h23.9v23.9c0 10.7 12.9 16 20.5 8.5l55.9-55.9c4.6-4.7 4.6-12.3-.1-17zm-275.6 65.1c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z"] }; +var faMarsStrokeV = { prefix: 'fas', iconName: 'mars-stroke-v', icon: [288, 512, [], "f22a", "M245.8 234.2c-19.9-19.9-44.2-32.8-69.8-38.6v-25.4h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V81.4h23.9c10.7 0 16-12.9 8.5-20.5L152.5 5.1c-4.7-4.7-12.3-4.7-17 0L79.6 61c-7.6 7.6-2.2 20.5 8.5 20.5H112v24.7H92c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h20v25.4c-25.6 5.8-49.9 18.7-69.8 38.6-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 56.3-56.2 56.3-147.4 0-203.6zm-45.2 158.4c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z"] }; +var faMedkit = { prefix: 'fas', iconName: 'medkit', icon: [512, 512, [], "f0fa", "M96 480h320V128h-32V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v48H96v352zm96-384h128v32H192V96zm320 80v256c0 26.51-21.49 48-48 48h-16V128h16c26.51 0 48 21.49 48 48zM64 480H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v352zm288-208v32c0 8.837-7.163 16-16 16h-48v48c0 8.837-7.163 16-16 16h-32c-8.837 0-16-7.163-16-16v-48h-48c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h48v-48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v48h48c8.837 0 16 7.163 16 16z"] }; +var faMeh = { prefix: 'fas', iconName: 'meh', icon: [496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm176 192H152c-8.8 0-16-7.2-16-16s7.2-16 16-16h192c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-16-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faMemory = { prefix: 'fas', iconName: 'memory', icon: [640, 512, [], "f538", "M640 130.94V96c0-17.67-14.33-32-32-32H32C14.33 64 0 78.33 0 96v34.94c18.6 6.61 32 24.19 32 45.06s-13.4 38.45-32 45.06V320h640v-98.94c-18.6-6.61-32-24.19-32-45.06s13.4-38.45 32-45.06zM224 256h-64V128h64v128zm128 0h-64V128h64v128zm128 0h-64V128h64v128zM0 448h64v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h64v-96H0v96z"] }; +var faMercury = { prefix: 'fas', iconName: 'mercury', icon: [288, 512, [], "f223", "M288 208c0-44.2-19.9-83.7-51.2-110.1 2.5-1.8 4.9-3.8 7.2-5.8 24.7-21.2 39.8-48.8 43.2-78.8.9-7.1-4.7-13.3-11.9-13.3h-40.5C229 0 224.1 4.1 223 9.8c-2.4 12.5-9.6 24.3-20.7 33.8C187 56.8 166.3 64 144 64s-43-7.2-58.4-20.4C74.5 34.1 67.4 22.3 64.9 9.8 63.8 4.1 58.9 0 53.2 0H12.7C5.5 0-.1 6.2.8 13.3 4.2 43.4 19.2 71 44 92.2c2.3 2 4.7 3.9 7.2 5.8C19.9 124.3 0 163.8 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z"] }; +var faMicrochip = { prefix: 'fas', iconName: 'microchip', icon: [512, 512, [], "f2db", "M416 48v416c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h224c26.51 0 48 21.49 48 48zm96 58v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42V88h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zM30 376h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6z"] }; +var faMicrophone = { prefix: 'fas', iconName: 'microphone', icon: [352, 512, [], "f130", "M176 352c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96zm160-160h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16z"] }; +var faMicrophoneAlt = { prefix: 'fas', iconName: 'microphone-alt', icon: [352, 512, [], "f3c9", "M336 192h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16zM176 352c53.02 0 96-42.98 96-96h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96z"] }; +var faMicrophoneAltSlash = { prefix: 'fas', iconName: 'microphone-alt-slash', icon: [640, 512, [], "f539", "M633.82 458.1L476.26 336.33C488.74 312.21 496 284.98 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67h-43.67l-41.4-32H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.78c11.71-1.62 23.1-4.28 33.96-8.08l-50.4-38.96c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z"] }; +var faMicrophoneSlash = { prefix: 'fas', iconName: 'microphone-slash', icon: [640, 512, [], "f131", "M633.82 458.1l-157.8-121.96C488.61 312.13 496 285.01 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67V96c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.77c11.66-1.6 22.85-4.54 33.67-8.31l-50.11-38.73c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z"] }; +var faMinus = { prefix: 'fas', iconName: 'minus', icon: [448, 512, [], "f068", "M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; +var faMinusCircle = { prefix: 'fas', iconName: 'minus-circle', icon: [512, 512, [], "f056", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM124 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H124z"] }; +var faMinusSquare = { prefix: 'fas', iconName: 'minus-square', icon: [448, 512, [], "f146", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H92z"] }; +var faMobile = { prefix: 'fas', iconName: 'mobile', icon: [320, 512, [], "f10b", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faMobileAlt = { prefix: 'fas', iconName: 'mobile-alt', icon: [320, 512, [], "f3cd", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm112-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v312z"] }; +var faMoneyBill = { prefix: 'fas', iconName: 'money-bill', icon: [640, 512, [], "f0d6", "M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 176c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 48h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z"] }; +var faMoneyBillAlt = { prefix: 'fas', iconName: 'money-bill-alt', icon: [640, 512, [], "f3d1", "M352 288h-16v-88c0-4.42-3.58-8-8-8h-13.58c-4.74 0-9.37 1.4-13.31 4.03l-15.33 10.22a7.994 7.994 0 0 0-2.22 11.09l8.88 13.31a7.994 7.994 0 0 0 11.09 2.22l.47-.31V288h-16c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8h64c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 192c-53.02 0-96-50.15-96-112 0-61.86 42.98-112 96-112s96 50.14 96 112c0 61.87-43 112-96 112zm272 32h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z"] }; +var faMoneyBillWave = { prefix: 'fas', iconName: 'money-bill-wave', icon: [640, 512, [], "f53a", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM48 132.22c20.12 5.04 41.12 7.57 62.72 8.93C104.84 170.54 79 192.69 48 192.69v-60.47zm0 285v-47.78c34.37 0 62.18 27.27 63.71 61.4-22.53-1.81-43.59-6.31-63.71-13.62zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 27.78c-17.52-4.39-35.71-6.85-54.32-8.44 5.87-26.08 27.5-45.88 54.32-49.28v57.72zm0-236.11c-30.89-3.91-54.86-29.7-55.81-61.55 19.54 2.17 38.09 6.23 55.81 12.66v48.89z"] }; +var faMoneyBillWaveAlt = { prefix: 'fas', iconName: 'money-bill-wave-alt', icon: [640, 512, [], "f53b", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96z"] }; +var faMoneyCheck = { prefix: 'fas', iconName: 'money-check', icon: [640, 512, [], "f53c", "M0 448c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128H0v320zm448-208c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-32zm0 120c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H456c-4.42 0-8-3.58-8-8v-16zM64 264c0-4.42 3.58-8 8-8h304c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm0 96c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zM624 32H16C7.16 32 0 39.16 0 48v48h640V48c0-8.84-7.16-16-16-16z"] }; +var faMoneyCheckAlt = { prefix: 'fas', iconName: 'money-check-alt', icon: [640, 512, [], "f53d", "M608 32H32C14.33 32 0 46.33 0 64v384c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM176 327.88V344c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V152c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07zM416 312c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm160 0c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h272c4.42 0 8 3.58 8 8v16z"] }; +var faMoon = { prefix: 'fas', iconName: 'moon', icon: [512, 512, [], "f186", "M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z"] }; +var faMotorcycle = { prefix: 'fas', iconName: 'motorcycle', icon: [640, 512, [], "f21c", "M512.949 192.003c-14.862-.108-29.14 2.322-42.434 6.874L437.589 144H520c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24h-45.311a24 24 0 0 0-17.839 7.945l-37.496 41.663-22.774-37.956A24 24 0 0 0 376 64h-80c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h66.411l19.2 32H227.904c-17.727-23.073-44.924-40-99.904-40H72.54c-13.455 0-24.791 11.011-24.536 24.464C48.252 141.505 58.9 152 72 152h56c24.504 0 38.686 10.919 47.787 24.769l-11.291 20.529c-13.006-3.865-26.871-5.736-41.251-5.21C55.857 194.549 1.565 249.605.034 317.021-1.603 389.076 56.317 448 128 448c59.642 0 109.744-40.794 123.953-96h84.236c13.673 0 24.589-11.421 23.976-25.077-2.118-47.12 17.522-93.665 56.185-125.026l12.485 20.808c-27.646 23.654-45.097 58.88-44.831 98.179.47 69.556 57.203 126.452 126.758 127.11 71.629.678 129.839-57.487 129.234-129.099-.588-69.591-57.455-126.386-127.047-126.892zM128 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c4.242 0 8.405.341 12.469.982L98.97 316.434C90.187 332.407 101.762 352 120 352h81.297c-12.37 28.225-40.56 48-73.297 48zm388.351-.116C470.272 402.337 432 365.554 432 320c0-21.363 8.434-40.781 22.125-55.144l49.412 82.352c4.546 7.577 14.375 10.034 21.952 5.488l13.72-8.232c7.577-4.546 10.034-14.375 5.488-21.952l-48.556-80.927A80.005 80.005 0 0 1 512 240c45.554 0 82.338 38.273 79.884 84.352-2.16 40.558-34.974 73.372-75.533 75.532z"] }; +var faMousePointer = { prefix: 'fas', iconName: 'mouse-pointer', icon: [320, 512, [], "f245", "M302.189 329.126H196.105l55.831 135.993c3.889 9.428-.555 19.999-9.444 23.999l-49.165 21.427c-9.165 4-19.443-.571-23.332-9.714l-53.053-129.136-86.664 89.138C18.729 472.71 0 463.554 0 447.977V18.299C0 1.899 19.921-6.096 30.277 5.443l284.412 292.542c11.472 11.179 3.007 31.141-12.5 31.141z"] }; +var faMusic = { prefix: 'fas', iconName: 'music', icon: [512, 512, [], "f001", "M470.4 1.5l-304 96C153.1 101.7 144 114 144 128v264.6c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V220.5l272-85.9v194c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V32c0-21.7-21.1-37-41.6-30.5z"] }; +var faNeuter = { prefix: 'fas', iconName: 'neuter', icon: [288, 512, [], "f22c", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V468c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V316.4c64.1-14.5 112-71.9 112-140.4zm-144 80c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faNewspaper = { prefix: 'fas', iconName: 'newspaper', icon: [576, 512, [], "f1ea", "M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z"] }; +var faNotEqual = { prefix: 'fas', iconName: 'not-equal', icon: [448, 512, [], "f53e", "M416 208c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32h-23.88l51.87-66.81c5.37-7.02 4.04-17.06-2.97-22.43L415.61 3.3c-7.02-5.38-17.06-4.04-22.44 2.97L311.09 112H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h204.56l-74.53 96H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h55.49l-51.87 66.81c-5.37 7.01-4.04 17.05 2.97 22.43L64 508.7c7.02 5.38 17.06 4.04 22.43-2.97L168.52 400H416c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32H243.05l74.53-96H416z"] }; +var faNotesMedical = { prefix: 'fas', iconName: 'notes-medical', icon: [384, 512, [], "f481", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm96 304c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm0-192c0 4.4-3.6 8-8 8H104c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16z"] }; +var faObjectGroup = { prefix: 'fas', iconName: 'object-group', icon: [512, 512, [], "f247", "M480 128V96h20c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v20H64V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v40c0 6.627 5.373 12 12 12h20v320H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-20h384v20c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-20V128zM96 276V140c0-6.627 5.373-12 12-12h168c6.627 0 12 5.373 12 12v136c0 6.627-5.373 12-12 12H108c-6.627 0-12-5.373-12-12zm320 96c0 6.627-5.373 12-12 12H236c-6.627 0-12-5.373-12-12v-52h72c13.255 0 24-10.745 24-24v-72h84c6.627 0 12 5.373 12 12v136z"] }; +var faObjectUngroup = { prefix: 'fas', iconName: 'object-ungroup', icon: [576, 512, [], "f248", "M64 320v26a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6v-52a6 6 0 0 1 6-6h26V96H6a6 6 0 0 1-6-6V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v26h288V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-26v192h26a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-52a6 6 0 0 1-6-6v-26H64zm480-64v-32h26a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-52a6 6 0 0 0-6 6v26H408v72h8c13.255 0 24 10.745 24 24v64c0 13.255-10.745 24-24 24h-64c-13.255 0-24-10.745-24-24v-8H192v72h-26a6 6 0 0 0-6 6v52a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-26h288v26a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-26V256z"] }; +var faOutdent = { prefix: 'fas', iconName: 'outdent', icon: [448, 512, [], "f03b", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm208 144h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm192-128h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM4.687 267.313l96 95.984C110.734 373.348 128 366.224 128 351.984V160.008c0-14.329-17.325-21.304-27.313-11.313l-96 95.992c-6.249 6.248-6.249 16.378 0 22.626z"] }; +var faPaintBrush = { prefix: 'fas', iconName: 'paint-brush', icon: [512, 512, [], "f1fc", "M269.9 364.6c1.4 6.4 2.1 13 2.1 19.7 0 81.2-54.2 127.7-134.8 127.7C41.5 512 0 435.1 0 347.6c10.4 7.1 46.9 36.5 58.7 36.5 7 0 13-4 15.5-10.6 23.6-62.2 66.5-76.5 112.9-77.4 15.6 33.8 46.1 59.6 82.8 68.5zM460.6 0c-14.4 0-27.9 6.4-38.2 15.7C228.2 190 208 194.1 208 245.4c0 48.8 40.5 90.6 90.2 90.6 59 0 93.2-43.4 200.6-244.8 7-13.7 13.2-28.5 13.2-43.9C512 19.7 487.3 0 460.6 0z"] }; +var faPalette = { prefix: 'fas', iconName: 'palette', icon: [512, 512, [], "f53f", "M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faPallet = { prefix: 'fas', iconName: 'pallet', icon: [640, 512, [], "f482", "M144 256h352c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H384v128l-64-32-64 32V0H144c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16zm480 128c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v64H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-64h48zm-336 64H128v-64h160v64zm224 0H352v-64h160v64z"] }; +var faPaperPlane = { prefix: 'fas', iconName: 'paper-plane', icon: [512, 512, [], "f1d8", "M476 3.2L12.5 270.6c-18.1 10.4-15.8 35.6 2.2 43.2L121 358.4l287.3-253.2c5.5-4.9 13.3 2.6 8.6 8.3L176 407v80.5c0 23.6 28.5 32.9 42.5 15.8L282 426l124.6 52.2c14.2 6 30.4-2.9 33-18.2l72-432C515 7.8 493.3-6.8 476 3.2z"] }; +var faPaperclip = { prefix: 'fas', iconName: 'paperclip', icon: [448, 512, [], "f0c6", "M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z"] }; +var faParachuteBox = { prefix: 'fas', iconName: 'parachute-box', icon: [512, 512, [], "f4cd", "M511.9 175c-9.1-75.6-78.4-132.4-158.3-158.7C390 55.7 416 116.9 416 192h28.1L327.5 321.5c-2.5-.6-4.8-1.5-7.5-1.5h-48V192h112C384 76.8 315.1 0 256 0S128 76.8 128 192h112v128h-48c-2.7 0-5 .9-7.5 1.5L67.9 192H96c0-75.1 26-136.3 62.4-175.7C78.5 42.7 9.2 99.5.1 175c-1.1 9.1 6.8 17 16 17h8.7l136.7 151.9c-.7 2.6-1.6 5.2-1.6 8.1v128c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32V352c0-2.9-.9-5.4-1.6-8.1L487.1 192h8.7c9.3 0 17.2-7.8 16.1-17z"] }; +var faParagraph = { prefix: 'fas', iconName: 'paragraph', icon: [448, 512, [], "f1dd", "M408 32H177.531C88.948 32 16.045 103.335 16 191.918 15.956 280.321 87.607 352 176 352v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h32v344c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h40c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24z"] }; +var faParking = { prefix: 'fas', iconName: 'parking', icon: [448, 512, [], "f540", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM240 320h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h96c52.9 0 96 43.1 96 96s-43.1 96-96 96zm0-128h-48v64h48c17.6 0 32-14.4 32-32s-14.4-32-32-32z"] }; +var faPaste = { prefix: 'fas', iconName: 'paste', icon: [448, 512, [], "f0ea", "M128 184c0-30.879 25.122-56 56-56h136V56c0-13.255-10.745-24-24-24h-80.61C204.306 12.89 183.637 0 160 0s-44.306 12.89-55.39 32H24C10.745 32 0 42.745 0 56v336c0 13.255 10.745 24 24 24h104V184zm32-144c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24zm184 248h104v200c0 13.255-10.745 24-24 24H184c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.059V256h-96v-96h6.059a24 24 0 0 1 16.97 7.029l65.941 65.941a24.002 24.002 0 0 1 7.03 16.971z"] }; +var faPause = { prefix: 'fas', iconName: 'pause', icon: [448, 512, [], "f04c", "M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z"] }; +var faPauseCircle = { prefix: 'fas', iconName: 'pause-circle', icon: [512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-16 328c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160zm112 0c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160z"] }; +var faPaw = { prefix: 'fas', iconName: 'paw', icon: [512, 512, [], "f1b0", "M85.231 330.958C36 330.958 0 273.792 0 231.5c0-28.292 16-58.042 49.538-58.042 49.231 0 85.231 57.458 85.231 99.75 0 28.292-15.692 57.75-49.538 57.75zm348 106.167c0 37.042-32 42.875-63.385 42.875-41.231 0-74.462-26.25-113.846-26.25-41.231 0-76.308 25.958-120.923 25.958-29.847 0-56.308-9.625-56.308-42.583C78.769 368 180.616 265.333 256 265.333s177.231 102.959 177.231 171.792zM182.462 203.792c-49.847 0-80-59.5-80-100.333C102.462 70.792 120.308 32 160 32c50.154 0 80 59.5 80 100.333 0 32.667-17.846 71.459-57.538 71.459zM272 132.333C272 91.5 301.846 32 352 32c39.692 0 57.539 38.792 57.539 71.458 0 40.833-30.154 100.333-80.001 100.333C289.846 203.792 272 165 272 132.333zM512 231.5c0 42.292-36 99.458-85.231 99.458-33.847 0-49.538-29.458-49.538-57.75 0-42.291 35.999-99.75 85.231-99.75C496 173.458 512 203.208 512 231.5z"] }; +var faPenSquare = { prefix: 'fas', iconName: 'pen-square', icon: [448, 512, [], "f14b", "M400 480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zM238.1 177.9L102.4 313.6l-6.3 57.1c-.8 7.6 5.6 14.1 13.3 13.3l57.1-6.3L302.2 242c2.3-2.3 2.3-6.1 0-8.5L246.7 178c-2.5-2.4-6.3-2.4-8.6-.1zM345 165.1L314.9 135c-9.4-9.4-24.6-9.4-33.9 0l-23.1 23.1c-2.3 2.3-2.3 6.1 0 8.5l55.5 55.5c2.3 2.3 6.1 2.3 8.5 0L345 199c9.3-9.3 9.3-24.5 0-33.9z"] }; +var faPencilAlt = { prefix: 'fas', iconName: 'pencil-alt', icon: [512, 512, [], "f303", "M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z"] }; +var faPeopleCarry = { prefix: 'fas', iconName: 'people-carry', icon: [640, 512, [], "f4ce", "M128 96c26.5 0 48-21.5 48-48S154.5 0 128 0 80 21.5 80 48s21.5 48 48 48zm384 0c26.5 0 48-21.5 48-48S538.5 0 512 0s-48 21.5-48 48 21.5 48 48 48zm125.7 372.1l-44-110-41.1 46.4-2 18.2 27.7 69.2c5 12.5 17 20.1 29.7 20.1 4 0 8-.7 11.9-2.3 16.4-6.6 24.4-25.2 17.8-41.6zm-34.2-209.8L585 178.1c-4.6-20-18.6-36.8-37.5-44.9-18.5-8-39-6.7-56.1 3.3-22.7 13.4-39.7 34.5-48.1 59.4L432 229.8 416 240v-96c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16v96l-16.1-10.2-11.3-33.9c-8.3-25-25.4-46-48.1-59.4-17.2-10-37.6-11.3-56.1-3.3-18.9 8.1-32.9 24.9-37.5 44.9l-18.4 80.2c-4.6 20 .7 41.2 14.4 56.7l67.2 75.9 10.1 92.6C130 499.8 143.8 512 160 512c1.2 0 2.3-.1 3.5-.2 17.6-1.9 30.2-17.7 28.3-35.3l-10.1-92.8c-1.5-13-6.9-25.1-15.6-35l-43.3-49 17.6-70.3 6.8 20.4c4.1 12.5 11.9 23.4 24.5 32.6l51.1 32.5c4.6 2.9 12.1 4.6 17.2 5h160c5.1-.4 12.6-2.1 17.2-5l51.1-32.5c12.6-9.2 20.4-20 24.5-32.6l6.8-20.4 17.6 70.3-43.3 49c-8.7 9.9-14.1 22-15.6 35l-10.1 92.8c-1.9 17.6 10.8 33.4 28.3 35.3 1.2.1 2.3.2 3.5.2 16.1 0 30-12.1 31.8-28.5l10.1-92.6 67.2-75.9c13.6-15.5 19-36.7 14.4-56.7zM46.3 358.1l-44 110c-6.6 16.4 1.4 35 17.8 41.6 16.8 6.6 35.1-1.7 41.6-17.8l27.7-69.2-2-18.2-41.1-46.4z"] }; +var faPercent = { prefix: 'fas', iconName: 'percent', icon: [448, 512, [], "f295", "M112 224c61.9 0 112-50.1 112-112S173.9 0 112 0 0 50.1 0 112s50.1 112 112 112zm0-160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm224 224c-61.9 0-112 50.1-112 112s50.1 112 112 112 112-50.1 112-112-50.1-112-112-112zm0 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zM392.3.2l31.6-.1c19.4-.1 30.9 21.8 19.7 37.8L77.4 501.6a23.95 23.95 0 0 1-19.6 10.2l-33.4.1c-19.5 0-30.9-21.9-19.7-37.8l368-463.7C377.2 4 384.5.2 392.3.2z"] }; +var faPercentage = { prefix: 'fas', iconName: 'percentage', icon: [384, 512, [], "f541", "M109.25 173.25c24.99-24.99 24.99-65.52 0-90.51-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 25 25 65.52 25 90.51 0zm256 165.49c-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 24.99 24.99 65.52 24.99 90.51 0 25-24.99 25-65.51 0-90.51zm-1.94-231.43l-22.62-22.62c-12.5-12.5-32.76-12.5-45.25 0L20.69 359.44c-12.5 12.5-12.5 32.76 0 45.25l22.62 22.62c12.5 12.5 32.76 12.5 45.25 0l274.75-274.75c12.5-12.49 12.5-32.75 0-45.25z"] }; +var faPhone = { prefix: 'fas', iconName: 'phone', icon: [512, 512, [], "f095", "M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z"] }; +var faPhoneSlash = { prefix: 'fas', iconName: 'phone-slash', icon: [640, 512, [], "f3dd", "M268.2 381.4l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48c-10.7 4.6-16.5 16.1-13.9 27.5l24 104c2.5 10.8 12.1 18.6 23.4 18.6 100.7 0 193.7-32.4 269.7-86.9l-80-61.8c-10.9 6.5-22.1 12.7-33.6 18.1zm365.6 76.7L475.1 335.5C537.9 256.4 576 156.9 576 48c0-11.2-7.7-20.9-18.6-23.4l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-12.2 26.1-27.9 50.3-46 72.8L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z"] }; +var faPhoneSquare = { prefix: 'fas', iconName: 'phone-square', icon: [448, 512, [], "f098", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM94 416c-7.033 0-13.057-4.873-14.616-11.627l-14.998-65a15 15 0 0 1 8.707-17.16l69.998-29.999a15 15 0 0 1 17.518 4.289l30.997 37.885c48.944-22.963 88.297-62.858 110.781-110.78l-37.886-30.997a15.001 15.001 0 0 1-4.289-17.518l30-69.998a15 15 0 0 1 17.16-8.707l65 14.998A14.997 14.997 0 0 1 384 126c0 160.292-129.945 290-290 290z"] }; +var faPhoneVolume = { prefix: 'fas', iconName: 'phone-volume', icon: [384, 512, [], "f2a0", "M97.333 506.966c-129.874-129.874-129.681-340.252 0-469.933 5.698-5.698 14.527-6.632 21.263-2.422l64.817 40.513a17.187 17.187 0 0 1 6.849 20.958l-32.408 81.021a17.188 17.188 0 0 1-17.669 10.719l-55.81-5.58c-21.051 58.261-20.612 122.471 0 179.515l55.811-5.581a17.188 17.188 0 0 1 17.669 10.719l32.408 81.022a17.188 17.188 0 0 1-6.849 20.958l-64.817 40.513a17.19 17.19 0 0 1-21.264-2.422zM247.126 95.473c11.832 20.047 11.832 45.008 0 65.055-3.95 6.693-13.108 7.959-18.718 2.581l-5.975-5.726c-3.911-3.748-4.793-9.622-2.261-14.41a32.063 32.063 0 0 0 0-29.945c-2.533-4.788-1.65-10.662 2.261-14.41l5.975-5.726c5.61-5.378 14.768-4.112 18.718 2.581zm91.787-91.187c60.14 71.604 60.092 175.882 0 247.428-4.474 5.327-12.53 5.746-17.552.933l-5.798-5.557c-4.56-4.371-4.977-11.529-.93-16.379 49.687-59.538 49.646-145.933 0-205.422-4.047-4.85-3.631-12.008.93-16.379l5.798-5.557c5.022-4.813 13.078-4.394 17.552.933zm-45.972 44.941c36.05 46.322 36.108 111.149 0 157.546-4.39 5.641-12.697 6.251-17.856 1.304l-5.818-5.579c-4.4-4.219-4.998-11.095-1.285-15.931 26.536-34.564 26.534-82.572 0-117.134-3.713-4.836-3.115-11.711 1.285-15.931l5.818-5.579c5.159-4.947 13.466-4.337 17.856 1.304z"] }; +var faPiggyBank = { prefix: 'fas', iconName: 'piggy-bank', icon: [576, 512, [], "f4d3", "M560 224h-29.5c-8.8-20-21.6-37.7-37.4-52.5L512 96h-32c-29.4 0-55.4 13.5-73 34.3-7.6-1.1-15.1-2.3-23-2.3H256c-77.4 0-141.9 55-156.8 128H56c-14.8 0-26.5-13.5-23.5-28.8C34.7 215.8 45.4 208 57 208h1c3.3 0 6-2.7 6-6v-20c0-3.3-2.7-6-6-6-28.5 0-53.9 20.4-57.5 48.6C-3.9 258.8 22.7 288 56 288h40c0 52.2 25.4 98.1 64 127.3V496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-48h128v48c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80.7c11.8-8.9 22.3-19.4 31.3-31.3H560c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16zm-128 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM256 96h128c5.4 0 10.7.4 15.9.8 0-.3.1-.5.1-.8 0-53-43-96-96-96s-96 43-96 96c0 2.1.5 4.1.6 6.2 15.2-3.9 31-6.2 47.4-6.2z"] }; +var faPills = { prefix: 'fas', iconName: 'pills', icon: [576, 512, [], "f484", "M112 32C50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V144c0-61.9-50.1-112-112-112zm48 224H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm139.7-29.7c-3.5-3.5-9.4-3.1-12.3.8-45.3 62.5-40.4 150.1 15.9 206.4 56.3 56.3 143.9 61.2 206.4 15.9 4-2.9 4.3-8.8.8-12.3L299.7 226.3zm229.8-19c-56.3-56.3-143.9-61.2-206.4-15.9-4 2.9-4.3 8.8-.8 12.3l210.8 210.8c3.5 3.5 9.4 3.1 12.3-.8 45.3-62.6 40.5-150.1-15.9-206.4z"] }; +var faPlane = { prefix: 'fas', iconName: 'plane', icon: [576, 512, [], "f072", "M480 192H365.71L260.61 8.06A16.014 16.014 0 0 0 246.71 0h-65.5c-10.63 0-18.3 10.17-15.38 20.39L214.86 192H112l-43.2-57.6c-3.02-4.03-7.77-6.4-12.8-6.4H16.01C5.6 128-2.04 137.78.49 147.88L32 256 .49 364.12C-2.04 374.22 5.6 384 16.01 384H56c5.04 0 9.78-2.37 12.8-6.4L112 320h102.86l-49.03 171.6c-2.92 10.22 4.75 20.4 15.38 20.4h65.5c5.74 0 11.04-3.08 13.89-8.06L365.71 320H480c35.35 0 96-28.65 96-64s-60.65-64-96-64z"] }; +var faPlay = { prefix: 'fas', iconName: 'play', icon: [448, 512, [], "f04b", "M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z"] }; +var faPlayCircle = { prefix: 'fas', iconName: 'play-circle', icon: [512, 512, [], "f144", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z"] }; +var faPlug = { prefix: 'fas', iconName: 'plug', icon: [384, 512, [], "f1e6", "M256 144V32c0-17.673 14.327-32 32-32s32 14.327 32 32v112h-64zm112 16H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h16v32c0 77.406 54.969 141.971 128 156.796V512h64v-99.204c73.031-14.825 128-79.39 128-156.796v-32h16c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm-240-16V32c0-17.673-14.327-32-32-32S64 14.327 64 32v112h64z"] }; +var faPlus = { prefix: 'fas', iconName: 'plus', icon: [448, 512, [], "f067", "M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; +var faPlusCircle = { prefix: 'fas', iconName: 'plus-circle', icon: [512, 512, [], "f055", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"] }; +var faPlusSquare = { prefix: 'fas', iconName: 'plus-square', icon: [448, 512, [], "f0fe", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-32 252c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92H92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"] }; +var faPodcast = { prefix: 'fas', iconName: 'podcast', icon: [448, 512, [], "f2ce", "M267.429 488.563C262.286 507.573 242.858 512 224 512c-18.857 0-38.286-4.427-43.428-23.437C172.927 460.134 160 388.898 160 355.75c0-35.156 31.142-43.75 64-43.75s64 8.594 64 43.75c0 32.949-12.871 104.179-20.571 132.813zM156.867 288.554c-18.693-18.308-29.958-44.173-28.784-72.599 2.054-49.724 42.395-89.956 92.124-91.881C274.862 121.958 320 165.807 320 220c0 26.827-11.064 51.116-28.866 68.552-2.675 2.62-2.401 6.986.628 9.187 9.312 6.765 16.46 15.343 21.234 25.363 1.741 3.654 6.497 4.66 9.449 1.891 28.826-27.043 46.553-65.783 45.511-108.565-1.855-76.206-63.595-138.208-139.793-140.369C146.869 73.753 80 139.215 80 220c0 41.361 17.532 78.7 45.55 104.989 2.953 2.771 7.711 1.77 9.453-1.887 4.774-10.021 11.923-18.598 21.235-25.363 3.029-2.2 3.304-6.566.629-9.185zM224 0C100.204 0 0 100.185 0 224c0 89.992 52.602 165.647 125.739 201.408 4.333 2.118 9.267-1.544 8.535-6.31-2.382-15.512-4.342-30.946-5.406-44.339-.146-1.836-1.149-3.486-2.678-4.512-47.4-31.806-78.564-86.016-78.187-147.347.592-96.237 79.29-174.648 175.529-174.899C320.793 47.747 400 126.797 400 224c0 61.932-32.158 116.49-80.65 147.867-.999 14.037-3.069 30.588-5.624 47.23-.732 4.767 4.203 8.429 8.535 6.31C395.227 389.727 448 314.187 448 224 448 100.205 347.815 0 224 0zm0 160c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z"] }; +var faPoo = { prefix: 'fas', iconName: 'poo', icon: [512, 512, [], "f2fe", "M451.4 369.1C468.7 356 480 335.4 480 312c0-39.8-32.2-72-72-72h-14.1c13.4-11.7 22.1-28.8 22.1-48 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C250.3 14.6 256 30.6 256 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 19.2 8.7 36.3 22.1 48H104c-39.8 0-72 32.2-72 72 0 23.4 11.3 44 28.6 57.1C26.3 374.6 0 404.1 0 440c0 39.8 32.2 72 72 72h368c39.8 0 72-32.2 72-72 0-35.9-26.3-65.4-60.6-70.9zM192 256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm159.5 139C341 422.9 293 448 256 448s-85-25.1-95.5-53c-2-5.3 2-11 7.8-11h175.4c5.8 0 9.8 5.7 7.8 11zM320 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faPortrait = { prefix: 'fas', iconName: 'portrait', icon: [384, 512, [], "f3e0", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM192 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 384 80 375.4 80 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"] }; +var faPoundSign = { prefix: 'fas', iconName: 'pound-sign', icon: [320, 512, [], "f154", "M308 352h-45.495c-6.627 0-12 5.373-12 12v50.848H128V288h84c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-84v-63.556c0-32.266 24.562-57.086 61.792-57.086 23.658 0 45.878 11.505 57.652 18.849 5.151 3.213 11.888 2.051 15.688-2.685l28.493-35.513c4.233-5.276 3.279-13.005-2.119-17.081C273.124 54.56 236.576 32 187.931 32 106.026 32 48 84.742 48 157.961V224H20c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h28v128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12V364c0-6.627-5.373-12-12-12z"] }; +var faPowerOff = { prefix: 'fas', iconName: 'power-off', icon: [512, 512, [], "f011", "M400 54.1c63 45 104 118.6 104 201.9 0 136.8-110.8 247.7-247.5 248C120 504.3 8.2 393 8 256.4 7.9 173.1 48.9 99.3 111.8 54.2c11.7-8.3 28-4.8 35 7.7L162.6 90c5.9 10.5 3.1 23.8-6.6 31-41.5 30.8-68 79.6-68 134.9-.1 92.3 74.5 168.1 168 168.1 91.6 0 168.6-74.2 168-169.1-.3-51.8-24.7-101.8-68.1-134-9.7-7.2-12.4-20.5-6.5-30.9l15.8-28.1c7-12.4 23.2-16.1 34.8-7.8zM296 264V24c0-13.3-10.7-24-24-24h-32c-13.3 0-24 10.7-24 24v240c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24z"] }; +var faPrescriptionBottle = { prefix: 'fas', iconName: 'prescription-bottle', icon: [384, 512, [], "f485", "M32 192h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v64zM360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24z"] }; +var faPrescriptionBottleAlt = { prefix: 'fas', iconName: 'prescription-bottle-alt', icon: [384, 512, [], "f486", "M360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24zM32 480c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v352zm64-184c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48z"] }; +var faPrint = { prefix: 'fas', iconName: 'print', icon: [512, 512, [], "f02f", "M464 192h-16V81.941a24 24 0 0 0-7.029-16.97L383.029 7.029A24 24 0 0 0 366.059 0H88C74.745 0 64 10.745 64 24v168H48c-26.51 0-48 21.49-48 48v132c0 6.627 5.373 12 12 12h52v104c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V384h52c6.627 0 12-5.373 12-12V240c0-26.51-21.49-48-48-48zm-80 256H128v-96h256v96zM128 224V64h192v40c0 13.2 10.8 24 24 24h40v96H128zm304 72c-13.254 0-24-10.746-24-24s10.746-24 24-24 24 10.746 24 24-10.746 24-24 24z"] }; +var faProcedures = { prefix: 'fas', iconName: 'procedures', icon: [640, 512, [], "f487", "M528 224H272c-8.8 0-16 7.2-16 16v144H64V144c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v352c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h512v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-61.9-50.1-112-112-112zM136 96h126.1l27.6 55.2c5.9 11.8 22.7 11.8 28.6 0L368 51.8 390.1 96H512c8.8 0 16-7.2 16-16s-7.2-16-16-16H409.9L382.3 8.8C376.4-3 359.6-3 353.7 8.8L304 108.2l-19.9-39.8c-1.4-2.7-4.1-4.4-7.2-4.4H136c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm24 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z"] }; +var faProjectDiagram = { prefix: 'fas', iconName: 'project-diagram', icon: [640, 512, [], "f542", "M384 320H256c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM192 32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v128c0 17.67 14.33 32 32 32h95.72l73.16 128.04C211.98 300.98 232.4 288 256 288h.28L192 175.51V128h224V64H192V32zM608 0H480c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32z"] }; +var faPuzzlePiece = { prefix: 'fas', iconName: 'puzzle-piece', icon: [576, 512, [], "f12e", "M519.442 288.651c-41.519 0-59.5 31.593-82.058 31.593C377.409 320.244 432 144 432 144s-196.288 80-196.288-3.297c0-35.827 36.288-46.25 36.288-85.985C272 19.216 243.885 0 210.539 0c-34.654 0-66.366 18.891-66.366 56.346 0 41.364 31.711 59.277 31.711 81.75C175.885 207.719 0 166.758 0 166.758v333.237s178.635 41.047 178.635-28.662c0-22.473-40-40.107-40-81.471 0-37.456 29.25-56.346 63.577-56.346 33.673 0 61.788 19.216 61.788 54.717 0 39.735-36.288 50.158-36.288 85.985 0 60.803 129.675 25.73 181.23 25.73 0 0-34.725-120.101 25.827-120.101 35.962 0 46.423 36.152 86.308 36.152C556.712 416 576 387.99 576 354.443c0-34.199-18.962-65.792-56.558-65.792z"] }; +var faQrcode = { prefix: 'fas', iconName: 'qrcode', icon: [448, 512, [], "f029", "M0 224h192V32H0v192zM64 96h64v64H64V96zm192-64v192h192V32H256zm128 128h-64V96h64v64zM0 480h192V288H0v192zm64-128h64v64H64v-64zm352-64h32v128h-96v-32h-32v96h-64V288h96v32h64v-32zm0 160h32v32h-32v-32zm-64 0h32v32h-32v-32z"] }; +var faQuestion = { prefix: 'fas', iconName: 'question', icon: [384, 512, [], "f128", "M202.021 0C122.202 0 70.503 32.703 29.914 91.026c-7.363 10.58-5.093 25.086 5.178 32.874l43.138 32.709c10.373 7.865 25.132 6.026 33.253-4.148 25.049-31.381 43.63-49.449 82.757-49.449 30.764 0 68.816 19.799 68.816 49.631 0 22.552-18.617 34.134-48.993 51.164-35.423 19.86-82.299 44.576-82.299 106.405V320c0 13.255 10.745 24 24 24h72.471c13.255 0 24-10.745 24-24v-5.773c0-42.86 125.268-44.645 125.268-160.627C377.504 66.256 286.902 0 202.021 0zM192 373.459c-38.196 0-69.271 31.075-69.271 69.271 0 38.195 31.075 69.27 69.271 69.27s69.271-31.075 69.271-69.271-31.075-69.27-69.271-69.27z"] }; +var faQuestionCircle = { prefix: 'fas', iconName: 'question-circle', icon: [512, 512, [], "f059", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z"] }; +var faQuidditch = { prefix: 'fas', iconName: 'quidditch', icon: [640, 512, [], "f458", "M256.5 216.8L343.2 326s-16.6 102.4-76.6 150.1C206.7 523.8 0 510.2 0 510.2s3.8-23.1 11-55.4l94.6-112.2c4-4.7-.9-11.6-6.6-9.5l-60.4 22.1c14.4-41.7 32.7-80 54.6-97.5 59.9-47.8 163.3-40.9 163.3-40.9zm238 135c-44 0-79.8 35.8-79.8 79.9 0 44.1 35.7 79.9 79.8 79.9 44.1 0 79.8-35.8 79.8-79.9 0-44.2-35.8-79.9-79.8-79.9zM636.5 31L616.7 6c-5.5-6.9-15.5-8-22.4-2.6L361.8 181.3l-34.1-43c-5.1-6.4-15.1-5.2-18.6 2.2l-25.3 54.6 86.7 109.2 58.8-12.4c8-1.7 11.4-11.2 6.3-17.6l-34.1-42.9L634 53.5c6.9-5.5 8-15.6 2.5-22.5z"] }; +var faQuoteLeft = { prefix: 'fas', iconName: 'quote-left', icon: [512, 512, [], "f10d", "M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z"] }; +var faQuoteRight = { prefix: 'fas', iconName: 'quote-right', icon: [512, 512, [], "f10e", "M464 32H336c-26.5 0-48 21.5-48 48v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48zm-288 0H48C21.5 32 0 53.5 0 80v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48z"] }; +var faRandom = { prefix: 'fas', iconName: 'random', icon: [512, 512, [], "f074", "M504.971 359.029c9.373 9.373 9.373 24.569 0 33.941l-80 79.984c-15.01 15.01-40.971 4.49-40.971-16.971V416h-58.785a12.004 12.004 0 0 1-8.773-3.812l-70.556-75.596 53.333-57.143L352 336h32v-39.981c0-21.438 25.943-31.998 40.971-16.971l80 79.981zM12 176h84l52.781 56.551 53.333-57.143-70.556-75.596A11.999 11.999 0 0 0 122.785 96H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12zm372 0v39.984c0 21.46 25.961 31.98 40.971 16.971l80-79.984c9.373-9.373 9.373-24.569 0-33.941l-80-79.981C409.943 24.021 384 34.582 384 56.019V96h-58.785a12.004 12.004 0 0 0-8.773 3.812L96 336H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h110.785c3.326 0 6.503-1.381 8.773-3.812L352 176h32z"] }; +var faReceipt = { prefix: 'fas', iconName: 'receipt', icon: [384, 512, [], "f543", "M358.4 3.2L320 48 265.6 3.2a15.9 15.9 0 0 0-19.2 0L192 48 137.6 3.2a15.9 15.9 0 0 0-19.2 0L64 48 25.6 3.2C15-4.7 0 2.8 0 16v480c0 13.2 15 20.7 25.6 12.8L64 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L192 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L320 464l38.4 44.8c10.5 7.9 25.6.4 25.6-12.8V16c0-13.2-15-20.7-25.6-12.8zM320 360c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16z"] }; +var faRecycle = { prefix: 'fas', iconName: 'recycle', icon: [512, 512, [], "f1b8", "M184.561 261.903c3.232 13.997-12.123 24.635-24.068 17.168l-40.736-25.455-50.867 81.402C55.606 356.273 70.96 384 96.012 384H148c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12H96.115c-75.334 0-121.302-83.048-81.408-146.88l50.822-81.388-40.725-25.448c-12.081-7.547-8.966-25.961 4.879-29.158l110.237-25.45c8.611-1.988 17.201 3.381 19.189 11.99l25.452 110.237zm98.561-182.915l41.289 66.076-40.74 25.457c-12.051 7.528-9 25.953 4.879 29.158l110.237 25.45c8.672 1.999 17.215-3.438 19.189-11.99l25.45-110.237c3.197-13.844-11.99-24.719-24.068-17.168l-40.687 25.424-41.263-66.082c-37.521-60.033-125.209-60.171-162.816 0l-17.963 28.766c-3.51 5.62-1.8 13.021 3.82 16.533l33.919 21.195c5.62 3.512 13.024 1.803 16.536-3.817l17.961-28.743c12.712-20.341 41.973-19.676 54.257-.022zM497.288 301.12l-27.515-44.065c-3.511-5.623-10.916-7.334-16.538-3.821l-33.861 21.159c-5.62 3.512-7.33 10.915-3.818 16.536l27.564 44.112c13.257 21.211-2.057 48.96-27.136 48.96H320V336.02c0-14.213-17.242-21.383-27.313-11.313l-80 79.981c-6.249 6.248-6.249 16.379 0 22.627l80 79.989C302.689 517.308 320 510.3 320 495.989V448h95.88c75.274 0 121.335-82.997 81.408-146.88z"] }; +var faRedo = { prefix: 'fas', iconName: 'redo', icon: [512, 512, [], "f01e", "M500.333 0h-47.411c-6.853 0-12.314 5.729-11.986 12.574l3.966 82.759C399.416 41.899 331.672 8 256.001 8 119.34 8 7.899 119.526 8 256.187 8.101 393.068 119.096 504 256 504c63.926 0 122.202-24.187 166.178-63.908 5.113-4.618 5.354-12.561.482-17.433l-33.971-33.971c-4.466-4.466-11.64-4.717-16.38-.543C341.308 415.448 300.606 432 256 432c-97.267 0-176-78.716-176-176 0-97.267 78.716-176 176-176 60.892 0 114.506 30.858 146.099 77.8l-101.525-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12z"] }; +var faRedoAlt = { prefix: 'fas', iconName: 'redo-alt', icon: [512, 512, [], "f2f9", "M256.455 8c66.269.119 126.437 26.233 170.859 68.685l35.715-35.715C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.75c-30.864-28.899-70.801-44.907-113.23-45.273-92.398-.798-170.283 73.977-169.484 169.442C88.764 348.009 162.184 424 256 424c41.127 0 79.997-14.678 110.629-41.556 4.743-4.161 11.906-3.908 16.368.553l39.662 39.662c4.872 4.872 4.631 12.815-.482 17.433C378.202 479.813 319.926 504 256 504 119.034 504 8.001 392.967 8 256.002 7.999 119.193 119.646 7.755 256.455 8z"] }; +var faRegistered = { prefix: 'fas', iconName: 'registered', icon: [512, 512, [], "f25d", "M285.363 207.475c0 18.6-9.831 28.431-28.431 28.431h-29.876v-56.14h23.378c28.668 0 34.929 8.773 34.929 27.709zM504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM363.411 360.414c-46.729-84.825-43.299-78.636-44.702-80.98 23.432-15.172 37.945-42.979 37.945-74.486 0-54.244-31.5-89.252-105.498-89.252h-70.667c-13.255 0-24 10.745-24 24V372c0 13.255 10.745 24 24 24h22.567c13.255 0 24-10.745 24-24v-71.663h25.556l44.129 82.937a24.001 24.001 0 0 0 21.188 12.727h24.464c18.261-.001 29.829-19.591 21.018-35.587z"] }; +var faReply = { prefix: 'fas', iconName: 'reply', icon: [512, 512, [], "f3e5", "M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z"] }; +var faReplyAll = { prefix: 'fas', iconName: 'reply-all', icon: [576, 512, [], "f122", "M136.309 189.836L312.313 37.851C327.72 24.546 352 35.348 352 56.015v82.763c129.182 10.231 224 52.212 224 183.548 0 61.441-39.582 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 38.512-123.162-3.922-169.482-112.59-182.015v84.175c0 20.701-24.3 31.453-39.687 18.164L136.309 226.164c-11.071-9.561-11.086-26.753 0-36.328zm-128 36.328L184.313 378.15C199.7 391.439 224 380.687 224 359.986v-15.818l-108.606-93.785A55.96 55.96 0 0 1 96 207.998a55.953 55.953 0 0 1 19.393-42.38L224 71.832V56.015c0-20.667-24.28-31.469-39.687-18.164L8.309 189.836c-11.086 9.575-11.071 26.767 0 36.328z"] }; +var faRetweet = { prefix: 'fas', iconName: 'retweet', icon: [640, 512, [], "f079", "M629.657 343.598L528.971 444.284c-9.373 9.372-24.568 9.372-33.941 0L394.343 343.598c-9.373-9.373-9.373-24.569 0-33.941l10.823-10.823c9.562-9.562 25.133-9.34 34.419.492L480 342.118V160H292.451a24.005 24.005 0 0 1-16.971-7.029l-16-16C244.361 121.851 255.069 96 276.451 96H520c13.255 0 24 10.745 24 24v222.118l40.416-42.792c9.285-9.831 24.856-10.054 34.419-.492l10.823 10.823c9.372 9.372 9.372 24.569-.001 33.941zm-265.138 15.431A23.999 23.999 0 0 0 347.548 352H160V169.881l40.416 42.792c9.286 9.831 24.856 10.054 34.419.491l10.822-10.822c9.373-9.373 9.373-24.569 0-33.941L144.971 67.716c-9.373-9.373-24.569-9.373-33.941 0L10.343 168.402c-9.373 9.373-9.373 24.569 0 33.941l10.822 10.822c9.562 9.562 25.133 9.34 34.419-.491L96 169.881V392c0 13.255 10.745 24 24 24h243.549c21.382 0 32.09-25.851 16.971-40.971l-16.001-16z"] }; +var faRibbon = { prefix: 'fas', iconName: 'ribbon', icon: [448, 512, [], "f4d6", "M6.1 444.3c-9.6 10.8-7.5 27.6 4.5 35.7l68.8 27.9c9.9 6.7 23.3 5 31.3-3.8l91.8-101.9-79.2-87.9-117.2 130zm435.8 0s-292-324.6-295.4-330.1c15.4-8.4 40.2-17.9 77.5-17.9s62.1 9.5 77.5 17.9c-3.3 5.6-56 64.6-56 64.6l79.1 87.7 34.2-38c28.7-31.9 33.3-78.6 11.4-115.5l-43.7-73.5c-4.3-7.2-9.9-13.3-16.8-18-40.7-27.6-127.4-29.7-171.4 0-6.9 4.7-12.5 10.8-16.8 18l-43.6 73.2c-1.5 2.5-37.1 62.2 11.5 116L337.5 504c8 8.9 21.4 10.5 31.3 3.8l68.8-27.9c11.9-8 14-24.8 4.3-35.6z"] }; +var faRoad = { prefix: 'fas', iconName: 'road', icon: [576, 512, [], "f018", "M567.3 383.6L429.9 78.2C426 69.5 417.4 64 408 64h-96.1l1.9 18.8c.7 7.1-4.8 13.2-11.9 13.2H274c-7.1 0-12.7-6.2-11.9-13.2L264 64h-96c-9.4 0-18 5.5-21.9 14.2L8.7 383.6C3.2 395.8 0 409.6 0 424c0 13.3 10.7 24 24 24h213.6c-7.1 0-12.7-6.2-11.9-13.2l10.8-104c.6-6.1 5.8-10.8 11.9-10.8h79.2c6.1 0 11.3 4.6 11.9 10.8l10.8 104c.7 7.1-4.8 13.2-11.9 13.2H552c13.2 0 24-10.7 24-24 0-13.9-3-27.7-8.7-40.4zM254.7 154.8l3.3-32c.6-6.1 5.8-10.8 11.9-10.8h36.2c6.1 0 11.3 4.6 11.9 10.8l3.3 32c.7 7.1-4.8 13.2-11.9 13.2h-42.8c-7.1 0-12.7-6.2-11.9-13.2zM321.8 288h-67.6c-7.1 0-12.7-6.2-11.9-13.2l7.4-72c.6-6.1 5.8-10.8 11.9-10.8h52.7c6.1 0 11.3 4.6 11.9 10.8l7.4 72c.9 7-4.7 13.2-11.8 13.2z"] }; +var faRobot = { prefix: 'fas', iconName: 'robot', icon: [640, 512, [], "f544", "M0 256v128c0 17.7 14.3 32 32 32h32V224H32c-17.7 0-32 14.3-32 32zM464 96H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H176c-44.2 0-80 35.8-80 80v272c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V176c0-44.2-35.8-80-80-80zM256 416h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm128 120h-64v-32h64v32zm96 0h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm192-72h-32v192h32c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32z"] }; +var faRocket = { prefix: 'fas', iconName: 'rocket', icon: [512, 512, [], "f135", "M505.1 19.1C503.8 13 499 8.2 492.9 6.9 460.7 0 435.5 0 410.4 0 307.2 0 245.3 55.2 199.1 128H94.9c-18.2 0-34.8 10.3-42.9 26.5L2.6 253.3c-8 16 3.6 34.7 21.5 34.7h95.1c-5.9 12.8-11.9 25.5-18 37.7-3.1 6.2-1.9 13.6 3 18.5l63.6 63.6c4.9 4.9 12.3 6.1 18.5 3 12.2-6.1 24.9-12 37.7-17.9V488c0 17.8 18.8 29.4 34.7 21.5l98.7-49.4c16.3-8.1 26.5-24.8 26.5-42.9V312.8c72.6-46.3 128-108.4 128-211.1.1-25.2.1-50.4-6.8-82.6zM400 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; +var faRss = { prefix: 'fas', iconName: 'rss', icon: [448, 512, [], "f09e", "M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"] }; +var faRssSquare = { prefix: 'fas', iconName: 'rss-square', icon: [448, 512, [], "f143", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM112 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm157.533 0h-34.335c-6.011 0-11.051-4.636-11.442-10.634-5.214-80.05-69.243-143.92-149.123-149.123-5.997-.39-10.633-5.431-10.633-11.441v-34.335c0-6.535 5.468-11.777 11.994-11.425 110.546 5.974 198.997 94.536 204.964 204.964.352 6.526-4.89 11.994-11.425 11.994zm103.027 0h-34.334c-6.161 0-11.175-4.882-11.427-11.038-5.598-136.535-115.204-246.161-251.76-251.76C68.882 152.949 64 147.935 64 141.774V107.44c0-6.454 5.338-11.664 11.787-11.432 167.83 6.025 302.21 141.191 308.205 308.205.232 6.449-4.978 11.787-11.432 11.787z"] }; +var faRubleSign = { prefix: 'fas', iconName: 'ruble-sign', icon: [384, 512, [], "f158", "M239.36 320C324.48 320 384 260.542 384 175.071S324.48 32 239.36 32H76c-6.627 0-12 5.373-12 12v206.632H12c-6.627 0-12 5.373-12 12V308c0 6.627 5.373 12 12 12h52v32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v52c0 6.627 5.373 12 12 12h58.56c6.627 0 12-5.373 12-12v-52H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H146.56v-32h92.8zm-92.8-219.252h78.72c46.72 0 74.88 29.11 74.88 74.323 0 45.832-28.16 75.561-76.16 75.561h-77.44V100.748z"] }; +var faRuler = { prefix: 'fas', iconName: 'ruler', icon: [640, 512, [], "f545", "M635.7 167.2L556.1 31.7c-8.8-15-28.3-20.1-43.5-11.5l-69 39.1L503.3 161c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L416 75l-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L333.2 122 278 153.3 337.8 255c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-59.7-101.7-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-27.9-47.5-55.2 31.3 59.7 101.7c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L84.9 262.9l-69 39.1C.7 310.7-4.6 329.8 4.2 344.8l79.6 135.6c8.8 15 28.3 20.1 43.5 11.5L624.1 210c15.2-8.6 20.4-27.8 11.6-42.8z"] }; +var faRulerCombined = { prefix: 'fas', iconName: 'ruler-combined', icon: [512, 512, [], "f546", "M160 288h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56v-64h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56V96h-56c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8h56V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 2.77.91 5.24 1.57 7.8L160 329.38V288zm320 64h-32v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-41.37L24.2 510.43c2.56.66 5.04 1.57 7.8 1.57h448c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"] }; +var faRulerHorizontal = { prefix: 'fas', iconName: 'ruler-horizontal', icon: [576, 512, [], "f547", "M544 128h-48v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8H88c-4.42 0-8-3.58-8-8v-88H32c-17.67 0-32 14.33-32 32v192c0 17.67 14.33 32 32 32h512c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32z"] }; +var faRulerVertical = { prefix: 'fas', iconName: 'ruler-vertical', icon: [256, 512, [], "f548", "M168 416c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 17.67 14.33 32 32 32h192c17.67 0 32-14.33 32-32v-64h-88z"] }; +var faRupeeSign = { prefix: 'fas', iconName: 'rupee-sign', icon: [320, 512, [], "f156", "M308 96c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v44.748c0 6.627 5.373 12 12 12h85.28c27.308 0 48.261 9.958 60.97 27.252H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h158.757c-6.217 36.086-32.961 58.632-74.757 58.632H12c-6.627 0-12 5.373-12 12v53.012c0 3.349 1.4 6.546 3.861 8.818l165.052 152.356a12.001 12.001 0 0 0 8.139 3.182h82.562c10.924 0 16.166-13.408 8.139-20.818L116.871 319.906c76.499-2.34 131.144-53.395 138.318-127.906H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-58.69c-3.486-11.541-8.28-22.246-14.252-32H308z"] }; +var faSave = { prefix: 'fas', iconName: 'save', icon: [448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z"] }; +var faSchool = { prefix: 'fas', iconName: 'school', icon: [640, 512, [], "f549", "M0 224v272c0 8.84 7.16 16 16 16h80V192H32c-17.67 0-32 14.33-32 32zm360-48h-24v-40c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v64c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zm137.75-63.96l-160-106.67a32.02 32.02 0 0 0-35.5 0l-160 106.67A32.002 32.002 0 0 0 128 138.66V512h128V368c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v144h128V138.67c0-10.7-5.35-20.7-14.25-26.63zM320 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm288-64h-64v320h80c8.84 0 16-7.16 16-16V224c0-17.67-14.33-32-32-32z"] }; +var faScrewdriver = { prefix: 'fas', iconName: 'screwdriver', icon: [512, 512, [], "f54a", "M448 0L320 96v62.06l-83.03 83.03c6.79 4.25 13.27 9.06 19.07 14.87 5.8 5.8 10.62 12.28 14.87 19.07L353.94 192H416l96-128-64-64zM128 278.59L10.92 395.67c-14.55 14.55-14.55 38.15 0 52.71l52.7 52.7c14.56 14.56 38.15 14.56 52.71 0L233.41 384c29.11-29.11 29.11-76.3 0-105.41s-76.3-29.11-105.41 0z"] }; +var faSearch = { prefix: 'fas', iconName: 'search', icon: [512, 512, [], "f002", "M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"] }; +var faSearchMinus = { prefix: 'fas', iconName: 'search-minus', icon: [512, 512, [], "f010", "M304 192v32c0 6.6-5.4 12-12 12H124c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z"] }; +var faSearchPlus = { prefix: 'fas', iconName: 'search-plus', icon: [512, 512, [], "f00e", "M304 192v32c0 6.6-5.4 12-12 12h-56v56c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-56h-56c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h56v-56c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v56h56c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z"] }; +var faSeedling = { prefix: 'fas', iconName: 'seedling', icon: [512, 512, [], "f4d8", "M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z"] }; +var faServer = { prefix: 'fas', iconName: 'server', icon: [512, 512, [], "f233", "M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z"] }; +var faShare = { prefix: 'fas', iconName: 'share', icon: [512, 512, [], "f064", "M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z"] }; +var faShareAlt = { prefix: 'fas', iconName: 'share-alt', icon: [448, 512, [], "f1e0", "M352 320c-22.608 0-43.387 7.819-59.79 20.895l-102.486-64.054a96.551 96.551 0 0 0 0-41.683l102.486-64.054C308.613 184.181 329.392 192 352 192c53.019 0 96-42.981 96-96S405.019 0 352 0s-96 42.981-96 96c0 7.158.79 14.13 2.276 20.841L155.79 180.895C139.387 167.819 118.608 160 96 160c-53.019 0-96 42.981-96 96s42.981 96 96 96c22.608 0 43.387-7.819 59.79-20.895l102.486 64.054A96.301 96.301 0 0 0 256 416c0 53.019 42.981 96 96 96s96-42.981 96-96-42.981-96-96-96z"] }; +var faShareAltSquare = { prefix: 'fas', iconName: 'share-alt-square', icon: [448, 512, [], "f1e1", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zM304 296c-14.562 0-27.823 5.561-37.783 14.671l-67.958-40.775a56.339 56.339 0 0 0 0-27.793l67.958-40.775C276.177 210.439 289.438 216 304 216c30.928 0 56-25.072 56-56s-25.072-56-56-56-56 25.072-56 56c0 4.797.605 9.453 1.74 13.897l-67.958 40.775C171.823 205.561 158.562 200 144 200c-30.928 0-56 25.072-56 56s25.072 56 56 56c14.562 0 27.823-5.561 37.783-14.671l67.958 40.775a56.088 56.088 0 0 0-1.74 13.897c0 30.928 25.072 56 56 56s56-25.072 56-56C360 321.072 334.928 296 304 296z"] }; +var faShareSquare = { prefix: 'fas', iconName: 'share-square', icon: [576, 512, [], "f14d", "M568.482 177.448L424.479 313.433C409.3 327.768 384 317.14 384 295.985v-71.963c-144.575.97-205.566 35.113-164.775 171.353 4.483 14.973-12.846 26.567-25.006 17.33C155.252 383.105 120 326.488 120 269.339c0-143.937 117.599-172.5 264-173.312V24.012c0-21.174 25.317-31.768 40.479-17.448l144.003 135.988c10.02 9.463 10.028 25.425 0 34.896zM384 379.128V448H64V128h50.916a11.99 11.99 0 0 0 8.648-3.693c14.953-15.568 32.237-27.89 51.014-37.676C185.708 80.83 181.584 64 169.033 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48v-88.806c0-8.288-8.197-14.066-16.011-11.302a71.83 71.83 0 0 1-34.189 3.377c-7.27-1.046-13.8 4.514-13.8 11.859z"] }; +var faShekelSign = { prefix: 'fas', iconName: 'shekel-sign', icon: [448, 512, [], "f20b", "M248 168v168c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V168c0-75.11-60.89-136-136-136H24C10.75 32 0 42.74 0 56v408c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112h112c30.93 0 56 25.07 56 56zM432 32h-48c-8.84 0-16 7.16-16 16v296c0 30.93-25.07 56-56 56H200V176c0-8.84-7.16-16-16-16h-48c-8.84 0-16 7.16-16 16v280c0 13.25 10.75 24 24 24h168c75.11 0 136-60.89 136-136V48c0-8.84-7.16-16-16-16z"] }; +var faShieldAlt = { prefix: 'fas', iconName: 'shield-alt', icon: [512, 512, [], "f3ed", "M496 128c0 221.282-135.934 344.645-221.539 380.308a48 48 0 0 1-36.923 0C130.495 463.713 16 326.487 16 128a48 48 0 0 1 29.539-44.308l192-80a48 48 0 0 1 36.923 0l192 80A48 48 0 0 1 496 128zM256 446.313l.066.034c93.735-46.689 172.497-156.308 175.817-307.729L256 65.333v380.98z"] }; +var faShip = { prefix: 'fas', iconName: 'ship', icon: [640, 512, [], "f21a", "M496.616 372.639l70.012-70.012c16.899-16.9 9.942-45.771-12.836-53.092L512 236.102V96c0-17.673-14.327-32-32-32h-64V24c0-13.255-10.745-24-24-24H248c-13.255 0-24 10.745-24 24v40h-64c-17.673 0-32 14.327-32 32v140.102l-41.792 13.433c-22.753 7.313-29.754 36.173-12.836 53.092l70.012 70.012C125.828 416.287 85.587 448 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24 61.023 0 107.499-20.61 143.258-59.396C181.677 487.432 216.021 512 256 512h128c39.979 0 74.323-24.568 88.742-59.396C508.495 491.384 554.968 512 616 512c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24-60.817 0-101.542-31.001-119.384-75.361zM192 128h256v87.531l-118.208-37.995a31.995 31.995 0 0 0-19.584 0L192 215.531V128z"] }; +var faShippingFast = { prefix: 'fas', iconName: 'shipping-fast', icon: [640, 512, [], "f48b", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H112C85.5 0 64 21.5 64 48v48H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h272c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H40c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H64v128c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"] }; +var faShoePrints = { prefix: 'fas', iconName: 'shoe-prints', icon: [640, 512, [], "f54b", "M192 160h32V32h-32c-35.35 0-64 28.65-64 64s28.65 64 64 64zM0 416c0 35.35 28.65 64 64 64h32V352H64c-35.35 0-64 28.65-64 64zm337.46-128c-34.91 0-76.16 13.12-104.73 32-24.79 16.38-44.52 32-104.73 32v128l57.53 15.97c26.21 7.28 53.01 13.12 80.31 15.05 32.69 2.31 65.6.67 97.58-6.2C472.9 481.3 512 429.22 512 384c0-64-84.18-96-174.54-96zM491.42 7.19C459.44.32 426.53-1.33 393.84.99c-27.3 1.93-54.1 7.77-80.31 15.04L256 32v128c60.2 0 79.94 15.62 104.73 32 28.57 18.88 69.82 32 104.73 32C555.82 224 640 192 640 128c0-45.22-39.1-97.3-148.58-120.81z"] }; +var faShoppingBag = { prefix: 'fas', iconName: 'shopping-bag', icon: [448, 512, [], "f290", "M352 160v-32C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128v32H0v272c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V160h-96zm-192-32c0-35.29 28.71-64 64-64s64 28.71 64 64v32H160v-32zm160 120c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm-192 0c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24z"] }; +var faShoppingBasket = { prefix: 'fas', iconName: 'shopping-basket', icon: [576, 512, [], "f291", "M576 216v16c0 13.255-10.745 24-24 24h-8l-26.113 182.788C514.509 462.435 494.257 480 470.37 480H105.63c-23.887 0-44.139-17.565-47.518-41.212L32 256h-8c-13.255 0-24-10.745-24-24v-16c0-13.255 10.745-24 24-24h67.341l106.78-146.821c10.395-14.292 30.407-17.453 44.701-7.058 14.293 10.395 17.453 30.408 7.058 44.701L170.477 192h235.046L326.12 82.821c-10.395-14.292-7.234-34.306 7.059-44.701 14.291-10.395 34.306-7.235 44.701 7.058L484.659 192H552c13.255 0 24 10.745 24 24zM312 392V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm112 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm-224 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24z"] }; +var faShoppingCart = { prefix: 'fas', iconName: 'shopping-cart', icon: [576, 512, [], "f07a", "M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z"] }; +var faShower = { prefix: 'fas', iconName: 'shower', icon: [512, 512, [], "f2cc", "M389.66 135.6L231.6 293.66c-9.37 9.37-24.57 9.37-33.94 0l-11.32-11.32c-9.37-9.37-9.37-24.57 0-33.94l.11-.11c-34.03-40.21-35.16-98.94-3.39-140.38-11.97-7.55-26.14-11.91-41.3-11.91C98.88 96 64 130.88 64 173.76V480H0V173.76C0 95.59 63.59 32 141.76 32c36.93 0 70.61 14.2 95.86 37.42 35.9-11.51 76.5-4.5 106.67 21.03l.11-.11c9.37-9.37 24.57-9.37 33.94 0l11.32 11.32c9.37 9.37 9.37 24.57 0 33.94zM384 208c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm48-16c8.837 0 16 7.163 16 16s-7.163 16-16 16-16-7.163-16-16 7.163-16 16-16zm80 16c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-128 32c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-96 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm64 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16z"] }; +var faSign = { prefix: 'fas', iconName: 'sign', icon: [512, 512, [], "f4d9", "M496 64H128V16c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16v48H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V128h368c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM160 384h320V160H160v224z"] }; +var faSignInAlt = { prefix: 'fas', iconName: 'sign-in-alt', icon: [512, 512, [], "f2f6", "M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z"] }; +var faSignLanguage = { prefix: 'fas', iconName: 'sign-language', icon: [448, 512, [], "f2a7", "M91.434 483.987c-.307-16.018 13.109-29.129 29.13-29.129h62.293v-5.714H56.993c-16.021 0-29.437-13.111-29.13-29.129C28.16 404.491 40.835 392 56.428 392h126.429v-5.714H29.136c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h154.286v-5.714H57.707c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h168.566l-31.085-22.606c-12.762-9.281-15.583-27.149-6.302-39.912 9.281-12.761 27.15-15.582 39.912-6.302l123.361 89.715a34.287 34.287 0 0 1 14.12 27.728v141.136c0 15.91-10.946 29.73-26.433 33.374l-80.471 18.934a137.16 137.16 0 0 1-31.411 3.646H120c-15.593-.001-28.269-12.492-28.566-28.014zm73.249-225.701h36.423l-11.187-8.136c-18.579-13.511-20.313-40.887-3.17-56.536l-13.004-16.7c-9.843-12.641-28.43-15.171-40.88-5.088-12.065 9.771-14.133 27.447-4.553 39.75l36.371 46.71zm283.298-2.103l-5.003-152.452c-.518-15.771-13.722-28.136-29.493-27.619-15.773.518-28.137 13.722-27.619 29.493l1.262 38.415L283.565 11.019c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l76.889 98.745-4.509 3.511-94.79-121.734c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l94.443 121.288-4.509 3.511-77.675-99.754c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l52.053 66.849c12.497-8.257 29.055-8.285 41.69.904l123.36 89.714c10.904 7.93 17.415 20.715 17.415 34.198v16.999l61.064-47.549a34.285 34.285 0 0 0 13.202-28.177z"] }; +var faSignOutAlt = { prefix: 'fas', iconName: 'sign-out-alt', icon: [512, 512, [], "f2f5", "M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"] }; +var faSignal = { prefix: 'fas', iconName: 'signal', icon: [640, 512, [], "f012", "M36 384h56c6.6 0 12 5.4 12 12v104c0 6.6-5.4 12-12 12H36c-6.6 0-12-5.4-12-12V396c0-6.6 5.4-12 12-12zm116-36v152c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V348c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-80v232c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V268c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-112v344c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V156c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zM536 12v488c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V12c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12z"] }; +var faSitemap = { prefix: 'fas', iconName: 'sitemap', icon: [640, 512, [], "f0e8", "M128 352H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm-24-80h192v48h48v-48h192v48h48v-57.59c0-21.17-17.23-38.41-38.41-38.41H344v-64h40c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H256c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h40v64H94.41C73.23 224 56 241.23 56 262.41V320h48v-48zm264 80h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm240 0h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"] }; +var faSkull = { prefix: 'fas', iconName: 'skull', icon: [512, 512, [], "f54c", "M256 0C114.6 0 0 100.3 0 224c0 70.1 36.9 132.6 94.5 173.7 9.6 6.9 15.2 18.1 13.5 29.9l-9.4 66.2c-1.4 9.6 6 18.2 15.7 18.2H192v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h64v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h77.7c9.7 0 17.1-8.6 15.7-18.2l-9.4-66.2c-1.7-11.7 3.8-23 13.5-29.9C475.1 356.6 512 294.1 512 224 512 100.3 397.4 0 256 0zm-96 320c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm192 0c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64z"] }; +var faSlidersH = { prefix: 'fas', iconName: 'sliders-h', icon: [512, 512, [], "f1de", "M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z"] }; +var faSmile = { prefix: 'fas', iconName: 'smile', icon: [496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-5.7-6.8-4.7-16.9 2-22.5 6.8-5.7 16.9-4.7 22.5 2 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c5.7-6.8 15.7-7.7 22.5-2 6.9 5.7 7.8 15.8 2.2 22.5z"] }; +var faSmoking = { prefix: 'fas', iconName: 'smoking', icon: [640, 512, [], "f48d", "M632 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8zM553.3 87.1c-5.7-3.8-9.3-10-9.3-16.8V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v62.3c0 22 10.2 43.4 28.6 55.4 42.2 27.3 67.4 73.8 67.4 124V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-65.5-32.4-126.2-86.7-162.6zM432 352H48c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h384c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zm-32 112H224v-64h176v64zm87.7-322.4C463.8 125 448 99.3 448 70.3V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v66.4c0 43.7 24.6 81.6 60.3 106.7 22.4 15.7 35.7 41.2 35.7 68.6V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-43.3-21-83.4-56.3-108.1zM536 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8z"] }; +var faSmokingBan = { prefix: 'fas', iconName: 'smoking-ban', icon: [512, 512, [], "f54d", "M96 304c0 8.8 7.2 16 16 16h117.5l-96-96H112c-8.8 0-16 7.2-16 16v64zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 448c-105.9 0-192-86.1-192-192 0-41.4 13.3-79.7 35.7-111.1l267.4 267.4C335.7 434.7 297.4 448 256 448zm45.2-192H384v32h-50.8l-32-32zm111.1 111.1L365.2 320H400c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16H269.2L144.9 99.7C176.3 77.3 214.6 64 256 64c105.9 0 192 86.1 192 192 0 41.4-13.3 79.7-35.7 111.1zM320.6 128c-15.6 0-28.6-11.2-31.4-25.9-.7-3.6-4-6.1-7.7-6.1h-16.2c-5 0-8.7 4.5-8 9.4 4.6 30.9 31.2 54.6 63.3 54.6 15.6 0 28.6 11.2 31.4 25.9.7 3.6 4 6.1 7.7 6.1h16.2c5 0 8.7-4.5 8-9.4-4.6-30.9-31.2-54.6-63.3-54.6z"] }; +var faSnowflake = { prefix: 'fas', iconName: 'snowflake', icon: [448, 512, [], "f2dc", "M444.816 301.639a24.12 24.12 0 0 0 2.661-16.978c-2.725-12.966-15.339-21.245-28.174-18.492l-87.407 25.046L264 256l67.896-35.215 87.407 25.046c12.835 2.753 25.449-5.526 28.174-18.492 2.725-12.966-5.471-25.708-18.305-28.461l-47.477-7.137 53.077-30.956c11.363-6.627 15.257-21.306 8.696-32.785-6.561-11.479-21.091-15.412-32.454-8.785l-53.077 30.956 17.621-45.104c4.057-12.606-2.768-26.146-15.247-30.245-12.478-4.099-25.883 2.797-29.94 15.402l-22.232 88.99-60.38 35.215V144l65.175-63.945c8.778-9.852 7.987-25.027-1.766-33.894-9.753-8.867-24.775-8.068-33.552 1.784l-29.857 37.967V24c0-13.255-10.637-24-23.758-24s-23.758 10.745-23.758 24v61.912l-29.857-37.967c-8.779-9.852-23.799-10.652-33.552-1.784-9.753 8.867-10.543 24.042-1.766 33.894L200.242 144v70.431l-60.38-35.215-22.232-88.99c-4.057-12.605-17.462-19.501-29.94-15.402-12.478 4.099-19.304 17.64-15.247 30.245l17.62 45.104-53.077-30.956c-11.363-6.627-25.893-2.694-32.454 8.785s-2.667 26.157 8.696 32.785l53.077 30.956-47.477 7.137C5.993 201.634-2.203 214.375.523 227.341c2.725 12.965 15.339 21.245 28.174 18.492l87.407-25.046L184 256l-67.896 35.215-87.406-25.045c-12.835-2.753-25.449 5.526-28.174 18.492-2.725 12.967 5.47 25.708 18.305 28.461l47.477 7.137-53.077 30.956C1.866 357.843-2.027 372.521 4.533 384s21.091 15.412 32.454 8.785l53.077-30.956-17.62 45.104a24.157 24.157 0 0 0 2.022 19.428c2.831 4.953 7.416 8.909 13.224 10.816 12.478 4.099 25.883-2.797 29.94-15.402l22.232-88.99 60.38-35.215V368l-65.175 63.945c-8.778 9.852-7.987 25.027 1.766 33.894 9.754 8.868 24.774 8.068 33.552-1.784l29.857-37.967V488c0 13.255 10.637 24 23.758 24s23.758-10.745 23.758-24v-61.912l29.857 37.967A23.59 23.59 0 0 0 295.282 472a23.534 23.534 0 0 0 15.885-6.161c9.753-8.867 10.544-24.042 1.766-33.894L247.758 368v-70.431l60.38 35.215 22.232 88.99c4.057 12.605 17.462 19.501 29.94 15.402 12.479-4.099 19.304-17.64 15.247-30.245l-17.621-45.104 53.077 30.956c11.363 6.627 25.893 2.694 32.454-8.785s2.667-26.157-8.696-32.785l-53.077-30.956 47.477-7.137c6.86-1.469 12.394-5.793 15.645-11.481z"] }; +var faSort = { prefix: 'fas', iconName: 'sort', icon: [320, 512, [], "f0dc", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z"] }; +var faSortAlphaDown = { prefix: 'fas', iconName: 'sort-alpha-down', icon: [448, 512, [], "f15d", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zm119.075-180.007A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z"] }; +var faSortAlphaUp = { prefix: 'fas', iconName: 'sort-alpha-up', icon: [448, 512, [], "f15e", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zm301.671 98.621A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z"] }; +var faSortAmountDown = { prefix: 'fas', iconName: 'sort-amount-down', icon: [512, 512, [], "f160", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z"] }; +var faSortAmountUp = { prefix: 'fas', iconName: 'sort-amount-up', icon: [512, 512, [], "f161", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z"] }; +var faSortDown = { prefix: 'fas', iconName: 'sort-down', icon: [320, 512, [], "f0dd", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z"] }; +var faSortNumericDown = { prefix: 'fas', iconName: 'sort-numeric-down', icon: [448, 512, [], "f162", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM175.984 368H128V48c0-8.837-7.163-16-16-16H80c-8.837 0-16 7.163-16 16v320H16.019c-14.212 0-21.384 17.244-11.314 27.314l79.981 80.002c6.245 6.245 16.38 6.247 22.627 0l79.984-80.002c10.05-10.05 2.928-27.314-11.313-27.314z"] }; +var faSortNumericUp = { prefix: 'fas', iconName: 'sort-numeric-up', icon: [448, 512, [], "f163", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM16.016 144H64v320c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144h47.981c14.212 0 21.384-17.244 11.314-27.314l-79.981-80.002c-6.245-6.245-16.38-6.247-22.627 0L4.702 116.686C-5.347 126.736 1.775 144 16.016 144z"] }; +var faSortUp = { prefix: 'fas', iconName: 'sort-up', icon: [320, 512, [], "f0de", "M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z"] }; +var faSpaceShuttle = { prefix: 'fas', iconName: 'space-shuttle', icon: [640, 512, [], "f197", "M592.604 208.244C559.735 192.836 515.777 184 472 184H186.327c-4.952-6.555-10.585-11.978-16.72-16H376C229.157 137.747 219.403 32 96.003 32H96v128H80V32c-26.51 0-48 28.654-48 64v64c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v16c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v64c0 35.346 21.49 64 48 64V352h16v128h.003c123.4 0 133.154-105.747 279.997-136H169.606c6.135-4.022 11.768-9.445 16.72-16H472c43.777 0 87.735-8.836 120.604-24.244C622.282 289.845 640 271.992 640 256s-17.718-33.845-47.396-47.756zM488 296a8 8 0 0 1-8-8v-64a8 8 0 0 1 8-8c31.909 0 31.942 80 0 80z"] }; +var faSpinner = { prefix: 'fas', iconName: 'spinner', icon: [512, 512, [], "f110", "M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z"] }; +var faSquare = { prefix: 'fas', iconName: 'square', icon: [448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"] }; +var faSquareFull = { prefix: 'fas', iconName: 'square-full', icon: [512, 512, [], "f45c", "M512 512H0V0h512v512z"] }; +var faStar = { prefix: 'fas', iconName: 'star', icon: [576, 512, [], "f005", "M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z"] }; +var faStarHalf = { prefix: 'fas', iconName: 'star-half', icon: [576, 512, [], "f089", "M288 0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6V0z"] }; +var faStepBackward = { prefix: 'fas', iconName: 'step-backward', icon: [448, 512, [], "f048", "M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z"] }; +var faStepForward = { prefix: 'fas', iconName: 'step-forward', icon: [448, 512, [], "f051", "M384 44v424c0 6.6-5.4 12-12 12h-48c-6.6 0-12-5.4-12-12V291.6l-195.5 181C95.9 489.7 64 475.4 64 448V64c0-27.4 31.9-41.7 52.5-24.6L312 219.3V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12z"] }; +var faStethoscope = { prefix: 'fas', iconName: 'stethoscope', icon: [512, 512, [], "f0f1", "M447.1 112c-34.2.5-62.3 28.4-63 62.6-.5 24.3 12.5 45.6 32 56.8V344c0 57.3-50.2 104-112 104-60 0-109.2-44.1-111.9-99.2C265 333.8 320 269.2 320 192V36.6c0-11.4-8.1-21.3-19.3-23.5L237.8.5c-13-2.6-25.6 5.8-28.2 18.8L206.4 35c-2.6 13 5.8 25.6 18.8 28.2l30.7 6.1v121.4c0 52.9-42.2 96.7-95.1 97.2-53.4.5-96.9-42.7-96.9-96V69.4l30.7-6.1c13-2.6 21.4-15.2 18.8-28.2l-3.1-15.7C107.7 6.4 95.1-2 82.1.6L19.3 13C8.1 15.3 0 25.1 0 36.6V192c0 77.3 55.1 142 128.1 156.8C130.7 439.2 208.6 512 304 512c97 0 176-75.4 176-168V231.4c19.1-11.1 32-31.7 32-55.4 0-35.7-29.2-64.5-64.9-64zm.9 80c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"] }; +var faStickyNote = { prefix: 'fas', iconName: 'sticky-note', icon: [448, 512, [], "f249", "M312 320h136V56c0-13.3-10.7-24-24-24H24C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h264V344c0-13.2 10.8-24 24-24zm129 55l-98 98c-4.5 4.5-10.6 7-17 7h-6V352h128v6.1c0 6.3-2.5 12.4-7 16.9z"] }; +var faStop = { prefix: 'fas', iconName: 'stop', icon: [448, 512, [], "f04d", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"] }; +var faStopCircle = { prefix: 'fas', iconName: 'stop-circle', icon: [512, 512, [], "f28d", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z"] }; +var faStopwatch = { prefix: 'fas', iconName: 'stopwatch', icon: [448, 512, [], "f2f2", "M432 304c0 114.9-93.1 208-208 208S16 418.9 16 304c0-104 76.3-190.2 176-205.5V64h-28c-6.6 0-12-5.4-12-12V12c0-6.6 5.4-12 12-12h120c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-28v34.5c37.5 5.8 71.7 21.6 99.7 44.6l27.5-27.5c4.7-4.7 12.3-4.7 17 0l28.3 28.3c4.7 4.7 4.7 12.3 0 17l-29.4 29.4-.6.6C419.7 223.3 432 262.2 432 304zm-176 36V188.5c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12V340c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"] }; +var faStore = { prefix: 'fas', iconName: 'store', icon: [616, 512, [], "f54e", "M602 118.6L537.1 15C531.3 5.7 521 0 510 0H106C95 0 84.7 5.7 78.9 15L14 118.6c-33.5 53.5-3.8 127.9 58.8 136.4 4.5.6 9.1.9 13.7.9 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18.1 20.1 44.3 33.1 73.8 33.1 4.7 0 9.2-.3 13.7-.9 62.8-8.4 92.6-82.8 59-136.4zM529.5 288c-10 0-19.9-1.5-29.5-3.8V384H116v-99.8c-9.6 2.2-19.5 3.8-29.5 3.8-6 0-12.1-.4-18-1.2-5.6-.8-11.1-2.1-16.4-3.6V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V283.2c-5.4 1.6-10.8 2.9-16.4 3.6-6.1.8-12.1 1.2-18.2 1.2z"] }; +var faStoreAlt = { prefix: 'fas', iconName: 'store-alt', icon: [640, 512, [], "f54f", "M320 384H128V224H64v256c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V224h-64v160zm314.6-241.8l-85.3-128c-6-8.9-16-14.2-26.7-14.2H117.4c-10.7 0-20.7 5.3-26.6 14.2l-85.3 128c-14.2 21.3 1 49.8 26.6 49.8H608c25.5 0 40.7-28.5 26.6-49.8zM512 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h-64v272z"] }; +var faStream = { prefix: 'fas', iconName: 'stream', icon: [512, 512, [], "f550", "M16 128h416c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H16C7.16 32 0 39.16 0 48v64c0 8.84 7.16 16 16 16zm480 80H80c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm-64 176H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16z"] }; +var faStreetView = { prefix: 'fas', iconName: 'street-view', icon: [512, 512, [], "f21d", "M192 64c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zm112 80h-11.36c-22.711 10.443-49.59 10.894-73.28 0H208c-26.51 0-48 21.49-48 48v104c0 13.255 10.745 24 24 24h16v104c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V320h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48zm85.642 189.152a72.503 72.503 0 0 1-29.01 27.009C391.133 365.251 480 385.854 480 416c0 46.304-167.656 64-224 64-70.303 0-224-20.859-224-64 0-30.123 88.361-50.665 119.367-55.839a72.516 72.516 0 0 1-29.01-27.009C74.959 343.395 0 367.599 0 416c0 77.111 178.658 96 256 96 77.249 0 256-18.865 256-96 0-48.403-74.967-72.606-122.358-82.848z"] }; +var faStrikethrough = { prefix: 'fas', iconName: 'strikethrough', icon: [512, 512, [], "f0cc", "M496 288H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h480c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16zm-214.666 16c27.258 12.937 46.524 28.683 46.524 56.243 0 33.108-28.977 53.676-75.621 53.676-32.325 0-76.874-12.08-76.874-44.271V368c0-8.837-7.164-16-16-16H113.75c-8.836 0-16 7.163-16 16v19.204c0 66.845 77.717 101.82 154.487 101.82 88.578 0 162.013-45.438 162.013-134.424 0-19.815-3.618-36.417-10.143-50.6H281.334zm-30.952-96c-32.422-13.505-56.836-28.946-56.836-59.683 0-33.92 30.901-47.406 64.962-47.406 42.647 0 64.962 16.593 64.962 32.985V136c0 8.837 7.164 16 16 16h45.613c8.836 0 16-7.163 16-16v-30.318c0-52.438-71.725-79.875-142.575-79.875-85.203 0-150.726 40.972-150.726 125.646 0 22.71 4.665 41.176 12.777 56.547h129.823z"] }; +var faStroopwafel = { prefix: 'fas', iconName: 'stroopwafel', icon: [512, 512, [], "f551", "M188.12 210.74L142.86 256l45.25 45.25L233.37 256l-45.25-45.26zm113.13-22.62L256 142.86l-45.25 45.25L256 233.37l45.25-45.25zm-90.5 135.76L256 369.14l45.26-45.26L256 278.63l-45.25 45.25zM256 0C114.62 0 0 114.62 0 256s114.62 256 256 256 256-114.62 256-256S397.38 0 256 0zm186.68 295.6l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-28.29-28.29-45.25 45.25 33.94 33.94 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-33.94-33.94-45.26 45.26 28.29 28.29c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0L256 414.39l-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l28.29-28.29-45.25-45.26-33.94 33.94 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 33.94-33.94-45.25-45.25-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0L69.32 295.6c-3.12-3.12-3.12-8.19 0-11.31L97.61 256l-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l28.29 28.29 45.25-45.26-33.94-33.94-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 33.94 33.94 45.26-45.25-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0L256 97.61l28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-28.29 28.29 45.26 45.25 33.94-33.94-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-33.94 33.94 45.25 45.26 28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31L414.39 256l28.29 28.28a8.015 8.015 0 0 1 0 11.32zM278.63 256l45.26 45.25L369.14 256l-45.25-45.26L278.63 256z"] }; +var faSubscript = { prefix: 'fas', iconName: 'subscript', icon: [512, 512, [], "f12c", "M395.198 416c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 256c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 96H16C7.163 96 0 88.837 0 80V48c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035A15.999 15.999 0 0 1 204.226 32H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 256H272z"] }; +var faSubway = { prefix: 'fas', iconName: 'subway', icon: [448, 512, [], "f239", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zM200 232V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm200 0V120c0-13.255-10.745-24-24-24H272c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm-48 56c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm-256 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"] }; +var faSuitcase = { prefix: 'fas', iconName: 'suitcase', icon: [512, 512, [], "f0f2", "M128 480h256V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v400zm64-384h128v32H192V96zm320 80v256c0 26.5-21.5 48-48 48h-48V128h48c26.5 0 48 21.5 48 48zM96 480H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h48v352z"] }; +var faSun = { prefix: 'fas', iconName: 'sun', icon: [512, 512, [], "f185", "M274.835 12.646l25.516 62.393c4.213 10.301 16.671 14.349 26.134 8.492l57.316-35.479c15.49-9.588 34.808 4.447 30.475 22.142l-16.03 65.475c-2.647 10.81 5.053 21.408 16.152 22.231l67.224 4.987c18.167 1.348 25.546 24.057 11.641 35.826L441.81 242.26c-8.495 7.19-8.495 20.289 0 27.479l51.454 43.548c13.906 11.769 6.527 34.478-11.641 35.826l-67.224 4.987c-11.099.823-18.799 11.421-16.152 22.231l16.03 65.475c4.332 17.695-14.986 31.73-30.475 22.142l-57.316-35.479c-9.463-5.858-21.922-1.81-26.134 8.492l-25.516 62.393c-6.896 16.862-30.774 16.862-37.67 0l-25.516-62.393c-4.213-10.301-16.671-14.349-26.134-8.492l-57.317 35.479c-15.49 9.588-34.808-4.447-30.475-22.142l16.03-65.475c2.647-10.81-5.053-21.408-16.152-22.231l-67.224-4.987c-18.167-1.348-25.546-24.057-11.641-35.826L70.19 269.74c8.495-7.19 8.495-20.289 0-27.479l-51.454-43.548c-13.906-11.769-6.527-34.478 11.641-35.826l67.224-4.987c11.099-.823 18.799-11.421 16.152-22.231l-16.03-65.475c-4.332-17.695 14.986-31.73 30.475-22.142l57.317 35.479c9.463 5.858 21.921 1.81 26.134-8.492l25.516-62.393c6.896-16.861 30.774-16.861 37.67 0zM392 256c0-74.991-61.01-136-136-136-74.991 0-136 61.009-136 136s61.009 136 136 136c74.99 0 136-61.009 136-136zm-32 0c0 57.346-46.654 104-104 104s-104-46.654-104-104 46.654-104 104-104 104 46.654 104 104z"] }; +var faSuperscript = { prefix: 'fas', iconName: 'superscript', icon: [512, 512, [], "f12b", "M395.198 256c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 256H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035a16 16 0 0 1 13.598-7.567H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 416H272z"] }; +var faSync = { prefix: 'fas', iconName: 'sync', icon: [512, 512, [], "f021", "M440.935 12.574l3.966 82.766C399.416 41.904 331.674 8 256 8 134.813 8 33.933 94.924 12.296 209.824 10.908 217.193 16.604 224 24.103 224h49.084c5.57 0 10.377-3.842 11.676-9.259C103.407 137.408 172.931 80 256 80c60.893 0 114.512 30.856 146.104 77.801l-101.53-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12h-47.411c-6.853 0-12.315 5.729-11.987 12.574zM256 432c-60.895 0-114.517-30.858-146.109-77.805l101.868 4.871c6.845.327 12.573-5.134 12.573-11.986v-47.412c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12V500c0 6.627 5.373 12 12 12h47.385c6.863 0 12.328-5.745 11.985-12.599l-4.129-82.575C112.725 470.166 180.405 504 256 504c121.187 0 222.067-86.924 243.704-201.824 1.388-7.369-4.308-14.176-11.807-14.176h-49.084c-5.57 0-10.377 3.842-11.676 9.259C408.593 374.592 339.069 432 256 432z"] }; +var faSyncAlt = { prefix: 'fas', iconName: 'sync-alt', icon: [512, 512, [], "f2f1", "M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z"] }; +var faSyringe = { prefix: 'fas', iconName: 'syringe', icon: [512, 512, [], "f48e", "M201.5 174.8l55.7 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-55.7-55.8-45.3 45.3 55.8 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L111 265.2l-26.4 26.4c-17.3 17.3-25.6 41.1-23 65.4l7.1 63.6L2.3 487c-3.1 3.1-3.1 8.2 0 11.3l11.3 11.3c3.1 3.1 8.2 3.1 11.3 0l66.3-66.3 63.6 7.1c23.9 2.6 47.9-5.4 65.4-23l181.9-181.9-135.7-135.7-64.9 65zm308.2-93.3L430.5 2.3c-3.1-3.1-8.2-3.1-11.3 0l-11.3 11.3c-3.1 3.1-3.1 8.2 0 11.3l28.3 28.3-45.3 45.3-56.6-56.6-17-17c-3.1-3.1-8.2-3.1-11.3 0l-33.9 33.9c-3.1 3.1-3.1 8.2 0 11.3l17 17L424.8 223l17 17c3.1 3.1 8.2 3.1 11.3 0l33.9-34c3.1-3.1 3.1-8.2 0-11.3l-73.5-73.5 45.3-45.3 28.3 28.3c3.1 3.1 8.2 3.1 11.3 0l11.3-11.3c3.1-3.2 3.1-8.2 0-11.4z"] }; +var faTable = { prefix: 'fas', iconName: 'table', icon: [512, 512, [], "f0ce", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64v-96h160v96zm0-160H64v-96h160v96zm224 160H288v-96h160v96zm0-160H288v-96h160v96z"] }; +var faTableTennis = { prefix: 'fas', iconName: 'table-tennis', icon: [512, 512, [], "f45d", "M496.2 296.5C527.7 218.7 512 126.2 449 63.1 365.1-21 229-21 145.1 63.1l-56 56.1 211.5 211.5c46.1-62.1 131.5-77.4 195.6-34.2zm-217.9 79.7L57.9 155.9c-27.3 45.3-21.7 105 17.3 144.1l34.5 34.6L6.7 424c-8.6 7.5-9.1 20.7-1 28.8l53.4 53.5c8 8.1 21.2 7.6 28.7-1L177.1 402l35.7 35.7c19.7 19.7 44.6 30.5 70.3 33.3-7.1-17-11-35.6-11-55.1-.1-13.8 2.5-27 6.2-39.7zM416 320c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96z"] }; +var faTablet = { prefix: 'fas', iconName: 'tablet', icon: [448, 512, [], "f10a", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faTabletAlt = { prefix: 'fas', iconName: 'tablet-alt', icon: [448, 512, [], "f3fa", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm176-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h328c6.6 0 12 5.4 12 12v312z"] }; +var faTablets = { prefix: 'fas', iconName: 'tablets', icon: [640, 512, [], "f490", "M160 192C78.9 192 12.5 250.5.1 326.7c-.8 4.8 3.3 9.3 8.3 9.3h303.3c5 0 9.1-4.5 8.3-9.3C307.5 250.5 241.1 192 160 192zm151.6 176H8.4c-5 0-9.1 4.5-8.3 9.3C12.5 453.5 78.9 512 160 512s147.5-58.5 159.9-134.7c.8-4.8-3.3-9.3-8.3-9.3zM593.4 46.6c-56.5-56.5-144.2-61.4-206.9-16-4 2.9-4.3 8.9-.8 12.3L597 254.3c3.5 3.5 9.5 3.2 12.3-.8 45.5-62.7 40.6-150.4-15.9-206.9zM363 65.7c-3.5-3.5-9.5-3.2-12.3.8-45.4 62.7-40.5 150.4 15.9 206.9 56.5 56.5 144.2 61.4 206.9 15.9 4-2.9 4.3-8.9.8-12.3L363 65.7z"] }; +var faTachometerAlt = { prefix: 'fas', iconName: 'tachometer-alt', icon: [576, 512, [], "f3fd", "M75.694 480a48.02 48.02 0 0 1-42.448-25.571C12.023 414.3 0 368.556 0 320 0 160.942 128.942 32 288 32s288 128.942 288 288c0 48.556-12.023 94.3-33.246 134.429A48.018 48.018 0 0 1 500.306 480H75.694zM512 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zM288 128c17.673 0 32-14.327 32-32 0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32zM64 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm65.608-158.392c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm316.784 0c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm-87.078 31.534c-12.627-4.04-26.133 2.92-30.173 15.544l-45.923 143.511C250.108 322.645 224 350.264 224 384c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64 0-19.773-8.971-37.447-23.061-49.187l45.919-143.498c4.039-12.625-2.92-26.133-15.544-30.173z"] }; +var faTag = { prefix: 'fas', iconName: 'tag', icon: [512, 512, [], "f02b", "M0 252.118V48C0 21.49 21.49 0 48 0h204.118a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882L293.823 497.941c-18.745 18.745-49.137 18.745-67.882 0L14.059 286.059A48 48 0 0 1 0 252.118zM112 64c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"] }; +var faTags = { prefix: 'fas', iconName: 'tags', icon: [640, 512, [], "f02c", "M497.941 225.941L286.059 14.059A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v204.118a48 48 0 0 0 14.059 33.941l211.882 211.882c18.744 18.745 49.136 18.746 67.882 0l204.118-204.118c18.745-18.745 18.745-49.137 0-67.882zM112 160c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm513.941 133.823L421.823 497.941c-18.745 18.745-49.137 18.745-67.882 0l-.36-.36L527.64 323.522c16.999-16.999 26.36-39.6 26.36-63.64s-9.362-46.641-26.36-63.64L331.397 0h48.721a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882z"] }; +var faTape = { prefix: 'fas', iconName: 'tape', icon: [640, 512, [], "f4db", "M224 192c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm400 224H380.6c41.5-40.7 67.4-97.3 67.4-160 0-123.7-100.3-224-224-224S0 132.3 0 256s100.3 224 224 224h400c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400-64c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96z"] }; +var faTasks = { prefix: 'fas', iconName: 'tasks', icon: [512, 512, [], "f0ae", "M208 132h288c8.8 0 16-7.2 16-16V76c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zM64 368c-26.5 0-48.6 21.5-48.6 48s22.1 48 48.6 48 48-21.5 48-48-21.5-48-48-48zm92.5-299l-72.2 72.2-15.6 15.6c-4.7 4.7-12.9 4.7-17.6 0L3.5 109.4c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.3c4.7-4.7 12.3-4.7 17 0l17 16.5c4.6 4.7 4.6 12.3-.1 17zm0 159.6l-72.2 72.2-15.7 15.7c-4.7 4.7-12.9 4.7-17.6 0L3.5 269c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.7c4.7-4.7 12.3-4.7 17 0l17 17c4.6 4.6 4.6 12.2-.1 16.9z"] }; +var faTaxi = { prefix: 'fas', iconName: 'taxi', icon: [512, 512, [], "f1ba", "M461.951 243.865l-21.816-87.268A79.885 79.885 0 0 0 362.522 96H352V56c0-13.255-10.745-24-24-24H184c-13.255 0-24 10.745-24 24v40h-10.522a79.885 79.885 0 0 0-77.612 60.597L50.05 243.865C25.515 252.823 8 276.366 8 304v48c0 20.207 9.374 38.214 24 49.943V456c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-40h256v40c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-54.057c14.626-11.729 24-29.737 24-49.943v-48c0-27.634-17.515-51.177-42.049-60.135zM149.478 160h213.045a15.975 15.975 0 0 1 15.522 12.12l16.97 67.88h-278.03l16.97-67.881A15.976 15.976 0 0 1 149.478 160zM132 336c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm320 0c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36z"] }; +var faTerminal = { prefix: 'fas', iconName: 'terminal', icon: [640, 512, [], "f120", "M257.981 272.971L63.638 467.314c-9.373 9.373-24.569 9.373-33.941 0L7.029 444.647c-9.357-9.357-9.375-24.522-.04-33.901L161.011 256 6.99 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L257.981 239.03c9.373 9.372 9.373 24.568 0 33.941zM640 456v-32c0-13.255-10.745-24-24-24H312c-13.255 0-24 10.745-24 24v32c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z"] }; +var faTextHeight = { prefix: 'fas', iconName: 'text-height', icon: [576, 512, [], "f034", "M16 32h288c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96h-54.761v320H232c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H88c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm475.308 4.685l79.995 80.001C581.309 126.693 574.297 144 559.99 144H512v224h48c15.639 0 20.635 17.991 11.313 27.314l-79.995 80.001c-6.247 6.247-16.381 6.245-22.626 0l-79.995-80.001C378.691 385.307 385.703 368 400.01 368H448V144h-48c-15.639 0-20.635-17.991-11.313-27.314l79.995-80.001c6.247-6.248 16.381-6.245 22.626 0z"] }; +var faTextWidth = { prefix: 'fas', iconName: 'text-width', icon: [448, 512, [], "f035", "M16 32h416c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96H261.743v128H296c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H152c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm427.315 340.682l-80.001-79.995C353.991 283.365 336 288.362 336 304v48H112v-47.99c0-14.307-17.307-21.319-27.314-11.313L4.685 372.692c-6.245 6.245-6.247 16.379 0 22.626l80.001 79.995C94.009 484.635 112 479.638 112 464v-48h224v47.99c0 14.307 17.307 21.319 27.314 11.313l80.001-79.995c6.245-6.245 6.248-16.379 0-22.626z"] }; +var faTh = { prefix: 'fas', iconName: 'th', icon: [512, 512, [], "f00a", "M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z"] }; +var faThLarge = { prefix: 'fas', iconName: 'th-large', icon: [512, 512, [], "f009", "M296 32h192c13.255 0 24 10.745 24 24v160c0 13.255-10.745 24-24 24H296c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24zm-80 0H24C10.745 32 0 42.745 0 56v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zM0 296v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm296 184h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H296c-13.255 0-24 10.745-24 24v160c0 13.255 10.745 24 24 24z"] }; +var faThList = { prefix: 'fas', iconName: 'th-list', icon: [512, 512, [], "f00b", "M149.333 216v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zM125.333 32H24C10.745 32 0 42.745 0 56v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zm80 448H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm-24-424v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24zm24 264H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24z"] }; +var faThermometer = { prefix: 'fas', iconName: 'thermometer', icon: [512, 512, [], "f491", "M476.8 20.4c-37.5-30.7-95.5-26.3-131.9 10.2l-45.7 46 50.5 50.5c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.4-50.5-45.1 45.4 50.3 50.4c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L209 167.4l-45.1 45.4L214 263c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.1-50.2L96 281.1V382L7 471c-9.4 9.4-9.4 24.6 0 33.9 9.4 9.4 24.6 9.4 33.9 0l89-89h99.9L484 162.6c34.9-34.9 42.2-101.5-7.2-142.2z"] }; +var faThermometerEmpty = { prefix: 'fas', iconName: 'thermometer-empty', icon: [256, 512, [], "f2cb", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; +var faThermometerFull = { prefix: 'fas', iconName: 'thermometer-full', icon: [256, 512, [], "f2c7", "M224 96c0-53.019-42.981-96-96-96S32 42.981 32 96v203.347C12.225 321.756.166 351.136.002 383.333c-.359 70.303 56.787 128.176 127.089 128.664.299.002.61.003.909.003 70.698 0 128-57.304 128-128 0-32.459-12.088-62.09-32-84.653V96zm-96 368l-.576-.002c-43.86-.304-79.647-36.544-79.423-80.42.173-33.98 19.266-51.652 31.999-66.08V96c0-26.467 21.533-48 48-48s48 21.533 48 48v221.498c12.63 14.312 32 32.164 32 66.502 0 44.112-35.888 80-80 80zm64-80c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V96c0-17.673 14.327-32 32-32s32 14.327 32 32v232.583c19.124 11.068 32 31.732 32 55.417z"] }; +var faThermometerHalf = { prefix: 'fas', iconName: 'thermometer-half', icon: [256, 512, [], "f2c9", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V224c0-17.673 14.327-32 32-32s32 14.327 32 32v104.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; +var faThermometerQuarter = { prefix: 'fas', iconName: 'thermometer-quarter', icon: [256, 512, [], "f2ca", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V288c0-17.673 14.327-32 32-32s32 14.327 32 32v40.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; +var faThermometerThreeQuarters = { prefix: 'fas', iconName: 'thermometer-three-quarters', icon: [256, 512, [], "f2c8", "M192 384c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-23.685 12.876-44.349 32-55.417V160c0-17.673 14.327-32 32-32s32 14.327 32 32v168.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; +var faThumbsDown = { prefix: 'fas', iconName: 'thumbs-down', icon: [512, 512, [], "f165", "M0 56v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56zm40 200c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24zm272 256c-20.183 0-29.485-39.293-33.931-57.795-5.206-21.666-10.589-44.07-25.393-58.902-32.469-32.524-49.503-73.967-89.117-113.111a11.98 11.98 0 0 1-3.558-8.521V59.901c0-6.541 5.243-11.878 11.783-11.998 15.831-.29 36.694-9.079 52.651-16.178C256.189 17.598 295.709.017 343.995 0h2.844c42.777 0 93.363.413 113.774 29.737 8.392 12.057 10.446 27.034 6.148 44.632 16.312 17.053 25.063 48.863 16.382 74.757 17.544 23.432 19.143 56.132 9.308 79.469l.11.11c11.893 11.949 19.523 31.259 19.439 49.197-.156 30.352-26.157 58.098-59.553 58.098H350.723C358.03 364.34 384 388.132 384 430.548 384 504 336 512 312 512z"] }; +var faThumbsUp = { prefix: 'fas', iconName: 'thumbs-up', icon: [512, 512, [], "f164", "M104 224H24c-13.255 0-24 10.745-24 24v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V248c0-13.255-10.745-24-24-24zM64 472c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zM384 81.452c0 42.416-25.97 66.208-33.277 94.548h101.723c33.397 0 59.397 27.746 59.553 58.098.084 17.938-7.546 37.249-19.439 49.197l-.11.11c9.836 23.337 8.237 56.037-9.308 79.469 8.681 25.895-.069 57.704-16.382 74.757 4.298 17.598 2.244 32.575-6.148 44.632C440.202 511.587 389.616 512 346.839 512l-2.845-.001c-48.287-.017-87.806-17.598-119.56-31.725-15.957-7.099-36.821-15.887-52.651-16.178-6.54-.12-11.783-5.457-11.783-11.998v-213.77c0-3.2 1.282-6.271 3.558-8.521 39.614-39.144 56.648-80.587 89.117-113.111 14.804-14.832 20.188-37.236 25.393-58.902C282.515 39.293 291.817 0 312 0c24 0 72 8 72 81.452z"] }; +var faThumbtack = { prefix: 'fas', iconName: 'thumbtack', icon: [384, 512, [], "f08d", "M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z"] }; +var faTicketAlt = { prefix: 'fas', iconName: 'ticket-alt', icon: [576, 512, [], "f3ff", "M128 160h320v192H128V160zm400 96c0 26.51 21.49 48 48 48v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c26.51 0 48-21.49 48-48s-21.49-48-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v96c-26.51 0-48 21.49-48 48zm-48-104c0-13.255-10.745-24-24-24H120c-13.255 0-24 10.745-24 24v208c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V152z"] }; +var faTimes = { prefix: 'fas', iconName: 'times', icon: [352, 512, [], "f00d", "M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"] }; +var faTimesCircle = { prefix: 'fas', iconName: 'times-circle', icon: [512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z"] }; +var faTint = { prefix: 'fas', iconName: 'tint', icon: [384, 512, [], "f043", "M192 512c-98.435 0-178.087-79.652-178.087-178.087 0-111.196 101.194-154.065 148.522-311.825 9.104-30.116 51.099-28.778 59.13 0 47.546 158.486 148.522 200.069 148.522 311.825C370.087 432.348 290.435 512 192 512zm-42.522-171.826c-1.509-5.533-9.447-5.532-10.956 0-9.223 29.425-27.913 37.645-27.913 58.435C110.609 417.13 125.478 432 144 432s33.391-14.87 33.391-33.391c0-20.839-18.673-28.956-27.913-58.435z"] }; +var faToggleOff = { prefix: 'fas', iconName: 'toggle-off', icon: [576, 512, [], "f204", "M384 64H192C85.961 64 0 149.961 0 256s85.961 192 192 192h192c106.039 0 192-85.961 192-192S490.039 64 384 64zM64 256c0-70.741 57.249-128 128-128 70.741 0 128 57.249 128 128 0 70.741-57.249 128-128 128-70.741 0-128-57.249-128-128zm320 128h-48.905c65.217-72.858 65.236-183.12 0-256H384c70.741 0 128 57.249 128 128 0 70.74-57.249 128-128 128z"] }; +var faToggleOn = { prefix: 'fas', iconName: 'toggle-on', icon: [576, 512, [], "f205", "M576 256c0 106.039-85.961 192-192 192H192C85.961 448 0 362.039 0 256S85.961 64 192 64h192c106.039 0 192 85.961 192 192zM384 128c-70.741 0-128 57.249-128 128 0 70.741 57.249 128 128 128 70.741 0 128-57.249 128-128 0-70.741-57.249-128-128-128"] }; +var faToolbox = { prefix: 'fas', iconName: 'toolbox', icon: [512, 512, [], "f552", "M502.63 214.63l-45.25-45.25c-6-6-14.14-9.37-22.63-9.37H384V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v80H77.25c-8.49 0-16.62 3.37-22.63 9.37L9.37 214.63c-6 6-9.37 14.14-9.37 22.63V320h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-82.75c0-8.48-3.37-16.62-9.37-22.62zM320 160H192V96h128v64zm64 208c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H192v16c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H0v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96H384v16z"] }; +var faTrademark = { prefix: 'fas', iconName: 'trademark', icon: [640, 512, [], "f25c", "M97.119 163.133H12c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h248.559c6.627 0 12 5.373 12 12v43.133c0 6.627-5.373 12-12 12H175.44V404c0 6.627-5.373 12-12 12h-54.322c-6.627 0-12-5.373-12-12V163.133zM329.825 96h65.425a12 12 0 0 1 11.346 8.093l43.759 127.068c7.161 20.588 16.111 52.812 16.111 52.812h.896s8.95-32.224 16.111-52.812l43.758-127.068A12 12 0 0 1 538.577 96h65.41a12 12 0 0 1 11.961 11.03l24.012 296c.567 6.987-4.951 12.97-11.961 12.97h-54.101a12 12 0 0 1-11.972-11.182l-9.082-132.93c-1.79-24.168 0-53.706 0-53.706h-.896s-10.741 33.566-17.902 53.706l-30.7 84.731a12 12 0 0 1-11.282 7.912h-50.302a12 12 0 0 1-11.282-7.912l-30.7-84.731c-7.161-20.14-17.903-53.706-17.903-53.706h-.895s1.79 29.538 0 53.706l-9.082 132.93c-.428 6.295-5.66 11.182-11.97 11.182H305.4c-7.017 0-12.536-5.994-11.959-12.987l24.425-296A11.999 11.999 0 0 1 329.825 96z"] }; +var faTrain = { prefix: 'fas', iconName: 'train', icon: [448, 512, [], "f238", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zm-48 136V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24zm-176 64c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56z"] }; +var faTransgender = { prefix: 'fas', iconName: 'transgender', icon: [384, 512, [], "f224", "M372 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C198.5 104.1 172.2 96 144 96 64.5 96 0 160.5 0 240c0 68.5 47.9 125.9 112 140.4V408H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM144 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faTransgenderAlt = { prefix: 'fas', iconName: 'transgender-alt', icon: [480, 512, [], "f225", "M468 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C294.5 104.1 268.2 96 240 96c-28.2 0-54.5 8.1-76.7 22.1l-16.5-16.5 19.8-19.8c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0l-19.8 19.8-19-19 16.9-16.9C107.1 12.9 101.7 0 91 0H12C5.4 0 0 5.4 0 12v79c0 10.7 12.9 16 20.5 8.5l16.9-16.9 19 19-19.8 19.8c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l19.8-19.8 16.5 16.5C104.1 185.5 96 211.8 96 240c0 68.5 47.9 125.9 112 140.4V408h-36c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM240 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faTrash = { prefix: 'fas', iconName: 'trash', icon: [448, 512, [], "f1f8", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm415.2 56.7L394.8 467c-1.6 25.3-22.6 45-47.9 45H101.1c-25.3 0-46.3-19.7-47.9-45L32.8 140.7c-.4-6.9 5.1-12.7 12-12.7h358.5c6.8 0 12.3 5.8 11.9 12.7z"] }; +var faTrashAlt = { prefix: 'fas', iconName: 'trash-alt', icon: [448, 512, [], "f2ed", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm416 56v324c0 26.5-21.5 48-48 48H80c-26.5 0-48-21.5-48-48V140c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12zm-272 68c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208z"] }; +var faTree = { prefix: 'fas', iconName: 'tree', icon: [384, 512, [], "f1bb", "M377.33 375.429L293.906 288H328c21.017 0 31.872-25.207 17.448-40.479L262.79 160H296c20.878 0 31.851-24.969 17.587-40.331l-104-112.003c-9.485-10.214-25.676-10.229-35.174 0l-104 112.003C56.206 134.969 67.037 160 88 160h33.21l-82.659 87.521C24.121 262.801 34.993 288 56 288h34.094L6.665 375.429C-7.869 390.655 2.925 416 24.025 416H144c0 32.781-11.188 49.26-33.995 67.506C98.225 492.93 104.914 512 120 512h144c15.086 0 21.776-19.069 9.995-28.494-19.768-15.814-33.992-31.665-33.995-67.496V416h119.97c21.05 0 31.929-25.309 17.36-40.571z"] }; +var faTrophy = { prefix: 'fas', iconName: 'trophy', icon: [576, 512, [], "f091", "M552 64H448V24c0-13.3-10.7-24-24-24H152c-13.3 0-24 10.7-24 24v40H24C10.7 64 0 74.7 0 88v56c0 35.7 22.5 72.4 61.9 100.7 31.5 22.7 69.8 37.1 110 41.7C203.3 338.5 240 360 240 360v72h-48c-35.3 0-64 20.7-64 56v12c0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12v-12c0-35.3-28.7-56-64-56h-48v-72s36.7-21.5 68.1-73.6c40.3-4.6 78.6-19 110-41.7 39.3-28.3 61.9-65 61.9-100.7V88c0-13.3-10.7-24-24-24zM99.3 192.8C74.9 175.2 64 155.6 64 144v-16h64.2c1 32.6 5.8 61.2 12.8 86.2-15.1-5.2-29.2-12.4-41.7-21.4zM512 144c0 16.1-17.7 36.1-35.3 48.8-12.5 9-26.7 16.2-41.8 21.4 7-25 11.8-53.6 12.8-86.2H512v16z"] }; +var faTruck = { prefix: 'fas', iconName: 'truck', icon: [640, 512, [], "f0d1", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"] }; +var faTruckLoading = { prefix: 'fas', iconName: 'truck-loading', icon: [640, 512, [], "f4de", "M50.2 375.6c2.3 8.5 11.1 13.6 19.6 11.3l216.4-58c8.5-2.3 13.6-11.1 11.3-19.6l-49.7-185.5c-2.3-8.5-11.1-13.6-19.6-11.3L151 133.3l24.8 92.7-61.8 16.5-24.8-92.7-77.3 20.7C3.4 172.8-1.7 181.6.6 190.1l49.6 185.5zM384 0c-17.7 0-32 14.3-32 32v323.6L5.9 450c-4.3 1.2-6.8 5.6-5.6 9.8l12.6 46.3c1.2 4.3 5.6 6.8 9.8 5.6l393.7-107.4C418.8 464.1 467.6 512 528 512c61.9 0 112-50.1 112-112V0H384zm144 448c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; +var faTruckMoving = { prefix: 'fas', iconName: 'truck-moving', icon: [640, 512, [], "f4df", "M621.3 237.3l-58.5-58.5c-12-12-28.3-18.7-45.3-18.7H480V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v336c0 44.2 35.8 80 80 80 26.3 0 49.4-12.9 64-32.4 14.6 19.6 37.7 32.4 64 32.4 44.2 0 80-35.8 80-80 0-5.5-.6-10.8-1.6-16h163.2c-1.1 5.2-1.6 10.5-1.6 16 0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H624c8.8 0 16-7.2 16-16v-85.5c0-17-6.7-33.2-18.7-45.2zM80 432c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm128 0c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm272-224h37.5c4.3 0 8.3 1.7 11.3 4.7l43.3 43.3H480v-48zm48 224c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32z"] }; +var faTshirt = { prefix: 'fas', iconName: 'tshirt', icon: [640, 512, [], "f553", "M631.2 96.5L436.5 0C416.4 27.8 371.9 47.2 320 47.2S223.6 27.8 203.5 0L8.8 96.5c-7.9 4-11.1 13.6-7.2 21.5l57.2 114.5c4 7.9 13.6 11.1 21.5 7.2l56.6-27.7c10.6-5.2 23 2.5 23 14.4V480c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V226.3c0-11.8 12.4-19.6 23-14.4l56.6 27.7c7.9 4 17.5.8 21.5-7.2L638.3 118c4-7.9.8-17.6-7.1-21.5z"] }; +var faTty = { prefix: 'fas', iconName: 'tty', icon: [512, 512, [], "f1e4", "M5.37 103.822c138.532-138.532 362.936-138.326 501.262 0 6.078 6.078 7.074 15.496 2.583 22.681l-43.214 69.138a18.332 18.332 0 0 1-22.356 7.305l-86.422-34.569a18.335 18.335 0 0 1-11.434-18.846L351.741 90c-62.145-22.454-130.636-21.986-191.483 0l5.953 59.532a18.331 18.331 0 0 1-11.434 18.846l-86.423 34.568a18.334 18.334 0 0 1-22.356-7.305L2.787 126.502a18.333 18.333 0 0 1 2.583-22.68zM96 308v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H92c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zM96 500v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H140c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"] }; +var faTv = { prefix: 'fas', iconName: 'tv', icon: [640, 512, [], "f26c", "M592 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h245.1v32h-160c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32-14.3 32-32s-14.3-32-32-32h-160v-32H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h512v288z"] }; +var faUmbrella = { prefix: 'fas', iconName: 'umbrella', icon: [576, 512, [], "f0e9", "M557.011 267.631c-51.432-45.217-107.572-43.698-158.567 30.731-5.298 7.861-14.906 7.165-19.736 0-2.483-3.624-32.218-60.808-90.708-60.808-45.766 0-70.542 31.378-90.709 60.808-4.829 7.165-14.436 7.861-19.734 0-50.904-74.285-106.613-76.406-158.567-30.731-10.21 8.264-20.912-1.109-18.696-9.481C32.146 134.573 158.516 64.612 288.001 64.612c128.793 0 256.546 69.961 287.706 193.538 2.206 8.322-8.426 17.793-18.696 9.481zM256 261.001V416c0 17.645-14.355 32-32 32s-32-14.355-32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 52.935 43.065 96 96 96s96-43.065 96-96V261.288c-21.836-10.806-45.425-9.737-64-.287zm64-211.007V32c0-17.673-14.327-32-32-32s-32 14.327-32 32v17.987a372.105 372.105 0 0 1 64 .007z"] }; +var faUnderline = { prefix: 'fas', iconName: 'underline', icon: [448, 512, [], "f0cd", "M224.264 388.24c-91.669 0-156.603-51.165-156.603-151.392V64H39.37c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h137.39c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.813v172.848c0 53.699 28.314 79.444 76.317 79.444 46.966 0 75.796-25.434 75.796-79.965V64h-28.291c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h136.868c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.291v172.848c0 99.405-64.881 151.392-156.082 151.392zM16 448h416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16z"] }; +var faUndo = { prefix: 'fas', iconName: 'undo', icon: [512, 512, [], "f0e2", "M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z"] }; +var faUndoAlt = { prefix: 'fas', iconName: 'undo-alt', icon: [512, 512, [], "f2ea", "M255.545 8c-66.269.119-126.438 26.233-170.86 68.685L48.971 40.971C33.851 25.851 8 36.559 8 57.941V192c0 13.255 10.745 24 24 24h134.059c21.382 0 32.09-25.851 16.971-40.971l-41.75-41.75c30.864-28.899 70.801-44.907 113.23-45.273 92.398-.798 170.283 73.977 169.484 169.442C423.236 348.009 349.816 424 256 424c-41.127 0-79.997-14.678-110.63-41.556-4.743-4.161-11.906-3.908-16.368.553L89.34 422.659c-4.872 4.872-4.631 12.815.482 17.433C133.798 479.813 192.074 504 256 504c136.966 0 247.999-111.033 248-247.998C504.001 119.193 392.354 7.755 255.545 8z"] }; +var faUniversalAccess = { prefix: 'fas', iconName: 'universal-access', icon: [512, 512, [], "f29a", "M256 48c114.953 0 208 93.029 208 208 0 114.953-93.029 208-208 208-114.953 0-208-93.029-208-208 0-114.953 93.029-208 208-208m0-40C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 56C149.961 64 64 149.961 64 256s85.961 192 192 192 192-85.961 192-192S362.039 64 256 64zm0 44c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36zm117.741 98.023c-28.712 6.779-55.511 12.748-82.14 15.807.851 101.023 12.306 123.052 25.037 155.621 3.617 9.26-.957 19.698-10.217 23.315-9.261 3.617-19.699-.957-23.316-10.217-8.705-22.308-17.086-40.636-22.261-78.549h-9.686c-5.167 37.851-13.534 56.208-22.262 78.549-3.615 9.255-14.05 13.836-23.315 10.217-9.26-3.617-13.834-14.056-10.217-23.315 12.713-32.541 24.185-54.541 25.037-155.621-26.629-3.058-53.428-9.027-82.141-15.807-8.6-2.031-13.926-10.648-11.895-19.249s10.647-13.926 19.249-11.895c96.686 22.829 124.283 22.783 220.775 0 8.599-2.03 17.218 3.294 19.249 11.895 2.029 8.601-3.297 17.219-11.897 19.249z"] }; +var faUniversity = { prefix: 'fas', iconName: 'university', icon: [512, 512, [], "f19c", "M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z"] }; +var faUnlink = { prefix: 'fas', iconName: 'unlink', icon: [512, 512, [], "f127", "M304.083 405.907c4.686 4.686 4.686 12.284 0 16.971l-44.674 44.674c-59.263 59.262-155.693 59.266-214.961 0-59.264-59.265-59.264-155.696 0-214.96l44.675-44.675c4.686-4.686 12.284-4.686 16.971 0l39.598 39.598c4.686 4.686 4.686 12.284 0 16.971l-44.675 44.674c-28.072 28.073-28.072 73.75 0 101.823 28.072 28.072 73.75 28.073 101.824 0l44.674-44.674c4.686-4.686 12.284-4.686 16.971 0l39.597 39.598zm-56.568-260.216c4.686 4.686 12.284 4.686 16.971 0l44.674-44.674c28.072-28.075 73.75-28.073 101.824 0 28.072 28.073 28.072 73.75 0 101.823l-44.675 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.598 39.598c4.686 4.686 12.284 4.686 16.971 0l44.675-44.675c59.265-59.265 59.265-155.695 0-214.96-59.266-59.264-155.695-59.264-214.961 0l-44.674 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.597 39.598zm234.828 359.28l22.627-22.627c9.373-9.373 9.373-24.569 0-33.941L63.598 7.029c-9.373-9.373-24.569-9.373-33.941 0L7.029 29.657c-9.373 9.373-9.373 24.569 0 33.941l441.373 441.373c9.373 9.372 24.569 9.372 33.941 0z"] }; +var faUnlock = { prefix: 'fas', iconName: 'unlock', icon: [448, 512, [], "f09c", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z"] }; +var faUnlockAlt = { prefix: 'fas', iconName: 'unlock-alt', icon: [448, 512, [], "f13e", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zM264 408c0 22.1-17.9 40-40 40s-40-17.9-40-40v-48c0-22.1 17.9-40 40-40s40 17.9 40 40v48z"] }; +var faUpload = { prefix: 'fas', iconName: 'upload', icon: [512, 512, [], "f093", "M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"] }; +var faUser = { prefix: 'fas', iconName: 'user', icon: [448, 512, [], "f007", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; +var faUserAlt = { prefix: 'fas', iconName: 'user-alt', icon: [512, 512, [], "f406", "M256 288c79.5 0 144-64.5 144-144S335.5 0 256 0 112 64.5 112 144s64.5 144 144 144zm128 32h-55.1c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16H128C57.3 320 0 377.3 0 448v16c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-16c0-70.7-57.3-128-128-128z"] }; +var faUserAltSlash = { prefix: 'fas', iconName: 'user-alt-slash', icon: [640, 512, [], "f4fa", "M633.8 458.1L389.6 269.3C433.8 244.7 464 198.1 464 144 464 64.5 399.5 0 320 0c-67.1 0-123 46.1-139 108.2L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM198.4 320C124.2 320 64 380.2 64 454.4v9.6c0 26.5 21.5 48 48 48h382.2L245.8 320h-47.4z"] }; +var faUserAstronaut = { prefix: 'fas', iconName: 'user-astronaut', icon: [448, 512, [], "f4fb", "M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z"] }; +var faUserCheck = { prefix: 'fas', iconName: 'user-check', icon: [640, 512, [], "f4fc", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4zm323-128.4l-27.8-28.1c-4.6-4.7-12.1-4.7-16.8-.1l-104.8 104-45.5-45.8c-4.6-4.7-12.1-4.7-16.8-.1l-28.1 27.9c-4.7 4.6-4.7 12.1-.1 16.8l81.7 82.3c4.6 4.7 12.1 4.7 16.8.1l141.3-140.2c4.6-4.7 4.7-12.2.1-16.8z"] }; +var faUserCircle = { prefix: 'fas', iconName: 'user-circle', icon: [496, 512, [], "f2bd", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 96c48.6 0 88 39.4 88 88s-39.4 88-88 88-88-39.4-88-88 39.4-88 88-88zm0 344c-58.7 0-111.3-26.6-146.5-68.2 18.8-35.4 55.6-59.8 98.5-59.8 2.4 0 4.8.4 7.1 1.1 13 4.2 26.6 6.9 40.9 6.9 14.3 0 28-2.7 40.9-6.9 2.3-.7 4.7-1.1 7.1-1.1 42.9 0 79.7 24.4 98.5 59.8C359.3 421.4 306.7 448 248 448z"] }; +var faUserClock = { prefix: 'fas', iconName: 'user-clock', icon: [640, 512, [], "f4fd", "M496 224c-79.6 0-144 64.4-144 144s64.4 144 144 144 144-64.4 144-144-64.4-144-144-144zm64 150.3c0 5.3-4.4 9.7-9.7 9.7h-60.6c-5.3 0-9.7-4.4-9.7-9.7v-76.6c0-5.3 4.4-9.7 9.7-9.7h12.6c5.3 0 9.7 4.4 9.7 9.7V352h38.3c5.3 0 9.7 4.4 9.7 9.7v12.6zM320 368c0-27.8 6.7-54.1 18.2-77.5-8-1.5-16.2-2.5-24.6-2.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h347.1c-45.3-31.9-75.1-84.5-75.1-144zm-96-112c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128z"] }; +var faUserCog = { prefix: 'fas', iconName: 'user-cog', icon: [640, 512, [], "f4fe", "M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z"] }; +var faUserEdit = { prefix: 'fas', iconName: 'user-edit', icon: [640, 512, [], "f4ff", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h274.9c-2.4-6.8-3.4-14-2.6-21.3l6.8-60.9 1.2-11.1 7.9-7.9 77.3-77.3c-24.5-27.7-60-45.5-99.9-45.5zm45.3 145.3l-6.8 61c-1.1 10.2 7.5 18.8 17.6 17.6l60.9-6.8 137.9-137.9-71.7-71.7-137.9 137.8zM633 268.9L595.1 231c-9.3-9.3-24.5-9.3-33.8 0l-37.8 37.8-4.1 4.1 71.8 71.7 41.8-41.8c9.3-9.4 9.3-24.5 0-33.9z"] }; +var faUserFriends = { prefix: 'fas', iconName: 'user-friends', icon: [640, 512, [], "f500", "M192 256c61.9 0 112-50.1 112-112S253.9 32 192 32 80 82.1 80 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C51.6 288 0 339.6 0 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zM480 256c53 0 96-43 96-96s-43-96-96-96-96 43-96 96 43 96 96 96zm48 32h-3.8c-13.9 4.8-28.6 8-44.2 8s-30.3-3.2-44.2-8H432c-20.4 0-39.2 5.9-55.7 15.4 24.4 26.3 39.7 61.2 39.7 99.8v38.4c0 2.2-.5 4.3-.6 6.4H592c26.5 0 48-21.5 48-48 0-61.9-50.1-112-112-112z"] }; +var faUserGraduate = { prefix: 'fas', iconName: 'user-graduate', icon: [448, 512, [], "f501", "M319.4 320.6L224 416l-95.4-95.4C57.1 323.7 0 382.2 0 454.4v9.6c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-9.6c0-72.2-57.1-130.7-128.6-133.8zM13.6 79.8l6.4 1.5v58.4c-7 4.2-12 11.5-12 20.3 0 8.4 4.6 15.4 11.1 19.7L3.5 242c-1.7 6.9 2.1 14 7.6 14h41.8c5.5 0 9.3-7.1 7.6-14l-15.6-62.3C51.4 175.4 56 168.4 56 160c0-8.8-5-16.1-12-20.3V87.1l66 15.9c-8.6 17.2-14 36.4-14 57 0 70.7 57.3 128 128 128s128-57.3 128-128c0-20.6-5.3-39.8-14-57l96.3-23.2c18.2-4.4 18.2-27.1 0-31.5l-190.4-46c-13-3.1-26.7-3.1-39.7 0L13.6 48.2c-18.1 4.4-18.1 27.2 0 31.6z"] }; +var faUserLock = { prefix: 'fas', iconName: 'user-lock', icon: [640, 512, [], "f502", "M320 320c0-11.1 3.1-21.4 8.1-30.5-4.8-.5-9.5-1.5-14.5-1.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h280.9c-5.5-9.5-8.9-20.3-8.9-32V320zm-96-64c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm384 32h-32v-48c0-44.2-35.8-80-80-80s-80 35.8-80 80v48h-32c-17.7 0-32 14.3-32 32v160c0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32V320c0-17.7-14.3-32-32-32zm-80 0h-64v-48c0-17.6 14.4-32 32-32s32 14.4 32 32v48z"] }; +var faUserMd = { prefix: 'fas', iconName: 'user-md', icon: [448, 512, [], "f0f0", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zM104 424c0 13.3 10.7 24 24 24s24-10.7 24-24-10.7-24-24-24-24 10.7-24 24zm216-135.4v49c36.5 7.4 64 39.8 64 78.4v41.7c0 7.6-5.4 14.2-12.9 15.7l-32.2 6.4c-4.3.9-8.5-1.9-9.4-6.3l-3.1-15.7c-.9-4.3 1.9-8.6 6.3-9.4l19.3-3.9V416c0-62.8-96-65.1-96 1.9v26.7l19.3 3.9c4.3.9 7.1 5.1 6.3 9.4l-3.1 15.7c-.9 4.3-5.1 7.1-9.4 6.3l-31.2-4.2c-7.9-1.1-13.8-7.8-13.8-15.9V416c0-38.6 27.5-70.9 64-78.4v-45.2c-2.2.7-4.4 1.1-6.6 1.9-18 6.3-37.3 9.8-57.4 9.8s-39.4-3.5-57.4-9.8c-7.4-2.6-14.9-4.2-22.6-5.2v81.6c23.1 6.9 40 28.1 40 53.4 0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.3 16.9-46.5 40-53.4v-80.4C48.5 301 0 355.8 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-72-56.8-130.3-128-133.8z"] }; +var faUserMinus = { prefix: 'fas', iconName: 'user-minus', icon: [640, 512, [], "f503", "M624 208H432c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; +var faUserNinja = { prefix: 'fas', iconName: 'user-ninja', icon: [448, 512, [], "f504", "M325.4 289.2L224 390.6 122.6 289.2C54 295.3 0 352.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-70.2-54-127.1-122.6-133.2zM32 192c27.3 0 51.8-11.5 69.2-29.7 15.1 53.9 64 93.7 122.8 93.7 70.7 0 128-57.3 128-128S294.7 0 224 0c-50.4 0-93.6 29.4-114.5 71.8C92.1 47.8 64 32 32 32c0 33.4 17.1 62.8 43.1 80-26 17.2-43.1 46.6-43.1 80zm144-96h96c17.7 0 32 14.3 32 32H144c0-17.7 14.3-32 32-32z"] }; +var faUserPlus = { prefix: 'fas', iconName: 'user-plus', icon: [640, 512, [], "f234", "M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; +var faUserSecret = { prefix: 'fas', iconName: 'user-secret', icon: [448, 512, [], "f21b", "M383.9 308.3l23.9-62.6c4-10.5-3.7-21.7-15-21.7h-58.5c11-18.9 17.8-40.6 17.8-64v-.3c39.2-7.8 64-19.1 64-31.7 0-13.3-27.3-25.1-70.1-33-9.2-32.8-27-65.8-40.6-82.8-9.5-11.9-25.9-15.6-39.5-8.8l-27.6 13.8c-9 4.5-19.6 4.5-28.6 0L182.1 3.4c-13.6-6.8-30-3.1-39.5 8.8-13.5 17-31.4 50-40.6 82.8-42.7 7.9-70 19.7-70 33 0 12.6 24.8 23.9 64 31.7v.3c0 23.4 6.8 45.1 17.8 64H56.3c-11.5 0-19.2 11.7-14.7 22.3l25.8 60.2C27.3 329.8 0 372.7 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-48.4-25.8-90.4-64.1-114.1zM176 480l-41.6-192 49.6 32 24 40-32 120zm96 0l-32-120 24-40 49.6-32L272 480zm41.7-298.5c-3.9 11.9-7 24.6-16.5 33.4-10.1 9.3-48 22.4-64-25-2.8-8.4-15.4-8.4-18.3 0-17 50.2-56 32.4-64 25-9.5-8.8-12.7-21.5-16.5-33.4-.8-2.5-6.3-5.7-6.3-5.8v-10.8c28.3 3.6 61 5.8 96 5.8s67.7-2.1 96-5.8v10.8c-.1.1-5.6 3.2-6.4 5.8z"] }; +var faUserShield = { prefix: 'fas', iconName: 'user-shield', icon: [640, 512, [], "f505", "M622.3 271.1l-115.2-45c-4.1-1.6-12.6-3.7-22.2 0l-115.2 45c-10.7 4.2-17.7 14-17.7 24.9 0 111.6 68.7 188.8 132.9 213.9 9.6 3.7 18 1.6 22.2 0C558.4 489.9 640 420.5 640 296c0-10.9-7-20.7-17.7-24.9zM496 462.4V273.3l95.5 37.3c-5.6 87.1-60.9 135.4-95.5 151.8zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm96 40c0-2.5.8-4.8 1.1-7.2-2.5-.1-4.9-.8-7.5-.8h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c6.8 0 13.3-1.5 19.2-4-54-42.9-99.2-116.7-99.2-212z"] }; +var faUserSlash = { prefix: 'fas', iconName: 'user-slash', icon: [640, 512, [], "f506", "M633.8 458.1L362.3 248.3C412.1 230.7 448 183.8 448 128 448 57.3 390.7 0 320 0c-67.1 0-121.5 51.8-126.9 117.4L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM96 422.4V464c0 26.5 21.5 48 48 48h350.2L207.4 290.3C144.2 301.3 96 356 96 422.4z"] }; +var faUserTag = { prefix: 'fas', iconName: 'user-tag', icon: [640, 512, [], "f507", "M630.6 364.9l-90.3-90.2c-12-12-28.3-18.7-45.3-18.7h-79.3c-17.7 0-32 14.3-32 32v79.2c0 17 6.7 33.2 18.7 45.2l90.3 90.2c12.5 12.5 32.8 12.5 45.3 0l92.5-92.5c12.6-12.5 12.6-32.7.1-45.2zm-182.8-21c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24c0 13.2-10.7 24-24 24zm-223.8-88c70.7 0 128-57.3 128-128C352 57.3 294.7 0 224 0S96 57.3 96 128c0 70.6 57.3 127.9 128 127.9zm127.8 111.2V294c-12.2-3.6-24.9-6.2-38.2-6.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 287.9 0 348.1 0 422.3v41.6c0 26.5 21.5 48 48 48h352c15.5 0 29.1-7.5 37.9-18.9l-58-58c-18.1-18.1-28.1-42.2-28.1-67.9z"] }; +var faUserTie = { prefix: 'fas', iconName: 'user-tie', icon: [448, 512, [], "f508", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm95.8 32.6L272 480l-32-136 32-56h-96l32 56-32 136-47.8-191.4C56.9 292 0 350.3 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-72.1-56.9-130.4-128.2-133.8z"] }; +var faUserTimes = { prefix: 'fas', iconName: 'user-times', icon: [640, 512, [], "f235", "M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; +var faUsers = { prefix: 'fas', iconName: 'users', icon: [640, 512, [], "f0c0", "M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"] }; +var faUsersCog = { prefix: 'fas', iconName: 'users-cog', icon: [640, 512, [], "f509", "M610.5 341.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 368.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm224 32c1.9 0 3.7-.5 5.6-.6 8.3-21.7 20.5-42.1 36.3-59.2 7.4-8 17.9-12.6 28.9-12.6 6.9 0 13.7 1.8 19.6 5.3l7.9 4.6c.8-.5 1.6-.9 2.4-1.4 7-14.6 11.2-30.8 11.2-48 0-61.9-50.1-112-112-112S208 82.1 208 144c0 61.9 50.1 112 112 112zm105.2 194.5c-2.3-1.2-4.6-2.6-6.8-3.9-8.2 4.8-15.3 9.8-27.5 9.8-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-10.7-34.5 24.9-49.7 25.8-50.3-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-3.8-2.2-7-5-9.8-8.1-3.3.2-6.5.6-9.8.6-24.6 0-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h255.4c-3.7-6-6.2-12.8-6.2-20.3v-9.2zM173.1 274.6C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"] }; +var faUtensilSpoon = { prefix: 'fas', iconName: 'utensil-spoon', icon: [512, 512, [], "f2e5", "M480.1 31.9c-55-55.1-164.9-34.5-227.8 28.5-49.3 49.3-55.1 110-28.8 160.4L9 413.2c-11.6 10.5-12.1 28.5-1 39.5L59.3 504c11 11 29.1 10.5 39.5-1.1l192.4-214.4c50.4 26.3 111.1 20.5 160.4-28.8 63-62.9 83.6-172.8 28.5-227.8z"] }; +var faUtensils = { prefix: 'fas', iconName: 'utensils', icon: [416, 512, [], "f2e7", "M207.9 15.2c.8 4.7 16.1 94.5 16.1 128.8 0 52.3-27.8 89.6-68.9 104.6L168 486.7c.7 13.7-10.2 25.3-24 25.3H80c-13.7 0-24.7-11.5-24-25.3l12.9-238.1C27.7 233.6 0 196.2 0 144 0 109.6 15.3 19.9 16.1 15.2 19.3-5.1 61.4-5.4 64 16.3v141.2c1.3 3.4 15.1 3.2 16 0 1.4-25.3 7.9-139.2 8-141.8 3.3-20.8 44.7-20.8 47.9 0 .2 2.7 6.6 116.5 8 141.8.9 3.2 14.8 3.4 16 0V16.3c2.6-21.6 44.8-21.4 48-1.1zm119.2 285.7l-15 185.1c-1.2 14 9.9 26 23.9 26h56c13.3 0 24-10.7 24-24V24c0-13.2-10.7-24-24-24-82.5 0-221.4 178.5-64.9 300.9z"] }; +var faVenus = { prefix: 'fas', iconName: 'venus', icon: [288, 512, [], "f221", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z"] }; +var faVenusDouble = { prefix: 'fas', iconName: 'venus-double', icon: [512, 512, [], "f226", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80zm336 140.4V368h36c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-36v36c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-36h-36c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h36v-51.6c-21.2-4.8-40.6-14.3-57.2-27.3 14-16.7 25-36 32.1-57.1 14.5 14.8 34.7 24 57.1 24 44.1 0 80-35.9 80-80s-35.9-80-80-80c-22.3 0-42.6 9.2-57.1 24-7.1-21.1-18-40.4-32.1-57.1C303.4 43.6 334.3 32 368 32c79.5 0 144 64.5 144 144 0 68.5-47.9 125.9-112 140.4z"] }; +var faVenusMars = { prefix: 'fas', iconName: 'venus-mars', icon: [576, 512, [], "f228", "M564 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C422.5 72.1 396.2 64 368 64c-33.7 0-64.6 11.6-89.2 30.9 14 16.7 25 36 32.1 57.1 14.5-14.8 34.7-24 57.1-24 44.1 0 80 35.9 80 80s-35.9 80-80 80c-22.3 0-42.6-9.2-57.1-24-7.1 21.1-18 40.4-32.1 57.1 24.5 19.4 55.5 30.9 89.2 30.9 79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 64C64.5 64 0 128.5 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.6 112-71.9 112-140.4 0-79.5-64.5-144-144-144zm0 224c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faVial = { prefix: 'fas', iconName: 'vial', icon: [480, 512, [], "f492", "M477.7 186.1L309.5 18.3c-3.1-3.1-8.2-3.1-11.3 0l-34 33.9c-3.1 3.1-3.1 8.2 0 11.3l11.2 11.1L33 316.5c-38.8 38.7-45.1 102-9.4 143.5 20.6 24 49.5 36 78.4 35.9 26.4 0 52.8-10 72.9-30.1l246.3-245.7 11.2 11.1c3.1 3.1 8.2 3.1 11.3 0l34-33.9c3.1-3 3.1-8.1 0-11.2zM318 256H161l148-147.7 78.5 78.3L318 256z"] }; +var faVials = { prefix: 'fas', iconName: 'vials', icon: [640, 512, [], "f493", "M72 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H72c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64zm480 384H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM360 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64z"] }; +var faVideo = { prefix: 'fas', iconName: 'video', icon: [576, 512, [], "f03d", "M336.2 64H47.8C21.4 64 0 85.4 0 111.8v288.4C0 426.6 21.4 448 47.8 448h288.4c26.4 0 47.8-21.4 47.8-47.8V111.8c0-26.4-21.4-47.8-47.8-47.8zm189.4 37.7L416 177.3v157.4l109.6 75.5c21.2 14.6 50.4-.3 50.4-25.8V127.5c0-25.4-29.1-40.4-50.4-25.8z"] }; +var faVideoSlash = { prefix: 'fas', iconName: 'video-slash', icon: [640, 512, [], "f4e2", "M633.8 458.1l-55-42.5c15.4-1.4 29.2-13.7 29.2-31.1v-257c0-25.5-29.1-40.4-50.4-25.8L448 177.3v137.2l-32-24.7v-178c0-26.4-21.4-47.8-47.8-47.8H123.9L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4L42.7 82 416 370.6l178.5 138c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.5-6.9 4.2-17-2.8-22.4zM32 400.2c0 26.4 21.4 47.8 47.8 47.8h288.4c11.2 0 21.4-4 29.6-10.5L32 154.7v245.5z"] }; +var faVolleyballBall = { prefix: 'fas', iconName: 'volleyball-ball', icon: [495, 512, [], "f45f", "M223.3 243.4c-.9-37-8.6-72.8-22.7-105.7-90.8 42.4-157.5 122.4-180.3 216.8 13.4 30.8 32.9 58.3 56.9 81.1 22.7-79.2 74.2-147.8 146.1-192.2zM186.4 109c-15-26.4-34.5-50.1-57.4-70.7C38 88.1-15.8 191.2 4 300.5c33.4-83.1 98.4-152 182.4-191.5zM374 274.1c8.6-99.8-27.3-197.5-97.5-264.4-14.7-1.7-51.6-5.5-98.9 8.5 57.3 59.3 91 138.2 93.5 222.7 32.5 17.7 67.3 29 102.9 33.2zm-124.7 9.5c-31.6 19.3-58.7 43.9-80.2 72.6 82 57.3 184.5 75.1 277.5 47.8 19.7-26.4 34.2-56.8 42.2-89.9-26.6 6.6-53.7 10.4-80.9 10.4-54.6-.1-108.9-14.1-158.6-40.9zM151 383.3c-15.2 26-25.7 54.4-32.1 84.2 37.6 23 81.7 36.5 129.1 36.5 61 0 116.7-22.1 159.9-58.6C295 461.5 204.6 420.6 151 383.3zM331.3 22.7c55.3 70.4 82.5 161.2 74.6 253.6 30.3.2 60.5-4.8 89.7-14.2 0-2 .3-4 .3-6 0-107.8-68.7-199.1-164.6-233.4z"] }; +var faVolumeDown = { prefix: 'fas', iconName: 'volume-down', icon: [384, 512, [], "f027", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zM384 256c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z"] }; +var faVolumeOff = { prefix: 'fas', iconName: 'volume-off', icon: [256, 512, [], "f026", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971z"] }; +var faVolumeUp = { prefix: 'fas', iconName: 'volume-up', icon: [576, 512, [], "f028", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zm182.056-77.876C422.982.92 403.283 5.668 394.061 20.745c-9.221 15.077-4.473 34.774 10.604 43.995C468.967 104.063 512 174.983 512 256c0 73.431-36.077 142.292-96.507 184.206-14.522 10.072-18.129 30.01-8.057 44.532 10.076 14.528 30.016 18.126 44.531 8.057C529.633 438.927 576 350.406 576 256c0-103.244-54.579-194.877-137.944-245.859zM480 256c0-68.547-36.15-129.777-91.957-163.901-15.076-9.22-34.774-4.471-43.994 10.607-9.22 15.078-4.471 34.774 10.607 43.994C393.067 170.188 416 211.048 416 256c0 41.964-20.62 81.319-55.158 105.276-14.521 10.073-18.128 30.01-8.056 44.532 6.216 8.96 16.185 13.765 26.322 13.765a31.862 31.862 0 0 0 18.21-5.709C449.091 377.953 480 318.938 480 256zm-96 0c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z"] }; +var faWalking = { prefix: 'fas', iconName: 'walking', icon: [320, 512, [], "f554", "M208 96c26.5 0 48-21.5 48-48S234.5 0 208 0s-48 21.5-48 48 21.5 48 48 48zm94.5 149.1l-23.3-11.8-9.7-29.4c-14.7-44.6-55.7-75.8-102.2-75.9-36-.1-55.9 10.1-93.3 25.2-21.6 8.7-39.3 25.2-49.7 46.2L17.6 213c-7.8 15.8-1.5 35 14.2 42.9 15.6 7.9 34.6 1.5 42.5-14.3L81 228c3.5-7 9.3-12.5 16.5-15.4l26.8-10.8-15.2 60.7c-5.2 20.8.4 42.9 14.9 58.8l59.9 65.4c7.2 7.9 12.3 17.4 14.9 27.7l18.3 73.3c4.3 17.1 21.7 27.6 38.8 23.3 17.1-4.3 27.6-21.7 23.3-38.8l-22.2-89c-2.6-10.3-7.7-19.9-14.9-27.7l-45.5-49.7 17.2-68.7 5.5 16.5c5.3 16.1 16.7 29.4 31.7 37l23.3 11.8c15.6 7.9 34.6 1.5 42.5-14.3 7.7-15.7 1.4-35.1-14.3-43zM73.6 385.8c-3.2 8.1-8 15.4-14.2 21.5l-50 50.1c-12.5 12.5-12.5 32.8 0 45.3s32.7 12.5 45.2 0l59.4-59.4c6.1-6.1 10.9-13.4 14.2-21.5l13.5-33.8c-55.3-60.3-38.7-41.8-47.4-53.7l-20.7 51.5z"] }; +var faWallet = { prefix: 'fas', iconName: 'wallet', icon: [512, 512, [], "f555", "M461.2 128H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h384c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h397.2c28.02 0 50.8-21.53 50.8-48V176c0-26.47-22.78-48-50.8-48zM416 336c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faWarehouse = { prefix: 'fas', iconName: 'warehouse', icon: [640, 512, [], "f494", "M504 352H136.4c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0 96H136.1c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0-192H136.6c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm106.5-139L338.4 3.7a48.15 48.15 0 0 0-36.9 0L29.5 117C11.7 124.5 0 141.9 0 161.3V504c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V256c0-17.6 14.6-32 32.6-32h382.8c18 0 32.6 14.4 32.6 32v248c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V161.3c0-19.4-11.7-36.8-29.5-44.3z"] }; +var faWeight = { prefix: 'fas', iconName: 'weight', icon: [512, 512, [], "f496", "M448 64h-26c16.4 28.3 26 61 26 96 0 105.9-86.1 192-192 192S64 265.9 64 160c0-35 9.6-67.7 26-96H64C28.7 64 0 92.7 0 128v320c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64zM256 320c88.4 0 160-71.6 160-160S344.4 0 256 0 96 71.6 96 160s71.6 160 160 160zm-.3-151.9l33.6-78.4c3.5-8.2 12.9-11.9 21-8.4s11.9 12.9 8.4 21L285 180.9c6.7 7.1 10.9 16.6 10.9 27.1 0 22.1-17.9 40-40 40s-40-17.9-40-40c.1-22 17.9-39.8 39.8-39.9z"] }; +var faWheelchair = { prefix: 'fas', iconName: 'wheelchair', icon: [512, 512, [], "f193", "M496.101 385.669l14.227 28.663c3.929 7.915.697 17.516-7.218 21.445l-65.465 32.886c-16.049 7.967-35.556 1.194-43.189-15.055L331.679 320H192c-15.925 0-29.426-11.71-31.679-27.475C126.433 55.308 128.38 70.044 128 64c0-36.358 30.318-65.635 67.052-63.929 33.271 1.545 60.048 28.905 60.925 62.201.868 32.933-23.152 60.423-54.608 65.039l4.67 32.69H336c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H215.182l4.572 32H352a32 32 0 0 1 28.962 18.392L438.477 396.8l36.178-18.349c7.915-3.929 17.517-.697 21.446 7.218zM311.358 352h-24.506c-7.788 54.204-54.528 96-110.852 96-61.757 0-112-50.243-112-112 0-41.505 22.694-77.809 56.324-97.156-3.712-25.965-6.844-47.86-9.488-66.333C45.956 198.464 0 261.963 0 336c0 97.047 78.953 176 176 176 71.87 0 133.806-43.308 161.11-105.192L311.358 352z"] }; +var faWifi = { prefix: 'fas', iconName: 'wifi', icon: [640, 512, [], "f1eb", "M384 416c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm136.659-124.443c6.465-6.465 6.245-17.065-.564-23.167-113.793-101.985-286.526-101.869-400.19 0-6.809 6.102-7.029 16.702-.564 23.167l34.006 34.006c5.927 5.927 15.464 6.32 21.769.796 82.88-72.609 207.074-72.447 289.768 0 6.305 5.524 15.842 5.132 21.769-.796l34.006-34.006zm112.11-113.718c6.385-6.385 6.254-16.816-.35-22.973-175.768-163.86-449.134-163.8-624.837 0-6.604 6.157-6.735 16.589-.35 22.973l33.966 33.966c6.095 6.095 15.891 6.231 22.224.383 144.763-133.668 368.356-133.702 513.156 0 6.333 5.848 16.129 5.712 22.224-.383l33.967-33.966z"] }; +var faWindowClose = { prefix: 'fas', iconName: 'window-close', icon: [512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-83.6 290.5c4.8 4.8 4.8 12.6 0 17.4l-40.5 40.5c-4.8 4.8-12.6 4.8-17.4 0L256 313.3l-66.5 67.1c-4.8 4.8-12.6 4.8-17.4 0l-40.5-40.5c-4.8-4.8-4.8-12.6 0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6 0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1 66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8 4.8 12.6 0 17.4L313.3 256l67.1 66.5z"] }; +var faWindowMaximize = { prefix: 'fas', iconName: 'window-maximize', icon: [512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16 160H64v-84c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12v84z"] }; +var faWindowMinimize = { prefix: 'fas', iconName: 'window-minimize', icon: [512, 512, [], "f2d1", "M464 352H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48z"] }; +var faWindowRestore = { prefix: 'fas', iconName: 'window-restore', icon: [512, 512, [], "f2d2", "M512 48v288c0 26.5-21.5 48-48 48h-48V176c0-44.1-35.9-80-80-80H128V48c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zM384 176v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zm-68 28c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v52h252v-52z"] }; +var faWineGlass = { prefix: 'fas', iconName: 'wine-glass', icon: [288, 512, [], "f4e3", "M287.4 192.7l-16-178.1C270.7 6.3 263.9 0 255.7 0H32.3c-8.2 0-15 6.3-15.7 14.6L.6 192.7c-7.2 80 50.7 148.9 127.4 157.6V480H74.1c-24.5 0-33.2 32-20 32h179.8c13.1 0 4.5-32-20-32H160V350.3c76.7-8.8 134.6-77.6 127.4-157.6zM226.2 48l7.2 80H54.6l7.2-80h164.4z"] }; +var faWonSign = { prefix: 'fas', iconName: 'won-sign', icon: [576, 512, [], "f159", "M564 192c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-48.028l18.572-80.61c1.732-7.518-3.978-14.694-11.693-14.694h-46.107a11.998 11.998 0 0 0-11.736 9.5L450.73 128H340.839l-19.725-85.987a12 12 0 0 0-11.696-9.317H265.43a12 12 0 0 0-11.687 9.277L233.696 128H124.975L107.5 42.299a12 12 0 0 0-11.758-9.602H53.628c-7.686 0-13.39 7.124-11.709 14.624L60 128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h62.342l7.171 32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h83.856l40.927 182.624A12 12 0 0 0 148.492 480h56.767c5.583 0 10.428-3.85 11.689-9.288L259.335 288h55.086l42.386 182.712A12 12 0 0 0 368.496 480h56.826a12 12 0 0 0 11.694-9.306L479.108 288H564c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-70.146l7.373-32H564zm-425.976 0h80.757l-7.457 32h-66.776l-6.524-32zm45.796 150.029c-6.194 25.831-6.758 47.25-7.321 47.25h-1.126s-1.689-22.05-6.758-47.25L157.599 288h38.812l-12.591 54.029zM274.182 224l1.996-8.602c1.856-7.962 3.457-15.968 4.803-23.398h11.794c1.347 7.43 2.947 15.436 4.803 23.398l1.996 8.602h-25.392zm130.959 118.029c-5.068 25.2-6.758 47.25-6.758 47.25h-1.126c-.563 0-1.126-21.42-7.321-47.25L377.542 288h39.107l-11.508 54.029zM430.281 224h-67.42l-7.34-32h81.577l-6.817 32z"] }; +var faWrench = { prefix: 'fas', iconName: 'wrench', icon: [512, 512, [], "f0ad", "M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"] }; +var faXRay = { prefix: 'fas', iconName: 'x-ray', icon: [640, 512, [], "f497", "M240 384c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm160 32c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zM624 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zm0 448h-48V96H64v352H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM480 248c0 4.4-3.6 8-8 8H336v32h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48v-16h-64v16c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48h64v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-32H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h136v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-24c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v24h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h136c4.4 0 8 3.6 8 8v16z"] }; +var faYenSign = { prefix: 'fas', iconName: 'yen-sign', icon: [384, 512, [], "f157", "M351.208 32h-65.277a12 12 0 0 0-10.778 6.724l-55.39 113.163c-14.513 34.704-27.133 71.932-27.133 71.932h-1.262s-12.62-37.228-27.133-71.932l-55.39-113.163A11.997 11.997 0 0 0 98.068 32H32.792c-9.057 0-14.85 9.65-10.59 17.643L102.322 200H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h88.162L152 293.228V320H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h108v92c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-92h108c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12H232v-26.772L251.838 256H340c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12h-58.322l80.12-150.357C366.058 41.65 360.266 32 351.208 32z"] }; +var icons$1 = { + faAddressBook: faAddressBook, + faAddressCard: faAddressCard, + faAdjust: faAdjust, + faAlignCenter: faAlignCenter, + faAlignJustify: faAlignJustify, + faAlignLeft: faAlignLeft, + faAlignRight: faAlignRight, + faAllergies: faAllergies, + faAmbulance: faAmbulance, + faAmericanSignLanguageInterpreting: faAmericanSignLanguageInterpreting, + faAnchor: faAnchor, + faAngleDoubleDown: faAngleDoubleDown, + faAngleDoubleLeft: faAngleDoubleLeft, + faAngleDoubleRight: faAngleDoubleRight, + faAngleDoubleUp: faAngleDoubleUp, + faAngleDown: faAngleDown, + faAngleLeft: faAngleLeft, + faAngleRight: faAngleRight, + faAngleUp: faAngleUp, + faArchive: faArchive, + faArrowAltCircleDown: faArrowAltCircleDown, + faArrowAltCircleLeft: faArrowAltCircleLeft, + faArrowAltCircleRight: faArrowAltCircleRight, + faArrowAltCircleUp: faArrowAltCircleUp, + faArrowCircleDown: faArrowCircleDown, + faArrowCircleLeft: faArrowCircleLeft, + faArrowCircleRight: faArrowCircleRight, + faArrowCircleUp: faArrowCircleUp, + faArrowDown: faArrowDown, + faArrowLeft: faArrowLeft, + faArrowRight: faArrowRight, + faArrowUp: faArrowUp, + faArrowsAlt: faArrowsAlt, + faArrowsAltH: faArrowsAltH, + faArrowsAltV: faArrowsAltV, + faAssistiveListeningSystems: faAssistiveListeningSystems, + faAsterisk: faAsterisk, + faAt: faAt, + faAudioDescription: faAudioDescription, + faBackward: faBackward, + faBalanceScale: faBalanceScale, + faBan: faBan, + faBandAid: faBandAid, + faBarcode: faBarcode, + faBars: faBars, + faBaseballBall: faBaseballBall, + faBasketballBall: faBasketballBall, + faBath: faBath, + faBatteryEmpty: faBatteryEmpty, + faBatteryFull: faBatteryFull, + faBatteryHalf: faBatteryHalf, + faBatteryQuarter: faBatteryQuarter, + faBatteryThreeQuarters: faBatteryThreeQuarters, + faBed: faBed, + faBeer: faBeer, + faBell: faBell, + faBellSlash: faBellSlash, + faBicycle: faBicycle, + faBinoculars: faBinoculars, + faBirthdayCake: faBirthdayCake, + faBlender: faBlender, + faBlind: faBlind, + faBold: faBold, + faBolt: faBolt, + faBomb: faBomb, + faBook: faBook, + faBookOpen: faBookOpen, + faBookmark: faBookmark, + faBowlingBall: faBowlingBall, + faBox: faBox, + faBoxOpen: faBoxOpen, + faBoxes: faBoxes, + faBraille: faBraille, + faBriefcase: faBriefcase, + faBriefcaseMedical: faBriefcaseMedical, + faBroadcastTower: faBroadcastTower, + faBroom: faBroom, + faBug: faBug, + faBuilding: faBuilding, + faBullhorn: faBullhorn, + faBullseye: faBullseye, + faBurn: faBurn, + faBus: faBus, + faCalculator: faCalculator, + faCalendar: faCalendar, + faCalendarAlt: faCalendarAlt, + faCalendarCheck: faCalendarCheck, + faCalendarMinus: faCalendarMinus, + faCalendarPlus: faCalendarPlus, + faCalendarTimes: faCalendarTimes, + faCamera: faCamera, + faCameraRetro: faCameraRetro, + faCapsules: faCapsules, + faCar: faCar, + faCaretDown: faCaretDown, + faCaretLeft: faCaretLeft, + faCaretRight: faCaretRight, + faCaretSquareDown: faCaretSquareDown, + faCaretSquareLeft: faCaretSquareLeft, + faCaretSquareRight: faCaretSquareRight, + faCaretSquareUp: faCaretSquareUp, + faCaretUp: faCaretUp, + faCartArrowDown: faCartArrowDown, + faCartPlus: faCartPlus, + faCertificate: faCertificate, + faChalkboard: faChalkboard, + faChalkboardTeacher: faChalkboardTeacher, + faChartArea: faChartArea, + faChartBar: faChartBar, + faChartLine: faChartLine, + faChartPie: faChartPie, + faCheck: faCheck, + faCheckCircle: faCheckCircle, + faCheckSquare: faCheckSquare, + faChess: faChess, + faChessBishop: faChessBishop, + faChessBoard: faChessBoard, + faChessKing: faChessKing, + faChessKnight: faChessKnight, + faChessPawn: faChessPawn, + faChessQueen: faChessQueen, + faChessRook: faChessRook, + faChevronCircleDown: faChevronCircleDown, + faChevronCircleLeft: faChevronCircleLeft, + faChevronCircleRight: faChevronCircleRight, + faChevronCircleUp: faChevronCircleUp, + faChevronDown: faChevronDown, + faChevronLeft: faChevronLeft, + faChevronRight: faChevronRight, + faChevronUp: faChevronUp, + faChild: faChild, + faChurch: faChurch, + faCircle: faCircle, + faCircleNotch: faCircleNotch, + faClipboard: faClipboard, + faClipboardCheck: faClipboardCheck, + faClipboardList: faClipboardList, + faClock: faClock, + faClone: faClone, + faClosedCaptioning: faClosedCaptioning, + faCloud: faCloud, + faCloudDownloadAlt: faCloudDownloadAlt, + faCloudUploadAlt: faCloudUploadAlt, + faCode: faCode, + faCodeBranch: faCodeBranch, + faCoffee: faCoffee, + faCog: faCog, + faCogs: faCogs, + faCoins: faCoins, + faColumns: faColumns, + faComment: faComment, + faCommentAlt: faCommentAlt, + faCommentDots: faCommentDots, + faCommentSlash: faCommentSlash, + faComments: faComments, + faCompactDisc: faCompactDisc, + faCompass: faCompass, + faCompress: faCompress, + faCopy: faCopy, + faCopyright: faCopyright, + faCouch: faCouch, + faCreditCard: faCreditCard, + faCrop: faCrop, + faCrosshairs: faCrosshairs, + faCrow: faCrow, + faCrown: faCrown, + faCube: faCube, + faCubes: faCubes, + faCut: faCut, + faDatabase: faDatabase, + faDeaf: faDeaf, + faDesktop: faDesktop, + faDiagnoses: faDiagnoses, + faDice: faDice, + faDiceFive: faDiceFive, + faDiceFour: faDiceFour, + faDiceOne: faDiceOne, + faDiceSix: faDiceSix, + faDiceThree: faDiceThree, + faDiceTwo: faDiceTwo, + faDivide: faDivide, + faDna: faDna, + faDollarSign: faDollarSign, + faDolly: faDolly, + faDollyFlatbed: faDollyFlatbed, + faDonate: faDonate, + faDoorClosed: faDoorClosed, + faDoorOpen: faDoorOpen, + faDotCircle: faDotCircle, + faDove: faDove, + faDownload: faDownload, + faDumbbell: faDumbbell, + faEdit: faEdit, + faEject: faEject, + faEllipsisH: faEllipsisH, + faEllipsisV: faEllipsisV, + faEnvelope: faEnvelope, + faEnvelopeOpen: faEnvelopeOpen, + faEnvelopeSquare: faEnvelopeSquare, + faEquals: faEquals, + faEraser: faEraser, + faEuroSign: faEuroSign, + faExchangeAlt: faExchangeAlt, + faExclamation: faExclamation, + faExclamationCircle: faExclamationCircle, + faExclamationTriangle: faExclamationTriangle, + faExpand: faExpand, + faExpandArrowsAlt: faExpandArrowsAlt, + faExternalLinkAlt: faExternalLinkAlt, + faExternalLinkSquareAlt: faExternalLinkSquareAlt, + faEye: faEye, + faEyeDropper: faEyeDropper, + faEyeSlash: faEyeSlash, + faFastBackward: faFastBackward, + faFastForward: faFastForward, + faFax: faFax, + faFeather: faFeather, + faFemale: faFemale, + faFighterJet: faFighterJet, + faFile: faFile, + faFileAlt: faFileAlt, + faFileArchive: faFileArchive, + faFileAudio: faFileAudio, + faFileCode: faFileCode, + faFileExcel: faFileExcel, + faFileImage: faFileImage, + faFileMedical: faFileMedical, + faFileMedicalAlt: faFileMedicalAlt, + faFilePdf: faFilePdf, + faFilePowerpoint: faFilePowerpoint, + faFileVideo: faFileVideo, + faFileWord: faFileWord, + faFilm: faFilm, + faFilter: faFilter, + faFire: faFire, + faFireExtinguisher: faFireExtinguisher, + faFirstAid: faFirstAid, + faFlag: faFlag, + faFlagCheckered: faFlagCheckered, + faFlask: faFlask, + faFolder: faFolder, + faFolderOpen: faFolderOpen, + faFont: faFont, + faFontAwesomeLogoFull: faFontAwesomeLogoFull, + faFootballBall: faFootballBall, + faForward: faForward, + faFrog: faFrog, + faFrown: faFrown, + faFutbol: faFutbol, + faGamepad: faGamepad, + faGasPump: faGasPump, + faGavel: faGavel, + faGem: faGem, + faGenderless: faGenderless, + faGift: faGift, + faGlassMartini: faGlassMartini, + faGlasses: faGlasses, + faGlobe: faGlobe, + faGolfBall: faGolfBall, + faGraduationCap: faGraduationCap, + faGreaterThan: faGreaterThan, + faGreaterThanEqual: faGreaterThanEqual, + faHSquare: faHSquare, + faHandHolding: faHandHolding, + faHandHoldingHeart: faHandHoldingHeart, + faHandHoldingUsd: faHandHoldingUsd, + faHandLizard: faHandLizard, + faHandPaper: faHandPaper, + faHandPeace: faHandPeace, + faHandPointDown: faHandPointDown, + faHandPointLeft: faHandPointLeft, + faHandPointRight: faHandPointRight, + faHandPointUp: faHandPointUp, + faHandPointer: faHandPointer, + faHandRock: faHandRock, + faHandScissors: faHandScissors, + faHandSpock: faHandSpock, + faHands: faHands, + faHandsHelping: faHandsHelping, + faHandshake: faHandshake, + faHashtag: faHashtag, + faHdd: faHdd, + faHeading: faHeading, + faHeadphones: faHeadphones, + faHeart: faHeart, + faHeartbeat: faHeartbeat, + faHelicopter: faHelicopter, + faHistory: faHistory, + faHockeyPuck: faHockeyPuck, + faHome: faHome, + faHospital: faHospital, + faHospitalAlt: faHospitalAlt, + faHospitalSymbol: faHospitalSymbol, + faHourglass: faHourglass, + faHourglassEnd: faHourglassEnd, + faHourglassHalf: faHourglassHalf, + faHourglassStart: faHourglassStart, + faICursor: faICursor, + faIdBadge: faIdBadge, + faIdCard: faIdCard, + faIdCardAlt: faIdCardAlt, + faImage: faImage, + faImages: faImages, + faInbox: faInbox, + faIndent: faIndent, + faIndustry: faIndustry, + faInfinity: faInfinity, + faInfo: faInfo, + faInfoCircle: faInfoCircle, + faItalic: faItalic, + faKey: faKey, + faKeyboard: faKeyboard, + faKiwiBird: faKiwiBird, + faLanguage: faLanguage, + faLaptop: faLaptop, + faLeaf: faLeaf, + faLemon: faLemon, + faLessThan: faLessThan, + faLessThanEqual: faLessThanEqual, + faLevelDownAlt: faLevelDownAlt, + faLevelUpAlt: faLevelUpAlt, + faLifeRing: faLifeRing, + faLightbulb: faLightbulb, + faLink: faLink, + faLiraSign: faLiraSign, + faList: faList, + faListAlt: faListAlt, + faListOl: faListOl, + faListUl: faListUl, + faLocationArrow: faLocationArrow, + faLock: faLock, + faLockOpen: faLockOpen, + faLongArrowAltDown: faLongArrowAltDown, + faLongArrowAltLeft: faLongArrowAltLeft, + faLongArrowAltRight: faLongArrowAltRight, + faLongArrowAltUp: faLongArrowAltUp, + faLowVision: faLowVision, + faMagic: faMagic, + faMagnet: faMagnet, + faMale: faMale, + faMap: faMap, + faMapMarker: faMapMarker, + faMapMarkerAlt: faMapMarkerAlt, + faMapPin: faMapPin, + faMapSigns: faMapSigns, + faMars: faMars, + faMarsDouble: faMarsDouble, + faMarsStroke: faMarsStroke, + faMarsStrokeH: faMarsStrokeH, + faMarsStrokeV: faMarsStrokeV, + faMedkit: faMedkit, + faMeh: faMeh, + faMemory: faMemory, + faMercury: faMercury, + faMicrochip: faMicrochip, + faMicrophone: faMicrophone, + faMicrophoneAlt: faMicrophoneAlt, + faMicrophoneAltSlash: faMicrophoneAltSlash, + faMicrophoneSlash: faMicrophoneSlash, + faMinus: faMinus, + faMinusCircle: faMinusCircle, + faMinusSquare: faMinusSquare, + faMobile: faMobile, + faMobileAlt: faMobileAlt, + faMoneyBill: faMoneyBill, + faMoneyBillAlt: faMoneyBillAlt, + faMoneyBillWave: faMoneyBillWave, + faMoneyBillWaveAlt: faMoneyBillWaveAlt, + faMoneyCheck: faMoneyCheck, + faMoneyCheckAlt: faMoneyCheckAlt, + faMoon: faMoon, + faMotorcycle: faMotorcycle, + faMousePointer: faMousePointer, + faMusic: faMusic, + faNeuter: faNeuter, + faNewspaper: faNewspaper, + faNotEqual: faNotEqual, + faNotesMedical: faNotesMedical, + faObjectGroup: faObjectGroup, + faObjectUngroup: faObjectUngroup, + faOutdent: faOutdent, + faPaintBrush: faPaintBrush, + faPalette: faPalette, + faPallet: faPallet, + faPaperPlane: faPaperPlane, + faPaperclip: faPaperclip, + faParachuteBox: faParachuteBox, + faParagraph: faParagraph, + faParking: faParking, + faPaste: faPaste, + faPause: faPause, + faPauseCircle: faPauseCircle, + faPaw: faPaw, + faPenSquare: faPenSquare, + faPencilAlt: faPencilAlt, + faPeopleCarry: faPeopleCarry, + faPercent: faPercent, + faPercentage: faPercentage, + faPhone: faPhone, + faPhoneSlash: faPhoneSlash, + faPhoneSquare: faPhoneSquare, + faPhoneVolume: faPhoneVolume, + faPiggyBank: faPiggyBank, + faPills: faPills, + faPlane: faPlane, + faPlay: faPlay, + faPlayCircle: faPlayCircle, + faPlug: faPlug, + faPlus: faPlus, + faPlusCircle: faPlusCircle, + faPlusSquare: faPlusSquare, + faPodcast: faPodcast, + faPoo: faPoo, + faPortrait: faPortrait, + faPoundSign: faPoundSign, + faPowerOff: faPowerOff, + faPrescriptionBottle: faPrescriptionBottle, + faPrescriptionBottleAlt: faPrescriptionBottleAlt, + faPrint: faPrint, + faProcedures: faProcedures, + faProjectDiagram: faProjectDiagram, + faPuzzlePiece: faPuzzlePiece, + faQrcode: faQrcode, + faQuestion: faQuestion, + faQuestionCircle: faQuestionCircle, + faQuidditch: faQuidditch, + faQuoteLeft: faQuoteLeft, + faQuoteRight: faQuoteRight, + faRandom: faRandom, + faReceipt: faReceipt, + faRecycle: faRecycle, + faRedo: faRedo, + faRedoAlt: faRedoAlt, + faRegistered: faRegistered, + faReply: faReply, + faReplyAll: faReplyAll, + faRetweet: faRetweet, + faRibbon: faRibbon, + faRoad: faRoad, + faRobot: faRobot, + faRocket: faRocket, + faRss: faRss, + faRssSquare: faRssSquare, + faRubleSign: faRubleSign, + faRuler: faRuler, + faRulerCombined: faRulerCombined, + faRulerHorizontal: faRulerHorizontal, + faRulerVertical: faRulerVertical, + faRupeeSign: faRupeeSign, + faSave: faSave, + faSchool: faSchool, + faScrewdriver: faScrewdriver, + faSearch: faSearch, + faSearchMinus: faSearchMinus, + faSearchPlus: faSearchPlus, + faSeedling: faSeedling, + faServer: faServer, + faShare: faShare, + faShareAlt: faShareAlt, + faShareAltSquare: faShareAltSquare, + faShareSquare: faShareSquare, + faShekelSign: faShekelSign, + faShieldAlt: faShieldAlt, + faShip: faShip, + faShippingFast: faShippingFast, + faShoePrints: faShoePrints, + faShoppingBag: faShoppingBag, + faShoppingBasket: faShoppingBasket, + faShoppingCart: faShoppingCart, + faShower: faShower, + faSign: faSign, + faSignInAlt: faSignInAlt, + faSignLanguage: faSignLanguage, + faSignOutAlt: faSignOutAlt, + faSignal: faSignal, + faSitemap: faSitemap, + faSkull: faSkull, + faSlidersH: faSlidersH, + faSmile: faSmile, + faSmoking: faSmoking, + faSmokingBan: faSmokingBan, + faSnowflake: faSnowflake, + faSort: faSort, + faSortAlphaDown: faSortAlphaDown, + faSortAlphaUp: faSortAlphaUp, + faSortAmountDown: faSortAmountDown, + faSortAmountUp: faSortAmountUp, + faSortDown: faSortDown, + faSortNumericDown: faSortNumericDown, + faSortNumericUp: faSortNumericUp, + faSortUp: faSortUp, + faSpaceShuttle: faSpaceShuttle, + faSpinner: faSpinner, + faSquare: faSquare, + faSquareFull: faSquareFull, + faStar: faStar, + faStarHalf: faStarHalf, + faStepBackward: faStepBackward, + faStepForward: faStepForward, + faStethoscope: faStethoscope, + faStickyNote: faStickyNote, + faStop: faStop, + faStopCircle: faStopCircle, + faStopwatch: faStopwatch, + faStore: faStore, + faStoreAlt: faStoreAlt, + faStream: faStream, + faStreetView: faStreetView, + faStrikethrough: faStrikethrough, + faStroopwafel: faStroopwafel, + faSubscript: faSubscript, + faSubway: faSubway, + faSuitcase: faSuitcase, + faSun: faSun, + faSuperscript: faSuperscript, + faSync: faSync, + faSyncAlt: faSyncAlt, + faSyringe: faSyringe, + faTable: faTable, + faTableTennis: faTableTennis, + faTablet: faTablet, + faTabletAlt: faTabletAlt, + faTablets: faTablets, + faTachometerAlt: faTachometerAlt, + faTag: faTag, + faTags: faTags, + faTape: faTape, + faTasks: faTasks, + faTaxi: faTaxi, + faTerminal: faTerminal, + faTextHeight: faTextHeight, + faTextWidth: faTextWidth, + faTh: faTh, + faThLarge: faThLarge, + faThList: faThList, + faThermometer: faThermometer, + faThermometerEmpty: faThermometerEmpty, + faThermometerFull: faThermometerFull, + faThermometerHalf: faThermometerHalf, + faThermometerQuarter: faThermometerQuarter, + faThermometerThreeQuarters: faThermometerThreeQuarters, + faThumbsDown: faThumbsDown, + faThumbsUp: faThumbsUp, + faThumbtack: faThumbtack, + faTicketAlt: faTicketAlt, + faTimes: faTimes, + faTimesCircle: faTimesCircle, + faTint: faTint, + faToggleOff: faToggleOff, + faToggleOn: faToggleOn, + faToolbox: faToolbox, + faTrademark: faTrademark, + faTrain: faTrain, + faTransgender: faTransgender, + faTransgenderAlt: faTransgenderAlt, + faTrash: faTrash, + faTrashAlt: faTrashAlt, + faTree: faTree, + faTrophy: faTrophy, + faTruck: faTruck, + faTruckLoading: faTruckLoading, + faTruckMoving: faTruckMoving, + faTshirt: faTshirt, + faTty: faTty, + faTv: faTv, + faUmbrella: faUmbrella, + faUnderline: faUnderline, + faUndo: faUndo, + faUndoAlt: faUndoAlt, + faUniversalAccess: faUniversalAccess, + faUniversity: faUniversity, + faUnlink: faUnlink, + faUnlock: faUnlock, + faUnlockAlt: faUnlockAlt, + faUpload: faUpload, + faUser: faUser, + faUserAlt: faUserAlt, + faUserAltSlash: faUserAltSlash, + faUserAstronaut: faUserAstronaut, + faUserCheck: faUserCheck, + faUserCircle: faUserCircle, + faUserClock: faUserClock, + faUserCog: faUserCog, + faUserEdit: faUserEdit, + faUserFriends: faUserFriends, + faUserGraduate: faUserGraduate, + faUserLock: faUserLock, + faUserMd: faUserMd, + faUserMinus: faUserMinus, + faUserNinja: faUserNinja, + faUserPlus: faUserPlus, + faUserSecret: faUserSecret, + faUserShield: faUserShield, + faUserSlash: faUserSlash, + faUserTag: faUserTag, + faUserTie: faUserTie, + faUserTimes: faUserTimes, + faUsers: faUsers, + faUsersCog: faUsersCog, + faUtensilSpoon: faUtensilSpoon, + faUtensils: faUtensils, + faVenus: faVenus, + faVenusDouble: faVenusDouble, + faVenusMars: faVenusMars, + faVial: faVial, + faVials: faVials, + faVideo: faVideo, + faVideoSlash: faVideoSlash, + faVolleyballBall: faVolleyballBall, + faVolumeDown: faVolumeDown, + faVolumeOff: faVolumeOff, + faVolumeUp: faVolumeUp, + faWalking: faWalking, + faWallet: faWallet, + faWarehouse: faWarehouse, + faWeight: faWeight, + faWheelchair: faWheelchair, + faWifi: faWifi, + faWindowClose: faWindowClose, + faWindowMaximize: faWindowMaximize, + faWindowMinimize: faWindowMinimize, + faWindowRestore: faWindowRestore, + faWineGlass: faWineGlass, + faWonSign: faWonSign, + faWrench: faWrench, + faXRay: faXRay, + faYenSign: faYenSign +}; + +bunker(function () { + define('fas', icons$1); +}); + +export { prefix, faAddressBook, faAddressCard, faAdjust, faAlignCenter, faAlignJustify, faAlignLeft, faAlignRight, faAllergies, faAmbulance, faAmericanSignLanguageInterpreting, faAnchor, faAngleDoubleDown, faAngleDoubleLeft, faAngleDoubleRight, faAngleDoubleUp, faAngleDown, faAngleLeft, faAngleRight, faAngleUp, faArchive, faArrowAltCircleDown, faArrowAltCircleLeft, faArrowAltCircleRight, faArrowAltCircleUp, faArrowCircleDown, faArrowCircleLeft, faArrowCircleRight, faArrowCircleUp, faArrowDown, faArrowLeft, faArrowRight, faArrowUp, faArrowsAlt, faArrowsAltH, faArrowsAltV, faAssistiveListeningSystems, faAsterisk, faAt, faAudioDescription, faBackward, faBalanceScale, faBan, faBandAid, faBarcode, faBars, faBaseballBall, faBasketballBall, faBath, faBatteryEmpty, faBatteryFull, faBatteryHalf, faBatteryQuarter, faBatteryThreeQuarters, faBed, faBeer, faBell, faBellSlash, faBicycle, faBinoculars, faBirthdayCake, faBlender, faBlind, faBold, faBolt, faBomb, faBook, faBookOpen, faBookmark, faBowlingBall, faBox, faBoxOpen, faBoxes, faBraille, faBriefcase, faBriefcaseMedical, faBroadcastTower, faBroom, faBug, faBuilding, faBullhorn, faBullseye, faBurn, faBus, faCalculator, faCalendar, faCalendarAlt, faCalendarCheck, faCalendarMinus, faCalendarPlus, faCalendarTimes, faCamera, faCameraRetro, faCapsules, faCar, faCaretDown, faCaretLeft, faCaretRight, faCaretSquareDown, faCaretSquareLeft, faCaretSquareRight, faCaretSquareUp, faCaretUp, faCartArrowDown, faCartPlus, faCertificate, faChalkboard, faChalkboardTeacher, faChartArea, faChartBar, faChartLine, faChartPie, faCheck, faCheckCircle, faCheckSquare, faChess, faChessBishop, faChessBoard, faChessKing, faChessKnight, faChessPawn, faChessQueen, faChessRook, faChevronCircleDown, faChevronCircleLeft, faChevronCircleRight, faChevronCircleUp, faChevronDown, faChevronLeft, faChevronRight, faChevronUp, faChild, faChurch, faCircle, faCircleNotch, faClipboard, faClipboardCheck, faClipboardList, faClock, faClone, faClosedCaptioning, faCloud, faCloudDownloadAlt, faCloudUploadAlt, faCode, faCodeBranch, faCoffee, faCog, faCogs, faCoins, faColumns, faComment, faCommentAlt, faCommentDots, faCommentSlash, faComments, faCompactDisc, faCompass, faCompress, faCopy, faCopyright, faCouch, faCreditCard, faCrop, faCrosshairs, faCrow, faCrown, faCube, faCubes, faCut, faDatabase, faDeaf, faDesktop, faDiagnoses, faDice, faDiceFive, faDiceFour, faDiceOne, faDiceSix, faDiceThree, faDiceTwo, faDivide, faDna, faDollarSign, faDolly, faDollyFlatbed, faDonate, faDoorClosed, faDoorOpen, faDotCircle, faDove, faDownload, faDumbbell, faEdit, faEject, faEllipsisH, faEllipsisV, faEnvelope, faEnvelopeOpen, faEnvelopeSquare, faEquals, faEraser, faEuroSign, faExchangeAlt, faExclamation, faExclamationCircle, faExclamationTriangle, faExpand, faExpandArrowsAlt, faExternalLinkAlt, faExternalLinkSquareAlt, faEye, faEyeDropper, faEyeSlash, faFastBackward, faFastForward, faFax, faFeather, faFemale, faFighterJet, faFile, faFileAlt, faFileArchive, faFileAudio, faFileCode, faFileExcel, faFileImage, faFileMedical, faFileMedicalAlt, faFilePdf, faFilePowerpoint, faFileVideo, faFileWord, faFilm, faFilter, faFire, faFireExtinguisher, faFirstAid, faFlag, faFlagCheckered, faFlask, faFolder, faFolderOpen, faFont, faFontAwesomeLogoFull, faFootballBall, faForward, faFrog, faFrown, faFutbol, faGamepad, faGasPump, faGavel, faGem, faGenderless, faGift, faGlassMartini, faGlasses, faGlobe, faGolfBall, faGraduationCap, faGreaterThan, faGreaterThanEqual, faHSquare, faHandHolding, faHandHoldingHeart, faHandHoldingUsd, faHandLizard, faHandPaper, faHandPeace, faHandPointDown, faHandPointLeft, faHandPointRight, faHandPointUp, faHandPointer, faHandRock, faHandScissors, faHandSpock, faHands, faHandsHelping, faHandshake, faHashtag, faHdd, faHeading, faHeadphones, faHeart, faHeartbeat, faHelicopter, faHistory, faHockeyPuck, faHome, faHospital, faHospitalAlt, faHospitalSymbol, faHourglass, faHourglassEnd, faHourglassHalf, faHourglassStart, faICursor, faIdBadge, faIdCard, faIdCardAlt, faImage, faImages, faInbox, faIndent, faIndustry, faInfinity, faInfo, faInfoCircle, faItalic, faKey, faKeyboard, faKiwiBird, faLanguage, faLaptop, faLeaf, faLemon, faLessThan, faLessThanEqual, faLevelDownAlt, faLevelUpAlt, faLifeRing, faLightbulb, faLink, faLiraSign, faList, faListAlt, faListOl, faListUl, faLocationArrow, faLock, faLockOpen, faLongArrowAltDown, faLongArrowAltLeft, faLongArrowAltRight, faLongArrowAltUp, faLowVision, faMagic, faMagnet, faMale, faMap, faMapMarker, faMapMarkerAlt, faMapPin, faMapSigns, faMars, faMarsDouble, faMarsStroke, faMarsStrokeH, faMarsStrokeV, faMedkit, faMeh, faMemory, faMercury, faMicrochip, faMicrophone, faMicrophoneAlt, faMicrophoneAltSlash, faMicrophoneSlash, faMinus, faMinusCircle, faMinusSquare, faMobile, faMobileAlt, faMoneyBill, faMoneyBillAlt, faMoneyBillWave, faMoneyBillWaveAlt, faMoneyCheck, faMoneyCheckAlt, faMoon, faMotorcycle, faMousePointer, faMusic, faNeuter, faNewspaper, faNotEqual, faNotesMedical, faObjectGroup, faObjectUngroup, faOutdent, faPaintBrush, faPalette, faPallet, faPaperPlane, faPaperclip, faParachuteBox, faParagraph, faParking, faPaste, faPause, faPauseCircle, faPaw, faPenSquare, faPencilAlt, faPeopleCarry, faPercent, faPercentage, faPhone, faPhoneSlash, faPhoneSquare, faPhoneVolume, faPiggyBank, faPills, faPlane, faPlay, faPlayCircle, faPlug, faPlus, faPlusCircle, faPlusSquare, faPodcast, faPoo, faPortrait, faPoundSign, faPowerOff, faPrescriptionBottle, faPrescriptionBottleAlt, faPrint, faProcedures, faProjectDiagram, faPuzzlePiece, faQrcode, faQuestion, faQuestionCircle, faQuidditch, faQuoteLeft, faQuoteRight, faRandom, faReceipt, faRecycle, faRedo, faRedoAlt, faRegistered, faReply, faReplyAll, faRetweet, faRibbon, faRoad, faRobot, faRocket, faRss, faRssSquare, faRubleSign, faRuler, faRulerCombined, faRulerHorizontal, faRulerVertical, faRupeeSign, faSave, faSchool, faScrewdriver, faSearch, faSearchMinus, faSearchPlus, faSeedling, faServer, faShare, faShareAlt, faShareAltSquare, faShareSquare, faShekelSign, faShieldAlt, faShip, faShippingFast, faShoePrints, faShoppingBag, faShoppingBasket, faShoppingCart, faShower, faSign, faSignInAlt, faSignLanguage, faSignOutAlt, faSignal, faSitemap, faSkull, faSlidersH, faSmile, faSmoking, faSmokingBan, faSnowflake, faSort, faSortAlphaDown, faSortAlphaUp, faSortAmountDown, faSortAmountUp, faSortDown, faSortNumericDown, faSortNumericUp, faSortUp, faSpaceShuttle, faSpinner, faSquare, faSquareFull, faStar, faStarHalf, faStepBackward, faStepForward, faStethoscope, faStickyNote, faStop, faStopCircle, faStopwatch, faStore, faStoreAlt, faStream, faStreetView, faStrikethrough, faStroopwafel, faSubscript, faSubway, faSuitcase, faSun, faSuperscript, faSync, faSyncAlt, faSyringe, faTable, faTableTennis, faTablet, faTabletAlt, faTablets, faTachometerAlt, faTag, faTags, faTape, faTasks, faTaxi, faTerminal, faTextHeight, faTextWidth, faTh, faThLarge, faThList, faThermometer, faThermometerEmpty, faThermometerFull, faThermometerHalf, faThermometerQuarter, faThermometerThreeQuarters, faThumbsDown, faThumbsUp, faThumbtack, faTicketAlt, faTimes, faTimesCircle, faTint, faToggleOff, faToggleOn, faToolbox, faTrademark, faTrain, faTransgender, faTransgenderAlt, faTrash, faTrashAlt, faTree, faTrophy, faTruck, faTruckLoading, faTruckMoving, faTshirt, faTty, faTv, faUmbrella, faUnderline, faUndo, faUndoAlt, faUniversalAccess, faUniversity, faUnlink, faUnlock, faUnlockAlt, faUpload, faUser, faUserAlt, faUserAltSlash, faUserAstronaut, faUserCheck, faUserCircle, faUserClock, faUserCog, faUserEdit, faUserFriends, faUserGraduate, faUserLock, faUserMd, faUserMinus, faUserNinja, faUserPlus, faUserSecret, faUserShield, faUserSlash, faUserTag, faUserTie, faUserTimes, faUsers, faUsersCog, faUtensilSpoon, faUtensils, faVenus, faVenusDouble, faVenusMars, faVial, faVials, faVideo, faVideoSlash, faVolleyballBall, faVolumeDown, faVolumeOff, faVolumeUp, faWalking, faWallet, faWarehouse, faWeight, faWheelchair, faWifi, faWindowClose, faWindowMaximize, faWindowMinimize, faWindowRestore, faWineGlass, faWonSign, faWrench, faXRay, faYenSign }; +export default icons$1; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/index.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/index.js new file mode 100644 index 0000000000..264233b4b7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/index.js @@ -0,0 +1,2013 @@ +/*! + * Font Awesome Free 5.0.13 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : + typeof define === 'function' && define.amd ? define(['exports'], factory) : + (factory((global['fontawesome-free-solid'] = {}))); +}(this, (function (exports) { 'use strict'; + +var _WINDOW = {}; +try { + if (typeof window !== 'undefined') _WINDOW = window; + +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; + + + + + +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; + + + + + + + +var PRODUCTION = function () { + try { + return process.env.NODE_ENV === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + + + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var prefix = "fas"; +var faAddressBook = { prefix: 'fas', iconName: 'address-book', icon: [448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"] }; +var faAddressCard = { prefix: 'fas', iconName: 'address-card', icon: [576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-352 96c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H86.4C74 384 64 375.4 64 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2zM512 312c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z"] }; +var faAdjust = { prefix: 'fas', iconName: 'adjust', icon: [512, 512, [], "f042", "M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z"] }; +var faAlignCenter = { prefix: 'fas', iconName: 'align-center', icon: [448, 512, [], "f037", "M352 44v40c0 8.837-7.163 16-16 16H112c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h224c8.837 0 16 7.163 16 16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm320-200H112c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z"] }; +var faAlignJustify = { prefix: 'fas', iconName: 'align-justify', icon: [448, 512, [], "f039", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm16 144h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0-128h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faAlignLeft = { prefix: 'fas', iconName: 'align-left', icon: [448, 512, [], "f036", "M288 44v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16zM0 172v40c0 8.837 7.163 16 16 16h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16zm16 312h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm256-200H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z"] }; +var faAlignRight = { prefix: 'fas', iconName: 'align-right', icon: [448, 512, [], "f038", "M160 84V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H176c-8.837 0-16-7.163-16-16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faAllergies = { prefix: 'fas', iconName: 'allergies', icon: [448, 512, [], "f461", "M416 112c-17.6 0-32 14.4-32 32v72c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v152c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V32c0-17.6-14.4-32-32-32s-32 14.4-32 32v184c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32S96 46.4 96 64v241l-23.6-32.5c-13-17.9-38-21.8-55.9-8.8s-21.8 38-8.8 55.9l125.6 172.7c9 12.4 23.5 19.8 38.8 19.8h197.6c22.3 0 41.6-15.3 46.7-37l26.5-112.7c3.2-13.7 4.9-28.3 5.1-42.3V144c0-17.6-14.4-32-32-32zM176 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 32c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32-128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"] }; +var faAmbulance = { prefix: 'fas', iconName: 'ambulance', icon: [640, 512, [], "f0f9", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm144-248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm176 248c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"] }; +var faAmericanSignLanguageInterpreting = { prefix: 'fas', iconName: 'american-sign-language-interpreting', icon: [640, 512, [], "f2a3", "M290.547 189.039c-20.295-10.149-44.147-11.199-64.739-3.89 42.606 0 71.208 20.475 85.578 50.576 8.576 17.899-5.148 38.071-23.617 38.071 18.429 0 32.211 20.136 23.617 38.071-14.725 30.846-46.123 50.854-80.298 50.854-.557 0-94.471-8.615-94.471-8.615l-66.406 33.347c-9.384 4.693-19.815.379-23.895-7.781L1.86 290.747c-4.167-8.615-1.111-18.897 6.946-23.621l58.072-33.069L108 159.861c6.39-57.245 34.731-109.767 79.743-146.726 11.391-9.448 28.341-7.781 37.51 3.613 9.446 11.394 7.78 28.067-3.612 37.516-12.503 10.559-23.618 22.509-32.509 35.57 21.672-14.729 46.679-24.732 74.186-28.067 14.725-1.945 28.063 8.336 29.73 23.065 1.945 14.728-8.336 28.067-23.062 29.734-16.116 1.945-31.12 7.503-44.178 15.284 26.114-5.713 58.712-3.138 88.079 11.115 13.336 6.669 18.893 22.509 12.224 35.848-6.389 13.06-22.504 18.617-35.564 12.226zm-27.229 69.472c-6.112-12.505-18.338-20.286-32.231-20.286a35.46 35.46 0 0 0-35.565 35.57c0 21.428 17.808 35.57 35.565 35.57 13.893 0 26.119-7.781 32.231-20.286 4.446-9.449 13.614-15.006 23.339-15.284-9.725-.277-18.893-5.835-23.339-15.284zm374.821-37.237c4.168 8.615 1.111 18.897-6.946 23.621l-58.071 33.069L532 352.16c-6.39 57.245-34.731 109.767-79.743 146.726-10.932 9.112-27.799 8.144-37.51-3.613-9.446-11.394-7.78-28.067 3.613-37.516 12.503-10.559 23.617-22.509 32.508-35.57-21.672 14.729-46.679 24.732-74.186 28.067-10.021 2.506-27.552-5.643-29.73-23.065-1.945-14.728 8.336-28.067 23.062-29.734 16.116-1.946 31.12-7.503 44.178-15.284-26.114 5.713-58.712 3.138-88.079-11.115-13.336-6.669-18.893-22.509-12.224-35.848 6.389-13.061 22.505-18.619 35.565-12.227 20.295 10.149 44.147 11.199 64.739 3.89-42.606 0-71.208-20.475-85.578-50.576-8.576-17.899 5.148-38.071 23.617-38.071-18.429 0-32.211-20.136-23.617-38.071 14.033-29.396 44.039-50.887 81.966-50.854l92.803 8.615 66.406-33.347c9.408-4.704 19.828-.354 23.894 7.781l44.455 88.926zm-229.227-18.618c-13.893 0-26.119 7.781-32.231 20.286-4.446 9.449-13.614 15.006-23.339 15.284 9.725.278 18.893 5.836 23.339 15.284 6.112 12.505 18.338 20.286 32.231 20.286a35.46 35.46 0 0 0 35.565-35.57c0-21.429-17.808-35.57-35.565-35.57z"] }; +var faAnchor = { prefix: 'fas', iconName: 'anchor', icon: [576, 512, [], "f13d", "M12.971 352h32.394C67.172 454.735 181.944 512 288 512c106.229 0 220.853-57.38 242.635-160h32.394c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0l-67.029 67.029c-7.56 7.56-2.206 20.485 8.485 20.485h35.146c-20.29 54.317-84.963 86.588-144.117 94.015V256h52c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-52v-5.47c37.281-13.178 63.995-48.725 64-90.518C384.005 43.772 341.605.738 289.37.01 235.723-.739 192 42.525 192 96c0 41.798 26.716 77.35 64 90.53V192h-52c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v190.015c-58.936-7.399-123.82-39.679-144.117-94.015h35.146c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0L4.485 331.515C-3.074 339.074 2.28 352 12.971 352zM288 64c17.645 0 32 14.355 32 32s-14.355 32-32 32-32-14.355-32-32 14.355-32 32-32z"] }; +var faAngleDoubleDown = { prefix: 'fas', iconName: 'angle-double-down', icon: [320, 512, [], "f103", "M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z"] }; +var faAngleDoubleLeft = { prefix: 'fas', iconName: 'angle-double-left', icon: [448, 512, [], "f100", "M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z"] }; +var faAngleDoubleRight = { prefix: 'fas', iconName: 'angle-double-right', icon: [448, 512, [], "f101", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z"] }; +var faAngleDoubleUp = { prefix: 'fas', iconName: 'angle-double-up', icon: [320, 512, [], "f102", "M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z"] }; +var faAngleDown = { prefix: 'fas', iconName: 'angle-down', icon: [320, 512, [], "f107", "M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"] }; +var faAngleLeft = { prefix: 'fas', iconName: 'angle-left', icon: [256, 512, [], "f104", "M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"] }; +var faAngleRight = { prefix: 'fas', iconName: 'angle-right', icon: [256, 512, [], "f105", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"] }; +var faAngleUp = { prefix: 'fas', iconName: 'angle-up', icon: [320, 512, [], "f106", "M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z"] }; +var faArchive = { prefix: 'fas', iconName: 'archive', icon: [512, 512, [], "f187", "M32 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160H32v288zm160-212c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v8c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-8zM480 32H32C14.3 32 0 46.3 0 64v48c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16V64c0-17.7-14.3-32-32-32z"] }; +var faArrowAltCircleDown = { prefix: 'fas', iconName: 'arrow-alt-circle-down', icon: [512, 512, [], "f358", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM212 140v116h-70.9c-10.7 0-16.1 13-8.5 20.5l114.9 114.3c4.7 4.7 12.2 4.7 16.9 0l114.9-114.3c7.6-7.6 2.2-20.5-8.5-20.5H300V140c0-6.6-5.4-12-12-12h-64c-6.6 0-12 5.4-12 12z"] }; +var faArrowAltCircleLeft = { prefix: 'fas', iconName: 'arrow-alt-circle-left', icon: [512, 512, [], "f359", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z"] }; +var faArrowAltCircleRight = { prefix: 'fas', iconName: 'arrow-alt-circle-right', icon: [512, 512, [], "f35a", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z"] }; +var faArrowAltCircleUp = { prefix: 'fas', iconName: 'arrow-alt-circle-up', icon: [512, 512, [], "f35b", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm292 116V256h70.9c10.7 0 16.1-13 8.5-20.5L264.5 121.2c-4.7-4.7-12.2-4.7-16.9 0l-115 114.3c-7.6 7.6-2.2 20.5 8.5 20.5H212v116c0 6.6 5.4 12 12 12h64c6.6 0 12-5.4 12-12z"] }; +var faArrowCircleDown = { prefix: 'fas', iconName: 'arrow-circle-down', icon: [512, 512, [], "f0ab", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-143.6-28.9L288 302.6V120c0-13.3-10.7-24-24-24h-16c-13.3 0-24 10.7-24 24v182.6l-72.4-75.5c-9.3-9.7-24.8-9.9-34.3-.4l-10.9 11c-9.4 9.4-9.4 24.6 0 33.9L239 404.3c9.4 9.4 24.6 9.4 33.9 0l132.7-132.7c9.4-9.4 9.4-24.6 0-33.9l-10.9-11c-9.5-9.5-25-9.3-34.3.4z"] }; +var faArrowCircleLeft = { prefix: 'fas', iconName: 'arrow-circle-left', icon: [512, 512, [], "f0a8", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm28.9-143.6L209.4 288H392c13.3 0 24-10.7 24-24v-16c0-13.3-10.7-24-24-24H209.4l75.5-72.4c9.7-9.3 9.9-24.8.4-34.3l-11-10.9c-9.4-9.4-24.6-9.4-33.9 0L107.7 239c-9.4 9.4-9.4 24.6 0 33.9l132.7 132.7c9.4 9.4 24.6 9.4 33.9 0l11-10.9c9.5-9.5 9.3-25-.4-34.3z"] }; +var faArrowCircleRight = { prefix: 'fas', iconName: 'arrow-circle-right', icon: [512, 512, [], "f0a9", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28.9 143.6l75.5 72.4H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h182.6l-75.5 72.4c-9.7 9.3-9.9 24.8-.4 34.3l11 10.9c9.4 9.4 24.6 9.4 33.9 0L404.3 273c9.4-9.4 9.4-24.6 0-33.9L271.6 106.3c-9.4-9.4-24.6-9.4-33.9 0l-11 10.9c-9.5 9.6-9.3 25.1.4 34.4z"] }; +var faArrowCircleUp = { prefix: 'fas', iconName: 'arrow-circle-up', icon: [512, 512, [], "f0aa", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z"] }; +var faArrowDown = { prefix: 'fas', iconName: 'arrow-down', icon: [448, 512, [], "f063", "M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z"] }; +var faArrowLeft = { prefix: 'fas', iconName: 'arrow-left', icon: [448, 512, [], "f060", "M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z"] }; +var faArrowRight = { prefix: 'fas', iconName: 'arrow-right', icon: [448, 512, [], "f061", "M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z"] }; +var faArrowUp = { prefix: 'fas', iconName: 'arrow-up', icon: [448, 512, [], "f062", "M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z"] }; +var faArrowsAlt = { prefix: 'fas', iconName: 'arrows-alt', icon: [512, 512, [], "f0b2", "M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z"] }; +var faArrowsAltH = { prefix: 'fas', iconName: 'arrows-alt-h', icon: [512, 512, [], "f337", "M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z"] }; +var faArrowsAltV = { prefix: 'fas', iconName: 'arrows-alt-v', icon: [256, 512, [], "f338", "M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z"] }; +var faAssistiveListeningSystems = { prefix: 'fas', iconName: 'assistive-listening-systems', icon: [512, 512, [], "f2a2", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z"] }; +var faAsterisk = { prefix: 'fas', iconName: 'asterisk', icon: [512, 512, [], "f069", "M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z"] }; +var faAt = { prefix: 'fas', iconName: 'at', icon: [512, 512, [], "f1fa", "M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z"] }; +var faAudioDescription = { prefix: 'fas', iconName: 'audio-description', icon: [512, 512, [], "f29e", "M162.925 238.709l8.822 30.655h-25.606l9.041-30.652c1.277-4.421 2.651-9.994 3.872-15.245 1.22 5.251 2.594 10.823 3.871 15.242zm166.474-32.099h-14.523v98.781h14.523c29.776 0 46.175-17.678 46.175-49.776 0-32.239-17.49-49.005-46.175-49.005zM512 112v288c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48zM245.459 336.139l-57.097-168A12.001 12.001 0 0 0 177 160h-35.894a12.001 12.001 0 0 0-11.362 8.139l-57.097 168C70.003 343.922 75.789 352 84.009 352h29.133a12 12 0 0 0 11.535-8.693l8.574-29.906h51.367l8.793 29.977A12 12 0 0 0 204.926 352h29.172c8.22 0 14.006-8.078 11.361-15.861zm184.701-80.525c0-58.977-37.919-95.614-98.96-95.614h-57.366c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12H331.2c61.041 0 98.96-36.933 98.96-96.386z"] }; +var faBackward = { prefix: 'fas', iconName: 'backward', icon: [512, 512, [], "f04a", "M11.5 280.6l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2zm256 0l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2z"] }; +var faBalanceScale = { prefix: 'fas', iconName: 'balance-scale', icon: [640, 512, [], "f24e", "M256 336h-.02c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0C-2.06 328.75.02 320.33.02 336H0c0 44.18 57.31 80 128 80s128-35.82 128-80zM128 176l72 144H56l72-144zm511.98 160c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 320l72-144 72 144H440zm88 128H352V153.25c23.51-10.29 41.16-31.48 46.39-57.25H528c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H383.64C369.04 12.68 346.09 0 320 0s-49.04 12.68-63.64 32H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h129.61c5.23 25.76 22.87 46.96 46.39 57.25V448H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"] }; +var faBan = { prefix: 'fas', iconName: 'ban', icon: [512, 512, [], "f05e", "M256 8C119.034 8 8 119.033 8 256s111.034 248 248 248 248-111.034 248-248S392.967 8 256 8zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676zM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676z"] }; +var faBandAid = { prefix: 'fas', iconName: 'band-aid', icon: [640, 512, [], "f462", "M0 160v192c0 35.3 28.7 64 64 64h96V96H64c-35.3 0-64 28.7-64 64zm576-64h-96v320h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64zM192 416h256V96H192v320zm176-232c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24z"] }; +var faBarcode = { prefix: 'fas', iconName: 'barcode', icon: [512, 512, [], "f02a", "M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z"] }; +var faBars = { prefix: 'fas', iconName: 'bars', icon: [448, 512, [], "f0c9", "M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faBaseballBall = { prefix: 'fas', iconName: 'baseball-ball', icon: [496, 512, [], "f433", "M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z"] }; +var faBasketballBall = { prefix: 'fas', iconName: 'basketball-ball', icon: [496, 512, [], "f434", "M212.3 10.3c-43.8 6.3-86.2 24.1-122.2 53.8l77.4 77.4c27.8-35.8 43.3-81.2 44.8-131.2zM248 222L405.9 64.1c-42.4-35-93.6-53.5-145.5-56.1-1.2 63.9-21.5 122.3-58.7 167.7L248 222zM56.1 98.1c-29.7 36-47.5 78.4-53.8 122.2 50-1.5 95.5-17 131.2-44.8L56.1 98.1zm272.2 204.2c45.3-37.1 103.7-57.4 167.7-58.7-2.6-51.9-21.1-103.1-56.1-145.5L282 256l46.3 46.3zM248 290L90.1 447.9c42.4 34.9 93.6 53.5 145.5 56.1 1.3-64 21.6-122.4 58.7-167.7L248 290zm191.9 123.9c29.7-36 47.5-78.4 53.8-122.2-50.1 1.6-95.5 17.1-131.2 44.8l77.4 77.4zM167.7 209.7C122.3 246.9 63.9 267.3 0 268.4c2.6 51.9 21.1 103.1 56.1 145.5L214 256l-46.3-46.3zm116 292c43.8-6.3 86.2-24.1 122.2-53.8l-77.4-77.4c-27.7 35.7-43.2 81.2-44.8 131.2z"] }; +var faBath = { prefix: 'fas', iconName: 'bath', icon: [512, 512, [], "f2cd", "M488 256H80V112c0-17.645 14.355-32 32-32 11.351 0 21.332 5.945 27.015 14.88-16.492 25.207-14.687 59.576 6.838 83.035-4.176 4.713-4.021 11.916.491 16.428l11.314 11.314c4.686 4.686 12.284 4.686 16.971 0l95.03-95.029c4.686-4.686 4.686-12.284 0-16.971l-11.314-11.314c-4.512-4.512-11.715-4.666-16.428-.491-17.949-16.469-42.294-21.429-64.178-15.365C163.281 45.667 139.212 32 112 32c-44.112 0-80 35.888-80 80v144h-8c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h8v32c0 28.43 12.362 53.969 32 71.547V456c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-8h256v8c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-32.453c19.638-17.578 32-43.117 32-71.547v-32h8c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z"] }; +var faBatteryEmpty = { prefix: 'fas', iconName: 'battery-empty', icon: [640, 512, [], "f244", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48z"] }; +var faBatteryFull = { prefix: 'fas', iconName: 'battery-full', icon: [640, 512, [], "f240", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-48 96H96v128h416V192z"] }; +var faBatteryHalf = { prefix: 'fas', iconName: 'battery-half', icon: [640, 512, [], "f242", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-240 96H96v128h224V192z"] }; +var faBatteryQuarter = { prefix: 'fas', iconName: 'battery-quarter', icon: [640, 512, [], "f243", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-336 96H96v128h128V192z"] }; +var faBatteryThreeQuarters = { prefix: 'fas', iconName: 'battery-three-quarters', icon: [640, 512, [], "f241", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-144 96H96v128h320V192z"] }; +var faBed = { prefix: 'fas', iconName: 'bed', icon: [576, 512, [], "f236", "M552 288c13.255 0 24 10.745 24 24v136h-96v-64H96v64H0V88c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24v200h456zM192 96c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80zm384 128c0-53.019-42.981-96-96-96H312c-13.255 0-24 10.745-24 24v104h288v-32z"] }; +var faBeer = { prefix: 'fas', iconName: 'beer', icon: [448, 512, [], "f0fc", "M368 96h-48V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24v-42.11l80.606-35.977C429.396 365.063 448 336.388 448 304.86V176c0-44.112-35.888-80-80-80zm16 208.86a16.018 16.018 0 0 1-9.479 14.611L320 343.805V160h48c8.822 0 16 7.178 16 16v128.86zM208 384c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16zm-96 0c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16z"] }; +var faBell = { prefix: 'fas', iconName: 'bell', icon: [448, 512, [], "f0f3", "M433.884 366.059C411.634 343.809 384 316.118 384 208c0-79.394-57.831-145.269-133.663-157.83A31.845 31.845 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 6.75 2.095 13.008 5.663 18.17C121.831 62.731 64 128.606 64 208c0 108.118-27.643 135.809-49.893 158.059C-16.042 396.208 5.325 448 48.048 448H160c0 35.346 28.654 64 64 64s64-28.654 64-64h111.943c42.638 0 64.151-51.731 33.941-81.941zM224 472a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16c0 13.234 10.766 24 24 24z"] }; +var faBellSlash = { prefix: 'fas', iconName: 'bell-slash', icon: [576, 512, [], "f1f6", "M78.107 366.059C47.958 396.208 69.325 448 112.048 448H224c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h32.685L127.848 221.379c-2.198 97.078-28.439 123.378-49.741 144.68zM264 448c0 13.234 10.766 24 24 24a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16zm305.896 43.733l-10.762 12.086c-8.915 10.012-24.333 10.967-34.437 2.133L8.256 54.393C-1.848 45.558-2.811 30.28 6.104 20.267L16.865 8.181C25.781-1.831 41.199-2.786 51.303 6.049l113.81 99.512c24.017-28.778 57.946-48.996 96.55-55.39A31.85 31.85 0 0 1 256 32c0-17.673 14.327-32 32-32s32 14.327 32 32c0 6.75-2.095 13.008-5.663 18.17C390.169 62.731 448 128.606 448 208c0 108.118 27.634 135.809 49.884 158.059 12.149 12.149 15.923 27.776 13.33 42.121l56.53 49.427c10.104 8.835 11.067 24.113 2.152 34.126z"] }; +var faBicycle = { prefix: 'fas', iconName: 'bicycle', icon: [640, 512, [], "f206", "M512.509 192.001c-16.373-.064-32.03 2.955-46.436 8.495l-77.68-125.153A24 24 0 0 0 368.001 64h-64c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h50.649l14.896 24H256.002v-16c0-8.837-7.163-16-16-16h-87.459c-13.441 0-24.777 10.999-24.536 24.437.232 13.044 10.876 23.563 23.995 23.563h48.726l-29.417 47.52c-13.433-4.83-27.904-7.483-42.992-7.52C58.094 191.83.412 249.012.002 319.236-.413 390.279 57.055 448 128.002 448c59.642 0 109.758-40.793 123.967-96h52.033a24 24 0 0 0 20.406-11.367L410.37 201.77l14.938 24.067c-25.455 23.448-41.385 57.081-41.307 94.437.145 68.833 57.899 127.051 126.729 127.719 70.606.685 128.181-55.803 129.255-125.996 1.086-70.941-56.526-129.72-127.476-129.996zM186.75 265.772c9.727 10.529 16.673 23.661 19.642 38.228h-43.306l23.664-38.228zM128.002 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c5.869 0 11.586.653 17.099 1.859l-45.505 73.509C89.715 331.327 101.213 352 120.002 352h81.3c-12.37 28.225-40.562 48-73.3 48zm162.63-96h-35.624c-3.96-31.756-19.556-59.894-42.383-80.026L237.371 184h127.547l-74.286 120zm217.057 95.886c-41.036-2.165-74.049-35.692-75.627-76.755-.812-21.121 6.633-40.518 19.335-55.263l44.433 71.586c4.66 7.508 14.524 9.816 22.032 5.156l13.594-8.437c7.508-4.66 9.817-14.524 5.156-22.032l-44.468-71.643a79.901 79.901 0 0 1 19.858-2.497c44.112 0 80 35.888 80 80-.001 45.54-38.252 82.316-84.313 79.885z"] }; +var faBinoculars = { prefix: 'fas', iconName: 'binoculars', icon: [512, 512, [], "f1e5", "M192 104H96V56c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24v48zm224-48c0-13.255-10.745-24-24-24h-48c-13.255 0-24 10.745-24 24v48h96V56zM0 456c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H0v16zm88-328c-13.255 0-24 10.745-24 24C64 256 0 272 0 416h168V312c0-13.255 10.745-24 24-24V128H88zm256 328c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H344v16zM216 128v160h80V128h-80zm128 288h168c0-144-64-160-64-264 0-13.255-10.745-24-24-24H320v160c13.255 0 24 10.745 24 24v104z"] }; +var faBirthdayCake = { prefix: 'fas', iconName: 'birthday-cake', icon: [448, 512, [], "f1fd", "M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z"] }; +var faBlender = { prefix: 'fas', iconName: 'blender', icon: [512, 512, [], "f517", "M416 384H160c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-128 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm40-416h166.54L512 0H48C21.49 0 0 21.49 0 48v160c0 26.51 21.49 48 48 48h103.27l8.73 96h256l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H328c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM64 192V64h69.82l11.64 128H64z"] }; +var faBlind = { prefix: 'fas', iconName: 'blind', icon: [384, 512, [], "f29d", "M380.15 510.837a8 8 0 0 1-10.989-2.687l-125.33-206.427a31.923 31.923 0 0 0 12.958-9.485l126.048 207.608a8 8 0 0 1-2.687 10.991zM142.803 314.338l-32.54 89.485 36.12 88.285c6.693 16.36 25.377 24.192 41.733 17.501 16.357-6.692 24.193-25.376 17.501-41.734l-62.814-153.537zM96 88c24.301 0 44-19.699 44-44S120.301 0 96 0 52 19.699 52 44s19.699 44 44 44zm154.837 169.128l-120-152c-4.733-5.995-11.75-9.108-18.837-9.112V96H80v.026c-7.146.003-14.217 3.161-18.944 9.24L0 183.766v95.694c0 13.455 11.011 24.791 24.464 24.536C37.505 303.748 48 293.1 48 280v-79.766l16-20.571v140.698L9.927 469.055c-6.04 16.609 2.528 34.969 19.138 41.009 16.602 6.039 34.968-2.524 41.009-19.138L136 309.638V202.441l-31.406-39.816a4 4 0 1 1 6.269-4.971l102.3 129.217c9.145 11.584 24.368 11.339 33.708 3.965 10.41-8.216 12.159-23.334 3.966-33.708z"] }; +var faBold = { prefix: 'fas', iconName: 'bold', icon: [384, 512, [], "f032", "M304.793 243.891c33.639-18.537 53.657-54.16 53.657-95.693 0-48.236-26.25-87.626-68.626-104.179C265.138 34.01 240.849 32 209.661 32H24c-8.837 0-16 7.163-16 16v33.049c0 8.837 7.163 16 16 16h33.113v318.53H24c-8.837 0-16 7.163-16 16V464c0 8.837 7.163 16 16 16h195.69c24.203 0 44.834-1.289 66.866-7.584C337.52 457.193 376 410.647 376 350.014c0-52.168-26.573-91.684-71.207-106.123zM142.217 100.809h67.444c16.294 0 27.536 2.019 37.525 6.717 15.828 8.479 24.906 26.502 24.906 49.446 0 35.029-20.32 56.79-53.029 56.79h-76.846V100.809zm112.642 305.475c-10.14 4.056-22.677 4.907-31.409 4.907h-81.233V281.943h84.367c39.645 0 63.057 25.38 63.057 63.057.001 28.425-13.66 52.483-34.782 61.284z"] }; +var faBolt = { prefix: 'fas', iconName: 'bolt', icon: [320, 512, [], "f0e7", "M295.973 160H180.572L215.19 30.184C219.25 14.956 207.756 0 192 0H56C43.971 0 33.8 8.905 32.211 20.828l-31.996 240C-1.704 275.217 9.504 288 24.004 288h118.701L96.646 482.466C93.05 497.649 104.659 512 119.992 512c8.35 0 16.376-4.374 20.778-11.978l175.973-303.997c9.244-15.967-2.288-36.025-20.77-36.025z"] }; +var faBomb = { prefix: 'fas', iconName: 'bomb', icon: [512, 512, [], "f1e2", "M440.5 88.5l-52 52L415 167c9.4 9.4 9.4 24.6 0 33.9l-17.4 17.4c11.8 26.1 18.4 55.1 18.4 85.6 0 114.9-93.1 208-208 208S0 418.9 0 304 93.1 96 208 96c30.5 0 59.5 6.6 85.6 18.4L311 97c9.4-9.4 24.6-9.4 33.9 0l26.5 26.5 52-52 17.1 17zM500 60h-24c-6.6 0-12 5.4-12 12s5.4 12 12 12h24c6.6 0 12-5.4 12-12s-5.4-12-12-12zM440 0c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12s12-5.4 12-12V12c0-6.6-5.4-12-12-12zm33.9 55l17-17c4.7-4.7 4.7-12.3 0-17-4.7-4.7-12.3-4.7-17 0l-17 17c-4.7 4.7-4.7 12.3 0 17 4.8 4.7 12.4 4.7 17 0zm-67.8 0c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17zm67.8 34c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17zM112 272c0-35.3 28.7-64 64-64 8.8 0 16-7.2 16-16s-7.2-16-16-16c-52.9 0-96 43.1-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16z"] }; +var faBook = { prefix: 'fas', iconName: 'book', icon: [448, 512, [], "f02d", "M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z"] }; +var faBookOpen = { prefix: 'fas', iconName: 'book-open', icon: [576, 512, [], "f518", "M542.2.1c-54.8 3.1-163.7 14.4-231 55.6-4.6 2.8-7.3 7.9-7.3 13.2v363.9c0 11.5 12.6 18.8 23.3 13.5 69.2-34.8 169.2-44.3 218.7-46.9 16.9-.9 30-14.4 30-30.7v-338C576 13 560.6-1 542.2.1zM264.7 55.6C197.5 14.5 88.6 3.2 33.8.1 15.4-1 0 13 0 30.7v337.8c0 16.2 13.1 29.8 30 30.7 49.5 2.6 149.6 12.1 218.8 47 10.6 5.4 23.2-1.9 23.2-13.5V68.6c0-5.3-2.6-10.1-7.3-13z"] }; +var faBookmark = { prefix: 'fas', iconName: 'bookmark', icon: [384, 512, [], "f02e", "M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z"] }; +var faBowlingBall = { prefix: 'fas', iconName: 'bowling-ball', icon: [496, 512, [], "f436", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM120 192c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64-96c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm48 144c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faBox = { prefix: 'fas', iconName: 'box', icon: [512, 512, [], "f466", "M509.5 184.6L458.9 32.8C452.4 13.2 434.1 0 413.4 0H272v192h238.7c-.4-2.5-.4-5-1.2-7.4zM240 0H98.6c-20.7 0-39 13.2-45.5 32.8L2.5 184.6c-.8 2.4-.8 4.9-1.2 7.4H240V0zM0 224v240c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V224H0z"] }; +var faBoxOpen = { prefix: 'fas', iconName: 'box-open', icon: [640, 512, [], "f49e", "M53.2 41L1.7 143.8c-4.6 9.2.3 20.2 10.1 23l197.9 56.5c7.1 2 14.7-1 18.5-7.3L320 64 69.8 32.1c-6.9-.8-13.5 2.7-16.6 8.9zm585.1 102.8L586.8 41c-3.1-6.2-9.8-9.8-16.7-8.9L320 64l91.7 152.1c3.8 6.3 11.4 9.3 18.5 7.3l197.9-56.5c9.9-2.9 14.7-13.9 10.2-23.1zM425.7 256c-16.9 0-32.8-9-41.4-23.4L320 126l-64.2 106.6c-8.7 14.5-24.6 23.5-41.5 23.5-4.5 0-9-.6-13.3-1.9L64 215v178c0 14.7 10 27.5 24.2 31l216.2 54.1c10.2 2.5 20.9 2.5 31 0L551.8 424c14.2-3.6 24.2-16.4 24.2-31V215l-137 39.1c-4.3 1.3-8.8 1.9-13.3 1.9z"] }; +var faBoxes = { prefix: 'fas', iconName: 'boxes', icon: [576, 512, [], "f468", "M560 288h-80v96l-32-21.3-32 21.3v-96h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16zm-384-64h224c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16h-80v96l-32-21.3L256 96V0h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16zm64 64h-80v96l-32-21.3L96 384v-96H16c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16z"] }; +var faBraille = { prefix: 'fas', iconName: 'braille', icon: [640, 512, [], "f2a1", "M128 256c0 35.346-28.654 64-64 64S0 291.346 0 256s28.654-64 64-64 64 28.654 64 64zM64 384c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352C28.654 32 0 60.654 0 96s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm224 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-320c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; +var faBriefcase = { prefix: 'fas', iconName: 'briefcase', icon: [512, 512, [], "f0b1", "M320 288h192v144c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V288h192v20c0 6.627 5.373 12 12 12h104c6.627 0 12-5.373 12-12v-20zm192-112v80H0v-80c0-26.51 21.49-48 48-48h80V80c0-26.51 21.49-48 48-48h160c26.51 0 48 21.49 48 48v48h80c26.51 0 48 21.49 48 48zM320 96H192v32h128V96z"] }; +var faBriefcaseMedical = { prefix: 'fas', iconName: 'briefcase-medical', icon: [512, 512, [], "f469", "M464 128h-80V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48zM192 96h128v32H192V96zm160 248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48z"] }; +var faBroadcastTower = { prefix: 'fas', iconName: 'broadcast-tower', icon: [640, 512, [], "f519", "M150.94 192h33.73c11.01 0 18.61-10.83 14.86-21.18-4.93-13.58-7.55-27.98-7.55-42.82s2.62-29.24 7.55-42.82C203.29 74.83 195.68 64 184.67 64h-33.73c-7.01 0-13.46 4.49-15.41 11.23C130.64 92.21 128 109.88 128 128c0 18.12 2.64 35.79 7.54 52.76 1.94 6.74 8.39 11.24 15.4 11.24zM89.92 23.34C95.56 12.72 87.97 0 75.96 0H40.63c-6.27 0-12.14 3.59-14.74 9.31C9.4 45.54 0 85.65 0 128c0 24.75 3.12 68.33 26.69 118.86 2.62 5.63 8.42 9.14 14.61 9.14h34.84c12.02 0 19.61-12.74 13.95-23.37-49.78-93.32-16.71-178.15-.17-209.29zM614.06 9.29C611.46 3.58 605.6 0 599.33 0h-35.42c-11.98 0-19.66 12.66-14.02 23.25 18.27 34.29 48.42 119.42.28 209.23-5.72 10.68 1.8 23.52 13.91 23.52h35.23c6.27 0 12.13-3.58 14.73-9.29C630.57 210.48 640 170.36 640 128s-9.42-82.48-25.94-118.71zM489.06 64h-33.73c-11.01 0-18.61 10.83-14.86 21.18 4.93 13.58 7.55 27.98 7.55 42.82s-2.62 29.24-7.55 42.82c-3.76 10.35 3.85 21.18 14.86 21.18h33.73c7.02 0 13.46-4.49 15.41-11.24 4.9-16.97 7.53-34.64 7.53-52.76 0-18.12-2.64-35.79-7.54-52.76-1.94-6.75-8.39-11.24-15.4-11.24zm-116.3 100.12c7.05-10.29 11.2-22.71 11.2-36.12 0-35.35-28.63-64-63.96-64-35.32 0-63.96 28.65-63.96 64 0 13.41 4.15 25.83 11.2 36.12l-130.5 313.41c-3.4 8.15.46 17.52 8.61 20.92l29.51 12.31c8.15 3.4 17.52-.46 20.91-8.61L244.96 384h150.07l49.2 118.15c3.4 8.16 12.76 12.01 20.91 8.61l29.51-12.31c8.15-3.4 12-12.77 8.61-20.92l-130.5-313.41zM271.62 320L320 203.81 368.38 320h-96.76z"] }; +var faBroom = { prefix: 'fas', iconName: 'broom', icon: [512, 512, [], "f51a", "M10.8 247.2C-.7 251.8-3.7 266.7 5 275.4l54.8 54.8 73.2-24.4-24.4 73.2 128 128c8.8 8.8 23.6 5.7 28.2-5.8l98.1-243.7-108.4-108.4-243.7 98.1zM507.3 27.3L484.7 4.7c-6.2-6.3-16.4-6.3-22.6 0L359.8 106.9l-40.4-40.4c-4.2-4.3-11.4-3-13.9 2.5l-27.2 58.6 106.1 106.1 58.6-27.2c5.4-2.5 6.7-9.7 2.5-13.9l-40.4-40.4L507.3 49.9c6.3-6.2 6.3-16.3 0-22.6z"] }; +var faBug = { prefix: 'fas', iconName: 'bug', icon: [512, 512, [], "f188", "M511.988 288.9c-.478 17.43-15.217 31.1-32.653 31.1H424v16c0 21.864-4.882 42.584-13.6 61.145l60.228 60.228c12.496 12.497 12.496 32.758 0 45.255-12.498 12.497-32.759 12.496-45.256 0l-54.736-54.736C345.886 467.965 314.351 480 280 480V236c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v244c-34.351 0-65.886-12.035-90.636-32.108l-54.736 54.736c-12.498 12.497-32.759 12.496-45.256 0-12.496-12.497-12.496-32.758 0-45.255l60.228-60.228C92.882 378.584 88 357.864 88 336v-16H32.666C15.23 320 .491 306.33.013 288.9-.484 270.816 14.028 256 32 256h56v-58.745l-46.628-46.628c-12.496-12.497-12.496-32.758 0-45.255 12.498-12.497 32.758-12.497 45.256 0L141.255 160h229.489l54.627-54.627c12.498-12.497 32.758-12.497 45.256 0 12.496 12.497 12.496 32.758 0 45.255L424 197.255V256h56c17.972 0 32.484 14.816 31.988 32.9zM257 0c-61.856 0-112 50.144-112 112h224C369 50.144 318.856 0 257 0z"] }; +var faBuilding = { prefix: 'fas', iconName: 'building', icon: [448, 512, [], "f1ad", "M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z"] }; +var faBullhorn = { prefix: 'fas', iconName: 'bullhorn', icon: [576, 512, [], "f0a1", "M576 224c0-20.896-13.36-38.666-32-45.258V64c0-35.346-28.654-64-64-64-64.985 56-142.031 128-272 128H48c-26.51 0-48 21.49-48 48v96c0 26.51 21.49 48 48 48h43.263c-18.742 64.65 2.479 116.379 18.814 167.44 1.702 5.32 5.203 9.893 9.922 12.88 20.78 13.155 68.355 15.657 93.773 5.151 16.046-6.633 19.96-27.423 7.522-39.537-18.508-18.026-30.136-36.91-19.795-60.858a12.278 12.278 0 0 0-1.045-11.673c-16.309-24.679-3.581-62.107 28.517-72.752C346.403 327.887 418.591 395.081 480 448c35.346 0 64-28.654 64-64V269.258c18.64-6.592 32-24.362 32-45.258zm-96 139.855c-54.609-44.979-125.033-92.94-224-104.982v-69.747c98.967-12.042 169.391-60.002 224-104.982v279.711z"] }; +var faBullseye = { prefix: 'fas', iconName: 'bullseye', icon: [512, 512, [], "f140", "M256 72c101.689 0 184 82.295 184 184 0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-101.689 82.295-184 184-184m0-64C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 184c35.29 0 64 28.71 64 64s-28.71 64-64 64-64-28.71-64-64 28.71-64 64-64m0-64c-70.692 0-128 57.308-128 128s57.308 128 128 128 128-57.308 128-128-57.308-128-128-128z"] }; +var faBurn = { prefix: 'fas', iconName: 'burn', icon: [384, 512, [], "f46a", "M192 0C79.7 101.3 0 220.9 0 300.5 0 425 79 512 192 512s192-87 192-211.5c0-79.9-80.2-199.6-192-300.5zm0 448c-56.5 0-96-39-96-94.8 0-13.5 4.6-61.5 96-161.2 91.4 99.7 96 147.7 96 161.2 0 55.8-39.5 94.8-96 94.8z"] }; +var faBus = { prefix: 'fas', iconName: 'bus', icon: [512, 512, [], "f207", "M512 152v80c0 13.255-10.745 24-24 24h-8v168c0 13.255-10.745 24-24 24h-8v40c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24v-40H160v40c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24v-40h-8c-13.255 0-24-10.745-24-24V256h-8c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h8V80C32 35.817 132.288 0 256 0s224 35.817 224 80v48h8c13.255 0 24 10.745 24 24zM112 320c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288 0c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm32-56V120c0-13.255-10.745-24-24-24H104c-13.255 0-24 10.745-24 24v144c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z"] }; +var faCalculator = { prefix: 'fas', iconName: 'calculator', icon: [448, 512, [], "f1ec", "M0 464V48C0 21.49 21.49 0 48 0h352c26.51 0 48 21.49 48 48v416c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm384-284V76c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v104c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12zM128 308v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm256 128V268c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-256 0v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm128-128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm0 128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"] }; +var faCalendar = { prefix: 'fas', iconName: 'calendar', icon: [448, 512, [], "f133", "M12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm436-44v-36c0-26.5-21.5-48-48-48h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v36c0 6.6 5.4 12 12 12h424c6.6 0 12-5.4 12-12z"] }; +var faCalendarAlt = { prefix: 'fas', iconName: 'calendar-alt', icon: [448, 512, [], "f073", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm116 204c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40z"] }; +var faCalendarCheck = { prefix: 'fas', iconName: 'calendar-check', icon: [448, 512, [], "f274", "M436 160H12c-6.627 0-12-5.373-12-12v-36c0-26.51 21.49-48 48-48h48V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h128V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h48c26.51 0 48 21.49 48 48v36c0 6.627-5.373 12-12 12zM12 192h424c6.627 0 12 5.373 12 12v260c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V204c0-6.627 5.373-12 12-12zm333.296 95.947l-28.169-28.398c-4.667-4.705-12.265-4.736-16.97-.068L194.12 364.665l-45.98-46.352c-4.667-4.705-12.266-4.736-16.971-.068l-28.397 28.17c-4.705 4.667-4.736 12.265-.068 16.97l82.601 83.269c4.667 4.705 12.265 4.736 16.97.068l142.953-141.805c4.705-4.667 4.736-12.265.068-16.97z"] }; +var faCalendarMinus = { prefix: 'fas', iconName: 'calendar-minus', icon: [448, 512, [], "f272", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm304 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H132c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h184z"] }; +var faCalendarPlus = { prefix: 'fas', iconName: 'calendar-plus', icon: [448, 512, [], "f271", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm316 140c0-6.6-5.4-12-12-12h-60v-60c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v60h-60c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h60v60c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-60h60c6.6 0 12-5.4 12-12v-40z"] }; +var faCalendarTimes = { prefix: 'fas', iconName: 'calendar-times', icon: [448, 512, [], "f273", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm257.3 160l48.1-48.1c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0L224 306.7l-48.1-48.1c-4.7-4.7-12.3-4.7-17 0l-28.3 28.3c-4.7 4.7-4.7 12.3 0 17l48.1 48.1-48.1 48.1c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l48.1-48.1 48.1 48.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L269.3 352z"] }; +var faCamera = { prefix: 'fas', iconName: 'camera', icon: [512, 512, [], "f030", "M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z"] }; +var faCameraRetro = { prefix: 'fas', iconName: 'camera-retro', icon: [512, 512, [], "f083", "M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm0 32h106c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H38c-3.3 0-6-2.7-6-6V80c0-8.8 7.2-16 16-16zm426 96H38c-3.3 0-6-2.7-6-6v-36c0-3.3 2.7-6 6-6h138l30.2-45.3c1.1-1.7 3-2.7 5-2.7H464c8.8 0 16 7.2 16 16v74c0 3.3-2.7 6-6 6zM256 424c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88zm-48 104c-8.8 0-16-7.2-16-16 0-35.3 28.7-64 64-64 8.8 0 16 7.2 16 16s-7.2 16-16 16c-17.6 0-32 14.4-32 32 0 8.8-7.2 16-16 16z"] }; +var faCapsules = { prefix: 'fas', iconName: 'capsules', icon: [576, 512, [], "f46b", "M555.3 300.1L424.2 112.8C401.9 81 366.4 64 330.4 64c-22.6 0-45.5 6.7-65.5 20.7-19.7 13.8-33.7 32.8-41.5 53.8C220.5 79.2 172 32 112 32 50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V218.9c3.3 8.6 7.3 17.1 12.8 25L368 431.2c22.2 31.8 57.7 48.8 93.8 48.8 22.7 0 45.5-6.7 65.5-20.7 51.7-36.2 64.2-107.5 28-159.2zM160 256H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm194.8 44.9l-65.6-93.7c-7.7-11-10.7-24.4-8.3-37.6 2.3-13.2 9.7-24.8 20.7-32.5 8.5-6 18.5-9.1 28.8-9.1 16.5 0 31.9 8 41.3 21.5l65.6 93.7-82.5 57.7z"] }; +var faCar = { prefix: 'fas', iconName: 'car', icon: [512, 512, [], "f1b9", "M499.991 168h-54.815l-7.854-20.944c-9.192-24.513-25.425-45.351-46.942-60.263S343.651 64 317.472 64H194.528c-26.18 0-51.391 7.882-72.908 22.793-21.518 14.912-37.75 35.75-46.942 60.263L66.824 168H12.009c-8.191 0-13.974 8.024-11.384 15.795l8 24A12 12 0 0 0 20.009 216h28.815l-.052.14C29.222 227.093 16 247.997 16 272v48c0 16.225 6.049 31.029 16 42.309V424c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-40h256v40c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-61.691c9.951-11.281 16-26.085 16-42.309v-48c0-24.003-13.222-44.907-32.772-55.86l-.052-.14h28.815a12 12 0 0 0 11.384-8.205l8-24c2.59-7.771-3.193-15.795-11.384-15.795zm-365.388 1.528C143.918 144.689 168 128 194.528 128h122.944c26.528 0 50.61 16.689 59.925 41.528L391.824 208H120.176l14.427-38.472zM88 328c-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32s48 30.327 48 48-30.327 16-48 16zm336 0c-17.673 0-48 1.673-48-16 0-17.673 30.327-48 48-48s32 14.327 32 32c0 17.673-14.327 32-32 32z"] }; +var faCaretDown = { prefix: 'fas', iconName: 'caret-down', icon: [320, 512, [], "f0d7", "M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z"] }; +var faCaretLeft = { prefix: 'fas', iconName: 'caret-left', icon: [192, 512, [], "f0d9", "M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z"] }; +var faCaretRight = { prefix: 'fas', iconName: 'caret-right', icon: [192, 512, [], "f0da", "M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z"] }; +var faCaretSquareDown = { prefix: 'fas', iconName: 'caret-square-down', icon: [448, 512, [], "f150", "M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM92.5 220.5l123 123c4.7 4.7 12.3 4.7 17 0l123-123c7.6-7.6 2.2-20.5-8.5-20.5H101c-10.7 0-16.1 12.9-8.5 20.5z"] }; +var faCaretSquareLeft = { prefix: 'fas', iconName: 'caret-square-left', icon: [448, 512, [], "f191", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM259.515 124.485l-123.03 123.03c-4.686 4.686-4.686 12.284 0 16.971l123.029 123.029c7.56 7.56 20.485 2.206 20.485-8.485V132.971c.001-10.691-12.925-16.045-20.484-8.486z"] }; +var faCaretSquareRight = { prefix: 'fas', iconName: 'caret-square-right', icon: [448, 512, [], "f152", "M48 32h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48zm140.485 355.515l123.029-123.029c4.686-4.686 4.686-12.284 0-16.971l-123.029-123.03c-7.56-7.56-20.485-2.206-20.485 8.485v246.059c0 10.691 12.926 16.045 20.485 8.486z"] }; +var faCaretSquareUp = { prefix: 'fas', iconName: 'caret-square-up', icon: [448, 512, [], "f151", "M0 432V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm355.515-140.485l-123.03-123.03c-4.686-4.686-12.284-4.686-16.971 0L92.485 291.515c-7.56 7.56-2.206 20.485 8.485 20.485h246.059c10.691 0 16.045-12.926 8.486-20.485z"] }; +var faCaretUp = { prefix: 'fas', iconName: 'caret-up', icon: [320, 512, [], "f0d8", "M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z"] }; +var faCartArrowDown = { prefix: 'fas', iconName: 'cart-arrow-down', icon: [576, 512, [], "f218", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z"] }; +var faCartPlus = { prefix: 'fas', iconName: 'cart-plus', icon: [576, 512, [], "f217", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM408 168h-48v-40c0-8.837-7.163-16-16-16h-16c-8.837 0-16 7.163-16 16v40h-48c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h48v40c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-40h48c8.837 0 16-7.163 16-16v-16c0-8.837-7.163-16-16-16z"] }; +var faCertificate = { prefix: 'fas', iconName: 'certificate', icon: [512, 512, [], "f0a3", "M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z"] }; +var faChalkboard = { prefix: 'fas', iconName: 'chalkboard', icon: [640, 512, [], "f51b", "M96 64h448v352h64V40c0-22.06-17.94-40-40-40H72C49.94 0 32 17.94 32 40v376h64V64zm528 384H480v-64H288v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"] }; +var faChalkboardTeacher = { prefix: 'fas', iconName: 'chalkboard-teacher', icon: [640, 512, [], "f51c", "M208 352c-2.39 0-4.78.35-7.06 1.09C187.98 357.3 174.35 360 160 360c-14.35 0-27.98-2.7-40.95-6.91-2.28-.74-4.66-1.09-7.05-1.09C49.94 352-.33 402.48 0 464.62.14 490.88 21.73 512 48 512h224c26.27 0 47.86-21.12 48-47.38.33-62.14-49.94-112.62-112-112.62zm-48-32c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM592 0H208c-26.47 0-48 22.25-48 49.59V96c23.42 0 45.1 6.78 64 17.8V64h352v288h-64v-64H384v64h-76.24c19.1 16.69 33.12 38.73 39.69 64H592c26.47 0 48-22.25 48-49.59V49.59C640 22.25 618.47 0 592 0z"] }; +var faChartArea = { prefix: 'fas', iconName: 'chart-area', icon: [512, 512, [], "f1fe", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z"] }; +var faChartBar = { prefix: 'fas', iconName: 'chart-bar', icon: [512, 512, [], "f080", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zm-308-44v-72c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V204c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V108c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"] }; +var faChartLine = { prefix: 'fas', iconName: 'chart-line', icon: [512, 512, [], "f201", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM456 96H344c-21.4 0-32.1 25.9-17 41l32.9 32.9-72 72.9-55.6-55.6c-4.7-4.7-12.2-4.7-16.9 0L96.4 305c-4.7 4.6-4.8 12.2-.2 16.9l28.5 29.4c4.7 4.8 12.4 4.9 17.1.1l82.1-82.1 55.5 55.5c4.7 4.7 12.3 4.7 17 0l109.2-109.2L439 249c15.1 15.1 41 4.4 41-17V120c0-13.3-10.7-24-24-24z"] }; +var faChartPie = { prefix: 'fas', iconName: 'chart-pie', icon: [576, 512, [], "f200", "M288 12.3V240h227.7c6.9 0 12.3-5.8 12-12.7-6.4-122.4-104.5-220.6-227-227-6.9-.3-12.7 5.1-12.7 12zM552.7 288c6.9 0 12.3 5.8 12 12.7-2.8 53.2-23.2 105.6-61.2 147.8-4.6 5.1-12.6 5.4-17.5.5L325 288h227.7zM401 433c4.8 4.8 4.7 12.8-.4 17.3-42.6 38.4-99 61.7-160.8 61.7C107.6 511.9-.2 403.8 0 271.5.2 143.4 100.8 38.9 227.3 32.3c6.9-.4 12.7 5.1 12.7 12V272l161 161z"] }; +var faCheck = { prefix: 'fas', iconName: 'check', icon: [512, 512, [], "f00c", "M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"] }; +var faCheckCircle = { prefix: 'fas', iconName: 'check-circle', icon: [512, 512, [], "f058", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"] }; +var faCheckSquare = { prefix: 'fas', iconName: 'check-square', icon: [448, 512, [], "f14a", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"] }; +var faChess = { prefix: 'fas', iconName: 'chess', icon: [512, 512, [], "f439", "M199.821 217.633a6 6 0 0 1 6 6l-.001 20.766a6 6 0 0 1-6 6h-25.805c0 31.715-2.153 96.201 17.398 153.229H64.597C84.54 345.452 82.02 279.245 82.02 250.399H56.183a6 6 0 0 1-6-6l.002-20.766a6 6 0 0 1 6-6h143.636zM41.554 115.088l34.58 95.071h103.734l34.572-95.072c2.846-7.826-2.95-16.101-11.278-16.101H152v-30.22h21.57a6 6 0 0 0 6-6V40.383a6 6 0 0 0-6-6h-28.367V6a6 6 0 0 0-6-6H116.82a6 6 0 0 0-6 6v28.383H82.421a6 6 0 0 0-6 6v22.383a6 6 0 0 0 6 6H104v30.219H52.831c-8.328.001-14.124 8.276-11.277 16.103zM222.678 445.17v-28.067a6 6 0 0 0-6-6H39.322a6 6 0 0 0-6 6v28.067l-22.148 14.164a6 6 0 0 0-2.767 5.055V506a6 6 0 0 0 6 6h227.187a6 6 0 0 0 6-6v-41.612a6 6 0 0 0-2.767-5.055l-22.149-14.163zm90.578-144.225l24.88 16.963c.09 18.124-.167 63.904-11.905 114.522h147.526c-11.713-50.475-11.969-96.324-11.882-114.537l24.859-16.949a3.856 3.856 0 0 0 1.684-3.187v-69.901a3.857 3.857 0 0 0-3.857-3.857h-27.655a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.858-3.857h-52.918a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.857-3.857H315.43a3.857 3.857 0 0 0-3.857 3.857v69.901a3.855 3.855 0 0 0 1.683 3.188zm71.585 51.906c0-8.372 6.787-15.158 15.159-15.158s15.158 6.787 15.158 15.158v30.318h-30.317v-30.318zM504.62 470.059l-13.664-10.639v-15.552a3.857 3.857 0 0 0-3.857-3.857H312.915a3.857 3.857 0 0 0-3.857 3.857v15.552l-13.677 10.639a3.857 3.857 0 0 0-1.488 3.044v35.039a3.857 3.857 0 0 0 3.857 3.857h204.5a3.857 3.857 0 0 0 3.857-3.857v-35.04a3.859 3.859 0 0 0-1.487-3.043z"] }; +var faChessBishop = { prefix: 'fas', iconName: 'chess-bishop', icon: [320, 512, [], "f43a", "M123.158 77.881C107.369 72.53 96 57.597 96 40c0-22.091 17.909-40 40-40h47.796c22.091 0 40 17.909 40 40 0 17.541-11.295 32.434-27.005 37.829 23.993 16.657 48.577 46.839 68.703 82.05L144.929 280.443a6 6 0 0 0 0 8.485l14.142 14.142a6 6 0 0 0 8.485 0L280.9 189.726c17.758 38.297 29.371 79.443 29.371 114.273 0 53.786-22.897 75.788-58.446 86.033V448H68.174v-57.97C32.631 379.784 9.739 357.781 9.739 304c0-78.029 58.281-187.766 113.419-226.119zM320 500v-24c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12z"] }; +var faChessBoard = { prefix: 'fas', iconName: 'chess-board', icon: [512, 512, [], "f43c", "M256 256v64h-64v-64h64zm0-256h-64v64h64V0zm0 256h64v-64h-64v64zM384 0h-64v64h64V0zm0 512h64v-64h-64v64zm128-64v-64h-64v64h64zm-384 64h64v-64h-64v64zm0-512H64v64h64V0zm384 192v-64h-64v64h64zm0 128v-64h-64v64h64zM0 512h64v-64H0v64zM0 64v64h64V64H0zm0 128v64h64v-64H0zm0 128v64h64v-64H0zm256 192h64v-64h-64v64zm-64-128v64h64v-64h-64zm64-192v-64h-64v64h64zM64 384v64h64v-64H64zm64-128H64v64h64v-64zm256 128h64v-64h-64v64zM512 0h-64v64h64V0zM384 256h64v-64h-64v64zm0-192v64h64V64h-64zm-64 320v64h64v-64h-64zm-192-64v64h64v-64h-64zm128 0v64h64v-64h-64zm-64-128h-64v64h64v-64zm-64-64H64v64h64v-64zm192 192h64v-64h-64v64zM192 128V64h-64v64h64zm128 0V64h-64v64h64zm0 64h64v-64h-64v64z"] }; +var faChessKing = { prefix: 'fas', iconName: 'chess-king', icon: [448, 512, [], "f43f", "M416 476v24c0 6.627-5.373 12-12 12H44c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12zm-8.033-324H248v-48h50a6 6 0 0 0 6-6V62a6 6 0 0 0-6-6h-50V6a6 6 0 0 0-6-6h-36a6 6 0 0 0-6 6v50h-50a6 6 0 0 0-6 6v36a6 6 0 0 0 6 6h50v48H40.033c-27.574 0-46.879 27.244-37.738 53.259L87.582 448h272.836l85.287-242.741C454.846 179.244 435.541 152 407.967 152z"] }; +var faChessKnight = { prefix: 'fas', iconName: 'chess-knight', icon: [384, 512, [], "f441", "M352 224v224H32v-46.557c0-30.302 17.12-58.003 44.223-71.554l57.243-28.622A48 48 0 0 0 160 258.334V208l-22.127 11.063a23.996 23.996 0 0 0-12.55 15.645l-11.835 47.338a12 12 0 0 1-7.185 8.231l-29.601 11.84a11.998 11.998 0 0 1-9.33-.176L7.126 275.167A12 12 0 0 1 0 264.201v-158.26c0-6.365 2.529-12.47 7.03-16.971L16 80 1.789 51.578A16.937 16.937 0 0 1 0 44c0-6.627 5.373-12 12-12h148c106.039 0 192 85.961 192 192zm20 240H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12zM52 128c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z"] }; +var faChessPawn = { prefix: 'fas', iconName: 'chess-pawn', icon: [320, 512, [], "f443", "M264 448H56s60-42.743 60-176H84c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h40.209C95.721 210.56 76 181.588 76 148c0-46.392 37.608-84 84-84s84 37.608 84 84c0 33.588-19.721 62.56-48.209 76H236c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12h-32c0 133.257 60 176 60 176zm28 16H28c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h264c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12z"] }; +var faChessQueen = { prefix: 'fas', iconName: 'chess-queen', icon: [512, 512, [], "f445", "M436 512H76c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12zM255.579 0c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zm204.568 154.634c-5.768-3.045-12.916-.932-16.082 4.77-8.616 15.516-22.747 37.801-44.065 37.801-28.714 0-30.625-19.804-31.686-57.542-.183-6.492-5.501-11.664-11.995-11.664h-41.006c-5.175 0-9.754 3.328-11.388 8.238-8.89 26.709-26.073 40.992-47.925 40.992s-39.034-14.283-47.925-40.992c-1.634-4.91-6.213-8.238-11.388-8.238h-41.005c-6.495 0-11.813 5.174-11.995 11.667-1.052 37.642-2.934 57.539-31.688 57.539-20.691 0-33.817-20.224-44.425-38.025-3.266-5.48-10.258-7.431-15.899-4.453l-39.179 20.679a12 12 0 0 0-5.51 15.145L112 448h288l105.014-257.448a12 12 0 0 0-5.51-15.145l-39.357-20.773z"] }; +var faChessRook = { prefix: 'fas', iconName: 'chess-rook', icon: [384, 512, [], "f447", "M81.241 215.027C80.957 258.92 77.411 348.076 48 448h287.982c-29.4-99.604-32.936-188.912-33.221-232.975l45.418-42.312a11.998 11.998 0 0 0 3.82-8.78V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v44h-48V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v44H96V44c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v119.932c0 3.33 1.384 6.51 3.82 8.78l45.421 42.315zM160 256c0-17.673 14.327-32 32-32 17.673 0 32 14.327 32 32v64.004h-64V256zm224 220v24c0 6.627-5.373 12-12 12H12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12z"] }; +var faChevronCircleDown = { prefix: 'fas', iconName: 'chevron-circle-down', icon: [512, 512, [], "f13a", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM273 369.9l135.5-135.5c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L256 285.1 154.4 183.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L239 369.9c9.4 9.4 24.6 9.4 34 0z"] }; +var faChevronCircleLeft = { prefix: 'fas', iconName: 'chevron-circle-left', icon: [512, 512, [], "f137", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z"] }; +var faChevronCircleRight = { prefix: 'fas', iconName: 'chevron-circle-right', icon: [512, 512, [], "f138", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z"] }; +var faChevronCircleUp = { prefix: 'fas', iconName: 'chevron-circle-up', icon: [512, 512, [], "f139", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm231-113.9L103.5 277.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L256 226.9l101.6 101.6c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L273 142.1c-9.4-9.4-24.6-9.4-34 0z"] }; +var faChevronDown = { prefix: 'fas', iconName: 'chevron-down', icon: [448, 512, [], "f078", "M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"] }; +var faChevronLeft = { prefix: 'fas', iconName: 'chevron-left', icon: [320, 512, [], "f053", "M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z"] }; +var faChevronRight = { prefix: 'fas', iconName: 'chevron-right', icon: [320, 512, [], "f054", "M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z"] }; +var faChevronUp = { prefix: 'fas', iconName: 'chevron-up', icon: [448, 512, [], "f077", "M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z"] }; +var faChild = { prefix: 'fas', iconName: 'child', icon: [384, 512, [], "f1ae", "M120 72c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.764-32.235 72-72 72s-72-32.236-72-72zm254.627 1.373c-12.496-12.497-32.758-12.497-45.254 0L242.745 160H141.254L54.627 73.373c-12.496-12.497-32.758-12.497-45.254 0-12.497 12.497-12.497 32.758 0 45.255L104 213.254V480c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V368h16v112c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V213.254l94.627-94.627c12.497-12.497 12.497-32.757 0-45.254z"] }; +var faChurch = { prefix: 'fas', iconName: 'church', icon: [640, 512, [], "f51d", "M464.46 246.68L352 179.2V128h48c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-48V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v48h-48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v51.2l-112.46 67.48A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.65-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.54A32.024 32.024 0 0 0 0 395.96zm620.61-29.42L512 320v192h112c8.84 0 16-7.16 16-16V395.96c0-12.8-7.63-24.37-19.39-29.42z"] }; +var faCircle = { prefix: 'fas', iconName: 'circle', icon: [512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"] }; +var faCircleNotch = { prefix: 'fas', iconName: 'circle-notch', icon: [512, 512, [], "f1ce", "M288 39.056v16.659c0 10.804 7.281 20.159 17.686 23.066C383.204 100.434 440 171.518 440 256c0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-84.47 56.786-155.564 134.312-177.219C216.719 75.874 224 66.517 224 55.712V39.064c0-15.709-14.834-27.153-30.046-23.234C86.603 43.482 7.394 141.206 8.003 257.332c.72 137.052 111.477 246.956 248.531 246.667C393.255 503.711 504 392.788 504 256c0-115.633-79.14-212.779-186.211-240.236C302.678 11.889 288 23.456 288 39.056z"] }; +var faClipboard = { prefix: 'fas', iconName: 'clipboard', icon: [384, 512, [], "f328", "M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z"] }; +var faClipboardCheck = { prefix: 'fas', iconName: 'clipboard-check', icon: [384, 512, [], "f46c", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm121.2 231.8l-143 141.8c-4.7 4.7-12.3 4.6-17-.1l-82.6-83.3c-4.7-4.7-4.6-12.3.1-17L99.1 285c4.7-4.7 12.3-4.6 17 .1l46 46.4 106-105.2c4.7-4.7 12.3-4.6 17 .1l28.2 28.4c4.7 4.8 4.6 12.3-.1 17z"] }; +var faClipboardList = { prefix: 'fas', iconName: 'clipboard-list', icon: [384, 512, [], "f46d", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM96 424c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm96-192c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm128 368c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z"] }; +var faClock = { prefix: 'fas', iconName: 'clock', icon: [512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm57.1 350.1L224.9 294c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v137.7l63.5 46.2c5.4 3.9 6.5 11.4 2.6 16.8l-28.2 38.8c-3.9 5.3-11.4 6.5-16.8 2.6z"] }; +var faClone = { prefix: 'fas', iconName: 'clone', icon: [512, 512, [], "f24d", "M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z"] }; +var faClosedCaptioning = { prefix: 'fas', iconName: 'closed-captioning', icon: [512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM218.1 287.7c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2.1 48 51.1 70.5 92.3 32.6zm190.4 0c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.5 56.9-172.7 32.1-172.7-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 222.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6z"] }; +var faCloud = { prefix: 'fas', iconName: 'cloud', icon: [640, 512, [], "f0c2", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z"] }; +var faCloudDownloadAlt = { prefix: 'fas', iconName: 'cloud-download-alt', icon: [640, 512, [], "f381", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z"] }; +var faCloudUploadAlt = { prefix: 'fas', iconName: 'cloud-upload-alt', icon: [640, 512, [], "f382", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z"] }; +var faCode = { prefix: 'fas', iconName: 'code', icon: [640, 512, [], "f121", "M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"] }; +var faCodeBranch = { prefix: 'fas', iconName: 'code-branch', icon: [384, 512, [], "f126", "M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"] }; +var faCoffee = { prefix: 'fas', iconName: 'coffee', icon: [640, 512, [], "f0f4", "M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z"] }; +var faCog = { prefix: 'fas', iconName: 'cog', icon: [512, 512, [], "f013", "M444.788 291.1l42.616 24.599c4.867 2.809 7.126 8.618 5.459 13.985-11.07 35.642-29.97 67.842-54.689 94.586a12.016 12.016 0 0 1-14.832 2.254l-42.584-24.595a191.577 191.577 0 0 1-60.759 35.13v49.182a12.01 12.01 0 0 1-9.377 11.718c-34.956 7.85-72.499 8.256-109.219.007-5.49-1.233-9.403-6.096-9.403-11.723v-49.184a191.555 191.555 0 0 1-60.759-35.13l-42.584 24.595a12.016 12.016 0 0 1-14.832-2.254c-24.718-26.744-43.619-58.944-54.689-94.586-1.667-5.366.592-11.175 5.459-13.985L67.212 291.1a193.48 193.48 0 0 1 0-70.199l-42.616-24.599c-4.867-2.809-7.126-8.618-5.459-13.985 11.07-35.642 29.97-67.842 54.689-94.586a12.016 12.016 0 0 1 14.832-2.254l42.584 24.595a191.577 191.577 0 0 1 60.759-35.13V25.759a12.01 12.01 0 0 1 9.377-11.718c34.956-7.85 72.499-8.256 109.219-.007 5.49 1.233 9.403 6.096 9.403 11.723v49.184a191.555 191.555 0 0 1 60.759 35.13l42.584-24.595a12.016 12.016 0 0 1 14.832 2.254c24.718 26.744 43.619 58.944 54.689 94.586 1.667 5.366-.592 11.175-5.459 13.985L444.788 220.9a193.485 193.485 0 0 1 0 70.2zM336 256c0-44.112-35.888-80-80-80s-80 35.888-80 80 35.888 80 80 80 80-35.888 80-80z"] }; +var faCogs = { prefix: 'fas', iconName: 'cogs', icon: [640, 512, [], "f085", "M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z"] }; +var faCoins = { prefix: 'fas', iconName: 'coins', icon: [512, 512, [], "f51e", "M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z"] }; +var faColumns = { prefix: 'fas', iconName: 'columns', icon: [512, 512, [], "f0db", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z"] }; +var faComment = { prefix: 'fas', iconName: 'comment', icon: [512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32z"] }; +var faCommentAlt = { prefix: 'fas', iconName: 'comment-alt', icon: [512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 9.8 11.2 15.5 19.1 9.7L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z"] }; +var faCommentDots = { prefix: 'fas', iconName: 'comment-dots', icon: [512, 512, [], "f4ad", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faCommentSlash = { prefix: 'fas', iconName: 'comment-slash', icon: [640, 512, [], "f4b3", "M64 240c0 49.6 21.4 95 57 130.7-12.6 50.3-54.3 95.2-54.8 95.8-2.2 2.3-2.8 5.7-1.5 8.7 1.3 2.9 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 27.4 0 53.7-3.6 78.4-10L72.9 186.4c-5.6 17.1-8.9 35-8.9 53.6zm569.8 218.1l-114.4-88.4C554.6 334.1 576 289.2 576 240c0-114.9-114.6-208-256-208-65.1 0-124.2 20.1-169.4 52.7L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z"] }; +var faComments = { prefix: 'fas', iconName: 'comments', icon: [576, 512, [], "f086", "M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z"] }; +var faCompactDisc = { prefix: 'fas', iconName: 'compact-disc', icon: [496, 512, [], "f51f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 256H56c0-105.9 86.1-192 192-192v32c-88.2 0-160 71.8-160 160zm160 96c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"] }; +var faCompass = { prefix: 'fas', iconName: 'compass', icon: [512, 512, [], "f14e", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM307.446 120.844l-102.642 97.779a23.997 23.997 0 0 0-6.772 11.729l-33.359 137.779c-5.68 23.459 22.777 39.318 39.88 23.024l102.64-97.779a23.99 23.99 0 0 0 6.772-11.729l33.359-137.779c5.618-23.198-22.591-39.493-39.878-23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; +var faCompress = { prefix: 'fas', iconName: 'compress', icon: [448, 512, [], "f066", "M436 192H312c-13.3 0-24-10.7-24-24V44c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-276-24V44c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v84H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 300V344c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-84h84c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H312c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"] }; +var faCopy = { prefix: 'fas', iconName: 'copy', icon: [448, 512, [], "f0c5", "M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z"] }; +var faCopyright = { prefix: 'fas', iconName: 'copyright', icon: [512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm117.134 346.753c-1.592 1.867-39.776 45.731-109.851 45.731-84.692 0-144.484-63.26-144.484-145.567 0-81.303 62.004-143.401 143.762-143.401 66.957 0 101.965 37.315 103.422 38.904a12 12 0 0 1 1.238 14.623l-22.38 34.655c-4.049 6.267-12.774 7.351-18.234 2.295-.233-.214-26.529-23.88-61.88-23.88-46.116 0-73.916 33.575-73.916 76.082 0 39.602 25.514 79.692 74.277 79.692 38.697 0 65.28-28.338 65.544-28.625 5.132-5.565 14.059-5.033 18.508 1.053l24.547 33.572a12.001 12.001 0 0 1-.553 14.866z"] }; +var faCouch = { prefix: 'fas', iconName: 'couch', icon: [640, 512, [], "f4b8", "M160 224v64h320v-64c0-35.3 28.7-64 64-64h32c0-53-43-96-96-96H160c-53 0-96 43-96 96h32c35.3 0 64 28.7 64 64zm416-32h-32c-17.7 0-32 14.3-32 32v96H128v-96c0-17.7-14.3-32-32-32H64c-35.3 0-64 28.7-64 64 0 23.6 13 44 32 55.1V432c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-16h384v16c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V311.1c19-11.1 32-31.5 32-55.1 0-35.3-28.7-64-64-64z"] }; +var faCreditCard = { prefix: 'fas', iconName: 'credit-card', icon: [576, 512, [], "f09d", "M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V256H0v176zm192-68c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-40zm-128 0c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM576 80v48H0V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48z"] }; +var faCrop = { prefix: 'fas', iconName: 'crop', icon: [512, 512, [], "f125", "M488 352h-40V109.3l57-57c9.4-9.4 9.4-24.6 0-33.9L493.7 7c-9.4-9.4-24.6-9.4-33.9 0l-57 57H160V24c0-13.3-10.7-24-24-24H88C74.7 0 64 10.7 64 24v40H24C10.7 64 0 74.7 0 88v48c0 13.3 10.7 24 24 24h40v264c0 13.3 10.7 24 24 24h264v40c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24v-40h40c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zM306.7 160L160 306.7V160h146.7zM205.3 352L352 205.3V352H205.3z"] }; +var faCrosshairs = { prefix: 'fas', iconName: 'crosshairs', icon: [512, 512, [], "f05b", "M500 224h-30.364C455.724 130.325 381.675 56.276 288 42.364V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v30.364C130.325 56.276 56.276 130.325 42.364 224H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h30.364C56.276 381.675 130.325 455.724 224 469.636V500c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-30.364C381.675 455.724 455.724 381.675 469.636 288H500c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zM288 404.634V364c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40.634C165.826 392.232 119.783 346.243 107.366 288H148c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40.634C119.768 165.826 165.757 119.783 224 107.366V148c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40.634C346.174 119.768 392.217 165.757 404.634 224H364c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40.634C392.232 346.174 346.243 392.217 288 404.634zM288 256c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z"] }; +var faCrow = { prefix: 'fas', iconName: 'crow', icon: [640, 512, [], "f520", "M544 32h-16.36C513.04 12.68 490.09 0 464 0c-44.18 0-80 35.82-80 80v20.98L12.09 393.57A30.216 30.216 0 0 0 0 417.74c0 22.46 23.64 37.07 43.73 27.03L165.27 384h96.49l44.41 120.1c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38L312.94 384H352c1.91 0 3.76-.23 5.66-.29l44.51 120.38c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38l-41.24-111.53C485.74 352.8 544 279.26 544 192v-80l96-16c0-35.35-42.98-64-96-64zm-80 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"] }; +var faCrown = { prefix: 'fas', iconName: 'crown', icon: [640, 512, [], "f521", "M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.4 7.7-.8L128 416h384l72.3-192.8c2.5.4 5.1.8 7.7.8 26.5 0 48-21.5 48-48s-21.5-48-48-48z"] }; +var faCube = { prefix: 'fas', iconName: 'cube', icon: [512, 512, [], "f1b2", "M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z"] }; +var faCubes = { prefix: 'fas', iconName: 'cubes', icon: [512, 512, [], "f1b3", "M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z"] }; +var faCut = { prefix: 'fas', iconName: 'cut', icon: [448, 512, [], "f0c4", "M444.485 422.426c4.689 4.689 4.684 12.287 0 16.971-32.804 32.804-85.991 32.804-118.795 0L210.176 323.883l-24.859 24.859C189.63 359.657 192 371.552 192 384c0 53.019-42.981 96-96 96S0 437.019 0 384s42.981-96 96-96c4.536 0 8.995.322 13.363.93l32.93-32.93-32.93-32.93c-4.368.608-8.827.93-13.363.93-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96c0 12.448-2.37 24.343-6.682 35.258l24.859 24.859L325.69 72.603c32.804-32.804 85.991-32.804 118.795 0 4.684 4.684 4.689 12.282 0 16.971L278.059 256l166.426 166.426zM96 96c-17.645 0-32 14.355-32 32s14.355 32 32 32 32-14.355 32-32-14.355-32-32-32m0 256c-17.645 0-32 14.355-32 32s14.355 32 32 32 32-14.355 32-32-14.355-32-32-32m112-108c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12z"] }; +var faDatabase = { prefix: 'fas', iconName: 'database', icon: [448, 512, [], "f1c0", "M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z"] }; +var faDeaf = { prefix: 'fas', iconName: 'deaf', icon: [512, 512, [], "f2a4", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm268.485-52.201L480.2 3.515c-4.687-4.686-12.284-4.686-16.971 0L376.2 90.544c-4.686 4.686-4.686 12.284 0 16.971l28.285 28.285c4.686 4.686 12.284 4.686 16.97 0l87.03-87.029c4.687-4.688 4.687-12.286 0-16.972zM168.97 314.745c-4.686-4.686-12.284-4.686-16.97 0L3.515 463.23c-4.686 4.686-4.686 12.284 0 16.971L31.8 508.485c4.687 4.686 12.284 4.686 16.971 0L197.256 360c4.686-4.686 4.686-12.284 0-16.971l-28.286-28.284z"] }; +var faDesktop = { prefix: 'fas', iconName: 'desktop', icon: [576, 512, [], "f108", "M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z"] }; +var faDiagnoses = { prefix: 'fas', iconName: 'diagnoses', icon: [640, 512, [], "f470", "M496 256c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm-176-80c48.5 0 88-39.5 88-88S368.5 0 320 0s-88 39.5-88 88 39.5 88 88 88zM59.8 364c10.2 15.3 29.3 17.8 42.9 9.8 16.2-9.6 56.2-31.7 105.3-48.6V416h224v-90.7c49.1 16.8 89.1 39 105.3 48.6 13.6 8 32.7 5.3 42.9-9.8l17.8-26.7c8.8-13.2 7.6-34.6-10-45.1-11.9-7.1-29.7-17-51.1-27.4-28.1 46.1-99.4 17.8-87.7-35.1C409.3 217.2 365.1 208 320 208c-57 0-112.9 14.5-160 32.2-.2 40.2-47.6 63.3-79.2 36-11.2 6-21.3 11.6-28.7 16-17.6 10.5-18.8 31.8-10 45.1L59.8 364zM368 344c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-160 8c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm512 192H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z"] }; +var faDice = { prefix: 'fas', iconName: 'dice', icon: [640, 512, [], "f522", "M592 192H473.26c12.69 29.59 7.12 65.2-17 89.32L320 417.58V464c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48V240c0-26.51-21.49-48-48-48zM480 376c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm-46.37-186.7L258.7 14.37c-19.16-19.16-50.23-19.16-69.39 0L14.37 189.3c-19.16 19.16-19.16 50.23 0 69.39L189.3 433.63c19.16 19.16 50.23 19.16 69.39 0L433.63 258.7c19.16-19.17 19.16-50.24 0-69.4zM96 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"] }; +var faDiceFive = { prefix: 'fas', iconName: 'dice-five', icon: [448, 512, [], "f523", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceFour = { prefix: 'fas', iconName: 'dice-four', icon: [448, 512, [], "f524", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceOne = { prefix: 'fas', iconName: 'dice-one', icon: [448, 512, [], "f525", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM224 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceSix = { prefix: 'fas', iconName: 'dice-six', icon: [448, 512, [], "f526", "M384 0H64C28.65 0 0 28.65 0 64v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V64c0-35.35-28.65-64-64-64zM128 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceThree = { prefix: 'fas', iconName: 'dice-three', icon: [448, 512, [], "f527", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceTwo = { prefix: 'fas', iconName: 'dice-two', icon: [448, 512, [], "f528", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDivide = { prefix: 'fas', iconName: 'divide', icon: [448, 512, [], "f529", "M224 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm0-192c35.35 0 64-28.65 64-64s-28.65-64-64-64-64 28.65-64 64 28.65 64 64 64zm192 48H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; +var faDna = { prefix: 'fas', iconName: 'dna', icon: [448, 512, [], "f471", "M.1 494.1c-1.1 9.5 6.3 17.8 15.9 17.8l32.3.1c8.1 0 14.9-5.9 16-13.9.7-4.9 1.8-11.1 3.4-18.1H380c1.6 6.9 2.9 13.2 3.5 18.1 1.1 8 7.9 14 16 13.9l32.3-.1c9.6 0 17.1-8.3 15.9-17.8-4.6-37.9-25.6-129-118.9-207.7-17.6 12.4-37.1 24.2-58.5 35.4 6.2 4.6 11.4 9.4 17 14.2H159.7c21.3-18.1 47-35.6 78.7-51.4C410.5 199.1 442.1 65.8 447.9 17.9 449 8.4 441.6.1 432 .1L399.6 0c-8.1 0-14.9 5.9-16 13.9-.7 4.9-1.8 11.1-3.4 18.1H67.8c-1.6-7-2.7-13.1-3.4-18.1-1.1-8-7.9-14-16-13.9L16.1.1C6.5.1-1 8.4.1 17.9 5.3 60.8 31.4 171.8 160 256 31.5 340.2 5.3 451.2.1 494.1zM224 219.6c-25.1-13.7-46.4-28.4-64.3-43.6h128.5c-17.8 15.2-39.1 30-64.2 43.6zM355.1 96c-5.8 10.4-12.8 21.1-21 32H114c-8.3-10.9-15.3-21.6-21-32h262.1zM92.9 416c5.8-10.4 12.8-21.1 21-32h219.4c8.3 10.9 15.4 21.6 21.2 32H92.9z"] }; +var faDollarSign = { prefix: 'fas', iconName: 'dollar-sign', icon: [288, 512, [], "f155", "M209.2 233.4l-108-31.6C88.7 198.2 80 186.5 80 173.5c0-16.3 13.2-29.5 29.5-29.5h66.3c12.2 0 24.2 3.7 34.2 10.5 6.1 4.1 14.3 3.1 19.5-2l34.8-34c7.1-6.9 6.1-18.4-1.8-24.5C238 74.8 207.4 64.1 176 64V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C45.8 64-5.4 118.7.5 183.6c4.2 46.1 39.4 83.6 83.8 96.6l102.5 30c12.5 3.7 21.2 15.3 21.2 28.3 0 16.3-13.2 29.5-29.5 29.5h-66.3C100 368 88 364.3 78 357.5c-6.1-4.1-14.3-3.1-19.5 2l-34.8 34c-7.1 6.9-6.1 18.4 1.8 24.5 24.5 19.2 55.1 29.9 86.5 30v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48.2c46.6-.9 90.3-28.6 105.7-72.7 21.5-61.6-14.6-124.8-72.5-141.7z"] }; +var faDolly = { prefix: 'fas', iconName: 'dolly', icon: [576, 512, [], "f472", "M294.2 277.7c18 5 34.7 13.4 49.5 24.7l161.5-53.8c8.4-2.8 12.9-11.9 10.1-20.2L454.9 47.2c-2.8-8.4-11.9-12.9-20.2-10.1l-61.1 20.4 33.1 99.4L346 177l-33.1-99.4-61.6 20.5c-8.4 2.8-12.9 11.9-10.1 20.2l53 159.4zm281 48.7L565 296c-2.8-8.4-11.9-12.9-20.2-10.1l-213.5 71.2c-17.2-22-43.6-36.4-73.5-37L158.4 21.9C154 8.8 141.8 0 128 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h88.9l92.2 276.7c-26.1 20.4-41.7 53.6-36 90.5 6.1 39.4 37.9 72.3 77.3 79.2 60.2 10.7 112.3-34.8 113.4-92.6l213.3-71.2c8.3-2.8 12.9-11.8 10.1-20.2zM256 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; +var faDollyFlatbed = { prefix: 'fas', iconName: 'dolly-flatbed', icon: [640, 512, [], "f474", "M208 320h384c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H448v128l-48-32-48 32V32H208c-8.8 0-16 7.2-16 16v256c0 8.8 7.2 16 16 16zm416 64H128V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h82.9c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H451c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H624c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z"] }; +var faDonate = { prefix: 'fas', iconName: 'donate', icon: [512, 512, [], "f4b9", "M256 416c114.9 0 208-93.1 208-208S370.9 0 256 0 48 93.1 48 208s93.1 208 208 208zM233.8 97.4V80.6c0-9.2 7.4-16.6 16.6-16.6h11.1c9.2 0 16.6 7.4 16.6 16.6v17c15.5.8 30.5 6.1 43 15.4 5.6 4.1 6.2 12.3 1.2 17.1L306 145.6c-3.8 3.7-9.5 3.8-14 1-5.4-3.4-11.4-5.1-17.8-5.1h-38.9c-9 0-16.3 8.2-16.3 18.3 0 8.2 5 15.5 12.1 17.6l62.3 18.7c25.7 7.7 43.7 32.4 43.7 60.1 0 34-26.4 61.5-59.1 62.4v16.8c0 9.2-7.4 16.6-16.6 16.6h-11.1c-9.2 0-16.6-7.4-16.6-16.6v-17c-15.5-.8-30.5-6.1-43-15.4-5.6-4.1-6.2-12.3-1.2-17.1l16.3-15.5c3.8-3.7 9.5-3.8 14-1 5.4 3.4 11.4 5.1 17.8 5.1h38.9c9 0 16.3-8.2 16.3-18.3 0-8.2-5-15.5-12.1-17.6l-62.3-18.7c-25.7-7.7-43.7-32.4-43.7-60.1.1-34 26.4-61.5 59.1-62.4zM480 352h-32.5c-19.6 26-44.6 47.7-73 64h63.8c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8h63.8c-28.4-16.3-53.3-38-73-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32z"] }; +var faDoorClosed = { prefix: 'fas', iconName: 'door-closed', icon: [640, 512, [], "f52a", "M624 448H512V50.8C512 22.78 490.47 0 464 0H175.99c-26.47 0-48 22.78-48 50.8V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM415.99 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32c.01 17.67-14.32 32-32 32z"] }; +var faDoorOpen = { prefix: 'fas', iconName: 'door-open', icon: [640, 512, [], "f52b", "M624 448h-80V113.45C544 86.19 522.47 64 496 64H384v64h96v384h144c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM312.24 1.01l-192 49.74C105.99 54.44 96 67.7 96 82.92V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h336V33.18c0-21.58-19.56-37.41-39.76-32.17zM264 288c-13.25 0-24-14.33-24-32s10.75-32 24-32 24 14.33 24 32-10.75 32-24 32z"] }; +var faDotCircle = { prefix: 'fas', iconName: 'dot-circle', icon: [512, 512, [], "f192", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z"] }; +var faDove = { prefix: 'fas', iconName: 'dove', icon: [512, 512, [], "f4ba", "M288 167.2v-28.1c-28.2-36.3-47.1-79.3-54.1-125.2-2.1-13.5-19-18.8-27.8-8.3-21.1 24.9-37.7 54.1-48.9 86.5 34.2 38.3 80 64.6 130.8 75.1zM400 64c-44.2 0-80 35.9-80 80.1v59.4C215.6 197.3 127 133 87 41.8c-5.5-12.5-23.2-13.2-29-.9C41.4 76 32 115.2 32 156.6c0 70.8 34.1 136.9 85.1 185.9 13.2 12.7 26.1 23.2 38.9 32.8l-143.9 36C1.4 414-3.4 426.4 2.6 435.7 20 462.6 63 508.2 155.8 512c8 .3 16-2.6 22.1-7.9l65.2-56.1H320c88.4 0 160-71.5 160-159.9V128l32-64H400zm0 96.1c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"] }; +var faDownload = { prefix: 'fas', iconName: 'download', icon: [512, 512, [], "f019", "M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"] }; +var faDumbbell = { prefix: 'fas', iconName: 'dumbbell', icon: [640, 512, [], "f44b", "M104 96H56c-13.3 0-24 10.7-24 24v104H8c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h24v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm528 128h-24V120c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v272c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h24c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM456 32h-48c-13.3 0-24 10.7-24 24v168H256V56c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v400c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h128v168c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24z"] }; +var faEdit = { prefix: 'fas', iconName: 'edit', icon: [576, 512, [], "f044", "M402.6 83.2l90.2 90.2c3.8 3.8 3.8 10 0 13.8L274.4 405.6l-92.8 10.3c-12.4 1.4-22.9-9.1-21.5-21.5l10.3-92.8L388.8 83.2c3.8-3.8 10-3.8 13.8 0zm162-22.9l-48.8-48.8c-15.2-15.2-39.9-15.2-55.2 0l-35.4 35.4c-3.8 3.8-3.8 10 0 13.8l90.2 90.2c3.8 3.8 10 3.8 13.8 0l35.4-35.4c15.2-15.3 15.2-40 0-55.2zM384 346.2V448H64V128h229.8c3.2 0 6.2-1.3 8.5-3.5l40-40c7.6-7.6 2.2-20.5-8.5-20.5H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V306.2c0-10.7-12.9-16-20.5-8.5l-40 40c-2.2 2.3-3.5 5.3-3.5 8.5z"] }; +var faEject = { prefix: 'fas', iconName: 'eject', icon: [448, 512, [], "f052", "M448 384v64c0 17.673-14.327 32-32 32H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h384c17.673 0 32 14.327 32 32zM48.053 320h351.886c41.651 0 63.581-49.674 35.383-80.435L259.383 47.558c-19.014-20.743-51.751-20.744-70.767 0L12.67 239.565C-15.475 270.268 6.324 320 48.053 320z"] }; +var faEllipsisH = { prefix: 'fas', iconName: 'ellipsis-h', icon: [512, 512, [], "f141", "M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z"] }; +var faEllipsisV = { prefix: 'fas', iconName: 'ellipsis-v', icon: [192, 512, [], "f142", "M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z"] }; +var faEnvelope = { prefix: 'fas', iconName: 'envelope', icon: [512, 512, [], "f0e0", "M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"] }; +var faEnvelopeOpen = { prefix: 'fas', iconName: 'envelope-open', icon: [512, 512, [], "f2b6", "M512 464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V200.724a48 48 0 0 1 18.387-37.776c24.913-19.529 45.501-35.365 164.2-121.511C199.412 29.17 232.797-.347 256 .003c23.198-.354 56.596 29.172 73.413 41.433 118.687 86.137 139.303 101.995 164.2 121.512A48 48 0 0 1 512 200.724V464zm-65.666-196.605c-2.563-3.728-7.7-4.595-11.339-1.907-22.845 16.873-55.462 40.705-105.582 77.079-16.825 12.266-50.21 41.781-73.413 41.43-23.211.344-56.559-29.143-73.413-41.43-50.114-36.37-82.734-60.204-105.582-77.079-3.639-2.688-8.776-1.821-11.339 1.907l-9.072 13.196a7.998 7.998 0 0 0 1.839 10.967c22.887 16.899 55.454 40.69 105.303 76.868 20.274 14.781 56.524 47.813 92.264 47.573 35.724.242 71.961-32.771 92.263-47.573 49.85-36.179 82.418-59.97 105.303-76.868a7.998 7.998 0 0 0 1.839-10.967l-9.071-13.196z"] }; +var faEnvelopeSquare = { prefix: 'fas', iconName: 'envelope-square', icon: [448, 512, [], "f199", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM178.117 262.104C87.429 196.287 88.353 196.121 64 177.167V152c0-13.255 10.745-24 24-24h272c13.255 0 24 10.745 24 24v25.167c-24.371 18.969-23.434 19.124-114.117 84.938-10.5 7.655-31.392 26.12-45.883 25.894-14.503.218-35.367-18.227-45.883-25.895zM384 217.775V360c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V217.775c13.958 10.794 33.329 25.236 95.303 70.214 14.162 10.341 37.975 32.145 64.694 32.01 26.887.134 51.037-22.041 64.72-32.025 61.958-44.965 81.325-59.406 95.283-70.199z"] }; +var faEquals = { prefix: 'fas', iconName: 'equals', icon: [448, 512, [], "f52c", "M416 304H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32zm0-192H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; +var faEraser = { prefix: 'fas', iconName: 'eraser', icon: [512, 512, [], "f12d", "M497.941 273.941c18.745-18.745 18.745-49.137 0-67.882l-160-160c-18.745-18.745-49.136-18.746-67.883 0l-256 256c-18.745 18.745-18.745 49.137 0 67.882l96 96A48.004 48.004 0 0 0 144 480h356c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H355.883l142.058-142.059zm-302.627-62.627l137.373 137.373L265.373 416H150.628l-80-80 124.686-124.686z"] }; +var faEuroSign = { prefix: 'fas', iconName: 'euro-sign', icon: [320, 512, [], "f153", "M310.706 413.765c-1.314-6.63-7.835-10.872-14.424-9.369-10.692 2.439-27.422 5.413-45.426 5.413-56.763 0-101.929-34.79-121.461-85.449h113.689a12 12 0 0 0 11.708-9.369l6.373-28.36c1.686-7.502-4.019-14.631-11.708-14.631H115.22c-1.21-14.328-1.414-28.287.137-42.245H261.95a12 12 0 0 0 11.723-9.434l6.512-29.755c1.638-7.484-4.061-14.566-11.723-14.566H130.184c20.633-44.991 62.69-75.03 117.619-75.03 14.486 0 28.564 2.25 37.851 4.145 6.216 1.268 12.347-2.498 14.002-8.623l11.991-44.368c1.822-6.741-2.465-13.616-9.326-14.917C290.217 34.912 270.71 32 249.635 32 152.451 32 74.03 92.252 45.075 176H12c-6.627 0-12 5.373-12 12v29.755c0 6.627 5.373 12 12 12h21.569c-1.009 13.607-1.181 29.287-.181 42.245H12c-6.627 0-12 5.373-12 12v28.36c0 6.627 5.373 12 12 12h30.114C67.139 414.692 145.264 480 249.635 480c26.301 0 48.562-4.544 61.101-7.788 6.167-1.595 10.027-7.708 8.788-13.957l-8.818-44.49z"] }; +var faExchangeAlt = { prefix: 'fas', iconName: 'exchange-alt', icon: [512, 512, [], "f362", "M0 168v-16c0-13.255 10.745-24 24-24h360V80c0-21.367 25.899-32.042 40.971-16.971l80 80c9.372 9.373 9.372 24.569 0 33.941l-80 80C409.956 271.982 384 261.456 384 240v-48H24c-13.255 0-24-10.745-24-24zm488 152H128v-48c0-21.314-25.862-32.08-40.971-16.971l-80 80c-9.372 9.373-9.372 24.569 0 33.941l80 80C102.057 463.997 128 453.437 128 432v-48h360c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z"] }; +var faExclamation = { prefix: 'fas', iconName: 'exclamation', icon: [192, 512, [], "f12a", "M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z"] }; +var faExclamationCircle = { prefix: 'fas', iconName: 'exclamation-circle', icon: [512, 512, [], "f06a", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"] }; +var faExclamationTriangle = { prefix: 'fas', iconName: 'exclamation-triangle', icon: [576, 512, [], "f071", "M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"] }; +var faExpand = { prefix: 'fas', iconName: 'expand', icon: [448, 512, [], "f065", "M0 180V56c0-13.3 10.7-24 24-24h124c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H64v84c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12zM288 44v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V56c0-13.3-10.7-24-24-24H300c-6.6 0-12 5.4-12 12zm148 276h-40c-6.6 0-12 5.4-12 12v84h-84c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24V332c0-6.6-5.4-12-12-12zM160 468v-40c0-6.6-5.4-12-12-12H64v-84c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v124c0 13.3 10.7 24 24 24h124c6.6 0 12-5.4 12-12z"] }; +var faExpandArrowsAlt = { prefix: 'fas', iconName: 'expand-arrows-alt', icon: [448, 512, [], "f31e", "M448.1 344v112c0 13.3-10.7 24-24 24h-112c-21.4 0-32.1-25.9-17-41l36.2-36.2L224 295.6 116.8 402.9 153 439c15.1 15.1 4.4 41-17 41H24c-13.3 0-24-10.7-24-24V344c0-21.4 25.9-32.1 41-17l36.2 36.2L184.5 256 77.2 148.7 41 185c-15.1 15.1-41 4.4-41-17V56c0-13.3 10.7-24 24-24h112c21.4 0 32.1 25.9 17 41l-36.2 36.2L224 216.4l107.3-107.3L295.1 73c-15.1-15.1-4.4-41 17-41h112c13.3 0 24 10.7 24 24v112c0 21.4-25.9 32.1-41 17l-36.2-36.2L263.6 256l107.3 107.3 36.2-36.2c15.1-15.2 41-4.5 41 16.9z"] }; +var faExternalLinkAlt = { prefix: 'fas', iconName: 'external-link-alt', icon: [576, 512, [], "f35d", "M576 24v127.984c0 21.461-25.96 31.98-40.971 16.971l-35.707-35.709-243.523 243.523c-9.373 9.373-24.568 9.373-33.941 0l-22.627-22.627c-9.373-9.373-9.373-24.569 0-33.941L442.756 76.676l-35.703-35.705C391.982 25.9 402.656 0 424.024 0H552c13.255 0 24 10.745 24 24zM407.029 270.794l-16 16A23.999 23.999 0 0 0 384 303.765V448H64V128h264a24.003 24.003 0 0 0 16.97-7.029l16-16C376.089 89.851 365.381 64 344 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V287.764c0-21.382-25.852-32.09-40.971-16.97z"] }; +var faExternalLinkSquareAlt = { prefix: 'fas', iconName: 'external-link-square-alt', icon: [448, 512, [], "f360", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-88 16H248.029c-21.313 0-32.08 25.861-16.971 40.971l31.984 31.987L67.515 364.485c-4.686 4.686-4.686 12.284 0 16.971l31.029 31.029c4.687 4.686 12.285 4.686 16.971 0l195.526-195.526 31.988 31.991C358.058 263.977 384 253.425 384 231.979V120c0-13.255-10.745-24-24-24z"] }; +var faEye = { prefix: 'fas', iconName: 'eye', icon: [576, 512, [], "f06e", "M569.354 231.631C512.969 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-75.162 0-136-60.827-136-136 0-75.162 60.826-136 136-136 75.162 0 136 60.826 136 136 0 75.162-60.826 136-136 136zm104-136c0 57.438-46.562 104-104 104s-104-46.562-104-104c0-17.708 4.431-34.379 12.236-48.973l-.001.032c0 23.651 19.173 42.823 42.824 42.823s42.824-19.173 42.824-42.823c0-23.651-19.173-42.824-42.824-42.824l-.032.001C253.621 156.431 270.292 152 288 152c57.438 0 104 46.562 104 104z"] }; +var faEyeDropper = { prefix: 'fas', iconName: 'eye-dropper', icon: [512, 512, [], "f1fb", "M177.38 206.64L39.03 344.97A24.01 24.01 0 0 0 32 361.94V424L0 480l32 32 56-32h62.06c6.36 0 12.47-2.53 16.97-7.03l138.35-138.33-128-128zm225.552 30.47l16.952 16.95c9.37 9.37 9.37 24.57 0 33.94l-40.973 40.97c-9.292 9.312-24.506 9.434-33.94 0L183.028 167.03c-9.37-9.37-9.37-24.57 0-33.94L224 92.12c9.289-9.309 24.502-9.438 33.94 0l16.992 16.99 82.606-82.601c35.19-35.19 92.5-35.5 128 0 40.49 48.08 29.66 98.34 0 128l-82.606 82.601z"] }; +var faEyeSlash = { prefix: 'fas', iconName: 'eye-slash', icon: [576, 512, [], "f070", "M286.693 391.984l32.579 46.542A333.958 333.958 0 0 1 288 440C168.19 440 63.031 376.051 6.646 280.369a47.999 47.999 0 0 1 0-48.739c24.023-40.766 56.913-75.775 96.024-102.537l57.077 81.539C154.736 224.82 152 240.087 152 256c0 74.736 60.135 135.282 134.693 135.984zm282.661-111.615c-31.667 53.737-78.747 97.46-135.175 125.475l.011.015 41.47 59.2c7.6 10.86 4.96 25.82-5.9 33.42l-13.11 9.18c-10.86 7.6-25.82 4.96-33.42-5.9L100.34 46.94c-7.6-10.86-4.96-25.82 5.9-33.42l13.11-9.18c10.86-7.6 25.82-4.96 33.42 5.9l51.038 72.617C230.68 75.776 258.905 72 288 72c119.81 0 224.969 63.949 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM424 256c0-75.174-60.838-136-136-136-17.939 0-35.056 3.473-50.729 9.772l19.299 27.058c25.869-8.171 55.044-6.163 80.4 7.41h-.03c-23.65 0-42.82 19.17-42.82 42.82 0 23.626 19.147 42.82 42.82 42.82 23.65 0 42.82-19.17 42.82-42.82v-.03c18.462 34.49 16.312 77.914-8.25 110.95v.01l19.314 27.061C411.496 321.2 424 290.074 424 256zM262.014 356.727l-77.53-110.757c-5.014 52.387 29.314 98.354 77.53 110.757z"] }; +var faFastBackward = { prefix: 'fas', iconName: 'fast-backward', icon: [512, 512, [], "f049", "M0 436V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v151.9L235.5 71.4C256.1 54.3 288 68.6 288 96v131.9L459.5 71.4C480.1 54.3 512 68.6 512 96v320c0 27.4-31.9 41.7-52.5 24.6L288 285.3V416c0 27.4-31.9 41.7-52.5 24.6L64 285.3V436c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12z"] }; +var faFastForward = { prefix: 'fas', iconName: 'fast-forward', icon: [512, 512, [], "f050", "M512 76v360c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V284.1L276.5 440.6c-20.6 17.2-52.5 2.8-52.5-24.6V284.1L52.5 440.6C31.9 457.8 0 443.4 0 416V96c0-27.4 31.9-41.7 52.5-24.6L224 226.8V96c0-27.4 31.9-41.7 52.5-24.6L448 226.8V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12z"] }; +var faFax = { prefix: 'fas', iconName: 'fax', icon: [512, 512, [], "f1ac", "M128 144v320c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V144c0-26.51 21.49-48 48-48h32c26.51 0 48 21.49 48 48zm384 64v256c0 26.51-21.49 48-48 48H192c-26.51 0-48-21.49-48-48V40c0-22.091 17.909-40 40-40h207.432a39.996 39.996 0 0 1 28.284 11.716l48.569 48.569A39.999 39.999 0 0 1 480 88.568v74.174c18.641 6.591 32 24.36 32 45.258zm-320-16h240V96h-24c-13.203 0-24-10.797-24-24V48H192v144zm96 204c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm128 128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40z"] }; +var faFeather = { prefix: 'fas', iconName: 'feather', icon: [512, 512, [], "f52d", "M512 0C504.81.01 98.51 22.01 71.47 287.42c-2.62 22.6-4.22 45.28-5.37 67.98l160.65-160.65c6.25-6.25 16.38-6.25 22.62 0s6.25 16.38 0 22.62l-240 240a31.9 31.9 0 0 0-9.38 22.67C.02 497.68 14.33 512 32 512c8.19 0 16.38-3.12 22.62-9.38l55.05-55.05c38.4-.5 76.76-2.63 114.91-7.05 11.58-1.18 22.54-3.29 33.21-5.84L256 384h101.86c12.61-10.63 24.12-22.45 34.76-35.07L384 288h50.19C502.8 163.6 512 .1 512 0z"] }; +var faFemale = { prefix: 'fas', iconName: 'female', icon: [256, 512, [], "f182", "M128 0c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64S92.654 0 128 0m119.283 354.179l-48-192A24 24 0 0 0 176 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H80a24 24 0 0 0-23.283 18.179l-48 192C4.935 369.305 16.383 384 32 384h56v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V384h56c15.591 0 27.071-14.671 23.283-29.821z"] }; +var faFighterJet = { prefix: 'fas', iconName: 'fighter-jet', icon: [640, 512, [], "f0fb", "M544 224l-128-16-48-16h-24L227.158 44h39.509C278.333 44 288 41.375 288 38s-9.667-6-21.333-6H152v12h16v164h-48l-66.667-80H18.667L8 138.667V208h8v16h48v2.666l-64 8v42.667l64 8V288H16v16H8v69.333L18.667 384h34.667L120 304h48v164h-16v12h114.667c11.667 0 21.333-2.625 21.333-6s-9.667-6-21.333-6h-39.509L344 320h24l48-16 128-16c96-21.333 96-26.583 96-32 0-5.417 0-10.667-96-32z"] }; +var faFile = { prefix: 'fas', iconName: 'file', icon: [384, 512, [], "f15b", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileAlt = { prefix: 'fas', iconName: 'file-alt', icon: [384, 512, [], "f15c", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileArchive = { prefix: 'fas', iconName: 'file-archive', icon: [384, 512, [], "f1c6", "M224 136V0h-63.6v32h-32V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM95.9 32h32v32h-32V32zm32.3 384c-33.2 0-58-30.4-51.4-62.9L96.4 256v-32h32v-32h-32v-32h32v-32h-32V96h32V64h32v32h-32v32h32v32h-32v32h32v32h-32v32h22.1c5.7 0 10.7 4.1 11.8 9.7l17.3 87.7c6.4 32.4-18.4 62.6-51.4 62.6zm32.7-53c0 14.9-14.5 27-32.4 27S96 378 96 363c0-14.9 14.5-27 32.4-27s32.5 12.1 32.5 27zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileAudio = { prefix: 'fas', iconName: 'file-audio', icon: [384, 512, [], "f1c7", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileCode = { prefix: 'fas', iconName: 'file-code', icon: [384, 512, [], "f1c9", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zM123.206 400.505a5.4 5.4 0 0 1-7.633.246l-64.866-60.812a5.4 5.4 0 0 1 0-7.879l64.866-60.812a5.4 5.4 0 0 1 7.633.246l19.579 20.885a5.4 5.4 0 0 1-.372 7.747L101.65 336l40.763 35.874a5.4 5.4 0 0 1 .372 7.747l-19.579 20.884zm51.295 50.479l-27.453-7.97a5.402 5.402 0 0 1-3.681-6.692l61.44-211.626a5.402 5.402 0 0 1 6.692-3.681l27.452 7.97a5.4 5.4 0 0 1 3.68 6.692l-61.44 211.626a5.397 5.397 0 0 1-6.69 3.681zm160.792-111.045l-64.866 60.812a5.4 5.4 0 0 1-7.633-.246l-19.58-20.885a5.4 5.4 0 0 1 .372-7.747L284.35 336l-40.763-35.874a5.4 5.4 0 0 1-.372-7.747l19.58-20.885a5.4 5.4 0 0 1 7.633-.246l64.866 60.812a5.4 5.4 0 0 1-.001 7.879z"] }; +var faFileExcel = { prefix: 'fas', iconName: 'file-excel', icon: [384, 512, [], "f1c3", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm60.1 106.5L224 336l60.1 93.5c5.1 8-.6 18.5-10.1 18.5h-34.9c-4.4 0-8.5-2.4-10.6-6.3C208.9 405.5 192 373 192 373c-6.4 14.8-10 20-36.6 68.8-2.1 3.9-6.1 6.3-10.5 6.3H110c-9.5 0-15.2-10.5-10.1-18.5l60.3-93.5-60.3-93.5c-5.2-8 .6-18.5 10.1-18.5h34.8c4.4 0 8.5 2.4 10.6 6.3 26.1 48.8 20 33.6 36.6 68.5 0 0 6.1-11.7 36.6-68.5 2.1-3.9 6.2-6.3 10.6-6.3H274c9.5-.1 15.2 10.4 10.1 18.4zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileImage = { prefix: 'fas', iconName: 'file-image', icon: [384, 512, [], "f1c5", "M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z"] }; +var faFileMedical = { prefix: 'fas', iconName: 'file-medical', icon: [384, 512, [], "f477", "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 160v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8z"] }; +var faFileMedicalAlt = { prefix: 'fas', iconName: 'file-medical-alt', icon: [448, 512, [], "f478", "M288 136V0H88C74.7 0 64 10.7 64 24v232H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h140.9c3 0 5.8 1.7 7.2 4.4l19.9 39.8 56.8-113.7c2.9-5.9 11.4-5.9 14.3 0l34.7 69.5H352c8.8 0 16 7.2 16 16s-7.2 16-16 16h-89.9L240 275.8l-56.8 113.7c-2.9 5.9-11.4 5.9-14.3 0L134.1 320H64v168c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H312c-13.2 0-24-10.8-24-24zm153-31L343.1 7c-4.5-4.5-10.6-7-17-7H320v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"] }; +var faFilePdf = { prefix: 'fas', iconName: 'file-pdf', icon: [384, 512, [], "f1c1", "M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z"] }; +var faFilePowerpoint = { prefix: 'fas', iconName: 'file-powerpoint', icon: [384, 512, [], "f1c4", "M193.7 271.2c8.8 0 15.5 2.7 20.3 8.1 9.6 10.9 9.8 32.7-.2 44.1-4.9 5.6-11.9 8.5-21.1 8.5h-26.9v-60.7h27.9zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm53 165.2c0 90.3-88.8 77.6-111.1 77.6V436c0 6.6-5.4 12-12 12h-30.8c-6.6 0-12-5.4-12-12V236.2c0-6.6 5.4-12 12-12h81c44.5 0 72.9 32.8 72.9 77z"] }; +var faFileVideo = { prefix: 'fas', iconName: 'file-video', icon: [384, 512, [], "f1c8", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z"] }; +var faFileWord = { prefix: 'fas', iconName: 'file-word', icon: [384, 512, [], "f1c2", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm57.1 120H305c7.7 0 13.4 7.1 11.7 14.7l-38 168c-1.2 5.5-6.1 9.3-11.7 9.3h-38c-5.5 0-10.3-3.8-11.6-9.1-25.8-103.5-20.8-81.2-25.6-110.5h-.5c-1.1 14.3-2.4 17.4-25.6 110.5-1.3 5.3-6.1 9.1-11.6 9.1H117c-5.6 0-10.5-3.9-11.7-9.4l-37.8-168c-1.7-7.5 4-14.6 11.7-14.6h24.5c5.7 0 10.7 4 11.8 9.7 15.6 78 20.1 109.5 21 122.2 1.6-10.2 7.3-32.7 29.4-122.7 1.3-5.4 6.1-9.1 11.7-9.1h29.1c5.6 0 10.4 3.8 11.7 9.2 24 100.4 28.8 124 29.6 129.4-.2-11.2-2.6-17.8 21.6-129.2 1-5.6 5.9-9.5 11.5-9.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFilm = { prefix: 'fas', iconName: 'film', icon: [512, 512, [], "f008", "M488 64h-8v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V64H96v20c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12V64h-8C10.7 64 0 74.7 0 88v336c0 13.3 10.7 24 24 24h8v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h320v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h8c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM96 372c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm272 208c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm0-168c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm112 152c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z"] }; +var faFilter = { prefix: 'fas', iconName: 'filter', icon: [512, 512, [], "f0b0", "M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z"] }; +var faFire = { prefix: 'fas', iconName: 'fire', icon: [384, 512, [], "f06d", "M216 23.858c0-23.802-30.653-32.765-44.149-13.038C48 191.851 224 200 224 288c0 35.629-29.114 64.458-64.85 63.994C123.98 351.538 96 322.22 96 287.046v-85.51c0-21.703-26.471-32.225-41.432-16.504C27.801 213.158 0 261.332 0 320c0 105.869 86.131 192 192 192s192-86.131 192-192c0-170.29-168-193.003-168-296.142z"] }; +var faFireExtinguisher = { prefix: 'fas', iconName: 'fire-extinguisher', icon: [448, 512, [], "f134", "M434.027 26.329l-168 28C254.693 56.218 256 67.8 256 72h-58.332C208.353 36.108 181.446 0 144 0c-39.435 0-66.368 39.676-52.228 76.203-52.039 13.051-75.381 54.213-90.049 90.884-4.923 12.307 1.063 26.274 13.37 31.197 12.317 4.926 26.279-1.075 31.196-13.37C75.058 112.99 106.964 120 168 120v27.076c-41.543 10.862-72 49.235-72 94.129V488c0 13.255 10.745 24 24 24h144c13.255 0 24-10.745 24-24V240c0-44.731-30.596-82.312-72-92.97V120h40c0 2.974-1.703 15.716 10.027 17.671l168 28C441.342 166.89 448 161.25 448 153.834V38.166c0-7.416-6.658-13.056-13.973-11.837zM144 72c-8.822 0-16-7.178-16-16s7.178-16 16-16 16 7.178 16 16-7.178 16-16 16z"] }; +var faFirstAid = { prefix: 'fas', iconName: 'first-aid', icon: [576, 512, [], "f479", "M0 80v352c0 26.5 21.5 48 48 48h48V32H48C21.5 32 0 53.5 0 80zm128 400h320V32H128v448zm64-248c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48zM528 32h-48v448h48c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"] }; +var faFlag = { prefix: 'fas', iconName: 'flag', icon: [512, 512, [], "f024", "M349.565 98.783C295.978 98.783 251.721 64 184.348 64c-24.955 0-47.309 4.384-68.045 12.013a55.947 55.947 0 0 0 3.586-23.562C118.117 24.015 94.806 1.206 66.338.048 34.345-1.254 8 24.296 8 56c0 19.026 9.497 35.825 24 45.945V488c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-94.4c28.311-12.064 63.582-22.122 114.435-22.122 53.588 0 97.844 34.783 165.217 34.783 48.169 0 86.667-16.294 122.505-40.858C506.84 359.452 512 349.571 512 339.045v-243.1c0-23.393-24.269-38.87-45.485-29.016-34.338 15.948-76.454 31.854-116.95 31.854z"] }; +var faFlagCheckered = { prefix: 'fas', iconName: 'flag-checkered', icon: [512, 512, [], "f11e", "M466.515 66.928C487.731 57.074 512 72.551 512 95.944v243.1c0 10.526-5.161 20.407-13.843 26.358-35.837 24.564-74.335 40.858-122.505 40.858-67.373 0-111.63-34.783-165.217-34.783-50.853 0-86.124 10.058-114.435 22.122V488c0 13.255-10.745 24-24 24H56c-13.255 0-24-10.745-24-24V101.945C17.497 91.825 8 75.026 8 56 8 24.296 34.345-1.254 66.338.048c28.468 1.158 51.779 23.968 53.551 52.404.52 8.342-.81 16.31-3.586 23.562C137.039 68.384 159.393 64 184.348 64c67.373 0 111.63 34.783 165.217 34.783 40.496 0 82.612-15.906 116.95-31.855zM96 134.63v70.49c29-10.67 51.18-17.83 73.6-20.91v-71.57c-23.5 2.17-40.44 9.79-73.6 21.99zm220.8 9.19c-26.417-4.672-49.886-13.979-73.6-21.34v67.42c24.175 6.706 47.566 16.444 73.6 22.31v-68.39zm-147.2 40.39v70.04c32.796-2.978 53.91-.635 73.6 3.8V189.9c-25.247-7.035-46.581-9.423-73.6-5.69zm73.6 142.23c26.338 4.652 49.732 13.927 73.6 21.34v-67.41c-24.277-6.746-47.54-16.45-73.6-22.32v68.39zM96 342.1c23.62-8.39 47.79-13.84 73.6-16.56v-71.29c-26.11 2.35-47.36 8.04-73.6 17.36v70.49zm368-221.6c-21.3 8.85-46.59 17.64-73.6 22.47v71.91c27.31-4.36 50.03-14.1 73.6-23.89V120.5zm0 209.96v-70.49c-22.19 14.2-48.78 22.61-73.6 26.02v71.58c25.07-2.38 48.49-11.04 73.6-27.11zM316.8 212.21v68.16c25.664 7.134 46.616 9.342 73.6 5.62v-71.11c-25.999 4.187-49.943 2.676-73.6-2.67z"] }; +var faFlask = { prefix: 'fas', iconName: 'flask', icon: [448, 512, [], "f0c3", "M437.2 403.5L320 215V64h8c13.3 0 24-10.7 24-24V24c0-13.3-10.7-24-24-24H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h8v151L10.8 403.5C-18.5 450.6 15.3 512 70.9 512h306.2c55.7 0 89.4-61.5 60.1-108.5zM137.9 320l48.2-77.6c3.7-5.2 5.8-11.6 5.8-18.4V64h64v160c0 6.9 2.2 13.2 5.8 18.4l48.2 77.6h-172z"] }; +var faFolder = { prefix: 'fas', iconName: 'folder', icon: [512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z"] }; +var faFolderOpen = { prefix: 'fas', iconName: 'folder-open', icon: [576, 512, [], "f07c", "M572.694 292.093L500.27 416.248A63.997 63.997 0 0 1 444.989 448H45.025c-18.523 0-30.064-20.093-20.731-36.093l72.424-124.155A64 64 0 0 1 152 256h399.964c18.523 0 30.064 20.093 20.73 36.093zM152 224h328v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v278.046l69.077-118.418C86.214 242.25 117.989 224 152 224z"] }; +var faFont = { prefix: 'fas', iconName: 'font', icon: [448, 512, [], "f031", "M152 416h-24.013l26.586-80.782H292.8L319.386 416H296c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-26.739L275.495 42.746A16 16 0 0 0 260.382 32h-72.766a16 16 0 0 0-15.113 10.746L42.739 416H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm64.353-271.778c4.348-15.216 6.61-28.156 7.586-34.644.839 6.521 2.939 19.476 7.727 34.706l41.335 124.006h-98.619l41.971-124.068z"] }; +var faFontAwesomeLogoFull = { prefix: 'fas', iconName: 'font-awesome-logo-full', icon: [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"] }; +var faFootballBall = { prefix: 'fas', iconName: 'football-ball', icon: [496, 512, [], "f44e", "M481.5 60.3c-4.8-18.2-19.1-32.5-37.3-37.4C420.3 16.5 383 8.9 339.4 8L496 164.8c-.8-43.5-8.2-80.6-14.5-104.5zm-467 391.4c4.8 18.2 19.1 32.5 37.3 37.4 23.9 6.4 61.2 14 104.8 14.9L0 347.2c.8 43.5 8.2 80.6 14.5 104.5zM4.2 283.4L220.4 500c132.5-19.4 248.8-118.7 271.5-271.4L275.6 12C143.1 31.4 26.8 130.7 4.2 283.4zm317.3-123.6c3.1-3.1 8.2-3.1 11.3 0l11.3 11.3c3.1 3.1 3.1 8.2 0 11.3l-28.3 28.3 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-22.6 22.7 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L248 278.6l-22.6 22.6 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-28.3 28.3c-3.1 3.1-8.2 3.1-11.3 0l-11.3-11.3c-3.1-3.1-3.1-8.2 0-11.3l28.3-28.3-28.3-28.2c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 28.3-28.5z"] }; +var faForward = { prefix: 'fas', iconName: 'forward', icon: [512, 512, [], "f04e", "M500.5 231.4l-192-160C287.9 54.3 256 68.6 256 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2zm-256 0l-192-160C31.9 54.3 0 68.6 0 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2z"] }; +var faFrog = { prefix: 'fas', iconName: 'frog', icon: [576, 512, [], "f52e", "M446.53 97.43C439.67 60.23 407.19 32 368 32c-39.23 0-71.72 28.29-78.54 65.54C126.75 112.96-.5 250.12 0 416.98.11 451.9 29.08 480 64 480h304c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-79.49l35.8-48.33c24.14-36.23 10.35-88.28-33.71-106.6-23.89-9.93-51.55-4.65-72.24 10.88l-32.76 24.59c-7.06 5.31-17.09 3.91-22.41-3.19-5.3-7.08-3.88-17.11 3.19-22.41l34.78-26.09c36.84-27.66 88.28-27.62 125.13 0 10.87 8.15 45.87 39.06 40.8 93.21L469.62 480H560c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-53.63l-98.52-104.68 154.44-86.65A58.16 58.16 0 0 0 576 189.94c0-21.4-11.72-40.95-30.48-51.23-40.56-22.22-98.99-41.28-98.99-41.28zM368 136c-13.26 0-24-10.75-24-24 0-13.26 10.74-24 24-24 13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24z"] }; +var faFrown = { prefix: 'fas', iconName: 'frown', icon: [496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm192.7 220.3c-3 2.5-6.6 3.7-10.2 3.7-4.6 0-9.1-2-12.3-5.8-22.4-26.8-55.3-42.2-90.2-42.2s-67.8 15.4-90.2 42.2c-5.6 6.8-15.7 7.7-22.5 2-6.8-5.7-7.7-15.7-2-22.5C161.7 339.6 203.6 320 248 320s86.3 19.6 114.7 53.8c5.7 6.7 4.8 16.8-2 22.5z"] }; +var faFutbol = { prefix: 'fas', iconName: 'futbol', icon: [512, 512, [], "f1e3", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-48 0l-.003-.282-26.064 22.741-62.679-58.5 16.454-84.355 34.303 3.072c-24.889-34.216-60.004-60.089-100.709-73.141l13.651 31.939L256 139l-74.953-41.525 13.651-31.939c-40.631 13.028-75.78 38.87-100.709 73.141l34.565-3.073 16.192 84.355-62.678 58.5-26.064-22.741-.003.282c0 43.015 13.497 83.952 38.472 117.991l7.704-33.897 85.138 10.447 36.301 77.826-29.902 17.786c40.202 13.122 84.29 13.148 124.572 0l-29.902-17.786 36.301-77.826 85.138-10.447 7.704 33.897C442.503 339.952 456 299.015 456 256zm-248.102 69.571l-29.894-91.312L256 177.732l77.996 56.527-29.622 91.312h-96.476z"] }; +var faGamepad = { prefix: 'fas', iconName: 'gamepad', icon: [640, 512, [], "f11b", "M480 96H160C71.6 96 0 167.6 0 256s71.6 160 160 160c44.8 0 85.2-18.4 114.2-48h91.5c29 29.6 69.5 48 114.2 48 88.4 0 160-71.6 160-160S568.4 96 480 96zM256 276c0 6.6-5.4 12-12 12h-52v52c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-52H76c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h52v-52c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h52c6.6 0 12 5.4 12 12v40zm184 68c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-80c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; +var faGasPump = { prefix: 'fas', iconName: 'gas-pump', icon: [512, 512, [], "f52f", "M336 448H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm157.2-340.7l-81-81c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-6.2 6.2-6.2 16.4 0 22.6L416 97.9V160c0 28.1 20.9 51.3 48 55.2V376c0 13.2-10.8 24-24 24s-24-10.8-24-24v-32c0-48.6-39.4-88-88-88h-8V64c0-35.3-28.7-64-64-64H96C60.7 0 32 28.7 32 64v352h288V304h8c22.1 0 40 17.9 40 40v27.8c0 37.7 27 72 64.5 75.9 43 4.3 79.5-29.5 79.5-71.7V152.6c0-17-6.8-33.3-18.8-45.3zM256 192H96V64h160v128z"] }; +var faGavel = { prefix: 'fas', iconName: 'gavel', icon: [512, 512, [], "f0e3", "M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z"] }; +var faGem = { prefix: 'fas', iconName: 'gem', icon: [576, 512, [], "f3a5", "M485.5 0L576 160H474.9L405.7 0h79.8zm-128 0l69.2 160H149.3L218.5 0h139zm-267 0h79.8l-69.2 160H0L90.5 0zM0 192h100.7l123 251.7c1.5 3.1-2.7 5.9-5 3.3L0 192zm148.2 0h279.6l-137 318.2c-1 2.4-4.5 2.4-5.5 0L148.2 192zm204.1 251.7l123-251.7H576L357.3 446.9c-2.3 2.7-6.5-.1-5-3.2z"] }; +var faGenderless = { prefix: 'fas', iconName: 'genderless', icon: [288, 512, [], "f22d", "M144 176c44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80 35.9-80 80-80m0-64C64.5 112 0 176.5 0 256s64.5 144 144 144 144-64.5 144-144-64.5-144-144-144z"] }; +var faGift = { prefix: 'fas', iconName: 'gift', icon: [512, 512, [], "f06b", "M32 448c0 17.7 14.3 32 32 32h160V320H32v128zm448-288h-42.1c6.2-12.1 10.1-25.5 10.1-40 0-48.5-39.5-88-88-88-41.6 0-68.5 21.3-103 68.3-34.5-47-61.4-68.3-103-68.3-48.5 0-88 39.5-88 88 0 14.5 3.8 27.9 10.1 40H32c-17.7 0-32 14.3-32 32v80c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-80c0-17.7-14.3-32-32-32zm-326.1 0c-22.1 0-40-17.9-40-40s17.9-40 40-40c19.9 0 34.6 3.3 86.1 80h-86.1zm206.1 0h-86.1c51.4-76.5 65.7-80 86.1-80 22.1 0 40 17.9 40 40s-17.9 40-40 40zm-72 320h160c17.7 0 32-14.3 32-32V320H288v160z"] }; +var faGlassMartini = { prefix: 'fas', iconName: 'glass-martini', icon: [512, 512, [], "f000", "M507.3 27.3c10-10 2.9-27.3-11.3-27.3H16C1.8 0-5.4 17.2 4.7 27.3L216 238.6V472h-92c-15.5 0-28 12.5-28 28 0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12 0-15.5-12.5-28-28-28h-92V238.6L507.3 27.3z"] }; +var faGlasses = { prefix: 'fas', iconName: 'glasses', icon: [576, 512, [], "f530", "M574.1 280.37L528.75 98.66c-5.91-23.7-21.59-44.05-43-55.81-21.44-11.73-46.97-14.11-70.19-6.33l-15.25 5.08c-8.39 2.79-12.92 11.86-10.12 20.24l5.06 15.18c2.79 8.38 11.85 12.91 20.23 10.12l13.18-4.39c10.87-3.62 23-3.57 33.16 1.73 10.29 5.37 17.57 14.56 20.37 25.82l38.46 153.82c-22.19-6.81-49.79-12.46-81.2-12.46-34.77 0-73.98 7.02-114.85 26.74h-73.18c-40.87-19.74-80.08-26.75-114.86-26.75-31.42 0-59.02 5.65-81.21 12.46l38.46-153.83c2.79-11.25 10.09-20.45 20.38-25.81 10.16-5.3 22.28-5.35 33.15-1.73l13.17 4.39c8.38 2.79 17.44-1.74 20.23-10.12l5.06-15.18c2.8-8.38-1.73-17.45-10.12-20.24l-15.25-5.08c-23.22-7.78-48.75-5.41-70.19 6.33-21.41 11.77-37.09 32.11-43 55.8L1.9 280.37A64.218 64.218 0 0 0 0 295.86v70.25C0 429.01 51.58 480 115.2 480h37.12c60.28 0 110.37-45.94 114.88-105.37l2.93-38.63h35.75l2.93 38.63C313.31 434.06 363.4 480 423.68 480h37.12c63.62 0 115.2-50.99 115.2-113.88v-70.25c0-5.23-.64-10.43-1.9-15.5zm-370.72 89.42c-1.97 25.91-24.4 46.21-51.06 46.21H115.2C86.97 416 64 393.62 64 366.11v-37.54c18.12-6.49 43.42-12.92 72.58-12.92 23.86 0 47.26 4.33 69.93 12.92l-3.13 41.22zM512 366.12c0 27.51-22.97 49.88-51.2 49.88h-37.12c-26.67 0-49.1-20.3-51.06-46.21l-3.13-41.22c22.67-8.59 46.08-12.92 69.95-12.92 29.12 0 54.43 6.44 72.55 12.93v37.54z"] }; +var faGlobe = { prefix: 'fas', iconName: 'globe', icon: [496, 512, [], "f0ac", "M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z"] }; +var faGolfBall = { prefix: 'fas', iconName: 'golf-ball', icon: [416, 512, [], "f450", "M96 416h224c0 17.7-14.3 32-32 32h-16c-17.7 0-32 14.3-32 32v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-20c0-17.7-14.3-32-32-32h-16c-17.7 0-32-14.3-32-32zm320-208c0 74.2-39 139.2-97.5 176h-221C39 347.2 0 282.2 0 208 0 93.1 93.1 0 208 0s208 93.1 208 208zm-180.1 43.9c18.3 0 33.1-14.8 33.1-33.1 0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1zm49.1 46.9c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1zm64-64c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1z"] }; +var faGraduationCap = { prefix: 'fas', iconName: 'graduation-cap', icon: [640, 512, [], "f19d", "M622.884 199.005l-275.817 85.1a96 96 0 0 1-54.134 0L92.398 222.232c-8.564 11.438-11.018 23.05-11.918 38.335C89.778 266.165 96 276.355 96 288c0 11.952-6.557 22.366-16.265 27.861l16.197 123.096c.63 4.786-3.1 9.043-7.932 9.043H40c-4.828 0-8.562-4.253-7.932-9.044L48.265 315.86C38.557 310.366 32 299.952 32 288c0-12.034 6.646-22.511 16.465-27.976.947-17.951 3.974-33.231 12.152-47.597l-43.502-13.422c-22.876-6.801-22.766-39.241 0-46.01l275.817-85.1a96 96 0 0 1 54.134 0l275.817 85.1c22.877 6.801 22.767 39.241.001 46.01zM356.503 314.682l-.207.064-.207.061a127.998 127.998 0 0 1-72.177 0l-.207-.061-.207-.064-150.914-46.57L120 352c0 35.346 89.543 64 200 64s200-28.654 200-64l-12.583-83.888-150.914 46.57z"] }; +var faGreaterThan = { prefix: 'fas', iconName: 'greater-than', icon: [384, 512, [], "f531", "M365.52 209.85L59.22 67.01c-16.06-7.49-35.15-.54-42.64 15.52L3.01 111.61c-7.49 16.06-.54 35.15 15.52 42.64L236.96 256.1 18.49 357.99C2.47 365.46-4.46 384.5 3.01 400.52l13.52 29C24 445.54 43.04 452.47 59.06 445l306.47-142.91a32.003 32.003 0 0 0 18.48-29v-34.23c-.01-12.45-7.21-23.76-18.49-29.01z"] }; +var faGreaterThanEqual = { prefix: 'fas', iconName: 'greater-than-equal', icon: [448, 512, [], "f532", "M55.22 107.69l175.56 68.09-175.44 68.05c-18.39 6.03-27.88 24.39-21.2 41l12.09 30.08c6.68 16.61 26.99 25.19 45.38 19.15L393.02 214.2c13.77-4.52 22.98-16.61 22.98-30.17v-15.96c0-13.56-9.21-25.65-22.98-30.17L91.3 17.92c-18.29-6-38.51 2.53-45.15 19.06L34.12 66.9c-6.64 16.53 2.81 34.79 21.1 40.79zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"] }; +var faHSquare = { prefix: 'fas', iconName: 'h-square', icon: [448, 512, [], "f0fd", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-112 48h-32c-8.837 0-16 7.163-16 16v80H160v-80c0-8.837-7.163-16-16-16h-32c-8.837 0-16 7.163-16 16v224c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16v-80h128v80c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144c0-8.837-7.163-16-16-16z"] }; +var faHandHolding = { prefix: 'fas', iconName: 'hand-holding', icon: [576, 512, [], "f4bd", "M565.3 328.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z"] }; +var faHandHoldingHeart = { prefix: 'fas', iconName: 'hand-holding-heart', icon: [576, 512, [], "f4be", "M275.3 250.5c7 7.4 18.4 7.4 25.5 0l108.9-114.2c31.6-33.2 29.8-88.2-5.6-118.8-30.8-26.7-76.7-21.9-104.9 7.7L288 36.9l-11.1-11.6C248.7-4.4 202.8-9.2 172 17.5c-35.3 30.6-37.2 85.6-5.6 118.8l108.9 114.2zm290 77.6c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z"] }; +var faHandHoldingUsd = { prefix: 'fas', iconName: 'hand-holding-usd', icon: [544, 512, [], "f4c0", "M257.6 144.3l50 14.3c3.6 1 6.1 4.4 6.1 8.1 0 4.6-3.8 8.4-8.4 8.4h-32.8c-3.6 0-7.1-.8-10.3-2.2-4.8-2.2-10.4-1.7-14.1 2l-17.5 17.5c-5.3 5.3-4.7 14.3 1.5 18.4 9.5 6.3 20.3 10.1 31.8 11.5V240c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16v-17.6c30.3-3.6 53.3-31 49.3-63-2.9-23-20.7-41.3-42.9-47.7l-50-14.3c-3.6-1-6.1-4.4-6.1-8.1 0-4.6 3.8-8.4 8.4-8.4h32.8c3.6 0 7.1.8 10.3 2.2 4.8 2.2 10.4 1.7 14.1-2l17.5-17.5c5.3-5.3 4.7-14.3-1.5-18.4-9.5-6.3-20.3-10.1-31.8-11.5V16c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16v17.6c-30.3 3.6-53.3 31-49.3 63 2.9 23 20.7 41.3 42.9 47.7zm276.3 183.8c-11.2-10.7-28.5-10-40.3 0L406.4 402c-10.7 9.1-24 14-37.8 14H256.9c-8.3 0-15.1-7.2-15.1-16s6.8-16 15.1-16h73.9c15.1 0 29-10.9 31.4-26.6 3.1-20-11.5-37.4-29.8-37.4H181.3c-25.5 0-50.2 9.3-69.9 26.3L67.5 384H15.1C6.8 384 0 391.2 0 400v96c0 8.8 6.8 16 15.1 16H352c13.7 0 27-4.9 37.8-14l142.8-121c14.4-12.1 15.5-35.3 1.3-48.9z"] }; +var faHandLizard = { prefix: 'fas', iconName: 'hand-lizard', icon: [576, 512, [], "f258", "M384 480h192V363.778a95.998 95.998 0 0 0-14.833-51.263L398.127 54.368A48 48 0 0 0 357.544 32H24C10.745 32 0 42.745 0 56v16c0 30.928 25.072 56 56 56h229.981c12.844 0 21.556 13.067 16.615 24.923l-21.41 51.385A32 32 0 0 1 251.648 224H128c-35.346 0-64 28.654-64 64v8c0 13.255 10.745 24 24 24h147.406a47.995 47.995 0 0 1 25.692 7.455l111.748 70.811A24.001 24.001 0 0 1 384 418.539V480z"] }; +var faHandPaper = { prefix: 'fas', iconName: 'hand-paper', icon: [448, 512, [], "f256", "M408.781 128.007C386.356 127.578 368 146.36 368 168.79V256h-8V79.79c0-22.43-18.356-41.212-40.781-40.783C297.488 39.423 280 57.169 280 79v177h-8V40.79C272 18.36 253.644-.422 231.219.007 209.488.423 192 18.169 192 40v216h-8V80.79c0-22.43-18.356-41.212-40.781-40.783C121.488 40.423 104 58.169 104 80v235.992l-31.648-43.519c-12.993-17.866-38.009-21.817-55.877-8.823-17.865 12.994-21.815 38.01-8.822 55.877l125.601 172.705A48 48 0 0 0 172.073 512h197.59c22.274 0 41.622-15.324 46.724-37.006l26.508-112.66a192.011 192.011 0 0 0 5.104-43.975V168c.001-21.831-17.487-39.577-39.218-39.993z"] }; +var faHandPeace = { prefix: 'fas', iconName: 'hand-peace', icon: [448, 512, [], "f25b", "M408 216c-22.092 0-40 17.909-40 40h-8v-32c0-22.091-17.908-40-40-40s-40 17.909-40 40v32h-8V48c0-26.51-21.49-48-48-48s-48 21.49-48 48v208h-13.572L92.688 78.449C82.994 53.774 55.134 41.63 30.461 51.324 5.787 61.017-6.356 88.877 3.337 113.551l74.765 190.342-31.09 24.872c-15.381 12.306-19.515 33.978-9.741 51.081l64 112A39.998 39.998 0 0 0 136 512h240c18.562 0 34.686-12.77 38.937-30.838l32-136A39.97 39.97 0 0 0 448 336v-80c0-22.091-17.908-40-40-40z"] }; +var faHandPointDown = { prefix: 'fas', iconName: 'hand-point-down', icon: [384, 512, [], "f0a7", "M91.826 467.2V317.966c-8.248 5.841-16.558 10.57-24.918 14.153C35.098 345.752-.014 322.222 0 288c.008-18.616 10.897-32.203 29.092-40 28.286-12.122 64.329-78.648 77.323-107.534 7.956-17.857 25.479-28.453 43.845-28.464l.001-.002h171.526c11.812 0 21.897 8.596 23.703 20.269 7.25 46.837 38.483 61.76 38.315 123.731-.007 2.724.195 13.254.195 16 0 50.654-22.122 81.574-71.263 72.6-9.297 18.597-39.486 30.738-62.315 16.45-21.177 24.645-53.896 22.639-70.944 6.299V467.2c0 24.15-20.201 44.8-43.826 44.8-23.283 0-43.826-21.35-43.826-44.8zM112 72V24c0-13.255 10.745-24 24-24h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24zm212-24c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z"] }; +var faHandPointLeft = { prefix: 'fas', iconName: 'hand-point-left', icon: [512, 512, [], "f0a5", "M44.8 155.826h149.234c-5.841-8.248-10.57-16.558-14.153-24.918C166.248 99.098 189.778 63.986 224 64c18.616.008 32.203 10.897 40 29.092 12.122 28.286 78.648 64.329 107.534 77.323 17.857 7.956 28.453 25.479 28.464 43.845l.002.001v171.526c0 11.812-8.596 21.897-20.269 23.703-46.837 7.25-61.76 38.483-123.731 38.315-2.724-.007-13.254.195-16 .195-50.654 0-81.574-22.122-72.6-71.263-18.597-9.297-30.738-39.486-16.45-62.315-24.645-21.177-22.639-53.896-6.299-70.944H44.8c-24.15 0-44.8-20.201-44.8-43.826 0-23.283 21.35-43.826 44.8-43.826zM440 176h48c13.255 0 24 10.745 24 24v192c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24zm24 212c11.046 0 20-8.954 20-20s-8.954-20-20-20-20 8.954-20 20 8.954 20 20 20z"] }; +var faHandPointRight = { prefix: 'fas', iconName: 'hand-point-right', icon: [512, 512, [], "f0a4", "M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z"] }; +var faHandPointUp = { prefix: 'fas', iconName: 'hand-point-up', icon: [384, 512, [], "f0a6", "M135.652 0c23.625 0 43.826 20.65 43.826 44.8v99.851c17.048-16.34 49.766-18.346 70.944 6.299 22.829-14.288 53.017-2.147 62.315 16.45C361.878 158.426 384 189.346 384 240c0 2.746-.203 13.276-.195 16 .168 61.971-31.065 76.894-38.315 123.731C343.683 391.404 333.599 400 321.786 400H150.261l-.001-.002c-18.366-.011-35.889-10.607-43.845-28.464C93.421 342.648 57.377 276.122 29.092 264 10.897 256.203.008 242.616 0 224c-.014-34.222 35.098-57.752 66.908-44.119 8.359 3.583 16.67 8.312 24.918 14.153V44.8c0-23.45 20.543-44.8 43.826-44.8zM136 416h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24v-48c0-13.255 10.745-24 24-24zm168 28c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z"] }; +var faHandPointer = { prefix: 'fas', iconName: 'hand-pointer', icon: [448, 512, [], "f25a", "M448 240v96c0 3.084-.356 6.159-1.063 9.162l-32 136C410.686 499.23 394.562 512 376 512H168a40.004 40.004 0 0 1-32.35-16.473l-127.997-176c-12.993-17.866-9.043-42.883 8.822-55.876 17.867-12.994 42.884-9.043 55.877 8.823L104 315.992V40c0-22.091 17.908-40 40-40s40 17.909 40 40v200h8v-40c0-22.091 17.908-40 40-40s40 17.909 40 40v40h8v-24c0-22.091 17.908-40 40-40s40 17.909 40 40v24h8c0-22.091 17.908-40 40-40s40 17.909 40 40zm-256 80h-8v96h8v-96zm88 0h-8v96h8v-96zm88 0h-8v96h8v-96z"] }; +var faHandRock = { prefix: 'fas', iconName: 'hand-rock', icon: [512, 512, [], "f255", "M512 128.79c0-26.322-20.861-48.344-47.18-48.783C437.935 79.558 416 101.217 416 128h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C333.935 47.558 312 69.217 312 96v32h-8V80.79c0-26.322-20.861-48.344-47.18-48.783C229.935 31.558 208 53.217 208 80v48h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C125.935 47.558 104 69.217 104 96v136l-8-7.111V176.79c0-26.322-20.861-48.344-47.18-48.783C21.935 127.558 0 149.217 0 176v66.445a95.998 95.998 0 0 0 32.221 71.751l111.668 99.261A47.999 47.999 0 0 1 160 449.333V456c0 13.255 10.745 24 24 24h240c13.255 0 24-10.745 24-24v-2.921a96.01 96.01 0 0 1 7.523-37.254l48.954-116.265A96.002 96.002 0 0 0 512 262.306V128.79z"] }; +var faHandScissors = { prefix: 'fas', iconName: 'hand-scissors', icon: [512, 512, [], "f257", "M216 440c0-22.092 17.909-40 40-40v-8h-32c-22.091 0-40-17.908-40-40s17.909-40 40-40h32v-8H48c-26.51 0-48-21.49-48-48s21.49-48 48-48h208v-13.572l-177.551-69.74c-24.674-9.694-36.818-37.555-27.125-62.228 9.693-24.674 37.554-36.817 62.228-27.124l190.342 74.765 24.872-31.09c12.306-15.381 33.978-19.515 51.081-9.741l112 64A40.002 40.002 0 0 1 512 168v240c0 18.562-12.77 34.686-30.838 38.937l-136 32A39.982 39.982 0 0 1 336 480h-80c-22.091 0-40-17.908-40-40z"] }; +var faHandSpock = { prefix: 'fas', iconName: 'hand-spock', icon: [512, 512, [], "f259", "M10.872 316.585c15.139-16.086 40.454-16.854 56.543-1.713L128 371.893v-79.405L88.995 120.865c-4.896-21.542 8.598-42.974 30.14-47.87 21.549-4.894 42.975 8.599 47.87 30.141L201.747 256h9.833L164.016 48.966c-4.946-21.531 8.498-42.994 30.028-47.94 21.532-4.95 42.994 8.498 47.94 30.028L293.664 256h15.105l48.425-193.702c5.357-21.432 27.075-34.462 48.507-29.104 21.432 5.358 34.463 27.075 29.104 48.507L391.231 256h11.08l30.768-129.265c5.117-21.491 26.685-34.768 48.177-29.647 21.491 5.117 34.765 26.686 29.647 48.177l-36.292 152.467A96.024 96.024 0 0 0 472 319.967v42.102a96.002 96.002 0 0 1-3.96 27.287l-26.174 88.287C435.825 498.022 417.101 512 395.846 512H179.172a48.002 48.002 0 0 1-32.898-13.046L12.585 373.128c-16.087-15.141-16.853-40.456-1.713-56.543z"] }; +var faHands = { prefix: 'fas', iconName: 'hands', icon: [640, 512, [], "f4c2", "M204.8 230.4c-10.6-14.1-30.7-17-44.8-6.4-14.1 10.6-17 30.7-6.4 44.8l38.1 50.8c4.8 6.4 4.1 15.3-1.5 20.9l-12.8 12.8c-6.7 6.7-17.6 6.2-23.6-1.1L64 244.4V96c0-17.7-14.3-32-32-32S0 78.3 0 96v218.4c0 10.9 3.7 21.5 10.5 30l104.1 134.3c5 6.5 8.4 13.9 10.4 21.7 1.8 6.9 8.1 11.6 15.3 11.6H272c8.8 0 16-7.2 16-16V384c0-27.7-9-54.6-25.6-76.8l-57.6-76.8zM608 64c-17.7 0-32 14.3-32 32v148.4l-89.8 107.8c-6 7.2-17 7.7-23.6 1.1l-12.8-12.8c-5.6-5.6-6.3-14.5-1.5-20.9l38.1-50.8c10.6-14.1 7.7-34.2-6.4-44.8-14.1-10.6-34.2-7.7-44.8 6.4l-57.6 76.8C361 329.4 352 356.3 352 384v112c0 8.8 7.2 16 16 16h131.7c7.1 0 13.5-4.7 15.3-11.6 2-7.8 5.4-15.2 10.4-21.7l104.1-134.3c6.8-8.5 10.5-19.1 10.5-30V96c0-17.7-14.3-32-32-32z"] }; +var faHandsHelping = { prefix: 'fas', iconName: 'hands-helping', icon: [640, 512, [], "f4c4", "M488 192H336v56c0 39.7-32.3 72-72 72s-72-32.3-72-72V126.4l-64.9 39C107.8 176.9 96 197.8 96 220.2v47.3l-80 46.2C.7 322.5-4.6 342.1 4.3 357.4l80 138.6c8.8 15.3 28.4 20.5 43.7 11.7L231.4 448H368c35.3 0 64-28.7 64-64h16c17.7 0 32-14.3 32-32v-64h8c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zm147.7-37.4L555.7 16C546.9.7 527.3-4.5 512 4.3L408.6 64H306.4c-12 0-23.7 3.4-33.9 9.7L239 94.6c-9.4 5.8-15 16.1-15 27.1V248c0 22.1 17.9 40 40 40s40-17.9 40-40v-88h184c30.9 0 56 25.1 56 56v28.5l80-46.2c15.3-8.9 20.5-28.4 11.7-43.7z"] }; +var faHandshake = { prefix: 'fas', iconName: 'handshake', icon: [640, 512, [], "f2b5", "M434.7 64h-85.9c-8 0-15.7 3-21.6 8.4l-98.3 90c-.1.1-.2.3-.3.4-16.6 15.6-16.3 40.5-2.1 56 12.7 13.9 39.4 17.6 56.1 2.7.1-.1.3-.1.4-.2l79.9-73.2c6.5-5.9 16.7-5.5 22.6 1 6 6.5 5.5 16.6-1 22.6l-26.1 23.9L504 313.8c2.9 2.4 5.5 5 7.9 7.7V128l-54.6-54.6c-5.9-6-14.1-9.4-22.6-9.4zM544 128.2v223.9c0 17.7 14.3 32 32 32h64V128.2h-96zm48 223.9c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM0 384h64c17.7 0 32-14.3 32-32V128.2H0V384zm48-63.9c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16c0-8.9 7.2-16 16-16zm435.9 18.6L334.6 217.5l-30 27.5c-29.7 27.1-75.2 24.5-101.7-4.4-26.9-29.4-24.8-74.9 4.4-101.7L289.1 64h-83.8c-8.5 0-16.6 3.4-22.6 9.4L128 128v223.9h18.3l90.5 81.9c27.4 22.3 67.7 18.1 90-9.3l.2-.2 17.9 15.5c15.9 13 39.4 10.5 52.3-5.4l31.4-38.6 5.4 4.4c13.7 11.1 33.9 9.1 45-4.7l9.5-11.7c11.2-13.8 9.1-33.9-4.6-45.1z"] }; +var faHashtag = { prefix: 'fas', iconName: 'hashtag', icon: [448, 512, [], "f292", "M440.667 182.109l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l14.623-81.891C377.123 38.754 371.468 32 363.997 32h-40.632a12 12 0 0 0-11.813 9.891L296.175 128H197.54l14.623-81.891C213.477 38.754 207.822 32 200.35 32h-40.632a12 12 0 0 0-11.813 9.891L132.528 128H53.432a12 12 0 0 0-11.813 9.891l-7.143 40C33.163 185.246 38.818 192 46.289 192h74.81L98.242 320H19.146a12 12 0 0 0-11.813 9.891l-7.143 40C-1.123 377.246 4.532 384 12.003 384h74.81L72.19 465.891C70.877 473.246 76.532 480 84.003 480h40.632a12 12 0 0 0 11.813-9.891L151.826 384h98.634l-14.623 81.891C234.523 473.246 240.178 480 247.65 480h40.632a12 12 0 0 0 11.813-9.891L315.472 384h79.096a12 12 0 0 0 11.813-9.891l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l22.857-128h79.096a12 12 0 0 0 11.813-9.891zM261.889 320h-98.634l22.857-128h98.634l-22.857 128z"] }; +var faHdd = { prefix: 'fas', iconName: 'hdd', icon: [576, 512, [], "f0a0", "M576 304v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48zm-48-80a79.557 79.557 0 0 1 30.777 6.165L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L17.223 230.165A79.557 79.557 0 0 1 48 224h480zm-48 96c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm-96 0c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; +var faHeading = { prefix: 'fas', iconName: 'heading', icon: [512, 512, [], "f1dc", "M496 80V48c0-8.837-7.163-16-16-16H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.621v128H154.379V96H192c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.275v320H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.621V288H357.62v128H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.275V96H480c8.837 0 16-7.163 16-16z"] }; +var faHeadphones = { prefix: 'fas', iconName: 'headphones', icon: [512, 512, [], "f025", "M256 32C114.52 32 0 146.496 0 288v48a32 32 0 0 0 17.689 28.622l14.383 7.191C34.083 431.903 83.421 480 144 480h24c13.255 0 24-10.745 24-24V280c0-13.255-10.745-24-24-24h-24c-31.342 0-59.671 12.879-80 33.627V288c0-105.869 86.131-192 192-192s192 86.131 192 192v1.627C427.671 268.879 399.342 256 368 256h-24c-13.255 0-24 10.745-24 24v176c0 13.255 10.745 24 24 24h24c60.579 0 109.917-48.098 111.928-108.187l14.382-7.191A32 32 0 0 0 512 336v-48c0-141.479-114.496-256-256-256z"] }; +var faHeart = { prefix: 'fas', iconName: 'heart', icon: [512, 512, [], "f004", "M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z"] }; +var faHeartbeat = { prefix: 'fas', iconName: 'heartbeat', icon: [512, 512, [], "f21e", "M320.2 243.8l-49.7 99.4c-6 12.1-23.4 11.7-28.9-.6l-56.9-126.3-30 71.7H60.6l182.5 186.5c7.1 7.3 18.6 7.3 25.7 0L451.4 288H342.3l-22.1-44.2zM473.7 73.9l-2.4-2.5c-51.5-52.6-135.8-52.6-187.4 0L256 100l-27.9-28.5c-51.5-52.7-135.9-52.7-187.4 0l-2.4 2.4C-10.4 123.7-12.5 203 31 256h102.4l35.9-86.2c5.4-12.9 23.6-13.2 29.4-.4l58.2 129.3 49-97.9c5.9-11.8 22.7-11.8 28.6 0l27.6 55.2H481c43.5-53 41.4-132.3-7.3-182.1z"] }; +var faHelicopter = { prefix: 'fas', iconName: 'helicopter', icon: [640, 512, [], "f533", "M304 384h272c17.67 0 32-14.33 32-32 0-123.71-100.29-224-224-224V64h176c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H144c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h176v64H112L68.8 70.4C65.78 66.37 61.03 64 56 64H16.01C5.6 64-2.04 73.78.49 83.88L32 192l160 64 86.4 115.2A31.992 31.992 0 0 0 304 384zm112-188.49C478.55 208.3 528.03 257.44 540.79 320H416V195.51zm219.37 263.3l-22.15-22.2c-6.25-6.26-16.24-6.1-22.64.01-7.09 6.77-13.84 11.25-24.64 11.25H240c-8.84 0-16 7.18-16 16.03v32.06c0 8.85 7.16 16.03 16 16.03h325.94c14.88 0 35.3-.47 68.45-29.52 7.02-6.14 7.57-17.05.98-23.66z"] }; +var faHistory = { prefix: 'fas', iconName: 'history', icon: [512, 512, [], "f1da", "M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z"] }; +var faHockeyPuck = { prefix: 'fas', iconName: 'hockey-puck', icon: [512, 512, [], "f453", "M0 160c0-53 114.6-96 256-96s256 43 256 96-114.6 96-256 96S0 213 0 160zm0 82.2V352c0 53 114.6 96 256 96s256-43 256-96V242.2c-113.4 82.3-398.5 82.4-512 0z"] }; +var faHome = { prefix: 'fas', iconName: 'home', icon: [576, 512, [], "f015", "M488 312.7V456c0 13.3-10.7 24-24 24H348c-6.6 0-12-5.4-12-12V356c0-6.6-5.4-12-12-12h-72c-6.6 0-12 5.4-12 12v112c0 6.6-5.4 12-12 12H112c-13.3 0-24-10.7-24-24V312.7c0-3.6 1.6-7 4.4-9.3l188-154.8c4.4-3.6 10.8-3.6 15.3 0l188 154.8c2.7 2.3 4.3 5.7 4.3 9.3zm83.6-60.9L488 182.9V44.4c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12V117l-89.5-73.7c-17.7-14.6-43.3-14.6-61 0L4.4 251.8c-5.1 4.2-5.8 11.8-1.6 16.9l25.5 31c4.2 5.1 11.8 5.8 16.9 1.6l235.2-193.7c4.4-3.6 10.8-3.6 15.3 0l235.2 193.7c5.1 4.2 12.7 3.5 16.9-1.6l25.5-31c4.2-5.2 3.4-12.7-1.7-16.9z"] }; +var faHospital = { prefix: 'fas', iconName: 'hospital', icon: [448, 512, [], "f0f8", "M448 492v20H0v-20c0-6.627 5.373-12 12-12h20V120c0-13.255 10.745-24 24-24h88V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v72h88c13.255 0 24 10.745 24 24v360h20c6.627 0 12 5.373 12 12zM308 192h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-168 64h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm104 128h-40c-6.627 0-12 5.373-12 12v84h64v-84c0-6.627-5.373-12-12-12zm64-96h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-116 12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zM182 96h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6z"] }; +var faHospitalAlt = { prefix: 'fas', iconName: 'hospital-alt', icon: [576, 512, [], "f47d", "M544 96H416V32c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32v368c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16V128c0-17.7-14.3-32-32-32zM160 436c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm160 128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm16-170c0 3.3-2.7 6-6 6h-26v26c0 3.3-2.7 6-6 6h-20c-3.3 0-6-2.7-6-6v-26h-26c-3.3 0-6-2.7-6-6v-20c0-3.3 2.7-6 6-6h26V86c0-3.3 2.7-6 6-6h20c3.3 0 6 2.7 6 6v26h26c3.3 0 6 2.7 6 6v20zm144 298c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z"] }; +var faHospitalSymbol = { prefix: 'fas', iconName: 'hospital-symbol', icon: [512, 512, [], "f47e", "M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm112 376c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-88h-96v88c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V136c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v88h96v-88c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v240z"] }; +var faHourglass = { prefix: 'fas', iconName: 'hourglass', icon: [384, 512, [], "f254", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64z"] }; +var faHourglassEnd = { prefix: 'fas', iconName: 'hourglass-end', icon: [384, 512, [], "f253", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64zM192 208c-57.787 0-104-66.518-104-144h208c0 77.945-46.51 144-104 144z"] }; +var faHourglassHalf = { prefix: 'fas', iconName: 'hourglass-half', icon: [384, 512, [], "f252", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-75.078 384H99.08c17.059-46.797 52.096-80 92.92-80 40.821 0 75.862 33.196 92.922 80zm.019-256H99.078C91.988 108.548 88 86.748 88 64h208c0 22.805-3.987 44.587-11.059 64z"] }; +var faHourglassStart = { prefix: 'fas', iconName: 'hourglass-start', icon: [384, 512, [], "f251", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-64 448H88c0-77.458 46.204-144 104-144 57.786 0 104 66.517 104 144z"] }; +var faICursor = { prefix: 'fas', iconName: 'i-cursor', icon: [256, 512, [], "f246", "M256 52.048V12.065C256 5.496 250.726.148 244.158.066 211.621-.344 166.469.011 128 37.959 90.266.736 46.979-.114 11.913.114 5.318.157 0 5.519 0 12.114v39.645c0 6.687 5.458 12.078 12.145 11.998C38.111 63.447 96 67.243 96 112.182V224H60c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h36v112c0 44.932-56.075 48.031-83.95 47.959C5.404 447.942 0 453.306 0 459.952v39.983c0 6.569 5.274 11.917 11.842 11.999 32.537.409 77.689.054 116.158-37.894 37.734 37.223 81.021 38.073 116.087 37.845 6.595-.043 11.913-5.405 11.913-12V460.24c0-6.687-5.458-12.078-12.145-11.998C217.889 448.553 160 444.939 160 400V288h36c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-36V112.182c0-44.932 56.075-48.213 83.95-48.142 6.646.018 12.05-5.346 12.05-11.992z"] }; +var faIdBadge = { prefix: 'fas', iconName: 'id-badge', icon: [384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM144 32h96c8.8 0 16 7.2 16 16s-7.2 16-16 16h-96c-8.8 0-16-7.2-16-16s7.2-16 16-16zm48 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 416 80 407.4 80 396.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"] }; +var faIdCard = { prefix: 'fas', iconName: 'id-card', icon: [576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v16h576V80c0-26.5-21.5-48-48-48zM0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V128H0v304zm352-232c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zM176 192c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zM67.1 396.2C75.5 370.5 99.6 352 128 352h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.9-5.2 19.8-15.6 19.8H82.7c-10.4 0-18.8-10-15.6-19.8z"] }; +var faIdCardAlt = { prefix: 'fas', iconName: 'id-card-alt', icon: [576, 512, [], "f47f", "M528 64H384v96H192V64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM288 224c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm93.3 224H194.7c-10.4 0-18.8-10-15.6-19.8 8.3-25.6 32.4-44.2 60.9-44.2h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.8-5.2 19.8-15.6 19.8zM352 32c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v96h128V32z"] }; +var faImage = { prefix: 'fas', iconName: 'image', icon: [512, 512, [], "f03e", "M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z"] }; +var faImages = { prefix: 'fas', iconName: 'images', icon: [576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v208c0 44.112 35.888 80 80 80h336zm96-80V80c0-26.51-21.49-48-48-48H144c-26.51 0-48 21.49-48 48v256c0 26.51 21.49 48 48 48h384c26.51 0 48-21.49 48-48zM256 128c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-96 144l55.515-55.515c4.686-4.686 12.284-4.686 16.971 0L272 256l135.515-135.515c4.686-4.686 12.284-4.686 16.971 0L512 208v112H160v-48z"] }; +var faInbox = { prefix: 'fas', iconName: 'inbox', icon: [576, 512, [], "f01c", "M567.938 243.908L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L8.062 243.908A47.994 47.994 0 0 0 0 270.533V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V270.533a47.994 47.994 0 0 0-8.062-26.625zM162.252 128h251.497l85.333 128H376l-32 64H232l-32-64H76.918l85.334-128z"] }; +var faIndent = { prefix: 'fas', iconName: 'indent', icon: [448, 512, [], "f03c", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm176 144h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm-52.687-111.313l-96-95.984C17.266 138.652 0 145.776 0 160.016v191.975c0 14.329 17.325 21.304 27.313 11.313l96-95.992c6.249-6.247 6.249-16.377 0-22.625z"] }; +var faIndustry = { prefix: 'fas', iconName: 'industry', icon: [512, 512, [], "f275", "M475.115 163.781L336 252.309v-68.28c0-18.916-20.931-30.399-36.885-20.248L160 252.309V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h464c13.255 0 24-10.745 24-24V184.029c0-18.917-20.931-30.399-36.885-20.248z"] }; +var faInfinity = { prefix: 'fas', iconName: 'infinity', icon: [640, 512, [], "f534", "M471.1 96C405 96 353.3 137.3 320 174.6 286.7 137.3 235 96 168.9 96 75.8 96 0 167.8 0 256s75.8 160 168.9 160c66.1 0 117.8-41.3 151.1-78.6 33.3 37.3 85 78.6 151.1 78.6 93.1 0 168.9-71.8 168.9-160S564.2 96 471.1 96zM168.9 320c-40.2 0-72.9-28.7-72.9-64s32.7-64 72.9-64c38.2 0 73.4 36.1 94 64-20.4 27.6-55.9 64-94 64zm302.2 0c-38.2 0-73.4-36.1-94-64 20.4-27.6 55.9-64 94-64 40.2 0 72.9 28.7 72.9 64s-32.7 64-72.9 64z"] }; +var faInfo = { prefix: 'fas', iconName: 'info', icon: [192, 512, [], "f129", "M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z"] }; +var faInfoCircle = { prefix: 'fas', iconName: 'info-circle', icon: [512, 512, [], "f05a", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z"] }; +var faItalic = { prefix: 'fas', iconName: 'italic', icon: [320, 512, [], "f033", "M204.758 416h-33.849l62.092-320h40.725a16 16 0 0 0 15.704-12.937l6.242-32C297.599 41.184 290.034 32 279.968 32H120.235a16 16 0 0 0-15.704 12.937l-6.242 32C96.362 86.816 103.927 96 113.993 96h33.846l-62.09 320H46.278a16 16 0 0 0-15.704 12.935l-6.245 32C22.402 470.815 29.967 480 40.034 480h158.479a16 16 0 0 0 15.704-12.935l6.245-32c1.927-9.88-5.638-19.065-15.704-19.065z"] }; +var faKey = { prefix: 'fas', iconName: 'key', icon: [512, 512, [], "f084", "M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z"] }; +var faKeyboard = { prefix: 'fas', iconName: 'keyboard', icon: [576, 512, [], "f11c", "M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"] }; +var faKiwiBird = { prefix: 'fas', iconName: 'kiwi-bird', icon: [576, 512, [], "f535", "M575.81 217.98C572.64 157.41 518.28 112 457.63 112h-9.37c-52.82 0-104.25-16.25-147.74-46.24-41.99-28.96-96.04-41.62-153.21-28.7C129.3 41.12-.08 78.24 0 224c.04 70.95 38.68 132.8 95.99 166.01V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-54.26c15.36 3.96 31.4 6.26 48 6.26 5.44 0 10.68-.73 16-1.18V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-59.43c14.24-5.06 27.88-11.39 40.34-19.51C342.07 355.25 393.86 336 448.46 336c25.48 0 16.01-.31 23.05-.78l74.41 136.44c2.86 5.23 8.3 8.34 14.05 8.34 1.31 0 2.64-.16 3.95-.5 7.09-1.8 12.05-8.19 12.05-15.5 0 0 .14-240.24-.16-246.02zM463.97 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm80 153.25l-39.86-73.08c15.12-5.83 28.73-14.6 39.86-25.98v99.06z"] }; +var faLanguage = { prefix: 'fas', iconName: 'language', icon: [640, 512, [], "f1ab", "M304 416H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h280v320zm-120.676-72.622A12 12 0 0 0 194.839 352h22.863c8.22 0 14.007-8.078 11.362-15.861L171.61 167.085a12 12 0 0 0-11.362-8.139h-32.489a12.001 12.001 0 0 0-11.362 8.139L58.942 336.139C56.297 343.922 62.084 352 70.304 352h22.805a12 12 0 0 0 11.535-8.693l9.118-31.807h60.211l9.351 31.878zm-39.051-140.42s4.32 21.061 7.83 33.21l10.8 37.531h-38.07l11.07-37.531c3.51-12.15 7.83-33.21 7.83-33.21h.54zM616 416H336V96h280c13.255 0 24 10.745 24 24v272c0 13.255-10.745 24-24 24zm-36-228h-64v-16c0-6.627-5.373-12-12-12h-16c-6.627 0-12 5.373-12 12v16h-64c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h114.106c-6.263 14.299-16.518 28.972-30.023 43.206-6.56-6.898-12.397-13.91-17.365-20.933-3.639-5.144-10.585-6.675-15.995-3.446l-7.28 4.346-6.498 3.879c-5.956 3.556-7.693 11.421-3.735 17.117 6.065 8.729 13.098 17.336 20.984 25.726-8.122 6.226-16.841 12.244-26.103 17.964-5.521 3.41-7.381 10.556-4.162 16.19l7.941 13.896c3.362 5.883 10.935 7.826 16.706 4.276 12.732-7.831 24.571-16.175 35.443-24.891 10.917 8.761 22.766 17.102 35.396 24.881 5.774 3.556 13.353 1.618 16.717-4.27l7.944-13.903c3.213-5.623 1.37-12.76-4.135-16.171a312.737 312.737 0 0 1-26.06-18.019c21.024-22.425 35.768-46.289 42.713-69.85H580c6.627 0 12-5.373 12-12v-16c0-6.625-5.373-11.998-12-11.998z"] }; +var faLaptop = { prefix: 'fas', iconName: 'laptop', icon: [640, 512, [], "f109", "M512 64v256H128V64h384m16-64H112C85.5 0 64 21.5 64 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm100 416H389.5c-3 0-5.5 2.1-5.9 5.1C381.2 436.3 368 448 352 448h-64c-16 0-29.2-11.7-31.6-26.9-.5-2.9-3-5.1-5.9-5.1H12c-6.6 0-12 5.4-12 12v36c0 26.5 21.5 48 48 48h544c26.5 0 48-21.5 48-48v-36c0-6.6-5.4-12-12-12z"] }; +var faLeaf = { prefix: 'fas', iconName: 'leaf', icon: [576, 512, [], "f06c", "M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z"] }; +var faLemon = { prefix: 'fas', iconName: 'lemon', icon: [512, 512, [], "f094", "M489.038 22.963C465.944-.13 434.648-5.93 413.947 6.129c-58.906 34.312-181.25-53.077-321.073 86.746S40.441 355.041 6.129 413.945c-12.059 20.702-6.26 51.999 16.833 75.093 23.095 23.095 54.392 28.891 75.095 16.832 58.901-34.31 181.246 53.079 321.068-86.743S471.56 156.96 505.871 98.056c12.059-20.702 6.261-51.999-16.833-75.093zM243.881 95.522c-58.189 14.547-133.808 90.155-148.358 148.358-1.817 7.27-8.342 12.124-15.511 12.124-1.284 0-2.59-.156-3.893-.481-8.572-2.144-13.784-10.83-11.642-19.403C81.901 166.427 166.316 81.93 236.119 64.478c8.575-2.143 17.261 3.069 19.403 11.642s-3.069 17.259-11.641 19.402z"] }; +var faLessThan = { prefix: 'fas', iconName: 'less-than', icon: [384, 512, [], "f536", "M365.46 357.74L147.04 255.89l218.47-101.88c16.02-7.47 22.95-26.51 15.48-42.53l-13.52-29C360 66.46 340.96 59.53 324.94 67L18.48 209.91a32.014 32.014 0 0 0-18.48 29v34.24c0 12.44 7.21 23.75 18.48 29l306.31 142.83c16.06 7.49 35.15.54 42.64-15.52l13.56-29.08c7.49-16.06.54-35.15-15.53-42.64z"] }; +var faLessThanEqual = { prefix: 'fas', iconName: 'less-than-equal', icon: [448, 512, [], "f537", "M54.98 214.2l301.41 119.87c18.39 6.03 38.71-2.54 45.38-19.15l12.09-30.08c6.68-16.61-2.82-34.97-21.21-41l-175.44-68.05 175.56-68.09c18.29-6 27.74-24.27 21.1-40.79l-12.03-29.92c-6.64-16.53-26.86-25.06-45.15-19.06L54.98 137.89C41.21 142.41 32 154.5 32 168.07v15.96c0 13.56 9.21 25.65 22.98 30.17zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"] }; +var faLevelDownAlt = { prefix: 'fas', iconName: 'level-down-alt', icon: [320, 512, [], "f3be", "M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z"] }; +var faLevelUpAlt = { prefix: 'fas', iconName: 'level-up-alt', icon: [320, 512, [], "f3bf", "M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z"] }; +var faLifeRing = { prefix: 'fas', iconName: 'life-ring', icon: [512, 512, [], "f1cd", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm173.696 119.559l-63.399 63.399c-10.987-18.559-26.67-34.252-45.255-45.255l63.399-63.399a218.396 218.396 0 0 1 45.255 45.255zM256 352c-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96-42.981 96-96 96zM127.559 82.304l63.399 63.399c-18.559 10.987-34.252 26.67-45.255 45.255l-63.399-63.399a218.372 218.372 0 0 1 45.255-45.255zM82.304 384.441l63.399-63.399c10.987 18.559 26.67 34.252 45.255 45.255l-63.399 63.399a218.396 218.396 0 0 1-45.255-45.255zm302.137 45.255l-63.399-63.399c18.559-10.987 34.252-26.67 45.255-45.255l63.399 63.399a218.403 218.403 0 0 1-45.255 45.255z"] }; +var faLightbulb = { prefix: 'fas', iconName: 'lightbulb', icon: [384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zm-143.107-44c-9.907 0-18.826-6.078-22.376-15.327C67.697 267.541 16 277.731 16 176 16 78.803 94.805 0 192 0s176 78.803 176 176c0 101.731-51.697 91.541-90.516 192.673-3.55 9.249-12.47 15.327-22.376 15.327H128.893zM112 176c0-44.112 35.888-80 80-80 8.837 0 16-7.164 16-16s-7.163-16-16-16c-61.757 0-112 50.243-112 112 0 8.836 7.164 16 16 16s16-7.164 16-16z"] }; +var faLink = { prefix: 'fas', iconName: 'link', icon: [512, 512, [], "f0c1", "M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z"] }; +var faLiraSign = { prefix: 'fas', iconName: 'lira-sign', icon: [384, 512, [], "f195", "M371.994 256h-48.019C317.64 256 312 260.912 312 267.246 312 368 230.179 416 144 416V256.781l134.603-29.912A12 12 0 0 0 288 215.155v-40.976c0-7.677-7.109-13.38-14.603-11.714L144 191.219V160.78l134.603-29.912A12 12 0 0 0 288 119.154V78.179c0-7.677-7.109-13.38-14.603-11.714L144 95.219V44c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v68.997L9.397 125.131A12 12 0 0 0 0 136.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 178.558v30.439L9.397 221.131A12 12 0 0 0 0 232.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 274.558V468c0 6.627 5.373 12 12 12h79.583c134.091 0 223.255-77.834 228.408-211.592.261-6.782-5.211-12.408-11.997-12.408z"] }; +var faList = { prefix: 'fas', iconName: 'list', icon: [512, 512, [], "f03a", "M128 116V76c0-8.837 7.163-16 16-16h352c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H144c-8.837 0-16-7.163-16-16zm16 176h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 144h64c8.837 0 16-7.163 16-16V64c0-8.837-7.163-16-16-16H16C7.163 48 0 55.163 0 64v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16z"] }; +var faListAlt = { prefix: 'fas', iconName: 'list-alt', icon: [512, 512, [], "f022", "M464 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM128 120c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288-136v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12z"] }; +var faListOl = { prefix: 'fas', iconName: 'list-ol', icon: [512, 512, [], "f0cb", "M3.263 139.527c0-7.477 3.917-11.572 11.573-11.572h15.131V88.078c0-5.163.534-10.503.534-10.503h-.356s-1.779 2.67-2.848 3.738c-4.451 4.273-10.504 4.451-15.666-1.068l-5.518-6.231c-5.342-5.341-4.984-11.216.534-16.379l21.72-19.938C32.815 33.602 36.732 32 42.785 32H54.89c7.656 0 11.749 3.916 11.749 11.572v84.384h15.488c7.655 0 11.572 4.094 11.572 11.572v8.901c0 7.477-3.917 11.572-11.572 11.572H14.836c-7.656 0-11.573-4.095-11.573-11.572v-8.902zM2.211 304.591c0-47.278 50.955-56.383 50.955-69.165 0-7.18-5.954-8.755-9.28-8.755-3.153 0-6.479 1.051-9.455 3.852-5.079 4.903-10.507 7.004-16.111 2.451l-8.579-6.829c-5.779-4.553-7.18-9.805-2.803-15.409C13.592 201.981 26.025 192 47.387 192c19.437 0 44.476 10.506 44.476 39.573 0 38.347-46.753 46.402-48.679 56.909h39.049c7.529 0 11.557 4.027 11.557 11.382v8.755c0 7.354-4.028 11.382-11.557 11.382h-67.94c-7.005 0-12.083-4.028-12.083-11.382v-4.028zM5.654 454.61l5.603-9.28c3.853-6.654 9.105-7.004 15.584-3.152 4.903 2.101 9.63 3.152 14.359 3.152 10.155 0 14.358-3.502 14.358-8.23 0-6.654-5.604-9.106-15.934-9.106h-4.728c-5.954 0-9.28-2.101-12.258-7.88l-1.05-1.926c-2.451-4.728-1.226-9.806 2.801-14.884l5.604-7.004c6.829-8.405 12.257-13.483 12.257-13.483v-.35s-4.203 1.051-12.608 1.051H16.685c-7.53 0-11.383-4.028-11.383-11.382v-8.755c0-7.53 3.853-11.382 11.383-11.382h58.484c7.529 0 11.382 4.027 11.382 11.382v3.327c0 5.778-1.401 9.806-5.079 14.183l-17.509 20.137c19.611 5.078 28.716 20.487 28.716 34.845 0 21.363-14.358 44.126-48.503 44.126-16.636 0-28.192-4.728-35.896-9.455-5.779-4.202-6.304-9.805-2.626-15.934zM144 132h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faListUl = { prefix: 'fas', iconName: 'list-ul', icon: [512, 512, [], "f0ca", "M96 96c0 26.51-21.49 48-48 48S0 122.51 0 96s21.49-48 48-48 48 21.49 48 48zM48 208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm0 160c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm96-236h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faLocationArrow = { prefix: 'fas', iconName: 'location-arrow', icon: [512, 512, [], "f124", "M443.683 4.529L27.818 196.418C-18.702 217.889-3.39 288 47.933 288H224v175.993c0 51.727 70.161 66.526 91.582 20.115L507.38 68.225c18.905-40.961-23.752-82.133-63.697-63.696z"] }; +var faLock = { prefix: 'fas', iconName: 'lock', icon: [448, 512, [], "f023", "M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z"] }; +var faLockOpen = { prefix: 'fas', iconName: 'lock-open', icon: [576, 512, [], "f3c1", "M423.5 0C339.5.3 272 69.5 272 153.5V224H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48h-48v-71.1c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v80c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-80C576 68 507.5-.3 423.5 0z"] }; +var faLongArrowAltDown = { prefix: 'fas', iconName: 'long-arrow-alt-down', icon: [256, 512, [], "f309", "M168 345.941V44c0-6.627-5.373-12-12-12h-56c-6.627 0-12 5.373-12 12v301.941H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.569 9.373 33.941 0l86.059-86.059c15.119-15.119 4.411-40.971-16.971-40.971H168z"] }; +var faLongArrowAltLeft = { prefix: 'fas', iconName: 'long-arrow-alt-left', icon: [448, 512, [], "f30a", "M134.059 296H436c6.627 0 12-5.373 12-12v-56c0-6.627-5.373-12-12-12H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.569 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296z"] }; +var faLongArrowAltRight = { prefix: 'fas', iconName: 'long-arrow-alt-right', icon: [448, 512, [], "f30b", "M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z"] }; +var faLongArrowAltUp = { prefix: 'fas', iconName: 'long-arrow-alt-up', icon: [256, 512, [], "f30c", "M88 166.059V468c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12V166.059h46.059c21.382 0 32.09-25.851 16.971-40.971l-86.059-86.059c-9.373-9.373-24.569-9.373-33.941 0l-86.059 86.059c-15.119 15.119-4.411 40.971 16.971 40.971H88z"] }; +var faLowVision = { prefix: 'fas', iconName: 'low-vision', icon: [576, 512, [], "f2a8", "M569.344 231.631C512.96 135.949 407.81 72 288 72c-28.468 0-56.102 3.619-82.451 10.409L152.778 10.24c-7.601-10.858-22.564-13.5-33.423-5.9l-13.114 9.178c-10.86 7.601-13.502 22.566-5.9 33.426l43.131 58.395C89.449 131.73 40.228 174.683 6.682 231.581c-.01.017-.023.033-.034.05-8.765 14.875-8.964 33.528 0 48.739 38.5 65.332 99.742 115.862 172.859 141.349L55.316 244.302A272.194 272.194 0 0 1 83.61 208.39l119.4 170.58h.01l40.63 58.04a330.055 330.055 0 0 0 78.94 1.17l-189.98-271.4a277.628 277.628 0 0 1 38.777-21.563l251.836 356.544c7.601 10.858 22.564 13.499 33.423 5.9l13.114-9.178c10.86-7.601 13.502-22.567 5.9-33.426l-43.12-58.377-.007-.009c57.161-27.978 104.835-72.04 136.81-126.301a47.938 47.938 0 0 0 .001-48.739zM390.026 345.94l-19.066-27.23c24.682-32.567 27.711-76.353 8.8-111.68v.03c0 23.65-19.17 42.82-42.82 42.82-23.828 0-42.82-19.349-42.82-42.82 0-23.65 19.17-42.82 42.82-42.82h.03c-24.75-13.249-53.522-15.643-79.51-7.68l-19.068-27.237C253.758 123.306 270.488 120 288 120c75.162 0 136 60.826 136 136 0 34.504-12.833 65.975-33.974 89.94z"] }; +var faMagic = { prefix: 'fas', iconName: 'magic', icon: [512, 512, [], "f0d0", "M101.1 505L7 410.9c-9.4-9.4-9.4-24.6 0-33.9L377 7c9.4-9.4 24.6-9.4 33.9 0l94.1 94.1c9.4 9.4 9.4 24.6 0 33.9L135 505c-9.3 9.3-24.5 9.3-33.9 0zM304 159.2l48.8 48.8 89.9-89.9-48.8-48.8-89.9 89.9zM138.9 39.3l-11.7 23.8-26.2 3.8c-4.7.7-6.6 6.5-3.2 9.8l19 18.5-4.5 26.1c-.8 4.7 4.1 8.3 8.3 6.1L144 115l23.4 12.3c4.2 2.2 9.1-1.4 8.3-6.1l-4.5-26.1 19-18.5c3.4-3.3 1.5-9.1-3.2-9.8L160.8 63l-11.7-23.8c-2-4.1-8.1-4.1-10.2.1zm97.7-20.7l-7.8 15.8-17.5 2.6c-3.1.5-4.4 4.3-2.1 6.5l12.6 12.3-3 17.4c-.5 3.1 2.8 5.5 5.6 4L240 69l15.6 8.2c2.8 1.5 6.1-.9 5.6-4l-3-17.4 12.6-12.3c2.3-2.2 1-6.1-2.1-6.5l-17.5-2.5-7.8-15.8c-1.4-3-5.4-3-6.8-.1zm-192 0l-7.8 15.8L19.3 37c-3.1.5-4.4 4.3-2.1 6.5l12.6 12.3-3 17.4c-.5 3.1 2.8 5.5 5.6 4L48 69l15.6 8.2c2.8 1.5 6.1-.9 5.6-4l-3-17.4 12.6-12.3c2.3-2.2 1-6.1-2.1-6.5l-17.5-2.5-7.8-15.8c-1.4-3-5.4-3-6.8-.1zm416 223.5l-7.8 15.8-17.5 2.5c-3.1.5-4.4 4.3-2.1 6.5l12.6 12.3-3 17.4c-.5 3.1 2.8 5.5 5.6 4l15.6-8.2 15.6 8.2c2.8 1.5 6.1-.9 5.6-4l-3-17.4 12.6-12.3c2.3-2.2 1-6.1-2.1-6.5l-17.5-2.5-7.8-15.8c-1.4-2.8-5.4-2.8-6.8 0z"] }; +var faMagnet = { prefix: 'fas', iconName: 'magnet', icon: [512, 512, [], "f076", "M164.1 160H12c-6.6 0-12-5.4-12-12V68c0-19.9 16.1-36 36-36h104c19.9 0 36 16.1 36 36v80c.1 6.6-5.3 12-11.9 12zm348-12V67.9c0-19.9-16.1-36-36-36h-104c-19.9 0-36 16.1-36 36v80c0 6.6 5.4 12 12 12h152c6.6.1 12-5.3 12-11.9zm-164 44c-6.6 0-12 5.4-12 12v52c0 128.1-160 127.9-160 0v-52c0-6.6-5.4-12-12-12h-152c-6.7 0-12 5.4-12 12.1.1 21.4.6 40.3 0 53.3C.1 408 136.3 504 256.9 504 377.5 504 512 408 512 257.3c-.6-12.8-.2-33 0-53.2 0-6.7-5.3-12.1-12-12.1H348.1z"] }; +var faMale = { prefix: 'fas', iconName: 'male', icon: [192, 512, [], "f183", "M96 0c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64S60.654 0 96 0m48 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H48c-26.51 0-48 21.49-48 48v136c0 13.255 10.745 24 24 24h16v136c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V352h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48z"] }; +var faMap = { prefix: 'fas', iconName: 'map', icon: [576, 512, [], "f279", "M576 56.015v335.97a23.998 23.998 0 0 1-13.267 21.466l-128 64C418.948 485.344 400 473.992 400 455.985v-335.97a23.998 23.998 0 0 1 13.267-21.466l128-64C557.052 26.656 576 38.008 576 56.015zm-206.253 42.07l-144-64c-15.751-7-33.747 4.461-33.747 21.932v335.967a24 24 0 0 0 14.253 21.931l144 64c15.751 7 33.747-4.461 33.747-21.931V120.017a24 24 0 0 0-14.253-21.932zm-228.48-63.536l-128 63.985A23.998 23.998 0 0 0 0 120v335.985c0 18.007 18.948 29.359 34.733 21.466l128-63.985A23.998 23.998 0 0 0 176 392V56.015c0-18.007-18.948-29.359-34.733-21.466z"] }; +var faMapMarker = { prefix: 'fas', iconName: 'map-marker', icon: [384, 512, [], "f041", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0z"] }; +var faMapMarkerAlt = { prefix: 'fas', iconName: 'map-marker-alt', icon: [384, 512, [], "f3c5", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"] }; +var faMapPin = { prefix: 'fas', iconName: 'map-pin', icon: [320, 512, [], "f276", "M192 300.813v172.82l-22.015 33.023c-4.75 7.125-15.219 7.125-19.969 0L128 473.633v-172.82a162.221 162.221 0 0 0 64 0zM160 0c79.529 0 144 64.471 144 144s-64.471 144-144 144S16 223.529 16 144 80.471 0 160 0M80 136c0-39.701 32.299-72 72-72a8 8 0 0 0 0-16c-48.523 0-88 39.477-88 88a8 8 0 0 0 16 0z"] }; +var faMapSigns = { prefix: 'fas', iconName: 'map-signs', icon: [512, 512, [], "f277", "M487.515 104.485L439.03 152.97a23.998 23.998 0 0 1-16.97 7.029H56c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h160v-8c0-13.255 10.745-24 24-24h32c13.255 0 24 10.745 24 24v8h126.059a24 24 0 0 1 16.97 7.029l48.485 48.485c4.687 4.687 4.687 12.285.001 16.971zM216 368v120c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V368h-80zm240-144H296v-48h-80v48H89.941a24 24 0 0 0-16.97 7.029l-48.485 48.485c-4.686 4.686-4.686 12.284 0 16.971l48.485 48.485a23.998 23.998 0 0 0 16.97 7.029H456c13.255 0 24-10.745 24-24v-80C480 234.745 469.255 224 456 224z"] }; +var faMars = { prefix: 'fas', iconName: 'mars', icon: [384, 512, [], "f222", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c0-6.6-5.4-12-12-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faMarsDouble = { prefix: 'fas', iconName: 'mars-double', icon: [512, 512, [], "f227", "M340 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C198.5 72.1 172.2 64 144 64 64.5 64 0 128.5 0 208s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.5 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 288c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80zm356-128.1h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7c-18.2-11.4-39-18.9-61.5-21.3-2.1 21.8-8.2 43.3-18.4 63.3 1.1 0 2.2-.1 3.2-.1 44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80c0-1.1 0-2.2.1-3.2-20 10.2-41.5 16.4-63.3 18.4C168.4 455.6 229.6 512 304 512c79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12v-79c0-6.7-5.4-12.1-12-12.1z"] }; +var faMarsStroke = { prefix: 'fas', iconName: 'mars-stroke', icon: [384, 512, [], "f229", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-17.5 17.5-14.1-14.1c-4.7-4.7-12.3-4.7-17 0L224.5 133c-4.7 4.7-4.7 12.3 0 17l14.1 14.1-18 18c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l18-18 14.1 14.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L329.2 164l17.5-17.5 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c-.1-6.6-5.5-12-12.1-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faMarsStrokeH = { prefix: 'fas', iconName: 'mars-stroke-h', icon: [480, 512, [], "f22b", "M476.2 247.5l-55.9-55.9c-7.6-7.6-20.5-2.2-20.5 8.5V224H376v-20c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v20h-27.6c-5.8-25.6-18.7-49.9-38.6-69.8C189.6 98 98.4 98 42.2 154.2c-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 19.9-19.9 32.8-44.2 38.6-69.8H312v20c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-20h23.9v23.9c0 10.7 12.9 16 20.5 8.5l55.9-55.9c4.6-4.7 4.6-12.3-.1-17zm-275.6 65.1c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z"] }; +var faMarsStrokeV = { prefix: 'fas', iconName: 'mars-stroke-v', icon: [288, 512, [], "f22a", "M245.8 234.2c-19.9-19.9-44.2-32.8-69.8-38.6v-25.4h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V81.4h23.9c10.7 0 16-12.9 8.5-20.5L152.5 5.1c-4.7-4.7-12.3-4.7-17 0L79.6 61c-7.6 7.6-2.2 20.5 8.5 20.5H112v24.7H92c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h20v25.4c-25.6 5.8-49.9 18.7-69.8 38.6-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 56.3-56.2 56.3-147.4 0-203.6zm-45.2 158.4c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z"] }; +var faMedkit = { prefix: 'fas', iconName: 'medkit', icon: [512, 512, [], "f0fa", "M96 480h320V128h-32V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v48H96v352zm96-384h128v32H192V96zm320 80v256c0 26.51-21.49 48-48 48h-16V128h16c26.51 0 48 21.49 48 48zM64 480H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v352zm288-208v32c0 8.837-7.163 16-16 16h-48v48c0 8.837-7.163 16-16 16h-32c-8.837 0-16-7.163-16-16v-48h-48c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h48v-48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v48h48c8.837 0 16 7.163 16 16z"] }; +var faMeh = { prefix: 'fas', iconName: 'meh', icon: [496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm176 192H152c-8.8 0-16-7.2-16-16s7.2-16 16-16h192c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-16-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faMemory = { prefix: 'fas', iconName: 'memory', icon: [640, 512, [], "f538", "M640 130.94V96c0-17.67-14.33-32-32-32H32C14.33 64 0 78.33 0 96v34.94c18.6 6.61 32 24.19 32 45.06s-13.4 38.45-32 45.06V320h640v-98.94c-18.6-6.61-32-24.19-32-45.06s13.4-38.45 32-45.06zM224 256h-64V128h64v128zm128 0h-64V128h64v128zm128 0h-64V128h64v128zM0 448h64v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h64v-96H0v96z"] }; +var faMercury = { prefix: 'fas', iconName: 'mercury', icon: [288, 512, [], "f223", "M288 208c0-44.2-19.9-83.7-51.2-110.1 2.5-1.8 4.9-3.8 7.2-5.8 24.7-21.2 39.8-48.8 43.2-78.8.9-7.1-4.7-13.3-11.9-13.3h-40.5C229 0 224.1 4.1 223 9.8c-2.4 12.5-9.6 24.3-20.7 33.8C187 56.8 166.3 64 144 64s-43-7.2-58.4-20.4C74.5 34.1 67.4 22.3 64.9 9.8 63.8 4.1 58.9 0 53.2 0H12.7C5.5 0-.1 6.2.8 13.3 4.2 43.4 19.2 71 44 92.2c2.3 2 4.7 3.9 7.2 5.8C19.9 124.3 0 163.8 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z"] }; +var faMicrochip = { prefix: 'fas', iconName: 'microchip', icon: [512, 512, [], "f2db", "M416 48v416c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h224c26.51 0 48 21.49 48 48zm96 58v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42V88h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zM30 376h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6z"] }; +var faMicrophone = { prefix: 'fas', iconName: 'microphone', icon: [352, 512, [], "f130", "M176 352c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96zm160-160h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16z"] }; +var faMicrophoneAlt = { prefix: 'fas', iconName: 'microphone-alt', icon: [352, 512, [], "f3c9", "M336 192h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16zM176 352c53.02 0 96-42.98 96-96h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96z"] }; +var faMicrophoneAltSlash = { prefix: 'fas', iconName: 'microphone-alt-slash', icon: [640, 512, [], "f539", "M633.82 458.1L476.26 336.33C488.74 312.21 496 284.98 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67h-43.67l-41.4-32H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.78c11.71-1.62 23.1-4.28 33.96-8.08l-50.4-38.96c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z"] }; +var faMicrophoneSlash = { prefix: 'fas', iconName: 'microphone-slash', icon: [640, 512, [], "f131", "M633.82 458.1l-157.8-121.96C488.61 312.13 496 285.01 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67V96c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.77c11.66-1.6 22.85-4.54 33.67-8.31l-50.11-38.73c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z"] }; +var faMinus = { prefix: 'fas', iconName: 'minus', icon: [448, 512, [], "f068", "M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; +var faMinusCircle = { prefix: 'fas', iconName: 'minus-circle', icon: [512, 512, [], "f056", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM124 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H124z"] }; +var faMinusSquare = { prefix: 'fas', iconName: 'minus-square', icon: [448, 512, [], "f146", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H92z"] }; +var faMobile = { prefix: 'fas', iconName: 'mobile', icon: [320, 512, [], "f10b", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faMobileAlt = { prefix: 'fas', iconName: 'mobile-alt', icon: [320, 512, [], "f3cd", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm112-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v312z"] }; +var faMoneyBill = { prefix: 'fas', iconName: 'money-bill', icon: [640, 512, [], "f0d6", "M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 176c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 48h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z"] }; +var faMoneyBillAlt = { prefix: 'fas', iconName: 'money-bill-alt', icon: [640, 512, [], "f3d1", "M352 288h-16v-88c0-4.42-3.58-8-8-8h-13.58c-4.74 0-9.37 1.4-13.31 4.03l-15.33 10.22a7.994 7.994 0 0 0-2.22 11.09l8.88 13.31a7.994 7.994 0 0 0 11.09 2.22l.47-.31V288h-16c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8h64c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 192c-53.02 0-96-50.15-96-112 0-61.86 42.98-112 96-112s96 50.14 96 112c0 61.87-43 112-96 112zm272 32h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z"] }; +var faMoneyBillWave = { prefix: 'fas', iconName: 'money-bill-wave', icon: [640, 512, [], "f53a", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM48 132.22c20.12 5.04 41.12 7.57 62.72 8.93C104.84 170.54 79 192.69 48 192.69v-60.47zm0 285v-47.78c34.37 0 62.18 27.27 63.71 61.4-22.53-1.81-43.59-6.31-63.71-13.62zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 27.78c-17.52-4.39-35.71-6.85-54.32-8.44 5.87-26.08 27.5-45.88 54.32-49.28v57.72zm0-236.11c-30.89-3.91-54.86-29.7-55.81-61.55 19.54 2.17 38.09 6.23 55.81 12.66v48.89z"] }; +var faMoneyBillWaveAlt = { prefix: 'fas', iconName: 'money-bill-wave-alt', icon: [640, 512, [], "f53b", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96z"] }; +var faMoneyCheck = { prefix: 'fas', iconName: 'money-check', icon: [640, 512, [], "f53c", "M0 448c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128H0v320zm448-208c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-32zm0 120c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H456c-4.42 0-8-3.58-8-8v-16zM64 264c0-4.42 3.58-8 8-8h304c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm0 96c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zM624 32H16C7.16 32 0 39.16 0 48v48h640V48c0-8.84-7.16-16-16-16z"] }; +var faMoneyCheckAlt = { prefix: 'fas', iconName: 'money-check-alt', icon: [640, 512, [], "f53d", "M608 32H32C14.33 32 0 46.33 0 64v384c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM176 327.88V344c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V152c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07zM416 312c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm160 0c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h272c4.42 0 8 3.58 8 8v16z"] }; +var faMoon = { prefix: 'fas', iconName: 'moon', icon: [512, 512, [], "f186", "M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z"] }; +var faMotorcycle = { prefix: 'fas', iconName: 'motorcycle', icon: [640, 512, [], "f21c", "M512.949 192.003c-14.862-.108-29.14 2.322-42.434 6.874L437.589 144H520c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24h-45.311a24 24 0 0 0-17.839 7.945l-37.496 41.663-22.774-37.956A24 24 0 0 0 376 64h-80c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h66.411l19.2 32H227.904c-17.727-23.073-44.924-40-99.904-40H72.54c-13.455 0-24.791 11.011-24.536 24.464C48.252 141.505 58.9 152 72 152h56c24.504 0 38.686 10.919 47.787 24.769l-11.291 20.529c-13.006-3.865-26.871-5.736-41.251-5.21C55.857 194.549 1.565 249.605.034 317.021-1.603 389.076 56.317 448 128 448c59.642 0 109.744-40.794 123.953-96h84.236c13.673 0 24.589-11.421 23.976-25.077-2.118-47.12 17.522-93.665 56.185-125.026l12.485 20.808c-27.646 23.654-45.097 58.88-44.831 98.179.47 69.556 57.203 126.452 126.758 127.11 71.629.678 129.839-57.487 129.234-129.099-.588-69.591-57.455-126.386-127.047-126.892zM128 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c4.242 0 8.405.341 12.469.982L98.97 316.434C90.187 332.407 101.762 352 120 352h81.297c-12.37 28.225-40.56 48-73.297 48zm388.351-.116C470.272 402.337 432 365.554 432 320c0-21.363 8.434-40.781 22.125-55.144l49.412 82.352c4.546 7.577 14.375 10.034 21.952 5.488l13.72-8.232c7.577-4.546 10.034-14.375 5.488-21.952l-48.556-80.927A80.005 80.005 0 0 1 512 240c45.554 0 82.338 38.273 79.884 84.352-2.16 40.558-34.974 73.372-75.533 75.532z"] }; +var faMousePointer = { prefix: 'fas', iconName: 'mouse-pointer', icon: [320, 512, [], "f245", "M302.189 329.126H196.105l55.831 135.993c3.889 9.428-.555 19.999-9.444 23.999l-49.165 21.427c-9.165 4-19.443-.571-23.332-9.714l-53.053-129.136-86.664 89.138C18.729 472.71 0 463.554 0 447.977V18.299C0 1.899 19.921-6.096 30.277 5.443l284.412 292.542c11.472 11.179 3.007 31.141-12.5 31.141z"] }; +var faMusic = { prefix: 'fas', iconName: 'music', icon: [512, 512, [], "f001", "M470.4 1.5l-304 96C153.1 101.7 144 114 144 128v264.6c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V220.5l272-85.9v194c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V32c0-21.7-21.1-37-41.6-30.5z"] }; +var faNeuter = { prefix: 'fas', iconName: 'neuter', icon: [288, 512, [], "f22c", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V468c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V316.4c64.1-14.5 112-71.9 112-140.4zm-144 80c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faNewspaper = { prefix: 'fas', iconName: 'newspaper', icon: [576, 512, [], "f1ea", "M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z"] }; +var faNotEqual = { prefix: 'fas', iconName: 'not-equal', icon: [448, 512, [], "f53e", "M416 208c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32h-23.88l51.87-66.81c5.37-7.02 4.04-17.06-2.97-22.43L415.61 3.3c-7.02-5.38-17.06-4.04-22.44 2.97L311.09 112H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h204.56l-74.53 96H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h55.49l-51.87 66.81c-5.37 7.01-4.04 17.05 2.97 22.43L64 508.7c7.02 5.38 17.06 4.04 22.43-2.97L168.52 400H416c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32H243.05l74.53-96H416z"] }; +var faNotesMedical = { prefix: 'fas', iconName: 'notes-medical', icon: [384, 512, [], "f481", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm96 304c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm0-192c0 4.4-3.6 8-8 8H104c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16z"] }; +var faObjectGroup = { prefix: 'fas', iconName: 'object-group', icon: [512, 512, [], "f247", "M480 128V96h20c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v20H64V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v40c0 6.627 5.373 12 12 12h20v320H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-20h384v20c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-20V128zM96 276V140c0-6.627 5.373-12 12-12h168c6.627 0 12 5.373 12 12v136c0 6.627-5.373 12-12 12H108c-6.627 0-12-5.373-12-12zm320 96c0 6.627-5.373 12-12 12H236c-6.627 0-12-5.373-12-12v-52h72c13.255 0 24-10.745 24-24v-72h84c6.627 0 12 5.373 12 12v136z"] }; +var faObjectUngroup = { prefix: 'fas', iconName: 'object-ungroup', icon: [576, 512, [], "f248", "M64 320v26a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6v-52a6 6 0 0 1 6-6h26V96H6a6 6 0 0 1-6-6V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v26h288V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-26v192h26a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-52a6 6 0 0 1-6-6v-26H64zm480-64v-32h26a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-52a6 6 0 0 0-6 6v26H408v72h8c13.255 0 24 10.745 24 24v64c0 13.255-10.745 24-24 24h-64c-13.255 0-24-10.745-24-24v-8H192v72h-26a6 6 0 0 0-6 6v52a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-26h288v26a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-26V256z"] }; +var faOutdent = { prefix: 'fas', iconName: 'outdent', icon: [448, 512, [], "f03b", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm208 144h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm192-128h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM4.687 267.313l96 95.984C110.734 373.348 128 366.224 128 351.984V160.008c0-14.329-17.325-21.304-27.313-11.313l-96 95.992c-6.249 6.248-6.249 16.378 0 22.626z"] }; +var faPaintBrush = { prefix: 'fas', iconName: 'paint-brush', icon: [512, 512, [], "f1fc", "M269.9 364.6c1.4 6.4 2.1 13 2.1 19.7 0 81.2-54.2 127.7-134.8 127.7C41.5 512 0 435.1 0 347.6c10.4 7.1 46.9 36.5 58.7 36.5 7 0 13-4 15.5-10.6 23.6-62.2 66.5-76.5 112.9-77.4 15.6 33.8 46.1 59.6 82.8 68.5zM460.6 0c-14.4 0-27.9 6.4-38.2 15.7C228.2 190 208 194.1 208 245.4c0 48.8 40.5 90.6 90.2 90.6 59 0 93.2-43.4 200.6-244.8 7-13.7 13.2-28.5 13.2-43.9C512 19.7 487.3 0 460.6 0z"] }; +var faPalette = { prefix: 'fas', iconName: 'palette', icon: [512, 512, [], "f53f", "M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faPallet = { prefix: 'fas', iconName: 'pallet', icon: [640, 512, [], "f482", "M144 256h352c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H384v128l-64-32-64 32V0H144c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16zm480 128c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v64H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-64h48zm-336 64H128v-64h160v64zm224 0H352v-64h160v64z"] }; +var faPaperPlane = { prefix: 'fas', iconName: 'paper-plane', icon: [512, 512, [], "f1d8", "M476 3.2L12.5 270.6c-18.1 10.4-15.8 35.6 2.2 43.2L121 358.4l287.3-253.2c5.5-4.9 13.3 2.6 8.6 8.3L176 407v80.5c0 23.6 28.5 32.9 42.5 15.8L282 426l124.6 52.2c14.2 6 30.4-2.9 33-18.2l72-432C515 7.8 493.3-6.8 476 3.2z"] }; +var faPaperclip = { prefix: 'fas', iconName: 'paperclip', icon: [448, 512, [], "f0c6", "M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z"] }; +var faParachuteBox = { prefix: 'fas', iconName: 'parachute-box', icon: [512, 512, [], "f4cd", "M511.9 175c-9.1-75.6-78.4-132.4-158.3-158.7C390 55.7 416 116.9 416 192h28.1L327.5 321.5c-2.5-.6-4.8-1.5-7.5-1.5h-48V192h112C384 76.8 315.1 0 256 0S128 76.8 128 192h112v128h-48c-2.7 0-5 .9-7.5 1.5L67.9 192H96c0-75.1 26-136.3 62.4-175.7C78.5 42.7 9.2 99.5.1 175c-1.1 9.1 6.8 17 16 17h8.7l136.7 151.9c-.7 2.6-1.6 5.2-1.6 8.1v128c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32V352c0-2.9-.9-5.4-1.6-8.1L487.1 192h8.7c9.3 0 17.2-7.8 16.1-17z"] }; +var faParagraph = { prefix: 'fas', iconName: 'paragraph', icon: [448, 512, [], "f1dd", "M408 32H177.531C88.948 32 16.045 103.335 16 191.918 15.956 280.321 87.607 352 176 352v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h32v344c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h40c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24z"] }; +var faParking = { prefix: 'fas', iconName: 'parking', icon: [448, 512, [], "f540", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM240 320h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h96c52.9 0 96 43.1 96 96s-43.1 96-96 96zm0-128h-48v64h48c17.6 0 32-14.4 32-32s-14.4-32-32-32z"] }; +var faPaste = { prefix: 'fas', iconName: 'paste', icon: [448, 512, [], "f0ea", "M128 184c0-30.879 25.122-56 56-56h136V56c0-13.255-10.745-24-24-24h-80.61C204.306 12.89 183.637 0 160 0s-44.306 12.89-55.39 32H24C10.745 32 0 42.745 0 56v336c0 13.255 10.745 24 24 24h104V184zm32-144c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24zm184 248h104v200c0 13.255-10.745 24-24 24H184c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.059V256h-96v-96h6.059a24 24 0 0 1 16.97 7.029l65.941 65.941a24.002 24.002 0 0 1 7.03 16.971z"] }; +var faPause = { prefix: 'fas', iconName: 'pause', icon: [448, 512, [], "f04c", "M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z"] }; +var faPauseCircle = { prefix: 'fas', iconName: 'pause-circle', icon: [512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-16 328c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160zm112 0c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160z"] }; +var faPaw = { prefix: 'fas', iconName: 'paw', icon: [512, 512, [], "f1b0", "M85.231 330.958C36 330.958 0 273.792 0 231.5c0-28.292 16-58.042 49.538-58.042 49.231 0 85.231 57.458 85.231 99.75 0 28.292-15.692 57.75-49.538 57.75zm348 106.167c0 37.042-32 42.875-63.385 42.875-41.231 0-74.462-26.25-113.846-26.25-41.231 0-76.308 25.958-120.923 25.958-29.847 0-56.308-9.625-56.308-42.583C78.769 368 180.616 265.333 256 265.333s177.231 102.959 177.231 171.792zM182.462 203.792c-49.847 0-80-59.5-80-100.333C102.462 70.792 120.308 32 160 32c50.154 0 80 59.5 80 100.333 0 32.667-17.846 71.459-57.538 71.459zM272 132.333C272 91.5 301.846 32 352 32c39.692 0 57.539 38.792 57.539 71.458 0 40.833-30.154 100.333-80.001 100.333C289.846 203.792 272 165 272 132.333zM512 231.5c0 42.292-36 99.458-85.231 99.458-33.847 0-49.538-29.458-49.538-57.75 0-42.291 35.999-99.75 85.231-99.75C496 173.458 512 203.208 512 231.5z"] }; +var faPenSquare = { prefix: 'fas', iconName: 'pen-square', icon: [448, 512, [], "f14b", "M400 480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zM238.1 177.9L102.4 313.6l-6.3 57.1c-.8 7.6 5.6 14.1 13.3 13.3l57.1-6.3L302.2 242c2.3-2.3 2.3-6.1 0-8.5L246.7 178c-2.5-2.4-6.3-2.4-8.6-.1zM345 165.1L314.9 135c-9.4-9.4-24.6-9.4-33.9 0l-23.1 23.1c-2.3 2.3-2.3 6.1 0 8.5l55.5 55.5c2.3 2.3 6.1 2.3 8.5 0L345 199c9.3-9.3 9.3-24.5 0-33.9z"] }; +var faPencilAlt = { prefix: 'fas', iconName: 'pencil-alt', icon: [512, 512, [], "f303", "M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z"] }; +var faPeopleCarry = { prefix: 'fas', iconName: 'people-carry', icon: [640, 512, [], "f4ce", "M128 96c26.5 0 48-21.5 48-48S154.5 0 128 0 80 21.5 80 48s21.5 48 48 48zm384 0c26.5 0 48-21.5 48-48S538.5 0 512 0s-48 21.5-48 48 21.5 48 48 48zm125.7 372.1l-44-110-41.1 46.4-2 18.2 27.7 69.2c5 12.5 17 20.1 29.7 20.1 4 0 8-.7 11.9-2.3 16.4-6.6 24.4-25.2 17.8-41.6zm-34.2-209.8L585 178.1c-4.6-20-18.6-36.8-37.5-44.9-18.5-8-39-6.7-56.1 3.3-22.7 13.4-39.7 34.5-48.1 59.4L432 229.8 416 240v-96c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16v96l-16.1-10.2-11.3-33.9c-8.3-25-25.4-46-48.1-59.4-17.2-10-37.6-11.3-56.1-3.3-18.9 8.1-32.9 24.9-37.5 44.9l-18.4 80.2c-4.6 20 .7 41.2 14.4 56.7l67.2 75.9 10.1 92.6C130 499.8 143.8 512 160 512c1.2 0 2.3-.1 3.5-.2 17.6-1.9 30.2-17.7 28.3-35.3l-10.1-92.8c-1.5-13-6.9-25.1-15.6-35l-43.3-49 17.6-70.3 6.8 20.4c4.1 12.5 11.9 23.4 24.5 32.6l51.1 32.5c4.6 2.9 12.1 4.6 17.2 5h160c5.1-.4 12.6-2.1 17.2-5l51.1-32.5c12.6-9.2 20.4-20 24.5-32.6l6.8-20.4 17.6 70.3-43.3 49c-8.7 9.9-14.1 22-15.6 35l-10.1 92.8c-1.9 17.6 10.8 33.4 28.3 35.3 1.2.1 2.3.2 3.5.2 16.1 0 30-12.1 31.8-28.5l10.1-92.6 67.2-75.9c13.6-15.5 19-36.7 14.4-56.7zM46.3 358.1l-44 110c-6.6 16.4 1.4 35 17.8 41.6 16.8 6.6 35.1-1.7 41.6-17.8l27.7-69.2-2-18.2-41.1-46.4z"] }; +var faPercent = { prefix: 'fas', iconName: 'percent', icon: [448, 512, [], "f295", "M112 224c61.9 0 112-50.1 112-112S173.9 0 112 0 0 50.1 0 112s50.1 112 112 112zm0-160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm224 224c-61.9 0-112 50.1-112 112s50.1 112 112 112 112-50.1 112-112-50.1-112-112-112zm0 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zM392.3.2l31.6-.1c19.4-.1 30.9 21.8 19.7 37.8L77.4 501.6a23.95 23.95 0 0 1-19.6 10.2l-33.4.1c-19.5 0-30.9-21.9-19.7-37.8l368-463.7C377.2 4 384.5.2 392.3.2z"] }; +var faPercentage = { prefix: 'fas', iconName: 'percentage', icon: [384, 512, [], "f541", "M109.25 173.25c24.99-24.99 24.99-65.52 0-90.51-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 25 25 65.52 25 90.51 0zm256 165.49c-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 24.99 24.99 65.52 24.99 90.51 0 25-24.99 25-65.51 0-90.51zm-1.94-231.43l-22.62-22.62c-12.5-12.5-32.76-12.5-45.25 0L20.69 359.44c-12.5 12.5-12.5 32.76 0 45.25l22.62 22.62c12.5 12.5 32.76 12.5 45.25 0l274.75-274.75c12.5-12.49 12.5-32.75 0-45.25z"] }; +var faPhone = { prefix: 'fas', iconName: 'phone', icon: [512, 512, [], "f095", "M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z"] }; +var faPhoneSlash = { prefix: 'fas', iconName: 'phone-slash', icon: [640, 512, [], "f3dd", "M268.2 381.4l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48c-10.7 4.6-16.5 16.1-13.9 27.5l24 104c2.5 10.8 12.1 18.6 23.4 18.6 100.7 0 193.7-32.4 269.7-86.9l-80-61.8c-10.9 6.5-22.1 12.7-33.6 18.1zm365.6 76.7L475.1 335.5C537.9 256.4 576 156.9 576 48c0-11.2-7.7-20.9-18.6-23.4l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-12.2 26.1-27.9 50.3-46 72.8L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z"] }; +var faPhoneSquare = { prefix: 'fas', iconName: 'phone-square', icon: [448, 512, [], "f098", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM94 416c-7.033 0-13.057-4.873-14.616-11.627l-14.998-65a15 15 0 0 1 8.707-17.16l69.998-29.999a15 15 0 0 1 17.518 4.289l30.997 37.885c48.944-22.963 88.297-62.858 110.781-110.78l-37.886-30.997a15.001 15.001 0 0 1-4.289-17.518l30-69.998a15 15 0 0 1 17.16-8.707l65 14.998A14.997 14.997 0 0 1 384 126c0 160.292-129.945 290-290 290z"] }; +var faPhoneVolume = { prefix: 'fas', iconName: 'phone-volume', icon: [384, 512, [], "f2a0", "M97.333 506.966c-129.874-129.874-129.681-340.252 0-469.933 5.698-5.698 14.527-6.632 21.263-2.422l64.817 40.513a17.187 17.187 0 0 1 6.849 20.958l-32.408 81.021a17.188 17.188 0 0 1-17.669 10.719l-55.81-5.58c-21.051 58.261-20.612 122.471 0 179.515l55.811-5.581a17.188 17.188 0 0 1 17.669 10.719l32.408 81.022a17.188 17.188 0 0 1-6.849 20.958l-64.817 40.513a17.19 17.19 0 0 1-21.264-2.422zM247.126 95.473c11.832 20.047 11.832 45.008 0 65.055-3.95 6.693-13.108 7.959-18.718 2.581l-5.975-5.726c-3.911-3.748-4.793-9.622-2.261-14.41a32.063 32.063 0 0 0 0-29.945c-2.533-4.788-1.65-10.662 2.261-14.41l5.975-5.726c5.61-5.378 14.768-4.112 18.718 2.581zm91.787-91.187c60.14 71.604 60.092 175.882 0 247.428-4.474 5.327-12.53 5.746-17.552.933l-5.798-5.557c-4.56-4.371-4.977-11.529-.93-16.379 49.687-59.538 49.646-145.933 0-205.422-4.047-4.85-3.631-12.008.93-16.379l5.798-5.557c5.022-4.813 13.078-4.394 17.552.933zm-45.972 44.941c36.05 46.322 36.108 111.149 0 157.546-4.39 5.641-12.697 6.251-17.856 1.304l-5.818-5.579c-4.4-4.219-4.998-11.095-1.285-15.931 26.536-34.564 26.534-82.572 0-117.134-3.713-4.836-3.115-11.711 1.285-15.931l5.818-5.579c5.159-4.947 13.466-4.337 17.856 1.304z"] }; +var faPiggyBank = { prefix: 'fas', iconName: 'piggy-bank', icon: [576, 512, [], "f4d3", "M560 224h-29.5c-8.8-20-21.6-37.7-37.4-52.5L512 96h-32c-29.4 0-55.4 13.5-73 34.3-7.6-1.1-15.1-2.3-23-2.3H256c-77.4 0-141.9 55-156.8 128H56c-14.8 0-26.5-13.5-23.5-28.8C34.7 215.8 45.4 208 57 208h1c3.3 0 6-2.7 6-6v-20c0-3.3-2.7-6-6-6-28.5 0-53.9 20.4-57.5 48.6C-3.9 258.8 22.7 288 56 288h40c0 52.2 25.4 98.1 64 127.3V496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-48h128v48c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80.7c11.8-8.9 22.3-19.4 31.3-31.3H560c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16zm-128 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM256 96h128c5.4 0 10.7.4 15.9.8 0-.3.1-.5.1-.8 0-53-43-96-96-96s-96 43-96 96c0 2.1.5 4.1.6 6.2 15.2-3.9 31-6.2 47.4-6.2z"] }; +var faPills = { prefix: 'fas', iconName: 'pills', icon: [576, 512, [], "f484", "M112 32C50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V144c0-61.9-50.1-112-112-112zm48 224H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm139.7-29.7c-3.5-3.5-9.4-3.1-12.3.8-45.3 62.5-40.4 150.1 15.9 206.4 56.3 56.3 143.9 61.2 206.4 15.9 4-2.9 4.3-8.8.8-12.3L299.7 226.3zm229.8-19c-56.3-56.3-143.9-61.2-206.4-15.9-4 2.9-4.3 8.8-.8 12.3l210.8 210.8c3.5 3.5 9.4 3.1 12.3-.8 45.3-62.6 40.5-150.1-15.9-206.4z"] }; +var faPlane = { prefix: 'fas', iconName: 'plane', icon: [576, 512, [], "f072", "M480 192H365.71L260.61 8.06A16.014 16.014 0 0 0 246.71 0h-65.5c-10.63 0-18.3 10.17-15.38 20.39L214.86 192H112l-43.2-57.6c-3.02-4.03-7.77-6.4-12.8-6.4H16.01C5.6 128-2.04 137.78.49 147.88L32 256 .49 364.12C-2.04 374.22 5.6 384 16.01 384H56c5.04 0 9.78-2.37 12.8-6.4L112 320h102.86l-49.03 171.6c-2.92 10.22 4.75 20.4 15.38 20.4h65.5c5.74 0 11.04-3.08 13.89-8.06L365.71 320H480c35.35 0 96-28.65 96-64s-60.65-64-96-64z"] }; +var faPlay = { prefix: 'fas', iconName: 'play', icon: [448, 512, [], "f04b", "M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z"] }; +var faPlayCircle = { prefix: 'fas', iconName: 'play-circle', icon: [512, 512, [], "f144", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z"] }; +var faPlug = { prefix: 'fas', iconName: 'plug', icon: [384, 512, [], "f1e6", "M256 144V32c0-17.673 14.327-32 32-32s32 14.327 32 32v112h-64zm112 16H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h16v32c0 77.406 54.969 141.971 128 156.796V512h64v-99.204c73.031-14.825 128-79.39 128-156.796v-32h16c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm-240-16V32c0-17.673-14.327-32-32-32S64 14.327 64 32v112h64z"] }; +var faPlus = { prefix: 'fas', iconName: 'plus', icon: [448, 512, [], "f067", "M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; +var faPlusCircle = { prefix: 'fas', iconName: 'plus-circle', icon: [512, 512, [], "f055", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"] }; +var faPlusSquare = { prefix: 'fas', iconName: 'plus-square', icon: [448, 512, [], "f0fe", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-32 252c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92H92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"] }; +var faPodcast = { prefix: 'fas', iconName: 'podcast', icon: [448, 512, [], "f2ce", "M267.429 488.563C262.286 507.573 242.858 512 224 512c-18.857 0-38.286-4.427-43.428-23.437C172.927 460.134 160 388.898 160 355.75c0-35.156 31.142-43.75 64-43.75s64 8.594 64 43.75c0 32.949-12.871 104.179-20.571 132.813zM156.867 288.554c-18.693-18.308-29.958-44.173-28.784-72.599 2.054-49.724 42.395-89.956 92.124-91.881C274.862 121.958 320 165.807 320 220c0 26.827-11.064 51.116-28.866 68.552-2.675 2.62-2.401 6.986.628 9.187 9.312 6.765 16.46 15.343 21.234 25.363 1.741 3.654 6.497 4.66 9.449 1.891 28.826-27.043 46.553-65.783 45.511-108.565-1.855-76.206-63.595-138.208-139.793-140.369C146.869 73.753 80 139.215 80 220c0 41.361 17.532 78.7 45.55 104.989 2.953 2.771 7.711 1.77 9.453-1.887 4.774-10.021 11.923-18.598 21.235-25.363 3.029-2.2 3.304-6.566.629-9.185zM224 0C100.204 0 0 100.185 0 224c0 89.992 52.602 165.647 125.739 201.408 4.333 2.118 9.267-1.544 8.535-6.31-2.382-15.512-4.342-30.946-5.406-44.339-.146-1.836-1.149-3.486-2.678-4.512-47.4-31.806-78.564-86.016-78.187-147.347.592-96.237 79.29-174.648 175.529-174.899C320.793 47.747 400 126.797 400 224c0 61.932-32.158 116.49-80.65 147.867-.999 14.037-3.069 30.588-5.624 47.23-.732 4.767 4.203 8.429 8.535 6.31C395.227 389.727 448 314.187 448 224 448 100.205 347.815 0 224 0zm0 160c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z"] }; +var faPoo = { prefix: 'fas', iconName: 'poo', icon: [512, 512, [], "f2fe", "M451.4 369.1C468.7 356 480 335.4 480 312c0-39.8-32.2-72-72-72h-14.1c13.4-11.7 22.1-28.8 22.1-48 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C250.3 14.6 256 30.6 256 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 19.2 8.7 36.3 22.1 48H104c-39.8 0-72 32.2-72 72 0 23.4 11.3 44 28.6 57.1C26.3 374.6 0 404.1 0 440c0 39.8 32.2 72 72 72h368c39.8 0 72-32.2 72-72 0-35.9-26.3-65.4-60.6-70.9zM192 256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm159.5 139C341 422.9 293 448 256 448s-85-25.1-95.5-53c-2-5.3 2-11 7.8-11h175.4c5.8 0 9.8 5.7 7.8 11zM320 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faPortrait = { prefix: 'fas', iconName: 'portrait', icon: [384, 512, [], "f3e0", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM192 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 384 80 375.4 80 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"] }; +var faPoundSign = { prefix: 'fas', iconName: 'pound-sign', icon: [320, 512, [], "f154", "M308 352h-45.495c-6.627 0-12 5.373-12 12v50.848H128V288h84c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-84v-63.556c0-32.266 24.562-57.086 61.792-57.086 23.658 0 45.878 11.505 57.652 18.849 5.151 3.213 11.888 2.051 15.688-2.685l28.493-35.513c4.233-5.276 3.279-13.005-2.119-17.081C273.124 54.56 236.576 32 187.931 32 106.026 32 48 84.742 48 157.961V224H20c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h28v128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12V364c0-6.627-5.373-12-12-12z"] }; +var faPowerOff = { prefix: 'fas', iconName: 'power-off', icon: [512, 512, [], "f011", "M400 54.1c63 45 104 118.6 104 201.9 0 136.8-110.8 247.7-247.5 248C120 504.3 8.2 393 8 256.4 7.9 173.1 48.9 99.3 111.8 54.2c11.7-8.3 28-4.8 35 7.7L162.6 90c5.9 10.5 3.1 23.8-6.6 31-41.5 30.8-68 79.6-68 134.9-.1 92.3 74.5 168.1 168 168.1 91.6 0 168.6-74.2 168-169.1-.3-51.8-24.7-101.8-68.1-134-9.7-7.2-12.4-20.5-6.5-30.9l15.8-28.1c7-12.4 23.2-16.1 34.8-7.8zM296 264V24c0-13.3-10.7-24-24-24h-32c-13.3 0-24 10.7-24 24v240c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24z"] }; +var faPrescriptionBottle = { prefix: 'fas', iconName: 'prescription-bottle', icon: [384, 512, [], "f485", "M32 192h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v64zM360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24z"] }; +var faPrescriptionBottleAlt = { prefix: 'fas', iconName: 'prescription-bottle-alt', icon: [384, 512, [], "f486", "M360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24zM32 480c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v352zm64-184c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48z"] }; +var faPrint = { prefix: 'fas', iconName: 'print', icon: [512, 512, [], "f02f", "M464 192h-16V81.941a24 24 0 0 0-7.029-16.97L383.029 7.029A24 24 0 0 0 366.059 0H88C74.745 0 64 10.745 64 24v168H48c-26.51 0-48 21.49-48 48v132c0 6.627 5.373 12 12 12h52v104c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V384h52c6.627 0 12-5.373 12-12V240c0-26.51-21.49-48-48-48zm-80 256H128v-96h256v96zM128 224V64h192v40c0 13.2 10.8 24 24 24h40v96H128zm304 72c-13.254 0-24-10.746-24-24s10.746-24 24-24 24 10.746 24 24-10.746 24-24 24z"] }; +var faProcedures = { prefix: 'fas', iconName: 'procedures', icon: [640, 512, [], "f487", "M528 224H272c-8.8 0-16 7.2-16 16v144H64V144c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v352c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h512v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-61.9-50.1-112-112-112zM136 96h126.1l27.6 55.2c5.9 11.8 22.7 11.8 28.6 0L368 51.8 390.1 96H512c8.8 0 16-7.2 16-16s-7.2-16-16-16H409.9L382.3 8.8C376.4-3 359.6-3 353.7 8.8L304 108.2l-19.9-39.8c-1.4-2.7-4.1-4.4-7.2-4.4H136c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm24 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z"] }; +var faProjectDiagram = { prefix: 'fas', iconName: 'project-diagram', icon: [640, 512, [], "f542", "M384 320H256c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM192 32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v128c0 17.67 14.33 32 32 32h95.72l73.16 128.04C211.98 300.98 232.4 288 256 288h.28L192 175.51V128h224V64H192V32zM608 0H480c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32z"] }; +var faPuzzlePiece = { prefix: 'fas', iconName: 'puzzle-piece', icon: [576, 512, [], "f12e", "M519.442 288.651c-41.519 0-59.5 31.593-82.058 31.593C377.409 320.244 432 144 432 144s-196.288 80-196.288-3.297c0-35.827 36.288-46.25 36.288-85.985C272 19.216 243.885 0 210.539 0c-34.654 0-66.366 18.891-66.366 56.346 0 41.364 31.711 59.277 31.711 81.75C175.885 207.719 0 166.758 0 166.758v333.237s178.635 41.047 178.635-28.662c0-22.473-40-40.107-40-81.471 0-37.456 29.25-56.346 63.577-56.346 33.673 0 61.788 19.216 61.788 54.717 0 39.735-36.288 50.158-36.288 85.985 0 60.803 129.675 25.73 181.23 25.73 0 0-34.725-120.101 25.827-120.101 35.962 0 46.423 36.152 86.308 36.152C556.712 416 576 387.99 576 354.443c0-34.199-18.962-65.792-56.558-65.792z"] }; +var faQrcode = { prefix: 'fas', iconName: 'qrcode', icon: [448, 512, [], "f029", "M0 224h192V32H0v192zM64 96h64v64H64V96zm192-64v192h192V32H256zm128 128h-64V96h64v64zM0 480h192V288H0v192zm64-128h64v64H64v-64zm352-64h32v128h-96v-32h-32v96h-64V288h96v32h64v-32zm0 160h32v32h-32v-32zm-64 0h32v32h-32v-32z"] }; +var faQuestion = { prefix: 'fas', iconName: 'question', icon: [384, 512, [], "f128", "M202.021 0C122.202 0 70.503 32.703 29.914 91.026c-7.363 10.58-5.093 25.086 5.178 32.874l43.138 32.709c10.373 7.865 25.132 6.026 33.253-4.148 25.049-31.381 43.63-49.449 82.757-49.449 30.764 0 68.816 19.799 68.816 49.631 0 22.552-18.617 34.134-48.993 51.164-35.423 19.86-82.299 44.576-82.299 106.405V320c0 13.255 10.745 24 24 24h72.471c13.255 0 24-10.745 24-24v-5.773c0-42.86 125.268-44.645 125.268-160.627C377.504 66.256 286.902 0 202.021 0zM192 373.459c-38.196 0-69.271 31.075-69.271 69.271 0 38.195 31.075 69.27 69.271 69.27s69.271-31.075 69.271-69.271-31.075-69.27-69.271-69.27z"] }; +var faQuestionCircle = { prefix: 'fas', iconName: 'question-circle', icon: [512, 512, [], "f059", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z"] }; +var faQuidditch = { prefix: 'fas', iconName: 'quidditch', icon: [640, 512, [], "f458", "M256.5 216.8L343.2 326s-16.6 102.4-76.6 150.1C206.7 523.8 0 510.2 0 510.2s3.8-23.1 11-55.4l94.6-112.2c4-4.7-.9-11.6-6.6-9.5l-60.4 22.1c14.4-41.7 32.7-80 54.6-97.5 59.9-47.8 163.3-40.9 163.3-40.9zm238 135c-44 0-79.8 35.8-79.8 79.9 0 44.1 35.7 79.9 79.8 79.9 44.1 0 79.8-35.8 79.8-79.9 0-44.2-35.8-79.9-79.8-79.9zM636.5 31L616.7 6c-5.5-6.9-15.5-8-22.4-2.6L361.8 181.3l-34.1-43c-5.1-6.4-15.1-5.2-18.6 2.2l-25.3 54.6 86.7 109.2 58.8-12.4c8-1.7 11.4-11.2 6.3-17.6l-34.1-42.9L634 53.5c6.9-5.5 8-15.6 2.5-22.5z"] }; +var faQuoteLeft = { prefix: 'fas', iconName: 'quote-left', icon: [512, 512, [], "f10d", "M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z"] }; +var faQuoteRight = { prefix: 'fas', iconName: 'quote-right', icon: [512, 512, [], "f10e", "M464 32H336c-26.5 0-48 21.5-48 48v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48zm-288 0H48C21.5 32 0 53.5 0 80v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48z"] }; +var faRandom = { prefix: 'fas', iconName: 'random', icon: [512, 512, [], "f074", "M504.971 359.029c9.373 9.373 9.373 24.569 0 33.941l-80 79.984c-15.01 15.01-40.971 4.49-40.971-16.971V416h-58.785a12.004 12.004 0 0 1-8.773-3.812l-70.556-75.596 53.333-57.143L352 336h32v-39.981c0-21.438 25.943-31.998 40.971-16.971l80 79.981zM12 176h84l52.781 56.551 53.333-57.143-70.556-75.596A11.999 11.999 0 0 0 122.785 96H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12zm372 0v39.984c0 21.46 25.961 31.98 40.971 16.971l80-79.984c9.373-9.373 9.373-24.569 0-33.941l-80-79.981C409.943 24.021 384 34.582 384 56.019V96h-58.785a12.004 12.004 0 0 0-8.773 3.812L96 336H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h110.785c3.326 0 6.503-1.381 8.773-3.812L352 176h32z"] }; +var faReceipt = { prefix: 'fas', iconName: 'receipt', icon: [384, 512, [], "f543", "M358.4 3.2L320 48 265.6 3.2a15.9 15.9 0 0 0-19.2 0L192 48 137.6 3.2a15.9 15.9 0 0 0-19.2 0L64 48 25.6 3.2C15-4.7 0 2.8 0 16v480c0 13.2 15 20.7 25.6 12.8L64 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L192 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L320 464l38.4 44.8c10.5 7.9 25.6.4 25.6-12.8V16c0-13.2-15-20.7-25.6-12.8zM320 360c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16z"] }; +var faRecycle = { prefix: 'fas', iconName: 'recycle', icon: [512, 512, [], "f1b8", "M184.561 261.903c3.232 13.997-12.123 24.635-24.068 17.168l-40.736-25.455-50.867 81.402C55.606 356.273 70.96 384 96.012 384H148c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12H96.115c-75.334 0-121.302-83.048-81.408-146.88l50.822-81.388-40.725-25.448c-12.081-7.547-8.966-25.961 4.879-29.158l110.237-25.45c8.611-1.988 17.201 3.381 19.189 11.99l25.452 110.237zm98.561-182.915l41.289 66.076-40.74 25.457c-12.051 7.528-9 25.953 4.879 29.158l110.237 25.45c8.672 1.999 17.215-3.438 19.189-11.99l25.45-110.237c3.197-13.844-11.99-24.719-24.068-17.168l-40.687 25.424-41.263-66.082c-37.521-60.033-125.209-60.171-162.816 0l-17.963 28.766c-3.51 5.62-1.8 13.021 3.82 16.533l33.919 21.195c5.62 3.512 13.024 1.803 16.536-3.817l17.961-28.743c12.712-20.341 41.973-19.676 54.257-.022zM497.288 301.12l-27.515-44.065c-3.511-5.623-10.916-7.334-16.538-3.821l-33.861 21.159c-5.62 3.512-7.33 10.915-3.818 16.536l27.564 44.112c13.257 21.211-2.057 48.96-27.136 48.96H320V336.02c0-14.213-17.242-21.383-27.313-11.313l-80 79.981c-6.249 6.248-6.249 16.379 0 22.627l80 79.989C302.689 517.308 320 510.3 320 495.989V448h95.88c75.274 0 121.335-82.997 81.408-146.88z"] }; +var faRedo = { prefix: 'fas', iconName: 'redo', icon: [512, 512, [], "f01e", "M500.333 0h-47.411c-6.853 0-12.314 5.729-11.986 12.574l3.966 82.759C399.416 41.899 331.672 8 256.001 8 119.34 8 7.899 119.526 8 256.187 8.101 393.068 119.096 504 256 504c63.926 0 122.202-24.187 166.178-63.908 5.113-4.618 5.354-12.561.482-17.433l-33.971-33.971c-4.466-4.466-11.64-4.717-16.38-.543C341.308 415.448 300.606 432 256 432c-97.267 0-176-78.716-176-176 0-97.267 78.716-176 176-176 60.892 0 114.506 30.858 146.099 77.8l-101.525-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12z"] }; +var faRedoAlt = { prefix: 'fas', iconName: 'redo-alt', icon: [512, 512, [], "f2f9", "M256.455 8c66.269.119 126.437 26.233 170.859 68.685l35.715-35.715C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.75c-30.864-28.899-70.801-44.907-113.23-45.273-92.398-.798-170.283 73.977-169.484 169.442C88.764 348.009 162.184 424 256 424c41.127 0 79.997-14.678 110.629-41.556 4.743-4.161 11.906-3.908 16.368.553l39.662 39.662c4.872 4.872 4.631 12.815-.482 17.433C378.202 479.813 319.926 504 256 504 119.034 504 8.001 392.967 8 256.002 7.999 119.193 119.646 7.755 256.455 8z"] }; +var faRegistered = { prefix: 'fas', iconName: 'registered', icon: [512, 512, [], "f25d", "M285.363 207.475c0 18.6-9.831 28.431-28.431 28.431h-29.876v-56.14h23.378c28.668 0 34.929 8.773 34.929 27.709zM504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM363.411 360.414c-46.729-84.825-43.299-78.636-44.702-80.98 23.432-15.172 37.945-42.979 37.945-74.486 0-54.244-31.5-89.252-105.498-89.252h-70.667c-13.255 0-24 10.745-24 24V372c0 13.255 10.745 24 24 24h22.567c13.255 0 24-10.745 24-24v-71.663h25.556l44.129 82.937a24.001 24.001 0 0 0 21.188 12.727h24.464c18.261-.001 29.829-19.591 21.018-35.587z"] }; +var faReply = { prefix: 'fas', iconName: 'reply', icon: [512, 512, [], "f3e5", "M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z"] }; +var faReplyAll = { prefix: 'fas', iconName: 'reply-all', icon: [576, 512, [], "f122", "M136.309 189.836L312.313 37.851C327.72 24.546 352 35.348 352 56.015v82.763c129.182 10.231 224 52.212 224 183.548 0 61.441-39.582 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 38.512-123.162-3.922-169.482-112.59-182.015v84.175c0 20.701-24.3 31.453-39.687 18.164L136.309 226.164c-11.071-9.561-11.086-26.753 0-36.328zm-128 36.328L184.313 378.15C199.7 391.439 224 380.687 224 359.986v-15.818l-108.606-93.785A55.96 55.96 0 0 1 96 207.998a55.953 55.953 0 0 1 19.393-42.38L224 71.832V56.015c0-20.667-24.28-31.469-39.687-18.164L8.309 189.836c-11.086 9.575-11.071 26.767 0 36.328z"] }; +var faRetweet = { prefix: 'fas', iconName: 'retweet', icon: [640, 512, [], "f079", "M629.657 343.598L528.971 444.284c-9.373 9.372-24.568 9.372-33.941 0L394.343 343.598c-9.373-9.373-9.373-24.569 0-33.941l10.823-10.823c9.562-9.562 25.133-9.34 34.419.492L480 342.118V160H292.451a24.005 24.005 0 0 1-16.971-7.029l-16-16C244.361 121.851 255.069 96 276.451 96H520c13.255 0 24 10.745 24 24v222.118l40.416-42.792c9.285-9.831 24.856-10.054 34.419-.492l10.823 10.823c9.372 9.372 9.372 24.569-.001 33.941zm-265.138 15.431A23.999 23.999 0 0 0 347.548 352H160V169.881l40.416 42.792c9.286 9.831 24.856 10.054 34.419.491l10.822-10.822c9.373-9.373 9.373-24.569 0-33.941L144.971 67.716c-9.373-9.373-24.569-9.373-33.941 0L10.343 168.402c-9.373 9.373-9.373 24.569 0 33.941l10.822 10.822c9.562 9.562 25.133 9.34 34.419-.491L96 169.881V392c0 13.255 10.745 24 24 24h243.549c21.382 0 32.09-25.851 16.971-40.971l-16.001-16z"] }; +var faRibbon = { prefix: 'fas', iconName: 'ribbon', icon: [448, 512, [], "f4d6", "M6.1 444.3c-9.6 10.8-7.5 27.6 4.5 35.7l68.8 27.9c9.9 6.7 23.3 5 31.3-3.8l91.8-101.9-79.2-87.9-117.2 130zm435.8 0s-292-324.6-295.4-330.1c15.4-8.4 40.2-17.9 77.5-17.9s62.1 9.5 77.5 17.9c-3.3 5.6-56 64.6-56 64.6l79.1 87.7 34.2-38c28.7-31.9 33.3-78.6 11.4-115.5l-43.7-73.5c-4.3-7.2-9.9-13.3-16.8-18-40.7-27.6-127.4-29.7-171.4 0-6.9 4.7-12.5 10.8-16.8 18l-43.6 73.2c-1.5 2.5-37.1 62.2 11.5 116L337.5 504c8 8.9 21.4 10.5 31.3 3.8l68.8-27.9c11.9-8 14-24.8 4.3-35.6z"] }; +var faRoad = { prefix: 'fas', iconName: 'road', icon: [576, 512, [], "f018", "M567.3 383.6L429.9 78.2C426 69.5 417.4 64 408 64h-96.1l1.9 18.8c.7 7.1-4.8 13.2-11.9 13.2H274c-7.1 0-12.7-6.2-11.9-13.2L264 64h-96c-9.4 0-18 5.5-21.9 14.2L8.7 383.6C3.2 395.8 0 409.6 0 424c0 13.3 10.7 24 24 24h213.6c-7.1 0-12.7-6.2-11.9-13.2l10.8-104c.6-6.1 5.8-10.8 11.9-10.8h79.2c6.1 0 11.3 4.6 11.9 10.8l10.8 104c.7 7.1-4.8 13.2-11.9 13.2H552c13.2 0 24-10.7 24-24 0-13.9-3-27.7-8.7-40.4zM254.7 154.8l3.3-32c.6-6.1 5.8-10.8 11.9-10.8h36.2c6.1 0 11.3 4.6 11.9 10.8l3.3 32c.7 7.1-4.8 13.2-11.9 13.2h-42.8c-7.1 0-12.7-6.2-11.9-13.2zM321.8 288h-67.6c-7.1 0-12.7-6.2-11.9-13.2l7.4-72c.6-6.1 5.8-10.8 11.9-10.8h52.7c6.1 0 11.3 4.6 11.9 10.8l7.4 72c.9 7-4.7 13.2-11.8 13.2z"] }; +var faRobot = { prefix: 'fas', iconName: 'robot', icon: [640, 512, [], "f544", "M0 256v128c0 17.7 14.3 32 32 32h32V224H32c-17.7 0-32 14.3-32 32zM464 96H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H176c-44.2 0-80 35.8-80 80v272c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V176c0-44.2-35.8-80-80-80zM256 416h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm128 120h-64v-32h64v32zm96 0h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm192-72h-32v192h32c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32z"] }; +var faRocket = { prefix: 'fas', iconName: 'rocket', icon: [512, 512, [], "f135", "M505.1 19.1C503.8 13 499 8.2 492.9 6.9 460.7 0 435.5 0 410.4 0 307.2 0 245.3 55.2 199.1 128H94.9c-18.2 0-34.8 10.3-42.9 26.5L2.6 253.3c-8 16 3.6 34.7 21.5 34.7h95.1c-5.9 12.8-11.9 25.5-18 37.7-3.1 6.2-1.9 13.6 3 18.5l63.6 63.6c4.9 4.9 12.3 6.1 18.5 3 12.2-6.1 24.9-12 37.7-17.9V488c0 17.8 18.8 29.4 34.7 21.5l98.7-49.4c16.3-8.1 26.5-24.8 26.5-42.9V312.8c72.6-46.3 128-108.4 128-211.1.1-25.2.1-50.4-6.8-82.6zM400 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; +var faRss = { prefix: 'fas', iconName: 'rss', icon: [448, 512, [], "f09e", "M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"] }; +var faRssSquare = { prefix: 'fas', iconName: 'rss-square', icon: [448, 512, [], "f143", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM112 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm157.533 0h-34.335c-6.011 0-11.051-4.636-11.442-10.634-5.214-80.05-69.243-143.92-149.123-149.123-5.997-.39-10.633-5.431-10.633-11.441v-34.335c0-6.535 5.468-11.777 11.994-11.425 110.546 5.974 198.997 94.536 204.964 204.964.352 6.526-4.89 11.994-11.425 11.994zm103.027 0h-34.334c-6.161 0-11.175-4.882-11.427-11.038-5.598-136.535-115.204-246.161-251.76-251.76C68.882 152.949 64 147.935 64 141.774V107.44c0-6.454 5.338-11.664 11.787-11.432 167.83 6.025 302.21 141.191 308.205 308.205.232 6.449-4.978 11.787-11.432 11.787z"] }; +var faRubleSign = { prefix: 'fas', iconName: 'ruble-sign', icon: [384, 512, [], "f158", "M239.36 320C324.48 320 384 260.542 384 175.071S324.48 32 239.36 32H76c-6.627 0-12 5.373-12 12v206.632H12c-6.627 0-12 5.373-12 12V308c0 6.627 5.373 12 12 12h52v32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v52c0 6.627 5.373 12 12 12h58.56c6.627 0 12-5.373 12-12v-52H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H146.56v-32h92.8zm-92.8-219.252h78.72c46.72 0 74.88 29.11 74.88 74.323 0 45.832-28.16 75.561-76.16 75.561h-77.44V100.748z"] }; +var faRuler = { prefix: 'fas', iconName: 'ruler', icon: [640, 512, [], "f545", "M635.7 167.2L556.1 31.7c-8.8-15-28.3-20.1-43.5-11.5l-69 39.1L503.3 161c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L416 75l-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L333.2 122 278 153.3 337.8 255c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-59.7-101.7-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-27.9-47.5-55.2 31.3 59.7 101.7c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L84.9 262.9l-69 39.1C.7 310.7-4.6 329.8 4.2 344.8l79.6 135.6c8.8 15 28.3 20.1 43.5 11.5L624.1 210c15.2-8.6 20.4-27.8 11.6-42.8z"] }; +var faRulerCombined = { prefix: 'fas', iconName: 'ruler-combined', icon: [512, 512, [], "f546", "M160 288h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56v-64h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56V96h-56c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8h56V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 2.77.91 5.24 1.57 7.8L160 329.38V288zm320 64h-32v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-41.37L24.2 510.43c2.56.66 5.04 1.57 7.8 1.57h448c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"] }; +var faRulerHorizontal = { prefix: 'fas', iconName: 'ruler-horizontal', icon: [576, 512, [], "f547", "M544 128h-48v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8H88c-4.42 0-8-3.58-8-8v-88H32c-17.67 0-32 14.33-32 32v192c0 17.67 14.33 32 32 32h512c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32z"] }; +var faRulerVertical = { prefix: 'fas', iconName: 'ruler-vertical', icon: [256, 512, [], "f548", "M168 416c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 17.67 14.33 32 32 32h192c17.67 0 32-14.33 32-32v-64h-88z"] }; +var faRupeeSign = { prefix: 'fas', iconName: 'rupee-sign', icon: [320, 512, [], "f156", "M308 96c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v44.748c0 6.627 5.373 12 12 12h85.28c27.308 0 48.261 9.958 60.97 27.252H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h158.757c-6.217 36.086-32.961 58.632-74.757 58.632H12c-6.627 0-12 5.373-12 12v53.012c0 3.349 1.4 6.546 3.861 8.818l165.052 152.356a12.001 12.001 0 0 0 8.139 3.182h82.562c10.924 0 16.166-13.408 8.139-20.818L116.871 319.906c76.499-2.34 131.144-53.395 138.318-127.906H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-58.69c-3.486-11.541-8.28-22.246-14.252-32H308z"] }; +var faSave = { prefix: 'fas', iconName: 'save', icon: [448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z"] }; +var faSchool = { prefix: 'fas', iconName: 'school', icon: [640, 512, [], "f549", "M0 224v272c0 8.84 7.16 16 16 16h80V192H32c-17.67 0-32 14.33-32 32zm360-48h-24v-40c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v64c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zm137.75-63.96l-160-106.67a32.02 32.02 0 0 0-35.5 0l-160 106.67A32.002 32.002 0 0 0 128 138.66V512h128V368c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v144h128V138.67c0-10.7-5.35-20.7-14.25-26.63zM320 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm288-64h-64v320h80c8.84 0 16-7.16 16-16V224c0-17.67-14.33-32-32-32z"] }; +var faScrewdriver = { prefix: 'fas', iconName: 'screwdriver', icon: [512, 512, [], "f54a", "M448 0L320 96v62.06l-83.03 83.03c6.79 4.25 13.27 9.06 19.07 14.87 5.8 5.8 10.62 12.28 14.87 19.07L353.94 192H416l96-128-64-64zM128 278.59L10.92 395.67c-14.55 14.55-14.55 38.15 0 52.71l52.7 52.7c14.56 14.56 38.15 14.56 52.71 0L233.41 384c29.11-29.11 29.11-76.3 0-105.41s-76.3-29.11-105.41 0z"] }; +var faSearch = { prefix: 'fas', iconName: 'search', icon: [512, 512, [], "f002", "M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"] }; +var faSearchMinus = { prefix: 'fas', iconName: 'search-minus', icon: [512, 512, [], "f010", "M304 192v32c0 6.6-5.4 12-12 12H124c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z"] }; +var faSearchPlus = { prefix: 'fas', iconName: 'search-plus', icon: [512, 512, [], "f00e", "M304 192v32c0 6.6-5.4 12-12 12h-56v56c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-56h-56c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h56v-56c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v56h56c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z"] }; +var faSeedling = { prefix: 'fas', iconName: 'seedling', icon: [512, 512, [], "f4d8", "M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z"] }; +var faServer = { prefix: 'fas', iconName: 'server', icon: [512, 512, [], "f233", "M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z"] }; +var faShare = { prefix: 'fas', iconName: 'share', icon: [512, 512, [], "f064", "M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z"] }; +var faShareAlt = { prefix: 'fas', iconName: 'share-alt', icon: [448, 512, [], "f1e0", "M352 320c-22.608 0-43.387 7.819-59.79 20.895l-102.486-64.054a96.551 96.551 0 0 0 0-41.683l102.486-64.054C308.613 184.181 329.392 192 352 192c53.019 0 96-42.981 96-96S405.019 0 352 0s-96 42.981-96 96c0 7.158.79 14.13 2.276 20.841L155.79 180.895C139.387 167.819 118.608 160 96 160c-53.019 0-96 42.981-96 96s42.981 96 96 96c22.608 0 43.387-7.819 59.79-20.895l102.486 64.054A96.301 96.301 0 0 0 256 416c0 53.019 42.981 96 96 96s96-42.981 96-96-42.981-96-96-96z"] }; +var faShareAltSquare = { prefix: 'fas', iconName: 'share-alt-square', icon: [448, 512, [], "f1e1", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zM304 296c-14.562 0-27.823 5.561-37.783 14.671l-67.958-40.775a56.339 56.339 0 0 0 0-27.793l67.958-40.775C276.177 210.439 289.438 216 304 216c30.928 0 56-25.072 56-56s-25.072-56-56-56-56 25.072-56 56c0 4.797.605 9.453 1.74 13.897l-67.958 40.775C171.823 205.561 158.562 200 144 200c-30.928 0-56 25.072-56 56s25.072 56 56 56c14.562 0 27.823-5.561 37.783-14.671l67.958 40.775a56.088 56.088 0 0 0-1.74 13.897c0 30.928 25.072 56 56 56s56-25.072 56-56C360 321.072 334.928 296 304 296z"] }; +var faShareSquare = { prefix: 'fas', iconName: 'share-square', icon: [576, 512, [], "f14d", "M568.482 177.448L424.479 313.433C409.3 327.768 384 317.14 384 295.985v-71.963c-144.575.97-205.566 35.113-164.775 171.353 4.483 14.973-12.846 26.567-25.006 17.33C155.252 383.105 120 326.488 120 269.339c0-143.937 117.599-172.5 264-173.312V24.012c0-21.174 25.317-31.768 40.479-17.448l144.003 135.988c10.02 9.463 10.028 25.425 0 34.896zM384 379.128V448H64V128h50.916a11.99 11.99 0 0 0 8.648-3.693c14.953-15.568 32.237-27.89 51.014-37.676C185.708 80.83 181.584 64 169.033 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48v-88.806c0-8.288-8.197-14.066-16.011-11.302a71.83 71.83 0 0 1-34.189 3.377c-7.27-1.046-13.8 4.514-13.8 11.859z"] }; +var faShekelSign = { prefix: 'fas', iconName: 'shekel-sign', icon: [448, 512, [], "f20b", "M248 168v168c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V168c0-75.11-60.89-136-136-136H24C10.75 32 0 42.74 0 56v408c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112h112c30.93 0 56 25.07 56 56zM432 32h-48c-8.84 0-16 7.16-16 16v296c0 30.93-25.07 56-56 56H200V176c0-8.84-7.16-16-16-16h-48c-8.84 0-16 7.16-16 16v280c0 13.25 10.75 24 24 24h168c75.11 0 136-60.89 136-136V48c0-8.84-7.16-16-16-16z"] }; +var faShieldAlt = { prefix: 'fas', iconName: 'shield-alt', icon: [512, 512, [], "f3ed", "M496 128c0 221.282-135.934 344.645-221.539 380.308a48 48 0 0 1-36.923 0C130.495 463.713 16 326.487 16 128a48 48 0 0 1 29.539-44.308l192-80a48 48 0 0 1 36.923 0l192 80A48 48 0 0 1 496 128zM256 446.313l.066.034c93.735-46.689 172.497-156.308 175.817-307.729L256 65.333v380.98z"] }; +var faShip = { prefix: 'fas', iconName: 'ship', icon: [640, 512, [], "f21a", "M496.616 372.639l70.012-70.012c16.899-16.9 9.942-45.771-12.836-53.092L512 236.102V96c0-17.673-14.327-32-32-32h-64V24c0-13.255-10.745-24-24-24H248c-13.255 0-24 10.745-24 24v40h-64c-17.673 0-32 14.327-32 32v140.102l-41.792 13.433c-22.753 7.313-29.754 36.173-12.836 53.092l70.012 70.012C125.828 416.287 85.587 448 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24 61.023 0 107.499-20.61 143.258-59.396C181.677 487.432 216.021 512 256 512h128c39.979 0 74.323-24.568 88.742-59.396C508.495 491.384 554.968 512 616 512c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24-60.817 0-101.542-31.001-119.384-75.361zM192 128h256v87.531l-118.208-37.995a31.995 31.995 0 0 0-19.584 0L192 215.531V128z"] }; +var faShippingFast = { prefix: 'fas', iconName: 'shipping-fast', icon: [640, 512, [], "f48b", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H112C85.5 0 64 21.5 64 48v48H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h272c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H40c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H64v128c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"] }; +var faShoePrints = { prefix: 'fas', iconName: 'shoe-prints', icon: [640, 512, [], "f54b", "M192 160h32V32h-32c-35.35 0-64 28.65-64 64s28.65 64 64 64zM0 416c0 35.35 28.65 64 64 64h32V352H64c-35.35 0-64 28.65-64 64zm337.46-128c-34.91 0-76.16 13.12-104.73 32-24.79 16.38-44.52 32-104.73 32v128l57.53 15.97c26.21 7.28 53.01 13.12 80.31 15.05 32.69 2.31 65.6.67 97.58-6.2C472.9 481.3 512 429.22 512 384c0-64-84.18-96-174.54-96zM491.42 7.19C459.44.32 426.53-1.33 393.84.99c-27.3 1.93-54.1 7.77-80.31 15.04L256 32v128c60.2 0 79.94 15.62 104.73 32 28.57 18.88 69.82 32 104.73 32C555.82 224 640 192 640 128c0-45.22-39.1-97.3-148.58-120.81z"] }; +var faShoppingBag = { prefix: 'fas', iconName: 'shopping-bag', icon: [448, 512, [], "f290", "M352 160v-32C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128v32H0v272c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V160h-96zm-192-32c0-35.29 28.71-64 64-64s64 28.71 64 64v32H160v-32zm160 120c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm-192 0c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24z"] }; +var faShoppingBasket = { prefix: 'fas', iconName: 'shopping-basket', icon: [576, 512, [], "f291", "M576 216v16c0 13.255-10.745 24-24 24h-8l-26.113 182.788C514.509 462.435 494.257 480 470.37 480H105.63c-23.887 0-44.139-17.565-47.518-41.212L32 256h-8c-13.255 0-24-10.745-24-24v-16c0-13.255 10.745-24 24-24h67.341l106.78-146.821c10.395-14.292 30.407-17.453 44.701-7.058 14.293 10.395 17.453 30.408 7.058 44.701L170.477 192h235.046L326.12 82.821c-10.395-14.292-7.234-34.306 7.059-44.701 14.291-10.395 34.306-7.235 44.701 7.058L484.659 192H552c13.255 0 24 10.745 24 24zM312 392V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm112 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm-224 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24z"] }; +var faShoppingCart = { prefix: 'fas', iconName: 'shopping-cart', icon: [576, 512, [], "f07a", "M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z"] }; +var faShower = { prefix: 'fas', iconName: 'shower', icon: [512, 512, [], "f2cc", "M389.66 135.6L231.6 293.66c-9.37 9.37-24.57 9.37-33.94 0l-11.32-11.32c-9.37-9.37-9.37-24.57 0-33.94l.11-.11c-34.03-40.21-35.16-98.94-3.39-140.38-11.97-7.55-26.14-11.91-41.3-11.91C98.88 96 64 130.88 64 173.76V480H0V173.76C0 95.59 63.59 32 141.76 32c36.93 0 70.61 14.2 95.86 37.42 35.9-11.51 76.5-4.5 106.67 21.03l.11-.11c9.37-9.37 24.57-9.37 33.94 0l11.32 11.32c9.37 9.37 9.37 24.57 0 33.94zM384 208c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm48-16c8.837 0 16 7.163 16 16s-7.163 16-16 16-16-7.163-16-16 7.163-16 16-16zm80 16c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-128 32c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-96 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm64 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16z"] }; +var faSign = { prefix: 'fas', iconName: 'sign', icon: [512, 512, [], "f4d9", "M496 64H128V16c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16v48H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V128h368c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM160 384h320V160H160v224z"] }; +var faSignInAlt = { prefix: 'fas', iconName: 'sign-in-alt', icon: [512, 512, [], "f2f6", "M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z"] }; +var faSignLanguage = { prefix: 'fas', iconName: 'sign-language', icon: [448, 512, [], "f2a7", "M91.434 483.987c-.307-16.018 13.109-29.129 29.13-29.129h62.293v-5.714H56.993c-16.021 0-29.437-13.111-29.13-29.129C28.16 404.491 40.835 392 56.428 392h126.429v-5.714H29.136c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h154.286v-5.714H57.707c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h168.566l-31.085-22.606c-12.762-9.281-15.583-27.149-6.302-39.912 9.281-12.761 27.15-15.582 39.912-6.302l123.361 89.715a34.287 34.287 0 0 1 14.12 27.728v141.136c0 15.91-10.946 29.73-26.433 33.374l-80.471 18.934a137.16 137.16 0 0 1-31.411 3.646H120c-15.593-.001-28.269-12.492-28.566-28.014zm73.249-225.701h36.423l-11.187-8.136c-18.579-13.511-20.313-40.887-3.17-56.536l-13.004-16.7c-9.843-12.641-28.43-15.171-40.88-5.088-12.065 9.771-14.133 27.447-4.553 39.75l36.371 46.71zm283.298-2.103l-5.003-152.452c-.518-15.771-13.722-28.136-29.493-27.619-15.773.518-28.137 13.722-27.619 29.493l1.262 38.415L283.565 11.019c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l76.889 98.745-4.509 3.511-94.79-121.734c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l94.443 121.288-4.509 3.511-77.675-99.754c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l52.053 66.849c12.497-8.257 29.055-8.285 41.69.904l123.36 89.714c10.904 7.93 17.415 20.715 17.415 34.198v16.999l61.064-47.549a34.285 34.285 0 0 0 13.202-28.177z"] }; +var faSignOutAlt = { prefix: 'fas', iconName: 'sign-out-alt', icon: [512, 512, [], "f2f5", "M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"] }; +var faSignal = { prefix: 'fas', iconName: 'signal', icon: [640, 512, [], "f012", "M36 384h56c6.6 0 12 5.4 12 12v104c0 6.6-5.4 12-12 12H36c-6.6 0-12-5.4-12-12V396c0-6.6 5.4-12 12-12zm116-36v152c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V348c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-80v232c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V268c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-112v344c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V156c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zM536 12v488c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V12c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12z"] }; +var faSitemap = { prefix: 'fas', iconName: 'sitemap', icon: [640, 512, [], "f0e8", "M128 352H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm-24-80h192v48h48v-48h192v48h48v-57.59c0-21.17-17.23-38.41-38.41-38.41H344v-64h40c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H256c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h40v64H94.41C73.23 224 56 241.23 56 262.41V320h48v-48zm264 80h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm240 0h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"] }; +var faSkull = { prefix: 'fas', iconName: 'skull', icon: [512, 512, [], "f54c", "M256 0C114.6 0 0 100.3 0 224c0 70.1 36.9 132.6 94.5 173.7 9.6 6.9 15.2 18.1 13.5 29.9l-9.4 66.2c-1.4 9.6 6 18.2 15.7 18.2H192v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h64v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h77.7c9.7 0 17.1-8.6 15.7-18.2l-9.4-66.2c-1.7-11.7 3.8-23 13.5-29.9C475.1 356.6 512 294.1 512 224 512 100.3 397.4 0 256 0zm-96 320c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm192 0c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64z"] }; +var faSlidersH = { prefix: 'fas', iconName: 'sliders-h', icon: [512, 512, [], "f1de", "M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z"] }; +var faSmile = { prefix: 'fas', iconName: 'smile', icon: [496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-5.7-6.8-4.7-16.9 2-22.5 6.8-5.7 16.9-4.7 22.5 2 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c5.7-6.8 15.7-7.7 22.5-2 6.9 5.7 7.8 15.8 2.2 22.5z"] }; +var faSmoking = { prefix: 'fas', iconName: 'smoking', icon: [640, 512, [], "f48d", "M632 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8zM553.3 87.1c-5.7-3.8-9.3-10-9.3-16.8V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v62.3c0 22 10.2 43.4 28.6 55.4 42.2 27.3 67.4 73.8 67.4 124V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-65.5-32.4-126.2-86.7-162.6zM432 352H48c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h384c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zm-32 112H224v-64h176v64zm87.7-322.4C463.8 125 448 99.3 448 70.3V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v66.4c0 43.7 24.6 81.6 60.3 106.7 22.4 15.7 35.7 41.2 35.7 68.6V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-43.3-21-83.4-56.3-108.1zM536 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8z"] }; +var faSmokingBan = { prefix: 'fas', iconName: 'smoking-ban', icon: [512, 512, [], "f54d", "M96 304c0 8.8 7.2 16 16 16h117.5l-96-96H112c-8.8 0-16 7.2-16 16v64zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 448c-105.9 0-192-86.1-192-192 0-41.4 13.3-79.7 35.7-111.1l267.4 267.4C335.7 434.7 297.4 448 256 448zm45.2-192H384v32h-50.8l-32-32zm111.1 111.1L365.2 320H400c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16H269.2L144.9 99.7C176.3 77.3 214.6 64 256 64c105.9 0 192 86.1 192 192 0 41.4-13.3 79.7-35.7 111.1zM320.6 128c-15.6 0-28.6-11.2-31.4-25.9-.7-3.6-4-6.1-7.7-6.1h-16.2c-5 0-8.7 4.5-8 9.4 4.6 30.9 31.2 54.6 63.3 54.6 15.6 0 28.6 11.2 31.4 25.9.7 3.6 4 6.1 7.7 6.1h16.2c5 0 8.7-4.5 8-9.4-4.6-30.9-31.2-54.6-63.3-54.6z"] }; +var faSnowflake = { prefix: 'fas', iconName: 'snowflake', icon: [448, 512, [], "f2dc", "M444.816 301.639a24.12 24.12 0 0 0 2.661-16.978c-2.725-12.966-15.339-21.245-28.174-18.492l-87.407 25.046L264 256l67.896-35.215 87.407 25.046c12.835 2.753 25.449-5.526 28.174-18.492 2.725-12.966-5.471-25.708-18.305-28.461l-47.477-7.137 53.077-30.956c11.363-6.627 15.257-21.306 8.696-32.785-6.561-11.479-21.091-15.412-32.454-8.785l-53.077 30.956 17.621-45.104c4.057-12.606-2.768-26.146-15.247-30.245-12.478-4.099-25.883 2.797-29.94 15.402l-22.232 88.99-60.38 35.215V144l65.175-63.945c8.778-9.852 7.987-25.027-1.766-33.894-9.753-8.867-24.775-8.068-33.552 1.784l-29.857 37.967V24c0-13.255-10.637-24-23.758-24s-23.758 10.745-23.758 24v61.912l-29.857-37.967c-8.779-9.852-23.799-10.652-33.552-1.784-9.753 8.867-10.543 24.042-1.766 33.894L200.242 144v70.431l-60.38-35.215-22.232-88.99c-4.057-12.605-17.462-19.501-29.94-15.402-12.478 4.099-19.304 17.64-15.247 30.245l17.62 45.104-53.077-30.956c-11.363-6.627-25.893-2.694-32.454 8.785s-2.667 26.157 8.696 32.785l53.077 30.956-47.477 7.137C5.993 201.634-2.203 214.375.523 227.341c2.725 12.965 15.339 21.245 28.174 18.492l87.407-25.046L184 256l-67.896 35.215-87.406-25.045c-12.835-2.753-25.449 5.526-28.174 18.492-2.725 12.967 5.47 25.708 18.305 28.461l47.477 7.137-53.077 30.956C1.866 357.843-2.027 372.521 4.533 384s21.091 15.412 32.454 8.785l53.077-30.956-17.62 45.104a24.157 24.157 0 0 0 2.022 19.428c2.831 4.953 7.416 8.909 13.224 10.816 12.478 4.099 25.883-2.797 29.94-15.402l22.232-88.99 60.38-35.215V368l-65.175 63.945c-8.778 9.852-7.987 25.027 1.766 33.894 9.754 8.868 24.774 8.068 33.552-1.784l29.857-37.967V488c0 13.255 10.637 24 23.758 24s23.758-10.745 23.758-24v-61.912l29.857 37.967A23.59 23.59 0 0 0 295.282 472a23.534 23.534 0 0 0 15.885-6.161c9.753-8.867 10.544-24.042 1.766-33.894L247.758 368v-70.431l60.38 35.215 22.232 88.99c4.057 12.605 17.462 19.501 29.94 15.402 12.479-4.099 19.304-17.64 15.247-30.245l-17.621-45.104 53.077 30.956c11.363 6.627 25.893 2.694 32.454-8.785s2.667-26.157-8.696-32.785l-53.077-30.956 47.477-7.137c6.86-1.469 12.394-5.793 15.645-11.481z"] }; +var faSort = { prefix: 'fas', iconName: 'sort', icon: [320, 512, [], "f0dc", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z"] }; +var faSortAlphaDown = { prefix: 'fas', iconName: 'sort-alpha-down', icon: [448, 512, [], "f15d", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zm119.075-180.007A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z"] }; +var faSortAlphaUp = { prefix: 'fas', iconName: 'sort-alpha-up', icon: [448, 512, [], "f15e", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zm301.671 98.621A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z"] }; +var faSortAmountDown = { prefix: 'fas', iconName: 'sort-amount-down', icon: [512, 512, [], "f160", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z"] }; +var faSortAmountUp = { prefix: 'fas', iconName: 'sort-amount-up', icon: [512, 512, [], "f161", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z"] }; +var faSortDown = { prefix: 'fas', iconName: 'sort-down', icon: [320, 512, [], "f0dd", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z"] }; +var faSortNumericDown = { prefix: 'fas', iconName: 'sort-numeric-down', icon: [448, 512, [], "f162", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM175.984 368H128V48c0-8.837-7.163-16-16-16H80c-8.837 0-16 7.163-16 16v320H16.019c-14.212 0-21.384 17.244-11.314 27.314l79.981 80.002c6.245 6.245 16.38 6.247 22.627 0l79.984-80.002c10.05-10.05 2.928-27.314-11.313-27.314z"] }; +var faSortNumericUp = { prefix: 'fas', iconName: 'sort-numeric-up', icon: [448, 512, [], "f163", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM16.016 144H64v320c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144h47.981c14.212 0 21.384-17.244 11.314-27.314l-79.981-80.002c-6.245-6.245-16.38-6.247-22.627 0L4.702 116.686C-5.347 126.736 1.775 144 16.016 144z"] }; +var faSortUp = { prefix: 'fas', iconName: 'sort-up', icon: [320, 512, [], "f0de", "M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z"] }; +var faSpaceShuttle = { prefix: 'fas', iconName: 'space-shuttle', icon: [640, 512, [], "f197", "M592.604 208.244C559.735 192.836 515.777 184 472 184H186.327c-4.952-6.555-10.585-11.978-16.72-16H376C229.157 137.747 219.403 32 96.003 32H96v128H80V32c-26.51 0-48 28.654-48 64v64c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v16c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v64c0 35.346 21.49 64 48 64V352h16v128h.003c123.4 0 133.154-105.747 279.997-136H169.606c6.135-4.022 11.768-9.445 16.72-16H472c43.777 0 87.735-8.836 120.604-24.244C622.282 289.845 640 271.992 640 256s-17.718-33.845-47.396-47.756zM488 296a8 8 0 0 1-8-8v-64a8 8 0 0 1 8-8c31.909 0 31.942 80 0 80z"] }; +var faSpinner = { prefix: 'fas', iconName: 'spinner', icon: [512, 512, [], "f110", "M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z"] }; +var faSquare = { prefix: 'fas', iconName: 'square', icon: [448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"] }; +var faSquareFull = { prefix: 'fas', iconName: 'square-full', icon: [512, 512, [], "f45c", "M512 512H0V0h512v512z"] }; +var faStar = { prefix: 'fas', iconName: 'star', icon: [576, 512, [], "f005", "M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z"] }; +var faStarHalf = { prefix: 'fas', iconName: 'star-half', icon: [576, 512, [], "f089", "M288 0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6V0z"] }; +var faStepBackward = { prefix: 'fas', iconName: 'step-backward', icon: [448, 512, [], "f048", "M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z"] }; +var faStepForward = { prefix: 'fas', iconName: 'step-forward', icon: [448, 512, [], "f051", "M384 44v424c0 6.6-5.4 12-12 12h-48c-6.6 0-12-5.4-12-12V291.6l-195.5 181C95.9 489.7 64 475.4 64 448V64c0-27.4 31.9-41.7 52.5-24.6L312 219.3V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12z"] }; +var faStethoscope = { prefix: 'fas', iconName: 'stethoscope', icon: [512, 512, [], "f0f1", "M447.1 112c-34.2.5-62.3 28.4-63 62.6-.5 24.3 12.5 45.6 32 56.8V344c0 57.3-50.2 104-112 104-60 0-109.2-44.1-111.9-99.2C265 333.8 320 269.2 320 192V36.6c0-11.4-8.1-21.3-19.3-23.5L237.8.5c-13-2.6-25.6 5.8-28.2 18.8L206.4 35c-2.6 13 5.8 25.6 18.8 28.2l30.7 6.1v121.4c0 52.9-42.2 96.7-95.1 97.2-53.4.5-96.9-42.7-96.9-96V69.4l30.7-6.1c13-2.6 21.4-15.2 18.8-28.2l-3.1-15.7C107.7 6.4 95.1-2 82.1.6L19.3 13C8.1 15.3 0 25.1 0 36.6V192c0 77.3 55.1 142 128.1 156.8C130.7 439.2 208.6 512 304 512c97 0 176-75.4 176-168V231.4c19.1-11.1 32-31.7 32-55.4 0-35.7-29.2-64.5-64.9-64zm.9 80c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"] }; +var faStickyNote = { prefix: 'fas', iconName: 'sticky-note', icon: [448, 512, [], "f249", "M312 320h136V56c0-13.3-10.7-24-24-24H24C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h264V344c0-13.2 10.8-24 24-24zm129 55l-98 98c-4.5 4.5-10.6 7-17 7h-6V352h128v6.1c0 6.3-2.5 12.4-7 16.9z"] }; +var faStop = { prefix: 'fas', iconName: 'stop', icon: [448, 512, [], "f04d", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"] }; +var faStopCircle = { prefix: 'fas', iconName: 'stop-circle', icon: [512, 512, [], "f28d", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z"] }; +var faStopwatch = { prefix: 'fas', iconName: 'stopwatch', icon: [448, 512, [], "f2f2", "M432 304c0 114.9-93.1 208-208 208S16 418.9 16 304c0-104 76.3-190.2 176-205.5V64h-28c-6.6 0-12-5.4-12-12V12c0-6.6 5.4-12 12-12h120c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-28v34.5c37.5 5.8 71.7 21.6 99.7 44.6l27.5-27.5c4.7-4.7 12.3-4.7 17 0l28.3 28.3c4.7 4.7 4.7 12.3 0 17l-29.4 29.4-.6.6C419.7 223.3 432 262.2 432 304zm-176 36V188.5c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12V340c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"] }; +var faStore = { prefix: 'fas', iconName: 'store', icon: [616, 512, [], "f54e", "M602 118.6L537.1 15C531.3 5.7 521 0 510 0H106C95 0 84.7 5.7 78.9 15L14 118.6c-33.5 53.5-3.8 127.9 58.8 136.4 4.5.6 9.1.9 13.7.9 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18.1 20.1 44.3 33.1 73.8 33.1 4.7 0 9.2-.3 13.7-.9 62.8-8.4 92.6-82.8 59-136.4zM529.5 288c-10 0-19.9-1.5-29.5-3.8V384H116v-99.8c-9.6 2.2-19.5 3.8-29.5 3.8-6 0-12.1-.4-18-1.2-5.6-.8-11.1-2.1-16.4-3.6V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V283.2c-5.4 1.6-10.8 2.9-16.4 3.6-6.1.8-12.1 1.2-18.2 1.2z"] }; +var faStoreAlt = { prefix: 'fas', iconName: 'store-alt', icon: [640, 512, [], "f54f", "M320 384H128V224H64v256c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V224h-64v160zm314.6-241.8l-85.3-128c-6-8.9-16-14.2-26.7-14.2H117.4c-10.7 0-20.7 5.3-26.6 14.2l-85.3 128c-14.2 21.3 1 49.8 26.6 49.8H608c25.5 0 40.7-28.5 26.6-49.8zM512 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h-64v272z"] }; +var faStream = { prefix: 'fas', iconName: 'stream', icon: [512, 512, [], "f550", "M16 128h416c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H16C7.16 32 0 39.16 0 48v64c0 8.84 7.16 16 16 16zm480 80H80c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm-64 176H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16z"] }; +var faStreetView = { prefix: 'fas', iconName: 'street-view', icon: [512, 512, [], "f21d", "M192 64c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zm112 80h-11.36c-22.711 10.443-49.59 10.894-73.28 0H208c-26.51 0-48 21.49-48 48v104c0 13.255 10.745 24 24 24h16v104c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V320h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48zm85.642 189.152a72.503 72.503 0 0 1-29.01 27.009C391.133 365.251 480 385.854 480 416c0 46.304-167.656 64-224 64-70.303 0-224-20.859-224-64 0-30.123 88.361-50.665 119.367-55.839a72.516 72.516 0 0 1-29.01-27.009C74.959 343.395 0 367.599 0 416c0 77.111 178.658 96 256 96 77.249 0 256-18.865 256-96 0-48.403-74.967-72.606-122.358-82.848z"] }; +var faStrikethrough = { prefix: 'fas', iconName: 'strikethrough', icon: [512, 512, [], "f0cc", "M496 288H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h480c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16zm-214.666 16c27.258 12.937 46.524 28.683 46.524 56.243 0 33.108-28.977 53.676-75.621 53.676-32.325 0-76.874-12.08-76.874-44.271V368c0-8.837-7.164-16-16-16H113.75c-8.836 0-16 7.163-16 16v19.204c0 66.845 77.717 101.82 154.487 101.82 88.578 0 162.013-45.438 162.013-134.424 0-19.815-3.618-36.417-10.143-50.6H281.334zm-30.952-96c-32.422-13.505-56.836-28.946-56.836-59.683 0-33.92 30.901-47.406 64.962-47.406 42.647 0 64.962 16.593 64.962 32.985V136c0 8.837 7.164 16 16 16h45.613c8.836 0 16-7.163 16-16v-30.318c0-52.438-71.725-79.875-142.575-79.875-85.203 0-150.726 40.972-150.726 125.646 0 22.71 4.665 41.176 12.777 56.547h129.823z"] }; +var faStroopwafel = { prefix: 'fas', iconName: 'stroopwafel', icon: [512, 512, [], "f551", "M188.12 210.74L142.86 256l45.25 45.25L233.37 256l-45.25-45.26zm113.13-22.62L256 142.86l-45.25 45.25L256 233.37l45.25-45.25zm-90.5 135.76L256 369.14l45.26-45.26L256 278.63l-45.25 45.25zM256 0C114.62 0 0 114.62 0 256s114.62 256 256 256 256-114.62 256-256S397.38 0 256 0zm186.68 295.6l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-28.29-28.29-45.25 45.25 33.94 33.94 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-33.94-33.94-45.26 45.26 28.29 28.29c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0L256 414.39l-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l28.29-28.29-45.25-45.26-33.94 33.94 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 33.94-33.94-45.25-45.25-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0L69.32 295.6c-3.12-3.12-3.12-8.19 0-11.31L97.61 256l-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l28.29 28.29 45.25-45.26-33.94-33.94-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 33.94 33.94 45.26-45.25-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0L256 97.61l28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-28.29 28.29 45.26 45.25 33.94-33.94-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-33.94 33.94 45.25 45.26 28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31L414.39 256l28.29 28.28a8.015 8.015 0 0 1 0 11.32zM278.63 256l45.26 45.25L369.14 256l-45.25-45.26L278.63 256z"] }; +var faSubscript = { prefix: 'fas', iconName: 'subscript', icon: [512, 512, [], "f12c", "M395.198 416c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 256c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 96H16C7.163 96 0 88.837 0 80V48c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035A15.999 15.999 0 0 1 204.226 32H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 256H272z"] }; +var faSubway = { prefix: 'fas', iconName: 'subway', icon: [448, 512, [], "f239", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zM200 232V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm200 0V120c0-13.255-10.745-24-24-24H272c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm-48 56c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm-256 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"] }; +var faSuitcase = { prefix: 'fas', iconName: 'suitcase', icon: [512, 512, [], "f0f2", "M128 480h256V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v400zm64-384h128v32H192V96zm320 80v256c0 26.5-21.5 48-48 48h-48V128h48c26.5 0 48 21.5 48 48zM96 480H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h48v352z"] }; +var faSun = { prefix: 'fas', iconName: 'sun', icon: [512, 512, [], "f185", "M274.835 12.646l25.516 62.393c4.213 10.301 16.671 14.349 26.134 8.492l57.316-35.479c15.49-9.588 34.808 4.447 30.475 22.142l-16.03 65.475c-2.647 10.81 5.053 21.408 16.152 22.231l67.224 4.987c18.167 1.348 25.546 24.057 11.641 35.826L441.81 242.26c-8.495 7.19-8.495 20.289 0 27.479l51.454 43.548c13.906 11.769 6.527 34.478-11.641 35.826l-67.224 4.987c-11.099.823-18.799 11.421-16.152 22.231l16.03 65.475c4.332 17.695-14.986 31.73-30.475 22.142l-57.316-35.479c-9.463-5.858-21.922-1.81-26.134 8.492l-25.516 62.393c-6.896 16.862-30.774 16.862-37.67 0l-25.516-62.393c-4.213-10.301-16.671-14.349-26.134-8.492l-57.317 35.479c-15.49 9.588-34.808-4.447-30.475-22.142l16.03-65.475c2.647-10.81-5.053-21.408-16.152-22.231l-67.224-4.987c-18.167-1.348-25.546-24.057-11.641-35.826L70.19 269.74c8.495-7.19 8.495-20.289 0-27.479l-51.454-43.548c-13.906-11.769-6.527-34.478 11.641-35.826l67.224-4.987c11.099-.823 18.799-11.421 16.152-22.231l-16.03-65.475c-4.332-17.695 14.986-31.73 30.475-22.142l57.317 35.479c9.463 5.858 21.921 1.81 26.134-8.492l25.516-62.393c6.896-16.861 30.774-16.861 37.67 0zM392 256c0-74.991-61.01-136-136-136-74.991 0-136 61.009-136 136s61.009 136 136 136c74.99 0 136-61.009 136-136zm-32 0c0 57.346-46.654 104-104 104s-104-46.654-104-104 46.654-104 104-104 104 46.654 104 104z"] }; +var faSuperscript = { prefix: 'fas', iconName: 'superscript', icon: [512, 512, [], "f12b", "M395.198 256c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 256H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035a16 16 0 0 1 13.598-7.567H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 416H272z"] }; +var faSync = { prefix: 'fas', iconName: 'sync', icon: [512, 512, [], "f021", "M440.935 12.574l3.966 82.766C399.416 41.904 331.674 8 256 8 134.813 8 33.933 94.924 12.296 209.824 10.908 217.193 16.604 224 24.103 224h49.084c5.57 0 10.377-3.842 11.676-9.259C103.407 137.408 172.931 80 256 80c60.893 0 114.512 30.856 146.104 77.801l-101.53-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12h-47.411c-6.853 0-12.315 5.729-11.987 12.574zM256 432c-60.895 0-114.517-30.858-146.109-77.805l101.868 4.871c6.845.327 12.573-5.134 12.573-11.986v-47.412c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12V500c0 6.627 5.373 12 12 12h47.385c6.863 0 12.328-5.745 11.985-12.599l-4.129-82.575C112.725 470.166 180.405 504 256 504c121.187 0 222.067-86.924 243.704-201.824 1.388-7.369-4.308-14.176-11.807-14.176h-49.084c-5.57 0-10.377 3.842-11.676 9.259C408.593 374.592 339.069 432 256 432z"] }; +var faSyncAlt = { prefix: 'fas', iconName: 'sync-alt', icon: [512, 512, [], "f2f1", "M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z"] }; +var faSyringe = { prefix: 'fas', iconName: 'syringe', icon: [512, 512, [], "f48e", "M201.5 174.8l55.7 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-55.7-55.8-45.3 45.3 55.8 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L111 265.2l-26.4 26.4c-17.3 17.3-25.6 41.1-23 65.4l7.1 63.6L2.3 487c-3.1 3.1-3.1 8.2 0 11.3l11.3 11.3c3.1 3.1 8.2 3.1 11.3 0l66.3-66.3 63.6 7.1c23.9 2.6 47.9-5.4 65.4-23l181.9-181.9-135.7-135.7-64.9 65zm308.2-93.3L430.5 2.3c-3.1-3.1-8.2-3.1-11.3 0l-11.3 11.3c-3.1 3.1-3.1 8.2 0 11.3l28.3 28.3-45.3 45.3-56.6-56.6-17-17c-3.1-3.1-8.2-3.1-11.3 0l-33.9 33.9c-3.1 3.1-3.1 8.2 0 11.3l17 17L424.8 223l17 17c3.1 3.1 8.2 3.1 11.3 0l33.9-34c3.1-3.1 3.1-8.2 0-11.3l-73.5-73.5 45.3-45.3 28.3 28.3c3.1 3.1 8.2 3.1 11.3 0l11.3-11.3c3.1-3.2 3.1-8.2 0-11.4z"] }; +var faTable = { prefix: 'fas', iconName: 'table', icon: [512, 512, [], "f0ce", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64v-96h160v96zm0-160H64v-96h160v96zm224 160H288v-96h160v96zm0-160H288v-96h160v96z"] }; +var faTableTennis = { prefix: 'fas', iconName: 'table-tennis', icon: [512, 512, [], "f45d", "M496.2 296.5C527.7 218.7 512 126.2 449 63.1 365.1-21 229-21 145.1 63.1l-56 56.1 211.5 211.5c46.1-62.1 131.5-77.4 195.6-34.2zm-217.9 79.7L57.9 155.9c-27.3 45.3-21.7 105 17.3 144.1l34.5 34.6L6.7 424c-8.6 7.5-9.1 20.7-1 28.8l53.4 53.5c8 8.1 21.2 7.6 28.7-1L177.1 402l35.7 35.7c19.7 19.7 44.6 30.5 70.3 33.3-7.1-17-11-35.6-11-55.1-.1-13.8 2.5-27 6.2-39.7zM416 320c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96z"] }; +var faTablet = { prefix: 'fas', iconName: 'tablet', icon: [448, 512, [], "f10a", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faTabletAlt = { prefix: 'fas', iconName: 'tablet-alt', icon: [448, 512, [], "f3fa", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm176-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h328c6.6 0 12 5.4 12 12v312z"] }; +var faTablets = { prefix: 'fas', iconName: 'tablets', icon: [640, 512, [], "f490", "M160 192C78.9 192 12.5 250.5.1 326.7c-.8 4.8 3.3 9.3 8.3 9.3h303.3c5 0 9.1-4.5 8.3-9.3C307.5 250.5 241.1 192 160 192zm151.6 176H8.4c-5 0-9.1 4.5-8.3 9.3C12.5 453.5 78.9 512 160 512s147.5-58.5 159.9-134.7c.8-4.8-3.3-9.3-8.3-9.3zM593.4 46.6c-56.5-56.5-144.2-61.4-206.9-16-4 2.9-4.3 8.9-.8 12.3L597 254.3c3.5 3.5 9.5 3.2 12.3-.8 45.5-62.7 40.6-150.4-15.9-206.9zM363 65.7c-3.5-3.5-9.5-3.2-12.3.8-45.4 62.7-40.5 150.4 15.9 206.9 56.5 56.5 144.2 61.4 206.9 15.9 4-2.9 4.3-8.9.8-12.3L363 65.7z"] }; +var faTachometerAlt = { prefix: 'fas', iconName: 'tachometer-alt', icon: [576, 512, [], "f3fd", "M75.694 480a48.02 48.02 0 0 1-42.448-25.571C12.023 414.3 0 368.556 0 320 0 160.942 128.942 32 288 32s288 128.942 288 288c0 48.556-12.023 94.3-33.246 134.429A48.018 48.018 0 0 1 500.306 480H75.694zM512 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zM288 128c17.673 0 32-14.327 32-32 0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32zM64 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm65.608-158.392c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm316.784 0c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm-87.078 31.534c-12.627-4.04-26.133 2.92-30.173 15.544l-45.923 143.511C250.108 322.645 224 350.264 224 384c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64 0-19.773-8.971-37.447-23.061-49.187l45.919-143.498c4.039-12.625-2.92-26.133-15.544-30.173z"] }; +var faTag = { prefix: 'fas', iconName: 'tag', icon: [512, 512, [], "f02b", "M0 252.118V48C0 21.49 21.49 0 48 0h204.118a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882L293.823 497.941c-18.745 18.745-49.137 18.745-67.882 0L14.059 286.059A48 48 0 0 1 0 252.118zM112 64c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"] }; +var faTags = { prefix: 'fas', iconName: 'tags', icon: [640, 512, [], "f02c", "M497.941 225.941L286.059 14.059A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v204.118a48 48 0 0 0 14.059 33.941l211.882 211.882c18.744 18.745 49.136 18.746 67.882 0l204.118-204.118c18.745-18.745 18.745-49.137 0-67.882zM112 160c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm513.941 133.823L421.823 497.941c-18.745 18.745-49.137 18.745-67.882 0l-.36-.36L527.64 323.522c16.999-16.999 26.36-39.6 26.36-63.64s-9.362-46.641-26.36-63.64L331.397 0h48.721a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882z"] }; +var faTape = { prefix: 'fas', iconName: 'tape', icon: [640, 512, [], "f4db", "M224 192c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm400 224H380.6c41.5-40.7 67.4-97.3 67.4-160 0-123.7-100.3-224-224-224S0 132.3 0 256s100.3 224 224 224h400c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400-64c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96z"] }; +var faTasks = { prefix: 'fas', iconName: 'tasks', icon: [512, 512, [], "f0ae", "M208 132h288c8.8 0 16-7.2 16-16V76c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zM64 368c-26.5 0-48.6 21.5-48.6 48s22.1 48 48.6 48 48-21.5 48-48-21.5-48-48-48zm92.5-299l-72.2 72.2-15.6 15.6c-4.7 4.7-12.9 4.7-17.6 0L3.5 109.4c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.3c4.7-4.7 12.3-4.7 17 0l17 16.5c4.6 4.7 4.6 12.3-.1 17zm0 159.6l-72.2 72.2-15.7 15.7c-4.7 4.7-12.9 4.7-17.6 0L3.5 269c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.7c4.7-4.7 12.3-4.7 17 0l17 17c4.6 4.6 4.6 12.2-.1 16.9z"] }; +var faTaxi = { prefix: 'fas', iconName: 'taxi', icon: [512, 512, [], "f1ba", "M461.951 243.865l-21.816-87.268A79.885 79.885 0 0 0 362.522 96H352V56c0-13.255-10.745-24-24-24H184c-13.255 0-24 10.745-24 24v40h-10.522a79.885 79.885 0 0 0-77.612 60.597L50.05 243.865C25.515 252.823 8 276.366 8 304v48c0 20.207 9.374 38.214 24 49.943V456c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-40h256v40c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-54.057c14.626-11.729 24-29.737 24-49.943v-48c0-27.634-17.515-51.177-42.049-60.135zM149.478 160h213.045a15.975 15.975 0 0 1 15.522 12.12l16.97 67.88h-278.03l16.97-67.881A15.976 15.976 0 0 1 149.478 160zM132 336c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm320 0c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36z"] }; +var faTerminal = { prefix: 'fas', iconName: 'terminal', icon: [640, 512, [], "f120", "M257.981 272.971L63.638 467.314c-9.373 9.373-24.569 9.373-33.941 0L7.029 444.647c-9.357-9.357-9.375-24.522-.04-33.901L161.011 256 6.99 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L257.981 239.03c9.373 9.372 9.373 24.568 0 33.941zM640 456v-32c0-13.255-10.745-24-24-24H312c-13.255 0-24 10.745-24 24v32c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z"] }; +var faTextHeight = { prefix: 'fas', iconName: 'text-height', icon: [576, 512, [], "f034", "M16 32h288c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96h-54.761v320H232c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H88c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm475.308 4.685l79.995 80.001C581.309 126.693 574.297 144 559.99 144H512v224h48c15.639 0 20.635 17.991 11.313 27.314l-79.995 80.001c-6.247 6.247-16.381 6.245-22.626 0l-79.995-80.001C378.691 385.307 385.703 368 400.01 368H448V144h-48c-15.639 0-20.635-17.991-11.313-27.314l79.995-80.001c6.247-6.248 16.381-6.245 22.626 0z"] }; +var faTextWidth = { prefix: 'fas', iconName: 'text-width', icon: [448, 512, [], "f035", "M16 32h416c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96H261.743v128H296c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H152c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm427.315 340.682l-80.001-79.995C353.991 283.365 336 288.362 336 304v48H112v-47.99c0-14.307-17.307-21.319-27.314-11.313L4.685 372.692c-6.245 6.245-6.247 16.379 0 22.626l80.001 79.995C94.009 484.635 112 479.638 112 464v-48h224v47.99c0 14.307 17.307 21.319 27.314 11.313l80.001-79.995c6.245-6.245 6.248-16.379 0-22.626z"] }; +var faTh = { prefix: 'fas', iconName: 'th', icon: [512, 512, [], "f00a", "M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z"] }; +var faThLarge = { prefix: 'fas', iconName: 'th-large', icon: [512, 512, [], "f009", "M296 32h192c13.255 0 24 10.745 24 24v160c0 13.255-10.745 24-24 24H296c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24zm-80 0H24C10.745 32 0 42.745 0 56v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zM0 296v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm296 184h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H296c-13.255 0-24 10.745-24 24v160c0 13.255 10.745 24 24 24z"] }; +var faThList = { prefix: 'fas', iconName: 'th-list', icon: [512, 512, [], "f00b", "M149.333 216v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zM125.333 32H24C10.745 32 0 42.745 0 56v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zm80 448H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm-24-424v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24zm24 264H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24z"] }; +var faThermometer = { prefix: 'fas', iconName: 'thermometer', icon: [512, 512, [], "f491", "M476.8 20.4c-37.5-30.7-95.5-26.3-131.9 10.2l-45.7 46 50.5 50.5c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.4-50.5-45.1 45.4 50.3 50.4c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L209 167.4l-45.1 45.4L214 263c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.1-50.2L96 281.1V382L7 471c-9.4 9.4-9.4 24.6 0 33.9 9.4 9.4 24.6 9.4 33.9 0l89-89h99.9L484 162.6c34.9-34.9 42.2-101.5-7.2-142.2z"] }; +var faThermometerEmpty = { prefix: 'fas', iconName: 'thermometer-empty', icon: [256, 512, [], "f2cb", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; +var faThermometerFull = { prefix: 'fas', iconName: 'thermometer-full', icon: [256, 512, [], "f2c7", "M224 96c0-53.019-42.981-96-96-96S32 42.981 32 96v203.347C12.225 321.756.166 351.136.002 383.333c-.359 70.303 56.787 128.176 127.089 128.664.299.002.61.003.909.003 70.698 0 128-57.304 128-128 0-32.459-12.088-62.09-32-84.653V96zm-96 368l-.576-.002c-43.86-.304-79.647-36.544-79.423-80.42.173-33.98 19.266-51.652 31.999-66.08V96c0-26.467 21.533-48 48-48s48 21.533 48 48v221.498c12.63 14.312 32 32.164 32 66.502 0 44.112-35.888 80-80 80zm64-80c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V96c0-17.673 14.327-32 32-32s32 14.327 32 32v232.583c19.124 11.068 32 31.732 32 55.417z"] }; +var faThermometerHalf = { prefix: 'fas', iconName: 'thermometer-half', icon: [256, 512, [], "f2c9", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V224c0-17.673 14.327-32 32-32s32 14.327 32 32v104.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; +var faThermometerQuarter = { prefix: 'fas', iconName: 'thermometer-quarter', icon: [256, 512, [], "f2ca", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V288c0-17.673 14.327-32 32-32s32 14.327 32 32v40.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; +var faThermometerThreeQuarters = { prefix: 'fas', iconName: 'thermometer-three-quarters', icon: [256, 512, [], "f2c8", "M192 384c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-23.685 12.876-44.349 32-55.417V160c0-17.673 14.327-32 32-32s32 14.327 32 32v168.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; +var faThumbsDown = { prefix: 'fas', iconName: 'thumbs-down', icon: [512, 512, [], "f165", "M0 56v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56zm40 200c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24zm272 256c-20.183 0-29.485-39.293-33.931-57.795-5.206-21.666-10.589-44.07-25.393-58.902-32.469-32.524-49.503-73.967-89.117-113.111a11.98 11.98 0 0 1-3.558-8.521V59.901c0-6.541 5.243-11.878 11.783-11.998 15.831-.29 36.694-9.079 52.651-16.178C256.189 17.598 295.709.017 343.995 0h2.844c42.777 0 93.363.413 113.774 29.737 8.392 12.057 10.446 27.034 6.148 44.632 16.312 17.053 25.063 48.863 16.382 74.757 17.544 23.432 19.143 56.132 9.308 79.469l.11.11c11.893 11.949 19.523 31.259 19.439 49.197-.156 30.352-26.157 58.098-59.553 58.098H350.723C358.03 364.34 384 388.132 384 430.548 384 504 336 512 312 512z"] }; +var faThumbsUp = { prefix: 'fas', iconName: 'thumbs-up', icon: [512, 512, [], "f164", "M104 224H24c-13.255 0-24 10.745-24 24v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V248c0-13.255-10.745-24-24-24zM64 472c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zM384 81.452c0 42.416-25.97 66.208-33.277 94.548h101.723c33.397 0 59.397 27.746 59.553 58.098.084 17.938-7.546 37.249-19.439 49.197l-.11.11c9.836 23.337 8.237 56.037-9.308 79.469 8.681 25.895-.069 57.704-16.382 74.757 4.298 17.598 2.244 32.575-6.148 44.632C440.202 511.587 389.616 512 346.839 512l-2.845-.001c-48.287-.017-87.806-17.598-119.56-31.725-15.957-7.099-36.821-15.887-52.651-16.178-6.54-.12-11.783-5.457-11.783-11.998v-213.77c0-3.2 1.282-6.271 3.558-8.521 39.614-39.144 56.648-80.587 89.117-113.111 14.804-14.832 20.188-37.236 25.393-58.902C282.515 39.293 291.817 0 312 0c24 0 72 8 72 81.452z"] }; +var faThumbtack = { prefix: 'fas', iconName: 'thumbtack', icon: [384, 512, [], "f08d", "M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z"] }; +var faTicketAlt = { prefix: 'fas', iconName: 'ticket-alt', icon: [576, 512, [], "f3ff", "M128 160h320v192H128V160zm400 96c0 26.51 21.49 48 48 48v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c26.51 0 48-21.49 48-48s-21.49-48-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v96c-26.51 0-48 21.49-48 48zm-48-104c0-13.255-10.745-24-24-24H120c-13.255 0-24 10.745-24 24v208c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V152z"] }; +var faTimes = { prefix: 'fas', iconName: 'times', icon: [352, 512, [], "f00d", "M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"] }; +var faTimesCircle = { prefix: 'fas', iconName: 'times-circle', icon: [512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z"] }; +var faTint = { prefix: 'fas', iconName: 'tint', icon: [384, 512, [], "f043", "M192 512c-98.435 0-178.087-79.652-178.087-178.087 0-111.196 101.194-154.065 148.522-311.825 9.104-30.116 51.099-28.778 59.13 0 47.546 158.486 148.522 200.069 148.522 311.825C370.087 432.348 290.435 512 192 512zm-42.522-171.826c-1.509-5.533-9.447-5.532-10.956 0-9.223 29.425-27.913 37.645-27.913 58.435C110.609 417.13 125.478 432 144 432s33.391-14.87 33.391-33.391c0-20.839-18.673-28.956-27.913-58.435z"] }; +var faToggleOff = { prefix: 'fas', iconName: 'toggle-off', icon: [576, 512, [], "f204", "M384 64H192C85.961 64 0 149.961 0 256s85.961 192 192 192h192c106.039 0 192-85.961 192-192S490.039 64 384 64zM64 256c0-70.741 57.249-128 128-128 70.741 0 128 57.249 128 128 0 70.741-57.249 128-128 128-70.741 0-128-57.249-128-128zm320 128h-48.905c65.217-72.858 65.236-183.12 0-256H384c70.741 0 128 57.249 128 128 0 70.74-57.249 128-128 128z"] }; +var faToggleOn = { prefix: 'fas', iconName: 'toggle-on', icon: [576, 512, [], "f205", "M576 256c0 106.039-85.961 192-192 192H192C85.961 448 0 362.039 0 256S85.961 64 192 64h192c106.039 0 192 85.961 192 192zM384 128c-70.741 0-128 57.249-128 128 0 70.741 57.249 128 128 128 70.741 0 128-57.249 128-128 0-70.741-57.249-128-128-128"] }; +var faToolbox = { prefix: 'fas', iconName: 'toolbox', icon: [512, 512, [], "f552", "M502.63 214.63l-45.25-45.25c-6-6-14.14-9.37-22.63-9.37H384V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v80H77.25c-8.49 0-16.62 3.37-22.63 9.37L9.37 214.63c-6 6-9.37 14.14-9.37 22.63V320h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-82.75c0-8.48-3.37-16.62-9.37-22.62zM320 160H192V96h128v64zm64 208c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H192v16c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H0v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96H384v16z"] }; +var faTrademark = { prefix: 'fas', iconName: 'trademark', icon: [640, 512, [], "f25c", "M97.119 163.133H12c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h248.559c6.627 0 12 5.373 12 12v43.133c0 6.627-5.373 12-12 12H175.44V404c0 6.627-5.373 12-12 12h-54.322c-6.627 0-12-5.373-12-12V163.133zM329.825 96h65.425a12 12 0 0 1 11.346 8.093l43.759 127.068c7.161 20.588 16.111 52.812 16.111 52.812h.896s8.95-32.224 16.111-52.812l43.758-127.068A12 12 0 0 1 538.577 96h65.41a12 12 0 0 1 11.961 11.03l24.012 296c.567 6.987-4.951 12.97-11.961 12.97h-54.101a12 12 0 0 1-11.972-11.182l-9.082-132.93c-1.79-24.168 0-53.706 0-53.706h-.896s-10.741 33.566-17.902 53.706l-30.7 84.731a12 12 0 0 1-11.282 7.912h-50.302a12 12 0 0 1-11.282-7.912l-30.7-84.731c-7.161-20.14-17.903-53.706-17.903-53.706h-.895s1.79 29.538 0 53.706l-9.082 132.93c-.428 6.295-5.66 11.182-11.97 11.182H305.4c-7.017 0-12.536-5.994-11.959-12.987l24.425-296A11.999 11.999 0 0 1 329.825 96z"] }; +var faTrain = { prefix: 'fas', iconName: 'train', icon: [448, 512, [], "f238", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zm-48 136V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24zm-176 64c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56z"] }; +var faTransgender = { prefix: 'fas', iconName: 'transgender', icon: [384, 512, [], "f224", "M372 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C198.5 104.1 172.2 96 144 96 64.5 96 0 160.5 0 240c0 68.5 47.9 125.9 112 140.4V408H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM144 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faTransgenderAlt = { prefix: 'fas', iconName: 'transgender-alt', icon: [480, 512, [], "f225", "M468 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C294.5 104.1 268.2 96 240 96c-28.2 0-54.5 8.1-76.7 22.1l-16.5-16.5 19.8-19.8c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0l-19.8 19.8-19-19 16.9-16.9C107.1 12.9 101.7 0 91 0H12C5.4 0 0 5.4 0 12v79c0 10.7 12.9 16 20.5 8.5l16.9-16.9 19 19-19.8 19.8c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l19.8-19.8 16.5 16.5C104.1 185.5 96 211.8 96 240c0 68.5 47.9 125.9 112 140.4V408h-36c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM240 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faTrash = { prefix: 'fas', iconName: 'trash', icon: [448, 512, [], "f1f8", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm415.2 56.7L394.8 467c-1.6 25.3-22.6 45-47.9 45H101.1c-25.3 0-46.3-19.7-47.9-45L32.8 140.7c-.4-6.9 5.1-12.7 12-12.7h358.5c6.8 0 12.3 5.8 11.9 12.7z"] }; +var faTrashAlt = { prefix: 'fas', iconName: 'trash-alt', icon: [448, 512, [], "f2ed", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm416 56v324c0 26.5-21.5 48-48 48H80c-26.5 0-48-21.5-48-48V140c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12zm-272 68c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208z"] }; +var faTree = { prefix: 'fas', iconName: 'tree', icon: [384, 512, [], "f1bb", "M377.33 375.429L293.906 288H328c21.017 0 31.872-25.207 17.448-40.479L262.79 160H296c20.878 0 31.851-24.969 17.587-40.331l-104-112.003c-9.485-10.214-25.676-10.229-35.174 0l-104 112.003C56.206 134.969 67.037 160 88 160h33.21l-82.659 87.521C24.121 262.801 34.993 288 56 288h34.094L6.665 375.429C-7.869 390.655 2.925 416 24.025 416H144c0 32.781-11.188 49.26-33.995 67.506C98.225 492.93 104.914 512 120 512h144c15.086 0 21.776-19.069 9.995-28.494-19.768-15.814-33.992-31.665-33.995-67.496V416h119.97c21.05 0 31.929-25.309 17.36-40.571z"] }; +var faTrophy = { prefix: 'fas', iconName: 'trophy', icon: [576, 512, [], "f091", "M552 64H448V24c0-13.3-10.7-24-24-24H152c-13.3 0-24 10.7-24 24v40H24C10.7 64 0 74.7 0 88v56c0 35.7 22.5 72.4 61.9 100.7 31.5 22.7 69.8 37.1 110 41.7C203.3 338.5 240 360 240 360v72h-48c-35.3 0-64 20.7-64 56v12c0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12v-12c0-35.3-28.7-56-64-56h-48v-72s36.7-21.5 68.1-73.6c40.3-4.6 78.6-19 110-41.7 39.3-28.3 61.9-65 61.9-100.7V88c0-13.3-10.7-24-24-24zM99.3 192.8C74.9 175.2 64 155.6 64 144v-16h64.2c1 32.6 5.8 61.2 12.8 86.2-15.1-5.2-29.2-12.4-41.7-21.4zM512 144c0 16.1-17.7 36.1-35.3 48.8-12.5 9-26.7 16.2-41.8 21.4 7-25 11.8-53.6 12.8-86.2H512v16z"] }; +var faTruck = { prefix: 'fas', iconName: 'truck', icon: [640, 512, [], "f0d1", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"] }; +var faTruckLoading = { prefix: 'fas', iconName: 'truck-loading', icon: [640, 512, [], "f4de", "M50.2 375.6c2.3 8.5 11.1 13.6 19.6 11.3l216.4-58c8.5-2.3 13.6-11.1 11.3-19.6l-49.7-185.5c-2.3-8.5-11.1-13.6-19.6-11.3L151 133.3l24.8 92.7-61.8 16.5-24.8-92.7-77.3 20.7C3.4 172.8-1.7 181.6.6 190.1l49.6 185.5zM384 0c-17.7 0-32 14.3-32 32v323.6L5.9 450c-4.3 1.2-6.8 5.6-5.6 9.8l12.6 46.3c1.2 4.3 5.6 6.8 9.8 5.6l393.7-107.4C418.8 464.1 467.6 512 528 512c61.9 0 112-50.1 112-112V0H384zm144 448c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; +var faTruckMoving = { prefix: 'fas', iconName: 'truck-moving', icon: [640, 512, [], "f4df", "M621.3 237.3l-58.5-58.5c-12-12-28.3-18.7-45.3-18.7H480V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v336c0 44.2 35.8 80 80 80 26.3 0 49.4-12.9 64-32.4 14.6 19.6 37.7 32.4 64 32.4 44.2 0 80-35.8 80-80 0-5.5-.6-10.8-1.6-16h163.2c-1.1 5.2-1.6 10.5-1.6 16 0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H624c8.8 0 16-7.2 16-16v-85.5c0-17-6.7-33.2-18.7-45.2zM80 432c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm128 0c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm272-224h37.5c4.3 0 8.3 1.7 11.3 4.7l43.3 43.3H480v-48zm48 224c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32z"] }; +var faTshirt = { prefix: 'fas', iconName: 'tshirt', icon: [640, 512, [], "f553", "M631.2 96.5L436.5 0C416.4 27.8 371.9 47.2 320 47.2S223.6 27.8 203.5 0L8.8 96.5c-7.9 4-11.1 13.6-7.2 21.5l57.2 114.5c4 7.9 13.6 11.1 21.5 7.2l56.6-27.7c10.6-5.2 23 2.5 23 14.4V480c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V226.3c0-11.8 12.4-19.6 23-14.4l56.6 27.7c7.9 4 17.5.8 21.5-7.2L638.3 118c4-7.9.8-17.6-7.1-21.5z"] }; +var faTty = { prefix: 'fas', iconName: 'tty', icon: [512, 512, [], "f1e4", "M5.37 103.822c138.532-138.532 362.936-138.326 501.262 0 6.078 6.078 7.074 15.496 2.583 22.681l-43.214 69.138a18.332 18.332 0 0 1-22.356 7.305l-86.422-34.569a18.335 18.335 0 0 1-11.434-18.846L351.741 90c-62.145-22.454-130.636-21.986-191.483 0l5.953 59.532a18.331 18.331 0 0 1-11.434 18.846l-86.423 34.568a18.334 18.334 0 0 1-22.356-7.305L2.787 126.502a18.333 18.333 0 0 1 2.583-22.68zM96 308v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H92c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zM96 500v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H140c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"] }; +var faTv = { prefix: 'fas', iconName: 'tv', icon: [640, 512, [], "f26c", "M592 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h245.1v32h-160c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32-14.3 32-32s-14.3-32-32-32h-160v-32H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h512v288z"] }; +var faUmbrella = { prefix: 'fas', iconName: 'umbrella', icon: [576, 512, [], "f0e9", "M557.011 267.631c-51.432-45.217-107.572-43.698-158.567 30.731-5.298 7.861-14.906 7.165-19.736 0-2.483-3.624-32.218-60.808-90.708-60.808-45.766 0-70.542 31.378-90.709 60.808-4.829 7.165-14.436 7.861-19.734 0-50.904-74.285-106.613-76.406-158.567-30.731-10.21 8.264-20.912-1.109-18.696-9.481C32.146 134.573 158.516 64.612 288.001 64.612c128.793 0 256.546 69.961 287.706 193.538 2.206 8.322-8.426 17.793-18.696 9.481zM256 261.001V416c0 17.645-14.355 32-32 32s-32-14.355-32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 52.935 43.065 96 96 96s96-43.065 96-96V261.288c-21.836-10.806-45.425-9.737-64-.287zm64-211.007V32c0-17.673-14.327-32-32-32s-32 14.327-32 32v17.987a372.105 372.105 0 0 1 64 .007z"] }; +var faUnderline = { prefix: 'fas', iconName: 'underline', icon: [448, 512, [], "f0cd", "M224.264 388.24c-91.669 0-156.603-51.165-156.603-151.392V64H39.37c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h137.39c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.813v172.848c0 53.699 28.314 79.444 76.317 79.444 46.966 0 75.796-25.434 75.796-79.965V64h-28.291c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h136.868c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.291v172.848c0 99.405-64.881 151.392-156.082 151.392zM16 448h416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16z"] }; +var faUndo = { prefix: 'fas', iconName: 'undo', icon: [512, 512, [], "f0e2", "M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z"] }; +var faUndoAlt = { prefix: 'fas', iconName: 'undo-alt', icon: [512, 512, [], "f2ea", "M255.545 8c-66.269.119-126.438 26.233-170.86 68.685L48.971 40.971C33.851 25.851 8 36.559 8 57.941V192c0 13.255 10.745 24 24 24h134.059c21.382 0 32.09-25.851 16.971-40.971l-41.75-41.75c30.864-28.899 70.801-44.907 113.23-45.273 92.398-.798 170.283 73.977 169.484 169.442C423.236 348.009 349.816 424 256 424c-41.127 0-79.997-14.678-110.63-41.556-4.743-4.161-11.906-3.908-16.368.553L89.34 422.659c-4.872 4.872-4.631 12.815.482 17.433C133.798 479.813 192.074 504 256 504c136.966 0 247.999-111.033 248-247.998C504.001 119.193 392.354 7.755 255.545 8z"] }; +var faUniversalAccess = { prefix: 'fas', iconName: 'universal-access', icon: [512, 512, [], "f29a", "M256 48c114.953 0 208 93.029 208 208 0 114.953-93.029 208-208 208-114.953 0-208-93.029-208-208 0-114.953 93.029-208 208-208m0-40C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 56C149.961 64 64 149.961 64 256s85.961 192 192 192 192-85.961 192-192S362.039 64 256 64zm0 44c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36zm117.741 98.023c-28.712 6.779-55.511 12.748-82.14 15.807.851 101.023 12.306 123.052 25.037 155.621 3.617 9.26-.957 19.698-10.217 23.315-9.261 3.617-19.699-.957-23.316-10.217-8.705-22.308-17.086-40.636-22.261-78.549h-9.686c-5.167 37.851-13.534 56.208-22.262 78.549-3.615 9.255-14.05 13.836-23.315 10.217-9.26-3.617-13.834-14.056-10.217-23.315 12.713-32.541 24.185-54.541 25.037-155.621-26.629-3.058-53.428-9.027-82.141-15.807-8.6-2.031-13.926-10.648-11.895-19.249s10.647-13.926 19.249-11.895c96.686 22.829 124.283 22.783 220.775 0 8.599-2.03 17.218 3.294 19.249 11.895 2.029 8.601-3.297 17.219-11.897 19.249z"] }; +var faUniversity = { prefix: 'fas', iconName: 'university', icon: [512, 512, [], "f19c", "M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z"] }; +var faUnlink = { prefix: 'fas', iconName: 'unlink', icon: [512, 512, [], "f127", "M304.083 405.907c4.686 4.686 4.686 12.284 0 16.971l-44.674 44.674c-59.263 59.262-155.693 59.266-214.961 0-59.264-59.265-59.264-155.696 0-214.96l44.675-44.675c4.686-4.686 12.284-4.686 16.971 0l39.598 39.598c4.686 4.686 4.686 12.284 0 16.971l-44.675 44.674c-28.072 28.073-28.072 73.75 0 101.823 28.072 28.072 73.75 28.073 101.824 0l44.674-44.674c4.686-4.686 12.284-4.686 16.971 0l39.597 39.598zm-56.568-260.216c4.686 4.686 12.284 4.686 16.971 0l44.674-44.674c28.072-28.075 73.75-28.073 101.824 0 28.072 28.073 28.072 73.75 0 101.823l-44.675 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.598 39.598c4.686 4.686 12.284 4.686 16.971 0l44.675-44.675c59.265-59.265 59.265-155.695 0-214.96-59.266-59.264-155.695-59.264-214.961 0l-44.674 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.597 39.598zm234.828 359.28l22.627-22.627c9.373-9.373 9.373-24.569 0-33.941L63.598 7.029c-9.373-9.373-24.569-9.373-33.941 0L7.029 29.657c-9.373 9.373-9.373 24.569 0 33.941l441.373 441.373c9.373 9.372 24.569 9.372 33.941 0z"] }; +var faUnlock = { prefix: 'fas', iconName: 'unlock', icon: [448, 512, [], "f09c", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z"] }; +var faUnlockAlt = { prefix: 'fas', iconName: 'unlock-alt', icon: [448, 512, [], "f13e", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zM264 408c0 22.1-17.9 40-40 40s-40-17.9-40-40v-48c0-22.1 17.9-40 40-40s40 17.9 40 40v48z"] }; +var faUpload = { prefix: 'fas', iconName: 'upload', icon: [512, 512, [], "f093", "M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"] }; +var faUser = { prefix: 'fas', iconName: 'user', icon: [448, 512, [], "f007", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; +var faUserAlt = { prefix: 'fas', iconName: 'user-alt', icon: [512, 512, [], "f406", "M256 288c79.5 0 144-64.5 144-144S335.5 0 256 0 112 64.5 112 144s64.5 144 144 144zm128 32h-55.1c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16H128C57.3 320 0 377.3 0 448v16c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-16c0-70.7-57.3-128-128-128z"] }; +var faUserAltSlash = { prefix: 'fas', iconName: 'user-alt-slash', icon: [640, 512, [], "f4fa", "M633.8 458.1L389.6 269.3C433.8 244.7 464 198.1 464 144 464 64.5 399.5 0 320 0c-67.1 0-123 46.1-139 108.2L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM198.4 320C124.2 320 64 380.2 64 454.4v9.6c0 26.5 21.5 48 48 48h382.2L245.8 320h-47.4z"] }; +var faUserAstronaut = { prefix: 'fas', iconName: 'user-astronaut', icon: [448, 512, [], "f4fb", "M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z"] }; +var faUserCheck = { prefix: 'fas', iconName: 'user-check', icon: [640, 512, [], "f4fc", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4zm323-128.4l-27.8-28.1c-4.6-4.7-12.1-4.7-16.8-.1l-104.8 104-45.5-45.8c-4.6-4.7-12.1-4.7-16.8-.1l-28.1 27.9c-4.7 4.6-4.7 12.1-.1 16.8l81.7 82.3c4.6 4.7 12.1 4.7 16.8.1l141.3-140.2c4.6-4.7 4.7-12.2.1-16.8z"] }; +var faUserCircle = { prefix: 'fas', iconName: 'user-circle', icon: [496, 512, [], "f2bd", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 96c48.6 0 88 39.4 88 88s-39.4 88-88 88-88-39.4-88-88 39.4-88 88-88zm0 344c-58.7 0-111.3-26.6-146.5-68.2 18.8-35.4 55.6-59.8 98.5-59.8 2.4 0 4.8.4 7.1 1.1 13 4.2 26.6 6.9 40.9 6.9 14.3 0 28-2.7 40.9-6.9 2.3-.7 4.7-1.1 7.1-1.1 42.9 0 79.7 24.4 98.5 59.8C359.3 421.4 306.7 448 248 448z"] }; +var faUserClock = { prefix: 'fas', iconName: 'user-clock', icon: [640, 512, [], "f4fd", "M496 224c-79.6 0-144 64.4-144 144s64.4 144 144 144 144-64.4 144-144-64.4-144-144-144zm64 150.3c0 5.3-4.4 9.7-9.7 9.7h-60.6c-5.3 0-9.7-4.4-9.7-9.7v-76.6c0-5.3 4.4-9.7 9.7-9.7h12.6c5.3 0 9.7 4.4 9.7 9.7V352h38.3c5.3 0 9.7 4.4 9.7 9.7v12.6zM320 368c0-27.8 6.7-54.1 18.2-77.5-8-1.5-16.2-2.5-24.6-2.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h347.1c-45.3-31.9-75.1-84.5-75.1-144zm-96-112c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128z"] }; +var faUserCog = { prefix: 'fas', iconName: 'user-cog', icon: [640, 512, [], "f4fe", "M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z"] }; +var faUserEdit = { prefix: 'fas', iconName: 'user-edit', icon: [640, 512, [], "f4ff", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h274.9c-2.4-6.8-3.4-14-2.6-21.3l6.8-60.9 1.2-11.1 7.9-7.9 77.3-77.3c-24.5-27.7-60-45.5-99.9-45.5zm45.3 145.3l-6.8 61c-1.1 10.2 7.5 18.8 17.6 17.6l60.9-6.8 137.9-137.9-71.7-71.7-137.9 137.8zM633 268.9L595.1 231c-9.3-9.3-24.5-9.3-33.8 0l-37.8 37.8-4.1 4.1 71.8 71.7 41.8-41.8c9.3-9.4 9.3-24.5 0-33.9z"] }; +var faUserFriends = { prefix: 'fas', iconName: 'user-friends', icon: [640, 512, [], "f500", "M192 256c61.9 0 112-50.1 112-112S253.9 32 192 32 80 82.1 80 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C51.6 288 0 339.6 0 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zM480 256c53 0 96-43 96-96s-43-96-96-96-96 43-96 96 43 96 96 96zm48 32h-3.8c-13.9 4.8-28.6 8-44.2 8s-30.3-3.2-44.2-8H432c-20.4 0-39.2 5.9-55.7 15.4 24.4 26.3 39.7 61.2 39.7 99.8v38.4c0 2.2-.5 4.3-.6 6.4H592c26.5 0 48-21.5 48-48 0-61.9-50.1-112-112-112z"] }; +var faUserGraduate = { prefix: 'fas', iconName: 'user-graduate', icon: [448, 512, [], "f501", "M319.4 320.6L224 416l-95.4-95.4C57.1 323.7 0 382.2 0 454.4v9.6c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-9.6c0-72.2-57.1-130.7-128.6-133.8zM13.6 79.8l6.4 1.5v58.4c-7 4.2-12 11.5-12 20.3 0 8.4 4.6 15.4 11.1 19.7L3.5 242c-1.7 6.9 2.1 14 7.6 14h41.8c5.5 0 9.3-7.1 7.6-14l-15.6-62.3C51.4 175.4 56 168.4 56 160c0-8.8-5-16.1-12-20.3V87.1l66 15.9c-8.6 17.2-14 36.4-14 57 0 70.7 57.3 128 128 128s128-57.3 128-128c0-20.6-5.3-39.8-14-57l96.3-23.2c18.2-4.4 18.2-27.1 0-31.5l-190.4-46c-13-3.1-26.7-3.1-39.7 0L13.6 48.2c-18.1 4.4-18.1 27.2 0 31.6z"] }; +var faUserLock = { prefix: 'fas', iconName: 'user-lock', icon: [640, 512, [], "f502", "M320 320c0-11.1 3.1-21.4 8.1-30.5-4.8-.5-9.5-1.5-14.5-1.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h280.9c-5.5-9.5-8.9-20.3-8.9-32V320zm-96-64c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm384 32h-32v-48c0-44.2-35.8-80-80-80s-80 35.8-80 80v48h-32c-17.7 0-32 14.3-32 32v160c0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32V320c0-17.7-14.3-32-32-32zm-80 0h-64v-48c0-17.6 14.4-32 32-32s32 14.4 32 32v48z"] }; +var faUserMd = { prefix: 'fas', iconName: 'user-md', icon: [448, 512, [], "f0f0", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zM104 424c0 13.3 10.7 24 24 24s24-10.7 24-24-10.7-24-24-24-24 10.7-24 24zm216-135.4v49c36.5 7.4 64 39.8 64 78.4v41.7c0 7.6-5.4 14.2-12.9 15.7l-32.2 6.4c-4.3.9-8.5-1.9-9.4-6.3l-3.1-15.7c-.9-4.3 1.9-8.6 6.3-9.4l19.3-3.9V416c0-62.8-96-65.1-96 1.9v26.7l19.3 3.9c4.3.9 7.1 5.1 6.3 9.4l-3.1 15.7c-.9 4.3-5.1 7.1-9.4 6.3l-31.2-4.2c-7.9-1.1-13.8-7.8-13.8-15.9V416c0-38.6 27.5-70.9 64-78.4v-45.2c-2.2.7-4.4 1.1-6.6 1.9-18 6.3-37.3 9.8-57.4 9.8s-39.4-3.5-57.4-9.8c-7.4-2.6-14.9-4.2-22.6-5.2v81.6c23.1 6.9 40 28.1 40 53.4 0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.3 16.9-46.5 40-53.4v-80.4C48.5 301 0 355.8 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-72-56.8-130.3-128-133.8z"] }; +var faUserMinus = { prefix: 'fas', iconName: 'user-minus', icon: [640, 512, [], "f503", "M624 208H432c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; +var faUserNinja = { prefix: 'fas', iconName: 'user-ninja', icon: [448, 512, [], "f504", "M325.4 289.2L224 390.6 122.6 289.2C54 295.3 0 352.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-70.2-54-127.1-122.6-133.2zM32 192c27.3 0 51.8-11.5 69.2-29.7 15.1 53.9 64 93.7 122.8 93.7 70.7 0 128-57.3 128-128S294.7 0 224 0c-50.4 0-93.6 29.4-114.5 71.8C92.1 47.8 64 32 32 32c0 33.4 17.1 62.8 43.1 80-26 17.2-43.1 46.6-43.1 80zm144-96h96c17.7 0 32 14.3 32 32H144c0-17.7 14.3-32 32-32z"] }; +var faUserPlus = { prefix: 'fas', iconName: 'user-plus', icon: [640, 512, [], "f234", "M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; +var faUserSecret = { prefix: 'fas', iconName: 'user-secret', icon: [448, 512, [], "f21b", "M383.9 308.3l23.9-62.6c4-10.5-3.7-21.7-15-21.7h-58.5c11-18.9 17.8-40.6 17.8-64v-.3c39.2-7.8 64-19.1 64-31.7 0-13.3-27.3-25.1-70.1-33-9.2-32.8-27-65.8-40.6-82.8-9.5-11.9-25.9-15.6-39.5-8.8l-27.6 13.8c-9 4.5-19.6 4.5-28.6 0L182.1 3.4c-13.6-6.8-30-3.1-39.5 8.8-13.5 17-31.4 50-40.6 82.8-42.7 7.9-70 19.7-70 33 0 12.6 24.8 23.9 64 31.7v.3c0 23.4 6.8 45.1 17.8 64H56.3c-11.5 0-19.2 11.7-14.7 22.3l25.8 60.2C27.3 329.8 0 372.7 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-48.4-25.8-90.4-64.1-114.1zM176 480l-41.6-192 49.6 32 24 40-32 120zm96 0l-32-120 24-40 49.6-32L272 480zm41.7-298.5c-3.9 11.9-7 24.6-16.5 33.4-10.1 9.3-48 22.4-64-25-2.8-8.4-15.4-8.4-18.3 0-17 50.2-56 32.4-64 25-9.5-8.8-12.7-21.5-16.5-33.4-.8-2.5-6.3-5.7-6.3-5.8v-10.8c28.3 3.6 61 5.8 96 5.8s67.7-2.1 96-5.8v10.8c-.1.1-5.6 3.2-6.4 5.8z"] }; +var faUserShield = { prefix: 'fas', iconName: 'user-shield', icon: [640, 512, [], "f505", "M622.3 271.1l-115.2-45c-4.1-1.6-12.6-3.7-22.2 0l-115.2 45c-10.7 4.2-17.7 14-17.7 24.9 0 111.6 68.7 188.8 132.9 213.9 9.6 3.7 18 1.6 22.2 0C558.4 489.9 640 420.5 640 296c0-10.9-7-20.7-17.7-24.9zM496 462.4V273.3l95.5 37.3c-5.6 87.1-60.9 135.4-95.5 151.8zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm96 40c0-2.5.8-4.8 1.1-7.2-2.5-.1-4.9-.8-7.5-.8h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c6.8 0 13.3-1.5 19.2-4-54-42.9-99.2-116.7-99.2-212z"] }; +var faUserSlash = { prefix: 'fas', iconName: 'user-slash', icon: [640, 512, [], "f506", "M633.8 458.1L362.3 248.3C412.1 230.7 448 183.8 448 128 448 57.3 390.7 0 320 0c-67.1 0-121.5 51.8-126.9 117.4L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM96 422.4V464c0 26.5 21.5 48 48 48h350.2L207.4 290.3C144.2 301.3 96 356 96 422.4z"] }; +var faUserTag = { prefix: 'fas', iconName: 'user-tag', icon: [640, 512, [], "f507", "M630.6 364.9l-90.3-90.2c-12-12-28.3-18.7-45.3-18.7h-79.3c-17.7 0-32 14.3-32 32v79.2c0 17 6.7 33.2 18.7 45.2l90.3 90.2c12.5 12.5 32.8 12.5 45.3 0l92.5-92.5c12.6-12.5 12.6-32.7.1-45.2zm-182.8-21c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24c0 13.2-10.7 24-24 24zm-223.8-88c70.7 0 128-57.3 128-128C352 57.3 294.7 0 224 0S96 57.3 96 128c0 70.6 57.3 127.9 128 127.9zm127.8 111.2V294c-12.2-3.6-24.9-6.2-38.2-6.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 287.9 0 348.1 0 422.3v41.6c0 26.5 21.5 48 48 48h352c15.5 0 29.1-7.5 37.9-18.9l-58-58c-18.1-18.1-28.1-42.2-28.1-67.9z"] }; +var faUserTie = { prefix: 'fas', iconName: 'user-tie', icon: [448, 512, [], "f508", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm95.8 32.6L272 480l-32-136 32-56h-96l32 56-32 136-47.8-191.4C56.9 292 0 350.3 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-72.1-56.9-130.4-128.2-133.8z"] }; +var faUserTimes = { prefix: 'fas', iconName: 'user-times', icon: [640, 512, [], "f235", "M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; +var faUsers = { prefix: 'fas', iconName: 'users', icon: [640, 512, [], "f0c0", "M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"] }; +var faUsersCog = { prefix: 'fas', iconName: 'users-cog', icon: [640, 512, [], "f509", "M610.5 341.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 368.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm224 32c1.9 0 3.7-.5 5.6-.6 8.3-21.7 20.5-42.1 36.3-59.2 7.4-8 17.9-12.6 28.9-12.6 6.9 0 13.7 1.8 19.6 5.3l7.9 4.6c.8-.5 1.6-.9 2.4-1.4 7-14.6 11.2-30.8 11.2-48 0-61.9-50.1-112-112-112S208 82.1 208 144c0 61.9 50.1 112 112 112zm105.2 194.5c-2.3-1.2-4.6-2.6-6.8-3.9-8.2 4.8-15.3 9.8-27.5 9.8-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-10.7-34.5 24.9-49.7 25.8-50.3-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-3.8-2.2-7-5-9.8-8.1-3.3.2-6.5.6-9.8.6-24.6 0-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h255.4c-3.7-6-6.2-12.8-6.2-20.3v-9.2zM173.1 274.6C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"] }; +var faUtensilSpoon = { prefix: 'fas', iconName: 'utensil-spoon', icon: [512, 512, [], "f2e5", "M480.1 31.9c-55-55.1-164.9-34.5-227.8 28.5-49.3 49.3-55.1 110-28.8 160.4L9 413.2c-11.6 10.5-12.1 28.5-1 39.5L59.3 504c11 11 29.1 10.5 39.5-1.1l192.4-214.4c50.4 26.3 111.1 20.5 160.4-28.8 63-62.9 83.6-172.8 28.5-227.8z"] }; +var faUtensils = { prefix: 'fas', iconName: 'utensils', icon: [416, 512, [], "f2e7", "M207.9 15.2c.8 4.7 16.1 94.5 16.1 128.8 0 52.3-27.8 89.6-68.9 104.6L168 486.7c.7 13.7-10.2 25.3-24 25.3H80c-13.7 0-24.7-11.5-24-25.3l12.9-238.1C27.7 233.6 0 196.2 0 144 0 109.6 15.3 19.9 16.1 15.2 19.3-5.1 61.4-5.4 64 16.3v141.2c1.3 3.4 15.1 3.2 16 0 1.4-25.3 7.9-139.2 8-141.8 3.3-20.8 44.7-20.8 47.9 0 .2 2.7 6.6 116.5 8 141.8.9 3.2 14.8 3.4 16 0V16.3c2.6-21.6 44.8-21.4 48-1.1zm119.2 285.7l-15 185.1c-1.2 14 9.9 26 23.9 26h56c13.3 0 24-10.7 24-24V24c0-13.2-10.7-24-24-24-82.5 0-221.4 178.5-64.9 300.9z"] }; +var faVenus = { prefix: 'fas', iconName: 'venus', icon: [288, 512, [], "f221", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z"] }; +var faVenusDouble = { prefix: 'fas', iconName: 'venus-double', icon: [512, 512, [], "f226", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80zm336 140.4V368h36c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-36v36c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-36h-36c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h36v-51.6c-21.2-4.8-40.6-14.3-57.2-27.3 14-16.7 25-36 32.1-57.1 14.5 14.8 34.7 24 57.1 24 44.1 0 80-35.9 80-80s-35.9-80-80-80c-22.3 0-42.6 9.2-57.1 24-7.1-21.1-18-40.4-32.1-57.1C303.4 43.6 334.3 32 368 32c79.5 0 144 64.5 144 144 0 68.5-47.9 125.9-112 140.4z"] }; +var faVenusMars = { prefix: 'fas', iconName: 'venus-mars', icon: [576, 512, [], "f228", "M564 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C422.5 72.1 396.2 64 368 64c-33.7 0-64.6 11.6-89.2 30.9 14 16.7 25 36 32.1 57.1 14.5-14.8 34.7-24 57.1-24 44.1 0 80 35.9 80 80s-35.9 80-80 80c-22.3 0-42.6-9.2-57.1-24-7.1 21.1-18 40.4-32.1 57.1 24.5 19.4 55.5 30.9 89.2 30.9 79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 64C64.5 64 0 128.5 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.6 112-71.9 112-140.4 0-79.5-64.5-144-144-144zm0 224c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faVial = { prefix: 'fas', iconName: 'vial', icon: [480, 512, [], "f492", "M477.7 186.1L309.5 18.3c-3.1-3.1-8.2-3.1-11.3 0l-34 33.9c-3.1 3.1-3.1 8.2 0 11.3l11.2 11.1L33 316.5c-38.8 38.7-45.1 102-9.4 143.5 20.6 24 49.5 36 78.4 35.9 26.4 0 52.8-10 72.9-30.1l246.3-245.7 11.2 11.1c3.1 3.1 8.2 3.1 11.3 0l34-33.9c3.1-3 3.1-8.1 0-11.2zM318 256H161l148-147.7 78.5 78.3L318 256z"] }; +var faVials = { prefix: 'fas', iconName: 'vials', icon: [640, 512, [], "f493", "M72 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H72c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64zm480 384H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM360 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64z"] }; +var faVideo = { prefix: 'fas', iconName: 'video', icon: [576, 512, [], "f03d", "M336.2 64H47.8C21.4 64 0 85.4 0 111.8v288.4C0 426.6 21.4 448 47.8 448h288.4c26.4 0 47.8-21.4 47.8-47.8V111.8c0-26.4-21.4-47.8-47.8-47.8zm189.4 37.7L416 177.3v157.4l109.6 75.5c21.2 14.6 50.4-.3 50.4-25.8V127.5c0-25.4-29.1-40.4-50.4-25.8z"] }; +var faVideoSlash = { prefix: 'fas', iconName: 'video-slash', icon: [640, 512, [], "f4e2", "M633.8 458.1l-55-42.5c15.4-1.4 29.2-13.7 29.2-31.1v-257c0-25.5-29.1-40.4-50.4-25.8L448 177.3v137.2l-32-24.7v-178c0-26.4-21.4-47.8-47.8-47.8H123.9L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4L42.7 82 416 370.6l178.5 138c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.5-6.9 4.2-17-2.8-22.4zM32 400.2c0 26.4 21.4 47.8 47.8 47.8h288.4c11.2 0 21.4-4 29.6-10.5L32 154.7v245.5z"] }; +var faVolleyballBall = { prefix: 'fas', iconName: 'volleyball-ball', icon: [495, 512, [], "f45f", "M223.3 243.4c-.9-37-8.6-72.8-22.7-105.7-90.8 42.4-157.5 122.4-180.3 216.8 13.4 30.8 32.9 58.3 56.9 81.1 22.7-79.2 74.2-147.8 146.1-192.2zM186.4 109c-15-26.4-34.5-50.1-57.4-70.7C38 88.1-15.8 191.2 4 300.5c33.4-83.1 98.4-152 182.4-191.5zM374 274.1c8.6-99.8-27.3-197.5-97.5-264.4-14.7-1.7-51.6-5.5-98.9 8.5 57.3 59.3 91 138.2 93.5 222.7 32.5 17.7 67.3 29 102.9 33.2zm-124.7 9.5c-31.6 19.3-58.7 43.9-80.2 72.6 82 57.3 184.5 75.1 277.5 47.8 19.7-26.4 34.2-56.8 42.2-89.9-26.6 6.6-53.7 10.4-80.9 10.4-54.6-.1-108.9-14.1-158.6-40.9zM151 383.3c-15.2 26-25.7 54.4-32.1 84.2 37.6 23 81.7 36.5 129.1 36.5 61 0 116.7-22.1 159.9-58.6C295 461.5 204.6 420.6 151 383.3zM331.3 22.7c55.3 70.4 82.5 161.2 74.6 253.6 30.3.2 60.5-4.8 89.7-14.2 0-2 .3-4 .3-6 0-107.8-68.7-199.1-164.6-233.4z"] }; +var faVolumeDown = { prefix: 'fas', iconName: 'volume-down', icon: [384, 512, [], "f027", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zM384 256c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z"] }; +var faVolumeOff = { prefix: 'fas', iconName: 'volume-off', icon: [256, 512, [], "f026", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971z"] }; +var faVolumeUp = { prefix: 'fas', iconName: 'volume-up', icon: [576, 512, [], "f028", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zm182.056-77.876C422.982.92 403.283 5.668 394.061 20.745c-9.221 15.077-4.473 34.774 10.604 43.995C468.967 104.063 512 174.983 512 256c0 73.431-36.077 142.292-96.507 184.206-14.522 10.072-18.129 30.01-8.057 44.532 10.076 14.528 30.016 18.126 44.531 8.057C529.633 438.927 576 350.406 576 256c0-103.244-54.579-194.877-137.944-245.859zM480 256c0-68.547-36.15-129.777-91.957-163.901-15.076-9.22-34.774-4.471-43.994 10.607-9.22 15.078-4.471 34.774 10.607 43.994C393.067 170.188 416 211.048 416 256c0 41.964-20.62 81.319-55.158 105.276-14.521 10.073-18.128 30.01-8.056 44.532 6.216 8.96 16.185 13.765 26.322 13.765a31.862 31.862 0 0 0 18.21-5.709C449.091 377.953 480 318.938 480 256zm-96 0c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z"] }; +var faWalking = { prefix: 'fas', iconName: 'walking', icon: [320, 512, [], "f554", "M208 96c26.5 0 48-21.5 48-48S234.5 0 208 0s-48 21.5-48 48 21.5 48 48 48zm94.5 149.1l-23.3-11.8-9.7-29.4c-14.7-44.6-55.7-75.8-102.2-75.9-36-.1-55.9 10.1-93.3 25.2-21.6 8.7-39.3 25.2-49.7 46.2L17.6 213c-7.8 15.8-1.5 35 14.2 42.9 15.6 7.9 34.6 1.5 42.5-14.3L81 228c3.5-7 9.3-12.5 16.5-15.4l26.8-10.8-15.2 60.7c-5.2 20.8.4 42.9 14.9 58.8l59.9 65.4c7.2 7.9 12.3 17.4 14.9 27.7l18.3 73.3c4.3 17.1 21.7 27.6 38.8 23.3 17.1-4.3 27.6-21.7 23.3-38.8l-22.2-89c-2.6-10.3-7.7-19.9-14.9-27.7l-45.5-49.7 17.2-68.7 5.5 16.5c5.3 16.1 16.7 29.4 31.7 37l23.3 11.8c15.6 7.9 34.6 1.5 42.5-14.3 7.7-15.7 1.4-35.1-14.3-43zM73.6 385.8c-3.2 8.1-8 15.4-14.2 21.5l-50 50.1c-12.5 12.5-12.5 32.8 0 45.3s32.7 12.5 45.2 0l59.4-59.4c6.1-6.1 10.9-13.4 14.2-21.5l13.5-33.8c-55.3-60.3-38.7-41.8-47.4-53.7l-20.7 51.5z"] }; +var faWallet = { prefix: 'fas', iconName: 'wallet', icon: [512, 512, [], "f555", "M461.2 128H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h384c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h397.2c28.02 0 50.8-21.53 50.8-48V176c0-26.47-22.78-48-50.8-48zM416 336c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faWarehouse = { prefix: 'fas', iconName: 'warehouse', icon: [640, 512, [], "f494", "M504 352H136.4c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0 96H136.1c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0-192H136.6c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm106.5-139L338.4 3.7a48.15 48.15 0 0 0-36.9 0L29.5 117C11.7 124.5 0 141.9 0 161.3V504c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V256c0-17.6 14.6-32 32.6-32h382.8c18 0 32.6 14.4 32.6 32v248c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V161.3c0-19.4-11.7-36.8-29.5-44.3z"] }; +var faWeight = { prefix: 'fas', iconName: 'weight', icon: [512, 512, [], "f496", "M448 64h-26c16.4 28.3 26 61 26 96 0 105.9-86.1 192-192 192S64 265.9 64 160c0-35 9.6-67.7 26-96H64C28.7 64 0 92.7 0 128v320c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64zM256 320c88.4 0 160-71.6 160-160S344.4 0 256 0 96 71.6 96 160s71.6 160 160 160zm-.3-151.9l33.6-78.4c3.5-8.2 12.9-11.9 21-8.4s11.9 12.9 8.4 21L285 180.9c6.7 7.1 10.9 16.6 10.9 27.1 0 22.1-17.9 40-40 40s-40-17.9-40-40c.1-22 17.9-39.8 39.8-39.9z"] }; +var faWheelchair = { prefix: 'fas', iconName: 'wheelchair', icon: [512, 512, [], "f193", "M496.101 385.669l14.227 28.663c3.929 7.915.697 17.516-7.218 21.445l-65.465 32.886c-16.049 7.967-35.556 1.194-43.189-15.055L331.679 320H192c-15.925 0-29.426-11.71-31.679-27.475C126.433 55.308 128.38 70.044 128 64c0-36.358 30.318-65.635 67.052-63.929 33.271 1.545 60.048 28.905 60.925 62.201.868 32.933-23.152 60.423-54.608 65.039l4.67 32.69H336c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H215.182l4.572 32H352a32 32 0 0 1 28.962 18.392L438.477 396.8l36.178-18.349c7.915-3.929 17.517-.697 21.446 7.218zM311.358 352h-24.506c-7.788 54.204-54.528 96-110.852 96-61.757 0-112-50.243-112-112 0-41.505 22.694-77.809 56.324-97.156-3.712-25.965-6.844-47.86-9.488-66.333C45.956 198.464 0 261.963 0 336c0 97.047 78.953 176 176 176 71.87 0 133.806-43.308 161.11-105.192L311.358 352z"] }; +var faWifi = { prefix: 'fas', iconName: 'wifi', icon: [640, 512, [], "f1eb", "M384 416c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm136.659-124.443c6.465-6.465 6.245-17.065-.564-23.167-113.793-101.985-286.526-101.869-400.19 0-6.809 6.102-7.029 16.702-.564 23.167l34.006 34.006c5.927 5.927 15.464 6.32 21.769.796 82.88-72.609 207.074-72.447 289.768 0 6.305 5.524 15.842 5.132 21.769-.796l34.006-34.006zm112.11-113.718c6.385-6.385 6.254-16.816-.35-22.973-175.768-163.86-449.134-163.8-624.837 0-6.604 6.157-6.735 16.589-.35 22.973l33.966 33.966c6.095 6.095 15.891 6.231 22.224.383 144.763-133.668 368.356-133.702 513.156 0 6.333 5.848 16.129 5.712 22.224-.383l33.967-33.966z"] }; +var faWindowClose = { prefix: 'fas', iconName: 'window-close', icon: [512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-83.6 290.5c4.8 4.8 4.8 12.6 0 17.4l-40.5 40.5c-4.8 4.8-12.6 4.8-17.4 0L256 313.3l-66.5 67.1c-4.8 4.8-12.6 4.8-17.4 0l-40.5-40.5c-4.8-4.8-4.8-12.6 0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6 0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1 66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8 4.8 12.6 0 17.4L313.3 256l67.1 66.5z"] }; +var faWindowMaximize = { prefix: 'fas', iconName: 'window-maximize', icon: [512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16 160H64v-84c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12v84z"] }; +var faWindowMinimize = { prefix: 'fas', iconName: 'window-minimize', icon: [512, 512, [], "f2d1", "M464 352H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48z"] }; +var faWindowRestore = { prefix: 'fas', iconName: 'window-restore', icon: [512, 512, [], "f2d2", "M512 48v288c0 26.5-21.5 48-48 48h-48V176c0-44.1-35.9-80-80-80H128V48c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zM384 176v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zm-68 28c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v52h252v-52z"] }; +var faWineGlass = { prefix: 'fas', iconName: 'wine-glass', icon: [288, 512, [], "f4e3", "M287.4 192.7l-16-178.1C270.7 6.3 263.9 0 255.7 0H32.3c-8.2 0-15 6.3-15.7 14.6L.6 192.7c-7.2 80 50.7 148.9 127.4 157.6V480H74.1c-24.5 0-33.2 32-20 32h179.8c13.1 0 4.5-32-20-32H160V350.3c76.7-8.8 134.6-77.6 127.4-157.6zM226.2 48l7.2 80H54.6l7.2-80h164.4z"] }; +var faWonSign = { prefix: 'fas', iconName: 'won-sign', icon: [576, 512, [], "f159", "M564 192c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-48.028l18.572-80.61c1.732-7.518-3.978-14.694-11.693-14.694h-46.107a11.998 11.998 0 0 0-11.736 9.5L450.73 128H340.839l-19.725-85.987a12 12 0 0 0-11.696-9.317H265.43a12 12 0 0 0-11.687 9.277L233.696 128H124.975L107.5 42.299a12 12 0 0 0-11.758-9.602H53.628c-7.686 0-13.39 7.124-11.709 14.624L60 128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h62.342l7.171 32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h83.856l40.927 182.624A12 12 0 0 0 148.492 480h56.767c5.583 0 10.428-3.85 11.689-9.288L259.335 288h55.086l42.386 182.712A12 12 0 0 0 368.496 480h56.826a12 12 0 0 0 11.694-9.306L479.108 288H564c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-70.146l7.373-32H564zm-425.976 0h80.757l-7.457 32h-66.776l-6.524-32zm45.796 150.029c-6.194 25.831-6.758 47.25-7.321 47.25h-1.126s-1.689-22.05-6.758-47.25L157.599 288h38.812l-12.591 54.029zM274.182 224l1.996-8.602c1.856-7.962 3.457-15.968 4.803-23.398h11.794c1.347 7.43 2.947 15.436 4.803 23.398l1.996 8.602h-25.392zm130.959 118.029c-5.068 25.2-6.758 47.25-6.758 47.25h-1.126c-.563 0-1.126-21.42-7.321-47.25L377.542 288h39.107l-11.508 54.029zM430.281 224h-67.42l-7.34-32h81.577l-6.817 32z"] }; +var faWrench = { prefix: 'fas', iconName: 'wrench', icon: [512, 512, [], "f0ad", "M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"] }; +var faXRay = { prefix: 'fas', iconName: 'x-ray', icon: [640, 512, [], "f497", "M240 384c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm160 32c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zM624 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zm0 448h-48V96H64v352H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM480 248c0 4.4-3.6 8-8 8H336v32h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48v-16h-64v16c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48h64v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-32H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h136v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-24c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v24h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h136c4.4 0 8 3.6 8 8v16z"] }; +var faYenSign = { prefix: 'fas', iconName: 'yen-sign', icon: [384, 512, [], "f157", "M351.208 32h-65.277a12 12 0 0 0-10.778 6.724l-55.39 113.163c-14.513 34.704-27.133 71.932-27.133 71.932h-1.262s-12.62-37.228-27.133-71.932l-55.39-113.163A11.997 11.997 0 0 0 98.068 32H32.792c-9.057 0-14.85 9.65-10.59 17.643L102.322 200H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h88.162L152 293.228V320H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h108v92c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-92h108c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12H232v-26.772L251.838 256H340c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12h-58.322l80.12-150.357C366.058 41.65 360.266 32 351.208 32z"] }; +var icons$1 = { + faAddressBook: faAddressBook, + faAddressCard: faAddressCard, + faAdjust: faAdjust, + faAlignCenter: faAlignCenter, + faAlignJustify: faAlignJustify, + faAlignLeft: faAlignLeft, + faAlignRight: faAlignRight, + faAllergies: faAllergies, + faAmbulance: faAmbulance, + faAmericanSignLanguageInterpreting: faAmericanSignLanguageInterpreting, + faAnchor: faAnchor, + faAngleDoubleDown: faAngleDoubleDown, + faAngleDoubleLeft: faAngleDoubleLeft, + faAngleDoubleRight: faAngleDoubleRight, + faAngleDoubleUp: faAngleDoubleUp, + faAngleDown: faAngleDown, + faAngleLeft: faAngleLeft, + faAngleRight: faAngleRight, + faAngleUp: faAngleUp, + faArchive: faArchive, + faArrowAltCircleDown: faArrowAltCircleDown, + faArrowAltCircleLeft: faArrowAltCircleLeft, + faArrowAltCircleRight: faArrowAltCircleRight, + faArrowAltCircleUp: faArrowAltCircleUp, + faArrowCircleDown: faArrowCircleDown, + faArrowCircleLeft: faArrowCircleLeft, + faArrowCircleRight: faArrowCircleRight, + faArrowCircleUp: faArrowCircleUp, + faArrowDown: faArrowDown, + faArrowLeft: faArrowLeft, + faArrowRight: faArrowRight, + faArrowUp: faArrowUp, + faArrowsAlt: faArrowsAlt, + faArrowsAltH: faArrowsAltH, + faArrowsAltV: faArrowsAltV, + faAssistiveListeningSystems: faAssistiveListeningSystems, + faAsterisk: faAsterisk, + faAt: faAt, + faAudioDescription: faAudioDescription, + faBackward: faBackward, + faBalanceScale: faBalanceScale, + faBan: faBan, + faBandAid: faBandAid, + faBarcode: faBarcode, + faBars: faBars, + faBaseballBall: faBaseballBall, + faBasketballBall: faBasketballBall, + faBath: faBath, + faBatteryEmpty: faBatteryEmpty, + faBatteryFull: faBatteryFull, + faBatteryHalf: faBatteryHalf, + faBatteryQuarter: faBatteryQuarter, + faBatteryThreeQuarters: faBatteryThreeQuarters, + faBed: faBed, + faBeer: faBeer, + faBell: faBell, + faBellSlash: faBellSlash, + faBicycle: faBicycle, + faBinoculars: faBinoculars, + faBirthdayCake: faBirthdayCake, + faBlender: faBlender, + faBlind: faBlind, + faBold: faBold, + faBolt: faBolt, + faBomb: faBomb, + faBook: faBook, + faBookOpen: faBookOpen, + faBookmark: faBookmark, + faBowlingBall: faBowlingBall, + faBox: faBox, + faBoxOpen: faBoxOpen, + faBoxes: faBoxes, + faBraille: faBraille, + faBriefcase: faBriefcase, + faBriefcaseMedical: faBriefcaseMedical, + faBroadcastTower: faBroadcastTower, + faBroom: faBroom, + faBug: faBug, + faBuilding: faBuilding, + faBullhorn: faBullhorn, + faBullseye: faBullseye, + faBurn: faBurn, + faBus: faBus, + faCalculator: faCalculator, + faCalendar: faCalendar, + faCalendarAlt: faCalendarAlt, + faCalendarCheck: faCalendarCheck, + faCalendarMinus: faCalendarMinus, + faCalendarPlus: faCalendarPlus, + faCalendarTimes: faCalendarTimes, + faCamera: faCamera, + faCameraRetro: faCameraRetro, + faCapsules: faCapsules, + faCar: faCar, + faCaretDown: faCaretDown, + faCaretLeft: faCaretLeft, + faCaretRight: faCaretRight, + faCaretSquareDown: faCaretSquareDown, + faCaretSquareLeft: faCaretSquareLeft, + faCaretSquareRight: faCaretSquareRight, + faCaretSquareUp: faCaretSquareUp, + faCaretUp: faCaretUp, + faCartArrowDown: faCartArrowDown, + faCartPlus: faCartPlus, + faCertificate: faCertificate, + faChalkboard: faChalkboard, + faChalkboardTeacher: faChalkboardTeacher, + faChartArea: faChartArea, + faChartBar: faChartBar, + faChartLine: faChartLine, + faChartPie: faChartPie, + faCheck: faCheck, + faCheckCircle: faCheckCircle, + faCheckSquare: faCheckSquare, + faChess: faChess, + faChessBishop: faChessBishop, + faChessBoard: faChessBoard, + faChessKing: faChessKing, + faChessKnight: faChessKnight, + faChessPawn: faChessPawn, + faChessQueen: faChessQueen, + faChessRook: faChessRook, + faChevronCircleDown: faChevronCircleDown, + faChevronCircleLeft: faChevronCircleLeft, + faChevronCircleRight: faChevronCircleRight, + faChevronCircleUp: faChevronCircleUp, + faChevronDown: faChevronDown, + faChevronLeft: faChevronLeft, + faChevronRight: faChevronRight, + faChevronUp: faChevronUp, + faChild: faChild, + faChurch: faChurch, + faCircle: faCircle, + faCircleNotch: faCircleNotch, + faClipboard: faClipboard, + faClipboardCheck: faClipboardCheck, + faClipboardList: faClipboardList, + faClock: faClock, + faClone: faClone, + faClosedCaptioning: faClosedCaptioning, + faCloud: faCloud, + faCloudDownloadAlt: faCloudDownloadAlt, + faCloudUploadAlt: faCloudUploadAlt, + faCode: faCode, + faCodeBranch: faCodeBranch, + faCoffee: faCoffee, + faCog: faCog, + faCogs: faCogs, + faCoins: faCoins, + faColumns: faColumns, + faComment: faComment, + faCommentAlt: faCommentAlt, + faCommentDots: faCommentDots, + faCommentSlash: faCommentSlash, + faComments: faComments, + faCompactDisc: faCompactDisc, + faCompass: faCompass, + faCompress: faCompress, + faCopy: faCopy, + faCopyright: faCopyright, + faCouch: faCouch, + faCreditCard: faCreditCard, + faCrop: faCrop, + faCrosshairs: faCrosshairs, + faCrow: faCrow, + faCrown: faCrown, + faCube: faCube, + faCubes: faCubes, + faCut: faCut, + faDatabase: faDatabase, + faDeaf: faDeaf, + faDesktop: faDesktop, + faDiagnoses: faDiagnoses, + faDice: faDice, + faDiceFive: faDiceFive, + faDiceFour: faDiceFour, + faDiceOne: faDiceOne, + faDiceSix: faDiceSix, + faDiceThree: faDiceThree, + faDiceTwo: faDiceTwo, + faDivide: faDivide, + faDna: faDna, + faDollarSign: faDollarSign, + faDolly: faDolly, + faDollyFlatbed: faDollyFlatbed, + faDonate: faDonate, + faDoorClosed: faDoorClosed, + faDoorOpen: faDoorOpen, + faDotCircle: faDotCircle, + faDove: faDove, + faDownload: faDownload, + faDumbbell: faDumbbell, + faEdit: faEdit, + faEject: faEject, + faEllipsisH: faEllipsisH, + faEllipsisV: faEllipsisV, + faEnvelope: faEnvelope, + faEnvelopeOpen: faEnvelopeOpen, + faEnvelopeSquare: faEnvelopeSquare, + faEquals: faEquals, + faEraser: faEraser, + faEuroSign: faEuroSign, + faExchangeAlt: faExchangeAlt, + faExclamation: faExclamation, + faExclamationCircle: faExclamationCircle, + faExclamationTriangle: faExclamationTriangle, + faExpand: faExpand, + faExpandArrowsAlt: faExpandArrowsAlt, + faExternalLinkAlt: faExternalLinkAlt, + faExternalLinkSquareAlt: faExternalLinkSquareAlt, + faEye: faEye, + faEyeDropper: faEyeDropper, + faEyeSlash: faEyeSlash, + faFastBackward: faFastBackward, + faFastForward: faFastForward, + faFax: faFax, + faFeather: faFeather, + faFemale: faFemale, + faFighterJet: faFighterJet, + faFile: faFile, + faFileAlt: faFileAlt, + faFileArchive: faFileArchive, + faFileAudio: faFileAudio, + faFileCode: faFileCode, + faFileExcel: faFileExcel, + faFileImage: faFileImage, + faFileMedical: faFileMedical, + faFileMedicalAlt: faFileMedicalAlt, + faFilePdf: faFilePdf, + faFilePowerpoint: faFilePowerpoint, + faFileVideo: faFileVideo, + faFileWord: faFileWord, + faFilm: faFilm, + faFilter: faFilter, + faFire: faFire, + faFireExtinguisher: faFireExtinguisher, + faFirstAid: faFirstAid, + faFlag: faFlag, + faFlagCheckered: faFlagCheckered, + faFlask: faFlask, + faFolder: faFolder, + faFolderOpen: faFolderOpen, + faFont: faFont, + faFontAwesomeLogoFull: faFontAwesomeLogoFull, + faFootballBall: faFootballBall, + faForward: faForward, + faFrog: faFrog, + faFrown: faFrown, + faFutbol: faFutbol, + faGamepad: faGamepad, + faGasPump: faGasPump, + faGavel: faGavel, + faGem: faGem, + faGenderless: faGenderless, + faGift: faGift, + faGlassMartini: faGlassMartini, + faGlasses: faGlasses, + faGlobe: faGlobe, + faGolfBall: faGolfBall, + faGraduationCap: faGraduationCap, + faGreaterThan: faGreaterThan, + faGreaterThanEqual: faGreaterThanEqual, + faHSquare: faHSquare, + faHandHolding: faHandHolding, + faHandHoldingHeart: faHandHoldingHeart, + faHandHoldingUsd: faHandHoldingUsd, + faHandLizard: faHandLizard, + faHandPaper: faHandPaper, + faHandPeace: faHandPeace, + faHandPointDown: faHandPointDown, + faHandPointLeft: faHandPointLeft, + faHandPointRight: faHandPointRight, + faHandPointUp: faHandPointUp, + faHandPointer: faHandPointer, + faHandRock: faHandRock, + faHandScissors: faHandScissors, + faHandSpock: faHandSpock, + faHands: faHands, + faHandsHelping: faHandsHelping, + faHandshake: faHandshake, + faHashtag: faHashtag, + faHdd: faHdd, + faHeading: faHeading, + faHeadphones: faHeadphones, + faHeart: faHeart, + faHeartbeat: faHeartbeat, + faHelicopter: faHelicopter, + faHistory: faHistory, + faHockeyPuck: faHockeyPuck, + faHome: faHome, + faHospital: faHospital, + faHospitalAlt: faHospitalAlt, + faHospitalSymbol: faHospitalSymbol, + faHourglass: faHourglass, + faHourglassEnd: faHourglassEnd, + faHourglassHalf: faHourglassHalf, + faHourglassStart: faHourglassStart, + faICursor: faICursor, + faIdBadge: faIdBadge, + faIdCard: faIdCard, + faIdCardAlt: faIdCardAlt, + faImage: faImage, + faImages: faImages, + faInbox: faInbox, + faIndent: faIndent, + faIndustry: faIndustry, + faInfinity: faInfinity, + faInfo: faInfo, + faInfoCircle: faInfoCircle, + faItalic: faItalic, + faKey: faKey, + faKeyboard: faKeyboard, + faKiwiBird: faKiwiBird, + faLanguage: faLanguage, + faLaptop: faLaptop, + faLeaf: faLeaf, + faLemon: faLemon, + faLessThan: faLessThan, + faLessThanEqual: faLessThanEqual, + faLevelDownAlt: faLevelDownAlt, + faLevelUpAlt: faLevelUpAlt, + faLifeRing: faLifeRing, + faLightbulb: faLightbulb, + faLink: faLink, + faLiraSign: faLiraSign, + faList: faList, + faListAlt: faListAlt, + faListOl: faListOl, + faListUl: faListUl, + faLocationArrow: faLocationArrow, + faLock: faLock, + faLockOpen: faLockOpen, + faLongArrowAltDown: faLongArrowAltDown, + faLongArrowAltLeft: faLongArrowAltLeft, + faLongArrowAltRight: faLongArrowAltRight, + faLongArrowAltUp: faLongArrowAltUp, + faLowVision: faLowVision, + faMagic: faMagic, + faMagnet: faMagnet, + faMale: faMale, + faMap: faMap, + faMapMarker: faMapMarker, + faMapMarkerAlt: faMapMarkerAlt, + faMapPin: faMapPin, + faMapSigns: faMapSigns, + faMars: faMars, + faMarsDouble: faMarsDouble, + faMarsStroke: faMarsStroke, + faMarsStrokeH: faMarsStrokeH, + faMarsStrokeV: faMarsStrokeV, + faMedkit: faMedkit, + faMeh: faMeh, + faMemory: faMemory, + faMercury: faMercury, + faMicrochip: faMicrochip, + faMicrophone: faMicrophone, + faMicrophoneAlt: faMicrophoneAlt, + faMicrophoneAltSlash: faMicrophoneAltSlash, + faMicrophoneSlash: faMicrophoneSlash, + faMinus: faMinus, + faMinusCircle: faMinusCircle, + faMinusSquare: faMinusSquare, + faMobile: faMobile, + faMobileAlt: faMobileAlt, + faMoneyBill: faMoneyBill, + faMoneyBillAlt: faMoneyBillAlt, + faMoneyBillWave: faMoneyBillWave, + faMoneyBillWaveAlt: faMoneyBillWaveAlt, + faMoneyCheck: faMoneyCheck, + faMoneyCheckAlt: faMoneyCheckAlt, + faMoon: faMoon, + faMotorcycle: faMotorcycle, + faMousePointer: faMousePointer, + faMusic: faMusic, + faNeuter: faNeuter, + faNewspaper: faNewspaper, + faNotEqual: faNotEqual, + faNotesMedical: faNotesMedical, + faObjectGroup: faObjectGroup, + faObjectUngroup: faObjectUngroup, + faOutdent: faOutdent, + faPaintBrush: faPaintBrush, + faPalette: faPalette, + faPallet: faPallet, + faPaperPlane: faPaperPlane, + faPaperclip: faPaperclip, + faParachuteBox: faParachuteBox, + faParagraph: faParagraph, + faParking: faParking, + faPaste: faPaste, + faPause: faPause, + faPauseCircle: faPauseCircle, + faPaw: faPaw, + faPenSquare: faPenSquare, + faPencilAlt: faPencilAlt, + faPeopleCarry: faPeopleCarry, + faPercent: faPercent, + faPercentage: faPercentage, + faPhone: faPhone, + faPhoneSlash: faPhoneSlash, + faPhoneSquare: faPhoneSquare, + faPhoneVolume: faPhoneVolume, + faPiggyBank: faPiggyBank, + faPills: faPills, + faPlane: faPlane, + faPlay: faPlay, + faPlayCircle: faPlayCircle, + faPlug: faPlug, + faPlus: faPlus, + faPlusCircle: faPlusCircle, + faPlusSquare: faPlusSquare, + faPodcast: faPodcast, + faPoo: faPoo, + faPortrait: faPortrait, + faPoundSign: faPoundSign, + faPowerOff: faPowerOff, + faPrescriptionBottle: faPrescriptionBottle, + faPrescriptionBottleAlt: faPrescriptionBottleAlt, + faPrint: faPrint, + faProcedures: faProcedures, + faProjectDiagram: faProjectDiagram, + faPuzzlePiece: faPuzzlePiece, + faQrcode: faQrcode, + faQuestion: faQuestion, + faQuestionCircle: faQuestionCircle, + faQuidditch: faQuidditch, + faQuoteLeft: faQuoteLeft, + faQuoteRight: faQuoteRight, + faRandom: faRandom, + faReceipt: faReceipt, + faRecycle: faRecycle, + faRedo: faRedo, + faRedoAlt: faRedoAlt, + faRegistered: faRegistered, + faReply: faReply, + faReplyAll: faReplyAll, + faRetweet: faRetweet, + faRibbon: faRibbon, + faRoad: faRoad, + faRobot: faRobot, + faRocket: faRocket, + faRss: faRss, + faRssSquare: faRssSquare, + faRubleSign: faRubleSign, + faRuler: faRuler, + faRulerCombined: faRulerCombined, + faRulerHorizontal: faRulerHorizontal, + faRulerVertical: faRulerVertical, + faRupeeSign: faRupeeSign, + faSave: faSave, + faSchool: faSchool, + faScrewdriver: faScrewdriver, + faSearch: faSearch, + faSearchMinus: faSearchMinus, + faSearchPlus: faSearchPlus, + faSeedling: faSeedling, + faServer: faServer, + faShare: faShare, + faShareAlt: faShareAlt, + faShareAltSquare: faShareAltSquare, + faShareSquare: faShareSquare, + faShekelSign: faShekelSign, + faShieldAlt: faShieldAlt, + faShip: faShip, + faShippingFast: faShippingFast, + faShoePrints: faShoePrints, + faShoppingBag: faShoppingBag, + faShoppingBasket: faShoppingBasket, + faShoppingCart: faShoppingCart, + faShower: faShower, + faSign: faSign, + faSignInAlt: faSignInAlt, + faSignLanguage: faSignLanguage, + faSignOutAlt: faSignOutAlt, + faSignal: faSignal, + faSitemap: faSitemap, + faSkull: faSkull, + faSlidersH: faSlidersH, + faSmile: faSmile, + faSmoking: faSmoking, + faSmokingBan: faSmokingBan, + faSnowflake: faSnowflake, + faSort: faSort, + faSortAlphaDown: faSortAlphaDown, + faSortAlphaUp: faSortAlphaUp, + faSortAmountDown: faSortAmountDown, + faSortAmountUp: faSortAmountUp, + faSortDown: faSortDown, + faSortNumericDown: faSortNumericDown, + faSortNumericUp: faSortNumericUp, + faSortUp: faSortUp, + faSpaceShuttle: faSpaceShuttle, + faSpinner: faSpinner, + faSquare: faSquare, + faSquareFull: faSquareFull, + faStar: faStar, + faStarHalf: faStarHalf, + faStepBackward: faStepBackward, + faStepForward: faStepForward, + faStethoscope: faStethoscope, + faStickyNote: faStickyNote, + faStop: faStop, + faStopCircle: faStopCircle, + faStopwatch: faStopwatch, + faStore: faStore, + faStoreAlt: faStoreAlt, + faStream: faStream, + faStreetView: faStreetView, + faStrikethrough: faStrikethrough, + faStroopwafel: faStroopwafel, + faSubscript: faSubscript, + faSubway: faSubway, + faSuitcase: faSuitcase, + faSun: faSun, + faSuperscript: faSuperscript, + faSync: faSync, + faSyncAlt: faSyncAlt, + faSyringe: faSyringe, + faTable: faTable, + faTableTennis: faTableTennis, + faTablet: faTablet, + faTabletAlt: faTabletAlt, + faTablets: faTablets, + faTachometerAlt: faTachometerAlt, + faTag: faTag, + faTags: faTags, + faTape: faTape, + faTasks: faTasks, + faTaxi: faTaxi, + faTerminal: faTerminal, + faTextHeight: faTextHeight, + faTextWidth: faTextWidth, + faTh: faTh, + faThLarge: faThLarge, + faThList: faThList, + faThermometer: faThermometer, + faThermometerEmpty: faThermometerEmpty, + faThermometerFull: faThermometerFull, + faThermometerHalf: faThermometerHalf, + faThermometerQuarter: faThermometerQuarter, + faThermometerThreeQuarters: faThermometerThreeQuarters, + faThumbsDown: faThumbsDown, + faThumbsUp: faThumbsUp, + faThumbtack: faThumbtack, + faTicketAlt: faTicketAlt, + faTimes: faTimes, + faTimesCircle: faTimesCircle, + faTint: faTint, + faToggleOff: faToggleOff, + faToggleOn: faToggleOn, + faToolbox: faToolbox, + faTrademark: faTrademark, + faTrain: faTrain, + faTransgender: faTransgender, + faTransgenderAlt: faTransgenderAlt, + faTrash: faTrash, + faTrashAlt: faTrashAlt, + faTree: faTree, + faTrophy: faTrophy, + faTruck: faTruck, + faTruckLoading: faTruckLoading, + faTruckMoving: faTruckMoving, + faTshirt: faTshirt, + faTty: faTty, + faTv: faTv, + faUmbrella: faUmbrella, + faUnderline: faUnderline, + faUndo: faUndo, + faUndoAlt: faUndoAlt, + faUniversalAccess: faUniversalAccess, + faUniversity: faUniversity, + faUnlink: faUnlink, + faUnlock: faUnlock, + faUnlockAlt: faUnlockAlt, + faUpload: faUpload, + faUser: faUser, + faUserAlt: faUserAlt, + faUserAltSlash: faUserAltSlash, + faUserAstronaut: faUserAstronaut, + faUserCheck: faUserCheck, + faUserCircle: faUserCircle, + faUserClock: faUserClock, + faUserCog: faUserCog, + faUserEdit: faUserEdit, + faUserFriends: faUserFriends, + faUserGraduate: faUserGraduate, + faUserLock: faUserLock, + faUserMd: faUserMd, + faUserMinus: faUserMinus, + faUserNinja: faUserNinja, + faUserPlus: faUserPlus, + faUserSecret: faUserSecret, + faUserShield: faUserShield, + faUserSlash: faUserSlash, + faUserTag: faUserTag, + faUserTie: faUserTie, + faUserTimes: faUserTimes, + faUsers: faUsers, + faUsersCog: faUsersCog, + faUtensilSpoon: faUtensilSpoon, + faUtensils: faUtensils, + faVenus: faVenus, + faVenusDouble: faVenusDouble, + faVenusMars: faVenusMars, + faVial: faVial, + faVials: faVials, + faVideo: faVideo, + faVideoSlash: faVideoSlash, + faVolleyballBall: faVolleyballBall, + faVolumeDown: faVolumeDown, + faVolumeOff: faVolumeOff, + faVolumeUp: faVolumeUp, + faWalking: faWalking, + faWallet: faWallet, + faWarehouse: faWarehouse, + faWeight: faWeight, + faWheelchair: faWheelchair, + faWifi: faWifi, + faWindowClose: faWindowClose, + faWindowMaximize: faWindowMaximize, + faWindowMinimize: faWindowMinimize, + faWindowRestore: faWindowRestore, + faWineGlass: faWineGlass, + faWonSign: faWonSign, + faWrench: faWrench, + faXRay: faXRay, + faYenSign: faYenSign +}; + +bunker(function () { + define('fas', icons$1); +}); + +exports['default'] = icons$1; +exports.prefix = prefix; +exports.faAddressBook = faAddressBook; +exports.faAddressCard = faAddressCard; +exports.faAdjust = faAdjust; +exports.faAlignCenter = faAlignCenter; +exports.faAlignJustify = faAlignJustify; +exports.faAlignLeft = faAlignLeft; +exports.faAlignRight = faAlignRight; +exports.faAllergies = faAllergies; +exports.faAmbulance = faAmbulance; +exports.faAmericanSignLanguageInterpreting = faAmericanSignLanguageInterpreting; +exports.faAnchor = faAnchor; +exports.faAngleDoubleDown = faAngleDoubleDown; +exports.faAngleDoubleLeft = faAngleDoubleLeft; +exports.faAngleDoubleRight = faAngleDoubleRight; +exports.faAngleDoubleUp = faAngleDoubleUp; +exports.faAngleDown = faAngleDown; +exports.faAngleLeft = faAngleLeft; +exports.faAngleRight = faAngleRight; +exports.faAngleUp = faAngleUp; +exports.faArchive = faArchive; +exports.faArrowAltCircleDown = faArrowAltCircleDown; +exports.faArrowAltCircleLeft = faArrowAltCircleLeft; +exports.faArrowAltCircleRight = faArrowAltCircleRight; +exports.faArrowAltCircleUp = faArrowAltCircleUp; +exports.faArrowCircleDown = faArrowCircleDown; +exports.faArrowCircleLeft = faArrowCircleLeft; +exports.faArrowCircleRight = faArrowCircleRight; +exports.faArrowCircleUp = faArrowCircleUp; +exports.faArrowDown = faArrowDown; +exports.faArrowLeft = faArrowLeft; +exports.faArrowRight = faArrowRight; +exports.faArrowUp = faArrowUp; +exports.faArrowsAlt = faArrowsAlt; +exports.faArrowsAltH = faArrowsAltH; +exports.faArrowsAltV = faArrowsAltV; +exports.faAssistiveListeningSystems = faAssistiveListeningSystems; +exports.faAsterisk = faAsterisk; +exports.faAt = faAt; +exports.faAudioDescription = faAudioDescription; +exports.faBackward = faBackward; +exports.faBalanceScale = faBalanceScale; +exports.faBan = faBan; +exports.faBandAid = faBandAid; +exports.faBarcode = faBarcode; +exports.faBars = faBars; +exports.faBaseballBall = faBaseballBall; +exports.faBasketballBall = faBasketballBall; +exports.faBath = faBath; +exports.faBatteryEmpty = faBatteryEmpty; +exports.faBatteryFull = faBatteryFull; +exports.faBatteryHalf = faBatteryHalf; +exports.faBatteryQuarter = faBatteryQuarter; +exports.faBatteryThreeQuarters = faBatteryThreeQuarters; +exports.faBed = faBed; +exports.faBeer = faBeer; +exports.faBell = faBell; +exports.faBellSlash = faBellSlash; +exports.faBicycle = faBicycle; +exports.faBinoculars = faBinoculars; +exports.faBirthdayCake = faBirthdayCake; +exports.faBlender = faBlender; +exports.faBlind = faBlind; +exports.faBold = faBold; +exports.faBolt = faBolt; +exports.faBomb = faBomb; +exports.faBook = faBook; +exports.faBookOpen = faBookOpen; +exports.faBookmark = faBookmark; +exports.faBowlingBall = faBowlingBall; +exports.faBox = faBox; +exports.faBoxOpen = faBoxOpen; +exports.faBoxes = faBoxes; +exports.faBraille = faBraille; +exports.faBriefcase = faBriefcase; +exports.faBriefcaseMedical = faBriefcaseMedical; +exports.faBroadcastTower = faBroadcastTower; +exports.faBroom = faBroom; +exports.faBug = faBug; +exports.faBuilding = faBuilding; +exports.faBullhorn = faBullhorn; +exports.faBullseye = faBullseye; +exports.faBurn = faBurn; +exports.faBus = faBus; +exports.faCalculator = faCalculator; +exports.faCalendar = faCalendar; +exports.faCalendarAlt = faCalendarAlt; +exports.faCalendarCheck = faCalendarCheck; +exports.faCalendarMinus = faCalendarMinus; +exports.faCalendarPlus = faCalendarPlus; +exports.faCalendarTimes = faCalendarTimes; +exports.faCamera = faCamera; +exports.faCameraRetro = faCameraRetro; +exports.faCapsules = faCapsules; +exports.faCar = faCar; +exports.faCaretDown = faCaretDown; +exports.faCaretLeft = faCaretLeft; +exports.faCaretRight = faCaretRight; +exports.faCaretSquareDown = faCaretSquareDown; +exports.faCaretSquareLeft = faCaretSquareLeft; +exports.faCaretSquareRight = faCaretSquareRight; +exports.faCaretSquareUp = faCaretSquareUp; +exports.faCaretUp = faCaretUp; +exports.faCartArrowDown = faCartArrowDown; +exports.faCartPlus = faCartPlus; +exports.faCertificate = faCertificate; +exports.faChalkboard = faChalkboard; +exports.faChalkboardTeacher = faChalkboardTeacher; +exports.faChartArea = faChartArea; +exports.faChartBar = faChartBar; +exports.faChartLine = faChartLine; +exports.faChartPie = faChartPie; +exports.faCheck = faCheck; +exports.faCheckCircle = faCheckCircle; +exports.faCheckSquare = faCheckSquare; +exports.faChess = faChess; +exports.faChessBishop = faChessBishop; +exports.faChessBoard = faChessBoard; +exports.faChessKing = faChessKing; +exports.faChessKnight = faChessKnight; +exports.faChessPawn = faChessPawn; +exports.faChessQueen = faChessQueen; +exports.faChessRook = faChessRook; +exports.faChevronCircleDown = faChevronCircleDown; +exports.faChevronCircleLeft = faChevronCircleLeft; +exports.faChevronCircleRight = faChevronCircleRight; +exports.faChevronCircleUp = faChevronCircleUp; +exports.faChevronDown = faChevronDown; +exports.faChevronLeft = faChevronLeft; +exports.faChevronRight = faChevronRight; +exports.faChevronUp = faChevronUp; +exports.faChild = faChild; +exports.faChurch = faChurch; +exports.faCircle = faCircle; +exports.faCircleNotch = faCircleNotch; +exports.faClipboard = faClipboard; +exports.faClipboardCheck = faClipboardCheck; +exports.faClipboardList = faClipboardList; +exports.faClock = faClock; +exports.faClone = faClone; +exports.faClosedCaptioning = faClosedCaptioning; +exports.faCloud = faCloud; +exports.faCloudDownloadAlt = faCloudDownloadAlt; +exports.faCloudUploadAlt = faCloudUploadAlt; +exports.faCode = faCode; +exports.faCodeBranch = faCodeBranch; +exports.faCoffee = faCoffee; +exports.faCog = faCog; +exports.faCogs = faCogs; +exports.faCoins = faCoins; +exports.faColumns = faColumns; +exports.faComment = faComment; +exports.faCommentAlt = faCommentAlt; +exports.faCommentDots = faCommentDots; +exports.faCommentSlash = faCommentSlash; +exports.faComments = faComments; +exports.faCompactDisc = faCompactDisc; +exports.faCompass = faCompass; +exports.faCompress = faCompress; +exports.faCopy = faCopy; +exports.faCopyright = faCopyright; +exports.faCouch = faCouch; +exports.faCreditCard = faCreditCard; +exports.faCrop = faCrop; +exports.faCrosshairs = faCrosshairs; +exports.faCrow = faCrow; +exports.faCrown = faCrown; +exports.faCube = faCube; +exports.faCubes = faCubes; +exports.faCut = faCut; +exports.faDatabase = faDatabase; +exports.faDeaf = faDeaf; +exports.faDesktop = faDesktop; +exports.faDiagnoses = faDiagnoses; +exports.faDice = faDice; +exports.faDiceFive = faDiceFive; +exports.faDiceFour = faDiceFour; +exports.faDiceOne = faDiceOne; +exports.faDiceSix = faDiceSix; +exports.faDiceThree = faDiceThree; +exports.faDiceTwo = faDiceTwo; +exports.faDivide = faDivide; +exports.faDna = faDna; +exports.faDollarSign = faDollarSign; +exports.faDolly = faDolly; +exports.faDollyFlatbed = faDollyFlatbed; +exports.faDonate = faDonate; +exports.faDoorClosed = faDoorClosed; +exports.faDoorOpen = faDoorOpen; +exports.faDotCircle = faDotCircle; +exports.faDove = faDove; +exports.faDownload = faDownload; +exports.faDumbbell = faDumbbell; +exports.faEdit = faEdit; +exports.faEject = faEject; +exports.faEllipsisH = faEllipsisH; +exports.faEllipsisV = faEllipsisV; +exports.faEnvelope = faEnvelope; +exports.faEnvelopeOpen = faEnvelopeOpen; +exports.faEnvelopeSquare = faEnvelopeSquare; +exports.faEquals = faEquals; +exports.faEraser = faEraser; +exports.faEuroSign = faEuroSign; +exports.faExchangeAlt = faExchangeAlt; +exports.faExclamation = faExclamation; +exports.faExclamationCircle = faExclamationCircle; +exports.faExclamationTriangle = faExclamationTriangle; +exports.faExpand = faExpand; +exports.faExpandArrowsAlt = faExpandArrowsAlt; +exports.faExternalLinkAlt = faExternalLinkAlt; +exports.faExternalLinkSquareAlt = faExternalLinkSquareAlt; +exports.faEye = faEye; +exports.faEyeDropper = faEyeDropper; +exports.faEyeSlash = faEyeSlash; +exports.faFastBackward = faFastBackward; +exports.faFastForward = faFastForward; +exports.faFax = faFax; +exports.faFeather = faFeather; +exports.faFemale = faFemale; +exports.faFighterJet = faFighterJet; +exports.faFile = faFile; +exports.faFileAlt = faFileAlt; +exports.faFileArchive = faFileArchive; +exports.faFileAudio = faFileAudio; +exports.faFileCode = faFileCode; +exports.faFileExcel = faFileExcel; +exports.faFileImage = faFileImage; +exports.faFileMedical = faFileMedical; +exports.faFileMedicalAlt = faFileMedicalAlt; +exports.faFilePdf = faFilePdf; +exports.faFilePowerpoint = faFilePowerpoint; +exports.faFileVideo = faFileVideo; +exports.faFileWord = faFileWord; +exports.faFilm = faFilm; +exports.faFilter = faFilter; +exports.faFire = faFire; +exports.faFireExtinguisher = faFireExtinguisher; +exports.faFirstAid = faFirstAid; +exports.faFlag = faFlag; +exports.faFlagCheckered = faFlagCheckered; +exports.faFlask = faFlask; +exports.faFolder = faFolder; +exports.faFolderOpen = faFolderOpen; +exports.faFont = faFont; +exports.faFontAwesomeLogoFull = faFontAwesomeLogoFull; +exports.faFootballBall = faFootballBall; +exports.faForward = faForward; +exports.faFrog = faFrog; +exports.faFrown = faFrown; +exports.faFutbol = faFutbol; +exports.faGamepad = faGamepad; +exports.faGasPump = faGasPump; +exports.faGavel = faGavel; +exports.faGem = faGem; +exports.faGenderless = faGenderless; +exports.faGift = faGift; +exports.faGlassMartini = faGlassMartini; +exports.faGlasses = faGlasses; +exports.faGlobe = faGlobe; +exports.faGolfBall = faGolfBall; +exports.faGraduationCap = faGraduationCap; +exports.faGreaterThan = faGreaterThan; +exports.faGreaterThanEqual = faGreaterThanEqual; +exports.faHSquare = faHSquare; +exports.faHandHolding = faHandHolding; +exports.faHandHoldingHeart = faHandHoldingHeart; +exports.faHandHoldingUsd = faHandHoldingUsd; +exports.faHandLizard = faHandLizard; +exports.faHandPaper = faHandPaper; +exports.faHandPeace = faHandPeace; +exports.faHandPointDown = faHandPointDown; +exports.faHandPointLeft = faHandPointLeft; +exports.faHandPointRight = faHandPointRight; +exports.faHandPointUp = faHandPointUp; +exports.faHandPointer = faHandPointer; +exports.faHandRock = faHandRock; +exports.faHandScissors = faHandScissors; +exports.faHandSpock = faHandSpock; +exports.faHands = faHands; +exports.faHandsHelping = faHandsHelping; +exports.faHandshake = faHandshake; +exports.faHashtag = faHashtag; +exports.faHdd = faHdd; +exports.faHeading = faHeading; +exports.faHeadphones = faHeadphones; +exports.faHeart = faHeart; +exports.faHeartbeat = faHeartbeat; +exports.faHelicopter = faHelicopter; +exports.faHistory = faHistory; +exports.faHockeyPuck = faHockeyPuck; +exports.faHome = faHome; +exports.faHospital = faHospital; +exports.faHospitalAlt = faHospitalAlt; +exports.faHospitalSymbol = faHospitalSymbol; +exports.faHourglass = faHourglass; +exports.faHourglassEnd = faHourglassEnd; +exports.faHourglassHalf = faHourglassHalf; +exports.faHourglassStart = faHourglassStart; +exports.faICursor = faICursor; +exports.faIdBadge = faIdBadge; +exports.faIdCard = faIdCard; +exports.faIdCardAlt = faIdCardAlt; +exports.faImage = faImage; +exports.faImages = faImages; +exports.faInbox = faInbox; +exports.faIndent = faIndent; +exports.faIndustry = faIndustry; +exports.faInfinity = faInfinity; +exports.faInfo = faInfo; +exports.faInfoCircle = faInfoCircle; +exports.faItalic = faItalic; +exports.faKey = faKey; +exports.faKeyboard = faKeyboard; +exports.faKiwiBird = faKiwiBird; +exports.faLanguage = faLanguage; +exports.faLaptop = faLaptop; +exports.faLeaf = faLeaf; +exports.faLemon = faLemon; +exports.faLessThan = faLessThan; +exports.faLessThanEqual = faLessThanEqual; +exports.faLevelDownAlt = faLevelDownAlt; +exports.faLevelUpAlt = faLevelUpAlt; +exports.faLifeRing = faLifeRing; +exports.faLightbulb = faLightbulb; +exports.faLink = faLink; +exports.faLiraSign = faLiraSign; +exports.faList = faList; +exports.faListAlt = faListAlt; +exports.faListOl = faListOl; +exports.faListUl = faListUl; +exports.faLocationArrow = faLocationArrow; +exports.faLock = faLock; +exports.faLockOpen = faLockOpen; +exports.faLongArrowAltDown = faLongArrowAltDown; +exports.faLongArrowAltLeft = faLongArrowAltLeft; +exports.faLongArrowAltRight = faLongArrowAltRight; +exports.faLongArrowAltUp = faLongArrowAltUp; +exports.faLowVision = faLowVision; +exports.faMagic = faMagic; +exports.faMagnet = faMagnet; +exports.faMale = faMale; +exports.faMap = faMap; +exports.faMapMarker = faMapMarker; +exports.faMapMarkerAlt = faMapMarkerAlt; +exports.faMapPin = faMapPin; +exports.faMapSigns = faMapSigns; +exports.faMars = faMars; +exports.faMarsDouble = faMarsDouble; +exports.faMarsStroke = faMarsStroke; +exports.faMarsStrokeH = faMarsStrokeH; +exports.faMarsStrokeV = faMarsStrokeV; +exports.faMedkit = faMedkit; +exports.faMeh = faMeh; +exports.faMemory = faMemory; +exports.faMercury = faMercury; +exports.faMicrochip = faMicrochip; +exports.faMicrophone = faMicrophone; +exports.faMicrophoneAlt = faMicrophoneAlt; +exports.faMicrophoneAltSlash = faMicrophoneAltSlash; +exports.faMicrophoneSlash = faMicrophoneSlash; +exports.faMinus = faMinus; +exports.faMinusCircle = faMinusCircle; +exports.faMinusSquare = faMinusSquare; +exports.faMobile = faMobile; +exports.faMobileAlt = faMobileAlt; +exports.faMoneyBill = faMoneyBill; +exports.faMoneyBillAlt = faMoneyBillAlt; +exports.faMoneyBillWave = faMoneyBillWave; +exports.faMoneyBillWaveAlt = faMoneyBillWaveAlt; +exports.faMoneyCheck = faMoneyCheck; +exports.faMoneyCheckAlt = faMoneyCheckAlt; +exports.faMoon = faMoon; +exports.faMotorcycle = faMotorcycle; +exports.faMousePointer = faMousePointer; +exports.faMusic = faMusic; +exports.faNeuter = faNeuter; +exports.faNewspaper = faNewspaper; +exports.faNotEqual = faNotEqual; +exports.faNotesMedical = faNotesMedical; +exports.faObjectGroup = faObjectGroup; +exports.faObjectUngroup = faObjectUngroup; +exports.faOutdent = faOutdent; +exports.faPaintBrush = faPaintBrush; +exports.faPalette = faPalette; +exports.faPallet = faPallet; +exports.faPaperPlane = faPaperPlane; +exports.faPaperclip = faPaperclip; +exports.faParachuteBox = faParachuteBox; +exports.faParagraph = faParagraph; +exports.faParking = faParking; +exports.faPaste = faPaste; +exports.faPause = faPause; +exports.faPauseCircle = faPauseCircle; +exports.faPaw = faPaw; +exports.faPenSquare = faPenSquare; +exports.faPencilAlt = faPencilAlt; +exports.faPeopleCarry = faPeopleCarry; +exports.faPercent = faPercent; +exports.faPercentage = faPercentage; +exports.faPhone = faPhone; +exports.faPhoneSlash = faPhoneSlash; +exports.faPhoneSquare = faPhoneSquare; +exports.faPhoneVolume = faPhoneVolume; +exports.faPiggyBank = faPiggyBank; +exports.faPills = faPills; +exports.faPlane = faPlane; +exports.faPlay = faPlay; +exports.faPlayCircle = faPlayCircle; +exports.faPlug = faPlug; +exports.faPlus = faPlus; +exports.faPlusCircle = faPlusCircle; +exports.faPlusSquare = faPlusSquare; +exports.faPodcast = faPodcast; +exports.faPoo = faPoo; +exports.faPortrait = faPortrait; +exports.faPoundSign = faPoundSign; +exports.faPowerOff = faPowerOff; +exports.faPrescriptionBottle = faPrescriptionBottle; +exports.faPrescriptionBottleAlt = faPrescriptionBottleAlt; +exports.faPrint = faPrint; +exports.faProcedures = faProcedures; +exports.faProjectDiagram = faProjectDiagram; +exports.faPuzzlePiece = faPuzzlePiece; +exports.faQrcode = faQrcode; +exports.faQuestion = faQuestion; +exports.faQuestionCircle = faQuestionCircle; +exports.faQuidditch = faQuidditch; +exports.faQuoteLeft = faQuoteLeft; +exports.faQuoteRight = faQuoteRight; +exports.faRandom = faRandom; +exports.faReceipt = faReceipt; +exports.faRecycle = faRecycle; +exports.faRedo = faRedo; +exports.faRedoAlt = faRedoAlt; +exports.faRegistered = faRegistered; +exports.faReply = faReply; +exports.faReplyAll = faReplyAll; +exports.faRetweet = faRetweet; +exports.faRibbon = faRibbon; +exports.faRoad = faRoad; +exports.faRobot = faRobot; +exports.faRocket = faRocket; +exports.faRss = faRss; +exports.faRssSquare = faRssSquare; +exports.faRubleSign = faRubleSign; +exports.faRuler = faRuler; +exports.faRulerCombined = faRulerCombined; +exports.faRulerHorizontal = faRulerHorizontal; +exports.faRulerVertical = faRulerVertical; +exports.faRupeeSign = faRupeeSign; +exports.faSave = faSave; +exports.faSchool = faSchool; +exports.faScrewdriver = faScrewdriver; +exports.faSearch = faSearch; +exports.faSearchMinus = faSearchMinus; +exports.faSearchPlus = faSearchPlus; +exports.faSeedling = faSeedling; +exports.faServer = faServer; +exports.faShare = faShare; +exports.faShareAlt = faShareAlt; +exports.faShareAltSquare = faShareAltSquare; +exports.faShareSquare = faShareSquare; +exports.faShekelSign = faShekelSign; +exports.faShieldAlt = faShieldAlt; +exports.faShip = faShip; +exports.faShippingFast = faShippingFast; +exports.faShoePrints = faShoePrints; +exports.faShoppingBag = faShoppingBag; +exports.faShoppingBasket = faShoppingBasket; +exports.faShoppingCart = faShoppingCart; +exports.faShower = faShower; +exports.faSign = faSign; +exports.faSignInAlt = faSignInAlt; +exports.faSignLanguage = faSignLanguage; +exports.faSignOutAlt = faSignOutAlt; +exports.faSignal = faSignal; +exports.faSitemap = faSitemap; +exports.faSkull = faSkull; +exports.faSlidersH = faSlidersH; +exports.faSmile = faSmile; +exports.faSmoking = faSmoking; +exports.faSmokingBan = faSmokingBan; +exports.faSnowflake = faSnowflake; +exports.faSort = faSort; +exports.faSortAlphaDown = faSortAlphaDown; +exports.faSortAlphaUp = faSortAlphaUp; +exports.faSortAmountDown = faSortAmountDown; +exports.faSortAmountUp = faSortAmountUp; +exports.faSortDown = faSortDown; +exports.faSortNumericDown = faSortNumericDown; +exports.faSortNumericUp = faSortNumericUp; +exports.faSortUp = faSortUp; +exports.faSpaceShuttle = faSpaceShuttle; +exports.faSpinner = faSpinner; +exports.faSquare = faSquare; +exports.faSquareFull = faSquareFull; +exports.faStar = faStar; +exports.faStarHalf = faStarHalf; +exports.faStepBackward = faStepBackward; +exports.faStepForward = faStepForward; +exports.faStethoscope = faStethoscope; +exports.faStickyNote = faStickyNote; +exports.faStop = faStop; +exports.faStopCircle = faStopCircle; +exports.faStopwatch = faStopwatch; +exports.faStore = faStore; +exports.faStoreAlt = faStoreAlt; +exports.faStream = faStream; +exports.faStreetView = faStreetView; +exports.faStrikethrough = faStrikethrough; +exports.faStroopwafel = faStroopwafel; +exports.faSubscript = faSubscript; +exports.faSubway = faSubway; +exports.faSuitcase = faSuitcase; +exports.faSun = faSun; +exports.faSuperscript = faSuperscript; +exports.faSync = faSync; +exports.faSyncAlt = faSyncAlt; +exports.faSyringe = faSyringe; +exports.faTable = faTable; +exports.faTableTennis = faTableTennis; +exports.faTablet = faTablet; +exports.faTabletAlt = faTabletAlt; +exports.faTablets = faTablets; +exports.faTachometerAlt = faTachometerAlt; +exports.faTag = faTag; +exports.faTags = faTags; +exports.faTape = faTape; +exports.faTasks = faTasks; +exports.faTaxi = faTaxi; +exports.faTerminal = faTerminal; +exports.faTextHeight = faTextHeight; +exports.faTextWidth = faTextWidth; +exports.faTh = faTh; +exports.faThLarge = faThLarge; +exports.faThList = faThList; +exports.faThermometer = faThermometer; +exports.faThermometerEmpty = faThermometerEmpty; +exports.faThermometerFull = faThermometerFull; +exports.faThermometerHalf = faThermometerHalf; +exports.faThermometerQuarter = faThermometerQuarter; +exports.faThermometerThreeQuarters = faThermometerThreeQuarters; +exports.faThumbsDown = faThumbsDown; +exports.faThumbsUp = faThumbsUp; +exports.faThumbtack = faThumbtack; +exports.faTicketAlt = faTicketAlt; +exports.faTimes = faTimes; +exports.faTimesCircle = faTimesCircle; +exports.faTint = faTint; +exports.faToggleOff = faToggleOff; +exports.faToggleOn = faToggleOn; +exports.faToolbox = faToolbox; +exports.faTrademark = faTrademark; +exports.faTrain = faTrain; +exports.faTransgender = faTransgender; +exports.faTransgenderAlt = faTransgenderAlt; +exports.faTrash = faTrash; +exports.faTrashAlt = faTrashAlt; +exports.faTree = faTree; +exports.faTrophy = faTrophy; +exports.faTruck = faTruck; +exports.faTruckLoading = faTruckLoading; +exports.faTruckMoving = faTruckMoving; +exports.faTshirt = faTshirt; +exports.faTty = faTty; +exports.faTv = faTv; +exports.faUmbrella = faUmbrella; +exports.faUnderline = faUnderline; +exports.faUndo = faUndo; +exports.faUndoAlt = faUndoAlt; +exports.faUniversalAccess = faUniversalAccess; +exports.faUniversity = faUniversity; +exports.faUnlink = faUnlink; +exports.faUnlock = faUnlock; +exports.faUnlockAlt = faUnlockAlt; +exports.faUpload = faUpload; +exports.faUser = faUser; +exports.faUserAlt = faUserAlt; +exports.faUserAltSlash = faUserAltSlash; +exports.faUserAstronaut = faUserAstronaut; +exports.faUserCheck = faUserCheck; +exports.faUserCircle = faUserCircle; +exports.faUserClock = faUserClock; +exports.faUserCog = faUserCog; +exports.faUserEdit = faUserEdit; +exports.faUserFriends = faUserFriends; +exports.faUserGraduate = faUserGraduate; +exports.faUserLock = faUserLock; +exports.faUserMd = faUserMd; +exports.faUserMinus = faUserMinus; +exports.faUserNinja = faUserNinja; +exports.faUserPlus = faUserPlus; +exports.faUserSecret = faUserSecret; +exports.faUserShield = faUserShield; +exports.faUserSlash = faUserSlash; +exports.faUserTag = faUserTag; +exports.faUserTie = faUserTie; +exports.faUserTimes = faUserTimes; +exports.faUsers = faUsers; +exports.faUsersCog = faUsersCog; +exports.faUtensilSpoon = faUtensilSpoon; +exports.faUtensils = faUtensils; +exports.faVenus = faVenus; +exports.faVenusDouble = faVenusDouble; +exports.faVenusMars = faVenusMars; +exports.faVial = faVial; +exports.faVials = faVials; +exports.faVideo = faVideo; +exports.faVideoSlash = faVideoSlash; +exports.faVolleyballBall = faVolleyballBall; +exports.faVolumeDown = faVolumeDown; +exports.faVolumeOff = faVolumeOff; +exports.faVolumeUp = faVolumeUp; +exports.faWalking = faWalking; +exports.faWallet = faWallet; +exports.faWarehouse = faWarehouse; +exports.faWeight = faWeight; +exports.faWheelchair = faWheelchair; +exports.faWifi = faWifi; +exports.faWindowClose = faWindowClose; +exports.faWindowMaximize = faWindowMaximize; +exports.faWindowMinimize = faWindowMinimize; +exports.faWindowRestore = faWindowRestore; +exports.faWineGlass = faWineGlass; +exports.faWonSign = faWonSign; +exports.faWrench = faWrench; +exports.faXRay = faXRay; +exports.faYenSign = faYenSign; + +Object.defineProperty(exports, '__esModule', { value: true }); + +}))); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/package.json b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/package.json new file mode 100644 index 0000000000..714b77efdd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/package.json @@ -0,0 +1,59 @@ +{ + "description": "The iconic font, CSS, and SVG framework", + "keywords": [ + "font", + "awesome", + "fontawesome", + "icon", + "svg", + "bootstrap" + ], + "homepage": "https://fontawesome.com", + "bugs": { + "url": "http://github.com/FortAwesome/Font-Awesome/issues" + }, + "author": { + "name": "Dave Gandy", + "email": "dave@fontawesome.com", + "web": "http://twitter.com/davegandy" + }, + "contributors": [ + { + "name": "Brian Talbot", + "web": "http://twitter.com/talbs" + }, + { + "name": "Travis Chase", + "web": "http://twitter.com/supercodepoet" + }, + { + "name": "Rob Madole", + "web": "http://twitter.com/robmadole" + }, + { + "name": "Geremia Taglialatela", + "web": "http://twitter.com/gtagliala" + }, + { + "name": "Mike Wilkerson", + "web": "http://twitter.com/mw77" + } + ], + "repository": { + "type": "git", + "url": "https://github.com/FortAwesome/Font-Awesome" + }, + "engines": { + "node": ">=6" + }, + "dependencies": { + "@fortawesome/fontawesome-common-types": "^0.1.7" + }, + "version": "5.0.13", + "name": "@fortawesome/fontawesome-free-solid", + "main": "index.js", + "module": "index.es.js", + "jsnext:main": "index.es.js", + "license": "(CC-BY-4.0 AND MIT)", + "types": "./index.d.ts" +} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/shakable.es.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/shakable.es.js new file mode 100644 index 0000000000..78e0b0e096 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/shakable.es.js @@ -0,0 +1,1264 @@ +/*! + * Font Awesome Free 5.0.13 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +var prefix = "fas"; +var faAddressBook = { prefix: 'fas', iconName: 'address-book', icon: [448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"] }; +var faAddressCard = { prefix: 'fas', iconName: 'address-card', icon: [576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-352 96c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H86.4C74 384 64 375.4 64 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2zM512 312c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z"] }; +var faAdjust = { prefix: 'fas', iconName: 'adjust', icon: [512, 512, [], "f042", "M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z"] }; +var faAlignCenter = { prefix: 'fas', iconName: 'align-center', icon: [448, 512, [], "f037", "M352 44v40c0 8.837-7.163 16-16 16H112c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h224c8.837 0 16 7.163 16 16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm320-200H112c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z"] }; +var faAlignJustify = { prefix: 'fas', iconName: 'align-justify', icon: [448, 512, [], "f039", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm16 144h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0-128h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faAlignLeft = { prefix: 'fas', iconName: 'align-left', icon: [448, 512, [], "f036", "M288 44v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16zM0 172v40c0 8.837 7.163 16 16 16h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16zm16 312h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm256-200H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z"] }; +var faAlignRight = { prefix: 'fas', iconName: 'align-right', icon: [448, 512, [], "f038", "M160 84V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H176c-8.837 0-16-7.163-16-16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faAllergies = { prefix: 'fas', iconName: 'allergies', icon: [448, 512, [], "f461", "M416 112c-17.6 0-32 14.4-32 32v72c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v152c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V32c0-17.6-14.4-32-32-32s-32 14.4-32 32v184c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32S96 46.4 96 64v241l-23.6-32.5c-13-17.9-38-21.8-55.9-8.8s-21.8 38-8.8 55.9l125.6 172.7c9 12.4 23.5 19.8 38.8 19.8h197.6c22.3 0 41.6-15.3 46.7-37l26.5-112.7c3.2-13.7 4.9-28.3 5.1-42.3V144c0-17.6-14.4-32-32-32zM176 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 32c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32-128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"] }; +var faAmbulance = { prefix: 'fas', iconName: 'ambulance', icon: [640, 512, [], "f0f9", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm144-248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm176 248c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"] }; +var faAmericanSignLanguageInterpreting = { prefix: 'fas', iconName: 'american-sign-language-interpreting', icon: [640, 512, [], "f2a3", "M290.547 189.039c-20.295-10.149-44.147-11.199-64.739-3.89 42.606 0 71.208 20.475 85.578 50.576 8.576 17.899-5.148 38.071-23.617 38.071 18.429 0 32.211 20.136 23.617 38.071-14.725 30.846-46.123 50.854-80.298 50.854-.557 0-94.471-8.615-94.471-8.615l-66.406 33.347c-9.384 4.693-19.815.379-23.895-7.781L1.86 290.747c-4.167-8.615-1.111-18.897 6.946-23.621l58.072-33.069L108 159.861c6.39-57.245 34.731-109.767 79.743-146.726 11.391-9.448 28.341-7.781 37.51 3.613 9.446 11.394 7.78 28.067-3.612 37.516-12.503 10.559-23.618 22.509-32.509 35.57 21.672-14.729 46.679-24.732 74.186-28.067 14.725-1.945 28.063 8.336 29.73 23.065 1.945 14.728-8.336 28.067-23.062 29.734-16.116 1.945-31.12 7.503-44.178 15.284 26.114-5.713 58.712-3.138 88.079 11.115 13.336 6.669 18.893 22.509 12.224 35.848-6.389 13.06-22.504 18.617-35.564 12.226zm-27.229 69.472c-6.112-12.505-18.338-20.286-32.231-20.286a35.46 35.46 0 0 0-35.565 35.57c0 21.428 17.808 35.57 35.565 35.57 13.893 0 26.119-7.781 32.231-20.286 4.446-9.449 13.614-15.006 23.339-15.284-9.725-.277-18.893-5.835-23.339-15.284zm374.821-37.237c4.168 8.615 1.111 18.897-6.946 23.621l-58.071 33.069L532 352.16c-6.39 57.245-34.731 109.767-79.743 146.726-10.932 9.112-27.799 8.144-37.51-3.613-9.446-11.394-7.78-28.067 3.613-37.516 12.503-10.559 23.617-22.509 32.508-35.57-21.672 14.729-46.679 24.732-74.186 28.067-10.021 2.506-27.552-5.643-29.73-23.065-1.945-14.728 8.336-28.067 23.062-29.734 16.116-1.946 31.12-7.503 44.178-15.284-26.114 5.713-58.712 3.138-88.079-11.115-13.336-6.669-18.893-22.509-12.224-35.848 6.389-13.061 22.505-18.619 35.565-12.227 20.295 10.149 44.147 11.199 64.739 3.89-42.606 0-71.208-20.475-85.578-50.576-8.576-17.899 5.148-38.071 23.617-38.071-18.429 0-32.211-20.136-23.617-38.071 14.033-29.396 44.039-50.887 81.966-50.854l92.803 8.615 66.406-33.347c9.408-4.704 19.828-.354 23.894 7.781l44.455 88.926zm-229.227-18.618c-13.893 0-26.119 7.781-32.231 20.286-4.446 9.449-13.614 15.006-23.339 15.284 9.725.278 18.893 5.836 23.339 15.284 6.112 12.505 18.338 20.286 32.231 20.286a35.46 35.46 0 0 0 35.565-35.57c0-21.429-17.808-35.57-35.565-35.57z"] }; +var faAnchor = { prefix: 'fas', iconName: 'anchor', icon: [576, 512, [], "f13d", "M12.971 352h32.394C67.172 454.735 181.944 512 288 512c106.229 0 220.853-57.38 242.635-160h32.394c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0l-67.029 67.029c-7.56 7.56-2.206 20.485 8.485 20.485h35.146c-20.29 54.317-84.963 86.588-144.117 94.015V256h52c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-52v-5.47c37.281-13.178 63.995-48.725 64-90.518C384.005 43.772 341.605.738 289.37.01 235.723-.739 192 42.525 192 96c0 41.798 26.716 77.35 64 90.53V192h-52c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v190.015c-58.936-7.399-123.82-39.679-144.117-94.015h35.146c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0L4.485 331.515C-3.074 339.074 2.28 352 12.971 352zM288 64c17.645 0 32 14.355 32 32s-14.355 32-32 32-32-14.355-32-32 14.355-32 32-32z"] }; +var faAngleDoubleDown = { prefix: 'fas', iconName: 'angle-double-down', icon: [320, 512, [], "f103", "M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z"] }; +var faAngleDoubleLeft = { prefix: 'fas', iconName: 'angle-double-left', icon: [448, 512, [], "f100", "M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z"] }; +var faAngleDoubleRight = { prefix: 'fas', iconName: 'angle-double-right', icon: [448, 512, [], "f101", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z"] }; +var faAngleDoubleUp = { prefix: 'fas', iconName: 'angle-double-up', icon: [320, 512, [], "f102", "M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z"] }; +var faAngleDown = { prefix: 'fas', iconName: 'angle-down', icon: [320, 512, [], "f107", "M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"] }; +var faAngleLeft = { prefix: 'fas', iconName: 'angle-left', icon: [256, 512, [], "f104", "M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"] }; +var faAngleRight = { prefix: 'fas', iconName: 'angle-right', icon: [256, 512, [], "f105", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"] }; +var faAngleUp = { prefix: 'fas', iconName: 'angle-up', icon: [320, 512, [], "f106", "M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z"] }; +var faArchive = { prefix: 'fas', iconName: 'archive', icon: [512, 512, [], "f187", "M32 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160H32v288zm160-212c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v8c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-8zM480 32H32C14.3 32 0 46.3 0 64v48c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16V64c0-17.7-14.3-32-32-32z"] }; +var faArrowAltCircleDown = { prefix: 'fas', iconName: 'arrow-alt-circle-down', icon: [512, 512, [], "f358", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM212 140v116h-70.9c-10.7 0-16.1 13-8.5 20.5l114.9 114.3c4.7 4.7 12.2 4.7 16.9 0l114.9-114.3c7.6-7.6 2.2-20.5-8.5-20.5H300V140c0-6.6-5.4-12-12-12h-64c-6.6 0-12 5.4-12 12z"] }; +var faArrowAltCircleLeft = { prefix: 'fas', iconName: 'arrow-alt-circle-left', icon: [512, 512, [], "f359", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z"] }; +var faArrowAltCircleRight = { prefix: 'fas', iconName: 'arrow-alt-circle-right', icon: [512, 512, [], "f35a", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z"] }; +var faArrowAltCircleUp = { prefix: 'fas', iconName: 'arrow-alt-circle-up', icon: [512, 512, [], "f35b", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm292 116V256h70.9c10.7 0 16.1-13 8.5-20.5L264.5 121.2c-4.7-4.7-12.2-4.7-16.9 0l-115 114.3c-7.6 7.6-2.2 20.5 8.5 20.5H212v116c0 6.6 5.4 12 12 12h64c6.6 0 12-5.4 12-12z"] }; +var faArrowCircleDown = { prefix: 'fas', iconName: 'arrow-circle-down', icon: [512, 512, [], "f0ab", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-143.6-28.9L288 302.6V120c0-13.3-10.7-24-24-24h-16c-13.3 0-24 10.7-24 24v182.6l-72.4-75.5c-9.3-9.7-24.8-9.9-34.3-.4l-10.9 11c-9.4 9.4-9.4 24.6 0 33.9L239 404.3c9.4 9.4 24.6 9.4 33.9 0l132.7-132.7c9.4-9.4 9.4-24.6 0-33.9l-10.9-11c-9.5-9.5-25-9.3-34.3.4z"] }; +var faArrowCircleLeft = { prefix: 'fas', iconName: 'arrow-circle-left', icon: [512, 512, [], "f0a8", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm28.9-143.6L209.4 288H392c13.3 0 24-10.7 24-24v-16c0-13.3-10.7-24-24-24H209.4l75.5-72.4c9.7-9.3 9.9-24.8.4-34.3l-11-10.9c-9.4-9.4-24.6-9.4-33.9 0L107.7 239c-9.4 9.4-9.4 24.6 0 33.9l132.7 132.7c9.4 9.4 24.6 9.4 33.9 0l11-10.9c9.5-9.5 9.3-25-.4-34.3z"] }; +var faArrowCircleRight = { prefix: 'fas', iconName: 'arrow-circle-right', icon: [512, 512, [], "f0a9", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28.9 143.6l75.5 72.4H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h182.6l-75.5 72.4c-9.7 9.3-9.9 24.8-.4 34.3l11 10.9c9.4 9.4 24.6 9.4 33.9 0L404.3 273c9.4-9.4 9.4-24.6 0-33.9L271.6 106.3c-9.4-9.4-24.6-9.4-33.9 0l-11 10.9c-9.5 9.6-9.3 25.1.4 34.4z"] }; +var faArrowCircleUp = { prefix: 'fas', iconName: 'arrow-circle-up', icon: [512, 512, [], "f0aa", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z"] }; +var faArrowDown = { prefix: 'fas', iconName: 'arrow-down', icon: [448, 512, [], "f063", "M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z"] }; +var faArrowLeft = { prefix: 'fas', iconName: 'arrow-left', icon: [448, 512, [], "f060", "M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z"] }; +var faArrowRight = { prefix: 'fas', iconName: 'arrow-right', icon: [448, 512, [], "f061", "M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z"] }; +var faArrowUp = { prefix: 'fas', iconName: 'arrow-up', icon: [448, 512, [], "f062", "M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z"] }; +var faArrowsAlt = { prefix: 'fas', iconName: 'arrows-alt', icon: [512, 512, [], "f0b2", "M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z"] }; +var faArrowsAltH = { prefix: 'fas', iconName: 'arrows-alt-h', icon: [512, 512, [], "f337", "M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z"] }; +var faArrowsAltV = { prefix: 'fas', iconName: 'arrows-alt-v', icon: [256, 512, [], "f338", "M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z"] }; +var faAssistiveListeningSystems = { prefix: 'fas', iconName: 'assistive-listening-systems', icon: [512, 512, [], "f2a2", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z"] }; +var faAsterisk = { prefix: 'fas', iconName: 'asterisk', icon: [512, 512, [], "f069", "M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z"] }; +var faAt = { prefix: 'fas', iconName: 'at', icon: [512, 512, [], "f1fa", "M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z"] }; +var faAudioDescription = { prefix: 'fas', iconName: 'audio-description', icon: [512, 512, [], "f29e", "M162.925 238.709l8.822 30.655h-25.606l9.041-30.652c1.277-4.421 2.651-9.994 3.872-15.245 1.22 5.251 2.594 10.823 3.871 15.242zm166.474-32.099h-14.523v98.781h14.523c29.776 0 46.175-17.678 46.175-49.776 0-32.239-17.49-49.005-46.175-49.005zM512 112v288c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48zM245.459 336.139l-57.097-168A12.001 12.001 0 0 0 177 160h-35.894a12.001 12.001 0 0 0-11.362 8.139l-57.097 168C70.003 343.922 75.789 352 84.009 352h29.133a12 12 0 0 0 11.535-8.693l8.574-29.906h51.367l8.793 29.977A12 12 0 0 0 204.926 352h29.172c8.22 0 14.006-8.078 11.361-15.861zm184.701-80.525c0-58.977-37.919-95.614-98.96-95.614h-57.366c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12H331.2c61.041 0 98.96-36.933 98.96-96.386z"] }; +var faBackward = { prefix: 'fas', iconName: 'backward', icon: [512, 512, [], "f04a", "M11.5 280.6l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2zm256 0l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2z"] }; +var faBalanceScale = { prefix: 'fas', iconName: 'balance-scale', icon: [640, 512, [], "f24e", "M256 336h-.02c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0C-2.06 328.75.02 320.33.02 336H0c0 44.18 57.31 80 128 80s128-35.82 128-80zM128 176l72 144H56l72-144zm511.98 160c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 320l72-144 72 144H440zm88 128H352V153.25c23.51-10.29 41.16-31.48 46.39-57.25H528c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H383.64C369.04 12.68 346.09 0 320 0s-49.04 12.68-63.64 32H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h129.61c5.23 25.76 22.87 46.96 46.39 57.25V448H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"] }; +var faBan = { prefix: 'fas', iconName: 'ban', icon: [512, 512, [], "f05e", "M256 8C119.034 8 8 119.033 8 256s111.034 248 248 248 248-111.034 248-248S392.967 8 256 8zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676zM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676z"] }; +var faBandAid = { prefix: 'fas', iconName: 'band-aid', icon: [640, 512, [], "f462", "M0 160v192c0 35.3 28.7 64 64 64h96V96H64c-35.3 0-64 28.7-64 64zm576-64h-96v320h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64zM192 416h256V96H192v320zm176-232c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24z"] }; +var faBarcode = { prefix: 'fas', iconName: 'barcode', icon: [512, 512, [], "f02a", "M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z"] }; +var faBars = { prefix: 'fas', iconName: 'bars', icon: [448, 512, [], "f0c9", "M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faBaseballBall = { prefix: 'fas', iconName: 'baseball-ball', icon: [496, 512, [], "f433", "M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z"] }; +var faBasketballBall = { prefix: 'fas', iconName: 'basketball-ball', icon: [496, 512, [], "f434", "M212.3 10.3c-43.8 6.3-86.2 24.1-122.2 53.8l77.4 77.4c27.8-35.8 43.3-81.2 44.8-131.2zM248 222L405.9 64.1c-42.4-35-93.6-53.5-145.5-56.1-1.2 63.9-21.5 122.3-58.7 167.7L248 222zM56.1 98.1c-29.7 36-47.5 78.4-53.8 122.2 50-1.5 95.5-17 131.2-44.8L56.1 98.1zm272.2 204.2c45.3-37.1 103.7-57.4 167.7-58.7-2.6-51.9-21.1-103.1-56.1-145.5L282 256l46.3 46.3zM248 290L90.1 447.9c42.4 34.9 93.6 53.5 145.5 56.1 1.3-64 21.6-122.4 58.7-167.7L248 290zm191.9 123.9c29.7-36 47.5-78.4 53.8-122.2-50.1 1.6-95.5 17.1-131.2 44.8l77.4 77.4zM167.7 209.7C122.3 246.9 63.9 267.3 0 268.4c2.6 51.9 21.1 103.1 56.1 145.5L214 256l-46.3-46.3zm116 292c43.8-6.3 86.2-24.1 122.2-53.8l-77.4-77.4c-27.7 35.7-43.2 81.2-44.8 131.2z"] }; +var faBath = { prefix: 'fas', iconName: 'bath', icon: [512, 512, [], "f2cd", "M488 256H80V112c0-17.645 14.355-32 32-32 11.351 0 21.332 5.945 27.015 14.88-16.492 25.207-14.687 59.576 6.838 83.035-4.176 4.713-4.021 11.916.491 16.428l11.314 11.314c4.686 4.686 12.284 4.686 16.971 0l95.03-95.029c4.686-4.686 4.686-12.284 0-16.971l-11.314-11.314c-4.512-4.512-11.715-4.666-16.428-.491-17.949-16.469-42.294-21.429-64.178-15.365C163.281 45.667 139.212 32 112 32c-44.112 0-80 35.888-80 80v144h-8c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h8v32c0 28.43 12.362 53.969 32 71.547V456c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-8h256v8c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-32.453c19.638-17.578 32-43.117 32-71.547v-32h8c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z"] }; +var faBatteryEmpty = { prefix: 'fas', iconName: 'battery-empty', icon: [640, 512, [], "f244", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48z"] }; +var faBatteryFull = { prefix: 'fas', iconName: 'battery-full', icon: [640, 512, [], "f240", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-48 96H96v128h416V192z"] }; +var faBatteryHalf = { prefix: 'fas', iconName: 'battery-half', icon: [640, 512, [], "f242", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-240 96H96v128h224V192z"] }; +var faBatteryQuarter = { prefix: 'fas', iconName: 'battery-quarter', icon: [640, 512, [], "f243", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-336 96H96v128h128V192z"] }; +var faBatteryThreeQuarters = { prefix: 'fas', iconName: 'battery-three-quarters', icon: [640, 512, [], "f241", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-144 96H96v128h320V192z"] }; +var faBed = { prefix: 'fas', iconName: 'bed', icon: [576, 512, [], "f236", "M552 288c13.255 0 24 10.745 24 24v136h-96v-64H96v64H0V88c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24v200h456zM192 96c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80zm384 128c0-53.019-42.981-96-96-96H312c-13.255 0-24 10.745-24 24v104h288v-32z"] }; +var faBeer = { prefix: 'fas', iconName: 'beer', icon: [448, 512, [], "f0fc", "M368 96h-48V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24v-42.11l80.606-35.977C429.396 365.063 448 336.388 448 304.86V176c0-44.112-35.888-80-80-80zm16 208.86a16.018 16.018 0 0 1-9.479 14.611L320 343.805V160h48c8.822 0 16 7.178 16 16v128.86zM208 384c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16zm-96 0c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16z"] }; +var faBell = { prefix: 'fas', iconName: 'bell', icon: [448, 512, [], "f0f3", "M433.884 366.059C411.634 343.809 384 316.118 384 208c0-79.394-57.831-145.269-133.663-157.83A31.845 31.845 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 6.75 2.095 13.008 5.663 18.17C121.831 62.731 64 128.606 64 208c0 108.118-27.643 135.809-49.893 158.059C-16.042 396.208 5.325 448 48.048 448H160c0 35.346 28.654 64 64 64s64-28.654 64-64h111.943c42.638 0 64.151-51.731 33.941-81.941zM224 472a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16c0 13.234 10.766 24 24 24z"] }; +var faBellSlash = { prefix: 'fas', iconName: 'bell-slash', icon: [576, 512, [], "f1f6", "M78.107 366.059C47.958 396.208 69.325 448 112.048 448H224c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h32.685L127.848 221.379c-2.198 97.078-28.439 123.378-49.741 144.68zM264 448c0 13.234 10.766 24 24 24a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16zm305.896 43.733l-10.762 12.086c-8.915 10.012-24.333 10.967-34.437 2.133L8.256 54.393C-1.848 45.558-2.811 30.28 6.104 20.267L16.865 8.181C25.781-1.831 41.199-2.786 51.303 6.049l113.81 99.512c24.017-28.778 57.946-48.996 96.55-55.39A31.85 31.85 0 0 1 256 32c0-17.673 14.327-32 32-32s32 14.327 32 32c0 6.75-2.095 13.008-5.663 18.17C390.169 62.731 448 128.606 448 208c0 108.118 27.634 135.809 49.884 158.059 12.149 12.149 15.923 27.776 13.33 42.121l56.53 49.427c10.104 8.835 11.067 24.113 2.152 34.126z"] }; +var faBicycle = { prefix: 'fas', iconName: 'bicycle', icon: [640, 512, [], "f206", "M512.509 192.001c-16.373-.064-32.03 2.955-46.436 8.495l-77.68-125.153A24 24 0 0 0 368.001 64h-64c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h50.649l14.896 24H256.002v-16c0-8.837-7.163-16-16-16h-87.459c-13.441 0-24.777 10.999-24.536 24.437.232 13.044 10.876 23.563 23.995 23.563h48.726l-29.417 47.52c-13.433-4.83-27.904-7.483-42.992-7.52C58.094 191.83.412 249.012.002 319.236-.413 390.279 57.055 448 128.002 448c59.642 0 109.758-40.793 123.967-96h52.033a24 24 0 0 0 20.406-11.367L410.37 201.77l14.938 24.067c-25.455 23.448-41.385 57.081-41.307 94.437.145 68.833 57.899 127.051 126.729 127.719 70.606.685 128.181-55.803 129.255-125.996 1.086-70.941-56.526-129.72-127.476-129.996zM186.75 265.772c9.727 10.529 16.673 23.661 19.642 38.228h-43.306l23.664-38.228zM128.002 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c5.869 0 11.586.653 17.099 1.859l-45.505 73.509C89.715 331.327 101.213 352 120.002 352h81.3c-12.37 28.225-40.562 48-73.3 48zm162.63-96h-35.624c-3.96-31.756-19.556-59.894-42.383-80.026L237.371 184h127.547l-74.286 120zm217.057 95.886c-41.036-2.165-74.049-35.692-75.627-76.755-.812-21.121 6.633-40.518 19.335-55.263l44.433 71.586c4.66 7.508 14.524 9.816 22.032 5.156l13.594-8.437c7.508-4.66 9.817-14.524 5.156-22.032l-44.468-71.643a79.901 79.901 0 0 1 19.858-2.497c44.112 0 80 35.888 80 80-.001 45.54-38.252 82.316-84.313 79.885z"] }; +var faBinoculars = { prefix: 'fas', iconName: 'binoculars', icon: [512, 512, [], "f1e5", "M192 104H96V56c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24v48zm224-48c0-13.255-10.745-24-24-24h-48c-13.255 0-24 10.745-24 24v48h96V56zM0 456c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H0v16zm88-328c-13.255 0-24 10.745-24 24C64 256 0 272 0 416h168V312c0-13.255 10.745-24 24-24V128H88zm256 328c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H344v16zM216 128v160h80V128h-80zm128 288h168c0-144-64-160-64-264 0-13.255-10.745-24-24-24H320v160c13.255 0 24 10.745 24 24v104z"] }; +var faBirthdayCake = { prefix: 'fas', iconName: 'birthday-cake', icon: [448, 512, [], "f1fd", "M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z"] }; +var faBlender = { prefix: 'fas', iconName: 'blender', icon: [512, 512, [], "f517", "M416 384H160c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-128 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm40-416h166.54L512 0H48C21.49 0 0 21.49 0 48v160c0 26.51 21.49 48 48 48h103.27l8.73 96h256l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H328c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM64 192V64h69.82l11.64 128H64z"] }; +var faBlind = { prefix: 'fas', iconName: 'blind', icon: [384, 512, [], "f29d", "M380.15 510.837a8 8 0 0 1-10.989-2.687l-125.33-206.427a31.923 31.923 0 0 0 12.958-9.485l126.048 207.608a8 8 0 0 1-2.687 10.991zM142.803 314.338l-32.54 89.485 36.12 88.285c6.693 16.36 25.377 24.192 41.733 17.501 16.357-6.692 24.193-25.376 17.501-41.734l-62.814-153.537zM96 88c24.301 0 44-19.699 44-44S120.301 0 96 0 52 19.699 52 44s19.699 44 44 44zm154.837 169.128l-120-152c-4.733-5.995-11.75-9.108-18.837-9.112V96H80v.026c-7.146.003-14.217 3.161-18.944 9.24L0 183.766v95.694c0 13.455 11.011 24.791 24.464 24.536C37.505 303.748 48 293.1 48 280v-79.766l16-20.571v140.698L9.927 469.055c-6.04 16.609 2.528 34.969 19.138 41.009 16.602 6.039 34.968-2.524 41.009-19.138L136 309.638V202.441l-31.406-39.816a4 4 0 1 1 6.269-4.971l102.3 129.217c9.145 11.584 24.368 11.339 33.708 3.965 10.41-8.216 12.159-23.334 3.966-33.708z"] }; +var faBold = { prefix: 'fas', iconName: 'bold', icon: [384, 512, [], "f032", "M304.793 243.891c33.639-18.537 53.657-54.16 53.657-95.693 0-48.236-26.25-87.626-68.626-104.179C265.138 34.01 240.849 32 209.661 32H24c-8.837 0-16 7.163-16 16v33.049c0 8.837 7.163 16 16 16h33.113v318.53H24c-8.837 0-16 7.163-16 16V464c0 8.837 7.163 16 16 16h195.69c24.203 0 44.834-1.289 66.866-7.584C337.52 457.193 376 410.647 376 350.014c0-52.168-26.573-91.684-71.207-106.123zM142.217 100.809h67.444c16.294 0 27.536 2.019 37.525 6.717 15.828 8.479 24.906 26.502 24.906 49.446 0 35.029-20.32 56.79-53.029 56.79h-76.846V100.809zm112.642 305.475c-10.14 4.056-22.677 4.907-31.409 4.907h-81.233V281.943h84.367c39.645 0 63.057 25.38 63.057 63.057.001 28.425-13.66 52.483-34.782 61.284z"] }; +var faBolt = { prefix: 'fas', iconName: 'bolt', icon: [320, 512, [], "f0e7", "M295.973 160H180.572L215.19 30.184C219.25 14.956 207.756 0 192 0H56C43.971 0 33.8 8.905 32.211 20.828l-31.996 240C-1.704 275.217 9.504 288 24.004 288h118.701L96.646 482.466C93.05 497.649 104.659 512 119.992 512c8.35 0 16.376-4.374 20.778-11.978l175.973-303.997c9.244-15.967-2.288-36.025-20.77-36.025z"] }; +var faBomb = { prefix: 'fas', iconName: 'bomb', icon: [512, 512, [], "f1e2", "M440.5 88.5l-52 52L415 167c9.4 9.4 9.4 24.6 0 33.9l-17.4 17.4c11.8 26.1 18.4 55.1 18.4 85.6 0 114.9-93.1 208-208 208S0 418.9 0 304 93.1 96 208 96c30.5 0 59.5 6.6 85.6 18.4L311 97c9.4-9.4 24.6-9.4 33.9 0l26.5 26.5 52-52 17.1 17zM500 60h-24c-6.6 0-12 5.4-12 12s5.4 12 12 12h24c6.6 0 12-5.4 12-12s-5.4-12-12-12zM440 0c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12s12-5.4 12-12V12c0-6.6-5.4-12-12-12zm33.9 55l17-17c4.7-4.7 4.7-12.3 0-17-4.7-4.7-12.3-4.7-17 0l-17 17c-4.7 4.7-4.7 12.3 0 17 4.8 4.7 12.4 4.7 17 0zm-67.8 0c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17zm67.8 34c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17zM112 272c0-35.3 28.7-64 64-64 8.8 0 16-7.2 16-16s-7.2-16-16-16c-52.9 0-96 43.1-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16z"] }; +var faBook = { prefix: 'fas', iconName: 'book', icon: [448, 512, [], "f02d", "M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z"] }; +var faBookOpen = { prefix: 'fas', iconName: 'book-open', icon: [576, 512, [], "f518", "M542.2.1c-54.8 3.1-163.7 14.4-231 55.6-4.6 2.8-7.3 7.9-7.3 13.2v363.9c0 11.5 12.6 18.8 23.3 13.5 69.2-34.8 169.2-44.3 218.7-46.9 16.9-.9 30-14.4 30-30.7v-338C576 13 560.6-1 542.2.1zM264.7 55.6C197.5 14.5 88.6 3.2 33.8.1 15.4-1 0 13 0 30.7v337.8c0 16.2 13.1 29.8 30 30.7 49.5 2.6 149.6 12.1 218.8 47 10.6 5.4 23.2-1.9 23.2-13.5V68.6c0-5.3-2.6-10.1-7.3-13z"] }; +var faBookmark = { prefix: 'fas', iconName: 'bookmark', icon: [384, 512, [], "f02e", "M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z"] }; +var faBowlingBall = { prefix: 'fas', iconName: 'bowling-ball', icon: [496, 512, [], "f436", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM120 192c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64-96c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm48 144c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faBox = { prefix: 'fas', iconName: 'box', icon: [512, 512, [], "f466", "M509.5 184.6L458.9 32.8C452.4 13.2 434.1 0 413.4 0H272v192h238.7c-.4-2.5-.4-5-1.2-7.4zM240 0H98.6c-20.7 0-39 13.2-45.5 32.8L2.5 184.6c-.8 2.4-.8 4.9-1.2 7.4H240V0zM0 224v240c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V224H0z"] }; +var faBoxOpen = { prefix: 'fas', iconName: 'box-open', icon: [640, 512, [], "f49e", "M53.2 41L1.7 143.8c-4.6 9.2.3 20.2 10.1 23l197.9 56.5c7.1 2 14.7-1 18.5-7.3L320 64 69.8 32.1c-6.9-.8-13.5 2.7-16.6 8.9zm585.1 102.8L586.8 41c-3.1-6.2-9.8-9.8-16.7-8.9L320 64l91.7 152.1c3.8 6.3 11.4 9.3 18.5 7.3l197.9-56.5c9.9-2.9 14.7-13.9 10.2-23.1zM425.7 256c-16.9 0-32.8-9-41.4-23.4L320 126l-64.2 106.6c-8.7 14.5-24.6 23.5-41.5 23.5-4.5 0-9-.6-13.3-1.9L64 215v178c0 14.7 10 27.5 24.2 31l216.2 54.1c10.2 2.5 20.9 2.5 31 0L551.8 424c14.2-3.6 24.2-16.4 24.2-31V215l-137 39.1c-4.3 1.3-8.8 1.9-13.3 1.9z"] }; +var faBoxes = { prefix: 'fas', iconName: 'boxes', icon: [576, 512, [], "f468", "M560 288h-80v96l-32-21.3-32 21.3v-96h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16zm-384-64h224c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16h-80v96l-32-21.3L256 96V0h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16zm64 64h-80v96l-32-21.3L96 384v-96H16c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16z"] }; +var faBraille = { prefix: 'fas', iconName: 'braille', icon: [640, 512, [], "f2a1", "M128 256c0 35.346-28.654 64-64 64S0 291.346 0 256s28.654-64 64-64 64 28.654 64 64zM64 384c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352C28.654 32 0 60.654 0 96s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm224 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-320c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; +var faBriefcase = { prefix: 'fas', iconName: 'briefcase', icon: [512, 512, [], "f0b1", "M320 288h192v144c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V288h192v20c0 6.627 5.373 12 12 12h104c6.627 0 12-5.373 12-12v-20zm192-112v80H0v-80c0-26.51 21.49-48 48-48h80V80c0-26.51 21.49-48 48-48h160c26.51 0 48 21.49 48 48v48h80c26.51 0 48 21.49 48 48zM320 96H192v32h128V96z"] }; +var faBriefcaseMedical = { prefix: 'fas', iconName: 'briefcase-medical', icon: [512, 512, [], "f469", "M464 128h-80V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48zM192 96h128v32H192V96zm160 248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48z"] }; +var faBroadcastTower = { prefix: 'fas', iconName: 'broadcast-tower', icon: [640, 512, [], "f519", "M150.94 192h33.73c11.01 0 18.61-10.83 14.86-21.18-4.93-13.58-7.55-27.98-7.55-42.82s2.62-29.24 7.55-42.82C203.29 74.83 195.68 64 184.67 64h-33.73c-7.01 0-13.46 4.49-15.41 11.23C130.64 92.21 128 109.88 128 128c0 18.12 2.64 35.79 7.54 52.76 1.94 6.74 8.39 11.24 15.4 11.24zM89.92 23.34C95.56 12.72 87.97 0 75.96 0H40.63c-6.27 0-12.14 3.59-14.74 9.31C9.4 45.54 0 85.65 0 128c0 24.75 3.12 68.33 26.69 118.86 2.62 5.63 8.42 9.14 14.61 9.14h34.84c12.02 0 19.61-12.74 13.95-23.37-49.78-93.32-16.71-178.15-.17-209.29zM614.06 9.29C611.46 3.58 605.6 0 599.33 0h-35.42c-11.98 0-19.66 12.66-14.02 23.25 18.27 34.29 48.42 119.42.28 209.23-5.72 10.68 1.8 23.52 13.91 23.52h35.23c6.27 0 12.13-3.58 14.73-9.29C630.57 210.48 640 170.36 640 128s-9.42-82.48-25.94-118.71zM489.06 64h-33.73c-11.01 0-18.61 10.83-14.86 21.18 4.93 13.58 7.55 27.98 7.55 42.82s-2.62 29.24-7.55 42.82c-3.76 10.35 3.85 21.18 14.86 21.18h33.73c7.02 0 13.46-4.49 15.41-11.24 4.9-16.97 7.53-34.64 7.53-52.76 0-18.12-2.64-35.79-7.54-52.76-1.94-6.75-8.39-11.24-15.4-11.24zm-116.3 100.12c7.05-10.29 11.2-22.71 11.2-36.12 0-35.35-28.63-64-63.96-64-35.32 0-63.96 28.65-63.96 64 0 13.41 4.15 25.83 11.2 36.12l-130.5 313.41c-3.4 8.15.46 17.52 8.61 20.92l29.51 12.31c8.15 3.4 17.52-.46 20.91-8.61L244.96 384h150.07l49.2 118.15c3.4 8.16 12.76 12.01 20.91 8.61l29.51-12.31c8.15-3.4 12-12.77 8.61-20.92l-130.5-313.41zM271.62 320L320 203.81 368.38 320h-96.76z"] }; +var faBroom = { prefix: 'fas', iconName: 'broom', icon: [512, 512, [], "f51a", "M10.8 247.2C-.7 251.8-3.7 266.7 5 275.4l54.8 54.8 73.2-24.4-24.4 73.2 128 128c8.8 8.8 23.6 5.7 28.2-5.8l98.1-243.7-108.4-108.4-243.7 98.1zM507.3 27.3L484.7 4.7c-6.2-6.3-16.4-6.3-22.6 0L359.8 106.9l-40.4-40.4c-4.2-4.3-11.4-3-13.9 2.5l-27.2 58.6 106.1 106.1 58.6-27.2c5.4-2.5 6.7-9.7 2.5-13.9l-40.4-40.4L507.3 49.9c6.3-6.2 6.3-16.3 0-22.6z"] }; +var faBug = { prefix: 'fas', iconName: 'bug', icon: [512, 512, [], "f188", "M511.988 288.9c-.478 17.43-15.217 31.1-32.653 31.1H424v16c0 21.864-4.882 42.584-13.6 61.145l60.228 60.228c12.496 12.497 12.496 32.758 0 45.255-12.498 12.497-32.759 12.496-45.256 0l-54.736-54.736C345.886 467.965 314.351 480 280 480V236c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v244c-34.351 0-65.886-12.035-90.636-32.108l-54.736 54.736c-12.498 12.497-32.759 12.496-45.256 0-12.496-12.497-12.496-32.758 0-45.255l60.228-60.228C92.882 378.584 88 357.864 88 336v-16H32.666C15.23 320 .491 306.33.013 288.9-.484 270.816 14.028 256 32 256h56v-58.745l-46.628-46.628c-12.496-12.497-12.496-32.758 0-45.255 12.498-12.497 32.758-12.497 45.256 0L141.255 160h229.489l54.627-54.627c12.498-12.497 32.758-12.497 45.256 0 12.496 12.497 12.496 32.758 0 45.255L424 197.255V256h56c17.972 0 32.484 14.816 31.988 32.9zM257 0c-61.856 0-112 50.144-112 112h224C369 50.144 318.856 0 257 0z"] }; +var faBuilding = { prefix: 'fas', iconName: 'building', icon: [448, 512, [], "f1ad", "M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z"] }; +var faBullhorn = { prefix: 'fas', iconName: 'bullhorn', icon: [576, 512, [], "f0a1", "M576 224c0-20.896-13.36-38.666-32-45.258V64c0-35.346-28.654-64-64-64-64.985 56-142.031 128-272 128H48c-26.51 0-48 21.49-48 48v96c0 26.51 21.49 48 48 48h43.263c-18.742 64.65 2.479 116.379 18.814 167.44 1.702 5.32 5.203 9.893 9.922 12.88 20.78 13.155 68.355 15.657 93.773 5.151 16.046-6.633 19.96-27.423 7.522-39.537-18.508-18.026-30.136-36.91-19.795-60.858a12.278 12.278 0 0 0-1.045-11.673c-16.309-24.679-3.581-62.107 28.517-72.752C346.403 327.887 418.591 395.081 480 448c35.346 0 64-28.654 64-64V269.258c18.64-6.592 32-24.362 32-45.258zm-96 139.855c-54.609-44.979-125.033-92.94-224-104.982v-69.747c98.967-12.042 169.391-60.002 224-104.982v279.711z"] }; +var faBullseye = { prefix: 'fas', iconName: 'bullseye', icon: [512, 512, [], "f140", "M256 72c101.689 0 184 82.295 184 184 0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-101.689 82.295-184 184-184m0-64C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 184c35.29 0 64 28.71 64 64s-28.71 64-64 64-64-28.71-64-64 28.71-64 64-64m0-64c-70.692 0-128 57.308-128 128s57.308 128 128 128 128-57.308 128-128-57.308-128-128-128z"] }; +var faBurn = { prefix: 'fas', iconName: 'burn', icon: [384, 512, [], "f46a", "M192 0C79.7 101.3 0 220.9 0 300.5 0 425 79 512 192 512s192-87 192-211.5c0-79.9-80.2-199.6-192-300.5zm0 448c-56.5 0-96-39-96-94.8 0-13.5 4.6-61.5 96-161.2 91.4 99.7 96 147.7 96 161.2 0 55.8-39.5 94.8-96 94.8z"] }; +var faBus = { prefix: 'fas', iconName: 'bus', icon: [512, 512, [], "f207", "M512 152v80c0 13.255-10.745 24-24 24h-8v168c0 13.255-10.745 24-24 24h-8v40c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24v-40H160v40c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24v-40h-8c-13.255 0-24-10.745-24-24V256h-8c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h8V80C32 35.817 132.288 0 256 0s224 35.817 224 80v48h8c13.255 0 24 10.745 24 24zM112 320c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288 0c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm32-56V120c0-13.255-10.745-24-24-24H104c-13.255 0-24 10.745-24 24v144c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z"] }; +var faCalculator = { prefix: 'fas', iconName: 'calculator', icon: [448, 512, [], "f1ec", "M0 464V48C0 21.49 21.49 0 48 0h352c26.51 0 48 21.49 48 48v416c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm384-284V76c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v104c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12zM128 308v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm256 128V268c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-256 0v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm128-128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm0 128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"] }; +var faCalendar = { prefix: 'fas', iconName: 'calendar', icon: [448, 512, [], "f133", "M12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm436-44v-36c0-26.5-21.5-48-48-48h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v36c0 6.6 5.4 12 12 12h424c6.6 0 12-5.4 12-12z"] }; +var faCalendarAlt = { prefix: 'fas', iconName: 'calendar-alt', icon: [448, 512, [], "f073", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm116 204c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40z"] }; +var faCalendarCheck = { prefix: 'fas', iconName: 'calendar-check', icon: [448, 512, [], "f274", "M436 160H12c-6.627 0-12-5.373-12-12v-36c0-26.51 21.49-48 48-48h48V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h128V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h48c26.51 0 48 21.49 48 48v36c0 6.627-5.373 12-12 12zM12 192h424c6.627 0 12 5.373 12 12v260c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V204c0-6.627 5.373-12 12-12zm333.296 95.947l-28.169-28.398c-4.667-4.705-12.265-4.736-16.97-.068L194.12 364.665l-45.98-46.352c-4.667-4.705-12.266-4.736-16.971-.068l-28.397 28.17c-4.705 4.667-4.736 12.265-.068 16.97l82.601 83.269c4.667 4.705 12.265 4.736 16.97.068l142.953-141.805c4.705-4.667 4.736-12.265.068-16.97z"] }; +var faCalendarMinus = { prefix: 'fas', iconName: 'calendar-minus', icon: [448, 512, [], "f272", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm304 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H132c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h184z"] }; +var faCalendarPlus = { prefix: 'fas', iconName: 'calendar-plus', icon: [448, 512, [], "f271", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm316 140c0-6.6-5.4-12-12-12h-60v-60c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v60h-60c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h60v60c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-60h60c6.6 0 12-5.4 12-12v-40z"] }; +var faCalendarTimes = { prefix: 'fas', iconName: 'calendar-times', icon: [448, 512, [], "f273", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm257.3 160l48.1-48.1c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0L224 306.7l-48.1-48.1c-4.7-4.7-12.3-4.7-17 0l-28.3 28.3c-4.7 4.7-4.7 12.3 0 17l48.1 48.1-48.1 48.1c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l48.1-48.1 48.1 48.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L269.3 352z"] }; +var faCamera = { prefix: 'fas', iconName: 'camera', icon: [512, 512, [], "f030", "M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z"] }; +var faCameraRetro = { prefix: 'fas', iconName: 'camera-retro', icon: [512, 512, [], "f083", "M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm0 32h106c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H38c-3.3 0-6-2.7-6-6V80c0-8.8 7.2-16 16-16zm426 96H38c-3.3 0-6-2.7-6-6v-36c0-3.3 2.7-6 6-6h138l30.2-45.3c1.1-1.7 3-2.7 5-2.7H464c8.8 0 16 7.2 16 16v74c0 3.3-2.7 6-6 6zM256 424c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88zm-48 104c-8.8 0-16-7.2-16-16 0-35.3 28.7-64 64-64 8.8 0 16 7.2 16 16s-7.2 16-16 16c-17.6 0-32 14.4-32 32 0 8.8-7.2 16-16 16z"] }; +var faCapsules = { prefix: 'fas', iconName: 'capsules', icon: [576, 512, [], "f46b", "M555.3 300.1L424.2 112.8C401.9 81 366.4 64 330.4 64c-22.6 0-45.5 6.7-65.5 20.7-19.7 13.8-33.7 32.8-41.5 53.8C220.5 79.2 172 32 112 32 50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V218.9c3.3 8.6 7.3 17.1 12.8 25L368 431.2c22.2 31.8 57.7 48.8 93.8 48.8 22.7 0 45.5-6.7 65.5-20.7 51.7-36.2 64.2-107.5 28-159.2zM160 256H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm194.8 44.9l-65.6-93.7c-7.7-11-10.7-24.4-8.3-37.6 2.3-13.2 9.7-24.8 20.7-32.5 8.5-6 18.5-9.1 28.8-9.1 16.5 0 31.9 8 41.3 21.5l65.6 93.7-82.5 57.7z"] }; +var faCar = { prefix: 'fas', iconName: 'car', icon: [512, 512, [], "f1b9", "M499.991 168h-54.815l-7.854-20.944c-9.192-24.513-25.425-45.351-46.942-60.263S343.651 64 317.472 64H194.528c-26.18 0-51.391 7.882-72.908 22.793-21.518 14.912-37.75 35.75-46.942 60.263L66.824 168H12.009c-8.191 0-13.974 8.024-11.384 15.795l8 24A12 12 0 0 0 20.009 216h28.815l-.052.14C29.222 227.093 16 247.997 16 272v48c0 16.225 6.049 31.029 16 42.309V424c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-40h256v40c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-61.691c9.951-11.281 16-26.085 16-42.309v-48c0-24.003-13.222-44.907-32.772-55.86l-.052-.14h28.815a12 12 0 0 0 11.384-8.205l8-24c2.59-7.771-3.193-15.795-11.384-15.795zm-365.388 1.528C143.918 144.689 168 128 194.528 128h122.944c26.528 0 50.61 16.689 59.925 41.528L391.824 208H120.176l14.427-38.472zM88 328c-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32s48 30.327 48 48-30.327 16-48 16zm336 0c-17.673 0-48 1.673-48-16 0-17.673 30.327-48 48-48s32 14.327 32 32c0 17.673-14.327 32-32 32z"] }; +var faCaretDown = { prefix: 'fas', iconName: 'caret-down', icon: [320, 512, [], "f0d7", "M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z"] }; +var faCaretLeft = { prefix: 'fas', iconName: 'caret-left', icon: [192, 512, [], "f0d9", "M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z"] }; +var faCaretRight = { prefix: 'fas', iconName: 'caret-right', icon: [192, 512, [], "f0da", "M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z"] }; +var faCaretSquareDown = { prefix: 'fas', iconName: 'caret-square-down', icon: [448, 512, [], "f150", "M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM92.5 220.5l123 123c4.7 4.7 12.3 4.7 17 0l123-123c7.6-7.6 2.2-20.5-8.5-20.5H101c-10.7 0-16.1 12.9-8.5 20.5z"] }; +var faCaretSquareLeft = { prefix: 'fas', iconName: 'caret-square-left', icon: [448, 512, [], "f191", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM259.515 124.485l-123.03 123.03c-4.686 4.686-4.686 12.284 0 16.971l123.029 123.029c7.56 7.56 20.485 2.206 20.485-8.485V132.971c.001-10.691-12.925-16.045-20.484-8.486z"] }; +var faCaretSquareRight = { prefix: 'fas', iconName: 'caret-square-right', icon: [448, 512, [], "f152", "M48 32h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48zm140.485 355.515l123.029-123.029c4.686-4.686 4.686-12.284 0-16.971l-123.029-123.03c-7.56-7.56-20.485-2.206-20.485 8.485v246.059c0 10.691 12.926 16.045 20.485 8.486z"] }; +var faCaretSquareUp = { prefix: 'fas', iconName: 'caret-square-up', icon: [448, 512, [], "f151", "M0 432V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm355.515-140.485l-123.03-123.03c-4.686-4.686-12.284-4.686-16.971 0L92.485 291.515c-7.56 7.56-2.206 20.485 8.485 20.485h246.059c10.691 0 16.045-12.926 8.486-20.485z"] }; +var faCaretUp = { prefix: 'fas', iconName: 'caret-up', icon: [320, 512, [], "f0d8", "M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z"] }; +var faCartArrowDown = { prefix: 'fas', iconName: 'cart-arrow-down', icon: [576, 512, [], "f218", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z"] }; +var faCartPlus = { prefix: 'fas', iconName: 'cart-plus', icon: [576, 512, [], "f217", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM408 168h-48v-40c0-8.837-7.163-16-16-16h-16c-8.837 0-16 7.163-16 16v40h-48c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h48v40c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-40h48c8.837 0 16-7.163 16-16v-16c0-8.837-7.163-16-16-16z"] }; +var faCertificate = { prefix: 'fas', iconName: 'certificate', icon: [512, 512, [], "f0a3", "M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z"] }; +var faChalkboard = { prefix: 'fas', iconName: 'chalkboard', icon: [640, 512, [], "f51b", "M96 64h448v352h64V40c0-22.06-17.94-40-40-40H72C49.94 0 32 17.94 32 40v376h64V64zm528 384H480v-64H288v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"] }; +var faChalkboardTeacher = { prefix: 'fas', iconName: 'chalkboard-teacher', icon: [640, 512, [], "f51c", "M208 352c-2.39 0-4.78.35-7.06 1.09C187.98 357.3 174.35 360 160 360c-14.35 0-27.98-2.7-40.95-6.91-2.28-.74-4.66-1.09-7.05-1.09C49.94 352-.33 402.48 0 464.62.14 490.88 21.73 512 48 512h224c26.27 0 47.86-21.12 48-47.38.33-62.14-49.94-112.62-112-112.62zm-48-32c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM592 0H208c-26.47 0-48 22.25-48 49.59V96c23.42 0 45.1 6.78 64 17.8V64h352v288h-64v-64H384v64h-76.24c19.1 16.69 33.12 38.73 39.69 64H592c26.47 0 48-22.25 48-49.59V49.59C640 22.25 618.47 0 592 0z"] }; +var faChartArea = { prefix: 'fas', iconName: 'chart-area', icon: [512, 512, [], "f1fe", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z"] }; +var faChartBar = { prefix: 'fas', iconName: 'chart-bar', icon: [512, 512, [], "f080", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zm-308-44v-72c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V204c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V108c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"] }; +var faChartLine = { prefix: 'fas', iconName: 'chart-line', icon: [512, 512, [], "f201", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM456 96H344c-21.4 0-32.1 25.9-17 41l32.9 32.9-72 72.9-55.6-55.6c-4.7-4.7-12.2-4.7-16.9 0L96.4 305c-4.7 4.6-4.8 12.2-.2 16.9l28.5 29.4c4.7 4.8 12.4 4.9 17.1.1l82.1-82.1 55.5 55.5c4.7 4.7 12.3 4.7 17 0l109.2-109.2L439 249c15.1 15.1 41 4.4 41-17V120c0-13.3-10.7-24-24-24z"] }; +var faChartPie = { prefix: 'fas', iconName: 'chart-pie', icon: [576, 512, [], "f200", "M288 12.3V240h227.7c6.9 0 12.3-5.8 12-12.7-6.4-122.4-104.5-220.6-227-227-6.9-.3-12.7 5.1-12.7 12zM552.7 288c6.9 0 12.3 5.8 12 12.7-2.8 53.2-23.2 105.6-61.2 147.8-4.6 5.1-12.6 5.4-17.5.5L325 288h227.7zM401 433c4.8 4.8 4.7 12.8-.4 17.3-42.6 38.4-99 61.7-160.8 61.7C107.6 511.9-.2 403.8 0 271.5.2 143.4 100.8 38.9 227.3 32.3c6.9-.4 12.7 5.1 12.7 12V272l161 161z"] }; +var faCheck = { prefix: 'fas', iconName: 'check', icon: [512, 512, [], "f00c", "M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"] }; +var faCheckCircle = { prefix: 'fas', iconName: 'check-circle', icon: [512, 512, [], "f058", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"] }; +var faCheckSquare = { prefix: 'fas', iconName: 'check-square', icon: [448, 512, [], "f14a", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"] }; +var faChess = { prefix: 'fas', iconName: 'chess', icon: [512, 512, [], "f439", "M199.821 217.633a6 6 0 0 1 6 6l-.001 20.766a6 6 0 0 1-6 6h-25.805c0 31.715-2.153 96.201 17.398 153.229H64.597C84.54 345.452 82.02 279.245 82.02 250.399H56.183a6 6 0 0 1-6-6l.002-20.766a6 6 0 0 1 6-6h143.636zM41.554 115.088l34.58 95.071h103.734l34.572-95.072c2.846-7.826-2.95-16.101-11.278-16.101H152v-30.22h21.57a6 6 0 0 0 6-6V40.383a6 6 0 0 0-6-6h-28.367V6a6 6 0 0 0-6-6H116.82a6 6 0 0 0-6 6v28.383H82.421a6 6 0 0 0-6 6v22.383a6 6 0 0 0 6 6H104v30.219H52.831c-8.328.001-14.124 8.276-11.277 16.103zM222.678 445.17v-28.067a6 6 0 0 0-6-6H39.322a6 6 0 0 0-6 6v28.067l-22.148 14.164a6 6 0 0 0-2.767 5.055V506a6 6 0 0 0 6 6h227.187a6 6 0 0 0 6-6v-41.612a6 6 0 0 0-2.767-5.055l-22.149-14.163zm90.578-144.225l24.88 16.963c.09 18.124-.167 63.904-11.905 114.522h147.526c-11.713-50.475-11.969-96.324-11.882-114.537l24.859-16.949a3.856 3.856 0 0 0 1.684-3.187v-69.901a3.857 3.857 0 0 0-3.857-3.857h-27.655a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.858-3.857h-52.918a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.857-3.857H315.43a3.857 3.857 0 0 0-3.857 3.857v69.901a3.855 3.855 0 0 0 1.683 3.188zm71.585 51.906c0-8.372 6.787-15.158 15.159-15.158s15.158 6.787 15.158 15.158v30.318h-30.317v-30.318zM504.62 470.059l-13.664-10.639v-15.552a3.857 3.857 0 0 0-3.857-3.857H312.915a3.857 3.857 0 0 0-3.857 3.857v15.552l-13.677 10.639a3.857 3.857 0 0 0-1.488 3.044v35.039a3.857 3.857 0 0 0 3.857 3.857h204.5a3.857 3.857 0 0 0 3.857-3.857v-35.04a3.859 3.859 0 0 0-1.487-3.043z"] }; +var faChessBishop = { prefix: 'fas', iconName: 'chess-bishop', icon: [320, 512, [], "f43a", "M123.158 77.881C107.369 72.53 96 57.597 96 40c0-22.091 17.909-40 40-40h47.796c22.091 0 40 17.909 40 40 0 17.541-11.295 32.434-27.005 37.829 23.993 16.657 48.577 46.839 68.703 82.05L144.929 280.443a6 6 0 0 0 0 8.485l14.142 14.142a6 6 0 0 0 8.485 0L280.9 189.726c17.758 38.297 29.371 79.443 29.371 114.273 0 53.786-22.897 75.788-58.446 86.033V448H68.174v-57.97C32.631 379.784 9.739 357.781 9.739 304c0-78.029 58.281-187.766 113.419-226.119zM320 500v-24c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12z"] }; +var faChessBoard = { prefix: 'fas', iconName: 'chess-board', icon: [512, 512, [], "f43c", "M256 256v64h-64v-64h64zm0-256h-64v64h64V0zm0 256h64v-64h-64v64zM384 0h-64v64h64V0zm0 512h64v-64h-64v64zm128-64v-64h-64v64h64zm-384 64h64v-64h-64v64zm0-512H64v64h64V0zm384 192v-64h-64v64h64zm0 128v-64h-64v64h64zM0 512h64v-64H0v64zM0 64v64h64V64H0zm0 128v64h64v-64H0zm0 128v64h64v-64H0zm256 192h64v-64h-64v64zm-64-128v64h64v-64h-64zm64-192v-64h-64v64h64zM64 384v64h64v-64H64zm64-128H64v64h64v-64zm256 128h64v-64h-64v64zM512 0h-64v64h64V0zM384 256h64v-64h-64v64zm0-192v64h64V64h-64zm-64 320v64h64v-64h-64zm-192-64v64h64v-64h-64zm128 0v64h64v-64h-64zm-64-128h-64v64h64v-64zm-64-64H64v64h64v-64zm192 192h64v-64h-64v64zM192 128V64h-64v64h64zm128 0V64h-64v64h64zm0 64h64v-64h-64v64z"] }; +var faChessKing = { prefix: 'fas', iconName: 'chess-king', icon: [448, 512, [], "f43f", "M416 476v24c0 6.627-5.373 12-12 12H44c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12zm-8.033-324H248v-48h50a6 6 0 0 0 6-6V62a6 6 0 0 0-6-6h-50V6a6 6 0 0 0-6-6h-36a6 6 0 0 0-6 6v50h-50a6 6 0 0 0-6 6v36a6 6 0 0 0 6 6h50v48H40.033c-27.574 0-46.879 27.244-37.738 53.259L87.582 448h272.836l85.287-242.741C454.846 179.244 435.541 152 407.967 152z"] }; +var faChessKnight = { prefix: 'fas', iconName: 'chess-knight', icon: [384, 512, [], "f441", "M352 224v224H32v-46.557c0-30.302 17.12-58.003 44.223-71.554l57.243-28.622A48 48 0 0 0 160 258.334V208l-22.127 11.063a23.996 23.996 0 0 0-12.55 15.645l-11.835 47.338a12 12 0 0 1-7.185 8.231l-29.601 11.84a11.998 11.998 0 0 1-9.33-.176L7.126 275.167A12 12 0 0 1 0 264.201v-158.26c0-6.365 2.529-12.47 7.03-16.971L16 80 1.789 51.578A16.937 16.937 0 0 1 0 44c0-6.627 5.373-12 12-12h148c106.039 0 192 85.961 192 192zm20 240H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12zM52 128c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z"] }; +var faChessPawn = { prefix: 'fas', iconName: 'chess-pawn', icon: [320, 512, [], "f443", "M264 448H56s60-42.743 60-176H84c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h40.209C95.721 210.56 76 181.588 76 148c0-46.392 37.608-84 84-84s84 37.608 84 84c0 33.588-19.721 62.56-48.209 76H236c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12h-32c0 133.257 60 176 60 176zm28 16H28c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h264c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12z"] }; +var faChessQueen = { prefix: 'fas', iconName: 'chess-queen', icon: [512, 512, [], "f445", "M436 512H76c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12zM255.579 0c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zm204.568 154.634c-5.768-3.045-12.916-.932-16.082 4.77-8.616 15.516-22.747 37.801-44.065 37.801-28.714 0-30.625-19.804-31.686-57.542-.183-6.492-5.501-11.664-11.995-11.664h-41.006c-5.175 0-9.754 3.328-11.388 8.238-8.89 26.709-26.073 40.992-47.925 40.992s-39.034-14.283-47.925-40.992c-1.634-4.91-6.213-8.238-11.388-8.238h-41.005c-6.495 0-11.813 5.174-11.995 11.667-1.052 37.642-2.934 57.539-31.688 57.539-20.691 0-33.817-20.224-44.425-38.025-3.266-5.48-10.258-7.431-15.899-4.453l-39.179 20.679a12 12 0 0 0-5.51 15.145L112 448h288l105.014-257.448a12 12 0 0 0-5.51-15.145l-39.357-20.773z"] }; +var faChessRook = { prefix: 'fas', iconName: 'chess-rook', icon: [384, 512, [], "f447", "M81.241 215.027C80.957 258.92 77.411 348.076 48 448h287.982c-29.4-99.604-32.936-188.912-33.221-232.975l45.418-42.312a11.998 11.998 0 0 0 3.82-8.78V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v44h-48V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v44H96V44c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v119.932c0 3.33 1.384 6.51 3.82 8.78l45.421 42.315zM160 256c0-17.673 14.327-32 32-32 17.673 0 32 14.327 32 32v64.004h-64V256zm224 220v24c0 6.627-5.373 12-12 12H12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12z"] }; +var faChevronCircleDown = { prefix: 'fas', iconName: 'chevron-circle-down', icon: [512, 512, [], "f13a", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM273 369.9l135.5-135.5c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L256 285.1 154.4 183.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L239 369.9c9.4 9.4 24.6 9.4 34 0z"] }; +var faChevronCircleLeft = { prefix: 'fas', iconName: 'chevron-circle-left', icon: [512, 512, [], "f137", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z"] }; +var faChevronCircleRight = { prefix: 'fas', iconName: 'chevron-circle-right', icon: [512, 512, [], "f138", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z"] }; +var faChevronCircleUp = { prefix: 'fas', iconName: 'chevron-circle-up', icon: [512, 512, [], "f139", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm231-113.9L103.5 277.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L256 226.9l101.6 101.6c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L273 142.1c-9.4-9.4-24.6-9.4-34 0z"] }; +var faChevronDown = { prefix: 'fas', iconName: 'chevron-down', icon: [448, 512, [], "f078", "M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"] }; +var faChevronLeft = { prefix: 'fas', iconName: 'chevron-left', icon: [320, 512, [], "f053", "M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z"] }; +var faChevronRight = { prefix: 'fas', iconName: 'chevron-right', icon: [320, 512, [], "f054", "M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z"] }; +var faChevronUp = { prefix: 'fas', iconName: 'chevron-up', icon: [448, 512, [], "f077", "M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z"] }; +var faChild = { prefix: 'fas', iconName: 'child', icon: [384, 512, [], "f1ae", "M120 72c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.764-32.235 72-72 72s-72-32.236-72-72zm254.627 1.373c-12.496-12.497-32.758-12.497-45.254 0L242.745 160H141.254L54.627 73.373c-12.496-12.497-32.758-12.497-45.254 0-12.497 12.497-12.497 32.758 0 45.255L104 213.254V480c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V368h16v112c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V213.254l94.627-94.627c12.497-12.497 12.497-32.757 0-45.254z"] }; +var faChurch = { prefix: 'fas', iconName: 'church', icon: [640, 512, [], "f51d", "M464.46 246.68L352 179.2V128h48c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-48V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v48h-48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v51.2l-112.46 67.48A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.65-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.54A32.024 32.024 0 0 0 0 395.96zm620.61-29.42L512 320v192h112c8.84 0 16-7.16 16-16V395.96c0-12.8-7.63-24.37-19.39-29.42z"] }; +var faCircle = { prefix: 'fas', iconName: 'circle', icon: [512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"] }; +var faCircleNotch = { prefix: 'fas', iconName: 'circle-notch', icon: [512, 512, [], "f1ce", "M288 39.056v16.659c0 10.804 7.281 20.159 17.686 23.066C383.204 100.434 440 171.518 440 256c0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-84.47 56.786-155.564 134.312-177.219C216.719 75.874 224 66.517 224 55.712V39.064c0-15.709-14.834-27.153-30.046-23.234C86.603 43.482 7.394 141.206 8.003 257.332c.72 137.052 111.477 246.956 248.531 246.667C393.255 503.711 504 392.788 504 256c0-115.633-79.14-212.779-186.211-240.236C302.678 11.889 288 23.456 288 39.056z"] }; +var faClipboard = { prefix: 'fas', iconName: 'clipboard', icon: [384, 512, [], "f328", "M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z"] }; +var faClipboardCheck = { prefix: 'fas', iconName: 'clipboard-check', icon: [384, 512, [], "f46c", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm121.2 231.8l-143 141.8c-4.7 4.7-12.3 4.6-17-.1l-82.6-83.3c-4.7-4.7-4.6-12.3.1-17L99.1 285c4.7-4.7 12.3-4.6 17 .1l46 46.4 106-105.2c4.7-4.7 12.3-4.6 17 .1l28.2 28.4c4.7 4.8 4.6 12.3-.1 17z"] }; +var faClipboardList = { prefix: 'fas', iconName: 'clipboard-list', icon: [384, 512, [], "f46d", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM96 424c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm96-192c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm128 368c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z"] }; +var faClock = { prefix: 'fas', iconName: 'clock', icon: [512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm57.1 350.1L224.9 294c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v137.7l63.5 46.2c5.4 3.9 6.5 11.4 2.6 16.8l-28.2 38.8c-3.9 5.3-11.4 6.5-16.8 2.6z"] }; +var faClone = { prefix: 'fas', iconName: 'clone', icon: [512, 512, [], "f24d", "M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z"] }; +var faClosedCaptioning = { prefix: 'fas', iconName: 'closed-captioning', icon: [512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM218.1 287.7c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2.1 48 51.1 70.5 92.3 32.6zm190.4 0c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.5 56.9-172.7 32.1-172.7-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 222.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6z"] }; +var faCloud = { prefix: 'fas', iconName: 'cloud', icon: [640, 512, [], "f0c2", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z"] }; +var faCloudDownloadAlt = { prefix: 'fas', iconName: 'cloud-download-alt', icon: [640, 512, [], "f381", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z"] }; +var faCloudUploadAlt = { prefix: 'fas', iconName: 'cloud-upload-alt', icon: [640, 512, [], "f382", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z"] }; +var faCode = { prefix: 'fas', iconName: 'code', icon: [640, 512, [], "f121", "M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"] }; +var faCodeBranch = { prefix: 'fas', iconName: 'code-branch', icon: [384, 512, [], "f126", "M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"] }; +var faCoffee = { prefix: 'fas', iconName: 'coffee', icon: [640, 512, [], "f0f4", "M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z"] }; +var faCog = { prefix: 'fas', iconName: 'cog', icon: [512, 512, [], "f013", "M444.788 291.1l42.616 24.599c4.867 2.809 7.126 8.618 5.459 13.985-11.07 35.642-29.97 67.842-54.689 94.586a12.016 12.016 0 0 1-14.832 2.254l-42.584-24.595a191.577 191.577 0 0 1-60.759 35.13v49.182a12.01 12.01 0 0 1-9.377 11.718c-34.956 7.85-72.499 8.256-109.219.007-5.49-1.233-9.403-6.096-9.403-11.723v-49.184a191.555 191.555 0 0 1-60.759-35.13l-42.584 24.595a12.016 12.016 0 0 1-14.832-2.254c-24.718-26.744-43.619-58.944-54.689-94.586-1.667-5.366.592-11.175 5.459-13.985L67.212 291.1a193.48 193.48 0 0 1 0-70.199l-42.616-24.599c-4.867-2.809-7.126-8.618-5.459-13.985 11.07-35.642 29.97-67.842 54.689-94.586a12.016 12.016 0 0 1 14.832-2.254l42.584 24.595a191.577 191.577 0 0 1 60.759-35.13V25.759a12.01 12.01 0 0 1 9.377-11.718c34.956-7.85 72.499-8.256 109.219-.007 5.49 1.233 9.403 6.096 9.403 11.723v49.184a191.555 191.555 0 0 1 60.759 35.13l42.584-24.595a12.016 12.016 0 0 1 14.832 2.254c24.718 26.744 43.619 58.944 54.689 94.586 1.667 5.366-.592 11.175-5.459 13.985L444.788 220.9a193.485 193.485 0 0 1 0 70.2zM336 256c0-44.112-35.888-80-80-80s-80 35.888-80 80 35.888 80 80 80 80-35.888 80-80z"] }; +var faCogs = { prefix: 'fas', iconName: 'cogs', icon: [640, 512, [], "f085", "M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z"] }; +var faCoins = { prefix: 'fas', iconName: 'coins', icon: [512, 512, [], "f51e", "M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z"] }; +var faColumns = { prefix: 'fas', iconName: 'columns', icon: [512, 512, [], "f0db", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z"] }; +var faComment = { prefix: 'fas', iconName: 'comment', icon: [512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32z"] }; +var faCommentAlt = { prefix: 'fas', iconName: 'comment-alt', icon: [512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 9.8 11.2 15.5 19.1 9.7L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z"] }; +var faCommentDots = { prefix: 'fas', iconName: 'comment-dots', icon: [512, 512, [], "f4ad", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faCommentSlash = { prefix: 'fas', iconName: 'comment-slash', icon: [640, 512, [], "f4b3", "M64 240c0 49.6 21.4 95 57 130.7-12.6 50.3-54.3 95.2-54.8 95.8-2.2 2.3-2.8 5.7-1.5 8.7 1.3 2.9 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 27.4 0 53.7-3.6 78.4-10L72.9 186.4c-5.6 17.1-8.9 35-8.9 53.6zm569.8 218.1l-114.4-88.4C554.6 334.1 576 289.2 576 240c0-114.9-114.6-208-256-208-65.1 0-124.2 20.1-169.4 52.7L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z"] }; +var faComments = { prefix: 'fas', iconName: 'comments', icon: [576, 512, [], "f086", "M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z"] }; +var faCompactDisc = { prefix: 'fas', iconName: 'compact-disc', icon: [496, 512, [], "f51f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 256H56c0-105.9 86.1-192 192-192v32c-88.2 0-160 71.8-160 160zm160 96c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"] }; +var faCompass = { prefix: 'fas', iconName: 'compass', icon: [512, 512, [], "f14e", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM307.446 120.844l-102.642 97.779a23.997 23.997 0 0 0-6.772 11.729l-33.359 137.779c-5.68 23.459 22.777 39.318 39.88 23.024l102.64-97.779a23.99 23.99 0 0 0 6.772-11.729l33.359-137.779c5.618-23.198-22.591-39.493-39.878-23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; +var faCompress = { prefix: 'fas', iconName: 'compress', icon: [448, 512, [], "f066", "M436 192H312c-13.3 0-24-10.7-24-24V44c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-276-24V44c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v84H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 300V344c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-84h84c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H312c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"] }; +var faCopy = { prefix: 'fas', iconName: 'copy', icon: [448, 512, [], "f0c5", "M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z"] }; +var faCopyright = { prefix: 'fas', iconName: 'copyright', icon: [512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm117.134 346.753c-1.592 1.867-39.776 45.731-109.851 45.731-84.692 0-144.484-63.26-144.484-145.567 0-81.303 62.004-143.401 143.762-143.401 66.957 0 101.965 37.315 103.422 38.904a12 12 0 0 1 1.238 14.623l-22.38 34.655c-4.049 6.267-12.774 7.351-18.234 2.295-.233-.214-26.529-23.88-61.88-23.88-46.116 0-73.916 33.575-73.916 76.082 0 39.602 25.514 79.692 74.277 79.692 38.697 0 65.28-28.338 65.544-28.625 5.132-5.565 14.059-5.033 18.508 1.053l24.547 33.572a12.001 12.001 0 0 1-.553 14.866z"] }; +var faCouch = { prefix: 'fas', iconName: 'couch', icon: [640, 512, [], "f4b8", "M160 224v64h320v-64c0-35.3 28.7-64 64-64h32c0-53-43-96-96-96H160c-53 0-96 43-96 96h32c35.3 0 64 28.7 64 64zm416-32h-32c-17.7 0-32 14.3-32 32v96H128v-96c0-17.7-14.3-32-32-32H64c-35.3 0-64 28.7-64 64 0 23.6 13 44 32 55.1V432c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-16h384v16c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V311.1c19-11.1 32-31.5 32-55.1 0-35.3-28.7-64-64-64z"] }; +var faCreditCard = { prefix: 'fas', iconName: 'credit-card', icon: [576, 512, [], "f09d", "M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V256H0v176zm192-68c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-40zm-128 0c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM576 80v48H0V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48z"] }; +var faCrop = { prefix: 'fas', iconName: 'crop', icon: [512, 512, [], "f125", "M488 352h-40V109.3l57-57c9.4-9.4 9.4-24.6 0-33.9L493.7 7c-9.4-9.4-24.6-9.4-33.9 0l-57 57H160V24c0-13.3-10.7-24-24-24H88C74.7 0 64 10.7 64 24v40H24C10.7 64 0 74.7 0 88v48c0 13.3 10.7 24 24 24h40v264c0 13.3 10.7 24 24 24h264v40c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24v-40h40c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zM306.7 160L160 306.7V160h146.7zM205.3 352L352 205.3V352H205.3z"] }; +var faCrosshairs = { prefix: 'fas', iconName: 'crosshairs', icon: [512, 512, [], "f05b", "M500 224h-30.364C455.724 130.325 381.675 56.276 288 42.364V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v30.364C130.325 56.276 56.276 130.325 42.364 224H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h30.364C56.276 381.675 130.325 455.724 224 469.636V500c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-30.364C381.675 455.724 455.724 381.675 469.636 288H500c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zM288 404.634V364c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40.634C165.826 392.232 119.783 346.243 107.366 288H148c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40.634C119.768 165.826 165.757 119.783 224 107.366V148c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40.634C346.174 119.768 392.217 165.757 404.634 224H364c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40.634C392.232 346.174 346.243 392.217 288 404.634zM288 256c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z"] }; +var faCrow = { prefix: 'fas', iconName: 'crow', icon: [640, 512, [], "f520", "M544 32h-16.36C513.04 12.68 490.09 0 464 0c-44.18 0-80 35.82-80 80v20.98L12.09 393.57A30.216 30.216 0 0 0 0 417.74c0 22.46 23.64 37.07 43.73 27.03L165.27 384h96.49l44.41 120.1c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38L312.94 384H352c1.91 0 3.76-.23 5.66-.29l44.51 120.38c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38l-41.24-111.53C485.74 352.8 544 279.26 544 192v-80l96-16c0-35.35-42.98-64-96-64zm-80 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"] }; +var faCrown = { prefix: 'fas', iconName: 'crown', icon: [640, 512, [], "f521", "M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.4 7.7-.8L128 416h384l72.3-192.8c2.5.4 5.1.8 7.7.8 26.5 0 48-21.5 48-48s-21.5-48-48-48z"] }; +var faCube = { prefix: 'fas', iconName: 'cube', icon: [512, 512, [], "f1b2", "M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z"] }; +var faCubes = { prefix: 'fas', iconName: 'cubes', icon: [512, 512, [], "f1b3", "M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z"] }; +var faCut = { prefix: 'fas', iconName: 'cut', icon: [448, 512, [], "f0c4", "M444.485 422.426c4.689 4.689 4.684 12.287 0 16.971-32.804 32.804-85.991 32.804-118.795 0L210.176 323.883l-24.859 24.859C189.63 359.657 192 371.552 192 384c0 53.019-42.981 96-96 96S0 437.019 0 384s42.981-96 96-96c4.536 0 8.995.322 13.363.93l32.93-32.93-32.93-32.93c-4.368.608-8.827.93-13.363.93-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96c0 12.448-2.37 24.343-6.682 35.258l24.859 24.859L325.69 72.603c32.804-32.804 85.991-32.804 118.795 0 4.684 4.684 4.689 12.282 0 16.971L278.059 256l166.426 166.426zM96 96c-17.645 0-32 14.355-32 32s14.355 32 32 32 32-14.355 32-32-14.355-32-32-32m0 256c-17.645 0-32 14.355-32 32s14.355 32 32 32 32-14.355 32-32-14.355-32-32-32m112-108c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12z"] }; +var faDatabase = { prefix: 'fas', iconName: 'database', icon: [448, 512, [], "f1c0", "M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z"] }; +var faDeaf = { prefix: 'fas', iconName: 'deaf', icon: [512, 512, [], "f2a4", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm268.485-52.201L480.2 3.515c-4.687-4.686-12.284-4.686-16.971 0L376.2 90.544c-4.686 4.686-4.686 12.284 0 16.971l28.285 28.285c4.686 4.686 12.284 4.686 16.97 0l87.03-87.029c4.687-4.688 4.687-12.286 0-16.972zM168.97 314.745c-4.686-4.686-12.284-4.686-16.97 0L3.515 463.23c-4.686 4.686-4.686 12.284 0 16.971L31.8 508.485c4.687 4.686 12.284 4.686 16.971 0L197.256 360c4.686-4.686 4.686-12.284 0-16.971l-28.286-28.284z"] }; +var faDesktop = { prefix: 'fas', iconName: 'desktop', icon: [576, 512, [], "f108", "M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z"] }; +var faDiagnoses = { prefix: 'fas', iconName: 'diagnoses', icon: [640, 512, [], "f470", "M496 256c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm-176-80c48.5 0 88-39.5 88-88S368.5 0 320 0s-88 39.5-88 88 39.5 88 88 88zM59.8 364c10.2 15.3 29.3 17.8 42.9 9.8 16.2-9.6 56.2-31.7 105.3-48.6V416h224v-90.7c49.1 16.8 89.1 39 105.3 48.6 13.6 8 32.7 5.3 42.9-9.8l17.8-26.7c8.8-13.2 7.6-34.6-10-45.1-11.9-7.1-29.7-17-51.1-27.4-28.1 46.1-99.4 17.8-87.7-35.1C409.3 217.2 365.1 208 320 208c-57 0-112.9 14.5-160 32.2-.2 40.2-47.6 63.3-79.2 36-11.2 6-21.3 11.6-28.7 16-17.6 10.5-18.8 31.8-10 45.1L59.8 364zM368 344c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-160 8c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm512 192H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z"] }; +var faDice = { prefix: 'fas', iconName: 'dice', icon: [640, 512, [], "f522", "M592 192H473.26c12.69 29.59 7.12 65.2-17 89.32L320 417.58V464c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48V240c0-26.51-21.49-48-48-48zM480 376c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm-46.37-186.7L258.7 14.37c-19.16-19.16-50.23-19.16-69.39 0L14.37 189.3c-19.16 19.16-19.16 50.23 0 69.39L189.3 433.63c19.16 19.16 50.23 19.16 69.39 0L433.63 258.7c19.16-19.17 19.16-50.24 0-69.4zM96 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"] }; +var faDiceFive = { prefix: 'fas', iconName: 'dice-five', icon: [448, 512, [], "f523", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceFour = { prefix: 'fas', iconName: 'dice-four', icon: [448, 512, [], "f524", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceOne = { prefix: 'fas', iconName: 'dice-one', icon: [448, 512, [], "f525", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM224 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceSix = { prefix: 'fas', iconName: 'dice-six', icon: [448, 512, [], "f526", "M384 0H64C28.65 0 0 28.65 0 64v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V64c0-35.35-28.65-64-64-64zM128 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceThree = { prefix: 'fas', iconName: 'dice-three', icon: [448, 512, [], "f527", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceTwo = { prefix: 'fas', iconName: 'dice-two', icon: [448, 512, [], "f528", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDivide = { prefix: 'fas', iconName: 'divide', icon: [448, 512, [], "f529", "M224 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm0-192c35.35 0 64-28.65 64-64s-28.65-64-64-64-64 28.65-64 64 28.65 64 64 64zm192 48H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; +var faDna = { prefix: 'fas', iconName: 'dna', icon: [448, 512, [], "f471", "M.1 494.1c-1.1 9.5 6.3 17.8 15.9 17.8l32.3.1c8.1 0 14.9-5.9 16-13.9.7-4.9 1.8-11.1 3.4-18.1H380c1.6 6.9 2.9 13.2 3.5 18.1 1.1 8 7.9 14 16 13.9l32.3-.1c9.6 0 17.1-8.3 15.9-17.8-4.6-37.9-25.6-129-118.9-207.7-17.6 12.4-37.1 24.2-58.5 35.4 6.2 4.6 11.4 9.4 17 14.2H159.7c21.3-18.1 47-35.6 78.7-51.4C410.5 199.1 442.1 65.8 447.9 17.9 449 8.4 441.6.1 432 .1L399.6 0c-8.1 0-14.9 5.9-16 13.9-.7 4.9-1.8 11.1-3.4 18.1H67.8c-1.6-7-2.7-13.1-3.4-18.1-1.1-8-7.9-14-16-13.9L16.1.1C6.5.1-1 8.4.1 17.9 5.3 60.8 31.4 171.8 160 256 31.5 340.2 5.3 451.2.1 494.1zM224 219.6c-25.1-13.7-46.4-28.4-64.3-43.6h128.5c-17.8 15.2-39.1 30-64.2 43.6zM355.1 96c-5.8 10.4-12.8 21.1-21 32H114c-8.3-10.9-15.3-21.6-21-32h262.1zM92.9 416c5.8-10.4 12.8-21.1 21-32h219.4c8.3 10.9 15.4 21.6 21.2 32H92.9z"] }; +var faDollarSign = { prefix: 'fas', iconName: 'dollar-sign', icon: [288, 512, [], "f155", "M209.2 233.4l-108-31.6C88.7 198.2 80 186.5 80 173.5c0-16.3 13.2-29.5 29.5-29.5h66.3c12.2 0 24.2 3.7 34.2 10.5 6.1 4.1 14.3 3.1 19.5-2l34.8-34c7.1-6.9 6.1-18.4-1.8-24.5C238 74.8 207.4 64.1 176 64V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C45.8 64-5.4 118.7.5 183.6c4.2 46.1 39.4 83.6 83.8 96.6l102.5 30c12.5 3.7 21.2 15.3 21.2 28.3 0 16.3-13.2 29.5-29.5 29.5h-66.3C100 368 88 364.3 78 357.5c-6.1-4.1-14.3-3.1-19.5 2l-34.8 34c-7.1 6.9-6.1 18.4 1.8 24.5 24.5 19.2 55.1 29.9 86.5 30v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48.2c46.6-.9 90.3-28.6 105.7-72.7 21.5-61.6-14.6-124.8-72.5-141.7z"] }; +var faDolly = { prefix: 'fas', iconName: 'dolly', icon: [576, 512, [], "f472", "M294.2 277.7c18 5 34.7 13.4 49.5 24.7l161.5-53.8c8.4-2.8 12.9-11.9 10.1-20.2L454.9 47.2c-2.8-8.4-11.9-12.9-20.2-10.1l-61.1 20.4 33.1 99.4L346 177l-33.1-99.4-61.6 20.5c-8.4 2.8-12.9 11.9-10.1 20.2l53 159.4zm281 48.7L565 296c-2.8-8.4-11.9-12.9-20.2-10.1l-213.5 71.2c-17.2-22-43.6-36.4-73.5-37L158.4 21.9C154 8.8 141.8 0 128 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h88.9l92.2 276.7c-26.1 20.4-41.7 53.6-36 90.5 6.1 39.4 37.9 72.3 77.3 79.2 60.2 10.7 112.3-34.8 113.4-92.6l213.3-71.2c8.3-2.8 12.9-11.8 10.1-20.2zM256 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; +var faDollyFlatbed = { prefix: 'fas', iconName: 'dolly-flatbed', icon: [640, 512, [], "f474", "M208 320h384c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H448v128l-48-32-48 32V32H208c-8.8 0-16 7.2-16 16v256c0 8.8 7.2 16 16 16zm416 64H128V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h82.9c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H451c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H624c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z"] }; +var faDonate = { prefix: 'fas', iconName: 'donate', icon: [512, 512, [], "f4b9", "M256 416c114.9 0 208-93.1 208-208S370.9 0 256 0 48 93.1 48 208s93.1 208 208 208zM233.8 97.4V80.6c0-9.2 7.4-16.6 16.6-16.6h11.1c9.2 0 16.6 7.4 16.6 16.6v17c15.5.8 30.5 6.1 43 15.4 5.6 4.1 6.2 12.3 1.2 17.1L306 145.6c-3.8 3.7-9.5 3.8-14 1-5.4-3.4-11.4-5.1-17.8-5.1h-38.9c-9 0-16.3 8.2-16.3 18.3 0 8.2 5 15.5 12.1 17.6l62.3 18.7c25.7 7.7 43.7 32.4 43.7 60.1 0 34-26.4 61.5-59.1 62.4v16.8c0 9.2-7.4 16.6-16.6 16.6h-11.1c-9.2 0-16.6-7.4-16.6-16.6v-17c-15.5-.8-30.5-6.1-43-15.4-5.6-4.1-6.2-12.3-1.2-17.1l16.3-15.5c3.8-3.7 9.5-3.8 14-1 5.4 3.4 11.4 5.1 17.8 5.1h38.9c9 0 16.3-8.2 16.3-18.3 0-8.2-5-15.5-12.1-17.6l-62.3-18.7c-25.7-7.7-43.7-32.4-43.7-60.1.1-34 26.4-61.5 59.1-62.4zM480 352h-32.5c-19.6 26-44.6 47.7-73 64h63.8c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8h63.8c-28.4-16.3-53.3-38-73-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32z"] }; +var faDoorClosed = { prefix: 'fas', iconName: 'door-closed', icon: [640, 512, [], "f52a", "M624 448H512V50.8C512 22.78 490.47 0 464 0H175.99c-26.47 0-48 22.78-48 50.8V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM415.99 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32c.01 17.67-14.32 32-32 32z"] }; +var faDoorOpen = { prefix: 'fas', iconName: 'door-open', icon: [640, 512, [], "f52b", "M624 448h-80V113.45C544 86.19 522.47 64 496 64H384v64h96v384h144c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM312.24 1.01l-192 49.74C105.99 54.44 96 67.7 96 82.92V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h336V33.18c0-21.58-19.56-37.41-39.76-32.17zM264 288c-13.25 0-24-14.33-24-32s10.75-32 24-32 24 14.33 24 32-10.75 32-24 32z"] }; +var faDotCircle = { prefix: 'fas', iconName: 'dot-circle', icon: [512, 512, [], "f192", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z"] }; +var faDove = { prefix: 'fas', iconName: 'dove', icon: [512, 512, [], "f4ba", "M288 167.2v-28.1c-28.2-36.3-47.1-79.3-54.1-125.2-2.1-13.5-19-18.8-27.8-8.3-21.1 24.9-37.7 54.1-48.9 86.5 34.2 38.3 80 64.6 130.8 75.1zM400 64c-44.2 0-80 35.9-80 80.1v59.4C215.6 197.3 127 133 87 41.8c-5.5-12.5-23.2-13.2-29-.9C41.4 76 32 115.2 32 156.6c0 70.8 34.1 136.9 85.1 185.9 13.2 12.7 26.1 23.2 38.9 32.8l-143.9 36C1.4 414-3.4 426.4 2.6 435.7 20 462.6 63 508.2 155.8 512c8 .3 16-2.6 22.1-7.9l65.2-56.1H320c88.4 0 160-71.5 160-159.9V128l32-64H400zm0 96.1c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"] }; +var faDownload = { prefix: 'fas', iconName: 'download', icon: [512, 512, [], "f019", "M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"] }; +var faDumbbell = { prefix: 'fas', iconName: 'dumbbell', icon: [640, 512, [], "f44b", "M104 96H56c-13.3 0-24 10.7-24 24v104H8c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h24v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm528 128h-24V120c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v272c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h24c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM456 32h-48c-13.3 0-24 10.7-24 24v168H256V56c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v400c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h128v168c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24z"] }; +var faEdit = { prefix: 'fas', iconName: 'edit', icon: [576, 512, [], "f044", "M402.6 83.2l90.2 90.2c3.8 3.8 3.8 10 0 13.8L274.4 405.6l-92.8 10.3c-12.4 1.4-22.9-9.1-21.5-21.5l10.3-92.8L388.8 83.2c3.8-3.8 10-3.8 13.8 0zm162-22.9l-48.8-48.8c-15.2-15.2-39.9-15.2-55.2 0l-35.4 35.4c-3.8 3.8-3.8 10 0 13.8l90.2 90.2c3.8 3.8 10 3.8 13.8 0l35.4-35.4c15.2-15.3 15.2-40 0-55.2zM384 346.2V448H64V128h229.8c3.2 0 6.2-1.3 8.5-3.5l40-40c7.6-7.6 2.2-20.5-8.5-20.5H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V306.2c0-10.7-12.9-16-20.5-8.5l-40 40c-2.2 2.3-3.5 5.3-3.5 8.5z"] }; +var faEject = { prefix: 'fas', iconName: 'eject', icon: [448, 512, [], "f052", "M448 384v64c0 17.673-14.327 32-32 32H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h384c17.673 0 32 14.327 32 32zM48.053 320h351.886c41.651 0 63.581-49.674 35.383-80.435L259.383 47.558c-19.014-20.743-51.751-20.744-70.767 0L12.67 239.565C-15.475 270.268 6.324 320 48.053 320z"] }; +var faEllipsisH = { prefix: 'fas', iconName: 'ellipsis-h', icon: [512, 512, [], "f141", "M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z"] }; +var faEllipsisV = { prefix: 'fas', iconName: 'ellipsis-v', icon: [192, 512, [], "f142", "M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z"] }; +var faEnvelope = { prefix: 'fas', iconName: 'envelope', icon: [512, 512, [], "f0e0", "M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"] }; +var faEnvelopeOpen = { prefix: 'fas', iconName: 'envelope-open', icon: [512, 512, [], "f2b6", "M512 464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V200.724a48 48 0 0 1 18.387-37.776c24.913-19.529 45.501-35.365 164.2-121.511C199.412 29.17 232.797-.347 256 .003c23.198-.354 56.596 29.172 73.413 41.433 118.687 86.137 139.303 101.995 164.2 121.512A48 48 0 0 1 512 200.724V464zm-65.666-196.605c-2.563-3.728-7.7-4.595-11.339-1.907-22.845 16.873-55.462 40.705-105.582 77.079-16.825 12.266-50.21 41.781-73.413 41.43-23.211.344-56.559-29.143-73.413-41.43-50.114-36.37-82.734-60.204-105.582-77.079-3.639-2.688-8.776-1.821-11.339 1.907l-9.072 13.196a7.998 7.998 0 0 0 1.839 10.967c22.887 16.899 55.454 40.69 105.303 76.868 20.274 14.781 56.524 47.813 92.264 47.573 35.724.242 71.961-32.771 92.263-47.573 49.85-36.179 82.418-59.97 105.303-76.868a7.998 7.998 0 0 0 1.839-10.967l-9.071-13.196z"] }; +var faEnvelopeSquare = { prefix: 'fas', iconName: 'envelope-square', icon: [448, 512, [], "f199", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM178.117 262.104C87.429 196.287 88.353 196.121 64 177.167V152c0-13.255 10.745-24 24-24h272c13.255 0 24 10.745 24 24v25.167c-24.371 18.969-23.434 19.124-114.117 84.938-10.5 7.655-31.392 26.12-45.883 25.894-14.503.218-35.367-18.227-45.883-25.895zM384 217.775V360c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V217.775c13.958 10.794 33.329 25.236 95.303 70.214 14.162 10.341 37.975 32.145 64.694 32.01 26.887.134 51.037-22.041 64.72-32.025 61.958-44.965 81.325-59.406 95.283-70.199z"] }; +var faEquals = { prefix: 'fas', iconName: 'equals', icon: [448, 512, [], "f52c", "M416 304H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32zm0-192H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; +var faEraser = { prefix: 'fas', iconName: 'eraser', icon: [512, 512, [], "f12d", "M497.941 273.941c18.745-18.745 18.745-49.137 0-67.882l-160-160c-18.745-18.745-49.136-18.746-67.883 0l-256 256c-18.745 18.745-18.745 49.137 0 67.882l96 96A48.004 48.004 0 0 0 144 480h356c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H355.883l142.058-142.059zm-302.627-62.627l137.373 137.373L265.373 416H150.628l-80-80 124.686-124.686z"] }; +var faEuroSign = { prefix: 'fas', iconName: 'euro-sign', icon: [320, 512, [], "f153", "M310.706 413.765c-1.314-6.63-7.835-10.872-14.424-9.369-10.692 2.439-27.422 5.413-45.426 5.413-56.763 0-101.929-34.79-121.461-85.449h113.689a12 12 0 0 0 11.708-9.369l6.373-28.36c1.686-7.502-4.019-14.631-11.708-14.631H115.22c-1.21-14.328-1.414-28.287.137-42.245H261.95a12 12 0 0 0 11.723-9.434l6.512-29.755c1.638-7.484-4.061-14.566-11.723-14.566H130.184c20.633-44.991 62.69-75.03 117.619-75.03 14.486 0 28.564 2.25 37.851 4.145 6.216 1.268 12.347-2.498 14.002-8.623l11.991-44.368c1.822-6.741-2.465-13.616-9.326-14.917C290.217 34.912 270.71 32 249.635 32 152.451 32 74.03 92.252 45.075 176H12c-6.627 0-12 5.373-12 12v29.755c0 6.627 5.373 12 12 12h21.569c-1.009 13.607-1.181 29.287-.181 42.245H12c-6.627 0-12 5.373-12 12v28.36c0 6.627 5.373 12 12 12h30.114C67.139 414.692 145.264 480 249.635 480c26.301 0 48.562-4.544 61.101-7.788 6.167-1.595 10.027-7.708 8.788-13.957l-8.818-44.49z"] }; +var faExchangeAlt = { prefix: 'fas', iconName: 'exchange-alt', icon: [512, 512, [], "f362", "M0 168v-16c0-13.255 10.745-24 24-24h360V80c0-21.367 25.899-32.042 40.971-16.971l80 80c9.372 9.373 9.372 24.569 0 33.941l-80 80C409.956 271.982 384 261.456 384 240v-48H24c-13.255 0-24-10.745-24-24zm488 152H128v-48c0-21.314-25.862-32.08-40.971-16.971l-80 80c-9.372 9.373-9.372 24.569 0 33.941l80 80C102.057 463.997 128 453.437 128 432v-48h360c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z"] }; +var faExclamation = { prefix: 'fas', iconName: 'exclamation', icon: [192, 512, [], "f12a", "M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z"] }; +var faExclamationCircle = { prefix: 'fas', iconName: 'exclamation-circle', icon: [512, 512, [], "f06a", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"] }; +var faExclamationTriangle = { prefix: 'fas', iconName: 'exclamation-triangle', icon: [576, 512, [], "f071", "M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"] }; +var faExpand = { prefix: 'fas', iconName: 'expand', icon: [448, 512, [], "f065", "M0 180V56c0-13.3 10.7-24 24-24h124c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H64v84c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12zM288 44v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V56c0-13.3-10.7-24-24-24H300c-6.6 0-12 5.4-12 12zm148 276h-40c-6.6 0-12 5.4-12 12v84h-84c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24V332c0-6.6-5.4-12-12-12zM160 468v-40c0-6.6-5.4-12-12-12H64v-84c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v124c0 13.3 10.7 24 24 24h124c6.6 0 12-5.4 12-12z"] }; +var faExpandArrowsAlt = { prefix: 'fas', iconName: 'expand-arrows-alt', icon: [448, 512, [], "f31e", "M448.1 344v112c0 13.3-10.7 24-24 24h-112c-21.4 0-32.1-25.9-17-41l36.2-36.2L224 295.6 116.8 402.9 153 439c15.1 15.1 4.4 41-17 41H24c-13.3 0-24-10.7-24-24V344c0-21.4 25.9-32.1 41-17l36.2 36.2L184.5 256 77.2 148.7 41 185c-15.1 15.1-41 4.4-41-17V56c0-13.3 10.7-24 24-24h112c21.4 0 32.1 25.9 17 41l-36.2 36.2L224 216.4l107.3-107.3L295.1 73c-15.1-15.1-4.4-41 17-41h112c13.3 0 24 10.7 24 24v112c0 21.4-25.9 32.1-41 17l-36.2-36.2L263.6 256l107.3 107.3 36.2-36.2c15.1-15.2 41-4.5 41 16.9z"] }; +var faExternalLinkAlt = { prefix: 'fas', iconName: 'external-link-alt', icon: [576, 512, [], "f35d", "M576 24v127.984c0 21.461-25.96 31.98-40.971 16.971l-35.707-35.709-243.523 243.523c-9.373 9.373-24.568 9.373-33.941 0l-22.627-22.627c-9.373-9.373-9.373-24.569 0-33.941L442.756 76.676l-35.703-35.705C391.982 25.9 402.656 0 424.024 0H552c13.255 0 24 10.745 24 24zM407.029 270.794l-16 16A23.999 23.999 0 0 0 384 303.765V448H64V128h264a24.003 24.003 0 0 0 16.97-7.029l16-16C376.089 89.851 365.381 64 344 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V287.764c0-21.382-25.852-32.09-40.971-16.97z"] }; +var faExternalLinkSquareAlt = { prefix: 'fas', iconName: 'external-link-square-alt', icon: [448, 512, [], "f360", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-88 16H248.029c-21.313 0-32.08 25.861-16.971 40.971l31.984 31.987L67.515 364.485c-4.686 4.686-4.686 12.284 0 16.971l31.029 31.029c4.687 4.686 12.285 4.686 16.971 0l195.526-195.526 31.988 31.991C358.058 263.977 384 253.425 384 231.979V120c0-13.255-10.745-24-24-24z"] }; +var faEye = { prefix: 'fas', iconName: 'eye', icon: [576, 512, [], "f06e", "M569.354 231.631C512.969 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-75.162 0-136-60.827-136-136 0-75.162 60.826-136 136-136 75.162 0 136 60.826 136 136 0 75.162-60.826 136-136 136zm104-136c0 57.438-46.562 104-104 104s-104-46.562-104-104c0-17.708 4.431-34.379 12.236-48.973l-.001.032c0 23.651 19.173 42.823 42.824 42.823s42.824-19.173 42.824-42.823c0-23.651-19.173-42.824-42.824-42.824l-.032.001C253.621 156.431 270.292 152 288 152c57.438 0 104 46.562 104 104z"] }; +var faEyeDropper = { prefix: 'fas', iconName: 'eye-dropper', icon: [512, 512, [], "f1fb", "M177.38 206.64L39.03 344.97A24.01 24.01 0 0 0 32 361.94V424L0 480l32 32 56-32h62.06c6.36 0 12.47-2.53 16.97-7.03l138.35-138.33-128-128zm225.552 30.47l16.952 16.95c9.37 9.37 9.37 24.57 0 33.94l-40.973 40.97c-9.292 9.312-24.506 9.434-33.94 0L183.028 167.03c-9.37-9.37-9.37-24.57 0-33.94L224 92.12c9.289-9.309 24.502-9.438 33.94 0l16.992 16.99 82.606-82.601c35.19-35.19 92.5-35.5 128 0 40.49 48.08 29.66 98.34 0 128l-82.606 82.601z"] }; +var faEyeSlash = { prefix: 'fas', iconName: 'eye-slash', icon: [576, 512, [], "f070", "M286.693 391.984l32.579 46.542A333.958 333.958 0 0 1 288 440C168.19 440 63.031 376.051 6.646 280.369a47.999 47.999 0 0 1 0-48.739c24.023-40.766 56.913-75.775 96.024-102.537l57.077 81.539C154.736 224.82 152 240.087 152 256c0 74.736 60.135 135.282 134.693 135.984zm282.661-111.615c-31.667 53.737-78.747 97.46-135.175 125.475l.011.015 41.47 59.2c7.6 10.86 4.96 25.82-5.9 33.42l-13.11 9.18c-10.86 7.6-25.82 4.96-33.42-5.9L100.34 46.94c-7.6-10.86-4.96-25.82 5.9-33.42l13.11-9.18c10.86-7.6 25.82-4.96 33.42 5.9l51.038 72.617C230.68 75.776 258.905 72 288 72c119.81 0 224.969 63.949 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM424 256c0-75.174-60.838-136-136-136-17.939 0-35.056 3.473-50.729 9.772l19.299 27.058c25.869-8.171 55.044-6.163 80.4 7.41h-.03c-23.65 0-42.82 19.17-42.82 42.82 0 23.626 19.147 42.82 42.82 42.82 23.65 0 42.82-19.17 42.82-42.82v-.03c18.462 34.49 16.312 77.914-8.25 110.95v.01l19.314 27.061C411.496 321.2 424 290.074 424 256zM262.014 356.727l-77.53-110.757c-5.014 52.387 29.314 98.354 77.53 110.757z"] }; +var faFastBackward = { prefix: 'fas', iconName: 'fast-backward', icon: [512, 512, [], "f049", "M0 436V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v151.9L235.5 71.4C256.1 54.3 288 68.6 288 96v131.9L459.5 71.4C480.1 54.3 512 68.6 512 96v320c0 27.4-31.9 41.7-52.5 24.6L288 285.3V416c0 27.4-31.9 41.7-52.5 24.6L64 285.3V436c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12z"] }; +var faFastForward = { prefix: 'fas', iconName: 'fast-forward', icon: [512, 512, [], "f050", "M512 76v360c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V284.1L276.5 440.6c-20.6 17.2-52.5 2.8-52.5-24.6V284.1L52.5 440.6C31.9 457.8 0 443.4 0 416V96c0-27.4 31.9-41.7 52.5-24.6L224 226.8V96c0-27.4 31.9-41.7 52.5-24.6L448 226.8V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12z"] }; +var faFax = { prefix: 'fas', iconName: 'fax', icon: [512, 512, [], "f1ac", "M128 144v320c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V144c0-26.51 21.49-48 48-48h32c26.51 0 48 21.49 48 48zm384 64v256c0 26.51-21.49 48-48 48H192c-26.51 0-48-21.49-48-48V40c0-22.091 17.909-40 40-40h207.432a39.996 39.996 0 0 1 28.284 11.716l48.569 48.569A39.999 39.999 0 0 1 480 88.568v74.174c18.641 6.591 32 24.36 32 45.258zm-320-16h240V96h-24c-13.203 0-24-10.797-24-24V48H192v144zm96 204c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm128 128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40z"] }; +var faFeather = { prefix: 'fas', iconName: 'feather', icon: [512, 512, [], "f52d", "M512 0C504.81.01 98.51 22.01 71.47 287.42c-2.62 22.6-4.22 45.28-5.37 67.98l160.65-160.65c6.25-6.25 16.38-6.25 22.62 0s6.25 16.38 0 22.62l-240 240a31.9 31.9 0 0 0-9.38 22.67C.02 497.68 14.33 512 32 512c8.19 0 16.38-3.12 22.62-9.38l55.05-55.05c38.4-.5 76.76-2.63 114.91-7.05 11.58-1.18 22.54-3.29 33.21-5.84L256 384h101.86c12.61-10.63 24.12-22.45 34.76-35.07L384 288h50.19C502.8 163.6 512 .1 512 0z"] }; +var faFemale = { prefix: 'fas', iconName: 'female', icon: [256, 512, [], "f182", "M128 0c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64S92.654 0 128 0m119.283 354.179l-48-192A24 24 0 0 0 176 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H80a24 24 0 0 0-23.283 18.179l-48 192C4.935 369.305 16.383 384 32 384h56v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V384h56c15.591 0 27.071-14.671 23.283-29.821z"] }; +var faFighterJet = { prefix: 'fas', iconName: 'fighter-jet', icon: [640, 512, [], "f0fb", "M544 224l-128-16-48-16h-24L227.158 44h39.509C278.333 44 288 41.375 288 38s-9.667-6-21.333-6H152v12h16v164h-48l-66.667-80H18.667L8 138.667V208h8v16h48v2.666l-64 8v42.667l64 8V288H16v16H8v69.333L18.667 384h34.667L120 304h48v164h-16v12h114.667c11.667 0 21.333-2.625 21.333-6s-9.667-6-21.333-6h-39.509L344 320h24l48-16 128-16c96-21.333 96-26.583 96-32 0-5.417 0-10.667-96-32z"] }; +var faFile = { prefix: 'fas', iconName: 'file', icon: [384, 512, [], "f15b", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileAlt = { prefix: 'fas', iconName: 'file-alt', icon: [384, 512, [], "f15c", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileArchive = { prefix: 'fas', iconName: 'file-archive', icon: [384, 512, [], "f1c6", "M224 136V0h-63.6v32h-32V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM95.9 32h32v32h-32V32zm32.3 384c-33.2 0-58-30.4-51.4-62.9L96.4 256v-32h32v-32h-32v-32h32v-32h-32V96h32V64h32v32h-32v32h32v32h-32v32h32v32h-32v32h22.1c5.7 0 10.7 4.1 11.8 9.7l17.3 87.7c6.4 32.4-18.4 62.6-51.4 62.6zm32.7-53c0 14.9-14.5 27-32.4 27S96 378 96 363c0-14.9 14.5-27 32.4-27s32.5 12.1 32.5 27zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileAudio = { prefix: 'fas', iconName: 'file-audio', icon: [384, 512, [], "f1c7", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileCode = { prefix: 'fas', iconName: 'file-code', icon: [384, 512, [], "f1c9", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zM123.206 400.505a5.4 5.4 0 0 1-7.633.246l-64.866-60.812a5.4 5.4 0 0 1 0-7.879l64.866-60.812a5.4 5.4 0 0 1 7.633.246l19.579 20.885a5.4 5.4 0 0 1-.372 7.747L101.65 336l40.763 35.874a5.4 5.4 0 0 1 .372 7.747l-19.579 20.884zm51.295 50.479l-27.453-7.97a5.402 5.402 0 0 1-3.681-6.692l61.44-211.626a5.402 5.402 0 0 1 6.692-3.681l27.452 7.97a5.4 5.4 0 0 1 3.68 6.692l-61.44 211.626a5.397 5.397 0 0 1-6.69 3.681zm160.792-111.045l-64.866 60.812a5.4 5.4 0 0 1-7.633-.246l-19.58-20.885a5.4 5.4 0 0 1 .372-7.747L284.35 336l-40.763-35.874a5.4 5.4 0 0 1-.372-7.747l19.58-20.885a5.4 5.4 0 0 1 7.633-.246l64.866 60.812a5.4 5.4 0 0 1-.001 7.879z"] }; +var faFileExcel = { prefix: 'fas', iconName: 'file-excel', icon: [384, 512, [], "f1c3", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm60.1 106.5L224 336l60.1 93.5c5.1 8-.6 18.5-10.1 18.5h-34.9c-4.4 0-8.5-2.4-10.6-6.3C208.9 405.5 192 373 192 373c-6.4 14.8-10 20-36.6 68.8-2.1 3.9-6.1 6.3-10.5 6.3H110c-9.5 0-15.2-10.5-10.1-18.5l60.3-93.5-60.3-93.5c-5.2-8 .6-18.5 10.1-18.5h34.8c4.4 0 8.5 2.4 10.6 6.3 26.1 48.8 20 33.6 36.6 68.5 0 0 6.1-11.7 36.6-68.5 2.1-3.9 6.2-6.3 10.6-6.3H274c9.5-.1 15.2 10.4 10.1 18.4zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileImage = { prefix: 'fas', iconName: 'file-image', icon: [384, 512, [], "f1c5", "M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z"] }; +var faFileMedical = { prefix: 'fas', iconName: 'file-medical', icon: [384, 512, [], "f477", "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 160v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8z"] }; +var faFileMedicalAlt = { prefix: 'fas', iconName: 'file-medical-alt', icon: [448, 512, [], "f478", "M288 136V0H88C74.7 0 64 10.7 64 24v232H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h140.9c3 0 5.8 1.7 7.2 4.4l19.9 39.8 56.8-113.7c2.9-5.9 11.4-5.9 14.3 0l34.7 69.5H352c8.8 0 16 7.2 16 16s-7.2 16-16 16h-89.9L240 275.8l-56.8 113.7c-2.9 5.9-11.4 5.9-14.3 0L134.1 320H64v168c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H312c-13.2 0-24-10.8-24-24zm153-31L343.1 7c-4.5-4.5-10.6-7-17-7H320v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"] }; +var faFilePdf = { prefix: 'fas', iconName: 'file-pdf', icon: [384, 512, [], "f1c1", "M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z"] }; +var faFilePowerpoint = { prefix: 'fas', iconName: 'file-powerpoint', icon: [384, 512, [], "f1c4", "M193.7 271.2c8.8 0 15.5 2.7 20.3 8.1 9.6 10.9 9.8 32.7-.2 44.1-4.9 5.6-11.9 8.5-21.1 8.5h-26.9v-60.7h27.9zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm53 165.2c0 90.3-88.8 77.6-111.1 77.6V436c0 6.6-5.4 12-12 12h-30.8c-6.6 0-12-5.4-12-12V236.2c0-6.6 5.4-12 12-12h81c44.5 0 72.9 32.8 72.9 77z"] }; +var faFileVideo = { prefix: 'fas', iconName: 'file-video', icon: [384, 512, [], "f1c8", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z"] }; +var faFileWord = { prefix: 'fas', iconName: 'file-word', icon: [384, 512, [], "f1c2", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm57.1 120H305c7.7 0 13.4 7.1 11.7 14.7l-38 168c-1.2 5.5-6.1 9.3-11.7 9.3h-38c-5.5 0-10.3-3.8-11.6-9.1-25.8-103.5-20.8-81.2-25.6-110.5h-.5c-1.1 14.3-2.4 17.4-25.6 110.5-1.3 5.3-6.1 9.1-11.6 9.1H117c-5.6 0-10.5-3.9-11.7-9.4l-37.8-168c-1.7-7.5 4-14.6 11.7-14.6h24.5c5.7 0 10.7 4 11.8 9.7 15.6 78 20.1 109.5 21 122.2 1.6-10.2 7.3-32.7 29.4-122.7 1.3-5.4 6.1-9.1 11.7-9.1h29.1c5.6 0 10.4 3.8 11.7 9.2 24 100.4 28.8 124 29.6 129.4-.2-11.2-2.6-17.8 21.6-129.2 1-5.6 5.9-9.5 11.5-9.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFilm = { prefix: 'fas', iconName: 'film', icon: [512, 512, [], "f008", "M488 64h-8v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V64H96v20c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12V64h-8C10.7 64 0 74.7 0 88v336c0 13.3 10.7 24 24 24h8v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h320v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h8c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM96 372c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm272 208c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm0-168c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm112 152c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z"] }; +var faFilter = { prefix: 'fas', iconName: 'filter', icon: [512, 512, [], "f0b0", "M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z"] }; +var faFire = { prefix: 'fas', iconName: 'fire', icon: [384, 512, [], "f06d", "M216 23.858c0-23.802-30.653-32.765-44.149-13.038C48 191.851 224 200 224 288c0 35.629-29.114 64.458-64.85 63.994C123.98 351.538 96 322.22 96 287.046v-85.51c0-21.703-26.471-32.225-41.432-16.504C27.801 213.158 0 261.332 0 320c0 105.869 86.131 192 192 192s192-86.131 192-192c0-170.29-168-193.003-168-296.142z"] }; +var faFireExtinguisher = { prefix: 'fas', iconName: 'fire-extinguisher', icon: [448, 512, [], "f134", "M434.027 26.329l-168 28C254.693 56.218 256 67.8 256 72h-58.332C208.353 36.108 181.446 0 144 0c-39.435 0-66.368 39.676-52.228 76.203-52.039 13.051-75.381 54.213-90.049 90.884-4.923 12.307 1.063 26.274 13.37 31.197 12.317 4.926 26.279-1.075 31.196-13.37C75.058 112.99 106.964 120 168 120v27.076c-41.543 10.862-72 49.235-72 94.129V488c0 13.255 10.745 24 24 24h144c13.255 0 24-10.745 24-24V240c0-44.731-30.596-82.312-72-92.97V120h40c0 2.974-1.703 15.716 10.027 17.671l168 28C441.342 166.89 448 161.25 448 153.834V38.166c0-7.416-6.658-13.056-13.973-11.837zM144 72c-8.822 0-16-7.178-16-16s7.178-16 16-16 16 7.178 16 16-7.178 16-16 16z"] }; +var faFirstAid = { prefix: 'fas', iconName: 'first-aid', icon: [576, 512, [], "f479", "M0 80v352c0 26.5 21.5 48 48 48h48V32H48C21.5 32 0 53.5 0 80zm128 400h320V32H128v448zm64-248c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48zM528 32h-48v448h48c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"] }; +var faFlag = { prefix: 'fas', iconName: 'flag', icon: [512, 512, [], "f024", "M349.565 98.783C295.978 98.783 251.721 64 184.348 64c-24.955 0-47.309 4.384-68.045 12.013a55.947 55.947 0 0 0 3.586-23.562C118.117 24.015 94.806 1.206 66.338.048 34.345-1.254 8 24.296 8 56c0 19.026 9.497 35.825 24 45.945V488c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-94.4c28.311-12.064 63.582-22.122 114.435-22.122 53.588 0 97.844 34.783 165.217 34.783 48.169 0 86.667-16.294 122.505-40.858C506.84 359.452 512 349.571 512 339.045v-243.1c0-23.393-24.269-38.87-45.485-29.016-34.338 15.948-76.454 31.854-116.95 31.854z"] }; +var faFlagCheckered = { prefix: 'fas', iconName: 'flag-checkered', icon: [512, 512, [], "f11e", "M466.515 66.928C487.731 57.074 512 72.551 512 95.944v243.1c0 10.526-5.161 20.407-13.843 26.358-35.837 24.564-74.335 40.858-122.505 40.858-67.373 0-111.63-34.783-165.217-34.783-50.853 0-86.124 10.058-114.435 22.122V488c0 13.255-10.745 24-24 24H56c-13.255 0-24-10.745-24-24V101.945C17.497 91.825 8 75.026 8 56 8 24.296 34.345-1.254 66.338.048c28.468 1.158 51.779 23.968 53.551 52.404.52 8.342-.81 16.31-3.586 23.562C137.039 68.384 159.393 64 184.348 64c67.373 0 111.63 34.783 165.217 34.783 40.496 0 82.612-15.906 116.95-31.855zM96 134.63v70.49c29-10.67 51.18-17.83 73.6-20.91v-71.57c-23.5 2.17-40.44 9.79-73.6 21.99zm220.8 9.19c-26.417-4.672-49.886-13.979-73.6-21.34v67.42c24.175 6.706 47.566 16.444 73.6 22.31v-68.39zm-147.2 40.39v70.04c32.796-2.978 53.91-.635 73.6 3.8V189.9c-25.247-7.035-46.581-9.423-73.6-5.69zm73.6 142.23c26.338 4.652 49.732 13.927 73.6 21.34v-67.41c-24.277-6.746-47.54-16.45-73.6-22.32v68.39zM96 342.1c23.62-8.39 47.79-13.84 73.6-16.56v-71.29c-26.11 2.35-47.36 8.04-73.6 17.36v70.49zm368-221.6c-21.3 8.85-46.59 17.64-73.6 22.47v71.91c27.31-4.36 50.03-14.1 73.6-23.89V120.5zm0 209.96v-70.49c-22.19 14.2-48.78 22.61-73.6 26.02v71.58c25.07-2.38 48.49-11.04 73.6-27.11zM316.8 212.21v68.16c25.664 7.134 46.616 9.342 73.6 5.62v-71.11c-25.999 4.187-49.943 2.676-73.6-2.67z"] }; +var faFlask = { prefix: 'fas', iconName: 'flask', icon: [448, 512, [], "f0c3", "M437.2 403.5L320 215V64h8c13.3 0 24-10.7 24-24V24c0-13.3-10.7-24-24-24H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h8v151L10.8 403.5C-18.5 450.6 15.3 512 70.9 512h306.2c55.7 0 89.4-61.5 60.1-108.5zM137.9 320l48.2-77.6c3.7-5.2 5.8-11.6 5.8-18.4V64h64v160c0 6.9 2.2 13.2 5.8 18.4l48.2 77.6h-172z"] }; +var faFolder = { prefix: 'fas', iconName: 'folder', icon: [512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z"] }; +var faFolderOpen = { prefix: 'fas', iconName: 'folder-open', icon: [576, 512, [], "f07c", "M572.694 292.093L500.27 416.248A63.997 63.997 0 0 1 444.989 448H45.025c-18.523 0-30.064-20.093-20.731-36.093l72.424-124.155A64 64 0 0 1 152 256h399.964c18.523 0 30.064 20.093 20.73 36.093zM152 224h328v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v278.046l69.077-118.418C86.214 242.25 117.989 224 152 224z"] }; +var faFont = { prefix: 'fas', iconName: 'font', icon: [448, 512, [], "f031", "M152 416h-24.013l26.586-80.782H292.8L319.386 416H296c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-26.739L275.495 42.746A16 16 0 0 0 260.382 32h-72.766a16 16 0 0 0-15.113 10.746L42.739 416H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm64.353-271.778c4.348-15.216 6.61-28.156 7.586-34.644.839 6.521 2.939 19.476 7.727 34.706l41.335 124.006h-98.619l41.971-124.068z"] }; +var faFontAwesomeLogoFull = { prefix: 'fas', iconName: 'font-awesome-logo-full', icon: [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"] }; +var faFootballBall = { prefix: 'fas', iconName: 'football-ball', icon: [496, 512, [], "f44e", "M481.5 60.3c-4.8-18.2-19.1-32.5-37.3-37.4C420.3 16.5 383 8.9 339.4 8L496 164.8c-.8-43.5-8.2-80.6-14.5-104.5zm-467 391.4c4.8 18.2 19.1 32.5 37.3 37.4 23.9 6.4 61.2 14 104.8 14.9L0 347.2c.8 43.5 8.2 80.6 14.5 104.5zM4.2 283.4L220.4 500c132.5-19.4 248.8-118.7 271.5-271.4L275.6 12C143.1 31.4 26.8 130.7 4.2 283.4zm317.3-123.6c3.1-3.1 8.2-3.1 11.3 0l11.3 11.3c3.1 3.1 3.1 8.2 0 11.3l-28.3 28.3 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-22.6 22.7 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L248 278.6l-22.6 22.6 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-28.3 28.3c-3.1 3.1-8.2 3.1-11.3 0l-11.3-11.3c-3.1-3.1-3.1-8.2 0-11.3l28.3-28.3-28.3-28.2c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 28.3-28.5z"] }; +var faForward = { prefix: 'fas', iconName: 'forward', icon: [512, 512, [], "f04e", "M500.5 231.4l-192-160C287.9 54.3 256 68.6 256 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2zm-256 0l-192-160C31.9 54.3 0 68.6 0 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2z"] }; +var faFrog = { prefix: 'fas', iconName: 'frog', icon: [576, 512, [], "f52e", "M446.53 97.43C439.67 60.23 407.19 32 368 32c-39.23 0-71.72 28.29-78.54 65.54C126.75 112.96-.5 250.12 0 416.98.11 451.9 29.08 480 64 480h304c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-79.49l35.8-48.33c24.14-36.23 10.35-88.28-33.71-106.6-23.89-9.93-51.55-4.65-72.24 10.88l-32.76 24.59c-7.06 5.31-17.09 3.91-22.41-3.19-5.3-7.08-3.88-17.11 3.19-22.41l34.78-26.09c36.84-27.66 88.28-27.62 125.13 0 10.87 8.15 45.87 39.06 40.8 93.21L469.62 480H560c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-53.63l-98.52-104.68 154.44-86.65A58.16 58.16 0 0 0 576 189.94c0-21.4-11.72-40.95-30.48-51.23-40.56-22.22-98.99-41.28-98.99-41.28zM368 136c-13.26 0-24-10.75-24-24 0-13.26 10.74-24 24-24 13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24z"] }; +var faFrown = { prefix: 'fas', iconName: 'frown', icon: [496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm192.7 220.3c-3 2.5-6.6 3.7-10.2 3.7-4.6 0-9.1-2-12.3-5.8-22.4-26.8-55.3-42.2-90.2-42.2s-67.8 15.4-90.2 42.2c-5.6 6.8-15.7 7.7-22.5 2-6.8-5.7-7.7-15.7-2-22.5C161.7 339.6 203.6 320 248 320s86.3 19.6 114.7 53.8c5.7 6.7 4.8 16.8-2 22.5z"] }; +var faFutbol = { prefix: 'fas', iconName: 'futbol', icon: [512, 512, [], "f1e3", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-48 0l-.003-.282-26.064 22.741-62.679-58.5 16.454-84.355 34.303 3.072c-24.889-34.216-60.004-60.089-100.709-73.141l13.651 31.939L256 139l-74.953-41.525 13.651-31.939c-40.631 13.028-75.78 38.87-100.709 73.141l34.565-3.073 16.192 84.355-62.678 58.5-26.064-22.741-.003.282c0 43.015 13.497 83.952 38.472 117.991l7.704-33.897 85.138 10.447 36.301 77.826-29.902 17.786c40.202 13.122 84.29 13.148 124.572 0l-29.902-17.786 36.301-77.826 85.138-10.447 7.704 33.897C442.503 339.952 456 299.015 456 256zm-248.102 69.571l-29.894-91.312L256 177.732l77.996 56.527-29.622 91.312h-96.476z"] }; +var faGamepad = { prefix: 'fas', iconName: 'gamepad', icon: [640, 512, [], "f11b", "M480 96H160C71.6 96 0 167.6 0 256s71.6 160 160 160c44.8 0 85.2-18.4 114.2-48h91.5c29 29.6 69.5 48 114.2 48 88.4 0 160-71.6 160-160S568.4 96 480 96zM256 276c0 6.6-5.4 12-12 12h-52v52c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-52H76c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h52v-52c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h52c6.6 0 12 5.4 12 12v40zm184 68c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-80c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; +var faGasPump = { prefix: 'fas', iconName: 'gas-pump', icon: [512, 512, [], "f52f", "M336 448H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm157.2-340.7l-81-81c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-6.2 6.2-6.2 16.4 0 22.6L416 97.9V160c0 28.1 20.9 51.3 48 55.2V376c0 13.2-10.8 24-24 24s-24-10.8-24-24v-32c0-48.6-39.4-88-88-88h-8V64c0-35.3-28.7-64-64-64H96C60.7 0 32 28.7 32 64v352h288V304h8c22.1 0 40 17.9 40 40v27.8c0 37.7 27 72 64.5 75.9 43 4.3 79.5-29.5 79.5-71.7V152.6c0-17-6.8-33.3-18.8-45.3zM256 192H96V64h160v128z"] }; +var faGavel = { prefix: 'fas', iconName: 'gavel', icon: [512, 512, [], "f0e3", "M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z"] }; +var faGem = { prefix: 'fas', iconName: 'gem', icon: [576, 512, [], "f3a5", "M485.5 0L576 160H474.9L405.7 0h79.8zm-128 0l69.2 160H149.3L218.5 0h139zm-267 0h79.8l-69.2 160H0L90.5 0zM0 192h100.7l123 251.7c1.5 3.1-2.7 5.9-5 3.3L0 192zm148.2 0h279.6l-137 318.2c-1 2.4-4.5 2.4-5.5 0L148.2 192zm204.1 251.7l123-251.7H576L357.3 446.9c-2.3 2.7-6.5-.1-5-3.2z"] }; +var faGenderless = { prefix: 'fas', iconName: 'genderless', icon: [288, 512, [], "f22d", "M144 176c44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80 35.9-80 80-80m0-64C64.5 112 0 176.5 0 256s64.5 144 144 144 144-64.5 144-144-64.5-144-144-144z"] }; +var faGift = { prefix: 'fas', iconName: 'gift', icon: [512, 512, [], "f06b", "M32 448c0 17.7 14.3 32 32 32h160V320H32v128zm448-288h-42.1c6.2-12.1 10.1-25.5 10.1-40 0-48.5-39.5-88-88-88-41.6 0-68.5 21.3-103 68.3-34.5-47-61.4-68.3-103-68.3-48.5 0-88 39.5-88 88 0 14.5 3.8 27.9 10.1 40H32c-17.7 0-32 14.3-32 32v80c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-80c0-17.7-14.3-32-32-32zm-326.1 0c-22.1 0-40-17.9-40-40s17.9-40 40-40c19.9 0 34.6 3.3 86.1 80h-86.1zm206.1 0h-86.1c51.4-76.5 65.7-80 86.1-80 22.1 0 40 17.9 40 40s-17.9 40-40 40zm-72 320h160c17.7 0 32-14.3 32-32V320H288v160z"] }; +var faGlassMartini = { prefix: 'fas', iconName: 'glass-martini', icon: [512, 512, [], "f000", "M507.3 27.3c10-10 2.9-27.3-11.3-27.3H16C1.8 0-5.4 17.2 4.7 27.3L216 238.6V472h-92c-15.5 0-28 12.5-28 28 0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12 0-15.5-12.5-28-28-28h-92V238.6L507.3 27.3z"] }; +var faGlasses = { prefix: 'fas', iconName: 'glasses', icon: [576, 512, [], "f530", "M574.1 280.37L528.75 98.66c-5.91-23.7-21.59-44.05-43-55.81-21.44-11.73-46.97-14.11-70.19-6.33l-15.25 5.08c-8.39 2.79-12.92 11.86-10.12 20.24l5.06 15.18c2.79 8.38 11.85 12.91 20.23 10.12l13.18-4.39c10.87-3.62 23-3.57 33.16 1.73 10.29 5.37 17.57 14.56 20.37 25.82l38.46 153.82c-22.19-6.81-49.79-12.46-81.2-12.46-34.77 0-73.98 7.02-114.85 26.74h-73.18c-40.87-19.74-80.08-26.75-114.86-26.75-31.42 0-59.02 5.65-81.21 12.46l38.46-153.83c2.79-11.25 10.09-20.45 20.38-25.81 10.16-5.3 22.28-5.35 33.15-1.73l13.17 4.39c8.38 2.79 17.44-1.74 20.23-10.12l5.06-15.18c2.8-8.38-1.73-17.45-10.12-20.24l-15.25-5.08c-23.22-7.78-48.75-5.41-70.19 6.33-21.41 11.77-37.09 32.11-43 55.8L1.9 280.37A64.218 64.218 0 0 0 0 295.86v70.25C0 429.01 51.58 480 115.2 480h37.12c60.28 0 110.37-45.94 114.88-105.37l2.93-38.63h35.75l2.93 38.63C313.31 434.06 363.4 480 423.68 480h37.12c63.62 0 115.2-50.99 115.2-113.88v-70.25c0-5.23-.64-10.43-1.9-15.5zm-370.72 89.42c-1.97 25.91-24.4 46.21-51.06 46.21H115.2C86.97 416 64 393.62 64 366.11v-37.54c18.12-6.49 43.42-12.92 72.58-12.92 23.86 0 47.26 4.33 69.93 12.92l-3.13 41.22zM512 366.12c0 27.51-22.97 49.88-51.2 49.88h-37.12c-26.67 0-49.1-20.3-51.06-46.21l-3.13-41.22c22.67-8.59 46.08-12.92 69.95-12.92 29.12 0 54.43 6.44 72.55 12.93v37.54z"] }; +var faGlobe = { prefix: 'fas', iconName: 'globe', icon: [496, 512, [], "f0ac", "M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z"] }; +var faGolfBall = { prefix: 'fas', iconName: 'golf-ball', icon: [416, 512, [], "f450", "M96 416h224c0 17.7-14.3 32-32 32h-16c-17.7 0-32 14.3-32 32v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-20c0-17.7-14.3-32-32-32h-16c-17.7 0-32-14.3-32-32zm320-208c0 74.2-39 139.2-97.5 176h-221C39 347.2 0 282.2 0 208 0 93.1 93.1 0 208 0s208 93.1 208 208zm-180.1 43.9c18.3 0 33.1-14.8 33.1-33.1 0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1zm49.1 46.9c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1zm64-64c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1z"] }; +var faGraduationCap = { prefix: 'fas', iconName: 'graduation-cap', icon: [640, 512, [], "f19d", "M622.884 199.005l-275.817 85.1a96 96 0 0 1-54.134 0L92.398 222.232c-8.564 11.438-11.018 23.05-11.918 38.335C89.778 266.165 96 276.355 96 288c0 11.952-6.557 22.366-16.265 27.861l16.197 123.096c.63 4.786-3.1 9.043-7.932 9.043H40c-4.828 0-8.562-4.253-7.932-9.044L48.265 315.86C38.557 310.366 32 299.952 32 288c0-12.034 6.646-22.511 16.465-27.976.947-17.951 3.974-33.231 12.152-47.597l-43.502-13.422c-22.876-6.801-22.766-39.241 0-46.01l275.817-85.1a96 96 0 0 1 54.134 0l275.817 85.1c22.877 6.801 22.767 39.241.001 46.01zM356.503 314.682l-.207.064-.207.061a127.998 127.998 0 0 1-72.177 0l-.207-.061-.207-.064-150.914-46.57L120 352c0 35.346 89.543 64 200 64s200-28.654 200-64l-12.583-83.888-150.914 46.57z"] }; +var faGreaterThan = { prefix: 'fas', iconName: 'greater-than', icon: [384, 512, [], "f531", "M365.52 209.85L59.22 67.01c-16.06-7.49-35.15-.54-42.64 15.52L3.01 111.61c-7.49 16.06-.54 35.15 15.52 42.64L236.96 256.1 18.49 357.99C2.47 365.46-4.46 384.5 3.01 400.52l13.52 29C24 445.54 43.04 452.47 59.06 445l306.47-142.91a32.003 32.003 0 0 0 18.48-29v-34.23c-.01-12.45-7.21-23.76-18.49-29.01z"] }; +var faGreaterThanEqual = { prefix: 'fas', iconName: 'greater-than-equal', icon: [448, 512, [], "f532", "M55.22 107.69l175.56 68.09-175.44 68.05c-18.39 6.03-27.88 24.39-21.2 41l12.09 30.08c6.68 16.61 26.99 25.19 45.38 19.15L393.02 214.2c13.77-4.52 22.98-16.61 22.98-30.17v-15.96c0-13.56-9.21-25.65-22.98-30.17L91.3 17.92c-18.29-6-38.51 2.53-45.15 19.06L34.12 66.9c-6.64 16.53 2.81 34.79 21.1 40.79zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"] }; +var faHSquare = { prefix: 'fas', iconName: 'h-square', icon: [448, 512, [], "f0fd", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-112 48h-32c-8.837 0-16 7.163-16 16v80H160v-80c0-8.837-7.163-16-16-16h-32c-8.837 0-16 7.163-16 16v224c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16v-80h128v80c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144c0-8.837-7.163-16-16-16z"] }; +var faHandHolding = { prefix: 'fas', iconName: 'hand-holding', icon: [576, 512, [], "f4bd", "M565.3 328.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z"] }; +var faHandHoldingHeart = { prefix: 'fas', iconName: 'hand-holding-heart', icon: [576, 512, [], "f4be", "M275.3 250.5c7 7.4 18.4 7.4 25.5 0l108.9-114.2c31.6-33.2 29.8-88.2-5.6-118.8-30.8-26.7-76.7-21.9-104.9 7.7L288 36.9l-11.1-11.6C248.7-4.4 202.8-9.2 172 17.5c-35.3 30.6-37.2 85.6-5.6 118.8l108.9 114.2zm290 77.6c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z"] }; +var faHandHoldingUsd = { prefix: 'fas', iconName: 'hand-holding-usd', icon: [544, 512, [], "f4c0", "M257.6 144.3l50 14.3c3.6 1 6.1 4.4 6.1 8.1 0 4.6-3.8 8.4-8.4 8.4h-32.8c-3.6 0-7.1-.8-10.3-2.2-4.8-2.2-10.4-1.7-14.1 2l-17.5 17.5c-5.3 5.3-4.7 14.3 1.5 18.4 9.5 6.3 20.3 10.1 31.8 11.5V240c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16v-17.6c30.3-3.6 53.3-31 49.3-63-2.9-23-20.7-41.3-42.9-47.7l-50-14.3c-3.6-1-6.1-4.4-6.1-8.1 0-4.6 3.8-8.4 8.4-8.4h32.8c3.6 0 7.1.8 10.3 2.2 4.8 2.2 10.4 1.7 14.1-2l17.5-17.5c5.3-5.3 4.7-14.3-1.5-18.4-9.5-6.3-20.3-10.1-31.8-11.5V16c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16v17.6c-30.3 3.6-53.3 31-49.3 63 2.9 23 20.7 41.3 42.9 47.7zm276.3 183.8c-11.2-10.7-28.5-10-40.3 0L406.4 402c-10.7 9.1-24 14-37.8 14H256.9c-8.3 0-15.1-7.2-15.1-16s6.8-16 15.1-16h73.9c15.1 0 29-10.9 31.4-26.6 3.1-20-11.5-37.4-29.8-37.4H181.3c-25.5 0-50.2 9.3-69.9 26.3L67.5 384H15.1C6.8 384 0 391.2 0 400v96c0 8.8 6.8 16 15.1 16H352c13.7 0 27-4.9 37.8-14l142.8-121c14.4-12.1 15.5-35.3 1.3-48.9z"] }; +var faHandLizard = { prefix: 'fas', iconName: 'hand-lizard', icon: [576, 512, [], "f258", "M384 480h192V363.778a95.998 95.998 0 0 0-14.833-51.263L398.127 54.368A48 48 0 0 0 357.544 32H24C10.745 32 0 42.745 0 56v16c0 30.928 25.072 56 56 56h229.981c12.844 0 21.556 13.067 16.615 24.923l-21.41 51.385A32 32 0 0 1 251.648 224H128c-35.346 0-64 28.654-64 64v8c0 13.255 10.745 24 24 24h147.406a47.995 47.995 0 0 1 25.692 7.455l111.748 70.811A24.001 24.001 0 0 1 384 418.539V480z"] }; +var faHandPaper = { prefix: 'fas', iconName: 'hand-paper', icon: [448, 512, [], "f256", "M408.781 128.007C386.356 127.578 368 146.36 368 168.79V256h-8V79.79c0-22.43-18.356-41.212-40.781-40.783C297.488 39.423 280 57.169 280 79v177h-8V40.79C272 18.36 253.644-.422 231.219.007 209.488.423 192 18.169 192 40v216h-8V80.79c0-22.43-18.356-41.212-40.781-40.783C121.488 40.423 104 58.169 104 80v235.992l-31.648-43.519c-12.993-17.866-38.009-21.817-55.877-8.823-17.865 12.994-21.815 38.01-8.822 55.877l125.601 172.705A48 48 0 0 0 172.073 512h197.59c22.274 0 41.622-15.324 46.724-37.006l26.508-112.66a192.011 192.011 0 0 0 5.104-43.975V168c.001-21.831-17.487-39.577-39.218-39.993z"] }; +var faHandPeace = { prefix: 'fas', iconName: 'hand-peace', icon: [448, 512, [], "f25b", "M408 216c-22.092 0-40 17.909-40 40h-8v-32c0-22.091-17.908-40-40-40s-40 17.909-40 40v32h-8V48c0-26.51-21.49-48-48-48s-48 21.49-48 48v208h-13.572L92.688 78.449C82.994 53.774 55.134 41.63 30.461 51.324 5.787 61.017-6.356 88.877 3.337 113.551l74.765 190.342-31.09 24.872c-15.381 12.306-19.515 33.978-9.741 51.081l64 112A39.998 39.998 0 0 0 136 512h240c18.562 0 34.686-12.77 38.937-30.838l32-136A39.97 39.97 0 0 0 448 336v-80c0-22.091-17.908-40-40-40z"] }; +var faHandPointDown = { prefix: 'fas', iconName: 'hand-point-down', icon: [384, 512, [], "f0a7", "M91.826 467.2V317.966c-8.248 5.841-16.558 10.57-24.918 14.153C35.098 345.752-.014 322.222 0 288c.008-18.616 10.897-32.203 29.092-40 28.286-12.122 64.329-78.648 77.323-107.534 7.956-17.857 25.479-28.453 43.845-28.464l.001-.002h171.526c11.812 0 21.897 8.596 23.703 20.269 7.25 46.837 38.483 61.76 38.315 123.731-.007 2.724.195 13.254.195 16 0 50.654-22.122 81.574-71.263 72.6-9.297 18.597-39.486 30.738-62.315 16.45-21.177 24.645-53.896 22.639-70.944 6.299V467.2c0 24.15-20.201 44.8-43.826 44.8-23.283 0-43.826-21.35-43.826-44.8zM112 72V24c0-13.255 10.745-24 24-24h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24zm212-24c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z"] }; +var faHandPointLeft = { prefix: 'fas', iconName: 'hand-point-left', icon: [512, 512, [], "f0a5", "M44.8 155.826h149.234c-5.841-8.248-10.57-16.558-14.153-24.918C166.248 99.098 189.778 63.986 224 64c18.616.008 32.203 10.897 40 29.092 12.122 28.286 78.648 64.329 107.534 77.323 17.857 7.956 28.453 25.479 28.464 43.845l.002.001v171.526c0 11.812-8.596 21.897-20.269 23.703-46.837 7.25-61.76 38.483-123.731 38.315-2.724-.007-13.254.195-16 .195-50.654 0-81.574-22.122-72.6-71.263-18.597-9.297-30.738-39.486-16.45-62.315-24.645-21.177-22.639-53.896-6.299-70.944H44.8c-24.15 0-44.8-20.201-44.8-43.826 0-23.283 21.35-43.826 44.8-43.826zM440 176h48c13.255 0 24 10.745 24 24v192c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24zm24 212c11.046 0 20-8.954 20-20s-8.954-20-20-20-20 8.954-20 20 8.954 20 20 20z"] }; +var faHandPointRight = { prefix: 'fas', iconName: 'hand-point-right', icon: [512, 512, [], "f0a4", "M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z"] }; +var faHandPointUp = { prefix: 'fas', iconName: 'hand-point-up', icon: [384, 512, [], "f0a6", "M135.652 0c23.625 0 43.826 20.65 43.826 44.8v99.851c17.048-16.34 49.766-18.346 70.944 6.299 22.829-14.288 53.017-2.147 62.315 16.45C361.878 158.426 384 189.346 384 240c0 2.746-.203 13.276-.195 16 .168 61.971-31.065 76.894-38.315 123.731C343.683 391.404 333.599 400 321.786 400H150.261l-.001-.002c-18.366-.011-35.889-10.607-43.845-28.464C93.421 342.648 57.377 276.122 29.092 264 10.897 256.203.008 242.616 0 224c-.014-34.222 35.098-57.752 66.908-44.119 8.359 3.583 16.67 8.312 24.918 14.153V44.8c0-23.45 20.543-44.8 43.826-44.8zM136 416h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24v-48c0-13.255 10.745-24 24-24zm168 28c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z"] }; +var faHandPointer = { prefix: 'fas', iconName: 'hand-pointer', icon: [448, 512, [], "f25a", "M448 240v96c0 3.084-.356 6.159-1.063 9.162l-32 136C410.686 499.23 394.562 512 376 512H168a40.004 40.004 0 0 1-32.35-16.473l-127.997-176c-12.993-17.866-9.043-42.883 8.822-55.876 17.867-12.994 42.884-9.043 55.877 8.823L104 315.992V40c0-22.091 17.908-40 40-40s40 17.909 40 40v200h8v-40c0-22.091 17.908-40 40-40s40 17.909 40 40v40h8v-24c0-22.091 17.908-40 40-40s40 17.909 40 40v24h8c0-22.091 17.908-40 40-40s40 17.909 40 40zm-256 80h-8v96h8v-96zm88 0h-8v96h8v-96zm88 0h-8v96h8v-96z"] }; +var faHandRock = { prefix: 'fas', iconName: 'hand-rock', icon: [512, 512, [], "f255", "M512 128.79c0-26.322-20.861-48.344-47.18-48.783C437.935 79.558 416 101.217 416 128h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C333.935 47.558 312 69.217 312 96v32h-8V80.79c0-26.322-20.861-48.344-47.18-48.783C229.935 31.558 208 53.217 208 80v48h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C125.935 47.558 104 69.217 104 96v136l-8-7.111V176.79c0-26.322-20.861-48.344-47.18-48.783C21.935 127.558 0 149.217 0 176v66.445a95.998 95.998 0 0 0 32.221 71.751l111.668 99.261A47.999 47.999 0 0 1 160 449.333V456c0 13.255 10.745 24 24 24h240c13.255 0 24-10.745 24-24v-2.921a96.01 96.01 0 0 1 7.523-37.254l48.954-116.265A96.002 96.002 0 0 0 512 262.306V128.79z"] }; +var faHandScissors = { prefix: 'fas', iconName: 'hand-scissors', icon: [512, 512, [], "f257", "M216 440c0-22.092 17.909-40 40-40v-8h-32c-22.091 0-40-17.908-40-40s17.909-40 40-40h32v-8H48c-26.51 0-48-21.49-48-48s21.49-48 48-48h208v-13.572l-177.551-69.74c-24.674-9.694-36.818-37.555-27.125-62.228 9.693-24.674 37.554-36.817 62.228-27.124l190.342 74.765 24.872-31.09c12.306-15.381 33.978-19.515 51.081-9.741l112 64A40.002 40.002 0 0 1 512 168v240c0 18.562-12.77 34.686-30.838 38.937l-136 32A39.982 39.982 0 0 1 336 480h-80c-22.091 0-40-17.908-40-40z"] }; +var faHandSpock = { prefix: 'fas', iconName: 'hand-spock', icon: [512, 512, [], "f259", "M10.872 316.585c15.139-16.086 40.454-16.854 56.543-1.713L128 371.893v-79.405L88.995 120.865c-4.896-21.542 8.598-42.974 30.14-47.87 21.549-4.894 42.975 8.599 47.87 30.141L201.747 256h9.833L164.016 48.966c-4.946-21.531 8.498-42.994 30.028-47.94 21.532-4.95 42.994 8.498 47.94 30.028L293.664 256h15.105l48.425-193.702c5.357-21.432 27.075-34.462 48.507-29.104 21.432 5.358 34.463 27.075 29.104 48.507L391.231 256h11.08l30.768-129.265c5.117-21.491 26.685-34.768 48.177-29.647 21.491 5.117 34.765 26.686 29.647 48.177l-36.292 152.467A96.024 96.024 0 0 0 472 319.967v42.102a96.002 96.002 0 0 1-3.96 27.287l-26.174 88.287C435.825 498.022 417.101 512 395.846 512H179.172a48.002 48.002 0 0 1-32.898-13.046L12.585 373.128c-16.087-15.141-16.853-40.456-1.713-56.543z"] }; +var faHands = { prefix: 'fas', iconName: 'hands', icon: [640, 512, [], "f4c2", "M204.8 230.4c-10.6-14.1-30.7-17-44.8-6.4-14.1 10.6-17 30.7-6.4 44.8l38.1 50.8c4.8 6.4 4.1 15.3-1.5 20.9l-12.8 12.8c-6.7 6.7-17.6 6.2-23.6-1.1L64 244.4V96c0-17.7-14.3-32-32-32S0 78.3 0 96v218.4c0 10.9 3.7 21.5 10.5 30l104.1 134.3c5 6.5 8.4 13.9 10.4 21.7 1.8 6.9 8.1 11.6 15.3 11.6H272c8.8 0 16-7.2 16-16V384c0-27.7-9-54.6-25.6-76.8l-57.6-76.8zM608 64c-17.7 0-32 14.3-32 32v148.4l-89.8 107.8c-6 7.2-17 7.7-23.6 1.1l-12.8-12.8c-5.6-5.6-6.3-14.5-1.5-20.9l38.1-50.8c10.6-14.1 7.7-34.2-6.4-44.8-14.1-10.6-34.2-7.7-44.8 6.4l-57.6 76.8C361 329.4 352 356.3 352 384v112c0 8.8 7.2 16 16 16h131.7c7.1 0 13.5-4.7 15.3-11.6 2-7.8 5.4-15.2 10.4-21.7l104.1-134.3c6.8-8.5 10.5-19.1 10.5-30V96c0-17.7-14.3-32-32-32z"] }; +var faHandsHelping = { prefix: 'fas', iconName: 'hands-helping', icon: [640, 512, [], "f4c4", "M488 192H336v56c0 39.7-32.3 72-72 72s-72-32.3-72-72V126.4l-64.9 39C107.8 176.9 96 197.8 96 220.2v47.3l-80 46.2C.7 322.5-4.6 342.1 4.3 357.4l80 138.6c8.8 15.3 28.4 20.5 43.7 11.7L231.4 448H368c35.3 0 64-28.7 64-64h16c17.7 0 32-14.3 32-32v-64h8c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zm147.7-37.4L555.7 16C546.9.7 527.3-4.5 512 4.3L408.6 64H306.4c-12 0-23.7 3.4-33.9 9.7L239 94.6c-9.4 5.8-15 16.1-15 27.1V248c0 22.1 17.9 40 40 40s40-17.9 40-40v-88h184c30.9 0 56 25.1 56 56v28.5l80-46.2c15.3-8.9 20.5-28.4 11.7-43.7z"] }; +var faHandshake = { prefix: 'fas', iconName: 'handshake', icon: [640, 512, [], "f2b5", "M434.7 64h-85.9c-8 0-15.7 3-21.6 8.4l-98.3 90c-.1.1-.2.3-.3.4-16.6 15.6-16.3 40.5-2.1 56 12.7 13.9 39.4 17.6 56.1 2.7.1-.1.3-.1.4-.2l79.9-73.2c6.5-5.9 16.7-5.5 22.6 1 6 6.5 5.5 16.6-1 22.6l-26.1 23.9L504 313.8c2.9 2.4 5.5 5 7.9 7.7V128l-54.6-54.6c-5.9-6-14.1-9.4-22.6-9.4zM544 128.2v223.9c0 17.7 14.3 32 32 32h64V128.2h-96zm48 223.9c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM0 384h64c17.7 0 32-14.3 32-32V128.2H0V384zm48-63.9c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16c0-8.9 7.2-16 16-16zm435.9 18.6L334.6 217.5l-30 27.5c-29.7 27.1-75.2 24.5-101.7-4.4-26.9-29.4-24.8-74.9 4.4-101.7L289.1 64h-83.8c-8.5 0-16.6 3.4-22.6 9.4L128 128v223.9h18.3l90.5 81.9c27.4 22.3 67.7 18.1 90-9.3l.2-.2 17.9 15.5c15.9 13 39.4 10.5 52.3-5.4l31.4-38.6 5.4 4.4c13.7 11.1 33.9 9.1 45-4.7l9.5-11.7c11.2-13.8 9.1-33.9-4.6-45.1z"] }; +var faHashtag = { prefix: 'fas', iconName: 'hashtag', icon: [448, 512, [], "f292", "M440.667 182.109l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l14.623-81.891C377.123 38.754 371.468 32 363.997 32h-40.632a12 12 0 0 0-11.813 9.891L296.175 128H197.54l14.623-81.891C213.477 38.754 207.822 32 200.35 32h-40.632a12 12 0 0 0-11.813 9.891L132.528 128H53.432a12 12 0 0 0-11.813 9.891l-7.143 40C33.163 185.246 38.818 192 46.289 192h74.81L98.242 320H19.146a12 12 0 0 0-11.813 9.891l-7.143 40C-1.123 377.246 4.532 384 12.003 384h74.81L72.19 465.891C70.877 473.246 76.532 480 84.003 480h40.632a12 12 0 0 0 11.813-9.891L151.826 384h98.634l-14.623 81.891C234.523 473.246 240.178 480 247.65 480h40.632a12 12 0 0 0 11.813-9.891L315.472 384h79.096a12 12 0 0 0 11.813-9.891l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l22.857-128h79.096a12 12 0 0 0 11.813-9.891zM261.889 320h-98.634l22.857-128h98.634l-22.857 128z"] }; +var faHdd = { prefix: 'fas', iconName: 'hdd', icon: [576, 512, [], "f0a0", "M576 304v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48zm-48-80a79.557 79.557 0 0 1 30.777 6.165L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L17.223 230.165A79.557 79.557 0 0 1 48 224h480zm-48 96c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm-96 0c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; +var faHeading = { prefix: 'fas', iconName: 'heading', icon: [512, 512, [], "f1dc", "M496 80V48c0-8.837-7.163-16-16-16H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.621v128H154.379V96H192c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.275v320H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.621V288H357.62v128H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.275V96H480c8.837 0 16-7.163 16-16z"] }; +var faHeadphones = { prefix: 'fas', iconName: 'headphones', icon: [512, 512, [], "f025", "M256 32C114.52 32 0 146.496 0 288v48a32 32 0 0 0 17.689 28.622l14.383 7.191C34.083 431.903 83.421 480 144 480h24c13.255 0 24-10.745 24-24V280c0-13.255-10.745-24-24-24h-24c-31.342 0-59.671 12.879-80 33.627V288c0-105.869 86.131-192 192-192s192 86.131 192 192v1.627C427.671 268.879 399.342 256 368 256h-24c-13.255 0-24 10.745-24 24v176c0 13.255 10.745 24 24 24h24c60.579 0 109.917-48.098 111.928-108.187l14.382-7.191A32 32 0 0 0 512 336v-48c0-141.479-114.496-256-256-256z"] }; +var faHeart = { prefix: 'fas', iconName: 'heart', icon: [512, 512, [], "f004", "M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z"] }; +var faHeartbeat = { prefix: 'fas', iconName: 'heartbeat', icon: [512, 512, [], "f21e", "M320.2 243.8l-49.7 99.4c-6 12.1-23.4 11.7-28.9-.6l-56.9-126.3-30 71.7H60.6l182.5 186.5c7.1 7.3 18.6 7.3 25.7 0L451.4 288H342.3l-22.1-44.2zM473.7 73.9l-2.4-2.5c-51.5-52.6-135.8-52.6-187.4 0L256 100l-27.9-28.5c-51.5-52.7-135.9-52.7-187.4 0l-2.4 2.4C-10.4 123.7-12.5 203 31 256h102.4l35.9-86.2c5.4-12.9 23.6-13.2 29.4-.4l58.2 129.3 49-97.9c5.9-11.8 22.7-11.8 28.6 0l27.6 55.2H481c43.5-53 41.4-132.3-7.3-182.1z"] }; +var faHelicopter = { prefix: 'fas', iconName: 'helicopter', icon: [640, 512, [], "f533", "M304 384h272c17.67 0 32-14.33 32-32 0-123.71-100.29-224-224-224V64h176c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H144c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h176v64H112L68.8 70.4C65.78 66.37 61.03 64 56 64H16.01C5.6 64-2.04 73.78.49 83.88L32 192l160 64 86.4 115.2A31.992 31.992 0 0 0 304 384zm112-188.49C478.55 208.3 528.03 257.44 540.79 320H416V195.51zm219.37 263.3l-22.15-22.2c-6.25-6.26-16.24-6.1-22.64.01-7.09 6.77-13.84 11.25-24.64 11.25H240c-8.84 0-16 7.18-16 16.03v32.06c0 8.85 7.16 16.03 16 16.03h325.94c14.88 0 35.3-.47 68.45-29.52 7.02-6.14 7.57-17.05.98-23.66z"] }; +var faHistory = { prefix: 'fas', iconName: 'history', icon: [512, 512, [], "f1da", "M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z"] }; +var faHockeyPuck = { prefix: 'fas', iconName: 'hockey-puck', icon: [512, 512, [], "f453", "M0 160c0-53 114.6-96 256-96s256 43 256 96-114.6 96-256 96S0 213 0 160zm0 82.2V352c0 53 114.6 96 256 96s256-43 256-96V242.2c-113.4 82.3-398.5 82.4-512 0z"] }; +var faHome = { prefix: 'fas', iconName: 'home', icon: [576, 512, [], "f015", "M488 312.7V456c0 13.3-10.7 24-24 24H348c-6.6 0-12-5.4-12-12V356c0-6.6-5.4-12-12-12h-72c-6.6 0-12 5.4-12 12v112c0 6.6-5.4 12-12 12H112c-13.3 0-24-10.7-24-24V312.7c0-3.6 1.6-7 4.4-9.3l188-154.8c4.4-3.6 10.8-3.6 15.3 0l188 154.8c2.7 2.3 4.3 5.7 4.3 9.3zm83.6-60.9L488 182.9V44.4c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12V117l-89.5-73.7c-17.7-14.6-43.3-14.6-61 0L4.4 251.8c-5.1 4.2-5.8 11.8-1.6 16.9l25.5 31c4.2 5.1 11.8 5.8 16.9 1.6l235.2-193.7c4.4-3.6 10.8-3.6 15.3 0l235.2 193.7c5.1 4.2 12.7 3.5 16.9-1.6l25.5-31c4.2-5.2 3.4-12.7-1.7-16.9z"] }; +var faHospital = { prefix: 'fas', iconName: 'hospital', icon: [448, 512, [], "f0f8", "M448 492v20H0v-20c0-6.627 5.373-12 12-12h20V120c0-13.255 10.745-24 24-24h88V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v72h88c13.255 0 24 10.745 24 24v360h20c6.627 0 12 5.373 12 12zM308 192h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-168 64h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm104 128h-40c-6.627 0-12 5.373-12 12v84h64v-84c0-6.627-5.373-12-12-12zm64-96h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-116 12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zM182 96h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6z"] }; +var faHospitalAlt = { prefix: 'fas', iconName: 'hospital-alt', icon: [576, 512, [], "f47d", "M544 96H416V32c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32v368c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16V128c0-17.7-14.3-32-32-32zM160 436c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm160 128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm16-170c0 3.3-2.7 6-6 6h-26v26c0 3.3-2.7 6-6 6h-20c-3.3 0-6-2.7-6-6v-26h-26c-3.3 0-6-2.7-6-6v-20c0-3.3 2.7-6 6-6h26V86c0-3.3 2.7-6 6-6h20c3.3 0 6 2.7 6 6v26h26c3.3 0 6 2.7 6 6v20zm144 298c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z"] }; +var faHospitalSymbol = { prefix: 'fas', iconName: 'hospital-symbol', icon: [512, 512, [], "f47e", "M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm112 376c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-88h-96v88c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V136c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v88h96v-88c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v240z"] }; +var faHourglass = { prefix: 'fas', iconName: 'hourglass', icon: [384, 512, [], "f254", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64z"] }; +var faHourglassEnd = { prefix: 'fas', iconName: 'hourglass-end', icon: [384, 512, [], "f253", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64zM192 208c-57.787 0-104-66.518-104-144h208c0 77.945-46.51 144-104 144z"] }; +var faHourglassHalf = { prefix: 'fas', iconName: 'hourglass-half', icon: [384, 512, [], "f252", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-75.078 384H99.08c17.059-46.797 52.096-80 92.92-80 40.821 0 75.862 33.196 92.922 80zm.019-256H99.078C91.988 108.548 88 86.748 88 64h208c0 22.805-3.987 44.587-11.059 64z"] }; +var faHourglassStart = { prefix: 'fas', iconName: 'hourglass-start', icon: [384, 512, [], "f251", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-64 448H88c0-77.458 46.204-144 104-144 57.786 0 104 66.517 104 144z"] }; +var faICursor = { prefix: 'fas', iconName: 'i-cursor', icon: [256, 512, [], "f246", "M256 52.048V12.065C256 5.496 250.726.148 244.158.066 211.621-.344 166.469.011 128 37.959 90.266.736 46.979-.114 11.913.114 5.318.157 0 5.519 0 12.114v39.645c0 6.687 5.458 12.078 12.145 11.998C38.111 63.447 96 67.243 96 112.182V224H60c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h36v112c0 44.932-56.075 48.031-83.95 47.959C5.404 447.942 0 453.306 0 459.952v39.983c0 6.569 5.274 11.917 11.842 11.999 32.537.409 77.689.054 116.158-37.894 37.734 37.223 81.021 38.073 116.087 37.845 6.595-.043 11.913-5.405 11.913-12V460.24c0-6.687-5.458-12.078-12.145-11.998C217.889 448.553 160 444.939 160 400V288h36c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-36V112.182c0-44.932 56.075-48.213 83.95-48.142 6.646.018 12.05-5.346 12.05-11.992z"] }; +var faIdBadge = { prefix: 'fas', iconName: 'id-badge', icon: [384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM144 32h96c8.8 0 16 7.2 16 16s-7.2 16-16 16h-96c-8.8 0-16-7.2-16-16s7.2-16 16-16zm48 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 416 80 407.4 80 396.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"] }; +var faIdCard = { prefix: 'fas', iconName: 'id-card', icon: [576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v16h576V80c0-26.5-21.5-48-48-48zM0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V128H0v304zm352-232c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zM176 192c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zM67.1 396.2C75.5 370.5 99.6 352 128 352h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.9-5.2 19.8-15.6 19.8H82.7c-10.4 0-18.8-10-15.6-19.8z"] }; +var faIdCardAlt = { prefix: 'fas', iconName: 'id-card-alt', icon: [576, 512, [], "f47f", "M528 64H384v96H192V64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM288 224c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm93.3 224H194.7c-10.4 0-18.8-10-15.6-19.8 8.3-25.6 32.4-44.2 60.9-44.2h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.8-5.2 19.8-15.6 19.8zM352 32c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v96h128V32z"] }; +var faImage = { prefix: 'fas', iconName: 'image', icon: [512, 512, [], "f03e", "M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z"] }; +var faImages = { prefix: 'fas', iconName: 'images', icon: [576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v208c0 44.112 35.888 80 80 80h336zm96-80V80c0-26.51-21.49-48-48-48H144c-26.51 0-48 21.49-48 48v256c0 26.51 21.49 48 48 48h384c26.51 0 48-21.49 48-48zM256 128c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-96 144l55.515-55.515c4.686-4.686 12.284-4.686 16.971 0L272 256l135.515-135.515c4.686-4.686 12.284-4.686 16.971 0L512 208v112H160v-48z"] }; +var faInbox = { prefix: 'fas', iconName: 'inbox', icon: [576, 512, [], "f01c", "M567.938 243.908L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L8.062 243.908A47.994 47.994 0 0 0 0 270.533V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V270.533a47.994 47.994 0 0 0-8.062-26.625zM162.252 128h251.497l85.333 128H376l-32 64H232l-32-64H76.918l85.334-128z"] }; +var faIndent = { prefix: 'fas', iconName: 'indent', icon: [448, 512, [], "f03c", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm176 144h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm-52.687-111.313l-96-95.984C17.266 138.652 0 145.776 0 160.016v191.975c0 14.329 17.325 21.304 27.313 11.313l96-95.992c6.249-6.247 6.249-16.377 0-22.625z"] }; +var faIndustry = { prefix: 'fas', iconName: 'industry', icon: [512, 512, [], "f275", "M475.115 163.781L336 252.309v-68.28c0-18.916-20.931-30.399-36.885-20.248L160 252.309V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h464c13.255 0 24-10.745 24-24V184.029c0-18.917-20.931-30.399-36.885-20.248z"] }; +var faInfinity = { prefix: 'fas', iconName: 'infinity', icon: [640, 512, [], "f534", "M471.1 96C405 96 353.3 137.3 320 174.6 286.7 137.3 235 96 168.9 96 75.8 96 0 167.8 0 256s75.8 160 168.9 160c66.1 0 117.8-41.3 151.1-78.6 33.3 37.3 85 78.6 151.1 78.6 93.1 0 168.9-71.8 168.9-160S564.2 96 471.1 96zM168.9 320c-40.2 0-72.9-28.7-72.9-64s32.7-64 72.9-64c38.2 0 73.4 36.1 94 64-20.4 27.6-55.9 64-94 64zm302.2 0c-38.2 0-73.4-36.1-94-64 20.4-27.6 55.9-64 94-64 40.2 0 72.9 28.7 72.9 64s-32.7 64-72.9 64z"] }; +var faInfo = { prefix: 'fas', iconName: 'info', icon: [192, 512, [], "f129", "M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z"] }; +var faInfoCircle = { prefix: 'fas', iconName: 'info-circle', icon: [512, 512, [], "f05a", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z"] }; +var faItalic = { prefix: 'fas', iconName: 'italic', icon: [320, 512, [], "f033", "M204.758 416h-33.849l62.092-320h40.725a16 16 0 0 0 15.704-12.937l6.242-32C297.599 41.184 290.034 32 279.968 32H120.235a16 16 0 0 0-15.704 12.937l-6.242 32C96.362 86.816 103.927 96 113.993 96h33.846l-62.09 320H46.278a16 16 0 0 0-15.704 12.935l-6.245 32C22.402 470.815 29.967 480 40.034 480h158.479a16 16 0 0 0 15.704-12.935l6.245-32c1.927-9.88-5.638-19.065-15.704-19.065z"] }; +var faKey = { prefix: 'fas', iconName: 'key', icon: [512, 512, [], "f084", "M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z"] }; +var faKeyboard = { prefix: 'fas', iconName: 'keyboard', icon: [576, 512, [], "f11c", "M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"] }; +var faKiwiBird = { prefix: 'fas', iconName: 'kiwi-bird', icon: [576, 512, [], "f535", "M575.81 217.98C572.64 157.41 518.28 112 457.63 112h-9.37c-52.82 0-104.25-16.25-147.74-46.24-41.99-28.96-96.04-41.62-153.21-28.7C129.3 41.12-.08 78.24 0 224c.04 70.95 38.68 132.8 95.99 166.01V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-54.26c15.36 3.96 31.4 6.26 48 6.26 5.44 0 10.68-.73 16-1.18V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-59.43c14.24-5.06 27.88-11.39 40.34-19.51C342.07 355.25 393.86 336 448.46 336c25.48 0 16.01-.31 23.05-.78l74.41 136.44c2.86 5.23 8.3 8.34 14.05 8.34 1.31 0 2.64-.16 3.95-.5 7.09-1.8 12.05-8.19 12.05-15.5 0 0 .14-240.24-.16-246.02zM463.97 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm80 153.25l-39.86-73.08c15.12-5.83 28.73-14.6 39.86-25.98v99.06z"] }; +var faLanguage = { prefix: 'fas', iconName: 'language', icon: [640, 512, [], "f1ab", "M304 416H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h280v320zm-120.676-72.622A12 12 0 0 0 194.839 352h22.863c8.22 0 14.007-8.078 11.362-15.861L171.61 167.085a12 12 0 0 0-11.362-8.139h-32.489a12.001 12.001 0 0 0-11.362 8.139L58.942 336.139C56.297 343.922 62.084 352 70.304 352h22.805a12 12 0 0 0 11.535-8.693l9.118-31.807h60.211l9.351 31.878zm-39.051-140.42s4.32 21.061 7.83 33.21l10.8 37.531h-38.07l11.07-37.531c3.51-12.15 7.83-33.21 7.83-33.21h.54zM616 416H336V96h280c13.255 0 24 10.745 24 24v272c0 13.255-10.745 24-24 24zm-36-228h-64v-16c0-6.627-5.373-12-12-12h-16c-6.627 0-12 5.373-12 12v16h-64c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h114.106c-6.263 14.299-16.518 28.972-30.023 43.206-6.56-6.898-12.397-13.91-17.365-20.933-3.639-5.144-10.585-6.675-15.995-3.446l-7.28 4.346-6.498 3.879c-5.956 3.556-7.693 11.421-3.735 17.117 6.065 8.729 13.098 17.336 20.984 25.726-8.122 6.226-16.841 12.244-26.103 17.964-5.521 3.41-7.381 10.556-4.162 16.19l7.941 13.896c3.362 5.883 10.935 7.826 16.706 4.276 12.732-7.831 24.571-16.175 35.443-24.891 10.917 8.761 22.766 17.102 35.396 24.881 5.774 3.556 13.353 1.618 16.717-4.27l7.944-13.903c3.213-5.623 1.37-12.76-4.135-16.171a312.737 312.737 0 0 1-26.06-18.019c21.024-22.425 35.768-46.289 42.713-69.85H580c6.627 0 12-5.373 12-12v-16c0-6.625-5.373-11.998-12-11.998z"] }; +var faLaptop = { prefix: 'fas', iconName: 'laptop', icon: [640, 512, [], "f109", "M512 64v256H128V64h384m16-64H112C85.5 0 64 21.5 64 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm100 416H389.5c-3 0-5.5 2.1-5.9 5.1C381.2 436.3 368 448 352 448h-64c-16 0-29.2-11.7-31.6-26.9-.5-2.9-3-5.1-5.9-5.1H12c-6.6 0-12 5.4-12 12v36c0 26.5 21.5 48 48 48h544c26.5 0 48-21.5 48-48v-36c0-6.6-5.4-12-12-12z"] }; +var faLeaf = { prefix: 'fas', iconName: 'leaf', icon: [576, 512, [], "f06c", "M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z"] }; +var faLemon = { prefix: 'fas', iconName: 'lemon', icon: [512, 512, [], "f094", "M489.038 22.963C465.944-.13 434.648-5.93 413.947 6.129c-58.906 34.312-181.25-53.077-321.073 86.746S40.441 355.041 6.129 413.945c-12.059 20.702-6.26 51.999 16.833 75.093 23.095 23.095 54.392 28.891 75.095 16.832 58.901-34.31 181.246 53.079 321.068-86.743S471.56 156.96 505.871 98.056c12.059-20.702 6.261-51.999-16.833-75.093zM243.881 95.522c-58.189 14.547-133.808 90.155-148.358 148.358-1.817 7.27-8.342 12.124-15.511 12.124-1.284 0-2.59-.156-3.893-.481-8.572-2.144-13.784-10.83-11.642-19.403C81.901 166.427 166.316 81.93 236.119 64.478c8.575-2.143 17.261 3.069 19.403 11.642s-3.069 17.259-11.641 19.402z"] }; +var faLessThan = { prefix: 'fas', iconName: 'less-than', icon: [384, 512, [], "f536", "M365.46 357.74L147.04 255.89l218.47-101.88c16.02-7.47 22.95-26.51 15.48-42.53l-13.52-29C360 66.46 340.96 59.53 324.94 67L18.48 209.91a32.014 32.014 0 0 0-18.48 29v34.24c0 12.44 7.21 23.75 18.48 29l306.31 142.83c16.06 7.49 35.15.54 42.64-15.52l13.56-29.08c7.49-16.06.54-35.15-15.53-42.64z"] }; +var faLessThanEqual = { prefix: 'fas', iconName: 'less-than-equal', icon: [448, 512, [], "f537", "M54.98 214.2l301.41 119.87c18.39 6.03 38.71-2.54 45.38-19.15l12.09-30.08c6.68-16.61-2.82-34.97-21.21-41l-175.44-68.05 175.56-68.09c18.29-6 27.74-24.27 21.1-40.79l-12.03-29.92c-6.64-16.53-26.86-25.06-45.15-19.06L54.98 137.89C41.21 142.41 32 154.5 32 168.07v15.96c0 13.56 9.21 25.65 22.98 30.17zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"] }; +var faLevelDownAlt = { prefix: 'fas', iconName: 'level-down-alt', icon: [320, 512, [], "f3be", "M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z"] }; +var faLevelUpAlt = { prefix: 'fas', iconName: 'level-up-alt', icon: [320, 512, [], "f3bf", "M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z"] }; +var faLifeRing = { prefix: 'fas', iconName: 'life-ring', icon: [512, 512, [], "f1cd", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm173.696 119.559l-63.399 63.399c-10.987-18.559-26.67-34.252-45.255-45.255l63.399-63.399a218.396 218.396 0 0 1 45.255 45.255zM256 352c-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96-42.981 96-96 96zM127.559 82.304l63.399 63.399c-18.559 10.987-34.252 26.67-45.255 45.255l-63.399-63.399a218.372 218.372 0 0 1 45.255-45.255zM82.304 384.441l63.399-63.399c10.987 18.559 26.67 34.252 45.255 45.255l-63.399 63.399a218.396 218.396 0 0 1-45.255-45.255zm302.137 45.255l-63.399-63.399c18.559-10.987 34.252-26.67 45.255-45.255l63.399 63.399a218.403 218.403 0 0 1-45.255 45.255z"] }; +var faLightbulb = { prefix: 'fas', iconName: 'lightbulb', icon: [384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zm-143.107-44c-9.907 0-18.826-6.078-22.376-15.327C67.697 267.541 16 277.731 16 176 16 78.803 94.805 0 192 0s176 78.803 176 176c0 101.731-51.697 91.541-90.516 192.673-3.55 9.249-12.47 15.327-22.376 15.327H128.893zM112 176c0-44.112 35.888-80 80-80 8.837 0 16-7.164 16-16s-7.163-16-16-16c-61.757 0-112 50.243-112 112 0 8.836 7.164 16 16 16s16-7.164 16-16z"] }; +var faLink = { prefix: 'fas', iconName: 'link', icon: [512, 512, [], "f0c1", "M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z"] }; +var faLiraSign = { prefix: 'fas', iconName: 'lira-sign', icon: [384, 512, [], "f195", "M371.994 256h-48.019C317.64 256 312 260.912 312 267.246 312 368 230.179 416 144 416V256.781l134.603-29.912A12 12 0 0 0 288 215.155v-40.976c0-7.677-7.109-13.38-14.603-11.714L144 191.219V160.78l134.603-29.912A12 12 0 0 0 288 119.154V78.179c0-7.677-7.109-13.38-14.603-11.714L144 95.219V44c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v68.997L9.397 125.131A12 12 0 0 0 0 136.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 178.558v30.439L9.397 221.131A12 12 0 0 0 0 232.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 274.558V468c0 6.627 5.373 12 12 12h79.583c134.091 0 223.255-77.834 228.408-211.592.261-6.782-5.211-12.408-11.997-12.408z"] }; +var faList = { prefix: 'fas', iconName: 'list', icon: [512, 512, [], "f03a", "M128 116V76c0-8.837 7.163-16 16-16h352c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H144c-8.837 0-16-7.163-16-16zm16 176h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 144h64c8.837 0 16-7.163 16-16V64c0-8.837-7.163-16-16-16H16C7.163 48 0 55.163 0 64v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16z"] }; +var faListAlt = { prefix: 'fas', iconName: 'list-alt', icon: [512, 512, [], "f022", "M464 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM128 120c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288-136v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12z"] }; +var faListOl = { prefix: 'fas', iconName: 'list-ol', icon: [512, 512, [], "f0cb", "M3.263 139.527c0-7.477 3.917-11.572 11.573-11.572h15.131V88.078c0-5.163.534-10.503.534-10.503h-.356s-1.779 2.67-2.848 3.738c-4.451 4.273-10.504 4.451-15.666-1.068l-5.518-6.231c-5.342-5.341-4.984-11.216.534-16.379l21.72-19.938C32.815 33.602 36.732 32 42.785 32H54.89c7.656 0 11.749 3.916 11.749 11.572v84.384h15.488c7.655 0 11.572 4.094 11.572 11.572v8.901c0 7.477-3.917 11.572-11.572 11.572H14.836c-7.656 0-11.573-4.095-11.573-11.572v-8.902zM2.211 304.591c0-47.278 50.955-56.383 50.955-69.165 0-7.18-5.954-8.755-9.28-8.755-3.153 0-6.479 1.051-9.455 3.852-5.079 4.903-10.507 7.004-16.111 2.451l-8.579-6.829c-5.779-4.553-7.18-9.805-2.803-15.409C13.592 201.981 26.025 192 47.387 192c19.437 0 44.476 10.506 44.476 39.573 0 38.347-46.753 46.402-48.679 56.909h39.049c7.529 0 11.557 4.027 11.557 11.382v8.755c0 7.354-4.028 11.382-11.557 11.382h-67.94c-7.005 0-12.083-4.028-12.083-11.382v-4.028zM5.654 454.61l5.603-9.28c3.853-6.654 9.105-7.004 15.584-3.152 4.903 2.101 9.63 3.152 14.359 3.152 10.155 0 14.358-3.502 14.358-8.23 0-6.654-5.604-9.106-15.934-9.106h-4.728c-5.954 0-9.28-2.101-12.258-7.88l-1.05-1.926c-2.451-4.728-1.226-9.806 2.801-14.884l5.604-7.004c6.829-8.405 12.257-13.483 12.257-13.483v-.35s-4.203 1.051-12.608 1.051H16.685c-7.53 0-11.383-4.028-11.383-11.382v-8.755c0-7.53 3.853-11.382 11.383-11.382h58.484c7.529 0 11.382 4.027 11.382 11.382v3.327c0 5.778-1.401 9.806-5.079 14.183l-17.509 20.137c19.611 5.078 28.716 20.487 28.716 34.845 0 21.363-14.358 44.126-48.503 44.126-16.636 0-28.192-4.728-35.896-9.455-5.779-4.202-6.304-9.805-2.626-15.934zM144 132h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faListUl = { prefix: 'fas', iconName: 'list-ul', icon: [512, 512, [], "f0ca", "M96 96c0 26.51-21.49 48-48 48S0 122.51 0 96s21.49-48 48-48 48 21.49 48 48zM48 208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm0 160c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm96-236h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faLocationArrow = { prefix: 'fas', iconName: 'location-arrow', icon: [512, 512, [], "f124", "M443.683 4.529L27.818 196.418C-18.702 217.889-3.39 288 47.933 288H224v175.993c0 51.727 70.161 66.526 91.582 20.115L507.38 68.225c18.905-40.961-23.752-82.133-63.697-63.696z"] }; +var faLock = { prefix: 'fas', iconName: 'lock', icon: [448, 512, [], "f023", "M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z"] }; +var faLockOpen = { prefix: 'fas', iconName: 'lock-open', icon: [576, 512, [], "f3c1", "M423.5 0C339.5.3 272 69.5 272 153.5V224H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48h-48v-71.1c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v80c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-80C576 68 507.5-.3 423.5 0z"] }; +var faLongArrowAltDown = { prefix: 'fas', iconName: 'long-arrow-alt-down', icon: [256, 512, [], "f309", "M168 345.941V44c0-6.627-5.373-12-12-12h-56c-6.627 0-12 5.373-12 12v301.941H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.569 9.373 33.941 0l86.059-86.059c15.119-15.119 4.411-40.971-16.971-40.971H168z"] }; +var faLongArrowAltLeft = { prefix: 'fas', iconName: 'long-arrow-alt-left', icon: [448, 512, [], "f30a", "M134.059 296H436c6.627 0 12-5.373 12-12v-56c0-6.627-5.373-12-12-12H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.569 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296z"] }; +var faLongArrowAltRight = { prefix: 'fas', iconName: 'long-arrow-alt-right', icon: [448, 512, [], "f30b", "M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z"] }; +var faLongArrowAltUp = { prefix: 'fas', iconName: 'long-arrow-alt-up', icon: [256, 512, [], "f30c", "M88 166.059V468c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12V166.059h46.059c21.382 0 32.09-25.851 16.971-40.971l-86.059-86.059c-9.373-9.373-24.569-9.373-33.941 0l-86.059 86.059c-15.119 15.119-4.411 40.971 16.971 40.971H88z"] }; +var faLowVision = { prefix: 'fas', iconName: 'low-vision', icon: [576, 512, [], "f2a8", "M569.344 231.631C512.96 135.949 407.81 72 288 72c-28.468 0-56.102 3.619-82.451 10.409L152.778 10.24c-7.601-10.858-22.564-13.5-33.423-5.9l-13.114 9.178c-10.86 7.601-13.502 22.566-5.9 33.426l43.131 58.395C89.449 131.73 40.228 174.683 6.682 231.581c-.01.017-.023.033-.034.05-8.765 14.875-8.964 33.528 0 48.739 38.5 65.332 99.742 115.862 172.859 141.349L55.316 244.302A272.194 272.194 0 0 1 83.61 208.39l119.4 170.58h.01l40.63 58.04a330.055 330.055 0 0 0 78.94 1.17l-189.98-271.4a277.628 277.628 0 0 1 38.777-21.563l251.836 356.544c7.601 10.858 22.564 13.499 33.423 5.9l13.114-9.178c10.86-7.601 13.502-22.567 5.9-33.426l-43.12-58.377-.007-.009c57.161-27.978 104.835-72.04 136.81-126.301a47.938 47.938 0 0 0 .001-48.739zM390.026 345.94l-19.066-27.23c24.682-32.567 27.711-76.353 8.8-111.68v.03c0 23.65-19.17 42.82-42.82 42.82-23.828 0-42.82-19.349-42.82-42.82 0-23.65 19.17-42.82 42.82-42.82h.03c-24.75-13.249-53.522-15.643-79.51-7.68l-19.068-27.237C253.758 123.306 270.488 120 288 120c75.162 0 136 60.826 136 136 0 34.504-12.833 65.975-33.974 89.94z"] }; +var faMagic = { prefix: 'fas', iconName: 'magic', icon: [512, 512, [], "f0d0", "M101.1 505L7 410.9c-9.4-9.4-9.4-24.6 0-33.9L377 7c9.4-9.4 24.6-9.4 33.9 0l94.1 94.1c9.4 9.4 9.4 24.6 0 33.9L135 505c-9.3 9.3-24.5 9.3-33.9 0zM304 159.2l48.8 48.8 89.9-89.9-48.8-48.8-89.9 89.9zM138.9 39.3l-11.7 23.8-26.2 3.8c-4.7.7-6.6 6.5-3.2 9.8l19 18.5-4.5 26.1c-.8 4.7 4.1 8.3 8.3 6.1L144 115l23.4 12.3c4.2 2.2 9.1-1.4 8.3-6.1l-4.5-26.1 19-18.5c3.4-3.3 1.5-9.1-3.2-9.8L160.8 63l-11.7-23.8c-2-4.1-8.1-4.1-10.2.1zm97.7-20.7l-7.8 15.8-17.5 2.6c-3.1.5-4.4 4.3-2.1 6.5l12.6 12.3-3 17.4c-.5 3.1 2.8 5.5 5.6 4L240 69l15.6 8.2c2.8 1.5 6.1-.9 5.6-4l-3-17.4 12.6-12.3c2.3-2.2 1-6.1-2.1-6.5l-17.5-2.5-7.8-15.8c-1.4-3-5.4-3-6.8-.1zm-192 0l-7.8 15.8L19.3 37c-3.1.5-4.4 4.3-2.1 6.5l12.6 12.3-3 17.4c-.5 3.1 2.8 5.5 5.6 4L48 69l15.6 8.2c2.8 1.5 6.1-.9 5.6-4l-3-17.4 12.6-12.3c2.3-2.2 1-6.1-2.1-6.5l-17.5-2.5-7.8-15.8c-1.4-3-5.4-3-6.8-.1zm416 223.5l-7.8 15.8-17.5 2.5c-3.1.5-4.4 4.3-2.1 6.5l12.6 12.3-3 17.4c-.5 3.1 2.8 5.5 5.6 4l15.6-8.2 15.6 8.2c2.8 1.5 6.1-.9 5.6-4l-3-17.4 12.6-12.3c2.3-2.2 1-6.1-2.1-6.5l-17.5-2.5-7.8-15.8c-1.4-2.8-5.4-2.8-6.8 0z"] }; +var faMagnet = { prefix: 'fas', iconName: 'magnet', icon: [512, 512, [], "f076", "M164.1 160H12c-6.6 0-12-5.4-12-12V68c0-19.9 16.1-36 36-36h104c19.9 0 36 16.1 36 36v80c.1 6.6-5.3 12-11.9 12zm348-12V67.9c0-19.9-16.1-36-36-36h-104c-19.9 0-36 16.1-36 36v80c0 6.6 5.4 12 12 12h152c6.6.1 12-5.3 12-11.9zm-164 44c-6.6 0-12 5.4-12 12v52c0 128.1-160 127.9-160 0v-52c0-6.6-5.4-12-12-12h-152c-6.7 0-12 5.4-12 12.1.1 21.4.6 40.3 0 53.3C.1 408 136.3 504 256.9 504 377.5 504 512 408 512 257.3c-.6-12.8-.2-33 0-53.2 0-6.7-5.3-12.1-12-12.1H348.1z"] }; +var faMale = { prefix: 'fas', iconName: 'male', icon: [192, 512, [], "f183", "M96 0c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64S60.654 0 96 0m48 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H48c-26.51 0-48 21.49-48 48v136c0 13.255 10.745 24 24 24h16v136c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V352h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48z"] }; +var faMap = { prefix: 'fas', iconName: 'map', icon: [576, 512, [], "f279", "M576 56.015v335.97a23.998 23.998 0 0 1-13.267 21.466l-128 64C418.948 485.344 400 473.992 400 455.985v-335.97a23.998 23.998 0 0 1 13.267-21.466l128-64C557.052 26.656 576 38.008 576 56.015zm-206.253 42.07l-144-64c-15.751-7-33.747 4.461-33.747 21.932v335.967a24 24 0 0 0 14.253 21.931l144 64c15.751 7 33.747-4.461 33.747-21.931V120.017a24 24 0 0 0-14.253-21.932zm-228.48-63.536l-128 63.985A23.998 23.998 0 0 0 0 120v335.985c0 18.007 18.948 29.359 34.733 21.466l128-63.985A23.998 23.998 0 0 0 176 392V56.015c0-18.007-18.948-29.359-34.733-21.466z"] }; +var faMapMarker = { prefix: 'fas', iconName: 'map-marker', icon: [384, 512, [], "f041", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0z"] }; +var faMapMarkerAlt = { prefix: 'fas', iconName: 'map-marker-alt', icon: [384, 512, [], "f3c5", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"] }; +var faMapPin = { prefix: 'fas', iconName: 'map-pin', icon: [320, 512, [], "f276", "M192 300.813v172.82l-22.015 33.023c-4.75 7.125-15.219 7.125-19.969 0L128 473.633v-172.82a162.221 162.221 0 0 0 64 0zM160 0c79.529 0 144 64.471 144 144s-64.471 144-144 144S16 223.529 16 144 80.471 0 160 0M80 136c0-39.701 32.299-72 72-72a8 8 0 0 0 0-16c-48.523 0-88 39.477-88 88a8 8 0 0 0 16 0z"] }; +var faMapSigns = { prefix: 'fas', iconName: 'map-signs', icon: [512, 512, [], "f277", "M487.515 104.485L439.03 152.97a23.998 23.998 0 0 1-16.97 7.029H56c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h160v-8c0-13.255 10.745-24 24-24h32c13.255 0 24 10.745 24 24v8h126.059a24 24 0 0 1 16.97 7.029l48.485 48.485c4.687 4.687 4.687 12.285.001 16.971zM216 368v120c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V368h-80zm240-144H296v-48h-80v48H89.941a24 24 0 0 0-16.97 7.029l-48.485 48.485c-4.686 4.686-4.686 12.284 0 16.971l48.485 48.485a23.998 23.998 0 0 0 16.97 7.029H456c13.255 0 24-10.745 24-24v-80C480 234.745 469.255 224 456 224z"] }; +var faMars = { prefix: 'fas', iconName: 'mars', icon: [384, 512, [], "f222", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c0-6.6-5.4-12-12-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faMarsDouble = { prefix: 'fas', iconName: 'mars-double', icon: [512, 512, [], "f227", "M340 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C198.5 72.1 172.2 64 144 64 64.5 64 0 128.5 0 208s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.5 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 288c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80zm356-128.1h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7c-18.2-11.4-39-18.9-61.5-21.3-2.1 21.8-8.2 43.3-18.4 63.3 1.1 0 2.2-.1 3.2-.1 44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80c0-1.1 0-2.2.1-3.2-20 10.2-41.5 16.4-63.3 18.4C168.4 455.6 229.6 512 304 512c79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12v-79c0-6.7-5.4-12.1-12-12.1z"] }; +var faMarsStroke = { prefix: 'fas', iconName: 'mars-stroke', icon: [384, 512, [], "f229", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-17.5 17.5-14.1-14.1c-4.7-4.7-12.3-4.7-17 0L224.5 133c-4.7 4.7-4.7 12.3 0 17l14.1 14.1-18 18c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l18-18 14.1 14.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L329.2 164l17.5-17.5 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c-.1-6.6-5.5-12-12.1-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faMarsStrokeH = { prefix: 'fas', iconName: 'mars-stroke-h', icon: [480, 512, [], "f22b", "M476.2 247.5l-55.9-55.9c-7.6-7.6-20.5-2.2-20.5 8.5V224H376v-20c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v20h-27.6c-5.8-25.6-18.7-49.9-38.6-69.8C189.6 98 98.4 98 42.2 154.2c-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 19.9-19.9 32.8-44.2 38.6-69.8H312v20c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-20h23.9v23.9c0 10.7 12.9 16 20.5 8.5l55.9-55.9c4.6-4.7 4.6-12.3-.1-17zm-275.6 65.1c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z"] }; +var faMarsStrokeV = { prefix: 'fas', iconName: 'mars-stroke-v', icon: [288, 512, [], "f22a", "M245.8 234.2c-19.9-19.9-44.2-32.8-69.8-38.6v-25.4h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V81.4h23.9c10.7 0 16-12.9 8.5-20.5L152.5 5.1c-4.7-4.7-12.3-4.7-17 0L79.6 61c-7.6 7.6-2.2 20.5 8.5 20.5H112v24.7H92c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h20v25.4c-25.6 5.8-49.9 18.7-69.8 38.6-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 56.3-56.2 56.3-147.4 0-203.6zm-45.2 158.4c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z"] }; +var faMedkit = { prefix: 'fas', iconName: 'medkit', icon: [512, 512, [], "f0fa", "M96 480h320V128h-32V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v48H96v352zm96-384h128v32H192V96zm320 80v256c0 26.51-21.49 48-48 48h-16V128h16c26.51 0 48 21.49 48 48zM64 480H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v352zm288-208v32c0 8.837-7.163 16-16 16h-48v48c0 8.837-7.163 16-16 16h-32c-8.837 0-16-7.163-16-16v-48h-48c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h48v-48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v48h48c8.837 0 16 7.163 16 16z"] }; +var faMeh = { prefix: 'fas', iconName: 'meh', icon: [496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm176 192H152c-8.8 0-16-7.2-16-16s7.2-16 16-16h192c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-16-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faMemory = { prefix: 'fas', iconName: 'memory', icon: [640, 512, [], "f538", "M640 130.94V96c0-17.67-14.33-32-32-32H32C14.33 64 0 78.33 0 96v34.94c18.6 6.61 32 24.19 32 45.06s-13.4 38.45-32 45.06V320h640v-98.94c-18.6-6.61-32-24.19-32-45.06s13.4-38.45 32-45.06zM224 256h-64V128h64v128zm128 0h-64V128h64v128zm128 0h-64V128h64v128zM0 448h64v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h64v-96H0v96z"] }; +var faMercury = { prefix: 'fas', iconName: 'mercury', icon: [288, 512, [], "f223", "M288 208c0-44.2-19.9-83.7-51.2-110.1 2.5-1.8 4.9-3.8 7.2-5.8 24.7-21.2 39.8-48.8 43.2-78.8.9-7.1-4.7-13.3-11.9-13.3h-40.5C229 0 224.1 4.1 223 9.8c-2.4 12.5-9.6 24.3-20.7 33.8C187 56.8 166.3 64 144 64s-43-7.2-58.4-20.4C74.5 34.1 67.4 22.3 64.9 9.8 63.8 4.1 58.9 0 53.2 0H12.7C5.5 0-.1 6.2.8 13.3 4.2 43.4 19.2 71 44 92.2c2.3 2 4.7 3.9 7.2 5.8C19.9 124.3 0 163.8 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z"] }; +var faMicrochip = { prefix: 'fas', iconName: 'microchip', icon: [512, 512, [], "f2db", "M416 48v416c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h224c26.51 0 48 21.49 48 48zm96 58v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42V88h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zM30 376h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6z"] }; +var faMicrophone = { prefix: 'fas', iconName: 'microphone', icon: [352, 512, [], "f130", "M176 352c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96zm160-160h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16z"] }; +var faMicrophoneAlt = { prefix: 'fas', iconName: 'microphone-alt', icon: [352, 512, [], "f3c9", "M336 192h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16zM176 352c53.02 0 96-42.98 96-96h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96z"] }; +var faMicrophoneAltSlash = { prefix: 'fas', iconName: 'microphone-alt-slash', icon: [640, 512, [], "f539", "M633.82 458.1L476.26 336.33C488.74 312.21 496 284.98 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67h-43.67l-41.4-32H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.78c11.71-1.62 23.1-4.28 33.96-8.08l-50.4-38.96c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z"] }; +var faMicrophoneSlash = { prefix: 'fas', iconName: 'microphone-slash', icon: [640, 512, [], "f131", "M633.82 458.1l-157.8-121.96C488.61 312.13 496 285.01 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67V96c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.77c11.66-1.6 22.85-4.54 33.67-8.31l-50.11-38.73c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z"] }; +var faMinus = { prefix: 'fas', iconName: 'minus', icon: [448, 512, [], "f068", "M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; +var faMinusCircle = { prefix: 'fas', iconName: 'minus-circle', icon: [512, 512, [], "f056", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM124 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H124z"] }; +var faMinusSquare = { prefix: 'fas', iconName: 'minus-square', icon: [448, 512, [], "f146", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H92z"] }; +var faMobile = { prefix: 'fas', iconName: 'mobile', icon: [320, 512, [], "f10b", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faMobileAlt = { prefix: 'fas', iconName: 'mobile-alt', icon: [320, 512, [], "f3cd", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm112-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v312z"] }; +var faMoneyBill = { prefix: 'fas', iconName: 'money-bill', icon: [640, 512, [], "f0d6", "M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 176c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 48h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z"] }; +var faMoneyBillAlt = { prefix: 'fas', iconName: 'money-bill-alt', icon: [640, 512, [], "f3d1", "M352 288h-16v-88c0-4.42-3.58-8-8-8h-13.58c-4.74 0-9.37 1.4-13.31 4.03l-15.33 10.22a7.994 7.994 0 0 0-2.22 11.09l8.88 13.31a7.994 7.994 0 0 0 11.09 2.22l.47-.31V288h-16c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8h64c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 192c-53.02 0-96-50.15-96-112 0-61.86 42.98-112 96-112s96 50.14 96 112c0 61.87-43 112-96 112zm272 32h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z"] }; +var faMoneyBillWave = { prefix: 'fas', iconName: 'money-bill-wave', icon: [640, 512, [], "f53a", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM48 132.22c20.12 5.04 41.12 7.57 62.72 8.93C104.84 170.54 79 192.69 48 192.69v-60.47zm0 285v-47.78c34.37 0 62.18 27.27 63.71 61.4-22.53-1.81-43.59-6.31-63.71-13.62zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 27.78c-17.52-4.39-35.71-6.85-54.32-8.44 5.87-26.08 27.5-45.88 54.32-49.28v57.72zm0-236.11c-30.89-3.91-54.86-29.7-55.81-61.55 19.54 2.17 38.09 6.23 55.81 12.66v48.89z"] }; +var faMoneyBillWaveAlt = { prefix: 'fas', iconName: 'money-bill-wave-alt', icon: [640, 512, [], "f53b", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96z"] }; +var faMoneyCheck = { prefix: 'fas', iconName: 'money-check', icon: [640, 512, [], "f53c", "M0 448c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128H0v320zm448-208c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-32zm0 120c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H456c-4.42 0-8-3.58-8-8v-16zM64 264c0-4.42 3.58-8 8-8h304c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm0 96c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zM624 32H16C7.16 32 0 39.16 0 48v48h640V48c0-8.84-7.16-16-16-16z"] }; +var faMoneyCheckAlt = { prefix: 'fas', iconName: 'money-check-alt', icon: [640, 512, [], "f53d", "M608 32H32C14.33 32 0 46.33 0 64v384c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM176 327.88V344c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V152c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07zM416 312c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm160 0c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h272c4.42 0 8 3.58 8 8v16z"] }; +var faMoon = { prefix: 'fas', iconName: 'moon', icon: [512, 512, [], "f186", "M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z"] }; +var faMotorcycle = { prefix: 'fas', iconName: 'motorcycle', icon: [640, 512, [], "f21c", "M512.949 192.003c-14.862-.108-29.14 2.322-42.434 6.874L437.589 144H520c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24h-45.311a24 24 0 0 0-17.839 7.945l-37.496 41.663-22.774-37.956A24 24 0 0 0 376 64h-80c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h66.411l19.2 32H227.904c-17.727-23.073-44.924-40-99.904-40H72.54c-13.455 0-24.791 11.011-24.536 24.464C48.252 141.505 58.9 152 72 152h56c24.504 0 38.686 10.919 47.787 24.769l-11.291 20.529c-13.006-3.865-26.871-5.736-41.251-5.21C55.857 194.549 1.565 249.605.034 317.021-1.603 389.076 56.317 448 128 448c59.642 0 109.744-40.794 123.953-96h84.236c13.673 0 24.589-11.421 23.976-25.077-2.118-47.12 17.522-93.665 56.185-125.026l12.485 20.808c-27.646 23.654-45.097 58.88-44.831 98.179.47 69.556 57.203 126.452 126.758 127.11 71.629.678 129.839-57.487 129.234-129.099-.588-69.591-57.455-126.386-127.047-126.892zM128 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c4.242 0 8.405.341 12.469.982L98.97 316.434C90.187 332.407 101.762 352 120 352h81.297c-12.37 28.225-40.56 48-73.297 48zm388.351-.116C470.272 402.337 432 365.554 432 320c0-21.363 8.434-40.781 22.125-55.144l49.412 82.352c4.546 7.577 14.375 10.034 21.952 5.488l13.72-8.232c7.577-4.546 10.034-14.375 5.488-21.952l-48.556-80.927A80.005 80.005 0 0 1 512 240c45.554 0 82.338 38.273 79.884 84.352-2.16 40.558-34.974 73.372-75.533 75.532z"] }; +var faMousePointer = { prefix: 'fas', iconName: 'mouse-pointer', icon: [320, 512, [], "f245", "M302.189 329.126H196.105l55.831 135.993c3.889 9.428-.555 19.999-9.444 23.999l-49.165 21.427c-9.165 4-19.443-.571-23.332-9.714l-53.053-129.136-86.664 89.138C18.729 472.71 0 463.554 0 447.977V18.299C0 1.899 19.921-6.096 30.277 5.443l284.412 292.542c11.472 11.179 3.007 31.141-12.5 31.141z"] }; +var faMusic = { prefix: 'fas', iconName: 'music', icon: [512, 512, [], "f001", "M470.4 1.5l-304 96C153.1 101.7 144 114 144 128v264.6c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V220.5l272-85.9v194c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V32c0-21.7-21.1-37-41.6-30.5z"] }; +var faNeuter = { prefix: 'fas', iconName: 'neuter', icon: [288, 512, [], "f22c", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V468c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V316.4c64.1-14.5 112-71.9 112-140.4zm-144 80c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faNewspaper = { prefix: 'fas', iconName: 'newspaper', icon: [576, 512, [], "f1ea", "M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z"] }; +var faNotEqual = { prefix: 'fas', iconName: 'not-equal', icon: [448, 512, [], "f53e", "M416 208c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32h-23.88l51.87-66.81c5.37-7.02 4.04-17.06-2.97-22.43L415.61 3.3c-7.02-5.38-17.06-4.04-22.44 2.97L311.09 112H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h204.56l-74.53 96H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h55.49l-51.87 66.81c-5.37 7.01-4.04 17.05 2.97 22.43L64 508.7c7.02 5.38 17.06 4.04 22.43-2.97L168.52 400H416c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32H243.05l74.53-96H416z"] }; +var faNotesMedical = { prefix: 'fas', iconName: 'notes-medical', icon: [384, 512, [], "f481", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm96 304c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm0-192c0 4.4-3.6 8-8 8H104c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16z"] }; +var faObjectGroup = { prefix: 'fas', iconName: 'object-group', icon: [512, 512, [], "f247", "M480 128V96h20c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v20H64V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v40c0 6.627 5.373 12 12 12h20v320H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-20h384v20c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-20V128zM96 276V140c0-6.627 5.373-12 12-12h168c6.627 0 12 5.373 12 12v136c0 6.627-5.373 12-12 12H108c-6.627 0-12-5.373-12-12zm320 96c0 6.627-5.373 12-12 12H236c-6.627 0-12-5.373-12-12v-52h72c13.255 0 24-10.745 24-24v-72h84c6.627 0 12 5.373 12 12v136z"] }; +var faObjectUngroup = { prefix: 'fas', iconName: 'object-ungroup', icon: [576, 512, [], "f248", "M64 320v26a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6v-52a6 6 0 0 1 6-6h26V96H6a6 6 0 0 1-6-6V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v26h288V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-26v192h26a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-52a6 6 0 0 1-6-6v-26H64zm480-64v-32h26a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-52a6 6 0 0 0-6 6v26H408v72h8c13.255 0 24 10.745 24 24v64c0 13.255-10.745 24-24 24h-64c-13.255 0-24-10.745-24-24v-8H192v72h-26a6 6 0 0 0-6 6v52a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-26h288v26a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-26V256z"] }; +var faOutdent = { prefix: 'fas', iconName: 'outdent', icon: [448, 512, [], "f03b", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm208 144h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm192-128h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM4.687 267.313l96 95.984C110.734 373.348 128 366.224 128 351.984V160.008c0-14.329-17.325-21.304-27.313-11.313l-96 95.992c-6.249 6.248-6.249 16.378 0 22.626z"] }; +var faPaintBrush = { prefix: 'fas', iconName: 'paint-brush', icon: [512, 512, [], "f1fc", "M269.9 364.6c1.4 6.4 2.1 13 2.1 19.7 0 81.2-54.2 127.7-134.8 127.7C41.5 512 0 435.1 0 347.6c10.4 7.1 46.9 36.5 58.7 36.5 7 0 13-4 15.5-10.6 23.6-62.2 66.5-76.5 112.9-77.4 15.6 33.8 46.1 59.6 82.8 68.5zM460.6 0c-14.4 0-27.9 6.4-38.2 15.7C228.2 190 208 194.1 208 245.4c0 48.8 40.5 90.6 90.2 90.6 59 0 93.2-43.4 200.6-244.8 7-13.7 13.2-28.5 13.2-43.9C512 19.7 487.3 0 460.6 0z"] }; +var faPalette = { prefix: 'fas', iconName: 'palette', icon: [512, 512, [], "f53f", "M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faPallet = { prefix: 'fas', iconName: 'pallet', icon: [640, 512, [], "f482", "M144 256h352c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H384v128l-64-32-64 32V0H144c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16zm480 128c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v64H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-64h48zm-336 64H128v-64h160v64zm224 0H352v-64h160v64z"] }; +var faPaperPlane = { prefix: 'fas', iconName: 'paper-plane', icon: [512, 512, [], "f1d8", "M476 3.2L12.5 270.6c-18.1 10.4-15.8 35.6 2.2 43.2L121 358.4l287.3-253.2c5.5-4.9 13.3 2.6 8.6 8.3L176 407v80.5c0 23.6 28.5 32.9 42.5 15.8L282 426l124.6 52.2c14.2 6 30.4-2.9 33-18.2l72-432C515 7.8 493.3-6.8 476 3.2z"] }; +var faPaperclip = { prefix: 'fas', iconName: 'paperclip', icon: [448, 512, [], "f0c6", "M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z"] }; +var faParachuteBox = { prefix: 'fas', iconName: 'parachute-box', icon: [512, 512, [], "f4cd", "M511.9 175c-9.1-75.6-78.4-132.4-158.3-158.7C390 55.7 416 116.9 416 192h28.1L327.5 321.5c-2.5-.6-4.8-1.5-7.5-1.5h-48V192h112C384 76.8 315.1 0 256 0S128 76.8 128 192h112v128h-48c-2.7 0-5 .9-7.5 1.5L67.9 192H96c0-75.1 26-136.3 62.4-175.7C78.5 42.7 9.2 99.5.1 175c-1.1 9.1 6.8 17 16 17h8.7l136.7 151.9c-.7 2.6-1.6 5.2-1.6 8.1v128c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32V352c0-2.9-.9-5.4-1.6-8.1L487.1 192h8.7c9.3 0 17.2-7.8 16.1-17z"] }; +var faParagraph = { prefix: 'fas', iconName: 'paragraph', icon: [448, 512, [], "f1dd", "M408 32H177.531C88.948 32 16.045 103.335 16 191.918 15.956 280.321 87.607 352 176 352v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h32v344c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h40c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24z"] }; +var faParking = { prefix: 'fas', iconName: 'parking', icon: [448, 512, [], "f540", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM240 320h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h96c52.9 0 96 43.1 96 96s-43.1 96-96 96zm0-128h-48v64h48c17.6 0 32-14.4 32-32s-14.4-32-32-32z"] }; +var faPaste = { prefix: 'fas', iconName: 'paste', icon: [448, 512, [], "f0ea", "M128 184c0-30.879 25.122-56 56-56h136V56c0-13.255-10.745-24-24-24h-80.61C204.306 12.89 183.637 0 160 0s-44.306 12.89-55.39 32H24C10.745 32 0 42.745 0 56v336c0 13.255 10.745 24 24 24h104V184zm32-144c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24zm184 248h104v200c0 13.255-10.745 24-24 24H184c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.059V256h-96v-96h6.059a24 24 0 0 1 16.97 7.029l65.941 65.941a24.002 24.002 0 0 1 7.03 16.971z"] }; +var faPause = { prefix: 'fas', iconName: 'pause', icon: [448, 512, [], "f04c", "M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z"] }; +var faPauseCircle = { prefix: 'fas', iconName: 'pause-circle', icon: [512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-16 328c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160zm112 0c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160z"] }; +var faPaw = { prefix: 'fas', iconName: 'paw', icon: [512, 512, [], "f1b0", "M85.231 330.958C36 330.958 0 273.792 0 231.5c0-28.292 16-58.042 49.538-58.042 49.231 0 85.231 57.458 85.231 99.75 0 28.292-15.692 57.75-49.538 57.75zm348 106.167c0 37.042-32 42.875-63.385 42.875-41.231 0-74.462-26.25-113.846-26.25-41.231 0-76.308 25.958-120.923 25.958-29.847 0-56.308-9.625-56.308-42.583C78.769 368 180.616 265.333 256 265.333s177.231 102.959 177.231 171.792zM182.462 203.792c-49.847 0-80-59.5-80-100.333C102.462 70.792 120.308 32 160 32c50.154 0 80 59.5 80 100.333 0 32.667-17.846 71.459-57.538 71.459zM272 132.333C272 91.5 301.846 32 352 32c39.692 0 57.539 38.792 57.539 71.458 0 40.833-30.154 100.333-80.001 100.333C289.846 203.792 272 165 272 132.333zM512 231.5c0 42.292-36 99.458-85.231 99.458-33.847 0-49.538-29.458-49.538-57.75 0-42.291 35.999-99.75 85.231-99.75C496 173.458 512 203.208 512 231.5z"] }; +var faPenSquare = { prefix: 'fas', iconName: 'pen-square', icon: [448, 512, [], "f14b", "M400 480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zM238.1 177.9L102.4 313.6l-6.3 57.1c-.8 7.6 5.6 14.1 13.3 13.3l57.1-6.3L302.2 242c2.3-2.3 2.3-6.1 0-8.5L246.7 178c-2.5-2.4-6.3-2.4-8.6-.1zM345 165.1L314.9 135c-9.4-9.4-24.6-9.4-33.9 0l-23.1 23.1c-2.3 2.3-2.3 6.1 0 8.5l55.5 55.5c2.3 2.3 6.1 2.3 8.5 0L345 199c9.3-9.3 9.3-24.5 0-33.9z"] }; +var faPencilAlt = { prefix: 'fas', iconName: 'pencil-alt', icon: [512, 512, [], "f303", "M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z"] }; +var faPeopleCarry = { prefix: 'fas', iconName: 'people-carry', icon: [640, 512, [], "f4ce", "M128 96c26.5 0 48-21.5 48-48S154.5 0 128 0 80 21.5 80 48s21.5 48 48 48zm384 0c26.5 0 48-21.5 48-48S538.5 0 512 0s-48 21.5-48 48 21.5 48 48 48zm125.7 372.1l-44-110-41.1 46.4-2 18.2 27.7 69.2c5 12.5 17 20.1 29.7 20.1 4 0 8-.7 11.9-2.3 16.4-6.6 24.4-25.2 17.8-41.6zm-34.2-209.8L585 178.1c-4.6-20-18.6-36.8-37.5-44.9-18.5-8-39-6.7-56.1 3.3-22.7 13.4-39.7 34.5-48.1 59.4L432 229.8 416 240v-96c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16v96l-16.1-10.2-11.3-33.9c-8.3-25-25.4-46-48.1-59.4-17.2-10-37.6-11.3-56.1-3.3-18.9 8.1-32.9 24.9-37.5 44.9l-18.4 80.2c-4.6 20 .7 41.2 14.4 56.7l67.2 75.9 10.1 92.6C130 499.8 143.8 512 160 512c1.2 0 2.3-.1 3.5-.2 17.6-1.9 30.2-17.7 28.3-35.3l-10.1-92.8c-1.5-13-6.9-25.1-15.6-35l-43.3-49 17.6-70.3 6.8 20.4c4.1 12.5 11.9 23.4 24.5 32.6l51.1 32.5c4.6 2.9 12.1 4.6 17.2 5h160c5.1-.4 12.6-2.1 17.2-5l51.1-32.5c12.6-9.2 20.4-20 24.5-32.6l6.8-20.4 17.6 70.3-43.3 49c-8.7 9.9-14.1 22-15.6 35l-10.1 92.8c-1.9 17.6 10.8 33.4 28.3 35.3 1.2.1 2.3.2 3.5.2 16.1 0 30-12.1 31.8-28.5l10.1-92.6 67.2-75.9c13.6-15.5 19-36.7 14.4-56.7zM46.3 358.1l-44 110c-6.6 16.4 1.4 35 17.8 41.6 16.8 6.6 35.1-1.7 41.6-17.8l27.7-69.2-2-18.2-41.1-46.4z"] }; +var faPercent = { prefix: 'fas', iconName: 'percent', icon: [448, 512, [], "f295", "M112 224c61.9 0 112-50.1 112-112S173.9 0 112 0 0 50.1 0 112s50.1 112 112 112zm0-160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm224 224c-61.9 0-112 50.1-112 112s50.1 112 112 112 112-50.1 112-112-50.1-112-112-112zm0 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zM392.3.2l31.6-.1c19.4-.1 30.9 21.8 19.7 37.8L77.4 501.6a23.95 23.95 0 0 1-19.6 10.2l-33.4.1c-19.5 0-30.9-21.9-19.7-37.8l368-463.7C377.2 4 384.5.2 392.3.2z"] }; +var faPercentage = { prefix: 'fas', iconName: 'percentage', icon: [384, 512, [], "f541", "M109.25 173.25c24.99-24.99 24.99-65.52 0-90.51-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 25 25 65.52 25 90.51 0zm256 165.49c-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 24.99 24.99 65.52 24.99 90.51 0 25-24.99 25-65.51 0-90.51zm-1.94-231.43l-22.62-22.62c-12.5-12.5-32.76-12.5-45.25 0L20.69 359.44c-12.5 12.5-12.5 32.76 0 45.25l22.62 22.62c12.5 12.5 32.76 12.5 45.25 0l274.75-274.75c12.5-12.49 12.5-32.75 0-45.25z"] }; +var faPhone = { prefix: 'fas', iconName: 'phone', icon: [512, 512, [], "f095", "M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z"] }; +var faPhoneSlash = { prefix: 'fas', iconName: 'phone-slash', icon: [640, 512, [], "f3dd", "M268.2 381.4l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48c-10.7 4.6-16.5 16.1-13.9 27.5l24 104c2.5 10.8 12.1 18.6 23.4 18.6 100.7 0 193.7-32.4 269.7-86.9l-80-61.8c-10.9 6.5-22.1 12.7-33.6 18.1zm365.6 76.7L475.1 335.5C537.9 256.4 576 156.9 576 48c0-11.2-7.7-20.9-18.6-23.4l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-12.2 26.1-27.9 50.3-46 72.8L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z"] }; +var faPhoneSquare = { prefix: 'fas', iconName: 'phone-square', icon: [448, 512, [], "f098", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM94 416c-7.033 0-13.057-4.873-14.616-11.627l-14.998-65a15 15 0 0 1 8.707-17.16l69.998-29.999a15 15 0 0 1 17.518 4.289l30.997 37.885c48.944-22.963 88.297-62.858 110.781-110.78l-37.886-30.997a15.001 15.001 0 0 1-4.289-17.518l30-69.998a15 15 0 0 1 17.16-8.707l65 14.998A14.997 14.997 0 0 1 384 126c0 160.292-129.945 290-290 290z"] }; +var faPhoneVolume = { prefix: 'fas', iconName: 'phone-volume', icon: [384, 512, [], "f2a0", "M97.333 506.966c-129.874-129.874-129.681-340.252 0-469.933 5.698-5.698 14.527-6.632 21.263-2.422l64.817 40.513a17.187 17.187 0 0 1 6.849 20.958l-32.408 81.021a17.188 17.188 0 0 1-17.669 10.719l-55.81-5.58c-21.051 58.261-20.612 122.471 0 179.515l55.811-5.581a17.188 17.188 0 0 1 17.669 10.719l32.408 81.022a17.188 17.188 0 0 1-6.849 20.958l-64.817 40.513a17.19 17.19 0 0 1-21.264-2.422zM247.126 95.473c11.832 20.047 11.832 45.008 0 65.055-3.95 6.693-13.108 7.959-18.718 2.581l-5.975-5.726c-3.911-3.748-4.793-9.622-2.261-14.41a32.063 32.063 0 0 0 0-29.945c-2.533-4.788-1.65-10.662 2.261-14.41l5.975-5.726c5.61-5.378 14.768-4.112 18.718 2.581zm91.787-91.187c60.14 71.604 60.092 175.882 0 247.428-4.474 5.327-12.53 5.746-17.552.933l-5.798-5.557c-4.56-4.371-4.977-11.529-.93-16.379 49.687-59.538 49.646-145.933 0-205.422-4.047-4.85-3.631-12.008.93-16.379l5.798-5.557c5.022-4.813 13.078-4.394 17.552.933zm-45.972 44.941c36.05 46.322 36.108 111.149 0 157.546-4.39 5.641-12.697 6.251-17.856 1.304l-5.818-5.579c-4.4-4.219-4.998-11.095-1.285-15.931 26.536-34.564 26.534-82.572 0-117.134-3.713-4.836-3.115-11.711 1.285-15.931l5.818-5.579c5.159-4.947 13.466-4.337 17.856 1.304z"] }; +var faPiggyBank = { prefix: 'fas', iconName: 'piggy-bank', icon: [576, 512, [], "f4d3", "M560 224h-29.5c-8.8-20-21.6-37.7-37.4-52.5L512 96h-32c-29.4 0-55.4 13.5-73 34.3-7.6-1.1-15.1-2.3-23-2.3H256c-77.4 0-141.9 55-156.8 128H56c-14.8 0-26.5-13.5-23.5-28.8C34.7 215.8 45.4 208 57 208h1c3.3 0 6-2.7 6-6v-20c0-3.3-2.7-6-6-6-28.5 0-53.9 20.4-57.5 48.6C-3.9 258.8 22.7 288 56 288h40c0 52.2 25.4 98.1 64 127.3V496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-48h128v48c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80.7c11.8-8.9 22.3-19.4 31.3-31.3H560c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16zm-128 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM256 96h128c5.4 0 10.7.4 15.9.8 0-.3.1-.5.1-.8 0-53-43-96-96-96s-96 43-96 96c0 2.1.5 4.1.6 6.2 15.2-3.9 31-6.2 47.4-6.2z"] }; +var faPills = { prefix: 'fas', iconName: 'pills', icon: [576, 512, [], "f484", "M112 32C50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V144c0-61.9-50.1-112-112-112zm48 224H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm139.7-29.7c-3.5-3.5-9.4-3.1-12.3.8-45.3 62.5-40.4 150.1 15.9 206.4 56.3 56.3 143.9 61.2 206.4 15.9 4-2.9 4.3-8.8.8-12.3L299.7 226.3zm229.8-19c-56.3-56.3-143.9-61.2-206.4-15.9-4 2.9-4.3 8.8-.8 12.3l210.8 210.8c3.5 3.5 9.4 3.1 12.3-.8 45.3-62.6 40.5-150.1-15.9-206.4z"] }; +var faPlane = { prefix: 'fas', iconName: 'plane', icon: [576, 512, [], "f072", "M480 192H365.71L260.61 8.06A16.014 16.014 0 0 0 246.71 0h-65.5c-10.63 0-18.3 10.17-15.38 20.39L214.86 192H112l-43.2-57.6c-3.02-4.03-7.77-6.4-12.8-6.4H16.01C5.6 128-2.04 137.78.49 147.88L32 256 .49 364.12C-2.04 374.22 5.6 384 16.01 384H56c5.04 0 9.78-2.37 12.8-6.4L112 320h102.86l-49.03 171.6c-2.92 10.22 4.75 20.4 15.38 20.4h65.5c5.74 0 11.04-3.08 13.89-8.06L365.71 320H480c35.35 0 96-28.65 96-64s-60.65-64-96-64z"] }; +var faPlay = { prefix: 'fas', iconName: 'play', icon: [448, 512, [], "f04b", "M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z"] }; +var faPlayCircle = { prefix: 'fas', iconName: 'play-circle', icon: [512, 512, [], "f144", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z"] }; +var faPlug = { prefix: 'fas', iconName: 'plug', icon: [384, 512, [], "f1e6", "M256 144V32c0-17.673 14.327-32 32-32s32 14.327 32 32v112h-64zm112 16H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h16v32c0 77.406 54.969 141.971 128 156.796V512h64v-99.204c73.031-14.825 128-79.39 128-156.796v-32h16c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm-240-16V32c0-17.673-14.327-32-32-32S64 14.327 64 32v112h64z"] }; +var faPlus = { prefix: 'fas', iconName: 'plus', icon: [448, 512, [], "f067", "M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; +var faPlusCircle = { prefix: 'fas', iconName: 'plus-circle', icon: [512, 512, [], "f055", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"] }; +var faPlusSquare = { prefix: 'fas', iconName: 'plus-square', icon: [448, 512, [], "f0fe", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-32 252c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92H92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"] }; +var faPodcast = { prefix: 'fas', iconName: 'podcast', icon: [448, 512, [], "f2ce", "M267.429 488.563C262.286 507.573 242.858 512 224 512c-18.857 0-38.286-4.427-43.428-23.437C172.927 460.134 160 388.898 160 355.75c0-35.156 31.142-43.75 64-43.75s64 8.594 64 43.75c0 32.949-12.871 104.179-20.571 132.813zM156.867 288.554c-18.693-18.308-29.958-44.173-28.784-72.599 2.054-49.724 42.395-89.956 92.124-91.881C274.862 121.958 320 165.807 320 220c0 26.827-11.064 51.116-28.866 68.552-2.675 2.62-2.401 6.986.628 9.187 9.312 6.765 16.46 15.343 21.234 25.363 1.741 3.654 6.497 4.66 9.449 1.891 28.826-27.043 46.553-65.783 45.511-108.565-1.855-76.206-63.595-138.208-139.793-140.369C146.869 73.753 80 139.215 80 220c0 41.361 17.532 78.7 45.55 104.989 2.953 2.771 7.711 1.77 9.453-1.887 4.774-10.021 11.923-18.598 21.235-25.363 3.029-2.2 3.304-6.566.629-9.185zM224 0C100.204 0 0 100.185 0 224c0 89.992 52.602 165.647 125.739 201.408 4.333 2.118 9.267-1.544 8.535-6.31-2.382-15.512-4.342-30.946-5.406-44.339-.146-1.836-1.149-3.486-2.678-4.512-47.4-31.806-78.564-86.016-78.187-147.347.592-96.237 79.29-174.648 175.529-174.899C320.793 47.747 400 126.797 400 224c0 61.932-32.158 116.49-80.65 147.867-.999 14.037-3.069 30.588-5.624 47.23-.732 4.767 4.203 8.429 8.535 6.31C395.227 389.727 448 314.187 448 224 448 100.205 347.815 0 224 0zm0 160c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z"] }; +var faPoo = { prefix: 'fas', iconName: 'poo', icon: [512, 512, [], "f2fe", "M451.4 369.1C468.7 356 480 335.4 480 312c0-39.8-32.2-72-72-72h-14.1c13.4-11.7 22.1-28.8 22.1-48 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C250.3 14.6 256 30.6 256 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 19.2 8.7 36.3 22.1 48H104c-39.8 0-72 32.2-72 72 0 23.4 11.3 44 28.6 57.1C26.3 374.6 0 404.1 0 440c0 39.8 32.2 72 72 72h368c39.8 0 72-32.2 72-72 0-35.9-26.3-65.4-60.6-70.9zM192 256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm159.5 139C341 422.9 293 448 256 448s-85-25.1-95.5-53c-2-5.3 2-11 7.8-11h175.4c5.8 0 9.8 5.7 7.8 11zM320 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faPortrait = { prefix: 'fas', iconName: 'portrait', icon: [384, 512, [], "f3e0", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM192 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 384 80 375.4 80 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"] }; +var faPoundSign = { prefix: 'fas', iconName: 'pound-sign', icon: [320, 512, [], "f154", "M308 352h-45.495c-6.627 0-12 5.373-12 12v50.848H128V288h84c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-84v-63.556c0-32.266 24.562-57.086 61.792-57.086 23.658 0 45.878 11.505 57.652 18.849 5.151 3.213 11.888 2.051 15.688-2.685l28.493-35.513c4.233-5.276 3.279-13.005-2.119-17.081C273.124 54.56 236.576 32 187.931 32 106.026 32 48 84.742 48 157.961V224H20c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h28v128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12V364c0-6.627-5.373-12-12-12z"] }; +var faPowerOff = { prefix: 'fas', iconName: 'power-off', icon: [512, 512, [], "f011", "M400 54.1c63 45 104 118.6 104 201.9 0 136.8-110.8 247.7-247.5 248C120 504.3 8.2 393 8 256.4 7.9 173.1 48.9 99.3 111.8 54.2c11.7-8.3 28-4.8 35 7.7L162.6 90c5.9 10.5 3.1 23.8-6.6 31-41.5 30.8-68 79.6-68 134.9-.1 92.3 74.5 168.1 168 168.1 91.6 0 168.6-74.2 168-169.1-.3-51.8-24.7-101.8-68.1-134-9.7-7.2-12.4-20.5-6.5-30.9l15.8-28.1c7-12.4 23.2-16.1 34.8-7.8zM296 264V24c0-13.3-10.7-24-24-24h-32c-13.3 0-24 10.7-24 24v240c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24z"] }; +var faPrescriptionBottle = { prefix: 'fas', iconName: 'prescription-bottle', icon: [384, 512, [], "f485", "M32 192h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v64zM360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24z"] }; +var faPrescriptionBottleAlt = { prefix: 'fas', iconName: 'prescription-bottle-alt', icon: [384, 512, [], "f486", "M360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24zM32 480c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v352zm64-184c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48z"] }; +var faPrint = { prefix: 'fas', iconName: 'print', icon: [512, 512, [], "f02f", "M464 192h-16V81.941a24 24 0 0 0-7.029-16.97L383.029 7.029A24 24 0 0 0 366.059 0H88C74.745 0 64 10.745 64 24v168H48c-26.51 0-48 21.49-48 48v132c0 6.627 5.373 12 12 12h52v104c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V384h52c6.627 0 12-5.373 12-12V240c0-26.51-21.49-48-48-48zm-80 256H128v-96h256v96zM128 224V64h192v40c0 13.2 10.8 24 24 24h40v96H128zm304 72c-13.254 0-24-10.746-24-24s10.746-24 24-24 24 10.746 24 24-10.746 24-24 24z"] }; +var faProcedures = { prefix: 'fas', iconName: 'procedures', icon: [640, 512, [], "f487", "M528 224H272c-8.8 0-16 7.2-16 16v144H64V144c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v352c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h512v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-61.9-50.1-112-112-112zM136 96h126.1l27.6 55.2c5.9 11.8 22.7 11.8 28.6 0L368 51.8 390.1 96H512c8.8 0 16-7.2 16-16s-7.2-16-16-16H409.9L382.3 8.8C376.4-3 359.6-3 353.7 8.8L304 108.2l-19.9-39.8c-1.4-2.7-4.1-4.4-7.2-4.4H136c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm24 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z"] }; +var faProjectDiagram = { prefix: 'fas', iconName: 'project-diagram', icon: [640, 512, [], "f542", "M384 320H256c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM192 32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v128c0 17.67 14.33 32 32 32h95.72l73.16 128.04C211.98 300.98 232.4 288 256 288h.28L192 175.51V128h224V64H192V32zM608 0H480c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32z"] }; +var faPuzzlePiece = { prefix: 'fas', iconName: 'puzzle-piece', icon: [576, 512, [], "f12e", "M519.442 288.651c-41.519 0-59.5 31.593-82.058 31.593C377.409 320.244 432 144 432 144s-196.288 80-196.288-3.297c0-35.827 36.288-46.25 36.288-85.985C272 19.216 243.885 0 210.539 0c-34.654 0-66.366 18.891-66.366 56.346 0 41.364 31.711 59.277 31.711 81.75C175.885 207.719 0 166.758 0 166.758v333.237s178.635 41.047 178.635-28.662c0-22.473-40-40.107-40-81.471 0-37.456 29.25-56.346 63.577-56.346 33.673 0 61.788 19.216 61.788 54.717 0 39.735-36.288 50.158-36.288 85.985 0 60.803 129.675 25.73 181.23 25.73 0 0-34.725-120.101 25.827-120.101 35.962 0 46.423 36.152 86.308 36.152C556.712 416 576 387.99 576 354.443c0-34.199-18.962-65.792-56.558-65.792z"] }; +var faQrcode = { prefix: 'fas', iconName: 'qrcode', icon: [448, 512, [], "f029", "M0 224h192V32H0v192zM64 96h64v64H64V96zm192-64v192h192V32H256zm128 128h-64V96h64v64zM0 480h192V288H0v192zm64-128h64v64H64v-64zm352-64h32v128h-96v-32h-32v96h-64V288h96v32h64v-32zm0 160h32v32h-32v-32zm-64 0h32v32h-32v-32z"] }; +var faQuestion = { prefix: 'fas', iconName: 'question', icon: [384, 512, [], "f128", "M202.021 0C122.202 0 70.503 32.703 29.914 91.026c-7.363 10.58-5.093 25.086 5.178 32.874l43.138 32.709c10.373 7.865 25.132 6.026 33.253-4.148 25.049-31.381 43.63-49.449 82.757-49.449 30.764 0 68.816 19.799 68.816 49.631 0 22.552-18.617 34.134-48.993 51.164-35.423 19.86-82.299 44.576-82.299 106.405V320c0 13.255 10.745 24 24 24h72.471c13.255 0 24-10.745 24-24v-5.773c0-42.86 125.268-44.645 125.268-160.627C377.504 66.256 286.902 0 202.021 0zM192 373.459c-38.196 0-69.271 31.075-69.271 69.271 0 38.195 31.075 69.27 69.271 69.27s69.271-31.075 69.271-69.271-31.075-69.27-69.271-69.27z"] }; +var faQuestionCircle = { prefix: 'fas', iconName: 'question-circle', icon: [512, 512, [], "f059", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z"] }; +var faQuidditch = { prefix: 'fas', iconName: 'quidditch', icon: [640, 512, [], "f458", "M256.5 216.8L343.2 326s-16.6 102.4-76.6 150.1C206.7 523.8 0 510.2 0 510.2s3.8-23.1 11-55.4l94.6-112.2c4-4.7-.9-11.6-6.6-9.5l-60.4 22.1c14.4-41.7 32.7-80 54.6-97.5 59.9-47.8 163.3-40.9 163.3-40.9zm238 135c-44 0-79.8 35.8-79.8 79.9 0 44.1 35.7 79.9 79.8 79.9 44.1 0 79.8-35.8 79.8-79.9 0-44.2-35.8-79.9-79.8-79.9zM636.5 31L616.7 6c-5.5-6.9-15.5-8-22.4-2.6L361.8 181.3l-34.1-43c-5.1-6.4-15.1-5.2-18.6 2.2l-25.3 54.6 86.7 109.2 58.8-12.4c8-1.7 11.4-11.2 6.3-17.6l-34.1-42.9L634 53.5c6.9-5.5 8-15.6 2.5-22.5z"] }; +var faQuoteLeft = { prefix: 'fas', iconName: 'quote-left', icon: [512, 512, [], "f10d", "M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z"] }; +var faQuoteRight = { prefix: 'fas', iconName: 'quote-right', icon: [512, 512, [], "f10e", "M464 32H336c-26.5 0-48 21.5-48 48v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48zm-288 0H48C21.5 32 0 53.5 0 80v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48z"] }; +var faRandom = { prefix: 'fas', iconName: 'random', icon: [512, 512, [], "f074", "M504.971 359.029c9.373 9.373 9.373 24.569 0 33.941l-80 79.984c-15.01 15.01-40.971 4.49-40.971-16.971V416h-58.785a12.004 12.004 0 0 1-8.773-3.812l-70.556-75.596 53.333-57.143L352 336h32v-39.981c0-21.438 25.943-31.998 40.971-16.971l80 79.981zM12 176h84l52.781 56.551 53.333-57.143-70.556-75.596A11.999 11.999 0 0 0 122.785 96H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12zm372 0v39.984c0 21.46 25.961 31.98 40.971 16.971l80-79.984c9.373-9.373 9.373-24.569 0-33.941l-80-79.981C409.943 24.021 384 34.582 384 56.019V96h-58.785a12.004 12.004 0 0 0-8.773 3.812L96 336H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h110.785c3.326 0 6.503-1.381 8.773-3.812L352 176h32z"] }; +var faReceipt = { prefix: 'fas', iconName: 'receipt', icon: [384, 512, [], "f543", "M358.4 3.2L320 48 265.6 3.2a15.9 15.9 0 0 0-19.2 0L192 48 137.6 3.2a15.9 15.9 0 0 0-19.2 0L64 48 25.6 3.2C15-4.7 0 2.8 0 16v480c0 13.2 15 20.7 25.6 12.8L64 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L192 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L320 464l38.4 44.8c10.5 7.9 25.6.4 25.6-12.8V16c0-13.2-15-20.7-25.6-12.8zM320 360c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16z"] }; +var faRecycle = { prefix: 'fas', iconName: 'recycle', icon: [512, 512, [], "f1b8", "M184.561 261.903c3.232 13.997-12.123 24.635-24.068 17.168l-40.736-25.455-50.867 81.402C55.606 356.273 70.96 384 96.012 384H148c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12H96.115c-75.334 0-121.302-83.048-81.408-146.88l50.822-81.388-40.725-25.448c-12.081-7.547-8.966-25.961 4.879-29.158l110.237-25.45c8.611-1.988 17.201 3.381 19.189 11.99l25.452 110.237zm98.561-182.915l41.289 66.076-40.74 25.457c-12.051 7.528-9 25.953 4.879 29.158l110.237 25.45c8.672 1.999 17.215-3.438 19.189-11.99l25.45-110.237c3.197-13.844-11.99-24.719-24.068-17.168l-40.687 25.424-41.263-66.082c-37.521-60.033-125.209-60.171-162.816 0l-17.963 28.766c-3.51 5.62-1.8 13.021 3.82 16.533l33.919 21.195c5.62 3.512 13.024 1.803 16.536-3.817l17.961-28.743c12.712-20.341 41.973-19.676 54.257-.022zM497.288 301.12l-27.515-44.065c-3.511-5.623-10.916-7.334-16.538-3.821l-33.861 21.159c-5.62 3.512-7.33 10.915-3.818 16.536l27.564 44.112c13.257 21.211-2.057 48.96-27.136 48.96H320V336.02c0-14.213-17.242-21.383-27.313-11.313l-80 79.981c-6.249 6.248-6.249 16.379 0 22.627l80 79.989C302.689 517.308 320 510.3 320 495.989V448h95.88c75.274 0 121.335-82.997 81.408-146.88z"] }; +var faRedo = { prefix: 'fas', iconName: 'redo', icon: [512, 512, [], "f01e", "M500.333 0h-47.411c-6.853 0-12.314 5.729-11.986 12.574l3.966 82.759C399.416 41.899 331.672 8 256.001 8 119.34 8 7.899 119.526 8 256.187 8.101 393.068 119.096 504 256 504c63.926 0 122.202-24.187 166.178-63.908 5.113-4.618 5.354-12.561.482-17.433l-33.971-33.971c-4.466-4.466-11.64-4.717-16.38-.543C341.308 415.448 300.606 432 256 432c-97.267 0-176-78.716-176-176 0-97.267 78.716-176 176-176 60.892 0 114.506 30.858 146.099 77.8l-101.525-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12z"] }; +var faRedoAlt = { prefix: 'fas', iconName: 'redo-alt', icon: [512, 512, [], "f2f9", "M256.455 8c66.269.119 126.437 26.233 170.859 68.685l35.715-35.715C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.75c-30.864-28.899-70.801-44.907-113.23-45.273-92.398-.798-170.283 73.977-169.484 169.442C88.764 348.009 162.184 424 256 424c41.127 0 79.997-14.678 110.629-41.556 4.743-4.161 11.906-3.908 16.368.553l39.662 39.662c4.872 4.872 4.631 12.815-.482 17.433C378.202 479.813 319.926 504 256 504 119.034 504 8.001 392.967 8 256.002 7.999 119.193 119.646 7.755 256.455 8z"] }; +var faRegistered = { prefix: 'fas', iconName: 'registered', icon: [512, 512, [], "f25d", "M285.363 207.475c0 18.6-9.831 28.431-28.431 28.431h-29.876v-56.14h23.378c28.668 0 34.929 8.773 34.929 27.709zM504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM363.411 360.414c-46.729-84.825-43.299-78.636-44.702-80.98 23.432-15.172 37.945-42.979 37.945-74.486 0-54.244-31.5-89.252-105.498-89.252h-70.667c-13.255 0-24 10.745-24 24V372c0 13.255 10.745 24 24 24h22.567c13.255 0 24-10.745 24-24v-71.663h25.556l44.129 82.937a24.001 24.001 0 0 0 21.188 12.727h24.464c18.261-.001 29.829-19.591 21.018-35.587z"] }; +var faReply = { prefix: 'fas', iconName: 'reply', icon: [512, 512, [], "f3e5", "M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z"] }; +var faReplyAll = { prefix: 'fas', iconName: 'reply-all', icon: [576, 512, [], "f122", "M136.309 189.836L312.313 37.851C327.72 24.546 352 35.348 352 56.015v82.763c129.182 10.231 224 52.212 224 183.548 0 61.441-39.582 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 38.512-123.162-3.922-169.482-112.59-182.015v84.175c0 20.701-24.3 31.453-39.687 18.164L136.309 226.164c-11.071-9.561-11.086-26.753 0-36.328zm-128 36.328L184.313 378.15C199.7 391.439 224 380.687 224 359.986v-15.818l-108.606-93.785A55.96 55.96 0 0 1 96 207.998a55.953 55.953 0 0 1 19.393-42.38L224 71.832V56.015c0-20.667-24.28-31.469-39.687-18.164L8.309 189.836c-11.086 9.575-11.071 26.767 0 36.328z"] }; +var faRetweet = { prefix: 'fas', iconName: 'retweet', icon: [640, 512, [], "f079", "M629.657 343.598L528.971 444.284c-9.373 9.372-24.568 9.372-33.941 0L394.343 343.598c-9.373-9.373-9.373-24.569 0-33.941l10.823-10.823c9.562-9.562 25.133-9.34 34.419.492L480 342.118V160H292.451a24.005 24.005 0 0 1-16.971-7.029l-16-16C244.361 121.851 255.069 96 276.451 96H520c13.255 0 24 10.745 24 24v222.118l40.416-42.792c9.285-9.831 24.856-10.054 34.419-.492l10.823 10.823c9.372 9.372 9.372 24.569-.001 33.941zm-265.138 15.431A23.999 23.999 0 0 0 347.548 352H160V169.881l40.416 42.792c9.286 9.831 24.856 10.054 34.419.491l10.822-10.822c9.373-9.373 9.373-24.569 0-33.941L144.971 67.716c-9.373-9.373-24.569-9.373-33.941 0L10.343 168.402c-9.373 9.373-9.373 24.569 0 33.941l10.822 10.822c9.562 9.562 25.133 9.34 34.419-.491L96 169.881V392c0 13.255 10.745 24 24 24h243.549c21.382 0 32.09-25.851 16.971-40.971l-16.001-16z"] }; +var faRibbon = { prefix: 'fas', iconName: 'ribbon', icon: [448, 512, [], "f4d6", "M6.1 444.3c-9.6 10.8-7.5 27.6 4.5 35.7l68.8 27.9c9.9 6.7 23.3 5 31.3-3.8l91.8-101.9-79.2-87.9-117.2 130zm435.8 0s-292-324.6-295.4-330.1c15.4-8.4 40.2-17.9 77.5-17.9s62.1 9.5 77.5 17.9c-3.3 5.6-56 64.6-56 64.6l79.1 87.7 34.2-38c28.7-31.9 33.3-78.6 11.4-115.5l-43.7-73.5c-4.3-7.2-9.9-13.3-16.8-18-40.7-27.6-127.4-29.7-171.4 0-6.9 4.7-12.5 10.8-16.8 18l-43.6 73.2c-1.5 2.5-37.1 62.2 11.5 116L337.5 504c8 8.9 21.4 10.5 31.3 3.8l68.8-27.9c11.9-8 14-24.8 4.3-35.6z"] }; +var faRoad = { prefix: 'fas', iconName: 'road', icon: [576, 512, [], "f018", "M567.3 383.6L429.9 78.2C426 69.5 417.4 64 408 64h-96.1l1.9 18.8c.7 7.1-4.8 13.2-11.9 13.2H274c-7.1 0-12.7-6.2-11.9-13.2L264 64h-96c-9.4 0-18 5.5-21.9 14.2L8.7 383.6C3.2 395.8 0 409.6 0 424c0 13.3 10.7 24 24 24h213.6c-7.1 0-12.7-6.2-11.9-13.2l10.8-104c.6-6.1 5.8-10.8 11.9-10.8h79.2c6.1 0 11.3 4.6 11.9 10.8l10.8 104c.7 7.1-4.8 13.2-11.9 13.2H552c13.2 0 24-10.7 24-24 0-13.9-3-27.7-8.7-40.4zM254.7 154.8l3.3-32c.6-6.1 5.8-10.8 11.9-10.8h36.2c6.1 0 11.3 4.6 11.9 10.8l3.3 32c.7 7.1-4.8 13.2-11.9 13.2h-42.8c-7.1 0-12.7-6.2-11.9-13.2zM321.8 288h-67.6c-7.1 0-12.7-6.2-11.9-13.2l7.4-72c.6-6.1 5.8-10.8 11.9-10.8h52.7c6.1 0 11.3 4.6 11.9 10.8l7.4 72c.9 7-4.7 13.2-11.8 13.2z"] }; +var faRobot = { prefix: 'fas', iconName: 'robot', icon: [640, 512, [], "f544", "M0 256v128c0 17.7 14.3 32 32 32h32V224H32c-17.7 0-32 14.3-32 32zM464 96H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H176c-44.2 0-80 35.8-80 80v272c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V176c0-44.2-35.8-80-80-80zM256 416h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm128 120h-64v-32h64v32zm96 0h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm192-72h-32v192h32c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32z"] }; +var faRocket = { prefix: 'fas', iconName: 'rocket', icon: [512, 512, [], "f135", "M505.1 19.1C503.8 13 499 8.2 492.9 6.9 460.7 0 435.5 0 410.4 0 307.2 0 245.3 55.2 199.1 128H94.9c-18.2 0-34.8 10.3-42.9 26.5L2.6 253.3c-8 16 3.6 34.7 21.5 34.7h95.1c-5.9 12.8-11.9 25.5-18 37.7-3.1 6.2-1.9 13.6 3 18.5l63.6 63.6c4.9 4.9 12.3 6.1 18.5 3 12.2-6.1 24.9-12 37.7-17.9V488c0 17.8 18.8 29.4 34.7 21.5l98.7-49.4c16.3-8.1 26.5-24.8 26.5-42.9V312.8c72.6-46.3 128-108.4 128-211.1.1-25.2.1-50.4-6.8-82.6zM400 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; +var faRss = { prefix: 'fas', iconName: 'rss', icon: [448, 512, [], "f09e", "M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"] }; +var faRssSquare = { prefix: 'fas', iconName: 'rss-square', icon: [448, 512, [], "f143", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM112 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm157.533 0h-34.335c-6.011 0-11.051-4.636-11.442-10.634-5.214-80.05-69.243-143.92-149.123-149.123-5.997-.39-10.633-5.431-10.633-11.441v-34.335c0-6.535 5.468-11.777 11.994-11.425 110.546 5.974 198.997 94.536 204.964 204.964.352 6.526-4.89 11.994-11.425 11.994zm103.027 0h-34.334c-6.161 0-11.175-4.882-11.427-11.038-5.598-136.535-115.204-246.161-251.76-251.76C68.882 152.949 64 147.935 64 141.774V107.44c0-6.454 5.338-11.664 11.787-11.432 167.83 6.025 302.21 141.191 308.205 308.205.232 6.449-4.978 11.787-11.432 11.787z"] }; +var faRubleSign = { prefix: 'fas', iconName: 'ruble-sign', icon: [384, 512, [], "f158", "M239.36 320C324.48 320 384 260.542 384 175.071S324.48 32 239.36 32H76c-6.627 0-12 5.373-12 12v206.632H12c-6.627 0-12 5.373-12 12V308c0 6.627 5.373 12 12 12h52v32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v52c0 6.627 5.373 12 12 12h58.56c6.627 0 12-5.373 12-12v-52H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H146.56v-32h92.8zm-92.8-219.252h78.72c46.72 0 74.88 29.11 74.88 74.323 0 45.832-28.16 75.561-76.16 75.561h-77.44V100.748z"] }; +var faRuler = { prefix: 'fas', iconName: 'ruler', icon: [640, 512, [], "f545", "M635.7 167.2L556.1 31.7c-8.8-15-28.3-20.1-43.5-11.5l-69 39.1L503.3 161c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L416 75l-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L333.2 122 278 153.3 337.8 255c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-59.7-101.7-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-27.9-47.5-55.2 31.3 59.7 101.7c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L84.9 262.9l-69 39.1C.7 310.7-4.6 329.8 4.2 344.8l79.6 135.6c8.8 15 28.3 20.1 43.5 11.5L624.1 210c15.2-8.6 20.4-27.8 11.6-42.8z"] }; +var faRulerCombined = { prefix: 'fas', iconName: 'ruler-combined', icon: [512, 512, [], "f546", "M160 288h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56v-64h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56V96h-56c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8h56V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 2.77.91 5.24 1.57 7.8L160 329.38V288zm320 64h-32v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-41.37L24.2 510.43c2.56.66 5.04 1.57 7.8 1.57h448c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"] }; +var faRulerHorizontal = { prefix: 'fas', iconName: 'ruler-horizontal', icon: [576, 512, [], "f547", "M544 128h-48v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8H88c-4.42 0-8-3.58-8-8v-88H32c-17.67 0-32 14.33-32 32v192c0 17.67 14.33 32 32 32h512c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32z"] }; +var faRulerVertical = { prefix: 'fas', iconName: 'ruler-vertical', icon: [256, 512, [], "f548", "M168 416c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 17.67 14.33 32 32 32h192c17.67 0 32-14.33 32-32v-64h-88z"] }; +var faRupeeSign = { prefix: 'fas', iconName: 'rupee-sign', icon: [320, 512, [], "f156", "M308 96c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v44.748c0 6.627 5.373 12 12 12h85.28c27.308 0 48.261 9.958 60.97 27.252H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h158.757c-6.217 36.086-32.961 58.632-74.757 58.632H12c-6.627 0-12 5.373-12 12v53.012c0 3.349 1.4 6.546 3.861 8.818l165.052 152.356a12.001 12.001 0 0 0 8.139 3.182h82.562c10.924 0 16.166-13.408 8.139-20.818L116.871 319.906c76.499-2.34 131.144-53.395 138.318-127.906H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-58.69c-3.486-11.541-8.28-22.246-14.252-32H308z"] }; +var faSave = { prefix: 'fas', iconName: 'save', icon: [448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z"] }; +var faSchool = { prefix: 'fas', iconName: 'school', icon: [640, 512, [], "f549", "M0 224v272c0 8.84 7.16 16 16 16h80V192H32c-17.67 0-32 14.33-32 32zm360-48h-24v-40c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v64c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zm137.75-63.96l-160-106.67a32.02 32.02 0 0 0-35.5 0l-160 106.67A32.002 32.002 0 0 0 128 138.66V512h128V368c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v144h128V138.67c0-10.7-5.35-20.7-14.25-26.63zM320 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm288-64h-64v320h80c8.84 0 16-7.16 16-16V224c0-17.67-14.33-32-32-32z"] }; +var faScrewdriver = { prefix: 'fas', iconName: 'screwdriver', icon: [512, 512, [], "f54a", "M448 0L320 96v62.06l-83.03 83.03c6.79 4.25 13.27 9.06 19.07 14.87 5.8 5.8 10.62 12.28 14.87 19.07L353.94 192H416l96-128-64-64zM128 278.59L10.92 395.67c-14.55 14.55-14.55 38.15 0 52.71l52.7 52.7c14.56 14.56 38.15 14.56 52.71 0L233.41 384c29.11-29.11 29.11-76.3 0-105.41s-76.3-29.11-105.41 0z"] }; +var faSearch = { prefix: 'fas', iconName: 'search', icon: [512, 512, [], "f002", "M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"] }; +var faSearchMinus = { prefix: 'fas', iconName: 'search-minus', icon: [512, 512, [], "f010", "M304 192v32c0 6.6-5.4 12-12 12H124c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z"] }; +var faSearchPlus = { prefix: 'fas', iconName: 'search-plus', icon: [512, 512, [], "f00e", "M304 192v32c0 6.6-5.4 12-12 12h-56v56c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-56h-56c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h56v-56c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v56h56c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z"] }; +var faSeedling = { prefix: 'fas', iconName: 'seedling', icon: [512, 512, [], "f4d8", "M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z"] }; +var faServer = { prefix: 'fas', iconName: 'server', icon: [512, 512, [], "f233", "M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z"] }; +var faShare = { prefix: 'fas', iconName: 'share', icon: [512, 512, [], "f064", "M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z"] }; +var faShareAlt = { prefix: 'fas', iconName: 'share-alt', icon: [448, 512, [], "f1e0", "M352 320c-22.608 0-43.387 7.819-59.79 20.895l-102.486-64.054a96.551 96.551 0 0 0 0-41.683l102.486-64.054C308.613 184.181 329.392 192 352 192c53.019 0 96-42.981 96-96S405.019 0 352 0s-96 42.981-96 96c0 7.158.79 14.13 2.276 20.841L155.79 180.895C139.387 167.819 118.608 160 96 160c-53.019 0-96 42.981-96 96s42.981 96 96 96c22.608 0 43.387-7.819 59.79-20.895l102.486 64.054A96.301 96.301 0 0 0 256 416c0 53.019 42.981 96 96 96s96-42.981 96-96-42.981-96-96-96z"] }; +var faShareAltSquare = { prefix: 'fas', iconName: 'share-alt-square', icon: [448, 512, [], "f1e1", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zM304 296c-14.562 0-27.823 5.561-37.783 14.671l-67.958-40.775a56.339 56.339 0 0 0 0-27.793l67.958-40.775C276.177 210.439 289.438 216 304 216c30.928 0 56-25.072 56-56s-25.072-56-56-56-56 25.072-56 56c0 4.797.605 9.453 1.74 13.897l-67.958 40.775C171.823 205.561 158.562 200 144 200c-30.928 0-56 25.072-56 56s25.072 56 56 56c14.562 0 27.823-5.561 37.783-14.671l67.958 40.775a56.088 56.088 0 0 0-1.74 13.897c0 30.928 25.072 56 56 56s56-25.072 56-56C360 321.072 334.928 296 304 296z"] }; +var faShareSquare = { prefix: 'fas', iconName: 'share-square', icon: [576, 512, [], "f14d", "M568.482 177.448L424.479 313.433C409.3 327.768 384 317.14 384 295.985v-71.963c-144.575.97-205.566 35.113-164.775 171.353 4.483 14.973-12.846 26.567-25.006 17.33C155.252 383.105 120 326.488 120 269.339c0-143.937 117.599-172.5 264-173.312V24.012c0-21.174 25.317-31.768 40.479-17.448l144.003 135.988c10.02 9.463 10.028 25.425 0 34.896zM384 379.128V448H64V128h50.916a11.99 11.99 0 0 0 8.648-3.693c14.953-15.568 32.237-27.89 51.014-37.676C185.708 80.83 181.584 64 169.033 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48v-88.806c0-8.288-8.197-14.066-16.011-11.302a71.83 71.83 0 0 1-34.189 3.377c-7.27-1.046-13.8 4.514-13.8 11.859z"] }; +var faShekelSign = { prefix: 'fas', iconName: 'shekel-sign', icon: [448, 512, [], "f20b", "M248 168v168c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V168c0-75.11-60.89-136-136-136H24C10.75 32 0 42.74 0 56v408c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112h112c30.93 0 56 25.07 56 56zM432 32h-48c-8.84 0-16 7.16-16 16v296c0 30.93-25.07 56-56 56H200V176c0-8.84-7.16-16-16-16h-48c-8.84 0-16 7.16-16 16v280c0 13.25 10.75 24 24 24h168c75.11 0 136-60.89 136-136V48c0-8.84-7.16-16-16-16z"] }; +var faShieldAlt = { prefix: 'fas', iconName: 'shield-alt', icon: [512, 512, [], "f3ed", "M496 128c0 221.282-135.934 344.645-221.539 380.308a48 48 0 0 1-36.923 0C130.495 463.713 16 326.487 16 128a48 48 0 0 1 29.539-44.308l192-80a48 48 0 0 1 36.923 0l192 80A48 48 0 0 1 496 128zM256 446.313l.066.034c93.735-46.689 172.497-156.308 175.817-307.729L256 65.333v380.98z"] }; +var faShip = { prefix: 'fas', iconName: 'ship', icon: [640, 512, [], "f21a", "M496.616 372.639l70.012-70.012c16.899-16.9 9.942-45.771-12.836-53.092L512 236.102V96c0-17.673-14.327-32-32-32h-64V24c0-13.255-10.745-24-24-24H248c-13.255 0-24 10.745-24 24v40h-64c-17.673 0-32 14.327-32 32v140.102l-41.792 13.433c-22.753 7.313-29.754 36.173-12.836 53.092l70.012 70.012C125.828 416.287 85.587 448 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24 61.023 0 107.499-20.61 143.258-59.396C181.677 487.432 216.021 512 256 512h128c39.979 0 74.323-24.568 88.742-59.396C508.495 491.384 554.968 512 616 512c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24-60.817 0-101.542-31.001-119.384-75.361zM192 128h256v87.531l-118.208-37.995a31.995 31.995 0 0 0-19.584 0L192 215.531V128z"] }; +var faShippingFast = { prefix: 'fas', iconName: 'shipping-fast', icon: [640, 512, [], "f48b", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H112C85.5 0 64 21.5 64 48v48H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h272c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H40c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H64v128c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"] }; +var faShoePrints = { prefix: 'fas', iconName: 'shoe-prints', icon: [640, 512, [], "f54b", "M192 160h32V32h-32c-35.35 0-64 28.65-64 64s28.65 64 64 64zM0 416c0 35.35 28.65 64 64 64h32V352H64c-35.35 0-64 28.65-64 64zm337.46-128c-34.91 0-76.16 13.12-104.73 32-24.79 16.38-44.52 32-104.73 32v128l57.53 15.97c26.21 7.28 53.01 13.12 80.31 15.05 32.69 2.31 65.6.67 97.58-6.2C472.9 481.3 512 429.22 512 384c0-64-84.18-96-174.54-96zM491.42 7.19C459.44.32 426.53-1.33 393.84.99c-27.3 1.93-54.1 7.77-80.31 15.04L256 32v128c60.2 0 79.94 15.62 104.73 32 28.57 18.88 69.82 32 104.73 32C555.82 224 640 192 640 128c0-45.22-39.1-97.3-148.58-120.81z"] }; +var faShoppingBag = { prefix: 'fas', iconName: 'shopping-bag', icon: [448, 512, [], "f290", "M352 160v-32C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128v32H0v272c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V160h-96zm-192-32c0-35.29 28.71-64 64-64s64 28.71 64 64v32H160v-32zm160 120c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm-192 0c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24z"] }; +var faShoppingBasket = { prefix: 'fas', iconName: 'shopping-basket', icon: [576, 512, [], "f291", "M576 216v16c0 13.255-10.745 24-24 24h-8l-26.113 182.788C514.509 462.435 494.257 480 470.37 480H105.63c-23.887 0-44.139-17.565-47.518-41.212L32 256h-8c-13.255 0-24-10.745-24-24v-16c0-13.255 10.745-24 24-24h67.341l106.78-146.821c10.395-14.292 30.407-17.453 44.701-7.058 14.293 10.395 17.453 30.408 7.058 44.701L170.477 192h235.046L326.12 82.821c-10.395-14.292-7.234-34.306 7.059-44.701 14.291-10.395 34.306-7.235 44.701 7.058L484.659 192H552c13.255 0 24 10.745 24 24zM312 392V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm112 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm-224 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24z"] }; +var faShoppingCart = { prefix: 'fas', iconName: 'shopping-cart', icon: [576, 512, [], "f07a", "M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z"] }; +var faShower = { prefix: 'fas', iconName: 'shower', icon: [512, 512, [], "f2cc", "M389.66 135.6L231.6 293.66c-9.37 9.37-24.57 9.37-33.94 0l-11.32-11.32c-9.37-9.37-9.37-24.57 0-33.94l.11-.11c-34.03-40.21-35.16-98.94-3.39-140.38-11.97-7.55-26.14-11.91-41.3-11.91C98.88 96 64 130.88 64 173.76V480H0V173.76C0 95.59 63.59 32 141.76 32c36.93 0 70.61 14.2 95.86 37.42 35.9-11.51 76.5-4.5 106.67 21.03l.11-.11c9.37-9.37 24.57-9.37 33.94 0l11.32 11.32c9.37 9.37 9.37 24.57 0 33.94zM384 208c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm48-16c8.837 0 16 7.163 16 16s-7.163 16-16 16-16-7.163-16-16 7.163-16 16-16zm80 16c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-128 32c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-96 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm64 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16z"] }; +var faSign = { prefix: 'fas', iconName: 'sign', icon: [512, 512, [], "f4d9", "M496 64H128V16c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16v48H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V128h368c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM160 384h320V160H160v224z"] }; +var faSignInAlt = { prefix: 'fas', iconName: 'sign-in-alt', icon: [512, 512, [], "f2f6", "M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z"] }; +var faSignLanguage = { prefix: 'fas', iconName: 'sign-language', icon: [448, 512, [], "f2a7", "M91.434 483.987c-.307-16.018 13.109-29.129 29.13-29.129h62.293v-5.714H56.993c-16.021 0-29.437-13.111-29.13-29.129C28.16 404.491 40.835 392 56.428 392h126.429v-5.714H29.136c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h154.286v-5.714H57.707c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h168.566l-31.085-22.606c-12.762-9.281-15.583-27.149-6.302-39.912 9.281-12.761 27.15-15.582 39.912-6.302l123.361 89.715a34.287 34.287 0 0 1 14.12 27.728v141.136c0 15.91-10.946 29.73-26.433 33.374l-80.471 18.934a137.16 137.16 0 0 1-31.411 3.646H120c-15.593-.001-28.269-12.492-28.566-28.014zm73.249-225.701h36.423l-11.187-8.136c-18.579-13.511-20.313-40.887-3.17-56.536l-13.004-16.7c-9.843-12.641-28.43-15.171-40.88-5.088-12.065 9.771-14.133 27.447-4.553 39.75l36.371 46.71zm283.298-2.103l-5.003-152.452c-.518-15.771-13.722-28.136-29.493-27.619-15.773.518-28.137 13.722-27.619 29.493l1.262 38.415L283.565 11.019c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l76.889 98.745-4.509 3.511-94.79-121.734c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l94.443 121.288-4.509 3.511-77.675-99.754c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l52.053 66.849c12.497-8.257 29.055-8.285 41.69.904l123.36 89.714c10.904 7.93 17.415 20.715 17.415 34.198v16.999l61.064-47.549a34.285 34.285 0 0 0 13.202-28.177z"] }; +var faSignOutAlt = { prefix: 'fas', iconName: 'sign-out-alt', icon: [512, 512, [], "f2f5", "M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"] }; +var faSignal = { prefix: 'fas', iconName: 'signal', icon: [640, 512, [], "f012", "M36 384h56c6.6 0 12 5.4 12 12v104c0 6.6-5.4 12-12 12H36c-6.6 0-12-5.4-12-12V396c0-6.6 5.4-12 12-12zm116-36v152c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V348c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-80v232c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V268c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-112v344c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V156c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zM536 12v488c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V12c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12z"] }; +var faSitemap = { prefix: 'fas', iconName: 'sitemap', icon: [640, 512, [], "f0e8", "M128 352H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm-24-80h192v48h48v-48h192v48h48v-57.59c0-21.17-17.23-38.41-38.41-38.41H344v-64h40c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H256c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h40v64H94.41C73.23 224 56 241.23 56 262.41V320h48v-48zm264 80h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm240 0h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"] }; +var faSkull = { prefix: 'fas', iconName: 'skull', icon: [512, 512, [], "f54c", "M256 0C114.6 0 0 100.3 0 224c0 70.1 36.9 132.6 94.5 173.7 9.6 6.9 15.2 18.1 13.5 29.9l-9.4 66.2c-1.4 9.6 6 18.2 15.7 18.2H192v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h64v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h77.7c9.7 0 17.1-8.6 15.7-18.2l-9.4-66.2c-1.7-11.7 3.8-23 13.5-29.9C475.1 356.6 512 294.1 512 224 512 100.3 397.4 0 256 0zm-96 320c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm192 0c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64z"] }; +var faSlidersH = { prefix: 'fas', iconName: 'sliders-h', icon: [512, 512, [], "f1de", "M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z"] }; +var faSmile = { prefix: 'fas', iconName: 'smile', icon: [496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-5.7-6.8-4.7-16.9 2-22.5 6.8-5.7 16.9-4.7 22.5 2 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c5.7-6.8 15.7-7.7 22.5-2 6.9 5.7 7.8 15.8 2.2 22.5z"] }; +var faSmoking = { prefix: 'fas', iconName: 'smoking', icon: [640, 512, [], "f48d", "M632 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8zM553.3 87.1c-5.7-3.8-9.3-10-9.3-16.8V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v62.3c0 22 10.2 43.4 28.6 55.4 42.2 27.3 67.4 73.8 67.4 124V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-65.5-32.4-126.2-86.7-162.6zM432 352H48c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h384c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zm-32 112H224v-64h176v64zm87.7-322.4C463.8 125 448 99.3 448 70.3V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v66.4c0 43.7 24.6 81.6 60.3 106.7 22.4 15.7 35.7 41.2 35.7 68.6V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-43.3-21-83.4-56.3-108.1zM536 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8z"] }; +var faSmokingBan = { prefix: 'fas', iconName: 'smoking-ban', icon: [512, 512, [], "f54d", "M96 304c0 8.8 7.2 16 16 16h117.5l-96-96H112c-8.8 0-16 7.2-16 16v64zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 448c-105.9 0-192-86.1-192-192 0-41.4 13.3-79.7 35.7-111.1l267.4 267.4C335.7 434.7 297.4 448 256 448zm45.2-192H384v32h-50.8l-32-32zm111.1 111.1L365.2 320H400c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16H269.2L144.9 99.7C176.3 77.3 214.6 64 256 64c105.9 0 192 86.1 192 192 0 41.4-13.3 79.7-35.7 111.1zM320.6 128c-15.6 0-28.6-11.2-31.4-25.9-.7-3.6-4-6.1-7.7-6.1h-16.2c-5 0-8.7 4.5-8 9.4 4.6 30.9 31.2 54.6 63.3 54.6 15.6 0 28.6 11.2 31.4 25.9.7 3.6 4 6.1 7.7 6.1h16.2c5 0 8.7-4.5 8-9.4-4.6-30.9-31.2-54.6-63.3-54.6z"] }; +var faSnowflake = { prefix: 'fas', iconName: 'snowflake', icon: [448, 512, [], "f2dc", "M444.816 301.639a24.12 24.12 0 0 0 2.661-16.978c-2.725-12.966-15.339-21.245-28.174-18.492l-87.407 25.046L264 256l67.896-35.215 87.407 25.046c12.835 2.753 25.449-5.526 28.174-18.492 2.725-12.966-5.471-25.708-18.305-28.461l-47.477-7.137 53.077-30.956c11.363-6.627 15.257-21.306 8.696-32.785-6.561-11.479-21.091-15.412-32.454-8.785l-53.077 30.956 17.621-45.104c4.057-12.606-2.768-26.146-15.247-30.245-12.478-4.099-25.883 2.797-29.94 15.402l-22.232 88.99-60.38 35.215V144l65.175-63.945c8.778-9.852 7.987-25.027-1.766-33.894-9.753-8.867-24.775-8.068-33.552 1.784l-29.857 37.967V24c0-13.255-10.637-24-23.758-24s-23.758 10.745-23.758 24v61.912l-29.857-37.967c-8.779-9.852-23.799-10.652-33.552-1.784-9.753 8.867-10.543 24.042-1.766 33.894L200.242 144v70.431l-60.38-35.215-22.232-88.99c-4.057-12.605-17.462-19.501-29.94-15.402-12.478 4.099-19.304 17.64-15.247 30.245l17.62 45.104-53.077-30.956c-11.363-6.627-25.893-2.694-32.454 8.785s-2.667 26.157 8.696 32.785l53.077 30.956-47.477 7.137C5.993 201.634-2.203 214.375.523 227.341c2.725 12.965 15.339 21.245 28.174 18.492l87.407-25.046L184 256l-67.896 35.215-87.406-25.045c-12.835-2.753-25.449 5.526-28.174 18.492-2.725 12.967 5.47 25.708 18.305 28.461l47.477 7.137-53.077 30.956C1.866 357.843-2.027 372.521 4.533 384s21.091 15.412 32.454 8.785l53.077-30.956-17.62 45.104a24.157 24.157 0 0 0 2.022 19.428c2.831 4.953 7.416 8.909 13.224 10.816 12.478 4.099 25.883-2.797 29.94-15.402l22.232-88.99 60.38-35.215V368l-65.175 63.945c-8.778 9.852-7.987 25.027 1.766 33.894 9.754 8.868 24.774 8.068 33.552-1.784l29.857-37.967V488c0 13.255 10.637 24 23.758 24s23.758-10.745 23.758-24v-61.912l29.857 37.967A23.59 23.59 0 0 0 295.282 472a23.534 23.534 0 0 0 15.885-6.161c9.753-8.867 10.544-24.042 1.766-33.894L247.758 368v-70.431l60.38 35.215 22.232 88.99c4.057 12.605 17.462 19.501 29.94 15.402 12.479-4.099 19.304-17.64 15.247-30.245l-17.621-45.104 53.077 30.956c11.363 6.627 25.893 2.694 32.454-8.785s2.667-26.157-8.696-32.785l-53.077-30.956 47.477-7.137c6.86-1.469 12.394-5.793 15.645-11.481z"] }; +var faSort = { prefix: 'fas', iconName: 'sort', icon: [320, 512, [], "f0dc", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z"] }; +var faSortAlphaDown = { prefix: 'fas', iconName: 'sort-alpha-down', icon: [448, 512, [], "f15d", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zm119.075-180.007A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z"] }; +var faSortAlphaUp = { prefix: 'fas', iconName: 'sort-alpha-up', icon: [448, 512, [], "f15e", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zm301.671 98.621A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z"] }; +var faSortAmountDown = { prefix: 'fas', iconName: 'sort-amount-down', icon: [512, 512, [], "f160", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z"] }; +var faSortAmountUp = { prefix: 'fas', iconName: 'sort-amount-up', icon: [512, 512, [], "f161", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z"] }; +var faSortDown = { prefix: 'fas', iconName: 'sort-down', icon: [320, 512, [], "f0dd", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z"] }; +var faSortNumericDown = { prefix: 'fas', iconName: 'sort-numeric-down', icon: [448, 512, [], "f162", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM175.984 368H128V48c0-8.837-7.163-16-16-16H80c-8.837 0-16 7.163-16 16v320H16.019c-14.212 0-21.384 17.244-11.314 27.314l79.981 80.002c6.245 6.245 16.38 6.247 22.627 0l79.984-80.002c10.05-10.05 2.928-27.314-11.313-27.314z"] }; +var faSortNumericUp = { prefix: 'fas', iconName: 'sort-numeric-up', icon: [448, 512, [], "f163", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM16.016 144H64v320c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144h47.981c14.212 0 21.384-17.244 11.314-27.314l-79.981-80.002c-6.245-6.245-16.38-6.247-22.627 0L4.702 116.686C-5.347 126.736 1.775 144 16.016 144z"] }; +var faSortUp = { prefix: 'fas', iconName: 'sort-up', icon: [320, 512, [], "f0de", "M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z"] }; +var faSpaceShuttle = { prefix: 'fas', iconName: 'space-shuttle', icon: [640, 512, [], "f197", "M592.604 208.244C559.735 192.836 515.777 184 472 184H186.327c-4.952-6.555-10.585-11.978-16.72-16H376C229.157 137.747 219.403 32 96.003 32H96v128H80V32c-26.51 0-48 28.654-48 64v64c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v16c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v64c0 35.346 21.49 64 48 64V352h16v128h.003c123.4 0 133.154-105.747 279.997-136H169.606c6.135-4.022 11.768-9.445 16.72-16H472c43.777 0 87.735-8.836 120.604-24.244C622.282 289.845 640 271.992 640 256s-17.718-33.845-47.396-47.756zM488 296a8 8 0 0 1-8-8v-64a8 8 0 0 1 8-8c31.909 0 31.942 80 0 80z"] }; +var faSpinner = { prefix: 'fas', iconName: 'spinner', icon: [512, 512, [], "f110", "M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z"] }; +var faSquare = { prefix: 'fas', iconName: 'square', icon: [448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"] }; +var faSquareFull = { prefix: 'fas', iconName: 'square-full', icon: [512, 512, [], "f45c", "M512 512H0V0h512v512z"] }; +var faStar = { prefix: 'fas', iconName: 'star', icon: [576, 512, [], "f005", "M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z"] }; +var faStarHalf = { prefix: 'fas', iconName: 'star-half', icon: [576, 512, [], "f089", "M288 0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6V0z"] }; +var faStepBackward = { prefix: 'fas', iconName: 'step-backward', icon: [448, 512, [], "f048", "M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z"] }; +var faStepForward = { prefix: 'fas', iconName: 'step-forward', icon: [448, 512, [], "f051", "M384 44v424c0 6.6-5.4 12-12 12h-48c-6.6 0-12-5.4-12-12V291.6l-195.5 181C95.9 489.7 64 475.4 64 448V64c0-27.4 31.9-41.7 52.5-24.6L312 219.3V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12z"] }; +var faStethoscope = { prefix: 'fas', iconName: 'stethoscope', icon: [512, 512, [], "f0f1", "M447.1 112c-34.2.5-62.3 28.4-63 62.6-.5 24.3 12.5 45.6 32 56.8V344c0 57.3-50.2 104-112 104-60 0-109.2-44.1-111.9-99.2C265 333.8 320 269.2 320 192V36.6c0-11.4-8.1-21.3-19.3-23.5L237.8.5c-13-2.6-25.6 5.8-28.2 18.8L206.4 35c-2.6 13 5.8 25.6 18.8 28.2l30.7 6.1v121.4c0 52.9-42.2 96.7-95.1 97.2-53.4.5-96.9-42.7-96.9-96V69.4l30.7-6.1c13-2.6 21.4-15.2 18.8-28.2l-3.1-15.7C107.7 6.4 95.1-2 82.1.6L19.3 13C8.1 15.3 0 25.1 0 36.6V192c0 77.3 55.1 142 128.1 156.8C130.7 439.2 208.6 512 304 512c97 0 176-75.4 176-168V231.4c19.1-11.1 32-31.7 32-55.4 0-35.7-29.2-64.5-64.9-64zm.9 80c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"] }; +var faStickyNote = { prefix: 'fas', iconName: 'sticky-note', icon: [448, 512, [], "f249", "M312 320h136V56c0-13.3-10.7-24-24-24H24C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h264V344c0-13.2 10.8-24 24-24zm129 55l-98 98c-4.5 4.5-10.6 7-17 7h-6V352h128v6.1c0 6.3-2.5 12.4-7 16.9z"] }; +var faStop = { prefix: 'fas', iconName: 'stop', icon: [448, 512, [], "f04d", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"] }; +var faStopCircle = { prefix: 'fas', iconName: 'stop-circle', icon: [512, 512, [], "f28d", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z"] }; +var faStopwatch = { prefix: 'fas', iconName: 'stopwatch', icon: [448, 512, [], "f2f2", "M432 304c0 114.9-93.1 208-208 208S16 418.9 16 304c0-104 76.3-190.2 176-205.5V64h-28c-6.6 0-12-5.4-12-12V12c0-6.6 5.4-12 12-12h120c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-28v34.5c37.5 5.8 71.7 21.6 99.7 44.6l27.5-27.5c4.7-4.7 12.3-4.7 17 0l28.3 28.3c4.7 4.7 4.7 12.3 0 17l-29.4 29.4-.6.6C419.7 223.3 432 262.2 432 304zm-176 36V188.5c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12V340c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"] }; +var faStore = { prefix: 'fas', iconName: 'store', icon: [616, 512, [], "f54e", "M602 118.6L537.1 15C531.3 5.7 521 0 510 0H106C95 0 84.7 5.7 78.9 15L14 118.6c-33.5 53.5-3.8 127.9 58.8 136.4 4.5.6 9.1.9 13.7.9 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18.1 20.1 44.3 33.1 73.8 33.1 4.7 0 9.2-.3 13.7-.9 62.8-8.4 92.6-82.8 59-136.4zM529.5 288c-10 0-19.9-1.5-29.5-3.8V384H116v-99.8c-9.6 2.2-19.5 3.8-29.5 3.8-6 0-12.1-.4-18-1.2-5.6-.8-11.1-2.1-16.4-3.6V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V283.2c-5.4 1.6-10.8 2.9-16.4 3.6-6.1.8-12.1 1.2-18.2 1.2z"] }; +var faStoreAlt = { prefix: 'fas', iconName: 'store-alt', icon: [640, 512, [], "f54f", "M320 384H128V224H64v256c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V224h-64v160zm314.6-241.8l-85.3-128c-6-8.9-16-14.2-26.7-14.2H117.4c-10.7 0-20.7 5.3-26.6 14.2l-85.3 128c-14.2 21.3 1 49.8 26.6 49.8H608c25.5 0 40.7-28.5 26.6-49.8zM512 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h-64v272z"] }; +var faStream = { prefix: 'fas', iconName: 'stream', icon: [512, 512, [], "f550", "M16 128h416c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H16C7.16 32 0 39.16 0 48v64c0 8.84 7.16 16 16 16zm480 80H80c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm-64 176H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16z"] }; +var faStreetView = { prefix: 'fas', iconName: 'street-view', icon: [512, 512, [], "f21d", "M192 64c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zm112 80h-11.36c-22.711 10.443-49.59 10.894-73.28 0H208c-26.51 0-48 21.49-48 48v104c0 13.255 10.745 24 24 24h16v104c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V320h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48zm85.642 189.152a72.503 72.503 0 0 1-29.01 27.009C391.133 365.251 480 385.854 480 416c0 46.304-167.656 64-224 64-70.303 0-224-20.859-224-64 0-30.123 88.361-50.665 119.367-55.839a72.516 72.516 0 0 1-29.01-27.009C74.959 343.395 0 367.599 0 416c0 77.111 178.658 96 256 96 77.249 0 256-18.865 256-96 0-48.403-74.967-72.606-122.358-82.848z"] }; +var faStrikethrough = { prefix: 'fas', iconName: 'strikethrough', icon: [512, 512, [], "f0cc", "M496 288H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h480c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16zm-214.666 16c27.258 12.937 46.524 28.683 46.524 56.243 0 33.108-28.977 53.676-75.621 53.676-32.325 0-76.874-12.08-76.874-44.271V368c0-8.837-7.164-16-16-16H113.75c-8.836 0-16 7.163-16 16v19.204c0 66.845 77.717 101.82 154.487 101.82 88.578 0 162.013-45.438 162.013-134.424 0-19.815-3.618-36.417-10.143-50.6H281.334zm-30.952-96c-32.422-13.505-56.836-28.946-56.836-59.683 0-33.92 30.901-47.406 64.962-47.406 42.647 0 64.962 16.593 64.962 32.985V136c0 8.837 7.164 16 16 16h45.613c8.836 0 16-7.163 16-16v-30.318c0-52.438-71.725-79.875-142.575-79.875-85.203 0-150.726 40.972-150.726 125.646 0 22.71 4.665 41.176 12.777 56.547h129.823z"] }; +var faStroopwafel = { prefix: 'fas', iconName: 'stroopwafel', icon: [512, 512, [], "f551", "M188.12 210.74L142.86 256l45.25 45.25L233.37 256l-45.25-45.26zm113.13-22.62L256 142.86l-45.25 45.25L256 233.37l45.25-45.25zm-90.5 135.76L256 369.14l45.26-45.26L256 278.63l-45.25 45.25zM256 0C114.62 0 0 114.62 0 256s114.62 256 256 256 256-114.62 256-256S397.38 0 256 0zm186.68 295.6l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-28.29-28.29-45.25 45.25 33.94 33.94 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-33.94-33.94-45.26 45.26 28.29 28.29c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0L256 414.39l-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l28.29-28.29-45.25-45.26-33.94 33.94 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 33.94-33.94-45.25-45.25-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0L69.32 295.6c-3.12-3.12-3.12-8.19 0-11.31L97.61 256l-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l28.29 28.29 45.25-45.26-33.94-33.94-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 33.94 33.94 45.26-45.25-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0L256 97.61l28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-28.29 28.29 45.26 45.25 33.94-33.94-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-33.94 33.94 45.25 45.26 28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31L414.39 256l28.29 28.28a8.015 8.015 0 0 1 0 11.32zM278.63 256l45.26 45.25L369.14 256l-45.25-45.26L278.63 256z"] }; +var faSubscript = { prefix: 'fas', iconName: 'subscript', icon: [512, 512, [], "f12c", "M395.198 416c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 256c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 96H16C7.163 96 0 88.837 0 80V48c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035A15.999 15.999 0 0 1 204.226 32H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 256H272z"] }; +var faSubway = { prefix: 'fas', iconName: 'subway', icon: [448, 512, [], "f239", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zM200 232V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm200 0V120c0-13.255-10.745-24-24-24H272c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm-48 56c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm-256 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"] }; +var faSuitcase = { prefix: 'fas', iconName: 'suitcase', icon: [512, 512, [], "f0f2", "M128 480h256V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v400zm64-384h128v32H192V96zm320 80v256c0 26.5-21.5 48-48 48h-48V128h48c26.5 0 48 21.5 48 48zM96 480H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h48v352z"] }; +var faSun = { prefix: 'fas', iconName: 'sun', icon: [512, 512, [], "f185", "M274.835 12.646l25.516 62.393c4.213 10.301 16.671 14.349 26.134 8.492l57.316-35.479c15.49-9.588 34.808 4.447 30.475 22.142l-16.03 65.475c-2.647 10.81 5.053 21.408 16.152 22.231l67.224 4.987c18.167 1.348 25.546 24.057 11.641 35.826L441.81 242.26c-8.495 7.19-8.495 20.289 0 27.479l51.454 43.548c13.906 11.769 6.527 34.478-11.641 35.826l-67.224 4.987c-11.099.823-18.799 11.421-16.152 22.231l16.03 65.475c4.332 17.695-14.986 31.73-30.475 22.142l-57.316-35.479c-9.463-5.858-21.922-1.81-26.134 8.492l-25.516 62.393c-6.896 16.862-30.774 16.862-37.67 0l-25.516-62.393c-4.213-10.301-16.671-14.349-26.134-8.492l-57.317 35.479c-15.49 9.588-34.808-4.447-30.475-22.142l16.03-65.475c2.647-10.81-5.053-21.408-16.152-22.231l-67.224-4.987c-18.167-1.348-25.546-24.057-11.641-35.826L70.19 269.74c8.495-7.19 8.495-20.289 0-27.479l-51.454-43.548c-13.906-11.769-6.527-34.478 11.641-35.826l67.224-4.987c11.099-.823 18.799-11.421 16.152-22.231l-16.03-65.475c-4.332-17.695 14.986-31.73 30.475-22.142l57.317 35.479c9.463 5.858 21.921 1.81 26.134-8.492l25.516-62.393c6.896-16.861 30.774-16.861 37.67 0zM392 256c0-74.991-61.01-136-136-136-74.991 0-136 61.009-136 136s61.009 136 136 136c74.99 0 136-61.009 136-136zm-32 0c0 57.346-46.654 104-104 104s-104-46.654-104-104 46.654-104 104-104 104 46.654 104 104z"] }; +var faSuperscript = { prefix: 'fas', iconName: 'superscript', icon: [512, 512, [], "f12b", "M395.198 256c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 256H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035a16 16 0 0 1 13.598-7.567H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 416H272z"] }; +var faSync = { prefix: 'fas', iconName: 'sync', icon: [512, 512, [], "f021", "M440.935 12.574l3.966 82.766C399.416 41.904 331.674 8 256 8 134.813 8 33.933 94.924 12.296 209.824 10.908 217.193 16.604 224 24.103 224h49.084c5.57 0 10.377-3.842 11.676-9.259C103.407 137.408 172.931 80 256 80c60.893 0 114.512 30.856 146.104 77.801l-101.53-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12h-47.411c-6.853 0-12.315 5.729-11.987 12.574zM256 432c-60.895 0-114.517-30.858-146.109-77.805l101.868 4.871c6.845.327 12.573-5.134 12.573-11.986v-47.412c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12V500c0 6.627 5.373 12 12 12h47.385c6.863 0 12.328-5.745 11.985-12.599l-4.129-82.575C112.725 470.166 180.405 504 256 504c121.187 0 222.067-86.924 243.704-201.824 1.388-7.369-4.308-14.176-11.807-14.176h-49.084c-5.57 0-10.377 3.842-11.676 9.259C408.593 374.592 339.069 432 256 432z"] }; +var faSyncAlt = { prefix: 'fas', iconName: 'sync-alt', icon: [512, 512, [], "f2f1", "M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z"] }; +var faSyringe = { prefix: 'fas', iconName: 'syringe', icon: [512, 512, [], "f48e", "M201.5 174.8l55.7 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-55.7-55.8-45.3 45.3 55.8 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L111 265.2l-26.4 26.4c-17.3 17.3-25.6 41.1-23 65.4l7.1 63.6L2.3 487c-3.1 3.1-3.1 8.2 0 11.3l11.3 11.3c3.1 3.1 8.2 3.1 11.3 0l66.3-66.3 63.6 7.1c23.9 2.6 47.9-5.4 65.4-23l181.9-181.9-135.7-135.7-64.9 65zm308.2-93.3L430.5 2.3c-3.1-3.1-8.2-3.1-11.3 0l-11.3 11.3c-3.1 3.1-3.1 8.2 0 11.3l28.3 28.3-45.3 45.3-56.6-56.6-17-17c-3.1-3.1-8.2-3.1-11.3 0l-33.9 33.9c-3.1 3.1-3.1 8.2 0 11.3l17 17L424.8 223l17 17c3.1 3.1 8.2 3.1 11.3 0l33.9-34c3.1-3.1 3.1-8.2 0-11.3l-73.5-73.5 45.3-45.3 28.3 28.3c3.1 3.1 8.2 3.1 11.3 0l11.3-11.3c3.1-3.2 3.1-8.2 0-11.4z"] }; +var faTable = { prefix: 'fas', iconName: 'table', icon: [512, 512, [], "f0ce", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64v-96h160v96zm0-160H64v-96h160v96zm224 160H288v-96h160v96zm0-160H288v-96h160v96z"] }; +var faTableTennis = { prefix: 'fas', iconName: 'table-tennis', icon: [512, 512, [], "f45d", "M496.2 296.5C527.7 218.7 512 126.2 449 63.1 365.1-21 229-21 145.1 63.1l-56 56.1 211.5 211.5c46.1-62.1 131.5-77.4 195.6-34.2zm-217.9 79.7L57.9 155.9c-27.3 45.3-21.7 105 17.3 144.1l34.5 34.6L6.7 424c-8.6 7.5-9.1 20.7-1 28.8l53.4 53.5c8 8.1 21.2 7.6 28.7-1L177.1 402l35.7 35.7c19.7 19.7 44.6 30.5 70.3 33.3-7.1-17-11-35.6-11-55.1-.1-13.8 2.5-27 6.2-39.7zM416 320c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96z"] }; +var faTablet = { prefix: 'fas', iconName: 'tablet', icon: [448, 512, [], "f10a", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faTabletAlt = { prefix: 'fas', iconName: 'tablet-alt', icon: [448, 512, [], "f3fa", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm176-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h328c6.6 0 12 5.4 12 12v312z"] }; +var faTablets = { prefix: 'fas', iconName: 'tablets', icon: [640, 512, [], "f490", "M160 192C78.9 192 12.5 250.5.1 326.7c-.8 4.8 3.3 9.3 8.3 9.3h303.3c5 0 9.1-4.5 8.3-9.3C307.5 250.5 241.1 192 160 192zm151.6 176H8.4c-5 0-9.1 4.5-8.3 9.3C12.5 453.5 78.9 512 160 512s147.5-58.5 159.9-134.7c.8-4.8-3.3-9.3-8.3-9.3zM593.4 46.6c-56.5-56.5-144.2-61.4-206.9-16-4 2.9-4.3 8.9-.8 12.3L597 254.3c3.5 3.5 9.5 3.2 12.3-.8 45.5-62.7 40.6-150.4-15.9-206.9zM363 65.7c-3.5-3.5-9.5-3.2-12.3.8-45.4 62.7-40.5 150.4 15.9 206.9 56.5 56.5 144.2 61.4 206.9 15.9 4-2.9 4.3-8.9.8-12.3L363 65.7z"] }; +var faTachometerAlt = { prefix: 'fas', iconName: 'tachometer-alt', icon: [576, 512, [], "f3fd", "M75.694 480a48.02 48.02 0 0 1-42.448-25.571C12.023 414.3 0 368.556 0 320 0 160.942 128.942 32 288 32s288 128.942 288 288c0 48.556-12.023 94.3-33.246 134.429A48.018 48.018 0 0 1 500.306 480H75.694zM512 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zM288 128c17.673 0 32-14.327 32-32 0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32zM64 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm65.608-158.392c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm316.784 0c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm-87.078 31.534c-12.627-4.04-26.133 2.92-30.173 15.544l-45.923 143.511C250.108 322.645 224 350.264 224 384c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64 0-19.773-8.971-37.447-23.061-49.187l45.919-143.498c4.039-12.625-2.92-26.133-15.544-30.173z"] }; +var faTag = { prefix: 'fas', iconName: 'tag', icon: [512, 512, [], "f02b", "M0 252.118V48C0 21.49 21.49 0 48 0h204.118a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882L293.823 497.941c-18.745 18.745-49.137 18.745-67.882 0L14.059 286.059A48 48 0 0 1 0 252.118zM112 64c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"] }; +var faTags = { prefix: 'fas', iconName: 'tags', icon: [640, 512, [], "f02c", "M497.941 225.941L286.059 14.059A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v204.118a48 48 0 0 0 14.059 33.941l211.882 211.882c18.744 18.745 49.136 18.746 67.882 0l204.118-204.118c18.745-18.745 18.745-49.137 0-67.882zM112 160c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm513.941 133.823L421.823 497.941c-18.745 18.745-49.137 18.745-67.882 0l-.36-.36L527.64 323.522c16.999-16.999 26.36-39.6 26.36-63.64s-9.362-46.641-26.36-63.64L331.397 0h48.721a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882z"] }; +var faTape = { prefix: 'fas', iconName: 'tape', icon: [640, 512, [], "f4db", "M224 192c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm400 224H380.6c41.5-40.7 67.4-97.3 67.4-160 0-123.7-100.3-224-224-224S0 132.3 0 256s100.3 224 224 224h400c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400-64c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96z"] }; +var faTasks = { prefix: 'fas', iconName: 'tasks', icon: [512, 512, [], "f0ae", "M208 132h288c8.8 0 16-7.2 16-16V76c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zM64 368c-26.5 0-48.6 21.5-48.6 48s22.1 48 48.6 48 48-21.5 48-48-21.5-48-48-48zm92.5-299l-72.2 72.2-15.6 15.6c-4.7 4.7-12.9 4.7-17.6 0L3.5 109.4c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.3c4.7-4.7 12.3-4.7 17 0l17 16.5c4.6 4.7 4.6 12.3-.1 17zm0 159.6l-72.2 72.2-15.7 15.7c-4.7 4.7-12.9 4.7-17.6 0L3.5 269c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.7c4.7-4.7 12.3-4.7 17 0l17 17c4.6 4.6 4.6 12.2-.1 16.9z"] }; +var faTaxi = { prefix: 'fas', iconName: 'taxi', icon: [512, 512, [], "f1ba", "M461.951 243.865l-21.816-87.268A79.885 79.885 0 0 0 362.522 96H352V56c0-13.255-10.745-24-24-24H184c-13.255 0-24 10.745-24 24v40h-10.522a79.885 79.885 0 0 0-77.612 60.597L50.05 243.865C25.515 252.823 8 276.366 8 304v48c0 20.207 9.374 38.214 24 49.943V456c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-40h256v40c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-54.057c14.626-11.729 24-29.737 24-49.943v-48c0-27.634-17.515-51.177-42.049-60.135zM149.478 160h213.045a15.975 15.975 0 0 1 15.522 12.12l16.97 67.88h-278.03l16.97-67.881A15.976 15.976 0 0 1 149.478 160zM132 336c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm320 0c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36z"] }; +var faTerminal = { prefix: 'fas', iconName: 'terminal', icon: [640, 512, [], "f120", "M257.981 272.971L63.638 467.314c-9.373 9.373-24.569 9.373-33.941 0L7.029 444.647c-9.357-9.357-9.375-24.522-.04-33.901L161.011 256 6.99 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L257.981 239.03c9.373 9.372 9.373 24.568 0 33.941zM640 456v-32c0-13.255-10.745-24-24-24H312c-13.255 0-24 10.745-24 24v32c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z"] }; +var faTextHeight = { prefix: 'fas', iconName: 'text-height', icon: [576, 512, [], "f034", "M16 32h288c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96h-54.761v320H232c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H88c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm475.308 4.685l79.995 80.001C581.309 126.693 574.297 144 559.99 144H512v224h48c15.639 0 20.635 17.991 11.313 27.314l-79.995 80.001c-6.247 6.247-16.381 6.245-22.626 0l-79.995-80.001C378.691 385.307 385.703 368 400.01 368H448V144h-48c-15.639 0-20.635-17.991-11.313-27.314l79.995-80.001c6.247-6.248 16.381-6.245 22.626 0z"] }; +var faTextWidth = { prefix: 'fas', iconName: 'text-width', icon: [448, 512, [], "f035", "M16 32h416c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96H261.743v128H296c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H152c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm427.315 340.682l-80.001-79.995C353.991 283.365 336 288.362 336 304v48H112v-47.99c0-14.307-17.307-21.319-27.314-11.313L4.685 372.692c-6.245 6.245-6.247 16.379 0 22.626l80.001 79.995C94.009 484.635 112 479.638 112 464v-48h224v47.99c0 14.307 17.307 21.319 27.314 11.313l80.001-79.995c6.245-6.245 6.248-16.379 0-22.626z"] }; +var faTh = { prefix: 'fas', iconName: 'th', icon: [512, 512, [], "f00a", "M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z"] }; +var faThLarge = { prefix: 'fas', iconName: 'th-large', icon: [512, 512, [], "f009", "M296 32h192c13.255 0 24 10.745 24 24v160c0 13.255-10.745 24-24 24H296c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24zm-80 0H24C10.745 32 0 42.745 0 56v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zM0 296v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm296 184h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H296c-13.255 0-24 10.745-24 24v160c0 13.255 10.745 24 24 24z"] }; +var faThList = { prefix: 'fas', iconName: 'th-list', icon: [512, 512, [], "f00b", "M149.333 216v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zM125.333 32H24C10.745 32 0 42.745 0 56v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zm80 448H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm-24-424v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24zm24 264H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24z"] }; +var faThermometer = { prefix: 'fas', iconName: 'thermometer', icon: [512, 512, [], "f491", "M476.8 20.4c-37.5-30.7-95.5-26.3-131.9 10.2l-45.7 46 50.5 50.5c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.4-50.5-45.1 45.4 50.3 50.4c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L209 167.4l-45.1 45.4L214 263c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.1-50.2L96 281.1V382L7 471c-9.4 9.4-9.4 24.6 0 33.9 9.4 9.4 24.6 9.4 33.9 0l89-89h99.9L484 162.6c34.9-34.9 42.2-101.5-7.2-142.2z"] }; +var faThermometerEmpty = { prefix: 'fas', iconName: 'thermometer-empty', icon: [256, 512, [], "f2cb", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; +var faThermometerFull = { prefix: 'fas', iconName: 'thermometer-full', icon: [256, 512, [], "f2c7", "M224 96c0-53.019-42.981-96-96-96S32 42.981 32 96v203.347C12.225 321.756.166 351.136.002 383.333c-.359 70.303 56.787 128.176 127.089 128.664.299.002.61.003.909.003 70.698 0 128-57.304 128-128 0-32.459-12.088-62.09-32-84.653V96zm-96 368l-.576-.002c-43.86-.304-79.647-36.544-79.423-80.42.173-33.98 19.266-51.652 31.999-66.08V96c0-26.467 21.533-48 48-48s48 21.533 48 48v221.498c12.63 14.312 32 32.164 32 66.502 0 44.112-35.888 80-80 80zm64-80c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V96c0-17.673 14.327-32 32-32s32 14.327 32 32v232.583c19.124 11.068 32 31.732 32 55.417z"] }; +var faThermometerHalf = { prefix: 'fas', iconName: 'thermometer-half', icon: [256, 512, [], "f2c9", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V224c0-17.673 14.327-32 32-32s32 14.327 32 32v104.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; +var faThermometerQuarter = { prefix: 'fas', iconName: 'thermometer-quarter', icon: [256, 512, [], "f2ca", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V288c0-17.673 14.327-32 32-32s32 14.327 32 32v40.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; +var faThermometerThreeQuarters = { prefix: 'fas', iconName: 'thermometer-three-quarters', icon: [256, 512, [], "f2c8", "M192 384c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-23.685 12.876-44.349 32-55.417V160c0-17.673 14.327-32 32-32s32 14.327 32 32v168.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; +var faThumbsDown = { prefix: 'fas', iconName: 'thumbs-down', icon: [512, 512, [], "f165", "M0 56v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56zm40 200c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24zm272 256c-20.183 0-29.485-39.293-33.931-57.795-5.206-21.666-10.589-44.07-25.393-58.902-32.469-32.524-49.503-73.967-89.117-113.111a11.98 11.98 0 0 1-3.558-8.521V59.901c0-6.541 5.243-11.878 11.783-11.998 15.831-.29 36.694-9.079 52.651-16.178C256.189 17.598 295.709.017 343.995 0h2.844c42.777 0 93.363.413 113.774 29.737 8.392 12.057 10.446 27.034 6.148 44.632 16.312 17.053 25.063 48.863 16.382 74.757 17.544 23.432 19.143 56.132 9.308 79.469l.11.11c11.893 11.949 19.523 31.259 19.439 49.197-.156 30.352-26.157 58.098-59.553 58.098H350.723C358.03 364.34 384 388.132 384 430.548 384 504 336 512 312 512z"] }; +var faThumbsUp = { prefix: 'fas', iconName: 'thumbs-up', icon: [512, 512, [], "f164", "M104 224H24c-13.255 0-24 10.745-24 24v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V248c0-13.255-10.745-24-24-24zM64 472c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zM384 81.452c0 42.416-25.97 66.208-33.277 94.548h101.723c33.397 0 59.397 27.746 59.553 58.098.084 17.938-7.546 37.249-19.439 49.197l-.11.11c9.836 23.337 8.237 56.037-9.308 79.469 8.681 25.895-.069 57.704-16.382 74.757 4.298 17.598 2.244 32.575-6.148 44.632C440.202 511.587 389.616 512 346.839 512l-2.845-.001c-48.287-.017-87.806-17.598-119.56-31.725-15.957-7.099-36.821-15.887-52.651-16.178-6.54-.12-11.783-5.457-11.783-11.998v-213.77c0-3.2 1.282-6.271 3.558-8.521 39.614-39.144 56.648-80.587 89.117-113.111 14.804-14.832 20.188-37.236 25.393-58.902C282.515 39.293 291.817 0 312 0c24 0 72 8 72 81.452z"] }; +var faThumbtack = { prefix: 'fas', iconName: 'thumbtack', icon: [384, 512, [], "f08d", "M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z"] }; +var faTicketAlt = { prefix: 'fas', iconName: 'ticket-alt', icon: [576, 512, [], "f3ff", "M128 160h320v192H128V160zm400 96c0 26.51 21.49 48 48 48v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c26.51 0 48-21.49 48-48s-21.49-48-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v96c-26.51 0-48 21.49-48 48zm-48-104c0-13.255-10.745-24-24-24H120c-13.255 0-24 10.745-24 24v208c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V152z"] }; +var faTimes = { prefix: 'fas', iconName: 'times', icon: [352, 512, [], "f00d", "M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"] }; +var faTimesCircle = { prefix: 'fas', iconName: 'times-circle', icon: [512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z"] }; +var faTint = { prefix: 'fas', iconName: 'tint', icon: [384, 512, [], "f043", "M192 512c-98.435 0-178.087-79.652-178.087-178.087 0-111.196 101.194-154.065 148.522-311.825 9.104-30.116 51.099-28.778 59.13 0 47.546 158.486 148.522 200.069 148.522 311.825C370.087 432.348 290.435 512 192 512zm-42.522-171.826c-1.509-5.533-9.447-5.532-10.956 0-9.223 29.425-27.913 37.645-27.913 58.435C110.609 417.13 125.478 432 144 432s33.391-14.87 33.391-33.391c0-20.839-18.673-28.956-27.913-58.435z"] }; +var faToggleOff = { prefix: 'fas', iconName: 'toggle-off', icon: [576, 512, [], "f204", "M384 64H192C85.961 64 0 149.961 0 256s85.961 192 192 192h192c106.039 0 192-85.961 192-192S490.039 64 384 64zM64 256c0-70.741 57.249-128 128-128 70.741 0 128 57.249 128 128 0 70.741-57.249 128-128 128-70.741 0-128-57.249-128-128zm320 128h-48.905c65.217-72.858 65.236-183.12 0-256H384c70.741 0 128 57.249 128 128 0 70.74-57.249 128-128 128z"] }; +var faToggleOn = { prefix: 'fas', iconName: 'toggle-on', icon: [576, 512, [], "f205", "M576 256c0 106.039-85.961 192-192 192H192C85.961 448 0 362.039 0 256S85.961 64 192 64h192c106.039 0 192 85.961 192 192zM384 128c-70.741 0-128 57.249-128 128 0 70.741 57.249 128 128 128 70.741 0 128-57.249 128-128 0-70.741-57.249-128-128-128"] }; +var faToolbox = { prefix: 'fas', iconName: 'toolbox', icon: [512, 512, [], "f552", "M502.63 214.63l-45.25-45.25c-6-6-14.14-9.37-22.63-9.37H384V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v80H77.25c-8.49 0-16.62 3.37-22.63 9.37L9.37 214.63c-6 6-9.37 14.14-9.37 22.63V320h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-82.75c0-8.48-3.37-16.62-9.37-22.62zM320 160H192V96h128v64zm64 208c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H192v16c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H0v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96H384v16z"] }; +var faTrademark = { prefix: 'fas', iconName: 'trademark', icon: [640, 512, [], "f25c", "M97.119 163.133H12c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h248.559c6.627 0 12 5.373 12 12v43.133c0 6.627-5.373 12-12 12H175.44V404c0 6.627-5.373 12-12 12h-54.322c-6.627 0-12-5.373-12-12V163.133zM329.825 96h65.425a12 12 0 0 1 11.346 8.093l43.759 127.068c7.161 20.588 16.111 52.812 16.111 52.812h.896s8.95-32.224 16.111-52.812l43.758-127.068A12 12 0 0 1 538.577 96h65.41a12 12 0 0 1 11.961 11.03l24.012 296c.567 6.987-4.951 12.97-11.961 12.97h-54.101a12 12 0 0 1-11.972-11.182l-9.082-132.93c-1.79-24.168 0-53.706 0-53.706h-.896s-10.741 33.566-17.902 53.706l-30.7 84.731a12 12 0 0 1-11.282 7.912h-50.302a12 12 0 0 1-11.282-7.912l-30.7-84.731c-7.161-20.14-17.903-53.706-17.903-53.706h-.895s1.79 29.538 0 53.706l-9.082 132.93c-.428 6.295-5.66 11.182-11.97 11.182H305.4c-7.017 0-12.536-5.994-11.959-12.987l24.425-296A11.999 11.999 0 0 1 329.825 96z"] }; +var faTrain = { prefix: 'fas', iconName: 'train', icon: [448, 512, [], "f238", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zm-48 136V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24zm-176 64c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56z"] }; +var faTransgender = { prefix: 'fas', iconName: 'transgender', icon: [384, 512, [], "f224", "M372 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C198.5 104.1 172.2 96 144 96 64.5 96 0 160.5 0 240c0 68.5 47.9 125.9 112 140.4V408H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM144 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faTransgenderAlt = { prefix: 'fas', iconName: 'transgender-alt', icon: [480, 512, [], "f225", "M468 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C294.5 104.1 268.2 96 240 96c-28.2 0-54.5 8.1-76.7 22.1l-16.5-16.5 19.8-19.8c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0l-19.8 19.8-19-19 16.9-16.9C107.1 12.9 101.7 0 91 0H12C5.4 0 0 5.4 0 12v79c0 10.7 12.9 16 20.5 8.5l16.9-16.9 19 19-19.8 19.8c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l19.8-19.8 16.5 16.5C104.1 185.5 96 211.8 96 240c0 68.5 47.9 125.9 112 140.4V408h-36c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM240 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faTrash = { prefix: 'fas', iconName: 'trash', icon: [448, 512, [], "f1f8", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm415.2 56.7L394.8 467c-1.6 25.3-22.6 45-47.9 45H101.1c-25.3 0-46.3-19.7-47.9-45L32.8 140.7c-.4-6.9 5.1-12.7 12-12.7h358.5c6.8 0 12.3 5.8 11.9 12.7z"] }; +var faTrashAlt = { prefix: 'fas', iconName: 'trash-alt', icon: [448, 512, [], "f2ed", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm416 56v324c0 26.5-21.5 48-48 48H80c-26.5 0-48-21.5-48-48V140c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12zm-272 68c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208z"] }; +var faTree = { prefix: 'fas', iconName: 'tree', icon: [384, 512, [], "f1bb", "M377.33 375.429L293.906 288H328c21.017 0 31.872-25.207 17.448-40.479L262.79 160H296c20.878 0 31.851-24.969 17.587-40.331l-104-112.003c-9.485-10.214-25.676-10.229-35.174 0l-104 112.003C56.206 134.969 67.037 160 88 160h33.21l-82.659 87.521C24.121 262.801 34.993 288 56 288h34.094L6.665 375.429C-7.869 390.655 2.925 416 24.025 416H144c0 32.781-11.188 49.26-33.995 67.506C98.225 492.93 104.914 512 120 512h144c15.086 0 21.776-19.069 9.995-28.494-19.768-15.814-33.992-31.665-33.995-67.496V416h119.97c21.05 0 31.929-25.309 17.36-40.571z"] }; +var faTrophy = { prefix: 'fas', iconName: 'trophy', icon: [576, 512, [], "f091", "M552 64H448V24c0-13.3-10.7-24-24-24H152c-13.3 0-24 10.7-24 24v40H24C10.7 64 0 74.7 0 88v56c0 35.7 22.5 72.4 61.9 100.7 31.5 22.7 69.8 37.1 110 41.7C203.3 338.5 240 360 240 360v72h-48c-35.3 0-64 20.7-64 56v12c0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12v-12c0-35.3-28.7-56-64-56h-48v-72s36.7-21.5 68.1-73.6c40.3-4.6 78.6-19 110-41.7 39.3-28.3 61.9-65 61.9-100.7V88c0-13.3-10.7-24-24-24zM99.3 192.8C74.9 175.2 64 155.6 64 144v-16h64.2c1 32.6 5.8 61.2 12.8 86.2-15.1-5.2-29.2-12.4-41.7-21.4zM512 144c0 16.1-17.7 36.1-35.3 48.8-12.5 9-26.7 16.2-41.8 21.4 7-25 11.8-53.6 12.8-86.2H512v16z"] }; +var faTruck = { prefix: 'fas', iconName: 'truck', icon: [640, 512, [], "f0d1", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"] }; +var faTruckLoading = { prefix: 'fas', iconName: 'truck-loading', icon: [640, 512, [], "f4de", "M50.2 375.6c2.3 8.5 11.1 13.6 19.6 11.3l216.4-58c8.5-2.3 13.6-11.1 11.3-19.6l-49.7-185.5c-2.3-8.5-11.1-13.6-19.6-11.3L151 133.3l24.8 92.7-61.8 16.5-24.8-92.7-77.3 20.7C3.4 172.8-1.7 181.6.6 190.1l49.6 185.5zM384 0c-17.7 0-32 14.3-32 32v323.6L5.9 450c-4.3 1.2-6.8 5.6-5.6 9.8l12.6 46.3c1.2 4.3 5.6 6.8 9.8 5.6l393.7-107.4C418.8 464.1 467.6 512 528 512c61.9 0 112-50.1 112-112V0H384zm144 448c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; +var faTruckMoving = { prefix: 'fas', iconName: 'truck-moving', icon: [640, 512, [], "f4df", "M621.3 237.3l-58.5-58.5c-12-12-28.3-18.7-45.3-18.7H480V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v336c0 44.2 35.8 80 80 80 26.3 0 49.4-12.9 64-32.4 14.6 19.6 37.7 32.4 64 32.4 44.2 0 80-35.8 80-80 0-5.5-.6-10.8-1.6-16h163.2c-1.1 5.2-1.6 10.5-1.6 16 0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H624c8.8 0 16-7.2 16-16v-85.5c0-17-6.7-33.2-18.7-45.2zM80 432c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm128 0c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm272-224h37.5c4.3 0 8.3 1.7 11.3 4.7l43.3 43.3H480v-48zm48 224c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32z"] }; +var faTshirt = { prefix: 'fas', iconName: 'tshirt', icon: [640, 512, [], "f553", "M631.2 96.5L436.5 0C416.4 27.8 371.9 47.2 320 47.2S223.6 27.8 203.5 0L8.8 96.5c-7.9 4-11.1 13.6-7.2 21.5l57.2 114.5c4 7.9 13.6 11.1 21.5 7.2l56.6-27.7c10.6-5.2 23 2.5 23 14.4V480c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V226.3c0-11.8 12.4-19.6 23-14.4l56.6 27.7c7.9 4 17.5.8 21.5-7.2L638.3 118c4-7.9.8-17.6-7.1-21.5z"] }; +var faTty = { prefix: 'fas', iconName: 'tty', icon: [512, 512, [], "f1e4", "M5.37 103.822c138.532-138.532 362.936-138.326 501.262 0 6.078 6.078 7.074 15.496 2.583 22.681l-43.214 69.138a18.332 18.332 0 0 1-22.356 7.305l-86.422-34.569a18.335 18.335 0 0 1-11.434-18.846L351.741 90c-62.145-22.454-130.636-21.986-191.483 0l5.953 59.532a18.331 18.331 0 0 1-11.434 18.846l-86.423 34.568a18.334 18.334 0 0 1-22.356-7.305L2.787 126.502a18.333 18.333 0 0 1 2.583-22.68zM96 308v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H92c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zM96 500v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H140c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"] }; +var faTv = { prefix: 'fas', iconName: 'tv', icon: [640, 512, [], "f26c", "M592 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h245.1v32h-160c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32-14.3 32-32s-14.3-32-32-32h-160v-32H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h512v288z"] }; +var faUmbrella = { prefix: 'fas', iconName: 'umbrella', icon: [576, 512, [], "f0e9", "M557.011 267.631c-51.432-45.217-107.572-43.698-158.567 30.731-5.298 7.861-14.906 7.165-19.736 0-2.483-3.624-32.218-60.808-90.708-60.808-45.766 0-70.542 31.378-90.709 60.808-4.829 7.165-14.436 7.861-19.734 0-50.904-74.285-106.613-76.406-158.567-30.731-10.21 8.264-20.912-1.109-18.696-9.481C32.146 134.573 158.516 64.612 288.001 64.612c128.793 0 256.546 69.961 287.706 193.538 2.206 8.322-8.426 17.793-18.696 9.481zM256 261.001V416c0 17.645-14.355 32-32 32s-32-14.355-32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 52.935 43.065 96 96 96s96-43.065 96-96V261.288c-21.836-10.806-45.425-9.737-64-.287zm64-211.007V32c0-17.673-14.327-32-32-32s-32 14.327-32 32v17.987a372.105 372.105 0 0 1 64 .007z"] }; +var faUnderline = { prefix: 'fas', iconName: 'underline', icon: [448, 512, [], "f0cd", "M224.264 388.24c-91.669 0-156.603-51.165-156.603-151.392V64H39.37c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h137.39c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.813v172.848c0 53.699 28.314 79.444 76.317 79.444 46.966 0 75.796-25.434 75.796-79.965V64h-28.291c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h136.868c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.291v172.848c0 99.405-64.881 151.392-156.082 151.392zM16 448h416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16z"] }; +var faUndo = { prefix: 'fas', iconName: 'undo', icon: [512, 512, [], "f0e2", "M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z"] }; +var faUndoAlt = { prefix: 'fas', iconName: 'undo-alt', icon: [512, 512, [], "f2ea", "M255.545 8c-66.269.119-126.438 26.233-170.86 68.685L48.971 40.971C33.851 25.851 8 36.559 8 57.941V192c0 13.255 10.745 24 24 24h134.059c21.382 0 32.09-25.851 16.971-40.971l-41.75-41.75c30.864-28.899 70.801-44.907 113.23-45.273 92.398-.798 170.283 73.977 169.484 169.442C423.236 348.009 349.816 424 256 424c-41.127 0-79.997-14.678-110.63-41.556-4.743-4.161-11.906-3.908-16.368.553L89.34 422.659c-4.872 4.872-4.631 12.815.482 17.433C133.798 479.813 192.074 504 256 504c136.966 0 247.999-111.033 248-247.998C504.001 119.193 392.354 7.755 255.545 8z"] }; +var faUniversalAccess = { prefix: 'fas', iconName: 'universal-access', icon: [512, 512, [], "f29a", "M256 48c114.953 0 208 93.029 208 208 0 114.953-93.029 208-208 208-114.953 0-208-93.029-208-208 0-114.953 93.029-208 208-208m0-40C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 56C149.961 64 64 149.961 64 256s85.961 192 192 192 192-85.961 192-192S362.039 64 256 64zm0 44c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36zm117.741 98.023c-28.712 6.779-55.511 12.748-82.14 15.807.851 101.023 12.306 123.052 25.037 155.621 3.617 9.26-.957 19.698-10.217 23.315-9.261 3.617-19.699-.957-23.316-10.217-8.705-22.308-17.086-40.636-22.261-78.549h-9.686c-5.167 37.851-13.534 56.208-22.262 78.549-3.615 9.255-14.05 13.836-23.315 10.217-9.26-3.617-13.834-14.056-10.217-23.315 12.713-32.541 24.185-54.541 25.037-155.621-26.629-3.058-53.428-9.027-82.141-15.807-8.6-2.031-13.926-10.648-11.895-19.249s10.647-13.926 19.249-11.895c96.686 22.829 124.283 22.783 220.775 0 8.599-2.03 17.218 3.294 19.249 11.895 2.029 8.601-3.297 17.219-11.897 19.249z"] }; +var faUniversity = { prefix: 'fas', iconName: 'university', icon: [512, 512, [], "f19c", "M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z"] }; +var faUnlink = { prefix: 'fas', iconName: 'unlink', icon: [512, 512, [], "f127", "M304.083 405.907c4.686 4.686 4.686 12.284 0 16.971l-44.674 44.674c-59.263 59.262-155.693 59.266-214.961 0-59.264-59.265-59.264-155.696 0-214.96l44.675-44.675c4.686-4.686 12.284-4.686 16.971 0l39.598 39.598c4.686 4.686 4.686 12.284 0 16.971l-44.675 44.674c-28.072 28.073-28.072 73.75 0 101.823 28.072 28.072 73.75 28.073 101.824 0l44.674-44.674c4.686-4.686 12.284-4.686 16.971 0l39.597 39.598zm-56.568-260.216c4.686 4.686 12.284 4.686 16.971 0l44.674-44.674c28.072-28.075 73.75-28.073 101.824 0 28.072 28.073 28.072 73.75 0 101.823l-44.675 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.598 39.598c4.686 4.686 12.284 4.686 16.971 0l44.675-44.675c59.265-59.265 59.265-155.695 0-214.96-59.266-59.264-155.695-59.264-214.961 0l-44.674 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.597 39.598zm234.828 359.28l22.627-22.627c9.373-9.373 9.373-24.569 0-33.941L63.598 7.029c-9.373-9.373-24.569-9.373-33.941 0L7.029 29.657c-9.373 9.373-9.373 24.569 0 33.941l441.373 441.373c9.373 9.372 24.569 9.372 33.941 0z"] }; +var faUnlock = { prefix: 'fas', iconName: 'unlock', icon: [448, 512, [], "f09c", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z"] }; +var faUnlockAlt = { prefix: 'fas', iconName: 'unlock-alt', icon: [448, 512, [], "f13e", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zM264 408c0 22.1-17.9 40-40 40s-40-17.9-40-40v-48c0-22.1 17.9-40 40-40s40 17.9 40 40v48z"] }; +var faUpload = { prefix: 'fas', iconName: 'upload', icon: [512, 512, [], "f093", "M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"] }; +var faUser = { prefix: 'fas', iconName: 'user', icon: [448, 512, [], "f007", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; +var faUserAlt = { prefix: 'fas', iconName: 'user-alt', icon: [512, 512, [], "f406", "M256 288c79.5 0 144-64.5 144-144S335.5 0 256 0 112 64.5 112 144s64.5 144 144 144zm128 32h-55.1c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16H128C57.3 320 0 377.3 0 448v16c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-16c0-70.7-57.3-128-128-128z"] }; +var faUserAltSlash = { prefix: 'fas', iconName: 'user-alt-slash', icon: [640, 512, [], "f4fa", "M633.8 458.1L389.6 269.3C433.8 244.7 464 198.1 464 144 464 64.5 399.5 0 320 0c-67.1 0-123 46.1-139 108.2L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM198.4 320C124.2 320 64 380.2 64 454.4v9.6c0 26.5 21.5 48 48 48h382.2L245.8 320h-47.4z"] }; +var faUserAstronaut = { prefix: 'fas', iconName: 'user-astronaut', icon: [448, 512, [], "f4fb", "M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z"] }; +var faUserCheck = { prefix: 'fas', iconName: 'user-check', icon: [640, 512, [], "f4fc", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4zm323-128.4l-27.8-28.1c-4.6-4.7-12.1-4.7-16.8-.1l-104.8 104-45.5-45.8c-4.6-4.7-12.1-4.7-16.8-.1l-28.1 27.9c-4.7 4.6-4.7 12.1-.1 16.8l81.7 82.3c4.6 4.7 12.1 4.7 16.8.1l141.3-140.2c4.6-4.7 4.7-12.2.1-16.8z"] }; +var faUserCircle = { prefix: 'fas', iconName: 'user-circle', icon: [496, 512, [], "f2bd", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 96c48.6 0 88 39.4 88 88s-39.4 88-88 88-88-39.4-88-88 39.4-88 88-88zm0 344c-58.7 0-111.3-26.6-146.5-68.2 18.8-35.4 55.6-59.8 98.5-59.8 2.4 0 4.8.4 7.1 1.1 13 4.2 26.6 6.9 40.9 6.9 14.3 0 28-2.7 40.9-6.9 2.3-.7 4.7-1.1 7.1-1.1 42.9 0 79.7 24.4 98.5 59.8C359.3 421.4 306.7 448 248 448z"] }; +var faUserClock = { prefix: 'fas', iconName: 'user-clock', icon: [640, 512, [], "f4fd", "M496 224c-79.6 0-144 64.4-144 144s64.4 144 144 144 144-64.4 144-144-64.4-144-144-144zm64 150.3c0 5.3-4.4 9.7-9.7 9.7h-60.6c-5.3 0-9.7-4.4-9.7-9.7v-76.6c0-5.3 4.4-9.7 9.7-9.7h12.6c5.3 0 9.7 4.4 9.7 9.7V352h38.3c5.3 0 9.7 4.4 9.7 9.7v12.6zM320 368c0-27.8 6.7-54.1 18.2-77.5-8-1.5-16.2-2.5-24.6-2.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h347.1c-45.3-31.9-75.1-84.5-75.1-144zm-96-112c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128z"] }; +var faUserCog = { prefix: 'fas', iconName: 'user-cog', icon: [640, 512, [], "f4fe", "M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z"] }; +var faUserEdit = { prefix: 'fas', iconName: 'user-edit', icon: [640, 512, [], "f4ff", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h274.9c-2.4-6.8-3.4-14-2.6-21.3l6.8-60.9 1.2-11.1 7.9-7.9 77.3-77.3c-24.5-27.7-60-45.5-99.9-45.5zm45.3 145.3l-6.8 61c-1.1 10.2 7.5 18.8 17.6 17.6l60.9-6.8 137.9-137.9-71.7-71.7-137.9 137.8zM633 268.9L595.1 231c-9.3-9.3-24.5-9.3-33.8 0l-37.8 37.8-4.1 4.1 71.8 71.7 41.8-41.8c9.3-9.4 9.3-24.5 0-33.9z"] }; +var faUserFriends = { prefix: 'fas', iconName: 'user-friends', icon: [640, 512, [], "f500", "M192 256c61.9 0 112-50.1 112-112S253.9 32 192 32 80 82.1 80 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C51.6 288 0 339.6 0 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zM480 256c53 0 96-43 96-96s-43-96-96-96-96 43-96 96 43 96 96 96zm48 32h-3.8c-13.9 4.8-28.6 8-44.2 8s-30.3-3.2-44.2-8H432c-20.4 0-39.2 5.9-55.7 15.4 24.4 26.3 39.7 61.2 39.7 99.8v38.4c0 2.2-.5 4.3-.6 6.4H592c26.5 0 48-21.5 48-48 0-61.9-50.1-112-112-112z"] }; +var faUserGraduate = { prefix: 'fas', iconName: 'user-graduate', icon: [448, 512, [], "f501", "M319.4 320.6L224 416l-95.4-95.4C57.1 323.7 0 382.2 0 454.4v9.6c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-9.6c0-72.2-57.1-130.7-128.6-133.8zM13.6 79.8l6.4 1.5v58.4c-7 4.2-12 11.5-12 20.3 0 8.4 4.6 15.4 11.1 19.7L3.5 242c-1.7 6.9 2.1 14 7.6 14h41.8c5.5 0 9.3-7.1 7.6-14l-15.6-62.3C51.4 175.4 56 168.4 56 160c0-8.8-5-16.1-12-20.3V87.1l66 15.9c-8.6 17.2-14 36.4-14 57 0 70.7 57.3 128 128 128s128-57.3 128-128c0-20.6-5.3-39.8-14-57l96.3-23.2c18.2-4.4 18.2-27.1 0-31.5l-190.4-46c-13-3.1-26.7-3.1-39.7 0L13.6 48.2c-18.1 4.4-18.1 27.2 0 31.6z"] }; +var faUserLock = { prefix: 'fas', iconName: 'user-lock', icon: [640, 512, [], "f502", "M320 320c0-11.1 3.1-21.4 8.1-30.5-4.8-.5-9.5-1.5-14.5-1.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h280.9c-5.5-9.5-8.9-20.3-8.9-32V320zm-96-64c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm384 32h-32v-48c0-44.2-35.8-80-80-80s-80 35.8-80 80v48h-32c-17.7 0-32 14.3-32 32v160c0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32V320c0-17.7-14.3-32-32-32zm-80 0h-64v-48c0-17.6 14.4-32 32-32s32 14.4 32 32v48z"] }; +var faUserMd = { prefix: 'fas', iconName: 'user-md', icon: [448, 512, [], "f0f0", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zM104 424c0 13.3 10.7 24 24 24s24-10.7 24-24-10.7-24-24-24-24 10.7-24 24zm216-135.4v49c36.5 7.4 64 39.8 64 78.4v41.7c0 7.6-5.4 14.2-12.9 15.7l-32.2 6.4c-4.3.9-8.5-1.9-9.4-6.3l-3.1-15.7c-.9-4.3 1.9-8.6 6.3-9.4l19.3-3.9V416c0-62.8-96-65.1-96 1.9v26.7l19.3 3.9c4.3.9 7.1 5.1 6.3 9.4l-3.1 15.7c-.9 4.3-5.1 7.1-9.4 6.3l-31.2-4.2c-7.9-1.1-13.8-7.8-13.8-15.9V416c0-38.6 27.5-70.9 64-78.4v-45.2c-2.2.7-4.4 1.1-6.6 1.9-18 6.3-37.3 9.8-57.4 9.8s-39.4-3.5-57.4-9.8c-7.4-2.6-14.9-4.2-22.6-5.2v81.6c23.1 6.9 40 28.1 40 53.4 0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.3 16.9-46.5 40-53.4v-80.4C48.5 301 0 355.8 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-72-56.8-130.3-128-133.8z"] }; +var faUserMinus = { prefix: 'fas', iconName: 'user-minus', icon: [640, 512, [], "f503", "M624 208H432c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; +var faUserNinja = { prefix: 'fas', iconName: 'user-ninja', icon: [448, 512, [], "f504", "M325.4 289.2L224 390.6 122.6 289.2C54 295.3 0 352.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-70.2-54-127.1-122.6-133.2zM32 192c27.3 0 51.8-11.5 69.2-29.7 15.1 53.9 64 93.7 122.8 93.7 70.7 0 128-57.3 128-128S294.7 0 224 0c-50.4 0-93.6 29.4-114.5 71.8C92.1 47.8 64 32 32 32c0 33.4 17.1 62.8 43.1 80-26 17.2-43.1 46.6-43.1 80zm144-96h96c17.7 0 32 14.3 32 32H144c0-17.7 14.3-32 32-32z"] }; +var faUserPlus = { prefix: 'fas', iconName: 'user-plus', icon: [640, 512, [], "f234", "M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; +var faUserSecret = { prefix: 'fas', iconName: 'user-secret', icon: [448, 512, [], "f21b", "M383.9 308.3l23.9-62.6c4-10.5-3.7-21.7-15-21.7h-58.5c11-18.9 17.8-40.6 17.8-64v-.3c39.2-7.8 64-19.1 64-31.7 0-13.3-27.3-25.1-70.1-33-9.2-32.8-27-65.8-40.6-82.8-9.5-11.9-25.9-15.6-39.5-8.8l-27.6 13.8c-9 4.5-19.6 4.5-28.6 0L182.1 3.4c-13.6-6.8-30-3.1-39.5 8.8-13.5 17-31.4 50-40.6 82.8-42.7 7.9-70 19.7-70 33 0 12.6 24.8 23.9 64 31.7v.3c0 23.4 6.8 45.1 17.8 64H56.3c-11.5 0-19.2 11.7-14.7 22.3l25.8 60.2C27.3 329.8 0 372.7 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-48.4-25.8-90.4-64.1-114.1zM176 480l-41.6-192 49.6 32 24 40-32 120zm96 0l-32-120 24-40 49.6-32L272 480zm41.7-298.5c-3.9 11.9-7 24.6-16.5 33.4-10.1 9.3-48 22.4-64-25-2.8-8.4-15.4-8.4-18.3 0-17 50.2-56 32.4-64 25-9.5-8.8-12.7-21.5-16.5-33.4-.8-2.5-6.3-5.7-6.3-5.8v-10.8c28.3 3.6 61 5.8 96 5.8s67.7-2.1 96-5.8v10.8c-.1.1-5.6 3.2-6.4 5.8z"] }; +var faUserShield = { prefix: 'fas', iconName: 'user-shield', icon: [640, 512, [], "f505", "M622.3 271.1l-115.2-45c-4.1-1.6-12.6-3.7-22.2 0l-115.2 45c-10.7 4.2-17.7 14-17.7 24.9 0 111.6 68.7 188.8 132.9 213.9 9.6 3.7 18 1.6 22.2 0C558.4 489.9 640 420.5 640 296c0-10.9-7-20.7-17.7-24.9zM496 462.4V273.3l95.5 37.3c-5.6 87.1-60.9 135.4-95.5 151.8zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm96 40c0-2.5.8-4.8 1.1-7.2-2.5-.1-4.9-.8-7.5-.8h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c6.8 0 13.3-1.5 19.2-4-54-42.9-99.2-116.7-99.2-212z"] }; +var faUserSlash = { prefix: 'fas', iconName: 'user-slash', icon: [640, 512, [], "f506", "M633.8 458.1L362.3 248.3C412.1 230.7 448 183.8 448 128 448 57.3 390.7 0 320 0c-67.1 0-121.5 51.8-126.9 117.4L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM96 422.4V464c0 26.5 21.5 48 48 48h350.2L207.4 290.3C144.2 301.3 96 356 96 422.4z"] }; +var faUserTag = { prefix: 'fas', iconName: 'user-tag', icon: [640, 512, [], "f507", "M630.6 364.9l-90.3-90.2c-12-12-28.3-18.7-45.3-18.7h-79.3c-17.7 0-32 14.3-32 32v79.2c0 17 6.7 33.2 18.7 45.2l90.3 90.2c12.5 12.5 32.8 12.5 45.3 0l92.5-92.5c12.6-12.5 12.6-32.7.1-45.2zm-182.8-21c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24c0 13.2-10.7 24-24 24zm-223.8-88c70.7 0 128-57.3 128-128C352 57.3 294.7 0 224 0S96 57.3 96 128c0 70.6 57.3 127.9 128 127.9zm127.8 111.2V294c-12.2-3.6-24.9-6.2-38.2-6.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 287.9 0 348.1 0 422.3v41.6c0 26.5 21.5 48 48 48h352c15.5 0 29.1-7.5 37.9-18.9l-58-58c-18.1-18.1-28.1-42.2-28.1-67.9z"] }; +var faUserTie = { prefix: 'fas', iconName: 'user-tie', icon: [448, 512, [], "f508", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm95.8 32.6L272 480l-32-136 32-56h-96l32 56-32 136-47.8-191.4C56.9 292 0 350.3 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-72.1-56.9-130.4-128.2-133.8z"] }; +var faUserTimes = { prefix: 'fas', iconName: 'user-times', icon: [640, 512, [], "f235", "M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; +var faUsers = { prefix: 'fas', iconName: 'users', icon: [640, 512, [], "f0c0", "M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"] }; +var faUsersCog = { prefix: 'fas', iconName: 'users-cog', icon: [640, 512, [], "f509", "M610.5 341.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 368.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm224 32c1.9 0 3.7-.5 5.6-.6 8.3-21.7 20.5-42.1 36.3-59.2 7.4-8 17.9-12.6 28.9-12.6 6.9 0 13.7 1.8 19.6 5.3l7.9 4.6c.8-.5 1.6-.9 2.4-1.4 7-14.6 11.2-30.8 11.2-48 0-61.9-50.1-112-112-112S208 82.1 208 144c0 61.9 50.1 112 112 112zm105.2 194.5c-2.3-1.2-4.6-2.6-6.8-3.9-8.2 4.8-15.3 9.8-27.5 9.8-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-10.7-34.5 24.9-49.7 25.8-50.3-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-3.8-2.2-7-5-9.8-8.1-3.3.2-6.5.6-9.8.6-24.6 0-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h255.4c-3.7-6-6.2-12.8-6.2-20.3v-9.2zM173.1 274.6C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"] }; +var faUtensilSpoon = { prefix: 'fas', iconName: 'utensil-spoon', icon: [512, 512, [], "f2e5", "M480.1 31.9c-55-55.1-164.9-34.5-227.8 28.5-49.3 49.3-55.1 110-28.8 160.4L9 413.2c-11.6 10.5-12.1 28.5-1 39.5L59.3 504c11 11 29.1 10.5 39.5-1.1l192.4-214.4c50.4 26.3 111.1 20.5 160.4-28.8 63-62.9 83.6-172.8 28.5-227.8z"] }; +var faUtensils = { prefix: 'fas', iconName: 'utensils', icon: [416, 512, [], "f2e7", "M207.9 15.2c.8 4.7 16.1 94.5 16.1 128.8 0 52.3-27.8 89.6-68.9 104.6L168 486.7c.7 13.7-10.2 25.3-24 25.3H80c-13.7 0-24.7-11.5-24-25.3l12.9-238.1C27.7 233.6 0 196.2 0 144 0 109.6 15.3 19.9 16.1 15.2 19.3-5.1 61.4-5.4 64 16.3v141.2c1.3 3.4 15.1 3.2 16 0 1.4-25.3 7.9-139.2 8-141.8 3.3-20.8 44.7-20.8 47.9 0 .2 2.7 6.6 116.5 8 141.8.9 3.2 14.8 3.4 16 0V16.3c2.6-21.6 44.8-21.4 48-1.1zm119.2 285.7l-15 185.1c-1.2 14 9.9 26 23.9 26h56c13.3 0 24-10.7 24-24V24c0-13.2-10.7-24-24-24-82.5 0-221.4 178.5-64.9 300.9z"] }; +var faVenus = { prefix: 'fas', iconName: 'venus', icon: [288, 512, [], "f221", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z"] }; +var faVenusDouble = { prefix: 'fas', iconName: 'venus-double', icon: [512, 512, [], "f226", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80zm336 140.4V368h36c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-36v36c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-36h-36c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h36v-51.6c-21.2-4.8-40.6-14.3-57.2-27.3 14-16.7 25-36 32.1-57.1 14.5 14.8 34.7 24 57.1 24 44.1 0 80-35.9 80-80s-35.9-80-80-80c-22.3 0-42.6 9.2-57.1 24-7.1-21.1-18-40.4-32.1-57.1C303.4 43.6 334.3 32 368 32c79.5 0 144 64.5 144 144 0 68.5-47.9 125.9-112 140.4z"] }; +var faVenusMars = { prefix: 'fas', iconName: 'venus-mars', icon: [576, 512, [], "f228", "M564 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C422.5 72.1 396.2 64 368 64c-33.7 0-64.6 11.6-89.2 30.9 14 16.7 25 36 32.1 57.1 14.5-14.8 34.7-24 57.1-24 44.1 0 80 35.9 80 80s-35.9 80-80 80c-22.3 0-42.6-9.2-57.1-24-7.1 21.1-18 40.4-32.1 57.1 24.5 19.4 55.5 30.9 89.2 30.9 79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 64C64.5 64 0 128.5 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.6 112-71.9 112-140.4 0-79.5-64.5-144-144-144zm0 224c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faVial = { prefix: 'fas', iconName: 'vial', icon: [480, 512, [], "f492", "M477.7 186.1L309.5 18.3c-3.1-3.1-8.2-3.1-11.3 0l-34 33.9c-3.1 3.1-3.1 8.2 0 11.3l11.2 11.1L33 316.5c-38.8 38.7-45.1 102-9.4 143.5 20.6 24 49.5 36 78.4 35.9 26.4 0 52.8-10 72.9-30.1l246.3-245.7 11.2 11.1c3.1 3.1 8.2 3.1 11.3 0l34-33.9c3.1-3 3.1-8.1 0-11.2zM318 256H161l148-147.7 78.5 78.3L318 256z"] }; +var faVials = { prefix: 'fas', iconName: 'vials', icon: [640, 512, [], "f493", "M72 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H72c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64zm480 384H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM360 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64z"] }; +var faVideo = { prefix: 'fas', iconName: 'video', icon: [576, 512, [], "f03d", "M336.2 64H47.8C21.4 64 0 85.4 0 111.8v288.4C0 426.6 21.4 448 47.8 448h288.4c26.4 0 47.8-21.4 47.8-47.8V111.8c0-26.4-21.4-47.8-47.8-47.8zm189.4 37.7L416 177.3v157.4l109.6 75.5c21.2 14.6 50.4-.3 50.4-25.8V127.5c0-25.4-29.1-40.4-50.4-25.8z"] }; +var faVideoSlash = { prefix: 'fas', iconName: 'video-slash', icon: [640, 512, [], "f4e2", "M633.8 458.1l-55-42.5c15.4-1.4 29.2-13.7 29.2-31.1v-257c0-25.5-29.1-40.4-50.4-25.8L448 177.3v137.2l-32-24.7v-178c0-26.4-21.4-47.8-47.8-47.8H123.9L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4L42.7 82 416 370.6l178.5 138c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.5-6.9 4.2-17-2.8-22.4zM32 400.2c0 26.4 21.4 47.8 47.8 47.8h288.4c11.2 0 21.4-4 29.6-10.5L32 154.7v245.5z"] }; +var faVolleyballBall = { prefix: 'fas', iconName: 'volleyball-ball', icon: [495, 512, [], "f45f", "M223.3 243.4c-.9-37-8.6-72.8-22.7-105.7-90.8 42.4-157.5 122.4-180.3 216.8 13.4 30.8 32.9 58.3 56.9 81.1 22.7-79.2 74.2-147.8 146.1-192.2zM186.4 109c-15-26.4-34.5-50.1-57.4-70.7C38 88.1-15.8 191.2 4 300.5c33.4-83.1 98.4-152 182.4-191.5zM374 274.1c8.6-99.8-27.3-197.5-97.5-264.4-14.7-1.7-51.6-5.5-98.9 8.5 57.3 59.3 91 138.2 93.5 222.7 32.5 17.7 67.3 29 102.9 33.2zm-124.7 9.5c-31.6 19.3-58.7 43.9-80.2 72.6 82 57.3 184.5 75.1 277.5 47.8 19.7-26.4 34.2-56.8 42.2-89.9-26.6 6.6-53.7 10.4-80.9 10.4-54.6-.1-108.9-14.1-158.6-40.9zM151 383.3c-15.2 26-25.7 54.4-32.1 84.2 37.6 23 81.7 36.5 129.1 36.5 61 0 116.7-22.1 159.9-58.6C295 461.5 204.6 420.6 151 383.3zM331.3 22.7c55.3 70.4 82.5 161.2 74.6 253.6 30.3.2 60.5-4.8 89.7-14.2 0-2 .3-4 .3-6 0-107.8-68.7-199.1-164.6-233.4z"] }; +var faVolumeDown = { prefix: 'fas', iconName: 'volume-down', icon: [384, 512, [], "f027", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zM384 256c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z"] }; +var faVolumeOff = { prefix: 'fas', iconName: 'volume-off', icon: [256, 512, [], "f026", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971z"] }; +var faVolumeUp = { prefix: 'fas', iconName: 'volume-up', icon: [576, 512, [], "f028", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zm182.056-77.876C422.982.92 403.283 5.668 394.061 20.745c-9.221 15.077-4.473 34.774 10.604 43.995C468.967 104.063 512 174.983 512 256c0 73.431-36.077 142.292-96.507 184.206-14.522 10.072-18.129 30.01-8.057 44.532 10.076 14.528 30.016 18.126 44.531 8.057C529.633 438.927 576 350.406 576 256c0-103.244-54.579-194.877-137.944-245.859zM480 256c0-68.547-36.15-129.777-91.957-163.901-15.076-9.22-34.774-4.471-43.994 10.607-9.22 15.078-4.471 34.774 10.607 43.994C393.067 170.188 416 211.048 416 256c0 41.964-20.62 81.319-55.158 105.276-14.521 10.073-18.128 30.01-8.056 44.532 6.216 8.96 16.185 13.765 26.322 13.765a31.862 31.862 0 0 0 18.21-5.709C449.091 377.953 480 318.938 480 256zm-96 0c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z"] }; +var faWalking = { prefix: 'fas', iconName: 'walking', icon: [320, 512, [], "f554", "M208 96c26.5 0 48-21.5 48-48S234.5 0 208 0s-48 21.5-48 48 21.5 48 48 48zm94.5 149.1l-23.3-11.8-9.7-29.4c-14.7-44.6-55.7-75.8-102.2-75.9-36-.1-55.9 10.1-93.3 25.2-21.6 8.7-39.3 25.2-49.7 46.2L17.6 213c-7.8 15.8-1.5 35 14.2 42.9 15.6 7.9 34.6 1.5 42.5-14.3L81 228c3.5-7 9.3-12.5 16.5-15.4l26.8-10.8-15.2 60.7c-5.2 20.8.4 42.9 14.9 58.8l59.9 65.4c7.2 7.9 12.3 17.4 14.9 27.7l18.3 73.3c4.3 17.1 21.7 27.6 38.8 23.3 17.1-4.3 27.6-21.7 23.3-38.8l-22.2-89c-2.6-10.3-7.7-19.9-14.9-27.7l-45.5-49.7 17.2-68.7 5.5 16.5c5.3 16.1 16.7 29.4 31.7 37l23.3 11.8c15.6 7.9 34.6 1.5 42.5-14.3 7.7-15.7 1.4-35.1-14.3-43zM73.6 385.8c-3.2 8.1-8 15.4-14.2 21.5l-50 50.1c-12.5 12.5-12.5 32.8 0 45.3s32.7 12.5 45.2 0l59.4-59.4c6.1-6.1 10.9-13.4 14.2-21.5l13.5-33.8c-55.3-60.3-38.7-41.8-47.4-53.7l-20.7 51.5z"] }; +var faWallet = { prefix: 'fas', iconName: 'wallet', icon: [512, 512, [], "f555", "M461.2 128H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h384c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h397.2c28.02 0 50.8-21.53 50.8-48V176c0-26.47-22.78-48-50.8-48zM416 336c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faWarehouse = { prefix: 'fas', iconName: 'warehouse', icon: [640, 512, [], "f494", "M504 352H136.4c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0 96H136.1c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0-192H136.6c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm106.5-139L338.4 3.7a48.15 48.15 0 0 0-36.9 0L29.5 117C11.7 124.5 0 141.9 0 161.3V504c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V256c0-17.6 14.6-32 32.6-32h382.8c18 0 32.6 14.4 32.6 32v248c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V161.3c0-19.4-11.7-36.8-29.5-44.3z"] }; +var faWeight = { prefix: 'fas', iconName: 'weight', icon: [512, 512, [], "f496", "M448 64h-26c16.4 28.3 26 61 26 96 0 105.9-86.1 192-192 192S64 265.9 64 160c0-35 9.6-67.7 26-96H64C28.7 64 0 92.7 0 128v320c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64zM256 320c88.4 0 160-71.6 160-160S344.4 0 256 0 96 71.6 96 160s71.6 160 160 160zm-.3-151.9l33.6-78.4c3.5-8.2 12.9-11.9 21-8.4s11.9 12.9 8.4 21L285 180.9c6.7 7.1 10.9 16.6 10.9 27.1 0 22.1-17.9 40-40 40s-40-17.9-40-40c.1-22 17.9-39.8 39.8-39.9z"] }; +var faWheelchair = { prefix: 'fas', iconName: 'wheelchair', icon: [512, 512, [], "f193", "M496.101 385.669l14.227 28.663c3.929 7.915.697 17.516-7.218 21.445l-65.465 32.886c-16.049 7.967-35.556 1.194-43.189-15.055L331.679 320H192c-15.925 0-29.426-11.71-31.679-27.475C126.433 55.308 128.38 70.044 128 64c0-36.358 30.318-65.635 67.052-63.929 33.271 1.545 60.048 28.905 60.925 62.201.868 32.933-23.152 60.423-54.608 65.039l4.67 32.69H336c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H215.182l4.572 32H352a32 32 0 0 1 28.962 18.392L438.477 396.8l36.178-18.349c7.915-3.929 17.517-.697 21.446 7.218zM311.358 352h-24.506c-7.788 54.204-54.528 96-110.852 96-61.757 0-112-50.243-112-112 0-41.505 22.694-77.809 56.324-97.156-3.712-25.965-6.844-47.86-9.488-66.333C45.956 198.464 0 261.963 0 336c0 97.047 78.953 176 176 176 71.87 0 133.806-43.308 161.11-105.192L311.358 352z"] }; +var faWifi = { prefix: 'fas', iconName: 'wifi', icon: [640, 512, [], "f1eb", "M384 416c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm136.659-124.443c6.465-6.465 6.245-17.065-.564-23.167-113.793-101.985-286.526-101.869-400.19 0-6.809 6.102-7.029 16.702-.564 23.167l34.006 34.006c5.927 5.927 15.464 6.32 21.769.796 82.88-72.609 207.074-72.447 289.768 0 6.305 5.524 15.842 5.132 21.769-.796l34.006-34.006zm112.11-113.718c6.385-6.385 6.254-16.816-.35-22.973-175.768-163.86-449.134-163.8-624.837 0-6.604 6.157-6.735 16.589-.35 22.973l33.966 33.966c6.095 6.095 15.891 6.231 22.224.383 144.763-133.668 368.356-133.702 513.156 0 6.333 5.848 16.129 5.712 22.224-.383l33.967-33.966z"] }; +var faWindowClose = { prefix: 'fas', iconName: 'window-close', icon: [512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-83.6 290.5c4.8 4.8 4.8 12.6 0 17.4l-40.5 40.5c-4.8 4.8-12.6 4.8-17.4 0L256 313.3l-66.5 67.1c-4.8 4.8-12.6 4.8-17.4 0l-40.5-40.5c-4.8-4.8-4.8-12.6 0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6 0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1 66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8 4.8 12.6 0 17.4L313.3 256l67.1 66.5z"] }; +var faWindowMaximize = { prefix: 'fas', iconName: 'window-maximize', icon: [512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16 160H64v-84c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12v84z"] }; +var faWindowMinimize = { prefix: 'fas', iconName: 'window-minimize', icon: [512, 512, [], "f2d1", "M464 352H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48z"] }; +var faWindowRestore = { prefix: 'fas', iconName: 'window-restore', icon: [512, 512, [], "f2d2", "M512 48v288c0 26.5-21.5 48-48 48h-48V176c0-44.1-35.9-80-80-80H128V48c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zM384 176v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zm-68 28c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v52h252v-52z"] }; +var faWineGlass = { prefix: 'fas', iconName: 'wine-glass', icon: [288, 512, [], "f4e3", "M287.4 192.7l-16-178.1C270.7 6.3 263.9 0 255.7 0H32.3c-8.2 0-15 6.3-15.7 14.6L.6 192.7c-7.2 80 50.7 148.9 127.4 157.6V480H74.1c-24.5 0-33.2 32-20 32h179.8c13.1 0 4.5-32-20-32H160V350.3c76.7-8.8 134.6-77.6 127.4-157.6zM226.2 48l7.2 80H54.6l7.2-80h164.4z"] }; +var faWonSign = { prefix: 'fas', iconName: 'won-sign', icon: [576, 512, [], "f159", "M564 192c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-48.028l18.572-80.61c1.732-7.518-3.978-14.694-11.693-14.694h-46.107a11.998 11.998 0 0 0-11.736 9.5L450.73 128H340.839l-19.725-85.987a12 12 0 0 0-11.696-9.317H265.43a12 12 0 0 0-11.687 9.277L233.696 128H124.975L107.5 42.299a12 12 0 0 0-11.758-9.602H53.628c-7.686 0-13.39 7.124-11.709 14.624L60 128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h62.342l7.171 32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h83.856l40.927 182.624A12 12 0 0 0 148.492 480h56.767c5.583 0 10.428-3.85 11.689-9.288L259.335 288h55.086l42.386 182.712A12 12 0 0 0 368.496 480h56.826a12 12 0 0 0 11.694-9.306L479.108 288H564c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-70.146l7.373-32H564zm-425.976 0h80.757l-7.457 32h-66.776l-6.524-32zm45.796 150.029c-6.194 25.831-6.758 47.25-7.321 47.25h-1.126s-1.689-22.05-6.758-47.25L157.599 288h38.812l-12.591 54.029zM274.182 224l1.996-8.602c1.856-7.962 3.457-15.968 4.803-23.398h11.794c1.347 7.43 2.947 15.436 4.803 23.398l1.996 8.602h-25.392zm130.959 118.029c-5.068 25.2-6.758 47.25-6.758 47.25h-1.126c-.563 0-1.126-21.42-7.321-47.25L377.542 288h39.107l-11.508 54.029zM430.281 224h-67.42l-7.34-32h81.577l-6.817 32z"] }; +var faWrench = { prefix: 'fas', iconName: 'wrench', icon: [512, 512, [], "f0ad", "M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"] }; +var faXRay = { prefix: 'fas', iconName: 'x-ray', icon: [640, 512, [], "f497", "M240 384c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm160 32c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zM624 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zm0 448h-48V96H64v352H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM480 248c0 4.4-3.6 8-8 8H336v32h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48v-16h-64v16c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48h64v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-32H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h136v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-24c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v24h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h136c4.4 0 8 3.6 8 8v16z"] }; +var faYenSign = { prefix: 'fas', iconName: 'yen-sign', icon: [384, 512, [], "f157", "M351.208 32h-65.277a12 12 0 0 0-10.778 6.724l-55.39 113.163c-14.513 34.704-27.133 71.932-27.133 71.932h-1.262s-12.62-37.228-27.133-71.932l-55.39-113.163A11.997 11.997 0 0 0 98.068 32H32.792c-9.057 0-14.85 9.65-10.59 17.643L102.322 200H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h88.162L152 293.228V320H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h108v92c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-92h108c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12H232v-26.772L251.838 256H340c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12h-58.322l80.12-150.357C366.058 41.65 360.266 32 351.208 32z"] }; +var icons$1 = { + faAddressBook: faAddressBook, + faAddressCard: faAddressCard, + faAdjust: faAdjust, + faAlignCenter: faAlignCenter, + faAlignJustify: faAlignJustify, + faAlignLeft: faAlignLeft, + faAlignRight: faAlignRight, + faAllergies: faAllergies, + faAmbulance: faAmbulance, + faAmericanSignLanguageInterpreting: faAmericanSignLanguageInterpreting, + faAnchor: faAnchor, + faAngleDoubleDown: faAngleDoubleDown, + faAngleDoubleLeft: faAngleDoubleLeft, + faAngleDoubleRight: faAngleDoubleRight, + faAngleDoubleUp: faAngleDoubleUp, + faAngleDown: faAngleDown, + faAngleLeft: faAngleLeft, + faAngleRight: faAngleRight, + faAngleUp: faAngleUp, + faArchive: faArchive, + faArrowAltCircleDown: faArrowAltCircleDown, + faArrowAltCircleLeft: faArrowAltCircleLeft, + faArrowAltCircleRight: faArrowAltCircleRight, + faArrowAltCircleUp: faArrowAltCircleUp, + faArrowCircleDown: faArrowCircleDown, + faArrowCircleLeft: faArrowCircleLeft, + faArrowCircleRight: faArrowCircleRight, + faArrowCircleUp: faArrowCircleUp, + faArrowDown: faArrowDown, + faArrowLeft: faArrowLeft, + faArrowRight: faArrowRight, + faArrowUp: faArrowUp, + faArrowsAlt: faArrowsAlt, + faArrowsAltH: faArrowsAltH, + faArrowsAltV: faArrowsAltV, + faAssistiveListeningSystems: faAssistiveListeningSystems, + faAsterisk: faAsterisk, + faAt: faAt, + faAudioDescription: faAudioDescription, + faBackward: faBackward, + faBalanceScale: faBalanceScale, + faBan: faBan, + faBandAid: faBandAid, + faBarcode: faBarcode, + faBars: faBars, + faBaseballBall: faBaseballBall, + faBasketballBall: faBasketballBall, + faBath: faBath, + faBatteryEmpty: faBatteryEmpty, + faBatteryFull: faBatteryFull, + faBatteryHalf: faBatteryHalf, + faBatteryQuarter: faBatteryQuarter, + faBatteryThreeQuarters: faBatteryThreeQuarters, + faBed: faBed, + faBeer: faBeer, + faBell: faBell, + faBellSlash: faBellSlash, + faBicycle: faBicycle, + faBinoculars: faBinoculars, + faBirthdayCake: faBirthdayCake, + faBlender: faBlender, + faBlind: faBlind, + faBold: faBold, + faBolt: faBolt, + faBomb: faBomb, + faBook: faBook, + faBookOpen: faBookOpen, + faBookmark: faBookmark, + faBowlingBall: faBowlingBall, + faBox: faBox, + faBoxOpen: faBoxOpen, + faBoxes: faBoxes, + faBraille: faBraille, + faBriefcase: faBriefcase, + faBriefcaseMedical: faBriefcaseMedical, + faBroadcastTower: faBroadcastTower, + faBroom: faBroom, + faBug: faBug, + faBuilding: faBuilding, + faBullhorn: faBullhorn, + faBullseye: faBullseye, + faBurn: faBurn, + faBus: faBus, + faCalculator: faCalculator, + faCalendar: faCalendar, + faCalendarAlt: faCalendarAlt, + faCalendarCheck: faCalendarCheck, + faCalendarMinus: faCalendarMinus, + faCalendarPlus: faCalendarPlus, + faCalendarTimes: faCalendarTimes, + faCamera: faCamera, + faCameraRetro: faCameraRetro, + faCapsules: faCapsules, + faCar: faCar, + faCaretDown: faCaretDown, + faCaretLeft: faCaretLeft, + faCaretRight: faCaretRight, + faCaretSquareDown: faCaretSquareDown, + faCaretSquareLeft: faCaretSquareLeft, + faCaretSquareRight: faCaretSquareRight, + faCaretSquareUp: faCaretSquareUp, + faCaretUp: faCaretUp, + faCartArrowDown: faCartArrowDown, + faCartPlus: faCartPlus, + faCertificate: faCertificate, + faChalkboard: faChalkboard, + faChalkboardTeacher: faChalkboardTeacher, + faChartArea: faChartArea, + faChartBar: faChartBar, + faChartLine: faChartLine, + faChartPie: faChartPie, + faCheck: faCheck, + faCheckCircle: faCheckCircle, + faCheckSquare: faCheckSquare, + faChess: faChess, + faChessBishop: faChessBishop, + faChessBoard: faChessBoard, + faChessKing: faChessKing, + faChessKnight: faChessKnight, + faChessPawn: faChessPawn, + faChessQueen: faChessQueen, + faChessRook: faChessRook, + faChevronCircleDown: faChevronCircleDown, + faChevronCircleLeft: faChevronCircleLeft, + faChevronCircleRight: faChevronCircleRight, + faChevronCircleUp: faChevronCircleUp, + faChevronDown: faChevronDown, + faChevronLeft: faChevronLeft, + faChevronRight: faChevronRight, + faChevronUp: faChevronUp, + faChild: faChild, + faChurch: faChurch, + faCircle: faCircle, + faCircleNotch: faCircleNotch, + faClipboard: faClipboard, + faClipboardCheck: faClipboardCheck, + faClipboardList: faClipboardList, + faClock: faClock, + faClone: faClone, + faClosedCaptioning: faClosedCaptioning, + faCloud: faCloud, + faCloudDownloadAlt: faCloudDownloadAlt, + faCloudUploadAlt: faCloudUploadAlt, + faCode: faCode, + faCodeBranch: faCodeBranch, + faCoffee: faCoffee, + faCog: faCog, + faCogs: faCogs, + faCoins: faCoins, + faColumns: faColumns, + faComment: faComment, + faCommentAlt: faCommentAlt, + faCommentDots: faCommentDots, + faCommentSlash: faCommentSlash, + faComments: faComments, + faCompactDisc: faCompactDisc, + faCompass: faCompass, + faCompress: faCompress, + faCopy: faCopy, + faCopyright: faCopyright, + faCouch: faCouch, + faCreditCard: faCreditCard, + faCrop: faCrop, + faCrosshairs: faCrosshairs, + faCrow: faCrow, + faCrown: faCrown, + faCube: faCube, + faCubes: faCubes, + faCut: faCut, + faDatabase: faDatabase, + faDeaf: faDeaf, + faDesktop: faDesktop, + faDiagnoses: faDiagnoses, + faDice: faDice, + faDiceFive: faDiceFive, + faDiceFour: faDiceFour, + faDiceOne: faDiceOne, + faDiceSix: faDiceSix, + faDiceThree: faDiceThree, + faDiceTwo: faDiceTwo, + faDivide: faDivide, + faDna: faDna, + faDollarSign: faDollarSign, + faDolly: faDolly, + faDollyFlatbed: faDollyFlatbed, + faDonate: faDonate, + faDoorClosed: faDoorClosed, + faDoorOpen: faDoorOpen, + faDotCircle: faDotCircle, + faDove: faDove, + faDownload: faDownload, + faDumbbell: faDumbbell, + faEdit: faEdit, + faEject: faEject, + faEllipsisH: faEllipsisH, + faEllipsisV: faEllipsisV, + faEnvelope: faEnvelope, + faEnvelopeOpen: faEnvelopeOpen, + faEnvelopeSquare: faEnvelopeSquare, + faEquals: faEquals, + faEraser: faEraser, + faEuroSign: faEuroSign, + faExchangeAlt: faExchangeAlt, + faExclamation: faExclamation, + faExclamationCircle: faExclamationCircle, + faExclamationTriangle: faExclamationTriangle, + faExpand: faExpand, + faExpandArrowsAlt: faExpandArrowsAlt, + faExternalLinkAlt: faExternalLinkAlt, + faExternalLinkSquareAlt: faExternalLinkSquareAlt, + faEye: faEye, + faEyeDropper: faEyeDropper, + faEyeSlash: faEyeSlash, + faFastBackward: faFastBackward, + faFastForward: faFastForward, + faFax: faFax, + faFeather: faFeather, + faFemale: faFemale, + faFighterJet: faFighterJet, + faFile: faFile, + faFileAlt: faFileAlt, + faFileArchive: faFileArchive, + faFileAudio: faFileAudio, + faFileCode: faFileCode, + faFileExcel: faFileExcel, + faFileImage: faFileImage, + faFileMedical: faFileMedical, + faFileMedicalAlt: faFileMedicalAlt, + faFilePdf: faFilePdf, + faFilePowerpoint: faFilePowerpoint, + faFileVideo: faFileVideo, + faFileWord: faFileWord, + faFilm: faFilm, + faFilter: faFilter, + faFire: faFire, + faFireExtinguisher: faFireExtinguisher, + faFirstAid: faFirstAid, + faFlag: faFlag, + faFlagCheckered: faFlagCheckered, + faFlask: faFlask, + faFolder: faFolder, + faFolderOpen: faFolderOpen, + faFont: faFont, + faFontAwesomeLogoFull: faFontAwesomeLogoFull, + faFootballBall: faFootballBall, + faForward: faForward, + faFrog: faFrog, + faFrown: faFrown, + faFutbol: faFutbol, + faGamepad: faGamepad, + faGasPump: faGasPump, + faGavel: faGavel, + faGem: faGem, + faGenderless: faGenderless, + faGift: faGift, + faGlassMartini: faGlassMartini, + faGlasses: faGlasses, + faGlobe: faGlobe, + faGolfBall: faGolfBall, + faGraduationCap: faGraduationCap, + faGreaterThan: faGreaterThan, + faGreaterThanEqual: faGreaterThanEqual, + faHSquare: faHSquare, + faHandHolding: faHandHolding, + faHandHoldingHeart: faHandHoldingHeart, + faHandHoldingUsd: faHandHoldingUsd, + faHandLizard: faHandLizard, + faHandPaper: faHandPaper, + faHandPeace: faHandPeace, + faHandPointDown: faHandPointDown, + faHandPointLeft: faHandPointLeft, + faHandPointRight: faHandPointRight, + faHandPointUp: faHandPointUp, + faHandPointer: faHandPointer, + faHandRock: faHandRock, + faHandScissors: faHandScissors, + faHandSpock: faHandSpock, + faHands: faHands, + faHandsHelping: faHandsHelping, + faHandshake: faHandshake, + faHashtag: faHashtag, + faHdd: faHdd, + faHeading: faHeading, + faHeadphones: faHeadphones, + faHeart: faHeart, + faHeartbeat: faHeartbeat, + faHelicopter: faHelicopter, + faHistory: faHistory, + faHockeyPuck: faHockeyPuck, + faHome: faHome, + faHospital: faHospital, + faHospitalAlt: faHospitalAlt, + faHospitalSymbol: faHospitalSymbol, + faHourglass: faHourglass, + faHourglassEnd: faHourglassEnd, + faHourglassHalf: faHourglassHalf, + faHourglassStart: faHourglassStart, + faICursor: faICursor, + faIdBadge: faIdBadge, + faIdCard: faIdCard, + faIdCardAlt: faIdCardAlt, + faImage: faImage, + faImages: faImages, + faInbox: faInbox, + faIndent: faIndent, + faIndustry: faIndustry, + faInfinity: faInfinity, + faInfo: faInfo, + faInfoCircle: faInfoCircle, + faItalic: faItalic, + faKey: faKey, + faKeyboard: faKeyboard, + faKiwiBird: faKiwiBird, + faLanguage: faLanguage, + faLaptop: faLaptop, + faLeaf: faLeaf, + faLemon: faLemon, + faLessThan: faLessThan, + faLessThanEqual: faLessThanEqual, + faLevelDownAlt: faLevelDownAlt, + faLevelUpAlt: faLevelUpAlt, + faLifeRing: faLifeRing, + faLightbulb: faLightbulb, + faLink: faLink, + faLiraSign: faLiraSign, + faList: faList, + faListAlt: faListAlt, + faListOl: faListOl, + faListUl: faListUl, + faLocationArrow: faLocationArrow, + faLock: faLock, + faLockOpen: faLockOpen, + faLongArrowAltDown: faLongArrowAltDown, + faLongArrowAltLeft: faLongArrowAltLeft, + faLongArrowAltRight: faLongArrowAltRight, + faLongArrowAltUp: faLongArrowAltUp, + faLowVision: faLowVision, + faMagic: faMagic, + faMagnet: faMagnet, + faMale: faMale, + faMap: faMap, + faMapMarker: faMapMarker, + faMapMarkerAlt: faMapMarkerAlt, + faMapPin: faMapPin, + faMapSigns: faMapSigns, + faMars: faMars, + faMarsDouble: faMarsDouble, + faMarsStroke: faMarsStroke, + faMarsStrokeH: faMarsStrokeH, + faMarsStrokeV: faMarsStrokeV, + faMedkit: faMedkit, + faMeh: faMeh, + faMemory: faMemory, + faMercury: faMercury, + faMicrochip: faMicrochip, + faMicrophone: faMicrophone, + faMicrophoneAlt: faMicrophoneAlt, + faMicrophoneAltSlash: faMicrophoneAltSlash, + faMicrophoneSlash: faMicrophoneSlash, + faMinus: faMinus, + faMinusCircle: faMinusCircle, + faMinusSquare: faMinusSquare, + faMobile: faMobile, + faMobileAlt: faMobileAlt, + faMoneyBill: faMoneyBill, + faMoneyBillAlt: faMoneyBillAlt, + faMoneyBillWave: faMoneyBillWave, + faMoneyBillWaveAlt: faMoneyBillWaveAlt, + faMoneyCheck: faMoneyCheck, + faMoneyCheckAlt: faMoneyCheckAlt, + faMoon: faMoon, + faMotorcycle: faMotorcycle, + faMousePointer: faMousePointer, + faMusic: faMusic, + faNeuter: faNeuter, + faNewspaper: faNewspaper, + faNotEqual: faNotEqual, + faNotesMedical: faNotesMedical, + faObjectGroup: faObjectGroup, + faObjectUngroup: faObjectUngroup, + faOutdent: faOutdent, + faPaintBrush: faPaintBrush, + faPalette: faPalette, + faPallet: faPallet, + faPaperPlane: faPaperPlane, + faPaperclip: faPaperclip, + faParachuteBox: faParachuteBox, + faParagraph: faParagraph, + faParking: faParking, + faPaste: faPaste, + faPause: faPause, + faPauseCircle: faPauseCircle, + faPaw: faPaw, + faPenSquare: faPenSquare, + faPencilAlt: faPencilAlt, + faPeopleCarry: faPeopleCarry, + faPercent: faPercent, + faPercentage: faPercentage, + faPhone: faPhone, + faPhoneSlash: faPhoneSlash, + faPhoneSquare: faPhoneSquare, + faPhoneVolume: faPhoneVolume, + faPiggyBank: faPiggyBank, + faPills: faPills, + faPlane: faPlane, + faPlay: faPlay, + faPlayCircle: faPlayCircle, + faPlug: faPlug, + faPlus: faPlus, + faPlusCircle: faPlusCircle, + faPlusSquare: faPlusSquare, + faPodcast: faPodcast, + faPoo: faPoo, + faPortrait: faPortrait, + faPoundSign: faPoundSign, + faPowerOff: faPowerOff, + faPrescriptionBottle: faPrescriptionBottle, + faPrescriptionBottleAlt: faPrescriptionBottleAlt, + faPrint: faPrint, + faProcedures: faProcedures, + faProjectDiagram: faProjectDiagram, + faPuzzlePiece: faPuzzlePiece, + faQrcode: faQrcode, + faQuestion: faQuestion, + faQuestionCircle: faQuestionCircle, + faQuidditch: faQuidditch, + faQuoteLeft: faQuoteLeft, + faQuoteRight: faQuoteRight, + faRandom: faRandom, + faReceipt: faReceipt, + faRecycle: faRecycle, + faRedo: faRedo, + faRedoAlt: faRedoAlt, + faRegistered: faRegistered, + faReply: faReply, + faReplyAll: faReplyAll, + faRetweet: faRetweet, + faRibbon: faRibbon, + faRoad: faRoad, + faRobot: faRobot, + faRocket: faRocket, + faRss: faRss, + faRssSquare: faRssSquare, + faRubleSign: faRubleSign, + faRuler: faRuler, + faRulerCombined: faRulerCombined, + faRulerHorizontal: faRulerHorizontal, + faRulerVertical: faRulerVertical, + faRupeeSign: faRupeeSign, + faSave: faSave, + faSchool: faSchool, + faScrewdriver: faScrewdriver, + faSearch: faSearch, + faSearchMinus: faSearchMinus, + faSearchPlus: faSearchPlus, + faSeedling: faSeedling, + faServer: faServer, + faShare: faShare, + faShareAlt: faShareAlt, + faShareAltSquare: faShareAltSquare, + faShareSquare: faShareSquare, + faShekelSign: faShekelSign, + faShieldAlt: faShieldAlt, + faShip: faShip, + faShippingFast: faShippingFast, + faShoePrints: faShoePrints, + faShoppingBag: faShoppingBag, + faShoppingBasket: faShoppingBasket, + faShoppingCart: faShoppingCart, + faShower: faShower, + faSign: faSign, + faSignInAlt: faSignInAlt, + faSignLanguage: faSignLanguage, + faSignOutAlt: faSignOutAlt, + faSignal: faSignal, + faSitemap: faSitemap, + faSkull: faSkull, + faSlidersH: faSlidersH, + faSmile: faSmile, + faSmoking: faSmoking, + faSmokingBan: faSmokingBan, + faSnowflake: faSnowflake, + faSort: faSort, + faSortAlphaDown: faSortAlphaDown, + faSortAlphaUp: faSortAlphaUp, + faSortAmountDown: faSortAmountDown, + faSortAmountUp: faSortAmountUp, + faSortDown: faSortDown, + faSortNumericDown: faSortNumericDown, + faSortNumericUp: faSortNumericUp, + faSortUp: faSortUp, + faSpaceShuttle: faSpaceShuttle, + faSpinner: faSpinner, + faSquare: faSquare, + faSquareFull: faSquareFull, + faStar: faStar, + faStarHalf: faStarHalf, + faStepBackward: faStepBackward, + faStepForward: faStepForward, + faStethoscope: faStethoscope, + faStickyNote: faStickyNote, + faStop: faStop, + faStopCircle: faStopCircle, + faStopwatch: faStopwatch, + faStore: faStore, + faStoreAlt: faStoreAlt, + faStream: faStream, + faStreetView: faStreetView, + faStrikethrough: faStrikethrough, + faStroopwafel: faStroopwafel, + faSubscript: faSubscript, + faSubway: faSubway, + faSuitcase: faSuitcase, + faSun: faSun, + faSuperscript: faSuperscript, + faSync: faSync, + faSyncAlt: faSyncAlt, + faSyringe: faSyringe, + faTable: faTable, + faTableTennis: faTableTennis, + faTablet: faTablet, + faTabletAlt: faTabletAlt, + faTablets: faTablets, + faTachometerAlt: faTachometerAlt, + faTag: faTag, + faTags: faTags, + faTape: faTape, + faTasks: faTasks, + faTaxi: faTaxi, + faTerminal: faTerminal, + faTextHeight: faTextHeight, + faTextWidth: faTextWidth, + faTh: faTh, + faThLarge: faThLarge, + faThList: faThList, + faThermometer: faThermometer, + faThermometerEmpty: faThermometerEmpty, + faThermometerFull: faThermometerFull, + faThermometerHalf: faThermometerHalf, + faThermometerQuarter: faThermometerQuarter, + faThermometerThreeQuarters: faThermometerThreeQuarters, + faThumbsDown: faThumbsDown, + faThumbsUp: faThumbsUp, + faThumbtack: faThumbtack, + faTicketAlt: faTicketAlt, + faTimes: faTimes, + faTimesCircle: faTimesCircle, + faTint: faTint, + faToggleOff: faToggleOff, + faToggleOn: faToggleOn, + faToolbox: faToolbox, + faTrademark: faTrademark, + faTrain: faTrain, + faTransgender: faTransgender, + faTransgenderAlt: faTransgenderAlt, + faTrash: faTrash, + faTrashAlt: faTrashAlt, + faTree: faTree, + faTrophy: faTrophy, + faTruck: faTruck, + faTruckLoading: faTruckLoading, + faTruckMoving: faTruckMoving, + faTshirt: faTshirt, + faTty: faTty, + faTv: faTv, + faUmbrella: faUmbrella, + faUnderline: faUnderline, + faUndo: faUndo, + faUndoAlt: faUndoAlt, + faUniversalAccess: faUniversalAccess, + faUniversity: faUniversity, + faUnlink: faUnlink, + faUnlock: faUnlock, + faUnlockAlt: faUnlockAlt, + faUpload: faUpload, + faUser: faUser, + faUserAlt: faUserAlt, + faUserAltSlash: faUserAltSlash, + faUserAstronaut: faUserAstronaut, + faUserCheck: faUserCheck, + faUserCircle: faUserCircle, + faUserClock: faUserClock, + faUserCog: faUserCog, + faUserEdit: faUserEdit, + faUserFriends: faUserFriends, + faUserGraduate: faUserGraduate, + faUserLock: faUserLock, + faUserMd: faUserMd, + faUserMinus: faUserMinus, + faUserNinja: faUserNinja, + faUserPlus: faUserPlus, + faUserSecret: faUserSecret, + faUserShield: faUserShield, + faUserSlash: faUserSlash, + faUserTag: faUserTag, + faUserTie: faUserTie, + faUserTimes: faUserTimes, + faUsers: faUsers, + faUsersCog: faUsersCog, + faUtensilSpoon: faUtensilSpoon, + faUtensils: faUtensils, + faVenus: faVenus, + faVenusDouble: faVenusDouble, + faVenusMars: faVenusMars, + faVial: faVial, + faVials: faVials, + faVideo: faVideo, + faVideoSlash: faVideoSlash, + faVolleyballBall: faVolleyballBall, + faVolumeDown: faVolumeDown, + faVolumeOff: faVolumeOff, + faVolumeUp: faVolumeUp, + faWalking: faWalking, + faWallet: faWallet, + faWarehouse: faWarehouse, + faWeight: faWeight, + faWheelchair: faWheelchair, + faWifi: faWifi, + faWindowClose: faWindowClose, + faWindowMaximize: faWindowMaximize, + faWindowMinimize: faWindowMinimize, + faWindowRestore: faWindowRestore, + faWineGlass: faWineGlass, + faWonSign: faWonSign, + faWrench: faWrench, + faXRay: faXRay, + faYenSign: faYenSign +}; + +export { prefix, faAddressBook, faAddressCard, faAdjust, faAlignCenter, faAlignJustify, faAlignLeft, faAlignRight, faAllergies, faAmbulance, faAmericanSignLanguageInterpreting, faAnchor, faAngleDoubleDown, faAngleDoubleLeft, faAngleDoubleRight, faAngleDoubleUp, faAngleDown, faAngleLeft, faAngleRight, faAngleUp, faArchive, faArrowAltCircleDown, faArrowAltCircleLeft, faArrowAltCircleRight, faArrowAltCircleUp, faArrowCircleDown, faArrowCircleLeft, faArrowCircleRight, faArrowCircleUp, faArrowDown, faArrowLeft, faArrowRight, faArrowUp, faArrowsAlt, faArrowsAltH, faArrowsAltV, faAssistiveListeningSystems, faAsterisk, faAt, faAudioDescription, faBackward, faBalanceScale, faBan, faBandAid, faBarcode, faBars, faBaseballBall, faBasketballBall, faBath, faBatteryEmpty, faBatteryFull, faBatteryHalf, faBatteryQuarter, faBatteryThreeQuarters, faBed, faBeer, faBell, faBellSlash, faBicycle, faBinoculars, faBirthdayCake, faBlender, faBlind, faBold, faBolt, faBomb, faBook, faBookOpen, faBookmark, faBowlingBall, faBox, faBoxOpen, faBoxes, faBraille, faBriefcase, faBriefcaseMedical, faBroadcastTower, faBroom, faBug, faBuilding, faBullhorn, faBullseye, faBurn, faBus, faCalculator, faCalendar, faCalendarAlt, faCalendarCheck, faCalendarMinus, faCalendarPlus, faCalendarTimes, faCamera, faCameraRetro, faCapsules, faCar, faCaretDown, faCaretLeft, faCaretRight, faCaretSquareDown, faCaretSquareLeft, faCaretSquareRight, faCaretSquareUp, faCaretUp, faCartArrowDown, faCartPlus, faCertificate, faChalkboard, faChalkboardTeacher, faChartArea, faChartBar, faChartLine, faChartPie, faCheck, faCheckCircle, faCheckSquare, faChess, faChessBishop, faChessBoard, faChessKing, faChessKnight, faChessPawn, faChessQueen, faChessRook, faChevronCircleDown, faChevronCircleLeft, faChevronCircleRight, faChevronCircleUp, faChevronDown, faChevronLeft, faChevronRight, faChevronUp, faChild, faChurch, faCircle, faCircleNotch, faClipboard, faClipboardCheck, faClipboardList, faClock, faClone, faClosedCaptioning, faCloud, faCloudDownloadAlt, faCloudUploadAlt, faCode, faCodeBranch, faCoffee, faCog, faCogs, faCoins, faColumns, faComment, faCommentAlt, faCommentDots, faCommentSlash, faComments, faCompactDisc, faCompass, faCompress, faCopy, faCopyright, faCouch, faCreditCard, faCrop, faCrosshairs, faCrow, faCrown, faCube, faCubes, faCut, faDatabase, faDeaf, faDesktop, faDiagnoses, faDice, faDiceFive, faDiceFour, faDiceOne, faDiceSix, faDiceThree, faDiceTwo, faDivide, faDna, faDollarSign, faDolly, faDollyFlatbed, faDonate, faDoorClosed, faDoorOpen, faDotCircle, faDove, faDownload, faDumbbell, faEdit, faEject, faEllipsisH, faEllipsisV, faEnvelope, faEnvelopeOpen, faEnvelopeSquare, faEquals, faEraser, faEuroSign, faExchangeAlt, faExclamation, faExclamationCircle, faExclamationTriangle, faExpand, faExpandArrowsAlt, faExternalLinkAlt, faExternalLinkSquareAlt, faEye, faEyeDropper, faEyeSlash, faFastBackward, faFastForward, faFax, faFeather, faFemale, faFighterJet, faFile, faFileAlt, faFileArchive, faFileAudio, faFileCode, faFileExcel, faFileImage, faFileMedical, faFileMedicalAlt, faFilePdf, faFilePowerpoint, faFileVideo, faFileWord, faFilm, faFilter, faFire, faFireExtinguisher, faFirstAid, faFlag, faFlagCheckered, faFlask, faFolder, faFolderOpen, faFont, faFontAwesomeLogoFull, faFootballBall, faForward, faFrog, faFrown, faFutbol, faGamepad, faGasPump, faGavel, faGem, faGenderless, faGift, faGlassMartini, faGlasses, faGlobe, faGolfBall, faGraduationCap, faGreaterThan, faGreaterThanEqual, faHSquare, faHandHolding, faHandHoldingHeart, faHandHoldingUsd, faHandLizard, faHandPaper, faHandPeace, faHandPointDown, faHandPointLeft, faHandPointRight, faHandPointUp, faHandPointer, faHandRock, faHandScissors, faHandSpock, faHands, faHandsHelping, faHandshake, faHashtag, faHdd, faHeading, faHeadphones, faHeart, faHeartbeat, faHelicopter, faHistory, faHockeyPuck, faHome, faHospital, faHospitalAlt, faHospitalSymbol, faHourglass, faHourglassEnd, faHourglassHalf, faHourglassStart, faICursor, faIdBadge, faIdCard, faIdCardAlt, faImage, faImages, faInbox, faIndent, faIndustry, faInfinity, faInfo, faInfoCircle, faItalic, faKey, faKeyboard, faKiwiBird, faLanguage, faLaptop, faLeaf, faLemon, faLessThan, faLessThanEqual, faLevelDownAlt, faLevelUpAlt, faLifeRing, faLightbulb, faLink, faLiraSign, faList, faListAlt, faListOl, faListUl, faLocationArrow, faLock, faLockOpen, faLongArrowAltDown, faLongArrowAltLeft, faLongArrowAltRight, faLongArrowAltUp, faLowVision, faMagic, faMagnet, faMale, faMap, faMapMarker, faMapMarkerAlt, faMapPin, faMapSigns, faMars, faMarsDouble, faMarsStroke, faMarsStrokeH, faMarsStrokeV, faMedkit, faMeh, faMemory, faMercury, faMicrochip, faMicrophone, faMicrophoneAlt, faMicrophoneAltSlash, faMicrophoneSlash, faMinus, faMinusCircle, faMinusSquare, faMobile, faMobileAlt, faMoneyBill, faMoneyBillAlt, faMoneyBillWave, faMoneyBillWaveAlt, faMoneyCheck, faMoneyCheckAlt, faMoon, faMotorcycle, faMousePointer, faMusic, faNeuter, faNewspaper, faNotEqual, faNotesMedical, faObjectGroup, faObjectUngroup, faOutdent, faPaintBrush, faPalette, faPallet, faPaperPlane, faPaperclip, faParachuteBox, faParagraph, faParking, faPaste, faPause, faPauseCircle, faPaw, faPenSquare, faPencilAlt, faPeopleCarry, faPercent, faPercentage, faPhone, faPhoneSlash, faPhoneSquare, faPhoneVolume, faPiggyBank, faPills, faPlane, faPlay, faPlayCircle, faPlug, faPlus, faPlusCircle, faPlusSquare, faPodcast, faPoo, faPortrait, faPoundSign, faPowerOff, faPrescriptionBottle, faPrescriptionBottleAlt, faPrint, faProcedures, faProjectDiagram, faPuzzlePiece, faQrcode, faQuestion, faQuestionCircle, faQuidditch, faQuoteLeft, faQuoteRight, faRandom, faReceipt, faRecycle, faRedo, faRedoAlt, faRegistered, faReply, faReplyAll, faRetweet, faRibbon, faRoad, faRobot, faRocket, faRss, faRssSquare, faRubleSign, faRuler, faRulerCombined, faRulerHorizontal, faRulerVertical, faRupeeSign, faSave, faSchool, faScrewdriver, faSearch, faSearchMinus, faSearchPlus, faSeedling, faServer, faShare, faShareAlt, faShareAltSquare, faShareSquare, faShekelSign, faShieldAlt, faShip, faShippingFast, faShoePrints, faShoppingBag, faShoppingBasket, faShoppingCart, faShower, faSign, faSignInAlt, faSignLanguage, faSignOutAlt, faSignal, faSitemap, faSkull, faSlidersH, faSmile, faSmoking, faSmokingBan, faSnowflake, faSort, faSortAlphaDown, faSortAlphaUp, faSortAmountDown, faSortAmountUp, faSortDown, faSortNumericDown, faSortNumericUp, faSortUp, faSpaceShuttle, faSpinner, faSquare, faSquareFull, faStar, faStarHalf, faStepBackward, faStepForward, faStethoscope, faStickyNote, faStop, faStopCircle, faStopwatch, faStore, faStoreAlt, faStream, faStreetView, faStrikethrough, faStroopwafel, faSubscript, faSubway, faSuitcase, faSun, faSuperscript, faSync, faSyncAlt, faSyringe, faTable, faTableTennis, faTablet, faTabletAlt, faTablets, faTachometerAlt, faTag, faTags, faTape, faTasks, faTaxi, faTerminal, faTextHeight, faTextWidth, faTh, faThLarge, faThList, faThermometer, faThermometerEmpty, faThermometerFull, faThermometerHalf, faThermometerQuarter, faThermometerThreeQuarters, faThumbsDown, faThumbsUp, faThumbtack, faTicketAlt, faTimes, faTimesCircle, faTint, faToggleOff, faToggleOn, faToolbox, faTrademark, faTrain, faTransgender, faTransgenderAlt, faTrash, faTrashAlt, faTree, faTrophy, faTruck, faTruckLoading, faTruckMoving, faTshirt, faTty, faTv, faUmbrella, faUnderline, faUndo, faUndoAlt, faUniversalAccess, faUniversity, faUnlink, faUnlock, faUnlockAlt, faUpload, faUser, faUserAlt, faUserAltSlash, faUserAstronaut, faUserCheck, faUserCircle, faUserClock, faUserCog, faUserEdit, faUserFriends, faUserGraduate, faUserLock, faUserMd, faUserMinus, faUserNinja, faUserPlus, faUserSecret, faUserShield, faUserSlash, faUserTag, faUserTie, faUserTimes, faUsers, faUsersCog, faUtensilSpoon, faUtensils, faVenus, faVenusDouble, faVenusMars, faVial, faVials, faVideo, faVideoSlash, faVolleyballBall, faVolumeDown, faVolumeOff, faVolumeUp, faWalking, faWallet, faWarehouse, faWeight, faWheelchair, faWifi, faWindowClose, faWindowMaximize, faWindowMinimize, faWindowRestore, faWineGlass, faWonSign, faWrench, faXRay, faYenSign }; +export default icons$1; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/shakable.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/shakable.js new file mode 100644 index 0000000000..5bb1257bb4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-solid/shakable.js @@ -0,0 +1,1901 @@ +/*! + * Font Awesome Free 5.0.13 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : + typeof define === 'function' && define.amd ? define(['exports'], factory) : + (factory((global['fontawesome-free-solid'] = {}))); +}(this, (function (exports) { 'use strict'; + +var prefix = "fas"; +var faAddressBook = { prefix: 'fas', iconName: 'address-book', icon: [448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"] }; +var faAddressCard = { prefix: 'fas', iconName: 'address-card', icon: [576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-352 96c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H86.4C74 384 64 375.4 64 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2zM512 312c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z"] }; +var faAdjust = { prefix: 'fas', iconName: 'adjust', icon: [512, 512, [], "f042", "M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z"] }; +var faAlignCenter = { prefix: 'fas', iconName: 'align-center', icon: [448, 512, [], "f037", "M352 44v40c0 8.837-7.163 16-16 16H112c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h224c8.837 0 16 7.163 16 16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm320-200H112c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z"] }; +var faAlignJustify = { prefix: 'fas', iconName: 'align-justify', icon: [448, 512, [], "f039", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm16 144h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0-128h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faAlignLeft = { prefix: 'fas', iconName: 'align-left', icon: [448, 512, [], "f036", "M288 44v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16zM0 172v40c0 8.837 7.163 16 16 16h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16zm16 312h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm256-200H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z"] }; +var faAlignRight = { prefix: 'fas', iconName: 'align-right', icon: [448, 512, [], "f038", "M160 84V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H176c-8.837 0-16-7.163-16-16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faAllergies = { prefix: 'fas', iconName: 'allergies', icon: [448, 512, [], "f461", "M416 112c-17.6 0-32 14.4-32 32v72c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v152c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V32c0-17.6-14.4-32-32-32s-32 14.4-32 32v184c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32S96 46.4 96 64v241l-23.6-32.5c-13-17.9-38-21.8-55.9-8.8s-21.8 38-8.8 55.9l125.6 172.7c9 12.4 23.5 19.8 38.8 19.8h197.6c22.3 0 41.6-15.3 46.7-37l26.5-112.7c3.2-13.7 4.9-28.3 5.1-42.3V144c0-17.6-14.4-32-32-32zM176 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 32c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32-128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"] }; +var faAmbulance = { prefix: 'fas', iconName: 'ambulance', icon: [640, 512, [], "f0f9", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm144-248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm176 248c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"] }; +var faAmericanSignLanguageInterpreting = { prefix: 'fas', iconName: 'american-sign-language-interpreting', icon: [640, 512, [], "f2a3", "M290.547 189.039c-20.295-10.149-44.147-11.199-64.739-3.89 42.606 0 71.208 20.475 85.578 50.576 8.576 17.899-5.148 38.071-23.617 38.071 18.429 0 32.211 20.136 23.617 38.071-14.725 30.846-46.123 50.854-80.298 50.854-.557 0-94.471-8.615-94.471-8.615l-66.406 33.347c-9.384 4.693-19.815.379-23.895-7.781L1.86 290.747c-4.167-8.615-1.111-18.897 6.946-23.621l58.072-33.069L108 159.861c6.39-57.245 34.731-109.767 79.743-146.726 11.391-9.448 28.341-7.781 37.51 3.613 9.446 11.394 7.78 28.067-3.612 37.516-12.503 10.559-23.618 22.509-32.509 35.57 21.672-14.729 46.679-24.732 74.186-28.067 14.725-1.945 28.063 8.336 29.73 23.065 1.945 14.728-8.336 28.067-23.062 29.734-16.116 1.945-31.12 7.503-44.178 15.284 26.114-5.713 58.712-3.138 88.079 11.115 13.336 6.669 18.893 22.509 12.224 35.848-6.389 13.06-22.504 18.617-35.564 12.226zm-27.229 69.472c-6.112-12.505-18.338-20.286-32.231-20.286a35.46 35.46 0 0 0-35.565 35.57c0 21.428 17.808 35.57 35.565 35.57 13.893 0 26.119-7.781 32.231-20.286 4.446-9.449 13.614-15.006 23.339-15.284-9.725-.277-18.893-5.835-23.339-15.284zm374.821-37.237c4.168 8.615 1.111 18.897-6.946 23.621l-58.071 33.069L532 352.16c-6.39 57.245-34.731 109.767-79.743 146.726-10.932 9.112-27.799 8.144-37.51-3.613-9.446-11.394-7.78-28.067 3.613-37.516 12.503-10.559 23.617-22.509 32.508-35.57-21.672 14.729-46.679 24.732-74.186 28.067-10.021 2.506-27.552-5.643-29.73-23.065-1.945-14.728 8.336-28.067 23.062-29.734 16.116-1.946 31.12-7.503 44.178-15.284-26.114 5.713-58.712 3.138-88.079-11.115-13.336-6.669-18.893-22.509-12.224-35.848 6.389-13.061 22.505-18.619 35.565-12.227 20.295 10.149 44.147 11.199 64.739 3.89-42.606 0-71.208-20.475-85.578-50.576-8.576-17.899 5.148-38.071 23.617-38.071-18.429 0-32.211-20.136-23.617-38.071 14.033-29.396 44.039-50.887 81.966-50.854l92.803 8.615 66.406-33.347c9.408-4.704 19.828-.354 23.894 7.781l44.455 88.926zm-229.227-18.618c-13.893 0-26.119 7.781-32.231 20.286-4.446 9.449-13.614 15.006-23.339 15.284 9.725.278 18.893 5.836 23.339 15.284 6.112 12.505 18.338 20.286 32.231 20.286a35.46 35.46 0 0 0 35.565-35.57c0-21.429-17.808-35.57-35.565-35.57z"] }; +var faAnchor = { prefix: 'fas', iconName: 'anchor', icon: [576, 512, [], "f13d", "M12.971 352h32.394C67.172 454.735 181.944 512 288 512c106.229 0 220.853-57.38 242.635-160h32.394c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0l-67.029 67.029c-7.56 7.56-2.206 20.485 8.485 20.485h35.146c-20.29 54.317-84.963 86.588-144.117 94.015V256h52c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-52v-5.47c37.281-13.178 63.995-48.725 64-90.518C384.005 43.772 341.605.738 289.37.01 235.723-.739 192 42.525 192 96c0 41.798 26.716 77.35 64 90.53V192h-52c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v190.015c-58.936-7.399-123.82-39.679-144.117-94.015h35.146c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0L4.485 331.515C-3.074 339.074 2.28 352 12.971 352zM288 64c17.645 0 32 14.355 32 32s-14.355 32-32 32-32-14.355-32-32 14.355-32 32-32z"] }; +var faAngleDoubleDown = { prefix: 'fas', iconName: 'angle-double-down', icon: [320, 512, [], "f103", "M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z"] }; +var faAngleDoubleLeft = { prefix: 'fas', iconName: 'angle-double-left', icon: [448, 512, [], "f100", "M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z"] }; +var faAngleDoubleRight = { prefix: 'fas', iconName: 'angle-double-right', icon: [448, 512, [], "f101", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z"] }; +var faAngleDoubleUp = { prefix: 'fas', iconName: 'angle-double-up', icon: [320, 512, [], "f102", "M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z"] }; +var faAngleDown = { prefix: 'fas', iconName: 'angle-down', icon: [320, 512, [], "f107", "M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"] }; +var faAngleLeft = { prefix: 'fas', iconName: 'angle-left', icon: [256, 512, [], "f104", "M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"] }; +var faAngleRight = { prefix: 'fas', iconName: 'angle-right', icon: [256, 512, [], "f105", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"] }; +var faAngleUp = { prefix: 'fas', iconName: 'angle-up', icon: [320, 512, [], "f106", "M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z"] }; +var faArchive = { prefix: 'fas', iconName: 'archive', icon: [512, 512, [], "f187", "M32 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160H32v288zm160-212c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v8c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-8zM480 32H32C14.3 32 0 46.3 0 64v48c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16V64c0-17.7-14.3-32-32-32z"] }; +var faArrowAltCircleDown = { prefix: 'fas', iconName: 'arrow-alt-circle-down', icon: [512, 512, [], "f358", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM212 140v116h-70.9c-10.7 0-16.1 13-8.5 20.5l114.9 114.3c4.7 4.7 12.2 4.7 16.9 0l114.9-114.3c7.6-7.6 2.2-20.5-8.5-20.5H300V140c0-6.6-5.4-12-12-12h-64c-6.6 0-12 5.4-12 12z"] }; +var faArrowAltCircleLeft = { prefix: 'fas', iconName: 'arrow-alt-circle-left', icon: [512, 512, [], "f359", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z"] }; +var faArrowAltCircleRight = { prefix: 'fas', iconName: 'arrow-alt-circle-right', icon: [512, 512, [], "f35a", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z"] }; +var faArrowAltCircleUp = { prefix: 'fas', iconName: 'arrow-alt-circle-up', icon: [512, 512, [], "f35b", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm292 116V256h70.9c10.7 0 16.1-13 8.5-20.5L264.5 121.2c-4.7-4.7-12.2-4.7-16.9 0l-115 114.3c-7.6 7.6-2.2 20.5 8.5 20.5H212v116c0 6.6 5.4 12 12 12h64c6.6 0 12-5.4 12-12z"] }; +var faArrowCircleDown = { prefix: 'fas', iconName: 'arrow-circle-down', icon: [512, 512, [], "f0ab", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-143.6-28.9L288 302.6V120c0-13.3-10.7-24-24-24h-16c-13.3 0-24 10.7-24 24v182.6l-72.4-75.5c-9.3-9.7-24.8-9.9-34.3-.4l-10.9 11c-9.4 9.4-9.4 24.6 0 33.9L239 404.3c9.4 9.4 24.6 9.4 33.9 0l132.7-132.7c9.4-9.4 9.4-24.6 0-33.9l-10.9-11c-9.5-9.5-25-9.3-34.3.4z"] }; +var faArrowCircleLeft = { prefix: 'fas', iconName: 'arrow-circle-left', icon: [512, 512, [], "f0a8", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm28.9-143.6L209.4 288H392c13.3 0 24-10.7 24-24v-16c0-13.3-10.7-24-24-24H209.4l75.5-72.4c9.7-9.3 9.9-24.8.4-34.3l-11-10.9c-9.4-9.4-24.6-9.4-33.9 0L107.7 239c-9.4 9.4-9.4 24.6 0 33.9l132.7 132.7c9.4 9.4 24.6 9.4 33.9 0l11-10.9c9.5-9.5 9.3-25-.4-34.3z"] }; +var faArrowCircleRight = { prefix: 'fas', iconName: 'arrow-circle-right', icon: [512, 512, [], "f0a9", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28.9 143.6l75.5 72.4H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h182.6l-75.5 72.4c-9.7 9.3-9.9 24.8-.4 34.3l11 10.9c9.4 9.4 24.6 9.4 33.9 0L404.3 273c9.4-9.4 9.4-24.6 0-33.9L271.6 106.3c-9.4-9.4-24.6-9.4-33.9 0l-11 10.9c-9.5 9.6-9.3 25.1.4 34.4z"] }; +var faArrowCircleUp = { prefix: 'fas', iconName: 'arrow-circle-up', icon: [512, 512, [], "f0aa", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z"] }; +var faArrowDown = { prefix: 'fas', iconName: 'arrow-down', icon: [448, 512, [], "f063", "M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z"] }; +var faArrowLeft = { prefix: 'fas', iconName: 'arrow-left', icon: [448, 512, [], "f060", "M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z"] }; +var faArrowRight = { prefix: 'fas', iconName: 'arrow-right', icon: [448, 512, [], "f061", "M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z"] }; +var faArrowUp = { prefix: 'fas', iconName: 'arrow-up', icon: [448, 512, [], "f062", "M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z"] }; +var faArrowsAlt = { prefix: 'fas', iconName: 'arrows-alt', icon: [512, 512, [], "f0b2", "M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z"] }; +var faArrowsAltH = { prefix: 'fas', iconName: 'arrows-alt-h', icon: [512, 512, [], "f337", "M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z"] }; +var faArrowsAltV = { prefix: 'fas', iconName: 'arrows-alt-v', icon: [256, 512, [], "f338", "M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z"] }; +var faAssistiveListeningSystems = { prefix: 'fas', iconName: 'assistive-listening-systems', icon: [512, 512, [], "f2a2", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z"] }; +var faAsterisk = { prefix: 'fas', iconName: 'asterisk', icon: [512, 512, [], "f069", "M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z"] }; +var faAt = { prefix: 'fas', iconName: 'at', icon: [512, 512, [], "f1fa", "M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z"] }; +var faAudioDescription = { prefix: 'fas', iconName: 'audio-description', icon: [512, 512, [], "f29e", "M162.925 238.709l8.822 30.655h-25.606l9.041-30.652c1.277-4.421 2.651-9.994 3.872-15.245 1.22 5.251 2.594 10.823 3.871 15.242zm166.474-32.099h-14.523v98.781h14.523c29.776 0 46.175-17.678 46.175-49.776 0-32.239-17.49-49.005-46.175-49.005zM512 112v288c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48zM245.459 336.139l-57.097-168A12.001 12.001 0 0 0 177 160h-35.894a12.001 12.001 0 0 0-11.362 8.139l-57.097 168C70.003 343.922 75.789 352 84.009 352h29.133a12 12 0 0 0 11.535-8.693l8.574-29.906h51.367l8.793 29.977A12 12 0 0 0 204.926 352h29.172c8.22 0 14.006-8.078 11.361-15.861zm184.701-80.525c0-58.977-37.919-95.614-98.96-95.614h-57.366c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12H331.2c61.041 0 98.96-36.933 98.96-96.386z"] }; +var faBackward = { prefix: 'fas', iconName: 'backward', icon: [512, 512, [], "f04a", "M11.5 280.6l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2zm256 0l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2z"] }; +var faBalanceScale = { prefix: 'fas', iconName: 'balance-scale', icon: [640, 512, [], "f24e", "M256 336h-.02c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0C-2.06 328.75.02 320.33.02 336H0c0 44.18 57.31 80 128 80s128-35.82 128-80zM128 176l72 144H56l72-144zm511.98 160c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 320l72-144 72 144H440zm88 128H352V153.25c23.51-10.29 41.16-31.48 46.39-57.25H528c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H383.64C369.04 12.68 346.09 0 320 0s-49.04 12.68-63.64 32H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h129.61c5.23 25.76 22.87 46.96 46.39 57.25V448H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"] }; +var faBan = { prefix: 'fas', iconName: 'ban', icon: [512, 512, [], "f05e", "M256 8C119.034 8 8 119.033 8 256s111.034 248 248 248 248-111.034 248-248S392.967 8 256 8zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676zM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676z"] }; +var faBandAid = { prefix: 'fas', iconName: 'band-aid', icon: [640, 512, [], "f462", "M0 160v192c0 35.3 28.7 64 64 64h96V96H64c-35.3 0-64 28.7-64 64zm576-64h-96v320h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64zM192 416h256V96H192v320zm176-232c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24z"] }; +var faBarcode = { prefix: 'fas', iconName: 'barcode', icon: [512, 512, [], "f02a", "M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z"] }; +var faBars = { prefix: 'fas', iconName: 'bars', icon: [448, 512, [], "f0c9", "M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faBaseballBall = { prefix: 'fas', iconName: 'baseball-ball', icon: [496, 512, [], "f433", "M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z"] }; +var faBasketballBall = { prefix: 'fas', iconName: 'basketball-ball', icon: [496, 512, [], "f434", "M212.3 10.3c-43.8 6.3-86.2 24.1-122.2 53.8l77.4 77.4c27.8-35.8 43.3-81.2 44.8-131.2zM248 222L405.9 64.1c-42.4-35-93.6-53.5-145.5-56.1-1.2 63.9-21.5 122.3-58.7 167.7L248 222zM56.1 98.1c-29.7 36-47.5 78.4-53.8 122.2 50-1.5 95.5-17 131.2-44.8L56.1 98.1zm272.2 204.2c45.3-37.1 103.7-57.4 167.7-58.7-2.6-51.9-21.1-103.1-56.1-145.5L282 256l46.3 46.3zM248 290L90.1 447.9c42.4 34.9 93.6 53.5 145.5 56.1 1.3-64 21.6-122.4 58.7-167.7L248 290zm191.9 123.9c29.7-36 47.5-78.4 53.8-122.2-50.1 1.6-95.5 17.1-131.2 44.8l77.4 77.4zM167.7 209.7C122.3 246.9 63.9 267.3 0 268.4c2.6 51.9 21.1 103.1 56.1 145.5L214 256l-46.3-46.3zm116 292c43.8-6.3 86.2-24.1 122.2-53.8l-77.4-77.4c-27.7 35.7-43.2 81.2-44.8 131.2z"] }; +var faBath = { prefix: 'fas', iconName: 'bath', icon: [512, 512, [], "f2cd", "M488 256H80V112c0-17.645 14.355-32 32-32 11.351 0 21.332 5.945 27.015 14.88-16.492 25.207-14.687 59.576 6.838 83.035-4.176 4.713-4.021 11.916.491 16.428l11.314 11.314c4.686 4.686 12.284 4.686 16.971 0l95.03-95.029c4.686-4.686 4.686-12.284 0-16.971l-11.314-11.314c-4.512-4.512-11.715-4.666-16.428-.491-17.949-16.469-42.294-21.429-64.178-15.365C163.281 45.667 139.212 32 112 32c-44.112 0-80 35.888-80 80v144h-8c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h8v32c0 28.43 12.362 53.969 32 71.547V456c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-8h256v8c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-32.453c19.638-17.578 32-43.117 32-71.547v-32h8c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z"] }; +var faBatteryEmpty = { prefix: 'fas', iconName: 'battery-empty', icon: [640, 512, [], "f244", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48z"] }; +var faBatteryFull = { prefix: 'fas', iconName: 'battery-full', icon: [640, 512, [], "f240", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-48 96H96v128h416V192z"] }; +var faBatteryHalf = { prefix: 'fas', iconName: 'battery-half', icon: [640, 512, [], "f242", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-240 96H96v128h224V192z"] }; +var faBatteryQuarter = { prefix: 'fas', iconName: 'battery-quarter', icon: [640, 512, [], "f243", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-336 96H96v128h128V192z"] }; +var faBatteryThreeQuarters = { prefix: 'fas', iconName: 'battery-three-quarters', icon: [640, 512, [], "f241", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-144 96H96v128h320V192z"] }; +var faBed = { prefix: 'fas', iconName: 'bed', icon: [576, 512, [], "f236", "M552 288c13.255 0 24 10.745 24 24v136h-96v-64H96v64H0V88c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24v200h456zM192 96c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80zm384 128c0-53.019-42.981-96-96-96H312c-13.255 0-24 10.745-24 24v104h288v-32z"] }; +var faBeer = { prefix: 'fas', iconName: 'beer', icon: [448, 512, [], "f0fc", "M368 96h-48V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24v-42.11l80.606-35.977C429.396 365.063 448 336.388 448 304.86V176c0-44.112-35.888-80-80-80zm16 208.86a16.018 16.018 0 0 1-9.479 14.611L320 343.805V160h48c8.822 0 16 7.178 16 16v128.86zM208 384c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16zm-96 0c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16z"] }; +var faBell = { prefix: 'fas', iconName: 'bell', icon: [448, 512, [], "f0f3", "M433.884 366.059C411.634 343.809 384 316.118 384 208c0-79.394-57.831-145.269-133.663-157.83A31.845 31.845 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 6.75 2.095 13.008 5.663 18.17C121.831 62.731 64 128.606 64 208c0 108.118-27.643 135.809-49.893 158.059C-16.042 396.208 5.325 448 48.048 448H160c0 35.346 28.654 64 64 64s64-28.654 64-64h111.943c42.638 0 64.151-51.731 33.941-81.941zM224 472a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16c0 13.234 10.766 24 24 24z"] }; +var faBellSlash = { prefix: 'fas', iconName: 'bell-slash', icon: [576, 512, [], "f1f6", "M78.107 366.059C47.958 396.208 69.325 448 112.048 448H224c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h32.685L127.848 221.379c-2.198 97.078-28.439 123.378-49.741 144.68zM264 448c0 13.234 10.766 24 24 24a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16zm305.896 43.733l-10.762 12.086c-8.915 10.012-24.333 10.967-34.437 2.133L8.256 54.393C-1.848 45.558-2.811 30.28 6.104 20.267L16.865 8.181C25.781-1.831 41.199-2.786 51.303 6.049l113.81 99.512c24.017-28.778 57.946-48.996 96.55-55.39A31.85 31.85 0 0 1 256 32c0-17.673 14.327-32 32-32s32 14.327 32 32c0 6.75-2.095 13.008-5.663 18.17C390.169 62.731 448 128.606 448 208c0 108.118 27.634 135.809 49.884 158.059 12.149 12.149 15.923 27.776 13.33 42.121l56.53 49.427c10.104 8.835 11.067 24.113 2.152 34.126z"] }; +var faBicycle = { prefix: 'fas', iconName: 'bicycle', icon: [640, 512, [], "f206", "M512.509 192.001c-16.373-.064-32.03 2.955-46.436 8.495l-77.68-125.153A24 24 0 0 0 368.001 64h-64c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h50.649l14.896 24H256.002v-16c0-8.837-7.163-16-16-16h-87.459c-13.441 0-24.777 10.999-24.536 24.437.232 13.044 10.876 23.563 23.995 23.563h48.726l-29.417 47.52c-13.433-4.83-27.904-7.483-42.992-7.52C58.094 191.83.412 249.012.002 319.236-.413 390.279 57.055 448 128.002 448c59.642 0 109.758-40.793 123.967-96h52.033a24 24 0 0 0 20.406-11.367L410.37 201.77l14.938 24.067c-25.455 23.448-41.385 57.081-41.307 94.437.145 68.833 57.899 127.051 126.729 127.719 70.606.685 128.181-55.803 129.255-125.996 1.086-70.941-56.526-129.72-127.476-129.996zM186.75 265.772c9.727 10.529 16.673 23.661 19.642 38.228h-43.306l23.664-38.228zM128.002 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c5.869 0 11.586.653 17.099 1.859l-45.505 73.509C89.715 331.327 101.213 352 120.002 352h81.3c-12.37 28.225-40.562 48-73.3 48zm162.63-96h-35.624c-3.96-31.756-19.556-59.894-42.383-80.026L237.371 184h127.547l-74.286 120zm217.057 95.886c-41.036-2.165-74.049-35.692-75.627-76.755-.812-21.121 6.633-40.518 19.335-55.263l44.433 71.586c4.66 7.508 14.524 9.816 22.032 5.156l13.594-8.437c7.508-4.66 9.817-14.524 5.156-22.032l-44.468-71.643a79.901 79.901 0 0 1 19.858-2.497c44.112 0 80 35.888 80 80-.001 45.54-38.252 82.316-84.313 79.885z"] }; +var faBinoculars = { prefix: 'fas', iconName: 'binoculars', icon: [512, 512, [], "f1e5", "M192 104H96V56c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24v48zm224-48c0-13.255-10.745-24-24-24h-48c-13.255 0-24 10.745-24 24v48h96V56zM0 456c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H0v16zm88-328c-13.255 0-24 10.745-24 24C64 256 0 272 0 416h168V312c0-13.255 10.745-24 24-24V128H88zm256 328c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H344v16zM216 128v160h80V128h-80zm128 288h168c0-144-64-160-64-264 0-13.255-10.745-24-24-24H320v160c13.255 0 24 10.745 24 24v104z"] }; +var faBirthdayCake = { prefix: 'fas', iconName: 'birthday-cake', icon: [448, 512, [], "f1fd", "M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z"] }; +var faBlender = { prefix: 'fas', iconName: 'blender', icon: [512, 512, [], "f517", "M416 384H160c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-128 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm40-416h166.54L512 0H48C21.49 0 0 21.49 0 48v160c0 26.51 21.49 48 48 48h103.27l8.73 96h256l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H328c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM64 192V64h69.82l11.64 128H64z"] }; +var faBlind = { prefix: 'fas', iconName: 'blind', icon: [384, 512, [], "f29d", "M380.15 510.837a8 8 0 0 1-10.989-2.687l-125.33-206.427a31.923 31.923 0 0 0 12.958-9.485l126.048 207.608a8 8 0 0 1-2.687 10.991zM142.803 314.338l-32.54 89.485 36.12 88.285c6.693 16.36 25.377 24.192 41.733 17.501 16.357-6.692 24.193-25.376 17.501-41.734l-62.814-153.537zM96 88c24.301 0 44-19.699 44-44S120.301 0 96 0 52 19.699 52 44s19.699 44 44 44zm154.837 169.128l-120-152c-4.733-5.995-11.75-9.108-18.837-9.112V96H80v.026c-7.146.003-14.217 3.161-18.944 9.24L0 183.766v95.694c0 13.455 11.011 24.791 24.464 24.536C37.505 303.748 48 293.1 48 280v-79.766l16-20.571v140.698L9.927 469.055c-6.04 16.609 2.528 34.969 19.138 41.009 16.602 6.039 34.968-2.524 41.009-19.138L136 309.638V202.441l-31.406-39.816a4 4 0 1 1 6.269-4.971l102.3 129.217c9.145 11.584 24.368 11.339 33.708 3.965 10.41-8.216 12.159-23.334 3.966-33.708z"] }; +var faBold = { prefix: 'fas', iconName: 'bold', icon: [384, 512, [], "f032", "M304.793 243.891c33.639-18.537 53.657-54.16 53.657-95.693 0-48.236-26.25-87.626-68.626-104.179C265.138 34.01 240.849 32 209.661 32H24c-8.837 0-16 7.163-16 16v33.049c0 8.837 7.163 16 16 16h33.113v318.53H24c-8.837 0-16 7.163-16 16V464c0 8.837 7.163 16 16 16h195.69c24.203 0 44.834-1.289 66.866-7.584C337.52 457.193 376 410.647 376 350.014c0-52.168-26.573-91.684-71.207-106.123zM142.217 100.809h67.444c16.294 0 27.536 2.019 37.525 6.717 15.828 8.479 24.906 26.502 24.906 49.446 0 35.029-20.32 56.79-53.029 56.79h-76.846V100.809zm112.642 305.475c-10.14 4.056-22.677 4.907-31.409 4.907h-81.233V281.943h84.367c39.645 0 63.057 25.38 63.057 63.057.001 28.425-13.66 52.483-34.782 61.284z"] }; +var faBolt = { prefix: 'fas', iconName: 'bolt', icon: [320, 512, [], "f0e7", "M295.973 160H180.572L215.19 30.184C219.25 14.956 207.756 0 192 0H56C43.971 0 33.8 8.905 32.211 20.828l-31.996 240C-1.704 275.217 9.504 288 24.004 288h118.701L96.646 482.466C93.05 497.649 104.659 512 119.992 512c8.35 0 16.376-4.374 20.778-11.978l175.973-303.997c9.244-15.967-2.288-36.025-20.77-36.025z"] }; +var faBomb = { prefix: 'fas', iconName: 'bomb', icon: [512, 512, [], "f1e2", "M440.5 88.5l-52 52L415 167c9.4 9.4 9.4 24.6 0 33.9l-17.4 17.4c11.8 26.1 18.4 55.1 18.4 85.6 0 114.9-93.1 208-208 208S0 418.9 0 304 93.1 96 208 96c30.5 0 59.5 6.6 85.6 18.4L311 97c9.4-9.4 24.6-9.4 33.9 0l26.5 26.5 52-52 17.1 17zM500 60h-24c-6.6 0-12 5.4-12 12s5.4 12 12 12h24c6.6 0 12-5.4 12-12s-5.4-12-12-12zM440 0c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12s12-5.4 12-12V12c0-6.6-5.4-12-12-12zm33.9 55l17-17c4.7-4.7 4.7-12.3 0-17-4.7-4.7-12.3-4.7-17 0l-17 17c-4.7 4.7-4.7 12.3 0 17 4.8 4.7 12.4 4.7 17 0zm-67.8 0c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17zm67.8 34c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17zM112 272c0-35.3 28.7-64 64-64 8.8 0 16-7.2 16-16s-7.2-16-16-16c-52.9 0-96 43.1-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16z"] }; +var faBook = { prefix: 'fas', iconName: 'book', icon: [448, 512, [], "f02d", "M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z"] }; +var faBookOpen = { prefix: 'fas', iconName: 'book-open', icon: [576, 512, [], "f518", "M542.2.1c-54.8 3.1-163.7 14.4-231 55.6-4.6 2.8-7.3 7.9-7.3 13.2v363.9c0 11.5 12.6 18.8 23.3 13.5 69.2-34.8 169.2-44.3 218.7-46.9 16.9-.9 30-14.4 30-30.7v-338C576 13 560.6-1 542.2.1zM264.7 55.6C197.5 14.5 88.6 3.2 33.8.1 15.4-1 0 13 0 30.7v337.8c0 16.2 13.1 29.8 30 30.7 49.5 2.6 149.6 12.1 218.8 47 10.6 5.4 23.2-1.9 23.2-13.5V68.6c0-5.3-2.6-10.1-7.3-13z"] }; +var faBookmark = { prefix: 'fas', iconName: 'bookmark', icon: [384, 512, [], "f02e", "M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z"] }; +var faBowlingBall = { prefix: 'fas', iconName: 'bowling-ball', icon: [496, 512, [], "f436", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM120 192c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64-96c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm48 144c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faBox = { prefix: 'fas', iconName: 'box', icon: [512, 512, [], "f466", "M509.5 184.6L458.9 32.8C452.4 13.2 434.1 0 413.4 0H272v192h238.7c-.4-2.5-.4-5-1.2-7.4zM240 0H98.6c-20.7 0-39 13.2-45.5 32.8L2.5 184.6c-.8 2.4-.8 4.9-1.2 7.4H240V0zM0 224v240c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V224H0z"] }; +var faBoxOpen = { prefix: 'fas', iconName: 'box-open', icon: [640, 512, [], "f49e", "M53.2 41L1.7 143.8c-4.6 9.2.3 20.2 10.1 23l197.9 56.5c7.1 2 14.7-1 18.5-7.3L320 64 69.8 32.1c-6.9-.8-13.5 2.7-16.6 8.9zm585.1 102.8L586.8 41c-3.1-6.2-9.8-9.8-16.7-8.9L320 64l91.7 152.1c3.8 6.3 11.4 9.3 18.5 7.3l197.9-56.5c9.9-2.9 14.7-13.9 10.2-23.1zM425.7 256c-16.9 0-32.8-9-41.4-23.4L320 126l-64.2 106.6c-8.7 14.5-24.6 23.5-41.5 23.5-4.5 0-9-.6-13.3-1.9L64 215v178c0 14.7 10 27.5 24.2 31l216.2 54.1c10.2 2.5 20.9 2.5 31 0L551.8 424c14.2-3.6 24.2-16.4 24.2-31V215l-137 39.1c-4.3 1.3-8.8 1.9-13.3 1.9z"] }; +var faBoxes = { prefix: 'fas', iconName: 'boxes', icon: [576, 512, [], "f468", "M560 288h-80v96l-32-21.3-32 21.3v-96h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16zm-384-64h224c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16h-80v96l-32-21.3L256 96V0h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16zm64 64h-80v96l-32-21.3L96 384v-96H16c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16z"] }; +var faBraille = { prefix: 'fas', iconName: 'braille', icon: [640, 512, [], "f2a1", "M128 256c0 35.346-28.654 64-64 64S0 291.346 0 256s28.654-64 64-64 64 28.654 64 64zM64 384c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352C28.654 32 0 60.654 0 96s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm224 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-320c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; +var faBriefcase = { prefix: 'fas', iconName: 'briefcase', icon: [512, 512, [], "f0b1", "M320 288h192v144c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V288h192v20c0 6.627 5.373 12 12 12h104c6.627 0 12-5.373 12-12v-20zm192-112v80H0v-80c0-26.51 21.49-48 48-48h80V80c0-26.51 21.49-48 48-48h160c26.51 0 48 21.49 48 48v48h80c26.51 0 48 21.49 48 48zM320 96H192v32h128V96z"] }; +var faBriefcaseMedical = { prefix: 'fas', iconName: 'briefcase-medical', icon: [512, 512, [], "f469", "M464 128h-80V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48zM192 96h128v32H192V96zm160 248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48z"] }; +var faBroadcastTower = { prefix: 'fas', iconName: 'broadcast-tower', icon: [640, 512, [], "f519", "M150.94 192h33.73c11.01 0 18.61-10.83 14.86-21.18-4.93-13.58-7.55-27.98-7.55-42.82s2.62-29.24 7.55-42.82C203.29 74.83 195.68 64 184.67 64h-33.73c-7.01 0-13.46 4.49-15.41 11.23C130.64 92.21 128 109.88 128 128c0 18.12 2.64 35.79 7.54 52.76 1.94 6.74 8.39 11.24 15.4 11.24zM89.92 23.34C95.56 12.72 87.97 0 75.96 0H40.63c-6.27 0-12.14 3.59-14.74 9.31C9.4 45.54 0 85.65 0 128c0 24.75 3.12 68.33 26.69 118.86 2.62 5.63 8.42 9.14 14.61 9.14h34.84c12.02 0 19.61-12.74 13.95-23.37-49.78-93.32-16.71-178.15-.17-209.29zM614.06 9.29C611.46 3.58 605.6 0 599.33 0h-35.42c-11.98 0-19.66 12.66-14.02 23.25 18.27 34.29 48.42 119.42.28 209.23-5.72 10.68 1.8 23.52 13.91 23.52h35.23c6.27 0 12.13-3.58 14.73-9.29C630.57 210.48 640 170.36 640 128s-9.42-82.48-25.94-118.71zM489.06 64h-33.73c-11.01 0-18.61 10.83-14.86 21.18 4.93 13.58 7.55 27.98 7.55 42.82s-2.62 29.24-7.55 42.82c-3.76 10.35 3.85 21.18 14.86 21.18h33.73c7.02 0 13.46-4.49 15.41-11.24 4.9-16.97 7.53-34.64 7.53-52.76 0-18.12-2.64-35.79-7.54-52.76-1.94-6.75-8.39-11.24-15.4-11.24zm-116.3 100.12c7.05-10.29 11.2-22.71 11.2-36.12 0-35.35-28.63-64-63.96-64-35.32 0-63.96 28.65-63.96 64 0 13.41 4.15 25.83 11.2 36.12l-130.5 313.41c-3.4 8.15.46 17.52 8.61 20.92l29.51 12.31c8.15 3.4 17.52-.46 20.91-8.61L244.96 384h150.07l49.2 118.15c3.4 8.16 12.76 12.01 20.91 8.61l29.51-12.31c8.15-3.4 12-12.77 8.61-20.92l-130.5-313.41zM271.62 320L320 203.81 368.38 320h-96.76z"] }; +var faBroom = { prefix: 'fas', iconName: 'broom', icon: [512, 512, [], "f51a", "M10.8 247.2C-.7 251.8-3.7 266.7 5 275.4l54.8 54.8 73.2-24.4-24.4 73.2 128 128c8.8 8.8 23.6 5.7 28.2-5.8l98.1-243.7-108.4-108.4-243.7 98.1zM507.3 27.3L484.7 4.7c-6.2-6.3-16.4-6.3-22.6 0L359.8 106.9l-40.4-40.4c-4.2-4.3-11.4-3-13.9 2.5l-27.2 58.6 106.1 106.1 58.6-27.2c5.4-2.5 6.7-9.7 2.5-13.9l-40.4-40.4L507.3 49.9c6.3-6.2 6.3-16.3 0-22.6z"] }; +var faBug = { prefix: 'fas', iconName: 'bug', icon: [512, 512, [], "f188", "M511.988 288.9c-.478 17.43-15.217 31.1-32.653 31.1H424v16c0 21.864-4.882 42.584-13.6 61.145l60.228 60.228c12.496 12.497 12.496 32.758 0 45.255-12.498 12.497-32.759 12.496-45.256 0l-54.736-54.736C345.886 467.965 314.351 480 280 480V236c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v244c-34.351 0-65.886-12.035-90.636-32.108l-54.736 54.736c-12.498 12.497-32.759 12.496-45.256 0-12.496-12.497-12.496-32.758 0-45.255l60.228-60.228C92.882 378.584 88 357.864 88 336v-16H32.666C15.23 320 .491 306.33.013 288.9-.484 270.816 14.028 256 32 256h56v-58.745l-46.628-46.628c-12.496-12.497-12.496-32.758 0-45.255 12.498-12.497 32.758-12.497 45.256 0L141.255 160h229.489l54.627-54.627c12.498-12.497 32.758-12.497 45.256 0 12.496 12.497 12.496 32.758 0 45.255L424 197.255V256h56c17.972 0 32.484 14.816 31.988 32.9zM257 0c-61.856 0-112 50.144-112 112h224C369 50.144 318.856 0 257 0z"] }; +var faBuilding = { prefix: 'fas', iconName: 'building', icon: [448, 512, [], "f1ad", "M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z"] }; +var faBullhorn = { prefix: 'fas', iconName: 'bullhorn', icon: [576, 512, [], "f0a1", "M576 224c0-20.896-13.36-38.666-32-45.258V64c0-35.346-28.654-64-64-64-64.985 56-142.031 128-272 128H48c-26.51 0-48 21.49-48 48v96c0 26.51 21.49 48 48 48h43.263c-18.742 64.65 2.479 116.379 18.814 167.44 1.702 5.32 5.203 9.893 9.922 12.88 20.78 13.155 68.355 15.657 93.773 5.151 16.046-6.633 19.96-27.423 7.522-39.537-18.508-18.026-30.136-36.91-19.795-60.858a12.278 12.278 0 0 0-1.045-11.673c-16.309-24.679-3.581-62.107 28.517-72.752C346.403 327.887 418.591 395.081 480 448c35.346 0 64-28.654 64-64V269.258c18.64-6.592 32-24.362 32-45.258zm-96 139.855c-54.609-44.979-125.033-92.94-224-104.982v-69.747c98.967-12.042 169.391-60.002 224-104.982v279.711z"] }; +var faBullseye = { prefix: 'fas', iconName: 'bullseye', icon: [512, 512, [], "f140", "M256 72c101.689 0 184 82.295 184 184 0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-101.689 82.295-184 184-184m0-64C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 184c35.29 0 64 28.71 64 64s-28.71 64-64 64-64-28.71-64-64 28.71-64 64-64m0-64c-70.692 0-128 57.308-128 128s57.308 128 128 128 128-57.308 128-128-57.308-128-128-128z"] }; +var faBurn = { prefix: 'fas', iconName: 'burn', icon: [384, 512, [], "f46a", "M192 0C79.7 101.3 0 220.9 0 300.5 0 425 79 512 192 512s192-87 192-211.5c0-79.9-80.2-199.6-192-300.5zm0 448c-56.5 0-96-39-96-94.8 0-13.5 4.6-61.5 96-161.2 91.4 99.7 96 147.7 96 161.2 0 55.8-39.5 94.8-96 94.8z"] }; +var faBus = { prefix: 'fas', iconName: 'bus', icon: [512, 512, [], "f207", "M512 152v80c0 13.255-10.745 24-24 24h-8v168c0 13.255-10.745 24-24 24h-8v40c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24v-40H160v40c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24v-40h-8c-13.255 0-24-10.745-24-24V256h-8c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h8V80C32 35.817 132.288 0 256 0s224 35.817 224 80v48h8c13.255 0 24 10.745 24 24zM112 320c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288 0c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm32-56V120c0-13.255-10.745-24-24-24H104c-13.255 0-24 10.745-24 24v144c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z"] }; +var faCalculator = { prefix: 'fas', iconName: 'calculator', icon: [448, 512, [], "f1ec", "M0 464V48C0 21.49 21.49 0 48 0h352c26.51 0 48 21.49 48 48v416c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm384-284V76c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v104c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12zM128 308v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm256 128V268c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-256 0v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm128-128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm0 128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"] }; +var faCalendar = { prefix: 'fas', iconName: 'calendar', icon: [448, 512, [], "f133", "M12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm436-44v-36c0-26.5-21.5-48-48-48h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v36c0 6.6 5.4 12 12 12h424c6.6 0 12-5.4 12-12z"] }; +var faCalendarAlt = { prefix: 'fas', iconName: 'calendar-alt', icon: [448, 512, [], "f073", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm116 204c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40z"] }; +var faCalendarCheck = { prefix: 'fas', iconName: 'calendar-check', icon: [448, 512, [], "f274", "M436 160H12c-6.627 0-12-5.373-12-12v-36c0-26.51 21.49-48 48-48h48V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h128V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h48c26.51 0 48 21.49 48 48v36c0 6.627-5.373 12-12 12zM12 192h424c6.627 0 12 5.373 12 12v260c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V204c0-6.627 5.373-12 12-12zm333.296 95.947l-28.169-28.398c-4.667-4.705-12.265-4.736-16.97-.068L194.12 364.665l-45.98-46.352c-4.667-4.705-12.266-4.736-16.971-.068l-28.397 28.17c-4.705 4.667-4.736 12.265-.068 16.97l82.601 83.269c4.667 4.705 12.265 4.736 16.97.068l142.953-141.805c4.705-4.667 4.736-12.265.068-16.97z"] }; +var faCalendarMinus = { prefix: 'fas', iconName: 'calendar-minus', icon: [448, 512, [], "f272", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm304 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H132c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h184z"] }; +var faCalendarPlus = { prefix: 'fas', iconName: 'calendar-plus', icon: [448, 512, [], "f271", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm316 140c0-6.6-5.4-12-12-12h-60v-60c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v60h-60c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h60v60c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-60h60c6.6 0 12-5.4 12-12v-40z"] }; +var faCalendarTimes = { prefix: 'fas', iconName: 'calendar-times', icon: [448, 512, [], "f273", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm257.3 160l48.1-48.1c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0L224 306.7l-48.1-48.1c-4.7-4.7-12.3-4.7-17 0l-28.3 28.3c-4.7 4.7-4.7 12.3 0 17l48.1 48.1-48.1 48.1c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l48.1-48.1 48.1 48.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L269.3 352z"] }; +var faCamera = { prefix: 'fas', iconName: 'camera', icon: [512, 512, [], "f030", "M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z"] }; +var faCameraRetro = { prefix: 'fas', iconName: 'camera-retro', icon: [512, 512, [], "f083", "M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm0 32h106c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H38c-3.3 0-6-2.7-6-6V80c0-8.8 7.2-16 16-16zm426 96H38c-3.3 0-6-2.7-6-6v-36c0-3.3 2.7-6 6-6h138l30.2-45.3c1.1-1.7 3-2.7 5-2.7H464c8.8 0 16 7.2 16 16v74c0 3.3-2.7 6-6 6zM256 424c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88zm-48 104c-8.8 0-16-7.2-16-16 0-35.3 28.7-64 64-64 8.8 0 16 7.2 16 16s-7.2 16-16 16c-17.6 0-32 14.4-32 32 0 8.8-7.2 16-16 16z"] }; +var faCapsules = { prefix: 'fas', iconName: 'capsules', icon: [576, 512, [], "f46b", "M555.3 300.1L424.2 112.8C401.9 81 366.4 64 330.4 64c-22.6 0-45.5 6.7-65.5 20.7-19.7 13.8-33.7 32.8-41.5 53.8C220.5 79.2 172 32 112 32 50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V218.9c3.3 8.6 7.3 17.1 12.8 25L368 431.2c22.2 31.8 57.7 48.8 93.8 48.8 22.7 0 45.5-6.7 65.5-20.7 51.7-36.2 64.2-107.5 28-159.2zM160 256H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm194.8 44.9l-65.6-93.7c-7.7-11-10.7-24.4-8.3-37.6 2.3-13.2 9.7-24.8 20.7-32.5 8.5-6 18.5-9.1 28.8-9.1 16.5 0 31.9 8 41.3 21.5l65.6 93.7-82.5 57.7z"] }; +var faCar = { prefix: 'fas', iconName: 'car', icon: [512, 512, [], "f1b9", "M499.991 168h-54.815l-7.854-20.944c-9.192-24.513-25.425-45.351-46.942-60.263S343.651 64 317.472 64H194.528c-26.18 0-51.391 7.882-72.908 22.793-21.518 14.912-37.75 35.75-46.942 60.263L66.824 168H12.009c-8.191 0-13.974 8.024-11.384 15.795l8 24A12 12 0 0 0 20.009 216h28.815l-.052.14C29.222 227.093 16 247.997 16 272v48c0 16.225 6.049 31.029 16 42.309V424c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-40h256v40c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-61.691c9.951-11.281 16-26.085 16-42.309v-48c0-24.003-13.222-44.907-32.772-55.86l-.052-.14h28.815a12 12 0 0 0 11.384-8.205l8-24c2.59-7.771-3.193-15.795-11.384-15.795zm-365.388 1.528C143.918 144.689 168 128 194.528 128h122.944c26.528 0 50.61 16.689 59.925 41.528L391.824 208H120.176l14.427-38.472zM88 328c-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32s48 30.327 48 48-30.327 16-48 16zm336 0c-17.673 0-48 1.673-48-16 0-17.673 30.327-48 48-48s32 14.327 32 32c0 17.673-14.327 32-32 32z"] }; +var faCaretDown = { prefix: 'fas', iconName: 'caret-down', icon: [320, 512, [], "f0d7", "M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z"] }; +var faCaretLeft = { prefix: 'fas', iconName: 'caret-left', icon: [192, 512, [], "f0d9", "M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z"] }; +var faCaretRight = { prefix: 'fas', iconName: 'caret-right', icon: [192, 512, [], "f0da", "M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z"] }; +var faCaretSquareDown = { prefix: 'fas', iconName: 'caret-square-down', icon: [448, 512, [], "f150", "M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM92.5 220.5l123 123c4.7 4.7 12.3 4.7 17 0l123-123c7.6-7.6 2.2-20.5-8.5-20.5H101c-10.7 0-16.1 12.9-8.5 20.5z"] }; +var faCaretSquareLeft = { prefix: 'fas', iconName: 'caret-square-left', icon: [448, 512, [], "f191", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM259.515 124.485l-123.03 123.03c-4.686 4.686-4.686 12.284 0 16.971l123.029 123.029c7.56 7.56 20.485 2.206 20.485-8.485V132.971c.001-10.691-12.925-16.045-20.484-8.486z"] }; +var faCaretSquareRight = { prefix: 'fas', iconName: 'caret-square-right', icon: [448, 512, [], "f152", "M48 32h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48zm140.485 355.515l123.029-123.029c4.686-4.686 4.686-12.284 0-16.971l-123.029-123.03c-7.56-7.56-20.485-2.206-20.485 8.485v246.059c0 10.691 12.926 16.045 20.485 8.486z"] }; +var faCaretSquareUp = { prefix: 'fas', iconName: 'caret-square-up', icon: [448, 512, [], "f151", "M0 432V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm355.515-140.485l-123.03-123.03c-4.686-4.686-12.284-4.686-16.971 0L92.485 291.515c-7.56 7.56-2.206 20.485 8.485 20.485h246.059c10.691 0 16.045-12.926 8.486-20.485z"] }; +var faCaretUp = { prefix: 'fas', iconName: 'caret-up', icon: [320, 512, [], "f0d8", "M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z"] }; +var faCartArrowDown = { prefix: 'fas', iconName: 'cart-arrow-down', icon: [576, 512, [], "f218", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z"] }; +var faCartPlus = { prefix: 'fas', iconName: 'cart-plus', icon: [576, 512, [], "f217", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM408 168h-48v-40c0-8.837-7.163-16-16-16h-16c-8.837 0-16 7.163-16 16v40h-48c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h48v40c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-40h48c8.837 0 16-7.163 16-16v-16c0-8.837-7.163-16-16-16z"] }; +var faCertificate = { prefix: 'fas', iconName: 'certificate', icon: [512, 512, [], "f0a3", "M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z"] }; +var faChalkboard = { prefix: 'fas', iconName: 'chalkboard', icon: [640, 512, [], "f51b", "M96 64h448v352h64V40c0-22.06-17.94-40-40-40H72C49.94 0 32 17.94 32 40v376h64V64zm528 384H480v-64H288v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"] }; +var faChalkboardTeacher = { prefix: 'fas', iconName: 'chalkboard-teacher', icon: [640, 512, [], "f51c", "M208 352c-2.39 0-4.78.35-7.06 1.09C187.98 357.3 174.35 360 160 360c-14.35 0-27.98-2.7-40.95-6.91-2.28-.74-4.66-1.09-7.05-1.09C49.94 352-.33 402.48 0 464.62.14 490.88 21.73 512 48 512h224c26.27 0 47.86-21.12 48-47.38.33-62.14-49.94-112.62-112-112.62zm-48-32c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM592 0H208c-26.47 0-48 22.25-48 49.59V96c23.42 0 45.1 6.78 64 17.8V64h352v288h-64v-64H384v64h-76.24c19.1 16.69 33.12 38.73 39.69 64H592c26.47 0 48-22.25 48-49.59V49.59C640 22.25 618.47 0 592 0z"] }; +var faChartArea = { prefix: 'fas', iconName: 'chart-area', icon: [512, 512, [], "f1fe", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z"] }; +var faChartBar = { prefix: 'fas', iconName: 'chart-bar', icon: [512, 512, [], "f080", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zm-308-44v-72c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V204c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V108c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"] }; +var faChartLine = { prefix: 'fas', iconName: 'chart-line', icon: [512, 512, [], "f201", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM456 96H344c-21.4 0-32.1 25.9-17 41l32.9 32.9-72 72.9-55.6-55.6c-4.7-4.7-12.2-4.7-16.9 0L96.4 305c-4.7 4.6-4.8 12.2-.2 16.9l28.5 29.4c4.7 4.8 12.4 4.9 17.1.1l82.1-82.1 55.5 55.5c4.7 4.7 12.3 4.7 17 0l109.2-109.2L439 249c15.1 15.1 41 4.4 41-17V120c0-13.3-10.7-24-24-24z"] }; +var faChartPie = { prefix: 'fas', iconName: 'chart-pie', icon: [576, 512, [], "f200", "M288 12.3V240h227.7c6.9 0 12.3-5.8 12-12.7-6.4-122.4-104.5-220.6-227-227-6.9-.3-12.7 5.1-12.7 12zM552.7 288c6.9 0 12.3 5.8 12 12.7-2.8 53.2-23.2 105.6-61.2 147.8-4.6 5.1-12.6 5.4-17.5.5L325 288h227.7zM401 433c4.8 4.8 4.7 12.8-.4 17.3-42.6 38.4-99 61.7-160.8 61.7C107.6 511.9-.2 403.8 0 271.5.2 143.4 100.8 38.9 227.3 32.3c6.9-.4 12.7 5.1 12.7 12V272l161 161z"] }; +var faCheck = { prefix: 'fas', iconName: 'check', icon: [512, 512, [], "f00c", "M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"] }; +var faCheckCircle = { prefix: 'fas', iconName: 'check-circle', icon: [512, 512, [], "f058", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"] }; +var faCheckSquare = { prefix: 'fas', iconName: 'check-square', icon: [448, 512, [], "f14a", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"] }; +var faChess = { prefix: 'fas', iconName: 'chess', icon: [512, 512, [], "f439", "M199.821 217.633a6 6 0 0 1 6 6l-.001 20.766a6 6 0 0 1-6 6h-25.805c0 31.715-2.153 96.201 17.398 153.229H64.597C84.54 345.452 82.02 279.245 82.02 250.399H56.183a6 6 0 0 1-6-6l.002-20.766a6 6 0 0 1 6-6h143.636zM41.554 115.088l34.58 95.071h103.734l34.572-95.072c2.846-7.826-2.95-16.101-11.278-16.101H152v-30.22h21.57a6 6 0 0 0 6-6V40.383a6 6 0 0 0-6-6h-28.367V6a6 6 0 0 0-6-6H116.82a6 6 0 0 0-6 6v28.383H82.421a6 6 0 0 0-6 6v22.383a6 6 0 0 0 6 6H104v30.219H52.831c-8.328.001-14.124 8.276-11.277 16.103zM222.678 445.17v-28.067a6 6 0 0 0-6-6H39.322a6 6 0 0 0-6 6v28.067l-22.148 14.164a6 6 0 0 0-2.767 5.055V506a6 6 0 0 0 6 6h227.187a6 6 0 0 0 6-6v-41.612a6 6 0 0 0-2.767-5.055l-22.149-14.163zm90.578-144.225l24.88 16.963c.09 18.124-.167 63.904-11.905 114.522h147.526c-11.713-50.475-11.969-96.324-11.882-114.537l24.859-16.949a3.856 3.856 0 0 0 1.684-3.187v-69.901a3.857 3.857 0 0 0-3.857-3.857h-27.655a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.858-3.857h-52.918a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.857-3.857H315.43a3.857 3.857 0 0 0-3.857 3.857v69.901a3.855 3.855 0 0 0 1.683 3.188zm71.585 51.906c0-8.372 6.787-15.158 15.159-15.158s15.158 6.787 15.158 15.158v30.318h-30.317v-30.318zM504.62 470.059l-13.664-10.639v-15.552a3.857 3.857 0 0 0-3.857-3.857H312.915a3.857 3.857 0 0 0-3.857 3.857v15.552l-13.677 10.639a3.857 3.857 0 0 0-1.488 3.044v35.039a3.857 3.857 0 0 0 3.857 3.857h204.5a3.857 3.857 0 0 0 3.857-3.857v-35.04a3.859 3.859 0 0 0-1.487-3.043z"] }; +var faChessBishop = { prefix: 'fas', iconName: 'chess-bishop', icon: [320, 512, [], "f43a", "M123.158 77.881C107.369 72.53 96 57.597 96 40c0-22.091 17.909-40 40-40h47.796c22.091 0 40 17.909 40 40 0 17.541-11.295 32.434-27.005 37.829 23.993 16.657 48.577 46.839 68.703 82.05L144.929 280.443a6 6 0 0 0 0 8.485l14.142 14.142a6 6 0 0 0 8.485 0L280.9 189.726c17.758 38.297 29.371 79.443 29.371 114.273 0 53.786-22.897 75.788-58.446 86.033V448H68.174v-57.97C32.631 379.784 9.739 357.781 9.739 304c0-78.029 58.281-187.766 113.419-226.119zM320 500v-24c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12z"] }; +var faChessBoard = { prefix: 'fas', iconName: 'chess-board', icon: [512, 512, [], "f43c", "M256 256v64h-64v-64h64zm0-256h-64v64h64V0zm0 256h64v-64h-64v64zM384 0h-64v64h64V0zm0 512h64v-64h-64v64zm128-64v-64h-64v64h64zm-384 64h64v-64h-64v64zm0-512H64v64h64V0zm384 192v-64h-64v64h64zm0 128v-64h-64v64h64zM0 512h64v-64H0v64zM0 64v64h64V64H0zm0 128v64h64v-64H0zm0 128v64h64v-64H0zm256 192h64v-64h-64v64zm-64-128v64h64v-64h-64zm64-192v-64h-64v64h64zM64 384v64h64v-64H64zm64-128H64v64h64v-64zm256 128h64v-64h-64v64zM512 0h-64v64h64V0zM384 256h64v-64h-64v64zm0-192v64h64V64h-64zm-64 320v64h64v-64h-64zm-192-64v64h64v-64h-64zm128 0v64h64v-64h-64zm-64-128h-64v64h64v-64zm-64-64H64v64h64v-64zm192 192h64v-64h-64v64zM192 128V64h-64v64h64zm128 0V64h-64v64h64zm0 64h64v-64h-64v64z"] }; +var faChessKing = { prefix: 'fas', iconName: 'chess-king', icon: [448, 512, [], "f43f", "M416 476v24c0 6.627-5.373 12-12 12H44c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12zm-8.033-324H248v-48h50a6 6 0 0 0 6-6V62a6 6 0 0 0-6-6h-50V6a6 6 0 0 0-6-6h-36a6 6 0 0 0-6 6v50h-50a6 6 0 0 0-6 6v36a6 6 0 0 0 6 6h50v48H40.033c-27.574 0-46.879 27.244-37.738 53.259L87.582 448h272.836l85.287-242.741C454.846 179.244 435.541 152 407.967 152z"] }; +var faChessKnight = { prefix: 'fas', iconName: 'chess-knight', icon: [384, 512, [], "f441", "M352 224v224H32v-46.557c0-30.302 17.12-58.003 44.223-71.554l57.243-28.622A48 48 0 0 0 160 258.334V208l-22.127 11.063a23.996 23.996 0 0 0-12.55 15.645l-11.835 47.338a12 12 0 0 1-7.185 8.231l-29.601 11.84a11.998 11.998 0 0 1-9.33-.176L7.126 275.167A12 12 0 0 1 0 264.201v-158.26c0-6.365 2.529-12.47 7.03-16.971L16 80 1.789 51.578A16.937 16.937 0 0 1 0 44c0-6.627 5.373-12 12-12h148c106.039 0 192 85.961 192 192zm20 240H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12zM52 128c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z"] }; +var faChessPawn = { prefix: 'fas', iconName: 'chess-pawn', icon: [320, 512, [], "f443", "M264 448H56s60-42.743 60-176H84c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h40.209C95.721 210.56 76 181.588 76 148c0-46.392 37.608-84 84-84s84 37.608 84 84c0 33.588-19.721 62.56-48.209 76H236c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12h-32c0 133.257 60 176 60 176zm28 16H28c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h264c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12z"] }; +var faChessQueen = { prefix: 'fas', iconName: 'chess-queen', icon: [512, 512, [], "f445", "M436 512H76c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12zM255.579 0c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zm204.568 154.634c-5.768-3.045-12.916-.932-16.082 4.77-8.616 15.516-22.747 37.801-44.065 37.801-28.714 0-30.625-19.804-31.686-57.542-.183-6.492-5.501-11.664-11.995-11.664h-41.006c-5.175 0-9.754 3.328-11.388 8.238-8.89 26.709-26.073 40.992-47.925 40.992s-39.034-14.283-47.925-40.992c-1.634-4.91-6.213-8.238-11.388-8.238h-41.005c-6.495 0-11.813 5.174-11.995 11.667-1.052 37.642-2.934 57.539-31.688 57.539-20.691 0-33.817-20.224-44.425-38.025-3.266-5.48-10.258-7.431-15.899-4.453l-39.179 20.679a12 12 0 0 0-5.51 15.145L112 448h288l105.014-257.448a12 12 0 0 0-5.51-15.145l-39.357-20.773z"] }; +var faChessRook = { prefix: 'fas', iconName: 'chess-rook', icon: [384, 512, [], "f447", "M81.241 215.027C80.957 258.92 77.411 348.076 48 448h287.982c-29.4-99.604-32.936-188.912-33.221-232.975l45.418-42.312a11.998 11.998 0 0 0 3.82-8.78V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v44h-48V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v44H96V44c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v119.932c0 3.33 1.384 6.51 3.82 8.78l45.421 42.315zM160 256c0-17.673 14.327-32 32-32 17.673 0 32 14.327 32 32v64.004h-64V256zm224 220v24c0 6.627-5.373 12-12 12H12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12z"] }; +var faChevronCircleDown = { prefix: 'fas', iconName: 'chevron-circle-down', icon: [512, 512, [], "f13a", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM273 369.9l135.5-135.5c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L256 285.1 154.4 183.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L239 369.9c9.4 9.4 24.6 9.4 34 0z"] }; +var faChevronCircleLeft = { prefix: 'fas', iconName: 'chevron-circle-left', icon: [512, 512, [], "f137", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z"] }; +var faChevronCircleRight = { prefix: 'fas', iconName: 'chevron-circle-right', icon: [512, 512, [], "f138", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z"] }; +var faChevronCircleUp = { prefix: 'fas', iconName: 'chevron-circle-up', icon: [512, 512, [], "f139", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm231-113.9L103.5 277.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L256 226.9l101.6 101.6c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L273 142.1c-9.4-9.4-24.6-9.4-34 0z"] }; +var faChevronDown = { prefix: 'fas', iconName: 'chevron-down', icon: [448, 512, [], "f078", "M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"] }; +var faChevronLeft = { prefix: 'fas', iconName: 'chevron-left', icon: [320, 512, [], "f053", "M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z"] }; +var faChevronRight = { prefix: 'fas', iconName: 'chevron-right', icon: [320, 512, [], "f054", "M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z"] }; +var faChevronUp = { prefix: 'fas', iconName: 'chevron-up', icon: [448, 512, [], "f077", "M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z"] }; +var faChild = { prefix: 'fas', iconName: 'child', icon: [384, 512, [], "f1ae", "M120 72c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.764-32.235 72-72 72s-72-32.236-72-72zm254.627 1.373c-12.496-12.497-32.758-12.497-45.254 0L242.745 160H141.254L54.627 73.373c-12.496-12.497-32.758-12.497-45.254 0-12.497 12.497-12.497 32.758 0 45.255L104 213.254V480c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V368h16v112c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V213.254l94.627-94.627c12.497-12.497 12.497-32.757 0-45.254z"] }; +var faChurch = { prefix: 'fas', iconName: 'church', icon: [640, 512, [], "f51d", "M464.46 246.68L352 179.2V128h48c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-48V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v48h-48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v51.2l-112.46 67.48A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.65-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.54A32.024 32.024 0 0 0 0 395.96zm620.61-29.42L512 320v192h112c8.84 0 16-7.16 16-16V395.96c0-12.8-7.63-24.37-19.39-29.42z"] }; +var faCircle = { prefix: 'fas', iconName: 'circle', icon: [512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"] }; +var faCircleNotch = { prefix: 'fas', iconName: 'circle-notch', icon: [512, 512, [], "f1ce", "M288 39.056v16.659c0 10.804 7.281 20.159 17.686 23.066C383.204 100.434 440 171.518 440 256c0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-84.47 56.786-155.564 134.312-177.219C216.719 75.874 224 66.517 224 55.712V39.064c0-15.709-14.834-27.153-30.046-23.234C86.603 43.482 7.394 141.206 8.003 257.332c.72 137.052 111.477 246.956 248.531 246.667C393.255 503.711 504 392.788 504 256c0-115.633-79.14-212.779-186.211-240.236C302.678 11.889 288 23.456 288 39.056z"] }; +var faClipboard = { prefix: 'fas', iconName: 'clipboard', icon: [384, 512, [], "f328", "M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z"] }; +var faClipboardCheck = { prefix: 'fas', iconName: 'clipboard-check', icon: [384, 512, [], "f46c", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm121.2 231.8l-143 141.8c-4.7 4.7-12.3 4.6-17-.1l-82.6-83.3c-4.7-4.7-4.6-12.3.1-17L99.1 285c4.7-4.7 12.3-4.6 17 .1l46 46.4 106-105.2c4.7-4.7 12.3-4.6 17 .1l28.2 28.4c4.7 4.8 4.6 12.3-.1 17z"] }; +var faClipboardList = { prefix: 'fas', iconName: 'clipboard-list', icon: [384, 512, [], "f46d", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM96 424c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm96-192c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm128 368c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z"] }; +var faClock = { prefix: 'fas', iconName: 'clock', icon: [512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm57.1 350.1L224.9 294c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v137.7l63.5 46.2c5.4 3.9 6.5 11.4 2.6 16.8l-28.2 38.8c-3.9 5.3-11.4 6.5-16.8 2.6z"] }; +var faClone = { prefix: 'fas', iconName: 'clone', icon: [512, 512, [], "f24d", "M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z"] }; +var faClosedCaptioning = { prefix: 'fas', iconName: 'closed-captioning', icon: [512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM218.1 287.7c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2.1 48 51.1 70.5 92.3 32.6zm190.4 0c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.5 56.9-172.7 32.1-172.7-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 222.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6z"] }; +var faCloud = { prefix: 'fas', iconName: 'cloud', icon: [640, 512, [], "f0c2", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z"] }; +var faCloudDownloadAlt = { prefix: 'fas', iconName: 'cloud-download-alt', icon: [640, 512, [], "f381", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z"] }; +var faCloudUploadAlt = { prefix: 'fas', iconName: 'cloud-upload-alt', icon: [640, 512, [], "f382", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z"] }; +var faCode = { prefix: 'fas', iconName: 'code', icon: [640, 512, [], "f121", "M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"] }; +var faCodeBranch = { prefix: 'fas', iconName: 'code-branch', icon: [384, 512, [], "f126", "M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"] }; +var faCoffee = { prefix: 'fas', iconName: 'coffee', icon: [640, 512, [], "f0f4", "M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z"] }; +var faCog = { prefix: 'fas', iconName: 'cog', icon: [512, 512, [], "f013", "M444.788 291.1l42.616 24.599c4.867 2.809 7.126 8.618 5.459 13.985-11.07 35.642-29.97 67.842-54.689 94.586a12.016 12.016 0 0 1-14.832 2.254l-42.584-24.595a191.577 191.577 0 0 1-60.759 35.13v49.182a12.01 12.01 0 0 1-9.377 11.718c-34.956 7.85-72.499 8.256-109.219.007-5.49-1.233-9.403-6.096-9.403-11.723v-49.184a191.555 191.555 0 0 1-60.759-35.13l-42.584 24.595a12.016 12.016 0 0 1-14.832-2.254c-24.718-26.744-43.619-58.944-54.689-94.586-1.667-5.366.592-11.175 5.459-13.985L67.212 291.1a193.48 193.48 0 0 1 0-70.199l-42.616-24.599c-4.867-2.809-7.126-8.618-5.459-13.985 11.07-35.642 29.97-67.842 54.689-94.586a12.016 12.016 0 0 1 14.832-2.254l42.584 24.595a191.577 191.577 0 0 1 60.759-35.13V25.759a12.01 12.01 0 0 1 9.377-11.718c34.956-7.85 72.499-8.256 109.219-.007 5.49 1.233 9.403 6.096 9.403 11.723v49.184a191.555 191.555 0 0 1 60.759 35.13l42.584-24.595a12.016 12.016 0 0 1 14.832 2.254c24.718 26.744 43.619 58.944 54.689 94.586 1.667 5.366-.592 11.175-5.459 13.985L444.788 220.9a193.485 193.485 0 0 1 0 70.2zM336 256c0-44.112-35.888-80-80-80s-80 35.888-80 80 35.888 80 80 80 80-35.888 80-80z"] }; +var faCogs = { prefix: 'fas', iconName: 'cogs', icon: [640, 512, [], "f085", "M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z"] }; +var faCoins = { prefix: 'fas', iconName: 'coins', icon: [512, 512, [], "f51e", "M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z"] }; +var faColumns = { prefix: 'fas', iconName: 'columns', icon: [512, 512, [], "f0db", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z"] }; +var faComment = { prefix: 'fas', iconName: 'comment', icon: [512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32z"] }; +var faCommentAlt = { prefix: 'fas', iconName: 'comment-alt', icon: [512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 9.8 11.2 15.5 19.1 9.7L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z"] }; +var faCommentDots = { prefix: 'fas', iconName: 'comment-dots', icon: [512, 512, [], "f4ad", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faCommentSlash = { prefix: 'fas', iconName: 'comment-slash', icon: [640, 512, [], "f4b3", "M64 240c0 49.6 21.4 95 57 130.7-12.6 50.3-54.3 95.2-54.8 95.8-2.2 2.3-2.8 5.7-1.5 8.7 1.3 2.9 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 27.4 0 53.7-3.6 78.4-10L72.9 186.4c-5.6 17.1-8.9 35-8.9 53.6zm569.8 218.1l-114.4-88.4C554.6 334.1 576 289.2 576 240c0-114.9-114.6-208-256-208-65.1 0-124.2 20.1-169.4 52.7L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z"] }; +var faComments = { prefix: 'fas', iconName: 'comments', icon: [576, 512, [], "f086", "M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z"] }; +var faCompactDisc = { prefix: 'fas', iconName: 'compact-disc', icon: [496, 512, [], "f51f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 256H56c0-105.9 86.1-192 192-192v32c-88.2 0-160 71.8-160 160zm160 96c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"] }; +var faCompass = { prefix: 'fas', iconName: 'compass', icon: [512, 512, [], "f14e", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM307.446 120.844l-102.642 97.779a23.997 23.997 0 0 0-6.772 11.729l-33.359 137.779c-5.68 23.459 22.777 39.318 39.88 23.024l102.64-97.779a23.99 23.99 0 0 0 6.772-11.729l33.359-137.779c5.618-23.198-22.591-39.493-39.878-23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; +var faCompress = { prefix: 'fas', iconName: 'compress', icon: [448, 512, [], "f066", "M436 192H312c-13.3 0-24-10.7-24-24V44c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-276-24V44c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v84H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 300V344c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-84h84c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H312c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"] }; +var faCopy = { prefix: 'fas', iconName: 'copy', icon: [448, 512, [], "f0c5", "M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z"] }; +var faCopyright = { prefix: 'fas', iconName: 'copyright', icon: [512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm117.134 346.753c-1.592 1.867-39.776 45.731-109.851 45.731-84.692 0-144.484-63.26-144.484-145.567 0-81.303 62.004-143.401 143.762-143.401 66.957 0 101.965 37.315 103.422 38.904a12 12 0 0 1 1.238 14.623l-22.38 34.655c-4.049 6.267-12.774 7.351-18.234 2.295-.233-.214-26.529-23.88-61.88-23.88-46.116 0-73.916 33.575-73.916 76.082 0 39.602 25.514 79.692 74.277 79.692 38.697 0 65.28-28.338 65.544-28.625 5.132-5.565 14.059-5.033 18.508 1.053l24.547 33.572a12.001 12.001 0 0 1-.553 14.866z"] }; +var faCouch = { prefix: 'fas', iconName: 'couch', icon: [640, 512, [], "f4b8", "M160 224v64h320v-64c0-35.3 28.7-64 64-64h32c0-53-43-96-96-96H160c-53 0-96 43-96 96h32c35.3 0 64 28.7 64 64zm416-32h-32c-17.7 0-32 14.3-32 32v96H128v-96c0-17.7-14.3-32-32-32H64c-35.3 0-64 28.7-64 64 0 23.6 13 44 32 55.1V432c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-16h384v16c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V311.1c19-11.1 32-31.5 32-55.1 0-35.3-28.7-64-64-64z"] }; +var faCreditCard = { prefix: 'fas', iconName: 'credit-card', icon: [576, 512, [], "f09d", "M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V256H0v176zm192-68c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-40zm-128 0c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM576 80v48H0V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48z"] }; +var faCrop = { prefix: 'fas', iconName: 'crop', icon: [512, 512, [], "f125", "M488 352h-40V109.3l57-57c9.4-9.4 9.4-24.6 0-33.9L493.7 7c-9.4-9.4-24.6-9.4-33.9 0l-57 57H160V24c0-13.3-10.7-24-24-24H88C74.7 0 64 10.7 64 24v40H24C10.7 64 0 74.7 0 88v48c0 13.3 10.7 24 24 24h40v264c0 13.3 10.7 24 24 24h264v40c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24v-40h40c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zM306.7 160L160 306.7V160h146.7zM205.3 352L352 205.3V352H205.3z"] }; +var faCrosshairs = { prefix: 'fas', iconName: 'crosshairs', icon: [512, 512, [], "f05b", "M500 224h-30.364C455.724 130.325 381.675 56.276 288 42.364V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v30.364C130.325 56.276 56.276 130.325 42.364 224H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h30.364C56.276 381.675 130.325 455.724 224 469.636V500c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-30.364C381.675 455.724 455.724 381.675 469.636 288H500c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zM288 404.634V364c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40.634C165.826 392.232 119.783 346.243 107.366 288H148c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40.634C119.768 165.826 165.757 119.783 224 107.366V148c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40.634C346.174 119.768 392.217 165.757 404.634 224H364c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40.634C392.232 346.174 346.243 392.217 288 404.634zM288 256c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z"] }; +var faCrow = { prefix: 'fas', iconName: 'crow', icon: [640, 512, [], "f520", "M544 32h-16.36C513.04 12.68 490.09 0 464 0c-44.18 0-80 35.82-80 80v20.98L12.09 393.57A30.216 30.216 0 0 0 0 417.74c0 22.46 23.64 37.07 43.73 27.03L165.27 384h96.49l44.41 120.1c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38L312.94 384H352c1.91 0 3.76-.23 5.66-.29l44.51 120.38c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38l-41.24-111.53C485.74 352.8 544 279.26 544 192v-80l96-16c0-35.35-42.98-64-96-64zm-80 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"] }; +var faCrown = { prefix: 'fas', iconName: 'crown', icon: [640, 512, [], "f521", "M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.4 7.7-.8L128 416h384l72.3-192.8c2.5.4 5.1.8 7.7.8 26.5 0 48-21.5 48-48s-21.5-48-48-48z"] }; +var faCube = { prefix: 'fas', iconName: 'cube', icon: [512, 512, [], "f1b2", "M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z"] }; +var faCubes = { prefix: 'fas', iconName: 'cubes', icon: [512, 512, [], "f1b3", "M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z"] }; +var faCut = { prefix: 'fas', iconName: 'cut', icon: [448, 512, [], "f0c4", "M444.485 422.426c4.689 4.689 4.684 12.287 0 16.971-32.804 32.804-85.991 32.804-118.795 0L210.176 323.883l-24.859 24.859C189.63 359.657 192 371.552 192 384c0 53.019-42.981 96-96 96S0 437.019 0 384s42.981-96 96-96c4.536 0 8.995.322 13.363.93l32.93-32.93-32.93-32.93c-4.368.608-8.827.93-13.363.93-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96c0 12.448-2.37 24.343-6.682 35.258l24.859 24.859L325.69 72.603c32.804-32.804 85.991-32.804 118.795 0 4.684 4.684 4.689 12.282 0 16.971L278.059 256l166.426 166.426zM96 96c-17.645 0-32 14.355-32 32s14.355 32 32 32 32-14.355 32-32-14.355-32-32-32m0 256c-17.645 0-32 14.355-32 32s14.355 32 32 32 32-14.355 32-32-14.355-32-32-32m112-108c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12z"] }; +var faDatabase = { prefix: 'fas', iconName: 'database', icon: [448, 512, [], "f1c0", "M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z"] }; +var faDeaf = { prefix: 'fas', iconName: 'deaf', icon: [512, 512, [], "f2a4", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm268.485-52.201L480.2 3.515c-4.687-4.686-12.284-4.686-16.971 0L376.2 90.544c-4.686 4.686-4.686 12.284 0 16.971l28.285 28.285c4.686 4.686 12.284 4.686 16.97 0l87.03-87.029c4.687-4.688 4.687-12.286 0-16.972zM168.97 314.745c-4.686-4.686-12.284-4.686-16.97 0L3.515 463.23c-4.686 4.686-4.686 12.284 0 16.971L31.8 508.485c4.687 4.686 12.284 4.686 16.971 0L197.256 360c4.686-4.686 4.686-12.284 0-16.971l-28.286-28.284z"] }; +var faDesktop = { prefix: 'fas', iconName: 'desktop', icon: [576, 512, [], "f108", "M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z"] }; +var faDiagnoses = { prefix: 'fas', iconName: 'diagnoses', icon: [640, 512, [], "f470", "M496 256c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm-176-80c48.5 0 88-39.5 88-88S368.5 0 320 0s-88 39.5-88 88 39.5 88 88 88zM59.8 364c10.2 15.3 29.3 17.8 42.9 9.8 16.2-9.6 56.2-31.7 105.3-48.6V416h224v-90.7c49.1 16.8 89.1 39 105.3 48.6 13.6 8 32.7 5.3 42.9-9.8l17.8-26.7c8.8-13.2 7.6-34.6-10-45.1-11.9-7.1-29.7-17-51.1-27.4-28.1 46.1-99.4 17.8-87.7-35.1C409.3 217.2 365.1 208 320 208c-57 0-112.9 14.5-160 32.2-.2 40.2-47.6 63.3-79.2 36-11.2 6-21.3 11.6-28.7 16-17.6 10.5-18.8 31.8-10 45.1L59.8 364zM368 344c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-160 8c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm512 192H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z"] }; +var faDice = { prefix: 'fas', iconName: 'dice', icon: [640, 512, [], "f522", "M592 192H473.26c12.69 29.59 7.12 65.2-17 89.32L320 417.58V464c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48V240c0-26.51-21.49-48-48-48zM480 376c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm-46.37-186.7L258.7 14.37c-19.16-19.16-50.23-19.16-69.39 0L14.37 189.3c-19.16 19.16-19.16 50.23 0 69.39L189.3 433.63c19.16 19.16 50.23 19.16 69.39 0L433.63 258.7c19.16-19.17 19.16-50.24 0-69.4zM96 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"] }; +var faDiceFive = { prefix: 'fas', iconName: 'dice-five', icon: [448, 512, [], "f523", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceFour = { prefix: 'fas', iconName: 'dice-four', icon: [448, 512, [], "f524", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceOne = { prefix: 'fas', iconName: 'dice-one', icon: [448, 512, [], "f525", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM224 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceSix = { prefix: 'fas', iconName: 'dice-six', icon: [448, 512, [], "f526", "M384 0H64C28.65 0 0 28.65 0 64v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V64c0-35.35-28.65-64-64-64zM128 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceThree = { prefix: 'fas', iconName: 'dice-three', icon: [448, 512, [], "f527", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceTwo = { prefix: 'fas', iconName: 'dice-two', icon: [448, 512, [], "f528", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDivide = { prefix: 'fas', iconName: 'divide', icon: [448, 512, [], "f529", "M224 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm0-192c35.35 0 64-28.65 64-64s-28.65-64-64-64-64 28.65-64 64 28.65 64 64 64zm192 48H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; +var faDna = { prefix: 'fas', iconName: 'dna', icon: [448, 512, [], "f471", "M.1 494.1c-1.1 9.5 6.3 17.8 15.9 17.8l32.3.1c8.1 0 14.9-5.9 16-13.9.7-4.9 1.8-11.1 3.4-18.1H380c1.6 6.9 2.9 13.2 3.5 18.1 1.1 8 7.9 14 16 13.9l32.3-.1c9.6 0 17.1-8.3 15.9-17.8-4.6-37.9-25.6-129-118.9-207.7-17.6 12.4-37.1 24.2-58.5 35.4 6.2 4.6 11.4 9.4 17 14.2H159.7c21.3-18.1 47-35.6 78.7-51.4C410.5 199.1 442.1 65.8 447.9 17.9 449 8.4 441.6.1 432 .1L399.6 0c-8.1 0-14.9 5.9-16 13.9-.7 4.9-1.8 11.1-3.4 18.1H67.8c-1.6-7-2.7-13.1-3.4-18.1-1.1-8-7.9-14-16-13.9L16.1.1C6.5.1-1 8.4.1 17.9 5.3 60.8 31.4 171.8 160 256 31.5 340.2 5.3 451.2.1 494.1zM224 219.6c-25.1-13.7-46.4-28.4-64.3-43.6h128.5c-17.8 15.2-39.1 30-64.2 43.6zM355.1 96c-5.8 10.4-12.8 21.1-21 32H114c-8.3-10.9-15.3-21.6-21-32h262.1zM92.9 416c5.8-10.4 12.8-21.1 21-32h219.4c8.3 10.9 15.4 21.6 21.2 32H92.9z"] }; +var faDollarSign = { prefix: 'fas', iconName: 'dollar-sign', icon: [288, 512, [], "f155", "M209.2 233.4l-108-31.6C88.7 198.2 80 186.5 80 173.5c0-16.3 13.2-29.5 29.5-29.5h66.3c12.2 0 24.2 3.7 34.2 10.5 6.1 4.1 14.3 3.1 19.5-2l34.8-34c7.1-6.9 6.1-18.4-1.8-24.5C238 74.8 207.4 64.1 176 64V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C45.8 64-5.4 118.7.5 183.6c4.2 46.1 39.4 83.6 83.8 96.6l102.5 30c12.5 3.7 21.2 15.3 21.2 28.3 0 16.3-13.2 29.5-29.5 29.5h-66.3C100 368 88 364.3 78 357.5c-6.1-4.1-14.3-3.1-19.5 2l-34.8 34c-7.1 6.9-6.1 18.4 1.8 24.5 24.5 19.2 55.1 29.9 86.5 30v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48.2c46.6-.9 90.3-28.6 105.7-72.7 21.5-61.6-14.6-124.8-72.5-141.7z"] }; +var faDolly = { prefix: 'fas', iconName: 'dolly', icon: [576, 512, [], "f472", "M294.2 277.7c18 5 34.7 13.4 49.5 24.7l161.5-53.8c8.4-2.8 12.9-11.9 10.1-20.2L454.9 47.2c-2.8-8.4-11.9-12.9-20.2-10.1l-61.1 20.4 33.1 99.4L346 177l-33.1-99.4-61.6 20.5c-8.4 2.8-12.9 11.9-10.1 20.2l53 159.4zm281 48.7L565 296c-2.8-8.4-11.9-12.9-20.2-10.1l-213.5 71.2c-17.2-22-43.6-36.4-73.5-37L158.4 21.9C154 8.8 141.8 0 128 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h88.9l92.2 276.7c-26.1 20.4-41.7 53.6-36 90.5 6.1 39.4 37.9 72.3 77.3 79.2 60.2 10.7 112.3-34.8 113.4-92.6l213.3-71.2c8.3-2.8 12.9-11.8 10.1-20.2zM256 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; +var faDollyFlatbed = { prefix: 'fas', iconName: 'dolly-flatbed', icon: [640, 512, [], "f474", "M208 320h384c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H448v128l-48-32-48 32V32H208c-8.8 0-16 7.2-16 16v256c0 8.8 7.2 16 16 16zm416 64H128V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h82.9c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H451c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H624c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z"] }; +var faDonate = { prefix: 'fas', iconName: 'donate', icon: [512, 512, [], "f4b9", "M256 416c114.9 0 208-93.1 208-208S370.9 0 256 0 48 93.1 48 208s93.1 208 208 208zM233.8 97.4V80.6c0-9.2 7.4-16.6 16.6-16.6h11.1c9.2 0 16.6 7.4 16.6 16.6v17c15.5.8 30.5 6.1 43 15.4 5.6 4.1 6.2 12.3 1.2 17.1L306 145.6c-3.8 3.7-9.5 3.8-14 1-5.4-3.4-11.4-5.1-17.8-5.1h-38.9c-9 0-16.3 8.2-16.3 18.3 0 8.2 5 15.5 12.1 17.6l62.3 18.7c25.7 7.7 43.7 32.4 43.7 60.1 0 34-26.4 61.5-59.1 62.4v16.8c0 9.2-7.4 16.6-16.6 16.6h-11.1c-9.2 0-16.6-7.4-16.6-16.6v-17c-15.5-.8-30.5-6.1-43-15.4-5.6-4.1-6.2-12.3-1.2-17.1l16.3-15.5c3.8-3.7 9.5-3.8 14-1 5.4 3.4 11.4 5.1 17.8 5.1h38.9c9 0 16.3-8.2 16.3-18.3 0-8.2-5-15.5-12.1-17.6l-62.3-18.7c-25.7-7.7-43.7-32.4-43.7-60.1.1-34 26.4-61.5 59.1-62.4zM480 352h-32.5c-19.6 26-44.6 47.7-73 64h63.8c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8h63.8c-28.4-16.3-53.3-38-73-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32z"] }; +var faDoorClosed = { prefix: 'fas', iconName: 'door-closed', icon: [640, 512, [], "f52a", "M624 448H512V50.8C512 22.78 490.47 0 464 0H175.99c-26.47 0-48 22.78-48 50.8V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM415.99 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32c.01 17.67-14.32 32-32 32z"] }; +var faDoorOpen = { prefix: 'fas', iconName: 'door-open', icon: [640, 512, [], "f52b", "M624 448h-80V113.45C544 86.19 522.47 64 496 64H384v64h96v384h144c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM312.24 1.01l-192 49.74C105.99 54.44 96 67.7 96 82.92V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h336V33.18c0-21.58-19.56-37.41-39.76-32.17zM264 288c-13.25 0-24-14.33-24-32s10.75-32 24-32 24 14.33 24 32-10.75 32-24 32z"] }; +var faDotCircle = { prefix: 'fas', iconName: 'dot-circle', icon: [512, 512, [], "f192", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z"] }; +var faDove = { prefix: 'fas', iconName: 'dove', icon: [512, 512, [], "f4ba", "M288 167.2v-28.1c-28.2-36.3-47.1-79.3-54.1-125.2-2.1-13.5-19-18.8-27.8-8.3-21.1 24.9-37.7 54.1-48.9 86.5 34.2 38.3 80 64.6 130.8 75.1zM400 64c-44.2 0-80 35.9-80 80.1v59.4C215.6 197.3 127 133 87 41.8c-5.5-12.5-23.2-13.2-29-.9C41.4 76 32 115.2 32 156.6c0 70.8 34.1 136.9 85.1 185.9 13.2 12.7 26.1 23.2 38.9 32.8l-143.9 36C1.4 414-3.4 426.4 2.6 435.7 20 462.6 63 508.2 155.8 512c8 .3 16-2.6 22.1-7.9l65.2-56.1H320c88.4 0 160-71.5 160-159.9V128l32-64H400zm0 96.1c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"] }; +var faDownload = { prefix: 'fas', iconName: 'download', icon: [512, 512, [], "f019", "M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"] }; +var faDumbbell = { prefix: 'fas', iconName: 'dumbbell', icon: [640, 512, [], "f44b", "M104 96H56c-13.3 0-24 10.7-24 24v104H8c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h24v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm528 128h-24V120c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v272c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h24c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM456 32h-48c-13.3 0-24 10.7-24 24v168H256V56c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v400c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h128v168c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24z"] }; +var faEdit = { prefix: 'fas', iconName: 'edit', icon: [576, 512, [], "f044", "M402.6 83.2l90.2 90.2c3.8 3.8 3.8 10 0 13.8L274.4 405.6l-92.8 10.3c-12.4 1.4-22.9-9.1-21.5-21.5l10.3-92.8L388.8 83.2c3.8-3.8 10-3.8 13.8 0zm162-22.9l-48.8-48.8c-15.2-15.2-39.9-15.2-55.2 0l-35.4 35.4c-3.8 3.8-3.8 10 0 13.8l90.2 90.2c3.8 3.8 10 3.8 13.8 0l35.4-35.4c15.2-15.3 15.2-40 0-55.2zM384 346.2V448H64V128h229.8c3.2 0 6.2-1.3 8.5-3.5l40-40c7.6-7.6 2.2-20.5-8.5-20.5H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V306.2c0-10.7-12.9-16-20.5-8.5l-40 40c-2.2 2.3-3.5 5.3-3.5 8.5z"] }; +var faEject = { prefix: 'fas', iconName: 'eject', icon: [448, 512, [], "f052", "M448 384v64c0 17.673-14.327 32-32 32H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h384c17.673 0 32 14.327 32 32zM48.053 320h351.886c41.651 0 63.581-49.674 35.383-80.435L259.383 47.558c-19.014-20.743-51.751-20.744-70.767 0L12.67 239.565C-15.475 270.268 6.324 320 48.053 320z"] }; +var faEllipsisH = { prefix: 'fas', iconName: 'ellipsis-h', icon: [512, 512, [], "f141", "M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z"] }; +var faEllipsisV = { prefix: 'fas', iconName: 'ellipsis-v', icon: [192, 512, [], "f142", "M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z"] }; +var faEnvelope = { prefix: 'fas', iconName: 'envelope', icon: [512, 512, [], "f0e0", "M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"] }; +var faEnvelopeOpen = { prefix: 'fas', iconName: 'envelope-open', icon: [512, 512, [], "f2b6", "M512 464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V200.724a48 48 0 0 1 18.387-37.776c24.913-19.529 45.501-35.365 164.2-121.511C199.412 29.17 232.797-.347 256 .003c23.198-.354 56.596 29.172 73.413 41.433 118.687 86.137 139.303 101.995 164.2 121.512A48 48 0 0 1 512 200.724V464zm-65.666-196.605c-2.563-3.728-7.7-4.595-11.339-1.907-22.845 16.873-55.462 40.705-105.582 77.079-16.825 12.266-50.21 41.781-73.413 41.43-23.211.344-56.559-29.143-73.413-41.43-50.114-36.37-82.734-60.204-105.582-77.079-3.639-2.688-8.776-1.821-11.339 1.907l-9.072 13.196a7.998 7.998 0 0 0 1.839 10.967c22.887 16.899 55.454 40.69 105.303 76.868 20.274 14.781 56.524 47.813 92.264 47.573 35.724.242 71.961-32.771 92.263-47.573 49.85-36.179 82.418-59.97 105.303-76.868a7.998 7.998 0 0 0 1.839-10.967l-9.071-13.196z"] }; +var faEnvelopeSquare = { prefix: 'fas', iconName: 'envelope-square', icon: [448, 512, [], "f199", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM178.117 262.104C87.429 196.287 88.353 196.121 64 177.167V152c0-13.255 10.745-24 24-24h272c13.255 0 24 10.745 24 24v25.167c-24.371 18.969-23.434 19.124-114.117 84.938-10.5 7.655-31.392 26.12-45.883 25.894-14.503.218-35.367-18.227-45.883-25.895zM384 217.775V360c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V217.775c13.958 10.794 33.329 25.236 95.303 70.214 14.162 10.341 37.975 32.145 64.694 32.01 26.887.134 51.037-22.041 64.72-32.025 61.958-44.965 81.325-59.406 95.283-70.199z"] }; +var faEquals = { prefix: 'fas', iconName: 'equals', icon: [448, 512, [], "f52c", "M416 304H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32zm0-192H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; +var faEraser = { prefix: 'fas', iconName: 'eraser', icon: [512, 512, [], "f12d", "M497.941 273.941c18.745-18.745 18.745-49.137 0-67.882l-160-160c-18.745-18.745-49.136-18.746-67.883 0l-256 256c-18.745 18.745-18.745 49.137 0 67.882l96 96A48.004 48.004 0 0 0 144 480h356c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H355.883l142.058-142.059zm-302.627-62.627l137.373 137.373L265.373 416H150.628l-80-80 124.686-124.686z"] }; +var faEuroSign = { prefix: 'fas', iconName: 'euro-sign', icon: [320, 512, [], "f153", "M310.706 413.765c-1.314-6.63-7.835-10.872-14.424-9.369-10.692 2.439-27.422 5.413-45.426 5.413-56.763 0-101.929-34.79-121.461-85.449h113.689a12 12 0 0 0 11.708-9.369l6.373-28.36c1.686-7.502-4.019-14.631-11.708-14.631H115.22c-1.21-14.328-1.414-28.287.137-42.245H261.95a12 12 0 0 0 11.723-9.434l6.512-29.755c1.638-7.484-4.061-14.566-11.723-14.566H130.184c20.633-44.991 62.69-75.03 117.619-75.03 14.486 0 28.564 2.25 37.851 4.145 6.216 1.268 12.347-2.498 14.002-8.623l11.991-44.368c1.822-6.741-2.465-13.616-9.326-14.917C290.217 34.912 270.71 32 249.635 32 152.451 32 74.03 92.252 45.075 176H12c-6.627 0-12 5.373-12 12v29.755c0 6.627 5.373 12 12 12h21.569c-1.009 13.607-1.181 29.287-.181 42.245H12c-6.627 0-12 5.373-12 12v28.36c0 6.627 5.373 12 12 12h30.114C67.139 414.692 145.264 480 249.635 480c26.301 0 48.562-4.544 61.101-7.788 6.167-1.595 10.027-7.708 8.788-13.957l-8.818-44.49z"] }; +var faExchangeAlt = { prefix: 'fas', iconName: 'exchange-alt', icon: [512, 512, [], "f362", "M0 168v-16c0-13.255 10.745-24 24-24h360V80c0-21.367 25.899-32.042 40.971-16.971l80 80c9.372 9.373 9.372 24.569 0 33.941l-80 80C409.956 271.982 384 261.456 384 240v-48H24c-13.255 0-24-10.745-24-24zm488 152H128v-48c0-21.314-25.862-32.08-40.971-16.971l-80 80c-9.372 9.373-9.372 24.569 0 33.941l80 80C102.057 463.997 128 453.437 128 432v-48h360c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z"] }; +var faExclamation = { prefix: 'fas', iconName: 'exclamation', icon: [192, 512, [], "f12a", "M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z"] }; +var faExclamationCircle = { prefix: 'fas', iconName: 'exclamation-circle', icon: [512, 512, [], "f06a", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"] }; +var faExclamationTriangle = { prefix: 'fas', iconName: 'exclamation-triangle', icon: [576, 512, [], "f071", "M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"] }; +var faExpand = { prefix: 'fas', iconName: 'expand', icon: [448, 512, [], "f065", "M0 180V56c0-13.3 10.7-24 24-24h124c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H64v84c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12zM288 44v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V56c0-13.3-10.7-24-24-24H300c-6.6 0-12 5.4-12 12zm148 276h-40c-6.6 0-12 5.4-12 12v84h-84c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24V332c0-6.6-5.4-12-12-12zM160 468v-40c0-6.6-5.4-12-12-12H64v-84c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v124c0 13.3 10.7 24 24 24h124c6.6 0 12-5.4 12-12z"] }; +var faExpandArrowsAlt = { prefix: 'fas', iconName: 'expand-arrows-alt', icon: [448, 512, [], "f31e", "M448.1 344v112c0 13.3-10.7 24-24 24h-112c-21.4 0-32.1-25.9-17-41l36.2-36.2L224 295.6 116.8 402.9 153 439c15.1 15.1 4.4 41-17 41H24c-13.3 0-24-10.7-24-24V344c0-21.4 25.9-32.1 41-17l36.2 36.2L184.5 256 77.2 148.7 41 185c-15.1 15.1-41 4.4-41-17V56c0-13.3 10.7-24 24-24h112c21.4 0 32.1 25.9 17 41l-36.2 36.2L224 216.4l107.3-107.3L295.1 73c-15.1-15.1-4.4-41 17-41h112c13.3 0 24 10.7 24 24v112c0 21.4-25.9 32.1-41 17l-36.2-36.2L263.6 256l107.3 107.3 36.2-36.2c15.1-15.2 41-4.5 41 16.9z"] }; +var faExternalLinkAlt = { prefix: 'fas', iconName: 'external-link-alt', icon: [576, 512, [], "f35d", "M576 24v127.984c0 21.461-25.96 31.98-40.971 16.971l-35.707-35.709-243.523 243.523c-9.373 9.373-24.568 9.373-33.941 0l-22.627-22.627c-9.373-9.373-9.373-24.569 0-33.941L442.756 76.676l-35.703-35.705C391.982 25.9 402.656 0 424.024 0H552c13.255 0 24 10.745 24 24zM407.029 270.794l-16 16A23.999 23.999 0 0 0 384 303.765V448H64V128h264a24.003 24.003 0 0 0 16.97-7.029l16-16C376.089 89.851 365.381 64 344 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V287.764c0-21.382-25.852-32.09-40.971-16.97z"] }; +var faExternalLinkSquareAlt = { prefix: 'fas', iconName: 'external-link-square-alt', icon: [448, 512, [], "f360", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-88 16H248.029c-21.313 0-32.08 25.861-16.971 40.971l31.984 31.987L67.515 364.485c-4.686 4.686-4.686 12.284 0 16.971l31.029 31.029c4.687 4.686 12.285 4.686 16.971 0l195.526-195.526 31.988 31.991C358.058 263.977 384 253.425 384 231.979V120c0-13.255-10.745-24-24-24z"] }; +var faEye = { prefix: 'fas', iconName: 'eye', icon: [576, 512, [], "f06e", "M569.354 231.631C512.969 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-75.162 0-136-60.827-136-136 0-75.162 60.826-136 136-136 75.162 0 136 60.826 136 136 0 75.162-60.826 136-136 136zm104-136c0 57.438-46.562 104-104 104s-104-46.562-104-104c0-17.708 4.431-34.379 12.236-48.973l-.001.032c0 23.651 19.173 42.823 42.824 42.823s42.824-19.173 42.824-42.823c0-23.651-19.173-42.824-42.824-42.824l-.032.001C253.621 156.431 270.292 152 288 152c57.438 0 104 46.562 104 104z"] }; +var faEyeDropper = { prefix: 'fas', iconName: 'eye-dropper', icon: [512, 512, [], "f1fb", "M177.38 206.64L39.03 344.97A24.01 24.01 0 0 0 32 361.94V424L0 480l32 32 56-32h62.06c6.36 0 12.47-2.53 16.97-7.03l138.35-138.33-128-128zm225.552 30.47l16.952 16.95c9.37 9.37 9.37 24.57 0 33.94l-40.973 40.97c-9.292 9.312-24.506 9.434-33.94 0L183.028 167.03c-9.37-9.37-9.37-24.57 0-33.94L224 92.12c9.289-9.309 24.502-9.438 33.94 0l16.992 16.99 82.606-82.601c35.19-35.19 92.5-35.5 128 0 40.49 48.08 29.66 98.34 0 128l-82.606 82.601z"] }; +var faEyeSlash = { prefix: 'fas', iconName: 'eye-slash', icon: [576, 512, [], "f070", "M286.693 391.984l32.579 46.542A333.958 333.958 0 0 1 288 440C168.19 440 63.031 376.051 6.646 280.369a47.999 47.999 0 0 1 0-48.739c24.023-40.766 56.913-75.775 96.024-102.537l57.077 81.539C154.736 224.82 152 240.087 152 256c0 74.736 60.135 135.282 134.693 135.984zm282.661-111.615c-31.667 53.737-78.747 97.46-135.175 125.475l.011.015 41.47 59.2c7.6 10.86 4.96 25.82-5.9 33.42l-13.11 9.18c-10.86 7.6-25.82 4.96-33.42-5.9L100.34 46.94c-7.6-10.86-4.96-25.82 5.9-33.42l13.11-9.18c10.86-7.6 25.82-4.96 33.42 5.9l51.038 72.617C230.68 75.776 258.905 72 288 72c119.81 0 224.969 63.949 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM424 256c0-75.174-60.838-136-136-136-17.939 0-35.056 3.473-50.729 9.772l19.299 27.058c25.869-8.171 55.044-6.163 80.4 7.41h-.03c-23.65 0-42.82 19.17-42.82 42.82 0 23.626 19.147 42.82 42.82 42.82 23.65 0 42.82-19.17 42.82-42.82v-.03c18.462 34.49 16.312 77.914-8.25 110.95v.01l19.314 27.061C411.496 321.2 424 290.074 424 256zM262.014 356.727l-77.53-110.757c-5.014 52.387 29.314 98.354 77.53 110.757z"] }; +var faFastBackward = { prefix: 'fas', iconName: 'fast-backward', icon: [512, 512, [], "f049", "M0 436V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v151.9L235.5 71.4C256.1 54.3 288 68.6 288 96v131.9L459.5 71.4C480.1 54.3 512 68.6 512 96v320c0 27.4-31.9 41.7-52.5 24.6L288 285.3V416c0 27.4-31.9 41.7-52.5 24.6L64 285.3V436c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12z"] }; +var faFastForward = { prefix: 'fas', iconName: 'fast-forward', icon: [512, 512, [], "f050", "M512 76v360c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V284.1L276.5 440.6c-20.6 17.2-52.5 2.8-52.5-24.6V284.1L52.5 440.6C31.9 457.8 0 443.4 0 416V96c0-27.4 31.9-41.7 52.5-24.6L224 226.8V96c0-27.4 31.9-41.7 52.5-24.6L448 226.8V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12z"] }; +var faFax = { prefix: 'fas', iconName: 'fax', icon: [512, 512, [], "f1ac", "M128 144v320c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V144c0-26.51 21.49-48 48-48h32c26.51 0 48 21.49 48 48zm384 64v256c0 26.51-21.49 48-48 48H192c-26.51 0-48-21.49-48-48V40c0-22.091 17.909-40 40-40h207.432a39.996 39.996 0 0 1 28.284 11.716l48.569 48.569A39.999 39.999 0 0 1 480 88.568v74.174c18.641 6.591 32 24.36 32 45.258zm-320-16h240V96h-24c-13.203 0-24-10.797-24-24V48H192v144zm96 204c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm128 128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40z"] }; +var faFeather = { prefix: 'fas', iconName: 'feather', icon: [512, 512, [], "f52d", "M512 0C504.81.01 98.51 22.01 71.47 287.42c-2.62 22.6-4.22 45.28-5.37 67.98l160.65-160.65c6.25-6.25 16.38-6.25 22.62 0s6.25 16.38 0 22.62l-240 240a31.9 31.9 0 0 0-9.38 22.67C.02 497.68 14.33 512 32 512c8.19 0 16.38-3.12 22.62-9.38l55.05-55.05c38.4-.5 76.76-2.63 114.91-7.05 11.58-1.18 22.54-3.29 33.21-5.84L256 384h101.86c12.61-10.63 24.12-22.45 34.76-35.07L384 288h50.19C502.8 163.6 512 .1 512 0z"] }; +var faFemale = { prefix: 'fas', iconName: 'female', icon: [256, 512, [], "f182", "M128 0c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64S92.654 0 128 0m119.283 354.179l-48-192A24 24 0 0 0 176 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H80a24 24 0 0 0-23.283 18.179l-48 192C4.935 369.305 16.383 384 32 384h56v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V384h56c15.591 0 27.071-14.671 23.283-29.821z"] }; +var faFighterJet = { prefix: 'fas', iconName: 'fighter-jet', icon: [640, 512, [], "f0fb", "M544 224l-128-16-48-16h-24L227.158 44h39.509C278.333 44 288 41.375 288 38s-9.667-6-21.333-6H152v12h16v164h-48l-66.667-80H18.667L8 138.667V208h8v16h48v2.666l-64 8v42.667l64 8V288H16v16H8v69.333L18.667 384h34.667L120 304h48v164h-16v12h114.667c11.667 0 21.333-2.625 21.333-6s-9.667-6-21.333-6h-39.509L344 320h24l48-16 128-16c96-21.333 96-26.583 96-32 0-5.417 0-10.667-96-32z"] }; +var faFile = { prefix: 'fas', iconName: 'file', icon: [384, 512, [], "f15b", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileAlt = { prefix: 'fas', iconName: 'file-alt', icon: [384, 512, [], "f15c", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileArchive = { prefix: 'fas', iconName: 'file-archive', icon: [384, 512, [], "f1c6", "M224 136V0h-63.6v32h-32V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM95.9 32h32v32h-32V32zm32.3 384c-33.2 0-58-30.4-51.4-62.9L96.4 256v-32h32v-32h-32v-32h32v-32h-32V96h32V64h32v32h-32v32h32v32h-32v32h32v32h-32v32h22.1c5.7 0 10.7 4.1 11.8 9.7l17.3 87.7c6.4 32.4-18.4 62.6-51.4 62.6zm32.7-53c0 14.9-14.5 27-32.4 27S96 378 96 363c0-14.9 14.5-27 32.4-27s32.5 12.1 32.5 27zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileAudio = { prefix: 'fas', iconName: 'file-audio', icon: [384, 512, [], "f1c7", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileCode = { prefix: 'fas', iconName: 'file-code', icon: [384, 512, [], "f1c9", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zM123.206 400.505a5.4 5.4 0 0 1-7.633.246l-64.866-60.812a5.4 5.4 0 0 1 0-7.879l64.866-60.812a5.4 5.4 0 0 1 7.633.246l19.579 20.885a5.4 5.4 0 0 1-.372 7.747L101.65 336l40.763 35.874a5.4 5.4 0 0 1 .372 7.747l-19.579 20.884zm51.295 50.479l-27.453-7.97a5.402 5.402 0 0 1-3.681-6.692l61.44-211.626a5.402 5.402 0 0 1 6.692-3.681l27.452 7.97a5.4 5.4 0 0 1 3.68 6.692l-61.44 211.626a5.397 5.397 0 0 1-6.69 3.681zm160.792-111.045l-64.866 60.812a5.4 5.4 0 0 1-7.633-.246l-19.58-20.885a5.4 5.4 0 0 1 .372-7.747L284.35 336l-40.763-35.874a5.4 5.4 0 0 1-.372-7.747l19.58-20.885a5.4 5.4 0 0 1 7.633-.246l64.866 60.812a5.4 5.4 0 0 1-.001 7.879z"] }; +var faFileExcel = { prefix: 'fas', iconName: 'file-excel', icon: [384, 512, [], "f1c3", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm60.1 106.5L224 336l60.1 93.5c5.1 8-.6 18.5-10.1 18.5h-34.9c-4.4 0-8.5-2.4-10.6-6.3C208.9 405.5 192 373 192 373c-6.4 14.8-10 20-36.6 68.8-2.1 3.9-6.1 6.3-10.5 6.3H110c-9.5 0-15.2-10.5-10.1-18.5l60.3-93.5-60.3-93.5c-5.2-8 .6-18.5 10.1-18.5h34.8c4.4 0 8.5 2.4 10.6 6.3 26.1 48.8 20 33.6 36.6 68.5 0 0 6.1-11.7 36.6-68.5 2.1-3.9 6.2-6.3 10.6-6.3H274c9.5-.1 15.2 10.4 10.1 18.4zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileImage = { prefix: 'fas', iconName: 'file-image', icon: [384, 512, [], "f1c5", "M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z"] }; +var faFileMedical = { prefix: 'fas', iconName: 'file-medical', icon: [384, 512, [], "f477", "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 160v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8z"] }; +var faFileMedicalAlt = { prefix: 'fas', iconName: 'file-medical-alt', icon: [448, 512, [], "f478", "M288 136V0H88C74.7 0 64 10.7 64 24v232H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h140.9c3 0 5.8 1.7 7.2 4.4l19.9 39.8 56.8-113.7c2.9-5.9 11.4-5.9 14.3 0l34.7 69.5H352c8.8 0 16 7.2 16 16s-7.2 16-16 16h-89.9L240 275.8l-56.8 113.7c-2.9 5.9-11.4 5.9-14.3 0L134.1 320H64v168c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H312c-13.2 0-24-10.8-24-24zm153-31L343.1 7c-4.5-4.5-10.6-7-17-7H320v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"] }; +var faFilePdf = { prefix: 'fas', iconName: 'file-pdf', icon: [384, 512, [], "f1c1", "M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z"] }; +var faFilePowerpoint = { prefix: 'fas', iconName: 'file-powerpoint', icon: [384, 512, [], "f1c4", "M193.7 271.2c8.8 0 15.5 2.7 20.3 8.1 9.6 10.9 9.8 32.7-.2 44.1-4.9 5.6-11.9 8.5-21.1 8.5h-26.9v-60.7h27.9zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm53 165.2c0 90.3-88.8 77.6-111.1 77.6V436c0 6.6-5.4 12-12 12h-30.8c-6.6 0-12-5.4-12-12V236.2c0-6.6 5.4-12 12-12h81c44.5 0 72.9 32.8 72.9 77z"] }; +var faFileVideo = { prefix: 'fas', iconName: 'file-video', icon: [384, 512, [], "f1c8", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z"] }; +var faFileWord = { prefix: 'fas', iconName: 'file-word', icon: [384, 512, [], "f1c2", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm57.1 120H305c7.7 0 13.4 7.1 11.7 14.7l-38 168c-1.2 5.5-6.1 9.3-11.7 9.3h-38c-5.5 0-10.3-3.8-11.6-9.1-25.8-103.5-20.8-81.2-25.6-110.5h-.5c-1.1 14.3-2.4 17.4-25.6 110.5-1.3 5.3-6.1 9.1-11.6 9.1H117c-5.6 0-10.5-3.9-11.7-9.4l-37.8-168c-1.7-7.5 4-14.6 11.7-14.6h24.5c5.7 0 10.7 4 11.8 9.7 15.6 78 20.1 109.5 21 122.2 1.6-10.2 7.3-32.7 29.4-122.7 1.3-5.4 6.1-9.1 11.7-9.1h29.1c5.6 0 10.4 3.8 11.7 9.2 24 100.4 28.8 124 29.6 129.4-.2-11.2-2.6-17.8 21.6-129.2 1-5.6 5.9-9.5 11.5-9.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFilm = { prefix: 'fas', iconName: 'film', icon: [512, 512, [], "f008", "M488 64h-8v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V64H96v20c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12V64h-8C10.7 64 0 74.7 0 88v336c0 13.3 10.7 24 24 24h8v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h320v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h8c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM96 372c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm272 208c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm0-168c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm112 152c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z"] }; +var faFilter = { prefix: 'fas', iconName: 'filter', icon: [512, 512, [], "f0b0", "M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z"] }; +var faFire = { prefix: 'fas', iconName: 'fire', icon: [384, 512, [], "f06d", "M216 23.858c0-23.802-30.653-32.765-44.149-13.038C48 191.851 224 200 224 288c0 35.629-29.114 64.458-64.85 63.994C123.98 351.538 96 322.22 96 287.046v-85.51c0-21.703-26.471-32.225-41.432-16.504C27.801 213.158 0 261.332 0 320c0 105.869 86.131 192 192 192s192-86.131 192-192c0-170.29-168-193.003-168-296.142z"] }; +var faFireExtinguisher = { prefix: 'fas', iconName: 'fire-extinguisher', icon: [448, 512, [], "f134", "M434.027 26.329l-168 28C254.693 56.218 256 67.8 256 72h-58.332C208.353 36.108 181.446 0 144 0c-39.435 0-66.368 39.676-52.228 76.203-52.039 13.051-75.381 54.213-90.049 90.884-4.923 12.307 1.063 26.274 13.37 31.197 12.317 4.926 26.279-1.075 31.196-13.37C75.058 112.99 106.964 120 168 120v27.076c-41.543 10.862-72 49.235-72 94.129V488c0 13.255 10.745 24 24 24h144c13.255 0 24-10.745 24-24V240c0-44.731-30.596-82.312-72-92.97V120h40c0 2.974-1.703 15.716 10.027 17.671l168 28C441.342 166.89 448 161.25 448 153.834V38.166c0-7.416-6.658-13.056-13.973-11.837zM144 72c-8.822 0-16-7.178-16-16s7.178-16 16-16 16 7.178 16 16-7.178 16-16 16z"] }; +var faFirstAid = { prefix: 'fas', iconName: 'first-aid', icon: [576, 512, [], "f479", "M0 80v352c0 26.5 21.5 48 48 48h48V32H48C21.5 32 0 53.5 0 80zm128 400h320V32H128v448zm64-248c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48zM528 32h-48v448h48c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"] }; +var faFlag = { prefix: 'fas', iconName: 'flag', icon: [512, 512, [], "f024", "M349.565 98.783C295.978 98.783 251.721 64 184.348 64c-24.955 0-47.309 4.384-68.045 12.013a55.947 55.947 0 0 0 3.586-23.562C118.117 24.015 94.806 1.206 66.338.048 34.345-1.254 8 24.296 8 56c0 19.026 9.497 35.825 24 45.945V488c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-94.4c28.311-12.064 63.582-22.122 114.435-22.122 53.588 0 97.844 34.783 165.217 34.783 48.169 0 86.667-16.294 122.505-40.858C506.84 359.452 512 349.571 512 339.045v-243.1c0-23.393-24.269-38.87-45.485-29.016-34.338 15.948-76.454 31.854-116.95 31.854z"] }; +var faFlagCheckered = { prefix: 'fas', iconName: 'flag-checkered', icon: [512, 512, [], "f11e", "M466.515 66.928C487.731 57.074 512 72.551 512 95.944v243.1c0 10.526-5.161 20.407-13.843 26.358-35.837 24.564-74.335 40.858-122.505 40.858-67.373 0-111.63-34.783-165.217-34.783-50.853 0-86.124 10.058-114.435 22.122V488c0 13.255-10.745 24-24 24H56c-13.255 0-24-10.745-24-24V101.945C17.497 91.825 8 75.026 8 56 8 24.296 34.345-1.254 66.338.048c28.468 1.158 51.779 23.968 53.551 52.404.52 8.342-.81 16.31-3.586 23.562C137.039 68.384 159.393 64 184.348 64c67.373 0 111.63 34.783 165.217 34.783 40.496 0 82.612-15.906 116.95-31.855zM96 134.63v70.49c29-10.67 51.18-17.83 73.6-20.91v-71.57c-23.5 2.17-40.44 9.79-73.6 21.99zm220.8 9.19c-26.417-4.672-49.886-13.979-73.6-21.34v67.42c24.175 6.706 47.566 16.444 73.6 22.31v-68.39zm-147.2 40.39v70.04c32.796-2.978 53.91-.635 73.6 3.8V189.9c-25.247-7.035-46.581-9.423-73.6-5.69zm73.6 142.23c26.338 4.652 49.732 13.927 73.6 21.34v-67.41c-24.277-6.746-47.54-16.45-73.6-22.32v68.39zM96 342.1c23.62-8.39 47.79-13.84 73.6-16.56v-71.29c-26.11 2.35-47.36 8.04-73.6 17.36v70.49zm368-221.6c-21.3 8.85-46.59 17.64-73.6 22.47v71.91c27.31-4.36 50.03-14.1 73.6-23.89V120.5zm0 209.96v-70.49c-22.19 14.2-48.78 22.61-73.6 26.02v71.58c25.07-2.38 48.49-11.04 73.6-27.11zM316.8 212.21v68.16c25.664 7.134 46.616 9.342 73.6 5.62v-71.11c-25.999 4.187-49.943 2.676-73.6-2.67z"] }; +var faFlask = { prefix: 'fas', iconName: 'flask', icon: [448, 512, [], "f0c3", "M437.2 403.5L320 215V64h8c13.3 0 24-10.7 24-24V24c0-13.3-10.7-24-24-24H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h8v151L10.8 403.5C-18.5 450.6 15.3 512 70.9 512h306.2c55.7 0 89.4-61.5 60.1-108.5zM137.9 320l48.2-77.6c3.7-5.2 5.8-11.6 5.8-18.4V64h64v160c0 6.9 2.2 13.2 5.8 18.4l48.2 77.6h-172z"] }; +var faFolder = { prefix: 'fas', iconName: 'folder', icon: [512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z"] }; +var faFolderOpen = { prefix: 'fas', iconName: 'folder-open', icon: [576, 512, [], "f07c", "M572.694 292.093L500.27 416.248A63.997 63.997 0 0 1 444.989 448H45.025c-18.523 0-30.064-20.093-20.731-36.093l72.424-124.155A64 64 0 0 1 152 256h399.964c18.523 0 30.064 20.093 20.73 36.093zM152 224h328v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v278.046l69.077-118.418C86.214 242.25 117.989 224 152 224z"] }; +var faFont = { prefix: 'fas', iconName: 'font', icon: [448, 512, [], "f031", "M152 416h-24.013l26.586-80.782H292.8L319.386 416H296c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-26.739L275.495 42.746A16 16 0 0 0 260.382 32h-72.766a16 16 0 0 0-15.113 10.746L42.739 416H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm64.353-271.778c4.348-15.216 6.61-28.156 7.586-34.644.839 6.521 2.939 19.476 7.727 34.706l41.335 124.006h-98.619l41.971-124.068z"] }; +var faFontAwesomeLogoFull = { prefix: 'fas', iconName: 'font-awesome-logo-full', icon: [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"] }; +var faFootballBall = { prefix: 'fas', iconName: 'football-ball', icon: [496, 512, [], "f44e", "M481.5 60.3c-4.8-18.2-19.1-32.5-37.3-37.4C420.3 16.5 383 8.9 339.4 8L496 164.8c-.8-43.5-8.2-80.6-14.5-104.5zm-467 391.4c4.8 18.2 19.1 32.5 37.3 37.4 23.9 6.4 61.2 14 104.8 14.9L0 347.2c.8 43.5 8.2 80.6 14.5 104.5zM4.2 283.4L220.4 500c132.5-19.4 248.8-118.7 271.5-271.4L275.6 12C143.1 31.4 26.8 130.7 4.2 283.4zm317.3-123.6c3.1-3.1 8.2-3.1 11.3 0l11.3 11.3c3.1 3.1 3.1 8.2 0 11.3l-28.3 28.3 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-22.6 22.7 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L248 278.6l-22.6 22.6 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-28.3 28.3c-3.1 3.1-8.2 3.1-11.3 0l-11.3-11.3c-3.1-3.1-3.1-8.2 0-11.3l28.3-28.3-28.3-28.2c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 28.3-28.5z"] }; +var faForward = { prefix: 'fas', iconName: 'forward', icon: [512, 512, [], "f04e", "M500.5 231.4l-192-160C287.9 54.3 256 68.6 256 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2zm-256 0l-192-160C31.9 54.3 0 68.6 0 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2z"] }; +var faFrog = { prefix: 'fas', iconName: 'frog', icon: [576, 512, [], "f52e", "M446.53 97.43C439.67 60.23 407.19 32 368 32c-39.23 0-71.72 28.29-78.54 65.54C126.75 112.96-.5 250.12 0 416.98.11 451.9 29.08 480 64 480h304c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-79.49l35.8-48.33c24.14-36.23 10.35-88.28-33.71-106.6-23.89-9.93-51.55-4.65-72.24 10.88l-32.76 24.59c-7.06 5.31-17.09 3.91-22.41-3.19-5.3-7.08-3.88-17.11 3.19-22.41l34.78-26.09c36.84-27.66 88.28-27.62 125.13 0 10.87 8.15 45.87 39.06 40.8 93.21L469.62 480H560c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-53.63l-98.52-104.68 154.44-86.65A58.16 58.16 0 0 0 576 189.94c0-21.4-11.72-40.95-30.48-51.23-40.56-22.22-98.99-41.28-98.99-41.28zM368 136c-13.26 0-24-10.75-24-24 0-13.26 10.74-24 24-24 13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24z"] }; +var faFrown = { prefix: 'fas', iconName: 'frown', icon: [496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm192.7 220.3c-3 2.5-6.6 3.7-10.2 3.7-4.6 0-9.1-2-12.3-5.8-22.4-26.8-55.3-42.2-90.2-42.2s-67.8 15.4-90.2 42.2c-5.6 6.8-15.7 7.7-22.5 2-6.8-5.7-7.7-15.7-2-22.5C161.7 339.6 203.6 320 248 320s86.3 19.6 114.7 53.8c5.7 6.7 4.8 16.8-2 22.5z"] }; +var faFutbol = { prefix: 'fas', iconName: 'futbol', icon: [512, 512, [], "f1e3", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-48 0l-.003-.282-26.064 22.741-62.679-58.5 16.454-84.355 34.303 3.072c-24.889-34.216-60.004-60.089-100.709-73.141l13.651 31.939L256 139l-74.953-41.525 13.651-31.939c-40.631 13.028-75.78 38.87-100.709 73.141l34.565-3.073 16.192 84.355-62.678 58.5-26.064-22.741-.003.282c0 43.015 13.497 83.952 38.472 117.991l7.704-33.897 85.138 10.447 36.301 77.826-29.902 17.786c40.202 13.122 84.29 13.148 124.572 0l-29.902-17.786 36.301-77.826 85.138-10.447 7.704 33.897C442.503 339.952 456 299.015 456 256zm-248.102 69.571l-29.894-91.312L256 177.732l77.996 56.527-29.622 91.312h-96.476z"] }; +var faGamepad = { prefix: 'fas', iconName: 'gamepad', icon: [640, 512, [], "f11b", "M480 96H160C71.6 96 0 167.6 0 256s71.6 160 160 160c44.8 0 85.2-18.4 114.2-48h91.5c29 29.6 69.5 48 114.2 48 88.4 0 160-71.6 160-160S568.4 96 480 96zM256 276c0 6.6-5.4 12-12 12h-52v52c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-52H76c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h52v-52c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h52c6.6 0 12 5.4 12 12v40zm184 68c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-80c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; +var faGasPump = { prefix: 'fas', iconName: 'gas-pump', icon: [512, 512, [], "f52f", "M336 448H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm157.2-340.7l-81-81c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-6.2 6.2-6.2 16.4 0 22.6L416 97.9V160c0 28.1 20.9 51.3 48 55.2V376c0 13.2-10.8 24-24 24s-24-10.8-24-24v-32c0-48.6-39.4-88-88-88h-8V64c0-35.3-28.7-64-64-64H96C60.7 0 32 28.7 32 64v352h288V304h8c22.1 0 40 17.9 40 40v27.8c0 37.7 27 72 64.5 75.9 43 4.3 79.5-29.5 79.5-71.7V152.6c0-17-6.8-33.3-18.8-45.3zM256 192H96V64h160v128z"] }; +var faGavel = { prefix: 'fas', iconName: 'gavel', icon: [512, 512, [], "f0e3", "M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z"] }; +var faGem = { prefix: 'fas', iconName: 'gem', icon: [576, 512, [], "f3a5", "M485.5 0L576 160H474.9L405.7 0h79.8zm-128 0l69.2 160H149.3L218.5 0h139zm-267 0h79.8l-69.2 160H0L90.5 0zM0 192h100.7l123 251.7c1.5 3.1-2.7 5.9-5 3.3L0 192zm148.2 0h279.6l-137 318.2c-1 2.4-4.5 2.4-5.5 0L148.2 192zm204.1 251.7l123-251.7H576L357.3 446.9c-2.3 2.7-6.5-.1-5-3.2z"] }; +var faGenderless = { prefix: 'fas', iconName: 'genderless', icon: [288, 512, [], "f22d", "M144 176c44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80 35.9-80 80-80m0-64C64.5 112 0 176.5 0 256s64.5 144 144 144 144-64.5 144-144-64.5-144-144-144z"] }; +var faGift = { prefix: 'fas', iconName: 'gift', icon: [512, 512, [], "f06b", "M32 448c0 17.7 14.3 32 32 32h160V320H32v128zm448-288h-42.1c6.2-12.1 10.1-25.5 10.1-40 0-48.5-39.5-88-88-88-41.6 0-68.5 21.3-103 68.3-34.5-47-61.4-68.3-103-68.3-48.5 0-88 39.5-88 88 0 14.5 3.8 27.9 10.1 40H32c-17.7 0-32 14.3-32 32v80c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-80c0-17.7-14.3-32-32-32zm-326.1 0c-22.1 0-40-17.9-40-40s17.9-40 40-40c19.9 0 34.6 3.3 86.1 80h-86.1zm206.1 0h-86.1c51.4-76.5 65.7-80 86.1-80 22.1 0 40 17.9 40 40s-17.9 40-40 40zm-72 320h160c17.7 0 32-14.3 32-32V320H288v160z"] }; +var faGlassMartini = { prefix: 'fas', iconName: 'glass-martini', icon: [512, 512, [], "f000", "M507.3 27.3c10-10 2.9-27.3-11.3-27.3H16C1.8 0-5.4 17.2 4.7 27.3L216 238.6V472h-92c-15.5 0-28 12.5-28 28 0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12 0-15.5-12.5-28-28-28h-92V238.6L507.3 27.3z"] }; +var faGlasses = { prefix: 'fas', iconName: 'glasses', icon: [576, 512, [], "f530", "M574.1 280.37L528.75 98.66c-5.91-23.7-21.59-44.05-43-55.81-21.44-11.73-46.97-14.11-70.19-6.33l-15.25 5.08c-8.39 2.79-12.92 11.86-10.12 20.24l5.06 15.18c2.79 8.38 11.85 12.91 20.23 10.12l13.18-4.39c10.87-3.62 23-3.57 33.16 1.73 10.29 5.37 17.57 14.56 20.37 25.82l38.46 153.82c-22.19-6.81-49.79-12.46-81.2-12.46-34.77 0-73.98 7.02-114.85 26.74h-73.18c-40.87-19.74-80.08-26.75-114.86-26.75-31.42 0-59.02 5.65-81.21 12.46l38.46-153.83c2.79-11.25 10.09-20.45 20.38-25.81 10.16-5.3 22.28-5.35 33.15-1.73l13.17 4.39c8.38 2.79 17.44-1.74 20.23-10.12l5.06-15.18c2.8-8.38-1.73-17.45-10.12-20.24l-15.25-5.08c-23.22-7.78-48.75-5.41-70.19 6.33-21.41 11.77-37.09 32.11-43 55.8L1.9 280.37A64.218 64.218 0 0 0 0 295.86v70.25C0 429.01 51.58 480 115.2 480h37.12c60.28 0 110.37-45.94 114.88-105.37l2.93-38.63h35.75l2.93 38.63C313.31 434.06 363.4 480 423.68 480h37.12c63.62 0 115.2-50.99 115.2-113.88v-70.25c0-5.23-.64-10.43-1.9-15.5zm-370.72 89.42c-1.97 25.91-24.4 46.21-51.06 46.21H115.2C86.97 416 64 393.62 64 366.11v-37.54c18.12-6.49 43.42-12.92 72.58-12.92 23.86 0 47.26 4.33 69.93 12.92l-3.13 41.22zM512 366.12c0 27.51-22.97 49.88-51.2 49.88h-37.12c-26.67 0-49.1-20.3-51.06-46.21l-3.13-41.22c22.67-8.59 46.08-12.92 69.95-12.92 29.12 0 54.43 6.44 72.55 12.93v37.54z"] }; +var faGlobe = { prefix: 'fas', iconName: 'globe', icon: [496, 512, [], "f0ac", "M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z"] }; +var faGolfBall = { prefix: 'fas', iconName: 'golf-ball', icon: [416, 512, [], "f450", "M96 416h224c0 17.7-14.3 32-32 32h-16c-17.7 0-32 14.3-32 32v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-20c0-17.7-14.3-32-32-32h-16c-17.7 0-32-14.3-32-32zm320-208c0 74.2-39 139.2-97.5 176h-221C39 347.2 0 282.2 0 208 0 93.1 93.1 0 208 0s208 93.1 208 208zm-180.1 43.9c18.3 0 33.1-14.8 33.1-33.1 0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1zm49.1 46.9c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1zm64-64c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1z"] }; +var faGraduationCap = { prefix: 'fas', iconName: 'graduation-cap', icon: [640, 512, [], "f19d", "M622.884 199.005l-275.817 85.1a96 96 0 0 1-54.134 0L92.398 222.232c-8.564 11.438-11.018 23.05-11.918 38.335C89.778 266.165 96 276.355 96 288c0 11.952-6.557 22.366-16.265 27.861l16.197 123.096c.63 4.786-3.1 9.043-7.932 9.043H40c-4.828 0-8.562-4.253-7.932-9.044L48.265 315.86C38.557 310.366 32 299.952 32 288c0-12.034 6.646-22.511 16.465-27.976.947-17.951 3.974-33.231 12.152-47.597l-43.502-13.422c-22.876-6.801-22.766-39.241 0-46.01l275.817-85.1a96 96 0 0 1 54.134 0l275.817 85.1c22.877 6.801 22.767 39.241.001 46.01zM356.503 314.682l-.207.064-.207.061a127.998 127.998 0 0 1-72.177 0l-.207-.061-.207-.064-150.914-46.57L120 352c0 35.346 89.543 64 200 64s200-28.654 200-64l-12.583-83.888-150.914 46.57z"] }; +var faGreaterThan = { prefix: 'fas', iconName: 'greater-than', icon: [384, 512, [], "f531", "M365.52 209.85L59.22 67.01c-16.06-7.49-35.15-.54-42.64 15.52L3.01 111.61c-7.49 16.06-.54 35.15 15.52 42.64L236.96 256.1 18.49 357.99C2.47 365.46-4.46 384.5 3.01 400.52l13.52 29C24 445.54 43.04 452.47 59.06 445l306.47-142.91a32.003 32.003 0 0 0 18.48-29v-34.23c-.01-12.45-7.21-23.76-18.49-29.01z"] }; +var faGreaterThanEqual = { prefix: 'fas', iconName: 'greater-than-equal', icon: [448, 512, [], "f532", "M55.22 107.69l175.56 68.09-175.44 68.05c-18.39 6.03-27.88 24.39-21.2 41l12.09 30.08c6.68 16.61 26.99 25.19 45.38 19.15L393.02 214.2c13.77-4.52 22.98-16.61 22.98-30.17v-15.96c0-13.56-9.21-25.65-22.98-30.17L91.3 17.92c-18.29-6-38.51 2.53-45.15 19.06L34.12 66.9c-6.64 16.53 2.81 34.79 21.1 40.79zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"] }; +var faHSquare = { prefix: 'fas', iconName: 'h-square', icon: [448, 512, [], "f0fd", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-112 48h-32c-8.837 0-16 7.163-16 16v80H160v-80c0-8.837-7.163-16-16-16h-32c-8.837 0-16 7.163-16 16v224c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16v-80h128v80c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144c0-8.837-7.163-16-16-16z"] }; +var faHandHolding = { prefix: 'fas', iconName: 'hand-holding', icon: [576, 512, [], "f4bd", "M565.3 328.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z"] }; +var faHandHoldingHeart = { prefix: 'fas', iconName: 'hand-holding-heart', icon: [576, 512, [], "f4be", "M275.3 250.5c7 7.4 18.4 7.4 25.5 0l108.9-114.2c31.6-33.2 29.8-88.2-5.6-118.8-30.8-26.7-76.7-21.9-104.9 7.7L288 36.9l-11.1-11.6C248.7-4.4 202.8-9.2 172 17.5c-35.3 30.6-37.2 85.6-5.6 118.8l108.9 114.2zm290 77.6c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z"] }; +var faHandHoldingUsd = { prefix: 'fas', iconName: 'hand-holding-usd', icon: [544, 512, [], "f4c0", "M257.6 144.3l50 14.3c3.6 1 6.1 4.4 6.1 8.1 0 4.6-3.8 8.4-8.4 8.4h-32.8c-3.6 0-7.1-.8-10.3-2.2-4.8-2.2-10.4-1.7-14.1 2l-17.5 17.5c-5.3 5.3-4.7 14.3 1.5 18.4 9.5 6.3 20.3 10.1 31.8 11.5V240c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16v-17.6c30.3-3.6 53.3-31 49.3-63-2.9-23-20.7-41.3-42.9-47.7l-50-14.3c-3.6-1-6.1-4.4-6.1-8.1 0-4.6 3.8-8.4 8.4-8.4h32.8c3.6 0 7.1.8 10.3 2.2 4.8 2.2 10.4 1.7 14.1-2l17.5-17.5c5.3-5.3 4.7-14.3-1.5-18.4-9.5-6.3-20.3-10.1-31.8-11.5V16c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16v17.6c-30.3 3.6-53.3 31-49.3 63 2.9 23 20.7 41.3 42.9 47.7zm276.3 183.8c-11.2-10.7-28.5-10-40.3 0L406.4 402c-10.7 9.1-24 14-37.8 14H256.9c-8.3 0-15.1-7.2-15.1-16s6.8-16 15.1-16h73.9c15.1 0 29-10.9 31.4-26.6 3.1-20-11.5-37.4-29.8-37.4H181.3c-25.5 0-50.2 9.3-69.9 26.3L67.5 384H15.1C6.8 384 0 391.2 0 400v96c0 8.8 6.8 16 15.1 16H352c13.7 0 27-4.9 37.8-14l142.8-121c14.4-12.1 15.5-35.3 1.3-48.9z"] }; +var faHandLizard = { prefix: 'fas', iconName: 'hand-lizard', icon: [576, 512, [], "f258", "M384 480h192V363.778a95.998 95.998 0 0 0-14.833-51.263L398.127 54.368A48 48 0 0 0 357.544 32H24C10.745 32 0 42.745 0 56v16c0 30.928 25.072 56 56 56h229.981c12.844 0 21.556 13.067 16.615 24.923l-21.41 51.385A32 32 0 0 1 251.648 224H128c-35.346 0-64 28.654-64 64v8c0 13.255 10.745 24 24 24h147.406a47.995 47.995 0 0 1 25.692 7.455l111.748 70.811A24.001 24.001 0 0 1 384 418.539V480z"] }; +var faHandPaper = { prefix: 'fas', iconName: 'hand-paper', icon: [448, 512, [], "f256", "M408.781 128.007C386.356 127.578 368 146.36 368 168.79V256h-8V79.79c0-22.43-18.356-41.212-40.781-40.783C297.488 39.423 280 57.169 280 79v177h-8V40.79C272 18.36 253.644-.422 231.219.007 209.488.423 192 18.169 192 40v216h-8V80.79c0-22.43-18.356-41.212-40.781-40.783C121.488 40.423 104 58.169 104 80v235.992l-31.648-43.519c-12.993-17.866-38.009-21.817-55.877-8.823-17.865 12.994-21.815 38.01-8.822 55.877l125.601 172.705A48 48 0 0 0 172.073 512h197.59c22.274 0 41.622-15.324 46.724-37.006l26.508-112.66a192.011 192.011 0 0 0 5.104-43.975V168c.001-21.831-17.487-39.577-39.218-39.993z"] }; +var faHandPeace = { prefix: 'fas', iconName: 'hand-peace', icon: [448, 512, [], "f25b", "M408 216c-22.092 0-40 17.909-40 40h-8v-32c0-22.091-17.908-40-40-40s-40 17.909-40 40v32h-8V48c0-26.51-21.49-48-48-48s-48 21.49-48 48v208h-13.572L92.688 78.449C82.994 53.774 55.134 41.63 30.461 51.324 5.787 61.017-6.356 88.877 3.337 113.551l74.765 190.342-31.09 24.872c-15.381 12.306-19.515 33.978-9.741 51.081l64 112A39.998 39.998 0 0 0 136 512h240c18.562 0 34.686-12.77 38.937-30.838l32-136A39.97 39.97 0 0 0 448 336v-80c0-22.091-17.908-40-40-40z"] }; +var faHandPointDown = { prefix: 'fas', iconName: 'hand-point-down', icon: [384, 512, [], "f0a7", "M91.826 467.2V317.966c-8.248 5.841-16.558 10.57-24.918 14.153C35.098 345.752-.014 322.222 0 288c.008-18.616 10.897-32.203 29.092-40 28.286-12.122 64.329-78.648 77.323-107.534 7.956-17.857 25.479-28.453 43.845-28.464l.001-.002h171.526c11.812 0 21.897 8.596 23.703 20.269 7.25 46.837 38.483 61.76 38.315 123.731-.007 2.724.195 13.254.195 16 0 50.654-22.122 81.574-71.263 72.6-9.297 18.597-39.486 30.738-62.315 16.45-21.177 24.645-53.896 22.639-70.944 6.299V467.2c0 24.15-20.201 44.8-43.826 44.8-23.283 0-43.826-21.35-43.826-44.8zM112 72V24c0-13.255 10.745-24 24-24h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24zm212-24c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z"] }; +var faHandPointLeft = { prefix: 'fas', iconName: 'hand-point-left', icon: [512, 512, [], "f0a5", "M44.8 155.826h149.234c-5.841-8.248-10.57-16.558-14.153-24.918C166.248 99.098 189.778 63.986 224 64c18.616.008 32.203 10.897 40 29.092 12.122 28.286 78.648 64.329 107.534 77.323 17.857 7.956 28.453 25.479 28.464 43.845l.002.001v171.526c0 11.812-8.596 21.897-20.269 23.703-46.837 7.25-61.76 38.483-123.731 38.315-2.724-.007-13.254.195-16 .195-50.654 0-81.574-22.122-72.6-71.263-18.597-9.297-30.738-39.486-16.45-62.315-24.645-21.177-22.639-53.896-6.299-70.944H44.8c-24.15 0-44.8-20.201-44.8-43.826 0-23.283 21.35-43.826 44.8-43.826zM440 176h48c13.255 0 24 10.745 24 24v192c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24zm24 212c11.046 0 20-8.954 20-20s-8.954-20-20-20-20 8.954-20 20 8.954 20 20 20z"] }; +var faHandPointRight = { prefix: 'fas', iconName: 'hand-point-right', icon: [512, 512, [], "f0a4", "M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z"] }; +var faHandPointUp = { prefix: 'fas', iconName: 'hand-point-up', icon: [384, 512, [], "f0a6", "M135.652 0c23.625 0 43.826 20.65 43.826 44.8v99.851c17.048-16.34 49.766-18.346 70.944 6.299 22.829-14.288 53.017-2.147 62.315 16.45C361.878 158.426 384 189.346 384 240c0 2.746-.203 13.276-.195 16 .168 61.971-31.065 76.894-38.315 123.731C343.683 391.404 333.599 400 321.786 400H150.261l-.001-.002c-18.366-.011-35.889-10.607-43.845-28.464C93.421 342.648 57.377 276.122 29.092 264 10.897 256.203.008 242.616 0 224c-.014-34.222 35.098-57.752 66.908-44.119 8.359 3.583 16.67 8.312 24.918 14.153V44.8c0-23.45 20.543-44.8 43.826-44.8zM136 416h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24v-48c0-13.255 10.745-24 24-24zm168 28c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z"] }; +var faHandPointer = { prefix: 'fas', iconName: 'hand-pointer', icon: [448, 512, [], "f25a", "M448 240v96c0 3.084-.356 6.159-1.063 9.162l-32 136C410.686 499.23 394.562 512 376 512H168a40.004 40.004 0 0 1-32.35-16.473l-127.997-176c-12.993-17.866-9.043-42.883 8.822-55.876 17.867-12.994 42.884-9.043 55.877 8.823L104 315.992V40c0-22.091 17.908-40 40-40s40 17.909 40 40v200h8v-40c0-22.091 17.908-40 40-40s40 17.909 40 40v40h8v-24c0-22.091 17.908-40 40-40s40 17.909 40 40v24h8c0-22.091 17.908-40 40-40s40 17.909 40 40zm-256 80h-8v96h8v-96zm88 0h-8v96h8v-96zm88 0h-8v96h8v-96z"] }; +var faHandRock = { prefix: 'fas', iconName: 'hand-rock', icon: [512, 512, [], "f255", "M512 128.79c0-26.322-20.861-48.344-47.18-48.783C437.935 79.558 416 101.217 416 128h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C333.935 47.558 312 69.217 312 96v32h-8V80.79c0-26.322-20.861-48.344-47.18-48.783C229.935 31.558 208 53.217 208 80v48h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C125.935 47.558 104 69.217 104 96v136l-8-7.111V176.79c0-26.322-20.861-48.344-47.18-48.783C21.935 127.558 0 149.217 0 176v66.445a95.998 95.998 0 0 0 32.221 71.751l111.668 99.261A47.999 47.999 0 0 1 160 449.333V456c0 13.255 10.745 24 24 24h240c13.255 0 24-10.745 24-24v-2.921a96.01 96.01 0 0 1 7.523-37.254l48.954-116.265A96.002 96.002 0 0 0 512 262.306V128.79z"] }; +var faHandScissors = { prefix: 'fas', iconName: 'hand-scissors', icon: [512, 512, [], "f257", "M216 440c0-22.092 17.909-40 40-40v-8h-32c-22.091 0-40-17.908-40-40s17.909-40 40-40h32v-8H48c-26.51 0-48-21.49-48-48s21.49-48 48-48h208v-13.572l-177.551-69.74c-24.674-9.694-36.818-37.555-27.125-62.228 9.693-24.674 37.554-36.817 62.228-27.124l190.342 74.765 24.872-31.09c12.306-15.381 33.978-19.515 51.081-9.741l112 64A40.002 40.002 0 0 1 512 168v240c0 18.562-12.77 34.686-30.838 38.937l-136 32A39.982 39.982 0 0 1 336 480h-80c-22.091 0-40-17.908-40-40z"] }; +var faHandSpock = { prefix: 'fas', iconName: 'hand-spock', icon: [512, 512, [], "f259", "M10.872 316.585c15.139-16.086 40.454-16.854 56.543-1.713L128 371.893v-79.405L88.995 120.865c-4.896-21.542 8.598-42.974 30.14-47.87 21.549-4.894 42.975 8.599 47.87 30.141L201.747 256h9.833L164.016 48.966c-4.946-21.531 8.498-42.994 30.028-47.94 21.532-4.95 42.994 8.498 47.94 30.028L293.664 256h15.105l48.425-193.702c5.357-21.432 27.075-34.462 48.507-29.104 21.432 5.358 34.463 27.075 29.104 48.507L391.231 256h11.08l30.768-129.265c5.117-21.491 26.685-34.768 48.177-29.647 21.491 5.117 34.765 26.686 29.647 48.177l-36.292 152.467A96.024 96.024 0 0 0 472 319.967v42.102a96.002 96.002 0 0 1-3.96 27.287l-26.174 88.287C435.825 498.022 417.101 512 395.846 512H179.172a48.002 48.002 0 0 1-32.898-13.046L12.585 373.128c-16.087-15.141-16.853-40.456-1.713-56.543z"] }; +var faHands = { prefix: 'fas', iconName: 'hands', icon: [640, 512, [], "f4c2", "M204.8 230.4c-10.6-14.1-30.7-17-44.8-6.4-14.1 10.6-17 30.7-6.4 44.8l38.1 50.8c4.8 6.4 4.1 15.3-1.5 20.9l-12.8 12.8c-6.7 6.7-17.6 6.2-23.6-1.1L64 244.4V96c0-17.7-14.3-32-32-32S0 78.3 0 96v218.4c0 10.9 3.7 21.5 10.5 30l104.1 134.3c5 6.5 8.4 13.9 10.4 21.7 1.8 6.9 8.1 11.6 15.3 11.6H272c8.8 0 16-7.2 16-16V384c0-27.7-9-54.6-25.6-76.8l-57.6-76.8zM608 64c-17.7 0-32 14.3-32 32v148.4l-89.8 107.8c-6 7.2-17 7.7-23.6 1.1l-12.8-12.8c-5.6-5.6-6.3-14.5-1.5-20.9l38.1-50.8c10.6-14.1 7.7-34.2-6.4-44.8-14.1-10.6-34.2-7.7-44.8 6.4l-57.6 76.8C361 329.4 352 356.3 352 384v112c0 8.8 7.2 16 16 16h131.7c7.1 0 13.5-4.7 15.3-11.6 2-7.8 5.4-15.2 10.4-21.7l104.1-134.3c6.8-8.5 10.5-19.1 10.5-30V96c0-17.7-14.3-32-32-32z"] }; +var faHandsHelping = { prefix: 'fas', iconName: 'hands-helping', icon: [640, 512, [], "f4c4", "M488 192H336v56c0 39.7-32.3 72-72 72s-72-32.3-72-72V126.4l-64.9 39C107.8 176.9 96 197.8 96 220.2v47.3l-80 46.2C.7 322.5-4.6 342.1 4.3 357.4l80 138.6c8.8 15.3 28.4 20.5 43.7 11.7L231.4 448H368c35.3 0 64-28.7 64-64h16c17.7 0 32-14.3 32-32v-64h8c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zm147.7-37.4L555.7 16C546.9.7 527.3-4.5 512 4.3L408.6 64H306.4c-12 0-23.7 3.4-33.9 9.7L239 94.6c-9.4 5.8-15 16.1-15 27.1V248c0 22.1 17.9 40 40 40s40-17.9 40-40v-88h184c30.9 0 56 25.1 56 56v28.5l80-46.2c15.3-8.9 20.5-28.4 11.7-43.7z"] }; +var faHandshake = { prefix: 'fas', iconName: 'handshake', icon: [640, 512, [], "f2b5", "M434.7 64h-85.9c-8 0-15.7 3-21.6 8.4l-98.3 90c-.1.1-.2.3-.3.4-16.6 15.6-16.3 40.5-2.1 56 12.7 13.9 39.4 17.6 56.1 2.7.1-.1.3-.1.4-.2l79.9-73.2c6.5-5.9 16.7-5.5 22.6 1 6 6.5 5.5 16.6-1 22.6l-26.1 23.9L504 313.8c2.9 2.4 5.5 5 7.9 7.7V128l-54.6-54.6c-5.9-6-14.1-9.4-22.6-9.4zM544 128.2v223.9c0 17.7 14.3 32 32 32h64V128.2h-96zm48 223.9c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM0 384h64c17.7 0 32-14.3 32-32V128.2H0V384zm48-63.9c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16c0-8.9 7.2-16 16-16zm435.9 18.6L334.6 217.5l-30 27.5c-29.7 27.1-75.2 24.5-101.7-4.4-26.9-29.4-24.8-74.9 4.4-101.7L289.1 64h-83.8c-8.5 0-16.6 3.4-22.6 9.4L128 128v223.9h18.3l90.5 81.9c27.4 22.3 67.7 18.1 90-9.3l.2-.2 17.9 15.5c15.9 13 39.4 10.5 52.3-5.4l31.4-38.6 5.4 4.4c13.7 11.1 33.9 9.1 45-4.7l9.5-11.7c11.2-13.8 9.1-33.9-4.6-45.1z"] }; +var faHashtag = { prefix: 'fas', iconName: 'hashtag', icon: [448, 512, [], "f292", "M440.667 182.109l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l14.623-81.891C377.123 38.754 371.468 32 363.997 32h-40.632a12 12 0 0 0-11.813 9.891L296.175 128H197.54l14.623-81.891C213.477 38.754 207.822 32 200.35 32h-40.632a12 12 0 0 0-11.813 9.891L132.528 128H53.432a12 12 0 0 0-11.813 9.891l-7.143 40C33.163 185.246 38.818 192 46.289 192h74.81L98.242 320H19.146a12 12 0 0 0-11.813 9.891l-7.143 40C-1.123 377.246 4.532 384 12.003 384h74.81L72.19 465.891C70.877 473.246 76.532 480 84.003 480h40.632a12 12 0 0 0 11.813-9.891L151.826 384h98.634l-14.623 81.891C234.523 473.246 240.178 480 247.65 480h40.632a12 12 0 0 0 11.813-9.891L315.472 384h79.096a12 12 0 0 0 11.813-9.891l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l22.857-128h79.096a12 12 0 0 0 11.813-9.891zM261.889 320h-98.634l22.857-128h98.634l-22.857 128z"] }; +var faHdd = { prefix: 'fas', iconName: 'hdd', icon: [576, 512, [], "f0a0", "M576 304v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48zm-48-80a79.557 79.557 0 0 1 30.777 6.165L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L17.223 230.165A79.557 79.557 0 0 1 48 224h480zm-48 96c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm-96 0c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; +var faHeading = { prefix: 'fas', iconName: 'heading', icon: [512, 512, [], "f1dc", "M496 80V48c0-8.837-7.163-16-16-16H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.621v128H154.379V96H192c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.275v320H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.621V288H357.62v128H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.275V96H480c8.837 0 16-7.163 16-16z"] }; +var faHeadphones = { prefix: 'fas', iconName: 'headphones', icon: [512, 512, [], "f025", "M256 32C114.52 32 0 146.496 0 288v48a32 32 0 0 0 17.689 28.622l14.383 7.191C34.083 431.903 83.421 480 144 480h24c13.255 0 24-10.745 24-24V280c0-13.255-10.745-24-24-24h-24c-31.342 0-59.671 12.879-80 33.627V288c0-105.869 86.131-192 192-192s192 86.131 192 192v1.627C427.671 268.879 399.342 256 368 256h-24c-13.255 0-24 10.745-24 24v176c0 13.255 10.745 24 24 24h24c60.579 0 109.917-48.098 111.928-108.187l14.382-7.191A32 32 0 0 0 512 336v-48c0-141.479-114.496-256-256-256z"] }; +var faHeart = { prefix: 'fas', iconName: 'heart', icon: [512, 512, [], "f004", "M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z"] }; +var faHeartbeat = { prefix: 'fas', iconName: 'heartbeat', icon: [512, 512, [], "f21e", "M320.2 243.8l-49.7 99.4c-6 12.1-23.4 11.7-28.9-.6l-56.9-126.3-30 71.7H60.6l182.5 186.5c7.1 7.3 18.6 7.3 25.7 0L451.4 288H342.3l-22.1-44.2zM473.7 73.9l-2.4-2.5c-51.5-52.6-135.8-52.6-187.4 0L256 100l-27.9-28.5c-51.5-52.7-135.9-52.7-187.4 0l-2.4 2.4C-10.4 123.7-12.5 203 31 256h102.4l35.9-86.2c5.4-12.9 23.6-13.2 29.4-.4l58.2 129.3 49-97.9c5.9-11.8 22.7-11.8 28.6 0l27.6 55.2H481c43.5-53 41.4-132.3-7.3-182.1z"] }; +var faHelicopter = { prefix: 'fas', iconName: 'helicopter', icon: [640, 512, [], "f533", "M304 384h272c17.67 0 32-14.33 32-32 0-123.71-100.29-224-224-224V64h176c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H144c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h176v64H112L68.8 70.4C65.78 66.37 61.03 64 56 64H16.01C5.6 64-2.04 73.78.49 83.88L32 192l160 64 86.4 115.2A31.992 31.992 0 0 0 304 384zm112-188.49C478.55 208.3 528.03 257.44 540.79 320H416V195.51zm219.37 263.3l-22.15-22.2c-6.25-6.26-16.24-6.1-22.64.01-7.09 6.77-13.84 11.25-24.64 11.25H240c-8.84 0-16 7.18-16 16.03v32.06c0 8.85 7.16 16.03 16 16.03h325.94c14.88 0 35.3-.47 68.45-29.52 7.02-6.14 7.57-17.05.98-23.66z"] }; +var faHistory = { prefix: 'fas', iconName: 'history', icon: [512, 512, [], "f1da", "M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z"] }; +var faHockeyPuck = { prefix: 'fas', iconName: 'hockey-puck', icon: [512, 512, [], "f453", "M0 160c0-53 114.6-96 256-96s256 43 256 96-114.6 96-256 96S0 213 0 160zm0 82.2V352c0 53 114.6 96 256 96s256-43 256-96V242.2c-113.4 82.3-398.5 82.4-512 0z"] }; +var faHome = { prefix: 'fas', iconName: 'home', icon: [576, 512, [], "f015", "M488 312.7V456c0 13.3-10.7 24-24 24H348c-6.6 0-12-5.4-12-12V356c0-6.6-5.4-12-12-12h-72c-6.6 0-12 5.4-12 12v112c0 6.6-5.4 12-12 12H112c-13.3 0-24-10.7-24-24V312.7c0-3.6 1.6-7 4.4-9.3l188-154.8c4.4-3.6 10.8-3.6 15.3 0l188 154.8c2.7 2.3 4.3 5.7 4.3 9.3zm83.6-60.9L488 182.9V44.4c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12V117l-89.5-73.7c-17.7-14.6-43.3-14.6-61 0L4.4 251.8c-5.1 4.2-5.8 11.8-1.6 16.9l25.5 31c4.2 5.1 11.8 5.8 16.9 1.6l235.2-193.7c4.4-3.6 10.8-3.6 15.3 0l235.2 193.7c5.1 4.2 12.7 3.5 16.9-1.6l25.5-31c4.2-5.2 3.4-12.7-1.7-16.9z"] }; +var faHospital = { prefix: 'fas', iconName: 'hospital', icon: [448, 512, [], "f0f8", "M448 492v20H0v-20c0-6.627 5.373-12 12-12h20V120c0-13.255 10.745-24 24-24h88V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v72h88c13.255 0 24 10.745 24 24v360h20c6.627 0 12 5.373 12 12zM308 192h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-168 64h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm104 128h-40c-6.627 0-12 5.373-12 12v84h64v-84c0-6.627-5.373-12-12-12zm64-96h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-116 12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zM182 96h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6z"] }; +var faHospitalAlt = { prefix: 'fas', iconName: 'hospital-alt', icon: [576, 512, [], "f47d", "M544 96H416V32c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32v368c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16V128c0-17.7-14.3-32-32-32zM160 436c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm160 128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm16-170c0 3.3-2.7 6-6 6h-26v26c0 3.3-2.7 6-6 6h-20c-3.3 0-6-2.7-6-6v-26h-26c-3.3 0-6-2.7-6-6v-20c0-3.3 2.7-6 6-6h26V86c0-3.3 2.7-6 6-6h20c3.3 0 6 2.7 6 6v26h26c3.3 0 6 2.7 6 6v20zm144 298c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z"] }; +var faHospitalSymbol = { prefix: 'fas', iconName: 'hospital-symbol', icon: [512, 512, [], "f47e", "M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm112 376c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-88h-96v88c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V136c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v88h96v-88c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v240z"] }; +var faHourglass = { prefix: 'fas', iconName: 'hourglass', icon: [384, 512, [], "f254", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64z"] }; +var faHourglassEnd = { prefix: 'fas', iconName: 'hourglass-end', icon: [384, 512, [], "f253", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64zM192 208c-57.787 0-104-66.518-104-144h208c0 77.945-46.51 144-104 144z"] }; +var faHourglassHalf = { prefix: 'fas', iconName: 'hourglass-half', icon: [384, 512, [], "f252", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-75.078 384H99.08c17.059-46.797 52.096-80 92.92-80 40.821 0 75.862 33.196 92.922 80zm.019-256H99.078C91.988 108.548 88 86.748 88 64h208c0 22.805-3.987 44.587-11.059 64z"] }; +var faHourglassStart = { prefix: 'fas', iconName: 'hourglass-start', icon: [384, 512, [], "f251", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-64 448H88c0-77.458 46.204-144 104-144 57.786 0 104 66.517 104 144z"] }; +var faICursor = { prefix: 'fas', iconName: 'i-cursor', icon: [256, 512, [], "f246", "M256 52.048V12.065C256 5.496 250.726.148 244.158.066 211.621-.344 166.469.011 128 37.959 90.266.736 46.979-.114 11.913.114 5.318.157 0 5.519 0 12.114v39.645c0 6.687 5.458 12.078 12.145 11.998C38.111 63.447 96 67.243 96 112.182V224H60c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h36v112c0 44.932-56.075 48.031-83.95 47.959C5.404 447.942 0 453.306 0 459.952v39.983c0 6.569 5.274 11.917 11.842 11.999 32.537.409 77.689.054 116.158-37.894 37.734 37.223 81.021 38.073 116.087 37.845 6.595-.043 11.913-5.405 11.913-12V460.24c0-6.687-5.458-12.078-12.145-11.998C217.889 448.553 160 444.939 160 400V288h36c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-36V112.182c0-44.932 56.075-48.213 83.95-48.142 6.646.018 12.05-5.346 12.05-11.992z"] }; +var faIdBadge = { prefix: 'fas', iconName: 'id-badge', icon: [384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM144 32h96c8.8 0 16 7.2 16 16s-7.2 16-16 16h-96c-8.8 0-16-7.2-16-16s7.2-16 16-16zm48 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 416 80 407.4 80 396.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"] }; +var faIdCard = { prefix: 'fas', iconName: 'id-card', icon: [576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v16h576V80c0-26.5-21.5-48-48-48zM0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V128H0v304zm352-232c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zM176 192c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zM67.1 396.2C75.5 370.5 99.6 352 128 352h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.9-5.2 19.8-15.6 19.8H82.7c-10.4 0-18.8-10-15.6-19.8z"] }; +var faIdCardAlt = { prefix: 'fas', iconName: 'id-card-alt', icon: [576, 512, [], "f47f", "M528 64H384v96H192V64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM288 224c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm93.3 224H194.7c-10.4 0-18.8-10-15.6-19.8 8.3-25.6 32.4-44.2 60.9-44.2h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.8-5.2 19.8-15.6 19.8zM352 32c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v96h128V32z"] }; +var faImage = { prefix: 'fas', iconName: 'image', icon: [512, 512, [], "f03e", "M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z"] }; +var faImages = { prefix: 'fas', iconName: 'images', icon: [576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v208c0 44.112 35.888 80 80 80h336zm96-80V80c0-26.51-21.49-48-48-48H144c-26.51 0-48 21.49-48 48v256c0 26.51 21.49 48 48 48h384c26.51 0 48-21.49 48-48zM256 128c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-96 144l55.515-55.515c4.686-4.686 12.284-4.686 16.971 0L272 256l135.515-135.515c4.686-4.686 12.284-4.686 16.971 0L512 208v112H160v-48z"] }; +var faInbox = { prefix: 'fas', iconName: 'inbox', icon: [576, 512, [], "f01c", "M567.938 243.908L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L8.062 243.908A47.994 47.994 0 0 0 0 270.533V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V270.533a47.994 47.994 0 0 0-8.062-26.625zM162.252 128h251.497l85.333 128H376l-32 64H232l-32-64H76.918l85.334-128z"] }; +var faIndent = { prefix: 'fas', iconName: 'indent', icon: [448, 512, [], "f03c", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm176 144h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm-52.687-111.313l-96-95.984C17.266 138.652 0 145.776 0 160.016v191.975c0 14.329 17.325 21.304 27.313 11.313l96-95.992c6.249-6.247 6.249-16.377 0-22.625z"] }; +var faIndustry = { prefix: 'fas', iconName: 'industry', icon: [512, 512, [], "f275", "M475.115 163.781L336 252.309v-68.28c0-18.916-20.931-30.399-36.885-20.248L160 252.309V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h464c13.255 0 24-10.745 24-24V184.029c0-18.917-20.931-30.399-36.885-20.248z"] }; +var faInfinity = { prefix: 'fas', iconName: 'infinity', icon: [640, 512, [], "f534", "M471.1 96C405 96 353.3 137.3 320 174.6 286.7 137.3 235 96 168.9 96 75.8 96 0 167.8 0 256s75.8 160 168.9 160c66.1 0 117.8-41.3 151.1-78.6 33.3 37.3 85 78.6 151.1 78.6 93.1 0 168.9-71.8 168.9-160S564.2 96 471.1 96zM168.9 320c-40.2 0-72.9-28.7-72.9-64s32.7-64 72.9-64c38.2 0 73.4 36.1 94 64-20.4 27.6-55.9 64-94 64zm302.2 0c-38.2 0-73.4-36.1-94-64 20.4-27.6 55.9-64 94-64 40.2 0 72.9 28.7 72.9 64s-32.7 64-72.9 64z"] }; +var faInfo = { prefix: 'fas', iconName: 'info', icon: [192, 512, [], "f129", "M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z"] }; +var faInfoCircle = { prefix: 'fas', iconName: 'info-circle', icon: [512, 512, [], "f05a", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z"] }; +var faItalic = { prefix: 'fas', iconName: 'italic', icon: [320, 512, [], "f033", "M204.758 416h-33.849l62.092-320h40.725a16 16 0 0 0 15.704-12.937l6.242-32C297.599 41.184 290.034 32 279.968 32H120.235a16 16 0 0 0-15.704 12.937l-6.242 32C96.362 86.816 103.927 96 113.993 96h33.846l-62.09 320H46.278a16 16 0 0 0-15.704 12.935l-6.245 32C22.402 470.815 29.967 480 40.034 480h158.479a16 16 0 0 0 15.704-12.935l6.245-32c1.927-9.88-5.638-19.065-15.704-19.065z"] }; +var faKey = { prefix: 'fas', iconName: 'key', icon: [512, 512, [], "f084", "M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z"] }; +var faKeyboard = { prefix: 'fas', iconName: 'keyboard', icon: [576, 512, [], "f11c", "M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"] }; +var faKiwiBird = { prefix: 'fas', iconName: 'kiwi-bird', icon: [576, 512, [], "f535", "M575.81 217.98C572.64 157.41 518.28 112 457.63 112h-9.37c-52.82 0-104.25-16.25-147.74-46.24-41.99-28.96-96.04-41.62-153.21-28.7C129.3 41.12-.08 78.24 0 224c.04 70.95 38.68 132.8 95.99 166.01V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-54.26c15.36 3.96 31.4 6.26 48 6.26 5.44 0 10.68-.73 16-1.18V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-59.43c14.24-5.06 27.88-11.39 40.34-19.51C342.07 355.25 393.86 336 448.46 336c25.48 0 16.01-.31 23.05-.78l74.41 136.44c2.86 5.23 8.3 8.34 14.05 8.34 1.31 0 2.64-.16 3.95-.5 7.09-1.8 12.05-8.19 12.05-15.5 0 0 .14-240.24-.16-246.02zM463.97 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm80 153.25l-39.86-73.08c15.12-5.83 28.73-14.6 39.86-25.98v99.06z"] }; +var faLanguage = { prefix: 'fas', iconName: 'language', icon: [640, 512, [], "f1ab", "M304 416H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h280v320zm-120.676-72.622A12 12 0 0 0 194.839 352h22.863c8.22 0 14.007-8.078 11.362-15.861L171.61 167.085a12 12 0 0 0-11.362-8.139h-32.489a12.001 12.001 0 0 0-11.362 8.139L58.942 336.139C56.297 343.922 62.084 352 70.304 352h22.805a12 12 0 0 0 11.535-8.693l9.118-31.807h60.211l9.351 31.878zm-39.051-140.42s4.32 21.061 7.83 33.21l10.8 37.531h-38.07l11.07-37.531c3.51-12.15 7.83-33.21 7.83-33.21h.54zM616 416H336V96h280c13.255 0 24 10.745 24 24v272c0 13.255-10.745 24-24 24zm-36-228h-64v-16c0-6.627-5.373-12-12-12h-16c-6.627 0-12 5.373-12 12v16h-64c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h114.106c-6.263 14.299-16.518 28.972-30.023 43.206-6.56-6.898-12.397-13.91-17.365-20.933-3.639-5.144-10.585-6.675-15.995-3.446l-7.28 4.346-6.498 3.879c-5.956 3.556-7.693 11.421-3.735 17.117 6.065 8.729 13.098 17.336 20.984 25.726-8.122 6.226-16.841 12.244-26.103 17.964-5.521 3.41-7.381 10.556-4.162 16.19l7.941 13.896c3.362 5.883 10.935 7.826 16.706 4.276 12.732-7.831 24.571-16.175 35.443-24.891 10.917 8.761 22.766 17.102 35.396 24.881 5.774 3.556 13.353 1.618 16.717-4.27l7.944-13.903c3.213-5.623 1.37-12.76-4.135-16.171a312.737 312.737 0 0 1-26.06-18.019c21.024-22.425 35.768-46.289 42.713-69.85H580c6.627 0 12-5.373 12-12v-16c0-6.625-5.373-11.998-12-11.998z"] }; +var faLaptop = { prefix: 'fas', iconName: 'laptop', icon: [640, 512, [], "f109", "M512 64v256H128V64h384m16-64H112C85.5 0 64 21.5 64 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm100 416H389.5c-3 0-5.5 2.1-5.9 5.1C381.2 436.3 368 448 352 448h-64c-16 0-29.2-11.7-31.6-26.9-.5-2.9-3-5.1-5.9-5.1H12c-6.6 0-12 5.4-12 12v36c0 26.5 21.5 48 48 48h544c26.5 0 48-21.5 48-48v-36c0-6.6-5.4-12-12-12z"] }; +var faLeaf = { prefix: 'fas', iconName: 'leaf', icon: [576, 512, [], "f06c", "M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z"] }; +var faLemon = { prefix: 'fas', iconName: 'lemon', icon: [512, 512, [], "f094", "M489.038 22.963C465.944-.13 434.648-5.93 413.947 6.129c-58.906 34.312-181.25-53.077-321.073 86.746S40.441 355.041 6.129 413.945c-12.059 20.702-6.26 51.999 16.833 75.093 23.095 23.095 54.392 28.891 75.095 16.832 58.901-34.31 181.246 53.079 321.068-86.743S471.56 156.96 505.871 98.056c12.059-20.702 6.261-51.999-16.833-75.093zM243.881 95.522c-58.189 14.547-133.808 90.155-148.358 148.358-1.817 7.27-8.342 12.124-15.511 12.124-1.284 0-2.59-.156-3.893-.481-8.572-2.144-13.784-10.83-11.642-19.403C81.901 166.427 166.316 81.93 236.119 64.478c8.575-2.143 17.261 3.069 19.403 11.642s-3.069 17.259-11.641 19.402z"] }; +var faLessThan = { prefix: 'fas', iconName: 'less-than', icon: [384, 512, [], "f536", "M365.46 357.74L147.04 255.89l218.47-101.88c16.02-7.47 22.95-26.51 15.48-42.53l-13.52-29C360 66.46 340.96 59.53 324.94 67L18.48 209.91a32.014 32.014 0 0 0-18.48 29v34.24c0 12.44 7.21 23.75 18.48 29l306.31 142.83c16.06 7.49 35.15.54 42.64-15.52l13.56-29.08c7.49-16.06.54-35.15-15.53-42.64z"] }; +var faLessThanEqual = { prefix: 'fas', iconName: 'less-than-equal', icon: [448, 512, [], "f537", "M54.98 214.2l301.41 119.87c18.39 6.03 38.71-2.54 45.38-19.15l12.09-30.08c6.68-16.61-2.82-34.97-21.21-41l-175.44-68.05 175.56-68.09c18.29-6 27.74-24.27 21.1-40.79l-12.03-29.92c-6.64-16.53-26.86-25.06-45.15-19.06L54.98 137.89C41.21 142.41 32 154.5 32 168.07v15.96c0 13.56 9.21 25.65 22.98 30.17zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"] }; +var faLevelDownAlt = { prefix: 'fas', iconName: 'level-down-alt', icon: [320, 512, [], "f3be", "M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z"] }; +var faLevelUpAlt = { prefix: 'fas', iconName: 'level-up-alt', icon: [320, 512, [], "f3bf", "M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z"] }; +var faLifeRing = { prefix: 'fas', iconName: 'life-ring', icon: [512, 512, [], "f1cd", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm173.696 119.559l-63.399 63.399c-10.987-18.559-26.67-34.252-45.255-45.255l63.399-63.399a218.396 218.396 0 0 1 45.255 45.255zM256 352c-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96-42.981 96-96 96zM127.559 82.304l63.399 63.399c-18.559 10.987-34.252 26.67-45.255 45.255l-63.399-63.399a218.372 218.372 0 0 1 45.255-45.255zM82.304 384.441l63.399-63.399c10.987 18.559 26.67 34.252 45.255 45.255l-63.399 63.399a218.396 218.396 0 0 1-45.255-45.255zm302.137 45.255l-63.399-63.399c18.559-10.987 34.252-26.67 45.255-45.255l63.399 63.399a218.403 218.403 0 0 1-45.255 45.255z"] }; +var faLightbulb = { prefix: 'fas', iconName: 'lightbulb', icon: [384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zm-143.107-44c-9.907 0-18.826-6.078-22.376-15.327C67.697 267.541 16 277.731 16 176 16 78.803 94.805 0 192 0s176 78.803 176 176c0 101.731-51.697 91.541-90.516 192.673-3.55 9.249-12.47 15.327-22.376 15.327H128.893zM112 176c0-44.112 35.888-80 80-80 8.837 0 16-7.164 16-16s-7.163-16-16-16c-61.757 0-112 50.243-112 112 0 8.836 7.164 16 16 16s16-7.164 16-16z"] }; +var faLink = { prefix: 'fas', iconName: 'link', icon: [512, 512, [], "f0c1", "M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z"] }; +var faLiraSign = { prefix: 'fas', iconName: 'lira-sign', icon: [384, 512, [], "f195", "M371.994 256h-48.019C317.64 256 312 260.912 312 267.246 312 368 230.179 416 144 416V256.781l134.603-29.912A12 12 0 0 0 288 215.155v-40.976c0-7.677-7.109-13.38-14.603-11.714L144 191.219V160.78l134.603-29.912A12 12 0 0 0 288 119.154V78.179c0-7.677-7.109-13.38-14.603-11.714L144 95.219V44c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v68.997L9.397 125.131A12 12 0 0 0 0 136.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 178.558v30.439L9.397 221.131A12 12 0 0 0 0 232.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 274.558V468c0 6.627 5.373 12 12 12h79.583c134.091 0 223.255-77.834 228.408-211.592.261-6.782-5.211-12.408-11.997-12.408z"] }; +var faList = { prefix: 'fas', iconName: 'list', icon: [512, 512, [], "f03a", "M128 116V76c0-8.837 7.163-16 16-16h352c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H144c-8.837 0-16-7.163-16-16zm16 176h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 144h64c8.837 0 16-7.163 16-16V64c0-8.837-7.163-16-16-16H16C7.163 48 0 55.163 0 64v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16z"] }; +var faListAlt = { prefix: 'fas', iconName: 'list-alt', icon: [512, 512, [], "f022", "M464 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM128 120c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288-136v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12z"] }; +var faListOl = { prefix: 'fas', iconName: 'list-ol', icon: [512, 512, [], "f0cb", "M3.263 139.527c0-7.477 3.917-11.572 11.573-11.572h15.131V88.078c0-5.163.534-10.503.534-10.503h-.356s-1.779 2.67-2.848 3.738c-4.451 4.273-10.504 4.451-15.666-1.068l-5.518-6.231c-5.342-5.341-4.984-11.216.534-16.379l21.72-19.938C32.815 33.602 36.732 32 42.785 32H54.89c7.656 0 11.749 3.916 11.749 11.572v84.384h15.488c7.655 0 11.572 4.094 11.572 11.572v8.901c0 7.477-3.917 11.572-11.572 11.572H14.836c-7.656 0-11.573-4.095-11.573-11.572v-8.902zM2.211 304.591c0-47.278 50.955-56.383 50.955-69.165 0-7.18-5.954-8.755-9.28-8.755-3.153 0-6.479 1.051-9.455 3.852-5.079 4.903-10.507 7.004-16.111 2.451l-8.579-6.829c-5.779-4.553-7.18-9.805-2.803-15.409C13.592 201.981 26.025 192 47.387 192c19.437 0 44.476 10.506 44.476 39.573 0 38.347-46.753 46.402-48.679 56.909h39.049c7.529 0 11.557 4.027 11.557 11.382v8.755c0 7.354-4.028 11.382-11.557 11.382h-67.94c-7.005 0-12.083-4.028-12.083-11.382v-4.028zM5.654 454.61l5.603-9.28c3.853-6.654 9.105-7.004 15.584-3.152 4.903 2.101 9.63 3.152 14.359 3.152 10.155 0 14.358-3.502 14.358-8.23 0-6.654-5.604-9.106-15.934-9.106h-4.728c-5.954 0-9.28-2.101-12.258-7.88l-1.05-1.926c-2.451-4.728-1.226-9.806 2.801-14.884l5.604-7.004c6.829-8.405 12.257-13.483 12.257-13.483v-.35s-4.203 1.051-12.608 1.051H16.685c-7.53 0-11.383-4.028-11.383-11.382v-8.755c0-7.53 3.853-11.382 11.383-11.382h58.484c7.529 0 11.382 4.027 11.382 11.382v3.327c0 5.778-1.401 9.806-5.079 14.183l-17.509 20.137c19.611 5.078 28.716 20.487 28.716 34.845 0 21.363-14.358 44.126-48.503 44.126-16.636 0-28.192-4.728-35.896-9.455-5.779-4.202-6.304-9.805-2.626-15.934zM144 132h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faListUl = { prefix: 'fas', iconName: 'list-ul', icon: [512, 512, [], "f0ca", "M96 96c0 26.51-21.49 48-48 48S0 122.51 0 96s21.49-48 48-48 48 21.49 48 48zM48 208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm0 160c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm96-236h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faLocationArrow = { prefix: 'fas', iconName: 'location-arrow', icon: [512, 512, [], "f124", "M443.683 4.529L27.818 196.418C-18.702 217.889-3.39 288 47.933 288H224v175.993c0 51.727 70.161 66.526 91.582 20.115L507.38 68.225c18.905-40.961-23.752-82.133-63.697-63.696z"] }; +var faLock = { prefix: 'fas', iconName: 'lock', icon: [448, 512, [], "f023", "M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z"] }; +var faLockOpen = { prefix: 'fas', iconName: 'lock-open', icon: [576, 512, [], "f3c1", "M423.5 0C339.5.3 272 69.5 272 153.5V224H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48h-48v-71.1c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v80c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-80C576 68 507.5-.3 423.5 0z"] }; +var faLongArrowAltDown = { prefix: 'fas', iconName: 'long-arrow-alt-down', icon: [256, 512, [], "f309", "M168 345.941V44c0-6.627-5.373-12-12-12h-56c-6.627 0-12 5.373-12 12v301.941H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.569 9.373 33.941 0l86.059-86.059c15.119-15.119 4.411-40.971-16.971-40.971H168z"] }; +var faLongArrowAltLeft = { prefix: 'fas', iconName: 'long-arrow-alt-left', icon: [448, 512, [], "f30a", "M134.059 296H436c6.627 0 12-5.373 12-12v-56c0-6.627-5.373-12-12-12H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.569 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296z"] }; +var faLongArrowAltRight = { prefix: 'fas', iconName: 'long-arrow-alt-right', icon: [448, 512, [], "f30b", "M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z"] }; +var faLongArrowAltUp = { prefix: 'fas', iconName: 'long-arrow-alt-up', icon: [256, 512, [], "f30c", "M88 166.059V468c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12V166.059h46.059c21.382 0 32.09-25.851 16.971-40.971l-86.059-86.059c-9.373-9.373-24.569-9.373-33.941 0l-86.059 86.059c-15.119 15.119-4.411 40.971 16.971 40.971H88z"] }; +var faLowVision = { prefix: 'fas', iconName: 'low-vision', icon: [576, 512, [], "f2a8", "M569.344 231.631C512.96 135.949 407.81 72 288 72c-28.468 0-56.102 3.619-82.451 10.409L152.778 10.24c-7.601-10.858-22.564-13.5-33.423-5.9l-13.114 9.178c-10.86 7.601-13.502 22.566-5.9 33.426l43.131 58.395C89.449 131.73 40.228 174.683 6.682 231.581c-.01.017-.023.033-.034.05-8.765 14.875-8.964 33.528 0 48.739 38.5 65.332 99.742 115.862 172.859 141.349L55.316 244.302A272.194 272.194 0 0 1 83.61 208.39l119.4 170.58h.01l40.63 58.04a330.055 330.055 0 0 0 78.94 1.17l-189.98-271.4a277.628 277.628 0 0 1 38.777-21.563l251.836 356.544c7.601 10.858 22.564 13.499 33.423 5.9l13.114-9.178c10.86-7.601 13.502-22.567 5.9-33.426l-43.12-58.377-.007-.009c57.161-27.978 104.835-72.04 136.81-126.301a47.938 47.938 0 0 0 .001-48.739zM390.026 345.94l-19.066-27.23c24.682-32.567 27.711-76.353 8.8-111.68v.03c0 23.65-19.17 42.82-42.82 42.82-23.828 0-42.82-19.349-42.82-42.82 0-23.65 19.17-42.82 42.82-42.82h.03c-24.75-13.249-53.522-15.643-79.51-7.68l-19.068-27.237C253.758 123.306 270.488 120 288 120c75.162 0 136 60.826 136 136 0 34.504-12.833 65.975-33.974 89.94z"] }; +var faMagic = { prefix: 'fas', iconName: 'magic', icon: [512, 512, [], "f0d0", "M101.1 505L7 410.9c-9.4-9.4-9.4-24.6 0-33.9L377 7c9.4-9.4 24.6-9.4 33.9 0l94.1 94.1c9.4 9.4 9.4 24.6 0 33.9L135 505c-9.3 9.3-24.5 9.3-33.9 0zM304 159.2l48.8 48.8 89.9-89.9-48.8-48.8-89.9 89.9zM138.9 39.3l-11.7 23.8-26.2 3.8c-4.7.7-6.6 6.5-3.2 9.8l19 18.5-4.5 26.1c-.8 4.7 4.1 8.3 8.3 6.1L144 115l23.4 12.3c4.2 2.2 9.1-1.4 8.3-6.1l-4.5-26.1 19-18.5c3.4-3.3 1.5-9.1-3.2-9.8L160.8 63l-11.7-23.8c-2-4.1-8.1-4.1-10.2.1zm97.7-20.7l-7.8 15.8-17.5 2.6c-3.1.5-4.4 4.3-2.1 6.5l12.6 12.3-3 17.4c-.5 3.1 2.8 5.5 5.6 4L240 69l15.6 8.2c2.8 1.5 6.1-.9 5.6-4l-3-17.4 12.6-12.3c2.3-2.2 1-6.1-2.1-6.5l-17.5-2.5-7.8-15.8c-1.4-3-5.4-3-6.8-.1zm-192 0l-7.8 15.8L19.3 37c-3.1.5-4.4 4.3-2.1 6.5l12.6 12.3-3 17.4c-.5 3.1 2.8 5.5 5.6 4L48 69l15.6 8.2c2.8 1.5 6.1-.9 5.6-4l-3-17.4 12.6-12.3c2.3-2.2 1-6.1-2.1-6.5l-17.5-2.5-7.8-15.8c-1.4-3-5.4-3-6.8-.1zm416 223.5l-7.8 15.8-17.5 2.5c-3.1.5-4.4 4.3-2.1 6.5l12.6 12.3-3 17.4c-.5 3.1 2.8 5.5 5.6 4l15.6-8.2 15.6 8.2c2.8 1.5 6.1-.9 5.6-4l-3-17.4 12.6-12.3c2.3-2.2 1-6.1-2.1-6.5l-17.5-2.5-7.8-15.8c-1.4-2.8-5.4-2.8-6.8 0z"] }; +var faMagnet = { prefix: 'fas', iconName: 'magnet', icon: [512, 512, [], "f076", "M164.1 160H12c-6.6 0-12-5.4-12-12V68c0-19.9 16.1-36 36-36h104c19.9 0 36 16.1 36 36v80c.1 6.6-5.3 12-11.9 12zm348-12V67.9c0-19.9-16.1-36-36-36h-104c-19.9 0-36 16.1-36 36v80c0 6.6 5.4 12 12 12h152c6.6.1 12-5.3 12-11.9zm-164 44c-6.6 0-12 5.4-12 12v52c0 128.1-160 127.9-160 0v-52c0-6.6-5.4-12-12-12h-152c-6.7 0-12 5.4-12 12.1.1 21.4.6 40.3 0 53.3C.1 408 136.3 504 256.9 504 377.5 504 512 408 512 257.3c-.6-12.8-.2-33 0-53.2 0-6.7-5.3-12.1-12-12.1H348.1z"] }; +var faMale = { prefix: 'fas', iconName: 'male', icon: [192, 512, [], "f183", "M96 0c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64S60.654 0 96 0m48 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H48c-26.51 0-48 21.49-48 48v136c0 13.255 10.745 24 24 24h16v136c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V352h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48z"] }; +var faMap = { prefix: 'fas', iconName: 'map', icon: [576, 512, [], "f279", "M576 56.015v335.97a23.998 23.998 0 0 1-13.267 21.466l-128 64C418.948 485.344 400 473.992 400 455.985v-335.97a23.998 23.998 0 0 1 13.267-21.466l128-64C557.052 26.656 576 38.008 576 56.015zm-206.253 42.07l-144-64c-15.751-7-33.747 4.461-33.747 21.932v335.967a24 24 0 0 0 14.253 21.931l144 64c15.751 7 33.747-4.461 33.747-21.931V120.017a24 24 0 0 0-14.253-21.932zm-228.48-63.536l-128 63.985A23.998 23.998 0 0 0 0 120v335.985c0 18.007 18.948 29.359 34.733 21.466l128-63.985A23.998 23.998 0 0 0 176 392V56.015c0-18.007-18.948-29.359-34.733-21.466z"] }; +var faMapMarker = { prefix: 'fas', iconName: 'map-marker', icon: [384, 512, [], "f041", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0z"] }; +var faMapMarkerAlt = { prefix: 'fas', iconName: 'map-marker-alt', icon: [384, 512, [], "f3c5", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"] }; +var faMapPin = { prefix: 'fas', iconName: 'map-pin', icon: [320, 512, [], "f276", "M192 300.813v172.82l-22.015 33.023c-4.75 7.125-15.219 7.125-19.969 0L128 473.633v-172.82a162.221 162.221 0 0 0 64 0zM160 0c79.529 0 144 64.471 144 144s-64.471 144-144 144S16 223.529 16 144 80.471 0 160 0M80 136c0-39.701 32.299-72 72-72a8 8 0 0 0 0-16c-48.523 0-88 39.477-88 88a8 8 0 0 0 16 0z"] }; +var faMapSigns = { prefix: 'fas', iconName: 'map-signs', icon: [512, 512, [], "f277", "M487.515 104.485L439.03 152.97a23.998 23.998 0 0 1-16.97 7.029H56c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h160v-8c0-13.255 10.745-24 24-24h32c13.255 0 24 10.745 24 24v8h126.059a24 24 0 0 1 16.97 7.029l48.485 48.485c4.687 4.687 4.687 12.285.001 16.971zM216 368v120c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V368h-80zm240-144H296v-48h-80v48H89.941a24 24 0 0 0-16.97 7.029l-48.485 48.485c-4.686 4.686-4.686 12.284 0 16.971l48.485 48.485a23.998 23.998 0 0 0 16.97 7.029H456c13.255 0 24-10.745 24-24v-80C480 234.745 469.255 224 456 224z"] }; +var faMars = { prefix: 'fas', iconName: 'mars', icon: [384, 512, [], "f222", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c0-6.6-5.4-12-12-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faMarsDouble = { prefix: 'fas', iconName: 'mars-double', icon: [512, 512, [], "f227", "M340 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C198.5 72.1 172.2 64 144 64 64.5 64 0 128.5 0 208s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.5 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 288c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80zm356-128.1h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7c-18.2-11.4-39-18.9-61.5-21.3-2.1 21.8-8.2 43.3-18.4 63.3 1.1 0 2.2-.1 3.2-.1 44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80c0-1.1 0-2.2.1-3.2-20 10.2-41.5 16.4-63.3 18.4C168.4 455.6 229.6 512 304 512c79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12v-79c0-6.7-5.4-12.1-12-12.1z"] }; +var faMarsStroke = { prefix: 'fas', iconName: 'mars-stroke', icon: [384, 512, [], "f229", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-17.5 17.5-14.1-14.1c-4.7-4.7-12.3-4.7-17 0L224.5 133c-4.7 4.7-4.7 12.3 0 17l14.1 14.1-18 18c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l18-18 14.1 14.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L329.2 164l17.5-17.5 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c-.1-6.6-5.5-12-12.1-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faMarsStrokeH = { prefix: 'fas', iconName: 'mars-stroke-h', icon: [480, 512, [], "f22b", "M476.2 247.5l-55.9-55.9c-7.6-7.6-20.5-2.2-20.5 8.5V224H376v-20c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v20h-27.6c-5.8-25.6-18.7-49.9-38.6-69.8C189.6 98 98.4 98 42.2 154.2c-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 19.9-19.9 32.8-44.2 38.6-69.8H312v20c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-20h23.9v23.9c0 10.7 12.9 16 20.5 8.5l55.9-55.9c4.6-4.7 4.6-12.3-.1-17zm-275.6 65.1c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z"] }; +var faMarsStrokeV = { prefix: 'fas', iconName: 'mars-stroke-v', icon: [288, 512, [], "f22a", "M245.8 234.2c-19.9-19.9-44.2-32.8-69.8-38.6v-25.4h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V81.4h23.9c10.7 0 16-12.9 8.5-20.5L152.5 5.1c-4.7-4.7-12.3-4.7-17 0L79.6 61c-7.6 7.6-2.2 20.5 8.5 20.5H112v24.7H92c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h20v25.4c-25.6 5.8-49.9 18.7-69.8 38.6-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 56.3-56.2 56.3-147.4 0-203.6zm-45.2 158.4c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z"] }; +var faMedkit = { prefix: 'fas', iconName: 'medkit', icon: [512, 512, [], "f0fa", "M96 480h320V128h-32V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v48H96v352zm96-384h128v32H192V96zm320 80v256c0 26.51-21.49 48-48 48h-16V128h16c26.51 0 48 21.49 48 48zM64 480H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v352zm288-208v32c0 8.837-7.163 16-16 16h-48v48c0 8.837-7.163 16-16 16h-32c-8.837 0-16-7.163-16-16v-48h-48c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h48v-48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v48h48c8.837 0 16 7.163 16 16z"] }; +var faMeh = { prefix: 'fas', iconName: 'meh', icon: [496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm176 192H152c-8.8 0-16-7.2-16-16s7.2-16 16-16h192c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-16-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faMemory = { prefix: 'fas', iconName: 'memory', icon: [640, 512, [], "f538", "M640 130.94V96c0-17.67-14.33-32-32-32H32C14.33 64 0 78.33 0 96v34.94c18.6 6.61 32 24.19 32 45.06s-13.4 38.45-32 45.06V320h640v-98.94c-18.6-6.61-32-24.19-32-45.06s13.4-38.45 32-45.06zM224 256h-64V128h64v128zm128 0h-64V128h64v128zm128 0h-64V128h64v128zM0 448h64v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h64v-96H0v96z"] }; +var faMercury = { prefix: 'fas', iconName: 'mercury', icon: [288, 512, [], "f223", "M288 208c0-44.2-19.9-83.7-51.2-110.1 2.5-1.8 4.9-3.8 7.2-5.8 24.7-21.2 39.8-48.8 43.2-78.8.9-7.1-4.7-13.3-11.9-13.3h-40.5C229 0 224.1 4.1 223 9.8c-2.4 12.5-9.6 24.3-20.7 33.8C187 56.8 166.3 64 144 64s-43-7.2-58.4-20.4C74.5 34.1 67.4 22.3 64.9 9.8 63.8 4.1 58.9 0 53.2 0H12.7C5.5 0-.1 6.2.8 13.3 4.2 43.4 19.2 71 44 92.2c2.3 2 4.7 3.9 7.2 5.8C19.9 124.3 0 163.8 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z"] }; +var faMicrochip = { prefix: 'fas', iconName: 'microchip', icon: [512, 512, [], "f2db", "M416 48v416c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h224c26.51 0 48 21.49 48 48zm96 58v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42V88h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zM30 376h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6z"] }; +var faMicrophone = { prefix: 'fas', iconName: 'microphone', icon: [352, 512, [], "f130", "M176 352c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96zm160-160h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16z"] }; +var faMicrophoneAlt = { prefix: 'fas', iconName: 'microphone-alt', icon: [352, 512, [], "f3c9", "M336 192h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16zM176 352c53.02 0 96-42.98 96-96h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96z"] }; +var faMicrophoneAltSlash = { prefix: 'fas', iconName: 'microphone-alt-slash', icon: [640, 512, [], "f539", "M633.82 458.1L476.26 336.33C488.74 312.21 496 284.98 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67h-43.67l-41.4-32H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.78c11.71-1.62 23.1-4.28 33.96-8.08l-50.4-38.96c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z"] }; +var faMicrophoneSlash = { prefix: 'fas', iconName: 'microphone-slash', icon: [640, 512, [], "f131", "M633.82 458.1l-157.8-121.96C488.61 312.13 496 285.01 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67V96c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.77c11.66-1.6 22.85-4.54 33.67-8.31l-50.11-38.73c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z"] }; +var faMinus = { prefix: 'fas', iconName: 'minus', icon: [448, 512, [], "f068", "M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; +var faMinusCircle = { prefix: 'fas', iconName: 'minus-circle', icon: [512, 512, [], "f056", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM124 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H124z"] }; +var faMinusSquare = { prefix: 'fas', iconName: 'minus-square', icon: [448, 512, [], "f146", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H92z"] }; +var faMobile = { prefix: 'fas', iconName: 'mobile', icon: [320, 512, [], "f10b", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faMobileAlt = { prefix: 'fas', iconName: 'mobile-alt', icon: [320, 512, [], "f3cd", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm112-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v312z"] }; +var faMoneyBill = { prefix: 'fas', iconName: 'money-bill', icon: [640, 512, [], "f0d6", "M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 176c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 48h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z"] }; +var faMoneyBillAlt = { prefix: 'fas', iconName: 'money-bill-alt', icon: [640, 512, [], "f3d1", "M352 288h-16v-88c0-4.42-3.58-8-8-8h-13.58c-4.74 0-9.37 1.4-13.31 4.03l-15.33 10.22a7.994 7.994 0 0 0-2.22 11.09l8.88 13.31a7.994 7.994 0 0 0 11.09 2.22l.47-.31V288h-16c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8h64c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 192c-53.02 0-96-50.15-96-112 0-61.86 42.98-112 96-112s96 50.14 96 112c0 61.87-43 112-96 112zm272 32h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z"] }; +var faMoneyBillWave = { prefix: 'fas', iconName: 'money-bill-wave', icon: [640, 512, [], "f53a", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM48 132.22c20.12 5.04 41.12 7.57 62.72 8.93C104.84 170.54 79 192.69 48 192.69v-60.47zm0 285v-47.78c34.37 0 62.18 27.27 63.71 61.4-22.53-1.81-43.59-6.31-63.71-13.62zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 27.78c-17.52-4.39-35.71-6.85-54.32-8.44 5.87-26.08 27.5-45.88 54.32-49.28v57.72zm0-236.11c-30.89-3.91-54.86-29.7-55.81-61.55 19.54 2.17 38.09 6.23 55.81 12.66v48.89z"] }; +var faMoneyBillWaveAlt = { prefix: 'fas', iconName: 'money-bill-wave-alt', icon: [640, 512, [], "f53b", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96z"] }; +var faMoneyCheck = { prefix: 'fas', iconName: 'money-check', icon: [640, 512, [], "f53c", "M0 448c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128H0v320zm448-208c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-32zm0 120c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H456c-4.42 0-8-3.58-8-8v-16zM64 264c0-4.42 3.58-8 8-8h304c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm0 96c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zM624 32H16C7.16 32 0 39.16 0 48v48h640V48c0-8.84-7.16-16-16-16z"] }; +var faMoneyCheckAlt = { prefix: 'fas', iconName: 'money-check-alt', icon: [640, 512, [], "f53d", "M608 32H32C14.33 32 0 46.33 0 64v384c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM176 327.88V344c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V152c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07zM416 312c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm160 0c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h272c4.42 0 8 3.58 8 8v16z"] }; +var faMoon = { prefix: 'fas', iconName: 'moon', icon: [512, 512, [], "f186", "M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z"] }; +var faMotorcycle = { prefix: 'fas', iconName: 'motorcycle', icon: [640, 512, [], "f21c", "M512.949 192.003c-14.862-.108-29.14 2.322-42.434 6.874L437.589 144H520c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24h-45.311a24 24 0 0 0-17.839 7.945l-37.496 41.663-22.774-37.956A24 24 0 0 0 376 64h-80c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h66.411l19.2 32H227.904c-17.727-23.073-44.924-40-99.904-40H72.54c-13.455 0-24.791 11.011-24.536 24.464C48.252 141.505 58.9 152 72 152h56c24.504 0 38.686 10.919 47.787 24.769l-11.291 20.529c-13.006-3.865-26.871-5.736-41.251-5.21C55.857 194.549 1.565 249.605.034 317.021-1.603 389.076 56.317 448 128 448c59.642 0 109.744-40.794 123.953-96h84.236c13.673 0 24.589-11.421 23.976-25.077-2.118-47.12 17.522-93.665 56.185-125.026l12.485 20.808c-27.646 23.654-45.097 58.88-44.831 98.179.47 69.556 57.203 126.452 126.758 127.11 71.629.678 129.839-57.487 129.234-129.099-.588-69.591-57.455-126.386-127.047-126.892zM128 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c4.242 0 8.405.341 12.469.982L98.97 316.434C90.187 332.407 101.762 352 120 352h81.297c-12.37 28.225-40.56 48-73.297 48zm388.351-.116C470.272 402.337 432 365.554 432 320c0-21.363 8.434-40.781 22.125-55.144l49.412 82.352c4.546 7.577 14.375 10.034 21.952 5.488l13.72-8.232c7.577-4.546 10.034-14.375 5.488-21.952l-48.556-80.927A80.005 80.005 0 0 1 512 240c45.554 0 82.338 38.273 79.884 84.352-2.16 40.558-34.974 73.372-75.533 75.532z"] }; +var faMousePointer = { prefix: 'fas', iconName: 'mouse-pointer', icon: [320, 512, [], "f245", "M302.189 329.126H196.105l55.831 135.993c3.889 9.428-.555 19.999-9.444 23.999l-49.165 21.427c-9.165 4-19.443-.571-23.332-9.714l-53.053-129.136-86.664 89.138C18.729 472.71 0 463.554 0 447.977V18.299C0 1.899 19.921-6.096 30.277 5.443l284.412 292.542c11.472 11.179 3.007 31.141-12.5 31.141z"] }; +var faMusic = { prefix: 'fas', iconName: 'music', icon: [512, 512, [], "f001", "M470.4 1.5l-304 96C153.1 101.7 144 114 144 128v264.6c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V220.5l272-85.9v194c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V32c0-21.7-21.1-37-41.6-30.5z"] }; +var faNeuter = { prefix: 'fas', iconName: 'neuter', icon: [288, 512, [], "f22c", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V468c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V316.4c64.1-14.5 112-71.9 112-140.4zm-144 80c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faNewspaper = { prefix: 'fas', iconName: 'newspaper', icon: [576, 512, [], "f1ea", "M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z"] }; +var faNotEqual = { prefix: 'fas', iconName: 'not-equal', icon: [448, 512, [], "f53e", "M416 208c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32h-23.88l51.87-66.81c5.37-7.02 4.04-17.06-2.97-22.43L415.61 3.3c-7.02-5.38-17.06-4.04-22.44 2.97L311.09 112H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h204.56l-74.53 96H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h55.49l-51.87 66.81c-5.37 7.01-4.04 17.05 2.97 22.43L64 508.7c7.02 5.38 17.06 4.04 22.43-2.97L168.52 400H416c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32H243.05l74.53-96H416z"] }; +var faNotesMedical = { prefix: 'fas', iconName: 'notes-medical', icon: [384, 512, [], "f481", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm96 304c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm0-192c0 4.4-3.6 8-8 8H104c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16z"] }; +var faObjectGroup = { prefix: 'fas', iconName: 'object-group', icon: [512, 512, [], "f247", "M480 128V96h20c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v20H64V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v40c0 6.627 5.373 12 12 12h20v320H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-20h384v20c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-20V128zM96 276V140c0-6.627 5.373-12 12-12h168c6.627 0 12 5.373 12 12v136c0 6.627-5.373 12-12 12H108c-6.627 0-12-5.373-12-12zm320 96c0 6.627-5.373 12-12 12H236c-6.627 0-12-5.373-12-12v-52h72c13.255 0 24-10.745 24-24v-72h84c6.627 0 12 5.373 12 12v136z"] }; +var faObjectUngroup = { prefix: 'fas', iconName: 'object-ungroup', icon: [576, 512, [], "f248", "M64 320v26a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6v-52a6 6 0 0 1 6-6h26V96H6a6 6 0 0 1-6-6V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v26h288V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-26v192h26a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-52a6 6 0 0 1-6-6v-26H64zm480-64v-32h26a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-52a6 6 0 0 0-6 6v26H408v72h8c13.255 0 24 10.745 24 24v64c0 13.255-10.745 24-24 24h-64c-13.255 0-24-10.745-24-24v-8H192v72h-26a6 6 0 0 0-6 6v52a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-26h288v26a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-26V256z"] }; +var faOutdent = { prefix: 'fas', iconName: 'outdent', icon: [448, 512, [], "f03b", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm208 144h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm192-128h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM4.687 267.313l96 95.984C110.734 373.348 128 366.224 128 351.984V160.008c0-14.329-17.325-21.304-27.313-11.313l-96 95.992c-6.249 6.248-6.249 16.378 0 22.626z"] }; +var faPaintBrush = { prefix: 'fas', iconName: 'paint-brush', icon: [512, 512, [], "f1fc", "M269.9 364.6c1.4 6.4 2.1 13 2.1 19.7 0 81.2-54.2 127.7-134.8 127.7C41.5 512 0 435.1 0 347.6c10.4 7.1 46.9 36.5 58.7 36.5 7 0 13-4 15.5-10.6 23.6-62.2 66.5-76.5 112.9-77.4 15.6 33.8 46.1 59.6 82.8 68.5zM460.6 0c-14.4 0-27.9 6.4-38.2 15.7C228.2 190 208 194.1 208 245.4c0 48.8 40.5 90.6 90.2 90.6 59 0 93.2-43.4 200.6-244.8 7-13.7 13.2-28.5 13.2-43.9C512 19.7 487.3 0 460.6 0z"] }; +var faPalette = { prefix: 'fas', iconName: 'palette', icon: [512, 512, [], "f53f", "M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faPallet = { prefix: 'fas', iconName: 'pallet', icon: [640, 512, [], "f482", "M144 256h352c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H384v128l-64-32-64 32V0H144c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16zm480 128c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v64H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-64h48zm-336 64H128v-64h160v64zm224 0H352v-64h160v64z"] }; +var faPaperPlane = { prefix: 'fas', iconName: 'paper-plane', icon: [512, 512, [], "f1d8", "M476 3.2L12.5 270.6c-18.1 10.4-15.8 35.6 2.2 43.2L121 358.4l287.3-253.2c5.5-4.9 13.3 2.6 8.6 8.3L176 407v80.5c0 23.6 28.5 32.9 42.5 15.8L282 426l124.6 52.2c14.2 6 30.4-2.9 33-18.2l72-432C515 7.8 493.3-6.8 476 3.2z"] }; +var faPaperclip = { prefix: 'fas', iconName: 'paperclip', icon: [448, 512, [], "f0c6", "M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z"] }; +var faParachuteBox = { prefix: 'fas', iconName: 'parachute-box', icon: [512, 512, [], "f4cd", "M511.9 175c-9.1-75.6-78.4-132.4-158.3-158.7C390 55.7 416 116.9 416 192h28.1L327.5 321.5c-2.5-.6-4.8-1.5-7.5-1.5h-48V192h112C384 76.8 315.1 0 256 0S128 76.8 128 192h112v128h-48c-2.7 0-5 .9-7.5 1.5L67.9 192H96c0-75.1 26-136.3 62.4-175.7C78.5 42.7 9.2 99.5.1 175c-1.1 9.1 6.8 17 16 17h8.7l136.7 151.9c-.7 2.6-1.6 5.2-1.6 8.1v128c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32V352c0-2.9-.9-5.4-1.6-8.1L487.1 192h8.7c9.3 0 17.2-7.8 16.1-17z"] }; +var faParagraph = { prefix: 'fas', iconName: 'paragraph', icon: [448, 512, [], "f1dd", "M408 32H177.531C88.948 32 16.045 103.335 16 191.918 15.956 280.321 87.607 352 176 352v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h32v344c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h40c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24z"] }; +var faParking = { prefix: 'fas', iconName: 'parking', icon: [448, 512, [], "f540", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM240 320h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h96c52.9 0 96 43.1 96 96s-43.1 96-96 96zm0-128h-48v64h48c17.6 0 32-14.4 32-32s-14.4-32-32-32z"] }; +var faPaste = { prefix: 'fas', iconName: 'paste', icon: [448, 512, [], "f0ea", "M128 184c0-30.879 25.122-56 56-56h136V56c0-13.255-10.745-24-24-24h-80.61C204.306 12.89 183.637 0 160 0s-44.306 12.89-55.39 32H24C10.745 32 0 42.745 0 56v336c0 13.255 10.745 24 24 24h104V184zm32-144c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24zm184 248h104v200c0 13.255-10.745 24-24 24H184c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.059V256h-96v-96h6.059a24 24 0 0 1 16.97 7.029l65.941 65.941a24.002 24.002 0 0 1 7.03 16.971z"] }; +var faPause = { prefix: 'fas', iconName: 'pause', icon: [448, 512, [], "f04c", "M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z"] }; +var faPauseCircle = { prefix: 'fas', iconName: 'pause-circle', icon: [512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-16 328c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160zm112 0c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160z"] }; +var faPaw = { prefix: 'fas', iconName: 'paw', icon: [512, 512, [], "f1b0", "M85.231 330.958C36 330.958 0 273.792 0 231.5c0-28.292 16-58.042 49.538-58.042 49.231 0 85.231 57.458 85.231 99.75 0 28.292-15.692 57.75-49.538 57.75zm348 106.167c0 37.042-32 42.875-63.385 42.875-41.231 0-74.462-26.25-113.846-26.25-41.231 0-76.308 25.958-120.923 25.958-29.847 0-56.308-9.625-56.308-42.583C78.769 368 180.616 265.333 256 265.333s177.231 102.959 177.231 171.792zM182.462 203.792c-49.847 0-80-59.5-80-100.333C102.462 70.792 120.308 32 160 32c50.154 0 80 59.5 80 100.333 0 32.667-17.846 71.459-57.538 71.459zM272 132.333C272 91.5 301.846 32 352 32c39.692 0 57.539 38.792 57.539 71.458 0 40.833-30.154 100.333-80.001 100.333C289.846 203.792 272 165 272 132.333zM512 231.5c0 42.292-36 99.458-85.231 99.458-33.847 0-49.538-29.458-49.538-57.75 0-42.291 35.999-99.75 85.231-99.75C496 173.458 512 203.208 512 231.5z"] }; +var faPenSquare = { prefix: 'fas', iconName: 'pen-square', icon: [448, 512, [], "f14b", "M400 480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zM238.1 177.9L102.4 313.6l-6.3 57.1c-.8 7.6 5.6 14.1 13.3 13.3l57.1-6.3L302.2 242c2.3-2.3 2.3-6.1 0-8.5L246.7 178c-2.5-2.4-6.3-2.4-8.6-.1zM345 165.1L314.9 135c-9.4-9.4-24.6-9.4-33.9 0l-23.1 23.1c-2.3 2.3-2.3 6.1 0 8.5l55.5 55.5c2.3 2.3 6.1 2.3 8.5 0L345 199c9.3-9.3 9.3-24.5 0-33.9z"] }; +var faPencilAlt = { prefix: 'fas', iconName: 'pencil-alt', icon: [512, 512, [], "f303", "M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z"] }; +var faPeopleCarry = { prefix: 'fas', iconName: 'people-carry', icon: [640, 512, [], "f4ce", "M128 96c26.5 0 48-21.5 48-48S154.5 0 128 0 80 21.5 80 48s21.5 48 48 48zm384 0c26.5 0 48-21.5 48-48S538.5 0 512 0s-48 21.5-48 48 21.5 48 48 48zm125.7 372.1l-44-110-41.1 46.4-2 18.2 27.7 69.2c5 12.5 17 20.1 29.7 20.1 4 0 8-.7 11.9-2.3 16.4-6.6 24.4-25.2 17.8-41.6zm-34.2-209.8L585 178.1c-4.6-20-18.6-36.8-37.5-44.9-18.5-8-39-6.7-56.1 3.3-22.7 13.4-39.7 34.5-48.1 59.4L432 229.8 416 240v-96c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16v96l-16.1-10.2-11.3-33.9c-8.3-25-25.4-46-48.1-59.4-17.2-10-37.6-11.3-56.1-3.3-18.9 8.1-32.9 24.9-37.5 44.9l-18.4 80.2c-4.6 20 .7 41.2 14.4 56.7l67.2 75.9 10.1 92.6C130 499.8 143.8 512 160 512c1.2 0 2.3-.1 3.5-.2 17.6-1.9 30.2-17.7 28.3-35.3l-10.1-92.8c-1.5-13-6.9-25.1-15.6-35l-43.3-49 17.6-70.3 6.8 20.4c4.1 12.5 11.9 23.4 24.5 32.6l51.1 32.5c4.6 2.9 12.1 4.6 17.2 5h160c5.1-.4 12.6-2.1 17.2-5l51.1-32.5c12.6-9.2 20.4-20 24.5-32.6l6.8-20.4 17.6 70.3-43.3 49c-8.7 9.9-14.1 22-15.6 35l-10.1 92.8c-1.9 17.6 10.8 33.4 28.3 35.3 1.2.1 2.3.2 3.5.2 16.1 0 30-12.1 31.8-28.5l10.1-92.6 67.2-75.9c13.6-15.5 19-36.7 14.4-56.7zM46.3 358.1l-44 110c-6.6 16.4 1.4 35 17.8 41.6 16.8 6.6 35.1-1.7 41.6-17.8l27.7-69.2-2-18.2-41.1-46.4z"] }; +var faPercent = { prefix: 'fas', iconName: 'percent', icon: [448, 512, [], "f295", "M112 224c61.9 0 112-50.1 112-112S173.9 0 112 0 0 50.1 0 112s50.1 112 112 112zm0-160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm224 224c-61.9 0-112 50.1-112 112s50.1 112 112 112 112-50.1 112-112-50.1-112-112-112zm0 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zM392.3.2l31.6-.1c19.4-.1 30.9 21.8 19.7 37.8L77.4 501.6a23.95 23.95 0 0 1-19.6 10.2l-33.4.1c-19.5 0-30.9-21.9-19.7-37.8l368-463.7C377.2 4 384.5.2 392.3.2z"] }; +var faPercentage = { prefix: 'fas', iconName: 'percentage', icon: [384, 512, [], "f541", "M109.25 173.25c24.99-24.99 24.99-65.52 0-90.51-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 25 25 65.52 25 90.51 0zm256 165.49c-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 24.99 24.99 65.52 24.99 90.51 0 25-24.99 25-65.51 0-90.51zm-1.94-231.43l-22.62-22.62c-12.5-12.5-32.76-12.5-45.25 0L20.69 359.44c-12.5 12.5-12.5 32.76 0 45.25l22.62 22.62c12.5 12.5 32.76 12.5 45.25 0l274.75-274.75c12.5-12.49 12.5-32.75 0-45.25z"] }; +var faPhone = { prefix: 'fas', iconName: 'phone', icon: [512, 512, [], "f095", "M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z"] }; +var faPhoneSlash = { prefix: 'fas', iconName: 'phone-slash', icon: [640, 512, [], "f3dd", "M268.2 381.4l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48c-10.7 4.6-16.5 16.1-13.9 27.5l24 104c2.5 10.8 12.1 18.6 23.4 18.6 100.7 0 193.7-32.4 269.7-86.9l-80-61.8c-10.9 6.5-22.1 12.7-33.6 18.1zm365.6 76.7L475.1 335.5C537.9 256.4 576 156.9 576 48c0-11.2-7.7-20.9-18.6-23.4l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-12.2 26.1-27.9 50.3-46 72.8L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z"] }; +var faPhoneSquare = { prefix: 'fas', iconName: 'phone-square', icon: [448, 512, [], "f098", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM94 416c-7.033 0-13.057-4.873-14.616-11.627l-14.998-65a15 15 0 0 1 8.707-17.16l69.998-29.999a15 15 0 0 1 17.518 4.289l30.997 37.885c48.944-22.963 88.297-62.858 110.781-110.78l-37.886-30.997a15.001 15.001 0 0 1-4.289-17.518l30-69.998a15 15 0 0 1 17.16-8.707l65 14.998A14.997 14.997 0 0 1 384 126c0 160.292-129.945 290-290 290z"] }; +var faPhoneVolume = { prefix: 'fas', iconName: 'phone-volume', icon: [384, 512, [], "f2a0", "M97.333 506.966c-129.874-129.874-129.681-340.252 0-469.933 5.698-5.698 14.527-6.632 21.263-2.422l64.817 40.513a17.187 17.187 0 0 1 6.849 20.958l-32.408 81.021a17.188 17.188 0 0 1-17.669 10.719l-55.81-5.58c-21.051 58.261-20.612 122.471 0 179.515l55.811-5.581a17.188 17.188 0 0 1 17.669 10.719l32.408 81.022a17.188 17.188 0 0 1-6.849 20.958l-64.817 40.513a17.19 17.19 0 0 1-21.264-2.422zM247.126 95.473c11.832 20.047 11.832 45.008 0 65.055-3.95 6.693-13.108 7.959-18.718 2.581l-5.975-5.726c-3.911-3.748-4.793-9.622-2.261-14.41a32.063 32.063 0 0 0 0-29.945c-2.533-4.788-1.65-10.662 2.261-14.41l5.975-5.726c5.61-5.378 14.768-4.112 18.718 2.581zm91.787-91.187c60.14 71.604 60.092 175.882 0 247.428-4.474 5.327-12.53 5.746-17.552.933l-5.798-5.557c-4.56-4.371-4.977-11.529-.93-16.379 49.687-59.538 49.646-145.933 0-205.422-4.047-4.85-3.631-12.008.93-16.379l5.798-5.557c5.022-4.813 13.078-4.394 17.552.933zm-45.972 44.941c36.05 46.322 36.108 111.149 0 157.546-4.39 5.641-12.697 6.251-17.856 1.304l-5.818-5.579c-4.4-4.219-4.998-11.095-1.285-15.931 26.536-34.564 26.534-82.572 0-117.134-3.713-4.836-3.115-11.711 1.285-15.931l5.818-5.579c5.159-4.947 13.466-4.337 17.856 1.304z"] }; +var faPiggyBank = { prefix: 'fas', iconName: 'piggy-bank', icon: [576, 512, [], "f4d3", "M560 224h-29.5c-8.8-20-21.6-37.7-37.4-52.5L512 96h-32c-29.4 0-55.4 13.5-73 34.3-7.6-1.1-15.1-2.3-23-2.3H256c-77.4 0-141.9 55-156.8 128H56c-14.8 0-26.5-13.5-23.5-28.8C34.7 215.8 45.4 208 57 208h1c3.3 0 6-2.7 6-6v-20c0-3.3-2.7-6-6-6-28.5 0-53.9 20.4-57.5 48.6C-3.9 258.8 22.7 288 56 288h40c0 52.2 25.4 98.1 64 127.3V496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-48h128v48c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80.7c11.8-8.9 22.3-19.4 31.3-31.3H560c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16zm-128 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM256 96h128c5.4 0 10.7.4 15.9.8 0-.3.1-.5.1-.8 0-53-43-96-96-96s-96 43-96 96c0 2.1.5 4.1.6 6.2 15.2-3.9 31-6.2 47.4-6.2z"] }; +var faPills = { prefix: 'fas', iconName: 'pills', icon: [576, 512, [], "f484", "M112 32C50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V144c0-61.9-50.1-112-112-112zm48 224H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm139.7-29.7c-3.5-3.5-9.4-3.1-12.3.8-45.3 62.5-40.4 150.1 15.9 206.4 56.3 56.3 143.9 61.2 206.4 15.9 4-2.9 4.3-8.8.8-12.3L299.7 226.3zm229.8-19c-56.3-56.3-143.9-61.2-206.4-15.9-4 2.9-4.3 8.8-.8 12.3l210.8 210.8c3.5 3.5 9.4 3.1 12.3-.8 45.3-62.6 40.5-150.1-15.9-206.4z"] }; +var faPlane = { prefix: 'fas', iconName: 'plane', icon: [576, 512, [], "f072", "M480 192H365.71L260.61 8.06A16.014 16.014 0 0 0 246.71 0h-65.5c-10.63 0-18.3 10.17-15.38 20.39L214.86 192H112l-43.2-57.6c-3.02-4.03-7.77-6.4-12.8-6.4H16.01C5.6 128-2.04 137.78.49 147.88L32 256 .49 364.12C-2.04 374.22 5.6 384 16.01 384H56c5.04 0 9.78-2.37 12.8-6.4L112 320h102.86l-49.03 171.6c-2.92 10.22 4.75 20.4 15.38 20.4h65.5c5.74 0 11.04-3.08 13.89-8.06L365.71 320H480c35.35 0 96-28.65 96-64s-60.65-64-96-64z"] }; +var faPlay = { prefix: 'fas', iconName: 'play', icon: [448, 512, [], "f04b", "M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z"] }; +var faPlayCircle = { prefix: 'fas', iconName: 'play-circle', icon: [512, 512, [], "f144", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z"] }; +var faPlug = { prefix: 'fas', iconName: 'plug', icon: [384, 512, [], "f1e6", "M256 144V32c0-17.673 14.327-32 32-32s32 14.327 32 32v112h-64zm112 16H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h16v32c0 77.406 54.969 141.971 128 156.796V512h64v-99.204c73.031-14.825 128-79.39 128-156.796v-32h16c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm-240-16V32c0-17.673-14.327-32-32-32S64 14.327 64 32v112h64z"] }; +var faPlus = { prefix: 'fas', iconName: 'plus', icon: [448, 512, [], "f067", "M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; +var faPlusCircle = { prefix: 'fas', iconName: 'plus-circle', icon: [512, 512, [], "f055", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"] }; +var faPlusSquare = { prefix: 'fas', iconName: 'plus-square', icon: [448, 512, [], "f0fe", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-32 252c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92H92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"] }; +var faPodcast = { prefix: 'fas', iconName: 'podcast', icon: [448, 512, [], "f2ce", "M267.429 488.563C262.286 507.573 242.858 512 224 512c-18.857 0-38.286-4.427-43.428-23.437C172.927 460.134 160 388.898 160 355.75c0-35.156 31.142-43.75 64-43.75s64 8.594 64 43.75c0 32.949-12.871 104.179-20.571 132.813zM156.867 288.554c-18.693-18.308-29.958-44.173-28.784-72.599 2.054-49.724 42.395-89.956 92.124-91.881C274.862 121.958 320 165.807 320 220c0 26.827-11.064 51.116-28.866 68.552-2.675 2.62-2.401 6.986.628 9.187 9.312 6.765 16.46 15.343 21.234 25.363 1.741 3.654 6.497 4.66 9.449 1.891 28.826-27.043 46.553-65.783 45.511-108.565-1.855-76.206-63.595-138.208-139.793-140.369C146.869 73.753 80 139.215 80 220c0 41.361 17.532 78.7 45.55 104.989 2.953 2.771 7.711 1.77 9.453-1.887 4.774-10.021 11.923-18.598 21.235-25.363 3.029-2.2 3.304-6.566.629-9.185zM224 0C100.204 0 0 100.185 0 224c0 89.992 52.602 165.647 125.739 201.408 4.333 2.118 9.267-1.544 8.535-6.31-2.382-15.512-4.342-30.946-5.406-44.339-.146-1.836-1.149-3.486-2.678-4.512-47.4-31.806-78.564-86.016-78.187-147.347.592-96.237 79.29-174.648 175.529-174.899C320.793 47.747 400 126.797 400 224c0 61.932-32.158 116.49-80.65 147.867-.999 14.037-3.069 30.588-5.624 47.23-.732 4.767 4.203 8.429 8.535 6.31C395.227 389.727 448 314.187 448 224 448 100.205 347.815 0 224 0zm0 160c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z"] }; +var faPoo = { prefix: 'fas', iconName: 'poo', icon: [512, 512, [], "f2fe", "M451.4 369.1C468.7 356 480 335.4 480 312c0-39.8-32.2-72-72-72h-14.1c13.4-11.7 22.1-28.8 22.1-48 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C250.3 14.6 256 30.6 256 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 19.2 8.7 36.3 22.1 48H104c-39.8 0-72 32.2-72 72 0 23.4 11.3 44 28.6 57.1C26.3 374.6 0 404.1 0 440c0 39.8 32.2 72 72 72h368c39.8 0 72-32.2 72-72 0-35.9-26.3-65.4-60.6-70.9zM192 256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm159.5 139C341 422.9 293 448 256 448s-85-25.1-95.5-53c-2-5.3 2-11 7.8-11h175.4c5.8 0 9.8 5.7 7.8 11zM320 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faPortrait = { prefix: 'fas', iconName: 'portrait', icon: [384, 512, [], "f3e0", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM192 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 384 80 375.4 80 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"] }; +var faPoundSign = { prefix: 'fas', iconName: 'pound-sign', icon: [320, 512, [], "f154", "M308 352h-45.495c-6.627 0-12 5.373-12 12v50.848H128V288h84c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-84v-63.556c0-32.266 24.562-57.086 61.792-57.086 23.658 0 45.878 11.505 57.652 18.849 5.151 3.213 11.888 2.051 15.688-2.685l28.493-35.513c4.233-5.276 3.279-13.005-2.119-17.081C273.124 54.56 236.576 32 187.931 32 106.026 32 48 84.742 48 157.961V224H20c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h28v128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12V364c0-6.627-5.373-12-12-12z"] }; +var faPowerOff = { prefix: 'fas', iconName: 'power-off', icon: [512, 512, [], "f011", "M400 54.1c63 45 104 118.6 104 201.9 0 136.8-110.8 247.7-247.5 248C120 504.3 8.2 393 8 256.4 7.9 173.1 48.9 99.3 111.8 54.2c11.7-8.3 28-4.8 35 7.7L162.6 90c5.9 10.5 3.1 23.8-6.6 31-41.5 30.8-68 79.6-68 134.9-.1 92.3 74.5 168.1 168 168.1 91.6 0 168.6-74.2 168-169.1-.3-51.8-24.7-101.8-68.1-134-9.7-7.2-12.4-20.5-6.5-30.9l15.8-28.1c7-12.4 23.2-16.1 34.8-7.8zM296 264V24c0-13.3-10.7-24-24-24h-32c-13.3 0-24 10.7-24 24v240c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24z"] }; +var faPrescriptionBottle = { prefix: 'fas', iconName: 'prescription-bottle', icon: [384, 512, [], "f485", "M32 192h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v64zM360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24z"] }; +var faPrescriptionBottleAlt = { prefix: 'fas', iconName: 'prescription-bottle-alt', icon: [384, 512, [], "f486", "M360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24zM32 480c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v352zm64-184c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48z"] }; +var faPrint = { prefix: 'fas', iconName: 'print', icon: [512, 512, [], "f02f", "M464 192h-16V81.941a24 24 0 0 0-7.029-16.97L383.029 7.029A24 24 0 0 0 366.059 0H88C74.745 0 64 10.745 64 24v168H48c-26.51 0-48 21.49-48 48v132c0 6.627 5.373 12 12 12h52v104c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V384h52c6.627 0 12-5.373 12-12V240c0-26.51-21.49-48-48-48zm-80 256H128v-96h256v96zM128 224V64h192v40c0 13.2 10.8 24 24 24h40v96H128zm304 72c-13.254 0-24-10.746-24-24s10.746-24 24-24 24 10.746 24 24-10.746 24-24 24z"] }; +var faProcedures = { prefix: 'fas', iconName: 'procedures', icon: [640, 512, [], "f487", "M528 224H272c-8.8 0-16 7.2-16 16v144H64V144c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v352c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h512v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-61.9-50.1-112-112-112zM136 96h126.1l27.6 55.2c5.9 11.8 22.7 11.8 28.6 0L368 51.8 390.1 96H512c8.8 0 16-7.2 16-16s-7.2-16-16-16H409.9L382.3 8.8C376.4-3 359.6-3 353.7 8.8L304 108.2l-19.9-39.8c-1.4-2.7-4.1-4.4-7.2-4.4H136c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm24 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z"] }; +var faProjectDiagram = { prefix: 'fas', iconName: 'project-diagram', icon: [640, 512, [], "f542", "M384 320H256c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM192 32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v128c0 17.67 14.33 32 32 32h95.72l73.16 128.04C211.98 300.98 232.4 288 256 288h.28L192 175.51V128h224V64H192V32zM608 0H480c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32z"] }; +var faPuzzlePiece = { prefix: 'fas', iconName: 'puzzle-piece', icon: [576, 512, [], "f12e", "M519.442 288.651c-41.519 0-59.5 31.593-82.058 31.593C377.409 320.244 432 144 432 144s-196.288 80-196.288-3.297c0-35.827 36.288-46.25 36.288-85.985C272 19.216 243.885 0 210.539 0c-34.654 0-66.366 18.891-66.366 56.346 0 41.364 31.711 59.277 31.711 81.75C175.885 207.719 0 166.758 0 166.758v333.237s178.635 41.047 178.635-28.662c0-22.473-40-40.107-40-81.471 0-37.456 29.25-56.346 63.577-56.346 33.673 0 61.788 19.216 61.788 54.717 0 39.735-36.288 50.158-36.288 85.985 0 60.803 129.675 25.73 181.23 25.73 0 0-34.725-120.101 25.827-120.101 35.962 0 46.423 36.152 86.308 36.152C556.712 416 576 387.99 576 354.443c0-34.199-18.962-65.792-56.558-65.792z"] }; +var faQrcode = { prefix: 'fas', iconName: 'qrcode', icon: [448, 512, [], "f029", "M0 224h192V32H0v192zM64 96h64v64H64V96zm192-64v192h192V32H256zm128 128h-64V96h64v64zM0 480h192V288H0v192zm64-128h64v64H64v-64zm352-64h32v128h-96v-32h-32v96h-64V288h96v32h64v-32zm0 160h32v32h-32v-32zm-64 0h32v32h-32v-32z"] }; +var faQuestion = { prefix: 'fas', iconName: 'question', icon: [384, 512, [], "f128", "M202.021 0C122.202 0 70.503 32.703 29.914 91.026c-7.363 10.58-5.093 25.086 5.178 32.874l43.138 32.709c10.373 7.865 25.132 6.026 33.253-4.148 25.049-31.381 43.63-49.449 82.757-49.449 30.764 0 68.816 19.799 68.816 49.631 0 22.552-18.617 34.134-48.993 51.164-35.423 19.86-82.299 44.576-82.299 106.405V320c0 13.255 10.745 24 24 24h72.471c13.255 0 24-10.745 24-24v-5.773c0-42.86 125.268-44.645 125.268-160.627C377.504 66.256 286.902 0 202.021 0zM192 373.459c-38.196 0-69.271 31.075-69.271 69.271 0 38.195 31.075 69.27 69.271 69.27s69.271-31.075 69.271-69.271-31.075-69.27-69.271-69.27z"] }; +var faQuestionCircle = { prefix: 'fas', iconName: 'question-circle', icon: [512, 512, [], "f059", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z"] }; +var faQuidditch = { prefix: 'fas', iconName: 'quidditch', icon: [640, 512, [], "f458", "M256.5 216.8L343.2 326s-16.6 102.4-76.6 150.1C206.7 523.8 0 510.2 0 510.2s3.8-23.1 11-55.4l94.6-112.2c4-4.7-.9-11.6-6.6-9.5l-60.4 22.1c14.4-41.7 32.7-80 54.6-97.5 59.9-47.8 163.3-40.9 163.3-40.9zm238 135c-44 0-79.8 35.8-79.8 79.9 0 44.1 35.7 79.9 79.8 79.9 44.1 0 79.8-35.8 79.8-79.9 0-44.2-35.8-79.9-79.8-79.9zM636.5 31L616.7 6c-5.5-6.9-15.5-8-22.4-2.6L361.8 181.3l-34.1-43c-5.1-6.4-15.1-5.2-18.6 2.2l-25.3 54.6 86.7 109.2 58.8-12.4c8-1.7 11.4-11.2 6.3-17.6l-34.1-42.9L634 53.5c6.9-5.5 8-15.6 2.5-22.5z"] }; +var faQuoteLeft = { prefix: 'fas', iconName: 'quote-left', icon: [512, 512, [], "f10d", "M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z"] }; +var faQuoteRight = { prefix: 'fas', iconName: 'quote-right', icon: [512, 512, [], "f10e", "M464 32H336c-26.5 0-48 21.5-48 48v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48zm-288 0H48C21.5 32 0 53.5 0 80v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48z"] }; +var faRandom = { prefix: 'fas', iconName: 'random', icon: [512, 512, [], "f074", "M504.971 359.029c9.373 9.373 9.373 24.569 0 33.941l-80 79.984c-15.01 15.01-40.971 4.49-40.971-16.971V416h-58.785a12.004 12.004 0 0 1-8.773-3.812l-70.556-75.596 53.333-57.143L352 336h32v-39.981c0-21.438 25.943-31.998 40.971-16.971l80 79.981zM12 176h84l52.781 56.551 53.333-57.143-70.556-75.596A11.999 11.999 0 0 0 122.785 96H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12zm372 0v39.984c0 21.46 25.961 31.98 40.971 16.971l80-79.984c9.373-9.373 9.373-24.569 0-33.941l-80-79.981C409.943 24.021 384 34.582 384 56.019V96h-58.785a12.004 12.004 0 0 0-8.773 3.812L96 336H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h110.785c3.326 0 6.503-1.381 8.773-3.812L352 176h32z"] }; +var faReceipt = { prefix: 'fas', iconName: 'receipt', icon: [384, 512, [], "f543", "M358.4 3.2L320 48 265.6 3.2a15.9 15.9 0 0 0-19.2 0L192 48 137.6 3.2a15.9 15.9 0 0 0-19.2 0L64 48 25.6 3.2C15-4.7 0 2.8 0 16v480c0 13.2 15 20.7 25.6 12.8L64 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L192 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L320 464l38.4 44.8c10.5 7.9 25.6.4 25.6-12.8V16c0-13.2-15-20.7-25.6-12.8zM320 360c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16z"] }; +var faRecycle = { prefix: 'fas', iconName: 'recycle', icon: [512, 512, [], "f1b8", "M184.561 261.903c3.232 13.997-12.123 24.635-24.068 17.168l-40.736-25.455-50.867 81.402C55.606 356.273 70.96 384 96.012 384H148c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12H96.115c-75.334 0-121.302-83.048-81.408-146.88l50.822-81.388-40.725-25.448c-12.081-7.547-8.966-25.961 4.879-29.158l110.237-25.45c8.611-1.988 17.201 3.381 19.189 11.99l25.452 110.237zm98.561-182.915l41.289 66.076-40.74 25.457c-12.051 7.528-9 25.953 4.879 29.158l110.237 25.45c8.672 1.999 17.215-3.438 19.189-11.99l25.45-110.237c3.197-13.844-11.99-24.719-24.068-17.168l-40.687 25.424-41.263-66.082c-37.521-60.033-125.209-60.171-162.816 0l-17.963 28.766c-3.51 5.62-1.8 13.021 3.82 16.533l33.919 21.195c5.62 3.512 13.024 1.803 16.536-3.817l17.961-28.743c12.712-20.341 41.973-19.676 54.257-.022zM497.288 301.12l-27.515-44.065c-3.511-5.623-10.916-7.334-16.538-3.821l-33.861 21.159c-5.62 3.512-7.33 10.915-3.818 16.536l27.564 44.112c13.257 21.211-2.057 48.96-27.136 48.96H320V336.02c0-14.213-17.242-21.383-27.313-11.313l-80 79.981c-6.249 6.248-6.249 16.379 0 22.627l80 79.989C302.689 517.308 320 510.3 320 495.989V448h95.88c75.274 0 121.335-82.997 81.408-146.88z"] }; +var faRedo = { prefix: 'fas', iconName: 'redo', icon: [512, 512, [], "f01e", "M500.333 0h-47.411c-6.853 0-12.314 5.729-11.986 12.574l3.966 82.759C399.416 41.899 331.672 8 256.001 8 119.34 8 7.899 119.526 8 256.187 8.101 393.068 119.096 504 256 504c63.926 0 122.202-24.187 166.178-63.908 5.113-4.618 5.354-12.561.482-17.433l-33.971-33.971c-4.466-4.466-11.64-4.717-16.38-.543C341.308 415.448 300.606 432 256 432c-97.267 0-176-78.716-176-176 0-97.267 78.716-176 176-176 60.892 0 114.506 30.858 146.099 77.8l-101.525-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12z"] }; +var faRedoAlt = { prefix: 'fas', iconName: 'redo-alt', icon: [512, 512, [], "f2f9", "M256.455 8c66.269.119 126.437 26.233 170.859 68.685l35.715-35.715C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.75c-30.864-28.899-70.801-44.907-113.23-45.273-92.398-.798-170.283 73.977-169.484 169.442C88.764 348.009 162.184 424 256 424c41.127 0 79.997-14.678 110.629-41.556 4.743-4.161 11.906-3.908 16.368.553l39.662 39.662c4.872 4.872 4.631 12.815-.482 17.433C378.202 479.813 319.926 504 256 504 119.034 504 8.001 392.967 8 256.002 7.999 119.193 119.646 7.755 256.455 8z"] }; +var faRegistered = { prefix: 'fas', iconName: 'registered', icon: [512, 512, [], "f25d", "M285.363 207.475c0 18.6-9.831 28.431-28.431 28.431h-29.876v-56.14h23.378c28.668 0 34.929 8.773 34.929 27.709zM504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM363.411 360.414c-46.729-84.825-43.299-78.636-44.702-80.98 23.432-15.172 37.945-42.979 37.945-74.486 0-54.244-31.5-89.252-105.498-89.252h-70.667c-13.255 0-24 10.745-24 24V372c0 13.255 10.745 24 24 24h22.567c13.255 0 24-10.745 24-24v-71.663h25.556l44.129 82.937a24.001 24.001 0 0 0 21.188 12.727h24.464c18.261-.001 29.829-19.591 21.018-35.587z"] }; +var faReply = { prefix: 'fas', iconName: 'reply', icon: [512, 512, [], "f3e5", "M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z"] }; +var faReplyAll = { prefix: 'fas', iconName: 'reply-all', icon: [576, 512, [], "f122", "M136.309 189.836L312.313 37.851C327.72 24.546 352 35.348 352 56.015v82.763c129.182 10.231 224 52.212 224 183.548 0 61.441-39.582 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 38.512-123.162-3.922-169.482-112.59-182.015v84.175c0 20.701-24.3 31.453-39.687 18.164L136.309 226.164c-11.071-9.561-11.086-26.753 0-36.328zm-128 36.328L184.313 378.15C199.7 391.439 224 380.687 224 359.986v-15.818l-108.606-93.785A55.96 55.96 0 0 1 96 207.998a55.953 55.953 0 0 1 19.393-42.38L224 71.832V56.015c0-20.667-24.28-31.469-39.687-18.164L8.309 189.836c-11.086 9.575-11.071 26.767 0 36.328z"] }; +var faRetweet = { prefix: 'fas', iconName: 'retweet', icon: [640, 512, [], "f079", "M629.657 343.598L528.971 444.284c-9.373 9.372-24.568 9.372-33.941 0L394.343 343.598c-9.373-9.373-9.373-24.569 0-33.941l10.823-10.823c9.562-9.562 25.133-9.34 34.419.492L480 342.118V160H292.451a24.005 24.005 0 0 1-16.971-7.029l-16-16C244.361 121.851 255.069 96 276.451 96H520c13.255 0 24 10.745 24 24v222.118l40.416-42.792c9.285-9.831 24.856-10.054 34.419-.492l10.823 10.823c9.372 9.372 9.372 24.569-.001 33.941zm-265.138 15.431A23.999 23.999 0 0 0 347.548 352H160V169.881l40.416 42.792c9.286 9.831 24.856 10.054 34.419.491l10.822-10.822c9.373-9.373 9.373-24.569 0-33.941L144.971 67.716c-9.373-9.373-24.569-9.373-33.941 0L10.343 168.402c-9.373 9.373-9.373 24.569 0 33.941l10.822 10.822c9.562 9.562 25.133 9.34 34.419-.491L96 169.881V392c0 13.255 10.745 24 24 24h243.549c21.382 0 32.09-25.851 16.971-40.971l-16.001-16z"] }; +var faRibbon = { prefix: 'fas', iconName: 'ribbon', icon: [448, 512, [], "f4d6", "M6.1 444.3c-9.6 10.8-7.5 27.6 4.5 35.7l68.8 27.9c9.9 6.7 23.3 5 31.3-3.8l91.8-101.9-79.2-87.9-117.2 130zm435.8 0s-292-324.6-295.4-330.1c15.4-8.4 40.2-17.9 77.5-17.9s62.1 9.5 77.5 17.9c-3.3 5.6-56 64.6-56 64.6l79.1 87.7 34.2-38c28.7-31.9 33.3-78.6 11.4-115.5l-43.7-73.5c-4.3-7.2-9.9-13.3-16.8-18-40.7-27.6-127.4-29.7-171.4 0-6.9 4.7-12.5 10.8-16.8 18l-43.6 73.2c-1.5 2.5-37.1 62.2 11.5 116L337.5 504c8 8.9 21.4 10.5 31.3 3.8l68.8-27.9c11.9-8 14-24.8 4.3-35.6z"] }; +var faRoad = { prefix: 'fas', iconName: 'road', icon: [576, 512, [], "f018", "M567.3 383.6L429.9 78.2C426 69.5 417.4 64 408 64h-96.1l1.9 18.8c.7 7.1-4.8 13.2-11.9 13.2H274c-7.1 0-12.7-6.2-11.9-13.2L264 64h-96c-9.4 0-18 5.5-21.9 14.2L8.7 383.6C3.2 395.8 0 409.6 0 424c0 13.3 10.7 24 24 24h213.6c-7.1 0-12.7-6.2-11.9-13.2l10.8-104c.6-6.1 5.8-10.8 11.9-10.8h79.2c6.1 0 11.3 4.6 11.9 10.8l10.8 104c.7 7.1-4.8 13.2-11.9 13.2H552c13.2 0 24-10.7 24-24 0-13.9-3-27.7-8.7-40.4zM254.7 154.8l3.3-32c.6-6.1 5.8-10.8 11.9-10.8h36.2c6.1 0 11.3 4.6 11.9 10.8l3.3 32c.7 7.1-4.8 13.2-11.9 13.2h-42.8c-7.1 0-12.7-6.2-11.9-13.2zM321.8 288h-67.6c-7.1 0-12.7-6.2-11.9-13.2l7.4-72c.6-6.1 5.8-10.8 11.9-10.8h52.7c6.1 0 11.3 4.6 11.9 10.8l7.4 72c.9 7-4.7 13.2-11.8 13.2z"] }; +var faRobot = { prefix: 'fas', iconName: 'robot', icon: [640, 512, [], "f544", "M0 256v128c0 17.7 14.3 32 32 32h32V224H32c-17.7 0-32 14.3-32 32zM464 96H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H176c-44.2 0-80 35.8-80 80v272c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V176c0-44.2-35.8-80-80-80zM256 416h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm128 120h-64v-32h64v32zm96 0h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm192-72h-32v192h32c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32z"] }; +var faRocket = { prefix: 'fas', iconName: 'rocket', icon: [512, 512, [], "f135", "M505.1 19.1C503.8 13 499 8.2 492.9 6.9 460.7 0 435.5 0 410.4 0 307.2 0 245.3 55.2 199.1 128H94.9c-18.2 0-34.8 10.3-42.9 26.5L2.6 253.3c-8 16 3.6 34.7 21.5 34.7h95.1c-5.9 12.8-11.9 25.5-18 37.7-3.1 6.2-1.9 13.6 3 18.5l63.6 63.6c4.9 4.9 12.3 6.1 18.5 3 12.2-6.1 24.9-12 37.7-17.9V488c0 17.8 18.8 29.4 34.7 21.5l98.7-49.4c16.3-8.1 26.5-24.8 26.5-42.9V312.8c72.6-46.3 128-108.4 128-211.1.1-25.2.1-50.4-6.8-82.6zM400 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; +var faRss = { prefix: 'fas', iconName: 'rss', icon: [448, 512, [], "f09e", "M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"] }; +var faRssSquare = { prefix: 'fas', iconName: 'rss-square', icon: [448, 512, [], "f143", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM112 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm157.533 0h-34.335c-6.011 0-11.051-4.636-11.442-10.634-5.214-80.05-69.243-143.92-149.123-149.123-5.997-.39-10.633-5.431-10.633-11.441v-34.335c0-6.535 5.468-11.777 11.994-11.425 110.546 5.974 198.997 94.536 204.964 204.964.352 6.526-4.89 11.994-11.425 11.994zm103.027 0h-34.334c-6.161 0-11.175-4.882-11.427-11.038-5.598-136.535-115.204-246.161-251.76-251.76C68.882 152.949 64 147.935 64 141.774V107.44c0-6.454 5.338-11.664 11.787-11.432 167.83 6.025 302.21 141.191 308.205 308.205.232 6.449-4.978 11.787-11.432 11.787z"] }; +var faRubleSign = { prefix: 'fas', iconName: 'ruble-sign', icon: [384, 512, [], "f158", "M239.36 320C324.48 320 384 260.542 384 175.071S324.48 32 239.36 32H76c-6.627 0-12 5.373-12 12v206.632H12c-6.627 0-12 5.373-12 12V308c0 6.627 5.373 12 12 12h52v32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v52c0 6.627 5.373 12 12 12h58.56c6.627 0 12-5.373 12-12v-52H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H146.56v-32h92.8zm-92.8-219.252h78.72c46.72 0 74.88 29.11 74.88 74.323 0 45.832-28.16 75.561-76.16 75.561h-77.44V100.748z"] }; +var faRuler = { prefix: 'fas', iconName: 'ruler', icon: [640, 512, [], "f545", "M635.7 167.2L556.1 31.7c-8.8-15-28.3-20.1-43.5-11.5l-69 39.1L503.3 161c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L416 75l-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L333.2 122 278 153.3 337.8 255c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-59.7-101.7-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-27.9-47.5-55.2 31.3 59.7 101.7c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L84.9 262.9l-69 39.1C.7 310.7-4.6 329.8 4.2 344.8l79.6 135.6c8.8 15 28.3 20.1 43.5 11.5L624.1 210c15.2-8.6 20.4-27.8 11.6-42.8z"] }; +var faRulerCombined = { prefix: 'fas', iconName: 'ruler-combined', icon: [512, 512, [], "f546", "M160 288h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56v-64h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56V96h-56c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8h56V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 2.77.91 5.24 1.57 7.8L160 329.38V288zm320 64h-32v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-41.37L24.2 510.43c2.56.66 5.04 1.57 7.8 1.57h448c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"] }; +var faRulerHorizontal = { prefix: 'fas', iconName: 'ruler-horizontal', icon: [576, 512, [], "f547", "M544 128h-48v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8H88c-4.42 0-8-3.58-8-8v-88H32c-17.67 0-32 14.33-32 32v192c0 17.67 14.33 32 32 32h512c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32z"] }; +var faRulerVertical = { prefix: 'fas', iconName: 'ruler-vertical', icon: [256, 512, [], "f548", "M168 416c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 17.67 14.33 32 32 32h192c17.67 0 32-14.33 32-32v-64h-88z"] }; +var faRupeeSign = { prefix: 'fas', iconName: 'rupee-sign', icon: [320, 512, [], "f156", "M308 96c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v44.748c0 6.627 5.373 12 12 12h85.28c27.308 0 48.261 9.958 60.97 27.252H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h158.757c-6.217 36.086-32.961 58.632-74.757 58.632H12c-6.627 0-12 5.373-12 12v53.012c0 3.349 1.4 6.546 3.861 8.818l165.052 152.356a12.001 12.001 0 0 0 8.139 3.182h82.562c10.924 0 16.166-13.408 8.139-20.818L116.871 319.906c76.499-2.34 131.144-53.395 138.318-127.906H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-58.69c-3.486-11.541-8.28-22.246-14.252-32H308z"] }; +var faSave = { prefix: 'fas', iconName: 'save', icon: [448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z"] }; +var faSchool = { prefix: 'fas', iconName: 'school', icon: [640, 512, [], "f549", "M0 224v272c0 8.84 7.16 16 16 16h80V192H32c-17.67 0-32 14.33-32 32zm360-48h-24v-40c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v64c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zm137.75-63.96l-160-106.67a32.02 32.02 0 0 0-35.5 0l-160 106.67A32.002 32.002 0 0 0 128 138.66V512h128V368c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v144h128V138.67c0-10.7-5.35-20.7-14.25-26.63zM320 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm288-64h-64v320h80c8.84 0 16-7.16 16-16V224c0-17.67-14.33-32-32-32z"] }; +var faScrewdriver = { prefix: 'fas', iconName: 'screwdriver', icon: [512, 512, [], "f54a", "M448 0L320 96v62.06l-83.03 83.03c6.79 4.25 13.27 9.06 19.07 14.87 5.8 5.8 10.62 12.28 14.87 19.07L353.94 192H416l96-128-64-64zM128 278.59L10.92 395.67c-14.55 14.55-14.55 38.15 0 52.71l52.7 52.7c14.56 14.56 38.15 14.56 52.71 0L233.41 384c29.11-29.11 29.11-76.3 0-105.41s-76.3-29.11-105.41 0z"] }; +var faSearch = { prefix: 'fas', iconName: 'search', icon: [512, 512, [], "f002", "M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"] }; +var faSearchMinus = { prefix: 'fas', iconName: 'search-minus', icon: [512, 512, [], "f010", "M304 192v32c0 6.6-5.4 12-12 12H124c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z"] }; +var faSearchPlus = { prefix: 'fas', iconName: 'search-plus', icon: [512, 512, [], "f00e", "M304 192v32c0 6.6-5.4 12-12 12h-56v56c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-56h-56c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h56v-56c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v56h56c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z"] }; +var faSeedling = { prefix: 'fas', iconName: 'seedling', icon: [512, 512, [], "f4d8", "M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z"] }; +var faServer = { prefix: 'fas', iconName: 'server', icon: [512, 512, [], "f233", "M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z"] }; +var faShare = { prefix: 'fas', iconName: 'share', icon: [512, 512, [], "f064", "M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z"] }; +var faShareAlt = { prefix: 'fas', iconName: 'share-alt', icon: [448, 512, [], "f1e0", "M352 320c-22.608 0-43.387 7.819-59.79 20.895l-102.486-64.054a96.551 96.551 0 0 0 0-41.683l102.486-64.054C308.613 184.181 329.392 192 352 192c53.019 0 96-42.981 96-96S405.019 0 352 0s-96 42.981-96 96c0 7.158.79 14.13 2.276 20.841L155.79 180.895C139.387 167.819 118.608 160 96 160c-53.019 0-96 42.981-96 96s42.981 96 96 96c22.608 0 43.387-7.819 59.79-20.895l102.486 64.054A96.301 96.301 0 0 0 256 416c0 53.019 42.981 96 96 96s96-42.981 96-96-42.981-96-96-96z"] }; +var faShareAltSquare = { prefix: 'fas', iconName: 'share-alt-square', icon: [448, 512, [], "f1e1", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zM304 296c-14.562 0-27.823 5.561-37.783 14.671l-67.958-40.775a56.339 56.339 0 0 0 0-27.793l67.958-40.775C276.177 210.439 289.438 216 304 216c30.928 0 56-25.072 56-56s-25.072-56-56-56-56 25.072-56 56c0 4.797.605 9.453 1.74 13.897l-67.958 40.775C171.823 205.561 158.562 200 144 200c-30.928 0-56 25.072-56 56s25.072 56 56 56c14.562 0 27.823-5.561 37.783-14.671l67.958 40.775a56.088 56.088 0 0 0-1.74 13.897c0 30.928 25.072 56 56 56s56-25.072 56-56C360 321.072 334.928 296 304 296z"] }; +var faShareSquare = { prefix: 'fas', iconName: 'share-square', icon: [576, 512, [], "f14d", "M568.482 177.448L424.479 313.433C409.3 327.768 384 317.14 384 295.985v-71.963c-144.575.97-205.566 35.113-164.775 171.353 4.483 14.973-12.846 26.567-25.006 17.33C155.252 383.105 120 326.488 120 269.339c0-143.937 117.599-172.5 264-173.312V24.012c0-21.174 25.317-31.768 40.479-17.448l144.003 135.988c10.02 9.463 10.028 25.425 0 34.896zM384 379.128V448H64V128h50.916a11.99 11.99 0 0 0 8.648-3.693c14.953-15.568 32.237-27.89 51.014-37.676C185.708 80.83 181.584 64 169.033 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48v-88.806c0-8.288-8.197-14.066-16.011-11.302a71.83 71.83 0 0 1-34.189 3.377c-7.27-1.046-13.8 4.514-13.8 11.859z"] }; +var faShekelSign = { prefix: 'fas', iconName: 'shekel-sign', icon: [448, 512, [], "f20b", "M248 168v168c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V168c0-75.11-60.89-136-136-136H24C10.75 32 0 42.74 0 56v408c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112h112c30.93 0 56 25.07 56 56zM432 32h-48c-8.84 0-16 7.16-16 16v296c0 30.93-25.07 56-56 56H200V176c0-8.84-7.16-16-16-16h-48c-8.84 0-16 7.16-16 16v280c0 13.25 10.75 24 24 24h168c75.11 0 136-60.89 136-136V48c0-8.84-7.16-16-16-16z"] }; +var faShieldAlt = { prefix: 'fas', iconName: 'shield-alt', icon: [512, 512, [], "f3ed", "M496 128c0 221.282-135.934 344.645-221.539 380.308a48 48 0 0 1-36.923 0C130.495 463.713 16 326.487 16 128a48 48 0 0 1 29.539-44.308l192-80a48 48 0 0 1 36.923 0l192 80A48 48 0 0 1 496 128zM256 446.313l.066.034c93.735-46.689 172.497-156.308 175.817-307.729L256 65.333v380.98z"] }; +var faShip = { prefix: 'fas', iconName: 'ship', icon: [640, 512, [], "f21a", "M496.616 372.639l70.012-70.012c16.899-16.9 9.942-45.771-12.836-53.092L512 236.102V96c0-17.673-14.327-32-32-32h-64V24c0-13.255-10.745-24-24-24H248c-13.255 0-24 10.745-24 24v40h-64c-17.673 0-32 14.327-32 32v140.102l-41.792 13.433c-22.753 7.313-29.754 36.173-12.836 53.092l70.012 70.012C125.828 416.287 85.587 448 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24 61.023 0 107.499-20.61 143.258-59.396C181.677 487.432 216.021 512 256 512h128c39.979 0 74.323-24.568 88.742-59.396C508.495 491.384 554.968 512 616 512c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24-60.817 0-101.542-31.001-119.384-75.361zM192 128h256v87.531l-118.208-37.995a31.995 31.995 0 0 0-19.584 0L192 215.531V128z"] }; +var faShippingFast = { prefix: 'fas', iconName: 'shipping-fast', icon: [640, 512, [], "f48b", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H112C85.5 0 64 21.5 64 48v48H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h272c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H40c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H64v128c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"] }; +var faShoePrints = { prefix: 'fas', iconName: 'shoe-prints', icon: [640, 512, [], "f54b", "M192 160h32V32h-32c-35.35 0-64 28.65-64 64s28.65 64 64 64zM0 416c0 35.35 28.65 64 64 64h32V352H64c-35.35 0-64 28.65-64 64zm337.46-128c-34.91 0-76.16 13.12-104.73 32-24.79 16.38-44.52 32-104.73 32v128l57.53 15.97c26.21 7.28 53.01 13.12 80.31 15.05 32.69 2.31 65.6.67 97.58-6.2C472.9 481.3 512 429.22 512 384c0-64-84.18-96-174.54-96zM491.42 7.19C459.44.32 426.53-1.33 393.84.99c-27.3 1.93-54.1 7.77-80.31 15.04L256 32v128c60.2 0 79.94 15.62 104.73 32 28.57 18.88 69.82 32 104.73 32C555.82 224 640 192 640 128c0-45.22-39.1-97.3-148.58-120.81z"] }; +var faShoppingBag = { prefix: 'fas', iconName: 'shopping-bag', icon: [448, 512, [], "f290", "M352 160v-32C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128v32H0v272c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V160h-96zm-192-32c0-35.29 28.71-64 64-64s64 28.71 64 64v32H160v-32zm160 120c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm-192 0c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24z"] }; +var faShoppingBasket = { prefix: 'fas', iconName: 'shopping-basket', icon: [576, 512, [], "f291", "M576 216v16c0 13.255-10.745 24-24 24h-8l-26.113 182.788C514.509 462.435 494.257 480 470.37 480H105.63c-23.887 0-44.139-17.565-47.518-41.212L32 256h-8c-13.255 0-24-10.745-24-24v-16c0-13.255 10.745-24 24-24h67.341l106.78-146.821c10.395-14.292 30.407-17.453 44.701-7.058 14.293 10.395 17.453 30.408 7.058 44.701L170.477 192h235.046L326.12 82.821c-10.395-14.292-7.234-34.306 7.059-44.701 14.291-10.395 34.306-7.235 44.701 7.058L484.659 192H552c13.255 0 24 10.745 24 24zM312 392V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm112 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm-224 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24z"] }; +var faShoppingCart = { prefix: 'fas', iconName: 'shopping-cart', icon: [576, 512, [], "f07a", "M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z"] }; +var faShower = { prefix: 'fas', iconName: 'shower', icon: [512, 512, [], "f2cc", "M389.66 135.6L231.6 293.66c-9.37 9.37-24.57 9.37-33.94 0l-11.32-11.32c-9.37-9.37-9.37-24.57 0-33.94l.11-.11c-34.03-40.21-35.16-98.94-3.39-140.38-11.97-7.55-26.14-11.91-41.3-11.91C98.88 96 64 130.88 64 173.76V480H0V173.76C0 95.59 63.59 32 141.76 32c36.93 0 70.61 14.2 95.86 37.42 35.9-11.51 76.5-4.5 106.67 21.03l.11-.11c9.37-9.37 24.57-9.37 33.94 0l11.32 11.32c9.37 9.37 9.37 24.57 0 33.94zM384 208c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm48-16c8.837 0 16 7.163 16 16s-7.163 16-16 16-16-7.163-16-16 7.163-16 16-16zm80 16c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-128 32c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-96 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm64 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16z"] }; +var faSign = { prefix: 'fas', iconName: 'sign', icon: [512, 512, [], "f4d9", "M496 64H128V16c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16v48H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V128h368c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM160 384h320V160H160v224z"] }; +var faSignInAlt = { prefix: 'fas', iconName: 'sign-in-alt', icon: [512, 512, [], "f2f6", "M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z"] }; +var faSignLanguage = { prefix: 'fas', iconName: 'sign-language', icon: [448, 512, [], "f2a7", "M91.434 483.987c-.307-16.018 13.109-29.129 29.13-29.129h62.293v-5.714H56.993c-16.021 0-29.437-13.111-29.13-29.129C28.16 404.491 40.835 392 56.428 392h126.429v-5.714H29.136c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h154.286v-5.714H57.707c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h168.566l-31.085-22.606c-12.762-9.281-15.583-27.149-6.302-39.912 9.281-12.761 27.15-15.582 39.912-6.302l123.361 89.715a34.287 34.287 0 0 1 14.12 27.728v141.136c0 15.91-10.946 29.73-26.433 33.374l-80.471 18.934a137.16 137.16 0 0 1-31.411 3.646H120c-15.593-.001-28.269-12.492-28.566-28.014zm73.249-225.701h36.423l-11.187-8.136c-18.579-13.511-20.313-40.887-3.17-56.536l-13.004-16.7c-9.843-12.641-28.43-15.171-40.88-5.088-12.065 9.771-14.133 27.447-4.553 39.75l36.371 46.71zm283.298-2.103l-5.003-152.452c-.518-15.771-13.722-28.136-29.493-27.619-15.773.518-28.137 13.722-27.619 29.493l1.262 38.415L283.565 11.019c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l76.889 98.745-4.509 3.511-94.79-121.734c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l94.443 121.288-4.509 3.511-77.675-99.754c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l52.053 66.849c12.497-8.257 29.055-8.285 41.69.904l123.36 89.714c10.904 7.93 17.415 20.715 17.415 34.198v16.999l61.064-47.549a34.285 34.285 0 0 0 13.202-28.177z"] }; +var faSignOutAlt = { prefix: 'fas', iconName: 'sign-out-alt', icon: [512, 512, [], "f2f5", "M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"] }; +var faSignal = { prefix: 'fas', iconName: 'signal', icon: [640, 512, [], "f012", "M36 384h56c6.6 0 12 5.4 12 12v104c0 6.6-5.4 12-12 12H36c-6.6 0-12-5.4-12-12V396c0-6.6 5.4-12 12-12zm116-36v152c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V348c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-80v232c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V268c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-112v344c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V156c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zM536 12v488c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V12c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12z"] }; +var faSitemap = { prefix: 'fas', iconName: 'sitemap', icon: [640, 512, [], "f0e8", "M128 352H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm-24-80h192v48h48v-48h192v48h48v-57.59c0-21.17-17.23-38.41-38.41-38.41H344v-64h40c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H256c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h40v64H94.41C73.23 224 56 241.23 56 262.41V320h48v-48zm264 80h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm240 0h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"] }; +var faSkull = { prefix: 'fas', iconName: 'skull', icon: [512, 512, [], "f54c", "M256 0C114.6 0 0 100.3 0 224c0 70.1 36.9 132.6 94.5 173.7 9.6 6.9 15.2 18.1 13.5 29.9l-9.4 66.2c-1.4 9.6 6 18.2 15.7 18.2H192v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h64v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h77.7c9.7 0 17.1-8.6 15.7-18.2l-9.4-66.2c-1.7-11.7 3.8-23 13.5-29.9C475.1 356.6 512 294.1 512 224 512 100.3 397.4 0 256 0zm-96 320c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm192 0c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64z"] }; +var faSlidersH = { prefix: 'fas', iconName: 'sliders-h', icon: [512, 512, [], "f1de", "M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z"] }; +var faSmile = { prefix: 'fas', iconName: 'smile', icon: [496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-5.7-6.8-4.7-16.9 2-22.5 6.8-5.7 16.9-4.7 22.5 2 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c5.7-6.8 15.7-7.7 22.5-2 6.9 5.7 7.8 15.8 2.2 22.5z"] }; +var faSmoking = { prefix: 'fas', iconName: 'smoking', icon: [640, 512, [], "f48d", "M632 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8zM553.3 87.1c-5.7-3.8-9.3-10-9.3-16.8V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v62.3c0 22 10.2 43.4 28.6 55.4 42.2 27.3 67.4 73.8 67.4 124V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-65.5-32.4-126.2-86.7-162.6zM432 352H48c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h384c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zm-32 112H224v-64h176v64zm87.7-322.4C463.8 125 448 99.3 448 70.3V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v66.4c0 43.7 24.6 81.6 60.3 106.7 22.4 15.7 35.7 41.2 35.7 68.6V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-43.3-21-83.4-56.3-108.1zM536 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8z"] }; +var faSmokingBan = { prefix: 'fas', iconName: 'smoking-ban', icon: [512, 512, [], "f54d", "M96 304c0 8.8 7.2 16 16 16h117.5l-96-96H112c-8.8 0-16 7.2-16 16v64zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 448c-105.9 0-192-86.1-192-192 0-41.4 13.3-79.7 35.7-111.1l267.4 267.4C335.7 434.7 297.4 448 256 448zm45.2-192H384v32h-50.8l-32-32zm111.1 111.1L365.2 320H400c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16H269.2L144.9 99.7C176.3 77.3 214.6 64 256 64c105.9 0 192 86.1 192 192 0 41.4-13.3 79.7-35.7 111.1zM320.6 128c-15.6 0-28.6-11.2-31.4-25.9-.7-3.6-4-6.1-7.7-6.1h-16.2c-5 0-8.7 4.5-8 9.4 4.6 30.9 31.2 54.6 63.3 54.6 15.6 0 28.6 11.2 31.4 25.9.7 3.6 4 6.1 7.7 6.1h16.2c5 0 8.7-4.5 8-9.4-4.6-30.9-31.2-54.6-63.3-54.6z"] }; +var faSnowflake = { prefix: 'fas', iconName: 'snowflake', icon: [448, 512, [], "f2dc", "M444.816 301.639a24.12 24.12 0 0 0 2.661-16.978c-2.725-12.966-15.339-21.245-28.174-18.492l-87.407 25.046L264 256l67.896-35.215 87.407 25.046c12.835 2.753 25.449-5.526 28.174-18.492 2.725-12.966-5.471-25.708-18.305-28.461l-47.477-7.137 53.077-30.956c11.363-6.627 15.257-21.306 8.696-32.785-6.561-11.479-21.091-15.412-32.454-8.785l-53.077 30.956 17.621-45.104c4.057-12.606-2.768-26.146-15.247-30.245-12.478-4.099-25.883 2.797-29.94 15.402l-22.232 88.99-60.38 35.215V144l65.175-63.945c8.778-9.852 7.987-25.027-1.766-33.894-9.753-8.867-24.775-8.068-33.552 1.784l-29.857 37.967V24c0-13.255-10.637-24-23.758-24s-23.758 10.745-23.758 24v61.912l-29.857-37.967c-8.779-9.852-23.799-10.652-33.552-1.784-9.753 8.867-10.543 24.042-1.766 33.894L200.242 144v70.431l-60.38-35.215-22.232-88.99c-4.057-12.605-17.462-19.501-29.94-15.402-12.478 4.099-19.304 17.64-15.247 30.245l17.62 45.104-53.077-30.956c-11.363-6.627-25.893-2.694-32.454 8.785s-2.667 26.157 8.696 32.785l53.077 30.956-47.477 7.137C5.993 201.634-2.203 214.375.523 227.341c2.725 12.965 15.339 21.245 28.174 18.492l87.407-25.046L184 256l-67.896 35.215-87.406-25.045c-12.835-2.753-25.449 5.526-28.174 18.492-2.725 12.967 5.47 25.708 18.305 28.461l47.477 7.137-53.077 30.956C1.866 357.843-2.027 372.521 4.533 384s21.091 15.412 32.454 8.785l53.077-30.956-17.62 45.104a24.157 24.157 0 0 0 2.022 19.428c2.831 4.953 7.416 8.909 13.224 10.816 12.478 4.099 25.883-2.797 29.94-15.402l22.232-88.99 60.38-35.215V368l-65.175 63.945c-8.778 9.852-7.987 25.027 1.766 33.894 9.754 8.868 24.774 8.068 33.552-1.784l29.857-37.967V488c0 13.255 10.637 24 23.758 24s23.758-10.745 23.758-24v-61.912l29.857 37.967A23.59 23.59 0 0 0 295.282 472a23.534 23.534 0 0 0 15.885-6.161c9.753-8.867 10.544-24.042 1.766-33.894L247.758 368v-70.431l60.38 35.215 22.232 88.99c4.057 12.605 17.462 19.501 29.94 15.402 12.479-4.099 19.304-17.64 15.247-30.245l-17.621-45.104 53.077 30.956c11.363 6.627 25.893 2.694 32.454-8.785s2.667-26.157-8.696-32.785l-53.077-30.956 47.477-7.137c6.86-1.469 12.394-5.793 15.645-11.481z"] }; +var faSort = { prefix: 'fas', iconName: 'sort', icon: [320, 512, [], "f0dc", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z"] }; +var faSortAlphaDown = { prefix: 'fas', iconName: 'sort-alpha-down', icon: [448, 512, [], "f15d", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zm119.075-180.007A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z"] }; +var faSortAlphaUp = { prefix: 'fas', iconName: 'sort-alpha-up', icon: [448, 512, [], "f15e", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zm301.671 98.621A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z"] }; +var faSortAmountDown = { prefix: 'fas', iconName: 'sort-amount-down', icon: [512, 512, [], "f160", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z"] }; +var faSortAmountUp = { prefix: 'fas', iconName: 'sort-amount-up', icon: [512, 512, [], "f161", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z"] }; +var faSortDown = { prefix: 'fas', iconName: 'sort-down', icon: [320, 512, [], "f0dd", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z"] }; +var faSortNumericDown = { prefix: 'fas', iconName: 'sort-numeric-down', icon: [448, 512, [], "f162", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM175.984 368H128V48c0-8.837-7.163-16-16-16H80c-8.837 0-16 7.163-16 16v320H16.019c-14.212 0-21.384 17.244-11.314 27.314l79.981 80.002c6.245 6.245 16.38 6.247 22.627 0l79.984-80.002c10.05-10.05 2.928-27.314-11.313-27.314z"] }; +var faSortNumericUp = { prefix: 'fas', iconName: 'sort-numeric-up', icon: [448, 512, [], "f163", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM16.016 144H64v320c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144h47.981c14.212 0 21.384-17.244 11.314-27.314l-79.981-80.002c-6.245-6.245-16.38-6.247-22.627 0L4.702 116.686C-5.347 126.736 1.775 144 16.016 144z"] }; +var faSortUp = { prefix: 'fas', iconName: 'sort-up', icon: [320, 512, [], "f0de", "M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z"] }; +var faSpaceShuttle = { prefix: 'fas', iconName: 'space-shuttle', icon: [640, 512, [], "f197", "M592.604 208.244C559.735 192.836 515.777 184 472 184H186.327c-4.952-6.555-10.585-11.978-16.72-16H376C229.157 137.747 219.403 32 96.003 32H96v128H80V32c-26.51 0-48 28.654-48 64v64c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v16c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v64c0 35.346 21.49 64 48 64V352h16v128h.003c123.4 0 133.154-105.747 279.997-136H169.606c6.135-4.022 11.768-9.445 16.72-16H472c43.777 0 87.735-8.836 120.604-24.244C622.282 289.845 640 271.992 640 256s-17.718-33.845-47.396-47.756zM488 296a8 8 0 0 1-8-8v-64a8 8 0 0 1 8-8c31.909 0 31.942 80 0 80z"] }; +var faSpinner = { prefix: 'fas', iconName: 'spinner', icon: [512, 512, [], "f110", "M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z"] }; +var faSquare = { prefix: 'fas', iconName: 'square', icon: [448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"] }; +var faSquareFull = { prefix: 'fas', iconName: 'square-full', icon: [512, 512, [], "f45c", "M512 512H0V0h512v512z"] }; +var faStar = { prefix: 'fas', iconName: 'star', icon: [576, 512, [], "f005", "M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z"] }; +var faStarHalf = { prefix: 'fas', iconName: 'star-half', icon: [576, 512, [], "f089", "M288 0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6V0z"] }; +var faStepBackward = { prefix: 'fas', iconName: 'step-backward', icon: [448, 512, [], "f048", "M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z"] }; +var faStepForward = { prefix: 'fas', iconName: 'step-forward', icon: [448, 512, [], "f051", "M384 44v424c0 6.6-5.4 12-12 12h-48c-6.6 0-12-5.4-12-12V291.6l-195.5 181C95.9 489.7 64 475.4 64 448V64c0-27.4 31.9-41.7 52.5-24.6L312 219.3V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12z"] }; +var faStethoscope = { prefix: 'fas', iconName: 'stethoscope', icon: [512, 512, [], "f0f1", "M447.1 112c-34.2.5-62.3 28.4-63 62.6-.5 24.3 12.5 45.6 32 56.8V344c0 57.3-50.2 104-112 104-60 0-109.2-44.1-111.9-99.2C265 333.8 320 269.2 320 192V36.6c0-11.4-8.1-21.3-19.3-23.5L237.8.5c-13-2.6-25.6 5.8-28.2 18.8L206.4 35c-2.6 13 5.8 25.6 18.8 28.2l30.7 6.1v121.4c0 52.9-42.2 96.7-95.1 97.2-53.4.5-96.9-42.7-96.9-96V69.4l30.7-6.1c13-2.6 21.4-15.2 18.8-28.2l-3.1-15.7C107.7 6.4 95.1-2 82.1.6L19.3 13C8.1 15.3 0 25.1 0 36.6V192c0 77.3 55.1 142 128.1 156.8C130.7 439.2 208.6 512 304 512c97 0 176-75.4 176-168V231.4c19.1-11.1 32-31.7 32-55.4 0-35.7-29.2-64.5-64.9-64zm.9 80c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"] }; +var faStickyNote = { prefix: 'fas', iconName: 'sticky-note', icon: [448, 512, [], "f249", "M312 320h136V56c0-13.3-10.7-24-24-24H24C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h264V344c0-13.2 10.8-24 24-24zm129 55l-98 98c-4.5 4.5-10.6 7-17 7h-6V352h128v6.1c0 6.3-2.5 12.4-7 16.9z"] }; +var faStop = { prefix: 'fas', iconName: 'stop', icon: [448, 512, [], "f04d", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"] }; +var faStopCircle = { prefix: 'fas', iconName: 'stop-circle', icon: [512, 512, [], "f28d", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z"] }; +var faStopwatch = { prefix: 'fas', iconName: 'stopwatch', icon: [448, 512, [], "f2f2", "M432 304c0 114.9-93.1 208-208 208S16 418.9 16 304c0-104 76.3-190.2 176-205.5V64h-28c-6.6 0-12-5.4-12-12V12c0-6.6 5.4-12 12-12h120c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-28v34.5c37.5 5.8 71.7 21.6 99.7 44.6l27.5-27.5c4.7-4.7 12.3-4.7 17 0l28.3 28.3c4.7 4.7 4.7 12.3 0 17l-29.4 29.4-.6.6C419.7 223.3 432 262.2 432 304zm-176 36V188.5c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12V340c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"] }; +var faStore = { prefix: 'fas', iconName: 'store', icon: [616, 512, [], "f54e", "M602 118.6L537.1 15C531.3 5.7 521 0 510 0H106C95 0 84.7 5.7 78.9 15L14 118.6c-33.5 53.5-3.8 127.9 58.8 136.4 4.5.6 9.1.9 13.7.9 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18.1 20.1 44.3 33.1 73.8 33.1 4.7 0 9.2-.3 13.7-.9 62.8-8.4 92.6-82.8 59-136.4zM529.5 288c-10 0-19.9-1.5-29.5-3.8V384H116v-99.8c-9.6 2.2-19.5 3.8-29.5 3.8-6 0-12.1-.4-18-1.2-5.6-.8-11.1-2.1-16.4-3.6V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V283.2c-5.4 1.6-10.8 2.9-16.4 3.6-6.1.8-12.1 1.2-18.2 1.2z"] }; +var faStoreAlt = { prefix: 'fas', iconName: 'store-alt', icon: [640, 512, [], "f54f", "M320 384H128V224H64v256c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V224h-64v160zm314.6-241.8l-85.3-128c-6-8.9-16-14.2-26.7-14.2H117.4c-10.7 0-20.7 5.3-26.6 14.2l-85.3 128c-14.2 21.3 1 49.8 26.6 49.8H608c25.5 0 40.7-28.5 26.6-49.8zM512 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h-64v272z"] }; +var faStream = { prefix: 'fas', iconName: 'stream', icon: [512, 512, [], "f550", "M16 128h416c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H16C7.16 32 0 39.16 0 48v64c0 8.84 7.16 16 16 16zm480 80H80c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm-64 176H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16z"] }; +var faStreetView = { prefix: 'fas', iconName: 'street-view', icon: [512, 512, [], "f21d", "M192 64c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zm112 80h-11.36c-22.711 10.443-49.59 10.894-73.28 0H208c-26.51 0-48 21.49-48 48v104c0 13.255 10.745 24 24 24h16v104c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V320h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48zm85.642 189.152a72.503 72.503 0 0 1-29.01 27.009C391.133 365.251 480 385.854 480 416c0 46.304-167.656 64-224 64-70.303 0-224-20.859-224-64 0-30.123 88.361-50.665 119.367-55.839a72.516 72.516 0 0 1-29.01-27.009C74.959 343.395 0 367.599 0 416c0 77.111 178.658 96 256 96 77.249 0 256-18.865 256-96 0-48.403-74.967-72.606-122.358-82.848z"] }; +var faStrikethrough = { prefix: 'fas', iconName: 'strikethrough', icon: [512, 512, [], "f0cc", "M496 288H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h480c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16zm-214.666 16c27.258 12.937 46.524 28.683 46.524 56.243 0 33.108-28.977 53.676-75.621 53.676-32.325 0-76.874-12.08-76.874-44.271V368c0-8.837-7.164-16-16-16H113.75c-8.836 0-16 7.163-16 16v19.204c0 66.845 77.717 101.82 154.487 101.82 88.578 0 162.013-45.438 162.013-134.424 0-19.815-3.618-36.417-10.143-50.6H281.334zm-30.952-96c-32.422-13.505-56.836-28.946-56.836-59.683 0-33.92 30.901-47.406 64.962-47.406 42.647 0 64.962 16.593 64.962 32.985V136c0 8.837 7.164 16 16 16h45.613c8.836 0 16-7.163 16-16v-30.318c0-52.438-71.725-79.875-142.575-79.875-85.203 0-150.726 40.972-150.726 125.646 0 22.71 4.665 41.176 12.777 56.547h129.823z"] }; +var faStroopwafel = { prefix: 'fas', iconName: 'stroopwafel', icon: [512, 512, [], "f551", "M188.12 210.74L142.86 256l45.25 45.25L233.37 256l-45.25-45.26zm113.13-22.62L256 142.86l-45.25 45.25L256 233.37l45.25-45.25zm-90.5 135.76L256 369.14l45.26-45.26L256 278.63l-45.25 45.25zM256 0C114.62 0 0 114.62 0 256s114.62 256 256 256 256-114.62 256-256S397.38 0 256 0zm186.68 295.6l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-28.29-28.29-45.25 45.25 33.94 33.94 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-33.94-33.94-45.26 45.26 28.29 28.29c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0L256 414.39l-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l28.29-28.29-45.25-45.26-33.94 33.94 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 33.94-33.94-45.25-45.25-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0L69.32 295.6c-3.12-3.12-3.12-8.19 0-11.31L97.61 256l-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l28.29 28.29 45.25-45.26-33.94-33.94-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 33.94 33.94 45.26-45.25-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0L256 97.61l28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-28.29 28.29 45.26 45.25 33.94-33.94-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-33.94 33.94 45.25 45.26 28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31L414.39 256l28.29 28.28a8.015 8.015 0 0 1 0 11.32zM278.63 256l45.26 45.25L369.14 256l-45.25-45.26L278.63 256z"] }; +var faSubscript = { prefix: 'fas', iconName: 'subscript', icon: [512, 512, [], "f12c", "M395.198 416c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 256c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 96H16C7.163 96 0 88.837 0 80V48c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035A15.999 15.999 0 0 1 204.226 32H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 256H272z"] }; +var faSubway = { prefix: 'fas', iconName: 'subway', icon: [448, 512, [], "f239", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zM200 232V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm200 0V120c0-13.255-10.745-24-24-24H272c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm-48 56c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm-256 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"] }; +var faSuitcase = { prefix: 'fas', iconName: 'suitcase', icon: [512, 512, [], "f0f2", "M128 480h256V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v400zm64-384h128v32H192V96zm320 80v256c0 26.5-21.5 48-48 48h-48V128h48c26.5 0 48 21.5 48 48zM96 480H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h48v352z"] }; +var faSun = { prefix: 'fas', iconName: 'sun', icon: [512, 512, [], "f185", "M274.835 12.646l25.516 62.393c4.213 10.301 16.671 14.349 26.134 8.492l57.316-35.479c15.49-9.588 34.808 4.447 30.475 22.142l-16.03 65.475c-2.647 10.81 5.053 21.408 16.152 22.231l67.224 4.987c18.167 1.348 25.546 24.057 11.641 35.826L441.81 242.26c-8.495 7.19-8.495 20.289 0 27.479l51.454 43.548c13.906 11.769 6.527 34.478-11.641 35.826l-67.224 4.987c-11.099.823-18.799 11.421-16.152 22.231l16.03 65.475c4.332 17.695-14.986 31.73-30.475 22.142l-57.316-35.479c-9.463-5.858-21.922-1.81-26.134 8.492l-25.516 62.393c-6.896 16.862-30.774 16.862-37.67 0l-25.516-62.393c-4.213-10.301-16.671-14.349-26.134-8.492l-57.317 35.479c-15.49 9.588-34.808-4.447-30.475-22.142l16.03-65.475c2.647-10.81-5.053-21.408-16.152-22.231l-67.224-4.987c-18.167-1.348-25.546-24.057-11.641-35.826L70.19 269.74c8.495-7.19 8.495-20.289 0-27.479l-51.454-43.548c-13.906-11.769-6.527-34.478 11.641-35.826l67.224-4.987c11.099-.823 18.799-11.421 16.152-22.231l-16.03-65.475c-4.332-17.695 14.986-31.73 30.475-22.142l57.317 35.479c9.463 5.858 21.921 1.81 26.134-8.492l25.516-62.393c6.896-16.861 30.774-16.861 37.67 0zM392 256c0-74.991-61.01-136-136-136-74.991 0-136 61.009-136 136s61.009 136 136 136c74.99 0 136-61.009 136-136zm-32 0c0 57.346-46.654 104-104 104s-104-46.654-104-104 46.654-104 104-104 104 46.654 104 104z"] }; +var faSuperscript = { prefix: 'fas', iconName: 'superscript', icon: [512, 512, [], "f12b", "M395.198 256c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 256H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035a16 16 0 0 1 13.598-7.567H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 416H272z"] }; +var faSync = { prefix: 'fas', iconName: 'sync', icon: [512, 512, [], "f021", "M440.935 12.574l3.966 82.766C399.416 41.904 331.674 8 256 8 134.813 8 33.933 94.924 12.296 209.824 10.908 217.193 16.604 224 24.103 224h49.084c5.57 0 10.377-3.842 11.676-9.259C103.407 137.408 172.931 80 256 80c60.893 0 114.512 30.856 146.104 77.801l-101.53-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12h-47.411c-6.853 0-12.315 5.729-11.987 12.574zM256 432c-60.895 0-114.517-30.858-146.109-77.805l101.868 4.871c6.845.327 12.573-5.134 12.573-11.986v-47.412c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12V500c0 6.627 5.373 12 12 12h47.385c6.863 0 12.328-5.745 11.985-12.599l-4.129-82.575C112.725 470.166 180.405 504 256 504c121.187 0 222.067-86.924 243.704-201.824 1.388-7.369-4.308-14.176-11.807-14.176h-49.084c-5.57 0-10.377 3.842-11.676 9.259C408.593 374.592 339.069 432 256 432z"] }; +var faSyncAlt = { prefix: 'fas', iconName: 'sync-alt', icon: [512, 512, [], "f2f1", "M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z"] }; +var faSyringe = { prefix: 'fas', iconName: 'syringe', icon: [512, 512, [], "f48e", "M201.5 174.8l55.7 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-55.7-55.8-45.3 45.3 55.8 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L111 265.2l-26.4 26.4c-17.3 17.3-25.6 41.1-23 65.4l7.1 63.6L2.3 487c-3.1 3.1-3.1 8.2 0 11.3l11.3 11.3c3.1 3.1 8.2 3.1 11.3 0l66.3-66.3 63.6 7.1c23.9 2.6 47.9-5.4 65.4-23l181.9-181.9-135.7-135.7-64.9 65zm308.2-93.3L430.5 2.3c-3.1-3.1-8.2-3.1-11.3 0l-11.3 11.3c-3.1 3.1-3.1 8.2 0 11.3l28.3 28.3-45.3 45.3-56.6-56.6-17-17c-3.1-3.1-8.2-3.1-11.3 0l-33.9 33.9c-3.1 3.1-3.1 8.2 0 11.3l17 17L424.8 223l17 17c3.1 3.1 8.2 3.1 11.3 0l33.9-34c3.1-3.1 3.1-8.2 0-11.3l-73.5-73.5 45.3-45.3 28.3 28.3c3.1 3.1 8.2 3.1 11.3 0l11.3-11.3c3.1-3.2 3.1-8.2 0-11.4z"] }; +var faTable = { prefix: 'fas', iconName: 'table', icon: [512, 512, [], "f0ce", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64v-96h160v96zm0-160H64v-96h160v96zm224 160H288v-96h160v96zm0-160H288v-96h160v96z"] }; +var faTableTennis = { prefix: 'fas', iconName: 'table-tennis', icon: [512, 512, [], "f45d", "M496.2 296.5C527.7 218.7 512 126.2 449 63.1 365.1-21 229-21 145.1 63.1l-56 56.1 211.5 211.5c46.1-62.1 131.5-77.4 195.6-34.2zm-217.9 79.7L57.9 155.9c-27.3 45.3-21.7 105 17.3 144.1l34.5 34.6L6.7 424c-8.6 7.5-9.1 20.7-1 28.8l53.4 53.5c8 8.1 21.2 7.6 28.7-1L177.1 402l35.7 35.7c19.7 19.7 44.6 30.5 70.3 33.3-7.1-17-11-35.6-11-55.1-.1-13.8 2.5-27 6.2-39.7zM416 320c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96z"] }; +var faTablet = { prefix: 'fas', iconName: 'tablet', icon: [448, 512, [], "f10a", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faTabletAlt = { prefix: 'fas', iconName: 'tablet-alt', icon: [448, 512, [], "f3fa", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm176-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h328c6.6 0 12 5.4 12 12v312z"] }; +var faTablets = { prefix: 'fas', iconName: 'tablets', icon: [640, 512, [], "f490", "M160 192C78.9 192 12.5 250.5.1 326.7c-.8 4.8 3.3 9.3 8.3 9.3h303.3c5 0 9.1-4.5 8.3-9.3C307.5 250.5 241.1 192 160 192zm151.6 176H8.4c-5 0-9.1 4.5-8.3 9.3C12.5 453.5 78.9 512 160 512s147.5-58.5 159.9-134.7c.8-4.8-3.3-9.3-8.3-9.3zM593.4 46.6c-56.5-56.5-144.2-61.4-206.9-16-4 2.9-4.3 8.9-.8 12.3L597 254.3c3.5 3.5 9.5 3.2 12.3-.8 45.5-62.7 40.6-150.4-15.9-206.9zM363 65.7c-3.5-3.5-9.5-3.2-12.3.8-45.4 62.7-40.5 150.4 15.9 206.9 56.5 56.5 144.2 61.4 206.9 15.9 4-2.9 4.3-8.9.8-12.3L363 65.7z"] }; +var faTachometerAlt = { prefix: 'fas', iconName: 'tachometer-alt', icon: [576, 512, [], "f3fd", "M75.694 480a48.02 48.02 0 0 1-42.448-25.571C12.023 414.3 0 368.556 0 320 0 160.942 128.942 32 288 32s288 128.942 288 288c0 48.556-12.023 94.3-33.246 134.429A48.018 48.018 0 0 1 500.306 480H75.694zM512 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zM288 128c17.673 0 32-14.327 32-32 0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32zM64 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm65.608-158.392c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm316.784 0c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm-87.078 31.534c-12.627-4.04-26.133 2.92-30.173 15.544l-45.923 143.511C250.108 322.645 224 350.264 224 384c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64 0-19.773-8.971-37.447-23.061-49.187l45.919-143.498c4.039-12.625-2.92-26.133-15.544-30.173z"] }; +var faTag = { prefix: 'fas', iconName: 'tag', icon: [512, 512, [], "f02b", "M0 252.118V48C0 21.49 21.49 0 48 0h204.118a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882L293.823 497.941c-18.745 18.745-49.137 18.745-67.882 0L14.059 286.059A48 48 0 0 1 0 252.118zM112 64c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"] }; +var faTags = { prefix: 'fas', iconName: 'tags', icon: [640, 512, [], "f02c", "M497.941 225.941L286.059 14.059A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v204.118a48 48 0 0 0 14.059 33.941l211.882 211.882c18.744 18.745 49.136 18.746 67.882 0l204.118-204.118c18.745-18.745 18.745-49.137 0-67.882zM112 160c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm513.941 133.823L421.823 497.941c-18.745 18.745-49.137 18.745-67.882 0l-.36-.36L527.64 323.522c16.999-16.999 26.36-39.6 26.36-63.64s-9.362-46.641-26.36-63.64L331.397 0h48.721a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882z"] }; +var faTape = { prefix: 'fas', iconName: 'tape', icon: [640, 512, [], "f4db", "M224 192c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm400 224H380.6c41.5-40.7 67.4-97.3 67.4-160 0-123.7-100.3-224-224-224S0 132.3 0 256s100.3 224 224 224h400c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400-64c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96z"] }; +var faTasks = { prefix: 'fas', iconName: 'tasks', icon: [512, 512, [], "f0ae", "M208 132h288c8.8 0 16-7.2 16-16V76c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zM64 368c-26.5 0-48.6 21.5-48.6 48s22.1 48 48.6 48 48-21.5 48-48-21.5-48-48-48zm92.5-299l-72.2 72.2-15.6 15.6c-4.7 4.7-12.9 4.7-17.6 0L3.5 109.4c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.3c4.7-4.7 12.3-4.7 17 0l17 16.5c4.6 4.7 4.6 12.3-.1 17zm0 159.6l-72.2 72.2-15.7 15.7c-4.7 4.7-12.9 4.7-17.6 0L3.5 269c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.7c4.7-4.7 12.3-4.7 17 0l17 17c4.6 4.6 4.6 12.2-.1 16.9z"] }; +var faTaxi = { prefix: 'fas', iconName: 'taxi', icon: [512, 512, [], "f1ba", "M461.951 243.865l-21.816-87.268A79.885 79.885 0 0 0 362.522 96H352V56c0-13.255-10.745-24-24-24H184c-13.255 0-24 10.745-24 24v40h-10.522a79.885 79.885 0 0 0-77.612 60.597L50.05 243.865C25.515 252.823 8 276.366 8 304v48c0 20.207 9.374 38.214 24 49.943V456c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-40h256v40c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-54.057c14.626-11.729 24-29.737 24-49.943v-48c0-27.634-17.515-51.177-42.049-60.135zM149.478 160h213.045a15.975 15.975 0 0 1 15.522 12.12l16.97 67.88h-278.03l16.97-67.881A15.976 15.976 0 0 1 149.478 160zM132 336c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm320 0c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36z"] }; +var faTerminal = { prefix: 'fas', iconName: 'terminal', icon: [640, 512, [], "f120", "M257.981 272.971L63.638 467.314c-9.373 9.373-24.569 9.373-33.941 0L7.029 444.647c-9.357-9.357-9.375-24.522-.04-33.901L161.011 256 6.99 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L257.981 239.03c9.373 9.372 9.373 24.568 0 33.941zM640 456v-32c0-13.255-10.745-24-24-24H312c-13.255 0-24 10.745-24 24v32c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z"] }; +var faTextHeight = { prefix: 'fas', iconName: 'text-height', icon: [576, 512, [], "f034", "M16 32h288c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96h-54.761v320H232c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H88c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm475.308 4.685l79.995 80.001C581.309 126.693 574.297 144 559.99 144H512v224h48c15.639 0 20.635 17.991 11.313 27.314l-79.995 80.001c-6.247 6.247-16.381 6.245-22.626 0l-79.995-80.001C378.691 385.307 385.703 368 400.01 368H448V144h-48c-15.639 0-20.635-17.991-11.313-27.314l79.995-80.001c6.247-6.248 16.381-6.245 22.626 0z"] }; +var faTextWidth = { prefix: 'fas', iconName: 'text-width', icon: [448, 512, [], "f035", "M16 32h416c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96H261.743v128H296c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H152c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm427.315 340.682l-80.001-79.995C353.991 283.365 336 288.362 336 304v48H112v-47.99c0-14.307-17.307-21.319-27.314-11.313L4.685 372.692c-6.245 6.245-6.247 16.379 0 22.626l80.001 79.995C94.009 484.635 112 479.638 112 464v-48h224v47.99c0 14.307 17.307 21.319 27.314 11.313l80.001-79.995c6.245-6.245 6.248-16.379 0-22.626z"] }; +var faTh = { prefix: 'fas', iconName: 'th', icon: [512, 512, [], "f00a", "M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z"] }; +var faThLarge = { prefix: 'fas', iconName: 'th-large', icon: [512, 512, [], "f009", "M296 32h192c13.255 0 24 10.745 24 24v160c0 13.255-10.745 24-24 24H296c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24zm-80 0H24C10.745 32 0 42.745 0 56v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zM0 296v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm296 184h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H296c-13.255 0-24 10.745-24 24v160c0 13.255 10.745 24 24 24z"] }; +var faThList = { prefix: 'fas', iconName: 'th-list', icon: [512, 512, [], "f00b", "M149.333 216v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zM125.333 32H24C10.745 32 0 42.745 0 56v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zm80 448H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm-24-424v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24zm24 264H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24z"] }; +var faThermometer = { prefix: 'fas', iconName: 'thermometer', icon: [512, 512, [], "f491", "M476.8 20.4c-37.5-30.7-95.5-26.3-131.9 10.2l-45.7 46 50.5 50.5c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.4-50.5-45.1 45.4 50.3 50.4c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L209 167.4l-45.1 45.4L214 263c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.1-50.2L96 281.1V382L7 471c-9.4 9.4-9.4 24.6 0 33.9 9.4 9.4 24.6 9.4 33.9 0l89-89h99.9L484 162.6c34.9-34.9 42.2-101.5-7.2-142.2z"] }; +var faThermometerEmpty = { prefix: 'fas', iconName: 'thermometer-empty', icon: [256, 512, [], "f2cb", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; +var faThermometerFull = { prefix: 'fas', iconName: 'thermometer-full', icon: [256, 512, [], "f2c7", "M224 96c0-53.019-42.981-96-96-96S32 42.981 32 96v203.347C12.225 321.756.166 351.136.002 383.333c-.359 70.303 56.787 128.176 127.089 128.664.299.002.61.003.909.003 70.698 0 128-57.304 128-128 0-32.459-12.088-62.09-32-84.653V96zm-96 368l-.576-.002c-43.86-.304-79.647-36.544-79.423-80.42.173-33.98 19.266-51.652 31.999-66.08V96c0-26.467 21.533-48 48-48s48 21.533 48 48v221.498c12.63 14.312 32 32.164 32 66.502 0 44.112-35.888 80-80 80zm64-80c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V96c0-17.673 14.327-32 32-32s32 14.327 32 32v232.583c19.124 11.068 32 31.732 32 55.417z"] }; +var faThermometerHalf = { prefix: 'fas', iconName: 'thermometer-half', icon: [256, 512, [], "f2c9", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V224c0-17.673 14.327-32 32-32s32 14.327 32 32v104.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; +var faThermometerQuarter = { prefix: 'fas', iconName: 'thermometer-quarter', icon: [256, 512, [], "f2ca", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V288c0-17.673 14.327-32 32-32s32 14.327 32 32v40.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; +var faThermometerThreeQuarters = { prefix: 'fas', iconName: 'thermometer-three-quarters', icon: [256, 512, [], "f2c8", "M192 384c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-23.685 12.876-44.349 32-55.417V160c0-17.673 14.327-32 32-32s32 14.327 32 32v168.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; +var faThumbsDown = { prefix: 'fas', iconName: 'thumbs-down', icon: [512, 512, [], "f165", "M0 56v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56zm40 200c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24zm272 256c-20.183 0-29.485-39.293-33.931-57.795-5.206-21.666-10.589-44.07-25.393-58.902-32.469-32.524-49.503-73.967-89.117-113.111a11.98 11.98 0 0 1-3.558-8.521V59.901c0-6.541 5.243-11.878 11.783-11.998 15.831-.29 36.694-9.079 52.651-16.178C256.189 17.598 295.709.017 343.995 0h2.844c42.777 0 93.363.413 113.774 29.737 8.392 12.057 10.446 27.034 6.148 44.632 16.312 17.053 25.063 48.863 16.382 74.757 17.544 23.432 19.143 56.132 9.308 79.469l.11.11c11.893 11.949 19.523 31.259 19.439 49.197-.156 30.352-26.157 58.098-59.553 58.098H350.723C358.03 364.34 384 388.132 384 430.548 384 504 336 512 312 512z"] }; +var faThumbsUp = { prefix: 'fas', iconName: 'thumbs-up', icon: [512, 512, [], "f164", "M104 224H24c-13.255 0-24 10.745-24 24v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V248c0-13.255-10.745-24-24-24zM64 472c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zM384 81.452c0 42.416-25.97 66.208-33.277 94.548h101.723c33.397 0 59.397 27.746 59.553 58.098.084 17.938-7.546 37.249-19.439 49.197l-.11.11c9.836 23.337 8.237 56.037-9.308 79.469 8.681 25.895-.069 57.704-16.382 74.757 4.298 17.598 2.244 32.575-6.148 44.632C440.202 511.587 389.616 512 346.839 512l-2.845-.001c-48.287-.017-87.806-17.598-119.56-31.725-15.957-7.099-36.821-15.887-52.651-16.178-6.54-.12-11.783-5.457-11.783-11.998v-213.77c0-3.2 1.282-6.271 3.558-8.521 39.614-39.144 56.648-80.587 89.117-113.111 14.804-14.832 20.188-37.236 25.393-58.902C282.515 39.293 291.817 0 312 0c24 0 72 8 72 81.452z"] }; +var faThumbtack = { prefix: 'fas', iconName: 'thumbtack', icon: [384, 512, [], "f08d", "M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z"] }; +var faTicketAlt = { prefix: 'fas', iconName: 'ticket-alt', icon: [576, 512, [], "f3ff", "M128 160h320v192H128V160zm400 96c0 26.51 21.49 48 48 48v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c26.51 0 48-21.49 48-48s-21.49-48-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v96c-26.51 0-48 21.49-48 48zm-48-104c0-13.255-10.745-24-24-24H120c-13.255 0-24 10.745-24 24v208c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V152z"] }; +var faTimes = { prefix: 'fas', iconName: 'times', icon: [352, 512, [], "f00d", "M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"] }; +var faTimesCircle = { prefix: 'fas', iconName: 'times-circle', icon: [512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z"] }; +var faTint = { prefix: 'fas', iconName: 'tint', icon: [384, 512, [], "f043", "M192 512c-98.435 0-178.087-79.652-178.087-178.087 0-111.196 101.194-154.065 148.522-311.825 9.104-30.116 51.099-28.778 59.13 0 47.546 158.486 148.522 200.069 148.522 311.825C370.087 432.348 290.435 512 192 512zm-42.522-171.826c-1.509-5.533-9.447-5.532-10.956 0-9.223 29.425-27.913 37.645-27.913 58.435C110.609 417.13 125.478 432 144 432s33.391-14.87 33.391-33.391c0-20.839-18.673-28.956-27.913-58.435z"] }; +var faToggleOff = { prefix: 'fas', iconName: 'toggle-off', icon: [576, 512, [], "f204", "M384 64H192C85.961 64 0 149.961 0 256s85.961 192 192 192h192c106.039 0 192-85.961 192-192S490.039 64 384 64zM64 256c0-70.741 57.249-128 128-128 70.741 0 128 57.249 128 128 0 70.741-57.249 128-128 128-70.741 0-128-57.249-128-128zm320 128h-48.905c65.217-72.858 65.236-183.12 0-256H384c70.741 0 128 57.249 128 128 0 70.74-57.249 128-128 128z"] }; +var faToggleOn = { prefix: 'fas', iconName: 'toggle-on', icon: [576, 512, [], "f205", "M576 256c0 106.039-85.961 192-192 192H192C85.961 448 0 362.039 0 256S85.961 64 192 64h192c106.039 0 192 85.961 192 192zM384 128c-70.741 0-128 57.249-128 128 0 70.741 57.249 128 128 128 70.741 0 128-57.249 128-128 0-70.741-57.249-128-128-128"] }; +var faToolbox = { prefix: 'fas', iconName: 'toolbox', icon: [512, 512, [], "f552", "M502.63 214.63l-45.25-45.25c-6-6-14.14-9.37-22.63-9.37H384V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v80H77.25c-8.49 0-16.62 3.37-22.63 9.37L9.37 214.63c-6 6-9.37 14.14-9.37 22.63V320h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-82.75c0-8.48-3.37-16.62-9.37-22.62zM320 160H192V96h128v64zm64 208c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H192v16c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H0v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96H384v16z"] }; +var faTrademark = { prefix: 'fas', iconName: 'trademark', icon: [640, 512, [], "f25c", "M97.119 163.133H12c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h248.559c6.627 0 12 5.373 12 12v43.133c0 6.627-5.373 12-12 12H175.44V404c0 6.627-5.373 12-12 12h-54.322c-6.627 0-12-5.373-12-12V163.133zM329.825 96h65.425a12 12 0 0 1 11.346 8.093l43.759 127.068c7.161 20.588 16.111 52.812 16.111 52.812h.896s8.95-32.224 16.111-52.812l43.758-127.068A12 12 0 0 1 538.577 96h65.41a12 12 0 0 1 11.961 11.03l24.012 296c.567 6.987-4.951 12.97-11.961 12.97h-54.101a12 12 0 0 1-11.972-11.182l-9.082-132.93c-1.79-24.168 0-53.706 0-53.706h-.896s-10.741 33.566-17.902 53.706l-30.7 84.731a12 12 0 0 1-11.282 7.912h-50.302a12 12 0 0 1-11.282-7.912l-30.7-84.731c-7.161-20.14-17.903-53.706-17.903-53.706h-.895s1.79 29.538 0 53.706l-9.082 132.93c-.428 6.295-5.66 11.182-11.97 11.182H305.4c-7.017 0-12.536-5.994-11.959-12.987l24.425-296A11.999 11.999 0 0 1 329.825 96z"] }; +var faTrain = { prefix: 'fas', iconName: 'train', icon: [448, 512, [], "f238", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zm-48 136V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24zm-176 64c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56z"] }; +var faTransgender = { prefix: 'fas', iconName: 'transgender', icon: [384, 512, [], "f224", "M372 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C198.5 104.1 172.2 96 144 96 64.5 96 0 160.5 0 240c0 68.5 47.9 125.9 112 140.4V408H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM144 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faTransgenderAlt = { prefix: 'fas', iconName: 'transgender-alt', icon: [480, 512, [], "f225", "M468 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C294.5 104.1 268.2 96 240 96c-28.2 0-54.5 8.1-76.7 22.1l-16.5-16.5 19.8-19.8c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0l-19.8 19.8-19-19 16.9-16.9C107.1 12.9 101.7 0 91 0H12C5.4 0 0 5.4 0 12v79c0 10.7 12.9 16 20.5 8.5l16.9-16.9 19 19-19.8 19.8c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l19.8-19.8 16.5 16.5C104.1 185.5 96 211.8 96 240c0 68.5 47.9 125.9 112 140.4V408h-36c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM240 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faTrash = { prefix: 'fas', iconName: 'trash', icon: [448, 512, [], "f1f8", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm415.2 56.7L394.8 467c-1.6 25.3-22.6 45-47.9 45H101.1c-25.3 0-46.3-19.7-47.9-45L32.8 140.7c-.4-6.9 5.1-12.7 12-12.7h358.5c6.8 0 12.3 5.8 11.9 12.7z"] }; +var faTrashAlt = { prefix: 'fas', iconName: 'trash-alt', icon: [448, 512, [], "f2ed", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm416 56v324c0 26.5-21.5 48-48 48H80c-26.5 0-48-21.5-48-48V140c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12zm-272 68c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208z"] }; +var faTree = { prefix: 'fas', iconName: 'tree', icon: [384, 512, [], "f1bb", "M377.33 375.429L293.906 288H328c21.017 0 31.872-25.207 17.448-40.479L262.79 160H296c20.878 0 31.851-24.969 17.587-40.331l-104-112.003c-9.485-10.214-25.676-10.229-35.174 0l-104 112.003C56.206 134.969 67.037 160 88 160h33.21l-82.659 87.521C24.121 262.801 34.993 288 56 288h34.094L6.665 375.429C-7.869 390.655 2.925 416 24.025 416H144c0 32.781-11.188 49.26-33.995 67.506C98.225 492.93 104.914 512 120 512h144c15.086 0 21.776-19.069 9.995-28.494-19.768-15.814-33.992-31.665-33.995-67.496V416h119.97c21.05 0 31.929-25.309 17.36-40.571z"] }; +var faTrophy = { prefix: 'fas', iconName: 'trophy', icon: [576, 512, [], "f091", "M552 64H448V24c0-13.3-10.7-24-24-24H152c-13.3 0-24 10.7-24 24v40H24C10.7 64 0 74.7 0 88v56c0 35.7 22.5 72.4 61.9 100.7 31.5 22.7 69.8 37.1 110 41.7C203.3 338.5 240 360 240 360v72h-48c-35.3 0-64 20.7-64 56v12c0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12v-12c0-35.3-28.7-56-64-56h-48v-72s36.7-21.5 68.1-73.6c40.3-4.6 78.6-19 110-41.7 39.3-28.3 61.9-65 61.9-100.7V88c0-13.3-10.7-24-24-24zM99.3 192.8C74.9 175.2 64 155.6 64 144v-16h64.2c1 32.6 5.8 61.2 12.8 86.2-15.1-5.2-29.2-12.4-41.7-21.4zM512 144c0 16.1-17.7 36.1-35.3 48.8-12.5 9-26.7 16.2-41.8 21.4 7-25 11.8-53.6 12.8-86.2H512v16z"] }; +var faTruck = { prefix: 'fas', iconName: 'truck', icon: [640, 512, [], "f0d1", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"] }; +var faTruckLoading = { prefix: 'fas', iconName: 'truck-loading', icon: [640, 512, [], "f4de", "M50.2 375.6c2.3 8.5 11.1 13.6 19.6 11.3l216.4-58c8.5-2.3 13.6-11.1 11.3-19.6l-49.7-185.5c-2.3-8.5-11.1-13.6-19.6-11.3L151 133.3l24.8 92.7-61.8 16.5-24.8-92.7-77.3 20.7C3.4 172.8-1.7 181.6.6 190.1l49.6 185.5zM384 0c-17.7 0-32 14.3-32 32v323.6L5.9 450c-4.3 1.2-6.8 5.6-5.6 9.8l12.6 46.3c1.2 4.3 5.6 6.8 9.8 5.6l393.7-107.4C418.8 464.1 467.6 512 528 512c61.9 0 112-50.1 112-112V0H384zm144 448c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; +var faTruckMoving = { prefix: 'fas', iconName: 'truck-moving', icon: [640, 512, [], "f4df", "M621.3 237.3l-58.5-58.5c-12-12-28.3-18.7-45.3-18.7H480V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v336c0 44.2 35.8 80 80 80 26.3 0 49.4-12.9 64-32.4 14.6 19.6 37.7 32.4 64 32.4 44.2 0 80-35.8 80-80 0-5.5-.6-10.8-1.6-16h163.2c-1.1 5.2-1.6 10.5-1.6 16 0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H624c8.8 0 16-7.2 16-16v-85.5c0-17-6.7-33.2-18.7-45.2zM80 432c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm128 0c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm272-224h37.5c4.3 0 8.3 1.7 11.3 4.7l43.3 43.3H480v-48zm48 224c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32z"] }; +var faTshirt = { prefix: 'fas', iconName: 'tshirt', icon: [640, 512, [], "f553", "M631.2 96.5L436.5 0C416.4 27.8 371.9 47.2 320 47.2S223.6 27.8 203.5 0L8.8 96.5c-7.9 4-11.1 13.6-7.2 21.5l57.2 114.5c4 7.9 13.6 11.1 21.5 7.2l56.6-27.7c10.6-5.2 23 2.5 23 14.4V480c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V226.3c0-11.8 12.4-19.6 23-14.4l56.6 27.7c7.9 4 17.5.8 21.5-7.2L638.3 118c4-7.9.8-17.6-7.1-21.5z"] }; +var faTty = { prefix: 'fas', iconName: 'tty', icon: [512, 512, [], "f1e4", "M5.37 103.822c138.532-138.532 362.936-138.326 501.262 0 6.078 6.078 7.074 15.496 2.583 22.681l-43.214 69.138a18.332 18.332 0 0 1-22.356 7.305l-86.422-34.569a18.335 18.335 0 0 1-11.434-18.846L351.741 90c-62.145-22.454-130.636-21.986-191.483 0l5.953 59.532a18.331 18.331 0 0 1-11.434 18.846l-86.423 34.568a18.334 18.334 0 0 1-22.356-7.305L2.787 126.502a18.333 18.333 0 0 1 2.583-22.68zM96 308v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H92c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zM96 500v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H140c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"] }; +var faTv = { prefix: 'fas', iconName: 'tv', icon: [640, 512, [], "f26c", "M592 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h245.1v32h-160c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32-14.3 32-32s-14.3-32-32-32h-160v-32H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h512v288z"] }; +var faUmbrella = { prefix: 'fas', iconName: 'umbrella', icon: [576, 512, [], "f0e9", "M557.011 267.631c-51.432-45.217-107.572-43.698-158.567 30.731-5.298 7.861-14.906 7.165-19.736 0-2.483-3.624-32.218-60.808-90.708-60.808-45.766 0-70.542 31.378-90.709 60.808-4.829 7.165-14.436 7.861-19.734 0-50.904-74.285-106.613-76.406-158.567-30.731-10.21 8.264-20.912-1.109-18.696-9.481C32.146 134.573 158.516 64.612 288.001 64.612c128.793 0 256.546 69.961 287.706 193.538 2.206 8.322-8.426 17.793-18.696 9.481zM256 261.001V416c0 17.645-14.355 32-32 32s-32-14.355-32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 52.935 43.065 96 96 96s96-43.065 96-96V261.288c-21.836-10.806-45.425-9.737-64-.287zm64-211.007V32c0-17.673-14.327-32-32-32s-32 14.327-32 32v17.987a372.105 372.105 0 0 1 64 .007z"] }; +var faUnderline = { prefix: 'fas', iconName: 'underline', icon: [448, 512, [], "f0cd", "M224.264 388.24c-91.669 0-156.603-51.165-156.603-151.392V64H39.37c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h137.39c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.813v172.848c0 53.699 28.314 79.444 76.317 79.444 46.966 0 75.796-25.434 75.796-79.965V64h-28.291c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h136.868c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.291v172.848c0 99.405-64.881 151.392-156.082 151.392zM16 448h416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16z"] }; +var faUndo = { prefix: 'fas', iconName: 'undo', icon: [512, 512, [], "f0e2", "M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z"] }; +var faUndoAlt = { prefix: 'fas', iconName: 'undo-alt', icon: [512, 512, [], "f2ea", "M255.545 8c-66.269.119-126.438 26.233-170.86 68.685L48.971 40.971C33.851 25.851 8 36.559 8 57.941V192c0 13.255 10.745 24 24 24h134.059c21.382 0 32.09-25.851 16.971-40.971l-41.75-41.75c30.864-28.899 70.801-44.907 113.23-45.273 92.398-.798 170.283 73.977 169.484 169.442C423.236 348.009 349.816 424 256 424c-41.127 0-79.997-14.678-110.63-41.556-4.743-4.161-11.906-3.908-16.368.553L89.34 422.659c-4.872 4.872-4.631 12.815.482 17.433C133.798 479.813 192.074 504 256 504c136.966 0 247.999-111.033 248-247.998C504.001 119.193 392.354 7.755 255.545 8z"] }; +var faUniversalAccess = { prefix: 'fas', iconName: 'universal-access', icon: [512, 512, [], "f29a", "M256 48c114.953 0 208 93.029 208 208 0 114.953-93.029 208-208 208-114.953 0-208-93.029-208-208 0-114.953 93.029-208 208-208m0-40C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 56C149.961 64 64 149.961 64 256s85.961 192 192 192 192-85.961 192-192S362.039 64 256 64zm0 44c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36zm117.741 98.023c-28.712 6.779-55.511 12.748-82.14 15.807.851 101.023 12.306 123.052 25.037 155.621 3.617 9.26-.957 19.698-10.217 23.315-9.261 3.617-19.699-.957-23.316-10.217-8.705-22.308-17.086-40.636-22.261-78.549h-9.686c-5.167 37.851-13.534 56.208-22.262 78.549-3.615 9.255-14.05 13.836-23.315 10.217-9.26-3.617-13.834-14.056-10.217-23.315 12.713-32.541 24.185-54.541 25.037-155.621-26.629-3.058-53.428-9.027-82.141-15.807-8.6-2.031-13.926-10.648-11.895-19.249s10.647-13.926 19.249-11.895c96.686 22.829 124.283 22.783 220.775 0 8.599-2.03 17.218 3.294 19.249 11.895 2.029 8.601-3.297 17.219-11.897 19.249z"] }; +var faUniversity = { prefix: 'fas', iconName: 'university', icon: [512, 512, [], "f19c", "M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z"] }; +var faUnlink = { prefix: 'fas', iconName: 'unlink', icon: [512, 512, [], "f127", "M304.083 405.907c4.686 4.686 4.686 12.284 0 16.971l-44.674 44.674c-59.263 59.262-155.693 59.266-214.961 0-59.264-59.265-59.264-155.696 0-214.96l44.675-44.675c4.686-4.686 12.284-4.686 16.971 0l39.598 39.598c4.686 4.686 4.686 12.284 0 16.971l-44.675 44.674c-28.072 28.073-28.072 73.75 0 101.823 28.072 28.072 73.75 28.073 101.824 0l44.674-44.674c4.686-4.686 12.284-4.686 16.971 0l39.597 39.598zm-56.568-260.216c4.686 4.686 12.284 4.686 16.971 0l44.674-44.674c28.072-28.075 73.75-28.073 101.824 0 28.072 28.073 28.072 73.75 0 101.823l-44.675 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.598 39.598c4.686 4.686 12.284 4.686 16.971 0l44.675-44.675c59.265-59.265 59.265-155.695 0-214.96-59.266-59.264-155.695-59.264-214.961 0l-44.674 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.597 39.598zm234.828 359.28l22.627-22.627c9.373-9.373 9.373-24.569 0-33.941L63.598 7.029c-9.373-9.373-24.569-9.373-33.941 0L7.029 29.657c-9.373 9.373-9.373 24.569 0 33.941l441.373 441.373c9.373 9.372 24.569 9.372 33.941 0z"] }; +var faUnlock = { prefix: 'fas', iconName: 'unlock', icon: [448, 512, [], "f09c", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z"] }; +var faUnlockAlt = { prefix: 'fas', iconName: 'unlock-alt', icon: [448, 512, [], "f13e", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zM264 408c0 22.1-17.9 40-40 40s-40-17.9-40-40v-48c0-22.1 17.9-40 40-40s40 17.9 40 40v48z"] }; +var faUpload = { prefix: 'fas', iconName: 'upload', icon: [512, 512, [], "f093", "M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"] }; +var faUser = { prefix: 'fas', iconName: 'user', icon: [448, 512, [], "f007", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; +var faUserAlt = { prefix: 'fas', iconName: 'user-alt', icon: [512, 512, [], "f406", "M256 288c79.5 0 144-64.5 144-144S335.5 0 256 0 112 64.5 112 144s64.5 144 144 144zm128 32h-55.1c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16H128C57.3 320 0 377.3 0 448v16c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-16c0-70.7-57.3-128-128-128z"] }; +var faUserAltSlash = { prefix: 'fas', iconName: 'user-alt-slash', icon: [640, 512, [], "f4fa", "M633.8 458.1L389.6 269.3C433.8 244.7 464 198.1 464 144 464 64.5 399.5 0 320 0c-67.1 0-123 46.1-139 108.2L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM198.4 320C124.2 320 64 380.2 64 454.4v9.6c0 26.5 21.5 48 48 48h382.2L245.8 320h-47.4z"] }; +var faUserAstronaut = { prefix: 'fas', iconName: 'user-astronaut', icon: [448, 512, [], "f4fb", "M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z"] }; +var faUserCheck = { prefix: 'fas', iconName: 'user-check', icon: [640, 512, [], "f4fc", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4zm323-128.4l-27.8-28.1c-4.6-4.7-12.1-4.7-16.8-.1l-104.8 104-45.5-45.8c-4.6-4.7-12.1-4.7-16.8-.1l-28.1 27.9c-4.7 4.6-4.7 12.1-.1 16.8l81.7 82.3c4.6 4.7 12.1 4.7 16.8.1l141.3-140.2c4.6-4.7 4.7-12.2.1-16.8z"] }; +var faUserCircle = { prefix: 'fas', iconName: 'user-circle', icon: [496, 512, [], "f2bd", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 96c48.6 0 88 39.4 88 88s-39.4 88-88 88-88-39.4-88-88 39.4-88 88-88zm0 344c-58.7 0-111.3-26.6-146.5-68.2 18.8-35.4 55.6-59.8 98.5-59.8 2.4 0 4.8.4 7.1 1.1 13 4.2 26.6 6.9 40.9 6.9 14.3 0 28-2.7 40.9-6.9 2.3-.7 4.7-1.1 7.1-1.1 42.9 0 79.7 24.4 98.5 59.8C359.3 421.4 306.7 448 248 448z"] }; +var faUserClock = { prefix: 'fas', iconName: 'user-clock', icon: [640, 512, [], "f4fd", "M496 224c-79.6 0-144 64.4-144 144s64.4 144 144 144 144-64.4 144-144-64.4-144-144-144zm64 150.3c0 5.3-4.4 9.7-9.7 9.7h-60.6c-5.3 0-9.7-4.4-9.7-9.7v-76.6c0-5.3 4.4-9.7 9.7-9.7h12.6c5.3 0 9.7 4.4 9.7 9.7V352h38.3c5.3 0 9.7 4.4 9.7 9.7v12.6zM320 368c0-27.8 6.7-54.1 18.2-77.5-8-1.5-16.2-2.5-24.6-2.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h347.1c-45.3-31.9-75.1-84.5-75.1-144zm-96-112c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128z"] }; +var faUserCog = { prefix: 'fas', iconName: 'user-cog', icon: [640, 512, [], "f4fe", "M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z"] }; +var faUserEdit = { prefix: 'fas', iconName: 'user-edit', icon: [640, 512, [], "f4ff", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h274.9c-2.4-6.8-3.4-14-2.6-21.3l6.8-60.9 1.2-11.1 7.9-7.9 77.3-77.3c-24.5-27.7-60-45.5-99.9-45.5zm45.3 145.3l-6.8 61c-1.1 10.2 7.5 18.8 17.6 17.6l60.9-6.8 137.9-137.9-71.7-71.7-137.9 137.8zM633 268.9L595.1 231c-9.3-9.3-24.5-9.3-33.8 0l-37.8 37.8-4.1 4.1 71.8 71.7 41.8-41.8c9.3-9.4 9.3-24.5 0-33.9z"] }; +var faUserFriends = { prefix: 'fas', iconName: 'user-friends', icon: [640, 512, [], "f500", "M192 256c61.9 0 112-50.1 112-112S253.9 32 192 32 80 82.1 80 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C51.6 288 0 339.6 0 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zM480 256c53 0 96-43 96-96s-43-96-96-96-96 43-96 96 43 96 96 96zm48 32h-3.8c-13.9 4.8-28.6 8-44.2 8s-30.3-3.2-44.2-8H432c-20.4 0-39.2 5.9-55.7 15.4 24.4 26.3 39.7 61.2 39.7 99.8v38.4c0 2.2-.5 4.3-.6 6.4H592c26.5 0 48-21.5 48-48 0-61.9-50.1-112-112-112z"] }; +var faUserGraduate = { prefix: 'fas', iconName: 'user-graduate', icon: [448, 512, [], "f501", "M319.4 320.6L224 416l-95.4-95.4C57.1 323.7 0 382.2 0 454.4v9.6c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-9.6c0-72.2-57.1-130.7-128.6-133.8zM13.6 79.8l6.4 1.5v58.4c-7 4.2-12 11.5-12 20.3 0 8.4 4.6 15.4 11.1 19.7L3.5 242c-1.7 6.9 2.1 14 7.6 14h41.8c5.5 0 9.3-7.1 7.6-14l-15.6-62.3C51.4 175.4 56 168.4 56 160c0-8.8-5-16.1-12-20.3V87.1l66 15.9c-8.6 17.2-14 36.4-14 57 0 70.7 57.3 128 128 128s128-57.3 128-128c0-20.6-5.3-39.8-14-57l96.3-23.2c18.2-4.4 18.2-27.1 0-31.5l-190.4-46c-13-3.1-26.7-3.1-39.7 0L13.6 48.2c-18.1 4.4-18.1 27.2 0 31.6z"] }; +var faUserLock = { prefix: 'fas', iconName: 'user-lock', icon: [640, 512, [], "f502", "M320 320c0-11.1 3.1-21.4 8.1-30.5-4.8-.5-9.5-1.5-14.5-1.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h280.9c-5.5-9.5-8.9-20.3-8.9-32V320zm-96-64c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm384 32h-32v-48c0-44.2-35.8-80-80-80s-80 35.8-80 80v48h-32c-17.7 0-32 14.3-32 32v160c0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32V320c0-17.7-14.3-32-32-32zm-80 0h-64v-48c0-17.6 14.4-32 32-32s32 14.4 32 32v48z"] }; +var faUserMd = { prefix: 'fas', iconName: 'user-md', icon: [448, 512, [], "f0f0", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zM104 424c0 13.3 10.7 24 24 24s24-10.7 24-24-10.7-24-24-24-24 10.7-24 24zm216-135.4v49c36.5 7.4 64 39.8 64 78.4v41.7c0 7.6-5.4 14.2-12.9 15.7l-32.2 6.4c-4.3.9-8.5-1.9-9.4-6.3l-3.1-15.7c-.9-4.3 1.9-8.6 6.3-9.4l19.3-3.9V416c0-62.8-96-65.1-96 1.9v26.7l19.3 3.9c4.3.9 7.1 5.1 6.3 9.4l-3.1 15.7c-.9 4.3-5.1 7.1-9.4 6.3l-31.2-4.2c-7.9-1.1-13.8-7.8-13.8-15.9V416c0-38.6 27.5-70.9 64-78.4v-45.2c-2.2.7-4.4 1.1-6.6 1.9-18 6.3-37.3 9.8-57.4 9.8s-39.4-3.5-57.4-9.8c-7.4-2.6-14.9-4.2-22.6-5.2v81.6c23.1 6.9 40 28.1 40 53.4 0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.3 16.9-46.5 40-53.4v-80.4C48.5 301 0 355.8 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-72-56.8-130.3-128-133.8z"] }; +var faUserMinus = { prefix: 'fas', iconName: 'user-minus', icon: [640, 512, [], "f503", "M624 208H432c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; +var faUserNinja = { prefix: 'fas', iconName: 'user-ninja', icon: [448, 512, [], "f504", "M325.4 289.2L224 390.6 122.6 289.2C54 295.3 0 352.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-70.2-54-127.1-122.6-133.2zM32 192c27.3 0 51.8-11.5 69.2-29.7 15.1 53.9 64 93.7 122.8 93.7 70.7 0 128-57.3 128-128S294.7 0 224 0c-50.4 0-93.6 29.4-114.5 71.8C92.1 47.8 64 32 32 32c0 33.4 17.1 62.8 43.1 80-26 17.2-43.1 46.6-43.1 80zm144-96h96c17.7 0 32 14.3 32 32H144c0-17.7 14.3-32 32-32z"] }; +var faUserPlus = { prefix: 'fas', iconName: 'user-plus', icon: [640, 512, [], "f234", "M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; +var faUserSecret = { prefix: 'fas', iconName: 'user-secret', icon: [448, 512, [], "f21b", "M383.9 308.3l23.9-62.6c4-10.5-3.7-21.7-15-21.7h-58.5c11-18.9 17.8-40.6 17.8-64v-.3c39.2-7.8 64-19.1 64-31.7 0-13.3-27.3-25.1-70.1-33-9.2-32.8-27-65.8-40.6-82.8-9.5-11.9-25.9-15.6-39.5-8.8l-27.6 13.8c-9 4.5-19.6 4.5-28.6 0L182.1 3.4c-13.6-6.8-30-3.1-39.5 8.8-13.5 17-31.4 50-40.6 82.8-42.7 7.9-70 19.7-70 33 0 12.6 24.8 23.9 64 31.7v.3c0 23.4 6.8 45.1 17.8 64H56.3c-11.5 0-19.2 11.7-14.7 22.3l25.8 60.2C27.3 329.8 0 372.7 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-48.4-25.8-90.4-64.1-114.1zM176 480l-41.6-192 49.6 32 24 40-32 120zm96 0l-32-120 24-40 49.6-32L272 480zm41.7-298.5c-3.9 11.9-7 24.6-16.5 33.4-10.1 9.3-48 22.4-64-25-2.8-8.4-15.4-8.4-18.3 0-17 50.2-56 32.4-64 25-9.5-8.8-12.7-21.5-16.5-33.4-.8-2.5-6.3-5.7-6.3-5.8v-10.8c28.3 3.6 61 5.8 96 5.8s67.7-2.1 96-5.8v10.8c-.1.1-5.6 3.2-6.4 5.8z"] }; +var faUserShield = { prefix: 'fas', iconName: 'user-shield', icon: [640, 512, [], "f505", "M622.3 271.1l-115.2-45c-4.1-1.6-12.6-3.7-22.2 0l-115.2 45c-10.7 4.2-17.7 14-17.7 24.9 0 111.6 68.7 188.8 132.9 213.9 9.6 3.7 18 1.6 22.2 0C558.4 489.9 640 420.5 640 296c0-10.9-7-20.7-17.7-24.9zM496 462.4V273.3l95.5 37.3c-5.6 87.1-60.9 135.4-95.5 151.8zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm96 40c0-2.5.8-4.8 1.1-7.2-2.5-.1-4.9-.8-7.5-.8h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c6.8 0 13.3-1.5 19.2-4-54-42.9-99.2-116.7-99.2-212z"] }; +var faUserSlash = { prefix: 'fas', iconName: 'user-slash', icon: [640, 512, [], "f506", "M633.8 458.1L362.3 248.3C412.1 230.7 448 183.8 448 128 448 57.3 390.7 0 320 0c-67.1 0-121.5 51.8-126.9 117.4L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM96 422.4V464c0 26.5 21.5 48 48 48h350.2L207.4 290.3C144.2 301.3 96 356 96 422.4z"] }; +var faUserTag = { prefix: 'fas', iconName: 'user-tag', icon: [640, 512, [], "f507", "M630.6 364.9l-90.3-90.2c-12-12-28.3-18.7-45.3-18.7h-79.3c-17.7 0-32 14.3-32 32v79.2c0 17 6.7 33.2 18.7 45.2l90.3 90.2c12.5 12.5 32.8 12.5 45.3 0l92.5-92.5c12.6-12.5 12.6-32.7.1-45.2zm-182.8-21c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24c0 13.2-10.7 24-24 24zm-223.8-88c70.7 0 128-57.3 128-128C352 57.3 294.7 0 224 0S96 57.3 96 128c0 70.6 57.3 127.9 128 127.9zm127.8 111.2V294c-12.2-3.6-24.9-6.2-38.2-6.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 287.9 0 348.1 0 422.3v41.6c0 26.5 21.5 48 48 48h352c15.5 0 29.1-7.5 37.9-18.9l-58-58c-18.1-18.1-28.1-42.2-28.1-67.9z"] }; +var faUserTie = { prefix: 'fas', iconName: 'user-tie', icon: [448, 512, [], "f508", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm95.8 32.6L272 480l-32-136 32-56h-96l32 56-32 136-47.8-191.4C56.9 292 0 350.3 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-72.1-56.9-130.4-128.2-133.8z"] }; +var faUserTimes = { prefix: 'fas', iconName: 'user-times', icon: [640, 512, [], "f235", "M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; +var faUsers = { prefix: 'fas', iconName: 'users', icon: [640, 512, [], "f0c0", "M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"] }; +var faUsersCog = { prefix: 'fas', iconName: 'users-cog', icon: [640, 512, [], "f509", "M610.5 341.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 368.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm224 32c1.9 0 3.7-.5 5.6-.6 8.3-21.7 20.5-42.1 36.3-59.2 7.4-8 17.9-12.6 28.9-12.6 6.9 0 13.7 1.8 19.6 5.3l7.9 4.6c.8-.5 1.6-.9 2.4-1.4 7-14.6 11.2-30.8 11.2-48 0-61.9-50.1-112-112-112S208 82.1 208 144c0 61.9 50.1 112 112 112zm105.2 194.5c-2.3-1.2-4.6-2.6-6.8-3.9-8.2 4.8-15.3 9.8-27.5 9.8-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-10.7-34.5 24.9-49.7 25.8-50.3-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-3.8-2.2-7-5-9.8-8.1-3.3.2-6.5.6-9.8.6-24.6 0-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h255.4c-3.7-6-6.2-12.8-6.2-20.3v-9.2zM173.1 274.6C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"] }; +var faUtensilSpoon = { prefix: 'fas', iconName: 'utensil-spoon', icon: [512, 512, [], "f2e5", "M480.1 31.9c-55-55.1-164.9-34.5-227.8 28.5-49.3 49.3-55.1 110-28.8 160.4L9 413.2c-11.6 10.5-12.1 28.5-1 39.5L59.3 504c11 11 29.1 10.5 39.5-1.1l192.4-214.4c50.4 26.3 111.1 20.5 160.4-28.8 63-62.9 83.6-172.8 28.5-227.8z"] }; +var faUtensils = { prefix: 'fas', iconName: 'utensils', icon: [416, 512, [], "f2e7", "M207.9 15.2c.8 4.7 16.1 94.5 16.1 128.8 0 52.3-27.8 89.6-68.9 104.6L168 486.7c.7 13.7-10.2 25.3-24 25.3H80c-13.7 0-24.7-11.5-24-25.3l12.9-238.1C27.7 233.6 0 196.2 0 144 0 109.6 15.3 19.9 16.1 15.2 19.3-5.1 61.4-5.4 64 16.3v141.2c1.3 3.4 15.1 3.2 16 0 1.4-25.3 7.9-139.2 8-141.8 3.3-20.8 44.7-20.8 47.9 0 .2 2.7 6.6 116.5 8 141.8.9 3.2 14.8 3.4 16 0V16.3c2.6-21.6 44.8-21.4 48-1.1zm119.2 285.7l-15 185.1c-1.2 14 9.9 26 23.9 26h56c13.3 0 24-10.7 24-24V24c0-13.2-10.7-24-24-24-82.5 0-221.4 178.5-64.9 300.9z"] }; +var faVenus = { prefix: 'fas', iconName: 'venus', icon: [288, 512, [], "f221", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z"] }; +var faVenusDouble = { prefix: 'fas', iconName: 'venus-double', icon: [512, 512, [], "f226", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80zm336 140.4V368h36c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-36v36c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-36h-36c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h36v-51.6c-21.2-4.8-40.6-14.3-57.2-27.3 14-16.7 25-36 32.1-57.1 14.5 14.8 34.7 24 57.1 24 44.1 0 80-35.9 80-80s-35.9-80-80-80c-22.3 0-42.6 9.2-57.1 24-7.1-21.1-18-40.4-32.1-57.1C303.4 43.6 334.3 32 368 32c79.5 0 144 64.5 144 144 0 68.5-47.9 125.9-112 140.4z"] }; +var faVenusMars = { prefix: 'fas', iconName: 'venus-mars', icon: [576, 512, [], "f228", "M564 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C422.5 72.1 396.2 64 368 64c-33.7 0-64.6 11.6-89.2 30.9 14 16.7 25 36 32.1 57.1 14.5-14.8 34.7-24 57.1-24 44.1 0 80 35.9 80 80s-35.9 80-80 80c-22.3 0-42.6-9.2-57.1-24-7.1 21.1-18 40.4-32.1 57.1 24.5 19.4 55.5 30.9 89.2 30.9 79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 64C64.5 64 0 128.5 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.6 112-71.9 112-140.4 0-79.5-64.5-144-144-144zm0 224c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faVial = { prefix: 'fas', iconName: 'vial', icon: [480, 512, [], "f492", "M477.7 186.1L309.5 18.3c-3.1-3.1-8.2-3.1-11.3 0l-34 33.9c-3.1 3.1-3.1 8.2 0 11.3l11.2 11.1L33 316.5c-38.8 38.7-45.1 102-9.4 143.5 20.6 24 49.5 36 78.4 35.9 26.4 0 52.8-10 72.9-30.1l246.3-245.7 11.2 11.1c3.1 3.1 8.2 3.1 11.3 0l34-33.9c3.1-3 3.1-8.1 0-11.2zM318 256H161l148-147.7 78.5 78.3L318 256z"] }; +var faVials = { prefix: 'fas', iconName: 'vials', icon: [640, 512, [], "f493", "M72 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H72c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64zm480 384H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM360 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64z"] }; +var faVideo = { prefix: 'fas', iconName: 'video', icon: [576, 512, [], "f03d", "M336.2 64H47.8C21.4 64 0 85.4 0 111.8v288.4C0 426.6 21.4 448 47.8 448h288.4c26.4 0 47.8-21.4 47.8-47.8V111.8c0-26.4-21.4-47.8-47.8-47.8zm189.4 37.7L416 177.3v157.4l109.6 75.5c21.2 14.6 50.4-.3 50.4-25.8V127.5c0-25.4-29.1-40.4-50.4-25.8z"] }; +var faVideoSlash = { prefix: 'fas', iconName: 'video-slash', icon: [640, 512, [], "f4e2", "M633.8 458.1l-55-42.5c15.4-1.4 29.2-13.7 29.2-31.1v-257c0-25.5-29.1-40.4-50.4-25.8L448 177.3v137.2l-32-24.7v-178c0-26.4-21.4-47.8-47.8-47.8H123.9L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4L42.7 82 416 370.6l178.5 138c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.5-6.9 4.2-17-2.8-22.4zM32 400.2c0 26.4 21.4 47.8 47.8 47.8h288.4c11.2 0 21.4-4 29.6-10.5L32 154.7v245.5z"] }; +var faVolleyballBall = { prefix: 'fas', iconName: 'volleyball-ball', icon: [495, 512, [], "f45f", "M223.3 243.4c-.9-37-8.6-72.8-22.7-105.7-90.8 42.4-157.5 122.4-180.3 216.8 13.4 30.8 32.9 58.3 56.9 81.1 22.7-79.2 74.2-147.8 146.1-192.2zM186.4 109c-15-26.4-34.5-50.1-57.4-70.7C38 88.1-15.8 191.2 4 300.5c33.4-83.1 98.4-152 182.4-191.5zM374 274.1c8.6-99.8-27.3-197.5-97.5-264.4-14.7-1.7-51.6-5.5-98.9 8.5 57.3 59.3 91 138.2 93.5 222.7 32.5 17.7 67.3 29 102.9 33.2zm-124.7 9.5c-31.6 19.3-58.7 43.9-80.2 72.6 82 57.3 184.5 75.1 277.5 47.8 19.7-26.4 34.2-56.8 42.2-89.9-26.6 6.6-53.7 10.4-80.9 10.4-54.6-.1-108.9-14.1-158.6-40.9zM151 383.3c-15.2 26-25.7 54.4-32.1 84.2 37.6 23 81.7 36.5 129.1 36.5 61 0 116.7-22.1 159.9-58.6C295 461.5 204.6 420.6 151 383.3zM331.3 22.7c55.3 70.4 82.5 161.2 74.6 253.6 30.3.2 60.5-4.8 89.7-14.2 0-2 .3-4 .3-6 0-107.8-68.7-199.1-164.6-233.4z"] }; +var faVolumeDown = { prefix: 'fas', iconName: 'volume-down', icon: [384, 512, [], "f027", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zM384 256c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z"] }; +var faVolumeOff = { prefix: 'fas', iconName: 'volume-off', icon: [256, 512, [], "f026", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971z"] }; +var faVolumeUp = { prefix: 'fas', iconName: 'volume-up', icon: [576, 512, [], "f028", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zm182.056-77.876C422.982.92 403.283 5.668 394.061 20.745c-9.221 15.077-4.473 34.774 10.604 43.995C468.967 104.063 512 174.983 512 256c0 73.431-36.077 142.292-96.507 184.206-14.522 10.072-18.129 30.01-8.057 44.532 10.076 14.528 30.016 18.126 44.531 8.057C529.633 438.927 576 350.406 576 256c0-103.244-54.579-194.877-137.944-245.859zM480 256c0-68.547-36.15-129.777-91.957-163.901-15.076-9.22-34.774-4.471-43.994 10.607-9.22 15.078-4.471 34.774 10.607 43.994C393.067 170.188 416 211.048 416 256c0 41.964-20.62 81.319-55.158 105.276-14.521 10.073-18.128 30.01-8.056 44.532 6.216 8.96 16.185 13.765 26.322 13.765a31.862 31.862 0 0 0 18.21-5.709C449.091 377.953 480 318.938 480 256zm-96 0c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z"] }; +var faWalking = { prefix: 'fas', iconName: 'walking', icon: [320, 512, [], "f554", "M208 96c26.5 0 48-21.5 48-48S234.5 0 208 0s-48 21.5-48 48 21.5 48 48 48zm94.5 149.1l-23.3-11.8-9.7-29.4c-14.7-44.6-55.7-75.8-102.2-75.9-36-.1-55.9 10.1-93.3 25.2-21.6 8.7-39.3 25.2-49.7 46.2L17.6 213c-7.8 15.8-1.5 35 14.2 42.9 15.6 7.9 34.6 1.5 42.5-14.3L81 228c3.5-7 9.3-12.5 16.5-15.4l26.8-10.8-15.2 60.7c-5.2 20.8.4 42.9 14.9 58.8l59.9 65.4c7.2 7.9 12.3 17.4 14.9 27.7l18.3 73.3c4.3 17.1 21.7 27.6 38.8 23.3 17.1-4.3 27.6-21.7 23.3-38.8l-22.2-89c-2.6-10.3-7.7-19.9-14.9-27.7l-45.5-49.7 17.2-68.7 5.5 16.5c5.3 16.1 16.7 29.4 31.7 37l23.3 11.8c15.6 7.9 34.6 1.5 42.5-14.3 7.7-15.7 1.4-35.1-14.3-43zM73.6 385.8c-3.2 8.1-8 15.4-14.2 21.5l-50 50.1c-12.5 12.5-12.5 32.8 0 45.3s32.7 12.5 45.2 0l59.4-59.4c6.1-6.1 10.9-13.4 14.2-21.5l13.5-33.8c-55.3-60.3-38.7-41.8-47.4-53.7l-20.7 51.5z"] }; +var faWallet = { prefix: 'fas', iconName: 'wallet', icon: [512, 512, [], "f555", "M461.2 128H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h384c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h397.2c28.02 0 50.8-21.53 50.8-48V176c0-26.47-22.78-48-50.8-48zM416 336c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faWarehouse = { prefix: 'fas', iconName: 'warehouse', icon: [640, 512, [], "f494", "M504 352H136.4c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0 96H136.1c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0-192H136.6c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm106.5-139L338.4 3.7a48.15 48.15 0 0 0-36.9 0L29.5 117C11.7 124.5 0 141.9 0 161.3V504c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V256c0-17.6 14.6-32 32.6-32h382.8c18 0 32.6 14.4 32.6 32v248c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V161.3c0-19.4-11.7-36.8-29.5-44.3z"] }; +var faWeight = { prefix: 'fas', iconName: 'weight', icon: [512, 512, [], "f496", "M448 64h-26c16.4 28.3 26 61 26 96 0 105.9-86.1 192-192 192S64 265.9 64 160c0-35 9.6-67.7 26-96H64C28.7 64 0 92.7 0 128v320c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64zM256 320c88.4 0 160-71.6 160-160S344.4 0 256 0 96 71.6 96 160s71.6 160 160 160zm-.3-151.9l33.6-78.4c3.5-8.2 12.9-11.9 21-8.4s11.9 12.9 8.4 21L285 180.9c6.7 7.1 10.9 16.6 10.9 27.1 0 22.1-17.9 40-40 40s-40-17.9-40-40c.1-22 17.9-39.8 39.8-39.9z"] }; +var faWheelchair = { prefix: 'fas', iconName: 'wheelchair', icon: [512, 512, [], "f193", "M496.101 385.669l14.227 28.663c3.929 7.915.697 17.516-7.218 21.445l-65.465 32.886c-16.049 7.967-35.556 1.194-43.189-15.055L331.679 320H192c-15.925 0-29.426-11.71-31.679-27.475C126.433 55.308 128.38 70.044 128 64c0-36.358 30.318-65.635 67.052-63.929 33.271 1.545 60.048 28.905 60.925 62.201.868 32.933-23.152 60.423-54.608 65.039l4.67 32.69H336c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H215.182l4.572 32H352a32 32 0 0 1 28.962 18.392L438.477 396.8l36.178-18.349c7.915-3.929 17.517-.697 21.446 7.218zM311.358 352h-24.506c-7.788 54.204-54.528 96-110.852 96-61.757 0-112-50.243-112-112 0-41.505 22.694-77.809 56.324-97.156-3.712-25.965-6.844-47.86-9.488-66.333C45.956 198.464 0 261.963 0 336c0 97.047 78.953 176 176 176 71.87 0 133.806-43.308 161.11-105.192L311.358 352z"] }; +var faWifi = { prefix: 'fas', iconName: 'wifi', icon: [640, 512, [], "f1eb", "M384 416c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm136.659-124.443c6.465-6.465 6.245-17.065-.564-23.167-113.793-101.985-286.526-101.869-400.19 0-6.809 6.102-7.029 16.702-.564 23.167l34.006 34.006c5.927 5.927 15.464 6.32 21.769.796 82.88-72.609 207.074-72.447 289.768 0 6.305 5.524 15.842 5.132 21.769-.796l34.006-34.006zm112.11-113.718c6.385-6.385 6.254-16.816-.35-22.973-175.768-163.86-449.134-163.8-624.837 0-6.604 6.157-6.735 16.589-.35 22.973l33.966 33.966c6.095 6.095 15.891 6.231 22.224.383 144.763-133.668 368.356-133.702 513.156 0 6.333 5.848 16.129 5.712 22.224-.383l33.967-33.966z"] }; +var faWindowClose = { prefix: 'fas', iconName: 'window-close', icon: [512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-83.6 290.5c4.8 4.8 4.8 12.6 0 17.4l-40.5 40.5c-4.8 4.8-12.6 4.8-17.4 0L256 313.3l-66.5 67.1c-4.8 4.8-12.6 4.8-17.4 0l-40.5-40.5c-4.8-4.8-4.8-12.6 0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6 0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1 66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8 4.8 12.6 0 17.4L313.3 256l67.1 66.5z"] }; +var faWindowMaximize = { prefix: 'fas', iconName: 'window-maximize', icon: [512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16 160H64v-84c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12v84z"] }; +var faWindowMinimize = { prefix: 'fas', iconName: 'window-minimize', icon: [512, 512, [], "f2d1", "M464 352H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48z"] }; +var faWindowRestore = { prefix: 'fas', iconName: 'window-restore', icon: [512, 512, [], "f2d2", "M512 48v288c0 26.5-21.5 48-48 48h-48V176c0-44.1-35.9-80-80-80H128V48c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zM384 176v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zm-68 28c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v52h252v-52z"] }; +var faWineGlass = { prefix: 'fas', iconName: 'wine-glass', icon: [288, 512, [], "f4e3", "M287.4 192.7l-16-178.1C270.7 6.3 263.9 0 255.7 0H32.3c-8.2 0-15 6.3-15.7 14.6L.6 192.7c-7.2 80 50.7 148.9 127.4 157.6V480H74.1c-24.5 0-33.2 32-20 32h179.8c13.1 0 4.5-32-20-32H160V350.3c76.7-8.8 134.6-77.6 127.4-157.6zM226.2 48l7.2 80H54.6l7.2-80h164.4z"] }; +var faWonSign = { prefix: 'fas', iconName: 'won-sign', icon: [576, 512, [], "f159", "M564 192c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-48.028l18.572-80.61c1.732-7.518-3.978-14.694-11.693-14.694h-46.107a11.998 11.998 0 0 0-11.736 9.5L450.73 128H340.839l-19.725-85.987a12 12 0 0 0-11.696-9.317H265.43a12 12 0 0 0-11.687 9.277L233.696 128H124.975L107.5 42.299a12 12 0 0 0-11.758-9.602H53.628c-7.686 0-13.39 7.124-11.709 14.624L60 128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h62.342l7.171 32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h83.856l40.927 182.624A12 12 0 0 0 148.492 480h56.767c5.583 0 10.428-3.85 11.689-9.288L259.335 288h55.086l42.386 182.712A12 12 0 0 0 368.496 480h56.826a12 12 0 0 0 11.694-9.306L479.108 288H564c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-70.146l7.373-32H564zm-425.976 0h80.757l-7.457 32h-66.776l-6.524-32zm45.796 150.029c-6.194 25.831-6.758 47.25-7.321 47.25h-1.126s-1.689-22.05-6.758-47.25L157.599 288h38.812l-12.591 54.029zM274.182 224l1.996-8.602c1.856-7.962 3.457-15.968 4.803-23.398h11.794c1.347 7.43 2.947 15.436 4.803 23.398l1.996 8.602h-25.392zm130.959 118.029c-5.068 25.2-6.758 47.25-6.758 47.25h-1.126c-.563 0-1.126-21.42-7.321-47.25L377.542 288h39.107l-11.508 54.029zM430.281 224h-67.42l-7.34-32h81.577l-6.817 32z"] }; +var faWrench = { prefix: 'fas', iconName: 'wrench', icon: [512, 512, [], "f0ad", "M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"] }; +var faXRay = { prefix: 'fas', iconName: 'x-ray', icon: [640, 512, [], "f497", "M240 384c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm160 32c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zM624 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zm0 448h-48V96H64v352H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM480 248c0 4.4-3.6 8-8 8H336v32h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48v-16h-64v16c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48h64v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-32H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h136v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-24c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v24h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h136c4.4 0 8 3.6 8 8v16z"] }; +var faYenSign = { prefix: 'fas', iconName: 'yen-sign', icon: [384, 512, [], "f157", "M351.208 32h-65.277a12 12 0 0 0-10.778 6.724l-55.39 113.163c-14.513 34.704-27.133 71.932-27.133 71.932h-1.262s-12.62-37.228-27.133-71.932l-55.39-113.163A11.997 11.997 0 0 0 98.068 32H32.792c-9.057 0-14.85 9.65-10.59 17.643L102.322 200H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h88.162L152 293.228V320H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h108v92c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-92h108c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12H232v-26.772L251.838 256H340c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12h-58.322l80.12-150.357C366.058 41.65 360.266 32 351.208 32z"] }; +var icons$1 = { + faAddressBook: faAddressBook, + faAddressCard: faAddressCard, + faAdjust: faAdjust, + faAlignCenter: faAlignCenter, + faAlignJustify: faAlignJustify, + faAlignLeft: faAlignLeft, + faAlignRight: faAlignRight, + faAllergies: faAllergies, + faAmbulance: faAmbulance, + faAmericanSignLanguageInterpreting: faAmericanSignLanguageInterpreting, + faAnchor: faAnchor, + faAngleDoubleDown: faAngleDoubleDown, + faAngleDoubleLeft: faAngleDoubleLeft, + faAngleDoubleRight: faAngleDoubleRight, + faAngleDoubleUp: faAngleDoubleUp, + faAngleDown: faAngleDown, + faAngleLeft: faAngleLeft, + faAngleRight: faAngleRight, + faAngleUp: faAngleUp, + faArchive: faArchive, + faArrowAltCircleDown: faArrowAltCircleDown, + faArrowAltCircleLeft: faArrowAltCircleLeft, + faArrowAltCircleRight: faArrowAltCircleRight, + faArrowAltCircleUp: faArrowAltCircleUp, + faArrowCircleDown: faArrowCircleDown, + faArrowCircleLeft: faArrowCircleLeft, + faArrowCircleRight: faArrowCircleRight, + faArrowCircleUp: faArrowCircleUp, + faArrowDown: faArrowDown, + faArrowLeft: faArrowLeft, + faArrowRight: faArrowRight, + faArrowUp: faArrowUp, + faArrowsAlt: faArrowsAlt, + faArrowsAltH: faArrowsAltH, + faArrowsAltV: faArrowsAltV, + faAssistiveListeningSystems: faAssistiveListeningSystems, + faAsterisk: faAsterisk, + faAt: faAt, + faAudioDescription: faAudioDescription, + faBackward: faBackward, + faBalanceScale: faBalanceScale, + faBan: faBan, + faBandAid: faBandAid, + faBarcode: faBarcode, + faBars: faBars, + faBaseballBall: faBaseballBall, + faBasketballBall: faBasketballBall, + faBath: faBath, + faBatteryEmpty: faBatteryEmpty, + faBatteryFull: faBatteryFull, + faBatteryHalf: faBatteryHalf, + faBatteryQuarter: faBatteryQuarter, + faBatteryThreeQuarters: faBatteryThreeQuarters, + faBed: faBed, + faBeer: faBeer, + faBell: faBell, + faBellSlash: faBellSlash, + faBicycle: faBicycle, + faBinoculars: faBinoculars, + faBirthdayCake: faBirthdayCake, + faBlender: faBlender, + faBlind: faBlind, + faBold: faBold, + faBolt: faBolt, + faBomb: faBomb, + faBook: faBook, + faBookOpen: faBookOpen, + faBookmark: faBookmark, + faBowlingBall: faBowlingBall, + faBox: faBox, + faBoxOpen: faBoxOpen, + faBoxes: faBoxes, + faBraille: faBraille, + faBriefcase: faBriefcase, + faBriefcaseMedical: faBriefcaseMedical, + faBroadcastTower: faBroadcastTower, + faBroom: faBroom, + faBug: faBug, + faBuilding: faBuilding, + faBullhorn: faBullhorn, + faBullseye: faBullseye, + faBurn: faBurn, + faBus: faBus, + faCalculator: faCalculator, + faCalendar: faCalendar, + faCalendarAlt: faCalendarAlt, + faCalendarCheck: faCalendarCheck, + faCalendarMinus: faCalendarMinus, + faCalendarPlus: faCalendarPlus, + faCalendarTimes: faCalendarTimes, + faCamera: faCamera, + faCameraRetro: faCameraRetro, + faCapsules: faCapsules, + faCar: faCar, + faCaretDown: faCaretDown, + faCaretLeft: faCaretLeft, + faCaretRight: faCaretRight, + faCaretSquareDown: faCaretSquareDown, + faCaretSquareLeft: faCaretSquareLeft, + faCaretSquareRight: faCaretSquareRight, + faCaretSquareUp: faCaretSquareUp, + faCaretUp: faCaretUp, + faCartArrowDown: faCartArrowDown, + faCartPlus: faCartPlus, + faCertificate: faCertificate, + faChalkboard: faChalkboard, + faChalkboardTeacher: faChalkboardTeacher, + faChartArea: faChartArea, + faChartBar: faChartBar, + faChartLine: faChartLine, + faChartPie: faChartPie, + faCheck: faCheck, + faCheckCircle: faCheckCircle, + faCheckSquare: faCheckSquare, + faChess: faChess, + faChessBishop: faChessBishop, + faChessBoard: faChessBoard, + faChessKing: faChessKing, + faChessKnight: faChessKnight, + faChessPawn: faChessPawn, + faChessQueen: faChessQueen, + faChessRook: faChessRook, + faChevronCircleDown: faChevronCircleDown, + faChevronCircleLeft: faChevronCircleLeft, + faChevronCircleRight: faChevronCircleRight, + faChevronCircleUp: faChevronCircleUp, + faChevronDown: faChevronDown, + faChevronLeft: faChevronLeft, + faChevronRight: faChevronRight, + faChevronUp: faChevronUp, + faChild: faChild, + faChurch: faChurch, + faCircle: faCircle, + faCircleNotch: faCircleNotch, + faClipboard: faClipboard, + faClipboardCheck: faClipboardCheck, + faClipboardList: faClipboardList, + faClock: faClock, + faClone: faClone, + faClosedCaptioning: faClosedCaptioning, + faCloud: faCloud, + faCloudDownloadAlt: faCloudDownloadAlt, + faCloudUploadAlt: faCloudUploadAlt, + faCode: faCode, + faCodeBranch: faCodeBranch, + faCoffee: faCoffee, + faCog: faCog, + faCogs: faCogs, + faCoins: faCoins, + faColumns: faColumns, + faComment: faComment, + faCommentAlt: faCommentAlt, + faCommentDots: faCommentDots, + faCommentSlash: faCommentSlash, + faComments: faComments, + faCompactDisc: faCompactDisc, + faCompass: faCompass, + faCompress: faCompress, + faCopy: faCopy, + faCopyright: faCopyright, + faCouch: faCouch, + faCreditCard: faCreditCard, + faCrop: faCrop, + faCrosshairs: faCrosshairs, + faCrow: faCrow, + faCrown: faCrown, + faCube: faCube, + faCubes: faCubes, + faCut: faCut, + faDatabase: faDatabase, + faDeaf: faDeaf, + faDesktop: faDesktop, + faDiagnoses: faDiagnoses, + faDice: faDice, + faDiceFive: faDiceFive, + faDiceFour: faDiceFour, + faDiceOne: faDiceOne, + faDiceSix: faDiceSix, + faDiceThree: faDiceThree, + faDiceTwo: faDiceTwo, + faDivide: faDivide, + faDna: faDna, + faDollarSign: faDollarSign, + faDolly: faDolly, + faDollyFlatbed: faDollyFlatbed, + faDonate: faDonate, + faDoorClosed: faDoorClosed, + faDoorOpen: faDoorOpen, + faDotCircle: faDotCircle, + faDove: faDove, + faDownload: faDownload, + faDumbbell: faDumbbell, + faEdit: faEdit, + faEject: faEject, + faEllipsisH: faEllipsisH, + faEllipsisV: faEllipsisV, + faEnvelope: faEnvelope, + faEnvelopeOpen: faEnvelopeOpen, + faEnvelopeSquare: faEnvelopeSquare, + faEquals: faEquals, + faEraser: faEraser, + faEuroSign: faEuroSign, + faExchangeAlt: faExchangeAlt, + faExclamation: faExclamation, + faExclamationCircle: faExclamationCircle, + faExclamationTriangle: faExclamationTriangle, + faExpand: faExpand, + faExpandArrowsAlt: faExpandArrowsAlt, + faExternalLinkAlt: faExternalLinkAlt, + faExternalLinkSquareAlt: faExternalLinkSquareAlt, + faEye: faEye, + faEyeDropper: faEyeDropper, + faEyeSlash: faEyeSlash, + faFastBackward: faFastBackward, + faFastForward: faFastForward, + faFax: faFax, + faFeather: faFeather, + faFemale: faFemale, + faFighterJet: faFighterJet, + faFile: faFile, + faFileAlt: faFileAlt, + faFileArchive: faFileArchive, + faFileAudio: faFileAudio, + faFileCode: faFileCode, + faFileExcel: faFileExcel, + faFileImage: faFileImage, + faFileMedical: faFileMedical, + faFileMedicalAlt: faFileMedicalAlt, + faFilePdf: faFilePdf, + faFilePowerpoint: faFilePowerpoint, + faFileVideo: faFileVideo, + faFileWord: faFileWord, + faFilm: faFilm, + faFilter: faFilter, + faFire: faFire, + faFireExtinguisher: faFireExtinguisher, + faFirstAid: faFirstAid, + faFlag: faFlag, + faFlagCheckered: faFlagCheckered, + faFlask: faFlask, + faFolder: faFolder, + faFolderOpen: faFolderOpen, + faFont: faFont, + faFontAwesomeLogoFull: faFontAwesomeLogoFull, + faFootballBall: faFootballBall, + faForward: faForward, + faFrog: faFrog, + faFrown: faFrown, + faFutbol: faFutbol, + faGamepad: faGamepad, + faGasPump: faGasPump, + faGavel: faGavel, + faGem: faGem, + faGenderless: faGenderless, + faGift: faGift, + faGlassMartini: faGlassMartini, + faGlasses: faGlasses, + faGlobe: faGlobe, + faGolfBall: faGolfBall, + faGraduationCap: faGraduationCap, + faGreaterThan: faGreaterThan, + faGreaterThanEqual: faGreaterThanEqual, + faHSquare: faHSquare, + faHandHolding: faHandHolding, + faHandHoldingHeart: faHandHoldingHeart, + faHandHoldingUsd: faHandHoldingUsd, + faHandLizard: faHandLizard, + faHandPaper: faHandPaper, + faHandPeace: faHandPeace, + faHandPointDown: faHandPointDown, + faHandPointLeft: faHandPointLeft, + faHandPointRight: faHandPointRight, + faHandPointUp: faHandPointUp, + faHandPointer: faHandPointer, + faHandRock: faHandRock, + faHandScissors: faHandScissors, + faHandSpock: faHandSpock, + faHands: faHands, + faHandsHelping: faHandsHelping, + faHandshake: faHandshake, + faHashtag: faHashtag, + faHdd: faHdd, + faHeading: faHeading, + faHeadphones: faHeadphones, + faHeart: faHeart, + faHeartbeat: faHeartbeat, + faHelicopter: faHelicopter, + faHistory: faHistory, + faHockeyPuck: faHockeyPuck, + faHome: faHome, + faHospital: faHospital, + faHospitalAlt: faHospitalAlt, + faHospitalSymbol: faHospitalSymbol, + faHourglass: faHourglass, + faHourglassEnd: faHourglassEnd, + faHourglassHalf: faHourglassHalf, + faHourglassStart: faHourglassStart, + faICursor: faICursor, + faIdBadge: faIdBadge, + faIdCard: faIdCard, + faIdCardAlt: faIdCardAlt, + faImage: faImage, + faImages: faImages, + faInbox: faInbox, + faIndent: faIndent, + faIndustry: faIndustry, + faInfinity: faInfinity, + faInfo: faInfo, + faInfoCircle: faInfoCircle, + faItalic: faItalic, + faKey: faKey, + faKeyboard: faKeyboard, + faKiwiBird: faKiwiBird, + faLanguage: faLanguage, + faLaptop: faLaptop, + faLeaf: faLeaf, + faLemon: faLemon, + faLessThan: faLessThan, + faLessThanEqual: faLessThanEqual, + faLevelDownAlt: faLevelDownAlt, + faLevelUpAlt: faLevelUpAlt, + faLifeRing: faLifeRing, + faLightbulb: faLightbulb, + faLink: faLink, + faLiraSign: faLiraSign, + faList: faList, + faListAlt: faListAlt, + faListOl: faListOl, + faListUl: faListUl, + faLocationArrow: faLocationArrow, + faLock: faLock, + faLockOpen: faLockOpen, + faLongArrowAltDown: faLongArrowAltDown, + faLongArrowAltLeft: faLongArrowAltLeft, + faLongArrowAltRight: faLongArrowAltRight, + faLongArrowAltUp: faLongArrowAltUp, + faLowVision: faLowVision, + faMagic: faMagic, + faMagnet: faMagnet, + faMale: faMale, + faMap: faMap, + faMapMarker: faMapMarker, + faMapMarkerAlt: faMapMarkerAlt, + faMapPin: faMapPin, + faMapSigns: faMapSigns, + faMars: faMars, + faMarsDouble: faMarsDouble, + faMarsStroke: faMarsStroke, + faMarsStrokeH: faMarsStrokeH, + faMarsStrokeV: faMarsStrokeV, + faMedkit: faMedkit, + faMeh: faMeh, + faMemory: faMemory, + faMercury: faMercury, + faMicrochip: faMicrochip, + faMicrophone: faMicrophone, + faMicrophoneAlt: faMicrophoneAlt, + faMicrophoneAltSlash: faMicrophoneAltSlash, + faMicrophoneSlash: faMicrophoneSlash, + faMinus: faMinus, + faMinusCircle: faMinusCircle, + faMinusSquare: faMinusSquare, + faMobile: faMobile, + faMobileAlt: faMobileAlt, + faMoneyBill: faMoneyBill, + faMoneyBillAlt: faMoneyBillAlt, + faMoneyBillWave: faMoneyBillWave, + faMoneyBillWaveAlt: faMoneyBillWaveAlt, + faMoneyCheck: faMoneyCheck, + faMoneyCheckAlt: faMoneyCheckAlt, + faMoon: faMoon, + faMotorcycle: faMotorcycle, + faMousePointer: faMousePointer, + faMusic: faMusic, + faNeuter: faNeuter, + faNewspaper: faNewspaper, + faNotEqual: faNotEqual, + faNotesMedical: faNotesMedical, + faObjectGroup: faObjectGroup, + faObjectUngroup: faObjectUngroup, + faOutdent: faOutdent, + faPaintBrush: faPaintBrush, + faPalette: faPalette, + faPallet: faPallet, + faPaperPlane: faPaperPlane, + faPaperclip: faPaperclip, + faParachuteBox: faParachuteBox, + faParagraph: faParagraph, + faParking: faParking, + faPaste: faPaste, + faPause: faPause, + faPauseCircle: faPauseCircle, + faPaw: faPaw, + faPenSquare: faPenSquare, + faPencilAlt: faPencilAlt, + faPeopleCarry: faPeopleCarry, + faPercent: faPercent, + faPercentage: faPercentage, + faPhone: faPhone, + faPhoneSlash: faPhoneSlash, + faPhoneSquare: faPhoneSquare, + faPhoneVolume: faPhoneVolume, + faPiggyBank: faPiggyBank, + faPills: faPills, + faPlane: faPlane, + faPlay: faPlay, + faPlayCircle: faPlayCircle, + faPlug: faPlug, + faPlus: faPlus, + faPlusCircle: faPlusCircle, + faPlusSquare: faPlusSquare, + faPodcast: faPodcast, + faPoo: faPoo, + faPortrait: faPortrait, + faPoundSign: faPoundSign, + faPowerOff: faPowerOff, + faPrescriptionBottle: faPrescriptionBottle, + faPrescriptionBottleAlt: faPrescriptionBottleAlt, + faPrint: faPrint, + faProcedures: faProcedures, + faProjectDiagram: faProjectDiagram, + faPuzzlePiece: faPuzzlePiece, + faQrcode: faQrcode, + faQuestion: faQuestion, + faQuestionCircle: faQuestionCircle, + faQuidditch: faQuidditch, + faQuoteLeft: faQuoteLeft, + faQuoteRight: faQuoteRight, + faRandom: faRandom, + faReceipt: faReceipt, + faRecycle: faRecycle, + faRedo: faRedo, + faRedoAlt: faRedoAlt, + faRegistered: faRegistered, + faReply: faReply, + faReplyAll: faReplyAll, + faRetweet: faRetweet, + faRibbon: faRibbon, + faRoad: faRoad, + faRobot: faRobot, + faRocket: faRocket, + faRss: faRss, + faRssSquare: faRssSquare, + faRubleSign: faRubleSign, + faRuler: faRuler, + faRulerCombined: faRulerCombined, + faRulerHorizontal: faRulerHorizontal, + faRulerVertical: faRulerVertical, + faRupeeSign: faRupeeSign, + faSave: faSave, + faSchool: faSchool, + faScrewdriver: faScrewdriver, + faSearch: faSearch, + faSearchMinus: faSearchMinus, + faSearchPlus: faSearchPlus, + faSeedling: faSeedling, + faServer: faServer, + faShare: faShare, + faShareAlt: faShareAlt, + faShareAltSquare: faShareAltSquare, + faShareSquare: faShareSquare, + faShekelSign: faShekelSign, + faShieldAlt: faShieldAlt, + faShip: faShip, + faShippingFast: faShippingFast, + faShoePrints: faShoePrints, + faShoppingBag: faShoppingBag, + faShoppingBasket: faShoppingBasket, + faShoppingCart: faShoppingCart, + faShower: faShower, + faSign: faSign, + faSignInAlt: faSignInAlt, + faSignLanguage: faSignLanguage, + faSignOutAlt: faSignOutAlt, + faSignal: faSignal, + faSitemap: faSitemap, + faSkull: faSkull, + faSlidersH: faSlidersH, + faSmile: faSmile, + faSmoking: faSmoking, + faSmokingBan: faSmokingBan, + faSnowflake: faSnowflake, + faSort: faSort, + faSortAlphaDown: faSortAlphaDown, + faSortAlphaUp: faSortAlphaUp, + faSortAmountDown: faSortAmountDown, + faSortAmountUp: faSortAmountUp, + faSortDown: faSortDown, + faSortNumericDown: faSortNumericDown, + faSortNumericUp: faSortNumericUp, + faSortUp: faSortUp, + faSpaceShuttle: faSpaceShuttle, + faSpinner: faSpinner, + faSquare: faSquare, + faSquareFull: faSquareFull, + faStar: faStar, + faStarHalf: faStarHalf, + faStepBackward: faStepBackward, + faStepForward: faStepForward, + faStethoscope: faStethoscope, + faStickyNote: faStickyNote, + faStop: faStop, + faStopCircle: faStopCircle, + faStopwatch: faStopwatch, + faStore: faStore, + faStoreAlt: faStoreAlt, + faStream: faStream, + faStreetView: faStreetView, + faStrikethrough: faStrikethrough, + faStroopwafel: faStroopwafel, + faSubscript: faSubscript, + faSubway: faSubway, + faSuitcase: faSuitcase, + faSun: faSun, + faSuperscript: faSuperscript, + faSync: faSync, + faSyncAlt: faSyncAlt, + faSyringe: faSyringe, + faTable: faTable, + faTableTennis: faTableTennis, + faTablet: faTablet, + faTabletAlt: faTabletAlt, + faTablets: faTablets, + faTachometerAlt: faTachometerAlt, + faTag: faTag, + faTags: faTags, + faTape: faTape, + faTasks: faTasks, + faTaxi: faTaxi, + faTerminal: faTerminal, + faTextHeight: faTextHeight, + faTextWidth: faTextWidth, + faTh: faTh, + faThLarge: faThLarge, + faThList: faThList, + faThermometer: faThermometer, + faThermometerEmpty: faThermometerEmpty, + faThermometerFull: faThermometerFull, + faThermometerHalf: faThermometerHalf, + faThermometerQuarter: faThermometerQuarter, + faThermometerThreeQuarters: faThermometerThreeQuarters, + faThumbsDown: faThumbsDown, + faThumbsUp: faThumbsUp, + faThumbtack: faThumbtack, + faTicketAlt: faTicketAlt, + faTimes: faTimes, + faTimesCircle: faTimesCircle, + faTint: faTint, + faToggleOff: faToggleOff, + faToggleOn: faToggleOn, + faToolbox: faToolbox, + faTrademark: faTrademark, + faTrain: faTrain, + faTransgender: faTransgender, + faTransgenderAlt: faTransgenderAlt, + faTrash: faTrash, + faTrashAlt: faTrashAlt, + faTree: faTree, + faTrophy: faTrophy, + faTruck: faTruck, + faTruckLoading: faTruckLoading, + faTruckMoving: faTruckMoving, + faTshirt: faTshirt, + faTty: faTty, + faTv: faTv, + faUmbrella: faUmbrella, + faUnderline: faUnderline, + faUndo: faUndo, + faUndoAlt: faUndoAlt, + faUniversalAccess: faUniversalAccess, + faUniversity: faUniversity, + faUnlink: faUnlink, + faUnlock: faUnlock, + faUnlockAlt: faUnlockAlt, + faUpload: faUpload, + faUser: faUser, + faUserAlt: faUserAlt, + faUserAltSlash: faUserAltSlash, + faUserAstronaut: faUserAstronaut, + faUserCheck: faUserCheck, + faUserCircle: faUserCircle, + faUserClock: faUserClock, + faUserCog: faUserCog, + faUserEdit: faUserEdit, + faUserFriends: faUserFriends, + faUserGraduate: faUserGraduate, + faUserLock: faUserLock, + faUserMd: faUserMd, + faUserMinus: faUserMinus, + faUserNinja: faUserNinja, + faUserPlus: faUserPlus, + faUserSecret: faUserSecret, + faUserShield: faUserShield, + faUserSlash: faUserSlash, + faUserTag: faUserTag, + faUserTie: faUserTie, + faUserTimes: faUserTimes, + faUsers: faUsers, + faUsersCog: faUsersCog, + faUtensilSpoon: faUtensilSpoon, + faUtensils: faUtensils, + faVenus: faVenus, + faVenusDouble: faVenusDouble, + faVenusMars: faVenusMars, + faVial: faVial, + faVials: faVials, + faVideo: faVideo, + faVideoSlash: faVideoSlash, + faVolleyballBall: faVolleyballBall, + faVolumeDown: faVolumeDown, + faVolumeOff: faVolumeOff, + faVolumeUp: faVolumeUp, + faWalking: faWalking, + faWallet: faWallet, + faWarehouse: faWarehouse, + faWeight: faWeight, + faWheelchair: faWheelchair, + faWifi: faWifi, + faWindowClose: faWindowClose, + faWindowMaximize: faWindowMaximize, + faWindowMinimize: faWindowMinimize, + faWindowRestore: faWindowRestore, + faWineGlass: faWineGlass, + faWonSign: faWonSign, + faWrench: faWrench, + faXRay: faXRay, + faYenSign: faYenSign +}; + +exports['default'] = icons$1; +exports.prefix = prefix; +exports.faAddressBook = faAddressBook; +exports.faAddressCard = faAddressCard; +exports.faAdjust = faAdjust; +exports.faAlignCenter = faAlignCenter; +exports.faAlignJustify = faAlignJustify; +exports.faAlignLeft = faAlignLeft; +exports.faAlignRight = faAlignRight; +exports.faAllergies = faAllergies; +exports.faAmbulance = faAmbulance; +exports.faAmericanSignLanguageInterpreting = faAmericanSignLanguageInterpreting; +exports.faAnchor = faAnchor; +exports.faAngleDoubleDown = faAngleDoubleDown; +exports.faAngleDoubleLeft = faAngleDoubleLeft; +exports.faAngleDoubleRight = faAngleDoubleRight; +exports.faAngleDoubleUp = faAngleDoubleUp; +exports.faAngleDown = faAngleDown; +exports.faAngleLeft = faAngleLeft; +exports.faAngleRight = faAngleRight; +exports.faAngleUp = faAngleUp; +exports.faArchive = faArchive; +exports.faArrowAltCircleDown = faArrowAltCircleDown; +exports.faArrowAltCircleLeft = faArrowAltCircleLeft; +exports.faArrowAltCircleRight = faArrowAltCircleRight; +exports.faArrowAltCircleUp = faArrowAltCircleUp; +exports.faArrowCircleDown = faArrowCircleDown; +exports.faArrowCircleLeft = faArrowCircleLeft; +exports.faArrowCircleRight = faArrowCircleRight; +exports.faArrowCircleUp = faArrowCircleUp; +exports.faArrowDown = faArrowDown; +exports.faArrowLeft = faArrowLeft; +exports.faArrowRight = faArrowRight; +exports.faArrowUp = faArrowUp; +exports.faArrowsAlt = faArrowsAlt; +exports.faArrowsAltH = faArrowsAltH; +exports.faArrowsAltV = faArrowsAltV; +exports.faAssistiveListeningSystems = faAssistiveListeningSystems; +exports.faAsterisk = faAsterisk; +exports.faAt = faAt; +exports.faAudioDescription = faAudioDescription; +exports.faBackward = faBackward; +exports.faBalanceScale = faBalanceScale; +exports.faBan = faBan; +exports.faBandAid = faBandAid; +exports.faBarcode = faBarcode; +exports.faBars = faBars; +exports.faBaseballBall = faBaseballBall; +exports.faBasketballBall = faBasketballBall; +exports.faBath = faBath; +exports.faBatteryEmpty = faBatteryEmpty; +exports.faBatteryFull = faBatteryFull; +exports.faBatteryHalf = faBatteryHalf; +exports.faBatteryQuarter = faBatteryQuarter; +exports.faBatteryThreeQuarters = faBatteryThreeQuarters; +exports.faBed = faBed; +exports.faBeer = faBeer; +exports.faBell = faBell; +exports.faBellSlash = faBellSlash; +exports.faBicycle = faBicycle; +exports.faBinoculars = faBinoculars; +exports.faBirthdayCake = faBirthdayCake; +exports.faBlender = faBlender; +exports.faBlind = faBlind; +exports.faBold = faBold; +exports.faBolt = faBolt; +exports.faBomb = faBomb; +exports.faBook = faBook; +exports.faBookOpen = faBookOpen; +exports.faBookmark = faBookmark; +exports.faBowlingBall = faBowlingBall; +exports.faBox = faBox; +exports.faBoxOpen = faBoxOpen; +exports.faBoxes = faBoxes; +exports.faBraille = faBraille; +exports.faBriefcase = faBriefcase; +exports.faBriefcaseMedical = faBriefcaseMedical; +exports.faBroadcastTower = faBroadcastTower; +exports.faBroom = faBroom; +exports.faBug = faBug; +exports.faBuilding = faBuilding; +exports.faBullhorn = faBullhorn; +exports.faBullseye = faBullseye; +exports.faBurn = faBurn; +exports.faBus = faBus; +exports.faCalculator = faCalculator; +exports.faCalendar = faCalendar; +exports.faCalendarAlt = faCalendarAlt; +exports.faCalendarCheck = faCalendarCheck; +exports.faCalendarMinus = faCalendarMinus; +exports.faCalendarPlus = faCalendarPlus; +exports.faCalendarTimes = faCalendarTimes; +exports.faCamera = faCamera; +exports.faCameraRetro = faCameraRetro; +exports.faCapsules = faCapsules; +exports.faCar = faCar; +exports.faCaretDown = faCaretDown; +exports.faCaretLeft = faCaretLeft; +exports.faCaretRight = faCaretRight; +exports.faCaretSquareDown = faCaretSquareDown; +exports.faCaretSquareLeft = faCaretSquareLeft; +exports.faCaretSquareRight = faCaretSquareRight; +exports.faCaretSquareUp = faCaretSquareUp; +exports.faCaretUp = faCaretUp; +exports.faCartArrowDown = faCartArrowDown; +exports.faCartPlus = faCartPlus; +exports.faCertificate = faCertificate; +exports.faChalkboard = faChalkboard; +exports.faChalkboardTeacher = faChalkboardTeacher; +exports.faChartArea = faChartArea; +exports.faChartBar = faChartBar; +exports.faChartLine = faChartLine; +exports.faChartPie = faChartPie; +exports.faCheck = faCheck; +exports.faCheckCircle = faCheckCircle; +exports.faCheckSquare = faCheckSquare; +exports.faChess = faChess; +exports.faChessBishop = faChessBishop; +exports.faChessBoard = faChessBoard; +exports.faChessKing = faChessKing; +exports.faChessKnight = faChessKnight; +exports.faChessPawn = faChessPawn; +exports.faChessQueen = faChessQueen; +exports.faChessRook = faChessRook; +exports.faChevronCircleDown = faChevronCircleDown; +exports.faChevronCircleLeft = faChevronCircleLeft; +exports.faChevronCircleRight = faChevronCircleRight; +exports.faChevronCircleUp = faChevronCircleUp; +exports.faChevronDown = faChevronDown; +exports.faChevronLeft = faChevronLeft; +exports.faChevronRight = faChevronRight; +exports.faChevronUp = faChevronUp; +exports.faChild = faChild; +exports.faChurch = faChurch; +exports.faCircle = faCircle; +exports.faCircleNotch = faCircleNotch; +exports.faClipboard = faClipboard; +exports.faClipboardCheck = faClipboardCheck; +exports.faClipboardList = faClipboardList; +exports.faClock = faClock; +exports.faClone = faClone; +exports.faClosedCaptioning = faClosedCaptioning; +exports.faCloud = faCloud; +exports.faCloudDownloadAlt = faCloudDownloadAlt; +exports.faCloudUploadAlt = faCloudUploadAlt; +exports.faCode = faCode; +exports.faCodeBranch = faCodeBranch; +exports.faCoffee = faCoffee; +exports.faCog = faCog; +exports.faCogs = faCogs; +exports.faCoins = faCoins; +exports.faColumns = faColumns; +exports.faComment = faComment; +exports.faCommentAlt = faCommentAlt; +exports.faCommentDots = faCommentDots; +exports.faCommentSlash = faCommentSlash; +exports.faComments = faComments; +exports.faCompactDisc = faCompactDisc; +exports.faCompass = faCompass; +exports.faCompress = faCompress; +exports.faCopy = faCopy; +exports.faCopyright = faCopyright; +exports.faCouch = faCouch; +exports.faCreditCard = faCreditCard; +exports.faCrop = faCrop; +exports.faCrosshairs = faCrosshairs; +exports.faCrow = faCrow; +exports.faCrown = faCrown; +exports.faCube = faCube; +exports.faCubes = faCubes; +exports.faCut = faCut; +exports.faDatabase = faDatabase; +exports.faDeaf = faDeaf; +exports.faDesktop = faDesktop; +exports.faDiagnoses = faDiagnoses; +exports.faDice = faDice; +exports.faDiceFive = faDiceFive; +exports.faDiceFour = faDiceFour; +exports.faDiceOne = faDiceOne; +exports.faDiceSix = faDiceSix; +exports.faDiceThree = faDiceThree; +exports.faDiceTwo = faDiceTwo; +exports.faDivide = faDivide; +exports.faDna = faDna; +exports.faDollarSign = faDollarSign; +exports.faDolly = faDolly; +exports.faDollyFlatbed = faDollyFlatbed; +exports.faDonate = faDonate; +exports.faDoorClosed = faDoorClosed; +exports.faDoorOpen = faDoorOpen; +exports.faDotCircle = faDotCircle; +exports.faDove = faDove; +exports.faDownload = faDownload; +exports.faDumbbell = faDumbbell; +exports.faEdit = faEdit; +exports.faEject = faEject; +exports.faEllipsisH = faEllipsisH; +exports.faEllipsisV = faEllipsisV; +exports.faEnvelope = faEnvelope; +exports.faEnvelopeOpen = faEnvelopeOpen; +exports.faEnvelopeSquare = faEnvelopeSquare; +exports.faEquals = faEquals; +exports.faEraser = faEraser; +exports.faEuroSign = faEuroSign; +exports.faExchangeAlt = faExchangeAlt; +exports.faExclamation = faExclamation; +exports.faExclamationCircle = faExclamationCircle; +exports.faExclamationTriangle = faExclamationTriangle; +exports.faExpand = faExpand; +exports.faExpandArrowsAlt = faExpandArrowsAlt; +exports.faExternalLinkAlt = faExternalLinkAlt; +exports.faExternalLinkSquareAlt = faExternalLinkSquareAlt; +exports.faEye = faEye; +exports.faEyeDropper = faEyeDropper; +exports.faEyeSlash = faEyeSlash; +exports.faFastBackward = faFastBackward; +exports.faFastForward = faFastForward; +exports.faFax = faFax; +exports.faFeather = faFeather; +exports.faFemale = faFemale; +exports.faFighterJet = faFighterJet; +exports.faFile = faFile; +exports.faFileAlt = faFileAlt; +exports.faFileArchive = faFileArchive; +exports.faFileAudio = faFileAudio; +exports.faFileCode = faFileCode; +exports.faFileExcel = faFileExcel; +exports.faFileImage = faFileImage; +exports.faFileMedical = faFileMedical; +exports.faFileMedicalAlt = faFileMedicalAlt; +exports.faFilePdf = faFilePdf; +exports.faFilePowerpoint = faFilePowerpoint; +exports.faFileVideo = faFileVideo; +exports.faFileWord = faFileWord; +exports.faFilm = faFilm; +exports.faFilter = faFilter; +exports.faFire = faFire; +exports.faFireExtinguisher = faFireExtinguisher; +exports.faFirstAid = faFirstAid; +exports.faFlag = faFlag; +exports.faFlagCheckered = faFlagCheckered; +exports.faFlask = faFlask; +exports.faFolder = faFolder; +exports.faFolderOpen = faFolderOpen; +exports.faFont = faFont; +exports.faFontAwesomeLogoFull = faFontAwesomeLogoFull; +exports.faFootballBall = faFootballBall; +exports.faForward = faForward; +exports.faFrog = faFrog; +exports.faFrown = faFrown; +exports.faFutbol = faFutbol; +exports.faGamepad = faGamepad; +exports.faGasPump = faGasPump; +exports.faGavel = faGavel; +exports.faGem = faGem; +exports.faGenderless = faGenderless; +exports.faGift = faGift; +exports.faGlassMartini = faGlassMartini; +exports.faGlasses = faGlasses; +exports.faGlobe = faGlobe; +exports.faGolfBall = faGolfBall; +exports.faGraduationCap = faGraduationCap; +exports.faGreaterThan = faGreaterThan; +exports.faGreaterThanEqual = faGreaterThanEqual; +exports.faHSquare = faHSquare; +exports.faHandHolding = faHandHolding; +exports.faHandHoldingHeart = faHandHoldingHeart; +exports.faHandHoldingUsd = faHandHoldingUsd; +exports.faHandLizard = faHandLizard; +exports.faHandPaper = faHandPaper; +exports.faHandPeace = faHandPeace; +exports.faHandPointDown = faHandPointDown; +exports.faHandPointLeft = faHandPointLeft; +exports.faHandPointRight = faHandPointRight; +exports.faHandPointUp = faHandPointUp; +exports.faHandPointer = faHandPointer; +exports.faHandRock = faHandRock; +exports.faHandScissors = faHandScissors; +exports.faHandSpock = faHandSpock; +exports.faHands = faHands; +exports.faHandsHelping = faHandsHelping; +exports.faHandshake = faHandshake; +exports.faHashtag = faHashtag; +exports.faHdd = faHdd; +exports.faHeading = faHeading; +exports.faHeadphones = faHeadphones; +exports.faHeart = faHeart; +exports.faHeartbeat = faHeartbeat; +exports.faHelicopter = faHelicopter; +exports.faHistory = faHistory; +exports.faHockeyPuck = faHockeyPuck; +exports.faHome = faHome; +exports.faHospital = faHospital; +exports.faHospitalAlt = faHospitalAlt; +exports.faHospitalSymbol = faHospitalSymbol; +exports.faHourglass = faHourglass; +exports.faHourglassEnd = faHourglassEnd; +exports.faHourglassHalf = faHourglassHalf; +exports.faHourglassStart = faHourglassStart; +exports.faICursor = faICursor; +exports.faIdBadge = faIdBadge; +exports.faIdCard = faIdCard; +exports.faIdCardAlt = faIdCardAlt; +exports.faImage = faImage; +exports.faImages = faImages; +exports.faInbox = faInbox; +exports.faIndent = faIndent; +exports.faIndustry = faIndustry; +exports.faInfinity = faInfinity; +exports.faInfo = faInfo; +exports.faInfoCircle = faInfoCircle; +exports.faItalic = faItalic; +exports.faKey = faKey; +exports.faKeyboard = faKeyboard; +exports.faKiwiBird = faKiwiBird; +exports.faLanguage = faLanguage; +exports.faLaptop = faLaptop; +exports.faLeaf = faLeaf; +exports.faLemon = faLemon; +exports.faLessThan = faLessThan; +exports.faLessThanEqual = faLessThanEqual; +exports.faLevelDownAlt = faLevelDownAlt; +exports.faLevelUpAlt = faLevelUpAlt; +exports.faLifeRing = faLifeRing; +exports.faLightbulb = faLightbulb; +exports.faLink = faLink; +exports.faLiraSign = faLiraSign; +exports.faList = faList; +exports.faListAlt = faListAlt; +exports.faListOl = faListOl; +exports.faListUl = faListUl; +exports.faLocationArrow = faLocationArrow; +exports.faLock = faLock; +exports.faLockOpen = faLockOpen; +exports.faLongArrowAltDown = faLongArrowAltDown; +exports.faLongArrowAltLeft = faLongArrowAltLeft; +exports.faLongArrowAltRight = faLongArrowAltRight; +exports.faLongArrowAltUp = faLongArrowAltUp; +exports.faLowVision = faLowVision; +exports.faMagic = faMagic; +exports.faMagnet = faMagnet; +exports.faMale = faMale; +exports.faMap = faMap; +exports.faMapMarker = faMapMarker; +exports.faMapMarkerAlt = faMapMarkerAlt; +exports.faMapPin = faMapPin; +exports.faMapSigns = faMapSigns; +exports.faMars = faMars; +exports.faMarsDouble = faMarsDouble; +exports.faMarsStroke = faMarsStroke; +exports.faMarsStrokeH = faMarsStrokeH; +exports.faMarsStrokeV = faMarsStrokeV; +exports.faMedkit = faMedkit; +exports.faMeh = faMeh; +exports.faMemory = faMemory; +exports.faMercury = faMercury; +exports.faMicrochip = faMicrochip; +exports.faMicrophone = faMicrophone; +exports.faMicrophoneAlt = faMicrophoneAlt; +exports.faMicrophoneAltSlash = faMicrophoneAltSlash; +exports.faMicrophoneSlash = faMicrophoneSlash; +exports.faMinus = faMinus; +exports.faMinusCircle = faMinusCircle; +exports.faMinusSquare = faMinusSquare; +exports.faMobile = faMobile; +exports.faMobileAlt = faMobileAlt; +exports.faMoneyBill = faMoneyBill; +exports.faMoneyBillAlt = faMoneyBillAlt; +exports.faMoneyBillWave = faMoneyBillWave; +exports.faMoneyBillWaveAlt = faMoneyBillWaveAlt; +exports.faMoneyCheck = faMoneyCheck; +exports.faMoneyCheckAlt = faMoneyCheckAlt; +exports.faMoon = faMoon; +exports.faMotorcycle = faMotorcycle; +exports.faMousePointer = faMousePointer; +exports.faMusic = faMusic; +exports.faNeuter = faNeuter; +exports.faNewspaper = faNewspaper; +exports.faNotEqual = faNotEqual; +exports.faNotesMedical = faNotesMedical; +exports.faObjectGroup = faObjectGroup; +exports.faObjectUngroup = faObjectUngroup; +exports.faOutdent = faOutdent; +exports.faPaintBrush = faPaintBrush; +exports.faPalette = faPalette; +exports.faPallet = faPallet; +exports.faPaperPlane = faPaperPlane; +exports.faPaperclip = faPaperclip; +exports.faParachuteBox = faParachuteBox; +exports.faParagraph = faParagraph; +exports.faParking = faParking; +exports.faPaste = faPaste; +exports.faPause = faPause; +exports.faPauseCircle = faPauseCircle; +exports.faPaw = faPaw; +exports.faPenSquare = faPenSquare; +exports.faPencilAlt = faPencilAlt; +exports.faPeopleCarry = faPeopleCarry; +exports.faPercent = faPercent; +exports.faPercentage = faPercentage; +exports.faPhone = faPhone; +exports.faPhoneSlash = faPhoneSlash; +exports.faPhoneSquare = faPhoneSquare; +exports.faPhoneVolume = faPhoneVolume; +exports.faPiggyBank = faPiggyBank; +exports.faPills = faPills; +exports.faPlane = faPlane; +exports.faPlay = faPlay; +exports.faPlayCircle = faPlayCircle; +exports.faPlug = faPlug; +exports.faPlus = faPlus; +exports.faPlusCircle = faPlusCircle; +exports.faPlusSquare = faPlusSquare; +exports.faPodcast = faPodcast; +exports.faPoo = faPoo; +exports.faPortrait = faPortrait; +exports.faPoundSign = faPoundSign; +exports.faPowerOff = faPowerOff; +exports.faPrescriptionBottle = faPrescriptionBottle; +exports.faPrescriptionBottleAlt = faPrescriptionBottleAlt; +exports.faPrint = faPrint; +exports.faProcedures = faProcedures; +exports.faProjectDiagram = faProjectDiagram; +exports.faPuzzlePiece = faPuzzlePiece; +exports.faQrcode = faQrcode; +exports.faQuestion = faQuestion; +exports.faQuestionCircle = faQuestionCircle; +exports.faQuidditch = faQuidditch; +exports.faQuoteLeft = faQuoteLeft; +exports.faQuoteRight = faQuoteRight; +exports.faRandom = faRandom; +exports.faReceipt = faReceipt; +exports.faRecycle = faRecycle; +exports.faRedo = faRedo; +exports.faRedoAlt = faRedoAlt; +exports.faRegistered = faRegistered; +exports.faReply = faReply; +exports.faReplyAll = faReplyAll; +exports.faRetweet = faRetweet; +exports.faRibbon = faRibbon; +exports.faRoad = faRoad; +exports.faRobot = faRobot; +exports.faRocket = faRocket; +exports.faRss = faRss; +exports.faRssSquare = faRssSquare; +exports.faRubleSign = faRubleSign; +exports.faRuler = faRuler; +exports.faRulerCombined = faRulerCombined; +exports.faRulerHorizontal = faRulerHorizontal; +exports.faRulerVertical = faRulerVertical; +exports.faRupeeSign = faRupeeSign; +exports.faSave = faSave; +exports.faSchool = faSchool; +exports.faScrewdriver = faScrewdriver; +exports.faSearch = faSearch; +exports.faSearchMinus = faSearchMinus; +exports.faSearchPlus = faSearchPlus; +exports.faSeedling = faSeedling; +exports.faServer = faServer; +exports.faShare = faShare; +exports.faShareAlt = faShareAlt; +exports.faShareAltSquare = faShareAltSquare; +exports.faShareSquare = faShareSquare; +exports.faShekelSign = faShekelSign; +exports.faShieldAlt = faShieldAlt; +exports.faShip = faShip; +exports.faShippingFast = faShippingFast; +exports.faShoePrints = faShoePrints; +exports.faShoppingBag = faShoppingBag; +exports.faShoppingBasket = faShoppingBasket; +exports.faShoppingCart = faShoppingCart; +exports.faShower = faShower; +exports.faSign = faSign; +exports.faSignInAlt = faSignInAlt; +exports.faSignLanguage = faSignLanguage; +exports.faSignOutAlt = faSignOutAlt; +exports.faSignal = faSignal; +exports.faSitemap = faSitemap; +exports.faSkull = faSkull; +exports.faSlidersH = faSlidersH; +exports.faSmile = faSmile; +exports.faSmoking = faSmoking; +exports.faSmokingBan = faSmokingBan; +exports.faSnowflake = faSnowflake; +exports.faSort = faSort; +exports.faSortAlphaDown = faSortAlphaDown; +exports.faSortAlphaUp = faSortAlphaUp; +exports.faSortAmountDown = faSortAmountDown; +exports.faSortAmountUp = faSortAmountUp; +exports.faSortDown = faSortDown; +exports.faSortNumericDown = faSortNumericDown; +exports.faSortNumericUp = faSortNumericUp; +exports.faSortUp = faSortUp; +exports.faSpaceShuttle = faSpaceShuttle; +exports.faSpinner = faSpinner; +exports.faSquare = faSquare; +exports.faSquareFull = faSquareFull; +exports.faStar = faStar; +exports.faStarHalf = faStarHalf; +exports.faStepBackward = faStepBackward; +exports.faStepForward = faStepForward; +exports.faStethoscope = faStethoscope; +exports.faStickyNote = faStickyNote; +exports.faStop = faStop; +exports.faStopCircle = faStopCircle; +exports.faStopwatch = faStopwatch; +exports.faStore = faStore; +exports.faStoreAlt = faStoreAlt; +exports.faStream = faStream; +exports.faStreetView = faStreetView; +exports.faStrikethrough = faStrikethrough; +exports.faStroopwafel = faStroopwafel; +exports.faSubscript = faSubscript; +exports.faSubway = faSubway; +exports.faSuitcase = faSuitcase; +exports.faSun = faSun; +exports.faSuperscript = faSuperscript; +exports.faSync = faSync; +exports.faSyncAlt = faSyncAlt; +exports.faSyringe = faSyringe; +exports.faTable = faTable; +exports.faTableTennis = faTableTennis; +exports.faTablet = faTablet; +exports.faTabletAlt = faTabletAlt; +exports.faTablets = faTablets; +exports.faTachometerAlt = faTachometerAlt; +exports.faTag = faTag; +exports.faTags = faTags; +exports.faTape = faTape; +exports.faTasks = faTasks; +exports.faTaxi = faTaxi; +exports.faTerminal = faTerminal; +exports.faTextHeight = faTextHeight; +exports.faTextWidth = faTextWidth; +exports.faTh = faTh; +exports.faThLarge = faThLarge; +exports.faThList = faThList; +exports.faThermometer = faThermometer; +exports.faThermometerEmpty = faThermometerEmpty; +exports.faThermometerFull = faThermometerFull; +exports.faThermometerHalf = faThermometerHalf; +exports.faThermometerQuarter = faThermometerQuarter; +exports.faThermometerThreeQuarters = faThermometerThreeQuarters; +exports.faThumbsDown = faThumbsDown; +exports.faThumbsUp = faThumbsUp; +exports.faThumbtack = faThumbtack; +exports.faTicketAlt = faTicketAlt; +exports.faTimes = faTimes; +exports.faTimesCircle = faTimesCircle; +exports.faTint = faTint; +exports.faToggleOff = faToggleOff; +exports.faToggleOn = faToggleOn; +exports.faToolbox = faToolbox; +exports.faTrademark = faTrademark; +exports.faTrain = faTrain; +exports.faTransgender = faTransgender; +exports.faTransgenderAlt = faTransgenderAlt; +exports.faTrash = faTrash; +exports.faTrashAlt = faTrashAlt; +exports.faTree = faTree; +exports.faTrophy = faTrophy; +exports.faTruck = faTruck; +exports.faTruckLoading = faTruckLoading; +exports.faTruckMoving = faTruckMoving; +exports.faTshirt = faTshirt; +exports.faTty = faTty; +exports.faTv = faTv; +exports.faUmbrella = faUmbrella; +exports.faUnderline = faUnderline; +exports.faUndo = faUndo; +exports.faUndoAlt = faUndoAlt; +exports.faUniversalAccess = faUniversalAccess; +exports.faUniversity = faUniversity; +exports.faUnlink = faUnlink; +exports.faUnlock = faUnlock; +exports.faUnlockAlt = faUnlockAlt; +exports.faUpload = faUpload; +exports.faUser = faUser; +exports.faUserAlt = faUserAlt; +exports.faUserAltSlash = faUserAltSlash; +exports.faUserAstronaut = faUserAstronaut; +exports.faUserCheck = faUserCheck; +exports.faUserCircle = faUserCircle; +exports.faUserClock = faUserClock; +exports.faUserCog = faUserCog; +exports.faUserEdit = faUserEdit; +exports.faUserFriends = faUserFriends; +exports.faUserGraduate = faUserGraduate; +exports.faUserLock = faUserLock; +exports.faUserMd = faUserMd; +exports.faUserMinus = faUserMinus; +exports.faUserNinja = faUserNinja; +exports.faUserPlus = faUserPlus; +exports.faUserSecret = faUserSecret; +exports.faUserShield = faUserShield; +exports.faUserSlash = faUserSlash; +exports.faUserTag = faUserTag; +exports.faUserTie = faUserTie; +exports.faUserTimes = faUserTimes; +exports.faUsers = faUsers; +exports.faUsersCog = faUsersCog; +exports.faUtensilSpoon = faUtensilSpoon; +exports.faUtensils = faUtensils; +exports.faVenus = faVenus; +exports.faVenusDouble = faVenusDouble; +exports.faVenusMars = faVenusMars; +exports.faVial = faVial; +exports.faVials = faVials; +exports.faVideo = faVideo; +exports.faVideoSlash = faVideoSlash; +exports.faVolleyballBall = faVolleyballBall; +exports.faVolumeDown = faVolumeDown; +exports.faVolumeOff = faVolumeOff; +exports.faVolumeUp = faVolumeUp; +exports.faWalking = faWalking; +exports.faWallet = faWallet; +exports.faWarehouse = faWarehouse; +exports.faWeight = faWeight; +exports.faWheelchair = faWheelchair; +exports.faWifi = faWifi; +exports.faWindowClose = faWindowClose; +exports.faWindowMaximize = faWindowMaximize; +exports.faWindowMinimize = faWindowMinimize; +exports.faWindowRestore = faWindowRestore; +exports.faWineGlass = faWineGlass; +exports.faWonSign = faWonSign; +exports.faWrench = faWrench; +exports.faXRay = faXRay; +exports.faYenSign = faYenSign; + +Object.defineProperty(exports, '__esModule', { value: true }); + +}))); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/LICENSE.txt b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/LICENSE.txt new file mode 100644 index 0000000000..28c1c4bc73 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/LICENSE.txt @@ -0,0 +1,34 @@ +Font Awesome Free License +------------------------- + +Font Awesome Free is free, open source, and GPL friendly. You can use it for +commercial projects, open source projects, or really almost whatever you want. +Full Font Awesome Free license: https://fontawesome.com/license. + +# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) +In the Font Awesome Free download, the CC BY 4.0 license applies to all icons +packaged as SVG and JS file types. + +# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL) +In the Font Awesome Free download, the SIL OLF license applies to all icons +packaged as web and desktop font files. + +# Code: MIT License (https://opensource.org/licenses/MIT) +In the Font Awesome Free download, the MIT license applies to all non-font and +non-icon files. + +# Attribution +Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font +Awesome Free files already contain embedded comments with sufficient +attribution, so you shouldn't need to do anything additional when using these +files normally. + +We've kept attribution comments terse, so we ask that you do not actively work +to remove them from files, especially code. They're a great way for folks to +learn about Font Awesome. + +# Brand Icons +All brand icons are trademarks of their respective owners. The use of these +trademarks does not indicate endorsement of the trademark holder by Font +Awesome, nor vice versa. **Please do not use brand logos for any purpose except +to represent the company, product, or service to which they refer.** diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/README.md b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/README.md new file mode 100644 index 0000000000..864114b3d2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/README.md @@ -0,0 +1,38 @@ +# @fortawesome/fontawesome-free-webfonts - Web Fonts with CSS version + +> "I came here to chew bubblegum and install Font Awesome 5 - and I'm all out of bubblegum" + +[![npm](https://img.shields.io/npm/v/@fortawesome/fontawesome-free-webfonts.svg?style=flat-square)](https://www.npmjs.com/package/@fortawesome/fontawesome-free-webfonts) + +## Installation + +``` +$ npm i --save @fortawesome/fontawesome-free-webfonts +``` + +Or + +``` +$ yarn add @fortawesome/fontawesome-free-webfonts +``` + +## What is this package? + +This package includes CSS, Less, SCSS, and the individual web font files needed to get Font Awesome 5 Web Fonts with CSS working in your freeject. + +Inside `node_modules/@fortawesome/fontawesome-free-webfonts` you'll find the following directories: + +* `css` +* `less` +* `scss` +* `webfonts` + +It's up to you to configure your build tool to use these. + +## Documentation + +Get started [here](https://fontawesome.com/get-started/web-fonts-with-css). Continue your journey [here](https://fontawesome.com/how-to-use/web-fonts-with-css). + +## Issues and support + +Start with [GitHub issues](https://github.com/FortAwesome/Font-Awesome/issues) and ping us on [Twitter](https://twitter.com/fontawesome) if you need to. diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/css/fa-brands.css b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/css/fa-brands.css new file mode 100644 index 0000000000..2a8d4ad824 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/css/fa-brands.css @@ -0,0 +1,9 @@ +@font-face { + font-family: 'Font Awesome 5 Brands'; + font-style: normal; + font-weight: normal; + src: url("../webfonts/fa-brands-400.eot"); + src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg"); } + +.fab { + font-family: 'Font Awesome 5 Brands'; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/css/fa-regular.css b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/css/fa-regular.css new file mode 100644 index 0000000000..7cece47159 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/css/fa-regular.css @@ -0,0 +1,10 @@ +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 400; + src: url("../webfonts/fa-regular-400.eot"); + src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.woff") format("woff"), url("../webfonts/fa-regular-400.ttf") format("truetype"), url("../webfonts/fa-regular-400.svg#fontawesome") format("svg"); } + +.far { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/css/fa-solid.css b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/css/fa-solid.css new file mode 100644 index 0000000000..45f4ee1977 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/css/fa-solid.css @@ -0,0 +1,11 @@ +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 900; + src: url("../webfonts/fa-solid-900.eot"); + src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg"); } + +.fa, +.fas { + font-family: 'Font Awesome 5 Free'; + font-weight: 900; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/css/fontawesome.css b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/css/fontawesome.css new file mode 100644 index 0000000000..2bb4b890b4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/css/fontawesome.css @@ -0,0 +1,3173 @@ +/*! + * Font Awesome Free 5.0.13 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa, +.fas, +.far, +.fal, +.fab { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + line-height: 1; } + +.fa-lg { + font-size: 1.33333em; + line-height: 0.75em; + vertical-align: -.0667em; } + +.fa-xs { + font-size: .75em; } + +.fa-sm { + font-size: .875em; } + +.fa-1x { + font-size: 1em; } + +.fa-2x { + font-size: 2em; } + +.fa-3x { + font-size: 3em; } + +.fa-4x { + font-size: 4em; } + +.fa-5x { + font-size: 5em; } + +.fa-6x { + font-size: 6em; } + +.fa-7x { + font-size: 7em; } + +.fa-8x { + font-size: 8em; } + +.fa-9x { + font-size: 9em; } + +.fa-10x { + font-size: 10em; } + +.fa-fw { + text-align: center; + width: 1.25em; } + +.fa-ul { + list-style-type: none; + margin-left: 2.5em; + padding-left: 0; } + .fa-ul > li { + position: relative; } + +.fa-li { + left: -2em; + position: absolute; + text-align: center; + width: 2em; + line-height: inherit; } + +.fa-border { + border: solid 0.08em #eee; + border-radius: .1em; + padding: .2em .25em .15em; } + +.fa-pull-left { + float: left; } + +.fa-pull-right { + float: right; } + +.fa.fa-pull-left, +.fas.fa-pull-left, +.far.fa-pull-left, +.fal.fa-pull-left, +.fab.fa-pull-left { + margin-right: .3em; } + +.fa.fa-pull-right, +.fas.fa-pull-right, +.far.fa-pull-right, +.fal.fa-pull-right, +.fab.fa-pull-right { + margin-left: .3em; } + +.fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; } + +.fa-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); } + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +.fa-rotate-90 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); } + +.fa-rotate-180 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + transform: rotate(180deg); } + +.fa-rotate-270 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + transform: rotate(270deg); } + +.fa-flip-horizontal { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + -webkit-transform: scale(-1, 1); + transform: scale(-1, 1); } + +.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(1, -1); + transform: scale(1, -1); } + +.fa-flip-horizontal.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(-1, -1); + transform: scale(-1, -1); } + +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270, +:root .fa-flip-horizontal, +:root .fa-flip-vertical { + -webkit-filter: none; + filter: none; } + +.fa-stack { + display: inline-block; + height: 2em; + line-height: 2em; + position: relative; + vertical-align: middle; + width: 2em; } + +.fa-stack-1x, +.fa-stack-2x { + left: 0; + position: absolute; + text-align: center; + width: 100%; } + +.fa-stack-1x { + line-height: inherit; } + +.fa-stack-2x { + font-size: 2em; } + +.fa-inverse { + color: #fff; } + +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen +readers do not read off random characters that represent icons */ +.fa-500px:before { + content: "\f26e"; } + +.fa-accessible-icon:before { + content: "\f368"; } + +.fa-accusoft:before { + content: "\f369"; } + +.fa-address-book:before { + content: "\f2b9"; } + +.fa-address-card:before { + content: "\f2bb"; } + +.fa-adjust:before { + content: "\f042"; } + +.fa-adn:before { + content: "\f170"; } + +.fa-adversal:before { + content: "\f36a"; } + +.fa-affiliatetheme:before { + content: "\f36b"; } + +.fa-algolia:before { + content: "\f36c"; } + +.fa-align-center:before { + content: "\f037"; } + +.fa-align-justify:before { + content: "\f039"; } + +.fa-align-left:before { + content: "\f036"; } + +.fa-align-right:before { + content: "\f038"; } + +.fa-allergies:before { + content: "\f461"; } + +.fa-amazon:before { + content: "\f270"; } + +.fa-amazon-pay:before { + content: "\f42c"; } + +.fa-ambulance:before { + content: "\f0f9"; } + +.fa-american-sign-language-interpreting:before { + content: "\f2a3"; } + +.fa-amilia:before { + content: "\f36d"; } + +.fa-anchor:before { + content: "\f13d"; } + +.fa-android:before { + content: "\f17b"; } + +.fa-angellist:before { + content: "\f209"; } + +.fa-angle-double-down:before { + content: "\f103"; } + +.fa-angle-double-left:before { + content: "\f100"; } + +.fa-angle-double-right:before { + content: "\f101"; } + +.fa-angle-double-up:before { + content: "\f102"; } + +.fa-angle-down:before { + content: "\f107"; } + +.fa-angle-left:before { + content: "\f104"; } + +.fa-angle-right:before { + content: "\f105"; } + +.fa-angle-up:before { + content: "\f106"; } + +.fa-angrycreative:before { + content: "\f36e"; } + +.fa-angular:before { + content: "\f420"; } + +.fa-app-store:before { + content: "\f36f"; } + +.fa-app-store-ios:before { + content: "\f370"; } + +.fa-apper:before { + content: "\f371"; } + +.fa-apple:before { + content: "\f179"; } + +.fa-apple-pay:before { + content: "\f415"; } + +.fa-archive:before { + content: "\f187"; } + +.fa-arrow-alt-circle-down:before { + content: "\f358"; } + +.fa-arrow-alt-circle-left:before { + content: "\f359"; } + +.fa-arrow-alt-circle-right:before { + content: "\f35a"; } + +.fa-arrow-alt-circle-up:before { + content: "\f35b"; } + +.fa-arrow-circle-down:before { + content: "\f0ab"; } + +.fa-arrow-circle-left:before { + content: "\f0a8"; } + +.fa-arrow-circle-right:before { + content: "\f0a9"; } + +.fa-arrow-circle-up:before { + content: "\f0aa"; } + +.fa-arrow-down:before { + content: "\f063"; } + +.fa-arrow-left:before { + content: "\f060"; } + +.fa-arrow-right:before { + content: "\f061"; } + +.fa-arrow-up:before { + content: "\f062"; } + +.fa-arrows-alt:before { + content: "\f0b2"; } + +.fa-arrows-alt-h:before { + content: "\f337"; } + +.fa-arrows-alt-v:before { + content: "\f338"; } + +.fa-assistive-listening-systems:before { + content: "\f2a2"; } + +.fa-asterisk:before { + content: "\f069"; } + +.fa-asymmetrik:before { + content: "\f372"; } + +.fa-at:before { + content: "\f1fa"; } + +.fa-audible:before { + content: "\f373"; } + +.fa-audio-description:before { + content: "\f29e"; } + +.fa-autoprefixer:before { + content: "\f41c"; } + +.fa-avianex:before { + content: "\f374"; } + +.fa-aviato:before { + content: "\f421"; } + +.fa-aws:before { + content: "\f375"; } + +.fa-backward:before { + content: "\f04a"; } + +.fa-balance-scale:before { + content: "\f24e"; } + +.fa-ban:before { + content: "\f05e"; } + +.fa-band-aid:before { + content: "\f462"; } + +.fa-bandcamp:before { + content: "\f2d5"; } + +.fa-barcode:before { + content: "\f02a"; } + +.fa-bars:before { + content: "\f0c9"; } + +.fa-baseball-ball:before { + content: "\f433"; } + +.fa-basketball-ball:before { + content: "\f434"; } + +.fa-bath:before { + content: "\f2cd"; } + +.fa-battery-empty:before { + content: "\f244"; } + +.fa-battery-full:before { + content: "\f240"; } + +.fa-battery-half:before { + content: "\f242"; } + +.fa-battery-quarter:before { + content: "\f243"; } + +.fa-battery-three-quarters:before { + content: "\f241"; } + +.fa-bed:before { + content: "\f236"; } + +.fa-beer:before { + content: "\f0fc"; } + +.fa-behance:before { + content: "\f1b4"; } + +.fa-behance-square:before { + content: "\f1b5"; } + +.fa-bell:before { + content: "\f0f3"; } + +.fa-bell-slash:before { + content: "\f1f6"; } + +.fa-bicycle:before { + content: "\f206"; } + +.fa-bimobject:before { + content: "\f378"; } + +.fa-binoculars:before { + content: "\f1e5"; } + +.fa-birthday-cake:before { + content: "\f1fd"; } + +.fa-bitbucket:before { + content: "\f171"; } + +.fa-bitcoin:before { + content: "\f379"; } + +.fa-bity:before { + content: "\f37a"; } + +.fa-black-tie:before { + content: "\f27e"; } + +.fa-blackberry:before { + content: "\f37b"; } + +.fa-blender:before { + content: "\f517"; } + +.fa-blind:before { + content: "\f29d"; } + +.fa-blogger:before { + content: "\f37c"; } + +.fa-blogger-b:before { + content: "\f37d"; } + +.fa-bluetooth:before { + content: "\f293"; } + +.fa-bluetooth-b:before { + content: "\f294"; } + +.fa-bold:before { + content: "\f032"; } + +.fa-bolt:before { + content: "\f0e7"; } + +.fa-bomb:before { + content: "\f1e2"; } + +.fa-book:before { + content: "\f02d"; } + +.fa-book-open:before { + content: "\f518"; } + +.fa-bookmark:before { + content: "\f02e"; } + +.fa-bowling-ball:before { + content: "\f436"; } + +.fa-box:before { + content: "\f466"; } + +.fa-box-open:before { + content: "\f49e"; } + +.fa-boxes:before { + content: "\f468"; } + +.fa-braille:before { + content: "\f2a1"; } + +.fa-briefcase:before { + content: "\f0b1"; } + +.fa-briefcase-medical:before { + content: "\f469"; } + +.fa-broadcast-tower:before { + content: "\f519"; } + +.fa-broom:before { + content: "\f51a"; } + +.fa-btc:before { + content: "\f15a"; } + +.fa-bug:before { + content: "\f188"; } + +.fa-building:before { + content: "\f1ad"; } + +.fa-bullhorn:before { + content: "\f0a1"; } + +.fa-bullseye:before { + content: "\f140"; } + +.fa-burn:before { + content: "\f46a"; } + +.fa-buromobelexperte:before { + content: "\f37f"; } + +.fa-bus:before { + content: "\f207"; } + +.fa-buysellads:before { + content: "\f20d"; } + +.fa-calculator:before { + content: "\f1ec"; } + +.fa-calendar:before { + content: "\f133"; } + +.fa-calendar-alt:before { + content: "\f073"; } + +.fa-calendar-check:before { + content: "\f274"; } + +.fa-calendar-minus:before { + content: "\f272"; } + +.fa-calendar-plus:before { + content: "\f271"; } + +.fa-calendar-times:before { + content: "\f273"; } + +.fa-camera:before { + content: "\f030"; } + +.fa-camera-retro:before { + content: "\f083"; } + +.fa-capsules:before { + content: "\f46b"; } + +.fa-car:before { + content: "\f1b9"; } + +.fa-caret-down:before { + content: "\f0d7"; } + +.fa-caret-left:before { + content: "\f0d9"; } + +.fa-caret-right:before { + content: "\f0da"; } + +.fa-caret-square-down:before { + content: "\f150"; } + +.fa-caret-square-left:before { + content: "\f191"; } + +.fa-caret-square-right:before { + content: "\f152"; } + +.fa-caret-square-up:before { + content: "\f151"; } + +.fa-caret-up:before { + content: "\f0d8"; } + +.fa-cart-arrow-down:before { + content: "\f218"; } + +.fa-cart-plus:before { + content: "\f217"; } + +.fa-cc-amazon-pay:before { + content: "\f42d"; } + +.fa-cc-amex:before { + content: "\f1f3"; } + +.fa-cc-apple-pay:before { + content: "\f416"; } + +.fa-cc-diners-club:before { + content: "\f24c"; } + +.fa-cc-discover:before { + content: "\f1f2"; } + +.fa-cc-jcb:before { + content: "\f24b"; } + +.fa-cc-mastercard:before { + content: "\f1f1"; } + +.fa-cc-paypal:before { + content: "\f1f4"; } + +.fa-cc-stripe:before { + content: "\f1f5"; } + +.fa-cc-visa:before { + content: "\f1f0"; } + +.fa-centercode:before { + content: "\f380"; } + +.fa-certificate:before { + content: "\f0a3"; } + +.fa-chalkboard:before { + content: "\f51b"; } + +.fa-chalkboard-teacher:before { + content: "\f51c"; } + +.fa-chart-area:before { + content: "\f1fe"; } + +.fa-chart-bar:before { + content: "\f080"; } + +.fa-chart-line:before { + content: "\f201"; } + +.fa-chart-pie:before { + content: "\f200"; } + +.fa-check:before { + content: "\f00c"; } + +.fa-check-circle:before { + content: "\f058"; } + +.fa-check-square:before { + content: "\f14a"; } + +.fa-chess:before { + content: "\f439"; } + +.fa-chess-bishop:before { + content: "\f43a"; } + +.fa-chess-board:before { + content: "\f43c"; } + +.fa-chess-king:before { + content: "\f43f"; } + +.fa-chess-knight:before { + content: "\f441"; } + +.fa-chess-pawn:before { + content: "\f443"; } + +.fa-chess-queen:before { + content: "\f445"; } + +.fa-chess-rook:before { + content: "\f447"; } + +.fa-chevron-circle-down:before { + content: "\f13a"; } + +.fa-chevron-circle-left:before { + content: "\f137"; } + +.fa-chevron-circle-right:before { + content: "\f138"; } + +.fa-chevron-circle-up:before { + content: "\f139"; } + +.fa-chevron-down:before { + content: "\f078"; } + +.fa-chevron-left:before { + content: "\f053"; } + +.fa-chevron-right:before { + content: "\f054"; } + +.fa-chevron-up:before { + content: "\f077"; } + +.fa-child:before { + content: "\f1ae"; } + +.fa-chrome:before { + content: "\f268"; } + +.fa-church:before { + content: "\f51d"; } + +.fa-circle:before { + content: "\f111"; } + +.fa-circle-notch:before { + content: "\f1ce"; } + +.fa-clipboard:before { + content: "\f328"; } + +.fa-clipboard-check:before { + content: "\f46c"; } + +.fa-clipboard-list:before { + content: "\f46d"; } + +.fa-clock:before { + content: "\f017"; } + +.fa-clone:before { + content: "\f24d"; } + +.fa-closed-captioning:before { + content: "\f20a"; } + +.fa-cloud:before { + content: "\f0c2"; } + +.fa-cloud-download-alt:before { + content: "\f381"; } + +.fa-cloud-upload-alt:before { + content: "\f382"; } + +.fa-cloudscale:before { + content: "\f383"; } + +.fa-cloudsmith:before { + content: "\f384"; } + +.fa-cloudversify:before { + content: "\f385"; } + +.fa-code:before { + content: "\f121"; } + +.fa-code-branch:before { + content: "\f126"; } + +.fa-codepen:before { + content: "\f1cb"; } + +.fa-codiepie:before { + content: "\f284"; } + +.fa-coffee:before { + content: "\f0f4"; } + +.fa-cog:before { + content: "\f013"; } + +.fa-cogs:before { + content: "\f085"; } + +.fa-coins:before { + content: "\f51e"; } + +.fa-columns:before { + content: "\f0db"; } + +.fa-comment:before { + content: "\f075"; } + +.fa-comment-alt:before { + content: "\f27a"; } + +.fa-comment-dots:before { + content: "\f4ad"; } + +.fa-comment-slash:before { + content: "\f4b3"; } + +.fa-comments:before { + content: "\f086"; } + +.fa-compact-disc:before { + content: "\f51f"; } + +.fa-compass:before { + content: "\f14e"; } + +.fa-compress:before { + content: "\f066"; } + +.fa-connectdevelop:before { + content: "\f20e"; } + +.fa-contao:before { + content: "\f26d"; } + +.fa-copy:before { + content: "\f0c5"; } + +.fa-copyright:before { + content: "\f1f9"; } + +.fa-couch:before { + content: "\f4b8"; } + +.fa-cpanel:before { + content: "\f388"; } + +.fa-creative-commons:before { + content: "\f25e"; } + +.fa-creative-commons-by:before { + content: "\f4e7"; } + +.fa-creative-commons-nc:before { + content: "\f4e8"; } + +.fa-creative-commons-nc-eu:before { + content: "\f4e9"; } + +.fa-creative-commons-nc-jp:before { + content: "\f4ea"; } + +.fa-creative-commons-nd:before { + content: "\f4eb"; } + +.fa-creative-commons-pd:before { + content: "\f4ec"; } + +.fa-creative-commons-pd-alt:before { + content: "\f4ed"; } + +.fa-creative-commons-remix:before { + content: "\f4ee"; } + +.fa-creative-commons-sa:before { + content: "\f4ef"; } + +.fa-creative-commons-sampling:before { + content: "\f4f0"; } + +.fa-creative-commons-sampling-plus:before { + content: "\f4f1"; } + +.fa-creative-commons-share:before { + content: "\f4f2"; } + +.fa-credit-card:before { + content: "\f09d"; } + +.fa-crop:before { + content: "\f125"; } + +.fa-crosshairs:before { + content: "\f05b"; } + +.fa-crow:before { + content: "\f520"; } + +.fa-crown:before { + content: "\f521"; } + +.fa-css3:before { + content: "\f13c"; } + +.fa-css3-alt:before { + content: "\f38b"; } + +.fa-cube:before { + content: "\f1b2"; } + +.fa-cubes:before { + content: "\f1b3"; } + +.fa-cut:before { + content: "\f0c4"; } + +.fa-cuttlefish:before { + content: "\f38c"; } + +.fa-d-and-d:before { + content: "\f38d"; } + +.fa-dashcube:before { + content: "\f210"; } + +.fa-database:before { + content: "\f1c0"; } + +.fa-deaf:before { + content: "\f2a4"; } + +.fa-delicious:before { + content: "\f1a5"; } + +.fa-deploydog:before { + content: "\f38e"; } + +.fa-deskpro:before { + content: "\f38f"; } + +.fa-desktop:before { + content: "\f108"; } + +.fa-deviantart:before { + content: "\f1bd"; } + +.fa-diagnoses:before { + content: "\f470"; } + +.fa-dice:before { + content: "\f522"; } + +.fa-dice-five:before { + content: "\f523"; } + +.fa-dice-four:before { + content: "\f524"; } + +.fa-dice-one:before { + content: "\f525"; } + +.fa-dice-six:before { + content: "\f526"; } + +.fa-dice-three:before { + content: "\f527"; } + +.fa-dice-two:before { + content: "\f528"; } + +.fa-digg:before { + content: "\f1a6"; } + +.fa-digital-ocean:before { + content: "\f391"; } + +.fa-discord:before { + content: "\f392"; } + +.fa-discourse:before { + content: "\f393"; } + +.fa-divide:before { + content: "\f529"; } + +.fa-dna:before { + content: "\f471"; } + +.fa-dochub:before { + content: "\f394"; } + +.fa-docker:before { + content: "\f395"; } + +.fa-dollar-sign:before { + content: "\f155"; } + +.fa-dolly:before { + content: "\f472"; } + +.fa-dolly-flatbed:before { + content: "\f474"; } + +.fa-donate:before { + content: "\f4b9"; } + +.fa-door-closed:before { + content: "\f52a"; } + +.fa-door-open:before { + content: "\f52b"; } + +.fa-dot-circle:before { + content: "\f192"; } + +.fa-dove:before { + content: "\f4ba"; } + +.fa-download:before { + content: "\f019"; } + +.fa-draft2digital:before { + content: "\f396"; } + +.fa-dribbble:before { + content: "\f17d"; } + +.fa-dribbble-square:before { + content: "\f397"; } + +.fa-dropbox:before { + content: "\f16b"; } + +.fa-drupal:before { + content: "\f1a9"; } + +.fa-dumbbell:before { + content: "\f44b"; } + +.fa-dyalog:before { + content: "\f399"; } + +.fa-earlybirds:before { + content: "\f39a"; } + +.fa-ebay:before { + content: "\f4f4"; } + +.fa-edge:before { + content: "\f282"; } + +.fa-edit:before { + content: "\f044"; } + +.fa-eject:before { + content: "\f052"; } + +.fa-elementor:before { + content: "\f430"; } + +.fa-ellipsis-h:before { + content: "\f141"; } + +.fa-ellipsis-v:before { + content: "\f142"; } + +.fa-ember:before { + content: "\f423"; } + +.fa-empire:before { + content: "\f1d1"; } + +.fa-envelope:before { + content: "\f0e0"; } + +.fa-envelope-open:before { + content: "\f2b6"; } + +.fa-envelope-square:before { + content: "\f199"; } + +.fa-envira:before { + content: "\f299"; } + +.fa-equals:before { + content: "\f52c"; } + +.fa-eraser:before { + content: "\f12d"; } + +.fa-erlang:before { + content: "\f39d"; } + +.fa-ethereum:before { + content: "\f42e"; } + +.fa-etsy:before { + content: "\f2d7"; } + +.fa-euro-sign:before { + content: "\f153"; } + +.fa-exchange-alt:before { + content: "\f362"; } + +.fa-exclamation:before { + content: "\f12a"; } + +.fa-exclamation-circle:before { + content: "\f06a"; } + +.fa-exclamation-triangle:before { + content: "\f071"; } + +.fa-expand:before { + content: "\f065"; } + +.fa-expand-arrows-alt:before { + content: "\f31e"; } + +.fa-expeditedssl:before { + content: "\f23e"; } + +.fa-external-link-alt:before { + content: "\f35d"; } + +.fa-external-link-square-alt:before { + content: "\f360"; } + +.fa-eye:before { + content: "\f06e"; } + +.fa-eye-dropper:before { + content: "\f1fb"; } + +.fa-eye-slash:before { + content: "\f070"; } + +.fa-facebook:before { + content: "\f09a"; } + +.fa-facebook-f:before { + content: "\f39e"; } + +.fa-facebook-messenger:before { + content: "\f39f"; } + +.fa-facebook-square:before { + content: "\f082"; } + +.fa-fast-backward:before { + content: "\f049"; } + +.fa-fast-forward:before { + content: "\f050"; } + +.fa-fax:before { + content: "\f1ac"; } + +.fa-feather:before { + content: "\f52d"; } + +.fa-female:before { + content: "\f182"; } + +.fa-fighter-jet:before { + content: "\f0fb"; } + +.fa-file:before { + content: "\f15b"; } + +.fa-file-alt:before { + content: "\f15c"; } + +.fa-file-archive:before { + content: "\f1c6"; } + +.fa-file-audio:before { + content: "\f1c7"; } + +.fa-file-code:before { + content: "\f1c9"; } + +.fa-file-excel:before { + content: "\f1c3"; } + +.fa-file-image:before { + content: "\f1c5"; } + +.fa-file-medical:before { + content: "\f477"; } + +.fa-file-medical-alt:before { + content: "\f478"; } + +.fa-file-pdf:before { + content: "\f1c1"; } + +.fa-file-powerpoint:before { + content: "\f1c4"; } + +.fa-file-video:before { + content: "\f1c8"; } + +.fa-file-word:before { + content: "\f1c2"; } + +.fa-film:before { + content: "\f008"; } + +.fa-filter:before { + content: "\f0b0"; } + +.fa-fire:before { + content: "\f06d"; } + +.fa-fire-extinguisher:before { + content: "\f134"; } + +.fa-firefox:before { + content: "\f269"; } + +.fa-first-aid:before { + content: "\f479"; } + +.fa-first-order:before { + content: "\f2b0"; } + +.fa-first-order-alt:before { + content: "\f50a"; } + +.fa-firstdraft:before { + content: "\f3a1"; } + +.fa-flag:before { + content: "\f024"; } + +.fa-flag-checkered:before { + content: "\f11e"; } + +.fa-flask:before { + content: "\f0c3"; } + +.fa-flickr:before { + content: "\f16e"; } + +.fa-flipboard:before { + content: "\f44d"; } + +.fa-fly:before { + content: "\f417"; } + +.fa-folder:before { + content: "\f07b"; } + +.fa-folder-open:before { + content: "\f07c"; } + +.fa-font:before { + content: "\f031"; } + +.fa-font-awesome:before { + content: "\f2b4"; } + +.fa-font-awesome-alt:before { + content: "\f35c"; } + +.fa-font-awesome-flag:before { + content: "\f425"; } + +.fa-font-awesome-logo-full:before { + content: "\f4e6"; } + +.fa-fonticons:before { + content: "\f280"; } + +.fa-fonticons-fi:before { + content: "\f3a2"; } + +.fa-football-ball:before { + content: "\f44e"; } + +.fa-fort-awesome:before { + content: "\f286"; } + +.fa-fort-awesome-alt:before { + content: "\f3a3"; } + +.fa-forumbee:before { + content: "\f211"; } + +.fa-forward:before { + content: "\f04e"; } + +.fa-foursquare:before { + content: "\f180"; } + +.fa-free-code-camp:before { + content: "\f2c5"; } + +.fa-freebsd:before { + content: "\f3a4"; } + +.fa-frog:before { + content: "\f52e"; } + +.fa-frown:before { + content: "\f119"; } + +.fa-fulcrum:before { + content: "\f50b"; } + +.fa-futbol:before { + content: "\f1e3"; } + +.fa-galactic-republic:before { + content: "\f50c"; } + +.fa-galactic-senate:before { + content: "\f50d"; } + +.fa-gamepad:before { + content: "\f11b"; } + +.fa-gas-pump:before { + content: "\f52f"; } + +.fa-gavel:before { + content: "\f0e3"; } + +.fa-gem:before { + content: "\f3a5"; } + +.fa-genderless:before { + content: "\f22d"; } + +.fa-get-pocket:before { + content: "\f265"; } + +.fa-gg:before { + content: "\f260"; } + +.fa-gg-circle:before { + content: "\f261"; } + +.fa-gift:before { + content: "\f06b"; } + +.fa-git:before { + content: "\f1d3"; } + +.fa-git-square:before { + content: "\f1d2"; } + +.fa-github:before { + content: "\f09b"; } + +.fa-github-alt:before { + content: "\f113"; } + +.fa-github-square:before { + content: "\f092"; } + +.fa-gitkraken:before { + content: "\f3a6"; } + +.fa-gitlab:before { + content: "\f296"; } + +.fa-gitter:before { + content: "\f426"; } + +.fa-glass-martini:before { + content: "\f000"; } + +.fa-glasses:before { + content: "\f530"; } + +.fa-glide:before { + content: "\f2a5"; } + +.fa-glide-g:before { + content: "\f2a6"; } + +.fa-globe:before { + content: "\f0ac"; } + +.fa-gofore:before { + content: "\f3a7"; } + +.fa-golf-ball:before { + content: "\f450"; } + +.fa-goodreads:before { + content: "\f3a8"; } + +.fa-goodreads-g:before { + content: "\f3a9"; } + +.fa-google:before { + content: "\f1a0"; } + +.fa-google-drive:before { + content: "\f3aa"; } + +.fa-google-play:before { + content: "\f3ab"; } + +.fa-google-plus:before { + content: "\f2b3"; } + +.fa-google-plus-g:before { + content: "\f0d5"; } + +.fa-google-plus-square:before { + content: "\f0d4"; } + +.fa-google-wallet:before { + content: "\f1ee"; } + +.fa-graduation-cap:before { + content: "\f19d"; } + +.fa-gratipay:before { + content: "\f184"; } + +.fa-grav:before { + content: "\f2d6"; } + +.fa-greater-than:before { + content: "\f531"; } + +.fa-greater-than-equal:before { + content: "\f532"; } + +.fa-gripfire:before { + content: "\f3ac"; } + +.fa-grunt:before { + content: "\f3ad"; } + +.fa-gulp:before { + content: "\f3ae"; } + +.fa-h-square:before { + content: "\f0fd"; } + +.fa-hacker-news:before { + content: "\f1d4"; } + +.fa-hacker-news-square:before { + content: "\f3af"; } + +.fa-hand-holding:before { + content: "\f4bd"; } + +.fa-hand-holding-heart:before { + content: "\f4be"; } + +.fa-hand-holding-usd:before { + content: "\f4c0"; } + +.fa-hand-lizard:before { + content: "\f258"; } + +.fa-hand-paper:before { + content: "\f256"; } + +.fa-hand-peace:before { + content: "\f25b"; } + +.fa-hand-point-down:before { + content: "\f0a7"; } + +.fa-hand-point-left:before { + content: "\f0a5"; } + +.fa-hand-point-right:before { + content: "\f0a4"; } + +.fa-hand-point-up:before { + content: "\f0a6"; } + +.fa-hand-pointer:before { + content: "\f25a"; } + +.fa-hand-rock:before { + content: "\f255"; } + +.fa-hand-scissors:before { + content: "\f257"; } + +.fa-hand-spock:before { + content: "\f259"; } + +.fa-hands:before { + content: "\f4c2"; } + +.fa-hands-helping:before { + content: "\f4c4"; } + +.fa-handshake:before { + content: "\f2b5"; } + +.fa-hashtag:before { + content: "\f292"; } + +.fa-hdd:before { + content: "\f0a0"; } + +.fa-heading:before { + content: "\f1dc"; } + +.fa-headphones:before { + content: "\f025"; } + +.fa-heart:before { + content: "\f004"; } + +.fa-heartbeat:before { + content: "\f21e"; } + +.fa-helicopter:before { + content: "\f533"; } + +.fa-hips:before { + content: "\f452"; } + +.fa-hire-a-helper:before { + content: "\f3b0"; } + +.fa-history:before { + content: "\f1da"; } + +.fa-hockey-puck:before { + content: "\f453"; } + +.fa-home:before { + content: "\f015"; } + +.fa-hooli:before { + content: "\f427"; } + +.fa-hospital:before { + content: "\f0f8"; } + +.fa-hospital-alt:before { + content: "\f47d"; } + +.fa-hospital-symbol:before { + content: "\f47e"; } + +.fa-hotjar:before { + content: "\f3b1"; } + +.fa-hourglass:before { + content: "\f254"; } + +.fa-hourglass-end:before { + content: "\f253"; } + +.fa-hourglass-half:before { + content: "\f252"; } + +.fa-hourglass-start:before { + content: "\f251"; } + +.fa-houzz:before { + content: "\f27c"; } + +.fa-html5:before { + content: "\f13b"; } + +.fa-hubspot:before { + content: "\f3b2"; } + +.fa-i-cursor:before { + content: "\f246"; } + +.fa-id-badge:before { + content: "\f2c1"; } + +.fa-id-card:before { + content: "\f2c2"; } + +.fa-id-card-alt:before { + content: "\f47f"; } + +.fa-image:before { + content: "\f03e"; } + +.fa-images:before { + content: "\f302"; } + +.fa-imdb:before { + content: "\f2d8"; } + +.fa-inbox:before { + content: "\f01c"; } + +.fa-indent:before { + content: "\f03c"; } + +.fa-industry:before { + content: "\f275"; } + +.fa-infinity:before { + content: "\f534"; } + +.fa-info:before { + content: "\f129"; } + +.fa-info-circle:before { + content: "\f05a"; } + +.fa-instagram:before { + content: "\f16d"; } + +.fa-internet-explorer:before { + content: "\f26b"; } + +.fa-ioxhost:before { + content: "\f208"; } + +.fa-italic:before { + content: "\f033"; } + +.fa-itunes:before { + content: "\f3b4"; } + +.fa-itunes-note:before { + content: "\f3b5"; } + +.fa-java:before { + content: "\f4e4"; } + +.fa-jedi-order:before { + content: "\f50e"; } + +.fa-jenkins:before { + content: "\f3b6"; } + +.fa-joget:before { + content: "\f3b7"; } + +.fa-joomla:before { + content: "\f1aa"; } + +.fa-js:before { + content: "\f3b8"; } + +.fa-js-square:before { + content: "\f3b9"; } + +.fa-jsfiddle:before { + content: "\f1cc"; } + +.fa-key:before { + content: "\f084"; } + +.fa-keybase:before { + content: "\f4f5"; } + +.fa-keyboard:before { + content: "\f11c"; } + +.fa-keycdn:before { + content: "\f3ba"; } + +.fa-kickstarter:before { + content: "\f3bb"; } + +.fa-kickstarter-k:before { + content: "\f3bc"; } + +.fa-kiwi-bird:before { + content: "\f535"; } + +.fa-korvue:before { + content: "\f42f"; } + +.fa-language:before { + content: "\f1ab"; } + +.fa-laptop:before { + content: "\f109"; } + +.fa-laravel:before { + content: "\f3bd"; } + +.fa-lastfm:before { + content: "\f202"; } + +.fa-lastfm-square:before { + content: "\f203"; } + +.fa-leaf:before { + content: "\f06c"; } + +.fa-leanpub:before { + content: "\f212"; } + +.fa-lemon:before { + content: "\f094"; } + +.fa-less:before { + content: "\f41d"; } + +.fa-less-than:before { + content: "\f536"; } + +.fa-less-than-equal:before { + content: "\f537"; } + +.fa-level-down-alt:before { + content: "\f3be"; } + +.fa-level-up-alt:before { + content: "\f3bf"; } + +.fa-life-ring:before { + content: "\f1cd"; } + +.fa-lightbulb:before { + content: "\f0eb"; } + +.fa-line:before { + content: "\f3c0"; } + +.fa-link:before { + content: "\f0c1"; } + +.fa-linkedin:before { + content: "\f08c"; } + +.fa-linkedin-in:before { + content: "\f0e1"; } + +.fa-linode:before { + content: "\f2b8"; } + +.fa-linux:before { + content: "\f17c"; } + +.fa-lira-sign:before { + content: "\f195"; } + +.fa-list:before { + content: "\f03a"; } + +.fa-list-alt:before { + content: "\f022"; } + +.fa-list-ol:before { + content: "\f0cb"; } + +.fa-list-ul:before { + content: "\f0ca"; } + +.fa-location-arrow:before { + content: "\f124"; } + +.fa-lock:before { + content: "\f023"; } + +.fa-lock-open:before { + content: "\f3c1"; } + +.fa-long-arrow-alt-down:before { + content: "\f309"; } + +.fa-long-arrow-alt-left:before { + content: "\f30a"; } + +.fa-long-arrow-alt-right:before { + content: "\f30b"; } + +.fa-long-arrow-alt-up:before { + content: "\f30c"; } + +.fa-low-vision:before { + content: "\f2a8"; } + +.fa-lyft:before { + content: "\f3c3"; } + +.fa-magento:before { + content: "\f3c4"; } + +.fa-magic:before { + content: "\f0d0"; } + +.fa-magnet:before { + content: "\f076"; } + +.fa-male:before { + content: "\f183"; } + +.fa-mandalorian:before { + content: "\f50f"; } + +.fa-map:before { + content: "\f279"; } + +.fa-map-marker:before { + content: "\f041"; } + +.fa-map-marker-alt:before { + content: "\f3c5"; } + +.fa-map-pin:before { + content: "\f276"; } + +.fa-map-signs:before { + content: "\f277"; } + +.fa-mars:before { + content: "\f222"; } + +.fa-mars-double:before { + content: "\f227"; } + +.fa-mars-stroke:before { + content: "\f229"; } + +.fa-mars-stroke-h:before { + content: "\f22b"; } + +.fa-mars-stroke-v:before { + content: "\f22a"; } + +.fa-mastodon:before { + content: "\f4f6"; } + +.fa-maxcdn:before { + content: "\f136"; } + +.fa-medapps:before { + content: "\f3c6"; } + +.fa-medium:before { + content: "\f23a"; } + +.fa-medium-m:before { + content: "\f3c7"; } + +.fa-medkit:before { + content: "\f0fa"; } + +.fa-medrt:before { + content: "\f3c8"; } + +.fa-meetup:before { + content: "\f2e0"; } + +.fa-meh:before { + content: "\f11a"; } + +.fa-memory:before { + content: "\f538"; } + +.fa-mercury:before { + content: "\f223"; } + +.fa-microchip:before { + content: "\f2db"; } + +.fa-microphone:before { + content: "\f130"; } + +.fa-microphone-alt:before { + content: "\f3c9"; } + +.fa-microphone-alt-slash:before { + content: "\f539"; } + +.fa-microphone-slash:before { + content: "\f131"; } + +.fa-microsoft:before { + content: "\f3ca"; } + +.fa-minus:before { + content: "\f068"; } + +.fa-minus-circle:before { + content: "\f056"; } + +.fa-minus-square:before { + content: "\f146"; } + +.fa-mix:before { + content: "\f3cb"; } + +.fa-mixcloud:before { + content: "\f289"; } + +.fa-mizuni:before { + content: "\f3cc"; } + +.fa-mobile:before { + content: "\f10b"; } + +.fa-mobile-alt:before { + content: "\f3cd"; } + +.fa-modx:before { + content: "\f285"; } + +.fa-monero:before { + content: "\f3d0"; } + +.fa-money-bill:before { + content: "\f0d6"; } + +.fa-money-bill-alt:before { + content: "\f3d1"; } + +.fa-money-bill-wave:before { + content: "\f53a"; } + +.fa-money-bill-wave-alt:before { + content: "\f53b"; } + +.fa-money-check:before { + content: "\f53c"; } + +.fa-money-check-alt:before { + content: "\f53d"; } + +.fa-moon:before { + content: "\f186"; } + +.fa-motorcycle:before { + content: "\f21c"; } + +.fa-mouse-pointer:before { + content: "\f245"; } + +.fa-music:before { + content: "\f001"; } + +.fa-napster:before { + content: "\f3d2"; } + +.fa-neuter:before { + content: "\f22c"; } + +.fa-newspaper:before { + content: "\f1ea"; } + +.fa-nintendo-switch:before { + content: "\f418"; } + +.fa-node:before { + content: "\f419"; } + +.fa-node-js:before { + content: "\f3d3"; } + +.fa-not-equal:before { + content: "\f53e"; } + +.fa-notes-medical:before { + content: "\f481"; } + +.fa-npm:before { + content: "\f3d4"; } + +.fa-ns8:before { + content: "\f3d5"; } + +.fa-nutritionix:before { + content: "\f3d6"; } + +.fa-object-group:before { + content: "\f247"; } + +.fa-object-ungroup:before { + content: "\f248"; } + +.fa-odnoklassniki:before { + content: "\f263"; } + +.fa-odnoklassniki-square:before { + content: "\f264"; } + +.fa-old-republic:before { + content: "\f510"; } + +.fa-opencart:before { + content: "\f23d"; } + +.fa-openid:before { + content: "\f19b"; } + +.fa-opera:before { + content: "\f26a"; } + +.fa-optin-monster:before { + content: "\f23c"; } + +.fa-osi:before { + content: "\f41a"; } + +.fa-outdent:before { + content: "\f03b"; } + +.fa-page4:before { + content: "\f3d7"; } + +.fa-pagelines:before { + content: "\f18c"; } + +.fa-paint-brush:before { + content: "\f1fc"; } + +.fa-palette:before { + content: "\f53f"; } + +.fa-palfed:before { + content: "\f3d8"; } + +.fa-pallet:before { + content: "\f482"; } + +.fa-paper-plane:before { + content: "\f1d8"; } + +.fa-paperclip:before { + content: "\f0c6"; } + +.fa-parachute-box:before { + content: "\f4cd"; } + +.fa-paragraph:before { + content: "\f1dd"; } + +.fa-parking:before { + content: "\f540"; } + +.fa-paste:before { + content: "\f0ea"; } + +.fa-patreon:before { + content: "\f3d9"; } + +.fa-pause:before { + content: "\f04c"; } + +.fa-pause-circle:before { + content: "\f28b"; } + +.fa-paw:before { + content: "\f1b0"; } + +.fa-paypal:before { + content: "\f1ed"; } + +.fa-pen-square:before { + content: "\f14b"; } + +.fa-pencil-alt:before { + content: "\f303"; } + +.fa-people-carry:before { + content: "\f4ce"; } + +.fa-percent:before { + content: "\f295"; } + +.fa-percentage:before { + content: "\f541"; } + +.fa-periscope:before { + content: "\f3da"; } + +.fa-phabricator:before { + content: "\f3db"; } + +.fa-phoenix-framework:before { + content: "\f3dc"; } + +.fa-phoenix-squadron:before { + content: "\f511"; } + +.fa-phone:before { + content: "\f095"; } + +.fa-phone-slash:before { + content: "\f3dd"; } + +.fa-phone-square:before { + content: "\f098"; } + +.fa-phone-volume:before { + content: "\f2a0"; } + +.fa-php:before { + content: "\f457"; } + +.fa-pied-piper:before { + content: "\f2ae"; } + +.fa-pied-piper-alt:before { + content: "\f1a8"; } + +.fa-pied-piper-hat:before { + content: "\f4e5"; } + +.fa-pied-piper-pp:before { + content: "\f1a7"; } + +.fa-piggy-bank:before { + content: "\f4d3"; } + +.fa-pills:before { + content: "\f484"; } + +.fa-pinterest:before { + content: "\f0d2"; } + +.fa-pinterest-p:before { + content: "\f231"; } + +.fa-pinterest-square:before { + content: "\f0d3"; } + +.fa-plane:before { + content: "\f072"; } + +.fa-play:before { + content: "\f04b"; } + +.fa-play-circle:before { + content: "\f144"; } + +.fa-playstation:before { + content: "\f3df"; } + +.fa-plug:before { + content: "\f1e6"; } + +.fa-plus:before { + content: "\f067"; } + +.fa-plus-circle:before { + content: "\f055"; } + +.fa-plus-square:before { + content: "\f0fe"; } + +.fa-podcast:before { + content: "\f2ce"; } + +.fa-poo:before { + content: "\f2fe"; } + +.fa-portrait:before { + content: "\f3e0"; } + +.fa-pound-sign:before { + content: "\f154"; } + +.fa-power-off:before { + content: "\f011"; } + +.fa-prescription-bottle:before { + content: "\f485"; } + +.fa-prescription-bottle-alt:before { + content: "\f486"; } + +.fa-print:before { + content: "\f02f"; } + +.fa-procedures:before { + content: "\f487"; } + +.fa-product-hunt:before { + content: "\f288"; } + +.fa-project-diagram:before { + content: "\f542"; } + +.fa-pushed:before { + content: "\f3e1"; } + +.fa-puzzle-piece:before { + content: "\f12e"; } + +.fa-python:before { + content: "\f3e2"; } + +.fa-qq:before { + content: "\f1d6"; } + +.fa-qrcode:before { + content: "\f029"; } + +.fa-question:before { + content: "\f128"; } + +.fa-question-circle:before { + content: "\f059"; } + +.fa-quidditch:before { + content: "\f458"; } + +.fa-quinscape:before { + content: "\f459"; } + +.fa-quora:before { + content: "\f2c4"; } + +.fa-quote-left:before { + content: "\f10d"; } + +.fa-quote-right:before { + content: "\f10e"; } + +.fa-r-project:before { + content: "\f4f7"; } + +.fa-random:before { + content: "\f074"; } + +.fa-ravelry:before { + content: "\f2d9"; } + +.fa-react:before { + content: "\f41b"; } + +.fa-readme:before { + content: "\f4d5"; } + +.fa-rebel:before { + content: "\f1d0"; } + +.fa-receipt:before { + content: "\f543"; } + +.fa-recycle:before { + content: "\f1b8"; } + +.fa-red-river:before { + content: "\f3e3"; } + +.fa-reddit:before { + content: "\f1a1"; } + +.fa-reddit-alien:before { + content: "\f281"; } + +.fa-reddit-square:before { + content: "\f1a2"; } + +.fa-redo:before { + content: "\f01e"; } + +.fa-redo-alt:before { + content: "\f2f9"; } + +.fa-registered:before { + content: "\f25d"; } + +.fa-rendact:before { + content: "\f3e4"; } + +.fa-renren:before { + content: "\f18b"; } + +.fa-reply:before { + content: "\f3e5"; } + +.fa-reply-all:before { + content: "\f122"; } + +.fa-replyd:before { + content: "\f3e6"; } + +.fa-researchgate:before { + content: "\f4f8"; } + +.fa-resolving:before { + content: "\f3e7"; } + +.fa-retweet:before { + content: "\f079"; } + +.fa-ribbon:before { + content: "\f4d6"; } + +.fa-road:before { + content: "\f018"; } + +.fa-robot:before { + content: "\f544"; } + +.fa-rocket:before { + content: "\f135"; } + +.fa-rocketchat:before { + content: "\f3e8"; } + +.fa-rockrms:before { + content: "\f3e9"; } + +.fa-rss:before { + content: "\f09e"; } + +.fa-rss-square:before { + content: "\f143"; } + +.fa-ruble-sign:before { + content: "\f158"; } + +.fa-ruler:before { + content: "\f545"; } + +.fa-ruler-combined:before { + content: "\f546"; } + +.fa-ruler-horizontal:before { + content: "\f547"; } + +.fa-ruler-vertical:before { + content: "\f548"; } + +.fa-rupee-sign:before { + content: "\f156"; } + +.fa-safari:before { + content: "\f267"; } + +.fa-sass:before { + content: "\f41e"; } + +.fa-save:before { + content: "\f0c7"; } + +.fa-schlix:before { + content: "\f3ea"; } + +.fa-school:before { + content: "\f549"; } + +.fa-screwdriver:before { + content: "\f54a"; } + +.fa-scribd:before { + content: "\f28a"; } + +.fa-search:before { + content: "\f002"; } + +.fa-search-minus:before { + content: "\f010"; } + +.fa-search-plus:before { + content: "\f00e"; } + +.fa-searchengin:before { + content: "\f3eb"; } + +.fa-seedling:before { + content: "\f4d8"; } + +.fa-sellcast:before { + content: "\f2da"; } + +.fa-sellsy:before { + content: "\f213"; } + +.fa-server:before { + content: "\f233"; } + +.fa-servicestack:before { + content: "\f3ec"; } + +.fa-share:before { + content: "\f064"; } + +.fa-share-alt:before { + content: "\f1e0"; } + +.fa-share-alt-square:before { + content: "\f1e1"; } + +.fa-share-square:before { + content: "\f14d"; } + +.fa-shekel-sign:before { + content: "\f20b"; } + +.fa-shield-alt:before { + content: "\f3ed"; } + +.fa-ship:before { + content: "\f21a"; } + +.fa-shipping-fast:before { + content: "\f48b"; } + +.fa-shirtsinbulk:before { + content: "\f214"; } + +.fa-shoe-prints:before { + content: "\f54b"; } + +.fa-shopping-bag:before { + content: "\f290"; } + +.fa-shopping-basket:before { + content: "\f291"; } + +.fa-shopping-cart:before { + content: "\f07a"; } + +.fa-shower:before { + content: "\f2cc"; } + +.fa-sign:before { + content: "\f4d9"; } + +.fa-sign-in-alt:before { + content: "\f2f6"; } + +.fa-sign-language:before { + content: "\f2a7"; } + +.fa-sign-out-alt:before { + content: "\f2f5"; } + +.fa-signal:before { + content: "\f012"; } + +.fa-simplybuilt:before { + content: "\f215"; } + +.fa-sistrix:before { + content: "\f3ee"; } + +.fa-sitemap:before { + content: "\f0e8"; } + +.fa-sith:before { + content: "\f512"; } + +.fa-skull:before { + content: "\f54c"; } + +.fa-skyatlas:before { + content: "\f216"; } + +.fa-skype:before { + content: "\f17e"; } + +.fa-slack:before { + content: "\f198"; } + +.fa-slack-hash:before { + content: "\f3ef"; } + +.fa-sliders-h:before { + content: "\f1de"; } + +.fa-slideshare:before { + content: "\f1e7"; } + +.fa-smile:before { + content: "\f118"; } + +.fa-smoking:before { + content: "\f48d"; } + +.fa-smoking-ban:before { + content: "\f54d"; } + +.fa-snapchat:before { + content: "\f2ab"; } + +.fa-snapchat-ghost:before { + content: "\f2ac"; } + +.fa-snapchat-square:before { + content: "\f2ad"; } + +.fa-snowflake:before { + content: "\f2dc"; } + +.fa-sort:before { + content: "\f0dc"; } + +.fa-sort-alpha-down:before { + content: "\f15d"; } + +.fa-sort-alpha-up:before { + content: "\f15e"; } + +.fa-sort-amount-down:before { + content: "\f160"; } + +.fa-sort-amount-up:before { + content: "\f161"; } + +.fa-sort-down:before { + content: "\f0dd"; } + +.fa-sort-numeric-down:before { + content: "\f162"; } + +.fa-sort-numeric-up:before { + content: "\f163"; } + +.fa-sort-up:before { + content: "\f0de"; } + +.fa-soundcloud:before { + content: "\f1be"; } + +.fa-space-shuttle:before { + content: "\f197"; } + +.fa-speakap:before { + content: "\f3f3"; } + +.fa-spinner:before { + content: "\f110"; } + +.fa-spotify:before { + content: "\f1bc"; } + +.fa-square:before { + content: "\f0c8"; } + +.fa-square-full:before { + content: "\f45c"; } + +.fa-stack-exchange:before { + content: "\f18d"; } + +.fa-stack-overflow:before { + content: "\f16c"; } + +.fa-star:before { + content: "\f005"; } + +.fa-star-half:before { + content: "\f089"; } + +.fa-staylinked:before { + content: "\f3f5"; } + +.fa-steam:before { + content: "\f1b6"; } + +.fa-steam-square:before { + content: "\f1b7"; } + +.fa-steam-symbol:before { + content: "\f3f6"; } + +.fa-step-backward:before { + content: "\f048"; } + +.fa-step-forward:before { + content: "\f051"; } + +.fa-stethoscope:before { + content: "\f0f1"; } + +.fa-sticker-mule:before { + content: "\f3f7"; } + +.fa-sticky-note:before { + content: "\f249"; } + +.fa-stop:before { + content: "\f04d"; } + +.fa-stop-circle:before { + content: "\f28d"; } + +.fa-stopwatch:before { + content: "\f2f2"; } + +.fa-store:before { + content: "\f54e"; } + +.fa-store-alt:before { + content: "\f54f"; } + +.fa-strava:before { + content: "\f428"; } + +.fa-stream:before { + content: "\f550"; } + +.fa-street-view:before { + content: "\f21d"; } + +.fa-strikethrough:before { + content: "\f0cc"; } + +.fa-stripe:before { + content: "\f429"; } + +.fa-stripe-s:before { + content: "\f42a"; } + +.fa-stroopwafel:before { + content: "\f551"; } + +.fa-studiovinari:before { + content: "\f3f8"; } + +.fa-stumbleupon:before { + content: "\f1a4"; } + +.fa-stumbleupon-circle:before { + content: "\f1a3"; } + +.fa-subscript:before { + content: "\f12c"; } + +.fa-subway:before { + content: "\f239"; } + +.fa-suitcase:before { + content: "\f0f2"; } + +.fa-sun:before { + content: "\f185"; } + +.fa-superpowers:before { + content: "\f2dd"; } + +.fa-superscript:before { + content: "\f12b"; } + +.fa-supple:before { + content: "\f3f9"; } + +.fa-sync:before { + content: "\f021"; } + +.fa-sync-alt:before { + content: "\f2f1"; } + +.fa-syringe:before { + content: "\f48e"; } + +.fa-table:before { + content: "\f0ce"; } + +.fa-table-tennis:before { + content: "\f45d"; } + +.fa-tablet:before { + content: "\f10a"; } + +.fa-tablet-alt:before { + content: "\f3fa"; } + +.fa-tablets:before { + content: "\f490"; } + +.fa-tachometer-alt:before { + content: "\f3fd"; } + +.fa-tag:before { + content: "\f02b"; } + +.fa-tags:before { + content: "\f02c"; } + +.fa-tape:before { + content: "\f4db"; } + +.fa-tasks:before { + content: "\f0ae"; } + +.fa-taxi:before { + content: "\f1ba"; } + +.fa-teamspeak:before { + content: "\f4f9"; } + +.fa-telegram:before { + content: "\f2c6"; } + +.fa-telegram-plane:before { + content: "\f3fe"; } + +.fa-tencent-weibo:before { + content: "\f1d5"; } + +.fa-terminal:before { + content: "\f120"; } + +.fa-text-height:before { + content: "\f034"; } + +.fa-text-width:before { + content: "\f035"; } + +.fa-th:before { + content: "\f00a"; } + +.fa-th-large:before { + content: "\f009"; } + +.fa-th-list:before { + content: "\f00b"; } + +.fa-themeisle:before { + content: "\f2b2"; } + +.fa-thermometer:before { + content: "\f491"; } + +.fa-thermometer-empty:before { + content: "\f2cb"; } + +.fa-thermometer-full:before { + content: "\f2c7"; } + +.fa-thermometer-half:before { + content: "\f2c9"; } + +.fa-thermometer-quarter:before { + content: "\f2ca"; } + +.fa-thermometer-three-quarters:before { + content: "\f2c8"; } + +.fa-thumbs-down:before { + content: "\f165"; } + +.fa-thumbs-up:before { + content: "\f164"; } + +.fa-thumbtack:before { + content: "\f08d"; } + +.fa-ticket-alt:before { + content: "\f3ff"; } + +.fa-times:before { + content: "\f00d"; } + +.fa-times-circle:before { + content: "\f057"; } + +.fa-tint:before { + content: "\f043"; } + +.fa-toggle-off:before { + content: "\f204"; } + +.fa-toggle-on:before { + content: "\f205"; } + +.fa-toolbox:before { + content: "\f552"; } + +.fa-trade-federation:before { + content: "\f513"; } + +.fa-trademark:before { + content: "\f25c"; } + +.fa-train:before { + content: "\f238"; } + +.fa-transgender:before { + content: "\f224"; } + +.fa-transgender-alt:before { + content: "\f225"; } + +.fa-trash:before { + content: "\f1f8"; } + +.fa-trash-alt:before { + content: "\f2ed"; } + +.fa-tree:before { + content: "\f1bb"; } + +.fa-trello:before { + content: "\f181"; } + +.fa-tripadvisor:before { + content: "\f262"; } + +.fa-trophy:before { + content: "\f091"; } + +.fa-truck:before { + content: "\f0d1"; } + +.fa-truck-loading:before { + content: "\f4de"; } + +.fa-truck-moving:before { + content: "\f4df"; } + +.fa-tshirt:before { + content: "\f553"; } + +.fa-tty:before { + content: "\f1e4"; } + +.fa-tumblr:before { + content: "\f173"; } + +.fa-tumblr-square:before { + content: "\f174"; } + +.fa-tv:before { + content: "\f26c"; } + +.fa-twitch:before { + content: "\f1e8"; } + +.fa-twitter:before { + content: "\f099"; } + +.fa-twitter-square:before { + content: "\f081"; } + +.fa-typo3:before { + content: "\f42b"; } + +.fa-uber:before { + content: "\f402"; } + +.fa-uikit:before { + content: "\f403"; } + +.fa-umbrella:before { + content: "\f0e9"; } + +.fa-underline:before { + content: "\f0cd"; } + +.fa-undo:before { + content: "\f0e2"; } + +.fa-undo-alt:before { + content: "\f2ea"; } + +.fa-uniregistry:before { + content: "\f404"; } + +.fa-universal-access:before { + content: "\f29a"; } + +.fa-university:before { + content: "\f19c"; } + +.fa-unlink:before { + content: "\f127"; } + +.fa-unlock:before { + content: "\f09c"; } + +.fa-unlock-alt:before { + content: "\f13e"; } + +.fa-untappd:before { + content: "\f405"; } + +.fa-upload:before { + content: "\f093"; } + +.fa-usb:before { + content: "\f287"; } + +.fa-user:before { + content: "\f007"; } + +.fa-user-alt:before { + content: "\f406"; } + +.fa-user-alt-slash:before { + content: "\f4fa"; } + +.fa-user-astronaut:before { + content: "\f4fb"; } + +.fa-user-check:before { + content: "\f4fc"; } + +.fa-user-circle:before { + content: "\f2bd"; } + +.fa-user-clock:before { + content: "\f4fd"; } + +.fa-user-cog:before { + content: "\f4fe"; } + +.fa-user-edit:before { + content: "\f4ff"; } + +.fa-user-friends:before { + content: "\f500"; } + +.fa-user-graduate:before { + content: "\f501"; } + +.fa-user-lock:before { + content: "\f502"; } + +.fa-user-md:before { + content: "\f0f0"; } + +.fa-user-minus:before { + content: "\f503"; } + +.fa-user-ninja:before { + content: "\f504"; } + +.fa-user-plus:before { + content: "\f234"; } + +.fa-user-secret:before { + content: "\f21b"; } + +.fa-user-shield:before { + content: "\f505"; } + +.fa-user-slash:before { + content: "\f506"; } + +.fa-user-tag:before { + content: "\f507"; } + +.fa-user-tie:before { + content: "\f508"; } + +.fa-user-times:before { + content: "\f235"; } + +.fa-users:before { + content: "\f0c0"; } + +.fa-users-cog:before { + content: "\f509"; } + +.fa-ussunnah:before { + content: "\f407"; } + +.fa-utensil-spoon:before { + content: "\f2e5"; } + +.fa-utensils:before { + content: "\f2e7"; } + +.fa-vaadin:before { + content: "\f408"; } + +.fa-venus:before { + content: "\f221"; } + +.fa-venus-double:before { + content: "\f226"; } + +.fa-venus-mars:before { + content: "\f228"; } + +.fa-viacoin:before { + content: "\f237"; } + +.fa-viadeo:before { + content: "\f2a9"; } + +.fa-viadeo-square:before { + content: "\f2aa"; } + +.fa-vial:before { + content: "\f492"; } + +.fa-vials:before { + content: "\f493"; } + +.fa-viber:before { + content: "\f409"; } + +.fa-video:before { + content: "\f03d"; } + +.fa-video-slash:before { + content: "\f4e2"; } + +.fa-vimeo:before { + content: "\f40a"; } + +.fa-vimeo-square:before { + content: "\f194"; } + +.fa-vimeo-v:before { + content: "\f27d"; } + +.fa-vine:before { + content: "\f1ca"; } + +.fa-vk:before { + content: "\f189"; } + +.fa-vnv:before { + content: "\f40b"; } + +.fa-volleyball-ball:before { + content: "\f45f"; } + +.fa-volume-down:before { + content: "\f027"; } + +.fa-volume-off:before { + content: "\f026"; } + +.fa-volume-up:before { + content: "\f028"; } + +.fa-vuejs:before { + content: "\f41f"; } + +.fa-walking:before { + content: "\f554"; } + +.fa-wallet:before { + content: "\f555"; } + +.fa-warehouse:before { + content: "\f494"; } + +.fa-weibo:before { + content: "\f18a"; } + +.fa-weight:before { + content: "\f496"; } + +.fa-weixin:before { + content: "\f1d7"; } + +.fa-whatsapp:before { + content: "\f232"; } + +.fa-whatsapp-square:before { + content: "\f40c"; } + +.fa-wheelchair:before { + content: "\f193"; } + +.fa-whmcs:before { + content: "\f40d"; } + +.fa-wifi:before { + content: "\f1eb"; } + +.fa-wikipedia-w:before { + content: "\f266"; } + +.fa-window-close:before { + content: "\f410"; } + +.fa-window-maximize:before { + content: "\f2d0"; } + +.fa-window-minimize:before { + content: "\f2d1"; } + +.fa-window-restore:before { + content: "\f2d2"; } + +.fa-windows:before { + content: "\f17a"; } + +.fa-wine-glass:before { + content: "\f4e3"; } + +.fa-wolf-pack-battalion:before { + content: "\f514"; } + +.fa-won-sign:before { + content: "\f159"; } + +.fa-wordpress:before { + content: "\f19a"; } + +.fa-wordpress-simple:before { + content: "\f411"; } + +.fa-wpbeginner:before { + content: "\f297"; } + +.fa-wpexplorer:before { + content: "\f2de"; } + +.fa-wpforms:before { + content: "\f298"; } + +.fa-wrench:before { + content: "\f0ad"; } + +.fa-x-ray:before { + content: "\f497"; } + +.fa-xbox:before { + content: "\f412"; } + +.fa-xing:before { + content: "\f168"; } + +.fa-xing-square:before { + content: "\f169"; } + +.fa-y-combinator:before { + content: "\f23b"; } + +.fa-yahoo:before { + content: "\f19e"; } + +.fa-yandex:before { + content: "\f413"; } + +.fa-yandex-international:before { + content: "\f414"; } + +.fa-yelp:before { + content: "\f1e9"; } + +.fa-yen-sign:before { + content: "\f157"; } + +.fa-yoast:before { + content: "\f2b1"; } + +.fa-youtube:before { + content: "\f167"; } + +.fa-youtube-square:before { + content: "\f431"; } + +.sr-only { + border: 0; + clip: rect(0, 0, 0, 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; } + +.sr-only-focusable:active, .sr-only-focusable:focus { + clip: auto; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_animated.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_animated.less new file mode 100644 index 0000000000..704ec95103 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_animated.less @@ -0,0 +1,19 @@ +// Animated Icons +// -------------------------- + +.@{fa-css-prefix}-spin { + animation: fa-spin 2s infinite linear; +} + +.@{fa-css-prefix}-pulse { + animation: fa-spin 1s infinite steps(8); +} + +@keyframes fa-spin { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_bordered-pulled.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_bordered-pulled.less new file mode 100644 index 0000000000..29a356b423 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_bordered-pulled.less @@ -0,0 +1,16 @@ +// Bordered & Pulled +// ------------------------- + +.@{fa-css-prefix}-border { + border-radius: .1em; + border: solid .08em @fa-border-color; + padding: .2em .25em .15em; +} + +.@{fa-css-prefix}-pull-left { float: left; } +.@{fa-css-prefix}-pull-right { float: right; } + +.@{fa-css-prefix}, .fas, .far, .fal, .fab { + &.@{fa-css-prefix}-pull-left { margin-right: .3em; } + &.@{fa-css-prefix}-pull-right { margin-left: .3em; } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_core.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_core.less new file mode 100644 index 0000000000..82031d6523 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_core.less @@ -0,0 +1,12 @@ +// Base Class Definition +// ------------------------- + +.@{fa-css-prefix}, .fas, .far, .fal, .fab { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + line-height: 1; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_fixed-width.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_fixed-width.less new file mode 100644 index 0000000000..be817c6375 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_fixed-width.less @@ -0,0 +1,6 @@ +// Fixed Width Icons +// ------------------------- +.@{fa-css-prefix}-fw { + text-align: center; + width: (20em / 16); +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_icons.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_icons.less new file mode 100644 index 0000000000..09e8e88a79 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_icons.less @@ -0,0 +1,992 @@ +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ + +.@{fa-css-prefix}-500px:before { content: @fa-var-500px; } +.@{fa-css-prefix}-accessible-icon:before { content: @fa-var-accessible-icon; } +.@{fa-css-prefix}-accusoft:before { content: @fa-var-accusoft; } +.@{fa-css-prefix}-address-book:before { content: @fa-var-address-book; } +.@{fa-css-prefix}-address-card:before { content: @fa-var-address-card; } +.@{fa-css-prefix}-adjust:before { content: @fa-var-adjust; } +.@{fa-css-prefix}-adn:before { content: @fa-var-adn; } +.@{fa-css-prefix}-adversal:before { content: @fa-var-adversal; } +.@{fa-css-prefix}-affiliatetheme:before { content: @fa-var-affiliatetheme; } +.@{fa-css-prefix}-algolia:before { content: @fa-var-algolia; } +.@{fa-css-prefix}-align-center:before { content: @fa-var-align-center; } +.@{fa-css-prefix}-align-justify:before { content: @fa-var-align-justify; } +.@{fa-css-prefix}-align-left:before { content: @fa-var-align-left; } +.@{fa-css-prefix}-align-right:before { content: @fa-var-align-right; } +.@{fa-css-prefix}-allergies:before { content: @fa-var-allergies; } +.@{fa-css-prefix}-amazon:before { content: @fa-var-amazon; } +.@{fa-css-prefix}-amazon-pay:before { content: @fa-var-amazon-pay; } +.@{fa-css-prefix}-ambulance:before { content: @fa-var-ambulance; } +.@{fa-css-prefix}-american-sign-language-interpreting:before { content: @fa-var-american-sign-language-interpreting; } +.@{fa-css-prefix}-amilia:before { content: @fa-var-amilia; } +.@{fa-css-prefix}-anchor:before { content: @fa-var-anchor; } +.@{fa-css-prefix}-android:before { content: @fa-var-android; } +.@{fa-css-prefix}-angellist:before { content: @fa-var-angellist; } +.@{fa-css-prefix}-angle-double-down:before { content: @fa-var-angle-double-down; } +.@{fa-css-prefix}-angle-double-left:before { content: @fa-var-angle-double-left; } +.@{fa-css-prefix}-angle-double-right:before { content: @fa-var-angle-double-right; } +.@{fa-css-prefix}-angle-double-up:before { content: @fa-var-angle-double-up; } +.@{fa-css-prefix}-angle-down:before { content: @fa-var-angle-down; } +.@{fa-css-prefix}-angle-left:before { content: @fa-var-angle-left; } +.@{fa-css-prefix}-angle-right:before { content: @fa-var-angle-right; } +.@{fa-css-prefix}-angle-up:before { content: @fa-var-angle-up; } +.@{fa-css-prefix}-angrycreative:before { content: @fa-var-angrycreative; } +.@{fa-css-prefix}-angular:before { content: @fa-var-angular; } +.@{fa-css-prefix}-app-store:before { content: @fa-var-app-store; } +.@{fa-css-prefix}-app-store-ios:before { content: @fa-var-app-store-ios; } +.@{fa-css-prefix}-apper:before { content: @fa-var-apper; } +.@{fa-css-prefix}-apple:before { content: @fa-var-apple; } +.@{fa-css-prefix}-apple-pay:before { content: @fa-var-apple-pay; } +.@{fa-css-prefix}-archive:before { content: @fa-var-archive; } +.@{fa-css-prefix}-arrow-alt-circle-down:before { content: @fa-var-arrow-alt-circle-down; } +.@{fa-css-prefix}-arrow-alt-circle-left:before { content: @fa-var-arrow-alt-circle-left; } +.@{fa-css-prefix}-arrow-alt-circle-right:before { content: @fa-var-arrow-alt-circle-right; } +.@{fa-css-prefix}-arrow-alt-circle-up:before { content: @fa-var-arrow-alt-circle-up; } +.@{fa-css-prefix}-arrow-circle-down:before { content: @fa-var-arrow-circle-down; } +.@{fa-css-prefix}-arrow-circle-left:before { content: @fa-var-arrow-circle-left; } +.@{fa-css-prefix}-arrow-circle-right:before { content: @fa-var-arrow-circle-right; } +.@{fa-css-prefix}-arrow-circle-up:before { content: @fa-var-arrow-circle-up; } +.@{fa-css-prefix}-arrow-down:before { content: @fa-var-arrow-down; } +.@{fa-css-prefix}-arrow-left:before { content: @fa-var-arrow-left; } +.@{fa-css-prefix}-arrow-right:before { content: @fa-var-arrow-right; } +.@{fa-css-prefix}-arrow-up:before { content: @fa-var-arrow-up; } +.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-arrows-alt; } +.@{fa-css-prefix}-arrows-alt-h:before { content: @fa-var-arrows-alt-h; } +.@{fa-css-prefix}-arrows-alt-v:before { content: @fa-var-arrows-alt-v; } +.@{fa-css-prefix}-assistive-listening-systems:before { content: @fa-var-assistive-listening-systems; } +.@{fa-css-prefix}-asterisk:before { content: @fa-var-asterisk; } +.@{fa-css-prefix}-asymmetrik:before { content: @fa-var-asymmetrik; } +.@{fa-css-prefix}-at:before { content: @fa-var-at; } +.@{fa-css-prefix}-audible:before { content: @fa-var-audible; } +.@{fa-css-prefix}-audio-description:before { content: @fa-var-audio-description; } +.@{fa-css-prefix}-autoprefixer:before { content: @fa-var-autoprefixer; } +.@{fa-css-prefix}-avianex:before { content: @fa-var-avianex; } +.@{fa-css-prefix}-aviato:before { content: @fa-var-aviato; } +.@{fa-css-prefix}-aws:before { content: @fa-var-aws; } +.@{fa-css-prefix}-backward:before { content: @fa-var-backward; } +.@{fa-css-prefix}-balance-scale:before { content: @fa-var-balance-scale; } +.@{fa-css-prefix}-ban:before { content: @fa-var-ban; } +.@{fa-css-prefix}-band-aid:before { content: @fa-var-band-aid; } +.@{fa-css-prefix}-bandcamp:before { content: @fa-var-bandcamp; } +.@{fa-css-prefix}-barcode:before { content: @fa-var-barcode; } +.@{fa-css-prefix}-bars:before { content: @fa-var-bars; } +.@{fa-css-prefix}-baseball-ball:before { content: @fa-var-baseball-ball; } +.@{fa-css-prefix}-basketball-ball:before { content: @fa-var-basketball-ball; } +.@{fa-css-prefix}-bath:before { content: @fa-var-bath; } +.@{fa-css-prefix}-battery-empty:before { content: @fa-var-battery-empty; } +.@{fa-css-prefix}-battery-full:before { content: @fa-var-battery-full; } +.@{fa-css-prefix}-battery-half:before { content: @fa-var-battery-half; } +.@{fa-css-prefix}-battery-quarter:before { content: @fa-var-battery-quarter; } +.@{fa-css-prefix}-battery-three-quarters:before { content: @fa-var-battery-three-quarters; } +.@{fa-css-prefix}-bed:before { content: @fa-var-bed; } +.@{fa-css-prefix}-beer:before { content: @fa-var-beer; } +.@{fa-css-prefix}-behance:before { content: @fa-var-behance; } +.@{fa-css-prefix}-behance-square:before { content: @fa-var-behance-square; } +.@{fa-css-prefix}-bell:before { content: @fa-var-bell; } +.@{fa-css-prefix}-bell-slash:before { content: @fa-var-bell-slash; } +.@{fa-css-prefix}-bicycle:before { content: @fa-var-bicycle; } +.@{fa-css-prefix}-bimobject:before { content: @fa-var-bimobject; } +.@{fa-css-prefix}-binoculars:before { content: @fa-var-binoculars; } +.@{fa-css-prefix}-birthday-cake:before { content: @fa-var-birthday-cake; } +.@{fa-css-prefix}-bitbucket:before { content: @fa-var-bitbucket; } +.@{fa-css-prefix}-bitcoin:before { content: @fa-var-bitcoin; } +.@{fa-css-prefix}-bity:before { content: @fa-var-bity; } +.@{fa-css-prefix}-black-tie:before { content: @fa-var-black-tie; } +.@{fa-css-prefix}-blackberry:before { content: @fa-var-blackberry; } +.@{fa-css-prefix}-blender:before { content: @fa-var-blender; } +.@{fa-css-prefix}-blind:before { content: @fa-var-blind; } +.@{fa-css-prefix}-blogger:before { content: @fa-var-blogger; } +.@{fa-css-prefix}-blogger-b:before { content: @fa-var-blogger-b; } +.@{fa-css-prefix}-bluetooth:before { content: @fa-var-bluetooth; } +.@{fa-css-prefix}-bluetooth-b:before { content: @fa-var-bluetooth-b; } +.@{fa-css-prefix}-bold:before { content: @fa-var-bold; } +.@{fa-css-prefix}-bolt:before { content: @fa-var-bolt; } +.@{fa-css-prefix}-bomb:before { content: @fa-var-bomb; } +.@{fa-css-prefix}-book:before { content: @fa-var-book; } +.@{fa-css-prefix}-book-open:before { content: @fa-var-book-open; } +.@{fa-css-prefix}-bookmark:before { content: @fa-var-bookmark; } +.@{fa-css-prefix}-bowling-ball:before { content: @fa-var-bowling-ball; } +.@{fa-css-prefix}-box:before { content: @fa-var-box; } +.@{fa-css-prefix}-box-open:before { content: @fa-var-box-open; } +.@{fa-css-prefix}-boxes:before { content: @fa-var-boxes; } +.@{fa-css-prefix}-braille:before { content: @fa-var-braille; } +.@{fa-css-prefix}-briefcase:before { content: @fa-var-briefcase; } +.@{fa-css-prefix}-briefcase-medical:before { content: @fa-var-briefcase-medical; } +.@{fa-css-prefix}-broadcast-tower:before { content: @fa-var-broadcast-tower; } +.@{fa-css-prefix}-broom:before { content: @fa-var-broom; } +.@{fa-css-prefix}-btc:before { content: @fa-var-btc; } +.@{fa-css-prefix}-bug:before { content: @fa-var-bug; } +.@{fa-css-prefix}-building:before { content: @fa-var-building; } +.@{fa-css-prefix}-bullhorn:before { content: @fa-var-bullhorn; } +.@{fa-css-prefix}-bullseye:before { content: @fa-var-bullseye; } +.@{fa-css-prefix}-burn:before { content: @fa-var-burn; } +.@{fa-css-prefix}-buromobelexperte:before { content: @fa-var-buromobelexperte; } +.@{fa-css-prefix}-bus:before { content: @fa-var-bus; } +.@{fa-css-prefix}-buysellads:before { content: @fa-var-buysellads; } +.@{fa-css-prefix}-calculator:before { content: @fa-var-calculator; } +.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar; } +.@{fa-css-prefix}-calendar-alt:before { content: @fa-var-calendar-alt; } +.@{fa-css-prefix}-calendar-check:before { content: @fa-var-calendar-check; } +.@{fa-css-prefix}-calendar-minus:before { content: @fa-var-calendar-minus; } +.@{fa-css-prefix}-calendar-plus:before { content: @fa-var-calendar-plus; } +.@{fa-css-prefix}-calendar-times:before { content: @fa-var-calendar-times; } +.@{fa-css-prefix}-camera:before { content: @fa-var-camera; } +.@{fa-css-prefix}-camera-retro:before { content: @fa-var-camera-retro; } +.@{fa-css-prefix}-capsules:before { content: @fa-var-capsules; } +.@{fa-css-prefix}-car:before { content: @fa-var-car; } +.@{fa-css-prefix}-caret-down:before { content: @fa-var-caret-down; } +.@{fa-css-prefix}-caret-left:before { content: @fa-var-caret-left; } +.@{fa-css-prefix}-caret-right:before { content: @fa-var-caret-right; } +.@{fa-css-prefix}-caret-square-down:before { content: @fa-var-caret-square-down; } +.@{fa-css-prefix}-caret-square-left:before { content: @fa-var-caret-square-left; } +.@{fa-css-prefix}-caret-square-right:before { content: @fa-var-caret-square-right; } +.@{fa-css-prefix}-caret-square-up:before { content: @fa-var-caret-square-up; } +.@{fa-css-prefix}-caret-up:before { content: @fa-var-caret-up; } +.@{fa-css-prefix}-cart-arrow-down:before { content: @fa-var-cart-arrow-down; } +.@{fa-css-prefix}-cart-plus:before { content: @fa-var-cart-plus; } +.@{fa-css-prefix}-cc-amazon-pay:before { content: @fa-var-cc-amazon-pay; } +.@{fa-css-prefix}-cc-amex:before { content: @fa-var-cc-amex; } +.@{fa-css-prefix}-cc-apple-pay:before { content: @fa-var-cc-apple-pay; } +.@{fa-css-prefix}-cc-diners-club:before { content: @fa-var-cc-diners-club; } +.@{fa-css-prefix}-cc-discover:before { content: @fa-var-cc-discover; } +.@{fa-css-prefix}-cc-jcb:before { content: @fa-var-cc-jcb; } +.@{fa-css-prefix}-cc-mastercard:before { content: @fa-var-cc-mastercard; } +.@{fa-css-prefix}-cc-paypal:before { content: @fa-var-cc-paypal; } +.@{fa-css-prefix}-cc-stripe:before { content: @fa-var-cc-stripe; } +.@{fa-css-prefix}-cc-visa:before { content: @fa-var-cc-visa; } +.@{fa-css-prefix}-centercode:before { content: @fa-var-centercode; } +.@{fa-css-prefix}-certificate:before { content: @fa-var-certificate; } +.@{fa-css-prefix}-chalkboard:before { content: @fa-var-chalkboard; } +.@{fa-css-prefix}-chalkboard-teacher:before { content: @fa-var-chalkboard-teacher; } +.@{fa-css-prefix}-chart-area:before { content: @fa-var-chart-area; } +.@{fa-css-prefix}-chart-bar:before { content: @fa-var-chart-bar; } +.@{fa-css-prefix}-chart-line:before { content: @fa-var-chart-line; } +.@{fa-css-prefix}-chart-pie:before { content: @fa-var-chart-pie; } +.@{fa-css-prefix}-check:before { content: @fa-var-check; } +.@{fa-css-prefix}-check-circle:before { content: @fa-var-check-circle; } +.@{fa-css-prefix}-check-square:before { content: @fa-var-check-square; } +.@{fa-css-prefix}-chess:before { content: @fa-var-chess; } +.@{fa-css-prefix}-chess-bishop:before { content: @fa-var-chess-bishop; } +.@{fa-css-prefix}-chess-board:before { content: @fa-var-chess-board; } +.@{fa-css-prefix}-chess-king:before { content: @fa-var-chess-king; } +.@{fa-css-prefix}-chess-knight:before { content: @fa-var-chess-knight; } +.@{fa-css-prefix}-chess-pawn:before { content: @fa-var-chess-pawn; } +.@{fa-css-prefix}-chess-queen:before { content: @fa-var-chess-queen; } +.@{fa-css-prefix}-chess-rook:before { content: @fa-var-chess-rook; } +.@{fa-css-prefix}-chevron-circle-down:before { content: @fa-var-chevron-circle-down; } +.@{fa-css-prefix}-chevron-circle-left:before { content: @fa-var-chevron-circle-left; } +.@{fa-css-prefix}-chevron-circle-right:before { content: @fa-var-chevron-circle-right; } +.@{fa-css-prefix}-chevron-circle-up:before { content: @fa-var-chevron-circle-up; } +.@{fa-css-prefix}-chevron-down:before { content: @fa-var-chevron-down; } +.@{fa-css-prefix}-chevron-left:before { content: @fa-var-chevron-left; } +.@{fa-css-prefix}-chevron-right:before { content: @fa-var-chevron-right; } +.@{fa-css-prefix}-chevron-up:before { content: @fa-var-chevron-up; } +.@{fa-css-prefix}-child:before { content: @fa-var-child; } +.@{fa-css-prefix}-chrome:before { content: @fa-var-chrome; } +.@{fa-css-prefix}-church:before { content: @fa-var-church; } +.@{fa-css-prefix}-circle:before { content: @fa-var-circle; } +.@{fa-css-prefix}-circle-notch:before { content: @fa-var-circle-notch; } +.@{fa-css-prefix}-clipboard:before { content: @fa-var-clipboard; } +.@{fa-css-prefix}-clipboard-check:before { content: @fa-var-clipboard-check; } +.@{fa-css-prefix}-clipboard-list:before { content: @fa-var-clipboard-list; } +.@{fa-css-prefix}-clock:before { content: @fa-var-clock; } +.@{fa-css-prefix}-clone:before { content: @fa-var-clone; } +.@{fa-css-prefix}-closed-captioning:before { content: @fa-var-closed-captioning; } +.@{fa-css-prefix}-cloud:before { content: @fa-var-cloud; } +.@{fa-css-prefix}-cloud-download-alt:before { content: @fa-var-cloud-download-alt; } +.@{fa-css-prefix}-cloud-upload-alt:before { content: @fa-var-cloud-upload-alt; } +.@{fa-css-prefix}-cloudscale:before { content: @fa-var-cloudscale; } +.@{fa-css-prefix}-cloudsmith:before { content: @fa-var-cloudsmith; } +.@{fa-css-prefix}-cloudversify:before { content: @fa-var-cloudversify; } +.@{fa-css-prefix}-code:before { content: @fa-var-code; } +.@{fa-css-prefix}-code-branch:before { content: @fa-var-code-branch; } +.@{fa-css-prefix}-codepen:before { content: @fa-var-codepen; } +.@{fa-css-prefix}-codiepie:before { content: @fa-var-codiepie; } +.@{fa-css-prefix}-coffee:before { content: @fa-var-coffee; } +.@{fa-css-prefix}-cog:before { content: @fa-var-cog; } +.@{fa-css-prefix}-cogs:before { content: @fa-var-cogs; } +.@{fa-css-prefix}-coins:before { content: @fa-var-coins; } +.@{fa-css-prefix}-columns:before { content: @fa-var-columns; } +.@{fa-css-prefix}-comment:before { content: @fa-var-comment; } +.@{fa-css-prefix}-comment-alt:before { content: @fa-var-comment-alt; } +.@{fa-css-prefix}-comment-dots:before { content: @fa-var-comment-dots; } +.@{fa-css-prefix}-comment-slash:before { content: @fa-var-comment-slash; } +.@{fa-css-prefix}-comments:before { content: @fa-var-comments; } +.@{fa-css-prefix}-compact-disc:before { content: @fa-var-compact-disc; } +.@{fa-css-prefix}-compass:before { content: @fa-var-compass; } +.@{fa-css-prefix}-compress:before { content: @fa-var-compress; } +.@{fa-css-prefix}-connectdevelop:before { content: @fa-var-connectdevelop; } +.@{fa-css-prefix}-contao:before { content: @fa-var-contao; } +.@{fa-css-prefix}-copy:before { content: @fa-var-copy; } +.@{fa-css-prefix}-copyright:before { content: @fa-var-copyright; } +.@{fa-css-prefix}-couch:before { content: @fa-var-couch; } +.@{fa-css-prefix}-cpanel:before { content: @fa-var-cpanel; } +.@{fa-css-prefix}-creative-commons:before { content: @fa-var-creative-commons; } +.@{fa-css-prefix}-creative-commons-by:before { content: @fa-var-creative-commons-by; } +.@{fa-css-prefix}-creative-commons-nc:before { content: @fa-var-creative-commons-nc; } +.@{fa-css-prefix}-creative-commons-nc-eu:before { content: @fa-var-creative-commons-nc-eu; } +.@{fa-css-prefix}-creative-commons-nc-jp:before { content: @fa-var-creative-commons-nc-jp; } +.@{fa-css-prefix}-creative-commons-nd:before { content: @fa-var-creative-commons-nd; } +.@{fa-css-prefix}-creative-commons-pd:before { content: @fa-var-creative-commons-pd; } +.@{fa-css-prefix}-creative-commons-pd-alt:before { content: @fa-var-creative-commons-pd-alt; } +.@{fa-css-prefix}-creative-commons-remix:before { content: @fa-var-creative-commons-remix; } +.@{fa-css-prefix}-creative-commons-sa:before { content: @fa-var-creative-commons-sa; } +.@{fa-css-prefix}-creative-commons-sampling:before { content: @fa-var-creative-commons-sampling; } +.@{fa-css-prefix}-creative-commons-sampling-plus:before { content: @fa-var-creative-commons-sampling-plus; } +.@{fa-css-prefix}-creative-commons-share:before { content: @fa-var-creative-commons-share; } +.@{fa-css-prefix}-credit-card:before { content: @fa-var-credit-card; } +.@{fa-css-prefix}-crop:before { content: @fa-var-crop; } +.@{fa-css-prefix}-crosshairs:before { content: @fa-var-crosshairs; } +.@{fa-css-prefix}-crow:before { content: @fa-var-crow; } +.@{fa-css-prefix}-crown:before { content: @fa-var-crown; } +.@{fa-css-prefix}-css3:before { content: @fa-var-css3; } +.@{fa-css-prefix}-css3-alt:before { content: @fa-var-css3-alt; } +.@{fa-css-prefix}-cube:before { content: @fa-var-cube; } +.@{fa-css-prefix}-cubes:before { content: @fa-var-cubes; } +.@{fa-css-prefix}-cut:before { content: @fa-var-cut; } +.@{fa-css-prefix}-cuttlefish:before { content: @fa-var-cuttlefish; } +.@{fa-css-prefix}-d-and-d:before { content: @fa-var-d-and-d; } +.@{fa-css-prefix}-dashcube:before { content: @fa-var-dashcube; } +.@{fa-css-prefix}-database:before { content: @fa-var-database; } +.@{fa-css-prefix}-deaf:before { content: @fa-var-deaf; } +.@{fa-css-prefix}-delicious:before { content: @fa-var-delicious; } +.@{fa-css-prefix}-deploydog:before { content: @fa-var-deploydog; } +.@{fa-css-prefix}-deskpro:before { content: @fa-var-deskpro; } +.@{fa-css-prefix}-desktop:before { content: @fa-var-desktop; } +.@{fa-css-prefix}-deviantart:before { content: @fa-var-deviantart; } +.@{fa-css-prefix}-diagnoses:before { content: @fa-var-diagnoses; } +.@{fa-css-prefix}-dice:before { content: @fa-var-dice; } +.@{fa-css-prefix}-dice-five:before { content: @fa-var-dice-five; } +.@{fa-css-prefix}-dice-four:before { content: @fa-var-dice-four; } +.@{fa-css-prefix}-dice-one:before { content: @fa-var-dice-one; } +.@{fa-css-prefix}-dice-six:before { content: @fa-var-dice-six; } +.@{fa-css-prefix}-dice-three:before { content: @fa-var-dice-three; } +.@{fa-css-prefix}-dice-two:before { content: @fa-var-dice-two; } +.@{fa-css-prefix}-digg:before { content: @fa-var-digg; } +.@{fa-css-prefix}-digital-ocean:before { content: @fa-var-digital-ocean; } +.@{fa-css-prefix}-discord:before { content: @fa-var-discord; } +.@{fa-css-prefix}-discourse:before { content: @fa-var-discourse; } +.@{fa-css-prefix}-divide:before { content: @fa-var-divide; } +.@{fa-css-prefix}-dna:before { content: @fa-var-dna; } +.@{fa-css-prefix}-dochub:before { content: @fa-var-dochub; } +.@{fa-css-prefix}-docker:before { content: @fa-var-docker; } +.@{fa-css-prefix}-dollar-sign:before { content: @fa-var-dollar-sign; } +.@{fa-css-prefix}-dolly:before { content: @fa-var-dolly; } +.@{fa-css-prefix}-dolly-flatbed:before { content: @fa-var-dolly-flatbed; } +.@{fa-css-prefix}-donate:before { content: @fa-var-donate; } +.@{fa-css-prefix}-door-closed:before { content: @fa-var-door-closed; } +.@{fa-css-prefix}-door-open:before { content: @fa-var-door-open; } +.@{fa-css-prefix}-dot-circle:before { content: @fa-var-dot-circle; } +.@{fa-css-prefix}-dove:before { content: @fa-var-dove; } +.@{fa-css-prefix}-download:before { content: @fa-var-download; } +.@{fa-css-prefix}-draft2digital:before { content: @fa-var-draft2digital; } +.@{fa-css-prefix}-dribbble:before { content: @fa-var-dribbble; } +.@{fa-css-prefix}-dribbble-square:before { content: @fa-var-dribbble-square; } +.@{fa-css-prefix}-dropbox:before { content: @fa-var-dropbox; } +.@{fa-css-prefix}-drupal:before { content: @fa-var-drupal; } +.@{fa-css-prefix}-dumbbell:before { content: @fa-var-dumbbell; } +.@{fa-css-prefix}-dyalog:before { content: @fa-var-dyalog; } +.@{fa-css-prefix}-earlybirds:before { content: @fa-var-earlybirds; } +.@{fa-css-prefix}-ebay:before { content: @fa-var-ebay; } +.@{fa-css-prefix}-edge:before { content: @fa-var-edge; } +.@{fa-css-prefix}-edit:before { content: @fa-var-edit; } +.@{fa-css-prefix}-eject:before { content: @fa-var-eject; } +.@{fa-css-prefix}-elementor:before { content: @fa-var-elementor; } +.@{fa-css-prefix}-ellipsis-h:before { content: @fa-var-ellipsis-h; } +.@{fa-css-prefix}-ellipsis-v:before { content: @fa-var-ellipsis-v; } +.@{fa-css-prefix}-ember:before { content: @fa-var-ember; } +.@{fa-css-prefix}-empire:before { content: @fa-var-empire; } +.@{fa-css-prefix}-envelope:before { content: @fa-var-envelope; } +.@{fa-css-prefix}-envelope-open:before { content: @fa-var-envelope-open; } +.@{fa-css-prefix}-envelope-square:before { content: @fa-var-envelope-square; } +.@{fa-css-prefix}-envira:before { content: @fa-var-envira; } +.@{fa-css-prefix}-equals:before { content: @fa-var-equals; } +.@{fa-css-prefix}-eraser:before { content: @fa-var-eraser; } +.@{fa-css-prefix}-erlang:before { content: @fa-var-erlang; } +.@{fa-css-prefix}-ethereum:before { content: @fa-var-ethereum; } +.@{fa-css-prefix}-etsy:before { content: @fa-var-etsy; } +.@{fa-css-prefix}-euro-sign:before { content: @fa-var-euro-sign; } +.@{fa-css-prefix}-exchange-alt:before { content: @fa-var-exchange-alt; } +.@{fa-css-prefix}-exclamation:before { content: @fa-var-exclamation; } +.@{fa-css-prefix}-exclamation-circle:before { content: @fa-var-exclamation-circle; } +.@{fa-css-prefix}-exclamation-triangle:before { content: @fa-var-exclamation-triangle; } +.@{fa-css-prefix}-expand:before { content: @fa-var-expand; } +.@{fa-css-prefix}-expand-arrows-alt:before { content: @fa-var-expand-arrows-alt; } +.@{fa-css-prefix}-expeditedssl:before { content: @fa-var-expeditedssl; } +.@{fa-css-prefix}-external-link-alt:before { content: @fa-var-external-link-alt; } +.@{fa-css-prefix}-external-link-square-alt:before { content: @fa-var-external-link-square-alt; } +.@{fa-css-prefix}-eye:before { content: @fa-var-eye; } +.@{fa-css-prefix}-eye-dropper:before { content: @fa-var-eye-dropper; } +.@{fa-css-prefix}-eye-slash:before { content: @fa-var-eye-slash; } +.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook; } +.@{fa-css-prefix}-facebook-f:before { content: @fa-var-facebook-f; } +.@{fa-css-prefix}-facebook-messenger:before { content: @fa-var-facebook-messenger; } +.@{fa-css-prefix}-facebook-square:before { content: @fa-var-facebook-square; } +.@{fa-css-prefix}-fast-backward:before { content: @fa-var-fast-backward; } +.@{fa-css-prefix}-fast-forward:before { content: @fa-var-fast-forward; } +.@{fa-css-prefix}-fax:before { content: @fa-var-fax; } +.@{fa-css-prefix}-feather:before { content: @fa-var-feather; } +.@{fa-css-prefix}-female:before { content: @fa-var-female; } +.@{fa-css-prefix}-fighter-jet:before { content: @fa-var-fighter-jet; } +.@{fa-css-prefix}-file:before { content: @fa-var-file; } +.@{fa-css-prefix}-file-alt:before { content: @fa-var-file-alt; } +.@{fa-css-prefix}-file-archive:before { content: @fa-var-file-archive; } +.@{fa-css-prefix}-file-audio:before { content: @fa-var-file-audio; } +.@{fa-css-prefix}-file-code:before { content: @fa-var-file-code; } +.@{fa-css-prefix}-file-excel:before { content: @fa-var-file-excel; } +.@{fa-css-prefix}-file-image:before { content: @fa-var-file-image; } +.@{fa-css-prefix}-file-medical:before { content: @fa-var-file-medical; } +.@{fa-css-prefix}-file-medical-alt:before { content: @fa-var-file-medical-alt; } +.@{fa-css-prefix}-file-pdf:before { content: @fa-var-file-pdf; } +.@{fa-css-prefix}-file-powerpoint:before { content: @fa-var-file-powerpoint; } +.@{fa-css-prefix}-file-video:before { content: @fa-var-file-video; } +.@{fa-css-prefix}-file-word:before { content: @fa-var-file-word; } +.@{fa-css-prefix}-film:before { content: @fa-var-film; } +.@{fa-css-prefix}-filter:before { content: @fa-var-filter; } +.@{fa-css-prefix}-fire:before { content: @fa-var-fire; } +.@{fa-css-prefix}-fire-extinguisher:before { content: @fa-var-fire-extinguisher; } +.@{fa-css-prefix}-firefox:before { content: @fa-var-firefox; } +.@{fa-css-prefix}-first-aid:before { content: @fa-var-first-aid; } +.@{fa-css-prefix}-first-order:before { content: @fa-var-first-order; } +.@{fa-css-prefix}-first-order-alt:before { content: @fa-var-first-order-alt; } +.@{fa-css-prefix}-firstdraft:before { content: @fa-var-firstdraft; } +.@{fa-css-prefix}-flag:before { content: @fa-var-flag; } +.@{fa-css-prefix}-flag-checkered:before { content: @fa-var-flag-checkered; } +.@{fa-css-prefix}-flask:before { content: @fa-var-flask; } +.@{fa-css-prefix}-flickr:before { content: @fa-var-flickr; } +.@{fa-css-prefix}-flipboard:before { content: @fa-var-flipboard; } +.@{fa-css-prefix}-fly:before { content: @fa-var-fly; } +.@{fa-css-prefix}-folder:before { content: @fa-var-folder; } +.@{fa-css-prefix}-folder-open:before { content: @fa-var-folder-open; } +.@{fa-css-prefix}-font:before { content: @fa-var-font; } +.@{fa-css-prefix}-font-awesome:before { content: @fa-var-font-awesome; } +.@{fa-css-prefix}-font-awesome-alt:before { content: @fa-var-font-awesome-alt; } +.@{fa-css-prefix}-font-awesome-flag:before { content: @fa-var-font-awesome-flag; } +.@{fa-css-prefix}-font-awesome-logo-full:before { content: @fa-var-font-awesome-logo-full; } +.@{fa-css-prefix}-fonticons:before { content: @fa-var-fonticons; } +.@{fa-css-prefix}-fonticons-fi:before { content: @fa-var-fonticons-fi; } +.@{fa-css-prefix}-football-ball:before { content: @fa-var-football-ball; } +.@{fa-css-prefix}-fort-awesome:before { content: @fa-var-fort-awesome; } +.@{fa-css-prefix}-fort-awesome-alt:before { content: @fa-var-fort-awesome-alt; } +.@{fa-css-prefix}-forumbee:before { content: @fa-var-forumbee; } +.@{fa-css-prefix}-forward:before { content: @fa-var-forward; } +.@{fa-css-prefix}-foursquare:before { content: @fa-var-foursquare; } +.@{fa-css-prefix}-free-code-camp:before { content: @fa-var-free-code-camp; } +.@{fa-css-prefix}-freebsd:before { content: @fa-var-freebsd; } +.@{fa-css-prefix}-frog:before { content: @fa-var-frog; } +.@{fa-css-prefix}-frown:before { content: @fa-var-frown; } +.@{fa-css-prefix}-fulcrum:before { content: @fa-var-fulcrum; } +.@{fa-css-prefix}-futbol:before { content: @fa-var-futbol; } +.@{fa-css-prefix}-galactic-republic:before { content: @fa-var-galactic-republic; } +.@{fa-css-prefix}-galactic-senate:before { content: @fa-var-galactic-senate; } +.@{fa-css-prefix}-gamepad:before { content: @fa-var-gamepad; } +.@{fa-css-prefix}-gas-pump:before { content: @fa-var-gas-pump; } +.@{fa-css-prefix}-gavel:before { content: @fa-var-gavel; } +.@{fa-css-prefix}-gem:before { content: @fa-var-gem; } +.@{fa-css-prefix}-genderless:before { content: @fa-var-genderless; } +.@{fa-css-prefix}-get-pocket:before { content: @fa-var-get-pocket; } +.@{fa-css-prefix}-gg:before { content: @fa-var-gg; } +.@{fa-css-prefix}-gg-circle:before { content: @fa-var-gg-circle; } +.@{fa-css-prefix}-gift:before { content: @fa-var-gift; } +.@{fa-css-prefix}-git:before { content: @fa-var-git; } +.@{fa-css-prefix}-git-square:before { content: @fa-var-git-square; } +.@{fa-css-prefix}-github:before { content: @fa-var-github; } +.@{fa-css-prefix}-github-alt:before { content: @fa-var-github-alt; } +.@{fa-css-prefix}-github-square:before { content: @fa-var-github-square; } +.@{fa-css-prefix}-gitkraken:before { content: @fa-var-gitkraken; } +.@{fa-css-prefix}-gitlab:before { content: @fa-var-gitlab; } +.@{fa-css-prefix}-gitter:before { content: @fa-var-gitter; } +.@{fa-css-prefix}-glass-martini:before { content: @fa-var-glass-martini; } +.@{fa-css-prefix}-glasses:before { content: @fa-var-glasses; } +.@{fa-css-prefix}-glide:before { content: @fa-var-glide; } +.@{fa-css-prefix}-glide-g:before { content: @fa-var-glide-g; } +.@{fa-css-prefix}-globe:before { content: @fa-var-globe; } +.@{fa-css-prefix}-gofore:before { content: @fa-var-gofore; } +.@{fa-css-prefix}-golf-ball:before { content: @fa-var-golf-ball; } +.@{fa-css-prefix}-goodreads:before { content: @fa-var-goodreads; } +.@{fa-css-prefix}-goodreads-g:before { content: @fa-var-goodreads-g; } +.@{fa-css-prefix}-google:before { content: @fa-var-google; } +.@{fa-css-prefix}-google-drive:before { content: @fa-var-google-drive; } +.@{fa-css-prefix}-google-play:before { content: @fa-var-google-play; } +.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus; } +.@{fa-css-prefix}-google-plus-g:before { content: @fa-var-google-plus-g; } +.@{fa-css-prefix}-google-plus-square:before { content: @fa-var-google-plus-square; } +.@{fa-css-prefix}-google-wallet:before { content: @fa-var-google-wallet; } +.@{fa-css-prefix}-graduation-cap:before { content: @fa-var-graduation-cap; } +.@{fa-css-prefix}-gratipay:before { content: @fa-var-gratipay; } +.@{fa-css-prefix}-grav:before { content: @fa-var-grav; } +.@{fa-css-prefix}-greater-than:before { content: @fa-var-greater-than; } +.@{fa-css-prefix}-greater-than-equal:before { content: @fa-var-greater-than-equal; } +.@{fa-css-prefix}-gripfire:before { content: @fa-var-gripfire; } +.@{fa-css-prefix}-grunt:before { content: @fa-var-grunt; } +.@{fa-css-prefix}-gulp:before { content: @fa-var-gulp; } +.@{fa-css-prefix}-h-square:before { content: @fa-var-h-square; } +.@{fa-css-prefix}-hacker-news:before { content: @fa-var-hacker-news; } +.@{fa-css-prefix}-hacker-news-square:before { content: @fa-var-hacker-news-square; } +.@{fa-css-prefix}-hand-holding:before { content: @fa-var-hand-holding; } +.@{fa-css-prefix}-hand-holding-heart:before { content: @fa-var-hand-holding-heart; } +.@{fa-css-prefix}-hand-holding-usd:before { content: @fa-var-hand-holding-usd; } +.@{fa-css-prefix}-hand-lizard:before { content: @fa-var-hand-lizard; } +.@{fa-css-prefix}-hand-paper:before { content: @fa-var-hand-paper; } +.@{fa-css-prefix}-hand-peace:before { content: @fa-var-hand-peace; } +.@{fa-css-prefix}-hand-point-down:before { content: @fa-var-hand-point-down; } +.@{fa-css-prefix}-hand-point-left:before { content: @fa-var-hand-point-left; } +.@{fa-css-prefix}-hand-point-right:before { content: @fa-var-hand-point-right; } +.@{fa-css-prefix}-hand-point-up:before { content: @fa-var-hand-point-up; } +.@{fa-css-prefix}-hand-pointer:before { content: @fa-var-hand-pointer; } +.@{fa-css-prefix}-hand-rock:before { content: @fa-var-hand-rock; } +.@{fa-css-prefix}-hand-scissors:before { content: @fa-var-hand-scissors; } +.@{fa-css-prefix}-hand-spock:before { content: @fa-var-hand-spock; } +.@{fa-css-prefix}-hands:before { content: @fa-var-hands; } +.@{fa-css-prefix}-hands-helping:before { content: @fa-var-hands-helping; } +.@{fa-css-prefix}-handshake:before { content: @fa-var-handshake; } +.@{fa-css-prefix}-hashtag:before { content: @fa-var-hashtag; } +.@{fa-css-prefix}-hdd:before { content: @fa-var-hdd; } +.@{fa-css-prefix}-heading:before { content: @fa-var-heading; } +.@{fa-css-prefix}-headphones:before { content: @fa-var-headphones; } +.@{fa-css-prefix}-heart:before { content: @fa-var-heart; } +.@{fa-css-prefix}-heartbeat:before { content: @fa-var-heartbeat; } +.@{fa-css-prefix}-helicopter:before { content: @fa-var-helicopter; } +.@{fa-css-prefix}-hips:before { content: @fa-var-hips; } +.@{fa-css-prefix}-hire-a-helper:before { content: @fa-var-hire-a-helper; } +.@{fa-css-prefix}-history:before { content: @fa-var-history; } +.@{fa-css-prefix}-hockey-puck:before { content: @fa-var-hockey-puck; } +.@{fa-css-prefix}-home:before { content: @fa-var-home; } +.@{fa-css-prefix}-hooli:before { content: @fa-var-hooli; } +.@{fa-css-prefix}-hospital:before { content: @fa-var-hospital; } +.@{fa-css-prefix}-hospital-alt:before { content: @fa-var-hospital-alt; } +.@{fa-css-prefix}-hospital-symbol:before { content: @fa-var-hospital-symbol; } +.@{fa-css-prefix}-hotjar:before { content: @fa-var-hotjar; } +.@{fa-css-prefix}-hourglass:before { content: @fa-var-hourglass; } +.@{fa-css-prefix}-hourglass-end:before { content: @fa-var-hourglass-end; } +.@{fa-css-prefix}-hourglass-half:before { content: @fa-var-hourglass-half; } +.@{fa-css-prefix}-hourglass-start:before { content: @fa-var-hourglass-start; } +.@{fa-css-prefix}-houzz:before { content: @fa-var-houzz; } +.@{fa-css-prefix}-html5:before { content: @fa-var-html5; } +.@{fa-css-prefix}-hubspot:before { content: @fa-var-hubspot; } +.@{fa-css-prefix}-i-cursor:before { content: @fa-var-i-cursor; } +.@{fa-css-prefix}-id-badge:before { content: @fa-var-id-badge; } +.@{fa-css-prefix}-id-card:before { content: @fa-var-id-card; } +.@{fa-css-prefix}-id-card-alt:before { content: @fa-var-id-card-alt; } +.@{fa-css-prefix}-image:before { content: @fa-var-image; } +.@{fa-css-prefix}-images:before { content: @fa-var-images; } +.@{fa-css-prefix}-imdb:before { content: @fa-var-imdb; } +.@{fa-css-prefix}-inbox:before { content: @fa-var-inbox; } +.@{fa-css-prefix}-indent:before { content: @fa-var-indent; } +.@{fa-css-prefix}-industry:before { content: @fa-var-industry; } +.@{fa-css-prefix}-infinity:before { content: @fa-var-infinity; } +.@{fa-css-prefix}-info:before { content: @fa-var-info; } +.@{fa-css-prefix}-info-circle:before { content: @fa-var-info-circle; } +.@{fa-css-prefix}-instagram:before { content: @fa-var-instagram; } +.@{fa-css-prefix}-internet-explorer:before { content: @fa-var-internet-explorer; } +.@{fa-css-prefix}-ioxhost:before { content: @fa-var-ioxhost; } +.@{fa-css-prefix}-italic:before { content: @fa-var-italic; } +.@{fa-css-prefix}-itunes:before { content: @fa-var-itunes; } +.@{fa-css-prefix}-itunes-note:before { content: @fa-var-itunes-note; } +.@{fa-css-prefix}-java:before { content: @fa-var-java; } +.@{fa-css-prefix}-jedi-order:before { content: @fa-var-jedi-order; } +.@{fa-css-prefix}-jenkins:before { content: @fa-var-jenkins; } +.@{fa-css-prefix}-joget:before { content: @fa-var-joget; } +.@{fa-css-prefix}-joomla:before { content: @fa-var-joomla; } +.@{fa-css-prefix}-js:before { content: @fa-var-js; } +.@{fa-css-prefix}-js-square:before { content: @fa-var-js-square; } +.@{fa-css-prefix}-jsfiddle:before { content: @fa-var-jsfiddle; } +.@{fa-css-prefix}-key:before { content: @fa-var-key; } +.@{fa-css-prefix}-keybase:before { content: @fa-var-keybase; } +.@{fa-css-prefix}-keyboard:before { content: @fa-var-keyboard; } +.@{fa-css-prefix}-keycdn:before { content: @fa-var-keycdn; } +.@{fa-css-prefix}-kickstarter:before { content: @fa-var-kickstarter; } +.@{fa-css-prefix}-kickstarter-k:before { content: @fa-var-kickstarter-k; } +.@{fa-css-prefix}-kiwi-bird:before { content: @fa-var-kiwi-bird; } +.@{fa-css-prefix}-korvue:before { content: @fa-var-korvue; } +.@{fa-css-prefix}-language:before { content: @fa-var-language; } +.@{fa-css-prefix}-laptop:before { content: @fa-var-laptop; } +.@{fa-css-prefix}-laravel:before { content: @fa-var-laravel; } +.@{fa-css-prefix}-lastfm:before { content: @fa-var-lastfm; } +.@{fa-css-prefix}-lastfm-square:before { content: @fa-var-lastfm-square; } +.@{fa-css-prefix}-leaf:before { content: @fa-var-leaf; } +.@{fa-css-prefix}-leanpub:before { content: @fa-var-leanpub; } +.@{fa-css-prefix}-lemon:before { content: @fa-var-lemon; } +.@{fa-css-prefix}-less:before { content: @fa-var-less; } +.@{fa-css-prefix}-less-than:before { content: @fa-var-less-than; } +.@{fa-css-prefix}-less-than-equal:before { content: @fa-var-less-than-equal; } +.@{fa-css-prefix}-level-down-alt:before { content: @fa-var-level-down-alt; } +.@{fa-css-prefix}-level-up-alt:before { content: @fa-var-level-up-alt; } +.@{fa-css-prefix}-life-ring:before { content: @fa-var-life-ring; } +.@{fa-css-prefix}-lightbulb:before { content: @fa-var-lightbulb; } +.@{fa-css-prefix}-line:before { content: @fa-var-line; } +.@{fa-css-prefix}-link:before { content: @fa-var-link; } +.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin; } +.@{fa-css-prefix}-linkedin-in:before { content: @fa-var-linkedin-in; } +.@{fa-css-prefix}-linode:before { content: @fa-var-linode; } +.@{fa-css-prefix}-linux:before { content: @fa-var-linux; } +.@{fa-css-prefix}-lira-sign:before { content: @fa-var-lira-sign; } +.@{fa-css-prefix}-list:before { content: @fa-var-list; } +.@{fa-css-prefix}-list-alt:before { content: @fa-var-list-alt; } +.@{fa-css-prefix}-list-ol:before { content: @fa-var-list-ol; } +.@{fa-css-prefix}-list-ul:before { content: @fa-var-list-ul; } +.@{fa-css-prefix}-location-arrow:before { content: @fa-var-location-arrow; } +.@{fa-css-prefix}-lock:before { content: @fa-var-lock; } +.@{fa-css-prefix}-lock-open:before { content: @fa-var-lock-open; } +.@{fa-css-prefix}-long-arrow-alt-down:before { content: @fa-var-long-arrow-alt-down; } +.@{fa-css-prefix}-long-arrow-alt-left:before { content: @fa-var-long-arrow-alt-left; } +.@{fa-css-prefix}-long-arrow-alt-right:before { content: @fa-var-long-arrow-alt-right; } +.@{fa-css-prefix}-long-arrow-alt-up:before { content: @fa-var-long-arrow-alt-up; } +.@{fa-css-prefix}-low-vision:before { content: @fa-var-low-vision; } +.@{fa-css-prefix}-lyft:before { content: @fa-var-lyft; } +.@{fa-css-prefix}-magento:before { content: @fa-var-magento; } +.@{fa-css-prefix}-magic:before { content: @fa-var-magic; } +.@{fa-css-prefix}-magnet:before { content: @fa-var-magnet; } +.@{fa-css-prefix}-male:before { content: @fa-var-male; } +.@{fa-css-prefix}-mandalorian:before { content: @fa-var-mandalorian; } +.@{fa-css-prefix}-map:before { content: @fa-var-map; } +.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker; } +.@{fa-css-prefix}-map-marker-alt:before { content: @fa-var-map-marker-alt; } +.@{fa-css-prefix}-map-pin:before { content: @fa-var-map-pin; } +.@{fa-css-prefix}-map-signs:before { content: @fa-var-map-signs; } +.@{fa-css-prefix}-mars:before { content: @fa-var-mars; } +.@{fa-css-prefix}-mars-double:before { content: @fa-var-mars-double; } +.@{fa-css-prefix}-mars-stroke:before { content: @fa-var-mars-stroke; } +.@{fa-css-prefix}-mars-stroke-h:before { content: @fa-var-mars-stroke-h; } +.@{fa-css-prefix}-mars-stroke-v:before { content: @fa-var-mars-stroke-v; } +.@{fa-css-prefix}-mastodon:before { content: @fa-var-mastodon; } +.@{fa-css-prefix}-maxcdn:before { content: @fa-var-maxcdn; } +.@{fa-css-prefix}-medapps:before { content: @fa-var-medapps; } +.@{fa-css-prefix}-medium:before { content: @fa-var-medium; } +.@{fa-css-prefix}-medium-m:before { content: @fa-var-medium-m; } +.@{fa-css-prefix}-medkit:before { content: @fa-var-medkit; } +.@{fa-css-prefix}-medrt:before { content: @fa-var-medrt; } +.@{fa-css-prefix}-meetup:before { content: @fa-var-meetup; } +.@{fa-css-prefix}-meh:before { content: @fa-var-meh; } +.@{fa-css-prefix}-memory:before { content: @fa-var-memory; } +.@{fa-css-prefix}-mercury:before { content: @fa-var-mercury; } +.@{fa-css-prefix}-microchip:before { content: @fa-var-microchip; } +.@{fa-css-prefix}-microphone:before { content: @fa-var-microphone; } +.@{fa-css-prefix}-microphone-alt:before { content: @fa-var-microphone-alt; } +.@{fa-css-prefix}-microphone-alt-slash:before { content: @fa-var-microphone-alt-slash; } +.@{fa-css-prefix}-microphone-slash:before { content: @fa-var-microphone-slash; } +.@{fa-css-prefix}-microsoft:before { content: @fa-var-microsoft; } +.@{fa-css-prefix}-minus:before { content: @fa-var-minus; } +.@{fa-css-prefix}-minus-circle:before { content: @fa-var-minus-circle; } +.@{fa-css-prefix}-minus-square:before { content: @fa-var-minus-square; } +.@{fa-css-prefix}-mix:before { content: @fa-var-mix; } +.@{fa-css-prefix}-mixcloud:before { content: @fa-var-mixcloud; } +.@{fa-css-prefix}-mizuni:before { content: @fa-var-mizuni; } +.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile; } +.@{fa-css-prefix}-mobile-alt:before { content: @fa-var-mobile-alt; } +.@{fa-css-prefix}-modx:before { content: @fa-var-modx; } +.@{fa-css-prefix}-monero:before { content: @fa-var-monero; } +.@{fa-css-prefix}-money-bill:before { content: @fa-var-money-bill; } +.@{fa-css-prefix}-money-bill-alt:before { content: @fa-var-money-bill-alt; } +.@{fa-css-prefix}-money-bill-wave:before { content: @fa-var-money-bill-wave; } +.@{fa-css-prefix}-money-bill-wave-alt:before { content: @fa-var-money-bill-wave-alt; } +.@{fa-css-prefix}-money-check:before { content: @fa-var-money-check; } +.@{fa-css-prefix}-money-check-alt:before { content: @fa-var-money-check-alt; } +.@{fa-css-prefix}-moon:before { content: @fa-var-moon; } +.@{fa-css-prefix}-motorcycle:before { content: @fa-var-motorcycle; } +.@{fa-css-prefix}-mouse-pointer:before { content: @fa-var-mouse-pointer; } +.@{fa-css-prefix}-music:before { content: @fa-var-music; } +.@{fa-css-prefix}-napster:before { content: @fa-var-napster; } +.@{fa-css-prefix}-neuter:before { content: @fa-var-neuter; } +.@{fa-css-prefix}-newspaper:before { content: @fa-var-newspaper; } +.@{fa-css-prefix}-nintendo-switch:before { content: @fa-var-nintendo-switch; } +.@{fa-css-prefix}-node:before { content: @fa-var-node; } +.@{fa-css-prefix}-node-js:before { content: @fa-var-node-js; } +.@{fa-css-prefix}-not-equal:before { content: @fa-var-not-equal; } +.@{fa-css-prefix}-notes-medical:before { content: @fa-var-notes-medical; } +.@{fa-css-prefix}-npm:before { content: @fa-var-npm; } +.@{fa-css-prefix}-ns8:before { content: @fa-var-ns8; } +.@{fa-css-prefix}-nutritionix:before { content: @fa-var-nutritionix; } +.@{fa-css-prefix}-object-group:before { content: @fa-var-object-group; } +.@{fa-css-prefix}-object-ungroup:before { content: @fa-var-object-ungroup; } +.@{fa-css-prefix}-odnoklassniki:before { content: @fa-var-odnoklassniki; } +.@{fa-css-prefix}-odnoklassniki-square:before { content: @fa-var-odnoklassniki-square; } +.@{fa-css-prefix}-old-republic:before { content: @fa-var-old-republic; } +.@{fa-css-prefix}-opencart:before { content: @fa-var-opencart; } +.@{fa-css-prefix}-openid:before { content: @fa-var-openid; } +.@{fa-css-prefix}-opera:before { content: @fa-var-opera; } +.@{fa-css-prefix}-optin-monster:before { content: @fa-var-optin-monster; } +.@{fa-css-prefix}-osi:before { content: @fa-var-osi; } +.@{fa-css-prefix}-outdent:before { content: @fa-var-outdent; } +.@{fa-css-prefix}-page4:before { content: @fa-var-page4; } +.@{fa-css-prefix}-pagelines:before { content: @fa-var-pagelines; } +.@{fa-css-prefix}-paint-brush:before { content: @fa-var-paint-brush; } +.@{fa-css-prefix}-palette:before { content: @fa-var-palette; } +.@{fa-css-prefix}-palfed:before { content: @fa-var-palfed; } +.@{fa-css-prefix}-pallet:before { content: @fa-var-pallet; } +.@{fa-css-prefix}-paper-plane:before { content: @fa-var-paper-plane; } +.@{fa-css-prefix}-paperclip:before { content: @fa-var-paperclip; } +.@{fa-css-prefix}-parachute-box:before { content: @fa-var-parachute-box; } +.@{fa-css-prefix}-paragraph:before { content: @fa-var-paragraph; } +.@{fa-css-prefix}-parking:before { content: @fa-var-parking; } +.@{fa-css-prefix}-paste:before { content: @fa-var-paste; } +.@{fa-css-prefix}-patreon:before { content: @fa-var-patreon; } +.@{fa-css-prefix}-pause:before { content: @fa-var-pause; } +.@{fa-css-prefix}-pause-circle:before { content: @fa-var-pause-circle; } +.@{fa-css-prefix}-paw:before { content: @fa-var-paw; } +.@{fa-css-prefix}-paypal:before { content: @fa-var-paypal; } +.@{fa-css-prefix}-pen-square:before { content: @fa-var-pen-square; } +.@{fa-css-prefix}-pencil-alt:before { content: @fa-var-pencil-alt; } +.@{fa-css-prefix}-people-carry:before { content: @fa-var-people-carry; } +.@{fa-css-prefix}-percent:before { content: @fa-var-percent; } +.@{fa-css-prefix}-percentage:before { content: @fa-var-percentage; } +.@{fa-css-prefix}-periscope:before { content: @fa-var-periscope; } +.@{fa-css-prefix}-phabricator:before { content: @fa-var-phabricator; } +.@{fa-css-prefix}-phoenix-framework:before { content: @fa-var-phoenix-framework; } +.@{fa-css-prefix}-phoenix-squadron:before { content: @fa-var-phoenix-squadron; } +.@{fa-css-prefix}-phone:before { content: @fa-var-phone; } +.@{fa-css-prefix}-phone-slash:before { content: @fa-var-phone-slash; } +.@{fa-css-prefix}-phone-square:before { content: @fa-var-phone-square; } +.@{fa-css-prefix}-phone-volume:before { content: @fa-var-phone-volume; } +.@{fa-css-prefix}-php:before { content: @fa-var-php; } +.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; } +.@{fa-css-prefix}-pied-piper-alt:before { content: @fa-var-pied-piper-alt; } +.@{fa-css-prefix}-pied-piper-hat:before { content: @fa-var-pied-piper-hat; } +.@{fa-css-prefix}-pied-piper-pp:before { content: @fa-var-pied-piper-pp; } +.@{fa-css-prefix}-piggy-bank:before { content: @fa-var-piggy-bank; } +.@{fa-css-prefix}-pills:before { content: @fa-var-pills; } +.@{fa-css-prefix}-pinterest:before { content: @fa-var-pinterest; } +.@{fa-css-prefix}-pinterest-p:before { content: @fa-var-pinterest-p; } +.@{fa-css-prefix}-pinterest-square:before { content: @fa-var-pinterest-square; } +.@{fa-css-prefix}-plane:before { content: @fa-var-plane; } +.@{fa-css-prefix}-play:before { content: @fa-var-play; } +.@{fa-css-prefix}-play-circle:before { content: @fa-var-play-circle; } +.@{fa-css-prefix}-playstation:before { content: @fa-var-playstation; } +.@{fa-css-prefix}-plug:before { content: @fa-var-plug; } +.@{fa-css-prefix}-plus:before { content: @fa-var-plus; } +.@{fa-css-prefix}-plus-circle:before { content: @fa-var-plus-circle; } +.@{fa-css-prefix}-plus-square:before { content: @fa-var-plus-square; } +.@{fa-css-prefix}-podcast:before { content: @fa-var-podcast; } +.@{fa-css-prefix}-poo:before { content: @fa-var-poo; } +.@{fa-css-prefix}-portrait:before { content: @fa-var-portrait; } +.@{fa-css-prefix}-pound-sign:before { content: @fa-var-pound-sign; } +.@{fa-css-prefix}-power-off:before { content: @fa-var-power-off; } +.@{fa-css-prefix}-prescription-bottle:before { content: @fa-var-prescription-bottle; } +.@{fa-css-prefix}-prescription-bottle-alt:before { content: @fa-var-prescription-bottle-alt; } +.@{fa-css-prefix}-print:before { content: @fa-var-print; } +.@{fa-css-prefix}-procedures:before { content: @fa-var-procedures; } +.@{fa-css-prefix}-product-hunt:before { content: @fa-var-product-hunt; } +.@{fa-css-prefix}-project-diagram:before { content: @fa-var-project-diagram; } +.@{fa-css-prefix}-pushed:before { content: @fa-var-pushed; } +.@{fa-css-prefix}-puzzle-piece:before { content: @fa-var-puzzle-piece; } +.@{fa-css-prefix}-python:before { content: @fa-var-python; } +.@{fa-css-prefix}-qq:before { content: @fa-var-qq; } +.@{fa-css-prefix}-qrcode:before { content: @fa-var-qrcode; } +.@{fa-css-prefix}-question:before { content: @fa-var-question; } +.@{fa-css-prefix}-question-circle:before { content: @fa-var-question-circle; } +.@{fa-css-prefix}-quidditch:before { content: @fa-var-quidditch; } +.@{fa-css-prefix}-quinscape:before { content: @fa-var-quinscape; } +.@{fa-css-prefix}-quora:before { content: @fa-var-quora; } +.@{fa-css-prefix}-quote-left:before { content: @fa-var-quote-left; } +.@{fa-css-prefix}-quote-right:before { content: @fa-var-quote-right; } +.@{fa-css-prefix}-r-project:before { content: @fa-var-r-project; } +.@{fa-css-prefix}-random:before { content: @fa-var-random; } +.@{fa-css-prefix}-ravelry:before { content: @fa-var-ravelry; } +.@{fa-css-prefix}-react:before { content: @fa-var-react; } +.@{fa-css-prefix}-readme:before { content: @fa-var-readme; } +.@{fa-css-prefix}-rebel:before { content: @fa-var-rebel; } +.@{fa-css-prefix}-receipt:before { content: @fa-var-receipt; } +.@{fa-css-prefix}-recycle:before { content: @fa-var-recycle; } +.@{fa-css-prefix}-red-river:before { content: @fa-var-red-river; } +.@{fa-css-prefix}-reddit:before { content: @fa-var-reddit; } +.@{fa-css-prefix}-reddit-alien:before { content: @fa-var-reddit-alien; } +.@{fa-css-prefix}-reddit-square:before { content: @fa-var-reddit-square; } +.@{fa-css-prefix}-redo:before { content: @fa-var-redo; } +.@{fa-css-prefix}-redo-alt:before { content: @fa-var-redo-alt; } +.@{fa-css-prefix}-registered:before { content: @fa-var-registered; } +.@{fa-css-prefix}-rendact:before { content: @fa-var-rendact; } +.@{fa-css-prefix}-renren:before { content: @fa-var-renren; } +.@{fa-css-prefix}-reply:before { content: @fa-var-reply; } +.@{fa-css-prefix}-reply-all:before { content: @fa-var-reply-all; } +.@{fa-css-prefix}-replyd:before { content: @fa-var-replyd; } +.@{fa-css-prefix}-researchgate:before { content: @fa-var-researchgate; } +.@{fa-css-prefix}-resolving:before { content: @fa-var-resolving; } +.@{fa-css-prefix}-retweet:before { content: @fa-var-retweet; } +.@{fa-css-prefix}-ribbon:before { content: @fa-var-ribbon; } +.@{fa-css-prefix}-road:before { content: @fa-var-road; } +.@{fa-css-prefix}-robot:before { content: @fa-var-robot; } +.@{fa-css-prefix}-rocket:before { content: @fa-var-rocket; } +.@{fa-css-prefix}-rocketchat:before { content: @fa-var-rocketchat; } +.@{fa-css-prefix}-rockrms:before { content: @fa-var-rockrms; } +.@{fa-css-prefix}-rss:before { content: @fa-var-rss; } +.@{fa-css-prefix}-rss-square:before { content: @fa-var-rss-square; } +.@{fa-css-prefix}-ruble-sign:before { content: @fa-var-ruble-sign; } +.@{fa-css-prefix}-ruler:before { content: @fa-var-ruler; } +.@{fa-css-prefix}-ruler-combined:before { content: @fa-var-ruler-combined; } +.@{fa-css-prefix}-ruler-horizontal:before { content: @fa-var-ruler-horizontal; } +.@{fa-css-prefix}-ruler-vertical:before { content: @fa-var-ruler-vertical; } +.@{fa-css-prefix}-rupee-sign:before { content: @fa-var-rupee-sign; } +.@{fa-css-prefix}-safari:before { content: @fa-var-safari; } +.@{fa-css-prefix}-sass:before { content: @fa-var-sass; } +.@{fa-css-prefix}-save:before { content: @fa-var-save; } +.@{fa-css-prefix}-schlix:before { content: @fa-var-schlix; } +.@{fa-css-prefix}-school:before { content: @fa-var-school; } +.@{fa-css-prefix}-screwdriver:before { content: @fa-var-screwdriver; } +.@{fa-css-prefix}-scribd:before { content: @fa-var-scribd; } +.@{fa-css-prefix}-search:before { content: @fa-var-search; } +.@{fa-css-prefix}-search-minus:before { content: @fa-var-search-minus; } +.@{fa-css-prefix}-search-plus:before { content: @fa-var-search-plus; } +.@{fa-css-prefix}-searchengin:before { content: @fa-var-searchengin; } +.@{fa-css-prefix}-seedling:before { content: @fa-var-seedling; } +.@{fa-css-prefix}-sellcast:before { content: @fa-var-sellcast; } +.@{fa-css-prefix}-sellsy:before { content: @fa-var-sellsy; } +.@{fa-css-prefix}-server:before { content: @fa-var-server; } +.@{fa-css-prefix}-servicestack:before { content: @fa-var-servicestack; } +.@{fa-css-prefix}-share:before { content: @fa-var-share; } +.@{fa-css-prefix}-share-alt:before { content: @fa-var-share-alt; } +.@{fa-css-prefix}-share-alt-square:before { content: @fa-var-share-alt-square; } +.@{fa-css-prefix}-share-square:before { content: @fa-var-share-square; } +.@{fa-css-prefix}-shekel-sign:before { content: @fa-var-shekel-sign; } +.@{fa-css-prefix}-shield-alt:before { content: @fa-var-shield-alt; } +.@{fa-css-prefix}-ship:before { content: @fa-var-ship; } +.@{fa-css-prefix}-shipping-fast:before { content: @fa-var-shipping-fast; } +.@{fa-css-prefix}-shirtsinbulk:before { content: @fa-var-shirtsinbulk; } +.@{fa-css-prefix}-shoe-prints:before { content: @fa-var-shoe-prints; } +.@{fa-css-prefix}-shopping-bag:before { content: @fa-var-shopping-bag; } +.@{fa-css-prefix}-shopping-basket:before { content: @fa-var-shopping-basket; } +.@{fa-css-prefix}-shopping-cart:before { content: @fa-var-shopping-cart; } +.@{fa-css-prefix}-shower:before { content: @fa-var-shower; } +.@{fa-css-prefix}-sign:before { content: @fa-var-sign; } +.@{fa-css-prefix}-sign-in-alt:before { content: @fa-var-sign-in-alt; } +.@{fa-css-prefix}-sign-language:before { content: @fa-var-sign-language; } +.@{fa-css-prefix}-sign-out-alt:before { content: @fa-var-sign-out-alt; } +.@{fa-css-prefix}-signal:before { content: @fa-var-signal; } +.@{fa-css-prefix}-simplybuilt:before { content: @fa-var-simplybuilt; } +.@{fa-css-prefix}-sistrix:before { content: @fa-var-sistrix; } +.@{fa-css-prefix}-sitemap:before { content: @fa-var-sitemap; } +.@{fa-css-prefix}-sith:before { content: @fa-var-sith; } +.@{fa-css-prefix}-skull:before { content: @fa-var-skull; } +.@{fa-css-prefix}-skyatlas:before { content: @fa-var-skyatlas; } +.@{fa-css-prefix}-skype:before { content: @fa-var-skype; } +.@{fa-css-prefix}-slack:before { content: @fa-var-slack; } +.@{fa-css-prefix}-slack-hash:before { content: @fa-var-slack-hash; } +.@{fa-css-prefix}-sliders-h:before { content: @fa-var-sliders-h; } +.@{fa-css-prefix}-slideshare:before { content: @fa-var-slideshare; } +.@{fa-css-prefix}-smile:before { content: @fa-var-smile; } +.@{fa-css-prefix}-smoking:before { content: @fa-var-smoking; } +.@{fa-css-prefix}-smoking-ban:before { content: @fa-var-smoking-ban; } +.@{fa-css-prefix}-snapchat:before { content: @fa-var-snapchat; } +.@{fa-css-prefix}-snapchat-ghost:before { content: @fa-var-snapchat-ghost; } +.@{fa-css-prefix}-snapchat-square:before { content: @fa-var-snapchat-square; } +.@{fa-css-prefix}-snowflake:before { content: @fa-var-snowflake; } +.@{fa-css-prefix}-sort:before { content: @fa-var-sort; } +.@{fa-css-prefix}-sort-alpha-down:before { content: @fa-var-sort-alpha-down; } +.@{fa-css-prefix}-sort-alpha-up:before { content: @fa-var-sort-alpha-up; } +.@{fa-css-prefix}-sort-amount-down:before { content: @fa-var-sort-amount-down; } +.@{fa-css-prefix}-sort-amount-up:before { content: @fa-var-sort-amount-up; } +.@{fa-css-prefix}-sort-down:before { content: @fa-var-sort-down; } +.@{fa-css-prefix}-sort-numeric-down:before { content: @fa-var-sort-numeric-down; } +.@{fa-css-prefix}-sort-numeric-up:before { content: @fa-var-sort-numeric-up; } +.@{fa-css-prefix}-sort-up:before { content: @fa-var-sort-up; } +.@{fa-css-prefix}-soundcloud:before { content: @fa-var-soundcloud; } +.@{fa-css-prefix}-space-shuttle:before { content: @fa-var-space-shuttle; } +.@{fa-css-prefix}-speakap:before { content: @fa-var-speakap; } +.@{fa-css-prefix}-spinner:before { content: @fa-var-spinner; } +.@{fa-css-prefix}-spotify:before { content: @fa-var-spotify; } +.@{fa-css-prefix}-square:before { content: @fa-var-square; } +.@{fa-css-prefix}-square-full:before { content: @fa-var-square-full; } +.@{fa-css-prefix}-stack-exchange:before { content: @fa-var-stack-exchange; } +.@{fa-css-prefix}-stack-overflow:before { content: @fa-var-stack-overflow; } +.@{fa-css-prefix}-star:before { content: @fa-var-star; } +.@{fa-css-prefix}-star-half:before { content: @fa-var-star-half; } +.@{fa-css-prefix}-staylinked:before { content: @fa-var-staylinked; } +.@{fa-css-prefix}-steam:before { content: @fa-var-steam; } +.@{fa-css-prefix}-steam-square:before { content: @fa-var-steam-square; } +.@{fa-css-prefix}-steam-symbol:before { content: @fa-var-steam-symbol; } +.@{fa-css-prefix}-step-backward:before { content: @fa-var-step-backward; } +.@{fa-css-prefix}-step-forward:before { content: @fa-var-step-forward; } +.@{fa-css-prefix}-stethoscope:before { content: @fa-var-stethoscope; } +.@{fa-css-prefix}-sticker-mule:before { content: @fa-var-sticker-mule; } +.@{fa-css-prefix}-sticky-note:before { content: @fa-var-sticky-note; } +.@{fa-css-prefix}-stop:before { content: @fa-var-stop; } +.@{fa-css-prefix}-stop-circle:before { content: @fa-var-stop-circle; } +.@{fa-css-prefix}-stopwatch:before { content: @fa-var-stopwatch; } +.@{fa-css-prefix}-store:before { content: @fa-var-store; } +.@{fa-css-prefix}-store-alt:before { content: @fa-var-store-alt; } +.@{fa-css-prefix}-strava:before { content: @fa-var-strava; } +.@{fa-css-prefix}-stream:before { content: @fa-var-stream; } +.@{fa-css-prefix}-street-view:before { content: @fa-var-street-view; } +.@{fa-css-prefix}-strikethrough:before { content: @fa-var-strikethrough; } +.@{fa-css-prefix}-stripe:before { content: @fa-var-stripe; } +.@{fa-css-prefix}-stripe-s:before { content: @fa-var-stripe-s; } +.@{fa-css-prefix}-stroopwafel:before { content: @fa-var-stroopwafel; } +.@{fa-css-prefix}-studiovinari:before { content: @fa-var-studiovinari; } +.@{fa-css-prefix}-stumbleupon:before { content: @fa-var-stumbleupon; } +.@{fa-css-prefix}-stumbleupon-circle:before { content: @fa-var-stumbleupon-circle; } +.@{fa-css-prefix}-subscript:before { content: @fa-var-subscript; } +.@{fa-css-prefix}-subway:before { content: @fa-var-subway; } +.@{fa-css-prefix}-suitcase:before { content: @fa-var-suitcase; } +.@{fa-css-prefix}-sun:before { content: @fa-var-sun; } +.@{fa-css-prefix}-superpowers:before { content: @fa-var-superpowers; } +.@{fa-css-prefix}-superscript:before { content: @fa-var-superscript; } +.@{fa-css-prefix}-supple:before { content: @fa-var-supple; } +.@{fa-css-prefix}-sync:before { content: @fa-var-sync; } +.@{fa-css-prefix}-sync-alt:before { content: @fa-var-sync-alt; } +.@{fa-css-prefix}-syringe:before { content: @fa-var-syringe; } +.@{fa-css-prefix}-table:before { content: @fa-var-table; } +.@{fa-css-prefix}-table-tennis:before { content: @fa-var-table-tennis; } +.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet; } +.@{fa-css-prefix}-tablet-alt:before { content: @fa-var-tablet-alt; } +.@{fa-css-prefix}-tablets:before { content: @fa-var-tablets; } +.@{fa-css-prefix}-tachometer-alt:before { content: @fa-var-tachometer-alt; } +.@{fa-css-prefix}-tag:before { content: @fa-var-tag; } +.@{fa-css-prefix}-tags:before { content: @fa-var-tags; } +.@{fa-css-prefix}-tape:before { content: @fa-var-tape; } +.@{fa-css-prefix}-tasks:before { content: @fa-var-tasks; } +.@{fa-css-prefix}-taxi:before { content: @fa-var-taxi; } +.@{fa-css-prefix}-teamspeak:before { content: @fa-var-teamspeak; } +.@{fa-css-prefix}-telegram:before { content: @fa-var-telegram; } +.@{fa-css-prefix}-telegram-plane:before { content: @fa-var-telegram-plane; } +.@{fa-css-prefix}-tencent-weibo:before { content: @fa-var-tencent-weibo; } +.@{fa-css-prefix}-terminal:before { content: @fa-var-terminal; } +.@{fa-css-prefix}-text-height:before { content: @fa-var-text-height; } +.@{fa-css-prefix}-text-width:before { content: @fa-var-text-width; } +.@{fa-css-prefix}-th:before { content: @fa-var-th; } +.@{fa-css-prefix}-th-large:before { content: @fa-var-th-large; } +.@{fa-css-prefix}-th-list:before { content: @fa-var-th-list; } +.@{fa-css-prefix}-themeisle:before { content: @fa-var-themeisle; } +.@{fa-css-prefix}-thermometer:before { content: @fa-var-thermometer; } +.@{fa-css-prefix}-thermometer-empty:before { content: @fa-var-thermometer-empty; } +.@{fa-css-prefix}-thermometer-full:before { content: @fa-var-thermometer-full; } +.@{fa-css-prefix}-thermometer-half:before { content: @fa-var-thermometer-half; } +.@{fa-css-prefix}-thermometer-quarter:before { content: @fa-var-thermometer-quarter; } +.@{fa-css-prefix}-thermometer-three-quarters:before { content: @fa-var-thermometer-three-quarters; } +.@{fa-css-prefix}-thumbs-down:before { content: @fa-var-thumbs-down; } +.@{fa-css-prefix}-thumbs-up:before { content: @fa-var-thumbs-up; } +.@{fa-css-prefix}-thumbtack:before { content: @fa-var-thumbtack; } +.@{fa-css-prefix}-ticket-alt:before { content: @fa-var-ticket-alt; } +.@{fa-css-prefix}-times:before { content: @fa-var-times; } +.@{fa-css-prefix}-times-circle:before { content: @fa-var-times-circle; } +.@{fa-css-prefix}-tint:before { content: @fa-var-tint; } +.@{fa-css-prefix}-toggle-off:before { content: @fa-var-toggle-off; } +.@{fa-css-prefix}-toggle-on:before { content: @fa-var-toggle-on; } +.@{fa-css-prefix}-toolbox:before { content: @fa-var-toolbox; } +.@{fa-css-prefix}-trade-federation:before { content: @fa-var-trade-federation; } +.@{fa-css-prefix}-trademark:before { content: @fa-var-trademark; } +.@{fa-css-prefix}-train:before { content: @fa-var-train; } +.@{fa-css-prefix}-transgender:before { content: @fa-var-transgender; } +.@{fa-css-prefix}-transgender-alt:before { content: @fa-var-transgender-alt; } +.@{fa-css-prefix}-trash:before { content: @fa-var-trash; } +.@{fa-css-prefix}-trash-alt:before { content: @fa-var-trash-alt; } +.@{fa-css-prefix}-tree:before { content: @fa-var-tree; } +.@{fa-css-prefix}-trello:before { content: @fa-var-trello; } +.@{fa-css-prefix}-tripadvisor:before { content: @fa-var-tripadvisor; } +.@{fa-css-prefix}-trophy:before { content: @fa-var-trophy; } +.@{fa-css-prefix}-truck:before { content: @fa-var-truck; } +.@{fa-css-prefix}-truck-loading:before { content: @fa-var-truck-loading; } +.@{fa-css-prefix}-truck-moving:before { content: @fa-var-truck-moving; } +.@{fa-css-prefix}-tshirt:before { content: @fa-var-tshirt; } +.@{fa-css-prefix}-tty:before { content: @fa-var-tty; } +.@{fa-css-prefix}-tumblr:before { content: @fa-var-tumblr; } +.@{fa-css-prefix}-tumblr-square:before { content: @fa-var-tumblr-square; } +.@{fa-css-prefix}-tv:before { content: @fa-var-tv; } +.@{fa-css-prefix}-twitch:before { content: @fa-var-twitch; } +.@{fa-css-prefix}-twitter:before { content: @fa-var-twitter; } +.@{fa-css-prefix}-twitter-square:before { content: @fa-var-twitter-square; } +.@{fa-css-prefix}-typo3:before { content: @fa-var-typo3; } +.@{fa-css-prefix}-uber:before { content: @fa-var-uber; } +.@{fa-css-prefix}-uikit:before { content: @fa-var-uikit; } +.@{fa-css-prefix}-umbrella:before { content: @fa-var-umbrella; } +.@{fa-css-prefix}-underline:before { content: @fa-var-underline; } +.@{fa-css-prefix}-undo:before { content: @fa-var-undo; } +.@{fa-css-prefix}-undo-alt:before { content: @fa-var-undo-alt; } +.@{fa-css-prefix}-uniregistry:before { content: @fa-var-uniregistry; } +.@{fa-css-prefix}-universal-access:before { content: @fa-var-universal-access; } +.@{fa-css-prefix}-university:before { content: @fa-var-university; } +.@{fa-css-prefix}-unlink:before { content: @fa-var-unlink; } +.@{fa-css-prefix}-unlock:before { content: @fa-var-unlock; } +.@{fa-css-prefix}-unlock-alt:before { content: @fa-var-unlock-alt; } +.@{fa-css-prefix}-untappd:before { content: @fa-var-untappd; } +.@{fa-css-prefix}-upload:before { content: @fa-var-upload; } +.@{fa-css-prefix}-usb:before { content: @fa-var-usb; } +.@{fa-css-prefix}-user:before { content: @fa-var-user; } +.@{fa-css-prefix}-user-alt:before { content: @fa-var-user-alt; } +.@{fa-css-prefix}-user-alt-slash:before { content: @fa-var-user-alt-slash; } +.@{fa-css-prefix}-user-astronaut:before { content: @fa-var-user-astronaut; } +.@{fa-css-prefix}-user-check:before { content: @fa-var-user-check; } +.@{fa-css-prefix}-user-circle:before { content: @fa-var-user-circle; } +.@{fa-css-prefix}-user-clock:before { content: @fa-var-user-clock; } +.@{fa-css-prefix}-user-cog:before { content: @fa-var-user-cog; } +.@{fa-css-prefix}-user-edit:before { content: @fa-var-user-edit; } +.@{fa-css-prefix}-user-friends:before { content: @fa-var-user-friends; } +.@{fa-css-prefix}-user-graduate:before { content: @fa-var-user-graduate; } +.@{fa-css-prefix}-user-lock:before { content: @fa-var-user-lock; } +.@{fa-css-prefix}-user-md:before { content: @fa-var-user-md; } +.@{fa-css-prefix}-user-minus:before { content: @fa-var-user-minus; } +.@{fa-css-prefix}-user-ninja:before { content: @fa-var-user-ninja; } +.@{fa-css-prefix}-user-plus:before { content: @fa-var-user-plus; } +.@{fa-css-prefix}-user-secret:before { content: @fa-var-user-secret; } +.@{fa-css-prefix}-user-shield:before { content: @fa-var-user-shield; } +.@{fa-css-prefix}-user-slash:before { content: @fa-var-user-slash; } +.@{fa-css-prefix}-user-tag:before { content: @fa-var-user-tag; } +.@{fa-css-prefix}-user-tie:before { content: @fa-var-user-tie; } +.@{fa-css-prefix}-user-times:before { content: @fa-var-user-times; } +.@{fa-css-prefix}-users:before { content: @fa-var-users; } +.@{fa-css-prefix}-users-cog:before { content: @fa-var-users-cog; } +.@{fa-css-prefix}-ussunnah:before { content: @fa-var-ussunnah; } +.@{fa-css-prefix}-utensil-spoon:before { content: @fa-var-utensil-spoon; } +.@{fa-css-prefix}-utensils:before { content: @fa-var-utensils; } +.@{fa-css-prefix}-vaadin:before { content: @fa-var-vaadin; } +.@{fa-css-prefix}-venus:before { content: @fa-var-venus; } +.@{fa-css-prefix}-venus-double:before { content: @fa-var-venus-double; } +.@{fa-css-prefix}-venus-mars:before { content: @fa-var-venus-mars; } +.@{fa-css-prefix}-viacoin:before { content: @fa-var-viacoin; } +.@{fa-css-prefix}-viadeo:before { content: @fa-var-viadeo; } +.@{fa-css-prefix}-viadeo-square:before { content: @fa-var-viadeo-square; } +.@{fa-css-prefix}-vial:before { content: @fa-var-vial; } +.@{fa-css-prefix}-vials:before { content: @fa-var-vials; } +.@{fa-css-prefix}-viber:before { content: @fa-var-viber; } +.@{fa-css-prefix}-video:before { content: @fa-var-video; } +.@{fa-css-prefix}-video-slash:before { content: @fa-var-video-slash; } +.@{fa-css-prefix}-vimeo:before { content: @fa-var-vimeo; } +.@{fa-css-prefix}-vimeo-square:before { content: @fa-var-vimeo-square; } +.@{fa-css-prefix}-vimeo-v:before { content: @fa-var-vimeo-v; } +.@{fa-css-prefix}-vine:before { content: @fa-var-vine; } +.@{fa-css-prefix}-vk:before { content: @fa-var-vk; } +.@{fa-css-prefix}-vnv:before { content: @fa-var-vnv; } +.@{fa-css-prefix}-volleyball-ball:before { content: @fa-var-volleyball-ball; } +.@{fa-css-prefix}-volume-down:before { content: @fa-var-volume-down; } +.@{fa-css-prefix}-volume-off:before { content: @fa-var-volume-off; } +.@{fa-css-prefix}-volume-up:before { content: @fa-var-volume-up; } +.@{fa-css-prefix}-vuejs:before { content: @fa-var-vuejs; } +.@{fa-css-prefix}-walking:before { content: @fa-var-walking; } +.@{fa-css-prefix}-wallet:before { content: @fa-var-wallet; } +.@{fa-css-prefix}-warehouse:before { content: @fa-var-warehouse; } +.@{fa-css-prefix}-weibo:before { content: @fa-var-weibo; } +.@{fa-css-prefix}-weight:before { content: @fa-var-weight; } +.@{fa-css-prefix}-weixin:before { content: @fa-var-weixin; } +.@{fa-css-prefix}-whatsapp:before { content: @fa-var-whatsapp; } +.@{fa-css-prefix}-whatsapp-square:before { content: @fa-var-whatsapp-square; } +.@{fa-css-prefix}-wheelchair:before { content: @fa-var-wheelchair; } +.@{fa-css-prefix}-whmcs:before { content: @fa-var-whmcs; } +.@{fa-css-prefix}-wifi:before { content: @fa-var-wifi; } +.@{fa-css-prefix}-wikipedia-w:before { content: @fa-var-wikipedia-w; } +.@{fa-css-prefix}-window-close:before { content: @fa-var-window-close; } +.@{fa-css-prefix}-window-maximize:before { content: @fa-var-window-maximize; } +.@{fa-css-prefix}-window-minimize:before { content: @fa-var-window-minimize; } +.@{fa-css-prefix}-window-restore:before { content: @fa-var-window-restore; } +.@{fa-css-prefix}-windows:before { content: @fa-var-windows; } +.@{fa-css-prefix}-wine-glass:before { content: @fa-var-wine-glass; } +.@{fa-css-prefix}-wolf-pack-battalion:before { content: @fa-var-wolf-pack-battalion; } +.@{fa-css-prefix}-won-sign:before { content: @fa-var-won-sign; } +.@{fa-css-prefix}-wordpress:before { content: @fa-var-wordpress; } +.@{fa-css-prefix}-wordpress-simple:before { content: @fa-var-wordpress-simple; } +.@{fa-css-prefix}-wpbeginner:before { content: @fa-var-wpbeginner; } +.@{fa-css-prefix}-wpexplorer:before { content: @fa-var-wpexplorer; } +.@{fa-css-prefix}-wpforms:before { content: @fa-var-wpforms; } +.@{fa-css-prefix}-wrench:before { content: @fa-var-wrench; } +.@{fa-css-prefix}-x-ray:before { content: @fa-var-x-ray; } +.@{fa-css-prefix}-xbox:before { content: @fa-var-xbox; } +.@{fa-css-prefix}-xing:before { content: @fa-var-xing; } +.@{fa-css-prefix}-xing-square:before { content: @fa-var-xing-square; } +.@{fa-css-prefix}-y-combinator:before { content: @fa-var-y-combinator; } +.@{fa-css-prefix}-yahoo:before { content: @fa-var-yahoo; } +.@{fa-css-prefix}-yandex:before { content: @fa-var-yandex; } +.@{fa-css-prefix}-yandex-international:before { content: @fa-var-yandex-international; } +.@{fa-css-prefix}-yelp:before { content: @fa-var-yelp; } +.@{fa-css-prefix}-yen-sign:before { content: @fa-var-yen-sign; } +.@{fa-css-prefix}-yoast:before { content: @fa-var-yoast; } +.@{fa-css-prefix}-youtube:before { content: @fa-var-youtube; } +.@{fa-css-prefix}-youtube-square:before { content: @fa-var-youtube-square; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_larger.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_larger.less new file mode 100644 index 0000000000..6cbb1ec6ec --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_larger.less @@ -0,0 +1,27 @@ +// Icon Sizes +// ------------------------- + +.larger(@factor) when (@factor > 0) { + .larger((@factor - 1)); + + .@{fa-css-prefix}-@{factor}x { + font-size: (@factor * 1em); + } +} + +/* makes the font 33% larger relative to the icon container */ +.@{fa-css-prefix}-lg { + font-size: (4em / 3); + line-height: (3em / 4); + vertical-align: -.0667em; +} + +.@{fa-css-prefix}-xs { + font-size: .75em; +} + +.@{fa-css-prefix}-sm { + font-size: .875em; +} + +.larger(10); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_list.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_list.less new file mode 100644 index 0000000000..1ff7ca7f59 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_list.less @@ -0,0 +1,18 @@ +// List Icons +// ------------------------- + +.@{fa-css-prefix}-ul { + list-style-type: none; + margin-left: @fa-li-width * 5/4; + padding-left: 0; + + > li { position: relative; } +} + +.@{fa-css-prefix}-li { + left: -@fa-li-width; + position: absolute; + text-align: center; + width: @fa-li-width; + line-height: inherit; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_mixins.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_mixins.less new file mode 100644 index 0000000000..a4e93f90a3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_mixins.less @@ -0,0 +1,57 @@ +// Mixins +// -------------------------- + +.fa-icon() { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: inline-block; + font-style: normal; + font-variant: normal; + font-weight: normal; + line-height: 1; + vertical-align: -.125em; +} + +.fa-icon-rotate(@degrees, @rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})"; + transform: rotate(@degrees); +} + +.fa-icon-flip(@horiz, @vert, @rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)"; + transform: scale(@horiz, @vert); +} + + +// Only display content to screen readers. A la Bootstrap 4. +// +// See: http://a11yproject.com/posts/how-to-hide-content/ + +.sr-only() { + border: 0; + clip: rect(0,0,0,0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; +} + +// Use in conjunction with .sr-only to only display content when it's focused. +// +// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 +// +// Credit: HTML5 Boilerplate + +.sr-only-focusable() { + &:active, + &:focus { + clip: auto; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto; + } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_rotated-flipped.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_rotated-flipped.less new file mode 100644 index 0000000000..1ee31db19f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_rotated-flipped.less @@ -0,0 +1,23 @@ +// Rotated & Flipped Icons +// ------------------------- + +.@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } +.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } +.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } + +.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } +.@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } +.@{fa-css-prefix}-flip-horizontal.@{fa-css-prefix}-flip-vertical { .fa-icon-flip(-1, -1, 2); } + +// Hook for IE8-9 +// ------------------------- + +:root { + .@{fa-css-prefix}-rotate-90, + .@{fa-css-prefix}-rotate-180, + .@{fa-css-prefix}-rotate-270, + .@{fa-css-prefix}-flip-horizontal, + .@{fa-css-prefix}-flip-vertical { + filter: none; + } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_screen-reader.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_screen-reader.less new file mode 100644 index 0000000000..11c188196d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_screen-reader.less @@ -0,0 +1,5 @@ +// Screen Readers +// ------------------------- + +.sr-only { .sr-only(); } +.sr-only-focusable { .sr-only-focusable(); } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_stacked.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_stacked.less new file mode 100644 index 0000000000..263b5c44fc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_stacked.less @@ -0,0 +1,22 @@ +// Stacked Icons +// ------------------------- + +.@{fa-css-prefix}-stack { + display: inline-block; + height: 2em; + line-height: 2em; + position: relative; + vertical-align: middle; + width: 2em; +} + +.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { + left: 0; + position: absolute; + text-align: center; + width: 100%; +} + +.@{fa-css-prefix}-stack-1x { line-height: inherit; } +.@{fa-css-prefix}-stack-2x { font-size: 2em; } +.@{fa-css-prefix}-inverse { color: @fa-inverse; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_variables.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_variables.less new file mode 100644 index 0000000000..fcc1e673df --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/_variables.less @@ -0,0 +1,1001 @@ +// Variables +// -------------------------- + +@fa-font-path: "../webfonts"; +@fa-font-size-base: 16px; +@fa-line-height-base: 1; +@fa-css-prefix: fa; +@fa-version: "5.0.13"; +@fa-border-color: #eee; +@fa-inverse: #fff; +@fa-li-width: 2em; + +@fa-var-500px: "\f26e"; +@fa-var-accessible-icon: "\f368"; +@fa-var-accusoft: "\f369"; +@fa-var-address-book: "\f2b9"; +@fa-var-address-card: "\f2bb"; +@fa-var-adjust: "\f042"; +@fa-var-adn: "\f170"; +@fa-var-adversal: "\f36a"; +@fa-var-affiliatetheme: "\f36b"; +@fa-var-algolia: "\f36c"; +@fa-var-align-center: "\f037"; +@fa-var-align-justify: "\f039"; +@fa-var-align-left: "\f036"; +@fa-var-align-right: "\f038"; +@fa-var-allergies: "\f461"; +@fa-var-amazon: "\f270"; +@fa-var-amazon-pay: "\f42c"; +@fa-var-ambulance: "\f0f9"; +@fa-var-american-sign-language-interpreting: "\f2a3"; +@fa-var-amilia: "\f36d"; +@fa-var-anchor: "\f13d"; +@fa-var-android: "\f17b"; +@fa-var-angellist: "\f209"; +@fa-var-angle-double-down: "\f103"; +@fa-var-angle-double-left: "\f100"; +@fa-var-angle-double-right: "\f101"; +@fa-var-angle-double-up: "\f102"; +@fa-var-angle-down: "\f107"; +@fa-var-angle-left: "\f104"; +@fa-var-angle-right: "\f105"; +@fa-var-angle-up: "\f106"; +@fa-var-angrycreative: "\f36e"; +@fa-var-angular: "\f420"; +@fa-var-app-store: "\f36f"; +@fa-var-app-store-ios: "\f370"; +@fa-var-apper: "\f371"; +@fa-var-apple: "\f179"; +@fa-var-apple-pay: "\f415"; +@fa-var-archive: "\f187"; +@fa-var-arrow-alt-circle-down: "\f358"; +@fa-var-arrow-alt-circle-left: "\f359"; +@fa-var-arrow-alt-circle-right: "\f35a"; +@fa-var-arrow-alt-circle-up: "\f35b"; +@fa-var-arrow-circle-down: "\f0ab"; +@fa-var-arrow-circle-left: "\f0a8"; +@fa-var-arrow-circle-right: "\f0a9"; +@fa-var-arrow-circle-up: "\f0aa"; +@fa-var-arrow-down: "\f063"; +@fa-var-arrow-left: "\f060"; +@fa-var-arrow-right: "\f061"; +@fa-var-arrow-up: "\f062"; +@fa-var-arrows-alt: "\f0b2"; +@fa-var-arrows-alt-h: "\f337"; +@fa-var-arrows-alt-v: "\f338"; +@fa-var-assistive-listening-systems: "\f2a2"; +@fa-var-asterisk: "\f069"; +@fa-var-asymmetrik: "\f372"; +@fa-var-at: "\f1fa"; +@fa-var-audible: "\f373"; +@fa-var-audio-description: "\f29e"; +@fa-var-autoprefixer: "\f41c"; +@fa-var-avianex: "\f374"; +@fa-var-aviato: "\f421"; +@fa-var-aws: "\f375"; +@fa-var-backward: "\f04a"; +@fa-var-balance-scale: "\f24e"; +@fa-var-ban: "\f05e"; +@fa-var-band-aid: "\f462"; +@fa-var-bandcamp: "\f2d5"; +@fa-var-barcode: "\f02a"; +@fa-var-bars: "\f0c9"; +@fa-var-baseball-ball: "\f433"; +@fa-var-basketball-ball: "\f434"; +@fa-var-bath: "\f2cd"; +@fa-var-battery-empty: "\f244"; +@fa-var-battery-full: "\f240"; +@fa-var-battery-half: "\f242"; +@fa-var-battery-quarter: "\f243"; +@fa-var-battery-three-quarters: "\f241"; +@fa-var-bed: "\f236"; +@fa-var-beer: "\f0fc"; +@fa-var-behance: "\f1b4"; +@fa-var-behance-square: "\f1b5"; +@fa-var-bell: "\f0f3"; +@fa-var-bell-slash: "\f1f6"; +@fa-var-bicycle: "\f206"; +@fa-var-bimobject: "\f378"; +@fa-var-binoculars: "\f1e5"; +@fa-var-birthday-cake: "\f1fd"; +@fa-var-bitbucket: "\f171"; +@fa-var-bitcoin: "\f379"; +@fa-var-bity: "\f37a"; +@fa-var-black-tie: "\f27e"; +@fa-var-blackberry: "\f37b"; +@fa-var-blender: "\f517"; +@fa-var-blind: "\f29d"; +@fa-var-blogger: "\f37c"; +@fa-var-blogger-b: "\f37d"; +@fa-var-bluetooth: "\f293"; +@fa-var-bluetooth-b: "\f294"; +@fa-var-bold: "\f032"; +@fa-var-bolt: "\f0e7"; +@fa-var-bomb: "\f1e2"; +@fa-var-book: "\f02d"; +@fa-var-book-open: "\f518"; +@fa-var-bookmark: "\f02e"; +@fa-var-bowling-ball: "\f436"; +@fa-var-box: "\f466"; +@fa-var-box-open: "\f49e"; +@fa-var-boxes: "\f468"; +@fa-var-braille: "\f2a1"; +@fa-var-briefcase: "\f0b1"; +@fa-var-briefcase-medical: "\f469"; +@fa-var-broadcast-tower: "\f519"; +@fa-var-broom: "\f51a"; +@fa-var-btc: "\f15a"; +@fa-var-bug: "\f188"; +@fa-var-building: "\f1ad"; +@fa-var-bullhorn: "\f0a1"; +@fa-var-bullseye: "\f140"; +@fa-var-burn: "\f46a"; +@fa-var-buromobelexperte: "\f37f"; +@fa-var-bus: "\f207"; +@fa-var-buysellads: "\f20d"; +@fa-var-calculator: "\f1ec"; +@fa-var-calendar: "\f133"; +@fa-var-calendar-alt: "\f073"; +@fa-var-calendar-check: "\f274"; +@fa-var-calendar-minus: "\f272"; +@fa-var-calendar-plus: "\f271"; +@fa-var-calendar-times: "\f273"; +@fa-var-camera: "\f030"; +@fa-var-camera-retro: "\f083"; +@fa-var-capsules: "\f46b"; +@fa-var-car: "\f1b9"; +@fa-var-caret-down: "\f0d7"; +@fa-var-caret-left: "\f0d9"; +@fa-var-caret-right: "\f0da"; +@fa-var-caret-square-down: "\f150"; +@fa-var-caret-square-left: "\f191"; +@fa-var-caret-square-right: "\f152"; +@fa-var-caret-square-up: "\f151"; +@fa-var-caret-up: "\f0d8"; +@fa-var-cart-arrow-down: "\f218"; +@fa-var-cart-plus: "\f217"; +@fa-var-cc-amazon-pay: "\f42d"; +@fa-var-cc-amex: "\f1f3"; +@fa-var-cc-apple-pay: "\f416"; +@fa-var-cc-diners-club: "\f24c"; +@fa-var-cc-discover: "\f1f2"; +@fa-var-cc-jcb: "\f24b"; +@fa-var-cc-mastercard: "\f1f1"; +@fa-var-cc-paypal: "\f1f4"; +@fa-var-cc-stripe: "\f1f5"; +@fa-var-cc-visa: "\f1f0"; +@fa-var-centercode: "\f380"; +@fa-var-certificate: "\f0a3"; +@fa-var-chalkboard: "\f51b"; +@fa-var-chalkboard-teacher: "\f51c"; +@fa-var-chart-area: "\f1fe"; +@fa-var-chart-bar: "\f080"; +@fa-var-chart-line: "\f201"; +@fa-var-chart-pie: "\f200"; +@fa-var-check: "\f00c"; +@fa-var-check-circle: "\f058"; +@fa-var-check-square: "\f14a"; +@fa-var-chess: "\f439"; +@fa-var-chess-bishop: "\f43a"; +@fa-var-chess-board: "\f43c"; +@fa-var-chess-king: "\f43f"; +@fa-var-chess-knight: "\f441"; +@fa-var-chess-pawn: "\f443"; +@fa-var-chess-queen: "\f445"; +@fa-var-chess-rook: "\f447"; +@fa-var-chevron-circle-down: "\f13a"; +@fa-var-chevron-circle-left: "\f137"; +@fa-var-chevron-circle-right: "\f138"; +@fa-var-chevron-circle-up: "\f139"; +@fa-var-chevron-down: "\f078"; +@fa-var-chevron-left: "\f053"; +@fa-var-chevron-right: "\f054"; +@fa-var-chevron-up: "\f077"; +@fa-var-child: "\f1ae"; +@fa-var-chrome: "\f268"; +@fa-var-church: "\f51d"; +@fa-var-circle: "\f111"; +@fa-var-circle-notch: "\f1ce"; +@fa-var-clipboard: "\f328"; +@fa-var-clipboard-check: "\f46c"; +@fa-var-clipboard-list: "\f46d"; +@fa-var-clock: "\f017"; +@fa-var-clone: "\f24d"; +@fa-var-closed-captioning: "\f20a"; +@fa-var-cloud: "\f0c2"; +@fa-var-cloud-download-alt: "\f381"; +@fa-var-cloud-upload-alt: "\f382"; +@fa-var-cloudscale: "\f383"; +@fa-var-cloudsmith: "\f384"; +@fa-var-cloudversify: "\f385"; +@fa-var-code: "\f121"; +@fa-var-code-branch: "\f126"; +@fa-var-codepen: "\f1cb"; +@fa-var-codiepie: "\f284"; +@fa-var-coffee: "\f0f4"; +@fa-var-cog: "\f013"; +@fa-var-cogs: "\f085"; +@fa-var-coins: "\f51e"; +@fa-var-columns: "\f0db"; +@fa-var-comment: "\f075"; +@fa-var-comment-alt: "\f27a"; +@fa-var-comment-dots: "\f4ad"; +@fa-var-comment-slash: "\f4b3"; +@fa-var-comments: "\f086"; +@fa-var-compact-disc: "\f51f"; +@fa-var-compass: "\f14e"; +@fa-var-compress: "\f066"; +@fa-var-connectdevelop: "\f20e"; +@fa-var-contao: "\f26d"; +@fa-var-copy: "\f0c5"; +@fa-var-copyright: "\f1f9"; +@fa-var-couch: "\f4b8"; +@fa-var-cpanel: "\f388"; +@fa-var-creative-commons: "\f25e"; +@fa-var-creative-commons-by: "\f4e7"; +@fa-var-creative-commons-nc: "\f4e8"; +@fa-var-creative-commons-nc-eu: "\f4e9"; +@fa-var-creative-commons-nc-jp: "\f4ea"; +@fa-var-creative-commons-nd: "\f4eb"; +@fa-var-creative-commons-pd: "\f4ec"; +@fa-var-creative-commons-pd-alt: "\f4ed"; +@fa-var-creative-commons-remix: "\f4ee"; +@fa-var-creative-commons-sa: "\f4ef"; +@fa-var-creative-commons-sampling: "\f4f0"; +@fa-var-creative-commons-sampling-plus: "\f4f1"; +@fa-var-creative-commons-share: "\f4f2"; +@fa-var-credit-card: "\f09d"; +@fa-var-crop: "\f125"; +@fa-var-crosshairs: "\f05b"; +@fa-var-crow: "\f520"; +@fa-var-crown: "\f521"; +@fa-var-css3: "\f13c"; +@fa-var-css3-alt: "\f38b"; +@fa-var-cube: "\f1b2"; +@fa-var-cubes: "\f1b3"; +@fa-var-cut: "\f0c4"; +@fa-var-cuttlefish: "\f38c"; +@fa-var-d-and-d: "\f38d"; +@fa-var-dashcube: "\f210"; +@fa-var-database: "\f1c0"; +@fa-var-deaf: "\f2a4"; +@fa-var-delicious: "\f1a5"; +@fa-var-deploydog: "\f38e"; +@fa-var-deskpro: "\f38f"; +@fa-var-desktop: "\f108"; +@fa-var-deviantart: "\f1bd"; +@fa-var-diagnoses: "\f470"; +@fa-var-dice: "\f522"; +@fa-var-dice-five: "\f523"; +@fa-var-dice-four: "\f524"; +@fa-var-dice-one: "\f525"; +@fa-var-dice-six: "\f526"; +@fa-var-dice-three: "\f527"; +@fa-var-dice-two: "\f528"; +@fa-var-digg: "\f1a6"; +@fa-var-digital-ocean: "\f391"; +@fa-var-discord: "\f392"; +@fa-var-discourse: "\f393"; +@fa-var-divide: "\f529"; +@fa-var-dna: "\f471"; +@fa-var-dochub: "\f394"; +@fa-var-docker: "\f395"; +@fa-var-dollar-sign: "\f155"; +@fa-var-dolly: "\f472"; +@fa-var-dolly-flatbed: "\f474"; +@fa-var-donate: "\f4b9"; +@fa-var-door-closed: "\f52a"; +@fa-var-door-open: "\f52b"; +@fa-var-dot-circle: "\f192"; +@fa-var-dove: "\f4ba"; +@fa-var-download: "\f019"; +@fa-var-draft2digital: "\f396"; +@fa-var-dribbble: "\f17d"; +@fa-var-dribbble-square: "\f397"; +@fa-var-dropbox: "\f16b"; +@fa-var-drupal: "\f1a9"; +@fa-var-dumbbell: "\f44b"; +@fa-var-dyalog: "\f399"; +@fa-var-earlybirds: "\f39a"; +@fa-var-ebay: "\f4f4"; +@fa-var-edge: "\f282"; +@fa-var-edit: "\f044"; +@fa-var-eject: "\f052"; +@fa-var-elementor: "\f430"; +@fa-var-ellipsis-h: "\f141"; +@fa-var-ellipsis-v: "\f142"; +@fa-var-ember: "\f423"; +@fa-var-empire: "\f1d1"; +@fa-var-envelope: "\f0e0"; +@fa-var-envelope-open: "\f2b6"; +@fa-var-envelope-square: "\f199"; +@fa-var-envira: "\f299"; +@fa-var-equals: "\f52c"; +@fa-var-eraser: "\f12d"; +@fa-var-erlang: "\f39d"; +@fa-var-ethereum: "\f42e"; +@fa-var-etsy: "\f2d7"; +@fa-var-euro-sign: "\f153"; +@fa-var-exchange-alt: "\f362"; +@fa-var-exclamation: "\f12a"; +@fa-var-exclamation-circle: "\f06a"; +@fa-var-exclamation-triangle: "\f071"; +@fa-var-expand: "\f065"; +@fa-var-expand-arrows-alt: "\f31e"; +@fa-var-expeditedssl: "\f23e"; +@fa-var-external-link-alt: "\f35d"; +@fa-var-external-link-square-alt: "\f360"; +@fa-var-eye: "\f06e"; +@fa-var-eye-dropper: "\f1fb"; +@fa-var-eye-slash: "\f070"; +@fa-var-facebook: "\f09a"; +@fa-var-facebook-f: "\f39e"; +@fa-var-facebook-messenger: "\f39f"; +@fa-var-facebook-square: "\f082"; +@fa-var-fast-backward: "\f049"; +@fa-var-fast-forward: "\f050"; +@fa-var-fax: "\f1ac"; +@fa-var-feather: "\f52d"; +@fa-var-female: "\f182"; +@fa-var-fighter-jet: "\f0fb"; +@fa-var-file: "\f15b"; +@fa-var-file-alt: "\f15c"; +@fa-var-file-archive: "\f1c6"; +@fa-var-file-audio: "\f1c7"; +@fa-var-file-code: "\f1c9"; +@fa-var-file-excel: "\f1c3"; +@fa-var-file-image: "\f1c5"; +@fa-var-file-medical: "\f477"; +@fa-var-file-medical-alt: "\f478"; +@fa-var-file-pdf: "\f1c1"; +@fa-var-file-powerpoint: "\f1c4"; +@fa-var-file-video: "\f1c8"; +@fa-var-file-word: "\f1c2"; +@fa-var-film: "\f008"; +@fa-var-filter: "\f0b0"; +@fa-var-fire: "\f06d"; +@fa-var-fire-extinguisher: "\f134"; +@fa-var-firefox: "\f269"; +@fa-var-first-aid: "\f479"; +@fa-var-first-order: "\f2b0"; +@fa-var-first-order-alt: "\f50a"; +@fa-var-firstdraft: "\f3a1"; +@fa-var-flag: "\f024"; +@fa-var-flag-checkered: "\f11e"; +@fa-var-flask: "\f0c3"; +@fa-var-flickr: "\f16e"; +@fa-var-flipboard: "\f44d"; +@fa-var-fly: "\f417"; +@fa-var-folder: "\f07b"; +@fa-var-folder-open: "\f07c"; +@fa-var-font: "\f031"; +@fa-var-font-awesome: "\f2b4"; +@fa-var-font-awesome-alt: "\f35c"; +@fa-var-font-awesome-flag: "\f425"; +@fa-var-font-awesome-logo-full: "\f4e6"; +@fa-var-fonticons: "\f280"; +@fa-var-fonticons-fi: "\f3a2"; +@fa-var-football-ball: "\f44e"; +@fa-var-fort-awesome: "\f286"; +@fa-var-fort-awesome-alt: "\f3a3"; +@fa-var-forumbee: "\f211"; +@fa-var-forward: "\f04e"; +@fa-var-foursquare: "\f180"; +@fa-var-free-code-camp: "\f2c5"; +@fa-var-freebsd: "\f3a4"; +@fa-var-frog: "\f52e"; +@fa-var-frown: "\f119"; +@fa-var-fulcrum: "\f50b"; +@fa-var-futbol: "\f1e3"; +@fa-var-galactic-republic: "\f50c"; +@fa-var-galactic-senate: "\f50d"; +@fa-var-gamepad: "\f11b"; +@fa-var-gas-pump: "\f52f"; +@fa-var-gavel: "\f0e3"; +@fa-var-gem: "\f3a5"; +@fa-var-genderless: "\f22d"; +@fa-var-get-pocket: "\f265"; +@fa-var-gg: "\f260"; +@fa-var-gg-circle: "\f261"; +@fa-var-gift: "\f06b"; +@fa-var-git: "\f1d3"; +@fa-var-git-square: "\f1d2"; +@fa-var-github: "\f09b"; +@fa-var-github-alt: "\f113"; +@fa-var-github-square: "\f092"; +@fa-var-gitkraken: "\f3a6"; +@fa-var-gitlab: "\f296"; +@fa-var-gitter: "\f426"; +@fa-var-glass-martini: "\f000"; +@fa-var-glasses: "\f530"; +@fa-var-glide: "\f2a5"; +@fa-var-glide-g: "\f2a6"; +@fa-var-globe: "\f0ac"; +@fa-var-gofore: "\f3a7"; +@fa-var-golf-ball: "\f450"; +@fa-var-goodreads: "\f3a8"; +@fa-var-goodreads-g: "\f3a9"; +@fa-var-google: "\f1a0"; +@fa-var-google-drive: "\f3aa"; +@fa-var-google-play: "\f3ab"; +@fa-var-google-plus: "\f2b3"; +@fa-var-google-plus-g: "\f0d5"; +@fa-var-google-plus-square: "\f0d4"; +@fa-var-google-wallet: "\f1ee"; +@fa-var-graduation-cap: "\f19d"; +@fa-var-gratipay: "\f184"; +@fa-var-grav: "\f2d6"; +@fa-var-greater-than: "\f531"; +@fa-var-greater-than-equal: "\f532"; +@fa-var-gripfire: "\f3ac"; +@fa-var-grunt: "\f3ad"; +@fa-var-gulp: "\f3ae"; +@fa-var-h-square: "\f0fd"; +@fa-var-hacker-news: "\f1d4"; +@fa-var-hacker-news-square: "\f3af"; +@fa-var-hand-holding: "\f4bd"; +@fa-var-hand-holding-heart: "\f4be"; +@fa-var-hand-holding-usd: "\f4c0"; +@fa-var-hand-lizard: "\f258"; +@fa-var-hand-paper: "\f256"; +@fa-var-hand-peace: "\f25b"; +@fa-var-hand-point-down: "\f0a7"; +@fa-var-hand-point-left: "\f0a5"; +@fa-var-hand-point-right: "\f0a4"; +@fa-var-hand-point-up: "\f0a6"; +@fa-var-hand-pointer: "\f25a"; +@fa-var-hand-rock: "\f255"; +@fa-var-hand-scissors: "\f257"; +@fa-var-hand-spock: "\f259"; +@fa-var-hands: "\f4c2"; +@fa-var-hands-helping: "\f4c4"; +@fa-var-handshake: "\f2b5"; +@fa-var-hashtag: "\f292"; +@fa-var-hdd: "\f0a0"; +@fa-var-heading: "\f1dc"; +@fa-var-headphones: "\f025"; +@fa-var-heart: "\f004"; +@fa-var-heartbeat: "\f21e"; +@fa-var-helicopter: "\f533"; +@fa-var-hips: "\f452"; +@fa-var-hire-a-helper: "\f3b0"; +@fa-var-history: "\f1da"; +@fa-var-hockey-puck: "\f453"; +@fa-var-home: "\f015"; +@fa-var-hooli: "\f427"; +@fa-var-hospital: "\f0f8"; +@fa-var-hospital-alt: "\f47d"; +@fa-var-hospital-symbol: "\f47e"; +@fa-var-hotjar: "\f3b1"; +@fa-var-hourglass: "\f254"; +@fa-var-hourglass-end: "\f253"; +@fa-var-hourglass-half: "\f252"; +@fa-var-hourglass-start: "\f251"; +@fa-var-houzz: "\f27c"; +@fa-var-html5: "\f13b"; +@fa-var-hubspot: "\f3b2"; +@fa-var-i-cursor: "\f246"; +@fa-var-id-badge: "\f2c1"; +@fa-var-id-card: "\f2c2"; +@fa-var-id-card-alt: "\f47f"; +@fa-var-image: "\f03e"; +@fa-var-images: "\f302"; +@fa-var-imdb: "\f2d8"; +@fa-var-inbox: "\f01c"; +@fa-var-indent: "\f03c"; +@fa-var-industry: "\f275"; +@fa-var-infinity: "\f534"; +@fa-var-info: "\f129"; +@fa-var-info-circle: "\f05a"; +@fa-var-instagram: "\f16d"; +@fa-var-internet-explorer: "\f26b"; +@fa-var-ioxhost: "\f208"; +@fa-var-italic: "\f033"; +@fa-var-itunes: "\f3b4"; +@fa-var-itunes-note: "\f3b5"; +@fa-var-java: "\f4e4"; +@fa-var-jedi-order: "\f50e"; +@fa-var-jenkins: "\f3b6"; +@fa-var-joget: "\f3b7"; +@fa-var-joomla: "\f1aa"; +@fa-var-js: "\f3b8"; +@fa-var-js-square: "\f3b9"; +@fa-var-jsfiddle: "\f1cc"; +@fa-var-key: "\f084"; +@fa-var-keybase: "\f4f5"; +@fa-var-keyboard: "\f11c"; +@fa-var-keycdn: "\f3ba"; +@fa-var-kickstarter: "\f3bb"; +@fa-var-kickstarter-k: "\f3bc"; +@fa-var-kiwi-bird: "\f535"; +@fa-var-korvue: "\f42f"; +@fa-var-language: "\f1ab"; +@fa-var-laptop: "\f109"; +@fa-var-laravel: "\f3bd"; +@fa-var-lastfm: "\f202"; +@fa-var-lastfm-square: "\f203"; +@fa-var-leaf: "\f06c"; +@fa-var-leanpub: "\f212"; +@fa-var-lemon: "\f094"; +@fa-var-less: "\f41d"; +@fa-var-less-than: "\f536"; +@fa-var-less-than-equal: "\f537"; +@fa-var-level-down-alt: "\f3be"; +@fa-var-level-up-alt: "\f3bf"; +@fa-var-life-ring: "\f1cd"; +@fa-var-lightbulb: "\f0eb"; +@fa-var-line: "\f3c0"; +@fa-var-link: "\f0c1"; +@fa-var-linkedin: "\f08c"; +@fa-var-linkedin-in: "\f0e1"; +@fa-var-linode: "\f2b8"; +@fa-var-linux: "\f17c"; +@fa-var-lira-sign: "\f195"; +@fa-var-list: "\f03a"; +@fa-var-list-alt: "\f022"; +@fa-var-list-ol: "\f0cb"; +@fa-var-list-ul: "\f0ca"; +@fa-var-location-arrow: "\f124"; +@fa-var-lock: "\f023"; +@fa-var-lock-open: "\f3c1"; +@fa-var-long-arrow-alt-down: "\f309"; +@fa-var-long-arrow-alt-left: "\f30a"; +@fa-var-long-arrow-alt-right: "\f30b"; +@fa-var-long-arrow-alt-up: "\f30c"; +@fa-var-low-vision: "\f2a8"; +@fa-var-lyft: "\f3c3"; +@fa-var-magento: "\f3c4"; +@fa-var-magic: "\f0d0"; +@fa-var-magnet: "\f076"; +@fa-var-male: "\f183"; +@fa-var-mandalorian: "\f50f"; +@fa-var-map: "\f279"; +@fa-var-map-marker: "\f041"; +@fa-var-map-marker-alt: "\f3c5"; +@fa-var-map-pin: "\f276"; +@fa-var-map-signs: "\f277"; +@fa-var-mars: "\f222"; +@fa-var-mars-double: "\f227"; +@fa-var-mars-stroke: "\f229"; +@fa-var-mars-stroke-h: "\f22b"; +@fa-var-mars-stroke-v: "\f22a"; +@fa-var-mastodon: "\f4f6"; +@fa-var-maxcdn: "\f136"; +@fa-var-medapps: "\f3c6"; +@fa-var-medium: "\f23a"; +@fa-var-medium-m: "\f3c7"; +@fa-var-medkit: "\f0fa"; +@fa-var-medrt: "\f3c8"; +@fa-var-meetup: "\f2e0"; +@fa-var-meh: "\f11a"; +@fa-var-memory: "\f538"; +@fa-var-mercury: "\f223"; +@fa-var-microchip: "\f2db"; +@fa-var-microphone: "\f130"; +@fa-var-microphone-alt: "\f3c9"; +@fa-var-microphone-alt-slash: "\f539"; +@fa-var-microphone-slash: "\f131"; +@fa-var-microsoft: "\f3ca"; +@fa-var-minus: "\f068"; +@fa-var-minus-circle: "\f056"; +@fa-var-minus-square: "\f146"; +@fa-var-mix: "\f3cb"; +@fa-var-mixcloud: "\f289"; +@fa-var-mizuni: "\f3cc"; +@fa-var-mobile: "\f10b"; +@fa-var-mobile-alt: "\f3cd"; +@fa-var-modx: "\f285"; +@fa-var-monero: "\f3d0"; +@fa-var-money-bill: "\f0d6"; +@fa-var-money-bill-alt: "\f3d1"; +@fa-var-money-bill-wave: "\f53a"; +@fa-var-money-bill-wave-alt: "\f53b"; +@fa-var-money-check: "\f53c"; +@fa-var-money-check-alt: "\f53d"; +@fa-var-moon: "\f186"; +@fa-var-motorcycle: "\f21c"; +@fa-var-mouse-pointer: "\f245"; +@fa-var-music: "\f001"; +@fa-var-napster: "\f3d2"; +@fa-var-neuter: "\f22c"; +@fa-var-newspaper: "\f1ea"; +@fa-var-nintendo-switch: "\f418"; +@fa-var-node: "\f419"; +@fa-var-node-js: "\f3d3"; +@fa-var-not-equal: "\f53e"; +@fa-var-notes-medical: "\f481"; +@fa-var-npm: "\f3d4"; +@fa-var-ns8: "\f3d5"; +@fa-var-nutritionix: "\f3d6"; +@fa-var-object-group: "\f247"; +@fa-var-object-ungroup: "\f248"; +@fa-var-odnoklassniki: "\f263"; +@fa-var-odnoklassniki-square: "\f264"; +@fa-var-old-republic: "\f510"; +@fa-var-opencart: "\f23d"; +@fa-var-openid: "\f19b"; +@fa-var-opera: "\f26a"; +@fa-var-optin-monster: "\f23c"; +@fa-var-osi: "\f41a"; +@fa-var-outdent: "\f03b"; +@fa-var-page4: "\f3d7"; +@fa-var-pagelines: "\f18c"; +@fa-var-paint-brush: "\f1fc"; +@fa-var-palette: "\f53f"; +@fa-var-palfed: "\f3d8"; +@fa-var-pallet: "\f482"; +@fa-var-paper-plane: "\f1d8"; +@fa-var-paperclip: "\f0c6"; +@fa-var-parachute-box: "\f4cd"; +@fa-var-paragraph: "\f1dd"; +@fa-var-parking: "\f540"; +@fa-var-paste: "\f0ea"; +@fa-var-patreon: "\f3d9"; +@fa-var-pause: "\f04c"; +@fa-var-pause-circle: "\f28b"; +@fa-var-paw: "\f1b0"; +@fa-var-paypal: "\f1ed"; +@fa-var-pen-square: "\f14b"; +@fa-var-pencil-alt: "\f303"; +@fa-var-people-carry: "\f4ce"; +@fa-var-percent: "\f295"; +@fa-var-percentage: "\f541"; +@fa-var-periscope: "\f3da"; +@fa-var-phabricator: "\f3db"; +@fa-var-phoenix-framework: "\f3dc"; +@fa-var-phoenix-squadron: "\f511"; +@fa-var-phone: "\f095"; +@fa-var-phone-slash: "\f3dd"; +@fa-var-phone-square: "\f098"; +@fa-var-phone-volume: "\f2a0"; +@fa-var-php: "\f457"; +@fa-var-pied-piper: "\f2ae"; +@fa-var-pied-piper-alt: "\f1a8"; +@fa-var-pied-piper-hat: "\f4e5"; +@fa-var-pied-piper-pp: "\f1a7"; +@fa-var-piggy-bank: "\f4d3"; +@fa-var-pills: "\f484"; +@fa-var-pinterest: "\f0d2"; +@fa-var-pinterest-p: "\f231"; +@fa-var-pinterest-square: "\f0d3"; +@fa-var-plane: "\f072"; +@fa-var-play: "\f04b"; +@fa-var-play-circle: "\f144"; +@fa-var-playstation: "\f3df"; +@fa-var-plug: "\f1e6"; +@fa-var-plus: "\f067"; +@fa-var-plus-circle: "\f055"; +@fa-var-plus-square: "\f0fe"; +@fa-var-podcast: "\f2ce"; +@fa-var-poo: "\f2fe"; +@fa-var-portrait: "\f3e0"; +@fa-var-pound-sign: "\f154"; +@fa-var-power-off: "\f011"; +@fa-var-prescription-bottle: "\f485"; +@fa-var-prescription-bottle-alt: "\f486"; +@fa-var-print: "\f02f"; +@fa-var-procedures: "\f487"; +@fa-var-product-hunt: "\f288"; +@fa-var-project-diagram: "\f542"; +@fa-var-pushed: "\f3e1"; +@fa-var-puzzle-piece: "\f12e"; +@fa-var-python: "\f3e2"; +@fa-var-qq: "\f1d6"; +@fa-var-qrcode: "\f029"; +@fa-var-question: "\f128"; +@fa-var-question-circle: "\f059"; +@fa-var-quidditch: "\f458"; +@fa-var-quinscape: "\f459"; +@fa-var-quora: "\f2c4"; +@fa-var-quote-left: "\f10d"; +@fa-var-quote-right: "\f10e"; +@fa-var-r-project: "\f4f7"; +@fa-var-random: "\f074"; +@fa-var-ravelry: "\f2d9"; +@fa-var-react: "\f41b"; +@fa-var-readme: "\f4d5"; +@fa-var-rebel: "\f1d0"; +@fa-var-receipt: "\f543"; +@fa-var-recycle: "\f1b8"; +@fa-var-red-river: "\f3e3"; +@fa-var-reddit: "\f1a1"; +@fa-var-reddit-alien: "\f281"; +@fa-var-reddit-square: "\f1a2"; +@fa-var-redo: "\f01e"; +@fa-var-redo-alt: "\f2f9"; +@fa-var-registered: "\f25d"; +@fa-var-rendact: "\f3e4"; +@fa-var-renren: "\f18b"; +@fa-var-reply: "\f3e5"; +@fa-var-reply-all: "\f122"; +@fa-var-replyd: "\f3e6"; +@fa-var-researchgate: "\f4f8"; +@fa-var-resolving: "\f3e7"; +@fa-var-retweet: "\f079"; +@fa-var-ribbon: "\f4d6"; +@fa-var-road: "\f018"; +@fa-var-robot: "\f544"; +@fa-var-rocket: "\f135"; +@fa-var-rocketchat: "\f3e8"; +@fa-var-rockrms: "\f3e9"; +@fa-var-rss: "\f09e"; +@fa-var-rss-square: "\f143"; +@fa-var-ruble-sign: "\f158"; +@fa-var-ruler: "\f545"; +@fa-var-ruler-combined: "\f546"; +@fa-var-ruler-horizontal: "\f547"; +@fa-var-ruler-vertical: "\f548"; +@fa-var-rupee-sign: "\f156"; +@fa-var-safari: "\f267"; +@fa-var-sass: "\f41e"; +@fa-var-save: "\f0c7"; +@fa-var-schlix: "\f3ea"; +@fa-var-school: "\f549"; +@fa-var-screwdriver: "\f54a"; +@fa-var-scribd: "\f28a"; +@fa-var-search: "\f002"; +@fa-var-search-minus: "\f010"; +@fa-var-search-plus: "\f00e"; +@fa-var-searchengin: "\f3eb"; +@fa-var-seedling: "\f4d8"; +@fa-var-sellcast: "\f2da"; +@fa-var-sellsy: "\f213"; +@fa-var-server: "\f233"; +@fa-var-servicestack: "\f3ec"; +@fa-var-share: "\f064"; +@fa-var-share-alt: "\f1e0"; +@fa-var-share-alt-square: "\f1e1"; +@fa-var-share-square: "\f14d"; +@fa-var-shekel-sign: "\f20b"; +@fa-var-shield-alt: "\f3ed"; +@fa-var-ship: "\f21a"; +@fa-var-shipping-fast: "\f48b"; +@fa-var-shirtsinbulk: "\f214"; +@fa-var-shoe-prints: "\f54b"; +@fa-var-shopping-bag: "\f290"; +@fa-var-shopping-basket: "\f291"; +@fa-var-shopping-cart: "\f07a"; +@fa-var-shower: "\f2cc"; +@fa-var-sign: "\f4d9"; +@fa-var-sign-in-alt: "\f2f6"; +@fa-var-sign-language: "\f2a7"; +@fa-var-sign-out-alt: "\f2f5"; +@fa-var-signal: "\f012"; +@fa-var-simplybuilt: "\f215"; +@fa-var-sistrix: "\f3ee"; +@fa-var-sitemap: "\f0e8"; +@fa-var-sith: "\f512"; +@fa-var-skull: "\f54c"; +@fa-var-skyatlas: "\f216"; +@fa-var-skype: "\f17e"; +@fa-var-slack: "\f198"; +@fa-var-slack-hash: "\f3ef"; +@fa-var-sliders-h: "\f1de"; +@fa-var-slideshare: "\f1e7"; +@fa-var-smile: "\f118"; +@fa-var-smoking: "\f48d"; +@fa-var-smoking-ban: "\f54d"; +@fa-var-snapchat: "\f2ab"; +@fa-var-snapchat-ghost: "\f2ac"; +@fa-var-snapchat-square: "\f2ad"; +@fa-var-snowflake: "\f2dc"; +@fa-var-sort: "\f0dc"; +@fa-var-sort-alpha-down: "\f15d"; +@fa-var-sort-alpha-up: "\f15e"; +@fa-var-sort-amount-down: "\f160"; +@fa-var-sort-amount-up: "\f161"; +@fa-var-sort-down: "\f0dd"; +@fa-var-sort-numeric-down: "\f162"; +@fa-var-sort-numeric-up: "\f163"; +@fa-var-sort-up: "\f0de"; +@fa-var-soundcloud: "\f1be"; +@fa-var-space-shuttle: "\f197"; +@fa-var-speakap: "\f3f3"; +@fa-var-spinner: "\f110"; +@fa-var-spotify: "\f1bc"; +@fa-var-square: "\f0c8"; +@fa-var-square-full: "\f45c"; +@fa-var-stack-exchange: "\f18d"; +@fa-var-stack-overflow: "\f16c"; +@fa-var-star: "\f005"; +@fa-var-star-half: "\f089"; +@fa-var-staylinked: "\f3f5"; +@fa-var-steam: "\f1b6"; +@fa-var-steam-square: "\f1b7"; +@fa-var-steam-symbol: "\f3f6"; +@fa-var-step-backward: "\f048"; +@fa-var-step-forward: "\f051"; +@fa-var-stethoscope: "\f0f1"; +@fa-var-sticker-mule: "\f3f7"; +@fa-var-sticky-note: "\f249"; +@fa-var-stop: "\f04d"; +@fa-var-stop-circle: "\f28d"; +@fa-var-stopwatch: "\f2f2"; +@fa-var-store: "\f54e"; +@fa-var-store-alt: "\f54f"; +@fa-var-strava: "\f428"; +@fa-var-stream: "\f550"; +@fa-var-street-view: "\f21d"; +@fa-var-strikethrough: "\f0cc"; +@fa-var-stripe: "\f429"; +@fa-var-stripe-s: "\f42a"; +@fa-var-stroopwafel: "\f551"; +@fa-var-studiovinari: "\f3f8"; +@fa-var-stumbleupon: "\f1a4"; +@fa-var-stumbleupon-circle: "\f1a3"; +@fa-var-subscript: "\f12c"; +@fa-var-subway: "\f239"; +@fa-var-suitcase: "\f0f2"; +@fa-var-sun: "\f185"; +@fa-var-superpowers: "\f2dd"; +@fa-var-superscript: "\f12b"; +@fa-var-supple: "\f3f9"; +@fa-var-sync: "\f021"; +@fa-var-sync-alt: "\f2f1"; +@fa-var-syringe: "\f48e"; +@fa-var-table: "\f0ce"; +@fa-var-table-tennis: "\f45d"; +@fa-var-tablet: "\f10a"; +@fa-var-tablet-alt: "\f3fa"; +@fa-var-tablets: "\f490"; +@fa-var-tachometer-alt: "\f3fd"; +@fa-var-tag: "\f02b"; +@fa-var-tags: "\f02c"; +@fa-var-tape: "\f4db"; +@fa-var-tasks: "\f0ae"; +@fa-var-taxi: "\f1ba"; +@fa-var-teamspeak: "\f4f9"; +@fa-var-telegram: "\f2c6"; +@fa-var-telegram-plane: "\f3fe"; +@fa-var-tencent-weibo: "\f1d5"; +@fa-var-terminal: "\f120"; +@fa-var-text-height: "\f034"; +@fa-var-text-width: "\f035"; +@fa-var-th: "\f00a"; +@fa-var-th-large: "\f009"; +@fa-var-th-list: "\f00b"; +@fa-var-themeisle: "\f2b2"; +@fa-var-thermometer: "\f491"; +@fa-var-thermometer-empty: "\f2cb"; +@fa-var-thermometer-full: "\f2c7"; +@fa-var-thermometer-half: "\f2c9"; +@fa-var-thermometer-quarter: "\f2ca"; +@fa-var-thermometer-three-quarters: "\f2c8"; +@fa-var-thumbs-down: "\f165"; +@fa-var-thumbs-up: "\f164"; +@fa-var-thumbtack: "\f08d"; +@fa-var-ticket-alt: "\f3ff"; +@fa-var-times: "\f00d"; +@fa-var-times-circle: "\f057"; +@fa-var-tint: "\f043"; +@fa-var-toggle-off: "\f204"; +@fa-var-toggle-on: "\f205"; +@fa-var-toolbox: "\f552"; +@fa-var-trade-federation: "\f513"; +@fa-var-trademark: "\f25c"; +@fa-var-train: "\f238"; +@fa-var-transgender: "\f224"; +@fa-var-transgender-alt: "\f225"; +@fa-var-trash: "\f1f8"; +@fa-var-trash-alt: "\f2ed"; +@fa-var-tree: "\f1bb"; +@fa-var-trello: "\f181"; +@fa-var-tripadvisor: "\f262"; +@fa-var-trophy: "\f091"; +@fa-var-truck: "\f0d1"; +@fa-var-truck-loading: "\f4de"; +@fa-var-truck-moving: "\f4df"; +@fa-var-tshirt: "\f553"; +@fa-var-tty: "\f1e4"; +@fa-var-tumblr: "\f173"; +@fa-var-tumblr-square: "\f174"; +@fa-var-tv: "\f26c"; +@fa-var-twitch: "\f1e8"; +@fa-var-twitter: "\f099"; +@fa-var-twitter-square: "\f081"; +@fa-var-typo3: "\f42b"; +@fa-var-uber: "\f402"; +@fa-var-uikit: "\f403"; +@fa-var-umbrella: "\f0e9"; +@fa-var-underline: "\f0cd"; +@fa-var-undo: "\f0e2"; +@fa-var-undo-alt: "\f2ea"; +@fa-var-uniregistry: "\f404"; +@fa-var-universal-access: "\f29a"; +@fa-var-university: "\f19c"; +@fa-var-unlink: "\f127"; +@fa-var-unlock: "\f09c"; +@fa-var-unlock-alt: "\f13e"; +@fa-var-untappd: "\f405"; +@fa-var-upload: "\f093"; +@fa-var-usb: "\f287"; +@fa-var-user: "\f007"; +@fa-var-user-alt: "\f406"; +@fa-var-user-alt-slash: "\f4fa"; +@fa-var-user-astronaut: "\f4fb"; +@fa-var-user-check: "\f4fc"; +@fa-var-user-circle: "\f2bd"; +@fa-var-user-clock: "\f4fd"; +@fa-var-user-cog: "\f4fe"; +@fa-var-user-edit: "\f4ff"; +@fa-var-user-friends: "\f500"; +@fa-var-user-graduate: "\f501"; +@fa-var-user-lock: "\f502"; +@fa-var-user-md: "\f0f0"; +@fa-var-user-minus: "\f503"; +@fa-var-user-ninja: "\f504"; +@fa-var-user-plus: "\f234"; +@fa-var-user-secret: "\f21b"; +@fa-var-user-shield: "\f505"; +@fa-var-user-slash: "\f506"; +@fa-var-user-tag: "\f507"; +@fa-var-user-tie: "\f508"; +@fa-var-user-times: "\f235"; +@fa-var-users: "\f0c0"; +@fa-var-users-cog: "\f509"; +@fa-var-ussunnah: "\f407"; +@fa-var-utensil-spoon: "\f2e5"; +@fa-var-utensils: "\f2e7"; +@fa-var-vaadin: "\f408"; +@fa-var-venus: "\f221"; +@fa-var-venus-double: "\f226"; +@fa-var-venus-mars: "\f228"; +@fa-var-viacoin: "\f237"; +@fa-var-viadeo: "\f2a9"; +@fa-var-viadeo-square: "\f2aa"; +@fa-var-vial: "\f492"; +@fa-var-vials: "\f493"; +@fa-var-viber: "\f409"; +@fa-var-video: "\f03d"; +@fa-var-video-slash: "\f4e2"; +@fa-var-vimeo: "\f40a"; +@fa-var-vimeo-square: "\f194"; +@fa-var-vimeo-v: "\f27d"; +@fa-var-vine: "\f1ca"; +@fa-var-vk: "\f189"; +@fa-var-vnv: "\f40b"; +@fa-var-volleyball-ball: "\f45f"; +@fa-var-volume-down: "\f027"; +@fa-var-volume-off: "\f026"; +@fa-var-volume-up: "\f028"; +@fa-var-vuejs: "\f41f"; +@fa-var-walking: "\f554"; +@fa-var-wallet: "\f555"; +@fa-var-warehouse: "\f494"; +@fa-var-weibo: "\f18a"; +@fa-var-weight: "\f496"; +@fa-var-weixin: "\f1d7"; +@fa-var-whatsapp: "\f232"; +@fa-var-whatsapp-square: "\f40c"; +@fa-var-wheelchair: "\f193"; +@fa-var-whmcs: "\f40d"; +@fa-var-wifi: "\f1eb"; +@fa-var-wikipedia-w: "\f266"; +@fa-var-window-close: "\f410"; +@fa-var-window-maximize: "\f2d0"; +@fa-var-window-minimize: "\f2d1"; +@fa-var-window-restore: "\f2d2"; +@fa-var-windows: "\f17a"; +@fa-var-wine-glass: "\f4e3"; +@fa-var-wolf-pack-battalion: "\f514"; +@fa-var-won-sign: "\f159"; +@fa-var-wordpress: "\f19a"; +@fa-var-wordpress-simple: "\f411"; +@fa-var-wpbeginner: "\f297"; +@fa-var-wpexplorer: "\f2de"; +@fa-var-wpforms: "\f298"; +@fa-var-wrench: "\f0ad"; +@fa-var-x-ray: "\f497"; +@fa-var-xbox: "\f412"; +@fa-var-xing: "\f168"; +@fa-var-xing-square: "\f169"; +@fa-var-y-combinator: "\f23b"; +@fa-var-yahoo: "\f19e"; +@fa-var-yandex: "\f413"; +@fa-var-yandex-international: "\f414"; +@fa-var-yelp: "\f1e9"; +@fa-var-yen-sign: "\f157"; +@fa-var-yoast: "\f2b1"; +@fa-var-youtube: "\f167"; +@fa-var-youtube-square: "\f431"; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/fa-brands.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/fa-brands.less new file mode 100644 index 0000000000..758d5e1897 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/fa-brands.less @@ -0,0 +1,17 @@ +@import "_variables.less"; + +@font-face { + font-family: 'Font Awesome 5 Brands'; + font-style: normal; + font-weight: normal; + src: url('@{fa-font-path}/fa-brands-400.eot'); + src: url('@{fa-font-path}/fa-brands-400.eot?#iefix') format('embedded-opentype'), + url('@{fa-font-path}/fa-brands-400.woff2') format('woff2'), + url('@{fa-font-path}/fa-brands-400.woff') format('woff'), + url('@{fa-font-path}/fa-brands-400.ttf') format('truetype'), + url('@{fa-font-path}/fa-brands-400.svg#fontawesome') format('svg'); +} + +.fab { + font-family: 'Font Awesome 5 Brands'; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/fa-regular.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/fa-regular.less new file mode 100644 index 0000000000..b2985ff219 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/fa-regular.less @@ -0,0 +1,18 @@ +@import "_variables.less"; + +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 400; + src: url('@{fa-font-path}/fa-regular-400.eot'); + src: url('@{fa-font-path}/fa-regular-400.eot?#iefix') format('embedded-opentype'), + url('@{fa-font-path}/fa-regular-400.woff2') format('woff2'), + url('@{fa-font-path}/fa-regular-400.woff') format('woff'), + url('@{fa-font-path}/fa-regular-400.ttf') format('truetype'), + url('@{fa-font-path}/fa-regular-400.svg#fontawesome') format('svg'); +} + +.far { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/fa-solid.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/fa-solid.less new file mode 100644 index 0000000000..d9c5aaca8f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/fa-solid.less @@ -0,0 +1,19 @@ +@import "_variables.less"; + +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 900; + src: url('@{fa-font-path}/fa-solid-900.eot'); + src: url('@{fa-font-path}/fa-solid-900.eot?#iefix') format('embedded-opentype'), + url('@{fa-font-path}/fa-solid-900.woff2') format('woff2'), + url('@{fa-font-path}/fa-solid-900.woff') format('woff'), + url('@{fa-font-path}/fa-solid-900.ttf') format('truetype'), + url('@{fa-font-path}/fa-solid-900.svg#fontawesome') format('svg'); +} + +.fa, +.fas { + font-family: 'Font Awesome 5 Free'; + font-weight: 900; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/fontawesome.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/fontawesome.less new file mode 100644 index 0000000000..e426d0075a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/less/fontawesome.less @@ -0,0 +1,16 @@ +/*! + * Font Awesome Free 5.0.13 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import "_variables.less"; +@import "_mixins.less"; +@import "_core.less"; +@import "_larger.less"; +@import "_fixed-width.less"; +@import "_list.less"; +@import "_bordered-pulled.less"; +@import "_animated.less"; +@import "_rotated-flipped.less"; +@import "_stacked.less"; +@import "_icons.less"; +@import "_screen-reader.less"; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/package.json b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/package.json new file mode 100644 index 0000000000..f4f69fcea2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/package.json @@ -0,0 +1,55 @@ +{ + "description": "The iconic font, CSS, and SVG framework", + "keywords": [ + "font", + "awesome", + "fontawesome", + "icon", + "svg", + "bootstrap" + ], + "homepage": "https://fontawesome.com", + "bugs": { + "url": "http://github.com/FortAwesome/Font-Awesome/issues" + }, + "author": { + "name": "Dave Gandy", + "email": "dave@fontawesome.com", + "web": "http://twitter.com/davegandy" + }, + "contributors": [ + { + "name": "Brian Talbot", + "web": "http://twitter.com/talbs" + }, + { + "name": "Travis Chase", + "web": "http://twitter.com/supercodepoet" + }, + { + "name": "Rob Madole", + "web": "http://twitter.com/robmadole" + }, + { + "name": "Geremia Taglialatela", + "web": "http://twitter.com/gtagliala" + }, + { + "name": "Mike Wilkerson", + "web": "http://twitter.com/mw77" + } + ], + "repository": { + "type": "git", + "url": "https://github.com/FortAwesome/Font-Awesome" + }, + "engines": { + "node": ">=6" + }, + "dependencies": {}, + "version": "1.0.9", + "name": "@fortawesome/fontawesome-free-webfonts", + "main": "css/fontawesome.css", + "style": "css/fontawesome.css", + "license": "(OFL-1.1 AND MIT)" +} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_animated.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_animated.scss new file mode 100644 index 0000000000..7c7c0e173c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_animated.scss @@ -0,0 +1,20 @@ +// Animated Icons +// -------------------------- + +.#{$fa-css-prefix}-spin { + animation: fa-spin 2s infinite linear; +} + +.#{$fa-css-prefix}-pulse { + animation: fa-spin 1s infinite steps(8); +} + +@keyframes fa-spin { + 0% { + transform: rotate(0deg); + } + + 100% { + transform: rotate(360deg); + } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_bordered-pulled.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_bordered-pulled.scss new file mode 100644 index 0000000000..c8c4274c40 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_bordered-pulled.scss @@ -0,0 +1,20 @@ +// Bordered & Pulled +// ------------------------- + +.#{$fa-css-prefix}-border { + border: solid .08em $fa-border-color; + border-radius: .1em; + padding: .2em .25em .15em; +} + +.#{$fa-css-prefix}-pull-left { float: left; } +.#{$fa-css-prefix}-pull-right { float: right; } + +.#{$fa-css-prefix}, +.fas, +.far, +.fal, +.fab { + &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } + &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_core.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_core.scss new file mode 100644 index 0000000000..7fd37f855c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_core.scss @@ -0,0 +1,16 @@ +// Base Class Definition +// ------------------------- + +.#{$fa-css-prefix}, +.fas, +.far, +.fal, +.fab { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + line-height: 1; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_fixed-width.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_fixed-width.scss new file mode 100644 index 0000000000..5b33eb49aa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_fixed-width.scss @@ -0,0 +1,6 @@ +// Fixed Width Icons +// ------------------------- +.#{$fa-css-prefix}-fw { + text-align: center; + width: (20em / 16); +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_icons.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_icons.scss new file mode 100644 index 0000000000..efac73eb2c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_icons.scss @@ -0,0 +1,992 @@ +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen +readers do not read off random characters that represent icons */ + +.#{$fa-css-prefix}-500px:before { content: fa-content($fa-var-500px); } +.#{$fa-css-prefix}-accessible-icon:before { content: fa-content($fa-var-accessible-icon); } +.#{$fa-css-prefix}-accusoft:before { content: fa-content($fa-var-accusoft); } +.#{$fa-css-prefix}-address-book:before { content: fa-content($fa-var-address-book); } +.#{$fa-css-prefix}-address-card:before { content: fa-content($fa-var-address-card); } +.#{$fa-css-prefix}-adjust:before { content: fa-content($fa-var-adjust); } +.#{$fa-css-prefix}-adn:before { content: fa-content($fa-var-adn); } +.#{$fa-css-prefix}-adversal:before { content: fa-content($fa-var-adversal); } +.#{$fa-css-prefix}-affiliatetheme:before { content: fa-content($fa-var-affiliatetheme); } +.#{$fa-css-prefix}-algolia:before { content: fa-content($fa-var-algolia); } +.#{$fa-css-prefix}-align-center:before { content: fa-content($fa-var-align-center); } +.#{$fa-css-prefix}-align-justify:before { content: fa-content($fa-var-align-justify); } +.#{$fa-css-prefix}-align-left:before { content: fa-content($fa-var-align-left); } +.#{$fa-css-prefix}-align-right:before { content: fa-content($fa-var-align-right); } +.#{$fa-css-prefix}-allergies:before { content: fa-content($fa-var-allergies); } +.#{$fa-css-prefix}-amazon:before { content: fa-content($fa-var-amazon); } +.#{$fa-css-prefix}-amazon-pay:before { content: fa-content($fa-var-amazon-pay); } +.#{$fa-css-prefix}-ambulance:before { content: fa-content($fa-var-ambulance); } +.#{$fa-css-prefix}-american-sign-language-interpreting:before { content: fa-content($fa-var-american-sign-language-interpreting); } +.#{$fa-css-prefix}-amilia:before { content: fa-content($fa-var-amilia); } +.#{$fa-css-prefix}-anchor:before { content: fa-content($fa-var-anchor); } +.#{$fa-css-prefix}-android:before { content: fa-content($fa-var-android); } +.#{$fa-css-prefix}-angellist:before { content: fa-content($fa-var-angellist); } +.#{$fa-css-prefix}-angle-double-down:before { content: fa-content($fa-var-angle-double-down); } +.#{$fa-css-prefix}-angle-double-left:before { content: fa-content($fa-var-angle-double-left); } +.#{$fa-css-prefix}-angle-double-right:before { content: fa-content($fa-var-angle-double-right); } +.#{$fa-css-prefix}-angle-double-up:before { content: fa-content($fa-var-angle-double-up); } +.#{$fa-css-prefix}-angle-down:before { content: fa-content($fa-var-angle-down); } +.#{$fa-css-prefix}-angle-left:before { content: fa-content($fa-var-angle-left); } +.#{$fa-css-prefix}-angle-right:before { content: fa-content($fa-var-angle-right); } +.#{$fa-css-prefix}-angle-up:before { content: fa-content($fa-var-angle-up); } +.#{$fa-css-prefix}-angrycreative:before { content: fa-content($fa-var-angrycreative); } +.#{$fa-css-prefix}-angular:before { content: fa-content($fa-var-angular); } +.#{$fa-css-prefix}-app-store:before { content: fa-content($fa-var-app-store); } +.#{$fa-css-prefix}-app-store-ios:before { content: fa-content($fa-var-app-store-ios); } +.#{$fa-css-prefix}-apper:before { content: fa-content($fa-var-apper); } +.#{$fa-css-prefix}-apple:before { content: fa-content($fa-var-apple); } +.#{$fa-css-prefix}-apple-pay:before { content: fa-content($fa-var-apple-pay); } +.#{$fa-css-prefix}-archive:before { content: fa-content($fa-var-archive); } +.#{$fa-css-prefix}-arrow-alt-circle-down:before { content: fa-content($fa-var-arrow-alt-circle-down); } +.#{$fa-css-prefix}-arrow-alt-circle-left:before { content: fa-content($fa-var-arrow-alt-circle-left); } +.#{$fa-css-prefix}-arrow-alt-circle-right:before { content: fa-content($fa-var-arrow-alt-circle-right); } +.#{$fa-css-prefix}-arrow-alt-circle-up:before { content: fa-content($fa-var-arrow-alt-circle-up); } +.#{$fa-css-prefix}-arrow-circle-down:before { content: fa-content($fa-var-arrow-circle-down); } +.#{$fa-css-prefix}-arrow-circle-left:before { content: fa-content($fa-var-arrow-circle-left); } +.#{$fa-css-prefix}-arrow-circle-right:before { content: fa-content($fa-var-arrow-circle-right); } +.#{$fa-css-prefix}-arrow-circle-up:before { content: fa-content($fa-var-arrow-circle-up); } +.#{$fa-css-prefix}-arrow-down:before { content: fa-content($fa-var-arrow-down); } +.#{$fa-css-prefix}-arrow-left:before { content: fa-content($fa-var-arrow-left); } +.#{$fa-css-prefix}-arrow-right:before { content: fa-content($fa-var-arrow-right); } +.#{$fa-css-prefix}-arrow-up:before { content: fa-content($fa-var-arrow-up); } +.#{$fa-css-prefix}-arrows-alt:before { content: fa-content($fa-var-arrows-alt); } +.#{$fa-css-prefix}-arrows-alt-h:before { content: fa-content($fa-var-arrows-alt-h); } +.#{$fa-css-prefix}-arrows-alt-v:before { content: fa-content($fa-var-arrows-alt-v); } +.#{$fa-css-prefix}-assistive-listening-systems:before { content: fa-content($fa-var-assistive-listening-systems); } +.#{$fa-css-prefix}-asterisk:before { content: fa-content($fa-var-asterisk); } +.#{$fa-css-prefix}-asymmetrik:before { content: fa-content($fa-var-asymmetrik); } +.#{$fa-css-prefix}-at:before { content: fa-content($fa-var-at); } +.#{$fa-css-prefix}-audible:before { content: fa-content($fa-var-audible); } +.#{$fa-css-prefix}-audio-description:before { content: fa-content($fa-var-audio-description); } +.#{$fa-css-prefix}-autoprefixer:before { content: fa-content($fa-var-autoprefixer); } +.#{$fa-css-prefix}-avianex:before { content: fa-content($fa-var-avianex); } +.#{$fa-css-prefix}-aviato:before { content: fa-content($fa-var-aviato); } +.#{$fa-css-prefix}-aws:before { content: fa-content($fa-var-aws); } +.#{$fa-css-prefix}-backward:before { content: fa-content($fa-var-backward); } +.#{$fa-css-prefix}-balance-scale:before { content: fa-content($fa-var-balance-scale); } +.#{$fa-css-prefix}-ban:before { content: fa-content($fa-var-ban); } +.#{$fa-css-prefix}-band-aid:before { content: fa-content($fa-var-band-aid); } +.#{$fa-css-prefix}-bandcamp:before { content: fa-content($fa-var-bandcamp); } +.#{$fa-css-prefix}-barcode:before { content: fa-content($fa-var-barcode); } +.#{$fa-css-prefix}-bars:before { content: fa-content($fa-var-bars); } +.#{$fa-css-prefix}-baseball-ball:before { content: fa-content($fa-var-baseball-ball); } +.#{$fa-css-prefix}-basketball-ball:before { content: fa-content($fa-var-basketball-ball); } +.#{$fa-css-prefix}-bath:before { content: fa-content($fa-var-bath); } +.#{$fa-css-prefix}-battery-empty:before { content: fa-content($fa-var-battery-empty); } +.#{$fa-css-prefix}-battery-full:before { content: fa-content($fa-var-battery-full); } +.#{$fa-css-prefix}-battery-half:before { content: fa-content($fa-var-battery-half); } +.#{$fa-css-prefix}-battery-quarter:before { content: fa-content($fa-var-battery-quarter); } +.#{$fa-css-prefix}-battery-three-quarters:before { content: fa-content($fa-var-battery-three-quarters); } +.#{$fa-css-prefix}-bed:before { content: fa-content($fa-var-bed); } +.#{$fa-css-prefix}-beer:before { content: fa-content($fa-var-beer); } +.#{$fa-css-prefix}-behance:before { content: fa-content($fa-var-behance); } +.#{$fa-css-prefix}-behance-square:before { content: fa-content($fa-var-behance-square); } +.#{$fa-css-prefix}-bell:before { content: fa-content($fa-var-bell); } +.#{$fa-css-prefix}-bell-slash:before { content: fa-content($fa-var-bell-slash); } +.#{$fa-css-prefix}-bicycle:before { content: fa-content($fa-var-bicycle); } +.#{$fa-css-prefix}-bimobject:before { content: fa-content($fa-var-bimobject); } +.#{$fa-css-prefix}-binoculars:before { content: fa-content($fa-var-binoculars); } +.#{$fa-css-prefix}-birthday-cake:before { content: fa-content($fa-var-birthday-cake); } +.#{$fa-css-prefix}-bitbucket:before { content: fa-content($fa-var-bitbucket); } +.#{$fa-css-prefix}-bitcoin:before { content: fa-content($fa-var-bitcoin); } +.#{$fa-css-prefix}-bity:before { content: fa-content($fa-var-bity); } +.#{$fa-css-prefix}-black-tie:before { content: fa-content($fa-var-black-tie); } +.#{$fa-css-prefix}-blackberry:before { content: fa-content($fa-var-blackberry); } +.#{$fa-css-prefix}-blender:before { content: fa-content($fa-var-blender); } +.#{$fa-css-prefix}-blind:before { content: fa-content($fa-var-blind); } +.#{$fa-css-prefix}-blogger:before { content: fa-content($fa-var-blogger); } +.#{$fa-css-prefix}-blogger-b:before { content: fa-content($fa-var-blogger-b); } +.#{$fa-css-prefix}-bluetooth:before { content: fa-content($fa-var-bluetooth); } +.#{$fa-css-prefix}-bluetooth-b:before { content: fa-content($fa-var-bluetooth-b); } +.#{$fa-css-prefix}-bold:before { content: fa-content($fa-var-bold); } +.#{$fa-css-prefix}-bolt:before { content: fa-content($fa-var-bolt); } +.#{$fa-css-prefix}-bomb:before { content: fa-content($fa-var-bomb); } +.#{$fa-css-prefix}-book:before { content: fa-content($fa-var-book); } +.#{$fa-css-prefix}-book-open:before { content: fa-content($fa-var-book-open); } +.#{$fa-css-prefix}-bookmark:before { content: fa-content($fa-var-bookmark); } +.#{$fa-css-prefix}-bowling-ball:before { content: fa-content($fa-var-bowling-ball); } +.#{$fa-css-prefix}-box:before { content: fa-content($fa-var-box); } +.#{$fa-css-prefix}-box-open:before { content: fa-content($fa-var-box-open); } +.#{$fa-css-prefix}-boxes:before { content: fa-content($fa-var-boxes); } +.#{$fa-css-prefix}-braille:before { content: fa-content($fa-var-braille); } +.#{$fa-css-prefix}-briefcase:before { content: fa-content($fa-var-briefcase); } +.#{$fa-css-prefix}-briefcase-medical:before { content: fa-content($fa-var-briefcase-medical); } +.#{$fa-css-prefix}-broadcast-tower:before { content: fa-content($fa-var-broadcast-tower); } +.#{$fa-css-prefix}-broom:before { content: fa-content($fa-var-broom); } +.#{$fa-css-prefix}-btc:before { content: fa-content($fa-var-btc); } +.#{$fa-css-prefix}-bug:before { content: fa-content($fa-var-bug); } +.#{$fa-css-prefix}-building:before { content: fa-content($fa-var-building); } +.#{$fa-css-prefix}-bullhorn:before { content: fa-content($fa-var-bullhorn); } +.#{$fa-css-prefix}-bullseye:before { content: fa-content($fa-var-bullseye); } +.#{$fa-css-prefix}-burn:before { content: fa-content($fa-var-burn); } +.#{$fa-css-prefix}-buromobelexperte:before { content: fa-content($fa-var-buromobelexperte); } +.#{$fa-css-prefix}-bus:before { content: fa-content($fa-var-bus); } +.#{$fa-css-prefix}-buysellads:before { content: fa-content($fa-var-buysellads); } +.#{$fa-css-prefix}-calculator:before { content: fa-content($fa-var-calculator); } +.#{$fa-css-prefix}-calendar:before { content: fa-content($fa-var-calendar); } +.#{$fa-css-prefix}-calendar-alt:before { content: fa-content($fa-var-calendar-alt); } +.#{$fa-css-prefix}-calendar-check:before { content: fa-content($fa-var-calendar-check); } +.#{$fa-css-prefix}-calendar-minus:before { content: fa-content($fa-var-calendar-minus); } +.#{$fa-css-prefix}-calendar-plus:before { content: fa-content($fa-var-calendar-plus); } +.#{$fa-css-prefix}-calendar-times:before { content: fa-content($fa-var-calendar-times); } +.#{$fa-css-prefix}-camera:before { content: fa-content($fa-var-camera); } +.#{$fa-css-prefix}-camera-retro:before { content: fa-content($fa-var-camera-retro); } +.#{$fa-css-prefix}-capsules:before { content: fa-content($fa-var-capsules); } +.#{$fa-css-prefix}-car:before { content: fa-content($fa-var-car); } +.#{$fa-css-prefix}-caret-down:before { content: fa-content($fa-var-caret-down); } +.#{$fa-css-prefix}-caret-left:before { content: fa-content($fa-var-caret-left); } +.#{$fa-css-prefix}-caret-right:before { content: fa-content($fa-var-caret-right); } +.#{$fa-css-prefix}-caret-square-down:before { content: fa-content($fa-var-caret-square-down); } +.#{$fa-css-prefix}-caret-square-left:before { content: fa-content($fa-var-caret-square-left); } +.#{$fa-css-prefix}-caret-square-right:before { content: fa-content($fa-var-caret-square-right); } +.#{$fa-css-prefix}-caret-square-up:before { content: fa-content($fa-var-caret-square-up); } +.#{$fa-css-prefix}-caret-up:before { content: fa-content($fa-var-caret-up); } +.#{$fa-css-prefix}-cart-arrow-down:before { content: fa-content($fa-var-cart-arrow-down); } +.#{$fa-css-prefix}-cart-plus:before { content: fa-content($fa-var-cart-plus); } +.#{$fa-css-prefix}-cc-amazon-pay:before { content: fa-content($fa-var-cc-amazon-pay); } +.#{$fa-css-prefix}-cc-amex:before { content: fa-content($fa-var-cc-amex); } +.#{$fa-css-prefix}-cc-apple-pay:before { content: fa-content($fa-var-cc-apple-pay); } +.#{$fa-css-prefix}-cc-diners-club:before { content: fa-content($fa-var-cc-diners-club); } +.#{$fa-css-prefix}-cc-discover:before { content: fa-content($fa-var-cc-discover); } +.#{$fa-css-prefix}-cc-jcb:before { content: fa-content($fa-var-cc-jcb); } +.#{$fa-css-prefix}-cc-mastercard:before { content: fa-content($fa-var-cc-mastercard); } +.#{$fa-css-prefix}-cc-paypal:before { content: fa-content($fa-var-cc-paypal); } +.#{$fa-css-prefix}-cc-stripe:before { content: fa-content($fa-var-cc-stripe); } +.#{$fa-css-prefix}-cc-visa:before { content: fa-content($fa-var-cc-visa); } +.#{$fa-css-prefix}-centercode:before { content: fa-content($fa-var-centercode); } +.#{$fa-css-prefix}-certificate:before { content: fa-content($fa-var-certificate); } +.#{$fa-css-prefix}-chalkboard:before { content: fa-content($fa-var-chalkboard); } +.#{$fa-css-prefix}-chalkboard-teacher:before { content: fa-content($fa-var-chalkboard-teacher); } +.#{$fa-css-prefix}-chart-area:before { content: fa-content($fa-var-chart-area); } +.#{$fa-css-prefix}-chart-bar:before { content: fa-content($fa-var-chart-bar); } +.#{$fa-css-prefix}-chart-line:before { content: fa-content($fa-var-chart-line); } +.#{$fa-css-prefix}-chart-pie:before { content: fa-content($fa-var-chart-pie); } +.#{$fa-css-prefix}-check:before { content: fa-content($fa-var-check); } +.#{$fa-css-prefix}-check-circle:before { content: fa-content($fa-var-check-circle); } +.#{$fa-css-prefix}-check-square:before { content: fa-content($fa-var-check-square); } +.#{$fa-css-prefix}-chess:before { content: fa-content($fa-var-chess); } +.#{$fa-css-prefix}-chess-bishop:before { content: fa-content($fa-var-chess-bishop); } +.#{$fa-css-prefix}-chess-board:before { content: fa-content($fa-var-chess-board); } +.#{$fa-css-prefix}-chess-king:before { content: fa-content($fa-var-chess-king); } +.#{$fa-css-prefix}-chess-knight:before { content: fa-content($fa-var-chess-knight); } +.#{$fa-css-prefix}-chess-pawn:before { content: fa-content($fa-var-chess-pawn); } +.#{$fa-css-prefix}-chess-queen:before { content: fa-content($fa-var-chess-queen); } +.#{$fa-css-prefix}-chess-rook:before { content: fa-content($fa-var-chess-rook); } +.#{$fa-css-prefix}-chevron-circle-down:before { content: fa-content($fa-var-chevron-circle-down); } +.#{$fa-css-prefix}-chevron-circle-left:before { content: fa-content($fa-var-chevron-circle-left); } +.#{$fa-css-prefix}-chevron-circle-right:before { content: fa-content($fa-var-chevron-circle-right); } +.#{$fa-css-prefix}-chevron-circle-up:before { content: fa-content($fa-var-chevron-circle-up); } +.#{$fa-css-prefix}-chevron-down:before { content: fa-content($fa-var-chevron-down); } +.#{$fa-css-prefix}-chevron-left:before { content: fa-content($fa-var-chevron-left); } +.#{$fa-css-prefix}-chevron-right:before { content: fa-content($fa-var-chevron-right); } +.#{$fa-css-prefix}-chevron-up:before { content: fa-content($fa-var-chevron-up); } +.#{$fa-css-prefix}-child:before { content: fa-content($fa-var-child); } +.#{$fa-css-prefix}-chrome:before { content: fa-content($fa-var-chrome); } +.#{$fa-css-prefix}-church:before { content: fa-content($fa-var-church); } +.#{$fa-css-prefix}-circle:before { content: fa-content($fa-var-circle); } +.#{$fa-css-prefix}-circle-notch:before { content: fa-content($fa-var-circle-notch); } +.#{$fa-css-prefix}-clipboard:before { content: fa-content($fa-var-clipboard); } +.#{$fa-css-prefix}-clipboard-check:before { content: fa-content($fa-var-clipboard-check); } +.#{$fa-css-prefix}-clipboard-list:before { content: fa-content($fa-var-clipboard-list); } +.#{$fa-css-prefix}-clock:before { content: fa-content($fa-var-clock); } +.#{$fa-css-prefix}-clone:before { content: fa-content($fa-var-clone); } +.#{$fa-css-prefix}-closed-captioning:before { content: fa-content($fa-var-closed-captioning); } +.#{$fa-css-prefix}-cloud:before { content: fa-content($fa-var-cloud); } +.#{$fa-css-prefix}-cloud-download-alt:before { content: fa-content($fa-var-cloud-download-alt); } +.#{$fa-css-prefix}-cloud-upload-alt:before { content: fa-content($fa-var-cloud-upload-alt); } +.#{$fa-css-prefix}-cloudscale:before { content: fa-content($fa-var-cloudscale); } +.#{$fa-css-prefix}-cloudsmith:before { content: fa-content($fa-var-cloudsmith); } +.#{$fa-css-prefix}-cloudversify:before { content: fa-content($fa-var-cloudversify); } +.#{$fa-css-prefix}-code:before { content: fa-content($fa-var-code); } +.#{$fa-css-prefix}-code-branch:before { content: fa-content($fa-var-code-branch); } +.#{$fa-css-prefix}-codepen:before { content: fa-content($fa-var-codepen); } +.#{$fa-css-prefix}-codiepie:before { content: fa-content($fa-var-codiepie); } +.#{$fa-css-prefix}-coffee:before { content: fa-content($fa-var-coffee); } +.#{$fa-css-prefix}-cog:before { content: fa-content($fa-var-cog); } +.#{$fa-css-prefix}-cogs:before { content: fa-content($fa-var-cogs); } +.#{$fa-css-prefix}-coins:before { content: fa-content($fa-var-coins); } +.#{$fa-css-prefix}-columns:before { content: fa-content($fa-var-columns); } +.#{$fa-css-prefix}-comment:before { content: fa-content($fa-var-comment); } +.#{$fa-css-prefix}-comment-alt:before { content: fa-content($fa-var-comment-alt); } +.#{$fa-css-prefix}-comment-dots:before { content: fa-content($fa-var-comment-dots); } +.#{$fa-css-prefix}-comment-slash:before { content: fa-content($fa-var-comment-slash); } +.#{$fa-css-prefix}-comments:before { content: fa-content($fa-var-comments); } +.#{$fa-css-prefix}-compact-disc:before { content: fa-content($fa-var-compact-disc); } +.#{$fa-css-prefix}-compass:before { content: fa-content($fa-var-compass); } +.#{$fa-css-prefix}-compress:before { content: fa-content($fa-var-compress); } +.#{$fa-css-prefix}-connectdevelop:before { content: fa-content($fa-var-connectdevelop); } +.#{$fa-css-prefix}-contao:before { content: fa-content($fa-var-contao); } +.#{$fa-css-prefix}-copy:before { content: fa-content($fa-var-copy); } +.#{$fa-css-prefix}-copyright:before { content: fa-content($fa-var-copyright); } +.#{$fa-css-prefix}-couch:before { content: fa-content($fa-var-couch); } +.#{$fa-css-prefix}-cpanel:before { content: fa-content($fa-var-cpanel); } +.#{$fa-css-prefix}-creative-commons:before { content: fa-content($fa-var-creative-commons); } +.#{$fa-css-prefix}-creative-commons-by:before { content: fa-content($fa-var-creative-commons-by); } +.#{$fa-css-prefix}-creative-commons-nc:before { content: fa-content($fa-var-creative-commons-nc); } +.#{$fa-css-prefix}-creative-commons-nc-eu:before { content: fa-content($fa-var-creative-commons-nc-eu); } +.#{$fa-css-prefix}-creative-commons-nc-jp:before { content: fa-content($fa-var-creative-commons-nc-jp); } +.#{$fa-css-prefix}-creative-commons-nd:before { content: fa-content($fa-var-creative-commons-nd); } +.#{$fa-css-prefix}-creative-commons-pd:before { content: fa-content($fa-var-creative-commons-pd); } +.#{$fa-css-prefix}-creative-commons-pd-alt:before { content: fa-content($fa-var-creative-commons-pd-alt); } +.#{$fa-css-prefix}-creative-commons-remix:before { content: fa-content($fa-var-creative-commons-remix); } +.#{$fa-css-prefix}-creative-commons-sa:before { content: fa-content($fa-var-creative-commons-sa); } +.#{$fa-css-prefix}-creative-commons-sampling:before { content: fa-content($fa-var-creative-commons-sampling); } +.#{$fa-css-prefix}-creative-commons-sampling-plus:before { content: fa-content($fa-var-creative-commons-sampling-plus); } +.#{$fa-css-prefix}-creative-commons-share:before { content: fa-content($fa-var-creative-commons-share); } +.#{$fa-css-prefix}-credit-card:before { content: fa-content($fa-var-credit-card); } +.#{$fa-css-prefix}-crop:before { content: fa-content($fa-var-crop); } +.#{$fa-css-prefix}-crosshairs:before { content: fa-content($fa-var-crosshairs); } +.#{$fa-css-prefix}-crow:before { content: fa-content($fa-var-crow); } +.#{$fa-css-prefix}-crown:before { content: fa-content($fa-var-crown); } +.#{$fa-css-prefix}-css3:before { content: fa-content($fa-var-css3); } +.#{$fa-css-prefix}-css3-alt:before { content: fa-content($fa-var-css3-alt); } +.#{$fa-css-prefix}-cube:before { content: fa-content($fa-var-cube); } +.#{$fa-css-prefix}-cubes:before { content: fa-content($fa-var-cubes); } +.#{$fa-css-prefix}-cut:before { content: fa-content($fa-var-cut); } +.#{$fa-css-prefix}-cuttlefish:before { content: fa-content($fa-var-cuttlefish); } +.#{$fa-css-prefix}-d-and-d:before { content: fa-content($fa-var-d-and-d); } +.#{$fa-css-prefix}-dashcube:before { content: fa-content($fa-var-dashcube); } +.#{$fa-css-prefix}-database:before { content: fa-content($fa-var-database); } +.#{$fa-css-prefix}-deaf:before { content: fa-content($fa-var-deaf); } +.#{$fa-css-prefix}-delicious:before { content: fa-content($fa-var-delicious); } +.#{$fa-css-prefix}-deploydog:before { content: fa-content($fa-var-deploydog); } +.#{$fa-css-prefix}-deskpro:before { content: fa-content($fa-var-deskpro); } +.#{$fa-css-prefix}-desktop:before { content: fa-content($fa-var-desktop); } +.#{$fa-css-prefix}-deviantart:before { content: fa-content($fa-var-deviantart); } +.#{$fa-css-prefix}-diagnoses:before { content: fa-content($fa-var-diagnoses); } +.#{$fa-css-prefix}-dice:before { content: fa-content($fa-var-dice); } +.#{$fa-css-prefix}-dice-five:before { content: fa-content($fa-var-dice-five); } +.#{$fa-css-prefix}-dice-four:before { content: fa-content($fa-var-dice-four); } +.#{$fa-css-prefix}-dice-one:before { content: fa-content($fa-var-dice-one); } +.#{$fa-css-prefix}-dice-six:before { content: fa-content($fa-var-dice-six); } +.#{$fa-css-prefix}-dice-three:before { content: fa-content($fa-var-dice-three); } +.#{$fa-css-prefix}-dice-two:before { content: fa-content($fa-var-dice-two); } +.#{$fa-css-prefix}-digg:before { content: fa-content($fa-var-digg); } +.#{$fa-css-prefix}-digital-ocean:before { content: fa-content($fa-var-digital-ocean); } +.#{$fa-css-prefix}-discord:before { content: fa-content($fa-var-discord); } +.#{$fa-css-prefix}-discourse:before { content: fa-content($fa-var-discourse); } +.#{$fa-css-prefix}-divide:before { content: fa-content($fa-var-divide); } +.#{$fa-css-prefix}-dna:before { content: fa-content($fa-var-dna); } +.#{$fa-css-prefix}-dochub:before { content: fa-content($fa-var-dochub); } +.#{$fa-css-prefix}-docker:before { content: fa-content($fa-var-docker); } +.#{$fa-css-prefix}-dollar-sign:before { content: fa-content($fa-var-dollar-sign); } +.#{$fa-css-prefix}-dolly:before { content: fa-content($fa-var-dolly); } +.#{$fa-css-prefix}-dolly-flatbed:before { content: fa-content($fa-var-dolly-flatbed); } +.#{$fa-css-prefix}-donate:before { content: fa-content($fa-var-donate); } +.#{$fa-css-prefix}-door-closed:before { content: fa-content($fa-var-door-closed); } +.#{$fa-css-prefix}-door-open:before { content: fa-content($fa-var-door-open); } +.#{$fa-css-prefix}-dot-circle:before { content: fa-content($fa-var-dot-circle); } +.#{$fa-css-prefix}-dove:before { content: fa-content($fa-var-dove); } +.#{$fa-css-prefix}-download:before { content: fa-content($fa-var-download); } +.#{$fa-css-prefix}-draft2digital:before { content: fa-content($fa-var-draft2digital); } +.#{$fa-css-prefix}-dribbble:before { content: fa-content($fa-var-dribbble); } +.#{$fa-css-prefix}-dribbble-square:before { content: fa-content($fa-var-dribbble-square); } +.#{$fa-css-prefix}-dropbox:before { content: fa-content($fa-var-dropbox); } +.#{$fa-css-prefix}-drupal:before { content: fa-content($fa-var-drupal); } +.#{$fa-css-prefix}-dumbbell:before { content: fa-content($fa-var-dumbbell); } +.#{$fa-css-prefix}-dyalog:before { content: fa-content($fa-var-dyalog); } +.#{$fa-css-prefix}-earlybirds:before { content: fa-content($fa-var-earlybirds); } +.#{$fa-css-prefix}-ebay:before { content: fa-content($fa-var-ebay); } +.#{$fa-css-prefix}-edge:before { content: fa-content($fa-var-edge); } +.#{$fa-css-prefix}-edit:before { content: fa-content($fa-var-edit); } +.#{$fa-css-prefix}-eject:before { content: fa-content($fa-var-eject); } +.#{$fa-css-prefix}-elementor:before { content: fa-content($fa-var-elementor); } +.#{$fa-css-prefix}-ellipsis-h:before { content: fa-content($fa-var-ellipsis-h); } +.#{$fa-css-prefix}-ellipsis-v:before { content: fa-content($fa-var-ellipsis-v); } +.#{$fa-css-prefix}-ember:before { content: fa-content($fa-var-ember); } +.#{$fa-css-prefix}-empire:before { content: fa-content($fa-var-empire); } +.#{$fa-css-prefix}-envelope:before { content: fa-content($fa-var-envelope); } +.#{$fa-css-prefix}-envelope-open:before { content: fa-content($fa-var-envelope-open); } +.#{$fa-css-prefix}-envelope-square:before { content: fa-content($fa-var-envelope-square); } +.#{$fa-css-prefix}-envira:before { content: fa-content($fa-var-envira); } +.#{$fa-css-prefix}-equals:before { content: fa-content($fa-var-equals); } +.#{$fa-css-prefix}-eraser:before { content: fa-content($fa-var-eraser); } +.#{$fa-css-prefix}-erlang:before { content: fa-content($fa-var-erlang); } +.#{$fa-css-prefix}-ethereum:before { content: fa-content($fa-var-ethereum); } +.#{$fa-css-prefix}-etsy:before { content: fa-content($fa-var-etsy); } +.#{$fa-css-prefix}-euro-sign:before { content: fa-content($fa-var-euro-sign); } +.#{$fa-css-prefix}-exchange-alt:before { content: fa-content($fa-var-exchange-alt); } +.#{$fa-css-prefix}-exclamation:before { content: fa-content($fa-var-exclamation); } +.#{$fa-css-prefix}-exclamation-circle:before { content: fa-content($fa-var-exclamation-circle); } +.#{$fa-css-prefix}-exclamation-triangle:before { content: fa-content($fa-var-exclamation-triangle); } +.#{$fa-css-prefix}-expand:before { content: fa-content($fa-var-expand); } +.#{$fa-css-prefix}-expand-arrows-alt:before { content: fa-content($fa-var-expand-arrows-alt); } +.#{$fa-css-prefix}-expeditedssl:before { content: fa-content($fa-var-expeditedssl); } +.#{$fa-css-prefix}-external-link-alt:before { content: fa-content($fa-var-external-link-alt); } +.#{$fa-css-prefix}-external-link-square-alt:before { content: fa-content($fa-var-external-link-square-alt); } +.#{$fa-css-prefix}-eye:before { content: fa-content($fa-var-eye); } +.#{$fa-css-prefix}-eye-dropper:before { content: fa-content($fa-var-eye-dropper); } +.#{$fa-css-prefix}-eye-slash:before { content: fa-content($fa-var-eye-slash); } +.#{$fa-css-prefix}-facebook:before { content: fa-content($fa-var-facebook); } +.#{$fa-css-prefix}-facebook-f:before { content: fa-content($fa-var-facebook-f); } +.#{$fa-css-prefix}-facebook-messenger:before { content: fa-content($fa-var-facebook-messenger); } +.#{$fa-css-prefix}-facebook-square:before { content: fa-content($fa-var-facebook-square); } +.#{$fa-css-prefix}-fast-backward:before { content: fa-content($fa-var-fast-backward); } +.#{$fa-css-prefix}-fast-forward:before { content: fa-content($fa-var-fast-forward); } +.#{$fa-css-prefix}-fax:before { content: fa-content($fa-var-fax); } +.#{$fa-css-prefix}-feather:before { content: fa-content($fa-var-feather); } +.#{$fa-css-prefix}-female:before { content: fa-content($fa-var-female); } +.#{$fa-css-prefix}-fighter-jet:before { content: fa-content($fa-var-fighter-jet); } +.#{$fa-css-prefix}-file:before { content: fa-content($fa-var-file); } +.#{$fa-css-prefix}-file-alt:before { content: fa-content($fa-var-file-alt); } +.#{$fa-css-prefix}-file-archive:before { content: fa-content($fa-var-file-archive); } +.#{$fa-css-prefix}-file-audio:before { content: fa-content($fa-var-file-audio); } +.#{$fa-css-prefix}-file-code:before { content: fa-content($fa-var-file-code); } +.#{$fa-css-prefix}-file-excel:before { content: fa-content($fa-var-file-excel); } +.#{$fa-css-prefix}-file-image:before { content: fa-content($fa-var-file-image); } +.#{$fa-css-prefix}-file-medical:before { content: fa-content($fa-var-file-medical); } +.#{$fa-css-prefix}-file-medical-alt:before { content: fa-content($fa-var-file-medical-alt); } +.#{$fa-css-prefix}-file-pdf:before { content: fa-content($fa-var-file-pdf); } +.#{$fa-css-prefix}-file-powerpoint:before { content: fa-content($fa-var-file-powerpoint); } +.#{$fa-css-prefix}-file-video:before { content: fa-content($fa-var-file-video); } +.#{$fa-css-prefix}-file-word:before { content: fa-content($fa-var-file-word); } +.#{$fa-css-prefix}-film:before { content: fa-content($fa-var-film); } +.#{$fa-css-prefix}-filter:before { content: fa-content($fa-var-filter); } +.#{$fa-css-prefix}-fire:before { content: fa-content($fa-var-fire); } +.#{$fa-css-prefix}-fire-extinguisher:before { content: fa-content($fa-var-fire-extinguisher); } +.#{$fa-css-prefix}-firefox:before { content: fa-content($fa-var-firefox); } +.#{$fa-css-prefix}-first-aid:before { content: fa-content($fa-var-first-aid); } +.#{$fa-css-prefix}-first-order:before { content: fa-content($fa-var-first-order); } +.#{$fa-css-prefix}-first-order-alt:before { content: fa-content($fa-var-first-order-alt); } +.#{$fa-css-prefix}-firstdraft:before { content: fa-content($fa-var-firstdraft); } +.#{$fa-css-prefix}-flag:before { content: fa-content($fa-var-flag); } +.#{$fa-css-prefix}-flag-checkered:before { content: fa-content($fa-var-flag-checkered); } +.#{$fa-css-prefix}-flask:before { content: fa-content($fa-var-flask); } +.#{$fa-css-prefix}-flickr:before { content: fa-content($fa-var-flickr); } +.#{$fa-css-prefix}-flipboard:before { content: fa-content($fa-var-flipboard); } +.#{$fa-css-prefix}-fly:before { content: fa-content($fa-var-fly); } +.#{$fa-css-prefix}-folder:before { content: fa-content($fa-var-folder); } +.#{$fa-css-prefix}-folder-open:before { content: fa-content($fa-var-folder-open); } +.#{$fa-css-prefix}-font:before { content: fa-content($fa-var-font); } +.#{$fa-css-prefix}-font-awesome:before { content: fa-content($fa-var-font-awesome); } +.#{$fa-css-prefix}-font-awesome-alt:before { content: fa-content($fa-var-font-awesome-alt); } +.#{$fa-css-prefix}-font-awesome-flag:before { content: fa-content($fa-var-font-awesome-flag); } +.#{$fa-css-prefix}-font-awesome-logo-full:before { content: fa-content($fa-var-font-awesome-logo-full); } +.#{$fa-css-prefix}-fonticons:before { content: fa-content($fa-var-fonticons); } +.#{$fa-css-prefix}-fonticons-fi:before { content: fa-content($fa-var-fonticons-fi); } +.#{$fa-css-prefix}-football-ball:before { content: fa-content($fa-var-football-ball); } +.#{$fa-css-prefix}-fort-awesome:before { content: fa-content($fa-var-fort-awesome); } +.#{$fa-css-prefix}-fort-awesome-alt:before { content: fa-content($fa-var-fort-awesome-alt); } +.#{$fa-css-prefix}-forumbee:before { content: fa-content($fa-var-forumbee); } +.#{$fa-css-prefix}-forward:before { content: fa-content($fa-var-forward); } +.#{$fa-css-prefix}-foursquare:before { content: fa-content($fa-var-foursquare); } +.#{$fa-css-prefix}-free-code-camp:before { content: fa-content($fa-var-free-code-camp); } +.#{$fa-css-prefix}-freebsd:before { content: fa-content($fa-var-freebsd); } +.#{$fa-css-prefix}-frog:before { content: fa-content($fa-var-frog); } +.#{$fa-css-prefix}-frown:before { content: fa-content($fa-var-frown); } +.#{$fa-css-prefix}-fulcrum:before { content: fa-content($fa-var-fulcrum); } +.#{$fa-css-prefix}-futbol:before { content: fa-content($fa-var-futbol); } +.#{$fa-css-prefix}-galactic-republic:before { content: fa-content($fa-var-galactic-republic); } +.#{$fa-css-prefix}-galactic-senate:before { content: fa-content($fa-var-galactic-senate); } +.#{$fa-css-prefix}-gamepad:before { content: fa-content($fa-var-gamepad); } +.#{$fa-css-prefix}-gas-pump:before { content: fa-content($fa-var-gas-pump); } +.#{$fa-css-prefix}-gavel:before { content: fa-content($fa-var-gavel); } +.#{$fa-css-prefix}-gem:before { content: fa-content($fa-var-gem); } +.#{$fa-css-prefix}-genderless:before { content: fa-content($fa-var-genderless); } +.#{$fa-css-prefix}-get-pocket:before { content: fa-content($fa-var-get-pocket); } +.#{$fa-css-prefix}-gg:before { content: fa-content($fa-var-gg); } +.#{$fa-css-prefix}-gg-circle:before { content: fa-content($fa-var-gg-circle); } +.#{$fa-css-prefix}-gift:before { content: fa-content($fa-var-gift); } +.#{$fa-css-prefix}-git:before { content: fa-content($fa-var-git); } +.#{$fa-css-prefix}-git-square:before { content: fa-content($fa-var-git-square); } +.#{$fa-css-prefix}-github:before { content: fa-content($fa-var-github); } +.#{$fa-css-prefix}-github-alt:before { content: fa-content($fa-var-github-alt); } +.#{$fa-css-prefix}-github-square:before { content: fa-content($fa-var-github-square); } +.#{$fa-css-prefix}-gitkraken:before { content: fa-content($fa-var-gitkraken); } +.#{$fa-css-prefix}-gitlab:before { content: fa-content($fa-var-gitlab); } +.#{$fa-css-prefix}-gitter:before { content: fa-content($fa-var-gitter); } +.#{$fa-css-prefix}-glass-martini:before { content: fa-content($fa-var-glass-martini); } +.#{$fa-css-prefix}-glasses:before { content: fa-content($fa-var-glasses); } +.#{$fa-css-prefix}-glide:before { content: fa-content($fa-var-glide); } +.#{$fa-css-prefix}-glide-g:before { content: fa-content($fa-var-glide-g); } +.#{$fa-css-prefix}-globe:before { content: fa-content($fa-var-globe); } +.#{$fa-css-prefix}-gofore:before { content: fa-content($fa-var-gofore); } +.#{$fa-css-prefix}-golf-ball:before { content: fa-content($fa-var-golf-ball); } +.#{$fa-css-prefix}-goodreads:before { content: fa-content($fa-var-goodreads); } +.#{$fa-css-prefix}-goodreads-g:before { content: fa-content($fa-var-goodreads-g); } +.#{$fa-css-prefix}-google:before { content: fa-content($fa-var-google); } +.#{$fa-css-prefix}-google-drive:before { content: fa-content($fa-var-google-drive); } +.#{$fa-css-prefix}-google-play:before { content: fa-content($fa-var-google-play); } +.#{$fa-css-prefix}-google-plus:before { content: fa-content($fa-var-google-plus); } +.#{$fa-css-prefix}-google-plus-g:before { content: fa-content($fa-var-google-plus-g); } +.#{$fa-css-prefix}-google-plus-square:before { content: fa-content($fa-var-google-plus-square); } +.#{$fa-css-prefix}-google-wallet:before { content: fa-content($fa-var-google-wallet); } +.#{$fa-css-prefix}-graduation-cap:before { content: fa-content($fa-var-graduation-cap); } +.#{$fa-css-prefix}-gratipay:before { content: fa-content($fa-var-gratipay); } +.#{$fa-css-prefix}-grav:before { content: fa-content($fa-var-grav); } +.#{$fa-css-prefix}-greater-than:before { content: fa-content($fa-var-greater-than); } +.#{$fa-css-prefix}-greater-than-equal:before { content: fa-content($fa-var-greater-than-equal); } +.#{$fa-css-prefix}-gripfire:before { content: fa-content($fa-var-gripfire); } +.#{$fa-css-prefix}-grunt:before { content: fa-content($fa-var-grunt); } +.#{$fa-css-prefix}-gulp:before { content: fa-content($fa-var-gulp); } +.#{$fa-css-prefix}-h-square:before { content: fa-content($fa-var-h-square); } +.#{$fa-css-prefix}-hacker-news:before { content: fa-content($fa-var-hacker-news); } +.#{$fa-css-prefix}-hacker-news-square:before { content: fa-content($fa-var-hacker-news-square); } +.#{$fa-css-prefix}-hand-holding:before { content: fa-content($fa-var-hand-holding); } +.#{$fa-css-prefix}-hand-holding-heart:before { content: fa-content($fa-var-hand-holding-heart); } +.#{$fa-css-prefix}-hand-holding-usd:before { content: fa-content($fa-var-hand-holding-usd); } +.#{$fa-css-prefix}-hand-lizard:before { content: fa-content($fa-var-hand-lizard); } +.#{$fa-css-prefix}-hand-paper:before { content: fa-content($fa-var-hand-paper); } +.#{$fa-css-prefix}-hand-peace:before { content: fa-content($fa-var-hand-peace); } +.#{$fa-css-prefix}-hand-point-down:before { content: fa-content($fa-var-hand-point-down); } +.#{$fa-css-prefix}-hand-point-left:before { content: fa-content($fa-var-hand-point-left); } +.#{$fa-css-prefix}-hand-point-right:before { content: fa-content($fa-var-hand-point-right); } +.#{$fa-css-prefix}-hand-point-up:before { content: fa-content($fa-var-hand-point-up); } +.#{$fa-css-prefix}-hand-pointer:before { content: fa-content($fa-var-hand-pointer); } +.#{$fa-css-prefix}-hand-rock:before { content: fa-content($fa-var-hand-rock); } +.#{$fa-css-prefix}-hand-scissors:before { content: fa-content($fa-var-hand-scissors); } +.#{$fa-css-prefix}-hand-spock:before { content: fa-content($fa-var-hand-spock); } +.#{$fa-css-prefix}-hands:before { content: fa-content($fa-var-hands); } +.#{$fa-css-prefix}-hands-helping:before { content: fa-content($fa-var-hands-helping); } +.#{$fa-css-prefix}-handshake:before { content: fa-content($fa-var-handshake); } +.#{$fa-css-prefix}-hashtag:before { content: fa-content($fa-var-hashtag); } +.#{$fa-css-prefix}-hdd:before { content: fa-content($fa-var-hdd); } +.#{$fa-css-prefix}-heading:before { content: fa-content($fa-var-heading); } +.#{$fa-css-prefix}-headphones:before { content: fa-content($fa-var-headphones); } +.#{$fa-css-prefix}-heart:before { content: fa-content($fa-var-heart); } +.#{$fa-css-prefix}-heartbeat:before { content: fa-content($fa-var-heartbeat); } +.#{$fa-css-prefix}-helicopter:before { content: fa-content($fa-var-helicopter); } +.#{$fa-css-prefix}-hips:before { content: fa-content($fa-var-hips); } +.#{$fa-css-prefix}-hire-a-helper:before { content: fa-content($fa-var-hire-a-helper); } +.#{$fa-css-prefix}-history:before { content: fa-content($fa-var-history); } +.#{$fa-css-prefix}-hockey-puck:before { content: fa-content($fa-var-hockey-puck); } +.#{$fa-css-prefix}-home:before { content: fa-content($fa-var-home); } +.#{$fa-css-prefix}-hooli:before { content: fa-content($fa-var-hooli); } +.#{$fa-css-prefix}-hospital:before { content: fa-content($fa-var-hospital); } +.#{$fa-css-prefix}-hospital-alt:before { content: fa-content($fa-var-hospital-alt); } +.#{$fa-css-prefix}-hospital-symbol:before { content: fa-content($fa-var-hospital-symbol); } +.#{$fa-css-prefix}-hotjar:before { content: fa-content($fa-var-hotjar); } +.#{$fa-css-prefix}-hourglass:before { content: fa-content($fa-var-hourglass); } +.#{$fa-css-prefix}-hourglass-end:before { content: fa-content($fa-var-hourglass-end); } +.#{$fa-css-prefix}-hourglass-half:before { content: fa-content($fa-var-hourglass-half); } +.#{$fa-css-prefix}-hourglass-start:before { content: fa-content($fa-var-hourglass-start); } +.#{$fa-css-prefix}-houzz:before { content: fa-content($fa-var-houzz); } +.#{$fa-css-prefix}-html5:before { content: fa-content($fa-var-html5); } +.#{$fa-css-prefix}-hubspot:before { content: fa-content($fa-var-hubspot); } +.#{$fa-css-prefix}-i-cursor:before { content: fa-content($fa-var-i-cursor); } +.#{$fa-css-prefix}-id-badge:before { content: fa-content($fa-var-id-badge); } +.#{$fa-css-prefix}-id-card:before { content: fa-content($fa-var-id-card); } +.#{$fa-css-prefix}-id-card-alt:before { content: fa-content($fa-var-id-card-alt); } +.#{$fa-css-prefix}-image:before { content: fa-content($fa-var-image); } +.#{$fa-css-prefix}-images:before { content: fa-content($fa-var-images); } +.#{$fa-css-prefix}-imdb:before { content: fa-content($fa-var-imdb); } +.#{$fa-css-prefix}-inbox:before { content: fa-content($fa-var-inbox); } +.#{$fa-css-prefix}-indent:before { content: fa-content($fa-var-indent); } +.#{$fa-css-prefix}-industry:before { content: fa-content($fa-var-industry); } +.#{$fa-css-prefix}-infinity:before { content: fa-content($fa-var-infinity); } +.#{$fa-css-prefix}-info:before { content: fa-content($fa-var-info); } +.#{$fa-css-prefix}-info-circle:before { content: fa-content($fa-var-info-circle); } +.#{$fa-css-prefix}-instagram:before { content: fa-content($fa-var-instagram); } +.#{$fa-css-prefix}-internet-explorer:before { content: fa-content($fa-var-internet-explorer); } +.#{$fa-css-prefix}-ioxhost:before { content: fa-content($fa-var-ioxhost); } +.#{$fa-css-prefix}-italic:before { content: fa-content($fa-var-italic); } +.#{$fa-css-prefix}-itunes:before { content: fa-content($fa-var-itunes); } +.#{$fa-css-prefix}-itunes-note:before { content: fa-content($fa-var-itunes-note); } +.#{$fa-css-prefix}-java:before { content: fa-content($fa-var-java); } +.#{$fa-css-prefix}-jedi-order:before { content: fa-content($fa-var-jedi-order); } +.#{$fa-css-prefix}-jenkins:before { content: fa-content($fa-var-jenkins); } +.#{$fa-css-prefix}-joget:before { content: fa-content($fa-var-joget); } +.#{$fa-css-prefix}-joomla:before { content: fa-content($fa-var-joomla); } +.#{$fa-css-prefix}-js:before { content: fa-content($fa-var-js); } +.#{$fa-css-prefix}-js-square:before { content: fa-content($fa-var-js-square); } +.#{$fa-css-prefix}-jsfiddle:before { content: fa-content($fa-var-jsfiddle); } +.#{$fa-css-prefix}-key:before { content: fa-content($fa-var-key); } +.#{$fa-css-prefix}-keybase:before { content: fa-content($fa-var-keybase); } +.#{$fa-css-prefix}-keyboard:before { content: fa-content($fa-var-keyboard); } +.#{$fa-css-prefix}-keycdn:before { content: fa-content($fa-var-keycdn); } +.#{$fa-css-prefix}-kickstarter:before { content: fa-content($fa-var-kickstarter); } +.#{$fa-css-prefix}-kickstarter-k:before { content: fa-content($fa-var-kickstarter-k); } +.#{$fa-css-prefix}-kiwi-bird:before { content: fa-content($fa-var-kiwi-bird); } +.#{$fa-css-prefix}-korvue:before { content: fa-content($fa-var-korvue); } +.#{$fa-css-prefix}-language:before { content: fa-content($fa-var-language); } +.#{$fa-css-prefix}-laptop:before { content: fa-content($fa-var-laptop); } +.#{$fa-css-prefix}-laravel:before { content: fa-content($fa-var-laravel); } +.#{$fa-css-prefix}-lastfm:before { content: fa-content($fa-var-lastfm); } +.#{$fa-css-prefix}-lastfm-square:before { content: fa-content($fa-var-lastfm-square); } +.#{$fa-css-prefix}-leaf:before { content: fa-content($fa-var-leaf); } +.#{$fa-css-prefix}-leanpub:before { content: fa-content($fa-var-leanpub); } +.#{$fa-css-prefix}-lemon:before { content: fa-content($fa-var-lemon); } +.#{$fa-css-prefix}-less:before { content: fa-content($fa-var-less); } +.#{$fa-css-prefix}-less-than:before { content: fa-content($fa-var-less-than); } +.#{$fa-css-prefix}-less-than-equal:before { content: fa-content($fa-var-less-than-equal); } +.#{$fa-css-prefix}-level-down-alt:before { content: fa-content($fa-var-level-down-alt); } +.#{$fa-css-prefix}-level-up-alt:before { content: fa-content($fa-var-level-up-alt); } +.#{$fa-css-prefix}-life-ring:before { content: fa-content($fa-var-life-ring); } +.#{$fa-css-prefix}-lightbulb:before { content: fa-content($fa-var-lightbulb); } +.#{$fa-css-prefix}-line:before { content: fa-content($fa-var-line); } +.#{$fa-css-prefix}-link:before { content: fa-content($fa-var-link); } +.#{$fa-css-prefix}-linkedin:before { content: fa-content($fa-var-linkedin); } +.#{$fa-css-prefix}-linkedin-in:before { content: fa-content($fa-var-linkedin-in); } +.#{$fa-css-prefix}-linode:before { content: fa-content($fa-var-linode); } +.#{$fa-css-prefix}-linux:before { content: fa-content($fa-var-linux); } +.#{$fa-css-prefix}-lira-sign:before { content: fa-content($fa-var-lira-sign); } +.#{$fa-css-prefix}-list:before { content: fa-content($fa-var-list); } +.#{$fa-css-prefix}-list-alt:before { content: fa-content($fa-var-list-alt); } +.#{$fa-css-prefix}-list-ol:before { content: fa-content($fa-var-list-ol); } +.#{$fa-css-prefix}-list-ul:before { content: fa-content($fa-var-list-ul); } +.#{$fa-css-prefix}-location-arrow:before { content: fa-content($fa-var-location-arrow); } +.#{$fa-css-prefix}-lock:before { content: fa-content($fa-var-lock); } +.#{$fa-css-prefix}-lock-open:before { content: fa-content($fa-var-lock-open); } +.#{$fa-css-prefix}-long-arrow-alt-down:before { content: fa-content($fa-var-long-arrow-alt-down); } +.#{$fa-css-prefix}-long-arrow-alt-left:before { content: fa-content($fa-var-long-arrow-alt-left); } +.#{$fa-css-prefix}-long-arrow-alt-right:before { content: fa-content($fa-var-long-arrow-alt-right); } +.#{$fa-css-prefix}-long-arrow-alt-up:before { content: fa-content($fa-var-long-arrow-alt-up); } +.#{$fa-css-prefix}-low-vision:before { content: fa-content($fa-var-low-vision); } +.#{$fa-css-prefix}-lyft:before { content: fa-content($fa-var-lyft); } +.#{$fa-css-prefix}-magento:before { content: fa-content($fa-var-magento); } +.#{$fa-css-prefix}-magic:before { content: fa-content($fa-var-magic); } +.#{$fa-css-prefix}-magnet:before { content: fa-content($fa-var-magnet); } +.#{$fa-css-prefix}-male:before { content: fa-content($fa-var-male); } +.#{$fa-css-prefix}-mandalorian:before { content: fa-content($fa-var-mandalorian); } +.#{$fa-css-prefix}-map:before { content: fa-content($fa-var-map); } +.#{$fa-css-prefix}-map-marker:before { content: fa-content($fa-var-map-marker); } +.#{$fa-css-prefix}-map-marker-alt:before { content: fa-content($fa-var-map-marker-alt); } +.#{$fa-css-prefix}-map-pin:before { content: fa-content($fa-var-map-pin); } +.#{$fa-css-prefix}-map-signs:before { content: fa-content($fa-var-map-signs); } +.#{$fa-css-prefix}-mars:before { content: fa-content($fa-var-mars); } +.#{$fa-css-prefix}-mars-double:before { content: fa-content($fa-var-mars-double); } +.#{$fa-css-prefix}-mars-stroke:before { content: fa-content($fa-var-mars-stroke); } +.#{$fa-css-prefix}-mars-stroke-h:before { content: fa-content($fa-var-mars-stroke-h); } +.#{$fa-css-prefix}-mars-stroke-v:before { content: fa-content($fa-var-mars-stroke-v); } +.#{$fa-css-prefix}-mastodon:before { content: fa-content($fa-var-mastodon); } +.#{$fa-css-prefix}-maxcdn:before { content: fa-content($fa-var-maxcdn); } +.#{$fa-css-prefix}-medapps:before { content: fa-content($fa-var-medapps); } +.#{$fa-css-prefix}-medium:before { content: fa-content($fa-var-medium); } +.#{$fa-css-prefix}-medium-m:before { content: fa-content($fa-var-medium-m); } +.#{$fa-css-prefix}-medkit:before { content: fa-content($fa-var-medkit); } +.#{$fa-css-prefix}-medrt:before { content: fa-content($fa-var-medrt); } +.#{$fa-css-prefix}-meetup:before { content: fa-content($fa-var-meetup); } +.#{$fa-css-prefix}-meh:before { content: fa-content($fa-var-meh); } +.#{$fa-css-prefix}-memory:before { content: fa-content($fa-var-memory); } +.#{$fa-css-prefix}-mercury:before { content: fa-content($fa-var-mercury); } +.#{$fa-css-prefix}-microchip:before { content: fa-content($fa-var-microchip); } +.#{$fa-css-prefix}-microphone:before { content: fa-content($fa-var-microphone); } +.#{$fa-css-prefix}-microphone-alt:before { content: fa-content($fa-var-microphone-alt); } +.#{$fa-css-prefix}-microphone-alt-slash:before { content: fa-content($fa-var-microphone-alt-slash); } +.#{$fa-css-prefix}-microphone-slash:before { content: fa-content($fa-var-microphone-slash); } +.#{$fa-css-prefix}-microsoft:before { content: fa-content($fa-var-microsoft); } +.#{$fa-css-prefix}-minus:before { content: fa-content($fa-var-minus); } +.#{$fa-css-prefix}-minus-circle:before { content: fa-content($fa-var-minus-circle); } +.#{$fa-css-prefix}-minus-square:before { content: fa-content($fa-var-minus-square); } +.#{$fa-css-prefix}-mix:before { content: fa-content($fa-var-mix); } +.#{$fa-css-prefix}-mixcloud:before { content: fa-content($fa-var-mixcloud); } +.#{$fa-css-prefix}-mizuni:before { content: fa-content($fa-var-mizuni); } +.#{$fa-css-prefix}-mobile:before { content: fa-content($fa-var-mobile); } +.#{$fa-css-prefix}-mobile-alt:before { content: fa-content($fa-var-mobile-alt); } +.#{$fa-css-prefix}-modx:before { content: fa-content($fa-var-modx); } +.#{$fa-css-prefix}-monero:before { content: fa-content($fa-var-monero); } +.#{$fa-css-prefix}-money-bill:before { content: fa-content($fa-var-money-bill); } +.#{$fa-css-prefix}-money-bill-alt:before { content: fa-content($fa-var-money-bill-alt); } +.#{$fa-css-prefix}-money-bill-wave:before { content: fa-content($fa-var-money-bill-wave); } +.#{$fa-css-prefix}-money-bill-wave-alt:before { content: fa-content($fa-var-money-bill-wave-alt); } +.#{$fa-css-prefix}-money-check:before { content: fa-content($fa-var-money-check); } +.#{$fa-css-prefix}-money-check-alt:before { content: fa-content($fa-var-money-check-alt); } +.#{$fa-css-prefix}-moon:before { content: fa-content($fa-var-moon); } +.#{$fa-css-prefix}-motorcycle:before { content: fa-content($fa-var-motorcycle); } +.#{$fa-css-prefix}-mouse-pointer:before { content: fa-content($fa-var-mouse-pointer); } +.#{$fa-css-prefix}-music:before { content: fa-content($fa-var-music); } +.#{$fa-css-prefix}-napster:before { content: fa-content($fa-var-napster); } +.#{$fa-css-prefix}-neuter:before { content: fa-content($fa-var-neuter); } +.#{$fa-css-prefix}-newspaper:before { content: fa-content($fa-var-newspaper); } +.#{$fa-css-prefix}-nintendo-switch:before { content: fa-content($fa-var-nintendo-switch); } +.#{$fa-css-prefix}-node:before { content: fa-content($fa-var-node); } +.#{$fa-css-prefix}-node-js:before { content: fa-content($fa-var-node-js); } +.#{$fa-css-prefix}-not-equal:before { content: fa-content($fa-var-not-equal); } +.#{$fa-css-prefix}-notes-medical:before { content: fa-content($fa-var-notes-medical); } +.#{$fa-css-prefix}-npm:before { content: fa-content($fa-var-npm); } +.#{$fa-css-prefix}-ns8:before { content: fa-content($fa-var-ns8); } +.#{$fa-css-prefix}-nutritionix:before { content: fa-content($fa-var-nutritionix); } +.#{$fa-css-prefix}-object-group:before { content: fa-content($fa-var-object-group); } +.#{$fa-css-prefix}-object-ungroup:before { content: fa-content($fa-var-object-ungroup); } +.#{$fa-css-prefix}-odnoklassniki:before { content: fa-content($fa-var-odnoklassniki); } +.#{$fa-css-prefix}-odnoklassniki-square:before { content: fa-content($fa-var-odnoklassniki-square); } +.#{$fa-css-prefix}-old-republic:before { content: fa-content($fa-var-old-republic); } +.#{$fa-css-prefix}-opencart:before { content: fa-content($fa-var-opencart); } +.#{$fa-css-prefix}-openid:before { content: fa-content($fa-var-openid); } +.#{$fa-css-prefix}-opera:before { content: fa-content($fa-var-opera); } +.#{$fa-css-prefix}-optin-monster:before { content: fa-content($fa-var-optin-monster); } +.#{$fa-css-prefix}-osi:before { content: fa-content($fa-var-osi); } +.#{$fa-css-prefix}-outdent:before { content: fa-content($fa-var-outdent); } +.#{$fa-css-prefix}-page4:before { content: fa-content($fa-var-page4); } +.#{$fa-css-prefix}-pagelines:before { content: fa-content($fa-var-pagelines); } +.#{$fa-css-prefix}-paint-brush:before { content: fa-content($fa-var-paint-brush); } +.#{$fa-css-prefix}-palette:before { content: fa-content($fa-var-palette); } +.#{$fa-css-prefix}-palfed:before { content: fa-content($fa-var-palfed); } +.#{$fa-css-prefix}-pallet:before { content: fa-content($fa-var-pallet); } +.#{$fa-css-prefix}-paper-plane:before { content: fa-content($fa-var-paper-plane); } +.#{$fa-css-prefix}-paperclip:before { content: fa-content($fa-var-paperclip); } +.#{$fa-css-prefix}-parachute-box:before { content: fa-content($fa-var-parachute-box); } +.#{$fa-css-prefix}-paragraph:before { content: fa-content($fa-var-paragraph); } +.#{$fa-css-prefix}-parking:before { content: fa-content($fa-var-parking); } +.#{$fa-css-prefix}-paste:before { content: fa-content($fa-var-paste); } +.#{$fa-css-prefix}-patreon:before { content: fa-content($fa-var-patreon); } +.#{$fa-css-prefix}-pause:before { content: fa-content($fa-var-pause); } +.#{$fa-css-prefix}-pause-circle:before { content: fa-content($fa-var-pause-circle); } +.#{$fa-css-prefix}-paw:before { content: fa-content($fa-var-paw); } +.#{$fa-css-prefix}-paypal:before { content: fa-content($fa-var-paypal); } +.#{$fa-css-prefix}-pen-square:before { content: fa-content($fa-var-pen-square); } +.#{$fa-css-prefix}-pencil-alt:before { content: fa-content($fa-var-pencil-alt); } +.#{$fa-css-prefix}-people-carry:before { content: fa-content($fa-var-people-carry); } +.#{$fa-css-prefix}-percent:before { content: fa-content($fa-var-percent); } +.#{$fa-css-prefix}-percentage:before { content: fa-content($fa-var-percentage); } +.#{$fa-css-prefix}-periscope:before { content: fa-content($fa-var-periscope); } +.#{$fa-css-prefix}-phabricator:before { content: fa-content($fa-var-phabricator); } +.#{$fa-css-prefix}-phoenix-framework:before { content: fa-content($fa-var-phoenix-framework); } +.#{$fa-css-prefix}-phoenix-squadron:before { content: fa-content($fa-var-phoenix-squadron); } +.#{$fa-css-prefix}-phone:before { content: fa-content($fa-var-phone); } +.#{$fa-css-prefix}-phone-slash:before { content: fa-content($fa-var-phone-slash); } +.#{$fa-css-prefix}-phone-square:before { content: fa-content($fa-var-phone-square); } +.#{$fa-css-prefix}-phone-volume:before { content: fa-content($fa-var-phone-volume); } +.#{$fa-css-prefix}-php:before { content: fa-content($fa-var-php); } +.#{$fa-css-prefix}-pied-piper:before { content: fa-content($fa-var-pied-piper); } +.#{$fa-css-prefix}-pied-piper-alt:before { content: fa-content($fa-var-pied-piper-alt); } +.#{$fa-css-prefix}-pied-piper-hat:before { content: fa-content($fa-var-pied-piper-hat); } +.#{$fa-css-prefix}-pied-piper-pp:before { content: fa-content($fa-var-pied-piper-pp); } +.#{$fa-css-prefix}-piggy-bank:before { content: fa-content($fa-var-piggy-bank); } +.#{$fa-css-prefix}-pills:before { content: fa-content($fa-var-pills); } +.#{$fa-css-prefix}-pinterest:before { content: fa-content($fa-var-pinterest); } +.#{$fa-css-prefix}-pinterest-p:before { content: fa-content($fa-var-pinterest-p); } +.#{$fa-css-prefix}-pinterest-square:before { content: fa-content($fa-var-pinterest-square); } +.#{$fa-css-prefix}-plane:before { content: fa-content($fa-var-plane); } +.#{$fa-css-prefix}-play:before { content: fa-content($fa-var-play); } +.#{$fa-css-prefix}-play-circle:before { content: fa-content($fa-var-play-circle); } +.#{$fa-css-prefix}-playstation:before { content: fa-content($fa-var-playstation); } +.#{$fa-css-prefix}-plug:before { content: fa-content($fa-var-plug); } +.#{$fa-css-prefix}-plus:before { content: fa-content($fa-var-plus); } +.#{$fa-css-prefix}-plus-circle:before { content: fa-content($fa-var-plus-circle); } +.#{$fa-css-prefix}-plus-square:before { content: fa-content($fa-var-plus-square); } +.#{$fa-css-prefix}-podcast:before { content: fa-content($fa-var-podcast); } +.#{$fa-css-prefix}-poo:before { content: fa-content($fa-var-poo); } +.#{$fa-css-prefix}-portrait:before { content: fa-content($fa-var-portrait); } +.#{$fa-css-prefix}-pound-sign:before { content: fa-content($fa-var-pound-sign); } +.#{$fa-css-prefix}-power-off:before { content: fa-content($fa-var-power-off); } +.#{$fa-css-prefix}-prescription-bottle:before { content: fa-content($fa-var-prescription-bottle); } +.#{$fa-css-prefix}-prescription-bottle-alt:before { content: fa-content($fa-var-prescription-bottle-alt); } +.#{$fa-css-prefix}-print:before { content: fa-content($fa-var-print); } +.#{$fa-css-prefix}-procedures:before { content: fa-content($fa-var-procedures); } +.#{$fa-css-prefix}-product-hunt:before { content: fa-content($fa-var-product-hunt); } +.#{$fa-css-prefix}-project-diagram:before { content: fa-content($fa-var-project-diagram); } +.#{$fa-css-prefix}-pushed:before { content: fa-content($fa-var-pushed); } +.#{$fa-css-prefix}-puzzle-piece:before { content: fa-content($fa-var-puzzle-piece); } +.#{$fa-css-prefix}-python:before { content: fa-content($fa-var-python); } +.#{$fa-css-prefix}-qq:before { content: fa-content($fa-var-qq); } +.#{$fa-css-prefix}-qrcode:before { content: fa-content($fa-var-qrcode); } +.#{$fa-css-prefix}-question:before { content: fa-content($fa-var-question); } +.#{$fa-css-prefix}-question-circle:before { content: fa-content($fa-var-question-circle); } +.#{$fa-css-prefix}-quidditch:before { content: fa-content($fa-var-quidditch); } +.#{$fa-css-prefix}-quinscape:before { content: fa-content($fa-var-quinscape); } +.#{$fa-css-prefix}-quora:before { content: fa-content($fa-var-quora); } +.#{$fa-css-prefix}-quote-left:before { content: fa-content($fa-var-quote-left); } +.#{$fa-css-prefix}-quote-right:before { content: fa-content($fa-var-quote-right); } +.#{$fa-css-prefix}-r-project:before { content: fa-content($fa-var-r-project); } +.#{$fa-css-prefix}-random:before { content: fa-content($fa-var-random); } +.#{$fa-css-prefix}-ravelry:before { content: fa-content($fa-var-ravelry); } +.#{$fa-css-prefix}-react:before { content: fa-content($fa-var-react); } +.#{$fa-css-prefix}-readme:before { content: fa-content($fa-var-readme); } +.#{$fa-css-prefix}-rebel:before { content: fa-content($fa-var-rebel); } +.#{$fa-css-prefix}-receipt:before { content: fa-content($fa-var-receipt); } +.#{$fa-css-prefix}-recycle:before { content: fa-content($fa-var-recycle); } +.#{$fa-css-prefix}-red-river:before { content: fa-content($fa-var-red-river); } +.#{$fa-css-prefix}-reddit:before { content: fa-content($fa-var-reddit); } +.#{$fa-css-prefix}-reddit-alien:before { content: fa-content($fa-var-reddit-alien); } +.#{$fa-css-prefix}-reddit-square:before { content: fa-content($fa-var-reddit-square); } +.#{$fa-css-prefix}-redo:before { content: fa-content($fa-var-redo); } +.#{$fa-css-prefix}-redo-alt:before { content: fa-content($fa-var-redo-alt); } +.#{$fa-css-prefix}-registered:before { content: fa-content($fa-var-registered); } +.#{$fa-css-prefix}-rendact:before { content: fa-content($fa-var-rendact); } +.#{$fa-css-prefix}-renren:before { content: fa-content($fa-var-renren); } +.#{$fa-css-prefix}-reply:before { content: fa-content($fa-var-reply); } +.#{$fa-css-prefix}-reply-all:before { content: fa-content($fa-var-reply-all); } +.#{$fa-css-prefix}-replyd:before { content: fa-content($fa-var-replyd); } +.#{$fa-css-prefix}-researchgate:before { content: fa-content($fa-var-researchgate); } +.#{$fa-css-prefix}-resolving:before { content: fa-content($fa-var-resolving); } +.#{$fa-css-prefix}-retweet:before { content: fa-content($fa-var-retweet); } +.#{$fa-css-prefix}-ribbon:before { content: fa-content($fa-var-ribbon); } +.#{$fa-css-prefix}-road:before { content: fa-content($fa-var-road); } +.#{$fa-css-prefix}-robot:before { content: fa-content($fa-var-robot); } +.#{$fa-css-prefix}-rocket:before { content: fa-content($fa-var-rocket); } +.#{$fa-css-prefix}-rocketchat:before { content: fa-content($fa-var-rocketchat); } +.#{$fa-css-prefix}-rockrms:before { content: fa-content($fa-var-rockrms); } +.#{$fa-css-prefix}-rss:before { content: fa-content($fa-var-rss); } +.#{$fa-css-prefix}-rss-square:before { content: fa-content($fa-var-rss-square); } +.#{$fa-css-prefix}-ruble-sign:before { content: fa-content($fa-var-ruble-sign); } +.#{$fa-css-prefix}-ruler:before { content: fa-content($fa-var-ruler); } +.#{$fa-css-prefix}-ruler-combined:before { content: fa-content($fa-var-ruler-combined); } +.#{$fa-css-prefix}-ruler-horizontal:before { content: fa-content($fa-var-ruler-horizontal); } +.#{$fa-css-prefix}-ruler-vertical:before { content: fa-content($fa-var-ruler-vertical); } +.#{$fa-css-prefix}-rupee-sign:before { content: fa-content($fa-var-rupee-sign); } +.#{$fa-css-prefix}-safari:before { content: fa-content($fa-var-safari); } +.#{$fa-css-prefix}-sass:before { content: fa-content($fa-var-sass); } +.#{$fa-css-prefix}-save:before { content: fa-content($fa-var-save); } +.#{$fa-css-prefix}-schlix:before { content: fa-content($fa-var-schlix); } +.#{$fa-css-prefix}-school:before { content: fa-content($fa-var-school); } +.#{$fa-css-prefix}-screwdriver:before { content: fa-content($fa-var-screwdriver); } +.#{$fa-css-prefix}-scribd:before { content: fa-content($fa-var-scribd); } +.#{$fa-css-prefix}-search:before { content: fa-content($fa-var-search); } +.#{$fa-css-prefix}-search-minus:before { content: fa-content($fa-var-search-minus); } +.#{$fa-css-prefix}-search-plus:before { content: fa-content($fa-var-search-plus); } +.#{$fa-css-prefix}-searchengin:before { content: fa-content($fa-var-searchengin); } +.#{$fa-css-prefix}-seedling:before { content: fa-content($fa-var-seedling); } +.#{$fa-css-prefix}-sellcast:before { content: fa-content($fa-var-sellcast); } +.#{$fa-css-prefix}-sellsy:before { content: fa-content($fa-var-sellsy); } +.#{$fa-css-prefix}-server:before { content: fa-content($fa-var-server); } +.#{$fa-css-prefix}-servicestack:before { content: fa-content($fa-var-servicestack); } +.#{$fa-css-prefix}-share:before { content: fa-content($fa-var-share); } +.#{$fa-css-prefix}-share-alt:before { content: fa-content($fa-var-share-alt); } +.#{$fa-css-prefix}-share-alt-square:before { content: fa-content($fa-var-share-alt-square); } +.#{$fa-css-prefix}-share-square:before { content: fa-content($fa-var-share-square); } +.#{$fa-css-prefix}-shekel-sign:before { content: fa-content($fa-var-shekel-sign); } +.#{$fa-css-prefix}-shield-alt:before { content: fa-content($fa-var-shield-alt); } +.#{$fa-css-prefix}-ship:before { content: fa-content($fa-var-ship); } +.#{$fa-css-prefix}-shipping-fast:before { content: fa-content($fa-var-shipping-fast); } +.#{$fa-css-prefix}-shirtsinbulk:before { content: fa-content($fa-var-shirtsinbulk); } +.#{$fa-css-prefix}-shoe-prints:before { content: fa-content($fa-var-shoe-prints); } +.#{$fa-css-prefix}-shopping-bag:before { content: fa-content($fa-var-shopping-bag); } +.#{$fa-css-prefix}-shopping-basket:before { content: fa-content($fa-var-shopping-basket); } +.#{$fa-css-prefix}-shopping-cart:before { content: fa-content($fa-var-shopping-cart); } +.#{$fa-css-prefix}-shower:before { content: fa-content($fa-var-shower); } +.#{$fa-css-prefix}-sign:before { content: fa-content($fa-var-sign); } +.#{$fa-css-prefix}-sign-in-alt:before { content: fa-content($fa-var-sign-in-alt); } +.#{$fa-css-prefix}-sign-language:before { content: fa-content($fa-var-sign-language); } +.#{$fa-css-prefix}-sign-out-alt:before { content: fa-content($fa-var-sign-out-alt); } +.#{$fa-css-prefix}-signal:before { content: fa-content($fa-var-signal); } +.#{$fa-css-prefix}-simplybuilt:before { content: fa-content($fa-var-simplybuilt); } +.#{$fa-css-prefix}-sistrix:before { content: fa-content($fa-var-sistrix); } +.#{$fa-css-prefix}-sitemap:before { content: fa-content($fa-var-sitemap); } +.#{$fa-css-prefix}-sith:before { content: fa-content($fa-var-sith); } +.#{$fa-css-prefix}-skull:before { content: fa-content($fa-var-skull); } +.#{$fa-css-prefix}-skyatlas:before { content: fa-content($fa-var-skyatlas); } +.#{$fa-css-prefix}-skype:before { content: fa-content($fa-var-skype); } +.#{$fa-css-prefix}-slack:before { content: fa-content($fa-var-slack); } +.#{$fa-css-prefix}-slack-hash:before { content: fa-content($fa-var-slack-hash); } +.#{$fa-css-prefix}-sliders-h:before { content: fa-content($fa-var-sliders-h); } +.#{$fa-css-prefix}-slideshare:before { content: fa-content($fa-var-slideshare); } +.#{$fa-css-prefix}-smile:before { content: fa-content($fa-var-smile); } +.#{$fa-css-prefix}-smoking:before { content: fa-content($fa-var-smoking); } +.#{$fa-css-prefix}-smoking-ban:before { content: fa-content($fa-var-smoking-ban); } +.#{$fa-css-prefix}-snapchat:before { content: fa-content($fa-var-snapchat); } +.#{$fa-css-prefix}-snapchat-ghost:before { content: fa-content($fa-var-snapchat-ghost); } +.#{$fa-css-prefix}-snapchat-square:before { content: fa-content($fa-var-snapchat-square); } +.#{$fa-css-prefix}-snowflake:before { content: fa-content($fa-var-snowflake); } +.#{$fa-css-prefix}-sort:before { content: fa-content($fa-var-sort); } +.#{$fa-css-prefix}-sort-alpha-down:before { content: fa-content($fa-var-sort-alpha-down); } +.#{$fa-css-prefix}-sort-alpha-up:before { content: fa-content($fa-var-sort-alpha-up); } +.#{$fa-css-prefix}-sort-amount-down:before { content: fa-content($fa-var-sort-amount-down); } +.#{$fa-css-prefix}-sort-amount-up:before { content: fa-content($fa-var-sort-amount-up); } +.#{$fa-css-prefix}-sort-down:before { content: fa-content($fa-var-sort-down); } +.#{$fa-css-prefix}-sort-numeric-down:before { content: fa-content($fa-var-sort-numeric-down); } +.#{$fa-css-prefix}-sort-numeric-up:before { content: fa-content($fa-var-sort-numeric-up); } +.#{$fa-css-prefix}-sort-up:before { content: fa-content($fa-var-sort-up); } +.#{$fa-css-prefix}-soundcloud:before { content: fa-content($fa-var-soundcloud); } +.#{$fa-css-prefix}-space-shuttle:before { content: fa-content($fa-var-space-shuttle); } +.#{$fa-css-prefix}-speakap:before { content: fa-content($fa-var-speakap); } +.#{$fa-css-prefix}-spinner:before { content: fa-content($fa-var-spinner); } +.#{$fa-css-prefix}-spotify:before { content: fa-content($fa-var-spotify); } +.#{$fa-css-prefix}-square:before { content: fa-content($fa-var-square); } +.#{$fa-css-prefix}-square-full:before { content: fa-content($fa-var-square-full); } +.#{$fa-css-prefix}-stack-exchange:before { content: fa-content($fa-var-stack-exchange); } +.#{$fa-css-prefix}-stack-overflow:before { content: fa-content($fa-var-stack-overflow); } +.#{$fa-css-prefix}-star:before { content: fa-content($fa-var-star); } +.#{$fa-css-prefix}-star-half:before { content: fa-content($fa-var-star-half); } +.#{$fa-css-prefix}-staylinked:before { content: fa-content($fa-var-staylinked); } +.#{$fa-css-prefix}-steam:before { content: fa-content($fa-var-steam); } +.#{$fa-css-prefix}-steam-square:before { content: fa-content($fa-var-steam-square); } +.#{$fa-css-prefix}-steam-symbol:before { content: fa-content($fa-var-steam-symbol); } +.#{$fa-css-prefix}-step-backward:before { content: fa-content($fa-var-step-backward); } +.#{$fa-css-prefix}-step-forward:before { content: fa-content($fa-var-step-forward); } +.#{$fa-css-prefix}-stethoscope:before { content: fa-content($fa-var-stethoscope); } +.#{$fa-css-prefix}-sticker-mule:before { content: fa-content($fa-var-sticker-mule); } +.#{$fa-css-prefix}-sticky-note:before { content: fa-content($fa-var-sticky-note); } +.#{$fa-css-prefix}-stop:before { content: fa-content($fa-var-stop); } +.#{$fa-css-prefix}-stop-circle:before { content: fa-content($fa-var-stop-circle); } +.#{$fa-css-prefix}-stopwatch:before { content: fa-content($fa-var-stopwatch); } +.#{$fa-css-prefix}-store:before { content: fa-content($fa-var-store); } +.#{$fa-css-prefix}-store-alt:before { content: fa-content($fa-var-store-alt); } +.#{$fa-css-prefix}-strava:before { content: fa-content($fa-var-strava); } +.#{$fa-css-prefix}-stream:before { content: fa-content($fa-var-stream); } +.#{$fa-css-prefix}-street-view:before { content: fa-content($fa-var-street-view); } +.#{$fa-css-prefix}-strikethrough:before { content: fa-content($fa-var-strikethrough); } +.#{$fa-css-prefix}-stripe:before { content: fa-content($fa-var-stripe); } +.#{$fa-css-prefix}-stripe-s:before { content: fa-content($fa-var-stripe-s); } +.#{$fa-css-prefix}-stroopwafel:before { content: fa-content($fa-var-stroopwafel); } +.#{$fa-css-prefix}-studiovinari:before { content: fa-content($fa-var-studiovinari); } +.#{$fa-css-prefix}-stumbleupon:before { content: fa-content($fa-var-stumbleupon); } +.#{$fa-css-prefix}-stumbleupon-circle:before { content: fa-content($fa-var-stumbleupon-circle); } +.#{$fa-css-prefix}-subscript:before { content: fa-content($fa-var-subscript); } +.#{$fa-css-prefix}-subway:before { content: fa-content($fa-var-subway); } +.#{$fa-css-prefix}-suitcase:before { content: fa-content($fa-var-suitcase); } +.#{$fa-css-prefix}-sun:before { content: fa-content($fa-var-sun); } +.#{$fa-css-prefix}-superpowers:before { content: fa-content($fa-var-superpowers); } +.#{$fa-css-prefix}-superscript:before { content: fa-content($fa-var-superscript); } +.#{$fa-css-prefix}-supple:before { content: fa-content($fa-var-supple); } +.#{$fa-css-prefix}-sync:before { content: fa-content($fa-var-sync); } +.#{$fa-css-prefix}-sync-alt:before { content: fa-content($fa-var-sync-alt); } +.#{$fa-css-prefix}-syringe:before { content: fa-content($fa-var-syringe); } +.#{$fa-css-prefix}-table:before { content: fa-content($fa-var-table); } +.#{$fa-css-prefix}-table-tennis:before { content: fa-content($fa-var-table-tennis); } +.#{$fa-css-prefix}-tablet:before { content: fa-content($fa-var-tablet); } +.#{$fa-css-prefix}-tablet-alt:before { content: fa-content($fa-var-tablet-alt); } +.#{$fa-css-prefix}-tablets:before { content: fa-content($fa-var-tablets); } +.#{$fa-css-prefix}-tachometer-alt:before { content: fa-content($fa-var-tachometer-alt); } +.#{$fa-css-prefix}-tag:before { content: fa-content($fa-var-tag); } +.#{$fa-css-prefix}-tags:before { content: fa-content($fa-var-tags); } +.#{$fa-css-prefix}-tape:before { content: fa-content($fa-var-tape); } +.#{$fa-css-prefix}-tasks:before { content: fa-content($fa-var-tasks); } +.#{$fa-css-prefix}-taxi:before { content: fa-content($fa-var-taxi); } +.#{$fa-css-prefix}-teamspeak:before { content: fa-content($fa-var-teamspeak); } +.#{$fa-css-prefix}-telegram:before { content: fa-content($fa-var-telegram); } +.#{$fa-css-prefix}-telegram-plane:before { content: fa-content($fa-var-telegram-plane); } +.#{$fa-css-prefix}-tencent-weibo:before { content: fa-content($fa-var-tencent-weibo); } +.#{$fa-css-prefix}-terminal:before { content: fa-content($fa-var-terminal); } +.#{$fa-css-prefix}-text-height:before { content: fa-content($fa-var-text-height); } +.#{$fa-css-prefix}-text-width:before { content: fa-content($fa-var-text-width); } +.#{$fa-css-prefix}-th:before { content: fa-content($fa-var-th); } +.#{$fa-css-prefix}-th-large:before { content: fa-content($fa-var-th-large); } +.#{$fa-css-prefix}-th-list:before { content: fa-content($fa-var-th-list); } +.#{$fa-css-prefix}-themeisle:before { content: fa-content($fa-var-themeisle); } +.#{$fa-css-prefix}-thermometer:before { content: fa-content($fa-var-thermometer); } +.#{$fa-css-prefix}-thermometer-empty:before { content: fa-content($fa-var-thermometer-empty); } +.#{$fa-css-prefix}-thermometer-full:before { content: fa-content($fa-var-thermometer-full); } +.#{$fa-css-prefix}-thermometer-half:before { content: fa-content($fa-var-thermometer-half); } +.#{$fa-css-prefix}-thermometer-quarter:before { content: fa-content($fa-var-thermometer-quarter); } +.#{$fa-css-prefix}-thermometer-three-quarters:before { content: fa-content($fa-var-thermometer-three-quarters); } +.#{$fa-css-prefix}-thumbs-down:before { content: fa-content($fa-var-thumbs-down); } +.#{$fa-css-prefix}-thumbs-up:before { content: fa-content($fa-var-thumbs-up); } +.#{$fa-css-prefix}-thumbtack:before { content: fa-content($fa-var-thumbtack); } +.#{$fa-css-prefix}-ticket-alt:before { content: fa-content($fa-var-ticket-alt); } +.#{$fa-css-prefix}-times:before { content: fa-content($fa-var-times); } +.#{$fa-css-prefix}-times-circle:before { content: fa-content($fa-var-times-circle); } +.#{$fa-css-prefix}-tint:before { content: fa-content($fa-var-tint); } +.#{$fa-css-prefix}-toggle-off:before { content: fa-content($fa-var-toggle-off); } +.#{$fa-css-prefix}-toggle-on:before { content: fa-content($fa-var-toggle-on); } +.#{$fa-css-prefix}-toolbox:before { content: fa-content($fa-var-toolbox); } +.#{$fa-css-prefix}-trade-federation:before { content: fa-content($fa-var-trade-federation); } +.#{$fa-css-prefix}-trademark:before { content: fa-content($fa-var-trademark); } +.#{$fa-css-prefix}-train:before { content: fa-content($fa-var-train); } +.#{$fa-css-prefix}-transgender:before { content: fa-content($fa-var-transgender); } +.#{$fa-css-prefix}-transgender-alt:before { content: fa-content($fa-var-transgender-alt); } +.#{$fa-css-prefix}-trash:before { content: fa-content($fa-var-trash); } +.#{$fa-css-prefix}-trash-alt:before { content: fa-content($fa-var-trash-alt); } +.#{$fa-css-prefix}-tree:before { content: fa-content($fa-var-tree); } +.#{$fa-css-prefix}-trello:before { content: fa-content($fa-var-trello); } +.#{$fa-css-prefix}-tripadvisor:before { content: fa-content($fa-var-tripadvisor); } +.#{$fa-css-prefix}-trophy:before { content: fa-content($fa-var-trophy); } +.#{$fa-css-prefix}-truck:before { content: fa-content($fa-var-truck); } +.#{$fa-css-prefix}-truck-loading:before { content: fa-content($fa-var-truck-loading); } +.#{$fa-css-prefix}-truck-moving:before { content: fa-content($fa-var-truck-moving); } +.#{$fa-css-prefix}-tshirt:before { content: fa-content($fa-var-tshirt); } +.#{$fa-css-prefix}-tty:before { content: fa-content($fa-var-tty); } +.#{$fa-css-prefix}-tumblr:before { content: fa-content($fa-var-tumblr); } +.#{$fa-css-prefix}-tumblr-square:before { content: fa-content($fa-var-tumblr-square); } +.#{$fa-css-prefix}-tv:before { content: fa-content($fa-var-tv); } +.#{$fa-css-prefix}-twitch:before { content: fa-content($fa-var-twitch); } +.#{$fa-css-prefix}-twitter:before { content: fa-content($fa-var-twitter); } +.#{$fa-css-prefix}-twitter-square:before { content: fa-content($fa-var-twitter-square); } +.#{$fa-css-prefix}-typo3:before { content: fa-content($fa-var-typo3); } +.#{$fa-css-prefix}-uber:before { content: fa-content($fa-var-uber); } +.#{$fa-css-prefix}-uikit:before { content: fa-content($fa-var-uikit); } +.#{$fa-css-prefix}-umbrella:before { content: fa-content($fa-var-umbrella); } +.#{$fa-css-prefix}-underline:before { content: fa-content($fa-var-underline); } +.#{$fa-css-prefix}-undo:before { content: fa-content($fa-var-undo); } +.#{$fa-css-prefix}-undo-alt:before { content: fa-content($fa-var-undo-alt); } +.#{$fa-css-prefix}-uniregistry:before { content: fa-content($fa-var-uniregistry); } +.#{$fa-css-prefix}-universal-access:before { content: fa-content($fa-var-universal-access); } +.#{$fa-css-prefix}-university:before { content: fa-content($fa-var-university); } +.#{$fa-css-prefix}-unlink:before { content: fa-content($fa-var-unlink); } +.#{$fa-css-prefix}-unlock:before { content: fa-content($fa-var-unlock); } +.#{$fa-css-prefix}-unlock-alt:before { content: fa-content($fa-var-unlock-alt); } +.#{$fa-css-prefix}-untappd:before { content: fa-content($fa-var-untappd); } +.#{$fa-css-prefix}-upload:before { content: fa-content($fa-var-upload); } +.#{$fa-css-prefix}-usb:before { content: fa-content($fa-var-usb); } +.#{$fa-css-prefix}-user:before { content: fa-content($fa-var-user); } +.#{$fa-css-prefix}-user-alt:before { content: fa-content($fa-var-user-alt); } +.#{$fa-css-prefix}-user-alt-slash:before { content: fa-content($fa-var-user-alt-slash); } +.#{$fa-css-prefix}-user-astronaut:before { content: fa-content($fa-var-user-astronaut); } +.#{$fa-css-prefix}-user-check:before { content: fa-content($fa-var-user-check); } +.#{$fa-css-prefix}-user-circle:before { content: fa-content($fa-var-user-circle); } +.#{$fa-css-prefix}-user-clock:before { content: fa-content($fa-var-user-clock); } +.#{$fa-css-prefix}-user-cog:before { content: fa-content($fa-var-user-cog); } +.#{$fa-css-prefix}-user-edit:before { content: fa-content($fa-var-user-edit); } +.#{$fa-css-prefix}-user-friends:before { content: fa-content($fa-var-user-friends); } +.#{$fa-css-prefix}-user-graduate:before { content: fa-content($fa-var-user-graduate); } +.#{$fa-css-prefix}-user-lock:before { content: fa-content($fa-var-user-lock); } +.#{$fa-css-prefix}-user-md:before { content: fa-content($fa-var-user-md); } +.#{$fa-css-prefix}-user-minus:before { content: fa-content($fa-var-user-minus); } +.#{$fa-css-prefix}-user-ninja:before { content: fa-content($fa-var-user-ninja); } +.#{$fa-css-prefix}-user-plus:before { content: fa-content($fa-var-user-plus); } +.#{$fa-css-prefix}-user-secret:before { content: fa-content($fa-var-user-secret); } +.#{$fa-css-prefix}-user-shield:before { content: fa-content($fa-var-user-shield); } +.#{$fa-css-prefix}-user-slash:before { content: fa-content($fa-var-user-slash); } +.#{$fa-css-prefix}-user-tag:before { content: fa-content($fa-var-user-tag); } +.#{$fa-css-prefix}-user-tie:before { content: fa-content($fa-var-user-tie); } +.#{$fa-css-prefix}-user-times:before { content: fa-content($fa-var-user-times); } +.#{$fa-css-prefix}-users:before { content: fa-content($fa-var-users); } +.#{$fa-css-prefix}-users-cog:before { content: fa-content($fa-var-users-cog); } +.#{$fa-css-prefix}-ussunnah:before { content: fa-content($fa-var-ussunnah); } +.#{$fa-css-prefix}-utensil-spoon:before { content: fa-content($fa-var-utensil-spoon); } +.#{$fa-css-prefix}-utensils:before { content: fa-content($fa-var-utensils); } +.#{$fa-css-prefix}-vaadin:before { content: fa-content($fa-var-vaadin); } +.#{$fa-css-prefix}-venus:before { content: fa-content($fa-var-venus); } +.#{$fa-css-prefix}-venus-double:before { content: fa-content($fa-var-venus-double); } +.#{$fa-css-prefix}-venus-mars:before { content: fa-content($fa-var-venus-mars); } +.#{$fa-css-prefix}-viacoin:before { content: fa-content($fa-var-viacoin); } +.#{$fa-css-prefix}-viadeo:before { content: fa-content($fa-var-viadeo); } +.#{$fa-css-prefix}-viadeo-square:before { content: fa-content($fa-var-viadeo-square); } +.#{$fa-css-prefix}-vial:before { content: fa-content($fa-var-vial); } +.#{$fa-css-prefix}-vials:before { content: fa-content($fa-var-vials); } +.#{$fa-css-prefix}-viber:before { content: fa-content($fa-var-viber); } +.#{$fa-css-prefix}-video:before { content: fa-content($fa-var-video); } +.#{$fa-css-prefix}-video-slash:before { content: fa-content($fa-var-video-slash); } +.#{$fa-css-prefix}-vimeo:before { content: fa-content($fa-var-vimeo); } +.#{$fa-css-prefix}-vimeo-square:before { content: fa-content($fa-var-vimeo-square); } +.#{$fa-css-prefix}-vimeo-v:before { content: fa-content($fa-var-vimeo-v); } +.#{$fa-css-prefix}-vine:before { content: fa-content($fa-var-vine); } +.#{$fa-css-prefix}-vk:before { content: fa-content($fa-var-vk); } +.#{$fa-css-prefix}-vnv:before { content: fa-content($fa-var-vnv); } +.#{$fa-css-prefix}-volleyball-ball:before { content: fa-content($fa-var-volleyball-ball); } +.#{$fa-css-prefix}-volume-down:before { content: fa-content($fa-var-volume-down); } +.#{$fa-css-prefix}-volume-off:before { content: fa-content($fa-var-volume-off); } +.#{$fa-css-prefix}-volume-up:before { content: fa-content($fa-var-volume-up); } +.#{$fa-css-prefix}-vuejs:before { content: fa-content($fa-var-vuejs); } +.#{$fa-css-prefix}-walking:before { content: fa-content($fa-var-walking); } +.#{$fa-css-prefix}-wallet:before { content: fa-content($fa-var-wallet); } +.#{$fa-css-prefix}-warehouse:before { content: fa-content($fa-var-warehouse); } +.#{$fa-css-prefix}-weibo:before { content: fa-content($fa-var-weibo); } +.#{$fa-css-prefix}-weight:before { content: fa-content($fa-var-weight); } +.#{$fa-css-prefix}-weixin:before { content: fa-content($fa-var-weixin); } +.#{$fa-css-prefix}-whatsapp:before { content: fa-content($fa-var-whatsapp); } +.#{$fa-css-prefix}-whatsapp-square:before { content: fa-content($fa-var-whatsapp-square); } +.#{$fa-css-prefix}-wheelchair:before { content: fa-content($fa-var-wheelchair); } +.#{$fa-css-prefix}-whmcs:before { content: fa-content($fa-var-whmcs); } +.#{$fa-css-prefix}-wifi:before { content: fa-content($fa-var-wifi); } +.#{$fa-css-prefix}-wikipedia-w:before { content: fa-content($fa-var-wikipedia-w); } +.#{$fa-css-prefix}-window-close:before { content: fa-content($fa-var-window-close); } +.#{$fa-css-prefix}-window-maximize:before { content: fa-content($fa-var-window-maximize); } +.#{$fa-css-prefix}-window-minimize:before { content: fa-content($fa-var-window-minimize); } +.#{$fa-css-prefix}-window-restore:before { content: fa-content($fa-var-window-restore); } +.#{$fa-css-prefix}-windows:before { content: fa-content($fa-var-windows); } +.#{$fa-css-prefix}-wine-glass:before { content: fa-content($fa-var-wine-glass); } +.#{$fa-css-prefix}-wolf-pack-battalion:before { content: fa-content($fa-var-wolf-pack-battalion); } +.#{$fa-css-prefix}-won-sign:before { content: fa-content($fa-var-won-sign); } +.#{$fa-css-prefix}-wordpress:before { content: fa-content($fa-var-wordpress); } +.#{$fa-css-prefix}-wordpress-simple:before { content: fa-content($fa-var-wordpress-simple); } +.#{$fa-css-prefix}-wpbeginner:before { content: fa-content($fa-var-wpbeginner); } +.#{$fa-css-prefix}-wpexplorer:before { content: fa-content($fa-var-wpexplorer); } +.#{$fa-css-prefix}-wpforms:before { content: fa-content($fa-var-wpforms); } +.#{$fa-css-prefix}-wrench:before { content: fa-content($fa-var-wrench); } +.#{$fa-css-prefix}-x-ray:before { content: fa-content($fa-var-x-ray); } +.#{$fa-css-prefix}-xbox:before { content: fa-content($fa-var-xbox); } +.#{$fa-css-prefix}-xing:before { content: fa-content($fa-var-xing); } +.#{$fa-css-prefix}-xing-square:before { content: fa-content($fa-var-xing-square); } +.#{$fa-css-prefix}-y-combinator:before { content: fa-content($fa-var-y-combinator); } +.#{$fa-css-prefix}-yahoo:before { content: fa-content($fa-var-yahoo); } +.#{$fa-css-prefix}-yandex:before { content: fa-content($fa-var-yandex); } +.#{$fa-css-prefix}-yandex-international:before { content: fa-content($fa-var-yandex-international); } +.#{$fa-css-prefix}-yelp:before { content: fa-content($fa-var-yelp); } +.#{$fa-css-prefix}-yen-sign:before { content: fa-content($fa-var-yen-sign); } +.#{$fa-css-prefix}-yoast:before { content: fa-content($fa-var-yoast); } +.#{$fa-css-prefix}-youtube:before { content: fa-content($fa-var-youtube); } +.#{$fa-css-prefix}-youtube-square:before { content: fa-content($fa-var-youtube-square); } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_larger.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_larger.scss new file mode 100644 index 0000000000..27c2ad5fc4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_larger.scss @@ -0,0 +1,23 @@ +// Icon Sizes +// ------------------------- + +// makes the font 33% larger relative to the icon container +.#{$fa-css-prefix}-lg { + font-size: (4em / 3); + line-height: (3em / 4); + vertical-align: -.0667em; +} + +.#{$fa-css-prefix}-xs { + font-size: .75em; +} + +.#{$fa-css-prefix}-sm { + font-size: .875em; +} + +@for $i from 1 through 10 { + .#{$fa-css-prefix}-#{$i}x { + font-size: $i * 1em; + } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_list.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_list.scss new file mode 100644 index 0000000000..8ebf33333c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_list.scss @@ -0,0 +1,18 @@ +// List Icons +// ------------------------- + +.#{$fa-css-prefix}-ul { + list-style-type: none; + margin-left: $fa-li-width * 5/4; + padding-left: 0; + + > li { position: relative; } +} + +.#{$fa-css-prefix}-li { + left: -$fa-li-width; + position: absolute; + text-align: center; + width: $fa-li-width; + line-height: inherit; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_mixins.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_mixins.scss new file mode 100644 index 0000000000..50a2e9f18c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_mixins.scss @@ -0,0 +1,57 @@ +// Mixins +// -------------------------- + +@mixin fa-icon { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + display: inline-block; + font-style: normal; + font-variant: normal; + font-weight: normal; + line-height: 1; + vertical-align: -.125em; +} + +@mixin fa-icon-rotate($degrees, $rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})"; + transform: rotate($degrees); +} + +@mixin fa-icon-flip($horiz, $vert, $rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)"; + transform: scale($horiz, $vert); +} + + +// Only display content to screen readers. A la Bootstrap 4. +// +// See: http://a11yproject.com/posts/how-to-hide-content/ + +@mixin sr-only { + border: 0; + clip: rect(0, 0, 0, 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; +} + +// Use in conjunction with .sr-only to only display content when it's focused. +// +// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 +// +// Credit: HTML5 Boilerplate + +@mixin sr-only-focusable { + &:active, + &:focus { + clip: auto; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto; + } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_rotated-flipped.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_rotated-flipped.scss new file mode 100644 index 0000000000..995bc4cc70 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_rotated-flipped.scss @@ -0,0 +1,23 @@ +// Rotated & Flipped Icons +// ------------------------- + +.#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } +.#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } +.#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } + +.#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } +.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } +.#{$fa-css-prefix}-flip-horizontal.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(-1, -1, 2); } + +// Hook for IE8-9 +// ------------------------- + +:root { + .#{$fa-css-prefix}-rotate-90, + .#{$fa-css-prefix}-rotate-180, + .#{$fa-css-prefix}-rotate-270, + .#{$fa-css-prefix}-flip-horizontal, + .#{$fa-css-prefix}-flip-vertical { + filter: none; + } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_screen-reader.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_screen-reader.scss new file mode 100644 index 0000000000..5d0ab262f1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_screen-reader.scss @@ -0,0 +1,5 @@ +// Screen Readers +// ------------------------- + +.sr-only { @include sr-only; } +.sr-only-focusable { @include sr-only-focusable; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_stacked.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_stacked.scss new file mode 100644 index 0000000000..6c09d84cd1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_stacked.scss @@ -0,0 +1,31 @@ +// Stacked Icons +// ------------------------- + +.#{$fa-css-prefix}-stack { + display: inline-block; + height: 2em; + line-height: 2em; + position: relative; + vertical-align: middle; + width: 2em; +} + +.#{$fa-css-prefix}-stack-1x, +.#{$fa-css-prefix}-stack-2x { + left: 0; + position: absolute; + text-align: center; + width: 100%; +} + +.#{$fa-css-prefix}-stack-1x { + line-height: inherit; +} + +.#{$fa-css-prefix}-stack-2x { + font-size: 2em; +} + +.#{$fa-css-prefix}-inverse { + color: $fa-inverse; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_variables.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_variables.scss new file mode 100644 index 0000000000..6f310f9b1f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/_variables.scss @@ -0,0 +1,1005 @@ +// Variables +// -------------------------- + +$fa-font-path: "../webfonts" !default; +$fa-font-size-base: 16px !default; +$fa-css-prefix: fa !default; +$fa-version: "5.0.13" !default; +$fa-border-color: #eee !default; +$fa-inverse: #fff !default; +$fa-li-width: 2em !default; + +// Convenience function used to set content property +@function fa-content($fa-var) { + @return unquote("\"#{ $fa-var }\""); +} + +$fa-var-500px: \f26e; +$fa-var-accessible-icon: \f368; +$fa-var-accusoft: \f369; +$fa-var-address-book: \f2b9; +$fa-var-address-card: \f2bb; +$fa-var-adjust: \f042; +$fa-var-adn: \f170; +$fa-var-adversal: \f36a; +$fa-var-affiliatetheme: \f36b; +$fa-var-algolia: \f36c; +$fa-var-align-center: \f037; +$fa-var-align-justify: \f039; +$fa-var-align-left: \f036; +$fa-var-align-right: \f038; +$fa-var-allergies: \f461; +$fa-var-amazon: \f270; +$fa-var-amazon-pay: \f42c; +$fa-var-ambulance: \f0f9; +$fa-var-american-sign-language-interpreting: \f2a3; +$fa-var-amilia: \f36d; +$fa-var-anchor: \f13d; +$fa-var-android: \f17b; +$fa-var-angellist: \f209; +$fa-var-angle-double-down: \f103; +$fa-var-angle-double-left: \f100; +$fa-var-angle-double-right: \f101; +$fa-var-angle-double-up: \f102; +$fa-var-angle-down: \f107; +$fa-var-angle-left: \f104; +$fa-var-angle-right: \f105; +$fa-var-angle-up: \f106; +$fa-var-angrycreative: \f36e; +$fa-var-angular: \f420; +$fa-var-app-store: \f36f; +$fa-var-app-store-ios: \f370; +$fa-var-apper: \f371; +$fa-var-apple: \f179; +$fa-var-apple-pay: \f415; +$fa-var-archive: \f187; +$fa-var-arrow-alt-circle-down: \f358; +$fa-var-arrow-alt-circle-left: \f359; +$fa-var-arrow-alt-circle-right: \f35a; +$fa-var-arrow-alt-circle-up: \f35b; +$fa-var-arrow-circle-down: \f0ab; +$fa-var-arrow-circle-left: \f0a8; +$fa-var-arrow-circle-right: \f0a9; +$fa-var-arrow-circle-up: \f0aa; +$fa-var-arrow-down: \f063; +$fa-var-arrow-left: \f060; +$fa-var-arrow-right: \f061; +$fa-var-arrow-up: \f062; +$fa-var-arrows-alt: \f0b2; +$fa-var-arrows-alt-h: \f337; +$fa-var-arrows-alt-v: \f338; +$fa-var-assistive-listening-systems: \f2a2; +$fa-var-asterisk: \f069; +$fa-var-asymmetrik: \f372; +$fa-var-at: \f1fa; +$fa-var-audible: \f373; +$fa-var-audio-description: \f29e; +$fa-var-autoprefixer: \f41c; +$fa-var-avianex: \f374; +$fa-var-aviato: \f421; +$fa-var-aws: \f375; +$fa-var-backward: \f04a; +$fa-var-balance-scale: \f24e; +$fa-var-ban: \f05e; +$fa-var-band-aid: \f462; +$fa-var-bandcamp: \f2d5; +$fa-var-barcode: \f02a; +$fa-var-bars: \f0c9; +$fa-var-baseball-ball: \f433; +$fa-var-basketball-ball: \f434; +$fa-var-bath: \f2cd; +$fa-var-battery-empty: \f244; +$fa-var-battery-full: \f240; +$fa-var-battery-half: \f242; +$fa-var-battery-quarter: \f243; +$fa-var-battery-three-quarters: \f241; +$fa-var-bed: \f236; +$fa-var-beer: \f0fc; +$fa-var-behance: \f1b4; +$fa-var-behance-square: \f1b5; +$fa-var-bell: \f0f3; +$fa-var-bell-slash: \f1f6; +$fa-var-bicycle: \f206; +$fa-var-bimobject: \f378; +$fa-var-binoculars: \f1e5; +$fa-var-birthday-cake: \f1fd; +$fa-var-bitbucket: \f171; +$fa-var-bitcoin: \f379; +$fa-var-bity: \f37a; +$fa-var-black-tie: \f27e; +$fa-var-blackberry: \f37b; +$fa-var-blender: \f517; +$fa-var-blind: \f29d; +$fa-var-blogger: \f37c; +$fa-var-blogger-b: \f37d; +$fa-var-bluetooth: \f293; +$fa-var-bluetooth-b: \f294; +$fa-var-bold: \f032; +$fa-var-bolt: \f0e7; +$fa-var-bomb: \f1e2; +$fa-var-book: \f02d; +$fa-var-book-open: \f518; +$fa-var-bookmark: \f02e; +$fa-var-bowling-ball: \f436; +$fa-var-box: \f466; +$fa-var-box-open: \f49e; +$fa-var-boxes: \f468; +$fa-var-braille: \f2a1; +$fa-var-briefcase: \f0b1; +$fa-var-briefcase-medical: \f469; +$fa-var-broadcast-tower: \f519; +$fa-var-broom: \f51a; +$fa-var-btc: \f15a; +$fa-var-bug: \f188; +$fa-var-building: \f1ad; +$fa-var-bullhorn: \f0a1; +$fa-var-bullseye: \f140; +$fa-var-burn: \f46a; +$fa-var-buromobelexperte: \f37f; +$fa-var-bus: \f207; +$fa-var-buysellads: \f20d; +$fa-var-calculator: \f1ec; +$fa-var-calendar: \f133; +$fa-var-calendar-alt: \f073; +$fa-var-calendar-check: \f274; +$fa-var-calendar-minus: \f272; +$fa-var-calendar-plus: \f271; +$fa-var-calendar-times: \f273; +$fa-var-camera: \f030; +$fa-var-camera-retro: \f083; +$fa-var-capsules: \f46b; +$fa-var-car: \f1b9; +$fa-var-caret-down: \f0d7; +$fa-var-caret-left: \f0d9; +$fa-var-caret-right: \f0da; +$fa-var-caret-square-down: \f150; +$fa-var-caret-square-left: \f191; +$fa-var-caret-square-right: \f152; +$fa-var-caret-square-up: \f151; +$fa-var-caret-up: \f0d8; +$fa-var-cart-arrow-down: \f218; +$fa-var-cart-plus: \f217; +$fa-var-cc-amazon-pay: \f42d; +$fa-var-cc-amex: \f1f3; +$fa-var-cc-apple-pay: \f416; +$fa-var-cc-diners-club: \f24c; +$fa-var-cc-discover: \f1f2; +$fa-var-cc-jcb: \f24b; +$fa-var-cc-mastercard: \f1f1; +$fa-var-cc-paypal: \f1f4; +$fa-var-cc-stripe: \f1f5; +$fa-var-cc-visa: \f1f0; +$fa-var-centercode: \f380; +$fa-var-certificate: \f0a3; +$fa-var-chalkboard: \f51b; +$fa-var-chalkboard-teacher: \f51c; +$fa-var-chart-area: \f1fe; +$fa-var-chart-bar: \f080; +$fa-var-chart-line: \f201; +$fa-var-chart-pie: \f200; +$fa-var-check: \f00c; +$fa-var-check-circle: \f058; +$fa-var-check-square: \f14a; +$fa-var-chess: \f439; +$fa-var-chess-bishop: \f43a; +$fa-var-chess-board: \f43c; +$fa-var-chess-king: \f43f; +$fa-var-chess-knight: \f441; +$fa-var-chess-pawn: \f443; +$fa-var-chess-queen: \f445; +$fa-var-chess-rook: \f447; +$fa-var-chevron-circle-down: \f13a; +$fa-var-chevron-circle-left: \f137; +$fa-var-chevron-circle-right: \f138; +$fa-var-chevron-circle-up: \f139; +$fa-var-chevron-down: \f078; +$fa-var-chevron-left: \f053; +$fa-var-chevron-right: \f054; +$fa-var-chevron-up: \f077; +$fa-var-child: \f1ae; +$fa-var-chrome: \f268; +$fa-var-church: \f51d; +$fa-var-circle: \f111; +$fa-var-circle-notch: \f1ce; +$fa-var-clipboard: \f328; +$fa-var-clipboard-check: \f46c; +$fa-var-clipboard-list: \f46d; +$fa-var-clock: \f017; +$fa-var-clone: \f24d; +$fa-var-closed-captioning: \f20a; +$fa-var-cloud: \f0c2; +$fa-var-cloud-download-alt: \f381; +$fa-var-cloud-upload-alt: \f382; +$fa-var-cloudscale: \f383; +$fa-var-cloudsmith: \f384; +$fa-var-cloudversify: \f385; +$fa-var-code: \f121; +$fa-var-code-branch: \f126; +$fa-var-codepen: \f1cb; +$fa-var-codiepie: \f284; +$fa-var-coffee: \f0f4; +$fa-var-cog: \f013; +$fa-var-cogs: \f085; +$fa-var-coins: \f51e; +$fa-var-columns: \f0db; +$fa-var-comment: \f075; +$fa-var-comment-alt: \f27a; +$fa-var-comment-dots: \f4ad; +$fa-var-comment-slash: \f4b3; +$fa-var-comments: \f086; +$fa-var-compact-disc: \f51f; +$fa-var-compass: \f14e; +$fa-var-compress: \f066; +$fa-var-connectdevelop: \f20e; +$fa-var-contao: \f26d; +$fa-var-copy: \f0c5; +$fa-var-copyright: \f1f9; +$fa-var-couch: \f4b8; +$fa-var-cpanel: \f388; +$fa-var-creative-commons: \f25e; +$fa-var-creative-commons-by: \f4e7; +$fa-var-creative-commons-nc: \f4e8; +$fa-var-creative-commons-nc-eu: \f4e9; +$fa-var-creative-commons-nc-jp: \f4ea; +$fa-var-creative-commons-nd: \f4eb; +$fa-var-creative-commons-pd: \f4ec; +$fa-var-creative-commons-pd-alt: \f4ed; +$fa-var-creative-commons-remix: \f4ee; +$fa-var-creative-commons-sa: \f4ef; +$fa-var-creative-commons-sampling: \f4f0; +$fa-var-creative-commons-sampling-plus: \f4f1; +$fa-var-creative-commons-share: \f4f2; +$fa-var-credit-card: \f09d; +$fa-var-crop: \f125; +$fa-var-crosshairs: \f05b; +$fa-var-crow: \f520; +$fa-var-crown: \f521; +$fa-var-css3: \f13c; +$fa-var-css3-alt: \f38b; +$fa-var-cube: \f1b2; +$fa-var-cubes: \f1b3; +$fa-var-cut: \f0c4; +$fa-var-cuttlefish: \f38c; +$fa-var-d-and-d: \f38d; +$fa-var-dashcube: \f210; +$fa-var-database: \f1c0; +$fa-var-deaf: \f2a4; +$fa-var-delicious: \f1a5; +$fa-var-deploydog: \f38e; +$fa-var-deskpro: \f38f; +$fa-var-desktop: \f108; +$fa-var-deviantart: \f1bd; +$fa-var-diagnoses: \f470; +$fa-var-dice: \f522; +$fa-var-dice-five: \f523; +$fa-var-dice-four: \f524; +$fa-var-dice-one: \f525; +$fa-var-dice-six: \f526; +$fa-var-dice-three: \f527; +$fa-var-dice-two: \f528; +$fa-var-digg: \f1a6; +$fa-var-digital-ocean: \f391; +$fa-var-discord: \f392; +$fa-var-discourse: \f393; +$fa-var-divide: \f529; +$fa-var-dna: \f471; +$fa-var-dochub: \f394; +$fa-var-docker: \f395; +$fa-var-dollar-sign: \f155; +$fa-var-dolly: \f472; +$fa-var-dolly-flatbed: \f474; +$fa-var-donate: \f4b9; +$fa-var-door-closed: \f52a; +$fa-var-door-open: \f52b; +$fa-var-dot-circle: \f192; +$fa-var-dove: \f4ba; +$fa-var-download: \f019; +$fa-var-draft2digital: \f396; +$fa-var-dribbble: \f17d; +$fa-var-dribbble-square: \f397; +$fa-var-dropbox: \f16b; +$fa-var-drupal: \f1a9; +$fa-var-dumbbell: \f44b; +$fa-var-dyalog: \f399; +$fa-var-earlybirds: \f39a; +$fa-var-ebay: \f4f4; +$fa-var-edge: \f282; +$fa-var-edit: \f044; +$fa-var-eject: \f052; +$fa-var-elementor: \f430; +$fa-var-ellipsis-h: \f141; +$fa-var-ellipsis-v: \f142; +$fa-var-ember: \f423; +$fa-var-empire: \f1d1; +$fa-var-envelope: \f0e0; +$fa-var-envelope-open: \f2b6; +$fa-var-envelope-square: \f199; +$fa-var-envira: \f299; +$fa-var-equals: \f52c; +$fa-var-eraser: \f12d; +$fa-var-erlang: \f39d; +$fa-var-ethereum: \f42e; +$fa-var-etsy: \f2d7; +$fa-var-euro-sign: \f153; +$fa-var-exchange-alt: \f362; +$fa-var-exclamation: \f12a; +$fa-var-exclamation-circle: \f06a; +$fa-var-exclamation-triangle: \f071; +$fa-var-expand: \f065; +$fa-var-expand-arrows-alt: \f31e; +$fa-var-expeditedssl: \f23e; +$fa-var-external-link-alt: \f35d; +$fa-var-external-link-square-alt: \f360; +$fa-var-eye: \f06e; +$fa-var-eye-dropper: \f1fb; +$fa-var-eye-slash: \f070; +$fa-var-facebook: \f09a; +$fa-var-facebook-f: \f39e; +$fa-var-facebook-messenger: \f39f; +$fa-var-facebook-square: \f082; +$fa-var-fast-backward: \f049; +$fa-var-fast-forward: \f050; +$fa-var-fax: \f1ac; +$fa-var-feather: \f52d; +$fa-var-female: \f182; +$fa-var-fighter-jet: \f0fb; +$fa-var-file: \f15b; +$fa-var-file-alt: \f15c; +$fa-var-file-archive: \f1c6; +$fa-var-file-audio: \f1c7; +$fa-var-file-code: \f1c9; +$fa-var-file-excel: \f1c3; +$fa-var-file-image: \f1c5; +$fa-var-file-medical: \f477; +$fa-var-file-medical-alt: \f478; +$fa-var-file-pdf: \f1c1; +$fa-var-file-powerpoint: \f1c4; +$fa-var-file-video: \f1c8; +$fa-var-file-word: \f1c2; +$fa-var-film: \f008; +$fa-var-filter: \f0b0; +$fa-var-fire: \f06d; +$fa-var-fire-extinguisher: \f134; +$fa-var-firefox: \f269; +$fa-var-first-aid: \f479; +$fa-var-first-order: \f2b0; +$fa-var-first-order-alt: \f50a; +$fa-var-firstdraft: \f3a1; +$fa-var-flag: \f024; +$fa-var-flag-checkered: \f11e; +$fa-var-flask: \f0c3; +$fa-var-flickr: \f16e; +$fa-var-flipboard: \f44d; +$fa-var-fly: \f417; +$fa-var-folder: \f07b; +$fa-var-folder-open: \f07c; +$fa-var-font: \f031; +$fa-var-font-awesome: \f2b4; +$fa-var-font-awesome-alt: \f35c; +$fa-var-font-awesome-flag: \f425; +$fa-var-font-awesome-logo-full: \f4e6; +$fa-var-fonticons: \f280; +$fa-var-fonticons-fi: \f3a2; +$fa-var-football-ball: \f44e; +$fa-var-fort-awesome: \f286; +$fa-var-fort-awesome-alt: \f3a3; +$fa-var-forumbee: \f211; +$fa-var-forward: \f04e; +$fa-var-foursquare: \f180; +$fa-var-free-code-camp: \f2c5; +$fa-var-freebsd: \f3a4; +$fa-var-frog: \f52e; +$fa-var-frown: \f119; +$fa-var-fulcrum: \f50b; +$fa-var-futbol: \f1e3; +$fa-var-galactic-republic: \f50c; +$fa-var-galactic-senate: \f50d; +$fa-var-gamepad: \f11b; +$fa-var-gas-pump: \f52f; +$fa-var-gavel: \f0e3; +$fa-var-gem: \f3a5; +$fa-var-genderless: \f22d; +$fa-var-get-pocket: \f265; +$fa-var-gg: \f260; +$fa-var-gg-circle: \f261; +$fa-var-gift: \f06b; +$fa-var-git: \f1d3; +$fa-var-git-square: \f1d2; +$fa-var-github: \f09b; +$fa-var-github-alt: \f113; +$fa-var-github-square: \f092; +$fa-var-gitkraken: \f3a6; +$fa-var-gitlab: \f296; +$fa-var-gitter: \f426; +$fa-var-glass-martini: \f000; +$fa-var-glasses: \f530; +$fa-var-glide: \f2a5; +$fa-var-glide-g: \f2a6; +$fa-var-globe: \f0ac; +$fa-var-gofore: \f3a7; +$fa-var-golf-ball: \f450; +$fa-var-goodreads: \f3a8; +$fa-var-goodreads-g: \f3a9; +$fa-var-google: \f1a0; +$fa-var-google-drive: \f3aa; +$fa-var-google-play: \f3ab; +$fa-var-google-plus: \f2b3; +$fa-var-google-plus-g: \f0d5; +$fa-var-google-plus-square: \f0d4; +$fa-var-google-wallet: \f1ee; +$fa-var-graduation-cap: \f19d; +$fa-var-gratipay: \f184; +$fa-var-grav: \f2d6; +$fa-var-greater-than: \f531; +$fa-var-greater-than-equal: \f532; +$fa-var-gripfire: \f3ac; +$fa-var-grunt: \f3ad; +$fa-var-gulp: \f3ae; +$fa-var-h-square: \f0fd; +$fa-var-hacker-news: \f1d4; +$fa-var-hacker-news-square: \f3af; +$fa-var-hand-holding: \f4bd; +$fa-var-hand-holding-heart: \f4be; +$fa-var-hand-holding-usd: \f4c0; +$fa-var-hand-lizard: \f258; +$fa-var-hand-paper: \f256; +$fa-var-hand-peace: \f25b; +$fa-var-hand-point-down: \f0a7; +$fa-var-hand-point-left: \f0a5; +$fa-var-hand-point-right: \f0a4; +$fa-var-hand-point-up: \f0a6; +$fa-var-hand-pointer: \f25a; +$fa-var-hand-rock: \f255; +$fa-var-hand-scissors: \f257; +$fa-var-hand-spock: \f259; +$fa-var-hands: \f4c2; +$fa-var-hands-helping: \f4c4; +$fa-var-handshake: \f2b5; +$fa-var-hashtag: \f292; +$fa-var-hdd: \f0a0; +$fa-var-heading: \f1dc; +$fa-var-headphones: \f025; +$fa-var-heart: \f004; +$fa-var-heartbeat: \f21e; +$fa-var-helicopter: \f533; +$fa-var-hips: \f452; +$fa-var-hire-a-helper: \f3b0; +$fa-var-history: \f1da; +$fa-var-hockey-puck: \f453; +$fa-var-home: \f015; +$fa-var-hooli: \f427; +$fa-var-hospital: \f0f8; +$fa-var-hospital-alt: \f47d; +$fa-var-hospital-symbol: \f47e; +$fa-var-hotjar: \f3b1; +$fa-var-hourglass: \f254; +$fa-var-hourglass-end: \f253; +$fa-var-hourglass-half: \f252; +$fa-var-hourglass-start: \f251; +$fa-var-houzz: \f27c; +$fa-var-html5: \f13b; +$fa-var-hubspot: \f3b2; +$fa-var-i-cursor: \f246; +$fa-var-id-badge: \f2c1; +$fa-var-id-card: \f2c2; +$fa-var-id-card-alt: \f47f; +$fa-var-image: \f03e; +$fa-var-images: \f302; +$fa-var-imdb: \f2d8; +$fa-var-inbox: \f01c; +$fa-var-indent: \f03c; +$fa-var-industry: \f275; +$fa-var-infinity: \f534; +$fa-var-info: \f129; +$fa-var-info-circle: \f05a; +$fa-var-instagram: \f16d; +$fa-var-internet-explorer: \f26b; +$fa-var-ioxhost: \f208; +$fa-var-italic: \f033; +$fa-var-itunes: \f3b4; +$fa-var-itunes-note: \f3b5; +$fa-var-java: \f4e4; +$fa-var-jedi-order: \f50e; +$fa-var-jenkins: \f3b6; +$fa-var-joget: \f3b7; +$fa-var-joomla: \f1aa; +$fa-var-js: \f3b8; +$fa-var-js-square: \f3b9; +$fa-var-jsfiddle: \f1cc; +$fa-var-key: \f084; +$fa-var-keybase: \f4f5; +$fa-var-keyboard: \f11c; +$fa-var-keycdn: \f3ba; +$fa-var-kickstarter: \f3bb; +$fa-var-kickstarter-k: \f3bc; +$fa-var-kiwi-bird: \f535; +$fa-var-korvue: \f42f; +$fa-var-language: \f1ab; +$fa-var-laptop: \f109; +$fa-var-laravel: \f3bd; +$fa-var-lastfm: \f202; +$fa-var-lastfm-square: \f203; +$fa-var-leaf: \f06c; +$fa-var-leanpub: \f212; +$fa-var-lemon: \f094; +$fa-var-less: \f41d; +$fa-var-less-than: \f536; +$fa-var-less-than-equal: \f537; +$fa-var-level-down-alt: \f3be; +$fa-var-level-up-alt: \f3bf; +$fa-var-life-ring: \f1cd; +$fa-var-lightbulb: \f0eb; +$fa-var-line: \f3c0; +$fa-var-link: \f0c1; +$fa-var-linkedin: \f08c; +$fa-var-linkedin-in: \f0e1; +$fa-var-linode: \f2b8; +$fa-var-linux: \f17c; +$fa-var-lira-sign: \f195; +$fa-var-list: \f03a; +$fa-var-list-alt: \f022; +$fa-var-list-ol: \f0cb; +$fa-var-list-ul: \f0ca; +$fa-var-location-arrow: \f124; +$fa-var-lock: \f023; +$fa-var-lock-open: \f3c1; +$fa-var-long-arrow-alt-down: \f309; +$fa-var-long-arrow-alt-left: \f30a; +$fa-var-long-arrow-alt-right: \f30b; +$fa-var-long-arrow-alt-up: \f30c; +$fa-var-low-vision: \f2a8; +$fa-var-lyft: \f3c3; +$fa-var-magento: \f3c4; +$fa-var-magic: \f0d0; +$fa-var-magnet: \f076; +$fa-var-male: \f183; +$fa-var-mandalorian: \f50f; +$fa-var-map: \f279; +$fa-var-map-marker: \f041; +$fa-var-map-marker-alt: \f3c5; +$fa-var-map-pin: \f276; +$fa-var-map-signs: \f277; +$fa-var-mars: \f222; +$fa-var-mars-double: \f227; +$fa-var-mars-stroke: \f229; +$fa-var-mars-stroke-h: \f22b; +$fa-var-mars-stroke-v: \f22a; +$fa-var-mastodon: \f4f6; +$fa-var-maxcdn: \f136; +$fa-var-medapps: \f3c6; +$fa-var-medium: \f23a; +$fa-var-medium-m: \f3c7; +$fa-var-medkit: \f0fa; +$fa-var-medrt: \f3c8; +$fa-var-meetup: \f2e0; +$fa-var-meh: \f11a; +$fa-var-memory: \f538; +$fa-var-mercury: \f223; +$fa-var-microchip: \f2db; +$fa-var-microphone: \f130; +$fa-var-microphone-alt: \f3c9; +$fa-var-microphone-alt-slash: \f539; +$fa-var-microphone-slash: \f131; +$fa-var-microsoft: \f3ca; +$fa-var-minus: \f068; +$fa-var-minus-circle: \f056; +$fa-var-minus-square: \f146; +$fa-var-mix: \f3cb; +$fa-var-mixcloud: \f289; +$fa-var-mizuni: \f3cc; +$fa-var-mobile: \f10b; +$fa-var-mobile-alt: \f3cd; +$fa-var-modx: \f285; +$fa-var-monero: \f3d0; +$fa-var-money-bill: \f0d6; +$fa-var-money-bill-alt: \f3d1; +$fa-var-money-bill-wave: \f53a; +$fa-var-money-bill-wave-alt: \f53b; +$fa-var-money-check: \f53c; +$fa-var-money-check-alt: \f53d; +$fa-var-moon: \f186; +$fa-var-motorcycle: \f21c; +$fa-var-mouse-pointer: \f245; +$fa-var-music: \f001; +$fa-var-napster: \f3d2; +$fa-var-neuter: \f22c; +$fa-var-newspaper: \f1ea; +$fa-var-nintendo-switch: \f418; +$fa-var-node: \f419; +$fa-var-node-js: \f3d3; +$fa-var-not-equal: \f53e; +$fa-var-notes-medical: \f481; +$fa-var-npm: \f3d4; +$fa-var-ns8: \f3d5; +$fa-var-nutritionix: \f3d6; +$fa-var-object-group: \f247; +$fa-var-object-ungroup: \f248; +$fa-var-odnoklassniki: \f263; +$fa-var-odnoklassniki-square: \f264; +$fa-var-old-republic: \f510; +$fa-var-opencart: \f23d; +$fa-var-openid: \f19b; +$fa-var-opera: \f26a; +$fa-var-optin-monster: \f23c; +$fa-var-osi: \f41a; +$fa-var-outdent: \f03b; +$fa-var-page4: \f3d7; +$fa-var-pagelines: \f18c; +$fa-var-paint-brush: \f1fc; +$fa-var-palette: \f53f; +$fa-var-palfed: \f3d8; +$fa-var-pallet: \f482; +$fa-var-paper-plane: \f1d8; +$fa-var-paperclip: \f0c6; +$fa-var-parachute-box: \f4cd; +$fa-var-paragraph: \f1dd; +$fa-var-parking: \f540; +$fa-var-paste: \f0ea; +$fa-var-patreon: \f3d9; +$fa-var-pause: \f04c; +$fa-var-pause-circle: \f28b; +$fa-var-paw: \f1b0; +$fa-var-paypal: \f1ed; +$fa-var-pen-square: \f14b; +$fa-var-pencil-alt: \f303; +$fa-var-people-carry: \f4ce; +$fa-var-percent: \f295; +$fa-var-percentage: \f541; +$fa-var-periscope: \f3da; +$fa-var-phabricator: \f3db; +$fa-var-phoenix-framework: \f3dc; +$fa-var-phoenix-squadron: \f511; +$fa-var-phone: \f095; +$fa-var-phone-slash: \f3dd; +$fa-var-phone-square: \f098; +$fa-var-phone-volume: \f2a0; +$fa-var-php: \f457; +$fa-var-pied-piper: \f2ae; +$fa-var-pied-piper-alt: \f1a8; +$fa-var-pied-piper-hat: \f4e5; +$fa-var-pied-piper-pp: \f1a7; +$fa-var-piggy-bank: \f4d3; +$fa-var-pills: \f484; +$fa-var-pinterest: \f0d2; +$fa-var-pinterest-p: \f231; +$fa-var-pinterest-square: \f0d3; +$fa-var-plane: \f072; +$fa-var-play: \f04b; +$fa-var-play-circle: \f144; +$fa-var-playstation: \f3df; +$fa-var-plug: \f1e6; +$fa-var-plus: \f067; +$fa-var-plus-circle: \f055; +$fa-var-plus-square: \f0fe; +$fa-var-podcast: \f2ce; +$fa-var-poo: \f2fe; +$fa-var-portrait: \f3e0; +$fa-var-pound-sign: \f154; +$fa-var-power-off: \f011; +$fa-var-prescription-bottle: \f485; +$fa-var-prescription-bottle-alt: \f486; +$fa-var-print: \f02f; +$fa-var-procedures: \f487; +$fa-var-product-hunt: \f288; +$fa-var-project-diagram: \f542; +$fa-var-pushed: \f3e1; +$fa-var-puzzle-piece: \f12e; +$fa-var-python: \f3e2; +$fa-var-qq: \f1d6; +$fa-var-qrcode: \f029; +$fa-var-question: \f128; +$fa-var-question-circle: \f059; +$fa-var-quidditch: \f458; +$fa-var-quinscape: \f459; +$fa-var-quora: \f2c4; +$fa-var-quote-left: \f10d; +$fa-var-quote-right: \f10e; +$fa-var-r-project: \f4f7; +$fa-var-random: \f074; +$fa-var-ravelry: \f2d9; +$fa-var-react: \f41b; +$fa-var-readme: \f4d5; +$fa-var-rebel: \f1d0; +$fa-var-receipt: \f543; +$fa-var-recycle: \f1b8; +$fa-var-red-river: \f3e3; +$fa-var-reddit: \f1a1; +$fa-var-reddit-alien: \f281; +$fa-var-reddit-square: \f1a2; +$fa-var-redo: \f01e; +$fa-var-redo-alt: \f2f9; +$fa-var-registered: \f25d; +$fa-var-rendact: \f3e4; +$fa-var-renren: \f18b; +$fa-var-reply: \f3e5; +$fa-var-reply-all: \f122; +$fa-var-replyd: \f3e6; +$fa-var-researchgate: \f4f8; +$fa-var-resolving: \f3e7; +$fa-var-retweet: \f079; +$fa-var-ribbon: \f4d6; +$fa-var-road: \f018; +$fa-var-robot: \f544; +$fa-var-rocket: \f135; +$fa-var-rocketchat: \f3e8; +$fa-var-rockrms: \f3e9; +$fa-var-rss: \f09e; +$fa-var-rss-square: \f143; +$fa-var-ruble-sign: \f158; +$fa-var-ruler: \f545; +$fa-var-ruler-combined: \f546; +$fa-var-ruler-horizontal: \f547; +$fa-var-ruler-vertical: \f548; +$fa-var-rupee-sign: \f156; +$fa-var-safari: \f267; +$fa-var-sass: \f41e; +$fa-var-save: \f0c7; +$fa-var-schlix: \f3ea; +$fa-var-school: \f549; +$fa-var-screwdriver: \f54a; +$fa-var-scribd: \f28a; +$fa-var-search: \f002; +$fa-var-search-minus: \f010; +$fa-var-search-plus: \f00e; +$fa-var-searchengin: \f3eb; +$fa-var-seedling: \f4d8; +$fa-var-sellcast: \f2da; +$fa-var-sellsy: \f213; +$fa-var-server: \f233; +$fa-var-servicestack: \f3ec; +$fa-var-share: \f064; +$fa-var-share-alt: \f1e0; +$fa-var-share-alt-square: \f1e1; +$fa-var-share-square: \f14d; +$fa-var-shekel-sign: \f20b; +$fa-var-shield-alt: \f3ed; +$fa-var-ship: \f21a; +$fa-var-shipping-fast: \f48b; +$fa-var-shirtsinbulk: \f214; +$fa-var-shoe-prints: \f54b; +$fa-var-shopping-bag: \f290; +$fa-var-shopping-basket: \f291; +$fa-var-shopping-cart: \f07a; +$fa-var-shower: \f2cc; +$fa-var-sign: \f4d9; +$fa-var-sign-in-alt: \f2f6; +$fa-var-sign-language: \f2a7; +$fa-var-sign-out-alt: \f2f5; +$fa-var-signal: \f012; +$fa-var-simplybuilt: \f215; +$fa-var-sistrix: \f3ee; +$fa-var-sitemap: \f0e8; +$fa-var-sith: \f512; +$fa-var-skull: \f54c; +$fa-var-skyatlas: \f216; +$fa-var-skype: \f17e; +$fa-var-slack: \f198; +$fa-var-slack-hash: \f3ef; +$fa-var-sliders-h: \f1de; +$fa-var-slideshare: \f1e7; +$fa-var-smile: \f118; +$fa-var-smoking: \f48d; +$fa-var-smoking-ban: \f54d; +$fa-var-snapchat: \f2ab; +$fa-var-snapchat-ghost: \f2ac; +$fa-var-snapchat-square: \f2ad; +$fa-var-snowflake: \f2dc; +$fa-var-sort: \f0dc; +$fa-var-sort-alpha-down: \f15d; +$fa-var-sort-alpha-up: \f15e; +$fa-var-sort-amount-down: \f160; +$fa-var-sort-amount-up: \f161; +$fa-var-sort-down: \f0dd; +$fa-var-sort-numeric-down: \f162; +$fa-var-sort-numeric-up: \f163; +$fa-var-sort-up: \f0de; +$fa-var-soundcloud: \f1be; +$fa-var-space-shuttle: \f197; +$fa-var-speakap: \f3f3; +$fa-var-spinner: \f110; +$fa-var-spotify: \f1bc; +$fa-var-square: \f0c8; +$fa-var-square-full: \f45c; +$fa-var-stack-exchange: \f18d; +$fa-var-stack-overflow: \f16c; +$fa-var-star: \f005; +$fa-var-star-half: \f089; +$fa-var-staylinked: \f3f5; +$fa-var-steam: \f1b6; +$fa-var-steam-square: \f1b7; +$fa-var-steam-symbol: \f3f6; +$fa-var-step-backward: \f048; +$fa-var-step-forward: \f051; +$fa-var-stethoscope: \f0f1; +$fa-var-sticker-mule: \f3f7; +$fa-var-sticky-note: \f249; +$fa-var-stop: \f04d; +$fa-var-stop-circle: \f28d; +$fa-var-stopwatch: \f2f2; +$fa-var-store: \f54e; +$fa-var-store-alt: \f54f; +$fa-var-strava: \f428; +$fa-var-stream: \f550; +$fa-var-street-view: \f21d; +$fa-var-strikethrough: \f0cc; +$fa-var-stripe: \f429; +$fa-var-stripe-s: \f42a; +$fa-var-stroopwafel: \f551; +$fa-var-studiovinari: \f3f8; +$fa-var-stumbleupon: \f1a4; +$fa-var-stumbleupon-circle: \f1a3; +$fa-var-subscript: \f12c; +$fa-var-subway: \f239; +$fa-var-suitcase: \f0f2; +$fa-var-sun: \f185; +$fa-var-superpowers: \f2dd; +$fa-var-superscript: \f12b; +$fa-var-supple: \f3f9; +$fa-var-sync: \f021; +$fa-var-sync-alt: \f2f1; +$fa-var-syringe: \f48e; +$fa-var-table: \f0ce; +$fa-var-table-tennis: \f45d; +$fa-var-tablet: \f10a; +$fa-var-tablet-alt: \f3fa; +$fa-var-tablets: \f490; +$fa-var-tachometer-alt: \f3fd; +$fa-var-tag: \f02b; +$fa-var-tags: \f02c; +$fa-var-tape: \f4db; +$fa-var-tasks: \f0ae; +$fa-var-taxi: \f1ba; +$fa-var-teamspeak: \f4f9; +$fa-var-telegram: \f2c6; +$fa-var-telegram-plane: \f3fe; +$fa-var-tencent-weibo: \f1d5; +$fa-var-terminal: \f120; +$fa-var-text-height: \f034; +$fa-var-text-width: \f035; +$fa-var-th: \f00a; +$fa-var-th-large: \f009; +$fa-var-th-list: \f00b; +$fa-var-themeisle: \f2b2; +$fa-var-thermometer: \f491; +$fa-var-thermometer-empty: \f2cb; +$fa-var-thermometer-full: \f2c7; +$fa-var-thermometer-half: \f2c9; +$fa-var-thermometer-quarter: \f2ca; +$fa-var-thermometer-three-quarters: \f2c8; +$fa-var-thumbs-down: \f165; +$fa-var-thumbs-up: \f164; +$fa-var-thumbtack: \f08d; +$fa-var-ticket-alt: \f3ff; +$fa-var-times: \f00d; +$fa-var-times-circle: \f057; +$fa-var-tint: \f043; +$fa-var-toggle-off: \f204; +$fa-var-toggle-on: \f205; +$fa-var-toolbox: \f552; +$fa-var-trade-federation: \f513; +$fa-var-trademark: \f25c; +$fa-var-train: \f238; +$fa-var-transgender: \f224; +$fa-var-transgender-alt: \f225; +$fa-var-trash: \f1f8; +$fa-var-trash-alt: \f2ed; +$fa-var-tree: \f1bb; +$fa-var-trello: \f181; +$fa-var-tripadvisor: \f262; +$fa-var-trophy: \f091; +$fa-var-truck: \f0d1; +$fa-var-truck-loading: \f4de; +$fa-var-truck-moving: \f4df; +$fa-var-tshirt: \f553; +$fa-var-tty: \f1e4; +$fa-var-tumblr: \f173; +$fa-var-tumblr-square: \f174; +$fa-var-tv: \f26c; +$fa-var-twitch: \f1e8; +$fa-var-twitter: \f099; +$fa-var-twitter-square: \f081; +$fa-var-typo3: \f42b; +$fa-var-uber: \f402; +$fa-var-uikit: \f403; +$fa-var-umbrella: \f0e9; +$fa-var-underline: \f0cd; +$fa-var-undo: \f0e2; +$fa-var-undo-alt: \f2ea; +$fa-var-uniregistry: \f404; +$fa-var-universal-access: \f29a; +$fa-var-university: \f19c; +$fa-var-unlink: \f127; +$fa-var-unlock: \f09c; +$fa-var-unlock-alt: \f13e; +$fa-var-untappd: \f405; +$fa-var-upload: \f093; +$fa-var-usb: \f287; +$fa-var-user: \f007; +$fa-var-user-alt: \f406; +$fa-var-user-alt-slash: \f4fa; +$fa-var-user-astronaut: \f4fb; +$fa-var-user-check: \f4fc; +$fa-var-user-circle: \f2bd; +$fa-var-user-clock: \f4fd; +$fa-var-user-cog: \f4fe; +$fa-var-user-edit: \f4ff; +$fa-var-user-friends: \f500; +$fa-var-user-graduate: \f501; +$fa-var-user-lock: \f502; +$fa-var-user-md: \f0f0; +$fa-var-user-minus: \f503; +$fa-var-user-ninja: \f504; +$fa-var-user-plus: \f234; +$fa-var-user-secret: \f21b; +$fa-var-user-shield: \f505; +$fa-var-user-slash: \f506; +$fa-var-user-tag: \f507; +$fa-var-user-tie: \f508; +$fa-var-user-times: \f235; +$fa-var-users: \f0c0; +$fa-var-users-cog: \f509; +$fa-var-ussunnah: \f407; +$fa-var-utensil-spoon: \f2e5; +$fa-var-utensils: \f2e7; +$fa-var-vaadin: \f408; +$fa-var-venus: \f221; +$fa-var-venus-double: \f226; +$fa-var-venus-mars: \f228; +$fa-var-viacoin: \f237; +$fa-var-viadeo: \f2a9; +$fa-var-viadeo-square: \f2aa; +$fa-var-vial: \f492; +$fa-var-vials: \f493; +$fa-var-viber: \f409; +$fa-var-video: \f03d; +$fa-var-video-slash: \f4e2; +$fa-var-vimeo: \f40a; +$fa-var-vimeo-square: \f194; +$fa-var-vimeo-v: \f27d; +$fa-var-vine: \f1ca; +$fa-var-vk: \f189; +$fa-var-vnv: \f40b; +$fa-var-volleyball-ball: \f45f; +$fa-var-volume-down: \f027; +$fa-var-volume-off: \f026; +$fa-var-volume-up: \f028; +$fa-var-vuejs: \f41f; +$fa-var-walking: \f554; +$fa-var-wallet: \f555; +$fa-var-warehouse: \f494; +$fa-var-weibo: \f18a; +$fa-var-weight: \f496; +$fa-var-weixin: \f1d7; +$fa-var-whatsapp: \f232; +$fa-var-whatsapp-square: \f40c; +$fa-var-wheelchair: \f193; +$fa-var-whmcs: \f40d; +$fa-var-wifi: \f1eb; +$fa-var-wikipedia-w: \f266; +$fa-var-window-close: \f410; +$fa-var-window-maximize: \f2d0; +$fa-var-window-minimize: \f2d1; +$fa-var-window-restore: \f2d2; +$fa-var-windows: \f17a; +$fa-var-wine-glass: \f4e3; +$fa-var-wolf-pack-battalion: \f514; +$fa-var-won-sign: \f159; +$fa-var-wordpress: \f19a; +$fa-var-wordpress-simple: \f411; +$fa-var-wpbeginner: \f297; +$fa-var-wpexplorer: \f2de; +$fa-var-wpforms: \f298; +$fa-var-wrench: \f0ad; +$fa-var-x-ray: \f497; +$fa-var-xbox: \f412; +$fa-var-xing: \f168; +$fa-var-xing-square: \f169; +$fa-var-y-combinator: \f23b; +$fa-var-yahoo: \f19e; +$fa-var-yandex: \f413; +$fa-var-yandex-international: \f414; +$fa-var-yelp: \f1e9; +$fa-var-yen-sign: \f157; +$fa-var-yoast: \f2b1; +$fa-var-youtube: \f167; +$fa-var-youtube-square: \f431; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/fa-brands.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/fa-brands.scss new file mode 100644 index 0000000000..1b3ae50191 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/fa-brands.scss @@ -0,0 +1,17 @@ +@import 'variables'; + +@font-face { + font-family: 'Font Awesome 5 Brands'; + font-style: normal; + font-weight: normal; + src: url('#{$fa-font-path}/fa-brands-400.eot'); + src: url('#{$fa-font-path}/fa-brands-400.eot?#iefix') format('embedded-opentype'), + url('#{$fa-font-path}/fa-brands-400.woff2') format('woff2'), + url('#{$fa-font-path}/fa-brands-400.woff') format('woff'), + url('#{$fa-font-path}/fa-brands-400.ttf') format('truetype'), + url('#{$fa-font-path}/fa-brands-400.svg#fontawesome') format('svg'); +} + +.fab { + font-family: 'Font Awesome 5 Brands'; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/fa-regular.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/fa-regular.scss new file mode 100644 index 0000000000..3123f39cbf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/fa-regular.scss @@ -0,0 +1,18 @@ +@import 'variables'; + +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 400; + src: url('#{$fa-font-path}/fa-regular-400.eot'); + src: url('#{$fa-font-path}/fa-regular-400.eot?#iefix') format('embedded-opentype'), + url('#{$fa-font-path}/fa-regular-400.woff2') format('woff2'), + url('#{$fa-font-path}/fa-regular-400.woff') format('woff'), + url('#{$fa-font-path}/fa-regular-400.ttf') format('truetype'), + url('#{$fa-font-path}/fa-regular-400.svg#fontawesome') format('svg'); +} + +.far { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/fa-solid.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/fa-solid.scss new file mode 100644 index 0000000000..d63b2dac18 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/fa-solid.scss @@ -0,0 +1,19 @@ +@import 'variables'; + +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 900; + src: url('#{$fa-font-path}/fa-solid-900.eot'); + src: url('#{$fa-font-path}/fa-solid-900.eot?#iefix') format('embedded-opentype'), + url('#{$fa-font-path}/fa-solid-900.woff2') format('woff2'), + url('#{$fa-font-path}/fa-solid-900.woff') format('woff'), + url('#{$fa-font-path}/fa-solid-900.ttf') format('truetype'), + url('#{$fa-font-path}/fa-solid-900.svg#fontawesome') format('svg'); +} + +.fa, +.fas { + font-family: 'Font Awesome 5 Free'; + font-weight: 900; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/fontawesome.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/fontawesome.scss new file mode 100644 index 0000000000..48b154a274 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/scss/fontawesome.scss @@ -0,0 +1,16 @@ +/*! + * Font Awesome Free 5.0.13 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import 'variables'; +@import 'mixins'; +@import 'core'; +@import 'larger'; +@import 'fixed-width'; +@import 'list'; +@import 'bordered-pulled'; +@import 'animated'; +@import 'rotated-flipped'; +@import 'stacked'; +@import 'icons'; +@import 'screen-reader'; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-brands-400.eot b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-brands-400.eot new file mode 100644 index 0000000000000000000000000000000000000000..2d0e3589bfbf1dd0785b19eb7c5ac7ea7f943983 GIT binary patch literal 111620 zcmdSCd6-;Poi~2Y-ES?o_PVuKbyas&?@O&oC+Y6&A%tv%Kte(mLf8U^1Q3uVtOBAU zvM8GY6%jWC#DIu#hGBReM8*Y`amL6vF1(JWsyYtpJDuO>drvnB%se>n^ZfpKQ~jxP z>)vzEJ?nQrH_B6-#h&DhGl|hZiK()4fHSvqI$E(>{66;WoW{?eU6#!pJ3DjK%a*YB zu?yM7EXU@v_p`IuUi`iQX^z!^1#A!7hU+_Uo-vE9#g((!C2SYY?!lQTTaPn)aP?fL z9J*_e4dcq_|3%5U|57drpo+WMJ|?r_r6-@VAoroJD{yia&aPW^@=$qVbPX!NZ^Q5P zXI`*v_o^4U!kB(LW3kNHyDr~p>{#?DWBHpIzq0?Fv$pN; zIiT~L3ogFwOW!++zT>}SO#R}n_no<|`>`8eV=VhPdif_8Y`bi?bU#0e>oMfdUAXOn zv$nXN`aRcC@Ms?>0j~>Lm`;JZ?{eyI)(;D15^N*kJ zoI$=!_OhRC@y$KL++s|BoX{6hE=qClGt!OxCHyp|ha3gt?|j~7C8sR9$%PMNsGakV z`ptzQ7-Q0+B`el3YuC1mFJuXZ-g*1_@yC4Exo2-f`A*3wU2$@9oZ*amjLPHuU-|7! z#lhWtCw?!TPLHrSyW#kGh->fow|eK|9c<$8wMW8Ee+;56OOb)foc_lT;wONf`cHnC z$|4*+>YO`Mq%(Qm&iAS5dnoTd=ia~Y%aBgY{6@--{>8b*j!sdz&b_#fdK?wc!13Xu z|KXfx;=J=5Cl7w_qjLfh&Pfxv&q=4B^WPmaoy>rS47qTYP}^z#mh-%h*z$FAYN={}-!Xx~1RHPcu7 zaBc#il+Iy>AkSMf&*fC+bl&6p>K(@ik%#U_`gWhwx!s~KQQn`qSCsSim@|?09nYbA z@GNOHT|*uBi87r$w;%gG^9&ky=h{sDelzn7q;!qIfP(^Jo}g@M|G}e^{6UfDSYJ-h z8RuTggX@>m+!5z7=2J6eQA%@#-#>kg?xFn8 zIQP(WIh3D?vZNdxAA6=#&P-b=JxtFL?f5=8{$A%iNq!b)<91|95l`K;<}jrjJnu?icl)z%~3PICc2yvER-;`$Soy z{-PX_ALGG}%S+Fpyb~h7C{O&JDWB@{_V~Oc#zV9n`PfVyrpv^5zkMIdbk>G*j@l&3 z#Vslz1N{Ivh#nPmT=U~B-O`T~oCxO?^_Td4knLj{sQ-0`Z##U);rkB%=nJudo zZIxS%)>vyr>x|a}V+E=yr zwQp?S-2Q0$p7y=%PqjbOexm)&_QCcG?U&jww_k1lto`%$FWbLs|DoM(|EWDSsZM$) zJ0=U0BaL}0CjV`+HTkC_;iE?xJAAFvf=?d){&WlGpao|)&u{K-?rmP) z+=mw2;#d!7A^{fhktpTo|l#adkB9`5I1p65m0&C9&X>wFep#FyZ+lCQ>RCqDAWuo6Fy zZ|B?CX5PgfgD|bI44=#Aun^w>8TjwmCZ1qd^V#e^)cs_xvtRK}zJjOtCiV-ygWbzj zuJ9o~%vQ5?tjYes&R|cn6if0RUg8CIGVkE4*lhMR=MdIE$Zlp2@jCl6U&qsY9zUD? zmVJ^{ATbWIJ~qP2?0NQ0_C@AlJ!}qJ#jaxC;vpX4Q66V)zMd~*-{ohre`SZ*d2EOc zu;uI~b|W8U|HA&6-M~)+Kd(U*c!Pa`%>`93*(3ZU*1@jeGTRQN;D_u=zL@<7`#$%x zBI{xw=9~Ezwv*k?KFXK#6L^kic$T%;MHrt3`vkj;y}Drrmy-SIL%^RWO6vk0>xm!?^ko)c=_HlLxyOZ6;9$*i$PqF>%)9kbC zQTAo_CH7VJ1p69$iXC9jvS*-2e4D+<{+|5<=I1NyRrZhU2kb}eHD`wY6Xxi@v0r13 zzRCVK`yKludyD;vOPHqycX2mntB(gTUu~Y8p0mAt(3!XM`2xPsnYl~(iI}@<_$mBU zemdWZ8GIHCg5qAne$0N#ehKM6$_{diuZ5BpgSz&9_7V0O-p2=cKe)ZYdf7Sb8|+Me zE>yjT+3(q3K(N1p6*C64Z=6j)(Obk8vc*u^mO(;40qWh?+5cky$xU8iyVv-2x;*G$B(F7%US_x(0Bn%f$kqfUJ4B0HbzXApok#nja7V zePqom1wbiT^C|(h3F*}Wpq{L`Pk_-mj1d78l{Ie=VCd^6^%1~VBgNPd_{m5y1_V%E z*2Fjxz;#&j!vee$>74?c`tTD1JcaaL0nlpJq-OvOaR0GySzWC8G4)-nXZZCT3{0N-UTuK+kOYgq!|#jNEQ09R(MfB^V2YXt?^w~&Se zIHh3$9zi+{9>wuAz|mO?btN#gqeXQE_)`uLeWJgl`(fL(#~S^>yGtaY6LBqG+LdIOM+ zSc}>WKuTgQ>I;C;b3P~l$%(aY7Jv-JTDJ&55@xMi1t3?k*2e`PVX@Yo0+6*>>uv$| zVWjs6@Xbg;uLzLDSPS!>0GW)nJ}Us}jI|ySU>`;Lc>zvi_m}`b0V(wzz;j4xP6IrH z^h*Me>{#o|0+8`o>u~{g5z?;;a2l&81Rw#j){_E|1zGDU0Z4_cbwB{}A!|(ok|JyU zodCNA>5Br89$D*00+1tF>ooyLl&tk*0mzoD^%DU|nXL6w0XBv7bpakkN^=h2STik} zivXli);c5rxs#m$i2bK=x&A^dkXMFl+A-fIQ6Fdj%jFv-ZUTkdayY5&=ldtc^Y; zKyGI3%LO1ovo_`~f#r~XKmbxTYhzv#AYZfgRRWN-SsVRMfXvO>`vf3;v-b4@ki%IU z^PK>RoV9NhfNaj%Hw!>YXYCIOKwf9<+XNuFv-XDtAj7lvM+6|vv-U>?AlI|@#{?kZ zv-TYVko8#`>w*BOpSAB4fc($ecL_ifVC}mFpcAn6Jp#}USo@O#&=XkuUIDfh=>r1L z9a#H80ca7d{V4(H6RiD^0J%)s4+}uYVC_!}K-*yL&j>K;GpscNG!WMQoB(tY)_zm~ zS_x}ojuN1sur}5p0h$VHe?b5`3u}K-0NM*{e@Os(3~PT`02&Qze?@@pM~d}GfR@AB zUloA9!`e>>K=Wbkrv#t_vG&&lpbfG1(*n?oSo`Y&(2!XBfB06H3LQ$7IN8f#NN0D2p1(=`AZ9BY4H0JI-KNf)Y$J%rc06mbke<}ctkhST40J~>2C$N2PxG9;6zWT9smy@rFsB7 zjP&;c+(!Bb0iHzK7T`o5jtKA~QmQw=yOI8f0PjUgZ2dw zBb5dC0;GxnUx-u{;ERyz0(=Qlw3)z{A~gm0iAd3Y0$+&~?I-XxNYQ=*KLx2*fS-yK z?I-Zlkp>0$R-_>T@`+8NUkK34*=1xufK3(zU?X6YT>`Kc zut|&)0d@m6SrTBML5eXW@IItH0(<}|#*e_MU33lL6G-VdKpw?O$_K#uz$OO;V25Cn zLjtf!u*qQob|%sh0az*65l|BvQ1Lo0kCke zNvu5rY#nS8bDsdK2b=tj0PG)Z67!z`O9-2MQ-Dn%{oewxjF_1hNJ>{|><_`8a=FdR{s#?@~Ua&Qc%NQraI4 zzfm?GG-KvluFtss=-%jl)cvX_;muoXtv%N3zOwHlzNh@d{^$I!1r`OK4Q>ox9XuGy zhi(o%9sYClpnaMBli0)Y-o*3CFQ+a{y_qhjuSmb1Q8K^Gmb3eEpUC~Odavt!p>I*&Q+==X2m9CdA0EgJEE;%Z zFf;h&q5h$D!^&`ZYS5DL?Zk~90{y7USTX0~(TMIiE{>`G*i(Xs& z@RBQ+E?Roo(oZbQFME7h>x4}weE)>j^33wB%fGn%k0&lWao>s0uXydG)vJ5gtX*@{ zn#b1eI61MdbKS0W`_?^jigwCv>-*O~c&c{lu2cWKA-3U-O)qXEjzdF z+cvsw&$a{G-rT-t`{bEB&wOdefwNYhb@N$2*?Gq~cb==9J9z%G^Itx{wd?U+Z(h)S z!GR0^{J!Y>mb~wU-P-Q%-RpNxU3BlBMSFjEvFqYHFM0aX?n`gGeBi!t{a60v zs_j?3e)aZi{MQU$bK5n4+;{VJ(d(YOe$x$i-e}x-&W(@Xl)veYoBsU4^&h z#mx`j{KhR~w>*05bsu`_wz1n@`*7;RcYmbwBVYdLijUrOJG=er+h6_I#*f``$D)tF za_5pepSY`d*Z#XRcdxtW=6k+#&;R+vX`lF)Pj3C>5AWT0?;H1Bd4K-?7aw@#!QKZS ze(;B%GCp{#iGAhjuRQYj;NxHX>X*Md^~BsK zZhPVvTS(MH_V#7A=qA z7d|K)uRVl0~hM&(~J=!&= zLp9a@aJ+X`$Scd7cb%RKhQnRMwUMAt=l5BxAqmu2;_LEP8xCZuWLxGI#!ntb4z%a8;3bC@4v)TMYzd%`FA-L-8oV z5I@Il=!y{yp3&8q-JPvOT$0Z#d3?omSJW4>YO`XVTyVHHTnvXpK9ehoq!`~&^z4n@ zF0)YTsZR8lB6ggQX+b#=@uXD4EoXgRuIp1@>h^llrQW%!tgGY01Kl2LMDgn9$O_ya zcs}P|4Rvv8G96n=Ferm60Y{(XkMVDV3ss1EccI&h<6Or8XnLuRelFyZj`NbP4f1h5 z#2PK&Apka2g}QIrC#(}p{U5|?jVzo{wGBi@sB~n>m!Y+ zt2o4q4a~86r5wdf@o}wGY+xpp=mKV;7PVE(vvFQ8bve^g!&Dk6RqNwYjlUsZezB=3 z0cmtJao(IcE|+f3p5s?PX>ys*^&6IXwc(n&Q&CK#t?J&rTvj%3Tp{0g zms^&&V!jnphZW8PiG->u?&T(zX2}{~iV3K$)TD26jCE62yHbiQog>?w)mUrZ}NFW@obd>A0K((l1Y-tS^FbA+)u?#a< zT6!c(t1hZhw>e9+RK)soGBoOHSSyq|^gKv_T`8lpqoF{!kk?9sJdZ9$Nhpi5*Xr-Z_Wcys2x`G^tf6TIWQ8@G>>Zhjj1^Sk2}c!F6i-0J?|}KG+EQRU&qR|&3O|6 zpM=J6E@`r-pel-yS{RGVQY7LDd4^02uB3pjsZ*CIy3RFCeep$A107HT_^rrtax5A* z%((6k$8(*M=`*dW+1Y8@F(cFAviQ^wXx(^Su0TGj%5a(P_XMV{2)f-NenZgnoGa+p zB`(RDg{7EH=*g&+j~gXd(9%p5Pt}5wFOZFv+?p(FlA;BFXkf5qKfV-x($qg&sJUB` ze0nV2UoQK-0ZEB0wOkVS{nqyTLX~pB>+*#lnSj~zY&(qwHjvhUF2nE~- zt0-jNh9woNV{+8uT{tRPT+i?d$Y!m&KQXJEN|$GsQ}Bu|>D;z;nK!<^R@^mj`Bf+U zpfKW()D|xp4n(UsP_YoNOP>JuR!iMhfL^8Jul!?0%5A-$c9SxCzsWfyIX zHE4H*rbgpk6G(SRI>r!_0+c^rtm%z<8EX$iu4|Y+Rr~E}j4AzZUDfLHDz7Exa9Iv@ zn0(9B)3HJ!#+T#!4Yx61ctBLULtHw=)cl$u$u6HRNrrY~el(vST})rxL=pI#mF0Y) z%)@^9l|t-TF{c^bi3t=_6 z4i<*TNz1L(iOt|6rg4T7=^(CF&}niLH3{Vl#MVm1KAzXmdhoSIZRQ5bpjRCh7Y6ak zW3o4f`}b|EX`>VP@(i7ECf61lu;Gs+qe<84mz~B98tmhD6_?*6C{c8!D2Oh~!bX=kXjnT0sNGr8=(oxU6UAF6_t-4aZWatW-@|)1==Iz(Gf#c%#Kiqf0u)u1vNbu4tQKV;0s$} zQ_n_joggJDy5X}WF2ai06V;ZV#EA}J@rmgeV%2N_j~8*)&WZqU35 zNwM+NIg(_mZrw0c!=)#@n!FSXDXdBTAJ7zkCZH=iZgX`Ym!|Mc(1UMe(5>{S28Xib zRl)w$AFAq!QdCznp?Er+)p!q zTUB=%D&~&F_etD~`YNG_!4>I2O$GT@+yGjEmS$2a=n`6>*d6ZMf}KlLMY}`OqFC-I z(PiKgihNR2)T=SyNRB$hzX6)u4L*D#+X{M&(Q;U7y%Dt=H1t?#l;kng5gVgh87X6a z=#Hoanu!@{;~rhZq@s_QsWeZcblxGnrJ|4H@)&qH*1){p1<~-tJilI?ZMZbU<%y=& z=F++4F5B&L$g0;}h^M0+H|xPS|GGQcj}ic;xQ|A-ZNe(P92b>fXlDBO}Bi0EC_W}(Ab~xhxo(r))rv(oq+bc9`qa% zm_uCaXjB*!AQFz&=kdyPQpRziQ2?iOM!H_MG0r}WE97E_I@cRB2ew0oqI5^KxX~XA z2JL_==n1Ei#bhe%3BL8#p9<-ar1NlMc09~=DU{AXrkNW4F47ELH?%G8K)?6`^9L3N42k=LgQg4;<_TIln1-!Lx-4}=5b%0JM$wRb+F-0-^>mcV zewQqn?khFRG~K_wIvYtfGIK-vBWXK(saGuojj*J5rn(kKqRGVO*~Lh5?}R^ijjY{k zc-+38voPuS`#%>CrxQ>(BB5cI=6iNzs3+q01;$;9s;dFpiiWc(YmTIw9Y#13^lCmM z!c{Y&Yg{)ih(P(C?UKxO5(Sw1D6A~fwXh2Y;44`IuDB6?@@*Km2f-Vk#OV2?2K{mT zl^S+KhaRDVFf?d2&d7b}PU3RoTx3QbC!vmpi3SsSBTmoin5IiE_*}s&pHVB{2=G zu;j~nlXJMoCtIo+)%3^%hVSFJoSPlXx{^gLt+-slc$XiACERMxYiIk^wCb1gi7tAg zWSah1kEO(m+Rva0x&pfmuWspid7Nj#&@^{c{&vjxeo79?X(=ovl#BLCmrAQozJ_1M zZ|Urk(!Ma~xnwL9k-(ljQdW`^2_+>3rKB8|BbP|;TQ8;5lyth{ll)_n3oJ4m4@p5@ z#1u_Ic%3&lXnKm>Ck5o7bcM9@9BF)k)Wd_W0GD$-CrciW)Hf)t>X!!kI<1n_Rg!YD zrF*&D+l{QNxbD~Z1Y`ljCC3zx1a{AZ=>VCwh5mAg?}z*-L4t%etx+k}^pM>M$%Rru zFN7XjQG7M`_~W^iBZ&)>!`D5v>GtJQzuUf@ho>eNETB-C8Qw@Ts1G*UGT9ROyF^Xc z5J)-2birCDu@giQR){Re;FGpWe4$`NG%h+?U<1lYG_3L4r}l?asW9J)@2P)M{FbWt zV!q3sCNZ%xKddO0UolO^?^BfZV?N*M>9C^W)N;2XyXRDqi|kyVA;$Log(GE@SVs-8NIiacX_JZ5!4SXHfnvLvKZ z!+f!4YINFZTR=I{10g1JOliDp^vp|kj5=R@sb5!3zj03rT+Oq$)9^#bc{A^vi|c(j zmv>HGAC3mi&mL1o-x{4RVDwCi4FC<@>9)YPd;@&$k6>AF~175`lYP={ZYB&;$xk?aVePEB_l1n!t zhOx28ARLDy zwk-ueG=4@=;;PpT(N-=fnhQ7lqh{JBh@8u%=&BL&uLyaJKq)Y+`c%zQw?w>#sfYV* z-DP@~?234}D;V*5R=xYQo6bf<5zQUTfoeedll&-E_1cc~teMJS*ln7cWw{g&R<^n5 z{WNs?QFs$Dev2@Y!-&dQfJm~P6mbwDYu%VsiBkQ+VliYweIWr1UF}F=^~MOOaIM&= z6dRFB4Hv-e^_l5R!-lg?_dBDD@xiEsqYbEzP-VcpF#*Oo$VRDP(|DC42L7pD zzoqEjP#mJ)-!AB!-I)k?h0n0u_O?ho9x~k?55)dR(YDMAsy?k2!hqbDKjzSY>dJ+PVBagt~4oNRsAr^=njZ(cdB6_+3Yf2?G+ZS>dJ&_K7 zy5$W$@WaIau_hm9E^AjZC-7RoQ~Jl}Ts&O1;r!M<@7$bl0B>WQoLVSnhJ=Q~o~bY`R@J+dy< z%R4*rXGJ?Y?VCH&@xh%Zq&^q#=QaS+S|&BfKaD(#y(ICYRuTs@RN{k+rDM*jt8Kby?P2mFKn z@@V;%iPbBYEg#_{J@Xgcdt*<8|KhFsOE1-5+L!4qmwUA?fA4}&+)mqx#Q7DMneAA_ zGvl3ICyYm7-XlHmRn+ZqSYBN4PQtguWis$pO88QTxZUN$JRW;!W&E=E%J24oQAb^m zhNoVA)b%O;_*8Dqnp>~GekkjoHOrqRS}Ps>3v5KHW9uV-B>1K-YmSYt5vmtuy#y5; z;#I?j9sz*^X1ZSCEI$MRgV3s&IHMch&hz5JA{!veOL&!W^&8tC6(hABJ zzP~3u^>VtWC(Wzro~h4T7y8{3-g(3RtT%F9TD?fgsj5GyCUhbqf(Kj+f47EXA7WRN z;OdJI|MvoT07(T68&*xbRI$-!(B?*@P%9t>W0OFlr;USTNy4nt$&X-3;fz!slWKa+ zk@ZOZ9g?Wm$T})4G%zGfB~l}Z0f6q*jvbe9Tp)r3;C%G>Ut~l%?qb6!0DQJssx=}) z(ZX@VE|m21L)B1VY-}u4+B_B*7zl)Xe-rH4ag!?;OT~gNm#KPXPs$^EK$(1o6^aBc z!?1#pkfoooq0RaH`QRI{8uA!Q84reRtSD8JCMGyNF$qD*Ob+iUDv)F4h6aN*`A*3uixG`_lB)oues)$y?gh1JQa&76tYt> zQ`NYt;<;wba)+owkWZX?xwmSdrr--4&y}SF3h99vM$urpz-h|`9l@p3V@ws=f~uN2 zXh{rGvt>gJ)IF-|fm*C9Hl2#elnKwGTqe~Hf2Z~Jbz>GBMMMLPBIh7tbR(i7KaS{` z?_jQKB=NvNMKW6*5?hv6urOf>!&1b`6o)f;O0ag4cY>@WbsB!6MjD;N(j}WfSaS#} zj$srl>k(Xqen_OMY^!wN5Y|4ai&XjyWrG0@zhG}8V>e3EksT#g@dLLzw>UPsahUjo zDG;S24|H&<1LX=szvQZ+yJ1&?xFwZf$MEPz7M1DNaYsqz2#z3ni z8PbZR8k+3ZEjXb#9-bT0T_M+y>JAvNiTGS0G;E=s2t+U;ObE#`mnGb1!G`FLrC{Ip zC{e`<;NE~oy5H_~k%Y{betz*(|=xe8ZjUPBBx=uZNKV%-zxXP%LAm6Y@Ydq*TV^*}sX$q!xF9gWXVMAy^5Ew{|C7IJ0M;>wiyiN&k{yFMCeA5P5VMF{0kL+b0Wlf9Qab29nwr+Boy`;I$}VkWxBsO^~P`bOd=t;WZ+&S z)?0!CT(Na?5%(B;v1Vc;lc60rJM{qHZ|YOqVc*6xK{cj+{Be{;a>3v8KRI)_0jV4D zKksw{63uIrbO*W}Ex;5ACaRUfCGdB$?)WvY|9L<}E&1LMlfA;&71@g9BznsCaU zbVq>(^bC+;ti_;ghP`!n(h~uS(YV{!ot~|xeQC|7r>&Tx#=J4rQseIM!D9<5XTyUv zp!KQ!`hYi0KJW_X%fM5#tTmwbs{`7Ap&RLeh+YpH*wv@&-i1M~Np-mD$T+GV{g0zR zhK~FaR&EX&$2^KQ4ME&Q?V)iDlF&KGLs9f6bhkQDeYm2=B)UR5AVNn=j!FRz0KQ)f zg(KvDqN!4B;DWFcW6G0lR9iWG<-GABUG*D17wqcM1L}FES8+8?N?S1H$-a&aKbU(8 zgpGhDd(z9RF4+Us*)%=IGLYx4Q^Enb2>t$Ic6+wy_w%dzvwr^&tRqG@EUhrNP3@3T zN?^^d2JGgp@egbcgin9}Jm^=h+BvIWeetYara|R$zPOhwwO}UU^`wF$9+v?rb~qLa z#fF#SSj;U!lbl_}ao!PtEY~Pibbj#q&6_4B4oqN@Pw<0N-`KF>zW zigY@uPp7wT7{ST<2EQlbcOhI0b|%n>pYv~Ht8i* zF(>c-mNis}Lp7iJrW)w%uvE({`*H)C$1o52PFm+N!38~`t3xih)_!5Zb0o=%$6M~n zxZyt1yZq>3XEjSTXFP3oB5L8}BaKTyRDje5?JZm^UhVOkDw4Uz;z zhts{KO?Ottk&|%G!-~s}lk6a=@f29`!tQ`3L%OLBn>zeJzMh{;sfcP%9g3-*h!@;l zQj;N-pP+TX%ZUD359^@UBO7u&6jk%Nm^+db&XKN&eyN#`_|fkF13#Ys_mD@m(I_>PzzIFAsG6C)?%}VJa~<9~Bbx}q%87e(QEhZMWkz!l z1-KIR+xi+|lRSvMzX#!Ov1m5{1j5KPnFI-~MQr_r&3CNN?%I`IFW))4TrNL%_5-i1 z&+XckTmRx+uatMZQZCb+Bbxjz_-($8MWtfr1Pq>BF9jN5<{LQT37HSG>$!l zclGi9zDMjxU)Kk^hhm9YLubq__DAgpS6#I{xp{MPxpWPW^sS%zQ(xcUj@dOk9JXtt zXWl+mi^dvr&OGgdUp*m#TqiuX&xsE?$oHWwgV;N^5cA#t>!qB9|MhL;7l7Z&Kl)J)l0lSq{$u0%1Cj^?XOR~edL^b$4_bt#Zw8oEJ1gV zgSH}G=Uoz^n-`$c+lTtrbNBIL-ux~5ww%5@#(Vbv`Zz&u>T|qz>b29s_CWTb%Y&|i z7iQ5b>)5qyKX%N%f%RVn`-1;Zj2~tmD0#h6#>qmd2p0J6D(Dm}=cvVn(tnKya3U8X zI!c4GV&31EsY{tVU9yQq%N3iL-N(K&w>F3bk_ovv2-}=EVrd%vUI_5FC;f@>b073#eN|X49WOe?sD5iZfF}s{lWu?9-SBONiQ9G9% z>eN(ekXx>RKMcwzM}lq@JY04`nt@Bzr%8zP9g?_54!d)%gyfcx3*RxgOSGW>#^Z*( zUzV;=)gWw+Troh%c*xN2fqHY^d5W?#2+hvJO+`6f)dB|eK`36(sL758|Bn%+n-D9s z?klpQjPsDD#{7|3km#i3B5mw@OCfirdcGf$YXW$2) zK7*2Qf2oikLBTV{Qjwr@(Bnz>ia`BFPz;(0#RCBCCsB4+HBRmnc>Ky*|ZRAxhp@kH!A!-Lr2|5T!ujAs%BePu@ zf~%oYa+Zu!4N_CU7tl_9x+W#GfgVKALEENpcT8X~ghjBPR7X%lvD65hD?2?HpB`ur!a_4`L`cZr+h6L2d8BXBZ`m6Oy$dJPWAn_Uas zA^K6Zdb-_xW`~pvdAbn^6TjYL4Vv9H9A#Ky-+=g{%X%1A0>5SkxWAOtJnnGV{WJy4 zxl}LY`CQIVK_LNsV}s8s6^m_oV?28hJD%y>mA|9f`#Eo zEp<__r?azrK|DU}ibP!Bh7|-86BaD2VJ#Tk91PleCXs+RLgzOU<#^fWbK_q;ZX$Lg z8r>8MMIxq2cVse=Nc}>}vjxFEfg2=Kw>*X#UmVn2Ufu7v5Zr=%i0t#339Lm5(_3tD z%kp&lqFw|5shZDCS!6}~6k69Ln5Qp8%HKr*h-bv#M z>K-_}U8>8E=n2K`btx9ev!;0Eo8#e1Bpps{gkp>Lt+I4ifC%t}HrOsTv`b^F8a|^b3$7d^eum}AegCz)-lWB|6m;~o5{2#DS+ck1b zVmiMgqE?235dyXl*1`T9r{m$_HA6#dwyYT*UVU1wyF0f!+ui-sV;n8@`svjT)kNa7 z+UeEJ$y6$}iSKr@bNU{d`mJZylG&bDU-ishGK5{Ei<5zVWIq7-2x71Xxgz++U*H+*0mna4}h`X@~` z`(%XO!Aq^1{1H|4%{qPp-8q1DkserIFgkiHWhNso z3);6~n6ZFqYsPpyY}-+f+lG$**+k>S6VF`FKc<-p#M?&x^DNmOt0$05{F!%Aau-aNM5(;GCW2qXs@;0 zv)2~)eogOOSL|Q~Y07ty~y!{M-40ofln2eusAt zhgv{DC^@f7k!WMYQEN+$q7Hr}!aQq;dZj!WT4 zBrL&|x%K$|ow^iGI_?i8Gnryfh%~S#It#tAR3_e2=!lg&I?AyFk$~k72QK?SF!pi| z(Vzwo7bq&!eD=7myCIkH1cSbm$=z<-*PSrAFSrEyzM1kWcG*_EsSSvHmI5AcfbR>^ z-fP6CPw-EHrUhW3%tEKH!auYQzUIq7+3v*~A)dk8On%4?VgKh_c;l;=CuqkcC>}+B zl%riUewjud7FmS9QA|L!2r?JZhd{|H`fvr&bC_Rt1p(^su-B@X!4Lt+jR`7<7)8jY zC5X_l;pTPxIb6D0Cr)0$?f@sn1cqY}Yk=gKD%9_4*=`gu%^@R)u>hj=N=eH@n8Ct< zfiglde2q%g5j>*UIRS64BN@T@UC&ZDn{zXYqf5t^eJmRyU5>$OKtElYBvN%$!AWs}T4cm3{d; zW(4b+=;|$W#uJ4?FAfjobzZF&CKUsA5W3pNbbG+KhSpDxB#H48`a6Sc;LCUCzZ`1N;C{R`A0^ zwWn=6@Q{eA!YkrbtdNLfhT^aYpBS2jwo%F<+>4_G#pFW#7j4^k+$7zPyX^G(_32n~ z{Eo!hwaMh#wP)+FKB!8UiCAXG(B~vw3LF@S>O)XJ>^Cw*3zsI5+JRU{SV021+pPyY za=>;Q@J>T3AiJm16+wuC6ZoN<*iWEps+v?F;-H`|2qL(SC_s2GoHN%zvBBHdXb@-| z_QC6hoek>x;&{T^&$85=@LkCXxNp6ND;cta zI(A}da42lw3^lM+RFpBE(k`6Nm_9xqlvU*GP~>xESsw8O46h%`zU#R0je$$AaN;eu zgHvBm@5Ul(SE_;9{nv3MH5+j@RcIJB66I#1MX!%a}jNbYlH0`5am6%1OWQZ4cidmuDKJWsx3fJQxfz$GKh zHQ*0L;jKh8t7Ziv!LXfNoGe5-3`6%Mmm}<4ld_$lJ8FL?{(T@F_92L|;DrIvw>vqK z$t7(RkdT&Cb$6%hpby%L9(wq=zW?U{R=NzMs&1k>A@EoFrJ4vwi=3A=_V^-78Zx@K zlEK<{xvx5fY=a$FeNj*At224G`H0bN`UBZ?XICoQVWy492x$Yy^JN`8iEL3z>0KIK z2qkO`k4x|38=UAZII9k;2GL%J55Tkxf(GD=OGjtT zHjNW!&6${cUKSx`orNnd^bQmjjnw)AiONTxOmwKdly&OQN>AzPB@<^QQ;IUb+L*s= z-kb$ruh)8usZh@|mwM*F&I)_O3;YOw1{5z0X#kwQ0jHy5RxK4Zs5e6P?1G@_#QREW z39}S6Y-q(BPAcqdEF7Ka_-_C5;K-5@{P8&-N=dQZ%O`3Ro~e(W(cRcOXT0~MUtiKc z+|jkbEe)-f?Qzmz1vTj!V}b7+XH?+$H8!Mi2Uj?7qUrmw+#Lg!apG-H{cr z&WcXO^rAz|O7KWQopNN7u>Ou9P1-XlcJLuulaHCDfx;X}PVxSDXENapBAifKp_m&G zduMn|)iv+zxpU9Hg1+YUE${1FzMj5#(a3ksE4a;6e*$s)i0Thor>U-sG4*km`sVZ< zxNU0R^ewp0@k{WI z;qlI&1vvQLzD5rM$(w$lIDeP6W=?$ZqFA{r50*XD=__Qr3z^qbR()*4 zDiRA)^mUzzXa;Qj#Mf?JNuXf*x}Emy`2z8DsxLb+;_iusv6af3O!S*R>@0GdI-cK+ zRXRK4(Y0b3aeVP8Y;uv&ie(^@(9VYgO5E)+hqHy8J01y#^Tl+J$Lsqr9`Dpab9GNw z0JVtE)IdEg4iU+z1*SAJu*RN)sPO_M?g(Z@3jRTgbLhj|raeP6JTMu9p_3_?BE}+m zi9E}Qe1gNnM%)#p{Eu&XJa4*O&i9*NJZVe+mXm^w#`8Feu3Witmh+3}?l+A4HP8JX zZRX(Yy_NB^&mOPzbama2!(z2s{kHgtx{*!&@A*&Q`=*=-)j9uy3$yuR_u@5+x;rxY;p&_nm+hD{>gX!p zlPdhHh)Q1u4t*-#^tcso=sO2*Ho6G*(W{`Z+=91;d<<`%d;o6?ddzt@>H)NYl-y#$ z`OfRKKN28D4L(Y-tzobcVzuJC+^B$810=YC0E=(z(JevjFEwfy4-5>JnO!T<0d`ud zHvGXlSQU*9{t6+Kh2n9t)F@DC7(kf!iOuWSQ|_b%8|ee&{Ei?l1Z%6wGXe)6u1WHBbP+os|s2x}Yns@`Z=3CwRO5x9H5cd8<5=2ls9tcLiKbXpT*M-VlR%O-a+vkyE!=b)|G2`Chdp&^D}?opQq?tta3a6qJMm2ZxrICb z)?=?>t(DI;8H4n;FKW;b4l+B%U+a@!)J z9eIQgb{vW*#5dZXJ%F9bu0V3N6%JdY5r2f*n6cc_ zE$UbmSwAW(Mf0g>pa_98wL6Q^al4$5B z`@(}1rQwDe;fd#THB~Ig?ye974o@PG!;6MhY{yd&EuO&P3tS%6O-Wwq3m}NhYt9b) z0-<5-5yrMxrJ(TLi7YM~A%wIc{sTL^aEz&vybF4-d;%iV)P=aytwgLLA56BA*Qm)T zmi#i3)S)l#bnZ!t*W*d4u8Z^T2;f9%XwAJ zP#1T{I}BCsHhmLFwih$lDh_sOb$k7YkT9_vA@xe~@*C-@pW=^5PI(FM4tNG{#S4O( z*Fbe(e4tob!Tw6sayZ|hO%#qLl6J{aY^_ZjOdTr-e$-$%fL-yVv`gEmxpppITv$9h zYkp_Po*OR8=jS&@m&_g>s5Le>s%NCq_03Z|FS`ucT(b*{AIRtSELu9JF}`5d=uLY% z3b55}K7aG9YX9(@S)1#qo>M=1x4|>;_}1`-yHm-MDjp5J(|IyUNidk&WHJFTpBy!$ z{cW zLI_QPkv@S&}VlqNUe<*N9Lh9#_`Qrv_~{2mzq`b1WU7Kb$0SpZ1C2gmJD9J)wRCT z*%Qy91zEgqYlbh=yD9vT`j(;vqO-w*r)Lsqm$0V6IY48kWAf!oBoWrCa08d}x{X0< zz*#29otAYh#c!b=G{g3E&9 z!I1tl?NWXK!%LHH;jGacG3maR?QCqWm*eT4IJVXmivmfUYKcHH z8Ayb}d7t6_E7hNB-7@HRhx^~x6A8cX7PtT8fNR&PQo@DFPBPp~3~o0fIc9t&ut|~A zM8jGxVq1tXRA7yl$h=UjA#4d-TtJec69n8 z37_}%#FkqRd1Fz3cWy9W@h?wqs5Uk=p!y#l-aF2FO7kYh3;w`hCSkcV{ef6GwQXqj z-8*d9qkB`SSVwOewG*V z|H#O@*6?0>KkxrwjBK)Gl5YzBc$n^WIzIl4bL=Ch0i03z`mYhJ}YnIXX=mdSA9L4VTe!NTxy8>Ww6?ITZSW);i z9hjMKH~f!AMu%95=mzxOu>}1Y!CO{nO-Fb#|Fe$X#+g5Z~Pjbfc0d9jA5B4|J; z2d~Y*)J2KTRysO(&(Wxo1;EiK5R2$hWn;7g+b|+?@DuxHBokI%dR2lrq#Zm86mx_E zDAfT=_DQm{eFhzaH)UWjAV0h(52&fyuDN6`SUZ6ic`4hxdbHn=%-kk&0jykRD(Y!l zpipV2p5juKO|uo%TmkcPB&AD6cssTw%EsbNI@}SGzIwaM@mC+CS#v?JPWT`7xh)JT zB&L&f#<8*>-h_5!l9P(WEfUJ!v*QNfPt-oB8g;xwLcK*bK8OIW2Hv>0>#y{{4TknK z-C8%)uj9=NIM{m@beZmj*o$#Yrj3IqE+Lt*L5dRG8We;87UG02Oov^*3BFb_~~P3v${K652fPa4U^oHrw7v6JL5Us{u7T6v4@%`upY!wWIu#4U&VRzdQuh82NUaOal>gww1+InB7yJz2eW_sq{ znYnWpN!FF_m2`DwEtV|VlC@cu<%{GUab?*U1U81)33eQiG0$cT#yC7|Y~yQe>_AB1 zVem`51OYY>0tpb3nB;ks@2Q@-iwy65@}_%wsjl^3|Nr@)<#&E(eRHW+TiRTAqNClr z*T!C$wY$4VqaP|YYfBqTwPt*#+n-H5F0=ja8O~2)=+%Jj94*CQ7h{cn6W(SkXbK$6>s>|m(N zLL+21l2<0c#ALUI$Pj)Jo0cuv2XmipV0o?&#vgT7CFe&@AlcJ`IQQXz(8;ji#MnN7 zFl~Sk;^Y2vAR9&DGAr`VnUf|9%?YRxvGI?18A>?3~jL4i=A0-A7=esT%RzGO~Mvtt` z`dv1Ymf(!~H>dJSGdln#O+Dv^;RfL~6Xbm=ol50MYi`<*0%f;$K3FlPZF#Xpv@J2P1CT%IZ}y zsa1NKY%r7bHxj+c8}S<5*%!^JpCLKJ(M>H^h%`>bAiPVQ*)k8CHh$5RmUDdUFatmW zSkD!}`AQWF&@+)NzSJNHQZ1$0CD%0Uy*u;*bU36+k@~1x5P~sp5g=xZqUoC?1#!?~ zovX*wLoQpa7u}SC3`+AHEl6ABy0J}A&pQg@p+TylO@%ejtc z#jS?80X);ytjGmH_aqL6th%dFB(zwv5#ecFOJ|(Jjh)FfK&OE><)ZG3!j$ zDna*69swLdl`_)^`w~HAhyx8(pJ&%3m;l)R}4B^;;SntK!5Z!2gF>9r zqntrcMAxv>X4PeUb9w|p2*5@;M+mw_c3x2b9Gtu(lIkGfAa1EOFPY@VzN9+&Zt9wU z*I!%ff1|&)_m^C<@4UnDhtH|oM*TnOEiLub&+gshJ3ja)nuhGdef z1#MC5gI*Qv*ZvTfq%VASS^~)%yI;bg`iuYvK?noEka!)eWtwTjO?OXFYnjF`T#$eD zW?(s_S(55WaP?W8tdcZo4nkUD?7i18FZ=@k;+x|Szv5Hq@fFTujhX%y&IPv#QjVC4 zpwiZn5f_nKgMauZ{Og?hB~(oB1vobKc&rNmL$d+Fl9wGj) z`*PzYA8_W(yY4bx{Qmr``Eqsd$E@$M&YE}q3-i2rHc7b$QXrjG-Gf$WCUG9g{p{g? zn()!(zz?yr-q_QI^&(*aak`=D@h;s(emZmJZNp|$O^@IIf;aj8CIU9AD)`9%{N1~z zKT@0i+wZ;WdwHF{>vxCckBoJ;l&-#TF{fi9vnC!sdL>g0`J}@3G7c&8O;8Aec9VBC zv2vqZ@a_4=>dL~_J$IcveP-k4V!2v=>c+e8zWe0KlRG;b_iQaLuQujwzu?}ua^q9{ zSiE`T%;}SNedg|yZwH;39RC92^Ro$_tShxlF2y_#P$xZ4w1>Do_QVT#T$7Xs!Nqo$ zmSs|p$)kc`N+w3^i$sTzSdIL`l*)Q+&PRThUyV44d5+Yy8v!bIUuVlJSy1KXoS)zO zdf04+>b9_XZILcjbxaMEVrK6CdDpOV#el$`;}z)xL)-OxUs424vd^lnMF2z})ic zkG3D!`J=7-x3=!zsh4kx+|J>vVbnaVo<01Et#52U@cIX~_nyrK*VWoxSy59e3fwY^ii_PU{eh zKLo<>dPd2`i{Zjh(YfrtfvrGCkj}xUh(_aMcL#cuH4#L~SA(@#NxlfbkTe*s?}UaHS zu0FFs!sXKCp4D@;<2^Vc^e6~g-XLG7d&f6(<<#a;@Bi=Rss7|$}A$8#RW>0sm$f@a#|HO4jY)))S%>u))Gmgm{M zci(c$+0XMqz8#FM53s)$euL}4&`p48qTfh^i8&~5^eMp#Na%@Q`WkZ)Z|g(aDe-QO z)}z6Cl9(nvju1H;$~yGJM1f#Flif&~8#@v0K^~GkA>Rmvs$F~5c3YSUW}%#Oi#0E< zRc^ok)^ar}R8asH;E#spopt<84%-)BHCIQ7_R`7aZ zr|d(g+YACAb8xog3_KGcP_wZ*Wx#(Wx6;Tvx>2mOW>?ncW>yxb=hj!|fw1g--h!wD zrCE69u@bZ_1on{h0-uxQFOtJjM9X0#BpU)R)N03S4iZaq+T5ruY_x%Xc zzV&gACRfj-AdPVV@=wGPh>YD=j%KFjf^aZ<=x2ZS)S^r^(V7|w& zFk*q@4;k*tAdl+AI`EGr{D24#p{*Jv_jKF|U@!}TPt z04!$d0s~fA#T&qry(SA~m;3uoZhuojTqAj20~%v2!pAwfe9gxRkMr3xxGCZw(Ax_;?CYqwROFuX1k6p)=>xj+LrISP9?2k;ScSIUhNB z3(q)IE7-v)Ac$Ch>2%GTnViQG%&oc7~38SACZ1R2yiM#b|e(ygjV℞ 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 literal 0 HcmV?d00001 diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-brands-400.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-brands-400.svg new file mode 100644 index 0000000000..b782c9bae4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-brands-400.svg @@ -0,0 +1,1100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-brands-400.ttf b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-brands-400.ttf new file mode 100644 index 0000000000000000000000000000000000000000..4e2fa5dc96f54b0362bfa49f138ddbe94f5c420b GIT binary patch literal 111384 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 c5Ar+Uk-|~+z{d!0Y1Y8sON3xLS&Bme*a literal 0 HcmV?d00001 diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-brands-400.woff b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-brands-400.woff new file mode 100644 index 0000000000000000000000000000000000000000..ba08820e35d441823000d2759d86493d11cce169 GIT binary patch literal 71560 zcmV)tK$pLFPew)n0RR910T+k>3jhEB0kaqY0RR91000000000000000000000000- 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 m`d(5DhHx9TOC$$#%Oo@6b0ReaEM;& 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

    O;tyC#%l7RpiWT%Jc3unmbS*dR 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 d8u8h4XWuzlJwJP1oco;nAbtxobCX~O{|~)i + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-regular-400.ttf b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-regular-400.ttf new file mode 100644 index 0000000000000000000000000000000000000000..60b65b37b4cc4f4856e6be580ca06ecfb3237f65 GIT binary patch literal 31044 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 Q_c`}L{1#^BCczB;2j7~=j{pDw literal 0 HcmV?d00001 diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-regular-400.woff b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-regular-400.woff new file mode 100644 index 0000000000000000000000000000000000000000..68f8b0ff51beac94cfe326ff2d4f33512b0a4abf GIT binary patch literal 14724 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

    =AC$b!|2+op4b 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 (M52Lll6ej zX>(a^5w6$9Q0b(3lS)GvSGqakad>TddFCUd#;v&8U^=OcHXB*8k1MI2G^w^^oZYyc z+8hZx%$||la=Wt*?UN+itbt%KU_~7`@S@M8X#p64u+5pwRuoE= zi~CIjG!Hlx1mU(CyKxOkN-g&V9RCOlP=yZ91+Rs0J!%9TOA(4hXd;#!R6V{wx4^i< zZQ2ImHO4buzP$f+@y3l8k2jgOa=SD&ja;{yP0JuTyJC0d3WnK^bwu0-`ygG;!5nre zzJPu=a;zGFZLqL}*P{32jWX>GVHjF@Eao?pzV9Q#-M=0Xwa5d&ViJSnQQ1{CBOUa*n^;a8|;ws&3s<8_)jZHMz?>qoZSnm+&8$ zN>f!;_9AiHX|dTXmB%@XB>svVg#WM>f3;ZR)%eYw%^S;C=!ab7v5hMCRlPss`z&6o zUthOQ4_Lfb>s5N7fUS6#KZJt)b$Dv^Ak=nV@R+YCNN?0P8yfOoD99&_{bypt{Fsf= zdU`&_f{!%(`6{dK)3cfJ86WOBIK5GJQ0Tg{3}v1j=;|1o9+&I%)2&u7qTa3-?hz|2 zJ@zN#Y2cvpjrtY?KJ#+$H*N|(!GIDN$#8XY#Ua8m)j2vd+-J?@f^5m6JN=(+Kz*%hAj#Eh2q8ugE`>Z z8a{V!!}0@zw4uZ_Xq3N@2#Y2B>%p`sqY@q1l+#u~L{-jBRx9rY>$PU^Nw-bsSRL}5 zb2i~~V858#ZV0jkFSO4!6A6ScST&vsSEt<#Q61VAV?H;3Fu=e-ntc zD^N>hxBntzV48XL#{R^-F`xBM7K+%dQx+K;0~SrO+Wn5s6|HkNUv=)B))k#jAAQpc zjgn{0Ok>Khzz2u&^cJkbFXJgP$UOUgFu>i*XGB;<45%oD#4TXcXaA;=h z*=T3pB?=1()f&feuvQfAT^l*$JMuXZjGXLuKWNDk>|)Q6oBrG+}tVs*mz{TnpXG6XM&(ARvXA&X}B>~J4cJ6Kz>Z;W>*h(FdBZIqZjAjRyypKC@F5fAl%$ zxbn;xUxqb4?z)7}7mRVKF_Le)X4J|kdkR+tdVVNx8VctZe>HBY4-GNEt(I-RxGLI8 zlYEF5OI&Elh>qE4xek@J%>fR;7xcTrwJL&K5OZ2e4lH7wlA%Ky(J8fi)pnJ9-a% zt6P*Y41Ls4%p0D(V=~j*Qhgv-88{|vj0;W-`lKR!_4p{H1TMUAM3@Z~G^Q6Yz5F=} zY*sh)#`u6iAOzlw71W1&N(VB%#$f5kHS?jgP(U;Jr%v|yt1Fk6Xwoaqntx(t#e~-& z8~efFWFM7E=_Lz}cU4w2jWiw?U_feRCP>x3a7kTrX)%>(TBSzPL#53X()W1}vvoRv zxwao)e8B%PP|v$4Yx%q}8nOcI#q$-|f8)ePc7=nAAgd?9YzxC&simi}qBywlxP=qO zcQwpzpiS8NH08%c*>Y64joM0_l*n*HaeAYbgn6pd> z7r?xWIT(woYUeMSCw!RR+4j z>{OSV1^qc6>cjcINGS!2i|WeVVNXdF?yE`+QXV!3{EiZu5UlkFskkz80If0dLD^rc zJ8I=Khh^if#ickG2;ocLp^q<9e)|5bvt*pjYR7;!S?uA`@z(KYaXfBYCi}Tq%6=i1 z%dO72^1k3ANc58-Z$c5=?PuPsl5`D*7-a+CZLK*jG}H#eK=zB2`7hl-lNX+DHp}hO zYR=LNCLj+do~V&&0_Kk$Cj7J0LW9~&h0kVs@e;j((*pQri8(XgY~I|AA8rFUO9tk)V;~U$#eQ=nic$Mjd8Um#=6ewuUI1YY9 zj2(it8JunGq4hk&MwVoR$K|l&z{3KY+3s+~dK!)0fo}WzjXlKQHpd4i?6#6Xpu}c3 z=EHsT5Bz@`yjve%6hp1CdbI_oYgm`SMy~0Yqre36UQBS6(Qd9`W=E=Ux{Mioi$qNp0;H2&0aB^S7h;JFS78j zFn{O&_=YviC?~VfQS1K$%iU5yooGpj9Ly`rSjX^lp0j;i7ctJfT{<2X*W#Zryu z_K4YQ#dC)(8nrqr{|{?#0w76Q-i`NLcU4zcSKsIK^fBE%*UqtX^z7YxGAyvn!Y(YQ z!zHT%t{f@?W>BLmsH|clF)aF*9-sku|&y(rVBU%x@(Hqg^LbBuB@5rM~QJ!jx@u{WZ+My`%vP;SC1n<30BDP)#| zaToC9THbKgNbgjxkgH2ll6Fk`)VXSBYp5NR5U*N0yN_xobU;3zlZQVJA%*q_0#lys zu#KGOpnK~C^T!$uk%yy%{fltHq+-3BA4`dI(CtqiIeKKWFtzcm8>d(q%1(X^_2moR zg^4>Srr5iNCrdk)J6C^wq>&x&pBNh&iWDOF8%o%gWwXIZp-jivJU%I|OlF)=$Z-tZ zlMWt9_6<{rBy47kLUbq^3`!}^zb=EvA{+%p?+L8tu^1u`#qe(>zx0#E#pT7tRcM3- z3NnNRn%3wqQHMrTRWud%C)sDD`w$r zNAbF!14eqW?GF_oc8Hc^P9(@%6c}ue(0gzi?yM~&5O{5i0t@WBYi}WEq~Q~&sKbLj z*@+pP*?ZU52{99k-LYcF7U9BK-IedH#DQXu!WV+OU!J8qSN>t`5&jvpb|xscO~b2O zg1fTv$~CHRwIilM;F`Fp6@g`#2n5$ewNk-QyITFV)|X6a^BuXu-n;gVU0!~J7E$l-6wca_K z=p3y0u^2Scnat4s-x;{^VAKp^ zT1dmwnT%xwInN4NsO@u^1iB9v(3L)y6+|zbNT8l=U(2>^*5!2h{}u6Iyl_$2`uoKI z>6VOM#0|xv{SOKo|AH79LYDV!pLrfnrQ7-m768mU0VPPaG}4KY*lhv*!`G`)Ne(4U zZ@*Q%yi2{d=Xynd04|hb&t-tZ_;y)2T7q^Rcr5q7U@Qx(k$Uw=n1qjnSx%kD%tFt2>;;X@NkPGS5Bx}N( z;Vji`wv;*vM+Ols=BVY|y$b;gMQ|7f6ME~JREZrqin~wnn+#`Qmp-ov9?$Pr*#1|@ z*W?`HhfyT|IN;Ve2Lu6*9OyWe5<1Rqse7Xps}2wBs@8U1T8^5sl$3*t9!w_7{jqo@ zoq{{PEoY?eA=mn}9Zc4C9o$uoTCmE<6-7e02YYB|D&rVBOz~ye4+?mI>cN&ewAJMN8w(Mq>oi8CCdR0U-3^V`l<(cUCVF>W zn8Iny!e~;PV%*k9mM~!0mgD)CmXEKo5EUi8ms&?$v^;^wgsFntCT+lxKC-jtvuakU7t!d672c@O(FpFrXO;! zrtdGq;Da+JoM@hUc*DcQmPVIRN?zUYqNTpug^!B~@op){sZeWe}z4%@G85qApe%+X4FBF0|?c>e1@1|gZ zT5$D=zvfqmcUZ6*!iZ??7+!NiP^jf|J)!f+&z<`j-a{W0^bqS0#?e!d`<6iIpfh1; z5&i+B{Q;)|HebZ|>6D1^LR8N-s~{B-CN@?YZGFJ*3EzF)uw(+?p-8n2eraIaMe{Qd z3`yh07Q>OzQlj;&S&Zo0U^OIQu5#2b9E;wxbI#3GXN7hSeb%X8n4)nEz${DlK8#&% z@#OJ%fbM{-)ApI=QlmJ+jSWOcNfAN~S*+%12JyI;o8oz8*3N2|M1g6JUZUlKvkGN7 zi5s(QVb;Ka?m)m;Gat9CAq>Zd!bzG3$?!uMaYL4cgZ?}_eVSoM;|scvKLpQq8f$qz zP{gW1PB_?cnQ(Z z9ugzH3J`e8uLI^-1Ex~cB8JkGULS7&ZsnCy><8C{tQ$k28?DfFRw!uR=(ma$w|Z5h-@gg1!MK% z-f9&*>cBwjZ-y?eR|f~{^<#bkZRfAKkMeQ2C9nsxlf0sVlhz4LKx`-l9;suM;2bGA z@IpJuSBf_GA^UiUcDOb6q@twvrSHt>#ANjATB)QVI0z2(%$>NPD8Kf3F&9E&cLSy$ zqJw0i9m!1K{o5j)1>5y%Q zj;}c4Z7cjFDL(Zj6s7k6huG9$47%WXFr=+aylDp}A6i@eQOB1w@qOAs)rx`~)G>||+V~Cd{N>3}A99yK3Hn-i5?9CLXiN|=gfpN_fWVd(F)noOhfcOYicc{O^u}!9 zVBk88bRR+6hSDM+Da10cT^Jz5=91D2D*6W4AwU{gouq@5>Z?QBRxRCs5YR3w=p;KU z)SjOaJ~7LBCOAH`+}H>ZcT`u9pU4?4s(ZKYzbsn|M}sziD}(|E!S*8D{-XG~q`$OC zG?ZgzmxMNSPPnQ(8AKF;*i~1>5I`W9vvP(LN=oHSvKY_7$w4!602kwV?NGRe_%%$9 zFkuR)E#XC;^ZXIgu!;D_N#J2UnS4?$6tUws` zcHaDFi`87`CoON5FNsM$zhdW|3;;g4rrtkItzT1Re|JUIU$K^6z5MF&HMG;NYicI9 zMf~oz`jU9x$`|>>j;}xH8H{(1uk!n9FV4McZ?!*nZEv+Ny;8S%9ksGS{N7tyulLsN zwv{I_Jvp81v=e>Pny*p)wrbbCU0AouD~H(1##~%6n7ryxJ&2F)uE%Sr#kw!|T4>$3 zE{T^1436<9-HVIZ0U~Dh9>kQm4BuWMAV{0F?PB@5O&B0flWSY0-I47=yPc%Dw^?TN zxQK)M9zkVhemmSB{%yw*J09*3wBoJe;z|p(cajBCW6}4I5IY9(v)l%FdPADbx~{1!`+T2D)or4{Lp z{NSNOgZc0D;XRWvL|jvPk~3Ft-bPmp3lULq zX>ww&(U_a~n|L}6_Rw`(OSHxKCEu5)fGav3*oXFn!9bW;+bdbOD2QdOz-?sU@gSS} zn!O|?EfLZ*83jk!pWOlksJ%NDR)b1ele8K;(4g*ITZs&-3b-`lT|Y z2>I)LdnwLACje($bD>y72{9DRCObyA77-l~zcxrniFfv53FR`#liXh{%41)Fix#nT zc%U-9&iMv(Nf<$P>oSE0^Q#`Cu0YC05)#@In$>ctM>S2_its(#O4~}?QDz4$9Q{?O zmb_7pSiDYGTpf=q>d=xIo@xG<5y=2I5;m7V{Fi} z#kc%}JDMvD2UDZ@^W@;WNeClhifAD5tQ03`f8ZGLNPfCs7zY6VoW|&Y7Eai|v>Ijt zST-`YlC@9_CLlI2qqx^34JDD50l!o$ZEP|*o`5UI!^q6GVw$r6RH z8f-l*4xV!nFVS1IFgGzid|e`0NT7@sMk6TD0mK%|bhoN7B<#1{y1*AbBP_-EqqwVI zMLfb$@*ZLE4uN8s(gI*P=%J~Cxb>LKocz)hA~Fn-p3ElDhUh+5z>3500@jO>?CxJI zjUKqKpd^%RDpijpPr!FFS{T}HTRSg;PP|AB4ln`BH0@xmUOVG{ug>M4rsx z7x+QuBy?`%g2g?k#>3%p=X&8}fMlw4JB=C8(q)VpidoKMQ^fd~^af_zhm+_lJom(6 zNAy*!0lscf{ATTCZ?T|XA4RRxgfdHWB8?~zaXyBDX+-p5p|g-&^=1u zL2=L*cuAaVz5t^uaphBFSyiN`o1dnBky7B?}+@9 zqj6a6SJ#z;^ffVC+Kd*OK!ki?vjTB@RN!h`?-KhZvEx`yGbyuF_eoJ7nk5$iD! zYYW5TVPy@YM~K7o>pXxN>%PmQp`^pha1>7)lh+_IoGYB5%|o6ioz_rcyha<5Ns82b zT%AKJC?ayAz0p0Nq45g>Hc&$btlSP(a!X= zQ@m1lHQUx){mP<~-UR^vVR3vIML70IhoT6VZbT2EDB8L0zgMA}v#yav^FoJG5NjWG zEYyNj-*O##YmYv3)qQ$}KmNZR$RQp%O$Re~K+C7|PYWwh@_gO3U?I0${rr_C?C;Mc z^$bmqjGmlP6N&K;(ZPozQ>smV3ATy=6`X$42KJR4r?}JHqUIAT5qXVNV`y|;>`vHLCEA8->wBGuyP%Id?-Z`Y2;;N|+-($stU_21l`x`WO zz5#$m=7^MJx{ZPkac@8f<+D5I_UbUW473t zC*5-9scUKxJtz*}~Acr{)rY+Whmuo6HxHEh^fKVEq`(8!GZRCO4!E!DXu zZdG+?g4MjL?;9L8m;rSQA3rbu2>jvu(Pprl!|IBmjg6lOkk~r#b}AX@+G{$M?rwYai?Lj;mdovc-xol{*se@!dly}->y;a(5XxV717|m+NS+i6!2iJME;g(XV z65_JC!Jymv{F=9m_FoE|0-ZGAUnlg*1Qe0Id!^ntzySDsJIFpgQG?%n9&zFThTBe(E%uF!39=O}(c_lcu(-`9P`vtKN+F3bRp zNgPj2-N5CI%LG5v9rSRPr;?SEc_q!kOUkkKyZSt zYs~J(1$^)o?p*N{ub(C2Yf_Zwgg%3sSGWhYJyVm2=Ys4IkrFXAo{gMacloCvP->GJ z^oN*6$gutb^~Hkae8$yVOU$s4&;x7AGd@29qIMEj^}ZK$+#T0{$a|~xGUTBXtcjcB zj?c-QLNZT}7A$*u<2vftl9oOc=zSZT7#c9CGm^MdfpcKEVD7`Qke6>g;WJP3~ zK70W#TXL^LmwD%V?_NTjkJE@1fSC`MFRZR9P}Cg~H%<8s#fL4Ks~}bU&I5X}IJ4c- zAGjV~Ujz8YPl;XR((DDfyd%YfP_sOrEeDPgjYs9`98HBhV#(CFpcYf(K#r!S z^}3d1y~VJ5#RdCe_Uzlb$>@V#AhmCBP?e345!YH@_6idNL;R*ks@tpCOguIii)J!? z8ApK&z^4w#!!x67cfvzj^_*VEx$YbbH`Va!Jkq**NAr9i}nYS9_f(5LM!*-aI zHVy5+;IsUb{6cFPudHt0Pn+G_F571FH>a{g+nzapXjs(TFZ_acA8tNAv~Al^HpM^H z-p1+H%UHkf4`B3x*Yak4W18T|v;~JxNM^F~(H7L8T;uEW<48P7|B!t0ar(zk+UzK; zkdJ(V@=v~pZ(B>0h4NS4&9@)J)s^q05iiK2u920Iwx|aoqbboWZF!xf0Dr-6SeYpO zi)O6fXup-+DcpR!Un`PdcE2{DgGLLzOc>*R1n8&(folV|!Pf27!T)}>YZiiXfs^Th za;A#F0Yteg-tyqnHJ=jt$FCY#6D~hRq8Qk450bO-d@Ay%5qr#bqOGN~X~bxq=O4Rj zv#{!zA0o`!5+^@RY!AI0;N_E%6rL8@uVzR#Ot&7RPT}B}lkF0me%71=0U}*5m(Kyf zMBXI~RQ^9LNfeI@gA!yCqqYuT2l|Kqr9gb_!0xMO_F1y@sDk7`XUU_mv28jWm0ll> zm>YZJ4zT@8hMg`??Yyc`TST59AU)kP{_E$9otL;_G5Fw zy{>Ew8nU}LIQN*1b02kGsObn{g7~Ir7H+2_-xR{Xm4KMoN&N6y#2eH{KCeN`cVcSw zu{VQ>8KD~*h{G{K1AO^ul5{8=#&L_H&hT+^j?Mf6bcomMZ05MHXkoL?-_dX~Xfx9; zHTf}ZZq*j>ixuCIfRws5u$S^J;yX|e^sKK=n1cQdTt2*DDA3pxCZ6|?H$62!?*bB| zG)^yxed~Nnv&j3_`xl0FABJ$Pofy5iq}$T$c9Y zZ0B=UbWK?8gERq=qE8K%fZ8xK!FW8FG3V)1tgIQ#<$`ARj`k;YeNd|f?MWZ+peo|g z9f6m4FazA|mV{+w7V_txp9>n9VE#ZJXW!&~9RwD{?!2GR$1GOs9Td|EDbvNMf%1^z zA9VGb+RZd@_7)$P!sLbIFwIrmaP$DDK`{hHbP!A+8h~-OAnJ_q*Z$zve=(Kql(2rP zEY76n(HIe+anx~=WCvL)#Due}C&<`S+Q->cdB-CnkM44qnU}$k}g#AxdE?( z?Wm=XA#R(^+SLK{3H5AK)b`YF%TD+bb~mrVVtYs*2YKzv9nw`~m-AYryGE|_i(~6$ z5kWmcOTBukurkH5R+8O&9$b8Fa$+Os2?Am?YI>X&Xqa3lR&X?E(-g&BK~?~`%EBRv z?6TujAbdWlP(X_~M!((SI>C4lj4Ijqydr7j@6#Ji++t~_rDQ)rH9kd6`LrYTIGBiV zN=zW!h%D);Xpft;m5>_hiG_#bZYAq5&Apg6%0Wpp?PvsP@s@&p$e@8pvP$>{24B^% zoPJqk2xMpYiu8E2k0pX}n3!}c6p!Sliwgs?`-`_$w*y^6*|%&3(M=T|~bIF$SIwS76&pX!IoqnAkX!BYS4 zL~@aBzqYm?e|aimNjw|;)2a^htkAi)=_;2_eVV#vA*6AJsj#X_#GYe(c~o=70E2Q( zZ*VD(ZyFE?y(zk4aJ`qr#zu`g4kgE`HFRi%y5~RyT*jsA(mf1qLTM7k10}~i<)C-( zkh2zvWC|lmM7zZRBmZnH0qc{(O=+Z6ufZ9y1`QnilA!5K;;4$Fs-$ZfMUP7iA&@n- z2P-#dzZ%xxv>su+&D2gRs;Z0(*_Ii+ii#&SQ&nG=GcT;s(H&tq7%A*k)b|QP3H`G- zMkwpjIuw5W3NNnr^0Y^LJrF)y0Iu~so{8>lf%m~b^49~u4|>uWTBUZ6dP``RLpSLI zi9sWW4dF4hazL)->{eY@R~=8SI(}77an=3oc?|P@6>1N@GibnwGf-^M1v=BZ%@Zkb zyj}^0VG&jlv!GKtw%)Csb8I0_cT*A-Yz3)Vd4?Fh);HR(Lv<{(E``;&XN*UdknbBf!euj9f7bOgg_2TS1Q#B@E8#IM+&hYQY@9qDX1 zpSI(Ox+P*9hstUEn5m_Te`T!ot6@-i;ff_|17_rh(WqX;oc;;cjIW_iJ)|}3j*8^-vOE_o7)3;a zpsD~7hUWgyO5?rZ%?W$&c}h@y*AcOih+66K_0VSc{96 zae&))UzYY@O%ZlHkQ*{M(gI6*;wsh)a5SVHNkm}ZlD3@>XRFpR$I+?4PJlKaVzbC; z*IbO}_lAal<=${4ZPR83lK_La_4jX0VgbZ_2hk$iW&{V&esqL8(sQvhOY{JYb=o3? zC4RU}$Jp>X687^^_;gHy*Qy}THh%Bx#e|;B!)@vEsw*)#%K|+3NILgGHbuPraoXhG z1vA|&tZDDc`R6vNa4sLXp?L6M2j9c)QZ-F&J=k@|jo`m~InAIPoL}U&_8uO$h#)a_ zFu>61(PYA3ihz2JIyBB&RY;>0N{sYf;Je6zv!=90fF&!A5M?_h_IHSUJu&?W=Cnp+ zQ3_el?7p+sALLs$0gHMNLH5AW1YuC`Ns5A;PxVL$YN_K2ltG<4*W1bIzi24L{h4fPJL=_ze^^RPDe^VK>W%g1yx7P`1% zrxVe-Thu~^q*n6#a){X}zwJu8Hhula9oKcT^|xS}k|E`F`D(RCzhdv~CE2Q}hhk&V zA?!6fqe#J!l1(J+NKfURbma|~8M$I!cfwf#+oh>QYgTs-*a@tnEAU>v^2CG zWp_l%_3h3D7dYGN6?aFrW*n{-3e7^Hdf2GFSU7N?(B;g$JGuFgJRR#D9PEuv%ZD~6 zcTJXq7s10ddQq@Esa!oXb2YW2mml>ySgAJw(JG=rao`-fzA-_9D+gI}zPF39=62UE z#u|c4qK)Tnw83x7ttCL)@K@TBygIq1#1C5kj(k&`5uGHav0eNEC?2q$Tg8se5ADBf z|4=5Cf?GNYzo+UeZ|A?fMW{pO#ExUigq}SN&C;HAyaU@VO0>q|gSgQcBiys9CL$&1 z;E2P)_#hS$(6b4I3R@yN36|V6fAJt9KiP^>%f~SuC;N&dxm9ssQ6rN*8*RYsqPdf39BDr6rfD- zg8>nP3>yK)Ne8@ud5X&zCcYgLE?56a22%AcXjlsBc%Lwss{IEwGiTmmnj>PT9qiZW zQp~tl|IZ{k0YBiD*n1JB69!q0et`RP_yOPH2i_g`QNSpT^I}ctFJ_m3M8Dwb zTCY&<`3VHBn!p4bWhEIC53opGtFiB2dDGspy{*6Bw{Y>^n{K)X8jbT<`u$8{yYIQ_ zSsX1b(tpLDNHX~QuSn9apS&!|L?iL!BAdfn16*g!pV2F_6`l|Pf)c`R)ps4B4RZy~ zpy?gsq|o;-qm3WM7Yx8|xD$5Lzyul6rz+J7(K;}Wnhr`wD|FmnXGu3j>nvCU?sG`o z;)FotW3V812__3Pw#8UzafvMrT9bW+bTXGqrVD+O)-bXR>1-KPu=Sf18XOpU$IZO` zvW)8l4I5{!SPaFMLb1igc)V{i67K5*Ki`)C6o><1=Rz^0|5H>qTCGN1Rlz|ESRsrT zj`tutGt$EVwnH!|NK(AwLb*qjdy4&+VFX*npke&^)iwl03RCXdSF=y+@womMKXBpM zrK`6413q`2lbY;PkghL!ILYuLTmK0BThGXu=l(c<=nk-f$F3{g9VBk))SE&ySY-#LoY#A7+E4@(% z$zoL~#oS1>m{d1Ny;Hr_kzD{V%JQy}DvnwYvO>I?DD=%%*mxmP#ru`YY~RVxMSG&M zMh^|+;R+t`aXXu}KaO{CB^y0glX27M3}avKWbd}&dVP2s3j2&pV!56~H595QdUCOW z5YH8BLS7ZTj*3+}4t)k8oXNX(8`_=LlrZ84Pr$rT(Ez0)#s{nG1Tf{$(c`o_*{HxQ zJyAoefTrqTif|*CB(O>c?Xk^cK|_8*#vj|8ymYD(UYfczd5goYyj_-WH(STCF>jaq zgLGqrUuvD=_p#!hLx=Xv!+z4l-^2y(#;ZT%UNCX>y`}9Xoa!xMU*1Lc@Y7fGJ1~`m z?cq_3n-t=bjYAs?s^6I4iV5mPjnqwot3-AiK<6vI86Ccam?3q*iV$%m)h^LW(S0z# z%)_B_3eQWdIW_#hHcWAp`|mk1+fsw6km7Fj3qdE=>?(5@oKQtzHU3|XYx4PPjuG(w zrkDeUB9yWe%N}i);um#_L@K10U&7|y?B^jxKm!Py%qX<6NPY@YPkh`|17Aei0dNG< zjp}qtg^ft9jN?Wfg9rn6sxG~`^^dvSA6v+(j6e%WKexS0x4JjHXsz554nypn z0*lN}V7Xz3_Uuv8p@MCzZ-;9J0GjgKRogDu>DIS9h-XeqUV`5A-GtoQ&<3xrstLQT z^-VjYI+_{!&a<`&_n3^$CgA+@&kx~L4=%m_^;*X6!KH^3*DRal`a|@)jY9>WwjLG- z${TO}r4JOEnvS~<Nbd-L4|%g`Wa1{8eCN zfaDAI%(TU*s9OVEE&dr2WlaN z@=76}9Qpn@cbf%jH;x%7VU67pxC!kBgfSn!^%|%x!Cb(>h^7Lzc!XftLPtYR{oFga z-K6*|gwT3zA0}r+*BN_FaSH67Cwh?%Woq_u~w(>Q7 znKbq4-ShTyy-;8oNQSC`fWp8*j#9MXdgImC+WW^?920C|Df~aQq}}?g<&;w2M{JoS zCdIu-^K3or*vEp!JM$^To3f#q0I<@WFoV?`G#UDNFc739{ZEJuk?G zSb8~|g2>8gBV9`Q|B7ZQr&{;viQw1WoSairteK8nekzhqyT9{o+CKB!wEf57kQysF zk6Tv4eM=(si*6eAAf3!iJZpNE}h|4Cy+~d^YNa`(l5PF?&MC%wWVhuBdYn#8SgNAe-xHthzi3 zM2ggQq}1aY-nJ=(m@=-KtYdw`A7}16ZefD-W1$kjwyQ(7+Z*qRW#S>YgFKE9crrrY z1!cXjVju|5pp&g+p%sTa65srV@NtR#0+RTcnMmF?>V@7=*e3Xi6Sw1Ox4*7AwiRWe z8>3hnJ^>ZBps!`$;f22AW$3*{o(#w)u?bKffv-l@2^mIFEye#tfUru@9}J*yP!mFl zzcx?v_$Blu8-C^*vA&Fh|d2|ai|ICe;(X|R$2T%fgDBn zFnk0e`L#a+qow0|Bn5KO8$&FL38B^d-8352q1Ls-q25B>u=A0OsjKEML~|{Gul(lC zi+*`Al63|VEXk4=wzu4EzeaVM>X;+a@ayw|lu*{I)_&S(8D=^9(!w?Mk+0jo<0 zNKd28`$I6X;=>3(hyDVw6)skt?@5WFHCa3Uvs8yI{Wlr_U80aY;LX)>$Tk#hDdF1> zu{r<)j=1&&>4EhNwO_HPLlrU`WeuW#pgl!7>70q%3znKInMIn(UH@JV7{(F)cV=Ey zjyn|+Mo5%0;zF~0!^9Hs3TFCW*(=wMf(7P=vv&}oXw zvFM#qNVKRM_!Nri_ZZPS*i-?J5==mQk0DKR4;OyKbj3gb_X~pqO#-k8Mg29r#t*%6id8J~F@%?0YOz9~`l;L2n zk}pP;K3U1C8TYSa&d=NI-8Ktun)?kTYK*$S^rw9Hw_kA)|J41h``xIKcYi4u9CSig zgkzz121~?SBL?NW!9Ufw-HoiSBrJgZ1LW+BiljB<5;5OQ^02(bK?x}lE?7|A)9Aw| zu;(9v*VRrZG8fdfIXxS^`Tf}%GAfWt{{en{bJQ(`G4j5UD&Za$n1Sn7;T?6eCo(#! zWrGjmcUx;&c$#sdQ02!~!i>I?#@>-qDnFuSIS)!Pt?q}!1B4&QD%I7`YT=JGoDq^M zt)g`-clajKNK?#R7#9g4=?_HihD1WrH;rskHfo5(98w+SN+<+_M}dR2ClUCn2A2kn!qwFAJI1hvMbXoEm~B zPWB^;(lF=I^kd-W;JW(KXPTkdym!F9^b3X5mVPOD$)S+hh+Y++ibU;RWOhOz7}J#5 zf^k)_l#;CdiWO4RZS z7P+<#dXuo-sU3_Xw8Dd7AusRFcaUO> zYqTim2*TW2h9m9V08}}U;Hd$ZTj1S+lsK_rr{oyc-n-Z$#hW!i=QDfvWaMrJzf-MupazKdd<-w(N> z4lZ&RY6T4|kL4>Cj}*ZCq^a|db;s}2|iv>=TSLKcVs`4~q~fMfh{Q%Ntb zaV8kFg}iRPNdwACCZ63xb0yG{pcd0NHbpv|zMYu~K=wYYn{j<(`N%kK`kbXn2Cyiu zfG0 z#lXKq@M8m{=nAJCYROEd;Cugo3;#e7`egRLhag3($LM$1IMzd&@^M-IxYF4BAe}pZ ze=zuG_(iWGpO*250>`Kt=+~z}XGxzv0REKn@!S{qVBiy&i5>M6C|3tg56x7E`zL8; z4Swv^@L+)1uSC*-rpdLM#?b|%u;e*ft@p!pgNS<2NTUg1Gt5Fybd{?ZB!mb1%tOn`6%~KLPiAWsX zOU@L$HGC~!`x)(7i`vf>CwoF1_pD9=B@yM#8s*)H9RQd8g3KEAutwbpur zKp7@3Aeq@@T2h?TA>j zqM6#X9Y$E-Aw&!LYH#H4K-_m7hV-ck5H9YP?ct>NOik^fiV|?qvFPYzek^|`KgJe1 z7@*y6ibmhGd)4tp_1(4F?s^+Pd>RyBl>7=Acq-x%U?V(NRi;FxwoLEuSV_WKUms`vnZ4L$eD9rmg{h4+Hre~J-pxCjTB3|%H$-c{4225ir( zMBFQiv<9?5i>hjrzpHCfp@`^OP=Zu4nR23!=u&T@$oG91+2_8(Xs)S7CSzcSA~WnB z0lq~}K00x(Yn->|I8ch2n1gIek%rK(-75?!&BP)z39TQBq?A~(tN<~BdlEn?fVl^Y zU&Qt==7~VlrU9_QWUcl<$oxGsRL`q$$W`-oZc*W!K0(fkLgHGW8z*c3WCVi-VpbVO z8P*_Eecn3j1uh)maIfGET`S?2s7`BDyY6bsZtAPKw%+_iL~inudGB>WK$-7$@4=z%+O zN20`*(d!G;1ny{wo$?O=Sm@Zt16c zY4d)uqw>pvP8s5|f6JTaVdY+efqR~W9%26?y)9u)ARyPmz7XU0Bt}_{J^NtBe$exK zAs?d*%OBZ;m_$duMk}&smv$Wzqr9=YzzBO*CanhiqCv|&@L9tbq&P&M!?s}>DUor3 z+Y>+t*|!hw+jnr}q7nSHORdKWLqmmZ9{8C=p2f4dBo(qa$>uMYw zq}bw+um7F6Et6EIF3wZ;iNFf-OX^|4wR4R+QQ|-+Ve#$=R+CKTd|lJ;qQgcCmxT(%wZfe zY`%X42Zuz|tMmyQDso)=3vZ7Dc2WetLcef5I2%M?SMat9j2zH>_)0WVlM#0-^k?GA zH_O`xpwiTtX)J06-O=k<985|T!N;@5q- zsADfe;xkV(QxTttl_D^Da4h1c^&qUO{e0l*pE5@e&L12-CFlfm#}1ClIiuf80CB+5 zKb6bl+~`3;8=w`zf0EFz^>Sa_i-CT6bKvI!4+TCM`0c<`fj?b`j<%U_!JZ@A+zQ71 zr#%*-T{^PBfA{yDL^SKyPb^x3puqv7!?kxY@UL2Io%$($*L^c9>gw|})UoM$%Zf$D z2IJIu{A(#)^%{Ti%J;Q#aG&P!*h!NyB4Ku6nGmK~0UX6VAPSwFXtV`1PM0R2GT#Da z&s1HkYjG_Ff+aPj(p15k+g-YNFp(L|lqZKdegal^fuo3AcwtmhpbJ-2{TOH^AkzE# zQ<3i%#_}Vnu&IWUmC>D(S7i1R1)tW~IPJHX!EyF}q{~pB5zy#gI^T>0R6d^XXY=rw zDFRWnF>pJ+!CQqVN;rRzq#2t1N2~is?H5!RTRe-XP+ulJK#2{`h;uTPd{m8Vm z<vMG)q;Aw?y1p%})HKpP}e`cr2dHAD>8CK}7d8paKeoOjEL;5(Jpvae~PC=_q)( zRjKeh`5NWvDP?fKv_?fr5sLQKz3L%W6MW2w0M{q6?PeotQlPbf=y~(RA#mr8xqsHA zsNJ-qlJ?Ik;?zk+#HnKol;Mq(^vnE4oNLXib~ubxLhYkd5JRY22^aEZ(5lnm!vjdK zfF8gbAtM7G3?n-hMJ^0sr7U0!qC3$s*pdTTO)4ufHGT2u92C%u-Srt7L3dm^3zkd` zrZbkEMDEk^nFHIm?s3`YEn{F5_W>$-2(rOoX=b3`&RD@rq?D^BGMctw_{3$^3%G9i zN$8fp1})7V)QHa!tkIY$WG5jX=mb?pLM7l*z^j4{;#yB(TT>CWkiLKr`M3orJobag zpc_htiW@S+wUNu>5p=Y~U@$7Lf4cSK9$23+0~ENrnvMNsf^e|UL`>6Q_@xwyUp7)3 z&TJ^+neJeD{nIo0ShEMYje>f4e*?=_D9EP})}=07UPJZqu4qoO3F?5h(yUmWSfRl- zI2?!<@&S6G*0%uAWA}97^8TKq@Iq;2&mJ`mI9?l`_vH?@f%+SDc!|AR;PR^Eh0*=y zlvgEoYa5Q&`X=Cb2AdEty(?Ga@e~iJ=Z~eQ5CiZuX@Z4SfMecZumN?L=ITsRX2sd& zqek2~sySBk5Zw3>Y82dD6OjUtVE&knAknTeqlUrWeZh%&W3>HTAzy$cfvSufB{}t( zB6H8=xt_~ry$83>iU%VO3LZ?hPT!v*iaM9T4Z)tVfJ0ify5Nc3xle(ej zQ%*eVX8Sq+GuDq{+)3qi17Z_?f*<1deC)#x^#trtU&s1!3ECJllZgI^L{uI$MPvl$ zO8QAG2vgi+4)dEElgNyO|LN8`ly$;^i`&|9nxN!lS30jJ9`D)HbKt-h>}xuraGJ6n zO0dDLiQS2WYBM{j1l8cj;MRiMaF2x}C5iJ0Ai6uTb&w@OSRa7I)N8oRbpOUJ_(2VB z(>Yk$oy3+Qx;dd5M$}Hg3U9o}e{TU!luSw3QNvJi$L_??mIRtOn}h##4fPUO72wVm zdFCPTyrP$oz)YlVf&|nl`P?7K8PNo|i*`yL2L|!z&M{R_r|Q)W?^9p{zF%y)DFeBO zO>JCkb#?BhdlY?1SH}8^5%-gTPALN*Z#{)}X@Zusy_9E|E(8nh(rK^{H;T1F=tIcX z83wACB=XI`K3oX_wap8x(h0QVQnm}L*~r8yHh1;$N=3r20D@5l3S-5Ng*z_l>y?UF zDEV^PT0|hPqx67sYJSD;c#%GzHdn1vqVcO?om}RA9(ibiZVS9K@S(u30&zD9Wjz9S zkkbN2CrBKiQ1}PYz^z+H7kPCv1n(ao0G(NC~L7xW?cdWj1N|TQWTWDFih8 zkd1eLA`v!`zX!>&4NcdLn2FrLA!M_XZ8NB;AF)hLju;Z+k|G3|gmXdM7gu6-)OMhs zxUi#0SX{SAeFS>`FX*EWb05;IH$DR}?|2#^Uy^N)#??xZ)$OBNF+a2JcQWXm{2$|+*D0b;2`~I4 zqCx#3zCXagAYr-3A~xNK0YAl_Y|SUlZ01yTIQW$5R@s-H3JzCKWwK_HEyim21?P8` zB;s%32|+7+TaoXZf5=mhLl*^A#k|9VPY&)K5S%lo9Akr9hIoj&fqn4C+Ba}sKE6au zG&biIh6W2*OR=C1>>Cie2iW(Ppw}v4#fHcOhn{o4Ho;D$2lidEZy-(2B?(PaiGzC;2Kcf<^u^IO1J~1^@MI zgs5EWTZr&*nNFuk4@dTU)OVCWt4&@&l}VQ4&zqil@7iBJvgYx;Uf7%#&mx(I7OsgB z@f@Iy-0x6Ju+6P+Q8m~|ry9?%eHihn%lJl$S50vrySO|MNnW?)#E~_>W7)M&=Qx5t zfFAiP@J#|%uL=$V6xkCydnvFIf-1$qNRVI+oNj+mvgIy6w}OY3^i6^;8s?qa?F52Ep(_?HIvrS&I}W8LBLKcj>3 zSUQWypcDkun#FG|HEwK9^p*w@$#moSvCqaL|65g9IApedxqWr#KrnlAF0(bq!-68# zLEgk8fb7KjM0sQw#yRB&A4a^sYXff!1ORQBYzX{A9O1Leu~cIe(l+_^>BLlkshWaM zXstqx+VC!D;sP8&y$fN9|6t8|I9iav4yYS{692)dR4dB!eMpagZT!md zmu(n?qLL(qz&J^+3%O4Y;V_D5Z>P_7fqn8^S2kUXSK_^R zZJgfAuETo^X+@W#SwInN8-Rpt6tOGPawH5bK`0_a5`4O9q>{Xn3Ow}_<PjNQCF0 z2KEa&E=+F7rPH|$lQiL?S#x&Fbg@tk z4_%K&`tLc{Th@8_x=*Ecl2Pv^HqP6L$6s#%`U!q*Dj8|xonRE#+p-n~L)bXIlmyf^ zS?o9w4-6K_?$$S{YU;zkSyI)~Z)$*I3lC#>6dx}P;>u(nZsPBJiv1&(r>hi22Q!U~ zUl=3cG(BVr@tZ(5#c5R(ebhjRPT(Ou^6f8k?D=usYJG$jsztt(z0=ai<<>v(^5Wtg zKa_C~yAAiSBjZ9uH0TEg?zCF}{&p(A9f_sr5Vvv}lG+Be=ewYeyc_gUv7i@T)WAi5`?4+U5<{uUSc(ZB4jziZQl$)9p zVsoO5j1(N04g~&B?vJR>* ztYfmTW2MyFbX%SKm=NhF6k9FaH{Lu2}&}=#r1~@m1t?MBOE9+`;3F?K;h(oh(foY?fSxZx2s4r5p8)tu>HJ_g#5rz;C5}| zh}Ic9g1x~g;wIMiAYym&&W}I`Eaw$D9PJt- zuy{qFKdS=a7)X^OUBixIFjJInj>k@-W}f9M{%SrelBBETf`3k#GW zo8uUo+%oU7BJ%5T6fJoNbc#hbPtsX@tXLc)gFTzix1I!JjpB)-ZmztUeuuVG@Ex7l zFFYsbir6n5D=q3NU>$L-ZH?&)`QpWT`SKD~i8d*LfbZ7(d2wDmKZFGj0#7!6bR>;A zinrVY*j4>J2y0?(GZoA5zw8mZjy^Zs!Fb!Ae-G2qP1y zLQO|%c`llezJtu{0{l+l(8#_3cjL|sZxf_8Eda+&Vi{3hR?MZLZpG?HZW2l)wJ#M> zps7N{5jY|1>D-QSSTkVP;FDSu$9H(t^K5AoAj_k0KUQMlcsv|~PC^|mYVl2_i333q zDyHk#lfeTMVlH;ahYQ1U-2m$1b%8q&A@Y}D!{uJ*kh{F`3{(;y%zOhn23Q8)(8&MU z&Q-~$0gF!e)S%h)vz{X$&@#;oY~~dysz`%_k^&RqYbm!NdcNkH>47UOR0qH?BW%VP zVr3}TzlO5Q??ezR`qlhvJ0KEBc=4w&hfV`m3mpmc^Bpcb4w-EV0pq7S?b$8~w?M3z z;8~F6R9I#73Jgm1iiS~3AzdLHc804Mq|!Tn71(%JH-lMqc;N713T@_Xq0;|dcv;02 z#2dLt6#iu<>TX1)%7LxcWPRVz43UUMY^-Dc)XKaLd_!%(`PA#s29tqn#9Dww6wb>dh^y_39P51zmf!9C z7K+KyZkqK4F;!J;6gLIl@v45tkzw5N}tm$w1VB#VETRppOSGv*H(3Pm-Pu+c8 z{b!RuBm^P6xbB^ez>C98Y7WMS2_0;@KKd&w}P{qBruHkik8hQ7=08BjsYOb)G z$wEvalpw~RR_QjA{SgssIJ(jH3%hTB@9n$!rnSt~Ief#Py$rn+*%}}xGH8>!E#x4) zXcrDb6puea%6(6P*7`!%3qbZdms&4&y~5LdoerGEI|$Ff+0C}R)SY4NY z@%in)``m9{`=<3DPtVjrH(%zw2W707hNL+QBs8paq`jmST&Q^vKxTY34Q#CLmnm3) zz|sSx(hf`q>XWLVucput6Kvj9Wd~Be%z(Mj1r)UjY4;^!QDPy99710DYOdOBR{y=@ z8}uJd%7xurghK`J6grXalEvI5Pz3T&uuDV!- zRho~h=kTqM!q!WEAfyQ-U;%}B^?H$vF)-T*YYjvajzjc&RJwI)$G~La-ooU-_z*m4 zW0tx4MCOXlLEe-8QPolM4#xc#0qRDj;Dml#;0G26`$7H%|~^_fft&s*gDMYs z;|47(1=Fb;w@qK0RiWwTzG4BcI}>x`!oXF5x8OyvOtdv3puECWRVYGI6}(A|HH<7k zP;|hZ0L;SuaEzF)*I>RN(TaOr!tUfFow+Z%!%EP|O*TBh1Y+hvLILfQpgb&HLaMzD zLA{1EbJQ}s;vWwuGW7;fY}QN>NlOx?8H9^2Z>jP>M0iFA3(-mT@z=GHZs ziX}}O&>iQX+0Sk%Z%l5K5x+o_<#Bj@j7b1I1}N7-5z#aTYc^*Xi!mz*m|+IMYgXP= zs%)!F4~DJ2U8zKLqNlvMQr^0EbL9-w9P9!+oyM#4L4%Y978F*W1LI2<2$^dl+5MI#ySL8 zm;zuA2p;J1v_U!zR;dX+LL6T}9)^O-1;iZkmN;T^yk!j@OQ3cX6UZl6#86GFI!1iy zSHAA4rG0)+>Zg$VfJm283|SYQmL>y;`2$f~RQZ3lOMlrebXXNAGH(mLycJli5USW=EK`rt7b7f%*X6AR zulq$}3Je0)K10_|(tX&#pMZ9=mUD;>imQL+CDeeX+kf&0j?+(Ra}^a3vwxN|=`_bh zeC!4xrGe+x@LAsc=}6SXK$KQ|NTRJXqPrU%%{a9QVkik&N<529JYGxDH?M4;rXo#p z?`!TSiy|woKC|RsI?7Evu-+Z_&vb5H@J}tR`MH0h*?uy-dGQp?)>;3W|7-L;>55<7 zhpDsh@lRXh!?fyp-BY-esjJ(E>C7@MVYK;Tmj}}ywaL$;QK&iF^bR5JEI z5kZzbU8X1x7SOWyz< zYI-hLyKL|IPlA?ZW1wezcgKny`%?JU{kwN;8Xg?b=vE#J=Z#>AzxO9?#fq+d+4-d zP0r=9|3d?Tm_NbEA)3KFFSnK#7x4!!5`$u)SX>YVk1Z_fX0xl<#D5sVV(kD5;13Ct z0w*M_3so35WsoKSTrd^^N~*E%w#FUFc_Zsp4EbMS!ryV9m5^qo4Eu8H1-+mRzXSk6 z>pOFH$h>G$wS(+b7#SS!Y~W*&tKw_q4V&UIlMt3mB5uYzAR{jc;sQ+LL16sg7W_(W zC?8Ms{8@6#=HYNS`TNNxg6KVjxbrDhJs~sQlz%_m(;xm;c49X3xH$cI&&3C#J#!cL zd>e@phqr7=eksK^>_|S0+~`T%@h}pBC{MV9h45eHE||)mQu*0ag?NIug}|FYOU1~F z4-7*BQMy5$rzQx(i*O|x<$pwg=lTR8A!#y@w-@ZZg2MA|1!x4bS_R z_G8E5QDohV#*dAGblsJYy7?W0BRaEm^Zmf*h87UiiM`*1tvWJ2+@I(j9-Y3QEi^_3 z$Hxap8Vl_H>CxfdME~%#Zasn|g18;O!E+z6IDfayeg|t%8TIy^1HHusDDt)z$0IfD zk?#-hA4ZgU&bq=g1PmUdgKi zO~9N)jp9z`3_vj3H% zJUSl1J8qu`YIGMI)l;Qe%Lzv!gx)`ejQ4LB{K1P)^9BM>h!(49^SD>=10DS#X#|82 zCF0#64QFT7Tt|%V)+kCNZ0ZXW9tS11?1K-W1T=xoqdM92RYdPafa2_TL}+oFRW z)5yCRwPObJqz*>HR%B6yR=z>LUzidbL8So) zQU$sfx*G0(L&_*FR?_7<-AaK;0UZ`NU`ozLN3`Myy%iJ;+`vW`aQ-mlr-0ks5ES-0qcr=#6?rbWW7YfJzsIFGlk#o3?sBZr@0xSQU6=lTfceXm;YyCJ0q}V%{rYLWgt;ZDQ z@^>&Nc^!Yql~=^-xwHS}@Cpv_#LU2LL>fIp`=iGIlt83IQlE;n*W#V1y;1#0AlXjDykS004-!OQINMbQeS) zAQ!N_AmluBU0BID2#aHccSzfrN-74Nt}kG?1H;TdD)t{49*}a1Yax1IupX1+`9i1? z3c|Mp6U+^U`s@N?>_rvB+HIjFl#t6TIW&Z9^w9||xERzXVwxTq3dwM`b7Xux?lWHc z(_uB3Nvk;thI_or|7(5VwvpIgGYC`I-^_*6wq(TXWow@1^t@HBCy+8H9i9sp>vkD=yx1{) zxud4`aN%puu%)aGi5iH>GZyKLFha4+@v%_CIPiLZBSLa>RRzb|qE;Ngi)u~Y8sn%u z7L868Ae^}i1zattmq=262%ND4*U8tG|$ z66Vfs+v)DDnu3e2an!U@$-(WxL-%Z*yXsl8R{erfPo}Q8eM90n-Y4NRl))__{(oUVxTZRpe?_ z#x6LN%i&o2ztp`4oLpCVH$3Oux%bYU-uv!O*(uvc+qJt|jaFTI-JFn@)K=B%$)m?! zXM@F{0yz5^F9Xi5gXC;4$rNG90(wbMwsbOM(U?35QMsUL$(p5Z!%{B^sVuQBb!br- zh@hFECnCeV)Z&f?QsEr91$}mGucHg;bQvH5q1JGkTQjj@2AcJ<$W4Hw-$g#!_uxMw zqkeYQ3zCmT=Uc;kE%qT8szb{OQO z2DOu<6`$qnK>v85%gj@L3$lFzfo_KGgMbpoMx@RRMFe>wYzSd8Nl_$C00Z~CLKEck z6X<@cqAQ3SIkI_cn*!WGC;oLs=MiTl$>snQ0ptKG#cBQo5mJ|OrETlx5j+6R#J?pF zdlH}cnnIOHu?{M*F@0QUj%ooMu{{KN2BSO?ZWThhdVys0#D}o?lSfr!%4YBthilOr zQ-~~4w5eT(S8&5NWvE9_`g@6J?PZqF*%y<)C6mqLv`tqLH)2%PuOe|;y|`f5ez^Fqcu>wu z4c5aSf-QpeNM`@?O=)JmU>H_!KvQucl>gQ8jS(@)A!8QtPHH-IOhjE^R|gR0T(G&* zLLPjY#=B8Gx9HluCHT9?z_Sp|G7Ns=5XeKA$wBxu*iV=Xi(crjB_1R10ulz136Mzt zhot~f1?>*n>Bvb%*I?jjvzXyKv9qy{=oxZfs=LcEhqlF~1C;2uxV?-IU0H)5sM*X)1txn;Y40pe@7r1G&f!8+MlpOdZ#v~LAZ3_S9<;Dk{jTI5QjWMR$-<@ zF;jKXwvqBXQkV?pb9GwK4e9}Cl@z>%n(&N0>GpKCy2JT6te%US;pt0zz^ve5qRVO58%C_neD!jX-v00+;=3&y*bN99 z^i~<`9&$)BpeGA-bBRML1RR2e28xBGMNp(QImIm%>9N5cRev=k@rVMM8EHjm?iTn6 z`9p1~V!54s&()-`+N9)T6!B%?P9d)^N7GmhN;|kHm*Gl{wNHs^P-FC*dPF$A5Dcf7 zOchIkVu}fR5A$g%a|Nj-q_zSBV%D)Qh%lreRU`|j39s1c(&*Zo?m4-3v}A--WOUL~ z?LFJB+}_ik(vjOq4eb-+AaP)C$y~o`EexG*TDR(zSxq$%9$$@a=;+zr)3d#|uraD4 zG(MuPoFg#_9cax;pOd?=WeEn7m@NEu^wAU0fNUCLA;?_v_=uk zvib>V!YweCxnNG^N+WJWHAR4l%{;WMl1JbG!atA8@oXfqXlN{&N_DG%#THko+euq= zd-Ji@Mz%?YzZ6Yp7NMyxHy>sDpelrfNgSH@dX3RtZl4W@hJ#cK6ICDHU^fBz?nm1Ae zajaLsWQ_79HZ~Vg&1_amZZWxE5kgnkV70v`?d%L@n>0}|2MDl8< z)z&_oh4qx8cE?v|UGV>e*goWN=uzG2jzf<30i^1N1w2A5vq}H z$G!B6aGdW}xV`!*Sj#h;J*wHPc4P$eCJ;Q`?ZmenNZbKG{6IJm_XN!LAZ3Xm;CF@1 z0rF4|PVyv;fTAoAO-U0JfjEBzWF%~(2jF=iuE|cF{LQdk=r3gbp=_lBjfpr^XT^!l zq-Ij(nQ|(HfAhGD>e(`GqBNVDsidHSNeOsYi3QW5R*pG8Dt3!HO&CA zgA3FNbZary0uPOvjp+-;mP81yr&%zaUIWfFEr#afF}q*Toi^1ScLXxS*+3$ZPb4Y? zu;r`!eV!C>P#icYpxco((5Bj%+YyLc39T?V7udYcP%7D%c#+xZUM;hdoXMNjSX8qMd+|=CEr{kKG3wl$s;j@9PE)cAVo5efr>5wTuC-dn3o84 z6P`sz7PebaZFZNhqc=C0>qsk#x)1FAM64y$8f^)MeE*s0?Oog3n|TMq;j7=vAe~!m z&ln^WneVCm-*50C%tAPkvg@2P4iAnK2=x`-67fL{4c+HG((Z+=i6Ir-!(AXQhi{;e zE?o~>Wf(qT?`Hu`(n9c`sBuD)rjk+6APu;be#yJ+>~ubEqp`C=ACwG|IJElA(z;4H zo)Pn{#i77s2{W%4ZO!<=keGk*ZwU5AA-I83?@93@9pBSYj}c9vQbT+o>6GfV4; ze_6gc3tK4G0Oc-v5K_@Be0rea7Se7oxD?H4BqAJ)B0xfr&(|882F7f-`V+%bPjiSd zhxq&#x;~At1LLZ7!_ZI)0RXD|FB=-#U{#M}8?if3FWd`e9^r9Ls4h_A=WU_`;USqc@nsP2(W~5*ytvXM60ku39XXW z7VR<*(ssLC_fC}{b6y)+x&jpqU&BW0{l6mZk8U{qdh%}BL8cKy_!NG zlm#_x-fmRiLoa*jFuhEP_U!rp1O0%C_)2Y{zOR9fiE<^ART^xzr-u#n+!8)sL5(WLef%%>y=^);O!9-1`F9~R$?AzS+O_Mjz#OXzX^-2 zGcuk6#on{6w{2wvNTjG()4TfwqF|qEPq$;4;xR1b&QP>x`<2^zLLrDri;6>O%?MnA zxgtL4Y3!{ENz(D#kOnSnf)w9F_$!+LR2M1K!GQo>>}P!l)sww$RQ&SVzTIhnOZbdN zCektzSI@TSK@Ai0G;J(IN4>P8ckRi0Zd#jxI2TVUp@<0e)d?m_#izuBXqt(Ge*vEk z9ab5Tq~s9F2uxf!(u|9BNX~^Hbbaefm+@tNiLorM3NMOi9!xe(hFL*_nxr@T-OhkV~D}*F_dI$;xc3eJ7c?@>Td`H zkf{h)j6a}rmwlHl-*Z)WcSlS`n6oRo3iiwFF0MbIhg-yL?={{*{5R`p%t+qzoUm(y zr^<4zBcid^Jp4|;_2#vgnN11DOI?>X|N1n~b|0<%`o^6;FWX!DDWWHS#b3+b0NVwk zjuz-BVONIU3v(Z=Z4vuA98@tsWRZkDF4mN}hjA@MP!J07TMq($9@KS*9@2|nFl=7f zgWG=wD+gS|q5hoB_<}6rp~i!5JmO;dkpsGZ0M!m%@A?dU;b@yY*F_%-hV{?L0v@P8 z^PJcl7&GK!hwkGEz-NOrz#}!tQ&4HJASr;`zaSup`v%n^sH8|hhGo$Zr){0huU$3G zR&U;NKTlnewhr#dgrH8;?ZGu`!gjq2N`=;6fU90_aH}n>B~`8;+WY#Qmww3V_iN*O z@{w|Ki$ileu%{hcyy5Ol^+%A#BsHW-0{w#qmf5UnKWoV;N@}l+({?-f1GBiPBG@{yhA1`^$@F@K z9EVm8&gGtH%Q1E%Xe?5If1D(cEZ4fq?cDE-guPb8rcgN79s68vwO@<4 zj}&@`H^toH+oS>;Z6$i7CZCR?z1Y8Ok&GHkMS6{q@%0ddwbEpCpp|3gEvh4tE@~HQ zD4&tddrKA(Z#t$B(?M5TgsDq1WM0m3`bU$Ytz8-FFa zJ)0ZK=ZA7bmS`;v3i9IlOU#(8cN3i{n8x;9NY9#2gCE&Z7JaA6hT{j;gG9hER_rsvM zSzac}9Up*A9IIg4%`Lf?qRm(>RC2AJ8;K<5*i4vA6mX&F4CT-eqVBT2>-x1#an$b?xMA5EHflOy%#)*~Y*y~$ocsGQh6xGEgNTi~(zp|%oK zHU$3q+M4P(jQeDrSvpwIV-9+g#gPw{Xxir?`=1k1RymmsgWZ1MK$Br5ZbFoSFlp0? z5Njsx=z<=ZiLF!pHf^t0bOi6G^9R&I+hw44|431HA)?IhuDnDYqWW=|bV2ryO(wQp zLKG9&fkUeDdx}T9k8c_`|$=(p?Vj&P#YA`rZU$p|6qp|Ga%iO{0 z&xp+?3%_}(y;^U^o&Q&>74a@7FLT$;Go8WeIjMhQD-Kc%kDvz%@Bqd75HY|B54XZk zpR#~ihJ@uQIXyIK3>%^e(+V!+Bfguc3rP8WgLND>lBEF1gr^OCx{MuvBr5iiO!IQj z9KtQnxo3sX+-yav*ju1QvzncSs&9lK_~bqlJ79H^aypi$0~w5|7GmJlVVp+uH_hoYT`T|{IuIV2H` z4|$Ddf)G&|9-VNd?h)8Te^c&I+2>!RT4fPpT(Ch!W`I#ev};CRgz0MrR1 zDry1%CYY4|rbf(U;)kr(L-CAo%;d6AL?tIz@Yzr~gnv{lI_#nlD%&06**Z*H16rY# zwAf(1Xu?VM4dhJ3EZJg{1Gs=SdMFLJOJZ`cR)XFt5hoksx{PVQ;j=n<7L-;K4iP`z%$jpiMc&n);e8!G~dy&zazyqfls|x z5B}|XR$ zdqIRbPLdB0a&@3flTHGNs0{_7cM8le0+)c81vzc1(223cU5Jo?v0fB(Kfvlk&{B~d z|A|QYb2z0V(v}}ORNORJ^dUk}GFWEHFiEji&$Dtc;mS1{9NI(sz2 zq=m3>gmiXzgcOFfX2^kzr9%bCTGL$6^-VsNs zb+)zS7(sGQx4k>nQhl6RZnfKQ-MRshyWDSe1&VZ|7;wGSt!7;tGQp6@!#EyKr{m+I z7z(n;-n`WcjV<_7lP0NvJGsVk*m4a0kh*d)X_AzyHQWS#CLu>NDS+Y9YXKJ!4Fu2u zGDOiw;ge2gG=MCU-9^00fe1h0bsumCyJea+!DYyJ1m}n(IZKB|=>hU~!GA0gquL?4 zUe+zo6Q{cm%p42iV%?m9wf)b=YuA~r(B=<+T1fAK= z*jPvndt&*qp6p=HwnBPn#m?S=Y|mIe<_W8zvDoGnL+Jub&4Q3TZ%O24a|iuy#e)Rz zUU*>Gec85rZ#>Fkb~s~rXARY(xc$+1Z@w)n<`iuQvkQXcjp$Y(`+@nZ7hjK^jB(&1UB$ruvdRu~bT+^=ztojzR!1FLCPe)B;3Q zYYX|reh}2e5O^O@N|eo_3x;BhkW3%sO(tUou^-t!L!~~+Fm`|+l*>x;4-n8dm1{PP zw7xhtiY=}r{MC2+6N=Q+t-anB4_j^1Kb*E%!*Sd7Yavv7Q6k3^@-#0`-}BntpY=x~ z{?Ce?@h*qe8+Y7rgCh>n&b!>7KS5jRLI(^gjWeGDj)H!Hc7HYv#;&m&;F2j3WMM$i z6X=16xtuP5>*d})#qF%#X22r;F#XPk4KBikzOVV{=+U^_QT?gLayHky&N}=(Hiu|p z^~1Kf2Pm@7i-d;hh&KUd%%8GjjY7@@`sP6)-x~o1&1&NmYVEy%afxYSdpx&Lj9^=tKIMrLuuPG!}1QRO}J{i?6Y1*8Urx|&g zlP7`_Fnr##pmO1pv+|z#o_Q+E%G81r8-2fy-wW!kJKCJRsp?l*e_>5N=(9QeqJD?` zF@3?QAg@F-+=f?PnU%{vX;vycLN@w_zF*8FN|CE!=r)t9+I^zK9i~f+k_l01onWymRdYAfJ*Yk0L7&u z+Y8A$#1(~LrP{_>EKt&QTOP&$*I2jHSs%1Vj92?tx!avS%@_4*z6j0{ zUs#XAcIOJa|833y4_LiFMq)3A&#rhP_U;FqUgmS=-)JcAsQo(YtHk*ZWk2pljkTJ7 zg){6c*~Oflhwb5A;FvLIq{G1^)n~3oSQ5l*nm>U#8vq3wwig!7Pxa}=Gg!o2esakS zePro0>I9#qe3E2jWbb34zy#EQ=Jg_JHc)h?tPanl*}3XzfjViEnNe8b(gd{pVFpLs~75t2k7QG=FT*PCVDUv%9r zd0?z?Bqy(xVGsJ!#j+6Bh(r4Wv^(gq^?OvJ!}ZmNsL1x>cwaRt%2Y4uC}}(6so5Qn zzDP=(WiMbMH9*!(OXaeEcnXo4DDAs3LG+Js;M_>1!mcB%liHvD5wo)=-Z{_NgTIBCWW+VdQboQTmD$u zBAO>w0k=PRMN0J=Q@W#BGVRc(46mBHVi5d(wIXd1YZi$TE)iaw!}{K6xgI-jnH64N zYUT=WN>~UnAABmEvDH7oaQtpFo;)Z)vd4XN8??vk!+E0a+TZe{Vf}iNuZrM`n|gbcJyUwuuX5D3WZ>x35dmJYX&5GeNoDX$t*JdYg)z zGHP3o;nxh~^6ZAP9)w*+ev(MH$vkX1f_iyF_Hx6}{6+Jo6dd9e#7ot?i;q{ zKS8+e*UH7Ao)ZX2^c{L`HxWgmzq}h#Rf28`Q8O0i+Cy}r7I>j0`i&%ck^$+bO!5=yx#91U9 z1?`3~ap=)+)jxGf|JcxP)ua{0^58?r$z2uyLKe}kVIFzYc9A>G6!{RAq?P4v6!-*6< zM2BD0OZU`EGH$|>J}y6twb(syR`fWi7w%%PICAHWC#NNh=gROiYU*9f(RC3RojqsgLc>rbcm_; zj6bkC9FN93!#*o02E_7+x?8%h_8FS4=pH9~q9lf)$)b~O55c($W-2N?zOZM-VN7NJ z5f6sK@$Synj1EupR=7?WE^E>0g=v&VsR+xoPO$$?W7FFH{$Ck`+=4Jd#CH>o{M(K} z_5J^s2H{`oAfhn{SUZ^c61$hy4yX?qJpj`Nvv4JBe?5w zAXZ6io6wsVi;xgY9!bV%X^P1PUp&e4C^bFeNUfj}#X=NEq*eo>j;^6is~1XAB25Bq zn4f(?o~o~rwJv$d{ATrEn%AcnK6ZA&H+IM?d1QHc7E7Vt2XK6px*hq(F)3xtxsY?t zL!M0fK?_4WNsU9cN2JABV2ZZTzO44$M_GzhNJ5F8dAKCOKy$$_AZ2*eHTSzb%y?yt zyP^)nxiO44gm^G&9DXOr4-HEJuc2*^@@~lDTW}#_p@FCqUm)sC5QX_Z4vLT|3%+)@ zBkJO@R~pEscmEnK5@DY(zkRZBmzp-+Eryk70#JOk##) zO>nA4yd?aXsp5yE06BP{GGcyz%y>#%1euTyocS{w_q(dIEh2UUKVHGi4*B98Y!o7qX(WlSh_rIhysJR&f{w16maxYVe$eNE*I&;XKC;)ft-RdPy|o*r^*6!EFOi#;f>#qJh;>JHI~G7! z84OS^Ka3Y#8OTT-3awE@Dl?O!+uZkEr`t884zdv~Otp|_j$EhDYOoNb@v6mfK>UTJ zaSIx<(@=Aaf|f=Qv1XpO+6XTuzx^0u%#p3%7}|?T5Iibk%#a|Iz*2)Y3JG@v0=OPV zWR<|3H7<{x5!NTYJ68yo=i6!WlcU`UV89kdX-%II!dP)QEv#Br4qQH_XB)K{qaFV6 zNjOHd4qW#Dd=RY<$c3ngxGJy5esp0s6$thZHB>@bKyi>kfaBnq(^wQj*F_sW%gPmq zjL3Dk%*J;czUnJ|#w(Cv(aFnBzjBvA*X8ouc|1UmT{`P_&pIMrZ>0KR!oUpMpM&zG98lW2+vsd8})^ zun~i?Z{F?BchjM(;C3M{l-^oY_qx5+S)a@B8q(;(@UqQEbel~-5?|G0WqyyxU;EFj zJ*(bfJ#YZdDSts7_zMLKg=AlnhLmzj%VKI+MeAwG2o@4MvzRgWHbo(2|6ZLD12Ko= z#-=hWH*(-kH;QK(MS>qSIh@Sb2ze|HY?5IhA8{v z5fSYVe$V(9Og`#2H245|UGQ18xx7W66CrIJ-e@Wt4cKiqdmx%kMX@?$AHNA$_9wtI zy+Tu%mb(VyD`dme6@W16NE7!c$WJI)0p_HchNNM`*lRQ^SkW*IhcN`Cae}gD^O%9> zA`Vwawk4D>^d6)K>z>@uU9!J7;qnIj$<~Zr>(z~(;>xuhU9PzXLGE=p-GNvOf`45l|=${JN~YVE{p%hu6G0(;$fu13?16fUw(YW~QDQ?dkLc}<6s z3)I!yf%Xc+7}4GW-v2^RPtQ91r#}rr+bvF*nkIYFK16AjnyOhZnt+=}n^A$$3i)$LTl!u=uH^-%X;QxD}ABKdjX1XAJD5OV@aI`j!XRvpq!3u4< zECP@N<^l0ytzpHH00i~GY+wOv#r`%v(uC`f$@4yIs@)TBOBUKH zmjdr@)$b12k=Qxlve;K3KAYdBwDORrJzzz-%(UumDntVZaw>RC;(uFg!f z=f+c&)I|G>fRRL|;P7;#Xj1&uADT4%%y~?)6946$w?SqNj92xAzW$#@iiilnpTs456kEF|HsM}jnncuBw@+}2>MMTBa8 z7|)X7R)3&whYHf9AjvDt31)-^Vpfkn=7?Cm+-_UvG8_ZCKHxB1>uh%JwMHCcy2l!W zDm+Rsl zJC8_2HIw2TXl3(<J#VzjROTO%#%iS~K?qh-$C|Y*X?x2oPa0NlCprOGq5I9%0j$g9CRamd?S$Itj#`Q<3kHVgi{GAHKj|Lj#OQR%gIclB)A~aN? z5$snw>(}lQ9DwRa*sFYLL;=yD^U-|qlN47-Z$+ETqh0I%*10rNnzAFd;VbJ1vD$MNGGqu&Ux+w$knhK!c% zVO<;2eA?yhEgg>2u)~3w@&n^{_I0$h;HkD&_29Faoh{kR@yL*-A4Vjsc#D5KJ%vPK zWKTi(oa8eUxg`PJsf7XeERfScNjOA`Li5bdR^iP8pBA#)uKsEce-IddZf>Cnr#d@R z2J*qdgzpt$lU>Vyx9B&pP$gFaqc1|6z?j2CyN4DCiJp>L;}7YonXqpY@@`aM*j#VV zOXk2s3(!xB!FZuxU+&kI{{fPRlTXeY*i(qVm<0BR*9k?(gAj$7I)u)nSc)MbAc3?S zpoaht;UjFdVRP|`27bBztS7afVYhFDn`ofoZPgX-lq?3-!$oT zSEM<>+=A2l=@WQc9NQGb{tk`^GPy)+;Ix5goP-Z5Snn11h(InRsZW#r5Dr51?j(cH z1l`|oyPrX9?r*qHNNVaS_{-v|h+3RX`6!mRq+cL|mfwX-5~Lv}z{QLU7?i86aJV{U z3M&vxu@6uicZ2LF-*DsCYG1CJKgNDczx|1L{4Z8eOP>1%9L4HwnwG@co6wL?B(@}; zqE?yhkg{;{wJp$!G-pN4l8mnIjAM!&>W!M0CNu2TpSB^+;;Rl%z-ETQTEVCul^}(g zvAX8lcJ;zsMm!_v;j#%zER?hFoZt5wVmKI3EH*fYJ{d=EP@j@sTDMQlbgSKbc$_b>Ir4Ql& zc3_#}Wu`p5Ym=8E1KX`0t2JC!6dxjM%x%I2_zo*>g;!hgD|XP-lCB1=`ygUvtg>t% z3pR?4UH5bl_Lg-4Yuzv?T`x(|Yz`>DjimuU>K3oaX(SgJ`)XM4O2F**wB7AUbm`$h z#D%L8vMX4`$>EArKmASkLi(yd@G-*~Y7OBZE6ejUdlH!;NIUwrRDuAj9k4yM1wqh~@h6~hgfGu~ z-wQV$6ra%9ZIHm8rC()e_a~pwb+X%i-}`U~>$o5MBIT5z@5P;3IM zxjIb;Q%N!?FbP|e;q*1!j*%T5tQtbS;vsWsf&V0_EAb6pxs+hpGm@c&KwCo3j2MuZ zLR$S@5ih1m)#xah7Yxf~hMp~v`=eNzIIwbw>TrXi*UZ;6i=rU<@EzE}&Mn&qYTm*= zAcUIKq!Sc_stdb|;{TbP669Cp{6_qcDN96)Z)@tqZDt=HUec0A+h-e1mu8u0dG(_g z>~xK1q!>^&`%DXwrp*m+rbE&4yi#A+k`o36zQDkP6)QB)bl6ZYeOFdcZPR@==eEz$ z!wU}87weZ#G;T@x+Pv_6sP zZu>!MBMwc)*VgLX8(4yFSN|19oEulsM$!GfX?lhZAE}qvc3DH!Rk$|PZm@@HC3p45 zjcRc9MEf<*74`o(EdJkt9kgf^CvQ3Ui_Fw2oe*CeyA zy-UB_G*q8)+YeFiaY!}B62)5WSL?3m)O1aQTpXFr7P-ny^SIK z+;WvzgSF}-wE`fNr28ufZAWtWBz(9VaWF<8nif2%FiV7X3Usdm=`(D}q;(qkp_v0> z3fohu%y^b%#xp6PU#}gR0)dFEF4f+bV(C7poJl4>mMg*4COe)jwSO5{yjYzN`Rs1> zJ4C#HM|C5TU#iq6_>l@?9aO*pbW!ZSfc#PXqLAH*s7;tpK^CqiWg~59NgQgzM*~&D zzY*1~Y#t3l<1!3Cotj~(zUIcYp;UZ00>|+rv+1oD}{()r*2N8JCtzZ6Y|6q(l^b5X#bU5U%5G9Lb-y*nH zcXm=q#Wn=yOa3LCP9i9fB9z4mQ4;9i0L5nqb^>E2STn5wYl_k>4S^Qys-{{syEobr zM8rei`d}udbceEW&1pxH6dSWSvay3u##^<7pWSTxi$?NR0r90rWu6hM`;({|MKT zHdi2A(k6(%LpV{wss;q@m(63tNO$Dm2V+?WdSZ2HcBdB4hPsthCb-^*a2dgtDDn$g zF$Q*5!k?IzoueL_ZhY(>KUyEMXCv;o5$N^>I^FR+l9Fg`I(n;wIuF zk+30oOvI{&1|(Or7OzpSWPfS`=X!Vp3I!xwH(95%lg76yM!D0OkHp{|g%mV)9%c91 z-Lc3IZWZ*nINa)QX={f9l=G6+TH+i^&|F)R#uxq7|TM zi7BTzq#!#0f-@R?plZz{N@QqOIM$p_1|ca);Q;Ut>CHTqN@&~}Y9hs@W~mAUDMFS) z`8dqNWpw*29VDGyvw@)9wm|<_SLq2(8is*ORe{ZR5fH@{!5pnw11_wnC{t65t``_f z{M7{>s=XxV2`##ooq+Yf#nc0cxShhdY=KNoFyw`w9xx1KGcpbwFp#&%p!0(3$_46c z&(XAyJb|48?1_=DY(zR1kYE+Sg?1^Tn+W6%6E|8XVx`En0lj(Y(vsh?8u575SlsG~ zc~?99rAx15Hl{i?t^|^ZORqW0c&d<(T#@MMcRL*J{@%ppkz5g#AG2EBJ_G64UBRHs zrdtgpg{-ZWy8v%Q6b>OKuHkX8|Eg4aNCgPV1Yju#B?zwBYz2M?_$N=*w>Cm+u=0vj zB$8So{C3&w;NBzjAPyB#BLZ|>-G0?o?cx=&T*YAxeAc{Vc}4at*ykcy1OQqqa@2{K zAkf92O`Lonntr_LtFl)7+$D|nNVrP0>l`SSKB4a?c}tx}r6{r>Kbr#IV0Yk$u{%%) z|C<4k0-5$sgNZ`PB;2#?zk3bWfKX%&xQt#y@#U1wOcXPsEF-N z^#%x2f16_KHR$UpoF zo9z|D{*dR5s%BG>V*&0em?z-ohJF+@@5|{%o8eYn#>g(D0ww4rAQOoQ&WP|IY4&m& z&*3z}h9FLe+`IFjBgxmd{s41Ne}z_X>Kmok;nP)B{E2 z9H0-HMaTAm&g``L%higR3f>%(yD%owW6vBD(lw!vzg3TKHhbKO1oRi^6t#O{r||4= z(roD$3faly*hlqf0Y0(m0f=e4h^PQ0hai+mnrk}Ov<$+emL?gX8M1mg;fu;}=Qj|9 z^CW_A8Yf^PuaaSTEK0mIT)yZfdB=A@J!!K zU}6432QeSy8!h`~d5In=QmI)`BpI-LYd;WV$-vJ8NyIi$8B}>onl@Pdd?1cIP8$#h zl=d&t){^$Y-W9ZukXqOF2MB4Re;P+hD~c+pKS+&$-7v`R*pqx-H zi=e!SWP@czsj!!F7tN)DIP@188RrrgyPK7W}zBJ3?8cOc?Gi)N+Z z)NLP442CoC{&pd|d28HBd(Rnf-Gr$2fvBDd4<<(K?z>!ZySJyqHt9$>T(*uLz)Q+q zNBfU*gd=kC2$@0DY;NI(2BlF1ajZf49;ssb|=P`(t?a5xf(++Iv-yJGCz&lH(Vy!Lz-1=UC5b zJPp-YSqi%`{-ig2UfA4siD-0dEtk;xkT{s8LFf;`zX(M-Q0@T9F9hKuL1aCq%Rmh@ zLL$`G6j6lVFcwJU&W{IVj(U+TmV&uMW?8|oQl z??Y#PvnVz2B*Cty9DElUh=yJuu?_tf1jh+E{_-e-%?N)-PBytY?16&txfNPQX+1+A z&0P1xqnYR{8Mm#`A)7gyRm(m2;+TdBHGWo0unp?Ewrqqww_P)jDQ z&;k)pUNsEZ1*@oZVF_4V1RFquJtMf1GJN@FEGI0pmeZCw%Na|>a@H~riUy3FAcIMv zAq{kZVIgn_!2cl8xlT)hstEW4~u zZ4Y3o*0;YG+04{Euv6=@@_h}{>Y3l52nTN&r4k_LW#4Ol7zzs!aDWa?FS5PsqWH58 zEc1HR%Cku2IpOn7AeCp9Th;ZN>uLN@<0mhsbmc|9@zT#pnnUPL$#2`jOz0t_?aK8_ zvS-33z}I<&JWQs44Wye4{?{C>OL#TlIQJi@X(!JUp|Ho^Ny+^UryaOBCaZHSWx`jA zyOTqV-!<6Xd1A_7Mh1K(Z5V~Av#!aUs^t8Q#Y%C90H;702q?A+QYKngL?;aMo?@XZ zhgho2=}BhWqM++sO0Kie0lOh@cjxVQ-_h9v*OlrsvNa^G&Ge(3`gFUd4I>t6&=n83 zlA_$M+VqK@&feb6o(bJ>y-z|j7Xg6x+1N9F>ZhN0JW0D&(2suLKgteHtjtp80Z?k$ zdc5ZEp%upZYm~;DtWWG>gue1pUu&=us)y27dL;rp&I&l zp;#<_tm%4FM;?mP6g`gvnk!@|f5m>m9s#!osewkOI`u6Il7bAF1Q&`vK$Ar}EU?am z*uWqDZ{<@!dmg8J3XoYfaa{|WLhg+ufHRu{+5#~{!A1tPZ#+%=1^zbKYlqj}v<7L~ zmZntb+7i1CPtBVqQ`-w&W<~|*pEF7=qe3AqzC+_gc$LQKbFdAHA$C}w9yH?z@=bbWB-5!t!j^Z!{@H_(TdJ88EZdBAg;@X(PG9 zS|Je-?DwG5@4j)UMMvy%j)3P1!hEa9XQ3kYx8ia`V&SmrEwC|C9C|;z<&yon15tBM zo6%4aJ+;`#?l9UAB6Lfo^L0+^>h^FFW-$mpuLqnITgwTXc1?wwb~4<)+Un#E7mTbF z#Lb2AmdlCpB06xMorAtH4$qk~#!4{Eb;+2VS;n(*)Mfo1$_Dw@=qA-}{xT~)NGlspOwwLjTmAwj*BNJ_hC?qQ1%ki)J zWyISepFpqOeXgRb!Jw*F=nvX^{+H)Jk6f3338~1q$lFFjGfWH@R;pwTLTg`Gj3A+k zJj*)VgV+i&47l7LkTDGwq@O4p6vF)sLc^Yx?c2wL!ImB=E$az&PJ}2~vKRk*LKB_1 zfT+!m=YqlU?c4Djd|9A%uWppuclL-L>|A&skJn#)7FlO%pDZr?wdzfzwa5EHdynrm zU=-Q&4M;jlnpz6H4wxg1QJ}P5I4#1OfgqAF{(7-zfbH-DhTXN- z{Z%k3CF=dX>Bw{>4UzI|oL(pXmCX|(VaD)09*;eQj1MR1SsZMTl|*dr>umHa{1?Ru z?Upf}?h^cFJHQd#05MGj^(0gdW2FfyG6%>bH&cPX>SyT=Fzo%?ocAos!d~6jKG_cR z`??qHj|Qf8Ochr39bJ@i{q1F2%tL6`3KZr)D}10{svP<%c4xLC<=?gu$9iwhLAxbt$9NZr3GPVvSSyrn1{V zJu~fh6K+I6rJ3n~3&p-<@N_UaS}YYuH#yteo%sKUr4yxr^$;hD08NlAuD>1+!bS2h z5-S_?T|+}%!jPn1*h>pNN~A(be8A~^Pg|RI$p8koOmqXR@$Cbb+#w|tuuFj@3c;gV zTyYw6igo|;qYgH&S*$K#)ZlzW68u^pX2K^Y9$U2?9;#p=tVanbC9T$-IK5q|G^Dwh z9X#Agv(t&fEZh{2^jPtzUAfe%yiI}HLBRP&{2^Gnk)PGzrqUz zL5P}S4y|n;9NaWG*xt1*;Tc2%`%p1tRZ@eV#I|Nt!wfyMX|VcGdn%DeKq;0^q_7pR zr^Q&!VsDV$?yzMo)@XApA`9(CAZi8#LjVNOu2>>6c`cE%a7%9F$m+*X)WlBtJa8}!Oy}P)3`liRpYfg zG1VHyows6*6kA%V&o+kPhwvrV?RK9t>9pDjklC$D^PtUmoO~;+(-bWgvnt4)-U`+X zJX)*n_Hb(q`4K_aEO*zfh`UZO+YCm7ryB$LUB#-o+6u0iuG*}6+-0!ZcpDn%H!;qS zfuE7us408C%;>8^CZXm~0#RG$0ae&G%Z7qRZNn2!z<529vFWctt#q1NJ|j zZ=wC)f&v+|;9tsS^MnSHJ;@+G4!k7eIz4Ielf_3)FSvOVEr;0dkq}r0Q~1~iqqo8k z3F!rdAS+}M0V+?VR+z2cx368`2|%aJc=e+id@zw!yVI(2kHb0T7E|q>F?8MdVlenc zobTMXkL4z^0Hpw;*@@gw*tj0EO{#{WPTFGnkT=;PmSnai8R2d>@3mTcac+hgA&m7H z@oKq2cq}Xe3HhM~AVDQzCQ(HuX+&}mP(*kO2!_a_vQ35SV*|{_j3&syK9qutEJZMX z9*3*TU^ZvHQ1I23smC|pSk0*tiN#9bpXmi0M7|V)cSKuD*|QT=3}MG+umv-BX$w9Q zqSR_Z5T!th1qzdGHXd9PB(_56L*(4Z5ZOJ$8C%#ekTnsi>L7vo*UOr)$Sb5h!?%;| zx|TxjPsJK&DI^0{MS)bZO|!Kpwd8ox;q-^0%K@2JhSd5{Af6d-+6tg}=qs;Xp?0@) z!q`<;tk~+znheL|(FA?S3uza^zG&So-D)ql+ZBGP+7ck*DA1zrv~69{L*norOnD7g z(!M6$DrB>ZBd@8=kl5xjHa<+u^-Z-)klKuF6Y{AxuA2CURN<12?isl zXIz1~zy}T;QgY)NiLEo^xdUEz$B<}YAsq6mjAdshN^mtiWIrUrl^8_%$%u zz?b+-UJsEKL5i8z22j%kq4Ij6jTf*t=0;{kj7@CirqHuZ_VV= zx)W)f!}g@xowSFMf!V32bD38En9XjDwdUk{&;F>hKUz*j`x(;^N6+o>AebDtxt&PY zYiP(h)_bU1d+Vgl-ImsT0iPC$hTVn=mKtofYPiGEh^S7txos2v$#!$OuX=AKRlNQ7 zV(NOXglypKH3Lyk0A7)Z*A`ab$fRiwl0(rLQLOXF;XBj<4xHdyL4aAALO{|AkT@X1 z0RXbTh*%gL8CpskAPx47ryPz`Hha*YYJuRtHIWHK>~ET}rsLJWX>6Lincf5fXY59I zyyZ{9(e@~A+fZ+3TZ_wTb;epdN@F(n7aq-zb!Q%HY^5R+6V(BtH9LTy5)Iym;_z71 zT-{+}3G;(hJCM#Hn#8NB=ki!Y>qfK6yB6_2zy2resB5bK)K|8D%{A45cDD_uPA=kp zir7fc8C#lYOY%!82pqS>gQQSXl`KFOk)g%d1QE3$<-gLO*a454D~*J4wE;V6f`mV4 zjNXSrzUI+G9M|NoD}VuZB=8E}NKiaN{M(xy6ZRb&#e9UZ;*F+#c$)CdUN41;ShrJ<{rL8O+k z^I1rsE}}&x;^EtSR5gMGu)V!FL{znB(RKA;W9XJZ>$4YlsrHf9#=2X?>|hItbth#L zg6~~8j?1>TX&9HZr3w8l^IOFC&O={BIk(7H{ea~j%X_eA|3`d4F9aHpA?9knVUd1V zsSy7~F(4W~N0BDh0QU!AxB@1k&KQj|kPleOQW`W4N!M@7BM`mLTB=t`m!@AbBsz;Y zeRjj9I9dl+4S-6$2V4V!oMM@n6Cvgzu^O@b1ah!A+X_Li4F)rc%1kQQZhs_zbO^3M7BET9*Ikfr+Fov z?$0+yYF>8J>}aQ9K0a-BQrH;4e)lQz$RlyJK#@Q;X0|9|H-)9{e7vh; zcM5?#L*FuN14hJFDRg$Xx1}J&oI}W>R9ky@XQ5(?7y~xrTd?wNPwno2D;^hg>>T1; z30@~qS|LnOh0_m7lkr+_DjfcbBh61GOcYw`sK)VmQ<;FnB;bech58md^AKN`1`;VO?`OH28!E4^8 z@V8SCo40f2Z8%r|{t>$uW|(K~?uniiB_yCE`g<%-;~5m%#HM!!VSXfyn66)XPY=f1qWGa`D%OTi48Uqyj70@DuodV; zc3Q5$SO^kJC!Jk5B0F1vJ+Ux_0J{ePkl>h9Y=MgyF9K2|&k!HtgTi8|l z7c-p~HB-P-zdnDK{S*6B>{H5*B*cKUNkR4s4H+!tq%cs=jzrjV4=I`gFM7vMTD63y zBiz;ca|+Ls;UD~ickf`@LvV{n`bg&st-IR%e!7QS`nq@TkTF$Env$fmYY~0j5+G+b zn$x;$wuUD{S++>ABOKo@@a!hBvPd}tWsbTP8l3rG&k-ZRXNV_zVae@Tk)#Gnp%T4> z!%TI)!JM(Bx0~q5lm(JXlA!~B5Tg)+j13rWu_#^WxJN)tjyQeZsQpGLtbewBF*W%h z2~>Qp>izak=65mX^eOt*H%A{1CRf#H%9SV}F#2RL>0kh*fO|NUVT0>|l-ok1)a=zC z(UE(|Y#N)c&Xa6|L^jEf+<2os>h(t1EX>90)%mUO->NG<`OEP2{V(V#&#_10MdriT z^T_@NbcOI>aDYdSJ!FSL3Fio68{`Qyg~1-Rl3lc>=TXE?MX`_%z^frly7cE+X#GB4 zFz36(8_urZ=!xz7r8Y1)Q0gl26&w4~llO0Eb#@kZeIjh1Sl@GLdfS$jcXt-Fo}R0| zGP)vlazkHsV*f*hRQ~kzJ8omZ7`X zGmkcXCk+o^?0MMs-vxWCJjMtDN7w??Atc2Hi4dm;u@PKJu+Y(kN$4HOB}BTLk;BJq zH0+4GHK)hzuzKQ-K$smNqk8>v;eZPVl80m6E+7vCIm{ZAUr2X%;K#&oTf}cK`^$@e zX7N|iek;E5Wx&Npg}vAs%Vo>=VMKI5fcIJ-h$E}@tad|$Lj$U<)nB;BpAr3CF*eX^ zSJC6KsjZ>@PEnUkx5OPP?D_1rLifze4a_<*Dy;`6My_iU1Jm)^jhEd0Hv@a(;)ZW5 z(>Ch2#T{-faarFogGe~?QMML%!3ImfEr1hsf{2Wb$f5)MIsS<_?T}3Yp#!_uBD90^ z2C6^>#Dn5Vz!<3K$aA5OoyA^&xA>{3;T(l+xD&xX$X+%QLr!dG++(#lCLC735{bK% zu+`DyQ;kT(8FL!vRC~V>h}*{v)g6q0%_Lt6{CkhHCDW-|9V*-w={Yd#R>y?5%{k@t zY;n1?i0g8%qkp|G=5%PbC^GCC{q}gkm@u4~aEz;Btv)Yo-jl-G3x*rQ){~g)y2%{~ zLLye`$c%lZdN+YLiph`de45$y}mZN#prwP2W6Lefq zekalzqPM4c~EiS2PmL1UZrg#~g9vbumx2+M}0kHjE(G&RFbrJ1%Sg*>G*ff|HngH_^j zVb~ClgOHB1SseeNYfD$xmfdvdN-IvM$}^5=8WCk@dk&Ku#o?ZOyjl^Dm*e^K7V}xW z@W6IWg(t`k2cAYmK!Q~j&Oyg^An%POS2v;qxPk;}7_nG29UOqLPU#|E04sZBI9$lO zu@T^Vfvkl@4UsX+@CZ8x4TrYI8P_J?ic}S;Vj`C1si^vTS}k{|Z!o;pl{wA%nW(n9 z6C6NW%;;a$x3e^~Cp4Kv%(S#-IN#)T{A(i5SbKj?Nei5qvfExA;MQcv2r*iosleqU zrJa3a@G(W(=lSc{C$UdO4tN;bN_qGhks}>A-H*%Nr;Z;#wOiD?tedX6^2%#A!7(-^U1G0Q-D-a} z+mBNQ`8Z;+tkwE%)otCG#Gjp3s%7d_1b?PfW))*T4;q}}<3NwI7>6ns)7kI4p+Jg4QmbOoaaf{e(p#?E}+N-nDV141w z$)sKaFQLzt8T5I{ZeQ@7nPiX%20AqDA@a*jgKiTz&2-8!o1rhVy9Wl64F3SPAXr>q z`mCfu7Em7RboF0U{a3I*1~GCr-B-d-zPmw~Bw>Q3tAoJhpie6-3tZ5G--jGhejJP- z$Pcph2||w|lqi$D5Xp|PHm{-0Ygp*1Rrz6uNBgwqaSZ2IrPk;V>*pV)Xs-_!*7sOn z@A3IOuebKB|J?L6x+!>a%1bzhyqA|FU)d4MN#x0cm6qT*y0GO$r#vi+g-zXSlwjao zBU?#EO!DDzqMb>>1BcW`ss63>fS!$rFJO-ktmXsI%Hn%NbTyJK4DdnfeJKFM)~jmF zeIwFMtKC*u72e=uy0sHQy8L2*CT$z&$;&#BDqovTj$DC8teu{sN`wfat^CLoj4ofO<__in2ykA}KaRHwx8vsC?Ad6dh5i=ISF-uvzCbWbE}cp#IxH!PcVBAZnU4zzHnEXG+$Wrkv}|!u!%eY6sI)rDWYY9Ua$BWvr66& zM>3gHWFC3k#HJv)&u)MWV*@UPTb`aJ;!13h=Iu~((^y~xW$vgUsHz&9i|t!uQ%0cI zx7m#m#kNM*mFY2B+k1n@=yXhEYLmqvd~|emY#MfmbNWr$TqF^`Nq1_$qf>tLTtb|# zqDQV0Me^~$jo;D8w$K7y^K;Y#@rP<;nSs`Jnq>})%{H^FfOcp%%T|}1eDgtINoFN;*{J2yW*JeJEYFx_Zn0Z_VwM%?AAe<*t(Jb)YnD|@ zn9Z1F&C>!9X)zAW5-h`P9A^d!TmS)9=ZAE6JvdShs^rk{l{;>8aj@QS2tTyu-v{4+1F3u`UadY zRG-40PT}rJJaZ7V>v7~LJ_?!l#XX<;AHA^~zjzWYJSy5uE$J0nP}zfp?H^jEjT`a) zjp7^EqQ?i(>J&7Pci?ymtL8A~|7QF>gzH229U2Gfsr>pu^z#_XDfna1y;tJ>{dl?; zxQgC70bacie-ABsz86o?mjqudRz2CXEc1t-WE6W2q!LVrbvP^=NW|h`PPiAj0mYHl zlKEMH1z8B@77>PY!z|7c3{rVe%WW(Li5B96uy&SXc~)RW*1~eMmyOLeSu4dP;eQbtZ%dTVl*#UNt9b$*s5q6Zll3mY^0aD$_ zjy@tJ(y^h_991nM~*R#9X8`vA!o7g?U@-ajD4Jaf_;*mK_-BQ*{9g2*`Kk`u+Os3u}9eF*`Kp7ut(V! z8Tr#b&YoaTvZvTzu)kz~#hzw=&A!CG%${LiVP9o`!_Kn5WnW`oXWw9d$G*wF#lFq{ zp8W&+NA@iH4ttJ0&*mY;`!4%u_Al&T*}t)WXWwJrXFp*7!G6eo#D2{F6LOsw*iYC` z+0WR2v7fX5My#@5uwSzO!+ynn&8qA?w{XUxKSfFhm1_uwVdDlO8ir@Gy_?D39?tPw*sf;jO%lr+6AMF|)j#=XjnMc#(JTPTs}4c@OX9eHS4L@=bg*-@>=@OZYavo$uh&d?&w@ z@8Xy7SMc3@4@|Nz=U4D6`BnUCehuHpXZW@JI=-JD;0O63ewZKONBJxH_52vWf#1lF z^Ar3gev+T!H}hNgt^78AJHLa!iocq_hQF4-j^D{=`Ca_={BHgR{zm>LehN2l)s2hv3Zi zNBocZpYVtHhY=?9qx@t1(3)bN&VXDE}gV zj92*M{0aUfe~SMF|4aT?{AvEz{7d}H{2Bfg{#E`r{4D=l{x$w}{tfdh=ilSs=Re^8!GFkq#DC2Hlb_=+@SpIX z@}Kel;y>sA&0pld;J@VmhyRNInpgRG#e!&(9994b#tn(CuGkax4jVa^GgtAJRR8}ixWsNeWtX0-2>y-`4MrD(-S=pj&RW4Ds zDchAD5D)BBE>(6ZmnpAMb}M_7y~^dv70Q*$Rm#=MHOf9^M!8nGPT8*f~*B*G~EvIgF zUVH55;TwDQ9|ZC`>5>;zfAr8Dc6oK|;GvrxvUu|7;UhO2*B(1|@Z{m62TvK--f-P5 z$F99`|H16FHyk{9bpN$C_MD=x{XcD5*_PWl4n3zW$=YmJB|SZJX1+lmMM<>8wj?rK z>~g+-E5}+xAsL%YFOO zhgUs)5d~8}_}iAqxKEy(N0hNgFneK#SzYD7gthwCiN$w=vO`+^cPUNu*Kd7!&hNj8 zgL#j#mnpwW;(>VS)F&P2RYV73e$;dzCgXvaOb22*n3mfepJaYzu5l!{{7*QipvSB1 z7W~Q$D(KuD)apusAFJHu58>ZM7?tiu=?1HeNA6ShVz}I3B8OhEb~`tSMece*P21QB zHST*{svc#AUx$89qVLkt=LGH|{gX!*KckDslJ`!o#^2iqcMi+)WM;9PF*x@75roBn zzaG4wk<)ca>UO;xvtCMD_ei-qw+J_bUzUBZhC5VS_iEDvjFWb!te;15?*?&^dsy8z zN}KnK+AxP+_~SvXeMMfa7+d+I;8rjW%GlUUz+%%08%N#PlGR1ulYX2I1r#*Bk7HKCZ@G zbR4g3OUl?rVM+hTCo{})xO}p!+JZYgTg?*OXQNlEbmgNF6T*8%2RF64hzuHy3yX9+ zUWkx6dEZA;yM1SxTO+#Pzq(8SJt$M2>8(Z!(8 zXDN4sp1@BoAGF%se$Y!;@xSa)RjmkKG-LaqN9|$zse!=(-ML$tejW8SVt`dEH&Ckq zUQ#Qfm2+6g+$;L(SJQk?g|*^Aev8kLwfT#^Gd$nFfBPLvL|WEn0p5>9>8EMX9gGJn$<$%;{3)hKu4 zCYn(%06Y%C2cqxY8HfR>%$X}jy}@hHP1`PNsA8G`ug0AvGt5SP#mYDeX{H>*+7q;9 zbog9SX?+W>G&W2rz8~EGCf%Me-D-qz6X5SDp|#&d+-47-J4E0|4cp z91M{e3wVv4+@PG(*2U$Vc{IQsm7O59iO(n%sJ|7cs5B?1c`Z<3@ zbd841Sy4s7HfE|seMi)tQoe-Mcn`nIIFb0JUrZ!^5uz4ZP$yj#J%r`}AT<>DZqjEf zpzXK{LymZXV_~iOlid>u`>W`ej^uWr8uWG85!HJKrlA>qk=^`-yT*R84GURU0N^gl z?^Zd3Tw#TKd$lTrTBI)KPo~(6X)_V7k6(pvFD%1({V8ZUPfmuBn3Vc)OTFqo zp?49R)+3C0N2 z3u|yt#3lpWvfAX$G2~Q8)*`eWKuJJkEIeA>Q>5-DtAjZvCTz^^b@1dSjS&P-y$x>O z8>kkgSAky;Xab&f27VwbrYX@o7-5lSV+VLo_<-CBAg-aomXhEcNtBnZ5w!1^KSBg% zhg7&mlt_3>QeS|hbVc!YC9zgUxABGAsih<#1eE$gjKG*=mkxl$S^b8e}PnkJ}5 zY?s_XKQ8C}H~6CX;}kn18lNyh8eEb_I_jMo-QH*})pkbf(rD{Z-(goeAWV>9R~%(K zB&PqSeDP5^<5s+nvHtr%$a4b#z%(#jIR=b7r9TxQ38jl%TN8f%#CX&s$n1V_g?&Ql zfHMA>29*!K`VrKKlx&#m9|5ZG$ibUPvR@a-p+~*$Eha-{PrpBXyTOeV)wH?UX@{L>C8v847Z)p969b8g3YgBqX4XAZ7ZIJ_6>rNQ;e+h~y?+twjA4|B)9 z*(8P(Rz$jVQjS!qgSY7ahVX~%hLM4-rg{q6NF`@yra|^|0fN&GYBwvnaJbj36WG0BbZjNqmE9nM)~T1I8n_KyHFF!*nk9j!+M@Hp!PUn>IHA zw;(DiKWC~yY>{F`XFMfZ}vT2?_#Gf;AxsYTP^v&0pLKKgY5>L%``3-C3REISvr z#=%r=Y%kq?8=}5I>>Wx*6frG|K6oJ=42fVA{}RDy~)O2k{(2%sD# z#KV9Tu}%UcpGDXx)q{kyHtdHafY2g7ejE`YS@AJ_DIaW-lT~ga_?qRMDm0Pgke0+W zUmS@?l8W1@U~ic^<6ROJ!GW1nB+1x`#_d_Yj&Z7(_^=3%#((3;v^_%ExU7=^WS?k8 z$vBQf3f}H;GBHhF!fo-x*G#OVSfm=7cBSP~9ev$lCDC#AO5hsgV zbg|nk<$~7Sa4aZOa-5Y-vv WZx#vBoPTr{Ky#-&38>G1wf;Ywbjlq7 literal 0 HcmV?d00001 diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-solid-900.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-solid-900.svg new file mode 100644 index 0000000000..40679fd317 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-solid-900.svg @@ -0,0 +1,1892 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-solid-900.ttf b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-solid-900.ttf new file mode 100644 index 0000000000000000000000000000000000000000..2fabe0472d8ce39a02908536d8c684cb41d25718 GIT binary patch literal 132920 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

    @d{tV>!*1NArR@Dh8sz~xoR3#0qZ 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

    c4 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 literal 0 HcmV?d00001 diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-solid-900.woff b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-solid-900.woff new file mode 100644 index 0000000000000000000000000000000000000000..dbc1574aede36f1f3041b0f966f6f47e418a9ea9 GIT binary patch literal 63836 zcmV*1KzP4*Pew)n0RR910Qp=13jhEB0tYw%0RR91000000000000000000000000- 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%0A3#a=nzxPj;EeEek-hvbKP@a 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%0A3oRnnoJEAP@ONSo~r-?{% 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 nH* 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 FmqY3oVLJc- literal 0 HcmV?d00001 diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-solid-900.woff2 b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free-webfonts/webfonts/fa-solid-900.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..7b58771dae0ceaa0a06261ada096c293d154f124 GIT binary patch literal 50372 zcmV()K;OT2Pew8T0RR910K~)q3jhEB0tYw%0K{+r0RR9100000000000000000000 z0000SR0dW6(nbn~*BFJYV*xe-Bm4dI!BlTT`r&K(zC(Rsk@#4S;4F z>s!8fMImm7h^C=_tb!eT5w}AH+jBq2{{R2~Uz04xQ11`D2LPj5Ytv|4(q&yY$W4r% zT*y+XtU+cl1VdI1-9=e55vCmqI@6d=o7q zJH!MrK}--6d^mgAj7WWTKNDe~lkAnUgL>2#-qR(5fx z5|yaL1X=0Z9g@s9GFIJJ=Q`|a;?<6SkD3s79Y1qM8nEP+M-5p`rWqmc^bNWZhciL; zr<1e0{CchA*}s2OWSrJ6V|WU0t+m!n>EnZp=6|Sg_GFE*G0b`)Lzfmrrt@UgaYjZ5AbR z7|TAZ(VqFtzyH^Db5?+r?>95S%2QSQ_c}X`e;wF_g^4PrpjhwV|341exo`h!5_;lE zQyQ?eUmQ}F;Se&bM?uAuo-6%N#?wTAB#v+|L z`+!Yz{s7UQ?4$;+Vs!z4y?-uKqZAZaNM5!n>3h{P#-VnUOc_EJ% z9rAxloxPO3&4im}QBs>#(ZO4;-+WY4{Dxj*63RVBtW|g#)N#ny0hC4P593W+?`nHu+S)S3c z_dN$mRq9F&P0I~-4`RWblE@(u(0uTTZoIZ6ZA9P-eXZ= zgE0^RBXirx?P>}c0^piQ^50AI(SQrAfS*=0qH&c-v~DV=m9+DdYJaU3+3|pE83H>~ zp#@;uTHqYP<12loZ-XF{Suja(Rk&!LTB#i{g%|F81Q5feF4N9;QXRev z@IioiC0*WO7cN6ZW4BgQ{rvRU2I+$W-#4{?bDmYIJtgVOthrrKkK~D2VdE8>(+5& zg%}>c4N>d6T>tQSO*a}u56p~aM$-t;NJcW25X&wDLI%so7{&=nyJ#@BR-2RTO=$*< z43Y!LD_e5d5b|^PQVOqoeD3kQ?>*k{n}1WyT7U{qa@^z#(Mf(>p&#YEZAeF@p_JR#-w6ElxyMAQS&z zApjN!56TNPehdn+m7kX#sRe__W&r16Du1?f!oT*xut5RS*0^%i>5p{_0c2fCa7cOk zU%_goGGK(}@zk+j?TU&o@KbvPyL(zo$bnZk2acWz6H*9zV`K-w(Z;JVwkYv!s*qaBTHo?Ydb$vonfVo zHoHtlQAJbN*xc2f2T$HDT2(uC>cX`${eEx1p504pa%=mWk+q`QO1g9_QKmwb!nkqk z9{u`rO+w72afX<HRFp-ayHV_0N zo2odnF3p=M%l7oWhkgrYlaU{-;%5L6 zhUqAzvg&N(f>tYc+0t&$eCsn```pJq@r_T@nbyic+!pn; zpSxh1U#K8uT3_DEG*xmwHp=c!3zXH@0R1PKhtisu+jTqi=<-sk>)%{Atr->0Yx3om zx4fp8-?SS1ce=FXWhg#bUv00LB8nMQ6gHPzNwJ2T9* z&whs-^wbxAPMjp4=GM}hj(4n+X?irwEH-N_f74ewWYwx$X_ZY5JDzD4$)Z^~c5Q8G zSIu4Q&d9U%0ybl_7Cr5BGt9V{#V&5~OI*@Ymp0SVmvwWd(QLk4tk#?D?z%r5Pv^_+ z{&+t60sfr;p)8oSQx;luQCaiK%aVzn`sfoQ*4Vf>Iyt+GsnE!+$v*erqzhc}N>fV+ z765=|mju9C-<6rEMGy`s{2!gj97K_G5JUI~k#`WsWFj7Zfdqz$FvCV7!$J~Vk7P!K z6!Igak+YCa`jJ8ILMGgcY$8GzxCJ@nFuKC)$R`2lPKHs$pg}Q-K?zAh5BMXL5*~Uo zg(zdJC})b$i|j;i*b;phBIwJIKtDJD{oz0iAX`xZXJR1y8K4sOK@|x?HABZBhJnGb zFu)L45MU@Q0x%2~0vJx>F@ns;NTR?frU0XfAL@u1^{@ay10zNwyb0sUdzb*^; zlgK(uCLNeU-oRA&D?k%`57WtCFazF#nQ$X!!A)o;y_ijGn8OG$7p}!TvJ0mX73RZp zSOA-&71qW=SO<$>T`Y#Ru!M}mQuqQQ@C4e(1}u9iN7x7}23B3E$cAE*F!EeZM93ZZ^1&+mS za2akVRB#8OfIA5dcM&o;2&?06SOfRKnm7cj;kU#I{En%@?->d>48OvCa0Kp$4RDMx z<0)dm({LxA0Rf(cm+?n<63>xVJWo!+pFV$gfnY2AnZ)5m5{u*H3%tYx;V%ppyh76P zDx<)gqzZ4rId~f`#yfB>-i7n<9z1~e$?tH2ynqkLZ}1Vk51%k0_!RyP@Fnbvua+78 zMvNMNCrj`TqQ`ek0=_37;9q2lA7D598}7kR!~;LWVgUao1^5MihX27X_&>pdUs<6@ z9|GtGbb{_c6!ZY1p(_vry%2)lh=o3ggPw?oM@S&ygx6XTiOfVY*@F}^gf#Le>2MS| z-x@FND1qZk6aF%pca;)4xU6k zJcR~w42`4*V@Vk%!cI&gotQ!{G8HbP2{vImY{d-Nf|>9FW|42u439CJj4_8+gSlh` z^Jud%AHKus@Da`+Pgp>n(n_AOkUVD*dCB61uM(oUv6RMV8+?F^NG2|!0c&YMNgJ*CPEsUE9+M%V^w*>Fucd!J%heJ3_9Jn9u;sLma zN0*U~5v;@GG^!&sUyi{8JOy9jY4{e;z-M?CzQ!Nnb36wh<9YZ5e}ZrD0(^>>hz@^& zBY2zG@h%bYKH+kLEW!uNdyk0x%*W&cpTIPH3V#DWqbd0uCg2OQ9)Bl|_y?^F|AdwJ z5ys*tnh!t2HT)Nb;}>`n|04_Vf0&55hhO1J3g8;*1XoiGBcTxEL9wtq#lZ;_hTABS zTtZ#oQp$l#D3@GDc}xoBlRD}~{zcsvN<_>wDkd|igcMQ_#*0cBIrU_6sf^@N`R2@v z$aLyW@~ID*Mtw;G^@INcsvks4t; z8bj)7Eb*doq?yK(c{G9iji$h@GVaA*%%PB$>2bTjNtzkyBYz{1-Wg2U)m*pP06#R1(8uhL!Q7CJ~w z^bm2Ohv8lH7zEG}7(jnu^z;<*rl*N7Jd_B!wc9REk8>D0g_3lEVoq1O`!|Fqq1PepDXxr>4OGDjxvKMk%aUIj-0%V^M;aw@W+CR@Q|CyZPRCnqAwDGfQJBj*g{LJYYS zN3JB1AE^Xjq9~bED3|UwoxV1Mfmk-BLLv*Gh%6ywUl}=2PL5QNV>6c-RT8-|i`=Rv zk7~%1TJox%yl5nUn#ixY-9NNu#XT1<3}C3K5+I-rAYvy5J`fDDr()-j0nOto*wp6|$=1LWRO^5EFZ8}j7`N^p|mj8VMP)Y)0e zc8Rw6g)VcQu6C0ia+{uaXD!_$hU@|3?{@l-1YkTNGmNKXmhmr%#`r?C#(zX-{7($V zS7J1#NQ?p!t4<_NQ6yf`BvCOWNg{N`aO0ZWC98`*WioP;Zyzb4Kx7% zKov}Y1~P%FWP+)%0Pcd5LxfOaM2jFw6jm`5i(|F~W=Wz(3f0nRlEFe*EG~x?<*~g2 zzN?5Ml`vX)@Kp#uRK>|^I9(lQYT#;3+^>a)wed*@CUxSoF8rsPOZD(Ty*u^M{}TVR z+U@Ixz+d(H`Dezzf85Z?&pJei}JZ$h&fza+I&u(7^lSx`rCNs}0LZ#PpJ7l?h%d4BmeQRE(q(AP8XZc+&u6&2iD@yaSS&Aw{+2Vtr)(B! z-whH~@R>X^7|*$wo|pKLQHKMpG=bZZsWP_i&1f(L(o)?wU4d1nA_|xaA~xM0(uXQfoSE-xjk3=#^Snf_jK+F18kMtD z(xyT0OVW%4?OjDGt&Kl0MygbFPPw9R^>uMC{%vIVoR5qMB+u>xX*d6A(8~ zCm2_PwH`e*F_JJ$dJgCKIAEGNFW#TquhNk{UlQ;4RKhJ|w;_%sPMv1mm0MkkM-X(e zJ{i+XfDbs7Q8$3%XxTLL0MvbkhWAcq@9|#0_k5bdp%^L^W&o`7Y%&!C2#Zi|Eu^Ft)-AU7dACPQs^Fxv9Xu(f?4-lq^&Jivuf(YT@#as0{6#*p@M2&A9$ z{3!(RvK)j6@T~5uUY2Bn4A*Hotlp=occif`DTQ0uelOcwE@mbyQwmv_YWNkMHmsaxCs;XcPiA@PCBKGK$q}Tmdrf?3{On};8 z3Bl%2KW%9hE_*FlED$3o6u1XvCfYn#tZ$rMvYP8!l7zNv#{2#a3)42=9pq#nm~&t0 zQh4*tDb>`M?9fcW0>at^k`4AZaXx6zktt)MAVpAkdwdPL3{O{g_T5VE2oDISH?24r zNK=O{NdVB5LFCigwmF*WOCCZK;Exse1KJ+Y-hadisVlJs;G=yE)?6+N@0M>c8taS~lIFVB(ria1{SLQ~f^g3|(!`G2DjnE>6aK3N z-Bc+#;Wk?1n!}qy)^7QLw2St1SIc7I+V$GROVX4IO2OO!5he)LSsxBB@4tL(VT}(k zrh?Z<6hVhIY#NX&ezjS&ZPS#)r^CO%KqCaFfj*s|*+#{~yKc!d5O+=h zX9TJ!Ij3s)-!NZaVt~w)+Op*|4V)>PFMBvbpyIfx>sRULcVI@d@#c$W&&5LZ{PMp? z-K|N$C}X~hTy$Qq_xmo2$6d=%m^FDu!<`4#=w^#C>ZBGXliLRHysSqz6zbqgaMohO z>D6cA?u0JYoDyT@C^D9#YO4D+@edxNVrsmq;+==DaskJR1l{Qe+a(2!R&5L1;_0rm zClPMV7@CG%+Jy?JMiOf38j#=xg?KNIA)R<_B%mk`K}s$7ObNwQM+uLVYRg2*S=s;_ zU?e!M$G~Kr0hxqsb}V|_+8xkirbP&UB6#OF)_-y$l6$Io>*c+tpn%~vrOdw+nbdtQbe4j zWT0Z&W%P3+u?)O3)P5i&8CA*Ej3cJz&@*1KtsKrKnI@G_->eR7&b2L+e@>C7@k!j- z9H2Dqd!f%dh&p(nq+C}^R%)q}z}6pa{nS=@R8vBMigm_ue5}6UiSHdUjmm4)w%Eu? zBT1thZDSqNo}^qiA-ieZftULY;~Mk8+cQ1~QrrzG-`CSwAGLRPAdyy=terwF-tL%N za_Fj#(cbRXT9=7hC80!cM@+=s(AnGPRBg}y>=f(aP8UDu6ExdAe$d3gs?Wipb%8L7 z@fH9whOxOCt-p6F{O8N-JXkffd4@ZbfM2T(0fi}-##5rRM8YWCu$OAIlveS$lIccnh_|#~V*c_kcU!KtyV%edhH+9q}SFfEi zFYPC5MIpvIwl;E38M9ZXura{j9*(=}2by7@Vq-V~Du=fZSfB zsANlikYV92(wK}JK{8U97wsyt7@2lLC{NF#O-`Ti{6XRfb`N*hC5x;+?wAI~o6g6` z$Ajec$uOLej}UB89y7F(LG2K0n{PDoxCnJOJRFJJFy?AQQOT8_Z#M&|6$`Y1uH-9U z=x1Q7#yaL6y456k(TY&}TIt|z9>fZG3lS+Ao|&cP+Si&bwF=}Oy0(l25yyOcsR#@x z+52vKVF=iQXTG!22-YyXD-q3CS|-(*vh}jajK-RTn^|kQ@)z~^hbX}iJSN3n(Tz)M zcmIKiG(0>-%1UZcd&Rc8R-Rfn3c~)C+S#hLvx`3%j_5|2FUqRY6woQ`fM7_-oV5yD za00x}_FNZFnl@q~$W9H?bon&-o|LN47-pa5jAwh>9Je?PGngHjXb4f%=0cD2U>JTKPNo>*AHGh@(HL=X2rMcM^IH@IeZe z^!qK|AFU4NkD;iG&4!&loLI!Qg2nxM_=ZGhU#w;(x0t%7=k3^jL%X8ogmgHi2HWIu z#CVb=sWaTp_S#aXfuAm&aD)HOr8PxMz2)%GOl7VNt2ZXO-nrUF8teYX%(1Czt8{e@ z>0GW=7AOB1ugt36>8UB@_+)<4c)-g|QR zMI-5$&YI*`a%tYTW4gQ&1tn?J7SQRuHB@!`;;gIxNnrx62nf zrw?S))J|4#o)h|Iua&Wj;D(*YC?g&j6$6kb#asuVOXxVYAbAorBDRLp++3t52cbp( zL!VvhqD=4BAuH84t17f$m=Z~W#ZX)wNfDJcaT6@Q&Zano5@$o29%E^(;kWmej6NfSeG&f<8q^9^{8 zV43n~eZ|LY5*SuXh4}jp8=z(FL=L5I85#agwos9xiKN}(plMla;Qz0Y7LfvvJ8SF3 z#-7}e_6)lG8IZA)Lrb2Y+skMB*=5g3txfDohU_Ng(=|wx2Bo<)?UQ|aJPO0! zaOlMXD2=ySP2YHQ!rFckDW-fU>;2HbqUE?Ynm|{(VdqU>%Hp~UHoBu*=LLJVFr=Af*l4**3&4HI`BZ-ZNsH-a_5B-? zETM2lPhJS<|KgrHTCR*fdM7~s}=qR{AN$iLkDG@)Q72Rs*qQfUSK#v_qg zq5M~%PCMG(meD&_6xJ}}{R}kb#os+fhJdF?dmu8r&KkRau+*b@dp&87M<6j~#w3#= zE91WEOs=p-Ba=Fraoj86#DW9dn-Lk(o`P2BKiM$@xdmBv$sj}YBA1{)K(lW`Gh?B; zUN$A*z(&cpS~5^QcxJ=k6e@yO=BM5pqR))q{~uR_Gx_ai2q}oKt<>k&%({M)lmn}Y z#MP{f=g*bGL%^7$oX#m0JKl+umKt0f&|)s-Yo*sd)n!C*M&3?ZsjSHgv1bV47<;I> znbTmKo2z%%7ao9pTJn(3BC*ukjBlcKt-=95Ry*4QisiZLNN@cnSuX#1my&4$iw$s? z(^Xy#Y+!(pc?qdArcwRz1bd0dw#H^~t=yjfz9lEc(DFjQmLKH`*Xt-4HksP&fBu`j zZ+aG{E0$1k_e!9Sju5}rzsxdwzGQcDei-x@=Tq4P7kfw|odvdh; z`pfGrHO5Ck^n!;@ng3SCl2*+Me^gdF%VtLVHD)+fOcK^xmH@~b^dpgBGyU&}WL+MV zH%V3Rof4XFDLJfSDO085R>d0B(zHj^yhBh??HM_KG4lBv5GZ?Glz?-iWg&XfSSOgV*%XK*b^W}Xt^K;Rp(wHDu} z6X~wHm2sJ=sb>}|%A+7v?9sN&Vj;ep!(@A?kXb5XJq*}kBj$k7kg5ux;D+=T;{J>~ zO{g5sPhY*n+UE0a6g4s6$75&`_m^TJO8Js*B;A`Rnz1*CTO+(hKD~dQBDiq`J3QN| z1&3~756`{}F6Vag@Vzq-^6kT>&A%Jz^3j{7Pv<_Mfb=*B?Jn{_wV`F}Yj)8Ei$PZ7 zflPXNtJu#r2nlFIp0n-&pEWqykahXH7&>^G0|W`1&bC$vO>XB35eO@r88uIwOBh$@ zl3tr5WYY%d!znSSE<%b&ec*1EWKkyqfNGbHlZvhwR^PZD&=!h=VBw1=GkpqeaAR)9 zoh?);8_t-fK--p9Mb#NE#hwlL%9nITbz%AJwj5L<{ll4%2`efBnfG`j+ zFj5r~Z-93PCZL=U@Z_iE^d(@-F>?@K^Hqoh;7?~WYms=)5ZGF5`pMCVCt&aFcsv5c zMkUqcIz?o(rqiVAzEjdcLw1DujR0wTXPdp-6llC3z&<71g}1^eif%U++){~I-_rQK zT~$;pt97}m(Fm!5IxQmuWO^HVY}-#9v`1F32#!@$IRxRHP?%+Cq=VvyjC*8-pv5Uf zh2%W&dh?!%i1(iWLjO#Wz!gCFsH0UA(p#9Vh_^)9Ol12}kVENGkgF$4Nc{OA%9D9^ zp%BP4{oZjSsn1g=$UZdO7P)`0KOXAB=t=%N`&h!XtKgND#lm1(F#PgJwkwX=skcJ0xS7Ro43b;{$)@V%SsnOV1HqsJ zT3EFZPA?$*M21)ibVq^up2b+=m$cwtJ>k7+D@&p}nM1Te0(zj#gGVcEqEg5?n5%g? zAIF=+7bS)hfZ|a72)3bPjd^H`(~Mx0-IYLc?J3=4<;67l1^e#DKib(8+edO>@^qe+ zCsegrzOPT%bqPSE&co|x6Ty)nsyYYHdjLPtV29QhMu2@DzTWYAZI}-MnN1(0TZ&d^ zponwthir7I+asOt>Pxk>5O0nz7QK91{i^w=Ncag+ylF5z1k^j}q%{JBRbZJ|f#H)W z0&a*54MM&n%v43V85v*P$3X+xZGx>j-c*SGz8x@c2VmtD-p_|uF9D)!$-EU2d_7qa zjeDwBfY8P{qKW_cXaQ{ExLC8sV-y(eP??%4B^lnoWYAqO;CJqzdRyRS8)tpoRp@xXh@ z@0q?t*S~cto;(x$R7FoV)(^W>J9`{|?{~w#xBPhg68_&>d5c~x z-@NGh`T4i@w~6wE5_WH3SA3WpS$<@i+vI>gZiH3DB;`$?$u|pIdoiy4z$jd5yE4Uh z$hxjudg}exr@dA+)wo+BYFlqzjQ=&1`-vRG@TD#4h%b8*>_#_x_))mCWe52OLA5lK zF#B*nZ*)aI6|RaTa|~V$j?(19cfmpnj8_Gb10aE>S=0Y>{;~5Bq?{0FVTN(Pe!9_@ z`Y#RaY=%@vYtOK}7q^f||5XVo5%2w6V3fS%)(ed_$9n3GZuWz#6T*noVR50sn@%EO zCSTDM$Ru4nc|zYzXB*{Wu%}2#a2FmbLzc^dzLv4>Kb1{>xXQbYY1-TP%)&r8#^9Oh z!LWz2B}GVn4QXz>V6|z*LhHFDjRE*FV-r7RSDm~Us4lrZPfANR_xsZ>f4SX{lZ*a^ zM?%1%RBdO(cRFWXVQ$HH!uq(M9AJc^dn_}dQUri1&1CUx7A8-9NnjZ=Y6E zXZgL&&c^gnLHa{6`E8R7SCVfJt7nPK8oCpytPIj5YyS=RXgKJ9&{($lr#WCeKT~$O zpL~i+-qy|54%K?>-KP+Mi^B|A%SF=WH%-J;>kN&o8?+`po0YD1ooL&qD`0E>Pm+tM z)fiigdX`xhrs!?LlxA1^0_@eXQc*ZD>;+0v(gnd#hJ7L{9oLcfeiuz1bx4CbTt$V5K%mevX{CPe!?NJ_7t&+HFaz-Fm2UjB zJWaZMuu-sFFfDJf7Puy45Vu=_x;iT)a6{fuHvr)<26;*0A9Noh4=z348Gsl0-#z~- z@vEH`Tf`FghsJngmD??X7EcKT7(vAnZ`Rk9!#3bKzE?tvUE;gBbPF%ORBs(Gt@8ltKDKp(1P-$R*iTs$Cx+yaK-onAVXeuLH4rs!B(X|m0BOQ&1rdRDg!r&m z_+EIZW#jGUYhp_S=eMD-w6P)G0 zJf!&PB`7VPnIs!R-RV)ShDzbb{ca_lC6Z(Yllq8c>w+$BXbhQfmlECGpvEd2BNUe# zLvg0vUHpvc`-WU%1vw8R3eI|Cs7}>NAD~Lz;UI7plJc)NBJTwAZ6pwKnwE+hG1}HQ zr+#ny{UPM%c?SuG>WiDtdf$w^%r7roW=Ts@Ev+jGdd2OFrAqQt(2Sg1LKUGSZ*S_D zm$%!#mMk{-1@7zBnP97zhwE4!S8 z?>XZ3YXAaxN2hC)92lN1+~%9$8sv*mI6z)FLOuu0`02wSDlCm6B)V;BB-b#7V zIbDDPD4n3R9TbP|3ug<(IGWQ|z!@KJ7|L+W{LlMzoC|o6&Trw;@*0}SX>#hkV{W_7 z!@irU^&`An>!VkUzt2o}G*v^7#8BUXg+QVnGh%Eo^_N(a;kjyHAWwsz)eP^$2S9)F zL)>789Q;EF{E}YMW05SvQiLVVDIr5C;JP9}$SoH{1HPqET{&f-aouQXn~~m7N~oh7 z`|H;+_~>YBeq5eZM^VY5868AK<&#$4BCKi#ItM4%F#FKilMRXf%5!R6+@Zx{{e5NB zsY7Cn(FsXeP}f=M{V8QH5*>tM&R|s{l6?Nwm2#6p%jDABR-gju#7ZZG&<@nH2{pmU zdi}sLq=-t97n2m<>TckByAivKaD|h*49Su7=*eOElnfAF>+h=>>M5Qh$cbEED$APr zp$W;2^{5^x^I@69;0DTl7(|>bPPqa8t{`>}0pyzes%*DFA{cC~{|R?VH`~>Ek5W`s zuL+^Ha77KT{74O9NaID~a=6IqU1(H(&GWR>oCYiEV^WOO&hoOs^Wq8ccPJg0f>~z% z#+UC1to}u0+(oy)MR7aNw$#87T2+OMEF?Lc7BcoJIN_|g5o~iZCj{ZS%nzN+8ke_C zCBvBY=9w-negmtR0|U*koz6E0jrnqt6LZr8`Wslx@BG=@O*pQ#c_^5{8p^Vk7jg)n zCnhSjN<*kIeH%P9dJKuwBE|2W@~bSaD9sZXYb?q3hM6{jlx`%ex7ju|Fxttn4iypn zOd&2k0z<6#e65jGzLrU+9ySbE;z6_yb)nANPjFDT>4X&-E%sVlIw@=Kg1yt|F68X+ z9mLX-y)|EL&s+516SRPtcF{=uqh)$Qru1;GcqG3t)?{A#gLi zncpzP{

    f(5(pa-vWjqNYYMVC^K)Ik(>A$%6uuzAI5J1Zo9ZpU^n!5-&99w2M>3C z3jMrVlO>z3BKmgHeSG?v3Gtf=|IsNWciq@Y>9_RoF~4@uVdTILQqOdS&DY>v&vuWn zqtxB*wCTE7RoF@^KcY-1*l%aV2cy0EmV^>422OM8ycJO4Yoaa41EFt263mF)$Vt8r zO6e~v_b6J#R)WY6?Mp4QDkp_aO=#K)EB>;y+x>=?}uNK z5BhBL^}D3Z*PULU*89Ig`FGGfh^YU*yBQwRSLeDTdZ(fNmaLRD!Wh*&87f&Z>`;bu z&CMth%9z~P9~lbM0O~lKY_F*ka{JK$^OUPKgrK{UTN2sdR!MezkuGHjL?35#%#%w4 zaZbRlM5H>_7B*?k^MU{&k?$0#&Kl+*Qk$48b>(n+w$v0FZ6h;1A1vOvh6zTf&2Vn3 zN+R*uvbM-$Y^gVBOY^kv=b z;M&&L;*)U?$>5)@&#~5*`>ReT!jb~X;9>!t^hXmaQm#2rFQLEB)wnopyq%12*P;^a z3D38*P~u%imAv`p(NkXr{ zI5k|gc!)1~YpbCLiy>DovLuYvH3jhlQ%)X4R&<{!#+dGJHv7!v``AKU!SFD0grzh< z8VwIm@J)ibPt#G!8AYK3;Zouw(2SoM@U0G*@V){53x99ESJz*z~g7KzjzS+2Hgt1vkg`6njZ33DUjoU2KJy*&t6ez4x*Q{XDu?Ny6!cio!I-BL zXg=n`wFh|e4MC1}j9>6-k0Y4jjZYVLOP9(VUb=Dpyb86MspoBfkiL}|reF2GxAxkj zj+B2uWoq>5-n)vV-o*jiSN)SMO1^ygQ1_3vAQk|VhwNG)SO@%#*b}fGV7_3ObzO8J z&{YIea3!n}?%a8#2z4NJhdcO|L4&QOassY;1#{)kR>xz8<8YbqJLH4ny`q)T6jP=1 zB8>&k_Q4HvB4hdRL-rR{1Hdh95H)_?J=>1M-Qe@djkBMZbkIo;EOr}iW^!6@%z3YK z$&YuDA|!6GR#_(ie^(m7mKU1=I{S?3;J{)?QXLvBK*)Cd1Cg%yZ4*>;1^F2uev+tT znUx~KQZo>IrEWk)OC!UknMh2)XAhl0gvQao2X?Q%j8GkzP<~eC_NJ3l8!V=}KHv8- zl*A?_d&*>HwI4mf+>2Nk_MvC4d$}Q(=APv~AtVPP5|STEvt+)jitNcWhL_$&}1ytxPHL6SGCf`fz6B!QsCV6(Y10q$Ccf4!a){+%rAwP za7nEAO_mlcbra!>g@)Im%?dz(2Hc}NUAuCoz<>$fz_~9cXw1|#(x(z$!X<7Z3NIIJ z_UDj(tCQofSgS_$OXX@MPi`15l;TS^46D5;Y7@yQRje6~J6C7_OP21fk5O&D++2*f=hOSeIv;_4GZW4k zXe`tVgLQ_OK*?Zr011Vi5KXWeY0EY+Fioo!I~d>&+7`eM2lg8Vjp{RJrt1U-P@M;>flWvmn-(o8Rlk2u=H? zmHyDjhJh*YHu{AfJ?QsKwy$6@faFy>^Xv^4Qz9 zhj|T}l8D+LG7LIOEji!3^U_U4#(G-aUrJfnZ%X*e>D>6w*KQt2+e58Ay~ddI^isJl zKl0Pi*LRumBl1303oPq>KCV@XiK#5tsh8=sH#BF3{j5MLD;R5oG?&${ohc(k0yyJ< z5dd{8#d^JnD<;@GR}c<8Un5Q0{X*T4l)1LRRdXzRL?5|9$gHxV6)(oenkYEC8X=YX z((<8cQrKtherxW>)g921Z1cpJe|2N!pntBnr_|le6mLn?>7D=+@j1;JaI4DYGNqS z^ukC&3I_?AEZ*l8(O!ez0O<%!#*(F?B%)0Cx>+4+)aAb3`S;PJJeYnp)~Gya{+zpO zb#w(Hf(ma}Ey_(*8G0WoP1phwC`(ZGz)cPruW$<0A;6;^srW03B(|T{Wh&H0rRqr_ zll*#CUDAa84n)t1{Y23ikW-KFj3D+_rHm13T0Ux=v)B6>2n3WbASl(H6e*{Z<#`T6 zeLEk-npU5uzhBJf4;&2IaVfqo>usenK-y|9K{-w8UeOEBIFbQESG`~?kfbtn@f5H{2yThX0s^#LjmNC=YRtz70n&keteMU z@}x>M(`ledIRcWV;=U(NgsV5u1>*jr){|iEVFcl2vKA>rBI6o}#nS3wqF`i8K2xJ) z84a^0A(MRx$6Bxr6*QC5t7b%DMPe=mGD0&{=W#zMSylB`dwFfzj%ejilNleVa$)Il ztUs#E%x&N7?GEE8vfQKTA5HtrG+6BIwEJS7XL<~=;nCs|mO4~&`4C6-pz1s}jP6j2|d*7N%s%y`Pl)y$JynsG?tYU z`(pEq-C!1szJ7e>yqdc>b`oS)s0Cahp6ARxC9D&oWXl^X#k0S6C@1`S*{kPZi>y;C zhkhY=9Bevew@+wDs8I2Je*9XtMT8ATg#lwuQZW<=3A#*XZl#@YVb+L9doH6B!M5GD z19ti&Vm?ZhkTeJ6hQJR7b96c{xi?q1zIF`A?ERdH$ry+z^cT;Am*M8(gv3i{NMmPy z(jo-%y~SA~tU;w1{WmPL>Rp=;xPzvF_=IFqnpQy>% znkO@KE*1c<)pmBxX0Xiz4KJgO)DXELJ9?mHefzWO$$R`bA(>dzvF2YcP<^WtSAR`) z5l{I97=K{)Za=I0j@g1aeVR;EK8UHCY4LpZUw0S0Jp*W?#-b7Mw=VCMf_~5LY&7e| z|0k1r6_O}>3QZ(Hk&cSy+;#~gq~pTvBUVo_!KTkLyl6sI*e%nx0;-c%I_lJD35qE| zOMVFCfg}3Flak!BAtLbg>;(&w^@;Amns(N{YHtHri$U=e)Y|_D^G({on`)CgBW?a3 zYoD4ZT1IIq%iPB!$-~2IyB>fTCrTeBydkdMl?ZMCQ5!_s=!NITjR=n(Hjr2t(SE=- z{6JwL@ajLuK7_N)O2tTde>z9v^B#eTYD` zyBz1VE*2OIrcX4VQ&Bmb>yW0otEAY{zh|3L!lRj^nqoC+vL$3t`VnF^0@xg}t43l#@N}gqQc1(J1w#8(~1J-1P_fEC%``1naw(JJ) zsbYc)vju8JqMQwQOaP-H>K?%=tQru`q3Rg1XPEIaS)M=)RndF{l2Mvwgxq~KSvE$<~!EQDq9e8+A&UAb-uKm z2(3!@LzXD;2yF!v4cY8*V4*5}Rl=#_H&%tvZsOJlaT>;61}IyXKR^m&gGh;o=TQg* zBS)g>?d1lHnXVHMvK~Pf4JWgR&hzoMV|f43qx@ToWL9mp>d+TErNP!j3Q~^|BXEB^ zw=dHgfTUab1?(Jdu0icWeCeC715!SGTX)rpca6ZQct2Kq4UfWUCVG(xGr zfw8*e!=L?EautM-MT58)8MS zuKf*Fp~0yf^P#jy`h%Bve>VhofcVk`K)h6kU@S3rL^dZnE9=z1X?^{=^v%uYWj~Na zg&ysg$faJz(|JL;s7z_Ds#%J)jBuoJdBOA%?d^V(bg%A>EXO1zhGF%MZwk6XNgjeO zPw&OwTA2Ztz~a_r`YRg{H)K@@($5GbV|<#~bd`C|qQ+vxq}QzY4qyESXl{obTU|V0 zkil`{mZ9#fpQf+(fflYiUGQ;{6-SqS|fP0dsn#Id%Nnxd?LTmxgh$K;%-L z5Hp;T5OWzV7w0#vpVl9V0l8?I#Xe4QDD#pAO>!Ehlj_YYP zU;&lBG}m;PGgO+OlkBPDuexjTk{hU+2;A7sqARK#*$WRKzaN$~B+CkH43@KDY1IDh;ddf$~tiQ@A#>*fDB90?PJyN`f zHr#pVWzr(xbFjPK`TZp*Nk~;Zse@S=3T2C~jqD=aU;n^n^fe5I&y1E=zyyf198Vp% zqMCOe>M!_6KRL;hhI+=GH144xFdLCPuZ3(6ooC5Fg<^$}&7$TVDnbilhYA>)`6oTd z?Yw$~2Mo|sZkf|aCAaopj9Jp4s6j>~WknNt-b|&OvhdNa+7xTl-BmL1hRA_l+LIHf zTgyOJyxTb2goqAp@;7$Z8hy{|=|_|$>it{s<(%zZytbw$Vsw|Q4$pHoi$Skuyd_Wl z7_y2Ze8a|jiYsaJ_sK15XbSTthj+wEe(HP)K691ykBbUnl_&rQcH9 zS#e9Jjj6!OcdtxS>;RV~p-@!wG(;gN6nMH^9$3k!}OHnl0N2l639uba!vThm3rp7ukRNRrenaip)~zlbD4XgHQBk-Bkm zeg9A0*rXzkOO8+=^|Oer!mYRWOm-2bf9^Y1RiNjYgCk0%u`dyhfWl*xMZq!bz-%TJ zR<4I2$g71sKFv=SB$xpml!n<69OgEHNv6@Crjd?1+4unUZNdMk@y-r zY(((Vtgp`1=SxgiOow>n=p<;Vk1+cbqGa6yYpg-Jz#}vr`u?^08aJ<>`p!9+maW{c zh&>ZhmRa4`$w9e{`B(*tpf=#pkWvshNS9awGpHY>Wfds8!JDIi`=M$9qRBuH$SS9C zJb=E-rS|!lmn~|}&az@$l-k6G(*XBU-Ga8{v0GR|6g{>U3RROE%*;G*=$dw1-;x2b zBb{gY;#zq83iE*|lOy@7-OxaU-otC%bUn(0l;7)=ejG(E9gv~(@VF?AH^5cNJ-&*i z*1DHWn8Idy!t>!O%87C!)^_}tvm?tkY5j5k8?4pl-!kwO5Oej2usI!GX}xd7JzJRB zCt91e$7%6baCvq+ar>PKdJD4KV93D-yBEIc+8tVD<%0{}p0{?*ziX+!r|Y*FM|TX! z3mbpOTAL%#z+p`B-)(}gEwkd&WO?~abqO^oukS3>-J@L)+*iRsdXM`u6k_2#EI+TE zy3?RtGXGBO1^UMew~A%Dy!BPl5>bzjakq9jH0D_SkR7F&Xsq)n0W!wiPQ}+#_NZ+* zs#Jfq?4);KzLE`XyZr^)mE36-qQy9@?>Xwrt5B^IA{1oJJ>fASJ`#YVFkFF$99fBw z`@$0|^uBF>pFcW(5|WQMU2Thc;bC0kZt3&A!)h#w8{Ds4?PTT)wz~;+hOg=s@K)&J zP?IELWw^T#Kx@PkgUkC7Q+r3K(NS#id>N+i3F@gt+gk3{B51{tAzM~DNdao1Lg5k* z9MaH|hHa;$ zH^!8$S$F+bbGMzUvKiX2VkvFr%BMU)kM>qn$n!BJjTjI4y(Ux6-PwW0fa zbm{iT;4$1dtu>LpV~2g&LpafwWS+zhG?TQxtmnqbNrU#@yZ~OkWG#ilbs8_;a0ZX~ z_6Z7U<-U~{o{9vSh=Dz^9Ns5oe=(87-cvUX4%wqym&q`$qFK=$Ve_QWB}X?z#r)BA zvoldx&CP496nT{m)yV;Z0Ob0L*l+z6AVuBTv~UW`GHL zUciv)#8{I2go4=SM`^U2_HNL$f_&$ND6L)LfKUetWr+O8SHyLTj=jhi@3OkYsMz7$ ztcxZ2a5DGV`GY9tw{@^pjEtYKbagE;_OFRSo;Pp)YXDuViHbmoHepDMfYA{blQkbn zwPyB6wJ61pEPKp0ta(Hd3m(O&!@3PVeLxk^OUcS5A@shr9iFr3mIi#t8O$O9+0JY- z@vBM;veT#0&`%4T%pk|)+*?)g(YhpZk%PF){>~Km*+M{iOny6HC zSmoTBq28%T;ML4%3k%C8@r`lTGFR5k#%X#k}ozK-YU=h12CVMp+k26~8F^ zCPE5*|IBhA0TRMVth;;!%IC>Ru;IqW(ZS>S)0^cjBKOI>QFPw|Iig&e<%22zgc2zu zZt{Pfj2CSKcvTcK10TjqYtW3886Od=-7y+RGlJ$@Vo1?I(?)4d$S1X~8bd7gfv8j7 zXr1aCEUriMu-Z6m-hSeH^`VtYQr-VRrkO$CN>U|S z$iz}(!Dq#oC8LQgTx{^ibYId#L3y(+=}Z|zPw+IT@kOG0+5k-*Tb?RXzayjEb=eqE zyF_(Jr;JRt_e!~(lPSsZ4t)v2bJZ1f?-1f^MaztAR?06|yFt&YE$Up=0ueG3#%ZZ) z^060fM$JBj0T5+|>gFPJ%NnO&&%Nok9)qF633J#PWYL!pb4VX-jnyrtRc2qaQtJBr z;#=jO#~d1gW+AtoTUGv;Br!Csi*NvVH??qE7ig4?F-`fv-cVBqJy`i_#xQxTDxXea zq0c0M)C~}7enP)_4k^kE5)#wjvRHNvuY>%G9-53xLG{vP!K7qF)u3s%$@xwxI`T5V zDj%10cIn7SA+p)*(<&dgGU=>kr;>K&DtBsW+U61zEmWyrjl}MLW=5>_xs>$5l`%Iz z#DTFW2-WX1g8-;6;3+xr;;{NA0YOYTyQ0hrreiHCiLTUuH)Ko&ak=l6{AmkR=32na@j%a zb#uO6Q<7tWf=nsbim`n;R5GT3uO3Y{cpjL3FcGh3-fCS}g4*D-AxF9xrP_=KrE_y4 zsdVjNJUxH0vEsGVOZmQX0xgacP8x?#-~Jk;+Wan44=&)r!N`zuu%1llKsVOf1#)HeVVe+ zV~KkT`J#Vg`<<4m!%q}sRy#T((-C}EIc$^Dyv>SRxXUiDXz>wG{V!0D?~e{Yt;S@m zH8_-PK6X&kSfV7Q?iJyWn&`H{vuHm=dZ4Gi85K3oW#Q6=^|xo%S?*Y*d)LJSLud}X z@ZC^)C9m&E){8XqulZ;t_8`=z3*49$)1WCb-FFqNtycjoHnC#+_xRPx#8#4>z*(nF z*EIhPfYiuhm*&LYvN2jCNBy5U3!K2MFw6{GPv?ItK*D+Oeo=BxM0DpU;5{ghd_&UlUI^3xJMrlfLum+9K+lzPk&qG2to^h?C=u{{!MyaadansK!f)i`_F z;1oxSr72^@U-mrZ+C5c0M{~t7Xt64ryst2KpktZenH9U!TK(R7?^I;H#&2rsdi-vU zmx~!OLn$NU(TSP_X}+SB7~>XdWPMMP;7xB2RGKC;9+}d`#B`ubSD4ng)Hy5qMbm6h zSK0rx+O0qDN6i;w*M*)NCn&8pRaZsux1m9jY4NWN)90WZN5#Z90b5S3(ad-DH-7cf zs1k}%e9ZQPr-^#Q>W6UJWq+RSL5V0Ize?VG*6gNk9M0ckWx;7pvGl!pL`k23yX*3$ z1N$yqlx_RVU(05Rlh?w?=BLPtCI(jUD2zws77{R{KkueYY0!8)OT-cDnx=z?%~C9!XQU1~4}ykDfq9C9Z;?LaEh^hw#DSB?|(s|b!oCEJ3F^T5#2dJ!ZN2suwa z2EstVM4JXfRumSN>?$}pGXi)7WoP1#qT^ip3Yqq|+nh4d?Ap*SkSd$?hb$snG-E4K z>*gIUweBkY{P3czkR=69{3GdOTAT@3a%KraOB~S}msB(R;raYr&6obTy&<#RTmKT;ocPB;*@P<5m~W$;b;xaH@F82Tyq56h>Yml4fC?93Ec?!^{>wB_$}ey@1a zvCRsz5uQ!LT?hTmlTw|&Z5O};zzReK?eFanyJg29V|P1Wu!{fB)uJQ0i$bNbU@Xl2 zM$FBzLL9n3UTW3arA4$W>Cncx&;C0#b^66#cM!X4* z8?a4R=p)L$NFu+U4>OI~=ZY;)W9aJp{i?RTRa=ey5ox)8lx$!RaD2XFkVNJLiz4-- z^=r9_88Tyfd1+}_yiDoTx56$H|E%U&PA06QV-N#zH*TF8#VGS+JWfCDE!)dSb zA1Mh=hqCo-av5|?NE+%@Q?-%h!MBe5x1jnC-Ir>Rezc9z9ay2jDHNmdekhh ztU2N~t9(J(%_OWO+p^VyZgLduKZx)Z4|Y#IsMkQt%u5-80Ok%O{E$>HTte=r zfeKf8P7uI#g)s>@AwUg@2m6|Ef)GxSNQ0tI;h_#|U*yoOsW9_Ysk_X!iQq-#Quu(3Q(Vu3d^^9grkcErl85%4*M8Ru(HnQ1UpGLh7O zuS*$}a(#Kk%|co_q@0vasF5~@EVuo4u`DG275Z6mhwl!3=!9e82Z;*JMrJ!-twSiP zV&CHQy3$&v;LvzhxNR?gGi%I98HU?rj&S2YgTmx%C&tbxNB9}0@V{gKu2SU(`qyF- zCj};Qh+fDtX*O4>HlLYh9#-YMf%6Y2Y0gz7*T_Lw7ot|#Jpr@Ug^uNFKg9mPn+wE5 zjw!yP%4GIhw)u5|0t#U}$gJ#u074*nmk@q8mV!0H($WJ2D_G1mwA6E1z%{GI(mVge z|4cYY_!-aS6!IaNw+!MJa)6M1?YZ1kGv-5QV@yCQ_%b$zPuYyq#FEGEaNVsI~6%oUS+b(4>-eU!ad z@2i(%wrV%eA1Y5Eo}+CK;8q))hsomq0&otBh_M!$BDBSvxJzL<9)<*Ih*rs(C@!90 z`BpcG18MR`Q={B2w<>TBoDiOyRjd)Y$jzI)E-^H;G$>Ks@7t}W(OpFFS~S@#TlDoxtS19c!Bkhq~BJN_`?Sbq|PKxH(Z*aX+dENR7E z;-VE~G5Fjbg-aCmarlC)+S-C4%$-$$kE;*3DOv~tG~D3MKsklP>sy}3)YeFj9P|88 zw({nhs0mxs%=J`|6ark05{_JBR*>}YE@@oS5qJWoVbhV_6=5TL5Eim{k#utQAncoH zk#;4;1tJCsc+q0X07ppc2_r}-fB3I_$EQvqc{ZXzY8wTfkr0^#d!vW~@c5<9A5@B< zk;YmA8%5Bdr`QZfV{WKSdbAtcW#k36{(t+!6E@Hrl+-6+(>0N z6R@hZR0U5k8;q}M6y7JEbK)gbBgzc!cao+!Q>5h^{TmV8tn&nG!exiTpwKvfBt0p8 zTSDpDZU2~NgW-mLTale_%Mrx`0!Sj1v|yeM8hXK5yC3p_#eBu>Cd6mE{1k(Pe3 z?TS^a2t(reCF-(`*^K(}U}a`tU}lMkcxIMnN^2J@1uqG!hh=PkmnPm7k{{Fn0b6hB zM-QWKV5l#vXDmDWfB;M=cGeh}@2W$l1<=$?p%mppXUkhxZUHAWE4V8(yQ!2Sic6Ei zF;E~JI*}w4{t&v$h2Vjg_0rkpST{@wdVzX@oZyBnKWz5X`-edYG>G$u`5S=wZ=?Mk zt#q=MOmFSjXLihex0B(Q51?s)XWH|V-*h{VXZOv!w+`>*%-j*XgV}N@uB$ta>d@+Z zo*LK1WkOnpWiAVpZJlZauKOey!u0IW1+^&`xX6Zi%K%YQKfm_qIa7`qBy%lbJf@N| zT%Ss`p+MZrHFK?6s|y1}gp~eDMBf{4hwh+ny z0Ig6Qc{KJ`1N!KY=rkw2+s_+MV~x1@$r~&K_5n}dceLe^{n6fHi+xTV8n#)qb}jH= zwT{DjcC2MQQ~YLrvW&J_P^>CwkvGZ*%}$xH$C*;d)57c~Yk8X_3F|nmqBpcF@S?J# zoq2Na;om z#!nf(Qs1~$u;`6J0LXN!B7MzAB(JdcTM%o)dD>u32uv0((>-9@2GxTFksDYa=TO}e zGGH1A5HKq?_5gkjXz$XC^h_6%587%%$@MH1d9DOmZF0j3~?vU_M@nCykF}+y- znz(>aP}bp16`-$MD}wJj)|D|U?T|mwrPH7b1%+t|*$Dm$r&%;)F&Pf>_)nTkg|j?a zwc1+1Lf|}t*Awi~?&BFZSURu~ZvQUom9~DI4Q~O$WuvETtza>|Yq{W?TY_n^$HFb3 zC{C2ln187@cEM!^`|W9Ao+Kw}>D!OYJt%7bXa}x?;b;Bjk&-(#iEW&Vdu*lt$Ekf5x4a@2UvY`^s|8 z^ch`l9=bs1o^(yA9zDoPZ#BEo-Pj`F0qR7p-q%PD!acm;E&Pz!=y%HJDv2_4Z@|o3 zpiQaTfUpqY;1?QVDF~_6Z6O7uKJ>HFKL4Xr7SV@xYaA4Ns)}Tui9MzpA?#OZ=2Ub|Pg^ z0>z;h6UpIQuLM%k$xh^qPqD3&6`ZQvPx7xd1^BSc>-2j?J z68Y*K|2=nWYC&!!PY|!^sxSJ=XchSUxWlK9E30n>eRz61X!RB1 zeurl|_-U+MpV~@WG4_@+x`Ni48o1v1?OVaS%C(JmK*pM^fB$VY;T*WJX$K%;yXLqS z&LL&2#+w~raxZ}*)@(>PCRxn$7ms$+?{MhP#t+75I4@8`lj5I9QkeQikX*SEfn8|t zzcsP<0?3Ya`;xlHSQD|P(M2W@-io1fqY>YCHrPkS_~kD3zV$B4@nUERW^V9Y%#x77 zkd*`pF|>F7U??mhtPJ@Nt4|WBLWycnPzqM}Z>UqMbxwYZZ7SZ&;$^9`c&xpxVbY}Z z`{@UziaG1VNe?2QB6HfZ3%*fu%^ii%Wb)OGhq?$@J0BVhdmPr$Xp?F7M ztkR%;-pRT@mh4TS~-7MPyXNB3*wU3U7MTV+~FS~t_1Orh9kRY`Llw}nOYEy;T zFHIE=@+7A=W$38Zve=Ml9uLX_3`Tj>iRvXI)=pu4Y4(7SZ(Y!sq+J*WLYgk-XQDy< z25rf)T^)(~$s^q|B7v3V#$Cn!1o$ zJ!3eRHPW$7+~kwjNvlgQ5tz#xpoG4Zy!>BL+2-NmfJ4es1L!Gvm0FqZlK?Vq2RoaZpsX3)cX?s zo}*y!UjbKBmqvDZty2+})y%>cJ*Np8yROZWiBDQt$xdii>l30$6Sz^7^g8TzGtF$v zIeGz!N0B?f2IvHkmq?m5V@d2R>Thl?IKr-*u>k)OUjS6V*0;ZS-aIiZ24{Q@=y@Kk z3?vfq^NRbcB3BWk#P0VOEVYn{SGl<_V44f?r|z_CRE4lw`vyb(ay}+Ic6_vL8~$gP z<(;If-u{<47iP8iM0QGjB7K&eSA9gTvh@o2*u^l{55HrZe)`}Fx!>1(`mI}(>iX5M zzPtK<`K9x)-`A_xRZ(tlPdE47cld0-oqd-sjRe#PBaD^D3NZq|>jLH^(vK;)?w2Z9 zVSr*uw={Ov3AVrJvC=BkYVF$OJ4^mC6o_P>00@s+wM}${{tibrX{my4?UZRkvzjAjy8X5X9sRfuC-cRy)fcIn$=S4mCi}7K;n9emru-Krv(+ z$;O_Zn3zA5tvw5yO--rX&PRnuj@YhY_6E-eD5ctD=MKafG1%CRRaI}_HnMF7t&XSE z<_rom4m=|lMIi;PflhvQAoNpXBORho;4xNL|Dy8z`}Fznqv7XI|2={7MV<0+HRqco z3jrnC$!Vq}G={~NQH8QIrfH}a9hC6sC_9F6#h{e^i-K=!X^;U7tOVNVm=-NP7Ksb6 z&YWB$i5C|=pitg#yHP43iUD>_k@+v0e!Gim0OB5L1DqSemj8H@qMWwY`y`ZpQKvgz zg#QLc9QT+61X`=kQK@p6lF%XX7}M}0G;t_kqH&Da&o5ZwFHEPQ@_Jn*U=-u-*qfJj zk-~`o_hOfpjNH#d+udE&%v5O$U{$nK3S`8Hv<`o)=zLyjZxnScdn~ z6+um$!J>>bu9CDV>y$E984yd$#zP4d{h$!c5;h`SmsLYQq9Yl zz@3>^`*36WjTKz{52Zx2&`K1SAm>DFS-3UQRYu^NTgiy1piDZ_xmcCEGfIVW!MWV{ zC<)pbEkW_!OkvLMD(u`NY5ceH{cipY5!(B${MoJYMvDxa?a>F;9*DLB{wNgPiI2eu zTm&dOO0C%VPIRVzyc+8uIk4{TjoEjp4D>y?sdoY2ouF|{KuI$aUL4$(a)VrJq*NgA z9y!!TW<$Gz6_>0BUv#wFScntCY$$Qf&3PZp+yRHC71-FbK^_qFHn19~Ht31qdUV=5 z8d!6H(%M$~>9w(JAc?EJF>HmS3_%+N@K?3*;kB`VRAW5_Jr!NnuwX7V>!yzh&6Ahs z-WMtQe&zRad(GLXng&%A%ph`P8kVYQ)if8eU`8hws4rC+RNKiZa0;cfs>)Ee5dX$% zU1}pj_6EQ3R(A@tHHI);oUEAS{cd^C1mxH>ZV|brmeC?4c$>>?xV!D;$`#^v z`kLKf;V0jRD(VMGBm2>HkWCgj<iX739#av3)MPe zo!`DER6bZFq*cH<0G7?wZk6|WJuYF+6XpJE#UH!df8$v+{MP=Hx;w5%%i_W$18q** zV!S*P2#t3F%J*hWYr(fQ$K1d!ZcG=)>iCsauRW!NG}L^jB8aD@QBzD%eJ6pHUF|AZ zWs8+?0_qGbS9Ep)0>}OVi*VYVMdE-b;8*fSo1k+1%PO>|wE)rO!CnI)o?z%5ya2im z_Xf()m|Ss9VDC;|ASPBZbEYB|6Uf`y8(1UG#h_(@y%`yZsaxj1-2i3wTDK{j?zy4Z?*@5gyn_h!a211iIR@`$|Jgyh~wb?Ck z`!%xfw$2+`I*N8EY2qT;}{4-P*kX zl#Q(qF&2bL-E>0>Yp**bVUX{t@ipR5D^snAz(2m78%$iM*a1`r>ad`2%ea&HIE*~c z_+?qxhuWMWH=ReA|NOCvY#yg9J@b@0G>C6V{?Ry2ahRGPb0}b`Pe?+6cddvR#z&P~ z`($2Y800@Fj|?;Yl9@Z4TM}n##S_)qoLMRzg+9*~q>Yph`a@xj%}*DIGd-CUt5rEU zDz(t30ptFqBMhso<(3q5^IJS?C@nNN3p>5X^c~b1F*`tTBb^UV!1H@OwOLt;D#yiy zAUEBL-Srv8*cw%{m){f2`B^gLki)h_m2!dioI4y-QW68ZhhFC%1K0U* zjA94r_CYUJi`TI?8`YDu@y#)?`Yg?R8DMEAf%QXhH`#R_M}=cAnj#B*8d-~UIl54$ z)aHk_EU!A1T%t2ssJ!~dxQ%ob(XloC5kobs5f&U4=Y4qHwDgtk&hsZV&hESYw4FQS zyu;xAbFHlExG}q^YF&Qtru}ltuQ=*s%FQ1y+txa-H89c8eoV#vdN~C$j>b8Srm!fd zhrFJCZ9C{cZ+P2!AH!PzbQEv%nFu8*JU zWp$BQ#)M-)N4j-9n6{Yq2jt;M#o`_0+WbfPMQ%G5S8&V2&(AvX>*M!hjO@rnvw*cB z{ZH2&M-t0pu)8vF4=$>Ku%p(wk3li3QS3WBG-e>70i@hNr> zNrdrebky-2;w7)g{WqrAYt%(@06EQD*G2De__t;N<3&f(+&AR-_us#kzqZB)@&^=K zeC+U?7C0nA)Q1&t+jE#Z$_aM^_B9&!H{Nw*G4MCufD>XnAPy(ghuDD?;Wl9NBLs#s zTi@v$R4x2NRUskyuJc{U*JE8=LtR}65`Ow*?)OT|3?||E_TQOM9kCxNuyu{zAMMh% z@7}%3EkJW`rhD5cfeb8$Gk@1_Q8KdJvSv)VhCm4whXsMxT@g1IGk!CC2HostoF!AN z8{Yi$vOYg;-^<*t+deh5vRiYyotk&mrIE)ez>z7#w`h$x`8i5wR@VH3|JZ3AP^afR zM;v4yNSU)}-h9mUYwTEtso2Yl2v>);3wil0O>}t5(4OEo#2c|0)3j~- zi(3E%VQb=1tK$d1T2M8c%e33Q21mqo&eRj% z{27*E`({0nhEe_(-W=3mvc_9d7N(LoG=n!Ejo`&H#(jQ3dio0X4=f?;2lk5U8p+-) zXSqPSB8_!|Rjsw!pYe)}J~jJ6 zWx+Yfo#PGt`@{rKz=OHuUdQ_Nv(bbR2qEVV!V`gw)ezw;y^o>RfH&T6z;3gNd4=;- z%%oxmO4LD%Wt`PvhV$gl1!(XD)S_Dp_QLNUg#iZbgDZ0}O!>jCKAx(SF z(dEX`>FDXA+AK4Xc}3~;6?81UF0=6E0{McMg$?LbfoeM;`2F*gkR9!=Syt!TzM}?b z9poH5uUKi+UTKO~mwf5LyW@Mll>uL$v zXNP9pf@xa}?Ifm~uM?BhUb3$_Z=Gg`4`5aIAT`pc0sLQz?g{xsf4?+yih3=U306rD z=?>~181L*f=xfu`K$rxxL|f|Yt@VFVizz|pLuJ@@XT};#DSG;OR7?N5C8rw{^{f$0 zu6Da?{OmM~sCNdi)0vHC1I5>7WW5o4XH9ZW+5N`iXWhigMcQ%-C8XkMyB4@l$Xx47$)9VY@!J{ zk_2l^_4TP>Bhty$(lg~J?_#HX0WA7c>#1(8={BB?lt{>XC2r%o1IoPb2FWIwceU$-0 zrR(=dSf-_?k;vAP2^O%O^^@-)9id;Qk4%lw6K`-dKtG=YPr#fpOaAbGNtCcAQ;2$( zd{KRjmN3naJJ+DbjU0a(dm3LyqHR~`)5LpX@H7Q_(t8rEpy6Zo zi1lfT?KDzd_!#B&YdBLa)C-7*ArK#E@IU|;?)a%PGH{uB9q@$a@j=jdlql4xqQx(= zSSqo0I~GO?3$v=x3TL9S?6{U1pBq46aeWcTunLU=E*LYKo*nwUo*2LjaE5&!JWn(B zE+VG~kf`G4jpM6Fh>H^DAWUR~qhpUMLcP1gVQCp+#Pfyi*|6TRXDD@Ok7IppMS4~| za?N!Fe2>|bCHK}ajFCtH|2Cx6e{zg{Gx0`KJxS} z2*?u?l#R#$Xni99+ZSJj_HSoh0Wm{DYnU)gY>eezc%jqsL#tUZQyddJm`AQx{vl@g z;~GK!v~`Mpmt&A-kAkVK1kg;vJy2L#_KWks{=rP0S>&WHGx!_j`b}RQ@!7!a?&F^v z@PyOQsq0{bnZ(;KA=@=lLaQhhfa`SXsQN5K9v414sr=-{eTXrCO}(3=AJ(Qxn%TaO zhTU4N0B7pRS9p)eyr^qCa-37WA*i~%1|J3?kYLdHMCqb=1spGdU|CWMHzJ;JMPh)w zC-N=ciPjCB#ledM zUHFTiSL==@(o!f!Oi9I(^FOKICFrEI7%#|L&B>*Zd@8O|L5y!Ab+WK%D@qjaT%T2w znF02Huus}7A&u!7E#yVbq{>E*Gpc=`Ut0d?f7!kykY4f16=Mq4NXxb{>~uBfIX8v0$;j|= zJw|Y=_{CMm2m0+n4X5YHvBv#sdUS9>^KukzyUtTMv})693@MQ);q*K`8g~0D{3NlD zw#8k!-j;KTqVo1Mt`0i(*J@sDE!H?qx?1HUHLeOi`eAjZPjNhBVbyx8H10vq1G&Ow zu^)Qk4YO7lr+LH$fw^<&>ivyJpZ0Jh#6%M2wW*rMp`72j`zSIrHFzxt>zNz>4?K zar6@-rq+-MOCQf3VPF}1@M_UW=|yy$#Ep#D8}~4}{@w1! zrd+eukB$oT%*#I*esFpkc5$wU(K9ZCo5k(c?;BZ6P7B!QQy=eK`sGvRsb;>x>tO8m zF9RfT!-8pHI|wc;>oec_SN!GX=GoP*{TT}S-Z5!cmzP;%{gAnI&p?hrKUY6TtFNpl zsq;qkBYA346J0w%5B5H%Wim>yJxKIoaSyJQim92u^?+fCHCeDn^3^-qJ6A&^3$DqW zM7!mugn)2BSutyS`c2s);u?HJgW1!w2SpwMKEMi8%@Y*gvL2Z!vCO1l2`J)^Gl{}_ zvP>owMKuBg%+c(V$}RnVZ9)%~2VU3;4H%=a3ajySgwA(M+W*(@!iT&moor5yFJDR# z7GkWfHcGuV&!1;w*12_J8cim%gXgHNHJJ&^V>X!@vufoFnGN&iBNY5c^7>1S{R*`@ z$MoCNB44SnwE2sZ-YNDg#}Va(Ihk~|uJrEL!wOU#6Mw2q=jo|S9lm5!u|c3VY+zt) zwBLITE7xJ})dkzO6;!*gZ0yy(WZJ~1K3Wr5oJmK-2%S{7{o(tyP1%dzKipnNa@%q> z1ChpJ9|PY`HPjIw5$hVRUH@%5X^K>s0PFwr8;C9UJ*b=hUJw1k{%^XAnGqlL9y+D3sOy4a)bwIZ1g-iV<^5!3R&xc~x>xEHFcqbg^J=6;BJ z`pCpZW2<|ec66YGBBl_BS10c*KNI%lB)$NVBGDu}N(8B2m|44a{S>vCQ@4PzvY6V8 zQDYR4NUnIL)1SZf#MZjHt>MG~I3KIQ2}DM&^CxA}XXMi=RWpPB-3r1I_ZnE-ne)j% zBn{p0ZCpJD)8MhyevM~`l5Pe(zd+9R{0oxuTDkI&Bl&*5(1HAR*p8hc1%wo zyEHW3a;B1^d2XK60q@VxL+E4sRqE`vuIVTl@MP{L9NLHxVs&+95Nx5pO=qwkZk$ng zRz_>WgjH&;)blve=+cps@ISj6`!OS66N&CTKTpbf*>5|7urKe5O=pu=HubKTkh~qr zh{0Gr|HW2RUOp+cq8ZKw*#8gr%QHg%CCuj;d6iJ!HI&0uu{$ZC4AL9vIrw1@5ZP$^ z@V8L%&fECCZU6kDyP><$WgX21_G{?~9WT7Gd?Ee{W%P6H3dOjuMw9xXDDj6^N0Tcx zRk>W^JBrCq(1C_bbOg+{>iOy5$5)|r{zX}P)GyN)Qobcz#Q7%6W^MB+=FsH9(gpd1 z$KCf!7#k!Tn46CK<}rx+u8Vr?R`+%9S)Nq2auJ<>qPFb%pFh4#xb)ramh9fde75NNzj^xkb2p>p62ZOu(5;MOIgJy%Km2Cx+0)f02;Wj( z{`lwhvf2}T`l6LpNy~c}yZh;HaMs7$m&sRbAoLBda=-gAA%B51_*IL2w#||y`{FL{ zym0z2QSGve&kcR`vFWGpY6HFh+531KBx);!7IgTTC|6jcEqga>w_=umVSUQ}Pk6a; zryS35Ir#bBsrh*J=2*-wfX1;-$S$(*0>c;L0~V&jd8ea6v9g{G{aID?m5qZZ;CJvh z5zVX#sHXUtX)fsRWi&pjI6 zIrc)PPf(u}KS!&v!(3yJp`cPb2B|CVEpMU2{|0Xm^+`R^#7mbSEF-3}z8^I-(bu39a=kioV&*2)tn(As>Y3!puCxD`T9z^OaIo^UgiTWffnN&xN4tOd4Hv7TKlYo zAc}EZMU-STds)`Z4NYF0oh0M> zRdbZ8Q;5T&d6cgPAmf_Ae71l_+xW;DFmyJ~*EiW6N)AkNGF|$B_pi3L*-2|McecbLj_u&P3(SDR4Gz`zracP}GbqrciQ>`v!x1Tnef3s{aLJ@1M zuQ!70D|Z@*I(DZ@)#=3;h&z9CNunj67(3U;?HfBkLQAei0C-hV6we9`UFa59aOhYJ z)oj|c7X2!A7#K!|+D$DZuMCE77TjHGR#Vi+$+2-d#?rP088Ru2 z!>_{Nlg1}BU>f(Bg(WUpF(e(Oht{=2jMNcV#n)Ly3_<9$97&+zdqnlYRU31dbGrJ2 z^S} zB|h=A3AGvw6*}GOfx$0yS2F)2Pw#of)6RvDKuHpi#<$U|mg8r5kv!79&r?;83@RU-VDcefwiV& zSf&%)qH=5#aJO~L+O2kM9=czr;o))oCg%(e8xJDzY)*#rCXfDMInioYSQbpv(pV#s zu1(KPh1L?MmJIJ*zpdnqi`%ieY{YL_4QM!4J#}#|!2hrAD1p5?Cr1p6J31Pd?zlL> zf!)9?yUqi2WsJ4|-ZbC_2y33U6nV?GB(}zmj%8#{PPG+;UoHRU0YRiRkJ`FFpZ8Yk z=9d4mTINlqPZeo4Q`_s%7S_97ePTuX&9+!+y#<+W zdI|Bs2i!yHF{!kt`zKQ_2@#Rd-!+Q-hweMnJKVX4(!9LV4zaj9EQsRzC>fXb=x5O# z;=f}2|K&IVT9=Z%00S$Dc9=zlfah*CMn7~E?v6&_#`mh!_WD>o23+^H8ue_jG4 zQrkwn<7{9H#`WKpHf{4{0Y>BqqS(fM0QjF9HOU<|>HV;&lwRZVo;G)#T9tb=vDM@a zp2K+;xZahBGB`<*%s?p;93e19R|Zwx>fgx`(<_TF1B?uC?l>||(?>bMMU2lkbWlbR z5@Z2%>6E){t1HrNrb4sBbBB-d)(ws}ZlK>&Ee%2-NNcT$)h>?dtB|xRZ|Pkn%TFA= z9q7tjz+A28lF3~C>eu$JfwzwRwUrq2IsuBoN=5~5S9x0h8!W_gKeyVs^C0XSNRSf- zj^qI$K++t>jB85u4=}0gLjhQ#Q+?*{66~L;x;(Eqp)4MkG&px@@30Bpz5s(je7_by zCk47cV(7}2QWHV{@1X3t=Hl#N$K?$k6<*PP*^JppbJ@G?~>7VbUwG zt-%Qi!5r&O-wF`++_&*YC)}QV{!APFfV1b5=AQLaZ9dU4PnA5gMb6Z9)DiXe+9AOxeRtFor~ z^|!kzVliIWc9Wg&zNS^pHZf+V+X}nmuh%IEflQ^%Rp?>}0cyZ`jf-vK??RPZ*gzlX|f7Ge`J=7$2%ZOi#ixzYEo%?V@V?| zY`<#{L1#z*$!W{hx(*M!CLG;yvcK)0R8UU5jb8E?ueiHEJ$7v2EJ6|Iz9C|_yJ-v? znIZ(n$bpLE#A8#2zy_7Xa~$)#5fK*26>+M zTyh8r%ovJz2YvIng-&DAFN&O$v`?RCN+;1p zI+I3kal(L;pcg_Q6V*s9gXcFvNH)=ipa5>0Ct6nRw=_p*Tk5CwmH;sb`1t0a%bVwY zHyTtC4-1JeR)9Dbgv2gpg(lVr%khYUCelLQK?5(GH3BL_dpZN-J{7+cwyL)%d{_J_ zFivkN=aSws;jK)pFDM|pzB8#wYSVZBsHpHBd53$SyD};83!-44oeq-BW|y+!0RH0Z zgkK0FKx)QN-~?UmoBF#36efk=8sg|f0=U71tH@~49GXS8WS4@wGzVwc@w^N$)bF|$ zO-2RIM4ol%M>_f!q;e@t|IgU zl&blvRJOsKDb@1e@uh~C=Xef>e(uBXxO6;$NrXT?0l_WDFLm&P1P+IB&kHLV+J=u> z0(`uCzlj@K=6b*kvuz2Rc?O>2N^0RY-5<)%kg+wcEx9EtzdY}$qK1o95hSnad)h{y zP!Uvm9BdPGkYkW{>nqLCCX=U>D>fR~ltztw90FRaP#=y>Xc2r7Gy!dij#e6LWYj?G zSgebnOCoXwOUZ!S^wo|Nqhl4VVY!C0w2OpeB(1EaB{w+koEydVV$`&%QEQihCe1IF zhZ-#p+ezuf^6bV4TB{uZooKMG)RKy^QOtHSrQbO zZk`+DtuY}Rch{OUif@-$Xoi@D*MzV^m9ookf2Tn}%5u&c>l>#~G5sHB)Ub8Y(e$B*gaEhUUMu#HB5t{&FX|ymW1(*5TP=4?NdZ7q}i)a!SEt39wsJ#J6z(=M@CD=3% zwO>2`J<9!IP2`#%)Jy&!0TB(rA6zX+-V~$p3j1}Q`>&y1f#0S>WDz9_?qB3150Z*r znqKO`D%)UtF$p^ZWBgnmDYym#<9$-{Z|XO^(kIHh%Kb%u;jZ-ogm;|Xn_!KAomN9E z=QTbdD~ul%H1J4*6(3g}#_=H=9IF_=;X-9}(t>7AQ0VGlh{S%XXf#a&#7@JXDNB9wKdFGiE)4APAui5YkgmQ)w+pYx5n(_#dxjWdim`=uqJup%v;Z)O1eNS%nnSKp4Q*a@byrb zYVhLsboV{LFSjD3!*fOvl<}*l+Mb=;lt=oWl-tPnXlw^}djc$LhG9Z3S3XBQ$25og zjGA@YHkg&R8UUfJN`rTCx_6Fx@7VLZ_zfQTiku!C939gG)(9&Up7<@RKr*_bAelzoXa^Xy_#=WBycLFm%Dgfml7>)D|v`guO?+KDyyW7 z@=4SUZt{ld_xz)lZ$u6XA+w(sdm}%T!w^4f!ev2P?a;e;MqAK zfdfaz8={R0QtY})b~yZaW%aQGcS_lUx`V5!jeoGEF;YS8BG%iGvJ0NSgR310lv$OO z1d=|QGc?yGf1%u*({|{)6po2!=B1h!8u{^pk;J<%%c$$5sMTNrsAT5gPEplTOO|Sz z%8M46oioQNvPWD zw}azd%rsW&_?4UHz5OG<|872fJp0|Z6!Xf}hB0HQk!p&NI$?1MR=M~zC>Z$L2C(2}H!#Hpr!TxBzOpdAyV6i5XuOGBrzV&FG%}7926B9` zP$LyyK3RxPr%7MTh||nK4yxo@>}ZOR z!~b}L=N#=Wbm324e;eyO+dVDd>Zo5k3vIx)QAJ9H5BYU;c@V^&%cJj`%Z4Boteibt0&n}EBB}cN%+mP2 z1zDQHxYpZwt} znk3*6rt6b7E>L9o%t{*UY);}D=^%}x-4O4U2`Q49t(3VrR26dA~VlzcuVLOlCw#1twMxcFrF&exHNw zVF^sqh>S_YzV7}mahJz{!Ay5yE?mfTp_>f@1?KC_oTh(WLR7{mVR3SOvKYpNhyz=5 zw@L<7W-(qIrVm>VYE}(^SHB%V$KBKN_Yh_?ikwray>8`a=bO1(&6ZaN+`DqH{bF@0>_{;jlBGAAgfQ7vmV$ zuA0>BkR6Tyj%Jn}i6iLo%bgWNwlRN#9B$d_hg8gNn_|d$IbKhQD?3ulxcZtRro6s7 zy~aeSdrJ;4pj@FWIJ~#wFdvlnTQ1*bHL(U5D&qe9C6T4Id<5)xQ4DT(p&^G!+i%}?=- zZTQP1v6Cf%Az$K+1-IT+h9n}#?`cJq1`JvHL$a6*;5oKxHM?{qOMo`j4^uX2adld1 zaV;OC2h>zF8%FvN*x5x5_772uYlC!IFjuB_WLwM{DV}1=48;Sgar?=w0h%TRAt#-! zI`*y}BZ7eMXyAszjkxcMMEyf`+ZOV;pRpWbO~43uwH^U|&~CzNgGHktjH@`lW=d4?+=U zx3P)ai)xDwwLRmrus_~gFP&zp+YeY21mgbvZjI&pjbvcvvw9s%I}wFS7|{1K6g{;j zAG^{d9Hp1ITk==?9R~e0h1iirpsm=z;9{=m?Kt7*7;g0sc?kLL)5MdaqI(Q3lki=o z|K*7149pSds@VJh&Hr20l;|lWG@|=}&<1yzrvWJJtmNd!r7MfSScUVa4i= z+Gqq{X2|9iBaeVoF^LKBLODFaLN*~;@d>qF1yvQK+FZFPFN`YP`y;EEsVZ9pSkg6p zx*pb>muC(Kegt#oxJADT1|^z?dSh~K8ML*#@|QFzP36G?l0d*M^GGEcqm`!4#U5K{ zancWC=f%r)bAP#aI&)@u#oi+?9sk)gK40P*$kw$=_$xgg{5d39706P$N`|uGtcq68 zjI=b9!9W{`S6H(H)lPF@j)W#?E40Hfl!f$_>=OE=`0Bfo@0*n~VbBJLJ9iit|H zSrqV)$`0O>00_aN)8&PJp?(z|`s$Gk0cH_dNfgsn1ZBx#k>V4xl_4UBU$R$S2?mQm z0sU71enEkY-i_}b>cYNvS99TyZuy?dZT)bZi+B63;5fo-_!az`;Bv{{fn1-AN(zT^ z3vA%+UEd%Yhchd1G5<~XT~;P9d9qB#%e%WXlaK|EiyDIJog4WPd}x(30@MM<(0oN8 zNZQ5ZaMFu2eac^#XUDpl-tA2XGhzkiC`*bF7GmC_JqR0VK74}EFqMS91pf_Bzz>?A zEfqv%HxN!7wk1MhqX&`hkH6tdXapoGrArLFdU|$#X1knd#Z%%ffj65iFnCQiMEX(8uX zD#4UOo^qW|UIb-hN+tx#$PWq0mqJMKj|i0BP*Y>jql`Nv9Tn?k^vYO@N{0}D0XHVd z9F!Gg+?#+-N^NOLO+w>(+j8O9;_0EG(}S^&*>*a+u;|+G!Z52Pv?!uBP*#9W3rGq0 zSD%J1h%y{_gS94;-IS``1|iVpt96p!+Co_#D#D_-c!u60yq79zjA`;n0W2$HnkrO_ ztF?Q8_VdNx{Efz07_)=dH=Ah+lqL`tfQnqOK615~RCg>DnYrd69g%@_lluRe8Kph zO@Bo_tKJ-U=yUX_z&cHbZu=bi=#n1E=C4qzrLSs}#ek3&OLRuY&Z!F1i?+11+^nzP zH)x#%s>nc zT_~_teWt<}!^mYvVkovDFm)b6GVB{r^OS{ph_tNNbobocZ7-nLMBAdTfB)Z{{3vx{ z7+WJf)+P&yeNN31BM>ksFz26=QZ;4bvWZ(-a;9K z#cNA7YV{J=iZzO1qN|OPlWSdxq`y)SKCr6;VNSsDNuZ>MlfcwRM7F<-$@MBumS0`~ z#+Xeok*9hSHJ&GDsIsxU<>0Xzg zwb})=remnePfUO0hd4i|LDq`#$#D*#gEpyI7*~3q>EhD=dO@cv#C&vATJU zC9FBE@=vukhgsG%U-=o}3EZ*jgl2e|Tt%=QN#$=!W zje5zp$%NOa0hjaEMevJU?o}e$BE??->%up0zE$@H0o!<~3w@l06GEj{DU)ioQW+1e z*tIkr1Y%MuMTYrkVGDLKuiumT1X5&E1LAFzqQ%qOjU{p%%Ltg|H@Is{=LxKn}pO5T8&m%bf%U#9UwqQ4qfIVYz5W9dx!@eW!e!ec` zTJ4f~d3P8qNKf{qF+R{{lBVKcd+fT}!=K0I*1CI^YkV;4NdhY{H$oOS75T~LCKnnC z=9b|felwbsDMjT){<1QazQ?7#IgjT|zkCPiYjU!#A-fL%$(?5bbhw)7qFPdev?8)K z+DBRdBPuQuNllVo8wsSA#8)m7NG%n)fCOqSOG8}%BWvx0G!}ZKjVUI8!QoVd`mJBnGYePX1e+v!>NJRUeB&aFNR&D-?{Y~M9Xq1F6$zS)mv_sSxAmSfe)vb; zT>ok>2_O~Dforf>oZnOSzm;*RjTz+>-bPd)3^S>tnL<@+>Kh5Q)VpZjJZ4l_p@k<% z?pz2pl>e^E<`~2ze6Lsis~=eP zBDG%M>ajSLFK?A{uq~h?BrQ!%FFzmPT`N-|NEYw&i#yDGao9paE0mE_WeoWQVl;v3Rl>i5cczo42 zddvqHYkpQ00KudV+U^8E;Vy63zj)c&J=r(+x%!3%#LO}QLMEyuuyRnTKSpff9vnRj z{cgL48@olnbD16*bDyvGf>qwm*uW6|zkasM71qj&Qp9XBu|2834c9=hdrtXXg-HxMR*)-o^IH z5eM$+sZ}iPqI{bTyw~1uA3k$X57{Jp{h0%M35@{n4tx3OgX`z7KmFY5k#p4q2Ki+T z|6zo?pEis$Gd?G5BjMYcKfC|sXk7QMdfqIXo7N$p_q=tlYXIlpRe#icOV}6|pIbo; zNKEswn0)<{{cB#5>AWo0v<5>%ICeZG7Q#XB4tQc|u(~D%gD)aKZn)Ao>j!F89iJ{? zD!*J)7*<00r<=ZL@Wo9B_NZXVMe&eNp!OE_Vr--a8>Uwl#tX*=w4j4s5X48Nn_E`U z*U?vGwN!WtL`W73Jnh*J8*MF^IYw&>eu-a;e;J$^KPOi{wPKyqA3R9+HOK5z_~4g9 zHqLr|esa!A%7+qr37SlJ-}Ym3BKXI)_do~-u2B-Hy-0Ia7Q43r5Zo%pRcg-UNo7;Z zCY6n+f+ zk8p|`N|>Nl3|(TnE|<6^3^}844xAqxCsXm|Saj^Z4_ddLKFiS0U+p+PT)sP#jKcL| z{c#x9-Sfw~FvH4$DA9S)`D%Pz1cR8I?=-Vpmugg~muaMtk2?XWLbPWk0!Ckr12C4l zY+4w=^7<<}@yk3Exr{c)h(Sx@08q6NZ}|kE<3HJpI&VPcFpdIn^rCB3ATBrx?;5wm zW8dyUuo*;r2!6ZC!~4}inPBDoUxR%0H!}9AuQJG&n7d2;^8On3ArPPr?BHiCKJ2%K zh$h6UGV*-l;s|%MAZ}=eI@#TpD~1pv)8_dnh7gRNJBhDO3eN-t0mqnQ;>SvFtODz; zd@Mc|=?a|2?-q^;k3~#wsXqOrTpK`Y=Ls(6|N9KXvK9jjz>_-JDZb+hg;ingH+1~| z+y$%}R)jn&UbC|*lB#prRBgbFbq;!$(n`GtJI4%|>P;?GU1ZhHHO0?DRwVP2|`el$1F8_zXX7b7YfMiC^*(nU47JCbw1%+YDFoQAqh&qxEFUXtTd({`S z9<(*|!q-J2>L>0&Oc^#%4DKxN79>Se+~Jx(I!OFvr5FgrQjm!ZTo&0xxU;k!j?s7t z5vz*|Yuqrtk6xwMt>DGF1D*aOoi~2yP)GX*eroD@&Lzap5Pc@@-fcPK6UIkU0W%Gt z+u!W6@Qq_OpZAWV@%r@wgIfaTc*(tcI=pFIjO3Qm%|S7co5oQ#n-Nht&9iQ2{)sVfEgd@HZUIagD)b-r+RXA)Oc`I6RYPLUWbD_?&C!}g;#p6qo*c}?DZ`0kE) zQh7KT8k!J2IwZy=dM#-M98#K_i?AkGNaQH_|3CWmrg>nazW7OmWml=Jf6df?$URBf zPBCGozOS_x)Jo_kgg|todk|NM_BBX*@_y*c7>lTNYT8Y45xbVUZeJCa&QNUQ10|Og zG;rW#cJiQhMtaz)?J*}HcA@NUa;l9O%jo+duSaU|MGLt>Mt3@dY~%YzslHJAwa*k5 zRMc zW5wEXN56nfSp6$RO4=@3!J!gZ+^8fdwK^i@$|fO5=G|%u`rsWYE_QG`&AnVl@t7$t*_`x}!(uY9F2$CvM$0pZ(N0Ww{ zfIoIX?O?u(8A2c*NPk9L_WMP7 z@C06|bOf3A!sINyQ$|*#&q5hN2bDrDGRPK0U|9TO3fswv?VcsWD+w~UESrgP2M|$6 z=sDoXpwim)lEC6|F|3q`-$~dPN`nw64gWmromi}b zl_y9|s;LZbp$V2R>{iXI7UgMzqf=A@gOyHARmma}hR2UAn>fOUe6q{FEZrtOjH|^R zmbUGcg+I_K^(&1mc@|^uHKxY@2P?pGoh%P+O4HN&M#YRl9btQ|Oqf zVhi%XHg;Ey*53S*Z}o|J(lfPuK*uC{BVy9N|DMLQ+VC#hUGSedz)(5inP+nY_C8H* zFw{d&tZ~nD;;R227{wl18*?r?W%>KJl+>k45u3m(_QlZ5>A}{?}CaSy$)u!3LtRE2mK`L2d0b+*nZLBNZ5hEo_LF21q5<%^M5$j!z=_y@Qa?AP4 ziM~d^MNNKv<9|5cR*^QIKr{Iip^YN#!bL`Q`i#E-7ah0cNWyn+*xn;2^Pn1zbAS)9M{;tk!GU#fYGc;B%^A30--N zPlBhtD8Wers+w4*`wsm-YlKu2Y#C-EYVi-q;=-gen&O}#sq>5*KT17|B6Oaxr!Jz% zQ~KkL8P3w7pkmFLr1T2korS#pA3p5o74Gz%Il=^oqeKo#GKwQ{9KJM2_cBK$T6Ud_ zTEkuSh;$n~(fW3*JhZb0Sg+!k_V3_8=B0#Hdq%Y+SEt(X3dm!el20 zc)*Ezj&cbnbKqToy#hi?Yuw3tIu)3HIDwMu(w=C#Ny_BNlkH`q67r)fJg!H1!1K$w zaB>t-R%wC%PC-aOazIGqnWpU|Pm?qld^id>O>LFPrF5ADvbS@NH(Ad=hklsV%{oly z$nR+YzFSp_r^b1El-*p*iHn;nvz>ni3|2LH~JQmvriH8w9$N-EXlI5{#3%k zaUSY#^iY43O22{}?2a{I|9x-VgUR3MRAv2;ex+KyGK1Y;rqXW?dG!jts)=7ltOzzz zJubf}>B{i?<&VcGF{-!+rk^-@II{O}J-+U6U!;7Xc+LU!C>#0=N6QQ+;Nr|?j}U5i zC2mjkxz5hGxDHoyN1RAgA5H`ak@s;|2=Ibf=t_MiaI0Ay=O%cTdf+Ml1#$!!o3{<) z_PvLmPudp*|ECQg?gwFc~TvyU94-c(*t3arDK#L0D1KjcmS!PJJ zB_bCE&f3)(ndq(gfd?bpyrDAFM|1`z8ZA{w_|6w($2dH(LW&M(E{x`>sR`@r7IDx& z{aD1Yt@|=q)0s`j0`}IGnDj|aVxS+hkBLC!cVPWNnr=`JqIA~4=)5G{Eyjh? zfYmi$cz0RE@f5gEywW6q+=OX)3|<w2> z4Q?l9<7X>dhgJ}*y(g7&c5t)`pHpX0Bg>OnbqGnG z4<{a6O$X%$PmOl%qAcAxbOx3_^#0uhl=1!JR%f4ye?IOJW5skjZi`{_nl-7ZU^M2u zOMpf1o+@a$f;K5hYt=p!Jo~iAl$hX}|L&F#JCU78?`qf0O6;86&l+Ld@;x}@vt9_TjlNLO?hSM4a1vRvoXgx8hh`K8~z$lIF zqNJ@TDEizEB`TK&O8@^hpw=CZrTz)uUB!uE-X89=W`OD_^EU@#{LX5QgflH0q&p0C;Imm5zJNjPLk ztV0efi40K|K3JcSLH1tV{J7-AHr6ky!0f)DAE04^Sa5#Tu7u_lba+mMPo~9xtE^h~ z_@S&_J8${Exe~Vez@D>iQ#10LW;&+LN<6UP56!}%2;ERLJ;ArK=bSG)SF`67&8T(E ztT@zh#PPO0sh2*bSk@s&($%0cx(B!h7xXDW78Vz4gjM~d)@xe9zQ+PKk9C(P>=se= zu_aMrlOC8p*~Q*tC zZI&2`@gV9k!;sxUHjxTeHLhWaUa!-y9Hst`r6eR^NkEegOOk$j7ULs0A7q+2Gk~fb z^A%VAzX^kcIfZH$XK3oU(5w-)DA4sskIG))SOngJf9>mh$5QEz? z#|1|15p3FiWkE2#tE3eS(+KHx{h=&0**u$RMrT33m@M?Do<%dGOEBJJwOP7J5ic9v z5{s*|1jXS_*EQa3=-eCQJG5DL6(a@ z8_S1m>!hrEdj+`Ni~dsV(O^dvRxm%nM_)IkQ`R9Y7MMx1DE``*C@C;4r`gi?>KDhE^gflB-1&dTJzWMxbpq=ZeLF~!om zSs@zb!~P`u5E8@0b0qxJiV3klD04wXxbFsW%6?jyb$}yE^VExPIVn9JYXB0HmgTrm z4LrRd4VE<7nMYDk(f~{De}}J{HYQf`nXbwOMLNh4OEIa%iIa}#K`*fazf&`XOVZO~ z0WTzd#iHaOHRO7HwNt?Vc3Iy10cyN?rWwt~7J{e+i@|GTf~31a;QngB{8fx6t9ZmZ zJ{XPA2mg~$8!ncgCvN@^zNpyxvXN z#$aLBWcPVGj#2db(|5%t1e>gn)k=n*@U!)-wKI{(KshvvH7yT<+!dk0UYV8=R1i8& z))BlOCeO#(Q@Q$Lmn@Ja8mT-)*&@nXh(tp;UImupeE^NQk&IAb6mc?-MW23`wo4iG zN*%hUZ+QooZ{@`-Sjo4!wAli}QgQSpk#(3*#RZC1vx!I&wa63v1ZQAMgsqFzt1WST-QpK=YO(RkUsyBp9*GV3iGtrRiQ3`uIKK(c6pM-dmXP)>Ho3cCYn zK&=ULYTkSHP;XN7p_99WcnYr08Rd{y9aTJMTJM1(MniY7f&bL0fu5onb&~PQ&^CC0 zV{tt_k$xBL%d4nH4FF04sPWVzJyt_xrZj3|=`CaU$8{gQ^1Ql8nqlKo^!P}iY5-6#745n_ZAPIy=>D|aAgw$hH zV|>TBeb=#GMJutc{zQvCDihJ&$*xk5<5gHEvl4OG+K}V6?CI%_gfxV!L4?PmNp z(=ogImiuy9#1K@PS7sY#$Xz1ht?b#=(jqw-?G9p*Jw88we$}s@ zo{pI5okXIlC??j-G#o>(?A3WEGO{R7B_1%~6|#!YWW)duArEq^8HYzIg*sfPd3cuz zQ79>71-yGVDME`RZ6Z3;cYXB`MMI;;^miSN5@?n1u{-d{HBc;7&O(K-)+RKGu0X9q zNz_6(vk=c#^vU_?)e4DrYT3fg(Yx-~&dEmw9Idy7h~8bYKC{ZE;Ym`X8Cg-ZTozol zC~uD}A6rdy_VQ-%^j!q+9$UmFSdaEv=}3b_y#uLOGd;iZPOoMuj&f5tH;K7RjLA$R zfFJDTMKZ%X7Tr0)GO~hZrhvW?l&a2}QHm@BJcM^b@D4gTwjmU49-)6{5dQ9fz2iU% z$7raRX=LC#nB@!{diNCXhS;0j z8JoN*yAdXA(Qy8E04iM@kzJ8Dy!BG>?+)$g2>rW>-F_#>Q2=%&n!yu`Qt#0_Ac}a9 zmzBM7)oUd3FSnW!JWORrr7P-dU7E|*vc4i>ldNaE9fGwmYi4Hmxf}uL?hJRYcnAO3 z*;;7<1Wy-OpnQ7WS_6QegPKz=|EyD|*MTX1ZzX~HHAFteuG;tfpFHsQto2wmghNir zQJl!|-h{=pt-}*0{Kuec(gsJ%nQ&?;8H^7Gl`JDu-or8)4_0V3J1kyl!YbWybdCU& z%s5-#!-L5^W?yckjXu`kH2TC1PMV+d2RK3beFP9 zR&xzZKFHbuehrUwR79Lo&`?ygXa~4bTmyXc3gRGI$+<&VP3tole`|PAogAh?7G~>& zMH1CA#Fm)Hmo&jD0!D&-0nCfAG;x-85Nj(0XD~e^-MTh@K0RVOSG|233KFz4ES?(W zpy4y#Jzu@3#J~c$pcPEB3dRF!i*LE$36tPiWCIcx1f9+4d19lF(90qMwvA^bFL3`@ItUP^ff;tin zrBSa%ih|=sv#91pp%sV$QKuQ6F^Dm^suXR+e$5Vv)l6kk%Q>@>y(R9b5MPBTq4Q+c z6!#33B=Af27VXPuE{SbAt2Mpi5?Nv4rm~u>Dv#W-_*bfhOe;!Ek{)vX zsQ%&dHOfc^RMluC2bBTW51Pc+1)14A1^pLa!G$>BR zxb3yN!wIhbFRy4L?Ev1HaFPS zvC1=JJE}U_J8FhK>}a{`!{1+9x4-P%z~K=!Wk|niu!2j4cui^K_ss$1PIstuL^-V3 zbeu@`YPS#J3UgGBK_A>_&=0}f7!F)f2J(A{X-Xgz#poFp8YA|W#rytAV;*INOC)E2 zgGWds8Kg8=h2={M`fnfCNGjsbz3)Ih@(xn8Xce53W2SpZl$loNcl#BDR@z~}e575^ zsMa0?=62fPw$CZs2Bc9c4iO;wSu8S7@R@K$S=h6D6`$)f-Y&@!?>i1%`RlYF2u2_o zFSzv+4_+*69DKL{B1|a5a=ai)vZ89-8hp{2mhHHnAB0hyq*-2+Ro%2*KaA77tN;kX z2#VnZNim0TSzZt&Sz#^V^T04I+i^WV2%|Vjv%Dy)x@o(97^itzxBXyCq4s{>@0Y~S zI}m~q6vGLUq8XOs1yPa}RnraAvK`m+gD{GdG|LNS8$Q~)X}f+Hr+Ha7+ui=a-vRp4 z2tWEiwCC&n`TqWVbNNECRIV_z@bT0e%~re9?di}E_jzs5C+g?HL9i?re!;>=LcaFCux@d_+w*L z-LzdljMKbus1OBJPN+GW;ZmVqlw^fvh9TWB8C&=;9M|)MFp85j%L`r_{&(H9T|bP| zysX=PoY(!l-yZ-%FoI$@K~glsa=ai)vZ89bVOqB1dVUZ_agt_vQC4-+cKt9;^RjNX zyZzyKI$y4lXe^#crqY>gE?+2?%9U!Z-e|Vkoo-KuhPXc%j>ePeY`$2o)|>5a+|OL^ z{{B-=5?-yl7&K_8xc+Nj);(7IVqksvEUdpedgc@FqL z9S{nh9i~qPucu$(o*f&Cz=+poQhv+w*__pft#rR3ACU3+w8CW)Wq#17QUDO2m&SqaxhSV zfk1%F1U_Y4Pa$HJZ*{(^|3{~i+BG|FrVU`?)#0A!5A7(qHA1@oq4h}}DZ54uLd7U^ z#|Zn|OPm=`cCy3f6K;&|ojE#EY^x;Xh$>||$5G64lZ)7+mfK+}7~XE%Rm~um>qoI` z683ASB)!Oxo{#+3UIgo(?tvTv^sG;B%vdoY12ZLu@Va3GDYdL{g@l2{Ih^Ut)-SOw z`pXG+v>f0FsX2((drnc@ZabEKQr_K8aFy#F8V)b}#C}iZ>$QL${xi;Q8LPv0AKG$x zN(rA_glF&yw-`xZ>RVM0uIyu8F_(THe3i=ixN)x?H>J2W$P$WM7RGZG7b-`1yrP33 zT}s}vOvN?8(Tk(7yShvU!mhr;5}!Js<#Fo3%cTxz2R6Ih0r4(qk{b~SI~P3@^v2}C zz`(C1E)Xyfj89X?vmx()u!Rr=M$k+!I>)V?F+%5=>kYiuUx$$vkjKgYc&MJ0Q(1F$OB96a0h*!Q5MCD{w;|r;>!P zpcI>tQ^GdsV_sX>8ff?-L8X2PcWK_yDYag&sU>pQpSLqUfdEBxg2BW|ynY3QGh(%D z%04;@`!I0jVRD^$6h}BN&ta=vQ=|3y1a8oJsaUnvBi2@&&Vw~=+i`#`_cU13?m)BY zyhj6r*&1f|(ly)d#fPFav`|L1)A9n)#XlS3^Go z8US(dtMZzw4Kz(Jinz7u$L5s0OuzcQ=(oP+^*2l6SrK;p^-50gLmZ3+YqNL88F6U35FQi<6%ziv@H?q3h_NLz;Y17Lq zr0*>m-&Ll53!CQ^j>5j~ha`V^Bj%3$-S217)E*vh#m{~#Q1(EYHnKOlP9AVJ$Ac^pH}H@gEY#+CydH7T_Em< z)~OO=W3uo}#2BEVj+FaDRvbfy`z;`Wmv|1p;)4hi0SWP8)Puf1AJ)-+LrNyL2jmO_ zo_{T|g68(4sWr%_N{U;-h}V;JgCsbD%$F54M~Zh1zjpjI1i1msYV#=FM|Fze9iwq~ zs?=Omm2<)FaZ4I)TXJd#4iq1|0d?L-sRv$2x4~l=0$NY~a3e!cn@4z6 zw;)DLt*1M*9+4OH!|7Sfxcev{PlmZ6%GW4(gSZ@?9m_=~f2uR8voEL^oml`svNL+I zkKH+S#_7PvUH#OrmpJGnjsnqNNFVU%H}Rwy@Mb5UpT+=6ATZlaB8fl zdw!)wvvkky7;(jD`2rCUX8YiE$KcKLm9&25l7E_V1Y5T+pK5YhcYhL-U89x9Hu%sR z+|m?oC1TxQG<{vI|J9ouOJcWraheJK40EX_{j;7tGCw9&xykOmb@#~^5~WcG#jsm> zSfQVK!i9LXUuoTJInz=(ylbBLv2Sz-Xk~{P}DyqTzbYN;Uw6Pv0vs7qb;(MA` zw=h9cge-`F3}7HL5}aW=D<3Ikt`}Ac>j$RxKpl7m8bu9g;RQz{OZ8Xl^@5_wKA+`^H!~Vr9lj;!+4PFwC=a*+w z*r=7O<;>Z9%d&piJsUU`1HcOPYNgP;JfWff&85??&ab z+##>#@q=r3TLjzaAU4N!>ef0E%+S2R9)x!(5a;0;{bL;=QJEd$!*&`R`{!OGeidJG zy0VWs2{me%93-fLG%T9eMkr*-vv=mPWha{=@N3;Z2vt78pcU`$b4_cCoGH+Syb zV&cgL_sNl|c`slu<@Uelzr0q>!;WpnDKmXX6>2Xk*|y5#;wjL_e+f3~n*1vMn7n^~ z6PybH&9}N<{`eXy16iH-$@;G;MzXLCUuRQ(U_R_E1lY=ok3ahM! zA-Iwn&fWT8NtdHYwGC3Q)82qJp=HTjg?+5UOAZ|8u)~Hp8;so?Z-{Lf*fd{xk4{I6 zkA)cV1HOV;=r^i>9G}yMB(}+#*jzSs7PN0{tt!&K^f>)!t zGpW)h) zDH0<`p3PVv(5UXP`CJx=HHX3*G9vffBOs!)vW!o={@wOXaM2qx;TNNY42Lf@{+}uJ z2#OGO_KJfNMjUxBFvaakTDDb)uzp_1KDy!E`%}5{MFix|C7D>$2#`Ek0+9@^kh%Gc5&?|e{jD;d)BM$*= zyfoOBHRJ;Q)hO(jdu^#)`i96(`#YV4cGxEQT(?L) z=e+HSllhzO)o~T`o z#xdG|m(hD7Z25pqr{!B>t^P7Kor0XM?#@Pjs7uO0?9-V1F=t%KBV(%VM9Q&(yo{f`#>>V z1AJ0JQ4xWlj#Y|nNUv+c$ZGXY&1};-O*kuL`G~{IUfXHn$1};gQb3cb=!Mx_-69~k zO}Av<0XRz7@!>re-4E_h`ljX^$PFQGE2@>%<&SaaISDsMkDAGW*j8Bqtc7 zgBp#5!B640zFNHYLwzTk?nh`5IO@D33nT+6;5(bz{ "I came here to chew bubblegum and install Font Awesome 5 - and I'm all out of bubblegum" + +[![npm](https://img.shields.io/npm/v/@fortawesome/fontawesome-free.svg?style=flat-square)](https://www.npmjs.com/package/@fortawesome/fontawesome-free) + +## Installation + +``` +$ npm i --save @fortawesome/fontawesome-free +``` + +Or + +``` +$ yarn add @fortawesome/fontawesome-free +``` + +## What's included? + +**This package includes all the same files available through our Free and Pro CDN.** + +* /js - All JavaScript files associated with Font Awesome 5 SVG with JS +* /css - All CSS using the classic Web Fonts with CSS implementation +* /sprites - SVG icons packaged in a convenient sprite +* /scss, /less - CSS Pre-processor files for Web Fonts with CSS +* /webfonts - Accompanying files for Web Fonts with CSS +* /svg - Individual icon files in SVG format + +## Documentation + +Get started [here](https://fontawesome.com/get-started). Continue your journey [here](https://fontawesome.com/how-to-use). + +Or go straight to the [API documentation](https://fontawesome.com/how-to-use/font-awesome-api). + +## Issues and support + +Start with [GitHub issues](https://github.com/FortAwesome/Font-Awesome/issues) and ping us on [Twitter](https://twitter.com/fontawesome) if you need to. diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/all.css b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/all.css new file mode 100644 index 0000000000..11dc1dd24d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/all.css @@ -0,0 +1,3572 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa, +.fas, +.far, +.fal, +.fab { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + line-height: 1; } + +.fa-lg { + font-size: 1.33333em; + line-height: 0.75em; + vertical-align: -.0667em; } + +.fa-xs { + font-size: .75em; } + +.fa-sm { + font-size: .875em; } + +.fa-1x { + font-size: 1em; } + +.fa-2x { + font-size: 2em; } + +.fa-3x { + font-size: 3em; } + +.fa-4x { + font-size: 4em; } + +.fa-5x { + font-size: 5em; } + +.fa-6x { + font-size: 6em; } + +.fa-7x { + font-size: 7em; } + +.fa-8x { + font-size: 8em; } + +.fa-9x { + font-size: 9em; } + +.fa-10x { + font-size: 10em; } + +.fa-fw { + text-align: center; + width: 1.25em; } + +.fa-ul { + list-style-type: none; + margin-left: 2.5em; + padding-left: 0; } + .fa-ul > li { + position: relative; } + +.fa-li { + left: -2em; + position: absolute; + text-align: center; + width: 2em; + line-height: inherit; } + +.fa-border { + border: solid 0.08em #eee; + border-radius: .1em; + padding: .2em .25em .15em; } + +.fa-pull-left { + float: left; } + +.fa-pull-right { + float: right; } + +.fa.fa-pull-left, +.fas.fa-pull-left, +.far.fa-pull-left, +.fal.fa-pull-left, +.fab.fa-pull-left { + margin-right: .3em; } + +.fa.fa-pull-right, +.fas.fa-pull-right, +.far.fa-pull-right, +.fal.fa-pull-right, +.fab.fa-pull-right { + margin-left: .3em; } + +.fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; } + +.fa-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); } + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +.fa-rotate-90 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); } + +.fa-rotate-180 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + transform: rotate(180deg); } + +.fa-rotate-270 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + transform: rotate(270deg); } + +.fa-flip-horizontal { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + -webkit-transform: scale(-1, 1); + transform: scale(-1, 1); } + +.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(1, -1); + transform: scale(1, -1); } + +.fa-flip-horizontal.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(-1, -1); + transform: scale(-1, -1); } + +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270, +:root .fa-flip-horizontal, +:root .fa-flip-vertical { + -webkit-filter: none; + filter: none; } + +.fa-stack { + display: inline-block; + height: 2em; + line-height: 2em; + position: relative; + vertical-align: middle; + width: 2em; } + +.fa-stack-1x, +.fa-stack-2x { + left: 0; + position: absolute; + text-align: center; + width: 100%; } + +.fa-stack-1x { + line-height: inherit; } + +.fa-stack-2x { + font-size: 2em; } + +.fa-inverse { + color: #fff; } + +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen +readers do not read off random characters that represent icons */ +.fa-500px:before { + content: "\f26e"; } + +.fa-accessible-icon:before { + content: "\f368"; } + +.fa-accusoft:before { + content: "\f369"; } + +.fa-address-book:before { + content: "\f2b9"; } + +.fa-address-card:before { + content: "\f2bb"; } + +.fa-adjust:before { + content: "\f042"; } + +.fa-adn:before { + content: "\f170"; } + +.fa-adversal:before { + content: "\f36a"; } + +.fa-affiliatetheme:before { + content: "\f36b"; } + +.fa-algolia:before { + content: "\f36c"; } + +.fa-align-center:before { + content: "\f037"; } + +.fa-align-justify:before { + content: "\f039"; } + +.fa-align-left:before { + content: "\f036"; } + +.fa-align-right:before { + content: "\f038"; } + +.fa-allergies:before { + content: "\f461"; } + +.fa-amazon:before { + content: "\f270"; } + +.fa-amazon-pay:before { + content: "\f42c"; } + +.fa-ambulance:before { + content: "\f0f9"; } + +.fa-american-sign-language-interpreting:before { + content: "\f2a3"; } + +.fa-amilia:before { + content: "\f36d"; } + +.fa-anchor:before { + content: "\f13d"; } + +.fa-android:before { + content: "\f17b"; } + +.fa-angellist:before { + content: "\f209"; } + +.fa-angle-double-down:before { + content: "\f103"; } + +.fa-angle-double-left:before { + content: "\f100"; } + +.fa-angle-double-right:before { + content: "\f101"; } + +.fa-angle-double-up:before { + content: "\f102"; } + +.fa-angle-down:before { + content: "\f107"; } + +.fa-angle-left:before { + content: "\f104"; } + +.fa-angle-right:before { + content: "\f105"; } + +.fa-angle-up:before { + content: "\f106"; } + +.fa-angry:before { + content: "\f556"; } + +.fa-angrycreative:before { + content: "\f36e"; } + +.fa-angular:before { + content: "\f420"; } + +.fa-app-store:before { + content: "\f36f"; } + +.fa-app-store-ios:before { + content: "\f370"; } + +.fa-apper:before { + content: "\f371"; } + +.fa-apple:before { + content: "\f179"; } + +.fa-apple-pay:before { + content: "\f415"; } + +.fa-archive:before { + content: "\f187"; } + +.fa-archway:before { + content: "\f557"; } + +.fa-arrow-alt-circle-down:before { + content: "\f358"; } + +.fa-arrow-alt-circle-left:before { + content: "\f359"; } + +.fa-arrow-alt-circle-right:before { + content: "\f35a"; } + +.fa-arrow-alt-circle-up:before { + content: "\f35b"; } + +.fa-arrow-circle-down:before { + content: "\f0ab"; } + +.fa-arrow-circle-left:before { + content: "\f0a8"; } + +.fa-arrow-circle-right:before { + content: "\f0a9"; } + +.fa-arrow-circle-up:before { + content: "\f0aa"; } + +.fa-arrow-down:before { + content: "\f063"; } + +.fa-arrow-left:before { + content: "\f060"; } + +.fa-arrow-right:before { + content: "\f061"; } + +.fa-arrow-up:before { + content: "\f062"; } + +.fa-arrows-alt:before { + content: "\f0b2"; } + +.fa-arrows-alt-h:before { + content: "\f337"; } + +.fa-arrows-alt-v:before { + content: "\f338"; } + +.fa-assistive-listening-systems:before { + content: "\f2a2"; } + +.fa-asterisk:before { + content: "\f069"; } + +.fa-asymmetrik:before { + content: "\f372"; } + +.fa-at:before { + content: "\f1fa"; } + +.fa-atlas:before { + content: "\f558"; } + +.fa-audible:before { + content: "\f373"; } + +.fa-audio-description:before { + content: "\f29e"; } + +.fa-autoprefixer:before { + content: "\f41c"; } + +.fa-avianex:before { + content: "\f374"; } + +.fa-aviato:before { + content: "\f421"; } + +.fa-award:before { + content: "\f559"; } + +.fa-aws:before { + content: "\f375"; } + +.fa-backspace:before { + content: "\f55a"; } + +.fa-backward:before { + content: "\f04a"; } + +.fa-balance-scale:before { + content: "\f24e"; } + +.fa-ban:before { + content: "\f05e"; } + +.fa-band-aid:before { + content: "\f462"; } + +.fa-bandcamp:before { + content: "\f2d5"; } + +.fa-barcode:before { + content: "\f02a"; } + +.fa-bars:before { + content: "\f0c9"; } + +.fa-baseball-ball:before { + content: "\f433"; } + +.fa-basketball-ball:before { + content: "\f434"; } + +.fa-bath:before { + content: "\f2cd"; } + +.fa-battery-empty:before { + content: "\f244"; } + +.fa-battery-full:before { + content: "\f240"; } + +.fa-battery-half:before { + content: "\f242"; } + +.fa-battery-quarter:before { + content: "\f243"; } + +.fa-battery-three-quarters:before { + content: "\f241"; } + +.fa-bed:before { + content: "\f236"; } + +.fa-beer:before { + content: "\f0fc"; } + +.fa-behance:before { + content: "\f1b4"; } + +.fa-behance-square:before { + content: "\f1b5"; } + +.fa-bell:before { + content: "\f0f3"; } + +.fa-bell-slash:before { + content: "\f1f6"; } + +.fa-bezier-curve:before { + content: "\f55b"; } + +.fa-bicycle:before { + content: "\f206"; } + +.fa-bimobject:before { + content: "\f378"; } + +.fa-binoculars:before { + content: "\f1e5"; } + +.fa-birthday-cake:before { + content: "\f1fd"; } + +.fa-bitbucket:before { + content: "\f171"; } + +.fa-bitcoin:before { + content: "\f379"; } + +.fa-bity:before { + content: "\f37a"; } + +.fa-black-tie:before { + content: "\f27e"; } + +.fa-blackberry:before { + content: "\f37b"; } + +.fa-blender:before { + content: "\f517"; } + +.fa-blind:before { + content: "\f29d"; } + +.fa-blogger:before { + content: "\f37c"; } + +.fa-blogger-b:before { + content: "\f37d"; } + +.fa-bluetooth:before { + content: "\f293"; } + +.fa-bluetooth-b:before { + content: "\f294"; } + +.fa-bold:before { + content: "\f032"; } + +.fa-bolt:before { + content: "\f0e7"; } + +.fa-bomb:before { + content: "\f1e2"; } + +.fa-bong:before { + content: "\f55c"; } + +.fa-book:before { + content: "\f02d"; } + +.fa-book-open:before { + content: "\f518"; } + +.fa-bookmark:before { + content: "\f02e"; } + +.fa-bowling-ball:before { + content: "\f436"; } + +.fa-box:before { + content: "\f466"; } + +.fa-box-open:before { + content: "\f49e"; } + +.fa-boxes:before { + content: "\f468"; } + +.fa-braille:before { + content: "\f2a1"; } + +.fa-briefcase:before { + content: "\f0b1"; } + +.fa-briefcase-medical:before { + content: "\f469"; } + +.fa-broadcast-tower:before { + content: "\f519"; } + +.fa-broom:before { + content: "\f51a"; } + +.fa-brush:before { + content: "\f55d"; } + +.fa-btc:before { + content: "\f15a"; } + +.fa-bug:before { + content: "\f188"; } + +.fa-building:before { + content: "\f1ad"; } + +.fa-bullhorn:before { + content: "\f0a1"; } + +.fa-bullseye:before { + content: "\f140"; } + +.fa-burn:before { + content: "\f46a"; } + +.fa-buromobelexperte:before { + content: "\f37f"; } + +.fa-bus:before { + content: "\f207"; } + +.fa-bus-alt:before { + content: "\f55e"; } + +.fa-buysellads:before { + content: "\f20d"; } + +.fa-calculator:before { + content: "\f1ec"; } + +.fa-calendar:before { + content: "\f133"; } + +.fa-calendar-alt:before { + content: "\f073"; } + +.fa-calendar-check:before { + content: "\f274"; } + +.fa-calendar-minus:before { + content: "\f272"; } + +.fa-calendar-plus:before { + content: "\f271"; } + +.fa-calendar-times:before { + content: "\f273"; } + +.fa-camera:before { + content: "\f030"; } + +.fa-camera-retro:before { + content: "\f083"; } + +.fa-cannabis:before { + content: "\f55f"; } + +.fa-capsules:before { + content: "\f46b"; } + +.fa-car:before { + content: "\f1b9"; } + +.fa-caret-down:before { + content: "\f0d7"; } + +.fa-caret-left:before { + content: "\f0d9"; } + +.fa-caret-right:before { + content: "\f0da"; } + +.fa-caret-square-down:before { + content: "\f150"; } + +.fa-caret-square-left:before { + content: "\f191"; } + +.fa-caret-square-right:before { + content: "\f152"; } + +.fa-caret-square-up:before { + content: "\f151"; } + +.fa-caret-up:before { + content: "\f0d8"; } + +.fa-cart-arrow-down:before { + content: "\f218"; } + +.fa-cart-plus:before { + content: "\f217"; } + +.fa-cc-amazon-pay:before { + content: "\f42d"; } + +.fa-cc-amex:before { + content: "\f1f3"; } + +.fa-cc-apple-pay:before { + content: "\f416"; } + +.fa-cc-diners-club:before { + content: "\f24c"; } + +.fa-cc-discover:before { + content: "\f1f2"; } + +.fa-cc-jcb:before { + content: "\f24b"; } + +.fa-cc-mastercard:before { + content: "\f1f1"; } + +.fa-cc-paypal:before { + content: "\f1f4"; } + +.fa-cc-stripe:before { + content: "\f1f5"; } + +.fa-cc-visa:before { + content: "\f1f0"; } + +.fa-centercode:before { + content: "\f380"; } + +.fa-certificate:before { + content: "\f0a3"; } + +.fa-chalkboard:before { + content: "\f51b"; } + +.fa-chalkboard-teacher:before { + content: "\f51c"; } + +.fa-chart-area:before { + content: "\f1fe"; } + +.fa-chart-bar:before { + content: "\f080"; } + +.fa-chart-line:before { + content: "\f201"; } + +.fa-chart-pie:before { + content: "\f200"; } + +.fa-check:before { + content: "\f00c"; } + +.fa-check-circle:before { + content: "\f058"; } + +.fa-check-double:before { + content: "\f560"; } + +.fa-check-square:before { + content: "\f14a"; } + +.fa-chess:before { + content: "\f439"; } + +.fa-chess-bishop:before { + content: "\f43a"; } + +.fa-chess-board:before { + content: "\f43c"; } + +.fa-chess-king:before { + content: "\f43f"; } + +.fa-chess-knight:before { + content: "\f441"; } + +.fa-chess-pawn:before { + content: "\f443"; } + +.fa-chess-queen:before { + content: "\f445"; } + +.fa-chess-rook:before { + content: "\f447"; } + +.fa-chevron-circle-down:before { + content: "\f13a"; } + +.fa-chevron-circle-left:before { + content: "\f137"; } + +.fa-chevron-circle-right:before { + content: "\f138"; } + +.fa-chevron-circle-up:before { + content: "\f139"; } + +.fa-chevron-down:before { + content: "\f078"; } + +.fa-chevron-left:before { + content: "\f053"; } + +.fa-chevron-right:before { + content: "\f054"; } + +.fa-chevron-up:before { + content: "\f077"; } + +.fa-child:before { + content: "\f1ae"; } + +.fa-chrome:before { + content: "\f268"; } + +.fa-church:before { + content: "\f51d"; } + +.fa-circle:before { + content: "\f111"; } + +.fa-circle-notch:before { + content: "\f1ce"; } + +.fa-clipboard:before { + content: "\f328"; } + +.fa-clipboard-check:before { + content: "\f46c"; } + +.fa-clipboard-list:before { + content: "\f46d"; } + +.fa-clock:before { + content: "\f017"; } + +.fa-clone:before { + content: "\f24d"; } + +.fa-closed-captioning:before { + content: "\f20a"; } + +.fa-cloud:before { + content: "\f0c2"; } + +.fa-cloud-download-alt:before { + content: "\f381"; } + +.fa-cloud-upload-alt:before { + content: "\f382"; } + +.fa-cloudscale:before { + content: "\f383"; } + +.fa-cloudsmith:before { + content: "\f384"; } + +.fa-cloudversify:before { + content: "\f385"; } + +.fa-cocktail:before { + content: "\f561"; } + +.fa-code:before { + content: "\f121"; } + +.fa-code-branch:before { + content: "\f126"; } + +.fa-codepen:before { + content: "\f1cb"; } + +.fa-codiepie:before { + content: "\f284"; } + +.fa-coffee:before { + content: "\f0f4"; } + +.fa-cog:before { + content: "\f013"; } + +.fa-cogs:before { + content: "\f085"; } + +.fa-coins:before { + content: "\f51e"; } + +.fa-columns:before { + content: "\f0db"; } + +.fa-comment:before { + content: "\f075"; } + +.fa-comment-alt:before { + content: "\f27a"; } + +.fa-comment-dots:before { + content: "\f4ad"; } + +.fa-comment-slash:before { + content: "\f4b3"; } + +.fa-comments:before { + content: "\f086"; } + +.fa-compact-disc:before { + content: "\f51f"; } + +.fa-compass:before { + content: "\f14e"; } + +.fa-compress:before { + content: "\f066"; } + +.fa-concierge-bell:before { + content: "\f562"; } + +.fa-connectdevelop:before { + content: "\f20e"; } + +.fa-contao:before { + content: "\f26d"; } + +.fa-cookie:before { + content: "\f563"; } + +.fa-cookie-bite:before { + content: "\f564"; } + +.fa-copy:before { + content: "\f0c5"; } + +.fa-copyright:before { + content: "\f1f9"; } + +.fa-couch:before { + content: "\f4b8"; } + +.fa-cpanel:before { + content: "\f388"; } + +.fa-creative-commons:before { + content: "\f25e"; } + +.fa-creative-commons-by:before { + content: "\f4e7"; } + +.fa-creative-commons-nc:before { + content: "\f4e8"; } + +.fa-creative-commons-nc-eu:before { + content: "\f4e9"; } + +.fa-creative-commons-nc-jp:before { + content: "\f4ea"; } + +.fa-creative-commons-nd:before { + content: "\f4eb"; } + +.fa-creative-commons-pd:before { + content: "\f4ec"; } + +.fa-creative-commons-pd-alt:before { + content: "\f4ed"; } + +.fa-creative-commons-remix:before { + content: "\f4ee"; } + +.fa-creative-commons-sa:before { + content: "\f4ef"; } + +.fa-creative-commons-sampling:before { + content: "\f4f0"; } + +.fa-creative-commons-sampling-plus:before { + content: "\f4f1"; } + +.fa-creative-commons-share:before { + content: "\f4f2"; } + +.fa-credit-card:before { + content: "\f09d"; } + +.fa-crop:before { + content: "\f125"; } + +.fa-crop-alt:before { + content: "\f565"; } + +.fa-crosshairs:before { + content: "\f05b"; } + +.fa-crow:before { + content: "\f520"; } + +.fa-crown:before { + content: "\f521"; } + +.fa-css3:before { + content: "\f13c"; } + +.fa-css3-alt:before { + content: "\f38b"; } + +.fa-cube:before { + content: "\f1b2"; } + +.fa-cubes:before { + content: "\f1b3"; } + +.fa-cut:before { + content: "\f0c4"; } + +.fa-cuttlefish:before { + content: "\f38c"; } + +.fa-d-and-d:before { + content: "\f38d"; } + +.fa-dashcube:before { + content: "\f210"; } + +.fa-database:before { + content: "\f1c0"; } + +.fa-deaf:before { + content: "\f2a4"; } + +.fa-delicious:before { + content: "\f1a5"; } + +.fa-deploydog:before { + content: "\f38e"; } + +.fa-deskpro:before { + content: "\f38f"; } + +.fa-desktop:before { + content: "\f108"; } + +.fa-deviantart:before { + content: "\f1bd"; } + +.fa-diagnoses:before { + content: "\f470"; } + +.fa-dice:before { + content: "\f522"; } + +.fa-dice-five:before { + content: "\f523"; } + +.fa-dice-four:before { + content: "\f524"; } + +.fa-dice-one:before { + content: "\f525"; } + +.fa-dice-six:before { + content: "\f526"; } + +.fa-dice-three:before { + content: "\f527"; } + +.fa-dice-two:before { + content: "\f528"; } + +.fa-digg:before { + content: "\f1a6"; } + +.fa-digital-ocean:before { + content: "\f391"; } + +.fa-digital-tachograph:before { + content: "\f566"; } + +.fa-discord:before { + content: "\f392"; } + +.fa-discourse:before { + content: "\f393"; } + +.fa-divide:before { + content: "\f529"; } + +.fa-dizzy:before { + content: "\f567"; } + +.fa-dna:before { + content: "\f471"; } + +.fa-dochub:before { + content: "\f394"; } + +.fa-docker:before { + content: "\f395"; } + +.fa-dollar-sign:before { + content: "\f155"; } + +.fa-dolly:before { + content: "\f472"; } + +.fa-dolly-flatbed:before { + content: "\f474"; } + +.fa-donate:before { + content: "\f4b9"; } + +.fa-door-closed:before { + content: "\f52a"; } + +.fa-door-open:before { + content: "\f52b"; } + +.fa-dot-circle:before { + content: "\f192"; } + +.fa-dove:before { + content: "\f4ba"; } + +.fa-download:before { + content: "\f019"; } + +.fa-draft2digital:before { + content: "\f396"; } + +.fa-drafting-compass:before { + content: "\f568"; } + +.fa-dribbble:before { + content: "\f17d"; } + +.fa-dribbble-square:before { + content: "\f397"; } + +.fa-dropbox:before { + content: "\f16b"; } + +.fa-drum:before { + content: "\f569"; } + +.fa-drum-steelpan:before { + content: "\f56a"; } + +.fa-drupal:before { + content: "\f1a9"; } + +.fa-dumbbell:before { + content: "\f44b"; } + +.fa-dyalog:before { + content: "\f399"; } + +.fa-earlybirds:before { + content: "\f39a"; } + +.fa-ebay:before { + content: "\f4f4"; } + +.fa-edge:before { + content: "\f282"; } + +.fa-edit:before { + content: "\f044"; } + +.fa-eject:before { + content: "\f052"; } + +.fa-elementor:before { + content: "\f430"; } + +.fa-ellipsis-h:before { + content: "\f141"; } + +.fa-ellipsis-v:before { + content: "\f142"; } + +.fa-ember:before { + content: "\f423"; } + +.fa-empire:before { + content: "\f1d1"; } + +.fa-envelope:before { + content: "\f0e0"; } + +.fa-envelope-open:before { + content: "\f2b6"; } + +.fa-envelope-square:before { + content: "\f199"; } + +.fa-envira:before { + content: "\f299"; } + +.fa-equals:before { + content: "\f52c"; } + +.fa-eraser:before { + content: "\f12d"; } + +.fa-erlang:before { + content: "\f39d"; } + +.fa-ethereum:before { + content: "\f42e"; } + +.fa-etsy:before { + content: "\f2d7"; } + +.fa-euro-sign:before { + content: "\f153"; } + +.fa-exchange-alt:before { + content: "\f362"; } + +.fa-exclamation:before { + content: "\f12a"; } + +.fa-exclamation-circle:before { + content: "\f06a"; } + +.fa-exclamation-triangle:before { + content: "\f071"; } + +.fa-expand:before { + content: "\f065"; } + +.fa-expand-arrows-alt:before { + content: "\f31e"; } + +.fa-expeditedssl:before { + content: "\f23e"; } + +.fa-external-link-alt:before { + content: "\f35d"; } + +.fa-external-link-square-alt:before { + content: "\f360"; } + +.fa-eye:before { + content: "\f06e"; } + +.fa-eye-dropper:before { + content: "\f1fb"; } + +.fa-eye-slash:before { + content: "\f070"; } + +.fa-facebook:before { + content: "\f09a"; } + +.fa-facebook-f:before { + content: "\f39e"; } + +.fa-facebook-messenger:before { + content: "\f39f"; } + +.fa-facebook-square:before { + content: "\f082"; } + +.fa-fast-backward:before { + content: "\f049"; } + +.fa-fast-forward:before { + content: "\f050"; } + +.fa-fax:before { + content: "\f1ac"; } + +.fa-feather:before { + content: "\f52d"; } + +.fa-feather-alt:before { + content: "\f56b"; } + +.fa-female:before { + content: "\f182"; } + +.fa-fighter-jet:before { + content: "\f0fb"; } + +.fa-file:before { + content: "\f15b"; } + +.fa-file-alt:before { + content: "\f15c"; } + +.fa-file-archive:before { + content: "\f1c6"; } + +.fa-file-audio:before { + content: "\f1c7"; } + +.fa-file-code:before { + content: "\f1c9"; } + +.fa-file-contract:before { + content: "\f56c"; } + +.fa-file-download:before { + content: "\f56d"; } + +.fa-file-excel:before { + content: "\f1c3"; } + +.fa-file-export:before { + content: "\f56e"; } + +.fa-file-image:before { + content: "\f1c5"; } + +.fa-file-import:before { + content: "\f56f"; } + +.fa-file-invoice:before { + content: "\f570"; } + +.fa-file-invoice-dollar:before { + content: "\f571"; } + +.fa-file-medical:before { + content: "\f477"; } + +.fa-file-medical-alt:before { + content: "\f478"; } + +.fa-file-pdf:before { + content: "\f1c1"; } + +.fa-file-powerpoint:before { + content: "\f1c4"; } + +.fa-file-prescription:before { + content: "\f572"; } + +.fa-file-signature:before { + content: "\f573"; } + +.fa-file-upload:before { + content: "\f574"; } + +.fa-file-video:before { + content: "\f1c8"; } + +.fa-file-word:before { + content: "\f1c2"; } + +.fa-fill:before { + content: "\f575"; } + +.fa-fill-drip:before { + content: "\f576"; } + +.fa-film:before { + content: "\f008"; } + +.fa-filter:before { + content: "\f0b0"; } + +.fa-fingerprint:before { + content: "\f577"; } + +.fa-fire:before { + content: "\f06d"; } + +.fa-fire-extinguisher:before { + content: "\f134"; } + +.fa-firefox:before { + content: "\f269"; } + +.fa-first-aid:before { + content: "\f479"; } + +.fa-first-order:before { + content: "\f2b0"; } + +.fa-first-order-alt:before { + content: "\f50a"; } + +.fa-firstdraft:before { + content: "\f3a1"; } + +.fa-fish:before { + content: "\f578"; } + +.fa-flag:before { + content: "\f024"; } + +.fa-flag-checkered:before { + content: "\f11e"; } + +.fa-flask:before { + content: "\f0c3"; } + +.fa-flickr:before { + content: "\f16e"; } + +.fa-flipboard:before { + content: "\f44d"; } + +.fa-flushed:before { + content: "\f579"; } + +.fa-fly:before { + content: "\f417"; } + +.fa-folder:before { + content: "\f07b"; } + +.fa-folder-open:before { + content: "\f07c"; } + +.fa-font:before { + content: "\f031"; } + +.fa-font-awesome:before { + content: "\f2b4"; } + +.fa-font-awesome-alt:before { + content: "\f35c"; } + +.fa-font-awesome-flag:before { + content: "\f425"; } + +.fa-font-awesome-logo-full:before { + content: "\f4e6"; } + +.fa-fonticons:before { + content: "\f280"; } + +.fa-fonticons-fi:before { + content: "\f3a2"; } + +.fa-football-ball:before { + content: "\f44e"; } + +.fa-fort-awesome:before { + content: "\f286"; } + +.fa-fort-awesome-alt:before { + content: "\f3a3"; } + +.fa-forumbee:before { + content: "\f211"; } + +.fa-forward:before { + content: "\f04e"; } + +.fa-foursquare:before { + content: "\f180"; } + +.fa-free-code-camp:before { + content: "\f2c5"; } + +.fa-freebsd:before { + content: "\f3a4"; } + +.fa-frog:before { + content: "\f52e"; } + +.fa-frown:before { + content: "\f119"; } + +.fa-frown-open:before { + content: "\f57a"; } + +.fa-fulcrum:before { + content: "\f50b"; } + +.fa-futbol:before { + content: "\f1e3"; } + +.fa-galactic-republic:before { + content: "\f50c"; } + +.fa-galactic-senate:before { + content: "\f50d"; } + +.fa-gamepad:before { + content: "\f11b"; } + +.fa-gas-pump:before { + content: "\f52f"; } + +.fa-gavel:before { + content: "\f0e3"; } + +.fa-gem:before { + content: "\f3a5"; } + +.fa-genderless:before { + content: "\f22d"; } + +.fa-get-pocket:before { + content: "\f265"; } + +.fa-gg:before { + content: "\f260"; } + +.fa-gg-circle:before { + content: "\f261"; } + +.fa-gift:before { + content: "\f06b"; } + +.fa-git:before { + content: "\f1d3"; } + +.fa-git-square:before { + content: "\f1d2"; } + +.fa-github:before { + content: "\f09b"; } + +.fa-github-alt:before { + content: "\f113"; } + +.fa-github-square:before { + content: "\f092"; } + +.fa-gitkraken:before { + content: "\f3a6"; } + +.fa-gitlab:before { + content: "\f296"; } + +.fa-gitter:before { + content: "\f426"; } + +.fa-glass-martini:before { + content: "\f000"; } + +.fa-glass-martini-alt:before { + content: "\f57b"; } + +.fa-glasses:before { + content: "\f530"; } + +.fa-glide:before { + content: "\f2a5"; } + +.fa-glide-g:before { + content: "\f2a6"; } + +.fa-globe:before { + content: "\f0ac"; } + +.fa-globe-africa:before { + content: "\f57c"; } + +.fa-globe-americas:before { + content: "\f57d"; } + +.fa-globe-asia:before { + content: "\f57e"; } + +.fa-gofore:before { + content: "\f3a7"; } + +.fa-golf-ball:before { + content: "\f450"; } + +.fa-goodreads:before { + content: "\f3a8"; } + +.fa-goodreads-g:before { + content: "\f3a9"; } + +.fa-google:before { + content: "\f1a0"; } + +.fa-google-drive:before { + content: "\f3aa"; } + +.fa-google-play:before { + content: "\f3ab"; } + +.fa-google-plus:before { + content: "\f2b3"; } + +.fa-google-plus-g:before { + content: "\f0d5"; } + +.fa-google-plus-square:before { + content: "\f0d4"; } + +.fa-google-wallet:before { + content: "\f1ee"; } + +.fa-graduation-cap:before { + content: "\f19d"; } + +.fa-gratipay:before { + content: "\f184"; } + +.fa-grav:before { + content: "\f2d6"; } + +.fa-greater-than:before { + content: "\f531"; } + +.fa-greater-than-equal:before { + content: "\f532"; } + +.fa-grimace:before { + content: "\f57f"; } + +.fa-grin:before { + content: "\f580"; } + +.fa-grin-alt:before { + content: "\f581"; } + +.fa-grin-beam:before { + content: "\f582"; } + +.fa-grin-beam-sweat:before { + content: "\f583"; } + +.fa-grin-hearts:before { + content: "\f584"; } + +.fa-grin-squint:before { + content: "\f585"; } + +.fa-grin-squint-tears:before { + content: "\f586"; } + +.fa-grin-stars:before { + content: "\f587"; } + +.fa-grin-tears:before { + content: "\f588"; } + +.fa-grin-tongue:before { + content: "\f589"; } + +.fa-grin-tongue-squint:before { + content: "\f58a"; } + +.fa-grin-tongue-wink:before { + content: "\f58b"; } + +.fa-grin-wink:before { + content: "\f58c"; } + +.fa-grip-horizontal:before { + content: "\f58d"; } + +.fa-grip-vertical:before { + content: "\f58e"; } + +.fa-gripfire:before { + content: "\f3ac"; } + +.fa-grunt:before { + content: "\f3ad"; } + +.fa-gulp:before { + content: "\f3ae"; } + +.fa-h-square:before { + content: "\f0fd"; } + +.fa-hacker-news:before { + content: "\f1d4"; } + +.fa-hacker-news-square:before { + content: "\f3af"; } + +.fa-hand-holding:before { + content: "\f4bd"; } + +.fa-hand-holding-heart:before { + content: "\f4be"; } + +.fa-hand-holding-usd:before { + content: "\f4c0"; } + +.fa-hand-lizard:before { + content: "\f258"; } + +.fa-hand-paper:before { + content: "\f256"; } + +.fa-hand-peace:before { + content: "\f25b"; } + +.fa-hand-point-down:before { + content: "\f0a7"; } + +.fa-hand-point-left:before { + content: "\f0a5"; } + +.fa-hand-point-right:before { + content: "\f0a4"; } + +.fa-hand-point-up:before { + content: "\f0a6"; } + +.fa-hand-pointer:before { + content: "\f25a"; } + +.fa-hand-rock:before { + content: "\f255"; } + +.fa-hand-scissors:before { + content: "\f257"; } + +.fa-hand-spock:before { + content: "\f259"; } + +.fa-hands:before { + content: "\f4c2"; } + +.fa-hands-helping:before { + content: "\f4c4"; } + +.fa-handshake:before { + content: "\f2b5"; } + +.fa-hashtag:before { + content: "\f292"; } + +.fa-hdd:before { + content: "\f0a0"; } + +.fa-heading:before { + content: "\f1dc"; } + +.fa-headphones:before { + content: "\f025"; } + +.fa-headphones-alt:before { + content: "\f58f"; } + +.fa-headset:before { + content: "\f590"; } + +.fa-heart:before { + content: "\f004"; } + +.fa-heartbeat:before { + content: "\f21e"; } + +.fa-helicopter:before { + content: "\f533"; } + +.fa-highlighter:before { + content: "\f591"; } + +.fa-hips:before { + content: "\f452"; } + +.fa-hire-a-helper:before { + content: "\f3b0"; } + +.fa-history:before { + content: "\f1da"; } + +.fa-hockey-puck:before { + content: "\f453"; } + +.fa-home:before { + content: "\f015"; } + +.fa-hooli:before { + content: "\f427"; } + +.fa-hornbill:before { + content: "\f592"; } + +.fa-hospital:before { + content: "\f0f8"; } + +.fa-hospital-alt:before { + content: "\f47d"; } + +.fa-hospital-symbol:before { + content: "\f47e"; } + +.fa-hot-tub:before { + content: "\f593"; } + +.fa-hotel:before { + content: "\f594"; } + +.fa-hotjar:before { + content: "\f3b1"; } + +.fa-hourglass:before { + content: "\f254"; } + +.fa-hourglass-end:before { + content: "\f253"; } + +.fa-hourglass-half:before { + content: "\f252"; } + +.fa-hourglass-start:before { + content: "\f251"; } + +.fa-houzz:before { + content: "\f27c"; } + +.fa-html5:before { + content: "\f13b"; } + +.fa-hubspot:before { + content: "\f3b2"; } + +.fa-i-cursor:before { + content: "\f246"; } + +.fa-id-badge:before { + content: "\f2c1"; } + +.fa-id-card:before { + content: "\f2c2"; } + +.fa-id-card-alt:before { + content: "\f47f"; } + +.fa-image:before { + content: "\f03e"; } + +.fa-images:before { + content: "\f302"; } + +.fa-imdb:before { + content: "\f2d8"; } + +.fa-inbox:before { + content: "\f01c"; } + +.fa-indent:before { + content: "\f03c"; } + +.fa-industry:before { + content: "\f275"; } + +.fa-infinity:before { + content: "\f534"; } + +.fa-info:before { + content: "\f129"; } + +.fa-info-circle:before { + content: "\f05a"; } + +.fa-instagram:before { + content: "\f16d"; } + +.fa-internet-explorer:before { + content: "\f26b"; } + +.fa-ioxhost:before { + content: "\f208"; } + +.fa-italic:before { + content: "\f033"; } + +.fa-itunes:before { + content: "\f3b4"; } + +.fa-itunes-note:before { + content: "\f3b5"; } + +.fa-java:before { + content: "\f4e4"; } + +.fa-jedi-order:before { + content: "\f50e"; } + +.fa-jenkins:before { + content: "\f3b6"; } + +.fa-joget:before { + content: "\f3b7"; } + +.fa-joint:before { + content: "\f595"; } + +.fa-joomla:before { + content: "\f1aa"; } + +.fa-js:before { + content: "\f3b8"; } + +.fa-js-square:before { + content: "\f3b9"; } + +.fa-jsfiddle:before { + content: "\f1cc"; } + +.fa-key:before { + content: "\f084"; } + +.fa-keybase:before { + content: "\f4f5"; } + +.fa-keyboard:before { + content: "\f11c"; } + +.fa-keycdn:before { + content: "\f3ba"; } + +.fa-kickstarter:before { + content: "\f3bb"; } + +.fa-kickstarter-k:before { + content: "\f3bc"; } + +.fa-kiss:before { + content: "\f596"; } + +.fa-kiss-beam:before { + content: "\f597"; } + +.fa-kiss-wink-heart:before { + content: "\f598"; } + +.fa-kiwi-bird:before { + content: "\f535"; } + +.fa-korvue:before { + content: "\f42f"; } + +.fa-language:before { + content: "\f1ab"; } + +.fa-laptop:before { + content: "\f109"; } + +.fa-laravel:before { + content: "\f3bd"; } + +.fa-lastfm:before { + content: "\f202"; } + +.fa-lastfm-square:before { + content: "\f203"; } + +.fa-laugh:before { + content: "\f599"; } + +.fa-laugh-beam:before { + content: "\f59a"; } + +.fa-laugh-squint:before { + content: "\f59b"; } + +.fa-laugh-wink:before { + content: "\f59c"; } + +.fa-leaf:before { + content: "\f06c"; } + +.fa-leanpub:before { + content: "\f212"; } + +.fa-lemon:before { + content: "\f094"; } + +.fa-less:before { + content: "\f41d"; } + +.fa-less-than:before { + content: "\f536"; } + +.fa-less-than-equal:before { + content: "\f537"; } + +.fa-level-down-alt:before { + content: "\f3be"; } + +.fa-level-up-alt:before { + content: "\f3bf"; } + +.fa-life-ring:before { + content: "\f1cd"; } + +.fa-lightbulb:before { + content: "\f0eb"; } + +.fa-line:before { + content: "\f3c0"; } + +.fa-link:before { + content: "\f0c1"; } + +.fa-linkedin:before { + content: "\f08c"; } + +.fa-linkedin-in:before { + content: "\f0e1"; } + +.fa-linode:before { + content: "\f2b8"; } + +.fa-linux:before { + content: "\f17c"; } + +.fa-lira-sign:before { + content: "\f195"; } + +.fa-list:before { + content: "\f03a"; } + +.fa-list-alt:before { + content: "\f022"; } + +.fa-list-ol:before { + content: "\f0cb"; } + +.fa-list-ul:before { + content: "\f0ca"; } + +.fa-location-arrow:before { + content: "\f124"; } + +.fa-lock:before { + content: "\f023"; } + +.fa-lock-open:before { + content: "\f3c1"; } + +.fa-long-arrow-alt-down:before { + content: "\f309"; } + +.fa-long-arrow-alt-left:before { + content: "\f30a"; } + +.fa-long-arrow-alt-right:before { + content: "\f30b"; } + +.fa-long-arrow-alt-up:before { + content: "\f30c"; } + +.fa-low-vision:before { + content: "\f2a8"; } + +.fa-luggage-cart:before { + content: "\f59d"; } + +.fa-lyft:before { + content: "\f3c3"; } + +.fa-magento:before { + content: "\f3c4"; } + +.fa-magic:before { + content: "\f0d0"; } + +.fa-magnet:before { + content: "\f076"; } + +.fa-mailchimp:before { + content: "\f59e"; } + +.fa-male:before { + content: "\f183"; } + +.fa-mandalorian:before { + content: "\f50f"; } + +.fa-map:before { + content: "\f279"; } + +.fa-map-marked:before { + content: "\f59f"; } + +.fa-map-marked-alt:before { + content: "\f5a0"; } + +.fa-map-marker:before { + content: "\f041"; } + +.fa-map-marker-alt:before { + content: "\f3c5"; } + +.fa-map-pin:before { + content: "\f276"; } + +.fa-map-signs:before { + content: "\f277"; } + +.fa-marker:before { + content: "\f5a1"; } + +.fa-mars:before { + content: "\f222"; } + +.fa-mars-double:before { + content: "\f227"; } + +.fa-mars-stroke:before { + content: "\f229"; } + +.fa-mars-stroke-h:before { + content: "\f22b"; } + +.fa-mars-stroke-v:before { + content: "\f22a"; } + +.fa-mastodon:before { + content: "\f4f6"; } + +.fa-maxcdn:before { + content: "\f136"; } + +.fa-medal:before { + content: "\f5a2"; } + +.fa-medapps:before { + content: "\f3c6"; } + +.fa-medium:before { + content: "\f23a"; } + +.fa-medium-m:before { + content: "\f3c7"; } + +.fa-medkit:before { + content: "\f0fa"; } + +.fa-medrt:before { + content: "\f3c8"; } + +.fa-meetup:before { + content: "\f2e0"; } + +.fa-megaport:before { + content: "\f5a3"; } + +.fa-meh:before { + content: "\f11a"; } + +.fa-meh-blank:before { + content: "\f5a4"; } + +.fa-meh-rolling-eyes:before { + content: "\f5a5"; } + +.fa-memory:before { + content: "\f538"; } + +.fa-mercury:before { + content: "\f223"; } + +.fa-microchip:before { + content: "\f2db"; } + +.fa-microphone:before { + content: "\f130"; } + +.fa-microphone-alt:before { + content: "\f3c9"; } + +.fa-microphone-alt-slash:before { + content: "\f539"; } + +.fa-microphone-slash:before { + content: "\f131"; } + +.fa-microsoft:before { + content: "\f3ca"; } + +.fa-minus:before { + content: "\f068"; } + +.fa-minus-circle:before { + content: "\f056"; } + +.fa-minus-square:before { + content: "\f146"; } + +.fa-mix:before { + content: "\f3cb"; } + +.fa-mixcloud:before { + content: "\f289"; } + +.fa-mizuni:before { + content: "\f3cc"; } + +.fa-mobile:before { + content: "\f10b"; } + +.fa-mobile-alt:before { + content: "\f3cd"; } + +.fa-modx:before { + content: "\f285"; } + +.fa-monero:before { + content: "\f3d0"; } + +.fa-money-bill:before { + content: "\f0d6"; } + +.fa-money-bill-alt:before { + content: "\f3d1"; } + +.fa-money-bill-wave:before { + content: "\f53a"; } + +.fa-money-bill-wave-alt:before { + content: "\f53b"; } + +.fa-money-check:before { + content: "\f53c"; } + +.fa-money-check-alt:before { + content: "\f53d"; } + +.fa-monument:before { + content: "\f5a6"; } + +.fa-moon:before { + content: "\f186"; } + +.fa-mortar-pestle:before { + content: "\f5a7"; } + +.fa-motorcycle:before { + content: "\f21c"; } + +.fa-mouse-pointer:before { + content: "\f245"; } + +.fa-music:before { + content: "\f001"; } + +.fa-napster:before { + content: "\f3d2"; } + +.fa-neuter:before { + content: "\f22c"; } + +.fa-newspaper:before { + content: "\f1ea"; } + +.fa-nimblr:before { + content: "\f5a8"; } + +.fa-nintendo-switch:before { + content: "\f418"; } + +.fa-node:before { + content: "\f419"; } + +.fa-node-js:before { + content: "\f3d3"; } + +.fa-not-equal:before { + content: "\f53e"; } + +.fa-notes-medical:before { + content: "\f481"; } + +.fa-npm:before { + content: "\f3d4"; } + +.fa-ns8:before { + content: "\f3d5"; } + +.fa-nutritionix:before { + content: "\f3d6"; } + +.fa-object-group:before { + content: "\f247"; } + +.fa-object-ungroup:before { + content: "\f248"; } + +.fa-odnoklassniki:before { + content: "\f263"; } + +.fa-odnoklassniki-square:before { + content: "\f264"; } + +.fa-old-republic:before { + content: "\f510"; } + +.fa-opencart:before { + content: "\f23d"; } + +.fa-openid:before { + content: "\f19b"; } + +.fa-opera:before { + content: "\f26a"; } + +.fa-optin-monster:before { + content: "\f23c"; } + +.fa-osi:before { + content: "\f41a"; } + +.fa-outdent:before { + content: "\f03b"; } + +.fa-page4:before { + content: "\f3d7"; } + +.fa-pagelines:before { + content: "\f18c"; } + +.fa-paint-brush:before { + content: "\f1fc"; } + +.fa-paint-roller:before { + content: "\f5aa"; } + +.fa-palette:before { + content: "\f53f"; } + +.fa-palfed:before { + content: "\f3d8"; } + +.fa-pallet:before { + content: "\f482"; } + +.fa-paper-plane:before { + content: "\f1d8"; } + +.fa-paperclip:before { + content: "\f0c6"; } + +.fa-parachute-box:before { + content: "\f4cd"; } + +.fa-paragraph:before { + content: "\f1dd"; } + +.fa-parking:before { + content: "\f540"; } + +.fa-passport:before { + content: "\f5ab"; } + +.fa-paste:before { + content: "\f0ea"; } + +.fa-patreon:before { + content: "\f3d9"; } + +.fa-pause:before { + content: "\f04c"; } + +.fa-pause-circle:before { + content: "\f28b"; } + +.fa-paw:before { + content: "\f1b0"; } + +.fa-paypal:before { + content: "\f1ed"; } + +.fa-pen:before { + content: "\f304"; } + +.fa-pen-alt:before { + content: "\f305"; } + +.fa-pen-fancy:before { + content: "\f5ac"; } + +.fa-pen-nib:before { + content: "\f5ad"; } + +.fa-pen-square:before { + content: "\f14b"; } + +.fa-pencil-alt:before { + content: "\f303"; } + +.fa-pencil-ruler:before { + content: "\f5ae"; } + +.fa-people-carry:before { + content: "\f4ce"; } + +.fa-percent:before { + content: "\f295"; } + +.fa-percentage:before { + content: "\f541"; } + +.fa-periscope:before { + content: "\f3da"; } + +.fa-phabricator:before { + content: "\f3db"; } + +.fa-phoenix-framework:before { + content: "\f3dc"; } + +.fa-phoenix-squadron:before { + content: "\f511"; } + +.fa-phone:before { + content: "\f095"; } + +.fa-phone-slash:before { + content: "\f3dd"; } + +.fa-phone-square:before { + content: "\f098"; } + +.fa-phone-volume:before { + content: "\f2a0"; } + +.fa-php:before { + content: "\f457"; } + +.fa-pied-piper:before { + content: "\f2ae"; } + +.fa-pied-piper-alt:before { + content: "\f1a8"; } + +.fa-pied-piper-hat:before { + content: "\f4e5"; } + +.fa-pied-piper-pp:before { + content: "\f1a7"; } + +.fa-piggy-bank:before { + content: "\f4d3"; } + +.fa-pills:before { + content: "\f484"; } + +.fa-pinterest:before { + content: "\f0d2"; } + +.fa-pinterest-p:before { + content: "\f231"; } + +.fa-pinterest-square:before { + content: "\f0d3"; } + +.fa-plane:before { + content: "\f072"; } + +.fa-plane-arrival:before { + content: "\f5af"; } + +.fa-plane-departure:before { + content: "\f5b0"; } + +.fa-play:before { + content: "\f04b"; } + +.fa-play-circle:before { + content: "\f144"; } + +.fa-playstation:before { + content: "\f3df"; } + +.fa-plug:before { + content: "\f1e6"; } + +.fa-plus:before { + content: "\f067"; } + +.fa-plus-circle:before { + content: "\f055"; } + +.fa-plus-square:before { + content: "\f0fe"; } + +.fa-podcast:before { + content: "\f2ce"; } + +.fa-poo:before { + content: "\f2fe"; } + +.fa-portrait:before { + content: "\f3e0"; } + +.fa-pound-sign:before { + content: "\f154"; } + +.fa-power-off:before { + content: "\f011"; } + +.fa-prescription:before { + content: "\f5b1"; } + +.fa-prescription-bottle:before { + content: "\f485"; } + +.fa-prescription-bottle-alt:before { + content: "\f486"; } + +.fa-print:before { + content: "\f02f"; } + +.fa-procedures:before { + content: "\f487"; } + +.fa-product-hunt:before { + content: "\f288"; } + +.fa-project-diagram:before { + content: "\f542"; } + +.fa-pushed:before { + content: "\f3e1"; } + +.fa-puzzle-piece:before { + content: "\f12e"; } + +.fa-python:before { + content: "\f3e2"; } + +.fa-qq:before { + content: "\f1d6"; } + +.fa-qrcode:before { + content: "\f029"; } + +.fa-question:before { + content: "\f128"; } + +.fa-question-circle:before { + content: "\f059"; } + +.fa-quidditch:before { + content: "\f458"; } + +.fa-quinscape:before { + content: "\f459"; } + +.fa-quora:before { + content: "\f2c4"; } + +.fa-quote-left:before { + content: "\f10d"; } + +.fa-quote-right:before { + content: "\f10e"; } + +.fa-r-project:before { + content: "\f4f7"; } + +.fa-random:before { + content: "\f074"; } + +.fa-ravelry:before { + content: "\f2d9"; } + +.fa-react:before { + content: "\f41b"; } + +.fa-readme:before { + content: "\f4d5"; } + +.fa-rebel:before { + content: "\f1d0"; } + +.fa-receipt:before { + content: "\f543"; } + +.fa-recycle:before { + content: "\f1b8"; } + +.fa-red-river:before { + content: "\f3e3"; } + +.fa-reddit:before { + content: "\f1a1"; } + +.fa-reddit-alien:before { + content: "\f281"; } + +.fa-reddit-square:before { + content: "\f1a2"; } + +.fa-redo:before { + content: "\f01e"; } + +.fa-redo-alt:before { + content: "\f2f9"; } + +.fa-registered:before { + content: "\f25d"; } + +.fa-rendact:before { + content: "\f3e4"; } + +.fa-renren:before { + content: "\f18b"; } + +.fa-reply:before { + content: "\f3e5"; } + +.fa-reply-all:before { + content: "\f122"; } + +.fa-replyd:before { + content: "\f3e6"; } + +.fa-researchgate:before { + content: "\f4f8"; } + +.fa-resolving:before { + content: "\f3e7"; } + +.fa-retweet:before { + content: "\f079"; } + +.fa-rev:before { + content: "\f5b2"; } + +.fa-ribbon:before { + content: "\f4d6"; } + +.fa-road:before { + content: "\f018"; } + +.fa-robot:before { + content: "\f544"; } + +.fa-rocket:before { + content: "\f135"; } + +.fa-rocketchat:before { + content: "\f3e8"; } + +.fa-rockrms:before { + content: "\f3e9"; } + +.fa-rss:before { + content: "\f09e"; } + +.fa-rss-square:before { + content: "\f143"; } + +.fa-ruble-sign:before { + content: "\f158"; } + +.fa-ruler:before { + content: "\f545"; } + +.fa-ruler-combined:before { + content: "\f546"; } + +.fa-ruler-horizontal:before { + content: "\f547"; } + +.fa-ruler-vertical:before { + content: "\f548"; } + +.fa-rupee-sign:before { + content: "\f156"; } + +.fa-sad-cry:before { + content: "\f5b3"; } + +.fa-sad-tear:before { + content: "\f5b4"; } + +.fa-safari:before { + content: "\f267"; } + +.fa-sass:before { + content: "\f41e"; } + +.fa-save:before { + content: "\f0c7"; } + +.fa-schlix:before { + content: "\f3ea"; } + +.fa-school:before { + content: "\f549"; } + +.fa-screwdriver:before { + content: "\f54a"; } + +.fa-scribd:before { + content: "\f28a"; } + +.fa-search:before { + content: "\f002"; } + +.fa-search-minus:before { + content: "\f010"; } + +.fa-search-plus:before { + content: "\f00e"; } + +.fa-searchengin:before { + content: "\f3eb"; } + +.fa-seedling:before { + content: "\f4d8"; } + +.fa-sellcast:before { + content: "\f2da"; } + +.fa-sellsy:before { + content: "\f213"; } + +.fa-server:before { + content: "\f233"; } + +.fa-servicestack:before { + content: "\f3ec"; } + +.fa-share:before { + content: "\f064"; } + +.fa-share-alt:before { + content: "\f1e0"; } + +.fa-share-alt-square:before { + content: "\f1e1"; } + +.fa-share-square:before { + content: "\f14d"; } + +.fa-shekel-sign:before { + content: "\f20b"; } + +.fa-shield-alt:before { + content: "\f3ed"; } + +.fa-ship:before { + content: "\f21a"; } + +.fa-shipping-fast:before { + content: "\f48b"; } + +.fa-shirtsinbulk:before { + content: "\f214"; } + +.fa-shoe-prints:before { + content: "\f54b"; } + +.fa-shopping-bag:before { + content: "\f290"; } + +.fa-shopping-basket:before { + content: "\f291"; } + +.fa-shopping-cart:before { + content: "\f07a"; } + +.fa-shopware:before { + content: "\f5b5"; } + +.fa-shower:before { + content: "\f2cc"; } + +.fa-shuttle-van:before { + content: "\f5b6"; } + +.fa-sign:before { + content: "\f4d9"; } + +.fa-sign-in-alt:before { + content: "\f2f6"; } + +.fa-sign-language:before { + content: "\f2a7"; } + +.fa-sign-out-alt:before { + content: "\f2f5"; } + +.fa-signal:before { + content: "\f012"; } + +.fa-signature:before { + content: "\f5b7"; } + +.fa-simplybuilt:before { + content: "\f215"; } + +.fa-sistrix:before { + content: "\f3ee"; } + +.fa-sitemap:before { + content: "\f0e8"; } + +.fa-sith:before { + content: "\f512"; } + +.fa-skull:before { + content: "\f54c"; } + +.fa-skyatlas:before { + content: "\f216"; } + +.fa-skype:before { + content: "\f17e"; } + +.fa-slack:before { + content: "\f198"; } + +.fa-slack-hash:before { + content: "\f3ef"; } + +.fa-sliders-h:before { + content: "\f1de"; } + +.fa-slideshare:before { + content: "\f1e7"; } + +.fa-smile:before { + content: "\f118"; } + +.fa-smile-beam:before { + content: "\f5b8"; } + +.fa-smile-wink:before { + content: "\f4da"; } + +.fa-smoking:before { + content: "\f48d"; } + +.fa-smoking-ban:before { + content: "\f54d"; } + +.fa-snapchat:before { + content: "\f2ab"; } + +.fa-snapchat-ghost:before { + content: "\f2ac"; } + +.fa-snapchat-square:before { + content: "\f2ad"; } + +.fa-snowflake:before { + content: "\f2dc"; } + +.fa-solar-panel:before { + content: "\f5ba"; } + +.fa-sort:before { + content: "\f0dc"; } + +.fa-sort-alpha-down:before { + content: "\f15d"; } + +.fa-sort-alpha-up:before { + content: "\f15e"; } + +.fa-sort-amount-down:before { + content: "\f160"; } + +.fa-sort-amount-up:before { + content: "\f161"; } + +.fa-sort-down:before { + content: "\f0dd"; } + +.fa-sort-numeric-down:before { + content: "\f162"; } + +.fa-sort-numeric-up:before { + content: "\f163"; } + +.fa-sort-up:before { + content: "\f0de"; } + +.fa-soundcloud:before { + content: "\f1be"; } + +.fa-spa:before { + content: "\f5bb"; } + +.fa-space-shuttle:before { + content: "\f197"; } + +.fa-speakap:before { + content: "\f3f3"; } + +.fa-spinner:before { + content: "\f110"; } + +.fa-splotch:before { + content: "\f5bc"; } + +.fa-spotify:before { + content: "\f1bc"; } + +.fa-spray-can:before { + content: "\f5bd"; } + +.fa-square:before { + content: "\f0c8"; } + +.fa-square-full:before { + content: "\f45c"; } + +.fa-squarespace:before { + content: "\f5be"; } + +.fa-stack-exchange:before { + content: "\f18d"; } + +.fa-stack-overflow:before { + content: "\f16c"; } + +.fa-stamp:before { + content: "\f5bf"; } + +.fa-star:before { + content: "\f005"; } + +.fa-star-half:before { + content: "\f089"; } + +.fa-star-half-alt:before { + content: "\f5c0"; } + +.fa-staylinked:before { + content: "\f3f5"; } + +.fa-steam:before { + content: "\f1b6"; } + +.fa-steam-square:before { + content: "\f1b7"; } + +.fa-steam-symbol:before { + content: "\f3f6"; } + +.fa-step-backward:before { + content: "\f048"; } + +.fa-step-forward:before { + content: "\f051"; } + +.fa-stethoscope:before { + content: "\f0f1"; } + +.fa-sticker-mule:before { + content: "\f3f7"; } + +.fa-sticky-note:before { + content: "\f249"; } + +.fa-stop:before { + content: "\f04d"; } + +.fa-stop-circle:before { + content: "\f28d"; } + +.fa-stopwatch:before { + content: "\f2f2"; } + +.fa-store:before { + content: "\f54e"; } + +.fa-store-alt:before { + content: "\f54f"; } + +.fa-strava:before { + content: "\f428"; } + +.fa-stream:before { + content: "\f550"; } + +.fa-street-view:before { + content: "\f21d"; } + +.fa-strikethrough:before { + content: "\f0cc"; } + +.fa-stripe:before { + content: "\f429"; } + +.fa-stripe-s:before { + content: "\f42a"; } + +.fa-stroopwafel:before { + content: "\f551"; } + +.fa-studiovinari:before { + content: "\f3f8"; } + +.fa-stumbleupon:before { + content: "\f1a4"; } + +.fa-stumbleupon-circle:before { + content: "\f1a3"; } + +.fa-subscript:before { + content: "\f12c"; } + +.fa-subway:before { + content: "\f239"; } + +.fa-suitcase:before { + content: "\f0f2"; } + +.fa-suitcase-rolling:before { + content: "\f5c1"; } + +.fa-sun:before { + content: "\f185"; } + +.fa-superpowers:before { + content: "\f2dd"; } + +.fa-superscript:before { + content: "\f12b"; } + +.fa-supple:before { + content: "\f3f9"; } + +.fa-surprise:before { + content: "\f5c2"; } + +.fa-swatchbook:before { + content: "\f5c3"; } + +.fa-swimmer:before { + content: "\f5c4"; } + +.fa-swimming-pool:before { + content: "\f5c5"; } + +.fa-sync:before { + content: "\f021"; } + +.fa-sync-alt:before { + content: "\f2f1"; } + +.fa-syringe:before { + content: "\f48e"; } + +.fa-table:before { + content: "\f0ce"; } + +.fa-table-tennis:before { + content: "\f45d"; } + +.fa-tablet:before { + content: "\f10a"; } + +.fa-tablet-alt:before { + content: "\f3fa"; } + +.fa-tablets:before { + content: "\f490"; } + +.fa-tachometer-alt:before { + content: "\f3fd"; } + +.fa-tag:before { + content: "\f02b"; } + +.fa-tags:before { + content: "\f02c"; } + +.fa-tape:before { + content: "\f4db"; } + +.fa-tasks:before { + content: "\f0ae"; } + +.fa-taxi:before { + content: "\f1ba"; } + +.fa-teamspeak:before { + content: "\f4f9"; } + +.fa-telegram:before { + content: "\f2c6"; } + +.fa-telegram-plane:before { + content: "\f3fe"; } + +.fa-tencent-weibo:before { + content: "\f1d5"; } + +.fa-terminal:before { + content: "\f120"; } + +.fa-text-height:before { + content: "\f034"; } + +.fa-text-width:before { + content: "\f035"; } + +.fa-th:before { + content: "\f00a"; } + +.fa-th-large:before { + content: "\f009"; } + +.fa-th-list:before { + content: "\f00b"; } + +.fa-themeco:before { + content: "\f5c6"; } + +.fa-themeisle:before { + content: "\f2b2"; } + +.fa-thermometer:before { + content: "\f491"; } + +.fa-thermometer-empty:before { + content: "\f2cb"; } + +.fa-thermometer-full:before { + content: "\f2c7"; } + +.fa-thermometer-half:before { + content: "\f2c9"; } + +.fa-thermometer-quarter:before { + content: "\f2ca"; } + +.fa-thermometer-three-quarters:before { + content: "\f2c8"; } + +.fa-thumbs-down:before { + content: "\f165"; } + +.fa-thumbs-up:before { + content: "\f164"; } + +.fa-thumbtack:before { + content: "\f08d"; } + +.fa-ticket-alt:before { + content: "\f3ff"; } + +.fa-times:before { + content: "\f00d"; } + +.fa-times-circle:before { + content: "\f057"; } + +.fa-tint:before { + content: "\f043"; } + +.fa-tint-slash:before { + content: "\f5c7"; } + +.fa-tired:before { + content: "\f5c8"; } + +.fa-toggle-off:before { + content: "\f204"; } + +.fa-toggle-on:before { + content: "\f205"; } + +.fa-toolbox:before { + content: "\f552"; } + +.fa-tooth:before { + content: "\f5c9"; } + +.fa-trade-federation:before { + content: "\f513"; } + +.fa-trademark:before { + content: "\f25c"; } + +.fa-train:before { + content: "\f238"; } + +.fa-transgender:before { + content: "\f224"; } + +.fa-transgender-alt:before { + content: "\f225"; } + +.fa-trash:before { + content: "\f1f8"; } + +.fa-trash-alt:before { + content: "\f2ed"; } + +.fa-tree:before { + content: "\f1bb"; } + +.fa-trello:before { + content: "\f181"; } + +.fa-tripadvisor:before { + content: "\f262"; } + +.fa-trophy:before { + content: "\f091"; } + +.fa-truck:before { + content: "\f0d1"; } + +.fa-truck-loading:before { + content: "\f4de"; } + +.fa-truck-moving:before { + content: "\f4df"; } + +.fa-tshirt:before { + content: "\f553"; } + +.fa-tty:before { + content: "\f1e4"; } + +.fa-tumblr:before { + content: "\f173"; } + +.fa-tumblr-square:before { + content: "\f174"; } + +.fa-tv:before { + content: "\f26c"; } + +.fa-twitch:before { + content: "\f1e8"; } + +.fa-twitter:before { + content: "\f099"; } + +.fa-twitter-square:before { + content: "\f081"; } + +.fa-typo3:before { + content: "\f42b"; } + +.fa-uber:before { + content: "\f402"; } + +.fa-uikit:before { + content: "\f403"; } + +.fa-umbrella:before { + content: "\f0e9"; } + +.fa-umbrella-beach:before { + content: "\f5ca"; } + +.fa-underline:before { + content: "\f0cd"; } + +.fa-undo:before { + content: "\f0e2"; } + +.fa-undo-alt:before { + content: "\f2ea"; } + +.fa-uniregistry:before { + content: "\f404"; } + +.fa-universal-access:before { + content: "\f29a"; } + +.fa-university:before { + content: "\f19c"; } + +.fa-unlink:before { + content: "\f127"; } + +.fa-unlock:before { + content: "\f09c"; } + +.fa-unlock-alt:before { + content: "\f13e"; } + +.fa-untappd:before { + content: "\f405"; } + +.fa-upload:before { + content: "\f093"; } + +.fa-usb:before { + content: "\f287"; } + +.fa-user:before { + content: "\f007"; } + +.fa-user-alt:before { + content: "\f406"; } + +.fa-user-alt-slash:before { + content: "\f4fa"; } + +.fa-user-astronaut:before { + content: "\f4fb"; } + +.fa-user-check:before { + content: "\f4fc"; } + +.fa-user-circle:before { + content: "\f2bd"; } + +.fa-user-clock:before { + content: "\f4fd"; } + +.fa-user-cog:before { + content: "\f4fe"; } + +.fa-user-edit:before { + content: "\f4ff"; } + +.fa-user-friends:before { + content: "\f500"; } + +.fa-user-graduate:before { + content: "\f501"; } + +.fa-user-lock:before { + content: "\f502"; } + +.fa-user-md:before { + content: "\f0f0"; } + +.fa-user-minus:before { + content: "\f503"; } + +.fa-user-ninja:before { + content: "\f504"; } + +.fa-user-plus:before { + content: "\f234"; } + +.fa-user-secret:before { + content: "\f21b"; } + +.fa-user-shield:before { + content: "\f505"; } + +.fa-user-slash:before { + content: "\f506"; } + +.fa-user-tag:before { + content: "\f507"; } + +.fa-user-tie:before { + content: "\f508"; } + +.fa-user-times:before { + content: "\f235"; } + +.fa-users:before { + content: "\f0c0"; } + +.fa-users-cog:before { + content: "\f509"; } + +.fa-ussunnah:before { + content: "\f407"; } + +.fa-utensil-spoon:before { + content: "\f2e5"; } + +.fa-utensils:before { + content: "\f2e7"; } + +.fa-vaadin:before { + content: "\f408"; } + +.fa-vector-square:before { + content: "\f5cb"; } + +.fa-venus:before { + content: "\f221"; } + +.fa-venus-double:before { + content: "\f226"; } + +.fa-venus-mars:before { + content: "\f228"; } + +.fa-viacoin:before { + content: "\f237"; } + +.fa-viadeo:before { + content: "\f2a9"; } + +.fa-viadeo-square:before { + content: "\f2aa"; } + +.fa-vial:before { + content: "\f492"; } + +.fa-vials:before { + content: "\f493"; } + +.fa-viber:before { + content: "\f409"; } + +.fa-video:before { + content: "\f03d"; } + +.fa-video-slash:before { + content: "\f4e2"; } + +.fa-vimeo:before { + content: "\f40a"; } + +.fa-vimeo-square:before { + content: "\f194"; } + +.fa-vimeo-v:before { + content: "\f27d"; } + +.fa-vine:before { + content: "\f1ca"; } + +.fa-vk:before { + content: "\f189"; } + +.fa-vnv:before { + content: "\f40b"; } + +.fa-volleyball-ball:before { + content: "\f45f"; } + +.fa-volume-down:before { + content: "\f027"; } + +.fa-volume-off:before { + content: "\f026"; } + +.fa-volume-up:before { + content: "\f028"; } + +.fa-vuejs:before { + content: "\f41f"; } + +.fa-walking:before { + content: "\f554"; } + +.fa-wallet:before { + content: "\f555"; } + +.fa-warehouse:before { + content: "\f494"; } + +.fa-weebly:before { + content: "\f5cc"; } + +.fa-weibo:before { + content: "\f18a"; } + +.fa-weight:before { + content: "\f496"; } + +.fa-weight-hanging:before { + content: "\f5cd"; } + +.fa-weixin:before { + content: "\f1d7"; } + +.fa-whatsapp:before { + content: "\f232"; } + +.fa-whatsapp-square:before { + content: "\f40c"; } + +.fa-wheelchair:before { + content: "\f193"; } + +.fa-whmcs:before { + content: "\f40d"; } + +.fa-wifi:before { + content: "\f1eb"; } + +.fa-wikipedia-w:before { + content: "\f266"; } + +.fa-window-close:before { + content: "\f410"; } + +.fa-window-maximize:before { + content: "\f2d0"; } + +.fa-window-minimize:before { + content: "\f2d1"; } + +.fa-window-restore:before { + content: "\f2d2"; } + +.fa-windows:before { + content: "\f17a"; } + +.fa-wine-glass:before { + content: "\f4e3"; } + +.fa-wine-glass-alt:before { + content: "\f5ce"; } + +.fa-wix:before { + content: "\f5cf"; } + +.fa-wolf-pack-battalion:before { + content: "\f514"; } + +.fa-won-sign:before { + content: "\f159"; } + +.fa-wordpress:before { + content: "\f19a"; } + +.fa-wordpress-simple:before { + content: "\f411"; } + +.fa-wpbeginner:before { + content: "\f297"; } + +.fa-wpexplorer:before { + content: "\f2de"; } + +.fa-wpforms:before { + content: "\f298"; } + +.fa-wrench:before { + content: "\f0ad"; } + +.fa-x-ray:before { + content: "\f497"; } + +.fa-xbox:before { + content: "\f412"; } + +.fa-xing:before { + content: "\f168"; } + +.fa-xing-square:before { + content: "\f169"; } + +.fa-y-combinator:before { + content: "\f23b"; } + +.fa-yahoo:before { + content: "\f19e"; } + +.fa-yandex:before { + content: "\f413"; } + +.fa-yandex-international:before { + content: "\f414"; } + +.fa-yelp:before { + content: "\f1e9"; } + +.fa-yen-sign:before { + content: "\f157"; } + +.fa-yoast:before { + content: "\f2b1"; } + +.fa-youtube:before { + content: "\f167"; } + +.fa-youtube-square:before { + content: "\f431"; } + +.sr-only { + border: 0; + clip: rect(0, 0, 0, 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; } + +.sr-only-focusable:active, .sr-only-focusable:focus { + clip: auto; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto; } +@font-face { + font-family: 'Font Awesome 5 Brands'; + font-style: normal; + font-weight: normal; + src: url("../webfonts/fa-brands-400.eot"); + src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg"); } + +.fab { + font-family: 'Font Awesome 5 Brands'; } +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 400; + src: url("../webfonts/fa-regular-400.eot"); + src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.woff") format("woff"), url("../webfonts/fa-regular-400.ttf") format("truetype"), url("../webfonts/fa-regular-400.svg#fontawesome") format("svg"); } + +.far { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 900; + src: url("../webfonts/fa-solid-900.eot"); + src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg"); } + +.fa, +.fas { + font-family: 'Font Awesome 5 Free'; + font-weight: 900; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/all.min.css b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/all.min.css new file mode 100644 index 0000000000..740543d89f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/all.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:a 2s infinite linear}.fa-pulse{animation:a 1s infinite steps(8)}@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-balance-scale:before{content:"\f24e"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blind:before{content:"\f29d"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-open:before{content:"\f518"}.fa-bookmark:before{content:"\f02e"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-certificate:before{content:"\f0a3"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-concierge-bell:before{content:"\f562"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-credit-card:before{content:"\f09d"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-deviantart:before{content:"\f1bd"}.fa-diagnoses:before{content:"\f470"}.fa-dice:before{content:"\f522"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-gift:before{content:"\f06b"}.fa-git:before{content:"\f1d3"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hashtag:before{content:"\f292"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-houzz:before{content:"\f27c"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-internet-explorer:before{content:"\f26b"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mercury:before{content:"\f223"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-motorcycle:before{content:"\f21c"}.fa-mouse-pointer:before{content:"\f245"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-old-republic:before{content:"\f510"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-people-carry:before{content:"\f4ce"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poo:before{content:"\f2fe"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-r-project:before{content:"\f4f7"}.fa-random:before{content:"\f074"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-rendact:before{content:"\f3e4"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-sass:before{content:"\f41e"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-search:before{content:"\f002"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skull:before{content:"\f54c"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowflake:before{content:"\f2dc"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toolbox:before{content:"\f552"}.fa-tooth:before{content:"\f5c9"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-train:before{content:"\f238"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-moving:before{content:"\f4df"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/brands.css b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/brands.css new file mode 100644 index 0000000000..6e3dc55dd3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/brands.css @@ -0,0 +1,13 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face { + font-family: 'Font Awesome 5 Brands'; + font-style: normal; + font-weight: normal; + src: url("../webfonts/fa-brands-400.eot"); + src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg"); } + +.fab { + font-family: 'Font Awesome 5 Brands'; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/brands.min.css b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/brands.min.css new file mode 100644 index 0000000000..69c6f029c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/brands.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/fontawesome.css b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/fontawesome.css new file mode 100644 index 0000000000..a75f8cafa9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/fontawesome.css @@ -0,0 +1,3542 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa, +.fas, +.far, +.fal, +.fab { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + line-height: 1; } + +.fa-lg { + font-size: 1.33333em; + line-height: 0.75em; + vertical-align: -.0667em; } + +.fa-xs { + font-size: .75em; } + +.fa-sm { + font-size: .875em; } + +.fa-1x { + font-size: 1em; } + +.fa-2x { + font-size: 2em; } + +.fa-3x { + font-size: 3em; } + +.fa-4x { + font-size: 4em; } + +.fa-5x { + font-size: 5em; } + +.fa-6x { + font-size: 6em; } + +.fa-7x { + font-size: 7em; } + +.fa-8x { + font-size: 8em; } + +.fa-9x { + font-size: 9em; } + +.fa-10x { + font-size: 10em; } + +.fa-fw { + text-align: center; + width: 1.25em; } + +.fa-ul { + list-style-type: none; + margin-left: 2.5em; + padding-left: 0; } + .fa-ul > li { + position: relative; } + +.fa-li { + left: -2em; + position: absolute; + text-align: center; + width: 2em; + line-height: inherit; } + +.fa-border { + border: solid 0.08em #eee; + border-radius: .1em; + padding: .2em .25em .15em; } + +.fa-pull-left { + float: left; } + +.fa-pull-right { + float: right; } + +.fa.fa-pull-left, +.fas.fa-pull-left, +.far.fa-pull-left, +.fal.fa-pull-left, +.fab.fa-pull-left { + margin-right: .3em; } + +.fa.fa-pull-right, +.fas.fa-pull-right, +.far.fa-pull-right, +.fal.fa-pull-right, +.fab.fa-pull-right { + margin-left: .3em; } + +.fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; } + +.fa-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); } + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +.fa-rotate-90 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); } + +.fa-rotate-180 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + transform: rotate(180deg); } + +.fa-rotate-270 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + transform: rotate(270deg); } + +.fa-flip-horizontal { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + -webkit-transform: scale(-1, 1); + transform: scale(-1, 1); } + +.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(1, -1); + transform: scale(1, -1); } + +.fa-flip-horizontal.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(-1, -1); + transform: scale(-1, -1); } + +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270, +:root .fa-flip-horizontal, +:root .fa-flip-vertical { + -webkit-filter: none; + filter: none; } + +.fa-stack { + display: inline-block; + height: 2em; + line-height: 2em; + position: relative; + vertical-align: middle; + width: 2em; } + +.fa-stack-1x, +.fa-stack-2x { + left: 0; + position: absolute; + text-align: center; + width: 100%; } + +.fa-stack-1x { + line-height: inherit; } + +.fa-stack-2x { + font-size: 2em; } + +.fa-inverse { + color: #fff; } + +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen +readers do not read off random characters that represent icons */ +.fa-500px:before { + content: "\f26e"; } + +.fa-accessible-icon:before { + content: "\f368"; } + +.fa-accusoft:before { + content: "\f369"; } + +.fa-address-book:before { + content: "\f2b9"; } + +.fa-address-card:before { + content: "\f2bb"; } + +.fa-adjust:before { + content: "\f042"; } + +.fa-adn:before { + content: "\f170"; } + +.fa-adversal:before { + content: "\f36a"; } + +.fa-affiliatetheme:before { + content: "\f36b"; } + +.fa-algolia:before { + content: "\f36c"; } + +.fa-align-center:before { + content: "\f037"; } + +.fa-align-justify:before { + content: "\f039"; } + +.fa-align-left:before { + content: "\f036"; } + +.fa-align-right:before { + content: "\f038"; } + +.fa-allergies:before { + content: "\f461"; } + +.fa-amazon:before { + content: "\f270"; } + +.fa-amazon-pay:before { + content: "\f42c"; } + +.fa-ambulance:before { + content: "\f0f9"; } + +.fa-american-sign-language-interpreting:before { + content: "\f2a3"; } + +.fa-amilia:before { + content: "\f36d"; } + +.fa-anchor:before { + content: "\f13d"; } + +.fa-android:before { + content: "\f17b"; } + +.fa-angellist:before { + content: "\f209"; } + +.fa-angle-double-down:before { + content: "\f103"; } + +.fa-angle-double-left:before { + content: "\f100"; } + +.fa-angle-double-right:before { + content: "\f101"; } + +.fa-angle-double-up:before { + content: "\f102"; } + +.fa-angle-down:before { + content: "\f107"; } + +.fa-angle-left:before { + content: "\f104"; } + +.fa-angle-right:before { + content: "\f105"; } + +.fa-angle-up:before { + content: "\f106"; } + +.fa-angry:before { + content: "\f556"; } + +.fa-angrycreative:before { + content: "\f36e"; } + +.fa-angular:before { + content: "\f420"; } + +.fa-app-store:before { + content: "\f36f"; } + +.fa-app-store-ios:before { + content: "\f370"; } + +.fa-apper:before { + content: "\f371"; } + +.fa-apple:before { + content: "\f179"; } + +.fa-apple-pay:before { + content: "\f415"; } + +.fa-archive:before { + content: "\f187"; } + +.fa-archway:before { + content: "\f557"; } + +.fa-arrow-alt-circle-down:before { + content: "\f358"; } + +.fa-arrow-alt-circle-left:before { + content: "\f359"; } + +.fa-arrow-alt-circle-right:before { + content: "\f35a"; } + +.fa-arrow-alt-circle-up:before { + content: "\f35b"; } + +.fa-arrow-circle-down:before { + content: "\f0ab"; } + +.fa-arrow-circle-left:before { + content: "\f0a8"; } + +.fa-arrow-circle-right:before { + content: "\f0a9"; } + +.fa-arrow-circle-up:before { + content: "\f0aa"; } + +.fa-arrow-down:before { + content: "\f063"; } + +.fa-arrow-left:before { + content: "\f060"; } + +.fa-arrow-right:before { + content: "\f061"; } + +.fa-arrow-up:before { + content: "\f062"; } + +.fa-arrows-alt:before { + content: "\f0b2"; } + +.fa-arrows-alt-h:before { + content: "\f337"; } + +.fa-arrows-alt-v:before { + content: "\f338"; } + +.fa-assistive-listening-systems:before { + content: "\f2a2"; } + +.fa-asterisk:before { + content: "\f069"; } + +.fa-asymmetrik:before { + content: "\f372"; } + +.fa-at:before { + content: "\f1fa"; } + +.fa-atlas:before { + content: "\f558"; } + +.fa-audible:before { + content: "\f373"; } + +.fa-audio-description:before { + content: "\f29e"; } + +.fa-autoprefixer:before { + content: "\f41c"; } + +.fa-avianex:before { + content: "\f374"; } + +.fa-aviato:before { + content: "\f421"; } + +.fa-award:before { + content: "\f559"; } + +.fa-aws:before { + content: "\f375"; } + +.fa-backspace:before { + content: "\f55a"; } + +.fa-backward:before { + content: "\f04a"; } + +.fa-balance-scale:before { + content: "\f24e"; } + +.fa-ban:before { + content: "\f05e"; } + +.fa-band-aid:before { + content: "\f462"; } + +.fa-bandcamp:before { + content: "\f2d5"; } + +.fa-barcode:before { + content: "\f02a"; } + +.fa-bars:before { + content: "\f0c9"; } + +.fa-baseball-ball:before { + content: "\f433"; } + +.fa-basketball-ball:before { + content: "\f434"; } + +.fa-bath:before { + content: "\f2cd"; } + +.fa-battery-empty:before { + content: "\f244"; } + +.fa-battery-full:before { + content: "\f240"; } + +.fa-battery-half:before { + content: "\f242"; } + +.fa-battery-quarter:before { + content: "\f243"; } + +.fa-battery-three-quarters:before { + content: "\f241"; } + +.fa-bed:before { + content: "\f236"; } + +.fa-beer:before { + content: "\f0fc"; } + +.fa-behance:before { + content: "\f1b4"; } + +.fa-behance-square:before { + content: "\f1b5"; } + +.fa-bell:before { + content: "\f0f3"; } + +.fa-bell-slash:before { + content: "\f1f6"; } + +.fa-bezier-curve:before { + content: "\f55b"; } + +.fa-bicycle:before { + content: "\f206"; } + +.fa-bimobject:before { + content: "\f378"; } + +.fa-binoculars:before { + content: "\f1e5"; } + +.fa-birthday-cake:before { + content: "\f1fd"; } + +.fa-bitbucket:before { + content: "\f171"; } + +.fa-bitcoin:before { + content: "\f379"; } + +.fa-bity:before { + content: "\f37a"; } + +.fa-black-tie:before { + content: "\f27e"; } + +.fa-blackberry:before { + content: "\f37b"; } + +.fa-blender:before { + content: "\f517"; } + +.fa-blind:before { + content: "\f29d"; } + +.fa-blogger:before { + content: "\f37c"; } + +.fa-blogger-b:before { + content: "\f37d"; } + +.fa-bluetooth:before { + content: "\f293"; } + +.fa-bluetooth-b:before { + content: "\f294"; } + +.fa-bold:before { + content: "\f032"; } + +.fa-bolt:before { + content: "\f0e7"; } + +.fa-bomb:before { + content: "\f1e2"; } + +.fa-bong:before { + content: "\f55c"; } + +.fa-book:before { + content: "\f02d"; } + +.fa-book-open:before { + content: "\f518"; } + +.fa-bookmark:before { + content: "\f02e"; } + +.fa-bowling-ball:before { + content: "\f436"; } + +.fa-box:before { + content: "\f466"; } + +.fa-box-open:before { + content: "\f49e"; } + +.fa-boxes:before { + content: "\f468"; } + +.fa-braille:before { + content: "\f2a1"; } + +.fa-briefcase:before { + content: "\f0b1"; } + +.fa-briefcase-medical:before { + content: "\f469"; } + +.fa-broadcast-tower:before { + content: "\f519"; } + +.fa-broom:before { + content: "\f51a"; } + +.fa-brush:before { + content: "\f55d"; } + +.fa-btc:before { + content: "\f15a"; } + +.fa-bug:before { + content: "\f188"; } + +.fa-building:before { + content: "\f1ad"; } + +.fa-bullhorn:before { + content: "\f0a1"; } + +.fa-bullseye:before { + content: "\f140"; } + +.fa-burn:before { + content: "\f46a"; } + +.fa-buromobelexperte:before { + content: "\f37f"; } + +.fa-bus:before { + content: "\f207"; } + +.fa-bus-alt:before { + content: "\f55e"; } + +.fa-buysellads:before { + content: "\f20d"; } + +.fa-calculator:before { + content: "\f1ec"; } + +.fa-calendar:before { + content: "\f133"; } + +.fa-calendar-alt:before { + content: "\f073"; } + +.fa-calendar-check:before { + content: "\f274"; } + +.fa-calendar-minus:before { + content: "\f272"; } + +.fa-calendar-plus:before { + content: "\f271"; } + +.fa-calendar-times:before { + content: "\f273"; } + +.fa-camera:before { + content: "\f030"; } + +.fa-camera-retro:before { + content: "\f083"; } + +.fa-cannabis:before { + content: "\f55f"; } + +.fa-capsules:before { + content: "\f46b"; } + +.fa-car:before { + content: "\f1b9"; } + +.fa-caret-down:before { + content: "\f0d7"; } + +.fa-caret-left:before { + content: "\f0d9"; } + +.fa-caret-right:before { + content: "\f0da"; } + +.fa-caret-square-down:before { + content: "\f150"; } + +.fa-caret-square-left:before { + content: "\f191"; } + +.fa-caret-square-right:before { + content: "\f152"; } + +.fa-caret-square-up:before { + content: "\f151"; } + +.fa-caret-up:before { + content: "\f0d8"; } + +.fa-cart-arrow-down:before { + content: "\f218"; } + +.fa-cart-plus:before { + content: "\f217"; } + +.fa-cc-amazon-pay:before { + content: "\f42d"; } + +.fa-cc-amex:before { + content: "\f1f3"; } + +.fa-cc-apple-pay:before { + content: "\f416"; } + +.fa-cc-diners-club:before { + content: "\f24c"; } + +.fa-cc-discover:before { + content: "\f1f2"; } + +.fa-cc-jcb:before { + content: "\f24b"; } + +.fa-cc-mastercard:before { + content: "\f1f1"; } + +.fa-cc-paypal:before { + content: "\f1f4"; } + +.fa-cc-stripe:before { + content: "\f1f5"; } + +.fa-cc-visa:before { + content: "\f1f0"; } + +.fa-centercode:before { + content: "\f380"; } + +.fa-certificate:before { + content: "\f0a3"; } + +.fa-chalkboard:before { + content: "\f51b"; } + +.fa-chalkboard-teacher:before { + content: "\f51c"; } + +.fa-chart-area:before { + content: "\f1fe"; } + +.fa-chart-bar:before { + content: "\f080"; } + +.fa-chart-line:before { + content: "\f201"; } + +.fa-chart-pie:before { + content: "\f200"; } + +.fa-check:before { + content: "\f00c"; } + +.fa-check-circle:before { + content: "\f058"; } + +.fa-check-double:before { + content: "\f560"; } + +.fa-check-square:before { + content: "\f14a"; } + +.fa-chess:before { + content: "\f439"; } + +.fa-chess-bishop:before { + content: "\f43a"; } + +.fa-chess-board:before { + content: "\f43c"; } + +.fa-chess-king:before { + content: "\f43f"; } + +.fa-chess-knight:before { + content: "\f441"; } + +.fa-chess-pawn:before { + content: "\f443"; } + +.fa-chess-queen:before { + content: "\f445"; } + +.fa-chess-rook:before { + content: "\f447"; } + +.fa-chevron-circle-down:before { + content: "\f13a"; } + +.fa-chevron-circle-left:before { + content: "\f137"; } + +.fa-chevron-circle-right:before { + content: "\f138"; } + +.fa-chevron-circle-up:before { + content: "\f139"; } + +.fa-chevron-down:before { + content: "\f078"; } + +.fa-chevron-left:before { + content: "\f053"; } + +.fa-chevron-right:before { + content: "\f054"; } + +.fa-chevron-up:before { + content: "\f077"; } + +.fa-child:before { + content: "\f1ae"; } + +.fa-chrome:before { + content: "\f268"; } + +.fa-church:before { + content: "\f51d"; } + +.fa-circle:before { + content: "\f111"; } + +.fa-circle-notch:before { + content: "\f1ce"; } + +.fa-clipboard:before { + content: "\f328"; } + +.fa-clipboard-check:before { + content: "\f46c"; } + +.fa-clipboard-list:before { + content: "\f46d"; } + +.fa-clock:before { + content: "\f017"; } + +.fa-clone:before { + content: "\f24d"; } + +.fa-closed-captioning:before { + content: "\f20a"; } + +.fa-cloud:before { + content: "\f0c2"; } + +.fa-cloud-download-alt:before { + content: "\f381"; } + +.fa-cloud-upload-alt:before { + content: "\f382"; } + +.fa-cloudscale:before { + content: "\f383"; } + +.fa-cloudsmith:before { + content: "\f384"; } + +.fa-cloudversify:before { + content: "\f385"; } + +.fa-cocktail:before { + content: "\f561"; } + +.fa-code:before { + content: "\f121"; } + +.fa-code-branch:before { + content: "\f126"; } + +.fa-codepen:before { + content: "\f1cb"; } + +.fa-codiepie:before { + content: "\f284"; } + +.fa-coffee:before { + content: "\f0f4"; } + +.fa-cog:before { + content: "\f013"; } + +.fa-cogs:before { + content: "\f085"; } + +.fa-coins:before { + content: "\f51e"; } + +.fa-columns:before { + content: "\f0db"; } + +.fa-comment:before { + content: "\f075"; } + +.fa-comment-alt:before { + content: "\f27a"; } + +.fa-comment-dots:before { + content: "\f4ad"; } + +.fa-comment-slash:before { + content: "\f4b3"; } + +.fa-comments:before { + content: "\f086"; } + +.fa-compact-disc:before { + content: "\f51f"; } + +.fa-compass:before { + content: "\f14e"; } + +.fa-compress:before { + content: "\f066"; } + +.fa-concierge-bell:before { + content: "\f562"; } + +.fa-connectdevelop:before { + content: "\f20e"; } + +.fa-contao:before { + content: "\f26d"; } + +.fa-cookie:before { + content: "\f563"; } + +.fa-cookie-bite:before { + content: "\f564"; } + +.fa-copy:before { + content: "\f0c5"; } + +.fa-copyright:before { + content: "\f1f9"; } + +.fa-couch:before { + content: "\f4b8"; } + +.fa-cpanel:before { + content: "\f388"; } + +.fa-creative-commons:before { + content: "\f25e"; } + +.fa-creative-commons-by:before { + content: "\f4e7"; } + +.fa-creative-commons-nc:before { + content: "\f4e8"; } + +.fa-creative-commons-nc-eu:before { + content: "\f4e9"; } + +.fa-creative-commons-nc-jp:before { + content: "\f4ea"; } + +.fa-creative-commons-nd:before { + content: "\f4eb"; } + +.fa-creative-commons-pd:before { + content: "\f4ec"; } + +.fa-creative-commons-pd-alt:before { + content: "\f4ed"; } + +.fa-creative-commons-remix:before { + content: "\f4ee"; } + +.fa-creative-commons-sa:before { + content: "\f4ef"; } + +.fa-creative-commons-sampling:before { + content: "\f4f0"; } + +.fa-creative-commons-sampling-plus:before { + content: "\f4f1"; } + +.fa-creative-commons-share:before { + content: "\f4f2"; } + +.fa-credit-card:before { + content: "\f09d"; } + +.fa-crop:before { + content: "\f125"; } + +.fa-crop-alt:before { + content: "\f565"; } + +.fa-crosshairs:before { + content: "\f05b"; } + +.fa-crow:before { + content: "\f520"; } + +.fa-crown:before { + content: "\f521"; } + +.fa-css3:before { + content: "\f13c"; } + +.fa-css3-alt:before { + content: "\f38b"; } + +.fa-cube:before { + content: "\f1b2"; } + +.fa-cubes:before { + content: "\f1b3"; } + +.fa-cut:before { + content: "\f0c4"; } + +.fa-cuttlefish:before { + content: "\f38c"; } + +.fa-d-and-d:before { + content: "\f38d"; } + +.fa-dashcube:before { + content: "\f210"; } + +.fa-database:before { + content: "\f1c0"; } + +.fa-deaf:before { + content: "\f2a4"; } + +.fa-delicious:before { + content: "\f1a5"; } + +.fa-deploydog:before { + content: "\f38e"; } + +.fa-deskpro:before { + content: "\f38f"; } + +.fa-desktop:before { + content: "\f108"; } + +.fa-deviantart:before { + content: "\f1bd"; } + +.fa-diagnoses:before { + content: "\f470"; } + +.fa-dice:before { + content: "\f522"; } + +.fa-dice-five:before { + content: "\f523"; } + +.fa-dice-four:before { + content: "\f524"; } + +.fa-dice-one:before { + content: "\f525"; } + +.fa-dice-six:before { + content: "\f526"; } + +.fa-dice-three:before { + content: "\f527"; } + +.fa-dice-two:before { + content: "\f528"; } + +.fa-digg:before { + content: "\f1a6"; } + +.fa-digital-ocean:before { + content: "\f391"; } + +.fa-digital-tachograph:before { + content: "\f566"; } + +.fa-discord:before { + content: "\f392"; } + +.fa-discourse:before { + content: "\f393"; } + +.fa-divide:before { + content: "\f529"; } + +.fa-dizzy:before { + content: "\f567"; } + +.fa-dna:before { + content: "\f471"; } + +.fa-dochub:before { + content: "\f394"; } + +.fa-docker:before { + content: "\f395"; } + +.fa-dollar-sign:before { + content: "\f155"; } + +.fa-dolly:before { + content: "\f472"; } + +.fa-dolly-flatbed:before { + content: "\f474"; } + +.fa-donate:before { + content: "\f4b9"; } + +.fa-door-closed:before { + content: "\f52a"; } + +.fa-door-open:before { + content: "\f52b"; } + +.fa-dot-circle:before { + content: "\f192"; } + +.fa-dove:before { + content: "\f4ba"; } + +.fa-download:before { + content: "\f019"; } + +.fa-draft2digital:before { + content: "\f396"; } + +.fa-drafting-compass:before { + content: "\f568"; } + +.fa-dribbble:before { + content: "\f17d"; } + +.fa-dribbble-square:before { + content: "\f397"; } + +.fa-dropbox:before { + content: "\f16b"; } + +.fa-drum:before { + content: "\f569"; } + +.fa-drum-steelpan:before { + content: "\f56a"; } + +.fa-drupal:before { + content: "\f1a9"; } + +.fa-dumbbell:before { + content: "\f44b"; } + +.fa-dyalog:before { + content: "\f399"; } + +.fa-earlybirds:before { + content: "\f39a"; } + +.fa-ebay:before { + content: "\f4f4"; } + +.fa-edge:before { + content: "\f282"; } + +.fa-edit:before { + content: "\f044"; } + +.fa-eject:before { + content: "\f052"; } + +.fa-elementor:before { + content: "\f430"; } + +.fa-ellipsis-h:before { + content: "\f141"; } + +.fa-ellipsis-v:before { + content: "\f142"; } + +.fa-ember:before { + content: "\f423"; } + +.fa-empire:before { + content: "\f1d1"; } + +.fa-envelope:before { + content: "\f0e0"; } + +.fa-envelope-open:before { + content: "\f2b6"; } + +.fa-envelope-square:before { + content: "\f199"; } + +.fa-envira:before { + content: "\f299"; } + +.fa-equals:before { + content: "\f52c"; } + +.fa-eraser:before { + content: "\f12d"; } + +.fa-erlang:before { + content: "\f39d"; } + +.fa-ethereum:before { + content: "\f42e"; } + +.fa-etsy:before { + content: "\f2d7"; } + +.fa-euro-sign:before { + content: "\f153"; } + +.fa-exchange-alt:before { + content: "\f362"; } + +.fa-exclamation:before { + content: "\f12a"; } + +.fa-exclamation-circle:before { + content: "\f06a"; } + +.fa-exclamation-triangle:before { + content: "\f071"; } + +.fa-expand:before { + content: "\f065"; } + +.fa-expand-arrows-alt:before { + content: "\f31e"; } + +.fa-expeditedssl:before { + content: "\f23e"; } + +.fa-external-link-alt:before { + content: "\f35d"; } + +.fa-external-link-square-alt:before { + content: "\f360"; } + +.fa-eye:before { + content: "\f06e"; } + +.fa-eye-dropper:before { + content: "\f1fb"; } + +.fa-eye-slash:before { + content: "\f070"; } + +.fa-facebook:before { + content: "\f09a"; } + +.fa-facebook-f:before { + content: "\f39e"; } + +.fa-facebook-messenger:before { + content: "\f39f"; } + +.fa-facebook-square:before { + content: "\f082"; } + +.fa-fast-backward:before { + content: "\f049"; } + +.fa-fast-forward:before { + content: "\f050"; } + +.fa-fax:before { + content: "\f1ac"; } + +.fa-feather:before { + content: "\f52d"; } + +.fa-feather-alt:before { + content: "\f56b"; } + +.fa-female:before { + content: "\f182"; } + +.fa-fighter-jet:before { + content: "\f0fb"; } + +.fa-file:before { + content: "\f15b"; } + +.fa-file-alt:before { + content: "\f15c"; } + +.fa-file-archive:before { + content: "\f1c6"; } + +.fa-file-audio:before { + content: "\f1c7"; } + +.fa-file-code:before { + content: "\f1c9"; } + +.fa-file-contract:before { + content: "\f56c"; } + +.fa-file-download:before { + content: "\f56d"; } + +.fa-file-excel:before { + content: "\f1c3"; } + +.fa-file-export:before { + content: "\f56e"; } + +.fa-file-image:before { + content: "\f1c5"; } + +.fa-file-import:before { + content: "\f56f"; } + +.fa-file-invoice:before { + content: "\f570"; } + +.fa-file-invoice-dollar:before { + content: "\f571"; } + +.fa-file-medical:before { + content: "\f477"; } + +.fa-file-medical-alt:before { + content: "\f478"; } + +.fa-file-pdf:before { + content: "\f1c1"; } + +.fa-file-powerpoint:before { + content: "\f1c4"; } + +.fa-file-prescription:before { + content: "\f572"; } + +.fa-file-signature:before { + content: "\f573"; } + +.fa-file-upload:before { + content: "\f574"; } + +.fa-file-video:before { + content: "\f1c8"; } + +.fa-file-word:before { + content: "\f1c2"; } + +.fa-fill:before { + content: "\f575"; } + +.fa-fill-drip:before { + content: "\f576"; } + +.fa-film:before { + content: "\f008"; } + +.fa-filter:before { + content: "\f0b0"; } + +.fa-fingerprint:before { + content: "\f577"; } + +.fa-fire:before { + content: "\f06d"; } + +.fa-fire-extinguisher:before { + content: "\f134"; } + +.fa-firefox:before { + content: "\f269"; } + +.fa-first-aid:before { + content: "\f479"; } + +.fa-first-order:before { + content: "\f2b0"; } + +.fa-first-order-alt:before { + content: "\f50a"; } + +.fa-firstdraft:before { + content: "\f3a1"; } + +.fa-fish:before { + content: "\f578"; } + +.fa-flag:before { + content: "\f024"; } + +.fa-flag-checkered:before { + content: "\f11e"; } + +.fa-flask:before { + content: "\f0c3"; } + +.fa-flickr:before { + content: "\f16e"; } + +.fa-flipboard:before { + content: "\f44d"; } + +.fa-flushed:before { + content: "\f579"; } + +.fa-fly:before { + content: "\f417"; } + +.fa-folder:before { + content: "\f07b"; } + +.fa-folder-open:before { + content: "\f07c"; } + +.fa-font:before { + content: "\f031"; } + +.fa-font-awesome:before { + content: "\f2b4"; } + +.fa-font-awesome-alt:before { + content: "\f35c"; } + +.fa-font-awesome-flag:before { + content: "\f425"; } + +.fa-font-awesome-logo-full:before { + content: "\f4e6"; } + +.fa-fonticons:before { + content: "\f280"; } + +.fa-fonticons-fi:before { + content: "\f3a2"; } + +.fa-football-ball:before { + content: "\f44e"; } + +.fa-fort-awesome:before { + content: "\f286"; } + +.fa-fort-awesome-alt:before { + content: "\f3a3"; } + +.fa-forumbee:before { + content: "\f211"; } + +.fa-forward:before { + content: "\f04e"; } + +.fa-foursquare:before { + content: "\f180"; } + +.fa-free-code-camp:before { + content: "\f2c5"; } + +.fa-freebsd:before { + content: "\f3a4"; } + +.fa-frog:before { + content: "\f52e"; } + +.fa-frown:before { + content: "\f119"; } + +.fa-frown-open:before { + content: "\f57a"; } + +.fa-fulcrum:before { + content: "\f50b"; } + +.fa-futbol:before { + content: "\f1e3"; } + +.fa-galactic-republic:before { + content: "\f50c"; } + +.fa-galactic-senate:before { + content: "\f50d"; } + +.fa-gamepad:before { + content: "\f11b"; } + +.fa-gas-pump:before { + content: "\f52f"; } + +.fa-gavel:before { + content: "\f0e3"; } + +.fa-gem:before { + content: "\f3a5"; } + +.fa-genderless:before { + content: "\f22d"; } + +.fa-get-pocket:before { + content: "\f265"; } + +.fa-gg:before { + content: "\f260"; } + +.fa-gg-circle:before { + content: "\f261"; } + +.fa-gift:before { + content: "\f06b"; } + +.fa-git:before { + content: "\f1d3"; } + +.fa-git-square:before { + content: "\f1d2"; } + +.fa-github:before { + content: "\f09b"; } + +.fa-github-alt:before { + content: "\f113"; } + +.fa-github-square:before { + content: "\f092"; } + +.fa-gitkraken:before { + content: "\f3a6"; } + +.fa-gitlab:before { + content: "\f296"; } + +.fa-gitter:before { + content: "\f426"; } + +.fa-glass-martini:before { + content: "\f000"; } + +.fa-glass-martini-alt:before { + content: "\f57b"; } + +.fa-glasses:before { + content: "\f530"; } + +.fa-glide:before { + content: "\f2a5"; } + +.fa-glide-g:before { + content: "\f2a6"; } + +.fa-globe:before { + content: "\f0ac"; } + +.fa-globe-africa:before { + content: "\f57c"; } + +.fa-globe-americas:before { + content: "\f57d"; } + +.fa-globe-asia:before { + content: "\f57e"; } + +.fa-gofore:before { + content: "\f3a7"; } + +.fa-golf-ball:before { + content: "\f450"; } + +.fa-goodreads:before { + content: "\f3a8"; } + +.fa-goodreads-g:before { + content: "\f3a9"; } + +.fa-google:before { + content: "\f1a0"; } + +.fa-google-drive:before { + content: "\f3aa"; } + +.fa-google-play:before { + content: "\f3ab"; } + +.fa-google-plus:before { + content: "\f2b3"; } + +.fa-google-plus-g:before { + content: "\f0d5"; } + +.fa-google-plus-square:before { + content: "\f0d4"; } + +.fa-google-wallet:before { + content: "\f1ee"; } + +.fa-graduation-cap:before { + content: "\f19d"; } + +.fa-gratipay:before { + content: "\f184"; } + +.fa-grav:before { + content: "\f2d6"; } + +.fa-greater-than:before { + content: "\f531"; } + +.fa-greater-than-equal:before { + content: "\f532"; } + +.fa-grimace:before { + content: "\f57f"; } + +.fa-grin:before { + content: "\f580"; } + +.fa-grin-alt:before { + content: "\f581"; } + +.fa-grin-beam:before { + content: "\f582"; } + +.fa-grin-beam-sweat:before { + content: "\f583"; } + +.fa-grin-hearts:before { + content: "\f584"; } + +.fa-grin-squint:before { + content: "\f585"; } + +.fa-grin-squint-tears:before { + content: "\f586"; } + +.fa-grin-stars:before { + content: "\f587"; } + +.fa-grin-tears:before { + content: "\f588"; } + +.fa-grin-tongue:before { + content: "\f589"; } + +.fa-grin-tongue-squint:before { + content: "\f58a"; } + +.fa-grin-tongue-wink:before { + content: "\f58b"; } + +.fa-grin-wink:before { + content: "\f58c"; } + +.fa-grip-horizontal:before { + content: "\f58d"; } + +.fa-grip-vertical:before { + content: "\f58e"; } + +.fa-gripfire:before { + content: "\f3ac"; } + +.fa-grunt:before { + content: "\f3ad"; } + +.fa-gulp:before { + content: "\f3ae"; } + +.fa-h-square:before { + content: "\f0fd"; } + +.fa-hacker-news:before { + content: "\f1d4"; } + +.fa-hacker-news-square:before { + content: "\f3af"; } + +.fa-hand-holding:before { + content: "\f4bd"; } + +.fa-hand-holding-heart:before { + content: "\f4be"; } + +.fa-hand-holding-usd:before { + content: "\f4c0"; } + +.fa-hand-lizard:before { + content: "\f258"; } + +.fa-hand-paper:before { + content: "\f256"; } + +.fa-hand-peace:before { + content: "\f25b"; } + +.fa-hand-point-down:before { + content: "\f0a7"; } + +.fa-hand-point-left:before { + content: "\f0a5"; } + +.fa-hand-point-right:before { + content: "\f0a4"; } + +.fa-hand-point-up:before { + content: "\f0a6"; } + +.fa-hand-pointer:before { + content: "\f25a"; } + +.fa-hand-rock:before { + content: "\f255"; } + +.fa-hand-scissors:before { + content: "\f257"; } + +.fa-hand-spock:before { + content: "\f259"; } + +.fa-hands:before { + content: "\f4c2"; } + +.fa-hands-helping:before { + content: "\f4c4"; } + +.fa-handshake:before { + content: "\f2b5"; } + +.fa-hashtag:before { + content: "\f292"; } + +.fa-hdd:before { + content: "\f0a0"; } + +.fa-heading:before { + content: "\f1dc"; } + +.fa-headphones:before { + content: "\f025"; } + +.fa-headphones-alt:before { + content: "\f58f"; } + +.fa-headset:before { + content: "\f590"; } + +.fa-heart:before { + content: "\f004"; } + +.fa-heartbeat:before { + content: "\f21e"; } + +.fa-helicopter:before { + content: "\f533"; } + +.fa-highlighter:before { + content: "\f591"; } + +.fa-hips:before { + content: "\f452"; } + +.fa-hire-a-helper:before { + content: "\f3b0"; } + +.fa-history:before { + content: "\f1da"; } + +.fa-hockey-puck:before { + content: "\f453"; } + +.fa-home:before { + content: "\f015"; } + +.fa-hooli:before { + content: "\f427"; } + +.fa-hornbill:before { + content: "\f592"; } + +.fa-hospital:before { + content: "\f0f8"; } + +.fa-hospital-alt:before { + content: "\f47d"; } + +.fa-hospital-symbol:before { + content: "\f47e"; } + +.fa-hot-tub:before { + content: "\f593"; } + +.fa-hotel:before { + content: "\f594"; } + +.fa-hotjar:before { + content: "\f3b1"; } + +.fa-hourglass:before { + content: "\f254"; } + +.fa-hourglass-end:before { + content: "\f253"; } + +.fa-hourglass-half:before { + content: "\f252"; } + +.fa-hourglass-start:before { + content: "\f251"; } + +.fa-houzz:before { + content: "\f27c"; } + +.fa-html5:before { + content: "\f13b"; } + +.fa-hubspot:before { + content: "\f3b2"; } + +.fa-i-cursor:before { + content: "\f246"; } + +.fa-id-badge:before { + content: "\f2c1"; } + +.fa-id-card:before { + content: "\f2c2"; } + +.fa-id-card-alt:before { + content: "\f47f"; } + +.fa-image:before { + content: "\f03e"; } + +.fa-images:before { + content: "\f302"; } + +.fa-imdb:before { + content: "\f2d8"; } + +.fa-inbox:before { + content: "\f01c"; } + +.fa-indent:before { + content: "\f03c"; } + +.fa-industry:before { + content: "\f275"; } + +.fa-infinity:before { + content: "\f534"; } + +.fa-info:before { + content: "\f129"; } + +.fa-info-circle:before { + content: "\f05a"; } + +.fa-instagram:before { + content: "\f16d"; } + +.fa-internet-explorer:before { + content: "\f26b"; } + +.fa-ioxhost:before { + content: "\f208"; } + +.fa-italic:before { + content: "\f033"; } + +.fa-itunes:before { + content: "\f3b4"; } + +.fa-itunes-note:before { + content: "\f3b5"; } + +.fa-java:before { + content: "\f4e4"; } + +.fa-jedi-order:before { + content: "\f50e"; } + +.fa-jenkins:before { + content: "\f3b6"; } + +.fa-joget:before { + content: "\f3b7"; } + +.fa-joint:before { + content: "\f595"; } + +.fa-joomla:before { + content: "\f1aa"; } + +.fa-js:before { + content: "\f3b8"; } + +.fa-js-square:before { + content: "\f3b9"; } + +.fa-jsfiddle:before { + content: "\f1cc"; } + +.fa-key:before { + content: "\f084"; } + +.fa-keybase:before { + content: "\f4f5"; } + +.fa-keyboard:before { + content: "\f11c"; } + +.fa-keycdn:before { + content: "\f3ba"; } + +.fa-kickstarter:before { + content: "\f3bb"; } + +.fa-kickstarter-k:before { + content: "\f3bc"; } + +.fa-kiss:before { + content: "\f596"; } + +.fa-kiss-beam:before { + content: "\f597"; } + +.fa-kiss-wink-heart:before { + content: "\f598"; } + +.fa-kiwi-bird:before { + content: "\f535"; } + +.fa-korvue:before { + content: "\f42f"; } + +.fa-language:before { + content: "\f1ab"; } + +.fa-laptop:before { + content: "\f109"; } + +.fa-laravel:before { + content: "\f3bd"; } + +.fa-lastfm:before { + content: "\f202"; } + +.fa-lastfm-square:before { + content: "\f203"; } + +.fa-laugh:before { + content: "\f599"; } + +.fa-laugh-beam:before { + content: "\f59a"; } + +.fa-laugh-squint:before { + content: "\f59b"; } + +.fa-laugh-wink:before { + content: "\f59c"; } + +.fa-leaf:before { + content: "\f06c"; } + +.fa-leanpub:before { + content: "\f212"; } + +.fa-lemon:before { + content: "\f094"; } + +.fa-less:before { + content: "\f41d"; } + +.fa-less-than:before { + content: "\f536"; } + +.fa-less-than-equal:before { + content: "\f537"; } + +.fa-level-down-alt:before { + content: "\f3be"; } + +.fa-level-up-alt:before { + content: "\f3bf"; } + +.fa-life-ring:before { + content: "\f1cd"; } + +.fa-lightbulb:before { + content: "\f0eb"; } + +.fa-line:before { + content: "\f3c0"; } + +.fa-link:before { + content: "\f0c1"; } + +.fa-linkedin:before { + content: "\f08c"; } + +.fa-linkedin-in:before { + content: "\f0e1"; } + +.fa-linode:before { + content: "\f2b8"; } + +.fa-linux:before { + content: "\f17c"; } + +.fa-lira-sign:before { + content: "\f195"; } + +.fa-list:before { + content: "\f03a"; } + +.fa-list-alt:before { + content: "\f022"; } + +.fa-list-ol:before { + content: "\f0cb"; } + +.fa-list-ul:before { + content: "\f0ca"; } + +.fa-location-arrow:before { + content: "\f124"; } + +.fa-lock:before { + content: "\f023"; } + +.fa-lock-open:before { + content: "\f3c1"; } + +.fa-long-arrow-alt-down:before { + content: "\f309"; } + +.fa-long-arrow-alt-left:before { + content: "\f30a"; } + +.fa-long-arrow-alt-right:before { + content: "\f30b"; } + +.fa-long-arrow-alt-up:before { + content: "\f30c"; } + +.fa-low-vision:before { + content: "\f2a8"; } + +.fa-luggage-cart:before { + content: "\f59d"; } + +.fa-lyft:before { + content: "\f3c3"; } + +.fa-magento:before { + content: "\f3c4"; } + +.fa-magic:before { + content: "\f0d0"; } + +.fa-magnet:before { + content: "\f076"; } + +.fa-mailchimp:before { + content: "\f59e"; } + +.fa-male:before { + content: "\f183"; } + +.fa-mandalorian:before { + content: "\f50f"; } + +.fa-map:before { + content: "\f279"; } + +.fa-map-marked:before { + content: "\f59f"; } + +.fa-map-marked-alt:before { + content: "\f5a0"; } + +.fa-map-marker:before { + content: "\f041"; } + +.fa-map-marker-alt:before { + content: "\f3c5"; } + +.fa-map-pin:before { + content: "\f276"; } + +.fa-map-signs:before { + content: "\f277"; } + +.fa-marker:before { + content: "\f5a1"; } + +.fa-mars:before { + content: "\f222"; } + +.fa-mars-double:before { + content: "\f227"; } + +.fa-mars-stroke:before { + content: "\f229"; } + +.fa-mars-stroke-h:before { + content: "\f22b"; } + +.fa-mars-stroke-v:before { + content: "\f22a"; } + +.fa-mastodon:before { + content: "\f4f6"; } + +.fa-maxcdn:before { + content: "\f136"; } + +.fa-medal:before { + content: "\f5a2"; } + +.fa-medapps:before { + content: "\f3c6"; } + +.fa-medium:before { + content: "\f23a"; } + +.fa-medium-m:before { + content: "\f3c7"; } + +.fa-medkit:before { + content: "\f0fa"; } + +.fa-medrt:before { + content: "\f3c8"; } + +.fa-meetup:before { + content: "\f2e0"; } + +.fa-megaport:before { + content: "\f5a3"; } + +.fa-meh:before { + content: "\f11a"; } + +.fa-meh-blank:before { + content: "\f5a4"; } + +.fa-meh-rolling-eyes:before { + content: "\f5a5"; } + +.fa-memory:before { + content: "\f538"; } + +.fa-mercury:before { + content: "\f223"; } + +.fa-microchip:before { + content: "\f2db"; } + +.fa-microphone:before { + content: "\f130"; } + +.fa-microphone-alt:before { + content: "\f3c9"; } + +.fa-microphone-alt-slash:before { + content: "\f539"; } + +.fa-microphone-slash:before { + content: "\f131"; } + +.fa-microsoft:before { + content: "\f3ca"; } + +.fa-minus:before { + content: "\f068"; } + +.fa-minus-circle:before { + content: "\f056"; } + +.fa-minus-square:before { + content: "\f146"; } + +.fa-mix:before { + content: "\f3cb"; } + +.fa-mixcloud:before { + content: "\f289"; } + +.fa-mizuni:before { + content: "\f3cc"; } + +.fa-mobile:before { + content: "\f10b"; } + +.fa-mobile-alt:before { + content: "\f3cd"; } + +.fa-modx:before { + content: "\f285"; } + +.fa-monero:before { + content: "\f3d0"; } + +.fa-money-bill:before { + content: "\f0d6"; } + +.fa-money-bill-alt:before { + content: "\f3d1"; } + +.fa-money-bill-wave:before { + content: "\f53a"; } + +.fa-money-bill-wave-alt:before { + content: "\f53b"; } + +.fa-money-check:before { + content: "\f53c"; } + +.fa-money-check-alt:before { + content: "\f53d"; } + +.fa-monument:before { + content: "\f5a6"; } + +.fa-moon:before { + content: "\f186"; } + +.fa-mortar-pestle:before { + content: "\f5a7"; } + +.fa-motorcycle:before { + content: "\f21c"; } + +.fa-mouse-pointer:before { + content: "\f245"; } + +.fa-music:before { + content: "\f001"; } + +.fa-napster:before { + content: "\f3d2"; } + +.fa-neuter:before { + content: "\f22c"; } + +.fa-newspaper:before { + content: "\f1ea"; } + +.fa-nimblr:before { + content: "\f5a8"; } + +.fa-nintendo-switch:before { + content: "\f418"; } + +.fa-node:before { + content: "\f419"; } + +.fa-node-js:before { + content: "\f3d3"; } + +.fa-not-equal:before { + content: "\f53e"; } + +.fa-notes-medical:before { + content: "\f481"; } + +.fa-npm:before { + content: "\f3d4"; } + +.fa-ns8:before { + content: "\f3d5"; } + +.fa-nutritionix:before { + content: "\f3d6"; } + +.fa-object-group:before { + content: "\f247"; } + +.fa-object-ungroup:before { + content: "\f248"; } + +.fa-odnoklassniki:before { + content: "\f263"; } + +.fa-odnoklassniki-square:before { + content: "\f264"; } + +.fa-old-republic:before { + content: "\f510"; } + +.fa-opencart:before { + content: "\f23d"; } + +.fa-openid:before { + content: "\f19b"; } + +.fa-opera:before { + content: "\f26a"; } + +.fa-optin-monster:before { + content: "\f23c"; } + +.fa-osi:before { + content: "\f41a"; } + +.fa-outdent:before { + content: "\f03b"; } + +.fa-page4:before { + content: "\f3d7"; } + +.fa-pagelines:before { + content: "\f18c"; } + +.fa-paint-brush:before { + content: "\f1fc"; } + +.fa-paint-roller:before { + content: "\f5aa"; } + +.fa-palette:before { + content: "\f53f"; } + +.fa-palfed:before { + content: "\f3d8"; } + +.fa-pallet:before { + content: "\f482"; } + +.fa-paper-plane:before { + content: "\f1d8"; } + +.fa-paperclip:before { + content: "\f0c6"; } + +.fa-parachute-box:before { + content: "\f4cd"; } + +.fa-paragraph:before { + content: "\f1dd"; } + +.fa-parking:before { + content: "\f540"; } + +.fa-passport:before { + content: "\f5ab"; } + +.fa-paste:before { + content: "\f0ea"; } + +.fa-patreon:before { + content: "\f3d9"; } + +.fa-pause:before { + content: "\f04c"; } + +.fa-pause-circle:before { + content: "\f28b"; } + +.fa-paw:before { + content: "\f1b0"; } + +.fa-paypal:before { + content: "\f1ed"; } + +.fa-pen:before { + content: "\f304"; } + +.fa-pen-alt:before { + content: "\f305"; } + +.fa-pen-fancy:before { + content: "\f5ac"; } + +.fa-pen-nib:before { + content: "\f5ad"; } + +.fa-pen-square:before { + content: "\f14b"; } + +.fa-pencil-alt:before { + content: "\f303"; } + +.fa-pencil-ruler:before { + content: "\f5ae"; } + +.fa-people-carry:before { + content: "\f4ce"; } + +.fa-percent:before { + content: "\f295"; } + +.fa-percentage:before { + content: "\f541"; } + +.fa-periscope:before { + content: "\f3da"; } + +.fa-phabricator:before { + content: "\f3db"; } + +.fa-phoenix-framework:before { + content: "\f3dc"; } + +.fa-phoenix-squadron:before { + content: "\f511"; } + +.fa-phone:before { + content: "\f095"; } + +.fa-phone-slash:before { + content: "\f3dd"; } + +.fa-phone-square:before { + content: "\f098"; } + +.fa-phone-volume:before { + content: "\f2a0"; } + +.fa-php:before { + content: "\f457"; } + +.fa-pied-piper:before { + content: "\f2ae"; } + +.fa-pied-piper-alt:before { + content: "\f1a8"; } + +.fa-pied-piper-hat:before { + content: "\f4e5"; } + +.fa-pied-piper-pp:before { + content: "\f1a7"; } + +.fa-piggy-bank:before { + content: "\f4d3"; } + +.fa-pills:before { + content: "\f484"; } + +.fa-pinterest:before { + content: "\f0d2"; } + +.fa-pinterest-p:before { + content: "\f231"; } + +.fa-pinterest-square:before { + content: "\f0d3"; } + +.fa-plane:before { + content: "\f072"; } + +.fa-plane-arrival:before { + content: "\f5af"; } + +.fa-plane-departure:before { + content: "\f5b0"; } + +.fa-play:before { + content: "\f04b"; } + +.fa-play-circle:before { + content: "\f144"; } + +.fa-playstation:before { + content: "\f3df"; } + +.fa-plug:before { + content: "\f1e6"; } + +.fa-plus:before { + content: "\f067"; } + +.fa-plus-circle:before { + content: "\f055"; } + +.fa-plus-square:before { + content: "\f0fe"; } + +.fa-podcast:before { + content: "\f2ce"; } + +.fa-poo:before { + content: "\f2fe"; } + +.fa-portrait:before { + content: "\f3e0"; } + +.fa-pound-sign:before { + content: "\f154"; } + +.fa-power-off:before { + content: "\f011"; } + +.fa-prescription:before { + content: "\f5b1"; } + +.fa-prescription-bottle:before { + content: "\f485"; } + +.fa-prescription-bottle-alt:before { + content: "\f486"; } + +.fa-print:before { + content: "\f02f"; } + +.fa-procedures:before { + content: "\f487"; } + +.fa-product-hunt:before { + content: "\f288"; } + +.fa-project-diagram:before { + content: "\f542"; } + +.fa-pushed:before { + content: "\f3e1"; } + +.fa-puzzle-piece:before { + content: "\f12e"; } + +.fa-python:before { + content: "\f3e2"; } + +.fa-qq:before { + content: "\f1d6"; } + +.fa-qrcode:before { + content: "\f029"; } + +.fa-question:before { + content: "\f128"; } + +.fa-question-circle:before { + content: "\f059"; } + +.fa-quidditch:before { + content: "\f458"; } + +.fa-quinscape:before { + content: "\f459"; } + +.fa-quora:before { + content: "\f2c4"; } + +.fa-quote-left:before { + content: "\f10d"; } + +.fa-quote-right:before { + content: "\f10e"; } + +.fa-r-project:before { + content: "\f4f7"; } + +.fa-random:before { + content: "\f074"; } + +.fa-ravelry:before { + content: "\f2d9"; } + +.fa-react:before { + content: "\f41b"; } + +.fa-readme:before { + content: "\f4d5"; } + +.fa-rebel:before { + content: "\f1d0"; } + +.fa-receipt:before { + content: "\f543"; } + +.fa-recycle:before { + content: "\f1b8"; } + +.fa-red-river:before { + content: "\f3e3"; } + +.fa-reddit:before { + content: "\f1a1"; } + +.fa-reddit-alien:before { + content: "\f281"; } + +.fa-reddit-square:before { + content: "\f1a2"; } + +.fa-redo:before { + content: "\f01e"; } + +.fa-redo-alt:before { + content: "\f2f9"; } + +.fa-registered:before { + content: "\f25d"; } + +.fa-rendact:before { + content: "\f3e4"; } + +.fa-renren:before { + content: "\f18b"; } + +.fa-reply:before { + content: "\f3e5"; } + +.fa-reply-all:before { + content: "\f122"; } + +.fa-replyd:before { + content: "\f3e6"; } + +.fa-researchgate:before { + content: "\f4f8"; } + +.fa-resolving:before { + content: "\f3e7"; } + +.fa-retweet:before { + content: "\f079"; } + +.fa-rev:before { + content: "\f5b2"; } + +.fa-ribbon:before { + content: "\f4d6"; } + +.fa-road:before { + content: "\f018"; } + +.fa-robot:before { + content: "\f544"; } + +.fa-rocket:before { + content: "\f135"; } + +.fa-rocketchat:before { + content: "\f3e8"; } + +.fa-rockrms:before { + content: "\f3e9"; } + +.fa-rss:before { + content: "\f09e"; } + +.fa-rss-square:before { + content: "\f143"; } + +.fa-ruble-sign:before { + content: "\f158"; } + +.fa-ruler:before { + content: "\f545"; } + +.fa-ruler-combined:before { + content: "\f546"; } + +.fa-ruler-horizontal:before { + content: "\f547"; } + +.fa-ruler-vertical:before { + content: "\f548"; } + +.fa-rupee-sign:before { + content: "\f156"; } + +.fa-sad-cry:before { + content: "\f5b3"; } + +.fa-sad-tear:before { + content: "\f5b4"; } + +.fa-safari:before { + content: "\f267"; } + +.fa-sass:before { + content: "\f41e"; } + +.fa-save:before { + content: "\f0c7"; } + +.fa-schlix:before { + content: "\f3ea"; } + +.fa-school:before { + content: "\f549"; } + +.fa-screwdriver:before { + content: "\f54a"; } + +.fa-scribd:before { + content: "\f28a"; } + +.fa-search:before { + content: "\f002"; } + +.fa-search-minus:before { + content: "\f010"; } + +.fa-search-plus:before { + content: "\f00e"; } + +.fa-searchengin:before { + content: "\f3eb"; } + +.fa-seedling:before { + content: "\f4d8"; } + +.fa-sellcast:before { + content: "\f2da"; } + +.fa-sellsy:before { + content: "\f213"; } + +.fa-server:before { + content: "\f233"; } + +.fa-servicestack:before { + content: "\f3ec"; } + +.fa-share:before { + content: "\f064"; } + +.fa-share-alt:before { + content: "\f1e0"; } + +.fa-share-alt-square:before { + content: "\f1e1"; } + +.fa-share-square:before { + content: "\f14d"; } + +.fa-shekel-sign:before { + content: "\f20b"; } + +.fa-shield-alt:before { + content: "\f3ed"; } + +.fa-ship:before { + content: "\f21a"; } + +.fa-shipping-fast:before { + content: "\f48b"; } + +.fa-shirtsinbulk:before { + content: "\f214"; } + +.fa-shoe-prints:before { + content: "\f54b"; } + +.fa-shopping-bag:before { + content: "\f290"; } + +.fa-shopping-basket:before { + content: "\f291"; } + +.fa-shopping-cart:before { + content: "\f07a"; } + +.fa-shopware:before { + content: "\f5b5"; } + +.fa-shower:before { + content: "\f2cc"; } + +.fa-shuttle-van:before { + content: "\f5b6"; } + +.fa-sign:before { + content: "\f4d9"; } + +.fa-sign-in-alt:before { + content: "\f2f6"; } + +.fa-sign-language:before { + content: "\f2a7"; } + +.fa-sign-out-alt:before { + content: "\f2f5"; } + +.fa-signal:before { + content: "\f012"; } + +.fa-signature:before { + content: "\f5b7"; } + +.fa-simplybuilt:before { + content: "\f215"; } + +.fa-sistrix:before { + content: "\f3ee"; } + +.fa-sitemap:before { + content: "\f0e8"; } + +.fa-sith:before { + content: "\f512"; } + +.fa-skull:before { + content: "\f54c"; } + +.fa-skyatlas:before { + content: "\f216"; } + +.fa-skype:before { + content: "\f17e"; } + +.fa-slack:before { + content: "\f198"; } + +.fa-slack-hash:before { + content: "\f3ef"; } + +.fa-sliders-h:before { + content: "\f1de"; } + +.fa-slideshare:before { + content: "\f1e7"; } + +.fa-smile:before { + content: "\f118"; } + +.fa-smile-beam:before { + content: "\f5b8"; } + +.fa-smile-wink:before { + content: "\f4da"; } + +.fa-smoking:before { + content: "\f48d"; } + +.fa-smoking-ban:before { + content: "\f54d"; } + +.fa-snapchat:before { + content: "\f2ab"; } + +.fa-snapchat-ghost:before { + content: "\f2ac"; } + +.fa-snapchat-square:before { + content: "\f2ad"; } + +.fa-snowflake:before { + content: "\f2dc"; } + +.fa-solar-panel:before { + content: "\f5ba"; } + +.fa-sort:before { + content: "\f0dc"; } + +.fa-sort-alpha-down:before { + content: "\f15d"; } + +.fa-sort-alpha-up:before { + content: "\f15e"; } + +.fa-sort-amount-down:before { + content: "\f160"; } + +.fa-sort-amount-up:before { + content: "\f161"; } + +.fa-sort-down:before { + content: "\f0dd"; } + +.fa-sort-numeric-down:before { + content: "\f162"; } + +.fa-sort-numeric-up:before { + content: "\f163"; } + +.fa-sort-up:before { + content: "\f0de"; } + +.fa-soundcloud:before { + content: "\f1be"; } + +.fa-spa:before { + content: "\f5bb"; } + +.fa-space-shuttle:before { + content: "\f197"; } + +.fa-speakap:before { + content: "\f3f3"; } + +.fa-spinner:before { + content: "\f110"; } + +.fa-splotch:before { + content: "\f5bc"; } + +.fa-spotify:before { + content: "\f1bc"; } + +.fa-spray-can:before { + content: "\f5bd"; } + +.fa-square:before { + content: "\f0c8"; } + +.fa-square-full:before { + content: "\f45c"; } + +.fa-squarespace:before { + content: "\f5be"; } + +.fa-stack-exchange:before { + content: "\f18d"; } + +.fa-stack-overflow:before { + content: "\f16c"; } + +.fa-stamp:before { + content: "\f5bf"; } + +.fa-star:before { + content: "\f005"; } + +.fa-star-half:before { + content: "\f089"; } + +.fa-star-half-alt:before { + content: "\f5c0"; } + +.fa-staylinked:before { + content: "\f3f5"; } + +.fa-steam:before { + content: "\f1b6"; } + +.fa-steam-square:before { + content: "\f1b7"; } + +.fa-steam-symbol:before { + content: "\f3f6"; } + +.fa-step-backward:before { + content: "\f048"; } + +.fa-step-forward:before { + content: "\f051"; } + +.fa-stethoscope:before { + content: "\f0f1"; } + +.fa-sticker-mule:before { + content: "\f3f7"; } + +.fa-sticky-note:before { + content: "\f249"; } + +.fa-stop:before { + content: "\f04d"; } + +.fa-stop-circle:before { + content: "\f28d"; } + +.fa-stopwatch:before { + content: "\f2f2"; } + +.fa-store:before { + content: "\f54e"; } + +.fa-store-alt:before { + content: "\f54f"; } + +.fa-strava:before { + content: "\f428"; } + +.fa-stream:before { + content: "\f550"; } + +.fa-street-view:before { + content: "\f21d"; } + +.fa-strikethrough:before { + content: "\f0cc"; } + +.fa-stripe:before { + content: "\f429"; } + +.fa-stripe-s:before { + content: "\f42a"; } + +.fa-stroopwafel:before { + content: "\f551"; } + +.fa-studiovinari:before { + content: "\f3f8"; } + +.fa-stumbleupon:before { + content: "\f1a4"; } + +.fa-stumbleupon-circle:before { + content: "\f1a3"; } + +.fa-subscript:before { + content: "\f12c"; } + +.fa-subway:before { + content: "\f239"; } + +.fa-suitcase:before { + content: "\f0f2"; } + +.fa-suitcase-rolling:before { + content: "\f5c1"; } + +.fa-sun:before { + content: "\f185"; } + +.fa-superpowers:before { + content: "\f2dd"; } + +.fa-superscript:before { + content: "\f12b"; } + +.fa-supple:before { + content: "\f3f9"; } + +.fa-surprise:before { + content: "\f5c2"; } + +.fa-swatchbook:before { + content: "\f5c3"; } + +.fa-swimmer:before { + content: "\f5c4"; } + +.fa-swimming-pool:before { + content: "\f5c5"; } + +.fa-sync:before { + content: "\f021"; } + +.fa-sync-alt:before { + content: "\f2f1"; } + +.fa-syringe:before { + content: "\f48e"; } + +.fa-table:before { + content: "\f0ce"; } + +.fa-table-tennis:before { + content: "\f45d"; } + +.fa-tablet:before { + content: "\f10a"; } + +.fa-tablet-alt:before { + content: "\f3fa"; } + +.fa-tablets:before { + content: "\f490"; } + +.fa-tachometer-alt:before { + content: "\f3fd"; } + +.fa-tag:before { + content: "\f02b"; } + +.fa-tags:before { + content: "\f02c"; } + +.fa-tape:before { + content: "\f4db"; } + +.fa-tasks:before { + content: "\f0ae"; } + +.fa-taxi:before { + content: "\f1ba"; } + +.fa-teamspeak:before { + content: "\f4f9"; } + +.fa-telegram:before { + content: "\f2c6"; } + +.fa-telegram-plane:before { + content: "\f3fe"; } + +.fa-tencent-weibo:before { + content: "\f1d5"; } + +.fa-terminal:before { + content: "\f120"; } + +.fa-text-height:before { + content: "\f034"; } + +.fa-text-width:before { + content: "\f035"; } + +.fa-th:before { + content: "\f00a"; } + +.fa-th-large:before { + content: "\f009"; } + +.fa-th-list:before { + content: "\f00b"; } + +.fa-themeco:before { + content: "\f5c6"; } + +.fa-themeisle:before { + content: "\f2b2"; } + +.fa-thermometer:before { + content: "\f491"; } + +.fa-thermometer-empty:before { + content: "\f2cb"; } + +.fa-thermometer-full:before { + content: "\f2c7"; } + +.fa-thermometer-half:before { + content: "\f2c9"; } + +.fa-thermometer-quarter:before { + content: "\f2ca"; } + +.fa-thermometer-three-quarters:before { + content: "\f2c8"; } + +.fa-thumbs-down:before { + content: "\f165"; } + +.fa-thumbs-up:before { + content: "\f164"; } + +.fa-thumbtack:before { + content: "\f08d"; } + +.fa-ticket-alt:before { + content: "\f3ff"; } + +.fa-times:before { + content: "\f00d"; } + +.fa-times-circle:before { + content: "\f057"; } + +.fa-tint:before { + content: "\f043"; } + +.fa-tint-slash:before { + content: "\f5c7"; } + +.fa-tired:before { + content: "\f5c8"; } + +.fa-toggle-off:before { + content: "\f204"; } + +.fa-toggle-on:before { + content: "\f205"; } + +.fa-toolbox:before { + content: "\f552"; } + +.fa-tooth:before { + content: "\f5c9"; } + +.fa-trade-federation:before { + content: "\f513"; } + +.fa-trademark:before { + content: "\f25c"; } + +.fa-train:before { + content: "\f238"; } + +.fa-transgender:before { + content: "\f224"; } + +.fa-transgender-alt:before { + content: "\f225"; } + +.fa-trash:before { + content: "\f1f8"; } + +.fa-trash-alt:before { + content: "\f2ed"; } + +.fa-tree:before { + content: "\f1bb"; } + +.fa-trello:before { + content: "\f181"; } + +.fa-tripadvisor:before { + content: "\f262"; } + +.fa-trophy:before { + content: "\f091"; } + +.fa-truck:before { + content: "\f0d1"; } + +.fa-truck-loading:before { + content: "\f4de"; } + +.fa-truck-moving:before { + content: "\f4df"; } + +.fa-tshirt:before { + content: "\f553"; } + +.fa-tty:before { + content: "\f1e4"; } + +.fa-tumblr:before { + content: "\f173"; } + +.fa-tumblr-square:before { + content: "\f174"; } + +.fa-tv:before { + content: "\f26c"; } + +.fa-twitch:before { + content: "\f1e8"; } + +.fa-twitter:before { + content: "\f099"; } + +.fa-twitter-square:before { + content: "\f081"; } + +.fa-typo3:before { + content: "\f42b"; } + +.fa-uber:before { + content: "\f402"; } + +.fa-uikit:before { + content: "\f403"; } + +.fa-umbrella:before { + content: "\f0e9"; } + +.fa-umbrella-beach:before { + content: "\f5ca"; } + +.fa-underline:before { + content: "\f0cd"; } + +.fa-undo:before { + content: "\f0e2"; } + +.fa-undo-alt:before { + content: "\f2ea"; } + +.fa-uniregistry:before { + content: "\f404"; } + +.fa-universal-access:before { + content: "\f29a"; } + +.fa-university:before { + content: "\f19c"; } + +.fa-unlink:before { + content: "\f127"; } + +.fa-unlock:before { + content: "\f09c"; } + +.fa-unlock-alt:before { + content: "\f13e"; } + +.fa-untappd:before { + content: "\f405"; } + +.fa-upload:before { + content: "\f093"; } + +.fa-usb:before { + content: "\f287"; } + +.fa-user:before { + content: "\f007"; } + +.fa-user-alt:before { + content: "\f406"; } + +.fa-user-alt-slash:before { + content: "\f4fa"; } + +.fa-user-astronaut:before { + content: "\f4fb"; } + +.fa-user-check:before { + content: "\f4fc"; } + +.fa-user-circle:before { + content: "\f2bd"; } + +.fa-user-clock:before { + content: "\f4fd"; } + +.fa-user-cog:before { + content: "\f4fe"; } + +.fa-user-edit:before { + content: "\f4ff"; } + +.fa-user-friends:before { + content: "\f500"; } + +.fa-user-graduate:before { + content: "\f501"; } + +.fa-user-lock:before { + content: "\f502"; } + +.fa-user-md:before { + content: "\f0f0"; } + +.fa-user-minus:before { + content: "\f503"; } + +.fa-user-ninja:before { + content: "\f504"; } + +.fa-user-plus:before { + content: "\f234"; } + +.fa-user-secret:before { + content: "\f21b"; } + +.fa-user-shield:before { + content: "\f505"; } + +.fa-user-slash:before { + content: "\f506"; } + +.fa-user-tag:before { + content: "\f507"; } + +.fa-user-tie:before { + content: "\f508"; } + +.fa-user-times:before { + content: "\f235"; } + +.fa-users:before { + content: "\f0c0"; } + +.fa-users-cog:before { + content: "\f509"; } + +.fa-ussunnah:before { + content: "\f407"; } + +.fa-utensil-spoon:before { + content: "\f2e5"; } + +.fa-utensils:before { + content: "\f2e7"; } + +.fa-vaadin:before { + content: "\f408"; } + +.fa-vector-square:before { + content: "\f5cb"; } + +.fa-venus:before { + content: "\f221"; } + +.fa-venus-double:before { + content: "\f226"; } + +.fa-venus-mars:before { + content: "\f228"; } + +.fa-viacoin:before { + content: "\f237"; } + +.fa-viadeo:before { + content: "\f2a9"; } + +.fa-viadeo-square:before { + content: "\f2aa"; } + +.fa-vial:before { + content: "\f492"; } + +.fa-vials:before { + content: "\f493"; } + +.fa-viber:before { + content: "\f409"; } + +.fa-video:before { + content: "\f03d"; } + +.fa-video-slash:before { + content: "\f4e2"; } + +.fa-vimeo:before { + content: "\f40a"; } + +.fa-vimeo-square:before { + content: "\f194"; } + +.fa-vimeo-v:before { + content: "\f27d"; } + +.fa-vine:before { + content: "\f1ca"; } + +.fa-vk:before { + content: "\f189"; } + +.fa-vnv:before { + content: "\f40b"; } + +.fa-volleyball-ball:before { + content: "\f45f"; } + +.fa-volume-down:before { + content: "\f027"; } + +.fa-volume-off:before { + content: "\f026"; } + +.fa-volume-up:before { + content: "\f028"; } + +.fa-vuejs:before { + content: "\f41f"; } + +.fa-walking:before { + content: "\f554"; } + +.fa-wallet:before { + content: "\f555"; } + +.fa-warehouse:before { + content: "\f494"; } + +.fa-weebly:before { + content: "\f5cc"; } + +.fa-weibo:before { + content: "\f18a"; } + +.fa-weight:before { + content: "\f496"; } + +.fa-weight-hanging:before { + content: "\f5cd"; } + +.fa-weixin:before { + content: "\f1d7"; } + +.fa-whatsapp:before { + content: "\f232"; } + +.fa-whatsapp-square:before { + content: "\f40c"; } + +.fa-wheelchair:before { + content: "\f193"; } + +.fa-whmcs:before { + content: "\f40d"; } + +.fa-wifi:before { + content: "\f1eb"; } + +.fa-wikipedia-w:before { + content: "\f266"; } + +.fa-window-close:before { + content: "\f410"; } + +.fa-window-maximize:before { + content: "\f2d0"; } + +.fa-window-minimize:before { + content: "\f2d1"; } + +.fa-window-restore:before { + content: "\f2d2"; } + +.fa-windows:before { + content: "\f17a"; } + +.fa-wine-glass:before { + content: "\f4e3"; } + +.fa-wine-glass-alt:before { + content: "\f5ce"; } + +.fa-wix:before { + content: "\f5cf"; } + +.fa-wolf-pack-battalion:before { + content: "\f514"; } + +.fa-won-sign:before { + content: "\f159"; } + +.fa-wordpress:before { + content: "\f19a"; } + +.fa-wordpress-simple:before { + content: "\f411"; } + +.fa-wpbeginner:before { + content: "\f297"; } + +.fa-wpexplorer:before { + content: "\f2de"; } + +.fa-wpforms:before { + content: "\f298"; } + +.fa-wrench:before { + content: "\f0ad"; } + +.fa-x-ray:before { + content: "\f497"; } + +.fa-xbox:before { + content: "\f412"; } + +.fa-xing:before { + content: "\f168"; } + +.fa-xing-square:before { + content: "\f169"; } + +.fa-y-combinator:before { + content: "\f23b"; } + +.fa-yahoo:before { + content: "\f19e"; } + +.fa-yandex:before { + content: "\f413"; } + +.fa-yandex-international:before { + content: "\f414"; } + +.fa-yelp:before { + content: "\f1e9"; } + +.fa-yen-sign:before { + content: "\f157"; } + +.fa-yoast:before { + content: "\f2b1"; } + +.fa-youtube:before { + content: "\f167"; } + +.fa-youtube-square:before { + content: "\f431"; } + +.sr-only { + border: 0; + clip: rect(0, 0, 0, 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; } + +.sr-only-focusable:active, .sr-only-focusable:focus { + clip: auto; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/fontawesome.min.css b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/fontawesome.min.css new file mode 100644 index 0000000000..66c9583c25 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/fontawesome.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:a 2s infinite linear}.fa-pulse{animation:a 1s infinite steps(8)}@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-balance-scale:before{content:"\f24e"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blind:before{content:"\f29d"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-open:before{content:"\f518"}.fa-bookmark:before{content:"\f02e"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-certificate:before{content:"\f0a3"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-concierge-bell:before{content:"\f562"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-credit-card:before{content:"\f09d"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-deviantart:before{content:"\f1bd"}.fa-diagnoses:before{content:"\f470"}.fa-dice:before{content:"\f522"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-gift:before{content:"\f06b"}.fa-git:before{content:"\f1d3"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hashtag:before{content:"\f292"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-houzz:before{content:"\f27c"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-internet-explorer:before{content:"\f26b"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mercury:before{content:"\f223"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-motorcycle:before{content:"\f21c"}.fa-mouse-pointer:before{content:"\f245"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-old-republic:before{content:"\f510"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-people-carry:before{content:"\f4ce"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poo:before{content:"\f2fe"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-r-project:before{content:"\f4f7"}.fa-random:before{content:"\f074"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-rendact:before{content:"\f3e4"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-sass:before{content:"\f41e"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-search:before{content:"\f002"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skull:before{content:"\f54c"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowflake:before{content:"\f2dc"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toolbox:before{content:"\f552"}.fa-tooth:before{content:"\f5c9"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-train:before{content:"\f238"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-moving:before{content:"\f4df"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/regular.css b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/regular.css new file mode 100644 index 0000000000..1882cf76f5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/regular.css @@ -0,0 +1,14 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 400; + src: url("../webfonts/fa-regular-400.eot"); + src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.woff") format("woff"), url("../webfonts/fa-regular-400.ttf") format("truetype"), url("../webfonts/fa-regular-400.svg#fontawesome") format("svg"); } + +.far { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/regular.min.css b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/regular.min.css new file mode 100644 index 0000000000..da8fc5a803 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/regular.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-family:"Font Awesome 5 Free";font-weight:400} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/solid.css b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/solid.css new file mode 100644 index 0000000000..f08f73bc84 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/solid.css @@ -0,0 +1,15 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 900; + src: url("../webfonts/fa-solid-900.eot"); + src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg"); } + +.fa, +.fas { + font-family: 'Font Awesome 5 Free'; + font-weight: 900; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/solid.min.css b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/solid.min.css new file mode 100644 index 0000000000..89ba2f45db --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/solid.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas{font-family:"Font Awesome 5 Free";font-weight:900} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/svg-with-js.css b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/svg-with-js.css new file mode 100644 index 0000000000..bf3b6789a6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/svg-with-js.css @@ -0,0 +1,345 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +svg:not(:root).svg-inline--fa { + overflow: visible; } + +.svg-inline--fa { + display: inline-block; + font-size: inherit; + height: 1em; + overflow: visible; + vertical-align: -.125em; } + .svg-inline--fa.fa-lg { + vertical-align: -.225em; } + .svg-inline--fa.fa-w-1 { + width: 0.0625em; } + .svg-inline--fa.fa-w-2 { + width: 0.125em; } + .svg-inline--fa.fa-w-3 { + width: 0.1875em; } + .svg-inline--fa.fa-w-4 { + width: 0.25em; } + .svg-inline--fa.fa-w-5 { + width: 0.3125em; } + .svg-inline--fa.fa-w-6 { + width: 0.375em; } + .svg-inline--fa.fa-w-7 { + width: 0.4375em; } + .svg-inline--fa.fa-w-8 { + width: 0.5em; } + .svg-inline--fa.fa-w-9 { + width: 0.5625em; } + .svg-inline--fa.fa-w-10 { + width: 0.625em; } + .svg-inline--fa.fa-w-11 { + width: 0.6875em; } + .svg-inline--fa.fa-w-12 { + width: 0.75em; } + .svg-inline--fa.fa-w-13 { + width: 0.8125em; } + .svg-inline--fa.fa-w-14 { + width: 0.875em; } + .svg-inline--fa.fa-w-15 { + width: 0.9375em; } + .svg-inline--fa.fa-w-16 { + width: 1em; } + .svg-inline--fa.fa-w-17 { + width: 1.0625em; } + .svg-inline--fa.fa-w-18 { + width: 1.125em; } + .svg-inline--fa.fa-w-19 { + width: 1.1875em; } + .svg-inline--fa.fa-w-20 { + width: 1.25em; } + .svg-inline--fa.fa-pull-left { + margin-right: .3em; + width: auto; } + .svg-inline--fa.fa-pull-right { + margin-left: .3em; + width: auto; } + .svg-inline--fa.fa-border { + height: 1.5em; } + .svg-inline--fa.fa-li { + width: 2em; } + .svg-inline--fa.fa-fw { + width: 1.25em; } + +.fa-layers svg.svg-inline--fa { + bottom: 0; + left: 0; + margin: auto; + position: absolute; + right: 0; + top: 0; } + +.fa-layers { + display: inline-block; + height: 1em; + position: relative; + text-align: center; + vertical-align: -.125em; + width: 1em; } + .fa-layers svg.svg-inline--fa { + -webkit-transform-origin: center center; + transform-origin: center center; } + +.fa-layers-text, .fa-layers-counter { + display: inline-block; + position: absolute; + text-align: center; } + +.fa-layers-text { + left: 50%; + top: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + -webkit-transform-origin: center center; + transform-origin: center center; } + +.fa-layers-counter { + background-color: #ff253a; + border-radius: 1em; + -webkit-box-sizing: border-box; + box-sizing: border-box; + color: #fff; + height: 1.5em; + line-height: 1; + max-width: 5em; + min-width: 1.5em; + overflow: hidden; + padding: .25em; + right: 0; + text-overflow: ellipsis; + top: 0; + -webkit-transform: scale(0.25); + transform: scale(0.25); + -webkit-transform-origin: top right; + transform-origin: top right; } + +.fa-layers-bottom-right { + bottom: 0; + right: 0; + top: auto; + -webkit-transform: scale(0.25); + transform: scale(0.25); + -webkit-transform-origin: bottom right; + transform-origin: bottom right; } + +.fa-layers-bottom-left { + bottom: 0; + left: 0; + right: auto; + top: auto; + -webkit-transform: scale(0.25); + transform: scale(0.25); + -webkit-transform-origin: bottom left; + transform-origin: bottom left; } + +.fa-layers-top-right { + right: 0; + top: 0; + -webkit-transform: scale(0.25); + transform: scale(0.25); + -webkit-transform-origin: top right; + transform-origin: top right; } + +.fa-layers-top-left { + left: 0; + right: auto; + top: 0; + -webkit-transform: scale(0.25); + transform: scale(0.25); + -webkit-transform-origin: top left; + transform-origin: top left; } + +.fa-lg { + font-size: 1.33333em; + line-height: 0.75em; + vertical-align: -.0667em; } + +.fa-xs { + font-size: .75em; } + +.fa-sm { + font-size: .875em; } + +.fa-1x { + font-size: 1em; } + +.fa-2x { + font-size: 2em; } + +.fa-3x { + font-size: 3em; } + +.fa-4x { + font-size: 4em; } + +.fa-5x { + font-size: 5em; } + +.fa-6x { + font-size: 6em; } + +.fa-7x { + font-size: 7em; } + +.fa-8x { + font-size: 8em; } + +.fa-9x { + font-size: 9em; } + +.fa-10x { + font-size: 10em; } + +.fa-fw { + text-align: center; + width: 1.25em; } + +.fa-ul { + list-style-type: none; + margin-left: 2.5em; + padding-left: 0; } + .fa-ul > li { + position: relative; } + +.fa-li { + left: -2em; + position: absolute; + text-align: center; + width: 2em; + line-height: inherit; } + +.fa-border { + border: solid 0.08em #eee; + border-radius: .1em; + padding: .2em .25em .15em; } + +.fa-pull-left { + float: left; } + +.fa-pull-right { + float: right; } + +.fa.fa-pull-left, +.fas.fa-pull-left, +.far.fa-pull-left, +.fal.fa-pull-left, +.fab.fa-pull-left { + margin-right: .3em; } + +.fa.fa-pull-right, +.fas.fa-pull-right, +.far.fa-pull-right, +.fal.fa-pull-right, +.fab.fa-pull-right { + margin-left: .3em; } + +.fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; } + +.fa-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); } + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +.fa-rotate-90 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); } + +.fa-rotate-180 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + transform: rotate(180deg); } + +.fa-rotate-270 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + transform: rotate(270deg); } + +.fa-flip-horizontal { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + -webkit-transform: scale(-1, 1); + transform: scale(-1, 1); } + +.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(1, -1); + transform: scale(1, -1); } + +.fa-flip-horizontal.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(-1, -1); + transform: scale(-1, -1); } + +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270, +:root .fa-flip-horizontal, +:root .fa-flip-vertical { + -webkit-filter: none; + filter: none; } + +.fa-stack { + display: inline-block; + height: 2em; + position: relative; + width: 2em; } + +.fa-stack-1x, +.fa-stack-2x { + bottom: 0; + left: 0; + margin: auto; + position: absolute; + right: 0; + top: 0; } + +.svg-inline--fa.fa-stack-1x { + height: 1em; + width: 1em; } + +.svg-inline--fa.fa-stack-2x { + height: 2em; + width: 2em; } + +.fa-inverse { + color: #fff; } + +.sr-only { + border: 0; + clip: rect(0, 0, 0, 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; } + +.sr-only-focusable:active, .sr-only-focusable:focus { + clip: auto; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/svg-with-js.min.css b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/svg-with-js.min.css new file mode 100644 index 0000000000..1ba4460433 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/svg-with-js.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.svg-inline--fa,svg:not(:root).svg-inline--fa{overflow:visible}.svg-inline--fa{display:inline-block;font-size:inherit;height:1em;vertical-align:-.125em}.svg-inline--fa.fa-lg{vertical-align:-.225em}.svg-inline--fa.fa-w-1{width:.0625em}.svg-inline--fa.fa-w-2{width:.125em}.svg-inline--fa.fa-w-3{width:.1875em}.svg-inline--fa.fa-w-4{width:.25em}.svg-inline--fa.fa-w-5{width:.3125em}.svg-inline--fa.fa-w-6{width:.375em}.svg-inline--fa.fa-w-7{width:.4375em}.svg-inline--fa.fa-w-8{width:.5em}.svg-inline--fa.fa-w-9{width:.5625em}.svg-inline--fa.fa-w-10{width:.625em}.svg-inline--fa.fa-w-11{width:.6875em}.svg-inline--fa.fa-w-12{width:.75em}.svg-inline--fa.fa-w-13{width:.8125em}.svg-inline--fa.fa-w-14{width:.875em}.svg-inline--fa.fa-w-15{width:.9375em}.svg-inline--fa.fa-w-16{width:1em}.svg-inline--fa.fa-w-17{width:1.0625em}.svg-inline--fa.fa-w-18{width:1.125em}.svg-inline--fa.fa-w-19{width:1.1875em}.svg-inline--fa.fa-w-20{width:1.25em}.svg-inline--fa.fa-pull-left{margin-right:.3em;width:auto}.svg-inline--fa.fa-pull-right{margin-left:.3em;width:auto}.svg-inline--fa.fa-border{height:1.5em}.svg-inline--fa.fa-li{width:2em}.svg-inline--fa.fa-fw{width:1.25em}.fa-layers svg.svg-inline--fa{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.fa-layers{display:inline-block;height:1em;position:relative;text-align:center;vertical-align:-.125em;width:1em}.fa-layers svg.svg-inline--fa{transform-origin:center center}.fa-layers-counter,.fa-layers-text{display:inline-block;position:absolute;text-align:center}.fa-layers-text{left:50%;top:50%;transform:translate(-50%,-50%);transform-origin:center center}.fa-layers-counter{background-color:#ff253a;border-radius:1em;box-sizing:border-box;color:#fff;height:1.5em;line-height:1;max-width:5em;min-width:1.5em;overflow:hidden;padding:.25em;right:0;text-overflow:ellipsis;top:0;transform:scale(.25);transform-origin:top right}.fa-layers-bottom-right{bottom:0;right:0;top:auto;transform:scale(.25);transform-origin:bottom right}.fa-layers-bottom-left{bottom:0;left:0;right:auto;top:auto;transform:scale(.25);transform-origin:bottom left}.fa-layers-top-right{right:0;top:0;transform:scale(.25);transform-origin:top right}.fa-layers-top-left{left:0;right:auto;top:0;transform:scale(.25);transform-origin:top left}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:a 2s infinite linear}.fa-pulse{animation:a 1s infinite steps(8)}@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;position:relative;width:2em}.fa-stack-1x,.fa-stack-2x{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.svg-inline--fa.fa-stack-1x{height:1em;width:1em}.svg-inline--fa.fa-stack-2x{height:2em;width:2em}.fa-inverse{color:#fff}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/v4-shims.css b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/v4-shims.css new file mode 100644 index 0000000000..cd8822b6c3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/v4-shims.css @@ -0,0 +1,2170 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa.fa-glass:before { + content: "\f000"; } + +.fa.fa-meetup { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-star-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-star-o:before { + content: "\f005"; } + +.fa.fa-remove:before { + content: "\f00d"; } + +.fa.fa-close:before { + content: "\f00d"; } + +.fa.fa-gear:before { + content: "\f013"; } + +.fa.fa-trash-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-trash-o:before { + content: "\f2ed"; } + +.fa.fa-file-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-o:before { + content: "\f15b"; } + +.fa.fa-clock-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-clock-o:before { + content: "\f017"; } + +.fa.fa-arrow-circle-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-arrow-circle-o-down:before { + content: "\f358"; } + +.fa.fa-arrow-circle-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-arrow-circle-o-up:before { + content: "\f35b"; } + +.fa.fa-play-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-play-circle-o:before { + content: "\f144"; } + +.fa.fa-repeat:before { + content: "\f01e"; } + +.fa.fa-rotate-right:before { + content: "\f01e"; } + +.fa.fa-refresh:before { + content: "\f021"; } + +.fa.fa-list-alt { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-dedent:before { + content: "\f03b"; } + +.fa.fa-video-camera:before { + content: "\f03d"; } + +.fa.fa-picture-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-picture-o:before { + content: "\f03e"; } + +.fa.fa-photo { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-photo:before { + content: "\f03e"; } + +.fa.fa-image { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-image:before { + content: "\f03e"; } + +.fa.fa-pencil:before { + content: "\f303"; } + +.fa.fa-map-marker:before { + content: "\f3c5"; } + +.fa.fa-pencil-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-pencil-square-o:before { + content: "\f044"; } + +.fa.fa-share-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-share-square-o:before { + content: "\f14d"; } + +.fa.fa-check-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-check-square-o:before { + content: "\f14a"; } + +.fa.fa-arrows:before { + content: "\f0b2"; } + +.fa.fa-times-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-times-circle-o:before { + content: "\f057"; } + +.fa.fa-check-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-check-circle-o:before { + content: "\f058"; } + +.fa.fa-mail-forward:before { + content: "\f064"; } + +.fa.fa-eye { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-eye-slash { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-warning:before { + content: "\f071"; } + +.fa.fa-calendar:before { + content: "\f073"; } + +.fa.fa-arrows-v:before { + content: "\f338"; } + +.fa.fa-arrows-h:before { + content: "\f337"; } + +.fa.fa-bar-chart { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-bar-chart:before { + content: "\f080"; } + +.fa.fa-bar-chart-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-bar-chart-o:before { + content: "\f080"; } + +.fa.fa-twitter-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-facebook-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-gears:before { + content: "\f085"; } + +.fa.fa-thumbs-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-thumbs-o-up:before { + content: "\f164"; } + +.fa.fa-thumbs-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-thumbs-o-down:before { + content: "\f165"; } + +.fa.fa-heart-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-heart-o:before { + content: "\f004"; } + +.fa.fa-sign-out:before { + content: "\f2f5"; } + +.fa.fa-linkedin-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-linkedin-square:before { + content: "\f08c"; } + +.fa.fa-thumb-tack:before { + content: "\f08d"; } + +.fa.fa-external-link:before { + content: "\f35d"; } + +.fa.fa-sign-in:before { + content: "\f2f6"; } + +.fa.fa-github-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-lemon-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-lemon-o:before { + content: "\f094"; } + +.fa.fa-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-square-o:before { + content: "\f0c8"; } + +.fa.fa-bookmark-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-bookmark-o:before { + content: "\f02e"; } + +.fa.fa-twitter { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-facebook { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-facebook:before { + content: "\f39e"; } + +.fa.fa-facebook-f { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-facebook-f:before { + content: "\f39e"; } + +.fa.fa-github { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-credit-card { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-feed:before { + content: "\f09e"; } + +.fa.fa-hdd-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hdd-o:before { + content: "\f0a0"; } + +.fa.fa-hand-o-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-o-right:before { + content: "\f0a4"; } + +.fa.fa-hand-o-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-o-left:before { + content: "\f0a5"; } + +.fa.fa-hand-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-o-up:before { + content: "\f0a6"; } + +.fa.fa-hand-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-o-down:before { + content: "\f0a7"; } + +.fa.fa-arrows-alt:before { + content: "\f31e"; } + +.fa.fa-group:before { + content: "\f0c0"; } + +.fa.fa-chain:before { + content: "\f0c1"; } + +.fa.fa-scissors:before { + content: "\f0c4"; } + +.fa.fa-files-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-files-o:before { + content: "\f0c5"; } + +.fa.fa-floppy-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-floppy-o:before { + content: "\f0c7"; } + +.fa.fa-navicon:before { + content: "\f0c9"; } + +.fa.fa-reorder:before { + content: "\f0c9"; } + +.fa.fa-pinterest { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-pinterest-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-google-plus-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-google-plus { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-google-plus:before { + content: "\f0d5"; } + +.fa.fa-money { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-money:before { + content: "\f3d1"; } + +.fa.fa-unsorted:before { + content: "\f0dc"; } + +.fa.fa-sort-desc:before { + content: "\f0dd"; } + +.fa.fa-sort-asc:before { + content: "\f0de"; } + +.fa.fa-linkedin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-linkedin:before { + content: "\f0e1"; } + +.fa.fa-rotate-left:before { + content: "\f0e2"; } + +.fa.fa-legal:before { + content: "\f0e3"; } + +.fa.fa-tachometer:before { + content: "\f3fd"; } + +.fa.fa-dashboard:before { + content: "\f3fd"; } + +.fa.fa-comment-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-comment-o:before { + content: "\f075"; } + +.fa.fa-comments-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-comments-o:before { + content: "\f086"; } + +.fa.fa-flash:before { + content: "\f0e7"; } + +.fa.fa-clipboard { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-paste { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-paste:before { + content: "\f328"; } + +.fa.fa-lightbulb-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-lightbulb-o:before { + content: "\f0eb"; } + +.fa.fa-exchange:before { + content: "\f362"; } + +.fa.fa-cloud-download:before { + content: "\f381"; } + +.fa.fa-cloud-upload:before { + content: "\f382"; } + +.fa.fa-bell-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-bell-o:before { + content: "\f0f3"; } + +.fa.fa-cutlery:before { + content: "\f2e7"; } + +.fa.fa-file-text-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-text-o:before { + content: "\f15c"; } + +.fa.fa-building-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-building-o:before { + content: "\f1ad"; } + +.fa.fa-hospital-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hospital-o:before { + content: "\f0f8"; } + +.fa.fa-tablet:before { + content: "\f3fa"; } + +.fa.fa-mobile:before { + content: "\f3cd"; } + +.fa.fa-mobile-phone:before { + content: "\f3cd"; } + +.fa.fa-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-circle-o:before { + content: "\f111"; } + +.fa.fa-mail-reply:before { + content: "\f3e5"; } + +.fa.fa-github-alt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-folder-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-folder-o:before { + content: "\f07b"; } + +.fa.fa-folder-open-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-folder-open-o:before { + content: "\f07c"; } + +.fa.fa-smile-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-smile-o:before { + content: "\f118"; } + +.fa.fa-frown-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-frown-o:before { + content: "\f119"; } + +.fa.fa-meh-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-meh-o:before { + content: "\f11a"; } + +.fa.fa-keyboard-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-keyboard-o:before { + content: "\f11c"; } + +.fa.fa-flag-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-flag-o:before { + content: "\f024"; } + +.fa.fa-mail-reply-all:before { + content: "\f122"; } + +.fa.fa-star-half-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-star-half-o:before { + content: "\f089"; } + +.fa.fa-star-half-empty { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-star-half-empty:before { + content: "\f089"; } + +.fa.fa-star-half-full { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-star-half-full:before { + content: "\f089"; } + +.fa.fa-code-fork:before { + content: "\f126"; } + +.fa.fa-chain-broken:before { + content: "\f127"; } + +.fa.fa-shield:before { + content: "\f3ed"; } + +.fa.fa-calendar-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-calendar-o:before { + content: "\f133"; } + +.fa.fa-maxcdn { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-html5 { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-css3 { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-ticket:before { + content: "\f3ff"; } + +.fa.fa-minus-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-minus-square-o:before { + content: "\f146"; } + +.fa.fa-level-up:before { + content: "\f3bf"; } + +.fa.fa-level-down:before { + content: "\f3be"; } + +.fa.fa-pencil-square:before { + content: "\f14b"; } + +.fa.fa-external-link-square:before { + content: "\f360"; } + +.fa.fa-compass { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-caret-square-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-caret-square-o-down:before { + content: "\f150"; } + +.fa.fa-toggle-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-toggle-down:before { + content: "\f150"; } + +.fa.fa-caret-square-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-caret-square-o-up:before { + content: "\f151"; } + +.fa.fa-toggle-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-toggle-up:before { + content: "\f151"; } + +.fa.fa-caret-square-o-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-caret-square-o-right:before { + content: "\f152"; } + +.fa.fa-toggle-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-toggle-right:before { + content: "\f152"; } + +.fa.fa-eur:before { + content: "\f153"; } + +.fa.fa-euro:before { + content: "\f153"; } + +.fa.fa-gbp:before { + content: "\f154"; } + +.fa.fa-usd:before { + content: "\f155"; } + +.fa.fa-dollar:before { + content: "\f155"; } + +.fa.fa-inr:before { + content: "\f156"; } + +.fa.fa-rupee:before { + content: "\f156"; } + +.fa.fa-jpy:before { + content: "\f157"; } + +.fa.fa-cny:before { + content: "\f157"; } + +.fa.fa-rmb:before { + content: "\f157"; } + +.fa.fa-yen:before { + content: "\f157"; } + +.fa.fa-rub:before { + content: "\f158"; } + +.fa.fa-ruble:before { + content: "\f158"; } + +.fa.fa-rouble:before { + content: "\f158"; } + +.fa.fa-krw:before { + content: "\f159"; } + +.fa.fa-won:before { + content: "\f159"; } + +.fa.fa-btc { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-bitcoin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-bitcoin:before { + content: "\f15a"; } + +.fa.fa-file-text:before { + content: "\f15c"; } + +.fa.fa-sort-alpha-asc:before { + content: "\f15d"; } + +.fa.fa-sort-alpha-desc:before { + content: "\f15e"; } + +.fa.fa-sort-amount-asc:before { + content: "\f160"; } + +.fa.fa-sort-amount-desc:before { + content: "\f161"; } + +.fa.fa-sort-numeric-asc:before { + content: "\f162"; } + +.fa.fa-sort-numeric-desc:before { + content: "\f163"; } + +.fa.fa-youtube-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-youtube { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-xing { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-xing-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-youtube-play { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-youtube-play:before { + content: "\f167"; } + +.fa.fa-dropbox { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-stack-overflow { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-instagram { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-flickr { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-adn { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-bitbucket { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-bitbucket-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-bitbucket-square:before { + content: "\f171"; } + +.fa.fa-tumblr { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-tumblr-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-long-arrow-down:before { + content: "\f309"; } + +.fa.fa-long-arrow-up:before { + content: "\f30c"; } + +.fa.fa-long-arrow-left:before { + content: "\f30a"; } + +.fa.fa-long-arrow-right:before { + content: "\f30b"; } + +.fa.fa-apple { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-windows { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-android { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-linux { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-dribbble { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-skype { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-foursquare { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-trello { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-gratipay { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-gittip { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-gittip:before { + content: "\f184"; } + +.fa.fa-sun-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-sun-o:before { + content: "\f185"; } + +.fa.fa-moon-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-moon-o:before { + content: "\f186"; } + +.fa.fa-vk { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-weibo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-renren { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-pagelines { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-stack-exchange { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-arrow-circle-o-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-arrow-circle-o-right:before { + content: "\f35a"; } + +.fa.fa-arrow-circle-o-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-arrow-circle-o-left:before { + content: "\f359"; } + +.fa.fa-caret-square-o-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-caret-square-o-left:before { + content: "\f191"; } + +.fa.fa-toggle-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-toggle-left:before { + content: "\f191"; } + +.fa.fa-dot-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-dot-circle-o:before { + content: "\f192"; } + +.fa.fa-vimeo-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-try:before { + content: "\f195"; } + +.fa.fa-turkish-lira:before { + content: "\f195"; } + +.fa.fa-plus-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-plus-square-o:before { + content: "\f0fe"; } + +.fa.fa-slack { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wordpress { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-openid { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-institution:before { + content: "\f19c"; } + +.fa.fa-bank:before { + content: "\f19c"; } + +.fa.fa-mortar-board:before { + content: "\f19d"; } + +.fa.fa-yahoo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-google { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-reddit { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-reddit-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-stumbleupon-circle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-stumbleupon { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-delicious { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-digg { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-pied-piper-pp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-pied-piper-alt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-drupal { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-joomla { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-spoon:before { + content: "\f2e5"; } + +.fa.fa-behance { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-behance-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-steam { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-steam-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-automobile:before { + content: "\f1b9"; } + +.fa.fa-cab:before { + content: "\f1ba"; } + +.fa.fa-envelope-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-envelope-o:before { + content: "\f0e0"; } + +.fa.fa-deviantart { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-soundcloud { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-file-pdf-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-pdf-o:before { + content: "\f1c1"; } + +.fa.fa-file-word-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-word-o:before { + content: "\f1c2"; } + +.fa.fa-file-excel-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-excel-o:before { + content: "\f1c3"; } + +.fa.fa-file-powerpoint-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-powerpoint-o:before { + content: "\f1c4"; } + +.fa.fa-file-image-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-image-o:before { + content: "\f1c5"; } + +.fa.fa-file-photo-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-photo-o:before { + content: "\f1c5"; } + +.fa.fa-file-picture-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-picture-o:before { + content: "\f1c5"; } + +.fa.fa-file-archive-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-archive-o:before { + content: "\f1c6"; } + +.fa.fa-file-zip-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-zip-o:before { + content: "\f1c6"; } + +.fa.fa-file-audio-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-audio-o:before { + content: "\f1c7"; } + +.fa.fa-file-sound-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-sound-o:before { + content: "\f1c7"; } + +.fa.fa-file-video-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-video-o:before { + content: "\f1c8"; } + +.fa.fa-file-movie-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-movie-o:before { + content: "\f1c8"; } + +.fa.fa-file-code-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-code-o:before { + content: "\f1c9"; } + +.fa.fa-vine { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-codepen { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-jsfiddle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-life-ring { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-life-bouy { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-life-bouy:before { + content: "\f1cd"; } + +.fa.fa-life-buoy { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-life-buoy:before { + content: "\f1cd"; } + +.fa.fa-life-saver { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-life-saver:before { + content: "\f1cd"; } + +.fa.fa-support { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-support:before { + content: "\f1cd"; } + +.fa.fa-circle-o-notch:before { + content: "\f1ce"; } + +.fa.fa-rebel { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-ra { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-ra:before { + content: "\f1d0"; } + +.fa.fa-resistance { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-resistance:before { + content: "\f1d0"; } + +.fa.fa-empire { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-ge { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-ge:before { + content: "\f1d1"; } + +.fa.fa-git-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-git { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-hacker-news { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-y-combinator-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-y-combinator-square:before { + content: "\f1d4"; } + +.fa.fa-yc-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-yc-square:before { + content: "\f1d4"; } + +.fa.fa-tencent-weibo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-qq { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-weixin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wechat { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wechat:before { + content: "\f1d7"; } + +.fa.fa-send:before { + content: "\f1d8"; } + +.fa.fa-paper-plane-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-paper-plane-o:before { + content: "\f1d8"; } + +.fa.fa-send-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-send-o:before { + content: "\f1d8"; } + +.fa.fa-circle-thin { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-circle-thin:before { + content: "\f111"; } + +.fa.fa-header:before { + content: "\f1dc"; } + +.fa.fa-sliders:before { + content: "\f1de"; } + +.fa.fa-futbol-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-futbol-o:before { + content: "\f1e3"; } + +.fa.fa-soccer-ball-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-soccer-ball-o:before { + content: "\f1e3"; } + +.fa.fa-slideshare { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-twitch { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-yelp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-newspaper-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-newspaper-o:before { + content: "\f1ea"; } + +.fa.fa-paypal { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-google-wallet { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-cc-visa { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-cc-mastercard { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-cc-discover { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-cc-amex { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-cc-paypal { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-cc-stripe { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-bell-slash-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-bell-slash-o:before { + content: "\f1f6"; } + +.fa.fa-trash:before { + content: "\f2ed"; } + +.fa.fa-copyright { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-eyedropper:before { + content: "\f1fb"; } + +.fa.fa-area-chart:before { + content: "\f1fe"; } + +.fa.fa-pie-chart:before { + content: "\f200"; } + +.fa.fa-line-chart:before { + content: "\f201"; } + +.fa.fa-lastfm { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-lastfm-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-ioxhost { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-angellist { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-cc { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-cc:before { + content: "\f20a"; } + +.fa.fa-ils:before { + content: "\f20b"; } + +.fa.fa-shekel:before { + content: "\f20b"; } + +.fa.fa-sheqel:before { + content: "\f20b"; } + +.fa.fa-meanpath { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-meanpath:before { + content: "\f2b4"; } + +.fa.fa-buysellads { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-connectdevelop { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-dashcube { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-forumbee { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-leanpub { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-sellsy { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-shirtsinbulk { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-simplybuilt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-skyatlas { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-diamond { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-diamond:before { + content: "\f3a5"; } + +.fa.fa-intersex:before { + content: "\f224"; } + +.fa.fa-facebook-official { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-facebook-official:before { + content: "\f09a"; } + +.fa.fa-pinterest-p { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-whatsapp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-hotel:before { + content: "\f236"; } + +.fa.fa-viacoin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-medium { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-y-combinator { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-yc { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-yc:before { + content: "\f23b"; } + +.fa.fa-optin-monster { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-opencart { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-expeditedssl { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-battery-4:before { + content: "\f240"; } + +.fa.fa-battery:before { + content: "\f240"; } + +.fa.fa-battery-3:before { + content: "\f241"; } + +.fa.fa-battery-2:before { + content: "\f242"; } + +.fa.fa-battery-1:before { + content: "\f243"; } + +.fa.fa-battery-0:before { + content: "\f244"; } + +.fa.fa-object-group { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-object-ungroup { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-sticky-note-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-sticky-note-o:before { + content: "\f249"; } + +.fa.fa-cc-jcb { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-cc-diners-club { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-clone { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hourglass-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hourglass-o:before { + content: "\f254"; } + +.fa.fa-hourglass-1:before { + content: "\f251"; } + +.fa.fa-hourglass-2:before { + content: "\f252"; } + +.fa.fa-hourglass-3:before { + content: "\f253"; } + +.fa.fa-hand-rock-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-rock-o:before { + content: "\f255"; } + +.fa.fa-hand-grab-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-grab-o:before { + content: "\f255"; } + +.fa.fa-hand-paper-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-paper-o:before { + content: "\f256"; } + +.fa.fa-hand-stop-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-stop-o:before { + content: "\f256"; } + +.fa.fa-hand-scissors-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-scissors-o:before { + content: "\f257"; } + +.fa.fa-hand-lizard-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-lizard-o:before { + content: "\f258"; } + +.fa.fa-hand-spock-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-spock-o:before { + content: "\f259"; } + +.fa.fa-hand-pointer-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-pointer-o:before { + content: "\f25a"; } + +.fa.fa-hand-peace-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-peace-o:before { + content: "\f25b"; } + +.fa.fa-registered { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-creative-commons { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-gg { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-gg-circle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-tripadvisor { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-odnoklassniki { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-odnoklassniki-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-get-pocket { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wikipedia-w { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-safari { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-chrome { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-firefox { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-opera { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-internet-explorer { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-television:before { + content: "\f26c"; } + +.fa.fa-contao { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-500px { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-amazon { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-calendar-plus-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-calendar-plus-o:before { + content: "\f271"; } + +.fa.fa-calendar-minus-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-calendar-minus-o:before { + content: "\f272"; } + +.fa.fa-calendar-times-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-calendar-times-o:before { + content: "\f273"; } + +.fa.fa-calendar-check-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-calendar-check-o:before { + content: "\f274"; } + +.fa.fa-map-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-map-o:before { + content: "\f279"; } + +.fa.fa-commenting { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-commenting:before { + content: "\f4ad"; } + +.fa.fa-commenting-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-commenting-o:before { + content: "\f4ad"; } + +.fa.fa-houzz { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-vimeo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-vimeo:before { + content: "\f27d"; } + +.fa.fa-black-tie { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-fonticons { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-reddit-alien { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-edge { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-credit-card-alt:before { + content: "\f09d"; } + +.fa.fa-codiepie { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-modx { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-fort-awesome { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-usb { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-product-hunt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-mixcloud { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-scribd { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-pause-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-pause-circle-o:before { + content: "\f28b"; } + +.fa.fa-stop-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-stop-circle-o:before { + content: "\f28d"; } + +.fa.fa-bluetooth { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-bluetooth-b { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-gitlab { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wpbeginner { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wpforms { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-envira { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wheelchair-alt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wheelchair-alt:before { + content: "\f368"; } + +.fa.fa-question-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-question-circle-o:before { + content: "\f059"; } + +.fa.fa-volume-control-phone:before { + content: "\f2a0"; } + +.fa.fa-asl-interpreting:before { + content: "\f2a3"; } + +.fa.fa-deafness:before { + content: "\f2a4"; } + +.fa.fa-hard-of-hearing:before { + content: "\f2a4"; } + +.fa.fa-glide { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-glide-g { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-signing:before { + content: "\f2a7"; } + +.fa.fa-viadeo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-viadeo-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-snapchat { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-snapchat-ghost { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-snapchat-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-pied-piper { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-first-order { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-yoast { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-themeisle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-google-plus-official { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-google-plus-official:before { + content: "\f2b3"; } + +.fa.fa-google-plus-circle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-google-plus-circle:before { + content: "\f2b3"; } + +.fa.fa-font-awesome { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-fa { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-fa:before { + content: "\f2b4"; } + +.fa.fa-handshake-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-handshake-o:before { + content: "\f2b5"; } + +.fa.fa-envelope-open-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-envelope-open-o:before { + content: "\f2b6"; } + +.fa.fa-linode { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-address-book-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-address-book-o:before { + content: "\f2b9"; } + +.fa.fa-vcard:before { + content: "\f2bb"; } + +.fa.fa-address-card-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-address-card-o:before { + content: "\f2bb"; } + +.fa.fa-vcard-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-vcard-o:before { + content: "\f2bb"; } + +.fa.fa-user-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-user-circle-o:before { + content: "\f2bd"; } + +.fa.fa-user-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-user-o:before { + content: "\f007"; } + +.fa.fa-id-badge { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-drivers-license:before { + content: "\f2c2"; } + +.fa.fa-id-card-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-id-card-o:before { + content: "\f2c2"; } + +.fa.fa-drivers-license-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-drivers-license-o:before { + content: "\f2c2"; } + +.fa.fa-quora { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-free-code-camp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-telegram { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-thermometer-4:before { + content: "\f2c7"; } + +.fa.fa-thermometer:before { + content: "\f2c7"; } + +.fa.fa-thermometer-3:before { + content: "\f2c8"; } + +.fa.fa-thermometer-2:before { + content: "\f2c9"; } + +.fa.fa-thermometer-1:before { + content: "\f2ca"; } + +.fa.fa-thermometer-0:before { + content: "\f2cb"; } + +.fa.fa-bathtub:before { + content: "\f2cd"; } + +.fa.fa-s15:before { + content: "\f2cd"; } + +.fa.fa-window-maximize { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-window-restore { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-times-rectangle:before { + content: "\f410"; } + +.fa.fa-window-close-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-window-close-o:before { + content: "\f410"; } + +.fa.fa-times-rectangle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-times-rectangle-o:before { + content: "\f410"; } + +.fa.fa-bandcamp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-grav { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-etsy { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-imdb { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-ravelry { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-eercast { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-eercast:before { + content: "\f2da"; } + +.fa.fa-snowflake-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-snowflake-o:before { + content: "\f2dc"; } + +.fa.fa-superpowers { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wpexplorer { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-spotify { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/v4-shims.min.css b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/v4-shims.min.css new file mode 100644 index 0000000000..cd5df33b2b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/css/v4-shims.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa.fa-glass:before{content:"\f000"}.fa.fa-meetup{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-star-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-o:before{content:"\f005"}.fa.fa-close:before,.fa.fa-remove:before{content:"\f00d"}.fa.fa-gear:before{content:"\f013"}.fa.fa-trash-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-trash-o:before{content:"\f2ed"}.fa.fa-file-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-o:before{content:"\f15b"}.fa.fa-clock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-clock-o:before{content:"\f017"}.fa.fa-arrow-circle-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-down:before{content:"\f358"}.fa.fa-arrow-circle-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-up:before{content:"\f35b"}.fa.fa-play-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-play-circle-o:before{content:"\f144"}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:"\f01e"}.fa.fa-refresh:before{content:"\f021"}.fa.fa-list-alt{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-dedent:before{content:"\f03b"}.fa.fa-video-camera:before{content:"\f03d"}.fa.fa-picture-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-picture-o:before{content:"\f03e"}.fa.fa-photo{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-photo:before{content:"\f03e"}.fa.fa-image{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-image:before{content:"\f03e"}.fa.fa-pencil:before{content:"\f303"}.fa.fa-map-marker:before{content:"\f3c5"}.fa.fa-pencil-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-pencil-square-o:before{content:"\f044"}.fa.fa-share-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-share-square-o:before{content:"\f14d"}.fa.fa-check-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-check-square-o:before{content:"\f14a"}.fa.fa-arrows:before{content:"\f0b2"}.fa.fa-times-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-circle-o:before{content:"\f057"}.fa.fa-check-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-check-circle-o:before{content:"\f058"}.fa.fa-mail-forward:before{content:"\f064"}.fa.fa-eye,.fa.fa-eye-slash{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-warning:before{content:"\f071"}.fa.fa-calendar:before{content:"\f073"}.fa.fa-arrows-v:before{content:"\f338"}.fa.fa-arrows-h:before{content:"\f337"}.fa.fa-bar-chart{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bar-chart:before{content:"\f080"}.fa.fa-bar-chart-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bar-chart-o:before{content:"\f080"}.fa.fa-facebook-square,.fa.fa-twitter-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gears:before{content:"\f085"}.fa.fa-thumbs-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-thumbs-o-up:before{content:"\f164"}.fa.fa-thumbs-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-thumbs-o-down:before{content:"\f165"}.fa.fa-heart-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-heart-o:before{content:"\f004"}.fa.fa-sign-out:before{content:"\f2f5"}.fa.fa-linkedin-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin-square:before{content:"\f08c"}.fa.fa-thumb-tack:before{content:"\f08d"}.fa.fa-external-link:before{content:"\f35d"}.fa.fa-sign-in:before{content:"\f2f6"}.fa.fa-github-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-lemon-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-lemon-o:before{content:"\f094"}.fa.fa-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-square-o:before{content:"\f0c8"}.fa.fa-bookmark-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bookmark-o:before{content:"\f02e"}.fa.fa-facebook,.fa.fa-twitter{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook:before{content:"\f39e"}.fa.fa-facebook-f{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-f:before{content:"\f39e"}.fa.fa-github{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-feed:before{content:"\f09e"}.fa.fa-hdd-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hdd-o:before{content:"\f0a0"}.fa.fa-hand-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-right:before{content:"\f0a4"}.fa.fa-hand-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-left:before{content:"\f0a5"}.fa.fa-hand-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-up:before{content:"\f0a6"}.fa.fa-hand-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-down:before{content:"\f0a7"}.fa.fa-arrows-alt:before{content:"\f31e"}.fa.fa-group:before{content:"\f0c0"}.fa.fa-chain:before{content:"\f0c1"}.fa.fa-scissors:before{content:"\f0c4"}.fa.fa-files-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-files-o:before{content:"\f0c5"}.fa.fa-floppy-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-floppy-o:before{content:"\f0c7"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:"\f0c9"}.fa.fa-google-plus,.fa.fa-google-plus-square,.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus:before{content:"\f0d5"}.fa.fa-money{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-money:before{content:"\f3d1"}.fa.fa-unsorted:before{content:"\f0dc"}.fa.fa-sort-desc:before{content:"\f0dd"}.fa.fa-sort-asc:before{content:"\f0de"}.fa.fa-linkedin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin:before{content:"\f0e1"}.fa.fa-rotate-left:before{content:"\f0e2"}.fa.fa-legal:before{content:"\f0e3"}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:"\f3fd"}.fa.fa-comment-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-comment-o:before{content:"\f075"}.fa.fa-comments-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-comments-o:before{content:"\f086"}.fa.fa-flash:before{content:"\f0e7"}.fa.fa-clipboard,.fa.fa-paste{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-paste:before{content:"\f328"}.fa.fa-lightbulb-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-lightbulb-o:before{content:"\f0eb"}.fa.fa-exchange:before{content:"\f362"}.fa.fa-cloud-download:before{content:"\f381"}.fa.fa-cloud-upload:before{content:"\f382"}.fa.fa-bell-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bell-o:before{content:"\f0f3"}.fa.fa-cutlery:before{content:"\f2e7"}.fa.fa-file-text-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-text-o:before{content:"\f15c"}.fa.fa-building-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-building-o:before{content:"\f1ad"}.fa.fa-hospital-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hospital-o:before{content:"\f0f8"}.fa.fa-tablet:before{content:"\f3fa"}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:"\f3cd"}.fa.fa-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-circle-o:before{content:"\f111"}.fa.fa-mail-reply:before{content:"\f3e5"}.fa.fa-github-alt{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-folder-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-folder-o:before{content:"\f07b"}.fa.fa-folder-open-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-folder-open-o:before{content:"\f07c"}.fa.fa-smile-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-smile-o:before{content:"\f118"}.fa.fa-frown-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-frown-o:before{content:"\f119"}.fa.fa-meh-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-meh-o:before{content:"\f11a"}.fa.fa-keyboard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-keyboard-o:before{content:"\f11c"}.fa.fa-flag-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-flag-o:before{content:"\f024"}.fa.fa-mail-reply-all:before{content:"\f122"}.fa.fa-star-half-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-o:before{content:"\f089"}.fa.fa-star-half-empty{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-empty:before{content:"\f089"}.fa.fa-star-half-full{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-full:before{content:"\f089"}.fa.fa-code-fork:before{content:"\f126"}.fa.fa-chain-broken:before{content:"\f127"}.fa.fa-shield:before{content:"\f3ed"}.fa.fa-calendar-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-o:before{content:"\f133"}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ticket:before{content:"\f3ff"}.fa.fa-minus-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-minus-square-o:before{content:"\f146"}.fa.fa-level-up:before{content:"\f3bf"}.fa.fa-level-down:before{content:"\f3be"}.fa.fa-pencil-square:before{content:"\f14b"}.fa.fa-external-link-square:before{content:"\f360"}.fa.fa-compass{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-down:before{content:"\f150"}.fa.fa-toggle-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-down:before{content:"\f150"}.fa.fa-caret-square-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-up:before{content:"\f151"}.fa.fa-toggle-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-up:before{content:"\f151"}.fa.fa-caret-square-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-right:before{content:"\f152"}.fa.fa-toggle-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-right:before{content:"\f152"}.fa.fa-eur:before,.fa.fa-euro:before{content:"\f153"}.fa.fa-gbp:before{content:"\f154"}.fa.fa-dollar:before,.fa.fa-usd:before{content:"\f155"}.fa.fa-inr:before,.fa.fa-rupee:before{content:"\f156"}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:"\f157"}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:"\f158"}.fa.fa-krw:before,.fa.fa-won:before{content:"\f159"}.fa.fa-bitcoin,.fa.fa-btc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitcoin:before{content:"\f15a"}.fa.fa-file-text:before{content:"\f15c"}.fa.fa-sort-alpha-asc:before{content:"\f15d"}.fa.fa-sort-alpha-desc:before{content:"\f15e"}.fa.fa-sort-amount-asc:before{content:"\f160"}.fa.fa-sort-amount-desc:before{content:"\f161"}.fa.fa-sort-numeric-asc:before{content:"\f162"}.fa.fa-sort-numeric-desc:before{content:"\f163"}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube,.fa.fa-youtube-play,.fa.fa-youtube-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-youtube-play:before{content:"\f167"}.fa.fa-adn,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-dropbox,.fa.fa-flickr,.fa.fa-instagram,.fa.fa-stack-overflow{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitbucket-square:before{content:"\f171"}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-long-arrow-down:before{content:"\f309"}.fa.fa-long-arrow-up:before{content:"\f30c"}.fa.fa-long-arrow-left:before{content:"\f30a"}.fa.fa-long-arrow-right:before{content:"\f30b"}.fa.fa-android,.fa.fa-apple,.fa.fa-dribbble,.fa.fa-foursquare,.fa.fa-gittip,.fa.fa-gratipay,.fa.fa-linux,.fa.fa-skype,.fa.fa-trello,.fa.fa-windows{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gittip:before{content:"\f184"}.fa.fa-sun-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-sun-o:before{content:"\f185"}.fa.fa-moon-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-moon-o:before{content:"\f186"}.fa.fa-pagelines,.fa.fa-renren,.fa.fa-stack-exchange,.fa.fa-vk,.fa.fa-weibo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-arrow-circle-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-right:before{content:"\f35a"}.fa.fa-arrow-circle-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-left:before{content:"\f359"}.fa.fa-caret-square-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-left:before{content:"\f191"}.fa.fa-toggle-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-left:before{content:"\f191"}.fa.fa-dot-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-dot-circle-o:before{content:"\f192"}.fa.fa-vimeo-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:"\f195"}.fa.fa-plus-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-plus-square-o:before{content:"\f0fe"}.fa.fa-openid,.fa.fa-slack,.fa.fa-wordpress{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:"\f19c"}.fa.fa-mortar-board:before{content:"\f19d"}.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-google,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle,.fa.fa-yahoo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-spoon:before{content:"\f2e5"}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-steam,.fa.fa-steam-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-automobile:before{content:"\f1b9"}.fa.fa-cab:before{content:"\f1ba"}.fa.fa-envelope-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-envelope-o:before{content:"\f0e0"}.fa.fa-deviantart,.fa.fa-soundcloud{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-file-pdf-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-pdf-o:before{content:"\f1c1"}.fa.fa-file-word-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-word-o:before{content:"\f1c2"}.fa.fa-file-excel-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-excel-o:before{content:"\f1c3"}.fa.fa-file-powerpoint-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-powerpoint-o:before{content:"\f1c4"}.fa.fa-file-image-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-image-o:before{content:"\f1c5"}.fa.fa-file-photo-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-photo-o:before{content:"\f1c5"}.fa.fa-file-picture-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-picture-o:before{content:"\f1c5"}.fa.fa-file-archive-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-archive-o:before{content:"\f1c6"}.fa.fa-file-zip-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-zip-o:before{content:"\f1c6"}.fa.fa-file-audio-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-audio-o:before{content:"\f1c7"}.fa.fa-file-sound-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-sound-o:before{content:"\f1c7"}.fa.fa-file-video-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-video-o:before{content:"\f1c8"}.fa.fa-file-movie-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-movie-o:before{content:"\f1c8"}.fa.fa-file-code-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-code-o:before{content:"\f1c9"}.fa.fa-codepen,.fa.fa-jsfiddle,.fa.fa-vine{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-life-bouy,.fa.fa-life-ring{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-bouy:before{content:"\f1cd"}.fa.fa-life-buoy{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-buoy:before{content:"\f1cd"}.fa.fa-life-saver{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-saver:before{content:"\f1cd"}.fa.fa-support{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-support:before{content:"\f1cd"}.fa.fa-circle-o-notch:before{content:"\f1ce"}.fa.fa-ra,.fa.fa-rebel{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ra:before{content:"\f1d0"}.fa.fa-resistance{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-resistance:before{content:"\f1d0"}.fa.fa-empire,.fa.fa-ge{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ge:before{content:"\f1d1"}.fa.fa-git,.fa.fa-git-square,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-y-combinator-square:before{content:"\f1d4"}.fa.fa-yc-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc-square:before{content:"\f1d4"}.fa.fa-qq,.fa.fa-tencent-weibo,.fa.fa-wechat,.fa.fa-weixin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wechat:before{content:"\f1d7"}.fa.fa-send:before{content:"\f1d8"}.fa.fa-paper-plane-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-paper-plane-o:before{content:"\f1d8"}.fa.fa-send-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-send-o:before{content:"\f1d8"}.fa.fa-circle-thin{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-circle-thin:before{content:"\f111"}.fa.fa-header:before{content:"\f1dc"}.fa.fa-sliders:before{content:"\f1de"}.fa.fa-futbol-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-futbol-o:before{content:"\f1e3"}.fa.fa-soccer-ball-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-soccer-ball-o:before{content:"\f1e3"}.fa.fa-slideshare,.fa.fa-twitch,.fa.fa-yelp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-newspaper-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-newspaper-o:before{content:"\f1ea"}.fa.fa-cc-amex,.fa.fa-cc-discover,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-google-wallet,.fa.fa-paypal{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bell-slash-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bell-slash-o:before{content:"\f1f6"}.fa.fa-trash:before{content:"\f2ed"}.fa.fa-copyright{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-eyedropper:before{content:"\f1fb"}.fa.fa-area-chart:before{content:"\f1fe"}.fa.fa-pie-chart:before{content:"\f200"}.fa.fa-line-chart:before{content:"\f201"}.fa.fa-angellist,.fa.fa-ioxhost,.fa.fa-lastfm,.fa.fa-lastfm-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-cc{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-cc:before{content:"\f20a"}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:"\f20b"}.fa.fa-meanpath{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-meanpath:before{content:"\f2b4"}.fa.fa-buysellads,.fa.fa-connectdevelop,.fa.fa-dashcube,.fa.fa-forumbee,.fa.fa-leanpub,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-diamond{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-diamond:before{content:"\f3a5"}.fa.fa-intersex:before{content:"\f224"}.fa.fa-facebook-official{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-official:before{content:"\f09a"}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-hotel:before{content:"\f236"}.fa.fa-medium,.fa.fa-viacoin,.fa.fa-y-combinator,.fa.fa-yc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc:before{content:"\f23b"}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-battery-4:before,.fa.fa-battery:before{content:"\f240"}.fa.fa-battery-3:before{content:"\f241"}.fa.fa-battery-2:before{content:"\f242"}.fa.fa-battery-1:before{content:"\f243"}.fa.fa-battery-0:before{content:"\f244"}.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-sticky-note-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-sticky-note-o:before{content:"\f249"}.fa.fa-cc-diners-club,.fa.fa-cc-jcb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-clone,.fa.fa-hourglass-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hourglass-o:before{content:"\f254"}.fa.fa-hourglass-1:before{content:"\f251"}.fa.fa-hourglass-2:before{content:"\f252"}.fa.fa-hourglass-3:before{content:"\f253"}.fa.fa-hand-rock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-rock-o:before{content:"\f255"}.fa.fa-hand-grab-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-grab-o:before{content:"\f255"}.fa.fa-hand-paper-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-paper-o:before{content:"\f256"}.fa.fa-hand-stop-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-stop-o:before{content:"\f256"}.fa.fa-hand-scissors-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-scissors-o:before{content:"\f257"}.fa.fa-hand-lizard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-lizard-o:before{content:"\f258"}.fa.fa-hand-spock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-spock-o:before{content:"\f259"}.fa.fa-hand-pointer-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-pointer-o:before{content:"\f25a"}.fa.fa-hand-peace-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-peace-o:before{content:"\f25b"}.fa.fa-registered{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-chrome,.fa.fa-creative-commons,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-internet-explorer,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square,.fa.fa-opera,.fa.fa-safari,.fa.fa-tripadvisor,.fa.fa-wikipedia-w{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-television:before{content:"\f26c"}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-calendar-plus-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-plus-o:before{content:"\f271"}.fa.fa-calendar-minus-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-minus-o:before{content:"\f272"}.fa.fa-calendar-times-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-times-o:before{content:"\f273"}.fa.fa-calendar-check-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-check-o:before{content:"\f274"}.fa.fa-map-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-map-o:before{content:"\f279"}.fa.fa-commenting{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-commenting:before{content:"\f4ad"}.fa.fa-commenting-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-commenting-o:before{content:"\f4ad"}.fa.fa-houzz,.fa.fa-vimeo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-vimeo:before{content:"\f27d"}.fa.fa-black-tie,.fa.fa-edge,.fa.fa-fonticons,.fa.fa-reddit-alien{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card-alt:before{content:"\f09d"}.fa.fa-codiepie,.fa.fa-fort-awesome,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-product-hunt,.fa.fa-scribd,.fa.fa-usb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-pause-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-pause-circle-o:before{content:"\f28b"}.fa.fa-stop-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-stop-circle-o:before{content:"\f28d"}.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-envira,.fa.fa-gitlab,.fa.fa-wheelchair-alt,.fa.fa-wpbeginner,.fa.fa-wpforms{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wheelchair-alt:before{content:"\f368"}.fa.fa-question-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-question-circle-o:before{content:"\f059"}.fa.fa-volume-control-phone:before{content:"\f2a0"}.fa.fa-asl-interpreting:before{content:"\f2a3"}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:"\f2a4"}.fa.fa-glide,.fa.fa-glide-g{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-signing:before{content:"\f2a7"}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-snapchat,.fa.fa-snapchat-ghost,.fa.fa-snapchat-square,.fa.fa-themeisle,.fa.fa-viadeo,.fa.fa-viadeo-square,.fa.fa-yoast{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-official:before{content:"\f2b3"}.fa.fa-google-plus-circle{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-circle:before{content:"\f2b3"}.fa.fa-fa,.fa.fa-font-awesome{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-fa:before{content:"\f2b4"}.fa.fa-handshake-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-handshake-o:before{content:"\f2b5"}.fa.fa-envelope-open-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-envelope-open-o:before{content:"\f2b6"}.fa.fa-linode{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-address-book-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-address-book-o:before{content:"\f2b9"}.fa.fa-vcard:before{content:"\f2bb"}.fa.fa-address-card-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-address-card-o:before{content:"\f2bb"}.fa.fa-vcard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-vcard-o:before{content:"\f2bb"}.fa.fa-user-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-user-circle-o:before{content:"\f2bd"}.fa.fa-user-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-user-o:before{content:"\f007"}.fa.fa-id-badge{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-drivers-license:before{content:"\f2c2"}.fa.fa-id-card-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-id-card-o:before{content:"\f2c2"}.fa.fa-drivers-license-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-drivers-license-o:before{content:"\f2c2"}.fa.fa-free-code-camp,.fa.fa-quora,.fa.fa-telegram{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:"\f2c7"}.fa.fa-thermometer-3:before{content:"\f2c8"}.fa.fa-thermometer-2:before{content:"\f2c9"}.fa.fa-thermometer-1:before{content:"\f2ca"}.fa.fa-thermometer-0:before{content:"\f2cb"}.fa.fa-bathtub:before,.fa.fa-s15:before{content:"\f2cd"}.fa.fa-window-maximize,.fa.fa-window-restore{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-rectangle:before{content:"\f410"}.fa.fa-window-close-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-window-close-o:before{content:"\f410"}.fa.fa-times-rectangle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-rectangle-o:before{content:"\f410"}.fa.fa-bandcamp,.fa.fa-eercast,.fa.fa-etsy,.fa.fa-grav,.fa.fa-imdb,.fa.fa-ravelry{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-eercast:before{content:"\f2da"}.fa.fa-snowflake-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-snowflake-o:before{content:"\f2dc"}.fa.fa-spotify,.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:"Font Awesome 5 Brands";font-weight:400} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/all.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/all.js new file mode 100644 index 0000000000..a3d5aad68d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/all.js @@ -0,0 +1,3606 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +(function () { +'use strict'; + +var _WINDOW = {}; +try { + if (typeof window !== 'undefined') _WINDOW = window; + +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; + + + + + +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; + + + + + + + + + +var PRODUCTION = function () { + try { + return undefined === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + + + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var icons = { + "500px": [448, 512, [], "f26e", "M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3.3-16 16.5-21.2 23.9l-.5.6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8zm63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2zM393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4zM213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6.2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6z"], + "accessible-icon": [448, 512, [], "f368", "M423.9 255.8L411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7zm-64.9-154c28.1 0 50.9-22.8 50.9-50.9C409.9 22.8 387.1 0 359 0c-28.1 0-50.9 22.8-50.9 50.9 0 28.1 22.8 50.9 50.9 50.9zM179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3z"], + "accusoft": [640, 512, [], "f369", "M482.2 372.1C476.5 365.2 250 75 242.3 65.5c-13.7-17.2 0-16.8 19.2-16.9 9.7-.1 106.3-.6 116.5-.6 24.1-.1 28.7.6 38.4 12.8 2.1 2.7 205.1 245.8 207.2 248.3 5.5 6.7 15.2 19.1 7.2 23.4-2.4 1.3-114.6 47.7-117.8 48.9-10.1 4-17.5 6.8-30.8-9.3m114.7-5.6s-115 50.4-117.5 51.6c-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2-2.3-.3-24.6-4.7-38-7.2m-326-181.3s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3v-1l-51.2-65.8"], + "adn": [496, 512, [], "f170", "M248 167.5l64.9 98.8H183.1l64.9-98.8zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7h30.2z"], + "adversal": [512, 512, [], "f36a", "M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2zM178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4.4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3zm286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7.4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9zm3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6.4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1.2-.1.3-.1.5zm-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2.4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1zm-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8z"], + "affiliatetheme": [512, 512, [], "f36b", "M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2 29.1 21.6 11.1 96.6-40.2 167.5zm351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9.1-8.5-.3-16.8-1-25z"], + "algolia": [448, 512, [], "f36c", "M229.3 182.6c-49.3 0-89.2 39.9-89.2 89.2 0 49.3 39.9 89.2 89.2 89.2s89.2-39.9 89.2-89.2c0-49.3-40-89.2-89.2-89.2zm62.7 56.6l-58.9 30.6c-1.8.9-3.8-.4-3.8-2.3V201c0-1.5 1.3-2.7 2.7-2.6 26.2 1 48.9 15.7 61.1 37.1.7 1.3.2 3-1.1 3.7zM389.1 32H58.9C26.4 32 0 58.4 0 90.9V421c0 32.6 26.4 59 58.9 59H389c32.6 0 58.9-26.4 58.9-58.9V90.9C448 58.4 421.6 32 389.1 32zm-202.6 84.7c0-10.8 8.7-19.5 19.5-19.5h45.3c10.8 0 19.5 8.7 19.5 19.5v15.4c0 1.8-1.7 3-3.3 2.5-12.3-3.4-25.1-5.1-38.1-5.1-13.5 0-26.7 1.8-39.4 5.5-1.7.5-3.4-.8-3.4-2.5v-15.8zm-84.4 37l9.2-9.2c7.6-7.6 19.9-7.6 27.5 0l7.7 7.7c1.1 1.1 1 3-.3 4-6.2 4.5-12.1 9.4-17.6 14.9-5.4 5.4-10.4 11.3-14.8 17.4-1 1.3-2.9 1.5-4 .3l-7.7-7.7c-7.6-7.5-7.6-19.8 0-27.4zm127.2 244.8c-70 0-126.6-56.7-126.6-126.6s56.7-126.6 126.6-126.6c70 0 126.6 56.6 126.6 126.6 0 69.8-56.7 126.6-126.6 126.6z"], + "amazon": [448, 512, [], "f270", "M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z"], + "amazon-pay": [611, 512, [], "f42c", "M0 325.2c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7 40.7 20.4 83.2 35.6 127.4 46.3 20.9 5 41.9 9 63.2 11.8 31.5 4.2 63.2 6 95 5.2 17.4-.4 34.8-1.8 52.1-3.8 56.4-6.7 110.9-20.8 163.3-42.8 2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9-2.8 2.8-6.3 5.1-9.6 7.4-30.7 21.1-64.2 36.4-99.6 47.9-24.6 7.9-49.6 13.8-75.1 17.6-17.6 2.6-35.4 4.4-53.2 4.8-.8 0-1.7.2-2.5.3H294c-.8-.1-1.7-.3-2.5-.3-3.6-.2-7.2-.3-10.7-.4-16.9-.7-33.7-2.6-50.4-5.3-27.4-4.5-54.2-11.4-80.4-20.9-54.1-19.6-102.6-48.6-145.6-87-1.8-1.6-3-3.8-4.4-5.7v-2zM158 65c-1.4.2-2.9.4-4.3.6-14 1.7-26.6 6.9-38 15.1-2.4 1.7-4.6 3.5-7.1 5.4-.2-.5-.4-1-.4-1.4-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6H87.8c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3V215c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zm-47.4 41.9c0-1.5.4-2.4 1.7-3.3 13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9-1.2-.9-1.7-1.7-1.7-3.3.1-14.1 0-28.1 0-42.2 0-14 .1-28 0-42.1zM316.3 65c-1 .1-2 .3-2.9.4-9.8.5-19.4 1.7-28.9 4.1-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9 0 .4-.1.9-.2 1.4-.5-.1-.9 0-1.3-.1-10.5-2.5-21.1-4.3-32-4.9-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4.4-.4.9-.7 1.6-1.1.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0 2.7-.1 4.5-1.9 4.8-4.7.1-.9.1-1.9.1-2.8v-106c0-4.3-.2-8.6-.9-12.9-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1zm35 127.7c0 1.3-.4 2.2-1.5 3-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8-6.3-2.5-10.4-6.9-12.4-13.3s-2-13-.1-19.4c2.5-8.3 8.4-13 16.4-15.6 8.1-2.6 16.5-3 24.8-2.2 8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3-.1 4.7-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3-6.8-2.3-13.9-3.3-21-3.9-13.1-1.1-26.2-.5-39.2 1.9-14.3 2.7-27.9 7.3-40 15.6-1.4 1-2.8 2.1-3.7 3.5-.7 1.1-.9 2.8-.5 4 .4 1.5 2.1 1.9 3.6 1.8.7 0 1.5 0 2.2-.1 7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9 4.8.3 9.7 1.4 14.4 2.7 5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1-.4 1-.8 2-1 3-.5 2.9 1.2 4.8 4.1 4.1 1.7-.4 3.6-1.3 4.8-2.5 4.4-4.3 8.9-8.6 12.7-13.4 12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9v-17.3zM479.1 198.9c-12.9-35.7-25.8-71.5-38.7-107.2-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5.5 2.1 1.1 4.1 1.9 6.1 19.6 48.5 39.3 97.1 59.1 145.5 1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3-5.1 1.4-10.2 1.6-15.4 1.1-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8-.1 3.3-.1 6.6 0 9.9.1 5.5 2 8 7.4 8.9 5.6 1 11.3 1.9 16.9 2 17.1.4 30.7-6.5 39.5-21.4 3.5-5.9 6.7-12.1 9.2-18.4 23.7-59.8 47.1-119.7 70.6-179.6.7-1.8 1.3-3.6 1.6-5.5.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0-3.7 0-6.3 1.6-7.7 5.2-.5 1.4-1.1 2.7-1.6 4.1-11.6 33.3-23.2 66.6-34.8 100-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z"], + "amilia": [448, 512, [], "f36d", "M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm-87.9 327.7c0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5V380c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7"], + "android": [448, 512, [], "f17b", "M89.6 204.5v115.8c0 15.4-12.1 27.7-27.5 27.7-15.3 0-30.1-12.4-30.1-27.7V204.5c0-15.1 14.8-27.5 30.1-27.5 15.1 0 27.5 12.4 27.5 27.5zm10.8 157c0 16.4 13.2 29.6 29.6 29.6h19.9l.3 61.1c0 36.9 55.2 36.6 55.2 0v-61.1h37.2v61.1c0 36.7 55.5 36.8 55.5 0v-61.1h20.2c16.2 0 29.4-13.2 29.4-29.6V182.1H100.4v179.4zm248-189.1H99.3c0-42.8 25.6-80 63.6-99.4l-19.1-35.3c-2.8-4.9 4.3-8 6.7-3.8l19.4 35.6c34.9-15.5 75-14.7 108.3 0L297.5 34c2.5-4.3 9.5-1.1 6.7 3.8L285.1 73c37.7 19.4 63.3 56.6 63.3 99.4zm-170.7-55.5c0-5.7-4.6-10.5-10.5-10.5-5.7 0-10.2 4.8-10.2 10.5s4.6 10.5 10.2 10.5c5.9 0 10.5-4.8 10.5-10.5zm113.4 0c0-5.7-4.6-10.5-10.2-10.5-5.9 0-10.5 4.8-10.5 10.5s4.6 10.5 10.5 10.5c5.6 0 10.2-4.8 10.2-10.5zm94.8 60.1c-15.1 0-27.5 12.1-27.5 27.5v115.8c0 15.4 12.4 27.7 27.5 27.7 15.4 0 30.1-12.4 30.1-27.7V204.5c0-15.4-14.8-27.5-30.1-27.5z"], + "angellist": [448, 512, [], "f209", "M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7zM311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6 33.1-93.7zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8zM140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7.1-7.7 12.7-21.1 20.4-21.1zm184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3.3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7.1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7zm-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1z"], + "angrycreative": [640, 512, [], "f36e", "M640 238.2l-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4 93.1-6.2zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9-12.8 120zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3-126.2 7.7zm-44.3-70.2l-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7 2.7-29.8zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1zm21.1 70.8l5.8-60c-5 13.5-14.7 21.1-27.9 26.6l22.1 33.4zm135.4-45l-7.9-37.8-15.8 39.3 23.7-1.5zm-170.1-74.6l-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8.3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2-56.8 3.7zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1.6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2l-2.9 28.8zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3zm-201.3 8.2l23.8-1.6-8.3-37.6-15.5 39.2z"], + "angular": [415, 512, [], "f420", "M169.7 268.1h76.2l-38.1-91.6-38.1 91.6zM207.8 32L0 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7L207.8 32zM338 373.8h-48.6l-26.2-65.4H152.6l-26.2 65.4H77.7L207.8 81.5 338 373.8z"], + "app-store": [512, 512, [], "f36f", "M255.9 120.9l9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5 9.8 5.6 13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4 0-11.3 9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5l8.9 15.7zm-78.7 218l-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5-9.8-5.6-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6zm168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4 0 11.3-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216z"], + "app-store-ios": [448, 512, [], "f370", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7c16.1-4.9 29.3-1.1 39.6 11.4L127 384.5zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40zm98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20z"], + "apper": [640, 512, [], "f371", "M42.1 239.1c22.2 0 29 2.8 33.5 14.6h.8v-22.9c0-11.3-4.8-15.4-17.9-15.4-11.3 0-14.4 2.5-15.1 12.8H4.8c.3-13.9 1.5-19.1 5.8-24.4C17.9 195 29.5 192 56.7 192c33 0 47.1 5 53.9 18.9 2 4.3 4 15.6 4 23.7v76.3H76.3l1.3-19.1h-1c-5.3 15.6-13.6 20.4-35.5 20.4-30.3 0-41.1-10.1-41.1-37.3 0-25.2 12.3-35.8 42.1-35.8zm17.1 48.1c13.1 0 16.9-3 16.9-13.4 0-9.1-4.3-11.6-19.6-11.6-13.1 0-17.9 3-17.9 12.1-.1 10.4 3.7 12.9 20.6 12.9zm77.8-94.9h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.2 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3H137v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm57.9-60.7h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.3 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3h-39.5v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm53.8-3.8c0-25.4 3.3-37.8 12.3-45.8 8.8-8.1 22.2-11.3 45.1-11.3 42.8 0 55.7 12.8 55.7 55.7v11.1h-75.3c-.3 2-.3 4-.3 4.8 0 16.9 4.5 21.9 20.1 21.9 13.9 0 17.9-3 17.9-13.9h37.5v2.3c0 9.8-2.5 18.9-6.8 24.7-7.3 9.8-19.6 13.6-44.3 13.6-27.5 0-41.6-3.3-50.6-12.3-8.5-8.5-11.3-21.3-11.3-50.8zm76.4-11.6c-.3-1.8-.3-3.3-.3-3.8 0-12.3-3.3-14.6-19.6-14.6-14.4 0-17.1 3-18.1 15.1l-.3 3.3h38.3zm55.6-45.3h38.3l-1.8 19.9h.7c6.8-14.9 14.4-20.2 29.7-20.2 10.8 0 19.1 3.3 23.4 9.3 5.3 7.3 6.8 14.4 6.8 34 0 1.5 0 5 .2 9.3h-35c.3-1.8.3-3.3.3-4 0-15.4-2-19.4-10.3-19.4-6.3 0-10.8 3.3-13.1 9.3-1 3-1 4.3-1 12.3v68h-38.3V192.3z"], + "apple": [376, 512, [], "f179", "M314.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C59.3 141.2 0 184.8 0 273.5c0 26.2 4.8 53.3 14.4 81.2 12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z"], + "apple-pay": [640, 512, [], "f415", "M116.9 158.5c-7.5 8.9-19.5 15.9-31.5 14.9-1.5-12 4.4-24.8 11.3-32.6 7.5-9.1 20.6-15.6 31.3-16.1 1.2 12.4-3.7 24.7-11.1 33.8m10.9 17.2c-17.4-1-32.3 9.9-40.5 9.9-8.4 0-21-9.4-34.8-9.1-17.9.3-34.5 10.4-43.6 26.5-18.8 32.3-4.9 80 13.3 106.3 8.9 13 19.5 27.3 33.5 26.8 13.3-.5 18.5-8.6 34.5-8.6 16.1 0 20.8 8.6 34.8 8.4 14.5-.3 23.6-13 32.5-26 10.1-14.8 14.3-29.1 14.5-29.9-.3-.3-28-10.9-28.3-42.9-.3-26.8 21.9-39.5 22.9-40.3-12.5-18.6-32-20.6-38.8-21.1m100.4-36.2v194.9h30.3v-66.6h41.9c38.3 0 65.1-26.3 65.1-64.3s-26.4-64-64.1-64h-73.2zm30.3 25.5h34.9c26.3 0 41.3 14 41.3 38.6s-15 38.8-41.4 38.8h-34.8V165zm162.2 170.9c19 0 36.6-9.6 44.6-24.9h.6v23.4h28v-97c0-28.1-22.5-46.3-57.1-46.3-32.1 0-55.9 18.4-56.8 43.6h27.3c2.3-12 13.4-19.9 28.6-19.9 18.5 0 28.9 8.6 28.9 24.5v10.8l-37.8 2.3c-35.1 2.1-54.1 16.5-54.1 41.5.1 25.2 19.7 42 47.8 42zm8.2-23.1c-16.1 0-26.4-7.8-26.4-19.6 0-12.3 9.9-19.4 28.8-20.5l33.6-2.1v11c0 18.2-15.5 31.2-36 31.2zm102.5 74.6c29.5 0 43.4-11.3 55.5-45.4L640 193h-30.8l-35.6 115.1h-.6L537.4 193h-31.6L557 334.9l-2.8 8.6c-4.6 14.6-12.1 20.3-25.5 20.3-2.4 0-7-.3-8.9-.5v23.4c1.8.4 9.3.7 11.6.7z"], + "asymmetrik": [576, 512, [], "f372", "M517.5 309.2c38.8-40 58.1-80 58.5-116.1.8-65.5-59.4-118.2-169.4-135C277.9 38.4 118.1 73.6 0 140.5 52 114 110.6 92.3 170.7 82.3c74.5-20.5 153-25.4 221.3-14.8C544.5 91.3 588.8 195 490.8 299.2c-10.2 10.8-22 21.1-35 30.6L304.9 103.4 114.7 388.9c-65.6-29.4-76.5-90.2-19.1-151.2 20.8-22.2 48.3-41.9 79.5-58.1 20-12.2 39.7-22.6 62-30.7-65.1 20.3-122.7 52.9-161.6 92.9-27.7 28.6-41.4 57.1-41.7 82.9-.5 35.1 23.4 65.1 68.4 83l-34.5 51.7h101.6l22-34.4c22.2 1 45.3 0 68.6-2.7l-22.8 37.1h135.5L340 406.3c18.6-5.3 36.9-11.5 54.5-18.7l45.9 71.8H542L468.6 349c18.5-12.1 35-25.5 48.9-39.8zm-187.6 80.5l-25-40.6-32.7 53.3c-23.4 3.5-46.7 5.1-69.2 4.4l101.9-159.3 78.7 123c-17.2 7.4-35.3 13.9-53.7 19.2z"], + "audible": [640, 512, [], "f373", "M640 199.9v54l-320 200L0 254v-54l320 200 320-200.1zm-194.5 72l47.1-29.4c-37.2-55.8-100.7-92.6-172.7-92.6-72 0-135.5 36.7-172.6 92.4h.3c2.5-2.3 5.1-4.5 7.7-6.7 89.7-74.4 219.4-58.1 290.2 36.3zm-220.1 18.8c16.9-11.9 36.5-18.7 57.4-18.7 34.4 0 65.2 18.4 86.4 47.6l45.4-28.4c-20.9-29.9-55.6-49.5-94.8-49.5-38.9 0-73.4 19.4-94.4 49zM103.6 161.1c131.8-104.3 318.2-76.4 417.5 62.1l.7 1 48.8-30.4C517.1 112.1 424.8 58.1 319.9 58.1c-103.5 0-196.6 53.5-250.5 135.6 9.9-10.5 22.7-23.5 34.2-32.6zm467 32.7z"], + "autoprefixer": [640, 512, [], "f41c", "M318.4 16l-161 480h77.5l25.4-81.4h119.5L405 496h77.5L318.4 16zm-40.3 341.9l41.2-130.4h1.5l40.9 130.4h-83.6zM640 405l-10-31.4L462.1 358l19.4 56.5L640 405zm-462.1-47L10 373.7 0 405l158.5 9.4 19.4-56.4z"], + "avianex": [512, 512, [], "f374", "M453.1 32h-312c-38.9 0-76.2 31.2-83.3 69.7L1.2 410.3C-5.9 448.8 19.9 480 58.9 480h312c38.9 0 76.2-31.2 83.3-69.7l56.7-308.5c7-38.6-18.8-69.8-57.8-69.8zm-58.2 347.3l-32 13.5-115.4-110c-14.7 10-29.2 19.5-41.7 27.1l22.1 64.2-17.9 12.7-40.6-61-52.4-48.1 15.7-15.4 58 31.1c9.3-10.5 20.8-22.6 32.8-34.9L203 228.9l-68.8-99.8 18.8-28.9 8.9-4.8L265 207.8l4.9 4.5c19.4-18.8 33.8-32.4 33.8-32.4 7.7-6.5 21.5-2.9 30.7 7.9 9 10.5 10.6 24.7 2.7 31.3-1.8 1.3-15.5 11.4-35.3 25.6l4.5 7.3 94.9 119.4-6.3 7.9z"], + "aviato": [640, 512, [], "f421", "M107.2 283.5l-19-41.8H36.1l-19 41.8H0l62.2-131.4 62.2 131.4h-17.2zm-45-98.1l-19.6 42.5h39.2l-19.6-42.5zm112.7 102.4l-62.2-131.4h17.1l45.1 96 45.1-96h17l-62.1 131.4zm80.6-4.3V156.4H271v127.1h-15.5zm209.1-115.6v115.6h-17.3V167.9h-41.2v-11.5h99.6v11.5h-41.1zM640 218.8c0 9.2-1.7 17.8-5.1 25.8-3.4 8-8.2 15.1-14.2 21.1-6 6-13.1 10.8-21.1 14.2-8 3.4-16.6 5.1-25.8 5.1s-17.8-1.7-25.8-5.1c-8-3.4-15.1-8.2-21.1-14.2-6-6-10.8-13-14.2-21.1-3.4-8-5.1-16.6-5.1-25.8s1.7-17.8 5.1-25.8c3.4-8 8.2-15.1 14.2-21.1 6-6 13-8.4 21.1-11.9 8-3.4 16.6-5.1 25.8-5.1s17.8 1.7 25.8 5.1c8 3.4 15.1 5.8 21.1 11.9 6 6 10.7 13.1 14.2 21.1 3.4 8 5.1 16.6 5.1 25.8zm-15.5 0c0-7.3-1.3-14-3.9-20.3-2.6-6.3-6.2-11.7-10.8-16.3-4.6-4.6-10-8.2-16.2-10.9-6.2-2.7-12.8-4-19.8-4s-13.6 1.3-19.8 4c-6.2 2.7-11.6 6.3-16.2 10.9-4.6 4.6-8.2 10-10.8 16.3-2.6 6.3-3.9 13.1-3.9 20.3 0 7.3 1.3 14 3.9 20.3 2.6 6.3 6.2 11.7 10.8 16.3 4.6 4.6 10 8.2 16.2 10.9 6.2 2.7 12.8 4 19.8 4s13.6-1.3 19.8-4c6.2-2.7 11.6-6.3 16.2-10.9 4.6-4.6 8.2-10 10.8-16.3 2.6-6.3 3.9-13.1 3.9-20.3zm-94.8 96.7v-6.3l88.9-10-242.9 13.4c.6-2.2 1.1-4.6 1.4-7.2.3-2 .5-4.2.6-6.5l64.8-8.1-64.9 1.9c0-.4-.1-.7-.1-1.1-2.8-17.2-25.5-23.7-25.5-23.7l-1.1-26.3h23.8l19 41.8h17.1L348.6 152l-62.2 131.4h17.1l19-41.8h23.6L345 268s-22.7 6.5-25.5 23.7c-.1.3-.1.7-.1 1.1l-64.9-1.9 64.8 8.1c.1 2.3.3 4.4.6 6.5.3 2.6.8 5 1.4 7.2L78.4 299.2l88.9 10v6.3c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4 0-6.2-4.6-11.3-10.5-12.2v-5.8l80.3 9v5.4c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-4.9l28.4 3.2v23.7h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9V323l38.3 4.3c8.1 11.4 19 13.6 19 13.6l-.1 6.7-5.1.2-.1 12.1h4.1l.1-5h5.2l.1 5h4.1l-.1-12.1-5.1-.2-.1-6.7s10.9-2.1 19-13.6l38.3-4.3v23.2h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9v-23.7l28.4-3.2v4.9c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-5.4l80.3-9v5.8c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4-.2-6.3-4.7-11.4-10.7-12.3zm-200.8-87.6l19.6-42.5 19.6 42.5h-17.9l-1.7-40.3-1.7 40.3h-17.9z"], + "aws": [640, 512, [], "f375", "M180.41 203.01c-.72 22.65 10.6 32.68 10.88 39.05a8.164 8.164 0 0 1-4.1 6.27l-12.8 8.96a10.66 10.66 0 0 1-5.63 1.92c-.43-.02-8.19 1.83-20.48-25.61a78.608 78.608 0 0 1-62.61 29.45c-16.28.89-60.4-9.24-58.13-56.21-1.59-38.28 34.06-62.06 70.93-60.05 7.1.02 21.6.37 46.99 6.27v-15.62c2.69-26.46-14.7-46.99-44.81-43.91-2.4.01-19.4-.5-45.84 10.11-7.36 3.38-8.3 2.82-10.75 2.82-7.41 0-4.36-21.48-2.94-24.2 5.21-6.4 35.86-18.35 65.94-18.18a76.857 76.857 0 0 1 55.69 17.28 70.285 70.285 0 0 1 17.67 52.36l-.01 69.29zM93.99 235.4c32.43-.47 46.16-19.97 49.29-30.47 2.46-10.05 2.05-16.41 2.05-27.4-9.67-2.32-23.59-4.85-39.56-4.87-15.15-1.14-42.82 5.63-41.74 32.26-1.24 16.79 11.12 31.4 29.96 30.48zm170.92 23.05c-7.86.72-11.52-4.86-12.68-10.37l-49.8-164.65c-.97-2.78-1.61-5.65-1.92-8.58a4.61 4.61 0 0 1 3.86-5.25c.24-.04-2.13 0 22.25 0 8.78-.88 11.64 6.03 12.55 10.37l35.72 140.83 33.16-140.83c.53-3.22 2.94-11.07 12.8-10.24h17.16c2.17-.18 11.11-.5 12.68 10.37l33.42 142.63L420.98 80.1c.48-2.18 2.72-11.37 12.68-10.37h19.72c.85-.13 6.15-.81 5.25 8.58-.43 1.85 3.41-10.66-52.75 169.9-1.15 5.51-4.82 11.09-12.68 10.37h-18.69c-10.94 1.15-12.51-9.66-12.68-10.75L328.67 110.7l-32.78 136.99c-.16 1.09-1.73 11.9-12.68 10.75h-18.3zm273.48 5.63c-5.88.01-33.92-.3-57.36-12.29a12.802 12.802 0 0 1-7.81-11.91v-10.75c0-8.45 6.2-6.9 8.83-5.89 10.04 4.06 16.48 7.14 28.81 9.6 36.65 7.53 52.77-2.3 56.72-4.48 13.15-7.81 14.19-25.68 5.25-34.95-10.48-8.79-15.48-9.12-53.13-21-4.64-1.29-43.7-13.61-43.79-52.36-.61-28.24 25.05-56.18 69.52-55.95 12.67-.01 46.43 4.13 55.57 15.62 1.35 2.09 2.02 4.55 1.92 7.04v10.11c0 4.44-1.62 6.66-4.87 6.66-7.71-.86-21.39-11.17-49.16-10.75-6.89-.36-39.89.91-38.41 24.97-.43 18.96 26.61 26.07 29.7 26.89 36.46 10.97 48.65 12.79 63.12 29.58 17.14 22.25 7.9 48.3 4.35 55.44-19.08 37.49-68.42 34.44-69.26 34.42zm40.2 104.86c-70.03 51.72-171.69 79.25-258.49 79.25A469.127 469.127 0 0 1 2.83 327.46c-6.53-5.89-.77-13.96 7.17-9.47a637.37 637.37 0 0 0 316.88 84.12 630.22 630.22 0 0 0 241.59-49.55c11.78-5 21.77 7.8 10.12 16.38zm29.19-33.29c-8.96-11.52-59.28-5.38-81.81-2.69-6.79.77-7.94-5.12-1.79-9.47 40.07-28.17 105.88-20.1 113.44-10.63 7.55 9.47-2.05 75.41-39.56 106.91-5.76 4.87-11.27 2.3-8.71-4.1 8.44-21.25 27.39-68.49 18.43-80.02z"], + "bandcamp": [496, 512, [], "f2d5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm48.2 326.1h-181L199.9 178h181l-84.7 156.1z"], + "behance": [576, 512, [], "f1b4", "M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z"], + "behance-square": [448, 512, [], "f1b5", "M186.5 293c0 19.3-14 25.4-31.2 25.4h-45.1v-52.9h46c18.6.1 30.3 7.8 30.3 27.5zm-7.7-82.3c0-17.7-13.7-21.9-28.9-21.9h-39.6v44.8H153c15.1 0 25.8-6.6 25.8-22.9zm132.3 23.2c-18.3 0-30.5 11.4-31.7 29.7h62.2c-1.7-18.5-11.3-29.7-30.5-29.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM271.7 185h77.8v-18.9h-77.8V185zm-43 110.3c0-24.1-11.4-44.9-35-51.6 17.2-8.2 26.2-17.7 26.2-37 0-38.2-28.5-47.5-61.4-47.5H68v192h93.1c34.9-.2 67.6-16.9 67.6-55.9zM380 280.5c0-41.1-24.1-75.4-67.6-75.4-42.4 0-71.1 31.8-71.1 73.6 0 43.3 27.3 73 71.1 73 33.2 0 54.7-14.9 65.1-46.8h-33.7c-3.7 11.9-18.6 18.1-30.2 18.1-22.4 0-34.1-13.1-34.1-35.3h100.2c.1-2.3.3-4.8.3-7.2z"], + "bimobject": [448, 512, [], "f378", "M416 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm-64 257.4c0 49.4-11.4 82.6-103.8 82.6h-16.9c-44.1 0-62.4-14.9-70.4-38.8h-.9V368H96V136h64v74.7h1.1c4.6-30.5 39.7-38.8 69.7-38.8h17.3c92.4 0 103.8 33.1 103.8 82.5v35zm-64-28.9v22.9c0 21.7-3.4 33.8-38.4 33.8h-45.3c-28.9 0-44.1-6.5-44.1-35.7v-19c0-29.3 15.2-35.7 44.1-35.7h45.3c35-.2 38.4 12 38.4 33.7z"], + "bitbucket": [512, 512, [], "f171", "M23.1 32C14.2 31.9 7 38.9 6.9 47.8c0 .9.1 1.8.2 2.8L74.9 462c1.7 10.4 10.7 18 21.2 18.1h325.1c7.9.1 14.7-5.6 16-13.4l67.8-416c1.4-8.7-4.5-16.9-13.2-18.3-.9-.1-1.8-.2-2.8-.2L23.1 32zm285.3 297.3H204.6l-28.1-146.8h157l-25.1 146.8z"], + "bitcoin": [512, 512, [], "f379", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z"], + "bity": [496, 512, [], "f37a", "M78.4 67.2C173.8-22 324.5-24 421.5 71c14.3 14.1-6.4 37.1-22.4 21.5-84.8-82.4-215.8-80.3-298.9-3.2-16.3 15.1-36.5-8.3-21.8-22.1zm98.9 418.6c19.3 5.7 29.3-23.6 7.9-30C73 421.9 9.4 306.1 37.7 194.8c5-19.6-24.9-28.1-30.2-7.1-32.1 127.4 41.1 259.8 169.8 298.1zm148.1-2c121.9-40.2 192.9-166.9 164.4-291-4.5-19.7-34.9-13.8-30 7.9 24.2 107.7-37.1 217.9-143.2 253.4-21.2 7-10.4 36 8.8 29.7zm-62.9-79l.2-71.8c0-8.2-6.6-14.8-14.8-14.8-8.2 0-14.8 6.7-14.8 14.8l-.2 71.8c0 8.2 6.6 14.8 14.8 14.8s14.8-6.6 14.8-14.8zm71-269c2.1 90.9 4.7 131.9-85.5 132.5-92.5-.7-86.9-44.3-85.5-132.5 0-21.8-32.5-19.6-32.5 0v71.6c0 69.3 60.7 90.9 118 90.1 57.3.8 118-20.8 118-90.1v-71.6c0-19.6-32.5-21.8-32.5 0z"], + "black-tie": [448, 512, [], "f27e", "M0 32v448h448V32H0zm316.5 325.2L224 445.9l-92.5-88.7 64.5-184-64.5-86.6h184.9L252 173.2l64.5 184z"], + "blackberry": [512, 512, [], "f37b", "M166 116.9c0 23.4-16.4 49.1-72.5 49.1H23.4l21-88.8h67.8c42.1 0 53.8 23.3 53.8 39.7zm126.2-39.7h-67.8L205.7 166h70.1c53.8 0 70.1-25.7 70.1-49.1.1-16.4-11.6-39.7-53.7-39.7zM88.8 208.1H21L0 296.9h70.1c56.1 0 72.5-23.4 72.5-49.1 0-16.3-11.7-39.7-53.8-39.7zm180.1 0h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 0-16.3-11.7-39.7-53.7-39.7zm189.3-53.8h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7zm-28 137.9h-67.8L343.7 381h70.1c56.1 0 70.1-23.4 70.1-49.1 0-16.3-11.6-39.7-53.7-39.7zM240.8 346H173l-18.7 88.8h70.1c56.1 0 70.1-25.7 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7z"], + "blogger": [448, 512, [], "f37c", "M162.4 196c4.8-4.9 6.2-5.1 36.4-5.1 27.2 0 28.1.1 32.1 2.1 5.8 2.9 8.3 7 8.3 13.6 0 5.9-2.4 10-7.6 13.4-2.8 1.8-4.5 1.9-31.1 2.1-16.4.1-29.5-.2-31.5-.8-10.3-2.9-14.1-17.7-6.6-25.3zm61.4 94.5c-53.9 0-55.8.2-60.2 4.1-3.5 3.1-5.7 9.4-5.1 13.9.7 4.7 4.8 10.1 9.2 12 2.2 1 14.1 1.7 56.3 1.2l47.9-.6 9.2-1.5c9-5.1 10.5-17.4 3.1-24.4-5.3-4.7-5-4.7-60.4-4.7zm223.4 130.1c-3.5 28.4-23 50.4-51.1 57.5-7.2 1.8-9.7 1.9-172.9 1.8-157.8 0-165.9-.1-172-1.8-8.4-2.2-15.6-5.5-22.3-10-5.6-3.8-13.9-11.8-17-16.4-3.8-5.6-8.2-15.3-10-22C.1 423 0 420.3 0 256.3 0 93.2 0 89.7 1.8 82.6 8.1 57.9 27.7 39 53 33.4c7.3-1.6 332.1-1.9 340-.3 21.2 4.3 37.9 17.1 47.6 36.4 7.7 15.3 7-1.5 7.3 180.6.2 115.8 0 164.5-.7 170.5zm-85.4-185.2c-1.1-5-4.2-9.6-7.7-11.5-1.1-.6-8-1.3-15.5-1.7-12.4-.6-13.8-.8-17.8-3.1-6.2-3.6-7.9-7.6-8-18.3 0-20.4-8.5-39.4-25.3-56.5-12-12.2-25.3-20.5-40.6-25.1-3.6-1.1-11.8-1.5-39.2-1.8-42.9-.5-52.5.4-67.1 6.2-27 10.7-46.3 33.4-53.4 62.4-1.3 5.4-1.6 14.2-1.9 64.3-.4 62.8 0 72.1 4 84.5 9.7 30.7 37.1 53.4 64.6 58.4 9.2 1.7 122.2 2.1 133.7.5 20.1-2.7 35.9-10.8 50.7-25.9 10.7-10.9 17.4-22.8 21.8-38.5 3.2-10.9 2.9-88.4 1.7-93.9z"], + "blogger-b": [448, 512, [], "f37d", "M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z"], + "bluetooth": [448, 512, [], "f293", "M292.6 171.1L249.7 214l-.3-86 43.2 43.1m-43.2 219.8l43.1-43.1-42.9-42.9-.2 86zM416 259.4C416 465 344.1 512 230.9 512S32 465 32 259.4 115.4 0 228.6 0 416 53.9 416 259.4zm-158.5 0l79.4-88.6L211.8 36.5v176.9L138 139.6l-27 26.9 92.7 93-92.7 93 26.9 26.9 73.8-73.8 2.3 170 127.4-127.5-83.9-88.7z"], + "bluetooth-b": [320, 512, [], "f294", "M196.48 260.023l92.626-103.333L143.125 0v206.33l-86.111-86.111-31.406 31.405 108.061 108.399L25.608 368.422l31.406 31.405 86.111-86.111L145.84 512l148.552-148.644-97.912-103.333zm40.86-102.996l-49.977 49.978-.338-100.295 50.315 50.317zM187.363 313.04l49.977 49.978-50.315 50.316.338-100.294z"], + "btc": [384, 512, [], "f15a", "M310.204 242.638c27.73-14.18 45.377-39.39 41.28-81.3-5.358-57.351-52.458-76.573-114.85-81.929V0h-48.528v77.203c-12.605 0-25.525.315-38.444.63V0h-48.528v79.409c-17.842.539-38.622.276-97.37 0v51.678c38.314-.678 58.417-3.14 63.023 21.427v217.429c-2.925 19.492-18.524 16.685-53.255 16.071L3.765 443.68c88.481 0 97.37.315 97.37.315V512h48.528v-67.06c13.234.315 26.154.315 38.444.315V512h48.528v-68.005c81.299-4.412 135.647-24.894 142.895-101.467 5.671-61.446-23.32-88.862-69.326-99.89zM150.608 134.553c27.415 0 113.126-8.507 113.126 48.528 0 54.515-85.71 48.212-113.126 48.212v-96.74zm0 251.776V279.821c32.772 0 133.127-9.138 133.127 53.255-.001 60.186-100.355 53.253-133.127 53.253z"], + "buromobelexperte": [448, 512, [], "f37f", "M0 32v128h128V32H0zm120 120H8V40h112v112zm40-120v128h128V32H160zm120 120H168V40h112v112zm40-120v128h128V32H320zm120 120H328V40h112v112zM0 192v128h128V192H0zm120 120H8V200h112v112zm40-120v128h128V192H160zm120 120H168V200h112v112zm40-120v128h128V192H320zm120 120H328V200h112v112zM0 352v128h128V352H0zm120 120H8V360h112v112zm40-120v128h128V352H160zm120 120H168V360h112v112zm40-120v128h128V352H320z"], + "buysellads": [448, 512, [], "f20d", "M224 150.7l42.9 160.7h-85.8L224 150.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-65.3 325.3l-94.5-298.7H159.8L65.3 405.3H156l111.7-91.6 24.2 91.6h90.8z"], + "cc-amazon-pay": [576, 512, [], "f42d", "M124.7 201.8c.1-11.8 0-23.5 0-35.3v-35.3c0-1.3.4-2 1.4-2.7 11.5-8 24.1-12.1 38.2-11.1 12.5.9 22.7 7 28.1 21.7 3.3 8.9 4.1 18.2 4.1 27.7 0 8.7-.7 17.3-3.4 25.6-5.7 17.8-18.7 24.7-35.7 23.9-11.7-.5-21.9-5-31.4-11.7-.9-.8-1.4-1.6-1.3-2.8zm154.9 14.6c4.6 1.8 9.3 2 14.1 1.5 11.6-1.2 21.9-5.7 31.3-12.5.9-.6 1.3-1.3 1.3-2.5-.1-3.9 0-7.9 0-11.8 0-4-.1-8 0-12 0-1.4-.4-2-1.8-2.2-7-.9-13.9-2.2-20.9-2.9-7-.6-14-.3-20.8 1.9-6.7 2.2-11.7 6.2-13.7 13.1-1.6 5.4-1.6 10.8.1 16.2 1.6 5.5 5.2 9.2 10.4 11.2zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zm-207.5 23.9c.4 1.7.9 3.4 1.6 5.1 16.5 40.6 32.9 81.3 49.5 121.9 1.4 3.5 1.7 6.4.2 9.9-2.8 6.2-4.9 12.6-7.8 18.7-2.6 5.5-6.7 9.5-12.7 11.2-4.2 1.1-8.5 1.3-12.9.9-2.1-.2-4.2-.7-6.3-.8-2.8-.2-4.2 1.1-4.3 4-.1 2.8-.1 5.6 0 8.3.1 4.6 1.6 6.7 6.2 7.5 4.7.8 9.4 1.6 14.2 1.7 14.3.3 25.7-5.4 33.1-17.9 2.9-4.9 5.6-10.1 7.7-15.4 19.8-50.1 39.5-100.3 59.2-150.5.6-1.5 1.1-3 1.3-4.6.4-2.4-.7-3.6-3.1-3.7-5.6-.1-11.1 0-16.7 0-3.1 0-5.3 1.4-6.4 4.3-.4 1.1-.9 2.3-1.3 3.4l-29.1 83.7c-2.1 6.1-4.2 12.1-6.5 18.6-.4-.9-.6-1.4-.8-1.9-10.8-29.9-21.6-59.9-32.4-89.8-1.7-4.7-3.5-9.5-5.3-14.2-.9-2.5-2.7-4-5.4-4-6.4-.1-12.8-.2-19.2-.1-2.2 0-3.3 1.6-2.8 3.7zM242.4 206c1.7 11.7 7.6 20.8 18 26.6 9.9 5.5 20.7 6.2 31.7 4.6 12.7-1.9 23.9-7.3 33.8-15.5.4-.3.8-.6 1.4-1 .5 3.2.9 6.2 1.5 9.2.5 2.6 2.1 4.3 4.5 4.4 4.6.1 9.1.1 13.7 0 2.3-.1 3.8-1.6 4-3.9.1-.8.1-1.6.1-2.3v-88.8c0-3.6-.2-7.2-.7-10.8-1.6-10.8-6.2-19.7-15.9-25.4-5.6-3.3-11.8-5-18.2-5.9-3-.4-6-.7-9.1-1.1h-10c-.8.1-1.6.3-2.5.3-8.2.4-16.3 1.4-24.2 3.5-5.1 1.3-10 3.2-15 4.9-3 1-4.5 3.2-4.4 6.5.1 2.8-.1 5.6 0 8.3.1 4.1 1.8 5.2 5.7 4.1 6.5-1.7 13.1-3.5 19.7-4.8 10.3-1.9 20.7-2.7 31.1-1.2 5.4.8 10.5 2.4 14.1 7 3.1 4 4.2 8.8 4.4 13.7.3 6.9.2 13.9.3 20.8 0 .4-.1.7-.2 1.2-.4 0-.8 0-1.1-.1-8.8-2.1-17.7-3.6-26.8-4.1-9.5-.5-18.9.1-27.9 3.2-10.8 3.8-19.5 10.3-24.6 20.8-4.1 8.3-4.6 17-3.4 25.8zM98.7 106.9v175.3c0 .8 0 1.7.1 2.5.2 2.5 1.7 4.1 4.1 4.2 5.9.1 11.8.1 17.7 0 2.5 0 4-1.7 4.1-4.1.1-.8.1-1.7.1-2.5v-60.7c.9.7 1.4 1.2 1.9 1.6 15 12.5 32.2 16.6 51.1 12.9 17.1-3.4 28.9-13.9 36.7-29.2 5.8-11.6 8.3-24.1 8.7-37 .5-14.3-1-28.4-6.8-41.7-7.1-16.4-18.9-27.3-36.7-30.9-2.7-.6-5.5-.8-8.2-1.2h-7c-1.2.2-2.4.3-3.6.5-11.7 1.4-22.3 5.8-31.8 12.7-2 1.4-3.9 3-5.9 4.5-.1-.5-.3-.8-.4-1.2-.4-2.3-.7-4.6-1.1-6.9-.6-3.9-2.5-5.5-6.4-5.6h-9.7c-5.9-.1-6.9 1-6.9 6.8zM493.6 339c-2.7-.7-5.1 0-7.6 1-43.9 18.4-89.5 30.2-136.8 35.8-14.5 1.7-29.1 2.8-43.7 3.2-26.6.7-53.2-.8-79.6-4.3-17.8-2.4-35.5-5.7-53-9.9-37-8.9-72.7-21.7-106.7-38.8-8.8-4.4-17.4-9.3-26.1-14-3.8-2.1-6.2-1.5-8.2 2.1v1.7c1.2 1.6 2.2 3.4 3.7 4.8 36 32.2 76.6 56.5 122 72.9 21.9 7.9 44.4 13.7 67.3 17.5 14 2.3 28 3.8 42.2 4.5 3 .1 6 .2 9 .4.7 0 1.4.2 2.1.3h17.7c.7-.1 1.4-.3 2.1-.3 14.9-.4 29.8-1.8 44.6-4 21.4-3.2 42.4-8.1 62.9-14.7 29.6-9.6 57.7-22.4 83.4-40.1 2.8-1.9 5.7-3.8 8-6.2 4.3-4.4 2.3-10.4-3.3-11.9zm50.4-27.7c-.8-4.2-4-5.8-7.6-7-5.7-1.9-11.6-2.8-17.6-3.3-11-.9-22-.4-32.8 1.6-12 2.2-23.4 6.1-33.5 13.1-1.2.8-2.4 1.8-3.1 3-.6.9-.7 2.3-.5 3.4.3 1.3 1.7 1.6 3 1.5.6 0 1.2 0 1.8-.1l19.5-2.1c9.6-.9 19.2-1.5 28.8-.8 4.1.3 8.1 1.2 12 2.2 4.3 1.1 6.2 4.4 6.4 8.7.3 6.7-1.2 13.1-2.9 19.5-3.5 12.9-8.3 25.4-13.3 37.8-.3.8-.7 1.7-.8 2.5-.4 2.5 1 4 3.4 3.5 1.4-.3 3-1.1 4-2.1 3.7-3.6 7.5-7.2 10.6-11.2 10.7-13.8 17-29.6 20.7-46.6.7-3 1.2-6.1 1.7-9.1.2-4.7.2-9.6.2-14.5z"], + "cc-amex": [576, 512, [], "f1f3", "M576 255.4c-37.9-.2-44.2-.9-54.5 5v-5c-45.3 0-53.5-1.7-64.9 5.2v-5.2h-78.2v5.1c-11.4-6.5-21.4-5.1-75.7-5.1v5.6c-6.3-3.7-14.5-5.6-24.3-5.6h-58c-3.5 3.8-12.5 13.7-15.7 17.2-12.7-14.1-10.5-11.6-15.5-17.2h-83.1v92.3h82c3.3-3.5 12.9-13.9 16.1-17.4 12.7 14.3 10.3 11.7 15.4 17.4h48.9c0-14.7.1-8.3.1-23 11.5.2 24.3-.2 34.3-6.2 0 13.9-.1 17.1-.1 29.2h39.6c0-18.5.1-7.4.1-25.3 6.2 0 7.7 0 9.4.1.1 1.3 0 0 0 25.2 152.8 0 145.9 1.1 156.7-4.5v4.5c34.8 0 54.8 2.2 67.5-6.1V432c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V228.3h26.6c4.2-10.1 2.2-5.3 6.4-15.3h19.2c4.2 10 2.2 5.2 6.4 15.3h52.9v-11.4c2.2 5 1.1 2.5 5.1 11.4h29.5c2.4-5.5 2.6-5.8 5.1-11.4v11.4h135.5v-25.1c6.4 0 8-.1 9.8.2 0 0-.2 10.9.1 24.8h66.5v-8.9c7.4 5.9 17.4 8.9 29.7 8.9h26.8c4.2-10.1 2.2-5.3 6.4-15.3h19c6.5 15 .2.5 6.6 15.3h52.8v-21.9c11.8 19.7 7.8 12.9 13.2 21.9h41.6v-92h-39.9v18.4c-12.2-20.2-6.3-10.4-11.2-18.4h-43.3v20.6c-6.2-14.6-4.6-10.8-8.8-20.6h-32.4c-.4 0-2.3.2-2.3-.3h-27.6c-12.8 0-23.1 3.2-30.7 9.3v-9.3h-39.9v5.3c-10.8-6.1-20.7-5.1-64.4-5.3-.1 0-11.6-.1-11.6 0h-103c-2.5 6.1-6.8 16.4-12.6 30-2.8-6-11-23.8-13.9-30h-46V157c-7.4-17.4-4.7-11-9-21.1H22.9c-3.4 7.9-13.7 32-23.1 53.9V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48v175.4zm-186.6-80.6c-.3.2-1.4 2.2-1.4 7.6 0 6 .9 7.7 1.1 7.9.2.1 1.1.5 3.4.5l7.3-16.9c-1.1 0-2.1-.1-3.1-.1-5.6 0-7 .7-7.3 1zm-19.9 130.9c9.2 3.3 11 9.5 11 18.4l-.1 13.8h-16.6l.1-11.5c0-11.8-3.8-13.8-14.8-13.8h-17.6l-.1 25.3h-16.6l.1-69.3h39.4c13 0 27.1 2.3 27.1 18.7-.1 7.6-4.2 15.3-11.9 18.4zm-6.3-15.4c0-6.4-5.6-7.4-10.7-7.4h-21v15.6h20.7c5.6 0 11-1.3 11-8.2zm181.7-7.1H575v-14.6h-32.9c-12.8 0-23.8 6.6-23.8 20.7 0 33 42.7 12.8 42.7 27.4 0 5.1-4.3 6.4-8.4 6.4h-32l-.1 14.8h32c8.4 0 17.6-1.8 22.5-8.9v-25.8c-10.5-13.8-39.3-1.3-39.3-13.5 0-5.8 4.6-6.5 9.2-6.5zm-99.2-.3v-14.3h-55.2l-.1 69.3h55.2l.1-14.3-38.6-.3v-13.8H445v-14.1h-37.8v-12.5h38.5zm42.2 40.1h-32.2l-.1 14.8h32.2c14.8 0 26.2-5.6 26.2-22 0-33.2-42.9-11.2-42.9-26.3 0-5.6 4.9-6.4 9.2-6.4h30.4v-14.6h-33.2c-12.8 0-23.5 6.6-23.5 20.7 0 33 42.7 12.5 42.7 27.4-.1 5.4-4.7 6.4-8.8 6.4zm-78.1-158.7c-17.4-.3-33.2-4.1-33.2 19.7 0 11.8 2.8 19.9 16.1 19.9h7.4l23.5-54.5h24.8l27.9 65.4v-65.4h25.3l29.1 48.1v-48.1h16.9v69H524l-31.2-51.9v51.9h-33.7l-6.6-15.3h-34.3l-6.4 15.3h-19.2c-22.8 0-33-11.8-33-34 0-23.3 10.5-35.3 34-35.3h16.1v15.2zm14.3 24.5h22.8l-11.2-27.6-11.6 27.6zm-72.6-39.6h-16.9v69.3h16.9v-69.3zm-38.1 37.3c9.5 3.3 11 9.2 11 18.4v13.5h-16.6c-.3-14.8 3.6-25.1-14.8-25.1h-18v25.1h-16.4v-69.3l39.1.3c13.3 0 27.4 2 27.4 18.4.1 8-4.3 15.7-11.7 18.7zm-6.7-15.3c0-6.4-5.6-7.4-10.7-7.4h-21v15.3h20.7c5.7 0 11-1.3 11-7.9zm-59.5-7.4v-14.6h-55.5v69.3h55.5v-14.3h-38.9v-13.8h37.8v-14.1h-37.8v-12.5h38.9zm-84.6 54.7v-54.2l-24 54.2H124l-24-54.2v54.2H66.2l-6.4-15.3H25.3l-6.4 15.3H1l29.7-69.3h24.5l28.1 65.7v-65.7h27.1l21.7 47 19.7-47h27.6v69.3h-16.8zM53.9 188.8l-11.5-27.6-11.2 27.6h22.7zm253 102.5c0 27.9-30.4 23.3-49.3 23.3l-.1 23.3h-32.2l-20.4-23-21.3 23h-65.4l.1-69.3h66.5l20.5 22.8 21-22.8H279c15.6 0 27.9 5.4 27.9 22.7zm-112.7 11.8l-17.9-20.2h-41.7v12.5h36.3v14.1h-36.3v13.8h40.6l19-20.2zM241 276l-25.3 27.4 25.3 28.1V276zm48.3 15.3c0-6.1-4.6-8.4-10.2-8.4h-21.5v17.6h21.2c5.9 0 10.5-2.8 10.5-9.2z"], + "cc-apple-pay": [576, 512, [], "f416", "M302.2 218.4c0 17.2-10.5 27.1-29 27.1h-24.3v-54.2h24.4c18.4 0 28.9 9.8 28.9 27.1zm47.5 62.6c0 8.3 7.2 13.7 18.5 13.7 14.4 0 25.2-9.1 25.2-21.9v-7.7l-23.5 1.5c-13.3.9-20.2 5.8-20.2 14.4zM576 79v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM127.8 197.2c8.4.7 16.8-4.2 22.1-10.4 5.2-6.4 8.6-15 7.7-23.7-7.4.3-16.6 4.9-21.9 11.3-4.8 5.5-8.9 14.4-7.9 22.8zm60.6 74.5c-.2-.2-19.6-7.6-19.8-30-.2-18.7 15.3-27.7 16-28.2-8.8-13-22.4-14.4-27.1-14.7-12.2-.7-22.6 6.9-28.4 6.9-5.9 0-14.7-6.6-24.3-6.4-12.5.2-24.2 7.3-30.5 18.6-13.1 22.6-3.4 56 9.3 74.4 6.2 9.1 13.7 19.1 23.5 18.7 9.3-.4 13-6 24.2-6 11.3 0 14.5 6 24.3 5.9 10.2-.2 16.5-9.1 22.8-18.2 6.9-10.4 9.8-20.4 10-21zm135.4-53.4c0-26.6-18.5-44.8-44.9-44.8h-51.2v136.4h21.2v-46.6h29.3c26.8 0 45.6-18.4 45.6-45zm90 23.7c0-19.7-15.8-32.4-40-32.4-22.5 0-39.1 12.9-39.7 30.5h19.1c1.6-8.4 9.4-13.9 20-13.9 13 0 20.2 6 20.2 17.2v7.5l-26.4 1.6c-24.6 1.5-37.9 11.6-37.9 29.1 0 17.7 13.7 29.4 33.4 29.4 13.3 0 25.6-6.7 31.2-17.4h.4V310h19.6v-68zM516 210.9h-21.5l-24.9 80.6h-.4l-24.9-80.6H422l35.9 99.3-1.9 6c-3.2 10.2-8.5 14.2-17.9 14.2-1.7 0-4.9-.2-6.2-.3v16.4c1.2.4 6.5.5 8.1.5 20.7 0 30.4-7.9 38.9-31.8L516 210.9z"], + "cc-diners-club": [576, 512, [], "f24c", "M239.7 79.9c-96.9 0-175.8 78.6-175.8 175.8 0 96.9 78.9 175.8 175.8 175.8 97.2 0 175.8-78.9 175.8-175.8 0-97.2-78.6-175.8-175.8-175.8zm-39.9 279.6c-41.7-15.9-71.4-56.4-71.4-103.8s29.7-87.9 71.4-104.1v207.9zm79.8.3V151.6c41.7 16.2 71.4 56.7 71.4 104.1s-29.7 87.9-71.4 104.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM329.7 448h-90.3c-106.2 0-193.8-85.5-193.8-190.2C45.6 143.2 133.2 64 239.4 64h90.3c105 0 200.7 79.2 200.7 193.8 0 104.7-95.7 190.2-200.7 190.2z"], + "cc-discover": [576, 512, [], "f1f2", "M83 212.1c0 7.9-3.2 15.5-8.9 20.7-4.9 4.4-11.6 6.4-21.9 6.4H48V185h4.2c10.3 0 16.7 1.7 21.9 6.6 5.7 5 8.9 12.6 8.9 20.5zM504.8 184h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8 0-7.9-5.5-12.1-15.6-12.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM428 253h45.3v-13.8H444V217h28.3v-13.8H444V185h29.3v-14H428v82zm-86.2-82l35 84.2h8.6l35.5-84.2h-17.5l-22.2 55.2-21.9-55.2h-17.5zm-83 41.6c0 24.6 19.9 44.6 44.6 44.6 24.6 0 44.6-19.9 44.6-44.6 0-24.6-19.9-44.6-44.6-44.6-24.6 0-44.6 19.9-44.6 44.6zm-68-.5c0 32.5 33.6 52.5 63.3 38.2v-19c-19.3 19.3-46.8 5.8-46.8-19.2 0-23.7 26.7-39.1 46.8-19v-19c-30.2-15-63.3 6.8-63.3 38zm-33.9 28.3c-7.6 0-13.8-3.7-17.5-10.8l-10.3 9.9c17.8 26.1 56.6 18.2 56.6-11.3 0-13.1-5.4-19-23.6-25.6-9.6-3.4-12.3-5.9-12.3-10.3 0-8.7 14.5-14.1 24.9-2.5l8.4-10.8c-19.1-17.1-49.7-8.9-49.7 14.3 0 11.3 5.2 17.2 20.2 22.7 25.7 9.1 14.7 24.4 3.3 24.4zm-57.4-28.3c0-24.1-18-41.1-44.1-41.1H32v82h23.4c30.9 0 44.1-22.4 44.1-40.9zm23.4-41.1h-16v82h16v-82zM544 288c-33.3 20.8-226.4 124.4-416 160h401c8.2 0 15-6.8 15-15V288zm0-35l-25.9-34.5c12.1-2.5 18.7-10.6 18.7-23.2 0-28.5-30.3-24.4-52.9-24.4v82h16v-32.8h2.2l22.2 32.8H544z"], + "cc-jcb": [576, 512, [], "f24b", "M431.5 244.3V212c41.2 0 38.5.2 38.5.2 7.3 1.3 13.3 7.3 13.3 16 0 8.8-6 14.5-13.3 15.8-1.2.4-3.3.3-38.5.3zm42.8 20.2c-2.8-.7-3.3-.5-42.8-.5v35c39.6 0 40 .2 42.8-.5 7.5-1.5 13.5-8 13.5-17 0-8.7-6-15.5-13.5-17zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM182 192.3h-57c0 67.1 10.7 109.7-35.8 109.7-19.5 0-38.8-5.7-57.2-14.8v28c30 8.3 68 8.3 68 8.3 97.9 0 82-47.7 82-131.2zm178.5 4.5c-63.4-16-165-14.9-165 59.3 0 77.1 108.2 73.6 165 59.2V287C312.9 311.7 253 309 253 256s59.8-55.6 107.5-31.2v-28zM544 286.5c0-18.5-16.5-30.5-38-32v-.8c19.5-2.7 30.3-15.5 30.3-30.2 0-19-15.7-30-37-31 0 0 6.3-.3-120.3-.3v127.5h122.7c24.3.1 42.3-12.9 42.3-33.2z"], + "cc-mastercard": [576, 512, [], "f1f1", "M482.9 410.3c0 6.8-4.6 11.7-11.2 11.7-6.8 0-11.2-5.2-11.2-11.7 0-6.5 4.4-11.7 11.2-11.7 6.6 0 11.2 5.2 11.2 11.7zm-310.8-11.7c-7.1 0-11.2 5.2-11.2 11.7 0 6.5 4.1 11.7 11.2 11.7 6.5 0 10.9-4.9 10.9-11.7-.1-6.5-4.4-11.7-10.9-11.7zm117.5-.3c-5.4 0-8.7 3.5-9.5 8.7h19.1c-.9-5.7-4.4-8.7-9.6-8.7zm107.8.3c-6.8 0-10.9 5.2-10.9 11.7 0 6.5 4.1 11.7 10.9 11.7 6.8 0 11.2-4.9 11.2-11.7 0-6.5-4.4-11.7-11.2-11.7zm105.9 26.1c0 .3.3.5.3 1.1 0 .3-.3.5-.3 1.1-.3.3-.3.5-.5.8-.3.3-.5.5-1.1.5-.3.3-.5.3-1.1.3-.3 0-.5 0-1.1-.3-.3 0-.5-.3-.8-.5-.3-.3-.5-.5-.5-.8-.3-.5-.3-.8-.3-1.1 0-.5 0-.8.3-1.1 0-.5.3-.8.5-1.1.3-.3.5-.3.8-.5.5-.3.8-.3 1.1-.3.5 0 .8 0 1.1.3.5.3.8.3 1.1.5s.2.6.5 1.1zm-2.2 1.4c.5 0 .5-.3.8-.3.3-.3.3-.5.3-.8 0-.3 0-.5-.3-.8-.3 0-.5-.3-1.1-.3h-1.6v3.5h.8V426h.3l1.1 1.4h.8l-1.1-1.3zM576 81v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V81c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM64 220.6c0 76.5 62.1 138.5 138.5 138.5 27.2 0 53.9-8.2 76.5-23.1-72.9-59.3-72.4-171.2 0-230.5-22.6-15-49.3-23.1-76.5-23.1-76.4-.1-138.5 62-138.5 138.2zm224 108.8c70.5-55 70.2-162.2 0-217.5-70.2 55.3-70.5 162.6 0 217.5zm-142.3 76.3c0-8.7-5.7-14.4-14.7-14.7-4.6 0-9.5 1.4-12.8 6.5-2.4-4.1-6.5-6.5-12.2-6.5-3.8 0-7.6 1.4-10.6 5.4V392h-8.2v36.7h8.2c0-18.9-2.5-30.2 9-30.2 10.2 0 8.2 10.2 8.2 30.2h7.9c0-18.3-2.5-30.2 9-30.2 10.2 0 8.2 10 8.2 30.2h8.2v-23zm44.9-13.7h-7.9v4.4c-2.7-3.3-6.5-5.4-11.7-5.4-10.3 0-18.2 8.2-18.2 19.3 0 11.2 7.9 19.3 18.2 19.3 5.2 0 9-1.9 11.7-5.4v4.6h7.9V392zm40.5 25.6c0-15-22.9-8.2-22.9-15.2 0-5.7 11.9-4.8 18.5-1.1l3.3-6.5c-9.4-6.1-30.2-6-30.2 8.2 0 14.3 22.9 8.3 22.9 15 0 6.3-13.5 5.8-20.7.8l-3.5 6.3c11.2 7.6 32.6 6 32.6-7.5zm35.4 9.3l-2.2-6.8c-3.8 2.1-12.2 4.4-12.2-4.1v-16.6h13.1V392h-13.1v-11.2h-8.2V392h-7.6v7.3h7.6V416c0 17.6 17.3 14.4 22.6 10.9zm13.3-13.4h27.5c0-16.2-7.4-22.6-17.4-22.6-10.6 0-18.2 7.9-18.2 19.3 0 20.5 22.6 23.9 33.8 14.2l-3.8-6c-7.8 6.4-19.6 5.8-21.9-4.9zm59.1-21.5c-4.6-2-11.6-1.8-15.2 4.4V392h-8.2v36.7h8.2V408c0-11.6 9.5-10.1 12.8-8.4l2.4-7.6zm10.6 18.3c0-11.4 11.6-15.1 20.7-8.4l3.8-6.5c-11.6-9.1-32.7-4.1-32.7 15 0 19.8 22.4 23.8 32.7 15l-3.8-6.5c-9.2 6.5-20.7 2.6-20.7-8.6zm66.7-18.3H408v4.4c-8.3-11-29.9-4.8-29.9 13.9 0 19.2 22.4 24.7 29.9 13.9v4.6h8.2V392zm33.7 0c-2.4-1.2-11-2.9-15.2 4.4V392h-7.9v36.7h7.9V408c0-11 9-10.3 12.8-8.4l2.4-7.6zm40.3-14.9h-7.9v19.3c-8.2-10.9-29.9-5.1-29.9 13.9 0 19.4 22.5 24.6 29.9 13.9v4.6h7.9v-51.7zm7.6-75.1v4.6h.8V302h1.9v-.8h-4.6v.8h1.9zm6.6 123.8c0-.5 0-1.1-.3-1.6-.3-.3-.5-.8-.8-1.1-.3-.3-.8-.5-1.1-.8-.5 0-1.1-.3-1.6-.3-.3 0-.8.3-1.4.3-.5.3-.8.5-1.1.8-.5.3-.8.8-.8 1.1-.3.5-.3 1.1-.3 1.6 0 .3 0 .8.3 1.4 0 .3.3.8.8 1.1.3.3.5.5 1.1.8.5.3 1.1.3 1.4.3.5 0 1.1 0 1.6-.3.3-.3.8-.5 1.1-.8.3-.3.5-.8.8-1.1.3-.6.3-1.1.3-1.4zm3.2-124.7h-1.4l-1.6 3.5-1.6-3.5h-1.4v5.4h.8v-4.1l1.6 3.5h1.1l1.4-3.5v4.1h1.1v-5.4zm4.4-80.5c0-76.2-62.1-138.3-138.5-138.3-27.2 0-53.9 8.2-76.5 23.1 72.1 59.3 73.2 171.5 0 230.5 22.6 15 49.5 23.1 76.5 23.1 76.4.1 138.5-61.9 138.5-138.4z"], + "cc-paypal": [576, 512, [], "f1f4", "M186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5z"], + "cc-stripe": [576, 512, [], "f1f5", "M396.9 256.5c0 19.1-8.8 33.4-21.9 33.4-8.3 0-13.3-3-16.8-6.7l-.2-52.8c3.7-4.1 8.8-7 17-7 12.9-.1 21.9 14.5 21.9 33.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM122.2 281.1c0-42.3-54.3-34.7-54.3-50.7 0-5.5 4.6-7.7 12.1-7.7 10.8 0 24.5 3.3 35.3 9.1v-33.4c-11.8-4.7-23.5-6.5-35.3-6.5-28.8 0-48 15-48 40.2 0 39.3 54 32.9 54 49.9 0 6.6-5.7 8.7-13.6 8.7-11.8 0-26.9-4.9-38.9-11.3v33.9c13.2 5.7 26.6 8.1 38.8 8.1 29.6-.2 49.9-14.7 49.9-40.3zm68.9-86.9h-27v-30.8l-34.7 7.4-.2 113.9c0 21 15.8 36.5 36.9 36.5 11.6 0 20.2-2.1 24.9-4.7v-28.9c-4.5 1.8-27 8.3-27-12.6v-50.5h27v-30.3zm73.8 0c-4.7-1.7-21.3-4.8-29.6 10.5l-2.2-10.5h-30.7v124.5h35.5v-84.4c8.4-11 22.6-8.9 27.1-7.4v-32.7zm44.2 0h-35.7v124.5h35.7V194.2zm0-47.3l-35.7 7.6v28.9l35.7-7.6v-28.9zm122.7 108.8c0-41.3-23.5-63.8-48.4-63.8-13.9 0-22.9 6.6-27.8 11.1l-1.8-8.8h-31.3V360l35.5-7.5.1-40.2c5.1 3.7 12.7 9 25.1 9 25.4-.1 48.6-20.5 48.6-65.6zm112.2 1.2c0-36.4-17.6-65.1-51.3-65.1-33.8 0-54.3 28.7-54.3 64.9 0 42.8 24.2 64.5 58.8 64.5 17 0 29.7-3.9 39.4-9.2v-28.6c-9.7 4.9-20.8 7.9-34.9 7.9-13.8 0-26-4.9-27.6-21.5h69.5c.1-2 .4-9.4.4-12.9zm-51.6-36.1c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7z"], + "cc-visa": [576, 512, [], "f1f0", "M470.1 231.3s7.6 37.2 9.3 45H446c3.3-8.9 16-43.5 16-43.5-.2.3 3.3-9.1 5.3-14.9l2.8 13.4zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM152.5 331.2L215.7 176h-42.5l-39.3 106-4.3-21.5-14-71.4c-2.3-9.9-9.4-12.7-18.2-13.1H32.7l-.7 3.1c15.8 4 29.9 9.8 42.2 17.1l35.8 135h42.5zm94.4.2L272.1 176h-40.2l-25.1 155.4h40.1zm139.9-50.8c.2-17.7-10.6-31.2-33.7-42.3-14.1-7.1-22.7-11.9-22.7-19.2.2-6.6 7.3-13.4 23.1-13.4 13.1-.3 22.7 2.8 29.9 5.9l3.6 1.7 5.5-33.6c-7.9-3.1-20.5-6.6-36-6.6-39.7 0-67.6 21.2-67.8 51.4-.3 22.3 20 34.7 35.2 42.2 15.5 7.6 20.8 12.6 20.8 19.3-.2 10.4-12.6 15.2-24.1 15.2-16 0-24.6-2.5-37.7-8.3l-5.3-2.5-5.6 34.9c9.4 4.3 26.8 8.1 44.8 8.3 42.2.1 69.7-20.8 70-53zM528 331.4L495.6 176h-31.1c-9.6 0-16.9 2.8-21 12.9l-59.7 142.5H426s6.9-19.2 8.4-23.3H486c1.2 5.5 4.8 23.3 4.8 23.3H528z"], + "centercode": [512, 512, [], "f380", "M329.2 268.6c-3.8 35.2-35.4 60.6-70.6 56.8-35.2-3.8-60.6-35.4-56.8-70.6 3.8-35.2 35.4-60.6 70.6-56.8 35.1 3.8 60.6 35.4 56.8 70.6zm-85.8 235.1C96.7 496-8.2 365.5 10.1 224.3c11.2-86.6 65.8-156.9 139.1-192 161-77.1 349.7 37.4 354.7 216.6 4.1 147-118.4 262.2-260.5 254.8zm179.9-180c27.9-118-160.5-205.9-237.2-234.2-57.5 56.3-69.1 188.6-33.8 344.4 68.8 15.8 169.1-26.4 271-110.2z"], + "chrome": [496, 512, [], "f268", "M131.5 217.5L55.1 100.1c47.6-59.2 119-91.8 192-92.1 42.3-.3 85.5 10.5 124.8 33.2 43.4 25.2 76.4 61.4 97.4 103L264 133.4c-58.1-3.4-113.4 29.3-132.5 84.1zm32.9 38.5c0 46.2 37.4 83.6 83.6 83.6s83.6-37.4 83.6-83.6-37.4-83.6-83.6-83.6-83.6 37.3-83.6 83.6zm314.9-89.2L339.6 174c37.9 44.3 38.5 108.2 6.6 157.2L234.1 503.6c46.5 2.5 94.4-7.7 137.8-32.9 107.4-62 150.9-192 107.4-303.9zM133.7 303.6L40.4 120.1C14.9 159.1 0 205.9 0 256c0 124 90.8 226.7 209.5 244.9l63.7-124.8c-57.6 10.8-113.2-20.8-139.5-72.5z"], + "cloudscale": [448, 512, [], "f383", "M318.1 154l-9.4 7.6c-22.5-19.3-51.5-33.6-83.3-33.6C153.8 128 96 188.8 96 260.3c0 6.6.4 13.1 1.4 19.4-2-56 41.8-97.4 92.6-97.4 24.2 0 46.2 9.4 62.6 24.7l-25.2 20.4c-8.3-.9-16.8 1.8-23.1 8.1-11.1 11-11.1 28.9 0 40 11.1 11 28.9 11 40 0 6.3-6.3 9-14.9 8.1-23.1l75.2-88.8c6.3-6.5-3.3-15.9-9.5-9.6zm-83.8 111.5c-5.6 5.5-14.6 5.5-20.2 0-5.6-5.6-5.6-14.6 0-20.2s14.6-5.6 20.2 0 5.6 14.7 0 20.2zM224 32C100.5 32 0 132.5 0 256s100.5 224 224 224 224-100.5 224-224S347.5 32 224 32zm0 384c-88.2 0-160-71.8-160-160S135.8 96 224 96s160 71.8 160 160-71.8 160-160 160z"], + "cloudsmith": [332, 512, [], "f384", "M332.5 419.9c0 46.4-37.6 84.1-84 84.1s-84-37.7-84-84.1 37.6-84 84-84 84 37.6 84 84zm-84-243.9c46.4 0 80-37.6 80-84s-33.6-84-80-84-88 37.6-88 84-29.6 76-76 76-84 41.6-84 88 37.6 80 84 80 84-33.6 84-80 33.6-80 80-80z"], + "cloudversify": [616, 512, [], "f385", "M148.6 304c8.2 68.5 67.4 115.5 146 111.3 51.2 43.3 136.8 45.8 186.4-5.6 69.2 1.1 118.5-44.6 131.5-99.5 14.8-62.5-18.2-132.5-92.1-155.1-33-88.1-131.4-101.5-186.5-85-57.3 17.3-84.3 53.2-99.3 109.7-7.8 2.7-26.5 8.9-45 24.1 11.7 0 15.2 8.9 15.2 19.5v20.4c0 10.7-8.7 19.5-19.5 19.5h-20.2c-10.7 0-19.5-6-19.5-16.7V240H98.8C95 240 88 244.3 88 251.9v40.4c0 6.4 5.3 11.8 11.7 11.8h48.9zm227.4 8c-10.7 46.3 21.7 72.4 55.3 86.8C324.1 432.6 259.7 348 296 288c-33.2 21.6-33.7 71.2-29.2 92.9-17.9-12.4-53.8-32.4-57.4-79.8-3-39.9 21.5-75.7 57-93.9C297 191.4 369.9 198.7 400 248c-14.1-48-53.8-70.1-101.8-74.8 30.9-30.7 64.4-50.3 114.2-43.7 69.8 9.3 133.2 82.8 67.7 150.5 35-16.3 48.7-54.4 47.5-76.9l10.5 19.6c11.8 22 15.2 47.6 9.4 72-9.2 39-40.6 68.8-79.7 76.5-32.1 6.3-83.1-5.1-91.8-59.2zM128 208H88.2c-8.9 0-16.2-7.3-16.2-16.2v-39.6c0-8.9 7.3-16.2 16.2-16.2H128c8.9 0 16.2 7.3 16.2 16.2v39.6c0 8.9-7.3 16.2-16.2 16.2zM10.1 168C4.5 168 0 163.5 0 157.9v-27.8c0-5.6 4.5-10.1 10.1-10.1h27.7c5.5 0 10.1 4.5 10.1 10.1v27.8c0 5.6-4.5 10.1-10.1 10.1H10.1zM168 142.7v-21.4c0-5.1 4.2-9.3 9.3-9.3h21.4c5.1 0 9.3 4.2 9.3 9.3v21.4c0 5.1-4.2 9.3-9.3 9.3h-21.4c-5.1 0-9.3-4.2-9.3-9.3zM56 235.5v25c0 6.3-5.1 11.5-11.4 11.5H19.4C13.1 272 8 266.8 8 260.5v-25c0-6.3 5.1-11.5 11.4-11.5h25.1c6.4 0 11.5 5.2 11.5 11.5z"], + "codepen": [512, 512, [], "f1cb", "M502.285 159.704l-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285zM278 63.131l172.286 114.858-76.857 51.429L278 165.703V63.131zm-44 0v102.572l-95.429 63.715-76.857-51.429L234 63.131zM44 219.132l55.143 36.857L44 292.846v-73.714zm190 229.715L61.714 333.989l76.857-51.429L234 346.275v102.572zm22-140.858l-77.715-52 77.715-52 77.715 52-77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429L278 448.847zm190-156.001l-55.143-36.857L468 219.132v73.714z"], + "codiepie": [472, 512, [], "f284", "M422.5 202.9c30.7 0 33.5 53.1-.3 53.1h-10.8v44.3h-26.6v-97.4h37.7zM472 352.6C429.9 444.5 350.4 504 248 504 111 504 0 393 0 256S111 8 248 8c97.4 0 172.8 53.7 218.2 138.4l-186 108.8L472 352.6zm-38.5 12.5l-60.3-30.7c-27.1 44.3-70.4 71.4-122.4 71.4-82.5 0-149.2-66.7-149.2-148.9 0-82.5 66.7-149.2 149.2-149.2 48.4 0 88.9 23.5 116.9 63.4l59.5-34.6c-40.7-62.6-104.7-100-179.2-100-121.2 0-219.5 98.3-219.5 219.5S126.8 475.5 248 475.5c78.6 0 146.5-42.1 185.5-110.4z"], + "connectdevelop": [576, 512, [], "f20e", "M550.5 241l-50.089-86.786c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.733-14.732-15.001l-55.447-95.893c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.268-15.268-15.268-4.821 0-8.839 2.143-11.786 5.625H299.518C296.839 18.143 292.821 16 288 16s-8.839 2.143-11.518 5.625H170.411C167.464 18.143 163.447 16 158.625 16c-8.303 0-15.268 6.696-15.268 15.268 0 1.607.536 3.482 1.072 4.821l-55.983 97.233c-5.356 2.41-9.107 7.5-9.107 13.661 0 .535.268 1.071.268 1.607l-53.304 92.143c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.393 12.054 15l55.179 95.358c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.393 12.054 14.732l51.697 89.732c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.268 15.268 15.268 4.821 0 8.839-2.143 11.518-5.357h106.875C279.161 493.857 283.447 496 288 496s8.839-2.143 11.518-5.357h107.143c2.678 2.946 6.696 4.821 10.982 4.821 8.571 0 15.268-6.964 15.268-15.268 0-1.607-.267-2.946-.803-4.285l51.697-90.268c6.964-1.339 12.054-7.5 12.054-14.732 0-1.607-.268-3.214-.804-4.821l54.911-95.358c6.964-1.339 12.322-7.5 12.322-15-.002-7.232-5.092-13.393-11.788-14.732zM153.535 450.732l-43.66-75.803h43.66v75.803zm0-83.839h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.999-47.41v50.624zm0-62.411l-50.357 53.304c-1.339-.536-2.679-1.34-4.018-1.607L43.447 259.75c.535-1.339.535-2.679.535-4.018s0-2.41-.268-3.482l51.965-90c2.679-.268 5.357-1.072 7.768-2.679l50.089 51.965v92.946zm0-102.322l-45.803-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.928-15.804v72.053zm0-80.625l-43.66 15.804 43.66-75.536v59.732zm326.519 39.108l.804 1.339L445.5 329.125l-63.75-67.232 98.036-101.518.268.268zM291.75 355.107l11.518 11.786H280.5l11.25-11.786zm-.268-11.25l-83.303-85.446 79.553-84.375 83.036 87.589-79.286 82.232zm5.357 5.893l79.286-82.232 67.5 71.25-5.892 28.125H313.714l-16.875-17.143zM410.411 44.393c1.071.536 2.142 1.072 3.482 1.34l57.857 100.714v.536c0 2.946.803 5.624 2.143 7.767L376.393 256l-83.035-87.589L410.411 44.393zm-9.107-2.143L287.732 162.518l-57.054-60.268 166.339-60h4.287zm-123.483 0c2.678 2.678 6.16 4.285 10.179 4.285s7.5-1.607 10.179-4.285h75L224.786 95.821 173.893 42.25h103.928zm-116.249 5.625l1.071-2.142a33.834 33.834 0 0 0 2.679-.804l51.161 53.84-54.911 19.821V47.875zm0 79.286l60.803-21.964 59.732 63.214-79.553 84.107-40.982-42.053v-83.304zm0 92.678L198 257.607l-36.428 38.304v-76.072zm0 87.858l42.053-44.464 82.768 85.982-17.143 17.678H161.572v-59.196zm6.964 162.053c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.732h99.91l-91.607 94.821h-1.339zm129.911 0c-2.679-2.41-6.428-4.285-10.447-4.285s-7.767 1.875-10.447 4.285h-96.429l91.607-94.821h38.304l91.607 94.821H298.447zm120-11.786l-4.286 7.5c-1.339.268-2.41.803-3.482 1.339l-89.196-91.875h114.376l-17.412 83.036zm12.856-22.232l12.858-60.803h21.964l-34.822 60.803zm34.822-68.839h-20.357l4.553-21.16 17.143 18.214c-.535.803-1.071 1.874-1.339 2.946zm66.161-107.411l-55.447 96.697c-1.339.535-2.679 1.071-4.018 1.874l-20.625-21.964 34.554-163.928 45.803 79.286c-.267 1.339-.803 2.678-.803 4.285 0 1.339.268 2.411.536 3.75z"], + "contao": [512, 512, [], "f26d", "M45.4 305c14.4 67.1 26.4 129 68.2 175H34c-18.7 0-34-15.2-34-34V66c0-18.7 15.2-34 34-34h57.7C77.9 44.6 65.6 59.2 54.8 75.6c-45.4 70-27 146.8-9.4 229.4zM478 32h-90.2c21.4 21.4 39.2 49.5 52.7 84.1l-137.1 29.3c-14.9-29-37.8-53.3-82.6-43.9-24.6 5.3-41 19.3-48.3 34.6-8.8 18.7-13.2 39.8 8.2 140.3 21.1 100.2 33.7 117.7 49.5 131.2 12.9 11.1 33.4 17 58.3 11.7 44.5-9.4 55.7-40.7 57.4-73.2l137.4-29.6c3.2 71.5-18.7 125.2-57.4 163.6H478c18.7 0 34-15.2 34-34V66c0-18.8-15.2-34-34-34z"], + "cpanel": [640, 512, [], "f388", "M52.9 213.7h40l-6.2 23.6c-1.9 6.5-7.4 10.9-14.3 10.9H53.8c-24.9 0-24.7 37.4 0 37.4h11.3c4.2 0 7.6 3.9 6.4 8.3L64.4 320H52c-33.5 0-59-31.4-50.3-65.2 7.3-27 28.3-41.1 51.2-41.1M73.1 320L108 189.9c1.8-6.4 7.2-10.9 14.3-10.9h37c24.1 0 45.4 16.4 51 41.2 6.6 29.1-14.5 65.3-51.7 65.3h-32l6.4-23.8c1.8-6.2 7.3-10.8 14.3-10.8h10.3c12.4 0 20.8-11.7 18.3-22.6-2.1-9.2-9.9-14.8-18.3-14.8h-19.8L112 309.2c-1.9 6.2-7.4 10.7-14.2 10.7l-24.7.1m220.6-69.4c.3-1 1.9-5.3-2.1-5.3h-57.5c-9.7 0-16.6-8.9-14.2-18.5l3.5-13.4h77.9c18.8 0 33.3 17.6 28.5 36.8l-14 51.8c-2.8 10.6-12.2 17.8-23.4 17.8l-57.5-.2c-42.9 0-38.5-63.8.7-63.8H284l-3.5 13.2c-1.9 6.2-7.4 10.8-14.2 10.8h-21.6c-5.3 0-5.3 7.9 0 7.9h34.9c4.6 0 5.1-3.9 5.5-5.3l8.6-31.8m103.1-36.9c34.4 0 59.3 32.3 50.3 65.4l-8.8 33.1c-1.2 4.9-5.7 7.8-10.3 7.8h-19.1c-4.5 0-7.6-4-6.4-8.3l10.6-40c3.3-11.6-5.6-23.4-18.1-23.4h-19.8l-17.2 64c-1.2 4.8-5.6 7.8-10.4 7.8h-18.9c-4.2 0-7.6-3.9-6.4-8.3l26.2-98h48.3M498 251.6l-8 30c-.9 3.3 1.5 6.7 5.1 6.7h73.3l-5.7 21c-1.9 6.2-7.4 10.7-14.2 10.7h-66.7c-20 0-33.3-19-28.3-36.7l10.8-40c4.8-17.6 20.7-29.6 38.6-29.6h47.3c19 0 33.2 17.7 28.3 36.8l-3.2 12c-2.9 11-12.7 17.6-23.2 17.6h-53.4l3.5-13c1.6-6.2 7.2-10.8 14.2-10.8H538c2 0 3.3-1 3.9-3l.7-2.6c.7-2.7-1.3-5.1-3.9-5.1h-32.9c-4.1 0-6.9 2.1-7.8 6zm70.2 68.4l35.6-133.1c1.2-4.7 5.5-7.9 10.4-7.9h18.9c4.5 0 7.7 4 6.5 8.3l-26.5 98.2c-5.1 20.7-24.2 34.5-44.9 34.5"], + "creative-commons": [496, 512, [], "f25e", "M245.83 214.87l-33.22 17.28c-9.43-19.58-25.24-19.93-27.46-19.93-22.13 0-33.22 14.61-33.22 43.84 0 23.57 9.21 43.84 33.22 43.84 14.47 0 24.65-7.09 30.57-21.26l30.55 15.5c-6.17 11.51-25.69 38.98-65.1 38.98-22.6 0-73.96-10.32-73.96-77.05 0-58.69 43-77.06 72.63-77.06 30.72-.01 52.7 11.95 65.99 35.86zm143.05 0l-32.78 17.28c-9.5-19.77-25.72-19.93-27.9-19.93-22.14 0-33.22 14.61-33.22 43.84 0 23.55 9.23 43.84 33.22 43.84 14.45 0 24.65-7.09 30.54-21.26l31 15.5c-2.1 3.75-21.39 38.98-65.09 38.98-22.69 0-73.96-9.87-73.96-77.05 0-58.67 42.97-77.06 72.63-77.06 30.71-.01 52.58 11.95 65.56 35.86zM247.56 8.05C104.74 8.05 0 123.11 0 256.05c0 138.49 113.6 248 247.56 248 129.93 0 248.44-100.87 248.44-248 0-137.87-106.62-248-248.44-248zm.87 450.81c-112.54 0-203.7-93.04-203.7-202.81 0-105.42 85.43-203.27 203.72-203.27 112.53 0 202.82 89.46 202.82 203.26-.01 121.69-99.68 202.82-202.84 202.82z"], + "creative-commons-by": [496, 512, [], "f4e7", "M314.9 194.4v101.4h-28.3v120.5h-77.1V295.9h-28.3V194.4c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7H299c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3zm-101.5-63.7c0-23.3 11.5-35 34.5-35s34.5 11.7 34.5 35c0 23-11.5 34.5-34.5 34.5s-34.5-11.5-34.5-34.5zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z"], + "creative-commons-nc": [496, 512, [], "f4e8", "M247.6 8C387.4 8 496 115.9 496 256c0 147.2-118.5 248-248.4 248C113.1 504 0 393.2 0 256 0 123.1 104.7 8 247.6 8zM55.8 189.1c-7.4 20.4-11.1 42.7-11.1 66.9 0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4v38.1h-28.8V368c-27.5-.3-52.6-10.2-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4zM248.4 52.3c-38.4 0-112.4 8.7-170.5 93l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3v-38.1h28.8v38.1c22.7 1.2 43.4 8.9 62 23L295 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8z"], + "creative-commons-nc-eu": [496, 512, [], "f4e9", "M247.7 8C103.6 8 0 124.8 0 256c0 136.3 111.7 248 247.7 248C377.9 504 496 403.1 496 256 496 117 388.4 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-23.2 3.7-45.2 10.9-66l65.7 29.1h-4.7v29.5h23.3c0 6.2-.4 3.2-.4 19.5h-22.8v29.5h27c11.4 67 67.2 101.3 124.6 101.3 26.6 0 50.6-7.9 64.8-15.8l-10-46.1c-8.7 4.6-28.2 10.8-47.3 10.8-28.2 0-58.1-10.9-67.3-50.2h90.3l128.3 56.8c-1.5 2.1-56.2 104.3-178.8 104.3zm-16.7-190.6l-.5-.4.9.4h-.4zm77.2-19.5h3.7v-29.5h-70.3l-28.6-12.6c2.5-5.5 5.4-10.5 8.8-14.3 12.9-15.8 31.1-22.4 51.1-22.4 18.3 0 35.3 5.4 46.1 10l11.6-47.3c-15-6.6-37-12.4-62.3-12.4-39 0-72.2 15.8-95.9 42.3-5.3 6.1-9.8 12.9-13.9 20.1l-81.6-36.1c64.6-96.8 157.7-93.6 170.7-93.6 113 0 203 90.2 203 203.4 0 18.7-2.1 36.3-6.3 52.9l-136.1-60.5z"], + "creative-commons-nc-jp": [496, 512, [], "f4ea", "M247.7 8C103.6 8 0 124.8 0 256c0 136.4 111.8 248 247.7 248C377.9 504 496 403.2 496 256 496 117.2 388.5 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-21.1 3-41.2 9-60.3l127 56.5h-27.9v38.6h58.1l5.7 11.8v18.7h-63.8V360h63.8v56h61.7v-56h64.2v-35.7l81 36.1c-1.5 2.2-57.1 98.3-175.2 98.3zm87.6-137.3h-57.6v-18.7l2.9-5.6 54.7 24.3zm6.5-51.4v-17.8h-38.6l63-116H301l-43.4 96-23-10.2-39.6-85.7h-65.8l27.3 51-81.9-36.5c27.8-44.1 82.6-98.1 173.7-98.1 112.8 0 203 90 203 203.4 0 21-2.7 40.6-7.9 59l-101-45.1z"], + "creative-commons-nd": [496, 512, [], "f4eb", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm94 144.3v42.5H162.1V197h180.3zm0 79.8v42.5H162.1v-42.5h180.3z"], + "creative-commons-pd": [496, 512, [], "f4ec", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm0 449.5c-139.2 0-235.8-138-190.2-267.9l78.8 35.1c-2.1 10.5-3.3 21.5-3.3 32.9 0 99 73.9 126.9 120.4 126.9 22.9 0 53.5-6.7 79.4-29.5L297 311.1c-5.5 6.3-17.6 16.7-36.3 16.7-37.8 0-53.7-39.9-53.9-71.9 230.4 102.6 216.5 96.5 217.9 96.8-34.3 62.4-100.6 104.8-176.7 104.8zm194.2-150l-224-100c18.8-34 54.9-30.7 74.7-11l40.4-41.6c-27.1-23.3-58-27.5-78.1-27.5-47.4 0-80.9 20.5-100.7 51.6l-74.9-33.4c36.1-54.9 98.1-91.2 168.5-91.2 111.1 0 201.5 90.4 201.5 201.5 0 18-2.4 35.4-6.8 52-.3-.1-.4-.2-.6-.4z"], + "creative-commons-pd-alt": [496, 512, [], "f4ed", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM135.5 323.3V186h68.2c33.7 0 50.5 15.5 50.5 46.5 0 9-3 46.5-57.1 46.5h-27v44.3h-34.6zm34.1-111.6v41.6h29.2c27.9 0 30-41.6-.9-41.6h-28.3zm93.9 111.6V186h53.2c21.4 0 70 5.2 70 68.6 0 63.5-48.6 68.6-70 68.6h-53.2zm34.1-108.5v79.7h19.9c24 0 34.5-15.3 34.5-39.9 0-42-31.2-39.9-35-39.9l-19.4.1z"], + "creative-commons-remix": [496, 512, [], "f4ee", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm161.7 207.7l4.9 2.2v70c-7.2 3.6-63.4 27.5-67.3 28.8-6.5-1.8-113.7-46.8-137.3-56.2l-64.2 26.6-63.3-27.5v-63.8l59.3-24.8c-.7-.7-.4 5-.4-70.4l67.3-29.7L361 178.5v61.6l49.1 20.3zm-70.4 81.5v-43.8h-.4v-1.8l-113.8-46.5V295l113.8 46.9v-.4l.4.4zm7.5-57.6l39.9-16.4-36.8-15.5-39 16.4 35.9 15.5zm52.3 38.1v-43L355.2 298v43.4l44.3-19z"], + "creative-commons-sa": [496, 512, [], "f4ef", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM137.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97h62.5c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6-33.1 0-51.7 14.6-55.8 43.8h18.2l-49.2 49.2-49-49.2h19.4z"], + "creative-commons-sampling": [496, 512, [], "f4f0", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm3.6 53.2c2.8-.3 11.5 1 11.5 11.5l6.6 107.2 4.9-59.3c0-6 4.7-10.6 10.6-10.6 5.9 0 10.6 4.7 10.6 10.6 0 2.5-.5-5.7 5.7 81.5l5.8-64.2c.3-2.9 2.9-9.3 10.2-9.3 3.8 0 9.9 2.3 10.6 8.9l11.5 96.5 5.3-12.8c1.8-4.4 5.2-6.6 10.2-6.6h58v21.3h-50.9l-18.2 44.3c-3.9 9.9-19.5 9.1-20.8-3.1l-4-31.9-7.5 92.6c-.3 3-3 9.3-10.2 9.3-3 0-9.8-2.1-10.6-9.3 0-1.9.6 5.8-6.2-77.9l-5.3 72.2c-1.1 4.8-4.8 9.3-10.6 9.3-2.9 0-9.8-2-10.6-9.3 0-1.9.5 6.7-5.8-87.7l-5.8 94.8c0 6.3-3.6 12.4-10.6 12.4-5.2 0-10.6-4.1-10.6-12l-5.8-87.7c-5.8 92.5-5.3 84-5.3 85.9-1.1 4.8-4.8 9.3-10.6 9.3-3 0-9.8-2.1-10.6-9.3 0-.7-.4-1.1-.4-2.6l-6.2-88.6L182 348c-.7 6.5-6.7 9.3-10.6 9.3-5.8 0-9.6-4.1-10.6-8.9L149.7 272c-2 4-3.5 8.4-11.1 8.4H87.2v-21.3H132l13.7-27.9c4.4-9.9 18.2-7.2 19.9 2.7l3.1 20.4 8.4-97.9c0-6 4.8-10.6 10.6-10.6.5 0 10.6-.2 10.6 12.4l4.9 69.1 6.6-92.6c0-10.1 9.5-10.6 10.2-10.6.6 0 10.6.7 10.6 10.6l5.3 80.6 6.2-97.9c.1-1.1-.6-10.3 9.9-11.5z"], + "creative-commons-sampling-plus": [496, 512, [], "f4f1", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm107 205.6c-4.7 0-9 2.8-10.7 7.2l-4 9.5-11-92.8c-1.7-13.9-22-13.4-23.1.4l-4.3 51.4-5.2-68.8c-1.1-14.3-22.1-14.2-23.2 0l-3.5 44.9-5.9-94.3c-.9-14.5-22.3-14.4-23.2 0l-5.1 83.7-4.3-66.3c-.9-14.4-22.2-14.4-23.2 0l-5.3 80.2-4.1-57c-1.1-14.3-22-14.3-23.2-.2l-7.7 89.8-1.8-12.2c-1.7-11.4-17.1-13.6-22-3.3l-13.2 27.7H87.5v23.2h51.3c4.4 0 8.4-2.5 10.4-6.4l10.7 73.1c2 13.5 21.9 13 23.1-.7l3.8-43.6 5.7 78.3c1.1 14.4 22.3 14.2 23.2-.1l4.6-70.4 4.8 73.3c.9 14.4 22.3 14.4 23.2-.1l4.9-80.5 4.5 71.8c.9 14.3 22.1 14.5 23.2.2l4.6-58.6 4.9 64.4c1.1 14.3 22 14.2 23.1.1l6.8-83 2.7 22.3c1.4 11.8 17.7 14.1 22.3 3.1l18-43.4h50.5V258l-58.4.3zm-78 5.2h-21.9v21.9c0 4.1-3.3 7.5-7.5 7.5-4.1 0-7.5-3.3-7.5-7.5v-21.9h-21.9c-4.1 0-7.5-3.3-7.5-7.5 0-4.1 3.4-7.5 7.5-7.5h21.9v-21.9c0-4.1 3.4-7.5 7.5-7.5s7.5 3.3 7.5 7.5v21.9h21.9c4.1 0 7.5 3.3 7.5 7.5 0 4.1-3.4 7.5-7.5 7.5z"], + "creative-commons-share": [496, 512, [], "f4f2", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm101 132.4c7.8 0 13.7 6.1 13.7 13.7v182.5c0 7.7-6.1 13.7-13.7 13.7H214.3c-7.7 0-13.7-6-13.7-13.7v-54h-54c-7.8 0-13.7-6-13.7-13.7V131.1c0-8.2 6.6-12.7 12.4-13.7h136.4c7.7 0 13.7 6 13.7 13.7v54h54zM159.9 300.3h40.7V198.9c0-7.4 5.8-12.6 12-13.7h55.8v-40.3H159.9v155.4zm176.2-88.1H227.6v155.4h108.5V212.2z"], + "css3": [512, 512, [], "f13c", "M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z"], + "css3-alt": [384, 512, [], "f38b", "M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z"], + "cuttlefish": [440, 512, [], "f38c", "M344 305.5c-17.5 31.6-57.4 54.5-96 54.5-56.6 0-104-47.4-104-104s47.4-104 104-104c38.6 0 78.5 22.9 96 54.5 13.7-50.9 41.7-93.3 87-117.8C385.7 39.1 320.5 8 248 8 111 8 0 119 0 256s111 248 248 248c72.5 0 137.7-31.1 183-80.7-45.3-24.5-73.3-66.9-87-117.8z"], + "d-and-d": [576, 512, [], "f38d", "M82.5 98.9c-.6-17.2 2-33.8 12.7-48.2.3 7.4 1.2 14.5 4.2 21.6 5.9-27.5 19.7-49.3 42.3-65.5-1.9 5.9-3.5 11.8-3 17.7 8.7-7.4 18.8-17.8 44.4-22.7 14.7-2.8 29.7-2 42.1 1 38.5 9.3 61 34.3 69.7 72.3 5.3 23.1.7 45-8.3 66.4-5.2 12.4-12 24.4-20.7 35.1-2-1.9-3.9-3.8-5.8-5.6-42.8-40.8-26.8-25.2-37.4-37.4-1.1-1.2-1-2.2-.1-3.6 8.3-13.5 11.8-28.2 10-44-1.1-9.8-4.3-18.9-11.3-26.2-14.5-15.3-39.2-15-53.5.6-11.4 12.5-14.1 27.4-10.9 43.6.2 1.3.4 2.7 0 3.9-3.4 13.7-4.6 27.6-2.5 41.6.1.5.1 1.1.1 1.6 0 .3-.1.5-.2 1.1-21.8-11-36-28.3-43.2-52.2-8.3 17.8-11.1 35.5-6.6 54.1-15.6-15.2-21.3-34.3-22-55.2zm469.6 123.2c-11.6-11.6-25-20.4-40.1-26.6-12.8-5.2-26-7.9-39.9-7.1-10 .6-19.6 3.1-29 6.4-2.5.9-5.1 1.6-7.7 2.2-4.9 1.2-7.3-3.1-4.7-6.8 3.2-4.6 3.4-4.2 15-12 .6-.4 1.2-.8 2.2-1.5h-2.5c-.6 0-1.2.2-1.9.3-19.3 3.3-30.7 15.5-48.9 29.6-10.4 8.1-13.8 3.8-12-.5 1.4-3.5 3.3-6.7 5.1-10 1-1.8 2.3-3.4 3.5-5.1-.2-.2-.5-.3-.7-.5-27 18.3-46.7 42.4-57.7 73.3.3.3.7.6 1 .9.3-.6.5-1.2.9-1.7 10.4-12.1 22.8-21.8 36.6-29.8 18.2-10.6 37.5-18.3 58.7-20.2 4.3-.4 8.7-.1 13.1-.1-1.8.7-3.5.9-5.3 1.1-18.5 2.4-35.5 9-51.5 18.5-30.2 17.9-54.5 42.2-75.1 70.4-.3.4-.4.9-.7 1.3 14.5 5.3 24 17.3 36.1 25.6.2-.1.3-.2.4-.4l1.2-2.7c12.2-26.9 27-52.3 46.7-74.5 16.7-18.8 38-25.3 62.5-20 5.9 1.3 11.4 4.4 17.2 6.8 2.3-1.4 5.1-3.2 8-4.7 8.4-4.3 17.4-7 26.7-9 14.7-3.1 29.5-4.9 44.5-1.3v-.5c-.5-.4-1.2-.8-1.7-1.4zM316.7 397.6c-39.4-33-22.8-19.5-42.7-35.6-.8.9 0-.2-1.9 3-11.2 19.1-25.5 35.3-44 47.6-10.3 6.8-21.5 11.8-34.1 11.8-21.6 0-38.2-9.5-49.4-27.8-12-19.5-13.3-40.7-8.2-62.6 7.8-33.8 30.1-55.2 38.6-64.3-18.7-6.2-33 1.7-46.4 13.9.8-13.9 4.3-26.2 11.8-37.3-24.3 10.6-45.9 25-64.8 43.9-.3-5.8 5.4-43.7 5.6-44.7.3-2.7-.6-5.3-3-7.4-24.2 24.7-44.5 51.8-56.1 84.6 7.4-5.9 14.9-11.4 23.6-16.2-8.3 22.3-19.6 52.8-7.8 101.1 4.6 19 11.9 36.8 24.1 52.3 2.9 3.7 6.3 6.9 9.5 10.3.2-.2.4-.3.6-.5-1.4-7-2.2-14.1-1.5-21.9 2.2 3.2 3.9 6 5.9 8.6 12.6 16 28.7 27.4 47.2 35.6 25 11.3 51.1 13.3 77.9 8.6 54.9-9.7 90.7-48.6 116-98.8 1-1.8.6-2.9-.9-4.2zm172-46.4c-9.5-3.1-22.2-4.2-28.7-2.9 9.9 4 14.1 6.6 18.8 12 12.6 14.4 10.4 34.7-5.4 45.6-11.7 8.1-24.9 10.5-38.9 9.1-1.2-.1-2.3-.4-3-.6 2.8-3.7 6-7 8.1-10.8 9.4-16.8 5.4-42.1-8.7-56.1-2.1-2.1-4.6-3.9-7-5.9-.3 1.3-.1 2.1.1 2.8 4.2 16.6-8.1 32.4-24.8 31.8-7.6-.3-13.9-3.8-19.6-8.5-19.5-16.1-39.1-32.1-58.5-48.3-5.9-4.9-12.5-8.1-20.1-8.7-4.6-.4-9.3-.6-13.9-.9-5.9-.4-8.8-2.8-10.4-8.4-.9-3.4-1.5-6.8-2.2-10.2-1.5-8.1-6.2-13-14.3-14.2-4.4-.7-8.9-1-13.3-1.5-13-1.4-19.8-7.4-22.6-20.3-5 11-1.6 22.4 7.3 29.9 4.5 3.8 9.3 7.3 13.8 11.2 4.6 3.8 7.4 8.7 7.9 14.8.4 4.7.8 9.5 1.8 14.1 2.2 10.6 8.9 18.4 17 25.1 16.5 13.7 33 27.3 49.5 41.1 17.9 15 13.9 32.8 13 56-.9 22.9 12.2 42.9 33.5 51.2 1 .4 2 .6 3.6 1.1-15.7-18.2-10.1-44.1.7-52.3.3 2.2.4 4.3.9 6.4 9.4 44.1 45.4 64.2 85 56.9 16-2.9 30.6-8.9 42.9-19.8 2-1.8 3.7-4.1 5.9-6.5-19.3 4.6-35.8.1-50.9-10.6.7-.3 1.3-.3 1.9-.3 21.3 1.8 40.6-3.4 57-17.4 19.5-16.6 26.6-42.9 17.4-66-8.3-20.1-23.6-32.3-43.8-38.9zM99.4 179.3c-5.3-9.2-13.2-15.6-22.1-21.3 13.7-.5 26.6.2 39.6 3.7-7-12.2-8.5-24.7-5-38.7 5.3 11.9 13.7 20.1 23.6 26.8 19.7 13.2 35.7 19.6 46.7 30.2 3.4 3.3 6.3 7.1 9.6 10.9-.8-2.1-1.4-4.1-2.2-6-5-10.6-13-18.6-22.6-25-1.8-1.2-2.8-2.5-3.4-4.5-3.3-12.5-3-25.1-.7-37.6 1-5.5 2.8-10.9 4.5-16.3.8-2.4 2.3-4.6 4-6.6.6 6.9 0 25.5 19.6 46 10.8 11.3 22.4 21.9 33.9 32.7 9 8.5 18.3 16.7 25.5 26.8 1.1 1.6 2.2 3.3 3.8 4.7-5-13-14.2-24.1-24.2-33.8-9.6-9.3-19.4-18.4-29.2-27.4-3.3-3-4.6-6.7-5.1-10.9-1.2-10.4 0-20.6 4.3-30.2.5-1 1.1-2 1.9-3.3.5 4.2.6 7.9 1.4 11.6 4.8 23.1 20.4 36.3 49.3 63.5 10 9.4 19.3 19.2 25.6 31.6 4.8 9.3 7.3 19 5.7 29.6-.1.6.5 1.7 1.1 2 6.2 2.6 10 6.9 9.7 14.3 7.7-2.6 12.5-8 16.4-14.5 4.2 20.2-9.1 50.3-27.2 58.7.4-4.5 5-23.4-16.5-27.7-6.8-1.3-12.8-1.3-22.9-2.1 4.7-9 10.4-20.6.5-22.4-24.9-4.6-52.8 1.9-57.8 4.6 8.2.4 16.3 1 23.5 3.3-2 6.5-4 12.7-5.8 18.9-1.9 6.5 2.1 14.6 9.3 9.6 1.2-.9 2.3-1.9 3.3-2.7-3.1 17.9-2.9 15.9-2.8 18.3.3 10.2 9.5 7.8 15.7 7.3-2.5 11.8-29.5 27.3-45.4 25.8 7-4.7 12.7-10.3 15.9-17.9-6.5.8-12.9 1.6-19.2 2.4l-.3-.9c4.7-3.4 8-7.8 10.2-13.1 8.7-21.1-3.6-38-25-39.9-9.1-.8-17.8.8-25.9 5.5 6.2-15.6 17.2-26.6 32.6-34.5-15.2-4.3-8.9-2.7-24.6-6.3 14.6-9.3 30.2-13.2 46.5-14.6-5.2-3.2-48.1-3.6-70.2 20.9 7.9 1.4 15.5 2.8 23.2 4.2-23.8 7-44 19.7-62.4 35.6 1.1-4.8 2.7-9.5 3.3-14.3.6-4.5.8-9.2.1-13.6-1.5-9.4-8.9-15.1-19.7-16.3-7.9-.9-15.6.1-23.3 1.3-.9.1-1.7.3-2.9 0 15.8-14.8 36-21.7 53.1-33.5 6-4.5 6.8-8.2 3-14.9zm128.4 26.8c3.3 16 12.6 25.5 23.8 24.3-4.6-11.3-12.1-19.5-23.8-24.3z"], + "dashcube": [448, 512, [], "f210", "M326.6 104H110.4c-51.1 0-91.2 43.3-91.2 93.5V427c0 50.5 40.1 85 91.2 85h227.2c51.1 0 91.2-34.5 91.2-85V0L326.6 104zM153.9 416.5c-17.7 0-32.4-15.1-32.4-32.8V240.8c0-17.7 14.7-32.5 32.4-32.5h140.7c17.7 0 32 14.8 32 32.5v123.5l51.1 52.3H153.9z"], + "delicious": [448, 512, [], "f1a5", "M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1.5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3 1 1.1 2.1 2.2 3.3 3.3 5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12zM416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192v176z"], + "deploydog": [512, 512, [], "f38e", "M382.2 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.6 0-33.2 16.4-33.2 32.6zM188.5 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.7 0-33.2 16.4-33.2 32.6zM448 96c17.5 0 32 14.4 32 32v256c0 17.5-14.4 32-32 32H64c-17.5 0-32-14.4-32-32V128c0-17.5 14.4-32 32-32h384m0-32H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h384c35.2 0 64-28.8 64-64V128c0-35.2-28.8-64-64-64z"], + "deskpro": [480, 512, [], "f38f", "M205.9 512l31.1-38.4c12.3-.2 25.6-1.4 36.5-6.6 38.9-18.6 38.4-61.9 38.3-63.8-.1-5-.8-4.4-28.9-37.4H362c-.2 50.1-7.3 68.5-10.2 75.7-9.4 23.7-43.9 62.8-95.2 69.4-8.7 1.1-32.8 1.2-50.7 1.1zm200.4-167.7c38.6 0 58.5-13.6 73.7-30.9l-175.5-.3-17.4 31.3 119.2-.1zm-43.6-223.9v168.3h-73.5l-32.7 55.5H250c-52.3 0-58.1-56.5-58.3-58.9-1.2-13.2-21.3-11.6-20.1 1.8 1.4 15.8 8.8 40 26.4 57.1h-91c-25.5 0-110.8-26.8-107-114V16.9C0 .9 9.7.3 15 .1h82c.2 0 .3.1.5.1 4.3-.4 50.1-2.1 50.1 43.7 0 13.3 20.2 13.4 20.2 0 0-18.2-5.5-32.8-15.8-43.7h84.2c108.7-.4 126.5 79.4 126.5 120.2zm-132.5 56l64 29.3c13.3-45.5-42.2-71.7-64-29.3z"], + "deviantart": [320, 512, [], "f1bd", "M320 93.2l-98.2 179.1 7.4 9.5H320v127.7H159.1l-13.5 9.2-43.7 84c-.3 0-8.6 8.6-9.2 9.2H0v-93.2l93.2-179.4-7.4-9.2H0V102.5h156l13.5-9.2 43.7-84c.3 0 8.6-8.6 9.2-9.2H320v93.1z"], + "digg": [512, 512, [], "f1a6", "M81.7 172.3H0v174.4h132.7V96h-51v76.3zm0 133.4H50.9v-92.3h30.8v92.3zm297.2-133.4v174.4h81.8v28.5h-81.8V416H512V172.3H378.9zm81.8 133.4h-30.8v-92.3h30.8v92.3zm-235.6 41h82.1v28.5h-82.1V416h133.3V172.3H225.1v174.4zm51.2-133.3h30.8v92.3h-30.8v-92.3zM153.3 96h51.3v51h-51.3V96zm0 76.3h51.3v174.4h-51.3V172.3z"], + "digital-ocean": [512, 512, [], "f391", "M256 504v-96.1c101.8 0 180.8-100.9 141.7-208-14.3-39.6-46.1-71.4-85.8-85.7-107.1-38.8-208.1 39.9-208.1 141.7H8C8 93.7 164.9-32.8 335 20.3c74.2 23.3 133.6 82.4 156.6 156.6C544.8 347.2 418.6 504 256 504zm.3-191.4h-95.6v95.6h95.6v-95.6zm-95.6 95.6H87v73.6h73.7v-73.6zM87 346.6H25.4v61.6H87v-61.6z"], + "discord": [448, 512, [], "f392", "M297.216 243.2c0 15.616-11.52 28.416-26.112 28.416-14.336 0-26.112-12.8-26.112-28.416s11.52-28.416 26.112-28.416c14.592 0 26.112 12.8 26.112 28.416zm-119.552-28.416c-14.592 0-26.112 12.8-26.112 28.416s11.776 28.416 26.112 28.416c14.592 0 26.112-12.8 26.112-28.416.256-15.616-11.52-28.416-26.112-28.416zM448 52.736V512c-64.494-56.994-43.868-38.128-118.784-107.776l13.568 47.36H52.48C23.552 451.584 0 428.032 0 398.848V52.736C0 23.552 23.552 0 52.48 0h343.04C424.448 0 448 23.552 448 52.736zm-72.96 242.688c0-82.432-36.864-149.248-36.864-149.248-36.864-27.648-71.936-26.88-71.936-26.88l-3.584 4.096c43.52 13.312 63.744 32.512 63.744 32.512-60.811-33.329-132.244-33.335-191.232-7.424-9.472 4.352-15.104 7.424-15.104 7.424s21.248-20.224 67.328-33.536l-2.56-3.072s-35.072-.768-71.936 26.88c0 0-36.864 66.816-36.864 149.248 0 0 21.504 37.12 78.08 38.912 0 0 9.472-11.52 17.152-21.248-32.512-9.728-44.8-30.208-44.8-30.208 3.766 2.636 9.976 6.053 10.496 6.4 43.21 24.198 104.588 32.126 159.744 8.96 8.96-3.328 18.944-8.192 29.44-15.104 0 0-12.8 20.992-46.336 30.464 7.68 9.728 16.896 20.736 16.896 20.736 56.576-1.792 78.336-38.912 78.336-38.912z"], + "discourse": [448, 512, [], "f393", "M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z"], + "dochub": [416, 512, [], "f394", "M397.9 160H256V19.6L397.9 160zM304 192v130c0 66.8-36.5 100.1-113.3 100.1H96V84.8h94.7c12 0 23.1.8 33.1 2.5v-84C212.9 1.1 201.4 0 189.2 0H0v512h189.2C329.7 512 400 447.4 400 318.1V192h-96z"], + "docker": [640, 512, [], "f395", "M349.9 236.3h-66.1v-59.4h66.1v59.4zm0-204.3h-66.1v60.7h66.1V32zm78.2 144.8H362v59.4h66.1v-59.4zm-156.3-72.1h-66.1v60.1h66.1v-60.1zm78.1 0h-66.1v60.1h66.1v-60.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4.4 67.6.1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1l-13.3-8.9zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm-78.1-72.1h-66.1v60.1h66.1v-60.1z"], + "draft2digital": [480, 512, [], "f396", "M369.9 425.4V371l47.1 27.2-47.1 27.2zM82.4 380.6c25.5-27.3 97.7-104.7 150.9-170 35.1-43.1 40.3-82.4 28.4-112.7-7.4-18.8-17.5-30.2-24.3-35.7 45.3 2.1 68 23.4 82.2 38.3 0 0 42.4 48.2 5.8 113.3-37 65.9-110.9 147.5-128.5 166.7H82.4zm51.8-219.2c0 12.4-10 22.4-22.4 22.4-12.4 0-22.4-10-22.4-22.4 0-12.4 10-22.4 22.4-22.4 12.4 0 22.4 10.1 22.4 22.4M336 315.9v64.7h-91.3c30.8-35 81.8-95.9 111.8-149.3 35.2-62.6 16.1-123.4-12.8-153.3-4.4-4.6-62.2-62.9-166-41.2-59.1 12.4-89.4 43.4-104.3 67.3-13.1 20.9-17 39.8-18.2 47.7-5.5 33 19.4 67.1 56.7 67.1 31.7 0 57.3-25.7 57.3-57.4 0-27.1-19.7-52.1-48-56.8 1.8-7.3 17.7-21.1 26.3-24.7 41.1-17.3 78 5.2 83.3 33.5 8.3 44.3-37.1 90.4-69.7 127.6C84.5 328.1 18.3 396.8 0 415.9l336-.1V480l144-81.9-144-82.2z"], + "dribbble": [512, 512, [], "f17d", "M256 8C119.252 8 8 119.252 8 256s111.252 248 248 248 248-111.252 248-248S392.748 8 256 8zm163.97 114.366c29.503 36.046 47.369 81.957 47.835 131.955-6.984-1.477-77.018-15.682-147.502-6.818-5.752-14.041-11.181-26.393-18.617-41.614 78.321-31.977 113.818-77.482 118.284-83.523zM396.421 97.87c-3.81 5.427-35.697 48.286-111.021 76.519-34.712-63.776-73.185-116.168-79.04-124.008 67.176-16.193 137.966 1.27 190.061 47.489zm-230.48-33.25c5.585 7.659 43.438 60.116 78.537 122.509-99.087 26.313-186.36 25.934-195.834 25.809C62.38 147.205 106.678 92.573 165.941 64.62zM44.17 256.323c0-2.166.043-4.322.108-6.473 9.268.19 111.92 1.513 217.706-30.146 6.064 11.868 11.857 23.915 17.174 35.949-76.599 21.575-146.194 83.527-180.531 142.306C64.794 360.405 44.17 310.73 44.17 256.323zm81.807 167.113c22.127-45.233 82.178-103.622 167.579-132.756 29.74 77.283 42.039 142.053 45.189 160.638-68.112 29.013-150.015 21.053-212.768-27.882zm248.38 8.489c-2.171-12.886-13.446-74.897-41.152-151.033 66.38-10.626 124.7 6.768 131.947 9.055-9.442 58.941-43.273 109.844-90.795 141.978z"], + "dribbble-square": [448, 512, [], "f397", "M90.2 228.2c8.9-42.4 37.4-77.7 75.7-95.7 3.6 4.9 28 38.8 50.7 79-64 17-120.3 16.8-126.4 16.7zM314.6 154c-33.6-29.8-79.3-41.1-122.6-30.6 3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4zM140.1 364c40.5 31.6 93.3 36.7 137.3 18-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6zm98.8-108.2c-3.4-7.8-7.2-15.5-11.1-23.2C159.6 253 93.4 252.2 87.4 252c0 1.4-.1 2.8-.1 4.2 0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8zm34.9 16.3c17.9 49.1 25.1 89.1 26.5 97.4 30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8zm-20.3-48.4c4.8 9.8 8.3 17.8 12 26.8 45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 176c0-88.2-71.8-160-160-160S64 167.8 64 256s71.8 160 160 160 160-71.8 160-160z"], + "dropbox": [528, 512, [], "f16b", "M264.4 116.3l-132 84.3 132 84.3-132 84.3L0 284.1l132.3-84.3L0 116.3 132.3 32l132.1 84.3zM131.6 395.7l132-84.3 132 84.3-132 84.3-132-84.3zm132.8-111.6l132-84.3-132-83.6L395.7 32 528 116.3l-132.3 84.3L528 284.8l-132.3 84.3-131.3-85z"], + "drupal": [448, 512, [], "f1a9", "M319.5 114.7c-22.2-14-43.5-19.5-64.7-33.5-13-8.8-31.3-30-46.5-48.3-2.7 29.3-11.5 41.2-22 49.5-21.3 17-34.8 22.2-53.5 32.3C117 123 32 181.5 32 290.5 32 399.7 123.8 480 225.8 480 327.5 480 416 406 416 294c0-112.3-83-171-96.5-179.3zm2.5 325.6c-20.1 20.1-90.1 28.7-116.7 4.2-4.8-4.8.3-12 6.5-12 0 0 17 13.3 51.5 13.3 27 0 46-7.7 54.5-14 6.1-4.6 8.4 4.3 4.2 8.5zm-54.5-52.6c8.7-3.6 29-3.8 36.8 1.3 4.1 2.8 16.1 18.8 6.2 23.7-8.4 4.2-1.2-15.7-26.5-15.7-14.7 0-19.5 5.2-26.7 11-7 6-9.8 8-12.2 4.7-6-8.2 15.9-22.3 22.4-25zM360 405c-15.2-1-45.5-48.8-65-49.5-30.9-.9-104.1 80.7-161.3 42-38.8-26.6-14.6-104.8 51.8-105.2 49.5-.5 83.8 49 108.5 48.5 21.3-.3 61.8-41.8 81.8-41.8 48.7 0 23.3 109.3-15.8 106z"], + "dyalog": [416, 512, [], "f399", "M0 32v119.2h64V96h107.2C284.6 96 352 176.2 352 255.9 352 332 293.4 416 171.2 416H0v64h171.2C331.9 480 416 367.3 416 255.9c0-58.7-22.1-113.4-62.3-154.3C308.9 56 245.7 32 171.2 32H0z"], + "earlybirds": [480, 512, [], "f39a", "M313.2 47.5c1.2-13 21.3-14 36.6-8.7.9.3 26.2 9.7 19 15.2-27.9-7.4-56.4 18.2-55.6-6.5zm-201 6.9c30.7-8.1 62 20 61.1-7.1-1.3-14.2-23.4-15.3-40.2-9.6-1 .3-28.7 10.5-20.9 16.7zM319.4 160c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-159.7 0c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm318.5 163.2c-9.9 24-40.7 11-63.9-1.2-13.5 69.1-58.1 111.4-126.3 124.2.3.9-2-.1 24 1 33.6 1.4 63.8-3.1 97.4-8-19.8-13.8-11.4-37.1-9.8-38.1 1.4-.9 14.7 1.7 21.6 11.5 8.6-12.5 28.4-14.8 30.2-13.6 1.6 1.1 6.6 20.9-6.9 34.6 4.7-.9 8.2-1.6 9.8-2.1 2.6-.8 17.7 11.3 3.1 13.3-14.3 2.3-22.6 5.1-47.1 10.8-45.9 10.7-85.9 11.8-117.7 12.8l1 11.6c3.8 18.1-23.4 24.3-27.6 6.2.8 17.9-27.1 21.8-28.4-1l-.5 5.3c-.7 18.4-28.4 17.9-28.3-.6-7.5 13.5-28.1 6.8-26.4-8.5l1.2-12.4c-36.7.9-59.7 3.1-61.8 3.1-20.9 0-20.9-31.6 0-31.6 2.4 0 27.7 1.3 63.2 2.8-61.1-15.5-103.7-55-114.9-118.2-25 12.8-57.5 26.8-68.2.8-10.5-25.4 21.5-42.6 66.8-73.4.7-6.6 1.6-13.3 2.7-19.8-14.4-19.6-11.6-36.3-16.1-60.4-16.8 2.4-23.2-9.1-23.6-23.1.3-7.3 2.1-14.9 2.4-15.4 1.1-1.8 10.1-2 12.7-2.6 6-31.7 50.6-33.2 90.9-34.5 19.7-21.8 45.2-41.5 80.9-48.3C203.3 29 215.2 8.5 216.2 8c1.7-.8 21.2 4.3 26.3 23.2 5.2-8.8 18.3-11.4 19.6-10.7 1.1.6 6.4 15-4.9 25.9 40.3 3.5 72.2 24.7 96 50.7 36.1 1.5 71.8 5.9 77.1 34 2.7.6 11.6.8 12.7 2.6.3.5 2.1 8.1 2.4 15.4-.5 13.9-6.8 25.4-23.6 23.1-3.2 17.3-2.7 32.9-8.7 47.7 2.4 11.7 4 23.8 4.8 36.4 37 25.4 70.3 42.5 60.3 66.9zM207.4 159.9c.9-44-37.9-42.2-78.6-40.3-21.7 1-38.9 1.9-45.5 13.9-11.4 20.9 5.9 92.9 23.2 101.2 9.8 4.7 73.4 7.9 86.3-7.1 8.2-9.4 15-49.4 14.6-67.7zm52 58.3c-4.3-12.4-6-30.1-15.3-32.7-2-.5-9-.5-11 0-10 2.8-10.8 22.1-17 37.2 15.4 0 19.3 9.7 23.7 9.7 4.3 0 6.3-11.3 19.6-14.2zm135.7-84.7c-6.6-12.1-24.8-12.9-46.5-13.9-40.2-1.9-78.2-3.8-77.3 40.3-.5 18.3 5 58.3 13.2 67.8 13 14.9 76.6 11.8 86.3 7.1 15.8-7.6 36.5-78.9 24.3-101.3z"], + "ebay": [640, 512, [], "f4f4", "M405.2 263.8c-29.1.9-47.2 6.2-47.2 25.3 0 12.4 9.9 25.8 35 25.8 33.7 0 51.6-18.4 51.6-48.4v-3.3c-11.8 0-26.3.1-39.4.6m71.5 39.7c0 9.3.3 18.6 1 26.8h-29.8c-.8-6.9-1.1-13.6-1.1-20.2-16.1 19.8-35.3 25.5-61.9 25.5-39.5 0-60.6-20.9-60.6-45 0-35 28.8-47.3 78.6-48.4 13.7-.3 29-.4 41.7-.4v-3.4c0-23.4-15-33-41-33-19.3 0-33.6 8-35 21.8h-33.7c3.6-34.4 39.7-43.1 71.5-43.1 38.1 0 70.3 13.5 70.3 53.8v65.6zm-349-56.8c-2.3-54.7-87.5-56.6-94.4 0h94.4zm-95 21.4c3.5 58.3 79.2 57.4 91.2 21.6H157c-6.4 34.4-43 46.1-74.4 46.1-57.2 0-82.5-31.5-82.5-74 0-46.8 26.2-77.6 83-77.6 45.3 0 78.4 23.7 78.4 75.4v8.5H32.7zm211 45.7c29.8 0 50.2-21.5 50.2-53.8 0-32.4-20.4-53.8-50.2-53.8-29.6 0-50.2 21.4-50.2 53.8 0 32.3 20.6 53.8 50.2 53.8m-82.2-186h32.1v80.6c15.7-18.7 37.4-24.2 58.7-24.2 35.7 0 75.4 24.1 75.4 76.2 0 43.6-31.5 75.4-76 75.4-23.3 0-45.1-8.3-58.7-24.9 0 6.6-.4 13.2-1.1 19.5h-31.5c.5-10.2 1.1-22.8 1.1-33.1V127.8zM640 189.5l-99.2 194.8h-35.9l28.5-54.1-74.6-140.7h37.5l54.9 109.9L606 189.5h34z"], + "edge": [512, 512, [], "f282", "M25.714 228.163c.111-.162.23-.323.342-.485-.021.162-.045.323-.065.485h-.277zm460.572 15.508c0-44.032-7.754-84.465-28.801-122.405C416.498 47.879 343.912 8.001 258.893 8.001 118.962 7.724 40.617 113.214 26.056 227.679c42.429-61.312 117.073-121.376 220.375-124.966 0 0 109.666 0 99.419 104.957H169.997c6.369-37.386 18.554-58.986 34.339-78.926-75.048 34.893-121.85 96.096-120.742 188.315.83 71.448 50.124 144.836 120.743 171.976 83.357 31.847 192.776 7.2 240.132-21.324V363.307c-80.864 56.494-270.871 60.925-272.255-67.572h314.073v-52.064z"], + "elementor": [448, 512, [], "f430", "M425.6 32H22.4C10 32 0 42 0 54.4v403.2C0 470 10 480 22.4 480h403.2c12.4 0 22.4-10 22.4-22.4V54.4C448 42 438 32 425.6 32M164.3 355.5h-39.8v-199h39.8v199zm159.3 0H204.1v-39.8h119.5v39.8zm0-79.6H204.1v-39.8h119.5v39.8zm0-79.7H204.1v-39.8h119.5v39.8z"], + "ember": [640, 512, [], "f423", "M639.9 254.6c-1.1-10.7-10.7-6.8-10.7-6.8s-15.6 12.1-29.3 10.7c-13.7-1.3-9.4-32-9.4-32s3-28.1-5.1-30.4c-8.1-2.4-18 7.3-18 7.3s-12.4 13.7-18.3 31.2l-1.6.5s1.9-30.6-.3-37.6c-1.6-3.5-16.4-3.2-18.8 3s-14.2 49.2-15 67.2c0 0-23.1 19.6-43.3 22.8s-25-9.4-25-9.4 54.8-15.3 52.9-59.1c-1.9-43.8-44.2-27.6-49-24-4.6 3.5-29.4 18.4-36.6 59.7-.2 1.4-.7 7.5-.7 7.5s-21.2 14.2-33 18c0 0 33-55.6-7.3-80.9-18.3-11-32.8 12.1-32.8 12.1s54.5-60.7 42.5-112c-5.8-24.4-18-27.1-29.2-23.1-17 6.7-23.5 16.7-23.5 16.7s-22 32-27.1 79.5-12.6 105.1-12.6 105.1-10.5 10.2-20.2 10.7-5.4-28.7-5.4-28.7 7.5-44.6 7-52.1-1.1-11.6-9.9-14.2c-8.9-2.7-18.5 8.6-18.5 8.6s-25.5 38.7-27.7 44.6l-1.3 2.4-1.3-1.6s18-52.7.8-53.5c-17.2-.8-28.5 18.8-28.5 18.8s-19.6 32.8-20.4 36.5l-1.3-1.6s8.1-38.2 6.4-47.6c-1.6-9.4-10.5-7.5-10.5-7.5s-11.3-1.3-14.2 5.9-13.7 55.3-15 70.7c0 0-28.2 20.2-46.8 20.4-18.5.3-16.7-11.8-16.7-11.8s68-23.3 49.4-69.2c-8.3-11.8-18-15.5-31.7-15.3-13.7.3-30.3 8.6-41.3 33.3-5.3 11.8-6.8 23-7.8 31.5 0 0-12.3 2.4-18.8-2.9s-10 0-10 0-11.2 14-.1 18.3 28.1 6.1 28.1 6.1c1.6 7.5 6.2 19.5 19.6 29.7 20.2 15.3 58.8-1.3 58.8-1.3l15.9-8.8s.5 14.6 12.1 16.7c11.6 2.1 16.4 1 36.5-47.9 11.8-25 12.6-23.6 12.6-23.6l1.3-.3s-9.1 46.8-5.6 59.7C187.7 319.4 203 318 203 318s8.3 2.4 15-21.2c6.7-23.6 19.6-49.9 19.6-49.9h1.6s-5.6 48.1 3 63.7c8.6 15.6 30.9 5.3 30.9 5.3s15.6-7.8 18-10.2c0 0 18.5 15.8 44.6 12.9 58.3-11.5 79.1-25.9 79.1-25.9s10 24.4 41.1 26.7c35.5 2.7 54.8-18.6 54.8-18.6s-.3 13.5 12.1 18.6c12.4 5.1 20.7-22.8 20.7-22.8l20.7-57.2h1.9s1.1 37.3 21.5 43.2 47-13.7 47-13.7 6.4-3.5 5.3-14.3zm-578 5.3c.8-32 21.8-45.9 29-39 7.3 7 4.6 22-9.1 31.4-13.7 9.5-19.9 7.6-19.9 7.6zm272.8-123.8s19.1-49.7 23.6-25.5-40 96.2-40 96.2c.5-16.2 16.4-70.7 16.4-70.7zm22.8 138.4c-12.6 33-43.3 19.6-43.3 19.6s-3.5-11.8 6.4-44.9 33.3-20.2 33.3-20.2 16.2 12.4 3.6 45.5zm84.6-14.6s-3-10.5 8.1-30.6c11-20.2 19.6-9.1 19.6-9.1s9.4 10.2-1.3 25.5-26.4 14.2-26.4 14.2z"], + "empire": [496, 512, [], "f1d1", "M287.6 54.2c-10.8-2.2-22.1-3.3-33.5-3.6V32.4c78.1 2.2 146.1 44 184.6 106.6l-15.8 9.1c-6.1-9.7-12.7-18.8-20.2-27.1l-18 15.5c-26-29.6-61.4-50.7-101.9-58.4l4.8-23.9zM53.4 322.4l23-7.7c-6.4-18.3-10-38.2-10-58.7s3.3-40.4 9.7-58.7l-22.7-7.7c3.6-10.8 8.3-21.3 13.6-31l-15.8-9.1C34 181 24.1 217.5 24.1 256s10 75 27.1 106.6l15.8-9.1c-5.3-10-9.7-20.3-13.6-31.1zM213.1 434c-40.4-8-75.8-29.1-101.9-58.7l-18 15.8c-7.5-8.6-14.4-17.7-20.2-27.4l-16 9.4c38.5 62.3 106.8 104.3 184.9 106.6v-18.3c-11.3-.3-22.7-1.7-33.5-3.6l4.7-23.8zM93.3 120.9l18 15.5c26-29.6 61.4-50.7 101.9-58.4l-4.7-23.8c10.8-2.2 22.1-3.3 33.5-3.6V32.4C163.9 34.6 95.9 76.4 57.4 139l15.8 9.1c6-9.7 12.6-18.9 20.1-27.2zm309.4 270.2l-18-15.8c-26 29.6-61.4 50.7-101.9 58.7l4.7 23.8c-10.8 1.9-22.1 3.3-33.5 3.6v18.3c78.1-2.2 146.4-44.3 184.9-106.6l-16.1-9.4c-5.7 9.7-12.6 18.8-20.1 27.4zM496 256c0 137-111 248-248 248S0 393 0 256 111 8 248 8s248 111 248 248zm-12.2 0c0-130.1-105.7-235.8-235.8-235.8S12.2 125.9 12.2 256 117.9 491.8 248 491.8 483.8 386.1 483.8 256zm-39-106.6l-15.8 9.1c5.3 9.7 10 20.2 13.6 31l-22.7 7.7c6.4 18.3 9.7 38.2 9.7 58.7s-3.6 40.4-10 58.7l23 7.7c-3.9 10.8-8.3 21-13.6 31l15.8 9.1C462 331 471.9 294.5 471.9 256s-9.9-75-27.1-106.6zm-183 177.7c16.3-3.3 30.4-11.6 40.7-23.5l51.2 44.8c11.9-13.6 21.3-29.3 27.1-46.8l-64.2-22.1c2.5-7.5 3.9-15.2 3.9-23.5s-1.4-16.1-3.9-23.5l64.5-22.1c-6.1-17.4-15.5-33.2-27.4-46.8l-51.2 44.8c-10.2-11.9-24.4-20.5-40.7-23.8l13.3-66.4c-8.6-1.9-17.7-2.8-27.1-2.8-9.4 0-18.5.8-27.1 2.8l13.3 66.4c-16.3 3.3-30.4 11.9-40.7 23.8l-51.2-44.8c-11.9 13.6-21.3 29.3-27.4 46.8l64.5 22.1c-2.5 7.5-3.9 15.2-3.9 23.5s1.4 16.1 3.9 23.5l-64.2 22.1c5.8 17.4 15.2 33.2 27.1 46.8l51.2-44.8c10.2 11.9 24.4 20.2 40.7 23.5l-13.3 66.7c8.6 1.7 17.7 2.8 27.1 2.8 9.4 0 18.5-1.1 27.1-2.8l-13.3-66.7z"], + "envira": [448, 512, [], "f299", "M0 32c477.6 0 366.6 317.3 367.1 366.3L448 480h-26l-70.4-71.2c-39 4.2-124.4 34.5-214.4-37C47 300.3 52 214.7 0 32zm79.7 46c-49.7-23.5-5.2 9.2-5.2 9.2 45.2 31.2 66 73.7 90.2 119.9 31.5 60.2 79 139.7 144.2 167.7 65 28 34.2 12.5 6-8.5-28.2-21.2-68.2-87-91-130.2-31.7-60-61-118.6-144.2-158.1z"], + "erlang": [640, 512, [], "f39d", "M21.7 246.4c-.1 86.8 29 159.5 78.7 212.1H0v-405h87.2c-41.5 50.2-65.6 116.2-65.5 192.9zM640 53.6h-83.6c31.4 42.7 48.7 97.5 46.2 162.7.5 6 .5 11.7 0 24.1H230.2c-.2 109.7 38.9 194.9 138.6 195.3 68.5-.3 118-51 151.9-106.1l96.4 48.2c-17.4 30.9-36.5 57.8-57.9 80.8H640v-405zm-80.8 405s0-.1 0 0h-.2.2zm-3.1-405h.3l-.1-.1-.2.1zm-230.7 9.6c-45.9.1-85.1 33.5-89.2 83.2h169.9c-1.1-49.7-34.5-83.1-80.7-83.2z"], + "ethereum": [320, 512, [], "f42e", "M311.9 260.8L160 353.6 8 260.8 160 0l151.9 260.8zM160 383.4L8 290.6 160 512l152-221.4-152 92.8z"], + "etsy": [384, 512, [], "f2d7", "M384 348c-1.75 10.75-13.75 110-15.5 132-117.879-4.299-219.895-4.743-368.5 0v-25.5c45.457-8.948 60.627-8.019 61-35.25 1.793-72.322 3.524-244.143 0-322-1.029-28.46-12.13-26.765-61-36v-25.5c73.886 2.358 255.933 8.551 362.999-3.75-3.5 38.25-7.75 126.5-7.75 126.5H332C320.947 115.665 313.241 68 277.25 68h-137c-10.25 0-10.75 3.5-10.75 9.75V241.5c58 .5 88.5-2.5 88.5-2.5 29.77-.951 27.56-8.502 40.75-65.251h25.75c-4.407 101.351-3.91 61.829-1.75 160.25H257c-9.155-40.086-9.065-61.045-39.501-61.5 0 0-21.5-2-88-2v139c0 26 14.25 38.25 44.25 38.25H263c63.636 0 66.564-24.996 98.751-99.75H384z"], + "expeditedssl": [496, 512, [], "f23e", "M248 43.4C130.6 43.4 35.4 138.6 35.4 256S130.6 468.6 248 468.6 460.6 373.4 460.6 256 365.4 43.4 248 43.4zm-97.4 132.9c0-53.7 43.7-97.4 97.4-97.4s97.4 43.7 97.4 97.4v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6c0-82.1-124-82.1-124 0v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6zM389.7 380c0 9.7-8 17.7-17.7 17.7H124c-9.7 0-17.7-8-17.7-17.7V238.3c0-9.7 8-17.7 17.7-17.7h248c9.7 0 17.7 8 17.7 17.7V380zm-248-137.3v132.9c0 2.5-1.9 4.4-4.4 4.4h-8.9c-2.5 0-4.4-1.9-4.4-4.4V242.7c0-2.5 1.9-4.4 4.4-4.4h8.9c2.5 0 4.4 1.9 4.4 4.4zm141.7 48.7c0 13-7.2 24.4-17.7 30.4v31.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-31.6c-10.5-6.1-17.7-17.4-17.7-30.4 0-19.7 15.8-35.4 35.4-35.4s35.5 15.8 35.5 35.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 478.3C121 486.3 17.7 383 17.7 256S121 25.7 248 25.7 478.3 129 478.3 256 375 486.3 248 486.3z"], + "facebook": [448, 512, [], "f09a", "M448 56.7v398.5c0 13.7-11.1 24.7-24.7 24.7H309.1V306.5h58.2l8.7-67.6h-67v-43.2c0-19.6 5.4-32.9 33.5-32.9h35.8v-60.5c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9h-58.4v67.6h58.4V480H24.7C11.1 480 0 468.9 0 455.3V56.7C0 43.1 11.1 32 24.7 32h398.5c13.7 0 24.8 11.1 24.8 24.7z"], + "facebook-f": [264, 512, [], "f39e", "M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"], + "facebook-messenger": [448, 512, [], "f39f", "M224 32C15.9 32-77.5 278 84.6 400.6V480l75.7-42c142.2 39.8 285.4-59.9 285.4-198.7C445.8 124.8 346.5 32 224 32zm23.4 278.1L190 250.5 79.6 311.6l121.1-128.5 57.4 59.6 110.4-61.1-121.1 128.5z"], + "facebook-square": [448, 512, [], "f082", "M448 80v352c0 26.5-21.5 48-48 48h-85.3V302.8h60.6l8.7-67.6h-69.3V192c0-19.6 5.4-32.9 33.5-32.9H384V98.7c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9H184v67.6h60.9V480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z"], + "firefox": [480, 512, [], "f269", "M478.1 235.3c-.7-4.5-1.4-7.1-1.4-7.1s-1.8 2-4.7 5.9c-.9-10.7-2.8-21.2-5.8-31.6-3.7-12.9-8.5-25.4-14.5-37.4-3.8-8-8.2-15.6-13.3-22.8-1.8-2.7-3.7-5.4-5.6-7.9-8.8-14.4-19-23.3-30.7-40-7.6-12.8-12.9-26.9-15.4-41.6-3.2 8.9-5.7 18-7.4 27.3-12.1-12.2-22.5-20.8-28.9-26.7C319.4 24.2 323 9.1 323 9.1S264.7 74.2 289.9 142c8.7 23 23.8 43.1 43.4 57.9 24.4 20.2 50.8 36 64.7 76.6-11.2-21.3-28.1-39.2-48.8-51.5 6.2 14.7 9.4 30.6 9.3 46.5 0 61-49.6 110.5-110.6 110.4-8.3 0-16.5-.9-24.5-2.8-9.5-1.8-18.7-4.9-27.4-9.3-12.9-7.8-24-18.1-32.8-30.3l-.2-.3 2 .7c4.6 1.6 9.2 2.8 14 3.7 18.7 4 38.3 1.7 55.6-6.6 17.5-9.7 28-16.9 36.6-14h.2c8.4 2.7 15-5.5 9-14-10.4-13.4-27.4-20-44.2-17-17.5 2.5-33.5 15-56.4 2.9-1.5-.8-2.9-1.6-4.3-2.5-1.6-.9 4.9 1.3 3.4.3-5-2.5-9.8-5.4-14.4-8.6-.3-.3 3.5 1.1 3.1.8-5.9-4-11-9.2-15-15.2-4.1-7.4-4.5-16.4-1-24.1 2.1-3.8 5.4-6.9 9.3-8.7 3 1.5 4.8 2.6 4.8 2.6s-1.3-2.5-2.1-3.8c.3-.1.5 0 .8-.2 2.6 1.1 8.3 4 11.4 5.8 2.1 1.1 3.8 2.7 5.2 4.7 0 0 1-.5.3-2.7-1.1-2.7-2.9-5-5.4-6.6h.2c2.3 1.2 4.5 2.6 6.6 4.1 1.9-4.4 2.8-9.2 2.6-14 .2-2.6-.2-5.3-1.1-7.8-.8-1.6.5-2.2 1.9-.5-.2-1.3-.7-2.5-1.2-3.7v-.1s.8-1.1 1.2-1.5c1-1 2.1-1.9 3.4-2.7 7.2-4.5 14.8-8.4 22.7-11.6 6.4-2.8 11.7-4.9 12.8-5.6 1.6-1 3.1-2.2 4.5-3.5 5.3-4.5 9-10.8 10.2-17.7.1-.9.2-1.8.3-2.8v-1.5c-.9-3.5-6.9-6.1-38.4-9.1-11.1-1.8-20-10.1-22.5-21.1v.1c-.4 1.1-.9 2.3-1.3 3.5.4-1.2.8-2.3 1.3-3.5v-.2c6-15.7 16.8-29.1 30.8-38.3.8-.7-3.2.2-2.4-.5 2.7-1.3 5.4-2.5 8.2-3.5 1.4-.6-6-3.4-12.6-2.7-4 .2-8 1.2-11.7 2.8 1.6-1.3 6.2-3.1 5.1-3.1-8.4 1.6-16.5 4.7-23.9 9 0-.8.1-1.5.5-2.2-5.9 2.5-11 6.5-15 11.5.1-.9.2-1.8.2-2.7-2.7 2-5.2 4.3-7.3 6.9l-.1.1c-17.4-6.7-36.3-8.3-54.6-4.7l-.2-.1h.2c-3.8-3.1-7.1-6.7-9.7-10.9l-.2.1-.4-.2c-1.2-1.8-2.4-3.8-3.7-6-.9-1.6-1.8-3.4-2.7-5.2 0-.1-.1-.2-.2-.2-.4 0-.6 1.7-.9 1.3v-.1c-3.2-8.3-4.7-17.2-4.4-26.2l-.2.1c-5.1 3.5-9 8.6-11.1 14.5-.9 2.1-1.6 3.3-2.2 4.5v-.5c.1-1.1.6-3.3.5-3.1-.1.2-.2.3-.3.4-1.5 1.7-2.9 3.7-3.9 5.8-.9 1.9-1.7 3.9-2.3 5.9-.1.3 0-.3 0-1s.1-2 0-1.7l-.3.7c-6.7 14.9-10.9 30.8-12.4 47.1-.4 2.8-.6 5.6-.5 8.3v.2c-4.8 5.2-9 11-12.7 17.1-12.1 20.4-21.1 42.5-26.8 65.6 4-8.8 8.8-17.2 14.3-25.1C5.5 228.5 0 257.4 0 286.6c1.8-8.6 4.2-17 7-25.3-1.7 34.5 4.9 68.9 19.4 100.3 19.4 43.5 51.6 80 92.3 104.7 16.6 11.2 34.7 19.9 53.8 25.8 2.5.9 5.1 1.8 7.7 2.7-.8-.3-1.6-.7-2.4-1 22.6 6.8 46.2 10.3 69.8 10.3 83.7 0 111.3-31.9 113.8-35 4.1-3.7 7.5-8.2 9.9-13.3 1.6-.7 3.2-1.4 4.9-2.1l1-.5 1.9-.9c12.6-5.9 24.5-13.4 35.3-22.1 16.3-11.7 27.9-28.7 32.9-48.1 3-7.1 3.1-15 .4-22.2.9-1.4 1.7-2.8 2.7-4.3 18-28.9 28.2-61.9 29.6-95.9v-2.8c0-7.3-.6-14.5-1.9-21.6z"], + "first-order": [448, 512, [], "f2b0", "M12.9 229.2c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4h-.2zM224 96.6c-7.1 0-14.6.6-21.4 1.7l3.7 67.4-22-64c-14.3 3.7-27.7 9.4-40 16.6l29.4 61.4-45.1-50.9c-11.4 8.9-21.7 19.1-30.6 30.9l50.6 45.4-61.1-29.7c-7.1 12.3-12.9 25.7-16.6 40l64.3 22.6-68-4c-.9 7.1-1.4 14.6-1.4 22s.6 14.6 1.4 21.7l67.7-4-64 22.6c3.7 14.3 9.4 27.7 16.6 40.3l61.1-29.7L97.7 352c8.9 11.7 19.1 22.3 30.9 30.9l44.9-50.9-29.5 61.4c12.3 7.4 25.7 13.1 40 16.9l22.3-64.6-4 68c7.1 1.1 14.6 1.7 21.7 1.7 7.4 0 14.6-.6 21.7-1.7l-4-68.6 22.6 65.1c14.3-4 27.7-9.4 40-16.9L274.9 332l44.9 50.9c11.7-8.9 22-19.1 30.6-30.9l-50.6-45.1 61.1 29.4c7.1-12.3 12.9-25.7 16.6-40.3l-64-22.3 67.4 4c1.1-7.1 1.4-14.3 1.4-21.7s-.3-14.9-1.4-22l-67.7 4 64-22.3c-3.7-14.3-9.1-28-16.6-40.3l-60.9 29.7 50.6-45.4c-8.9-11.7-19.1-22-30.6-30.9l-45.1 50.9 29.4-61.1c-12.3-7.4-25.7-13.1-40-16.9L241.7 166l4-67.7c-7.1-1.2-14.3-1.7-21.7-1.7zM443.4 128v256L224 512 4.6 384V128L224 0l219.4 128zm-17.1 10.3L224 20.9 21.7 138.3v235.1L224 491.1l202.3-117.7V138.3zM224 37.1l187.7 109.4v218.9L224 474.9 36.3 365.4V146.6L224 37.1zm0 50.9c-92.3 0-166.9 75.1-166.9 168 0 92.6 74.6 167.7 166.9 167.7 92 0 166.9-75.1 166.9-167.7 0-92.9-74.9-168-166.9-168z"], + "first-order-alt": [496, 512, [], "f50a", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 488.21C115.34 496.21 7.79 388.66 7.79 256S115.34 15.79 248 15.79 488.21 123.34 488.21 256 380.66 496.21 248 496.21zm0-459.92C126.66 36.29 28.29 134.66 28.29 256S126.66 475.71 248 475.71 467.71 377.34 467.71 256 369.34 36.29 248 36.29zm0 431.22c-116.81 0-211.51-94.69-211.51-211.51S131.19 44.49 248 44.49 459.51 139.19 459.51 256 364.81 467.51 248 467.51zm186.23-162.98a191.613 191.613 0 0 1-20.13 48.69l-74.13-35.88 61.48 54.82a193.515 193.515 0 0 1-37.2 37.29l-54.8-61.57 35.88 74.27a190.944 190.944 0 0 1-48.63 20.23l-27.29-78.47 4.79 82.93c-8.61 1.18-17.4 1.8-26.33 1.8s-17.72-.62-26.33-1.8l4.76-82.46-27.15 78.03a191.365 191.365 0 0 1-48.65-20.2l35.93-74.34-54.87 61.64a193.85 193.85 0 0 1-37.22-37.28l61.59-54.9-74.26 35.93a191.638 191.638 0 0 1-20.14-48.69l77.84-27.11-82.23 4.76c-1.16-8.57-1.78-17.32-1.78-26.21 0-9 .63-17.84 1.82-26.51l82.38 4.77-77.94-27.16a191.726 191.726 0 0 1 20.23-48.67l74.22 35.92-61.52-54.86a193.85 193.85 0 0 1 37.28-37.22l54.76 61.53-35.83-74.17a191.49 191.49 0 0 1 48.65-20.13l26.87 77.25-4.71-81.61c8.61-1.18 17.39-1.8 26.32-1.8s17.71.62 26.32 1.8l-4.74 82.16 27.05-77.76c17.27 4.5 33.6 11.35 48.63 20.17l-35.82 74.12 54.72-61.47a193.13 193.13 0 0 1 37.24 37.23l-61.45 54.77 74.12-35.86a191.515 191.515 0 0 1 20.2 48.65l-77.81 27.1 82.24-4.75c1.19 8.66 1.82 17.5 1.82 26.49 0 8.88-.61 17.63-1.78 26.19l-82.12-4.75 77.72 27.09z"], + "firstdraft": [384, 512, [], "f3a1", "M384 192h-64v128H192v128H0v-25.6h166.4v-128h128v-128H384V192zm-25.6 38.4v128h-128v128H64V512h192V384h128V230.4h-25.6zm25.6 192h-89.6V512H320v-64h64v-25.6zM0 0v384h128V256h128V128h128V0H0z"], + "flickr": [448, 512, [], "f16e", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5zm159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5z"], + "flipboard": [448, 512, [], "f44d", "M0 32v448h448V32H0zm358.4 179.2h-89.6v89.6h-89.6v89.6H89.6V121.6h268.8v89.6z"], + "fly": [384, 512, [], "f417", "M197.8 427.8c12.9 11.7 33.7 33.3 33.2 50.7 0 .8-.1 1.6-.1 2.5-1.8 19.8-18.8 31.1-39.1 31-25-.1-39.9-16.8-38.7-35.8 1-16.2 20.5-36.7 32.4-47.6 2.3-2.1 2.7-2.7 5.6-3.6 3.4 0 3.9.3 6.7 2.8zM331.9 67.3c-16.3-25.7-38.6-40.6-63.3-52.1C243.1 4.5 214-.2 192 0c-44.1 0-71.2 13.2-81.1 17.3C57.3 45.2 26.5 87.2 28 158.6c7.1 82.2 97 176 155.8 233.8 1.7 1.6 4.5 4.5 6.2 5.1l3.3.1c2.1-.7 1.8-.5 3.5-2.1 52.3-49.2 140.7-145.8 155.9-215.7 7-39.2 3.1-72.5-20.8-112.5zM186.8 351.9c-28-51.1-65.2-130.7-69.3-189-3.4-47.5 11.4-131.2 69.3-136.7v325.7zM328.7 180c-16.4 56.8-77.3 128-118.9 170.3C237.6 298.4 275 217 277 158.4c1.6-45.9-9.8-105.8-48-131.4 88.8 18.3 115.5 98.1 99.7 153z"], + "font-awesome": [448, 512, [], "f2b4", "M397.8 32H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-45.4 284.3c0 4.2-3.6 6-7.8 7.8-16.7 7.2-34.6 13.7-53.8 13.7-26.9 0-39.4-16.7-71.7-16.7-23.3 0-47.8 8.4-67.5 17.3-1.2.6-2.4.6-3.6 1.2V385c0 1.8 0 3.6-.6 4.8v1.2c-2.4 8.4-10.2 14.3-19.1 14.3-11.3 0-20.3-9-20.3-20.3V166.4c-7.8-6-13.1-15.5-13.1-26.3 0-18.5 14.9-33.5 33.5-33.5 18.5 0 33.5 14.9 33.5 33.5 0 10.8-4.8 20.3-13.1 26.3v18.5c1.8-.6 3.6-1.2 5.4-2.4 18.5-7.8 40.6-14.3 61.5-14.3 22.7 0 40.6 6 60.9 13.7 4.2 1.8 8.4 2.4 13.1 2.4 22.7 0 47.8-16.1 53.8-16.1 4.8 0 9 3.6 9 7.8v140.3z"], + "font-awesome-alt": [448, 512, [], "f35c", "M397.8 67.8c7.8 0 14.3 6.6 14.3 14.3v347.6c0 7.8-6.6 14.3-14.3 14.3H50.2c-7.8 0-14.3-6.6-14.3-14.3V82.2c0-7.8 6.6-14.3 14.3-14.3h347.6m0-35.9H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-58.5 139.2c-6 0-29.9 15.5-52.6 15.5-4.2 0-8.4-.6-12.5-2.4-19.7-7.8-37-13.7-59.1-13.7-20.3 0-41.8 6.6-59.7 13.7-1.8.6-3.6 1.2-4.8 1.8v-17.9c7.8-6 12.5-14.9 12.5-25.7 0-17.9-14.3-32.3-32.3-32.3s-32.3 14.3-32.3 32.3c0 10.2 4.8 19.7 12.5 25.7v212.1c0 10.8 9 19.7 19.7 19.7 9 0 16.1-6 18.5-13.7V385c.6-1.8.6-3 .6-4.8V336c1.2 0 2.4-.6 3-1.2 19.7-8.4 43-16.7 65.7-16.7 31.1 0 43 16.1 69.3 16.1 18.5 0 36.4-6.6 52-13.7 4.2-1.8 7.2-3.6 7.2-7.8V178.3c1.8-4.1-2.3-7.1-7.7-7.1z"], + "font-awesome-flag": [448, 512, [], "f425", "M444.373 359.424c0 7.168-6.144 10.24-13.312 13.312-28.672 12.288-59.392 23.552-92.16 23.552-46.08 0-67.584-28.672-122.88-28.672-39.936 0-81.92 14.336-115.712 29.696-2.048 1.024-4.096 1.024-6.144 2.048v77.824c0 21.405-16.122 34.816-33.792 34.816-19.456 0-34.816-15.36-34.816-34.816V102.4C12.245 92.16 3.029 75.776 3.029 57.344 3.029 25.6 28.629 0 60.373 0s57.344 25.6 57.344 57.344c0 18.432-8.192 34.816-22.528 45.056v31.744c4.124-1.374 58.768-28.672 114.688-28.672 65.27 0 97.676 27.648 126.976 27.648 38.912 0 81.92-27.648 92.16-27.648 8.192 0 15.36 6.144 15.36 13.312v240.64z"], + "font-awesome-logo-full": [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"], + "fonticons": [448, 512, [], "f280", "M0 32v448h448V32H0zm167.4 196h67.4l-11.1 37.3H168v112.9c0 5.8-2 6.7 3.2 7.3l43.5 4.1v25.1H84V389l21.3-2c5.2-.6 6.7-2.3 6.7-7.9V267.7c0-2.3-2.9-2.3-5.8-2.3H84V228h28v-21c0-49.6 26.5-70 77.3-70 34.1 0 64.7 8.2 64.7 52.8l-50.7 6.1c.3-18.7-4.4-23-16.3-23-18.4 0-19 9.9-19 27.4v23.3c0 2.4-3.5 4.4-.6 4.4zM364 414.7H261.3v-25.1l20.4-2.6c5.2-.6 7.6-1.7 7.6-7.3V271.8c0-4.1-2.9-6.7-6.7-7.9l-24.2-6.4 6.7-29.5h80.2v151.7c0 5.8-2.6 6.4 2.9 7.3l15.7 2.6v25.1zm-21.9-255.5l9 33.2-7.3 7.3-31.2-16.6-31.2 16.6-7.3-7.3 9-33.2-21.8-24.2 3.5-9.6h27.7l15.5-28h9.3l15.5 28h27.7l3.5 9.6-21.9 24.2z"], + "fonticons-fi": [384, 512, [], "f3a2", "M114.4 224h92.4l-15.2 51.2h-76.4V433c0 8-2.8 9.2 4.4 10l59.6 5.6V483H0v-35.2l29.2-2.8c7.2-.8 9.2-3.2 9.2-10.8V278.4c0-3.2-4-3.2-8-3.2H0V224h38.4v-28.8c0-68 36.4-96 106-96 46.8 0 88.8 11.2 88.8 72.4l-69.6 8.4c.4-25.6-6-31.6-22.4-31.6-25.2 0-26 13.6-26 37.6v32c0 3.2-4.8 6-.8 6zM384 483H243.2v-34.4l28-3.6c7.2-.8 10.4-2.4 10.4-10V287c0-5.6-4-9.2-9.2-10.8l-33.2-8.8 9.2-40.4h110v208c0 8-3.6 8.8 4 10l21.6 3.6V483zm-30-347.2l12.4 45.6-10 10-42.8-22.8-42.8 22.8-10-10 12.4-45.6-30-36.4 4.8-10h38L307.2 51H320l21.2 38.4h38l4.8 13.2-30 33.2z"], + "fort-awesome": [512, 512, [], "f286", "M489.2 287.9h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6V146.2c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-6-8-4.6-11.7-4.6v-38c8.3-2 17.1-3.4 25.7-3.4 10.9 0 20.9 4.3 31.4 4.3 4.6 0 27.7-1.1 27.7-8v-60c0-2.6-2-4.6-4.6-4.6-5.1 0-15.1 4.3-24 4.3-9.7 0-20.9-4.3-32.6-4.3-8 0-16 1.1-23.7 2.9v-4.9c5.4-2.6 9.1-8.3 9.1-14.3 0-20.7-31.4-20.8-31.4 0 0 6 3.7 11.7 9.1 14.3v111.7c-3.7 0-11.7-1.4-11.7 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32H128v-32c0-2.6-2-4.6-4.6-4.6H96c-2.6 0-4.6 2-4.6 4.6v178.3H54.8v-32c0-2.6-2-4.6-4.6-4.6H22.8c-2.6 0-4.6 2-4.6 4.6V512h182.9v-96c0-72.6 109.7-72.6 109.7 0v96h182.9V292.5c.1-2.6-1.9-4.6-4.5-4.6zm-288.1-4.5c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64zm146.4 0c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64z"], + "fort-awesome-alt": [512, 512, [], "f3a3", "M211.7 241.1v51.7c0 2.1-1.6 3.7-3.7 3.7h-22.2c-2.1 0-3.7-1.6-3.7-3.7v-51.7c0-2.1 1.6-3.7 3.7-3.7H208c2.1 0 3.7 1.6 3.7 3.7zm114.5-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7h22.2c2.1 0 3.7-1.6 3.7-3.7v-51.7c-.1-2.1-1.7-3.7-3.7-3.7zm-29.1 263.2c-.9.1-1.7.3-2.6.4-1 .2-2.1.3-3.1.5-.9.1-1.8.3-2.8.4-1 .1-2 .3-3 .4-1 .1-2 .2-2.9.3-1 .1-1.9.2-2.9.3-1 .1-2.1.2-3.1.3-.9.1-1.8.2-2.7.2-1.1.1-2.3.1-3.4.2-.8 0-1.7.1-2.5.1-1.3.1-2.6.1-3.9.1-.7 0-1.4.1-2.1.1-2 0-4 .1-6 .1s-4 0-6-.1c-.7 0-1.4 0-2.1-.1-1.3 0-2.6-.1-3.9-.1-.8 0-1.7-.1-2.5-.1-1.1-.1-2.3-.1-3.4-.2-.9-.1-1.8-.1-2.7-.2-1-.1-2.1-.2-3.1-.3-1-.1-1.9-.2-2.9-.3-1-.1-2-.2-2.9-.3-1-.1-2-.2-3-.4-.9-.1-1.8-.3-2.8-.4-1-.1-2.1-.3-3.1-.5-.9-.1-1.7-.3-2.6-.4-65.6-10.9-122.5-47.7-160-99.4-.2-.2-.3-.5-.5-.7-.8-1.1-1.6-2.2-2.3-3.3-.3-.4-.6-.8-.8-1.2-.7-1.1-1.4-2.1-2.1-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.4-2.1-2-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.3-2.2-2-3.3-.2-.4-.5-.8-.7-1.2-2.4-4-4.6-8.1-6.8-12.2-.1-.2-.2-.3-.3-.5-.6-1.1-1.1-2.2-1.7-3.3-.3-.6-.6-1.1-.8-1.7-.5-1-1-2.1-1.5-3.1-.3-.7-.6-1.3-.9-2-.5-1-.9-2-1.4-3l-.9-2.1c-.4-1-.9-2-1.3-3-.3-.7-.6-1.5-.9-2.2l-1.2-3c-.3-.8-.6-1.5-.9-2.3-.4-1-.8-2-1.1-3-.3-.9-.6-1.8-1-2.8-.6-1.6-1.1-3.3-1.7-4.9-.3-.9-.6-1.8-.9-2.8-.3-.9-.5-1.8-.8-2.7-.3-.9-.6-1.9-.8-2.8-.3-.9-.5-1.8-.8-2.7-.3-1-.5-1.9-.8-2.9-.2-.9-.5-1.8-.7-2.7-.3-1-.5-2-.7-3-.2-.9-.4-1.7-.6-2.6-.2-1.1-.5-2.2-.7-3.2-.2-.8-.3-1.6-.5-2.4-.3-1.3-.5-2.7-.8-4-.1-.6-.2-1.1-.3-1.7l-.9-5.7c-.1-.6-.2-1.3-.3-1.9-.2-1.3-.4-2.6-.5-3.9-.1-.8-.2-1.5-.3-2.3-.1-1.2-.3-2.4-.4-3.6-.1-.8-.2-1.6-.2-2.4-.1-1.2-.2-2.4-.3-3.5-.1-.8-.1-1.6-.2-2.4-.1-1.2-.2-2.4-.2-3.7 0-.8-.1-1.5-.1-2.3-.1-1.3-.1-2.7-.2-4 0-.7 0-1.3-.1-2 0-2-.1-4-.1-6 0-53.5 16.9-103 45.8-143.6 2.3-3.2 4.7-6.4 7.1-9.5 4.9-6.2 10.1-12.3 15.6-18 2.7-2.9 5.5-5.7 8.4-8.4 2.9-2.7 5.8-5.4 8.8-8 4.5-3.9 9.1-7.6 13.9-11.2 1.6-1.2 3.2-2.4 4.8-3.5C140 34.2 171.7 20.1 206 13c16.1-3.3 32.9-5 50-5s33.8 1.7 50 5c34.3 7 66 21.1 93.6 40.7 1.6 1.2 3.2 2.3 4.8 3.5 4.8 3.6 9.4 7.3 13.9 11.2 12 10.4 23 21.9 32.8 34.4 2.5 3.1 4.8 6.3 7.1 9.5C487.1 153 504 202.5 504 256c0 2 0 4-.1 6 0 .7 0 1.3-.1 2 0 1.3-.1 2.7-.2 4 0 .8-.1 1.5-.1 2.3-.1 1.2-.1 2.4-.2.7-.1.8-.1 1.6-.2 2.4-.1 1.2-.2 2.4-.3 3.5-.1.8-.2 1.6-.2 2.4-.1 1.2-.3 2.4-.4 3.6-.1.8-.2 1.5-.3 2.3-.2 1.3-.4 2.6-.5 3.9-.1.6-.2 1.3-.3 1.9l-.9 5.7c-.1.6-.2 1.1-.3 1.7-.2 1.3-.5 2.7-.8 4-.2.8-.3 1.6-.5 2.4-.2 1.1-.5 2.2-.7 3.2-.2.9-.4 1.7-.6 2.6-.2 1-.5 2-.7 3-.2.9-.5 1.8-.7 2.7-.3 1-.5 1.9-.8 2.9-.2.9-.5 1.8-.8 2.7-.3.9-.6 1.9-.8 2.8-.3.9-.5 1.8-.8 2.7-.3.9-.6 1.8-.9 2.8-.5 1.6-1.1 3.3-1.7 4.9-.3.9-.6 1.8-1 2.8-.4 1-.7 2-1.1 3-.3.8-.6 1.5-.9 2.3l-1.2 3c-.3.7-.6 1.5-.9 2.2-.4 1-.8 2-1.3 3l-.9 2.1c-.4 1-.9 2-1.4 3-.3.7-.6 1.3-.9 2-.5 1-1 2.1-1.5 3.1-.3.6-.6 1.1-.8 1.7-.6 1.1-1.1 2.2-1.7 3.3-.1.2-.2.3-.3.5-2.2 4.1-4.4 8.2-6.8 12.2-.2.4-.5.8-.7 1.2-.7 1.1-1.3 2.2-2 3.3-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2 3.2-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2.1 3.2-.3.4-.6.8-.8 1.2-.8 1.1-1.5 2.2-2.3 3.3-.2.2-.3.5-.5.7-37.6 54.7-94.5 91.4-160.1 102.4zm117.3-86.2c13-13 24.2-27.4 33.6-42.9v-71.3c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7V326h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-4.8-6.5-3.7-9.5-3.7v-30.7c6.7-1.6 13.8-2.8 20.8-2.8 8.8 0 16.8 3.5 25.4 3.5 3.7 0 22.4-.9 22.4-6.5V93.4c0-2.1-1.6-3.7-3.7-3.7-4.2 0-12.2 3.5-19.4 3.5-7.9 0-16.9-3.5-26.3-3.5-6.5 0-12.9.9-19.2 2.3v-3.9c4.4-2.1 7.4-6.7 7.4-11.5 0-16.8-25.4-16.8-25.4 0 0 4.8 3 9.5 7.4 11.5v90.2c-3 0-9.5-1.1-9.5 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v144H93.5v-25.8c0-2.1-1.6-3.7-3.7-3.7H67.7c-2.1 0-3.7 1.6-3.7 3.7v71.3c9.4 15.5 20.6 29.9 33.6 42.9 20.6 20.6 44.5 36.7 71.2 48 13.9 5.9 28.2 10.3 42.9 13.2v-75.8c0-58.6 88.6-58.6 88.6 0v75.8c14.7-2.9 29-7.4 42.9-13.2 26.7-11.3 50.6-27.4 71.2-48"], + "forumbee": [448, 512, [], "f211", "M5.8 309.7C2 292.7 0 275.5 0 258.3 0 135 99.8 35 223.1 35c16.6 0 33.3 2 49.3 5.5C149 87.5 51.9 186 5.8 309.7zm392.9-189.2C385 103 369 87.8 350.9 75.2c-149.6 44.3-266.3 162.1-309.7 312 12.5 18.1 28 35.6 45.2 49 43.1-151.3 161.2-271.7 312.3-315.7zm15.8 252.7c15.2-25.1 25.4-53.7 29.5-82.8-79.4 42.9-145 110.6-187.6 190.3 30-4.4 58.9-15.3 84.6-31.3 35 13.1 70.9 24.3 107 33.6-9.3-36.5-20.4-74.5-33.5-109.8zm29.7-145.5c-2.6-19.5-7.9-38.7-15.8-56.8C290.5 216.7 182 327.5 137.1 466c18.1 7.6 37 12.5 56.6 15.2C240 367.1 330.5 274.4 444.2 227.7z"], + "foursquare": [368, 512, [], "f180", "M323.1 3H49.9C12.4 3 0 31.3 0 49.1v433.8c0 20.3 12.1 27.7 18.2 30.1 6.2 2.5 22.8 4.6 32.9-7.1C180 356.5 182.2 354 182.2 354c3.1-3.4 3.4-3.1 6.8-3.1h83.4c35.1 0 40.6-25.2 44.3-39.7l48.6-243C373.8 25.8 363.1 3 323.1 3zm-16.3 73.8l-11.4 59.7c-1.2 6.5-9.5 13.2-16.9 13.2H172.1c-12 0-20.6 8.3-20.6 20.3v13c0 12 8.6 20.6 20.6 20.6h90.4c8.3 0 16.6 9.2 14.8 18.2-1.8 8.9-10.5 53.8-11.4 58.8-.9 4.9-6.8 13.5-16.9 13.5h-73.5c-13.5 0-17.2 1.8-26.5 12.6 0 0-8.9 11.4-89.5 108.3-.9.9-1.8.6-1.8-.3V75.9c0-7.7 6.8-16.6 16.6-16.6h219c8.2 0 15.6 7.7 13.5 17.5z"], + "free-code-camp": [576, 512, [], "f2c5", "M69.3 144.5c-41 68.5-36.4 163 1 227C92.5 409.7 120 423.9 120 438c0 6.8-6 13-12.8 13C87.7 451 8 375.5 8 253.2c0-111.5 78-186 97.1-186 6 0 14.9 4.8 14.9 11.1 0 12.7-28.3 28.6-50.7 66.2zm195.8 213.8c4.5 1.8 12.3 5.2 12.3-1.2 0-2.7-2.2-2.9-4.3-3.6-8.5-3.4-14-7.7-19.1-15.2-8.2-12.1-10.1-24.2-10.1-38.6 0-32.1 44.2-37.9 44.2-70 0-12.3-7.7-15.9-7.7-19.3 0-2.2.7-2.2 2.9-2.2 8 0 19.1 13.3 22.5 19.8 2.2 4.6 2.4 6 2.4 11.1 0 7-.7 14.2-.7 21.3 0 27 31.9 19.8 31.9 6.8 0-6-3.6-11.6-3.6-17.4 0-.7 0-1.2.7-1.2 3.4 0 9.4 7.7 11.1 10.1 5.8 8.9 8.5 20.8 8.5 31.4 0 32.4-29.5 49-29.5 56 0 1 2.9 7.7 12.1 1.9 29.7-15.1 53.1-47.6 53.1-89.8 0-33.6-8.7-57.7-32.1-82.6-3.9-4.1-16.4-16.9-22.5-16.9-8.2 0 7.2 18.6 7.2 31.2 0 7.2-4.8 12.3-12.3 12.3-11.6 0-14.5-25.4-15.9-33.3-5.8-33.8-12.8-58.2-46.4-74.1-10.4-5-36.5-11.8-36.5-2.2 0 2.4 2.7 4.1 4.6 5.1 9.2 5.6 19.6 21.4 19.6 38.2 0 46.1-57.7 88.2-57.7 136.2-.2 40.3 28.1 72.6 65.3 86.2zM470.4 67c-6 0-14.4 6.5-14.4 12.6 0 8.7 12.1 19.6 17.6 25.4 81.6 85.1 78.6 214.3 17.6 291-7 8.9-35.3 35.3-35.3 43.5 0 5.1 8.2 11.4 13.2 11.4 25.4 0 98.8-80.8 98.8-185.7C568 145.9 491.8 67 470.4 67zm-42.3 323.1H167c-9.4 0-15.5 7.5-15.5 16.4 0 8.5 7 15.5 15.5 15.5h261.1c9.4 0 11.9-7.5 11.9-16.4 0-8.5-3.5-15.5-11.9-15.5z"], + "freebsd": [448, 512, [], "f3a4", "M303.7 96.2c11.1-11.1 115.5-77 139.2-53.2 23.7 23.7-42.1 128.1-53.2 139.2-11.1 11.1-39.4.9-63.1-22.9-23.8-23.7-34.1-52-22.9-63.1zM109.9 68.1C73.6 47.5 22 24.6 5.6 41.1c-16.6 16.6 7.1 69.4 27.9 105.7 18.5-32.2 44.8-59.3 76.4-78.7zM406.7 174c3.3 11.3 2.7 20.7-2.7 26.1-20.3 20.3-87.5-27-109.3-70.1-18-32.3-11.1-53.4 14.9-48.7 5.7-3.6 12.3-7.6 19.6-11.6-29.8-15.5-63.6-24.3-99.5-24.3-119.1 0-215.6 96.5-215.6 215.6 0 119 96.5 215.6 215.6 215.6S445.3 380.1 445.3 261c0-38.4-10.1-74.5-27.7-105.8-3.9 7-7.6 13.3-10.9 18.8z"], + "fulcrum": [269, 512, [], "f50b", "M70.75 164.14l-35.38 43.55L0 164.14l35.38-43.55 35.37 43.55zM119.23 0L98.69 198.18 47.72 256l50.98 57.82L119.23 512V300.89L78.15 256l41.08-44.89V0zm79.67 164.14l35.38 43.55 35.38-43.55-35.38-43.55-35.38 43.55zm-48.48 46.97L191.5 256l-41.08 44.89V512l20.54-198.18L221.94 256l-50.98-57.82L150.42 0v211.11z"], + "galactic-republic": [496, 512, [], "f50c", "M248 504C111.25 504 0 392.75 0 256S111.25 8 248 8s248 111.25 248 248-111.25 248-248 248zm0-479.47C120.37 24.53 16.53 128.37 16.53 256S120.37 487.47 248 487.47 479.47 383.63 479.47 256 375.63 24.53 248 24.53zm27.62 21.81v24.62a185.933 185.933 0 0 1 83.57 34.54l17.39-17.36c-28.75-22.06-63.3-36.89-100.96-41.8zm-55.37.07c-37.64 4.94-72.16 19.8-100.88 41.85l17.28 17.36h.08c24.07-17.84 52.55-30.06 83.52-34.67V46.41zm12.25 50.17v82.87c-10.04 2.03-19.42 5.94-27.67 11.42l-58.62-58.59-21.93 21.93 58.67 58.67c-5.47 8.23-9.45 17.59-11.47 27.62h-82.9v31h82.9c2.02 10.02 6.01 19.31 11.47 27.54l-58.67 58.69 21.93 21.93 58.62-58.62a77.873 77.873 0 0 0 27.67 11.47v82.9h31v-82.9c10.05-2.03 19.37-6.06 27.62-11.55l58.67 58.69 21.93-21.93-58.67-58.69c5.46-8.23 9.47-17.52 11.5-27.54h82.87v-31h-82.87c-2.02-10.02-6.03-19.38-11.5-27.62l58.67-58.67-21.93-21.93-58.67 58.67c-8.25-5.49-17.57-9.47-27.62-11.5V96.58h-31zm183.24 30.72l-17.36 17.36a186.337 186.337 0 0 1 34.67 83.67h24.62c-4.95-37.69-19.83-72.29-41.93-101.03zm-335.55.13c-22.06 28.72-36.91 63.26-41.85 100.91h24.65c4.6-30.96 16.76-59.45 34.59-83.52l-17.39-17.39zM38.34 283.67c4.92 37.64 19.75 72.18 41.8 100.9l17.36-17.39c-17.81-24.07-29.92-52.57-34.51-83.52H38.34zm394.7 0c-4.61 30.99-16.8 59.5-34.67 83.6l17.36 17.36c22.08-28.74 36.98-63.29 41.93-100.96h-24.62zM136.66 406.38l-17.36 17.36c28.73 22.09 63.3 36.98 100.96 41.93v-24.64c-30.99-4.63-59.53-16.79-83.6-34.65zm222.53.05c-24.09 17.84-52.58 30.08-83.57 34.67v24.57c37.67-4.92 72.21-19.79 100.96-41.85l-17.31-17.39h-.08z"], + "galactic-senate": [512, 512, [], "f50d", "M249.86 33.48v26.07C236.28 80.17 226 168.14 225.39 274.9c11.74-15.62 19.13-33.33 19.13-48.24v-16.88c-.03-5.32.75-10.53 2.19-15.65.65-2.14 1.39-4.08 2.62-5.82 1.23-1.75 3.43-3.79 6.68-3.79 3.24 0 5.45 2.05 6.68 3.79 1.23 1.75 1.97 3.68 2.62 5.82 1.44 5.12 2.22 10.33 2.19 15.65v16.88c0 14.91 7.39 32.62 19.13 48.24-.63-106.76-10.91-194.73-24.49-215.35V33.48h-12.28zm-26.34 147.77c-9.52 2.15-18.7 5.19-27.46 9.08 8.9 16.12 9.76 32.64 1.71 37.29-8 4.62-21.85-4.23-31.36-19.82-11.58 8.79-21.88 19.32-30.56 31.09 14.73 9.62 22.89 22.92 18.32 30.66-4.54 7.7-20.03 7.14-35.47-.96-5.78 13.25-9.75 27.51-11.65 42.42 9.68.18 18.67 2.38 26.18 6.04 17.78-.3 32.77-1.96 40.49-4.22 5.55-26.35 23.02-48.23 46.32-59.51.73-25.55 1.88-49.67 3.48-72.07zm64.96 0c1.59 22.4 2.75 46.52 3.47 72.07 23.29 11.28 40.77 33.16 46.32 59.51 7.72 2.26 22.71 3.92 40.49 4.22 7.51-3.66 16.5-5.85 26.18-6.04-1.9-14.91-5.86-29.17-11.65-42.42-15.44 8.1-30.93 8.66-35.47.96-4.57-7.74 3.6-21.05 18.32-30.66-8.68-11.77-18.98-22.3-30.56-31.09-9.51 15.59-23.36 24.44-31.36 19.82-8.05-4.65-7.19-21.16 1.71-37.29a147.49 147.49 0 0 0-27.45-9.08zm-32.48 8.6c-3.23 0-5.86 8.81-6.09 19.93h-.05v16.88c0 41.42-49.01 95.04-93.49 95.04-52 0-122.75-1.45-156.37 29.17v2.51c9.42 17.12 20.58 33.17 33.18 47.97C45.7 380.26 84.77 360.4 141.2 360c45.68 1.02 79.03 20.33 90.76 40.87.01.01-.01.04 0 .05 7.67 2.14 15.85 3.23 24.04 3.21 8.19.02 16.37-1.07 24.04-3.21.01-.01-.01-.04 0-.05 11.74-20.54 45.08-39.85 90.76-40.87 56.43.39 95.49 20.26 108.02 41.35 12.6-14.8 23.76-30.86 33.18-47.97v-2.51c-33.61-30.62-104.37-29.17-156.37-29.17-44.48 0-93.49-53.62-93.49-95.04v-16.88h-.05c-.23-11.12-2.86-19.93-6.09-19.93zm0 96.59c22.42 0 40.6 18.18 40.6 40.6s-18.18 40.65-40.6 40.65-40.6-18.23-40.6-40.65c0-22.42 18.18-40.6 40.6-40.6zm0 7.64c-18.19 0-32.96 14.77-32.96 32.96S237.81 360 256 360s32.96-14.77 32.96-32.96-14.77-32.96-32.96-32.96zm0 6.14c14.81 0 26.82 12.01 26.82 26.82s-12.01 26.82-26.82 26.82-26.82-12.01-26.82-26.82 12.01-26.82 26.82-26.82zm-114.8 66.67c-10.19.07-21.6.36-30.5 1.66.43 4.42 1.51 18.63 7.11 29.76 9.11-2.56 18.36-3.9 27.62-3.9 41.28.94 71.48 34.35 78.26 74.47l.11 4.7c10.4 1.91 21.19 2.94 32.21 2.94 11.03 0 21.81-1.02 32.21-2.94l.11-4.7c6.78-40.12 36.98-73.53 78.26-74.47 9.26 0 18.51 1.34 27.62 3.9 5.6-11.13 6.68-25.34 7.11-29.76-8.9-1.3-20.32-1.58-30.5-1.66-18.76.42-35.19 4.17-48.61 9.67-12.54 16.03-29.16 30.03-49.58 33.07-.09.02-.17.04-.27.05-.05.01-.11.04-.16.05-5.24 1.07-10.63 1.6-16.19 1.6-5.55 0-10.95-.53-16.19-1.6-.05-.01-.11-.04-.16-.05-.1-.02-.17-.04-.27-.05-20.42-3.03-37.03-17.04-49.58-33.07-13.42-5.49-29.86-9.25-48.61-9.67z"], + "get-pocket": [448, 512, [], "f265", "M407.6 64h-367C18.5 64 0 82.5 0 104.6v135.2C0 364.5 99.7 464 224.2 464c124 0 223.8-99.5 223.8-224.2V104.6c0-22.4-17.7-40.6-40.4-40.6zm-162 268.5c-12.4 11.8-31.4 11.1-42.4 0C89.5 223.6 88.3 227.4 88.3 209.3c0-16.9 13.8-30.7 30.7-30.7 17 0 16.1 3.8 105.2 89.3 90.6-86.9 88.6-89.3 105.5-89.3 16.9 0 30.7 13.8 30.7 30.7 0 17.8-2.9 15.7-114.8 123.2z"], + "gg": [512, 512, [], "f260", "M179.2 230.4l102.4 102.4-102.4 102.4L0 256 179.2 76.8l44.8 44.8-25.6 25.6-19.2-19.2-128 128 128 128 51.5-51.5-77.1-76.5 25.6-25.6zM332.8 76.8L230.4 179.2l102.4 102.4 25.6-25.6-77.1-76.5 51.5-51.5 128 128-128 128-19.2-19.2-25.6 25.6 44.8 44.8L512 256 332.8 76.8z"], + "gg-circle": [512, 512, [], "f261", "M257 8C120 8 9 119 9 256s111 248 248 248 248-111 248-248S394 8 257 8zm-49.5 374.8L81.8 257.1l125.7-125.7 35.2 35.4-24.2 24.2-11.1-11.1-77.2 77.2 77.2 77.2 26.6-26.6-53.1-52.9 24.4-24.4 77.2 77.2-75 75.2zm99-2.2l-35.2-35.2 24.1-24.4 11.1 11.1 77.2-77.2-77.2-77.2-26.5 26.5 53.1 52.9-24.4 24.4-77.2-77.2 75-75L432.2 255 306.5 380.6z"], + "git": [448, 512, [], "f1d3", "M18.8 221.7c0 25.3 16.2 60 41.5 68.5v1c-18.8 8.3-24 50.6 1 65.8v1C34 367 16 384.3 16 414.2c0 51.5 48.8 65.8 91.5 65.8 52 0 90.7-18.7 90.7-76 0-70.5-101-44.5-101-82.8 0-13.5 7.2-18.7 19.7-21.3 41.5-7.7 67.5-40 67.5-82.2 0-7.3-1.5-14.2-4-21 6.7-1.5 13.2-3.3 19.7-5.5v-50.5c-17.2 6.8-35.7 11.8-54.5 11.8-53.8-31-126.8 1.3-126.8 69.2zm87.7 163.8c17 0 41.2 3 41.2 25 0 21.8-19.5 26.3-37.7 26.3-17.3 0-43.3-2.7-43.3-25.2.1-22.3 22.1-26.1 39.8-26.1zM103.3 256c-22 0-31.3-13-31.3-33.8 0-49.3 61-48.8 61-.5 0 20.3-8 34.3-29.7 34.3zM432 305.5v49c-13.3 7.3-30.5 9.8-45.5 9.8-53.5 0-59.8-42.2-59.8-85.7v-87.7h.5v-1c-7 0-7.3-1.6-24 1v-47.5h24c0-22.3.3-31-1.5-41.2h56.7c-2 13.8-1.5 27.5-1.5 41.2h51v47.5s-19.3-1-51-1V281c0 14.8 3.3 32.8 21.8 32.8 9.8 0 21.3-2.8 29.3-8.3zM286 68.7c0 18.7-14.5 36.2-33.8 36.2-19.8 0-34.5-17.2-34.5-36.2 0-19.3 14.5-36.7 34.5-36.7C272 32 286 50 286 68.7zm-6.2 74.5c-1.8 14.6-1.6 199.8 0 217.8h-55.5c1.6-18.1 1.8-203 0-217.8h55.5z"], + "git-square": [448, 512, [], "f1d2", "M140.1 348.5c12.1 0 29.5 2.1 29.5 17.9 0 15.5-13.9 18.8-27 18.8-12.3 0-30.9-2-30.9-18s15.7-18.7 28.4-18.7zm-24.7-116.6c0 14.8 6.6 24.1 22.3 24.1 15.5 0 21.2-10 21.2-24.5.1-34.4-43.5-34.8-43.5.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-241 93.7c-12.3 4.8-25.5 8.4-38.9 8.4-38.5-22.1-90.7.9-90.7 49.5 0 18 11.6 42.9 29.6 48.9v.7c-13.4 5.9-17.1 36.1.7 47v.7c-19.5 6.4-32.3 18.8-32.3 40.2 0 36.8 34.8 47 65.4 47 37.1 0 64.8-13.4 64.8-54.3 0-50.4-72.1-31.8-72.1-59.1 0-9.6 5.2-13.4 14.1-15.2 29.6-5.5 48.2-28.6 48.2-58.7 0-5.2-1.1-10.2-2.9-15 4.8-1.1 9.5-2.3 14.1-3.9v-36.2zm56.8 1.8h-39.6c1.3 10.6 1.1 142.6 0 155.5h39.6c-1.1-12.8-1.2-145.1 0-155.5zm4.5-53.3c0-13.4-10-26.2-24.1-26.2-14.3 0-24.6 12.5-24.6 26.2 0 13.6 10.5 25.9 24.6 25.9 13.7 0 24.1-12.5 24.1-25.9zm104.3 53.3h-36.4c0-9.8-.4-19.6 1.1-29.5h-40.5c1.3 7.3 1.1 13.6 1.1 29.5h-17.1v33.9c11.9-1.9 12.1-.7 17.1-.7v.7h-.4v62.7c0 31.1 4.5 61.2 42.7 61.2 10.7 0 23-1.8 32.5-7v-35c-5.7 3.9-13.9 5.9-20.9 5.9-13.2 0-15.5-12.9-15.5-23.4v-65.2c22.7 0 36.4.7 36.4.7v-33.8z"], + "github": [496, 512, [], "f09b", "M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"], + "github-alt": [480, 512, [], "f113", "M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1zM480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2zm-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3zm-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1z"], + "github-square": [448, 512, [], "f092", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z"], + "gitkraken": [592, 512, [], "f3a6", "M565.7 118.1c-2.3-6.1-9.3-9.2-15.3-6.6-5.7 2.4-8.5 8.9-6.3 14.6 10.9 29 16.9 60.5 16.9 93.3 0 134.6-100.3 245.7-230.2 262.7V358.4c7.9-1.5 15.5-3.6 23-6.2v104c106.7-25.9 185.9-122.1 185.9-236.8 0-91.8-50.8-171.8-125.8-213.3-5.7-3.2-13-.9-15.9 5-2.7 5.5-.6 12.2 4.7 15.1 67.9 37.6 113.9 110 113.9 193.2 0 93.3-57.9 173.1-139.8 205.4v-92.2c14.2-4.5 24.9-17.7 24.9-33.5 0-13.1-6.8-24.4-17.3-30.5 8.3-79.5 44.5-58.6 44.5-83.9V170c0-38-87.9-161.8-129-164.7-2.5-.2-5-.2-7.6 0C251.1 8.3 163.2 132 163.2 170v14.8c0 25.3 36.3 4.3 44.5 83.9-10.6 6.1-17.3 17.4-17.3 30.5 0 15.8 10.6 29 24.8 33.5v92.2c-81.9-32.2-139.8-112-139.8-205.4 0-83.1 46-155.5 113.9-193.2 5.4-3 7.4-9.6 4.7-15.1-2.9-5.9-10.1-8.2-15.9-5-75 41.5-125.8 121.5-125.8 213.3 0 114.7 79.2 210.8 185.9 236.8v-104c7.6 2.5 15.1 4.6 23 6.2v123.7C131.4 465.2 31 354.1 31 219.5c0-32.8 6-64.3 16.9-93.3 2.2-5.8-.6-12.2-6.3-14.6-6-2.6-13 .4-15.3 6.6C14.5 149.7 8 183.8 8 219.5c0 155.1 122.6 281.6 276.3 287.8V361.4c6.8.4 15 .5 23.4 0v145.8C461.4 501.1 584 374.6 584 219.5c0-35.7-6.5-69.8-18.3-101.4zM365.9 275.5c13 0 23.7 10.5 23.7 23.7 0 13.1-10.6 23.7-23.7 23.7-13 0-23.7-10.5-23.7-23.7 0-13.1 10.6-23.7 23.7-23.7zm-139.8 47.3c-13.2 0-23.7-10.7-23.7-23.7s10.5-23.7 23.7-23.7c13.1 0 23.7 10.6 23.7 23.7 0 13-10.5 23.7-23.7 23.7z"], + "gitlab": [512, 512, [], "f296", "M29.782 199.732L256 493.714 8.074 309.699c-6.856-5.142-9.712-13.996-7.141-21.993l28.849-87.974zm75.405-174.806c-3.142-8.854-15.709-8.854-18.851 0L29.782 199.732h131.961L105.187 24.926zm56.556 174.806L256 493.714l94.257-293.982H161.743zm349.324 87.974l-28.849-87.974L256 493.714l247.926-184.015c6.855-5.142 9.711-13.996 7.141-21.993zm-85.404-262.78c-3.142-8.854-15.709-8.854-18.851 0l-56.555 174.806h131.961L425.663 24.926z"], + "gitter": [384, 512, [], "f426", "M66.4 322.5H16V0h50.4v322.5zM166.9 76.1h-50.4V512h50.4V76.1zm100.6 0h-50.4V512h50.4V76.1zM368 76h-50.4v247H368V76z"], + "glide": [448, 512, [], "f2a5", "M252.8 148.6c0 8.8-1.6 17.7-3.4 26.4-5.8 27.8-11.6 55.8-17.3 83.6-1.4 6.3-8.3 4.9-13.7 4.9-23.8 0-30.5-26-30.5-45.5 0-29.3 11.2-68.1 38.5-83.1 4.3-2.5 9.2-4.2 14.1-4.2 11.4 0 12.3 8.3 12.3 17.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 187c0-5.1-20.8-37.7-25.5-39.5-2.2-.9-7.2-2.3-9.6-2.3-23.1 0-38.7 10.5-58.2 21.5l-.5-.5c4.3-29.4 14.6-57.2 14.6-87.4 0-44.6-23.8-62.7-67.5-62.7-71.7 0-108 70.8-108 123.5 0 54.7 32 85 86.3 85 7.5 0 6.9-.6 6.9 2.3-10.5 80.3-56.5 82.9-56.5 58.9 0-24.4 28-36.5 28.3-38-.2-7.6-29.3-17.2-36.7-17.2-21.1 0-32.7 33-32.7 50.6 0 32.3 20.4 54.7 53.3 54.7 48.2 0 83.4-49.7 94.3-91.7 9.4-37.7 7-39.4 12.3-42.1 20-10.1 35.8-16.8 58.4-16.8 11.1 0 19 2.3 36.7 5.2 1.8.1 4.1-1.7 4.1-3.5z"], + "glide-g": [448, 512, [], "f2a6", "M407.1 211.2c-3.5-1.4-11.6-3.8-15.4-3.8-37.1 0-62.2 16.8-93.5 34.5l-.9-.9c7-47.3 23.5-91.9 23.5-140.4C320.8 29.1 282.6 0 212.4 0 97.3 0 39 113.7 39 198.4 39 286.3 90.3 335 177.6 335c12 0 11-1 11 3.8-16.9 128.9-90.8 133.1-90.8 94.6 0-39.2 45-58.6 45.5-61-.3-12.2-47-27.6-58.9-27.6-33.9.1-52.4 51.2-52.4 79.3C32 476 64.8 512 117.5 512c77.4 0 134-77.8 151.4-145.4 15.1-60.5 11.2-63.3 19.7-67.6 32.2-16.2 57.5-27 93.8-27 17.8 0 30.5 3.7 58.9 8.4 2.9 0 6.7-2.9 6.7-5.8 0-8-33.4-60.5-40.9-63.4zm-175.3-84.4c-9.3 44.7-18.6 89.6-27.8 134.3-2.3 10.2-13.3 7.8-22 7.8-38.3 0-49-41.8-49-73.1 0-47 18-109.3 61.8-133.4 7-4.1 14.8-6.7 22.6-6.7 18.6 0 20 13.3 20 28.7-.1 14.3-2.7 28.5-5.6 42.4z"], + "gofore": [400, 512, [], "f3a7", "M324 319.8h-13.2v34.7c-24.5 23.1-56.3 35.8-89.9 35.8-73.2 0-132.4-60.2-132.4-134.4 0-74.1 59.2-134.4 132.4-134.4 35.3 0 68.6 14 93.6 39.4l62.3-63.3C335 55.3 279.7 32 220.7 32 98 32 0 132.6 0 256c0 122.5 97 224 220.7 224 63.2 0 124.5-26.2 171-82.5-2-27.6-13.4-77.7-67.7-77.7zm-12.1-112.5H205.6v89H324c33.5 0 60.5 15.1 76 41.8v-30.6c0-65.2-40.4-100.2-88.1-100.2z"], + "goodreads": [448, 512, [], "f3a8", "M299.9 191.2c5.1 37.3-4.7 79-35.9 100.7-22.3 15.5-52.8 14.1-70.8 5.7-37.1-17.3-49.5-58.6-46.8-97.2 4.3-60.9 40.9-87.9 75.3-87.5 46.9-.2 71.8 31.8 78.2 78.3zM448 88v336c0 30.9-25.1 56-56 56H56c-30.9 0-56-25.1-56-56V88c0-30.9 25.1-56 56-56h336c30.9 0 56 25.1 56 56zM330 313.2s-.1-34-.1-217.3h-29v40.3c-.8.3-1.2-.5-1.6-1.2-9.6-20.7-35.9-46.3-76-46-51.9.4-87.2 31.2-100.6 77.8-4.3 14.9-5.8 30.1-5.5 45.6 1.7 77.9 45.1 117.8 112.4 115.2 28.9-1.1 54.5-17 69-45.2.5-1 1.1-1.9 1.7-2.9.2.1.4.1.6.2.3 3.8.2 30.7.1 34.5-.2 14.8-2 29.5-7.2 43.5-7.8 21-22.3 34.7-44.5 39.5-17.8 3.9-35.6 3.8-53.2-1.2-21.5-6.1-36.5-19-41.1-41.8-.3-1.6-1.3-1.3-2.3-1.3h-26.8c.8 10.6 3.2 20.3 8.5 29.2 24.2 40.5 82.7 48.5 128.2 37.4 49.9-12.3 67.3-54.9 67.4-106.3z"], + "goodreads-g": [384, 512, [], "f3a9", "M42.6 403.3h2.8c12.7 0 25.5 0 38.2.1 1.6 0 3.1-.4 3.6 2.1 7.1 34.9 30 54.6 62.9 63.9 26.9 7.6 54.1 7.8 81.3 1.8 33.8-7.4 56-28.3 68-60.4 8-21.5 10.7-43.8 11-66.5.1-5.8.3-47-.2-52.8l-.9-.3c-.8 1.5-1.7 2.9-2.5 4.4-22.1 43.1-61.3 67.4-105.4 69.1-103 4-169.4-57-172-176.2-.5-23.7 1.8-46.9 8.3-69.7C58.3 47.7 112.3.6 191.6 0c61.3-.4 101.5 38.7 116.2 70.3.5 1.1 1.3 2.3 2.4 1.9V10.6h44.3c0 280.3.1 332.2.1 332.2-.1 78.5-26.7 143.7-103 162.2-69.5 16.9-159 4.8-196-57.2-8-13.5-11.8-28.3-13-44.5zM188.9 36.5c-52.5-.5-108.5 40.7-115 133.8-4.1 59 14.8 122.2 71.5 148.6 27.6 12.9 74.3 15 108.3-8.7 47.6-33.2 62.7-97 54.8-154-9.7-71.1-47.8-120-119.6-119.7z"], + "google": [488, 512, [], "f1a0", "M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z"], + "google-drive": [512, 512, [], "f3aa", "M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z"], + "google-play": [512, 512, [], "f3ab", "M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z"], + "google-plus": [496, 512, [], "f2b3", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm-70.7 372c-68.8 0-124-55.5-124-124s55.2-124 124-124c31.3 0 60.1 11 83 32.3l-33.6 32.6c-13.2-12.9-31.3-19.1-49.4-19.1-42.9 0-77.2 35.5-77.2 78.1s34.2 78.1 77.2 78.1c32.6 0 64.9-19.1 70.1-53.3h-70.1v-42.6h116.9c1.3 6.8 1.9 13.6 1.9 20.7 0 70.8-47.5 121.2-118.8 121.2zm230.2-106.2v35.5H372v-35.5h-35.5v-35.5H372v-35.5h35.5v35.5h35.2v35.5h-35.2z"], + "google-plus-g": [640, 512, [], "f0d5", "M386.061 228.496c1.834 9.692 3.143 19.384 3.143 31.956C389.204 370.205 315.599 448 204.8 448c-106.084 0-192-85.915-192-192s85.916-192 192-192c51.864 0 95.083 18.859 128.611 50.292l-52.126 50.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484 0-118.92 54.221-118.92 121.277 0 67.056 53.436 121.277 118.92 121.277 75.961 0 104.513-54.745 108.965-82.773H204.8v-66.009h181.261zm185.406 6.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001h-55.733z"], + "google-plus-square": [448, 512, [], "f0d4", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM164 356c-55.3 0-100-44.7-100-100s44.7-100 100-100c27 0 49.5 9.8 67 26.2l-27.1 26.1c-7.4-7.1-20.3-15.4-39.8-15.4-34.1 0-61.9 28.2-61.9 63.2 0 34.9 27.8 63.2 61.9 63.2 39.6 0 54.4-28.5 56.8-43.1H164v-34.4h94.4c1 5 1.6 10.1 1.6 16.6 0 57.1-38.3 97.6-96 97.6zm220-81.8h-29v29h-29.2v-29h-29V245h29v-29H355v29h29v29.2z"], + "google-wallet": [448, 512, [], "f1ee", "M156.8 126.8c37.6 60.6 64.2 113.1 84.3 162.5-8.3 33.8-18.8 66.5-31.3 98.3-13.2-52.3-26.5-101.3-56-148.5 6.5-36.4 2.3-73.6 3-112.3zM109.3 200H16.1c-6.5 0-10.5 7.5-6.5 12.7C51.8 267 81.3 330.5 101.3 400h103.5c-16.2-69.7-38.7-133.7-82.5-193.5-3-4-8-6.5-13-6.5zm47.8-88c68.5 108 130 234.5 138.2 368H409c-12-138-68.4-265-143.2-368H157.1zm251.8-68.5c-1.8-6.8-8.2-11.5-15.2-11.5h-88.3c-5.3 0-9 5-7.8 10.3 13.2 46.5 22.3 95.5 26.5 146 48.2 86.2 79.7 178.3 90.6 270.8 15.8-60.5 25.3-133.5 25.3-203 0-73.6-12.1-145.1-31.1-212.6z"], + "gratipay": [496, 512, [], "f184", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm114.6 226.4l-113 152.7-112.7-152.7c-8.7-11.9-19.1-50.4 13.6-72 28.1-18.1 54.6-4.2 68.5 11.9 15.9 17.9 46.6 16.9 61.7 0 13.9-16.1 40.4-30 68.1-11.9 32.9 21.6 22.6 60 13.8 72z"], + "grav": [512, 512, [], "f2d6", "M301.1 212c4.4 4.4 4.4 11.9 0 16.3l-9.7 9.7c-4.4 4.7-11.9 4.7-16.6 0l-10.5-10.5c-4.4-4.7-4.4-11.9 0-16.6l9.7-9.7c4.4-4.4 11.9-4.4 16.6 0l10.5 10.8zm-30.2-19.7c3-3 3-7.8 0-10.5-2.8-3-7.5-3-10.5 0-2.8 2.8-2.8 7.5 0 10.5 3.1 2.8 7.8 2.8 10.5 0zm-26 5.3c-3 2.8-3 7.5 0 10.2 2.8 3 7.5 3 10.5 0 2.8-2.8 2.8-7.5 0-10.2-3-3-7.7-3-10.5 0zm72.5-13.3c-19.9-14.4-33.8-43.2-11.9-68.1 21.6-24.9 40.7-17.2 59.8.8 11.9 11.3 29.3 24.9 17.2 48.2-12.5 23.5-45.1 33.2-65.1 19.1zm47.7-44.5c-8.9-10-23.3 6.9-15.5 16.1 7.4 9 32.1 2.4 15.5-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-66.2 42.6c2.5-16.1-20.2-16.6-25.2-25.7-13.6-24.1-27.7-36.8-54.5-30.4 11.6-8 23.5-6.1 23.5-6.1.3-6.4 0-13-9.4-24.9 3.9-12.5.3-22.4.3-22.4 15.5-8.6 26.8-24.4 29.1-43.2 3.6-31-18.8-59.2-49.8-62.8-22.1-2.5-43.7 7.7-54.3 25.7-23.2 40.1 1.4 70.9 22.4 81.4-14.4-1.4-34.3-11.9-40.1-34.3-6.6-25.7 2.8-49.8 8.9-61.4 0 0-4.4-5.8-8-8.9 0 0-13.8 0-24.6 5.3 11.9-15.2 25.2-14.4 25.2-14.4 0-6.4-.6-14.9-3.6-21.6-5.4-11-23.8-12.9-31.7 2.8.1-.2.3-.4.4-.5-5 11.9-1.1 55.9 16.9 87.2-2.5 1.4-9.1 6.1-13 10-21.6 9.7-56.2 60.3-56.2 60.3-28.2 10.8-77.2 50.9-70.6 79.7.3 3 1.4 5.5 3 7.5-2.8 2.2-5.5 5-8.3 8.3-11.9 13.8-5.3 35.2 17.7 24.4 15.8-7.2 29.6-20.2 36.3-30.4 0 0-5.5-5-16.3-4.4 27.7-6.6 34.3-9.4 46.2-9.1 8 3.9 8-34.3 8-34.3 0-14.7-2.2-31-11.1-41.5 12.5 12.2 29.1 32.7 28 60.6-.8 18.3-15.2 23-15.2 23-9.1 16.6-43.2 65.9-30.4 106 0 0-9.7-14.9-10.2-22.1-17.4 19.4-46.5 52.3-24.6 64.5 26.6 14.7 108.8-88.6 126.2-142.3 34.6-20.8 55.4-47.3 63.9-65 22 43.5 95.3 94.5 101.1 59z"], + "gripfire": [384, 512, [], "f3ac", "M171.8 503.8c0-5.3 4.8-12.2 4.8-22.3 0-15.2-13-39.9-78.1-86.6C64.2 365.8 32 336.4 32 286.6 32 171.9 179.1 110.1 179.1 18c0-3.3-.2-6.7-.6-10 5.1 2.4 39.1 43.3 39.1 90.4 0 80.5-105.1 129.2-105.1 203 0 26.9 16.6 47.2 32.6 69.5 22.5 30.2 44.2 56.9 44.2 86.5-.1 14.5-4.4 29.7-17.5 46.4zm146-241.4c1.5 8.4 2.2 16.6 2.2 24.6 0 51.8-29.4 97.5-67.3 136.8-1 1-2.2 2.4-3.2 2.4-3.6 0-35.5-41.6-35.5-53.2 0 0 41.8-55.7 41.8-96.9 0-10.8-2.7-21.7-9.1-33.4-1.5 32.3-55.7 87.7-58.1 87.7-2.7 0-17.9-22-17.9-42.1 0-5.3 1-10.7 3.2-15.8 2.4-5.5 56.6-72 56.6-116.7 0-6.2-1-12-3.4-17.1l-4-7.2c16.7 6.5 82.6 64.1 94.7 130.9"], + "grunt": [384, 512, [], "f3ad", "M61.3 189.3c-1.1 10 5.2 19.1 5.2 19.1.7-7.5 2.2-12.8 4-16.6.4 10.3 3.2 23.5 12.8 34.1 6.9 7.6 35.6 23.3 54.9 6.1 1 2.4 2.1 5.3 3 8.5 2.9 10.3-2.7 25.3-2.7 25.3s15.1-17.1 13.9-32.5c10.8-.5 21.4-8.4 21.1-19.5 0 0-18.9 10.4-35.5-8.8-9.7-11.2-40.9-42-83.1-31.8 4.3 1 8.9 2.4 13.5 4.1h-.1c-4.2 2-6.5 7.1-7 12zm28.3-1.8c19.5 11 37.4 25.7 44.9 37-5.7 3.3-21.7 10.4-38-1.7-10.3-7.6-9.8-26.2-6.9-35.3zm79.2 233.7c2.2 2.3 1.5 5.3.9 6.8-1.1 2.7-5.5 11.6-13 19.8-2.7 2.9-6.6 4.6-11 4.6-4.3 0-8.7-1.6-11.8-4.3-2.3-2.1-10.2-9.5-13.7-18.6-1.3-3.4-1-6.1.9-8.1 1.3-1.3 4-2.9 9.5-2.9H160c4.1 0 7 .9 8.8 2.7zm62.9-187.9c-1.2 15.5 13.9 32.5 13.9 32.5s-5.6-15-2.7-25.3c.9-3.2 2-6 3-8.5 19.3 17.3 48 1.5 54.8-6.1 9.6-10.6 12.3-23.8 12.8-34.1 1.8 3.8 3.4 9.1 4 16.6 0 0 6.4-9.1 5.2-19.1-.6-5-2.9-10-7-11.8h-.1c4.6-1.8 9.2-3.2 13.5-4.1-42.3-10.2-73.4 20.6-83.1 31.8-16.7 19.2-35.5 8.8-35.5 8.8-.2 10.9 10.4 18.9 21.2 19.3zm17.8-8.8c7.5-11.4 25.4-26 44.9-37 3 9.1 3.4 27.7-7 35.4-16.3 12.1-32.2 5-37.9 1.6-.1.1 0 0 0 0zM263 421.4c1.9 1.9 2.2 4.6.9 7.9-3.5 8.9-11.4 16.1-13.7 18.1-3.1 2.6-7.4 4.2-11.8 4.2s-8.3-1.6-11-4.5c-7.5-8-12-16.7-13-19.3-.6-1.5-1.3-4.4.9-6.7 1.7-1.8 4.7-2.7 8.9-2.7h29.4c5.4.1 8.1 1.7 9.4 3zm-98.3-251.5c9.9 6 18.8 8.1 27.3 8.3 8.5-.2 17.4-2.3 27.3-8.3 0 0-14.5 17.7-27.2 17.8h-.2c-12.7-.2-27.2-17.8-27.2-17.8zm184.5 147.4c-2.4 17.9-13 33.8-24.6 43.7-3.1-22.7-3.7-55.5-3.7-62.4 0-14.7 9.5-24.5 12.2-26.1 2.5-1.5 5.4-3 8.3-4.6 18-9.6 40.4-21.6 40.4-43.7 0-16.2-9.3-23.2-15.4-27.8-.8-.6-1.5-1.1-2.2-1.7-2.1-1.7-3.7-3-4.3-4.4-4.4-9.8-3.6-34.2-1.7-37.6.6-.6 16.7-20.9 11.8-39.2-2-7.4-6.9-13.3-14.1-17-5.3-2.7-11.9-4.2-19.5-4.5-.1-2-.5-3.9-.9-5.9-.6-2.6-1.1-5.3-.9-8.1.4-4.7.8-9 2.2-11.3 8.4-13.3 28.8-17.6 29-17.6l12.3-2.4-8.1-9.5c-.1-.2-17.3-17.5-46.3-17.5-7.9 0-16 1.3-24.1 3.9-24.2 7.8-42.9 30.5-49.4 39.3-3.1-1-6.3-1.9-9.6-2.7-4.2-15.8 9-38.5 9-38.5s-13.6-3-33.7 15.2c-2.6-6.5-8.1-20.5-1.8-37.2C184.6 10.1 177.2 26 175 40.4c-7.6-5.4-6.7-23.1-7.2-27.6-7.5.9-29.2 21.9-28.2 48.3-2 .5-3.9 1.1-5.9 1.7-6.5-8.8-25.1-31.5-49.4-39.3-7.9-2.2-16-3.5-23.9-3.5-29 0-46.1 17.3-46.3 17.5L6 46.9l12.3 2.4c.2 0 20.6 4.3 29 17.6 1.4 2.2 1.8 6.6 2.2 11.3.2 2.8-.4 5.5-.9 8.1-.4 1.9-.8 3.9-.9 5.9-7.7.3-14.2 1.8-19.5 4.5-7.2 3.7-12.1 9.6-14.1 17-5 18.2 11.2 38.5 11.8 39.2 1.9 3.4 2.7 27.8-1.7 37.6-.6 1.4-2.2 2.7-4.3 4.4-.7.5-1.4 1.1-2.2 1.7-6.1 4.6-15.4 11.7-15.4 27.8 0 22.1 22.4 34.1 40.4 43.7 3 1.6 5.8 3.1 8.3 4.6 2.7 1.6 12.2 11.4 12.2 26.1 0 6.9-.6 39.7-3.7 62.4-11.6-9.9-22.2-25.9-24.6-43.8 0 0-29.2 22.6-20.6 70.8 5.2 29.5 23.2 46.1 47 54.7 8.8 19.1 29.4 45.7 67.3 49.6C143 504.3 163 512 192.2 512h.2c29.1 0 49.1-7.7 63.6-19.5 37.9-3.9 58.5-30.5 67.3-49.6 23.8-8.7 41.7-25.2 47-54.7 8.2-48.4-21.1-70.9-21.1-70.9zM305.7 37.7c5.6-1.8 11.6-2.7 17.7-2.7 11 0 19.9 3 24.7 5-3.1 1.4-6.4 3.2-9.7 5.3-2.4-.4-5.6-.8-9.2-.8-10.5 0-20.5 3.1-28.7 8.9-12.3 8.7-18 16.9-20.7 22.4-2.2-1.3-4.5-2.5-7.1-3.7-1.6-.8-3.1-1.5-4.7-2.2 6.1-9.1 19.9-26.5 37.7-32.2zm21 18.2c-.8 1-1.6 2.1-2.3 3.2-3.3 5.2-3.9 11.6-4.4 17.8-.5 6.4-1.1 12.5-4.4 17-4.2.8-8.1 1.7-11.5 2.7-2.3-3.1-5.6-7-10.5-11.2 1.4-4.8 5.5-16.1 13.5-22.5 5.6-4.3 12.2-6.7 19.6-7zM45.6 45.3c-3.3-2.2-6.6-4-9.7-5.3 4.8-2 13.7-5 24.7-5 6.1 0 12 .9 17.7 2.7 17.8 5.8 31.6 23.2 37.7 32.1-1.6.7-3.2 1.4-4.8 2.2-2.5 1.2-4.9 2.5-7.1 3.7-2.6-5.4-8.3-13.7-20.7-22.4-8.3-5.8-18.2-8.9-28.8-8.9-3.4.1-6.6.5-9 .9zm44.7 40.1c-4.9 4.2-8.3 8-10.5 11.2-3.4-.9-7.3-1.9-11.5-2.7C65 89.5 64.5 83.4 64 77c-.5-6.2-1.1-12.6-4.4-17.8-.7-1.1-1.5-2.2-2.3-3.2 7.4.3 14 2.6 19.5 7 8 6.3 12.1 17.6 13.5 22.4zM58.1 259.9c-2.7-1.6-5.6-3.1-8.4-4.6-14.9-8-30.2-16.3-30.2-30.5 0-11.1 4.3-14.6 8.9-18.2l.5-.4c.7-.6 1.4-1.2 2.2-1.8-.9 7.2-1.9 13.3-2.7 14.9 0 0 12.1-15 15.7-44.3 1.4-11.5-1.1-34.3-5.1-43 .2 4.9 0 9.8-.3 14.4-.4-.8-.8-1.6-1.3-2.2-3.2-4-11.8-17.5-9.4-26.6.9-3.5 3.1-6 6.7-7.8 3.8-1.9 8.8-2.9 15.1-2.9 12.3 0 25.9 3.7 32.9 6 25.1 8 55.4 30.9 64.1 37.7.2.2.4.3.4.3l5.6 3.9-3.5-5.8c-.2-.3-19.1-31.4-53.2-46.5 2-2.9 7.4-8.1 21.6-15.1 21.4-10.5 46.5-15.8 74.3-15.8 27.9 0 52.9 5.3 74.3 15.8 14.2 6.9 19.6 12.2 21.6 15.1-34 15.1-52.9 46.2-53.1 46.5l-3.5 5.8 5.6-3.9s.2-.1.4-.3c8.7-6.8 39-29.8 64.1-37.7 7-2.2 20.6-6 32.9-6 6.3 0 11.3 1 15.1 2.9 3.5 1.8 5.7 4.4 6.7 7.8 2.5 9.1-6.1 22.6-9.4 26.6-.5.6-.9 1.3-1.3 2.2-.3-4.6-.5-9.5-.3-14.4-4 8.8-6.5 31.5-5.1 43 3.6 29.3 15.7 44.3 15.7 44.3-.8-1.6-1.8-7.7-2.7-14.9.7.6 1.5 1.2 2.2 1.8l.5.4c4.6 3.7 8.9 7.1 8.9 18.2 0 14.2-15.4 22.5-30.2 30.5-2.9 1.5-5.7 3.1-8.4 4.6-8.7 5-18 16.7-19.1 34.2-.9 14.6.9 49.9 3.4 75.9-12.4 4.8-26.7 6.4-39.7 6.8-2-4.1-3.9-8.5-5.5-13.1-.7-2-19.6-51.1-26.4-62.2 5.5 39 17.5 73.7 23.5 89.6-3.5-.5-7.3-.7-11.7-.7h-117c-4.4 0-8.3.3-11.7.7 6-15.9 18.1-50.6 23.5-89.6-6.8 11.2-25.7 60.3-26.4 62.2-1.6 4.6-3.5 9-5.5 13.1-13-.4-27.2-2-39.7-6.8 2.5-26 4.3-61.2 3.4-75.9-.9-17.4-10.3-29.2-19-34.2zM34.8 404.6c-12.1-20-8.7-54.1-3.7-59.1 10.9 34.4 47.2 44.3 74.4 45.4-2.7 4.2-5.2 7.6-7 10l-1.4 1.4c-7.2 7.8-8.6 18.5-4.1 31.8-22.7-.1-46.3-9.8-58.2-29.5zm45.7 43.5c6 1.1 12.2 1.9 18.6 2.4 3.5 8 7.4 15.9 12.3 23.1-14.4-5.9-24.4-16-30.9-25.5zM192 498.2c-60.6-.1-78.3-45.8-84.9-64.7-3.7-10.5-3.4-18.2.9-23.1 2.9-3.3 9.5-7.2 24.6-7.2h118.8c15.1 0 21.8 3.9 24.6 7.2 4.2 4.8 4.5 12.6.9 23.1-6.6 18.8-24.3 64.6-84.9 64.7zm80.6-24.6c4.9-7.2 8.8-15.1 12.3-23.1 6.4-.5 12.6-1.3 18.6-2.4-6.5 9.5-16.5 19.6-30.9 25.5zm76.6-69c-12 19.7-35.6 29.3-58.1 29.7 4.5-13.3 3.1-24.1-4.1-31.8-.4-.5-.9-1-1.4-1.5-1.8-2.4-4.3-5.8-7-10 27.2-1.2 63.5-11 74.4-45.4 5 5 8.4 39.1-3.8 59z"], + "gulp": [256, 512, [], "f3ae", "M209.8 391.1l-14.1 24.6-4.6 80.2c0 8.9-28.3 16.1-63.1 16.1s-63.1-7.2-63.1-16.1l-5.8-79.4-14.9-25.4c41.2 17.3 126 16.7 165.6 0zm-196-253.3l13.6 125.5c5.9-20 20.8-47 40-55.2 6.3-2.7 12.7-2.7 18.7.9 5.2 3 9.6 9.3 10.1 11.8 1.2 6.5-2 9.1-4.5 9.1-3 0-5.3-4.6-6.8-7.3-4.1-7.3-10.3-7.6-16.9-2.8-6.9 5-12.9 13.4-17.1 20.7-5.1 8.8-9.4 18.5-12 28.2-1.5 5.6-2.9 14.6-.6 19.9 1 2.2 2.5 3.6 4.9 3.6 5 0 12.3-6.6 15.8-10.1 4.5-4.5 10.3-11.5 12.5-16l5.2-15.5c2.6-6.8 9.9-5.6 9.9 0 0 10.2-3.7 13.6-10 34.7-5.8 19.5-7.6 25.8-7.6 25.8-.7 2.8-3.4 7.5-6.3 7.5-1.2 0-2.1-.4-2.6-1.2-1-1.4-.9-5.3-.8-6.3.2-3.2 6.3-22.2 7.3-25.2-2 2.2-4.1 4.4-6.4 6.6-5.4 5.1-14.1 11.8-21.5 11.8-3.4 0-5.6-.9-7.7-2.4l7.6 79.6c2 5 39.2 17.1 88.2 17.1 49.1 0 86.3-12.2 88.2-17.1l10.9-94.6c-5.7 5.2-12.3 11.6-19.6 14.8-5.4 2.3-17.4 3.8-17.4-5.7 0-5.2 9.1-14.8 14.4-21.5 1.4-1.7 4.7-5.9 4.7-8.1 0-2.9-6-2.2-11.7 2.5-3.2 2.7-6.2 6.3-8.7 9.7-4.3 6-6.6 11.2-8.5 15.5-6.2 14.2-4.1 8.6-9.1 22-5 13.3-4.2 11.8-5.2 14-.9 1.9-2.2 3.5-4 4.5-1.9 1-4.5.9-6.1-.3-.9-.6-1.3-1.9-1.3-3.7 0-.9.1-1.8.3-2.7 1.5-6.1 7.8-18.1 15-34.3 1.6-3.7 1-2.6.8-2.3-6.2 6-10.9 8.9-14.4 10.5-5.8 2.6-13 2.6-14.5-4.1-.1-.4-.1-.8-.2-1.2-11.8 9.2-24.3 11.7-20-8.1-4.6 8.2-12.6 14.9-22.4 14.9-4.1 0-7.1-1.4-8.6-5.1-2.3-5.5 1.3-14.9 4.6-23.8 1.7-4.5 4-9.9 7.1-16.2 1.6-3.4 4.2-5.4 7.6-4.5.6.2 1.1.4 1.6.7 2.6 1.8 1.6 4.5.3 7.2-3.8 7.5-7.1 13-9.3 20.8-.9 3.3-2 9 1.5 9 2.4 0 4.7-.8 6.9-2.4 4.6-3.4 8.3-8.5 11.1-13.5 2-3.6 4.4-8.3 5.6-12.3.5-1.7 1.1-3.3 1.8-4.8 1.1-2.5 2.6-5.1 5.2-5.1 1.3 0 2.4.5 3.2 1.5 1.7 2.2 1.3 4.5.4 6.9-2 5.6-4.7 10.6-6.9 16.7-1.3 3.5-2.7 8-2.7 11.7 0 3.4 3.7 2.6 6.8 1.2 2.4-1.1 4.8-2.8 6.8-4.5 1.2-4.9.9-3.8 26.4-68.2 1.3-3.3 3.7-4.7 6.1-4.7 1.2 0 2.2.4 3.2 1.1 1.7 1.3 1.7 4.1 1 6.2-.7 1.9-.6 1.3-4.5 10.5-5.2 12.1-8.6 20.8-13.2 31.9-1.9 4.6-7.7 18.9-8.7 22.3-.6 2.2-1.3 5.8 1 5.8 5.4 0 19.3-13.1 23.1-17 .2-.3.5-.4.9-.6.6-1.9 1.2-3.7 1.7-5.5 1.4-3.8 2.7-8.2 5.3-11.3.8-1 1.7-1.6 2.7-1.6 2.8 0 4.2 1.2 4.2 4 0 1.1-.7 5.1-1.1 6.2 1.4-1.5 2.9-3 4.5-4.5 15-13.9 25.7-6.8 25.7.2 0 7.4-8.9 17.7-13.8 23.4-1.6 1.9-4.9 5.4-5 6.4 0 1.3.9 1.8 2.2 1.8 2 0 6.4-3.5 8-4.7 5-3.9 11.8-9.9 16.6-14.1l14.8-136.8c-30.5 17.1-197.6 17.2-228.3.2zm229.7-8.5c0 21-231.2 21-231.2 0 0-8.8 51.8-15.9 115.6-15.9 9 0 17.8.1 26.3.4l12.6-48.7L228.1.6c1.4-1.4 5.8-.2 9.9 3.5s6.6 7.9 5.3 9.3l-.1.1L185.9 74l-10 40.7c39.9 2.6 67.6 8.1 67.6 14.6zm-69.4 4.6c0-.8-.9-1.5-2.5-2.1l-.2.8c0 1.3-5 2.4-11.1 2.4s-11.1-1.1-11.1-2.4c0-.1 0-.2.1-.3l.2-.7c-1.8.6-3 1.4-3 2.3 0 2.1 6.2 3.7 13.7 3.7 7.7.1 13.9-1.6 13.9-3.7z"], + "hacker-news": [448, 512, [], "f1d4", "M0 32v448h448V32H0zm21.2 197.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z"], + "hacker-news-square": [448, 512, [], "f3af", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM21.2 229.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z"], + "hips": [640, 512, [], "f452", "M0 80.2c0-1.8.9-2.7 2.7-2.7h40.9c1.9 0 2.8.9 2.8 2.7v81.2c15.2-7.7 31.7-11.5 49.8-11.4 24 .1 44.2 6.2 60.3 18 18.7 13.5 28 31.9 28 55.3v136.1c0 1.9-.9 2.8-2.7 2.8h-27.3c-9.1 0-16.4-7.3-16.4-16.3V223.3c0-.9 2.7-27-45.8-27-48.6 0-45.8 26.2-45.8 27v136.1c0 1.9-.9 2.8-2.8 2.8h-41c-1.8 0-2.7-.9-2.7-2.8V80.2zm497.7 221.5c13.7 10.2 34.1 19.1 58.4 19.1 23.3 0 32.8-4.5 36.5-13.6 3-7.9-.6-16.1-12.2-21.2l-53.6-23.5c-21.4-9.4-33.8-24-37.2-43.6-5.7-33.7 22.2-53.3 22.7-53.7 13.2-9.6 32-15.4 58.5-15.4 19 0 37.4 3.3 55.1 9.9 1.3.5 1.9 1.3 1.9 2.6V207c0 2.1-2.3 3.4-4 2.4-39.7-20.7-76.6-12.3-84-6.8-6.6 4.9-6 12.5 2.6 16.1L600 244c16.5 7.1 28.1 18.4 34.9 34.1 5.5 12.6 6.6 25.6 3.1 39.1-9.6 36.9-44.9 45.5-45.6 45.8-10.5 3.1-23.6 4.3-36.3 4.3-16.6 0-32.6-2.7-48.2-8.2-9.7-3.4-14.6-10.3-14.6-20.7V304c0-2.1 2.3-3.7 4.4-2.3zM376.2 149.8c-31.7 0-104.2 20.1-104.2 103.5v183.5c0 .8.6 2.7 2.7 2.7h40.9c1.9 0 2.8-.9 2.8-2.7V348c16.5 12.7 35.8 19.1 57.7 19.1 60.5 0 108.7-48.5 108.7-108.7.1-60.3-48.2-108.6-108.6-108.6zm0 170.9c-17.2 0-31.9-6.1-44-18.2-12.2-12.2-18.2-26.8-18.2-44 0-34.5 27.6-62.2 62.2-62.2 34.5 0 62.2 27.6 62.2 62.2.1 34.3-27.3 62.2-62.2 62.2zm-124.6 38.7c0 1.9-.9 2.8-2.8 2.8h-40.9c-1.6 0-2.7-1.4-2.7-2.8V157.6c0-1.4 1.1-2.8 2.7-2.8h40.9c1.9 0 2.8.9 2.8 2.8v201.8M228.3 72.5c15.9 0 28.9 12.7 28.9 28.9 0 15.8-12.7 28.9-28.9 28.9s-28.9-13.3-28.9-28.9c.1-16 13-28.9 28.9-28.9"], + "hire-a-helper": [512, 512, [], "f3b0", "M443.1 0H71.9C67.9 37.3 37.4 67.8 0 71.7v371.5c37.4 4.9 66 32.4 71.9 68.8h372.2c3-36.4 32.5-65.8 67.9-69.8V71.7c-36.4-5.9-65-35.3-68.9-71.7zm-37 404.9c-36.3 0-18.8-2-55.1-2-35.8 0-21 2-56.1 2-5.9 0-4.9-8.2 0-9.8 22.8-7.6 22.9-10.2 24.6-12.8 10.4-15.6 5.9-83 5.9-113 0-5.3-6.4-12.8-13.8-12.8H200.4c-7.4 0-13.8 7.5-13.8 12.8 0 30-4.5 97.4 5.9 113 1.7 2.5 1.8 5.2 24.6 12.8 4.9 1.6 6 9.8 0 9.8-35.1 0-20.3-2-56.1-2-36.3 0-18.8 2-55.1 2-7.9 0-5.8-10.8 0-10.8 10.2-3.4 13.5-3.5 21.7-13.8 7.7-12.9 7.9-44.4 7.9-127.8V151.3c0-22.2-12.2-28.3-28.6-32.4-8.8-2.2-4-11.8 1-11.8 36.5 0 20.6 2 57.1 2 32.7 0 16.5-2 49.2-2 3.3 0 8.5 8.3 1 10.8-4.9 1.6-27.6 3.7-27.6 39.3 0 45.6-.2 55.8 1 68.8 0 1.3 2.3 12.8 12.8 12.8h109.2c10.5 0 12.8-11.5 12.8-12.8 1.2-13 1-23.2 1-68.8 0-35.6-22.7-37.7-27.6-39.3-7.5-2.5-2.3-10.8 1-10.8 32.7 0 16.5 2 49.2 2 36.5 0 20.6-2 57.1-2 4.9 0 9.9 9.6 1 11.8-16.4 4.1-28.6 10.3-28.6 32.4v101.2c0 83.4.1 114.9 7.9 127.8 8.2 10.2 11.4 10.4 21.7 13.8 5.8 0 7.8 10.8 0 10.8z"], + "hooli": [640, 512, [], "f427", "M508.4 352h57.9V156.7L508.4 184v168zm73.7-110.5V352H640V241.5h-57.9zm-250.7-8.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.2-1.1-50.4 17.1c-1.9 1.9-3.7 3.9-5.3 6-38.2-29.6-72.5-46.5-102.1-61.1v-20.7l-22.5 10.6c-54.4-22.1-89-18.2-97.3.1 0 0-24.9 32.8 61.9 110.9v-31c-48.8-54.6-39-76.1-35.3-79.2 13.5-11.4 37.5-8 64.4 2.1L65.2 184v63.3c13.1 14.7 30.5 31.5 53.5 50.4l4.5 3.6v-29.8c0-6.9 1.7-18.2 10.8-18.2s10.6 6.9 10.6 15V317c18 12.2 37.3 22.1 57.7 29.6v-93.9c0-18.7-13.4-37.4-40.6-37.4-15.8-.1-30.5 8.2-38.5 21.9v-54.3c41.9 20.9 83.9 46.5 99.9 58.3-10.2 14.6-9.3 28.1-9.3 43.7 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.7-33.8 16.7-52.5 0-18.5 1.5-34.2-16.7-52.3zm-39.7 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm185.7-71.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.3-1.1-50.4 17.1c-18.2 18.2-16.8 33.9-16.8 52.6 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.8-33.8 16.8-52.5-.1-18.8 1.3-34.5-16.8-52.6zm-39.8 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm173.5-73c15.9 0 28.9-12.9 28.9-28.9s-12.9-24.5-28.9-24.5c-15.9 0-28.9 8.6-28.9 24.5s12.9 28.9 28.9 28.9zM144.5 352l38.3.8c-13.2-4.6-26-10.2-38.3-16.8v16zm-21.4 0v-28.6c-6.5-4.2-13-8.7-19.4-13.6-14.8-11.2-27.5-21.7-38.5-31.5V352h57.9zm59.7.8c36.5 12.5 69.9 14.2 94.7 7.2-19.9.2-45.8-2.6-75.3-13.3v5.3l-19.4.8z"], + "hornbill": [509, 512, [], "f592", "M75.37 370.3c2.14 15.83-5.77 31.98-20.94 39.29-18.85 9.1-41.55 1.17-50.68-17.68-9.08-18.83-1.13-41.58 17.7-50.65 7.05-3.4 14.63-4.42 21.85-3.38-78.28-111.35 52-190.53 52-190.53-5.86 43.04-8.24 91.16-8.24 91.16-67.31 41.45.92 64.06 39.81 72.87 19.77 53.62 71.18 91.94 131.66 91.94 1.92 0 3.77-.21 5.67-.28l.11 18.86c-99.22 1.39-158.7-29.14-188.94-51.6zM183.38 42.6c.89-7-.1-14.33-3.39-21.15-9.1-18.84-31.82-26.78-50.66-17.69-18.86 9.1-26.8 31.83-17.69 50.68 6.98 14.47 22.02 22.42 37.18 21.23-22.55 29.91-53.83 89.57-52.42 190.03l21.84-.15c-.02-.9-.14-1.77-.14-2.68 0-58.95 36.37-109.33 87.85-130.16 8.01-37.75 30.74-114.3 73.84-44.29 0 0 48.14 2.38 91.18 8.24 0-.01-77.84-128.03-187.59-54.06zm304.18 134.17c18.84-9.09 26.81-31.81 17.7-50.65-9.1-18.85-31.83-26.77-50.67-17.69-15.27 7.37-23.19 23.69-20.87 39.64-31.71-21.94-89.84-49.05-183.45-47.74l.14 22.5c2.7-.15 5.39-.41 8.14-.41 59.3 0 109.9 36.8 130.49 88.76 39.1 9.02 105.06 31.58 38.46 72.54 0 0-2.34 48.13-8.21 91.16 0 0 133.45-81.16 48.96-194.61 6.43.5 13.07-.49 19.31-3.5zM373.05 436.24c21.43-32.46 46.42-89.69 45.14-179.66l-19.52.14c.08 2.06.3 4.07.3 6.15 0 60.27-38.05 111.55-91.39 131.45-8.85 38.95-31.44 106.66-72.77 39.49 0 0-48.12-2.34-91.19-8.22 0 0 79.92 131.34 191.9 50.97.31 4.72 1.45 9.45 3.64 13.97 9.06 18.89 31.8 26.78 50.64 17.71 18.86-9.1 26.79-31.83 17.7-50.65-6.56-13.62-20.26-21.43-34.45-21.35z"], + "hotjar": [448, 512, [], "f3b1", "M414.9 161.5C340.2 29 121.1 0 121.1 0S222.2 110.4 93 197.7C11.3 252.8-21 324.4 14 402.6c26.8 59.9 83.5 84.3 144.6 93.4-29.2-55.1-6.6-122.4-4.1-129.6 57.1 86.4 165 0 110.8-93.9 71 15.4 81.6 138.6 27.1 215.5 80.5-25.3 134.1-88.9 148.8-145.6 15.5-59.3 3.7-127.9-26.3-180.9z"], + "houzz": [414, 512, [], "f27c", "M258.9 330.7H154.3V480H0V32h109.5v104.5l305.1 85.6V480H258.9V330.7z"], + "html5": [384, 512, [], "f13b", "M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z"], + "hubspot": [512, 512, [], "f3b2", "M267.4 211.6c-25.1 23.7-40.8 57.3-40.8 94.6 0 29.3 9.7 56.3 26 78L203.1 434c-4.4-1.6-9.1-2.5-14-2.5-10.8 0-20.9 4.2-28.5 11.8-7.6 7.6-11.8 17.8-11.8 28.6s4.2 20.9 11.8 28.5c7.6 7.6 17.8 11.6 28.5 11.6 10.8 0 20.9-3.9 28.6-11.6 7.6-7.6 11.8-17.8 11.8-28.5 0-4.2-.6-8.2-1.9-12.1l50-50.2c22 16.9 49.4 26.9 79.3 26.9 71.9 0 130-58.3 130-130.2 0-65.2-47.7-119.2-110.2-128.7V116c17.5-7.4 28.2-23.8 28.2-42.9 0-26.1-20.9-47.9-47-47.9S311.2 47 311.2 73.1c0 19.1 10.7 35.5 28.2 42.9v61.2c-15.2 2.1-29.6 6.7-42.7 13.6-27.6-20.9-117.5-85.7-168.9-124.8 1.2-4.4 2-9 2-13.8C129.8 23.4 106.3 0 77.4 0 48.6 0 25.2 23.4 25.2 52.2c0 28.9 23.4 52.3 52.2 52.3 9.8 0 18.9-2.9 26.8-7.6l163.2 114.7zm89.5 163.6c-38.1 0-69-30.9-69-69s30.9-69 69-69 69 30.9 69 69-30.9 69-69 69z"], + "imdb": [448, 512, [], "f2d8", "M350.5 288.7c0 5.4 1.6 14.4-6.2 14.4-1.6 0-3-.8-3.8-2.4-2.2-5.1-1.1-44.1-1.1-44.7 0-3.8-1.1-12.7 4.9-12.7 7.3 0 6.2 7.3 6.2 12.7v32.7zM265 229.9c0-9.7 1.6-16-10.3-16v83.7c12.2.3 10.3-8.7 10.3-18.4v-49.3zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM21.3 228.8c-.1.1-.2.3-.3.4h.3v-.4zM97 192H64v127.8h33V192zm113.3 0h-43.1l-7.6 59.9c-2.7-20-5.4-40.1-8.7-59.9h-42.8v127.8h29v-84.5l12.2 84.5h20.6l11.6-86.4v86.4h28.7V192zm86.3 45.3c0-8.1.3-16.8-1.4-24.4-4.3-22.5-31.4-20.9-49-20.9h-24.6v127.8c86.1.1 75 6 75-82.5zm85.9 17.3c0-17.3-.8-30.1-22.2-30.1-8.9 0-14.9 2.7-20.9 9.2V192h-31.7v127.8h29.8l1.9-8.1c5.7 6.8 11.9 9.8 20.9 9.8 19.8 0 22.2-15.2 22.2-30.9v-36z"], + "instagram": [448, 512, [], "f16d", "M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"], + "internet-explorer": [512, 512, [], "f26b", "M483.049 159.706c10.855-24.575 21.424-60.438 21.424-87.871 0-72.722-79.641-98.371-209.673-38.577-107.632-7.181-211.221 73.67-237.098 186.457 30.852-34.862 78.271-82.298 121.977-101.158C125.404 166.85 79.128 228.002 43.992 291.725 23.246 329.651 0 390.94 0 436.747c0 98.575 92.854 86.5 180.251 42.006 31.423 15.43 66.559 15.573 101.695 15.573 97.124 0 184.249-54.294 216.814-146.022H377.927c-52.509 88.593-196.819 52.996-196.819-47.436H509.9c6.407-43.581-1.655-95.715-26.851-141.162zM64.559 346.877c17.711 51.15 53.703 95.871 100.266 123.304-88.741 48.94-173.267 29.096-100.266-123.304zm115.977-108.873c2-55.151 50.276-94.871 103.98-94.871 53.418 0 101.981 39.72 103.981 94.871H180.536zm184.536-187.6c21.425-10.287 48.563-22.003 72.558-22.003 31.422 0 54.274 21.717 54.274 53.722 0 20.003-7.427 49.007-14.569 67.867-26.28-42.292-65.986-81.584-112.263-99.586z"], + "ioxhost": [640, 512, [], "f208", "M616 160h-67.3C511.2 70.7 422.9 8 320 8 183 8 72 119 72 256c0 16.4 1.6 32.5 4.7 48H24c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h67.3c37.5 89.3 125.8 152 228.7 152 137 0 248-111 248-248 0-16.4-1.6-32.5-4.7-48H616c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24zm-96 96c0 110.5-89.5 200-200 200-75.7 0-141.6-42-175.5-104H424c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24H125.8c-3.8-15.4-5.8-31.4-5.8-48 0-110.5 89.5-200 200-200 75.7 0 141.6 42 175.5 104H216c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h298.2c3.8 15.4 5.8 31.4 5.8 48zm-304-24h208c13.3 0 24 10.7 24 24 0 13.2-10.7 24-24 24H216c-13.3 0-24-10.7-24-24 0-13.2 10.7-24 24-24z"], + "itunes": [448, 512, [], "f3b4", "M223.6 80.3C129 80.3 52.5 157 52.5 251.5S129 422.8 223.6 422.8s171.2-76.7 171.2-171.2c0-94.6-76.7-171.3-171.2-171.3zm79.4 240c-3.2 13.6-13.5 21.2-27.3 23.8-12.1 2.2-22.2 2.8-31.9-5-11.8-10-12-26.4-1.4-36.8 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 3.2-3.6 2.2-2 2.2-80.8 0-5.6-2.7-7.1-8.4-6.1-4 .7-91.9 17.1-91.9 17.1-5 1.1-6.7 2.6-6.7 8.3 0 116.1.5 110.8-1.2 118.5-2.1 9-7.6 15.8-14.9 19.6-8.3 4.6-23.4 6.6-31.4 5.2-21.4-4-28.9-28.7-14.4-42.9 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 5-5.7.9-127 2.6-133.7.4-2.6 1.5-4.8 3.5-6.4 2.1-1.7 5.8-2.7 6.7-2.7 101-19 113.3-21.4 115.1-21.4 5.7-.4 9 3 9 8.7-.1 170.6.4 161.4-1 167.6zM345.2 32H102.8C45.9 32 0 77.9 0 134.8v242.4C0 434.1 45.9 480 102.8 480h242.4c57 0 102.8-45.9 102.8-102.8V134.8C448 77.9 402.1 32 345.2 32zM223.6 444c-106.3 0-192.5-86.2-192.5-192.5S117.3 59 223.6 59s192.5 86.2 192.5 192.5S329.9 444 223.6 444z"], + "itunes-note": [384, 512, [], "f3b5", "M381.9 388.2c-6.4 27.4-27.2 42.8-55.1 48-24.5 4.5-44.9 5.6-64.5-10.2-23.9-20.1-24.2-53.4-2.7-74.4 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 6.4-7.2 4.4-4.1 4.4-163.2 0-11.2-5.5-14.3-17-12.3-8.2 1.4-185.7 34.6-185.7 34.6-10.2 2.2-13.4 5.2-13.4 16.7 0 234.7 1.1 223.9-2.5 239.5-4.2 18.2-15.4 31.9-30.2 39.5-16.8 9.3-47.2 13.4-63.4 10.4-43.2-8.1-58.4-58-29.1-86.6 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 10.1-11.5 1.8-256.6 5.2-270.2.8-5.2 3-9.6 7.1-12.9 4.2-3.5 11.8-5.5 13.4-5.5 204-38.2 228.9-43.1 232.4-43.1 11.5-.8 18.1 6 18.1 17.6.2 344.5 1.1 326-1.8 338.5z"], + "java": [377, 512, [], "f4e4", "M121.6 396s-19.6 11.4 13.9 15.2c40.6 4.6 61.3 4 106-4.5 0 0 11.8 7.4 28.2 13.8C169.5 463.4 42.9 418 121.6 396m-12.2-56.1s-21.9 16.2 11.6 19.7c43.3 4.5 77.6 4.8 136.8-6.6 0 0 8.2 8.3 21.1 12.8-121.3 35.5-256.3 2.9-169.5-25.9m103.2-95.1c24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3.1 0-175.2 43.8-91.5 140.2m132.6 192.6s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6.7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2 204.2 33.2 372.4-14.9 319.4-38.8M131 281.8s-93.1 22.1-33 30.1c25.4 3.4 76 2.6 123.1-1.3 38.5-3.2 77.2-10.2 77.2-10.2s-13.6 5.8-23.4 12.5c-94.5 24.9-277 13.3-224.5-12.1 44.5-21.4 80.6-19 80.6-19m167 93.3c96.1-49.9 51.6-97.9 20.6-91.4-7.6 1.6-11 3-11 3s2.8-4.4 8.2-6.3c61.3-21.6 108.5 63.6-19.8 97.3 0-.1 1.5-1.4 2-2.6M240 0s53.2 53.2-50.5 135c-83.1 65.6-19 103.1 0 145.8-48.5-43.8-84.1-82.3-60.2-118.2C164.4 110.1 261.5 84.5 240 0m-99.5 510.4c92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6"], + "jedi-order": [448, 512, [], "f50e", "M231.89 335.72l31.44-45.89-20.18 55.5 62.56 9.09-62.56 9.08 24.22 47.43s-30.22-31.77-34.49-36.25c1.76 68.78 2.19 85.7 2.19 85.7s154.4-71.65 68.62-230.09c0 0 106.97-118.07 10.09-190.73 0 0 165.5 99.91 60.55 271.46 0 0 86.78-84.77 41.37-170.54 0 0 78.71 111.01-17.16 233.11 0 0 26.24-16.15 49.45-77.71 0 0-16.93 183.26-221.96 185.66v.02h-4.08v-.02C16.93 479.14 0 295.88 0 295.88c23.21 61.56 49.44 77.71 49.44 77.71-95.87-122.11-17.15-233.11-17.15-233.11-45.41 85.78 41.38 170.54 41.38 170.54-104.95-171.56 60.54-271.46 60.54-271.46-96.88 72.66 10.09 190.73 10.09 190.73-85.78 158.44 68.62 230.09 68.62 230.09s.43-16.93 2.19-85.7l-34.48 36.25 24.22-47.43-62.56-9.08 62.56-9.09-20.18-55.5 31.44 45.89c2.25-87.85 7.82-305.82 7.85-306.85l.01-2.43.02 1 .03-1 .01 2.43c.05 1.72 5.61 219.2 7.86 306.85z"], + "jenkins": [512, 512, [], "f3b6", "M487.1 425c-1.4-11.2-19-23.1-28.2-31.9-5.1-5-29-23.1-30.4-29.9-1.4-6.6 9.7-21.5 13.3-28.9 5.1-10.7 8.8-23.7 11.3-32.6 18.8-66.1 20.7-156.9-6.2-211.2-10.2-20.6-38.6-49-56.4-62.5-42-31.7-119.6-35.3-170.1-16.6-14.1 5.2-27.8 9.8-40.1 17.1-33.1 19.4-68.3 32.5-78.1 71.6-24.2 10.8-31.5 41.8-30.3 77.8.2 7 4.1 15.8 2.7 22.4-.7 3.3-5.2 7.6-6.1 9.8-11.6 27.7-2.3 64 11.1 83.7 8.1 11.9 21.5 22.4 39.2 25.2.7 10.6 3.3 19.7 8.2 30.4 3.1 6.8 14.7 19 10.4 27.7-2.2 4.4-21 13.8-27.3 17.6C89 407.2 73.7 415 54.2 429c-12.6 9-32.3 10.2-29.2 31.1 2.1 14.1 10.1 31.6 14.7 45.8.7 2 1.4 4.1 2.1 6h422c4.9-15.3 9.7-30.9 14.6-47.2 3.4-11.4 10.2-27.8 8.7-39.7zM205.9 33.7c1.8-.5 3.4.7 4.9 2.4-.2 5.2-5.4 5.1-8.9 6.8-5.4 6.7-13.4 9.8-20 17.2-6.8 7.5-14.4 27.7-23.4 30-4.5 1.1-9.7-.8-13.6-.5-10.4.7-17.7 6-28.3 7.5 13.6-29.9 56.1-54 89.3-63.4zm-104.8 93.6c13.5-14.9 32.1-24.1 54.8-25.9 11.7 29.7-8.4 65-.9 97.6 2.3 9.9 10.2 25.4-2.4 25.7.3-28.3-34.8-46.3-61.3-29.6-1.8-21.5-4.9-51.7 9.8-67.8zm36.7 200.2c-1-4.1-2.7-12.9-2.3-15.1 1.6-8.7 17.1-12.5 11-24.7-11.3-.1-13.8 10.2-24.1 11.3-26.7 2.6-45.6-35.4-44.4-58.4 1-19.5 17.6-38.2 40.1-35.8 16 1.8 21.4 19.2 24.5 34.7 9.2.5 22.5-.4 26.9-7.6-.6-17.5-8.8-31.6-8.2-47.7 1-30.3 17.5-57.6 4.8-87.4 13.6-30.9 53.5-55.3 83.1-70 36.6-18.3 94.9-3.7 129.3 15.8 19.7 11.1 34.4 32.7 48.3 50.7-19.5-5.8-36.1 4.2-33.1 20.3 16.3-14.9 44.2-.2 52.5 16.4 7.9 15.8 7.8 39.3 9 62.8 2.9 57-10.4 115.9-39.1 157.1-7.7 11-14.1 23-24.9 30.6-26 18.2-65.4 34.7-99.2 23.4-44.7-15-65-44.8-89.5-78.8.7 18.7 13.8 34.1 26.8 48.4 11.3 12.5 25 26.6 39.7 32.4-12.3-2.9-31.1-3.8-36.2 7.2-28.6-1.9-55.1-4.8-68.7-24.2-10.6-15.4-21.4-41.4-26.3-61.4zm222 124.1c4.1-3 11.1-2.9 17.4-3.6-5.4-2.7-13-3.7-19.3-2.2-.1-4.2-2-6.8-3.2-10.2 10.6-3.8 35.5-28.5 49.6-20.3 6.7 3.9 9.5 26.2 10.1 37 .4 9-.8 18-4.5 22.8-18.8-.6-35.8-2.8-50.7-7 .9-6.1-1-12.1.6-16.5zm-17.2-20c-16.8.8-26-1.2-38.3-10.8.2-.8 1.4-.5 1.5-1.4 18 8 40.8-3.3 59-4.9-7.9 5.1-14.6 11.6-22.2 17.1zm-12.1 33.2c-1.6-9.4-3.5-12-2.8-20.2 25-16.6 29.7 28.6 2.8 20.2zM226 438.6c-11.6-.7-48.1-14-38.5-23.7 9.4 6.5 27.5 4.9 41.3 7.3.8 4.4-2.8 10.2-2.8 16.4zM57.7 497.1c-4.3-12.7-9.2-25.1-14.8-36.9 30.8-23.8 65.3-48.9 102.2-63.5 2.8-1.1 23.2 25.4 26.2 27.6 16.5 11.7 37 21 56.2 30.2 1.2 8.8 3.9 20.2 8.7 35.5.7 2.3 1.4 4.7 2.2 7.2H57.7zm240.6 5.7h-.8c.3-.2.5-.4.8-.5v.5zm7.5-5.7c2.1-1.4 4.3-2.8 6.4-4.3 1.1 1.4 2.2 2.8 3.2 4.3h-9.6zm15.1-24.7c-10.8 7.3-20.6 18.3-33.3 25.2-6 3.3-27 11.7-33.4 10.2-3.6-.8-3.9-5.3-5.4-9.5-3.1-9-10.1-23.4-10.8-37-.8-17.2-2.5-46 16-42.4 14.9 2.9 32.3 9.7 43.9 16.1 7.1 3.9 11.1 8.6 21.9 9.5-.1 1.4-.1 2.8-.2 4.3-5.9 3.9-15.3 3.8-21.8 7.1 9.5.4 17 2.7 23.5 5.9-.1 3.4-.3 7-.4 10.6zm53.4 24.7h-14c-.1-3.2-2.8-5.8-6.1-5.8s-5.9 2.6-6.1 5.8h-17.4c-2.8-4.4-5.7-8.6-8.9-12.5 2.1-2.2 4-4.7 6-6.9 9 3.7 14.8-4.9 21.7-4.2 7.9.8 14.2 11.7 25.4 11l-.6 12.6zm8.7 0c.2-4 .4-7.8.6-11.5 15.6-7.3 29 1.3 35.7 11.5H383zm83.4-37c-2.3 11.2-5.8 24-9.9 37.1-.2-.1-.4-.1-.6-.1H428c.6-1.1 1.2-2.2 1.9-3.3-2.6-6.1-9-8.7-10.9-15.5 12.1-22.7 6.5-93.4-24.2-78.5 4.3-6.3 15.6-11.5 20.8-19.3 13 10.4 20.8 20.3 33.2 31.4 6.8 6 20 13.3 21.4 23.1.8 5.5-2.6 18.9-3.8 25.1zM222.2 130.5c5.4-14.9 27.2-34.7 45-32 7.7 1.2 18 8.2 12.2 17.7-30.2-7-45.2 12.6-54.4 33.1-8.1-2-4.9-13.1-2.8-18.8zm184.1 63.1c8.2-3.6 22.4-.7 29.6-5.3-4.2-11.5-10.3-21.4-9.3-37.7.5 0 1 0 1.4.1 6.8 14.2 12.7 29.2 21.4 41.7-5.7 13.5-43.6 25.4-43.1 1.2zm20.4-43zm-117.2 45.7c-6.8-10.9-19-32.5-14.5-45.3 6.5 11.9 8.6 24.4 17.8 33.3 4.1 4 12.2 9 8.2 20.2-.9 2.7-7.8 8.6-11.7 9.7-14.4 4.3-47.9.9-36.6-17.1 11.9.7 27.9 7.8 36.8-.8zm27.3 70c3.8 6.6 1.4 18.7 12.1 20.6 20.2 3.4 43.6-12.3 58.1-17.8 9-15.2-.8-20.7-8.9-30.5-16.6-20-38.8-44.8-38-74.7 6.7-4.9 7.3 7.4 8.2 9.7 8.7 20.3 30.4 46.2 46.3 63.5 3.9 4.3 10.3 8.4 11 11.2 2.1 8.2-5.4 18-4.5 23.5-21.7 13.9-45.8 29.1-81.4 25.6-7.4-6.7-10.3-21.4-2.9-31.1zm-201.3-9.2c-6.8-3.9-8.4-21-16.4-21.4-11.4-.7-9.3 22.2-9.3 35.5-7.8-7.1-9.2-29.1-3.5-40.3-6.6-3.2-9.5 3.6-13.1 5.9 4.7-34.1 49.8-15.8 42.3 20.3zm299.6 28.8c-10.1 19.2-24.4 40.4-54 41-.6-6.2-1.1-15.6 0-19.4 22.7-2.2 36.6-13.7 54-21.6zm-141.9 12.4c18.9 9.9 53.6 11 79.3 10.2 1.4 5.6 1.3 12.6 1.4 19.4-33 1.8-72-6.4-80.7-29.6zm92.2 46.7c-1.7 4.3-5.3 9.3-9.8 11.1-12.1 4.9-45.6 8.7-62.4-.3-10.7-5.7-17.5-18.5-23.4-26-2.8-3.6-16.9-12.9-.2-12.9 13.1 32.7 58 29 95.8 28.1z"], + "joget": [496, 512, [], "f3b7", "M227.5 468.7c-9-13.6-19.9-33.3-23.7-42.4-5.7-13.7-27.2-45.6 31.2-67.1 51.7-19.1 176.7-16.5 208.8-17.6-4 9-8.6 17.9-13.9 26.6-40.4 65.5-110.4 101.5-182 101.5-6.8 0-13.6-.4-20.4-1M66.1 143.9C128 43.4 259.6 12.2 360.1 74.1c74.8 46.1 111.2 130.9 99.3 212.7-24.9-.5-179.3-3.6-230.3-4.9-55.5-1.4-81.7-20.8-58.5-48.2 23.2-27.4 51.1-40.7 68.9-51.2 17.9-10.5 27.3-33.7-23.6-29.7C87.3 161.5 48.6 252.1 37.6 293c-8.8-49.7-.1-102.7 28.5-149.1m-29.2-18c-71.9 116.6-35.6 269.3 81 341.2 116.6 71.9 269.3 35.6 341.2-80.9 71.9-116.6 35.6-269.4-81-341.2-40.5-25.1-85.5-37-129.9-37C165 8 83.8 49.9 36.9 125.9m244.4 110.4c-31.5 20.5-65.3 31.3-65.3 31.3l169.5-1.6 46.5-23.4s3.6-9.5-19.1-15.5c-22.7-6-57 11.3-86.7 27.2-29.7 15.8-31.1 8.2-31.1 8.2s40.2-28.1 50.7-34.5c10.5-6.4 31.9-14 13.4-24.6-3.2-1.8-6.7-2.7-10.4-2.7-17.8 0-41.5 18.7-67.5 35.6"], + "joomla": [448, 512, [], "f1aa", "M.6 92.1C.6 58.8 27.4 32 60.4 32c30 0 54.5 21.9 59.2 50.2 32.6-7.6 67.1.6 96.5 30l-44.3 44.3c-20.5-20.5-42.6-16.3-55.4-3.5-14.3 14.3-14.3 37.9 0 52.2l99.5 99.5-44 44.3c-87.7-87.2-49.7-49.7-99.8-99.7-26.8-26.5-35-64.8-24.8-98.9C20.4 144.6.6 120.7.6 92.1zm129.5 116.4l44.3 44.3c10-10 89.7-89.7 99.7-99.8 14.3-14.3 37.6-14.3 51.9 0 12.8 12.8 17 35-3.5 55.4l44 44.3c31.2-31.2 38.5-67.6 28.9-101.2 29.2-4.1 51.9-29.2 51.9-59.5 0-33.2-26.8-60.1-59.8-60.1-30.3 0-55.4 22.5-59.5 51.6-33.8-9.9-71.7-1.5-98.3 25.1-18.3 19.1-71.1 71.5-99.6 99.9zm266.3 152.2c8.2-32.7-.9-68.5-26.3-93.9-11.8-12.2 5 4.7-99.5-99.7l-44.3 44.3 99.7 99.7c14.3 14.3 14.3 37.6 0 51.9-12.8 12.8-35 17-55.4-3.5l-44 44.3c27.6 30.2 68 38.8 102.7 28 5.5 27.4 29.7 48.1 58.9 48.1 33 0 59.8-26.8 59.8-60.1 0-30.2-22.5-55-51.6-59.1zm-84.3-53.1l-44-44.3c-87 86.4-50.4 50.4-99.7 99.8-14.3 14.3-37.6 14.3-51.9 0-13.1-13.4-16.9-35.3 3.2-55.4l-44-44.3c-30.2 30.2-38 65.2-29.5 98.3-26.7 6-46.2 29.9-46.2 58.2C0 453.2 26.8 480 59.8 480c28.6 0 52.5-19.8 58.6-46.7 32.7 8.2 68.5-.6 94.2-26 32.1-32 12.2-12.4 99.5-99.7z"], + "js": [448, 512, [], "f3b8", "M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"], + "js-square": [448, 512, [], "f3b9", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM243.8 381.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"], + "jsfiddle": [576, 512, [], "f1cc", "M510.634 237.462c-4.727-2.621-5.664-5.748-6.381-10.776-2.352-16.488-3.539-33.619-9.097-49.095-35.895-99.957-153.99-143.386-246.849-91.646-27.37 15.25-48.971 36.369-65.493 63.903-3.184-1.508-5.458-2.71-7.824-3.686-30.102-12.421-59.049-10.121-85.331 9.167-25.531 18.737-36.422 44.548-32.676 76.408.355 3.025-1.967 7.621-4.514 9.545-39.712 29.992-56.031 78.065-41.902 124.615 13.831 45.569 57.514 79.796 105.608 81.433 30.291 1.031 60.637.546 90.959.539 84.041-.021 168.09.531 252.12-.48 52.664-.634 96.108-36.873 108.212-87.293 11.54-48.074-11.144-97.3-56.832-122.634zm21.107 156.88c-18.23 22.432-42.343 35.253-71.28 35.65-56.874.781-113.767.23-170.652.23 0 .7-163.028.159-163.728.154-43.861-.332-76.739-19.766-95.175-59.995-18.902-41.245-4.004-90.848 34.186-116.106 9.182-6.073 12.505-11.566 10.096-23.136-5.49-26.361 4.453-47.956 26.42-62.981 22.987-15.723 47.422-16.146 72.034-3.083 10.269 5.45 14.607 11.564 22.198-2.527 14.222-26.399 34.557-46.727 60.671-61.294 97.46-54.366 228.37 7.568 230.24 132.697.122 8.15 2.412 12.428 9.848 15.894 57.56 26.829 74.456 96.122 35.142 144.497zm-87.789-80.499c-5.848 31.157-34.622 55.096-66.666 55.095-16.953-.001-32.058-6.545-44.079-17.705-27.697-25.713-71.141-74.98-95.937-93.387-20.056-14.888-41.99-12.333-60.272 3.782-49.996 44.071 15.859 121.775 67.063 77.188 4.548-3.96 7.84-9.543 12.744-12.844 8.184-5.509 20.766-.884 13.168 10.622-17.358 26.284-49.33 38.197-78.863 29.301-28.897-8.704-48.84-35.968-48.626-70.179 1.225-22.485 12.364-43.06 35.414-55.965 22.575-12.638 46.369-13.146 66.991 2.474C295.68 280.7 320.467 323.97 352.185 343.47c24.558 15.099 54.254 7.363 68.823-17.506 28.83-49.209-34.592-105.016-78.868-63.46-3.989 3.744-6.917 8.932-11.41 11.72-10.975 6.811-17.333-4.113-12.809-10.353 20.703-28.554 50.464-40.44 83.271-28.214 31.429 11.714 49.108 44.366 42.76 78.186z"], + "keybase": [412, 512, [], "f4f5", "M177.2 430.9c0 9.8-8 17.8-17.8 17.8s-17.8-8-17.8-17.8 8-17.8 17.8-17.8c9.8-.1 17.8 7.9 17.8 17.8zM270 413c-9.8 0-17.8 8-17.8 17.8s8 17.8 17.8 17.8 17.8-8 17.8-17.8-8-17.8-17.8-17.8zm142.3-36c0 38.9-7.6 73.9-22.2 103h-27.3c23.5-38.7 30.5-94.8 22.4-134.3-16.1 29.5-52.1 38.6-85.9 28.8-127.8-37.5-192.5 19.7-234.6 50.3l18.9-59.3-39.9 42.3c4.8 26.7 15.7 51.3 31.2 72.3H46.1c-9.7-15.8-17.2-33-22.2-51.3L.1 454c0-74.9-5.5-147.6 61.5-215.2 20.2-20.4 43.7-36.2 69.1-46.7-6.8-13.5-9.5-29.2-7.8-46l-19.9-1.2c-17.9-1.1-31.6-16.5-30.6-34.4v-.1L74 84.2c1.1-17.1 15.4-30.6 32.5-30.6 1.3 0-.3-.1 28.2 1.7 13.9.8 21.5 9.8 22.8 11.4 7.1-10.4 14.5-20.5 24.6-34.5l20.6 12.1c-13.6 29-9.1 36.2-9 36.3 3.9 0 13.9-.5 32.4 5.7C246 92.9 262 107 271 126c.4.9 15.5 29 1.2 62.6 19 6.1 51.3 19.9 82.4 51.8 36.6 37.6 57.7 87.4 57.7 136.6zM128 122.3c3.2-10 7.7-19.7 13.1-29.4.1-2 2.2-13.1-7.8-13.8-28.5-1.8-26.3-1.6-26.7-1.6-4.6 0-8.3 3.5-8.6 8.1l-1.6 26.2c-.3 4.7 3.4 8.8 8.1 9.1l23.5 1.4zm25.8 61.8c5.6 9.4 14.1 16.1 22.3 20 0-21.2 28.5-41.9 52.8-17.5l8.4 10.3c20.8-18.8 19.4-45.3 12.1-60.9-13.8-29.1-46.9-32-54.3-31.7-10.3.4-19.7-5.4-23.7-15.3-13.7 21.2-37.2 62.5-17.6 95.1zm82.9 68.4L217 268.6c-1.9 1.6-2.2 4.4-.6 6.3l8.9 10.9c1 1.2 3.8 2.7 6.3.6l19.6-16 5.5 6.8c4.9 6 13.8-1.4 9-7.3-63.6-78.3-41.5-51.1-55.3-68.1-4.7-6-13.9 1.4-9 7.3 1.9 2.3 18.4 22.6 19.8 24.3l-9.6 7.9c-4.6 3.8 2.6 13.3 7.4 9.4l9.7-8 8 9.8zm118.4 25.7c-16.9-23.7-42.6-46.7-73.4-60.4-7.9-3.5-15-6.1-22.9-8.6-2 2.2-4.1 4.3-6.4 6.2l31.9 39.2c10.4 12.7 8.5 31.5-4.2 41.9-1.3 1.1-13.1 10.7-29 4.9-2.9 2.3-10.1 9.9-22.2 9.9-8.6 0-16.6-3.8-22.1-10.5l-8.9-10.9c-6.3-7.8-7.9-17.9-5-26.8-8.2-9.9-8.3-21.3-4.6-30-7.2-1.3-26.7-6.2-42.7-21.4-55.8 20.7-88 64.4-101.3 91.2-14.9 30.2-18.8 60.9-19.9 90.2 8.2-8.7-3.9 4.1 114-120.9l-29.9 93.6c57.8-31.1 124-36 197.4-14.4 23.6 6.9 45.1 1.6 56-13.9 11.1-15.6 8.5-37.7-6.8-59.3zM110.6 107.3l15.6 1 1-15.6-15.6-1-1 15.6z"], + "keycdn": [512, 512, [], "f3ba", "M63.8 409.3l60.5-59c32.1 42.8 71.1 66 126.6 67.4 30.5.7 60.3-7 86.4-22.4 5.1 5.3 18.5 19.5 20.9 22-32.2 20.7-69.6 31.1-108.1 30.2-43.3-1.1-84.6-16.7-117.7-44.4.3-.6-38.2 37.5-38.6 37.9 9.5 29.8-13.1 62.4-46.3 62.4C20.7 503.3 0 481.7 0 454.9c0-34.3 33.1-56.6 63.8-45.6zm354.9-252.4c19.1 31.3 29.6 67.4 28.7 104-1.1 44.8-19 87.5-48.6 121 .3.3 23.8 25.2 24.1 25.5 9.6-1.3 19.2 2 25.9 9.1 11.3 12 10.9 30.9-1.1 42.4-12 11.3-30.9 10.9-42.4-1.1-6.7-7-9.4-16.8-7.6-26.3-24.9-26.6-44.4-47.2-44.4-47.2 42.7-34.1 63.3-79.6 64.4-124.2.7-28.9-7.2-57.2-21.1-82.2l22.1-21zM104 53.1c6.7 7 9.4 16.8 7.6 26.3l45.9 48.1c-4.7 3.8-13.3 10.4-22.8 21.3-25.4 28.5-39.6 64.8-40.7 102.9-.7 28.9 6.1 57.2 20 82.4l-22 21.5C72.7 324 63.1 287.9 64.2 250.9c1-44.6 18.3-87.6 47.5-121.1l-25.3-26.4c-9.6 1.3-19.2-2-25.9-9.1-11.3-12-10.9-30.9 1.1-42.4C73.5 40.7 92.2 41 104 53.1zM464.9 8c26 0 47.1 22.4 47.1 48.3S490.9 104 464.9 104c-6.3.1-14-1.1-15.9-1.8l-62.9 59.7c-32.7-43.6-76.7-65.9-126.9-67.2-30.5-.7-60.3 6.8-86.2 22.4l-21.1-22C184.1 74.3 221.5 64 260 64.9c43.3 1.1 84.6 16.7 117.7 44.6l41.1-38.6c-1.5-4.7-2.2-9.6-2.2-14.5C416.5 29.7 438.9 8 464.9 8zM256.7 113.4c5.5 0 10.9.4 16.4 1.1 78.1 9.8 133.4 81.1 123.8 159.1-9.8 78.1-81.1 133.4-159.1 123.8-78.1-9.8-133.4-81.1-123.8-159.2 9.3-72.4 70.1-124.6 142.7-124.8zm-59 119.4c.6 22.7 12.2 41.8 32.4 52.2l-11 51.7h73.7l-11-51.7c20.1-10.9 32.1-29 32.4-52.2-.4-32.8-25.8-57.5-58.3-58.3-32.1.8-57.3 24.8-58.2 58.3zM256 160"], + "kickstarter": [448, 512, [], "f3bb", "M400 480H48c-26.4 0-48-21.6-48-48V80c0-26.4 21.6-48 48-48h352c26.4 0 48 21.6 48 48v352c0 26.4-21.6 48-48 48zM199.6 178.5c0-30.7-17.6-45.1-39.7-45.1-25.8 0-40 19.8-40 44.5v154.8c0 25.8 13.7 45.6 40.5 45.6 21.5 0 39.2-14 39.2-45.6v-41.8l60.6 75.7c12.3 14.9 39 16.8 55.8 0 14.6-15.1 14.8-36.8 4-50.4l-49.1-62.8 40.5-58.7c9.4-13.5 9.5-34.5-5.6-49.1-16.4-15.9-44.6-17.3-61.4 7l-44.8 64.7v-38.8z"], + "kickstarter-k": [384, 512, [], "f3bc", "M147.3 114.4c0-56.2-32.5-82.4-73.4-82.4C26.2 32 0 68.2 0 113.4v283c0 47.3 25.3 83.4 74.9 83.4 39.8 0 72.4-25.6 72.4-83.4v-76.5l112.1 138.3c22.7 27.2 72.1 30.7 103.2 0 27-27.6 27.3-67.4 7.4-92.2l-90.8-114.8 74.9-107.4c17.4-24.7 17.5-63.1-10.4-89.8-30.3-29-82.4-31.6-113.6 12.8L147.3 185v-70.6z"], + "korvue": [446, 512, [], "f42f", "M386.5 34h-327C26.8 34 0 60.8 0 93.5v327.1C0 453.2 26.8 480 59.5 480h327.1c33 0 59.5-26.8 59.5-59.5v-327C446 60.8 419.2 34 386.5 34zM87.1 120.8h96v116l61.8-116h110.9l-81.2 132H87.1v-132zm161.8 272.1l-65.7-113.6v113.6h-96V262.1h191.5l88.6 130.8H248.9z"], + "laravel": [640, 512, [], "f3bd", "M637.5 241.6c-4.2-4.8-62.8-78.1-73.1-90.5-10.3-12.4-15.4-10.2-21.7-9.3-6.4.9-80.5 13.4-89.1 14.8-8.6 1.5-14 4.9-8.7 12.3 4.7 6.6 53.4 75.7 64.2 90.9l-193.7 46.4L161.2 48.7c-6.1-9.1-7.4-12.3-21.4-11.6-14 .6-120.9 9.5-128.5 10.2-7.6.6-16 4-8.4 22s129 279.6 132.4 287.2c3.4 7.6 12.2 20 32.8 15 21.1-5.1 94.3-24.2 134.3-34.7 21.1 38.3 64.2 115.9 72.2 127 10.6 14.9 18 12.4 34.3 7.4 12.8-3.9 199.6-71.1 208-74.5 8.4-3.5 13.6-5.9 7.9-14.4-4.2-6.2-53.5-72.2-79.3-106.8 17.7-4.7 80.6-21.4 87.3-23.3 7.9-2 9-5.8 4.7-10.6zm-352.2 72c-2.3.5-110.8 26.5-116.6 27.8-5.8 1.3-5.8.7-6.5-1.3-.7-2-129-266.7-130.8-270-1.8-3.3-1.7-5.9 0-5.9s102.5-9 106-9.2c3.6-.2 3.2.6 4.5 2.8 0 0 142.2 245.4 144.6 249.7 2.6 4.3 1.1 5.6-1.2 6.1zm306 57.4c1.7 2.7 3.5 4.5-2 6.4-5.4 2-183.7 62.1-187.1 63.6-3.5 1.5-6.2 2-10.6-4.5s-62.4-106.8-62.4-106.8L518 280.6c4.7-1.5 6.2-2.5 9.2 2.2 2.9 4.8 62.4 85.5 64.1 88.2zm12.1-134.1c-4.2.9-73.6 18.1-73.6 18.1l-56.7-77.8c-1.6-2.3-2.9-4.5 1.1-5s68.4-12.2 71.3-12.8c2.9-.7 5.4-1.5 9 3.4 3.6 4.9 52.6 67 54.5 69.4 1.8 2.3-1.4 3.7-5.6 4.7z"], + "lastfm": [512, 512, [], "f202", "M225.8 367.1l-18.8-51s-30.5 34-76.2 34c-40.5 0-69.2-35.2-69.2-91.5 0-72.1 36.4-97.9 72.1-97.9 66.5 0 74.8 53.3 100.9 134.9 18.8 56.9 54 102.6 155.4 102.6 72.7 0 122-22.3 122-80.9 0-72.9-62.7-80.6-115-92.1-25.8-5.9-33.4-16.4-33.4-34 0-19.9 15.8-31.7 41.6-31.7 28.2 0 43.4 10.6 45.7 35.8l58.6-7c-4.7-52.8-41.1-74.5-100.9-74.5-52.8 0-104.4 19.9-104.4 83.9 0 39.9 19.4 65.1 68 76.8 44.9 10.6 79.8 13.8 79.8 45.7 0 21.7-21.1 30.5-61 30.5-59.2 0-83.9-31.1-97.9-73.9-32-96.8-43.6-163-161.3-163C45.7 113.8 0 168.3 0 261c0 89.1 45.7 137.2 127.9 137.2 66.2 0 97.9-31.1 97.9-31.1z"], + "lastfm-square": [448, 512, [], "f203", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-92.2 312.9c-63.4 0-85.4-28.6-97.1-64.1-16.3-51-21.5-84.3-63-84.3-22.4 0-45.1 16.1-45.1 61.2 0 35.2 18 57.2 43.3 57.2 28.6 0 47.6-21.3 47.6-21.3l11.7 31.9s-19.8 19.4-61.2 19.4c-51.3 0-79.9-30.1-79.9-85.8 0-57.9 28.6-92 82.5-92 73.5 0 80.8 41.4 100.8 101.9 8.8 26.8 24.2 46.2 61.2 46.2 24.9 0 38.1-5.5 38.1-19.1 0-19.9-21.8-22-49.9-28.6-30.4-7.3-42.5-23.1-42.5-48 0-40 32.3-52.4 65.2-52.4 37.4 0 60.1 13.6 63 46.6l-36.7 4.4c-1.5-15.8-11-22.4-28.6-22.4-16.1 0-26 7.3-26 19.8 0 11 4.8 17.6 20.9 21.3 32.7 7.1 71.8 12 71.8 57.5.1 36.7-30.7 50.6-76.1 50.6z"], + "leanpub": [576, 512, [], "f212", "M386.539 111.485l15.096 248.955-10.979-.275c-36.232-.824-71.64 8.783-102.657 27.997-31.016-19.214-66.424-27.997-102.657-27.997-45.564 0-82.07 10.705-123.516 27.723L93.117 129.6c28.546-11.803 61.484-18.115 92.226-18.115 41.173 0 73.836 13.175 102.657 42.544 27.723-28.271 59.013-41.721 98.539-42.544zM569.07 448c-25.526 0-47.485-5.215-70.542-15.645-34.31-15.645-69.993-24.978-107.871-24.978-38.977 0-74.934 12.901-102.657 40.623-27.723-27.723-63.68-40.623-102.657-40.623-37.878 0-73.561 9.333-107.871 24.978C55.239 442.236 32.731 448 8.303 448H6.93L49.475 98.859C88.726 76.626 136.486 64 181.775 64 218.83 64 256.984 71.685 288 93.095 319.016 71.685 357.17 64 394.225 64c45.289 0 93.049 12.626 132.3 34.859L569.07 448zm-43.368-44.741l-34.036-280.246c-30.742-13.999-67.248-21.41-101.009-21.41-38.428 0-74.385 12.077-102.657 38.702-28.272-26.625-64.228-38.702-102.657-38.702-33.761 0-70.267 7.411-101.009 21.41L50.298 403.259c47.211-19.487 82.894-33.486 135.045-33.486 37.604 0 70.817 9.606 102.657 29.644 31.84-20.038 65.052-29.644 102.657-29.644 52.151 0 87.834 13.999 135.045 33.486z"], + "less": [640, 512, [], "f41d", "M612.7 219c0-20.5 3.2-32.6 3.2-54.6 0-34.2-12.6-45.2-40.5-45.2h-20.5v24.2h6.3c14.2 0 17.3 4.7 17.3 22.1 0 16.3-1.6 32.6-1.6 51.5 0 24.2 7.9 33.6 23.6 37.3v1.6c-15.8 3.7-23.6 13.1-23.6 37.3 0 18.9 1.6 34.2 1.6 51.5 0 17.9-3.7 22.6-17.3 22.6v.5h-6.3V393h20.5c27.8 0 40.5-11 40.5-45.2 0-22.6-3.2-34.2-3.2-54.6 0-11 6.8-22.6 27.3-23.6v-27.3c-20.5-.7-27.3-12.3-27.3-23.3zm-105.6 32c-15.8-6.3-30.5-10-30.5-20.5 0-7.9 6.3-12.6 17.9-12.6s22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-21 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51s-22.5-41-43-47.8zm-358.9 59.4c-3.7 0-8.4-3.2-8.4-13.1V119.1H65.2c-28.4 0-41 11-41 45.2 0 22.6 3.2 35.2 3.2 54.6 0 11-6.8 22.6-27.3 23.6v27.3c20.5.5 27.3 12.1 27.3 23.1 0 19.4-3.2 31-3.2 53.6 0 34.2 12.6 45.2 40.5 45.2h20.5v-24.2h-6.3c-13.1 0-17.3-5.3-17.3-22.6s1.6-32.1 1.6-51.5c0-24.2-7.9-33.6-23.6-37.3v-1.6c15.8-3.7 23.6-13.1 23.6-37.3 0-18.9-1.6-34.2-1.6-51.5s3.7-22.1 17.3-22.1H93v150.8c0 32.1 11 53.1 43.1 53.1 10 0 17.9-1.6 23.6-3.7l-5.3-34.2c-3.1.8-4.6.8-6.2.8zM379.9 251c-16.3-6.3-31-10-31-20.5 0-7.9 6.3-12.6 17.9-12.6 11.6 0 22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-20.5 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51 .1-28.9-22.5-41-43-47.8zm-155-68.8c-38.4 0-75.1 32.1-74.1 82.5 0 52 34.2 82.5 79.3 82.5 18.9 0 39.9-6.8 56.2-17.9l-15.8-27.8c-11.6 6.8-22.6 10-34.2 10-21 0-37.3-10-41.5-34.2H290c.5-3.7 1.6-11 1.6-19.4.6-42.6-22.6-75.7-66.7-75.7zm-30 66.2c3.2-21 15.8-31 30.5-31 18.9 0 26.3 13.1 26.3 31h-56.8z"], + "line": [448, 512, [], "f3c0", "M272.1 204.2v71.1c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.1 0-2.1-.6-2.6-1.3l-32.6-44v42.2c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.8 0-3.2-1.4-3.2-3.2v-71.1c0-1.8 1.4-3.2 3.2-3.2H219c1 0 2.1.5 2.6 1.4l32.6 44v-42.2c0-1.8 1.4-3.2 3.2-3.2h11.4c1.8-.1 3.3 1.4 3.3 3.1zm-82-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 1.8 1.4 3.2 3.2 3.2h11.4c1.8 0 3.2-1.4 3.2-3.2v-71.1c0-1.7-1.4-3.2-3.2-3.2zm-27.5 59.6h-31.1v-56.4c0-1.8-1.4-3.2-3.2-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 .9.3 1.6.9 2.2.6.5 1.3.9 2.2.9h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.7-1.4-3.2-3.1-3.2zM332.1 201h-45.7c-1.7 0-3.2 1.4-3.2 3.2v71.1c0 1.7 1.4 3.2 3.2 3.2h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2V234c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2v-11.4c-.1-1.7-1.5-3.2-3.2-3.2zM448 113.7V399c-.1 44.8-36.8 81.1-81.7 81H81c-44.8-.1-81.1-36.9-81-81.7V113c.1-44.8 36.9-81.1 81.7-81H367c44.8.1 81.1 36.8 81 81.7zm-61.6 122.6c0-73-73.2-132.4-163.1-132.4-89.9 0-163.1 59.4-163.1 132.4 0 65.4 58 120.2 136.4 130.6 19.1 4.1 16.9 11.1 12.6 36.8-.7 4.1-3.3 16.1 14.1 8.8 17.4-7.3 93.9-55.3 128.2-94.7 23.6-26 34.9-52.3 34.9-81.5z"], + "linkedin": [448, 512, [], "f08c", "M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"], + "linkedin-in": [448, 512, [], "f0e1", "M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"], + "linode": [448, 512, [], "f2b8", "M437.4 226.3c-.3-.9-.9-1.4-1.4-2l-70-38.6c-.9-.6-2-.6-3.1 0l-58.9 36c-.9.6-1.4 1.7-1.4 2.6l-.9 31.4-24-16c-.9-.6-2.3-.6-3.1 0L240 260.9l-1.4-35.1c0-.9-.6-2-1.4-2.3l-36-24.3 33.7-17.4c1.1-.6 1.7-1.7 1.7-2.9l-5.7-132.3c0-.9-.9-2-1.7-2.6L138.6.3c-.9-.3-1.7-.3-2.3-.3L12.6 38.6c-1.4.6-2.3 2-2 3.7L38 175.4c.9 3.4 34 27.4 38.6 30.9l-26.9 12.9c-1.4.9-2 2.3-1.7 3.4l20.6 100.3c.6 2.9 23.7 23.1 27.1 26.3l-17.4 10.6c-.9.6-1.7 2-1.4 3.1 1.4 7.1 15.4 77.7 16.9 79.1l65.1 69.1c.6.6 1.4.6 2.3.9.6 0 1.1-.3 1.7-.6l83.7-66.9c.9-.6 1.1-1.4 1.1-2.3l-2-46 28 23.7c1.1.9 2.9.9 4 0l66.9-53.4c.9-.6 1.1-1.4 1.1-2.3l2.3-33.4 20.3 14c1.1.9 2.6.9 3.7 0l54.6-43.7c.6-.3 1.1-1.1 1.1-2 .9-6.5 10.3-70.8 9.7-72.8zm-204.8 4.8l4 92.6-90.6 61.2-14-96.6 100.6-57.2zm-7.7-180l5.4 126-106.6 55.4L104 97.7l120.9-46.6zM44 173.1L18 48l79.7 49.4 19.4 132.9L44 173.1zm30.6 147.8L55.7 230l70 58.3 13.7 93.4-64.8-60.8zm24.3 117.7l-13.7-67.1 61.7 60.9 9.7 67.4-57.7-61.2zm64.5 64.5l-10.6-70.9 85.7-61.4 3.1 70-78.2 62.3zm82-115.1c0-3.4.9-22.9-2-25.1l-24.3-20 22.3-14.9c2.3-1.7 1.1-5.7 1.1-8l29.4 22.6.6 68.3-27.1-22.9zm94.3-25.4l-60.9 48.6-.6-68.6 65.7-46.9-4.2 66.9zm27.7-25.7l-19.1-13.4 2-34c.3-.9-.3-2-1.1-2.6L308 259.7l.6-30 64.6 40.6-5.8 66.6zm54.6-39.8l-48.3 38.3 5.7-65.1 51.1-36.6-8.5 63.4z"], + "linux": [448, 512, [], "f17c", "M196.1 123.6c-.2-1.4 1.9-2.3 3.2-2.9 1.7-.7 3.9-1 5.5-.1.4.2.8.7.6 1.1-.4 1.2-2.4 1-3.5 1.6-1 .5-1.8 1.7-3 1.7-1 .1-2.7-.4-2.8-1.4zm24.7-.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm214.7 310.2c-.5 8.2-6.5 13.8-13.9 18.3-14.9 9-37.3 15.8-50.9 32.2l-2.6-2.2 2.6 2.2c-14.2 16.9-31.7 26.6-48.3 27.9-16.5 1.3-32-6.3-40.3-23v-.1c-1.1-2.1-1.9-4.4-2.5-6.7-21.5 1.2-40.2-5.3-55.1-4.1-22 1.2-35.8 6.5-48.3 6.6-4.8 10.6-14.3 17.6-25.9 20.2-16 3.7-36.1 0-55.9-10.4l1.6-3-1.6 3c-18.5-9.8-42-8.9-59.3-12.5-8.7-1.8-16.3-5-20.1-12.3-3.7-7.3-3-17.3 2.2-31.7 1.7-5.1.4-12.7-.8-20.8-.6-3.9-1.2-7.9-1.2-11.8 0-4.3.7-8.5 2.8-12.4 4.5-8.5 11.8-12.1 18.5-14.5 6.7-2.4 12.8-4 17-8.3 5.2-5.5 10.1-14.4 16.6-20.2-2.6-17.2.2-35.4 6.2-53.3 12.6-37.9 39.2-74.2 58.1-96.7 16.1-22.9 20.8-41.3 22.5-64.7C158 103.4 132.4-.2 234.8 0c80.9.1 76.3 85.4 75.8 131.3-.3 30.1 16.3 50.5 33.4 72 15.2 18 35.1 44.3 46.5 74.4 9.3 24.6 12.9 51.8 3.7 79.1 1.4.5 2.8 1.2 4.1 2 1.4.8 2.7 1.8 4 2.9 6.6 5.6 8.7 14.3 10.5 22.4 1.9 8.1 3.6 15.7 7.2 19.7 11.1 12.4 15.9 21.5 15.5 29.7zM220.8 109.1c3.6.9 8.9 2.4 13 4.4-2.1-12.2 4.5-23.5 11.8-23 8.9.3 13.9 15.5 9.1 27.3-.8 1.9-2.8 3.4-3.9 4.6 6.7 2.3 11 4.1 12.6 4.9 7.9-9.5 10.8-26.2 4.3-40.4-9.8-21.4-34.2-21.8-44 .4-3.2 7.2-3.9 14.9-2.9 21.8zm-46.2 18.8c7.8-5.7 6.9-4.7 5.9-5.5-8-6.9-6.6-27.4 1.8-28.1 6.3-.5 10.8 10.7 9.6 19.6 3.1-2.1 6.7-3.6 10.2-4.6 1.7-19.3-9-33.5-19.1-33.5-18.9 0-24 37.5-8.4 52.1zm-9.4 20.9c1.5 4.9 6.1 10.5 14.7 15.3 7.8 4.6 12 11.5 20 15 2.6 1.1 5.7 1.9 9.6 2.1 18.4 1.1 27.1-11.3 38.2-14.9 11.7-3.7 20.1-11 22.7-18.1 3.2-8.5-2.1-14.7-10.5-18.2-11.3-4.9-16.3-5.2-22.6-9.3-10.3-6.6-18.8-8.9-25.9-8.9-14.4 0-23.2 9.8-27.9 14.2-.5.5-7.9 5.9-14.1 10.5-4.2 3.3-5.6 7.4-4.2 12.3zm-33.5 252.8L112.1 366c-6.8-9.2-13.8-14.8-21.9-16-7.7-1.2-12.6 1.4-17.7 6.9-4.8 5.1-8.8 12.3-14.3 18-7.8 6.5-9.3 6.2-19.6 9.9-6.3 2.2-11.3 4.6-14.8 11.3-2.7 5-2.1 12.2-.9 20 1.2 7.9 3 16.3.6 23.9v.2c-5 13.7-5 21.7-2.6 26.4 7.9 15.4 46.6 6.1 76.5 21.9 31.4 16.4 72.6 17.1 75.3-18 2.1-20.5-31.5-49-41-68.9zm153.9 35.8c3.2-11 6.3-21.3 6.8-29 .8-15.2 1.6-28.7 4.4-39.9 3.1-12.6 9.3-23.1 21.4-27.3 2.3-21.1 18.7-21.1 38.3-12.5 18.9 8.5 26 16 22.8 26.1 1 0 2-.1 4.2 0 5.2-16.9-14.3-28-30.7-34.8 2.9-12 2.4-24.1-.4-35.7-6-25.3-22.6-47.8-35.2-59-2.3-.1-2.1 1.9 2.6 6.5 11.6 10.7 37.1 49.2 23.3 84.9-3.9-1-7.6-1.5-10.9-1.4-5.3-29.1-17.5-53.2-23.6-64.6-11.5-21.4-29.5-65.3-37.2-95.7-4.5 6.4-12.4 11.9-22.3 15-4.7 1.5-9.7 5.5-15.9 9-13.9 8-30 8.8-42.4-1.2-4.5-3.6-8-7.6-12.6-10.3-1.6-.9-5.1-3.3-6.2-4.1-2 37.8-27.3 85.3-39.3 112.7-8.3 19.7-13.2 40.8-13.8 61.5-21.8-29.1-5.9-66.3 2.6-82.4 9.5-17.6 11-22.5 8.7-20.8-8.6 14-22 36.3-27.2 59.2-2.7 11.9-3.2 24 .3 35.2 3.5 11.2 11.1 21.5 24.6 29.9 0 0 24.8 14.3 38.3 32.5 7.4 10 9.7 18.7 7.4 24.9-2.5 6.7-9.6 8.9-16.7 8.9 4.8 6 10.3 13 14.4 19.6 37.6 25.7 82.2 15.7 114.3-7.2zM415 408.5c-10-11.3-7.2-33.1-17.1-41.6-6.9-6-13.6-5.4-22.6-5.1-7.7 8.8-25.8 19.6-38.4 16.3-11.5-2.9-18-16.3-18.8-29.5-.3.2-.7.3-1 .5-7.1 3.9-11.1 10.8-13.7 21.1-2.5 10.2-3.4 23.5-4.2 38.7-.7 11.8-6.2 26.4-9.9 40.6-3.5 13.2-5.8 25.2-1.1 36.3 7.2 14.5 19.5 20.4 33.7 19.3 14.2-1.1 30.4-9.8 43.6-25.5 22-26.6 62.3-29.7 63.2-46.5.3-5.1-3.1-13-13.7-24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4 3.9-3.4 5.9-6.3 3.1-6.6-2.8-.3-2.6 2.6-6 5.1-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2-10.4 0-18.7-4.8-24.9-9.7-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z"], + "lyft": [512, 512, [], "f3c3", "M0 81.1h77.8v208.7c0 33.1 15 52.8 27.2 61-12.7 11.1-51.2 20.9-80.2-2.8C7.8 334 0 310.7 0 289V81.1zm485.9 173.5v-22h23.8v-76.8h-26.1c-10.1-46.3-51.2-80.7-100.3-80.7-56.6 0-102.7 46-102.7 102.7V357c16 2.3 35.4-.3 51.7-14 17.1-14 24.8-37.2 24.8-59v-6.7h38.8v-76.8h-38.8v-23.3c0-34.6 52.2-34.6 52.2 0v77.1c0 56.6 46 102.7 102.7 102.7v-76.5c-14.5 0-26.1-11.7-26.1-25.9zm-294.3-99v113c0 15.4-23.8 15.4-23.8 0v-113H91v132.7c0 23.8 8 54 45 63.9 37 9.8 58.2-10.6 58.2-10.6-2.1 13.4-14.5 23.3-34.9 25.3-15.5 1.6-35.2-3.6-45-7.8v70.3c25.1 7.5 51.5 9.8 77.6 4.7 47.1-9.1 76.8-48.4 76.8-100.8V155.1h-77.1v.5z"], + "magento": [448, 512, [], "f3c4", "M445.7 127.9V384l-63.4 36.5V164.7L223.8 73.1 65.2 164.7l.4 255.9L2.3 384V128.1L224.2 0l221.5 127.9zM255.6 420.5L224 438.9l-31.8-18.2v-256l-63.3 36.6.1 255.9 94.9 54.9 95.1-54.9v-256l-63.4-36.6v255.9z"], + "mailchimp": [428, 512, [], "f59e", "M426.56 323.72c-3.09-6.59-8.97-11.13-16.35-12.88-2.47-11.27-5.88-16.8-6.19-17.63 1.3-1.48 2.56-2.97 2.84-3.32 10.42-12.93 3.62-31.86-14.19-36.33-10.02-9.64-19.09-14.17-26.54-17.9-7.14-3.57-4.29-2.17-10.99-5.19-1.78-8.71-2.37-28.97-5.2-43.19-2.54-12.79-7.66-22.06-15.56-28.15-3.16-6.84-7.59-13.74-12.93-18.81 24.84-38.08 31.38-75.69 13.19-95.39-8.1-8.77-20.13-12.93-34.52-12.93-20.26 0-45.18 8.26-70.34 23.54 0 0-16.38-13.18-16.73-13.46-70.08-55.19-268.28 188.7-198.32 242l18.06 13.8c-11.34 31.54 4.43 69.14 37.29 81.21 7.26 2.67 15.14 3.97 23.31 3.51 0 0 53.09 97.36 165.1 97.39 129.58.04 162.55-126.72 162.9-127.86 0 .01 10.5-15.51 5.17-28.41zM20.12 267.95c-14.2-23.96 10.51-73.19 28.09-101.17C91.66 97.63 163.98 43.06 196.82 50.85l9.03-3.46c.03.03 24.67 20.85 24.7 20.87 16.97-10.19 38.58-20.57 58.8-22.64-12.3 2.77-27.29 9.15-45.05 20.01-.43.25-42.02 28.32-67.43 53.52-13.85 13.73-69.45 80.41-69.4 80.35 10.16-19.23 16.86-28.67 32.94-48.9 9.1-11.44 18.81-22.57 28.74-32.84 4.61-4.77 9.28-9.36 13.95-13.71 3.21-2.99 6.44-5.87 9.65-8.62 1.48-1.27 2.96-2.5 4.43-3.71l.01-.01L164.6 64.8l1.72 12.06 23.69 20.87s-20.96 14.11-31.39 23.01c-41.79 35.66-82.8 90.4-98.06 143.69l.73-.03c-7.6 4.19-15.14 10.91-21.73 20.05-.16-.04-17.04-12.43-19.44-16.5zm69.11 100.09c-25.03 0-45.33-21.37-45.33-47.72 0-26.36 20.29-47.72 45.33-47.72 6.49 0 12.66 1.44 18.24 4.02 0 0 9.63 4.86 12.34 27.81 2.82-7.17 4.24-13.06 4.24-13.06 3.23 9.88 4.88 20.26 4.23 30.76 2.68-3.56 5.55-10.27 5.55-10.27 5 29.33-16.4 56.18-44.6 56.18zm55.8-168.53s19.49-37.06 62.33-61.57c-3.19-.51-10.99.48-12.36.64 7.78-6.69 22.24-11.16 32.23-13.19-2.92-1.86-9.89-2.33-13.34-2.42-1.02-.03-1.01-.02-2.22.03 9.4-5.25 26.82-8.34 42.65-5.55-1.99-2.64-6.5-4.57-9.67-5.51-.28-.08-1.52-.39-1.52-.39l1.19-.28c9.54-1.84 20.69.15 29.5 3.69-1-2.32-3.45-5.03-5.29-6.74-.19-.18-1.29-.97-1.29-.97 9.22 1.91 18.06 5.94 24.71 10.5-.9-1.75-3.14-4.69-4.69-6.29 8.81 2.52 18.71 8.81 22.95 17.82.1.2.37.94.4 1.03-16.7-12.84-65.44-9.2-114.24 22.42-22.33 14.48-38.71 30.32-51.34 46.78zm263.32 146.34c-.59 1.15-6.73 34.4-41.86 62.01-44.37 34.86-102.66 31.33-124.67 11.8-11.76-11-16.85-26.73-16.85-26.73s-1.33 8.87-1.56 12.35c-8.87-15.09-8.12-33.52-8.12-33.52s-4.73 8.83-6.9 13.77c-6.53-16.62-3.16-33.78-3.16-33.78l-5.16 7.7s-2.42-18.81 3.52-34.47c6.36-16.74 18.68-28.9 21.11-30.42-9.35-2.97-20.12-11.49-20.14-11.51 0 0 4.28.28 7.26-.4 0 0-18.9-13.54-22.22-34.26 2.74 3.38 8.49 7.21 8.49 7.21-1.86-5.42-2.99-17.49-1.25-29.36l.01-.01c3.58-22.68 22.27-37.45 43.44-37.27 22.54.2 37.65 4.93 56.55-12.5 4-3.69 7.19-6.87 12.81-8.11.59-.13 2.06-.75 5.07-.75 3.05 0 5.98.69 8.67 2.29 10.25 6.1 12.46 22.01 13.56 33.68 4.07 43.28 2.43 35.57 19.94 44.49 8.36 4.25 17.74 8.29 28.43 19.72.03.03.08.09.08.09h.13c9.01.22 13.65 7.31 9.5 12.47-30.23 36.1-72.46 53.39-119.51 54.84-1.94.05-6.32.15-6.34.15-19.01.58-25.19 25.16-13.27 39.95 7.54 9.35 22.03 12.42 33.97 12.46l.17-.06c51.45 1.04 103.14-35.37 112.07-55.44.06-.15.61-1.42.61-1.42-2.07 2.43-52.18 49.61-113.08 47.9 0 0-6.66-.14-12.93-1.6-8.27-1.92-14.55-5.56-16.95-13.8 5.05 1.01 11.45 1.66 18.87 1.66 43.96 0 75.63-19.98 72.33-20.25-.13 0-.26.03-.48.08-5.13 1.19-57.97 21.66-91.37 11.16.08-1.02.24-2.01.48-2.9 2.97-9.95 8.25-8.56 16.79-8.93 30.48-1.01 55.07-8.68 73.5-17.43 19.65-9.33 34.63-21.35 40.03-27.42 7 11.79 6.96 26.92 6.96 26.92s2.74-.96 6.38-.96c11.38.01 13.73 10.23 5.09 20.6zm-149.29 13.7c0-.05-.01-.1-.01-.15.01.05.01.1.01.15zm-.01-.21c-.01-.13-.01-.26-.02-.39-.02-.65-.03-1.33 0-2.02-.02.74-.02 1.42 0 2.02.01.13.01.27.02.39zm.12 1.46c0 .02 0 .04.01.06 0-.02 0-.04-.01-.06zm.02.12c.2 1.58.51 2.31.55 2.4-.23-.49-.42-1.34-.55-2.4zM193.96 59.68l2.87-8.83 4.88 17.72-6.03-1.95-1.72-6.94zm22.38 17.72l-3.62-12.59 9.97 8.36c-2.24 1.44-4.36 2.86-6.35 4.23zm42.71 281.94c-.01-.13-.01-.26-.02-.39.01.13.01.27.02.39zm-.01-.39c-.02-.65-.03-1.33 0-2.02-.03.75-.03 1.42 0 2.02zm.02.6c0-.05-.01-.1-.01-.15m.13 1.46c0-.02 0-.04-.01-.06m.02.12c.2 1.58.51 2.31.55 2.4-.23-.49-.42-1.34-.55-2.4zm52.1-138.61c-.07-3.36.47-8.92 3.63-9.95h.01c5.41-1.88 12.58 11.98 12.91 24.28-4.28-2.14-9.3-3.05-14.47-2.6-1.3-3.97-1.92-7.7-2.08-11.73zM205.38 85.27l-13.59-11.38 20.57 6.28c-2.65 1.88-5 3.6-6.98 5.1zm27.7 166.94c-3.41 1.3-5.83 2.31-7 2.14-1.89-.28-.06-3.75 4.08-7.11 8.33-6.64 19.76-8.7 29.53-5.07 4.28 1.57 9.08 4.72 11.6 8.39.95 1.39 1.21 2.44.82 2.88-.77.9-3.51-.31-7.55-1.89-10.35-3.86-17.98-4.45-31.48.66zm14.55 14.53c-2.31.94-3.81 1.66-4.42 1.17-.62-.48-.01-2.42 2.15-4.51 1.88-1.81 3.83-2.83 6.07-3.77.35-.15.72-.28 1.1-.38 1.04-.28 2.09-.63 3.23-.8 9.12-1.55 15.8 3.51 14.93 4.98-.39.69-2.08.53-4.6.36-5.23-.36-10.71-.27-18.46 2.95zM60.86 323.12zm24.3-25.78c-1.85.39-.81.17-2.64.68a7 7 0 0 0-.77.25c-.58.27-1.11.45-1.62.73-.43.24-4.07 1.86-7.03 5.48-3.99 4.95-5.44 11.43-5.19 17.67.24 6.06 2.02 9.41 2.35 10.23 1.38 2.96-1.85 3.57-4.79.39l-.01-.01c-2.35-2.49-3.86-6.29-4.6-9.66-2.98-13.95 3.24-27.97 17.61-33.57.8-.32 1.74-.51 2.5-.73h-.01c1.47-.44 6.72-1.5 12.07-.67 5.87.91 11.04 3.85 14.33 7.67l.01.01c2.53 2.87 4.43 6.92 4.09 10.53v.01c-.13 1.5-.79 3.65-2.14 4.21-.5.21-1.01.1-1.36-.25-.98-.96-.22-2.93-2.6-6.3-3.17-4.47-10.31-8.76-20.2-6.67zm30.28 31.17c1.88 10.82-6 20.5-15.52 20.7-6.67.15-10.31-4.02-9.66-4.93.3-.43 1.32-.24 2.88-.01 8.5 1.32 13.66-3.86 14.9-9.29.02-.09.35-1.54.34-2.54.07-.88-.03-1.76-.16-2.56-1-5.62-7.45-6.68-11.6-11.15-3.72-4.04-2.99-9.22-.65-11.71 2.81-2.77 6.83-1.76 6.78-.78 0 .52-.97.91-2.17 1.74-1.56 1.1-1.77 2.16-1.37 3.98.26 1 .71 1.65 1.68 2.42 3.48 2.76 12.85 4.7 14.55 14.13zm212.87-81.47c2.58.4 4.22 3.59 3.67 7.13-.55 3.54-3.09 6.08-5.67 5.67-2.58-.4-4.22-3.59-3.67-7.13.56-3.53 3.09-6.07 5.67-5.67zm-28.33 10.31c1.42-2.59 5.44-3.11 8.99-1.16 3.55 1.94 5.27 5.62 3.86 8.2-1.42 2.59-5.44 3.11-8.99 1.16-3.55-1.94-5.28-5.61-3.86-8.2z"], + "mandalorian": [390, 512, [], "f50f", "M203.28 511.89c-.98-3.26-1.69-15.83-1.39-24.58.55-15.89.98-24.72 1.4-28.76.64-6.2 2.87-20.72 3.28-21.38.6-.96.4-27.87-.24-33.13-.31-2.58-.63-11.9-.69-20.73-.13-16.47-.53-20.12-2.73-24.76-1.1-2.32-1.23-3.84-.99-11.43.16-4.81 0-10.53-.34-12.71-2.05-12.97-3.46-27.7-3.25-33.9.21-6.12.43-7.15 2.06-9.67 3.05-4.71 6.51-14.04 8.62-23.27 2.26-9.86 3.88-17.18 4.59-20.74.89-4.42 2.43-9.72 4.36-15.05 2.27-6.25 2.49-15.39.37-15.39-.3 0-1.38 1.22-2.41 2.71-1.03 1.49-4.76 4.8-8.29 7.36-8.37 6.08-11.7 9.39-12.66 12.58-.93 3.11-1.02 7.23-.16 7.76.34.21 1.29 2.4 2.11 4.88 1.62 4.88 1.87 10.12.72 15.36-.39 1.77-1.05 5.47-1.46 8.23-.41 2.76-.98 6.46-1.25 8.22-.28 1.76-.97 3.68-1.55 4.26-.96.96-1.14.91-2.05-.53-.55-.87-1.2-3.01-1.44-4.75-.25-1.74-1.63-7.11-3.08-11.93-3.28-10.9-3.52-16.15-.96-20.96.92-1.73 1.67-3.81 1.67-4.61 0-2.39-2.2-5.32-7.41-9.89-7.05-6.18-8.63-7.92-10.23-11.3-1.71-3.6-3.06-4.06-4.54-1.54-1.78 3.01-2.6 9.11-2.97 22.02l-.35 12.13 1.95 2.25c3.21 3.7 12.07 16.45 13.78 19.83 3.41 6.74 4.34 11.69 4.41 23.56.07 11.84.95 22.75 2 24.71.36.66.51 1.35.34 1.52-.17.17.41 2.09 1.29 4.27.88 2.18 1.81 6.22 2.06 8.98.25 2.76 1.02 7.43 1.71 10.37 2.23 9.56 2.77 14.08 2.39 20.14-.2 3.27-.53 11.07-.73 17.32-1.31 41.76-1.85 57.98-2.04 61.21-.12 2.02-.39 11.51-.6 21.07-.36 16.3-1.3 27.37-2.42 28.65-.64.73-8.07-4.91-12.52-9.49-3.75-3.87-4.02-4.79-2.83-9.95.7-3.01 2.26-18.29 3.33-32.62.36-4.78.81-10.5 1.01-12.71.83-9.37 1.66-20.35 2.61-34.78.56-8.46 1.33-16.44 1.72-17.73.38-1.29.89-9.89 1.13-19.11l.43-16.77-2.26-4.3c-1.72-3.28-4.87-6.94-13.22-15.34-6.03-6.07-11.84-12.3-12.91-13.85l-1.95-2.81.75-10.9c1.09-15.71 1.1-48.57.02-59.06l-.89-8.7-3.28-4.52c-5.86-8.08-5.8-7.75-6.22-33.27-.1-6.07-.38-11.5-.63-12.06-.83-1.87-3.05-2.66-8.54-3.05-8.86-.62-10.96-1.9-23.85-14.55-6.15-6.04-12.34-11.97-13.75-13.19-2.81-2.42-2.79-1.99-.56-9.63l1.35-4.65-1.69-3.04c-.93-1.67-2.09-3.51-2.59-4.07-1.33-1.51-5.5-10.89-5.99-13.49-.31-1.66-.09-2.67.87-3.9 2.23-2.86 3.4-5.68 4.45-10.73 2.33-11.19 7.74-26.09 10.6-29.22 3.18-3.47 7.7-1.05 9.41 5.03 1.34 4.79 1.37 9.79.1 18.55-.53 3.68-.98 8.68-.99 11.11-.02 4.01.19 4.69 2.25 7.39 3.33 4.37 7.73 7.41 15.2 10.52 1.7.71 3.82 1.99 4.72 2.85 11.17 10.72 18.62 16.18 22.95 16.85 5.18.8 7.98 4.54 10.04 13.39 1.31 5.65 4 11.14 5.46 11.14.59 0 2.09-.63 3.33-1.39 1.98-1.22 2.25-1.73 2.25-4.18-.01-3.71-1.17-14.08-2-17.84-.37-1.66-.78-4.06-.93-5.35-.14-1.29-.61-3.85-1.03-5.69-2.55-11.16-3.65-15.46-4.1-16.05-1.55-2.02-4.08-10.2-4.93-15.92-1.64-11.11-3.96-14.23-12.91-17.39-4.64-1.64-8.89-4.12-13.32-7.78-1.15-.95-4.01-3.22-6.35-5.06-2.35-1.83-4.41-3.53-4.6-3.76-.18-.23-1.39-1.14-2.69-2.02-6.24-4.22-8.84-6.98-11.26-11.96l-2.44-5.02-.22-12.98-.22-12.98 6.91-6.55c3.95-3.75 8.48-7.35 10.59-8.43 3.31-1.69 4.45-1.89 11.37-2.05 8.53-.19 10.12.02 11.66 1.56 1.53 1.53 1.36 6.4-.29 8.5-.74.94-1.34 1.98-1.34 2.32 0 .58-2.61 4.91-5.42 8.99-.68.99-2.13 5.35-2.37 6.82 20.44 13.39 21.55 3.77 14.07 28.98l11.4 2.54c3.11-8.66 6.47-17.26 8.61-26.22.29-7.63-11.98-4.19-15.4-8.68-2.33-5.93 3.13-14.18 6.06-19.2 1.6-2.34 6.62-4.7 8.82-4.15.88.22 4.16-.35 7.37-1.28 3.18-.92 6.58-1.68 7.55-1.68.97 0 3.66-.58 5.98-1.29 3.65-1.11 4.5-1.17 6.35-.4 1.17.48 3.79 1.09 5.82 1.36 2.02.26 4.72 1.12 6 1.91 1.28.79 3.53 1.77 5.02 2.17 2.51.68 3 .57 7.05-1.67l4.35-2.4 10.7-.41c10.44-.4 10.81-.47 15.26-2.68l4.58-2.3 2.46 1.43c1.76 1.02 3.14 2.73 4.85 5.98 2.36 4.51 2.38 4.58 1.37 7.37-.88 2.44-.89 3.3-.1 6.39.5 1.96 1.45 4.62 2.1 5.91.65 1.29 1.24 3.09 1.31 4.01.31 4.33-.03 5.3-2.41 6.92-2.17 1.47-6.98 7.91-6.98 9.34 0 .32-.48 1.69-1.07 3.03-5.04 11.51-6.76 13.56-14.26 16.98-9.2 4.2-12.3 5.19-16.21 5.19-3.1 0-4 .25-4.54 1.26-.37.69-2.21 2.37-4.09 3.71-2.04 1.47-3.8 3.38-4.38 4.78-.54 1.28-1.66 2.59-2.49 2.91-.83.32-1.94 1.08-2.45 1.71-.52.62-3.66 3.04-7 5.38-3.33 2.34-6.87 5.02-7.87 5.96-1 .94-2.07 1.71-2.39 1.71s-1.28.74-2.13 1.65c-1.31 1.39-1.49 2.11-1.14 4.6.22 1.63.86 4.27 1.42 5.88 1.32 3.8 1.31 7.86-.05 10.57-1.43 2.86-.89 6.65 1.35 9.59 2.01 2.63 2.16 4.56.71 8.84-.61 1.8-1.05 5.45-1.06 8.91-.02 4.88.22 6.28 1.46 8.38 1.2 2.04 1.82 2.48 3.24 2.32 1.98-.23 2.3-1.05 4.71-12.12 2.18-10.03 3.71-11.92 13.76-17.08 2.94-1.51 7.46-3.96 10.03-5.44 2.58-1.48 6.79-3.69 9.37-4.91 6.67-3.16 11.05-6.52 15.22-11.67 7.11-8.79 9.98-16.22 12.85-33.3.55-3.28 1.43-5.65 2.86-7.73 1.29-1.87 2.37-4.62 2.89-7.31 1.02-5.3 2.85-9.08 5.58-11.51 4.7-4.18 6-1.09 4.59 10.87-.46 3.86-1.1 10.33-1.44 14.38l-.61 7.36 4.45 4.09 4.45 4.09.11 8.42c.06 4.63.47 9.53.92 10.89l.82 2.47-6.43 6.28c-8.54 8.33-12.88 13.93-16.76 21.61-1.77 3.49-3.74 7.11-4.38 8.03-2.18 3.11-6.46 13.01-8.76 20.26l-2.29 7.22-6.97 6.49c-3.83 3.57-7.96 7.25-9.17 8.17-3.05 2.32-4.26 5.15-4.26 9.99 0 2.98.43 4.96 1.59 7.26.87 1.74 1.81 3.91 2.09 4.83.28.92.98 2.22 1.57 2.89 1.4 1.59 1.92 16.12.83 23.22-.68 4.48-3.63 12.02-4.7 12.02-1.79 0-4.06 9.27-5.07 20.74-.18 2.02-.62 5.94-.98 8.7-.36 2.76-.96 9.98-1.35 16.05-.77 12.22-.19 18.77 2.05 23.15 3.41 6.69.52 12.69-11.03 22.84l-3.97 3.49.07 5.19c.04 2.86.55 6.85 1.14 8.87 4.61 15.98 4.73 16.92 4.38 37.13-.46 26.4-.26 40.27.63 44.15.42 1.84.91 5 1.08 7.02.17 2.02.66 5.33 1.08 7.36.47 2.26.78 11.02.79 22.74l.02 19.06-1.81 2.63c-2.71 3.91-15.11 13.54-15.49 12.29zm29.53-45.11c-.18-.3-.33-6.87-.33-14.59 0-14.06-.89-27.54-2.26-34.45-.4-2.02-.81-9.7-.9-17.06-.15-11.93-1.4-24.37-2.64-26.38-.66-1.07-3.02-17.66-3.03-21.3-.01-4.23 1.02-6 5.28-9.13 4.14-3.04 4.86-3.14 5.48-.72.28 1.1 1.45 5.62 2.6 10.03 3.93 15.12 4.14 16.27 4.05 21.74-.1 5.78-.13 6.13-1.74 17.73-.98 7.07-1.17 12.39-1.04 28.43.17 19.4-.64 35.73-2.04 41.27-.71 2.78-2.8 5.48-3.43 4.43zm-70.99-37.58c-.24-.38-1.01-5.24-1.73-10.79-.72-5.56-1.49-10.41-1.73-10.79-.23-.38-.68-3.3-.99-6.49-.31-3.19-.91-7.46-1.33-9.48-.99-4.79-3.35-19.35-3.42-21.07-.03-.74-.34-4.05-.7-7.36-.67-6.21-.84-27.67-.22-28.29.96-.96 6.63 2.76 11.33 7.43l5.28 5.25-.45 6.47c-.25 3.56-.6 10.23-.78 14.83-.18 4.6-.49 9.87-.67 11.71-.18 1.84-.61 9.36-.94 16.72-.79 17.41-1.94 31.29-2.65 32-.32.3-.76.24-1-.14zM74.63 162.61c21.07 12.79 17.84 14.15 28.49 17.66 13.01 4.29 18.87 7.13 23.15 16.87-43.66 36.14-69.01 57.9-76.71 70.82-31.02 52.01-5.99 101.59 62.75 87.21-14.18 29.23-77.97 28.63-98.68-4.9-24.68-39.95-22.09-118.3 61-187.66zm210.79 179.02c56.66 6.88 82.32-37.74 46.54-89.23 0 0-26.87-29.34-64.28-67.96 2.98-15.45 9.49-32.12 30.57-53.82 89.2 63.51 92 141.61 92.46 149.36 4.27 70.58-78.66 91.12-105.29 61.65z"], + "mastodon": [417, 512, [], "f4f6", "M417.8 179.1c0-97.2-63.7-125.7-63.7-125.7-62.5-28.7-228.5-28.4-290.4 0 0 0-63.7 28.5-63.7 125.7 0 115.7-6.6 259.4 105.6 289.1 40.5 10.7 75.3 13 103.3 11.4 50.8-2.8 79.3-18.1 79.3-18.1l-1.7-36.9s-36.3 11.4-77.1 10.1c-40.4-1.4-83-4.4-89.6-54-.6-4.4-.9-9-.9-13.9 85.6 20.9 158.6 9.1 178.7 6.7 56.1-6.7 105-41.3 111.2-72.9 9.8-49.8 9-121.5 9-121.5zm-75.1 125.2h-46.6V190.1c0-49.7-64-51.6-64 6.9v62.5h-46.3V197c0-58.5-64-56.6-64-6.9v114.2H75.1c0-122.1-5.2-147.9 18.4-175 25.9-28.9 79.8-30.8 103.8 6.1l11.6 19.5 11.6-19.5c24.1-37.1 78.1-34.8 103.8-6.1 23.7 27.3 18.4 53 18.4 175z"], + "maxcdn": [512, 512, [], "f136", "M461.1 442.7h-97.4L415.6 200c2.3-10.2.9-19.5-4.4-25.7-5-6.1-13.7-9.6-24.2-9.6h-49.3l-59.5 278h-97.4l59.5-278h-83.4l-59.5 278H0l59.5-278-44.6-95.4H387c39.4 0 75.3 16.3 98.3 44.9 23.3 28.6 31.8 67.4 23.6 105.9l-47.8 222.6z"], + "medapps": [320, 512, [], "f3c6", "M118.3 238.4c3.5-12.5 6.9-33.6 13.2-33.6 8.3 1.8 9.6 23.4 18.6 36.6 4.6-23.5 5.3-85.1 14.1-86.7 9-.7 19.7 66.5 22 77.5 9.9 4.1 48.9 6.6 48.9 6.6 1.9 7.3-24 7.6-40 7.8-4.6 14.8-5.4 27.7-11.4 28-4.7.2-8.2-28.8-17.5-49.6l-9.4 65.5c-4.4 13-15.5-22.5-21.9-39.3-3.3-.1-62.4-1.6-47.6-7.8l31-5zM228 448c21.2 0 21.2-32 0-32H92c-21.2 0-21.2 32 0 32h136zm-24 64c21.2 0 21.2-32 0-32h-88c-21.2 0-21.2 32 0 32h88zm34.2-141.5c3.2-18.9 5.2-36.4 11.9-48.8 7.9-14.7 16.1-28.1 24-41 24.6-40.4 45.9-75.2 45.9-125.5C320 69.6 248.2 0 160 0S0 69.6 0 155.2c0 50.2 21.3 85.1 45.9 125.5 7.9 12.9 16 26.3 24 41 6.7 12.5 8.7 29.8 11.9 48.9 3.5 21 36.1 15.7 32.6-5.1-3.6-21.7-5.6-40.7-15.3-58.6C66.5 246.5 33 211.3 33 155.2 33 87.3 90 32 160 32s127 55.3 127 123.2c0 56.1-33.5 91.3-66.1 151.6-9.7 18-11.7 37.4-15.3 58.6-3.4 20.6 29 26.4 32.6 5.1z"], + "medium": [448, 512, [], "f23a", "M0 32v448h448V32H0zm372.2 106.1l-24 23c-2.1 1.6-3.1 4.2-2.7 6.7v169.3c-.4 2.6.6 5.2 2.7 6.7l23.5 23v5.1h-118V367l24.3-23.6c2.4-2.4 2.4-3.1 2.4-6.7V199.8l-67.6 171.6h-9.1L125 199.8v115c-.7 4.8 1 9.7 4.4 13.2l31.6 38.3v5.1H71.2v-5.1l31.6-38.3c3.4-3.5 4.9-8.4 4.1-13.2v-133c.4-3.7-1-7.3-3.8-9.8L75 138.1V133h87.3l67.4 148L289 133.1h83.2v5z"], + "medium-m": [512, 512, [], "f3c7", "M71.5 142.3c.6-5.9-1.7-11.8-6.1-15.8L20.3 72.1V64h140.2l108.4 237.7L364.2 64h133.7v8.1l-38.6 37c-3.3 2.5-5 6.7-4.3 10.8v272c-.7 4.1 1 8.3 4.3 10.8l37.7 37v8.1H307.3v-8.1l39.1-37.9c3.8-3.8 3.8-5 3.8-10.8V171.2L241.5 447.1h-14.7L100.4 171.2v184.9c-1.1 7.8 1.5 15.6 7 21.2l50.8 61.6v8.1h-144v-8L65 377.3c5.4-5.6 7.9-13.5 6.5-21.2V142.3z"], + "medrt": [544, 512, [], "f3c8", "M113.7 256c0 121.8 83.9 222.8 193.5 241.1-18.7 4.5-38.2 6.9-58.2 6.9C111.4 504 0 393 0 256S111.4 8 248.9 8c20.1 0 39.6 2.4 58.2 6.9C197.5 33.2 113.7 134.2 113.7 256m297.4 100.3c-77.7 55.4-179.6 47.5-240.4-14.6 5.5 14.1 12.7 27.7 21.7 40.5 61.6 88.2 182.4 109.3 269.7 47 87.3-62.3 108.1-184.3 46.5-272.6-9-12.9-19.3-24.3-30.5-34.2 37.4 78.8 10.7 178.5-67 233.9m-218.8-244c-1.4 1-2.7 2.1-4 3.1 64.3-17.8 135.9 4 178.9 60.5 35.7 47 42.9 106.6 24.4 158 56.7-56.2 67.6-142.1 22.3-201.8-50-65.5-149.1-74.4-221.6-19.8M296 224c-4.4 0-8-3.6-8-8v-40c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v40c0 4.4-3.6 8-8 8h-40c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h40c4.4 0 8 3.6 8 8v40c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-40c0-4.4 3.6-8 8-8h40c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-40z"], + "meetup": [512, 512, [], "f2e0", "M99 414.3c1.1 5.7-2.3 11.1-8 12.3-5.4 1.1-10.9-2.3-12-8-1.1-5.4 2.3-11.1 7.7-12.3 5.4-1.2 11.1 2.3 12.3 8zm143.1 71.4c-6.3 4.6-8 13.4-3.7 20 4.6 6.6 13.4 8.3 20 3.7 6.3-4.6 8-13.4 3.4-20-4.2-6.5-13.1-8.3-19.7-3.7zm-86-462.3c6.3-1.4 10.3-7.7 8.9-14-1.1-6.6-7.4-10.6-13.7-9.1-6.3 1.4-10.3 7.7-9.1 14 1.4 6.6 7.6 10.6 13.9 9.1zM34.4 226.3c-10-6.9-23.7-4.3-30.6 6-6.9 10-4.3 24 5.7 30.9 10 7.1 23.7 4.6 30.6-5.7 6.9-10.4 4.3-24.1-5.7-31.2zm272-170.9c10.6-6.3 13.7-20 7.7-30.3-6.3-10.6-19.7-14-30-7.7s-13.7 20-7.4 30.6c6 10.3 19.4 13.7 29.7 7.4zm-191.1 58c7.7-5.4 9.4-16 4.3-23.7s-15.7-9.4-23.1-4.3c-7.7 5.4-9.4 16-4.3 23.7 5.1 7.8 15.6 9.5 23.1 4.3zm372.3 156c-7.4 1.7-12.3 9.1-10.6 16.9 1.4 7.4 8.9 12.3 16.3 10.6 7.4-1.4 12.3-8.9 10.6-16.6-1.5-7.4-8.9-12.3-16.3-10.9zm39.7-56.8c-1.1-5.7-6.6-9.1-12-8-5.7 1.1-9.1 6.9-8 12.6 1.1 5.4 6.6 9.1 12.3 8 5.4-1.5 9.1-6.9 7.7-12.6zM447 138.9c-8.6 6-10.6 17.7-4.9 26.3 5.7 8.6 17.4 10.6 26 4.9 8.3-6 10.3-17.7 4.6-26.3-5.7-8.7-17.4-10.9-25.7-4.9zm-6.3 139.4c26.3 43.1 15.1 100-26.3 129.1-17.4 12.3-37.1 17.7-56.9 17.1-12 47.1-69.4 64.6-105.1 32.6-1.1.9-2.6 1.7-3.7 2.9-39.1 27.1-92.3 17.4-119.4-22.3-9.7-14.3-14.6-30.6-15.1-46.9-65.4-10.9-90-94-41.1-139.7-28.3-46.9.6-107.4 53.4-114.9C151.6 70 234.1 38.6 290.1 82c67.4-22.3 136.3 29.4 130.9 101.1 41.1 12.6 52.8 66.9 19.7 95.2zm-70 74.3c-3.1-20.6-40.9-4.6-43.1-27.1-3.1-32 43.7-101.1 40-128-3.4-24-19.4-29.1-33.4-29.4-13.4-.3-16.9 2-21.4 4.6-2.9 1.7-6.6 4.9-11.7-.3-6.3-6-11.1-11.7-19.4-12.9-12.3-2-17.7 2-26.6 9.7-3.4 2.9-12 12.9-20 9.1-3.4-1.7-15.4-7.7-24-11.4-16.3-7.1-40 4.6-48.6 20-12.9 22.9-38 113.1-41.7 125.1-8.6 26.6 10.9 48.6 36.9 47.1 11.1-.6 18.3-4.6 25.4-17.4 4-7.4 41.7-107.7 44.6-112.6 2-3.4 8.9-8 14.6-5.1 5.7 3.1 6.9 9.4 6 15.1-1.1 9.7-28 70.9-28.9 77.7-3.4 22.9 26.9 26.6 38.6 4 3.7-7.1 45.7-92.6 49.4-98.3 4.3-6.3 7.4-8.3 11.7-8 3.1 0 8.3.9 7.1 10.9-1.4 9.4-35.1 72.3-38.9 87.7-4.6 20.6 6.6 41.4 24.9 50.6 11.4 5.7 62.5 15.7 58.5-11.1zm5.7 92.3c-10.3 7.4-12.9 22-5.7 32.6 7.1 10.6 21.4 13.1 32 6 10.6-7.4 13.1-22 6-32.6-7.4-10.6-21.7-13.5-32.3-6z"], + "megaport": [496, 512, [], "f5a3", "M248 8C111.04 8 0 119.04 0 256c0 136.97 111.04 248 248 248 136.96 0 248-111.03 248-248C496 119.04 384.96 8 248 8zm85.46 267.67l59.66 59.67v87.05l-26.07 19.23L341 422.39v-65.46l-33.44-33.44-33.44 33.44v65.46L248 441.62l-26.12-19.23v-65.46l-33.44-33.44L155 356.92v65.46l-26.07 19.23-26.06-19.23v-87.05l59.47-59.47V188l59.5-59.5V52.88l26.06-19.23 26.06 19.23v75.64l59.5 59.5m-85.56-11.86l33.44 33.44V276L248 309.33l-33.54-33.54v-66.2l33.44-33.43z"], + "microsoft": [448, 512, [], "f3ca", "M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z"], + "mix": [448, 512, [], "f3cb", "M0 64v348.9c0 56.2 88 58.1 88 0V174.3c7.9-52.9 88-50.4 88 6.5v175.3c0 57.9 96 58 96 0V240c5.3-54.7 88-52.5 88 4.3v23.8c0 59.9 88 56.6 88 0V64H0z"], + "mixcloud": [640, 512, [], "f289", "M424.43 219.729C416.124 134.727 344.135 68 256.919 68c-72.266 0-136.224 46.516-159.205 114.074-54.545 8.029-96.63 54.822-96.63 111.582 0 62.298 50.668 112.966 113.243 112.966h289.614c52.329 0 94.969-42.362 94.969-94.693 0-45.131-32.118-83.063-74.48-92.2zm-20.489 144.53H114.327c-39.04 0-70.881-31.564-70.881-70.604s31.841-70.604 70.881-70.604c18.827 0 36.548 7.475 49.838 20.766 19.963 19.963 50.133-10.227 30.18-30.18-14.675-14.398-32.672-24.365-52.053-29.349 19.935-44.3 64.79-73.926 114.628-73.926 69.496 0 125.979 56.483 125.979 125.702 0 13.568-2.215 26.857-6.369 39.594-8.943 27.517 32.133 38.939 40.147 13.29 2.769-8.306 4.984-16.889 6.369-25.472 19.381 7.476 33.502 26.303 33.502 48.453 0 28.795-23.535 52.33-52.607 52.33zm235.069-52.33c0 44.024-12.737 86.386-37.102 122.657-4.153 6.092-10.798 9.414-17.72 9.414-16.317 0-27.127-18.826-17.443-32.949 19.381-29.349 29.903-63.682 29.903-99.122s-10.521-69.773-29.903-98.845c-15.655-22.831 19.361-47.24 35.163-23.534 24.366 35.993 37.102 78.356 37.102 122.379zm-70.88 0c0 31.565-9.137 62.021-26.857 88.325-4.153 6.091-10.798 9.136-17.72 9.136-17.201 0-27.022-18.979-17.443-32.948 13.013-19.104 19.658-41.255 19.658-64.513 0-22.981-6.645-45.408-19.658-64.512-15.761-22.986 19.008-47.095 35.163-23.535 17.719 26.026 26.857 56.483 26.857 88.047z"], + "mizuni": [496, 512, [], "f3cc", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm-80 351.9c-31.4 10.6-58.8 27.3-80 48.2V136c0-22.1 17.9-40 40-40s40 17.9 40 40v223.9zm120-9.9c-12.9-2-26.2-3.1-39.8-3.1-13.8 0-27.2 1.1-40.2 3.1V136c0-22.1 17.9-40 40-40s40 17.9 40 40v214zm120 57.7c-21.2-20.8-48.6-37.4-80-48V136c0-22.1 17.9-40 40-40s40 17.9 40 40v271.7z"], + "modx": [448, 512, [], "f285", "M356 241.8l36.7 23.7V480l-133-83.8L356 241.8zM440 75H226.3l-23 37.8 153.5 96.5L440 75zm-89 142.8L55.2 32v214.5l46 29L351 217.8zM97 294.2L8 437h213.7l125-200.5L97 294.2z"], + "monero": [496, 512, [], "f3d0", "M352 384h108.4C417 455.9 338.1 504 248 504S79 455.9 35.6 384H144V256.2L248 361l104-105v128zM88 336V128l159.4 159.4L408 128v208h74.8c8.5-25.1 13.2-52 13.2-80C496 119 385 8 248 8S0 119 0 256c0 28 4.6 54.9 13.2 80H88z"], + "napster": [496, 512, [], "f3d2", "M298.3 373.6c-14.2 13.6-31.3 24.1-50.4 30.5-19-6.4-36.2-16.9-50.3-30.5h100.7zm44-199.6c20-16.9 43.6-29.2 69.6-36.2V299c0 219.4-328 217.6-328 .3V137.7c25.9 6.9 49.6 19.6 69.5 36.4 56.8-40 132.5-39.9 188.9-.1zm-208.8-58.5c64.4-60 164.3-60.1 228.9-.2-7.1 3.5-13.9 7.3-20.6 11.5-58.7-30.5-129.2-30.4-187.9.1-6.3-4-13.9-8.2-20.4-11.4zM43.8 93.2v69.3c-58.4 36.5-58.4 121.1.1 158.3 26.4 245.1 381.7 240.3 407.6 1.5l.3-1.7c58.7-36.3 58.9-121.7.2-158.2V93.2c-17.3.5-34 3-50.1 7.4-82-91.5-225.5-91.5-307.5.1-16.3-4.4-33.1-7-50.6-7.5zM259.2 352s36-.3 61.3-1.5c10.2-.5 21.1-4 25.5-6.5 26.3-15.1 25.4-39.2 26.2-47.4-79.5-.6-99.9-3.9-113 55.4zm-135.5-55.3c.8 8.2-.1 32.3 26.2 47.4 4.4 2.5 15.2 6 25.5 6.5 25.3 1.1 61.3 1.5 61.3 1.5-13.2-59.4-33.7-56.1-113-55.4zm169.1 123.4c-3.2-5.3-6.9-7.3-6.9-7.3-24.8 7.3-52.2 6.9-75.9 0 0 0-2.9 1.5-6.4 6.6-2.8 4.1-3.7 9.6-3.7 9.6 29.1 17.6 67.1 17.6 96.2 0-.1-.1-.3-4-3.3-8.9z"], + "nimblr": [355, 512, [], "f5a8", "M232.6 299.29c15.57 0 27.15 11.46 27.15 26.96 0 15.55-11.62 26.96-27.15 26.96-15.7 0-27.15-11.57-27.15-26.96 0-15.51 11.58-26.96 27.15-26.96zM99.01 326.25c0-15.61 11.68-26.96 27.15-26.96 15.57 0 27.15 11.46 27.15 26.96 0 15.41-11.47 26.96-27.15 26.96-15.44 0-27.15-11.31-27.15-26.96m78.75-167.3C143 158.95 75.45 178.77 45.25 227L0 0v335.48C0 433.13 79.61 512 177.76 512c98.24 0 177.76-78.95 177.76-176.52 0-97.46-79.39-176.53-177.76-176.53zm0 308.12c-73.27 0-132.51-58.9-132.51-131.59 0-72.68 59.24-131.59 132.51-131.59 73.27 0 132.51 58.91 132.51 131.59s-59.25 131.59-132.51 131.59z"], + "nintendo-switch": [448, 512, [], "f418", "M95.9 33.5c-44.6 8-80.5 41-91.8 84.4C0 133.6-.3 142.8.2 264.4.4 376 .5 378.6 2.4 387.3c10.3 46.5 43.3 79.6 90.3 90.5 6.1 1.4 13.9 1.7 64.1 1.9 51.9.4 57.3.3 58.7-1.1 1.4-1.4 1.5-19.3 1.5-222.2 0-150.5-.3-221.3-.9-222.6-.9-1.7-2.5-1.8-56.9-1.7-44.2.1-57.5.4-63.3 1.4zm83.9 222.6V444l-37.8-.5c-34.8-.4-38.5-.6-45.5-2.3-29.9-7.7-52-30.7-58.3-60.7-2-9.4-2-240.1-.1-249.3 5.6-26.1 23.7-47.7 48-57.4 12.2-4.9 17.9-5.5 57.6-5.6l35.9-.1v188zm-75.9-131.2c-5.8 1.1-14.7 5.6-19.5 9.7-9.7 8.4-14.6 20.4-13.8 34.5.4 7.3.8 9.3 3.8 15.2 4.4 9 10.9 15.6 19.9 20 6.2 3.1 7.8 3.4 15.9 3.7 7.3.3 9.9 0 14.8-1.7 20.1-6.8 32.3-26.3 28.8-46.4-3.9-23.7-26.6-39.7-49.9-35zm158.2-92.3c-.4.3-.6 100.8-.6 223.5 0 202.3.1 222.8 1.5 223.4 2.5.9 74.5.6 83.4-.4 37.7-4.3 71-27.2 89-61.2 2.3-4.4 5.4-11.7 7-16.2 5.8-17.4 5.7-12.8 5.7-146.1 0-106.4-.2-122.3-1.5-129-9.2-48.3-46.1-84.8-94.5-93.1-6.5-1.1-16.5-1.4-48.8-1.4-22.4-.1-40.9.2-41.2.5zm99.1 202.1c14.5 3.8 26.3 14.8 31.2 28.9 3.1 8.7 3 21.5-.1 29.5-5.7 14.7-16.8 25-31.1 28.8-23.2 6-47.9-8-54.6-31-2-7-1.9-18.9.4-26.2 6.9-22.7 31-36.1 54.2-30z"], + "node": [640, 512, [], "f419", "M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4.1l14.8 8.8c.5.3 1.3.3 1.8 0L375 408c.5-.3.9-.9.9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6.3-.9 1-.9 1.6v66.7c0 .6.4 1.2.9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9.7-1.7 1.7-1.7h7.3c.9 0 1.7.7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7zm46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6.2.8.8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5.3-.4.5-.8.4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7.7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8zm54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1zm-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3 0 5.2 4.2 9.4 9.3 9.4 5.2-.1 9.4-4.3 9.4-9.4zm-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7.1 1.8 1.2 2.1 2.8.1 1 .3 2.7.6 3.3zm-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8zM137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3.4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3.7 2.5 1.8 3.2 1.1.7 2.5.7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1 1.3 0 2.6.3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1.7 2.6.7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2l.2-95zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4zm-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6.3-.9.9-.9 1.6v24.3c0 .7.4 1.3.9 1.6l21 12.1c.6.3 1.3.3 1.8 0l21-12.1c.6-.3.9-.9.9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3.7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1.7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2l36.7-21.3zM559 219c-.4.3-.7.7-.7 1.2v13.6c0 .5.3 1 .7 1.2l11.8 6.8c.4.3 1 .3 1.4 0L584 235c.4-.3.7-.7.7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0L559 219zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7.1-.5.2-1.1.2-1.7zm-74.3-124.9l-.8.5h1.1l-.3-.5zm76.2 130.2l-.4-.7v.9l.4-.2z"], + "node-js": [448, 512, [], "f3d3", "M224 508c-6.7 0-13.5-1.8-19.4-5.2l-61.7-36.5c-9.2-5.2-4.7-7-1.7-8 12.3-4.3 14.8-5.2 27.9-12.7 1.4-.8 3.2-.5 4.6.4l47.4 28.1c1.7 1 4.1 1 5.7 0l184.7-106.6c1.7-1 2.8-3 2.8-5V149.3c0-2.1-1.1-4-2.9-5.1L226.8 37.7c-1.7-1-4-1-5.7 0L36.6 144.3c-1.8 1-2.9 3-2.9 5.1v213.1c0 2 1.1 4 2.9 4.9l50.6 29.2c27.5 13.7 44.3-2.4 44.3-18.7V167.5c0-3 2.4-5.3 5.4-5.3h23.4c2.9 0 5.4 2.3 5.4 5.3V378c0 36.6-20 57.6-54.7 57.6-10.7 0-19.1 0-42.5-11.6l-48.4-27.9C8.1 389.2.7 376.3.7 362.4V149.3c0-13.8 7.4-26.8 19.4-33.7L204.6 9c11.7-6.6 27.2-6.6 38.8 0l184.7 106.7c12 6.9 19.4 19.8 19.4 33.7v213.1c0 13.8-7.4 26.7-19.4 33.7L243.4 502.8c-5.9 3.4-12.6 5.2-19.4 5.2zm149.1-210.1c0-39.9-27-50.5-83.7-58-57.4-7.6-63.2-11.5-63.2-24.9 0-11.1 4.9-25.9 47.4-25.9 37.9 0 51.9 8.2 57.7 33.8.5 2.4 2.7 4.2 5.2 4.2h24c1.5 0 2.9-.6 3.9-1.7s1.5-2.6 1.4-4.1c-3.7-44.1-33-64.6-92.2-64.6-52.7 0-84.1 22.2-84.1 59.5 0 40.4 31.3 51.6 81.8 56.6 60.5 5.9 65.2 14.8 65.2 26.7 0 20.6-16.6 29.4-55.5 29.4-48.9 0-59.6-12.3-63.2-36.6-.4-2.6-2.6-4.5-5.3-4.5h-23.9c-3 0-5.3 2.4-5.3 5.3 0 31.1 16.9 68.2 97.8 68.2 58.4-.1 92-23.2 92-63.4z"], + "npm": [576, 512, [], "f3d4", "M288 288h-32v-64h32v64zm288-128v192H288v32H160v-32H0V160h576zm-416 32H32v128h64v-96h32v96h32V192zm160 0H192v160h64v-32h64V192zm224 0H352v128h64v-96h32v96h32v-96h32v96h32V192z"], + "ns8": [640, 512, [], "f3d5", "M187.1 159.9l-34.2 113.7-54.5-113.7H49L0 320h44.9L76 213.5 126.6 320h56.9L232 159.9h-44.9zm452.5-.9c-2.9-18-23.9-28.1-42.1-31.3-44.6-7.8-101.9 16.3-88.5 58.8v.1c-43.8 8.7-74.3 26.8-94.2 48.2-3-9.8-13.6-16.6-34-16.6h-87.6c-9.3 0-12.9-2.3-11.5-7.4 1.6-5.5 1.9-6.8 3.7-12.2 2.1-6.4 7.8-7.1 13.3-7.1h133.5l9.7-31.5c-139.7 0-144.5-.5-160.1 1.2-12.3 1.3-23.5 4.8-30.6 15-6.8 9.9-14.4 35.6-17.6 47.1-5.4 19.4-.6 28.6 32.8 28.6h87.3c7.8 0 8.8 2.7 7.7 6.6-1.1 4.4-2.8 10-4.5 14.6-1.6 4.2-4.7 7.4-13.8 7.4H216.3L204.7 320c139.9 0 145.3-.6 160.9-2.3 6.6-.7 13-2.1 18.5-4.9.2 3.7.5 7.3 1.2 10.8 5.4 30.5 27.4 52.3 56.8 59.5 48.6 11.9 108.7-16.8 135.1-68 18.7-36.2 14.1-76.2-3.4-105.5h.1c29.6-5.9 70.3-22 65.7-50.6zM530.7 263.7c-5.9 29.5-36.6 47.8-61.6 43.9-30.9-4.8-38.5-39.5-14.1-64.8 16.2-16.8 45.2-24 68.5-26.9 6.7 14.1 10.3 32 7.2 47.8zm21.8-83.1c-4.2-6-9.8-18.5-2.5-26.3 6.7-7.2 20.9-10.1 31.8-7.7 15.3 3.4 19.7 15.9 4.9 24.4-10.7 6.1-23.6 8.1-34.2 9.6z"], + "nutritionix": [400, 512, [], "f3d6", "M88 8.1S221.4-.1 209 112.5c0 0 19.1-74.9 103-40.6 0 0-17.7 74-88 56 0 0 14.6-54.6 66.1-56.6 0 0-39.9-10.3-82.1 48.8 0 0-19.8-94.5-93.6-99.7 0 0 75.2 19.4 77.6 107.5 0 .1-106.4 7-104-119.8zm312 315.6c0 48.5-9.7 95.3-32 132.3-42.2 30.9-105 48-168 48-62.9 0-125.8-17.1-168-48C9.7 419 0 372.2 0 323.7 0 275.3 17.7 229 40 192c42.2-30.9 97.1-48.6 160-48.6 63 0 117.8 17.6 160 48.6 22.3 37 40 83.3 40 131.7zM120 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM192 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM264 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM336 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm24-39.6c-4.8-22.3-7.4-36.9-16-56-38.8-19.9-90.5-32-144-32S94.8 180.1 56 200c-8.8 19.5-11.2 33.9-16 56 42.2-7.9 98.7-14.8 160-14.8s117.8 6.9 160 14.8z"], + "odnoklassniki": [320, 512, [], "f263", "M275.1 334c-27.4 17.4-65.1 24.3-90 26.9l20.9 20.6 76.3 76.3c27.9 28.6-17.5 73.3-45.7 45.7-19.1-19.4-47.1-47.4-76.3-76.6L84 503.4c-28.2 27.5-73.6-17.6-45.4-45.7 19.4-19.4 47.1-47.4 76.3-76.3l20.6-20.6c-24.6-2.6-62.9-9.1-90.6-26.9-32.6-21-46.9-33.3-34.3-59 7.4-14.6 27.7-26.9 54.6-5.7 0 0 36.3 28.9 94.9 28.9s94.9-28.9 94.9-28.9c26.9-21.1 47.1-8.9 54.6 5.7 12.4 25.7-1.9 38-34.5 59.1zM30.3 129.7C30.3 58 88.6 0 160 0s129.7 58 129.7 129.7c0 71.4-58.3 129.4-129.7 129.4s-129.7-58-129.7-129.4zm66 0c0 35.1 28.6 63.7 63.7 63.7s63.7-28.6 63.7-63.7c0-35.4-28.6-64-63.7-64s-63.7 28.6-63.7 64z"], + "odnoklassniki-square": [448, 512, [], "f264", "M184.2 177.1c0-22.1 17.9-40 39.8-40s39.8 17.9 39.8 40c0 22-17.9 39.8-39.8 39.8s-39.8-17.9-39.8-39.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-305.1 97.1c0 44.6 36.4 80.9 81.1 80.9s81.1-36.2 81.1-80.9c0-44.8-36.4-81.1-81.1-81.1s-81.1 36.2-81.1 81.1zm174.5 90.7c-4.6-9.1-17.3-16.8-34.1-3.6 0 0-22.7 18-59.3 18s-59.3-18-59.3-18c-16.8-13.2-29.5-5.5-34.1 3.6-7.9 16.1 1.1 23.7 21.4 37 17.3 11.1 41.2 15.2 56.6 16.8l-12.9 12.9c-18.2 18-35.5 35.5-47.7 47.7-17.6 17.6 10.7 45.8 28.4 28.6l47.7-47.9c18.2 18.2 35.7 35.7 47.7 47.9 17.6 17.2 46-10.7 28.6-28.6l-47.7-47.7-13-12.9c15.5-1.6 39.1-5.9 56.2-16.8 20.4-13.3 29.3-21 21.5-37z"], + "old-republic": [496, 512, [], "f510", "M235.76 10.23c7.5-.31 15-.28 22.5-.09 3.61.14 7.2.4 10.79.73 4.92.27 9.79 1.03 14.67 1.62 2.93.43 5.83.98 8.75 1.46 7.9 1.33 15.67 3.28 23.39 5.4 12.24 3.47 24.19 7.92 35.76 13.21 26.56 12.24 50.94 29.21 71.63 49.88 20.03 20.09 36.72 43.55 48.89 69.19 1.13 2.59 2.44 5.1 3.47 7.74 2.81 6.43 5.39 12.97 7.58 19.63 4.14 12.33 7.34 24.99 9.42 37.83.57 3.14 1.04 6.3 1.4 9.47.55 3.83.94 7.69 1.18 11.56.83 8.34.84 16.73.77 25.1-.07 4.97-.26 9.94-.75 14.89-.24 3.38-.51 6.76-.98 10.12-.39 2.72-.63 5.46-1.11 8.17-.9 5.15-1.7 10.31-2.87 15.41-4.1 18.5-10.3 36.55-18.51 53.63-15.77 32.83-38.83 62.17-67.12 85.12a246.503 246.503 0 0 1-56.91 34.86c-6.21 2.68-12.46 5.25-18.87 7.41-3.51 1.16-7.01 2.38-10.57 3.39-6.62 1.88-13.29 3.64-20.04 5-4.66.91-9.34 1.73-14.03 2.48-5.25.66-10.5 1.44-15.79 1.74-6.69.66-13.41.84-20.12.81-6.82.03-13.65-.12-20.45-.79-3.29-.23-6.57-.5-9.83-.95-2.72-.39-5.46-.63-8.17-1.11-4.12-.72-8.25-1.37-12.35-2.22-4.25-.94-8.49-1.89-12.69-3.02-8.63-2.17-17.08-5.01-25.41-8.13-10.49-4.12-20.79-8.75-30.64-14.25-2.14-1.15-4.28-2.29-6.35-3.57-11.22-6.58-21.86-14.1-31.92-22.34-34.68-28.41-61.41-66.43-76.35-108.7-3.09-8.74-5.71-17.65-7.8-26.68-1.48-6.16-2.52-12.42-3.58-18.66-.4-2.35-.61-4.73-.95-7.09-.6-3.96-.75-7.96-1.17-11.94-.8-9.47-.71-18.99-.51-28.49.14-3.51.34-7.01.7-10.51.31-3.17.46-6.37.92-9.52.41-2.81.65-5.65 1.16-8.44.7-3.94 1.3-7.9 2.12-11.82 3.43-16.52 8.47-32.73 15.26-48.18 1.15-2.92 2.59-5.72 3.86-8.59 8.05-16.71 17.9-32.56 29.49-47.06 20-25.38 45.1-46.68 73.27-62.47 7.5-4.15 15.16-8.05 23.07-11.37 15.82-6.88 32.41-11.95 49.31-15.38 3.51-.67 7.04-1.24 10.56-1.85 2.62-.47 5.28-.7 7.91-1.08 3.53-.53 7.1-.68 10.65-1.04 2.46-.24 4.91-.36 7.36-.51m8.64 24.41c-9.23.1-18.43.99-27.57 2.23-7.3 1.08-14.53 2.6-21.71 4.3-13.91 3.5-27.48 8.34-40.46 14.42-10.46 4.99-20.59 10.7-30.18 17.22-4.18 2.92-8.4 5.8-12.34 9.03-5.08 3.97-9.98 8.17-14.68 12.59-2.51 2.24-4.81 4.7-7.22 7.06-28.22 28.79-48.44 65.39-57.5 104.69-2.04 8.44-3.54 17.02-4.44 25.65-1.1 8.89-1.44 17.85-1.41 26.8.11 7.14.38 14.28 1.22 21.37.62 7.12 1.87 14.16 3.2 21.18 1.07 4.65 2.03 9.32 3.33 13.91 6.29 23.38 16.5 45.7 30.07 65.75 8.64 12.98 18.78 24.93 29.98 35.77 16.28 15.82 35.05 29.04 55.34 39.22 7.28 3.52 14.66 6.87 22.27 9.63 5.04 1.76 10.06 3.57 15.22 4.98 11.26 3.23 22.77 5.6 34.39 7.06 2.91.29 5.81.61 8.72.9 13.82 1.08 27.74 1 41.54-.43 4.45-.6 8.92-.99 13.35-1.78 3.63-.67 7.28-1.25 10.87-2.1 4.13-.98 8.28-1.91 12.36-3.07 26.5-7.34 51.58-19.71 73.58-36.2 15.78-11.82 29.96-25.76 42.12-41.28 3.26-4.02 6.17-8.31 9.13-12.55 3.39-5.06 6.58-10.25 9.6-15.54 2.4-4.44 4.74-8.91 6.95-13.45 5.69-12.05 10.28-24.62 13.75-37.49 2.59-10.01 4.75-20.16 5.9-30.45 1.77-13.47 1.94-27.1 1.29-40.65-.29-3.89-.67-7.77-1-11.66-2.23-19.08-6.79-37.91-13.82-55.8-5.95-15.13-13.53-29.63-22.61-43.13-12.69-18.8-28.24-35.68-45.97-49.83-25.05-20-54.47-34.55-85.65-42.08-7.78-1.93-15.69-3.34-23.63-4.45-3.91-.59-7.85-.82-11.77-1.24-7.39-.57-14.81-.72-22.22-.58zM139.26 83.53c13.3-8.89 28.08-15.38 43.3-20.18-3.17 1.77-6.44 3.38-9.53 5.29-11.21 6.68-21.52 14.9-30.38 24.49-6.8 7.43-12.76 15.73-17.01 24.89-3.29 6.86-5.64 14.19-6.86 21.71-.93 4.85-1.3 9.81-1.17 14.75.13 13.66 4.44 27.08 11.29 38.82 5.92 10.22 13.63 19.33 22.36 27.26 4.85 4.36 10.24 8.09 14.95 12.6 2.26 2.19 4.49 4.42 6.43 6.91 2.62 3.31 4.89 6.99 5.99 11.1.9 3.02.66 6.2.69 9.31.02 4.1-.04 8.2.03 12.3.14 3.54-.02 7.09.11 10.63.08 2.38.02 4.76.05 7.14.16 5.77.06 11.53.15 17.3.11 2.91.02 5.82.13 8.74.03 1.63.13 3.28-.03 4.91-.91.12-1.82.18-2.73.16-10.99 0-21.88-2.63-31.95-6.93-6-2.7-11.81-5.89-17.09-9.83-5.75-4.19-11.09-8.96-15.79-14.31-6.53-7.24-11.98-15.39-16.62-23.95-1.07-2.03-2.24-4.02-3.18-6.12-1.16-2.64-2.62-5.14-3.67-7.82-4.05-9.68-6.57-19.94-8.08-30.31-.49-4.44-1.09-8.88-1.2-13.35-.7-15.73.84-31.55 4.67-46.82 2.12-8.15 4.77-16.18 8.31-23.83 6.32-14.2 15.34-27.18 26.3-38.19 6.28-6.2 13.13-11.84 20.53-16.67zm175.37-20.12c2.74.74 5.41 1.74 8.09 2.68 6.36 2.33 12.68 4.84 18.71 7.96 13.11 6.44 25.31 14.81 35.82 24.97 10.2 9.95 18.74 21.6 25.14 34.34 1.28 2.75 2.64 5.46 3.81 8.26 6.31 15.1 10 31.26 11.23 47.57.41 4.54.44 9.09.45 13.64.07 11.64-1.49 23.25-4.3 34.53-1.97 7.27-4.35 14.49-7.86 21.18-3.18 6.64-6.68 13.16-10.84 19.24-6.94 10.47-15.6 19.87-25.82 27.22-10.48 7.64-22.64 13.02-35.4 15.38-3.51.69-7.08 1.08-10.66 1.21-1.85.06-3.72.16-5.56-.1-.28-2.15 0-4.31-.01-6.46-.03-3.73.14-7.45.1-11.17.19-7.02.02-14.05.21-21.07.03-2.38-.03-4.76.03-7.14.17-5.07-.04-10.14.14-15.21.1-2.99-.24-6.04.51-8.96.66-2.5 1.78-4.86 3.09-7.08 4.46-7.31 11.06-12.96 17.68-18.26 5.38-4.18 10.47-8.77 15.02-13.84 7.68-8.37 14.17-17.88 18.78-28.27 2.5-5.93 4.52-12.1 5.55-18.46.86-4.37 1.06-8.83 1.01-13.27-.02-7.85-1.4-15.65-3.64-23.17-1.75-5.73-4.27-11.18-7.09-16.45-3.87-6.93-8.65-13.31-13.96-19.2-9.94-10.85-21.75-19.94-34.6-27.1-1.85-1.02-3.84-1.82-5.63-2.97zm-100.8 58.45c.98-1.18 1.99-2.33 3.12-3.38-.61.93-1.27 1.81-1.95 2.68-3.1 3.88-5.54 8.31-7.03 13.06-.87 3.27-1.68 6.6-1.73 10-.07 2.52-.08 5.07.32 7.57 1.13 7.63 4.33 14.85 8.77 21.12 2 2.7 4.25 5.27 6.92 7.33 1.62 1.27 3.53 2.09 5.34 3.05 3.11 1.68 6.32 3.23 9.07 5.48 2.67 2.09 4.55 5.33 4.4 8.79-.01 73.67 0 147.34-.01 221.02 0 1.35-.08 2.7.04 4.04.13 1.48.82 2.83 1.47 4.15.86 1.66 1.78 3.34 3.18 4.62.85.77 1.97 1.4 3.15 1.24 1.5-.2 2.66-1.35 3.45-2.57.96-1.51 1.68-3.16 2.28-4.85.76-2.13.44-4.42.54-6.63.14-4.03-.02-8.06.14-12.09.03-5.89.03-11.77.06-17.66.14-3.62.03-7.24.11-10.86.15-4.03-.02-8.06.14-12.09.03-5.99.03-11.98.07-17.97.14-3.62.02-7.24.11-10.86.14-3.93-.02-7.86.14-11.78.03-5.99.03-11.98.06-17.97.16-3.94-.01-7.88.19-11.82.29 1.44.13 2.92.22 4.38.19 3.61.42 7.23.76 10.84.32 3.44.44 6.89.86 10.32.37 3.1.51 6.22.95 9.31.57 4.09.87 8.21 1.54 12.29 1.46 9.04 2.83 18.11 5.09 26.99 1.13 4.82 2.4 9.61 4 14.3 2.54 7.9 5.72 15.67 10.31 22.62 1.73 2.64 3.87 4.98 6.1 7.21.27.25.55.51.88.71.6.25 1.31-.07 1.7-.57.71-.88 1.17-1.94 1.7-2.93 4.05-7.8 8.18-15.56 12.34-23.31.7-1.31 1.44-2.62 2.56-3.61 1.75-1.57 3.84-2.69 5.98-3.63 2.88-1.22 5.9-2.19 9.03-2.42 6.58-.62 13.11.75 19.56 1.85 3.69.58 7.4 1.17 11.13 1.41 3.74.1 7.48.05 11.21-.28 8.55-.92 16.99-2.96 24.94-6.25 5.3-2.24 10.46-4.83 15.31-7.93 11.46-7.21 21.46-16.57 30.04-27.01 1.17-1.42 2.25-2.9 3.46-4.28-1.2 3.24-2.67 6.37-4.16 9.48-1.25 2.9-2.84 5.61-4.27 8.42-5.16 9.63-11.02 18.91-17.75 27.52-4.03 5.21-8.53 10.05-13.33 14.57-6.64 6.05-14.07 11.37-22.43 14.76-8.21 3.37-17.31 4.63-26.09 3.29-3.56-.58-7.01-1.69-10.41-2.88-2.79-.97-5.39-2.38-8.03-3.69-3.43-1.71-6.64-3.81-9.71-6.08 2.71 3.06 5.69 5.86 8.7 8.61 4.27 3.76 8.74 7.31 13.63 10.23 3.98 2.45 8.29 4.4 12.84 5.51 1.46.37 2.96.46 4.45.6-1.25 1.1-2.63 2.04-3.99 2.98-9.61 6.54-20.01 11.86-30.69 16.43-20.86 8.7-43.17 13.97-65.74 15.34-4.66.24-9.32.36-13.98.36-4.98-.11-9.97-.13-14.92-.65-11.2-.76-22.29-2.73-33.17-5.43-10.35-2.71-20.55-6.12-30.3-10.55-8.71-3.86-17.12-8.42-24.99-13.79-1.83-1.31-3.74-2.53-5.37-4.08 6.6-1.19 13.03-3.39 18.99-6.48 5.74-2.86 10.99-6.66 15.63-11.07 2.24-2.19 4.29-4.59 6.19-7.09-3.43 2.13-6.93 4.15-10.62 5.78-4.41 2.16-9.07 3.77-13.81 5.02-5.73 1.52-11.74 1.73-17.61 1.14-8.13-.95-15.86-4.27-22.51-8.98-4.32-2.94-8.22-6.43-11.96-10.06-9.93-10.16-18.2-21.81-25.66-33.86-3.94-6.27-7.53-12.75-11.12-19.22-1.05-2.04-2.15-4.05-3.18-6.1 2.85 2.92 5.57 5.97 8.43 8.88 8.99 8.97 18.56 17.44 29.16 24.48 7.55 4.9 15.67 9.23 24.56 11.03 3.11.73 6.32.47 9.47.81 2.77.28 5.56.2 8.34.3 5.05.06 10.11.04 15.16-.16 3.65-.16 7.27-.66 10.89-1.09 2.07-.25 4.11-.71 6.14-1.2 3.88-.95 8.11-.96 11.83.61 4.76 1.85 8.44 5.64 11.38 9.71 2.16 3.02 4.06 6.22 5.66 9.58 1.16 2.43 2.46 4.79 3.55 7.26 1 2.24 2.15 4.42 3.42 6.52.67 1.02 1.4 2.15 2.62 2.55 1.06-.75 1.71-1.91 2.28-3.03 2.1-4.16 3.42-8.65 4.89-13.05 2.02-6.59 3.78-13.27 5.19-20.02 2.21-9.25 3.25-18.72 4.54-28.13.56-3.98.83-7.99 1.31-11.97.87-10.64 1.9-21.27 2.24-31.94.08-1.86.24-3.71.25-5.57.01-4.35.25-8.69.22-13.03-.01-2.38-.01-4.76 0-7.13.05-5.07-.2-10.14-.22-15.21-.2-6.61-.71-13.2-1.29-19.78-.73-5.88-1.55-11.78-3.12-17.51-2.05-7.75-5.59-15.03-9.8-21.82-3.16-5.07-6.79-9.88-11.09-14.03-3.88-3.86-8.58-7.08-13.94-8.45-1.5-.41-3.06-.45-4.59-.64.07-2.99.7-5.93 1.26-8.85 1.59-7.71 3.8-15.3 6.76-22.6 1.52-4.03 3.41-7.9 5.39-11.72 3.45-6.56 7.62-12.79 12.46-18.46zm31.27 1.7c.35-.06.71-.12 1.07-.19.19 1.79.09 3.58.1 5.37v38.13c-.01 1.74.13 3.49-.15 5.22-.36-.03-.71-.05-1.06-.05-.95-3.75-1.72-7.55-2.62-11.31-.38-1.53-.58-3.09-1.07-4.59-1.7-.24-3.43-.17-5.15-.2-5.06-.01-10.13 0-15.19-.01-1.66-.01-3.32.09-4.98-.03-.03-.39-.26-.91.16-1.18 1.28-.65 2.72-.88 4.06-1.35 3.43-1.14 6.88-2.16 10.31-3.31 1.39-.48 2.9-.72 4.16-1.54.04-.56.02-1.13-.05-1.68-1.23-.55-2.53-.87-3.81-1.28-3.13-1.03-6.29-1.96-9.41-3.02-1.79-.62-3.67-1-5.41-1.79-.03-.37-.07-.73-.11-1.09 5.09-.19 10.2.06 15.3-.12 3.36-.13 6.73.08 10.09-.07.12-.39.26-.77.37-1.16 1.08-4.94 2.33-9.83 3.39-14.75zm5.97-.2c.36.05.72.12 1.08.2.98 3.85 1.73 7.76 2.71 11.61.36 1.42.56 2.88 1.03 4.27 2.53.18 5.07-.01 7.61.05 5.16.12 10.33.12 15.49.07.76-.01 1.52.03 2.28.08-.04.36-.07.72-.1 1.08-1.82.83-3.78 1.25-5.67 1.89-3.73 1.23-7.48 2.39-11.22 3.57-.57.17-1.12.42-1.67.64-.15.55-.18 1.12-.12 1.69.87.48 1.82.81 2.77 1.09 4.88 1.52 9.73 3.14 14.63 4.6.38.13.78.27 1.13.49.4.27.23.79.15 1.18-1.66.13-3.31.03-4.97.04-5.17.01-10.33-.01-15.5.01-1.61.03-3.22-.02-4.82.21-.52 1.67-.72 3.42-1.17 5.11-.94 3.57-1.52 7.24-2.54 10.78-.36.01-.71.02-1.06.06-.29-1.73-.15-3.48-.15-5.22v-38.13c.02-1.78-.08-3.58.11-5.37zM65.05 168.33c1.12-2.15 2.08-4.4 3.37-6.46-1.82 7.56-2.91 15.27-3.62 23-.8 7.71-.85 15.49-.54 23.23 1.05 19.94 5.54 39.83 14.23 57.88 2.99 5.99 6.35 11.83 10.5 17.11 6.12 7.47 12.53 14.76 19.84 21.09 4.8 4.1 9.99 7.78 15.54 10.8 3.27 1.65 6.51 3.39 9.94 4.68 5.01 2.03 10.19 3.61 15.42 4.94 3.83.96 7.78 1.41 11.52 2.71 5 1.57 9.47 4.61 13.03 8.43 4.93 5.23 8.09 11.87 10.2 18.67.99 2.9 1.59 5.91 2.17 8.92.15.75.22 1.52.16 2.29-6.5 2.78-13.26 5.06-20.26 6.18-4.11.78-8.29.99-12.46 1.08-10.25.24-20.47-1.76-30.12-5.12-3.74-1.42-7.49-2.85-11.03-4.72-8.06-3.84-15.64-8.7-22.46-14.46-2.92-2.55-5.83-5.13-8.4-8.03-9.16-9.83-16.3-21.41-21.79-33.65-2.39-5.55-4.61-11.18-6.37-16.96-1.17-3.94-2.36-7.89-3.26-11.91-.75-2.94-1.22-5.95-1.87-8.92-.46-2.14-.69-4.32-1.03-6.48-.85-5.43-1.28-10.93-1.33-16.43.11-6.18.25-12.37 1.07-18.5.4-2.86.67-5.74 1.15-8.6.98-5.7 2.14-11.37 3.71-16.93 3.09-11.65 7.48-22.95 12.69-33.84zm363.73-6.44c1.1 1.66 1.91 3.48 2.78 5.26 2.1 4.45 4.24 8.9 6.02 13.49 7.61 18.76 12.3 38.79 13.04 59.05.02 1.76.07 3.52.11 5.29.13 9.57-1.27 19.09-3.18 28.45-.73 3.59-1.54 7.17-2.58 10.69-4.04 14.72-10 29-18.41 41.78-8.21 12.57-19.01 23.55-31.84 31.41-5.73 3.59-11.79 6.64-18.05 9.19-5.78 2.19-11.71 4.03-17.8 5.11-6.4 1.05-12.91 1.52-19.4 1.23-7.92-.48-15.78-2.07-23.21-4.85-1.94-.8-3.94-1.46-5.84-2.33-.21-1.51.25-2.99.53-4.46 1.16-5.74 3.03-11.36 5.7-16.58 2.37-4.51 5.52-8.65 9.46-11.9 2.43-2.05 5.24-3.61 8.16-4.83 3.58-1.5 7.47-1.97 11.24-2.83 7.23-1.71 14.37-3.93 21.15-7 10.35-4.65 19.71-11.38 27.65-19.46 1.59-1.61 3.23-3.18 4.74-4.87 3.37-3.76 6.71-7.57 9.85-11.53 7.48-10.07 12.82-21.59 16.71-33.48 1.58-5.3 3.21-10.6 4.21-16.05.63-2.87 1.04-5.78 1.52-8.68.87-6.09 1.59-12.22 1.68-18.38.12-6.65.14-13.32-.53-19.94-.73-7.99-1.87-15.96-3.71-23.78z"], + "opencart": [640, 512, [], "f23d", "M423.3 440.7c0 25.3-20.3 45.6-45.6 45.6s-45.8-20.3-45.8-45.6 20.6-45.8 45.8-45.8c25.4 0 45.6 20.5 45.6 45.8zm-253.9-45.8c-25.3 0-45.6 20.6-45.6 45.8s20.3 45.6 45.6 45.6 45.8-20.3 45.8-45.6-20.5-45.8-45.8-45.8zm291.7-270C158.9 124.9 81.9 112.1 0 25.7c34.4 51.7 53.3 148.9 373.1 144.2 333.3-5 130 86.1 70.8 188.9 186.7-166.7 319.4-233.9 17.2-233.9z"], + "openid": [448, 512, [], "f19b", "M271.5 432l-68 32C88.5 453.7 0 392.5 0 318.2c0-71.5 82.5-131 191.7-144.3v43c-71.5 12.5-124 53-124 101.3 0 51 58.5 93.3 135.7 103v-340l68-33.2v384zM448 291l-131.3-28.5 36.8-20.7c-19.5-11.5-43.5-20-70-24.8v-43c46.2 5.5 87.7 19.5 120.3 39.3l35-19.8L448 291z"], + "opera": [496, 512, [], "f26a", "M313.9 32.7c-170.2 0-252.6 223.8-147.5 355.1 36.5 45.4 88.6 75.6 147.5 75.6 36.3 0 70.3-11.1 99.4-30.4-43.8 39.2-101.9 63-165.3 63-3.9 0-8 0-11.9-.3C104.6 489.6 0 381.1 0 248 0 111 111 0 248 0h.8c63.1.3 120.7 24.1 164.4 63.1-29-19.4-63.1-30.4-99.3-30.4zm101.8 397.7c-40.9 24.7-90.7 23.6-132-5.8 56.2-20.5 97.7-91.6 97.7-176.6 0-84.7-41.2-155.8-97.4-176.6 41.8-29.2 91.2-30.3 132.9-5 105.9 98.7 105.5 265.7-1.2 364z"], + "optin-monster": [576, 512, [], "f23c", "M550.671 450.303c0 11.62-15.673 19.457-32.158 14.863-12.16-3.243-31.346-17.565-36.211-27.294-5.674-11.62 4.054-32.698 18.916-30.806 15.674 1.621 49.453 25.401 49.453 43.237zM372.86 75.223c-3.783-72.151-100.796-79.718-125.928-23.51 44.588-24.321 90.257-15.673 125.928 23.51zM74.795 407.066c-15.673 1.621-49.452 25.401-49.452 43.237 0 11.62 15.673 19.457 32.157 14.863 12.16-3.243 31.076-17.565 35.94-27.294 5.946-11.62-3.782-32.698-18.645-30.806zm497.765 14.322c1.081 3.513 1.892 7.026 1.892 10.809.81 31.616-44.317 64.045-73.503 65.125-17.295.81-34.59-8.377-42.696-23.51-113.497 4.053-226.994 4.864-340.22 0-8.377 15.133-25.672 24.05-42.967 23.51-28.915-1.081-74.043-33.509-73.503-65.125.27-3.783.811-7.296 1.892-10.809-5.566-9.463-4.845-15.282 5.405-11.62 3.243-5.134 7.026-9.458 11.08-13.782-2.57-10.917 1.27-14.094 11.079-9.188 4.594-3.243 9.998-6.485 15.944-9.188 0-15.757 11.839-11.131 17.295-5.675 12.467-1.78 20.129.709 26.753 5.675v-19.726c-12.987 0-40.641-11.375-45.94-36.212-4.974-20.725 2.607-38.075 25.132-47.56.81-5.945 8.107-14.052 14.862-15.944 7.567-1.892 12.431 4.594 14.052 10.269 7.425 0 17.757 1.465 21.078 8.107 5.405-.541 11.079-1.352 16.484-1.892-2.432-1.892-5.134-3.513-8.107-4.594-5.134-8.917-13.782-11.079-24.591-11.62 0-.81 0-1.621.27-2.702-19.727-.541-44.048-5.675-54.857-17.835-21.321-23.638-15.935-83.577 12.16-103.498 8.377-5.675 21.618-.811 22.699 9.728 2.425 20.598.399 26.833 26.212 25.942 8.107-7.836 16.755-14.592 26.483-19.997-14.862-1.352-28.914 1.621-43.778 3.783 12.752-12.48 23.953-25.442 56.748-42.427 23.511-11.89 49.993-20.808 76.205-23.239-18.646-7.837-39.993-11.891-59.721-16.484 76.475-16.214 174.569-22.159 244.289 37.562 18.105 15.403 32.427 36.211 42.696 59.992 39.799 4.853 36.47-5.581 38.643-25.132 1.081-10.269 14.322-15.403 22.699-9.458 14.862 10.539 22.159 30.806 24.59 48.101 2.162 17.835.27 41.345-12.43 55.127-10.809 12.16-34.32 17.565-53.776 18.105v2.703c-11.08.27-20.268 2.432-25.673 11.62-2.972 1.081-5.674 2.703-8.377 4.594 5.675.54 11.35 1.351 16.755 1.891 1.869-5.619 12.535-8.377 21.077-8.377 1.621-5.405 6.756-11.89 14.052-10.269s14.052 9.998 14.863 15.944c10.809 4.324 22.159 12.16 25.131 25.672 1.892 8.107 1.621 15.133.27 21.888-5.726 25.262-33.361 36.212-45.939 36.212 0 6.756 0 13.241-.27 19.726 8.01-6.006 16.367-7.158 26.752-5.675 5.919-5.919 17.565-9.41 17.565 5.675 5.675 2.703 11.349 5.945 15.944 9.188 10.1-5.051 13.669-.539 10.809 9.188 4.053 4.323 8.107 8.917 11.079 13.782 10.136-3.62 11.021 2.078 5.409 11.62zm-73.773-254.016c17.295 6.756 26.212 22.159 30.265 35.67 1.081-10.539-2.702-39.453-13.782-51.073-7.296-7.296-14.052-5.134-14.052.81.001 6.216-1.35 11.62-2.431 14.593zm-18.646 12.43c12.971 15.673 17.024 41.615 12.7 62.963 10.809-2.162 20.537-6.215 26.212-12.16 1.892-2.162 3.783-4.864 4.864-7.566-1.081-21.348-10.269-42.697-29.725-48.912-3.242 3.243-9.187 4.864-14.051 5.675zm-21.889.811c7.567 20.537 12.431 42.696 14.322 64.585 3.513 0 7.567-.27 11.62-.811 5.945-24.321-.27-51.614-14.052-63.504-3.783 0-8.107 0-11.89-.27zM77.768 167.372c-1.081-2.973-2.432-8.377-2.432-14.593 0-5.945-7.026-8.107-14.052-.81-11.35 11.62-14.863 40.534-13.782 51.073 4.053-13.512 12.971-28.915 30.266-35.67zm5.675 75.394c-4.324-21.348-.27-47.291 12.701-62.963-4.865-.811-10.809-2.432-14.052-5.675-19.457 6.215-28.375 27.563-29.726 48.912 1.351 2.702 2.972 5.404 4.864 7.566 5.675 6.215 15.403 9.998 26.213 12.16zm41.345-61.073c-5.134 1.081-9.998 2.973-14.862 4.865l-12.16 5.134v-.27c-7.296 14.052-9.999 34.319-5.405 52.965 4.594.541 8.647.811 12.7.811 2.432-22.159 9.188-43.778 19.727-63.505zm88.095-23.239c0 42.155 34.319 76.205 76.205 76.205s76.205-34.05 76.205-76.205c0-41.886-34.319-75.935-76.205-75.935s-76.205 34.049-76.205 75.935zm152.41 97.283c9.969 50.608 3.299 64.692 16.484 58.099 15.944-8.107 22.699-39.183 22.97-57.019-12.971-.81-26.213-.81-39.454-1.08zm-71.611-.541v-.27c-.27 5.134.27 38.103 4.324 41.075 11.079 5.405 39.453 4.594 51.073 1.081 5.405-1.621 2.432-37.022 1.621-41.886-18.916-.27-38.102-.27-57.018 0zm-14.053 0v-.27c-19.456.27-38.642.27-57.829.811-1.892 9.187-4.594 48.911 1.892 51.614 12.971 5.675 41.616 5.134 54.586 1.621 4.595-2.432 2.433-45.399 1.351-53.776zm-85.662 57.56c5.405 2.432 8.647 2.432 9.728-4.324 1.892-8.647 2.432-36.752 4.865-52.155-12.16.27-24.591.811-36.752 1.621-5.405 19.727.27 45.129 22.159 54.858zm-65.666-11.08c43.778 47.02 92.689 85.663 155.923 106.47 67.558-19.186 115.659-59.991 163.219-107.011-11.095-4.315-7.715-10.363-7.296-11.62-8.918-.81-17.835-1.892-26.483-2.702-9.458 32.968-35.94 52.965-46.75 31.616-2.702-5.134-3.513-11.62-4.594-16.754-3.783 8.377-13.242 8.107-24.591 8.918-13.241 1.081-31.617 1.351-44.048-2.972-2.972 12.971-11.079 12.971-26.752 14.322-14.052 1.352-48.642 4.054-54.857-10.809-1.081 28.644-35.13 9.998-45.129-7.026-3.243-5.675-5.405-11.35-7.026-17.565-7.837.81-15.673 1.621-23.511 2.702 2.443 3.663 1.549 9.052-8.105 12.431zM115.6 453.545c-5.674-23.239-18.646-49.722-33.508-54.046-22.429-6.756-68.909 23.51-66.207 54.586 12.701 19.457 39.994 35.67 59.181 36.481 17.835.81 35.94-11.08 39.724-28.914.539-2.432.81-5.134.81-8.107zm7.296-5.944c33.509-19.457 69.179-35.671 105.931-47.02-38.643-20.537-68.098-47.831-97.283-77.016-2.162 1.352-5.134 2.432-7.836 3.513-1.637 4.91 8.718 5.33 5.405 12.431-2.162 4.054-8.648 7.567-15.133 9.188-2.161 2.702-5.134 4.864-7.836 6.485h-.27c-.27 13.511-.27 27.024.27 40.535 8.939 15.964 15.426 33.314 16.752 51.884zm320.764 12.7c-36.752-21.348-74.044-41.345-115.659-52.965-13.782 6.215-27.833 11.349-42.155 15.403-2.162.811-2.162.811-4.324 0-11.89-3.783-23.239-8.107-34.859-13.241-40.265 11.62-77.286 29.185-112.416 50.803h-.27v.27c.27 0 .27 0 .27-.27 103.227 4.054 206.455 3.513 309.413 0zm27.023-64.045l-.27.27c.541-13.782.811-27.563.811-41.345-2.973-1.621-5.675-4.054-8.107-6.756-6.485-1.351-12.971-5.134-15.133-8.918-1.892-4.053 1.351-7.566 5.945-10.269-.27-.541-.541-1.621-.541-2.432-2.972-.811-5.405-1.892-7.567-3.243-31.616 29.455-65.396 56.749-103.498 76.746 38.914 11.62 75.935 28.104 111.875 47.561 1.05-14.692 7.231-35.749 16.485-51.614zm23.24 3.244c-14.593 4.323-27.834 30.806-33.509 54.046 0 23.826 21.278 37.897 40.534 37.022 19.186-.811 46.48-17.024 59.181-36.481 2.973-31.077-43.507-61.344-66.206-54.587zM290.709 134.133c.045 0 .089.003.134.003.046 0 .09-.003.136-.003h-.27zm0 96.743c28.645 0 51.884-21.618 51.884-48.371 0-36.092-40.507-58.079-72.151-44.318 9.458 2.972 16.484 11.62 16.484 21.618 0 23.257-33.291 31.955-46.48 11.35-7.297 34.067 19.368 59.721 50.263 59.721zM68.039 474.083c.54 6.486 12.16 12.701 21.618 9.458 6.756-2.703 14.593-10.539 17.295-16.214 2.973-7.026-1.081-19.997-9.728-18.375-8.917 1.621-29.725 16.754-29.185 25.131zm410.75-25.131c-8.377-1.621-12.431 11.349-9.458 18.375 2.432 5.675 10.269 13.511 17.295 16.214 9.187 3.243 21.078-2.972 21.348-9.458.811-8.377-20.267-23.51-29.185-25.131z"], + "osi": [495, 512, [], "f41a", "M0 259.2C2.3 123.4 97.4 26.8 213.8 11.1c138.8-18.6 255.6 75.8 278 201.1 21.3 118.8-44 230-151.6 274-9.3 3.8-14.4 1.7-18-7.7-17.8-46.3-35.6-92.7-53.4-139-3.1-8.1-1-13.2 7-16.8 24.2-11 39.3-29.4 43.3-55.8 6.4-42.4-24.5-78.7-64.5-82.2-39-3.4-71.8 23.7-77.5 59.7-5.2 33 11.1 63.7 41.9 77.7 9.6 4.4 11.5 8.6 7.8 18.4-17.9 46.6-35.8 93.2-53.7 139.9-2.6 6.9-8.3 9.3-15.5 6.5-52.6-20.3-101.4-61-130.8-119C1.9 318.7 1.6 280.2 0 259.2zm20.9-1.9c.4 6.6.6 14.3 1.3 22.1 6.3 71.9 49.6 143.5 131 183.1 3.2 1.5 4.4.8 5.6-2.3 14.9-39.1 29.9-78.2 45-117.3 1.3-3.3.6-4.8-2.4-6.7-31.6-19.9-47.3-48.5-45.6-86 1-21.6 9.3-40.5 23.8-56.3 30-32.7 77-39.8 115.5-17.6 31.9 18.4 49.5 53.8 45.2 90.4-3.6 30.6-19.3 53.9-45.7 69.8-2.7 1.6-3.5 2.9-2.3 6 15.2 39.2 30.2 78.4 45.2 117.7 1.2 3.1 2.4 3.8 5.6 2.3 35.5-16.6 65.2-40.3 88.1-72 34.8-48.2 49.1-101.9 42.3-161C459.8 112 354.1 14.7 218 31.5 111.9 44.5 22.7 134 20.9 257.3z"], + "page4": [496, 512, [], "f3d7", "M248 504C111 504 0 393 0 256S111 8 248 8c20.9 0 41.3 2.6 60.7 7.5L42.3 392H248v112zm0-143.6V146.8L98.6 360.4H248zm96 31.6v92.7c45.7-19.2 84.5-51.7 111.4-92.7H344zm57.4-138.2l-21.2 8.4 21.2 8.3v-16.7zm-20.3 54.5c-6.7 0-8 6.3-8 12.9v7.7h16.2v-10c0-5.9-2.3-10.6-8.2-10.6zM496 256c0 37.3-8.2 72.7-23 104.4H344V27.3C433.3 64.8 496 153.1 496 256zM360.4 143.6h68.2V96h-13.9v32.6h-13.9V99h-13.9v29.6h-12.7V96h-13.9v47.6zm68.1 185.3H402v-11c0-15.4-5.6-25.2-20.9-25.2-15.4 0-20.7 10.6-20.7 25.9v25.3h68.2v-15zm0-103l-68.2 29.7V268l68.2 29.5v-16.6l-14.4-5.7v-26.5l14.4-5.9v-16.9zm-4.8-68.5h-35.6V184H402v-12.2h11c8.6 15.8 1.3 35.3-18.6 35.3-22.5 0-28.3-25.3-15.5-37.7l-11.6-10.6c-16.2 17.5-12.2 63.9 27.1 63.9 34 0 44.7-35.9 29.3-65.3z"], + "pagelines": [384, 512, [], "f18c", "M384 312.7c-55.1 136.7-187.1 54-187.1 54-40.5 81.8-107.4 134.4-184.6 134.7-16.1 0-16.6-24.4 0-24.4 64.4-.3 120.5-42.7 157.2-110.1-41.1 15.9-118.6 27.9-161.6-82.2 109-44.9 159.1 11.2 178.3 45.5 9.9-24.4 17-50.9 21.6-79.7 0 0-139.7 21.9-149.5-98.1 119.1-47.9 152.6 76.7 152.6 76.7 1.6-16.7 3.3-52.6 3.3-53.4 0 0-106.3-73.7-38.1-165.2 124.6 43 61.4 162.4 61.4 162.4.5 1.6.5 23.8 0 33.4 0 0 45.2-89 136.4-57.5-4.2 134-141.9 106.4-141.9 106.4-4.4 27.4-11.2 53.4-20 77.5 0 0 83-91.8 172-20z"], + "palfed": [576, 512, [], "f3d8", "M384.9 193.9c0-47.4-55.2-44.2-95.4-29.8-1.3 39.4-2.5 80.7-3 119.8.7 2.8 2.6 6.2 15.1 6.2 36.8 0 83.4-42.8 83.3-96.2zm-194.5 72.2c.2 0 6.5-2.7 11.2-2.7 26.6 0 20.7 44.1-14.4 44.1-21.5 0-37.1-18.1-37.1-43 0-42 42.9-95.6 100.7-126.5 1-12.4 3-22 10.5-28.2 11.2-9 26.6-3.5 29.5 11.1 72.2-22.2 135.2 1 135.2 72 0 77.9-79.3 152.6-140.1 138.2-.1 39.4.9 74.4 2.7 100v.2c.2 3.4.6 12.5-5.3 19.1-9.6 10.6-33.4 10-36.4-22.3-4.1-44.4.2-206.1 1.4-242.5-21.5 15-58.5 50.3-58.5 75.9.2 2.5.4 4 .6 4.6zM8 181.1s-.1 37.4 38.4 37.4h30l22.4 217.2s0 44.3 44.7 44.3h288.9s44.7-.4 44.7-44.3l22.4-217.2h30s38.4 1.2 38.4-37.4c0 0 .1-37.4-38.4-37.4h-30.1c-7.3-25.6-30.2-74.3-119.4-74.3h-28V50.3s-2.7-18.4-21.1-18.4h-85.8s-21.1 0-21.1 18.4v19.1h-28.1s-105 4.2-120.5 74.3h-29S8 142.5 8 181.1z"], + "patreon": [512, 512, [], "f3d9", "M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z"], + "paypal": [384, 512, [], "f1ed", "M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z"], + "periscope": [448, 512, [], "f3da", "M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z"], + "phabricator": [496, 512, [], "f3db", "M323 262.1l-.1-13s21.7-19.8 21.1-21.2l-9.5-20c-.6-1.4-29.5-.5-29.5-.5l-9.4-9.3s.2-28.5-1.2-29.1l-20.1-9.2c-1.4-.6-20.7 21-20.7 21l-13.1-.2s-20.5-21.4-21.9-20.8l-20 8.3c-1.4.5.2 28.9.2 28.9l-9.1 9.1s-29.2-.9-29.7.4l-8.1 19.8c-.6 1.4 21 21 21 21l.1 12.9s-21.7 19.8-21.1 21.2l9.5 20c.6 1.4 29.5.5 29.5.5l9.4 9.3s-.2 31.8 1.2 32.3l20.1 8.3c1.4.6 20.7-23.5 20.7-23.5l13.1.2s20.5 23.8 21.8 23.3l20-7.5c1.4-.6-.2-32.1-.2-32.1l9.1-9.1s29.2.9 29.7-.5l8.1-19.8c.7-1.1-20.9-20.7-20.9-20.7zm-44.9-8.7c.7 17.1-12.8 31.6-30.1 32.4-17.3.8-32.1-12.5-32.8-29.6-.7-17.1 12.8-31.6 30.1-32.3 17.3-.8 32.1 12.5 32.8 29.5zm201.2-37.9l-97-97-.1.1c-75.1-73.3-195.4-72.8-269.8 1.6-50.9 51-27.8 27.9-95.7 95.3-22.3 22.3-22.3 58.7 0 81 69.9 69.4 46.4 46 97.4 97l.1-.1c75.1 73.3 195.4 72.9 269.8-1.6 51-50.9 27.9-27.9 95.3-95.3 22.3-22.3 22.3-58.7 0-81zM140.4 363.8c-59.6-59.5-59.6-156 0-215.5 59.5-59.6 156-59.5 215.6 0 59.5 59.5 59.6 156 0 215.6-59.6 59.5-156 59.4-215.6-.1z"], + "phoenix-framework": [640, 512, [], "f3dc", "M212.9 344.3c3.8-.1 22.8-1.4 25.6-2.2-2.4-2.6-43.6-1-68-49.6-4.3-8.6-7.5-17.6-6.4-27.6 2.9-25.5 32.9-30 52-18.5 36 21.6 63.3 91.3 113.7 97.5 37 4.5 84.6-17 108.2-45.4-.6-.1-.8-.2-1-.1-.4.1-.8.2-1.1.3-33.3 12.1-94.3 9.7-134.7-14.8-37.6-22.8-53.1-58.7-51.8-74.6 1.8-21.3 22.9-23.2 35.9-19.6 14.4 3.9 24.4 17.6 38.9 27.4 15.6 10.4 32.9 13.7 51.3 10.3 14.9-2.7 34.4-12.3 36.5-14.5-1.1-.1-1.8-.1-2.5-.2-6.2-.6-12.4-.8-18.5-1.7C279.8 194.5 262.1 47.4 138.5 37.9 94.2 34.5 39.1 46 2.2 72.9c-.8.6-1.5 1.2-2.2 1.8.1.2.1.3.2.5.8 0 1.6-.1 2.4-.2 6.3-1 12.5-.8 18.7.3 23.8 4.3 47.7 23.1 55.9 76.5 5.3 34.3-.7 50.8 8 86.1 19 77.1 91 107.6 127.7 106.4zM75.3 64.9c-.9-1-.9-1.2-1.3-2 12.1-2.6 24.2-4.1 36.6-4.8-1.1 14.7-22.2 21.3-35.3 6.8zm196.9 350.5c-42.8 1.2-92-26.7-123.5-61.4-4.6-5-16.8-20.2-18.6-23.4l.4-.4c6.6 4.1 25.7 18.6 54.8 27 24.2 7 48.1 6.3 71.6-3.3 22.7-9.3 41-.5 43.1 2.9-18.5 3.8-20.1 4.4-24 7.9-5.1 4.4-4.6 11.7 7 17.2 26.2 12.4 63-2.8 97.2 25.4 2.4 2 8.1 7.8 10.1 10.7-.1.2-.3.3-.4.5-4.8-1.5-16.4-7.5-40.2-9.3-24.7-2-46.3 5.3-77.5 6.2zm174.8-252c16.4-5.2 41.3-13.4 66.5-3.3 16.1 6.5 26.2 18.7 32.1 34.6 3.5 9.4 5.1 19.7 5.1 28.7-.2 0-.4 0-.6.1-.2-.4-.4-.9-.5-1.3-5-22-29.9-43.8-67.6-29.9-50.2 18.6-130.4 9.7-176.9-48-.7-.9-2.4-1.7-1.3-3.2.1-.2 2.1.6 3 1.3 18.1 13.4 38.3 21.9 60.3 26.2 30.5 6.1 54.6 2.9 79.9-5.2zm102.7 117.5c-32.4.2-33.8 50.1-103.6 64.4-18.2 3.7-38.7 4.6-44.9 4.2v-.4c2.8-1.5 14.7-2.6 29.7-16.6 7.9-7.3 15.3-15.1 22.8-22.9 19.5-20.2 41.4-42.2 81.9-39 23.1 1.8 29.3 8.2 36.1 12.7.3.2.4.5.7.9-.5 0-.7.1-.9 0-7-2.7-14.3-3.3-21.8-3.3zm-12.3-24.1c-.1.2-.1.4-.2.6-28.9-4.4-48-7.9-68.5 4-17 9.9-31.4 20.5-62 24.4-27.1 3.4-45.1 2.4-66.1-8-.3-.2-.6-.4-1-.6 0-.2.1-.3.1-.5 24.9 3.8 36.4 5.1 55.5-5.8 22.3-12.9 40.1-26.6 71.3-31 29.6-4.1 51.3 2.5 70.9 16.9zM268.6 97.3c-.6-.6-1.1-1.2-2.1-2.3 7.6 0 29.7-1.2 53.4 8.4 19.7 8 32.2 21 50.2 32.9 11.1 7.3 23.4 9.3 36.4 8.1 4.3-.4 8.5-1.2 12.8-1.7.4-.1.9 0 1.5.3-.6.4-1.2.9-1.8 1.2-8.1 4-16.7 6.3-25.6 7.1-26.1 2.6-50.3-3.7-73.4-15.4-19.3-9.9-36.4-22.9-51.4-38.6zM640 335.7c-3.5 3.1-22.7 11.6-42.7 5.3-12.3-3.9-19.5-14.9-31.6-24.1-10-7.6-20.9-7.9-28.1-8.4.6-.8.9-1.2 1.2-1.4 14.8-9.2 30.5-12.2 47.3-6.5 12.5 4.2 19.2 13.5 30.4 24.2 10.8 10.4 21 9.9 23.1 10.5.1-.1.2 0 .4.4zm-212.5 137c2.2 1.2 1.6 1.5 1.5 2-18.5-1.4-33.9-7.6-46.8-22.2-21.8-24.7-41.7-27.9-48.6-29.7.5-.2.8-.4 1.1-.4 13.1.1 26.1.7 38.9 3.9 25.3 6.4 35 25.4 41.6 35.3 3.2 4.8 7.3 8.3 12.3 11.1z"], + "phoenix-squadron": [513, 512, [], "f511", "M96.24 62.81C142.91 26.57 202.15 6.57 261.28 8.08c29.67-.38 59.29 5.38 87.17 15.37-24.2-4.64-49.18-6.35-73.6-2.45-43 5.35-83.26 27.23-112.16 59.35 5.69-.99 10.81-3.68 16.07-5.88 18.19-7.89 37.6-13.29 57.4-14.87 19.8-2.14 39.75-.43 59.45 1.93-14.46 2.79-29.2 4.58-43.11 9.61-34.53 11.11-65.46 33.26-86.55 62.82-13.84 19.77-23.7 42.99-24.74 67.33-.35 16.54 5.23 34.91 19.89 44.17 11.13 6.66 24.85 9.39 37.63 6.76 15.49-2.47 30.16-8.67 43.73-16.38 11.55-6.84 22.73-14.59 32.05-24.32 3.8-3.23 2.54-8.48 2.63-12.83-2.13-.34-4.4-1.11-6.32.3a203.975 203.975 0 0 1-35.93 15.42c-20.07 6.19-42.28 8.48-62.28.78 12.83 1.73 26.14.31 37.85-5.46 20.29-9.75 36.92-25.27 54.6-38.88 27.84-21.29 57.64-40.11 89.17-55.47 25.78-12.01 53.09-22.85 81.81-24.2-15.68 13.76-32.25 26.6-46.92 41.51-14.55 14.04-27.54 29.58-40.23 45.31-3.53 4.61-8.98 6.96-13.62 10.19-22.24 15.03-40.6 35.96-52.04 60.28-9.36 19.74-14.55 41.97-11.81 63.84 1.95 13.73 8.74 27.67 20.96 35.01 12.94 7.99 29.14 8.09 43.61 5.11 32.9-7.47 61.61-28.97 81.28-56 20.5-27.6 30.61-62.38 29.25-96.64-.52-7.52-1.58-15-1.67-22.55 8.02 19.54 14.87 39.83 16.7 61.01 2.01 14.32.75 28.84-1.62 43.02-1.92 11.02-5.69 21.58-7.81 32.53 20.36-22.73 34.17-51.24 39.46-81.31 5.72-35.37.58-72.36-14.25-104.95 20.84 32.12 32.43 69.79 35.81 107.8.5 12.77.5 25.58 0 38.34-2.91 34.26-12.97 67.95-29.76 98-26.2 47.48-68.2 85.89-117.54 108.32-78.52 36.34-175.2 31.41-248.72-14.72-38.84-23.78-71.06-58.32-91.68-98.96C10.72 337.43 2.04 305.5 0 273.13V241.7c3.94-69.97 40.99-136.32 96.24-178.89m222.65 80.57c5.51-.8 10.82-2.57 16.02-4.5 4.99-1.77 9.27-5.95 10.35-11.25-8.91 5-17.95 9.95-26.37 15.75z"], + "php": [640, 512, [], "f457", "M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z"], + "pied-piper": [448, 512, [], "f2ae", "M32 419L0 479.2l.8-328C.8 85.3 54 32 120 32h327.2c-93 28.9-189.9 94.2-253.9 168.6C122.7 282 82.6 338 32 419M448 32S305.2 98.8 261.6 199.1c-23.2 53.6-28.9 118.1-71 158.6-28.9 27.8-69.8 38.2-105.3 56.3-23.2 12-66.4 40.5-84.9 66h328.4c66 0 119.3-53.3 119.3-119.2-.1 0-.1-328.8-.1-328.8z"], + "pied-piper-alt": [576, 512, [], "f1a8", "M242 187c6.3-11.8 13.2-17 25.9-21.8 27.3-10.3 40.2-30.5 58.9-51.1 11.9 8.4 12 24.6 31.6 23v21.8l6.3.3c37.4-14.4 74.7-30.2 106.6-54.6 48.3-36.8 52.9-50 81.3-100l2-2.6c-.6 14.1-6.3 27.3-12.4 39.9-30.5 63.8-78.7 100.3-146.8 116.7-12.4 2.9-26.4 3.2-37.6 8.9 1.4 9.8 13.2 18.1 13.2 23 0 3.4-5.5 7.2-7.5 8.6-11.2-12.9-16.1-19.3-22.7-22.1-7.6-3.5-63.9-6.4-98.8 10zm137.9 256.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9L244 246zm-12.6 31.8l24.1 61.2 21-13.8-31.3-50.9-13.8 3.5zM555.5 0l-.6 1.1-.3.9.6-.6.3-1.4zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46v27.3l11.8-3.4-2.9-23.8h-8.9zm76.1 2.9c0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3l2 12.4c9-1.5 58.4-6.6 58.4-14.1z"], + "pied-piper-hat": [640, 512, [], "f4e5", "M640 24.9c-80.8 53.6-89.4 92.5-96.4 104.4-6.7 12.2-11.7 60.3-23.3 83.6-11.7 23.6-54.2 42.2-66.1 50-11.7 7.8-28.3 38.1-41.9 64.2-108.1-4.4-167.4 38.8-259.2 93.6 29.4-9.7 43.3-16.7 43.3-16.7 94.2-36 139.3-68.3 281.1-49.2 1.1 0 1.9.6 2.8.8 3.9 2.2 5.3 6.9 3.1 10.8l-53.9 95.8c-2.5 4.7-7.8 7.2-13.1 6.1-126.8-23.8-226.9 17.3-318.9 18.6C24.1 488 0 453.4 0 451.8c0-1.1.6-1.7 1.7-1.7 0 0 38.3 0 103.1-15.3C178.4 294.5 244 245.4 315.4 245.4c0 0 71.7 0 90.6 61.9 22.8-39.7 28.3-49.2 28.3-49.2 5.3-9.4 35-77.2 86.4-141.4 51.5-64 90.4-79.9 119.3-91.8z"], + "pied-piper-pp": [448, 512, [], "f1a7", "M205.3 174.6c0 21.1-14.2 38.1-31.7 38.1-7.1 0-12.8-1.2-17.2-3.7v-68c4.4-2.7 10.1-4.2 17.2-4.2 17.5 0 31.7 16.9 31.7 37.8zm52.6 67c-7.1 0-12.8 1.5-17.2 4.2v68c4.4 2.5 10.1 3.7 17.2 3.7 17.4 0 31.7-16.9 31.7-37.8 0-21.1-14.3-38.1-31.7-38.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM185 255.1c41 0 74.2-35.6 74.2-79.6 0-44-33.2-79.6-74.2-79.6-12 0-24.1 3.2-34.6 8.8h-45.7V311l51.8-10.1v-50.6c8.6 3.1 18.1 4.8 28.5 4.8zm158.4 25.3c0-44-33.2-79.6-73.9-79.6-3.2 0-6.4.2-9.6.7-3.7 12.5-10.1 23.8-19.2 33.4-13.8 15-32.2 23.8-51.8 24.8V416l51.8-10.1v-50.6c8.6 3.2 18.2 4.7 28.7 4.7 40.8 0 74-35.6 74-79.6z"], + "pinterest": [496, 512, [], "f0d2", "M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3.8-3.4 5-20.3 6.9-28.1.6-2.5.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z"], + "pinterest-p": [384, 512, [], "f231", "M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z"], + "pinterest-square": [448, 512, [], "f0d3", "M448 80v352c0 26.5-21.5 48-48 48H154.4c9.8-16.4 22.4-40 27.4-59.3 3-11.5 15.3-58.4 15.3-58.4 8 15.3 31.4 28.2 56.3 28.2 74.1 0 127.4-68.1 127.4-152.7 0-81.1-66.2-141.8-151.4-141.8-106 0-162.2 71.1-162.2 148.6 0 36 19.2 80.8 49.8 95.1 4.7 2.2 7.1 1.2 8.2-3.3.8-3.4 5-20.1 6.8-27.8.6-2.5.3-4.6-1.7-7-10.1-12.3-18.3-34.9-18.3-56 0-54.2 41-106.6 110.9-106.6 60.3 0 102.6 41.1 102.6 99.9 0 66.4-33.5 112.4-77.2 112.4-24.1 0-42.1-19.9-36.4-44.4 6.9-29.2 20.3-60.7 20.3-81.8 0-53-75.5-45.7-75.5 25 0 21.7 7.3 36.5 7.3 36.5-31.4 132.8-36.1 134.5-29.6 192.6l2.2.8H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z"], + "playstation": [576, 512, [], "f3df", "M570.9 372.3c-11.3 14.2-38.8 24.3-38.8 24.3L327 470.2v-54.3l150.9-53.8c17.1-6.1 19.8-14.8 5.8-19.4-13.9-4.6-39.1-3.3-56.2 2.9L327 381.1v-56.4c23.2-7.8 47.1-13.6 75.7-16.8 40.9-4.5 90.9.6 130.2 15.5 44.2 14 49.2 34.7 38 48.9zm-224.4-92.5v-139c0-16.3-3-31.3-18.3-35.6-11.7-3.8-19 7.1-19 23.4v347.9l-93.8-29.8V32c39.9 7.4 98 24.9 129.2 35.4C424.1 94.7 451 128.7 451 205.2c0 74.5-46 102.8-104.5 74.6zM43.2 410.2c-45.4-12.8-53-39.5-32.3-54.8 19.1-14.2 51.7-24.9 51.7-24.9l134.5-47.8v54.5l-96.8 34.6c-17.1 6.1-19.7 14.8-5.8 19.4 13.9 4.6 39.1 3.3 56.2-2.9l46.4-16.9v48.8c-51.6 9.3-101.4 7.3-153.9-10z"], + "product-hunt": [512, 512, [], "f288", "M326.3 218.8c0 20.5-16.7 37.2-37.2 37.2h-70.3v-74.4h70.3c20.5 0 37.2 16.7 37.2 37.2zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-128.1-37.2c0-47.9-38.9-86.8-86.8-86.8H169.2v248h49.6v-74.4h70.3c47.9 0 86.8-38.9 86.8-86.8z"], + "pushed": [432, 512, [], "f3e1", "M407 111.9l-98.5-9 14-33.4c10.4-23.5-10.8-40.4-28.7-37L22.5 76.9c-15.1 2.7-26 18.3-21.4 36.6l105.1 348.3c6.5 21.3 36.7 24.2 47.7 7l35.3-80.8 235.2-231.3c16.4-16.8 4.3-42.9-17.4-44.8zM297.6 53.6c5.1-.7 7.5 2.5 5.2 7.4L286 100.9 108.6 84.6l189-31zM22.7 107.9c-3.1-5.1 1-10 6.1-9.1l248.7 22.7-96.9 230.7L22.7 107.9zM136 456.4c-2.6 4-7.9 3.1-9.4-1.2L43.5 179.7l127.7 197.6c-7 15-35.2 79.1-35.2 79.1zm272.8-314.5L210.1 337.3l89.7-213.7 106.4 9.7c4 1.1 5.7 5.3 2.6 8.6z"], + "python": [448, 512, [], "f3e2", "M167.8 36.4c-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1zm-6.7 28.4c11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4zm185.2 81.4v47.5c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6-7.7-30.9-22.3-54.2-53.4-54.2h-40.1zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3z"], + "qq": [448, 512, [], "f1d6", "M433.754 420.445c-11.526 1.393-44.86-52.741-44.86-52.741 0 31.345-16.136 72.247-51.051 101.786 16.842 5.192 54.843 19.167 45.803 34.421-7.316 12.343-125.51 7.881-159.632 4.037-34.122 3.844-152.316 8.306-159.632-4.037-9.045-15.25 28.918-29.214 45.783-34.415-34.92-29.539-51.059-70.445-51.059-101.792 0 0-33.334 54.134-44.859 52.741-5.37-.65-12.424-29.644 9.347-99.704 10.261-33.024 21.995-60.478 40.144-105.779C60.683 98.063 108.982.006 224 0c113.737.006 163.156 96.133 160.264 214.963 18.118 45.223 29.912 72.85 40.144 105.778 21.768 70.06 14.716 99.053 9.346 99.704z"], + "quinscape": [489, 512, [], "f459", "M301.9 474.6h-1.3c-87.3 0-158.1-70.8-158.1-158.1s70.8-158.1 158.1-158.1c94.9 0 168.2 83.1 157 176.6 4 5.1 8.2 9.6 11.2 15.3 13.4-30.3 20.3-62.4 20.3-97.7C489.1 117.5 379.6 8 244.5 8 109.5 8 0 117.5 0 252.6s109.5 244.6 244.5 244.6c24.8 0 47.8-3.2 70.4-10.1-5.2-3.5-9-8.2-13.4-12.6l.4.1zm-21.2-69.8c0-54.8 44.4-99.2 99.2-99.2 54.8 0 99.2 44.4 99.2 99.2 0 54.8-44.4 99.2-99.2 99.2-54.8 0-99.2-44.4-99.2-99.2"], + "quora": [448, 512, [], "f2c4", "M440.5 386.7h-29.3c-1.5 13.5-10.5 30.8-33 30.8-20.5 0-35.3-14.2-49.5-35.8 44.2-34.2 74.7-87.5 74.7-153C403.5 111.2 306.8 32 205 32 105.3 32 7.3 111.7 7.3 228.7c0 134.1 131.3 221.6 249 189C276 451.3 302 480 351.5 480c81.8 0 90.8-75.3 89-93.3zM297 329.2C277.5 300 253.3 277 205.5 277c-30.5 0-54.3 10-69 22.8l12.2 24.3c6.2-3 13-4 19.8-4 35.5 0 53.7 30.8 69.2 61.3-10 3-20.7 4.2-32.7 4.2-75 0-107.5-53-107.5-156.7C97.5 124.5 130 71 205 71c76.2 0 108.7 53.5 108.7 157.7.1 41.8-5.4 75.6-16.7 100.5z"], + "r-project": [581, 512, [], "f4f7", "M581 226.6C581 119.1 450.9 32 290.5 32S0 119.1 0 226.6C0 322.4 103.3 402 239.4 418.1V480h99.1v-61.5c24.3-2.7 47.6-7.4 69.4-13.9L448 480h112l-67.4-113.7c54.5-35.4 88.4-84.9 88.4-139.7zm-466.8 14.5c0-73.5 98.9-133 220.8-133s211.9 40.7 211.9 133c0 50.1-26.5 85-70.3 106.4-2.4-1.6-4.7-2.9-6.4-3.7-10.2-5.2-27.8-10.5-27.8-10.5s86.6-6.4 86.6-92.7-90.6-87.9-90.6-87.9h-199V361c-74.1-21.5-125.2-67.1-125.2-119.9zm225.1 38.3v-55.6c57.8 0 87.8-6.8 87.8 27.3 0 36.5-38.2 28.3-87.8 28.3zm-.9 72.5H365c10.8 0 18.9 11.7 24 19.2-16.1 1.9-33 2.8-50.6 2.9v-22.1z"], + "ravelry": [512, 512, [], "f2d9", "M407.4 61.5C331.6 22.1 257.8 31 182.9 66c-11.3 5.2-15.5 10.6-19.9 19-10.3 19.2-16.2 37.4-19.9 52.7-21.2 25.6-36.4 56.1-43.3 89.9-10.6 18-20.9 41.4-23.1 71.4 0 0-.7 7.6-.5 7.9-35.3-4.6-76.2-27-76.2-27 9.1 14.5 61.3 32.3 76.3 37.9 0 0 1.7 98 64.5 131.2-11.3-17.2-13.3-20.2-13.3-20.2S94.8 369 100.4 324.7c.7 0 1.5.2 2.2.2 23.9 87.4 103.2 151.4 196.9 151.4 6.2 0 12.1-.2 18-.7 14 1.5 27.6.5 40.1-3.9 6.9-2.2 13.8-6.4 20.2-10.8 70.2-39.1 100.9-82 123.1-147.7 5.4-16 8.1-35.5 9.8-52.2 8.7-82.3-30.6-161.6-103.3-199.5zM138.8 163.2s-1.2 12.3-.7 19.7c-3.4 2.5-10.1 8.1-18.2 16.7 5.2-12.8 11.3-25.1 18.9-36.4zm-31.2 121.9c4.4-17.2 13.3-39.1 29.8-55.1 0 0 1.7 48 15.8 90.1l-41.4-6.9c-2.2-9.2-3.5-18.5-4.2-28.1zm7.9 42.8c14.8 3.2 34 7.6 43.1 9.1 27.3 76.8 108.3 124.3 108.3 124.3 1 .5 1.7.7 2.7 1-73.1-11.6-132.7-64.7-154.1-134.4zM386 444.1c-14.5 4.7-36.2 8.4-64.7 3.7 0 0-91.1-23.1-127.5-107.8 38.2.7 52.4-.2 78-3.9 39.4-5.7 79-16.2 115-33 11.8-5.4 11.1-19.4 9.6-29.8-2-12.8-11.1-12.1-21.4-4.7 0 0-82 58.6-189.8 53.7-18.7-32-26.8-110.8-26.8-110.8 41.4-35.2 83.2-59.6 168.4-52.4.2-6.4 3-27.1-20.4-28.1 0 0-93.5-11.1-146 33.5 2.5-16.5 5.9-29.3 11.1-39.4 34.2-30.8 79-49.5 128.3-49.5 106.4 0 193 87.1 193 194.5-.2 76-43.8 142-106.8 174z"], + "react": [512, 512, [], "f41b", "M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zm-130 189.1c4.6 8.8 9.3 17.5 14.3 26.1 5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5zm0-50.6c-6.3-14.9-11.6-29.5-16-43.6 14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26zm11.4 25.3c6.6-13.8 13.8-27.3 21.4-40.6 7.6-13.3 15.8-26.2 24.4-38.9 15-1.1 30.3-1.7 45.9-1.7 15.6 0 31 .6 45.9 1.7 8.5 12.6 16.6 25.5 24.3 38.7 7.7 13.2 14.9 26.7 21.7 40.4-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6-15.7 0-30.9-.5-45.6-1.4-8.7-12.7-16.9-25.7-24.6-39-7.7-13.3-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zM256 210.2c25.3 0 45.8 20.5 45.8 45.8 0 25.3-20.5 45.8-45.8 45.8-25.3 0-45.8-20.5-45.8-45.8 0-25.3 20.5-45.8 45.8-45.8"], + "readme": [576, 512, [], "f4d5", "M528.3 46.5H388.5c-48.1 0-89.9 33.3-100.4 80.3-10.6-47-52.3-80.3-100.4-80.3H48c-26.5 0-48 21.5-48 48v245.8c0 26.5 21.5 48 48 48h89.7c102.2 0 132.7 24.4 147.3 75 .7 2.8 5.2 2.8 6 0 14.7-50.6 45.2-75 147.3-75H528c26.5 0 48-21.5 48-48V94.6c0-26.4-21.3-47.9-47.7-48.1zM242 311.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5V289c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V251zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm259.3 121.7c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5V228c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.8c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V190z"], + "rebel": [512, 512, [], "f1d0", "M256.5 504C117.2 504 9 387.8 13.2 249.9 16 170.7 56.4 97.7 129.7 49.5c.3 0 1.9-.6 1.1.8-5.8 5.5-111.3 129.8-14.1 226.4 49.8 49.5 90 2.5 90 2.5 38.5-50.1-.6-125.9-.6-125.9-10-24.9-45.7-40.1-45.7-40.1l28.8-31.8c24.4 10.5 43.2 38.7 43.2 38.7.8-29.6-21.9-61.4-21.9-61.4L255.1 8l44.3 50.1c-20.5 28.8-21.9 62.6-21.9 62.6 13.8-23 43.5-39.3 43.5-39.3l28.5 31.8c-27.4 8.9-45.4 39.9-45.4 39.9-15.8 28.5-27.1 89.4.6 127.3 32.4 44.6 87.7-2.8 87.7-2.8 102.7-91.9-10.5-225-10.5-225-6.1-5.5.8-2.8.8-2.8 50.1 36.5 114.6 84.4 116.2 204.8C500.9 400.2 399 504 256.5 504z"], + "red-river": [448, 512, [], "f3e3", "M353.2 32H94.8C42.4 32 0 74.4 0 126.8v258.4C0 437.6 42.4 480 94.8 480h258.4c52.4 0 94.8-42.4 94.8-94.8V126.8c0-52.4-42.4-94.8-94.8-94.8zM144.9 200.9v56.3c0 27-21.9 48.9-48.9 48.9V151.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9h-56.3c-12.3-.6-24.6 11.6-24 24zm176.3 72h-56.3c-12.3-.6-24.6 11.6-24 24v56.3c0 27-21.9 48.9-48.9 48.9V247.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9z"], + "reddit": [512, 512, [], "f1a1", "M201.5 305.5c-13.8 0-24.9-11.1-24.9-24.6 0-13.8 11.1-24.9 24.9-24.9 13.6 0 24.6 11.1 24.6 24.9 0 13.6-11.1 24.6-24.6 24.6zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-132.3-41.2c-9.4 0-17.7 3.9-23.8 10-22.4-15.5-52.6-25.5-86.1-26.6l17.4-78.3 55.4 12.5c0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.3 24.9-24.9s-11.1-24.9-24.9-24.9c-9.7 0-18 5.8-22.1 13.8l-61.2-13.6c-3-.8-6.1 1.4-6.9 4.4l-19.1 86.4c-33.2 1.4-63.1 11.3-85.5 26.8-6.1-6.4-14.7-10.2-24.1-10.2-34.9 0-46.3 46.9-14.4 62.8-1.1 5-1.7 10.2-1.7 15.5 0 52.6 59.2 95.2 132 95.2 73.1 0 132.3-42.6 132.3-95.2 0-5.3-.6-10.8-1.9-15.8 31.3-16 19.8-62.5-14.9-62.5zM302.8 331c-18.2 18.2-76.1 17.9-93.6 0-2.2-2.2-6.1-2.2-8.3 0-2.5 2.5-2.5 6.4 0 8.6 22.8 22.8 87.3 22.8 110.2 0 2.5-2.2 2.5-6.1 0-8.6-2.2-2.2-6.1-2.2-8.3 0zm7.7-75c-13.6 0-24.6 11.1-24.6 24.9 0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.1 24.9-24.6 0-13.8-11-24.9-24.9-24.9z"], + "reddit-alien": [512, 512, [], "f281", "M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2.1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z"], + "reddit-square": [448, 512, [], "f1a2", "M283.2 345.5c2.7 2.7 2.7 6.8 0 9.2-24.5 24.5-93.8 24.6-118.4 0-2.7-2.4-2.7-6.5 0-9.2 2.4-2.4 6.5-2.4 8.9 0 18.7 19.2 81 19.6 100.5 0 2.4-2.3 6.6-2.3 9 0zm-91.3-53.8c0-14.9-11.9-26.8-26.5-26.8-14.9 0-26.8 11.9-26.8 26.8 0 14.6 11.9 26.5 26.8 26.5 14.6 0 26.5-11.9 26.5-26.5zm90.7-26.8c-14.6 0-26.5 11.9-26.5 26.8 0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-11.9 26.8-26.5 0-14.9-11.9-26.8-26.8-26.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-99.7 140.6c-10.1 0-19 4.2-25.6 10.7-24.1-16.7-56.5-27.4-92.5-28.6l18.7-84.2 59.5 13.4c0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-12.2 26.8-26.8 0-14.6-11.9-26.8-26.8-26.8-10.4 0-19.3 6.2-23.8 14.9l-65.7-14.6c-3.3-.9-6.5 1.5-7.4 4.8l-20.5 92.8c-35.7 1.5-67.8 12.2-91.9 28.9-6.5-6.8-15.8-11-25.9-11-37.5 0-49.8 50.4-15.5 67.5-1.2 5.4-1.8 11-1.8 16.7 0 56.5 63.7 102.3 141.9 102.3 78.5 0 142.2-45.8 142.2-102.3 0-5.7-.6-11.6-2.1-17 33.6-17.2 21.2-67.2-16.1-67.2z"], + "rendact": [496, 512, [], "f3e4", "M248 8C111 8 0 119 0 256s111 248 248 248c18.6 0 36.7-2.1 54.1-5.9-5.6-7.4-10.8-14.4-15.9-21.3-12.4 2.1-25.2 3.3-38.3 3.3C124.3 480 24 379.7 24 256S124.3 32 248 32s224 100.3 224 224c0 71-33 134.2-84.5 175.3-25.9 18.8-39.1 21.4-83.5-44.2-78.7-112.9-48-71.1-73.7-108.3 72.8 8.9 228.5-72 168.6-168.6C314-26.8 15 93.8 59.7 226.4c3.2 9.8 14.4 38.6 45.6 38.6 2 0 2.6-.6 2-1.7-4.4-8.7-20.1-9.8-20.1-37.4 0-40.5 40.5-89.6 100.3-120 66.1-32.3 131.9-30.2 158.2 5.4 27.2 38.3-20.9 119.2-120.4 136.9 7.5-9.4 57-75.2 62.8-84 22.7-34.6 23.6-49 14-59.2-15.5-16.9-29.5-10.3-50.7-11.7-10.8-.9-113.7 181.2-136.4 216.9-5.9 9-21.2 34.1-21.2 50.9 0 21.3 2.8 51.4 20.6 51.4 10.6 0 8-18.7 8-26.6 0-12.9 27.4-49.4 74.8-104.6 20.4 36.1 57.7 114.3 130.2 209.7 98-33.1 168.5-125.8 168.5-235C496 119 385 8 248 8z"], + "renren": [512, 512, [], "f18b", "M214 169.1c0 110.4-61 205.4-147.6 247.4C30 373.2 8 317.7 8 256.6 8 133.9 97.1 32.2 214 12.5v156.6zM255 504c-42.9 0-83.3-11-118.5-30.4C193.7 437.5 239.9 382.9 255 319c15.5 63.9 61.7 118.5 118.8 154.7C338.7 493 298.3 504 255 504zm190.6-87.5C359 374.5 298 279.6 298 169.1V12.5c116.9 19.7 206 121.4 206 244.1 0 61.1-22 116.6-58.4 159.9z"], + "replyd": [448, 512, [], "f3e6", "M320 480H128C57.6 480 0 422.4 0 352V160C0 89.6 57.6 32 128 32h192c70.4 0 128 57.6 128 128v192c0 70.4-57.6 128-128 128zM193.4 273.2c-6.1-2-11.6-3.1-16.4-3.1-7.2 0-13.5 1.9-18.9 5.6-5.4 3.7-9.6 9-12.8 15.8h-1.1l-4.2-18.3h-28v138.9h36.1v-89.7c1.5-5.4 4.4-9.8 8.7-13.2 4.3-3.4 9.8-5.1 16.2-5.1 4.6 0 9.8 1 15.6 3.1l4.8-34zm115.2 103.4c-3.2 2.4-7.7 4.8-13.7 7.1-6 2.3-12.8 3.5-20.4 3.5-12.2 0-21.1-3-26.5-8.9-5.5-5.9-8.5-14.7-9-26.4h83.3c.9-4.8 1.6-9.4 2.1-13.9.5-4.4.7-8.6.7-12.5 0-10.7-1.6-19.7-4.7-26.9-3.2-7.2-7.3-13-12.5-17.2-5.2-4.3-11.1-7.3-17.8-9.2-6.7-1.8-13.5-2.8-20.6-2.8-21.1 0-37.5 6.1-49.2 18.3s-17.5 30.5-17.5 55c0 22.8 5.2 40.7 15.6 53.7 10.4 13.1 26.8 19.6 49.2 19.6 10.7 0 20.9-1.5 30.4-4.6 9.5-3.1 17.1-6.8 22.6-11.2l-12-23.6zm-21.8-70.3c3.8 5.4 5.3 13.1 4.6 23.1h-51.7c.9-9.4 3.7-17 8.2-22.6 4.5-5.6 11.5-8.5 21-8.5 8.2-.1 14.1 2.6 17.9 8zm79.9 2.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4s2 11.7 6.1 15.6zm0 100.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4 0 6.6 2 11.7 6.1 15.6z"], + "researchgate": [448, 512, [], "f4f8", "M0 32v448h448V32H0zm262.2 334.4c-6.6 3-33.2 6-50-14.2-9.2-10.6-25.3-33.3-42.2-63.6-8.9 0-14.7 0-21.4-.6v46.4c0 23.5 6 21.2 25.8 23.9v8.1c-6.9-.3-23.1-.8-35.6-.8-13.1 0-26.1.6-33.6.8v-8.1c15.5-2.9 22-1.3 22-23.9V225c0-22.6-6.4-21-22-23.9V193c25.8 1 53.1-.6 70.9-.6 31.7 0 55.9 14.4 55.9 45.6 0 21.1-16.7 42.2-39.2 47.5 13.6 24.2 30 45.6 42.2 58.9 7.2 7.8 17.2 14.7 27.2 14.7v7.3zm22.9-135c-23.3 0-32.2-15.7-32.2-32.2V167c0-12.2 8.8-30.4 34-30.4s30.4 17.9 30.4 17.9l-10.7 7.2s-5.5-12.5-19.7-12.5c-7.9 0-19.7 7.3-19.7 19.7v26.8c0 13.4 6.6 23.3 17.9 23.3 14.1 0 21.5-10.9 21.5-26.8h-17.9v-10.7h30.4c0 20.5 4.7 49.9-34 49.9zm-116.5 44.7c-9.4 0-13.6-.3-20-.8v-69.7c6.4-.6 15-.6 22.5-.6 23.3 0 37.2 12.2 37.2 34.5 0 21.9-15 36.6-39.7 36.6z"], + "resolving": [496, 512, [], "f3e7", "M281.2 278.2c46-13.3 49.6-23.5 44-43.4L314 195.5c-6.1-20.9-18.4-28.1-71.1-12.8L54.7 236.8l28.6 98.6 197.9-57.2zM248.5 8C131.4 8 33.2 88.7 7.2 197.5l221.9-63.9c34.8-10.2 54.2-11.7 79.3-8.2 36.3 6.1 52.7 25 61.4 55.2l10.7 37.8c8.2 28.1 1 50.6-23.5 73.6-19.4 17.4-31.2 24.5-61.4 33.2L203 351.8l220.4 27.1 9.7 34.2-48.1 13.3-286.8-37.3 23 80.2c36.8 22 80.3 34.7 126.3 34.7 137 0 248.5-111.4 248.5-248.3C497 119.4 385.5 8 248.5 8zM38.3 388.6L0 256.8c0 48.5 14.3 93.4 38.3 131.8z"], + "rev": [410, 512, [], "f5b2", "M270.67 274.89c0 36.16-29.41 65.57-65.56 65.57s-65.57-29.41-65.57-65.57 29.41-65.56 65.57-65.56 65.56 29.4 65.56 65.56zm139.55-5.05h-.13c-1.49-61.55-30.1-116.35-74.32-152.98l-45.38 26.2c43.17 28.03 71.81 76.63 71.81 131.82 0 86.62-70.47 157.09-157.09 157.09S48.02 361.5 48.02 274.88c0-81.86 62.96-149.27 142.99-156.43v39.12l108.76-62.79L191.01 32v38.32C84.31 77.57 0 166.36 0 274.89c0 111.59 89.12 202.29 200.06 204.98v.13h210.16V269.84z"], + "rocketchat": [448, 512, [], "f3e8", "M448 256.2c0-87.2-99.6-153.3-219.8-153.3-18.8 0-37.3 1.6-55.3 4.8-11.1-10.5-24.2-20-38-27.4C61.2 44.2 0 79.4 0 79.4s56.9 47.1 47.6 88.3c-52.3 52.3-52.5 124.1 0 176.6C56.9 385.6 0 432.6 0 432.6s61.2 35.2 134.9-.8c13.8-7.5 26.9-16.9 38-27.4 18 3.2 36.5 4.8 55.3 4.8 120.3-.1 219.8-65.8 219.8-153zm-219.7 124c-23.7 0-46.3-2.8-67.3-7.8-21.3 25.8-68.1 61.7-113.6 50.1 14.8-16 36.7-43.1 32-87.6-27.3-21.4-43.6-48.7-43.6-78.5 0-68.4 86.2-123.9 192.5-123.9S420.8 188 420.8 256.4c0 68.3-86.2 123.8-192.5 123.8zm25.6-123.9c0 14.2-11.5 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.5-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm88.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm-177.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.2 0 25.6 11.6 25.6 25.8z"], + "rockrms": [496, 512, [], "f3e9", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm157.4 419.5h-90l-112-131.3c-17.9-20.4-3.9-56.1 26.6-56.1h75.3l-84.6-99.3-84.3 98.9h-90L193.5 67.2c14.4-18.4 41.3-17.3 54.5 0l157.7 185.1c19 22.8 2 57.2-27.6 56.1-.6 0-74.2.2-74.2.2l101.5 118.9z"], + "safari": [512, 512, [], "f267", "M236.9 256.8c0-9.1 6.6-17.7 16.3-17.7 8.9 0 17.4 6.4 17.4 16.1 0 9.1-6.4 17.7-16.1 17.7-9 0-17.6-6.7-17.6-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-26.6 0c0-122.3-99.1-221.4-221.4-221.4S34.6 133.7 34.6 256 133.7 477.4 256 477.4 477.4 378.3 477.4 256zm-72.5 96.6c0 3.6 13 10.2 16.3 12.2-27.4 41.5-69.8 71.4-117.9 83.3l-4.4-18.5c-.3-2.5-1.9-2.8-4.2-2.8-1.9 0-3 2.8-2.8 4.2l4.4 18.8c-13.3 2.8-26.8 4.2-40.4 4.2-36.3 0-72-10.2-103-29.1 1.7-2.8 12.2-18 12.2-20.2 0-1.9-1.7-3.6-3.6-3.6-3.9 0-12.2 16.6-14.7 19.9-41.8-27.7-72-70.6-83.6-119.6l19.1-4.2c2.2-.6 2.8-2.2 2.8-4.2 0-1.9-2.8-3-4.4-2.8L62 294.5c-2.5-12.7-3.9-25.5-3.9-38.5 0-37.1 10.5-73.6 30.2-104.9 2.8 1.7 16.1 10.8 18.3 10.8 1.9 0 3.6-1.4 3.6-3.3 0-3.9-14.7-11.3-18-13.6 28.2-41.2 71.1-70.9 119.8-81.9l4.2 18.5c.6 2.2 2.2 2.8 4.2 2.8s3-2.8 2.8-4.4L219 61.7c12.2-2.2 24.6-3.6 37.1-3.6 37.1 0 73.3 10.5 104.9 30.2-1.9 2.8-10.8 15.8-10.8 18 0 1.9 1.4 3.6 3.3 3.6 3.9 0 11.3-14.4 13.3-17.7 41 27.7 70.3 70 81.7 118.2l-15.5 3.3c-2.5.6-2.8 2.2-2.8 4.4 0 1.9 2.8 3 4.2 2.8l15.8-3.6c2.5 12.7 3.9 25.7 3.9 38.7 0 36.3-10 72-28.8 102.7-2.8-1.4-14.4-9.7-16.6-9.7-2.1 0-3.8 1.7-3.8 3.6zm-33.2-242.2c-13 12.2-134.2 123.7-137.6 129.5l-96.6 160.5c12.7-11.9 134.2-124 137.3-129.3l96.9-160.7z"], + "sass": [640, 512, [], "f41e", "M551.1 291.9c-22.4.1-41.8 5.5-58 13.5-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-3.8 11.1-5.3 19.1-2.3 11.7-25.8 53.5-39.1 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-2.7 11.4-5.3 19.1-2.6 7.7-33.9 77.3-42.1 95.4-4.2 9.2-7.8 16.6-10.4 21.6s-.2.3-.4.9c-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4.3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2-.8 0-1.4 2-1.4 2s10.1-42.4-19.4-42.4c-18.4 0-44 20.2-56.6 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.8-38.2-101.9-65.2-99.1-116.5 1-18.7 7.5-67.8 127.1-127.4 98-48.8 176.4-35.4 189.9-5.6 19.4 42.5-41.9 121.6-143.7 133-38.8 4.3-59.2-10.7-64.3-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.8 28.9 18.7 6.1 64.2 9.5 119.2-11.8C367 196.5 415.1 130.2 401 74.7 386.6 18.3 293.1-.2 204.6 31.2 151.9 49.9 94.9 79.3 53.9 117.6 5.2 163.2-2.6 202.9.6 219.5c11.4 58.9 92.6 97.3 125.1 125.7-1.6.9-3.1 1.7-4.5 2.5-16.3 8.1-78.2 40.5-93.7 74.7-17.5 38.8 2.9 66.6 16.3 70.4 41.8 11.6 84.6-9.3 107.6-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.3-4.9 16.4-9.4 23.5-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.5 5 15.4 5 13.8 0 20-11.4 26.9-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.4 0 18.8-12.1 23-18.3v.1s.2-.4.7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.6-46 16.2-31.8 31.7-71.5 31.7-71.5s1.4 9.7 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2s0 .1.1.2c-3 4-6.4 8.3-9.9 12.5-12.8 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.7 2.5 11.5-.8 19.6-3.6 23.5-5.4 6.2-2.2 13.4-5.7 20.2-10.6 12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5 19.8-28.9 35.1-60.6 35.1-60.6s1.4 9.7 6.2 25.8c2.4 8.1 7.1 17 11.4 25.7-18.6 15.1-30.1 32.6-34.1 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5 6.5-2.2 14.3-5.7 21.6-11.1 12.5-9.2 24.6-22.1 23.8-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.1-10.2 62.1-7.2 55.7 6.5 66.6 41.3 64.5 55.8-2.1 14.6-13.8 22.6-17.7 25-3.9 2.4-5.1 3.3-4.8 5.1.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.2-11.8 30.3-38.7 1.6-34-31.1-71.4-89-71.1zM121.8 436.6c-18.4 20.1-44.2 27.7-55.3 21.3C54.6 451 59.3 421.4 82 400c13.8-13 31.6-25 43.4-32.4 2.7-1.6 6.6-4 11.4-6.9.8-.5 1.2-.7 1.2-.7.9-.6 1.9-1.1 2.9-1.7 8.3 30.4.3 57.2-19.1 78.3zm134.4-91.4c-6.4 15.7-19.9 55.7-28.1 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.1-11.3 21.2-14.9 23.8-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.9-13.9 0 .5.1 1 .1 1.6-.1 17.9-17.3 30-25.1 34.8zm85.6-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.6-15.3 19-24.5 1.2 3.8 1.9 7.4 1.9 10.8-.1 22.5-16.2 30.9-25.9 34.4z"], + "schlix": [448, 512, [], "f3ea", "M350.5 157.7l-54.2-46.1 73.4-39 78.3 44.2-97.5 40.9zM192 122.1l45.7-28.2 34.7 34.6-55.4 29-25-35.4zm-65.1 6.6l31.9-22.1L176 135l-36.7 22.5-12.4-28.8zm-23.3 88.2l-8.8-34.8 29.6-18.3 13.1 35.3-33.9 17.8zm-21.2-83.7l23.9-18.1 8.9 24-26.7 18.3-6.1-24.2zM59 206.5l-3.6-28.4 22.3-15.5 6.1 28.7L59 206.5zm-30.6 16.6l20.8-12.8 3.3 33.4-22.9 12-1.2-32.6zM1.4 268l19.2-10.2.4 38.2-21 8.8L1.4 268zm59.1 59.3l-28.3 8.3-1.6-46.8 25.1-10.7 4.8 49.2zM99 263.2l-31.1 13-5.2-40.8L90.1 221l8.9 42.2zM123.2 377l-41.6 5.9-8.1-63.5 35.2-10.8 14.5 68.4zm28.5-139.9l21.2 57.1-46.2 13.6-13.7-54.1 38.7-16.6zm85.7 230.5l-70.9-3.3-24.3-95.8 55.2-8.6 40 107.7zm-84.9-279.7l42.2-22.4 28 45.9-50.8 21.3-19.4-44.8zm41 94.9l61.3-18.7 52.8 86.6-79.8 11.3-34.3-79.2zm51.4-85.6l67.3-28.8 65.5 65.4-88.6 26.2-44.2-62.8z"], + "scribd": [384, 512, [], "f28a", "M42.3 252.7c-16.1-19-24.7-45.9-24.8-79.9 0-100.4 75.2-153.1 167.2-153.1 98.6-1.6 156.8 49 184.3 70.6l-50.5 72.1-37.3-24.6 26.9-38.6c-36.5-24-79.4-36.5-123-35.8-50.7-.8-111.7 27.2-111.7 76.2 0 18.7 11.2 20.7 28.6 15.6 23.3-5.3 41.9.6 55.8 14 26.4 24.3 23.2 67.6-.7 91.9-29.2 29.5-85.2 27.3-114.8-8.4zm317.7 5.9c-15.5-18.8-38.9-29.4-63.2-28.6-38.1-2-71.1 28-70.5 67.2-.7 16.8 6 33 18.4 44.3 14.1 13.9 33 19.7 56.3 14.4 17.4-5.1 28.6-3.1 28.6 15.6 0 4.3-.5 8.5-1.4 12.7-16.7 40.9-59.5 64.4-121.4 64.4-51.9.2-102.4-16.4-144.1-47.3l33.7-39.4-35.6-27.4L0 406.3l15.4 13.8c52.5 46.8 120.4 72.5 190.7 72.2 51.4 0 94.4-10.5 133.6-44.1 57.1-51.4 54.2-149.2 20.3-189.6z"], + "searchengin": [460, 512, [], "f3eb", "M220.6 130.3l-67.2 28.2V43.2L98.7 233.5l54.7-24.2v130.3l67.2-209.3zm-83.2-96.7l-1.3 4.7-15.2 52.9C80.6 106.7 52 145.8 52 191.5c0 52.3 34.3 95.9 83.4 105.5v53.6C57.5 340.1 0 272.4 0 191.6c0-80.5 59.8-147.2 137.4-158zm311.4 447.2c-11.2 11.2-23.1 12.3-28.6 10.5-5.4-1.8-27.1-19.9-60.4-44.4-33.3-24.6-33.6-35.7-43-56.7-9.4-20.9-30.4-42.6-57.5-52.4l-9.7-14.7c-24.7 16.9-53 26.9-81.3 28.7l2.1-6.6 15.9-49.5c46.5-11.9 80.9-54 80.9-104.2 0-54.5-38.4-102.1-96-107.1V32.3C254.4 37.4 320 106.8 320 191.6c0 33.6-11.2 64.7-29 90.4l14.6 9.6c9.8 27.1 31.5 48 52.4 57.4s32.2 9.7 56.8 43c24.6 33.2 42.7 54.9 44.5 60.3s.7 17.3-10.5 28.5zm-9.9-17.9c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8z"], + "sellcast": [448, 512, [], "f2da", "M353.4 32H94.7C42.6 32 0 74.6 0 126.6v258.7C0 437.4 42.6 480 94.7 480h258.7c52.1 0 94.7-42.6 94.7-94.6V126.6c0-52-42.6-94.6-94.7-94.6zm-50 316.4c-27.9 48.2-89.9 64.9-138.2 37.2-22.9 39.8-54.9 8.6-42.3-13.2l15.7-27.2c5.9-10.3 19.2-13.9 29.5-7.9 18.6 10.8-.1-.1 18.5 10.7 27.6 15.9 63.4 6.3 79.4-21.3 15.9-27.6 6.3-63.4-21.3-79.4-17.8-10.2-.6-.4-18.6-10.6-24.6-14.2-3.4-51.9 21.6-37.5 18.6 10.8-.1-.1 18.5 10.7 48.4 28 65.1 90.3 37.2 138.5zm21.8-208.8c-17 29.5-16.3 28.8-19 31.5-6.5 6.5-16.3 8.7-26.5 3.6-18.6-10.8.1.1-18.5-10.7-27.6-15.9-63.4-6.3-79.4 21.3s-6.3 63.4 21.3 79.4c0 0 18.5 10.6 18.6 10.6 24.6 14.2 3.4 51.9-21.6 37.5-18.6-10.8.1.1-18.5-10.7-48.2-27.8-64.9-90.1-37.1-138.4 27.9-48.2 89.9-64.9 138.2-37.2l4.8-8.4c14.3-24.9 52-3.3 37.7 21.5z"], + "sellsy": [640, 512, [], "f213", "M539.71 237.308c3.064-12.257 4.29-24.821 4.29-37.384C544 107.382 468.618 32 376.076 32c-77.22 0-144.634 53.012-163.02 127.781-15.322-13.176-34.934-20.53-55.157-20.53-46.271 0-83.962 37.69-83.962 83.961 0 7.354.92 15.015 3.065 22.369-42.9 20.225-70.785 63.738-70.785 111.234C6.216 424.843 61.68 480 129.401 480h381.198c67.72 0 123.184-55.157 123.184-123.184.001-56.384-38.916-106.025-94.073-119.508zM199.88 401.554c0 8.274-7.048 15.321-15.321 15.321H153.61c-8.274 0-15.321-7.048-15.321-15.321V290.626c0-8.273 7.048-15.321 15.321-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v110.928zm89.477 0c0 8.274-7.048 15.321-15.322 15.321h-30.949c-8.274 0-15.321-7.048-15.321-15.321V270.096c0-8.274 7.048-15.321 15.321-15.321h30.949c8.274 0 15.322 7.048 15.322 15.321v131.458zm89.477 0c0 8.274-7.047 15.321-15.321 15.321h-30.949c-8.274 0-15.322-7.048-15.322-15.321V238.84c0-8.274 7.048-15.321 15.322-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v162.714zm87.027 0c0 8.274-7.048 15.321-15.322 15.321h-28.497c-8.274 0-15.321-7.048-15.321-15.321V176.941c0-8.579 7.047-15.628 15.321-15.628h28.497c8.274 0 15.322 7.048 15.322 15.628v224.613z"], + "servicestack": [496, 512, [], "f3ec", "M88 216c81.7 10.2 273.7 102.3 304 232H0c99.5-8.1 184.5-137 88-232zm32-152c32.3 35.6 47.7 83.9 46.4 133.6C249.3 231.3 373.7 321.3 400 448h96C455.3 231.9 222.8 79.5 120 64z"], + "shirtsinbulk": [448, 512, [], "f214", "M395.208 221.583H406v33.542h-10.792v-33.542zm0-9.625H406v-33.542h-10.792v33.542zm0 86.333H406V264.75h-10.792v33.541zM358.75 135.25h-33.542v10.5h33.542v-10.5zm36.458 206.208H406v-33.542h-10.792v33.542zM311.5 135.25h-33.542v10.5H311.5v-10.5zm-47.25 0H231v10.5h33.25v-10.5zm-47.25 0h-33.25v10.5H217v-10.5zm178.208 33.542H406V135.25h-33.542v10.5h22.75v23.042zm-255.792 259l30.625 13.417 4.375-9.917-30.625-13.417-4.375 9.917zM179.083 445l30.334 13.708 4.374-9.916-30.333-13.417-4.375 9.625zm216.125-60.375H406v-33.542h-10.792v33.542zm-334.833 8.167L91 406.208l4.375-9.624-30.625-13.709-4.375 9.917zm39.666 17.499l30.625 13.417 4.375-9.917-30.625-13.416-4.375 9.916zm132.417 38.501l4.375 9.916L267.459 445l-4.375-9.625-30.626 13.417zm118.417-52.208l4.375 9.624 30.624-13.416-4.374-9.917-30.625 13.709zM311.5 413.791l4.375 9.917 30.625-13.417-4.374-9.916-30.626 13.416zm-39.667 17.501l4.375 9.917 30.625-13.417-4.375-9.917-30.625 13.417zM311.5 46.583h-33.542v10.5H311.5v-10.5zm94.209 0h-33.251v10.5h33.251v-10.5zm-188.709 0h-33.25v10.5H217v-10.5zm141.75 0h-33.542v10.5h33.542v-10.5zm-94.5 0H231v10.5h33.25v-10.5zM448 3.708v406l-226.334 98.584L0 409.708v-406h448zm-29.166 116.958H29.166V390.75l192.792 85.75 196.875-85.75V120.666zm0-87.791H29.166V91.5h389.667V32.875zM75.542 46.583H42.291v10.5h33.251v-10.5zm94.5 0H136.5v10.5h33.542v-10.5zm-47.251 0H89.25v10.5h33.542v-10.5zm7.584 236.542c0-50.167 41.125-91.292 91.292-91.292 50.458 0 91.292 41.125 91.292 91.292 0 50.458-40.833 91.292-91.292 91.292-50.167-.001-91.292-40.834-91.292-91.292zm120.75 18.084c0 13.125-23.917 14.291-32.666 14.291-12.25 0-29.75-2.625-35.875-14.875h-.875L172.666 319c14.876 9.333 29.167 12.25 47.25 12.25 19.542 0 51.042-5.833 51.042-31.209 0-48.125-78.458-16.333-78.458-37.916 0-13.125 20.708-14.875 29.75-14.875 10.791 0 29.166 3.208 35.583 13.124h.875l8.751-16.916c-15.167-6.125-27.417-11.959-44.334-11.959-20.125 0-49.583 6.417-49.583 31.792 0 44.334 77.583 11.959 77.583 37.918zM122.791 135.25H89.25v10.5h33.542v-10.5zm-69.999 10.5h22.75v-10.5H42v33.542h10.792V145.75zm0 32.666H42v33.542h10.792v-33.542zm117.25-43.166H136.5v10.5h33.542v-10.5zm-117.25 86.333H42v33.542h10.792v-33.542zm0 86.334H42v33.542h10.792v-33.542zm0-43.167H42v33.542h10.792V264.75zm0 86.333H42v33.542h10.792v-33.542z"], + "shopware": [495, 512, [], "f5b5", "M395.5 455.27c-42.95 31.79-93.95 48.59-147.48 48.59-137.21 0-248.02-111-248.02-248 0-137.19 111.04-248 248.02-248 61.3 0 120.14 22.55 165.68 63.5 2.62 2.36.58 6.64-2.86 6.18-17.67-2.43-36.75-3.66-56.71-3.66-129.36 0-222.4 53.47-222.4 155.35 0 109.04 92.13 145.88 176.83 178.73 33.64 13.04 65.4 25.36 86.96 41.59 1.9 1.44 1.89 4.31-.02 5.72zm99.46-222.32c-.08-.94-.55-1.83-1.27-2.44-51.76-42.96-93.62-60.48-144.48-60.48-84.13 0-80.25 52.17-80.25 53.63 0 42.6 52.06 62.01 112.34 84.49 31.07 11.59 63.19 23.57 92.68 39.93 1.88 1.05 4.26.19 5.05-1.82 18.89-48.39 17.94-90.23 15.93-113.31z"], + "simplybuilt": [512, 512, [], "f215", "M481.2 64h-106c-14.5 0-26.6 11.8-26.6 26.3v39.6H163.3V90.3c0-14.5-12-26.3-26.6-26.3h-106C16.1 64 4.3 75.8 4.3 90.3v331.4c0 14.5 11.8 26.3 26.6 26.3h450.4c14.8 0 26.6-11.8 26.6-26.3V90.3c-.2-14.5-12-26.3-26.7-26.3zM149.8 355.8c-36.6 0-66.4-29.7-66.4-66.4 0-36.9 29.7-66.6 66.4-66.6 36.9 0 66.6 29.7 66.6 66.6 0 36.7-29.7 66.4-66.6 66.4zm212.4 0c-36.9 0-66.6-29.7-66.6-66.6 0-36.6 29.7-66.4 66.6-66.4 36.6 0 66.4 29.7 66.4 66.4 0 36.9-29.8 66.6-66.4 66.6z"], + "sistrix": [448, 512, [], "f3ee", "M448 449L301.2 300.2c20-27.9 31.9-62.2 31.9-99.2 0-93.1-74.7-168.9-166.5-168.9C74.7 32 0 107.8 0 200.9s74.7 168.9 166.5 168.9c39.8 0 76.3-14.2 105-37.9l146 148.1 30.5-31zM166.5 330.8c-70.6 0-128.1-58.3-128.1-129.9S95.9 71 166.5 71s128.1 58.3 128.1 129.9-57.4 129.9-128.1 129.9z"], + "sith": [448, 512, [], "f512", "M0 32l69.71 118.75-58.86-11.52 69.84 91.03a146.741 146.741 0 0 0 0 51.45l-69.84 91.03 58.86-11.52L0 480l118.75-69.71-11.52 58.86 91.03-69.84c17.02 3.04 34.47 3.04 51.48 0l91.03 69.84-11.52-58.86L448 480l-69.71-118.78 58.86 11.52-69.84-91.03c3.03-17.01 3.04-34.44 0-51.45l69.84-91.03-58.86 11.52L448 32l-118.75 69.71 11.52-58.9-91.06 69.87c-8.5-1.52-17.1-2.29-25.71-2.29s-17.21.78-25.71 2.29l-91.06-69.87 11.52 58.9L0 32zm224 99.78c31.8 0 63.6 12.12 87.85 36.37 48.5 48.5 48.49 127.21 0 175.7s-127.2 48.46-175.7-.03c-48.5-48.5-48.49-127.21 0-175.7 24.24-24.25 56.05-36.34 87.85-36.34zm0 36.66c-22.42 0-44.83 8.52-61.92 25.61-34.18 34.18-34.19 89.68 0 123.87s89.65 34.18 123.84 0c34.18-34.18 34.19-89.68 0-123.87-17.09-17.09-39.5-25.61-61.92-25.61z"], + "skyatlas": [640, 512, [], "f216", "M640 329.3c0 65.9-52.5 114.4-117.5 114.4-165.9 0-196.6-249.7-359.7-249.7-146.9 0-147.1 212.2 5.6 212.2 42.5 0 90.9-17.8 125.3-42.5 5.6-4.1 16.9-16.3 22.8-16.3s10.9 5 10.9 10.9c0 7.8-13.1 19.1-18.7 24.1-40.9 35.6-100.3 61.2-154.7 61.2-83.4.1-154-59-154-144.9s67.5-149.1 152.8-149.1c185.3 0 222.5 245.9 361.9 245.9 99.9 0 94.8-139.7 3.4-139.7-17.5 0-35 11.6-46.9 11.6-8.4 0-15.9-7.2-15.9-15.6 0-11.6 5.3-23.7 5.3-36.3 0-66.6-50.9-114.7-116.9-114.7-53.1 0-80 36.9-88.8 36.9-6.2 0-11.2-5-11.2-11.2 0-5.6 4.1-10.3 7.8-14.4 25.3-28.8 64.7-43.7 102.8-43.7 79.4 0 139.1 58.4 139.1 137.8 0 6.9-.3 13.7-1.2 20.6 11.9-3.1 24.1-4.7 35.9-4.7 60.7 0 111.9 45.3 111.9 107.2z"], + "skype": [448, 512, [], "f17e", "M424.7 299.8c2.9-14 4.7-28.9 4.7-43.8 0-113.5-91.9-205.3-205.3-205.3-14.9 0-29.7 1.7-43.8 4.7C161.3 40.7 137.7 32 112 32 50.2 32 0 82.2 0 144c0 25.7 8.7 49.3 23.3 68.2-2.9 14-4.7 28.9-4.7 43.8 0 113.5 91.9 205.3 205.3 205.3 14.9 0 29.7-1.7 43.8-4.7 19 14.6 42.6 23.3 68.2 23.3 61.8 0 112-50.2 112-112 .1-25.6-8.6-49.2-23.2-68.1zm-194.6 91.5c-65.6 0-120.5-29.2-120.5-65 0-16 9-30.6 29.5-30.6 31.2 0 34.1 44.9 88.1 44.9 25.7 0 42.3-11.4 42.3-26.3 0-18.7-16-21.6-42-28-62.5-15.4-117.8-22-117.8-87.2 0-59.2 58.6-81.1 109.1-81.1 55.1 0 110.8 21.9 110.8 55.4 0 16.9-11.4 31.8-30.3 31.8-28.3 0-29.2-33.5-75-33.5-25.7 0-42 7-42 22.5 0 19.8 20.8 21.8 69.1 33 41.4 9.3 90.7 26.8 90.7 77.6 0 59.1-57.1 86.5-112 86.5z"], + "slack": [448, 512, [], "f198", "M244.2 217.5l19.3 57.7-59.8 20-19.3-57.7 59.8-20zm41.4 243.7C131.6 507.4 65 471.6 18.8 317.6S8.4 97 162.4 50.8C316.4 4.6 383 40.4 429.2 194.4c46.2 154 10.4 220.6-143.6 266.8zM366.2 265c-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-19.3-57.7 29-9.7c12.2-3.9 18.6-17.2 14.7-29.4-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-59.8 20.1-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l19.3 57.7-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 59.8-20.1 10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 29-9.7c12.2-4.2 18.6-17.5 14.7-29.6z"], + "slack-hash": [448, 512, [], "f3ef", "M446.2 270.4c-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-30.3-90 45.4-15.1c19.1-6.2 29.1-26.8 23-45.9-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-93.4 31.2-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-45.3 15c-19.1 6.2-29.1 26.8-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l30.3 90L78 354.8c-19 6.2-29.1 26.9-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 93.6-31.3 15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 45.4-15.1c19-6 29.1-26.7 22.9-45.7zm-254.1 47.2l-30.3-90.2 93.5-31.3 30.3 90.2-93.5 31.3z"], + "slideshare": [512, 512, [], "f1e7", "M249.429 211.436c0 31.716-27.715 57.717-61.717 57.717-34.001 0-61.716-26.001-61.716-57.717 0-32.001 27.715-57.716 61.716-57.716 34.001 0 61.717 25.715 61.717 57.716zm254.294 50.002c-18.286 22.573-53.144 50.288-106.289 72.003C453.722 525.163 260 555.735 263.143 457.446c0 1.714-.286-52.859-.286-93.432-4.285-.858-8.571-2-13.714-3.143 0 40.858-.286 98.289-.286 96.575C252 555.735 58.278 525.163 114.566 333.441c-53.145-21.715-88.003-49.43-106.29-72.003-9.143-13.714.858-28.287 16.001-17.715 2 1.428 4.285 2.857 6.285 4.285V49.716C30.563 22.287 51.135 0 76.565 0h359.157c25.429 0 46.002 22.287 46.002 49.716v198.293l6-4.285c15.143-10.573 25.143 4 15.999 17.714zm-46.572-189.15c0-32.858-10.572-45.716-40.859-45.716H98.566c-31.716 0-40.573 10.858-40.573 45.716v192.293c67.717 35.43 125.72 29.144 157.435 28.001 13.429-.286 22.001 2.286 27.144 7.715 1.689 1.687 10.023 9.446 20.287 17.143 1.143-15.715 10.001-25.715 33.716-24.858 32.287 1.428 91.718 7.715 160.577-29.716V72.288zM331.146 153.72c-34.002 0-61.716 25.715-61.716 57.716 0 31.716 27.715 57.717 61.716 57.717 34.287 0 61.716-26.001 61.716-57.717 0-32.001-27.429-57.716-61.716-57.716z"], + "snapchat": [496, 512, [], "f2ab", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm169.5 338.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C183.1 100 230.7 96 244.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z"], + "snapchat-ghost": [512, 512, [], "f2ac", "M510.846 392.673c-5.211 12.157-27.239 21.089-67.36 27.318-2.064 2.786-3.775 14.686-6.507 23.956-1.625 5.566-5.623 8.869-12.128 8.869l-.297-.005c-9.395 0-19.203-4.323-38.852-4.323-26.521 0-35.662 6.043-56.254 20.588-21.832 15.438-42.771 28.764-74.027 27.399-31.646 2.334-58.025-16.908-72.871-27.404-20.714-14.643-29.828-20.582-56.241-20.582-18.864 0-30.736 4.72-38.852 4.72-8.073 0-11.213-4.922-12.422-9.04-2.703-9.189-4.404-21.263-6.523-24.13-20.679-3.209-67.31-11.344-68.498-32.15a10.627 10.627 0 0 1 8.877-11.069c69.583-11.455 100.924-82.901 102.227-85.934.074-.176.155-.344.237-.515 3.713-7.537 4.544-13.849 2.463-18.753-5.05-11.896-26.872-16.164-36.053-19.796-23.715-9.366-27.015-20.128-25.612-27.504 2.437-12.836 21.725-20.735 33.002-15.453 8.919 4.181 16.843 6.297 23.547 6.297 5.022 0 8.212-1.204 9.96-2.171-2.043-35.936-7.101-87.29 5.687-115.969C158.122 21.304 229.705 15.42 250.826 15.42c.944 0 9.141-.089 10.11-.089 52.148 0 102.254 26.78 126.723 81.643 12.777 28.65 7.749 79.792 5.695 116.009 1.582.872 4.357 1.942 8.599 2.139 6.397-.286 13.815-2.389 22.069-6.257 6.085-2.846 14.406-2.461 20.48.058l.029.01c9.476 3.385 15.439 10.215 15.589 17.87.184 9.747-8.522 18.165-25.878 25.018-2.118.835-4.694 1.655-7.434 2.525-9.797 3.106-24.6 7.805-28.616 17.271-2.079 4.904-1.256 11.211 2.46 18.748.087.168.166.342.239.515 1.301 3.03 32.615 74.46 102.23 85.934 6.427 1.058 11.163 7.877 7.725 15.859z"], + "snapchat-square": [448, 512, [], "f2ad", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6.5 314.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C159.1 100 206.7 96 220.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z"], + "soundcloud": [640, 512, [], "f1be", "M111.4 256.3l5.8 65-5.8 68.3c-.3 2.5-2.2 4.4-4.4 4.4s-4.2-1.9-4.2-4.4l-5.6-68.3 5.6-65c0-2.2 1.9-4.2 4.2-4.2 2.2 0 4.1 2 4.4 4.2zm21.4-45.6c-2.8 0-4.7 2.2-5 5l-5 105.6 5 68.3c.3 2.8 2.2 5 5 5 2.5 0 4.7-2.2 4.7-5l5.8-68.3-5.8-105.6c0-2.8-2.2-5-4.7-5zm25.5-24.1c-3.1 0-5.3 2.2-5.6 5.3l-4.4 130 4.4 67.8c.3 3.1 2.5 5.3 5.6 5.3 2.8 0 5.3-2.2 5.3-5.3l5.3-67.8-5.3-130c0-3.1-2.5-5.3-5.3-5.3zM7.2 283.2c-1.4 0-2.2 1.1-2.5 2.5L0 321.3l4.7 35c.3 1.4 1.1 2.5 2.5 2.5s2.2-1.1 2.5-2.5l5.6-35-5.6-35.6c-.3-1.4-1.1-2.5-2.5-2.5zm23.6-21.9c-1.4 0-2.5 1.1-2.5 2.5l-6.4 57.5 6.4 56.1c0 1.7 1.1 2.8 2.5 2.8s2.5-1.1 2.8-2.5l7.2-56.4-7.2-57.5c-.3-1.4-1.4-2.5-2.8-2.5zm25.3-11.4c-1.7 0-3.1 1.4-3.3 3.3L47 321.3l5.8 65.8c.3 1.7 1.7 3.1 3.3 3.1 1.7 0 3.1-1.4 3.1-3.1l6.9-65.8-6.9-68.1c0-1.9-1.4-3.3-3.1-3.3zm25.3-2.2c-1.9 0-3.6 1.4-3.6 3.6l-5.8 70 5.8 67.8c0 2.2 1.7 3.6 3.6 3.6s3.6-1.4 3.9-3.6l6.4-67.8-6.4-70c-.3-2.2-2-3.6-3.9-3.6zm241.4-110.9c-1.1-.8-2.8-1.4-4.2-1.4-2.2 0-4.2.8-5.6 1.9-1.9 1.7-3.1 4.2-3.3 6.7v.8l-3.3 176.7 1.7 32.5 1.7 31.7c.3 4.7 4.2 8.6 8.9 8.6s8.6-3.9 8.6-8.6l3.9-64.2-3.9-177.5c-.4-3-2-5.8-4.5-7.2zm-26.7 15.3c-1.4-.8-2.8-1.4-4.4-1.4s-3.1.6-4.4 1.4c-2.2 1.4-3.6 3.9-3.6 6.7l-.3 1.7-2.8 160.8s0 .3 3.1 65.6v.3c0 1.7.6 3.3 1.7 4.7 1.7 1.9 3.9 3.1 6.4 3.1 2.2 0 4.2-1.1 5.6-2.5 1.7-1.4 2.5-3.3 2.5-5.6l.3-6.7 3.1-58.6-3.3-162.8c-.3-2.8-1.7-5.3-3.9-6.7zm-111.4 22.5c-3.1 0-5.8 2.8-5.8 6.1l-4.4 140.6 4.4 67.2c.3 3.3 2.8 5.8 5.8 5.8 3.3 0 5.8-2.5 6.1-5.8l5-67.2-5-140.6c-.2-3.3-2.7-6.1-6.1-6.1zm376.7 62.8c-10.8 0-21.1 2.2-30.6 6.1-6.4-70.8-65.8-126.4-138.3-126.4-17.8 0-35 3.3-50.3 9.4-6.1 2.2-7.8 4.4-7.8 9.2v249.7c0 5 3.9 8.6 8.6 9.2h218.3c43.3 0 78.6-35 78.6-78.3.1-43.6-35.2-78.9-78.5-78.9zm-296.7-60.3c-4.2 0-7.5 3.3-7.8 7.8l-3.3 136.7 3.3 65.6c.3 4.2 3.6 7.5 7.8 7.5 4.2 0 7.5-3.3 7.5-7.5l3.9-65.6-3.9-136.7c-.3-4.5-3.3-7.8-7.5-7.8zm-53.6-7.8c-3.3 0-6.4 3.1-6.4 6.7l-3.9 145.3 3.9 66.9c.3 3.6 3.1 6.4 6.4 6.4 3.6 0 6.4-2.8 6.7-6.4l4.4-66.9-4.4-145.3c-.3-3.6-3.1-6.7-6.7-6.7zm26.7 3.4c-3.9 0-6.9 3.1-6.9 6.9L227 321.3l3.9 66.4c.3 3.9 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9l4.2-66.4-4.2-141.7c0-3.9-3-6.9-6.9-6.9z"], + "speakap": [448, 512, [], "f3f3", "M352 32H96C43.2 32 0 75.2 0 128v256c0 52.8 43.2 96 96 96h256c52.8 0 96-43.2 96-96V128c0-52.8-43.2-96-96-96zM221 382.9c-39.6 0-81.9-17.8-81.9-53.7V302H179v17.8c0 15.1 19.5 24.5 41.9 24.5 24.2 0 41.3-10.4 41.3-29.5 0-23.8-27.2-31.9-54.7-42.6-31.9-12.4-63.1-26.2-63.1-69.1 0-48 38.6-66.4 79.9-66.4 37.6 0 75.5 14.1 75.5 41.9v31.2h-39.9v-16.1c0-12.1-17.8-18.5-35.6-18.5-19.5 0-35.6 8.1-35.6 26.2 0 22.1 22.5 29.2 47 38.9 35.9 12.4 71.1 27.2 71.1 71.5.1 48.6-40.8 71.1-85.8 71.1z"], + "spotify": [496, 512, [], "f1bc", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm100.7 364.9c-4.2 0-6.8-1.3-10.7-3.6-62.4-37.6-135-39.2-206.7-24.5-3.9 1-9 2.6-11.9 2.6-9.7 0-15.8-7.7-15.8-15.8 0-10.3 6.1-15.2 13.6-16.8 81.9-18.1 165.6-16.5 237 26.2 6.1 3.9 9.7 7.4 9.7 16.5s-7.1 15.4-15.2 15.4zm26.9-65.6c-5.2 0-8.7-2.3-12.3-4.2-62.5-37-155.7-51.9-238.6-29.4-4.8 1.3-7.4 2.6-11.9 2.6-10.7 0-19.4-8.7-19.4-19.4s5.2-17.8 15.5-20.7c27.8-7.8 56.2-13.6 97.8-13.6 64.9 0 127.6 16.1 177 45.5 8.1 4.8 11.3 11 11.3 19.7-.1 10.8-8.5 19.5-19.4 19.5zm31-76.2c-5.2 0-8.4-1.3-12.9-3.9-71.2-42.5-198.5-52.7-280.9-29.7-3.6 1-8.1 2.6-12.9 2.6-13.2 0-23.3-10.3-23.3-23.6 0-13.6 8.4-21.3 17.4-23.9 35.2-10.3 74.6-15.2 117.5-15.2 73 0 149.5 15.2 205.4 47.8 7.8 4.5 12.9 10.7 12.9 22.6 0 13.6-11 23.3-23.2 23.3z"], + "squarespace": [512, 512, [], "f5be", "M186.12 343.34c-9.65 9.65-9.65 25.29 0 34.94 9.65 9.65 25.29 9.65 34.94 0L378.24 221.1c19.29-19.29 50.57-19.29 69.86 0s19.29 50.57 0 69.86L293.95 445.1c19.27 19.29 50.53 19.31 69.82.04l.04-.04 119.25-119.24c38.59-38.59 38.59-101.14 0-139.72-38.59-38.59-101.15-38.59-139.72 0l-157.22 157.2zm244.53-104.8c-9.65-9.65-25.29-9.65-34.93 0l-157.2 157.18c-19.27 19.29-50.53 19.31-69.82.05l-.05-.05c-9.64-9.64-25.27-9.65-34.92-.01l-.01.01c-9.65 9.64-9.66 25.28-.02 34.93l.02.02c38.58 38.57 101.14 38.57 139.72 0l157.2-157.2c9.65-9.65 9.65-25.29.01-34.93zm-261.99 87.33l157.18-157.18c9.64-9.65 9.64-25.29 0-34.94-9.64-9.64-25.27-9.64-34.91 0L133.72 290.93c-19.28 19.29-50.56 19.3-69.85.01l-.01-.01c-19.29-19.28-19.31-50.54-.03-69.84l.03-.03L218.03 66.89c-19.28-19.29-50.55-19.3-69.85-.02l-.02.02L28.93 186.14c-38.58 38.59-38.58 101.14 0 139.72 38.6 38.59 101.13 38.59 139.73.01zm-87.33-52.4c9.64 9.64 25.27 9.64 34.91 0l157.21-157.19c19.28-19.29 50.55-19.3 69.84-.02l.02.02c9.65 9.65 25.29 9.65 34.93 0 9.65-9.65 9.65-25.29 0-34.93-38.59-38.59-101.13-38.59-139.72 0L81.33 238.54c-9.65 9.64-9.65 25.28-.01 34.93h.01z"], + "stack-exchange": [448, 512, [], "f18d", "M17.7 332.3h412.7v22c0 37.7-29.3 68-65.3 68h-19L259.3 512v-89.7H83c-36 0-65.3-30.3-65.3-68v-22zm0-23.6h412.7v-85H17.7v85zm0-109.4h412.7v-85H17.7v85zM365 0H83C47 0 17.7 30.3 17.7 67.7V90h412.7V67.7C430.3 30.3 401 0 365 0z"], + "stack-overflow": [384, 512, [], "f16c", "M293.7 300l-181.2-84.5 16.7-36.5 181.3 84.7-16.8 36.3zm48-76L188.2 95.7l-25.5 30.8 153.5 128.3 25.5-30.8zm39.6-31.7L262 32l-32 24 119.3 160.3 32-24zM290.7 311L95 269.7 86.8 309l195.7 41 8.2-39zm31.6 129H42.7V320h-40v160h359.5V320h-40v120zm-39.8-80h-200v39.7h200V360z"], + "staylinked": [440, 512, [], "f3f5", "M201.6 127.4c4.1-3.2 10.3-3 13.8.5l170 167.3-2.7-2.7 44.3 41.3c3.7 3.5 3.3 9-.7 12.2l-198 163.9c-9.9 7.6-17.3.8-17.3.8L2.3 314.6c-3.5-3.5-3-9 1.2-12.2l45.8-34.9c4.2-3.2 10.4-3 13.9.5l151.9 147.5c3.7 3.5 10 3.7 14.2.4l93.2-74c4.1-3.2 4.5-8.7.9-12.2l-84-81.3c-3.6-3.5-9.9-3.7-14-.5l-.1.1c-4.1 3.2-10.4 3-14-.5l-68.1-64.3c-3.5-3.5-3.1-9 1.1-12.2l57.3-43.6m14.8 257.3c3.7 3.5 10.1 3.7 14.3.4l50.2-38.8-.3-.3 7.7-6c4.2-3.2 4.6-8.7.9-12.2l-57.1-54.4c-3.6-3.5-10-3.7-14.2-.5l-.1.1c-4.2 3.2-10.5 3.1-14.2-.4L109 180.8c-3.6-3.5-3.1-8.9 1.1-12.2l92.2-71.5c4.1-3.2 10.3-3 13.9.5l160.4 159c3.7 3.5 10 3.7 14.1.5l45.8-35.8c4.1-3.2 4.4-8.7.7-12.2L226.7 2.5c-1.5-1.2-8-5.5-16.3 1.1L3.6 165.7c-4.2 3.2-4.8 8.7-1.2 12.2l42.3 41.7"], + "steam": [496, 512, [], "f1b6", "M496 256c0 137-111.2 248-248.4 248-113.8 0-209.6-76.3-239-180.4l95.2 39.3c6.4 32.1 34.9 56.4 68.9 56.4 39.2 0 71.9-32.4 70.2-73.5l84.5-60.2c52.1 1.3 95.8-40.9 95.8-93.5 0-51.6-42-93.5-93.7-93.5s-93.7 42-93.7 93.5v1.2L176.6 279c-15.5-.9-30.7 3.4-43.5 12.1L0 236.1C10.2 108.4 117.1 8 247.6 8 384.8 8 496 119 496 256zM155.7 384.3l-30.5-12.6a52.79 52.79 0 0 0 27.2 25.8c26.9 11.2 57.8-1.6 69-28.4 5.4-13 5.5-27.3.1-40.3-5.4-13-15.5-23.2-28.5-28.6-12.9-5.4-26.7-5.2-38.9-.6l31.5 13c19.8 8.2 29.2 30.9 20.9 50.7-8.3 19.9-31 29.2-50.8 21zm173.8-129.9c-34.4 0-62.4-28-62.4-62.3s28-62.3 62.4-62.3 62.4 28 62.4 62.3-27.9 62.3-62.4 62.3zm.1-15.6c25.9 0 46.9-21 46.9-46.8 0-25.9-21-46.8-46.9-46.8s-46.9 21-46.9 46.8c.1 25.8 21.1 46.8 46.9 46.8z"], + "steam-square": [448, 512, [], "f1b7", "M185.2 356.5c7.7-18.5-1-39.7-19.6-47.4l-29.5-12.2c11.4-4.3 24.3-4.5 36.4.5 12.2 5.1 21.6 14.6 26.7 26.7 5 12.2 5 25.6-.1 37.7-10.5 25.1-39.4 37-64.6 26.5-11.6-4.8-20.4-13.6-25.4-24.2l28.5 11.8c18.6 7.8 39.9-.9 47.6-19.4zM400 32H48C21.5 32 0 53.5 0 80v160.7l116.6 48.1c12-8.2 26.2-12.1 40.7-11.3l55.4-80.2v-1.1c0-48.2 39.3-87.5 87.6-87.5s87.6 39.3 87.6 87.5c0 49.2-40.9 88.7-89.6 87.5l-79 56.3c1.6 38.5-29.1 68.8-65.7 68.8-31.8 0-58.5-22.7-64.5-52.7L0 319.2V432c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-99.7 222.5c-32.2 0-58.4-26.1-58.4-58.3s26.2-58.3 58.4-58.3 58.4 26.2 58.4 58.3-26.2 58.3-58.4 58.3zm.1-14.6c24.2 0 43.9-19.6 43.9-43.8 0-24.2-19.6-43.8-43.9-43.8-24.2 0-43.9 19.6-43.9 43.8 0 24.2 19.7 43.8 43.9 43.8z"], + "steam-symbol": [448, 512, [], "f3f6", "M395.5 177.5c0 33.8-27.5 61-61 61-33.8 0-61-27.3-61-61s27.3-61 61-61c33.5 0 61 27.2 61 61zm52.5.2c0 63-51 113.8-113.7 113.8L225 371.3c-4 43-40.5 76.8-84.5 76.8-40.5 0-74.7-28.8-83-67L0 358V250.7L97.2 290c15.1-9.2 32.2-13.3 52-11.5l71-101.7c.5-62.3 51.5-112.8 114-112.8C397 64 448 115 448 177.7zM203 363c0-34.7-27.8-62.5-62.5-62.5-4.5 0-9 .5-13.5 1.5l26 10.5c25.5 10.2 38 39 27.7 64.5-10.2 25.5-39.2 38-64.7 27.5-10.2-4-20.5-8.3-30.7-12.2 10.5 19.7 31.2 33.2 55.2 33.2 34.7 0 62.5-27.8 62.5-62.5zm207.5-185.3c0-42-34.3-76.2-76.2-76.2-42.3 0-76.5 34.2-76.5 76.2 0 42.2 34.3 76.2 76.5 76.2 41.9.1 76.2-33.9 76.2-76.2z"], + "sticker-mule": [576, 512, [], "f3f7", "M353.1 509.8c-5.9 2.9-32.1 3.2-36.5-.5-4.1-3-2.2-11.9-1.5-15 2.2-15-2.5-7.9-9.8-11.5-3.1-1.5-4.1-5.5-4.6-10-.5-1.5-1-2.5-1.5-3.5-1.7-10.7 6.8-33.6 8.2-43.4 4.9-23.7-.7-37.2 1.5-46.9 3.7-16.2 4.1-3.5 4.1-29.9-1.4-25.9 3.3-36.9.5-38.9-14.8 0-64.3 10.7-112.2 2-46.1-8.9-59.4-29-65.4-30.9-10.3-4.5-23.2.5-27.3 7-.1.1-35 70.6-39.6 87.8-6.2 20.5-.5 47.4 4.1 66.8 0 .1 4.5 14.6 10.3 19.5 2.1 1.5 5.1 2.5 7.2 4.5 2.8 2.7 9.4 15.2 9.8 16 2.6 4.5 3.6 8-1.5 10.5-3.6 2-9.3 2.5-14.4 2.5-2.6.5-1.5 3.5-3.1 5-2.9 2.8-20.7 6.1-29.9 2.5-2.6-1-5.7-3-6.2-5-1.5-4 2.1-9-1-12.5-4.5-2.9-13.1-2-17-12-2.2-5.4-2.6-7.6-2.6-49.4 0-9.7-5.9-38.7-8.2-46.9-1.5-5.5-1.5-11.5 0-16 .3-.9 4.1-4.6 4.1-13-1-1.5-4.6-.5-5.1-1.5-10.4-80.6-5.9-79-7.7-98.3-1.5-16-10.9-43.9-6.7-64.3.5-2.4 3.4-21 24.2-38.9 31-26.7 48.4-38.3 159-11.5 1.1.4 66.3 21.1 110.7-9 15.5-11.3 28.8-11.3 35.5-16 .1-.1 61.7-52.1 87-65.3 47.2-29.4 69.9-16.7 75.1-18 4.7-1 13.4-25.8 17-25.8 5.5 0 1.6 20.2 3.6 25.9.5 2 3.6 5 6.2 5 2.3 0 1.7-.8 10.3-5 8.4-5.4 14.9-17.6 20.6-17 11.7 1.6-19 41.6-19 46.9 0 2 .2.8 4.6 9.5 2.6 5.5 4.6 13.5 6.2 20 8.3 29.7 5.7 14.6 13.4 36.9 20.2 50.1 20.6 45.2 20.6 52.9 0 7.5-4.1 11-7.2 16.5-1.5 3-4.6 7.5-7.2 8-2.7.7 7-1.5-13.4 2.5-7.2 1-13.4-4.5-14.9-9.5-1.6-4.7 2.8-10.1-11.8-22.9-10.3-10-21.1-11.3-31.9-17-9.8-5.7-11.9 1-18 8-18 22.9-34 46.9-52 69.8-11.8 15-24.2 30.4-33.5 47.4-3.9 6.8-9.5 28.1-10.3 29.9-6.2 17.7-5.5 25.8-16.5 68.3-3.1 10-5.7 21.4-8.7 32.4-2.2 6.8-7.4 49.3-.5 59.4 2.1 3.5 8.7 4.5 11.3 8 .1.1 9.6 18.2 9.3 20 0 6.1-9.4 5.6-11.3 6.5-4.8 2.9-3.8 5.9-6.4 7.4"], + "strava": [369, 512, [], "f428", "M301.6 292l-43.9 88.2-44.6-88.2h-67.6l112.2 220 111.5-220h-67.6zM151.4 0L0 292h89.2l62.2-116.1L213.1 292h88.5L151.4 0z"], + "stripe": [640, 512, [], "f429", "M640 261.6c0-45.5-22-81.4-64.2-81.4s-67.9 35.9-67.9 81.1c0 53.5 30.3 78.2 73.5 78.2 21.2 0 37.1-4.8 49.2-11.5v-33.4c-12.1 6.1-26 9.8-43.6 9.8-17.3 0-32.5-6.1-34.5-26.9h86.9c.2-2.3.6-11.6.6-15.9m-87.9-16.8c0-20 12.3-28.4 23.4-28.4 10.9 0 22.5 8.4 22.5 28.4h-45.9zm-112.9-64.6c-17.4 0-28.6 8.2-34.8 13.9l-2.3-11H363v204.8l44.4-9.4.1-50.2c6.4 4.7 15.9 11.2 31.4 11.2 31.8 0 60.8-23.2 60.8-79.6.1-51.6-29.3-79.7-60.5-79.7m-10.6 122.5c-10.4 0-16.6-3.8-20.9-8.4l-.3-66c4.6-5.1 11-8.8 21.2-8.8 16.2 0 27.4 18.2 27.4 41.4.1 23.9-10.9 41.8-27.4 41.8M346.4 124v36.2l-44.6 9.5v-36.2l44.6-9.5m-44.5 59.2h44.6v153.2h-44.6V183.2zm-47.8 13.1c10.4-19.1 31.1-15.2 37.1-13.1V224c-5.7-1.8-23.4-4.5-33.9 9.3v103.1H213V183.2h38.4l2.7 13.1m-89-13.1h33.7V221h-33.7v63.2c0 26.2 28 18 33.7 15.7v33.8c-5.9 3.2-16.6 5.9-31.2 5.9-26.3 0-46.1-17-46.1-43.3l.2-142.4 43.3-9.2.1 38.5zM44.9 228.3c0 20 67.9 10.5 67.9 63.4 0 32-25.4 47.8-62.3 47.8-15.3 0-32-3-48.5-10.1v-40c14.9 8.1 33.9 14.2 48.6 14.2 9.9 0 17-2.7 17-10.9 0-21.2-67.5-13.2-67.5-62.4 0-31.4 24-50.2 60-50.2 14.7 0 29.4 2.3 44.1 8.1V230c-13.5-7.3-30.7-11.4-44.2-11.4-9.3.1-15.1 2.8-15.1 9.7"], + "stripe-s": [362, 512, [], "f42a", "M144.3 154.6c0-22.3 18.6-30.9 48.4-30.9 43.4 0 98.5 13.3 141.9 36.7V26.1C287.3 7.2 240.1 0 192.8 0 77.1 0 0 60.4 0 161.4c0 157.9 216.8 132.3 216.8 200.4 0 26.4-22.9 34.9-54.7 34.9-47.2 0-108.2-19.5-156.1-45.5v128.5c53 22.8 106.8 32.4 156 32.4 118.6 0 200.3-51 200.3-153.6 0-170.2-218-139.7-218-203.9"], + "studiovinari": [512, 512, [], "f3f8", "M480.3 187.7l4.2 28v28l-25.1 44.1-39.8 78.4-56.1 67.5-79.1 37.8-17.7 24.5-7.7 12-9.6 4s17.3-63.6 19.4-63.6c2.1 0 20.3.7 20.3.7l66.7-38.6-92.5 26.1-55.9 36.8-22.8 28-6.6 1.4 20.8-73.6 6.9-5.5 20.7 12.9 88.3-45.2 56.8-51.5 14.8-68.4-125.4 23.3 15.2-18.2-173.4-53.3 81.9-10.5-166-122.9L133.5 108 32.2 0l252.9 126.6-31.5-38L378 163 234.7 64l18.7 38.4-49.6-18.1L158.3 0l194.6 122L310 66.2l108 96.4 12-8.9-21-16.4 4.2-37.8L451 89.1l29.2 24.7 11.5 4.2-7 6.2 8.5 12-13.1 7.4-10.3 20.2 10.5 23.9z"], + "stumbleupon": [512, 512, [], "f1a4", "M502.9 266v69.7c0 62.1-50.3 112.4-112.4 112.4-61.8 0-112.4-49.8-112.4-111.3v-70.2l34.3 16 51.1-15.2V338c0 14.7 12 26.5 26.7 26.5S417 352.7 417 338v-72h85.9zm-224.7-58.2l34.3 16 51.1-15.2V173c0-60.5-51.1-109-112.1-109-60.8 0-112.1 48.2-112.1 108.2v162.4c0 14.9-12 26.7-26.7 26.7S86 349.5 86 334.6V266H0v69.7C0 397.7 50.3 448 112.4 448c61.6 0 112.4-49.5 112.4-110.8V176.9c0-14.7 12-26.7 26.7-26.7s26.7 12 26.7 26.7v30.9z"], + "stumbleupon-circle": [496, 512, [], "f1a3", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 177.5c-9.8 0-17.8 8-17.8 17.8v106.9c0 40.9-33.9 73.9-74.9 73.9-41.4 0-74.9-33.5-74.9-74.9v-46.5h57.3v45.8c0 10 8 17.8 17.8 17.8s17.8-7.9 17.8-17.8V200.1c0-40 34.2-72.1 74.7-72.1 40.7 0 74.7 32.3 74.7 72.6v23.7l-34.1 10.1-22.9-10.7v-20.6c.1-9.6-7.9-17.6-17.7-17.6zm167.6 123.6c0 41.4-33.5 74.9-74.9 74.9-41.2 0-74.9-33.2-74.9-74.2V263l22.9 10.7 34.1-10.1v47.1c0 9.8 8 17.6 17.8 17.6s17.8-7.9 17.8-17.6v-48h57.3c-.1 45.9-.1 46.4-.1 46.4z"], + "superpowers": [448, 512, [], "f2dd", "M448 32c-83.3 11-166.8 22-250 33-92 12.5-163.3 86.7-169 180-3.3 55.5 18 109.5 57.8 148.2L0 480c83.3-11 166.5-22 249.8-33 91.8-12.5 163.3-86.8 168.7-179.8 3.5-55.5-18-109.5-57.7-148.2L448 32zm-79.7 232.3c-4.2 79.5-74 139.2-152.8 134.5-79.5-4.7-140.7-71-136.3-151 4.5-79.2 74.3-139.3 153-134.5 79.3 4.7 140.5 71 136.1 151z"], + "supple": [640, 512, [], "f3f9", "M640 262.5c0 64.1-109 116.1-243.5 116.1-24.8 0-48.6-1.8-71.1-5 7.7.4 15.5.6 23.4.6 134.5 0 243.5-56.9 243.5-127.1 0-29.4-19.1-56.4-51.2-78 60 21.1 98.9 55.1 98.9 93.4zM47.7 227.9c-.1-70.2 108.8-127.3 243.3-127.6 7.9 0 15.6.2 23.3.5-22.5-3.2-46.3-4.9-71-4.9C108.8 96.3-.1 148.5 0 212.6c.1 38.3 39.1 72.3 99.3 93.3-32.3-21.5-51.5-48.6-51.6-78zm60.2 39.9s10.5 13.2 29.3 13.2c17.9 0 28.4-11.5 28.4-25.1 0-28-40.2-25.1-40.2-39.7 0-5.4 5.3-9.1 12.5-9.1 5.7 0 11.3 2.6 11.3 6.6v3.9h14.2v-7.9c0-12.1-15.4-16.8-25.4-16.8-16.5 0-28.5 10.2-28.5 24.1 0 26.6 40.2 25.4 40.2 39.9 0 6.6-5.8 10.1-12.3 10.1-11.9 0-20.7-10.1-20.7-10.1l-8.8 10.9zm120.8-73.6v54.4c0 11.3-7.1 17.8-17.8 17.8-10.7 0-17.8-6.5-17.8-17.7v-54.5h-15.8v55c0 18.9 13.4 31.9 33.7 31.9 20.1 0 33.4-13 33.4-31.9v-55h-15.7zm34.4 85.4h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.8-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5.1 14.7-14 14.7h-12.6zm57 43h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.7-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5 14.7-14 14.7h-12.6zm57.1 34.8c0 5.8 2.4 8.2 8.2 8.2h37.6c5.8 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-18.6c-1.7 0-2.6-1-2.6-2.6v-61.2c0-5.7-2.4-8.2-8.2-8.2H401v13.4h5.2c1.7 0 2.6 1 2.6 2.6v61.2zm63.4 0c0 5.8 2.4 8.2 8.2 8.2H519c5.7 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-19.7c-1.7 0-2.6-1-2.6-2.6v-20.3h27.7v-13.4H488v-22.4h19.2c1.7 0 2.6 1 2.6 2.6v5.2H524v-13c0-5.7-2.5-8.2-8.2-8.2h-51.6v13.4h7.8v63.9zm58.9-76v5.9h1.6v-5.9h2.7v-1.2h-7v1.2h2.7zm5.7-1.2v7.1h1.5v-5.7l2.3 5.7h1.3l2.3-5.7v5.7h1.5v-7.1h-2.3l-2.1 5.1-2.1-5.1h-2.4z"], + "teamspeak": [511, 512, [], "f4f9", "M.82 237.82c2.36-15.52 10.69-27.04 24.88-34.03 3.5-1.85 5.65-3.5 6.37-7.81 6.17-33.41 19.53-63.94 39.37-91.59 2.36-3.19 4.01-5.35 1.03-9.35-3.7-5.35-1.03-10.18 2.98-14.49 28.06-31.87 61.88-55.1 101.98-67.44 95.81-29.4 180.1-9.35 252.37 60.45 6.68 6.37 15.52 12.85 6.99 24.36-1.34 1.85 1.03 3.5 2.16 5.04 20.66 28.06 34.23 59.42 40.4 93.65.82 3.7 2.98 5.04 5.86 6.37 17.37 8.84 25.7 23.34 26.01 42.25 0 17.17 1.85 34.54-1.03 51.71-4.01 24.67-29.19 41.74-53.25 36.7-7.2-1.64-9.35-7.2-9.35-14.19 0-28.06.82-56.44 0-84.6-1.85-75.76-36.18-132.81-102.28-169.41C234.28 4.98 92.11 72.42 67.54 196.91c-6.06 30.42-1.74 48.27-3.7 125.82-.31 7.2-4.32 11.2-12.03 11.51C20.97 335.58 0 316.05 0 285.21v-20.87m221.74 106.81c11.82-4.32 20.05-11.82 22.51-24.36 2.36-12.34-12.03-30.02-32.38-48.73-20.87-19.22-48.22-39.06-63.43-46.57-21.69-12.03-41.74-1.85-46.26 22.72-5.04 26.21 0 51.4 14.49 73.91 10.18 15.52 25.39 22.72 43.38 24.05 11.62.62 52.54 2.16 61.69-1.02m129.83 5.55c36.5 2.81 59.33-28.55 58.39-60.45-2.14-45.17-66.17-16.48-87.79-8.02-73.16 28.14-45.05 54.92-22.2 60.75m149.26-1.33c-2.98-2.36-7.2-1.03-8.33 2.36-8.02 25.39-44.72 112.46-172.08 121.51-149.67 10.49 80.29 43.59 145.36-6.37 22.72-17.37 47.6-35.05 46.57-85.43-.32-10.07-4.84-26.72-11.52-32.07"], + "telegram": [496, 512, [], "f2c6", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm121.8 169.9l-40.7 191.8c-3 13.6-11.1 16.9-22.4 10.5l-62-45.7-29.9 28.8c-3.3 3.3-6.1 6.1-12.5 6.1l4.4-63.1 114.9-103.8c5-4.4-1.1-6.9-7.7-2.5l-142 89.4-61.2-19.1c-13.3-4.2-13.6-13.3 2.8-19.7l239.1-92.2c11.1-4 20.8 2.7 17.2 19.5z"], + "telegram-plane": [448, 512, [], "f3fe", "M446.7 98.6l-67.6 318.8c-5.1 22.5-18.4 28.1-37.3 17.5l-103-75.9-49.7 47.8c-5.5 5.5-10.1 10.1-20.7 10.1l7.4-104.9 190.9-172.5c8.3-7.4-1.8-11.5-12.9-4.1L117.8 284 16.2 252.2c-22.1-6.9-22.5-22.1 4.6-32.7L418.2 66.4c18.4-6.9 34.5 4.1 28.5 32.2z"], + "tencent-weibo": [384, 512, [], "f1d5", "M72.3 495.8c1.4 19.9-27.6 22.2-29.7 2.9C31 368.8 73.7 259.2 144 185.5c-15.6-34 9.2-77.1 50.6-77.1 30.3 0 55.1 24.6 55.1 55.1 0 44-49.5 70.8-86.9 45.1-65.7 71.3-101.4 169.8-90.5 287.2zM192 .1C66.1.1-12.3 134.3 43.7 242.4 52.4 259.8 79 246.9 70 229 23.7 136.4 91 29.8 192 29.8c75.4 0 136.9 61.4 136.9 136.9 0 90.8-86.9 153.9-167.7 133.1-19.1-4.1-25.6 24.4-6.6 29.1 110.7 23.2 204-60 204-162.3C358.6 74.7 284 .1 192 .1z"], + "themeco": [441, 512, [], "f5c6", "M199.74 12.29c9.74-5.64 25.59-5.73 35.39-.21l188.13 105.95c9.81 5.52 17.76 19.14 17.76 30.38v213.87c0 11.26-7.93 24.89-17.71 30.46L235.09 499.88c-9.78 5.57-25.58 5.48-35.29-.21L17.58 392.95C7.87 387.26 0 373.52 0 362.27V148.41c0-11.26 7.9-24.96 17.63-30.59L199.74 12.29zM123.54 209c-15.69 0-31.39.14-47.08.14v99.87h18.83v-29.39h28.25c48.94 0 48.79-70.62 0-70.62zm137.96 98.73l-30.25-34.1c36.4-7.39 34.26-64.21-10.7-64.49-15.84 0-31.67-.14-47.51-.14v100.01h18.83v-33.38H210l29.1 33.38h22.4v-1.28zm-40.94-81.04c22.98 0 22.9 31.96 0 31.96h-28.68v-31.96h28.68zm-94.07-1.57c20.85 0 20.78 38.24 0 38.24H94.68v-38.23l31.81-.01zm189.65-17.97c-67.4 0-69.86 104.15 0 104.15 68.39-.01 68.33-104.15 0-104.15zm0 17.12c43.43 0 44.1 69.76 0 69.76-44.12 0-43.74-69.76 0-69.76z"], + "themeisle": [512, 512, [], "f2b2", "M208 88.286c0-10 6.286-21.714 17.715-21.714 11.142 0 17.714 11.714 17.714 21.714 0 10.285-6.572 21.714-17.714 21.714C214.286 110 208 98.571 208 88.286zm304 160c0 36.001-11.429 102.286-36.286 129.714-22.858 24.858-87.428 61.143-120.857 70.572l-1.143.286v32.571c0 16.286-12.572 30.571-29.143 30.571-10 0-19.429-5.714-24.572-14.286-5.427 8.572-14.856 14.286-24.856 14.286-10 0-19.429-5.714-24.858-14.286-5.142 8.572-14.571 14.286-24.57 14.286-10.286 0-19.429-5.714-24.858-14.286-5.143 8.572-14.571 14.286-24.571 14.286-18.857 0-29.429-15.714-29.429-32.857-16.286 12.285-35.715 19.428-56.571 19.428-22 0-43.429-8.285-60.286-22.857 10.285-.286 20.571-2.286 30.285-5.714-20.857-5.714-39.428-18.857-52-36.286 21.37 4.645 46.209 1.673 67.143-11.143-22-22-56.571-58.857-68.572-87.428C1.143 321.714 0 303.714 0 289.429c0-49.714 20.286-160 86.286-160 10.571 0 18.857 4.858 23.143 14.857a158.792 158.792 0 0 1 12-15.428c2-2.572 5.714-5.429 7.143-8.286 7.999-12.571 11.714-21.142 21.714-34C182.571 45.428 232 17.143 285.143 17.143c6 0 12 .285 17.714 1.143C313.714 6.571 328.857 0 344.572 0c14.571 0 29.714 6 40 16.286.857.858 1.428 2.286 1.428 3.428 0 3.714-10.285 13.429-12.857 16.286 4.286 1.429 15.714 6.858 15.714 12 0 2.857-2.857 5.143-4.571 7.143 31.429 27.714 49.429 67.143 56.286 108 4.286-5.143 10.285-8.572 17.143-8.572 10.571 0 20.857 7.144 28.571 14.001C507.143 187.143 512 221.714 512 248.286zM188 89.428c0 18.286 12.571 37.143 32.286 37.143 19.714 0 32.285-18.857 32.285-37.143 0-18-12.571-36.857-32.285-36.857-19.715 0-32.286 18.858-32.286 36.857zM237.714 194c0-19.714 3.714-39.143 8.571-58.286-52.039 79.534-13.531 184.571 68.858 184.571 21.428 0 42.571-7.714 60-20 2-7.429 3.714-14.857 3.714-22.572 0-14.286-6.286-21.428-20.572-21.428-4.571 0-9.143.857-13.429 1.714-63.343 12.668-107.142 3.669-107.142-63.999zm-41.142 254.858c0-11.143-8.858-20.857-20.286-20.857-11.429 0-20 9.715-20 20.857v32.571c0 11.143 8.571 21.142 20 21.142 11.428 0 20.286-9.715 20.286-21.142v-32.571zm49.143 0c0-11.143-8.572-20.857-20-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20-10 20-21.142v-32.571zm49.713 0c0-11.143-8.857-20.857-20.285-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20.285-9.715 20.285-21.142v-32.571zm49.715 0c0-11.143-8.857-20.857-20.286-20.857-11.428 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.858 21.142 20.286 21.142 11.429 0 20.286-10 20.286-21.142v-32.571zM421.714 286c-30.857 59.142-90.285 102.572-158.571 102.572-96.571 0-160.571-84.572-160.571-176.572 0-16.857 2-33.429 6-49.714-20 33.715-29.714 72.572-29.714 111.429 0 60.286 24.857 121.715 71.429 160.857 5.143-9.714 14.857-16.286 26-16.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.571-14.286 24.858-14.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.857-14.286 24.858-14.286 10 0 19.428 5.714 24.857 14.286 5.143-8.571 14.571-14.286 24.572-14.286 10.857 0 20.857 6.572 25.714 16 43.427-36.286 68.569-92 71.426-148.286zm10.572-99.714c0-53.714-34.571-105.714-92.572-105.714-30.285 0-58.571 15.143-78.857 36.857C240.862 183.812 233.41 254 302.286 254c28.805 0 97.357-28.538 84.286 36.857 28.857-26 45.714-65.714 45.714-104.571z"], + "trade-federation": [496, 512, [], "f513", "M202.45 108.42v81.61H38.94l48.22 61.91h114.73v196.75h64.61V252.96h83.27v-62.69h-83.18V171.1h145.62v-62.68H202.45zm4.86 6h197.77v50.68H259.44v30.93h83.18v50.93h-83.26v195.73h-52.73V245.94H89.86l-39.95-49.91h157.4v-81.61zM247.99 8.8C111.03 8.8 0 119.83 0 256.8s111.03 248 247.99 248S496 393.76 496 256.8 384.96 8.8 247.99 8.8zm.02 13.24c129.66 0 234.76 105.12 234.76 234.78s-105.1 234.76-234.76 234.76S13.23 386.47 13.23 256.81 118.35 22.04 248.01 22.04zm0 7.89c-125.3 0-226.89 101.57-226.89 226.87s101.59 226.89 226.89 226.89S474.88 382.1 474.88 256.8 373.31 29.93 248.01 29.93zm-.02 13.3c117.95 0 213.56 95.62 213.56 213.56s-95.62 213.56-213.56 213.56S34.43 374.75 34.43 256.8 130.04 43.23 247.99 43.23zm-73.32 104.8l15.66 18.05-22.16-9.45-12.33 20.47 2.15-23.99-23.28-5.4 23.48-5.37-2.06-23.81 12.37 20.67 22.01-9.32-15.84 18.15zm-47.14-46.54l8.01 12.4 12.69-5.86-9.32 11.45 9.5 10.25-13.77-5.32-6.82 12.2.81-14.74-13.71-2.71 14.27-3.78-1.66-13.89zm250.77 75.59l11.99 19.56 20.88-9.11-14.9 17.45 15.11 17.04-21.2-8.78-11.54 19.64 1.8-22.87-22.24-4.9 22.31-5.36-2.21-22.67zm-107.05 98.45l13.86-3.22-1.28-14.17 7.35 12.18 13.08-5.59-9.31 10.75 9.36 10.71-13.1-5.54-7.29 12.21 1.22-14.17-13.89-3.16zm-125.43 6.5l23.73-3.87-1.73-24.53 11.01 21.38 22.79-9.22-16.93 17.08 15.81 18.83-21.47-10.82-13.02 20.86 3.66-23.77-23.85-5.94zm63.44-165.66v81.61H54.16l36.72 46.01h117.7v196.75h48.82V245.01h83.27v-47.03H257.4v-34.83h145.73v-46.78H209.26zm10.86 11.2h171.8v24.36H246.88v56.23h82.93v23.94h-82.93v197.42h-26.76V232.1H96.31l-20.09-23.94h143.9v-80.59z"], + "trello": [448, 512, [], "f181", "M392 32H56C25.1 32 0 57.1 0 88v336c0 30.9 25.1 56 56 56h336c30.9 0 56-25.1 56-56V88c0-30.9-25.1-56-56-56zM194.9 371.4c0 14.8-12 26.9-26.9 26.9H85.1c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9H168c14.8 0 26.9 12 26.9 26.9v254.3zm194.9-112c0 14.8-12 26.9-26.9 26.9H280c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9h82.9c14.8 0 26.9 12 26.9 26.9v142.3z"], + "tripadvisor": [576, 512, [], "f262", "M166.4 280.521c0 13.236-10.73 23.966-23.966 23.966s-23.966-10.73-23.966-23.966 10.73-23.966 23.966-23.966 23.966 10.729 23.966 23.966zm264.962-23.956c-13.23 0-23.956 10.725-23.956 23.956 0 13.23 10.725 23.956 23.956 23.956 13.23 0 23.956-10.725 23.956-23.956-.001-13.231-10.726-23.956-23.956-23.956zm89.388 139.49c-62.667 49.104-153.276 38.109-202.379-24.559l-30.979 46.325-30.683-45.939c-48.277 60.39-135.622 71.891-197.885 26.055-64.058-47.158-77.759-137.316-30.601-201.374A186.762 186.762 0 0 0 0 139.416l90.286-.05a358.48 358.48 0 0 1 197.065-54.03 350.382 350.382 0 0 1 192.181 53.349l96.218.074a185.713 185.713 0 0 0-28.352 57.649c46.793 62.747 34.964 151.37-26.648 199.647zM259.366 281.761c-.007-63.557-51.535-115.075-115.092-115.068C80.717 166.7 29.2 218.228 29.206 281.785c.007 63.557 51.535 115.075 115.092 115.068 63.513-.075 114.984-51.539 115.068-115.052v-.04zm28.591-10.455c5.433-73.44 65.51-130.884 139.12-133.022a339.146 339.146 0 0 0-139.727-27.812 356.31 356.31 0 0 0-140.164 27.253c74.344 1.582 135.299 59.424 140.771 133.581zm251.706-28.767c-21.992-59.634-88.162-90.148-147.795-68.157-59.634 21.992-90.148 88.162-68.157 147.795v.032c22.038 59.607 88.198 90.091 147.827 68.113 59.615-22.004 90.113-88.162 68.125-147.783zm-326.039 37.975v.115c-.057 39.328-31.986 71.163-71.314 71.106-39.328-.057-71.163-31.986-71.106-71.314.057-39.328 31.986-71.163 71.314-71.106 39.259.116 71.042 31.94 71.106 71.199zm-24.512 0v-.084c-.051-25.784-20.994-46.645-46.778-46.594-25.784.051-46.645 20.994-46.594 46.777.051 25.784 20.994 46.645 46.777 46.594 25.726-.113 46.537-20.968 46.595-46.693zm313.423 0v.048c-.02 39.328-31.918 71.194-71.247 71.173s-71.194-31.918-71.173-71.247c.02-39.328 31.918-71.194 71.247-71.173 39.29.066 71.121 31.909 71.173 71.199zm-24.504-.008c-.009-25.784-20.918-46.679-46.702-46.67-25.784.009-46.679 20.918-46.67 46.702.009 25.784 20.918 46.678 46.702 46.67 25.765-.046 46.636-20.928 46.67-46.693v-.009z"], + "tumblr": [320, 512, [], "f173", "M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z"], + "tumblr-square": [448, 512, [], "f174", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-82.3 364.2c-8.5 9.1-31.2 19.8-60.9 19.8-75.5 0-91.9-55.5-91.9-87.9v-90h-29.7c-3.4 0-6.2-2.8-6.2-6.2v-42.5c0-4.5 2.8-8.5 7.1-10 38.8-13.7 50.9-47.5 52.7-73.2.5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2h-52.1V321c0 21.4 14.8 33.5 42.5 22.4 3-1.2 5.6-2 8-1.4 2.2.5 3.6 2.1 4.6 4.9l13.8 40.2c1 3.2 2 6.7-.3 9.1z"], + "twitch": [448, 512, [], "f1e8", "M40.1 32L10 108.9v314.3h107V480h60.2l56.8-56.8h87l117-117V32H40.1zm357.8 254.1L331 353H224l-56.8 56.8V353H76.9V72.1h321v214zM331 149v116.9h-40.1V149H331zm-107 0v116.9h-40.1V149H224z"], + "twitter": [512, 512, [], "f099", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"], + "twitter-square": [448, 512, [], "f081", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z"], + "typo3": [433, 512, [], "f42b", "M330.8 341c-7 2.3-11.6 2.3-18.5 2.3-57.2 0-140.6-198.5-140.6-264.9 0-24.7 5.4-32.4 13.9-39.4-69.5 8.5-149.3 34-176.3 66.4-5.4 7.7-9.3 20.8-9.3 37.1C0 246 106.8 480 184.1 480c36.3 0 97.3-59.5 146.7-139M294.5 32c71.8 0 138.8 11.6 138.8 52.5 0 82.6-52.5 182.3-78.8 182.3-47.9 0-101.7-132.1-101.7-198.5 0-30.9 11.6-36.3 41.7-36.3"], + "uber": [448, 512, [], "f402", "M414.1 32H33.9C15.2 32 0 47.2 0 65.9V446c0 18.8 15.2 34 33.9 34H414c18.7 0 33.9-15.2 33.9-33.9V65.9C448 47.2 432.8 32 414.1 32zM237.6 391.1C163 398.6 96.4 344.2 88.9 269.6h94.4V290c0 3.7 3 6.8 6.8 6.8H258c3.7 0 6.8-3 6.8-6.8v-67.9c0-3.7-3-6.8-6.8-6.8h-67.9c-3.7 0-6.8 3-6.8 6.8v20.4H88.9c7-69.4 65.4-122.2 135.1-122.2 69.7 0 128.1 52.8 135.1 122.2 7.5 74.5-46.9 141.1-121.5 148.6z"], + "uikit": [448, 512, [], "f403", "M443.9 128v256L218 512 0 384V169.7l87.6 45.1v117l133.5 75.5 135.8-75.5v-151l-101.1-57.6 87.6-53.1L443.9 128zM308.6 49.1L223.8 0l-88.6 54.8 86 47.3 87.4-53z"], + "uniregistry": [384, 512, [], "f404", "M281.1 220.1H384v-14.8H281.1v14.8zm0-37.1H384v-12.4H281.1V183zm0 74.2H384v-17.3H281.1v17.3zm-157.7 86.7H8.5c2.6 8.5 5.8 16.8 9.6 24.8h138.3c-12.9-5.7-24.1-14.2-33-24.8m145.7-12.4h109.7c1.8-7.3 3.1-14.7 3.9-22.3H278.3c-2.1 7.9-5.2 15.4-9.2 22.3m-41.5 37.1H367c3.7-8 5.8-16.2 8.5-24.8h-115c-8.8 10.7-20.1 19.2-32.9 24.8M384 32H281.1v2.5H384V32zM192 480c39.5 0 76.2-11.8 106.8-32.2H85.3C115.8 468.2 152.5 480 192 480m89.1-334.2H384V136H281.1v9.8zm0-37.1H384v-7.4H281.1v7.4zm0-37.1H384v-4.9H281.1v4.9zm-178.2 99H0V183h102.9v-12.4zM38.8 405.7h305.3c6.7-8.5 12.6-17.6 17.8-27.2H23c5.2 9.6 9.2 18.7 15.8 27.2m64.1-118.8v-12.4H0v12.4c0 2.5 0 5 .1 7.4h103.1c-.2-2.4-.3-4.9-.3-7.4m178.2 0c0 2.5-.1 5-.4 7.4h103.1c.1-2.5.2-4.9.2-7.4v-12.4H281.1v12.4zm-203 156h227.7c11.8-8.7 22.7-18.6 32.2-29.7H44.9c9.6 11 21.4 21 33.2 29.7m24.8-376.2H0v4.9h102.9v-4.9zm0-34.7H0v2.5h102.9V32zm0 173.3H0v14.8h102.9v-14.8zm0 34.6H0v17.3h102.9v-17.3zm0-103.9H0v9.9h102.9V136zm0-34.7H0v7.4h102.9v-7.4zm2.8 207.9H1.3c.9 7.6 2.2 15 3.9 22.3h109.7c-4-6.9-7.2-14.4-9.2-22.3"], + "untappd": [640, 512, [], "f405", "M401.3 49.9c-79.8 160.1-84.6 152.5-87.9 173.2l-5.2 32.8c-1.9 12-6.6 23.5-13.7 33.4L145.6 497.1c-7.6 10.6-20.4 16.2-33.4 14.6-40.3-5-77.8-32.2-95.3-68.5-5.7-11.8-4.5-25.8 3.1-36.4l148.9-207.9c7.1-9.9 16.4-18 27.2-23.7l29.3-15.5c18.5-9.8 9.7-11.9 135.6-138.9 1-4.8 1-7.3 3.6-8 3-.7 6.6-1 6.3-4.6l-.4-4.6c-.2-1.9 1.3-3.6 3.2-3.6 4.5-.1 13.2 1.2 25.6 10 12.3 8.9 16.4 16.8 17.7 21.1.6 1.8-.6 3.7-2.4 4.2l-4.5 1.1c-3.4.9-2.5 4.4-2.3 7.4.1 2.8-2.3 3.6-6.5 6.1zM230.1 36.4c3.4.9 2.5 4.4 2.3 7.4-.2 2.7 2.1 3.5 6.4 6 7.9 15.9 15.3 30.5 22.2 44 .7 1.3 2.3 1.5 3.3.5 11.2-12 24.6-26.2 40.5-42.6 1.3-1.4 1.4-3.5.1-4.9-8-8.2-16.5-16.9-25.6-26.1-1-4.7-1-7.3-3.6-8-3-.8-6.6-1-6.3-4.6.3-3.3 1.4-8.1-2.8-8.2-4.5-.1-13.2 1.1-25.6 10-12.3 8.9-16.4 16.8-17.7 21.1-1.4 4.2 3.6 4.6 6.8 5.4zM620 406.7L471.2 198.8c-13.2-18.5-26.6-23.4-56.4-39.1-11.2-5.9-14.2-10.9-30.5-28.9-1-1.1-2.9-.9-3.6.5-46.3 88.8-47.1 82.8-49 94.8-1.7 10.7-1.3 20 .3 29.8 1.9 12 6.6 23.5 13.7 33.4l148.9 207.9c7.6 10.6 20.2 16.2 33.1 14.7 40.3-4.9 78-32 95.7-68.6 5.4-11.9 4.3-25.9-3.4-36.6z"], + "usb": [640, 512, [], "f287", "M641.5 256c0 3.1-1.7 6.1-4.5 7.5L547.9 317c-1.4.8-2.8 1.4-4.5 1.4-1.4 0-3.1-.3-4.5-1.1-2.8-1.7-4.5-4.5-4.5-7.8v-35.6H295.7c25.3 39.6 40.5 106.9 69.6 106.9H392V354c0-5 3.9-8.9 8.9-8.9H490c5 0 8.9 3.9 8.9 8.9v89.1c0 5-3.9 8.9-8.9 8.9h-89.1c-5 0-8.9-3.9-8.9-8.9v-26.7h-26.7c-75.4 0-81.1-142.5-124.7-142.5H140.3c-8.1 30.6-35.9 53.5-69 53.5C32 327.3 0 295.3 0 256s32-71.3 71.3-71.3c33.1 0 61 22.8 69 53.5 39.1 0 43.9 9.5 74.6-60.4C255 88.7 273 95.7 323.8 95.7c7.5-20.9 27-35.6 50.4-35.6 29.5 0 53.5 23.9 53.5 53.5s-23.9 53.5-53.5 53.5c-23.4 0-42.9-14.8-50.4-35.6H294c-29.1 0-44.3 67.4-69.6 106.9h310.1v-35.6c0-3.3 1.7-6.1 4.5-7.8 2.8-1.7 6.4-1.4 8.9.3l89.1 53.5c2.8 1.1 4.5 4.1 4.5 7.2z"], + "ussunnah": [512, 512, [], "f407", "M156.8 285.1l5.7 14.4h-8.2c-1.3-3.2-3.1-7.7-3.8-9.5-2.5-6.3-1.1-8.4 0-10 1.9-2.7 3.2-4.4 3.6-5.2 0 2.2.8 5.7 2.7 10.3zm297.3 18.8c-2.1 13.8-5.7 27.1-10.5 39.7l43 23.4-44.8-18.8c-5.3 13.2-12 25.6-19.9 37.2l34.2 30.2-36.8-26.4c-8.4 11.8-18 22.6-28.7 32.3l24.9 34.7-28.1-31.8c-11 9.6-23.1 18-36.1 25.1l15.7 37.2-19.3-35.3c-13.1 6.8-27 12.1-41.6 15.9l6.7 38.4-10.5-37.4c-14.3 3.4-29.2 5.3-44.5 5.4L256 512l-1.9-38.4c-15.3-.1-30.2-2-44.5-5.3L199 505.6l6.7-38.2c-14.6-3.7-28.6-9.1-41.7-15.8l-19.2 35.1 15.6-37c-13-7-25.2-15.4-36.2-25.1l-27.9 31.6 24.7-34.4c-10.7-9.7-20.4-20.5-28.8-32.3l-36.5 26.2 33.9-29.9c-7.9-11.6-14.6-24.1-20-37.3l-44.4 18.7L67.8 344c-4.8-12.7-8.4-26.1-10.5-39.9l-51 9 50.3-14.2c-1.1-8.5-1.7-17.1-1.7-25.9 0-4.7.2-9.4.5-14.1L0 256l56-2.8c1.3-13.1 3.8-25.8 7.5-38.1L6.4 199l58.9 10.4c4-12 9.1-23.5 15.2-34.4l-55.1-30 58.3 24.6C90 159 97.2 149.2 105.3 140L55.8 96.4l53.9 38.7c8.1-8.6 17-16.5 26.6-23.6l-40-55.6 45.6 51.6c9.5-6.6 19.7-12.3 30.3-17.2l-27.3-64.9 33.8 62.1c10.5-4.4 21.4-7.9 32.7-10.4L199 6.4l19.5 69.2c11-2.1 22.3-3.2 33.8-3.4L256 0l3.6 72.2c11.5.2 22.8 1.4 33.8 3.5L313 6.4l-12.4 70.7c11.3 2.6 22.2 6.1 32.6 10.5l33.9-62.2-27.4 65.1c10.6 4.9 20.7 10.7 30.2 17.2l45.8-51.8-40.1 55.9c9.5 7.1 18.4 15 26.5 23.6l54.2-38.9-49.7 43.9c8 9.1 15.2 18.9 21.5 29.4l58.7-24.7-55.5 30.2c6.1 10.9 11.1 22.3 15.1 34.3l59.3-10.4-57.5 16.2c3.7 12.2 6.2 24.9 7.5 37.9L512 256l-56 2.8c.3 4.6.5 9.3.5 14.1 0 8.7-.6 17.3-1.6 25.8l50.7 14.3-51.5-9.1zm-21.8-31c0-97.5-79-176.5-176.5-176.5s-176.5 79-176.5 176.5 79 176.5 176.5 176.5 176.5-79 176.5-176.5zm-24 0c0 84.3-68.3 152.6-152.6 152.6s-152.6-68.3-152.6-152.6 68.3-152.6 152.6-152.6 152.6 68.3 152.6 152.6zM195 241c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-40.7-19c0 2.1 1.3 3.8 3.6 5.1 3.5 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-19 0c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.4 6.8-9.6 10.9-9.6 12.6zm204.9 87.9c-8.4-3-8.7-6.8-8.7-15.6V182c-8.2 12.5-14.2 18.6-18 18.6 6.3 14.4 9.5 23.9 9.5 28.3v64.3c0 2.2-2.2 6.5-4.7 6.5h-18c-2.8-7.5-10.2-26.9-15.3-40.3-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3 2.6 6.7 6.4 16.5 7.9 20.2h-9.2c-3.9-10.4-9.6-25.4-11.8-31.1-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3.8 2 2.8 7.3 4.3 10.9H256c-1.5-4.1-5.6-14.6-8.4-22-2 2.5-7.2 9.2-10.7 13.7 2.5 1.6 4.3 3.6 5.2 6.3.2.6.5 1.4.6 1.7H225c-4.6-13.9-11.4-27.7-11.4-34.1 0-2.2.3-5.1 1.1-8.2-8.8 10.8-14 15.9-14 25 0 7.5 10.4 28.3 10.4 33.3 0 1.7-.5 3.3-1.4 4.9-9.6-12.7-15.5-20.7-18.8-20.7h-12l-11.2-28c-3.8-9.6-5.7-16-5.7-18.8 0-3.8.5-7.7 1.7-12.2-1 1.3-3.7 4.7-5.5 7.1-.8-2.1-3.1-7.7-4.6-11.5-2.1 2.5-7.5 9.1-11.2 13.6.9 2.3 3.3 8.1 4.9 12.2-2.5 3.3-9.1 11.8-13.6 17.7-4 5.3-5.8 13.3-2.7 21.8 2.5 6.7 2 7.9-1.7 14.1H191c5.5 0 14.3 14 15.5 22 13.2-16 15.4-19.6 16.8-21.6h107c3.9 0 7.2-1.9 9.9-5.8zm20.1-26.6V181.7c-9 12.5-15.9 18.6-20.7 18.6 7.1 14.4 10.7 23.9 10.7 28.3v66.3c0 17.5 8.6 20.4 24 20.4 8.1 0 12.5-.8 13.7-2.7-4.3-1.6-7.6-2.5-9.9-3.3-8.1-3.2-17.8-7.4-17.8-26z"], + "vaadin": [448, 512, [], "f408", "M224.5 140.7c1.5-17.6 4.9-52.7 49.8-52.7h98.6c20.7 0 32.1-7.8 32.1-21.6V54.1c0-12.2 9.3-22.1 21.5-22.1S448 41.9 448 54.1v36.5c0 42.9-21.5 62-66.8 62H280.7c-30.1 0-33 14.7-33 27.1 0 1.3-.1 2.5-.2 3.7-.7 12.3-10.9 22.2-23.4 22.2s-22.7-9.8-23.4-22.2c-.1-1.2-.2-2.4-.2-3.7 0-12.3-3-27.1-33-27.1H66.8c-45.3 0-66.8-19.1-66.8-62V54.1C0 41.9 9.4 32 21.6 32s21.5 9.9 21.5 22.1v12.3C43.1 80.2 54.5 88 75.2 88h98.6c44.8 0 48.3 35.1 49.8 52.7h.9zM224 456c11.5 0 21.4-7 25.7-16.3 1.1-1.8 97.1-169.6 98.2-171.4 11.9-19.6-3.2-44.3-27.2-44.3-13.9 0-23.3 6.4-29.8 20.3L224 362l-66.9-117.7c-6.4-13.9-15.9-20.3-29.8-20.3-24 0-39.1 24.6-27.2 44.3 1.1 1.9 97.1 169.6 98.2 171.4 4.3 9.3 14.2 16.3 25.7 16.3z"], + "viacoin": [384, 512, [], "f237", "M384 32h-64l-80.7 192h-94.5L64 32H0l48 112H0v48h68.5l13.8 32H0v48h102.8L192 480l89.2-208H384v-48h-82.3l13.8-32H384v-48h-48l48-112zM192 336l-27-64h54l-27 64z"], + "viadeo": [448, 512, [], "f2a9", "M276.2 150.5v.7C258.3 98.6 233.6 47.8 205.4 0c43.3 29.2 67 100 70.8 150.5zm32.7 121.7c7.6 18.2 11 37.5 11 57 0 77.7-57.8 141-137.8 139.4l3.8-.3c74.2-46.7 109.3-118.6 109.3-205.1 0-38.1-6.5-75.9-18.9-112 1 11.7 1 23.7 1 35.4 0 91.8-18.1 241.6-116.6 280C95 455.2 49.4 398 49.4 329.2c0-75.6 57.4-142.3 135.4-142.3 16.8 0 33.7 3.1 49.1 9.6 1.7-15.1 6.5-29.9 13.4-43.3-19.9-7.2-41.2-10.7-62.5-10.7-161.5 0-238.7 195.9-129.9 313.7 67.9 74.6 192 73.9 259.8 0 56.6-61.3 60.9-142.4 36.4-201-12.7 8-27.1 13.9-42.2 17zM418.1 11.7c-31 66.5-81.3 47.2-115.8 80.1-12.4 12-20.6 34-20.6 50.5 0 14.1 4.5 27.1 12 38.8 47.4-11 98.3-46 118.2-90.7-.7 5.5-4.8 14.4-7.2 19.2-20.3 35.7-64.6 65.6-99.7 84.9 14.8 14.4 33.7 25.8 55 25.8 79 0 110.1-134.6 58.1-208.6z"], + "viadeo-square": [448, 512, [], "f2aa", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM280.7 381.2c-42.4 46.2-120 46.6-162.4 0-68-73.6-19.8-196.1 81.2-196.1 13.3 0 26.6 2.1 39.1 6.7-4.3 8.4-7.3 17.6-8.4 27.1-9.7-4.1-20.2-6-30.7-6-48.8 0-84.6 41.7-84.6 88.9 0 43 28.5 78.7 69.5 85.9 61.5-24 72.9-117.6 72.9-175 0-7.3 0-14.8-.6-22.1-11.2-32.9-26.6-64.6-44.2-94.5 27.1 18.3 41.9 62.5 44.2 94.1v.4c7.7 22.5 11.8 46.2 11.8 70 0 54.1-21.9 99-68.3 128.2l-2.4.2c50 1 86.2-38.6 86.2-87.2 0-12.2-2.1-24.3-6.9-35.7 9.5-1.9 18.5-5.6 26.4-10.5 15.3 36.6 12.6 87.3-22.8 125.6zM309 233.7c-13.3 0-25.1-7.1-34.4-16.1 21.9-12 49.6-30.7 62.3-53 1.5-3 4.1-8.6 4.5-12-12.5 27.9-44.2 49.8-73.9 56.7-4.7-7.3-7.5-15.5-7.5-24.3 0-10.3 5.2-24.1 12.9-31.6 21.6-20.5 53-8.5 72.4-50 32.5 46.2 13.1 130.3-36.3 130.3z"], + "viber": [512, 512, [], "f409", "M444 49.9C431.3 38.2 379.9.9 265.3.4c0 0-135.1-8.1-200.9 52.3C27.8 89.3 14.9 143 13.5 209.5c-1.4 66.5-3.1 191.1 117 224.9h.1l-.1 51.6s-.8 20.9 13 25.1c16.6 5.2 26.4-10.7 42.3-27.8 8.7-9.4 20.7-23.2 29.8-33.7 82.2 6.9 145.3-8.9 152.5-11.2 16.6-5.4 110.5-17.4 125.7-142 15.8-128.6-7.6-209.8-49.8-246.5zM457.9 287c-12.9 104-89 110.6-103 115.1-6 1.9-61.5 15.7-131.2 11.2 0 0-52 62.7-68.2 79-5.3 5.3-11.1 4.8-11-5.7 0-6.9.4-85.7.4-85.7-.1 0-.1 0 0 0-101.8-28.2-95.8-134.3-94.7-189.8 1.1-55.5 11.6-101 42.6-131.6 55.7-50.5 170.4-43 170.4-43 96.9.4 143.3 29.6 154.1 39.4 35.7 30.6 53.9 103.8 40.6 211.1zm-139-80.8c.4 8.6-12.5 9.2-12.9.6-1.1-22-11.4-32.7-32.6-33.9-8.6-.5-7.8-13.4.7-12.9 27.9 1.5 43.4 17.5 44.8 46.2zm20.3 11.3c1-42.4-25.5-75.6-75.8-79.3-8.5-.6-7.6-13.5.9-12.9 58 4.2 88.9 44.1 87.8 92.5-.1 8.6-13.1 8.2-12.9-.3zm47 13.4c.1 8.6-12.9 8.7-12.9.1-.6-81.5-54.9-125.9-120.8-126.4-8.5-.1-8.5-12.9 0-12.9 73.7.5 133 51.4 133.7 139.2zM374.9 329v.2c-10.8 19-31 40-51.8 33.3l-.2-.3c-21.1-5.9-70.8-31.5-102.2-56.5-16.2-12.8-31-27.9-42.4-42.4-10.3-12.9-20.7-28.2-30.8-46.6-21.3-38.5-26-55.7-26-55.7-6.7-20.8 14.2-41 33.3-51.8h.2c9.2-4.8 18-3.2 23.9 3.9 0 0 12.4 14.8 17.7 22.1 5 6.8 11.7 17.7 15.2 23.8 6.1 10.9 2.3 22-3.7 26.6l-12 9.6c-6.1 4.9-5.3 14-5.3 14s17.8 67.3 84.3 84.3c0 0 9.1.8 14-5.3l9.6-12c4.6-6 15.7-9.8 26.6-3.7 14.7 8.3 33.4 21.2 45.8 32.9 7 5.7 8.6 14.4 3.8 23.6z"], + "vimeo": [448, 512, [], "f40a", "M403.2 32H44.8C20.1 32 0 52.1 0 76.8v358.4C0 459.9 20.1 480 44.8 480h358.4c24.7 0 44.8-20.1 44.8-44.8V76.8c0-24.7-20.1-44.8-44.8-44.8zM377 180.8c-1.4 31.5-23.4 74.7-66 129.4-44 57.2-81.3 85.8-111.7 85.8-18.9 0-34.8-17.4-47.9-52.3-25.5-93.3-36.4-148-57.4-148-2.4 0-10.9 5.1-25.4 15.2l-15.2-19.6c37.3-32.8 72.9-69.2 95.2-71.2 25.2-2.4 40.7 14.8 46.5 51.7 20.7 131.2 29.9 151 67.6 91.6 13.5-21.4 20.8-37.7 21.8-48.9 3.5-33.2-25.9-30.9-45.8-22.4 15.9-52.1 46.3-77.4 91.2-76 33.3.9 49 22.5 47.1 64.7z"], + "vimeo-square": [448, 512, [], "f194", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16.2 149.6c-1.4 31.1-23.2 73.8-65.3 127.9-43.5 56.5-80.3 84.8-110.4 84.8-18.7 0-34.4-17.2-47.3-51.6-25.2-92.3-35.9-146.4-56.7-146.4-2.4 0-10.8 5-25.1 15.1L64 192c36.9-32.4 72.1-68.4 94.1-70.4 24.9-2.4 40.2 14.6 46 51.1 20.5 129.6 29.6 149.2 66.8 90.5 13.4-21.2 20.6-37.2 21.5-48.3 3.4-32.8-25.6-30.6-45.2-22.2 15.7-51.5 45.8-76.5 90.1-75.1 32.9 1 48.4 22.4 46.5 64z"], + "vimeo-v": [448, 512, [], "f27d", "M447.8 153.6c-2 43.6-32.4 103.3-91.4 179.1-60.9 79.2-112.4 118.8-154.6 118.8-26.1 0-48.2-24.1-66.3-72.3C100.3 250 85.3 174.3 56.2 174.3c-3.4 0-15.1 7.1-35.2 21.1L0 168.2c51.6-45.3 100.9-95.7 131.8-98.5 34.9-3.4 56.3 20.5 64.4 71.5 28.7 181.5 41.4 208.9 93.6 126.7 18.7-29.6 28.8-52.1 30.2-67.6 4.8-45.9-35.8-42.8-63.3-31 22-72.1 64.1-107.1 126.2-105.1 45.8 1.2 67.5 31.1 64.9 89.4z"], + "vine": [384, 512, [], "f1ca", "M384 254.7v52.1c-18.4 4.2-36.9 6.1-52.1 6.1-36.9 77.4-103 143.8-125.1 156.2-14 7.9-27.1 8.4-42.7-.8C137 452 34.2 367.7 0 102.7h74.5C93.2 261.8 139 343.4 189.3 404.5c27.9-27.9 54.8-65.1 75.6-106.9-49.8-25.3-80.1-80.9-80.1-145.6 0-65.6 37.7-115.1 102.2-115.1 114.9 0 106.2 127.9 81.6 181.5 0 0-46.4 9.2-63.5-20.5 3.4-11.3 8.2-30.8 8.2-48.5 0-31.3-11.3-46.6-28.4-46.6-18.2 0-30.8 17.1-30.8 50 .1 79.2 59.4 118.7 129.9 101.9z"], + "vk": [576, 512, [], "f189", "M545 117.7c3.7-12.5 0-21.7-17.8-21.7h-58.9c-15 0-21.9 7.9-25.6 16.7 0 0-30 73.1-72.4 120.5-13.7 13.7-20 18.1-27.5 18.1-3.7 0-9.4-4.4-9.4-16.9V117.7c0-15-4.2-21.7-16.6-21.7h-92.6c-9.4 0-15 7-15 13.5 0 14.2 21.2 17.5 23.4 57.5v86.8c0 19-3.4 22.5-10.9 22.5-20 0-68.6-73.4-97.4-157.4-5.8-16.3-11.5-22.9-26.6-22.9H38.8c-16.8 0-20.2 7.9-20.2 16.7 0 15.6 20 93.1 93.1 195.5C160.4 378.1 229 416 291.4 416c37.5 0 42.1-8.4 42.1-22.9 0-66.8-3.4-73.1 15.4-73.1 8.7 0 23.7 4.4 58.7 38.1 40 40 46.6 57.9 69 57.9h58.9c16.8 0 25.3-8.4 20.4-25-11.2-34.9-86.9-106.7-90.3-111.5-8.7-11.2-6.2-16.2 0-26.2.1-.1 72-101.3 79.4-135.6z"], + "vnv": [640, 512, [], "f40b", "M104.9 352c-34.1 0-46.4-30.4-46.4-30.4L2.6 210.1S-7.8 192 13 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.7-74.5c5.6-9.5 8.4-18.1 18.8-18.1h32.8c20.8 0 10.4 18.1 10.4 18.1l-55.8 111.5S174.2 352 140 352h-35.1zm395 0c-34.1 0-46.4-30.4-46.4-30.4l-55.9-111.5S387.2 192 408 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.8-74.5c5.6-9.5 8.4-18.1 18.8-18.1H627c20.8 0 10.4 18.1 10.4 18.1l-55.9 111.5S569.3 352 535.1 352h-35.2zM337.6 192c34.1 0 46.4 30.4 46.4 30.4l55.9 111.5s10.4 18.1-10.4 18.1h-32.8c-10.4 0-13.2-8.7-18.8-18.1l-36.7-74.5s-5.2-13.1-21.1-13.1c-15.9 0-21.1 13.1-21.1 13.1l-36.7 74.5c-5.6 9.4-8.4 18.1-18.8 18.1h-32.9c-20.8 0-10.4-18.1-10.4-18.1l55.9-111.5s12.2-30.4 46.4-30.4h35.1z"], + "vuejs": [448, 512, [], "f41f", "M356.9 64.3H280l-56 88.6-48-88.6H0L224 448 448 64.3h-91.1zm-301.2 32h53.8L224 294.5 338.4 96.3h53.8L224 384.5 55.7 96.3z"], + "weebly": [512, 512, [], "f5cc", "M425.09 65.83c-39.88 0-73.28 25.73-83.66 64.33-18.16-58.06-65.5-64.33-84.95-64.33-19.78 0-66.8 6.28-85.28 64.33-10.38-38.6-43.45-64.33-83.66-64.33C38.59 65.83 0 99.72 0 143.03c0 28.96 4.18 33.27 77.17 233.48 22.37 60.57 67.77 69.35 92.74 69.35 39.23 0 70.04-19.46 85.93-53.98 15.89 34.83 46.69 54.29 85.93 54.29 24.97 0 70.36-9.1 92.74-69.67 76.55-208.65 77.5-205.58 77.5-227.2.63-48.32-36.01-83.47-86.92-83.47zm26.34 114.81l-65.57 176.44c-7.92 21.49-21.22 37.22-46.24 37.22-23.44 0-37.38-12.41-44.03-33.9l-39.28-117.42h-.95L216.08 360.4c-6.96 21.5-20.9 33.6-44.02 33.6-25.02 0-38.33-15.74-46.24-37.22L60.88 181.55c-5.38-14.83-7.92-23.91-7.92-34.5 0-16.34 15.84-29.36 38.33-29.36 18.69 0 31.99 11.8 36.11 29.05l44.03 139.82h.95l44.66-136.79c6.02-19.67 16.47-32.08 38.96-32.08s32.94 12.11 38.96 32.08l44.66 136.79h.95l44.03-139.82c4.12-17.25 17.42-29.05 36.11-29.05 22.17 0 38.33 13.32 38.33 35.71-.32 7.87-4.12 16.04-7.61 27.24z"], + "weibo": [512, 512, [], "f18a", "M407 177.6c7.6-24-13.4-46.8-37.4-41.7-22 4.8-28.8-28.1-7.1-32.8 50.1-10.9 92.3 37.1 76.5 84.8-6.8 21.2-38.8 10.8-32-10.3zM214.8 446.7C108.5 446.7 0 395.3 0 310.4c0-44.3 28-95.4 76.3-143.7C176 67 279.5 65.8 249.9 161c-4 13.1 12.3 5.7 12.3 6 79.5-33.6 140.5-16.8 114 51.4-3.7 9.4 1.1 10.9 8.3 13.1 135.7 42.3 34.8 215.2-169.7 215.2zm143.7-146.3c-5.4-55.7-78.5-94-163.4-85.7-84.8 8.6-148.8 60.3-143.4 116s78.5 94 163.4 85.7c84.8-8.6 148.8-60.3 143.4-116zM347.9 35.1c-25.9 5.6-16.8 43.7 8.3 38.3 72.3-15.2 134.8 52.8 111.7 124-7.4 24.2 29.1 37 37.4 12 31.9-99.8-55.1-195.9-157.4-174.3zm-78.5 311c-17.1 38.8-66.8 60-109.1 46.3-40.8-13.1-58-53.4-40.3-89.7 17.7-35.4 63.1-55.4 103.4-45.1 42 10.8 63.1 50.2 46 88.5zm-86.3-30c-12.9-5.4-30 .3-38 12.9-8.3 12.9-4.3 28 8.6 34 13.1 6 30.8.3 39.1-12.9 8-13.1 3.7-28.3-9.7-34zm32.6-13.4c-5.1-1.7-11.4.6-14.3 5.4-2.9 5.1-1.4 10.6 3.7 12.9 5.1 2 11.7-.3 14.6-5.4 2.8-5.2 1.1-10.9-4-12.9z"], + "weixin": [576, 512, [], "f1d7", "M385.2 167.6c6.4 0 12.6.3 18.8 1.1C387.4 90.3 303.3 32 207.7 32 100.5 32 13 104.8 13 197.4c0 53.4 29.3 97.5 77.9 131.6l-19.3 58.6 68-34.1c24.4 4.8 43.8 9.7 68.2 9.7 6.2 0 12.1-.3 18.3-.8-4-12.9-6.2-26.6-6.2-40.8-.1-84.9 72.9-154 165.3-154zm-104.5-52.9c14.5 0 24.2 9.7 24.2 24.4 0 14.5-9.7 24.2-24.2 24.2-14.8 0-29.3-9.7-29.3-24.2.1-14.7 14.6-24.4 29.3-24.4zm-136.4 48.6c-14.5 0-29.3-9.7-29.3-24.2 0-14.8 14.8-24.4 29.3-24.4 14.8 0 24.4 9.7 24.4 24.4 0 14.6-9.6 24.2-24.4 24.2zM563 319.4c0-77.9-77.9-141.3-165.4-141.3-92.7 0-165.4 63.4-165.4 141.3S305 460.7 397.6 460.7c19.3 0 38.9-5.1 58.6-9.9l53.4 29.3-14.8-48.6C534 402.1 563 363.2 563 319.4zm-219.1-24.5c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.8 0 24.4 9.7 24.4 19.3 0 10-9.7 19.6-24.4 19.6zm107.1 0c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.5 0 24.4 9.7 24.4 19.3.1 10-9.9 19.6-24.4 19.6z"], + "whatsapp": [448, 512, [], "f232", "M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"], + "whatsapp-square": [448, 512, [], "f40c", "M224 122.8c-72.7 0-131.8 59.1-131.9 131.8 0 24.9 7 49.2 20.2 70.1l3.1 5-13.3 48.6 49.9-13.1 4.8 2.9c20.2 12 43.4 18.4 67.1 18.4h.1c72.6 0 133.3-59.1 133.3-131.8 0-35.2-15.2-68.3-40.1-93.2-25-25-58-38.7-93.2-38.7zm77.5 188.4c-3.3 9.3-19.1 17.7-26.7 18.8-12.6 1.9-22.4.9-47.5-9.9-39.7-17.2-65.7-57.2-67.7-59.8-2-2.6-16.2-21.5-16.2-41s10.2-29.1 13.9-33.1c3.6-4 7.9-5 10.6-5 2.6 0 5.3 0 7.6.1 2.4.1 5.7-.9 8.9 6.8 3.3 7.9 11.2 27.4 12.2 29.4s1.7 4.3.3 6.9c-7.6 15.2-15.7 14.6-11.6 21.6 15.3 26.3 30.6 35.4 53.9 47.1 4 2 6.3 1.7 8.6-1 2.3-2.6 9.9-11.6 12.5-15.5 2.6-4 5.3-3.3 8.9-2 3.6 1.3 23.1 10.9 27.1 12.9s6.6 3 7.6 4.6c.9 1.9.9 9.9-2.4 19.1zM400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM223.9 413.2c-26.6 0-52.7-6.7-75.8-19.3L64 416l22.5-82.2c-13.9-24-21.2-51.3-21.2-79.3C65.4 167.1 136.5 96 223.9 96c42.4 0 82.2 16.5 112.2 46.5 29.9 30 47.9 69.8 47.9 112.2 0 87.4-72.7 158.5-160.1 158.5z"], + "whmcs": [448, 512, [], "f40d", "M448 161v-21.3l-28.5-8.8-2.2-10.4 20.1-20.7L427 80.4l-29 7.5-7.2-7.5 7.5-28.2-19.1-11.6-21.3 21-10.7-3.2-7-26.4h-22.6l-6.2 26.4-12.1 3.2-19.7-21-19.4 11 8.1 27.7-8.1 8.4-28.5-7.5-11 19.1 20.7 21-2.9 10.4-28.5 7.8-.3 21.7 28.8 7.5 2.4 12.1-20.1 19.9 10.4 18.5 29.6-7.5 7.2 8.6-8.1 26.9 19.9 11.6 19.4-20.4 11.6 2.9 6.7 28.5 22.6.3 6.7-28.8 11.6-3.5 20.7 21.6 20.4-12.1-8.8-28 7.8-8.1 28.8 8.8 10.3-20.1-20.9-18.8 2.2-12.1 29.1-7zm-119.2 45.2c-31.3 0-56.8-25.4-56.8-56.8s25.4-56.8 56.8-56.8 56.8 25.4 56.8 56.8c0 31.5-25.4 56.8-56.8 56.8zm72.3 16.4l46.9 14.5V277l-55.1 13.4-4.1 22.7 38.9 35.3-19.2 37.9-54-16.7-14.6 15.2 16.7 52.5-38.3 22.7-38.9-40.5-21.7 6.6-12.6 54-42.4-.5-12.6-53.6-21.7-5.6-36.4 38.4-37.4-21.7 15.2-50.5-13.7-16.1-55.5 14.1-19.7-34.8 37.9-37.4-4.8-22.8-54-14.1.5-40.9L54 219.9l5.7-19.7-38.9-39.4L41.5 125l53.6 14.1 15.2-15.7-15.2-52 36.4-20.7 36.8 39.4L191 84l11.6-52H245l11.6 45.9L234 72l-6.3-1.7-3.3 5.7-11 19.1-3.3 5.6 4.6 4.6 17.2 17.4-.3 1-23.8 6.5-6.2 1.7-.1 6.4-.2 12.9C153.8 161.6 118 204 118 254.7c0 58.3 47.3 105.7 105.7 105.7 50.5 0 92.7-35.4 103.2-82.8l13.2.2 6.9.1 1.6-6.7 5.6-24 1.9-.6 17.1 17.8 4.7 4.9 5.8-3.4 20.4-12.1 5.8-3.5-2-6.5-6.8-21.2z"], + "wikipedia-w": [640, 512, [], "f266", "M640 51.2l-.3 12.2c-28.1.8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3.3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4.2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5.3v13.1c-19.4.6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4.3-3.6 0-10.3.3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5.8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1.2.5z"], + "windows": [448, 512, [], "f17a", "M0 93.7l183.6-25.3v177.4H0V93.7zm0 324.6l183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z"], + "wix": [640, 512, [], "f5cf", "M393.38 131.69c0 13.03 2.08 32.69-28.68 43.83-9.52 3.45-15.95 9.66-15.95 9.66 0-31 4.72-42.22 17.4-48.86 9.75-5.11 27.23-4.63 27.23-4.63zm-115.8 35.54l-34.24 132.66-28.48-108.57c-7.69-31.99-20.81-48.53-48.43-48.53-27.37 0-40.66 16.18-48.43 48.53L89.52 299.89 55.28 167.23C49.73 140.51 23.86 128.96 0 131.96l65.57 247.93s21.63 1.56 32.46-3.96c14.22-7.25 20.98-12.84 29.59-46.57 7.67-30.07 29.11-118.41 31.12-124.7 4.76-14.94 11.09-13.81 15.4 0 1.97 6.3 23.45 94.63 31.12 124.7 8.6 33.73 15.37 39.32 29.59 46.57 10.82 5.52 32.46 3.96 32.46 3.96l65.57-247.93c-24.42-3.07-49.82 8.93-55.3 35.27zm115.78 5.21s-4.1 6.34-13.46 11.57c-6.01 3.36-11.78 5.64-17.97 8.61-15.14 7.26-13.18 13.95-13.18 35.2v152.07s16.55 2.09 27.37-3.43c13.93-7.1 17.13-13.95 17.26-44.78V181.41l-.02.01v-8.98zm163.44 84.08L640 132.78s-35.11-5.98-52.5 9.85c-13.3 12.1-24.41 29.55-54.18 72.47-.47.73-6.25 10.54-13.07 0-29.29-42.23-40.8-60.29-54.18-72.47-17.39-15.83-52.5-9.85-52.5-9.85l83.2 123.74-82.97 123.36s36.57 4.62 53.95-11.21c11.49-10.46 17.58-20.37 52.51-70.72 6.81-10.52 12.57-.77 13.07 0 29.4 42.38 39.23 58.06 53.14 70.72 17.39 15.83 53.32 11.21 53.32 11.21L556.8 256.52z"], + "wolf-pack-battalion": [456, 512, [], "f514", "M239.73 471.53l10.56 15.84 5.28-12.32 5.28 7.04V512c21.06-7.92 21.11-66.86 25.51-97.21 4.62-31.89-.88-92.81 81.37-149.11-8.88-23.61-12-49.43-2.64-80.05 27.87 3.34 53.94 10.58 63.34 54.1l-30.35 8.36c11.15 23.04 17.01 46.76 13.2 72.14L384 313.18l-6.16 33.43-18.47-7.04-8.8 33.43-19.35-7.04 26.39 21.11 8.8-28.15 24.63 5.28 7.04-35.63 26.39 14.52c.25-20.02 6.97-58.06-8.8-84.45l26.39 5.28c3.99-22.07-2.38-39.21-7.92-56.74l22.43 9.68c-.44-25.07-29.94-56.79-61.58-58.5-20.22-1.09-56.74-25.17-54.1-51.9 1.96-19.87 17.45-42.62 43.11-49.7-43.99 36.51-9.68 67.3 5.28 73.46 4.4-11.44 17.54-69.08 0-130.2-40.47 22.87-89.73 65.1-93.25 147.79l-58.06 38.71-3.52 93.25 107.33-59.82 7.04 7.04-17.59 3.52-43.99 38.71-15.84-5.28-28.15 49.26-3.52 119.64 21.11 15.84-32.55 15.84-32.55-15.84 21.11-15.84-3.52-119.64-28.15-49.26-15.84 5.28-43.99-38.71-17.59-3.52 7.04-7.04 107.33 59.82-3.52-93.25-58.06-38.71C157.03 65.1 107.77 22.87 67.3 0c-17.54 61.12-4.4 118.76 0 130.2 14.96-6.16 49.26-36.95 5.28-73.46 25.66 7.08 41.15 29.83 43.11 49.7 2.63 26.74-33.88 50.81-54.1 51.9C29.94 160.06.44 191.78 0 216.85l22.43-9.68c-5.54 17.53-11.91 34.67-7.92 56.74l26.39-5.28c-15.76 26.39-9.05 64.43-8.8 84.45l26.39-14.52 7.04 35.63 24.63-5.28 8.8 28.15 26.39-21.11-19.34 7.05-8.8-33.43-18.47 7.04-6.16-33.43-27.27 7.04c-3.82-25.38 2.05-49.1 13.2-72.14l-30.35-8.36c9.4-43.52 35.47-50.77 63.34-54.1 9.36 30.62 6.24 56.45-2.64 80.05 82.25 56.3 76.75 117.23 81.37 149.11 4.4 30.35 4.45 89.29 25.51 97.21v-29.91l5.28-7.04 5.28 12.32 10.56-15.84 11.44 21.11 11.43-21.1zm79.17-95.01l-15.84-10.56c7.47-4.36 13.76-8.42 19.35-12.32-.6 7.26-.27 13.88-3.51 22.88zm28.15-49.26c-.4 10.94-.9 21.66-1.76 31.67-7.85-1.86-15.57-3.8-21.11-7.04 8.24-7.9 15.55-16.27 22.87-24.63zm24.63 5.28c-.02-13.43-2.05-24.21-5.28-33.43-5.38 9.09-11.23 18.18-18.47 27.27l23.75 6.16zm3.52-80.94c19.44 12.81 27.8 33.66 29.91 56.3-12.32-4.53-24.63-9.31-36.95-10.56 5.06-11.99 6.65-28.14 7.04-45.74zm-1.76-45.74c.81 14.3 1.84 28.82 1.76 42.23 19.22-8.11 29.78-9.72 43.99-14.08-10.6-18.95-27.22-25.52-45.75-28.15zM137.68 376.52l15.84-10.56c-7.47-4.36-13.76-8.42-19.35-12.32.6 7.26.27 13.88 3.51 22.88zm-28.15-49.26c.4 10.94.9 21.66 1.76 31.67 7.85-1.86 15.57-3.8 21.11-7.04-8.24-7.9-15.55-16.27-22.87-24.63zm-24.64 5.28c.02-13.43 2.05-24.21 5.28-33.43 5.38 9.09 11.23 18.18 18.47 27.27l-23.75 6.16zm-3.52-80.94c-19.44 12.81-27.8 33.66-29.91 56.3 12.32-4.53 24.63-9.31 36.95-10.56-5.05-11.99-6.65-28.14-7.04-45.74zm1.76-45.74c-.81 14.3-1.84 28.82-1.76 42.23-19.22-8.11-29.78-9.72-43.99-14.08 10.61-18.95 27.22-25.52 45.75-28.15z"], + "wordpress": [512, 512, [], "f19a", "M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z"], + "wordpress-simple": [512, 512, [], "f411", "M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8zM33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256zm223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6zm30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3-80.7-239.6zm81.4 297.2l68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7z"], + "wpbeginner": [512, 512, [], "f297", "M462.799 322.374C519.01 386.682 466.961 480 370.944 480c-39.602 0-78.824-17.687-100.142-50.04-6.887.356-22.702.356-29.59 0C219.848 462.381 180.588 480 141.069 480c-95.49 0-148.348-92.996-91.855-157.626C-29.925 190.523 80.479 32 256.006 32c175.632 0 285.87 158.626 206.793 290.374zm-339.647-82.972h41.529v-58.075h-41.529v58.075zm217.18 86.072v-23.839c-60.506 20.915-132.355 9.198-187.589-33.971l.246 24.897c51.101 46.367 131.746 57.875 187.343 32.913zm-150.753-86.072h166.058v-58.075H189.579v58.075z"], + "wpexplorer": [512, 512, [], "f2de", "M512 256c0 141.2-114.7 256-256 256C114.8 512 0 397.3 0 256S114.7 0 256 0s256 114.7 256 256zm-32 0c0-123.2-100.3-224-224-224C132.5 32 32 132.5 32 256s100.5 224 224 224 224-100.5 224-224zM160.9 124.6l86.9 37.1-37.1 86.9-86.9-37.1 37.1-86.9zm110 169.1l46.6 94h-14.6l-50-100-48.9 100h-14l51.1-106.9-22.3-9.4 6-14 68.6 29.1-6 14.3-16.5-7.1zm-11.8-116.3l68.6 29.4-29.4 68.3L230 246l29.1-68.6zm80.3 42.9l54.6 23.1-23.4 54.3-54.3-23.1 23.1-54.3z"], + "wpforms": [448, 512, [], "f298", "M448 75.2v361.7c0 24.3-19 43.2-43.2 43.2H43.2C19.3 480 0 461.4 0 436.8V75.2C0 51.1 18.8 32 43.2 32h361.7c24 0 43.1 18.8 43.1 43.2zm-37.3 361.6V75.2c0-3-2.6-5.8-5.8-5.8h-9.3L285.3 144 224 94.1 162.8 144 52.5 69.3h-9.3c-3.2 0-5.8 2.8-5.8 5.8v361.7c0 3 2.6 5.8 5.8 5.8h361.7c3.2.1 5.8-2.7 5.8-5.8zM150.2 186v37H76.7v-37h73.5zm0 74.4v37.3H76.7v-37.3h73.5zm11.1-147.3l54-43.7H96.8l64.5 43.7zm210 72.9v37h-196v-37h196zm0 74.4v37.3h-196v-37.3h196zm-84.6-147.3l64.5-43.7H232.8l53.9 43.7zM371.3 335v37.3h-99.4V335h99.4z"], + "xbox": [512, 512, [], "f412", "M369.9 318.2c44.3 54.3 64.7 98.8 54.4 118.7-7.9 15.1-56.7 44.6-92.6 55.9-29.6 9.3-68.4 13.3-100.4 10.2-38.2-3.7-76.9-17.4-110.1-39C93.3 445.8 87 438.3 87 423.4c0-29.9 32.9-82.3 89.2-142.1 32-33.9 76.5-73.7 81.4-72.6 9.4 2.1 84.3 75.1 112.3 109.5zM188.6 143.8c-29.7-26.9-58.1-53.9-86.4-63.4-15.2-5.1-16.3-4.8-28.7 8.1-29.2 30.4-53.5 79.7-60.3 122.4-5.4 34.2-6.1 43.8-4.2 60.5 5.6 50.5 17.3 85.4 40.5 120.9 9.5 14.6 12.1 17.3 9.3 9.9-4.2-11-.3-37.5 9.5-64 14.3-39 53.9-112.9 120.3-194.4zm311.6 63.5C483.3 127.3 432.7 77 425.6 77c-7.3 0-24.2 6.5-36 13.9-23.3 14.5-41 31.4-64.3 52.8C367.7 197 427.5 283.1 448.2 346c6.8 20.7 9.7 41.1 7.4 52.3-1.7 8.5-1.7 8.5 1.4 4.6 6.1-7.7 19.9-31.3 25.4-43.5 7.4-16.2 15-40.2 18.6-58.7 4.3-22.5 3.9-70.8-.8-93.4zM141.3 43C189 40.5 251 77.5 255.6 78.4c.7.1 10.4-4.2 21.6-9.7 63.9-31.1 94-25.8 107.4-25.2-63.9-39.3-152.7-50-233.9-11.7-23.4 11.1-24 11.9-9.4 11.2z"], + "xing": [384, 512, [], "f168", "M162.7 210c-1.8 3.3-25.2 44.4-70.1 123.5-4.9 8.3-10.8 12.5-17.7 12.5H9.8c-7.7 0-12.1-7.5-8.5-14.4l69-121.3c.2 0 .2-.1 0-.3l-43.9-75.6c-4.3-7.8.3-14.1 8.5-14.1H100c7.3 0 13.3 4.1 18 12.2l44.7 77.5zM382.6 46.1l-144 253v.3L330.2 466c3.9 7.1.2 14.1-8.5 14.1h-65.2c-7.6 0-13.6-4-18-12.2l-92.4-168.5c3.3-5.8 51.5-90.8 144.8-255.2 4.6-8.1 10.4-12.2 17.5-12.2h65.7c8 0 12.3 6.7 8.5 14.1z"], + "xing-square": [448, 512, [], "f169", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM140.4 320.2H93.8c-5.5 0-8.7-5.3-6-10.3l49.3-86.7c.1 0 .1-.1 0-.2l-31.4-54c-3-5.6.2-10.1 6-10.1h46.6c5.2 0 9.5 2.9 12.9 8.7l31.9 55.3c-1.3 2.3-18 31.7-50.1 88.2-3.5 6.2-7.7 9.1-12.6 9.1zm219.7-214.1L257.3 286.8v.2l65.5 119c2.8 5.1.1 10.1-6 10.1h-46.6c-5.5 0-9.7-2.9-12.9-8.7l-66-120.3c2.3-4.1 36.8-64.9 103.4-182.3 3.3-5.8 7.4-8.7 12.5-8.7h46.9c5.7-.1 8.8 4.7 6 10z"], + "y-combinator": [448, 512, [], "f23b", "M448 32v448H0V32h448zM236 287.5L313.5 142h-32.7L235 233c-4.7 9.3-9 18.3-12.8 26.8L210 233l-45.2-91h-35l76.7 143.8v94.5H236v-92.8z"], + "yahoo": [448, 512, [], "f19e", "M252 292l4 220c-12.7-2.2-23.5-3.9-32.3-3.9-8.4 0-19.2 1.7-32.3 3.9l4-220C140.4 197.2 85 95.2 21.4 0c11.9 3.1 23 3.9 33.2 3.9 9 0 20.4-.8 34.1-3.9 40.9 72.2 82.1 138.7 135 225.5C261 163.9 314.8 81.4 358.6 0c11.1 2.9 22 3.9 32.9 3.9 11.5 0 23.2-1 35-3.9C392.1 47.9 294.9 216.9 252 292z"], + "yandex": [256, 512, [], "f413", "M153.1 315.8L65.7 512H2l96-209.8c-45.1-22.9-75.2-64.4-75.2-141.1C22.7 53.7 90.8 0 171.7 0H254v512h-55.1V315.8h-45.8zm45.8-269.3h-29.4c-44.4 0-87.4 29.4-87.4 114.6 0 82.3 39.4 108.8 87.4 108.8h29.4V46.5z"], + "yandex-international": [320, 512, [], "f414", "M129.5 512V345.9L18.5 48h55.8l81.8 229.7L250.2 0h51.3L180.8 347.8V512h-51.3z"], + "yelp": [384, 512, [], "f1e9", "M136.9 328c-1 .3-109.2 35.7-115.8 35.7-15.2-.9-18.5-16.2-19.9-31.2-1.5-14.2-1.4-29.8.3-46.8 1.9-18.8 5.5-45.1 24.2-44 4.8 0 67.1 25.9 112.7 44.4 17.1 6.8 18.6 35.8-1.5 41.9zm57.9-113.9c1.8 38.2-25.5 48.5-47.2 14.3L41.3 60.4c-1.5-6.6.3-12.4 5.3-17.4C62.2 26.5 146 3.2 168.1 8.9c7.5 1.9 12.1 6.1 13.8 12.6 1.3 8.3 11.5 167.4 12.9 192.6zm-1.4 164.8c0 4.6.2 116.4-1.7 121.5-2.3 6-7 9.7-14.3 11.2-10.1 1.7-27.1-1.9-51-10.7-22-8.1-56.7-21.5-49.3-42.5 2.8-6.9 51.4-62.8 77.3-93.6 12-15.2 39.8-5.5 39 14.1zm180.2-117.8c-5.6 3.7-110.8 28.2-118.1 30.6l.3-.6c-18.1 4.7-35.4-18.5-23.3-34.6 3.7-3.7 65.9-92.4 72.8-97 5.2-3.6 11.3-3.8 18.3-.6 18.4 8.8 55.1 63.1 57.4 84.6-.1 2.9 1.2 11.7-7.4 17.6zm10.1 130.7c-2.7 20.6-44.5 73.4-63.8 81-6.9 2.6-12.9 2-17.7-2-5-3.5-61.8-97.1-64.9-102.3-10.9-16.2 6.8-39.8 25.6-33.2 0 0 110.5 35.7 114.7 39.4 5.2 4.1 7.2 9.8 6.1 17.1z"], + "yoast": [448, 512, [], "f2b1", "M91.3 76h186l-7 18.9h-179c-39.7 0-71.9 31.6-71.9 70.3v205.4c0 35.4 24.9 70.3 84 70.3V460H91.3C41.2 460 0 419.8 0 370.5V165.2C0 115.9 40.7 76 91.3 76zm229.1-56h66.5C243.1 398.1 241.2 418.9 202.2 459.3c-20.8 21.6-49.3 31.7-78.3 32.7v-51.1c49.2-7.7 64.6-49.9 64.6-75.3 0-20.1.6-12.6-82.1-223.2h61.4L218.2 299 320.4 20zM448 161.5V460H234c6.6-9.6 10.7-16.3 12.1-19.4h182.5V161.5c0-32.5-17.1-51.9-48.2-62.9l6.7-17.6c41.7 13.6 60.9 43.1 60.9 80.5z"], + "youtube": [576, 512, [], "f167", "M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"], + "youtube-square": [448, 512, [], "f431", "M186.8 202.1l95.2 54.1-95.2 54.1V202.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-42 176.3s0-59.6-7.6-88.2c-4.2-15.8-16.5-28.2-32.2-32.4C337.9 128 224 128 224 128s-113.9 0-142.2 7.7c-15.7 4.2-28 16.6-32.2 32.4-7.6 28.5-7.6 88.2-7.6 88.2s0 59.6 7.6 88.2c4.2 15.8 16.5 27.7 32.2 31.9C110.1 384 224 384 224 384s113.9 0 142.2-7.7c15.7-4.2 28-16.1 32.2-31.9 7.6-28.5 7.6-88.1 7.6-88.1z"] +}; + +bunker(function () { + define('fab', icons); +}); + +}()); +(function () { +'use strict'; + +var _WINDOW = {}; +try { + if (typeof window !== 'undefined') _WINDOW = window; + +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; + + + + + +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; + + + + + + + + + +var PRODUCTION = function () { + try { + return undefined === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + + + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var icons = { + "address-book": [448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-68 304H48V48h320v416zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"], + "address-card": [576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H48V80h480v352zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2zM360 320h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8z"], + "angry": [496, 512, [], "f556", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-144c-33.6 0-65.2 14.8-86.8 40.6-8.5 10.2-7.1 25.3 3.1 33.8s25.3 7.2 33.8-3c24.8-29.7 75-29.7 99.8 0 8.1 9.7 23.2 11.9 33.8 3 10.2-8.5 11.5-23.6 3.1-33.8-21.6-25.8-53.2-40.6-86.8-40.6zm-48-72c10.3 0 19.9-6.7 23-17.1 3.8-12.7-3.4-26.1-16.1-29.9l-80-24c-12.8-3.9-26.1 3.4-29.9 16.1-3.8 12.7 3.4 26.1 16.1 29.9l28.2 8.5c-3.1 4.9-5.3 10.4-5.3 16.6 0 17.7 14.3 32 32 32s32-14.4 32-32.1zm199-54.9c-3.8-12.7-17.1-19.9-29.9-16.1l-80 24c-12.7 3.8-19.9 17.2-16.1 29.9 3.1 10.4 12.7 17.1 23 17.1 0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.2-2.2-11.7-5.3-16.6l28.2-8.5c12.7-3.7 19.9-17.1 16.1-29.8z"], + "arrow-alt-circle-down": [512, 512, [], "f358", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm-32-316v116h-67c-10.7 0-16 12.9-8.5 20.5l99 99c4.7 4.7 12.3 4.7 17 0l99-99c7.6-7.6 2.2-20.5-8.5-20.5h-67V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12z"], + "arrow-alt-circle-left": [512, 512, [], "f359", "M8 256c0 137 111 248 248 248s248-111 248-248S393 8 256 8 8 119 8 256zm448 0c0 110.5-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56s200 89.5 200 200zm-72-20v40c0 6.6-5.4 12-12 12H256v67c0 10.7-12.9 16-20.5 8.5l-99-99c-4.7-4.7-4.7-12.3 0-17l99-99c7.6-7.6 20.5-2.2 20.5 8.5v67h116c6.6 0 12 5.4 12 12z"], + "arrow-alt-circle-right": [512, 512, [], "f35a", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z"], + "arrow-alt-circle-up": [512, 512, [], "f35b", "M256 504c137 0 248-111 248-248S393 8 256 8 8 119 8 256s111 248 248 248zm0-448c110.5 0 200 89.5 200 200s-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56zm20 328h-40c-6.6 0-12-5.4-12-12V256h-67c-10.7 0-16-12.9-8.5-20.5l99-99c4.7-4.7 12.3-4.7 17 0l99 99c7.6 7.6 2.2 20.5-8.5 20.5h-67v116c0 6.6-5.4 12-12 12z"], + "bell": [448, 512, [], "f0f3", "M425.403 330.939c-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.843 31.843 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095C118.101 62.783 57.143 131.831 57.143 214.857c0 81.933-17.551 99.292-34.543 116.078C-25.496 378.441 9.726 448 66.919 448H160c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h93.08c57.19 0 92.415-69.583 44.323-117.061zM224 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm157.092-72H66.9c-16.762 0-25.135-20.39-13.334-32.191 28.585-28.585 51.577-55.724 51.577-152.952C105.143 149.319 158.462 96 224 96s118.857 53.319 118.857 118.857c0 97.65 23.221 124.574 51.568 152.952C406.278 379.661 397.783 400 381.092 400z"], + "bell-slash": [576, 512, [], "f1f6", "M130.9 400c-16.762 0-25.135-20.39-13.334-32.191 25.226-25.226 46.094-49.338 50.649-121.48l-46.777-41.274a168.48 168.48 0 0 0-.296 9.802c0 81.933-17.551 99.292-34.543 116.078C38.504 378.441 73.726 448 130.919 448H224c0 35.346 28.654 64 64 64s64-28.654 64-64h44.777l-54.4-48H130.9zM288 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm283.867.553l-67.931-59.571c13.104-24.118 11.524-56.318-14.532-82.042-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.848 31.848 0 0 0 320 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095c-41.471 6.618-77.891 28.571-103.249 59.841L36.459 3.037c-5.058-4.436-12.777-3.956-17.24 1.071L3.056 22.313C-1.407 27.34-.925 35.012 4.134 39.447l535.408 469.516c5.058 4.436 12.777 3.956 17.24-1.071l16.163-18.205c4.462-5.027 3.98-12.699-1.078-17.134zM288 96c65.538 0 118.857 53.319 118.857 118.857 0 97.65 23.221 124.574 51.568 152.952 2.908 2.908 4.573 6.328 5.209 9.832L194.482 141.612C216.258 113.867 250.075 96 288 96z"], + "bookmark": [384, 512, [], "f02e", "M336 0H48C21.49 0 0 21.49 0 48v464l192-112 192 112V48c0-26.51-21.49-48-48-48zm0 428.43l-144-84-144 84V54a6 6 0 0 1 6-6h276c3.314 0 6 2.683 6 5.996V428.43z"], + "building": [448, 512, [], "f1ad", "M128 148v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12zm140 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-128 96h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm128 0h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-76 84v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm76 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm180 124v36H0v-36c0-6.6 5.4-12 12-12h19.5V24c0-13.3 10.7-24 24-24h337c13.3 0 24 10.7 24 24v440H436c6.6 0 12 5.4 12 12zM79.5 463H192v-67c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v67h112.5V49L80 48l-.5 415z"], + "calendar": [448, 512, [], "f133", "M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z"], + "calendar-alt": [448, 512, [], "f073", "M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "calendar-check": [448, 512, [], "f274", "M400 64h-48V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H160V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V160h352v298a6 6 0 0 1-6 6zm-52.849-200.65L198.842 404.519c-4.705 4.667-12.303 4.637-16.971-.068l-75.091-75.699c-4.667-4.705-4.637-12.303.068-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l44.104 44.461 111.072-110.181c4.705-4.667 12.303-4.637 16.971.068l22.536 22.718c4.667 4.705 4.636 12.303-.069 16.97z"], + "calendar-minus": [448, 512, [], "f272", "M124 328c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H124zm324-216v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "calendar-plus": [448, 512, [], "f271", "M336 292v24c0 6.6-5.4 12-12 12h-76v76c0 6.6-5.4 12-12 12h-24c-6.6 0-12-5.4-12-12v-76h-76c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h76v-76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v76h76c6.6 0 12 5.4 12 12zm112-180v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "calendar-times": [448, 512, [], "f273", "M311.7 374.7l-17 17c-4.7 4.7-12.3 4.7-17 0L224 337.9l-53.7 53.7c-4.7 4.7-12.3 4.7-17 0l-17-17c-4.7-4.7-4.7-12.3 0-17l53.7-53.7-53.7-53.7c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0l53.7 53.7 53.7-53.7c4.7-4.7 12.3-4.7 17 0l17 17c4.7 4.7 4.7 12.3 0 17L257.9 304l53.7 53.7c4.8 4.7 4.8 12.3.1 17zM448 112v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "caret-square-down": [448, 512, [], "f150", "M125.1 208h197.8c10.7 0 16.1 13 8.5 20.5l-98.9 98.3c-4.7 4.7-12.2 4.7-16.9 0l-98.9-98.3c-7.7-7.5-2.3-20.5 8.4-20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "caret-square-left": [448, 512, [], "f191", "M272 157.1v197.8c0 10.7-13 16.1-20.5 8.5l-98.3-98.9c-4.7-4.7-4.7-12.2 0-16.9l98.3-98.9c7.5-7.7 20.5-2.3 20.5 8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "caret-square-right": [448, 512, [], "f152", "M176 354.9V157.1c0-10.7 13-16.1 20.5-8.5l98.3 98.9c4.7 4.7 4.7 12.2 0 16.9l-98.3 98.9c-7.5 7.7-20.5 2.3-20.5-8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "caret-square-up": [448, 512, [], "f151", "M322.9 304H125.1c-10.7 0-16.1-13-8.5-20.5l98.9-98.3c4.7-4.7 12.2-4.7 16.9 0l98.9 98.3c7.7 7.5 2.3 20.5-8.4 20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "chart-bar": [512, 512, [], "f080", "M500 400c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v324h452zm-356-60v-72c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V140c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V204c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V108c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12z"], + "check-circle": [512, 512, [], "f058", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"], + "check-square": [448, 512, [], "f14a", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm0 400H48V80h352v352zm-35.864-241.724L191.547 361.48c-4.705 4.667-12.303 4.637-16.97-.068l-90.781-91.516c-4.667-4.705-4.637-12.303.069-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l59.792 60.277 141.352-140.216c4.705-4.667 12.303-4.637 16.97.068l22.536 22.718c4.667 4.706 4.637 12.304-.068 16.971z"], + "circle": [512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z"], + "clipboard": [384, 512, [], "f328", "M336 64h-80c0-35.29-28.71-64-64-64s-64 28.71-64 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h42v36c0 6.627 5.373 12 12 12h168c6.627 0 12-5.373 12-12v-36h42a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zM192 40c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24"], + "clock": [512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"], + "clone": [512, 512, [], "f24d", "M464 0H144c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h320c26.51 0 48-21.49 48-48v-48h48c26.51 0 48-21.49 48-48V48c0-26.51-21.49-48-48-48zM362 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h42v224c0 26.51 21.49 48 48 48h224v42a6 6 0 0 1-6 6zm96-96H150a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h308a6 6 0 0 1 6 6v308a6 6 0 0 1-6 6z"], + "closed-captioning": [512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 336H54c-3.3 0-6-2.7-6-6V118c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v276c0 3.3-2.7 6-6 6zm-211.1-85.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7zm190.4 0c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.9-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 220.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7z"], + "comment": [512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"], + "comment-alt": [512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 7.1 5.8 12 12 12 2.4 0 4.9-.7 7.1-2.4L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm16 352c0 8.8-7.2 16-16 16H288l-12.8 9.6L208 428v-60H64c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h384c8.8 0 16 7.2 16 16v288z"], + "comment-dots": [512, 512, [], "f4ad", "M144 208c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"], + "comments": [576, 512, [], "f086", "M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"], + "compass": [512, 512, [], "f14e", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm91.326-312.131l-33.359 137.779a24.005 24.005 0 0 1-6.772 11.729l-102.64 97.779c-17.104 16.293-45.56.434-39.88-23.024l33.359-137.779a23.997 23.997 0 0 1 6.772-11.729l102.642-97.779c17.285-16.47 45.494-.175 39.878 23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"], + "copy": [448, 512, [], "f0c5", "M433.941 65.941l-51.882-51.882A48 48 0 0 0 348.118 0H176c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48v-48h80c26.51 0 48-21.49 48-48V99.882a48 48 0 0 0-14.059-33.941zM266 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h74v224c0 26.51 21.49 48 48 48h96v42a6 6 0 0 1-6 6zm128-96H182a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h106v88c0 13.255 10.745 24 24 24h88v202a6 6 0 0 1-6 6zm6-256h-64V48h9.632c1.591 0 3.117.632 4.243 1.757l48.368 48.368a6 6 0 0 1 1.757 4.243V112z"], + "copyright": [512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm107.351-101.064c-9.614 9.712-45.53 41.396-104.065 41.396-82.43 0-140.484-61.425-140.484-141.567 0-79.152 60.275-139.401 139.762-139.401 55.531 0 88.738 26.62 97.593 34.779a11.965 11.965 0 0 1 1.936 15.322l-18.155 28.113c-3.841 5.95-11.966 7.282-17.499 2.921-8.595-6.776-31.814-22.538-61.708-22.538-48.303 0-77.916 35.33-77.916 80.082 0 41.589 26.888 83.692 78.277 83.692 32.657 0 56.843-19.039 65.726-27.225 5.27-4.857 13.596-4.039 17.82 1.738l19.865 27.17a11.947 11.947 0 0 1-1.152 15.518z"], + "credit-card": [576, 512, [], "f09d", "M527.9 32H48.1C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48.1 48h479.8c26.6 0 48.1-21.5 48.1-48V80c0-26.5-21.5-48-48.1-48zM54.1 80h467.8c3.3 0 6 2.7 6 6v42H48.1V86c0-3.3 2.7-6 6-6zm467.8 352H54.1c-3.3 0-6-2.7-6-6V256h479.8v170c0 3.3-2.7 6-6 6zM192 332v40c0 6.6-5.4 12-12 12h-72c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12zm192 0v40c0 6.6-5.4 12-12 12H236c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12z"], + "dizzy": [496, 512, [], "f567", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-33.8-217.9c7.8-7.8 7.8-20.5 0-28.3L196.3 192l17.9-17.9c7.8-7.8 7.8-20.5 0-28.3-7.8-7.8-20.5-7.8-28.3 0L168 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.9 7.7 20.5 7.7 28.4-.2zm160-92.2c-7.8-7.8-20.5-7.8-28.3 0L328 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.8 7.8 20.5 7.8 28.3 0 7.8-7.8 7.8-20.5 0-28.3l-17.8-18 17.9-17.9c7.7-7.8 7.7-20.4 0-28.2zM248 272c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64z"], + "dot-circle": [512, 512, [], "f192", "M256 56c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m0-48C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 168c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80z"], + "edit": [576, 512, [], "f044", "M402.3 344.9l32-32c5-5 13.7-1.5 13.7 5.7V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h273.5c7.1 0 10.7 8.6 5.7 13.7l-32 32c-1.5 1.5-3.5 2.3-5.7 2.3H48v352h352V350.5c0-2.1.8-4.1 2.3-5.6zm156.6-201.8L296.3 405.7l-90.4 10c-26.2 2.9-48.5-19.2-45.6-45.6l10-90.4L432.9 17.1c22.9-22.9 59.9-22.9 82.7 0l43.2 43.2c22.9 22.9 22.9 60 .1 82.8zM460.1 174L402 115.9 216.2 301.8l-7.3 65.3 65.3-7.3L460.1 174zm64.8-79.7l-43.2-43.2c-4.1-4.1-10.8-4.1-14.8 0L436 82l58.1 58.1 30.9-30.9c4-4.2 4-10.8-.1-14.9z"], + "envelope": [512, 512, [], "f0e0", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z"], + "envelope-open": [512, 512, [], "f2b6", "M494.586 164.516c-4.697-3.883-111.723-89.95-135.251-108.657C337.231 38.191 299.437 0 256 0c-43.205 0-80.636 37.717-103.335 55.859-24.463 19.45-131.07 105.195-135.15 108.549A48.004 48.004 0 0 0 0 201.485V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V201.509a48 48 0 0 0-17.414-36.993zM464 458a6 6 0 0 1-6 6H54a6 6 0 0 1-6-6V204.347c0-1.813.816-3.526 2.226-4.665 15.87-12.814 108.793-87.554 132.364-106.293C200.755 78.88 232.398 48 256 48c23.693 0 55.857 31.369 73.41 45.389 23.573 18.741 116.503 93.493 132.366 106.316a5.99 5.99 0 0 1 2.224 4.663V458zm-31.991-187.704c4.249 5.159 3.465 12.795-1.745 16.981-28.975 23.283-59.274 47.597-70.929 56.863C336.636 362.283 299.205 400 256 400c-43.452 0-81.287-38.237-103.335-55.86-11.279-8.967-41.744-33.413-70.927-56.865-5.21-4.187-5.993-11.822-1.745-16.981l15.258-18.528c4.178-5.073 11.657-5.843 16.779-1.726 28.618 23.001 58.566 47.035 70.56 56.571C200.143 320.631 232.307 352 256 352c23.602 0 55.246-30.88 73.41-45.389 11.994-9.535 41.944-33.57 70.563-56.568 5.122-4.116 12.601-3.346 16.778 1.727l15.258 18.526z"], + "eye": [576, 512, [], "f06e", "M569.354 231.631C512.97 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-102.556 0-192.091-54.701-240-136 44.157-74.933 123.677-127.27 216.162-135.007C273.958 131.078 280 144.83 280 160c0 30.928-25.072 56-56 56s-56-25.072-56-56l.001-.042C157.794 179.043 152 200.844 152 224c0 75.111 60.889 136 136 136s136-60.889 136-136c0-31.031-10.4-59.629-27.895-82.515C451.704 164.638 498.009 205.106 528 256c-47.908 81.299-137.444 136-240 136z"], + "eye-slash": [576, 512, [], "f070", "M272.702 359.139c-80.483-9.011-136.212-86.886-116.93-167.042l116.93 167.042zM288 392c-102.556 0-192.092-54.701-240-136 21.755-36.917 52.1-68.342 88.344-91.658l-27.541-39.343C67.001 152.234 31.921 188.741 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.004 376.006 168.14 440 288 440a332.89 332.89 0 0 0 39.648-2.367l-32.021-45.744A284.16 284.16 0 0 1 288 392zm281.354-111.631c-33.232 56.394-83.421 101.742-143.554 129.492l48.116 68.74c3.801 5.429 2.48 12.912-2.949 16.712L450.23 509.83c-5.429 3.801-12.912 2.48-16.712-2.949L102.084 33.399c-3.801-5.429-2.48-12.912 2.949-16.712L125.77 2.17c5.429-3.801 12.912-2.48 16.712 2.949l55.526 79.325C226.612 76.343 256.808 72 288 72c119.86 0 224.996 63.994 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM528 256c-44.157-74.933-123.677-127.27-216.162-135.007C302.042 131.078 296 144.83 296 160c0 30.928 25.072 56 56 56s56-25.072 56-56l-.001-.042c30.632 57.277 16.739 130.26-36.928 171.719l26.695 38.135C452.626 346.551 498.308 306.386 528 256z"], + "file": [384, 512, [], "f15b", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48z"], + "file-alt": [384, 512, [], "f15c", "M288 248v28c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-28c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm-12 72H108c-6.6 0-12 5.4-12 12v28c0 6.6 5.4 12 12 12h168c6.6 0 12-5.4 12-12v-28c0-6.6-5.4-12-12-12zm108-188.1V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48C0 21.5 21.5 0 48 0h204.1C264.8 0 277 5.1 286 14.1L369.9 98c9 8.9 14.1 21.2 14.1 33.9zm-128-80V128h76.1L256 51.9zM336 464V176H232c-13.3 0-24-10.7-24-24V48H48v416h288z"], + "file-archive": [384, 512, [], "f1c6", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM256 51.882L332.118 128H256V51.882zM336 464H48V48h79.714v16h32V48H208v104c0 13.255 10.745 24 24 24h104v288zM192.27 96h-32V64h32v32zm-32 0v32h-32V96h32zm0 64v32h-32v-32h32zm32 0h-32v-32h32v32zm1.909 105.678A12 12 0 0 0 182.406 256H160.27v-32h-32v32l-19.69 97.106C101.989 385.611 126.834 416 160 416c33.052 0 57.871-30.192 51.476-62.62l-17.297-87.702zM160.27 390.073c-17.918 0-32.444-12.105-32.444-27.036 0-14.932 14.525-27.036 32.444-27.036s32.444 12.105 32.444 27.036c0 14.931-14.526 27.036-32.444 27.036zm32-166.073h-32v-32h32v32z"], + "file-audio": [384, 512, [], "f1c7", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm144-76.024c0 10.691-12.926 16.045-20.485 8.485L136 360.486h-28c-6.627 0-12-5.373-12-12v-56c0-6.627 5.373-12 12-12h28l35.515-36.947c7.56-7.56 20.485-2.206 20.485 8.485v135.952zm41.201-47.13c9.051-9.297 9.06-24.133.001-33.439-22.149-22.752 12.235-56.246 34.395-33.481 27.198 27.94 27.212 72.444.001 100.401-21.793 22.386-56.947-10.315-34.397-33.481z"], + "file-code": [384, 512, [], "f1c9", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm101.677-115.115L116.854 320l32.822-28.885a8.793 8.793 0 0 0 .605-12.624l-17.403-18.564c-3.384-3.613-8.964-3.662-12.438-.401L62.78 313.58c-3.703 3.474-3.704 9.367.001 12.84l57.659 54.055a8.738 8.738 0 0 0 6.012 2.381 8.746 8.746 0 0 0 6.427-2.782l17.403-18.563a8.795 8.795 0 0 0-.605-12.626zm84.284-127.85l-24.401-7.084a8.796 8.796 0 0 0-10.905 5.998L144.04 408.061c-1.353 4.66 1.338 9.552 5.998 10.905l24.403 7.084c4.68 1.355 9.557-1.354 10.905-5.998l54.612-188.112c1.354-4.66-1.337-9.552-5.997-10.905zm87.258 92.545l-57.658-54.055c-3.526-3.307-9.099-3.165-12.439.401l-17.403 18.563a8.795 8.795 0 0 0 .605 12.625L267.146 320l-32.822 28.885a8.793 8.793 0 0 0-.605 12.624l17.403 18.564a8.797 8.797 0 0 0 12.439.401h-.001l57.66-54.055c3.703-3.473 3.703-9.366-.001-12.839z"], + "file-excel": [384, 512, [], "f1c3", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm212-240h-28.8c-4.4 0-8.4 2.4-10.5 6.3-18 33.1-22.2 42.4-28.6 57.7-13.9-29.1-6.9-17.3-28.6-57.7-2.1-3.9-6.2-6.3-10.6-6.3H124c-9.3 0-15 10-10.4 18l46.3 78-46.3 78c-4.7 8 1.1 18 10.4 18h28.9c4.4 0 8.4-2.4 10.5-6.3 21.7-40 23-45 28.6-57.7 14.9 30.2 5.9 15.9 28.6 57.7 2.1 3.9 6.2 6.3 10.6 6.3H260c9.3 0 15-10 10.4-18L224 320c.7-1.1 30.3-50.5 46.3-78 4.7-8-1.1-18-10.3-18z"], + "file-image": [384, 512, [], "f1c5", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm32-48h224V288l-23.5-23.5c-4.7-4.7-12.3-4.7-17 0L176 352l-39.5-39.5c-4.7-4.7-12.3-4.7-17 0L80 352v64zm48-240c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z"], + "file-pdf": [384, 512, [], "f1c1", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm250.2-143.7c-12.2-12-47-8.7-64.4-6.5-17.2-10.5-28.7-25-36.8-46.3 3.9-16.1 10.1-40.6 5.4-56-4.2-26.2-37.8-23.6-42.6-5.9-4.4 16.1-.4 38.5 7 67.1-10 23.9-24.9 56-35.4 74.4-20 10.3-47 26.2-51 46.2-3.3 15.8 26 55.2 76.1-31.2 22.4-7.4 46.8-16.5 68.4-20.1 18.9 10.2 41 17 55.8 17 25.5 0 28-28.2 17.5-38.7zm-198.1 77.8c5.1-13.7 24.5-29.5 30.4-35-19 30.3-30.4 35.7-30.4 35zm81.6-190.6c7.4 0 6.7 32.1 1.8 40.8-4.4-13.9-4.3-40.8-1.8-40.8zm-24.4 136.6c9.7-16.9 18-37 24.7-54.7 8.3 15.1 18.9 27.2 30.1 35.5-20.8 4.3-38.9 13.1-54.8 19.2zm131.6-5s-5 6-37.3-7.8c35.1-2.6 40.9 5.4 37.3 7.8z"], + "file-powerpoint": [384, 512, [], "f1c4", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm72-60V236c0-6.6 5.4-12 12-12h69.2c36.7 0 62.8 27 62.8 66.3 0 74.3-68.7 66.5-95.5 66.5V404c0 6.6-5.4 12-12 12H132c-6.6 0-12-5.4-12-12zm48.5-87.4h23c7.9 0 13.9-2.4 18.1-7.2 8.5-9.8 8.4-28.5.1-37.8-4.1-4.6-9.9-7-17.4-7h-23.9v52z"], + "file-video": [384, 512, [], "f1c8", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm228.687-211.303L224 305.374V268c0-11.046-8.954-20-20-20H100c-11.046 0-20 8.954-20 20v104c0 11.046 8.954 20 20 20h104c11.046 0 20-8.954 20-20v-37.374l52.687 52.674C286.704 397.318 304 390.28 304 375.986V264.011c0-14.311-17.309-21.319-27.313-11.314z"], + "file-word": [384, 512, [], "f1c2", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm220.1-208c-5.7 0-10.6 4-11.7 9.5-20.6 97.7-20.4 95.4-21 103.5-.2-1.2-.4-2.6-.7-4.3-.8-5.1.3.2-23.6-99.5-1.3-5.4-6.1-9.2-11.7-9.2h-13.3c-5.5 0-10.3 3.8-11.7 9.1-24.4 99-24 96.2-24.8 103.7-.1-1.1-.2-2.5-.5-4.2-.7-5.2-14.1-73.3-19.1-99-1.1-5.6-6-9.7-11.8-9.7h-16.8c-7.8 0-13.5 7.3-11.7 14.8 8 32.6 26.7 109.5 33.2 136 1.3 5.4 6.1 9.1 11.7 9.1h25.2c5.5 0 10.3-3.7 11.6-9.1l17.9-71.4c1.5-6.2 2.5-12 3-17.3l2.9 17.3c.1.4 12.6 50.5 17.9 71.4 1.3 5.3 6.1 9.1 11.6 9.1h24.7c5.5 0 10.3-3.7 11.6-9.1 20.8-81.9 30.2-119 34.5-136 1.9-7.6-3.8-14.9-11.6-14.9h-15.8z"], + "flag": [512, 512, [], "f024", "M336.174 80c-49.132 0-93.305-32-161.913-32-31.301 0-58.303 6.482-80.721 15.168a48.04 48.04 0 0 0 2.142-20.727C93.067 19.575 74.167 1.594 51.201.104 23.242-1.71 0 20.431 0 48c0 17.764 9.657 33.262 24 41.562V496c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-83.443C109.869 395.28 143.259 384 199.826 384c49.132 0 93.305 32 161.913 32 58.479 0 101.972-22.617 128.548-39.981C503.846 367.161 512 352.051 512 335.855V95.937c0-34.459-35.264-57.768-66.904-44.117C409.193 67.309 371.641 80 336.174 80zM464 336c-21.783 15.412-60.824 32-102.261 32-59.945 0-102.002-32-161.913-32-43.361 0-96.379 9.403-127.826 24V128c21.784-15.412 60.824-32 102.261-32 59.945 0 102.002 32 161.913 32 43.271 0 96.32-17.366 127.826-32v240z"], + "flushed": [496, 512, [], "f579", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm96-312c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-112 24c0-44.2-35.8-80-80-80s-80 35.8-80 80 35.8 80 80 80 80-35.8 80-80zm-80 48c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm160 144H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z"], + "folder": [512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48zm-6 272H54c-3.314 0-6-2.678-6-5.992V117.992A5.993 5.993 0 0 1 54 112h134.118l64 64H458a6 6 0 0 1 6 6v212a6 6 0 0 1-6 6z"], + "folder-open": [576, 512, [], "f07c", "M527.943 224H480v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h400a48.001 48.001 0 0 0 40.704-22.56l79.942-128c19.948-31.917-3.038-73.44-40.703-73.44zM54 112h134.118l64 64H426a6 6 0 0 1 6 6v42H152a48 48 0 0 0-41.098 23.202L48 351.449V117.993A5.993 5.993 0 0 1 54 112zm394 288H72l77.234-128H528l-80 128z"], + "font-awesome-logo-full": [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"], + "frown": [496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 128c-40.2 0-78 17.7-103.8 48.6-8.5 10.2-7.1 25.3 3.1 33.8 10.2 8.4 25.3 7.1 33.8-3.1 16.6-19.9 41-31.4 66.9-31.4s50.3 11.4 66.9 31.4c8.1 9.7 23.1 11.9 33.8 3.1 10.2-8.5 11.5-23.6 3.1-33.8C326 321.7 288.2 304 248 304z"], + "frown-open": [496, 512, [], "f57a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-48-248c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 112c-35.6 0-88.8 21.3-95.8 61.2-2 11.8 9 21.5 20.5 18.1 31.2-9.6 59.4-15.3 75.3-15.3s44.1 5.7 75.3 15.3c11.4 3.5 22.5-6.3 20.5-18.1-7-39.9-60.2-61.2-95.8-61.2z"], + "futbol": [496, 512, [], "f1e3", "M483.8 179.4C449.8 74.6 352.6 8 248.1 8c-25.4 0-51.2 3.9-76.7 12.2C41.2 62.5-30.1 202.4 12.2 332.6 46.2 437.4 143.4 504 247.9 504c25.4 0 51.2-3.9 76.7-12.2 130.2-42.3 201.5-182.2 159.2-312.4zm-74.5 193.7l-52.2 6.4-43.7-60.9 24.4-75.2 71.1-22.1 38.9 36.4c-.2 30.7-7.4 61.1-21.7 89.2-4.7 9.3-10.7 17.8-16.8 26.2zm0-235.4l-10.4 53.1-70.7 22-64.2-46.5V92.5l47.4-26.2c39.2 13 73.4 38 97.9 71.4zM184.9 66.4L232 92.5v73.8l-64.2 46.5-70.6-22-10.1-52.5c24.3-33.4 57.9-58.6 97.8-71.9zM139 379.5L85.9 373c-14.4-20.1-37.3-59.6-37.8-115.3l39-36.4 71.1 22.2 24.3 74.3-43.5 61.7zm48.2 67l-22.4-48.1 43.6-61.7H287l44.3 61.7-22.4 48.1c-6.2 1.8-57.6 20.4-121.7 0z"], + "gem": [576, 512, [], "f3a5", "M464 0H112c-4 0-7.8 2-10 5.4L2 152.6c-2.9 4.4-2.6 10.2.7 14.2l276 340.8c4.8 5.9 13.8 5.9 18.6 0l276-340.8c3.3-4.1 3.6-9.8.7-14.2L474.1 5.4C471.8 2 468.1 0 464 0zm-19.3 48l63.3 96h-68.4l-51.7-96h56.8zm-202.1 0h90.7l51.7 96H191l51.6-96zm-111.3 0h56.8l-51.7 96H68l63.3-96zm-43 144h51.4L208 352 88.3 192zm102.9 0h193.6L288 435.3 191.2 192zM368 352l68.2-160h51.4L368 352z"], + "grimace": [496, 512, [], "f57f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm16 16H152c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h192c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48zm-168 96h-24c-8.8 0-16-7.2-16-16v-8h40v24zm0-40h-40v-8c0-8.8 7.2-16 16-16h24v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm56 24c0 8.8-7.2 16-16 16h-24v-24h40v8zm0-24h-40v-24h24c8.8 0 16 7.2 16 16v8z"], + "grin": [496, 512, [], "f580", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z"], + "grin-alt": [496, 512, [], "f581", "M200.3 248c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zm128 0c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3z"], + "grin-beam": [496, 512, [], "f582", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-235.9-72.9c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3zm160 0c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3z"], + "grin-beam-sweat": [496, 512, [], "f583", "M440 160c29.5 0 53.3-26.3 53.3-58.7 0-25-31.7-75.5-46.2-97.3-3.6-5.3-10.7-5.3-14.2 0-14.5 21.8-46.2 72.3-46.2 97.3 0 32.4 23.8 58.7 53.3 58.7zM248 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zm105.3-52.9c-24.6 15.7-46 12.9-46.4 12.9 6.9 20.2 10.8 41.8 10.8 64.3 0 110.3-89.7 200-200 200S48 366.3 48 256 137.7 56 248 56c39.8 0 76.8 11.8 108 31.9 1.7-9.5 6.3-24.1 17.2-45.7C336.4 20.6 293.7 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-27-4.4-52.9-12.4-77.2zM168 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z"], + "grin-hearts": [496, 512, [], "f584", "M353.6 304.6c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-152.8-48.9c4.5 1.2 9.2-1.5 10.5-6l19.4-69.9c5.6-20.3-7.4-41.1-28.8-44.5-18.6-3-36.4 9.8-41.5 27.9l-2 7.1-7.1-1.9c-18.2-4.7-38.2 4.3-44.9 22-7.7 20.2 3.8 41.9 24.2 47.2l70.2 18.1zm188.8-65.3c-6.7-17.6-26.7-26.7-44.9-22l-7.1 1.9-2-7.1c-5-18.1-22.8-30.9-41.5-27.9-21.4 3.4-34.4 24.2-28.8 44.5l19.4 69.9c1.2 4.5 5.9 7.2 10.5 6l70.2-18.2c20.4-5.3 31.9-26.9 24.2-47.1zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200z"], + "grin-squint": [496, 512, [], "f585", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-234.7-40.8c3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3l-80-48c-5.1-3-11.4-1.9-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11.1.1 15.5zm242.9 2.5c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11-.1-15.5-3.8-4.4-10.2-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48z"], + "grin-squint-tears": [512, 512, [], "f586", "M117.1 384.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 479 124.3 420.8 128 395c.8-6.4-4.6-11.8-10.9-10.9zm-41.2-41.7C40.3 268 53 176.1 114.6 114.6 152.4 76.8 202.6 56 256 56c36.2 0 70.8 9.8 101.2 27.7 3.8-20.3 8-36.1 12-48.3C333.8 17.2 294.9 8 256 8 192.5 8 129.1 32.2 80.6 80.6c-74.1 74.1-91.3 183.4-52 274 12.2-4.1 27.7-8.3 47.3-12.2zm352.3-187.6c45 76.6 34.9 176.9-30.8 242.6-37.8 37.8-88 58.6-141.4 58.6-30.5 0-59.8-7-86.4-19.8-3.9 19.5-8 35-12.2 47.2 31.4 13.6 65 20.6 98.7 20.6 63.5 0 126.9-24.2 175.4-72.6 78.1-78.1 93.1-195.4 45.2-288.6-12.3 4-28.2 8.1-48.5 12zm-33.3-26.9c25.8-3.7 84-13.7 100.9-30.6 21.9-21.9 21.5-57.9-.9-80.3s-58.3-22.8-80.3-.9C397.7 33 387.7 91.2 384 117c-.8 6.4 4.6 11.8 10.9 10.9zm-187 108.3c-3-3-7.2-4.2-11.4-3.2L106 255.7c-5.7 1.4-9.5 6.7-9.1 12.6.5 5.8 5.1 10.5 10.9 11l52.3 4.8 4.8 52.3c.5 5.8 5.2 10.4 11 10.9h.9c5.5 0 10.3-3.7 11.7-9.1l22.6-90.5c1-4.2-.2-8.5-3.2-11.5zm39.7-25.1l90.5-22.6c5.7-1.4 9.5-6.7 9.1-12.6-.5-5.8-5.1-10.5-10.9-11l-52.3-4.8-4.8-52.3c-.5-5.8-5.2-10.4-11-10.9-5.6-.1-11.2 3.4-12.6 9.1L233 196.5c-1 4.1.2 8.4 3.2 11.4 5 5 11.3 3.2 11.4 3.2zm52 88.5c-29.1 29.1-59.7 52.9-83.9 65.4-9.2 4.8-10 17.5-1.7 23.4 38.9 27.7 107 6.2 143.7-30.6S416 253 388.3 214.1c-5.8-8.2-18.5-7.6-23.4 1.7-12.3 24.2-36.2 54.7-65.3 83.8z"], + "grin-stars": [496, 512, [], "f587", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-227.9-57.5c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.5 1.9-12.2-4.3-13.2l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6.1 34.9zm259.7-72.7l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6 34.9c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.6 1.8-12.2-4.4-13.2z"], + "grin-tears": [640, 512, [], "f588", "M117.1 256.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 351 124.3 292.8 128 267c.8-6.4-4.6-11.8-10.9-10.9zm506.7 30.6c-16.9-16.9-75.1-26.9-100.9-30.6-6.3-.9-11.7 4.5-10.8 10.8 3.7 25.8 13.7 84 30.6 100.9 21.9 21.9 57.9 21.5 80.3-.9 22.3-22.3 22.7-58.3.8-80.2zm-126.6 61.7C463.8 412.3 396.9 456 320 456c-76.9 0-143.8-43.7-177.2-107.6-12.5 37.4-25.2 43.9-28.3 46.5C159.1 460.7 234.5 504 320 504s160.9-43.3 205.5-109.1c-3.2-2.7-15.9-9.2-28.3-46.5zM122.7 224.5C137.9 129.2 220.5 56 320 56c99.5 0 182.1 73.2 197.3 168.5 2.1-.2 5.2-2.4 49.5 7C554.4 106 448.7 8 320 8S85.6 106 73.2 231.4c44.5-9.4 47.1-7.2 49.5-6.9zM320 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zM240 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z"], + "grin-tongue": [496, 512, [], "f589", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zM168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"], + "grin-tongue-squint": [496, 512, [], "f58a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zm36.9-281.1c-3.8-4.4-10.3-5.5-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zm-162.9 45.5l-80-48c-5-3-11.4-2-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3z"], + "grin-tongue-wink": [496, 512, [], "f58b", "M152 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm176-52c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3z"], + "grin-wink": [496, 512, [], "f58c", "M328 180c-25.69 0-55.88 16.92-59.86 42.12-1.75 11.22 11.5 18.24 19.83 10.84l9.55-8.48c14.81-13.19 46.16-13.19 60.97 0l9.55 8.48c8.48 7.43 21.56.25 19.83-10.84C383.88 196.92 353.69 180 328 180zm-160 60c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm185.55 64.64c-25.93 8.3-64.4 13.06-105.55 13.06s-79.62-4.75-105.55-13.06c-9.94-3.13-19.4 5.37-17.71 15.34C132.67 367.13 196.06 400 248 400s115.33-32.87 123.26-80.02c1.68-9.89-7.67-18.48-17.71-15.34zM248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 448c-110.28 0-200-89.72-200-200S137.72 56 248 56s200 89.72 200 200-89.72 200-200 200z"], + "hand-lizard": [576, 512, [], "f258", "M556.686 290.542L410.328 64.829C397.001 44.272 374.417 32 349.917 32H56C25.121 32 0 57.122 0 88v8c0 44.112 35.888 80 80 80h196.042l-18.333 48H144c-48.523 0-88 39.477-88 88 0 30.879 25.121 56 56 56h131.552c2.987 0 5.914.549 8.697 1.631L352 408.418V480h224V355.829c0-23.225-6.679-45.801-19.314-65.287zM528 432H400v-23.582c0-19.948-12.014-37.508-30.604-44.736l-99.751-38.788A71.733 71.733 0 0 0 243.552 320H112c-4.411 0-8-3.589-8-8 0-22.056 17.944-40 40-40h113.709c19.767 0 37.786-12.407 44.84-30.873l24.552-64.281c8.996-23.553-8.428-48.846-33.63-48.846H80c-17.645 0-32-14.355-32-32v-8c0-4.411 3.589-8 8-8h293.917c8.166 0 15.693 4.09 20.137 10.942l146.358 225.715A71.84 71.84 0 0 1 528 355.829V432z"], + "hand-paper": [448, 512, [], "f256", "M372.57 112.641v-10.825c0-43.612-40.52-76.691-83.039-65.546-25.629-49.5-94.09-47.45-117.982.747C130.269 26.456 89.144 57.945 89.144 102v126.13c-19.953-7.427-43.308-5.068-62.083 8.871-29.355 21.796-35.794 63.333-14.55 93.153L132.48 498.569a32 32 0 0 0 26.062 13.432h222.897c14.904 0 27.835-10.289 31.182-24.813l30.184-130.958A203.637 203.637 0 0 0 448 310.564V179c0-40.62-35.523-71.992-75.43-66.359zm27.427 197.922c0 11.731-1.334 23.469-3.965 34.886L368.707 464h-201.92L51.591 302.303c-14.439-20.27 15.023-42.776 29.394-22.605l27.128 38.079c8.995 12.626 29.031 6.287 29.031-9.283V102c0-25.645 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V67c0-25.663 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V101.125c0-25.672 36.57-24.81 36.57.691V256c0 8.837 7.163 16 16 16h6.857c8.837 0 16-7.163 16-16v-76.309c0-26.242 36.57-25.64 36.57-.691v131.563z"], + "hand-peace": [448, 512, [], "f25b", "M362.146 191.976c-13.71-21.649-38.761-34.016-65.006-30.341V74c0-40.804-32.811-74-73.141-74-40.33 0-73.14 33.196-73.14 74L160 168l-18.679-78.85C126.578 50.843 83.85 32.11 46.209 47.208 8.735 62.238-9.571 104.963 5.008 142.85l55.757 144.927c-30.557 24.956-43.994 57.809-24.733 92.218l54.853 97.999C102.625 498.97 124.73 512 148.575 512h205.702c30.744 0 57.558-21.44 64.555-51.797l27.427-118.999a67.801 67.801 0 0 0 1.729-15.203L448 256c0-44.956-43.263-77.343-85.854-64.024zM399.987 326c0 1.488-.169 2.977-.502 4.423l-27.427 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H148.575c-6.486 0-12.542-3.621-15.805-9.449l-54.854-98c-4.557-8.141-2.619-18.668 4.508-24.488l26.647-21.764a16 16 0 0 0 4.812-18.139l-64.09-166.549C37.226 92.956 84.37 74.837 96.51 106.389l59.784 155.357A16 16 0 0 0 171.227 272h11.632c8.837 0 16-7.163 16-16V74c0-34.375 50.281-34.43 50.281 0v182c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16v-28c0-25.122 36.567-25.159 36.567 0v28c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16 0-25.12 36.567-25.16 36.567 0v70z"], + "hand-point-down": [448, 512, [], "f0a7", "M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z"], + "hand-point-left": [512, 512, [], "f0a5", "M0 220.8C0 266.416 37.765 304 83.2 304h35.647a93.148 93.148 0 0 0 7.929 22.064c-2.507 22.006 3.503 44.978 15.985 62.791C143.9 441.342 180.159 480 242.701 480H264c60.063 0 98.512-40 127.2-40h2.679c5.747 4.952 13.536 8 22.12 8h64c17.673 0 32-12.894 32-28.8V188.8c0-15.906-14.327-28.8-32-28.8h-64c-8.584 0-16.373 3.048-22.12 8H391.2c-6.964 0-14.862-6.193-30.183-23.668l-.129-.148-.131-.146c-8.856-9.937-18.116-20.841-25.851-33.253C316.202 80.537 304.514 32 259.2 32c-56.928 0-92 35.286-92 83.2 0 8.026.814 15.489 2.176 22.4H83.2C38.101 137.6 0 175.701 0 220.8zm48 0c0-18.7 16.775-35.2 35.2-35.2h158.4c0-17.325-26.4-35.2-26.4-70.4 0-26.4 20.625-35.2 44-35.2 8.794 0 20.445 32.712 34.926 56.1 9.074 14.575 19.524 27.225 30.799 39.875 16.109 18.374 33.836 36.633 59.075 39.596v176.752C341.21 396.087 309.491 432 264 432h-21.299c-40.524 0-57.124-22.197-50.601-61.325-14.612-8.001-24.151-33.979-12.925-53.625-19.365-18.225-17.787-46.381-4.95-61.05H83.2C64.225 256 48 239.775 48 220.8zM448 360c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z"], + "hand-point-right": [512, 512, [], "f0a4", "M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"], + "hand-point-up": [448, 512, [], "f0a6", "M105.6 83.2v86.177a115.52 115.52 0 0 0-22.4-2.176c-47.914 0-83.2 35.072-83.2 92 0 45.314 48.537 57.002 78.784 75.707 12.413 7.735 23.317 16.994 33.253 25.851l.146.131.148.129C129.807 376.338 136 384.236 136 391.2v2.679c-4.952 5.747-8 13.536-8 22.12v64c0 17.673 12.894 32 28.8 32h230.4c15.906 0 28.8-14.327 28.8-32v-64c0-8.584-3.048-16.373-8-22.12V391.2c0-28.688 40-67.137 40-127.2v-21.299c0-62.542-38.658-98.8-91.145-99.94-17.813-12.482-40.785-18.491-62.791-15.985A93.148 93.148 0 0 0 272 118.847V83.2C272 37.765 234.416 0 188.8 0c-45.099 0-83.2 38.101-83.2 83.2zm118.4 0v91.026c14.669-12.837 42.825-14.415 61.05 4.95 19.646-11.227 45.624-1.687 53.625 12.925 39.128-6.524 61.325 10.076 61.325 50.6V264c0 45.491-35.913 77.21-39.676 120H183.571c-2.964-25.239-21.222-42.966-39.596-59.075-12.65-11.275-25.3-21.725-39.875-30.799C80.712 279.645 48 267.994 48 259.2c0-23.375 8.8-44 35.2-44 35.2 0 53.075 26.4 70.4 26.4V83.2c0-18.425 16.5-35.2 35.2-35.2 18.975 0 35.2 16.225 35.2 35.2zM352 424c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z"], + "hand-pointer": [448, 512, [], "f25a", "M358.182 179.361c-19.493-24.768-52.679-31.945-79.872-19.098-15.127-15.687-36.182-22.487-56.595-19.629V67c0-36.944-29.736-67-66.286-67S89.143 30.056 89.143 67v161.129c-19.909-7.41-43.272-5.094-62.083 8.872-29.355 21.795-35.793 63.333-14.55 93.152l109.699 154.001C134.632 501.59 154.741 512 176 512h178.286c30.802 0 57.574-21.5 64.557-51.797l27.429-118.999A67.873 67.873 0 0 0 448 326v-84c0-46.844-46.625-79.273-89.818-62.639zM80.985 279.697l27.126 38.079c8.995 12.626 29.031 6.287 29.031-9.283V67c0-25.12 36.571-25.16 36.571 0v175c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16v-35c0-25.12 36.571-25.16 36.571 0v35c0 8.836 7.163 16 16 16H272c8.837 0 16-7.164 16-16v-21c0-25.12 36.571-25.16 36.571 0v21c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16 0-25.121 36.571-25.16 36.571 0v84c0 1.488-.169 2.977-.502 4.423l-27.43 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H176c-5.769 0-11.263-2.878-14.697-7.697l-109.712-154c-14.406-20.223 14.994-42.818 29.394-22.606zM176.143 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.733 0-14-7.163-14-16zm75.428 0v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16zM327 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16z"], + "hand-rock": [512, 512, [], "f255", "M408.864 79.052c-22.401-33.898-66.108-42.273-98.813-23.588-29.474-31.469-79.145-31.093-108.334-.022-47.16-27.02-108.71 5.055-110.671 60.806C44.846 105.407 0 140.001 0 187.429v56.953c0 32.741 14.28 63.954 39.18 85.634l97.71 85.081c4.252 3.702 3.11 5.573 3.11 32.903 0 17.673 14.327 32 32 32h252c17.673 0 32-14.327 32-32 0-23.513-1.015-30.745 3.982-42.37l42.835-99.656c6.094-14.177 9.183-29.172 9.183-44.568V146.963c0-52.839-54.314-88.662-103.136-67.911zM464 261.406a64.505 64.505 0 0 1-5.282 25.613l-42.835 99.655c-5.23 12.171-7.883 25.04-7.883 38.25V432H188v-10.286c0-16.37-7.14-31.977-19.59-42.817l-97.71-85.08C56.274 281.255 48 263.236 48 244.381v-56.953c0-33.208 52-33.537 52 .677v41.228a16 16 0 0 0 5.493 12.067l7 6.095A16 16 0 0 0 139 235.429V118.857c0-33.097 52-33.725 52 .677v26.751c0 8.836 7.164 16 16 16h7c8.836 0 16-7.164 16-16v-41.143c0-33.134 52-33.675 52 .677v40.466c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16v-27.429c0-33.03 52-33.78 52 .677v26.751c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16 0-33.146 52-33.613 52 .677v114.445z"], + "hand-scissors": [512, 512, [], "f257", "M256 480l70-.013c5.114 0 10.231-.583 15.203-1.729l118.999-27.427C490.56 443.835 512 417.02 512 386.277V180.575c0-23.845-13.03-45.951-34.005-57.69l-97.999-54.853c-34.409-19.261-67.263-5.824-92.218 24.733L142.85 37.008c-37.887-14.579-80.612 3.727-95.642 41.201-15.098 37.642 3.635 80.37 41.942 95.112L168 192l-94-9.141c-40.804 0-74 32.811-74 73.14 0 40.33 33.196 73.141 74 73.141h87.635c-3.675 26.245 8.692 51.297 30.341 65.006C178.657 436.737 211.044 480 256 480zm0-48.013c-25.16 0-25.12-36.567 0-36.567 8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16h-28c-25.159 0-25.122-36.567 0-36.567h28c8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16H74c-34.43 0-34.375-50.281 0-50.281h182c8.837 0 16-7.163 16-16v-11.632a16 16 0 0 0-10.254-14.933L106.389 128.51c-31.552-12.14-13.432-59.283 19.222-46.717l166.549 64.091a16.001 16.001 0 0 0 18.139-4.812l21.764-26.647c5.82-7.127 16.348-9.064 24.488-4.508l98 54.854c5.828 3.263 9.449 9.318 9.449 15.805v205.701c0 8.491-5.994 15.804-14.576 17.782l-119.001 27.427a19.743 19.743 0 0 1-4.423.502h-70z"], + "hand-spock": [512, 512, [], "f259", "M21.096 381.79l129.092 121.513a32 32 0 0 0 21.932 8.698h237.6c14.17 0 26.653-9.319 30.68-22.904l31.815-107.313A115.955 115.955 0 0 0 477 348.811v-36.839c0-4.051.476-8.104 1.414-12.045l31.73-133.41c10.099-42.412-22.316-82.738-65.544-82.525-4.144-24.856-22.543-47.165-49.85-53.992-35.803-8.952-72.227 12.655-81.25 48.75L296.599 184 274.924 52.01c-8.286-36.07-44.303-58.572-80.304-50.296-29.616 6.804-50.138 32.389-51.882 61.295-42.637.831-73.455 40.563-64.071 81.844l31.04 136.508c-27.194-22.515-67.284-19.992-91.482 5.722-25.376 26.961-24.098 69.325 2.871 94.707zm32.068-61.811l.002-.001c7.219-7.672 19.241-7.98 26.856-.813l53.012 49.894C143.225 378.649 160 371.4 160 357.406v-69.479c0-1.193-.134-2.383-.397-3.546l-34.13-150.172c-5.596-24.617 31.502-32.86 37.054-8.421l30.399 133.757a16 16 0 0 0 15.603 12.454h8.604c10.276 0 17.894-9.567 15.594-19.583l-41.62-181.153c-5.623-24.469 31.39-33.076 37.035-8.508l45.22 196.828A16 16 0 0 0 288.956 272h13.217a16 16 0 0 0 15.522-12.119l42.372-169.49c6.104-24.422 42.962-15.159 36.865 9.217L358.805 252.12c-2.521 10.088 5.115 19.88 15.522 19.88h9.694a16 16 0 0 0 15.565-12.295L426.509 146.6c5.821-24.448 42.797-15.687 36.966 8.802L431.72 288.81a100.094 100.094 0 0 0-2.72 23.162v36.839c0 6.548-.943 13.051-2.805 19.328L397.775 464h-219.31L53.978 346.836c-7.629-7.18-7.994-19.229-.814-26.857z"], + "handshake": [640, 512, [], "f2b5", "M519.2 127.9l-47.6-47.6A56.252 56.252 0 0 0 432 64H205.2c-14.8 0-29.1 5.9-39.6 16.3L118 127.9H0v255.7h64c17.6 0 31.8-14.2 31.9-31.7h9.1l84.6 76.4c30.9 25.1 73.8 25.7 105.6 3.8 12.5 10.8 26 15.9 41.1 15.9 18.2 0 35.3-7.4 48.8-24 22.1 8.7 48.2 2.6 64-16.8l26.2-32.3c5.6-6.9 9.1-14.8 10.9-23h57.9c.1 17.5 14.4 31.7 31.9 31.7h64V127.9H519.2zM48 351.6c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16zm390-6.9l-26.1 32.2c-2.8 3.4-7.8 4-11.3 1.2l-23.9-19.4-30 36.5c-6 7.3-15 4.8-18 2.4l-36.8-31.5-15.6 19.2c-13.9 17.1-39.2 19.7-55.3 6.6l-97.3-88H96V175.8h41.9l61.7-61.6c2-.8 3.7-1.5 5.7-2.3H262l-38.7 35.5c-29.4 26.9-31.1 72.3-4.4 101.3 14.8 16.2 61.2 41.2 101.5 4.4l8.2-7.5 108.2 87.8c3.4 2.8 3.9 7.9 1.2 11.3zm106-40.8h-69.2c-2.3-2.8-4.9-5.4-7.7-7.7l-102.7-83.4 12.5-11.4c6.5-6 7-16.1 1-22.6L367 167.1c-6-6.5-16.1-6.9-22.6-1l-55.2 50.6c-9.5 8.7-25.7 9.4-34.6 0-9.3-9.9-8.5-25.1 1.2-33.9l65.6-60.1c7.4-6.8 17-10.5 27-10.5l83.7-.2c2.1 0 4.1.8 5.5 2.3l61.7 61.6H544v128zm48 47.7c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16z"], + "hdd": [576, 512, [], "f0a0", "M567.403 235.642L462.323 84.589A48 48 0 0 0 422.919 64H153.081a48 48 0 0 0-39.404 20.589L8.597 235.642A48.001 48.001 0 0 0 0 263.054V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V263.054c0-9.801-3-19.366-8.597-27.412zM153.081 112h269.838l77.913 112H75.168l77.913-112zM528 400H48V272h480v128zm-32-64c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32zm-96 0c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32z"], + "heart": [512, 512, [], "f004", "M458.4 64.3C400.6 15.7 311.3 23 256 79.3 200.7 23 111.4 15.6 53.6 64.3-21.6 127.6-10.6 230.8 43 285.5l175.4 178.7c10 10.2 23.4 15.9 37.6 15.9 14.3 0 27.6-5.6 37.6-15.8L469 285.6c53.5-54.7 64.7-157.9-10.6-221.3zm-23.6 187.5L259.4 430.5c-2.4 2.4-4.4 2.4-6.8 0L77.2 251.8c-36.5-37.2-43.9-107.6 7.3-150.7 38.9-32.7 98.9-27.8 136.5 10.5l35 35.7 35-35.7c37.8-38.5 97.8-43.2 136.5-10.6 51.1 43.1 43.5 113.9 7.3 150.8z"], + "hospital": [448, 512, [], "f0f8", "M128 244v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12zm140 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm-76 84v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm76 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm180 124v36H0v-36c0-6.627 5.373-12 12-12h19.5V85.035C31.5 73.418 42.245 64 55.5 64H144V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v40h88.5c13.255 0 24 9.418 24 21.035V464H436c6.627 0 12 5.373 12 12zM79.5 463H192v-67c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v67h112.5V112H304v24c0 13.255-10.745 24-24 24H168c-13.255 0-24-10.745-24-24v-24H79.5v351zM266 64h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6z"], + "hourglass": [384, 512, [], "f254", "M368 48h4c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12H12C5.373 0 0 5.373 0 12v24c0 6.627 5.373 12 12 12h4c0 80.564 32.188 165.807 97.18 208C47.899 298.381 16 383.9 16 464h-4c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12h-4c0-80.564-32.188-165.807-97.18-208C336.102 213.619 368 128.1 368 48zM64 48h256c0 101.62-57.307 184-128 184S64 149.621 64 48zm256 416H64c0-101.62 57.308-184 128-184s128 82.38 128 184z"], + "id-badge": [384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm0 464H48V48h288v416zM144 112h96c8.8 0 16-7.2 16-16s-7.2-16-16-16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16zm48 176c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"], + "id-card": [576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H303.2c.9-4.5.8 3.6.8-22.4 0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6 0 26-.2 17.9.8 22.4H48V144h480v288zm-168-80h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm-168 96c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z"], + "image": [512, 512, [], "f03e", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 336H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v276a6 6 0 0 1-6 6zM128 152c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zM96 352h320v-80l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L192 304l-39.515-39.515c-4.686-4.686-12.284-4.686-16.971 0L96 304v48z"], + "images": [576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v48H54a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6v-10h48zm42-336H150a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6V86a6 6 0 0 0-6-6zm6-48c26.51 0 48 21.49 48 48v256c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h384zM264 144c0 22.091-17.909 40-40 40s-40-17.909-40-40 17.909-40 40-40 40 17.909 40 40zm-72 96l39.515-39.515c4.686-4.686 12.284-4.686 16.971 0L288 240l103.515-103.515c4.686-4.686 12.284-4.686 16.971 0L480 208v80H192v-48z"], + "keyboard": [576, 512, [], "f11c", "M528 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm8 336c0 4.411-3.589 8-8 8H48c-4.411 0-8-3.589-8-8V112c0-4.411 3.589-8 8-8h480c4.411 0 8 3.589 8 8v288zM170 270v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-336 82v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm384 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zM122 188v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-98 158v-16c0-6.627-5.373-12-12-12H180c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h216c6.627 0 12-5.373 12-12z"], + "kiss": [496, 512, [], "f596", "M168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm136 132c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"], + "kiss-beam": [496, 512, [], "f597", "M168 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm56-148c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zm24-156c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4z"], + "kiss-wink-heart": [504, 512, [], "f598", "M304 308.5c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36 21.7-9.1 35.1-23.4 35.1-36.4zm70.5-83.5l9.5 8.5c3.8 3.3 9.3 4 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 5.8 3.1 11.2.7 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0zM136 208.5c0 17.7 14.3 32 32 32s32-14.3 32-32-14.3-32-32-32-32 14.3-32 32zm365.1 194c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zM334 436.3c-26.1 12.5-55.2 19.7-86 19.7-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200c0 22.1-3.7 43.3-10.4 63.2 9 6.4 17 14.2 22.6 23.9 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-2.5-7.3 4.3 17.2-13.4-46.8z"], + "laugh": [496, 512, [], "f599", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 224c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm-160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"], + "laugh-beam": [496, 512, [], "f59a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 152c-23.8 0-52.7 29.3-56 71.4-.7 8.6 10.8 11.9 14.9 4.5l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.1-42.1-32-71.4-55.8-71.4zm-201 75.9l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.6 8.5 10.9 11.9 15.1 4.5zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"], + "laugh-squint": [496, 512, [], "f59b", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM343.6 196l33.6-40.3c8.6-10.3-3.8-24.8-15.4-18l-80 48c-7.8 4.7-7.8 15.9 0 20.6l80 48c11.5 6.8 24-7.6 15.4-18L343.6 196zm-209.4 58.3l80-48c7.8-4.7 7.8-15.9 0-20.6l-80-48c-11.6-6.9-24 7.7-15.4 18l33.6 40.3-33.6 40.3c-8.7 10.4 3.8 24.8 15.4 18zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"], + "laugh-wink": [496, 512, [], "f59c", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6C68.8 359.6 48 309.4 48 256s20.8-103.6 58.6-141.4C144.4 76.8 194.6 56 248 56s103.6 20.8 141.4 58.6c37.8 37.8 58.6 88 58.6 141.4s-20.8 103.6-58.6 141.4zM328 164c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1zm-160 60c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"], + "lemon": [512, 512, [], "f094", "M484.112 27.889C455.989-.233 416.108-8.057 387.059 8.865 347.604 31.848 223.504-41.111 91.196 91.197-41.277 223.672 31.923 347.472 8.866 387.058c-16.922 29.051-9.1 68.932 19.022 97.054 28.135 28.135 68.011 35.938 97.057 19.021 39.423-22.97 163.557 49.969 295.858-82.329 132.474-132.477 59.273-256.277 82.331-295.861 16.922-29.05 9.1-68.931-19.022-97.054zm-22.405 72.894c-38.8 66.609 45.6 165.635-74.845 286.08-120.44 120.443-219.475 36.048-286.076 74.843-22.679 13.207-64.035-27.241-50.493-50.488 38.8-66.609-45.6-165.635 74.845-286.08C245.573 4.702 344.616 89.086 411.219 50.292c22.73-13.24 64.005 27.288 50.488 50.491zm-169.861 8.736c1.37 10.96-6.404 20.957-17.365 22.327-54.846 6.855-135.779 87.787-142.635 142.635-1.373 10.989-11.399 18.734-22.326 17.365-10.961-1.37-18.735-11.366-17.365-22.326 9.162-73.286 104.167-168.215 177.365-177.365 10.953-1.368 20.956 6.403 22.326 17.364z"], + "life-ring": [512, 512, [], "f1cd", "M256 504c136.967 0 248-111.033 248-248S392.967 8 256 8 8 119.033 8 256s111.033 248 248 248zm-103.398-76.72l53.411-53.411c31.806 13.506 68.128 13.522 99.974 0l53.411 53.411c-63.217 38.319-143.579 38.319-206.796 0zM336 256c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zm91.28 103.398l-53.411-53.411c13.505-31.806 13.522-68.128 0-99.974l53.411-53.411c38.319 63.217 38.319 143.579 0 206.796zM359.397 84.72l-53.411 53.411c-31.806-13.505-68.128-13.522-99.973 0L152.602 84.72c63.217-38.319 143.579-38.319 206.795 0zM84.72 152.602l53.411 53.411c-13.506 31.806-13.522 68.128 0 99.974L84.72 359.398c-38.319-63.217-38.319-143.579 0-206.796z"], + "lightbulb": [384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zM128 176c0-35.29 28.71-64 64-64 8.837 0 16-7.164 16-16s-7.163-16-16-16c-52.935 0-96 43.065-96 96 0 8.836 7.164 16 16 16s16-7.164 16-16zm64-128c70.734 0 128 57.254 128 128 0 77.602-37.383 60.477-80.98 160h-94.04C101.318 236.33 64 253.869 64 176c0-70.735 57.254-128 128-128m0-48C94.805 0 16 78.803 16 176c0 101.731 51.697 91.541 90.516 192.674 3.55 9.249 12.47 15.326 22.376 15.326h126.215c9.906 0 18.826-6.078 22.376-15.326C316.303 267.541 368 277.731 368 176 368 78.803 289.195 0 192 0z"], + "list-alt": [512, 512, [], "f022", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zm-42-92v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm-252 12c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36z"], + "map": [576, 512, [], "f279", "M560.02 32c-1.96 0-3.98.37-5.96 1.16L384.01 96H384L212 35.28A64.252 64.252 0 0 0 191.76 32c-6.69 0-13.37 1.05-19.81 3.14L20.12 87.95A32.006 32.006 0 0 0 0 117.66v346.32C0 473.17 7.53 480 15.99 480c1.96 0 3.97-.37 5.96-1.16L192 416l172 60.71a63.98 63.98 0 0 0 40.05.15l151.83-52.81A31.996 31.996 0 0 0 576 394.34V48.02c0-9.19-7.53-16.02-15.98-16.02zM224 90.42l128 45.19v285.97l-128-45.19V90.42zM48 418.05V129.07l128-44.53v286.2l-.64.23L48 418.05zm480-35.13l-128 44.53V141.26l.64-.24L528 93.95v288.97z"], + "meh": [496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm8 144H160c-13.2 0-24 10.8-24 24s10.8 24 24 24h176c13.2 0 24-10.8 24-24s-10.8-24-24-24z"], + "meh-blank": [496, 512, [], "f5a4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"], + "meh-rolling-eyes": [496, 512, [], "f5a5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm88-304c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm0 112c-22.1 0-40-17.9-40-40 0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40zm-104-40c0-39.8-32.2-72-72-72s-72 32.2-72 72 32.2 72 72 72 72-32.2 72-72zm-112 0c0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40s-40-17.9-40-40zm192 128H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z"], + "minus-square": [448, 512, [], "f146", "M108 284c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h232c6.6 0 12 5.4 12 12v32c0 6.6-5.4 12-12 12H108zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "money-bill-alt": [640, 512, [], "f3d1", "M320 144c-53.02 0-96 50.14-96 112 0 61.85 42.98 112 96 112 53 0 96-50.13 96-112 0-61.86-42.98-112-96-112zm40 168c0 4.42-3.58 8-8 8h-64c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h16v-55.44l-.47.31a7.992 7.992 0 0 1-11.09-2.22l-8.88-13.31a7.992 7.992 0 0 1 2.22-11.09l15.33-10.22a23.99 23.99 0 0 1 13.31-4.03H328c4.42 0 8 3.58 8 8v88h16c4.42 0 8 3.58 8 8v16zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zm-16 272c-35.35 0-64 28.65-64 64H112c0-35.35-28.65-64-64-64V176c35.35 0 64-28.65 64-64h416c0 35.35 28.65 64 64 64v160z"], + "moon": [512, 512, [], "f186", "M279.135 512c78.756 0 150.982-35.804 198.844-94.775 28.27-34.831-2.558-85.722-46.249-77.401-82.348 15.683-158.272-47.268-158.272-130.792 0-48.424 26.06-92.292 67.434-115.836 38.745-22.05 28.999-80.788-15.022-88.919A257.936 257.936 0 0 0 279.135 0c-141.36 0-256 114.575-256 256 0 141.36 114.576 256 256 256zm0-464c12.985 0 25.689 1.201 38.016 3.478-54.76 31.163-91.693 90.042-91.693 157.554 0 113.848 103.641 199.2 215.252 177.944C402.574 433.964 344.366 464 279.135 464c-114.875 0-208-93.125-208-208s93.125-208 208-208z"], + "newspaper": [576, 512, [], "f1ea", "M552 64H112c-20.858 0-38.643 13.377-45.248 32H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h496c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24zM48 392V144h16v248c0 4.411-3.589 8-8 8s-8-3.589-8-8zm480 8H111.422c.374-2.614.578-5.283.578-8V112h416v288zM172 280h136c6.627 0 12-5.373 12-12v-96c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v96c0 6.627 5.373 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H172c-6.627 0-12-5.373-12-12zm192 0v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0-144v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0 72v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12z"], + "object-group": [512, 512, [], "f247", "M500 128c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v256H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V128h12zm-52-64h32v32h-32V64zM32 64h32v32H32V64zm32 384H32v-32h32v32zm416 0h-32v-32h32v32zm-40-64h-12c-6.627 0-12 5.373-12 12v12H96v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h12v256zm-36-192h-84v-52c0-6.628-5.373-12-12-12H108c-6.627 0-12 5.372-12 12v168c0 6.628 5.373 12 12 12h84v52c0 6.628 5.373 12 12 12h200c6.627 0 12-5.372 12-12V204c0-6.628-5.373-12-12-12zm-268-24h144v112H136V168zm240 176H232v-24h76c6.627 0 12-5.372 12-12v-76h56v112z"], + "object-ungroup": [576, 512, [], "f248", "M564 224c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12h-88v-24h12c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v160H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h88v24h-12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V224h12zM352 64h32v32h-32V64zm0 256h32v32h-32v-32zM64 352H32v-32h32v32zm0-256H32V64h32v32zm32 216v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h12v160h-12c-6.627 0-12 5.373-12 12v12H96zm128 136h-32v-32h32v32zm280-64h-12c-6.627 0-12 5.373-12 12v12H256v-12c0-6.627-5.373-12-12-12h-12v-24h88v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12v-88h88v12c0 6.627 5.373 12 12 12h12v160zm40 64h-32v-32h32v32zm0-256h-32v-32h32v32z"], + "paper-plane": [512, 512, [], "f1d8", "M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z"], + "pause-circle": [512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm96-280v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16zm-112 0v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16z"], + "play-circle": [512, 512, [], "f144", "M371.7 238l-176-107c-15.8-8.8-35.7 2.5-35.7 21v208c0 18.4 19.8 29.8 35.7 21l176-101c16.4-9.1 16.4-32.8 0-42zM504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256z"], + "plus-square": [448, 512, [], "f0fe", "M352 240v32c0 6.6-5.4 12-12 12h-88v88c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-88h-88c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h88v-88c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v88h88c6.6 0 12 5.4 12 12zm96-160v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "question-circle": [512, 512, [], "f059", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 448c-110.532 0-200-89.431-200-200 0-110.495 89.472-200 200-200 110.491 0 200 89.471 200 200 0 110.53-89.431 200-200 200zm107.244-255.2c0 67.052-72.421 68.084-72.421 92.863V300c0 6.627-5.373 12-12 12h-45.647c-6.627 0-12-5.373-12-12v-8.659c0-35.745 27.1-50.034 47.579-61.516 17.561-9.845 28.324-16.541 28.324-29.579 0-17.246-21.999-28.693-39.784-28.693-23.189 0-33.894 10.977-48.942 29.969-4.057 5.12-11.46 6.071-16.666 2.124l-27.824-21.098c-5.107-3.872-6.251-11.066-2.644-16.363C184.846 131.491 214.94 112 261.794 112c49.071 0 101.45 38.304 101.45 88.8zM298 368c0 23.159-18.841 42-42 42s-42-18.841-42-42 18.841-42 42-42 42 18.841 42 42z"], + "registered": [512, 512, [], "f25d", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm110.442-81.791c-53.046-96.284-50.25-91.468-53.271-96.085 24.267-13.879 39.482-41.563 39.482-73.176 0-52.503-30.247-85.252-101.498-85.252h-78.667c-6.617 0-12 5.383-12 12V380c0 6.617 5.383 12 12 12h38.568c6.617 0 12-5.383 12-12v-83.663h31.958l47.515 89.303a11.98 11.98 0 0 0 10.593 6.36h42.81c9.14 0 14.914-9.799 10.51-17.791zM256.933 239.906h-33.875v-64.14h27.377c32.417 0 38.929 12.133 38.929 31.709-.001 20.913-11.518 32.431-32.431 32.431z"], + "sad-cry": [496, 512, [], "f5b3", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm144 386.4V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v151.4C315.5 447 282.8 456 248 456s-67.5-9-96-24.6V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v114.4c-34.6-36-56-84.7-56-138.4 0-110.3 89.7-200 200-200s200 89.7 200 200c0 53.7-21.4 102.5-56 138.4zM205.8 234.5c4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.3 7.9 4.8 13.7 1.6zM344 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.5 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm-96 92c-30.9 0-56 28.7-56 64s25.1 64 56 64 56-28.7 56-64-25.1-64-56-64z"], + "sad-tear": [496, 512, [], "f5b4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm8-152c-13.2 0-24 10.8-24 24s10.8 24 24 24c23.8 0 46.3 10.5 61.6 28.8 8.1 9.8 23.2 11.9 33.8 3.1 10.2-8.5 11.6-23.6 3.1-33.8C330 320.8 294.1 304 256 304zm-88-64c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-165.6 98.8C151 290.1 126 325.4 126 342.9c0 22.7 18.8 41.1 42 41.1s42-18.4 42-41.1c0-17.5-25-52.8-36.4-68.1-2.8-3.7-8.4-3.7-11.2 0z"], + "save": [448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM272 80v80H144V80h128zm122 352H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h42v104c0 13.255 10.745 24 24 24h176c13.255 0 24-10.745 24-24V83.882l78.243 78.243a6 6 0 0 1 1.757 4.243V426a6 6 0 0 1-6 6zM224 232c-48.523 0-88 39.477-88 88s39.477 88 88 88 88-39.477 88-88-39.477-88-88-88zm0 128c-22.056 0-40-17.944-40-40s17.944-40 40-40 40 17.944 40 40-17.944 40-40 40z"], + "share-square": [576, 512, [], "f14d", "M561.938 158.06L417.94 14.092C387.926-15.922 336 5.097 336 48.032v57.198c-42.45 1.88-84.03 6.55-120.76 17.99-35.17 10.95-63.07 27.58-82.91 49.42C108.22 199.2 96 232.6 96 271.94c0 61.697 33.178 112.455 84.87 144.76 37.546 23.508 85.248-12.651 71.02-55.74-15.515-47.119-17.156-70.923 84.11-78.76V336c0 42.993 51.968 63.913 81.94 33.94l143.998-144c18.75-18.74 18.75-49.14 0-67.88zM384 336V232.16C255.309 234.082 166.492 255.35 206.31 376 176.79 357.55 144 324.08 144 271.94c0-109.334 129.14-118.947 240-119.85V48l144 144-144 144zm24.74 84.493a82.658 82.658 0 0 0 20.974-9.303c7.976-4.952 18.286.826 18.286 10.214V464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h132c6.627 0 12 5.373 12 12v4.486c0 4.917-2.987 9.369-7.569 11.152-13.702 5.331-26.396 11.537-38.05 18.585a12.138 12.138 0 0 1-6.28 1.777H54a6 6 0 0 0-6 6v340a6 6 0 0 0 6 6h340a6 6 0 0 0 6-6v-25.966c0-5.37 3.579-10.059 8.74-11.541z"], + "smile": [496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm4 72.6c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.1-8.4-25.3-7.1-33.8 3.1z"], + "smile-beam": [496, 512, [], "f5b8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm84-143.4c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.6-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.2-8.4-25.3-7.1-33.8 3.1zM136.5 211c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.4 1.1 7.4-.5 9.3-3.7l9.5-17zM328 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4z"], + "smile-wink": [496, 512, [], "f4da", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm117.8-146.4c-10.2-8.5-25.3-7.1-33.8 3.1-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-60c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1z"], + "snowflake": [448, 512, [], "f2dc", "M438.237 355.927l-66.574-38.54 59.448-10.327c5.846-1.375 10.609-5.183 13.458-10.13 2.48-4.307 3.506-9.478 2.524-14.651-2.11-11.115-12.686-18.039-23.621-15.467l-85.423 31.115L255.914 256l82.136-41.926 85.423 31.115c10.936 2.572 21.512-4.352 23.621-15.467 2.111-11.115-5.046-22.209-15.981-24.781l-59.448-10.327 66.573-38.54c9.54-5.523 12.615-18.092 6.867-28.074-5.748-9.982-18.14-13.596-27.68-8.074l-66.574 38.54 20.805-56.787c3.246-10.782-2.758-22.542-13.413-26.268-10.654-3.725-21.922 1.997-25.168 12.779l-15.838 89.735-72.423 41.926V136l69.585-58.621c7.689-8.21 6.997-20.856-1.548-28.245-8.545-7.391-21.705-6.723-29.394 1.486l-38.644 46.46V20c0-11.046-9.318-20-20.813-20s-20.813 8.954-20.813 20v77.08l-38.644-46.46c-7.689-8.21-20.849-8.876-29.394-1.486-8.544 7.389-9.236 20.035-1.547 28.245L203.187 136v83.853l-72.423-41.926-15.838-89.736c-3.247-10.782-14.515-16.504-25.169-12.779-10.656 3.725-16.659 15.486-13.413 26.268l20.805 56.787-66.573-38.54c-9.54-5.523-21.933-1.908-27.68 8.074s-2.673 22.551 6.867 28.074l66.574 38.54-59.449 10.328C5.953 207.515-1.202 218.609.907 229.724c2.11 11.114 12.686 18.038 23.622 15.466l85.422-31.115L192.086 256l-82.136 41.926-85.423-31.115c-10.936-2.572-21.511 4.352-23.622 15.466-2.109 11.113 5.046 22.209 15.981 24.781l59.449 10.328-66.574 38.54C.223 361.449-2.852 374.018 2.896 384s18.14 13.597 27.68 8.074l66.574-38.54-20.805 56.786c-1.735 5.764-.828 11.805 2.02 16.751 2.48 4.307 6.433 7.784 11.392 9.517 10.655 3.725 21.923-1.997 25.169-12.779l15.838-89.736 72.423-41.926V376l-69.585 58.621c-7.69 8.21-6.997 20.855 1.547 28.245 8.544 7.388 21.705 6.723 29.394-1.487l38.644-46.46V492c0 11.046 9.318 20 20.813 20s20.813-8.954 20.813-20v-77.081l38.644 46.46c4.111 4.389 9.782 6.621 15.478 6.621 4.96 0 9.939-1.694 13.916-5.134 8.545-7.39 9.237-20.035 1.548-28.245L244.813 376v-83.853l72.423 41.926 15.838 89.736c3.246 10.782 14.514 16.504 25.168 12.779 10.653-3.726 16.659-15.487 13.412-26.268l-20.805-56.787 66.574 38.54c9.54 5.523 21.933 1.908 27.68-8.074 5.749-9.981 2.675-22.55-6.866-28.072z"], + "square": [448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h340c3.3 0 6 2.7 6 6v340c0 3.3-2.7 6-6 6z"], + "star": [576, 512, [], "f005", "M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z"], + "star-half": [576, 512, [], "f089", "M288 385.3l-124.3 65.4 23.7-138.4-100.6-98 139-20.2 62.2-126V0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6v-54.3z"], + "sticky-note": [448, 512, [], "f249", "M448 348.106V80c0-26.51-21.49-48-48-48H48C21.49 32 0 53.49 0 80v351.988c0 26.51 21.49 48 48 48h268.118a48 48 0 0 0 33.941-14.059l83.882-83.882A48 48 0 0 0 448 348.106zm-128 80v-76.118h76.118L320 428.106zM400 80v223.988H296c-13.255 0-24 10.745-24 24v104H48V80h352z"], + "stop-circle": [512, 512, [], "f28d", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm296-80v160c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16z"], + "sun": [512, 512, [], "f185", "M220.116 487.936l-20.213-49.425a3.992 3.992 0 0 0-5.808-1.886l-45.404 28.104c-29.466 18.24-66.295-8.519-58.054-42.179l12.699-51.865a3.993 3.993 0 0 0-3.59-4.941l-53.251-3.951c-34.554-2.562-48.632-45.855-22.174-68.247L65.08 259.05a3.992 3.992 0 0 0 0-6.106l-40.76-34.497c-26.45-22.384-12.39-65.682 22.174-68.246l53.251-3.951a3.993 3.993 0 0 0 3.59-4.941L90.637 89.443c-8.239-33.656 28.581-60.42 58.054-42.179l45.403 28.104a3.993 3.993 0 0 0 5.808-1.887l20.213-49.425c13.116-32.071 58.638-32.081 71.758 0l20.212 49.424a3.994 3.994 0 0 0 5.809 1.887l45.403-28.104c29.464-18.236 66.297 8.513 58.054 42.179l-12.699 51.865a3.995 3.995 0 0 0 3.59 4.941l53.251 3.951c34.553 2.563 48.633 45.854 22.175 68.246l-40.76 34.497a3.993 3.993 0 0 0 0 6.107l40.76 34.496c26.511 22.441 12.322 65.689-22.175 68.247l-53.251 3.951a3.993 3.993 0 0 0-3.589 4.942l12.698 51.864c8.241 33.658-28.583 60.421-58.054 42.18l-45.403-28.104a3.994 3.994 0 0 0-5.809 1.887l-20.212 49.424c-13.159 32.178-58.675 31.993-71.757 0zm16.814-64.568l19.064 46.616 19.064-46.615c10.308-25.2 40.778-35.066 63.892-20.759l42.822 26.507-11.976-48.919c-6.475-26.444 12.38-52.339 39.487-54.349l50.226-3.726-38.444-32.536c-20.782-17.591-20.747-49.621.001-67.18l38.442-32.536-50.225-3.727c-27.151-2.015-45.95-27.948-39.488-54.349l11.978-48.919-42.823 26.507c-23.151 14.327-53.603 4.4-63.892-20.76l-19.064-46.615-19.064 46.617c-10.305 25.198-40.778 35.066-63.891 20.76l-42.823-26.508 11.977 48.918c6.474 26.446-12.381 52.338-39.488 54.35l-50.224 3.726 38.443 32.537c20.782 17.588 20.747 49.619 0 67.178L52.48 322.123l50.226 3.726c27.151 2.014 45.95 27.947 39.487 54.349l-11.977 48.919 42.823-26.507c23.188-14.355 53.622-4.352 63.891 20.758zM256 384c-70.58 0-128-57.421-128-128 0-70.58 57.42-128 128-128 70.579 0 128 57.42 128 128 0 70.579-57.421 128-128 128zm0-208c-44.112 0-80 35.888-80 80s35.888 80 80 80 80-35.888 80-80-35.888-80-80-80z"], + "surprise": [496, 512, [], "f5c2", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-176c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm-48-72c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"], + "thumbs-down": [512, 512, [], "f165", "M466.27 225.31c4.674-22.647.864-44.538-8.99-62.99 2.958-23.868-4.021-48.565-17.34-66.99C438.986 39.423 404.117 0 327 0c-7 0-15 .01-22.22.01C201.195.01 168.997 40 128 40h-10.845c-5.64-4.975-13.042-8-21.155-8H32C14.327 32 0 46.327 0 64v240c0 17.673 14.327 32 32 32h64c11.842 0 22.175-6.438 27.708-16h7.052c19.146 16.953 46.013 60.653 68.76 83.4 13.667 13.667 10.153 108.6 71.76 108.6 57.58 0 95.27-31.936 95.27-104.73 0-18.41-3.93-33.73-8.85-46.54h36.48c48.602 0 85.82-41.565 85.82-85.58 0-19.15-4.96-34.99-13.73-49.84zM64 296c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm330.18 16.73H290.19c0 37.82 28.36 55.37 28.36 94.54 0 23.75 0 56.73-47.27 56.73-18.91-18.91-9.46-66.18-37.82-94.54C206.9 342.89 167.28 272 138.92 272H128V85.83c53.611 0 100.001-37.82 171.64-37.82h37.82c35.512 0 60.82 17.12 53.12 65.9 15.2 8.16 26.5 36.44 13.94 57.57 21.581 20.384 18.699 51.065 5.21 65.62 9.45 0 22.36 18.91 22.27 37.81-.09 18.91-16.71 37.82-37.82 37.82z"], + "thumbs-up": [512, 512, [], "f164", "M466.27 286.69C475.04 271.84 480 256 480 236.85c0-44.015-37.218-85.58-85.82-85.58H357.7c4.92-12.81 8.85-28.13 8.85-46.54C366.55 31.936 328.86 0 271.28 0c-61.607 0-58.093 94.933-71.76 108.6-22.747 22.747-49.615 66.447-68.76 83.4H32c-17.673 0-32 14.327-32 32v240c0 17.673 14.327 32 32 32h64c14.893 0 27.408-10.174 30.978-23.95 44.509 1.001 75.06 39.94 177.802 39.94 7.22 0 15.22.01 22.22.01 77.117 0 111.986-39.423 112.94-95.33 13.319-18.425 20.299-43.122 17.34-66.99 9.854-18.452 13.664-40.343 8.99-62.99zm-61.75 53.83c12.56 21.13 1.26 49.41-13.94 57.57 7.7 48.78-17.608 65.9-53.12 65.9h-37.82c-71.639 0-118.029-37.82-171.64-37.82V240h10.92c28.36 0 67.98-70.89 94.54-97.46 28.36-28.36 18.91-75.63 37.82-94.54 47.27 0 47.27 32.98 47.27 56.73 0 39.17-28.36 56.72-28.36 94.54h103.99c21.11 0 37.73 18.91 37.82 37.82.09 18.9-12.82 37.81-22.27 37.81 13.489 14.555 16.371 45.236-5.21 65.62zM88 432c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"], + "times-circle": [512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm101.8-262.2L295.6 256l62.2 62.2c4.7 4.7 4.7 12.3 0 17l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L256 295.6l-62.2 62.2c-4.7 4.7-12.3 4.7-17 0l-22.6-22.6c-4.7-4.7-4.7-12.3 0-17l62.2-62.2-62.2-62.2c-4.7-4.7-4.7-12.3 0-17l22.6-22.6c4.7-4.7 12.3-4.7 17 0l62.2 62.2 62.2-62.2c4.7-4.7 12.3-4.7 17 0l22.6 22.6c4.7 4.7 4.7 12.3 0 17z"], + "tired": [496, 512, [], "f5c8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm129.1-303.8c-3.8-4.4-10.3-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.8 1.6 15.3-2.5 3.8-4.5 3.9-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zM220 208c0-4.2-2.2-8.1-5.8-10.3l-80-48c-5-3-11.5-1.9-15.3 2.5-3.8 4.5-3.9 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.5 4.1 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3zm28 64c-45.4 0-100.9 38.3-107.8 93.3-1.5 11.8 6.9 21.6 15.5 17.9C178.4 373.5 212 368 248 368s69.6 5.5 92.3 15.2c8.5 3.7 17-6 15.5-17.9-6.9-55-62.4-93.3-107.8-93.3z"], + "trash-alt": [448, 512, [], "f2ed", "M192 188v216c0 6.627-5.373 12-12 12h-24c-6.627 0-12-5.373-12-12V188c0-6.627 5.373-12 12-12h24c6.627 0 12 5.373 12 12zm100-12h-24c-6.627 0-12 5.373-12 12v216c0 6.627 5.373 12 12 12h24c6.627 0 12-5.373 12-12V188c0-6.627-5.373-12-12-12zm132-96c13.255 0 24 10.745 24 24v12c0 6.627-5.373 12-12 12h-20v336c0 26.51-21.49 48-48 48H80c-26.51 0-48-21.49-48-48V128H12c-6.627 0-12-5.373-12-12v-12c0-13.255 10.745-24 24-24h74.411l34.018-56.696A48 48 0 0 1 173.589 0h100.823a48 48 0 0 1 41.16 23.304L349.589 80H424zm-269.611 0h139.223L276.16 50.913A6 6 0 0 0 271.015 48h-94.028a6 6 0 0 0-5.145 2.913L154.389 80zM368 128H80v330a6 6 0 0 0 6 6h276a6 6 0 0 0 6-6V128z"], + "user": [448, 512, [], "f007", "M313.6 304c-28.7 0-42.5 16-89.6 16-47.1 0-60.8-16-89.6-16C60.2 304 0 364.2 0 438.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-25.6c0-74.2-60.2-134.4-134.4-134.4zM400 464H48v-25.6c0-47.6 38.8-86.4 86.4-86.4 14.6 0 38.3 16 89.6 16 51.7 0 74.9-16 89.6-16 47.6 0 86.4 38.8 86.4 86.4V464zM224 288c79.5 0 144-64.5 144-144S303.5 0 224 0 80 64.5 80 144s64.5 144 144 144zm0-240c52.9 0 96 43.1 96 96s-43.1 96-96 96-96-43.1-96-96 43.1-96 96-96z"], + "user-circle": [496, 512, [], "f2bd", "M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"], + "window-close": [512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v340zM356.5 194.6L295.1 256l61.4 61.4c4.6 4.6 4.6 12.1 0 16.8l-22.3 22.3c-4.6 4.6-12.1 4.6-16.8 0L256 295.1l-61.4 61.4c-4.6 4.6-12.1 4.6-16.8 0l-22.3-22.3c-4.6-4.6-4.6-12.1 0-16.8l61.4-61.4-61.4-61.4c-4.6-4.6-4.6-12.1 0-16.8l22.3-22.3c4.6-4.6 12.1-4.6 16.8 0l61.4 61.4 61.4-61.4c4.6-4.6 12.1-4.6 16.8 0l22.3 22.3c4.7 4.6 4.7 12.1 0 16.8z"], + "window-maximize": [512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V192h416v234z"], + "window-minimize": [512, 512, [], "f2d1", "M480 480H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h448c17.7 0 32 14.3 32 32s-14.3 32-32 32z"], + "window-restore": [512, 512, [], "f2d2", "M464 0H144c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-96 464H48V256h320v208zm96-96h-48V144c0-26.5-21.5-48-48-48H144V48h320v320z"] +}; + +bunker(function () { + define('far', icons); +}); + +}()); +(function () { +'use strict'; + +var _WINDOW = {}; +try { + if (typeof window !== 'undefined') _WINDOW = window; + +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; + + + + + +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; + + + + + + + + + +var PRODUCTION = function () { + try { + return undefined === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + + + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var icons = { + "address-book": [448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"], + "address-card": [576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-352 96c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H86.4C74 384 64 375.4 64 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2zM512 312c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z"], + "adjust": [512, 512, [], "f042", "M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z"], + "align-center": [448, 512, [], "f037", "M352 44v40c0 8.837-7.163 16-16 16H112c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h224c8.837 0 16 7.163 16 16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm320-200H112c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z"], + "align-justify": [448, 512, [], "f039", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm16 144h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0-128h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"], + "align-left": [448, 512, [], "f036", "M288 44v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16zM0 172v40c0 8.837 7.163 16 16 16h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16zm16 312h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm256-200H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z"], + "align-right": [448, 512, [], "f038", "M160 84V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H176c-8.837 0-16-7.163-16-16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"], + "allergies": [448, 512, [], "f461", "M416 112c-17.6 0-32 14.4-32 32v72c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v152c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V32c0-17.6-14.4-32-32-32s-32 14.4-32 32v184c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32S96 46.4 96 64v241l-23.6-32.5c-13-17.9-38-21.8-55.9-8.8s-21.8 38-8.8 55.9l125.6 172.7c9 12.4 23.5 19.8 38.8 19.8h197.6c22.3 0 41.6-15.3 46.7-37l26.5-112.7c3.2-13.7 4.9-28.3 5.1-42.3V144c0-17.6-14.4-32-32-32zM176 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 32c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32-128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"], + "ambulance": [640, 512, [], "f0f9", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm144-248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm176 248c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"], + "american-sign-language-interpreting": [640, 512, [], "f2a3", "M290.547 189.039c-20.295-10.149-44.147-11.199-64.739-3.89 42.606 0 71.208 20.475 85.578 50.576 8.576 17.899-5.148 38.071-23.617 38.071 18.429 0 32.211 20.136 23.617 38.071-14.725 30.846-46.123 50.854-80.298 50.854-.557 0-94.471-8.615-94.471-8.615l-66.406 33.347c-9.384 4.693-19.815.379-23.895-7.781L1.86 290.747c-4.167-8.615-1.111-18.897 6.946-23.621l58.072-33.069L108 159.861c6.39-57.245 34.731-109.767 79.743-146.726 11.391-9.448 28.341-7.781 37.51 3.613 9.446 11.394 7.78 28.067-3.612 37.516-12.503 10.559-23.618 22.509-32.509 35.57 21.672-14.729 46.679-24.732 74.186-28.067 14.725-1.945 28.063 8.336 29.73 23.065 1.945 14.728-8.336 28.067-23.062 29.734-16.116 1.945-31.12 7.503-44.178 15.284 26.114-5.713 58.712-3.138 88.079 11.115 13.336 6.669 18.893 22.509 12.224 35.848-6.389 13.06-22.504 18.617-35.564 12.226zm-27.229 69.472c-6.112-12.505-18.338-20.286-32.231-20.286a35.46 35.46 0 0 0-35.565 35.57c0 21.428 17.808 35.57 35.565 35.57 13.893 0 26.119-7.781 32.231-20.286 4.446-9.449 13.614-15.006 23.339-15.284-9.725-.277-18.893-5.835-23.339-15.284zm374.821-37.237c4.168 8.615 1.111 18.897-6.946 23.621l-58.071 33.069L532 352.16c-6.39 57.245-34.731 109.767-79.743 146.726-10.932 9.112-27.799 8.144-37.51-3.613-9.446-11.394-7.78-28.067 3.613-37.516 12.503-10.559 23.617-22.509 32.508-35.57-21.672 14.729-46.679 24.732-74.186 28.067-10.021 2.506-27.552-5.643-29.73-23.065-1.945-14.728 8.336-28.067 23.062-29.734 16.116-1.946 31.12-7.503 44.178-15.284-26.114 5.713-58.712 3.138-88.079-11.115-13.336-6.669-18.893-22.509-12.224-35.848 6.389-13.061 22.505-18.619 35.565-12.227 20.295 10.149 44.147 11.199 64.739 3.89-42.606 0-71.208-20.475-85.578-50.576-8.576-17.899 5.148-38.071 23.617-38.071-18.429 0-32.211-20.136-23.617-38.071 14.033-29.396 44.039-50.887 81.966-50.854l92.803 8.615 66.406-33.347c9.408-4.704 19.828-.354 23.894 7.781l44.455 88.926zm-229.227-18.618c-13.893 0-26.119 7.781-32.231 20.286-4.446 9.449-13.614 15.006-23.339 15.284 9.725.278 18.893 5.836 23.339 15.284 6.112 12.505 18.338 20.286 32.231 20.286a35.46 35.46 0 0 0 35.565-35.57c0-21.429-17.808-35.57-35.565-35.57z"], + "anchor": [576, 512, [], "f13d", "M12.971 352h32.394C67.172 454.735 181.944 512 288 512c106.229 0 220.853-57.38 242.635-160h32.394c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0l-67.029 67.029c-7.56 7.56-2.206 20.485 8.485 20.485h35.146c-20.29 54.317-84.963 86.588-144.117 94.015V256h52c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-52v-5.47c37.281-13.178 63.995-48.725 64-90.518C384.005 43.772 341.605.738 289.37.01 235.723-.739 192 42.525 192 96c0 41.798 26.716 77.35 64 90.53V192h-52c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v190.015c-58.936-7.399-123.82-39.679-144.117-94.015h35.146c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0L4.485 331.515C-3.074 339.074 2.28 352 12.971 352zM288 64c17.645 0 32 14.355 32 32s-14.355 32-32 32-32-14.355-32-32 14.355-32 32-32z"], + "angle-double-down": [320, 512, [], "f103", "M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z"], + "angle-double-left": [448, 512, [], "f100", "M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z"], + "angle-double-right": [448, 512, [], "f101", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z"], + "angle-double-up": [320, 512, [], "f102", "M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z"], + "angle-down": [320, 512, [], "f107", "M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"], + "angle-left": [256, 512, [], "f104", "M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"], + "angle-right": [256, 512, [], "f105", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"], + "angle-up": [320, 512, [], "f106", "M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z"], + "angry": [496, 512, [], "f556", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 240c0-9.3 4.1-17.5 10.5-23.4l-31-9.3c-8.5-2.5-13.3-11.5-10.7-19.9 2.5-8.5 11.4-13.2 19.9-10.7l80 24c8.5 2.5 13.3 11.5 10.7 19.9-2.1 6.9-8.4 11.4-15.3 11.4-.5 0-1.1-.2-1.7-.2.7 2.7 1.7 5.3 1.7 8.2 0 17.7-14.3 32-32 32S136 257.7 136 240zm168 154.2c-27.8-33.4-84.2-33.4-112.1 0-13.5 16.3-38.2-4.2-24.6-20.5 20-24 49.4-37.8 80.6-37.8s60.6 13.8 80.6 37.8c13.8 16.5-11.1 36.6-24.5 20.5zm76.6-186.9l-31 9.3c6.3 5.8 10.5 14.1 10.5 23.4 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-2.9.9-5.6 1.7-8.2-.6.1-1.1.2-1.7.2-6.9 0-13.2-4.5-15.3-11.4-2.5-8.5 2.3-17.4 10.7-19.9l80-24c8.4-2.5 17.4 2.3 19.9 10.7 2.5 8.5-2.3 17.4-10.8 19.9z"], + "archive": [512, 512, [], "f187", "M32 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160H32v288zm160-212c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v8c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-8zM480 32H32C14.3 32 0 46.3 0 64v48c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16V64c0-17.7-14.3-32-32-32z"], + "archway": [576, 512, [], "f557", "M560 448h-16V96H32v352H16.02c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16H176c8.84 0 16-7.16 16-16V320c0-53.02 42.98-96 96-96s96 42.98 96 96l.02 160v16c0 8.84 7.16 16 16 16H560c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm0-448H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h544c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16z"], + "arrow-alt-circle-down": [512, 512, [], "f358", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM212 140v116h-70.9c-10.7 0-16.1 13-8.5 20.5l114.9 114.3c4.7 4.7 12.2 4.7 16.9 0l114.9-114.3c7.6-7.6 2.2-20.5-8.5-20.5H300V140c0-6.6-5.4-12-12-12h-64c-6.6 0-12 5.4-12 12z"], + "arrow-alt-circle-left": [512, 512, [], "f359", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z"], + "arrow-alt-circle-right": [512, 512, [], "f35a", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z"], + "arrow-alt-circle-up": [512, 512, [], "f35b", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm292 116V256h70.9c10.7 0 16.1-13 8.5-20.5L264.5 121.2c-4.7-4.7-12.2-4.7-16.9 0l-115 114.3c-7.6 7.6-2.2 20.5 8.5 20.5H212v116c0 6.6 5.4 12 12 12h64c6.6 0 12-5.4 12-12z"], + "arrow-circle-down": [512, 512, [], "f0ab", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-143.6-28.9L288 302.6V120c0-13.3-10.7-24-24-24h-16c-13.3 0-24 10.7-24 24v182.6l-72.4-75.5c-9.3-9.7-24.8-9.9-34.3-.4l-10.9 11c-9.4 9.4-9.4 24.6 0 33.9L239 404.3c9.4 9.4 24.6 9.4 33.9 0l132.7-132.7c9.4-9.4 9.4-24.6 0-33.9l-10.9-11c-9.5-9.5-25-9.3-34.3.4z"], + "arrow-circle-left": [512, 512, [], "f0a8", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm28.9-143.6L209.4 288H392c13.3 0 24-10.7 24-24v-16c0-13.3-10.7-24-24-24H209.4l75.5-72.4c9.7-9.3 9.9-24.8.4-34.3l-11-10.9c-9.4-9.4-24.6-9.4-33.9 0L107.7 239c-9.4 9.4-9.4 24.6 0 33.9l132.7 132.7c9.4 9.4 24.6 9.4 33.9 0l11-10.9c9.5-9.5 9.3-25-.4-34.3z"], + "arrow-circle-right": [512, 512, [], "f0a9", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28.9 143.6l75.5 72.4H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h182.6l-75.5 72.4c-9.7 9.3-9.9 24.8-.4 34.3l11 10.9c9.4 9.4 24.6 9.4 33.9 0L404.3 273c9.4-9.4 9.4-24.6 0-33.9L271.6 106.3c-9.4-9.4-24.6-9.4-33.9 0l-11 10.9c-9.5 9.6-9.3 25.1.4 34.4z"], + "arrow-circle-up": [512, 512, [], "f0aa", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z"], + "arrow-down": [448, 512, [], "f063", "M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z"], + "arrow-left": [448, 512, [], "f060", "M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z"], + "arrow-right": [448, 512, [], "f061", "M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z"], + "arrow-up": [448, 512, [], "f062", "M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z"], + "arrows-alt": [512, 512, [], "f0b2", "M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z"], + "arrows-alt-h": [512, 512, [], "f337", "M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z"], + "arrows-alt-v": [256, 512, [], "f338", "M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z"], + "assistive-listening-systems": [512, 512, [], "f2a2", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z"], + "asterisk": [512, 512, [], "f069", "M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z"], + "at": [512, 512, [], "f1fa", "M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z"], + "atlas": [448, 512, [], "f558", "M318.38 208h-39.09c-1.49 27.03-6.54 51.35-14.21 70.41 27.71-13.24 48.02-39.19 53.3-70.41zm0-32c-5.29-31.22-25.59-57.17-53.3-70.41 7.68 19.06 12.72 43.38 14.21 70.41h39.09zM224 97.31c-7.69 7.45-20.77 34.42-23.43 78.69h46.87c-2.67-44.26-15.75-71.24-23.44-78.69zm-41.08 8.28c-27.71 13.24-48.02 39.19-53.3 70.41h39.09c1.49-27.03 6.53-51.35 14.21-70.41zm0 172.82c-7.68-19.06-12.72-43.38-14.21-70.41h-39.09c5.28 31.22 25.59 57.17 53.3 70.41zM247.43 208h-46.87c2.66 44.26 15.74 71.24 23.43 78.69 7.7-7.45 20.78-34.43 23.44-78.69zM448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM224 64c70.69 0 128 57.31 128 128s-57.31 128-128 128S96 262.69 96 192 153.31 64 224 64zm160 384H96c-19.2 0-32-12.8-32-32s16-32 32-32h288v64z"], + "audio-description": [512, 512, [], "f29e", "M162.925 238.709l8.822 30.655h-25.606l9.041-30.652c1.277-4.421 2.651-9.994 3.872-15.245 1.22 5.251 2.594 10.823 3.871 15.242zm166.474-32.099h-14.523v98.781h14.523c29.776 0 46.175-17.678 46.175-49.776 0-32.239-17.49-49.005-46.175-49.005zM512 112v288c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48zM245.459 336.139l-57.097-168A12.001 12.001 0 0 0 177 160h-35.894a12.001 12.001 0 0 0-11.362 8.139l-57.097 168C70.003 343.922 75.789 352 84.009 352h29.133a12 12 0 0 0 11.535-8.693l8.574-29.906h51.367l8.793 29.977A12 12 0 0 0 204.926 352h29.172c8.22 0 14.006-8.078 11.361-15.861zm184.701-80.525c0-58.977-37.919-95.614-98.96-95.614h-57.366c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12H331.2c61.041 0 98.96-36.933 98.96-96.386z"], + "award": [384, 512, [], "f559", "M97.12 362.63l-5.3-5.3a9.004 9.004 0 0 0-4.02-2.32L72 350.77c-9.51-2.55-17.87-7.45-25.43-13.32L1.2 448.7c-4.39 10.77 3.81 22.47 15.43 22.03l52.69-2.01L105.56 507c8 8.44 22.04 5.81 26.43-4.96l52.05-127.62c-10.84 6.04-22.87 9.58-35.31 9.58-19.5 0-37.82-7.59-51.61-21.37zM382.8 448.7l-45.37-111.24c-7.56 5.88-15.92 10.77-25.43 13.32l-15.8 4.23a9.004 9.004 0 0 0-4.02 2.32l-5.3 5.3C273.09 376.41 254.76 384 235.26 384c-12.44 0-24.47-3.55-35.31-9.58L252 502.04c4.39 10.77 18.44 13.4 26.43 4.96l36.25-38.28 52.69 2.01c11.62.44 19.82-11.27 15.43-22.03zM263 340l5.21-5.3c5-5.09 11.22-8.75 18.05-10.61l15.53-4.23c13.89-3.79 24.75-14.84 28.47-28.98l4.16-15.81a41.145 41.145 0 0 1 10.42-18.37l11.37-11.57c10.17-10.35 14.14-25.44 10.42-39.58l-4.16-15.81a41.657 41.657 0 0 1 0-21.21l4.16-15.81c3.72-14.14-.25-29.23-10.42-39.58l-11.37-11.57c-5-5.09-8.59-11.42-10.42-18.37l-4.16-15.8c-3.72-14.14-14.58-25.19-28.47-28.98l-15.53-4.24c-6.83-1.86-13.05-5.52-18.05-10.61L256.84 12c-10.17-10.35-25-14.4-38.89-10.61l-15.53 4.24a39.614 39.614 0 0 1-20.84 0L166.05 1.4c-13.89-3.79-28.72.25-38.89 10.61l-11.37 11.57c-5 5.09-11.22 8.74-18.05 10.61l-15.53 4.24c-13.89 3.79-24.75 14.84-28.47 28.98l-4.16 15.8a41.145 41.145 0 0 1-10.42 18.37l-11.37 11.57c-10.17 10.35-14.15 25.44-10.42 39.58l4.16 15.8a41.657 41.657 0 0 1 0 21.21l-4.16 15.8c-3.72 14.14.25 29.23 10.42 39.59l11.37 11.57c5 5.09 8.59 11.42 10.42 18.37l4.16 15.8c3.72 14.14 14.58 25.19 28.47 28.98l15.53 4.23c6.83 1.86 13.05 5.52 18.05 10.61L121 340c13.23 13.47 33.84 15.88 49.74 5.82a39.676 39.676 0 0 1 42.53 0c15.89 10.06 36.5 7.65 49.73-5.82zM97.66 175.96c0-53.03 42.24-96.02 94.34-96.02s94.34 42.99 94.34 96.02-42.24 96.02-94.34 96.02-94.34-42.99-94.34-96.02z"], + "backspace": [640, 512, [], "f55a", "M576 64H205.26A63.97 63.97 0 0 0 160 82.75L9.37 233.37c-12.5 12.5-12.5 32.76 0 45.25L160 429.25c12 12 28.28 18.75 45.25 18.75H576c35.35 0 64-28.65 64-64V128c0-35.35-28.65-64-64-64zm-84.69 254.06c6.25 6.25 6.25 16.38 0 22.63l-22.62 22.62c-6.25 6.25-16.38 6.25-22.63 0L384 301.25l-62.06 62.06c-6.25 6.25-16.38 6.25-22.63 0l-22.62-22.62c-6.25-6.25-6.25-16.38 0-22.63L338.75 256l-62.06-62.06c-6.25-6.25-6.25-16.38 0-22.63l22.62-22.62c6.25-6.25 16.38-6.25 22.63 0L384 210.75l62.06-62.06c6.25-6.25 16.38-6.25 22.63 0l22.62 22.62c6.25 6.25 6.25 16.38 0 22.63L429.25 256l62.06 62.06z"], + "backward": [512, 512, [], "f04a", "M11.5 280.6l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2zm256 0l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2z"], + "balance-scale": [640, 512, [], "f24e", "M256 336h-.02c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0C-2.06 328.75.02 320.33.02 336H0c0 44.18 57.31 80 128 80s128-35.82 128-80zM128 176l72 144H56l72-144zm511.98 160c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 320l72-144 72 144H440zm88 128H352V153.25c23.51-10.29 41.16-31.48 46.39-57.25H528c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H383.64C369.04 12.68 346.09 0 320 0s-49.04 12.68-63.64 32H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h129.61c5.23 25.76 22.87 46.96 46.39 57.25V448H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"], + "ban": [512, 512, [], "f05e", "M256 8C119.034 8 8 119.033 8 256s111.034 248 248 248 248-111.034 248-248S392.967 8 256 8zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676zM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676z"], + "band-aid": [640, 512, [], "f462", "M0 160v192c0 35.3 28.7 64 64 64h96V96H64c-35.3 0-64 28.7-64 64zm576-64h-96v320h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64zM192 416h256V96H192v320zm176-232c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24z"], + "barcode": [512, 512, [], "f02a", "M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z"], + "bars": [448, 512, [], "f0c9", "M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"], + "baseball-ball": [496, 512, [], "f433", "M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z"], + "basketball-ball": [496, 512, [], "f434", "M212.3 10.3c-43.8 6.3-86.2 24.1-122.2 53.8l77.4 77.4c27.8-35.8 43.3-81.2 44.8-131.2zM248 222L405.9 64.1c-42.4-35-93.6-53.5-145.5-56.1-1.2 63.9-21.5 122.3-58.7 167.7L248 222zM56.1 98.1c-29.7 36-47.5 78.4-53.8 122.2 50-1.5 95.5-17 131.2-44.8L56.1 98.1zm272.2 204.2c45.3-37.1 103.7-57.4 167.7-58.7-2.6-51.9-21.1-103.1-56.1-145.5L282 256l46.3 46.3zM248 290L90.1 447.9c42.4 34.9 93.6 53.5 145.5 56.1 1.3-64 21.6-122.4 58.7-167.7L248 290zm191.9 123.9c29.7-36 47.5-78.4 53.8-122.2-50.1 1.6-95.5 17.1-131.2 44.8l77.4 77.4zM167.7 209.7C122.3 246.9 63.9 267.3 0 268.4c2.6 51.9 21.1 103.1 56.1 145.5L214 256l-46.3-46.3zm116 292c43.8-6.3 86.2-24.1 122.2-53.8l-77.4-77.4c-27.7 35.7-43.2 81.2-44.8 131.2z"], + "bath": [512, 512, [], "f2cd", "M488 256H80V112c0-17.645 14.355-32 32-32 11.351 0 21.332 5.945 27.015 14.88-16.492 25.207-14.687 59.576 6.838 83.035-4.176 4.713-4.021 11.916.491 16.428l11.314 11.314c4.686 4.686 12.284 4.686 16.971 0l95.03-95.029c4.686-4.686 4.686-12.284 0-16.971l-11.314-11.314c-4.512-4.512-11.715-4.666-16.428-.491-17.949-16.469-42.294-21.429-64.178-15.365C163.281 45.667 139.212 32 112 32c-44.112 0-80 35.888-80 80v144h-8c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h8v32c0 28.43 12.362 53.969 32 71.547V456c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-8h256v8c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-32.453c19.638-17.578 32-43.117 32-71.547v-32h8c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z"], + "battery-empty": [640, 512, [], "f244", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48z"], + "battery-full": [640, 512, [], "f240", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-48 96H96v128h416V192z"], + "battery-half": [640, 512, [], "f242", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-240 96H96v128h224V192z"], + "battery-quarter": [640, 512, [], "f243", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-336 96H96v128h128V192z"], + "battery-three-quarters": [640, 512, [], "f241", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-144 96H96v128h320V192z"], + "bed": [640, 512, [], "f236", "M176 256c44.11 0 80-35.89 80-80s-35.89-80-80-80-80 35.89-80 80 35.89 80 80 80zm352-128H304c-8.84 0-16 7.16-16 16v144H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v352c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h512v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V240c0-61.86-50.14-112-112-112z"], + "beer": [448, 512, [], "f0fc", "M368 96h-48V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24v-42.11l80.606-35.977C429.396 365.063 448 336.388 448 304.86V176c0-44.112-35.888-80-80-80zm16 208.86a16.018 16.018 0 0 1-9.479 14.611L320 343.805V160h48c8.822 0 16 7.178 16 16v128.86zM208 384c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16zm-96 0c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16z"], + "bell": [448, 512, [], "f0f3", "M433.884 366.059C411.634 343.809 384 316.118 384 208c0-79.394-57.831-145.269-133.663-157.83A31.845 31.845 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 6.75 2.095 13.008 5.663 18.17C121.831 62.731 64 128.606 64 208c0 108.118-27.643 135.809-49.893 158.059C-16.042 396.208 5.325 448 48.048 448H160c0 35.346 28.654 64 64 64s64-28.654 64-64h111.943c42.638 0 64.151-51.731 33.941-81.941zM224 472a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16c0 13.234 10.766 24 24 24z"], + "bell-slash": [576, 512, [], "f1f6", "M78.107 366.059C47.958 396.208 69.325 448 112.048 448H224c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h32.685L127.848 221.379c-2.198 97.078-28.439 123.378-49.741 144.68zM264 448c0 13.234 10.766 24 24 24a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16zm305.896 43.733l-10.762 12.086c-8.915 10.012-24.333 10.967-34.437 2.133L8.256 54.393C-1.848 45.558-2.811 30.28 6.104 20.267L16.865 8.181C25.781-1.831 41.199-2.786 51.303 6.049l113.81 99.512c24.017-28.778 57.946-48.996 96.55-55.39A31.85 31.85 0 0 1 256 32c0-17.673 14.327-32 32-32s32 14.327 32 32c0 6.75-2.095 13.008-5.663 18.17C390.169 62.731 448 128.606 448 208c0 108.118 27.634 135.809 49.884 158.059 12.149 12.149 15.923 27.776 13.33 42.121l56.53 49.427c10.104 8.835 11.067 24.113 2.152 34.126z"], + "bezier-curve": [640, 512, [], "f55b", "M368 32h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM208 88h-84.75C113.75 64.56 90.84 48 64 48 28.66 48 0 76.65 0 112s28.66 64 64 64c26.84 0 49.75-16.56 59.25-40h79.73c-55.37 32.52-95.86 87.32-109.54 152h49.4c11.3-41.61 36.77-77.21 71.04-101.56-3.7-8.08-5.88-16.99-5.88-26.44V88zm-48 232H64c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zM576 48c-26.84 0-49.75 16.56-59.25 40H432v72c0 9.45-2.19 18.36-5.88 26.44 34.27 24.35 59.74 59.95 71.04 101.56h49.4c-13.68-64.68-54.17-119.48-109.54-152h79.73c9.5 23.44 32.41 40 59.25 40 35.34 0 64-28.65 64-64s-28.66-64-64-64zm0 272h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"], + "bicycle": [640, 512, [], "f206", "M512.509 192.001c-16.373-.064-32.03 2.955-46.436 8.495l-77.68-125.153A24 24 0 0 0 368.001 64h-64c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h50.649l14.896 24H256.002v-16c0-8.837-7.163-16-16-16h-87.459c-13.441 0-24.777 10.999-24.536 24.437.232 13.044 10.876 23.563 23.995 23.563h48.726l-29.417 47.52c-13.433-4.83-27.904-7.483-42.992-7.52C58.094 191.83.412 249.012.002 319.236-.413 390.279 57.055 448 128.002 448c59.642 0 109.758-40.793 123.967-96h52.033a24 24 0 0 0 20.406-11.367L410.37 201.77l14.938 24.067c-25.455 23.448-41.385 57.081-41.307 94.437.145 68.833 57.899 127.051 126.729 127.719 70.606.685 128.181-55.803 129.255-125.996 1.086-70.941-56.526-129.72-127.476-129.996zM186.75 265.772c9.727 10.529 16.673 23.661 19.642 38.228h-43.306l23.664-38.228zM128.002 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c5.869 0 11.586.653 17.099 1.859l-45.505 73.509C89.715 331.327 101.213 352 120.002 352h81.3c-12.37 28.225-40.562 48-73.3 48zm162.63-96h-35.624c-3.96-31.756-19.556-59.894-42.383-80.026L237.371 184h127.547l-74.286 120zm217.057 95.886c-41.036-2.165-74.049-35.692-75.627-76.755-.812-21.121 6.633-40.518 19.335-55.263l44.433 71.586c4.66 7.508 14.524 9.816 22.032 5.156l13.594-8.437c7.508-4.66 9.817-14.524 5.156-22.032l-44.468-71.643a79.901 79.901 0 0 1 19.858-2.497c44.112 0 80 35.888 80 80-.001 45.54-38.252 82.316-84.313 79.885z"], + "binoculars": [512, 512, [], "f1e5", "M192 104H96V56c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24v48zm224-48c0-13.255-10.745-24-24-24h-48c-13.255 0-24 10.745-24 24v48h96V56zM0 456c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H0v16zm88-328c-13.255 0-24 10.745-24 24C64 256 0 272 0 416h168V312c0-13.255 10.745-24 24-24V128H88zm256 328c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H344v16zM216 128v160h80V128h-80zm128 288h168c0-144-64-160-64-264 0-13.255-10.745-24-24-24H320v160c13.255 0 24 10.745 24 24v104z"], + "birthday-cake": [448, 512, [], "f1fd", "M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z"], + "blender": [512, 512, [], "f517", "M416 384H160c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-128 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm40-416h166.54L512 0H48C21.49 0 0 21.49 0 48v160c0 26.51 21.49 48 48 48h103.27l8.73 96h256l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H328c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM64 192V64h69.82l11.64 128H64z"], + "blind": [384, 512, [], "f29d", "M380.15 510.837a8 8 0 0 1-10.989-2.687l-125.33-206.427a31.923 31.923 0 0 0 12.958-9.485l126.048 207.608a8 8 0 0 1-2.687 10.991zM142.803 314.338l-32.54 89.485 36.12 88.285c6.693 16.36 25.377 24.192 41.733 17.501 16.357-6.692 24.193-25.376 17.501-41.734l-62.814-153.537zM96 88c24.301 0 44-19.699 44-44S120.301 0 96 0 52 19.699 52 44s19.699 44 44 44zm154.837 169.128l-120-152c-4.733-5.995-11.75-9.108-18.837-9.112V96H80v.026c-7.146.003-14.217 3.161-18.944 9.24L0 183.766v95.694c0 13.455 11.011 24.791 24.464 24.536C37.505 303.748 48 293.1 48 280v-79.766l16-20.571v140.698L9.927 469.055c-6.04 16.609 2.528 34.969 19.138 41.009 16.602 6.039 34.968-2.524 41.009-19.138L136 309.638V202.441l-31.406-39.816a4 4 0 1 1 6.269-4.971l102.3 129.217c9.145 11.584 24.368 11.339 33.708 3.965 10.41-8.216 12.159-23.334 3.966-33.708z"], + "bold": [384, 512, [], "f032", "M304.793 243.891c33.639-18.537 53.657-54.16 53.657-95.693 0-48.236-26.25-87.626-68.626-104.179C265.138 34.01 240.849 32 209.661 32H24c-8.837 0-16 7.163-16 16v33.049c0 8.837 7.163 16 16 16h33.113v318.53H24c-8.837 0-16 7.163-16 16V464c0 8.837 7.163 16 16 16h195.69c24.203 0 44.834-1.289 66.866-7.584C337.52 457.193 376 410.647 376 350.014c0-52.168-26.573-91.684-71.207-106.123zM142.217 100.809h67.444c16.294 0 27.536 2.019 37.525 6.717 15.828 8.479 24.906 26.502 24.906 49.446 0 35.029-20.32 56.79-53.029 56.79h-76.846V100.809zm112.642 305.475c-10.14 4.056-22.677 4.907-31.409 4.907h-81.233V281.943h84.367c39.645 0 63.057 25.38 63.057 63.057.001 28.425-13.66 52.483-34.782 61.284z"], + "bolt": [320, 512, [], "f0e7", "M295.973 160H180.572L215.19 30.184C219.25 14.956 207.756 0 192 0H56C43.971 0 33.8 8.905 32.211 20.828l-31.996 240C-1.704 275.217 9.504 288 24.004 288h118.701L96.646 482.466C93.05 497.649 104.659 512 119.992 512c8.35 0 16.376-4.374 20.778-11.978l175.973-303.997c9.244-15.967-2.288-36.025-20.77-36.025z"], + "bomb": [512, 512, [], "f1e2", "M440.5 88.5l-52 52L415 167c9.4 9.4 9.4 24.6 0 33.9l-17.4 17.4c11.8 26.1 18.4 55.1 18.4 85.6 0 114.9-93.1 208-208 208S0 418.9 0 304 93.1 96 208 96c30.5 0 59.5 6.6 85.6 18.4L311 97c9.4-9.4 24.6-9.4 33.9 0l26.5 26.5 52-52 17.1 17zM500 60h-24c-6.6 0-12 5.4-12 12s5.4 12 12 12h24c6.6 0 12-5.4 12-12s-5.4-12-12-12zM440 0c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12s12-5.4 12-12V12c0-6.6-5.4-12-12-12zm33.9 55l17-17c4.7-4.7 4.7-12.3 0-17-4.7-4.7-12.3-4.7-17 0l-17 17c-4.7 4.7-4.7 12.3 0 17 4.8 4.7 12.4 4.7 17 0zm-67.8 0c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17zm67.8 34c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17zM112 272c0-35.3 28.7-64 64-64 8.8 0 16-7.2 16-16s-7.2-16-16-16c-52.9 0-96 43.1-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16z"], + "bong": [448, 512, [], "f55c", "M302.5 512c23.18 0 44.43-12.58 56-32.66C374.69 451.26 384 418.75 384 384c0-36.12-10.08-69.81-27.44-98.62L400 241.94l9.38 9.38c6.25 6.25 16.38 6.25 22.63 0l11.3-11.32c6.25-6.25 6.25-16.38 0-22.63l-52.69-52.69c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63l9.38 9.38-39.41 39.41c-11.56-11.37-24.53-21.33-38.65-29.51V63.74l15.97-.02c8.82-.01 15.97-7.16 15.98-15.98l.04-31.72C320 7.17 312.82-.01 303.97 0L80.03.26c-8.82.01-15.97 7.16-15.98 15.98l-.04 31.73c-.01 8.85 7.17 16.02 16.02 16.01L96 63.96v153.93C38.67 251.1 0 312.97 0 384c0 34.75 9.31 67.27 25.5 95.34C37.08 499.42 58.33 512 81.5 512h221zM120.06 259.43L144 245.56V63.91l96-.11v181.76l23.94 13.87c24.81 14.37 44.12 35.73 56.56 60.57h-257c12.45-24.84 31.75-46.2 56.56-60.57z"], + "book": [448, 512, [], "f02d", "M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z"], + "book-open": [576, 512, [], "f518", "M542.22 32.05c-54.8 3.11-163.72 14.43-230.96 55.59-4.64 2.84-7.27 7.89-7.27 13.17v363.87c0 11.55 12.63 18.85 23.28 13.49 69.18-34.82 169.23-44.32 218.7-46.92 16.89-.89 30.02-14.43 30.02-30.66V62.75c.01-17.71-15.35-31.74-33.77-30.7zM264.73 87.64C197.5 46.48 88.58 35.17 33.78 32.05 15.36 31.01 0 45.04 0 62.75V400.6c0 16.24 13.13 29.78 30.02 30.66 49.49 2.6 149.59 12.11 218.77 46.95 10.62 5.35 23.21-1.94 23.21-13.46V100.63c0-5.29-2.62-10.14-7.27-12.99z"], + "bookmark": [384, 512, [], "f02e", "M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z"], + "bowling-ball": [496, 512, [], "f436", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM120 192c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64-96c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm48 144c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "box": [512, 512, [], "f466", "M509.5 184.6L458.9 32.8C452.4 13.2 434.1 0 413.4 0H272v192h238.7c-.4-2.5-.4-5-1.2-7.4zM240 0H98.6c-20.7 0-39 13.2-45.5 32.8L2.5 184.6c-.8 2.4-.8 4.9-1.2 7.4H240V0zM0 224v240c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V224H0z"], + "box-open": [640, 512, [], "f49e", "M53.2 41L1.7 143.8c-4.6 9.2.3 20.2 10.1 23l197.9 56.5c7.1 2 14.7-1 18.5-7.3L320 64 69.8 32.1c-6.9-.8-13.5 2.7-16.6 8.9zm585.1 102.8L586.8 41c-3.1-6.2-9.8-9.8-16.7-8.9L320 64l91.7 152.1c3.8 6.3 11.4 9.3 18.5 7.3l197.9-56.5c9.9-2.9 14.7-13.9 10.2-23.1zM425.7 256c-16.9 0-32.8-9-41.4-23.4L320 126l-64.2 106.6c-8.7 14.5-24.6 23.5-41.5 23.5-4.5 0-9-.6-13.3-1.9L64 215v178c0 14.7 10 27.5 24.2 31l216.2 54.1c10.2 2.5 20.9 2.5 31 0L551.8 424c14.2-3.6 24.2-16.4 24.2-31V215l-137 39.1c-4.3 1.3-8.8 1.9-13.3 1.9z"], + "boxes": [576, 512, [], "f468", "M560 288h-80v96l-32-21.3-32 21.3v-96h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16zm-384-64h224c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16h-80v96l-32-21.3L256 96V0h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16zm64 64h-80v96l-32-21.3L96 384v-96H16c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16z"], + "braille": [640, 512, [], "f2a1", "M128 256c0 35.346-28.654 64-64 64S0 291.346 0 256s28.654-64 64-64 64 28.654 64 64zM64 384c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352C28.654 32 0 60.654 0 96s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm224 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-320c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"], + "briefcase": [512, 512, [], "f0b1", "M320 288h192v144c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V288h192v20c0 6.627 5.373 12 12 12h104c6.627 0 12-5.373 12-12v-20zm192-112v80H0v-80c0-26.51 21.49-48 48-48h80V80c0-26.51 21.49-48 48-48h160c26.51 0 48 21.49 48 48v48h80c26.51 0 48 21.49 48 48zM320 96H192v32h128V96z"], + "briefcase-medical": [512, 512, [], "f469", "M464 128h-80V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48zM192 96h128v32H192V96zm160 248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48z"], + "broadcast-tower": [640, 512, [], "f519", "M150.94 192h33.73c11.01 0 18.61-10.83 14.86-21.18-4.93-13.58-7.55-27.98-7.55-42.82s2.62-29.24 7.55-42.82C203.29 74.83 195.68 64 184.67 64h-33.73c-7.01 0-13.46 4.49-15.41 11.23C130.64 92.21 128 109.88 128 128c0 18.12 2.64 35.79 7.54 52.76 1.94 6.74 8.39 11.24 15.4 11.24zM89.92 23.34C95.56 12.72 87.97 0 75.96 0H40.63c-6.27 0-12.14 3.59-14.74 9.31C9.4 45.54 0 85.65 0 128c0 24.75 3.12 68.33 26.69 118.86 2.62 5.63 8.42 9.14 14.61 9.14h34.84c12.02 0 19.61-12.74 13.95-23.37-49.78-93.32-16.71-178.15-.17-209.29zM614.06 9.29C611.46 3.58 605.6 0 599.33 0h-35.42c-11.98 0-19.66 12.66-14.02 23.25 18.27 34.29 48.42 119.42.28 209.23-5.72 10.68 1.8 23.52 13.91 23.52h35.23c6.27 0 12.13-3.58 14.73-9.29C630.57 210.48 640 170.36 640 128s-9.42-82.48-25.94-118.71zM489.06 64h-33.73c-11.01 0-18.61 10.83-14.86 21.18 4.93 13.58 7.55 27.98 7.55 42.82s-2.62 29.24-7.55 42.82c-3.76 10.35 3.85 21.18 14.86 21.18h33.73c7.02 0 13.46-4.49 15.41-11.24 4.9-16.97 7.53-34.64 7.53-52.76 0-18.12-2.64-35.79-7.54-52.76-1.94-6.75-8.39-11.24-15.4-11.24zm-116.3 100.12c7.05-10.29 11.2-22.71 11.2-36.12 0-35.35-28.63-64-63.96-64-35.32 0-63.96 28.65-63.96 64 0 13.41 4.15 25.83 11.2 36.12l-130.5 313.41c-3.4 8.15.46 17.52 8.61 20.92l29.51 12.31c8.15 3.4 17.52-.46 20.91-8.61L244.96 384h150.07l49.2 118.15c3.4 8.16 12.76 12.01 20.91 8.61l29.51-12.31c8.15-3.4 12-12.77 8.61-20.92l-130.5-313.41zM271.62 320L320 203.81 368.38 320h-96.76z"], + "broom": [512, 512, [], "f51a", "M10.8 247.2C-.7 251.8-3.7 266.7 5 275.4l54.8 54.8 73.2-24.4-24.4 73.2 128 128c8.8 8.8 23.6 5.7 28.2-5.8l98.1-243.7-108.4-108.4-243.7 98.1zM507.3 27.3L484.7 4.7c-6.2-6.3-16.4-6.3-22.6 0L359.8 106.9l-40.4-40.4c-4.2-4.3-11.4-3-13.9 2.5l-27.2 58.6 106.1 106.1 58.6-27.2c5.4-2.5 6.7-9.7 2.5-13.9l-40.4-40.4L507.3 49.9c6.3-6.2 6.3-16.3 0-22.6z"], + "brush": [384, 512, [], "f55d", "M352 0H32C14.33 0 0 14.33 0 32v224h384V32c0-17.67-14.33-32-32-32zM0 320c0 35.35 28.66 64 64 64h64v64c0 35.35 28.66 64 64 64s64-28.65 64-64v-64h64c35.34 0 64-28.65 64-64v-32H0v32zm192 104c13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24s-24-10.75-24-24c0-13.26 10.75-24 24-24z"], + "bug": [512, 512, [], "f188", "M511.988 288.9c-.478 17.43-15.217 31.1-32.653 31.1H424v16c0 21.864-4.882 42.584-13.6 61.145l60.228 60.228c12.496 12.497 12.496 32.758 0 45.255-12.498 12.497-32.759 12.496-45.256 0l-54.736-54.736C345.886 467.965 314.351 480 280 480V236c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v244c-34.351 0-65.886-12.035-90.636-32.108l-54.736 54.736c-12.498 12.497-32.759 12.496-45.256 0-12.496-12.497-12.496-32.758 0-45.255l60.228-60.228C92.882 378.584 88 357.864 88 336v-16H32.666C15.23 320 .491 306.33.013 288.9-.484 270.816 14.028 256 32 256h56v-58.745l-46.628-46.628c-12.496-12.497-12.496-32.758 0-45.255 12.498-12.497 32.758-12.497 45.256 0L141.255 160h229.489l54.627-54.627c12.498-12.497 32.758-12.497 45.256 0 12.496 12.497 12.496 32.758 0 45.255L424 197.255V256h56c17.972 0 32.484 14.816 31.988 32.9zM257 0c-61.856 0-112 50.144-112 112h224C369 50.144 318.856 0 257 0z"], + "building": [448, 512, [], "f1ad", "M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z"], + "bullhorn": [576, 512, [], "f0a1", "M576 224c0-20.896-13.36-38.666-32-45.258V64c0-35.346-28.654-64-64-64-64.985 56-142.031 128-272 128H48c-26.51 0-48 21.49-48 48v96c0 26.51 21.49 48 48 48h43.263c-18.742 64.65 2.479 116.379 18.814 167.44 1.702 5.32 5.203 9.893 9.922 12.88 20.78 13.155 68.355 15.657 93.773 5.151 16.046-6.633 19.96-27.423 7.522-39.537-18.508-18.026-30.136-36.91-19.795-60.858a12.278 12.278 0 0 0-1.045-11.673c-16.309-24.679-3.581-62.107 28.517-72.752C346.403 327.887 418.591 395.081 480 448c35.346 0 64-28.654 64-64V269.258c18.64-6.592 32-24.362 32-45.258zm-96 139.855c-54.609-44.979-125.033-92.94-224-104.982v-69.747c98.967-12.042 169.391-60.002 224-104.982v279.711z"], + "bullseye": [512, 512, [], "f140", "M256 72c101.689 0 184 82.295 184 184 0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-101.689 82.295-184 184-184m0-64C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 184c35.29 0 64 28.71 64 64s-28.71 64-64 64-64-28.71-64-64 28.71-64 64-64m0-64c-70.692 0-128 57.308-128 128s57.308 128 128 128 128-57.308 128-128-57.308-128-128-128z"], + "burn": [384, 512, [], "f46a", "M192 0C79.7 101.3 0 220.9 0 300.5 0 425 79 512 192 512s192-87 192-211.5c0-79.9-80.2-199.6-192-300.5zm0 448c-56.5 0-96-39-96-94.8 0-13.5 4.6-61.5 96-161.2 91.4 99.7 96 147.7 96 161.2 0 55.8-39.5 94.8-96 94.8z"], + "bus": [512, 512, [], "f207", "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM112 400c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm16-112c-17.67 0-32-14.33-32-32V128c0-17.67 14.33-32 32-32h256c17.67 0 32 14.33 32 32v128c0 17.67-14.33 32-32 32H128zm272 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "bus-alt": [512, 512, [], "f55e", "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM160 72c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H168c-4.42 0-8-3.58-8-8V72zm-48 328c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm128-112H128c-17.67 0-32-14.33-32-32v-96c0-17.67 14.33-32 32-32h112v160zm32 0V128h112c17.67 0 32 14.33 32 32v96c0 17.67-14.33 32-32 32H272zm128 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "calculator": [448, 512, [], "f1ec", "M0 464V48C0 21.49 21.49 0 48 0h352c26.51 0 48 21.49 48 48v416c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm384-284V76c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v104c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12zM128 308v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm256 128V268c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-256 0v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm128-128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm0 128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"], + "calendar": [448, 512, [], "f133", "M12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm436-44v-36c0-26.5-21.5-48-48-48h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v36c0 6.6 5.4 12 12 12h424c6.6 0 12-5.4 12-12z"], + "calendar-alt": [448, 512, [], "f073", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm116 204c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40z"], + "calendar-check": [448, 512, [], "f274", "M436 160H12c-6.627 0-12-5.373-12-12v-36c0-26.51 21.49-48 48-48h48V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h128V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h48c26.51 0 48 21.49 48 48v36c0 6.627-5.373 12-12 12zM12 192h424c6.627 0 12 5.373 12 12v260c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V204c0-6.627 5.373-12 12-12zm333.296 95.947l-28.169-28.398c-4.667-4.705-12.265-4.736-16.97-.068L194.12 364.665l-45.98-46.352c-4.667-4.705-12.266-4.736-16.971-.068l-28.397 28.17c-4.705 4.667-4.736 12.265-.068 16.97l82.601 83.269c4.667 4.705 12.265 4.736 16.97.068l142.953-141.805c4.705-4.667 4.736-12.265.068-16.97z"], + "calendar-minus": [448, 512, [], "f272", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm304 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H132c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h184z"], + "calendar-plus": [448, 512, [], "f271", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm316 140c0-6.6-5.4-12-12-12h-60v-60c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v60h-60c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h60v60c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-60h60c6.6 0 12-5.4 12-12v-40z"], + "calendar-times": [448, 512, [], "f273", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm257.3 160l48.1-48.1c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0L224 306.7l-48.1-48.1c-4.7-4.7-12.3-4.7-17 0l-28.3 28.3c-4.7 4.7-4.7 12.3 0 17l48.1 48.1-48.1 48.1c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l48.1-48.1 48.1 48.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L269.3 352z"], + "camera": [512, 512, [], "f030", "M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z"], + "camera-retro": [512, 512, [], "f083", "M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm0 32h106c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H38c-3.3 0-6-2.7-6-6V80c0-8.8 7.2-16 16-16zm426 96H38c-3.3 0-6-2.7-6-6v-36c0-3.3 2.7-6 6-6h138l30.2-45.3c1.1-1.7 3-2.7 5-2.7H464c8.8 0 16 7.2 16 16v74c0 3.3-2.7 6-6 6zM256 424c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88zm-48 104c-8.8 0-16-7.2-16-16 0-35.3 28.7-64 64-64 8.8 0 16 7.2 16 16s-7.2 16-16 16c-17.6 0-32 14.4-32 32 0 8.8-7.2 16-16 16z"], + "cannabis": [512, 512, [], "f55f", "M503.47 360.25c-1.56-.82-32.39-16.89-76.78-25.81 64.25-75.12 84.05-161.67 84.93-165.64 1.18-5.33-.44-10.9-4.3-14.77-3.03-3.04-7.12-4.7-11.32-4.7-1.14 0-2.29.12-3.44.38-3.88.85-86.54 19.59-160.58 79.76.01-1.46.01-2.93.01-4.4 0-118.79-59.98-213.72-62.53-217.7A15.973 15.973 0 0 0 256 0c-5.45 0-10.53 2.78-13.47 7.37-2.55 3.98-62.53 98.91-62.53 217.7 0 1.47.01 2.94.01 4.4-74.03-60.16-156.69-78.9-160.58-79.76-1.14-.25-2.29-.38-3.44-.38-4.2 0-8.29 1.66-11.32 4.7A15.986 15.986 0 0 0 .38 168.8c.88 3.97 20.68 90.52 84.93 165.64-44.39 8.92-75.21 24.99-76.78 25.81a16.003 16.003 0 0 0-.02 28.29c2.45 1.29 60.76 31.72 133.49 31.72 6.14 0 11.96-.1 17.5-.31-11.37 22.23-16.52 38.31-16.81 39.22-1.8 5.68-.29 11.89 3.91 16.11a16.019 16.019 0 0 0 16.1 3.99c1.83-.57 37.72-11.99 77.3-39.29V504c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8v-64.01c39.58 27.3 75.47 38.71 77.3 39.29a16.019 16.019 0 0 0 16.1-3.99c4.2-4.22 5.71-10.43 3.91-16.11-.29-.91-5.45-16.99-16.81-39.22 5.54.21 11.37.31 17.5.31 72.72 0 131.04-30.43 133.49-31.72 5.24-2.78 8.52-8.22 8.51-14.15-.01-5.94-3.29-11.39-8.53-14.15z"], + "capsules": [576, 512, [], "f46b", "M555.3 300.1L424.2 112.8C401.9 81 366.4 64 330.4 64c-22.6 0-45.5 6.7-65.5 20.7-19.7 13.8-33.7 32.8-41.5 53.8C220.5 79.2 172 32 112 32 50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V218.9c3.3 8.6 7.3 17.1 12.8 25L368 431.2c22.2 31.8 57.7 48.8 93.8 48.8 22.7 0 45.5-6.7 65.5-20.7 51.7-36.2 64.2-107.5 28-159.2zM160 256H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm194.8 44.9l-65.6-93.7c-7.7-11-10.7-24.4-8.3-37.6 2.3-13.2 9.7-24.8 20.7-32.5 8.5-6 18.5-9.1 28.8-9.1 16.5 0 31.9 8 41.3 21.5l65.6 93.7-82.5 57.7z"], + "car": [512, 512, [], "f1b9", "M499.991 168h-54.815l-7.854-20.944c-9.192-24.513-25.425-45.351-46.942-60.263S343.651 64 317.472 64H194.528c-26.18 0-51.391 7.882-72.908 22.793-21.518 14.912-37.75 35.75-46.942 60.263L66.824 168H12.009c-8.191 0-13.974 8.024-11.384 15.795l8 24A12 12 0 0 0 20.009 216h28.815l-.052.14C29.222 227.093 16 247.997 16 272v48c0 16.225 6.049 31.029 16 42.309V424c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-40h256v40c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-61.691c9.951-11.281 16-26.085 16-42.309v-48c0-24.003-13.222-44.907-32.772-55.86l-.052-.14h28.815a12 12 0 0 0 11.384-8.205l8-24c2.59-7.771-3.193-15.795-11.384-15.795zm-365.388 1.528C143.918 144.689 168 128 194.528 128h122.944c26.528 0 50.61 16.689 59.925 41.528L391.824 208H120.176l14.427-38.472zM88 328c-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32s48 30.327 48 48-30.327 16-48 16zm336 0c-17.673 0-48 1.673-48-16 0-17.673 30.327-48 48-48s32 14.327 32 32c0 17.673-14.327 32-32 32z"], + "caret-down": [320, 512, [], "f0d7", "M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z"], + "caret-left": [192, 512, [], "f0d9", "M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z"], + "caret-right": [192, 512, [], "f0da", "M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z"], + "caret-square-down": [448, 512, [], "f150", "M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM92.5 220.5l123 123c4.7 4.7 12.3 4.7 17 0l123-123c7.6-7.6 2.2-20.5-8.5-20.5H101c-10.7 0-16.1 12.9-8.5 20.5z"], + "caret-square-left": [448, 512, [], "f191", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM259.515 124.485l-123.03 123.03c-4.686 4.686-4.686 12.284 0 16.971l123.029 123.029c7.56 7.56 20.485 2.206 20.485-8.485V132.971c.001-10.691-12.925-16.045-20.484-8.486z"], + "caret-square-right": [448, 512, [], "f152", "M48 32h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48zm140.485 355.515l123.029-123.029c4.686-4.686 4.686-12.284 0-16.971l-123.029-123.03c-7.56-7.56-20.485-2.206-20.485 8.485v246.059c0 10.691 12.926 16.045 20.485 8.486z"], + "caret-square-up": [448, 512, [], "f151", "M0 432V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm355.515-140.485l-123.03-123.03c-4.686-4.686-12.284-4.686-16.971 0L92.485 291.515c-7.56 7.56-2.206 20.485 8.485 20.485h246.059c10.691 0 16.045-12.926 8.486-20.485z"], + "caret-up": [320, 512, [], "f0d8", "M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z"], + "cart-arrow-down": [576, 512, [], "f218", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z"], + "cart-plus": [576, 512, [], "f217", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM408 168h-48v-40c0-8.837-7.163-16-16-16h-16c-8.837 0-16 7.163-16 16v40h-48c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h48v40c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-40h48c8.837 0 16-7.163 16-16v-16c0-8.837-7.163-16-16-16z"], + "certificate": [512, 512, [], "f0a3", "M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z"], + "chalkboard": [640, 512, [], "f51b", "M96 64h448v352h64V40c0-22.06-17.94-40-40-40H72C49.94 0 32 17.94 32 40v376h64V64zm528 384H480v-64H288v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"], + "chalkboard-teacher": [640, 512, [], "f51c", "M208 352c-2.39 0-4.78.35-7.06 1.09C187.98 357.3 174.35 360 160 360c-14.35 0-27.98-2.7-40.95-6.91-2.28-.74-4.66-1.09-7.05-1.09C49.94 352-.33 402.48 0 464.62.14 490.88 21.73 512 48 512h224c26.27 0 47.86-21.12 48-47.38.33-62.14-49.94-112.62-112-112.62zm-48-32c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM592 0H208c-26.47 0-48 22.25-48 49.59V96c23.42 0 45.1 6.78 64 17.8V64h352v288h-64v-64H384v64h-76.24c19.1 16.69 33.12 38.73 39.69 64H592c26.47 0 48-22.25 48-49.59V49.59C640 22.25 618.47 0 592 0z"], + "chart-area": [512, 512, [], "f1fe", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z"], + "chart-bar": [512, 512, [], "f080", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zm-308-44v-72c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V204c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V108c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"], + "chart-line": [512, 512, [], "f201", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM456 96H344c-21.4 0-32.1 25.9-17 41l32.9 32.9-72 72.9-55.6-55.6c-4.7-4.7-12.2-4.7-16.9 0L96.4 305c-4.7 4.6-4.8 12.2-.2 16.9l28.5 29.4c4.7 4.8 12.4 4.9 17.1.1l82.1-82.1 55.5 55.5c4.7 4.7 12.3 4.7 17 0l109.2-109.2L439 249c15.1 15.1 41 4.4 41-17V120c0-13.3-10.7-24-24-24z"], + "chart-pie": [576, 512, [], "f200", "M288 12.3V240h227.7c6.9 0 12.3-5.8 12-12.7-6.4-122.4-104.5-220.6-227-227-6.9-.3-12.7 5.1-12.7 12zM552.7 288c6.9 0 12.3 5.8 12 12.7-2.8 53.2-23.2 105.6-61.2 147.8-4.6 5.1-12.6 5.4-17.5.5L325 288h227.7zM401 433c4.8 4.8 4.7 12.8-.4 17.3-42.6 38.4-99 61.7-160.8 61.7C107.6 511.9-.2 403.8 0 271.5.2 143.4 100.8 38.9 227.3 32.3c6.9-.4 12.7 5.1 12.7 12V272l161 161z"], + "check": [512, 512, [], "f00c", "M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"], + "check-circle": [512, 512, [], "f058", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"], + "check-double": [512, 512, [], "f560", "M504.5 171.95l-36.2-36.41c-10-10.05-26.21-10.05-36.2 0L192 377.02 79.9 264.28c-10-10.06-26.21-10.06-36.2 0L7.5 300.69c-10 10.05-10 26.36 0 36.41l166.4 167.36c10 10.06 26.21 10.06 36.2 0l294.4-296.09c10-10.06 10-26.36 0-36.42zM166.57 282.71c6.84 7.02 18.18 7.02 25.21.18L403.85 72.62c7.02-6.84 7.02-18.18.18-25.21L362.08 5.29c-6.84-7.02-18.18-7.02-25.21-.18L179.71 161.19l-68.23-68.77c-6.84-7.02-18.18-7.02-25.2-.18l-42.13 41.77c-7.02 6.84-7.02 18.18-.18 25.2l122.6 123.5z"], + "check-square": [448, 512, [], "f14a", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"], + "chess": [512, 512, [], "f439", "M199.821 217.633a6 6 0 0 1 6 6l-.001 20.766a6 6 0 0 1-6 6h-25.805c0 31.715-2.153 96.201 17.398 153.229H64.597C84.54 345.452 82.02 279.245 82.02 250.399H56.183a6 6 0 0 1-6-6l.002-20.766a6 6 0 0 1 6-6h143.636zM41.554 115.088l34.58 95.071h103.734l34.572-95.072c2.846-7.826-2.95-16.101-11.278-16.101H152v-30.22h21.57a6 6 0 0 0 6-6V40.383a6 6 0 0 0-6-6h-28.367V6a6 6 0 0 0-6-6H116.82a6 6 0 0 0-6 6v28.383H82.421a6 6 0 0 0-6 6v22.383a6 6 0 0 0 6 6H104v30.219H52.831c-8.328.001-14.124 8.276-11.277 16.103zM222.678 445.17v-28.067a6 6 0 0 0-6-6H39.322a6 6 0 0 0-6 6v28.067l-22.148 14.164a6 6 0 0 0-2.767 5.055V506a6 6 0 0 0 6 6h227.187a6 6 0 0 0 6-6v-41.612a6 6 0 0 0-2.767-5.055l-22.149-14.163zm90.578-144.225l24.88 16.963c.09 18.124-.167 63.904-11.905 114.522h147.526c-11.713-50.475-11.969-96.324-11.882-114.537l24.859-16.949a3.856 3.856 0 0 0 1.684-3.187v-69.901a3.857 3.857 0 0 0-3.857-3.857h-27.655a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.858-3.857h-52.918a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.857-3.857H315.43a3.857 3.857 0 0 0-3.857 3.857v69.901a3.855 3.855 0 0 0 1.683 3.188zm71.585 51.906c0-8.372 6.787-15.158 15.159-15.158s15.158 6.787 15.158 15.158v30.318h-30.317v-30.318zM504.62 470.059l-13.664-10.639v-15.552a3.857 3.857 0 0 0-3.857-3.857H312.915a3.857 3.857 0 0 0-3.857 3.857v15.552l-13.677 10.639a3.857 3.857 0 0 0-1.488 3.044v35.039a3.857 3.857 0 0 0 3.857 3.857h204.5a3.857 3.857 0 0 0 3.857-3.857v-35.04a3.859 3.859 0 0 0-1.487-3.043z"], + "chess-bishop": [320, 512, [], "f43a", "M123.158 77.881C107.369 72.53 96 57.597 96 40c0-22.091 17.909-40 40-40h47.796c22.091 0 40 17.909 40 40 0 17.541-11.295 32.434-27.005 37.829 23.993 16.657 48.577 46.839 68.703 82.05L144.929 280.443a6 6 0 0 0 0 8.485l14.142 14.142a6 6 0 0 0 8.485 0L280.9 189.726c17.758 38.297 29.371 79.443 29.371 114.273 0 53.786-22.897 75.788-58.446 86.033V448H68.174v-57.97C32.631 379.784 9.739 357.781 9.739 304c0-78.029 58.281-187.766 113.419-226.119zM320 500v-24c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12z"], + "chess-board": [512, 512, [], "f43c", "M256 256v64h-64v-64h64zm0-256h-64v64h64V0zm0 256h64v-64h-64v64zM384 0h-64v64h64V0zm0 512h64v-64h-64v64zm128-64v-64h-64v64h64zm-384 64h64v-64h-64v64zm0-512H64v64h64V0zm384 192v-64h-64v64h64zm0 128v-64h-64v64h64zM0 512h64v-64H0v64zM0 64v64h64V64H0zm0 128v64h64v-64H0zm0 128v64h64v-64H0zm256 192h64v-64h-64v64zm-64-128v64h64v-64h-64zm64-192v-64h-64v64h64zM64 384v64h64v-64H64zm64-128H64v64h64v-64zm256 128h64v-64h-64v64zM512 0h-64v64h64V0zM384 256h64v-64h-64v64zm0-192v64h64V64h-64zm-64 320v64h64v-64h-64zm-192-64v64h64v-64h-64zm128 0v64h64v-64h-64zm-64-128h-64v64h64v-64zm-64-64H64v64h64v-64zm192 192h64v-64h-64v64zM192 128V64h-64v64h64zm128 0V64h-64v64h64zm0 64h64v-64h-64v64z"], + "chess-king": [448, 512, [], "f43f", "M416 476v24c0 6.627-5.373 12-12 12H44c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12zm-8.033-324H248v-48h50a6 6 0 0 0 6-6V62a6 6 0 0 0-6-6h-50V6a6 6 0 0 0-6-6h-36a6 6 0 0 0-6 6v50h-50a6 6 0 0 0-6 6v36a6 6 0 0 0 6 6h50v48H40.033c-27.574 0-46.879 27.244-37.738 53.259L87.582 448h272.836l85.287-242.741C454.846 179.244 435.541 152 407.967 152z"], + "chess-knight": [384, 512, [], "f441", "M352 224v224H32v-46.557c0-30.302 17.12-58.003 44.223-71.554l57.243-28.622A48 48 0 0 0 160 258.334V208l-22.127 11.063a23.996 23.996 0 0 0-12.55 15.645l-11.835 47.338a12 12 0 0 1-7.185 8.231l-29.601 11.84a11.998 11.998 0 0 1-9.33-.176L7.126 275.167A12 12 0 0 1 0 264.201v-158.26c0-6.365 2.529-12.47 7.03-16.971L16 80 1.789 51.578A16.937 16.937 0 0 1 0 44c0-6.627 5.373-12 12-12h148c106.039 0 192 85.961 192 192zm20 240H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12zM52 128c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z"], + "chess-pawn": [320, 512, [], "f443", "M264 448H56s60-42.743 60-176H84c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h40.209C95.721 210.56 76 181.588 76 148c0-46.392 37.608-84 84-84s84 37.608 84 84c0 33.588-19.721 62.56-48.209 76H236c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12h-32c0 133.257 60 176 60 176zm28 16H28c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h264c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12z"], + "chess-queen": [512, 512, [], "f445", "M436 512H76c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12zM255.579 0c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zm204.568 154.634c-5.768-3.045-12.916-.932-16.082 4.77-8.616 15.516-22.747 37.801-44.065 37.801-28.714 0-30.625-19.804-31.686-57.542-.183-6.492-5.501-11.664-11.995-11.664h-41.006c-5.175 0-9.754 3.328-11.388 8.238-8.89 26.709-26.073 40.992-47.925 40.992s-39.034-14.283-47.925-40.992c-1.634-4.91-6.213-8.238-11.388-8.238h-41.005c-6.495 0-11.813 5.174-11.995 11.667-1.052 37.642-2.934 57.539-31.688 57.539-20.691 0-33.817-20.224-44.425-38.025-3.266-5.48-10.258-7.431-15.899-4.453l-39.179 20.679a12 12 0 0 0-5.51 15.145L112 448h288l105.014-257.448a12 12 0 0 0-5.51-15.145l-39.357-20.773z"], + "chess-rook": [384, 512, [], "f447", "M81.241 215.027C80.957 258.92 77.411 348.076 48 448h287.982c-29.4-99.604-32.936-188.912-33.221-232.975l45.418-42.312a11.998 11.998 0 0 0 3.82-8.78V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v44h-48V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v44H96V44c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v119.932c0 3.33 1.384 6.51 3.82 8.78l45.421 42.315zM160 256c0-17.673 14.327-32 32-32 17.673 0 32 14.327 32 32v64.004h-64V256zm224 220v24c0 6.627-5.373 12-12 12H12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12z"], + "chevron-circle-down": [512, 512, [], "f13a", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM273 369.9l135.5-135.5c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L256 285.1 154.4 183.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L239 369.9c9.4 9.4 24.6 9.4 34 0z"], + "chevron-circle-left": [512, 512, [], "f137", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z"], + "chevron-circle-right": [512, 512, [], "f138", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z"], + "chevron-circle-up": [512, 512, [], "f139", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm231-113.9L103.5 277.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L256 226.9l101.6 101.6c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L273 142.1c-9.4-9.4-24.6-9.4-34 0z"], + "chevron-down": [448, 512, [], "f078", "M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"], + "chevron-left": [320, 512, [], "f053", "M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z"], + "chevron-right": [320, 512, [], "f054", "M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z"], + "chevron-up": [448, 512, [], "f077", "M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z"], + "child": [384, 512, [], "f1ae", "M120 72c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.764-32.235 72-72 72s-72-32.236-72-72zm254.627 1.373c-12.496-12.497-32.758-12.497-45.254 0L242.745 160H141.254L54.627 73.373c-12.496-12.497-32.758-12.497-45.254 0-12.497 12.497-12.497 32.758 0 45.255L104 213.254V480c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V368h16v112c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V213.254l94.627-94.627c12.497-12.497 12.497-32.757 0-45.254z"], + "church": [640, 512, [], "f51d", "M464.46 246.68L352 179.2V128h48c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-48V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v48h-48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v51.2l-112.46 67.48A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.65-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.54A32.024 32.024 0 0 0 0 395.96zm620.61-29.42L512 320v192h112c8.84 0 16-7.16 16-16V395.96c0-12.8-7.63-24.37-19.39-29.42z"], + "circle": [512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"], + "circle-notch": [512, 512, [], "f1ce", "M288 39.056v16.659c0 10.804 7.281 20.159 17.686 23.066C383.204 100.434 440 171.518 440 256c0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-84.47 56.786-155.564 134.312-177.219C216.719 75.874 224 66.517 224 55.712V39.064c0-15.709-14.834-27.153-30.046-23.234C86.603 43.482 7.394 141.206 8.003 257.332c.72 137.052 111.477 246.956 248.531 246.667C393.255 503.711 504 392.788 504 256c0-115.633-79.14-212.779-186.211-240.236C302.678 11.889 288 23.456 288 39.056z"], + "clipboard": [384, 512, [], "f328", "M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z"], + "clipboard-check": [384, 512, [], "f46c", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm121.2 231.8l-143 141.8c-4.7 4.7-12.3 4.6-17-.1l-82.6-83.3c-4.7-4.7-4.6-12.3.1-17L99.1 285c4.7-4.7 12.3-4.6 17 .1l46 46.4 106-105.2c4.7-4.7 12.3-4.6 17 .1l28.2 28.4c4.7 4.8 4.6 12.3-.1 17z"], + "clipboard-list": [384, 512, [], "f46d", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM96 424c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm96-192c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm128 368c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z"], + "clock": [512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm57.1 350.1L224.9 294c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v137.7l63.5 46.2c5.4 3.9 6.5 11.4 2.6 16.8l-28.2 38.8c-3.9 5.3-11.4 6.5-16.8 2.6z"], + "clone": [512, 512, [], "f24d", "M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z"], + "closed-captioning": [512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM218.1 287.7c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2.1 48 51.1 70.5 92.3 32.6zm190.4 0c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.5 56.9-172.7 32.1-172.7-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 222.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6z"], + "cloud": [640, 512, [], "f0c2", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z"], + "cloud-download-alt": [640, 512, [], "f381", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z"], + "cloud-upload-alt": [640, 512, [], "f382", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z"], + "cocktail": [576, 512, [], "f561", "M296 464h-56V338.78l168.74-168.73c15.52-15.52 4.53-42.05-17.42-42.05H24.68c-21.95 0-32.94 26.53-17.42 42.05L176 338.78V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM432 0c-62.61 0-115.35 40.2-135.18 96h52.54c16.65-28.55 47.27-48 82.64-48 52.93 0 96 43.06 96 96s-43.07 96-96 96c-14.04 0-27.29-3.2-39.32-8.64l-35.26 35.26C379.23 279.92 404.59 288 432 288c79.53 0 144-64.47 144-144S511.53 0 432 0z"], + "code": [640, 512, [], "f121", "M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"], + "code-branch": [384, 512, [], "f126", "M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"], + "coffee": [640, 512, [], "f0f4", "M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z"], + "cog": [512, 512, [], "f013", "M444.788 291.1l42.616 24.599c4.867 2.809 7.126 8.618 5.459 13.985-11.07 35.642-29.97 67.842-54.689 94.586a12.016 12.016 0 0 1-14.832 2.254l-42.584-24.595a191.577 191.577 0 0 1-60.759 35.13v49.182a12.01 12.01 0 0 1-9.377 11.718c-34.956 7.85-72.499 8.256-109.219.007-5.49-1.233-9.403-6.096-9.403-11.723v-49.184a191.555 191.555 0 0 1-60.759-35.13l-42.584 24.595a12.016 12.016 0 0 1-14.832-2.254c-24.718-26.744-43.619-58.944-54.689-94.586-1.667-5.366.592-11.175 5.459-13.985L67.212 291.1a193.48 193.48 0 0 1 0-70.199l-42.616-24.599c-4.867-2.809-7.126-8.618-5.459-13.985 11.07-35.642 29.97-67.842 54.689-94.586a12.016 12.016 0 0 1 14.832-2.254l42.584 24.595a191.577 191.577 0 0 1 60.759-35.13V25.759a12.01 12.01 0 0 1 9.377-11.718c34.956-7.85 72.499-8.256 109.219-.007 5.49 1.233 9.403 6.096 9.403 11.723v49.184a191.555 191.555 0 0 1 60.759 35.13l42.584-24.595a12.016 12.016 0 0 1 14.832 2.254c24.718 26.744 43.619 58.944 54.689 94.586 1.667 5.366-.592 11.175-5.459 13.985L444.788 220.9a193.485 193.485 0 0 1 0 70.2zM336 256c0-44.112-35.888-80-80-80s-80 35.888-80 80 35.888 80 80 80 80-35.888 80-80z"], + "cogs": [640, 512, [], "f085", "M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z"], + "coins": [512, 512, [], "f51e", "M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z"], + "columns": [512, 512, [], "f0db", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z"], + "comment": [512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32z"], + "comment-alt": [512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 9.8 11.2 15.5 19.1 9.7L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z"], + "comment-dots": [512, 512, [], "f4ad", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "comment-slash": [640, 512, [], "f4b3", "M64 240c0 49.6 21.4 95 57 130.7-12.6 50.3-54.3 95.2-54.8 95.8-2.2 2.3-2.8 5.7-1.5 8.7 1.3 2.9 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 27.4 0 53.7-3.6 78.4-10L72.9 186.4c-5.6 17.1-8.9 35-8.9 53.6zm569.8 218.1l-114.4-88.4C554.6 334.1 576 289.2 576 240c0-114.9-114.6-208-256-208-65.1 0-124.2 20.1-169.4 52.7L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z"], + "comments": [576, 512, [], "f086", "M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z"], + "compact-disc": [496, 512, [], "f51f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 256H56c0-105.9 86.1-192 192-192v32c-88.2 0-160 71.8-160 160zm160 96c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"], + "compass": [512, 512, [], "f14e", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM307.446 120.844l-102.642 97.779a23.997 23.997 0 0 0-6.772 11.729l-33.359 137.779c-5.68 23.459 22.777 39.318 39.88 23.024l102.64-97.779a23.99 23.99 0 0 0 6.772-11.729l33.359-137.779c5.618-23.198-22.591-39.493-39.878-23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"], + "compress": [448, 512, [], "f066", "M436 192H312c-13.3 0-24-10.7-24-24V44c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-276-24V44c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v84H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 300V344c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-84h84c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H312c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"], + "concierge-bell": [512, 512, [], "f562", "M288 130.54V112h16c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h16v18.54C115.49 146.11 32 239.18 32 352h448c0-112.82-83.49-205.89-192-221.46zM496 384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"], + "cookie": [512, 512, [], "f563", "M510.37 254.79l-12.08-76.26a132.493 132.493 0 0 0-37.16-72.95l-54.76-54.75c-19.73-19.72-45.18-32.7-72.71-37.05l-76.7-12.15c-27.51-4.36-55.69.11-80.52 12.76L107.32 49.6a132.25 132.25 0 0 0-57.79 57.8l-35.1 68.88a132.602 132.602 0 0 0-12.82 80.94l12.08 76.27a132.493 132.493 0 0 0 37.16 72.95l54.76 54.75a132.087 132.087 0 0 0 72.71 37.05l76.7 12.14c27.51 4.36 55.69-.11 80.52-12.75l69.12-35.21a132.302 132.302 0 0 0 57.79-57.8l35.1-68.87c12.71-24.96 17.2-53.3 12.82-80.96zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "cookie-bite": [512, 512, [], "f564", "M510.52 255.82c-69.97-.85-126.47-57.69-126.47-127.86-70.17 0-127-56.49-127.86-126.45-27.26-4.14-55.13.3-79.72 12.82l-69.13 35.22a132.221 132.221 0 0 0-57.79 57.81l-35.1 68.88a132.645 132.645 0 0 0-12.82 80.95l12.08 76.27a132.521 132.521 0 0 0 37.16 72.96l54.77 54.76a132.036 132.036 0 0 0 72.71 37.06l76.71 12.15c27.51 4.36 55.7-.11 80.53-12.76l69.13-35.21a132.273 132.273 0 0 0 57.79-57.81l35.1-68.88c12.56-24.64 17.01-52.58 12.91-79.91zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "copy": [448, 512, [], "f0c5", "M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z"], + "copyright": [512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm117.134 346.753c-1.592 1.867-39.776 45.731-109.851 45.731-84.692 0-144.484-63.26-144.484-145.567 0-81.303 62.004-143.401 143.762-143.401 66.957 0 101.965 37.315 103.422 38.904a12 12 0 0 1 1.238 14.623l-22.38 34.655c-4.049 6.267-12.774 7.351-18.234 2.295-.233-.214-26.529-23.88-61.88-23.88-46.116 0-73.916 33.575-73.916 76.082 0 39.602 25.514 79.692 74.277 79.692 38.697 0 65.28-28.338 65.544-28.625 5.132-5.565 14.059-5.033 18.508 1.053l24.547 33.572a12.001 12.001 0 0 1-.553 14.866z"], + "couch": [640, 512, [], "f4b8", "M160 224v64h320v-64c0-35.3 28.7-64 64-64h32c0-53-43-96-96-96H160c-53 0-96 43-96 96h32c35.3 0 64 28.7 64 64zm416-32h-32c-17.7 0-32 14.3-32 32v96H128v-96c0-17.7-14.3-32-32-32H64c-35.3 0-64 28.7-64 64 0 23.6 13 44 32 55.1V432c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-16h384v16c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V311.1c19-11.1 32-31.5 32-55.1 0-35.3-28.7-64-64-64z"], + "credit-card": [576, 512, [], "f09d", "M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V256H0v176zm192-68c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-40zm-128 0c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM576 80v48H0V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48z"], + "crop": [512, 512, [], "f125", "M488 352h-40V109.25l59.31-59.31c6.25-6.25 6.25-16.38 0-22.63L484.69 4.69c-6.25-6.25-16.38-6.25-22.63 0L402.75 64H192v96h114.75L160 306.75V24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v264c0 13.25 10.75 24 24 24h232v-96H205.25L352 205.25V488c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"], + "crop-alt": [512, 512, [], "f565", "M488 352h-40V96c0-17.67-14.33-32-32-32H192v96h160v328c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24zM160 24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v256c0 17.67 14.33 32 32 32h224v-96H160V24z"], + "crosshairs": [512, 512, [], "f05b", "M500 224h-30.364C455.724 130.325 381.675 56.276 288 42.364V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v30.364C130.325 56.276 56.276 130.325 42.364 224H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h30.364C56.276 381.675 130.325 455.724 224 469.636V500c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-30.364C381.675 455.724 455.724 381.675 469.636 288H500c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zM288 404.634V364c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40.634C165.826 392.232 119.783 346.243 107.366 288H148c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40.634C119.768 165.826 165.757 119.783 224 107.366V148c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40.634C346.174 119.768 392.217 165.757 404.634 224H364c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40.634C392.232 346.174 346.243 392.217 288 404.634zM288 256c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z"], + "crow": [640, 512, [], "f520", "M544 32h-16.36C513.04 12.68 490.09 0 464 0c-44.18 0-80 35.82-80 80v20.98L12.09 393.57A30.216 30.216 0 0 0 0 417.74c0 22.46 23.64 37.07 43.73 27.03L165.27 384h96.49l44.41 120.1c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38L312.94 384H352c1.91 0 3.76-.23 5.66-.29l44.51 120.38c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38l-41.24-111.53C485.74 352.8 544 279.26 544 192v-80l96-16c0-35.35-42.98-64-96-64zm-80 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"], + "crown": [640, 512, [], "f521", "M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.4 7.7-.8L128 416h384l72.3-192.8c2.5.4 5.1.8 7.7.8 26.5 0 48-21.5 48-48s-21.5-48-48-48z"], + "cube": [512, 512, [], "f1b2", "M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z"], + "cubes": [512, 512, [], "f1b3", "M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z"], + "cut": [448, 512, [], "f0c4", "M278.06 256L444.48 89.57c4.69-4.69 4.69-12.29 0-16.97-32.8-32.8-85.99-32.8-118.79 0L210.18 188.12l-24.86-24.86c4.31-10.92 6.68-22.81 6.68-35.26 0-53.02-42.98-96-96-96S0 74.98 0 128s42.98 96 96 96c4.54 0 8.99-.32 13.36-.93L142.29 256l-32.93 32.93c-4.37-.61-8.83-.93-13.36-.93-53.02 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96c0-12.45-2.37-24.34-6.68-35.26l24.86-24.86L325.69 439.4c32.8 32.8 85.99 32.8 118.79 0 4.69-4.68 4.69-12.28 0-16.97L278.06 256zM96 160c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32zm0 256c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z"], + "database": [448, 512, [], "f1c0", "M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z"], + "deaf": [512, 512, [], "f2a4", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm268.485-52.201L480.2 3.515c-4.687-4.686-12.284-4.686-16.971 0L376.2 90.544c-4.686 4.686-4.686 12.284 0 16.971l28.285 28.285c4.686 4.686 12.284 4.686 16.97 0l87.03-87.029c4.687-4.688 4.687-12.286 0-16.972zM168.97 314.745c-4.686-4.686-12.284-4.686-16.97 0L3.515 463.23c-4.686 4.686-4.686 12.284 0 16.971L31.8 508.485c4.687 4.686 12.284 4.686 16.971 0L197.256 360c4.686-4.686 4.686-12.284 0-16.971l-28.286-28.284z"], + "desktop": [576, 512, [], "f108", "M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z"], + "diagnoses": [640, 512, [], "f470", "M496 256c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm-176-80c48.5 0 88-39.5 88-88S368.5 0 320 0s-88 39.5-88 88 39.5 88 88 88zM59.8 364c10.2 15.3 29.3 17.8 42.9 9.8 16.2-9.6 56.2-31.7 105.3-48.6V416h224v-90.7c49.1 16.8 89.1 39 105.3 48.6 13.6 8 32.7 5.3 42.9-9.8l17.8-26.7c8.8-13.2 7.6-34.6-10-45.1-11.9-7.1-29.7-17-51.1-27.4-28.1 46.1-99.4 17.8-87.7-35.1C409.3 217.2 365.1 208 320 208c-57 0-112.9 14.5-160 32.2-.2 40.2-47.6 63.3-79.2 36-11.2 6-21.3 11.6-28.7 16-17.6 10.5-18.8 31.8-10 45.1L59.8 364zM368 344c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-160 8c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm512 192H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z"], + "dice": [640, 512, [], "f522", "M592 192H473.26c12.69 29.59 7.12 65.2-17 89.32L320 417.58V464c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48V240c0-26.51-21.49-48-48-48zM480 376c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm-46.37-186.7L258.7 14.37c-19.16-19.16-50.23-19.16-69.39 0L14.37 189.3c-19.16 19.16-19.16 50.23 0 69.39L189.3 433.63c19.16 19.16 50.23 19.16 69.39 0L433.63 258.7c19.16-19.17 19.16-50.24 0-69.4zM96 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"], + "dice-five": [448, 512, [], "f523", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "dice-four": [448, 512, [], "f524", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "dice-one": [448, 512, [], "f525", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM224 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "dice-six": [448, 512, [], "f526", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "dice-three": [448, 512, [], "f527", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "dice-two": [448, 512, [], "f528", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "digital-tachograph": [640, 512, [], "f566", "M608 96H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128c0-17.67-14.33-32-32-32zM304 352c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8zM72 288v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H80c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm40-64c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-48c0-8.84 7.16-16 16-16h208c8.84 0 16 7.16 16 16v48zm272 128c0 4.42-3.58 8-8 8H344c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8z"], + "divide": [448, 512, [], "f529", "M224 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm0-192c35.35 0 64-28.65 64-64s-28.65-64-64-64-64 28.65-64 64 28.65 64 64 64zm192 48H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"], + "dizzy": [496, 512, [], "f567", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-96 206.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L174.6 192l28.7 28.7c15.2 15.2-7.9 37.4-22.6 22.6L152 214.6zM248 416c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm147.3-195.3c15.2 15.2-7.9 37.4-22.6 22.6L344 214.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L366.6 192l28.7 28.7z"], + "dna": [448, 512, [], "f471", "M.1 494.1c-1.1 9.5 6.3 17.8 15.9 17.8l32.3.1c8.1 0 14.9-5.9 16-13.9.7-4.9 1.8-11.1 3.4-18.1H380c1.6 6.9 2.9 13.2 3.5 18.1 1.1 8 7.9 14 16 13.9l32.3-.1c9.6 0 17.1-8.3 15.9-17.8-4.6-37.9-25.6-129-118.9-207.7-17.6 12.4-37.1 24.2-58.5 35.4 6.2 4.6 11.4 9.4 17 14.2H159.7c21.3-18.1 47-35.6 78.7-51.4C410.5 199.1 442.1 65.8 447.9 17.9 449 8.4 441.6.1 432 .1L399.6 0c-8.1 0-14.9 5.9-16 13.9-.7 4.9-1.8 11.1-3.4 18.1H67.8c-1.6-7-2.7-13.1-3.4-18.1-1.1-8-7.9-14-16-13.9L16.1.1C6.5.1-1 8.4.1 17.9 5.3 60.8 31.4 171.8 160 256 31.5 340.2 5.3 451.2.1 494.1zM224 219.6c-25.1-13.7-46.4-28.4-64.3-43.6h128.5c-17.8 15.2-39.1 30-64.2 43.6zM355.1 96c-5.8 10.4-12.8 21.1-21 32H114c-8.3-10.9-15.3-21.6-21-32h262.1zM92.9 416c5.8-10.4 12.8-21.1 21-32h219.4c8.3 10.9 15.4 21.6 21.2 32H92.9z"], + "dollar-sign": [288, 512, [], "f155", "M209.2 233.4l-108-31.6C88.7 198.2 80 186.5 80 173.5c0-16.3 13.2-29.5 29.5-29.5h66.3c12.2 0 24.2 3.7 34.2 10.5 6.1 4.1 14.3 3.1 19.5-2l34.8-34c7.1-6.9 6.1-18.4-1.8-24.5C238 74.8 207.4 64.1 176 64V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C45.8 64-5.4 118.7.5 183.6c4.2 46.1 39.4 83.6 83.8 96.6l102.5 30c12.5 3.7 21.2 15.3 21.2 28.3 0 16.3-13.2 29.5-29.5 29.5h-66.3C100 368 88 364.3 78 357.5c-6.1-4.1-14.3-3.1-19.5 2l-34.8 34c-7.1 6.9-6.1 18.4 1.8 24.5 24.5 19.2 55.1 29.9 86.5 30v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48.2c46.6-.9 90.3-28.6 105.7-72.7 21.5-61.6-14.6-124.8-72.5-141.7z"], + "dolly": [576, 512, [], "f472", "M294.2 277.7c18 5 34.7 13.4 49.5 24.7l161.5-53.8c8.4-2.8 12.9-11.9 10.1-20.2L454.9 47.2c-2.8-8.4-11.9-12.9-20.2-10.1l-61.1 20.4 33.1 99.4L346 177l-33.1-99.4-61.6 20.5c-8.4 2.8-12.9 11.9-10.1 20.2l53 159.4zm281 48.7L565 296c-2.8-8.4-11.9-12.9-20.2-10.1l-213.5 71.2c-17.2-22-43.6-36.4-73.5-37L158.4 21.9C154 8.8 141.8 0 128 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h88.9l92.2 276.7c-26.1 20.4-41.7 53.6-36 90.5 6.1 39.4 37.9 72.3 77.3 79.2 60.2 10.7 112.3-34.8 113.4-92.6l213.3-71.2c8.3-2.8 12.9-11.8 10.1-20.2zM256 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"], + "dolly-flatbed": [640, 512, [], "f474", "M208 320h384c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H448v128l-48-32-48 32V32H208c-8.8 0-16 7.2-16 16v256c0 8.8 7.2 16 16 16zm416 64H128V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h82.9c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H451c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H624c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z"], + "donate": [512, 512, [], "f4b9", "M256 416c114.9 0 208-93.1 208-208S370.9 0 256 0 48 93.1 48 208s93.1 208 208 208zM233.8 97.4V80.6c0-9.2 7.4-16.6 16.6-16.6h11.1c9.2 0 16.6 7.4 16.6 16.6v17c15.5.8 30.5 6.1 43 15.4 5.6 4.1 6.2 12.3 1.2 17.1L306 145.6c-3.8 3.7-9.5 3.8-14 1-5.4-3.4-11.4-5.1-17.8-5.1h-38.9c-9 0-16.3 8.2-16.3 18.3 0 8.2 5 15.5 12.1 17.6l62.3 18.7c25.7 7.7 43.7 32.4 43.7 60.1 0 34-26.4 61.5-59.1 62.4v16.8c0 9.2-7.4 16.6-16.6 16.6h-11.1c-9.2 0-16.6-7.4-16.6-16.6v-17c-15.5-.8-30.5-6.1-43-15.4-5.6-4.1-6.2-12.3-1.2-17.1l16.3-15.5c3.8-3.7 9.5-3.8 14-1 5.4 3.4 11.4 5.1 17.8 5.1h38.9c9 0 16.3-8.2 16.3-18.3 0-8.2-5-15.5-12.1-17.6l-62.3-18.7c-25.7-7.7-43.7-32.4-43.7-60.1.1-34 26.4-61.5 59.1-62.4zM480 352h-32.5c-19.6 26-44.6 47.7-73 64h63.8c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8h63.8c-28.4-16.3-53.3-38-73-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32z"], + "door-closed": [640, 512, [], "f52a", "M624 448H512V50.8C512 22.78 490.47 0 464 0H175.99c-26.47 0-48 22.78-48 50.8V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM415.99 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32c.01 17.67-14.32 32-32 32z"], + "door-open": [640, 512, [], "f52b", "M624 448h-80V113.45C544 86.19 522.47 64 496 64H384v64h96v384h144c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM312.24 1.01l-192 49.74C105.99 54.44 96 67.7 96 82.92V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h336V33.18c0-21.58-19.56-37.41-39.76-32.17zM264 288c-13.25 0-24-14.33-24-32s10.75-32 24-32 24 14.33 24 32-10.75 32-24 32z"], + "dot-circle": [512, 512, [], "f192", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z"], + "dove": [512, 512, [], "f4ba", "M288 167.2v-28.1c-28.2-36.3-47.1-79.3-54.1-125.2-2.1-13.5-19-18.8-27.8-8.3-21.1 24.9-37.7 54.1-48.9 86.5 34.2 38.3 80 64.6 130.8 75.1zM400 64c-44.2 0-80 35.9-80 80.1v59.4C215.6 197.3 127 133 87 41.8c-5.5-12.5-23.2-13.2-29-.9C41.4 76 32 115.2 32 156.6c0 70.8 34.1 136.9 85.1 185.9 13.2 12.7 26.1 23.2 38.9 32.8l-143.9 36C1.4 414-3.4 426.4 2.6 435.7 20 462.6 63 508.2 155.8 512c8 .3 16-2.6 22.1-7.9l65.2-56.1H320c88.4 0 160-71.5 160-159.9V128l32-64H400zm0 96.1c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"], + "download": [512, 512, [], "f019", "M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"], + "drafting-compass": [512, 512, [], "f568", "M457.01 344.42c-25.05 20.33-52.63 37.18-82.54 49.05l54.38 94.19 53.95 23.04c9.81 4.19 20.89-2.21 22.17-12.8l7.02-58.25-54.98-95.23zm42.49-94.56c4.86-7.67 1.89-17.99-6.05-22.39l-28.07-15.57c-7.48-4.15-16.61-1.46-21.26 5.72C403.01 281.15 332.25 320 256 320c-23.93 0-47.23-4.25-69.41-11.53l67.36-116.68c.7.02 1.34.21 2.04.21s1.35-.19 2.04-.21l51.09 88.5c31.23-8.96 59.56-25.75 82.61-48.92l-51.79-89.71C347.39 128.03 352 112.63 352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96c0 16.63 4.61 32.03 12.05 45.66l-68.3 118.31c-12.55-11.61-23.96-24.59-33.68-39-4.79-7.1-13.97-9.62-21.38-5.33l-27.75 16.07c-7.85 4.54-10.63 14.9-5.64 22.47 15.57 23.64 34.69 44.21 55.98 62.02L0 439.66l7.02 58.25c1.28 10.59 12.36 16.99 22.17 12.8l53.95-23.04 70.8-122.63C186.13 377.28 220.62 384 256 384c99.05 0 190.88-51.01 243.5-134.14zM256 64c17.67 0 32 14.33 32 32s-14.33 32-32 32-32-14.33-32-32 14.33-32 32-32z"], + "drum": [576, 512, [], "f569", "M458.08 120.88l102.39-61.43c15.16-9.09 20.06-28.75 10.97-43.91C562.34.39 542.7-4.53 527.53 4.57l-160.69 96.41A629.32 629.32 0 0 0 288 96C128.94 96 0 153.31 0 224v160.83c0 30.46 24.03 58.4 64 80.37v-96.37c0-17.6 14.4-32 32-32s32 14.4 32 32v122.41c37.4 11.13 81 18.44 128 20.75V400.84c0-17.6 14.4-32 32-32s32 14.4 32 32V512c47-2.31 90.6-9.62 128-20.75V368.84c0-17.6 14.4-32 32-32s32 14.4 32 32v96.37c39.97-21.97 64-49.91 64-80.37V224.01c-.01-42.38-46.54-79.84-117.92-103.13zM288 304c-132.55 0-240-35.82-240-80s107.45-80 240-80c2.34 0 4.62.1 6.94.12l-87.41 52.44c-15.16 9.09-20.06 28.75-10.97 43.91 9.56 15.93 29.51 19.61 43.91 10.97l162.71-97.62C477.55 167.41 528 193.74 528 224.01 528 268.19 420.54 304 288 304z"], + "drum-steelpan": [576, 512, [], "f56a", "M288 32C128.94 32 0 89.31 0 160v192c0 70.69 128.94 128 288 128s288-57.31 288-128V160c0-70.69-128.94-128-288-128zm-82.99 158.36c-4.45 16.61-14.54 30.57-28.31 40.48C100.23 217.46 48 190.78 48 160c0-30.16 50.11-56.39 124.04-70.03l25.6 44.34c9.86 17.09 12.48 36.99 7.37 56.05zM288 240c-21.08 0-41.41-1-60.89-2.7 8.06-26.13 32.15-45.3 60.89-45.3s52.83 19.17 60.89 45.3C329.41 239 309.08 240 288 240zm64-144c0 35.29-28.71 64-64 64s-64-28.71-64-64V82.96c20.4-1.88 41.8-2.96 64-2.96s43.6 1.08 64 2.96V96zm46.93 134.9c-13.81-9.91-23.94-23.9-28.4-40.54-5.11-19.06-2.49-38.96 7.38-56.04l25.65-44.42C477.72 103.5 528 129.79 528 160c0 30.83-52.4 57.54-129.07 70.9z"], + "dumbbell": [640, 512, [], "f44b", "M104 96H56c-13.3 0-24 10.7-24 24v104H8c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h24v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm528 128h-24V120c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v272c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h24c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM456 32h-48c-13.3 0-24 10.7-24 24v168H256V56c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v400c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h128v168c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24z"], + "edit": [576, 512, [], "f044", "M402.6 83.2l90.2 90.2c3.8 3.8 3.8 10 0 13.8L274.4 405.6l-92.8 10.3c-12.4 1.4-22.9-9.1-21.5-21.5l10.3-92.8L388.8 83.2c3.8-3.8 10-3.8 13.8 0zm162-22.9l-48.8-48.8c-15.2-15.2-39.9-15.2-55.2 0l-35.4 35.4c-3.8 3.8-3.8 10 0 13.8l90.2 90.2c3.8 3.8 10 3.8 13.8 0l35.4-35.4c15.2-15.3 15.2-40 0-55.2zM384 346.2V448H64V128h229.8c3.2 0 6.2-1.3 8.5-3.5l40-40c7.6-7.6 2.2-20.5-8.5-20.5H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V306.2c0-10.7-12.9-16-20.5-8.5l-40 40c-2.2 2.3-3.5 5.3-3.5 8.5z"], + "eject": [448, 512, [], "f052", "M448 384v64c0 17.673-14.327 32-32 32H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h384c17.673 0 32 14.327 32 32zM48.053 320h351.886c41.651 0 63.581-49.674 35.383-80.435L259.383 47.558c-19.014-20.743-51.751-20.744-70.767 0L12.67 239.565C-15.475 270.268 6.324 320 48.053 320z"], + "ellipsis-h": [512, 512, [], "f141", "M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z"], + "ellipsis-v": [192, 512, [], "f142", "M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z"], + "envelope": [512, 512, [], "f0e0", "M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"], + "envelope-open": [512, 512, [], "f2b6", "M512 464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V200.724a48 48 0 0 1 18.387-37.776c24.913-19.529 45.501-35.365 164.2-121.511C199.412 29.17 232.797-.347 256 .003c23.198-.354 56.596 29.172 73.413 41.433 118.687 86.137 139.303 101.995 164.2 121.512A48 48 0 0 1 512 200.724V464zm-65.666-196.605c-2.563-3.728-7.7-4.595-11.339-1.907-22.845 16.873-55.462 40.705-105.582 77.079-16.825 12.266-50.21 41.781-73.413 41.43-23.211.344-56.559-29.143-73.413-41.43-50.114-36.37-82.734-60.204-105.582-77.079-3.639-2.688-8.776-1.821-11.339 1.907l-9.072 13.196a7.998 7.998 0 0 0 1.839 10.967c22.887 16.899 55.454 40.69 105.303 76.868 20.274 14.781 56.524 47.813 92.264 47.573 35.724.242 71.961-32.771 92.263-47.573 49.85-36.179 82.418-59.97 105.303-76.868a7.998 7.998 0 0 0 1.839-10.967l-9.071-13.196z"], + "envelope-square": [448, 512, [], "f199", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM178.117 262.104C87.429 196.287 88.353 196.121 64 177.167V152c0-13.255 10.745-24 24-24h272c13.255 0 24 10.745 24 24v25.167c-24.371 18.969-23.434 19.124-114.117 84.938-10.5 7.655-31.392 26.12-45.883 25.894-14.503.218-35.367-18.227-45.883-25.895zM384 217.775V360c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V217.775c13.958 10.794 33.329 25.236 95.303 70.214 14.162 10.341 37.975 32.145 64.694 32.01 26.887.134 51.037-22.041 64.72-32.025 61.958-44.965 81.325-59.406 95.283-70.199z"], + "equals": [448, 512, [], "f52c", "M416 304H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32zm0-192H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"], + "eraser": [512, 512, [], "f12d", "M497.941 273.941c18.745-18.745 18.745-49.137 0-67.882l-160-160c-18.745-18.745-49.136-18.746-67.883 0l-256 256c-18.745 18.745-18.745 49.137 0 67.882l96 96A48.004 48.004 0 0 0 144 480h356c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H355.883l142.058-142.059zm-302.627-62.627l137.373 137.373L265.373 416H150.628l-80-80 124.686-124.686z"], + "euro-sign": [320, 512, [], "f153", "M310.706 413.765c-1.314-6.63-7.835-10.872-14.424-9.369-10.692 2.439-27.422 5.413-45.426 5.413-56.763 0-101.929-34.79-121.461-85.449h113.689a12 12 0 0 0 11.708-9.369l6.373-28.36c1.686-7.502-4.019-14.631-11.708-14.631H115.22c-1.21-14.328-1.414-28.287.137-42.245H261.95a12 12 0 0 0 11.723-9.434l6.512-29.755c1.638-7.484-4.061-14.566-11.723-14.566H130.184c20.633-44.991 62.69-75.03 117.619-75.03 14.486 0 28.564 2.25 37.851 4.145 6.216 1.268 12.347-2.498 14.002-8.623l11.991-44.368c1.822-6.741-2.465-13.616-9.326-14.917C290.217 34.912 270.71 32 249.635 32 152.451 32 74.03 92.252 45.075 176H12c-6.627 0-12 5.373-12 12v29.755c0 6.627 5.373 12 12 12h21.569c-1.009 13.607-1.181 29.287-.181 42.245H12c-6.627 0-12 5.373-12 12v28.36c0 6.627 5.373 12 12 12h30.114C67.139 414.692 145.264 480 249.635 480c26.301 0 48.562-4.544 61.101-7.788 6.167-1.595 10.027-7.708 8.788-13.957l-8.818-44.49z"], + "exchange-alt": [512, 512, [], "f362", "M0 168v-16c0-13.255 10.745-24 24-24h360V80c0-21.367 25.899-32.042 40.971-16.971l80 80c9.372 9.373 9.372 24.569 0 33.941l-80 80C409.956 271.982 384 261.456 384 240v-48H24c-13.255 0-24-10.745-24-24zm488 152H128v-48c0-21.314-25.862-32.08-40.971-16.971l-80 80c-9.372 9.373-9.372 24.569 0 33.941l80 80C102.057 463.997 128 453.437 128 432v-48h360c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z"], + "exclamation": [192, 512, [], "f12a", "M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z"], + "exclamation-circle": [512, 512, [], "f06a", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"], + "exclamation-triangle": [576, 512, [], "f071", "M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"], + "expand": [448, 512, [], "f065", "M0 180V56c0-13.3 10.7-24 24-24h124c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H64v84c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12zM288 44v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V56c0-13.3-10.7-24-24-24H300c-6.6 0-12 5.4-12 12zm148 276h-40c-6.6 0-12 5.4-12 12v84h-84c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24V332c0-6.6-5.4-12-12-12zM160 468v-40c0-6.6-5.4-12-12-12H64v-84c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v124c0 13.3 10.7 24 24 24h124c6.6 0 12-5.4 12-12z"], + "expand-arrows-alt": [448, 512, [], "f31e", "M448.1 344v112c0 13.3-10.7 24-24 24h-112c-21.4 0-32.1-25.9-17-41l36.2-36.2L224 295.6 116.8 402.9 153 439c15.1 15.1 4.4 41-17 41H24c-13.3 0-24-10.7-24-24V344c0-21.4 25.9-32.1 41-17l36.2 36.2L184.5 256 77.2 148.7 41 185c-15.1 15.1-41 4.4-41-17V56c0-13.3 10.7-24 24-24h112c21.4 0 32.1 25.9 17 41l-36.2 36.2L224 216.4l107.3-107.3L295.1 73c-15.1-15.1-4.4-41 17-41h112c13.3 0 24 10.7 24 24v112c0 21.4-25.9 32.1-41 17l-36.2-36.2L263.6 256l107.3 107.3 36.2-36.2c15.1-15.2 41-4.5 41 16.9z"], + "external-link-alt": [576, 512, [], "f35d", "M576 24v127.984c0 21.461-25.96 31.98-40.971 16.971l-35.707-35.709-243.523 243.523c-9.373 9.373-24.568 9.373-33.941 0l-22.627-22.627c-9.373-9.373-9.373-24.569 0-33.941L442.756 76.676l-35.703-35.705C391.982 25.9 402.656 0 424.024 0H552c13.255 0 24 10.745 24 24zM407.029 270.794l-16 16A23.999 23.999 0 0 0 384 303.765V448H64V128h264a24.003 24.003 0 0 0 16.97-7.029l16-16C376.089 89.851 365.381 64 344 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V287.764c0-21.382-25.852-32.09-40.971-16.97z"], + "external-link-square-alt": [448, 512, [], "f360", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-88 16H248.029c-21.313 0-32.08 25.861-16.971 40.971l31.984 31.987L67.515 364.485c-4.686 4.686-4.686 12.284 0 16.971l31.029 31.029c4.687 4.686 12.285 4.686 16.971 0l195.526-195.526 31.988 31.991C358.058 263.977 384 253.425 384 231.979V120c0-13.255-10.745-24-24-24z"], + "eye": [576, 512, [], "f06e", "M569.354 231.631C512.969 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-75.162 0-136-60.827-136-136 0-75.162 60.826-136 136-136 75.162 0 136 60.826 136 136 0 75.162-60.826 136-136 136zm104-136c0 57.438-46.562 104-104 104s-104-46.562-104-104c0-17.708 4.431-34.379 12.236-48.973l-.001.032c0 23.651 19.173 42.823 42.824 42.823s42.824-19.173 42.824-42.823c0-23.651-19.173-42.824-42.824-42.824l-.032.001C253.621 156.431 270.292 152 288 152c57.438 0 104 46.562 104 104z"], + "eye-dropper": [512, 512, [], "f1fb", "M50.75 333.25c-12 12-18.75 28.28-18.75 45.26V424L0 480l32 32 56-32h45.49c16.97 0 33.25-6.74 45.25-18.74l126.64-126.62-128-128L50.75 333.25zM483.88 28.12c-37.47-37.5-98.28-37.5-135.75 0l-77.09 77.09-13.1-13.1c-9.44-9.44-24.65-9.31-33.94 0l-40.97 40.97c-9.37 9.37-9.37 24.57 0 33.94l161.94 161.94c9.44 9.44 24.65 9.31 33.94 0L419.88 288c9.37-9.37 9.37-24.57 0-33.94l-13.1-13.1 77.09-77.09c37.51-37.48 37.51-98.26.01-135.75z"], + "eye-slash": [576, 512, [], "f070", "M286.693 391.984l32.579 46.542A333.958 333.958 0 0 1 288 440C168.19 440 63.031 376.051 6.646 280.369a47.999 47.999 0 0 1 0-48.739c24.023-40.766 56.913-75.775 96.024-102.537l57.077 81.539C154.736 224.82 152 240.087 152 256c0 74.736 60.135 135.282 134.693 135.984zm282.661-111.615c-31.667 53.737-78.747 97.46-135.175 125.475l.011.015 41.47 59.2c7.6 10.86 4.96 25.82-5.9 33.42l-13.11 9.18c-10.86 7.6-25.82 4.96-33.42-5.9L100.34 46.94c-7.6-10.86-4.96-25.82 5.9-33.42l13.11-9.18c10.86-7.6 25.82-4.96 33.42 5.9l51.038 72.617C230.68 75.776 258.905 72 288 72c119.81 0 224.969 63.949 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM424 256c0-75.174-60.838-136-136-136-17.939 0-35.056 3.473-50.729 9.772l19.299 27.058c25.869-8.171 55.044-6.163 80.4 7.41h-.03c-23.65 0-42.82 19.17-42.82 42.82 0 23.626 19.147 42.82 42.82 42.82 23.65 0 42.82-19.17 42.82-42.82v-.03c18.462 34.49 16.312 77.914-8.25 110.95v.01l19.314 27.061C411.496 321.2 424 290.074 424 256zM262.014 356.727l-77.53-110.757c-5.014 52.387 29.314 98.354 77.53 110.757z"], + "fast-backward": [512, 512, [], "f049", "M0 436V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v151.9L235.5 71.4C256.1 54.3 288 68.6 288 96v131.9L459.5 71.4C480.1 54.3 512 68.6 512 96v320c0 27.4-31.9 41.7-52.5 24.6L288 285.3V416c0 27.4-31.9 41.7-52.5 24.6L64 285.3V436c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12z"], + "fast-forward": [512, 512, [], "f050", "M512 76v360c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V284.1L276.5 440.6c-20.6 17.2-52.5 2.8-52.5-24.6V284.1L52.5 440.6C31.9 457.8 0 443.4 0 416V96c0-27.4 31.9-41.7 52.5-24.6L224 226.8V96c0-27.4 31.9-41.7 52.5-24.6L448 226.8V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12z"], + "fax": [512, 512, [], "f1ac", "M128 144v320c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V144c0-26.51 21.49-48 48-48h32c26.51 0 48 21.49 48 48zm384 64v256c0 26.51-21.49 48-48 48H192c-26.51 0-48-21.49-48-48V40c0-22.091 17.909-40 40-40h207.432a39.996 39.996 0 0 1 28.284 11.716l48.569 48.569A39.999 39.999 0 0 1 480 88.568v74.174c18.641 6.591 32 24.36 32 45.258zm-320-16h240V96h-24c-13.203 0-24-10.797-24-24V48H192v144zm96 204c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm128 128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40z"], + "feather": [512, 512, [], "f52d", "M467.14 44.84c-62.55-62.48-161.67-64.78-252.28 25.73-78.61 78.52-60.98 60.92-85.75 85.66-60.46 60.39-70.39 150.83-63.64 211.17l178.44-178.25c6.26-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.6 9.37 33.98 0l66.1-66.03C159.42 454.65 279 457.11 353.95 384h-98.19l147.57-49.14c49.99-49.93 36.38-36.18 46.31-46.86h-97.78l131.54-43.8c45.44-74.46 34.31-148.84-16.26-199.36z"], + "feather-alt": [512, 512, [], "f56b", "M512 0C460.22 3.56 96.44 38.2 71.01 287.61c-3.09 26.66-4.84 53.44-5.99 80.24l178.87-178.69c6.25-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.59 9.37 33.98 0l57.13-57.07c42.09-.14 84.15-2.53 125.96-7.36 53.48-5.44 97.02-26.47 132.58-56.54H255.74l146.79-48.88c11.25-14.89 21.37-30.71 30.45-47.12h-81.14l106.54-53.21C500.29 132.86 510.19 26.26 512 0z"], + "female": [256, 512, [], "f182", "M128 0c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64S92.654 0 128 0m119.283 354.179l-48-192A24 24 0 0 0 176 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H80a24 24 0 0 0-23.283 18.179l-48 192C4.935 369.305 16.383 384 32 384h56v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V384h56c15.591 0 27.071-14.671 23.283-29.821z"], + "fighter-jet": [640, 512, [], "f0fb", "M544 224l-128-16-48-16h-24L227.158 44h39.509C278.333 44 288 41.375 288 38s-9.667-6-21.333-6H152v12h16v164h-48l-66.667-80H18.667L8 138.667V208h8v16h48v2.666l-64 8v42.667l64 8V288H16v16H8v69.333L18.667 384h34.667L120 304h48v164h-16v12h114.667c11.667 0 21.333-2.625 21.333-6s-9.667-6-21.333-6h-39.509L344 320h24l48-16 128-16c96-21.333 96-26.583 96-32 0-5.417 0-10.667-96-32z"], + "file": [384, 512, [], "f15b", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "file-alt": [384, 512, [], "f15c", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "file-archive": [384, 512, [], "f1c6", "M224 136V0h-63.6v32h-32V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM95.9 32h32v32h-32V32zm32.3 384c-33.2 0-58-30.4-51.4-62.9L96.4 256v-32h32v-32h-32v-32h32v-32h-32V96h32V64h32v32h-32v32h32v32h-32v32h32v32h-32v32h22.1c5.7 0 10.7 4.1 11.8 9.7l17.3 87.7c6.4 32.4-18.4 62.6-51.4 62.6zm32.7-53c0 14.9-14.5 27-32.4 27S96 378 96 363c0-14.9 14.5-27 32.4-27s32.5 12.1 32.5 27zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "file-audio": [384, 512, [], "f1c7", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "file-code": [384, 512, [], "f1c9", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zM123.206 400.505a5.4 5.4 0 0 1-7.633.246l-64.866-60.812a5.4 5.4 0 0 1 0-7.879l64.866-60.812a5.4 5.4 0 0 1 7.633.246l19.579 20.885a5.4 5.4 0 0 1-.372 7.747L101.65 336l40.763 35.874a5.4 5.4 0 0 1 .372 7.747l-19.579 20.884zm51.295 50.479l-27.453-7.97a5.402 5.402 0 0 1-3.681-6.692l61.44-211.626a5.402 5.402 0 0 1 6.692-3.681l27.452 7.97a5.4 5.4 0 0 1 3.68 6.692l-61.44 211.626a5.397 5.397 0 0 1-6.69 3.681zm160.792-111.045l-64.866 60.812a5.4 5.4 0 0 1-7.633-.246l-19.58-20.885a5.4 5.4 0 0 1 .372-7.747L284.35 336l-40.763-35.874a5.4 5.4 0 0 1-.372-7.747l19.58-20.885a5.4 5.4 0 0 1 7.633-.246l64.866 60.812a5.4 5.4 0 0 1-.001 7.879z"], + "file-contract": [384, 512, [], "f56c", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm192.81 248H304c8.84 0 16 7.16 16 16s-7.16 16-16 16h-47.19c-16.45 0-31.27-9.14-38.64-23.86-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34a15.986 15.986 0 0 1-14.31 8.84c-.38 0-.75-.02-1.14-.05-6.45-.45-12-4.75-14.03-10.89L144 354.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.77-16.19 54.05-9.7 66 14.16 2.02 4.06 5.96 6.5 10.16 6.5zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"], + "file-download": [384, 512, [], "f56d", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm76.45 211.36l-96.42 95.7c-6.65 6.61-17.39 6.61-24.04 0l-96.42-95.7C73.42 337.29 80.54 320 94.82 320H160v-80c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v80h65.18c14.28 0 21.4 17.29 11.27 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"], + "file-excel": [384, 512, [], "f1c3", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm60.1 106.5L224 336l60.1 93.5c5.1 8-.6 18.5-10.1 18.5h-34.9c-4.4 0-8.5-2.4-10.6-6.3C208.9 405.5 192 373 192 373c-6.4 14.8-10 20-36.6 68.8-2.1 3.9-6.1 6.3-10.5 6.3H110c-9.5 0-15.2-10.5-10.1-18.5l60.3-93.5-60.3-93.5c-5.2-8 .6-18.5 10.1-18.5h34.8c4.4 0 8.5 2.4 10.6 6.3 26.1 48.8 20 33.6 36.6 68.5 0 0 6.1-11.7 36.6-68.5 2.1-3.9 6.2-6.3 10.6-6.3H274c9.5-.1 15.2 10.4 10.1 18.4zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "file-export": [576, 512, [], "f56e", "M384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zM192 336v-32c0-8.84 7.16-16 16-16h176V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V352H208c-8.84 0-16-7.16-16-16zm379.05-28.02l-95.7-96.43c-10.06-10.14-27.36-3.01-27.36 11.27V288H384v64h63.99v65.18c0 14.28 17.29 21.41 27.36 11.27l95.7-96.42c6.6-6.66 6.6-17.4 0-24.05z"], + "file-image": [384, 512, [], "f1c5", "M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z"], + "file-import": [512, 512, [], "f56f", "M16 288c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h112v-64H16zm336-152V0H152c-13.3 0-24 10.7-24 24v264h127.99v-65.18c0-14.28 17.29-21.41 27.36-11.27l95.7 96.43c6.6 6.65 6.6 17.39 0 24.04l-95.7 96.42c-10.06 10.14-27.36 3.01-27.36-11.27V352H128v136c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H376c-13.2 0-24-10.8-24-24zm153-31L407.1 7c-4.5-4.5-10.6-7-17-7H384v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"], + "file-invoice": [384, 512, [], "f570", "M288 256H96v64h192v-64zm89-151L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm256 304c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-200v96c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-96c0-8.84 7.16-16 16-16h224c8.84 0 16 7.16 16 16z"], + "file-invoice-dollar": [384, 512, [], "f571", "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 80v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8zm144 263.88V440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-24.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V232c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v24.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07z"], + "file-medical": [384, 512, [], "f477", "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 160v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8z"], + "file-medical-alt": [448, 512, [], "f478", "M288 136V0H88C74.7 0 64 10.7 64 24v232H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h140.9c3 0 5.8 1.7 7.2 4.4l19.9 39.8 56.8-113.7c2.9-5.9 11.4-5.9 14.3 0l34.7 69.5H352c8.8 0 16 7.2 16 16s-7.2 16-16 16h-89.9L240 275.8l-56.8 113.7c-2.9 5.9-11.4 5.9-14.3 0L134.1 320H64v168c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H312c-13.2 0-24-10.8-24-24zm153-31L343.1 7c-4.5-4.5-10.6-7-17-7H320v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"], + "file-pdf": [384, 512, [], "f1c1", "M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z"], + "file-powerpoint": [384, 512, [], "f1c4", "M193.7 271.2c8.8 0 15.5 2.7 20.3 8.1 9.6 10.9 9.8 32.7-.2 44.1-4.9 5.6-11.9 8.5-21.1 8.5h-26.9v-60.7h27.9zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm53 165.2c0 90.3-88.8 77.6-111.1 77.6V436c0 6.6-5.4 12-12 12h-30.8c-6.6 0-12-5.4-12-12V236.2c0-6.6 5.4-12 12-12h81c44.5 0 72.9 32.8 72.9 77z"], + "file-prescription": [384, 512, [], "f572", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm68.53 179.48l11.31 11.31c6.25 6.25 6.25 16.38 0 22.63l-29.9 29.9L304 409.38c6.25 6.25 6.25 16.38 0 22.63l-11.31 11.31c-6.25 6.25-16.38 6.25-22.63 0L240 413.25l-30.06 30.06c-6.25 6.25-16.38 6.25-22.63 0L176 432c-6.25-6.25-6.25-16.38 0-22.63l30.06-30.06L146.74 320H128v48c0 8.84-7.16 16-16 16H96c-8.84 0-16-7.16-16-16V208c0-8.84 7.16-16 16-16h80c35.35 0 64 28.65 64 64 0 24.22-13.62 45.05-33.46 55.92L240 345.38l29.9-29.9c6.25-6.25 16.38-6.25 22.63 0zM176 272h-48v-32h48c8.82 0 16 7.18 16 16s-7.18 16-16 16zm208-150.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "file-signature": [576, 512, [], "f573", "M218.17 424.14c-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34c-6.37 12.78-25.03 11.37-29.48-2.09L144 386.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.75-16.19 54.06-9.7 66 14.16 1.89 3.78 5.49 5.95 9.36 6.26v-82.12l128-127.09V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24v-40l-128-.11c-16.12-.31-30.58-9.28-37.83-23.75zM384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zm-96 225.06V416h68.99l161.68-162.78-67.88-67.88L288 346.96zm280.54-179.63l-31.87-31.87c-9.94-9.94-26.07-9.94-36.01 0l-27.25 27.25 67.88 67.88 27.25-27.25c9.95-9.94 9.95-26.07 0-36.01z"], + "file-upload": [384, 512, [], "f574", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm65.18 216.01H224v80c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-80H94.82c-14.28 0-21.41-17.29-11.27-27.36l96.42-95.7c6.65-6.61 17.39-6.61 24.04 0l96.42 95.7c10.15 10.07 3.03 27.36-11.25 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"], + "file-video": [384, 512, [], "f1c8", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z"], + "file-word": [384, 512, [], "f1c2", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm57.1 120H305c7.7 0 13.4 7.1 11.7 14.7l-38 168c-1.2 5.5-6.1 9.3-11.7 9.3h-38c-5.5 0-10.3-3.8-11.6-9.1-25.8-103.5-20.8-81.2-25.6-110.5h-.5c-1.1 14.3-2.4 17.4-25.6 110.5-1.3 5.3-6.1 9.1-11.6 9.1H117c-5.6 0-10.5-3.9-11.7-9.4l-37.8-168c-1.7-7.5 4-14.6 11.7-14.6h24.5c5.7 0 10.7 4 11.8 9.7 15.6 78 20.1 109.5 21 122.2 1.6-10.2 7.3-32.7 29.4-122.7 1.3-5.4 6.1-9.1 11.7-9.1h29.1c5.6 0 10.4 3.8 11.7 9.2 24 100.4 28.8 124 29.6 129.4-.2-11.2-2.6-17.8 21.6-129.2 1-5.6 5.9-9.5 11.5-9.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "fill": [512, 512, [], "f575", "M502.63 217.06L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.77c-6.24-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.63l86.19 86.18-94.76 94.76c-37.49 37.49-37.49 98.26 0 135.75l117.19 117.19c18.75 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.88-28.12l221.57-221.57c12.49-12.5 12.49-32.76 0-45.26zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.61 58.6c12.49 12.49 32.75 12.49 45.24 0 12.49-12.49 12.49-32.75 0-45.24l-58.61-58.6 58.95-58.95 162.45 162.44-48.35 48.34z"], + "fill-drip": [576, 512, [], "f576", "M512 320s-64 92.65-64 128c0 35.35 28.66 64 64 64s64-28.65 64-64-64-128-64-128zm-9.37-102.94L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.76c-6.25-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.62l86.19 86.18-94.76 94.76c-37.49 37.48-37.49 98.26 0 135.75l117.19 117.19c18.74 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.87-28.12l221.57-221.57c12.5-12.5 12.5-32.75.01-45.25zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.6 58.6c12.49 12.49 32.75 12.49 45.24 0s12.49-32.75 0-45.24l-58.6-58.6 58.95-58.95 162.44 162.44-48.34 48.34z"], + "film": [512, 512, [], "f008", "M488 64h-8v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V64H96v20c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12V64h-8C10.7 64 0 74.7 0 88v336c0 13.3 10.7 24 24 24h8v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h320v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h8c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM96 372c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm272 208c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm0-168c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm112 152c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z"], + "filter": [512, 512, [], "f0b0", "M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z"], + "fingerprint": [512, 512, [], "f577", "M256.12 245.96c-13.25 0-24 10.74-24 24 1.14 72.25-8.14 141.9-27.7 211.55-2.73 9.72 2.15 30.49 23.12 30.49 10.48 0 20.11-6.92 23.09-17.52 13.53-47.91 31.04-125.41 29.48-224.52.01-13.25-10.73-24-23.99-24zm-.86-81.73C194 164.16 151.25 211.3 152.1 265.32c.75 47.94-3.75 95.91-13.37 142.55-2.69 12.98 5.67 25.69 18.64 28.36 13.05 2.67 25.67-5.66 28.36-18.64 10.34-50.09 15.17-101.58 14.37-153.02-.41-25.95 19.92-52.49 54.45-52.34 31.31.47 57.15 25.34 57.62 55.47.77 48.05-2.81 96.33-10.61 143.55-2.17 13.06 6.69 25.42 19.76 27.58 19.97 3.33 26.81-15.1 27.58-19.77 8.28-50.03 12.06-101.21 11.27-152.11-.88-55.8-47.94-101.88-104.91-102.72zm-110.69-19.78c-10.3-8.34-25.37-6.8-33.76 3.48-25.62 31.5-39.39 71.28-38.75 112 .59 37.58-2.47 75.27-9.11 112.05-2.34 13.05 6.31 25.53 19.36 27.89 20.11 3.5 27.07-14.81 27.89-19.36 7.19-39.84 10.5-80.66 9.86-121.33-.47-29.88 9.2-57.88 28-80.97 8.35-10.28 6.79-25.39-3.49-33.76zm109.47-62.33c-15.41-.41-30.87 1.44-45.78 4.97-12.89 3.06-20.87 15.98-17.83 28.89 3.06 12.89 16 20.83 28.89 17.83 11.05-2.61 22.47-3.77 34-3.69 75.43 1.13 137.73 61.5 138.88 134.58.59 37.88-1.28 76.11-5.58 113.63-1.5 13.17 7.95 25.08 21.11 26.58 16.72 1.95 25.51-11.88 26.58-21.11a929.06 929.06 0 0 0 5.89-119.85c-1.56-98.75-85.07-180.33-186.16-181.83zm252.07 121.45c-2.86-12.92-15.51-21.2-28.61-18.27-12.94 2.86-21.12 15.66-18.26 28.61 4.71 21.41 4.91 37.41 4.7 61.6-.11 13.27 10.55 24.09 23.8 24.2h.2c13.17 0 23.89-10.61 24-23.8.18-22.18.4-44.11-5.83-72.34zm-40.12-90.72C417.29 43.46 337.6 1.29 252.81.02 183.02-.82 118.47 24.91 70.46 72.94 24.09 119.37-.9 181.04.14 246.65l-.12 21.47c-.39 13.25 10.03 24.31 23.28 24.69.23.02.48.02.72.02 12.92 0 23.59-10.3 23.97-23.3l.16-23.64c-.83-52.5 19.16-101.86 56.28-139 38.76-38.8 91.34-59.67 147.68-58.86 69.45 1.03 134.73 35.56 174.62 92.39 7.61 10.86 22.56 13.45 33.42 5.86 10.84-7.62 13.46-22.59 5.84-33.43z"], + "fire": [384, 512, [], "f06d", "M216 23.858c0-23.802-30.653-32.765-44.149-13.038C48 191.851 224 200 224 288c0 35.629-29.114 64.458-64.85 63.994C123.98 351.538 96 322.22 96 287.046v-85.51c0-21.703-26.471-32.225-41.432-16.504C27.801 213.158 0 261.332 0 320c0 105.869 86.131 192 192 192s192-86.131 192-192c0-170.29-168-193.003-168-296.142z"], + "fire-extinguisher": [448, 512, [], "f134", "M434.027 26.329l-168 28C254.693 56.218 256 67.8 256 72h-58.332C208.353 36.108 181.446 0 144 0c-39.435 0-66.368 39.676-52.228 76.203-52.039 13.051-75.381 54.213-90.049 90.884-4.923 12.307 1.063 26.274 13.37 31.197 12.317 4.926 26.279-1.075 31.196-13.37C75.058 112.99 106.964 120 168 120v27.076c-41.543 10.862-72 49.235-72 94.129V488c0 13.255 10.745 24 24 24h144c13.255 0 24-10.745 24-24V240c0-44.731-30.596-82.312-72-92.97V120h40c0 2.974-1.703 15.716 10.027 17.671l168 28C441.342 166.89 448 161.25 448 153.834V38.166c0-7.416-6.658-13.056-13.973-11.837zM144 72c-8.822 0-16-7.178-16-16s7.178-16 16-16 16 7.178 16 16-7.178 16-16 16z"], + "first-aid": [576, 512, [], "f479", "M0 80v352c0 26.5 21.5 48 48 48h48V32H48C21.5 32 0 53.5 0 80zm128 400h320V32H128v448zm64-248c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48zM528 32h-48v448h48c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"], + "fish": [576, 512, [], "f578", "M327.1 96c-89.97 0-168.54 54.77-212.27 101.63L27.5 131.58c-12.13-9.18-30.24.6-27.14 14.66L24.54 256 .35 365.77c-3.1 14.06 15.01 23.83 27.14 14.66l87.33-66.05C158.55 361.23 237.13 416 327.1 416 464.56 416 576 288 576 256S464.56 96 327.1 96zm87.43 184c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24 13.26 0 24 10.74 24 24 0 13.25-10.75 24-24 24z"], + "flag": [512, 512, [], "f024", "M349.565 98.783C295.978 98.783 251.721 64 184.348 64c-24.955 0-47.309 4.384-68.045 12.013a55.947 55.947 0 0 0 3.586-23.562C118.117 24.015 94.806 1.206 66.338.048 34.345-1.254 8 24.296 8 56c0 19.026 9.497 35.825 24 45.945V488c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-94.4c28.311-12.064 63.582-22.122 114.435-22.122 53.588 0 97.844 34.783 165.217 34.783 48.169 0 86.667-16.294 122.505-40.858C506.84 359.452 512 349.571 512 339.045v-243.1c0-23.393-24.269-38.87-45.485-29.016-34.338 15.948-76.454 31.854-116.95 31.854z"], + "flag-checkered": [512, 512, [], "f11e", "M466.515 66.928C487.731 57.074 512 72.551 512 95.944v243.1c0 10.526-5.161 20.407-13.843 26.358-35.837 24.564-74.335 40.858-122.505 40.858-67.373 0-111.63-34.783-165.217-34.783-50.853 0-86.124 10.058-114.435 22.122V488c0 13.255-10.745 24-24 24H56c-13.255 0-24-10.745-24-24V101.945C17.497 91.825 8 75.026 8 56 8 24.296 34.345-1.254 66.338.048c28.468 1.158 51.779 23.968 53.551 52.404.52 8.342-.81 16.31-3.586 23.562C137.039 68.384 159.393 64 184.348 64c67.373 0 111.63 34.783 165.217 34.783 40.496 0 82.612-15.906 116.95-31.855zM96 134.63v70.49c29-10.67 51.18-17.83 73.6-20.91v-71.57c-23.5 2.17-40.44 9.79-73.6 21.99zm220.8 9.19c-26.417-4.672-49.886-13.979-73.6-21.34v67.42c24.175 6.706 47.566 16.444 73.6 22.31v-68.39zm-147.2 40.39v70.04c32.796-2.978 53.91-.635 73.6 3.8V189.9c-25.247-7.035-46.581-9.423-73.6-5.69zm73.6 142.23c26.338 4.652 49.732 13.927 73.6 21.34v-67.41c-24.277-6.746-47.54-16.45-73.6-22.32v68.39zM96 342.1c23.62-8.39 47.79-13.84 73.6-16.56v-71.29c-26.11 2.35-47.36 8.04-73.6 17.36v70.49zm368-221.6c-21.3 8.85-46.59 17.64-73.6 22.47v71.91c27.31-4.36 50.03-14.1 73.6-23.89V120.5zm0 209.96v-70.49c-22.19 14.2-48.78 22.61-73.6 26.02v71.58c25.07-2.38 48.49-11.04 73.6-27.11zM316.8 212.21v68.16c25.664 7.134 46.616 9.342 73.6 5.62v-71.11c-25.999 4.187-49.943 2.676-73.6-2.67z"], + "flask": [448, 512, [], "f0c3", "M437.2 403.5L320 215V64h8c13.3 0 24-10.7 24-24V24c0-13.3-10.7-24-24-24H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h8v151L10.8 403.5C-18.5 450.6 15.3 512 70.9 512h306.2c55.7 0 89.4-61.5 60.1-108.5zM137.9 320l48.2-77.6c3.7-5.2 5.8-11.6 5.8-18.4V64h64v160c0 6.9 2.2 13.2 5.8 18.4l48.2 77.6h-172z"], + "flushed": [496, 512, [], "f579", "M344 200c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-192 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM80 224c0-39.8 32.2-72 72-72s72 32.2 72 72-32.2 72-72 72-72-32.2-72-72zm232 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-104c-39.8 0-72-32.2-72-72s32.2-72 72-72 72 32.2 72 72-32.2 72-72 72z"], + "folder": [512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z"], + "folder-open": [576, 512, [], "f07c", "M572.694 292.093L500.27 416.248A63.997 63.997 0 0 1 444.989 448H45.025c-18.523 0-30.064-20.093-20.731-36.093l72.424-124.155A64 64 0 0 1 152 256h399.964c18.523 0 30.064 20.093 20.73 36.093zM152 224h328v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v278.046l69.077-118.418C86.214 242.25 117.989 224 152 224z"], + "font": [448, 512, [], "f031", "M152 416h-24.013l26.586-80.782H292.8L319.386 416H296c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-26.739L275.495 42.746A16 16 0 0 0 260.382 32h-72.766a16 16 0 0 0-15.113 10.746L42.739 416H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm64.353-271.778c4.348-15.216 6.61-28.156 7.586-34.644.839 6.521 2.939 19.476 7.727 34.706l41.335 124.006h-98.619l41.971-124.068z"], + "font-awesome-logo-full": [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"], + "football-ball": [496, 512, [], "f44e", "M481.5 60.3c-4.8-18.2-19.1-32.5-37.3-37.4C420.3 16.5 383 8.9 339.4 8L496 164.8c-.8-43.5-8.2-80.6-14.5-104.5zm-467 391.4c4.8 18.2 19.1 32.5 37.3 37.4 23.9 6.4 61.2 14 104.8 14.9L0 347.2c.8 43.5 8.2 80.6 14.5 104.5zM4.2 283.4L220.4 500c132.5-19.4 248.8-118.7 271.5-271.4L275.6 12C143.1 31.4 26.8 130.7 4.2 283.4zm317.3-123.6c3.1-3.1 8.2-3.1 11.3 0l11.3 11.3c3.1 3.1 3.1 8.2 0 11.3l-28.3 28.3 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-22.6 22.7 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L248 278.6l-22.6 22.6 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-28.3 28.3c-3.1 3.1-8.2 3.1-11.3 0l-11.3-11.3c-3.1-3.1-3.1-8.2 0-11.3l28.3-28.3-28.3-28.2c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 28.3-28.5z"], + "forward": [512, 512, [], "f04e", "M500.5 231.4l-192-160C287.9 54.3 256 68.6 256 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2zm-256 0l-192-160C31.9 54.3 0 68.6 0 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2z"], + "frog": [576, 512, [], "f52e", "M446.53 97.43C439.67 60.23 407.19 32 368 32c-39.23 0-71.72 28.29-78.54 65.54C126.75 112.96-.5 250.12 0 416.98.11 451.9 29.08 480 64 480h304c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-79.49l35.8-48.33c24.14-36.23 10.35-88.28-33.71-106.6-23.89-9.93-51.55-4.65-72.24 10.88l-32.76 24.59c-7.06 5.31-17.09 3.91-22.41-3.19-5.3-7.08-3.88-17.11 3.19-22.41l34.78-26.09c36.84-27.66 88.28-27.62 125.13 0 10.87 8.15 45.87 39.06 40.8 93.21L469.62 480H560c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-53.63l-98.52-104.68 154.44-86.65A58.16 58.16 0 0 0 576 189.94c0-21.4-11.72-40.95-30.48-51.23-40.56-22.22-98.99-41.28-98.99-41.28zM368 136c-13.26 0-24-10.75-24-24 0-13.26 10.74-24 24-24 13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24z"], + "frown": [496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm170.2 218.2C315.8 367.4 282.9 352 248 352s-67.8 15.4-90.2 42.2c-13.5 16.3-38.1-4.2-24.6-20.5C161.7 339.6 203.6 320 248 320s86.3 19.6 114.7 53.8c13.6 16.2-11 36.7-24.5 20.4z"], + "frown-open": [496, 512, [], "f57a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm187.3 183.3c-31.2-9.6-59.4-15.3-75.3-15.3s-44.1 5.7-75.3 15.3c-11.5 3.5-22.5-6.3-20.5-18.1 7-40 60.1-61.2 95.8-61.2s88.8 21.3 95.8 61.2c2 11.9-9.1 21.6-20.5 18.1zM328 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "futbol": [512, 512, [], "f1e3", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-48 0l-.003-.282-26.064 22.741-62.679-58.5 16.454-84.355 34.303 3.072c-24.889-34.216-60.004-60.089-100.709-73.141l13.651 31.939L256 139l-74.953-41.525 13.651-31.939c-40.631 13.028-75.78 38.87-100.709 73.141l34.565-3.073 16.192 84.355-62.678 58.5-26.064-22.741-.003.282c0 43.015 13.497 83.952 38.472 117.991l7.704-33.897 85.138 10.447 36.301 77.826-29.902 17.786c40.202 13.122 84.29 13.148 124.572 0l-29.902-17.786 36.301-77.826 85.138-10.447 7.704 33.897C442.503 339.952 456 299.015 456 256zm-248.102 69.571l-29.894-91.312L256 177.732l77.996 56.527-29.622 91.312h-96.476z"], + "gamepad": [640, 512, [], "f11b", "M480 96H160C71.6 96 0 167.6 0 256s71.6 160 160 160c44.8 0 85.2-18.4 114.2-48h91.5c29 29.6 69.5 48 114.2 48 88.4 0 160-71.6 160-160S568.4 96 480 96zM256 276c0 6.6-5.4 12-12 12h-52v52c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-52H76c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h52v-52c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h52c6.6 0 12 5.4 12 12v40zm184 68c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-80c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"], + "gas-pump": [512, 512, [], "f52f", "M336 448H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm157.2-340.7l-81-81c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-6.2 6.2-6.2 16.4 0 22.6L416 97.9V160c0 28.1 20.9 51.3 48 55.2V376c0 13.2-10.8 24-24 24s-24-10.8-24-24v-32c0-48.6-39.4-88-88-88h-8V64c0-35.3-28.7-64-64-64H96C60.7 0 32 28.7 32 64v352h288V304h8c22.1 0 40 17.9 40 40v27.8c0 37.7 27 72 64.5 75.9 43 4.3 79.5-29.5 79.5-71.7V152.6c0-17-6.8-33.3-18.8-45.3zM256 192H96V64h160v128z"], + "gavel": [512, 512, [], "f0e3", "M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z"], + "gem": [576, 512, [], "f3a5", "M485.5 0L576 160H474.9L405.7 0h79.8zm-128 0l69.2 160H149.3L218.5 0h139zm-267 0h79.8l-69.2 160H0L90.5 0zM0 192h100.7l123 251.7c1.5 3.1-2.7 5.9-5 3.3L0 192zm148.2 0h279.6l-137 318.2c-1 2.4-4.5 2.4-5.5 0L148.2 192zm204.1 251.7l123-251.7H576L357.3 446.9c-2.3 2.7-6.5-.1-5-3.2z"], + "genderless": [288, 512, [], "f22d", "M144 176c44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80 35.9-80 80-80m0-64C64.5 112 0 176.5 0 256s64.5 144 144 144 144-64.5 144-144-64.5-144-144-144z"], + "gift": [512, 512, [], "f06b", "M32 448c0 17.7 14.3 32 32 32h160V320H32v128zm448-288h-42.1c6.2-12.1 10.1-25.5 10.1-40 0-48.5-39.5-88-88-88-41.6 0-68.5 21.3-103 68.3-34.5-47-61.4-68.3-103-68.3-48.5 0-88 39.5-88 88 0 14.5 3.8 27.9 10.1 40H32c-17.7 0-32 14.3-32 32v80c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-80c0-17.7-14.3-32-32-32zm-326.1 0c-22.1 0-40-17.9-40-40s17.9-40 40-40c19.9 0 34.6 3.3 86.1 80h-86.1zm206.1 0h-86.1c51.4-76.5 65.7-80 86.1-80 22.1 0 40 17.9 40 40s-17.9 40-40 40zm-72 320h160c17.7 0 32-14.3 32-32V320H288v160z"], + "glass-martini": [512, 512, [], "f000", "M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6z"], + "glass-martini-alt": [512, 512, [], "f57b", "M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6zM443.77 48l-48 48H116.24l-48-48h375.53z"], + "glasses": [576, 512, [], "f530", "M574.1 280.37L528.75 98.66c-5.91-23.7-21.59-44.05-43-55.81-21.44-11.73-46.97-14.11-70.19-6.33l-15.25 5.08c-8.39 2.79-12.92 11.86-10.12 20.24l5.06 15.18c2.79 8.38 11.85 12.91 20.23 10.12l13.18-4.39c10.87-3.62 23-3.57 33.16 1.73 10.29 5.37 17.57 14.56 20.37 25.82l38.46 153.82c-22.19-6.81-49.79-12.46-81.2-12.46-34.77 0-73.98 7.02-114.85 26.74h-73.18c-40.87-19.74-80.08-26.75-114.86-26.75-31.42 0-59.02 5.65-81.21 12.46l38.46-153.83c2.79-11.25 10.09-20.45 20.38-25.81 10.16-5.3 22.28-5.35 33.15-1.73l13.17 4.39c8.38 2.79 17.44-1.74 20.23-10.12l5.06-15.18c2.8-8.38-1.73-17.45-10.12-20.24l-15.25-5.08c-23.22-7.78-48.75-5.41-70.19 6.33-21.41 11.77-37.09 32.11-43 55.8L1.9 280.37A64.218 64.218 0 0 0 0 295.86v70.25C0 429.01 51.58 480 115.2 480h37.12c60.28 0 110.37-45.94 114.88-105.37l2.93-38.63h35.75l2.93 38.63C313.31 434.06 363.4 480 423.68 480h37.12c63.62 0 115.2-50.99 115.2-113.88v-70.25c0-5.23-.64-10.43-1.9-15.5zm-370.72 89.42c-1.97 25.91-24.4 46.21-51.06 46.21H115.2C86.97 416 64 393.62 64 366.11v-37.54c18.12-6.49 43.42-12.92 72.58-12.92 23.86 0 47.26 4.33 69.93 12.92l-3.13 41.22zM512 366.12c0 27.51-22.97 49.88-51.2 49.88h-37.12c-26.67 0-49.1-20.3-51.06-46.21l-3.13-41.22c22.67-8.59 46.08-12.92 69.95-12.92 29.12 0 54.43 6.44 72.55 12.93v37.54z"], + "globe": [496, 512, [], "f0ac", "M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z"], + "globe-africa": [496, 512, [], "f57c", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm160 215.5v6.93c0 5.87-3.32 11.24-8.57 13.86l-15.39 7.7a15.485 15.485 0 0 1-15.53-.97l-18.21-12.14a15.52 15.52 0 0 0-13.5-1.81l-2.65.88c-9.7 3.23-13.66 14.79-7.99 23.3l13.24 19.86c2.87 4.31 7.71 6.9 12.89 6.9h8.21c8.56 0 15.5 6.94 15.5 15.5v11.34c0 3.35-1.09 6.62-3.1 9.3l-18.74 24.98c-1.42 1.9-2.39 4.1-2.83 6.43l-4.3 22.83c-.62 3.29-2.29 6.29-4.76 8.56a159.608 159.608 0 0 0-25 29.16l-13.03 19.55a27.756 27.756 0 0 1-23.09 12.36c-10.51 0-20.12-5.94-24.82-15.34a78.902 78.902 0 0 1-8.33-35.29V367.5c0-8.56-6.94-15.5-15.5-15.5h-25.88c-14.49 0-28.38-5.76-38.63-16a54.659 54.659 0 0 1-16-38.63v-14.06c0-17.19 8.1-33.38 21.85-43.7l27.58-20.69a54.663 54.663 0 0 1 32.78-10.93h.89c8.48 0 16.85 1.97 24.43 5.77l14.72 7.36c3.68 1.84 7.93 2.14 11.83.84l47.31-15.77c6.33-2.11 10.6-8.03 10.6-14.7 0-8.56-6.94-15.5-15.5-15.5h-10.09c-4.11 0-8.05-1.63-10.96-4.54l-6.92-6.92a15.493 15.493 0 0 0-10.96-4.54H199.5c-8.56 0-15.5-6.94-15.5-15.5v-4.4c0-7.11 4.84-13.31 11.74-15.04l14.45-3.61c3.74-.94 7-3.23 9.14-6.44l8.08-12.11c2.87-4.31 7.71-6.9 12.89-6.9h24.21c8.56 0 15.5-6.94 15.5-15.5v-21.7C359.23 71.63 422.86 131.02 441.93 208H423.5c-8.56 0-15.5 6.94-15.5 15.5z"], + "globe-americas": [496, 512, [], "f57d", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm82.29 357.6c-3.9 3.88-7.99 7.95-11.31 11.28-2.99 3-5.1 6.7-6.17 10.71-1.51 5.66-2.73 11.38-4.77 16.87l-17.39 46.85c-13.76 3-28 4.69-42.65 4.69v-27.38c1.69-12.62-7.64-36.26-22.63-51.25-6-6-9.37-14.14-9.37-22.63v-32.01c0-11.64-6.27-22.34-16.46-27.97-14.37-7.95-34.81-19.06-48.81-26.11-11.48-5.78-22.1-13.14-31.65-21.75l-.8-.72a114.792 114.792 0 0 1-18.06-20.74c-9.38-13.77-24.66-36.42-34.59-51.14 20.47-45.5 57.36-82.04 103.2-101.89l24.01 12.01C203.48 89.74 216 82.01 216 70.11v-11.3c7.99-1.29 16.12-2.11 24.39-2.42l28.3 28.3c6.25 6.25 6.25 16.38 0 22.63L264 112l-10.34 10.34c-3.12 3.12-3.12 8.19 0 11.31l4.69 4.69c3.12 3.12 3.12 8.19 0 11.31l-8 8a8.008 8.008 0 0 1-5.66 2.34h-8.99c-2.08 0-4.08.81-5.58 2.27l-9.92 9.65a8.008 8.008 0 0 0-1.58 9.31l15.59 31.19c2.66 5.32-1.21 11.58-7.15 11.58h-5.64c-1.93 0-3.79-.7-5.24-1.96l-9.28-8.06a16.017 16.017 0 0 0-15.55-3.1l-31.17 10.39a11.95 11.95 0 0 0-8.17 11.34c0 4.53 2.56 8.66 6.61 10.69l11.08 5.54c9.41 4.71 19.79 7.16 30.31 7.16s22.59 27.29 32 32h66.75c8.49 0 16.62 3.37 22.63 9.37l13.69 13.69a30.503 30.503 0 0 1 8.93 21.57 46.536 46.536 0 0 1-13.72 32.98zM417 274.25c-5.79-1.45-10.84-5-14.15-9.97l-17.98-26.97a23.97 23.97 0 0 1 0-26.62l19.59-29.38c2.32-3.47 5.5-6.29 9.24-8.15l12.98-6.49C440.2 193.59 448 223.87 448 256c0 8.67-.74 17.16-1.82 25.54L417 274.25z"], + "globe-asia": [496, 512, [], "f57e", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm-11.34 240.23c-2.89 4.82-8.1 7.77-13.72 7.77h-.31c-4.24 0-8.31 1.69-11.31 4.69l-5.66 5.66c-3.12 3.12-3.12 8.19 0 11.31l5.66 5.66c3 3 4.69 7.07 4.69 11.31V304c0 8.84-7.16 16-16 16h-6.11c-6.06 0-11.6-3.42-14.31-8.85l-22.62-45.23c-2.44-4.88-8.95-5.94-12.81-2.08l-19.47 19.46c-3 3-7.07 4.69-11.31 4.69H50.81C49.12 277.55 48 266.92 48 256c0-110.28 89.72-200 200-200 21.51 0 42.2 3.51 61.63 9.82l-50.16 38.53c-5.11 3.41-4.63 11.06.86 13.81l10.83 5.41c5.42 2.71 8.84 8.25 8.84 14.31V216c0 4.42-3.58 8-8 8h-3.06c-3.03 0-5.8-1.71-7.15-4.42-1.56-3.12-5.96-3.29-7.76-.3l-17.37 28.95zM408 358.43c0 4.24-1.69 8.31-4.69 11.31l-9.57 9.57c-3 3-7.07 4.69-11.31 4.69h-15.16c-4.24 0-8.31-1.69-11.31-4.69l-13.01-13.01a26.767 26.767 0 0 0-25.42-7.04l-21.27 5.32c-1.27.32-2.57.48-3.88.48h-10.34c-4.24 0-8.31-1.69-11.31-4.69l-11.91-11.91a8.008 8.008 0 0 1-2.34-5.66v-10.2c0-3.27 1.99-6.21 5.03-7.43l39.34-15.74c1.98-.79 3.86-1.82 5.59-3.05l23.71-16.89a7.978 7.978 0 0 1 4.64-1.48h12.09c3.23 0 6.15 1.94 7.39 4.93l5.35 12.85a4 4 0 0 0 3.69 2.46h3.8c1.78 0 3.35-1.18 3.84-2.88l4.2-14.47c.5-1.71 2.06-2.88 3.84-2.88h6.06c2.21 0 4 1.79 4 4v12.93c0 2.12.84 4.16 2.34 5.66l11.91 11.91c3 3 4.69 7.07 4.69 11.31v24.6z"], + "golf-ball": [416, 512, [], "f450", "M96 416h224c0 17.7-14.3 32-32 32h-16c-17.7 0-32 14.3-32 32v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-20c0-17.7-14.3-32-32-32h-16c-17.7 0-32-14.3-32-32zm320-208c0 74.2-39 139.2-97.5 176h-221C39 347.2 0 282.2 0 208 0 93.1 93.1 0 208 0s208 93.1 208 208zm-180.1 43.9c18.3 0 33.1-14.8 33.1-33.1 0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1zm49.1 46.9c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1zm64-64c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1z"], + "graduation-cap": [640, 512, [], "f19d", "M622.884 199.005l-275.817 85.1a96 96 0 0 1-54.134 0L92.398 222.232c-8.564 11.438-11.018 23.05-11.918 38.335C89.778 266.165 96 276.355 96 288c0 11.952-6.557 22.366-16.265 27.861l16.197 123.096c.63 4.786-3.1 9.043-7.932 9.043H40c-4.828 0-8.562-4.253-7.932-9.044L48.265 315.86C38.557 310.366 32 299.952 32 288c0-12.034 6.646-22.511 16.465-27.976.947-17.951 3.974-33.231 12.152-47.597l-43.502-13.422c-22.876-6.801-22.766-39.241 0-46.01l275.817-85.1a96 96 0 0 1 54.134 0l275.817 85.1c22.877 6.801 22.767 39.241.001 46.01zM356.503 314.682l-.207.064-.207.061a127.998 127.998 0 0 1-72.177 0l-.207-.061-.207-.064-150.914-46.57L120 352c0 35.346 89.543 64 200 64s200-28.654 200-64l-12.583-83.888-150.914 46.57z"], + "greater-than": [384, 512, [], "f531", "M365.52 209.85L59.22 67.01c-16.06-7.49-35.15-.54-42.64 15.52L3.01 111.61c-7.49 16.06-.54 35.15 15.52 42.64L236.96 256.1 18.49 357.99C2.47 365.46-4.46 384.5 3.01 400.52l13.52 29C24 445.54 43.04 452.47 59.06 445l306.47-142.91a32.003 32.003 0 0 0 18.48-29v-34.23c-.01-12.45-7.21-23.76-18.49-29.01z"], + "greater-than-equal": [448, 512, [], "f532", "M55.22 107.69l175.56 68.09-175.44 68.05c-18.39 6.03-27.88 24.39-21.2 41l12.09 30.08c6.68 16.61 26.99 25.19 45.38 19.15L393.02 214.2c13.77-4.52 22.98-16.61 22.98-30.17v-15.96c0-13.56-9.21-25.65-22.98-30.17L91.3 17.92c-18.29-6-38.51 2.53-45.15 19.06L34.12 66.9c-6.64 16.53 2.81 34.79 21.1 40.79zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"], + "grimace": [496, 512, [], "f57f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM144 400h-8c-17.7 0-32-14.3-32-32v-8h40v40zm0-56h-40v-8c0-17.7 14.3-32 32-32h8v40zm-8-136c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm72 192h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm-8-104c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64 128c0 17.7-14.3 32-32 32h-8v-40h40v8zm0-24h-40v-40h8c17.7 0 32 14.3 32 32v8z"], + "grin": [496, 512, [], "f580", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm80 256c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"], + "grin-alt": [496, 512, [], "f581", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm63.7 128.7c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zm-160 0c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"], + "grin-beam": [496, 512, [], "f582", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 144c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"], + "grin-beam-sweat": [504, 512, [], "f583", "M456 128c26.5 0 48-21 48-47 0-20-28.5-60.4-41.6-77.8-3.2-4.3-9.6-4.3-12.8 0C436.5 20.6 408 61 408 81c0 26 21.5 47 48 47zm0 32c-44.1 0-80-35.4-80-79 0-4.4.3-14.2 8.1-32.2C345 23.1 298.3 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-35.1-7.4-68.4-20.5-98.6-6.3 1.5-12.7 2.6-19.5 2.6zm-128-8c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"], + "grin-hearts": [496, 512, [], "f584", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM90.4 183.6c6.7-17.6 26.7-26.7 44.9-21.9l7.1 1.9 2-7.1c5-18.1 22.8-30.9 41.5-27.9 21.4 3.4 34.4 24.2 28.8 44.5L195.3 243c-1.2 4.5-5.9 7.2-10.5 6l-70.2-18.2c-20.4-5.4-31.9-27-24.2-47.2zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm133.4-201.3l-70.2 18.2c-4.5 1.2-9.2-1.5-10.5-6L281.3 173c-5.6-20.3 7.4-41.1 28.8-44.5 18.6-3 36.4 9.8 41.5 27.9l2 7.1 7.1-1.9c18.2-4.7 38.2 4.3 44.9 21.9 7.7 20.3-3.8 41.9-24.2 47.2z"], + "grin-squint": [496, 512, [], "f585", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"], + "grin-squint-tears": [512, 512, [], "f586", "M409.6 111.9c22.6-3.2 73.5-12 88.3-26.8 19.2-19.2 18.9-50.6-.7-70.2S446-5 426.9 14.2c-14.8 14.8-23.5 65.7-26.8 88.3-.8 5.5 3.9 10.2 9.5 9.4zM102.4 400.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm311.7-256.5c-33 3.9-48.6-25.1-45.7-45.7 3.4-24 7.4-42.1 11.5-56.5C285.1-13.4 161.8-.5 80.6 80.6-.5 161.7-13.4 285 41.4 379.9c14.4-4.1 32.4-8 56.5-11.5 33.2-3.9 48.6 25.2 45.7 45.7-3.4 24-7.4 42.1-11.5 56.5 94.8 54.8 218.1 41.9 299.3-39.2s94-204.4 39.2-299.3c-14.4 4.1-32.5 8-56.5 11.5zM255.7 106c3.3-13.2 22.4-11.5 23.6 1.8l4.8 52.3 52.3 4.8c13.4 1.2 14.9 20.3 1.8 23.6l-90.5 22.6c-8.9 2.2-16.7-5.9-14.5-14.5l22.5-90.6zm-90.9 230.3L160 284l-52.3-4.8c-13.4-1.2-14.9-20.3-1.8-23.6l90.5-22.6c8.8-2.2 16.7 5.8 14.5 14.5L188.3 338c-3.1 13.2-22.2 11.7-23.5-1.7zm215.7 44.2c-29.3 29.3-75.7 50.4-116.7 50.4-18.9 0-36.6-4.5-51-14.7-9.8-6.9-8.7-21.8 2-27.2 28.3-14.6 63.9-42.4 97.8-76.3s61.7-69.6 76.3-97.8c5.4-10.5 20.2-11.9 27.3-2 32.3 45.3 7.1 124.7-35.7 167.6z"], + "grin-stars": [496, 512, [], "f587", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM94.6 168.9l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.2 1 8.9 8.6 4.3 13.2l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L152 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.6-4.7-1.9-12.3 4.3-13.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm157.7-249.9l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L344 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.5-4.6-1.9-12.2 4.3-13.2l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.3.9 9 8.5 4.4 13.1z"], + "grin-tears": [640, 512, [], "f588", "M102.4 256.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm523.4 26.8c-14.8-14.8-65.7-23.5-88.3-26.8-5.5-.8-10.3 3.9-9.5 9.5 3.2 22.6 12 73.5 26.8 88.3 19.2 19.2 50.6 18.9 70.2-.7s20-51.2.8-70.3zm-129.4-12.8c-3.8-26.6 19.1-49.5 45.7-45.7 8.9 1.3 16.8 2.7 24.3 4.1C552.7 104.5 447.7 8 320 8S87.3 104.5 73.6 228.5c7.5-1.4 15.4-2.8 24.3-4.1 33.2-3.9 48.6 25.3 45.7 45.7-11.8 82.3-29.9 100.4-35.8 106.4-.9.9-2 1.6-3 2.5 42.7 74.6 123 125 215.2 125s172.5-50.4 215.2-125.1c-1-.9-2.1-1.5-3-2.5-5.9-5.9-24-24-35.8-106.3zM400 152c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.7 9.2-21.6 20.7-17.9C227.1 330.5 272 336 320 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"], + "grin-tongue": [496, 512, [], "f589", "M248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-34.9 134.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z"], + "grin-tongue-squint": [496, 512, [], "f58a", "M293.1 374.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-33.8 210.3l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.7 4.7 7.7 15.9 0 20.6zm163 30c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.8-4.7-7.8-15.9 0-20.6l80-48c11.7-6.9 23.9 7.7 15.4 18L343.6 208l33.6 40.3z"], + "grin-tongue-wink": [496, 512, [], "f58b", "M344 184c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-56 225l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L112 233c-8.5 7.4-21.6.3-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c1.6 11.1-11.6 18.2-20 10.8zm152 39c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm-50.9 102.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z"], + "grin-wink": [496, 512, [], "f58c", "M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm168 25l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.6 11-11.5 18.2-20 10.8zm-243.1 87.8C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6 20.7 17.9-9.2 55-83.2 93.3-143.8 93.3s-134.5-38.3-143.8-93.3c-2-11.9 9.3-21.6 20.7-17.9z"], + "grip-horizontal": [448, 512, [], "f58d", "M96 288H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM96 96H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z"], + "grip-vertical": [320, 512, [], "f58e", "M96 32H32C14.33 32 0 46.33 0 64v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM288 32h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z"], + "h-square": [448, 512, [], "f0fd", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-112 48h-32c-8.837 0-16 7.163-16 16v80H160v-80c0-8.837-7.163-16-16-16h-32c-8.837 0-16 7.163-16 16v224c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16v-80h128v80c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144c0-8.837-7.163-16-16-16z"], + "hand-holding": [576, 512, [], "f4bd", "M565.3 328.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z"], + "hand-holding-heart": [576, 512, [], "f4be", "M275.3 250.5c7 7.4 18.4 7.4 25.5 0l108.9-114.2c31.6-33.2 29.8-88.2-5.6-118.8-30.8-26.7-76.7-21.9-104.9 7.7L288 36.9l-11.1-11.6C248.7-4.4 202.8-9.2 172 17.5c-35.3 30.6-37.2 85.6-5.6 118.8l108.9 114.2zm290 77.6c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z"], + "hand-holding-usd": [544, 512, [], "f4c0", "M257.6 144.3l50 14.3c3.6 1 6.1 4.4 6.1 8.1 0 4.6-3.8 8.4-8.4 8.4h-32.8c-3.6 0-7.1-.8-10.3-2.2-4.8-2.2-10.4-1.7-14.1 2l-17.5 17.5c-5.3 5.3-4.7 14.3 1.5 18.4 9.5 6.3 20.3 10.1 31.8 11.5V240c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16v-17.6c30.3-3.6 53.3-31 49.3-63-2.9-23-20.7-41.3-42.9-47.7l-50-14.3c-3.6-1-6.1-4.4-6.1-8.1 0-4.6 3.8-8.4 8.4-8.4h32.8c3.6 0 7.1.8 10.3 2.2 4.8 2.2 10.4 1.7 14.1-2l17.5-17.5c5.3-5.3 4.7-14.3-1.5-18.4-9.5-6.3-20.3-10.1-31.8-11.5V16c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16v17.6c-30.3 3.6-53.3 31-49.3 63 2.9 23 20.7 41.3 42.9 47.7zm276.3 183.8c-11.2-10.7-28.5-10-40.3 0L406.4 402c-10.7 9.1-24 14-37.8 14H256.9c-8.3 0-15.1-7.2-15.1-16s6.8-16 15.1-16h73.9c15.1 0 29-10.9 31.4-26.6 3.1-20-11.5-37.4-29.8-37.4H181.3c-25.5 0-50.2 9.3-69.9 26.3L67.5 384H15.1C6.8 384 0 391.2 0 400v96c0 8.8 6.8 16 15.1 16H352c13.7 0 27-4.9 37.8-14l142.8-121c14.4-12.1 15.5-35.3 1.3-48.9z"], + "hand-lizard": [576, 512, [], "f258", "M384 480h192V363.778a95.998 95.998 0 0 0-14.833-51.263L398.127 54.368A48 48 0 0 0 357.544 32H24C10.745 32 0 42.745 0 56v16c0 30.928 25.072 56 56 56h229.981c12.844 0 21.556 13.067 16.615 24.923l-21.41 51.385A32 32 0 0 1 251.648 224H128c-35.346 0-64 28.654-64 64v8c0 13.255 10.745 24 24 24h147.406a47.995 47.995 0 0 1 25.692 7.455l111.748 70.811A24.001 24.001 0 0 1 384 418.539V480z"], + "hand-paper": [448, 512, [], "f256", "M408.781 128.007C386.356 127.578 368 146.36 368 168.79V256h-8V79.79c0-22.43-18.356-41.212-40.781-40.783C297.488 39.423 280 57.169 280 79v177h-8V40.79C272 18.36 253.644-.422 231.219.007 209.488.423 192 18.169 192 40v216h-8V80.79c0-22.43-18.356-41.212-40.781-40.783C121.488 40.423 104 58.169 104 80v235.992l-31.648-43.519c-12.993-17.866-38.009-21.817-55.877-8.823-17.865 12.994-21.815 38.01-8.822 55.877l125.601 172.705A48 48 0 0 0 172.073 512h197.59c22.274 0 41.622-15.324 46.724-37.006l26.508-112.66a192.011 192.011 0 0 0 5.104-43.975V168c.001-21.831-17.487-39.577-39.218-39.993z"], + "hand-peace": [448, 512, [], "f25b", "M408 216c-22.092 0-40 17.909-40 40h-8v-32c0-22.091-17.908-40-40-40s-40 17.909-40 40v32h-8V48c0-26.51-21.49-48-48-48s-48 21.49-48 48v208h-13.572L92.688 78.449C82.994 53.774 55.134 41.63 30.461 51.324 5.787 61.017-6.356 88.877 3.337 113.551l74.765 190.342-31.09 24.872c-15.381 12.306-19.515 33.978-9.741 51.081l64 112A39.998 39.998 0 0 0 136 512h240c18.562 0 34.686-12.77 38.937-30.838l32-136A39.97 39.97 0 0 0 448 336v-80c0-22.091-17.908-40-40-40z"], + "hand-point-down": [384, 512, [], "f0a7", "M91.826 467.2V317.966c-8.248 5.841-16.558 10.57-24.918 14.153C35.098 345.752-.014 322.222 0 288c.008-18.616 10.897-32.203 29.092-40 28.286-12.122 64.329-78.648 77.323-107.534 7.956-17.857 25.479-28.453 43.845-28.464l.001-.002h171.526c11.812 0 21.897 8.596 23.703 20.269 7.25 46.837 38.483 61.76 38.315 123.731-.007 2.724.195 13.254.195 16 0 50.654-22.122 81.574-71.263 72.6-9.297 18.597-39.486 30.738-62.315 16.45-21.177 24.645-53.896 22.639-70.944 6.299V467.2c0 24.15-20.201 44.8-43.826 44.8-23.283 0-43.826-21.35-43.826-44.8zM112 72V24c0-13.255 10.745-24 24-24h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24zm212-24c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z"], + "hand-point-left": [512, 512, [], "f0a5", "M44.8 155.826h149.234c-5.841-8.248-10.57-16.558-14.153-24.918C166.248 99.098 189.778 63.986 224 64c18.616.008 32.203 10.897 40 29.092 12.122 28.286 78.648 64.329 107.534 77.323 17.857 7.956 28.453 25.479 28.464 43.845l.002.001v171.526c0 11.812-8.596 21.897-20.269 23.703-46.837 7.25-61.76 38.483-123.731 38.315-2.724-.007-13.254.195-16 .195-50.654 0-81.574-22.122-72.6-71.263-18.597-9.297-30.738-39.486-16.45-62.315-24.645-21.177-22.639-53.896-6.299-70.944H44.8c-24.15 0-44.8-20.201-44.8-43.826 0-23.283 21.35-43.826 44.8-43.826zM440 176h48c13.255 0 24 10.745 24 24v192c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24zm24 212c11.046 0 20-8.954 20-20s-8.954-20-20-20-20 8.954-20 20 8.954 20 20 20z"], + "hand-point-right": [512, 512, [], "f0a4", "M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z"], + "hand-point-up": [384, 512, [], "f0a6", "M135.652 0c23.625 0 43.826 20.65 43.826 44.8v99.851c17.048-16.34 49.766-18.346 70.944 6.299 22.829-14.288 53.017-2.147 62.315 16.45C361.878 158.426 384 189.346 384 240c0 2.746-.203 13.276-.195 16 .168 61.971-31.065 76.894-38.315 123.731C343.683 391.404 333.599 400 321.786 400H150.261l-.001-.002c-18.366-.011-35.889-10.607-43.845-28.464C93.421 342.648 57.377 276.122 29.092 264 10.897 256.203.008 242.616 0 224c-.014-34.222 35.098-57.752 66.908-44.119 8.359 3.583 16.67 8.312 24.918 14.153V44.8c0-23.45 20.543-44.8 43.826-44.8zM136 416h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24v-48c0-13.255 10.745-24 24-24zm168 28c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z"], + "hand-pointer": [448, 512, [], "f25a", "M448 240v96c0 3.084-.356 6.159-1.063 9.162l-32 136C410.686 499.23 394.562 512 376 512H168a40.004 40.004 0 0 1-32.35-16.473l-127.997-176c-12.993-17.866-9.043-42.883 8.822-55.876 17.867-12.994 42.884-9.043 55.877 8.823L104 315.992V40c0-22.091 17.908-40 40-40s40 17.909 40 40v200h8v-40c0-22.091 17.908-40 40-40s40 17.909 40 40v40h8v-24c0-22.091 17.908-40 40-40s40 17.909 40 40v24h8c0-22.091 17.908-40 40-40s40 17.909 40 40zm-256 80h-8v96h8v-96zm88 0h-8v96h8v-96zm88 0h-8v96h8v-96z"], + "hand-rock": [512, 512, [], "f255", "M512 128.79c0-26.322-20.861-48.344-47.18-48.783C437.935 79.558 416 101.217 416 128h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C333.935 47.558 312 69.217 312 96v32h-8V80.79c0-26.322-20.861-48.344-47.18-48.783C229.935 31.558 208 53.217 208 80v48h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C125.935 47.558 104 69.217 104 96v136l-8-7.111V176.79c0-26.322-20.861-48.344-47.18-48.783C21.935 127.558 0 149.217 0 176v66.445a95.998 95.998 0 0 0 32.221 71.751l111.668 99.261A47.999 47.999 0 0 1 160 449.333V456c0 13.255 10.745 24 24 24h240c13.255 0 24-10.745 24-24v-2.921a96.01 96.01 0 0 1 7.523-37.254l48.954-116.265A96.002 96.002 0 0 0 512 262.306V128.79z"], + "hand-scissors": [512, 512, [], "f257", "M216 440c0-22.092 17.909-40 40-40v-8h-32c-22.091 0-40-17.908-40-40s17.909-40 40-40h32v-8H48c-26.51 0-48-21.49-48-48s21.49-48 48-48h208v-13.572l-177.551-69.74c-24.674-9.694-36.818-37.555-27.125-62.228 9.693-24.674 37.554-36.817 62.228-27.124l190.342 74.765 24.872-31.09c12.306-15.381 33.978-19.515 51.081-9.741l112 64A40.002 40.002 0 0 1 512 168v240c0 18.562-12.77 34.686-30.838 38.937l-136 32A39.982 39.982 0 0 1 336 480h-80c-22.091 0-40-17.908-40-40z"], + "hand-spock": [512, 512, [], "f259", "M10.872 316.585c15.139-16.086 40.454-16.854 56.543-1.713L128 371.893v-79.405L88.995 120.865c-4.896-21.542 8.598-42.974 30.14-47.87 21.549-4.894 42.975 8.599 47.87 30.141L201.747 256h9.833L164.016 48.966c-4.946-21.531 8.498-42.994 30.028-47.94 21.532-4.95 42.994 8.498 47.94 30.028L293.664 256h15.105l48.425-193.702c5.357-21.432 27.075-34.462 48.507-29.104 21.432 5.358 34.463 27.075 29.104 48.507L391.231 256h11.08l30.768-129.265c5.117-21.491 26.685-34.768 48.177-29.647 21.491 5.117 34.765 26.686 29.647 48.177l-36.292 152.467A96.024 96.024 0 0 0 472 319.967v42.102a96.002 96.002 0 0 1-3.96 27.287l-26.174 88.287C435.825 498.022 417.101 512 395.846 512H179.172a48.002 48.002 0 0 1-32.898-13.046L12.585 373.128c-16.087-15.141-16.853-40.456-1.713-56.543z"], + "hands": [640, 512, [], "f4c2", "M204.8 230.4c-10.6-14.1-30.7-17-44.8-6.4-14.1 10.6-17 30.7-6.4 44.8l38.1 50.8c4.8 6.4 4.1 15.3-1.5 20.9l-12.8 12.8c-6.7 6.7-17.6 6.2-23.6-1.1L64 244.4V96c0-17.7-14.3-32-32-32S0 78.3 0 96v218.4c0 10.9 3.7 21.5 10.5 30l104.1 134.3c5 6.5 8.4 13.9 10.4 21.7 1.8 6.9 8.1 11.6 15.3 11.6H272c8.8 0 16-7.2 16-16V384c0-27.7-9-54.6-25.6-76.8l-57.6-76.8zM608 64c-17.7 0-32 14.3-32 32v148.4l-89.8 107.8c-6 7.2-17 7.7-23.6 1.1l-12.8-12.8c-5.6-5.6-6.3-14.5-1.5-20.9l38.1-50.8c10.6-14.1 7.7-34.2-6.4-44.8-14.1-10.6-34.2-7.7-44.8 6.4l-57.6 76.8C361 329.4 352 356.3 352 384v112c0 8.8 7.2 16 16 16h131.7c7.1 0 13.5-4.7 15.3-11.6 2-7.8 5.4-15.2 10.4-21.7l104.1-134.3c6.8-8.5 10.5-19.1 10.5-30V96c0-17.7-14.3-32-32-32z"], + "hands-helping": [640, 512, [], "f4c4", "M488 192H336v56c0 39.7-32.3 72-72 72s-72-32.3-72-72V126.4l-64.9 39C107.8 176.9 96 197.8 96 220.2v47.3l-80 46.2C.7 322.5-4.6 342.1 4.3 357.4l80 138.6c8.8 15.3 28.4 20.5 43.7 11.7L231.4 448H368c35.3 0 64-28.7 64-64h16c17.7 0 32-14.3 32-32v-64h8c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zm147.7-37.4L555.7 16C546.9.7 527.3-4.5 512 4.3L408.6 64H306.4c-12 0-23.7 3.4-33.9 9.7L239 94.6c-9.4 5.8-15 16.1-15 27.1V248c0 22.1 17.9 40 40 40s40-17.9 40-40v-88h184c30.9 0 56 25.1 56 56v28.5l80-46.2c15.3-8.9 20.5-28.4 11.7-43.7z"], + "handshake": [640, 512, [], "f2b5", "M434.7 64h-85.9c-8 0-15.7 3-21.6 8.4l-98.3 90c-.1.1-.2.3-.3.4-16.6 15.6-16.3 40.5-2.1 56 12.7 13.9 39.4 17.6 56.1 2.7.1-.1.3-.1.4-.2l79.9-73.2c6.5-5.9 16.7-5.5 22.6 1 6 6.5 5.5 16.6-1 22.6l-26.1 23.9L504 313.8c2.9 2.4 5.5 5 7.9 7.7V128l-54.6-54.6c-5.9-6-14.1-9.4-22.6-9.4zM544 128.2v223.9c0 17.7 14.3 32 32 32h64V128.2h-96zm48 223.9c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM0 384h64c17.7 0 32-14.3 32-32V128.2H0V384zm48-63.9c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16c0-8.9 7.2-16 16-16zm435.9 18.6L334.6 217.5l-30 27.5c-29.7 27.1-75.2 24.5-101.7-4.4-26.9-29.4-24.8-74.9 4.4-101.7L289.1 64h-83.8c-8.5 0-16.6 3.4-22.6 9.4L128 128v223.9h18.3l90.5 81.9c27.4 22.3 67.7 18.1 90-9.3l.2-.2 17.9 15.5c15.9 13 39.4 10.5 52.3-5.4l31.4-38.6 5.4 4.4c13.7 11.1 33.9 9.1 45-4.7l9.5-11.7c11.2-13.8 9.1-33.9-4.6-45.1z"], + "hashtag": [448, 512, [], "f292", "M440.667 182.109l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l14.623-81.891C377.123 38.754 371.468 32 363.997 32h-40.632a12 12 0 0 0-11.813 9.891L296.175 128H197.54l14.623-81.891C213.477 38.754 207.822 32 200.35 32h-40.632a12 12 0 0 0-11.813 9.891L132.528 128H53.432a12 12 0 0 0-11.813 9.891l-7.143 40C33.163 185.246 38.818 192 46.289 192h74.81L98.242 320H19.146a12 12 0 0 0-11.813 9.891l-7.143 40C-1.123 377.246 4.532 384 12.003 384h74.81L72.19 465.891C70.877 473.246 76.532 480 84.003 480h40.632a12 12 0 0 0 11.813-9.891L151.826 384h98.634l-14.623 81.891C234.523 473.246 240.178 480 247.65 480h40.632a12 12 0 0 0 11.813-9.891L315.472 384h79.096a12 12 0 0 0 11.813-9.891l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l22.857-128h79.096a12 12 0 0 0 11.813-9.891zM261.889 320h-98.634l22.857-128h98.634l-22.857 128z"], + "hdd": [576, 512, [], "f0a0", "M576 304v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48zm-48-80a79.557 79.557 0 0 1 30.777 6.165L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L17.223 230.165A79.557 79.557 0 0 1 48 224h480zm-48 96c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm-96 0c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"], + "heading": [512, 512, [], "f1dc", "M496 80V48c0-8.837-7.163-16-16-16H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.621v128H154.379V96H192c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.275v320H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.621V288H357.62v128H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.275V96H480c8.837 0 16-7.163 16-16z"], + "headphones": [512, 512, [], "f025", "M256 32C114.52 32 0 146.496 0 288v48a32 32 0 0 0 17.689 28.622l14.383 7.191C34.083 431.903 83.421 480 144 480h24c13.255 0 24-10.745 24-24V280c0-13.255-10.745-24-24-24h-24c-31.342 0-59.671 12.879-80 33.627V288c0-105.869 86.131-192 192-192s192 86.131 192 192v1.627C427.671 268.879 399.342 256 368 256h-24c-13.255 0-24 10.745-24 24v176c0 13.255 10.745 24 24 24h24c60.579 0 109.917-48.098 111.928-108.187l14.382-7.191A32 32 0 0 0 512 336v-48c0-141.479-114.496-256-256-256z"], + "headphones-alt": [512, 512, [], "f58f", "M160 288h-16c-35.35 0-64 28.7-64 64.12v63.76c0 35.41 28.65 64.12 64 64.12h16c17.67 0 32-14.36 32-32.06V320.06c0-17.71-14.33-32.06-32-32.06zm208 0h-16c-17.67 0-32 14.35-32 32.06v127.88c0 17.7 14.33 32.06 32 32.06h16c35.35 0 64-28.71 64-64.12v-63.76c0-35.41-28.65-64.12-64-64.12zM256 32C112.91 32 4.57 151.13 0 288v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288c0-114.67 93.33-207.8 208-207.82 114.67.02 208 93.15 208 207.82v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288C507.43 151.13 399.09 32 256 32z"], + "headset": [512, 512, [], "f590", "M192 208c0-17.67-14.33-32-32-32h-16c-35.35 0-64 28.65-64 64v48c0 35.35 28.65 64 64 64h16c17.67 0 32-14.33 32-32V208zm176 144c35.35 0 64-28.65 64-64v-48c0-35.35-28.65-64-64-64h-16c-17.67 0-32 14.33-32 32v112c0 17.67 14.33 32 32 32h16zM256 0C113.18 0 4.58 118.83 0 256v16c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-16c0-114.69 93.31-208 208-208s208 93.31 208 208h-.12c.08 2.43.12 165.72.12 165.72 0 23.35-18.93 42.28-42.28 42.28H320c0-26.51-21.49-48-48-48h-32c-26.51 0-48 21.49-48 48s21.49 48 48 48h181.72c49.86 0 90.28-40.42 90.28-90.28V256C507.42 118.83 398.82 0 256 0z"], + "heart": [512, 512, [], "f004", "M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z"], + "heartbeat": [512, 512, [], "f21e", "M320.2 243.8l-49.7 99.4c-6 12.1-23.4 11.7-28.9-.6l-56.9-126.3-30 71.7H60.6l182.5 186.5c7.1 7.3 18.6 7.3 25.7 0L451.4 288H342.3l-22.1-44.2zM473.7 73.9l-2.4-2.5c-51.5-52.6-135.8-52.6-187.4 0L256 100l-27.9-28.5c-51.5-52.7-135.9-52.7-187.4 0l-2.4 2.4C-10.4 123.7-12.5 203 31 256h102.4l35.9-86.2c5.4-12.9 23.6-13.2 29.4-.4l58.2 129.3 49-97.9c5.9-11.8 22.7-11.8 28.6 0l27.6 55.2H481c43.5-53 41.4-132.3-7.3-182.1z"], + "helicopter": [640, 512, [], "f533", "M304 384h272c17.67 0 32-14.33 32-32 0-123.71-100.29-224-224-224V64h176c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H144c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h176v64H112L68.8 70.4C65.78 66.37 61.03 64 56 64H16.01C5.6 64-2.04 73.78.49 83.88L32 192l160 64 86.4 115.2A31.992 31.992 0 0 0 304 384zm112-188.49C478.55 208.3 528.03 257.44 540.79 320H416V195.51zm219.37 263.3l-22.15-22.2c-6.25-6.26-16.24-6.1-22.64.01-7.09 6.77-13.84 11.25-24.64 11.25H240c-8.84 0-16 7.18-16 16.03v32.06c0 8.85 7.16 16.03 16 16.03h325.94c14.88 0 35.3-.47 68.45-29.52 7.02-6.14 7.57-17.05.98-23.66z"], + "highlighter": [544, 512, [], "f591", "M0 479.98L99.92 512l35.45-35.45-67.04-67.04L0 479.98zm124.61-240.01a36.592 36.592 0 0 0-10.79 38.1l13.05 42.83-50.93 50.94 96.23 96.23 50.86-50.86 42.74 13.08c13.73 4.2 28.65-.01 38.15-10.78l35.55-41.64-173.34-173.34-41.52 35.44zm403.31-160.7l-63.2-63.2c-20.49-20.49-53.38-21.52-75.12-2.35L190.55 183.68l169.77 169.78L530.27 154.4c19.18-21.74 18.15-54.63-2.35-75.13z"], + "history": [512, 512, [], "f1da", "M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z"], + "hockey-puck": [512, 512, [], "f453", "M0 160c0-53 114.6-96 256-96s256 43 256 96-114.6 96-256 96S0 213 0 160zm0 82.2V352c0 53 114.6 96 256 96s256-43 256-96V242.2c-113.4 82.3-398.5 82.4-512 0z"], + "home": [576, 512, [], "f015", "M488 312.7V456c0 13.3-10.7 24-24 24H348c-6.6 0-12-5.4-12-12V356c0-6.6-5.4-12-12-12h-72c-6.6 0-12 5.4-12 12v112c0 6.6-5.4 12-12 12H112c-13.3 0-24-10.7-24-24V312.7c0-3.6 1.6-7 4.4-9.3l188-154.8c4.4-3.6 10.8-3.6 15.3 0l188 154.8c2.7 2.3 4.3 5.7 4.3 9.3zm83.6-60.9L488 182.9V44.4c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12V117l-89.5-73.7c-17.7-14.6-43.3-14.6-61 0L4.4 251.8c-5.1 4.2-5.8 11.8-1.6 16.9l25.5 31c4.2 5.1 11.8 5.8 16.9 1.6l235.2-193.7c4.4-3.6 10.8-3.6 15.3 0l235.2 193.7c5.1 4.2 12.7 3.5 16.9-1.6l25.5-31c4.2-5.2 3.4-12.7-1.7-16.9z"], + "hospital": [448, 512, [], "f0f8", "M448 492v20H0v-20c0-6.627 5.373-12 12-12h20V120c0-13.255 10.745-24 24-24h88V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v72h88c13.255 0 24 10.745 24 24v360h20c6.627 0 12 5.373 12 12zM308 192h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-168 64h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm104 128h-40c-6.627 0-12 5.373-12 12v84h64v-84c0-6.627-5.373-12-12-12zm64-96h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-116 12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zM182 96h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6z"], + "hospital-alt": [576, 512, [], "f47d", "M544 96H416V32c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32v368c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16V128c0-17.7-14.3-32-32-32zM160 436c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm160 128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm16-170c0 3.3-2.7 6-6 6h-26v26c0 3.3-2.7 6-6 6h-20c-3.3 0-6-2.7-6-6v-26h-26c-3.3 0-6-2.7-6-6v-20c0-3.3 2.7-6 6-6h26V86c0-3.3 2.7-6 6-6h20c3.3 0 6 2.7 6 6v26h26c3.3 0 6 2.7 6 6v20zm144 298c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z"], + "hospital-symbol": [512, 512, [], "f47e", "M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm112 376c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-88h-96v88c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V136c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v88h96v-88c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v240z"], + "hot-tub": [512, 512, [], "f593", "M414.21 177.65c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C378.96 6.14 372.22 0 364.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zm-108 0c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C270.96 6.14 264.22 0 256.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zM480 256H256l-110.93-83.2a63.99 63.99 0 0 0-38.4-12.8H64c-35.35 0-64 28.65-64 64v224c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64V288c0-17.67-14.33-32-32-32zM128 440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zM64 128c35.35 0 64-28.65 64-64S99.35 0 64 0 0 28.65 0 64s28.65 64 64 64z"], + "hotel": [576, 512, [], "f594", "M560 64c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h15.98v384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h240v-80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v80h240c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-16V64h16zm-304 44.8c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm0 96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm-128-96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zM179.2 256h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8zM192 384c0-53.02 42.98-96 96-96s96 42.98 96 96H192zm256-140.8c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-96c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4z"], + "hourglass": [384, 512, [], "f254", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64z"], + "hourglass-end": [384, 512, [], "f253", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64zM192 208c-57.787 0-104-66.518-104-144h208c0 77.945-46.51 144-104 144z"], + "hourglass-half": [384, 512, [], "f252", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-75.078 384H99.08c17.059-46.797 52.096-80 92.92-80 40.821 0 75.862 33.196 92.922 80zm.019-256H99.078C91.988 108.548 88 86.748 88 64h208c0 22.805-3.987 44.587-11.059 64z"], + "hourglass-start": [384, 512, [], "f251", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-64 448H88c0-77.458 46.204-144 104-144 57.786 0 104 66.517 104 144z"], + "i-cursor": [256, 512, [], "f246", "M256 52.048V12.065C256 5.496 250.726.148 244.158.066 211.621-.344 166.469.011 128 37.959 90.266.736 46.979-.114 11.913.114 5.318.157 0 5.519 0 12.114v39.645c0 6.687 5.458 12.078 12.145 11.998C38.111 63.447 96 67.243 96 112.182V224H60c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h36v112c0 44.932-56.075 48.031-83.95 47.959C5.404 447.942 0 453.306 0 459.952v39.983c0 6.569 5.274 11.917 11.842 11.999 32.537.409 77.689.054 116.158-37.894 37.734 37.223 81.021 38.073 116.087 37.845 6.595-.043 11.913-5.405 11.913-12V460.24c0-6.687-5.458-12.078-12.145-11.998C217.889 448.553 160 444.939 160 400V288h36c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-36V112.182c0-44.932 56.075-48.213 83.95-48.142 6.646.018 12.05-5.346 12.05-11.992z"], + "id-badge": [384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM144 32h96c8.8 0 16 7.2 16 16s-7.2 16-16 16h-96c-8.8 0-16-7.2-16-16s7.2-16 16-16zm48 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 416 80 407.4 80 396.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"], + "id-card": [576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v16h576V80c0-26.5-21.5-48-48-48zM0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V128H0v304zm352-232c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zM176 192c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zM67.1 396.2C75.5 370.5 99.6 352 128 352h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.9-5.2 19.8-15.6 19.8H82.7c-10.4 0-18.8-10-15.6-19.8z"], + "id-card-alt": [576, 512, [], "f47f", "M528 64H384v96H192V64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM288 224c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm93.3 224H194.7c-10.4 0-18.8-10-15.6-19.8 8.3-25.6 32.4-44.2 60.9-44.2h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.8-5.2 19.8-15.6 19.8zM352 32c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v96h128V32z"], + "image": [512, 512, [], "f03e", "M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z"], + "images": [576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v208c0 44.112 35.888 80 80 80h336zm96-80V80c0-26.51-21.49-48-48-48H144c-26.51 0-48 21.49-48 48v256c0 26.51 21.49 48 48 48h384c26.51 0 48-21.49 48-48zM256 128c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-96 144l55.515-55.515c4.686-4.686 12.284-4.686 16.971 0L272 256l135.515-135.515c4.686-4.686 12.284-4.686 16.971 0L512 208v112H160v-48z"], + "inbox": [576, 512, [], "f01c", "M567.938 243.908L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L8.062 243.908A47.994 47.994 0 0 0 0 270.533V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V270.533a47.994 47.994 0 0 0-8.062-26.625zM162.252 128h251.497l85.333 128H376l-32 64H232l-32-64H76.918l85.334-128z"], + "indent": [448, 512, [], "f03c", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm176 144h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm-52.687-111.313l-96-95.984C17.266 138.652 0 145.776 0 160.016v191.975c0 14.329 17.325 21.304 27.313 11.313l96-95.992c6.249-6.247 6.249-16.377 0-22.625z"], + "industry": [512, 512, [], "f275", "M475.115 163.781L336 252.309v-68.28c0-18.916-20.931-30.399-36.885-20.248L160 252.309V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h464c13.255 0 24-10.745 24-24V184.029c0-18.917-20.931-30.399-36.885-20.248z"], + "infinity": [640, 512, [], "f534", "M471.1 96C405 96 353.3 137.3 320 174.6 286.7 137.3 235 96 168.9 96 75.8 96 0 167.8 0 256s75.8 160 168.9 160c66.1 0 117.8-41.3 151.1-78.6 33.3 37.3 85 78.6 151.1 78.6 93.1 0 168.9-71.8 168.9-160S564.2 96 471.1 96zM168.9 320c-40.2 0-72.9-28.7-72.9-64s32.7-64 72.9-64c38.2 0 73.4 36.1 94 64-20.4 27.6-55.9 64-94 64zm302.2 0c-38.2 0-73.4-36.1-94-64 20.4-27.6 55.9-64 94-64 40.2 0 72.9 28.7 72.9 64s-32.7 64-72.9 64z"], + "info": [192, 512, [], "f129", "M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z"], + "info-circle": [512, 512, [], "f05a", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z"], + "italic": [320, 512, [], "f033", "M204.758 416h-33.849l62.092-320h40.725a16 16 0 0 0 15.704-12.937l6.242-32C297.599 41.184 290.034 32 279.968 32H120.235a16 16 0 0 0-15.704 12.937l-6.242 32C96.362 86.816 103.927 96 113.993 96h33.846l-62.09 320H46.278a16 16 0 0 0-15.704 12.935l-6.245 32C22.402 470.815 29.967 480 40.034 480h158.479a16 16 0 0 0 15.704-12.935l6.245-32c1.927-9.88-5.638-19.065-15.704-19.065z"], + "joint": [640, 512, [], "f595", "M444.34 181.1c22.38 15.68 35.66 41.16 35.66 68.59V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-43.24-21.01-83.41-56.34-108.06C463.85 125.02 448 99.34 448 70.31V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v66.4c0 43.69 24.56 81.63 60.34 106.7zM194.97 358.98C126.03 370.07 59.69 394.69 0 432c83.65 52.28 180.3 80 278.94 80h88.57L254.79 380.49c-14.74-17.2-37.45-25.11-59.82-21.51zM553.28 87.09c-5.67-3.8-9.28-9.96-9.28-16.78V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v62.31c0 22.02 10.17 43.41 28.64 55.39C550.79 153.04 576 199.54 576 249.69V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-65.44-32.41-126.19-86.72-162.6zM360.89 352.05c-34.4.06-86.81.15-88.21.17l117.8 137.43A63.987 63.987 0 0 0 439.07 512h88.45L409.57 374.4a63.955 63.955 0 0 0-48.68-22.35zM616 352H432l117.99 137.65A63.987 63.987 0 0 0 598.58 512H616c13.25 0 24-10.75 24-24V376c0-13.26-10.75-24-24-24z"], + "key": [512, 512, [], "f084", "M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z"], + "keyboard": [576, 512, [], "f11c", "M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"], + "kiss": [496, 512, [], "f596", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm136 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm24-156c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "kiss-beam": [496, 512, [], "f597", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-39 219.9l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5zM304 396c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm65-168.1l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5z"], + "kiss-wink-heart": [504, 512, [], "f598", "M501.1 402.5c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zm-177.6-4c-5.6-20.3-2.3-42 9-59.7 29.7-46.3 98.7-45.5 127.8 4.3 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-.3-.7-23.9-84.6-23.9-84.6zM168 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm120 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-5.7-12.3 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.8-3.7-4.6-16.6 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C274.6 368.7 288 383 288 396zm16-179c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S400 181 404 206.2c1.7 11.1-11.3 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 217z"], + "kiwi-bird": [576, 512, [], "f535", "M575.81 217.98C572.64 157.41 518.28 112 457.63 112h-9.37c-52.82 0-104.25-16.25-147.74-46.24-41.99-28.96-96.04-41.62-153.21-28.7C129.3 41.12-.08 78.24 0 224c.04 70.95 38.68 132.8 95.99 166.01V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-54.26c15.36 3.96 31.4 6.26 48 6.26 5.44 0 10.68-.73 16-1.18V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-59.43c14.24-5.06 27.88-11.39 40.34-19.51C342.07 355.25 393.86 336 448.46 336c25.48 0 16.01-.31 23.05-.78l74.41 136.44c2.86 5.23 8.3 8.34 14.05 8.34 1.31 0 2.64-.16 3.95-.5 7.09-1.8 12.05-8.19 12.05-15.5 0 0 .14-240.24-.16-246.02zM463.97 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm80 153.25l-39.86-73.08c15.12-5.83 28.73-14.6 39.86-25.98v99.06z"], + "language": [640, 512, [], "f1ab", "M304 416H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h280v320zm-120.676-72.622A12 12 0 0 0 194.839 352h22.863c8.22 0 14.007-8.078 11.362-15.861L171.61 167.085a12 12 0 0 0-11.362-8.139h-32.489a12.001 12.001 0 0 0-11.362 8.139L58.942 336.139C56.297 343.922 62.084 352 70.304 352h22.805a12 12 0 0 0 11.535-8.693l9.118-31.807h60.211l9.351 31.878zm-39.051-140.42s4.32 21.061 7.83 33.21l10.8 37.531h-38.07l11.07-37.531c3.51-12.15 7.83-33.21 7.83-33.21h.54zM616 416H336V96h280c13.255 0 24 10.745 24 24v272c0 13.255-10.745 24-24 24zm-36-228h-64v-16c0-6.627-5.373-12-12-12h-16c-6.627 0-12 5.373-12 12v16h-64c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h114.106c-6.263 14.299-16.518 28.972-30.023 43.206-6.56-6.898-12.397-13.91-17.365-20.933-3.639-5.144-10.585-6.675-15.995-3.446l-7.28 4.346-6.498 3.879c-5.956 3.556-7.693 11.421-3.735 17.117 6.065 8.729 13.098 17.336 20.984 25.726-8.122 6.226-16.841 12.244-26.103 17.964-5.521 3.41-7.381 10.556-4.162 16.19l7.941 13.896c3.362 5.883 10.935 7.826 16.706 4.276 12.732-7.831 24.571-16.175 35.443-24.891 10.917 8.761 22.766 17.102 35.396 24.881 5.774 3.556 13.353 1.618 16.717-4.27l7.944-13.903c3.213-5.623 1.37-12.76-4.135-16.171a312.737 312.737 0 0 1-26.06-18.019c21.024-22.425 35.768-46.289 42.713-69.85H580c6.627 0 12-5.373 12-12v-16c0-6.625-5.373-11.998-12-11.998z"], + "laptop": [640, 512, [], "f109", "M512 64v256H128V64h384m16-64H112C85.5 0 64 21.5 64 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm100 416H389.5c-3 0-5.5 2.1-5.9 5.1C381.2 436.3 368 448 352 448h-64c-16 0-29.2-11.7-31.6-26.9-.5-2.9-3-5.1-5.9-5.1H12c-6.6 0-12 5.4-12 12v36c0 26.5 21.5 48 48 48h544c26.5 0 48-21.5 48-48v-36c0-6.6-5.4-12-12-12z"], + "laugh": [496, 512, [], "f599", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 152c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm88 272h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18-8.9 71-69.5 126-142.9 126z"], + "laugh-beam": [496, 512, [], "f59a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm24 199.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.8 4.1-15.1-4.5zm-160 0c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z"], + "laugh-squint": [496, 512, [], "f59b", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 161.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 180l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z"], + "laugh-wink": [496, 512, [], "f59c", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm20.1 198.1c4-25.2 34.2-42.1 59.9-42.1s55.9 16.9 59.9 42.1c1.7 11.1-11.4 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 217c-8.4 7.4-21.6.3-19.9-10.9zM168 160c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm230.9 146C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z"], + "leaf": [576, 512, [], "f06c", "M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z"], + "lemon": [512, 512, [], "f094", "M489.038 22.963C465.944-.13 434.648-5.93 413.947 6.129c-58.906 34.312-181.25-53.077-321.073 86.746S40.441 355.041 6.129 413.945c-12.059 20.702-6.26 51.999 16.833 75.093 23.095 23.095 54.392 28.891 75.095 16.832 58.901-34.31 181.246 53.079 321.068-86.743S471.56 156.96 505.871 98.056c12.059-20.702 6.261-51.999-16.833-75.093zM243.881 95.522c-58.189 14.547-133.808 90.155-148.358 148.358-1.817 7.27-8.342 12.124-15.511 12.124-1.284 0-2.59-.156-3.893-.481-8.572-2.144-13.784-10.83-11.642-19.403C81.901 166.427 166.316 81.93 236.119 64.478c8.575-2.143 17.261 3.069 19.403 11.642s-3.069 17.259-11.641 19.402z"], + "less-than": [384, 512, [], "f536", "M365.46 357.74L147.04 255.89l218.47-101.88c16.02-7.47 22.95-26.51 15.48-42.53l-13.52-29C360 66.46 340.96 59.53 324.94 67L18.48 209.91a32.014 32.014 0 0 0-18.48 29v34.24c0 12.44 7.21 23.75 18.48 29l306.31 142.83c16.06 7.49 35.15.54 42.64-15.52l13.56-29.08c7.49-16.06.54-35.15-15.53-42.64z"], + "less-than-equal": [448, 512, [], "f537", "M54.98 214.2l301.41 119.87c18.39 6.03 38.71-2.54 45.38-19.15l12.09-30.08c6.68-16.61-2.82-34.97-21.21-41l-175.44-68.05 175.56-68.09c18.29-6 27.74-24.27 21.1-40.79l-12.03-29.92c-6.64-16.53-26.86-25.06-45.15-19.06L54.98 137.89C41.21 142.41 32 154.5 32 168.07v15.96c0 13.56 9.21 25.65 22.98 30.17zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"], + "level-down-alt": [320, 512, [], "f3be", "M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z"], + "level-up-alt": [320, 512, [], "f3bf", "M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z"], + "life-ring": [512, 512, [], "f1cd", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm173.696 119.559l-63.399 63.399c-10.987-18.559-26.67-34.252-45.255-45.255l63.399-63.399a218.396 218.396 0 0 1 45.255 45.255zM256 352c-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96-42.981 96-96 96zM127.559 82.304l63.399 63.399c-18.559 10.987-34.252 26.67-45.255 45.255l-63.399-63.399a218.372 218.372 0 0 1 45.255-45.255zM82.304 384.441l63.399-63.399c10.987 18.559 26.67 34.252 45.255 45.255l-63.399 63.399a218.396 218.396 0 0 1-45.255-45.255zm302.137 45.255l-63.399-63.399c18.559-10.987 34.252-26.67 45.255-45.255l63.399 63.399a218.403 218.403 0 0 1-45.255 45.255z"], + "lightbulb": [384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zm-143.107-44c-9.907 0-18.826-6.078-22.376-15.327C67.697 267.541 16 277.731 16 176 16 78.803 94.805 0 192 0s176 78.803 176 176c0 101.731-51.697 91.541-90.516 192.673-3.55 9.249-12.47 15.327-22.376 15.327H128.893zM112 176c0-44.112 35.888-80 80-80 8.837 0 16-7.164 16-16s-7.163-16-16-16c-61.757 0-112 50.243-112 112 0 8.836 7.164 16 16 16s16-7.164 16-16z"], + "link": [512, 512, [], "f0c1", "M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z"], + "lira-sign": [384, 512, [], "f195", "M371.994 256h-48.019C317.64 256 312 260.912 312 267.246 312 368 230.179 416 144 416V256.781l134.603-29.912A12 12 0 0 0 288 215.155v-40.976c0-7.677-7.109-13.38-14.603-11.714L144 191.219V160.78l134.603-29.912A12 12 0 0 0 288 119.154V78.179c0-7.677-7.109-13.38-14.603-11.714L144 95.219V44c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v68.997L9.397 125.131A12 12 0 0 0 0 136.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 178.558v30.439L9.397 221.131A12 12 0 0 0 0 232.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 274.558V468c0 6.627 5.373 12 12 12h79.583c134.091 0 223.255-77.834 228.408-211.592.261-6.782-5.211-12.408-11.997-12.408z"], + "list": [512, 512, [], "f03a", "M128 116V76c0-8.837 7.163-16 16-16h352c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H144c-8.837 0-16-7.163-16-16zm16 176h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 144h64c8.837 0 16-7.163 16-16V64c0-8.837-7.163-16-16-16H16C7.163 48 0 55.163 0 64v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16z"], + "list-alt": [512, 512, [], "f022", "M464 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM128 120c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288-136v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12z"], + "list-ol": [512, 512, [], "f0cb", "M3.263 139.527c0-7.477 3.917-11.572 11.573-11.572h15.131V88.078c0-5.163.534-10.503.534-10.503h-.356s-1.779 2.67-2.848 3.738c-4.451 4.273-10.504 4.451-15.666-1.068l-5.518-6.231c-5.342-5.341-4.984-11.216.534-16.379l21.72-19.938C32.815 33.602 36.732 32 42.785 32H54.89c7.656 0 11.749 3.916 11.749 11.572v84.384h15.488c7.655 0 11.572 4.094 11.572 11.572v8.901c0 7.477-3.917 11.572-11.572 11.572H14.836c-7.656 0-11.573-4.095-11.573-11.572v-8.902zM2.211 304.591c0-47.278 50.955-56.383 50.955-69.165 0-7.18-5.954-8.755-9.28-8.755-3.153 0-6.479 1.051-9.455 3.852-5.079 4.903-10.507 7.004-16.111 2.451l-8.579-6.829c-5.779-4.553-7.18-9.805-2.803-15.409C13.592 201.981 26.025 192 47.387 192c19.437 0 44.476 10.506 44.476 39.573 0 38.347-46.753 46.402-48.679 56.909h39.049c7.529 0 11.557 4.027 11.557 11.382v8.755c0 7.354-4.028 11.382-11.557 11.382h-67.94c-7.005 0-12.083-4.028-12.083-11.382v-4.028zM5.654 454.61l5.603-9.28c3.853-6.654 9.105-7.004 15.584-3.152 4.903 2.101 9.63 3.152 14.359 3.152 10.155 0 14.358-3.502 14.358-8.23 0-6.654-5.604-9.106-15.934-9.106h-4.728c-5.954 0-9.28-2.101-12.258-7.88l-1.05-1.926c-2.451-4.728-1.226-9.806 2.801-14.884l5.604-7.004c6.829-8.405 12.257-13.483 12.257-13.483v-.35s-4.203 1.051-12.608 1.051H16.685c-7.53 0-11.383-4.028-11.383-11.382v-8.755c0-7.53 3.853-11.382 11.383-11.382h58.484c7.529 0 11.382 4.027 11.382 11.382v3.327c0 5.778-1.401 9.806-5.079 14.183l-17.509 20.137c19.611 5.078 28.716 20.487 28.716 34.845 0 21.363-14.358 44.126-48.503 44.126-16.636 0-28.192-4.728-35.896-9.455-5.779-4.202-6.304-9.805-2.626-15.934zM144 132h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"], + "list-ul": [512, 512, [], "f0ca", "M96 96c0 26.51-21.49 48-48 48S0 122.51 0 96s21.49-48 48-48 48 21.49 48 48zM48 208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm0 160c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm96-236h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"], + "location-arrow": [512, 512, [], "f124", "M443.683 4.529L27.818 196.418C-18.702 217.889-3.39 288 47.933 288H224v175.993c0 51.727 70.161 66.526 91.582 20.115L507.38 68.225c18.905-40.961-23.752-82.133-63.697-63.696z"], + "lock": [448, 512, [], "f023", "M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z"], + "lock-open": [576, 512, [], "f3c1", "M423.5 0C339.5.3 272 69.5 272 153.5V224H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48h-48v-71.1c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v80c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-80C576 68 507.5-.3 423.5 0z"], + "long-arrow-alt-down": [256, 512, [], "f309", "M168 345.941V44c0-6.627-5.373-12-12-12h-56c-6.627 0-12 5.373-12 12v301.941H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.569 9.373 33.941 0l86.059-86.059c15.119-15.119 4.411-40.971-16.971-40.971H168z"], + "long-arrow-alt-left": [448, 512, [], "f30a", "M134.059 296H436c6.627 0 12-5.373 12-12v-56c0-6.627-5.373-12-12-12H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.569 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296z"], + "long-arrow-alt-right": [448, 512, [], "f30b", "M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z"], + "long-arrow-alt-up": [256, 512, [], "f30c", "M88 166.059V468c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12V166.059h46.059c21.382 0 32.09-25.851 16.971-40.971l-86.059-86.059c-9.373-9.373-24.569-9.373-33.941 0l-86.059 86.059c-15.119 15.119-4.411 40.971 16.971 40.971H88z"], + "low-vision": [576, 512, [], "f2a8", "M569.344 231.631C512.96 135.949 407.81 72 288 72c-28.468 0-56.102 3.619-82.451 10.409L152.778 10.24c-7.601-10.858-22.564-13.5-33.423-5.9l-13.114 9.178c-10.86 7.601-13.502 22.566-5.9 33.426l43.131 58.395C89.449 131.73 40.228 174.683 6.682 231.581c-.01.017-.023.033-.034.05-8.765 14.875-8.964 33.528 0 48.739 38.5 65.332 99.742 115.862 172.859 141.349L55.316 244.302A272.194 272.194 0 0 1 83.61 208.39l119.4 170.58h.01l40.63 58.04a330.055 330.055 0 0 0 78.94 1.17l-189.98-271.4a277.628 277.628 0 0 1 38.777-21.563l251.836 356.544c7.601 10.858 22.564 13.499 33.423 5.9l13.114-9.178c10.86-7.601 13.502-22.567 5.9-33.426l-43.12-58.377-.007-.009c57.161-27.978 104.835-72.04 136.81-126.301a47.938 47.938 0 0 0 .001-48.739zM390.026 345.94l-19.066-27.23c24.682-32.567 27.711-76.353 8.8-111.68v.03c0 23.65-19.17 42.82-42.82 42.82-23.828 0-42.82-19.349-42.82-42.82 0-23.65 19.17-42.82 42.82-42.82h.03c-24.75-13.249-53.522-15.643-79.51-7.68l-19.068-27.237C253.758 123.306 270.488 120 288 120c75.162 0 136 60.826 136 136 0 34.504-12.833 65.975-33.974 89.94z"], + "luggage-cart": [640, 512, [], "f59d", "M224 320h32V96h-32c-17.67 0-32 14.33-32 32v160c0 17.67 14.33 32 32 32zm352-32V128c0-17.67-14.33-32-32-32h-32v224h32c17.67 0 32-14.33 32-32zm48 96H128V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h48v368c0 8.84 7.16 16 16 16h82.94c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16h197.88c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM480 96V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v272h192V96zm-48 0h-96V48h96v48z"], + "magic": [512, 512, [], "f0d0", "M224 96l16-32 32-16-32-16-16-32-16 32-32 16 32 16 16 32zM80 160l26.66-53.33L160 80l-53.34-26.67L80 0 53.34 53.33 0 80l53.34 26.67L80 160zm352 128l-26.66 53.33L352 368l53.34 26.67L432 448l26.66-53.33L512 368l-53.34-26.67L432 288zm70.62-193.77L417.77 9.38C411.53 3.12 403.34 0 395.15 0c-8.19 0-16.38 3.12-22.63 9.38L9.38 372.52c-12.5 12.5-12.5 32.76 0 45.25l84.85 84.85c6.25 6.25 14.44 9.37 22.62 9.37 8.19 0 16.38-3.12 22.63-9.37l363.14-363.15c12.5-12.48 12.5-32.75 0-45.24zM359.45 203.46l-50.91-50.91 86.6-86.6 50.91 50.91-86.6 86.6z"], + "magnet": [512, 512, [], "f076", "M164.1 160H12c-6.6 0-12-5.4-12-12V68c0-19.9 16.1-36 36-36h104c19.9 0 36 16.1 36 36v80c.1 6.6-5.3 12-11.9 12zm348-12V67.9c0-19.9-16.1-36-36-36h-104c-19.9 0-36 16.1-36 36v80c0 6.6 5.4 12 12 12h152c6.6.1 12-5.3 12-11.9zm-164 44c-6.6 0-12 5.4-12 12v52c0 128.1-160 127.9-160 0v-52c0-6.6-5.4-12-12-12h-152c-6.7 0-12 5.4-12 12.1.1 21.4.6 40.3 0 53.3C.1 408 136.3 504 256.9 504 377.5 504 512 408 512 257.3c-.6-12.8-.2-33 0-53.2 0-6.7-5.3-12.1-12-12.1H348.1z"], + "male": [192, 512, [], "f183", "M96 0c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64S60.654 0 96 0m48 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H48c-26.51 0-48 21.49-48 48v136c0 13.255 10.745 24 24 24h16v136c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V352h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48z"], + "map": [576, 512, [], "f279", "M0 117.66v346.32c0 11.32 11.43 19.06 21.94 14.86L160 416V32L20.12 87.95A32.006 32.006 0 0 0 0 117.66zM192 416l192 64V96L192 32v384zM554.06 33.16L416 96v384l139.88-55.95A31.996 31.996 0 0 0 576 394.34V48.02c0-11.32-11.43-19.06-21.94-14.86z"], + "map-marked": [576, 512, [], "f59f", "M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z"], + "map-marked-alt": [576, 512, [], "f5a0", "M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zm0 168c-23.2 0-42-18.8-42-42s18.8-42 42-42 42 18.8 42 42-18.8 42-42 42zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z"], + "map-marker": [384, 512, [], "f041", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0z"], + "map-marker-alt": [384, 512, [], "f3c5", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"], + "map-pin": [320, 512, [], "f276", "M192 300.813v172.82l-22.015 33.023c-4.75 7.125-15.219 7.125-19.969 0L128 473.633v-172.82a162.221 162.221 0 0 0 64 0zM160 0c79.529 0 144 64.471 144 144s-64.471 144-144 144S16 223.529 16 144 80.471 0 160 0M80 136c0-39.701 32.299-72 72-72a8 8 0 0 0 0-16c-48.523 0-88 39.477-88 88a8 8 0 0 0 16 0z"], + "map-signs": [512, 512, [], "f277", "M487.515 104.485L439.03 152.97a23.998 23.998 0 0 1-16.97 7.029H56c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h160v-8c0-13.255 10.745-24 24-24h32c13.255 0 24 10.745 24 24v8h126.059a24 24 0 0 1 16.97 7.029l48.485 48.485c4.687 4.687 4.687 12.285.001 16.971zM216 368v120c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V368h-80zm240-144H296v-48h-80v48H89.941a24 24 0 0 0-16.97 7.029l-48.485 48.485c-4.686 4.686-4.686 12.284 0 16.971l48.485 48.485a23.998 23.998 0 0 0 16.97 7.029H456c13.255 0 24-10.745 24-24v-80C480 234.745 469.255 224 456 224z"], + "marker": [512, 512, [], "f5a1", "M93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l75.4-75.4-128.02-128.02-75.4 75.4zM485.49 26.51c-35.35-35.35-92.67-35.35-128.02 0l-21.76 21.76-36.56-36.55c-15.62-15.62-40.95-15.62-56.56 0L138.47 115.84c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0l87.15-87.15 19.59 19.59L191.98 192 320 320.02l165.49-165.49c35.35-35.35 35.35-92.66 0-128.02z"], + "mars": [384, 512, [], "f222", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c0-6.6-5.4-12-12-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"], + "mars-double": [512, 512, [], "f227", "M340 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C198.5 72.1 172.2 64 144 64 64.5 64 0 128.5 0 208s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.5 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 288c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80zm356-128.1h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7c-18.2-11.4-39-18.9-61.5-21.3-2.1 21.8-8.2 43.3-18.4 63.3 1.1 0 2.2-.1 3.2-.1 44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80c0-1.1 0-2.2.1-3.2-20 10.2-41.5 16.4-63.3 18.4C168.4 455.6 229.6 512 304 512c79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12v-79c0-6.7-5.4-12.1-12-12.1z"], + "mars-stroke": [384, 512, [], "f229", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-17.5 17.5-14.1-14.1c-4.7-4.7-12.3-4.7-17 0L224.5 133c-4.7 4.7-4.7 12.3 0 17l14.1 14.1-18 18c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l18-18 14.1 14.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L329.2 164l17.5-17.5 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c-.1-6.6-5.5-12-12.1-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"], + "mars-stroke-h": [480, 512, [], "f22b", "M476.2 247.5l-55.9-55.9c-7.6-7.6-20.5-2.2-20.5 8.5V224H376v-20c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v20h-27.6c-5.8-25.6-18.7-49.9-38.6-69.8C189.6 98 98.4 98 42.2 154.2c-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 19.9-19.9 32.8-44.2 38.6-69.8H312v20c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-20h23.9v23.9c0 10.7 12.9 16 20.5 8.5l55.9-55.9c4.6-4.7 4.6-12.3-.1-17zm-275.6 65.1c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z"], + "mars-stroke-v": [288, 512, [], "f22a", "M245.8 234.2c-19.9-19.9-44.2-32.8-69.8-38.6v-25.4h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V81.4h23.9c10.7 0 16-12.9 8.5-20.5L152.5 5.1c-4.7-4.7-12.3-4.7-17 0L79.6 61c-7.6 7.6-2.2 20.5 8.5 20.5H112v24.7H92c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h20v25.4c-25.6 5.8-49.9 18.7-69.8 38.6-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 56.3-56.2 56.3-147.4 0-203.6zm-45.2 158.4c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z"], + "medal": [512, 512, [], "f5a2", "M223.75 130.75L154.62 15.54A31.997 31.997 0 0 0 127.18 0H16.03C3.08 0-4.5 14.57 2.92 25.18l111.27 158.96c29.72-27.77 67.52-46.83 109.56-53.39zM495.97 0H384.82c-11.24 0-21.66 5.9-27.44 15.54l-69.13 115.21c42.04 6.56 79.84 25.62 109.56 53.38L509.08 25.18C516.5 14.57 508.92 0 495.97 0zM256 160c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm92.52 157.26l-37.93 36.96 8.97 52.22c1.6 9.36-8.26 16.51-16.65 12.09L256 393.88l-46.9 24.65c-8.4 4.45-18.25-2.74-16.65-12.09l8.97-52.22-37.93-36.96c-6.82-6.64-3.05-18.23 6.35-19.59l52.43-7.64 23.43-47.52c2.11-4.28 6.19-6.39 10.28-6.39 4.11 0 8.22 2.14 10.33 6.39l23.43 47.52 52.43 7.64c9.4 1.36 13.17 12.95 6.35 19.59z"], + "medkit": [512, 512, [], "f0fa", "M96 480h320V128h-32V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v48H96v352zm96-384h128v32H192V96zm320 80v256c0 26.51-21.49 48-48 48h-16V128h16c26.51 0 48 21.49 48 48zM64 480H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v352zm288-208v32c0 8.837-7.163 16-16 16h-48v48c0 8.837-7.163 16-16 16h-32c-8.837 0-16-7.163-16-16v-48h-48c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h48v-48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v48h48c8.837 0 16 7.163 16 16z"], + "meh": [496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm176 192H152c-21.2 0-21.2-32 0-32h192c21.2 0 21.2 32 0 32zm-16-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "meh-blank": [496, 512, [], "f5a4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "meh-rolling-eyes": [496, 512, [], "f5a5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 224c0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64s-64-28.7-64-64zm224 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-112c-35.3 0-64-28.7-64-64 0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64z"], + "memory": [640, 512, [], "f538", "M640 130.94V96c0-17.67-14.33-32-32-32H32C14.33 64 0 78.33 0 96v34.94c18.6 6.61 32 24.19 32 45.06s-13.4 38.45-32 45.06V320h640v-98.94c-18.6-6.61-32-24.19-32-45.06s13.4-38.45 32-45.06zM224 256h-64V128h64v128zm128 0h-64V128h64v128zm128 0h-64V128h64v128zM0 448h64v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h64v-96H0v96z"], + "mercury": [288, 512, [], "f223", "M288 208c0-44.2-19.9-83.7-51.2-110.1 2.5-1.8 4.9-3.8 7.2-5.8 24.7-21.2 39.8-48.8 43.2-78.8.9-7.1-4.7-13.3-11.9-13.3h-40.5C229 0 224.1 4.1 223 9.8c-2.4 12.5-9.6 24.3-20.7 33.8C187 56.8 166.3 64 144 64s-43-7.2-58.4-20.4C74.5 34.1 67.4 22.3 64.9 9.8 63.8 4.1 58.9 0 53.2 0H12.7C5.5 0-.1 6.2.8 13.3 4.2 43.4 19.2 71 44 92.2c2.3 2 4.7 3.9 7.2 5.8C19.9 124.3 0 163.8 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z"], + "microchip": [512, 512, [], "f2db", "M416 48v416c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h224c26.51 0 48 21.49 48 48zm96 58v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42V88h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zM30 376h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6z"], + "microphone": [352, 512, [], "f130", "M176 352c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96zm160-160h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16z"], + "microphone-alt": [352, 512, [], "f3c9", "M336 192h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16zM176 352c53.02 0 96-42.98 96-96h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96z"], + "microphone-alt-slash": [640, 512, [], "f539", "M633.82 458.1L476.26 336.33C488.74 312.21 496 284.98 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67h-43.67l-41.4-32H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.78c11.71-1.62 23.1-4.28 33.96-8.08l-50.4-38.96c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z"], + "microphone-slash": [640, 512, [], "f131", "M633.82 458.1l-157.8-121.96C488.61 312.13 496 285.01 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67V96c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.77c11.66-1.6 22.85-4.54 33.67-8.31l-50.11-38.73c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z"], + "minus": [448, 512, [], "f068", "M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"], + "minus-circle": [512, 512, [], "f056", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM124 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H124z"], + "minus-square": [448, 512, [], "f146", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H92z"], + "mobile": [320, 512, [], "f10b", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "mobile-alt": [320, 512, [], "f3cd", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm112-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v312z"], + "money-bill": [640, 512, [], "f0d6", "M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 176c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 48h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z"], + "money-bill-alt": [640, 512, [], "f3d1", "M352 288h-16v-88c0-4.42-3.58-8-8-8h-13.58c-4.74 0-9.37 1.4-13.31 4.03l-15.33 10.22a7.994 7.994 0 0 0-2.22 11.09l8.88 13.31a7.994 7.994 0 0 0 11.09 2.22l.47-.31V288h-16c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8h64c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 192c-53.02 0-96-50.15-96-112 0-61.86 42.98-112 96-112s96 50.14 96 112c0 61.87-43 112-96 112zm272 32h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z"], + "money-bill-wave": [640, 512, [], "f53a", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM48 132.22c20.12 5.04 41.12 7.57 62.72 8.93C104.84 170.54 79 192.69 48 192.69v-60.47zm0 285v-47.78c34.37 0 62.18 27.27 63.71 61.4-22.53-1.81-43.59-6.31-63.71-13.62zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 27.78c-17.52-4.39-35.71-6.85-54.32-8.44 5.87-26.08 27.5-45.88 54.32-49.28v57.72zm0-236.11c-30.89-3.91-54.86-29.7-55.81-61.55 19.54 2.17 38.09 6.23 55.81 12.66v48.89z"], + "money-bill-wave-alt": [640, 512, [], "f53b", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96z"], + "money-check": [640, 512, [], "f53c", "M0 448c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128H0v320zm448-208c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-32zm0 120c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H456c-4.42 0-8-3.58-8-8v-16zM64 264c0-4.42 3.58-8 8-8h304c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm0 96c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zM624 32H16C7.16 32 0 39.16 0 48v48h640V48c0-8.84-7.16-16-16-16z"], + "money-check-alt": [640, 512, [], "f53d", "M608 32H32C14.33 32 0 46.33 0 64v384c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM176 327.88V344c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V152c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07zM416 312c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm160 0c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h272c4.42 0 8 3.58 8 8v16z"], + "monument": [384, 512, [], "f5a6", "M368 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h352c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-78.86-347.26a31.97 31.97 0 0 0-9.21-19.44L203.31 4.69c-6.25-6.25-16.38-6.25-22.63 0l-76.6 76.61a31.97 31.97 0 0 0-9.21 19.44L64 416h256l-30.86-315.26zM240 307.2c0 6.4-6.4 12.8-12.8 12.8h-70.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h70.4c6.4 0 12.8 6.4 12.8 12.8v38.4z"], + "moon": [512, 512, [], "f186", "M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z"], + "mortar-pestle": [512, 512, [], "f5a7", "M501.54 60.91c17.22-17.22 12.51-46.25-9.27-57.14a35.696 35.696 0 0 0-37.37 3.37L251.09 160h151.37l99.08-99.09zM496 192H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c0 80.98 50.2 150.11 121.13 178.32-12.76 16.87-21.72 36.8-24.95 58.69-1.46 9.92 6.04 18.98 16.07 18.98h223.5c10.03 0 17.53-9.06 16.07-18.98-3.22-21.89-12.18-41.82-24.95-58.69C429.8 406.11 480 336.98 480 256h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"], + "motorcycle": [640, 512, [], "f21c", "M512.949 192.003c-14.862-.108-29.14 2.322-42.434 6.874L437.589 144H520c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24h-45.311a24 24 0 0 0-17.839 7.945l-37.496 41.663-22.774-37.956A24 24 0 0 0 376 64h-80c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h66.411l19.2 32H227.904c-17.727-23.073-44.924-40-99.904-40H72.54c-13.455 0-24.791 11.011-24.536 24.464C48.252 141.505 58.9 152 72 152h56c24.504 0 38.686 10.919 47.787 24.769l-11.291 20.529c-13.006-3.865-26.871-5.736-41.251-5.21C55.857 194.549 1.565 249.605.034 317.021-1.603 389.076 56.317 448 128 448c59.642 0 109.744-40.794 123.953-96h84.236c13.673 0 24.589-11.421 23.976-25.077-2.118-47.12 17.522-93.665 56.185-125.026l12.485 20.808c-27.646 23.654-45.097 58.88-44.831 98.179.47 69.556 57.203 126.452 126.758 127.11 71.629.678 129.839-57.487 129.234-129.099-.588-69.591-57.455-126.386-127.047-126.892zM128 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c4.242 0 8.405.341 12.469.982L98.97 316.434C90.187 332.407 101.762 352 120 352h81.297c-12.37 28.225-40.56 48-73.297 48zm388.351-.116C470.272 402.337 432 365.554 432 320c0-21.363 8.434-40.781 22.125-55.144l49.412 82.352c4.546 7.577 14.375 10.034 21.952 5.488l13.72-8.232c7.577-4.546 10.034-14.375 5.488-21.952l-48.556-80.927A80.005 80.005 0 0 1 512 240c45.554 0 82.338 38.273 79.884 84.352-2.16 40.558-34.974 73.372-75.533 75.532z"], + "mouse-pointer": [320, 512, [], "f245", "M302.189 329.126H196.105l55.831 135.993c3.889 9.428-.555 19.999-9.444 23.999l-49.165 21.427c-9.165 4-19.443-.571-23.332-9.714l-53.053-129.136-86.664 89.138C18.729 472.71 0 463.554 0 447.977V18.299C0 1.899 19.921-6.096 30.277 5.443l284.412 292.542c11.472 11.179 3.007 31.141-12.5 31.141z"], + "music": [512, 512, [], "f001", "M470.4 1.5l-304 96C153.1 101.7 144 114 144 128v264.6c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V220.5l272-85.9v194c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V32c0-21.7-21.1-37-41.6-30.5z"], + "neuter": [288, 512, [], "f22c", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V468c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V316.4c64.1-14.5 112-71.9 112-140.4zm-144 80c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"], + "newspaper": [576, 512, [], "f1ea", "M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z"], + "not-equal": [448, 512, [], "f53e", "M416 208c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32h-23.88l51.87-66.81c5.37-7.02 4.04-17.06-2.97-22.43L415.61 3.3c-7.02-5.38-17.06-4.04-22.44 2.97L311.09 112H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h204.56l-74.53 96H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h55.49l-51.87 66.81c-5.37 7.01-4.04 17.05 2.97 22.43L64 508.7c7.02 5.38 17.06 4.04 22.43-2.97L168.52 400H416c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32H243.05l74.53-96H416z"], + "notes-medical": [384, 512, [], "f481", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm96 304c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm0-192c0 4.4-3.6 8-8 8H104c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16z"], + "object-group": [512, 512, [], "f247", "M480 128V96h20c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v20H64V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v40c0 6.627 5.373 12 12 12h20v320H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-20h384v20c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-20V128zM96 276V140c0-6.627 5.373-12 12-12h168c6.627 0 12 5.373 12 12v136c0 6.627-5.373 12-12 12H108c-6.627 0-12-5.373-12-12zm320 96c0 6.627-5.373 12-12 12H236c-6.627 0-12-5.373-12-12v-52h72c13.255 0 24-10.745 24-24v-72h84c6.627 0 12 5.373 12 12v136z"], + "object-ungroup": [576, 512, [], "f248", "M64 320v26a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6v-52a6 6 0 0 1 6-6h26V96H6a6 6 0 0 1-6-6V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v26h288V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-26v192h26a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-52a6 6 0 0 1-6-6v-26H64zm480-64v-32h26a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-52a6 6 0 0 0-6 6v26H408v72h8c13.255 0 24 10.745 24 24v64c0 13.255-10.745 24-24 24h-64c-13.255 0-24-10.745-24-24v-8H192v72h-26a6 6 0 0 0-6 6v52a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-26h288v26a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-26V256z"], + "outdent": [448, 512, [], "f03b", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm208 144h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm192-128h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM4.687 267.313l96 95.984C110.734 373.348 128 366.224 128 351.984V160.008c0-14.329-17.325-21.304-27.313-11.313l-96 95.992c-6.249 6.248-6.249 16.378 0 22.626z"], + "paint-brush": [512, 512, [], "f1fc", "M167.02 309.34c-40.12 2.58-76.53 17.86-97.19 72.3-2.35 6.21-8 9.98-14.59 9.98-11.11 0-45.46-27.67-55.25-34.35C0 439.62 37.93 512 128 512c75.86 0 128-43.77 128-120.19 0-3.11-.65-6.08-.97-9.13l-88.01-73.34zM457.89 0c-15.16 0-29.37 6.71-40.21 16.45C213.27 199.05 192 203.34 192 257.09c0 13.7 3.25 26.76 8.73 38.7l63.82 53.18c7.21 1.8 14.64 3.03 22.39 3.03 62.11 0 98.11-45.47 211.16-256.46 7.38-14.35 13.9-29.85 13.9-45.99C512 20.64 486 0 457.89 0z"], + "paint-roller": [512, 512, [], "f5aa", "M416 128V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32h352c17.67 0 32-14.33 32-32zm32-64v128c0 17.67-14.33 32-32 32H256c-35.35 0-64 28.65-64 64v32c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32v-32h160c53.02 0 96-42.98 96-96v-64c0-35.35-28.65-64-64-64z"], + "palette": [512, 512, [], "f53f", "M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "pallet": [640, 512, [], "f482", "M144 256h352c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H384v128l-64-32-64 32V0H144c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16zm480 128c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v64H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-64h48zm-336 64H128v-64h160v64zm224 0H352v-64h160v64z"], + "paper-plane": [512, 512, [], "f1d8", "M476 3.2L12.5 270.6c-18.1 10.4-15.8 35.6 2.2 43.2L121 358.4l287.3-253.2c5.5-4.9 13.3 2.6 8.6 8.3L176 407v80.5c0 23.6 28.5 32.9 42.5 15.8L282 426l124.6 52.2c14.2 6 30.4-2.9 33-18.2l72-432C515 7.8 493.3-6.8 476 3.2z"], + "paperclip": [448, 512, [], "f0c6", "M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z"], + "parachute-box": [512, 512, [], "f4cd", "M511.9 175c-9.1-75.6-78.4-132.4-158.3-158.7C390 55.7 416 116.9 416 192h28.1L327.5 321.5c-2.5-.6-4.8-1.5-7.5-1.5h-48V192h112C384 76.8 315.1 0 256 0S128 76.8 128 192h112v128h-48c-2.7 0-5 .9-7.5 1.5L67.9 192H96c0-75.1 26-136.3 62.4-175.7C78.5 42.7 9.2 99.5.1 175c-1.1 9.1 6.8 17 16 17h8.7l136.7 151.9c-.7 2.6-1.6 5.2-1.6 8.1v128c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32V352c0-2.9-.9-5.4-1.6-8.1L487.1 192h8.7c9.3 0 17.2-7.8 16.1-17z"], + "paragraph": [448, 512, [], "f1dd", "M408 32H177.531C88.948 32 16.045 103.335 16 191.918 15.956 280.321 87.607 352 176 352v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h32v344c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h40c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24z"], + "parking": [448, 512, [], "f540", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM240 320h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h96c52.9 0 96 43.1 96 96s-43.1 96-96 96zm0-128h-48v64h48c17.6 0 32-14.4 32-32s-14.4-32-32-32z"], + "passport": [448, 512, [], "f5ab", "M129.62 176h39.09c1.49-27.03 6.54-51.35 14.21-70.41-27.71 13.24-48.02 39.19-53.3 70.41zm0 32c5.29 31.22 25.59 57.17 53.3 70.41-7.68-19.06-12.72-43.38-14.21-70.41h-39.09zM224 286.69c7.69-7.45 20.77-34.42 23.43-78.69h-46.87c2.67 44.26 15.75 71.24 23.44 78.69zM200.57 176h46.87c-2.66-44.26-15.74-71.24-23.43-78.69-7.7 7.45-20.78 34.43-23.44 78.69zm64.51 102.41c27.71-13.24 48.02-39.19 53.3-70.41h-39.09c-1.49 27.03-6.53 51.35-14.21 70.41zM416 0H64C28.65 0 0 28.65 0 64v384c0 35.35 28.65 64 64 64h352c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32zm-80 416H112c-8.8 0-16-7.2-16-16s7.2-16 16-16h224c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-112-96c-70.69 0-128-57.31-128-128S153.31 64 224 64s128 57.31 128 128-57.31 128-128 128zm41.08-214.41c7.68 19.06 12.72 43.38 14.21 70.41h39.09c-5.28-31.22-25.59-57.17-53.3-70.41z"], + "paste": [448, 512, [], "f0ea", "M128 184c0-30.879 25.122-56 56-56h136V56c0-13.255-10.745-24-24-24h-80.61C204.306 12.89 183.637 0 160 0s-44.306 12.89-55.39 32H24C10.745 32 0 42.745 0 56v336c0 13.255 10.745 24 24 24h104V184zm32-144c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24zm184 248h104v200c0 13.255-10.745 24-24 24H184c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.059V256h-96v-96h6.059a24 24 0 0 1 16.97 7.029l65.941 65.941a24.002 24.002 0 0 1 7.03 16.971z"], + "pause": [448, 512, [], "f04c", "M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z"], + "pause-circle": [512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-16 328c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160zm112 0c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160z"], + "paw": [512, 512, [], "f1b0", "M85.231 330.958C36 330.958 0 273.792 0 231.5c0-28.292 16-58.042 49.538-58.042 49.231 0 85.231 57.458 85.231 99.75 0 28.292-15.692 57.75-49.538 57.75zm348 106.167c0 37.042-32 42.875-63.385 42.875-41.231 0-74.462-26.25-113.846-26.25-41.231 0-76.308 25.958-120.923 25.958-29.847 0-56.308-9.625-56.308-42.583C78.769 368 180.616 265.333 256 265.333s177.231 102.959 177.231 171.792zM182.462 203.792c-49.847 0-80-59.5-80-100.333C102.462 70.792 120.308 32 160 32c50.154 0 80 59.5 80 100.333 0 32.667-17.846 71.459-57.538 71.459zM272 132.333C272 91.5 301.846 32 352 32c39.692 0 57.539 38.792 57.539 71.458 0 40.833-30.154 100.333-80.001 100.333C289.846 203.792 272 165 272 132.333zM512 231.5c0 42.292-36 99.458-85.231 99.458-33.847 0-49.538-29.458-49.538-57.75 0-42.291 35.999-99.75 85.231-99.75C496 173.458 512 203.208 512 231.5z"], + "pen": [512, 512, [], "f304", "M290.74 93.24l128.02 128.02-277.99 277.99-114.14 12.6C11.35 513.54-1.56 500.62.14 485.34l12.7-114.22 277.9-277.88zm207.2-19.06l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.76 18.75-49.16 0-67.91z"], + "pen-alt": [512, 512, [], "f305", "M497.94 74.17l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91zm-246.8-20.53c-15.62-15.62-40.94-15.62-56.56 0L75.8 172.43c-6.25 6.25-6.25 16.38 0 22.62l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l101.82-101.82 22.63 22.62L93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l196.79-196.79-82.77-82.77-84.85-84.85z"], + "pen-fancy": [512, 512, [], "f5ac", "M79.18 282.94a32.005 32.005 0 0 0-20.24 20.24L0 480l4.69 4.69 92.89-92.89c-.66-2.56-1.57-5.03-1.57-7.8 0-17.67 14.33-32 32-32s32 14.33 32 32-14.33 32-32 32c-2.77 0-5.24-.91-7.8-1.57l-92.89 92.89L32 512l176.82-58.94a31.983 31.983 0 0 0 20.24-20.24l33.07-84.07-98.88-98.88-84.07 33.07zM369.25 28.32L186.14 227.81l97.85 97.85 199.49-183.11C568.4 67.48 443.73-55.94 369.25 28.32z"], + "pen-nib": [512, 512, [], "f5ad", "M136.6 138.79a64.003 64.003 0 0 0-43.31 41.35L0 460l14.69 14.69L164.8 324.58c-2.99-6.26-4.8-13.18-4.8-20.58 0-26.51 21.49-48 48-48s48 21.49 48 48-21.49 48-48 48c-7.4 0-14.32-1.81-20.58-4.8L37.31 497.31 52 512l279.86-93.29a64.003 64.003 0 0 0 41.35-43.31L416 224 288 96l-151.4 42.79zm361.34-64.62l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91z"], + "pen-square": [448, 512, [], "f14b", "M400 480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zM238.1 177.9L102.4 313.6l-6.3 57.1c-.8 7.6 5.6 14.1 13.3 13.3l57.1-6.3L302.2 242c2.3-2.3 2.3-6.1 0-8.5L246.7 178c-2.5-2.4-6.3-2.4-8.6-.1zM345 165.1L314.9 135c-9.4-9.4-24.6-9.4-33.9 0l-23.1 23.1c-2.3 2.3-2.3 6.1 0 8.5l55.5 55.5c2.3 2.3 6.1 2.3 8.5 0L345 199c9.3-9.3 9.3-24.5 0-33.9z"], + "pencil-alt": [512, 512, [], "f303", "M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z"], + "pencil-ruler": [512, 512, [], "f5ae", "M109.46 244.04l134.58-134.56-44.12-44.12-61.68 61.68a7.919 7.919 0 0 1-11.21 0l-11.21-11.21c-3.1-3.1-3.1-8.12 0-11.21l61.68-61.68-33.64-33.65C131.47-3.1 111.39-3.1 99 9.29L9.29 99c-12.38 12.39-12.39 32.47 0 44.86l100.17 100.18zm388.47-116.8c18.76-18.76 18.75-49.17 0-67.93l-45.25-45.25c-18.76-18.76-49.18-18.76-67.95 0l-46.02 46.01 113.2 113.2 46.02-46.03zM316.08 82.71l-297 296.96L.32 487.11c-2.53 14.49 10.09 27.11 24.59 24.56l107.45-18.84L429.28 195.9 316.08 82.71zm186.63 285.43l-33.64-33.64-61.68 61.68c-3.1 3.1-8.12 3.1-11.21 0l-11.21-11.21c-3.09-3.1-3.09-8.12 0-11.21l61.68-61.68-44.14-44.14L267.93 402.5l100.21 100.2c12.39 12.39 32.47 12.39 44.86 0l89.71-89.7c12.39-12.39 12.39-32.47 0-44.86z"], + "people-carry": [640, 512, [], "f4ce", "M128 96c26.5 0 48-21.5 48-48S154.5 0 128 0 80 21.5 80 48s21.5 48 48 48zm384 0c26.5 0 48-21.5 48-48S538.5 0 512 0s-48 21.5-48 48 21.5 48 48 48zm125.7 372.1l-44-110-41.1 46.4-2 18.2 27.7 69.2c5 12.5 17 20.1 29.7 20.1 4 0 8-.7 11.9-2.3 16.4-6.6 24.4-25.2 17.8-41.6zm-34.2-209.8L585 178.1c-4.6-20-18.6-36.8-37.5-44.9-18.5-8-39-6.7-56.1 3.3-22.7 13.4-39.7 34.5-48.1 59.4L432 229.8 416 240v-96c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16v96l-16.1-10.2-11.3-33.9c-8.3-25-25.4-46-48.1-59.4-17.2-10-37.6-11.3-56.1-3.3-18.9 8.1-32.9 24.9-37.5 44.9l-18.4 80.2c-4.6 20 .7 41.2 14.4 56.7l67.2 75.9 10.1 92.6C130 499.8 143.8 512 160 512c1.2 0 2.3-.1 3.5-.2 17.6-1.9 30.2-17.7 28.3-35.3l-10.1-92.8c-1.5-13-6.9-25.1-15.6-35l-43.3-49 17.6-70.3 6.8 20.4c4.1 12.5 11.9 23.4 24.5 32.6l51.1 32.5c4.6 2.9 12.1 4.6 17.2 5h160c5.1-.4 12.6-2.1 17.2-5l51.1-32.5c12.6-9.2 20.4-20 24.5-32.6l6.8-20.4 17.6 70.3-43.3 49c-8.7 9.9-14.1 22-15.6 35l-10.1 92.8c-1.9 17.6 10.8 33.4 28.3 35.3 1.2.1 2.3.2 3.5.2 16.1 0 30-12.1 31.8-28.5l10.1-92.6 67.2-75.9c13.6-15.5 19-36.7 14.4-56.7zM46.3 358.1l-44 110c-6.6 16.4 1.4 35 17.8 41.6 16.8 6.6 35.1-1.7 41.6-17.8l27.7-69.2-2-18.2-41.1-46.4z"], + "percent": [448, 512, [], "f295", "M112 224c61.9 0 112-50.1 112-112S173.9 0 112 0 0 50.1 0 112s50.1 112 112 112zm0-160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm224 224c-61.9 0-112 50.1-112 112s50.1 112 112 112 112-50.1 112-112-50.1-112-112-112zm0 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zM392.3.2l31.6-.1c19.4-.1 30.9 21.8 19.7 37.8L77.4 501.6a23.95 23.95 0 0 1-19.6 10.2l-33.4.1c-19.5 0-30.9-21.9-19.7-37.8l368-463.7C377.2 4 384.5.2 392.3.2z"], + "percentage": [384, 512, [], "f541", "M109.25 173.25c24.99-24.99 24.99-65.52 0-90.51-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 25 25 65.52 25 90.51 0zm256 165.49c-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 24.99 24.99 65.52 24.99 90.51 0 25-24.99 25-65.51 0-90.51zm-1.94-231.43l-22.62-22.62c-12.5-12.5-32.76-12.5-45.25 0L20.69 359.44c-12.5 12.5-12.5 32.76 0 45.25l22.62 22.62c12.5 12.5 32.76 12.5 45.25 0l274.75-274.75c12.5-12.49 12.5-32.75 0-45.25z"], + "phone": [512, 512, [], "f095", "M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z"], + "phone-slash": [640, 512, [], "f3dd", "M268.2 381.4l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48c-10.7 4.6-16.5 16.1-13.9 27.5l24 104c2.5 10.8 12.1 18.6 23.4 18.6 100.7 0 193.7-32.4 269.7-86.9l-80-61.8c-10.9 6.5-22.1 12.7-33.6 18.1zm365.6 76.7L475.1 335.5C537.9 256.4 576 156.9 576 48c0-11.2-7.7-20.9-18.6-23.4l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-12.2 26.1-27.9 50.3-46 72.8L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z"], + "phone-square": [448, 512, [], "f098", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM94 416c-7.033 0-13.057-4.873-14.616-11.627l-14.998-65a15 15 0 0 1 8.707-17.16l69.998-29.999a15 15 0 0 1 17.518 4.289l30.997 37.885c48.944-22.963 88.297-62.858 110.781-110.78l-37.886-30.997a15.001 15.001 0 0 1-4.289-17.518l30-69.998a15 15 0 0 1 17.16-8.707l65 14.998A14.997 14.997 0 0 1 384 126c0 160.292-129.945 290-290 290z"], + "phone-volume": [384, 512, [], "f2a0", "M97.333 506.966c-129.874-129.874-129.681-340.252 0-469.933 5.698-5.698 14.527-6.632 21.263-2.422l64.817 40.513a17.187 17.187 0 0 1 6.849 20.958l-32.408 81.021a17.188 17.188 0 0 1-17.669 10.719l-55.81-5.58c-21.051 58.261-20.612 122.471 0 179.515l55.811-5.581a17.188 17.188 0 0 1 17.669 10.719l32.408 81.022a17.188 17.188 0 0 1-6.849 20.958l-64.817 40.513a17.19 17.19 0 0 1-21.264-2.422zM247.126 95.473c11.832 20.047 11.832 45.008 0 65.055-3.95 6.693-13.108 7.959-18.718 2.581l-5.975-5.726c-3.911-3.748-4.793-9.622-2.261-14.41a32.063 32.063 0 0 0 0-29.945c-2.533-4.788-1.65-10.662 2.261-14.41l5.975-5.726c5.61-5.378 14.768-4.112 18.718 2.581zm91.787-91.187c60.14 71.604 60.092 175.882 0 247.428-4.474 5.327-12.53 5.746-17.552.933l-5.798-5.557c-4.56-4.371-4.977-11.529-.93-16.379 49.687-59.538 49.646-145.933 0-205.422-4.047-4.85-3.631-12.008.93-16.379l5.798-5.557c5.022-4.813 13.078-4.394 17.552.933zm-45.972 44.941c36.05 46.322 36.108 111.149 0 157.546-4.39 5.641-12.697 6.251-17.856 1.304l-5.818-5.579c-4.4-4.219-4.998-11.095-1.285-15.931 26.536-34.564 26.534-82.572 0-117.134-3.713-4.836-3.115-11.711 1.285-15.931l5.818-5.579c5.159-4.947 13.466-4.337 17.856 1.304z"], + "piggy-bank": [576, 512, [], "f4d3", "M560 224h-29.5c-8.8-20-21.6-37.7-37.4-52.5L512 96h-32c-29.4 0-55.4 13.5-73 34.3-7.6-1.1-15.1-2.3-23-2.3H256c-77.4 0-141.9 55-156.8 128H56c-14.8 0-26.5-13.5-23.5-28.8C34.7 215.8 45.4 208 57 208h1c3.3 0 6-2.7 6-6v-20c0-3.3-2.7-6-6-6-28.5 0-53.9 20.4-57.5 48.6C-3.9 258.8 22.7 288 56 288h40c0 52.2 25.4 98.1 64 127.3V496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-48h128v48c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80.7c11.8-8.9 22.3-19.4 31.3-31.3H560c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16zm-128 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM256 96h128c5.4 0 10.7.4 15.9.8 0-.3.1-.5.1-.8 0-53-43-96-96-96s-96 43-96 96c0 2.1.5 4.1.6 6.2 15.2-3.9 31-6.2 47.4-6.2z"], + "pills": [576, 512, [], "f484", "M112 32C50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V144c0-61.9-50.1-112-112-112zm48 224H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm139.7-29.7c-3.5-3.5-9.4-3.1-12.3.8-45.3 62.5-40.4 150.1 15.9 206.4 56.3 56.3 143.9 61.2 206.4 15.9 4-2.9 4.3-8.8.8-12.3L299.7 226.3zm229.8-19c-56.3-56.3-143.9-61.2-206.4-15.9-4 2.9-4.3 8.8-.8 12.3l210.8 210.8c3.5 3.5 9.4 3.1 12.3-.8 45.3-62.6 40.5-150.1-15.9-206.4z"], + "plane": [576, 512, [], "f072", "M480 192H365.71L260.61 8.06A16.014 16.014 0 0 0 246.71 0h-65.5c-10.63 0-18.3 10.17-15.38 20.39L214.86 192H112l-43.2-57.6c-3.02-4.03-7.77-6.4-12.8-6.4H16.01C5.6 128-2.04 137.78.49 147.88L32 256 .49 364.12C-2.04 374.22 5.6 384 16.01 384H56c5.04 0 9.78-2.37 12.8-6.4L112 320h102.86l-49.03 171.6c-2.92 10.22 4.75 20.4 15.38 20.4h65.5c5.74 0 11.04-3.08 13.89-8.06L365.71 320H480c35.35 0 96-28.65 96-64s-60.65-64-96-64z"], + "plane-arrival": [640, 512, [], "f5af", "M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM44.81 205.66l88.74 80a62.607 62.607 0 0 0 25.47 13.93l287.6 78.35c26.48 7.21 54.56 8.72 81 1.36 29.67-8.27 43.44-21.21 47.25-35.71 3.83-14.5-1.73-32.71-23.37-54.96-19.28-19.82-44.35-32.79-70.83-40l-97.51-26.56L282.8 30.22c-1.51-5.81-5.95-10.35-11.66-11.91L206.05.58c-10.56-2.88-20.9 5.32-20.71 16.44l47.92 164.21-102.2-27.84-27.59-67.88c-1.93-4.89-6.01-8.57-11.02-9.93L52.72 64.75c-10.34-2.82-20.53 5-20.72 15.88l.23 101.78c.19 8.91 6.03 17.34 12.58 23.25z"], + "plane-departure": [640, 512, [], "f5b0", "M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM80.55 341.27c6.28 6.84 15.1 10.72 24.33 10.71l130.54-.18a65.62 65.62 0 0 0 29.64-7.12l290.96-147.65c26.74-13.57 50.71-32.94 67.02-58.31 18.31-28.48 20.3-49.09 13.07-63.65-7.21-14.57-24.74-25.27-58.25-27.45-29.85-1.94-59.54 5.92-86.28 19.48l-98.51 49.99-218.7-82.06a17.799 17.799 0 0 0-18-1.11L90.62 67.29c-10.67 5.41-13.25 19.65-5.17 28.53l156.22 98.1-103.21 52.38-72.35-36.47a17.804 17.804 0 0 0-16.07.02L9.91 230.22c-10.44 5.3-13.19 19.12-5.57 28.08l76.21 82.97z"], + "play": [448, 512, [], "f04b", "M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z"], + "play-circle": [512, 512, [], "f144", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z"], + "plug": [384, 512, [], "f1e6", "M256 144V32c0-17.673 14.327-32 32-32s32 14.327 32 32v112h-64zm112 16H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h16v32c0 77.406 54.969 141.971 128 156.796V512h64v-99.204c73.031-14.825 128-79.39 128-156.796v-32h16c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm-240-16V32c0-17.673-14.327-32-32-32S64 14.327 64 32v112h64z"], + "plus": [448, 512, [], "f067", "M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"], + "plus-circle": [512, 512, [], "f055", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"], + "plus-square": [448, 512, [], "f0fe", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-32 252c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92H92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"], + "podcast": [448, 512, [], "f2ce", "M267.429 488.563C262.286 507.573 242.858 512 224 512c-18.857 0-38.286-4.427-43.428-23.437C172.927 460.134 160 388.898 160 355.75c0-35.156 31.142-43.75 64-43.75s64 8.594 64 43.75c0 32.949-12.871 104.179-20.571 132.813zM156.867 288.554c-18.693-18.308-29.958-44.173-28.784-72.599 2.054-49.724 42.395-89.956 92.124-91.881C274.862 121.958 320 165.807 320 220c0 26.827-11.064 51.116-28.866 68.552-2.675 2.62-2.401 6.986.628 9.187 9.312 6.765 16.46 15.343 21.234 25.363 1.741 3.654 6.497 4.66 9.449 1.891 28.826-27.043 46.553-65.783 45.511-108.565-1.855-76.206-63.595-138.208-139.793-140.369C146.869 73.753 80 139.215 80 220c0 41.361 17.532 78.7 45.55 104.989 2.953 2.771 7.711 1.77 9.453-1.887 4.774-10.021 11.923-18.598 21.235-25.363 3.029-2.2 3.304-6.566.629-9.185zM224 0C100.204 0 0 100.185 0 224c0 89.992 52.602 165.647 125.739 201.408 4.333 2.118 9.267-1.544 8.535-6.31-2.382-15.512-4.342-30.946-5.406-44.339-.146-1.836-1.149-3.486-2.678-4.512-47.4-31.806-78.564-86.016-78.187-147.347.592-96.237 79.29-174.648 175.529-174.899C320.793 47.747 400 126.797 400 224c0 61.932-32.158 116.49-80.65 147.867-.999 14.037-3.069 30.588-5.624 47.23-.732 4.767 4.203 8.429 8.535 6.31C395.227 389.727 448 314.187 448 224 448 100.205 347.815 0 224 0zm0 160c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z"], + "poo": [512, 512, [], "f2fe", "M451.4 369.1C468.7 356 480 335.4 480 312c0-39.8-32.2-72-72-72h-14.1c13.4-11.7 22.1-28.8 22.1-48 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C250.3 14.6 256 30.6 256 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 19.2 8.7 36.3 22.1 48H104c-39.8 0-72 32.2-72 72 0 23.4 11.3 44 28.6 57.1C26.3 374.6 0 404.1 0 440c0 39.8 32.2 72 72 72h368c39.8 0 72-32.2 72-72 0-35.9-26.3-65.4-60.6-70.9zM192 256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm159.5 139C341 422.9 293 448 256 448s-85-25.1-95.5-53c-2-5.3 2-11 7.8-11h175.4c5.8 0 9.8 5.7 7.8 11zM320 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "portrait": [384, 512, [], "f3e0", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM192 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 384 80 375.4 80 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"], + "pound-sign": [320, 512, [], "f154", "M308 352h-45.495c-6.627 0-12 5.373-12 12v50.848H128V288h84c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-84v-63.556c0-32.266 24.562-57.086 61.792-57.086 23.658 0 45.878 11.505 57.652 18.849 5.151 3.213 11.888 2.051 15.688-2.685l28.493-35.513c4.233-5.276 3.279-13.005-2.119-17.081C273.124 54.56 236.576 32 187.931 32 106.026 32 48 84.742 48 157.961V224H20c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h28v128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12V364c0-6.627-5.373-12-12-12z"], + "power-off": [512, 512, [], "f011", "M400 54.1c63 45 104 118.6 104 201.9 0 136.8-110.8 247.7-247.5 248C120 504.3 8.2 393 8 256.4 7.9 173.1 48.9 99.3 111.8 54.2c11.7-8.3 28-4.8 35 7.7L162.6 90c5.9 10.5 3.1 23.8-6.6 31-41.5 30.8-68 79.6-68 134.9-.1 92.3 74.5 168.1 168 168.1 91.6 0 168.6-74.2 168-169.1-.3-51.8-24.7-101.8-68.1-134-9.7-7.2-12.4-20.5-6.5-30.9l15.8-28.1c7-12.4 23.2-16.1 34.8-7.8zM296 264V24c0-13.3-10.7-24-24-24h-32c-13.3 0-24 10.7-24 24v240c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24z"], + "prescription": [384, 512, [], "f5b1", "M301.26 352l78.06-78.06c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0L256 306.74l-83.96-83.96C219.31 216.8 256 176.89 256 128c0-53.02-42.98-96-96-96H16C7.16 32 0 39.16 0 48v256c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-80h18.75l128 128-78.06 78.06c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0L256 397.25l78.06 78.06c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63L301.26 352zM64 96h96c17.64 0 32 14.36 32 32s-14.36 32-32 32H64V96z"], + "prescription-bottle": [384, 512, [], "f485", "M32 192h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v64zM360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24z"], + "prescription-bottle-alt": [384, 512, [], "f486", "M360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24zM32 480c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v352zm64-184c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48z"], + "print": [512, 512, [], "f02f", "M464 192h-16V81.941a24 24 0 0 0-7.029-16.97L383.029 7.029A24 24 0 0 0 366.059 0H88C74.745 0 64 10.745 64 24v168H48c-26.51 0-48 21.49-48 48v132c0 6.627 5.373 12 12 12h52v104c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V384h52c6.627 0 12-5.373 12-12V240c0-26.51-21.49-48-48-48zm-80 256H128v-96h256v96zM128 224V64h192v40c0 13.2 10.8 24 24 24h40v96H128zm304 72c-13.254 0-24-10.746-24-24s10.746-24 24-24 24 10.746 24 24-10.746 24-24 24z"], + "procedures": [640, 512, [], "f487", "M528 224H272c-8.8 0-16 7.2-16 16v144H64V144c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v352c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h512v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-61.9-50.1-112-112-112zM136 96h126.1l27.6 55.2c5.9 11.8 22.7 11.8 28.6 0L368 51.8 390.1 96H512c8.8 0 16-7.2 16-16s-7.2-16-16-16H409.9L382.3 8.8C376.4-3 359.6-3 353.7 8.8L304 108.2l-19.9-39.8c-1.4-2.7-4.1-4.4-7.2-4.4H136c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm24 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z"], + "project-diagram": [640, 512, [], "f542", "M384 320H256c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM192 32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v128c0 17.67 14.33 32 32 32h95.72l73.16 128.04C211.98 300.98 232.4 288 256 288h.28L192 175.51V128h224V64H192V32zM608 0H480c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32z"], + "puzzle-piece": [576, 512, [], "f12e", "M519.442 288.651c-41.519 0-59.5 31.593-82.058 31.593C377.409 320.244 432 144 432 144s-196.288 80-196.288-3.297c0-35.827 36.288-46.25 36.288-85.985C272 19.216 243.885 0 210.539 0c-34.654 0-66.366 18.891-66.366 56.346 0 41.364 31.711 59.277 31.711 81.75C175.885 207.719 0 166.758 0 166.758v333.237s178.635 41.047 178.635-28.662c0-22.473-40-40.107-40-81.471 0-37.456 29.25-56.346 63.577-56.346 33.673 0 61.788 19.216 61.788 54.717 0 39.735-36.288 50.158-36.288 85.985 0 60.803 129.675 25.73 181.23 25.73 0 0-34.725-120.101 25.827-120.101 35.962 0 46.423 36.152 86.308 36.152C556.712 416 576 387.99 576 354.443c0-34.199-18.962-65.792-56.558-65.792z"], + "qrcode": [448, 512, [], "f029", "M0 224h192V32H0v192zM64 96h64v64H64V96zm192-64v192h192V32H256zm128 128h-64V96h64v64zM0 480h192V288H0v192zm64-128h64v64H64v-64zm352-64h32v128h-96v-32h-32v96h-64V288h96v32h64v-32zm0 160h32v32h-32v-32zm-64 0h32v32h-32v-32z"], + "question": [384, 512, [], "f128", "M202.021 0C122.202 0 70.503 32.703 29.914 91.026c-7.363 10.58-5.093 25.086 5.178 32.874l43.138 32.709c10.373 7.865 25.132 6.026 33.253-4.148 25.049-31.381 43.63-49.449 82.757-49.449 30.764 0 68.816 19.799 68.816 49.631 0 22.552-18.617 34.134-48.993 51.164-35.423 19.86-82.299 44.576-82.299 106.405V320c0 13.255 10.745 24 24 24h72.471c13.255 0 24-10.745 24-24v-5.773c0-42.86 125.268-44.645 125.268-160.627C377.504 66.256 286.902 0 202.021 0zM192 373.459c-38.196 0-69.271 31.075-69.271 69.271 0 38.195 31.075 69.27 69.271 69.27s69.271-31.075 69.271-69.271-31.075-69.27-69.271-69.27z"], + "question-circle": [512, 512, [], "f059", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z"], + "quidditch": [640, 512, [], "f458", "M256.5 216.8L343.2 326s-16.6 102.4-76.6 150.1C206.7 523.8 0 510.2 0 510.2s3.8-23.1 11-55.4l94.6-112.2c4-4.7-.9-11.6-6.6-9.5l-60.4 22.1c14.4-41.7 32.7-80 54.6-97.5 59.9-47.8 163.3-40.9 163.3-40.9zm238 135c-44 0-79.8 35.8-79.8 79.9 0 44.1 35.7 79.9 79.8 79.9 44.1 0 79.8-35.8 79.8-79.9 0-44.2-35.8-79.9-79.8-79.9zM636.5 31L616.7 6c-5.5-6.9-15.5-8-22.4-2.6L361.8 181.3l-34.1-43c-5.1-6.4-15.1-5.2-18.6 2.2l-25.3 54.6 86.7 109.2 58.8-12.4c8-1.7 11.4-11.2 6.3-17.6l-34.1-42.9L634 53.5c6.9-5.5 8-15.6 2.5-22.5z"], + "quote-left": [512, 512, [], "f10d", "M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z"], + "quote-right": [512, 512, [], "f10e", "M464 32H336c-26.5 0-48 21.5-48 48v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48zm-288 0H48C21.5 32 0 53.5 0 80v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48z"], + "random": [512, 512, [], "f074", "M504.971 359.029c9.373 9.373 9.373 24.569 0 33.941l-80 79.984c-15.01 15.01-40.971 4.49-40.971-16.971V416h-58.785a12.004 12.004 0 0 1-8.773-3.812l-70.556-75.596 53.333-57.143L352 336h32v-39.981c0-21.438 25.943-31.998 40.971-16.971l80 79.981zM12 176h84l52.781 56.551 53.333-57.143-70.556-75.596A11.999 11.999 0 0 0 122.785 96H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12zm372 0v39.984c0 21.46 25.961 31.98 40.971 16.971l80-79.984c9.373-9.373 9.373-24.569 0-33.941l-80-79.981C409.943 24.021 384 34.582 384 56.019V96h-58.785a12.004 12.004 0 0 0-8.773 3.812L96 336H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h110.785c3.326 0 6.503-1.381 8.773-3.812L352 176h32z"], + "receipt": [384, 512, [], "f543", "M358.4 3.2L320 48 265.6 3.2a15.9 15.9 0 0 0-19.2 0L192 48 137.6 3.2a15.9 15.9 0 0 0-19.2 0L64 48 25.6 3.2C15-4.7 0 2.8 0 16v480c0 13.2 15 20.7 25.6 12.8L64 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L192 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L320 464l38.4 44.8c10.5 7.9 25.6.4 25.6-12.8V16c0-13.2-15-20.7-25.6-12.8zM320 360c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16z"], + "recycle": [512, 512, [], "f1b8", "M184.561 261.903c3.232 13.997-12.123 24.635-24.068 17.168l-40.736-25.455-50.867 81.402C55.606 356.273 70.96 384 96.012 384H148c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12H96.115c-75.334 0-121.302-83.048-81.408-146.88l50.822-81.388-40.725-25.448c-12.081-7.547-8.966-25.961 4.879-29.158l110.237-25.45c8.611-1.988 17.201 3.381 19.189 11.99l25.452 110.237zm98.561-182.915l41.289 66.076-40.74 25.457c-12.051 7.528-9 25.953 4.879 29.158l110.237 25.45c8.672 1.999 17.215-3.438 19.189-11.99l25.45-110.237c3.197-13.844-11.99-24.719-24.068-17.168l-40.687 25.424-41.263-66.082c-37.521-60.033-125.209-60.171-162.816 0l-17.963 28.766c-3.51 5.62-1.8 13.021 3.82 16.533l33.919 21.195c5.62 3.512 13.024 1.803 16.536-3.817l17.961-28.743c12.712-20.341 41.973-19.676 54.257-.022zM497.288 301.12l-27.515-44.065c-3.511-5.623-10.916-7.334-16.538-3.821l-33.861 21.159c-5.62 3.512-7.33 10.915-3.818 16.536l27.564 44.112c13.257 21.211-2.057 48.96-27.136 48.96H320V336.02c0-14.213-17.242-21.383-27.313-11.313l-80 79.981c-6.249 6.248-6.249 16.379 0 22.627l80 79.989C302.689 517.308 320 510.3 320 495.989V448h95.88c75.274 0 121.335-82.997 81.408-146.88z"], + "redo": [512, 512, [], "f01e", "M500.333 0h-47.411c-6.853 0-12.314 5.729-11.986 12.574l3.966 82.759C399.416 41.899 331.672 8 256.001 8 119.34 8 7.899 119.526 8 256.187 8.101 393.068 119.096 504 256 504c63.926 0 122.202-24.187 166.178-63.908 5.113-4.618 5.354-12.561.482-17.433l-33.971-33.971c-4.466-4.466-11.64-4.717-16.38-.543C341.308 415.448 300.606 432 256 432c-97.267 0-176-78.716-176-176 0-97.267 78.716-176 176-176 60.892 0 114.506 30.858 146.099 77.8l-101.525-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12z"], + "redo-alt": [512, 512, [], "f2f9", "M256.455 8c66.269.119 126.437 26.233 170.859 68.685l35.715-35.715C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.75c-30.864-28.899-70.801-44.907-113.23-45.273-92.398-.798-170.283 73.977-169.484 169.442C88.764 348.009 162.184 424 256 424c41.127 0 79.997-14.678 110.629-41.556 4.743-4.161 11.906-3.908 16.368.553l39.662 39.662c4.872 4.872 4.631 12.815-.482 17.433C378.202 479.813 319.926 504 256 504 119.034 504 8.001 392.967 8 256.002 7.999 119.193 119.646 7.755 256.455 8z"], + "registered": [512, 512, [], "f25d", "M285.363 207.475c0 18.6-9.831 28.431-28.431 28.431h-29.876v-56.14h23.378c28.668 0 34.929 8.773 34.929 27.709zM504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM363.411 360.414c-46.729-84.825-43.299-78.636-44.702-80.98 23.432-15.172 37.945-42.979 37.945-74.486 0-54.244-31.5-89.252-105.498-89.252h-70.667c-13.255 0-24 10.745-24 24V372c0 13.255 10.745 24 24 24h22.567c13.255 0 24-10.745 24-24v-71.663h25.556l44.129 82.937a24.001 24.001 0 0 0 21.188 12.727h24.464c18.261-.001 29.829-19.591 21.018-35.587z"], + "reply": [512, 512, [], "f3e5", "M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z"], + "reply-all": [576, 512, [], "f122", "M136.309 189.836L312.313 37.851C327.72 24.546 352 35.348 352 56.015v82.763c129.182 10.231 224 52.212 224 183.548 0 61.441-39.582 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 38.512-123.162-3.922-169.482-112.59-182.015v84.175c0 20.701-24.3 31.453-39.687 18.164L136.309 226.164c-11.071-9.561-11.086-26.753 0-36.328zm-128 36.328L184.313 378.15C199.7 391.439 224 380.687 224 359.986v-15.818l-108.606-93.785A55.96 55.96 0 0 1 96 207.998a55.953 55.953 0 0 1 19.393-42.38L224 71.832V56.015c0-20.667-24.28-31.469-39.687-18.164L8.309 189.836c-11.086 9.575-11.071 26.767 0 36.328z"], + "retweet": [640, 512, [], "f079", "M629.657 343.598L528.971 444.284c-9.373 9.372-24.568 9.372-33.941 0L394.343 343.598c-9.373-9.373-9.373-24.569 0-33.941l10.823-10.823c9.562-9.562 25.133-9.34 34.419.492L480 342.118V160H292.451a24.005 24.005 0 0 1-16.971-7.029l-16-16C244.361 121.851 255.069 96 276.451 96H520c13.255 0 24 10.745 24 24v222.118l40.416-42.792c9.285-9.831 24.856-10.054 34.419-.492l10.823 10.823c9.372 9.372 9.372 24.569-.001 33.941zm-265.138 15.431A23.999 23.999 0 0 0 347.548 352H160V169.881l40.416 42.792c9.286 9.831 24.856 10.054 34.419.491l10.822-10.822c9.373-9.373 9.373-24.569 0-33.941L144.971 67.716c-9.373-9.373-24.569-9.373-33.941 0L10.343 168.402c-9.373 9.373-9.373 24.569 0 33.941l10.822 10.822c9.562 9.562 25.133 9.34 34.419-.491L96 169.881V392c0 13.255 10.745 24 24 24h243.549c21.382 0 32.09-25.851 16.971-40.971l-16.001-16z"], + "ribbon": [448, 512, [], "f4d6", "M6.1 444.3c-9.6 10.8-7.5 27.6 4.5 35.7l68.8 27.9c9.9 6.7 23.3 5 31.3-3.8l91.8-101.9-79.2-87.9-117.2 130zm435.8 0s-292-324.6-295.4-330.1c15.4-8.4 40.2-17.9 77.5-17.9s62.1 9.5 77.5 17.9c-3.3 5.6-56 64.6-56 64.6l79.1 87.7 34.2-38c28.7-31.9 33.3-78.6 11.4-115.5l-43.7-73.5c-4.3-7.2-9.9-13.3-16.8-18-40.7-27.6-127.4-29.7-171.4 0-6.9 4.7-12.5 10.8-16.8 18l-43.6 73.2c-1.5 2.5-37.1 62.2 11.5 116L337.5 504c8 8.9 21.4 10.5 31.3 3.8l68.8-27.9c11.9-8 14-24.8 4.3-35.6z"], + "road": [576, 512, [], "f018", "M567.3 383.6L429.9 78.2C426 69.5 417.4 64 408 64h-96.1l1.9 18.8c.7 7.1-4.8 13.2-11.9 13.2H274c-7.1 0-12.7-6.2-11.9-13.2L264 64h-96c-9.4 0-18 5.5-21.9 14.2L8.7 383.6C3.2 395.8 0 409.6 0 424c0 13.3 10.7 24 24 24h213.6c-7.1 0-12.7-6.2-11.9-13.2l10.8-104c.6-6.1 5.8-10.8 11.9-10.8h79.2c6.1 0 11.3 4.6 11.9 10.8l10.8 104c.7 7.1-4.8 13.2-11.9 13.2H552c13.2 0 24-10.7 24-24 0-13.9-3-27.7-8.7-40.4zM254.7 154.8l3.3-32c.6-6.1 5.8-10.8 11.9-10.8h36.2c6.1 0 11.3 4.6 11.9 10.8l3.3 32c.7 7.1-4.8 13.2-11.9 13.2h-42.8c-7.1 0-12.7-6.2-11.9-13.2zM321.8 288h-67.6c-7.1 0-12.7-6.2-11.9-13.2l7.4-72c.6-6.1 5.8-10.8 11.9-10.8h52.7c6.1 0 11.3 4.6 11.9 10.8l7.4 72c.9 7-4.7 13.2-11.8 13.2z"], + "robot": [640, 512, [], "f544", "M0 256v128c0 17.7 14.3 32 32 32h32V224H32c-17.7 0-32 14.3-32 32zM464 96H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H176c-44.2 0-80 35.8-80 80v272c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V176c0-44.2-35.8-80-80-80zM256 416h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm128 120h-64v-32h64v32zm96 0h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm192-72h-32v192h32c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32z"], + "rocket": [512, 512, [], "f135", "M505.1 19.1C503.8 13 499 8.2 492.9 6.9 460.7 0 435.5 0 410.4 0 307.2 0 245.3 55.2 199.1 128H94.9c-18.2 0-34.8 10.3-42.9 26.5L2.6 253.3c-8 16 3.6 34.7 21.5 34.7h95.1c-5.9 12.8-11.9 25.5-18 37.7-3.1 6.2-1.9 13.6 3 18.5l63.6 63.6c4.9 4.9 12.3 6.1 18.5 3 12.2-6.1 24.9-12 37.7-17.9V488c0 17.8 18.8 29.4 34.7 21.5l98.7-49.4c16.3-8.1 26.5-24.8 26.5-42.9V312.8c72.6-46.3 128-108.4 128-211.1.1-25.2.1-50.4-6.8-82.6zM400 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"], + "rss": [448, 512, [], "f09e", "M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"], + "rss-square": [448, 512, [], "f143", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM112 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm157.533 0h-34.335c-6.011 0-11.051-4.636-11.442-10.634-5.214-80.05-69.243-143.92-149.123-149.123-5.997-.39-10.633-5.431-10.633-11.441v-34.335c0-6.535 5.468-11.777 11.994-11.425 110.546 5.974 198.997 94.536 204.964 204.964.352 6.526-4.89 11.994-11.425 11.994zm103.027 0h-34.334c-6.161 0-11.175-4.882-11.427-11.038-5.598-136.535-115.204-246.161-251.76-251.76C68.882 152.949 64 147.935 64 141.774V107.44c0-6.454 5.338-11.664 11.787-11.432 167.83 6.025 302.21 141.191 308.205 308.205.232 6.449-4.978 11.787-11.432 11.787z"], + "ruble-sign": [384, 512, [], "f158", "M239.36 320C324.48 320 384 260.542 384 175.071S324.48 32 239.36 32H76c-6.627 0-12 5.373-12 12v206.632H12c-6.627 0-12 5.373-12 12V308c0 6.627 5.373 12 12 12h52v32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v52c0 6.627 5.373 12 12 12h58.56c6.627 0 12-5.373 12-12v-52H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H146.56v-32h92.8zm-92.8-219.252h78.72c46.72 0 74.88 29.11 74.88 74.323 0 45.832-28.16 75.561-76.16 75.561h-77.44V100.748z"], + "ruler": [640, 512, [], "f545", "M635.7 167.2L556.1 31.7c-8.8-15-28.3-20.1-43.5-11.5l-69 39.1L503.3 161c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L416 75l-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L333.2 122 278 153.3 337.8 255c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-59.7-101.7-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-27.9-47.5-55.2 31.3 59.7 101.7c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L84.9 262.9l-69 39.1C.7 310.7-4.6 329.8 4.2 344.8l79.6 135.6c8.8 15 28.3 20.1 43.5 11.5L624.1 210c15.2-8.6 20.4-27.8 11.6-42.8z"], + "ruler-combined": [512, 512, [], "f546", "M160 288h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56v-64h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56V96h-56c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8h56V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 2.77.91 5.24 1.57 7.8L160 329.38V288zm320 64h-32v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-41.37L24.2 510.43c2.56.66 5.04 1.57 7.8 1.57h448c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"], + "ruler-horizontal": [576, 512, [], "f547", "M544 128h-48v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8H88c-4.42 0-8-3.58-8-8v-88H32c-17.67 0-32 14.33-32 32v192c0 17.67 14.33 32 32 32h512c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32z"], + "ruler-vertical": [256, 512, [], "f548", "M168 416c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 17.67 14.33 32 32 32h192c17.67 0 32-14.33 32-32v-64h-88z"], + "rupee-sign": [320, 512, [], "f156", "M308 96c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v44.748c0 6.627 5.373 12 12 12h85.28c27.308 0 48.261 9.958 60.97 27.252H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h158.757c-6.217 36.086-32.961 58.632-74.757 58.632H12c-6.627 0-12 5.373-12 12v53.012c0 3.349 1.4 6.546 3.861 8.818l165.052 152.356a12.001 12.001 0 0 0 8.139 3.182h82.562c10.924 0 16.166-13.408 8.139-20.818L116.871 319.906c76.499-2.34 131.144-53.395 138.318-127.906H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-58.69c-3.486-11.541-8.28-22.246-14.252-32H308z"], + "sad-cry": [496, 512, [], "f5b3", "M248 8C111 8 0 119 0 256c0 90.1 48.2 168.7 120 212.1V288c0-8.8 7.2-16 16-16s16 7.2 16 16v196.7c29.5 12.4 62 19.3 96 19.3s66.5-6.9 96-19.3V288c0-8.8 7.2-16 16-16s16 7.2 16 16v180.1C447.8 424.7 496 346 496 256 496 119 385 8 248 8zm-65.5 216.5c-14.8-13.2-46.2-13.2-61 0L112 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c.8 5-1.7 10-6.1 12.4-5.8 3.1-11.2.7-13.7-1.6l-9.7-8.5zM248 416c-26.5 0-48-28.7-48-64s21.5-64 48-64 48 28.7 48 64-21.5 64-48 64zm149.8-181.5c-5.8 3.1-11.2.7-13.7-1.6l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S400 197 404 222.2c.6 4.9-1.8 9.9-6.2 12.3z"], + "sad-tear": [496, 512, [], "f5b4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM152 416c-26.5 0-48-21-48-47 0-20 28.5-60.4 41.6-77.8 3.2-4.3 9.6-4.3 12.8 0C171.5 308.6 200 349 200 369c0 26-21.5 47-48 47zm16-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm170.2 154.2C315.8 367.4 282.9 352 248 352c-21.2 0-21.2-32 0-32 44.4 0 86.3 19.6 114.7 53.8 13.8 16.4-11.2 36.5-24.5 20.4z"], + "save": [448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z"], + "school": [640, 512, [], "f549", "M0 224v272c0 8.84 7.16 16 16 16h80V192H32c-17.67 0-32 14.33-32 32zm360-48h-24v-40c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v64c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zm137.75-63.96l-160-106.67a32.02 32.02 0 0 0-35.5 0l-160 106.67A32.002 32.002 0 0 0 128 138.66V512h128V368c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v144h128V138.67c0-10.7-5.35-20.7-14.25-26.63zM320 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm288-64h-64v320h80c8.84 0 16-7.16 16-16V224c0-17.67-14.33-32-32-32z"], + "screwdriver": [512, 512, [], "f54a", "M448 0L320 96v62.06l-83.03 83.03c6.79 4.25 13.27 9.06 19.07 14.87 5.8 5.8 10.62 12.28 14.87 19.07L353.94 192H416l96-128-64-64zM128 278.59L10.92 395.67c-14.55 14.55-14.55 38.15 0 52.71l52.7 52.7c14.56 14.56 38.15 14.56 52.71 0L233.41 384c29.11-29.11 29.11-76.3 0-105.41s-76.3-29.11-105.41 0z"], + "search": [512, 512, [], "f002", "M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"], + "search-minus": [512, 512, [], "f010", "M304 192v32c0 6.6-5.4 12-12 12H124c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z"], + "search-plus": [512, 512, [], "f00e", "M304 192v32c0 6.6-5.4 12-12 12h-56v56c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-56h-56c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h56v-56c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v56h56c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z"], + "seedling": [512, 512, [], "f4d8", "M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z"], + "server": [512, 512, [], "f233", "M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z"], + "share": [512, 512, [], "f064", "M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z"], + "share-alt": [448, 512, [], "f1e0", "M352 320c-22.608 0-43.387 7.819-59.79 20.895l-102.486-64.054a96.551 96.551 0 0 0 0-41.683l102.486-64.054C308.613 184.181 329.392 192 352 192c53.019 0 96-42.981 96-96S405.019 0 352 0s-96 42.981-96 96c0 7.158.79 14.13 2.276 20.841L155.79 180.895C139.387 167.819 118.608 160 96 160c-53.019 0-96 42.981-96 96s42.981 96 96 96c22.608 0 43.387-7.819 59.79-20.895l102.486 64.054A96.301 96.301 0 0 0 256 416c0 53.019 42.981 96 96 96s96-42.981 96-96-42.981-96-96-96z"], + "share-alt-square": [448, 512, [], "f1e1", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zM304 296c-14.562 0-27.823 5.561-37.783 14.671l-67.958-40.775a56.339 56.339 0 0 0 0-27.793l67.958-40.775C276.177 210.439 289.438 216 304 216c30.928 0 56-25.072 56-56s-25.072-56-56-56-56 25.072-56 56c0 4.797.605 9.453 1.74 13.897l-67.958 40.775C171.823 205.561 158.562 200 144 200c-30.928 0-56 25.072-56 56s25.072 56 56 56c14.562 0 27.823-5.561 37.783-14.671l67.958 40.775a56.088 56.088 0 0 0-1.74 13.897c0 30.928 25.072 56 56 56s56-25.072 56-56C360 321.072 334.928 296 304 296z"], + "share-square": [576, 512, [], "f14d", "M568.482 177.448L424.479 313.433C409.3 327.768 384 317.14 384 295.985v-71.963c-144.575.97-205.566 35.113-164.775 171.353 4.483 14.973-12.846 26.567-25.006 17.33C155.252 383.105 120 326.488 120 269.339c0-143.937 117.599-172.5 264-173.312V24.012c0-21.174 25.317-31.768 40.479-17.448l144.003 135.988c10.02 9.463 10.028 25.425 0 34.896zM384 379.128V448H64V128h50.916a11.99 11.99 0 0 0 8.648-3.693c14.953-15.568 32.237-27.89 51.014-37.676C185.708 80.83 181.584 64 169.033 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48v-88.806c0-8.288-8.197-14.066-16.011-11.302a71.83 71.83 0 0 1-34.189 3.377c-7.27-1.046-13.8 4.514-13.8 11.859z"], + "shekel-sign": [448, 512, [], "f20b", "M248 168v168c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V168c0-75.11-60.89-136-136-136H24C10.75 32 0 42.74 0 56v408c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112h112c30.93 0 56 25.07 56 56zM432 32h-48c-8.84 0-16 7.16-16 16v296c0 30.93-25.07 56-56 56H200V176c0-8.84-7.16-16-16-16h-48c-8.84 0-16 7.16-16 16v280c0 13.25 10.75 24 24 24h168c75.11 0 136-60.89 136-136V48c0-8.84-7.16-16-16-16z"], + "shield-alt": [512, 512, [], "f3ed", "M496 128c0 221.282-135.934 344.645-221.539 380.308a48 48 0 0 1-36.923 0C130.495 463.713 16 326.487 16 128a48 48 0 0 1 29.539-44.308l192-80a48 48 0 0 1 36.923 0l192 80A48 48 0 0 1 496 128zM256 446.313l.066.034c93.735-46.689 172.497-156.308 175.817-307.729L256 65.333v380.98z"], + "ship": [640, 512, [], "f21a", "M496.616 372.639l70.012-70.012c16.899-16.9 9.942-45.771-12.836-53.092L512 236.102V96c0-17.673-14.327-32-32-32h-64V24c0-13.255-10.745-24-24-24H248c-13.255 0-24 10.745-24 24v40h-64c-17.673 0-32 14.327-32 32v140.102l-41.792 13.433c-22.753 7.313-29.754 36.173-12.836 53.092l70.012 70.012C125.828 416.287 85.587 448 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24 61.023 0 107.499-20.61 143.258-59.396C181.677 487.432 216.021 512 256 512h128c39.979 0 74.323-24.568 88.742-59.396C508.495 491.384 554.968 512 616 512c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24-60.817 0-101.542-31.001-119.384-75.361zM192 128h256v87.531l-118.208-37.995a31.995 31.995 0 0 0-19.584 0L192 215.531V128z"], + "shipping-fast": [640, 512, [], "f48b", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H112C85.5 0 64 21.5 64 48v48H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h272c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H40c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H64v128c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"], + "shoe-prints": [640, 512, [], "f54b", "M192 160h32V32h-32c-35.35 0-64 28.65-64 64s28.65 64 64 64zM0 416c0 35.35 28.65 64 64 64h32V352H64c-35.35 0-64 28.65-64 64zm337.46-128c-34.91 0-76.16 13.12-104.73 32-24.79 16.38-44.52 32-104.73 32v128l57.53 15.97c26.21 7.28 53.01 13.12 80.31 15.05 32.69 2.31 65.6.67 97.58-6.2C472.9 481.3 512 429.22 512 384c0-64-84.18-96-174.54-96zM491.42 7.19C459.44.32 426.53-1.33 393.84.99c-27.3 1.93-54.1 7.77-80.31 15.04L256 32v128c60.2 0 79.94 15.62 104.73 32 28.57 18.88 69.82 32 104.73 32C555.82 224 640 192 640 128c0-45.22-39.1-97.3-148.58-120.81z"], + "shopping-bag": [448, 512, [], "f290", "M352 160v-32C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128v32H0v272c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V160h-96zm-192-32c0-35.29 28.71-64 64-64s64 28.71 64 64v32H160v-32zm160 120c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm-192 0c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24z"], + "shopping-basket": [576, 512, [], "f291", "M576 216v16c0 13.255-10.745 24-24 24h-8l-26.113 182.788C514.509 462.435 494.257 480 470.37 480H105.63c-23.887 0-44.139-17.565-47.518-41.212L32 256h-8c-13.255 0-24-10.745-24-24v-16c0-13.255 10.745-24 24-24h67.341l106.78-146.821c10.395-14.292 30.407-17.453 44.701-7.058 14.293 10.395 17.453 30.408 7.058 44.701L170.477 192h235.046L326.12 82.821c-10.395-14.292-7.234-34.306 7.059-44.701 14.291-10.395 34.306-7.235 44.701 7.058L484.659 192H552c13.255 0 24 10.745 24 24zM312 392V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm112 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm-224 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24z"], + "shopping-cart": [576, 512, [], "f07a", "M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z"], + "shower": [512, 512, [], "f2cc", "M389.66 135.6L231.6 293.66c-9.37 9.37-24.57 9.37-33.94 0l-11.32-11.32c-9.37-9.37-9.37-24.57 0-33.94l.11-.11c-34.03-40.21-35.16-98.94-3.39-140.38-11.97-7.55-26.14-11.91-41.3-11.91C98.88 96 64 130.88 64 173.76V480H0V173.76C0 95.59 63.59 32 141.76 32c36.93 0 70.61 14.2 95.86 37.42 35.9-11.51 76.5-4.5 106.67 21.03l.11-.11c9.37-9.37 24.57-9.37 33.94 0l11.32 11.32c9.37 9.37 9.37 24.57 0 33.94zM384 208c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm48-16c8.837 0 16 7.163 16 16s-7.163 16-16 16-16-7.163-16-16 7.163-16 16-16zm80 16c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-128 32c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-96 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm64 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16z"], + "shuttle-van": [640, 512, [], "f5b6", "M628.88 210.65L494.39 49.27A48.01 48.01 0 0 0 457.52 32H32C14.33 32 0 46.33 0 64v288c0 17.67 14.33 32 32 32h32c0 53.02 42.98 96 96 96s96-42.98 96-96h128c0 53.02 42.98 96 96 96s96-42.98 96-96h32c17.67 0 32-14.33 32-32V241.38c0-11.23-3.94-22.1-11.12-30.73zM64 192V96h96v96H64zm96 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm160-240h-96V96h96v96zm160 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm-96-240V96h66.02l80 96H384z"], + "sign": [512, 512, [], "f4d9", "M496 64H128V16c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16v48H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V128h368c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM160 384h320V160H160v224z"], + "sign-in-alt": [512, 512, [], "f2f6", "M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z"], + "sign-language": [448, 512, [], "f2a7", "M91.434 483.987c-.307-16.018 13.109-29.129 29.13-29.129h62.293v-5.714H56.993c-16.021 0-29.437-13.111-29.13-29.129C28.16 404.491 40.835 392 56.428 392h126.429v-5.714H29.136c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h154.286v-5.714H57.707c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h168.566l-31.085-22.606c-12.762-9.281-15.583-27.149-6.302-39.912 9.281-12.761 27.15-15.582 39.912-6.302l123.361 89.715a34.287 34.287 0 0 1 14.12 27.728v141.136c0 15.91-10.946 29.73-26.433 33.374l-80.471 18.934a137.16 137.16 0 0 1-31.411 3.646H120c-15.593-.001-28.269-12.492-28.566-28.014zm73.249-225.701h36.423l-11.187-8.136c-18.579-13.511-20.313-40.887-3.17-56.536l-13.004-16.7c-9.843-12.641-28.43-15.171-40.88-5.088-12.065 9.771-14.133 27.447-4.553 39.75l36.371 46.71zm283.298-2.103l-5.003-152.452c-.518-15.771-13.722-28.136-29.493-27.619-15.773.518-28.137 13.722-27.619 29.493l1.262 38.415L283.565 11.019c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l76.889 98.745-4.509 3.511-94.79-121.734c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l94.443 121.288-4.509 3.511-77.675-99.754c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l52.053 66.849c12.497-8.257 29.055-8.285 41.69.904l123.36 89.714c10.904 7.93 17.415 20.715 17.415 34.198v16.999l61.064-47.549a34.285 34.285 0 0 0 13.202-28.177z"], + "sign-out-alt": [512, 512, [], "f2f5", "M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"], + "signal": [640, 512, [], "f012", "M36 384h56c6.6 0 12 5.4 12 12v104c0 6.6-5.4 12-12 12H36c-6.6 0-12-5.4-12-12V396c0-6.6 5.4-12 12-12zm116-36v152c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V348c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-80v232c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V268c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-112v344c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V156c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zM536 12v488c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V12c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12z"], + "signature": [512, 512, [], "f5b7", "M496 320h-91.86c-9.27 0-19.72-11.31-25.78-28.52-15.23-43.36-48.11-70.3-85.8-70.3-30.84 0-58.47 18.05-76.11 49.23L194.8 106.5C188.84 81.08 169.34 64 146.28 64c-23.05 0-42.55 17.08-48.5 42.5L56.16 284.2C50.7 307.45 37.75 320 28.33 320H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h12.33c41.97 0 78.19-34.23 90.14-85.2l23.84-101.78 29.25 222.11c1.98 15.05 13.82 27.45 28.94 28.75.99.09 1.96.13 2.93.13 14.08 0 26.64-9.27 30.69-22.95l33.03-112.34c5.88-16.72 15.84-27.52 25.41-27.52 9.58 0 19.55 10.8 25.78 28.52 15.23 43.36 48.11 70.3 85.8 70.3H496c8.84 0 16-7.16 16-16v-32c0-8.86-7.16-16.02-16-16.02z"], + "sitemap": [640, 512, [], "f0e8", "M128 352H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm-24-80h192v48h48v-48h192v48h48v-57.59c0-21.17-17.23-38.41-38.41-38.41H344v-64h40c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H256c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h40v64H94.41C73.23 224 56 241.23 56 262.41V320h48v-48zm264 80h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm240 0h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"], + "skull": [512, 512, [], "f54c", "M256 0C114.6 0 0 100.3 0 224c0 70.1 36.9 132.6 94.5 173.7 9.6 6.9 15.2 18.1 13.5 29.9l-9.4 66.2c-1.4 9.6 6 18.2 15.7 18.2H192v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h64v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h77.7c9.7 0 17.1-8.6 15.7-18.2l-9.4-66.2c-1.7-11.7 3.8-23 13.5-29.9C475.1 356.6 512 294.1 512 224 512 100.3 397.4 0 256 0zm-96 320c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm192 0c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64z"], + "sliders-h": [512, 512, [], "f1de", "M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z"], + "smile": [496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.6-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.4-16.2 38.1 4.2 24.6 20.5z"], + "smile-beam": [496, 512, [], "f5b8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM112 223.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zm250.8 122.8C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.3 24.6 20.5zm6.2-118.3l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.6 8.6-11 11.9-15.1 4.5z"], + "smile-wink": [496, 512, [], "f4da", "M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm158.5 16.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.7 11.1-11.4 18.3-19.8 10.8l-9.7-8.5zM157.8 325.8C180.2 352.7 213 368 248 368s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.2 24.6 20.5C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11.2-36.7 24.6-20.4z"], + "smoking": [640, 512, [], "f48d", "M632 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8zM553.3 87.1c-5.7-3.8-9.3-10-9.3-16.8V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v62.3c0 22 10.2 43.4 28.6 55.4 42.2 27.3 67.4 73.8 67.4 124V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-65.5-32.4-126.2-86.7-162.6zM432 352H48c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h384c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zm-32 112H224v-64h176v64zm87.7-322.4C463.8 125 448 99.3 448 70.3V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v66.4c0 43.7 24.6 81.6 60.3 106.7 22.4 15.7 35.7 41.2 35.7 68.6V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-43.3-21-83.4-56.3-108.1zM536 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8z"], + "smoking-ban": [512, 512, [], "f54d", "M96 304c0 8.8 7.2 16 16 16h117.5l-96-96H112c-8.8 0-16 7.2-16 16v64zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 448c-105.9 0-192-86.1-192-192 0-41.4 13.3-79.7 35.7-111.1l267.4 267.4C335.7 434.7 297.4 448 256 448zm45.2-192H384v32h-50.8l-32-32zm111.1 111.1L365.2 320H400c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16H269.2L144.9 99.7C176.3 77.3 214.6 64 256 64c105.9 0 192 86.1 192 192 0 41.4-13.3 79.7-35.7 111.1zM320.6 128c-15.6 0-28.6-11.2-31.4-25.9-.7-3.6-4-6.1-7.7-6.1h-16.2c-5 0-8.7 4.5-8 9.4 4.6 30.9 31.2 54.6 63.3 54.6 15.6 0 28.6 11.2 31.4 25.9.7 3.6 4 6.1 7.7 6.1h16.2c5 0 8.7-4.5 8-9.4-4.6-30.9-31.2-54.6-63.3-54.6z"], + "snowflake": [448, 512, [], "f2dc", "M444.816 301.639a24.12 24.12 0 0 0 2.661-16.978c-2.725-12.966-15.339-21.245-28.174-18.492l-87.407 25.046L264 256l67.896-35.215 87.407 25.046c12.835 2.753 25.449-5.526 28.174-18.492 2.725-12.966-5.471-25.708-18.305-28.461l-47.477-7.137 53.077-30.956c11.363-6.627 15.257-21.306 8.696-32.785-6.561-11.479-21.091-15.412-32.454-8.785l-53.077 30.956 17.621-45.104c4.057-12.606-2.768-26.146-15.247-30.245-12.478-4.099-25.883 2.797-29.94 15.402l-22.232 88.99-60.38 35.215V144l65.175-63.945c8.778-9.852 7.987-25.027-1.766-33.894-9.753-8.867-24.775-8.068-33.552 1.784l-29.857 37.967V24c0-13.255-10.637-24-23.758-24s-23.758 10.745-23.758 24v61.912l-29.857-37.967c-8.779-9.852-23.799-10.652-33.552-1.784-9.753 8.867-10.543 24.042-1.766 33.894L200.242 144v70.431l-60.38-35.215-22.232-88.99c-4.057-12.605-17.462-19.501-29.94-15.402-12.478 4.099-19.304 17.64-15.247 30.245l17.62 45.104-53.077-30.956c-11.363-6.627-25.893-2.694-32.454 8.785s-2.667 26.157 8.696 32.785l53.077 30.956-47.477 7.137C5.993 201.634-2.203 214.375.523 227.341c2.725 12.965 15.339 21.245 28.174 18.492l87.407-25.046L184 256l-67.896 35.215-87.406-25.045c-12.835-2.753-25.449 5.526-28.174 18.492-2.725 12.967 5.47 25.708 18.305 28.461l47.477 7.137-53.077 30.956C1.866 357.843-2.027 372.521 4.533 384s21.091 15.412 32.454 8.785l53.077-30.956-17.62 45.104a24.157 24.157 0 0 0 2.022 19.428c2.831 4.953 7.416 8.909 13.224 10.816 12.478 4.099 25.883-2.797 29.94-15.402l22.232-88.99 60.38-35.215V368l-65.175 63.945c-8.778 9.852-7.987 25.027 1.766 33.894 9.754 8.868 24.774 8.068 33.552-1.784l29.857-37.967V488c0 13.255 10.637 24 23.758 24s23.758-10.745 23.758-24v-61.912l29.857 37.967A23.59 23.59 0 0 0 295.282 472a23.534 23.534 0 0 0 15.885-6.161c9.753-8.867 10.544-24.042 1.766-33.894L247.758 368v-70.431l60.38 35.215 22.232 88.99c4.057 12.605 17.462 19.501 29.94 15.402 12.479-4.099 19.304-17.64 15.247-30.245l-17.621-45.104 53.077 30.956c11.363 6.627 25.893 2.694 32.454-8.785s2.667-26.157-8.696-32.785l-53.077-30.956 47.477-7.137c6.86-1.469 12.394-5.793 15.645-11.481z"], + "solar-panel": [640, 512, [], "f5ba", "M431.98 448.01l-47.97.05V416h-128v32.21l-47.98.05c-8.82.01-15.97 7.16-15.98 15.99l-.05 31.73c-.01 8.85 7.17 16.03 16.02 16.02l223.96-.26c8.82-.01 15.97-7.16 15.98-15.98l.04-31.73c.01-8.85-7.17-16.03-16.02-16.02zM585.2 26.74C582.58 11.31 568.99 0 553.06 0H86.93C71 0 57.41 11.31 54.79 26.74-3.32 369.16.04 348.08.03 352c-.03 17.32 14.29 32 32.6 32h574.74c18.23 0 32.51-14.56 32.59-31.79.02-4.08 3.35 16.95-54.76-325.47zM259.83 64h120.33l9.77 96H250.06l9.77-96zm-75.17 256H71.09L90.1 208h105.97l-11.41 112zm16.29-160H98.24l16.29-96h96.19l-9.77 96zm32.82 160l11.4-112h149.65l11.4 112H233.77zm195.5-256h96.19l16.29 96H439.04l-9.77-96zm26.06 256l-11.4-112H549.9l19.01 112H455.33z"], + "sort": [320, 512, [], "f0dc", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z"], + "sort-alpha-down": [448, 512, [], "f15d", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zm119.075-180.007A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z"], + "sort-alpha-up": [448, 512, [], "f15e", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zm301.671 98.621A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z"], + "sort-amount-down": [512, 512, [], "f160", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z"], + "sort-amount-up": [512, 512, [], "f161", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z"], + "sort-down": [320, 512, [], "f0dd", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z"], + "sort-numeric-down": [448, 512, [], "f162", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM175.984 368H128V48c0-8.837-7.163-16-16-16H80c-8.837 0-16 7.163-16 16v320H16.019c-14.212 0-21.384 17.244-11.314 27.314l79.981 80.002c6.245 6.245 16.38 6.247 22.627 0l79.984-80.002c10.05-10.05 2.928-27.314-11.313-27.314z"], + "sort-numeric-up": [448, 512, [], "f163", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM16.016 144H64v320c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144h47.981c14.212 0 21.384-17.244 11.314-27.314l-79.981-80.002c-6.245-6.245-16.38-6.247-22.627 0L4.702 116.686C-5.347 126.736 1.775 144 16.016 144z"], + "sort-up": [320, 512, [], "f0de", "M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z"], + "spa": [576, 512, [], "f5bb", "M568.25 192c-29.04.13-135.01 6.16-213.84 83-33.12 29.63-53.36 63.3-66.41 94.86-13.05-31.56-33.29-65.23-66.41-94.86-78.83-76.84-184.8-82.87-213.84-83-4.41-.02-7.79 3.4-7.75 7.82.23 27.92 7.14 126.14 88.77 199.3C172.79 480.94 256 480 288 480s115.19.95 199.23-80.88c81.64-73.17 88.54-171.38 88.77-199.3.04-4.42-3.34-7.84-7.75-7.82zM287.98 302.6c12.82-18.85 27.6-35.78 44.09-50.52 19.09-18.61 39.58-33.3 60.26-45.18-16.44-70.5-51.72-133.05-96.73-172.22-4.11-3.58-11.02-3.58-15.14 0-44.99 39.14-80.27 101.63-96.74 172.07 20.37 11.7 40.5 26.14 59.22 44.39a282.768 282.768 0 0 1 45.04 51.46z"], + "space-shuttle": [640, 512, [], "f197", "M592.604 208.244C559.735 192.836 515.777 184 472 184H186.327c-4.952-6.555-10.585-11.978-16.72-16H376C229.157 137.747 219.403 32 96.003 32H96v128H80V32c-26.51 0-48 28.654-48 64v64c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v16c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v64c0 35.346 21.49 64 48 64V352h16v128h.003c123.4 0 133.154-105.747 279.997-136H169.606c6.135-4.022 11.768-9.445 16.72-16H472c43.777 0 87.735-8.836 120.604-24.244C622.282 289.845 640 271.992 640 256s-17.718-33.845-47.396-47.756zM488 296a8 8 0 0 1-8-8v-64a8 8 0 0 1 8-8c31.909 0 31.942 80 0 80z"], + "spinner": [512, 512, [], "f110", "M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z"], + "splotch": [512, 512, [], "f5bc", "M472.29 195.89l-67.06-22.95c-19.28-6.6-33.54-20.92-38.14-38.3L351.1 74.19c-11.58-43.77-76.57-57.13-109.98-22.62l-46.14 47.67c-13.26 13.71-33.54 20.93-54.2 19.31l-71.88-5.62c-52.05-4.07-86.93 44.88-59.03 82.83l38.54 52.42c11.08 15.07 12.82 33.86 4.64 50.24L24.62 355.4c-20.59 41.25 22.84 84.87 73.49 73.81l69.96-15.28c20.11-4.39 41.45 0 57.07 11.73l54.32 40.83c39.32 29.56 101.04 7.57 104.45-37.22l4.7-61.86c1.35-17.79 12.8-33.86 30.63-42.99l62-31.74c44.88-22.96 39.59-80.17-8.95-96.79z"], + "spray-can": [512, 512, [], "f5bd", "M224 32c0-17.67-14.33-32-32-32h-64c-17.67 0-32 14.33-32 32v96h128V32zm256 96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-256 32H96c-53.02 0-96 42.98-96 96v224c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V256c0-53.02-42.98-96-96-96zm-64 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zM480 96c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm-96 32c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-96-96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 0c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 192c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z"], + "square": [448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"], + "square-full": [512, 512, [], "f45c", "M512 512H0V0h512v512z"], + "stamp": [512, 512, [], "f5bf", "M32 512h448v-64H32v64zm384-256h-66.56c-16.26 0-29.44-13.18-29.44-29.44v-9.46c0-27.37 8.88-53.41 21.46-77.72 9.11-17.61 12.9-38.39 9.05-60.42-6.77-38.78-38.47-70.7-77.26-77.45C212.62-9.04 160 37.33 160 96c0 14.16 3.12 27.54 8.69 39.58C182.02 164.43 192 194.7 192 226.49v.07c0 16.26-13.18 29.44-29.44 29.44H96c-53.02 0-96 42.98-96 96v32c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-32c0-53.02-42.98-96-96-96z"], + "star": [576, 512, [], "f005", "M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z"], + "star-half": [576, 512, [], "f089", "M288 0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6V0z"], + "star-half-alt": [536, 512, [], "f5c0", "M508.55 171.51L362.18 150.2 296.77 17.81C290.89 5.98 279.42 0 267.95 0c-11.4 0-22.79 5.9-28.69 17.81l-65.43 132.38-146.38 21.29c-26.25 3.8-36.77 36.09-17.74 54.59l105.89 103-25.06 145.48C86.98 495.33 103.57 512 122.15 512c4.93 0 10-1.17 14.87-3.75l130.95-68.68 130.94 68.7c4.86 2.55 9.92 3.71 14.83 3.71 18.6 0 35.22-16.61 31.66-37.4l-25.03-145.49 105.91-102.98c19.04-18.5 8.52-50.8-17.73-54.6zm-121.74 123.2l-18.12 17.62 4.28 24.88 19.52 113.45-102.13-53.59-22.38-11.74.03-317.19 51.03 103.29 11.18 22.63 25.01 3.64 114.23 16.63-82.65 80.38z"], + "step-backward": [448, 512, [], "f048", "M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z"], + "step-forward": [448, 512, [], "f051", "M384 44v424c0 6.6-5.4 12-12 12h-48c-6.6 0-12-5.4-12-12V291.6l-195.5 181C95.9 489.7 64 475.4 64 448V64c0-27.4 31.9-41.7 52.5-24.6L312 219.3V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12z"], + "stethoscope": [512, 512, [], "f0f1", "M447.1 112c-34.2.5-62.3 28.4-63 62.6-.5 24.3 12.5 45.6 32 56.8V344c0 57.3-50.2 104-112 104-60 0-109.2-44.1-111.9-99.2C265 333.8 320 269.2 320 192V36.6c0-11.4-8.1-21.3-19.3-23.5L237.8.5c-13-2.6-25.6 5.8-28.2 18.8L206.4 35c-2.6 13 5.8 25.6 18.8 28.2l30.7 6.1v121.4c0 52.9-42.2 96.7-95.1 97.2-53.4.5-96.9-42.7-96.9-96V69.4l30.7-6.1c13-2.6 21.4-15.2 18.8-28.2l-3.1-15.7C107.7 6.4 95.1-2 82.1.6L19.3 13C8.1 15.3 0 25.1 0 36.6V192c0 77.3 55.1 142 128.1 156.8C130.7 439.2 208.6 512 304 512c97 0 176-75.4 176-168V231.4c19.1-11.1 32-31.7 32-55.4 0-35.7-29.2-64.5-64.9-64zm.9 80c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"], + "sticky-note": [448, 512, [], "f249", "M312 320h136V56c0-13.3-10.7-24-24-24H24C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h264V344c0-13.2 10.8-24 24-24zm129 55l-98 98c-4.5 4.5-10.6 7-17 7h-6V352h128v6.1c0 6.3-2.5 12.4-7 16.9z"], + "stop": [448, 512, [], "f04d", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"], + "stop-circle": [512, 512, [], "f28d", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z"], + "stopwatch": [448, 512, [], "f2f2", "M432 304c0 114.9-93.1 208-208 208S16 418.9 16 304c0-104 76.3-190.2 176-205.5V64h-28c-6.6 0-12-5.4-12-12V12c0-6.6 5.4-12 12-12h120c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-28v34.5c37.5 5.8 71.7 21.6 99.7 44.6l27.5-27.5c4.7-4.7 12.3-4.7 17 0l28.3 28.3c4.7 4.7 4.7 12.3 0 17l-29.4 29.4-.6.6C419.7 223.3 432 262.2 432 304zm-176 36V188.5c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12V340c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"], + "store": [616, 512, [], "f54e", "M602 118.6L537.1 15C531.3 5.7 521 0 510 0H106C95 0 84.7 5.7 78.9 15L14 118.6c-33.5 53.5-3.8 127.9 58.8 136.4 4.5.6 9.1.9 13.7.9 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18.1 20.1 44.3 33.1 73.8 33.1 4.7 0 9.2-.3 13.7-.9 62.8-8.4 92.6-82.8 59-136.4zM529.5 288c-10 0-19.9-1.5-29.5-3.8V384H116v-99.8c-9.6 2.2-19.5 3.8-29.5 3.8-6 0-12.1-.4-18-1.2-5.6-.8-11.1-2.1-16.4-3.6V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V283.2c-5.4 1.6-10.8 2.9-16.4 3.6-6.1.8-12.1 1.2-18.2 1.2z"], + "store-alt": [640, 512, [], "f54f", "M320 384H128V224H64v256c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V224h-64v160zm314.6-241.8l-85.3-128c-6-8.9-16-14.2-26.7-14.2H117.4c-10.7 0-20.7 5.3-26.6 14.2l-85.3 128c-14.2 21.3 1 49.8 26.6 49.8H608c25.5 0 40.7-28.5 26.6-49.8zM512 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h-64v272z"], + "stream": [512, 512, [], "f550", "M16 128h416c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H16C7.16 32 0 39.16 0 48v64c0 8.84 7.16 16 16 16zm480 80H80c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm-64 176H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16z"], + "street-view": [512, 512, [], "f21d", "M192 64c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zm112 80h-11.36c-22.711 10.443-49.59 10.894-73.28 0H208c-26.51 0-48 21.49-48 48v104c0 13.255 10.745 24 24 24h16v104c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V320h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48zm85.642 189.152a72.503 72.503 0 0 1-29.01 27.009C391.133 365.251 480 385.854 480 416c0 46.304-167.656 64-224 64-70.303 0-224-20.859-224-64 0-30.123 88.361-50.665 119.367-55.839a72.516 72.516 0 0 1-29.01-27.009C74.959 343.395 0 367.599 0 416c0 77.111 178.658 96 256 96 77.249 0 256-18.865 256-96 0-48.403-74.967-72.606-122.358-82.848z"], + "strikethrough": [512, 512, [], "f0cc", "M496 288H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h480c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16zm-214.666 16c27.258 12.937 46.524 28.683 46.524 56.243 0 33.108-28.977 53.676-75.621 53.676-32.325 0-76.874-12.08-76.874-44.271V368c0-8.837-7.164-16-16-16H113.75c-8.836 0-16 7.163-16 16v19.204c0 66.845 77.717 101.82 154.487 101.82 88.578 0 162.013-45.438 162.013-134.424 0-19.815-3.618-36.417-10.143-50.6H281.334zm-30.952-96c-32.422-13.505-56.836-28.946-56.836-59.683 0-33.92 30.901-47.406 64.962-47.406 42.647 0 64.962 16.593 64.962 32.985V136c0 8.837 7.164 16 16 16h45.613c8.836 0 16-7.163 16-16v-30.318c0-52.438-71.725-79.875-142.575-79.875-85.203 0-150.726 40.972-150.726 125.646 0 22.71 4.665 41.176 12.777 56.547h129.823z"], + "stroopwafel": [512, 512, [], "f551", "M188.12 210.74L142.86 256l45.25 45.25L233.37 256l-45.25-45.26zm113.13-22.62L256 142.86l-45.25 45.25L256 233.37l45.25-45.25zm-90.5 135.76L256 369.14l45.26-45.26L256 278.63l-45.25 45.25zM256 0C114.62 0 0 114.62 0 256s114.62 256 256 256 256-114.62 256-256S397.38 0 256 0zm186.68 295.6l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-28.29-28.29-45.25 45.25 33.94 33.94 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-33.94-33.94-45.26 45.26 28.29 28.29c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0L256 414.39l-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l28.29-28.29-45.25-45.26-33.94 33.94 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 33.94-33.94-45.25-45.25-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0L69.32 295.6c-3.12-3.12-3.12-8.19 0-11.31L97.61 256l-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l28.29 28.29 45.25-45.26-33.94-33.94-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 33.94 33.94 45.26-45.25-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0L256 97.61l28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-28.29 28.29 45.26 45.25 33.94-33.94-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-33.94 33.94 45.25 45.26 28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31L414.39 256l28.29 28.28a8.015 8.015 0 0 1 0 11.32zM278.63 256l45.26 45.25L369.14 256l-45.25-45.26L278.63 256z"], + "subscript": [512, 512, [], "f12c", "M395.198 416c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 256c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 96H16C7.163 96 0 88.837 0 80V48c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035A15.999 15.999 0 0 1 204.226 32H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 256H272z"], + "subway": [448, 512, [], "f239", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zM200 232V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm200 0V120c0-13.255-10.745-24-24-24H272c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm-48 56c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm-256 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"], + "suitcase": [512, 512, [], "f0f2", "M128 480h256V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v400zm64-384h128v32H192V96zm320 80v256c0 26.5-21.5 48-48 48h-48V128h48c26.5 0 48 21.5 48 48zM96 480H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h48v352z"], + "suitcase-rolling": [384, 512, [], "f5c1", "M336 160H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h16v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h128v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h16c26.51 0 48-21.49 48-48V208c0-26.51-21.49-48-48-48zm-16 216c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zM144 48h96v80h48V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v80h48V48z"], + "sun": [512, 512, [], "f185", "M274.835 12.646l25.516 62.393c4.213 10.301 16.671 14.349 26.134 8.492l57.316-35.479c15.49-9.588 34.808 4.447 30.475 22.142l-16.03 65.475c-2.647 10.81 5.053 21.408 16.152 22.231l67.224 4.987c18.167 1.348 25.546 24.057 11.641 35.826L441.81 242.26c-8.495 7.19-8.495 20.289 0 27.479l51.454 43.548c13.906 11.769 6.527 34.478-11.641 35.826l-67.224 4.987c-11.099.823-18.799 11.421-16.152 22.231l16.03 65.475c4.332 17.695-14.986 31.73-30.475 22.142l-57.316-35.479c-9.463-5.858-21.922-1.81-26.134 8.492l-25.516 62.393c-6.896 16.862-30.774 16.862-37.67 0l-25.516-62.393c-4.213-10.301-16.671-14.349-26.134-8.492l-57.317 35.479c-15.49 9.588-34.808-4.447-30.475-22.142l16.03-65.475c2.647-10.81-5.053-21.408-16.152-22.231l-67.224-4.987c-18.167-1.348-25.546-24.057-11.641-35.826L70.19 269.74c8.495-7.19 8.495-20.289 0-27.479l-51.454-43.548c-13.906-11.769-6.527-34.478 11.641-35.826l67.224-4.987c11.099-.823 18.799-11.421 16.152-22.231l-16.03-65.475c-4.332-17.695 14.986-31.73 30.475-22.142l57.317 35.479c9.463 5.858 21.921 1.81 26.134-8.492l25.516-62.393c6.896-16.861 30.774-16.861 37.67 0zM392 256c0-74.991-61.01-136-136-136-74.991 0-136 61.009-136 136s61.009 136 136 136c74.99 0 136-61.009 136-136zm-32 0c0 57.346-46.654 104-104 104s-104-46.654-104-104 46.654-104 104-104 104 46.654 104 104z"], + "superscript": [512, 512, [], "f12b", "M395.198 256c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 256H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035a16 16 0 0 1 13.598-7.567H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 416H272z"], + "surprise": [496, 512, [], "f5c2", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm112 208c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm80-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "swatchbook": [511, 512, [], "f5c3", "M479.06 320H372.29L186.15 506.51c-2.06 2.07-4.49 3.58-6.67 5.49h299.58c17.64 0 31.94-14.33 31.94-32V352c0-17.67-14.3-32-31.94-32zm-44.5-152.9l-90.33-90.51c-12.47-12.5-32.69-12.5-45.17 0l-75.5 75.65V416c0 2.96-.67 5.73-.87 8.64l211.87-212.28c12.47-12.5 12.47-32.77 0-45.26zM191.62 32c0-17.67-14.3-32-31.94-32H31.94C14.3 0 0 14.33 0 32v384c0 53.02 42.9 96 95.81 96s95.81-42.98 95.81-96V32zM95.81 440c-13.23 0-23.95-10.75-23.95-24 0-13.26 10.73-24 23.95-24s23.95 10.74 23.95 24c.01 13.25-10.72 24-23.95 24zm31.94-184H63.88v-64h63.88v64zm0-128H63.88V64h63.88v64z"], + "swimmer": [640, 512, [], "f5c4", "M189.61 310.58c3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c16.02-14.77 34.5-22.58 53.46-22.58h16.3c18.96 0 37.45 7.81 53.46 22.58 3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c14.86-13.71 31.88-21.12 49.39-22.16l-112.84-80.6 18-12.86c3.64-2.58 8.28-3.52 12.62-2.61l100.35 21.53c25.91 5.53 51.44-10.97 57-36.88 5.55-25.92-10.95-51.44-36.88-57L437.68 98.47c-30.73-6.58-63.02.12-88.56 18.38l-80.02 57.17c-10.38 7.39-19.36 16.44-26.72 26.94L173.75 299c5.47 3.23 10.82 6.93 15.86 11.58zM624 352h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 343.58 442.04 352 416 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 343.58 250.04 352 224 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 343.58 58.04 352 32 352H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-512-96c44.18 0 80-35.82 80-80s-35.82-80-80-80-80 35.82-80 80 35.82 80 80 80z"], + "swimming-pool": [640, 512, [], "f5c5", "M624 416h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 407.58 442.04 416 416 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 407.58 250.04 416 224 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 407.58 58.04 416 32 416H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-400-32v-96h192v96c19.12 0 30.86-6.16 34.39-9.42 9.17-8.46 19.2-14.34 29.61-18.07V128c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v96H224v-96c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v228.5c10.41 3.73 20.44 9.62 29.61 18.07 3.53 3.27 15.27 9.43 34.39 9.43z"], + "sync": [512, 512, [], "f021", "M440.935 12.574l3.966 82.766C399.416 41.904 331.674 8 256 8 134.813 8 33.933 94.924 12.296 209.824 10.908 217.193 16.604 224 24.103 224h49.084c5.57 0 10.377-3.842 11.676-9.259C103.407 137.408 172.931 80 256 80c60.893 0 114.512 30.856 146.104 77.801l-101.53-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12h-47.411c-6.853 0-12.315 5.729-11.987 12.574zM256 432c-60.895 0-114.517-30.858-146.109-77.805l101.868 4.871c6.845.327 12.573-5.134 12.573-11.986v-47.412c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12V500c0 6.627 5.373 12 12 12h47.385c6.863 0 12.328-5.745 11.985-12.599l-4.129-82.575C112.725 470.166 180.405 504 256 504c121.187 0 222.067-86.924 243.704-201.824 1.388-7.369-4.308-14.176-11.807-14.176h-49.084c-5.57 0-10.377 3.842-11.676 9.259C408.593 374.592 339.069 432 256 432z"], + "sync-alt": [512, 512, [], "f2f1", "M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z"], + "syringe": [512, 512, [], "f48e", "M201.5 174.8l55.7 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-55.7-55.8-45.3 45.3 55.8 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L111 265.2l-26.4 26.4c-17.3 17.3-25.6 41.1-23 65.4l7.1 63.6L2.3 487c-3.1 3.1-3.1 8.2 0 11.3l11.3 11.3c3.1 3.1 8.2 3.1 11.3 0l66.3-66.3 63.6 7.1c23.9 2.6 47.9-5.4 65.4-23l181.9-181.9-135.7-135.7-64.9 65zm308.2-93.3L430.5 2.3c-3.1-3.1-8.2-3.1-11.3 0l-11.3 11.3c-3.1 3.1-3.1 8.2 0 11.3l28.3 28.3-45.3 45.3-56.6-56.6-17-17c-3.1-3.1-8.2-3.1-11.3 0l-33.9 33.9c-3.1 3.1-3.1 8.2 0 11.3l17 17L424.8 223l17 17c3.1 3.1 8.2 3.1 11.3 0l33.9-34c3.1-3.1 3.1-8.2 0-11.3l-73.5-73.5 45.3-45.3 28.3 28.3c3.1 3.1 8.2 3.1 11.3 0l11.3-11.3c3.1-3.2 3.1-8.2 0-11.4z"], + "table": [512, 512, [], "f0ce", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64v-96h160v96zm0-160H64v-96h160v96zm224 160H288v-96h160v96zm0-160H288v-96h160v96z"], + "table-tennis": [512, 512, [], "f45d", "M496.2 296.5C527.7 218.7 512 126.2 449 63.1 365.1-21 229-21 145.1 63.1l-56 56.1 211.5 211.5c46.1-62.1 131.5-77.4 195.6-34.2zm-217.9 79.7L57.9 155.9c-27.3 45.3-21.7 105 17.3 144.1l34.5 34.6L6.7 424c-8.6 7.5-9.1 20.7-1 28.8l53.4 53.5c8 8.1 21.2 7.6 28.7-1L177.1 402l35.7 35.7c19.7 19.7 44.6 30.5 70.3 33.3-7.1-17-11-35.6-11-55.1-.1-13.8 2.5-27 6.2-39.7zM416 320c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96z"], + "tablet": [448, 512, [], "f10a", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "tablet-alt": [448, 512, [], "f3fa", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm176-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h328c6.6 0 12 5.4 12 12v312z"], + "tablets": [640, 512, [], "f490", "M160 192C78.9 192 12.5 250.5.1 326.7c-.8 4.8 3.3 9.3 8.3 9.3h303.3c5 0 9.1-4.5 8.3-9.3C307.5 250.5 241.1 192 160 192zm151.6 176H8.4c-5 0-9.1 4.5-8.3 9.3C12.5 453.5 78.9 512 160 512s147.5-58.5 159.9-134.7c.8-4.8-3.3-9.3-8.3-9.3zM593.4 46.6c-56.5-56.5-144.2-61.4-206.9-16-4 2.9-4.3 8.9-.8 12.3L597 254.3c3.5 3.5 9.5 3.2 12.3-.8 45.5-62.7 40.6-150.4-15.9-206.9zM363 65.7c-3.5-3.5-9.5-3.2-12.3.8-45.4 62.7-40.5 150.4 15.9 206.9 56.5 56.5 144.2 61.4 206.9 15.9 4-2.9 4.3-8.9.8-12.3L363 65.7z"], + "tachometer-alt": [576, 512, [], "f3fd", "M75.694 480a48.02 48.02 0 0 1-42.448-25.571C12.023 414.3 0 368.556 0 320 0 160.942 128.942 32 288 32s288 128.942 288 288c0 48.556-12.023 94.3-33.246 134.429A48.018 48.018 0 0 1 500.306 480H75.694zM512 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zM288 128c17.673 0 32-14.327 32-32 0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32zM64 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm65.608-158.392c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm316.784 0c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm-87.078 31.534c-12.627-4.04-26.133 2.92-30.173 15.544l-45.923 143.511C250.108 322.645 224 350.264 224 384c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64 0-19.773-8.971-37.447-23.061-49.187l45.919-143.498c4.039-12.625-2.92-26.133-15.544-30.173z"], + "tag": [512, 512, [], "f02b", "M0 252.118V48C0 21.49 21.49 0 48 0h204.118a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882L293.823 497.941c-18.745 18.745-49.137 18.745-67.882 0L14.059 286.059A48 48 0 0 1 0 252.118zM112 64c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"], + "tags": [640, 512, [], "f02c", "M497.941 225.941L286.059 14.059A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v204.118a48 48 0 0 0 14.059 33.941l211.882 211.882c18.744 18.745 49.136 18.746 67.882 0l204.118-204.118c18.745-18.745 18.745-49.137 0-67.882zM112 160c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm513.941 133.823L421.823 497.941c-18.745 18.745-49.137 18.745-67.882 0l-.36-.36L527.64 323.522c16.999-16.999 26.36-39.6 26.36-63.64s-9.362-46.641-26.36-63.64L331.397 0h48.721a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882z"], + "tape": [640, 512, [], "f4db", "M224 192c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm400 224H380.6c41.5-40.7 67.4-97.3 67.4-160 0-123.7-100.3-224-224-224S0 132.3 0 256s100.3 224 224 224h400c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400-64c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96z"], + "tasks": [512, 512, [], "f0ae", "M208 132h288c8.8 0 16-7.2 16-16V76c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zM64 368c-26.5 0-48.6 21.5-48.6 48s22.1 48 48.6 48 48-21.5 48-48-21.5-48-48-48zm92.5-299l-72.2 72.2-15.6 15.6c-4.7 4.7-12.9 4.7-17.6 0L3.5 109.4c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.3c4.7-4.7 12.3-4.7 17 0l17 16.5c4.6 4.7 4.6 12.3-.1 17zm0 159.6l-72.2 72.2-15.7 15.7c-4.7 4.7-12.9 4.7-17.6 0L3.5 269c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.7c4.7-4.7 12.3-4.7 17 0l17 17c4.6 4.6 4.6 12.2-.1 16.9z"], + "taxi": [512, 512, [], "f1ba", "M462 241.64l-22-84.84c-9.6-35.2-41.6-60.8-76.8-60.8H352V64c0-17.67-14.33-32-32-32H192c-17.67 0-32 14.33-32 32v32h-11.2c-35.2 0-67.2 25.6-76.8 60.8l-22 84.84C21.41 248.04 0 273.47 0 304v48c0 23.63 12.95 44.04 32 55.12V448c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-40.88c19.05-11.09 32-31.5 32-55.12v-48c0-30.53-21.41-55.96-50-62.36zM96 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm20.55-112l17.2-66.36c2.23-8.16 9.59-13.64 15.06-13.64h214.4c5.47 0 12.83 5.48 14.85 12.86L395.45 240h-278.9zM416 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "terminal": [640, 512, [], "f120", "M257.981 272.971L63.638 467.314c-9.373 9.373-24.569 9.373-33.941 0L7.029 444.647c-9.357-9.357-9.375-24.522-.04-33.901L161.011 256 6.99 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L257.981 239.03c9.373 9.372 9.373 24.568 0 33.941zM640 456v-32c0-13.255-10.745-24-24-24H312c-13.255 0-24 10.745-24 24v32c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z"], + "text-height": [576, 512, [], "f034", "M16 32h288c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96h-54.761v320H232c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H88c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm475.308 4.685l79.995 80.001C581.309 126.693 574.297 144 559.99 144H512v224h48c15.639 0 20.635 17.991 11.313 27.314l-79.995 80.001c-6.247 6.247-16.381 6.245-22.626 0l-79.995-80.001C378.691 385.307 385.703 368 400.01 368H448V144h-48c-15.639 0-20.635-17.991-11.313-27.314l79.995-80.001c6.247-6.248 16.381-6.245 22.626 0z"], + "text-width": [448, 512, [], "f035", "M16 32h416c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96H261.743v128H296c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H152c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm427.315 340.682l-80.001-79.995C353.991 283.365 336 288.362 336 304v48H112v-47.99c0-14.307-17.307-21.319-27.314-11.313L4.685 372.692c-6.245 6.245-6.247 16.379 0 22.626l80.001 79.995C94.009 484.635 112 479.638 112 464v-48h224v47.99c0 14.307 17.307 21.319 27.314 11.313l80.001-79.995c6.245-6.245 6.248-16.379 0-22.626z"], + "th": [512, 512, [], "f00a", "M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z"], + "th-large": [512, 512, [], "f009", "M296 32h192c13.255 0 24 10.745 24 24v160c0 13.255-10.745 24-24 24H296c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24zm-80 0H24C10.745 32 0 42.745 0 56v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zM0 296v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm296 184h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H296c-13.255 0-24 10.745-24 24v160c0 13.255 10.745 24 24 24z"], + "th-list": [512, 512, [], "f00b", "M149.333 216v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zM125.333 32H24C10.745 32 0 42.745 0 56v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zm80 448H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm-24-424v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24zm24 264H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24z"], + "thermometer": [512, 512, [], "f491", "M476.8 20.4c-37.5-30.7-95.5-26.3-131.9 10.2l-45.7 46 50.5 50.5c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.4-50.5-45.1 45.4 50.3 50.4c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L209 167.4l-45.1 45.4L214 263c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.1-50.2L96 281.1V382L7 471c-9.4 9.4-9.4 24.6 0 33.9 9.4 9.4 24.6 9.4 33.9 0l89-89h99.9L484 162.6c34.9-34.9 42.2-101.5-7.2-142.2z"], + "thermometer-empty": [256, 512, [], "f2cb", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"], + "thermometer-full": [256, 512, [], "f2c7", "M224 96c0-53.019-42.981-96-96-96S32 42.981 32 96v203.347C12.225 321.756.166 351.136.002 383.333c-.359 70.303 56.787 128.176 127.089 128.664.299.002.61.003.909.003 70.698 0 128-57.304 128-128 0-32.459-12.088-62.09-32-84.653V96zm-96 368l-.576-.002c-43.86-.304-79.647-36.544-79.423-80.42.173-33.98 19.266-51.652 31.999-66.08V96c0-26.467 21.533-48 48-48s48 21.533 48 48v221.498c12.63 14.312 32 32.164 32 66.502 0 44.112-35.888 80-80 80zm64-80c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V96c0-17.673 14.327-32 32-32s32 14.327 32 32v232.583c19.124 11.068 32 31.732 32 55.417z"], + "thermometer-half": [256, 512, [], "f2c9", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V224c0-17.673 14.327-32 32-32s32 14.327 32 32v104.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"], + "thermometer-quarter": [256, 512, [], "f2ca", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V288c0-17.673 14.327-32 32-32s32 14.327 32 32v40.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"], + "thermometer-three-quarters": [256, 512, [], "f2c8", "M192 384c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-23.685 12.876-44.349 32-55.417V160c0-17.673 14.327-32 32-32s32 14.327 32 32v168.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"], + "thumbs-down": [512, 512, [], "f165", "M0 56v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56zm40 200c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24zm272 256c-20.183 0-29.485-39.293-33.931-57.795-5.206-21.666-10.589-44.07-25.393-58.902-32.469-32.524-49.503-73.967-89.117-113.111a11.98 11.98 0 0 1-3.558-8.521V59.901c0-6.541 5.243-11.878 11.783-11.998 15.831-.29 36.694-9.079 52.651-16.178C256.189 17.598 295.709.017 343.995 0h2.844c42.777 0 93.363.413 113.774 29.737 8.392 12.057 10.446 27.034 6.148 44.632 16.312 17.053 25.063 48.863 16.382 74.757 17.544 23.432 19.143 56.132 9.308 79.469l.11.11c11.893 11.949 19.523 31.259 19.439 49.197-.156 30.352-26.157 58.098-59.553 58.098H350.723C358.03 364.34 384 388.132 384 430.548 384 504 336 512 312 512z"], + "thumbs-up": [512, 512, [], "f164", "M104 224H24c-13.255 0-24 10.745-24 24v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V248c0-13.255-10.745-24-24-24zM64 472c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zM384 81.452c0 42.416-25.97 66.208-33.277 94.548h101.723c33.397 0 59.397 27.746 59.553 58.098.084 17.938-7.546 37.249-19.439 49.197l-.11.11c9.836 23.337 8.237 56.037-9.308 79.469 8.681 25.895-.069 57.704-16.382 74.757 4.298 17.598 2.244 32.575-6.148 44.632C440.202 511.587 389.616 512 346.839 512l-2.845-.001c-48.287-.017-87.806-17.598-119.56-31.725-15.957-7.099-36.821-15.887-52.651-16.178-6.54-.12-11.783-5.457-11.783-11.998v-213.77c0-3.2 1.282-6.271 3.558-8.521 39.614-39.144 56.648-80.587 89.117-113.111 14.804-14.832 20.188-37.236 25.393-58.902C282.515 39.293 291.817 0 312 0c24 0 72 8 72 81.452z"], + "thumbtack": [384, 512, [], "f08d", "M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z"], + "ticket-alt": [576, 512, [], "f3ff", "M128 160h320v192H128V160zm400 96c0 26.51 21.49 48 48 48v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c26.51 0 48-21.49 48-48s-21.49-48-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v96c-26.51 0-48 21.49-48 48zm-48-104c0-13.255-10.745-24-24-24H120c-13.255 0-24 10.745-24 24v208c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V152z"], + "times": [352, 512, [], "f00d", "M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"], + "times-circle": [512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z"], + "tint": [352, 512, [], "f043", "M205.22 22.09c-7.94-28.78-49.44-30.12-58.44 0C100.01 179.85 0 222.72 0 333.91 0 432.35 78.72 512 176 512s176-79.65 176-178.09c0-111.75-99.79-153.34-146.78-311.82zM176 448c-61.75 0-112-50.25-112-112 0-8.84 7.16-16 16-16s16 7.16 16 16c0 44.11 35.89 80 80 80 8.84 0 16 7.16 16 16s-7.16 16-16 16z"], + "tint-slash": [640, 512, [], "f5c7", "M633.82 458.1L494.97 350.78c.52-5.57 1.03-11.16 1.03-16.87 0-111.76-99.79-153.34-146.78-311.82-7.94-28.78-49.44-30.12-58.44 0-15.52 52.34-36.87 91.96-58.49 125.68L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM144 333.91C144 432.35 222.72 512 320 512c44.71 0 85.37-16.96 116.4-44.7L162.72 255.78c-11.41 23.5-18.72 48.35-18.72 78.13z"], + "tired": [496, 512, [], "f5c8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 288c51.9 0 115.3 43.8 123.2 106.7 1.7 13.6-8 24.6-17.7 20.4-25.9-11.1-64.4-17.4-105.5-17.4s-79.6 6.3-105.5 17.4c-9.8 4.2-19.4-7-17.7-20.4C132.7 331.8 196.1 288 248 288z"], + "toggle-off": [576, 512, [], "f204", "M384 64H192C85.961 64 0 149.961 0 256s85.961 192 192 192h192c106.039 0 192-85.961 192-192S490.039 64 384 64zM64 256c0-70.741 57.249-128 128-128 70.741 0 128 57.249 128 128 0 70.741-57.249 128-128 128-70.741 0-128-57.249-128-128zm320 128h-48.905c65.217-72.858 65.236-183.12 0-256H384c70.741 0 128 57.249 128 128 0 70.74-57.249 128-128 128z"], + "toggle-on": [576, 512, [], "f205", "M576 256c0 106.039-85.961 192-192 192H192C85.961 448 0 362.039 0 256S85.961 64 192 64h192c106.039 0 192 85.961 192 192zM384 128c-70.741 0-128 57.249-128 128 0 70.741 57.249 128 128 128 70.741 0 128-57.249 128-128 0-70.741-57.249-128-128-128"], + "toolbox": [512, 512, [], "f552", "M502.63 214.63l-45.25-45.25c-6-6-14.14-9.37-22.63-9.37H384V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v80H77.25c-8.49 0-16.62 3.37-22.63 9.37L9.37 214.63c-6 6-9.37 14.14-9.37 22.63V320h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-82.75c0-8.48-3.37-16.62-9.37-22.62zM320 160H192V96h128v64zm64 208c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H192v16c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H0v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96H384v16z"], + "tooth": [448, 512, [], "f5c9", "M443.98 96.25c-11.01-45.22-47.11-82.06-92.01-93.72-32.19-8.36-63 5.1-89.14 24.33-3.25 2.39-6.96 3.73-10.5 5.48l28.32 18.21c7.42 4.77 9.58 14.67 4.8 22.11-4.46 6.95-14.27 9.86-22.11 4.8L162.83 12.84c-20.7-10.85-43.38-16.4-66.81-10.31-44.9 11.67-81 48.5-92.01 93.72-10.13 41.62-.42 80.81 21.5 110.43 23.36 31.57 32.68 68.66 36.29 107.35 4.4 47.16 10.33 94.16 20.94 140.32l7.8 33.95c3.19 13.87 15.49 23.7 29.67 23.7 13.97 0 26.15-9.55 29.54-23.16l34.47-138.42c4.56-18.32 20.96-31.16 39.76-31.16s35.2 12.85 39.76 31.16l34.47 138.42c3.39 13.61 15.57 23.16 29.54 23.16 14.18 0 26.48-9.83 29.67-23.7l7.8-33.95c10.61-46.15 16.53-93.16 20.94-140.32 3.61-38.7 12.93-75.78 36.29-107.35 21.95-29.61 31.66-68.8 21.53-110.43z"], + "trademark": [640, 512, [], "f25c", "M97.119 163.133H12c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h248.559c6.627 0 12 5.373 12 12v43.133c0 6.627-5.373 12-12 12H175.44V404c0 6.627-5.373 12-12 12h-54.322c-6.627 0-12-5.373-12-12V163.133zM329.825 96h65.425a12 12 0 0 1 11.346 8.093l43.759 127.068c7.161 20.588 16.111 52.812 16.111 52.812h.896s8.95-32.224 16.111-52.812l43.758-127.068A12 12 0 0 1 538.577 96h65.41a12 12 0 0 1 11.961 11.03l24.012 296c.567 6.987-4.951 12.97-11.961 12.97h-54.101a12 12 0 0 1-11.972-11.182l-9.082-132.93c-1.79-24.168 0-53.706 0-53.706h-.896s-10.741 33.566-17.902 53.706l-30.7 84.731a12 12 0 0 1-11.282 7.912h-50.302a12 12 0 0 1-11.282-7.912l-30.7-84.731c-7.161-20.14-17.903-53.706-17.903-53.706h-.895s1.79 29.538 0 53.706l-9.082 132.93c-.428 6.295-5.66 11.182-11.97 11.182H305.4c-7.017 0-12.536-5.994-11.959-12.987l24.425-296A11.999 11.999 0 0 1 329.825 96z"], + "train": [448, 512, [], "f238", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zm-48 136V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24zm-176 64c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56z"], + "transgender": [384, 512, [], "f224", "M372 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C198.5 104.1 172.2 96 144 96 64.5 96 0 160.5 0 240c0 68.5 47.9 125.9 112 140.4V408H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM144 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"], + "transgender-alt": [480, 512, [], "f225", "M468 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C294.5 104.1 268.2 96 240 96c-28.2 0-54.5 8.1-76.7 22.1l-16.5-16.5 19.8-19.8c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0l-19.8 19.8-19-19 16.9-16.9C107.1 12.9 101.7 0 91 0H12C5.4 0 0 5.4 0 12v79c0 10.7 12.9 16 20.5 8.5l16.9-16.9 19 19-19.8 19.8c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l19.8-19.8 16.5 16.5C104.1 185.5 96 211.8 96 240c0 68.5 47.9 125.9 112 140.4V408h-36c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM240 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"], + "trash": [448, 512, [], "f1f8", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm415.2 56.7L394.8 467c-1.6 25.3-22.6 45-47.9 45H101.1c-25.3 0-46.3-19.7-47.9-45L32.8 140.7c-.4-6.9 5.1-12.7 12-12.7h358.5c6.8 0 12.3 5.8 11.9 12.7z"], + "trash-alt": [448, 512, [], "f2ed", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm416 56v324c0 26.5-21.5 48-48 48H80c-26.5 0-48-21.5-48-48V140c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12zm-272 68c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208z"], + "tree": [384, 512, [], "f1bb", "M377.33 375.429L293.906 288H328c21.017 0 31.872-25.207 17.448-40.479L262.79 160H296c20.878 0 31.851-24.969 17.587-40.331l-104-112.003c-9.485-10.214-25.676-10.229-35.174 0l-104 112.003C56.206 134.969 67.037 160 88 160h33.21l-82.659 87.521C24.121 262.801 34.993 288 56 288h34.094L6.665 375.429C-7.869 390.655 2.925 416 24.025 416H144c0 32.781-11.188 49.26-33.995 67.506C98.225 492.93 104.914 512 120 512h144c15.086 0 21.776-19.069 9.995-28.494-19.768-15.814-33.992-31.665-33.995-67.496V416h119.97c21.05 0 31.929-25.309 17.36-40.571z"], + "trophy": [576, 512, [], "f091", "M552 64H448V24c0-13.3-10.7-24-24-24H152c-13.3 0-24 10.7-24 24v40H24C10.7 64 0 74.7 0 88v56c0 35.7 22.5 72.4 61.9 100.7 31.5 22.7 69.8 37.1 110 41.7C203.3 338.5 240 360 240 360v72h-48c-35.3 0-64 20.7-64 56v12c0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12v-12c0-35.3-28.7-56-64-56h-48v-72s36.7-21.5 68.1-73.6c40.3-4.6 78.6-19 110-41.7 39.3-28.3 61.9-65 61.9-100.7V88c0-13.3-10.7-24-24-24zM99.3 192.8C74.9 175.2 64 155.6 64 144v-16h64.2c1 32.6 5.8 61.2 12.8 86.2-15.1-5.2-29.2-12.4-41.7-21.4zM512 144c0 16.1-17.7 36.1-35.3 48.8-12.5 9-26.7 16.2-41.8 21.4 7-25 11.8-53.6 12.8-86.2H512v16z"], + "truck": [640, 512, [], "f0d1", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"], + "truck-loading": [640, 512, [], "f4de", "M50.2 375.6c2.3 8.5 11.1 13.6 19.6 11.3l216.4-58c8.5-2.3 13.6-11.1 11.3-19.6l-49.7-185.5c-2.3-8.5-11.1-13.6-19.6-11.3L151 133.3l24.8 92.7-61.8 16.5-24.8-92.7-77.3 20.7C3.4 172.8-1.7 181.6.6 190.1l49.6 185.5zM384 0c-17.7 0-32 14.3-32 32v323.6L5.9 450c-4.3 1.2-6.8 5.6-5.6 9.8l12.6 46.3c1.2 4.3 5.6 6.8 9.8 5.6l393.7-107.4C418.8 464.1 467.6 512 528 512c61.9 0 112-50.1 112-112V0H384zm144 448c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"], + "truck-moving": [640, 512, [], "f4df", "M621.3 237.3l-58.5-58.5c-12-12-28.3-18.7-45.3-18.7H480V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v336c0 44.2 35.8 80 80 80 26.3 0 49.4-12.9 64-32.4 14.6 19.6 37.7 32.4 64 32.4 44.2 0 80-35.8 80-80 0-5.5-.6-10.8-1.6-16h163.2c-1.1 5.2-1.6 10.5-1.6 16 0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H624c8.8 0 16-7.2 16-16v-85.5c0-17-6.7-33.2-18.7-45.2zM80 432c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm128 0c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm272-224h37.5c4.3 0 8.3 1.7 11.3 4.7l43.3 43.3H480v-48zm48 224c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32z"], + "tshirt": [640, 512, [], "f553", "M631.2 96.5L436.5 0C416.4 27.8 371.9 47.2 320 47.2S223.6 27.8 203.5 0L8.8 96.5c-7.9 4-11.1 13.6-7.2 21.5l57.2 114.5c4 7.9 13.6 11.1 21.5 7.2l56.6-27.7c10.6-5.2 23 2.5 23 14.4V480c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V226.3c0-11.8 12.4-19.6 23-14.4l56.6 27.7c7.9 4 17.5.8 21.5-7.2L638.3 118c4-7.9.8-17.6-7.1-21.5z"], + "tty": [512, 512, [], "f1e4", "M5.37 103.822c138.532-138.532 362.936-138.326 501.262 0 6.078 6.078 7.074 15.496 2.583 22.681l-43.214 69.138a18.332 18.332 0 0 1-22.356 7.305l-86.422-34.569a18.335 18.335 0 0 1-11.434-18.846L351.741 90c-62.145-22.454-130.636-21.986-191.483 0l5.953 59.532a18.331 18.331 0 0 1-11.434 18.846l-86.423 34.568a18.334 18.334 0 0 1-22.356-7.305L2.787 126.502a18.333 18.333 0 0 1 2.583-22.68zM96 308v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H92c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zM96 500v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H140c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"], + "tv": [640, 512, [], "f26c", "M592 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h245.1v32h-160c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32-14.3 32-32s-14.3-32-32-32h-160v-32H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h512v288z"], + "umbrella": [576, 512, [], "f0e9", "M557.011 267.631c-51.432-45.217-107.572-43.698-158.567 30.731-5.298 7.861-14.906 7.165-19.736 0-2.483-3.624-32.218-60.808-90.708-60.808-45.766 0-70.542 31.378-90.709 60.808-4.829 7.165-14.436 7.861-19.734 0-50.904-74.285-106.613-76.406-158.567-30.731-10.21 8.264-20.912-1.109-18.696-9.481C32.146 134.573 158.516 64.612 288.001 64.612c128.793 0 256.546 69.961 287.706 193.538 2.206 8.322-8.426 17.793-18.696 9.481zM256 261.001V416c0 17.645-14.355 32-32 32s-32-14.355-32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 52.935 43.065 96 96 96s96-43.065 96-96V261.288c-21.836-10.806-45.425-9.737-64-.287zm64-211.007V32c0-17.673-14.327-32-32-32s-32 14.327-32 32v17.987a372.105 372.105 0 0 1 64 .007z"], + "umbrella-beach": [640, 512, [], "f5ca", "M115.38 136.9l102.11 37.18c35.19-81.54 86.21-144.29 139-173.7-95.88-4.89-188.78 36.96-248.53 111.8-6.69 8.4-2.66 21.05 7.42 24.72zm132.25 48.16l238.48 86.83c35.76-121.38 18.7-231.66-42.63-253.98-7.4-2.7-15.13-4-23.09-4-58.02.01-128.27 69.17-172.76 171.15zM521.48 60.5c6.22 16.3 10.83 34.6 13.2 55.19 5.74 49.89-1.42 108.23-18.95 166.98l102.62 37.36c10.09 3.67 21.31-3.43 21.57-14.17 2.32-95.69-41.91-187.44-118.44-245.36zM560 447.98H321.06L386 269.5l-60.14-21.9-72.9 200.37H16c-8.84 0-16 7.16-16 16.01v32.01C0 504.83 7.16 512 16 512h544c8.84 0 16-7.17 16-16.01v-32.01c0-8.84-7.16-16-16-16z"], + "underline": [448, 512, [], "f0cd", "M224.264 388.24c-91.669 0-156.603-51.165-156.603-151.392V64H39.37c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h137.39c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.813v172.848c0 53.699 28.314 79.444 76.317 79.444 46.966 0 75.796-25.434 75.796-79.965V64h-28.291c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h136.868c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.291v172.848c0 99.405-64.881 151.392-156.082 151.392zM16 448h416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16z"], + "undo": [512, 512, [], "f0e2", "M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z"], + "undo-alt": [512, 512, [], "f2ea", "M255.545 8c-66.269.119-126.438 26.233-170.86 68.685L48.971 40.971C33.851 25.851 8 36.559 8 57.941V192c0 13.255 10.745 24 24 24h134.059c21.382 0 32.09-25.851 16.971-40.971l-41.75-41.75c30.864-28.899 70.801-44.907 113.23-45.273 92.398-.798 170.283 73.977 169.484 169.442C423.236 348.009 349.816 424 256 424c-41.127 0-79.997-14.678-110.63-41.556-4.743-4.161-11.906-3.908-16.368.553L89.34 422.659c-4.872 4.872-4.631 12.815.482 17.433C133.798 479.813 192.074 504 256 504c136.966 0 247.999-111.033 248-247.998C504.001 119.193 392.354 7.755 255.545 8z"], + "universal-access": [512, 512, [], "f29a", "M256 48c114.953 0 208 93.029 208 208 0 114.953-93.029 208-208 208-114.953 0-208-93.029-208-208 0-114.953 93.029-208 208-208m0-40C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 56C149.961 64 64 149.961 64 256s85.961 192 192 192 192-85.961 192-192S362.039 64 256 64zm0 44c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36zm117.741 98.023c-28.712 6.779-55.511 12.748-82.14 15.807.851 101.023 12.306 123.052 25.037 155.621 3.617 9.26-.957 19.698-10.217 23.315-9.261 3.617-19.699-.957-23.316-10.217-8.705-22.308-17.086-40.636-22.261-78.549h-9.686c-5.167 37.851-13.534 56.208-22.262 78.549-3.615 9.255-14.05 13.836-23.315 10.217-9.26-3.617-13.834-14.056-10.217-23.315 12.713-32.541 24.185-54.541 25.037-155.621-26.629-3.058-53.428-9.027-82.141-15.807-8.6-2.031-13.926-10.648-11.895-19.249s10.647-13.926 19.249-11.895c96.686 22.829 124.283 22.783 220.775 0 8.599-2.03 17.218 3.294 19.249 11.895 2.029 8.601-3.297 17.219-11.897 19.249z"], + "university": [512, 512, [], "f19c", "M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z"], + "unlink": [512, 512, [], "f127", "M304.083 405.907c4.686 4.686 4.686 12.284 0 16.971l-44.674 44.674c-59.263 59.262-155.693 59.266-214.961 0-59.264-59.265-59.264-155.696 0-214.96l44.675-44.675c4.686-4.686 12.284-4.686 16.971 0l39.598 39.598c4.686 4.686 4.686 12.284 0 16.971l-44.675 44.674c-28.072 28.073-28.072 73.75 0 101.823 28.072 28.072 73.75 28.073 101.824 0l44.674-44.674c4.686-4.686 12.284-4.686 16.971 0l39.597 39.598zm-56.568-260.216c4.686 4.686 12.284 4.686 16.971 0l44.674-44.674c28.072-28.075 73.75-28.073 101.824 0 28.072 28.073 28.072 73.75 0 101.823l-44.675 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.598 39.598c4.686 4.686 12.284 4.686 16.971 0l44.675-44.675c59.265-59.265 59.265-155.695 0-214.96-59.266-59.264-155.695-59.264-214.961 0l-44.674 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.597 39.598zm234.828 359.28l22.627-22.627c9.373-9.373 9.373-24.569 0-33.941L63.598 7.029c-9.373-9.373-24.569-9.373-33.941 0L7.029 29.657c-9.373 9.373-9.373 24.569 0 33.941l441.373 441.373c9.373 9.372 24.569 9.372 33.941 0z"], + "unlock": [448, 512, [], "f09c", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z"], + "unlock-alt": [448, 512, [], "f13e", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zM264 408c0 22.1-17.9 40-40 40s-40-17.9-40-40v-48c0-22.1 17.9-40 40-40s40 17.9 40 40v48z"], + "upload": [512, 512, [], "f093", "M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"], + "user": [448, 512, [], "f007", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"], + "user-alt": [512, 512, [], "f406", "M256 288c79.5 0 144-64.5 144-144S335.5 0 256 0 112 64.5 112 144s64.5 144 144 144zm128 32h-55.1c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16H128C57.3 320 0 377.3 0 448v16c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-16c0-70.7-57.3-128-128-128z"], + "user-alt-slash": [640, 512, [], "f4fa", "M633.8 458.1L389.6 269.3C433.8 244.7 464 198.1 464 144 464 64.5 399.5 0 320 0c-67.1 0-123 46.1-139 108.2L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM198.4 320C124.2 320 64 380.2 64 454.4v9.6c0 26.5 21.5 48 48 48h382.2L245.8 320h-47.4z"], + "user-astronaut": [448, 512, [], "f4fb", "M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z"], + "user-check": [640, 512, [], "f4fc", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4zm323-128.4l-27.8-28.1c-4.6-4.7-12.1-4.7-16.8-.1l-104.8 104-45.5-45.8c-4.6-4.7-12.1-4.7-16.8-.1l-28.1 27.9c-4.7 4.6-4.7 12.1-.1 16.8l81.7 82.3c4.6 4.7 12.1 4.7 16.8.1l141.3-140.2c4.6-4.7 4.7-12.2.1-16.8z"], + "user-circle": [496, 512, [], "f2bd", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 96c48.6 0 88 39.4 88 88s-39.4 88-88 88-88-39.4-88-88 39.4-88 88-88zm0 344c-58.7 0-111.3-26.6-146.5-68.2 18.8-35.4 55.6-59.8 98.5-59.8 2.4 0 4.8.4 7.1 1.1 13 4.2 26.6 6.9 40.9 6.9 14.3 0 28-2.7 40.9-6.9 2.3-.7 4.7-1.1 7.1-1.1 42.9 0 79.7 24.4 98.5 59.8C359.3 421.4 306.7 448 248 448z"], + "user-clock": [640, 512, [], "f4fd", "M496 224c-79.6 0-144 64.4-144 144s64.4 144 144 144 144-64.4 144-144-64.4-144-144-144zm64 150.3c0 5.3-4.4 9.7-9.7 9.7h-60.6c-5.3 0-9.7-4.4-9.7-9.7v-76.6c0-5.3 4.4-9.7 9.7-9.7h12.6c5.3 0 9.7 4.4 9.7 9.7V352h38.3c5.3 0 9.7 4.4 9.7 9.7v12.6zM320 368c0-27.8 6.7-54.1 18.2-77.5-8-1.5-16.2-2.5-24.6-2.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h347.1c-45.3-31.9-75.1-84.5-75.1-144zm-96-112c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128z"], + "user-cog": [640, 512, [], "f4fe", "M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z"], + "user-edit": [640, 512, [], "f4ff", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h274.9c-2.4-6.8-3.4-14-2.6-21.3l6.8-60.9 1.2-11.1 7.9-7.9 77.3-77.3c-24.5-27.7-60-45.5-99.9-45.5zm45.3 145.3l-6.8 61c-1.1 10.2 7.5 18.8 17.6 17.6l60.9-6.8 137.9-137.9-71.7-71.7-137.9 137.8zM633 268.9L595.1 231c-9.3-9.3-24.5-9.3-33.8 0l-37.8 37.8-4.1 4.1 71.8 71.7 41.8-41.8c9.3-9.4 9.3-24.5 0-33.9z"], + "user-friends": [640, 512, [], "f500", "M192 256c61.9 0 112-50.1 112-112S253.9 32 192 32 80 82.1 80 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C51.6 288 0 339.6 0 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zM480 256c53 0 96-43 96-96s-43-96-96-96-96 43-96 96 43 96 96 96zm48 32h-3.8c-13.9 4.8-28.6 8-44.2 8s-30.3-3.2-44.2-8H432c-20.4 0-39.2 5.9-55.7 15.4 24.4 26.3 39.7 61.2 39.7 99.8v38.4c0 2.2-.5 4.3-.6 6.4H592c26.5 0 48-21.5 48-48 0-61.9-50.1-112-112-112z"], + "user-graduate": [448, 512, [], "f501", "M319.4 320.6L224 416l-95.4-95.4C57.1 323.7 0 382.2 0 454.4v9.6c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-9.6c0-72.2-57.1-130.7-128.6-133.8zM13.6 79.8l6.4 1.5v58.4c-7 4.2-12 11.5-12 20.3 0 8.4 4.6 15.4 11.1 19.7L3.5 242c-1.7 6.9 2.1 14 7.6 14h41.8c5.5 0 9.3-7.1 7.6-14l-15.6-62.3C51.4 175.4 56 168.4 56 160c0-8.8-5-16.1-12-20.3V87.1l66 15.9c-8.6 17.2-14 36.4-14 57 0 70.7 57.3 128 128 128s128-57.3 128-128c0-20.6-5.3-39.8-14-57l96.3-23.2c18.2-4.4 18.2-27.1 0-31.5l-190.4-46c-13-3.1-26.7-3.1-39.7 0L13.6 48.2c-18.1 4.4-18.1 27.2 0 31.6z"], + "user-lock": [640, 512, [], "f502", "M320 320c0-11.1 3.1-21.4 8.1-30.5-4.8-.5-9.5-1.5-14.5-1.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h280.9c-5.5-9.5-8.9-20.3-8.9-32V320zm-96-64c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm384 32h-32v-48c0-44.2-35.8-80-80-80s-80 35.8-80 80v48h-32c-17.7 0-32 14.3-32 32v160c0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32V320c0-17.7-14.3-32-32-32zm-80 0h-64v-48c0-17.6 14.4-32 32-32s32 14.4 32 32v48z"], + "user-md": [448, 512, [], "f0f0", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zM104 424c0 13.3 10.7 24 24 24s24-10.7 24-24-10.7-24-24-24-24 10.7-24 24zm216-135.4v49c36.5 7.4 64 39.8 64 78.4v41.7c0 7.6-5.4 14.2-12.9 15.7l-32.2 6.4c-4.3.9-8.5-1.9-9.4-6.3l-3.1-15.7c-.9-4.3 1.9-8.6 6.3-9.4l19.3-3.9V416c0-62.8-96-65.1-96 1.9v26.7l19.3 3.9c4.3.9 7.1 5.1 6.3 9.4l-3.1 15.7c-.9 4.3-5.1 7.1-9.4 6.3l-31.2-4.2c-7.9-1.1-13.8-7.8-13.8-15.9V416c0-38.6 27.5-70.9 64-78.4v-45.2c-2.2.7-4.4 1.1-6.6 1.9-18 6.3-37.3 9.8-57.4 9.8s-39.4-3.5-57.4-9.8c-7.4-2.6-14.9-4.2-22.6-5.2v81.6c23.1 6.9 40 28.1 40 53.4 0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.3 16.9-46.5 40-53.4v-80.4C48.5 301 0 355.8 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-72-56.8-130.3-128-133.8z"], + "user-minus": [640, 512, [], "f503", "M624 208H432c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"], + "user-ninja": [448, 512, [], "f504", "M325.4 289.2L224 390.6 122.6 289.2C54 295.3 0 352.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-70.2-54-127.1-122.6-133.2zM32 192c27.3 0 51.8-11.5 69.2-29.7 15.1 53.9 64 93.7 122.8 93.7 70.7 0 128-57.3 128-128S294.7 0 224 0c-50.4 0-93.6 29.4-114.5 71.8C92.1 47.8 64 32 32 32c0 33.4 17.1 62.8 43.1 80-26 17.2-43.1 46.6-43.1 80zm144-96h96c17.7 0 32 14.3 32 32H144c0-17.7 14.3-32 32-32z"], + "user-plus": [640, 512, [], "f234", "M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"], + "user-secret": [448, 512, [], "f21b", "M383.9 308.3l23.9-62.6c4-10.5-3.7-21.7-15-21.7h-58.5c11-18.9 17.8-40.6 17.8-64v-.3c39.2-7.8 64-19.1 64-31.7 0-13.3-27.3-25.1-70.1-33-9.2-32.8-27-65.8-40.6-82.8-9.5-11.9-25.9-15.6-39.5-8.8l-27.6 13.8c-9 4.5-19.6 4.5-28.6 0L182.1 3.4c-13.6-6.8-30-3.1-39.5 8.8-13.5 17-31.4 50-40.6 82.8-42.7 7.9-70 19.7-70 33 0 12.6 24.8 23.9 64 31.7v.3c0 23.4 6.8 45.1 17.8 64H56.3c-11.5 0-19.2 11.7-14.7 22.3l25.8 60.2C27.3 329.8 0 372.7 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-48.4-25.8-90.4-64.1-114.1zM176 480l-41.6-192 49.6 32 24 40-32 120zm96 0l-32-120 24-40 49.6-32L272 480zm41.7-298.5c-3.9 11.9-7 24.6-16.5 33.4-10.1 9.3-48 22.4-64-25-2.8-8.4-15.4-8.4-18.3 0-17 50.2-56 32.4-64 25-9.5-8.8-12.7-21.5-16.5-33.4-.8-2.5-6.3-5.7-6.3-5.8v-10.8c28.3 3.6 61 5.8 96 5.8s67.7-2.1 96-5.8v10.8c-.1.1-5.6 3.2-6.4 5.8z"], + "user-shield": [640, 512, [], "f505", "M622.3 271.1l-115.2-45c-4.1-1.6-12.6-3.7-22.2 0l-115.2 45c-10.7 4.2-17.7 14-17.7 24.9 0 111.6 68.7 188.8 132.9 213.9 9.6 3.7 18 1.6 22.2 0C558.4 489.9 640 420.5 640 296c0-10.9-7-20.7-17.7-24.9zM496 462.4V273.3l95.5 37.3c-5.6 87.1-60.9 135.4-95.5 151.8zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm96 40c0-2.5.8-4.8 1.1-7.2-2.5-.1-4.9-.8-7.5-.8h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c6.8 0 13.3-1.5 19.2-4-54-42.9-99.2-116.7-99.2-212z"], + "user-slash": [640, 512, [], "f506", "M633.8 458.1L362.3 248.3C412.1 230.7 448 183.8 448 128 448 57.3 390.7 0 320 0c-67.1 0-121.5 51.8-126.9 117.4L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM96 422.4V464c0 26.5 21.5 48 48 48h350.2L207.4 290.3C144.2 301.3 96 356 96 422.4z"], + "user-tag": [640, 512, [], "f507", "M630.6 364.9l-90.3-90.2c-12-12-28.3-18.7-45.3-18.7h-79.3c-17.7 0-32 14.3-32 32v79.2c0 17 6.7 33.2 18.7 45.2l90.3 90.2c12.5 12.5 32.8 12.5 45.3 0l92.5-92.5c12.6-12.5 12.6-32.7.1-45.2zm-182.8-21c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24c0 13.2-10.7 24-24 24zm-223.8-88c70.7 0 128-57.3 128-128C352 57.3 294.7 0 224 0S96 57.3 96 128c0 70.6 57.3 127.9 128 127.9zm127.8 111.2V294c-12.2-3.6-24.9-6.2-38.2-6.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 287.9 0 348.1 0 422.3v41.6c0 26.5 21.5 48 48 48h352c15.5 0 29.1-7.5 37.9-18.9l-58-58c-18.1-18.1-28.1-42.2-28.1-67.9z"], + "user-tie": [448, 512, [], "f508", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm95.8 32.6L272 480l-32-136 32-56h-96l32 56-32 136-47.8-191.4C56.9 292 0 350.3 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-72.1-56.9-130.4-128.2-133.8z"], + "user-times": [640, 512, [], "f235", "M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"], + "users": [640, 512, [], "f0c0", "M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"], + "users-cog": [640, 512, [], "f509", "M610.5 341.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 368.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm224 32c1.9 0 3.7-.5 5.6-.6 8.3-21.7 20.5-42.1 36.3-59.2 7.4-8 17.9-12.6 28.9-12.6 6.9 0 13.7 1.8 19.6 5.3l7.9 4.6c.8-.5 1.6-.9 2.4-1.4 7-14.6 11.2-30.8 11.2-48 0-61.9-50.1-112-112-112S208 82.1 208 144c0 61.9 50.1 112 112 112zm105.2 194.5c-2.3-1.2-4.6-2.6-6.8-3.9-8.2 4.8-15.3 9.8-27.5 9.8-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-10.7-34.5 24.9-49.7 25.8-50.3-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-3.8-2.2-7-5-9.8-8.1-3.3.2-6.5.6-9.8.6-24.6 0-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h255.4c-3.7-6-6.2-12.8-6.2-20.3v-9.2zM173.1 274.6C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"], + "utensil-spoon": [512, 512, [], "f2e5", "M480.1 31.9c-55-55.1-164.9-34.5-227.8 28.5-49.3 49.3-55.1 110-28.8 160.4L9 413.2c-11.6 10.5-12.1 28.5-1 39.5L59.3 504c11 11 29.1 10.5 39.5-1.1l192.4-214.4c50.4 26.3 111.1 20.5 160.4-28.8 63-62.9 83.6-172.8 28.5-227.8z"], + "utensils": [416, 512, [], "f2e7", "M207.9 15.2c.8 4.7 16.1 94.5 16.1 128.8 0 52.3-27.8 89.6-68.9 104.6L168 486.7c.7 13.7-10.2 25.3-24 25.3H80c-13.7 0-24.7-11.5-24-25.3l12.9-238.1C27.7 233.6 0 196.2 0 144 0 109.6 15.3 19.9 16.1 15.2 19.3-5.1 61.4-5.4 64 16.3v141.2c1.3 3.4 15.1 3.2 16 0 1.4-25.3 7.9-139.2 8-141.8 3.3-20.8 44.7-20.8 47.9 0 .2 2.7 6.6 116.5 8 141.8.9 3.2 14.8 3.4 16 0V16.3c2.6-21.6 44.8-21.4 48-1.1zm119.2 285.7l-15 185.1c-1.2 14 9.9 26 23.9 26h56c13.3 0 24-10.7 24-24V24c0-13.2-10.7-24-24-24-82.5 0-221.4 178.5-64.9 300.9z"], + "vector-square": [512, 512, [], "f5cb", "M512 128V32c0-17.67-14.33-32-32-32h-96c-17.67 0-32 14.33-32 32H160c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32v192c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32h192c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32V160c17.67 0 32-14.33 32-32zm-96-64h32v32h-32V64zM64 64h32v32H64V64zm32 384H64v-32h32v32zm352 0h-32v-32h32v32zm-32-96h-32c-17.67 0-32 14.33-32 32v32H160v-32c0-17.67-14.33-32-32-32H96V160h32c17.67 0 32-14.33 32-32V96h192v32c0 17.67 14.33 32 32 32h32v192z"], + "venus": [288, 512, [], "f221", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z"], + "venus-double": [512, 512, [], "f226", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80zm336 140.4V368h36c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-36v36c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-36h-36c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h36v-51.6c-21.2-4.8-40.6-14.3-57.2-27.3 14-16.7 25-36 32.1-57.1 14.5 14.8 34.7 24 57.1 24 44.1 0 80-35.9 80-80s-35.9-80-80-80c-22.3 0-42.6 9.2-57.1 24-7.1-21.1-18-40.4-32.1-57.1C303.4 43.6 334.3 32 368 32c79.5 0 144 64.5 144 144 0 68.5-47.9 125.9-112 140.4z"], + "venus-mars": [576, 512, [], "f228", "M564 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C422.5 72.1 396.2 64 368 64c-33.7 0-64.6 11.6-89.2 30.9 14 16.7 25 36 32.1 57.1 14.5-14.8 34.7-24 57.1-24 44.1 0 80 35.9 80 80s-35.9 80-80 80c-22.3 0-42.6-9.2-57.1-24-7.1 21.1-18 40.4-32.1 57.1 24.5 19.4 55.5 30.9 89.2 30.9 79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 64C64.5 64 0 128.5 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.6 112-71.9 112-140.4 0-79.5-64.5-144-144-144zm0 224c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"], + "vial": [480, 512, [], "f492", "M477.7 186.1L309.5 18.3c-3.1-3.1-8.2-3.1-11.3 0l-34 33.9c-3.1 3.1-3.1 8.2 0 11.3l11.2 11.1L33 316.5c-38.8 38.7-45.1 102-9.4 143.5 20.6 24 49.5 36 78.4 35.9 26.4 0 52.8-10 72.9-30.1l246.3-245.7 11.2 11.1c3.1 3.1 8.2 3.1 11.3 0l34-33.9c3.1-3 3.1-8.1 0-11.2zM318 256H161l148-147.7 78.5 78.3L318 256z"], + "vials": [640, 512, [], "f493", "M72 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H72c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64zm480 384H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM360 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64z"], + "video": [576, 512, [], "f03d", "M336.2 64H47.8C21.4 64 0 85.4 0 111.8v288.4C0 426.6 21.4 448 47.8 448h288.4c26.4 0 47.8-21.4 47.8-47.8V111.8c0-26.4-21.4-47.8-47.8-47.8zm189.4 37.7L416 177.3v157.4l109.6 75.5c21.2 14.6 50.4-.3 50.4-25.8V127.5c0-25.4-29.1-40.4-50.4-25.8z"], + "video-slash": [640, 512, [], "f4e2", "M633.8 458.1l-55-42.5c15.4-1.4 29.2-13.7 29.2-31.1v-257c0-25.5-29.1-40.4-50.4-25.8L448 177.3v137.2l-32-24.7v-178c0-26.4-21.4-47.8-47.8-47.8H123.9L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4L42.7 82 416 370.6l178.5 138c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.5-6.9 4.2-17-2.8-22.4zM32 400.2c0 26.4 21.4 47.8 47.8 47.8h288.4c11.2 0 21.4-4 29.6-10.5L32 154.7v245.5z"], + "volleyball-ball": [495, 512, [], "f45f", "M223.3 243.4c-.9-37-8.6-72.8-22.7-105.7-90.8 42.4-157.5 122.4-180.3 216.8 13.4 30.8 32.9 58.3 56.9 81.1 22.7-79.2 74.2-147.8 146.1-192.2zM186.4 109c-15-26.4-34.5-50.1-57.4-70.7C38 88.1-15.8 191.2 4 300.5c33.4-83.1 98.4-152 182.4-191.5zM374 274.1c8.6-99.8-27.3-197.5-97.5-264.4-14.7-1.7-51.6-5.5-98.9 8.5 57.3 59.3 91 138.2 93.5 222.7 32.5 17.7 67.3 29 102.9 33.2zm-124.7 9.5c-31.6 19.3-58.7 43.9-80.2 72.6 82 57.3 184.5 75.1 277.5 47.8 19.7-26.4 34.2-56.8 42.2-89.9-26.6 6.6-53.7 10.4-80.9 10.4-54.6-.1-108.9-14.1-158.6-40.9zM151 383.3c-15.2 26-25.7 54.4-32.1 84.2 37.6 23 81.7 36.5 129.1 36.5 61 0 116.7-22.1 159.9-58.6C295 461.5 204.6 420.6 151 383.3zM331.3 22.7c55.3 70.4 82.5 161.2 74.6 253.6 30.3.2 60.5-4.8 89.7-14.2 0-2 .3-4 .3-6 0-107.8-68.7-199.1-164.6-233.4z"], + "volume-down": [384, 512, [], "f027", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zM384 256c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z"], + "volume-off": [256, 512, [], "f026", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971z"], + "volume-up": [576, 512, [], "f028", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zm182.056-77.876C422.982.92 403.283 5.668 394.061 20.745c-9.221 15.077-4.473 34.774 10.604 43.995C468.967 104.063 512 174.983 512 256c0 73.431-36.077 142.292-96.507 184.206-14.522 10.072-18.129 30.01-8.057 44.532 10.076 14.528 30.016 18.126 44.531 8.057C529.633 438.927 576 350.406 576 256c0-103.244-54.579-194.877-137.944-245.859zM480 256c0-68.547-36.15-129.777-91.957-163.901-15.076-9.22-34.774-4.471-43.994 10.607-9.22 15.078-4.471 34.774 10.607 43.994C393.067 170.188 416 211.048 416 256c0 41.964-20.62 81.319-55.158 105.276-14.521 10.073-18.128 30.01-8.056 44.532 6.216 8.96 16.185 13.765 26.322 13.765a31.862 31.862 0 0 0 18.21-5.709C449.091 377.953 480 318.938 480 256zm-96 0c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z"], + "walking": [320, 512, [], "f554", "M208 96c26.5 0 48-21.5 48-48S234.5 0 208 0s-48 21.5-48 48 21.5 48 48 48zm94.5 149.1l-23.3-11.8-9.7-29.4c-14.7-44.6-55.7-75.8-102.2-75.9-36-.1-55.9 10.1-93.3 25.2-21.6 8.7-39.3 25.2-49.7 46.2L17.6 213c-7.8 15.8-1.5 35 14.2 42.9 15.6 7.9 34.6 1.5 42.5-14.3L81 228c3.5-7 9.3-12.5 16.5-15.4l26.8-10.8-15.2 60.7c-5.2 20.8.4 42.9 14.9 58.8l59.9 65.4c7.2 7.9 12.3 17.4 14.9 27.7l18.3 73.3c4.3 17.1 21.7 27.6 38.8 23.3 17.1-4.3 27.6-21.7 23.3-38.8l-22.2-89c-2.6-10.3-7.7-19.9-14.9-27.7l-45.5-49.7 17.2-68.7 5.5 16.5c5.3 16.1 16.7 29.4 31.7 37l23.3 11.8c15.6 7.9 34.6 1.5 42.5-14.3 7.7-15.7 1.4-35.1-14.3-43zM73.6 385.8c-3.2 8.1-8 15.4-14.2 21.5l-50 50.1c-12.5 12.5-12.5 32.8 0 45.3s32.7 12.5 45.2 0l59.4-59.4c6.1-6.1 10.9-13.4 14.2-21.5l13.5-33.8c-55.3-60.3-38.7-41.8-47.4-53.7l-20.7 51.5z"], + "wallet": [512, 512, [], "f555", "M461.2 128H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h384c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h397.2c28.02 0 50.8-21.53 50.8-48V176c0-26.47-22.78-48-50.8-48zM416 336c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "warehouse": [640, 512, [], "f494", "M504 352H136.4c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0 96H136.1c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0-192H136.6c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm106.5-139L338.4 3.7a48.15 48.15 0 0 0-36.9 0L29.5 117C11.7 124.5 0 141.9 0 161.3V504c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V256c0-17.6 14.6-32 32.6-32h382.8c18 0 32.6 14.4 32.6 32v248c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V161.3c0-19.4-11.7-36.8-29.5-44.3z"], + "weight": [512, 512, [], "f496", "M448 64h-25.98C438.44 92.28 448 125.01 448 160c0 105.87-86.13 192-192 192S64 265.87 64 160c0-34.99 9.56-67.72 25.98-96H64C28.71 64 0 92.71 0 128v320c0 35.29 28.71 64 64 64h384c35.29 0 64-28.71 64-64V128c0-35.29-28.71-64-64-64zM256 320c88.37 0 160-71.63 160-160S344.37 0 256 0 96 71.63 96 160s71.63 160 160 160zm-.3-151.94l33.58-78.36c3.5-8.17 12.94-11.92 21.03-8.41 8.12 3.48 11.88 12.89 8.41 21l-33.67 78.55C291.73 188 296 197.45 296 208c0 22.09-17.91 40-40 40s-40-17.91-40-40c0-21.98 17.76-39.77 39.7-39.94z"], + "weight-hanging": [512, 512, [], "f5cd", "M510.28 445.86l-73.03-292.13c-3.8-15.19-16.44-25.72-30.87-25.72h-60.25c3.57-10.05 5.88-20.72 5.88-32 0-53.02-42.98-96-96-96s-96 42.98-96 96c0 11.28 2.3 21.95 5.88 32h-60.25c-14.43 0-27.08 10.54-30.87 25.72L1.72 445.86C-6.61 479.17 16.38 512 48.03 512h415.95c31.64 0 54.63-32.83 46.3-66.14zM256 128c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z"], + "wheelchair": [512, 512, [], "f193", "M496.101 385.669l14.227 28.663c3.929 7.915.697 17.516-7.218 21.445l-65.465 32.886c-16.049 7.967-35.556 1.194-43.189-15.055L331.679 320H192c-15.925 0-29.426-11.71-31.679-27.475C126.433 55.308 128.38 70.044 128 64c0-36.358 30.318-65.635 67.052-63.929 33.271 1.545 60.048 28.905 60.925 62.201.868 32.933-23.152 60.423-54.608 65.039l4.67 32.69H336c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H215.182l4.572 32H352a32 32 0 0 1 28.962 18.392L438.477 396.8l36.178-18.349c7.915-3.929 17.517-.697 21.446 7.218zM311.358 352h-24.506c-7.788 54.204-54.528 96-110.852 96-61.757 0-112-50.243-112-112 0-41.505 22.694-77.809 56.324-97.156-3.712-25.965-6.844-47.86-9.488-66.333C45.956 198.464 0 261.963 0 336c0 97.047 78.953 176 176 176 71.87 0 133.806-43.308 161.11-105.192L311.358 352z"], + "wifi": [640, 512, [], "f1eb", "M384 416c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm136.659-124.443c6.465-6.465 6.245-17.065-.564-23.167-113.793-101.985-286.526-101.869-400.19 0-6.809 6.102-7.029 16.702-.564 23.167l34.006 34.006c5.927 5.927 15.464 6.32 21.769.796 82.88-72.609 207.074-72.447 289.768 0 6.305 5.524 15.842 5.132 21.769-.796l34.006-34.006zm112.11-113.718c6.385-6.385 6.254-16.816-.35-22.973-175.768-163.86-449.134-163.8-624.837 0-6.604 6.157-6.735 16.589-.35 22.973l33.966 33.966c6.095 6.095 15.891 6.231 22.224.383 144.763-133.668 368.356-133.702 513.156 0 6.333 5.848 16.129 5.712 22.224-.383l33.967-33.966z"], + "window-close": [512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-83.6 290.5c4.8 4.8 4.8 12.6 0 17.4l-40.5 40.5c-4.8 4.8-12.6 4.8-17.4 0L256 313.3l-66.5 67.1c-4.8 4.8-12.6 4.8-17.4 0l-40.5-40.5c-4.8-4.8-4.8-12.6 0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6 0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1 66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8 4.8 12.6 0 17.4L313.3 256l67.1 66.5z"], + "window-maximize": [512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16 160H64v-84c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12v84z"], + "window-minimize": [512, 512, [], "f2d1", "M464 352H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48z"], + "window-restore": [512, 512, [], "f2d2", "M512 48v288c0 26.5-21.5 48-48 48h-48V176c0-44.1-35.9-80-80-80H128V48c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zM384 176v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zm-68 28c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v52h252v-52z"], + "wine-glass": [288, 512, [], "f4e3", "M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40z"], + "wine-glass-alt": [288, 512, [], "f5ce", "M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM61.75 48h164.5l7.17 80H54.58l7.17-80z"], + "won-sign": [576, 512, [], "f159", "M564 192c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-48.028l18.572-80.61c1.732-7.518-3.978-14.694-11.693-14.694h-46.107a11.998 11.998 0 0 0-11.736 9.5L450.73 128H340.839l-19.725-85.987a12 12 0 0 0-11.696-9.317H265.43a12 12 0 0 0-11.687 9.277L233.696 128H124.975L107.5 42.299a12 12 0 0 0-11.758-9.602H53.628c-7.686 0-13.39 7.124-11.709 14.624L60 128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h62.342l7.171 32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h83.856l40.927 182.624A12 12 0 0 0 148.492 480h56.767c5.583 0 10.428-3.85 11.689-9.288L259.335 288h55.086l42.386 182.712A12 12 0 0 0 368.496 480h56.826a12 12 0 0 0 11.694-9.306L479.108 288H564c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-70.146l7.373-32H564zm-425.976 0h80.757l-7.457 32h-66.776l-6.524-32zm45.796 150.029c-6.194 25.831-6.758 47.25-7.321 47.25h-1.126s-1.689-22.05-6.758-47.25L157.599 288h38.812l-12.591 54.029zM274.182 224l1.996-8.602c1.856-7.962 3.457-15.968 4.803-23.398h11.794c1.347 7.43 2.947 15.436 4.803 23.398l1.996 8.602h-25.392zm130.959 118.029c-5.068 25.2-6.758 47.25-6.758 47.25h-1.126c-.563 0-1.126-21.42-7.321-47.25L377.542 288h39.107l-11.508 54.029zM430.281 224h-67.42l-7.34-32h81.577l-6.817 32z"], + "wrench": [512, 512, [], "f0ad", "M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"], + "x-ray": [640, 512, [], "f497", "M240 384c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm160 32c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zM624 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zm0 448h-48V96H64v352H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM480 248c0 4.4-3.6 8-8 8H336v32h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48v-16h-64v16c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48h64v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-32H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h136v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-24c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v24h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h136c4.4 0 8 3.6 8 8v16z"], + "yen-sign": [384, 512, [], "f157", "M351.208 32h-65.277a12 12 0 0 0-10.778 6.724l-55.39 113.163c-14.513 34.704-27.133 71.932-27.133 71.932h-1.262s-12.62-37.228-27.133-71.932l-55.39-113.163A11.997 11.997 0 0 0 98.068 32H32.792c-9.057 0-14.85 9.65-10.59 17.643L102.322 200H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h88.162L152 293.228V320H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h108v92c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-92h108c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12H232v-26.772L251.838 256H340c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12h-58.322l80.12-150.357C366.058 41.65 360.266 32 351.208 32z"] +}; + +bunker(function () { + define('fas', icons); +}); + +}()); +(function () { +'use strict'; + +var noop = function noop() {}; + +var _WINDOW = {}; +var _DOCUMENT = {}; +var _MUTATION_OBSERVER$1 = null; +var _PERFORMANCE = { mark: noop, measure: noop }; + +try { + if (typeof window !== 'undefined') _WINDOW = window; + if (typeof document !== 'undefined') _DOCUMENT = document; + if (typeof MutationObserver !== 'undefined') _MUTATION_OBSERVER$1 = MutationObserver; + if (typeof performance !== 'undefined') _PERFORMANCE = performance; +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; +var DOCUMENT = _DOCUMENT; +var MUTATION_OBSERVER = _MUTATION_OBSERVER$1; +var PERFORMANCE = _PERFORMANCE; +var IS_BROWSER = !!WINDOW.document; +var IS_DOM = !!DOCUMENT.documentElement && !!DOCUMENT.head && typeof DOCUMENT.addEventListener === 'function' && typeof DOCUMENT.createElement === 'function'; +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; +var UNITS_IN_GRID = 16; +var DEFAULT_FAMILY_PREFIX = 'fa'; +var DEFAULT_REPLACEMENT_CLASS = 'svg-inline--fa'; +var DATA_FA_I2SVG = 'data-fa-i2svg'; +var DATA_FA_PSEUDO_ELEMENT = 'data-fa-pseudo-element'; +var DATA_PREFIX = 'data-prefix'; +var DATA_ICON = 'data-icon'; +var HTML_CLASS_I2SVG_BASE_CLASS = 'fontawesome-i2svg'; +var TAGNAMES_TO_SKIP_FOR_PSEUDOELEMENTS = ['HTML', 'HEAD', 'STYLE', 'SCRIPT']; +var PRODUCTION = function () { + try { + return undefined === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + +var ATTRIBUTES_WATCHED_FOR_MUTATION = ['class', 'data-prefix', 'data-icon', 'data-fa-transform', 'data-fa-mask']; + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +var classCallCheck = function (instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function"); + } +}; + +var createClass = function () { + function defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } + } + + return function (Constructor, protoProps, staticProps) { + if (protoProps) defineProperties(Constructor.prototype, protoProps); + if (staticProps) defineProperties(Constructor, staticProps); + return Constructor; + }; +}(); + + + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + + + +var slicedToArray = function () { + function sliceIterator(arr, i) { + var _arr = []; + var _n = true; + var _d = false; + var _e = undefined; + + try { + for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { + _arr.push(_s.value); + + if (i && _arr.length === i) break; + } + } catch (err) { + _d = true; + _e = err; + } finally { + try { + if (!_n && _i["return"]) _i["return"](); + } finally { + if (_d) throw _e; + } + } + + return _arr; + } + + return function (arr, i) { + if (Array.isArray(arr)) { + return arr; + } else if (Symbol.iterator in Object(arr)) { + return sliceIterator(arr, i); + } else { + throw new TypeError("Invalid attempt to destructure non-iterable instance"); + } + }; +}(); + +var toConsumableArray = function (arr) { + if (Array.isArray(arr)) { + for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) arr2[i] = arr[i]; + + return arr2; + } else { + return Array.from(arr); + } +}; + +var initial = WINDOW.FontAwesomeConfig || {}; + +function getAttrConfig(attr) { + var element = DOCUMENT.querySelector('script[' + attr + ']'); + + if (element) { + return element.getAttribute(attr); + } +} + +function coerce(val) { + // Getting an empty string will occur if the attribute is set on the HTML tag but without a value + // We'll assume that this is an indication that it should be toggled to true + // For example + if (val === '') return true; + if (val === 'false') return false; + if (val === 'true') return true; + return val; +} + +if (DOCUMENT && typeof DOCUMENT.querySelector === 'function') { + var attrs = [['data-family-prefix', 'familyPrefix'], ['data-replacement-class', 'replacementClass'], ['data-auto-replace-svg', 'autoReplaceSvg'], ['data-auto-add-css', 'autoAddCss'], ['data-auto-a11y', 'autoA11y'], ['data-search-pseudo-elements', 'searchPseudoElements'], ['data-observe-mutations', 'observeMutations'], ['data-keep-original-source', 'keepOriginalSource'], ['data-measure-performance', 'measurePerformance'], ['data-show-missing-icons', 'showMissingIcons']]; + + attrs.forEach(function (_ref) { + var _ref2 = slicedToArray(_ref, 2), + attr = _ref2[0], + key = _ref2[1]; + + var val = coerce(getAttrConfig(attr)); + + if (val !== undefined && val !== null) { + initial[key] = val; + } + }); +} + +var _default = _extends({ + familyPrefix: DEFAULT_FAMILY_PREFIX, + replacementClass: DEFAULT_REPLACEMENT_CLASS, + autoReplaceSvg: true, + autoAddCss: true, + autoA11y: true, + searchPseudoElements: false, + observeMutations: true, + keepOriginalSource: true, + measurePerformance: false, + showMissingIcons: true +}, initial); + +if (!_default.autoReplaceSvg) _default.observeMutations = false; + +var config = _extends({}, _default); + +WINDOW.FontAwesomeConfig = config; + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var functions = []; +var listener = function listener() { + DOCUMENT.removeEventListener('DOMContentLoaded', listener); + loaded = 1; + functions.map(function (fn) { + return fn(); + }); +}; + +var loaded = false; + +if (IS_DOM) { + loaded = (DOCUMENT.documentElement.doScroll ? /^loaded|^c/ : /^loaded|^i|^c/).test(DOCUMENT.readyState); + + if (!loaded) DOCUMENT.addEventListener('DOMContentLoaded', listener); +} + +var domready = function (fn) { + if (!IS_DOM) return; + loaded ? setTimeout(fn, 0) : functions.push(fn); +}; + +var d = UNITS_IN_GRID; + +var meaninglessTransform = { + size: 16, + x: 0, + y: 0, + rotate: 0, + flipX: false, + flipY: false +}; + +function isReserved(name) { + return ~RESERVED_CLASSES.indexOf(name); +} + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +function insertCss(css) { + if (!css || !IS_DOM) { + return; + } + + var style = DOCUMENT.createElement('style'); + style.setAttribute('type', 'text/css'); + style.innerHTML = css; + + var headChildren = DOCUMENT.head.childNodes; + var beforeChild = null; + + for (var i = headChildren.length - 1; i > -1; i--) { + var child = headChildren[i]; + var tagName = (child.tagName || '').toUpperCase(); + if (['STYLE', 'LINK'].indexOf(tagName) > -1) { + beforeChild = child; + } + } + + DOCUMENT.head.insertBefore(style, beforeChild); + + return css; +} + +var _uniqueId = 0; + +function nextUniqueId() { + _uniqueId++; + + return _uniqueId; +} + +function toArray(obj) { + var array = []; + + for (var i = (obj || []).length >>> 0; i--;) { + array[i] = obj[i]; + } + + return array; +} + +function classArray(node) { + if (node.classList) { + return toArray(node.classList); + } else { + return (node.getAttribute('class') || '').split(' ').filter(function (i) { + return i; + }); + } +} + +function getIconName(familyPrefix, cls) { + var parts = cls.split('-'); + var prefix = parts[0]; + var iconName = parts.slice(1).join('-'); + + if (prefix === familyPrefix && iconName !== '' && !isReserved(iconName)) { + return iconName; + } else { + return null; + } +} + +function htmlEscape(str) { + return ('' + str).replace(/&/g, '&').replace(/"/g, '"').replace(/'/g, ''').replace(//g, '>'); +} + +function joinAttributes(attributes) { + return Object.keys(attributes || {}).reduce(function (acc, attributeName) { + return acc + (attributeName + '="' + htmlEscape(attributes[attributeName]) + '" '); + }, '').trim(); +} + +function joinStyles(styles) { + return Object.keys(styles || {}).reduce(function (acc, styleName) { + return acc + (styleName + ': ' + styles[styleName] + ';'); + }, ''); +} + +function transformIsMeaningful(transform) { + return transform.size !== meaninglessTransform.size || transform.x !== meaninglessTransform.x || transform.y !== meaninglessTransform.y || transform.rotate !== meaninglessTransform.rotate || transform.flipX || transform.flipY; +} + +function transformForSvg(_ref) { + var transform = _ref.transform, + containerWidth = _ref.containerWidth, + iconWidth = _ref.iconWidth; + + var outer = { + transform: 'translate(' + containerWidth / 2 + ' 256)' + }; + var innerTranslate = 'translate(' + transform.x * 32 + ', ' + transform.y * 32 + ') '; + var innerScale = 'scale(' + transform.size / 16 * (transform.flipX ? -1 : 1) + ', ' + transform.size / 16 * (transform.flipY ? -1 : 1) + ') '; + var innerRotate = 'rotate(' + transform.rotate + ' 0 0)'; + var inner = { + transform: innerTranslate + ' ' + innerScale + ' ' + innerRotate + }; + var path = { + transform: 'translate(' + iconWidth / 2 * -1 + ' -256)' + }; + return { + outer: outer, + inner: inner, + path: path + }; +} + +function transformForCss(_ref2) { + var transform = _ref2.transform, + _ref2$width = _ref2.width, + width = _ref2$width === undefined ? UNITS_IN_GRID : _ref2$width, + _ref2$height = _ref2.height, + height = _ref2$height === undefined ? UNITS_IN_GRID : _ref2$height, + _ref2$startCentered = _ref2.startCentered, + startCentered = _ref2$startCentered === undefined ? false : _ref2$startCentered; + + var val = ''; + + if (startCentered && IS_IE) { + val += 'translate(' + (transform.x / d - width / 2) + 'em, ' + (transform.y / d - height / 2) + 'em) '; + } else if (startCentered) { + val += 'translate(calc(-50% + ' + transform.x / d + 'em), calc(-50% + ' + transform.y / d + 'em)) '; + } else { + val += 'translate(' + transform.x / d + 'em, ' + transform.y / d + 'em) '; + } + + val += 'scale(' + transform.size / d * (transform.flipX ? -1 : 1) + ', ' + transform.size / d * (transform.flipY ? -1 : 1) + ') '; + val += 'rotate(' + transform.rotate + 'deg) '; + + return val; +} + +var ALL_SPACE = { + x: 0, + y: 0, + width: '100%', + height: '100%' +}; + +var makeIconMasking = function (_ref) { + var children = _ref.children, + attributes = _ref.attributes, + main = _ref.main, + mask = _ref.mask, + transform = _ref.transform; + var mainWidth = main.width, + mainPath = main.icon; + var maskWidth = mask.width, + maskPath = mask.icon; + + + var trans = transformForSvg({ transform: transform, containerWidth: maskWidth, iconWidth: mainWidth }); + + var maskRect = { + tag: 'rect', + attributes: _extends({}, ALL_SPACE, { + fill: 'white' + }) + }; + var maskInnerGroup = { + tag: 'g', + attributes: _extends({}, trans.inner), + children: [{ tag: 'path', attributes: _extends({}, mainPath.attributes, trans.path, { fill: 'black' }) }] + }; + var maskOuterGroup = { + tag: 'g', + attributes: _extends({}, trans.outer), + children: [maskInnerGroup] + }; + var maskId = 'mask-' + nextUniqueId(); + var clipId = 'clip-' + nextUniqueId(); + var maskTag = { + tag: 'mask', + attributes: _extends({}, ALL_SPACE, { + id: maskId, + maskUnits: 'userSpaceOnUse', + maskContentUnits: 'userSpaceOnUse' + }), + children: [maskRect, maskOuterGroup] + }; + var defs = { + tag: 'defs', + children: [{ tag: 'clipPath', attributes: { id: clipId }, children: [maskPath] }, maskTag] + }; + + children.push(defs, { tag: 'rect', attributes: _extends({ fill: 'currentColor', 'clip-path': 'url(#' + clipId + ')', mask: 'url(#' + maskId + ')' }, ALL_SPACE) }); + + return { + children: children, + attributes: attributes + }; +}; + +var makeIconStandard = function (_ref) { + var children = _ref.children, + attributes = _ref.attributes, + main = _ref.main, + transform = _ref.transform, + styles = _ref.styles; + + var styleString = joinStyles(styles); + + if (styleString.length > 0) { + attributes['style'] = styleString; + } + + if (transformIsMeaningful(transform)) { + var trans = transformForSvg({ transform: transform, containerWidth: main.width, iconWidth: main.width }); + children.push({ + tag: 'g', + attributes: _extends({}, trans.outer), + children: [{ + tag: 'g', + attributes: _extends({}, trans.inner), + children: [{ + tag: main.icon.tag, + children: main.icon.children, + attributes: _extends({}, main.icon.attributes, trans.path) + }] + }] + }); + } else { + children.push(main.icon); + } + + return { + children: children, + attributes: attributes + }; +}; + +var asIcon = function (_ref) { + var children = _ref.children, + main = _ref.main, + mask = _ref.mask, + attributes = _ref.attributes, + styles = _ref.styles, + transform = _ref.transform; + + if (transformIsMeaningful(transform) && main.found && !mask.found) { + var width = main.width, + height = main.height; + + var offset = { + x: width / height / 2, + y: 0.5 + }; + attributes['style'] = joinStyles(_extends({}, styles, { + 'transform-origin': offset.x + transform.x / 16 + 'em ' + (offset.y + transform.y / 16) + 'em' + })); + } + + return [{ + tag: 'svg', + attributes: attributes, + children: children + }]; +}; + +var asSymbol = function (_ref) { + var prefix = _ref.prefix, + iconName = _ref.iconName, + children = _ref.children, + attributes = _ref.attributes, + symbol = _ref.symbol; + + var id = symbol === true ? prefix + '-' + config.familyPrefix + '-' + iconName : symbol; + + return [{ + tag: 'svg', + attributes: { + style: 'display: none;' + }, + children: [{ + tag: 'symbol', + attributes: _extends({}, attributes, { id: id }), + children: children + }] + }]; +}; + +function makeInlineSvgAbstract(params) { + var _params$icons = params.icons, + main = _params$icons.main, + mask = _params$icons.mask, + prefix = params.prefix, + iconName = params.iconName, + transform = params.transform, + symbol = params.symbol, + title = params.title, + extra = params.extra, + _params$watchable = params.watchable, + watchable = _params$watchable === undefined ? false : _params$watchable; + + var _ref = mask.found ? mask : main, + width = _ref.width, + height = _ref.height; + + var widthClass = 'fa-w-' + Math.ceil(width / height * 16); + var attrClass = [config.replacementClass, iconName ? config.familyPrefix + '-' + iconName : '', widthClass].filter(function (c) { + return extra.classes.indexOf(c) === -1; + }).concat(extra.classes).join(' '); + + var content = { + children: [], + attributes: _extends({}, extra.attributes, { + 'data-prefix': prefix, + 'data-icon': iconName, + 'class': attrClass, + 'role': 'img', + 'xmlns': 'http://www.w3.org/2000/svg', + 'viewBox': '0 0 ' + width + ' ' + height + }) + }; + + if (watchable) { + content.attributes[DATA_FA_I2SVG] = ''; + } + + if (title) content.children.push({ tag: 'title', attributes: { id: content.attributes['aria-labelledby'] || 'title-' + nextUniqueId() }, children: [title] }); + + var args = _extends({}, content, { + prefix: prefix, + iconName: iconName, + main: main, + mask: mask, + transform: transform, + symbol: symbol, + styles: extra.styles + }); + + var _ref2 = mask.found && main.found ? makeIconMasking(args) : makeIconStandard(args), + children = _ref2.children, + attributes = _ref2.attributes; + + args.children = children; + args.attributes = attributes; + + if (symbol) { + return asSymbol(args); + } else { + return asIcon(args); + } +} + +function makeLayersTextAbstract(params) { + var content = params.content, + width = params.width, + height = params.height, + transform = params.transform, + title = params.title, + extra = params.extra, + _params$watchable2 = params.watchable, + watchable = _params$watchable2 === undefined ? false : _params$watchable2; + + + var attributes = _extends({}, extra.attributes, title ? { 'title': title } : {}, { + 'class': extra.classes.join(' ') + }); + + if (watchable) { + attributes[DATA_FA_I2SVG] = ''; + } + + var styles = _extends({}, extra.styles); + + if (transformIsMeaningful(transform)) { + styles['transform'] = transformForCss({ transform: transform, startCentered: true, width: width, height: height }); + styles['-webkit-transform'] = styles['transform']; + } + + var styleString = joinStyles(styles); + + if (styleString.length > 0) { + attributes['style'] = styleString; + } + + var val = []; + + val.push({ + tag: 'span', + attributes: attributes, + children: [content] + }); + + if (title) { + val.push({ tag: 'span', attributes: { class: 'sr-only' }, children: [title] }); + } + + return val; +} + +function makeLayersCounterAbstract(params) { + var content = params.content, + title = params.title, + extra = params.extra; + + + var attributes = _extends({}, extra.attributes, title ? { 'title': title } : {}, { + 'class': extra.classes.join(' ') + }); + + var styleString = joinStyles(extra.styles); + + if (styleString.length > 0) { + attributes['style'] = styleString; + } + + var val = []; + + val.push({ + tag: 'span', + attributes: attributes, + children: [content] + }); + + if (title) { + val.push({ tag: 'span', attributes: { class: 'sr-only' }, children: [title] }); + } + + return val; +} + +var noop$2 = function noop() {}; +var p = config.measurePerformance && PERFORMANCE && PERFORMANCE.mark && PERFORMANCE.measure ? PERFORMANCE : { mark: noop$2, measure: noop$2 }; +var preamble = 'FA "5.1.1"'; + +var begin = function begin(name) { + p.mark(preamble + ' ' + name + ' begins'); + return function () { + return end(name); + }; +}; + +var end = function end(name) { + p.mark(preamble + ' ' + name + ' ends'); + p.measure(preamble + ' ' + name, preamble + ' ' + name + ' begins', preamble + ' ' + name + ' ends'); +}; + +var perf = { begin: begin, end: end }; + +'use strict'; + +/** + * Internal helper to bind a function known to have 4 arguments + * to a given context. + */ +var bindInternal4 = function bindInternal4 (func, thisContext) { + return function (a, b, c, d) { + return func.call(thisContext, a, b, c, d); + }; +}; + +'use strict'; + + + +/** + * # Reduce + * + * A fast object `.reduce()` implementation. + * + * @param {Object} subject The object to reduce over. + * @param {Function} fn The reducer function. + * @param {mixed} initialValue The initial value for the reducer, defaults to subject[0]. + * @param {Object} thisContext The context for the reducer. + * @return {mixed} The final result. + */ +var reduce = function fastReduceObject (subject, fn, initialValue, thisContext) { + var keys = Object.keys(subject), + length = keys.length, + iterator = thisContext !== undefined ? bindInternal4(fn, thisContext) : fn, + i, key, result; + + if (initialValue === undefined) { + i = 1; + result = subject[keys[0]]; + } + else { + i = 0; + result = initialValue; + } + + for (; i < length; i++) { + key = keys[i]; + result = iterator(result, subject[key], key, subject); + } + + return result; +}; + +var styles$2 = namespace.styles; +var shims = namespace.shims; + + +var _byUnicode = {}; +var _byLigature = {}; +var _byOldName = {}; + +var build = function build() { + var lookup = function lookup(reducer) { + return reduce(styles$2, function (o, style, prefix) { + o[prefix] = reduce(style, reducer, {}); + return o; + }, {}); + }; + + _byUnicode = lookup(function (acc, icon, iconName) { + acc[icon[3]] = iconName; + + return acc; + }); + + _byLigature = lookup(function (acc, icon, iconName) { + var ligatures = icon[2]; + + acc[iconName] = iconName; + + ligatures.forEach(function (ligature) { + acc[ligature] = iconName; + }); + + return acc; + }); + + var hasRegular = 'far' in styles$2; + + _byOldName = reduce(shims, function (acc, shim) { + var oldName = shim[0]; + var prefix = shim[1]; + var iconName = shim[2]; + + if (prefix === 'far' && !hasRegular) { + prefix = 'fas'; + } + + acc[oldName] = { prefix: prefix, iconName: iconName }; + + return acc; + }, {}); +}; + +build(); + +function byUnicode(prefix, unicode) { + return _byUnicode[prefix][unicode]; +} + +function byLigature(prefix, ligature) { + return _byLigature[prefix][ligature]; +} + +function byOldName(name) { + return _byOldName[name] || { prefix: null, iconName: null }; +} + +var styles$1 = namespace.styles; + + +var emptyCanonicalIcon = function emptyCanonicalIcon() { + return { prefix: null, iconName: null, rest: [] }; +}; + +function getCanonicalIcon(values) { + return values.reduce(function (acc, cls) { + var iconName = getIconName(config.familyPrefix, cls); + + if (styles$1[cls]) { + acc.prefix = cls; + } else if (iconName) { + var shim = acc.prefix === 'fa' ? byOldName(iconName) : {}; + + acc.iconName = shim.iconName || iconName; + acc.prefix = shim.prefix || acc.prefix; + } else if (cls !== config.replacementClass && cls.indexOf('fa-w-') !== 0) { + acc.rest.push(cls); + } + + return acc; + }, emptyCanonicalIcon()); +} + +function iconFromMapping(mapping, prefix, iconName) { + if (mapping && mapping[prefix] && mapping[prefix][iconName]) { + return { + prefix: prefix, + iconName: iconName, + icon: mapping[prefix][iconName] + }; + } +} + +function toHtml(abstractNodes) { + var tag = abstractNodes.tag, + _abstractNodes$attrib = abstractNodes.attributes, + attributes = _abstractNodes$attrib === undefined ? {} : _abstractNodes$attrib, + _abstractNodes$childr = abstractNodes.children, + children = _abstractNodes$childr === undefined ? [] : _abstractNodes$childr; + + + if (typeof abstractNodes === 'string') { + return htmlEscape(abstractNodes); + } else { + return '<' + tag + ' ' + joinAttributes(attributes) + '>' + children.map(toHtml).join('') + ''; + } +} + +var noop$1 = function noop() {}; + +function isWatched(node) { + var i2svg = node.getAttribute ? node.getAttribute(DATA_FA_I2SVG) : null; + + return typeof i2svg === 'string'; +} + +function getMutator() { + if (config.autoReplaceSvg === true) { + return mutators.replace; + } + + var mutator = mutators[config.autoReplaceSvg]; + + return mutator || mutators.replace; +} + +var mutators = { + replace: function replace(mutation) { + var node = mutation[0]; + var abstract = mutation[1]; + var newOuterHTML = abstract.map(function (a) { + return toHtml(a); + }).join('\n'); + + if (node.parentNode && node.outerHTML) { + node.outerHTML = newOuterHTML + (config.keepOriginalSource && node.tagName.toLowerCase() !== 'svg' ? '' : ''); + } else if (node.parentNode) { + var newNode = document.createElement('span'); + node.parentNode.replaceChild(newNode, node); + newNode.outerHTML = newOuterHTML; + } + }, + nest: function nest(mutation) { + var node = mutation[0]; + var abstract = mutation[1]; + + // If we already have a replaced node we do not want to continue nesting within it. + // Short-circuit to the standard replacement + if (~classArray(node).indexOf(config.replacementClass)) { + return mutators.replace(mutation); + } + + var forSvg = new RegExp(config.familyPrefix + '-.*'); + + delete abstract[0].attributes.style; + + var splitClasses = abstract[0].attributes.class.split(' ').reduce(function (acc, cls) { + if (cls === config.replacementClass || cls.match(forSvg)) { + acc.toSvg.push(cls); + } else { + acc.toNode.push(cls); + } + + return acc; + }, { toNode: [], toSvg: [] }); + + abstract[0].attributes.class = splitClasses.toSvg.join(' '); + + var newInnerHTML = abstract.map(function (a) { + return toHtml(a); + }).join('\n'); + node.setAttribute('class', splitClasses.toNode.join(' ')); + node.setAttribute(DATA_FA_I2SVG, ''); + node.innerHTML = newInnerHTML; + } +}; + +function perform(mutations, callback) { + var callbackFunction = typeof callback === 'function' ? callback : noop$1; + + if (mutations.length === 0) { + callbackFunction(); + } else { + var frame = WINDOW.requestAnimationFrame || function (op) { + return op(); + }; + + frame(function () { + var mutator = getMutator(); + var mark = perf.begin('mutate'); + + mutations.map(mutator); + + mark(); + + callbackFunction(); + }); + } +} + +var disabled = false; + +function disableObservation(operation) { + disabled = true; + operation(); + disabled = false; +} + +var mo = null; + +function observe(options) { + if (!MUTATION_OBSERVER) { + return; + } + + if (!config.observeMutations) { + return; + } + + var treeCallback = options.treeCallback, + nodeCallback = options.nodeCallback, + pseudoElementsCallback = options.pseudoElementsCallback, + _options$observeMutat = options.observeMutationsRoot, + observeMutationsRoot = _options$observeMutat === undefined ? DOCUMENT.body : _options$observeMutat; + + + mo = new MUTATION_OBSERVER(function (objects) { + if (disabled) return; + + toArray(objects).forEach(function (mutationRecord) { + if (mutationRecord.type === 'childList' && mutationRecord.addedNodes.length > 0 && !isWatched(mutationRecord.addedNodes[0])) { + if (config.searchPseudoElements) { + pseudoElementsCallback(mutationRecord.target); + } + + treeCallback(mutationRecord.target); + } + + if (mutationRecord.type === 'attributes' && mutationRecord.target.parentNode && config.searchPseudoElements) { + pseudoElementsCallback(mutationRecord.target.parentNode); + } + + if (mutationRecord.type === 'attributes' && isWatched(mutationRecord.target) && ~ATTRIBUTES_WATCHED_FOR_MUTATION.indexOf(mutationRecord.attributeName)) { + if (mutationRecord.attributeName === 'class') { + var _getCanonicalIcon = getCanonicalIcon(classArray(mutationRecord.target)), + prefix = _getCanonicalIcon.prefix, + iconName = _getCanonicalIcon.iconName; + + if (prefix) mutationRecord.target.setAttribute('data-prefix', prefix); + if (iconName) mutationRecord.target.setAttribute('data-icon', iconName); + } else { + nodeCallback(mutationRecord.target); + } + } + }); + }); + + if (!IS_DOM) return; + + mo.observe(observeMutationsRoot, { + childList: true, attributes: true, characterData: true, subtree: true + }); +} + +function disconnect() { + if (!mo) return; + + mo.disconnect(); +} + +var styleParser = function (node) { + var style = node.getAttribute('style'); + + var val = []; + + if (style) { + val = style.split(';').reduce(function (acc, style) { + var styles = style.split(':'); + var prop = styles[0]; + var value = styles.slice(1); + + if (prop && value.length > 0) { + acc[prop] = value.join(':').trim(); + } + + return acc; + }, {}); + } + + return val; +}; + +function toHex(unicode) { + var result = ''; + + for (var i = 0; i < unicode.length; i++) { + var hex = unicode.charCodeAt(i).toString(16); + result += ('000' + hex).slice(-4); + } + + return result; +} + +var classParser = function (node) { + var existingPrefix = node.getAttribute('data-prefix'); + var existingIconName = node.getAttribute('data-icon'); + var innerText = node.innerText !== undefined ? node.innerText.trim() : ''; + + var val = getCanonicalIcon(classArray(node)); + + if (existingPrefix && existingIconName) { + val.prefix = existingPrefix; + val.iconName = existingIconName; + } + + if (val.prefix && innerText.length > 1) { + val.iconName = byLigature(val.prefix, node.innerText); + } else if (val.prefix && innerText.length === 1) { + val.iconName = byUnicode(val.prefix, toHex(node.innerText)); + } + + return val; +}; + +var parseTransformString = function parseTransformString(transformString) { + var transform = { + size: 16, + x: 0, + y: 0, + flipX: false, + flipY: false, + rotate: 0 + }; + + if (!transformString) { + return transform; + } else { + return transformString.toLowerCase().split(' ').reduce(function (acc, n) { + var parts = n.toLowerCase().split('-'); + var first = parts[0]; + var rest = parts.slice(1).join('-'); + + if (first && rest === 'h') { + acc.flipX = true; + return acc; + } + + if (first && rest === 'v') { + acc.flipY = true; + return acc; + } + + rest = parseFloat(rest); + + if (isNaN(rest)) { + return acc; + } + + switch (first) { + case 'grow': + acc.size = acc.size + rest; + break; + case 'shrink': + acc.size = acc.size - rest; + break; + case 'left': + acc.x = acc.x - rest; + break; + case 'right': + acc.x = acc.x + rest; + break; + case 'up': + acc.y = acc.y - rest; + break; + case 'down': + acc.y = acc.y + rest; + break; + case 'rotate': + acc.rotate = acc.rotate + rest; + break; + } + + return acc; + }, transform); + } +}; + +var transformParser = function (node) { + return parseTransformString(node.getAttribute('data-fa-transform')); +}; + +var symbolParser = function (node) { + var symbol = node.getAttribute('data-fa-symbol'); + + return symbol === null ? false : symbol === '' ? true : symbol; +}; + +var attributesParser = function (node) { + var extraAttributes = toArray(node.attributes).reduce(function (acc, attr) { + if (acc.name !== 'class' && acc.name !== 'style') { + acc[attr.name] = attr.value; + } + return acc; + }, {}); + + var title = node.getAttribute('title'); + + if (config.autoA11y) { + if (title) { + extraAttributes['aria-labelledby'] = config.replacementClass + '-title-' + nextUniqueId(); + } else { + extraAttributes['aria-hidden'] = 'true'; + } + } + + return extraAttributes; +}; + +var maskParser = function (node) { + var mask = node.getAttribute('data-fa-mask'); + + if (!mask) { + return emptyCanonicalIcon(); + } else { + return getCanonicalIcon(mask.split(' ').map(function (i) { + return i.trim(); + })); + } +}; + +var blankMeta = { + iconName: null, + title: null, + prefix: null, + transform: meaninglessTransform, + symbol: false, + mask: null, + extra: { classes: [], styles: {}, attributes: {} } +}; + +function parseMeta(node) { + var _classParser = classParser(node), + iconName = _classParser.iconName, + prefix = _classParser.prefix, + extraClasses = _classParser.rest; + + var extraStyles = styleParser(node); + var transform = transformParser(node); + var symbol = symbolParser(node); + var extraAttributes = attributesParser(node); + var mask = maskParser(node); + + return { + iconName: iconName, + title: node.getAttribute('title'), + prefix: prefix, + transform: transform, + symbol: symbol, + mask: mask, + extra: { + classes: extraClasses, + styles: extraStyles, + attributes: extraAttributes + } + }; +} + +function MissingIcon(error) { + this.name = 'MissingIcon'; + this.message = error || 'Icon unavailable'; + this.stack = new Error().stack; +} + +MissingIcon.prototype = Object.create(Error.prototype); +MissingIcon.prototype.constructor = MissingIcon; + +var FILL = { fill: 'currentColor' }; +var ANIMATION_BASE = { + attributeType: 'XML', + repeatCount: 'indefinite', + dur: '2s' +}; +var RING = { + tag: 'path', + attributes: _extends({}, FILL, { + d: 'M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z' + }) +}; +var OPACITY_ANIMATE = _extends({}, ANIMATION_BASE, { + attributeName: 'opacity' +}); +var DOT = { + tag: 'circle', + attributes: _extends({}, FILL, { + cx: '256', + cy: '364', + r: '28' + }), + children: [{ tag: 'animate', attributes: _extends({}, ANIMATION_BASE, { attributeName: 'r', values: '28;14;28;28;14;28;' }) }, { tag: 'animate', attributes: _extends({}, OPACITY_ANIMATE, { values: '1;0;1;1;0;1;' }) }] +}; +var QUESTION = { + tag: 'path', + attributes: _extends({}, FILL, { + opacity: '1', + d: 'M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z' + }), + children: [{ tag: 'animate', attributes: _extends({}, OPACITY_ANIMATE, { values: '1;0;0;0;0;1;' }) }] +}; +var EXCLAMATION = { + tag: 'path', + attributes: _extends({}, FILL, { + opacity: '0', + d: 'M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z' + }), + children: [{ tag: 'animate', attributes: _extends({}, OPACITY_ANIMATE, { values: '0;0;1;1;0;0;' }) }] +}; + +var missing = { tag: 'g', children: [RING, DOT, QUESTION, EXCLAMATION] }; + +var styles = namespace.styles; + +var LAYERS_TEXT_CLASSNAME = 'fa-layers-text'; +var FONT_FAMILY_PATTERN = /Font Awesome 5 (Solid|Regular|Light|Brands|Free|Pro)/; +var STYLE_TO_PREFIX = { + 'Solid': 'fas', + 'Regular': 'far', + 'Light': 'fal', + 'Brands': 'fab' +}; +var FONT_WEIGHT_TO_PREFIX = { + '900': 'fas', + '400': 'far', + '300': 'fal' +}; + +function findIcon(iconName, prefix) { + var val = { + found: false, + width: 512, + height: 512, + icon: missing + }; + + if (iconName && prefix && styles[prefix] && styles[prefix][iconName]) { + var icon = styles[prefix][iconName]; + var width = icon[0]; + var height = icon[1]; + var vectorData = icon.slice(4); + + val = { + found: true, + width: width, + height: height, + icon: { tag: 'path', attributes: { fill: 'currentColor', d: vectorData[0] } } + }; + } else if (iconName && prefix && !config.showMissingIcons) { + throw new MissingIcon('Icon is missing for prefix ' + prefix + ' with icon name ' + iconName); + } + + return val; +} + +function generateSvgReplacementMutation(node, nodeMeta) { + var iconName = nodeMeta.iconName, + title = nodeMeta.title, + prefix = nodeMeta.prefix, + transform = nodeMeta.transform, + symbol = nodeMeta.symbol, + mask = nodeMeta.mask, + extra = nodeMeta.extra; + + + return [node, makeInlineSvgAbstract({ + icons: { + main: findIcon(iconName, prefix), + mask: findIcon(mask.iconName, mask.prefix) + }, + prefix: prefix, + iconName: iconName, + transform: transform, + symbol: symbol, + mask: mask, + title: title, + extra: extra, + watchable: true + })]; +} + +function generateLayersText(node, nodeMeta) { + var title = nodeMeta.title, + transform = nodeMeta.transform, + extra = nodeMeta.extra; + + + var width = null; + var height = null; + + if (IS_IE) { + var computedFontSize = parseInt(getComputedStyle(node).fontSize, 10); + var boundingClientRect = node.getBoundingClientRect(); + width = boundingClientRect.width / computedFontSize; + height = boundingClientRect.height / computedFontSize; + } + + if (config.autoA11y && !title) { + extra.attributes['aria-hidden'] = 'true'; + } + + return [node, makeLayersTextAbstract({ + content: node.innerHTML, + width: width, + height: height, + transform: transform, + title: title, + extra: extra, + watchable: true + })]; +} + +function generateMutation(node) { + var nodeMeta = parseMeta(node); + + if (~nodeMeta.extra.classes.indexOf(LAYERS_TEXT_CLASSNAME)) { + return generateLayersText(node, nodeMeta); + } else { + return generateSvgReplacementMutation(node, nodeMeta); + } +} + +function searchPseudoElements(root) { + if (!IS_DOM) return; + + var end = perf.begin('searchPseudoElements'); + + disableObservation(function () { + toArray(root.querySelectorAll('*')).filter(function (n) { + return n.parentNode !== document.head && !~TAGNAMES_TO_SKIP_FOR_PSEUDOELEMENTS.indexOf(n.tagName.toUpperCase()) && !n.getAttribute(DATA_FA_PSEUDO_ELEMENT) && (!n.parentNode || n.parentNode.tagName !== 'svg'); + }).forEach(function (node) { + [':before', ':after'].forEach(function (pos) { + var children = toArray(node.children); + var alreadyProcessedPseudoElement = children.filter(function (c) { + return c.getAttribute(DATA_FA_PSEUDO_ELEMENT) === pos; + })[0]; + + var styles = WINDOW.getComputedStyle(node, pos); + var fontFamily = styles.getPropertyValue('font-family').match(FONT_FAMILY_PATTERN); + var fontWeight = styles.getPropertyValue('font-weight'); + + if (alreadyProcessedPseudoElement && !fontFamily) { + // If we've already processed it but the current computed style does not result in a font-family, + // that probably means that a class name that was previously present to make the icon has been + // removed. So we now should delete the icon. + node.removeChild(alreadyProcessedPseudoElement); + } else if (fontFamily) { + var content = styles.getPropertyValue('content'); + var prefix = ~['Light', 'Regular', 'Solid', 'Brands'].indexOf(fontFamily[1]) ? STYLE_TO_PREFIX[fontFamily[1]] : FONT_WEIGHT_TO_PREFIX[fontWeight]; + var iconName = byUnicode(prefix, toHex(content.length === 3 ? content.substr(1, 1) : content)); + // Only convert the pseudo element in this :before/:after position into an icon if we haven't + // already done so with the same prefix and iconName + if (!alreadyProcessedPseudoElement || alreadyProcessedPseudoElement.getAttribute(DATA_PREFIX) !== prefix || alreadyProcessedPseudoElement.getAttribute(DATA_ICON) !== iconName) { + if (alreadyProcessedPseudoElement) { + // Delete the old one, since we're replacing it with a new one + node.removeChild(alreadyProcessedPseudoElement); + } + + var extra = blankMeta.extra; + + extra.attributes[DATA_FA_PSEUDO_ELEMENT] = pos; + var abstract = makeInlineSvgAbstract(_extends({}, blankMeta, { + icons: { + main: findIcon(iconName, prefix), + mask: emptyCanonicalIcon() + }, + prefix: prefix, + iconName: iconName, + extra: extra, + watchable: true + })); + + var element = DOCUMENT.createElement('svg'); + + if (pos === ':before') { + node.insertBefore(element, node.firstChild); + } else { + node.appendChild(element); + } + + element.outerHTML = abstract.map(function (a) { + return toHtml(a); + }).join('\n'); + } + } + }); + }); + }); + + end(); +} + +function onTree(root) { + var callback = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + + if (!IS_DOM) return; + + var htmlClassList = DOCUMENT.documentElement.classList; + var hclAdd = function hclAdd(suffix) { + return htmlClassList.add(HTML_CLASS_I2SVG_BASE_CLASS + '-' + suffix); + }; + var hclRemove = function hclRemove(suffix) { + return htmlClassList.remove(HTML_CLASS_I2SVG_BASE_CLASS + '-' + suffix); + }; + var prefixes = Object.keys(styles); + var prefixesDomQuery = ['.' + LAYERS_TEXT_CLASSNAME + ':not([' + DATA_FA_I2SVG + '])'].concat(prefixes.map(function (p) { + return '.' + p + ':not([' + DATA_FA_I2SVG + '])'; + })).join(', '); + + if (prefixesDomQuery.length === 0) { + return; + } + + var candidates = toArray(root.querySelectorAll(prefixesDomQuery)); + + if (candidates.length > 0) { + hclAdd('pending'); + hclRemove('complete'); + } else { + return; + } + + var mark = perf.begin('onTree'); + + var mutations = candidates.reduce(function (acc, node) { + try { + var mutation = generateMutation(node); + + if (mutation) { + acc.push(mutation); + } + } catch (e) { + if (!PRODUCTION) { + if (e instanceof MissingIcon) { + console.error(e); + } + } + } + + return acc; + }, []); + + mark(); + + perform(mutations, function () { + hclAdd('active'); + hclAdd('complete'); + hclRemove('pending'); + + if (typeof callback === 'function') callback(); + }); +} + +function onNode(node) { + var callback = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + + var mutation = generateMutation(node); + + if (mutation) { + perform([mutation], callback); + } +} + +var baseStyles = "svg:not(:root).svg-inline--fa {\n overflow: visible; }\n\n.svg-inline--fa {\n display: inline-block;\n font-size: inherit;\n height: 1em;\n overflow: visible;\n vertical-align: -.125em; }\n .svg-inline--fa.fa-lg {\n vertical-align: -.225em; }\n .svg-inline--fa.fa-w-1 {\n width: 0.0625em; }\n .svg-inline--fa.fa-w-2 {\n width: 0.125em; }\n .svg-inline--fa.fa-w-3 {\n width: 0.1875em; }\n .svg-inline--fa.fa-w-4 {\n width: 0.25em; }\n .svg-inline--fa.fa-w-5 {\n width: 0.3125em; }\n .svg-inline--fa.fa-w-6 {\n width: 0.375em; }\n .svg-inline--fa.fa-w-7 {\n width: 0.4375em; }\n .svg-inline--fa.fa-w-8 {\n width: 0.5em; }\n .svg-inline--fa.fa-w-9 {\n width: 0.5625em; }\n .svg-inline--fa.fa-w-10 {\n width: 0.625em; }\n .svg-inline--fa.fa-w-11 {\n width: 0.6875em; }\n .svg-inline--fa.fa-w-12 {\n width: 0.75em; }\n .svg-inline--fa.fa-w-13 {\n width: 0.8125em; }\n .svg-inline--fa.fa-w-14 {\n width: 0.875em; }\n .svg-inline--fa.fa-w-15 {\n width: 0.9375em; }\n .svg-inline--fa.fa-w-16 {\n width: 1em; }\n .svg-inline--fa.fa-w-17 {\n width: 1.0625em; }\n .svg-inline--fa.fa-w-18 {\n width: 1.125em; }\n .svg-inline--fa.fa-w-19 {\n width: 1.1875em; }\n .svg-inline--fa.fa-w-20 {\n width: 1.25em; }\n .svg-inline--fa.fa-pull-left {\n margin-right: .3em;\n width: auto; }\n .svg-inline--fa.fa-pull-right {\n margin-left: .3em;\n width: auto; }\n .svg-inline--fa.fa-border {\n height: 1.5em; }\n .svg-inline--fa.fa-li {\n width: 2em; }\n .svg-inline--fa.fa-fw {\n width: 1.25em; }\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0; }\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -.125em;\n width: 1em; }\n .fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center; }\n\n.fa-layers-text, .fa-layers-counter {\n display: inline-block;\n position: absolute;\n text-align: center; }\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center; }\n\n.fa-layers-counter {\n background-color: #ff253a;\n border-radius: 1em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #fff;\n height: 1.5em;\n line-height: 1;\n max-width: 5em;\n min-width: 1.5em;\n overflow: hidden;\n padding: .25em;\n right: 0;\n text-overflow: ellipsis;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right; }\n\n.fa-layers-bottom-right {\n bottom: 0;\n right: 0;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right; }\n\n.fa-layers-bottom-left {\n bottom: 0;\n left: 0;\n right: auto;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left; }\n\n.fa-layers-top-right {\n right: 0;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right; }\n\n.fa-layers-top-left {\n left: 0;\n right: auto;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top left;\n transform-origin: top left; }\n\n.fa-lg {\n font-size: 1.33333em;\n line-height: 0.75em;\n vertical-align: -.0667em; }\n\n.fa-xs {\n font-size: .75em; }\n\n.fa-sm {\n font-size: .875em; }\n\n.fa-1x {\n font-size: 1em; }\n\n.fa-2x {\n font-size: 2em; }\n\n.fa-3x {\n font-size: 3em; }\n\n.fa-4x {\n font-size: 4em; }\n\n.fa-5x {\n font-size: 5em; }\n\n.fa-6x {\n font-size: 6em; }\n\n.fa-7x {\n font-size: 7em; }\n\n.fa-8x {\n font-size: 8em; }\n\n.fa-9x {\n font-size: 9em; }\n\n.fa-10x {\n font-size: 10em; }\n\n.fa-fw {\n text-align: center;\n width: 1.25em; }\n\n.fa-ul {\n list-style-type: none;\n margin-left: 2.5em;\n padding-left: 0; }\n .fa-ul > li {\n position: relative; }\n\n.fa-li {\n left: -2em;\n position: absolute;\n text-align: center;\n width: 2em;\n line-height: inherit; }\n\n.fa-border {\n border: solid 0.08em #eee;\n border-radius: .1em;\n padding: .2em .25em .15em; }\n\n.fa-pull-left {\n float: left; }\n\n.fa-pull-right {\n float: right; }\n\n.fa.fa-pull-left,\n.fas.fa-pull-left,\n.far.fa-pull-left,\n.fal.fa-pull-left,\n.fab.fa-pull-left {\n margin-right: .3em; }\n\n.fa.fa-pull-right,\n.fas.fa-pull-right,\n.far.fa-pull-right,\n.fal.fa-pull-right,\n.fab.fa-pull-right {\n margin-left: .3em; }\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear; }\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8); }\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n.fa-rotate-90 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg); }\n\n.fa-rotate-180 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg); }\n\n.fa-rotate-270 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg); }\n\n.fa-flip-horizontal {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1); }\n\n.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1); }\n\n.fa-flip-horizontal.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1); }\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n -webkit-filter: none;\n filter: none; }\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n position: relative;\n width: 2em; }\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0; }\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1em; }\n\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2em; }\n\n.fa-inverse {\n color: #fff; }\n\n.sr-only {\n border: 0;\n clip: rect(0, 0, 0, 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px; }\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n clip: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n position: static;\n width: auto; }\n"; + +var css = function () { + var dfp = DEFAULT_FAMILY_PREFIX; + var drc = DEFAULT_REPLACEMENT_CLASS; + var fp = config.familyPrefix; + var rc = config.replacementClass; + var s = baseStyles; + + if (fp !== dfp || rc !== drc) { + var dPatt = new RegExp('\\.' + dfp + '\\-', 'g'); + var rPatt = new RegExp('\\.' + drc, 'g'); + + s = s.replace(dPatt, '.' + fp + '-').replace(rPatt, '.' + rc); + } + + return s; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var Library = function () { + function Library() { + classCallCheck(this, Library); + + this.definitions = {}; + } + + createClass(Library, [{ + key: 'add', + value: function add() { + var _this = this; + + for (var _len = arguments.length, definitions = Array(_len), _key = 0; _key < _len; _key++) { + definitions[_key] = arguments[_key]; + } + + var additions = definitions.reduce(this._pullDefinitions, {}); + + Object.keys(additions).forEach(function (key) { + _this.definitions[key] = _extends({}, _this.definitions[key] || {}, additions[key]); + define(key, additions[key]); + build(); + }); + } + }, { + key: 'reset', + value: function reset() { + this.definitions = {}; + } + }, { + key: '_pullDefinitions', + value: function _pullDefinitions(additions, definition) { + var normalized = definition.prefix && definition.iconName && definition.icon ? { 0: definition } : definition; + + Object.keys(normalized).map(function (key) { + var _normalized$key = normalized[key], + prefix = _normalized$key.prefix, + iconName = _normalized$key.iconName, + icon = _normalized$key.icon; + + + if (!additions[prefix]) additions[prefix] = {}; + + additions[prefix][iconName] = icon; + }); + + return additions; + } + }]); + return Library; +}(); + +function prepIcon(icon) { + var width = icon[0]; + var height = icon[1]; + var vectorData = icon.slice(4); + + return { + found: true, + width: width, + height: height, + icon: { tag: 'path', attributes: { fill: 'currentColor', d: vectorData[0] } } + }; +} + +function ensureCss() { + if (config.autoAddCss && !_cssInserted) { + insertCss(css()); + _cssInserted = true; + } +} + +function apiObject(val, abstractCreator) { + Object.defineProperty(val, 'abstract', { + get: abstractCreator + }); + + Object.defineProperty(val, 'html', { + get: function get() { + return val.abstract.map(function (a) { + return toHtml(a); + }); + } + }); + + Object.defineProperty(val, 'node', { + get: function get() { + if (!IS_DOM) return; + + var container = DOCUMENT.createElement('div'); + container.innerHTML = val.html; + return container.children; + } + }); + + return val; +} + +function findIconDefinition(params) { + var _params$prefix = params.prefix, + prefix = _params$prefix === undefined ? 'fa' : _params$prefix, + iconName = params.iconName; + + + if (!iconName) return; + + return iconFromMapping(library.definitions, prefix, iconName) || iconFromMapping(namespace.styles, prefix, iconName); +} + +function resolveIcons(next) { + return function (maybeIconDefinition) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + + var iconDefinition = (maybeIconDefinition || {}).icon ? maybeIconDefinition : findIconDefinition(maybeIconDefinition || {}); + + var mask = params.mask; + + + if (mask) { + mask = (mask || {}).icon ? mask : findIconDefinition(mask || {}); + } + + return next(iconDefinition, _extends({}, params, { mask: mask })); + }; +} + +var library = new Library(); + +var noAuto = function noAuto() { + config.autoReplaceSvg = false; + config.observeMutations = false; + + disconnect(); +}; + +var _cssInserted = false; + +var dom = { + i2svg: function i2svg() { + var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + + if (IS_DOM) { + ensureCss(); + + var _params$node = params.node, + node = _params$node === undefined ? DOCUMENT : _params$node, + _params$callback = params.callback, + callback = _params$callback === undefined ? function () {} : _params$callback; + + + if (config.searchPseudoElements) { + searchPseudoElements(node); + } + + onTree(node, callback); + } + }, + + css: css, + + insertCss: function insertCss$$1() { + if (!_cssInserted) { + insertCss(css()); + _cssInserted = true; + } + }, + + watch: function watch() { + var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var autoReplaceSvgRoot = params.autoReplaceSvgRoot, + observeMutationsRoot = params.observeMutationsRoot; + + + if (config.autoReplaceSvg === false) { + config.autoReplaceSvg = true; + } + + config.observeMutations = true; + + domready(function () { + autoReplace({ + autoReplaceSvgRoot: autoReplaceSvgRoot + }); + + observe({ + treeCallback: onTree, + nodeCallback: onNode, + pseudoElementsCallback: searchPseudoElements, + observeMutationsRoot: observeMutationsRoot + }); + }); + } +}; + +var parse = { + transform: function transform(transformString) { + return parseTransformString(transformString); + } +}; + +var icon = resolveIcons(function (iconDefinition) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _params$transform = params.transform, + transform = _params$transform === undefined ? meaninglessTransform : _params$transform, + _params$symbol = params.symbol, + symbol = _params$symbol === undefined ? false : _params$symbol, + _params$mask = params.mask, + mask = _params$mask === undefined ? null : _params$mask, + _params$title = params.title, + title = _params$title === undefined ? null : _params$title, + _params$classes = params.classes, + classes = _params$classes === undefined ? [] : _params$classes, + _params$attributes = params.attributes, + attributes = _params$attributes === undefined ? {} : _params$attributes, + _params$styles = params.styles, + styles = _params$styles === undefined ? {} : _params$styles; + + + if (!iconDefinition) return; + + var prefix = iconDefinition.prefix, + iconName = iconDefinition.iconName, + icon = iconDefinition.icon; + + + return apiObject(_extends({ type: 'icon' }, iconDefinition), function () { + ensureCss(); + + if (config.autoA11y) { + if (title) { + attributes['aria-labelledby'] = config.replacementClass + '-title-' + nextUniqueId(); + } else { + attributes['aria-hidden'] = 'true'; + } + } + + return makeInlineSvgAbstract({ + icons: { + main: prepIcon(icon), + mask: mask ? prepIcon(mask.icon) : { found: false, width: null, height: null, icon: {} } + }, + prefix: prefix, + iconName: iconName, + transform: _extends({}, meaninglessTransform, transform), + symbol: symbol, + title: title, + extra: { + attributes: attributes, + styles: styles, + classes: classes + } + }); + }); +}); + +var text = function text(content) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _params$transform2 = params.transform, + transform = _params$transform2 === undefined ? meaninglessTransform : _params$transform2, + _params$title2 = params.title, + title = _params$title2 === undefined ? null : _params$title2, + _params$classes2 = params.classes, + classes = _params$classes2 === undefined ? [] : _params$classes2, + _params$attributes2 = params.attributes, + attributes = _params$attributes2 === undefined ? {} : _params$attributes2, + _params$styles2 = params.styles, + styles = _params$styles2 === undefined ? {} : _params$styles2; + + + return apiObject({ type: 'text', content: content }, function () { + ensureCss(); + + return makeLayersTextAbstract({ + content: content, + transform: _extends({}, meaninglessTransform, transform), + title: title, + extra: { + attributes: attributes, + styles: styles, + classes: [config.familyPrefix + '-layers-text'].concat(toConsumableArray(classes)) + } + }); + }); +}; + +var counter = function counter(content) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _params$title3 = params.title, + title = _params$title3 === undefined ? null : _params$title3, + _params$classes3 = params.classes, + classes = _params$classes3 === undefined ? [] : _params$classes3, + _params$attributes3 = params.attributes, + attributes = _params$attributes3 === undefined ? {} : _params$attributes3, + _params$styles3 = params.styles, + styles = _params$styles3 === undefined ? {} : _params$styles3; + + + return apiObject({ type: 'counter', content: content }, function () { + ensureCss(); + + return makeLayersCounterAbstract({ + content: content.toString(), + title: title, + extra: { + attributes: attributes, + styles: styles, + classes: [config.familyPrefix + '-layers-counter'].concat(toConsumableArray(classes)) + } + }); + }); +}; + +var layer = function layer(assembler) { + return apiObject({ type: 'layer' }, function () { + ensureCss(); + + var children = []; + + assembler(function (args) { + Array.isArray(args) ? args.map(function (a) { + children = children.concat(a.abstract); + }) : children = children.concat(args.abstract); + }); + + return [{ + tag: 'span', + attributes: { class: config.familyPrefix + '-layers' }, + children: children + }]; + }); +}; + +var api = { + noAuto: noAuto, + config: config, + dom: dom, + library: library, + parse: parse, + findIconDefinition: findIconDefinition, + icon: icon, + text: text, + counter: counter, + layer: layer, + toHtml: toHtml +}; + +var autoReplace = function autoReplace() { + var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var _params$autoReplaceSv = params.autoReplaceSvgRoot, + autoReplaceSvgRoot = _params$autoReplaceSv === undefined ? DOCUMENT : _params$autoReplaceSv; + + + if (Object.keys(namespace.styles).length > 0 && IS_DOM && config.autoReplaceSvg) api.dom.i2svg({ node: autoReplaceSvgRoot }); +}; + +function bootstrap() { + if (IS_BROWSER) { + if (!WINDOW.FontAwesome) { + WINDOW.FontAwesome = api; + } + + domready(function () { + autoReplace(); + + observe({ + treeCallback: onTree, + nodeCallback: onNode, + pseudoElementsCallback: searchPseudoElements + }); + }); + } + + namespace.hooks = _extends({}, namespace.hooks, { + + addPack: function addPack(prefix, icons) { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, icons); + + build(); + autoReplace(); + }, + + addShims: function addShims(shims) { + var _namespace$shims; + + (_namespace$shims = namespace.shims).push.apply(_namespace$shims, toConsumableArray(shims)); + + build(); + autoReplace(); + } + }); +} + +bunker(bootstrap); + +}()); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/all.min.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/all.min.js new file mode 100644 index 0000000000..a68df091bc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/all.min.js @@ -0,0 +1,2460 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +!function() { + "use strict"; + var c = {}; + try { + "undefined" != typeof window && (c = window); + } catch (c) {} + var l = (c.navigator || {}).userAgent, h = void 0 === l ? "" : l, z = c, v = (~h.indexOf("MSIE") || h.indexOf("Trident/"), + "___FONT_AWESOME___"), m = function() { + try { + return !1; + } catch (c) { + return !1; + } + }(), s = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ], e = s.concat([ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ]); + [ "xs", "sm", "lg", "fw", "ul", "li", "border", "pull-left", "pull-right", "spin", "pulse", "rotate-90", "rotate-180", "rotate-270", "flip-horizontal", "flip-vertical", "stack", "stack-1x", "stack-2x", "inverse", "layers", "layers-text", "layers-counter" ].concat(s.map(function(c) { + return c + "x"; + })).concat(e.map(function(c) { + return "w-" + c; + })); + var a = z || {}; + a[v] || (a[v] = {}), a[v].styles || (a[v].styles = {}), a[v].hooks || (a[v].hooks = {}), + a[v].shims || (a[v].shims = []); + var t = a[v], M = Object.assign || function(c) { + for (var l = 1; l < arguments.length; l++) { + var h = arguments[l]; + for (var z in h) Object.prototype.hasOwnProperty.call(h, z) && (c[z] = h[z]); + } + return c; + }; + var f = { + "500px": [ 448, 512, [], "f26e", "M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3.3-16 16.5-21.2 23.9l-.5.6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8zm63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2zM393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4zM213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6.2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6z" ], + "accessible-icon": [ 448, 512, [], "f368", "M423.9 255.8L411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7zm-64.9-154c28.1 0 50.9-22.8 50.9-50.9C409.9 22.8 387.1 0 359 0c-28.1 0-50.9 22.8-50.9 50.9 0 28.1 22.8 50.9 50.9 50.9zM179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3z" ], + accusoft: [ 640, 512, [], "f369", "M482.2 372.1C476.5 365.2 250 75 242.3 65.5c-13.7-17.2 0-16.8 19.2-16.9 9.7-.1 106.3-.6 116.5-.6 24.1-.1 28.7.6 38.4 12.8 2.1 2.7 205.1 245.8 207.2 248.3 5.5 6.7 15.2 19.1 7.2 23.4-2.4 1.3-114.6 47.7-117.8 48.9-10.1 4-17.5 6.8-30.8-9.3m114.7-5.6s-115 50.4-117.5 51.6c-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2-2.3-.3-24.6-4.7-38-7.2m-326-181.3s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3v-1l-51.2-65.8" ], + adn: [ 496, 512, [], "f170", "M248 167.5l64.9 98.8H183.1l64.9-98.8zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7h30.2z" ], + adversal: [ 512, 512, [], "f36a", "M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2zM178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4.4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3zm286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7.4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9zm3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6.4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1.2-.1.3-.1.5zm-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2.4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1zm-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8z" ], + affiliatetheme: [ 512, 512, [], "f36b", "M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2 29.1 21.6 11.1 96.6-40.2 167.5zm351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9.1-8.5-.3-16.8-1-25z" ], + algolia: [ 448, 512, [], "f36c", "M229.3 182.6c-49.3 0-89.2 39.9-89.2 89.2 0 49.3 39.9 89.2 89.2 89.2s89.2-39.9 89.2-89.2c0-49.3-40-89.2-89.2-89.2zm62.7 56.6l-58.9 30.6c-1.8.9-3.8-.4-3.8-2.3V201c0-1.5 1.3-2.7 2.7-2.6 26.2 1 48.9 15.7 61.1 37.1.7 1.3.2 3-1.1 3.7zM389.1 32H58.9C26.4 32 0 58.4 0 90.9V421c0 32.6 26.4 59 58.9 59H389c32.6 0 58.9-26.4 58.9-58.9V90.9C448 58.4 421.6 32 389.1 32zm-202.6 84.7c0-10.8 8.7-19.5 19.5-19.5h45.3c10.8 0 19.5 8.7 19.5 19.5v15.4c0 1.8-1.7 3-3.3 2.5-12.3-3.4-25.1-5.1-38.1-5.1-13.5 0-26.7 1.8-39.4 5.5-1.7.5-3.4-.8-3.4-2.5v-15.8zm-84.4 37l9.2-9.2c7.6-7.6 19.9-7.6 27.5 0l7.7 7.7c1.1 1.1 1 3-.3 4-6.2 4.5-12.1 9.4-17.6 14.9-5.4 5.4-10.4 11.3-14.8 17.4-1 1.3-2.9 1.5-4 .3l-7.7-7.7c-7.6-7.5-7.6-19.8 0-27.4zm127.2 244.8c-70 0-126.6-56.7-126.6-126.6s56.7-126.6 126.6-126.6c70 0 126.6 56.6 126.6 126.6 0 69.8-56.7 126.6-126.6 126.6z" ], + amazon: [ 448, 512, [], "f270", "M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z" ], + "amazon-pay": [ 611, 512, [], "f42c", "M0 325.2c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7 40.7 20.4 83.2 35.6 127.4 46.3 20.9 5 41.9 9 63.2 11.8 31.5 4.2 63.2 6 95 5.2 17.4-.4 34.8-1.8 52.1-3.8 56.4-6.7 110.9-20.8 163.3-42.8 2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9-2.8 2.8-6.3 5.1-9.6 7.4-30.7 21.1-64.2 36.4-99.6 47.9-24.6 7.9-49.6 13.8-75.1 17.6-17.6 2.6-35.4 4.4-53.2 4.8-.8 0-1.7.2-2.5.3H294c-.8-.1-1.7-.3-2.5-.3-3.6-.2-7.2-.3-10.7-.4-16.9-.7-33.7-2.6-50.4-5.3-27.4-4.5-54.2-11.4-80.4-20.9-54.1-19.6-102.6-48.6-145.6-87-1.8-1.6-3-3.8-4.4-5.7v-2zM158 65c-1.4.2-2.9.4-4.3.6-14 1.7-26.6 6.9-38 15.1-2.4 1.7-4.6 3.5-7.1 5.4-.2-.5-.4-1-.4-1.4-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6H87.8c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3V215c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zm-47.4 41.9c0-1.5.4-2.4 1.7-3.3 13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9-1.2-.9-1.7-1.7-1.7-3.3.1-14.1 0-28.1 0-42.2 0-14 .1-28 0-42.1zM316.3 65c-1 .1-2 .3-2.9.4-9.8.5-19.4 1.7-28.9 4.1-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9 0 .4-.1.9-.2 1.4-.5-.1-.9 0-1.3-.1-10.5-2.5-21.1-4.3-32-4.9-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4.4-.4.9-.7 1.6-1.1.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0 2.7-.1 4.5-1.9 4.8-4.7.1-.9.1-1.9.1-2.8v-106c0-4.3-.2-8.6-.9-12.9-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1zm35 127.7c0 1.3-.4 2.2-1.5 3-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8-6.3-2.5-10.4-6.9-12.4-13.3s-2-13-.1-19.4c2.5-8.3 8.4-13 16.4-15.6 8.1-2.6 16.5-3 24.8-2.2 8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3-.1 4.7-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3-6.8-2.3-13.9-3.3-21-3.9-13.1-1.1-26.2-.5-39.2 1.9-14.3 2.7-27.9 7.3-40 15.6-1.4 1-2.8 2.1-3.7 3.5-.7 1.1-.9 2.8-.5 4 .4 1.5 2.1 1.9 3.6 1.8.7 0 1.5 0 2.2-.1 7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9 4.8.3 9.7 1.4 14.4 2.7 5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1-.4 1-.8 2-1 3-.5 2.9 1.2 4.8 4.1 4.1 1.7-.4 3.6-1.3 4.8-2.5 4.4-4.3 8.9-8.6 12.7-13.4 12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9v-17.3zM479.1 198.9c-12.9-35.7-25.8-71.5-38.7-107.2-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5.5 2.1 1.1 4.1 1.9 6.1 19.6 48.5 39.3 97.1 59.1 145.5 1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3-5.1 1.4-10.2 1.6-15.4 1.1-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8-.1 3.3-.1 6.6 0 9.9.1 5.5 2 8 7.4 8.9 5.6 1 11.3 1.9 16.9 2 17.1.4 30.7-6.5 39.5-21.4 3.5-5.9 6.7-12.1 9.2-18.4 23.7-59.8 47.1-119.7 70.6-179.6.7-1.8 1.3-3.6 1.6-5.5.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0-3.7 0-6.3 1.6-7.7 5.2-.5 1.4-1.1 2.7-1.6 4.1-11.6 33.3-23.2 66.6-34.8 100-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z" ], + amilia: [ 448, 512, [], "f36d", "M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm-87.9 327.7c0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5V380c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7" ], + android: [ 448, 512, [], "f17b", "M89.6 204.5v115.8c0 15.4-12.1 27.7-27.5 27.7-15.3 0-30.1-12.4-30.1-27.7V204.5c0-15.1 14.8-27.5 30.1-27.5 15.1 0 27.5 12.4 27.5 27.5zm10.8 157c0 16.4 13.2 29.6 29.6 29.6h19.9l.3 61.1c0 36.9 55.2 36.6 55.2 0v-61.1h37.2v61.1c0 36.7 55.5 36.8 55.5 0v-61.1h20.2c16.2 0 29.4-13.2 29.4-29.6V182.1H100.4v179.4zm248-189.1H99.3c0-42.8 25.6-80 63.6-99.4l-19.1-35.3c-2.8-4.9 4.3-8 6.7-3.8l19.4 35.6c34.9-15.5 75-14.7 108.3 0L297.5 34c2.5-4.3 9.5-1.1 6.7 3.8L285.1 73c37.7 19.4 63.3 56.6 63.3 99.4zm-170.7-55.5c0-5.7-4.6-10.5-10.5-10.5-5.7 0-10.2 4.8-10.2 10.5s4.6 10.5 10.2 10.5c5.9 0 10.5-4.8 10.5-10.5zm113.4 0c0-5.7-4.6-10.5-10.2-10.5-5.9 0-10.5 4.8-10.5 10.5s4.6 10.5 10.5 10.5c5.6 0 10.2-4.8 10.2-10.5zm94.8 60.1c-15.1 0-27.5 12.1-27.5 27.5v115.8c0 15.4 12.4 27.7 27.5 27.7 15.4 0 30.1-12.4 30.1-27.7V204.5c0-15.4-14.8-27.5-30.1-27.5z" ], + angellist: [ 448, 512, [], "f209", "M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7zM311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6 33.1-93.7zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8zM140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7.1-7.7 12.7-21.1 20.4-21.1zm184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3.3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7.1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7zm-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1z" ], + angrycreative: [ 640, 512, [], "f36e", "M640 238.2l-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4 93.1-6.2zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9-12.8 120zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3-126.2 7.7zm-44.3-70.2l-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7 2.7-29.8zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1zm21.1 70.8l5.8-60c-5 13.5-14.7 21.1-27.9 26.6l22.1 33.4zm135.4-45l-7.9-37.8-15.8 39.3 23.7-1.5zm-170.1-74.6l-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8.3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2-56.8 3.7zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1.6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2l-2.9 28.8zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3zm-201.3 8.2l23.8-1.6-8.3-37.6-15.5 39.2z" ], + angular: [ 415, 512, [], "f420", "M169.7 268.1h76.2l-38.1-91.6-38.1 91.6zM207.8 32L0 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7L207.8 32zM338 373.8h-48.6l-26.2-65.4H152.6l-26.2 65.4H77.7L207.8 81.5 338 373.8z" ], + "app-store": [ 512, 512, [], "f36f", "M255.9 120.9l9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5 9.8 5.6 13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4 0-11.3 9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5l8.9 15.7zm-78.7 218l-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5-9.8-5.6-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6zm168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4 0 11.3-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216z" ], + "app-store-ios": [ 448, 512, [], "f370", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7c16.1-4.9 29.3-1.1 39.6 11.4L127 384.5zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40zm98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20z" ], + apper: [ 640, 512, [], "f371", "M42.1 239.1c22.2 0 29 2.8 33.5 14.6h.8v-22.9c0-11.3-4.8-15.4-17.9-15.4-11.3 0-14.4 2.5-15.1 12.8H4.8c.3-13.9 1.5-19.1 5.8-24.4C17.9 195 29.5 192 56.7 192c33 0 47.1 5 53.9 18.9 2 4.3 4 15.6 4 23.7v76.3H76.3l1.3-19.1h-1c-5.3 15.6-13.6 20.4-35.5 20.4-30.3 0-41.1-10.1-41.1-37.3 0-25.2 12.3-35.8 42.1-35.8zm17.1 48.1c13.1 0 16.9-3 16.9-13.4 0-9.1-4.3-11.6-19.6-11.6-13.1 0-17.9 3-17.9 12.1-.1 10.4 3.7 12.9 20.6 12.9zm77.8-94.9h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.2 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3H137v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm57.9-60.7h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.3 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3h-39.5v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm53.8-3.8c0-25.4 3.3-37.8 12.3-45.8 8.8-8.1 22.2-11.3 45.1-11.3 42.8 0 55.7 12.8 55.7 55.7v11.1h-75.3c-.3 2-.3 4-.3 4.8 0 16.9 4.5 21.9 20.1 21.9 13.9 0 17.9-3 17.9-13.9h37.5v2.3c0 9.8-2.5 18.9-6.8 24.7-7.3 9.8-19.6 13.6-44.3 13.6-27.5 0-41.6-3.3-50.6-12.3-8.5-8.5-11.3-21.3-11.3-50.8zm76.4-11.6c-.3-1.8-.3-3.3-.3-3.8 0-12.3-3.3-14.6-19.6-14.6-14.4 0-17.1 3-18.1 15.1l-.3 3.3h38.3zm55.6-45.3h38.3l-1.8 19.9h.7c6.8-14.9 14.4-20.2 29.7-20.2 10.8 0 19.1 3.3 23.4 9.3 5.3 7.3 6.8 14.4 6.8 34 0 1.5 0 5 .2 9.3h-35c.3-1.8.3-3.3.3-4 0-15.4-2-19.4-10.3-19.4-6.3 0-10.8 3.3-13.1 9.3-1 3-1 4.3-1 12.3v68h-38.3V192.3z" ], + apple: [ 376, 512, [], "f179", "M314.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C59.3 141.2 0 184.8 0 273.5c0 26.2 4.8 53.3 14.4 81.2 12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z" ], + "apple-pay": [ 640, 512, [], "f415", "M116.9 158.5c-7.5 8.9-19.5 15.9-31.5 14.9-1.5-12 4.4-24.8 11.3-32.6 7.5-9.1 20.6-15.6 31.3-16.1 1.2 12.4-3.7 24.7-11.1 33.8m10.9 17.2c-17.4-1-32.3 9.9-40.5 9.9-8.4 0-21-9.4-34.8-9.1-17.9.3-34.5 10.4-43.6 26.5-18.8 32.3-4.9 80 13.3 106.3 8.9 13 19.5 27.3 33.5 26.8 13.3-.5 18.5-8.6 34.5-8.6 16.1 0 20.8 8.6 34.8 8.4 14.5-.3 23.6-13 32.5-26 10.1-14.8 14.3-29.1 14.5-29.9-.3-.3-28-10.9-28.3-42.9-.3-26.8 21.9-39.5 22.9-40.3-12.5-18.6-32-20.6-38.8-21.1m100.4-36.2v194.9h30.3v-66.6h41.9c38.3 0 65.1-26.3 65.1-64.3s-26.4-64-64.1-64h-73.2zm30.3 25.5h34.9c26.3 0 41.3 14 41.3 38.6s-15 38.8-41.4 38.8h-34.8V165zm162.2 170.9c19 0 36.6-9.6 44.6-24.9h.6v23.4h28v-97c0-28.1-22.5-46.3-57.1-46.3-32.1 0-55.9 18.4-56.8 43.6h27.3c2.3-12 13.4-19.9 28.6-19.9 18.5 0 28.9 8.6 28.9 24.5v10.8l-37.8 2.3c-35.1 2.1-54.1 16.5-54.1 41.5.1 25.2 19.7 42 47.8 42zm8.2-23.1c-16.1 0-26.4-7.8-26.4-19.6 0-12.3 9.9-19.4 28.8-20.5l33.6-2.1v11c0 18.2-15.5 31.2-36 31.2zm102.5 74.6c29.5 0 43.4-11.3 55.5-45.4L640 193h-30.8l-35.6 115.1h-.6L537.4 193h-31.6L557 334.9l-2.8 8.6c-4.6 14.6-12.1 20.3-25.5 20.3-2.4 0-7-.3-8.9-.5v23.4c1.8.4 9.3.7 11.6.7z" ], + asymmetrik: [ 576, 512, [], "f372", "M517.5 309.2c38.8-40 58.1-80 58.5-116.1.8-65.5-59.4-118.2-169.4-135C277.9 38.4 118.1 73.6 0 140.5 52 114 110.6 92.3 170.7 82.3c74.5-20.5 153-25.4 221.3-14.8C544.5 91.3 588.8 195 490.8 299.2c-10.2 10.8-22 21.1-35 30.6L304.9 103.4 114.7 388.9c-65.6-29.4-76.5-90.2-19.1-151.2 20.8-22.2 48.3-41.9 79.5-58.1 20-12.2 39.7-22.6 62-30.7-65.1 20.3-122.7 52.9-161.6 92.9-27.7 28.6-41.4 57.1-41.7 82.9-.5 35.1 23.4 65.1 68.4 83l-34.5 51.7h101.6l22-34.4c22.2 1 45.3 0 68.6-2.7l-22.8 37.1h135.5L340 406.3c18.6-5.3 36.9-11.5 54.5-18.7l45.9 71.8H542L468.6 349c18.5-12.1 35-25.5 48.9-39.8zm-187.6 80.5l-25-40.6-32.7 53.3c-23.4 3.5-46.7 5.1-69.2 4.4l101.9-159.3 78.7 123c-17.2 7.4-35.3 13.9-53.7 19.2z" ], + audible: [ 640, 512, [], "f373", "M640 199.9v54l-320 200L0 254v-54l320 200 320-200.1zm-194.5 72l47.1-29.4c-37.2-55.8-100.7-92.6-172.7-92.6-72 0-135.5 36.7-172.6 92.4h.3c2.5-2.3 5.1-4.5 7.7-6.7 89.7-74.4 219.4-58.1 290.2 36.3zm-220.1 18.8c16.9-11.9 36.5-18.7 57.4-18.7 34.4 0 65.2 18.4 86.4 47.6l45.4-28.4c-20.9-29.9-55.6-49.5-94.8-49.5-38.9 0-73.4 19.4-94.4 49zM103.6 161.1c131.8-104.3 318.2-76.4 417.5 62.1l.7 1 48.8-30.4C517.1 112.1 424.8 58.1 319.9 58.1c-103.5 0-196.6 53.5-250.5 135.6 9.9-10.5 22.7-23.5 34.2-32.6zm467 32.7z" ], + autoprefixer: [ 640, 512, [], "f41c", "M318.4 16l-161 480h77.5l25.4-81.4h119.5L405 496h77.5L318.4 16zm-40.3 341.9l41.2-130.4h1.5l40.9 130.4h-83.6zM640 405l-10-31.4L462.1 358l19.4 56.5L640 405zm-462.1-47L10 373.7 0 405l158.5 9.4 19.4-56.4z" ], + avianex: [ 512, 512, [], "f374", "M453.1 32h-312c-38.9 0-76.2 31.2-83.3 69.7L1.2 410.3C-5.9 448.8 19.9 480 58.9 480h312c38.9 0 76.2-31.2 83.3-69.7l56.7-308.5c7-38.6-18.8-69.8-57.8-69.8zm-58.2 347.3l-32 13.5-115.4-110c-14.7 10-29.2 19.5-41.7 27.1l22.1 64.2-17.9 12.7-40.6-61-52.4-48.1 15.7-15.4 58 31.1c9.3-10.5 20.8-22.6 32.8-34.9L203 228.9l-68.8-99.8 18.8-28.9 8.9-4.8L265 207.8l4.9 4.5c19.4-18.8 33.8-32.4 33.8-32.4 7.7-6.5 21.5-2.9 30.7 7.9 9 10.5 10.6 24.7 2.7 31.3-1.8 1.3-15.5 11.4-35.3 25.6l4.5 7.3 94.9 119.4-6.3 7.9z" ], + aviato: [ 640, 512, [], "f421", "M107.2 283.5l-19-41.8H36.1l-19 41.8H0l62.2-131.4 62.2 131.4h-17.2zm-45-98.1l-19.6 42.5h39.2l-19.6-42.5zm112.7 102.4l-62.2-131.4h17.1l45.1 96 45.1-96h17l-62.1 131.4zm80.6-4.3V156.4H271v127.1h-15.5zm209.1-115.6v115.6h-17.3V167.9h-41.2v-11.5h99.6v11.5h-41.1zM640 218.8c0 9.2-1.7 17.8-5.1 25.8-3.4 8-8.2 15.1-14.2 21.1-6 6-13.1 10.8-21.1 14.2-8 3.4-16.6 5.1-25.8 5.1s-17.8-1.7-25.8-5.1c-8-3.4-15.1-8.2-21.1-14.2-6-6-10.8-13-14.2-21.1-3.4-8-5.1-16.6-5.1-25.8s1.7-17.8 5.1-25.8c3.4-8 8.2-15.1 14.2-21.1 6-6 13-8.4 21.1-11.9 8-3.4 16.6-5.1 25.8-5.1s17.8 1.7 25.8 5.1c8 3.4 15.1 5.8 21.1 11.9 6 6 10.7 13.1 14.2 21.1 3.4 8 5.1 16.6 5.1 25.8zm-15.5 0c0-7.3-1.3-14-3.9-20.3-2.6-6.3-6.2-11.7-10.8-16.3-4.6-4.6-10-8.2-16.2-10.9-6.2-2.7-12.8-4-19.8-4s-13.6 1.3-19.8 4c-6.2 2.7-11.6 6.3-16.2 10.9-4.6 4.6-8.2 10-10.8 16.3-2.6 6.3-3.9 13.1-3.9 20.3 0 7.3 1.3 14 3.9 20.3 2.6 6.3 6.2 11.7 10.8 16.3 4.6 4.6 10 8.2 16.2 10.9 6.2 2.7 12.8 4 19.8 4s13.6-1.3 19.8-4c6.2-2.7 11.6-6.3 16.2-10.9 4.6-4.6 8.2-10 10.8-16.3 2.6-6.3 3.9-13.1 3.9-20.3zm-94.8 96.7v-6.3l88.9-10-242.9 13.4c.6-2.2 1.1-4.6 1.4-7.2.3-2 .5-4.2.6-6.5l64.8-8.1-64.9 1.9c0-.4-.1-.7-.1-1.1-2.8-17.2-25.5-23.7-25.5-23.7l-1.1-26.3h23.8l19 41.8h17.1L348.6 152l-62.2 131.4h17.1l19-41.8h23.6L345 268s-22.7 6.5-25.5 23.7c-.1.3-.1.7-.1 1.1l-64.9-1.9 64.8 8.1c.1 2.3.3 4.4.6 6.5.3 2.6.8 5 1.4 7.2L78.4 299.2l88.9 10v6.3c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4 0-6.2-4.6-11.3-10.5-12.2v-5.8l80.3 9v5.4c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-4.9l28.4 3.2v23.7h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9V323l38.3 4.3c8.1 11.4 19 13.6 19 13.6l-.1 6.7-5.1.2-.1 12.1h4.1l.1-5h5.2l.1 5h4.1l-.1-12.1-5.1-.2-.1-6.7s10.9-2.1 19-13.6l38.3-4.3v23.2h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9v-23.7l28.4-3.2v4.9c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-5.4l80.3-9v5.8c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4-.2-6.3-4.7-11.4-10.7-12.3zm-200.8-87.6l19.6-42.5 19.6 42.5h-17.9l-1.7-40.3-1.7 40.3h-17.9z" ], + aws: [ 640, 512, [], "f375", "M180.41 203.01c-.72 22.65 10.6 32.68 10.88 39.05a8.164 8.164 0 0 1-4.1 6.27l-12.8 8.96a10.66 10.66 0 0 1-5.63 1.92c-.43-.02-8.19 1.83-20.48-25.61a78.608 78.608 0 0 1-62.61 29.45c-16.28.89-60.4-9.24-58.13-56.21-1.59-38.28 34.06-62.06 70.93-60.05 7.1.02 21.6.37 46.99 6.27v-15.62c2.69-26.46-14.7-46.99-44.81-43.91-2.4.01-19.4-.5-45.84 10.11-7.36 3.38-8.3 2.82-10.75 2.82-7.41 0-4.36-21.48-2.94-24.2 5.21-6.4 35.86-18.35 65.94-18.18a76.857 76.857 0 0 1 55.69 17.28 70.285 70.285 0 0 1 17.67 52.36l-.01 69.29zM93.99 235.4c32.43-.47 46.16-19.97 49.29-30.47 2.46-10.05 2.05-16.41 2.05-27.4-9.67-2.32-23.59-4.85-39.56-4.87-15.15-1.14-42.82 5.63-41.74 32.26-1.24 16.79 11.12 31.4 29.96 30.48zm170.92 23.05c-7.86.72-11.52-4.86-12.68-10.37l-49.8-164.65c-.97-2.78-1.61-5.65-1.92-8.58a4.61 4.61 0 0 1 3.86-5.25c.24-.04-2.13 0 22.25 0 8.78-.88 11.64 6.03 12.55 10.37l35.72 140.83 33.16-140.83c.53-3.22 2.94-11.07 12.8-10.24h17.16c2.17-.18 11.11-.5 12.68 10.37l33.42 142.63L420.98 80.1c.48-2.18 2.72-11.37 12.68-10.37h19.72c.85-.13 6.15-.81 5.25 8.58-.43 1.85 3.41-10.66-52.75 169.9-1.15 5.51-4.82 11.09-12.68 10.37h-18.69c-10.94 1.15-12.51-9.66-12.68-10.75L328.67 110.7l-32.78 136.99c-.16 1.09-1.73 11.9-12.68 10.75h-18.3zm273.48 5.63c-5.88.01-33.92-.3-57.36-12.29a12.802 12.802 0 0 1-7.81-11.91v-10.75c0-8.45 6.2-6.9 8.83-5.89 10.04 4.06 16.48 7.14 28.81 9.6 36.65 7.53 52.77-2.3 56.72-4.48 13.15-7.81 14.19-25.68 5.25-34.95-10.48-8.79-15.48-9.12-53.13-21-4.64-1.29-43.7-13.61-43.79-52.36-.61-28.24 25.05-56.18 69.52-55.95 12.67-.01 46.43 4.13 55.57 15.62 1.35 2.09 2.02 4.55 1.92 7.04v10.11c0 4.44-1.62 6.66-4.87 6.66-7.71-.86-21.39-11.17-49.16-10.75-6.89-.36-39.89.91-38.41 24.97-.43 18.96 26.61 26.07 29.7 26.89 36.46 10.97 48.65 12.79 63.12 29.58 17.14 22.25 7.9 48.3 4.35 55.44-19.08 37.49-68.42 34.44-69.26 34.42zm40.2 104.86c-70.03 51.72-171.69 79.25-258.49 79.25A469.127 469.127 0 0 1 2.83 327.46c-6.53-5.89-.77-13.96 7.17-9.47a637.37 637.37 0 0 0 316.88 84.12 630.22 630.22 0 0 0 241.59-49.55c11.78-5 21.77 7.8 10.12 16.38zm29.19-33.29c-8.96-11.52-59.28-5.38-81.81-2.69-6.79.77-7.94-5.12-1.79-9.47 40.07-28.17 105.88-20.1 113.44-10.63 7.55 9.47-2.05 75.41-39.56 106.91-5.76 4.87-11.27 2.3-8.71-4.1 8.44-21.25 27.39-68.49 18.43-80.02z" ], + bandcamp: [ 496, 512, [], "f2d5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm48.2 326.1h-181L199.9 178h181l-84.7 156.1z" ], + behance: [ 576, 512, [], "f1b4", "M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z" ], + "behance-square": [ 448, 512, [], "f1b5", "M186.5 293c0 19.3-14 25.4-31.2 25.4h-45.1v-52.9h46c18.6.1 30.3 7.8 30.3 27.5zm-7.7-82.3c0-17.7-13.7-21.9-28.9-21.9h-39.6v44.8H153c15.1 0 25.8-6.6 25.8-22.9zm132.3 23.2c-18.3 0-30.5 11.4-31.7 29.7h62.2c-1.7-18.5-11.3-29.7-30.5-29.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM271.7 185h77.8v-18.9h-77.8V185zm-43 110.3c0-24.1-11.4-44.9-35-51.6 17.2-8.2 26.2-17.7 26.2-37 0-38.2-28.5-47.5-61.4-47.5H68v192h93.1c34.9-.2 67.6-16.9 67.6-55.9zM380 280.5c0-41.1-24.1-75.4-67.6-75.4-42.4 0-71.1 31.8-71.1 73.6 0 43.3 27.3 73 71.1 73 33.2 0 54.7-14.9 65.1-46.8h-33.7c-3.7 11.9-18.6 18.1-30.2 18.1-22.4 0-34.1-13.1-34.1-35.3h100.2c.1-2.3.3-4.8.3-7.2z" ], + bimobject: [ 448, 512, [], "f378", "M416 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm-64 257.4c0 49.4-11.4 82.6-103.8 82.6h-16.9c-44.1 0-62.4-14.9-70.4-38.8h-.9V368H96V136h64v74.7h1.1c4.6-30.5 39.7-38.8 69.7-38.8h17.3c92.4 0 103.8 33.1 103.8 82.5v35zm-64-28.9v22.9c0 21.7-3.4 33.8-38.4 33.8h-45.3c-28.9 0-44.1-6.5-44.1-35.7v-19c0-29.3 15.2-35.7 44.1-35.7h45.3c35-.2 38.4 12 38.4 33.7z" ], + bitbucket: [ 512, 512, [], "f171", "M23.1 32C14.2 31.9 7 38.9 6.9 47.8c0 .9.1 1.8.2 2.8L74.9 462c1.7 10.4 10.7 18 21.2 18.1h325.1c7.9.1 14.7-5.6 16-13.4l67.8-416c1.4-8.7-4.5-16.9-13.2-18.3-.9-.1-1.8-.2-2.8-.2L23.1 32zm285.3 297.3H204.6l-28.1-146.8h157l-25.1 146.8z" ], + bitcoin: [ 512, 512, [], "f379", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z" ], + bity: [ 496, 512, [], "f37a", "M78.4 67.2C173.8-22 324.5-24 421.5 71c14.3 14.1-6.4 37.1-22.4 21.5-84.8-82.4-215.8-80.3-298.9-3.2-16.3 15.1-36.5-8.3-21.8-22.1zm98.9 418.6c19.3 5.7 29.3-23.6 7.9-30C73 421.9 9.4 306.1 37.7 194.8c5-19.6-24.9-28.1-30.2-7.1-32.1 127.4 41.1 259.8 169.8 298.1zm148.1-2c121.9-40.2 192.9-166.9 164.4-291-4.5-19.7-34.9-13.8-30 7.9 24.2 107.7-37.1 217.9-143.2 253.4-21.2 7-10.4 36 8.8 29.7zm-62.9-79l.2-71.8c0-8.2-6.6-14.8-14.8-14.8-8.2 0-14.8 6.7-14.8 14.8l-.2 71.8c0 8.2 6.6 14.8 14.8 14.8s14.8-6.6 14.8-14.8zm71-269c2.1 90.9 4.7 131.9-85.5 132.5-92.5-.7-86.9-44.3-85.5-132.5 0-21.8-32.5-19.6-32.5 0v71.6c0 69.3 60.7 90.9 118 90.1 57.3.8 118-20.8 118-90.1v-71.6c0-19.6-32.5-21.8-32.5 0z" ], + "black-tie": [ 448, 512, [], "f27e", "M0 32v448h448V32H0zm316.5 325.2L224 445.9l-92.5-88.7 64.5-184-64.5-86.6h184.9L252 173.2l64.5 184z" ], + blackberry: [ 512, 512, [], "f37b", "M166 116.9c0 23.4-16.4 49.1-72.5 49.1H23.4l21-88.8h67.8c42.1 0 53.8 23.3 53.8 39.7zm126.2-39.7h-67.8L205.7 166h70.1c53.8 0 70.1-25.7 70.1-49.1.1-16.4-11.6-39.7-53.7-39.7zM88.8 208.1H21L0 296.9h70.1c56.1 0 72.5-23.4 72.5-49.1 0-16.3-11.7-39.7-53.8-39.7zm180.1 0h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 0-16.3-11.7-39.7-53.7-39.7zm189.3-53.8h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7zm-28 137.9h-67.8L343.7 381h70.1c56.1 0 70.1-23.4 70.1-49.1 0-16.3-11.6-39.7-53.7-39.7zM240.8 346H173l-18.7 88.8h70.1c56.1 0 70.1-25.7 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7z" ], + blogger: [ 448, 512, [], "f37c", "M162.4 196c4.8-4.9 6.2-5.1 36.4-5.1 27.2 0 28.1.1 32.1 2.1 5.8 2.9 8.3 7 8.3 13.6 0 5.9-2.4 10-7.6 13.4-2.8 1.8-4.5 1.9-31.1 2.1-16.4.1-29.5-.2-31.5-.8-10.3-2.9-14.1-17.7-6.6-25.3zm61.4 94.5c-53.9 0-55.8.2-60.2 4.1-3.5 3.1-5.7 9.4-5.1 13.9.7 4.7 4.8 10.1 9.2 12 2.2 1 14.1 1.7 56.3 1.2l47.9-.6 9.2-1.5c9-5.1 10.5-17.4 3.1-24.4-5.3-4.7-5-4.7-60.4-4.7zm223.4 130.1c-3.5 28.4-23 50.4-51.1 57.5-7.2 1.8-9.7 1.9-172.9 1.8-157.8 0-165.9-.1-172-1.8-8.4-2.2-15.6-5.5-22.3-10-5.6-3.8-13.9-11.8-17-16.4-3.8-5.6-8.2-15.3-10-22C.1 423 0 420.3 0 256.3 0 93.2 0 89.7 1.8 82.6 8.1 57.9 27.7 39 53 33.4c7.3-1.6 332.1-1.9 340-.3 21.2 4.3 37.9 17.1 47.6 36.4 7.7 15.3 7-1.5 7.3 180.6.2 115.8 0 164.5-.7 170.5zm-85.4-185.2c-1.1-5-4.2-9.6-7.7-11.5-1.1-.6-8-1.3-15.5-1.7-12.4-.6-13.8-.8-17.8-3.1-6.2-3.6-7.9-7.6-8-18.3 0-20.4-8.5-39.4-25.3-56.5-12-12.2-25.3-20.5-40.6-25.1-3.6-1.1-11.8-1.5-39.2-1.8-42.9-.5-52.5.4-67.1 6.2-27 10.7-46.3 33.4-53.4 62.4-1.3 5.4-1.6 14.2-1.9 64.3-.4 62.8 0 72.1 4 84.5 9.7 30.7 37.1 53.4 64.6 58.4 9.2 1.7 122.2 2.1 133.7.5 20.1-2.7 35.9-10.8 50.7-25.9 10.7-10.9 17.4-22.8 21.8-38.5 3.2-10.9 2.9-88.4 1.7-93.9z" ], + "blogger-b": [ 448, 512, [], "f37d", "M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z" ], + bluetooth: [ 448, 512, [], "f293", "M292.6 171.1L249.7 214l-.3-86 43.2 43.1m-43.2 219.8l43.1-43.1-42.9-42.9-.2 86zM416 259.4C416 465 344.1 512 230.9 512S32 465 32 259.4 115.4 0 228.6 0 416 53.9 416 259.4zm-158.5 0l79.4-88.6L211.8 36.5v176.9L138 139.6l-27 26.9 92.7 93-92.7 93 26.9 26.9 73.8-73.8 2.3 170 127.4-127.5-83.9-88.7z" ], + "bluetooth-b": [ 320, 512, [], "f294", "M196.48 260.023l92.626-103.333L143.125 0v206.33l-86.111-86.111-31.406 31.405 108.061 108.399L25.608 368.422l31.406 31.405 86.111-86.111L145.84 512l148.552-148.644-97.912-103.333zm40.86-102.996l-49.977 49.978-.338-100.295 50.315 50.317zM187.363 313.04l49.977 49.978-50.315 50.316.338-100.294z" ], + btc: [ 384, 512, [], "f15a", "M310.204 242.638c27.73-14.18 45.377-39.39 41.28-81.3-5.358-57.351-52.458-76.573-114.85-81.929V0h-48.528v77.203c-12.605 0-25.525.315-38.444.63V0h-48.528v79.409c-17.842.539-38.622.276-97.37 0v51.678c38.314-.678 58.417-3.14 63.023 21.427v217.429c-2.925 19.492-18.524 16.685-53.255 16.071L3.765 443.68c88.481 0 97.37.315 97.37.315V512h48.528v-67.06c13.234.315 26.154.315 38.444.315V512h48.528v-68.005c81.299-4.412 135.647-24.894 142.895-101.467 5.671-61.446-23.32-88.862-69.326-99.89zM150.608 134.553c27.415 0 113.126-8.507 113.126 48.528 0 54.515-85.71 48.212-113.126 48.212v-96.74zm0 251.776V279.821c32.772 0 133.127-9.138 133.127 53.255-.001 60.186-100.355 53.253-133.127 53.253z" ], + buromobelexperte: [ 448, 512, [], "f37f", "M0 32v128h128V32H0zm120 120H8V40h112v112zm40-120v128h128V32H160zm120 120H168V40h112v112zm40-120v128h128V32H320zm120 120H328V40h112v112zM0 192v128h128V192H0zm120 120H8V200h112v112zm40-120v128h128V192H160zm120 120H168V200h112v112zm40-120v128h128V192H320zm120 120H328V200h112v112zM0 352v128h128V352H0zm120 120H8V360h112v112zm40-120v128h128V352H160zm120 120H168V360h112v112zm40-120v128h128V352H320z" ], + buysellads: [ 448, 512, [], "f20d", "M224 150.7l42.9 160.7h-85.8L224 150.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-65.3 325.3l-94.5-298.7H159.8L65.3 405.3H156l111.7-91.6 24.2 91.6h90.8z" ], + "cc-amazon-pay": [ 576, 512, [], "f42d", "M124.7 201.8c.1-11.8 0-23.5 0-35.3v-35.3c0-1.3.4-2 1.4-2.7 11.5-8 24.1-12.1 38.2-11.1 12.5.9 22.7 7 28.1 21.7 3.3 8.9 4.1 18.2 4.1 27.7 0 8.7-.7 17.3-3.4 25.6-5.7 17.8-18.7 24.7-35.7 23.9-11.7-.5-21.9-5-31.4-11.7-.9-.8-1.4-1.6-1.3-2.8zm154.9 14.6c4.6 1.8 9.3 2 14.1 1.5 11.6-1.2 21.9-5.7 31.3-12.5.9-.6 1.3-1.3 1.3-2.5-.1-3.9 0-7.9 0-11.8 0-4-.1-8 0-12 0-1.4-.4-2-1.8-2.2-7-.9-13.9-2.2-20.9-2.9-7-.6-14-.3-20.8 1.9-6.7 2.2-11.7 6.2-13.7 13.1-1.6 5.4-1.6 10.8.1 16.2 1.6 5.5 5.2 9.2 10.4 11.2zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zm-207.5 23.9c.4 1.7.9 3.4 1.6 5.1 16.5 40.6 32.9 81.3 49.5 121.9 1.4 3.5 1.7 6.4.2 9.9-2.8 6.2-4.9 12.6-7.8 18.7-2.6 5.5-6.7 9.5-12.7 11.2-4.2 1.1-8.5 1.3-12.9.9-2.1-.2-4.2-.7-6.3-.8-2.8-.2-4.2 1.1-4.3 4-.1 2.8-.1 5.6 0 8.3.1 4.6 1.6 6.7 6.2 7.5 4.7.8 9.4 1.6 14.2 1.7 14.3.3 25.7-5.4 33.1-17.9 2.9-4.9 5.6-10.1 7.7-15.4 19.8-50.1 39.5-100.3 59.2-150.5.6-1.5 1.1-3 1.3-4.6.4-2.4-.7-3.6-3.1-3.7-5.6-.1-11.1 0-16.7 0-3.1 0-5.3 1.4-6.4 4.3-.4 1.1-.9 2.3-1.3 3.4l-29.1 83.7c-2.1 6.1-4.2 12.1-6.5 18.6-.4-.9-.6-1.4-.8-1.9-10.8-29.9-21.6-59.9-32.4-89.8-1.7-4.7-3.5-9.5-5.3-14.2-.9-2.5-2.7-4-5.4-4-6.4-.1-12.8-.2-19.2-.1-2.2 0-3.3 1.6-2.8 3.7zM242.4 206c1.7 11.7 7.6 20.8 18 26.6 9.9 5.5 20.7 6.2 31.7 4.6 12.7-1.9 23.9-7.3 33.8-15.5.4-.3.8-.6 1.4-1 .5 3.2.9 6.2 1.5 9.2.5 2.6 2.1 4.3 4.5 4.4 4.6.1 9.1.1 13.7 0 2.3-.1 3.8-1.6 4-3.9.1-.8.1-1.6.1-2.3v-88.8c0-3.6-.2-7.2-.7-10.8-1.6-10.8-6.2-19.7-15.9-25.4-5.6-3.3-11.8-5-18.2-5.9-3-.4-6-.7-9.1-1.1h-10c-.8.1-1.6.3-2.5.3-8.2.4-16.3 1.4-24.2 3.5-5.1 1.3-10 3.2-15 4.9-3 1-4.5 3.2-4.4 6.5.1 2.8-.1 5.6 0 8.3.1 4.1 1.8 5.2 5.7 4.1 6.5-1.7 13.1-3.5 19.7-4.8 10.3-1.9 20.7-2.7 31.1-1.2 5.4.8 10.5 2.4 14.1 7 3.1 4 4.2 8.8 4.4 13.7.3 6.9.2 13.9.3 20.8 0 .4-.1.7-.2 1.2-.4 0-.8 0-1.1-.1-8.8-2.1-17.7-3.6-26.8-4.1-9.5-.5-18.9.1-27.9 3.2-10.8 3.8-19.5 10.3-24.6 20.8-4.1 8.3-4.6 17-3.4 25.8zM98.7 106.9v175.3c0 .8 0 1.7.1 2.5.2 2.5 1.7 4.1 4.1 4.2 5.9.1 11.8.1 17.7 0 2.5 0 4-1.7 4.1-4.1.1-.8.1-1.7.1-2.5v-60.7c.9.7 1.4 1.2 1.9 1.6 15 12.5 32.2 16.6 51.1 12.9 17.1-3.4 28.9-13.9 36.7-29.2 5.8-11.6 8.3-24.1 8.7-37 .5-14.3-1-28.4-6.8-41.7-7.1-16.4-18.9-27.3-36.7-30.9-2.7-.6-5.5-.8-8.2-1.2h-7c-1.2.2-2.4.3-3.6.5-11.7 1.4-22.3 5.8-31.8 12.7-2 1.4-3.9 3-5.9 4.5-.1-.5-.3-.8-.4-1.2-.4-2.3-.7-4.6-1.1-6.9-.6-3.9-2.5-5.5-6.4-5.6h-9.7c-5.9-.1-6.9 1-6.9 6.8zM493.6 339c-2.7-.7-5.1 0-7.6 1-43.9 18.4-89.5 30.2-136.8 35.8-14.5 1.7-29.1 2.8-43.7 3.2-26.6.7-53.2-.8-79.6-4.3-17.8-2.4-35.5-5.7-53-9.9-37-8.9-72.7-21.7-106.7-38.8-8.8-4.4-17.4-9.3-26.1-14-3.8-2.1-6.2-1.5-8.2 2.1v1.7c1.2 1.6 2.2 3.4 3.7 4.8 36 32.2 76.6 56.5 122 72.9 21.9 7.9 44.4 13.7 67.3 17.5 14 2.3 28 3.8 42.2 4.5 3 .1 6 .2 9 .4.7 0 1.4.2 2.1.3h17.7c.7-.1 1.4-.3 2.1-.3 14.9-.4 29.8-1.8 44.6-4 21.4-3.2 42.4-8.1 62.9-14.7 29.6-9.6 57.7-22.4 83.4-40.1 2.8-1.9 5.7-3.8 8-6.2 4.3-4.4 2.3-10.4-3.3-11.9zm50.4-27.7c-.8-4.2-4-5.8-7.6-7-5.7-1.9-11.6-2.8-17.6-3.3-11-.9-22-.4-32.8 1.6-12 2.2-23.4 6.1-33.5 13.1-1.2.8-2.4 1.8-3.1 3-.6.9-.7 2.3-.5 3.4.3 1.3 1.7 1.6 3 1.5.6 0 1.2 0 1.8-.1l19.5-2.1c9.6-.9 19.2-1.5 28.8-.8 4.1.3 8.1 1.2 12 2.2 4.3 1.1 6.2 4.4 6.4 8.7.3 6.7-1.2 13.1-2.9 19.5-3.5 12.9-8.3 25.4-13.3 37.8-.3.8-.7 1.7-.8 2.5-.4 2.5 1 4 3.4 3.5 1.4-.3 3-1.1 4-2.1 3.7-3.6 7.5-7.2 10.6-11.2 10.7-13.8 17-29.6 20.7-46.6.7-3 1.2-6.1 1.7-9.1.2-4.7.2-9.6.2-14.5z" ], + "cc-amex": [ 576, 512, [], "f1f3", "M576 255.4c-37.9-.2-44.2-.9-54.5 5v-5c-45.3 0-53.5-1.7-64.9 5.2v-5.2h-78.2v5.1c-11.4-6.5-21.4-5.1-75.7-5.1v5.6c-6.3-3.7-14.5-5.6-24.3-5.6h-58c-3.5 3.8-12.5 13.7-15.7 17.2-12.7-14.1-10.5-11.6-15.5-17.2h-83.1v92.3h82c3.3-3.5 12.9-13.9 16.1-17.4 12.7 14.3 10.3 11.7 15.4 17.4h48.9c0-14.7.1-8.3.1-23 11.5.2 24.3-.2 34.3-6.2 0 13.9-.1 17.1-.1 29.2h39.6c0-18.5.1-7.4.1-25.3 6.2 0 7.7 0 9.4.1.1 1.3 0 0 0 25.2 152.8 0 145.9 1.1 156.7-4.5v4.5c34.8 0 54.8 2.2 67.5-6.1V432c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V228.3h26.6c4.2-10.1 2.2-5.3 6.4-15.3h19.2c4.2 10 2.2 5.2 6.4 15.3h52.9v-11.4c2.2 5 1.1 2.5 5.1 11.4h29.5c2.4-5.5 2.6-5.8 5.1-11.4v11.4h135.5v-25.1c6.4 0 8-.1 9.8.2 0 0-.2 10.9.1 24.8h66.5v-8.9c7.4 5.9 17.4 8.9 29.7 8.9h26.8c4.2-10.1 2.2-5.3 6.4-15.3h19c6.5 15 .2.5 6.6 15.3h52.8v-21.9c11.8 19.7 7.8 12.9 13.2 21.9h41.6v-92h-39.9v18.4c-12.2-20.2-6.3-10.4-11.2-18.4h-43.3v20.6c-6.2-14.6-4.6-10.8-8.8-20.6h-32.4c-.4 0-2.3.2-2.3-.3h-27.6c-12.8 0-23.1 3.2-30.7 9.3v-9.3h-39.9v5.3c-10.8-6.1-20.7-5.1-64.4-5.3-.1 0-11.6-.1-11.6 0h-103c-2.5 6.1-6.8 16.4-12.6 30-2.8-6-11-23.8-13.9-30h-46V157c-7.4-17.4-4.7-11-9-21.1H22.9c-3.4 7.9-13.7 32-23.1 53.9V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48v175.4zm-186.6-80.6c-.3.2-1.4 2.2-1.4 7.6 0 6 .9 7.7 1.1 7.9.2.1 1.1.5 3.4.5l7.3-16.9c-1.1 0-2.1-.1-3.1-.1-5.6 0-7 .7-7.3 1zm-19.9 130.9c9.2 3.3 11 9.5 11 18.4l-.1 13.8h-16.6l.1-11.5c0-11.8-3.8-13.8-14.8-13.8h-17.6l-.1 25.3h-16.6l.1-69.3h39.4c13 0 27.1 2.3 27.1 18.7-.1 7.6-4.2 15.3-11.9 18.4zm-6.3-15.4c0-6.4-5.6-7.4-10.7-7.4h-21v15.6h20.7c5.6 0 11-1.3 11-8.2zm181.7-7.1H575v-14.6h-32.9c-12.8 0-23.8 6.6-23.8 20.7 0 33 42.7 12.8 42.7 27.4 0 5.1-4.3 6.4-8.4 6.4h-32l-.1 14.8h32c8.4 0 17.6-1.8 22.5-8.9v-25.8c-10.5-13.8-39.3-1.3-39.3-13.5 0-5.8 4.6-6.5 9.2-6.5zm-99.2-.3v-14.3h-55.2l-.1 69.3h55.2l.1-14.3-38.6-.3v-13.8H445v-14.1h-37.8v-12.5h38.5zm42.2 40.1h-32.2l-.1 14.8h32.2c14.8 0 26.2-5.6 26.2-22 0-33.2-42.9-11.2-42.9-26.3 0-5.6 4.9-6.4 9.2-6.4h30.4v-14.6h-33.2c-12.8 0-23.5 6.6-23.5 20.7 0 33 42.7 12.5 42.7 27.4-.1 5.4-4.7 6.4-8.8 6.4zm-78.1-158.7c-17.4-.3-33.2-4.1-33.2 19.7 0 11.8 2.8 19.9 16.1 19.9h7.4l23.5-54.5h24.8l27.9 65.4v-65.4h25.3l29.1 48.1v-48.1h16.9v69H524l-31.2-51.9v51.9h-33.7l-6.6-15.3h-34.3l-6.4 15.3h-19.2c-22.8 0-33-11.8-33-34 0-23.3 10.5-35.3 34-35.3h16.1v15.2zm14.3 24.5h22.8l-11.2-27.6-11.6 27.6zm-72.6-39.6h-16.9v69.3h16.9v-69.3zm-38.1 37.3c9.5 3.3 11 9.2 11 18.4v13.5h-16.6c-.3-14.8 3.6-25.1-14.8-25.1h-18v25.1h-16.4v-69.3l39.1.3c13.3 0 27.4 2 27.4 18.4.1 8-4.3 15.7-11.7 18.7zm-6.7-15.3c0-6.4-5.6-7.4-10.7-7.4h-21v15.3h20.7c5.7 0 11-1.3 11-7.9zm-59.5-7.4v-14.6h-55.5v69.3h55.5v-14.3h-38.9v-13.8h37.8v-14.1h-37.8v-12.5h38.9zm-84.6 54.7v-54.2l-24 54.2H124l-24-54.2v54.2H66.2l-6.4-15.3H25.3l-6.4 15.3H1l29.7-69.3h24.5l28.1 65.7v-65.7h27.1l21.7 47 19.7-47h27.6v69.3h-16.8zM53.9 188.8l-11.5-27.6-11.2 27.6h22.7zm253 102.5c0 27.9-30.4 23.3-49.3 23.3l-.1 23.3h-32.2l-20.4-23-21.3 23h-65.4l.1-69.3h66.5l20.5 22.8 21-22.8H279c15.6 0 27.9 5.4 27.9 22.7zm-112.7 11.8l-17.9-20.2h-41.7v12.5h36.3v14.1h-36.3v13.8h40.6l19-20.2zM241 276l-25.3 27.4 25.3 28.1V276zm48.3 15.3c0-6.1-4.6-8.4-10.2-8.4h-21.5v17.6h21.2c5.9 0 10.5-2.8 10.5-9.2z" ], + "cc-apple-pay": [ 576, 512, [], "f416", "M302.2 218.4c0 17.2-10.5 27.1-29 27.1h-24.3v-54.2h24.4c18.4 0 28.9 9.8 28.9 27.1zm47.5 62.6c0 8.3 7.2 13.7 18.5 13.7 14.4 0 25.2-9.1 25.2-21.9v-7.7l-23.5 1.5c-13.3.9-20.2 5.8-20.2 14.4zM576 79v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM127.8 197.2c8.4.7 16.8-4.2 22.1-10.4 5.2-6.4 8.6-15 7.7-23.7-7.4.3-16.6 4.9-21.9 11.3-4.8 5.5-8.9 14.4-7.9 22.8zm60.6 74.5c-.2-.2-19.6-7.6-19.8-30-.2-18.7 15.3-27.7 16-28.2-8.8-13-22.4-14.4-27.1-14.7-12.2-.7-22.6 6.9-28.4 6.9-5.9 0-14.7-6.6-24.3-6.4-12.5.2-24.2 7.3-30.5 18.6-13.1 22.6-3.4 56 9.3 74.4 6.2 9.1 13.7 19.1 23.5 18.7 9.3-.4 13-6 24.2-6 11.3 0 14.5 6 24.3 5.9 10.2-.2 16.5-9.1 22.8-18.2 6.9-10.4 9.8-20.4 10-21zm135.4-53.4c0-26.6-18.5-44.8-44.9-44.8h-51.2v136.4h21.2v-46.6h29.3c26.8 0 45.6-18.4 45.6-45zm90 23.7c0-19.7-15.8-32.4-40-32.4-22.5 0-39.1 12.9-39.7 30.5h19.1c1.6-8.4 9.4-13.9 20-13.9 13 0 20.2 6 20.2 17.2v7.5l-26.4 1.6c-24.6 1.5-37.9 11.6-37.9 29.1 0 17.7 13.7 29.4 33.4 29.4 13.3 0 25.6-6.7 31.2-17.4h.4V310h19.6v-68zM516 210.9h-21.5l-24.9 80.6h-.4l-24.9-80.6H422l35.9 99.3-1.9 6c-3.2 10.2-8.5 14.2-17.9 14.2-1.7 0-4.9-.2-6.2-.3v16.4c1.2.4 6.5.5 8.1.5 20.7 0 30.4-7.9 38.9-31.8L516 210.9z" ], + "cc-diners-club": [ 576, 512, [], "f24c", "M239.7 79.9c-96.9 0-175.8 78.6-175.8 175.8 0 96.9 78.9 175.8 175.8 175.8 97.2 0 175.8-78.9 175.8-175.8 0-97.2-78.6-175.8-175.8-175.8zm-39.9 279.6c-41.7-15.9-71.4-56.4-71.4-103.8s29.7-87.9 71.4-104.1v207.9zm79.8.3V151.6c41.7 16.2 71.4 56.7 71.4 104.1s-29.7 87.9-71.4 104.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM329.7 448h-90.3c-106.2 0-193.8-85.5-193.8-190.2C45.6 143.2 133.2 64 239.4 64h90.3c105 0 200.7 79.2 200.7 193.8 0 104.7-95.7 190.2-200.7 190.2z" ], + "cc-discover": [ 576, 512, [], "f1f2", "M83 212.1c0 7.9-3.2 15.5-8.9 20.7-4.9 4.4-11.6 6.4-21.9 6.4H48V185h4.2c10.3 0 16.7 1.7 21.9 6.6 5.7 5 8.9 12.6 8.9 20.5zM504.8 184h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8 0-7.9-5.5-12.1-15.6-12.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM428 253h45.3v-13.8H444V217h28.3v-13.8H444V185h29.3v-14H428v82zm-86.2-82l35 84.2h8.6l35.5-84.2h-17.5l-22.2 55.2-21.9-55.2h-17.5zm-83 41.6c0 24.6 19.9 44.6 44.6 44.6 24.6 0 44.6-19.9 44.6-44.6 0-24.6-19.9-44.6-44.6-44.6-24.6 0-44.6 19.9-44.6 44.6zm-68-.5c0 32.5 33.6 52.5 63.3 38.2v-19c-19.3 19.3-46.8 5.8-46.8-19.2 0-23.7 26.7-39.1 46.8-19v-19c-30.2-15-63.3 6.8-63.3 38zm-33.9 28.3c-7.6 0-13.8-3.7-17.5-10.8l-10.3 9.9c17.8 26.1 56.6 18.2 56.6-11.3 0-13.1-5.4-19-23.6-25.6-9.6-3.4-12.3-5.9-12.3-10.3 0-8.7 14.5-14.1 24.9-2.5l8.4-10.8c-19.1-17.1-49.7-8.9-49.7 14.3 0 11.3 5.2 17.2 20.2 22.7 25.7 9.1 14.7 24.4 3.3 24.4zm-57.4-28.3c0-24.1-18-41.1-44.1-41.1H32v82h23.4c30.9 0 44.1-22.4 44.1-40.9zm23.4-41.1h-16v82h16v-82zM544 288c-33.3 20.8-226.4 124.4-416 160h401c8.2 0 15-6.8 15-15V288zm0-35l-25.9-34.5c12.1-2.5 18.7-10.6 18.7-23.2 0-28.5-30.3-24.4-52.9-24.4v82h16v-32.8h2.2l22.2 32.8H544z" ], + "cc-jcb": [ 576, 512, [], "f24b", "M431.5 244.3V212c41.2 0 38.5.2 38.5.2 7.3 1.3 13.3 7.3 13.3 16 0 8.8-6 14.5-13.3 15.8-1.2.4-3.3.3-38.5.3zm42.8 20.2c-2.8-.7-3.3-.5-42.8-.5v35c39.6 0 40 .2 42.8-.5 7.5-1.5 13.5-8 13.5-17 0-8.7-6-15.5-13.5-17zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM182 192.3h-57c0 67.1 10.7 109.7-35.8 109.7-19.5 0-38.8-5.7-57.2-14.8v28c30 8.3 68 8.3 68 8.3 97.9 0 82-47.7 82-131.2zm178.5 4.5c-63.4-16-165-14.9-165 59.3 0 77.1 108.2 73.6 165 59.2V287C312.9 311.7 253 309 253 256s59.8-55.6 107.5-31.2v-28zM544 286.5c0-18.5-16.5-30.5-38-32v-.8c19.5-2.7 30.3-15.5 30.3-30.2 0-19-15.7-30-37-31 0 0 6.3-.3-120.3-.3v127.5h122.7c24.3.1 42.3-12.9 42.3-33.2z" ], + "cc-mastercard": [ 576, 512, [], "f1f1", "M482.9 410.3c0 6.8-4.6 11.7-11.2 11.7-6.8 0-11.2-5.2-11.2-11.7 0-6.5 4.4-11.7 11.2-11.7 6.6 0 11.2 5.2 11.2 11.7zm-310.8-11.7c-7.1 0-11.2 5.2-11.2 11.7 0 6.5 4.1 11.7 11.2 11.7 6.5 0 10.9-4.9 10.9-11.7-.1-6.5-4.4-11.7-10.9-11.7zm117.5-.3c-5.4 0-8.7 3.5-9.5 8.7h19.1c-.9-5.7-4.4-8.7-9.6-8.7zm107.8.3c-6.8 0-10.9 5.2-10.9 11.7 0 6.5 4.1 11.7 10.9 11.7 6.8 0 11.2-4.9 11.2-11.7 0-6.5-4.4-11.7-11.2-11.7zm105.9 26.1c0 .3.3.5.3 1.1 0 .3-.3.5-.3 1.1-.3.3-.3.5-.5.8-.3.3-.5.5-1.1.5-.3.3-.5.3-1.1.3-.3 0-.5 0-1.1-.3-.3 0-.5-.3-.8-.5-.3-.3-.5-.5-.5-.8-.3-.5-.3-.8-.3-1.1 0-.5 0-.8.3-1.1 0-.5.3-.8.5-1.1.3-.3.5-.3.8-.5.5-.3.8-.3 1.1-.3.5 0 .8 0 1.1.3.5.3.8.3 1.1.5s.2.6.5 1.1zm-2.2 1.4c.5 0 .5-.3.8-.3.3-.3.3-.5.3-.8 0-.3 0-.5-.3-.8-.3 0-.5-.3-1.1-.3h-1.6v3.5h.8V426h.3l1.1 1.4h.8l-1.1-1.3zM576 81v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V81c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM64 220.6c0 76.5 62.1 138.5 138.5 138.5 27.2 0 53.9-8.2 76.5-23.1-72.9-59.3-72.4-171.2 0-230.5-22.6-15-49.3-23.1-76.5-23.1-76.4-.1-138.5 62-138.5 138.2zm224 108.8c70.5-55 70.2-162.2 0-217.5-70.2 55.3-70.5 162.6 0 217.5zm-142.3 76.3c0-8.7-5.7-14.4-14.7-14.7-4.6 0-9.5 1.4-12.8 6.5-2.4-4.1-6.5-6.5-12.2-6.5-3.8 0-7.6 1.4-10.6 5.4V392h-8.2v36.7h8.2c0-18.9-2.5-30.2 9-30.2 10.2 0 8.2 10.2 8.2 30.2h7.9c0-18.3-2.5-30.2 9-30.2 10.2 0 8.2 10 8.2 30.2h8.2v-23zm44.9-13.7h-7.9v4.4c-2.7-3.3-6.5-5.4-11.7-5.4-10.3 0-18.2 8.2-18.2 19.3 0 11.2 7.9 19.3 18.2 19.3 5.2 0 9-1.9 11.7-5.4v4.6h7.9V392zm40.5 25.6c0-15-22.9-8.2-22.9-15.2 0-5.7 11.9-4.8 18.5-1.1l3.3-6.5c-9.4-6.1-30.2-6-30.2 8.2 0 14.3 22.9 8.3 22.9 15 0 6.3-13.5 5.8-20.7.8l-3.5 6.3c11.2 7.6 32.6 6 32.6-7.5zm35.4 9.3l-2.2-6.8c-3.8 2.1-12.2 4.4-12.2-4.1v-16.6h13.1V392h-13.1v-11.2h-8.2V392h-7.6v7.3h7.6V416c0 17.6 17.3 14.4 22.6 10.9zm13.3-13.4h27.5c0-16.2-7.4-22.6-17.4-22.6-10.6 0-18.2 7.9-18.2 19.3 0 20.5 22.6 23.9 33.8 14.2l-3.8-6c-7.8 6.4-19.6 5.8-21.9-4.9zm59.1-21.5c-4.6-2-11.6-1.8-15.2 4.4V392h-8.2v36.7h8.2V408c0-11.6 9.5-10.1 12.8-8.4l2.4-7.6zm10.6 18.3c0-11.4 11.6-15.1 20.7-8.4l3.8-6.5c-11.6-9.1-32.7-4.1-32.7 15 0 19.8 22.4 23.8 32.7 15l-3.8-6.5c-9.2 6.5-20.7 2.6-20.7-8.6zm66.7-18.3H408v4.4c-8.3-11-29.9-4.8-29.9 13.9 0 19.2 22.4 24.7 29.9 13.9v4.6h8.2V392zm33.7 0c-2.4-1.2-11-2.9-15.2 4.4V392h-7.9v36.7h7.9V408c0-11 9-10.3 12.8-8.4l2.4-7.6zm40.3-14.9h-7.9v19.3c-8.2-10.9-29.9-5.1-29.9 13.9 0 19.4 22.5 24.6 29.9 13.9v4.6h7.9v-51.7zm7.6-75.1v4.6h.8V302h1.9v-.8h-4.6v.8h1.9zm6.6 123.8c0-.5 0-1.1-.3-1.6-.3-.3-.5-.8-.8-1.1-.3-.3-.8-.5-1.1-.8-.5 0-1.1-.3-1.6-.3-.3 0-.8.3-1.4.3-.5.3-.8.5-1.1.8-.5.3-.8.8-.8 1.1-.3.5-.3 1.1-.3 1.6 0 .3 0 .8.3 1.4 0 .3.3.8.8 1.1.3.3.5.5 1.1.8.5.3 1.1.3 1.4.3.5 0 1.1 0 1.6-.3.3-.3.8-.5 1.1-.8.3-.3.5-.8.8-1.1.3-.6.3-1.1.3-1.4zm3.2-124.7h-1.4l-1.6 3.5-1.6-3.5h-1.4v5.4h.8v-4.1l1.6 3.5h1.1l1.4-3.5v4.1h1.1v-5.4zm4.4-80.5c0-76.2-62.1-138.3-138.5-138.3-27.2 0-53.9 8.2-76.5 23.1 72.1 59.3 73.2 171.5 0 230.5 22.6 15 49.5 23.1 76.5 23.1 76.4.1 138.5-61.9 138.5-138.4z" ], + "cc-paypal": [ 576, 512, [], "f1f4", "M186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5z" ], + "cc-stripe": [ 576, 512, [], "f1f5", "M396.9 256.5c0 19.1-8.8 33.4-21.9 33.4-8.3 0-13.3-3-16.8-6.7l-.2-52.8c3.7-4.1 8.8-7 17-7 12.9-.1 21.9 14.5 21.9 33.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM122.2 281.1c0-42.3-54.3-34.7-54.3-50.7 0-5.5 4.6-7.7 12.1-7.7 10.8 0 24.5 3.3 35.3 9.1v-33.4c-11.8-4.7-23.5-6.5-35.3-6.5-28.8 0-48 15-48 40.2 0 39.3 54 32.9 54 49.9 0 6.6-5.7 8.7-13.6 8.7-11.8 0-26.9-4.9-38.9-11.3v33.9c13.2 5.7 26.6 8.1 38.8 8.1 29.6-.2 49.9-14.7 49.9-40.3zm68.9-86.9h-27v-30.8l-34.7 7.4-.2 113.9c0 21 15.8 36.5 36.9 36.5 11.6 0 20.2-2.1 24.9-4.7v-28.9c-4.5 1.8-27 8.3-27-12.6v-50.5h27v-30.3zm73.8 0c-4.7-1.7-21.3-4.8-29.6 10.5l-2.2-10.5h-30.7v124.5h35.5v-84.4c8.4-11 22.6-8.9 27.1-7.4v-32.7zm44.2 0h-35.7v124.5h35.7V194.2zm0-47.3l-35.7 7.6v28.9l35.7-7.6v-28.9zm122.7 108.8c0-41.3-23.5-63.8-48.4-63.8-13.9 0-22.9 6.6-27.8 11.1l-1.8-8.8h-31.3V360l35.5-7.5.1-40.2c5.1 3.7 12.7 9 25.1 9 25.4-.1 48.6-20.5 48.6-65.6zm112.2 1.2c0-36.4-17.6-65.1-51.3-65.1-33.8 0-54.3 28.7-54.3 64.9 0 42.8 24.2 64.5 58.8 64.5 17 0 29.7-3.9 39.4-9.2v-28.6c-9.7 4.9-20.8 7.9-34.9 7.9-13.8 0-26-4.9-27.6-21.5h69.5c.1-2 .4-9.4.4-12.9zm-51.6-36.1c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7z" ], + "cc-visa": [ 576, 512, [], "f1f0", "M470.1 231.3s7.6 37.2 9.3 45H446c3.3-8.9 16-43.5 16-43.5-.2.3 3.3-9.1 5.3-14.9l2.8 13.4zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM152.5 331.2L215.7 176h-42.5l-39.3 106-4.3-21.5-14-71.4c-2.3-9.9-9.4-12.7-18.2-13.1H32.7l-.7 3.1c15.8 4 29.9 9.8 42.2 17.1l35.8 135h42.5zm94.4.2L272.1 176h-40.2l-25.1 155.4h40.1zm139.9-50.8c.2-17.7-10.6-31.2-33.7-42.3-14.1-7.1-22.7-11.9-22.7-19.2.2-6.6 7.3-13.4 23.1-13.4 13.1-.3 22.7 2.8 29.9 5.9l3.6 1.7 5.5-33.6c-7.9-3.1-20.5-6.6-36-6.6-39.7 0-67.6 21.2-67.8 51.4-.3 22.3 20 34.7 35.2 42.2 15.5 7.6 20.8 12.6 20.8 19.3-.2 10.4-12.6 15.2-24.1 15.2-16 0-24.6-2.5-37.7-8.3l-5.3-2.5-5.6 34.9c9.4 4.3 26.8 8.1 44.8 8.3 42.2.1 69.7-20.8 70-53zM528 331.4L495.6 176h-31.1c-9.6 0-16.9 2.8-21 12.9l-59.7 142.5H426s6.9-19.2 8.4-23.3H486c1.2 5.5 4.8 23.3 4.8 23.3H528z" ], + centercode: [ 512, 512, [], "f380", "M329.2 268.6c-3.8 35.2-35.4 60.6-70.6 56.8-35.2-3.8-60.6-35.4-56.8-70.6 3.8-35.2 35.4-60.6 70.6-56.8 35.1 3.8 60.6 35.4 56.8 70.6zm-85.8 235.1C96.7 496-8.2 365.5 10.1 224.3c11.2-86.6 65.8-156.9 139.1-192 161-77.1 349.7 37.4 354.7 216.6 4.1 147-118.4 262.2-260.5 254.8zm179.9-180c27.9-118-160.5-205.9-237.2-234.2-57.5 56.3-69.1 188.6-33.8 344.4 68.8 15.8 169.1-26.4 271-110.2z" ], + chrome: [ 496, 512, [], "f268", "M131.5 217.5L55.1 100.1c47.6-59.2 119-91.8 192-92.1 42.3-.3 85.5 10.5 124.8 33.2 43.4 25.2 76.4 61.4 97.4 103L264 133.4c-58.1-3.4-113.4 29.3-132.5 84.1zm32.9 38.5c0 46.2 37.4 83.6 83.6 83.6s83.6-37.4 83.6-83.6-37.4-83.6-83.6-83.6-83.6 37.3-83.6 83.6zm314.9-89.2L339.6 174c37.9 44.3 38.5 108.2 6.6 157.2L234.1 503.6c46.5 2.5 94.4-7.7 137.8-32.9 107.4-62 150.9-192 107.4-303.9zM133.7 303.6L40.4 120.1C14.9 159.1 0 205.9 0 256c0 124 90.8 226.7 209.5 244.9l63.7-124.8c-57.6 10.8-113.2-20.8-139.5-72.5z" ], + cloudscale: [ 448, 512, [], "f383", "M318.1 154l-9.4 7.6c-22.5-19.3-51.5-33.6-83.3-33.6C153.8 128 96 188.8 96 260.3c0 6.6.4 13.1 1.4 19.4-2-56 41.8-97.4 92.6-97.4 24.2 0 46.2 9.4 62.6 24.7l-25.2 20.4c-8.3-.9-16.8 1.8-23.1 8.1-11.1 11-11.1 28.9 0 40 11.1 11 28.9 11 40 0 6.3-6.3 9-14.9 8.1-23.1l75.2-88.8c6.3-6.5-3.3-15.9-9.5-9.6zm-83.8 111.5c-5.6 5.5-14.6 5.5-20.2 0-5.6-5.6-5.6-14.6 0-20.2s14.6-5.6 20.2 0 5.6 14.7 0 20.2zM224 32C100.5 32 0 132.5 0 256s100.5 224 224 224 224-100.5 224-224S347.5 32 224 32zm0 384c-88.2 0-160-71.8-160-160S135.8 96 224 96s160 71.8 160 160-71.8 160-160 160z" ], + cloudsmith: [ 332, 512, [], "f384", "M332.5 419.9c0 46.4-37.6 84.1-84 84.1s-84-37.7-84-84.1 37.6-84 84-84 84 37.6 84 84zm-84-243.9c46.4 0 80-37.6 80-84s-33.6-84-80-84-88 37.6-88 84-29.6 76-76 76-84 41.6-84 88 37.6 80 84 80 84-33.6 84-80 33.6-80 80-80z" ], + cloudversify: [ 616, 512, [], "f385", "M148.6 304c8.2 68.5 67.4 115.5 146 111.3 51.2 43.3 136.8 45.8 186.4-5.6 69.2 1.1 118.5-44.6 131.5-99.5 14.8-62.5-18.2-132.5-92.1-155.1-33-88.1-131.4-101.5-186.5-85-57.3 17.3-84.3 53.2-99.3 109.7-7.8 2.7-26.5 8.9-45 24.1 11.7 0 15.2 8.9 15.2 19.5v20.4c0 10.7-8.7 19.5-19.5 19.5h-20.2c-10.7 0-19.5-6-19.5-16.7V240H98.8C95 240 88 244.3 88 251.9v40.4c0 6.4 5.3 11.8 11.7 11.8h48.9zm227.4 8c-10.7 46.3 21.7 72.4 55.3 86.8C324.1 432.6 259.7 348 296 288c-33.2 21.6-33.7 71.2-29.2 92.9-17.9-12.4-53.8-32.4-57.4-79.8-3-39.9 21.5-75.7 57-93.9C297 191.4 369.9 198.7 400 248c-14.1-48-53.8-70.1-101.8-74.8 30.9-30.7 64.4-50.3 114.2-43.7 69.8 9.3 133.2 82.8 67.7 150.5 35-16.3 48.7-54.4 47.5-76.9l10.5 19.6c11.8 22 15.2 47.6 9.4 72-9.2 39-40.6 68.8-79.7 76.5-32.1 6.3-83.1-5.1-91.8-59.2zM128 208H88.2c-8.9 0-16.2-7.3-16.2-16.2v-39.6c0-8.9 7.3-16.2 16.2-16.2H128c8.9 0 16.2 7.3 16.2 16.2v39.6c0 8.9-7.3 16.2-16.2 16.2zM10.1 168C4.5 168 0 163.5 0 157.9v-27.8c0-5.6 4.5-10.1 10.1-10.1h27.7c5.5 0 10.1 4.5 10.1 10.1v27.8c0 5.6-4.5 10.1-10.1 10.1H10.1zM168 142.7v-21.4c0-5.1 4.2-9.3 9.3-9.3h21.4c5.1 0 9.3 4.2 9.3 9.3v21.4c0 5.1-4.2 9.3-9.3 9.3h-21.4c-5.1 0-9.3-4.2-9.3-9.3zM56 235.5v25c0 6.3-5.1 11.5-11.4 11.5H19.4C13.1 272 8 266.8 8 260.5v-25c0-6.3 5.1-11.5 11.4-11.5h25.1c6.4 0 11.5 5.2 11.5 11.5z" ], + codepen: [ 512, 512, [], "f1cb", "M502.285 159.704l-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285zM278 63.131l172.286 114.858-76.857 51.429L278 165.703V63.131zm-44 0v102.572l-95.429 63.715-76.857-51.429L234 63.131zM44 219.132l55.143 36.857L44 292.846v-73.714zm190 229.715L61.714 333.989l76.857-51.429L234 346.275v102.572zm22-140.858l-77.715-52 77.715-52 77.715 52-77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429L278 448.847zm190-156.001l-55.143-36.857L468 219.132v73.714z" ], + codiepie: [ 472, 512, [], "f284", "M422.5 202.9c30.7 0 33.5 53.1-.3 53.1h-10.8v44.3h-26.6v-97.4h37.7zM472 352.6C429.9 444.5 350.4 504 248 504 111 504 0 393 0 256S111 8 248 8c97.4 0 172.8 53.7 218.2 138.4l-186 108.8L472 352.6zm-38.5 12.5l-60.3-30.7c-27.1 44.3-70.4 71.4-122.4 71.4-82.5 0-149.2-66.7-149.2-148.9 0-82.5 66.7-149.2 149.2-149.2 48.4 0 88.9 23.5 116.9 63.4l59.5-34.6c-40.7-62.6-104.7-100-179.2-100-121.2 0-219.5 98.3-219.5 219.5S126.8 475.5 248 475.5c78.6 0 146.5-42.1 185.5-110.4z" ], + connectdevelop: [ 576, 512, [], "f20e", "M550.5 241l-50.089-86.786c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.733-14.732-15.001l-55.447-95.893c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.268-15.268-15.268-4.821 0-8.839 2.143-11.786 5.625H299.518C296.839 18.143 292.821 16 288 16s-8.839 2.143-11.518 5.625H170.411C167.464 18.143 163.447 16 158.625 16c-8.303 0-15.268 6.696-15.268 15.268 0 1.607.536 3.482 1.072 4.821l-55.983 97.233c-5.356 2.41-9.107 7.5-9.107 13.661 0 .535.268 1.071.268 1.607l-53.304 92.143c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.393 12.054 15l55.179 95.358c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.393 12.054 14.732l51.697 89.732c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.268 15.268 15.268 4.821 0 8.839-2.143 11.518-5.357h106.875C279.161 493.857 283.447 496 288 496s8.839-2.143 11.518-5.357h107.143c2.678 2.946 6.696 4.821 10.982 4.821 8.571 0 15.268-6.964 15.268-15.268 0-1.607-.267-2.946-.803-4.285l51.697-90.268c6.964-1.339 12.054-7.5 12.054-14.732 0-1.607-.268-3.214-.804-4.821l54.911-95.358c6.964-1.339 12.322-7.5 12.322-15-.002-7.232-5.092-13.393-11.788-14.732zM153.535 450.732l-43.66-75.803h43.66v75.803zm0-83.839h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.999-47.41v50.624zm0-62.411l-50.357 53.304c-1.339-.536-2.679-1.34-4.018-1.607L43.447 259.75c.535-1.339.535-2.679.535-4.018s0-2.41-.268-3.482l51.965-90c2.679-.268 5.357-1.072 7.768-2.679l50.089 51.965v92.946zm0-102.322l-45.803-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.928-15.804v72.053zm0-80.625l-43.66 15.804 43.66-75.536v59.732zm326.519 39.108l.804 1.339L445.5 329.125l-63.75-67.232 98.036-101.518.268.268zM291.75 355.107l11.518 11.786H280.5l11.25-11.786zm-.268-11.25l-83.303-85.446 79.553-84.375 83.036 87.589-79.286 82.232zm5.357 5.893l79.286-82.232 67.5 71.25-5.892 28.125H313.714l-16.875-17.143zM410.411 44.393c1.071.536 2.142 1.072 3.482 1.34l57.857 100.714v.536c0 2.946.803 5.624 2.143 7.767L376.393 256l-83.035-87.589L410.411 44.393zm-9.107-2.143L287.732 162.518l-57.054-60.268 166.339-60h4.287zm-123.483 0c2.678 2.678 6.16 4.285 10.179 4.285s7.5-1.607 10.179-4.285h75L224.786 95.821 173.893 42.25h103.928zm-116.249 5.625l1.071-2.142a33.834 33.834 0 0 0 2.679-.804l51.161 53.84-54.911 19.821V47.875zm0 79.286l60.803-21.964 59.732 63.214-79.553 84.107-40.982-42.053v-83.304zm0 92.678L198 257.607l-36.428 38.304v-76.072zm0 87.858l42.053-44.464 82.768 85.982-17.143 17.678H161.572v-59.196zm6.964 162.053c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.732h99.91l-91.607 94.821h-1.339zm129.911 0c-2.679-2.41-6.428-4.285-10.447-4.285s-7.767 1.875-10.447 4.285h-96.429l91.607-94.821h38.304l91.607 94.821H298.447zm120-11.786l-4.286 7.5c-1.339.268-2.41.803-3.482 1.339l-89.196-91.875h114.376l-17.412 83.036zm12.856-22.232l12.858-60.803h21.964l-34.822 60.803zm34.822-68.839h-20.357l4.553-21.16 17.143 18.214c-.535.803-1.071 1.874-1.339 2.946zm66.161-107.411l-55.447 96.697c-1.339.535-2.679 1.071-4.018 1.874l-20.625-21.964 34.554-163.928 45.803 79.286c-.267 1.339-.803 2.678-.803 4.285 0 1.339.268 2.411.536 3.75z" ], + contao: [ 512, 512, [], "f26d", "M45.4 305c14.4 67.1 26.4 129 68.2 175H34c-18.7 0-34-15.2-34-34V66c0-18.7 15.2-34 34-34h57.7C77.9 44.6 65.6 59.2 54.8 75.6c-45.4 70-27 146.8-9.4 229.4zM478 32h-90.2c21.4 21.4 39.2 49.5 52.7 84.1l-137.1 29.3c-14.9-29-37.8-53.3-82.6-43.9-24.6 5.3-41 19.3-48.3 34.6-8.8 18.7-13.2 39.8 8.2 140.3 21.1 100.2 33.7 117.7 49.5 131.2 12.9 11.1 33.4 17 58.3 11.7 44.5-9.4 55.7-40.7 57.4-73.2l137.4-29.6c3.2 71.5-18.7 125.2-57.4 163.6H478c18.7 0 34-15.2 34-34V66c0-18.8-15.2-34-34-34z" ], + cpanel: [ 640, 512, [], "f388", "M52.9 213.7h40l-6.2 23.6c-1.9 6.5-7.4 10.9-14.3 10.9H53.8c-24.9 0-24.7 37.4 0 37.4h11.3c4.2 0 7.6 3.9 6.4 8.3L64.4 320H52c-33.5 0-59-31.4-50.3-65.2 7.3-27 28.3-41.1 51.2-41.1M73.1 320L108 189.9c1.8-6.4 7.2-10.9 14.3-10.9h37c24.1 0 45.4 16.4 51 41.2 6.6 29.1-14.5 65.3-51.7 65.3h-32l6.4-23.8c1.8-6.2 7.3-10.8 14.3-10.8h10.3c12.4 0 20.8-11.7 18.3-22.6-2.1-9.2-9.9-14.8-18.3-14.8h-19.8L112 309.2c-1.9 6.2-7.4 10.7-14.2 10.7l-24.7.1m220.6-69.4c.3-1 1.9-5.3-2.1-5.3h-57.5c-9.7 0-16.6-8.9-14.2-18.5l3.5-13.4h77.9c18.8 0 33.3 17.6 28.5 36.8l-14 51.8c-2.8 10.6-12.2 17.8-23.4 17.8l-57.5-.2c-42.9 0-38.5-63.8.7-63.8H284l-3.5 13.2c-1.9 6.2-7.4 10.8-14.2 10.8h-21.6c-5.3 0-5.3 7.9 0 7.9h34.9c4.6 0 5.1-3.9 5.5-5.3l8.6-31.8m103.1-36.9c34.4 0 59.3 32.3 50.3 65.4l-8.8 33.1c-1.2 4.9-5.7 7.8-10.3 7.8h-19.1c-4.5 0-7.6-4-6.4-8.3l10.6-40c3.3-11.6-5.6-23.4-18.1-23.4h-19.8l-17.2 64c-1.2 4.8-5.6 7.8-10.4 7.8h-18.9c-4.2 0-7.6-3.9-6.4-8.3l26.2-98h48.3M498 251.6l-8 30c-.9 3.3 1.5 6.7 5.1 6.7h73.3l-5.7 21c-1.9 6.2-7.4 10.7-14.2 10.7h-66.7c-20 0-33.3-19-28.3-36.7l10.8-40c4.8-17.6 20.7-29.6 38.6-29.6h47.3c19 0 33.2 17.7 28.3 36.8l-3.2 12c-2.9 11-12.7 17.6-23.2 17.6h-53.4l3.5-13c1.6-6.2 7.2-10.8 14.2-10.8H538c2 0 3.3-1 3.9-3l.7-2.6c.7-2.7-1.3-5.1-3.9-5.1h-32.9c-4.1 0-6.9 2.1-7.8 6zm70.2 68.4l35.6-133.1c1.2-4.7 5.5-7.9 10.4-7.9h18.9c4.5 0 7.7 4 6.5 8.3l-26.5 98.2c-5.1 20.7-24.2 34.5-44.9 34.5" ], + "creative-commons": [ 496, 512, [], "f25e", "M245.83 214.87l-33.22 17.28c-9.43-19.58-25.24-19.93-27.46-19.93-22.13 0-33.22 14.61-33.22 43.84 0 23.57 9.21 43.84 33.22 43.84 14.47 0 24.65-7.09 30.57-21.26l30.55 15.5c-6.17 11.51-25.69 38.98-65.1 38.98-22.6 0-73.96-10.32-73.96-77.05 0-58.69 43-77.06 72.63-77.06 30.72-.01 52.7 11.95 65.99 35.86zm143.05 0l-32.78 17.28c-9.5-19.77-25.72-19.93-27.9-19.93-22.14 0-33.22 14.61-33.22 43.84 0 23.55 9.23 43.84 33.22 43.84 14.45 0 24.65-7.09 30.54-21.26l31 15.5c-2.1 3.75-21.39 38.98-65.09 38.98-22.69 0-73.96-9.87-73.96-77.05 0-58.67 42.97-77.06 72.63-77.06 30.71-.01 52.58 11.95 65.56 35.86zM247.56 8.05C104.74 8.05 0 123.11 0 256.05c0 138.49 113.6 248 247.56 248 129.93 0 248.44-100.87 248.44-248 0-137.87-106.62-248-248.44-248zm.87 450.81c-112.54 0-203.7-93.04-203.7-202.81 0-105.42 85.43-203.27 203.72-203.27 112.53 0 202.82 89.46 202.82 203.26-.01 121.69-99.68 202.82-202.84 202.82z" ], + "creative-commons-by": [ 496, 512, [], "f4e7", "M314.9 194.4v101.4h-28.3v120.5h-77.1V295.9h-28.3V194.4c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7H299c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3zm-101.5-63.7c0-23.3 11.5-35 34.5-35s34.5 11.7 34.5 35c0 23-11.5 34.5-34.5 34.5s-34.5-11.5-34.5-34.5zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z" ], + "creative-commons-nc": [ 496, 512, [], "f4e8", "M247.6 8C387.4 8 496 115.9 496 256c0 147.2-118.5 248-248.4 248C113.1 504 0 393.2 0 256 0 123.1 104.7 8 247.6 8zM55.8 189.1c-7.4 20.4-11.1 42.7-11.1 66.9 0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4v38.1h-28.8V368c-27.5-.3-52.6-10.2-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4zM248.4 52.3c-38.4 0-112.4 8.7-170.5 93l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3v-38.1h28.8v38.1c22.7 1.2 43.4 8.9 62 23L295 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8z" ], + "creative-commons-nc-eu": [ 496, 512, [], "f4e9", "M247.7 8C103.6 8 0 124.8 0 256c0 136.3 111.7 248 247.7 248C377.9 504 496 403.1 496 256 496 117 388.4 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-23.2 3.7-45.2 10.9-66l65.7 29.1h-4.7v29.5h23.3c0 6.2-.4 3.2-.4 19.5h-22.8v29.5h27c11.4 67 67.2 101.3 124.6 101.3 26.6 0 50.6-7.9 64.8-15.8l-10-46.1c-8.7 4.6-28.2 10.8-47.3 10.8-28.2 0-58.1-10.9-67.3-50.2h90.3l128.3 56.8c-1.5 2.1-56.2 104.3-178.8 104.3zm-16.7-190.6l-.5-.4.9.4h-.4zm77.2-19.5h3.7v-29.5h-70.3l-28.6-12.6c2.5-5.5 5.4-10.5 8.8-14.3 12.9-15.8 31.1-22.4 51.1-22.4 18.3 0 35.3 5.4 46.1 10l11.6-47.3c-15-6.6-37-12.4-62.3-12.4-39 0-72.2 15.8-95.9 42.3-5.3 6.1-9.8 12.9-13.9 20.1l-81.6-36.1c64.6-96.8 157.7-93.6 170.7-93.6 113 0 203 90.2 203 203.4 0 18.7-2.1 36.3-6.3 52.9l-136.1-60.5z" ], + "creative-commons-nc-jp": [ 496, 512, [], "f4ea", "M247.7 8C103.6 8 0 124.8 0 256c0 136.4 111.8 248 247.7 248C377.9 504 496 403.2 496 256 496 117.2 388.5 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-21.1 3-41.2 9-60.3l127 56.5h-27.9v38.6h58.1l5.7 11.8v18.7h-63.8V360h63.8v56h61.7v-56h64.2v-35.7l81 36.1c-1.5 2.2-57.1 98.3-175.2 98.3zm87.6-137.3h-57.6v-18.7l2.9-5.6 54.7 24.3zm6.5-51.4v-17.8h-38.6l63-116H301l-43.4 96-23-10.2-39.6-85.7h-65.8l27.3 51-81.9-36.5c27.8-44.1 82.6-98.1 173.7-98.1 112.8 0 203 90 203 203.4 0 21-2.7 40.6-7.9 59l-101-45.1z" ], + "creative-commons-nd": [ 496, 512, [], "f4eb", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm94 144.3v42.5H162.1V197h180.3zm0 79.8v42.5H162.1v-42.5h180.3z" ], + "creative-commons-pd": [ 496, 512, [], "f4ec", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm0 449.5c-139.2 0-235.8-138-190.2-267.9l78.8 35.1c-2.1 10.5-3.3 21.5-3.3 32.9 0 99 73.9 126.9 120.4 126.9 22.9 0 53.5-6.7 79.4-29.5L297 311.1c-5.5 6.3-17.6 16.7-36.3 16.7-37.8 0-53.7-39.9-53.9-71.9 230.4 102.6 216.5 96.5 217.9 96.8-34.3 62.4-100.6 104.8-176.7 104.8zm194.2-150l-224-100c18.8-34 54.9-30.7 74.7-11l40.4-41.6c-27.1-23.3-58-27.5-78.1-27.5-47.4 0-80.9 20.5-100.7 51.6l-74.9-33.4c36.1-54.9 98.1-91.2 168.5-91.2 111.1 0 201.5 90.4 201.5 201.5 0 18-2.4 35.4-6.8 52-.3-.1-.4-.2-.6-.4z" ], + "creative-commons-pd-alt": [ 496, 512, [], "f4ed", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM135.5 323.3V186h68.2c33.7 0 50.5 15.5 50.5 46.5 0 9-3 46.5-57.1 46.5h-27v44.3h-34.6zm34.1-111.6v41.6h29.2c27.9 0 30-41.6-.9-41.6h-28.3zm93.9 111.6V186h53.2c21.4 0 70 5.2 70 68.6 0 63.5-48.6 68.6-70 68.6h-53.2zm34.1-108.5v79.7h19.9c24 0 34.5-15.3 34.5-39.9 0-42-31.2-39.9-35-39.9l-19.4.1z" ], + "creative-commons-remix": [ 496, 512, [], "f4ee", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm161.7 207.7l4.9 2.2v70c-7.2 3.6-63.4 27.5-67.3 28.8-6.5-1.8-113.7-46.8-137.3-56.2l-64.2 26.6-63.3-27.5v-63.8l59.3-24.8c-.7-.7-.4 5-.4-70.4l67.3-29.7L361 178.5v61.6l49.1 20.3zm-70.4 81.5v-43.8h-.4v-1.8l-113.8-46.5V295l113.8 46.9v-.4l.4.4zm7.5-57.6l39.9-16.4-36.8-15.5-39 16.4 35.9 15.5zm52.3 38.1v-43L355.2 298v43.4l44.3-19z" ], + "creative-commons-sa": [ 496, 512, [], "f4ef", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM137.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97h62.5c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6-33.1 0-51.7 14.6-55.8 43.8h18.2l-49.2 49.2-49-49.2h19.4z" ], + "creative-commons-sampling": [ 496, 512, [], "f4f0", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm3.6 53.2c2.8-.3 11.5 1 11.5 11.5l6.6 107.2 4.9-59.3c0-6 4.7-10.6 10.6-10.6 5.9 0 10.6 4.7 10.6 10.6 0 2.5-.5-5.7 5.7 81.5l5.8-64.2c.3-2.9 2.9-9.3 10.2-9.3 3.8 0 9.9 2.3 10.6 8.9l11.5 96.5 5.3-12.8c1.8-4.4 5.2-6.6 10.2-6.6h58v21.3h-50.9l-18.2 44.3c-3.9 9.9-19.5 9.1-20.8-3.1l-4-31.9-7.5 92.6c-.3 3-3 9.3-10.2 9.3-3 0-9.8-2.1-10.6-9.3 0-1.9.6 5.8-6.2-77.9l-5.3 72.2c-1.1 4.8-4.8 9.3-10.6 9.3-2.9 0-9.8-2-10.6-9.3 0-1.9.5 6.7-5.8-87.7l-5.8 94.8c0 6.3-3.6 12.4-10.6 12.4-5.2 0-10.6-4.1-10.6-12l-5.8-87.7c-5.8 92.5-5.3 84-5.3 85.9-1.1 4.8-4.8 9.3-10.6 9.3-3 0-9.8-2.1-10.6-9.3 0-.7-.4-1.1-.4-2.6l-6.2-88.6L182 348c-.7 6.5-6.7 9.3-10.6 9.3-5.8 0-9.6-4.1-10.6-8.9L149.7 272c-2 4-3.5 8.4-11.1 8.4H87.2v-21.3H132l13.7-27.9c4.4-9.9 18.2-7.2 19.9 2.7l3.1 20.4 8.4-97.9c0-6 4.8-10.6 10.6-10.6.5 0 10.6-.2 10.6 12.4l4.9 69.1 6.6-92.6c0-10.1 9.5-10.6 10.2-10.6.6 0 10.6.7 10.6 10.6l5.3 80.6 6.2-97.9c.1-1.1-.6-10.3 9.9-11.5z" ], + "creative-commons-sampling-plus": [ 496, 512, [], "f4f1", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm107 205.6c-4.7 0-9 2.8-10.7 7.2l-4 9.5-11-92.8c-1.7-13.9-22-13.4-23.1.4l-4.3 51.4-5.2-68.8c-1.1-14.3-22.1-14.2-23.2 0l-3.5 44.9-5.9-94.3c-.9-14.5-22.3-14.4-23.2 0l-5.1 83.7-4.3-66.3c-.9-14.4-22.2-14.4-23.2 0l-5.3 80.2-4.1-57c-1.1-14.3-22-14.3-23.2-.2l-7.7 89.8-1.8-12.2c-1.7-11.4-17.1-13.6-22-3.3l-13.2 27.7H87.5v23.2h51.3c4.4 0 8.4-2.5 10.4-6.4l10.7 73.1c2 13.5 21.9 13 23.1-.7l3.8-43.6 5.7 78.3c1.1 14.4 22.3 14.2 23.2-.1l4.6-70.4 4.8 73.3c.9 14.4 22.3 14.4 23.2-.1l4.9-80.5 4.5 71.8c.9 14.3 22.1 14.5 23.2.2l4.6-58.6 4.9 64.4c1.1 14.3 22 14.2 23.1.1l6.8-83 2.7 22.3c1.4 11.8 17.7 14.1 22.3 3.1l18-43.4h50.5V258l-58.4.3zm-78 5.2h-21.9v21.9c0 4.1-3.3 7.5-7.5 7.5-4.1 0-7.5-3.3-7.5-7.5v-21.9h-21.9c-4.1 0-7.5-3.3-7.5-7.5 0-4.1 3.4-7.5 7.5-7.5h21.9v-21.9c0-4.1 3.4-7.5 7.5-7.5s7.5 3.3 7.5 7.5v21.9h21.9c4.1 0 7.5 3.3 7.5 7.5 0 4.1-3.4 7.5-7.5 7.5z" ], + "creative-commons-share": [ 496, 512, [], "f4f2", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm101 132.4c7.8 0 13.7 6.1 13.7 13.7v182.5c0 7.7-6.1 13.7-13.7 13.7H214.3c-7.7 0-13.7-6-13.7-13.7v-54h-54c-7.8 0-13.7-6-13.7-13.7V131.1c0-8.2 6.6-12.7 12.4-13.7h136.4c7.7 0 13.7 6 13.7 13.7v54h54zM159.9 300.3h40.7V198.9c0-7.4 5.8-12.6 12-13.7h55.8v-40.3H159.9v155.4zm176.2-88.1H227.6v155.4h108.5V212.2z" ], + css3: [ 512, 512, [], "f13c", "M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z" ], + "css3-alt": [ 384, 512, [], "f38b", "M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z" ], + cuttlefish: [ 440, 512, [], "f38c", "M344 305.5c-17.5 31.6-57.4 54.5-96 54.5-56.6 0-104-47.4-104-104s47.4-104 104-104c38.6 0 78.5 22.9 96 54.5 13.7-50.9 41.7-93.3 87-117.8C385.7 39.1 320.5 8 248 8 111 8 0 119 0 256s111 248 248 248c72.5 0 137.7-31.1 183-80.7-45.3-24.5-73.3-66.9-87-117.8z" ], + "d-and-d": [ 576, 512, [], "f38d", "M82.5 98.9c-.6-17.2 2-33.8 12.7-48.2.3 7.4 1.2 14.5 4.2 21.6 5.9-27.5 19.7-49.3 42.3-65.5-1.9 5.9-3.5 11.8-3 17.7 8.7-7.4 18.8-17.8 44.4-22.7 14.7-2.8 29.7-2 42.1 1 38.5 9.3 61 34.3 69.7 72.3 5.3 23.1.7 45-8.3 66.4-5.2 12.4-12 24.4-20.7 35.1-2-1.9-3.9-3.8-5.8-5.6-42.8-40.8-26.8-25.2-37.4-37.4-1.1-1.2-1-2.2-.1-3.6 8.3-13.5 11.8-28.2 10-44-1.1-9.8-4.3-18.9-11.3-26.2-14.5-15.3-39.2-15-53.5.6-11.4 12.5-14.1 27.4-10.9 43.6.2 1.3.4 2.7 0 3.9-3.4 13.7-4.6 27.6-2.5 41.6.1.5.1 1.1.1 1.6 0 .3-.1.5-.2 1.1-21.8-11-36-28.3-43.2-52.2-8.3 17.8-11.1 35.5-6.6 54.1-15.6-15.2-21.3-34.3-22-55.2zm469.6 123.2c-11.6-11.6-25-20.4-40.1-26.6-12.8-5.2-26-7.9-39.9-7.1-10 .6-19.6 3.1-29 6.4-2.5.9-5.1 1.6-7.7 2.2-4.9 1.2-7.3-3.1-4.7-6.8 3.2-4.6 3.4-4.2 15-12 .6-.4 1.2-.8 2.2-1.5h-2.5c-.6 0-1.2.2-1.9.3-19.3 3.3-30.7 15.5-48.9 29.6-10.4 8.1-13.8 3.8-12-.5 1.4-3.5 3.3-6.7 5.1-10 1-1.8 2.3-3.4 3.5-5.1-.2-.2-.5-.3-.7-.5-27 18.3-46.7 42.4-57.7 73.3.3.3.7.6 1 .9.3-.6.5-1.2.9-1.7 10.4-12.1 22.8-21.8 36.6-29.8 18.2-10.6 37.5-18.3 58.7-20.2 4.3-.4 8.7-.1 13.1-.1-1.8.7-3.5.9-5.3 1.1-18.5 2.4-35.5 9-51.5 18.5-30.2 17.9-54.5 42.2-75.1 70.4-.3.4-.4.9-.7 1.3 14.5 5.3 24 17.3 36.1 25.6.2-.1.3-.2.4-.4l1.2-2.7c12.2-26.9 27-52.3 46.7-74.5 16.7-18.8 38-25.3 62.5-20 5.9 1.3 11.4 4.4 17.2 6.8 2.3-1.4 5.1-3.2 8-4.7 8.4-4.3 17.4-7 26.7-9 14.7-3.1 29.5-4.9 44.5-1.3v-.5c-.5-.4-1.2-.8-1.7-1.4zM316.7 397.6c-39.4-33-22.8-19.5-42.7-35.6-.8.9 0-.2-1.9 3-11.2 19.1-25.5 35.3-44 47.6-10.3 6.8-21.5 11.8-34.1 11.8-21.6 0-38.2-9.5-49.4-27.8-12-19.5-13.3-40.7-8.2-62.6 7.8-33.8 30.1-55.2 38.6-64.3-18.7-6.2-33 1.7-46.4 13.9.8-13.9 4.3-26.2 11.8-37.3-24.3 10.6-45.9 25-64.8 43.9-.3-5.8 5.4-43.7 5.6-44.7.3-2.7-.6-5.3-3-7.4-24.2 24.7-44.5 51.8-56.1 84.6 7.4-5.9 14.9-11.4 23.6-16.2-8.3 22.3-19.6 52.8-7.8 101.1 4.6 19 11.9 36.8 24.1 52.3 2.9 3.7 6.3 6.9 9.5 10.3.2-.2.4-.3.6-.5-1.4-7-2.2-14.1-1.5-21.9 2.2 3.2 3.9 6 5.9 8.6 12.6 16 28.7 27.4 47.2 35.6 25 11.3 51.1 13.3 77.9 8.6 54.9-9.7 90.7-48.6 116-98.8 1-1.8.6-2.9-.9-4.2zm172-46.4c-9.5-3.1-22.2-4.2-28.7-2.9 9.9 4 14.1 6.6 18.8 12 12.6 14.4 10.4 34.7-5.4 45.6-11.7 8.1-24.9 10.5-38.9 9.1-1.2-.1-2.3-.4-3-.6 2.8-3.7 6-7 8.1-10.8 9.4-16.8 5.4-42.1-8.7-56.1-2.1-2.1-4.6-3.9-7-5.9-.3 1.3-.1 2.1.1 2.8 4.2 16.6-8.1 32.4-24.8 31.8-7.6-.3-13.9-3.8-19.6-8.5-19.5-16.1-39.1-32.1-58.5-48.3-5.9-4.9-12.5-8.1-20.1-8.7-4.6-.4-9.3-.6-13.9-.9-5.9-.4-8.8-2.8-10.4-8.4-.9-3.4-1.5-6.8-2.2-10.2-1.5-8.1-6.2-13-14.3-14.2-4.4-.7-8.9-1-13.3-1.5-13-1.4-19.8-7.4-22.6-20.3-5 11-1.6 22.4 7.3 29.9 4.5 3.8 9.3 7.3 13.8 11.2 4.6 3.8 7.4 8.7 7.9 14.8.4 4.7.8 9.5 1.8 14.1 2.2 10.6 8.9 18.4 17 25.1 16.5 13.7 33 27.3 49.5 41.1 17.9 15 13.9 32.8 13 56-.9 22.9 12.2 42.9 33.5 51.2 1 .4 2 .6 3.6 1.1-15.7-18.2-10.1-44.1.7-52.3.3 2.2.4 4.3.9 6.4 9.4 44.1 45.4 64.2 85 56.9 16-2.9 30.6-8.9 42.9-19.8 2-1.8 3.7-4.1 5.9-6.5-19.3 4.6-35.8.1-50.9-10.6.7-.3 1.3-.3 1.9-.3 21.3 1.8 40.6-3.4 57-17.4 19.5-16.6 26.6-42.9 17.4-66-8.3-20.1-23.6-32.3-43.8-38.9zM99.4 179.3c-5.3-9.2-13.2-15.6-22.1-21.3 13.7-.5 26.6.2 39.6 3.7-7-12.2-8.5-24.7-5-38.7 5.3 11.9 13.7 20.1 23.6 26.8 19.7 13.2 35.7 19.6 46.7 30.2 3.4 3.3 6.3 7.1 9.6 10.9-.8-2.1-1.4-4.1-2.2-6-5-10.6-13-18.6-22.6-25-1.8-1.2-2.8-2.5-3.4-4.5-3.3-12.5-3-25.1-.7-37.6 1-5.5 2.8-10.9 4.5-16.3.8-2.4 2.3-4.6 4-6.6.6 6.9 0 25.5 19.6 46 10.8 11.3 22.4 21.9 33.9 32.7 9 8.5 18.3 16.7 25.5 26.8 1.1 1.6 2.2 3.3 3.8 4.7-5-13-14.2-24.1-24.2-33.8-9.6-9.3-19.4-18.4-29.2-27.4-3.3-3-4.6-6.7-5.1-10.9-1.2-10.4 0-20.6 4.3-30.2.5-1 1.1-2 1.9-3.3.5 4.2.6 7.9 1.4 11.6 4.8 23.1 20.4 36.3 49.3 63.5 10 9.4 19.3 19.2 25.6 31.6 4.8 9.3 7.3 19 5.7 29.6-.1.6.5 1.7 1.1 2 6.2 2.6 10 6.9 9.7 14.3 7.7-2.6 12.5-8 16.4-14.5 4.2 20.2-9.1 50.3-27.2 58.7.4-4.5 5-23.4-16.5-27.7-6.8-1.3-12.8-1.3-22.9-2.1 4.7-9 10.4-20.6.5-22.4-24.9-4.6-52.8 1.9-57.8 4.6 8.2.4 16.3 1 23.5 3.3-2 6.5-4 12.7-5.8 18.9-1.9 6.5 2.1 14.6 9.3 9.6 1.2-.9 2.3-1.9 3.3-2.7-3.1 17.9-2.9 15.9-2.8 18.3.3 10.2 9.5 7.8 15.7 7.3-2.5 11.8-29.5 27.3-45.4 25.8 7-4.7 12.7-10.3 15.9-17.9-6.5.8-12.9 1.6-19.2 2.4l-.3-.9c4.7-3.4 8-7.8 10.2-13.1 8.7-21.1-3.6-38-25-39.9-9.1-.8-17.8.8-25.9 5.5 6.2-15.6 17.2-26.6 32.6-34.5-15.2-4.3-8.9-2.7-24.6-6.3 14.6-9.3 30.2-13.2 46.5-14.6-5.2-3.2-48.1-3.6-70.2 20.9 7.9 1.4 15.5 2.8 23.2 4.2-23.8 7-44 19.7-62.4 35.6 1.1-4.8 2.7-9.5 3.3-14.3.6-4.5.8-9.2.1-13.6-1.5-9.4-8.9-15.1-19.7-16.3-7.9-.9-15.6.1-23.3 1.3-.9.1-1.7.3-2.9 0 15.8-14.8 36-21.7 53.1-33.5 6-4.5 6.8-8.2 3-14.9zm128.4 26.8c3.3 16 12.6 25.5 23.8 24.3-4.6-11.3-12.1-19.5-23.8-24.3z" ], + dashcube: [ 448, 512, [], "f210", "M326.6 104H110.4c-51.1 0-91.2 43.3-91.2 93.5V427c0 50.5 40.1 85 91.2 85h227.2c51.1 0 91.2-34.5 91.2-85V0L326.6 104zM153.9 416.5c-17.7 0-32.4-15.1-32.4-32.8V240.8c0-17.7 14.7-32.5 32.4-32.5h140.7c17.7 0 32 14.8 32 32.5v123.5l51.1 52.3H153.9z" ], + delicious: [ 448, 512, [], "f1a5", "M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1.5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3 1 1.1 2.1 2.2 3.3 3.3 5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12zM416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192v176z" ], + deploydog: [ 512, 512, [], "f38e", "M382.2 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.6 0-33.2 16.4-33.2 32.6zM188.5 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.7 0-33.2 16.4-33.2 32.6zM448 96c17.5 0 32 14.4 32 32v256c0 17.5-14.4 32-32 32H64c-17.5 0-32-14.4-32-32V128c0-17.5 14.4-32 32-32h384m0-32H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h384c35.2 0 64-28.8 64-64V128c0-35.2-28.8-64-64-64z" ], + deskpro: [ 480, 512, [], "f38f", "M205.9 512l31.1-38.4c12.3-.2 25.6-1.4 36.5-6.6 38.9-18.6 38.4-61.9 38.3-63.8-.1-5-.8-4.4-28.9-37.4H362c-.2 50.1-7.3 68.5-10.2 75.7-9.4 23.7-43.9 62.8-95.2 69.4-8.7 1.1-32.8 1.2-50.7 1.1zm200.4-167.7c38.6 0 58.5-13.6 73.7-30.9l-175.5-.3-17.4 31.3 119.2-.1zm-43.6-223.9v168.3h-73.5l-32.7 55.5H250c-52.3 0-58.1-56.5-58.3-58.9-1.2-13.2-21.3-11.6-20.1 1.8 1.4 15.8 8.8 40 26.4 57.1h-91c-25.5 0-110.8-26.8-107-114V16.9C0 .9 9.7.3 15 .1h82c.2 0 .3.1.5.1 4.3-.4 50.1-2.1 50.1 43.7 0 13.3 20.2 13.4 20.2 0 0-18.2-5.5-32.8-15.8-43.7h84.2c108.7-.4 126.5 79.4 126.5 120.2zm-132.5 56l64 29.3c13.3-45.5-42.2-71.7-64-29.3z" ], + deviantart: [ 320, 512, [], "f1bd", "M320 93.2l-98.2 179.1 7.4 9.5H320v127.7H159.1l-13.5 9.2-43.7 84c-.3 0-8.6 8.6-9.2 9.2H0v-93.2l93.2-179.4-7.4-9.2H0V102.5h156l13.5-9.2 43.7-84c.3 0 8.6-8.6 9.2-9.2H320v93.1z" ], + digg: [ 512, 512, [], "f1a6", "M81.7 172.3H0v174.4h132.7V96h-51v76.3zm0 133.4H50.9v-92.3h30.8v92.3zm297.2-133.4v174.4h81.8v28.5h-81.8V416H512V172.3H378.9zm81.8 133.4h-30.8v-92.3h30.8v92.3zm-235.6 41h82.1v28.5h-82.1V416h133.3V172.3H225.1v174.4zm51.2-133.3h30.8v92.3h-30.8v-92.3zM153.3 96h51.3v51h-51.3V96zm0 76.3h51.3v174.4h-51.3V172.3z" ], + "digital-ocean": [ 512, 512, [], "f391", "M256 504v-96.1c101.8 0 180.8-100.9 141.7-208-14.3-39.6-46.1-71.4-85.8-85.7-107.1-38.8-208.1 39.9-208.1 141.7H8C8 93.7 164.9-32.8 335 20.3c74.2 23.3 133.6 82.4 156.6 156.6C544.8 347.2 418.6 504 256 504zm.3-191.4h-95.6v95.6h95.6v-95.6zm-95.6 95.6H87v73.6h73.7v-73.6zM87 346.6H25.4v61.6H87v-61.6z" ], + discord: [ 448, 512, [], "f392", "M297.216 243.2c0 15.616-11.52 28.416-26.112 28.416-14.336 0-26.112-12.8-26.112-28.416s11.52-28.416 26.112-28.416c14.592 0 26.112 12.8 26.112 28.416zm-119.552-28.416c-14.592 0-26.112 12.8-26.112 28.416s11.776 28.416 26.112 28.416c14.592 0 26.112-12.8 26.112-28.416.256-15.616-11.52-28.416-26.112-28.416zM448 52.736V512c-64.494-56.994-43.868-38.128-118.784-107.776l13.568 47.36H52.48C23.552 451.584 0 428.032 0 398.848V52.736C0 23.552 23.552 0 52.48 0h343.04C424.448 0 448 23.552 448 52.736zm-72.96 242.688c0-82.432-36.864-149.248-36.864-149.248-36.864-27.648-71.936-26.88-71.936-26.88l-3.584 4.096c43.52 13.312 63.744 32.512 63.744 32.512-60.811-33.329-132.244-33.335-191.232-7.424-9.472 4.352-15.104 7.424-15.104 7.424s21.248-20.224 67.328-33.536l-2.56-3.072s-35.072-.768-71.936 26.88c0 0-36.864 66.816-36.864 149.248 0 0 21.504 37.12 78.08 38.912 0 0 9.472-11.52 17.152-21.248-32.512-9.728-44.8-30.208-44.8-30.208 3.766 2.636 9.976 6.053 10.496 6.4 43.21 24.198 104.588 32.126 159.744 8.96 8.96-3.328 18.944-8.192 29.44-15.104 0 0-12.8 20.992-46.336 30.464 7.68 9.728 16.896 20.736 16.896 20.736 56.576-1.792 78.336-38.912 78.336-38.912z" ], + discourse: [ 448, 512, [], "f393", "M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z" ], + dochub: [ 416, 512, [], "f394", "M397.9 160H256V19.6L397.9 160zM304 192v130c0 66.8-36.5 100.1-113.3 100.1H96V84.8h94.7c12 0 23.1.8 33.1 2.5v-84C212.9 1.1 201.4 0 189.2 0H0v512h189.2C329.7 512 400 447.4 400 318.1V192h-96z" ], + docker: [ 640, 512, [], "f395", "M349.9 236.3h-66.1v-59.4h66.1v59.4zm0-204.3h-66.1v60.7h66.1V32zm78.2 144.8H362v59.4h66.1v-59.4zm-156.3-72.1h-66.1v60.1h66.1v-60.1zm78.1 0h-66.1v60.1h66.1v-60.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4.4 67.6.1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1l-13.3-8.9zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm-78.1-72.1h-66.1v60.1h66.1v-60.1z" ], + draft2digital: [ 480, 512, [], "f396", "M369.9 425.4V371l47.1 27.2-47.1 27.2zM82.4 380.6c25.5-27.3 97.7-104.7 150.9-170 35.1-43.1 40.3-82.4 28.4-112.7-7.4-18.8-17.5-30.2-24.3-35.7 45.3 2.1 68 23.4 82.2 38.3 0 0 42.4 48.2 5.8 113.3-37 65.9-110.9 147.5-128.5 166.7H82.4zm51.8-219.2c0 12.4-10 22.4-22.4 22.4-12.4 0-22.4-10-22.4-22.4 0-12.4 10-22.4 22.4-22.4 12.4 0 22.4 10.1 22.4 22.4M336 315.9v64.7h-91.3c30.8-35 81.8-95.9 111.8-149.3 35.2-62.6 16.1-123.4-12.8-153.3-4.4-4.6-62.2-62.9-166-41.2-59.1 12.4-89.4 43.4-104.3 67.3-13.1 20.9-17 39.8-18.2 47.7-5.5 33 19.4 67.1 56.7 67.1 31.7 0 57.3-25.7 57.3-57.4 0-27.1-19.7-52.1-48-56.8 1.8-7.3 17.7-21.1 26.3-24.7 41.1-17.3 78 5.2 83.3 33.5 8.3 44.3-37.1 90.4-69.7 127.6C84.5 328.1 18.3 396.8 0 415.9l336-.1V480l144-81.9-144-82.2z" ], + dribbble: [ 512, 512, [], "f17d", "M256 8C119.252 8 8 119.252 8 256s111.252 248 248 248 248-111.252 248-248S392.748 8 256 8zm163.97 114.366c29.503 36.046 47.369 81.957 47.835 131.955-6.984-1.477-77.018-15.682-147.502-6.818-5.752-14.041-11.181-26.393-18.617-41.614 78.321-31.977 113.818-77.482 118.284-83.523zM396.421 97.87c-3.81 5.427-35.697 48.286-111.021 76.519-34.712-63.776-73.185-116.168-79.04-124.008 67.176-16.193 137.966 1.27 190.061 47.489zm-230.48-33.25c5.585 7.659 43.438 60.116 78.537 122.509-99.087 26.313-186.36 25.934-195.834 25.809C62.38 147.205 106.678 92.573 165.941 64.62zM44.17 256.323c0-2.166.043-4.322.108-6.473 9.268.19 111.92 1.513 217.706-30.146 6.064 11.868 11.857 23.915 17.174 35.949-76.599 21.575-146.194 83.527-180.531 142.306C64.794 360.405 44.17 310.73 44.17 256.323zm81.807 167.113c22.127-45.233 82.178-103.622 167.579-132.756 29.74 77.283 42.039 142.053 45.189 160.638-68.112 29.013-150.015 21.053-212.768-27.882zm248.38 8.489c-2.171-12.886-13.446-74.897-41.152-151.033 66.38-10.626 124.7 6.768 131.947 9.055-9.442 58.941-43.273 109.844-90.795 141.978z" ], + "dribbble-square": [ 448, 512, [], "f397", "M90.2 228.2c8.9-42.4 37.4-77.7 75.7-95.7 3.6 4.9 28 38.8 50.7 79-64 17-120.3 16.8-126.4 16.7zM314.6 154c-33.6-29.8-79.3-41.1-122.6-30.6 3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4zM140.1 364c40.5 31.6 93.3 36.7 137.3 18-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6zm98.8-108.2c-3.4-7.8-7.2-15.5-11.1-23.2C159.6 253 93.4 252.2 87.4 252c0 1.4-.1 2.8-.1 4.2 0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8zm34.9 16.3c17.9 49.1 25.1 89.1 26.5 97.4 30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8zm-20.3-48.4c4.8 9.8 8.3 17.8 12 26.8 45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 176c0-88.2-71.8-160-160-160S64 167.8 64 256s71.8 160 160 160 160-71.8 160-160z" ], + dropbox: [ 528, 512, [], "f16b", "M264.4 116.3l-132 84.3 132 84.3-132 84.3L0 284.1l132.3-84.3L0 116.3 132.3 32l132.1 84.3zM131.6 395.7l132-84.3 132 84.3-132 84.3-132-84.3zm132.8-111.6l132-84.3-132-83.6L395.7 32 528 116.3l-132.3 84.3L528 284.8l-132.3 84.3-131.3-85z" ], + drupal: [ 448, 512, [], "f1a9", "M319.5 114.7c-22.2-14-43.5-19.5-64.7-33.5-13-8.8-31.3-30-46.5-48.3-2.7 29.3-11.5 41.2-22 49.5-21.3 17-34.8 22.2-53.5 32.3C117 123 32 181.5 32 290.5 32 399.7 123.8 480 225.8 480 327.5 480 416 406 416 294c0-112.3-83-171-96.5-179.3zm2.5 325.6c-20.1 20.1-90.1 28.7-116.7 4.2-4.8-4.8.3-12 6.5-12 0 0 17 13.3 51.5 13.3 27 0 46-7.7 54.5-14 6.1-4.6 8.4 4.3 4.2 8.5zm-54.5-52.6c8.7-3.6 29-3.8 36.8 1.3 4.1 2.8 16.1 18.8 6.2 23.7-8.4 4.2-1.2-15.7-26.5-15.7-14.7 0-19.5 5.2-26.7 11-7 6-9.8 8-12.2 4.7-6-8.2 15.9-22.3 22.4-25zM360 405c-15.2-1-45.5-48.8-65-49.5-30.9-.9-104.1 80.7-161.3 42-38.8-26.6-14.6-104.8 51.8-105.2 49.5-.5 83.8 49 108.5 48.5 21.3-.3 61.8-41.8 81.8-41.8 48.7 0 23.3 109.3-15.8 106z" ], + dyalog: [ 416, 512, [], "f399", "M0 32v119.2h64V96h107.2C284.6 96 352 176.2 352 255.9 352 332 293.4 416 171.2 416H0v64h171.2C331.9 480 416 367.3 416 255.9c0-58.7-22.1-113.4-62.3-154.3C308.9 56 245.7 32 171.2 32H0z" ], + earlybirds: [ 480, 512, [], "f39a", "M313.2 47.5c1.2-13 21.3-14 36.6-8.7.9.3 26.2 9.7 19 15.2-27.9-7.4-56.4 18.2-55.6-6.5zm-201 6.9c30.7-8.1 62 20 61.1-7.1-1.3-14.2-23.4-15.3-40.2-9.6-1 .3-28.7 10.5-20.9 16.7zM319.4 160c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-159.7 0c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm318.5 163.2c-9.9 24-40.7 11-63.9-1.2-13.5 69.1-58.1 111.4-126.3 124.2.3.9-2-.1 24 1 33.6 1.4 63.8-3.1 97.4-8-19.8-13.8-11.4-37.1-9.8-38.1 1.4-.9 14.7 1.7 21.6 11.5 8.6-12.5 28.4-14.8 30.2-13.6 1.6 1.1 6.6 20.9-6.9 34.6 4.7-.9 8.2-1.6 9.8-2.1 2.6-.8 17.7 11.3 3.1 13.3-14.3 2.3-22.6 5.1-47.1 10.8-45.9 10.7-85.9 11.8-117.7 12.8l1 11.6c3.8 18.1-23.4 24.3-27.6 6.2.8 17.9-27.1 21.8-28.4-1l-.5 5.3c-.7 18.4-28.4 17.9-28.3-.6-7.5 13.5-28.1 6.8-26.4-8.5l1.2-12.4c-36.7.9-59.7 3.1-61.8 3.1-20.9 0-20.9-31.6 0-31.6 2.4 0 27.7 1.3 63.2 2.8-61.1-15.5-103.7-55-114.9-118.2-25 12.8-57.5 26.8-68.2.8-10.5-25.4 21.5-42.6 66.8-73.4.7-6.6 1.6-13.3 2.7-19.8-14.4-19.6-11.6-36.3-16.1-60.4-16.8 2.4-23.2-9.1-23.6-23.1.3-7.3 2.1-14.9 2.4-15.4 1.1-1.8 10.1-2 12.7-2.6 6-31.7 50.6-33.2 90.9-34.5 19.7-21.8 45.2-41.5 80.9-48.3C203.3 29 215.2 8.5 216.2 8c1.7-.8 21.2 4.3 26.3 23.2 5.2-8.8 18.3-11.4 19.6-10.7 1.1.6 6.4 15-4.9 25.9 40.3 3.5 72.2 24.7 96 50.7 36.1 1.5 71.8 5.9 77.1 34 2.7.6 11.6.8 12.7 2.6.3.5 2.1 8.1 2.4 15.4-.5 13.9-6.8 25.4-23.6 23.1-3.2 17.3-2.7 32.9-8.7 47.7 2.4 11.7 4 23.8 4.8 36.4 37 25.4 70.3 42.5 60.3 66.9zM207.4 159.9c.9-44-37.9-42.2-78.6-40.3-21.7 1-38.9 1.9-45.5 13.9-11.4 20.9 5.9 92.9 23.2 101.2 9.8 4.7 73.4 7.9 86.3-7.1 8.2-9.4 15-49.4 14.6-67.7zm52 58.3c-4.3-12.4-6-30.1-15.3-32.7-2-.5-9-.5-11 0-10 2.8-10.8 22.1-17 37.2 15.4 0 19.3 9.7 23.7 9.7 4.3 0 6.3-11.3 19.6-14.2zm135.7-84.7c-6.6-12.1-24.8-12.9-46.5-13.9-40.2-1.9-78.2-3.8-77.3 40.3-.5 18.3 5 58.3 13.2 67.8 13 14.9 76.6 11.8 86.3 7.1 15.8-7.6 36.5-78.9 24.3-101.3z" ], + ebay: [ 640, 512, [], "f4f4", "M405.2 263.8c-29.1.9-47.2 6.2-47.2 25.3 0 12.4 9.9 25.8 35 25.8 33.7 0 51.6-18.4 51.6-48.4v-3.3c-11.8 0-26.3.1-39.4.6m71.5 39.7c0 9.3.3 18.6 1 26.8h-29.8c-.8-6.9-1.1-13.6-1.1-20.2-16.1 19.8-35.3 25.5-61.9 25.5-39.5 0-60.6-20.9-60.6-45 0-35 28.8-47.3 78.6-48.4 13.7-.3 29-.4 41.7-.4v-3.4c0-23.4-15-33-41-33-19.3 0-33.6 8-35 21.8h-33.7c3.6-34.4 39.7-43.1 71.5-43.1 38.1 0 70.3 13.5 70.3 53.8v65.6zm-349-56.8c-2.3-54.7-87.5-56.6-94.4 0h94.4zm-95 21.4c3.5 58.3 79.2 57.4 91.2 21.6H157c-6.4 34.4-43 46.1-74.4 46.1-57.2 0-82.5-31.5-82.5-74 0-46.8 26.2-77.6 83-77.6 45.3 0 78.4 23.7 78.4 75.4v8.5H32.7zm211 45.7c29.8 0 50.2-21.5 50.2-53.8 0-32.4-20.4-53.8-50.2-53.8-29.6 0-50.2 21.4-50.2 53.8 0 32.3 20.6 53.8 50.2 53.8m-82.2-186h32.1v80.6c15.7-18.7 37.4-24.2 58.7-24.2 35.7 0 75.4 24.1 75.4 76.2 0 43.6-31.5 75.4-76 75.4-23.3 0-45.1-8.3-58.7-24.9 0 6.6-.4 13.2-1.1 19.5h-31.5c.5-10.2 1.1-22.8 1.1-33.1V127.8zM640 189.5l-99.2 194.8h-35.9l28.5-54.1-74.6-140.7h37.5l54.9 109.9L606 189.5h34z" ], + edge: [ 512, 512, [], "f282", "M25.714 228.163c.111-.162.23-.323.342-.485-.021.162-.045.323-.065.485h-.277zm460.572 15.508c0-44.032-7.754-84.465-28.801-122.405C416.498 47.879 343.912 8.001 258.893 8.001 118.962 7.724 40.617 113.214 26.056 227.679c42.429-61.312 117.073-121.376 220.375-124.966 0 0 109.666 0 99.419 104.957H169.997c6.369-37.386 18.554-58.986 34.339-78.926-75.048 34.893-121.85 96.096-120.742 188.315.83 71.448 50.124 144.836 120.743 171.976 83.357 31.847 192.776 7.2 240.132-21.324V363.307c-80.864 56.494-270.871 60.925-272.255-67.572h314.073v-52.064z" ], + elementor: [ 448, 512, [], "f430", "M425.6 32H22.4C10 32 0 42 0 54.4v403.2C0 470 10 480 22.4 480h403.2c12.4 0 22.4-10 22.4-22.4V54.4C448 42 438 32 425.6 32M164.3 355.5h-39.8v-199h39.8v199zm159.3 0H204.1v-39.8h119.5v39.8zm0-79.6H204.1v-39.8h119.5v39.8zm0-79.7H204.1v-39.8h119.5v39.8z" ], + ember: [ 640, 512, [], "f423", "M639.9 254.6c-1.1-10.7-10.7-6.8-10.7-6.8s-15.6 12.1-29.3 10.7c-13.7-1.3-9.4-32-9.4-32s3-28.1-5.1-30.4c-8.1-2.4-18 7.3-18 7.3s-12.4 13.7-18.3 31.2l-1.6.5s1.9-30.6-.3-37.6c-1.6-3.5-16.4-3.2-18.8 3s-14.2 49.2-15 67.2c0 0-23.1 19.6-43.3 22.8s-25-9.4-25-9.4 54.8-15.3 52.9-59.1c-1.9-43.8-44.2-27.6-49-24-4.6 3.5-29.4 18.4-36.6 59.7-.2 1.4-.7 7.5-.7 7.5s-21.2 14.2-33 18c0 0 33-55.6-7.3-80.9-18.3-11-32.8 12.1-32.8 12.1s54.5-60.7 42.5-112c-5.8-24.4-18-27.1-29.2-23.1-17 6.7-23.5 16.7-23.5 16.7s-22 32-27.1 79.5-12.6 105.1-12.6 105.1-10.5 10.2-20.2 10.7-5.4-28.7-5.4-28.7 7.5-44.6 7-52.1-1.1-11.6-9.9-14.2c-8.9-2.7-18.5 8.6-18.5 8.6s-25.5 38.7-27.7 44.6l-1.3 2.4-1.3-1.6s18-52.7.8-53.5c-17.2-.8-28.5 18.8-28.5 18.8s-19.6 32.8-20.4 36.5l-1.3-1.6s8.1-38.2 6.4-47.6c-1.6-9.4-10.5-7.5-10.5-7.5s-11.3-1.3-14.2 5.9-13.7 55.3-15 70.7c0 0-28.2 20.2-46.8 20.4-18.5.3-16.7-11.8-16.7-11.8s68-23.3 49.4-69.2c-8.3-11.8-18-15.5-31.7-15.3-13.7.3-30.3 8.6-41.3 33.3-5.3 11.8-6.8 23-7.8 31.5 0 0-12.3 2.4-18.8-2.9s-10 0-10 0-11.2 14-.1 18.3 28.1 6.1 28.1 6.1c1.6 7.5 6.2 19.5 19.6 29.7 20.2 15.3 58.8-1.3 58.8-1.3l15.9-8.8s.5 14.6 12.1 16.7c11.6 2.1 16.4 1 36.5-47.9 11.8-25 12.6-23.6 12.6-23.6l1.3-.3s-9.1 46.8-5.6 59.7C187.7 319.4 203 318 203 318s8.3 2.4 15-21.2c6.7-23.6 19.6-49.9 19.6-49.9h1.6s-5.6 48.1 3 63.7c8.6 15.6 30.9 5.3 30.9 5.3s15.6-7.8 18-10.2c0 0 18.5 15.8 44.6 12.9 58.3-11.5 79.1-25.9 79.1-25.9s10 24.4 41.1 26.7c35.5 2.7 54.8-18.6 54.8-18.6s-.3 13.5 12.1 18.6c12.4 5.1 20.7-22.8 20.7-22.8l20.7-57.2h1.9s1.1 37.3 21.5 43.2 47-13.7 47-13.7 6.4-3.5 5.3-14.3zm-578 5.3c.8-32 21.8-45.9 29-39 7.3 7 4.6 22-9.1 31.4-13.7 9.5-19.9 7.6-19.9 7.6zm272.8-123.8s19.1-49.7 23.6-25.5-40 96.2-40 96.2c.5-16.2 16.4-70.7 16.4-70.7zm22.8 138.4c-12.6 33-43.3 19.6-43.3 19.6s-3.5-11.8 6.4-44.9 33.3-20.2 33.3-20.2 16.2 12.4 3.6 45.5zm84.6-14.6s-3-10.5 8.1-30.6c11-20.2 19.6-9.1 19.6-9.1s9.4 10.2-1.3 25.5-26.4 14.2-26.4 14.2z" ], + empire: [ 496, 512, [], "f1d1", "M287.6 54.2c-10.8-2.2-22.1-3.3-33.5-3.6V32.4c78.1 2.2 146.1 44 184.6 106.6l-15.8 9.1c-6.1-9.7-12.7-18.8-20.2-27.1l-18 15.5c-26-29.6-61.4-50.7-101.9-58.4l4.8-23.9zM53.4 322.4l23-7.7c-6.4-18.3-10-38.2-10-58.7s3.3-40.4 9.7-58.7l-22.7-7.7c3.6-10.8 8.3-21.3 13.6-31l-15.8-9.1C34 181 24.1 217.5 24.1 256s10 75 27.1 106.6l15.8-9.1c-5.3-10-9.7-20.3-13.6-31.1zM213.1 434c-40.4-8-75.8-29.1-101.9-58.7l-18 15.8c-7.5-8.6-14.4-17.7-20.2-27.4l-16 9.4c38.5 62.3 106.8 104.3 184.9 106.6v-18.3c-11.3-.3-22.7-1.7-33.5-3.6l4.7-23.8zM93.3 120.9l18 15.5c26-29.6 61.4-50.7 101.9-58.4l-4.7-23.8c10.8-2.2 22.1-3.3 33.5-3.6V32.4C163.9 34.6 95.9 76.4 57.4 139l15.8 9.1c6-9.7 12.6-18.9 20.1-27.2zm309.4 270.2l-18-15.8c-26 29.6-61.4 50.7-101.9 58.7l4.7 23.8c-10.8 1.9-22.1 3.3-33.5 3.6v18.3c78.1-2.2 146.4-44.3 184.9-106.6l-16.1-9.4c-5.7 9.7-12.6 18.8-20.1 27.4zM496 256c0 137-111 248-248 248S0 393 0 256 111 8 248 8s248 111 248 248zm-12.2 0c0-130.1-105.7-235.8-235.8-235.8S12.2 125.9 12.2 256 117.9 491.8 248 491.8 483.8 386.1 483.8 256zm-39-106.6l-15.8 9.1c5.3 9.7 10 20.2 13.6 31l-22.7 7.7c6.4 18.3 9.7 38.2 9.7 58.7s-3.6 40.4-10 58.7l23 7.7c-3.9 10.8-8.3 21-13.6 31l15.8 9.1C462 331 471.9 294.5 471.9 256s-9.9-75-27.1-106.6zm-183 177.7c16.3-3.3 30.4-11.6 40.7-23.5l51.2 44.8c11.9-13.6 21.3-29.3 27.1-46.8l-64.2-22.1c2.5-7.5 3.9-15.2 3.9-23.5s-1.4-16.1-3.9-23.5l64.5-22.1c-6.1-17.4-15.5-33.2-27.4-46.8l-51.2 44.8c-10.2-11.9-24.4-20.5-40.7-23.8l13.3-66.4c-8.6-1.9-17.7-2.8-27.1-2.8-9.4 0-18.5.8-27.1 2.8l13.3 66.4c-16.3 3.3-30.4 11.9-40.7 23.8l-51.2-44.8c-11.9 13.6-21.3 29.3-27.4 46.8l64.5 22.1c-2.5 7.5-3.9 15.2-3.9 23.5s1.4 16.1 3.9 23.5l-64.2 22.1c5.8 17.4 15.2 33.2 27.1 46.8l51.2-44.8c10.2 11.9 24.4 20.2 40.7 23.5l-13.3 66.7c8.6 1.7 17.7 2.8 27.1 2.8 9.4 0 18.5-1.1 27.1-2.8l-13.3-66.7z" ], + envira: [ 448, 512, [], "f299", "M0 32c477.6 0 366.6 317.3 367.1 366.3L448 480h-26l-70.4-71.2c-39 4.2-124.4 34.5-214.4-37C47 300.3 52 214.7 0 32zm79.7 46c-49.7-23.5-5.2 9.2-5.2 9.2 45.2 31.2 66 73.7 90.2 119.9 31.5 60.2 79 139.7 144.2 167.7 65 28 34.2 12.5 6-8.5-28.2-21.2-68.2-87-91-130.2-31.7-60-61-118.6-144.2-158.1z" ], + erlang: [ 640, 512, [], "f39d", "M21.7 246.4c-.1 86.8 29 159.5 78.7 212.1H0v-405h87.2c-41.5 50.2-65.6 116.2-65.5 192.9zM640 53.6h-83.6c31.4 42.7 48.7 97.5 46.2 162.7.5 6 .5 11.7 0 24.1H230.2c-.2 109.7 38.9 194.9 138.6 195.3 68.5-.3 118-51 151.9-106.1l96.4 48.2c-17.4 30.9-36.5 57.8-57.9 80.8H640v-405zm-80.8 405s0-.1 0 0h-.2.2zm-3.1-405h.3l-.1-.1-.2.1zm-230.7 9.6c-45.9.1-85.1 33.5-89.2 83.2h169.9c-1.1-49.7-34.5-83.1-80.7-83.2z" ], + ethereum: [ 320, 512, [], "f42e", "M311.9 260.8L160 353.6 8 260.8 160 0l151.9 260.8zM160 383.4L8 290.6 160 512l152-221.4-152 92.8z" ], + etsy: [ 384, 512, [], "f2d7", "M384 348c-1.75 10.75-13.75 110-15.5 132-117.879-4.299-219.895-4.743-368.5 0v-25.5c45.457-8.948 60.627-8.019 61-35.25 1.793-72.322 3.524-244.143 0-322-1.029-28.46-12.13-26.765-61-36v-25.5c73.886 2.358 255.933 8.551 362.999-3.75-3.5 38.25-7.75 126.5-7.75 126.5H332C320.947 115.665 313.241 68 277.25 68h-137c-10.25 0-10.75 3.5-10.75 9.75V241.5c58 .5 88.5-2.5 88.5-2.5 29.77-.951 27.56-8.502 40.75-65.251h25.75c-4.407 101.351-3.91 61.829-1.75 160.25H257c-9.155-40.086-9.065-61.045-39.501-61.5 0 0-21.5-2-88-2v139c0 26 14.25 38.25 44.25 38.25H263c63.636 0 66.564-24.996 98.751-99.75H384z" ], + expeditedssl: [ 496, 512, [], "f23e", "M248 43.4C130.6 43.4 35.4 138.6 35.4 256S130.6 468.6 248 468.6 460.6 373.4 460.6 256 365.4 43.4 248 43.4zm-97.4 132.9c0-53.7 43.7-97.4 97.4-97.4s97.4 43.7 97.4 97.4v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6c0-82.1-124-82.1-124 0v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6zM389.7 380c0 9.7-8 17.7-17.7 17.7H124c-9.7 0-17.7-8-17.7-17.7V238.3c0-9.7 8-17.7 17.7-17.7h248c9.7 0 17.7 8 17.7 17.7V380zm-248-137.3v132.9c0 2.5-1.9 4.4-4.4 4.4h-8.9c-2.5 0-4.4-1.9-4.4-4.4V242.7c0-2.5 1.9-4.4 4.4-4.4h8.9c2.5 0 4.4 1.9 4.4 4.4zm141.7 48.7c0 13-7.2 24.4-17.7 30.4v31.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-31.6c-10.5-6.1-17.7-17.4-17.7-30.4 0-19.7 15.8-35.4 35.4-35.4s35.5 15.8 35.5 35.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 478.3C121 486.3 17.7 383 17.7 256S121 25.7 248 25.7 478.3 129 478.3 256 375 486.3 248 486.3z" ], + facebook: [ 448, 512, [], "f09a", "M448 56.7v398.5c0 13.7-11.1 24.7-24.7 24.7H309.1V306.5h58.2l8.7-67.6h-67v-43.2c0-19.6 5.4-32.9 33.5-32.9h35.8v-60.5c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9h-58.4v67.6h58.4V480H24.7C11.1 480 0 468.9 0 455.3V56.7C0 43.1 11.1 32 24.7 32h398.5c13.7 0 24.8 11.1 24.8 24.7z" ], + "facebook-f": [ 264, 512, [], "f39e", "M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229" ], + "facebook-messenger": [ 448, 512, [], "f39f", "M224 32C15.9 32-77.5 278 84.6 400.6V480l75.7-42c142.2 39.8 285.4-59.9 285.4-198.7C445.8 124.8 346.5 32 224 32zm23.4 278.1L190 250.5 79.6 311.6l121.1-128.5 57.4 59.6 110.4-61.1-121.1 128.5z" ], + "facebook-square": [ 448, 512, [], "f082", "M448 80v352c0 26.5-21.5 48-48 48h-85.3V302.8h60.6l8.7-67.6h-69.3V192c0-19.6 5.4-32.9 33.5-32.9H384V98.7c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9H184v67.6h60.9V480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z" ], + firefox: [ 480, 512, [], "f269", "M478.1 235.3c-.7-4.5-1.4-7.1-1.4-7.1s-1.8 2-4.7 5.9c-.9-10.7-2.8-21.2-5.8-31.6-3.7-12.9-8.5-25.4-14.5-37.4-3.8-8-8.2-15.6-13.3-22.8-1.8-2.7-3.7-5.4-5.6-7.9-8.8-14.4-19-23.3-30.7-40-7.6-12.8-12.9-26.9-15.4-41.6-3.2 8.9-5.7 18-7.4 27.3-12.1-12.2-22.5-20.8-28.9-26.7C319.4 24.2 323 9.1 323 9.1S264.7 74.2 289.9 142c8.7 23 23.8 43.1 43.4 57.9 24.4 20.2 50.8 36 64.7 76.6-11.2-21.3-28.1-39.2-48.8-51.5 6.2 14.7 9.4 30.6 9.3 46.5 0 61-49.6 110.5-110.6 110.4-8.3 0-16.5-.9-24.5-2.8-9.5-1.8-18.7-4.9-27.4-9.3-12.9-7.8-24-18.1-32.8-30.3l-.2-.3 2 .7c4.6 1.6 9.2 2.8 14 3.7 18.7 4 38.3 1.7 55.6-6.6 17.5-9.7 28-16.9 36.6-14h.2c8.4 2.7 15-5.5 9-14-10.4-13.4-27.4-20-44.2-17-17.5 2.5-33.5 15-56.4 2.9-1.5-.8-2.9-1.6-4.3-2.5-1.6-.9 4.9 1.3 3.4.3-5-2.5-9.8-5.4-14.4-8.6-.3-.3 3.5 1.1 3.1.8-5.9-4-11-9.2-15-15.2-4.1-7.4-4.5-16.4-1-24.1 2.1-3.8 5.4-6.9 9.3-8.7 3 1.5 4.8 2.6 4.8 2.6s-1.3-2.5-2.1-3.8c.3-.1.5 0 .8-.2 2.6 1.1 8.3 4 11.4 5.8 2.1 1.1 3.8 2.7 5.2 4.7 0 0 1-.5.3-2.7-1.1-2.7-2.9-5-5.4-6.6h.2c2.3 1.2 4.5 2.6 6.6 4.1 1.9-4.4 2.8-9.2 2.6-14 .2-2.6-.2-5.3-1.1-7.8-.8-1.6.5-2.2 1.9-.5-.2-1.3-.7-2.5-1.2-3.7v-.1s.8-1.1 1.2-1.5c1-1 2.1-1.9 3.4-2.7 7.2-4.5 14.8-8.4 22.7-11.6 6.4-2.8 11.7-4.9 12.8-5.6 1.6-1 3.1-2.2 4.5-3.5 5.3-4.5 9-10.8 10.2-17.7.1-.9.2-1.8.3-2.8v-1.5c-.9-3.5-6.9-6.1-38.4-9.1-11.1-1.8-20-10.1-22.5-21.1v.1c-.4 1.1-.9 2.3-1.3 3.5.4-1.2.8-2.3 1.3-3.5v-.2c6-15.7 16.8-29.1 30.8-38.3.8-.7-3.2.2-2.4-.5 2.7-1.3 5.4-2.5 8.2-3.5 1.4-.6-6-3.4-12.6-2.7-4 .2-8 1.2-11.7 2.8 1.6-1.3 6.2-3.1 5.1-3.1-8.4 1.6-16.5 4.7-23.9 9 0-.8.1-1.5.5-2.2-5.9 2.5-11 6.5-15 11.5.1-.9.2-1.8.2-2.7-2.7 2-5.2 4.3-7.3 6.9l-.1.1c-17.4-6.7-36.3-8.3-54.6-4.7l-.2-.1h.2c-3.8-3.1-7.1-6.7-9.7-10.9l-.2.1-.4-.2c-1.2-1.8-2.4-3.8-3.7-6-.9-1.6-1.8-3.4-2.7-5.2 0-.1-.1-.2-.2-.2-.4 0-.6 1.7-.9 1.3v-.1c-3.2-8.3-4.7-17.2-4.4-26.2l-.2.1c-5.1 3.5-9 8.6-11.1 14.5-.9 2.1-1.6 3.3-2.2 4.5v-.5c.1-1.1.6-3.3.5-3.1-.1.2-.2.3-.3.4-1.5 1.7-2.9 3.7-3.9 5.8-.9 1.9-1.7 3.9-2.3 5.9-.1.3 0-.3 0-1s.1-2 0-1.7l-.3.7c-6.7 14.9-10.9 30.8-12.4 47.1-.4 2.8-.6 5.6-.5 8.3v.2c-4.8 5.2-9 11-12.7 17.1-12.1 20.4-21.1 42.5-26.8 65.6 4-8.8 8.8-17.2 14.3-25.1C5.5 228.5 0 257.4 0 286.6c1.8-8.6 4.2-17 7-25.3-1.7 34.5 4.9 68.9 19.4 100.3 19.4 43.5 51.6 80 92.3 104.7 16.6 11.2 34.7 19.9 53.8 25.8 2.5.9 5.1 1.8 7.7 2.7-.8-.3-1.6-.7-2.4-1 22.6 6.8 46.2 10.3 69.8 10.3 83.7 0 111.3-31.9 113.8-35 4.1-3.7 7.5-8.2 9.9-13.3 1.6-.7 3.2-1.4 4.9-2.1l1-.5 1.9-.9c12.6-5.9 24.5-13.4 35.3-22.1 16.3-11.7 27.9-28.7 32.9-48.1 3-7.1 3.1-15 .4-22.2.9-1.4 1.7-2.8 2.7-4.3 18-28.9 28.2-61.9 29.6-95.9v-2.8c0-7.3-.6-14.5-1.9-21.6z" ], + "first-order": [ 448, 512, [], "f2b0", "M12.9 229.2c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4h-.2zM224 96.6c-7.1 0-14.6.6-21.4 1.7l3.7 67.4-22-64c-14.3 3.7-27.7 9.4-40 16.6l29.4 61.4-45.1-50.9c-11.4 8.9-21.7 19.1-30.6 30.9l50.6 45.4-61.1-29.7c-7.1 12.3-12.9 25.7-16.6 40l64.3 22.6-68-4c-.9 7.1-1.4 14.6-1.4 22s.6 14.6 1.4 21.7l67.7-4-64 22.6c3.7 14.3 9.4 27.7 16.6 40.3l61.1-29.7L97.7 352c8.9 11.7 19.1 22.3 30.9 30.9l44.9-50.9-29.5 61.4c12.3 7.4 25.7 13.1 40 16.9l22.3-64.6-4 68c7.1 1.1 14.6 1.7 21.7 1.7 7.4 0 14.6-.6 21.7-1.7l-4-68.6 22.6 65.1c14.3-4 27.7-9.4 40-16.9L274.9 332l44.9 50.9c11.7-8.9 22-19.1 30.6-30.9l-50.6-45.1 61.1 29.4c7.1-12.3 12.9-25.7 16.6-40.3l-64-22.3 67.4 4c1.1-7.1 1.4-14.3 1.4-21.7s-.3-14.9-1.4-22l-67.7 4 64-22.3c-3.7-14.3-9.1-28-16.6-40.3l-60.9 29.7 50.6-45.4c-8.9-11.7-19.1-22-30.6-30.9l-45.1 50.9 29.4-61.1c-12.3-7.4-25.7-13.1-40-16.9L241.7 166l4-67.7c-7.1-1.2-14.3-1.7-21.7-1.7zM443.4 128v256L224 512 4.6 384V128L224 0l219.4 128zm-17.1 10.3L224 20.9 21.7 138.3v235.1L224 491.1l202.3-117.7V138.3zM224 37.1l187.7 109.4v218.9L224 474.9 36.3 365.4V146.6L224 37.1zm0 50.9c-92.3 0-166.9 75.1-166.9 168 0 92.6 74.6 167.7 166.9 167.7 92 0 166.9-75.1 166.9-167.7 0-92.9-74.9-168-166.9-168z" ], + "first-order-alt": [ 496, 512, [], "f50a", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 488.21C115.34 496.21 7.79 388.66 7.79 256S115.34 15.79 248 15.79 488.21 123.34 488.21 256 380.66 496.21 248 496.21zm0-459.92C126.66 36.29 28.29 134.66 28.29 256S126.66 475.71 248 475.71 467.71 377.34 467.71 256 369.34 36.29 248 36.29zm0 431.22c-116.81 0-211.51-94.69-211.51-211.51S131.19 44.49 248 44.49 459.51 139.19 459.51 256 364.81 467.51 248 467.51zm186.23-162.98a191.613 191.613 0 0 1-20.13 48.69l-74.13-35.88 61.48 54.82a193.515 193.515 0 0 1-37.2 37.29l-54.8-61.57 35.88 74.27a190.944 190.944 0 0 1-48.63 20.23l-27.29-78.47 4.79 82.93c-8.61 1.18-17.4 1.8-26.33 1.8s-17.72-.62-26.33-1.8l4.76-82.46-27.15 78.03a191.365 191.365 0 0 1-48.65-20.2l35.93-74.34-54.87 61.64a193.85 193.85 0 0 1-37.22-37.28l61.59-54.9-74.26 35.93a191.638 191.638 0 0 1-20.14-48.69l77.84-27.11-82.23 4.76c-1.16-8.57-1.78-17.32-1.78-26.21 0-9 .63-17.84 1.82-26.51l82.38 4.77-77.94-27.16a191.726 191.726 0 0 1 20.23-48.67l74.22 35.92-61.52-54.86a193.85 193.85 0 0 1 37.28-37.22l54.76 61.53-35.83-74.17a191.49 191.49 0 0 1 48.65-20.13l26.87 77.25-4.71-81.61c8.61-1.18 17.39-1.8 26.32-1.8s17.71.62 26.32 1.8l-4.74 82.16 27.05-77.76c17.27 4.5 33.6 11.35 48.63 20.17l-35.82 74.12 54.72-61.47a193.13 193.13 0 0 1 37.24 37.23l-61.45 54.77 74.12-35.86a191.515 191.515 0 0 1 20.2 48.65l-77.81 27.1 82.24-4.75c1.19 8.66 1.82 17.5 1.82 26.49 0 8.88-.61 17.63-1.78 26.19l-82.12-4.75 77.72 27.09z" ], + firstdraft: [ 384, 512, [], "f3a1", "M384 192h-64v128H192v128H0v-25.6h166.4v-128h128v-128H384V192zm-25.6 38.4v128h-128v128H64V512h192V384h128V230.4h-25.6zm25.6 192h-89.6V512H320v-64h64v-25.6zM0 0v384h128V256h128V128h128V0H0z" ], + flickr: [ 448, 512, [], "f16e", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5zm159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5z" ], + flipboard: [ 448, 512, [], "f44d", "M0 32v448h448V32H0zm358.4 179.2h-89.6v89.6h-89.6v89.6H89.6V121.6h268.8v89.6z" ], + fly: [ 384, 512, [], "f417", "M197.8 427.8c12.9 11.7 33.7 33.3 33.2 50.7 0 .8-.1 1.6-.1 2.5-1.8 19.8-18.8 31.1-39.1 31-25-.1-39.9-16.8-38.7-35.8 1-16.2 20.5-36.7 32.4-47.6 2.3-2.1 2.7-2.7 5.6-3.6 3.4 0 3.9.3 6.7 2.8zM331.9 67.3c-16.3-25.7-38.6-40.6-63.3-52.1C243.1 4.5 214-.2 192 0c-44.1 0-71.2 13.2-81.1 17.3C57.3 45.2 26.5 87.2 28 158.6c7.1 82.2 97 176 155.8 233.8 1.7 1.6 4.5 4.5 6.2 5.1l3.3.1c2.1-.7 1.8-.5 3.5-2.1 52.3-49.2 140.7-145.8 155.9-215.7 7-39.2 3.1-72.5-20.8-112.5zM186.8 351.9c-28-51.1-65.2-130.7-69.3-189-3.4-47.5 11.4-131.2 69.3-136.7v325.7zM328.7 180c-16.4 56.8-77.3 128-118.9 170.3C237.6 298.4 275 217 277 158.4c1.6-45.9-9.8-105.8-48-131.4 88.8 18.3 115.5 98.1 99.7 153z" ], + "font-awesome": [ 448, 512, [], "f2b4", "M397.8 32H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-45.4 284.3c0 4.2-3.6 6-7.8 7.8-16.7 7.2-34.6 13.7-53.8 13.7-26.9 0-39.4-16.7-71.7-16.7-23.3 0-47.8 8.4-67.5 17.3-1.2.6-2.4.6-3.6 1.2V385c0 1.8 0 3.6-.6 4.8v1.2c-2.4 8.4-10.2 14.3-19.1 14.3-11.3 0-20.3-9-20.3-20.3V166.4c-7.8-6-13.1-15.5-13.1-26.3 0-18.5 14.9-33.5 33.5-33.5 18.5 0 33.5 14.9 33.5 33.5 0 10.8-4.8 20.3-13.1 26.3v18.5c1.8-.6 3.6-1.2 5.4-2.4 18.5-7.8 40.6-14.3 61.5-14.3 22.7 0 40.6 6 60.9 13.7 4.2 1.8 8.4 2.4 13.1 2.4 22.7 0 47.8-16.1 53.8-16.1 4.8 0 9 3.6 9 7.8v140.3z" ], + "font-awesome-alt": [ 448, 512, [], "f35c", "M397.8 67.8c7.8 0 14.3 6.6 14.3 14.3v347.6c0 7.8-6.6 14.3-14.3 14.3H50.2c-7.8 0-14.3-6.6-14.3-14.3V82.2c0-7.8 6.6-14.3 14.3-14.3h347.6m0-35.9H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-58.5 139.2c-6 0-29.9 15.5-52.6 15.5-4.2 0-8.4-.6-12.5-2.4-19.7-7.8-37-13.7-59.1-13.7-20.3 0-41.8 6.6-59.7 13.7-1.8.6-3.6 1.2-4.8 1.8v-17.9c7.8-6 12.5-14.9 12.5-25.7 0-17.9-14.3-32.3-32.3-32.3s-32.3 14.3-32.3 32.3c0 10.2 4.8 19.7 12.5 25.7v212.1c0 10.8 9 19.7 19.7 19.7 9 0 16.1-6 18.5-13.7V385c.6-1.8.6-3 .6-4.8V336c1.2 0 2.4-.6 3-1.2 19.7-8.4 43-16.7 65.7-16.7 31.1 0 43 16.1 69.3 16.1 18.5 0 36.4-6.6 52-13.7 4.2-1.8 7.2-3.6 7.2-7.8V178.3c1.8-4.1-2.3-7.1-7.7-7.1z" ], + "font-awesome-flag": [ 448, 512, [], "f425", "M444.373 359.424c0 7.168-6.144 10.24-13.312 13.312-28.672 12.288-59.392 23.552-92.16 23.552-46.08 0-67.584-28.672-122.88-28.672-39.936 0-81.92 14.336-115.712 29.696-2.048 1.024-4.096 1.024-6.144 2.048v77.824c0 21.405-16.122 34.816-33.792 34.816-19.456 0-34.816-15.36-34.816-34.816V102.4C12.245 92.16 3.029 75.776 3.029 57.344 3.029 25.6 28.629 0 60.373 0s57.344 25.6 57.344 57.344c0 18.432-8.192 34.816-22.528 45.056v31.744c4.124-1.374 58.768-28.672 114.688-28.672 65.27 0 97.676 27.648 126.976 27.648 38.912 0 81.92-27.648 92.16-27.648 8.192 0 15.36 6.144 15.36 13.312v240.64z" ], + "font-awesome-logo-full": [ 3992, 512, [ "Font Awesome" ], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z" ], + fonticons: [ 448, 512, [], "f280", "M0 32v448h448V32H0zm167.4 196h67.4l-11.1 37.3H168v112.9c0 5.8-2 6.7 3.2 7.3l43.5 4.1v25.1H84V389l21.3-2c5.2-.6 6.7-2.3 6.7-7.9V267.7c0-2.3-2.9-2.3-5.8-2.3H84V228h28v-21c0-49.6 26.5-70 77.3-70 34.1 0 64.7 8.2 64.7 52.8l-50.7 6.1c.3-18.7-4.4-23-16.3-23-18.4 0-19 9.9-19 27.4v23.3c0 2.4-3.5 4.4-.6 4.4zM364 414.7H261.3v-25.1l20.4-2.6c5.2-.6 7.6-1.7 7.6-7.3V271.8c0-4.1-2.9-6.7-6.7-7.9l-24.2-6.4 6.7-29.5h80.2v151.7c0 5.8-2.6 6.4 2.9 7.3l15.7 2.6v25.1zm-21.9-255.5l9 33.2-7.3 7.3-31.2-16.6-31.2 16.6-7.3-7.3 9-33.2-21.8-24.2 3.5-9.6h27.7l15.5-28h9.3l15.5 28h27.7l3.5 9.6-21.9 24.2z" ], + "fonticons-fi": [ 384, 512, [], "f3a2", "M114.4 224h92.4l-15.2 51.2h-76.4V433c0 8-2.8 9.2 4.4 10l59.6 5.6V483H0v-35.2l29.2-2.8c7.2-.8 9.2-3.2 9.2-10.8V278.4c0-3.2-4-3.2-8-3.2H0V224h38.4v-28.8c0-68 36.4-96 106-96 46.8 0 88.8 11.2 88.8 72.4l-69.6 8.4c.4-25.6-6-31.6-22.4-31.6-25.2 0-26 13.6-26 37.6v32c0 3.2-4.8 6-.8 6zM384 483H243.2v-34.4l28-3.6c7.2-.8 10.4-2.4 10.4-10V287c0-5.6-4-9.2-9.2-10.8l-33.2-8.8 9.2-40.4h110v208c0 8-3.6 8.8 4 10l21.6 3.6V483zm-30-347.2l12.4 45.6-10 10-42.8-22.8-42.8 22.8-10-10 12.4-45.6-30-36.4 4.8-10h38L307.2 51H320l21.2 38.4h38l4.8 13.2-30 33.2z" ], + "fort-awesome": [ 512, 512, [], "f286", "M489.2 287.9h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6V146.2c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-6-8-4.6-11.7-4.6v-38c8.3-2 17.1-3.4 25.7-3.4 10.9 0 20.9 4.3 31.4 4.3 4.6 0 27.7-1.1 27.7-8v-60c0-2.6-2-4.6-4.6-4.6-5.1 0-15.1 4.3-24 4.3-9.7 0-20.9-4.3-32.6-4.3-8 0-16 1.1-23.7 2.9v-4.9c5.4-2.6 9.1-8.3 9.1-14.3 0-20.7-31.4-20.8-31.4 0 0 6 3.7 11.7 9.1 14.3v111.7c-3.7 0-11.7-1.4-11.7 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32H128v-32c0-2.6-2-4.6-4.6-4.6H96c-2.6 0-4.6 2-4.6 4.6v178.3H54.8v-32c0-2.6-2-4.6-4.6-4.6H22.8c-2.6 0-4.6 2-4.6 4.6V512h182.9v-96c0-72.6 109.7-72.6 109.7 0v96h182.9V292.5c.1-2.6-1.9-4.6-4.5-4.6zm-288.1-4.5c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64zm146.4 0c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64z" ], + "fort-awesome-alt": [ 512, 512, [], "f3a3", "M211.7 241.1v51.7c0 2.1-1.6 3.7-3.7 3.7h-22.2c-2.1 0-3.7-1.6-3.7-3.7v-51.7c0-2.1 1.6-3.7 3.7-3.7H208c2.1 0 3.7 1.6 3.7 3.7zm114.5-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7h22.2c2.1 0 3.7-1.6 3.7-3.7v-51.7c-.1-2.1-1.7-3.7-3.7-3.7zm-29.1 263.2c-.9.1-1.7.3-2.6.4-1 .2-2.1.3-3.1.5-.9.1-1.8.3-2.8.4-1 .1-2 .3-3 .4-1 .1-2 .2-2.9.3-1 .1-1.9.2-2.9.3-1 .1-2.1.2-3.1.3-.9.1-1.8.2-2.7.2-1.1.1-2.3.1-3.4.2-.8 0-1.7.1-2.5.1-1.3.1-2.6.1-3.9.1-.7 0-1.4.1-2.1.1-2 0-4 .1-6 .1s-4 0-6-.1c-.7 0-1.4 0-2.1-.1-1.3 0-2.6-.1-3.9-.1-.8 0-1.7-.1-2.5-.1-1.1-.1-2.3-.1-3.4-.2-.9-.1-1.8-.1-2.7-.2-1-.1-2.1-.2-3.1-.3-1-.1-1.9-.2-2.9-.3-1-.1-2-.2-2.9-.3-1-.1-2-.2-3-.4-.9-.1-1.8-.3-2.8-.4-1-.1-2.1-.3-3.1-.5-.9-.1-1.7-.3-2.6-.4-65.6-10.9-122.5-47.7-160-99.4-.2-.2-.3-.5-.5-.7-.8-1.1-1.6-2.2-2.3-3.3-.3-.4-.6-.8-.8-1.2-.7-1.1-1.4-2.1-2.1-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.4-2.1-2-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.3-2.2-2-3.3-.2-.4-.5-.8-.7-1.2-2.4-4-4.6-8.1-6.8-12.2-.1-.2-.2-.3-.3-.5-.6-1.1-1.1-2.2-1.7-3.3-.3-.6-.6-1.1-.8-1.7-.5-1-1-2.1-1.5-3.1-.3-.7-.6-1.3-.9-2-.5-1-.9-2-1.4-3l-.9-2.1c-.4-1-.9-2-1.3-3-.3-.7-.6-1.5-.9-2.2l-1.2-3c-.3-.8-.6-1.5-.9-2.3-.4-1-.8-2-1.1-3-.3-.9-.6-1.8-1-2.8-.6-1.6-1.1-3.3-1.7-4.9-.3-.9-.6-1.8-.9-2.8-.3-.9-.5-1.8-.8-2.7-.3-.9-.6-1.9-.8-2.8-.3-.9-.5-1.8-.8-2.7-.3-1-.5-1.9-.8-2.9-.2-.9-.5-1.8-.7-2.7-.3-1-.5-2-.7-3-.2-.9-.4-1.7-.6-2.6-.2-1.1-.5-2.2-.7-3.2-.2-.8-.3-1.6-.5-2.4-.3-1.3-.5-2.7-.8-4-.1-.6-.2-1.1-.3-1.7l-.9-5.7c-.1-.6-.2-1.3-.3-1.9-.2-1.3-.4-2.6-.5-3.9-.1-.8-.2-1.5-.3-2.3-.1-1.2-.3-2.4-.4-3.6-.1-.8-.2-1.6-.2-2.4-.1-1.2-.2-2.4-.3-3.5-.1-.8-.1-1.6-.2-2.4-.1-1.2-.2-2.4-.2-3.7 0-.8-.1-1.5-.1-2.3-.1-1.3-.1-2.7-.2-4 0-.7 0-1.3-.1-2 0-2-.1-4-.1-6 0-53.5 16.9-103 45.8-143.6 2.3-3.2 4.7-6.4 7.1-9.5 4.9-6.2 10.1-12.3 15.6-18 2.7-2.9 5.5-5.7 8.4-8.4 2.9-2.7 5.8-5.4 8.8-8 4.5-3.9 9.1-7.6 13.9-11.2 1.6-1.2 3.2-2.4 4.8-3.5C140 34.2 171.7 20.1 206 13c16.1-3.3 32.9-5 50-5s33.8 1.7 50 5c34.3 7 66 21.1 93.6 40.7 1.6 1.2 3.2 2.3 4.8 3.5 4.8 3.6 9.4 7.3 13.9 11.2 12 10.4 23 21.9 32.8 34.4 2.5 3.1 4.8 6.3 7.1 9.5C487.1 153 504 202.5 504 256c0 2 0 4-.1 6 0 .7 0 1.3-.1 2 0 1.3-.1 2.7-.2 4 0 .8-.1 1.5-.1 2.3-.1 1.2-.1 2.4-.2.7-.1.8-.1 1.6-.2 2.4-.1 1.2-.2 2.4-.3 3.5-.1.8-.2 1.6-.2 2.4-.1 1.2-.3 2.4-.4 3.6-.1.8-.2 1.5-.3 2.3-.2 1.3-.4 2.6-.5 3.9-.1.6-.2 1.3-.3 1.9l-.9 5.7c-.1.6-.2 1.1-.3 1.7-.2 1.3-.5 2.7-.8 4-.2.8-.3 1.6-.5 2.4-.2 1.1-.5 2.2-.7 3.2-.2.9-.4 1.7-.6 2.6-.2 1-.5 2-.7 3-.2.9-.5 1.8-.7 2.7-.3 1-.5 1.9-.8 2.9-.2.9-.5 1.8-.8 2.7-.3.9-.6 1.9-.8 2.8-.3.9-.5 1.8-.8 2.7-.3.9-.6 1.8-.9 2.8-.5 1.6-1.1 3.3-1.7 4.9-.3.9-.6 1.8-1 2.8-.4 1-.7 2-1.1 3-.3.8-.6 1.5-.9 2.3l-1.2 3c-.3.7-.6 1.5-.9 2.2-.4 1-.8 2-1.3 3l-.9 2.1c-.4 1-.9 2-1.4 3-.3.7-.6 1.3-.9 2-.5 1-1 2.1-1.5 3.1-.3.6-.6 1.1-.8 1.7-.6 1.1-1.1 2.2-1.7 3.3-.1.2-.2.3-.3.5-2.2 4.1-4.4 8.2-6.8 12.2-.2.4-.5.8-.7 1.2-.7 1.1-1.3 2.2-2 3.3-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2 3.2-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2.1 3.2-.3.4-.6.8-.8 1.2-.8 1.1-1.5 2.2-2.3 3.3-.2.2-.3.5-.5.7-37.6 54.7-94.5 91.4-160.1 102.4zm117.3-86.2c13-13 24.2-27.4 33.6-42.9v-71.3c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7V326h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-4.8-6.5-3.7-9.5-3.7v-30.7c6.7-1.6 13.8-2.8 20.8-2.8 8.8 0 16.8 3.5 25.4 3.5 3.7 0 22.4-.9 22.4-6.5V93.4c0-2.1-1.6-3.7-3.7-3.7-4.2 0-12.2 3.5-19.4 3.5-7.9 0-16.9-3.5-26.3-3.5-6.5 0-12.9.9-19.2 2.3v-3.9c4.4-2.1 7.4-6.7 7.4-11.5 0-16.8-25.4-16.8-25.4 0 0 4.8 3 9.5 7.4 11.5v90.2c-3 0-9.5-1.1-9.5 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v144H93.5v-25.8c0-2.1-1.6-3.7-3.7-3.7H67.7c-2.1 0-3.7 1.6-3.7 3.7v71.3c9.4 15.5 20.6 29.9 33.6 42.9 20.6 20.6 44.5 36.7 71.2 48 13.9 5.9 28.2 10.3 42.9 13.2v-75.8c0-58.6 88.6-58.6 88.6 0v75.8c14.7-2.9 29-7.4 42.9-13.2 26.7-11.3 50.6-27.4 71.2-48" ], + forumbee: [ 448, 512, [], "f211", "M5.8 309.7C2 292.7 0 275.5 0 258.3 0 135 99.8 35 223.1 35c16.6 0 33.3 2 49.3 5.5C149 87.5 51.9 186 5.8 309.7zm392.9-189.2C385 103 369 87.8 350.9 75.2c-149.6 44.3-266.3 162.1-309.7 312 12.5 18.1 28 35.6 45.2 49 43.1-151.3 161.2-271.7 312.3-315.7zm15.8 252.7c15.2-25.1 25.4-53.7 29.5-82.8-79.4 42.9-145 110.6-187.6 190.3 30-4.4 58.9-15.3 84.6-31.3 35 13.1 70.9 24.3 107 33.6-9.3-36.5-20.4-74.5-33.5-109.8zm29.7-145.5c-2.6-19.5-7.9-38.7-15.8-56.8C290.5 216.7 182 327.5 137.1 466c18.1 7.6 37 12.5 56.6 15.2C240 367.1 330.5 274.4 444.2 227.7z" ], + foursquare: [ 368, 512, [], "f180", "M323.1 3H49.9C12.4 3 0 31.3 0 49.1v433.8c0 20.3 12.1 27.7 18.2 30.1 6.2 2.5 22.8 4.6 32.9-7.1C180 356.5 182.2 354 182.2 354c3.1-3.4 3.4-3.1 6.8-3.1h83.4c35.1 0 40.6-25.2 44.3-39.7l48.6-243C373.8 25.8 363.1 3 323.1 3zm-16.3 73.8l-11.4 59.7c-1.2 6.5-9.5 13.2-16.9 13.2H172.1c-12 0-20.6 8.3-20.6 20.3v13c0 12 8.6 20.6 20.6 20.6h90.4c8.3 0 16.6 9.2 14.8 18.2-1.8 8.9-10.5 53.8-11.4 58.8-.9 4.9-6.8 13.5-16.9 13.5h-73.5c-13.5 0-17.2 1.8-26.5 12.6 0 0-8.9 11.4-89.5 108.3-.9.9-1.8.6-1.8-.3V75.9c0-7.7 6.8-16.6 16.6-16.6h219c8.2 0 15.6 7.7 13.5 17.5z" ], + "free-code-camp": [ 576, 512, [], "f2c5", "M69.3 144.5c-41 68.5-36.4 163 1 227C92.5 409.7 120 423.9 120 438c0 6.8-6 13-12.8 13C87.7 451 8 375.5 8 253.2c0-111.5 78-186 97.1-186 6 0 14.9 4.8 14.9 11.1 0 12.7-28.3 28.6-50.7 66.2zm195.8 213.8c4.5 1.8 12.3 5.2 12.3-1.2 0-2.7-2.2-2.9-4.3-3.6-8.5-3.4-14-7.7-19.1-15.2-8.2-12.1-10.1-24.2-10.1-38.6 0-32.1 44.2-37.9 44.2-70 0-12.3-7.7-15.9-7.7-19.3 0-2.2.7-2.2 2.9-2.2 8 0 19.1 13.3 22.5 19.8 2.2 4.6 2.4 6 2.4 11.1 0 7-.7 14.2-.7 21.3 0 27 31.9 19.8 31.9 6.8 0-6-3.6-11.6-3.6-17.4 0-.7 0-1.2.7-1.2 3.4 0 9.4 7.7 11.1 10.1 5.8 8.9 8.5 20.8 8.5 31.4 0 32.4-29.5 49-29.5 56 0 1 2.9 7.7 12.1 1.9 29.7-15.1 53.1-47.6 53.1-89.8 0-33.6-8.7-57.7-32.1-82.6-3.9-4.1-16.4-16.9-22.5-16.9-8.2 0 7.2 18.6 7.2 31.2 0 7.2-4.8 12.3-12.3 12.3-11.6 0-14.5-25.4-15.9-33.3-5.8-33.8-12.8-58.2-46.4-74.1-10.4-5-36.5-11.8-36.5-2.2 0 2.4 2.7 4.1 4.6 5.1 9.2 5.6 19.6 21.4 19.6 38.2 0 46.1-57.7 88.2-57.7 136.2-.2 40.3 28.1 72.6 65.3 86.2zM470.4 67c-6 0-14.4 6.5-14.4 12.6 0 8.7 12.1 19.6 17.6 25.4 81.6 85.1 78.6 214.3 17.6 291-7 8.9-35.3 35.3-35.3 43.5 0 5.1 8.2 11.4 13.2 11.4 25.4 0 98.8-80.8 98.8-185.7C568 145.9 491.8 67 470.4 67zm-42.3 323.1H167c-9.4 0-15.5 7.5-15.5 16.4 0 8.5 7 15.5 15.5 15.5h261.1c9.4 0 11.9-7.5 11.9-16.4 0-8.5-3.5-15.5-11.9-15.5z" ], + freebsd: [ 448, 512, [], "f3a4", "M303.7 96.2c11.1-11.1 115.5-77 139.2-53.2 23.7 23.7-42.1 128.1-53.2 139.2-11.1 11.1-39.4.9-63.1-22.9-23.8-23.7-34.1-52-22.9-63.1zM109.9 68.1C73.6 47.5 22 24.6 5.6 41.1c-16.6 16.6 7.1 69.4 27.9 105.7 18.5-32.2 44.8-59.3 76.4-78.7zM406.7 174c3.3 11.3 2.7 20.7-2.7 26.1-20.3 20.3-87.5-27-109.3-70.1-18-32.3-11.1-53.4 14.9-48.7 5.7-3.6 12.3-7.6 19.6-11.6-29.8-15.5-63.6-24.3-99.5-24.3-119.1 0-215.6 96.5-215.6 215.6 0 119 96.5 215.6 215.6 215.6S445.3 380.1 445.3 261c0-38.4-10.1-74.5-27.7-105.8-3.9 7-7.6 13.3-10.9 18.8z" ], + fulcrum: [ 269, 512, [], "f50b", "M70.75 164.14l-35.38 43.55L0 164.14l35.38-43.55 35.37 43.55zM119.23 0L98.69 198.18 47.72 256l50.98 57.82L119.23 512V300.89L78.15 256l41.08-44.89V0zm79.67 164.14l35.38 43.55 35.38-43.55-35.38-43.55-35.38 43.55zm-48.48 46.97L191.5 256l-41.08 44.89V512l20.54-198.18L221.94 256l-50.98-57.82L150.42 0v211.11z" ], + "galactic-republic": [ 496, 512, [], "f50c", "M248 504C111.25 504 0 392.75 0 256S111.25 8 248 8s248 111.25 248 248-111.25 248-248 248zm0-479.47C120.37 24.53 16.53 128.37 16.53 256S120.37 487.47 248 487.47 479.47 383.63 479.47 256 375.63 24.53 248 24.53zm27.62 21.81v24.62a185.933 185.933 0 0 1 83.57 34.54l17.39-17.36c-28.75-22.06-63.3-36.89-100.96-41.8zm-55.37.07c-37.64 4.94-72.16 19.8-100.88 41.85l17.28 17.36h.08c24.07-17.84 52.55-30.06 83.52-34.67V46.41zm12.25 50.17v82.87c-10.04 2.03-19.42 5.94-27.67 11.42l-58.62-58.59-21.93 21.93 58.67 58.67c-5.47 8.23-9.45 17.59-11.47 27.62h-82.9v31h82.9c2.02 10.02 6.01 19.31 11.47 27.54l-58.67 58.69 21.93 21.93 58.62-58.62a77.873 77.873 0 0 0 27.67 11.47v82.9h31v-82.9c10.05-2.03 19.37-6.06 27.62-11.55l58.67 58.69 21.93-21.93-58.67-58.69c5.46-8.23 9.47-17.52 11.5-27.54h82.87v-31h-82.87c-2.02-10.02-6.03-19.38-11.5-27.62l58.67-58.67-21.93-21.93-58.67 58.67c-8.25-5.49-17.57-9.47-27.62-11.5V96.58h-31zm183.24 30.72l-17.36 17.36a186.337 186.337 0 0 1 34.67 83.67h24.62c-4.95-37.69-19.83-72.29-41.93-101.03zm-335.55.13c-22.06 28.72-36.91 63.26-41.85 100.91h24.65c4.6-30.96 16.76-59.45 34.59-83.52l-17.39-17.39zM38.34 283.67c4.92 37.64 19.75 72.18 41.8 100.9l17.36-17.39c-17.81-24.07-29.92-52.57-34.51-83.52H38.34zm394.7 0c-4.61 30.99-16.8 59.5-34.67 83.6l17.36 17.36c22.08-28.74 36.98-63.29 41.93-100.96h-24.62zM136.66 406.38l-17.36 17.36c28.73 22.09 63.3 36.98 100.96 41.93v-24.64c-30.99-4.63-59.53-16.79-83.6-34.65zm222.53.05c-24.09 17.84-52.58 30.08-83.57 34.67v24.57c37.67-4.92 72.21-19.79 100.96-41.85l-17.31-17.39h-.08z" ], + "galactic-senate": [ 512, 512, [], "f50d", "M249.86 33.48v26.07C236.28 80.17 226 168.14 225.39 274.9c11.74-15.62 19.13-33.33 19.13-48.24v-16.88c-.03-5.32.75-10.53 2.19-15.65.65-2.14 1.39-4.08 2.62-5.82 1.23-1.75 3.43-3.79 6.68-3.79 3.24 0 5.45 2.05 6.68 3.79 1.23 1.75 1.97 3.68 2.62 5.82 1.44 5.12 2.22 10.33 2.19 15.65v16.88c0 14.91 7.39 32.62 19.13 48.24-.63-106.76-10.91-194.73-24.49-215.35V33.48h-12.28zm-26.34 147.77c-9.52 2.15-18.7 5.19-27.46 9.08 8.9 16.12 9.76 32.64 1.71 37.29-8 4.62-21.85-4.23-31.36-19.82-11.58 8.79-21.88 19.32-30.56 31.09 14.73 9.62 22.89 22.92 18.32 30.66-4.54 7.7-20.03 7.14-35.47-.96-5.78 13.25-9.75 27.51-11.65 42.42 9.68.18 18.67 2.38 26.18 6.04 17.78-.3 32.77-1.96 40.49-4.22 5.55-26.35 23.02-48.23 46.32-59.51.73-25.55 1.88-49.67 3.48-72.07zm64.96 0c1.59 22.4 2.75 46.52 3.47 72.07 23.29 11.28 40.77 33.16 46.32 59.51 7.72 2.26 22.71 3.92 40.49 4.22 7.51-3.66 16.5-5.85 26.18-6.04-1.9-14.91-5.86-29.17-11.65-42.42-15.44 8.1-30.93 8.66-35.47.96-4.57-7.74 3.6-21.05 18.32-30.66-8.68-11.77-18.98-22.3-30.56-31.09-9.51 15.59-23.36 24.44-31.36 19.82-8.05-4.65-7.19-21.16 1.71-37.29a147.49 147.49 0 0 0-27.45-9.08zm-32.48 8.6c-3.23 0-5.86 8.81-6.09 19.93h-.05v16.88c0 41.42-49.01 95.04-93.49 95.04-52 0-122.75-1.45-156.37 29.17v2.51c9.42 17.12 20.58 33.17 33.18 47.97C45.7 380.26 84.77 360.4 141.2 360c45.68 1.02 79.03 20.33 90.76 40.87.01.01-.01.04 0 .05 7.67 2.14 15.85 3.23 24.04 3.21 8.19.02 16.37-1.07 24.04-3.21.01-.01-.01-.04 0-.05 11.74-20.54 45.08-39.85 90.76-40.87 56.43.39 95.49 20.26 108.02 41.35 12.6-14.8 23.76-30.86 33.18-47.97v-2.51c-33.61-30.62-104.37-29.17-156.37-29.17-44.48 0-93.49-53.62-93.49-95.04v-16.88h-.05c-.23-11.12-2.86-19.93-6.09-19.93zm0 96.59c22.42 0 40.6 18.18 40.6 40.6s-18.18 40.65-40.6 40.65-40.6-18.23-40.6-40.65c0-22.42 18.18-40.6 40.6-40.6zm0 7.64c-18.19 0-32.96 14.77-32.96 32.96S237.81 360 256 360s32.96-14.77 32.96-32.96-14.77-32.96-32.96-32.96zm0 6.14c14.81 0 26.82 12.01 26.82 26.82s-12.01 26.82-26.82 26.82-26.82-12.01-26.82-26.82 12.01-26.82 26.82-26.82zm-114.8 66.67c-10.19.07-21.6.36-30.5 1.66.43 4.42 1.51 18.63 7.11 29.76 9.11-2.56 18.36-3.9 27.62-3.9 41.28.94 71.48 34.35 78.26 74.47l.11 4.7c10.4 1.91 21.19 2.94 32.21 2.94 11.03 0 21.81-1.02 32.21-2.94l.11-4.7c6.78-40.12 36.98-73.53 78.26-74.47 9.26 0 18.51 1.34 27.62 3.9 5.6-11.13 6.68-25.34 7.11-29.76-8.9-1.3-20.32-1.58-30.5-1.66-18.76.42-35.19 4.17-48.61 9.67-12.54 16.03-29.16 30.03-49.58 33.07-.09.02-.17.04-.27.05-.05.01-.11.04-.16.05-5.24 1.07-10.63 1.6-16.19 1.6-5.55 0-10.95-.53-16.19-1.6-.05-.01-.11-.04-.16-.05-.1-.02-.17-.04-.27-.05-20.42-3.03-37.03-17.04-49.58-33.07-13.42-5.49-29.86-9.25-48.61-9.67z" ], + "get-pocket": [ 448, 512, [], "f265", "M407.6 64h-367C18.5 64 0 82.5 0 104.6v135.2C0 364.5 99.7 464 224.2 464c124 0 223.8-99.5 223.8-224.2V104.6c0-22.4-17.7-40.6-40.4-40.6zm-162 268.5c-12.4 11.8-31.4 11.1-42.4 0C89.5 223.6 88.3 227.4 88.3 209.3c0-16.9 13.8-30.7 30.7-30.7 17 0 16.1 3.8 105.2 89.3 90.6-86.9 88.6-89.3 105.5-89.3 16.9 0 30.7 13.8 30.7 30.7 0 17.8-2.9 15.7-114.8 123.2z" ], + gg: [ 512, 512, [], "f260", "M179.2 230.4l102.4 102.4-102.4 102.4L0 256 179.2 76.8l44.8 44.8-25.6 25.6-19.2-19.2-128 128 128 128 51.5-51.5-77.1-76.5 25.6-25.6zM332.8 76.8L230.4 179.2l102.4 102.4 25.6-25.6-77.1-76.5 51.5-51.5 128 128-128 128-19.2-19.2-25.6 25.6 44.8 44.8L512 256 332.8 76.8z" ], + "gg-circle": [ 512, 512, [], "f261", "M257 8C120 8 9 119 9 256s111 248 248 248 248-111 248-248S394 8 257 8zm-49.5 374.8L81.8 257.1l125.7-125.7 35.2 35.4-24.2 24.2-11.1-11.1-77.2 77.2 77.2 77.2 26.6-26.6-53.1-52.9 24.4-24.4 77.2 77.2-75 75.2zm99-2.2l-35.2-35.2 24.1-24.4 11.1 11.1 77.2-77.2-77.2-77.2-26.5 26.5 53.1 52.9-24.4 24.4-77.2-77.2 75-75L432.2 255 306.5 380.6z" ], + git: [ 448, 512, [], "f1d3", "M18.8 221.7c0 25.3 16.2 60 41.5 68.5v1c-18.8 8.3-24 50.6 1 65.8v1C34 367 16 384.3 16 414.2c0 51.5 48.8 65.8 91.5 65.8 52 0 90.7-18.7 90.7-76 0-70.5-101-44.5-101-82.8 0-13.5 7.2-18.7 19.7-21.3 41.5-7.7 67.5-40 67.5-82.2 0-7.3-1.5-14.2-4-21 6.7-1.5 13.2-3.3 19.7-5.5v-50.5c-17.2 6.8-35.7 11.8-54.5 11.8-53.8-31-126.8 1.3-126.8 69.2zm87.7 163.8c17 0 41.2 3 41.2 25 0 21.8-19.5 26.3-37.7 26.3-17.3 0-43.3-2.7-43.3-25.2.1-22.3 22.1-26.1 39.8-26.1zM103.3 256c-22 0-31.3-13-31.3-33.8 0-49.3 61-48.8 61-.5 0 20.3-8 34.3-29.7 34.3zM432 305.5v49c-13.3 7.3-30.5 9.8-45.5 9.8-53.5 0-59.8-42.2-59.8-85.7v-87.7h.5v-1c-7 0-7.3-1.6-24 1v-47.5h24c0-22.3.3-31-1.5-41.2h56.7c-2 13.8-1.5 27.5-1.5 41.2h51v47.5s-19.3-1-51-1V281c0 14.8 3.3 32.8 21.8 32.8 9.8 0 21.3-2.8 29.3-8.3zM286 68.7c0 18.7-14.5 36.2-33.8 36.2-19.8 0-34.5-17.2-34.5-36.2 0-19.3 14.5-36.7 34.5-36.7C272 32 286 50 286 68.7zm-6.2 74.5c-1.8 14.6-1.6 199.8 0 217.8h-55.5c1.6-18.1 1.8-203 0-217.8h55.5z" ], + "git-square": [ 448, 512, [], "f1d2", "M140.1 348.5c12.1 0 29.5 2.1 29.5 17.9 0 15.5-13.9 18.8-27 18.8-12.3 0-30.9-2-30.9-18s15.7-18.7 28.4-18.7zm-24.7-116.6c0 14.8 6.6 24.1 22.3 24.1 15.5 0 21.2-10 21.2-24.5.1-34.4-43.5-34.8-43.5.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-241 93.7c-12.3 4.8-25.5 8.4-38.9 8.4-38.5-22.1-90.7.9-90.7 49.5 0 18 11.6 42.9 29.6 48.9v.7c-13.4 5.9-17.1 36.1.7 47v.7c-19.5 6.4-32.3 18.8-32.3 40.2 0 36.8 34.8 47 65.4 47 37.1 0 64.8-13.4 64.8-54.3 0-50.4-72.1-31.8-72.1-59.1 0-9.6 5.2-13.4 14.1-15.2 29.6-5.5 48.2-28.6 48.2-58.7 0-5.2-1.1-10.2-2.9-15 4.8-1.1 9.5-2.3 14.1-3.9v-36.2zm56.8 1.8h-39.6c1.3 10.6 1.1 142.6 0 155.5h39.6c-1.1-12.8-1.2-145.1 0-155.5zm4.5-53.3c0-13.4-10-26.2-24.1-26.2-14.3 0-24.6 12.5-24.6 26.2 0 13.6 10.5 25.9 24.6 25.9 13.7 0 24.1-12.5 24.1-25.9zm104.3 53.3h-36.4c0-9.8-.4-19.6 1.1-29.5h-40.5c1.3 7.3 1.1 13.6 1.1 29.5h-17.1v33.9c11.9-1.9 12.1-.7 17.1-.7v.7h-.4v62.7c0 31.1 4.5 61.2 42.7 61.2 10.7 0 23-1.8 32.5-7v-35c-5.7 3.9-13.9 5.9-20.9 5.9-13.2 0-15.5-12.9-15.5-23.4v-65.2c22.7 0 36.4.7 36.4.7v-33.8z" ], + github: [ 496, 512, [], "f09b", "M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z" ], + "github-alt": [ 480, 512, [], "f113", "M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1zM480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2zm-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3zm-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1z" ], + "github-square": [ 448, 512, [], "f092", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z" ], + gitkraken: [ 592, 512, [], "f3a6", "M565.7 118.1c-2.3-6.1-9.3-9.2-15.3-6.6-5.7 2.4-8.5 8.9-6.3 14.6 10.9 29 16.9 60.5 16.9 93.3 0 134.6-100.3 245.7-230.2 262.7V358.4c7.9-1.5 15.5-3.6 23-6.2v104c106.7-25.9 185.9-122.1 185.9-236.8 0-91.8-50.8-171.8-125.8-213.3-5.7-3.2-13-.9-15.9 5-2.7 5.5-.6 12.2 4.7 15.1 67.9 37.6 113.9 110 113.9 193.2 0 93.3-57.9 173.1-139.8 205.4v-92.2c14.2-4.5 24.9-17.7 24.9-33.5 0-13.1-6.8-24.4-17.3-30.5 8.3-79.5 44.5-58.6 44.5-83.9V170c0-38-87.9-161.8-129-164.7-2.5-.2-5-.2-7.6 0C251.1 8.3 163.2 132 163.2 170v14.8c0 25.3 36.3 4.3 44.5 83.9-10.6 6.1-17.3 17.4-17.3 30.5 0 15.8 10.6 29 24.8 33.5v92.2c-81.9-32.2-139.8-112-139.8-205.4 0-83.1 46-155.5 113.9-193.2 5.4-3 7.4-9.6 4.7-15.1-2.9-5.9-10.1-8.2-15.9-5-75 41.5-125.8 121.5-125.8 213.3 0 114.7 79.2 210.8 185.9 236.8v-104c7.6 2.5 15.1 4.6 23 6.2v123.7C131.4 465.2 31 354.1 31 219.5c0-32.8 6-64.3 16.9-93.3 2.2-5.8-.6-12.2-6.3-14.6-6-2.6-13 .4-15.3 6.6C14.5 149.7 8 183.8 8 219.5c0 155.1 122.6 281.6 276.3 287.8V361.4c6.8.4 15 .5 23.4 0v145.8C461.4 501.1 584 374.6 584 219.5c0-35.7-6.5-69.8-18.3-101.4zM365.9 275.5c13 0 23.7 10.5 23.7 23.7 0 13.1-10.6 23.7-23.7 23.7-13 0-23.7-10.5-23.7-23.7 0-13.1 10.6-23.7 23.7-23.7zm-139.8 47.3c-13.2 0-23.7-10.7-23.7-23.7s10.5-23.7 23.7-23.7c13.1 0 23.7 10.6 23.7 23.7 0 13-10.5 23.7-23.7 23.7z" ], + gitlab: [ 512, 512, [], "f296", "M29.782 199.732L256 493.714 8.074 309.699c-6.856-5.142-9.712-13.996-7.141-21.993l28.849-87.974zm75.405-174.806c-3.142-8.854-15.709-8.854-18.851 0L29.782 199.732h131.961L105.187 24.926zm56.556 174.806L256 493.714l94.257-293.982H161.743zm349.324 87.974l-28.849-87.974L256 493.714l247.926-184.015c6.855-5.142 9.711-13.996 7.141-21.993zm-85.404-262.78c-3.142-8.854-15.709-8.854-18.851 0l-56.555 174.806h131.961L425.663 24.926z" ], + gitter: [ 384, 512, [], "f426", "M66.4 322.5H16V0h50.4v322.5zM166.9 76.1h-50.4V512h50.4V76.1zm100.6 0h-50.4V512h50.4V76.1zM368 76h-50.4v247H368V76z" ], + glide: [ 448, 512, [], "f2a5", "M252.8 148.6c0 8.8-1.6 17.7-3.4 26.4-5.8 27.8-11.6 55.8-17.3 83.6-1.4 6.3-8.3 4.9-13.7 4.9-23.8 0-30.5-26-30.5-45.5 0-29.3 11.2-68.1 38.5-83.1 4.3-2.5 9.2-4.2 14.1-4.2 11.4 0 12.3 8.3 12.3 17.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 187c0-5.1-20.8-37.7-25.5-39.5-2.2-.9-7.2-2.3-9.6-2.3-23.1 0-38.7 10.5-58.2 21.5l-.5-.5c4.3-29.4 14.6-57.2 14.6-87.4 0-44.6-23.8-62.7-67.5-62.7-71.7 0-108 70.8-108 123.5 0 54.7 32 85 86.3 85 7.5 0 6.9-.6 6.9 2.3-10.5 80.3-56.5 82.9-56.5 58.9 0-24.4 28-36.5 28.3-38-.2-7.6-29.3-17.2-36.7-17.2-21.1 0-32.7 33-32.7 50.6 0 32.3 20.4 54.7 53.3 54.7 48.2 0 83.4-49.7 94.3-91.7 9.4-37.7 7-39.4 12.3-42.1 20-10.1 35.8-16.8 58.4-16.8 11.1 0 19 2.3 36.7 5.2 1.8.1 4.1-1.7 4.1-3.5z" ], + "glide-g": [ 448, 512, [], "f2a6", "M407.1 211.2c-3.5-1.4-11.6-3.8-15.4-3.8-37.1 0-62.2 16.8-93.5 34.5l-.9-.9c7-47.3 23.5-91.9 23.5-140.4C320.8 29.1 282.6 0 212.4 0 97.3 0 39 113.7 39 198.4 39 286.3 90.3 335 177.6 335c12 0 11-1 11 3.8-16.9 128.9-90.8 133.1-90.8 94.6 0-39.2 45-58.6 45.5-61-.3-12.2-47-27.6-58.9-27.6-33.9.1-52.4 51.2-52.4 79.3C32 476 64.8 512 117.5 512c77.4 0 134-77.8 151.4-145.4 15.1-60.5 11.2-63.3 19.7-67.6 32.2-16.2 57.5-27 93.8-27 17.8 0 30.5 3.7 58.9 8.4 2.9 0 6.7-2.9 6.7-5.8 0-8-33.4-60.5-40.9-63.4zm-175.3-84.4c-9.3 44.7-18.6 89.6-27.8 134.3-2.3 10.2-13.3 7.8-22 7.8-38.3 0-49-41.8-49-73.1 0-47 18-109.3 61.8-133.4 7-4.1 14.8-6.7 22.6-6.7 18.6 0 20 13.3 20 28.7-.1 14.3-2.7 28.5-5.6 42.4z" ], + gofore: [ 400, 512, [], "f3a7", "M324 319.8h-13.2v34.7c-24.5 23.1-56.3 35.8-89.9 35.8-73.2 0-132.4-60.2-132.4-134.4 0-74.1 59.2-134.4 132.4-134.4 35.3 0 68.6 14 93.6 39.4l62.3-63.3C335 55.3 279.7 32 220.7 32 98 32 0 132.6 0 256c0 122.5 97 224 220.7 224 63.2 0 124.5-26.2 171-82.5-2-27.6-13.4-77.7-67.7-77.7zm-12.1-112.5H205.6v89H324c33.5 0 60.5 15.1 76 41.8v-30.6c0-65.2-40.4-100.2-88.1-100.2z" ], + goodreads: [ 448, 512, [], "f3a8", "M299.9 191.2c5.1 37.3-4.7 79-35.9 100.7-22.3 15.5-52.8 14.1-70.8 5.7-37.1-17.3-49.5-58.6-46.8-97.2 4.3-60.9 40.9-87.9 75.3-87.5 46.9-.2 71.8 31.8 78.2 78.3zM448 88v336c0 30.9-25.1 56-56 56H56c-30.9 0-56-25.1-56-56V88c0-30.9 25.1-56 56-56h336c30.9 0 56 25.1 56 56zM330 313.2s-.1-34-.1-217.3h-29v40.3c-.8.3-1.2-.5-1.6-1.2-9.6-20.7-35.9-46.3-76-46-51.9.4-87.2 31.2-100.6 77.8-4.3 14.9-5.8 30.1-5.5 45.6 1.7 77.9 45.1 117.8 112.4 115.2 28.9-1.1 54.5-17 69-45.2.5-1 1.1-1.9 1.7-2.9.2.1.4.1.6.2.3 3.8.2 30.7.1 34.5-.2 14.8-2 29.5-7.2 43.5-7.8 21-22.3 34.7-44.5 39.5-17.8 3.9-35.6 3.8-53.2-1.2-21.5-6.1-36.5-19-41.1-41.8-.3-1.6-1.3-1.3-2.3-1.3h-26.8c.8 10.6 3.2 20.3 8.5 29.2 24.2 40.5 82.7 48.5 128.2 37.4 49.9-12.3 67.3-54.9 67.4-106.3z" ], + "goodreads-g": [ 384, 512, [], "f3a9", "M42.6 403.3h2.8c12.7 0 25.5 0 38.2.1 1.6 0 3.1-.4 3.6 2.1 7.1 34.9 30 54.6 62.9 63.9 26.9 7.6 54.1 7.8 81.3 1.8 33.8-7.4 56-28.3 68-60.4 8-21.5 10.7-43.8 11-66.5.1-5.8.3-47-.2-52.8l-.9-.3c-.8 1.5-1.7 2.9-2.5 4.4-22.1 43.1-61.3 67.4-105.4 69.1-103 4-169.4-57-172-176.2-.5-23.7 1.8-46.9 8.3-69.7C58.3 47.7 112.3.6 191.6 0c61.3-.4 101.5 38.7 116.2 70.3.5 1.1 1.3 2.3 2.4 1.9V10.6h44.3c0 280.3.1 332.2.1 332.2-.1 78.5-26.7 143.7-103 162.2-69.5 16.9-159 4.8-196-57.2-8-13.5-11.8-28.3-13-44.5zM188.9 36.5c-52.5-.5-108.5 40.7-115 133.8-4.1 59 14.8 122.2 71.5 148.6 27.6 12.9 74.3 15 108.3-8.7 47.6-33.2 62.7-97 54.8-154-9.7-71.1-47.8-120-119.6-119.7z" ], + google: [ 488, 512, [], "f1a0", "M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z" ], + "google-drive": [ 512, 512, [], "f3aa", "M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z" ], + "google-play": [ 512, 512, [], "f3ab", "M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z" ], + "google-plus": [ 496, 512, [], "f2b3", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm-70.7 372c-68.8 0-124-55.5-124-124s55.2-124 124-124c31.3 0 60.1 11 83 32.3l-33.6 32.6c-13.2-12.9-31.3-19.1-49.4-19.1-42.9 0-77.2 35.5-77.2 78.1s34.2 78.1 77.2 78.1c32.6 0 64.9-19.1 70.1-53.3h-70.1v-42.6h116.9c1.3 6.8 1.9 13.6 1.9 20.7 0 70.8-47.5 121.2-118.8 121.2zm230.2-106.2v35.5H372v-35.5h-35.5v-35.5H372v-35.5h35.5v35.5h35.2v35.5h-35.2z" ], + "google-plus-g": [ 640, 512, [], "f0d5", "M386.061 228.496c1.834 9.692 3.143 19.384 3.143 31.956C389.204 370.205 315.599 448 204.8 448c-106.084 0-192-85.915-192-192s85.916-192 192-192c51.864 0 95.083 18.859 128.611 50.292l-52.126 50.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484 0-118.92 54.221-118.92 121.277 0 67.056 53.436 121.277 118.92 121.277 75.961 0 104.513-54.745 108.965-82.773H204.8v-66.009h181.261zm185.406 6.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001h-55.733z" ], + "google-plus-square": [ 448, 512, [], "f0d4", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM164 356c-55.3 0-100-44.7-100-100s44.7-100 100-100c27 0 49.5 9.8 67 26.2l-27.1 26.1c-7.4-7.1-20.3-15.4-39.8-15.4-34.1 0-61.9 28.2-61.9 63.2 0 34.9 27.8 63.2 61.9 63.2 39.6 0 54.4-28.5 56.8-43.1H164v-34.4h94.4c1 5 1.6 10.1 1.6 16.6 0 57.1-38.3 97.6-96 97.6zm220-81.8h-29v29h-29.2v-29h-29V245h29v-29H355v29h29v29.2z" ], + "google-wallet": [ 448, 512, [], "f1ee", "M156.8 126.8c37.6 60.6 64.2 113.1 84.3 162.5-8.3 33.8-18.8 66.5-31.3 98.3-13.2-52.3-26.5-101.3-56-148.5 6.5-36.4 2.3-73.6 3-112.3zM109.3 200H16.1c-6.5 0-10.5 7.5-6.5 12.7C51.8 267 81.3 330.5 101.3 400h103.5c-16.2-69.7-38.7-133.7-82.5-193.5-3-4-8-6.5-13-6.5zm47.8-88c68.5 108 130 234.5 138.2 368H409c-12-138-68.4-265-143.2-368H157.1zm251.8-68.5c-1.8-6.8-8.2-11.5-15.2-11.5h-88.3c-5.3 0-9 5-7.8 10.3 13.2 46.5 22.3 95.5 26.5 146 48.2 86.2 79.7 178.3 90.6 270.8 15.8-60.5 25.3-133.5 25.3-203 0-73.6-12.1-145.1-31.1-212.6z" ], + gratipay: [ 496, 512, [], "f184", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm114.6 226.4l-113 152.7-112.7-152.7c-8.7-11.9-19.1-50.4 13.6-72 28.1-18.1 54.6-4.2 68.5 11.9 15.9 17.9 46.6 16.9 61.7 0 13.9-16.1 40.4-30 68.1-11.9 32.9 21.6 22.6 60 13.8 72z" ], + grav: [ 512, 512, [], "f2d6", "M301.1 212c4.4 4.4 4.4 11.9 0 16.3l-9.7 9.7c-4.4 4.7-11.9 4.7-16.6 0l-10.5-10.5c-4.4-4.7-4.4-11.9 0-16.6l9.7-9.7c4.4-4.4 11.9-4.4 16.6 0l10.5 10.8zm-30.2-19.7c3-3 3-7.8 0-10.5-2.8-3-7.5-3-10.5 0-2.8 2.8-2.8 7.5 0 10.5 3.1 2.8 7.8 2.8 10.5 0zm-26 5.3c-3 2.8-3 7.5 0 10.2 2.8 3 7.5 3 10.5 0 2.8-2.8 2.8-7.5 0-10.2-3-3-7.7-3-10.5 0zm72.5-13.3c-19.9-14.4-33.8-43.2-11.9-68.1 21.6-24.9 40.7-17.2 59.8.8 11.9 11.3 29.3 24.9 17.2 48.2-12.5 23.5-45.1 33.2-65.1 19.1zm47.7-44.5c-8.9-10-23.3 6.9-15.5 16.1 7.4 9 32.1 2.4 15.5-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-66.2 42.6c2.5-16.1-20.2-16.6-25.2-25.7-13.6-24.1-27.7-36.8-54.5-30.4 11.6-8 23.5-6.1 23.5-6.1.3-6.4 0-13-9.4-24.9 3.9-12.5.3-22.4.3-22.4 15.5-8.6 26.8-24.4 29.1-43.2 3.6-31-18.8-59.2-49.8-62.8-22.1-2.5-43.7 7.7-54.3 25.7-23.2 40.1 1.4 70.9 22.4 81.4-14.4-1.4-34.3-11.9-40.1-34.3-6.6-25.7 2.8-49.8 8.9-61.4 0 0-4.4-5.8-8-8.9 0 0-13.8 0-24.6 5.3 11.9-15.2 25.2-14.4 25.2-14.4 0-6.4-.6-14.9-3.6-21.6-5.4-11-23.8-12.9-31.7 2.8.1-.2.3-.4.4-.5-5 11.9-1.1 55.9 16.9 87.2-2.5 1.4-9.1 6.1-13 10-21.6 9.7-56.2 60.3-56.2 60.3-28.2 10.8-77.2 50.9-70.6 79.7.3 3 1.4 5.5 3 7.5-2.8 2.2-5.5 5-8.3 8.3-11.9 13.8-5.3 35.2 17.7 24.4 15.8-7.2 29.6-20.2 36.3-30.4 0 0-5.5-5-16.3-4.4 27.7-6.6 34.3-9.4 46.2-9.1 8 3.9 8-34.3 8-34.3 0-14.7-2.2-31-11.1-41.5 12.5 12.2 29.1 32.7 28 60.6-.8 18.3-15.2 23-15.2 23-9.1 16.6-43.2 65.9-30.4 106 0 0-9.7-14.9-10.2-22.1-17.4 19.4-46.5 52.3-24.6 64.5 26.6 14.7 108.8-88.6 126.2-142.3 34.6-20.8 55.4-47.3 63.9-65 22 43.5 95.3 94.5 101.1 59z" ], + gripfire: [ 384, 512, [], "f3ac", "M171.8 503.8c0-5.3 4.8-12.2 4.8-22.3 0-15.2-13-39.9-78.1-86.6C64.2 365.8 32 336.4 32 286.6 32 171.9 179.1 110.1 179.1 18c0-3.3-.2-6.7-.6-10 5.1 2.4 39.1 43.3 39.1 90.4 0 80.5-105.1 129.2-105.1 203 0 26.9 16.6 47.2 32.6 69.5 22.5 30.2 44.2 56.9 44.2 86.5-.1 14.5-4.4 29.7-17.5 46.4zm146-241.4c1.5 8.4 2.2 16.6 2.2 24.6 0 51.8-29.4 97.5-67.3 136.8-1 1-2.2 2.4-3.2 2.4-3.6 0-35.5-41.6-35.5-53.2 0 0 41.8-55.7 41.8-96.9 0-10.8-2.7-21.7-9.1-33.4-1.5 32.3-55.7 87.7-58.1 87.7-2.7 0-17.9-22-17.9-42.1 0-5.3 1-10.7 3.2-15.8 2.4-5.5 56.6-72 56.6-116.7 0-6.2-1-12-3.4-17.1l-4-7.2c16.7 6.5 82.6 64.1 94.7 130.9" ], + grunt: [ 384, 512, [], "f3ad", "M61.3 189.3c-1.1 10 5.2 19.1 5.2 19.1.7-7.5 2.2-12.8 4-16.6.4 10.3 3.2 23.5 12.8 34.1 6.9 7.6 35.6 23.3 54.9 6.1 1 2.4 2.1 5.3 3 8.5 2.9 10.3-2.7 25.3-2.7 25.3s15.1-17.1 13.9-32.5c10.8-.5 21.4-8.4 21.1-19.5 0 0-18.9 10.4-35.5-8.8-9.7-11.2-40.9-42-83.1-31.8 4.3 1 8.9 2.4 13.5 4.1h-.1c-4.2 2-6.5 7.1-7 12zm28.3-1.8c19.5 11 37.4 25.7 44.9 37-5.7 3.3-21.7 10.4-38-1.7-10.3-7.6-9.8-26.2-6.9-35.3zm79.2 233.7c2.2 2.3 1.5 5.3.9 6.8-1.1 2.7-5.5 11.6-13 19.8-2.7 2.9-6.6 4.6-11 4.6-4.3 0-8.7-1.6-11.8-4.3-2.3-2.1-10.2-9.5-13.7-18.6-1.3-3.4-1-6.1.9-8.1 1.3-1.3 4-2.9 9.5-2.9H160c4.1 0 7 .9 8.8 2.7zm62.9-187.9c-1.2 15.5 13.9 32.5 13.9 32.5s-5.6-15-2.7-25.3c.9-3.2 2-6 3-8.5 19.3 17.3 48 1.5 54.8-6.1 9.6-10.6 12.3-23.8 12.8-34.1 1.8 3.8 3.4 9.1 4 16.6 0 0 6.4-9.1 5.2-19.1-.6-5-2.9-10-7-11.8h-.1c4.6-1.8 9.2-3.2 13.5-4.1-42.3-10.2-73.4 20.6-83.1 31.8-16.7 19.2-35.5 8.8-35.5 8.8-.2 10.9 10.4 18.9 21.2 19.3zm17.8-8.8c7.5-11.4 25.4-26 44.9-37 3 9.1 3.4 27.7-7 35.4-16.3 12.1-32.2 5-37.9 1.6-.1.1 0 0 0 0zM263 421.4c1.9 1.9 2.2 4.6.9 7.9-3.5 8.9-11.4 16.1-13.7 18.1-3.1 2.6-7.4 4.2-11.8 4.2s-8.3-1.6-11-4.5c-7.5-8-12-16.7-13-19.3-.6-1.5-1.3-4.4.9-6.7 1.7-1.8 4.7-2.7 8.9-2.7h29.4c5.4.1 8.1 1.7 9.4 3zm-98.3-251.5c9.9 6 18.8 8.1 27.3 8.3 8.5-.2 17.4-2.3 27.3-8.3 0 0-14.5 17.7-27.2 17.8h-.2c-12.7-.2-27.2-17.8-27.2-17.8zm184.5 147.4c-2.4 17.9-13 33.8-24.6 43.7-3.1-22.7-3.7-55.5-3.7-62.4 0-14.7 9.5-24.5 12.2-26.1 2.5-1.5 5.4-3 8.3-4.6 18-9.6 40.4-21.6 40.4-43.7 0-16.2-9.3-23.2-15.4-27.8-.8-.6-1.5-1.1-2.2-1.7-2.1-1.7-3.7-3-4.3-4.4-4.4-9.8-3.6-34.2-1.7-37.6.6-.6 16.7-20.9 11.8-39.2-2-7.4-6.9-13.3-14.1-17-5.3-2.7-11.9-4.2-19.5-4.5-.1-2-.5-3.9-.9-5.9-.6-2.6-1.1-5.3-.9-8.1.4-4.7.8-9 2.2-11.3 8.4-13.3 28.8-17.6 29-17.6l12.3-2.4-8.1-9.5c-.1-.2-17.3-17.5-46.3-17.5-7.9 0-16 1.3-24.1 3.9-24.2 7.8-42.9 30.5-49.4 39.3-3.1-1-6.3-1.9-9.6-2.7-4.2-15.8 9-38.5 9-38.5s-13.6-3-33.7 15.2c-2.6-6.5-8.1-20.5-1.8-37.2C184.6 10.1 177.2 26 175 40.4c-7.6-5.4-6.7-23.1-7.2-27.6-7.5.9-29.2 21.9-28.2 48.3-2 .5-3.9 1.1-5.9 1.7-6.5-8.8-25.1-31.5-49.4-39.3-7.9-2.2-16-3.5-23.9-3.5-29 0-46.1 17.3-46.3 17.5L6 46.9l12.3 2.4c.2 0 20.6 4.3 29 17.6 1.4 2.2 1.8 6.6 2.2 11.3.2 2.8-.4 5.5-.9 8.1-.4 1.9-.8 3.9-.9 5.9-7.7.3-14.2 1.8-19.5 4.5-7.2 3.7-12.1 9.6-14.1 17-5 18.2 11.2 38.5 11.8 39.2 1.9 3.4 2.7 27.8-1.7 37.6-.6 1.4-2.2 2.7-4.3 4.4-.7.5-1.4 1.1-2.2 1.7-6.1 4.6-15.4 11.7-15.4 27.8 0 22.1 22.4 34.1 40.4 43.7 3 1.6 5.8 3.1 8.3 4.6 2.7 1.6 12.2 11.4 12.2 26.1 0 6.9-.6 39.7-3.7 62.4-11.6-9.9-22.2-25.9-24.6-43.8 0 0-29.2 22.6-20.6 70.8 5.2 29.5 23.2 46.1 47 54.7 8.8 19.1 29.4 45.7 67.3 49.6C143 504.3 163 512 192.2 512h.2c29.1 0 49.1-7.7 63.6-19.5 37.9-3.9 58.5-30.5 67.3-49.6 23.8-8.7 41.7-25.2 47-54.7 8.2-48.4-21.1-70.9-21.1-70.9zM305.7 37.7c5.6-1.8 11.6-2.7 17.7-2.7 11 0 19.9 3 24.7 5-3.1 1.4-6.4 3.2-9.7 5.3-2.4-.4-5.6-.8-9.2-.8-10.5 0-20.5 3.1-28.7 8.9-12.3 8.7-18 16.9-20.7 22.4-2.2-1.3-4.5-2.5-7.1-3.7-1.6-.8-3.1-1.5-4.7-2.2 6.1-9.1 19.9-26.5 37.7-32.2zm21 18.2c-.8 1-1.6 2.1-2.3 3.2-3.3 5.2-3.9 11.6-4.4 17.8-.5 6.4-1.1 12.5-4.4 17-4.2.8-8.1 1.7-11.5 2.7-2.3-3.1-5.6-7-10.5-11.2 1.4-4.8 5.5-16.1 13.5-22.5 5.6-4.3 12.2-6.7 19.6-7zM45.6 45.3c-3.3-2.2-6.6-4-9.7-5.3 4.8-2 13.7-5 24.7-5 6.1 0 12 .9 17.7 2.7 17.8 5.8 31.6 23.2 37.7 32.1-1.6.7-3.2 1.4-4.8 2.2-2.5 1.2-4.9 2.5-7.1 3.7-2.6-5.4-8.3-13.7-20.7-22.4-8.3-5.8-18.2-8.9-28.8-8.9-3.4.1-6.6.5-9 .9zm44.7 40.1c-4.9 4.2-8.3 8-10.5 11.2-3.4-.9-7.3-1.9-11.5-2.7C65 89.5 64.5 83.4 64 77c-.5-6.2-1.1-12.6-4.4-17.8-.7-1.1-1.5-2.2-2.3-3.2 7.4.3 14 2.6 19.5 7 8 6.3 12.1 17.6 13.5 22.4zM58.1 259.9c-2.7-1.6-5.6-3.1-8.4-4.6-14.9-8-30.2-16.3-30.2-30.5 0-11.1 4.3-14.6 8.9-18.2l.5-.4c.7-.6 1.4-1.2 2.2-1.8-.9 7.2-1.9 13.3-2.7 14.9 0 0 12.1-15 15.7-44.3 1.4-11.5-1.1-34.3-5.1-43 .2 4.9 0 9.8-.3 14.4-.4-.8-.8-1.6-1.3-2.2-3.2-4-11.8-17.5-9.4-26.6.9-3.5 3.1-6 6.7-7.8 3.8-1.9 8.8-2.9 15.1-2.9 12.3 0 25.9 3.7 32.9 6 25.1 8 55.4 30.9 64.1 37.7.2.2.4.3.4.3l5.6 3.9-3.5-5.8c-.2-.3-19.1-31.4-53.2-46.5 2-2.9 7.4-8.1 21.6-15.1 21.4-10.5 46.5-15.8 74.3-15.8 27.9 0 52.9 5.3 74.3 15.8 14.2 6.9 19.6 12.2 21.6 15.1-34 15.1-52.9 46.2-53.1 46.5l-3.5 5.8 5.6-3.9s.2-.1.4-.3c8.7-6.8 39-29.8 64.1-37.7 7-2.2 20.6-6 32.9-6 6.3 0 11.3 1 15.1 2.9 3.5 1.8 5.7 4.4 6.7 7.8 2.5 9.1-6.1 22.6-9.4 26.6-.5.6-.9 1.3-1.3 2.2-.3-4.6-.5-9.5-.3-14.4-4 8.8-6.5 31.5-5.1 43 3.6 29.3 15.7 44.3 15.7 44.3-.8-1.6-1.8-7.7-2.7-14.9.7.6 1.5 1.2 2.2 1.8l.5.4c4.6 3.7 8.9 7.1 8.9 18.2 0 14.2-15.4 22.5-30.2 30.5-2.9 1.5-5.7 3.1-8.4 4.6-8.7 5-18 16.7-19.1 34.2-.9 14.6.9 49.9 3.4 75.9-12.4 4.8-26.7 6.4-39.7 6.8-2-4.1-3.9-8.5-5.5-13.1-.7-2-19.6-51.1-26.4-62.2 5.5 39 17.5 73.7 23.5 89.6-3.5-.5-7.3-.7-11.7-.7h-117c-4.4 0-8.3.3-11.7.7 6-15.9 18.1-50.6 23.5-89.6-6.8 11.2-25.7 60.3-26.4 62.2-1.6 4.6-3.5 9-5.5 13.1-13-.4-27.2-2-39.7-6.8 2.5-26 4.3-61.2 3.4-75.9-.9-17.4-10.3-29.2-19-34.2zM34.8 404.6c-12.1-20-8.7-54.1-3.7-59.1 10.9 34.4 47.2 44.3 74.4 45.4-2.7 4.2-5.2 7.6-7 10l-1.4 1.4c-7.2 7.8-8.6 18.5-4.1 31.8-22.7-.1-46.3-9.8-58.2-29.5zm45.7 43.5c6 1.1 12.2 1.9 18.6 2.4 3.5 8 7.4 15.9 12.3 23.1-14.4-5.9-24.4-16-30.9-25.5zM192 498.2c-60.6-.1-78.3-45.8-84.9-64.7-3.7-10.5-3.4-18.2.9-23.1 2.9-3.3 9.5-7.2 24.6-7.2h118.8c15.1 0 21.8 3.9 24.6 7.2 4.2 4.8 4.5 12.6.9 23.1-6.6 18.8-24.3 64.6-84.9 64.7zm80.6-24.6c4.9-7.2 8.8-15.1 12.3-23.1 6.4-.5 12.6-1.3 18.6-2.4-6.5 9.5-16.5 19.6-30.9 25.5zm76.6-69c-12 19.7-35.6 29.3-58.1 29.7 4.5-13.3 3.1-24.1-4.1-31.8-.4-.5-.9-1-1.4-1.5-1.8-2.4-4.3-5.8-7-10 27.2-1.2 63.5-11 74.4-45.4 5 5 8.4 39.1-3.8 59z" ], + gulp: [ 256, 512, [], "f3ae", "M209.8 391.1l-14.1 24.6-4.6 80.2c0 8.9-28.3 16.1-63.1 16.1s-63.1-7.2-63.1-16.1l-5.8-79.4-14.9-25.4c41.2 17.3 126 16.7 165.6 0zm-196-253.3l13.6 125.5c5.9-20 20.8-47 40-55.2 6.3-2.7 12.7-2.7 18.7.9 5.2 3 9.6 9.3 10.1 11.8 1.2 6.5-2 9.1-4.5 9.1-3 0-5.3-4.6-6.8-7.3-4.1-7.3-10.3-7.6-16.9-2.8-6.9 5-12.9 13.4-17.1 20.7-5.1 8.8-9.4 18.5-12 28.2-1.5 5.6-2.9 14.6-.6 19.9 1 2.2 2.5 3.6 4.9 3.6 5 0 12.3-6.6 15.8-10.1 4.5-4.5 10.3-11.5 12.5-16l5.2-15.5c2.6-6.8 9.9-5.6 9.9 0 0 10.2-3.7 13.6-10 34.7-5.8 19.5-7.6 25.8-7.6 25.8-.7 2.8-3.4 7.5-6.3 7.5-1.2 0-2.1-.4-2.6-1.2-1-1.4-.9-5.3-.8-6.3.2-3.2 6.3-22.2 7.3-25.2-2 2.2-4.1 4.4-6.4 6.6-5.4 5.1-14.1 11.8-21.5 11.8-3.4 0-5.6-.9-7.7-2.4l7.6 79.6c2 5 39.2 17.1 88.2 17.1 49.1 0 86.3-12.2 88.2-17.1l10.9-94.6c-5.7 5.2-12.3 11.6-19.6 14.8-5.4 2.3-17.4 3.8-17.4-5.7 0-5.2 9.1-14.8 14.4-21.5 1.4-1.7 4.7-5.9 4.7-8.1 0-2.9-6-2.2-11.7 2.5-3.2 2.7-6.2 6.3-8.7 9.7-4.3 6-6.6 11.2-8.5 15.5-6.2 14.2-4.1 8.6-9.1 22-5 13.3-4.2 11.8-5.2 14-.9 1.9-2.2 3.5-4 4.5-1.9 1-4.5.9-6.1-.3-.9-.6-1.3-1.9-1.3-3.7 0-.9.1-1.8.3-2.7 1.5-6.1 7.8-18.1 15-34.3 1.6-3.7 1-2.6.8-2.3-6.2 6-10.9 8.9-14.4 10.5-5.8 2.6-13 2.6-14.5-4.1-.1-.4-.1-.8-.2-1.2-11.8 9.2-24.3 11.7-20-8.1-4.6 8.2-12.6 14.9-22.4 14.9-4.1 0-7.1-1.4-8.6-5.1-2.3-5.5 1.3-14.9 4.6-23.8 1.7-4.5 4-9.9 7.1-16.2 1.6-3.4 4.2-5.4 7.6-4.5.6.2 1.1.4 1.6.7 2.6 1.8 1.6 4.5.3 7.2-3.8 7.5-7.1 13-9.3 20.8-.9 3.3-2 9 1.5 9 2.4 0 4.7-.8 6.9-2.4 4.6-3.4 8.3-8.5 11.1-13.5 2-3.6 4.4-8.3 5.6-12.3.5-1.7 1.1-3.3 1.8-4.8 1.1-2.5 2.6-5.1 5.2-5.1 1.3 0 2.4.5 3.2 1.5 1.7 2.2 1.3 4.5.4 6.9-2 5.6-4.7 10.6-6.9 16.7-1.3 3.5-2.7 8-2.7 11.7 0 3.4 3.7 2.6 6.8 1.2 2.4-1.1 4.8-2.8 6.8-4.5 1.2-4.9.9-3.8 26.4-68.2 1.3-3.3 3.7-4.7 6.1-4.7 1.2 0 2.2.4 3.2 1.1 1.7 1.3 1.7 4.1 1 6.2-.7 1.9-.6 1.3-4.5 10.5-5.2 12.1-8.6 20.8-13.2 31.9-1.9 4.6-7.7 18.9-8.7 22.3-.6 2.2-1.3 5.8 1 5.8 5.4 0 19.3-13.1 23.1-17 .2-.3.5-.4.9-.6.6-1.9 1.2-3.7 1.7-5.5 1.4-3.8 2.7-8.2 5.3-11.3.8-1 1.7-1.6 2.7-1.6 2.8 0 4.2 1.2 4.2 4 0 1.1-.7 5.1-1.1 6.2 1.4-1.5 2.9-3 4.5-4.5 15-13.9 25.7-6.8 25.7.2 0 7.4-8.9 17.7-13.8 23.4-1.6 1.9-4.9 5.4-5 6.4 0 1.3.9 1.8 2.2 1.8 2 0 6.4-3.5 8-4.7 5-3.9 11.8-9.9 16.6-14.1l14.8-136.8c-30.5 17.1-197.6 17.2-228.3.2zm229.7-8.5c0 21-231.2 21-231.2 0 0-8.8 51.8-15.9 115.6-15.9 9 0 17.8.1 26.3.4l12.6-48.7L228.1.6c1.4-1.4 5.8-.2 9.9 3.5s6.6 7.9 5.3 9.3l-.1.1L185.9 74l-10 40.7c39.9 2.6 67.6 8.1 67.6 14.6zm-69.4 4.6c0-.8-.9-1.5-2.5-2.1l-.2.8c0 1.3-5 2.4-11.1 2.4s-11.1-1.1-11.1-2.4c0-.1 0-.2.1-.3l.2-.7c-1.8.6-3 1.4-3 2.3 0 2.1 6.2 3.7 13.7 3.7 7.7.1 13.9-1.6 13.9-3.7z" ], + "hacker-news": [ 448, 512, [], "f1d4", "M0 32v448h448V32H0zm21.2 197.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z" ], + "hacker-news-square": [ 448, 512, [], "f3af", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM21.2 229.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z" ], + hips: [ 640, 512, [], "f452", "M0 80.2c0-1.8.9-2.7 2.7-2.7h40.9c1.9 0 2.8.9 2.8 2.7v81.2c15.2-7.7 31.7-11.5 49.8-11.4 24 .1 44.2 6.2 60.3 18 18.7 13.5 28 31.9 28 55.3v136.1c0 1.9-.9 2.8-2.7 2.8h-27.3c-9.1 0-16.4-7.3-16.4-16.3V223.3c0-.9 2.7-27-45.8-27-48.6 0-45.8 26.2-45.8 27v136.1c0 1.9-.9 2.8-2.8 2.8h-41c-1.8 0-2.7-.9-2.7-2.8V80.2zm497.7 221.5c13.7 10.2 34.1 19.1 58.4 19.1 23.3 0 32.8-4.5 36.5-13.6 3-7.9-.6-16.1-12.2-21.2l-53.6-23.5c-21.4-9.4-33.8-24-37.2-43.6-5.7-33.7 22.2-53.3 22.7-53.7 13.2-9.6 32-15.4 58.5-15.4 19 0 37.4 3.3 55.1 9.9 1.3.5 1.9 1.3 1.9 2.6V207c0 2.1-2.3 3.4-4 2.4-39.7-20.7-76.6-12.3-84-6.8-6.6 4.9-6 12.5 2.6 16.1L600 244c16.5 7.1 28.1 18.4 34.9 34.1 5.5 12.6 6.6 25.6 3.1 39.1-9.6 36.9-44.9 45.5-45.6 45.8-10.5 3.1-23.6 4.3-36.3 4.3-16.6 0-32.6-2.7-48.2-8.2-9.7-3.4-14.6-10.3-14.6-20.7V304c0-2.1 2.3-3.7 4.4-2.3zM376.2 149.8c-31.7 0-104.2 20.1-104.2 103.5v183.5c0 .8.6 2.7 2.7 2.7h40.9c1.9 0 2.8-.9 2.8-2.7V348c16.5 12.7 35.8 19.1 57.7 19.1 60.5 0 108.7-48.5 108.7-108.7.1-60.3-48.2-108.6-108.6-108.6zm0 170.9c-17.2 0-31.9-6.1-44-18.2-12.2-12.2-18.2-26.8-18.2-44 0-34.5 27.6-62.2 62.2-62.2 34.5 0 62.2 27.6 62.2 62.2.1 34.3-27.3 62.2-62.2 62.2zm-124.6 38.7c0 1.9-.9 2.8-2.8 2.8h-40.9c-1.6 0-2.7-1.4-2.7-2.8V157.6c0-1.4 1.1-2.8 2.7-2.8h40.9c1.9 0 2.8.9 2.8 2.8v201.8M228.3 72.5c15.9 0 28.9 12.7 28.9 28.9 0 15.8-12.7 28.9-28.9 28.9s-28.9-13.3-28.9-28.9c.1-16 13-28.9 28.9-28.9" ], + "hire-a-helper": [ 512, 512, [], "f3b0", "M443.1 0H71.9C67.9 37.3 37.4 67.8 0 71.7v371.5c37.4 4.9 66 32.4 71.9 68.8h372.2c3-36.4 32.5-65.8 67.9-69.8V71.7c-36.4-5.9-65-35.3-68.9-71.7zm-37 404.9c-36.3 0-18.8-2-55.1-2-35.8 0-21 2-56.1 2-5.9 0-4.9-8.2 0-9.8 22.8-7.6 22.9-10.2 24.6-12.8 10.4-15.6 5.9-83 5.9-113 0-5.3-6.4-12.8-13.8-12.8H200.4c-7.4 0-13.8 7.5-13.8 12.8 0 30-4.5 97.4 5.9 113 1.7 2.5 1.8 5.2 24.6 12.8 4.9 1.6 6 9.8 0 9.8-35.1 0-20.3-2-56.1-2-36.3 0-18.8 2-55.1 2-7.9 0-5.8-10.8 0-10.8 10.2-3.4 13.5-3.5 21.7-13.8 7.7-12.9 7.9-44.4 7.9-127.8V151.3c0-22.2-12.2-28.3-28.6-32.4-8.8-2.2-4-11.8 1-11.8 36.5 0 20.6 2 57.1 2 32.7 0 16.5-2 49.2-2 3.3 0 8.5 8.3 1 10.8-4.9 1.6-27.6 3.7-27.6 39.3 0 45.6-.2 55.8 1 68.8 0 1.3 2.3 12.8 12.8 12.8h109.2c10.5 0 12.8-11.5 12.8-12.8 1.2-13 1-23.2 1-68.8 0-35.6-22.7-37.7-27.6-39.3-7.5-2.5-2.3-10.8 1-10.8 32.7 0 16.5 2 49.2 2 36.5 0 20.6-2 57.1-2 4.9 0 9.9 9.6 1 11.8-16.4 4.1-28.6 10.3-28.6 32.4v101.2c0 83.4.1 114.9 7.9 127.8 8.2 10.2 11.4 10.4 21.7 13.8 5.8 0 7.8 10.8 0 10.8z" ], + hooli: [ 640, 512, [], "f427", "M508.4 352h57.9V156.7L508.4 184v168zm73.7-110.5V352H640V241.5h-57.9zm-250.7-8.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.2-1.1-50.4 17.1c-1.9 1.9-3.7 3.9-5.3 6-38.2-29.6-72.5-46.5-102.1-61.1v-20.7l-22.5 10.6c-54.4-22.1-89-18.2-97.3.1 0 0-24.9 32.8 61.9 110.9v-31c-48.8-54.6-39-76.1-35.3-79.2 13.5-11.4 37.5-8 64.4 2.1L65.2 184v63.3c13.1 14.7 30.5 31.5 53.5 50.4l4.5 3.6v-29.8c0-6.9 1.7-18.2 10.8-18.2s10.6 6.9 10.6 15V317c18 12.2 37.3 22.1 57.7 29.6v-93.9c0-18.7-13.4-37.4-40.6-37.4-15.8-.1-30.5 8.2-38.5 21.9v-54.3c41.9 20.9 83.9 46.5 99.9 58.3-10.2 14.6-9.3 28.1-9.3 43.7 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.7-33.8 16.7-52.5 0-18.5 1.5-34.2-16.7-52.3zm-39.7 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm185.7-71.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.3-1.1-50.4 17.1c-18.2 18.2-16.8 33.9-16.8 52.6 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.8-33.8 16.8-52.5-.1-18.8 1.3-34.5-16.8-52.6zm-39.8 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm173.5-73c15.9 0 28.9-12.9 28.9-28.9s-12.9-24.5-28.9-24.5c-15.9 0-28.9 8.6-28.9 24.5s12.9 28.9 28.9 28.9zM144.5 352l38.3.8c-13.2-4.6-26-10.2-38.3-16.8v16zm-21.4 0v-28.6c-6.5-4.2-13-8.7-19.4-13.6-14.8-11.2-27.5-21.7-38.5-31.5V352h57.9zm59.7.8c36.5 12.5 69.9 14.2 94.7 7.2-19.9.2-45.8-2.6-75.3-13.3v5.3l-19.4.8z" ], + hornbill: [ 509, 512, [], "f592", "M75.37 370.3c2.14 15.83-5.77 31.98-20.94 39.29-18.85 9.1-41.55 1.17-50.68-17.68-9.08-18.83-1.13-41.58 17.7-50.65 7.05-3.4 14.63-4.42 21.85-3.38-78.28-111.35 52-190.53 52-190.53-5.86 43.04-8.24 91.16-8.24 91.16-67.31 41.45.92 64.06 39.81 72.87 19.77 53.62 71.18 91.94 131.66 91.94 1.92 0 3.77-.21 5.67-.28l.11 18.86c-99.22 1.39-158.7-29.14-188.94-51.6zM183.38 42.6c.89-7-.1-14.33-3.39-21.15-9.1-18.84-31.82-26.78-50.66-17.69-18.86 9.1-26.8 31.83-17.69 50.68 6.98 14.47 22.02 22.42 37.18 21.23-22.55 29.91-53.83 89.57-52.42 190.03l21.84-.15c-.02-.9-.14-1.77-.14-2.68 0-58.95 36.37-109.33 87.85-130.16 8.01-37.75 30.74-114.3 73.84-44.29 0 0 48.14 2.38 91.18 8.24 0-.01-77.84-128.03-187.59-54.06zm304.18 134.17c18.84-9.09 26.81-31.81 17.7-50.65-9.1-18.85-31.83-26.77-50.67-17.69-15.27 7.37-23.19 23.69-20.87 39.64-31.71-21.94-89.84-49.05-183.45-47.74l.14 22.5c2.7-.15 5.39-.41 8.14-.41 59.3 0 109.9 36.8 130.49 88.76 39.1 9.02 105.06 31.58 38.46 72.54 0 0-2.34 48.13-8.21 91.16 0 0 133.45-81.16 48.96-194.61 6.43.5 13.07-.49 19.31-3.5zM373.05 436.24c21.43-32.46 46.42-89.69 45.14-179.66l-19.52.14c.08 2.06.3 4.07.3 6.15 0 60.27-38.05 111.55-91.39 131.45-8.85 38.95-31.44 106.66-72.77 39.49 0 0-48.12-2.34-91.19-8.22 0 0 79.92 131.34 191.9 50.97.31 4.72 1.45 9.45 3.64 13.97 9.06 18.89 31.8 26.78 50.64 17.71 18.86-9.1 26.79-31.83 17.7-50.65-6.56-13.62-20.26-21.43-34.45-21.35z" ], + hotjar: [ 448, 512, [], "f3b1", "M414.9 161.5C340.2 29 121.1 0 121.1 0S222.2 110.4 93 197.7C11.3 252.8-21 324.4 14 402.6c26.8 59.9 83.5 84.3 144.6 93.4-29.2-55.1-6.6-122.4-4.1-129.6 57.1 86.4 165 0 110.8-93.9 71 15.4 81.6 138.6 27.1 215.5 80.5-25.3 134.1-88.9 148.8-145.6 15.5-59.3 3.7-127.9-26.3-180.9z" ], + houzz: [ 414, 512, [], "f27c", "M258.9 330.7H154.3V480H0V32h109.5v104.5l305.1 85.6V480H258.9V330.7z" ], + html5: [ 384, 512, [], "f13b", "M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z" ], + hubspot: [ 512, 512, [], "f3b2", "M267.4 211.6c-25.1 23.7-40.8 57.3-40.8 94.6 0 29.3 9.7 56.3 26 78L203.1 434c-4.4-1.6-9.1-2.5-14-2.5-10.8 0-20.9 4.2-28.5 11.8-7.6 7.6-11.8 17.8-11.8 28.6s4.2 20.9 11.8 28.5c7.6 7.6 17.8 11.6 28.5 11.6 10.8 0 20.9-3.9 28.6-11.6 7.6-7.6 11.8-17.8 11.8-28.5 0-4.2-.6-8.2-1.9-12.1l50-50.2c22 16.9 49.4 26.9 79.3 26.9 71.9 0 130-58.3 130-130.2 0-65.2-47.7-119.2-110.2-128.7V116c17.5-7.4 28.2-23.8 28.2-42.9 0-26.1-20.9-47.9-47-47.9S311.2 47 311.2 73.1c0 19.1 10.7 35.5 28.2 42.9v61.2c-15.2 2.1-29.6 6.7-42.7 13.6-27.6-20.9-117.5-85.7-168.9-124.8 1.2-4.4 2-9 2-13.8C129.8 23.4 106.3 0 77.4 0 48.6 0 25.2 23.4 25.2 52.2c0 28.9 23.4 52.3 52.2 52.3 9.8 0 18.9-2.9 26.8-7.6l163.2 114.7zm89.5 163.6c-38.1 0-69-30.9-69-69s30.9-69 69-69 69 30.9 69 69-30.9 69-69 69z" ], + imdb: [ 448, 512, [], "f2d8", "M350.5 288.7c0 5.4 1.6 14.4-6.2 14.4-1.6 0-3-.8-3.8-2.4-2.2-5.1-1.1-44.1-1.1-44.7 0-3.8-1.1-12.7 4.9-12.7 7.3 0 6.2 7.3 6.2 12.7v32.7zM265 229.9c0-9.7 1.6-16-10.3-16v83.7c12.2.3 10.3-8.7 10.3-18.4v-49.3zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM21.3 228.8c-.1.1-.2.3-.3.4h.3v-.4zM97 192H64v127.8h33V192zm113.3 0h-43.1l-7.6 59.9c-2.7-20-5.4-40.1-8.7-59.9h-42.8v127.8h29v-84.5l12.2 84.5h20.6l11.6-86.4v86.4h28.7V192zm86.3 45.3c0-8.1.3-16.8-1.4-24.4-4.3-22.5-31.4-20.9-49-20.9h-24.6v127.8c86.1.1 75 6 75-82.5zm85.9 17.3c0-17.3-.8-30.1-22.2-30.1-8.9 0-14.9 2.7-20.9 9.2V192h-31.7v127.8h29.8l1.9-8.1c5.7 6.8 11.9 9.8 20.9 9.8 19.8 0 22.2-15.2 22.2-30.9v-36z" ], + instagram: [ 448, 512, [], "f16d", "M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z" ], + "internet-explorer": [ 512, 512, [], "f26b", "M483.049 159.706c10.855-24.575 21.424-60.438 21.424-87.871 0-72.722-79.641-98.371-209.673-38.577-107.632-7.181-211.221 73.67-237.098 186.457 30.852-34.862 78.271-82.298 121.977-101.158C125.404 166.85 79.128 228.002 43.992 291.725 23.246 329.651 0 390.94 0 436.747c0 98.575 92.854 86.5 180.251 42.006 31.423 15.43 66.559 15.573 101.695 15.573 97.124 0 184.249-54.294 216.814-146.022H377.927c-52.509 88.593-196.819 52.996-196.819-47.436H509.9c6.407-43.581-1.655-95.715-26.851-141.162zM64.559 346.877c17.711 51.15 53.703 95.871 100.266 123.304-88.741 48.94-173.267 29.096-100.266-123.304zm115.977-108.873c2-55.151 50.276-94.871 103.98-94.871 53.418 0 101.981 39.72 103.981 94.871H180.536zm184.536-187.6c21.425-10.287 48.563-22.003 72.558-22.003 31.422 0 54.274 21.717 54.274 53.722 0 20.003-7.427 49.007-14.569 67.867-26.28-42.292-65.986-81.584-112.263-99.586z" ], + ioxhost: [ 640, 512, [], "f208", "M616 160h-67.3C511.2 70.7 422.9 8 320 8 183 8 72 119 72 256c0 16.4 1.6 32.5 4.7 48H24c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h67.3c37.5 89.3 125.8 152 228.7 152 137 0 248-111 248-248 0-16.4-1.6-32.5-4.7-48H616c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24zm-96 96c0 110.5-89.5 200-200 200-75.7 0-141.6-42-175.5-104H424c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24H125.8c-3.8-15.4-5.8-31.4-5.8-48 0-110.5 89.5-200 200-200 75.7 0 141.6 42 175.5 104H216c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h298.2c3.8 15.4 5.8 31.4 5.8 48zm-304-24h208c13.3 0 24 10.7 24 24 0 13.2-10.7 24-24 24H216c-13.3 0-24-10.7-24-24 0-13.2 10.7-24 24-24z" ], + itunes: [ 448, 512, [], "f3b4", "M223.6 80.3C129 80.3 52.5 157 52.5 251.5S129 422.8 223.6 422.8s171.2-76.7 171.2-171.2c0-94.6-76.7-171.3-171.2-171.3zm79.4 240c-3.2 13.6-13.5 21.2-27.3 23.8-12.1 2.2-22.2 2.8-31.9-5-11.8-10-12-26.4-1.4-36.8 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 3.2-3.6 2.2-2 2.2-80.8 0-5.6-2.7-7.1-8.4-6.1-4 .7-91.9 17.1-91.9 17.1-5 1.1-6.7 2.6-6.7 8.3 0 116.1.5 110.8-1.2 118.5-2.1 9-7.6 15.8-14.9 19.6-8.3 4.6-23.4 6.6-31.4 5.2-21.4-4-28.9-28.7-14.4-42.9 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 5-5.7.9-127 2.6-133.7.4-2.6 1.5-4.8 3.5-6.4 2.1-1.7 5.8-2.7 6.7-2.7 101-19 113.3-21.4 115.1-21.4 5.7-.4 9 3 9 8.7-.1 170.6.4 161.4-1 167.6zM345.2 32H102.8C45.9 32 0 77.9 0 134.8v242.4C0 434.1 45.9 480 102.8 480h242.4c57 0 102.8-45.9 102.8-102.8V134.8C448 77.9 402.1 32 345.2 32zM223.6 444c-106.3 0-192.5-86.2-192.5-192.5S117.3 59 223.6 59s192.5 86.2 192.5 192.5S329.9 444 223.6 444z" ], + "itunes-note": [ 384, 512, [], "f3b5", "M381.9 388.2c-6.4 27.4-27.2 42.8-55.1 48-24.5 4.5-44.9 5.6-64.5-10.2-23.9-20.1-24.2-53.4-2.7-74.4 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 6.4-7.2 4.4-4.1 4.4-163.2 0-11.2-5.5-14.3-17-12.3-8.2 1.4-185.7 34.6-185.7 34.6-10.2 2.2-13.4 5.2-13.4 16.7 0 234.7 1.1 223.9-2.5 239.5-4.2 18.2-15.4 31.9-30.2 39.5-16.8 9.3-47.2 13.4-63.4 10.4-43.2-8.1-58.4-58-29.1-86.6 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 10.1-11.5 1.8-256.6 5.2-270.2.8-5.2 3-9.6 7.1-12.9 4.2-3.5 11.8-5.5 13.4-5.5 204-38.2 228.9-43.1 232.4-43.1 11.5-.8 18.1 6 18.1 17.6.2 344.5 1.1 326-1.8 338.5z" ], + java: [ 377, 512, [], "f4e4", "M121.6 396s-19.6 11.4 13.9 15.2c40.6 4.6 61.3 4 106-4.5 0 0 11.8 7.4 28.2 13.8C169.5 463.4 42.9 418 121.6 396m-12.2-56.1s-21.9 16.2 11.6 19.7c43.3 4.5 77.6 4.8 136.8-6.6 0 0 8.2 8.3 21.1 12.8-121.3 35.5-256.3 2.9-169.5-25.9m103.2-95.1c24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3.1 0-175.2 43.8-91.5 140.2m132.6 192.6s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6.7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2 204.2 33.2 372.4-14.9 319.4-38.8M131 281.8s-93.1 22.1-33 30.1c25.4 3.4 76 2.6 123.1-1.3 38.5-3.2 77.2-10.2 77.2-10.2s-13.6 5.8-23.4 12.5c-94.5 24.9-277 13.3-224.5-12.1 44.5-21.4 80.6-19 80.6-19m167 93.3c96.1-49.9 51.6-97.9 20.6-91.4-7.6 1.6-11 3-11 3s2.8-4.4 8.2-6.3c61.3-21.6 108.5 63.6-19.8 97.3 0-.1 1.5-1.4 2-2.6M240 0s53.2 53.2-50.5 135c-83.1 65.6-19 103.1 0 145.8-48.5-43.8-84.1-82.3-60.2-118.2C164.4 110.1 261.5 84.5 240 0m-99.5 510.4c92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6" ], + "jedi-order": [ 448, 512, [], "f50e", "M231.89 335.72l31.44-45.89-20.18 55.5 62.56 9.09-62.56 9.08 24.22 47.43s-30.22-31.77-34.49-36.25c1.76 68.78 2.19 85.7 2.19 85.7s154.4-71.65 68.62-230.09c0 0 106.97-118.07 10.09-190.73 0 0 165.5 99.91 60.55 271.46 0 0 86.78-84.77 41.37-170.54 0 0 78.71 111.01-17.16 233.11 0 0 26.24-16.15 49.45-77.71 0 0-16.93 183.26-221.96 185.66v.02h-4.08v-.02C16.93 479.14 0 295.88 0 295.88c23.21 61.56 49.44 77.71 49.44 77.71-95.87-122.11-17.15-233.11-17.15-233.11-45.41 85.78 41.38 170.54 41.38 170.54-104.95-171.56 60.54-271.46 60.54-271.46-96.88 72.66 10.09 190.73 10.09 190.73-85.78 158.44 68.62 230.09 68.62 230.09s.43-16.93 2.19-85.7l-34.48 36.25 24.22-47.43-62.56-9.08 62.56-9.09-20.18-55.5 31.44 45.89c2.25-87.85 7.82-305.82 7.85-306.85l.01-2.43.02 1 .03-1 .01 2.43c.05 1.72 5.61 219.2 7.86 306.85z" ], + jenkins: [ 512, 512, [], "f3b6", "M487.1 425c-1.4-11.2-19-23.1-28.2-31.9-5.1-5-29-23.1-30.4-29.9-1.4-6.6 9.7-21.5 13.3-28.9 5.1-10.7 8.8-23.7 11.3-32.6 18.8-66.1 20.7-156.9-6.2-211.2-10.2-20.6-38.6-49-56.4-62.5-42-31.7-119.6-35.3-170.1-16.6-14.1 5.2-27.8 9.8-40.1 17.1-33.1 19.4-68.3 32.5-78.1 71.6-24.2 10.8-31.5 41.8-30.3 77.8.2 7 4.1 15.8 2.7 22.4-.7 3.3-5.2 7.6-6.1 9.8-11.6 27.7-2.3 64 11.1 83.7 8.1 11.9 21.5 22.4 39.2 25.2.7 10.6 3.3 19.7 8.2 30.4 3.1 6.8 14.7 19 10.4 27.7-2.2 4.4-21 13.8-27.3 17.6C89 407.2 73.7 415 54.2 429c-12.6 9-32.3 10.2-29.2 31.1 2.1 14.1 10.1 31.6 14.7 45.8.7 2 1.4 4.1 2.1 6h422c4.9-15.3 9.7-30.9 14.6-47.2 3.4-11.4 10.2-27.8 8.7-39.7zM205.9 33.7c1.8-.5 3.4.7 4.9 2.4-.2 5.2-5.4 5.1-8.9 6.8-5.4 6.7-13.4 9.8-20 17.2-6.8 7.5-14.4 27.7-23.4 30-4.5 1.1-9.7-.8-13.6-.5-10.4.7-17.7 6-28.3 7.5 13.6-29.9 56.1-54 89.3-63.4zm-104.8 93.6c13.5-14.9 32.1-24.1 54.8-25.9 11.7 29.7-8.4 65-.9 97.6 2.3 9.9 10.2 25.4-2.4 25.7.3-28.3-34.8-46.3-61.3-29.6-1.8-21.5-4.9-51.7 9.8-67.8zm36.7 200.2c-1-4.1-2.7-12.9-2.3-15.1 1.6-8.7 17.1-12.5 11-24.7-11.3-.1-13.8 10.2-24.1 11.3-26.7 2.6-45.6-35.4-44.4-58.4 1-19.5 17.6-38.2 40.1-35.8 16 1.8 21.4 19.2 24.5 34.7 9.2.5 22.5-.4 26.9-7.6-.6-17.5-8.8-31.6-8.2-47.7 1-30.3 17.5-57.6 4.8-87.4 13.6-30.9 53.5-55.3 83.1-70 36.6-18.3 94.9-3.7 129.3 15.8 19.7 11.1 34.4 32.7 48.3 50.7-19.5-5.8-36.1 4.2-33.1 20.3 16.3-14.9 44.2-.2 52.5 16.4 7.9 15.8 7.8 39.3 9 62.8 2.9 57-10.4 115.9-39.1 157.1-7.7 11-14.1 23-24.9 30.6-26 18.2-65.4 34.7-99.2 23.4-44.7-15-65-44.8-89.5-78.8.7 18.7 13.8 34.1 26.8 48.4 11.3 12.5 25 26.6 39.7 32.4-12.3-2.9-31.1-3.8-36.2 7.2-28.6-1.9-55.1-4.8-68.7-24.2-10.6-15.4-21.4-41.4-26.3-61.4zm222 124.1c4.1-3 11.1-2.9 17.4-3.6-5.4-2.7-13-3.7-19.3-2.2-.1-4.2-2-6.8-3.2-10.2 10.6-3.8 35.5-28.5 49.6-20.3 6.7 3.9 9.5 26.2 10.1 37 .4 9-.8 18-4.5 22.8-18.8-.6-35.8-2.8-50.7-7 .9-6.1-1-12.1.6-16.5zm-17.2-20c-16.8.8-26-1.2-38.3-10.8.2-.8 1.4-.5 1.5-1.4 18 8 40.8-3.3 59-4.9-7.9 5.1-14.6 11.6-22.2 17.1zm-12.1 33.2c-1.6-9.4-3.5-12-2.8-20.2 25-16.6 29.7 28.6 2.8 20.2zM226 438.6c-11.6-.7-48.1-14-38.5-23.7 9.4 6.5 27.5 4.9 41.3 7.3.8 4.4-2.8 10.2-2.8 16.4zM57.7 497.1c-4.3-12.7-9.2-25.1-14.8-36.9 30.8-23.8 65.3-48.9 102.2-63.5 2.8-1.1 23.2 25.4 26.2 27.6 16.5 11.7 37 21 56.2 30.2 1.2 8.8 3.9 20.2 8.7 35.5.7 2.3 1.4 4.7 2.2 7.2H57.7zm240.6 5.7h-.8c.3-.2.5-.4.8-.5v.5zm7.5-5.7c2.1-1.4 4.3-2.8 6.4-4.3 1.1 1.4 2.2 2.8 3.2 4.3h-9.6zm15.1-24.7c-10.8 7.3-20.6 18.3-33.3 25.2-6 3.3-27 11.7-33.4 10.2-3.6-.8-3.9-5.3-5.4-9.5-3.1-9-10.1-23.4-10.8-37-.8-17.2-2.5-46 16-42.4 14.9 2.9 32.3 9.7 43.9 16.1 7.1 3.9 11.1 8.6 21.9 9.5-.1 1.4-.1 2.8-.2 4.3-5.9 3.9-15.3 3.8-21.8 7.1 9.5.4 17 2.7 23.5 5.9-.1 3.4-.3 7-.4 10.6zm53.4 24.7h-14c-.1-3.2-2.8-5.8-6.1-5.8s-5.9 2.6-6.1 5.8h-17.4c-2.8-4.4-5.7-8.6-8.9-12.5 2.1-2.2 4-4.7 6-6.9 9 3.7 14.8-4.9 21.7-4.2 7.9.8 14.2 11.7 25.4 11l-.6 12.6zm8.7 0c.2-4 .4-7.8.6-11.5 15.6-7.3 29 1.3 35.7 11.5H383zm83.4-37c-2.3 11.2-5.8 24-9.9 37.1-.2-.1-.4-.1-.6-.1H428c.6-1.1 1.2-2.2 1.9-3.3-2.6-6.1-9-8.7-10.9-15.5 12.1-22.7 6.5-93.4-24.2-78.5 4.3-6.3 15.6-11.5 20.8-19.3 13 10.4 20.8 20.3 33.2 31.4 6.8 6 20 13.3 21.4 23.1.8 5.5-2.6 18.9-3.8 25.1zM222.2 130.5c5.4-14.9 27.2-34.7 45-32 7.7 1.2 18 8.2 12.2 17.7-30.2-7-45.2 12.6-54.4 33.1-8.1-2-4.9-13.1-2.8-18.8zm184.1 63.1c8.2-3.6 22.4-.7 29.6-5.3-4.2-11.5-10.3-21.4-9.3-37.7.5 0 1 0 1.4.1 6.8 14.2 12.7 29.2 21.4 41.7-5.7 13.5-43.6 25.4-43.1 1.2zm20.4-43zm-117.2 45.7c-6.8-10.9-19-32.5-14.5-45.3 6.5 11.9 8.6 24.4 17.8 33.3 4.1 4 12.2 9 8.2 20.2-.9 2.7-7.8 8.6-11.7 9.7-14.4 4.3-47.9.9-36.6-17.1 11.9.7 27.9 7.8 36.8-.8zm27.3 70c3.8 6.6 1.4 18.7 12.1 20.6 20.2 3.4 43.6-12.3 58.1-17.8 9-15.2-.8-20.7-8.9-30.5-16.6-20-38.8-44.8-38-74.7 6.7-4.9 7.3 7.4 8.2 9.7 8.7 20.3 30.4 46.2 46.3 63.5 3.9 4.3 10.3 8.4 11 11.2 2.1 8.2-5.4 18-4.5 23.5-21.7 13.9-45.8 29.1-81.4 25.6-7.4-6.7-10.3-21.4-2.9-31.1zm-201.3-9.2c-6.8-3.9-8.4-21-16.4-21.4-11.4-.7-9.3 22.2-9.3 35.5-7.8-7.1-9.2-29.1-3.5-40.3-6.6-3.2-9.5 3.6-13.1 5.9 4.7-34.1 49.8-15.8 42.3 20.3zm299.6 28.8c-10.1 19.2-24.4 40.4-54 41-.6-6.2-1.1-15.6 0-19.4 22.7-2.2 36.6-13.7 54-21.6zm-141.9 12.4c18.9 9.9 53.6 11 79.3 10.2 1.4 5.6 1.3 12.6 1.4 19.4-33 1.8-72-6.4-80.7-29.6zm92.2 46.7c-1.7 4.3-5.3 9.3-9.8 11.1-12.1 4.9-45.6 8.7-62.4-.3-10.7-5.7-17.5-18.5-23.4-26-2.8-3.6-16.9-12.9-.2-12.9 13.1 32.7 58 29 95.8 28.1z" ], + joget: [ 496, 512, [], "f3b7", "M227.5 468.7c-9-13.6-19.9-33.3-23.7-42.4-5.7-13.7-27.2-45.6 31.2-67.1 51.7-19.1 176.7-16.5 208.8-17.6-4 9-8.6 17.9-13.9 26.6-40.4 65.5-110.4 101.5-182 101.5-6.8 0-13.6-.4-20.4-1M66.1 143.9C128 43.4 259.6 12.2 360.1 74.1c74.8 46.1 111.2 130.9 99.3 212.7-24.9-.5-179.3-3.6-230.3-4.9-55.5-1.4-81.7-20.8-58.5-48.2 23.2-27.4 51.1-40.7 68.9-51.2 17.9-10.5 27.3-33.7-23.6-29.7C87.3 161.5 48.6 252.1 37.6 293c-8.8-49.7-.1-102.7 28.5-149.1m-29.2-18c-71.9 116.6-35.6 269.3 81 341.2 116.6 71.9 269.3 35.6 341.2-80.9 71.9-116.6 35.6-269.4-81-341.2-40.5-25.1-85.5-37-129.9-37C165 8 83.8 49.9 36.9 125.9m244.4 110.4c-31.5 20.5-65.3 31.3-65.3 31.3l169.5-1.6 46.5-23.4s3.6-9.5-19.1-15.5c-22.7-6-57 11.3-86.7 27.2-29.7 15.8-31.1 8.2-31.1 8.2s40.2-28.1 50.7-34.5c10.5-6.4 31.9-14 13.4-24.6-3.2-1.8-6.7-2.7-10.4-2.7-17.8 0-41.5 18.7-67.5 35.6" ], + joomla: [ 448, 512, [], "f1aa", "M.6 92.1C.6 58.8 27.4 32 60.4 32c30 0 54.5 21.9 59.2 50.2 32.6-7.6 67.1.6 96.5 30l-44.3 44.3c-20.5-20.5-42.6-16.3-55.4-3.5-14.3 14.3-14.3 37.9 0 52.2l99.5 99.5-44 44.3c-87.7-87.2-49.7-49.7-99.8-99.7-26.8-26.5-35-64.8-24.8-98.9C20.4 144.6.6 120.7.6 92.1zm129.5 116.4l44.3 44.3c10-10 89.7-89.7 99.7-99.8 14.3-14.3 37.6-14.3 51.9 0 12.8 12.8 17 35-3.5 55.4l44 44.3c31.2-31.2 38.5-67.6 28.9-101.2 29.2-4.1 51.9-29.2 51.9-59.5 0-33.2-26.8-60.1-59.8-60.1-30.3 0-55.4 22.5-59.5 51.6-33.8-9.9-71.7-1.5-98.3 25.1-18.3 19.1-71.1 71.5-99.6 99.9zm266.3 152.2c8.2-32.7-.9-68.5-26.3-93.9-11.8-12.2 5 4.7-99.5-99.7l-44.3 44.3 99.7 99.7c14.3 14.3 14.3 37.6 0 51.9-12.8 12.8-35 17-55.4-3.5l-44 44.3c27.6 30.2 68 38.8 102.7 28 5.5 27.4 29.7 48.1 58.9 48.1 33 0 59.8-26.8 59.8-60.1 0-30.2-22.5-55-51.6-59.1zm-84.3-53.1l-44-44.3c-87 86.4-50.4 50.4-99.7 99.8-14.3 14.3-37.6 14.3-51.9 0-13.1-13.4-16.9-35.3 3.2-55.4l-44-44.3c-30.2 30.2-38 65.2-29.5 98.3-26.7 6-46.2 29.9-46.2 58.2C0 453.2 26.8 480 59.8 480c28.6 0 52.5-19.8 58.6-46.7 32.7 8.2 68.5-.6 94.2-26 32.1-32 12.2-12.4 99.5-99.7z" ], + js: [ 448, 512, [], "f3b8", "M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z" ], + "js-square": [ 448, 512, [], "f3b9", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM243.8 381.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z" ], + jsfiddle: [ 576, 512, [], "f1cc", "M510.634 237.462c-4.727-2.621-5.664-5.748-6.381-10.776-2.352-16.488-3.539-33.619-9.097-49.095-35.895-99.957-153.99-143.386-246.849-91.646-27.37 15.25-48.971 36.369-65.493 63.903-3.184-1.508-5.458-2.71-7.824-3.686-30.102-12.421-59.049-10.121-85.331 9.167-25.531 18.737-36.422 44.548-32.676 76.408.355 3.025-1.967 7.621-4.514 9.545-39.712 29.992-56.031 78.065-41.902 124.615 13.831 45.569 57.514 79.796 105.608 81.433 30.291 1.031 60.637.546 90.959.539 84.041-.021 168.09.531 252.12-.48 52.664-.634 96.108-36.873 108.212-87.293 11.54-48.074-11.144-97.3-56.832-122.634zm21.107 156.88c-18.23 22.432-42.343 35.253-71.28 35.65-56.874.781-113.767.23-170.652.23 0 .7-163.028.159-163.728.154-43.861-.332-76.739-19.766-95.175-59.995-18.902-41.245-4.004-90.848 34.186-116.106 9.182-6.073 12.505-11.566 10.096-23.136-5.49-26.361 4.453-47.956 26.42-62.981 22.987-15.723 47.422-16.146 72.034-3.083 10.269 5.45 14.607 11.564 22.198-2.527 14.222-26.399 34.557-46.727 60.671-61.294 97.46-54.366 228.37 7.568 230.24 132.697.122 8.15 2.412 12.428 9.848 15.894 57.56 26.829 74.456 96.122 35.142 144.497zm-87.789-80.499c-5.848 31.157-34.622 55.096-66.666 55.095-16.953-.001-32.058-6.545-44.079-17.705-27.697-25.713-71.141-74.98-95.937-93.387-20.056-14.888-41.99-12.333-60.272 3.782-49.996 44.071 15.859 121.775 67.063 77.188 4.548-3.96 7.84-9.543 12.744-12.844 8.184-5.509 20.766-.884 13.168 10.622-17.358 26.284-49.33 38.197-78.863 29.301-28.897-8.704-48.84-35.968-48.626-70.179 1.225-22.485 12.364-43.06 35.414-55.965 22.575-12.638 46.369-13.146 66.991 2.474C295.68 280.7 320.467 323.97 352.185 343.47c24.558 15.099 54.254 7.363 68.823-17.506 28.83-49.209-34.592-105.016-78.868-63.46-3.989 3.744-6.917 8.932-11.41 11.72-10.975 6.811-17.333-4.113-12.809-10.353 20.703-28.554 50.464-40.44 83.271-28.214 31.429 11.714 49.108 44.366 42.76 78.186z" ], + keybase: [ 412, 512, [], "f4f5", "M177.2 430.9c0 9.8-8 17.8-17.8 17.8s-17.8-8-17.8-17.8 8-17.8 17.8-17.8c9.8-.1 17.8 7.9 17.8 17.8zM270 413c-9.8 0-17.8 8-17.8 17.8s8 17.8 17.8 17.8 17.8-8 17.8-17.8-8-17.8-17.8-17.8zm142.3-36c0 38.9-7.6 73.9-22.2 103h-27.3c23.5-38.7 30.5-94.8 22.4-134.3-16.1 29.5-52.1 38.6-85.9 28.8-127.8-37.5-192.5 19.7-234.6 50.3l18.9-59.3-39.9 42.3c4.8 26.7 15.7 51.3 31.2 72.3H46.1c-9.7-15.8-17.2-33-22.2-51.3L.1 454c0-74.9-5.5-147.6 61.5-215.2 20.2-20.4 43.7-36.2 69.1-46.7-6.8-13.5-9.5-29.2-7.8-46l-19.9-1.2c-17.9-1.1-31.6-16.5-30.6-34.4v-.1L74 84.2c1.1-17.1 15.4-30.6 32.5-30.6 1.3 0-.3-.1 28.2 1.7 13.9.8 21.5 9.8 22.8 11.4 7.1-10.4 14.5-20.5 24.6-34.5l20.6 12.1c-13.6 29-9.1 36.2-9 36.3 3.9 0 13.9-.5 32.4 5.7C246 92.9 262 107 271 126c.4.9 15.5 29 1.2 62.6 19 6.1 51.3 19.9 82.4 51.8 36.6 37.6 57.7 87.4 57.7 136.6zM128 122.3c3.2-10 7.7-19.7 13.1-29.4.1-2 2.2-13.1-7.8-13.8-28.5-1.8-26.3-1.6-26.7-1.6-4.6 0-8.3 3.5-8.6 8.1l-1.6 26.2c-.3 4.7 3.4 8.8 8.1 9.1l23.5 1.4zm25.8 61.8c5.6 9.4 14.1 16.1 22.3 20 0-21.2 28.5-41.9 52.8-17.5l8.4 10.3c20.8-18.8 19.4-45.3 12.1-60.9-13.8-29.1-46.9-32-54.3-31.7-10.3.4-19.7-5.4-23.7-15.3-13.7 21.2-37.2 62.5-17.6 95.1zm82.9 68.4L217 268.6c-1.9 1.6-2.2 4.4-.6 6.3l8.9 10.9c1 1.2 3.8 2.7 6.3.6l19.6-16 5.5 6.8c4.9 6 13.8-1.4 9-7.3-63.6-78.3-41.5-51.1-55.3-68.1-4.7-6-13.9 1.4-9 7.3 1.9 2.3 18.4 22.6 19.8 24.3l-9.6 7.9c-4.6 3.8 2.6 13.3 7.4 9.4l9.7-8 8 9.8zm118.4 25.7c-16.9-23.7-42.6-46.7-73.4-60.4-7.9-3.5-15-6.1-22.9-8.6-2 2.2-4.1 4.3-6.4 6.2l31.9 39.2c10.4 12.7 8.5 31.5-4.2 41.9-1.3 1.1-13.1 10.7-29 4.9-2.9 2.3-10.1 9.9-22.2 9.9-8.6 0-16.6-3.8-22.1-10.5l-8.9-10.9c-6.3-7.8-7.9-17.9-5-26.8-8.2-9.9-8.3-21.3-4.6-30-7.2-1.3-26.7-6.2-42.7-21.4-55.8 20.7-88 64.4-101.3 91.2-14.9 30.2-18.8 60.9-19.9 90.2 8.2-8.7-3.9 4.1 114-120.9l-29.9 93.6c57.8-31.1 124-36 197.4-14.4 23.6 6.9 45.1 1.6 56-13.9 11.1-15.6 8.5-37.7-6.8-59.3zM110.6 107.3l15.6 1 1-15.6-15.6-1-1 15.6z" ], + keycdn: [ 512, 512, [], "f3ba", "M63.8 409.3l60.5-59c32.1 42.8 71.1 66 126.6 67.4 30.5.7 60.3-7 86.4-22.4 5.1 5.3 18.5 19.5 20.9 22-32.2 20.7-69.6 31.1-108.1 30.2-43.3-1.1-84.6-16.7-117.7-44.4.3-.6-38.2 37.5-38.6 37.9 9.5 29.8-13.1 62.4-46.3 62.4C20.7 503.3 0 481.7 0 454.9c0-34.3 33.1-56.6 63.8-45.6zm354.9-252.4c19.1 31.3 29.6 67.4 28.7 104-1.1 44.8-19 87.5-48.6 121 .3.3 23.8 25.2 24.1 25.5 9.6-1.3 19.2 2 25.9 9.1 11.3 12 10.9 30.9-1.1 42.4-12 11.3-30.9 10.9-42.4-1.1-6.7-7-9.4-16.8-7.6-26.3-24.9-26.6-44.4-47.2-44.4-47.2 42.7-34.1 63.3-79.6 64.4-124.2.7-28.9-7.2-57.2-21.1-82.2l22.1-21zM104 53.1c6.7 7 9.4 16.8 7.6 26.3l45.9 48.1c-4.7 3.8-13.3 10.4-22.8 21.3-25.4 28.5-39.6 64.8-40.7 102.9-.7 28.9 6.1 57.2 20 82.4l-22 21.5C72.7 324 63.1 287.9 64.2 250.9c1-44.6 18.3-87.6 47.5-121.1l-25.3-26.4c-9.6 1.3-19.2-2-25.9-9.1-11.3-12-10.9-30.9 1.1-42.4C73.5 40.7 92.2 41 104 53.1zM464.9 8c26 0 47.1 22.4 47.1 48.3S490.9 104 464.9 104c-6.3.1-14-1.1-15.9-1.8l-62.9 59.7c-32.7-43.6-76.7-65.9-126.9-67.2-30.5-.7-60.3 6.8-86.2 22.4l-21.1-22C184.1 74.3 221.5 64 260 64.9c43.3 1.1 84.6 16.7 117.7 44.6l41.1-38.6c-1.5-4.7-2.2-9.6-2.2-14.5C416.5 29.7 438.9 8 464.9 8zM256.7 113.4c5.5 0 10.9.4 16.4 1.1 78.1 9.8 133.4 81.1 123.8 159.1-9.8 78.1-81.1 133.4-159.1 123.8-78.1-9.8-133.4-81.1-123.8-159.2 9.3-72.4 70.1-124.6 142.7-124.8zm-59 119.4c.6 22.7 12.2 41.8 32.4 52.2l-11 51.7h73.7l-11-51.7c20.1-10.9 32.1-29 32.4-52.2-.4-32.8-25.8-57.5-58.3-58.3-32.1.8-57.3 24.8-58.2 58.3zM256 160" ], + kickstarter: [ 448, 512, [], "f3bb", "M400 480H48c-26.4 0-48-21.6-48-48V80c0-26.4 21.6-48 48-48h352c26.4 0 48 21.6 48 48v352c0 26.4-21.6 48-48 48zM199.6 178.5c0-30.7-17.6-45.1-39.7-45.1-25.8 0-40 19.8-40 44.5v154.8c0 25.8 13.7 45.6 40.5 45.6 21.5 0 39.2-14 39.2-45.6v-41.8l60.6 75.7c12.3 14.9 39 16.8 55.8 0 14.6-15.1 14.8-36.8 4-50.4l-49.1-62.8 40.5-58.7c9.4-13.5 9.5-34.5-5.6-49.1-16.4-15.9-44.6-17.3-61.4 7l-44.8 64.7v-38.8z" ], + "kickstarter-k": [ 384, 512, [], "f3bc", "M147.3 114.4c0-56.2-32.5-82.4-73.4-82.4C26.2 32 0 68.2 0 113.4v283c0 47.3 25.3 83.4 74.9 83.4 39.8 0 72.4-25.6 72.4-83.4v-76.5l112.1 138.3c22.7 27.2 72.1 30.7 103.2 0 27-27.6 27.3-67.4 7.4-92.2l-90.8-114.8 74.9-107.4c17.4-24.7 17.5-63.1-10.4-89.8-30.3-29-82.4-31.6-113.6 12.8L147.3 185v-70.6z" ], + korvue: [ 446, 512, [], "f42f", "M386.5 34h-327C26.8 34 0 60.8 0 93.5v327.1C0 453.2 26.8 480 59.5 480h327.1c33 0 59.5-26.8 59.5-59.5v-327C446 60.8 419.2 34 386.5 34zM87.1 120.8h96v116l61.8-116h110.9l-81.2 132H87.1v-132zm161.8 272.1l-65.7-113.6v113.6h-96V262.1h191.5l88.6 130.8H248.9z" ], + laravel: [ 640, 512, [], "f3bd", "M637.5 241.6c-4.2-4.8-62.8-78.1-73.1-90.5-10.3-12.4-15.4-10.2-21.7-9.3-6.4.9-80.5 13.4-89.1 14.8-8.6 1.5-14 4.9-8.7 12.3 4.7 6.6 53.4 75.7 64.2 90.9l-193.7 46.4L161.2 48.7c-6.1-9.1-7.4-12.3-21.4-11.6-14 .6-120.9 9.5-128.5 10.2-7.6.6-16 4-8.4 22s129 279.6 132.4 287.2c3.4 7.6 12.2 20 32.8 15 21.1-5.1 94.3-24.2 134.3-34.7 21.1 38.3 64.2 115.9 72.2 127 10.6 14.9 18 12.4 34.3 7.4 12.8-3.9 199.6-71.1 208-74.5 8.4-3.5 13.6-5.9 7.9-14.4-4.2-6.2-53.5-72.2-79.3-106.8 17.7-4.7 80.6-21.4 87.3-23.3 7.9-2 9-5.8 4.7-10.6zm-352.2 72c-2.3.5-110.8 26.5-116.6 27.8-5.8 1.3-5.8.7-6.5-1.3-.7-2-129-266.7-130.8-270-1.8-3.3-1.7-5.9 0-5.9s102.5-9 106-9.2c3.6-.2 3.2.6 4.5 2.8 0 0 142.2 245.4 144.6 249.7 2.6 4.3 1.1 5.6-1.2 6.1zm306 57.4c1.7 2.7 3.5 4.5-2 6.4-5.4 2-183.7 62.1-187.1 63.6-3.5 1.5-6.2 2-10.6-4.5s-62.4-106.8-62.4-106.8L518 280.6c4.7-1.5 6.2-2.5 9.2 2.2 2.9 4.8 62.4 85.5 64.1 88.2zm12.1-134.1c-4.2.9-73.6 18.1-73.6 18.1l-56.7-77.8c-1.6-2.3-2.9-4.5 1.1-5s68.4-12.2 71.3-12.8c2.9-.7 5.4-1.5 9 3.4 3.6 4.9 52.6 67 54.5 69.4 1.8 2.3-1.4 3.7-5.6 4.7z" ], + lastfm: [ 512, 512, [], "f202", "M225.8 367.1l-18.8-51s-30.5 34-76.2 34c-40.5 0-69.2-35.2-69.2-91.5 0-72.1 36.4-97.9 72.1-97.9 66.5 0 74.8 53.3 100.9 134.9 18.8 56.9 54 102.6 155.4 102.6 72.7 0 122-22.3 122-80.9 0-72.9-62.7-80.6-115-92.1-25.8-5.9-33.4-16.4-33.4-34 0-19.9 15.8-31.7 41.6-31.7 28.2 0 43.4 10.6 45.7 35.8l58.6-7c-4.7-52.8-41.1-74.5-100.9-74.5-52.8 0-104.4 19.9-104.4 83.9 0 39.9 19.4 65.1 68 76.8 44.9 10.6 79.8 13.8 79.8 45.7 0 21.7-21.1 30.5-61 30.5-59.2 0-83.9-31.1-97.9-73.9-32-96.8-43.6-163-161.3-163C45.7 113.8 0 168.3 0 261c0 89.1 45.7 137.2 127.9 137.2 66.2 0 97.9-31.1 97.9-31.1z" ], + "lastfm-square": [ 448, 512, [], "f203", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-92.2 312.9c-63.4 0-85.4-28.6-97.1-64.1-16.3-51-21.5-84.3-63-84.3-22.4 0-45.1 16.1-45.1 61.2 0 35.2 18 57.2 43.3 57.2 28.6 0 47.6-21.3 47.6-21.3l11.7 31.9s-19.8 19.4-61.2 19.4c-51.3 0-79.9-30.1-79.9-85.8 0-57.9 28.6-92 82.5-92 73.5 0 80.8 41.4 100.8 101.9 8.8 26.8 24.2 46.2 61.2 46.2 24.9 0 38.1-5.5 38.1-19.1 0-19.9-21.8-22-49.9-28.6-30.4-7.3-42.5-23.1-42.5-48 0-40 32.3-52.4 65.2-52.4 37.4 0 60.1 13.6 63 46.6l-36.7 4.4c-1.5-15.8-11-22.4-28.6-22.4-16.1 0-26 7.3-26 19.8 0 11 4.8 17.6 20.9 21.3 32.7 7.1 71.8 12 71.8 57.5.1 36.7-30.7 50.6-76.1 50.6z" ], + leanpub: [ 576, 512, [], "f212", "M386.539 111.485l15.096 248.955-10.979-.275c-36.232-.824-71.64 8.783-102.657 27.997-31.016-19.214-66.424-27.997-102.657-27.997-45.564 0-82.07 10.705-123.516 27.723L93.117 129.6c28.546-11.803 61.484-18.115 92.226-18.115 41.173 0 73.836 13.175 102.657 42.544 27.723-28.271 59.013-41.721 98.539-42.544zM569.07 448c-25.526 0-47.485-5.215-70.542-15.645-34.31-15.645-69.993-24.978-107.871-24.978-38.977 0-74.934 12.901-102.657 40.623-27.723-27.723-63.68-40.623-102.657-40.623-37.878 0-73.561 9.333-107.871 24.978C55.239 442.236 32.731 448 8.303 448H6.93L49.475 98.859C88.726 76.626 136.486 64 181.775 64 218.83 64 256.984 71.685 288 93.095 319.016 71.685 357.17 64 394.225 64c45.289 0 93.049 12.626 132.3 34.859L569.07 448zm-43.368-44.741l-34.036-280.246c-30.742-13.999-67.248-21.41-101.009-21.41-38.428 0-74.385 12.077-102.657 38.702-28.272-26.625-64.228-38.702-102.657-38.702-33.761 0-70.267 7.411-101.009 21.41L50.298 403.259c47.211-19.487 82.894-33.486 135.045-33.486 37.604 0 70.817 9.606 102.657 29.644 31.84-20.038 65.052-29.644 102.657-29.644 52.151 0 87.834 13.999 135.045 33.486z" ], + less: [ 640, 512, [], "f41d", "M612.7 219c0-20.5 3.2-32.6 3.2-54.6 0-34.2-12.6-45.2-40.5-45.2h-20.5v24.2h6.3c14.2 0 17.3 4.7 17.3 22.1 0 16.3-1.6 32.6-1.6 51.5 0 24.2 7.9 33.6 23.6 37.3v1.6c-15.8 3.7-23.6 13.1-23.6 37.3 0 18.9 1.6 34.2 1.6 51.5 0 17.9-3.7 22.6-17.3 22.6v.5h-6.3V393h20.5c27.8 0 40.5-11 40.5-45.2 0-22.6-3.2-34.2-3.2-54.6 0-11 6.8-22.6 27.3-23.6v-27.3c-20.5-.7-27.3-12.3-27.3-23.3zm-105.6 32c-15.8-6.3-30.5-10-30.5-20.5 0-7.9 6.3-12.6 17.9-12.6s22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-21 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51s-22.5-41-43-47.8zm-358.9 59.4c-3.7 0-8.4-3.2-8.4-13.1V119.1H65.2c-28.4 0-41 11-41 45.2 0 22.6 3.2 35.2 3.2 54.6 0 11-6.8 22.6-27.3 23.6v27.3c20.5.5 27.3 12.1 27.3 23.1 0 19.4-3.2 31-3.2 53.6 0 34.2 12.6 45.2 40.5 45.2h20.5v-24.2h-6.3c-13.1 0-17.3-5.3-17.3-22.6s1.6-32.1 1.6-51.5c0-24.2-7.9-33.6-23.6-37.3v-1.6c15.8-3.7 23.6-13.1 23.6-37.3 0-18.9-1.6-34.2-1.6-51.5s3.7-22.1 17.3-22.1H93v150.8c0 32.1 11 53.1 43.1 53.1 10 0 17.9-1.6 23.6-3.7l-5.3-34.2c-3.1.8-4.6.8-6.2.8zM379.9 251c-16.3-6.3-31-10-31-20.5 0-7.9 6.3-12.6 17.9-12.6 11.6 0 22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-20.5 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51 .1-28.9-22.5-41-43-47.8zm-155-68.8c-38.4 0-75.1 32.1-74.1 82.5 0 52 34.2 82.5 79.3 82.5 18.9 0 39.9-6.8 56.2-17.9l-15.8-27.8c-11.6 6.8-22.6 10-34.2 10-21 0-37.3-10-41.5-34.2H290c.5-3.7 1.6-11 1.6-19.4.6-42.6-22.6-75.7-66.7-75.7zm-30 66.2c3.2-21 15.8-31 30.5-31 18.9 0 26.3 13.1 26.3 31h-56.8z" ], + line: [ 448, 512, [], "f3c0", "M272.1 204.2v71.1c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.1 0-2.1-.6-2.6-1.3l-32.6-44v42.2c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.8 0-3.2-1.4-3.2-3.2v-71.1c0-1.8 1.4-3.2 3.2-3.2H219c1 0 2.1.5 2.6 1.4l32.6 44v-42.2c0-1.8 1.4-3.2 3.2-3.2h11.4c1.8-.1 3.3 1.4 3.3 3.1zm-82-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 1.8 1.4 3.2 3.2 3.2h11.4c1.8 0 3.2-1.4 3.2-3.2v-71.1c0-1.7-1.4-3.2-3.2-3.2zm-27.5 59.6h-31.1v-56.4c0-1.8-1.4-3.2-3.2-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 .9.3 1.6.9 2.2.6.5 1.3.9 2.2.9h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.7-1.4-3.2-3.1-3.2zM332.1 201h-45.7c-1.7 0-3.2 1.4-3.2 3.2v71.1c0 1.7 1.4 3.2 3.2 3.2h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2V234c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2v-11.4c-.1-1.7-1.5-3.2-3.2-3.2zM448 113.7V399c-.1 44.8-36.8 81.1-81.7 81H81c-44.8-.1-81.1-36.9-81-81.7V113c.1-44.8 36.9-81.1 81.7-81H367c44.8.1 81.1 36.8 81 81.7zm-61.6 122.6c0-73-73.2-132.4-163.1-132.4-89.9 0-163.1 59.4-163.1 132.4 0 65.4 58 120.2 136.4 130.6 19.1 4.1 16.9 11.1 12.6 36.8-.7 4.1-3.3 16.1 14.1 8.8 17.4-7.3 93.9-55.3 128.2-94.7 23.6-26 34.9-52.3 34.9-81.5z" ], + linkedin: [ 448, 512, [], "f08c", "M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z" ], + "linkedin-in": [ 448, 512, [], "f0e1", "M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z" ], + linode: [ 448, 512, [], "f2b8", "M437.4 226.3c-.3-.9-.9-1.4-1.4-2l-70-38.6c-.9-.6-2-.6-3.1 0l-58.9 36c-.9.6-1.4 1.7-1.4 2.6l-.9 31.4-24-16c-.9-.6-2.3-.6-3.1 0L240 260.9l-1.4-35.1c0-.9-.6-2-1.4-2.3l-36-24.3 33.7-17.4c1.1-.6 1.7-1.7 1.7-2.9l-5.7-132.3c0-.9-.9-2-1.7-2.6L138.6.3c-.9-.3-1.7-.3-2.3-.3L12.6 38.6c-1.4.6-2.3 2-2 3.7L38 175.4c.9 3.4 34 27.4 38.6 30.9l-26.9 12.9c-1.4.9-2 2.3-1.7 3.4l20.6 100.3c.6 2.9 23.7 23.1 27.1 26.3l-17.4 10.6c-.9.6-1.7 2-1.4 3.1 1.4 7.1 15.4 77.7 16.9 79.1l65.1 69.1c.6.6 1.4.6 2.3.9.6 0 1.1-.3 1.7-.6l83.7-66.9c.9-.6 1.1-1.4 1.1-2.3l-2-46 28 23.7c1.1.9 2.9.9 4 0l66.9-53.4c.9-.6 1.1-1.4 1.1-2.3l2.3-33.4 20.3 14c1.1.9 2.6.9 3.7 0l54.6-43.7c.6-.3 1.1-1.1 1.1-2 .9-6.5 10.3-70.8 9.7-72.8zm-204.8 4.8l4 92.6-90.6 61.2-14-96.6 100.6-57.2zm-7.7-180l5.4 126-106.6 55.4L104 97.7l120.9-46.6zM44 173.1L18 48l79.7 49.4 19.4 132.9L44 173.1zm30.6 147.8L55.7 230l70 58.3 13.7 93.4-64.8-60.8zm24.3 117.7l-13.7-67.1 61.7 60.9 9.7 67.4-57.7-61.2zm64.5 64.5l-10.6-70.9 85.7-61.4 3.1 70-78.2 62.3zm82-115.1c0-3.4.9-22.9-2-25.1l-24.3-20 22.3-14.9c2.3-1.7 1.1-5.7 1.1-8l29.4 22.6.6 68.3-27.1-22.9zm94.3-25.4l-60.9 48.6-.6-68.6 65.7-46.9-4.2 66.9zm27.7-25.7l-19.1-13.4 2-34c.3-.9-.3-2-1.1-2.6L308 259.7l.6-30 64.6 40.6-5.8 66.6zm54.6-39.8l-48.3 38.3 5.7-65.1 51.1-36.6-8.5 63.4z" ], + linux: [ 448, 512, [], "f17c", "M196.1 123.6c-.2-1.4 1.9-2.3 3.2-2.9 1.7-.7 3.9-1 5.5-.1.4.2.8.7.6 1.1-.4 1.2-2.4 1-3.5 1.6-1 .5-1.8 1.7-3 1.7-1 .1-2.7-.4-2.8-1.4zm24.7-.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm214.7 310.2c-.5 8.2-6.5 13.8-13.9 18.3-14.9 9-37.3 15.8-50.9 32.2l-2.6-2.2 2.6 2.2c-14.2 16.9-31.7 26.6-48.3 27.9-16.5 1.3-32-6.3-40.3-23v-.1c-1.1-2.1-1.9-4.4-2.5-6.7-21.5 1.2-40.2-5.3-55.1-4.1-22 1.2-35.8 6.5-48.3 6.6-4.8 10.6-14.3 17.6-25.9 20.2-16 3.7-36.1 0-55.9-10.4l1.6-3-1.6 3c-18.5-9.8-42-8.9-59.3-12.5-8.7-1.8-16.3-5-20.1-12.3-3.7-7.3-3-17.3 2.2-31.7 1.7-5.1.4-12.7-.8-20.8-.6-3.9-1.2-7.9-1.2-11.8 0-4.3.7-8.5 2.8-12.4 4.5-8.5 11.8-12.1 18.5-14.5 6.7-2.4 12.8-4 17-8.3 5.2-5.5 10.1-14.4 16.6-20.2-2.6-17.2.2-35.4 6.2-53.3 12.6-37.9 39.2-74.2 58.1-96.7 16.1-22.9 20.8-41.3 22.5-64.7C158 103.4 132.4-.2 234.8 0c80.9.1 76.3 85.4 75.8 131.3-.3 30.1 16.3 50.5 33.4 72 15.2 18 35.1 44.3 46.5 74.4 9.3 24.6 12.9 51.8 3.7 79.1 1.4.5 2.8 1.2 4.1 2 1.4.8 2.7 1.8 4 2.9 6.6 5.6 8.7 14.3 10.5 22.4 1.9 8.1 3.6 15.7 7.2 19.7 11.1 12.4 15.9 21.5 15.5 29.7zM220.8 109.1c3.6.9 8.9 2.4 13 4.4-2.1-12.2 4.5-23.5 11.8-23 8.9.3 13.9 15.5 9.1 27.3-.8 1.9-2.8 3.4-3.9 4.6 6.7 2.3 11 4.1 12.6 4.9 7.9-9.5 10.8-26.2 4.3-40.4-9.8-21.4-34.2-21.8-44 .4-3.2 7.2-3.9 14.9-2.9 21.8zm-46.2 18.8c7.8-5.7 6.9-4.7 5.9-5.5-8-6.9-6.6-27.4 1.8-28.1 6.3-.5 10.8 10.7 9.6 19.6 3.1-2.1 6.7-3.6 10.2-4.6 1.7-19.3-9-33.5-19.1-33.5-18.9 0-24 37.5-8.4 52.1zm-9.4 20.9c1.5 4.9 6.1 10.5 14.7 15.3 7.8 4.6 12 11.5 20 15 2.6 1.1 5.7 1.9 9.6 2.1 18.4 1.1 27.1-11.3 38.2-14.9 11.7-3.7 20.1-11 22.7-18.1 3.2-8.5-2.1-14.7-10.5-18.2-11.3-4.9-16.3-5.2-22.6-9.3-10.3-6.6-18.8-8.9-25.9-8.9-14.4 0-23.2 9.8-27.9 14.2-.5.5-7.9 5.9-14.1 10.5-4.2 3.3-5.6 7.4-4.2 12.3zm-33.5 252.8L112.1 366c-6.8-9.2-13.8-14.8-21.9-16-7.7-1.2-12.6 1.4-17.7 6.9-4.8 5.1-8.8 12.3-14.3 18-7.8 6.5-9.3 6.2-19.6 9.9-6.3 2.2-11.3 4.6-14.8 11.3-2.7 5-2.1 12.2-.9 20 1.2 7.9 3 16.3.6 23.9v.2c-5 13.7-5 21.7-2.6 26.4 7.9 15.4 46.6 6.1 76.5 21.9 31.4 16.4 72.6 17.1 75.3-18 2.1-20.5-31.5-49-41-68.9zm153.9 35.8c3.2-11 6.3-21.3 6.8-29 .8-15.2 1.6-28.7 4.4-39.9 3.1-12.6 9.3-23.1 21.4-27.3 2.3-21.1 18.7-21.1 38.3-12.5 18.9 8.5 26 16 22.8 26.1 1 0 2-.1 4.2 0 5.2-16.9-14.3-28-30.7-34.8 2.9-12 2.4-24.1-.4-35.7-6-25.3-22.6-47.8-35.2-59-2.3-.1-2.1 1.9 2.6 6.5 11.6 10.7 37.1 49.2 23.3 84.9-3.9-1-7.6-1.5-10.9-1.4-5.3-29.1-17.5-53.2-23.6-64.6-11.5-21.4-29.5-65.3-37.2-95.7-4.5 6.4-12.4 11.9-22.3 15-4.7 1.5-9.7 5.5-15.9 9-13.9 8-30 8.8-42.4-1.2-4.5-3.6-8-7.6-12.6-10.3-1.6-.9-5.1-3.3-6.2-4.1-2 37.8-27.3 85.3-39.3 112.7-8.3 19.7-13.2 40.8-13.8 61.5-21.8-29.1-5.9-66.3 2.6-82.4 9.5-17.6 11-22.5 8.7-20.8-8.6 14-22 36.3-27.2 59.2-2.7 11.9-3.2 24 .3 35.2 3.5 11.2 11.1 21.5 24.6 29.9 0 0 24.8 14.3 38.3 32.5 7.4 10 9.7 18.7 7.4 24.9-2.5 6.7-9.6 8.9-16.7 8.9 4.8 6 10.3 13 14.4 19.6 37.6 25.7 82.2 15.7 114.3-7.2zM415 408.5c-10-11.3-7.2-33.1-17.1-41.6-6.9-6-13.6-5.4-22.6-5.1-7.7 8.8-25.8 19.6-38.4 16.3-11.5-2.9-18-16.3-18.8-29.5-.3.2-.7.3-1 .5-7.1 3.9-11.1 10.8-13.7 21.1-2.5 10.2-3.4 23.5-4.2 38.7-.7 11.8-6.2 26.4-9.9 40.6-3.5 13.2-5.8 25.2-1.1 36.3 7.2 14.5 19.5 20.4 33.7 19.3 14.2-1.1 30.4-9.8 43.6-25.5 22-26.6 62.3-29.7 63.2-46.5.3-5.1-3.1-13-13.7-24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4 3.9-3.4 5.9-6.3 3.1-6.6-2.8-.3-2.6 2.6-6 5.1-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2-10.4 0-18.7-4.8-24.9-9.7-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z" ], + lyft: [ 512, 512, [], "f3c3", "M0 81.1h77.8v208.7c0 33.1 15 52.8 27.2 61-12.7 11.1-51.2 20.9-80.2-2.8C7.8 334 0 310.7 0 289V81.1zm485.9 173.5v-22h23.8v-76.8h-26.1c-10.1-46.3-51.2-80.7-100.3-80.7-56.6 0-102.7 46-102.7 102.7V357c16 2.3 35.4-.3 51.7-14 17.1-14 24.8-37.2 24.8-59v-6.7h38.8v-76.8h-38.8v-23.3c0-34.6 52.2-34.6 52.2 0v77.1c0 56.6 46 102.7 102.7 102.7v-76.5c-14.5 0-26.1-11.7-26.1-25.9zm-294.3-99v113c0 15.4-23.8 15.4-23.8 0v-113H91v132.7c0 23.8 8 54 45 63.9 37 9.8 58.2-10.6 58.2-10.6-2.1 13.4-14.5 23.3-34.9 25.3-15.5 1.6-35.2-3.6-45-7.8v70.3c25.1 7.5 51.5 9.8 77.6 4.7 47.1-9.1 76.8-48.4 76.8-100.8V155.1h-77.1v.5z" ], + magento: [ 448, 512, [], "f3c4", "M445.7 127.9V384l-63.4 36.5V164.7L223.8 73.1 65.2 164.7l.4 255.9L2.3 384V128.1L224.2 0l221.5 127.9zM255.6 420.5L224 438.9l-31.8-18.2v-256l-63.3 36.6.1 255.9 94.9 54.9 95.1-54.9v-256l-63.4-36.6v255.9z" ], + mailchimp: [ 428, 512, [], "f59e", "M426.56 323.72c-3.09-6.59-8.97-11.13-16.35-12.88-2.47-11.27-5.88-16.8-6.19-17.63 1.3-1.48 2.56-2.97 2.84-3.32 10.42-12.93 3.62-31.86-14.19-36.33-10.02-9.64-19.09-14.17-26.54-17.9-7.14-3.57-4.29-2.17-10.99-5.19-1.78-8.71-2.37-28.97-5.2-43.19-2.54-12.79-7.66-22.06-15.56-28.15-3.16-6.84-7.59-13.74-12.93-18.81 24.84-38.08 31.38-75.69 13.19-95.39-8.1-8.77-20.13-12.93-34.52-12.93-20.26 0-45.18 8.26-70.34 23.54 0 0-16.38-13.18-16.73-13.46-70.08-55.19-268.28 188.7-198.32 242l18.06 13.8c-11.34 31.54 4.43 69.14 37.29 81.21 7.26 2.67 15.14 3.97 23.31 3.51 0 0 53.09 97.36 165.1 97.39 129.58.04 162.55-126.72 162.9-127.86 0 .01 10.5-15.51 5.17-28.41zM20.12 267.95c-14.2-23.96 10.51-73.19 28.09-101.17C91.66 97.63 163.98 43.06 196.82 50.85l9.03-3.46c.03.03 24.67 20.85 24.7 20.87 16.97-10.19 38.58-20.57 58.8-22.64-12.3 2.77-27.29 9.15-45.05 20.01-.43.25-42.02 28.32-67.43 53.52-13.85 13.73-69.45 80.41-69.4 80.35 10.16-19.23 16.86-28.67 32.94-48.9 9.1-11.44 18.81-22.57 28.74-32.84 4.61-4.77 9.28-9.36 13.95-13.71 3.21-2.99 6.44-5.87 9.65-8.62 1.48-1.27 2.96-2.5 4.43-3.71l.01-.01L164.6 64.8l1.72 12.06 23.69 20.87s-20.96 14.11-31.39 23.01c-41.79 35.66-82.8 90.4-98.06 143.69l.73-.03c-7.6 4.19-15.14 10.91-21.73 20.05-.16-.04-17.04-12.43-19.44-16.5zm69.11 100.09c-25.03 0-45.33-21.37-45.33-47.72 0-26.36 20.29-47.72 45.33-47.72 6.49 0 12.66 1.44 18.24 4.02 0 0 9.63 4.86 12.34 27.81 2.82-7.17 4.24-13.06 4.24-13.06 3.23 9.88 4.88 20.26 4.23 30.76 2.68-3.56 5.55-10.27 5.55-10.27 5 29.33-16.4 56.18-44.6 56.18zm55.8-168.53s19.49-37.06 62.33-61.57c-3.19-.51-10.99.48-12.36.64 7.78-6.69 22.24-11.16 32.23-13.19-2.92-1.86-9.89-2.33-13.34-2.42-1.02-.03-1.01-.02-2.22.03 9.4-5.25 26.82-8.34 42.65-5.55-1.99-2.64-6.5-4.57-9.67-5.51-.28-.08-1.52-.39-1.52-.39l1.19-.28c9.54-1.84 20.69.15 29.5 3.69-1-2.32-3.45-5.03-5.29-6.74-.19-.18-1.29-.97-1.29-.97 9.22 1.91 18.06 5.94 24.71 10.5-.9-1.75-3.14-4.69-4.69-6.29 8.81 2.52 18.71 8.81 22.95 17.82.1.2.37.94.4 1.03-16.7-12.84-65.44-9.2-114.24 22.42-22.33 14.48-38.71 30.32-51.34 46.78zm263.32 146.34c-.59 1.15-6.73 34.4-41.86 62.01-44.37 34.86-102.66 31.33-124.67 11.8-11.76-11-16.85-26.73-16.85-26.73s-1.33 8.87-1.56 12.35c-8.87-15.09-8.12-33.52-8.12-33.52s-4.73 8.83-6.9 13.77c-6.53-16.62-3.16-33.78-3.16-33.78l-5.16 7.7s-2.42-18.81 3.52-34.47c6.36-16.74 18.68-28.9 21.11-30.42-9.35-2.97-20.12-11.49-20.14-11.51 0 0 4.28.28 7.26-.4 0 0-18.9-13.54-22.22-34.26 2.74 3.38 8.49 7.21 8.49 7.21-1.86-5.42-2.99-17.49-1.25-29.36l.01-.01c3.58-22.68 22.27-37.45 43.44-37.27 22.54.2 37.65 4.93 56.55-12.5 4-3.69 7.19-6.87 12.81-8.11.59-.13 2.06-.75 5.07-.75 3.05 0 5.98.69 8.67 2.29 10.25 6.1 12.46 22.01 13.56 33.68 4.07 43.28 2.43 35.57 19.94 44.49 8.36 4.25 17.74 8.29 28.43 19.72.03.03.08.09.08.09h.13c9.01.22 13.65 7.31 9.5 12.47-30.23 36.1-72.46 53.39-119.51 54.84-1.94.05-6.32.15-6.34.15-19.01.58-25.19 25.16-13.27 39.95 7.54 9.35 22.03 12.42 33.97 12.46l.17-.06c51.45 1.04 103.14-35.37 112.07-55.44.06-.15.61-1.42.61-1.42-2.07 2.43-52.18 49.61-113.08 47.9 0 0-6.66-.14-12.93-1.6-8.27-1.92-14.55-5.56-16.95-13.8 5.05 1.01 11.45 1.66 18.87 1.66 43.96 0 75.63-19.98 72.33-20.25-.13 0-.26.03-.48.08-5.13 1.19-57.97 21.66-91.37 11.16.08-1.02.24-2.01.48-2.9 2.97-9.95 8.25-8.56 16.79-8.93 30.48-1.01 55.07-8.68 73.5-17.43 19.65-9.33 34.63-21.35 40.03-27.42 7 11.79 6.96 26.92 6.96 26.92s2.74-.96 6.38-.96c11.38.01 13.73 10.23 5.09 20.6zm-149.29 13.7c0-.05-.01-.1-.01-.15.01.05.01.1.01.15zm-.01-.21c-.01-.13-.01-.26-.02-.39-.02-.65-.03-1.33 0-2.02-.02.74-.02 1.42 0 2.02.01.13.01.27.02.39zm.12 1.46c0 .02 0 .04.01.06 0-.02 0-.04-.01-.06zm.02.12c.2 1.58.51 2.31.55 2.4-.23-.49-.42-1.34-.55-2.4zM193.96 59.68l2.87-8.83 4.88 17.72-6.03-1.95-1.72-6.94zm22.38 17.72l-3.62-12.59 9.97 8.36c-2.24 1.44-4.36 2.86-6.35 4.23zm42.71 281.94c-.01-.13-.01-.26-.02-.39.01.13.01.27.02.39zm-.01-.39c-.02-.65-.03-1.33 0-2.02-.03.75-.03 1.42 0 2.02zm.02.6c0-.05-.01-.1-.01-.15m.13 1.46c0-.02 0-.04-.01-.06m.02.12c.2 1.58.51 2.31.55 2.4-.23-.49-.42-1.34-.55-2.4zm52.1-138.61c-.07-3.36.47-8.92 3.63-9.95h.01c5.41-1.88 12.58 11.98 12.91 24.28-4.28-2.14-9.3-3.05-14.47-2.6-1.3-3.97-1.92-7.7-2.08-11.73zM205.38 85.27l-13.59-11.38 20.57 6.28c-2.65 1.88-5 3.6-6.98 5.1zm27.7 166.94c-3.41 1.3-5.83 2.31-7 2.14-1.89-.28-.06-3.75 4.08-7.11 8.33-6.64 19.76-8.7 29.53-5.07 4.28 1.57 9.08 4.72 11.6 8.39.95 1.39 1.21 2.44.82 2.88-.77.9-3.51-.31-7.55-1.89-10.35-3.86-17.98-4.45-31.48.66zm14.55 14.53c-2.31.94-3.81 1.66-4.42 1.17-.62-.48-.01-2.42 2.15-4.51 1.88-1.81 3.83-2.83 6.07-3.77.35-.15.72-.28 1.1-.38 1.04-.28 2.09-.63 3.23-.8 9.12-1.55 15.8 3.51 14.93 4.98-.39.69-2.08.53-4.6.36-5.23-.36-10.71-.27-18.46 2.95zM60.86 323.12zm24.3-25.78c-1.85.39-.81.17-2.64.68a7 7 0 0 0-.77.25c-.58.27-1.11.45-1.62.73-.43.24-4.07 1.86-7.03 5.48-3.99 4.95-5.44 11.43-5.19 17.67.24 6.06 2.02 9.41 2.35 10.23 1.38 2.96-1.85 3.57-4.79.39l-.01-.01c-2.35-2.49-3.86-6.29-4.6-9.66-2.98-13.95 3.24-27.97 17.61-33.57.8-.32 1.74-.51 2.5-.73h-.01c1.47-.44 6.72-1.5 12.07-.67 5.87.91 11.04 3.85 14.33 7.67l.01.01c2.53 2.87 4.43 6.92 4.09 10.53v.01c-.13 1.5-.79 3.65-2.14 4.21-.5.21-1.01.1-1.36-.25-.98-.96-.22-2.93-2.6-6.3-3.17-4.47-10.31-8.76-20.2-6.67zm30.28 31.17c1.88 10.82-6 20.5-15.52 20.7-6.67.15-10.31-4.02-9.66-4.93.3-.43 1.32-.24 2.88-.01 8.5 1.32 13.66-3.86 14.9-9.29.02-.09.35-1.54.34-2.54.07-.88-.03-1.76-.16-2.56-1-5.62-7.45-6.68-11.6-11.15-3.72-4.04-2.99-9.22-.65-11.71 2.81-2.77 6.83-1.76 6.78-.78 0 .52-.97.91-2.17 1.74-1.56 1.1-1.77 2.16-1.37 3.98.26 1 .71 1.65 1.68 2.42 3.48 2.76 12.85 4.7 14.55 14.13zm212.87-81.47c2.58.4 4.22 3.59 3.67 7.13-.55 3.54-3.09 6.08-5.67 5.67-2.58-.4-4.22-3.59-3.67-7.13.56-3.53 3.09-6.07 5.67-5.67zm-28.33 10.31c1.42-2.59 5.44-3.11 8.99-1.16 3.55 1.94 5.27 5.62 3.86 8.2-1.42 2.59-5.44 3.11-8.99 1.16-3.55-1.94-5.28-5.61-3.86-8.2z" ], + mandalorian: [ 390, 512, [], "f50f", "M203.28 511.89c-.98-3.26-1.69-15.83-1.39-24.58.55-15.89.98-24.72 1.4-28.76.64-6.2 2.87-20.72 3.28-21.38.6-.96.4-27.87-.24-33.13-.31-2.58-.63-11.9-.69-20.73-.13-16.47-.53-20.12-2.73-24.76-1.1-2.32-1.23-3.84-.99-11.43.16-4.81 0-10.53-.34-12.71-2.05-12.97-3.46-27.7-3.25-33.9.21-6.12.43-7.15 2.06-9.67 3.05-4.71 6.51-14.04 8.62-23.27 2.26-9.86 3.88-17.18 4.59-20.74.89-4.42 2.43-9.72 4.36-15.05 2.27-6.25 2.49-15.39.37-15.39-.3 0-1.38 1.22-2.41 2.71-1.03 1.49-4.76 4.8-8.29 7.36-8.37 6.08-11.7 9.39-12.66 12.58-.93 3.11-1.02 7.23-.16 7.76.34.21 1.29 2.4 2.11 4.88 1.62 4.88 1.87 10.12.72 15.36-.39 1.77-1.05 5.47-1.46 8.23-.41 2.76-.98 6.46-1.25 8.22-.28 1.76-.97 3.68-1.55 4.26-.96.96-1.14.91-2.05-.53-.55-.87-1.2-3.01-1.44-4.75-.25-1.74-1.63-7.11-3.08-11.93-3.28-10.9-3.52-16.15-.96-20.96.92-1.73 1.67-3.81 1.67-4.61 0-2.39-2.2-5.32-7.41-9.89-7.05-6.18-8.63-7.92-10.23-11.3-1.71-3.6-3.06-4.06-4.54-1.54-1.78 3.01-2.6 9.11-2.97 22.02l-.35 12.13 1.95 2.25c3.21 3.7 12.07 16.45 13.78 19.83 3.41 6.74 4.34 11.69 4.41 23.56.07 11.84.95 22.75 2 24.71.36.66.51 1.35.34 1.52-.17.17.41 2.09 1.29 4.27.88 2.18 1.81 6.22 2.06 8.98.25 2.76 1.02 7.43 1.71 10.37 2.23 9.56 2.77 14.08 2.39 20.14-.2 3.27-.53 11.07-.73 17.32-1.31 41.76-1.85 57.98-2.04 61.21-.12 2.02-.39 11.51-.6 21.07-.36 16.3-1.3 27.37-2.42 28.65-.64.73-8.07-4.91-12.52-9.49-3.75-3.87-4.02-4.79-2.83-9.95.7-3.01 2.26-18.29 3.33-32.62.36-4.78.81-10.5 1.01-12.71.83-9.37 1.66-20.35 2.61-34.78.56-8.46 1.33-16.44 1.72-17.73.38-1.29.89-9.89 1.13-19.11l.43-16.77-2.26-4.3c-1.72-3.28-4.87-6.94-13.22-15.34-6.03-6.07-11.84-12.3-12.91-13.85l-1.95-2.81.75-10.9c1.09-15.71 1.1-48.57.02-59.06l-.89-8.7-3.28-4.52c-5.86-8.08-5.8-7.75-6.22-33.27-.1-6.07-.38-11.5-.63-12.06-.83-1.87-3.05-2.66-8.54-3.05-8.86-.62-10.96-1.9-23.85-14.55-6.15-6.04-12.34-11.97-13.75-13.19-2.81-2.42-2.79-1.99-.56-9.63l1.35-4.65-1.69-3.04c-.93-1.67-2.09-3.51-2.59-4.07-1.33-1.51-5.5-10.89-5.99-13.49-.31-1.66-.09-2.67.87-3.9 2.23-2.86 3.4-5.68 4.45-10.73 2.33-11.19 7.74-26.09 10.6-29.22 3.18-3.47 7.7-1.05 9.41 5.03 1.34 4.79 1.37 9.79.1 18.55-.53 3.68-.98 8.68-.99 11.11-.02 4.01.19 4.69 2.25 7.39 3.33 4.37 7.73 7.41 15.2 10.52 1.7.71 3.82 1.99 4.72 2.85 11.17 10.72 18.62 16.18 22.95 16.85 5.18.8 7.98 4.54 10.04 13.39 1.31 5.65 4 11.14 5.46 11.14.59 0 2.09-.63 3.33-1.39 1.98-1.22 2.25-1.73 2.25-4.18-.01-3.71-1.17-14.08-2-17.84-.37-1.66-.78-4.06-.93-5.35-.14-1.29-.61-3.85-1.03-5.69-2.55-11.16-3.65-15.46-4.1-16.05-1.55-2.02-4.08-10.2-4.93-15.92-1.64-11.11-3.96-14.23-12.91-17.39-4.64-1.64-8.89-4.12-13.32-7.78-1.15-.95-4.01-3.22-6.35-5.06-2.35-1.83-4.41-3.53-4.6-3.76-.18-.23-1.39-1.14-2.69-2.02-6.24-4.22-8.84-6.98-11.26-11.96l-2.44-5.02-.22-12.98-.22-12.98 6.91-6.55c3.95-3.75 8.48-7.35 10.59-8.43 3.31-1.69 4.45-1.89 11.37-2.05 8.53-.19 10.12.02 11.66 1.56 1.53 1.53 1.36 6.4-.29 8.5-.74.94-1.34 1.98-1.34 2.32 0 .58-2.61 4.91-5.42 8.99-.68.99-2.13 5.35-2.37 6.82 20.44 13.39 21.55 3.77 14.07 28.98l11.4 2.54c3.11-8.66 6.47-17.26 8.61-26.22.29-7.63-11.98-4.19-15.4-8.68-2.33-5.93 3.13-14.18 6.06-19.2 1.6-2.34 6.62-4.7 8.82-4.15.88.22 4.16-.35 7.37-1.28 3.18-.92 6.58-1.68 7.55-1.68.97 0 3.66-.58 5.98-1.29 3.65-1.11 4.5-1.17 6.35-.4 1.17.48 3.79 1.09 5.82 1.36 2.02.26 4.72 1.12 6 1.91 1.28.79 3.53 1.77 5.02 2.17 2.51.68 3 .57 7.05-1.67l4.35-2.4 10.7-.41c10.44-.4 10.81-.47 15.26-2.68l4.58-2.3 2.46 1.43c1.76 1.02 3.14 2.73 4.85 5.98 2.36 4.51 2.38 4.58 1.37 7.37-.88 2.44-.89 3.3-.1 6.39.5 1.96 1.45 4.62 2.1 5.91.65 1.29 1.24 3.09 1.31 4.01.31 4.33-.03 5.3-2.41 6.92-2.17 1.47-6.98 7.91-6.98 9.34 0 .32-.48 1.69-1.07 3.03-5.04 11.51-6.76 13.56-14.26 16.98-9.2 4.2-12.3 5.19-16.21 5.19-3.1 0-4 .25-4.54 1.26-.37.69-2.21 2.37-4.09 3.71-2.04 1.47-3.8 3.38-4.38 4.78-.54 1.28-1.66 2.59-2.49 2.91-.83.32-1.94 1.08-2.45 1.71-.52.62-3.66 3.04-7 5.38-3.33 2.34-6.87 5.02-7.87 5.96-1 .94-2.07 1.71-2.39 1.71s-1.28.74-2.13 1.65c-1.31 1.39-1.49 2.11-1.14 4.6.22 1.63.86 4.27 1.42 5.88 1.32 3.8 1.31 7.86-.05 10.57-1.43 2.86-.89 6.65 1.35 9.59 2.01 2.63 2.16 4.56.71 8.84-.61 1.8-1.05 5.45-1.06 8.91-.02 4.88.22 6.28 1.46 8.38 1.2 2.04 1.82 2.48 3.24 2.32 1.98-.23 2.3-1.05 4.71-12.12 2.18-10.03 3.71-11.92 13.76-17.08 2.94-1.51 7.46-3.96 10.03-5.44 2.58-1.48 6.79-3.69 9.37-4.91 6.67-3.16 11.05-6.52 15.22-11.67 7.11-8.79 9.98-16.22 12.85-33.3.55-3.28 1.43-5.65 2.86-7.73 1.29-1.87 2.37-4.62 2.89-7.31 1.02-5.3 2.85-9.08 5.58-11.51 4.7-4.18 6-1.09 4.59 10.87-.46 3.86-1.1 10.33-1.44 14.38l-.61 7.36 4.45 4.09 4.45 4.09.11 8.42c.06 4.63.47 9.53.92 10.89l.82 2.47-6.43 6.28c-8.54 8.33-12.88 13.93-16.76 21.61-1.77 3.49-3.74 7.11-4.38 8.03-2.18 3.11-6.46 13.01-8.76 20.26l-2.29 7.22-6.97 6.49c-3.83 3.57-7.96 7.25-9.17 8.17-3.05 2.32-4.26 5.15-4.26 9.99 0 2.98.43 4.96 1.59 7.26.87 1.74 1.81 3.91 2.09 4.83.28.92.98 2.22 1.57 2.89 1.4 1.59 1.92 16.12.83 23.22-.68 4.48-3.63 12.02-4.7 12.02-1.79 0-4.06 9.27-5.07 20.74-.18 2.02-.62 5.94-.98 8.7-.36 2.76-.96 9.98-1.35 16.05-.77 12.22-.19 18.77 2.05 23.15 3.41 6.69.52 12.69-11.03 22.84l-3.97 3.49.07 5.19c.04 2.86.55 6.85 1.14 8.87 4.61 15.98 4.73 16.92 4.38 37.13-.46 26.4-.26 40.27.63 44.15.42 1.84.91 5 1.08 7.02.17 2.02.66 5.33 1.08 7.36.47 2.26.78 11.02.79 22.74l.02 19.06-1.81 2.63c-2.71 3.91-15.11 13.54-15.49 12.29zm29.53-45.11c-.18-.3-.33-6.87-.33-14.59 0-14.06-.89-27.54-2.26-34.45-.4-2.02-.81-9.7-.9-17.06-.15-11.93-1.4-24.37-2.64-26.38-.66-1.07-3.02-17.66-3.03-21.3-.01-4.23 1.02-6 5.28-9.13 4.14-3.04 4.86-3.14 5.48-.72.28 1.1 1.45 5.62 2.6 10.03 3.93 15.12 4.14 16.27 4.05 21.74-.1 5.78-.13 6.13-1.74 17.73-.98 7.07-1.17 12.39-1.04 28.43.17 19.4-.64 35.73-2.04 41.27-.71 2.78-2.8 5.48-3.43 4.43zm-70.99-37.58c-.24-.38-1.01-5.24-1.73-10.79-.72-5.56-1.49-10.41-1.73-10.79-.23-.38-.68-3.3-.99-6.49-.31-3.19-.91-7.46-1.33-9.48-.99-4.79-3.35-19.35-3.42-21.07-.03-.74-.34-4.05-.7-7.36-.67-6.21-.84-27.67-.22-28.29.96-.96 6.63 2.76 11.33 7.43l5.28 5.25-.45 6.47c-.25 3.56-.6 10.23-.78 14.83-.18 4.6-.49 9.87-.67 11.71-.18 1.84-.61 9.36-.94 16.72-.79 17.41-1.94 31.29-2.65 32-.32.3-.76.24-1-.14zM74.63 162.61c21.07 12.79 17.84 14.15 28.49 17.66 13.01 4.29 18.87 7.13 23.15 16.87-43.66 36.14-69.01 57.9-76.71 70.82-31.02 52.01-5.99 101.59 62.75 87.21-14.18 29.23-77.97 28.63-98.68-4.9-24.68-39.95-22.09-118.3 61-187.66zm210.79 179.02c56.66 6.88 82.32-37.74 46.54-89.23 0 0-26.87-29.34-64.28-67.96 2.98-15.45 9.49-32.12 30.57-53.82 89.2 63.51 92 141.61 92.46 149.36 4.27 70.58-78.66 91.12-105.29 61.65z" ], + mastodon: [ 417, 512, [], "f4f6", "M417.8 179.1c0-97.2-63.7-125.7-63.7-125.7-62.5-28.7-228.5-28.4-290.4 0 0 0-63.7 28.5-63.7 125.7 0 115.7-6.6 259.4 105.6 289.1 40.5 10.7 75.3 13 103.3 11.4 50.8-2.8 79.3-18.1 79.3-18.1l-1.7-36.9s-36.3 11.4-77.1 10.1c-40.4-1.4-83-4.4-89.6-54-.6-4.4-.9-9-.9-13.9 85.6 20.9 158.6 9.1 178.7 6.7 56.1-6.7 105-41.3 111.2-72.9 9.8-49.8 9-121.5 9-121.5zm-75.1 125.2h-46.6V190.1c0-49.7-64-51.6-64 6.9v62.5h-46.3V197c0-58.5-64-56.6-64-6.9v114.2H75.1c0-122.1-5.2-147.9 18.4-175 25.9-28.9 79.8-30.8 103.8 6.1l11.6 19.5 11.6-19.5c24.1-37.1 78.1-34.8 103.8-6.1 23.7 27.3 18.4 53 18.4 175z" ], + maxcdn: [ 512, 512, [], "f136", "M461.1 442.7h-97.4L415.6 200c2.3-10.2.9-19.5-4.4-25.7-5-6.1-13.7-9.6-24.2-9.6h-49.3l-59.5 278h-97.4l59.5-278h-83.4l-59.5 278H0l59.5-278-44.6-95.4H387c39.4 0 75.3 16.3 98.3 44.9 23.3 28.6 31.8 67.4 23.6 105.9l-47.8 222.6z" ], + medapps: [ 320, 512, [], "f3c6", "M118.3 238.4c3.5-12.5 6.9-33.6 13.2-33.6 8.3 1.8 9.6 23.4 18.6 36.6 4.6-23.5 5.3-85.1 14.1-86.7 9-.7 19.7 66.5 22 77.5 9.9 4.1 48.9 6.6 48.9 6.6 1.9 7.3-24 7.6-40 7.8-4.6 14.8-5.4 27.7-11.4 28-4.7.2-8.2-28.8-17.5-49.6l-9.4 65.5c-4.4 13-15.5-22.5-21.9-39.3-3.3-.1-62.4-1.6-47.6-7.8l31-5zM228 448c21.2 0 21.2-32 0-32H92c-21.2 0-21.2 32 0 32h136zm-24 64c21.2 0 21.2-32 0-32h-88c-21.2 0-21.2 32 0 32h88zm34.2-141.5c3.2-18.9 5.2-36.4 11.9-48.8 7.9-14.7 16.1-28.1 24-41 24.6-40.4 45.9-75.2 45.9-125.5C320 69.6 248.2 0 160 0S0 69.6 0 155.2c0 50.2 21.3 85.1 45.9 125.5 7.9 12.9 16 26.3 24 41 6.7 12.5 8.7 29.8 11.9 48.9 3.5 21 36.1 15.7 32.6-5.1-3.6-21.7-5.6-40.7-15.3-58.6C66.5 246.5 33 211.3 33 155.2 33 87.3 90 32 160 32s127 55.3 127 123.2c0 56.1-33.5 91.3-66.1 151.6-9.7 18-11.7 37.4-15.3 58.6-3.4 20.6 29 26.4 32.6 5.1z" ], + medium: [ 448, 512, [], "f23a", "M0 32v448h448V32H0zm372.2 106.1l-24 23c-2.1 1.6-3.1 4.2-2.7 6.7v169.3c-.4 2.6.6 5.2 2.7 6.7l23.5 23v5.1h-118V367l24.3-23.6c2.4-2.4 2.4-3.1 2.4-6.7V199.8l-67.6 171.6h-9.1L125 199.8v115c-.7 4.8 1 9.7 4.4 13.2l31.6 38.3v5.1H71.2v-5.1l31.6-38.3c3.4-3.5 4.9-8.4 4.1-13.2v-133c.4-3.7-1-7.3-3.8-9.8L75 138.1V133h87.3l67.4 148L289 133.1h83.2v5z" ], + "medium-m": [ 512, 512, [], "f3c7", "M71.5 142.3c.6-5.9-1.7-11.8-6.1-15.8L20.3 72.1V64h140.2l108.4 237.7L364.2 64h133.7v8.1l-38.6 37c-3.3 2.5-5 6.7-4.3 10.8v272c-.7 4.1 1 8.3 4.3 10.8l37.7 37v8.1H307.3v-8.1l39.1-37.9c3.8-3.8 3.8-5 3.8-10.8V171.2L241.5 447.1h-14.7L100.4 171.2v184.9c-1.1 7.8 1.5 15.6 7 21.2l50.8 61.6v8.1h-144v-8L65 377.3c5.4-5.6 7.9-13.5 6.5-21.2V142.3z" ], + medrt: [ 544, 512, [], "f3c8", "M113.7 256c0 121.8 83.9 222.8 193.5 241.1-18.7 4.5-38.2 6.9-58.2 6.9C111.4 504 0 393 0 256S111.4 8 248.9 8c20.1 0 39.6 2.4 58.2 6.9C197.5 33.2 113.7 134.2 113.7 256m297.4 100.3c-77.7 55.4-179.6 47.5-240.4-14.6 5.5 14.1 12.7 27.7 21.7 40.5 61.6 88.2 182.4 109.3 269.7 47 87.3-62.3 108.1-184.3 46.5-272.6-9-12.9-19.3-24.3-30.5-34.2 37.4 78.8 10.7 178.5-67 233.9m-218.8-244c-1.4 1-2.7 2.1-4 3.1 64.3-17.8 135.9 4 178.9 60.5 35.7 47 42.9 106.6 24.4 158 56.7-56.2 67.6-142.1 22.3-201.8-50-65.5-149.1-74.4-221.6-19.8M296 224c-4.4 0-8-3.6-8-8v-40c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v40c0 4.4-3.6 8-8 8h-40c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h40c4.4 0 8 3.6 8 8v40c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-40c0-4.4 3.6-8 8-8h40c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-40z" ], + meetup: [ 512, 512, [], "f2e0", "M99 414.3c1.1 5.7-2.3 11.1-8 12.3-5.4 1.1-10.9-2.3-12-8-1.1-5.4 2.3-11.1 7.7-12.3 5.4-1.2 11.1 2.3 12.3 8zm143.1 71.4c-6.3 4.6-8 13.4-3.7 20 4.6 6.6 13.4 8.3 20 3.7 6.3-4.6 8-13.4 3.4-20-4.2-6.5-13.1-8.3-19.7-3.7zm-86-462.3c6.3-1.4 10.3-7.7 8.9-14-1.1-6.6-7.4-10.6-13.7-9.1-6.3 1.4-10.3 7.7-9.1 14 1.4 6.6 7.6 10.6 13.9 9.1zM34.4 226.3c-10-6.9-23.7-4.3-30.6 6-6.9 10-4.3 24 5.7 30.9 10 7.1 23.7 4.6 30.6-5.7 6.9-10.4 4.3-24.1-5.7-31.2zm272-170.9c10.6-6.3 13.7-20 7.7-30.3-6.3-10.6-19.7-14-30-7.7s-13.7 20-7.4 30.6c6 10.3 19.4 13.7 29.7 7.4zm-191.1 58c7.7-5.4 9.4-16 4.3-23.7s-15.7-9.4-23.1-4.3c-7.7 5.4-9.4 16-4.3 23.7 5.1 7.8 15.6 9.5 23.1 4.3zm372.3 156c-7.4 1.7-12.3 9.1-10.6 16.9 1.4 7.4 8.9 12.3 16.3 10.6 7.4-1.4 12.3-8.9 10.6-16.6-1.5-7.4-8.9-12.3-16.3-10.9zm39.7-56.8c-1.1-5.7-6.6-9.1-12-8-5.7 1.1-9.1 6.9-8 12.6 1.1 5.4 6.6 9.1 12.3 8 5.4-1.5 9.1-6.9 7.7-12.6zM447 138.9c-8.6 6-10.6 17.7-4.9 26.3 5.7 8.6 17.4 10.6 26 4.9 8.3-6 10.3-17.7 4.6-26.3-5.7-8.7-17.4-10.9-25.7-4.9zm-6.3 139.4c26.3 43.1 15.1 100-26.3 129.1-17.4 12.3-37.1 17.7-56.9 17.1-12 47.1-69.4 64.6-105.1 32.6-1.1.9-2.6 1.7-3.7 2.9-39.1 27.1-92.3 17.4-119.4-22.3-9.7-14.3-14.6-30.6-15.1-46.9-65.4-10.9-90-94-41.1-139.7-28.3-46.9.6-107.4 53.4-114.9C151.6 70 234.1 38.6 290.1 82c67.4-22.3 136.3 29.4 130.9 101.1 41.1 12.6 52.8 66.9 19.7 95.2zm-70 74.3c-3.1-20.6-40.9-4.6-43.1-27.1-3.1-32 43.7-101.1 40-128-3.4-24-19.4-29.1-33.4-29.4-13.4-.3-16.9 2-21.4 4.6-2.9 1.7-6.6 4.9-11.7-.3-6.3-6-11.1-11.7-19.4-12.9-12.3-2-17.7 2-26.6 9.7-3.4 2.9-12 12.9-20 9.1-3.4-1.7-15.4-7.7-24-11.4-16.3-7.1-40 4.6-48.6 20-12.9 22.9-38 113.1-41.7 125.1-8.6 26.6 10.9 48.6 36.9 47.1 11.1-.6 18.3-4.6 25.4-17.4 4-7.4 41.7-107.7 44.6-112.6 2-3.4 8.9-8 14.6-5.1 5.7 3.1 6.9 9.4 6 15.1-1.1 9.7-28 70.9-28.9 77.7-3.4 22.9 26.9 26.6 38.6 4 3.7-7.1 45.7-92.6 49.4-98.3 4.3-6.3 7.4-8.3 11.7-8 3.1 0 8.3.9 7.1 10.9-1.4 9.4-35.1 72.3-38.9 87.7-4.6 20.6 6.6 41.4 24.9 50.6 11.4 5.7 62.5 15.7 58.5-11.1zm5.7 92.3c-10.3 7.4-12.9 22-5.7 32.6 7.1 10.6 21.4 13.1 32 6 10.6-7.4 13.1-22 6-32.6-7.4-10.6-21.7-13.5-32.3-6z" ], + megaport: [ 496, 512, [], "f5a3", "M248 8C111.04 8 0 119.04 0 256c0 136.97 111.04 248 248 248 136.96 0 248-111.03 248-248C496 119.04 384.96 8 248 8zm85.46 267.67l59.66 59.67v87.05l-26.07 19.23L341 422.39v-65.46l-33.44-33.44-33.44 33.44v65.46L248 441.62l-26.12-19.23v-65.46l-33.44-33.44L155 356.92v65.46l-26.07 19.23-26.06-19.23v-87.05l59.47-59.47V188l59.5-59.5V52.88l26.06-19.23 26.06 19.23v75.64l59.5 59.5m-85.56-11.86l33.44 33.44V276L248 309.33l-33.54-33.54v-66.2l33.44-33.43z" ], + microsoft: [ 448, 512, [], "f3ca", "M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z" ], + mix: [ 448, 512, [], "f3cb", "M0 64v348.9c0 56.2 88 58.1 88 0V174.3c7.9-52.9 88-50.4 88 6.5v175.3c0 57.9 96 58 96 0V240c5.3-54.7 88-52.5 88 4.3v23.8c0 59.9 88 56.6 88 0V64H0z" ], + mixcloud: [ 640, 512, [], "f289", "M424.43 219.729C416.124 134.727 344.135 68 256.919 68c-72.266 0-136.224 46.516-159.205 114.074-54.545 8.029-96.63 54.822-96.63 111.582 0 62.298 50.668 112.966 113.243 112.966h289.614c52.329 0 94.969-42.362 94.969-94.693 0-45.131-32.118-83.063-74.48-92.2zm-20.489 144.53H114.327c-39.04 0-70.881-31.564-70.881-70.604s31.841-70.604 70.881-70.604c18.827 0 36.548 7.475 49.838 20.766 19.963 19.963 50.133-10.227 30.18-30.18-14.675-14.398-32.672-24.365-52.053-29.349 19.935-44.3 64.79-73.926 114.628-73.926 69.496 0 125.979 56.483 125.979 125.702 0 13.568-2.215 26.857-6.369 39.594-8.943 27.517 32.133 38.939 40.147 13.29 2.769-8.306 4.984-16.889 6.369-25.472 19.381 7.476 33.502 26.303 33.502 48.453 0 28.795-23.535 52.33-52.607 52.33zm235.069-52.33c0 44.024-12.737 86.386-37.102 122.657-4.153 6.092-10.798 9.414-17.72 9.414-16.317 0-27.127-18.826-17.443-32.949 19.381-29.349 29.903-63.682 29.903-99.122s-10.521-69.773-29.903-98.845c-15.655-22.831 19.361-47.24 35.163-23.534 24.366 35.993 37.102 78.356 37.102 122.379zm-70.88 0c0 31.565-9.137 62.021-26.857 88.325-4.153 6.091-10.798 9.136-17.72 9.136-17.201 0-27.022-18.979-17.443-32.948 13.013-19.104 19.658-41.255 19.658-64.513 0-22.981-6.645-45.408-19.658-64.512-15.761-22.986 19.008-47.095 35.163-23.535 17.719 26.026 26.857 56.483 26.857 88.047z" ], + mizuni: [ 496, 512, [], "f3cc", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm-80 351.9c-31.4 10.6-58.8 27.3-80 48.2V136c0-22.1 17.9-40 40-40s40 17.9 40 40v223.9zm120-9.9c-12.9-2-26.2-3.1-39.8-3.1-13.8 0-27.2 1.1-40.2 3.1V136c0-22.1 17.9-40 40-40s40 17.9 40 40v214zm120 57.7c-21.2-20.8-48.6-37.4-80-48V136c0-22.1 17.9-40 40-40s40 17.9 40 40v271.7z" ], + modx: [ 448, 512, [], "f285", "M356 241.8l36.7 23.7V480l-133-83.8L356 241.8zM440 75H226.3l-23 37.8 153.5 96.5L440 75zm-89 142.8L55.2 32v214.5l46 29L351 217.8zM97 294.2L8 437h213.7l125-200.5L97 294.2z" ], + monero: [ 496, 512, [], "f3d0", "M352 384h108.4C417 455.9 338.1 504 248 504S79 455.9 35.6 384H144V256.2L248 361l104-105v128zM88 336V128l159.4 159.4L408 128v208h74.8c8.5-25.1 13.2-52 13.2-80C496 119 385 8 248 8S0 119 0 256c0 28 4.6 54.9 13.2 80H88z" ], + napster: [ 496, 512, [], "f3d2", "M298.3 373.6c-14.2 13.6-31.3 24.1-50.4 30.5-19-6.4-36.2-16.9-50.3-30.5h100.7zm44-199.6c20-16.9 43.6-29.2 69.6-36.2V299c0 219.4-328 217.6-328 .3V137.7c25.9 6.9 49.6 19.6 69.5 36.4 56.8-40 132.5-39.9 188.9-.1zm-208.8-58.5c64.4-60 164.3-60.1 228.9-.2-7.1 3.5-13.9 7.3-20.6 11.5-58.7-30.5-129.2-30.4-187.9.1-6.3-4-13.9-8.2-20.4-11.4zM43.8 93.2v69.3c-58.4 36.5-58.4 121.1.1 158.3 26.4 245.1 381.7 240.3 407.6 1.5l.3-1.7c58.7-36.3 58.9-121.7.2-158.2V93.2c-17.3.5-34 3-50.1 7.4-82-91.5-225.5-91.5-307.5.1-16.3-4.4-33.1-7-50.6-7.5zM259.2 352s36-.3 61.3-1.5c10.2-.5 21.1-4 25.5-6.5 26.3-15.1 25.4-39.2 26.2-47.4-79.5-.6-99.9-3.9-113 55.4zm-135.5-55.3c.8 8.2-.1 32.3 26.2 47.4 4.4 2.5 15.2 6 25.5 6.5 25.3 1.1 61.3 1.5 61.3 1.5-13.2-59.4-33.7-56.1-113-55.4zm169.1 123.4c-3.2-5.3-6.9-7.3-6.9-7.3-24.8 7.3-52.2 6.9-75.9 0 0 0-2.9 1.5-6.4 6.6-2.8 4.1-3.7 9.6-3.7 9.6 29.1 17.6 67.1 17.6 96.2 0-.1-.1-.3-4-3.3-8.9z" ], + nimblr: [ 355, 512, [], "f5a8", "M232.6 299.29c15.57 0 27.15 11.46 27.15 26.96 0 15.55-11.62 26.96-27.15 26.96-15.7 0-27.15-11.57-27.15-26.96 0-15.51 11.58-26.96 27.15-26.96zM99.01 326.25c0-15.61 11.68-26.96 27.15-26.96 15.57 0 27.15 11.46 27.15 26.96 0 15.41-11.47 26.96-27.15 26.96-15.44 0-27.15-11.31-27.15-26.96m78.75-167.3C143 158.95 75.45 178.77 45.25 227L0 0v335.48C0 433.13 79.61 512 177.76 512c98.24 0 177.76-78.95 177.76-176.52 0-97.46-79.39-176.53-177.76-176.53zm0 308.12c-73.27 0-132.51-58.9-132.51-131.59 0-72.68 59.24-131.59 132.51-131.59 73.27 0 132.51 58.91 132.51 131.59s-59.25 131.59-132.51 131.59z" ], + "nintendo-switch": [ 448, 512, [], "f418", "M95.9 33.5c-44.6 8-80.5 41-91.8 84.4C0 133.6-.3 142.8.2 264.4.4 376 .5 378.6 2.4 387.3c10.3 46.5 43.3 79.6 90.3 90.5 6.1 1.4 13.9 1.7 64.1 1.9 51.9.4 57.3.3 58.7-1.1 1.4-1.4 1.5-19.3 1.5-222.2 0-150.5-.3-221.3-.9-222.6-.9-1.7-2.5-1.8-56.9-1.7-44.2.1-57.5.4-63.3 1.4zm83.9 222.6V444l-37.8-.5c-34.8-.4-38.5-.6-45.5-2.3-29.9-7.7-52-30.7-58.3-60.7-2-9.4-2-240.1-.1-249.3 5.6-26.1 23.7-47.7 48-57.4 12.2-4.9 17.9-5.5 57.6-5.6l35.9-.1v188zm-75.9-131.2c-5.8 1.1-14.7 5.6-19.5 9.7-9.7 8.4-14.6 20.4-13.8 34.5.4 7.3.8 9.3 3.8 15.2 4.4 9 10.9 15.6 19.9 20 6.2 3.1 7.8 3.4 15.9 3.7 7.3.3 9.9 0 14.8-1.7 20.1-6.8 32.3-26.3 28.8-46.4-3.9-23.7-26.6-39.7-49.9-35zm158.2-92.3c-.4.3-.6 100.8-.6 223.5 0 202.3.1 222.8 1.5 223.4 2.5.9 74.5.6 83.4-.4 37.7-4.3 71-27.2 89-61.2 2.3-4.4 5.4-11.7 7-16.2 5.8-17.4 5.7-12.8 5.7-146.1 0-106.4-.2-122.3-1.5-129-9.2-48.3-46.1-84.8-94.5-93.1-6.5-1.1-16.5-1.4-48.8-1.4-22.4-.1-40.9.2-41.2.5zm99.1 202.1c14.5 3.8 26.3 14.8 31.2 28.9 3.1 8.7 3 21.5-.1 29.5-5.7 14.7-16.8 25-31.1 28.8-23.2 6-47.9-8-54.6-31-2-7-1.9-18.9.4-26.2 6.9-22.7 31-36.1 54.2-30z" ], + node: [ 640, 512, [], "f419", "M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4.1l14.8 8.8c.5.3 1.3.3 1.8 0L375 408c.5-.3.9-.9.9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6.3-.9 1-.9 1.6v66.7c0 .6.4 1.2.9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9.7-1.7 1.7-1.7h7.3c.9 0 1.7.7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7zm46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6.2.8.8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5.3-.4.5-.8.4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7.7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8zm54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1zm-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3 0 5.2 4.2 9.4 9.3 9.4 5.2-.1 9.4-4.3 9.4-9.4zm-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7.1 1.8 1.2 2.1 2.8.1 1 .3 2.7.6 3.3zm-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8zM137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3.4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3.7 2.5 1.8 3.2 1.1.7 2.5.7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1 1.3 0 2.6.3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1.7 2.6.7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2l.2-95zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4zm-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6.3-.9.9-.9 1.6v24.3c0 .7.4 1.3.9 1.6l21 12.1c.6.3 1.3.3 1.8 0l21-12.1c.6-.3.9-.9.9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3.7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1.7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2l36.7-21.3zM559 219c-.4.3-.7.7-.7 1.2v13.6c0 .5.3 1 .7 1.2l11.8 6.8c.4.3 1 .3 1.4 0L584 235c.4-.3.7-.7.7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0L559 219zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7.1-.5.2-1.1.2-1.7zm-74.3-124.9l-.8.5h1.1l-.3-.5zm76.2 130.2l-.4-.7v.9l.4-.2z" ], + "node-js": [ 448, 512, [], "f3d3", "M224 508c-6.7 0-13.5-1.8-19.4-5.2l-61.7-36.5c-9.2-5.2-4.7-7-1.7-8 12.3-4.3 14.8-5.2 27.9-12.7 1.4-.8 3.2-.5 4.6.4l47.4 28.1c1.7 1 4.1 1 5.7 0l184.7-106.6c1.7-1 2.8-3 2.8-5V149.3c0-2.1-1.1-4-2.9-5.1L226.8 37.7c-1.7-1-4-1-5.7 0L36.6 144.3c-1.8 1-2.9 3-2.9 5.1v213.1c0 2 1.1 4 2.9 4.9l50.6 29.2c27.5 13.7 44.3-2.4 44.3-18.7V167.5c0-3 2.4-5.3 5.4-5.3h23.4c2.9 0 5.4 2.3 5.4 5.3V378c0 36.6-20 57.6-54.7 57.6-10.7 0-19.1 0-42.5-11.6l-48.4-27.9C8.1 389.2.7 376.3.7 362.4V149.3c0-13.8 7.4-26.8 19.4-33.7L204.6 9c11.7-6.6 27.2-6.6 38.8 0l184.7 106.7c12 6.9 19.4 19.8 19.4 33.7v213.1c0 13.8-7.4 26.7-19.4 33.7L243.4 502.8c-5.9 3.4-12.6 5.2-19.4 5.2zm149.1-210.1c0-39.9-27-50.5-83.7-58-57.4-7.6-63.2-11.5-63.2-24.9 0-11.1 4.9-25.9 47.4-25.9 37.9 0 51.9 8.2 57.7 33.8.5 2.4 2.7 4.2 5.2 4.2h24c1.5 0 2.9-.6 3.9-1.7s1.5-2.6 1.4-4.1c-3.7-44.1-33-64.6-92.2-64.6-52.7 0-84.1 22.2-84.1 59.5 0 40.4 31.3 51.6 81.8 56.6 60.5 5.9 65.2 14.8 65.2 26.7 0 20.6-16.6 29.4-55.5 29.4-48.9 0-59.6-12.3-63.2-36.6-.4-2.6-2.6-4.5-5.3-4.5h-23.9c-3 0-5.3 2.4-5.3 5.3 0 31.1 16.9 68.2 97.8 68.2 58.4-.1 92-23.2 92-63.4z" ], + npm: [ 576, 512, [], "f3d4", "M288 288h-32v-64h32v64zm288-128v192H288v32H160v-32H0V160h576zm-416 32H32v128h64v-96h32v96h32V192zm160 0H192v160h64v-32h64V192zm224 0H352v128h64v-96h32v96h32v-96h32v96h32V192z" ], + ns8: [ 640, 512, [], "f3d5", "M187.1 159.9l-34.2 113.7-54.5-113.7H49L0 320h44.9L76 213.5 126.6 320h56.9L232 159.9h-44.9zm452.5-.9c-2.9-18-23.9-28.1-42.1-31.3-44.6-7.8-101.9 16.3-88.5 58.8v.1c-43.8 8.7-74.3 26.8-94.2 48.2-3-9.8-13.6-16.6-34-16.6h-87.6c-9.3 0-12.9-2.3-11.5-7.4 1.6-5.5 1.9-6.8 3.7-12.2 2.1-6.4 7.8-7.1 13.3-7.1h133.5l9.7-31.5c-139.7 0-144.5-.5-160.1 1.2-12.3 1.3-23.5 4.8-30.6 15-6.8 9.9-14.4 35.6-17.6 47.1-5.4 19.4-.6 28.6 32.8 28.6h87.3c7.8 0 8.8 2.7 7.7 6.6-1.1 4.4-2.8 10-4.5 14.6-1.6 4.2-4.7 7.4-13.8 7.4H216.3L204.7 320c139.9 0 145.3-.6 160.9-2.3 6.6-.7 13-2.1 18.5-4.9.2 3.7.5 7.3 1.2 10.8 5.4 30.5 27.4 52.3 56.8 59.5 48.6 11.9 108.7-16.8 135.1-68 18.7-36.2 14.1-76.2-3.4-105.5h.1c29.6-5.9 70.3-22 65.7-50.6zM530.7 263.7c-5.9 29.5-36.6 47.8-61.6 43.9-30.9-4.8-38.5-39.5-14.1-64.8 16.2-16.8 45.2-24 68.5-26.9 6.7 14.1 10.3 32 7.2 47.8zm21.8-83.1c-4.2-6-9.8-18.5-2.5-26.3 6.7-7.2 20.9-10.1 31.8-7.7 15.3 3.4 19.7 15.9 4.9 24.4-10.7 6.1-23.6 8.1-34.2 9.6z" ], + nutritionix: [ 400, 512, [], "f3d6", "M88 8.1S221.4-.1 209 112.5c0 0 19.1-74.9 103-40.6 0 0-17.7 74-88 56 0 0 14.6-54.6 66.1-56.6 0 0-39.9-10.3-82.1 48.8 0 0-19.8-94.5-93.6-99.7 0 0 75.2 19.4 77.6 107.5 0 .1-106.4 7-104-119.8zm312 315.6c0 48.5-9.7 95.3-32 132.3-42.2 30.9-105 48-168 48-62.9 0-125.8-17.1-168-48C9.7 419 0 372.2 0 323.7 0 275.3 17.7 229 40 192c42.2-30.9 97.1-48.6 160-48.6 63 0 117.8 17.6 160 48.6 22.3 37 40 83.3 40 131.7zM120 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM192 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM264 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM336 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm24-39.6c-4.8-22.3-7.4-36.9-16-56-38.8-19.9-90.5-32-144-32S94.8 180.1 56 200c-8.8 19.5-11.2 33.9-16 56 42.2-7.9 98.7-14.8 160-14.8s117.8 6.9 160 14.8z" ], + odnoklassniki: [ 320, 512, [], "f263", "M275.1 334c-27.4 17.4-65.1 24.3-90 26.9l20.9 20.6 76.3 76.3c27.9 28.6-17.5 73.3-45.7 45.7-19.1-19.4-47.1-47.4-76.3-76.6L84 503.4c-28.2 27.5-73.6-17.6-45.4-45.7 19.4-19.4 47.1-47.4 76.3-76.3l20.6-20.6c-24.6-2.6-62.9-9.1-90.6-26.9-32.6-21-46.9-33.3-34.3-59 7.4-14.6 27.7-26.9 54.6-5.7 0 0 36.3 28.9 94.9 28.9s94.9-28.9 94.9-28.9c26.9-21.1 47.1-8.9 54.6 5.7 12.4 25.7-1.9 38-34.5 59.1zM30.3 129.7C30.3 58 88.6 0 160 0s129.7 58 129.7 129.7c0 71.4-58.3 129.4-129.7 129.4s-129.7-58-129.7-129.4zm66 0c0 35.1 28.6 63.7 63.7 63.7s63.7-28.6 63.7-63.7c0-35.4-28.6-64-63.7-64s-63.7 28.6-63.7 64z" ], + "odnoklassniki-square": [ 448, 512, [], "f264", "M184.2 177.1c0-22.1 17.9-40 39.8-40s39.8 17.9 39.8 40c0 22-17.9 39.8-39.8 39.8s-39.8-17.9-39.8-39.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-305.1 97.1c0 44.6 36.4 80.9 81.1 80.9s81.1-36.2 81.1-80.9c0-44.8-36.4-81.1-81.1-81.1s-81.1 36.2-81.1 81.1zm174.5 90.7c-4.6-9.1-17.3-16.8-34.1-3.6 0 0-22.7 18-59.3 18s-59.3-18-59.3-18c-16.8-13.2-29.5-5.5-34.1 3.6-7.9 16.1 1.1 23.7 21.4 37 17.3 11.1 41.2 15.2 56.6 16.8l-12.9 12.9c-18.2 18-35.5 35.5-47.7 47.7-17.6 17.6 10.7 45.8 28.4 28.6l47.7-47.9c18.2 18.2 35.7 35.7 47.7 47.9 17.6 17.2 46-10.7 28.6-28.6l-47.7-47.7-13-12.9c15.5-1.6 39.1-5.9 56.2-16.8 20.4-13.3 29.3-21 21.5-37z" ], + "old-republic": [ 496, 512, [], "f510", "M235.76 10.23c7.5-.31 15-.28 22.5-.09 3.61.14 7.2.4 10.79.73 4.92.27 9.79 1.03 14.67 1.62 2.93.43 5.83.98 8.75 1.46 7.9 1.33 15.67 3.28 23.39 5.4 12.24 3.47 24.19 7.92 35.76 13.21 26.56 12.24 50.94 29.21 71.63 49.88 20.03 20.09 36.72 43.55 48.89 69.19 1.13 2.59 2.44 5.1 3.47 7.74 2.81 6.43 5.39 12.97 7.58 19.63 4.14 12.33 7.34 24.99 9.42 37.83.57 3.14 1.04 6.3 1.4 9.47.55 3.83.94 7.69 1.18 11.56.83 8.34.84 16.73.77 25.1-.07 4.97-.26 9.94-.75 14.89-.24 3.38-.51 6.76-.98 10.12-.39 2.72-.63 5.46-1.11 8.17-.9 5.15-1.7 10.31-2.87 15.41-4.1 18.5-10.3 36.55-18.51 53.63-15.77 32.83-38.83 62.17-67.12 85.12a246.503 246.503 0 0 1-56.91 34.86c-6.21 2.68-12.46 5.25-18.87 7.41-3.51 1.16-7.01 2.38-10.57 3.39-6.62 1.88-13.29 3.64-20.04 5-4.66.91-9.34 1.73-14.03 2.48-5.25.66-10.5 1.44-15.79 1.74-6.69.66-13.41.84-20.12.81-6.82.03-13.65-.12-20.45-.79-3.29-.23-6.57-.5-9.83-.95-2.72-.39-5.46-.63-8.17-1.11-4.12-.72-8.25-1.37-12.35-2.22-4.25-.94-8.49-1.89-12.69-3.02-8.63-2.17-17.08-5.01-25.41-8.13-10.49-4.12-20.79-8.75-30.64-14.25-2.14-1.15-4.28-2.29-6.35-3.57-11.22-6.58-21.86-14.1-31.92-22.34-34.68-28.41-61.41-66.43-76.35-108.7-3.09-8.74-5.71-17.65-7.8-26.68-1.48-6.16-2.52-12.42-3.58-18.66-.4-2.35-.61-4.73-.95-7.09-.6-3.96-.75-7.96-1.17-11.94-.8-9.47-.71-18.99-.51-28.49.14-3.51.34-7.01.7-10.51.31-3.17.46-6.37.92-9.52.41-2.81.65-5.65 1.16-8.44.7-3.94 1.3-7.9 2.12-11.82 3.43-16.52 8.47-32.73 15.26-48.18 1.15-2.92 2.59-5.72 3.86-8.59 8.05-16.71 17.9-32.56 29.49-47.06 20-25.38 45.1-46.68 73.27-62.47 7.5-4.15 15.16-8.05 23.07-11.37 15.82-6.88 32.41-11.95 49.31-15.38 3.51-.67 7.04-1.24 10.56-1.85 2.62-.47 5.28-.7 7.91-1.08 3.53-.53 7.1-.68 10.65-1.04 2.46-.24 4.91-.36 7.36-.51m8.64 24.41c-9.23.1-18.43.99-27.57 2.23-7.3 1.08-14.53 2.6-21.71 4.3-13.91 3.5-27.48 8.34-40.46 14.42-10.46 4.99-20.59 10.7-30.18 17.22-4.18 2.92-8.4 5.8-12.34 9.03-5.08 3.97-9.98 8.17-14.68 12.59-2.51 2.24-4.81 4.7-7.22 7.06-28.22 28.79-48.44 65.39-57.5 104.69-2.04 8.44-3.54 17.02-4.44 25.65-1.1 8.89-1.44 17.85-1.41 26.8.11 7.14.38 14.28 1.22 21.37.62 7.12 1.87 14.16 3.2 21.18 1.07 4.65 2.03 9.32 3.33 13.91 6.29 23.38 16.5 45.7 30.07 65.75 8.64 12.98 18.78 24.93 29.98 35.77 16.28 15.82 35.05 29.04 55.34 39.22 7.28 3.52 14.66 6.87 22.27 9.63 5.04 1.76 10.06 3.57 15.22 4.98 11.26 3.23 22.77 5.6 34.39 7.06 2.91.29 5.81.61 8.72.9 13.82 1.08 27.74 1 41.54-.43 4.45-.6 8.92-.99 13.35-1.78 3.63-.67 7.28-1.25 10.87-2.1 4.13-.98 8.28-1.91 12.36-3.07 26.5-7.34 51.58-19.71 73.58-36.2 15.78-11.82 29.96-25.76 42.12-41.28 3.26-4.02 6.17-8.31 9.13-12.55 3.39-5.06 6.58-10.25 9.6-15.54 2.4-4.44 4.74-8.91 6.95-13.45 5.69-12.05 10.28-24.62 13.75-37.49 2.59-10.01 4.75-20.16 5.9-30.45 1.77-13.47 1.94-27.1 1.29-40.65-.29-3.89-.67-7.77-1-11.66-2.23-19.08-6.79-37.91-13.82-55.8-5.95-15.13-13.53-29.63-22.61-43.13-12.69-18.8-28.24-35.68-45.97-49.83-25.05-20-54.47-34.55-85.65-42.08-7.78-1.93-15.69-3.34-23.63-4.45-3.91-.59-7.85-.82-11.77-1.24-7.39-.57-14.81-.72-22.22-.58zM139.26 83.53c13.3-8.89 28.08-15.38 43.3-20.18-3.17 1.77-6.44 3.38-9.53 5.29-11.21 6.68-21.52 14.9-30.38 24.49-6.8 7.43-12.76 15.73-17.01 24.89-3.29 6.86-5.64 14.19-6.86 21.71-.93 4.85-1.3 9.81-1.17 14.75.13 13.66 4.44 27.08 11.29 38.82 5.92 10.22 13.63 19.33 22.36 27.26 4.85 4.36 10.24 8.09 14.95 12.6 2.26 2.19 4.49 4.42 6.43 6.91 2.62 3.31 4.89 6.99 5.99 11.1.9 3.02.66 6.2.69 9.31.02 4.1-.04 8.2.03 12.3.14 3.54-.02 7.09.11 10.63.08 2.38.02 4.76.05 7.14.16 5.77.06 11.53.15 17.3.11 2.91.02 5.82.13 8.74.03 1.63.13 3.28-.03 4.91-.91.12-1.82.18-2.73.16-10.99 0-21.88-2.63-31.95-6.93-6-2.7-11.81-5.89-17.09-9.83-5.75-4.19-11.09-8.96-15.79-14.31-6.53-7.24-11.98-15.39-16.62-23.95-1.07-2.03-2.24-4.02-3.18-6.12-1.16-2.64-2.62-5.14-3.67-7.82-4.05-9.68-6.57-19.94-8.08-30.31-.49-4.44-1.09-8.88-1.2-13.35-.7-15.73.84-31.55 4.67-46.82 2.12-8.15 4.77-16.18 8.31-23.83 6.32-14.2 15.34-27.18 26.3-38.19 6.28-6.2 13.13-11.84 20.53-16.67zm175.37-20.12c2.74.74 5.41 1.74 8.09 2.68 6.36 2.33 12.68 4.84 18.71 7.96 13.11 6.44 25.31 14.81 35.82 24.97 10.2 9.95 18.74 21.6 25.14 34.34 1.28 2.75 2.64 5.46 3.81 8.26 6.31 15.1 10 31.26 11.23 47.57.41 4.54.44 9.09.45 13.64.07 11.64-1.49 23.25-4.3 34.53-1.97 7.27-4.35 14.49-7.86 21.18-3.18 6.64-6.68 13.16-10.84 19.24-6.94 10.47-15.6 19.87-25.82 27.22-10.48 7.64-22.64 13.02-35.4 15.38-3.51.69-7.08 1.08-10.66 1.21-1.85.06-3.72.16-5.56-.1-.28-2.15 0-4.31-.01-6.46-.03-3.73.14-7.45.1-11.17.19-7.02.02-14.05.21-21.07.03-2.38-.03-4.76.03-7.14.17-5.07-.04-10.14.14-15.21.1-2.99-.24-6.04.51-8.96.66-2.5 1.78-4.86 3.09-7.08 4.46-7.31 11.06-12.96 17.68-18.26 5.38-4.18 10.47-8.77 15.02-13.84 7.68-8.37 14.17-17.88 18.78-28.27 2.5-5.93 4.52-12.1 5.55-18.46.86-4.37 1.06-8.83 1.01-13.27-.02-7.85-1.4-15.65-3.64-23.17-1.75-5.73-4.27-11.18-7.09-16.45-3.87-6.93-8.65-13.31-13.96-19.2-9.94-10.85-21.75-19.94-34.6-27.1-1.85-1.02-3.84-1.82-5.63-2.97zm-100.8 58.45c.98-1.18 1.99-2.33 3.12-3.38-.61.93-1.27 1.81-1.95 2.68-3.1 3.88-5.54 8.31-7.03 13.06-.87 3.27-1.68 6.6-1.73 10-.07 2.52-.08 5.07.32 7.57 1.13 7.63 4.33 14.85 8.77 21.12 2 2.7 4.25 5.27 6.92 7.33 1.62 1.27 3.53 2.09 5.34 3.05 3.11 1.68 6.32 3.23 9.07 5.48 2.67 2.09 4.55 5.33 4.4 8.79-.01 73.67 0 147.34-.01 221.02 0 1.35-.08 2.7.04 4.04.13 1.48.82 2.83 1.47 4.15.86 1.66 1.78 3.34 3.18 4.62.85.77 1.97 1.4 3.15 1.24 1.5-.2 2.66-1.35 3.45-2.57.96-1.51 1.68-3.16 2.28-4.85.76-2.13.44-4.42.54-6.63.14-4.03-.02-8.06.14-12.09.03-5.89.03-11.77.06-17.66.14-3.62.03-7.24.11-10.86.15-4.03-.02-8.06.14-12.09.03-5.99.03-11.98.07-17.97.14-3.62.02-7.24.11-10.86.14-3.93-.02-7.86.14-11.78.03-5.99.03-11.98.06-17.97.16-3.94-.01-7.88.19-11.82.29 1.44.13 2.92.22 4.38.19 3.61.42 7.23.76 10.84.32 3.44.44 6.89.86 10.32.37 3.1.51 6.22.95 9.31.57 4.09.87 8.21 1.54 12.29 1.46 9.04 2.83 18.11 5.09 26.99 1.13 4.82 2.4 9.61 4 14.3 2.54 7.9 5.72 15.67 10.31 22.62 1.73 2.64 3.87 4.98 6.1 7.21.27.25.55.51.88.71.6.25 1.31-.07 1.7-.57.71-.88 1.17-1.94 1.7-2.93 4.05-7.8 8.18-15.56 12.34-23.31.7-1.31 1.44-2.62 2.56-3.61 1.75-1.57 3.84-2.69 5.98-3.63 2.88-1.22 5.9-2.19 9.03-2.42 6.58-.62 13.11.75 19.56 1.85 3.69.58 7.4 1.17 11.13 1.41 3.74.1 7.48.05 11.21-.28 8.55-.92 16.99-2.96 24.94-6.25 5.3-2.24 10.46-4.83 15.31-7.93 11.46-7.21 21.46-16.57 30.04-27.01 1.17-1.42 2.25-2.9 3.46-4.28-1.2 3.24-2.67 6.37-4.16 9.48-1.25 2.9-2.84 5.61-4.27 8.42-5.16 9.63-11.02 18.91-17.75 27.52-4.03 5.21-8.53 10.05-13.33 14.57-6.64 6.05-14.07 11.37-22.43 14.76-8.21 3.37-17.31 4.63-26.09 3.29-3.56-.58-7.01-1.69-10.41-2.88-2.79-.97-5.39-2.38-8.03-3.69-3.43-1.71-6.64-3.81-9.71-6.08 2.71 3.06 5.69 5.86 8.7 8.61 4.27 3.76 8.74 7.31 13.63 10.23 3.98 2.45 8.29 4.4 12.84 5.51 1.46.37 2.96.46 4.45.6-1.25 1.1-2.63 2.04-3.99 2.98-9.61 6.54-20.01 11.86-30.69 16.43-20.86 8.7-43.17 13.97-65.74 15.34-4.66.24-9.32.36-13.98.36-4.98-.11-9.97-.13-14.92-.65-11.2-.76-22.29-2.73-33.17-5.43-10.35-2.71-20.55-6.12-30.3-10.55-8.71-3.86-17.12-8.42-24.99-13.79-1.83-1.31-3.74-2.53-5.37-4.08 6.6-1.19 13.03-3.39 18.99-6.48 5.74-2.86 10.99-6.66 15.63-11.07 2.24-2.19 4.29-4.59 6.19-7.09-3.43 2.13-6.93 4.15-10.62 5.78-4.41 2.16-9.07 3.77-13.81 5.02-5.73 1.52-11.74 1.73-17.61 1.14-8.13-.95-15.86-4.27-22.51-8.98-4.32-2.94-8.22-6.43-11.96-10.06-9.93-10.16-18.2-21.81-25.66-33.86-3.94-6.27-7.53-12.75-11.12-19.22-1.05-2.04-2.15-4.05-3.18-6.1 2.85 2.92 5.57 5.97 8.43 8.88 8.99 8.97 18.56 17.44 29.16 24.48 7.55 4.9 15.67 9.23 24.56 11.03 3.11.73 6.32.47 9.47.81 2.77.28 5.56.2 8.34.3 5.05.06 10.11.04 15.16-.16 3.65-.16 7.27-.66 10.89-1.09 2.07-.25 4.11-.71 6.14-1.2 3.88-.95 8.11-.96 11.83.61 4.76 1.85 8.44 5.64 11.38 9.71 2.16 3.02 4.06 6.22 5.66 9.58 1.16 2.43 2.46 4.79 3.55 7.26 1 2.24 2.15 4.42 3.42 6.52.67 1.02 1.4 2.15 2.62 2.55 1.06-.75 1.71-1.91 2.28-3.03 2.1-4.16 3.42-8.65 4.89-13.05 2.02-6.59 3.78-13.27 5.19-20.02 2.21-9.25 3.25-18.72 4.54-28.13.56-3.98.83-7.99 1.31-11.97.87-10.64 1.9-21.27 2.24-31.94.08-1.86.24-3.71.25-5.57.01-4.35.25-8.69.22-13.03-.01-2.38-.01-4.76 0-7.13.05-5.07-.2-10.14-.22-15.21-.2-6.61-.71-13.2-1.29-19.78-.73-5.88-1.55-11.78-3.12-17.51-2.05-7.75-5.59-15.03-9.8-21.82-3.16-5.07-6.79-9.88-11.09-14.03-3.88-3.86-8.58-7.08-13.94-8.45-1.5-.41-3.06-.45-4.59-.64.07-2.99.7-5.93 1.26-8.85 1.59-7.71 3.8-15.3 6.76-22.6 1.52-4.03 3.41-7.9 5.39-11.72 3.45-6.56 7.62-12.79 12.46-18.46zm31.27 1.7c.35-.06.71-.12 1.07-.19.19 1.79.09 3.58.1 5.37v38.13c-.01 1.74.13 3.49-.15 5.22-.36-.03-.71-.05-1.06-.05-.95-3.75-1.72-7.55-2.62-11.31-.38-1.53-.58-3.09-1.07-4.59-1.7-.24-3.43-.17-5.15-.2-5.06-.01-10.13 0-15.19-.01-1.66-.01-3.32.09-4.98-.03-.03-.39-.26-.91.16-1.18 1.28-.65 2.72-.88 4.06-1.35 3.43-1.14 6.88-2.16 10.31-3.31 1.39-.48 2.9-.72 4.16-1.54.04-.56.02-1.13-.05-1.68-1.23-.55-2.53-.87-3.81-1.28-3.13-1.03-6.29-1.96-9.41-3.02-1.79-.62-3.67-1-5.41-1.79-.03-.37-.07-.73-.11-1.09 5.09-.19 10.2.06 15.3-.12 3.36-.13 6.73.08 10.09-.07.12-.39.26-.77.37-1.16 1.08-4.94 2.33-9.83 3.39-14.75zm5.97-.2c.36.05.72.12 1.08.2.98 3.85 1.73 7.76 2.71 11.61.36 1.42.56 2.88 1.03 4.27 2.53.18 5.07-.01 7.61.05 5.16.12 10.33.12 15.49.07.76-.01 1.52.03 2.28.08-.04.36-.07.72-.1 1.08-1.82.83-3.78 1.25-5.67 1.89-3.73 1.23-7.48 2.39-11.22 3.57-.57.17-1.12.42-1.67.64-.15.55-.18 1.12-.12 1.69.87.48 1.82.81 2.77 1.09 4.88 1.52 9.73 3.14 14.63 4.6.38.13.78.27 1.13.49.4.27.23.79.15 1.18-1.66.13-3.31.03-4.97.04-5.17.01-10.33-.01-15.5.01-1.61.03-3.22-.02-4.82.21-.52 1.67-.72 3.42-1.17 5.11-.94 3.57-1.52 7.24-2.54 10.78-.36.01-.71.02-1.06.06-.29-1.73-.15-3.48-.15-5.22v-38.13c.02-1.78-.08-3.58.11-5.37zM65.05 168.33c1.12-2.15 2.08-4.4 3.37-6.46-1.82 7.56-2.91 15.27-3.62 23-.8 7.71-.85 15.49-.54 23.23 1.05 19.94 5.54 39.83 14.23 57.88 2.99 5.99 6.35 11.83 10.5 17.11 6.12 7.47 12.53 14.76 19.84 21.09 4.8 4.1 9.99 7.78 15.54 10.8 3.27 1.65 6.51 3.39 9.94 4.68 5.01 2.03 10.19 3.61 15.42 4.94 3.83.96 7.78 1.41 11.52 2.71 5 1.57 9.47 4.61 13.03 8.43 4.93 5.23 8.09 11.87 10.2 18.67.99 2.9 1.59 5.91 2.17 8.92.15.75.22 1.52.16 2.29-6.5 2.78-13.26 5.06-20.26 6.18-4.11.78-8.29.99-12.46 1.08-10.25.24-20.47-1.76-30.12-5.12-3.74-1.42-7.49-2.85-11.03-4.72-8.06-3.84-15.64-8.7-22.46-14.46-2.92-2.55-5.83-5.13-8.4-8.03-9.16-9.83-16.3-21.41-21.79-33.65-2.39-5.55-4.61-11.18-6.37-16.96-1.17-3.94-2.36-7.89-3.26-11.91-.75-2.94-1.22-5.95-1.87-8.92-.46-2.14-.69-4.32-1.03-6.48-.85-5.43-1.28-10.93-1.33-16.43.11-6.18.25-12.37 1.07-18.5.4-2.86.67-5.74 1.15-8.6.98-5.7 2.14-11.37 3.71-16.93 3.09-11.65 7.48-22.95 12.69-33.84zm363.73-6.44c1.1 1.66 1.91 3.48 2.78 5.26 2.1 4.45 4.24 8.9 6.02 13.49 7.61 18.76 12.3 38.79 13.04 59.05.02 1.76.07 3.52.11 5.29.13 9.57-1.27 19.09-3.18 28.45-.73 3.59-1.54 7.17-2.58 10.69-4.04 14.72-10 29-18.41 41.78-8.21 12.57-19.01 23.55-31.84 31.41-5.73 3.59-11.79 6.64-18.05 9.19-5.78 2.19-11.71 4.03-17.8 5.11-6.4 1.05-12.91 1.52-19.4 1.23-7.92-.48-15.78-2.07-23.21-4.85-1.94-.8-3.94-1.46-5.84-2.33-.21-1.51.25-2.99.53-4.46 1.16-5.74 3.03-11.36 5.7-16.58 2.37-4.51 5.52-8.65 9.46-11.9 2.43-2.05 5.24-3.61 8.16-4.83 3.58-1.5 7.47-1.97 11.24-2.83 7.23-1.71 14.37-3.93 21.15-7 10.35-4.65 19.71-11.38 27.65-19.46 1.59-1.61 3.23-3.18 4.74-4.87 3.37-3.76 6.71-7.57 9.85-11.53 7.48-10.07 12.82-21.59 16.71-33.48 1.58-5.3 3.21-10.6 4.21-16.05.63-2.87 1.04-5.78 1.52-8.68.87-6.09 1.59-12.22 1.68-18.38.12-6.65.14-13.32-.53-19.94-.73-7.99-1.87-15.96-3.71-23.78z" ], + opencart: [ 640, 512, [], "f23d", "M423.3 440.7c0 25.3-20.3 45.6-45.6 45.6s-45.8-20.3-45.8-45.6 20.6-45.8 45.8-45.8c25.4 0 45.6 20.5 45.6 45.8zm-253.9-45.8c-25.3 0-45.6 20.6-45.6 45.8s20.3 45.6 45.6 45.6 45.8-20.3 45.8-45.6-20.5-45.8-45.8-45.8zm291.7-270C158.9 124.9 81.9 112.1 0 25.7c34.4 51.7 53.3 148.9 373.1 144.2 333.3-5 130 86.1 70.8 188.9 186.7-166.7 319.4-233.9 17.2-233.9z" ], + openid: [ 448, 512, [], "f19b", "M271.5 432l-68 32C88.5 453.7 0 392.5 0 318.2c0-71.5 82.5-131 191.7-144.3v43c-71.5 12.5-124 53-124 101.3 0 51 58.5 93.3 135.7 103v-340l68-33.2v384zM448 291l-131.3-28.5 36.8-20.7c-19.5-11.5-43.5-20-70-24.8v-43c46.2 5.5 87.7 19.5 120.3 39.3l35-19.8L448 291z" ], + opera: [ 496, 512, [], "f26a", "M313.9 32.7c-170.2 0-252.6 223.8-147.5 355.1 36.5 45.4 88.6 75.6 147.5 75.6 36.3 0 70.3-11.1 99.4-30.4-43.8 39.2-101.9 63-165.3 63-3.9 0-8 0-11.9-.3C104.6 489.6 0 381.1 0 248 0 111 111 0 248 0h.8c63.1.3 120.7 24.1 164.4 63.1-29-19.4-63.1-30.4-99.3-30.4zm101.8 397.7c-40.9 24.7-90.7 23.6-132-5.8 56.2-20.5 97.7-91.6 97.7-176.6 0-84.7-41.2-155.8-97.4-176.6 41.8-29.2 91.2-30.3 132.9-5 105.9 98.7 105.5 265.7-1.2 364z" ], + "optin-monster": [ 576, 512, [], "f23c", "M550.671 450.303c0 11.62-15.673 19.457-32.158 14.863-12.16-3.243-31.346-17.565-36.211-27.294-5.674-11.62 4.054-32.698 18.916-30.806 15.674 1.621 49.453 25.401 49.453 43.237zM372.86 75.223c-3.783-72.151-100.796-79.718-125.928-23.51 44.588-24.321 90.257-15.673 125.928 23.51zM74.795 407.066c-15.673 1.621-49.452 25.401-49.452 43.237 0 11.62 15.673 19.457 32.157 14.863 12.16-3.243 31.076-17.565 35.94-27.294 5.946-11.62-3.782-32.698-18.645-30.806zm497.765 14.322c1.081 3.513 1.892 7.026 1.892 10.809.81 31.616-44.317 64.045-73.503 65.125-17.295.81-34.59-8.377-42.696-23.51-113.497 4.053-226.994 4.864-340.22 0-8.377 15.133-25.672 24.05-42.967 23.51-28.915-1.081-74.043-33.509-73.503-65.125.27-3.783.811-7.296 1.892-10.809-5.566-9.463-4.845-15.282 5.405-11.62 3.243-5.134 7.026-9.458 11.08-13.782-2.57-10.917 1.27-14.094 11.079-9.188 4.594-3.243 9.998-6.485 15.944-9.188 0-15.757 11.839-11.131 17.295-5.675 12.467-1.78 20.129.709 26.753 5.675v-19.726c-12.987 0-40.641-11.375-45.94-36.212-4.974-20.725 2.607-38.075 25.132-47.56.81-5.945 8.107-14.052 14.862-15.944 7.567-1.892 12.431 4.594 14.052 10.269 7.425 0 17.757 1.465 21.078 8.107 5.405-.541 11.079-1.352 16.484-1.892-2.432-1.892-5.134-3.513-8.107-4.594-5.134-8.917-13.782-11.079-24.591-11.62 0-.81 0-1.621.27-2.702-19.727-.541-44.048-5.675-54.857-17.835-21.321-23.638-15.935-83.577 12.16-103.498 8.377-5.675 21.618-.811 22.699 9.728 2.425 20.598.399 26.833 26.212 25.942 8.107-7.836 16.755-14.592 26.483-19.997-14.862-1.352-28.914 1.621-43.778 3.783 12.752-12.48 23.953-25.442 56.748-42.427 23.511-11.89 49.993-20.808 76.205-23.239-18.646-7.837-39.993-11.891-59.721-16.484 76.475-16.214 174.569-22.159 244.289 37.562 18.105 15.403 32.427 36.211 42.696 59.992 39.799 4.853 36.47-5.581 38.643-25.132 1.081-10.269 14.322-15.403 22.699-9.458 14.862 10.539 22.159 30.806 24.59 48.101 2.162 17.835.27 41.345-12.43 55.127-10.809 12.16-34.32 17.565-53.776 18.105v2.703c-11.08.27-20.268 2.432-25.673 11.62-2.972 1.081-5.674 2.703-8.377 4.594 5.675.54 11.35 1.351 16.755 1.891 1.869-5.619 12.535-8.377 21.077-8.377 1.621-5.405 6.756-11.89 14.052-10.269s14.052 9.998 14.863 15.944c10.809 4.324 22.159 12.16 25.131 25.672 1.892 8.107 1.621 15.133.27 21.888-5.726 25.262-33.361 36.212-45.939 36.212 0 6.756 0 13.241-.27 19.726 8.01-6.006 16.367-7.158 26.752-5.675 5.919-5.919 17.565-9.41 17.565 5.675 5.675 2.703 11.349 5.945 15.944 9.188 10.1-5.051 13.669-.539 10.809 9.188 4.053 4.323 8.107 8.917 11.079 13.782 10.136-3.62 11.021 2.078 5.409 11.62zm-73.773-254.016c17.295 6.756 26.212 22.159 30.265 35.67 1.081-10.539-2.702-39.453-13.782-51.073-7.296-7.296-14.052-5.134-14.052.81.001 6.216-1.35 11.62-2.431 14.593zm-18.646 12.43c12.971 15.673 17.024 41.615 12.7 62.963 10.809-2.162 20.537-6.215 26.212-12.16 1.892-2.162 3.783-4.864 4.864-7.566-1.081-21.348-10.269-42.697-29.725-48.912-3.242 3.243-9.187 4.864-14.051 5.675zm-21.889.811c7.567 20.537 12.431 42.696 14.322 64.585 3.513 0 7.567-.27 11.62-.811 5.945-24.321-.27-51.614-14.052-63.504-3.783 0-8.107 0-11.89-.27zM77.768 167.372c-1.081-2.973-2.432-8.377-2.432-14.593 0-5.945-7.026-8.107-14.052-.81-11.35 11.62-14.863 40.534-13.782 51.073 4.053-13.512 12.971-28.915 30.266-35.67zm5.675 75.394c-4.324-21.348-.27-47.291 12.701-62.963-4.865-.811-10.809-2.432-14.052-5.675-19.457 6.215-28.375 27.563-29.726 48.912 1.351 2.702 2.972 5.404 4.864 7.566 5.675 6.215 15.403 9.998 26.213 12.16zm41.345-61.073c-5.134 1.081-9.998 2.973-14.862 4.865l-12.16 5.134v-.27c-7.296 14.052-9.999 34.319-5.405 52.965 4.594.541 8.647.811 12.7.811 2.432-22.159 9.188-43.778 19.727-63.505zm88.095-23.239c0 42.155 34.319 76.205 76.205 76.205s76.205-34.05 76.205-76.205c0-41.886-34.319-75.935-76.205-75.935s-76.205 34.049-76.205 75.935zm152.41 97.283c9.969 50.608 3.299 64.692 16.484 58.099 15.944-8.107 22.699-39.183 22.97-57.019-12.971-.81-26.213-.81-39.454-1.08zm-71.611-.541v-.27c-.27 5.134.27 38.103 4.324 41.075 11.079 5.405 39.453 4.594 51.073 1.081 5.405-1.621 2.432-37.022 1.621-41.886-18.916-.27-38.102-.27-57.018 0zm-14.053 0v-.27c-19.456.27-38.642.27-57.829.811-1.892 9.187-4.594 48.911 1.892 51.614 12.971 5.675 41.616 5.134 54.586 1.621 4.595-2.432 2.433-45.399 1.351-53.776zm-85.662 57.56c5.405 2.432 8.647 2.432 9.728-4.324 1.892-8.647 2.432-36.752 4.865-52.155-12.16.27-24.591.811-36.752 1.621-5.405 19.727.27 45.129 22.159 54.858zm-65.666-11.08c43.778 47.02 92.689 85.663 155.923 106.47 67.558-19.186 115.659-59.991 163.219-107.011-11.095-4.315-7.715-10.363-7.296-11.62-8.918-.81-17.835-1.892-26.483-2.702-9.458 32.968-35.94 52.965-46.75 31.616-2.702-5.134-3.513-11.62-4.594-16.754-3.783 8.377-13.242 8.107-24.591 8.918-13.241 1.081-31.617 1.351-44.048-2.972-2.972 12.971-11.079 12.971-26.752 14.322-14.052 1.352-48.642 4.054-54.857-10.809-1.081 28.644-35.13 9.998-45.129-7.026-3.243-5.675-5.405-11.35-7.026-17.565-7.837.81-15.673 1.621-23.511 2.702 2.443 3.663 1.549 9.052-8.105 12.431zM115.6 453.545c-5.674-23.239-18.646-49.722-33.508-54.046-22.429-6.756-68.909 23.51-66.207 54.586 12.701 19.457 39.994 35.67 59.181 36.481 17.835.81 35.94-11.08 39.724-28.914.539-2.432.81-5.134.81-8.107zm7.296-5.944c33.509-19.457 69.179-35.671 105.931-47.02-38.643-20.537-68.098-47.831-97.283-77.016-2.162 1.352-5.134 2.432-7.836 3.513-1.637 4.91 8.718 5.33 5.405 12.431-2.162 4.054-8.648 7.567-15.133 9.188-2.161 2.702-5.134 4.864-7.836 6.485h-.27c-.27 13.511-.27 27.024.27 40.535 8.939 15.964 15.426 33.314 16.752 51.884zm320.764 12.7c-36.752-21.348-74.044-41.345-115.659-52.965-13.782 6.215-27.833 11.349-42.155 15.403-2.162.811-2.162.811-4.324 0-11.89-3.783-23.239-8.107-34.859-13.241-40.265 11.62-77.286 29.185-112.416 50.803h-.27v.27c.27 0 .27 0 .27-.27 103.227 4.054 206.455 3.513 309.413 0zm27.023-64.045l-.27.27c.541-13.782.811-27.563.811-41.345-2.973-1.621-5.675-4.054-8.107-6.756-6.485-1.351-12.971-5.134-15.133-8.918-1.892-4.053 1.351-7.566 5.945-10.269-.27-.541-.541-1.621-.541-2.432-2.972-.811-5.405-1.892-7.567-3.243-31.616 29.455-65.396 56.749-103.498 76.746 38.914 11.62 75.935 28.104 111.875 47.561 1.05-14.692 7.231-35.749 16.485-51.614zm23.24 3.244c-14.593 4.323-27.834 30.806-33.509 54.046 0 23.826 21.278 37.897 40.534 37.022 19.186-.811 46.48-17.024 59.181-36.481 2.973-31.077-43.507-61.344-66.206-54.587zM290.709 134.133c.045 0 .089.003.134.003.046 0 .09-.003.136-.003h-.27zm0 96.743c28.645 0 51.884-21.618 51.884-48.371 0-36.092-40.507-58.079-72.151-44.318 9.458 2.972 16.484 11.62 16.484 21.618 0 23.257-33.291 31.955-46.48 11.35-7.297 34.067 19.368 59.721 50.263 59.721zM68.039 474.083c.54 6.486 12.16 12.701 21.618 9.458 6.756-2.703 14.593-10.539 17.295-16.214 2.973-7.026-1.081-19.997-9.728-18.375-8.917 1.621-29.725 16.754-29.185 25.131zm410.75-25.131c-8.377-1.621-12.431 11.349-9.458 18.375 2.432 5.675 10.269 13.511 17.295 16.214 9.187 3.243 21.078-2.972 21.348-9.458.811-8.377-20.267-23.51-29.185-25.131z" ], + osi: [ 495, 512, [], "f41a", "M0 259.2C2.3 123.4 97.4 26.8 213.8 11.1c138.8-18.6 255.6 75.8 278 201.1 21.3 118.8-44 230-151.6 274-9.3 3.8-14.4 1.7-18-7.7-17.8-46.3-35.6-92.7-53.4-139-3.1-8.1-1-13.2 7-16.8 24.2-11 39.3-29.4 43.3-55.8 6.4-42.4-24.5-78.7-64.5-82.2-39-3.4-71.8 23.7-77.5 59.7-5.2 33 11.1 63.7 41.9 77.7 9.6 4.4 11.5 8.6 7.8 18.4-17.9 46.6-35.8 93.2-53.7 139.9-2.6 6.9-8.3 9.3-15.5 6.5-52.6-20.3-101.4-61-130.8-119C1.9 318.7 1.6 280.2 0 259.2zm20.9-1.9c.4 6.6.6 14.3 1.3 22.1 6.3 71.9 49.6 143.5 131 183.1 3.2 1.5 4.4.8 5.6-2.3 14.9-39.1 29.9-78.2 45-117.3 1.3-3.3.6-4.8-2.4-6.7-31.6-19.9-47.3-48.5-45.6-86 1-21.6 9.3-40.5 23.8-56.3 30-32.7 77-39.8 115.5-17.6 31.9 18.4 49.5 53.8 45.2 90.4-3.6 30.6-19.3 53.9-45.7 69.8-2.7 1.6-3.5 2.9-2.3 6 15.2 39.2 30.2 78.4 45.2 117.7 1.2 3.1 2.4 3.8 5.6 2.3 35.5-16.6 65.2-40.3 88.1-72 34.8-48.2 49.1-101.9 42.3-161C459.8 112 354.1 14.7 218 31.5 111.9 44.5 22.7 134 20.9 257.3z" ], + page4: [ 496, 512, [], "f3d7", "M248 504C111 504 0 393 0 256S111 8 248 8c20.9 0 41.3 2.6 60.7 7.5L42.3 392H248v112zm0-143.6V146.8L98.6 360.4H248zm96 31.6v92.7c45.7-19.2 84.5-51.7 111.4-92.7H344zm57.4-138.2l-21.2 8.4 21.2 8.3v-16.7zm-20.3 54.5c-6.7 0-8 6.3-8 12.9v7.7h16.2v-10c0-5.9-2.3-10.6-8.2-10.6zM496 256c0 37.3-8.2 72.7-23 104.4H344V27.3C433.3 64.8 496 153.1 496 256zM360.4 143.6h68.2V96h-13.9v32.6h-13.9V99h-13.9v29.6h-12.7V96h-13.9v47.6zm68.1 185.3H402v-11c0-15.4-5.6-25.2-20.9-25.2-15.4 0-20.7 10.6-20.7 25.9v25.3h68.2v-15zm0-103l-68.2 29.7V268l68.2 29.5v-16.6l-14.4-5.7v-26.5l14.4-5.9v-16.9zm-4.8-68.5h-35.6V184H402v-12.2h11c8.6 15.8 1.3 35.3-18.6 35.3-22.5 0-28.3-25.3-15.5-37.7l-11.6-10.6c-16.2 17.5-12.2 63.9 27.1 63.9 34 0 44.7-35.9 29.3-65.3z" ], + pagelines: [ 384, 512, [], "f18c", "M384 312.7c-55.1 136.7-187.1 54-187.1 54-40.5 81.8-107.4 134.4-184.6 134.7-16.1 0-16.6-24.4 0-24.4 64.4-.3 120.5-42.7 157.2-110.1-41.1 15.9-118.6 27.9-161.6-82.2 109-44.9 159.1 11.2 178.3 45.5 9.9-24.4 17-50.9 21.6-79.7 0 0-139.7 21.9-149.5-98.1 119.1-47.9 152.6 76.7 152.6 76.7 1.6-16.7 3.3-52.6 3.3-53.4 0 0-106.3-73.7-38.1-165.2 124.6 43 61.4 162.4 61.4 162.4.5 1.6.5 23.8 0 33.4 0 0 45.2-89 136.4-57.5-4.2 134-141.9 106.4-141.9 106.4-4.4 27.4-11.2 53.4-20 77.5 0 0 83-91.8 172-20z" ], + palfed: [ 576, 512, [], "f3d8", "M384.9 193.9c0-47.4-55.2-44.2-95.4-29.8-1.3 39.4-2.5 80.7-3 119.8.7 2.8 2.6 6.2 15.1 6.2 36.8 0 83.4-42.8 83.3-96.2zm-194.5 72.2c.2 0 6.5-2.7 11.2-2.7 26.6 0 20.7 44.1-14.4 44.1-21.5 0-37.1-18.1-37.1-43 0-42 42.9-95.6 100.7-126.5 1-12.4 3-22 10.5-28.2 11.2-9 26.6-3.5 29.5 11.1 72.2-22.2 135.2 1 135.2 72 0 77.9-79.3 152.6-140.1 138.2-.1 39.4.9 74.4 2.7 100v.2c.2 3.4.6 12.5-5.3 19.1-9.6 10.6-33.4 10-36.4-22.3-4.1-44.4.2-206.1 1.4-242.5-21.5 15-58.5 50.3-58.5 75.9.2 2.5.4 4 .6 4.6zM8 181.1s-.1 37.4 38.4 37.4h30l22.4 217.2s0 44.3 44.7 44.3h288.9s44.7-.4 44.7-44.3l22.4-217.2h30s38.4 1.2 38.4-37.4c0 0 .1-37.4-38.4-37.4h-30.1c-7.3-25.6-30.2-74.3-119.4-74.3h-28V50.3s-2.7-18.4-21.1-18.4h-85.8s-21.1 0-21.1 18.4v19.1h-28.1s-105 4.2-120.5 74.3h-29S8 142.5 8 181.1z" ], + patreon: [ 512, 512, [], "f3d9", "M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z" ], + paypal: [ 384, 512, [], "f1ed", "M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z" ], + periscope: [ 448, 512, [], "f3da", "M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z" ], + phabricator: [ 496, 512, [], "f3db", "M323 262.1l-.1-13s21.7-19.8 21.1-21.2l-9.5-20c-.6-1.4-29.5-.5-29.5-.5l-9.4-9.3s.2-28.5-1.2-29.1l-20.1-9.2c-1.4-.6-20.7 21-20.7 21l-13.1-.2s-20.5-21.4-21.9-20.8l-20 8.3c-1.4.5.2 28.9.2 28.9l-9.1 9.1s-29.2-.9-29.7.4l-8.1 19.8c-.6 1.4 21 21 21 21l.1 12.9s-21.7 19.8-21.1 21.2l9.5 20c.6 1.4 29.5.5 29.5.5l9.4 9.3s-.2 31.8 1.2 32.3l20.1 8.3c1.4.6 20.7-23.5 20.7-23.5l13.1.2s20.5 23.8 21.8 23.3l20-7.5c1.4-.6-.2-32.1-.2-32.1l9.1-9.1s29.2.9 29.7-.5l8.1-19.8c.7-1.1-20.9-20.7-20.9-20.7zm-44.9-8.7c.7 17.1-12.8 31.6-30.1 32.4-17.3.8-32.1-12.5-32.8-29.6-.7-17.1 12.8-31.6 30.1-32.3 17.3-.8 32.1 12.5 32.8 29.5zm201.2-37.9l-97-97-.1.1c-75.1-73.3-195.4-72.8-269.8 1.6-50.9 51-27.8 27.9-95.7 95.3-22.3 22.3-22.3 58.7 0 81 69.9 69.4 46.4 46 97.4 97l.1-.1c75.1 73.3 195.4 72.9 269.8-1.6 51-50.9 27.9-27.9 95.3-95.3 22.3-22.3 22.3-58.7 0-81zM140.4 363.8c-59.6-59.5-59.6-156 0-215.5 59.5-59.6 156-59.5 215.6 0 59.5 59.5 59.6 156 0 215.6-59.6 59.5-156 59.4-215.6-.1z" ], + "phoenix-framework": [ 640, 512, [], "f3dc", "M212.9 344.3c3.8-.1 22.8-1.4 25.6-2.2-2.4-2.6-43.6-1-68-49.6-4.3-8.6-7.5-17.6-6.4-27.6 2.9-25.5 32.9-30 52-18.5 36 21.6 63.3 91.3 113.7 97.5 37 4.5 84.6-17 108.2-45.4-.6-.1-.8-.2-1-.1-.4.1-.8.2-1.1.3-33.3 12.1-94.3 9.7-134.7-14.8-37.6-22.8-53.1-58.7-51.8-74.6 1.8-21.3 22.9-23.2 35.9-19.6 14.4 3.9 24.4 17.6 38.9 27.4 15.6 10.4 32.9 13.7 51.3 10.3 14.9-2.7 34.4-12.3 36.5-14.5-1.1-.1-1.8-.1-2.5-.2-6.2-.6-12.4-.8-18.5-1.7C279.8 194.5 262.1 47.4 138.5 37.9 94.2 34.5 39.1 46 2.2 72.9c-.8.6-1.5 1.2-2.2 1.8.1.2.1.3.2.5.8 0 1.6-.1 2.4-.2 6.3-1 12.5-.8 18.7.3 23.8 4.3 47.7 23.1 55.9 76.5 5.3 34.3-.7 50.8 8 86.1 19 77.1 91 107.6 127.7 106.4zM75.3 64.9c-.9-1-.9-1.2-1.3-2 12.1-2.6 24.2-4.1 36.6-4.8-1.1 14.7-22.2 21.3-35.3 6.8zm196.9 350.5c-42.8 1.2-92-26.7-123.5-61.4-4.6-5-16.8-20.2-18.6-23.4l.4-.4c6.6 4.1 25.7 18.6 54.8 27 24.2 7 48.1 6.3 71.6-3.3 22.7-9.3 41-.5 43.1 2.9-18.5 3.8-20.1 4.4-24 7.9-5.1 4.4-4.6 11.7 7 17.2 26.2 12.4 63-2.8 97.2 25.4 2.4 2 8.1 7.8 10.1 10.7-.1.2-.3.3-.4.5-4.8-1.5-16.4-7.5-40.2-9.3-24.7-2-46.3 5.3-77.5 6.2zm174.8-252c16.4-5.2 41.3-13.4 66.5-3.3 16.1 6.5 26.2 18.7 32.1 34.6 3.5 9.4 5.1 19.7 5.1 28.7-.2 0-.4 0-.6.1-.2-.4-.4-.9-.5-1.3-5-22-29.9-43.8-67.6-29.9-50.2 18.6-130.4 9.7-176.9-48-.7-.9-2.4-1.7-1.3-3.2.1-.2 2.1.6 3 1.3 18.1 13.4 38.3 21.9 60.3 26.2 30.5 6.1 54.6 2.9 79.9-5.2zm102.7 117.5c-32.4.2-33.8 50.1-103.6 64.4-18.2 3.7-38.7 4.6-44.9 4.2v-.4c2.8-1.5 14.7-2.6 29.7-16.6 7.9-7.3 15.3-15.1 22.8-22.9 19.5-20.2 41.4-42.2 81.9-39 23.1 1.8 29.3 8.2 36.1 12.7.3.2.4.5.7.9-.5 0-.7.1-.9 0-7-2.7-14.3-3.3-21.8-3.3zm-12.3-24.1c-.1.2-.1.4-.2.6-28.9-4.4-48-7.9-68.5 4-17 9.9-31.4 20.5-62 24.4-27.1 3.4-45.1 2.4-66.1-8-.3-.2-.6-.4-1-.6 0-.2.1-.3.1-.5 24.9 3.8 36.4 5.1 55.5-5.8 22.3-12.9 40.1-26.6 71.3-31 29.6-4.1 51.3 2.5 70.9 16.9zM268.6 97.3c-.6-.6-1.1-1.2-2.1-2.3 7.6 0 29.7-1.2 53.4 8.4 19.7 8 32.2 21 50.2 32.9 11.1 7.3 23.4 9.3 36.4 8.1 4.3-.4 8.5-1.2 12.8-1.7.4-.1.9 0 1.5.3-.6.4-1.2.9-1.8 1.2-8.1 4-16.7 6.3-25.6 7.1-26.1 2.6-50.3-3.7-73.4-15.4-19.3-9.9-36.4-22.9-51.4-38.6zM640 335.7c-3.5 3.1-22.7 11.6-42.7 5.3-12.3-3.9-19.5-14.9-31.6-24.1-10-7.6-20.9-7.9-28.1-8.4.6-.8.9-1.2 1.2-1.4 14.8-9.2 30.5-12.2 47.3-6.5 12.5 4.2 19.2 13.5 30.4 24.2 10.8 10.4 21 9.9 23.1 10.5.1-.1.2 0 .4.4zm-212.5 137c2.2 1.2 1.6 1.5 1.5 2-18.5-1.4-33.9-7.6-46.8-22.2-21.8-24.7-41.7-27.9-48.6-29.7.5-.2.8-.4 1.1-.4 13.1.1 26.1.7 38.9 3.9 25.3 6.4 35 25.4 41.6 35.3 3.2 4.8 7.3 8.3 12.3 11.1z" ], + "phoenix-squadron": [ 513, 512, [], "f511", "M96.24 62.81C142.91 26.57 202.15 6.57 261.28 8.08c29.67-.38 59.29 5.38 87.17 15.37-24.2-4.64-49.18-6.35-73.6-2.45-43 5.35-83.26 27.23-112.16 59.35 5.69-.99 10.81-3.68 16.07-5.88 18.19-7.89 37.6-13.29 57.4-14.87 19.8-2.14 39.75-.43 59.45 1.93-14.46 2.79-29.2 4.58-43.11 9.61-34.53 11.11-65.46 33.26-86.55 62.82-13.84 19.77-23.7 42.99-24.74 67.33-.35 16.54 5.23 34.91 19.89 44.17 11.13 6.66 24.85 9.39 37.63 6.76 15.49-2.47 30.16-8.67 43.73-16.38 11.55-6.84 22.73-14.59 32.05-24.32 3.8-3.23 2.54-8.48 2.63-12.83-2.13-.34-4.4-1.11-6.32.3a203.975 203.975 0 0 1-35.93 15.42c-20.07 6.19-42.28 8.48-62.28.78 12.83 1.73 26.14.31 37.85-5.46 20.29-9.75 36.92-25.27 54.6-38.88 27.84-21.29 57.64-40.11 89.17-55.47 25.78-12.01 53.09-22.85 81.81-24.2-15.68 13.76-32.25 26.6-46.92 41.51-14.55 14.04-27.54 29.58-40.23 45.31-3.53 4.61-8.98 6.96-13.62 10.19-22.24 15.03-40.6 35.96-52.04 60.28-9.36 19.74-14.55 41.97-11.81 63.84 1.95 13.73 8.74 27.67 20.96 35.01 12.94 7.99 29.14 8.09 43.61 5.11 32.9-7.47 61.61-28.97 81.28-56 20.5-27.6 30.61-62.38 29.25-96.64-.52-7.52-1.58-15-1.67-22.55 8.02 19.54 14.87 39.83 16.7 61.01 2.01 14.32.75 28.84-1.62 43.02-1.92 11.02-5.69 21.58-7.81 32.53 20.36-22.73 34.17-51.24 39.46-81.31 5.72-35.37.58-72.36-14.25-104.95 20.84 32.12 32.43 69.79 35.81 107.8.5 12.77.5 25.58 0 38.34-2.91 34.26-12.97 67.95-29.76 98-26.2 47.48-68.2 85.89-117.54 108.32-78.52 36.34-175.2 31.41-248.72-14.72-38.84-23.78-71.06-58.32-91.68-98.96C10.72 337.43 2.04 305.5 0 273.13V241.7c3.94-69.97 40.99-136.32 96.24-178.89m222.65 80.57c5.51-.8 10.82-2.57 16.02-4.5 4.99-1.77 9.27-5.95 10.35-11.25-8.91 5-17.95 9.95-26.37 15.75z" ], + php: [ 640, 512, [], "f457", "M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z" ], + "pied-piper": [ 448, 512, [], "f2ae", "M32 419L0 479.2l.8-328C.8 85.3 54 32 120 32h327.2c-93 28.9-189.9 94.2-253.9 168.6C122.7 282 82.6 338 32 419M448 32S305.2 98.8 261.6 199.1c-23.2 53.6-28.9 118.1-71 158.6-28.9 27.8-69.8 38.2-105.3 56.3-23.2 12-66.4 40.5-84.9 66h328.4c66 0 119.3-53.3 119.3-119.2-.1 0-.1-328.8-.1-328.8z" ], + "pied-piper-alt": [ 576, 512, [], "f1a8", "M242 187c6.3-11.8 13.2-17 25.9-21.8 27.3-10.3 40.2-30.5 58.9-51.1 11.9 8.4 12 24.6 31.6 23v21.8l6.3.3c37.4-14.4 74.7-30.2 106.6-54.6 48.3-36.8 52.9-50 81.3-100l2-2.6c-.6 14.1-6.3 27.3-12.4 39.9-30.5 63.8-78.7 100.3-146.8 116.7-12.4 2.9-26.4 3.2-37.6 8.9 1.4 9.8 13.2 18.1 13.2 23 0 3.4-5.5 7.2-7.5 8.6-11.2-12.9-16.1-19.3-22.7-22.1-7.6-3.5-63.9-6.4-98.8 10zm137.9 256.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9L244 246zm-12.6 31.8l24.1 61.2 21-13.8-31.3-50.9-13.8 3.5zM555.5 0l-.6 1.1-.3.9.6-.6.3-1.4zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46v27.3l11.8-3.4-2.9-23.8h-8.9zm76.1 2.9c0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3l2 12.4c9-1.5 58.4-6.6 58.4-14.1z" ], + "pied-piper-hat": [ 640, 512, [], "f4e5", "M640 24.9c-80.8 53.6-89.4 92.5-96.4 104.4-6.7 12.2-11.7 60.3-23.3 83.6-11.7 23.6-54.2 42.2-66.1 50-11.7 7.8-28.3 38.1-41.9 64.2-108.1-4.4-167.4 38.8-259.2 93.6 29.4-9.7 43.3-16.7 43.3-16.7 94.2-36 139.3-68.3 281.1-49.2 1.1 0 1.9.6 2.8.8 3.9 2.2 5.3 6.9 3.1 10.8l-53.9 95.8c-2.5 4.7-7.8 7.2-13.1 6.1-126.8-23.8-226.9 17.3-318.9 18.6C24.1 488 0 453.4 0 451.8c0-1.1.6-1.7 1.7-1.7 0 0 38.3 0 103.1-15.3C178.4 294.5 244 245.4 315.4 245.4c0 0 71.7 0 90.6 61.9 22.8-39.7 28.3-49.2 28.3-49.2 5.3-9.4 35-77.2 86.4-141.4 51.5-64 90.4-79.9 119.3-91.8z" ], + "pied-piper-pp": [ 448, 512, [], "f1a7", "M205.3 174.6c0 21.1-14.2 38.1-31.7 38.1-7.1 0-12.8-1.2-17.2-3.7v-68c4.4-2.7 10.1-4.2 17.2-4.2 17.5 0 31.7 16.9 31.7 37.8zm52.6 67c-7.1 0-12.8 1.5-17.2 4.2v68c4.4 2.5 10.1 3.7 17.2 3.7 17.4 0 31.7-16.9 31.7-37.8 0-21.1-14.3-38.1-31.7-38.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM185 255.1c41 0 74.2-35.6 74.2-79.6 0-44-33.2-79.6-74.2-79.6-12 0-24.1 3.2-34.6 8.8h-45.7V311l51.8-10.1v-50.6c8.6 3.1 18.1 4.8 28.5 4.8zm158.4 25.3c0-44-33.2-79.6-73.9-79.6-3.2 0-6.4.2-9.6.7-3.7 12.5-10.1 23.8-19.2 33.4-13.8 15-32.2 23.8-51.8 24.8V416l51.8-10.1v-50.6c8.6 3.2 18.2 4.7 28.7 4.7 40.8 0 74-35.6 74-79.6z" ], + pinterest: [ 496, 512, [], "f0d2", "M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3.8-3.4 5-20.3 6.9-28.1.6-2.5.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z" ], + "pinterest-p": [ 384, 512, [], "f231", "M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z" ], + "pinterest-square": [ 448, 512, [], "f0d3", "M448 80v352c0 26.5-21.5 48-48 48H154.4c9.8-16.4 22.4-40 27.4-59.3 3-11.5 15.3-58.4 15.3-58.4 8 15.3 31.4 28.2 56.3 28.2 74.1 0 127.4-68.1 127.4-152.7 0-81.1-66.2-141.8-151.4-141.8-106 0-162.2 71.1-162.2 148.6 0 36 19.2 80.8 49.8 95.1 4.7 2.2 7.1 1.2 8.2-3.3.8-3.4 5-20.1 6.8-27.8.6-2.5.3-4.6-1.7-7-10.1-12.3-18.3-34.9-18.3-56 0-54.2 41-106.6 110.9-106.6 60.3 0 102.6 41.1 102.6 99.9 0 66.4-33.5 112.4-77.2 112.4-24.1 0-42.1-19.9-36.4-44.4 6.9-29.2 20.3-60.7 20.3-81.8 0-53-75.5-45.7-75.5 25 0 21.7 7.3 36.5 7.3 36.5-31.4 132.8-36.1 134.5-29.6 192.6l2.2.8H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z" ], + playstation: [ 576, 512, [], "f3df", "M570.9 372.3c-11.3 14.2-38.8 24.3-38.8 24.3L327 470.2v-54.3l150.9-53.8c17.1-6.1 19.8-14.8 5.8-19.4-13.9-4.6-39.1-3.3-56.2 2.9L327 381.1v-56.4c23.2-7.8 47.1-13.6 75.7-16.8 40.9-4.5 90.9.6 130.2 15.5 44.2 14 49.2 34.7 38 48.9zm-224.4-92.5v-139c0-16.3-3-31.3-18.3-35.6-11.7-3.8-19 7.1-19 23.4v347.9l-93.8-29.8V32c39.9 7.4 98 24.9 129.2 35.4C424.1 94.7 451 128.7 451 205.2c0 74.5-46 102.8-104.5 74.6zM43.2 410.2c-45.4-12.8-53-39.5-32.3-54.8 19.1-14.2 51.7-24.9 51.7-24.9l134.5-47.8v54.5l-96.8 34.6c-17.1 6.1-19.7 14.8-5.8 19.4 13.9 4.6 39.1 3.3 56.2-2.9l46.4-16.9v48.8c-51.6 9.3-101.4 7.3-153.9-10z" ], + "product-hunt": [ 512, 512, [], "f288", "M326.3 218.8c0 20.5-16.7 37.2-37.2 37.2h-70.3v-74.4h70.3c20.5 0 37.2 16.7 37.2 37.2zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-128.1-37.2c0-47.9-38.9-86.8-86.8-86.8H169.2v248h49.6v-74.4h70.3c47.9 0 86.8-38.9 86.8-86.8z" ], + pushed: [ 432, 512, [], "f3e1", "M407 111.9l-98.5-9 14-33.4c10.4-23.5-10.8-40.4-28.7-37L22.5 76.9c-15.1 2.7-26 18.3-21.4 36.6l105.1 348.3c6.5 21.3 36.7 24.2 47.7 7l35.3-80.8 235.2-231.3c16.4-16.8 4.3-42.9-17.4-44.8zM297.6 53.6c5.1-.7 7.5 2.5 5.2 7.4L286 100.9 108.6 84.6l189-31zM22.7 107.9c-3.1-5.1 1-10 6.1-9.1l248.7 22.7-96.9 230.7L22.7 107.9zM136 456.4c-2.6 4-7.9 3.1-9.4-1.2L43.5 179.7l127.7 197.6c-7 15-35.2 79.1-35.2 79.1zm272.8-314.5L210.1 337.3l89.7-213.7 106.4 9.7c4 1.1 5.7 5.3 2.6 8.6z" ], + python: [ 448, 512, [], "f3e2", "M167.8 36.4c-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1zm-6.7 28.4c11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4zm185.2 81.4v47.5c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6-7.7-30.9-22.3-54.2-53.4-54.2h-40.1zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3z" ], + qq: [ 448, 512, [], "f1d6", "M433.754 420.445c-11.526 1.393-44.86-52.741-44.86-52.741 0 31.345-16.136 72.247-51.051 101.786 16.842 5.192 54.843 19.167 45.803 34.421-7.316 12.343-125.51 7.881-159.632 4.037-34.122 3.844-152.316 8.306-159.632-4.037-9.045-15.25 28.918-29.214 45.783-34.415-34.92-29.539-51.059-70.445-51.059-101.792 0 0-33.334 54.134-44.859 52.741-5.37-.65-12.424-29.644 9.347-99.704 10.261-33.024 21.995-60.478 40.144-105.779C60.683 98.063 108.982.006 224 0c113.737.006 163.156 96.133 160.264 214.963 18.118 45.223 29.912 72.85 40.144 105.778 21.768 70.06 14.716 99.053 9.346 99.704z" ], + quinscape: [ 489, 512, [], "f459", "M301.9 474.6h-1.3c-87.3 0-158.1-70.8-158.1-158.1s70.8-158.1 158.1-158.1c94.9 0 168.2 83.1 157 176.6 4 5.1 8.2 9.6 11.2 15.3 13.4-30.3 20.3-62.4 20.3-97.7C489.1 117.5 379.6 8 244.5 8 109.5 8 0 117.5 0 252.6s109.5 244.6 244.5 244.6c24.8 0 47.8-3.2 70.4-10.1-5.2-3.5-9-8.2-13.4-12.6l.4.1zm-21.2-69.8c0-54.8 44.4-99.2 99.2-99.2 54.8 0 99.2 44.4 99.2 99.2 0 54.8-44.4 99.2-99.2 99.2-54.8 0-99.2-44.4-99.2-99.2" ], + quora: [ 448, 512, [], "f2c4", "M440.5 386.7h-29.3c-1.5 13.5-10.5 30.8-33 30.8-20.5 0-35.3-14.2-49.5-35.8 44.2-34.2 74.7-87.5 74.7-153C403.5 111.2 306.8 32 205 32 105.3 32 7.3 111.7 7.3 228.7c0 134.1 131.3 221.6 249 189C276 451.3 302 480 351.5 480c81.8 0 90.8-75.3 89-93.3zM297 329.2C277.5 300 253.3 277 205.5 277c-30.5 0-54.3 10-69 22.8l12.2 24.3c6.2-3 13-4 19.8-4 35.5 0 53.7 30.8 69.2 61.3-10 3-20.7 4.2-32.7 4.2-75 0-107.5-53-107.5-156.7C97.5 124.5 130 71 205 71c76.2 0 108.7 53.5 108.7 157.7.1 41.8-5.4 75.6-16.7 100.5z" ], + "r-project": [ 581, 512, [], "f4f7", "M581 226.6C581 119.1 450.9 32 290.5 32S0 119.1 0 226.6C0 322.4 103.3 402 239.4 418.1V480h99.1v-61.5c24.3-2.7 47.6-7.4 69.4-13.9L448 480h112l-67.4-113.7c54.5-35.4 88.4-84.9 88.4-139.7zm-466.8 14.5c0-73.5 98.9-133 220.8-133s211.9 40.7 211.9 133c0 50.1-26.5 85-70.3 106.4-2.4-1.6-4.7-2.9-6.4-3.7-10.2-5.2-27.8-10.5-27.8-10.5s86.6-6.4 86.6-92.7-90.6-87.9-90.6-87.9h-199V361c-74.1-21.5-125.2-67.1-125.2-119.9zm225.1 38.3v-55.6c57.8 0 87.8-6.8 87.8 27.3 0 36.5-38.2 28.3-87.8 28.3zm-.9 72.5H365c10.8 0 18.9 11.7 24 19.2-16.1 1.9-33 2.8-50.6 2.9v-22.1z" ], + ravelry: [ 512, 512, [], "f2d9", "M407.4 61.5C331.6 22.1 257.8 31 182.9 66c-11.3 5.2-15.5 10.6-19.9 19-10.3 19.2-16.2 37.4-19.9 52.7-21.2 25.6-36.4 56.1-43.3 89.9-10.6 18-20.9 41.4-23.1 71.4 0 0-.7 7.6-.5 7.9-35.3-4.6-76.2-27-76.2-27 9.1 14.5 61.3 32.3 76.3 37.9 0 0 1.7 98 64.5 131.2-11.3-17.2-13.3-20.2-13.3-20.2S94.8 369 100.4 324.7c.7 0 1.5.2 2.2.2 23.9 87.4 103.2 151.4 196.9 151.4 6.2 0 12.1-.2 18-.7 14 1.5 27.6.5 40.1-3.9 6.9-2.2 13.8-6.4 20.2-10.8 70.2-39.1 100.9-82 123.1-147.7 5.4-16 8.1-35.5 9.8-52.2 8.7-82.3-30.6-161.6-103.3-199.5zM138.8 163.2s-1.2 12.3-.7 19.7c-3.4 2.5-10.1 8.1-18.2 16.7 5.2-12.8 11.3-25.1 18.9-36.4zm-31.2 121.9c4.4-17.2 13.3-39.1 29.8-55.1 0 0 1.7 48 15.8 90.1l-41.4-6.9c-2.2-9.2-3.5-18.5-4.2-28.1zm7.9 42.8c14.8 3.2 34 7.6 43.1 9.1 27.3 76.8 108.3 124.3 108.3 124.3 1 .5 1.7.7 2.7 1-73.1-11.6-132.7-64.7-154.1-134.4zM386 444.1c-14.5 4.7-36.2 8.4-64.7 3.7 0 0-91.1-23.1-127.5-107.8 38.2.7 52.4-.2 78-3.9 39.4-5.7 79-16.2 115-33 11.8-5.4 11.1-19.4 9.6-29.8-2-12.8-11.1-12.1-21.4-4.7 0 0-82 58.6-189.8 53.7-18.7-32-26.8-110.8-26.8-110.8 41.4-35.2 83.2-59.6 168.4-52.4.2-6.4 3-27.1-20.4-28.1 0 0-93.5-11.1-146 33.5 2.5-16.5 5.9-29.3 11.1-39.4 34.2-30.8 79-49.5 128.3-49.5 106.4 0 193 87.1 193 194.5-.2 76-43.8 142-106.8 174z" ], + react: [ 512, 512, [], "f41b", "M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zm-130 189.1c4.6 8.8 9.3 17.5 14.3 26.1 5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5zm0-50.6c-6.3-14.9-11.6-29.5-16-43.6 14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26zm11.4 25.3c6.6-13.8 13.8-27.3 21.4-40.6 7.6-13.3 15.8-26.2 24.4-38.9 15-1.1 30.3-1.7 45.9-1.7 15.6 0 31 .6 45.9 1.7 8.5 12.6 16.6 25.5 24.3 38.7 7.7 13.2 14.9 26.7 21.7 40.4-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6-15.7 0-30.9-.5-45.6-1.4-8.7-12.7-16.9-25.7-24.6-39-7.7-13.3-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zM256 210.2c25.3 0 45.8 20.5 45.8 45.8 0 25.3-20.5 45.8-45.8 45.8-25.3 0-45.8-20.5-45.8-45.8 0-25.3 20.5-45.8 45.8-45.8" ], + readme: [ 576, 512, [], "f4d5", "M528.3 46.5H388.5c-48.1 0-89.9 33.3-100.4 80.3-10.6-47-52.3-80.3-100.4-80.3H48c-26.5 0-48 21.5-48 48v245.8c0 26.5 21.5 48 48 48h89.7c102.2 0 132.7 24.4 147.3 75 .7 2.8 5.2 2.8 6 0 14.7-50.6 45.2-75 147.3-75H528c26.5 0 48-21.5 48-48V94.6c0-26.4-21.3-47.9-47.7-48.1zM242 311.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5V289c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V251zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm259.3 121.7c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5V228c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.8c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V190z" ], + rebel: [ 512, 512, [], "f1d0", "M256.5 504C117.2 504 9 387.8 13.2 249.9 16 170.7 56.4 97.7 129.7 49.5c.3 0 1.9-.6 1.1.8-5.8 5.5-111.3 129.8-14.1 226.4 49.8 49.5 90 2.5 90 2.5 38.5-50.1-.6-125.9-.6-125.9-10-24.9-45.7-40.1-45.7-40.1l28.8-31.8c24.4 10.5 43.2 38.7 43.2 38.7.8-29.6-21.9-61.4-21.9-61.4L255.1 8l44.3 50.1c-20.5 28.8-21.9 62.6-21.9 62.6 13.8-23 43.5-39.3 43.5-39.3l28.5 31.8c-27.4 8.9-45.4 39.9-45.4 39.9-15.8 28.5-27.1 89.4.6 127.3 32.4 44.6 87.7-2.8 87.7-2.8 102.7-91.9-10.5-225-10.5-225-6.1-5.5.8-2.8.8-2.8 50.1 36.5 114.6 84.4 116.2 204.8C500.9 400.2 399 504 256.5 504z" ], + "red-river": [ 448, 512, [], "f3e3", "M353.2 32H94.8C42.4 32 0 74.4 0 126.8v258.4C0 437.6 42.4 480 94.8 480h258.4c52.4 0 94.8-42.4 94.8-94.8V126.8c0-52.4-42.4-94.8-94.8-94.8zM144.9 200.9v56.3c0 27-21.9 48.9-48.9 48.9V151.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9h-56.3c-12.3-.6-24.6 11.6-24 24zm176.3 72h-56.3c-12.3-.6-24.6 11.6-24 24v56.3c0 27-21.9 48.9-48.9 48.9V247.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9z" ], + reddit: [ 512, 512, [], "f1a1", "M201.5 305.5c-13.8 0-24.9-11.1-24.9-24.6 0-13.8 11.1-24.9 24.9-24.9 13.6 0 24.6 11.1 24.6 24.9 0 13.6-11.1 24.6-24.6 24.6zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-132.3-41.2c-9.4 0-17.7 3.9-23.8 10-22.4-15.5-52.6-25.5-86.1-26.6l17.4-78.3 55.4 12.5c0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.3 24.9-24.9s-11.1-24.9-24.9-24.9c-9.7 0-18 5.8-22.1 13.8l-61.2-13.6c-3-.8-6.1 1.4-6.9 4.4l-19.1 86.4c-33.2 1.4-63.1 11.3-85.5 26.8-6.1-6.4-14.7-10.2-24.1-10.2-34.9 0-46.3 46.9-14.4 62.8-1.1 5-1.7 10.2-1.7 15.5 0 52.6 59.2 95.2 132 95.2 73.1 0 132.3-42.6 132.3-95.2 0-5.3-.6-10.8-1.9-15.8 31.3-16 19.8-62.5-14.9-62.5zM302.8 331c-18.2 18.2-76.1 17.9-93.6 0-2.2-2.2-6.1-2.2-8.3 0-2.5 2.5-2.5 6.4 0 8.6 22.8 22.8 87.3 22.8 110.2 0 2.5-2.2 2.5-6.1 0-8.6-2.2-2.2-6.1-2.2-8.3 0zm7.7-75c-13.6 0-24.6 11.1-24.6 24.9 0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.1 24.9-24.6 0-13.8-11-24.9-24.9-24.9z" ], + "reddit-alien": [ 512, 512, [], "f281", "M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2.1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z" ], + "reddit-square": [ 448, 512, [], "f1a2", "M283.2 345.5c2.7 2.7 2.7 6.8 0 9.2-24.5 24.5-93.8 24.6-118.4 0-2.7-2.4-2.7-6.5 0-9.2 2.4-2.4 6.5-2.4 8.9 0 18.7 19.2 81 19.6 100.5 0 2.4-2.3 6.6-2.3 9 0zm-91.3-53.8c0-14.9-11.9-26.8-26.5-26.8-14.9 0-26.8 11.9-26.8 26.8 0 14.6 11.9 26.5 26.8 26.5 14.6 0 26.5-11.9 26.5-26.5zm90.7-26.8c-14.6 0-26.5 11.9-26.5 26.8 0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-11.9 26.8-26.5 0-14.9-11.9-26.8-26.8-26.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-99.7 140.6c-10.1 0-19 4.2-25.6 10.7-24.1-16.7-56.5-27.4-92.5-28.6l18.7-84.2 59.5 13.4c0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-12.2 26.8-26.8 0-14.6-11.9-26.8-26.8-26.8-10.4 0-19.3 6.2-23.8 14.9l-65.7-14.6c-3.3-.9-6.5 1.5-7.4 4.8l-20.5 92.8c-35.7 1.5-67.8 12.2-91.9 28.9-6.5-6.8-15.8-11-25.9-11-37.5 0-49.8 50.4-15.5 67.5-1.2 5.4-1.8 11-1.8 16.7 0 56.5 63.7 102.3 141.9 102.3 78.5 0 142.2-45.8 142.2-102.3 0-5.7-.6-11.6-2.1-17 33.6-17.2 21.2-67.2-16.1-67.2z" ], + rendact: [ 496, 512, [], "f3e4", "M248 8C111 8 0 119 0 256s111 248 248 248c18.6 0 36.7-2.1 54.1-5.9-5.6-7.4-10.8-14.4-15.9-21.3-12.4 2.1-25.2 3.3-38.3 3.3C124.3 480 24 379.7 24 256S124.3 32 248 32s224 100.3 224 224c0 71-33 134.2-84.5 175.3-25.9 18.8-39.1 21.4-83.5-44.2-78.7-112.9-48-71.1-73.7-108.3 72.8 8.9 228.5-72 168.6-168.6C314-26.8 15 93.8 59.7 226.4c3.2 9.8 14.4 38.6 45.6 38.6 2 0 2.6-.6 2-1.7-4.4-8.7-20.1-9.8-20.1-37.4 0-40.5 40.5-89.6 100.3-120 66.1-32.3 131.9-30.2 158.2 5.4 27.2 38.3-20.9 119.2-120.4 136.9 7.5-9.4 57-75.2 62.8-84 22.7-34.6 23.6-49 14-59.2-15.5-16.9-29.5-10.3-50.7-11.7-10.8-.9-113.7 181.2-136.4 216.9-5.9 9-21.2 34.1-21.2 50.9 0 21.3 2.8 51.4 20.6 51.4 10.6 0 8-18.7 8-26.6 0-12.9 27.4-49.4 74.8-104.6 20.4 36.1 57.7 114.3 130.2 209.7 98-33.1 168.5-125.8 168.5-235C496 119 385 8 248 8z" ], + renren: [ 512, 512, [], "f18b", "M214 169.1c0 110.4-61 205.4-147.6 247.4C30 373.2 8 317.7 8 256.6 8 133.9 97.1 32.2 214 12.5v156.6zM255 504c-42.9 0-83.3-11-118.5-30.4C193.7 437.5 239.9 382.9 255 319c15.5 63.9 61.7 118.5 118.8 154.7C338.7 493 298.3 504 255 504zm190.6-87.5C359 374.5 298 279.6 298 169.1V12.5c116.9 19.7 206 121.4 206 244.1 0 61.1-22 116.6-58.4 159.9z" ], + replyd: [ 448, 512, [], "f3e6", "M320 480H128C57.6 480 0 422.4 0 352V160C0 89.6 57.6 32 128 32h192c70.4 0 128 57.6 128 128v192c0 70.4-57.6 128-128 128zM193.4 273.2c-6.1-2-11.6-3.1-16.4-3.1-7.2 0-13.5 1.9-18.9 5.6-5.4 3.7-9.6 9-12.8 15.8h-1.1l-4.2-18.3h-28v138.9h36.1v-89.7c1.5-5.4 4.4-9.8 8.7-13.2 4.3-3.4 9.8-5.1 16.2-5.1 4.6 0 9.8 1 15.6 3.1l4.8-34zm115.2 103.4c-3.2 2.4-7.7 4.8-13.7 7.1-6 2.3-12.8 3.5-20.4 3.5-12.2 0-21.1-3-26.5-8.9-5.5-5.9-8.5-14.7-9-26.4h83.3c.9-4.8 1.6-9.4 2.1-13.9.5-4.4.7-8.6.7-12.5 0-10.7-1.6-19.7-4.7-26.9-3.2-7.2-7.3-13-12.5-17.2-5.2-4.3-11.1-7.3-17.8-9.2-6.7-1.8-13.5-2.8-20.6-2.8-21.1 0-37.5 6.1-49.2 18.3s-17.5 30.5-17.5 55c0 22.8 5.2 40.7 15.6 53.7 10.4 13.1 26.8 19.6 49.2 19.6 10.7 0 20.9-1.5 30.4-4.6 9.5-3.1 17.1-6.8 22.6-11.2l-12-23.6zm-21.8-70.3c3.8 5.4 5.3 13.1 4.6 23.1h-51.7c.9-9.4 3.7-17 8.2-22.6 4.5-5.6 11.5-8.5 21-8.5 8.2-.1 14.1 2.6 17.9 8zm79.9 2.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4s2 11.7 6.1 15.6zm0 100.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4 0 6.6 2 11.7 6.1 15.6z" ], + researchgate: [ 448, 512, [], "f4f8", "M0 32v448h448V32H0zm262.2 334.4c-6.6 3-33.2 6-50-14.2-9.2-10.6-25.3-33.3-42.2-63.6-8.9 0-14.7 0-21.4-.6v46.4c0 23.5 6 21.2 25.8 23.9v8.1c-6.9-.3-23.1-.8-35.6-.8-13.1 0-26.1.6-33.6.8v-8.1c15.5-2.9 22-1.3 22-23.9V225c0-22.6-6.4-21-22-23.9V193c25.8 1 53.1-.6 70.9-.6 31.7 0 55.9 14.4 55.9 45.6 0 21.1-16.7 42.2-39.2 47.5 13.6 24.2 30 45.6 42.2 58.9 7.2 7.8 17.2 14.7 27.2 14.7v7.3zm22.9-135c-23.3 0-32.2-15.7-32.2-32.2V167c0-12.2 8.8-30.4 34-30.4s30.4 17.9 30.4 17.9l-10.7 7.2s-5.5-12.5-19.7-12.5c-7.9 0-19.7 7.3-19.7 19.7v26.8c0 13.4 6.6 23.3 17.9 23.3 14.1 0 21.5-10.9 21.5-26.8h-17.9v-10.7h30.4c0 20.5 4.7 49.9-34 49.9zm-116.5 44.7c-9.4 0-13.6-.3-20-.8v-69.7c6.4-.6 15-.6 22.5-.6 23.3 0 37.2 12.2 37.2 34.5 0 21.9-15 36.6-39.7 36.6z" ], + resolving: [ 496, 512, [], "f3e7", "M281.2 278.2c46-13.3 49.6-23.5 44-43.4L314 195.5c-6.1-20.9-18.4-28.1-71.1-12.8L54.7 236.8l28.6 98.6 197.9-57.2zM248.5 8C131.4 8 33.2 88.7 7.2 197.5l221.9-63.9c34.8-10.2 54.2-11.7 79.3-8.2 36.3 6.1 52.7 25 61.4 55.2l10.7 37.8c8.2 28.1 1 50.6-23.5 73.6-19.4 17.4-31.2 24.5-61.4 33.2L203 351.8l220.4 27.1 9.7 34.2-48.1 13.3-286.8-37.3 23 80.2c36.8 22 80.3 34.7 126.3 34.7 137 0 248.5-111.4 248.5-248.3C497 119.4 385.5 8 248.5 8zM38.3 388.6L0 256.8c0 48.5 14.3 93.4 38.3 131.8z" ], + rev: [ 410, 512, [], "f5b2", "M270.67 274.89c0 36.16-29.41 65.57-65.56 65.57s-65.57-29.41-65.57-65.57 29.41-65.56 65.57-65.56 65.56 29.4 65.56 65.56zm139.55-5.05h-.13c-1.49-61.55-30.1-116.35-74.32-152.98l-45.38 26.2c43.17 28.03 71.81 76.63 71.81 131.82 0 86.62-70.47 157.09-157.09 157.09S48.02 361.5 48.02 274.88c0-81.86 62.96-149.27 142.99-156.43v39.12l108.76-62.79L191.01 32v38.32C84.31 77.57 0 166.36 0 274.89c0 111.59 89.12 202.29 200.06 204.98v.13h210.16V269.84z" ], + rocketchat: [ 448, 512, [], "f3e8", "M448 256.2c0-87.2-99.6-153.3-219.8-153.3-18.8 0-37.3 1.6-55.3 4.8-11.1-10.5-24.2-20-38-27.4C61.2 44.2 0 79.4 0 79.4s56.9 47.1 47.6 88.3c-52.3 52.3-52.5 124.1 0 176.6C56.9 385.6 0 432.6 0 432.6s61.2 35.2 134.9-.8c13.8-7.5 26.9-16.9 38-27.4 18 3.2 36.5 4.8 55.3 4.8 120.3-.1 219.8-65.8 219.8-153zm-219.7 124c-23.7 0-46.3-2.8-67.3-7.8-21.3 25.8-68.1 61.7-113.6 50.1 14.8-16 36.7-43.1 32-87.6-27.3-21.4-43.6-48.7-43.6-78.5 0-68.4 86.2-123.9 192.5-123.9S420.8 188 420.8 256.4c0 68.3-86.2 123.8-192.5 123.8zm25.6-123.9c0 14.2-11.5 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.5-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm88.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm-177.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.2 0 25.6 11.6 25.6 25.8z" ], + rockrms: [ 496, 512, [], "f3e9", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm157.4 419.5h-90l-112-131.3c-17.9-20.4-3.9-56.1 26.6-56.1h75.3l-84.6-99.3-84.3 98.9h-90L193.5 67.2c14.4-18.4 41.3-17.3 54.5 0l157.7 185.1c19 22.8 2 57.2-27.6 56.1-.6 0-74.2.2-74.2.2l101.5 118.9z" ], + safari: [ 512, 512, [], "f267", "M236.9 256.8c0-9.1 6.6-17.7 16.3-17.7 8.9 0 17.4 6.4 17.4 16.1 0 9.1-6.4 17.7-16.1 17.7-9 0-17.6-6.7-17.6-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-26.6 0c0-122.3-99.1-221.4-221.4-221.4S34.6 133.7 34.6 256 133.7 477.4 256 477.4 477.4 378.3 477.4 256zm-72.5 96.6c0 3.6 13 10.2 16.3 12.2-27.4 41.5-69.8 71.4-117.9 83.3l-4.4-18.5c-.3-2.5-1.9-2.8-4.2-2.8-1.9 0-3 2.8-2.8 4.2l4.4 18.8c-13.3 2.8-26.8 4.2-40.4 4.2-36.3 0-72-10.2-103-29.1 1.7-2.8 12.2-18 12.2-20.2 0-1.9-1.7-3.6-3.6-3.6-3.9 0-12.2 16.6-14.7 19.9-41.8-27.7-72-70.6-83.6-119.6l19.1-4.2c2.2-.6 2.8-2.2 2.8-4.2 0-1.9-2.8-3-4.4-2.8L62 294.5c-2.5-12.7-3.9-25.5-3.9-38.5 0-37.1 10.5-73.6 30.2-104.9 2.8 1.7 16.1 10.8 18.3 10.8 1.9 0 3.6-1.4 3.6-3.3 0-3.9-14.7-11.3-18-13.6 28.2-41.2 71.1-70.9 119.8-81.9l4.2 18.5c.6 2.2 2.2 2.8 4.2 2.8s3-2.8 2.8-4.4L219 61.7c12.2-2.2 24.6-3.6 37.1-3.6 37.1 0 73.3 10.5 104.9 30.2-1.9 2.8-10.8 15.8-10.8 18 0 1.9 1.4 3.6 3.3 3.6 3.9 0 11.3-14.4 13.3-17.7 41 27.7 70.3 70 81.7 118.2l-15.5 3.3c-2.5.6-2.8 2.2-2.8 4.4 0 1.9 2.8 3 4.2 2.8l15.8-3.6c2.5 12.7 3.9 25.7 3.9 38.7 0 36.3-10 72-28.8 102.7-2.8-1.4-14.4-9.7-16.6-9.7-2.1 0-3.8 1.7-3.8 3.6zm-33.2-242.2c-13 12.2-134.2 123.7-137.6 129.5l-96.6 160.5c12.7-11.9 134.2-124 137.3-129.3l96.9-160.7z" ], + sass: [ 640, 512, [], "f41e", "M551.1 291.9c-22.4.1-41.8 5.5-58 13.5-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-3.8 11.1-5.3 19.1-2.3 11.7-25.8 53.5-39.1 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-2.7 11.4-5.3 19.1-2.6 7.7-33.9 77.3-42.1 95.4-4.2 9.2-7.8 16.6-10.4 21.6s-.2.3-.4.9c-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4.3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2-.8 0-1.4 2-1.4 2s10.1-42.4-19.4-42.4c-18.4 0-44 20.2-56.6 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.8-38.2-101.9-65.2-99.1-116.5 1-18.7 7.5-67.8 127.1-127.4 98-48.8 176.4-35.4 189.9-5.6 19.4 42.5-41.9 121.6-143.7 133-38.8 4.3-59.2-10.7-64.3-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.8 28.9 18.7 6.1 64.2 9.5 119.2-11.8C367 196.5 415.1 130.2 401 74.7 386.6 18.3 293.1-.2 204.6 31.2 151.9 49.9 94.9 79.3 53.9 117.6 5.2 163.2-2.6 202.9.6 219.5c11.4 58.9 92.6 97.3 125.1 125.7-1.6.9-3.1 1.7-4.5 2.5-16.3 8.1-78.2 40.5-93.7 74.7-17.5 38.8 2.9 66.6 16.3 70.4 41.8 11.6 84.6-9.3 107.6-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.3-4.9 16.4-9.4 23.5-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.5 5 15.4 5 13.8 0 20-11.4 26.9-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.4 0 18.8-12.1 23-18.3v.1s.2-.4.7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.6-46 16.2-31.8 31.7-71.5 31.7-71.5s1.4 9.7 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2s0 .1.1.2c-3 4-6.4 8.3-9.9 12.5-12.8 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.7 2.5 11.5-.8 19.6-3.6 23.5-5.4 6.2-2.2 13.4-5.7 20.2-10.6 12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5 19.8-28.9 35.1-60.6 35.1-60.6s1.4 9.7 6.2 25.8c2.4 8.1 7.1 17 11.4 25.7-18.6 15.1-30.1 32.6-34.1 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5 6.5-2.2 14.3-5.7 21.6-11.1 12.5-9.2 24.6-22.1 23.8-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.1-10.2 62.1-7.2 55.7 6.5 66.6 41.3 64.5 55.8-2.1 14.6-13.8 22.6-17.7 25-3.9 2.4-5.1 3.3-4.8 5.1.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.2-11.8 30.3-38.7 1.6-34-31.1-71.4-89-71.1zM121.8 436.6c-18.4 20.1-44.2 27.7-55.3 21.3C54.6 451 59.3 421.4 82 400c13.8-13 31.6-25 43.4-32.4 2.7-1.6 6.6-4 11.4-6.9.8-.5 1.2-.7 1.2-.7.9-.6 1.9-1.1 2.9-1.7 8.3 30.4.3 57.2-19.1 78.3zm134.4-91.4c-6.4 15.7-19.9 55.7-28.1 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.1-11.3 21.2-14.9 23.8-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.9-13.9 0 .5.1 1 .1 1.6-.1 17.9-17.3 30-25.1 34.8zm85.6-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.6-15.3 19-24.5 1.2 3.8 1.9 7.4 1.9 10.8-.1 22.5-16.2 30.9-25.9 34.4z" ], + schlix: [ 448, 512, [], "f3ea", "M350.5 157.7l-54.2-46.1 73.4-39 78.3 44.2-97.5 40.9zM192 122.1l45.7-28.2 34.7 34.6-55.4 29-25-35.4zm-65.1 6.6l31.9-22.1L176 135l-36.7 22.5-12.4-28.8zm-23.3 88.2l-8.8-34.8 29.6-18.3 13.1 35.3-33.9 17.8zm-21.2-83.7l23.9-18.1 8.9 24-26.7 18.3-6.1-24.2zM59 206.5l-3.6-28.4 22.3-15.5 6.1 28.7L59 206.5zm-30.6 16.6l20.8-12.8 3.3 33.4-22.9 12-1.2-32.6zM1.4 268l19.2-10.2.4 38.2-21 8.8L1.4 268zm59.1 59.3l-28.3 8.3-1.6-46.8 25.1-10.7 4.8 49.2zM99 263.2l-31.1 13-5.2-40.8L90.1 221l8.9 42.2zM123.2 377l-41.6 5.9-8.1-63.5 35.2-10.8 14.5 68.4zm28.5-139.9l21.2 57.1-46.2 13.6-13.7-54.1 38.7-16.6zm85.7 230.5l-70.9-3.3-24.3-95.8 55.2-8.6 40 107.7zm-84.9-279.7l42.2-22.4 28 45.9-50.8 21.3-19.4-44.8zm41 94.9l61.3-18.7 52.8 86.6-79.8 11.3-34.3-79.2zm51.4-85.6l67.3-28.8 65.5 65.4-88.6 26.2-44.2-62.8z" ], + scribd: [ 384, 512, [], "f28a", "M42.3 252.7c-16.1-19-24.7-45.9-24.8-79.9 0-100.4 75.2-153.1 167.2-153.1 98.6-1.6 156.8 49 184.3 70.6l-50.5 72.1-37.3-24.6 26.9-38.6c-36.5-24-79.4-36.5-123-35.8-50.7-.8-111.7 27.2-111.7 76.2 0 18.7 11.2 20.7 28.6 15.6 23.3-5.3 41.9.6 55.8 14 26.4 24.3 23.2 67.6-.7 91.9-29.2 29.5-85.2 27.3-114.8-8.4zm317.7 5.9c-15.5-18.8-38.9-29.4-63.2-28.6-38.1-2-71.1 28-70.5 67.2-.7 16.8 6 33 18.4 44.3 14.1 13.9 33 19.7 56.3 14.4 17.4-5.1 28.6-3.1 28.6 15.6 0 4.3-.5 8.5-1.4 12.7-16.7 40.9-59.5 64.4-121.4 64.4-51.9.2-102.4-16.4-144.1-47.3l33.7-39.4-35.6-27.4L0 406.3l15.4 13.8c52.5 46.8 120.4 72.5 190.7 72.2 51.4 0 94.4-10.5 133.6-44.1 57.1-51.4 54.2-149.2 20.3-189.6z" ], + searchengin: [ 460, 512, [], "f3eb", "M220.6 130.3l-67.2 28.2V43.2L98.7 233.5l54.7-24.2v130.3l67.2-209.3zm-83.2-96.7l-1.3 4.7-15.2 52.9C80.6 106.7 52 145.8 52 191.5c0 52.3 34.3 95.9 83.4 105.5v53.6C57.5 340.1 0 272.4 0 191.6c0-80.5 59.8-147.2 137.4-158zm311.4 447.2c-11.2 11.2-23.1 12.3-28.6 10.5-5.4-1.8-27.1-19.9-60.4-44.4-33.3-24.6-33.6-35.7-43-56.7-9.4-20.9-30.4-42.6-57.5-52.4l-9.7-14.7c-24.7 16.9-53 26.9-81.3 28.7l2.1-6.6 15.9-49.5c46.5-11.9 80.9-54 80.9-104.2 0-54.5-38.4-102.1-96-107.1V32.3C254.4 37.4 320 106.8 320 191.6c0 33.6-11.2 64.7-29 90.4l14.6 9.6c9.8 27.1 31.5 48 52.4 57.4s32.2 9.7 56.8 43c24.6 33.2 42.7 54.9 44.5 60.3s.7 17.3-10.5 28.5zm-9.9-17.9c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8z" ], + sellcast: [ 448, 512, [], "f2da", "M353.4 32H94.7C42.6 32 0 74.6 0 126.6v258.7C0 437.4 42.6 480 94.7 480h258.7c52.1 0 94.7-42.6 94.7-94.6V126.6c0-52-42.6-94.6-94.7-94.6zm-50 316.4c-27.9 48.2-89.9 64.9-138.2 37.2-22.9 39.8-54.9 8.6-42.3-13.2l15.7-27.2c5.9-10.3 19.2-13.9 29.5-7.9 18.6 10.8-.1-.1 18.5 10.7 27.6 15.9 63.4 6.3 79.4-21.3 15.9-27.6 6.3-63.4-21.3-79.4-17.8-10.2-.6-.4-18.6-10.6-24.6-14.2-3.4-51.9 21.6-37.5 18.6 10.8-.1-.1 18.5 10.7 48.4 28 65.1 90.3 37.2 138.5zm21.8-208.8c-17 29.5-16.3 28.8-19 31.5-6.5 6.5-16.3 8.7-26.5 3.6-18.6-10.8.1.1-18.5-10.7-27.6-15.9-63.4-6.3-79.4 21.3s-6.3 63.4 21.3 79.4c0 0 18.5 10.6 18.6 10.6 24.6 14.2 3.4 51.9-21.6 37.5-18.6-10.8.1.1-18.5-10.7-48.2-27.8-64.9-90.1-37.1-138.4 27.9-48.2 89.9-64.9 138.2-37.2l4.8-8.4c14.3-24.9 52-3.3 37.7 21.5z" ], + sellsy: [ 640, 512, [], "f213", "M539.71 237.308c3.064-12.257 4.29-24.821 4.29-37.384C544 107.382 468.618 32 376.076 32c-77.22 0-144.634 53.012-163.02 127.781-15.322-13.176-34.934-20.53-55.157-20.53-46.271 0-83.962 37.69-83.962 83.961 0 7.354.92 15.015 3.065 22.369-42.9 20.225-70.785 63.738-70.785 111.234C6.216 424.843 61.68 480 129.401 480h381.198c67.72 0 123.184-55.157 123.184-123.184.001-56.384-38.916-106.025-94.073-119.508zM199.88 401.554c0 8.274-7.048 15.321-15.321 15.321H153.61c-8.274 0-15.321-7.048-15.321-15.321V290.626c0-8.273 7.048-15.321 15.321-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v110.928zm89.477 0c0 8.274-7.048 15.321-15.322 15.321h-30.949c-8.274 0-15.321-7.048-15.321-15.321V270.096c0-8.274 7.048-15.321 15.321-15.321h30.949c8.274 0 15.322 7.048 15.322 15.321v131.458zm89.477 0c0 8.274-7.047 15.321-15.321 15.321h-30.949c-8.274 0-15.322-7.048-15.322-15.321V238.84c0-8.274 7.048-15.321 15.322-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v162.714zm87.027 0c0 8.274-7.048 15.321-15.322 15.321h-28.497c-8.274 0-15.321-7.048-15.321-15.321V176.941c0-8.579 7.047-15.628 15.321-15.628h28.497c8.274 0 15.322 7.048 15.322 15.628v224.613z" ], + servicestack: [ 496, 512, [], "f3ec", "M88 216c81.7 10.2 273.7 102.3 304 232H0c99.5-8.1 184.5-137 88-232zm32-152c32.3 35.6 47.7 83.9 46.4 133.6C249.3 231.3 373.7 321.3 400 448h96C455.3 231.9 222.8 79.5 120 64z" ], + shirtsinbulk: [ 448, 512, [], "f214", "M395.208 221.583H406v33.542h-10.792v-33.542zm0-9.625H406v-33.542h-10.792v33.542zm0 86.333H406V264.75h-10.792v33.541zM358.75 135.25h-33.542v10.5h33.542v-10.5zm36.458 206.208H406v-33.542h-10.792v33.542zM311.5 135.25h-33.542v10.5H311.5v-10.5zm-47.25 0H231v10.5h33.25v-10.5zm-47.25 0h-33.25v10.5H217v-10.5zm178.208 33.542H406V135.25h-33.542v10.5h22.75v23.042zm-255.792 259l30.625 13.417 4.375-9.917-30.625-13.417-4.375 9.917zM179.083 445l30.334 13.708 4.374-9.916-30.333-13.417-4.375 9.625zm216.125-60.375H406v-33.542h-10.792v33.542zm-334.833 8.167L91 406.208l4.375-9.624-30.625-13.709-4.375 9.917zm39.666 17.499l30.625 13.417 4.375-9.917-30.625-13.416-4.375 9.916zm132.417 38.501l4.375 9.916L267.459 445l-4.375-9.625-30.626 13.417zm118.417-52.208l4.375 9.624 30.624-13.416-4.374-9.917-30.625 13.709zM311.5 413.791l4.375 9.917 30.625-13.417-4.374-9.916-30.626 13.416zm-39.667 17.501l4.375 9.917 30.625-13.417-4.375-9.917-30.625 13.417zM311.5 46.583h-33.542v10.5H311.5v-10.5zm94.209 0h-33.251v10.5h33.251v-10.5zm-188.709 0h-33.25v10.5H217v-10.5zm141.75 0h-33.542v10.5h33.542v-10.5zm-94.5 0H231v10.5h33.25v-10.5zM448 3.708v406l-226.334 98.584L0 409.708v-406h448zm-29.166 116.958H29.166V390.75l192.792 85.75 196.875-85.75V120.666zm0-87.791H29.166V91.5h389.667V32.875zM75.542 46.583H42.291v10.5h33.251v-10.5zm94.5 0H136.5v10.5h33.542v-10.5zm-47.251 0H89.25v10.5h33.542v-10.5zm7.584 236.542c0-50.167 41.125-91.292 91.292-91.292 50.458 0 91.292 41.125 91.292 91.292 0 50.458-40.833 91.292-91.292 91.292-50.167-.001-91.292-40.834-91.292-91.292zm120.75 18.084c0 13.125-23.917 14.291-32.666 14.291-12.25 0-29.75-2.625-35.875-14.875h-.875L172.666 319c14.876 9.333 29.167 12.25 47.25 12.25 19.542 0 51.042-5.833 51.042-31.209 0-48.125-78.458-16.333-78.458-37.916 0-13.125 20.708-14.875 29.75-14.875 10.791 0 29.166 3.208 35.583 13.124h.875l8.751-16.916c-15.167-6.125-27.417-11.959-44.334-11.959-20.125 0-49.583 6.417-49.583 31.792 0 44.334 77.583 11.959 77.583 37.918zM122.791 135.25H89.25v10.5h33.542v-10.5zm-69.999 10.5h22.75v-10.5H42v33.542h10.792V145.75zm0 32.666H42v33.542h10.792v-33.542zm117.25-43.166H136.5v10.5h33.542v-10.5zm-117.25 86.333H42v33.542h10.792v-33.542zm0 86.334H42v33.542h10.792v-33.542zm0-43.167H42v33.542h10.792V264.75zm0 86.333H42v33.542h10.792v-33.542z" ], + shopware: [ 495, 512, [], "f5b5", "M395.5 455.27c-42.95 31.79-93.95 48.59-147.48 48.59-137.21 0-248.02-111-248.02-248 0-137.19 111.04-248 248.02-248 61.3 0 120.14 22.55 165.68 63.5 2.62 2.36.58 6.64-2.86 6.18-17.67-2.43-36.75-3.66-56.71-3.66-129.36 0-222.4 53.47-222.4 155.35 0 109.04 92.13 145.88 176.83 178.73 33.64 13.04 65.4 25.36 86.96 41.59 1.9 1.44 1.89 4.31-.02 5.72zm99.46-222.32c-.08-.94-.55-1.83-1.27-2.44-51.76-42.96-93.62-60.48-144.48-60.48-84.13 0-80.25 52.17-80.25 53.63 0 42.6 52.06 62.01 112.34 84.49 31.07 11.59 63.19 23.57 92.68 39.93 1.88 1.05 4.26.19 5.05-1.82 18.89-48.39 17.94-90.23 15.93-113.31z" ], + simplybuilt: [ 512, 512, [], "f215", "M481.2 64h-106c-14.5 0-26.6 11.8-26.6 26.3v39.6H163.3V90.3c0-14.5-12-26.3-26.6-26.3h-106C16.1 64 4.3 75.8 4.3 90.3v331.4c0 14.5 11.8 26.3 26.6 26.3h450.4c14.8 0 26.6-11.8 26.6-26.3V90.3c-.2-14.5-12-26.3-26.7-26.3zM149.8 355.8c-36.6 0-66.4-29.7-66.4-66.4 0-36.9 29.7-66.6 66.4-66.6 36.9 0 66.6 29.7 66.6 66.6 0 36.7-29.7 66.4-66.6 66.4zm212.4 0c-36.9 0-66.6-29.7-66.6-66.6 0-36.6 29.7-66.4 66.6-66.4 36.6 0 66.4 29.7 66.4 66.4 0 36.9-29.8 66.6-66.4 66.6z" ], + sistrix: [ 448, 512, [], "f3ee", "M448 449L301.2 300.2c20-27.9 31.9-62.2 31.9-99.2 0-93.1-74.7-168.9-166.5-168.9C74.7 32 0 107.8 0 200.9s74.7 168.9 166.5 168.9c39.8 0 76.3-14.2 105-37.9l146 148.1 30.5-31zM166.5 330.8c-70.6 0-128.1-58.3-128.1-129.9S95.9 71 166.5 71s128.1 58.3 128.1 129.9-57.4 129.9-128.1 129.9z" ], + sith: [ 448, 512, [], "f512", "M0 32l69.71 118.75-58.86-11.52 69.84 91.03a146.741 146.741 0 0 0 0 51.45l-69.84 91.03 58.86-11.52L0 480l118.75-69.71-11.52 58.86 91.03-69.84c17.02 3.04 34.47 3.04 51.48 0l91.03 69.84-11.52-58.86L448 480l-69.71-118.78 58.86 11.52-69.84-91.03c3.03-17.01 3.04-34.44 0-51.45l69.84-91.03-58.86 11.52L448 32l-118.75 69.71 11.52-58.9-91.06 69.87c-8.5-1.52-17.1-2.29-25.71-2.29s-17.21.78-25.71 2.29l-91.06-69.87 11.52 58.9L0 32zm224 99.78c31.8 0 63.6 12.12 87.85 36.37 48.5 48.5 48.49 127.21 0 175.7s-127.2 48.46-175.7-.03c-48.5-48.5-48.49-127.21 0-175.7 24.24-24.25 56.05-36.34 87.85-36.34zm0 36.66c-22.42 0-44.83 8.52-61.92 25.61-34.18 34.18-34.19 89.68 0 123.87s89.65 34.18 123.84 0c34.18-34.18 34.19-89.68 0-123.87-17.09-17.09-39.5-25.61-61.92-25.61z" ], + skyatlas: [ 640, 512, [], "f216", "M640 329.3c0 65.9-52.5 114.4-117.5 114.4-165.9 0-196.6-249.7-359.7-249.7-146.9 0-147.1 212.2 5.6 212.2 42.5 0 90.9-17.8 125.3-42.5 5.6-4.1 16.9-16.3 22.8-16.3s10.9 5 10.9 10.9c0 7.8-13.1 19.1-18.7 24.1-40.9 35.6-100.3 61.2-154.7 61.2-83.4.1-154-59-154-144.9s67.5-149.1 152.8-149.1c185.3 0 222.5 245.9 361.9 245.9 99.9 0 94.8-139.7 3.4-139.7-17.5 0-35 11.6-46.9 11.6-8.4 0-15.9-7.2-15.9-15.6 0-11.6 5.3-23.7 5.3-36.3 0-66.6-50.9-114.7-116.9-114.7-53.1 0-80 36.9-88.8 36.9-6.2 0-11.2-5-11.2-11.2 0-5.6 4.1-10.3 7.8-14.4 25.3-28.8 64.7-43.7 102.8-43.7 79.4 0 139.1 58.4 139.1 137.8 0 6.9-.3 13.7-1.2 20.6 11.9-3.1 24.1-4.7 35.9-4.7 60.7 0 111.9 45.3 111.9 107.2z" ], + skype: [ 448, 512, [], "f17e", "M424.7 299.8c2.9-14 4.7-28.9 4.7-43.8 0-113.5-91.9-205.3-205.3-205.3-14.9 0-29.7 1.7-43.8 4.7C161.3 40.7 137.7 32 112 32 50.2 32 0 82.2 0 144c0 25.7 8.7 49.3 23.3 68.2-2.9 14-4.7 28.9-4.7 43.8 0 113.5 91.9 205.3 205.3 205.3 14.9 0 29.7-1.7 43.8-4.7 19 14.6 42.6 23.3 68.2 23.3 61.8 0 112-50.2 112-112 .1-25.6-8.6-49.2-23.2-68.1zm-194.6 91.5c-65.6 0-120.5-29.2-120.5-65 0-16 9-30.6 29.5-30.6 31.2 0 34.1 44.9 88.1 44.9 25.7 0 42.3-11.4 42.3-26.3 0-18.7-16-21.6-42-28-62.5-15.4-117.8-22-117.8-87.2 0-59.2 58.6-81.1 109.1-81.1 55.1 0 110.8 21.9 110.8 55.4 0 16.9-11.4 31.8-30.3 31.8-28.3 0-29.2-33.5-75-33.5-25.7 0-42 7-42 22.5 0 19.8 20.8 21.8 69.1 33 41.4 9.3 90.7 26.8 90.7 77.6 0 59.1-57.1 86.5-112 86.5z" ], + slack: [ 448, 512, [], "f198", "M244.2 217.5l19.3 57.7-59.8 20-19.3-57.7 59.8-20zm41.4 243.7C131.6 507.4 65 471.6 18.8 317.6S8.4 97 162.4 50.8C316.4 4.6 383 40.4 429.2 194.4c46.2 154 10.4 220.6-143.6 266.8zM366.2 265c-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-19.3-57.7 29-9.7c12.2-3.9 18.6-17.2 14.7-29.4-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-59.8 20.1-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l19.3 57.7-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 59.8-20.1 10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 29-9.7c12.2-4.2 18.6-17.5 14.7-29.6z" ], + "slack-hash": [ 448, 512, [], "f3ef", "M446.2 270.4c-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-30.3-90 45.4-15.1c19.1-6.2 29.1-26.8 23-45.9-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-93.4 31.2-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-45.3 15c-19.1 6.2-29.1 26.8-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l30.3 90L78 354.8c-19 6.2-29.1 26.9-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 93.6-31.3 15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 45.4-15.1c19-6 29.1-26.7 22.9-45.7zm-254.1 47.2l-30.3-90.2 93.5-31.3 30.3 90.2-93.5 31.3z" ], + slideshare: [ 512, 512, [], "f1e7", "M249.429 211.436c0 31.716-27.715 57.717-61.717 57.717-34.001 0-61.716-26.001-61.716-57.717 0-32.001 27.715-57.716 61.716-57.716 34.001 0 61.717 25.715 61.717 57.716zm254.294 50.002c-18.286 22.573-53.144 50.288-106.289 72.003C453.722 525.163 260 555.735 263.143 457.446c0 1.714-.286-52.859-.286-93.432-4.285-.858-8.571-2-13.714-3.143 0 40.858-.286 98.289-.286 96.575C252 555.735 58.278 525.163 114.566 333.441c-53.145-21.715-88.003-49.43-106.29-72.003-9.143-13.714.858-28.287 16.001-17.715 2 1.428 4.285 2.857 6.285 4.285V49.716C30.563 22.287 51.135 0 76.565 0h359.157c25.429 0 46.002 22.287 46.002 49.716v198.293l6-4.285c15.143-10.573 25.143 4 15.999 17.714zm-46.572-189.15c0-32.858-10.572-45.716-40.859-45.716H98.566c-31.716 0-40.573 10.858-40.573 45.716v192.293c67.717 35.43 125.72 29.144 157.435 28.001 13.429-.286 22.001 2.286 27.144 7.715 1.689 1.687 10.023 9.446 20.287 17.143 1.143-15.715 10.001-25.715 33.716-24.858 32.287 1.428 91.718 7.715 160.577-29.716V72.288zM331.146 153.72c-34.002 0-61.716 25.715-61.716 57.716 0 31.716 27.715 57.717 61.716 57.717 34.287 0 61.716-26.001 61.716-57.717 0-32.001-27.429-57.716-61.716-57.716z" ], + snapchat: [ 496, 512, [], "f2ab", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm169.5 338.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C183.1 100 230.7 96 244.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z" ], + "snapchat-ghost": [ 512, 512, [], "f2ac", "M510.846 392.673c-5.211 12.157-27.239 21.089-67.36 27.318-2.064 2.786-3.775 14.686-6.507 23.956-1.625 5.566-5.623 8.869-12.128 8.869l-.297-.005c-9.395 0-19.203-4.323-38.852-4.323-26.521 0-35.662 6.043-56.254 20.588-21.832 15.438-42.771 28.764-74.027 27.399-31.646 2.334-58.025-16.908-72.871-27.404-20.714-14.643-29.828-20.582-56.241-20.582-18.864 0-30.736 4.72-38.852 4.72-8.073 0-11.213-4.922-12.422-9.04-2.703-9.189-4.404-21.263-6.523-24.13-20.679-3.209-67.31-11.344-68.498-32.15a10.627 10.627 0 0 1 8.877-11.069c69.583-11.455 100.924-82.901 102.227-85.934.074-.176.155-.344.237-.515 3.713-7.537 4.544-13.849 2.463-18.753-5.05-11.896-26.872-16.164-36.053-19.796-23.715-9.366-27.015-20.128-25.612-27.504 2.437-12.836 21.725-20.735 33.002-15.453 8.919 4.181 16.843 6.297 23.547 6.297 5.022 0 8.212-1.204 9.96-2.171-2.043-35.936-7.101-87.29 5.687-115.969C158.122 21.304 229.705 15.42 250.826 15.42c.944 0 9.141-.089 10.11-.089 52.148 0 102.254 26.78 126.723 81.643 12.777 28.65 7.749 79.792 5.695 116.009 1.582.872 4.357 1.942 8.599 2.139 6.397-.286 13.815-2.389 22.069-6.257 6.085-2.846 14.406-2.461 20.48.058l.029.01c9.476 3.385 15.439 10.215 15.589 17.87.184 9.747-8.522 18.165-25.878 25.018-2.118.835-4.694 1.655-7.434 2.525-9.797 3.106-24.6 7.805-28.616 17.271-2.079 4.904-1.256 11.211 2.46 18.748.087.168.166.342.239.515 1.301 3.03 32.615 74.46 102.23 85.934 6.427 1.058 11.163 7.877 7.725 15.859z" ], + "snapchat-square": [ 448, 512, [], "f2ad", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6.5 314.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C159.1 100 206.7 96 220.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z" ], + soundcloud: [ 640, 512, [], "f1be", "M111.4 256.3l5.8 65-5.8 68.3c-.3 2.5-2.2 4.4-4.4 4.4s-4.2-1.9-4.2-4.4l-5.6-68.3 5.6-65c0-2.2 1.9-4.2 4.2-4.2 2.2 0 4.1 2 4.4 4.2zm21.4-45.6c-2.8 0-4.7 2.2-5 5l-5 105.6 5 68.3c.3 2.8 2.2 5 5 5 2.5 0 4.7-2.2 4.7-5l5.8-68.3-5.8-105.6c0-2.8-2.2-5-4.7-5zm25.5-24.1c-3.1 0-5.3 2.2-5.6 5.3l-4.4 130 4.4 67.8c.3 3.1 2.5 5.3 5.6 5.3 2.8 0 5.3-2.2 5.3-5.3l5.3-67.8-5.3-130c0-3.1-2.5-5.3-5.3-5.3zM7.2 283.2c-1.4 0-2.2 1.1-2.5 2.5L0 321.3l4.7 35c.3 1.4 1.1 2.5 2.5 2.5s2.2-1.1 2.5-2.5l5.6-35-5.6-35.6c-.3-1.4-1.1-2.5-2.5-2.5zm23.6-21.9c-1.4 0-2.5 1.1-2.5 2.5l-6.4 57.5 6.4 56.1c0 1.7 1.1 2.8 2.5 2.8s2.5-1.1 2.8-2.5l7.2-56.4-7.2-57.5c-.3-1.4-1.4-2.5-2.8-2.5zm25.3-11.4c-1.7 0-3.1 1.4-3.3 3.3L47 321.3l5.8 65.8c.3 1.7 1.7 3.1 3.3 3.1 1.7 0 3.1-1.4 3.1-3.1l6.9-65.8-6.9-68.1c0-1.9-1.4-3.3-3.1-3.3zm25.3-2.2c-1.9 0-3.6 1.4-3.6 3.6l-5.8 70 5.8 67.8c0 2.2 1.7 3.6 3.6 3.6s3.6-1.4 3.9-3.6l6.4-67.8-6.4-70c-.3-2.2-2-3.6-3.9-3.6zm241.4-110.9c-1.1-.8-2.8-1.4-4.2-1.4-2.2 0-4.2.8-5.6 1.9-1.9 1.7-3.1 4.2-3.3 6.7v.8l-3.3 176.7 1.7 32.5 1.7 31.7c.3 4.7 4.2 8.6 8.9 8.6s8.6-3.9 8.6-8.6l3.9-64.2-3.9-177.5c-.4-3-2-5.8-4.5-7.2zm-26.7 15.3c-1.4-.8-2.8-1.4-4.4-1.4s-3.1.6-4.4 1.4c-2.2 1.4-3.6 3.9-3.6 6.7l-.3 1.7-2.8 160.8s0 .3 3.1 65.6v.3c0 1.7.6 3.3 1.7 4.7 1.7 1.9 3.9 3.1 6.4 3.1 2.2 0 4.2-1.1 5.6-2.5 1.7-1.4 2.5-3.3 2.5-5.6l.3-6.7 3.1-58.6-3.3-162.8c-.3-2.8-1.7-5.3-3.9-6.7zm-111.4 22.5c-3.1 0-5.8 2.8-5.8 6.1l-4.4 140.6 4.4 67.2c.3 3.3 2.8 5.8 5.8 5.8 3.3 0 5.8-2.5 6.1-5.8l5-67.2-5-140.6c-.2-3.3-2.7-6.1-6.1-6.1zm376.7 62.8c-10.8 0-21.1 2.2-30.6 6.1-6.4-70.8-65.8-126.4-138.3-126.4-17.8 0-35 3.3-50.3 9.4-6.1 2.2-7.8 4.4-7.8 9.2v249.7c0 5 3.9 8.6 8.6 9.2h218.3c43.3 0 78.6-35 78.6-78.3.1-43.6-35.2-78.9-78.5-78.9zm-296.7-60.3c-4.2 0-7.5 3.3-7.8 7.8l-3.3 136.7 3.3 65.6c.3 4.2 3.6 7.5 7.8 7.5 4.2 0 7.5-3.3 7.5-7.5l3.9-65.6-3.9-136.7c-.3-4.5-3.3-7.8-7.5-7.8zm-53.6-7.8c-3.3 0-6.4 3.1-6.4 6.7l-3.9 145.3 3.9 66.9c.3 3.6 3.1 6.4 6.4 6.4 3.6 0 6.4-2.8 6.7-6.4l4.4-66.9-4.4-145.3c-.3-3.6-3.1-6.7-6.7-6.7zm26.7 3.4c-3.9 0-6.9 3.1-6.9 6.9L227 321.3l3.9 66.4c.3 3.9 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9l4.2-66.4-4.2-141.7c0-3.9-3-6.9-6.9-6.9z" ], + speakap: [ 448, 512, [], "f3f3", "M352 32H96C43.2 32 0 75.2 0 128v256c0 52.8 43.2 96 96 96h256c52.8 0 96-43.2 96-96V128c0-52.8-43.2-96-96-96zM221 382.9c-39.6 0-81.9-17.8-81.9-53.7V302H179v17.8c0 15.1 19.5 24.5 41.9 24.5 24.2 0 41.3-10.4 41.3-29.5 0-23.8-27.2-31.9-54.7-42.6-31.9-12.4-63.1-26.2-63.1-69.1 0-48 38.6-66.4 79.9-66.4 37.6 0 75.5 14.1 75.5 41.9v31.2h-39.9v-16.1c0-12.1-17.8-18.5-35.6-18.5-19.5 0-35.6 8.1-35.6 26.2 0 22.1 22.5 29.2 47 38.9 35.9 12.4 71.1 27.2 71.1 71.5.1 48.6-40.8 71.1-85.8 71.1z" ], + spotify: [ 496, 512, [], "f1bc", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm100.7 364.9c-4.2 0-6.8-1.3-10.7-3.6-62.4-37.6-135-39.2-206.7-24.5-3.9 1-9 2.6-11.9 2.6-9.7 0-15.8-7.7-15.8-15.8 0-10.3 6.1-15.2 13.6-16.8 81.9-18.1 165.6-16.5 237 26.2 6.1 3.9 9.7 7.4 9.7 16.5s-7.1 15.4-15.2 15.4zm26.9-65.6c-5.2 0-8.7-2.3-12.3-4.2-62.5-37-155.7-51.9-238.6-29.4-4.8 1.3-7.4 2.6-11.9 2.6-10.7 0-19.4-8.7-19.4-19.4s5.2-17.8 15.5-20.7c27.8-7.8 56.2-13.6 97.8-13.6 64.9 0 127.6 16.1 177 45.5 8.1 4.8 11.3 11 11.3 19.7-.1 10.8-8.5 19.5-19.4 19.5zm31-76.2c-5.2 0-8.4-1.3-12.9-3.9-71.2-42.5-198.5-52.7-280.9-29.7-3.6 1-8.1 2.6-12.9 2.6-13.2 0-23.3-10.3-23.3-23.6 0-13.6 8.4-21.3 17.4-23.9 35.2-10.3 74.6-15.2 117.5-15.2 73 0 149.5 15.2 205.4 47.8 7.8 4.5 12.9 10.7 12.9 22.6 0 13.6-11 23.3-23.2 23.3z" ], + squarespace: [ 512, 512, [], "f5be", "M186.12 343.34c-9.65 9.65-9.65 25.29 0 34.94 9.65 9.65 25.29 9.65 34.94 0L378.24 221.1c19.29-19.29 50.57-19.29 69.86 0s19.29 50.57 0 69.86L293.95 445.1c19.27 19.29 50.53 19.31 69.82.04l.04-.04 119.25-119.24c38.59-38.59 38.59-101.14 0-139.72-38.59-38.59-101.15-38.59-139.72 0l-157.22 157.2zm244.53-104.8c-9.65-9.65-25.29-9.65-34.93 0l-157.2 157.18c-19.27 19.29-50.53 19.31-69.82.05l-.05-.05c-9.64-9.64-25.27-9.65-34.92-.01l-.01.01c-9.65 9.64-9.66 25.28-.02 34.93l.02.02c38.58 38.57 101.14 38.57 139.72 0l157.2-157.2c9.65-9.65 9.65-25.29.01-34.93zm-261.99 87.33l157.18-157.18c9.64-9.65 9.64-25.29 0-34.94-9.64-9.64-25.27-9.64-34.91 0L133.72 290.93c-19.28 19.29-50.56 19.3-69.85.01l-.01-.01c-19.29-19.28-19.31-50.54-.03-69.84l.03-.03L218.03 66.89c-19.28-19.29-50.55-19.3-69.85-.02l-.02.02L28.93 186.14c-38.58 38.59-38.58 101.14 0 139.72 38.6 38.59 101.13 38.59 139.73.01zm-87.33-52.4c9.64 9.64 25.27 9.64 34.91 0l157.21-157.19c19.28-19.29 50.55-19.3 69.84-.02l.02.02c9.65 9.65 25.29 9.65 34.93 0 9.65-9.65 9.65-25.29 0-34.93-38.59-38.59-101.13-38.59-139.72 0L81.33 238.54c-9.65 9.64-9.65 25.28-.01 34.93h.01z" ], + "stack-exchange": [ 448, 512, [], "f18d", "M17.7 332.3h412.7v22c0 37.7-29.3 68-65.3 68h-19L259.3 512v-89.7H83c-36 0-65.3-30.3-65.3-68v-22zm0-23.6h412.7v-85H17.7v85zm0-109.4h412.7v-85H17.7v85zM365 0H83C47 0 17.7 30.3 17.7 67.7V90h412.7V67.7C430.3 30.3 401 0 365 0z" ], + "stack-overflow": [ 384, 512, [], "f16c", "M293.7 300l-181.2-84.5 16.7-36.5 181.3 84.7-16.8 36.3zm48-76L188.2 95.7l-25.5 30.8 153.5 128.3 25.5-30.8zm39.6-31.7L262 32l-32 24 119.3 160.3 32-24zM290.7 311L95 269.7 86.8 309l195.7 41 8.2-39zm31.6 129H42.7V320h-40v160h359.5V320h-40v120zm-39.8-80h-200v39.7h200V360z" ], + staylinked: [ 440, 512, [], "f3f5", "M201.6 127.4c4.1-3.2 10.3-3 13.8.5l170 167.3-2.7-2.7 44.3 41.3c3.7 3.5 3.3 9-.7 12.2l-198 163.9c-9.9 7.6-17.3.8-17.3.8L2.3 314.6c-3.5-3.5-3-9 1.2-12.2l45.8-34.9c4.2-3.2 10.4-3 13.9.5l151.9 147.5c3.7 3.5 10 3.7 14.2.4l93.2-74c4.1-3.2 4.5-8.7.9-12.2l-84-81.3c-3.6-3.5-9.9-3.7-14-.5l-.1.1c-4.1 3.2-10.4 3-14-.5l-68.1-64.3c-3.5-3.5-3.1-9 1.1-12.2l57.3-43.6m14.8 257.3c3.7 3.5 10.1 3.7 14.3.4l50.2-38.8-.3-.3 7.7-6c4.2-3.2 4.6-8.7.9-12.2l-57.1-54.4c-3.6-3.5-10-3.7-14.2-.5l-.1.1c-4.2 3.2-10.5 3.1-14.2-.4L109 180.8c-3.6-3.5-3.1-8.9 1.1-12.2l92.2-71.5c4.1-3.2 10.3-3 13.9.5l160.4 159c3.7 3.5 10 3.7 14.1.5l45.8-35.8c4.1-3.2 4.4-8.7.7-12.2L226.7 2.5c-1.5-1.2-8-5.5-16.3 1.1L3.6 165.7c-4.2 3.2-4.8 8.7-1.2 12.2l42.3 41.7" ], + steam: [ 496, 512, [], "f1b6", "M496 256c0 137-111.2 248-248.4 248-113.8 0-209.6-76.3-239-180.4l95.2 39.3c6.4 32.1 34.9 56.4 68.9 56.4 39.2 0 71.9-32.4 70.2-73.5l84.5-60.2c52.1 1.3 95.8-40.9 95.8-93.5 0-51.6-42-93.5-93.7-93.5s-93.7 42-93.7 93.5v1.2L176.6 279c-15.5-.9-30.7 3.4-43.5 12.1L0 236.1C10.2 108.4 117.1 8 247.6 8 384.8 8 496 119 496 256zM155.7 384.3l-30.5-12.6a52.79 52.79 0 0 0 27.2 25.8c26.9 11.2 57.8-1.6 69-28.4 5.4-13 5.5-27.3.1-40.3-5.4-13-15.5-23.2-28.5-28.6-12.9-5.4-26.7-5.2-38.9-.6l31.5 13c19.8 8.2 29.2 30.9 20.9 50.7-8.3 19.9-31 29.2-50.8 21zm173.8-129.9c-34.4 0-62.4-28-62.4-62.3s28-62.3 62.4-62.3 62.4 28 62.4 62.3-27.9 62.3-62.4 62.3zm.1-15.6c25.9 0 46.9-21 46.9-46.8 0-25.9-21-46.8-46.9-46.8s-46.9 21-46.9 46.8c.1 25.8 21.1 46.8 46.9 46.8z" ], + "steam-square": [ 448, 512, [], "f1b7", "M185.2 356.5c7.7-18.5-1-39.7-19.6-47.4l-29.5-12.2c11.4-4.3 24.3-4.5 36.4.5 12.2 5.1 21.6 14.6 26.7 26.7 5 12.2 5 25.6-.1 37.7-10.5 25.1-39.4 37-64.6 26.5-11.6-4.8-20.4-13.6-25.4-24.2l28.5 11.8c18.6 7.8 39.9-.9 47.6-19.4zM400 32H48C21.5 32 0 53.5 0 80v160.7l116.6 48.1c12-8.2 26.2-12.1 40.7-11.3l55.4-80.2v-1.1c0-48.2 39.3-87.5 87.6-87.5s87.6 39.3 87.6 87.5c0 49.2-40.9 88.7-89.6 87.5l-79 56.3c1.6 38.5-29.1 68.8-65.7 68.8-31.8 0-58.5-22.7-64.5-52.7L0 319.2V432c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-99.7 222.5c-32.2 0-58.4-26.1-58.4-58.3s26.2-58.3 58.4-58.3 58.4 26.2 58.4 58.3-26.2 58.3-58.4 58.3zm.1-14.6c24.2 0 43.9-19.6 43.9-43.8 0-24.2-19.6-43.8-43.9-43.8-24.2 0-43.9 19.6-43.9 43.8 0 24.2 19.7 43.8 43.9 43.8z" ], + "steam-symbol": [ 448, 512, [], "f3f6", "M395.5 177.5c0 33.8-27.5 61-61 61-33.8 0-61-27.3-61-61s27.3-61 61-61c33.5 0 61 27.2 61 61zm52.5.2c0 63-51 113.8-113.7 113.8L225 371.3c-4 43-40.5 76.8-84.5 76.8-40.5 0-74.7-28.8-83-67L0 358V250.7L97.2 290c15.1-9.2 32.2-13.3 52-11.5l71-101.7c.5-62.3 51.5-112.8 114-112.8C397 64 448 115 448 177.7zM203 363c0-34.7-27.8-62.5-62.5-62.5-4.5 0-9 .5-13.5 1.5l26 10.5c25.5 10.2 38 39 27.7 64.5-10.2 25.5-39.2 38-64.7 27.5-10.2-4-20.5-8.3-30.7-12.2 10.5 19.7 31.2 33.2 55.2 33.2 34.7 0 62.5-27.8 62.5-62.5zm207.5-185.3c0-42-34.3-76.2-76.2-76.2-42.3 0-76.5 34.2-76.5 76.2 0 42.2 34.3 76.2 76.5 76.2 41.9.1 76.2-33.9 76.2-76.2z" ], + "sticker-mule": [ 576, 512, [], "f3f7", "M353.1 509.8c-5.9 2.9-32.1 3.2-36.5-.5-4.1-3-2.2-11.9-1.5-15 2.2-15-2.5-7.9-9.8-11.5-3.1-1.5-4.1-5.5-4.6-10-.5-1.5-1-2.5-1.5-3.5-1.7-10.7 6.8-33.6 8.2-43.4 4.9-23.7-.7-37.2 1.5-46.9 3.7-16.2 4.1-3.5 4.1-29.9-1.4-25.9 3.3-36.9.5-38.9-14.8 0-64.3 10.7-112.2 2-46.1-8.9-59.4-29-65.4-30.9-10.3-4.5-23.2.5-27.3 7-.1.1-35 70.6-39.6 87.8-6.2 20.5-.5 47.4 4.1 66.8 0 .1 4.5 14.6 10.3 19.5 2.1 1.5 5.1 2.5 7.2 4.5 2.8 2.7 9.4 15.2 9.8 16 2.6 4.5 3.6 8-1.5 10.5-3.6 2-9.3 2.5-14.4 2.5-2.6.5-1.5 3.5-3.1 5-2.9 2.8-20.7 6.1-29.9 2.5-2.6-1-5.7-3-6.2-5-1.5-4 2.1-9-1-12.5-4.5-2.9-13.1-2-17-12-2.2-5.4-2.6-7.6-2.6-49.4 0-9.7-5.9-38.7-8.2-46.9-1.5-5.5-1.5-11.5 0-16 .3-.9 4.1-4.6 4.1-13-1-1.5-4.6-.5-5.1-1.5-10.4-80.6-5.9-79-7.7-98.3-1.5-16-10.9-43.9-6.7-64.3.5-2.4 3.4-21 24.2-38.9 31-26.7 48.4-38.3 159-11.5 1.1.4 66.3 21.1 110.7-9 15.5-11.3 28.8-11.3 35.5-16 .1-.1 61.7-52.1 87-65.3 47.2-29.4 69.9-16.7 75.1-18 4.7-1 13.4-25.8 17-25.8 5.5 0 1.6 20.2 3.6 25.9.5 2 3.6 5 6.2 5 2.3 0 1.7-.8 10.3-5 8.4-5.4 14.9-17.6 20.6-17 11.7 1.6-19 41.6-19 46.9 0 2 .2.8 4.6 9.5 2.6 5.5 4.6 13.5 6.2 20 8.3 29.7 5.7 14.6 13.4 36.9 20.2 50.1 20.6 45.2 20.6 52.9 0 7.5-4.1 11-7.2 16.5-1.5 3-4.6 7.5-7.2 8-2.7.7 7-1.5-13.4 2.5-7.2 1-13.4-4.5-14.9-9.5-1.6-4.7 2.8-10.1-11.8-22.9-10.3-10-21.1-11.3-31.9-17-9.8-5.7-11.9 1-18 8-18 22.9-34 46.9-52 69.8-11.8 15-24.2 30.4-33.5 47.4-3.9 6.8-9.5 28.1-10.3 29.9-6.2 17.7-5.5 25.8-16.5 68.3-3.1 10-5.7 21.4-8.7 32.4-2.2 6.8-7.4 49.3-.5 59.4 2.1 3.5 8.7 4.5 11.3 8 .1.1 9.6 18.2 9.3 20 0 6.1-9.4 5.6-11.3 6.5-4.8 2.9-3.8 5.9-6.4 7.4" ], + strava: [ 369, 512, [], "f428", "M301.6 292l-43.9 88.2-44.6-88.2h-67.6l112.2 220 111.5-220h-67.6zM151.4 0L0 292h89.2l62.2-116.1L213.1 292h88.5L151.4 0z" ], + stripe: [ 640, 512, [], "f429", "M640 261.6c0-45.5-22-81.4-64.2-81.4s-67.9 35.9-67.9 81.1c0 53.5 30.3 78.2 73.5 78.2 21.2 0 37.1-4.8 49.2-11.5v-33.4c-12.1 6.1-26 9.8-43.6 9.8-17.3 0-32.5-6.1-34.5-26.9h86.9c.2-2.3.6-11.6.6-15.9m-87.9-16.8c0-20 12.3-28.4 23.4-28.4 10.9 0 22.5 8.4 22.5 28.4h-45.9zm-112.9-64.6c-17.4 0-28.6 8.2-34.8 13.9l-2.3-11H363v204.8l44.4-9.4.1-50.2c6.4 4.7 15.9 11.2 31.4 11.2 31.8 0 60.8-23.2 60.8-79.6.1-51.6-29.3-79.7-60.5-79.7m-10.6 122.5c-10.4 0-16.6-3.8-20.9-8.4l-.3-66c4.6-5.1 11-8.8 21.2-8.8 16.2 0 27.4 18.2 27.4 41.4.1 23.9-10.9 41.8-27.4 41.8M346.4 124v36.2l-44.6 9.5v-36.2l44.6-9.5m-44.5 59.2h44.6v153.2h-44.6V183.2zm-47.8 13.1c10.4-19.1 31.1-15.2 37.1-13.1V224c-5.7-1.8-23.4-4.5-33.9 9.3v103.1H213V183.2h38.4l2.7 13.1m-89-13.1h33.7V221h-33.7v63.2c0 26.2 28 18 33.7 15.7v33.8c-5.9 3.2-16.6 5.9-31.2 5.9-26.3 0-46.1-17-46.1-43.3l.2-142.4 43.3-9.2.1 38.5zM44.9 228.3c0 20 67.9 10.5 67.9 63.4 0 32-25.4 47.8-62.3 47.8-15.3 0-32-3-48.5-10.1v-40c14.9 8.1 33.9 14.2 48.6 14.2 9.9 0 17-2.7 17-10.9 0-21.2-67.5-13.2-67.5-62.4 0-31.4 24-50.2 60-50.2 14.7 0 29.4 2.3 44.1 8.1V230c-13.5-7.3-30.7-11.4-44.2-11.4-9.3.1-15.1 2.8-15.1 9.7" ], + "stripe-s": [ 362, 512, [], "f42a", "M144.3 154.6c0-22.3 18.6-30.9 48.4-30.9 43.4 0 98.5 13.3 141.9 36.7V26.1C287.3 7.2 240.1 0 192.8 0 77.1 0 0 60.4 0 161.4c0 157.9 216.8 132.3 216.8 200.4 0 26.4-22.9 34.9-54.7 34.9-47.2 0-108.2-19.5-156.1-45.5v128.5c53 22.8 106.8 32.4 156 32.4 118.6 0 200.3-51 200.3-153.6 0-170.2-218-139.7-218-203.9" ], + studiovinari: [ 512, 512, [], "f3f8", "M480.3 187.7l4.2 28v28l-25.1 44.1-39.8 78.4-56.1 67.5-79.1 37.8-17.7 24.5-7.7 12-9.6 4s17.3-63.6 19.4-63.6c2.1 0 20.3.7 20.3.7l66.7-38.6-92.5 26.1-55.9 36.8-22.8 28-6.6 1.4 20.8-73.6 6.9-5.5 20.7 12.9 88.3-45.2 56.8-51.5 14.8-68.4-125.4 23.3 15.2-18.2-173.4-53.3 81.9-10.5-166-122.9L133.5 108 32.2 0l252.9 126.6-31.5-38L378 163 234.7 64l18.7 38.4-49.6-18.1L158.3 0l194.6 122L310 66.2l108 96.4 12-8.9-21-16.4 4.2-37.8L451 89.1l29.2 24.7 11.5 4.2-7 6.2 8.5 12-13.1 7.4-10.3 20.2 10.5 23.9z" ], + stumbleupon: [ 512, 512, [], "f1a4", "M502.9 266v69.7c0 62.1-50.3 112.4-112.4 112.4-61.8 0-112.4-49.8-112.4-111.3v-70.2l34.3 16 51.1-15.2V338c0 14.7 12 26.5 26.7 26.5S417 352.7 417 338v-72h85.9zm-224.7-58.2l34.3 16 51.1-15.2V173c0-60.5-51.1-109-112.1-109-60.8 0-112.1 48.2-112.1 108.2v162.4c0 14.9-12 26.7-26.7 26.7S86 349.5 86 334.6V266H0v69.7C0 397.7 50.3 448 112.4 448c61.6 0 112.4-49.5 112.4-110.8V176.9c0-14.7 12-26.7 26.7-26.7s26.7 12 26.7 26.7v30.9z" ], + "stumbleupon-circle": [ 496, 512, [], "f1a3", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 177.5c-9.8 0-17.8 8-17.8 17.8v106.9c0 40.9-33.9 73.9-74.9 73.9-41.4 0-74.9-33.5-74.9-74.9v-46.5h57.3v45.8c0 10 8 17.8 17.8 17.8s17.8-7.9 17.8-17.8V200.1c0-40 34.2-72.1 74.7-72.1 40.7 0 74.7 32.3 74.7 72.6v23.7l-34.1 10.1-22.9-10.7v-20.6c.1-9.6-7.9-17.6-17.7-17.6zm167.6 123.6c0 41.4-33.5 74.9-74.9 74.9-41.2 0-74.9-33.2-74.9-74.2V263l22.9 10.7 34.1-10.1v47.1c0 9.8 8 17.6 17.8 17.6s17.8-7.9 17.8-17.6v-48h57.3c-.1 45.9-.1 46.4-.1 46.4z" ], + superpowers: [ 448, 512, [], "f2dd", "M448 32c-83.3 11-166.8 22-250 33-92 12.5-163.3 86.7-169 180-3.3 55.5 18 109.5 57.8 148.2L0 480c83.3-11 166.5-22 249.8-33 91.8-12.5 163.3-86.8 168.7-179.8 3.5-55.5-18-109.5-57.7-148.2L448 32zm-79.7 232.3c-4.2 79.5-74 139.2-152.8 134.5-79.5-4.7-140.7-71-136.3-151 4.5-79.2 74.3-139.3 153-134.5 79.3 4.7 140.5 71 136.1 151z" ], + supple: [ 640, 512, [], "f3f9", "M640 262.5c0 64.1-109 116.1-243.5 116.1-24.8 0-48.6-1.8-71.1-5 7.7.4 15.5.6 23.4.6 134.5 0 243.5-56.9 243.5-127.1 0-29.4-19.1-56.4-51.2-78 60 21.1 98.9 55.1 98.9 93.4zM47.7 227.9c-.1-70.2 108.8-127.3 243.3-127.6 7.9 0 15.6.2 23.3.5-22.5-3.2-46.3-4.9-71-4.9C108.8 96.3-.1 148.5 0 212.6c.1 38.3 39.1 72.3 99.3 93.3-32.3-21.5-51.5-48.6-51.6-78zm60.2 39.9s10.5 13.2 29.3 13.2c17.9 0 28.4-11.5 28.4-25.1 0-28-40.2-25.1-40.2-39.7 0-5.4 5.3-9.1 12.5-9.1 5.7 0 11.3 2.6 11.3 6.6v3.9h14.2v-7.9c0-12.1-15.4-16.8-25.4-16.8-16.5 0-28.5 10.2-28.5 24.1 0 26.6 40.2 25.4 40.2 39.9 0 6.6-5.8 10.1-12.3 10.1-11.9 0-20.7-10.1-20.7-10.1l-8.8 10.9zm120.8-73.6v54.4c0 11.3-7.1 17.8-17.8 17.8-10.7 0-17.8-6.5-17.8-17.7v-54.5h-15.8v55c0 18.9 13.4 31.9 33.7 31.9 20.1 0 33.4-13 33.4-31.9v-55h-15.7zm34.4 85.4h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.8-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5.1 14.7-14 14.7h-12.6zm57 43h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.7-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5 14.7-14 14.7h-12.6zm57.1 34.8c0 5.8 2.4 8.2 8.2 8.2h37.6c5.8 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-18.6c-1.7 0-2.6-1-2.6-2.6v-61.2c0-5.7-2.4-8.2-8.2-8.2H401v13.4h5.2c1.7 0 2.6 1 2.6 2.6v61.2zm63.4 0c0 5.8 2.4 8.2 8.2 8.2H519c5.7 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-19.7c-1.7 0-2.6-1-2.6-2.6v-20.3h27.7v-13.4H488v-22.4h19.2c1.7 0 2.6 1 2.6 2.6v5.2H524v-13c0-5.7-2.5-8.2-8.2-8.2h-51.6v13.4h7.8v63.9zm58.9-76v5.9h1.6v-5.9h2.7v-1.2h-7v1.2h2.7zm5.7-1.2v7.1h1.5v-5.7l2.3 5.7h1.3l2.3-5.7v5.7h1.5v-7.1h-2.3l-2.1 5.1-2.1-5.1h-2.4z" ], + teamspeak: [ 511, 512, [], "f4f9", "M.82 237.82c2.36-15.52 10.69-27.04 24.88-34.03 3.5-1.85 5.65-3.5 6.37-7.81 6.17-33.41 19.53-63.94 39.37-91.59 2.36-3.19 4.01-5.35 1.03-9.35-3.7-5.35-1.03-10.18 2.98-14.49 28.06-31.87 61.88-55.1 101.98-67.44 95.81-29.4 180.1-9.35 252.37 60.45 6.68 6.37 15.52 12.85 6.99 24.36-1.34 1.85 1.03 3.5 2.16 5.04 20.66 28.06 34.23 59.42 40.4 93.65.82 3.7 2.98 5.04 5.86 6.37 17.37 8.84 25.7 23.34 26.01 42.25 0 17.17 1.85 34.54-1.03 51.71-4.01 24.67-29.19 41.74-53.25 36.7-7.2-1.64-9.35-7.2-9.35-14.19 0-28.06.82-56.44 0-84.6-1.85-75.76-36.18-132.81-102.28-169.41C234.28 4.98 92.11 72.42 67.54 196.91c-6.06 30.42-1.74 48.27-3.7 125.82-.31 7.2-4.32 11.2-12.03 11.51C20.97 335.58 0 316.05 0 285.21v-20.87m221.74 106.81c11.82-4.32 20.05-11.82 22.51-24.36 2.36-12.34-12.03-30.02-32.38-48.73-20.87-19.22-48.22-39.06-63.43-46.57-21.69-12.03-41.74-1.85-46.26 22.72-5.04 26.21 0 51.4 14.49 73.91 10.18 15.52 25.39 22.72 43.38 24.05 11.62.62 52.54 2.16 61.69-1.02m129.83 5.55c36.5 2.81 59.33-28.55 58.39-60.45-2.14-45.17-66.17-16.48-87.79-8.02-73.16 28.14-45.05 54.92-22.2 60.75m149.26-1.33c-2.98-2.36-7.2-1.03-8.33 2.36-8.02 25.39-44.72 112.46-172.08 121.51-149.67 10.49 80.29 43.59 145.36-6.37 22.72-17.37 47.6-35.05 46.57-85.43-.32-10.07-4.84-26.72-11.52-32.07" ], + telegram: [ 496, 512, [], "f2c6", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm121.8 169.9l-40.7 191.8c-3 13.6-11.1 16.9-22.4 10.5l-62-45.7-29.9 28.8c-3.3 3.3-6.1 6.1-12.5 6.1l4.4-63.1 114.9-103.8c5-4.4-1.1-6.9-7.7-2.5l-142 89.4-61.2-19.1c-13.3-4.2-13.6-13.3 2.8-19.7l239.1-92.2c11.1-4 20.8 2.7 17.2 19.5z" ], + "telegram-plane": [ 448, 512, [], "f3fe", "M446.7 98.6l-67.6 318.8c-5.1 22.5-18.4 28.1-37.3 17.5l-103-75.9-49.7 47.8c-5.5 5.5-10.1 10.1-20.7 10.1l7.4-104.9 190.9-172.5c8.3-7.4-1.8-11.5-12.9-4.1L117.8 284 16.2 252.2c-22.1-6.9-22.5-22.1 4.6-32.7L418.2 66.4c18.4-6.9 34.5 4.1 28.5 32.2z" ], + "tencent-weibo": [ 384, 512, [], "f1d5", "M72.3 495.8c1.4 19.9-27.6 22.2-29.7 2.9C31 368.8 73.7 259.2 144 185.5c-15.6-34 9.2-77.1 50.6-77.1 30.3 0 55.1 24.6 55.1 55.1 0 44-49.5 70.8-86.9 45.1-65.7 71.3-101.4 169.8-90.5 287.2zM192 .1C66.1.1-12.3 134.3 43.7 242.4 52.4 259.8 79 246.9 70 229 23.7 136.4 91 29.8 192 29.8c75.4 0 136.9 61.4 136.9 136.9 0 90.8-86.9 153.9-167.7 133.1-19.1-4.1-25.6 24.4-6.6 29.1 110.7 23.2 204-60 204-162.3C358.6 74.7 284 .1 192 .1z" ], + themeco: [ 441, 512, [], "f5c6", "M199.74 12.29c9.74-5.64 25.59-5.73 35.39-.21l188.13 105.95c9.81 5.52 17.76 19.14 17.76 30.38v213.87c0 11.26-7.93 24.89-17.71 30.46L235.09 499.88c-9.78 5.57-25.58 5.48-35.29-.21L17.58 392.95C7.87 387.26 0 373.52 0 362.27V148.41c0-11.26 7.9-24.96 17.63-30.59L199.74 12.29zM123.54 209c-15.69 0-31.39.14-47.08.14v99.87h18.83v-29.39h28.25c48.94 0 48.79-70.62 0-70.62zm137.96 98.73l-30.25-34.1c36.4-7.39 34.26-64.21-10.7-64.49-15.84 0-31.67-.14-47.51-.14v100.01h18.83v-33.38H210l29.1 33.38h22.4v-1.28zm-40.94-81.04c22.98 0 22.9 31.96 0 31.96h-28.68v-31.96h28.68zm-94.07-1.57c20.85 0 20.78 38.24 0 38.24H94.68v-38.23l31.81-.01zm189.65-17.97c-67.4 0-69.86 104.15 0 104.15 68.39-.01 68.33-104.15 0-104.15zm0 17.12c43.43 0 44.1 69.76 0 69.76-44.12 0-43.74-69.76 0-69.76z" ], + themeisle: [ 512, 512, [], "f2b2", "M208 88.286c0-10 6.286-21.714 17.715-21.714 11.142 0 17.714 11.714 17.714 21.714 0 10.285-6.572 21.714-17.714 21.714C214.286 110 208 98.571 208 88.286zm304 160c0 36.001-11.429 102.286-36.286 129.714-22.858 24.858-87.428 61.143-120.857 70.572l-1.143.286v32.571c0 16.286-12.572 30.571-29.143 30.571-10 0-19.429-5.714-24.572-14.286-5.427 8.572-14.856 14.286-24.856 14.286-10 0-19.429-5.714-24.858-14.286-5.142 8.572-14.571 14.286-24.57 14.286-10.286 0-19.429-5.714-24.858-14.286-5.143 8.572-14.571 14.286-24.571 14.286-18.857 0-29.429-15.714-29.429-32.857-16.286 12.285-35.715 19.428-56.571 19.428-22 0-43.429-8.285-60.286-22.857 10.285-.286 20.571-2.286 30.285-5.714-20.857-5.714-39.428-18.857-52-36.286 21.37 4.645 46.209 1.673 67.143-11.143-22-22-56.571-58.857-68.572-87.428C1.143 321.714 0 303.714 0 289.429c0-49.714 20.286-160 86.286-160 10.571 0 18.857 4.858 23.143 14.857a158.792 158.792 0 0 1 12-15.428c2-2.572 5.714-5.429 7.143-8.286 7.999-12.571 11.714-21.142 21.714-34C182.571 45.428 232 17.143 285.143 17.143c6 0 12 .285 17.714 1.143C313.714 6.571 328.857 0 344.572 0c14.571 0 29.714 6 40 16.286.857.858 1.428 2.286 1.428 3.428 0 3.714-10.285 13.429-12.857 16.286 4.286 1.429 15.714 6.858 15.714 12 0 2.857-2.857 5.143-4.571 7.143 31.429 27.714 49.429 67.143 56.286 108 4.286-5.143 10.285-8.572 17.143-8.572 10.571 0 20.857 7.144 28.571 14.001C507.143 187.143 512 221.714 512 248.286zM188 89.428c0 18.286 12.571 37.143 32.286 37.143 19.714 0 32.285-18.857 32.285-37.143 0-18-12.571-36.857-32.285-36.857-19.715 0-32.286 18.858-32.286 36.857zM237.714 194c0-19.714 3.714-39.143 8.571-58.286-52.039 79.534-13.531 184.571 68.858 184.571 21.428 0 42.571-7.714 60-20 2-7.429 3.714-14.857 3.714-22.572 0-14.286-6.286-21.428-20.572-21.428-4.571 0-9.143.857-13.429 1.714-63.343 12.668-107.142 3.669-107.142-63.999zm-41.142 254.858c0-11.143-8.858-20.857-20.286-20.857-11.429 0-20 9.715-20 20.857v32.571c0 11.143 8.571 21.142 20 21.142 11.428 0 20.286-9.715 20.286-21.142v-32.571zm49.143 0c0-11.143-8.572-20.857-20-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20-10 20-21.142v-32.571zm49.713 0c0-11.143-8.857-20.857-20.285-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20.285-9.715 20.285-21.142v-32.571zm49.715 0c0-11.143-8.857-20.857-20.286-20.857-11.428 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.858 21.142 20.286 21.142 11.429 0 20.286-10 20.286-21.142v-32.571zM421.714 286c-30.857 59.142-90.285 102.572-158.571 102.572-96.571 0-160.571-84.572-160.571-176.572 0-16.857 2-33.429 6-49.714-20 33.715-29.714 72.572-29.714 111.429 0 60.286 24.857 121.715 71.429 160.857 5.143-9.714 14.857-16.286 26-16.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.571-14.286 24.858-14.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.857-14.286 24.858-14.286 10 0 19.428 5.714 24.857 14.286 5.143-8.571 14.571-14.286 24.572-14.286 10.857 0 20.857 6.572 25.714 16 43.427-36.286 68.569-92 71.426-148.286zm10.572-99.714c0-53.714-34.571-105.714-92.572-105.714-30.285 0-58.571 15.143-78.857 36.857C240.862 183.812 233.41 254 302.286 254c28.805 0 97.357-28.538 84.286 36.857 28.857-26 45.714-65.714 45.714-104.571z" ], + "trade-federation": [ 496, 512, [], "f513", "M202.45 108.42v81.61H38.94l48.22 61.91h114.73v196.75h64.61V252.96h83.27v-62.69h-83.18V171.1h145.62v-62.68H202.45zm4.86 6h197.77v50.68H259.44v30.93h83.18v50.93h-83.26v195.73h-52.73V245.94H89.86l-39.95-49.91h157.4v-81.61zM247.99 8.8C111.03 8.8 0 119.83 0 256.8s111.03 248 247.99 248S496 393.76 496 256.8 384.96 8.8 247.99 8.8zm.02 13.24c129.66 0 234.76 105.12 234.76 234.78s-105.1 234.76-234.76 234.76S13.23 386.47 13.23 256.81 118.35 22.04 248.01 22.04zm0 7.89c-125.3 0-226.89 101.57-226.89 226.87s101.59 226.89 226.89 226.89S474.88 382.1 474.88 256.8 373.31 29.93 248.01 29.93zm-.02 13.3c117.95 0 213.56 95.62 213.56 213.56s-95.62 213.56-213.56 213.56S34.43 374.75 34.43 256.8 130.04 43.23 247.99 43.23zm-73.32 104.8l15.66 18.05-22.16-9.45-12.33 20.47 2.15-23.99-23.28-5.4 23.48-5.37-2.06-23.81 12.37 20.67 22.01-9.32-15.84 18.15zm-47.14-46.54l8.01 12.4 12.69-5.86-9.32 11.45 9.5 10.25-13.77-5.32-6.82 12.2.81-14.74-13.71-2.71 14.27-3.78-1.66-13.89zm250.77 75.59l11.99 19.56 20.88-9.11-14.9 17.45 15.11 17.04-21.2-8.78-11.54 19.64 1.8-22.87-22.24-4.9 22.31-5.36-2.21-22.67zm-107.05 98.45l13.86-3.22-1.28-14.17 7.35 12.18 13.08-5.59-9.31 10.75 9.36 10.71-13.1-5.54-7.29 12.21 1.22-14.17-13.89-3.16zm-125.43 6.5l23.73-3.87-1.73-24.53 11.01 21.38 22.79-9.22-16.93 17.08 15.81 18.83-21.47-10.82-13.02 20.86 3.66-23.77-23.85-5.94zm63.44-165.66v81.61H54.16l36.72 46.01h117.7v196.75h48.82V245.01h83.27v-47.03H257.4v-34.83h145.73v-46.78H209.26zm10.86 11.2h171.8v24.36H246.88v56.23h82.93v23.94h-82.93v197.42h-26.76V232.1H96.31l-20.09-23.94h143.9v-80.59z" ], + trello: [ 448, 512, [], "f181", "M392 32H56C25.1 32 0 57.1 0 88v336c0 30.9 25.1 56 56 56h336c30.9 0 56-25.1 56-56V88c0-30.9-25.1-56-56-56zM194.9 371.4c0 14.8-12 26.9-26.9 26.9H85.1c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9H168c14.8 0 26.9 12 26.9 26.9v254.3zm194.9-112c0 14.8-12 26.9-26.9 26.9H280c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9h82.9c14.8 0 26.9 12 26.9 26.9v142.3z" ], + tripadvisor: [ 576, 512, [], "f262", "M166.4 280.521c0 13.236-10.73 23.966-23.966 23.966s-23.966-10.73-23.966-23.966 10.73-23.966 23.966-23.966 23.966 10.729 23.966 23.966zm264.962-23.956c-13.23 0-23.956 10.725-23.956 23.956 0 13.23 10.725 23.956 23.956 23.956 13.23 0 23.956-10.725 23.956-23.956-.001-13.231-10.726-23.956-23.956-23.956zm89.388 139.49c-62.667 49.104-153.276 38.109-202.379-24.559l-30.979 46.325-30.683-45.939c-48.277 60.39-135.622 71.891-197.885 26.055-64.058-47.158-77.759-137.316-30.601-201.374A186.762 186.762 0 0 0 0 139.416l90.286-.05a358.48 358.48 0 0 1 197.065-54.03 350.382 350.382 0 0 1 192.181 53.349l96.218.074a185.713 185.713 0 0 0-28.352 57.649c46.793 62.747 34.964 151.37-26.648 199.647zM259.366 281.761c-.007-63.557-51.535-115.075-115.092-115.068C80.717 166.7 29.2 218.228 29.206 281.785c.007 63.557 51.535 115.075 115.092 115.068 63.513-.075 114.984-51.539 115.068-115.052v-.04zm28.591-10.455c5.433-73.44 65.51-130.884 139.12-133.022a339.146 339.146 0 0 0-139.727-27.812 356.31 356.31 0 0 0-140.164 27.253c74.344 1.582 135.299 59.424 140.771 133.581zm251.706-28.767c-21.992-59.634-88.162-90.148-147.795-68.157-59.634 21.992-90.148 88.162-68.157 147.795v.032c22.038 59.607 88.198 90.091 147.827 68.113 59.615-22.004 90.113-88.162 68.125-147.783zm-326.039 37.975v.115c-.057 39.328-31.986 71.163-71.314 71.106-39.328-.057-71.163-31.986-71.106-71.314.057-39.328 31.986-71.163 71.314-71.106 39.259.116 71.042 31.94 71.106 71.199zm-24.512 0v-.084c-.051-25.784-20.994-46.645-46.778-46.594-25.784.051-46.645 20.994-46.594 46.777.051 25.784 20.994 46.645 46.777 46.594 25.726-.113 46.537-20.968 46.595-46.693zm313.423 0v.048c-.02 39.328-31.918 71.194-71.247 71.173s-71.194-31.918-71.173-71.247c.02-39.328 31.918-71.194 71.247-71.173 39.29.066 71.121 31.909 71.173 71.199zm-24.504-.008c-.009-25.784-20.918-46.679-46.702-46.67-25.784.009-46.679 20.918-46.67 46.702.009 25.784 20.918 46.678 46.702 46.67 25.765-.046 46.636-20.928 46.67-46.693v-.009z" ], + tumblr: [ 320, 512, [], "f173", "M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z" ], + "tumblr-square": [ 448, 512, [], "f174", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-82.3 364.2c-8.5 9.1-31.2 19.8-60.9 19.8-75.5 0-91.9-55.5-91.9-87.9v-90h-29.7c-3.4 0-6.2-2.8-6.2-6.2v-42.5c0-4.5 2.8-8.5 7.1-10 38.8-13.7 50.9-47.5 52.7-73.2.5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2h-52.1V321c0 21.4 14.8 33.5 42.5 22.4 3-1.2 5.6-2 8-1.4 2.2.5 3.6 2.1 4.6 4.9l13.8 40.2c1 3.2 2 6.7-.3 9.1z" ], + twitch: [ 448, 512, [], "f1e8", "M40.1 32L10 108.9v314.3h107V480h60.2l56.8-56.8h87l117-117V32H40.1zm357.8 254.1L331 353H224l-56.8 56.8V353H76.9V72.1h321v214zM331 149v116.9h-40.1V149H331zm-107 0v116.9h-40.1V149H224z" ], + twitter: [ 512, 512, [], "f099", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z" ], + "twitter-square": [ 448, 512, [], "f081", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z" ], + typo3: [ 433, 512, [], "f42b", "M330.8 341c-7 2.3-11.6 2.3-18.5 2.3-57.2 0-140.6-198.5-140.6-264.9 0-24.7 5.4-32.4 13.9-39.4-69.5 8.5-149.3 34-176.3 66.4-5.4 7.7-9.3 20.8-9.3 37.1C0 246 106.8 480 184.1 480c36.3 0 97.3-59.5 146.7-139M294.5 32c71.8 0 138.8 11.6 138.8 52.5 0 82.6-52.5 182.3-78.8 182.3-47.9 0-101.7-132.1-101.7-198.5 0-30.9 11.6-36.3 41.7-36.3" ], + uber: [ 448, 512, [], "f402", "M414.1 32H33.9C15.2 32 0 47.2 0 65.9V446c0 18.8 15.2 34 33.9 34H414c18.7 0 33.9-15.2 33.9-33.9V65.9C448 47.2 432.8 32 414.1 32zM237.6 391.1C163 398.6 96.4 344.2 88.9 269.6h94.4V290c0 3.7 3 6.8 6.8 6.8H258c3.7 0 6.8-3 6.8-6.8v-67.9c0-3.7-3-6.8-6.8-6.8h-67.9c-3.7 0-6.8 3-6.8 6.8v20.4H88.9c7-69.4 65.4-122.2 135.1-122.2 69.7 0 128.1 52.8 135.1 122.2 7.5 74.5-46.9 141.1-121.5 148.6z" ], + uikit: [ 448, 512, [], "f403", "M443.9 128v256L218 512 0 384V169.7l87.6 45.1v117l133.5 75.5 135.8-75.5v-151l-101.1-57.6 87.6-53.1L443.9 128zM308.6 49.1L223.8 0l-88.6 54.8 86 47.3 87.4-53z" ], + uniregistry: [ 384, 512, [], "f404", "M281.1 220.1H384v-14.8H281.1v14.8zm0-37.1H384v-12.4H281.1V183zm0 74.2H384v-17.3H281.1v17.3zm-157.7 86.7H8.5c2.6 8.5 5.8 16.8 9.6 24.8h138.3c-12.9-5.7-24.1-14.2-33-24.8m145.7-12.4h109.7c1.8-7.3 3.1-14.7 3.9-22.3H278.3c-2.1 7.9-5.2 15.4-9.2 22.3m-41.5 37.1H367c3.7-8 5.8-16.2 8.5-24.8h-115c-8.8 10.7-20.1 19.2-32.9 24.8M384 32H281.1v2.5H384V32zM192 480c39.5 0 76.2-11.8 106.8-32.2H85.3C115.8 468.2 152.5 480 192 480m89.1-334.2H384V136H281.1v9.8zm0-37.1H384v-7.4H281.1v7.4zm0-37.1H384v-4.9H281.1v4.9zm-178.2 99H0V183h102.9v-12.4zM38.8 405.7h305.3c6.7-8.5 12.6-17.6 17.8-27.2H23c5.2 9.6 9.2 18.7 15.8 27.2m64.1-118.8v-12.4H0v12.4c0 2.5 0 5 .1 7.4h103.1c-.2-2.4-.3-4.9-.3-7.4m178.2 0c0 2.5-.1 5-.4 7.4h103.1c.1-2.5.2-4.9.2-7.4v-12.4H281.1v12.4zm-203 156h227.7c11.8-8.7 22.7-18.6 32.2-29.7H44.9c9.6 11 21.4 21 33.2 29.7m24.8-376.2H0v4.9h102.9v-4.9zm0-34.7H0v2.5h102.9V32zm0 173.3H0v14.8h102.9v-14.8zm0 34.6H0v17.3h102.9v-17.3zm0-103.9H0v9.9h102.9V136zm0-34.7H0v7.4h102.9v-7.4zm2.8 207.9H1.3c.9 7.6 2.2 15 3.9 22.3h109.7c-4-6.9-7.2-14.4-9.2-22.3" ], + untappd: [ 640, 512, [], "f405", "M401.3 49.9c-79.8 160.1-84.6 152.5-87.9 173.2l-5.2 32.8c-1.9 12-6.6 23.5-13.7 33.4L145.6 497.1c-7.6 10.6-20.4 16.2-33.4 14.6-40.3-5-77.8-32.2-95.3-68.5-5.7-11.8-4.5-25.8 3.1-36.4l148.9-207.9c7.1-9.9 16.4-18 27.2-23.7l29.3-15.5c18.5-9.8 9.7-11.9 135.6-138.9 1-4.8 1-7.3 3.6-8 3-.7 6.6-1 6.3-4.6l-.4-4.6c-.2-1.9 1.3-3.6 3.2-3.6 4.5-.1 13.2 1.2 25.6 10 12.3 8.9 16.4 16.8 17.7 21.1.6 1.8-.6 3.7-2.4 4.2l-4.5 1.1c-3.4.9-2.5 4.4-2.3 7.4.1 2.8-2.3 3.6-6.5 6.1zM230.1 36.4c3.4.9 2.5 4.4 2.3 7.4-.2 2.7 2.1 3.5 6.4 6 7.9 15.9 15.3 30.5 22.2 44 .7 1.3 2.3 1.5 3.3.5 11.2-12 24.6-26.2 40.5-42.6 1.3-1.4 1.4-3.5.1-4.9-8-8.2-16.5-16.9-25.6-26.1-1-4.7-1-7.3-3.6-8-3-.8-6.6-1-6.3-4.6.3-3.3 1.4-8.1-2.8-8.2-4.5-.1-13.2 1.1-25.6 10-12.3 8.9-16.4 16.8-17.7 21.1-1.4 4.2 3.6 4.6 6.8 5.4zM620 406.7L471.2 198.8c-13.2-18.5-26.6-23.4-56.4-39.1-11.2-5.9-14.2-10.9-30.5-28.9-1-1.1-2.9-.9-3.6.5-46.3 88.8-47.1 82.8-49 94.8-1.7 10.7-1.3 20 .3 29.8 1.9 12 6.6 23.5 13.7 33.4l148.9 207.9c7.6 10.6 20.2 16.2 33.1 14.7 40.3-4.9 78-32 95.7-68.6 5.4-11.9 4.3-25.9-3.4-36.6z" ], + usb: [ 640, 512, [], "f287", "M641.5 256c0 3.1-1.7 6.1-4.5 7.5L547.9 317c-1.4.8-2.8 1.4-4.5 1.4-1.4 0-3.1-.3-4.5-1.1-2.8-1.7-4.5-4.5-4.5-7.8v-35.6H295.7c25.3 39.6 40.5 106.9 69.6 106.9H392V354c0-5 3.9-8.9 8.9-8.9H490c5 0 8.9 3.9 8.9 8.9v89.1c0 5-3.9 8.9-8.9 8.9h-89.1c-5 0-8.9-3.9-8.9-8.9v-26.7h-26.7c-75.4 0-81.1-142.5-124.7-142.5H140.3c-8.1 30.6-35.9 53.5-69 53.5C32 327.3 0 295.3 0 256s32-71.3 71.3-71.3c33.1 0 61 22.8 69 53.5 39.1 0 43.9 9.5 74.6-60.4C255 88.7 273 95.7 323.8 95.7c7.5-20.9 27-35.6 50.4-35.6 29.5 0 53.5 23.9 53.5 53.5s-23.9 53.5-53.5 53.5c-23.4 0-42.9-14.8-50.4-35.6H294c-29.1 0-44.3 67.4-69.6 106.9h310.1v-35.6c0-3.3 1.7-6.1 4.5-7.8 2.8-1.7 6.4-1.4 8.9.3l89.1 53.5c2.8 1.1 4.5 4.1 4.5 7.2z" ], + ussunnah: [ 512, 512, [], "f407", "M156.8 285.1l5.7 14.4h-8.2c-1.3-3.2-3.1-7.7-3.8-9.5-2.5-6.3-1.1-8.4 0-10 1.9-2.7 3.2-4.4 3.6-5.2 0 2.2.8 5.7 2.7 10.3zm297.3 18.8c-2.1 13.8-5.7 27.1-10.5 39.7l43 23.4-44.8-18.8c-5.3 13.2-12 25.6-19.9 37.2l34.2 30.2-36.8-26.4c-8.4 11.8-18 22.6-28.7 32.3l24.9 34.7-28.1-31.8c-11 9.6-23.1 18-36.1 25.1l15.7 37.2-19.3-35.3c-13.1 6.8-27 12.1-41.6 15.9l6.7 38.4-10.5-37.4c-14.3 3.4-29.2 5.3-44.5 5.4L256 512l-1.9-38.4c-15.3-.1-30.2-2-44.5-5.3L199 505.6l6.7-38.2c-14.6-3.7-28.6-9.1-41.7-15.8l-19.2 35.1 15.6-37c-13-7-25.2-15.4-36.2-25.1l-27.9 31.6 24.7-34.4c-10.7-9.7-20.4-20.5-28.8-32.3l-36.5 26.2 33.9-29.9c-7.9-11.6-14.6-24.1-20-37.3l-44.4 18.7L67.8 344c-4.8-12.7-8.4-26.1-10.5-39.9l-51 9 50.3-14.2c-1.1-8.5-1.7-17.1-1.7-25.9 0-4.7.2-9.4.5-14.1L0 256l56-2.8c1.3-13.1 3.8-25.8 7.5-38.1L6.4 199l58.9 10.4c4-12 9.1-23.5 15.2-34.4l-55.1-30 58.3 24.6C90 159 97.2 149.2 105.3 140L55.8 96.4l53.9 38.7c8.1-8.6 17-16.5 26.6-23.6l-40-55.6 45.6 51.6c9.5-6.6 19.7-12.3 30.3-17.2l-27.3-64.9 33.8 62.1c10.5-4.4 21.4-7.9 32.7-10.4L199 6.4l19.5 69.2c11-2.1 22.3-3.2 33.8-3.4L256 0l3.6 72.2c11.5.2 22.8 1.4 33.8 3.5L313 6.4l-12.4 70.7c11.3 2.6 22.2 6.1 32.6 10.5l33.9-62.2-27.4 65.1c10.6 4.9 20.7 10.7 30.2 17.2l45.8-51.8-40.1 55.9c9.5 7.1 18.4 15 26.5 23.6l54.2-38.9-49.7 43.9c8 9.1 15.2 18.9 21.5 29.4l58.7-24.7-55.5 30.2c6.1 10.9 11.1 22.3 15.1 34.3l59.3-10.4-57.5 16.2c3.7 12.2 6.2 24.9 7.5 37.9L512 256l-56 2.8c.3 4.6.5 9.3.5 14.1 0 8.7-.6 17.3-1.6 25.8l50.7 14.3-51.5-9.1zm-21.8-31c0-97.5-79-176.5-176.5-176.5s-176.5 79-176.5 176.5 79 176.5 176.5 176.5 176.5-79 176.5-176.5zm-24 0c0 84.3-68.3 152.6-152.6 152.6s-152.6-68.3-152.6-152.6 68.3-152.6 152.6-152.6 152.6 68.3 152.6 152.6zM195 241c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-40.7-19c0 2.1 1.3 3.8 3.6 5.1 3.5 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-19 0c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.4 6.8-9.6 10.9-9.6 12.6zm204.9 87.9c-8.4-3-8.7-6.8-8.7-15.6V182c-8.2 12.5-14.2 18.6-18 18.6 6.3 14.4 9.5 23.9 9.5 28.3v64.3c0 2.2-2.2 6.5-4.7 6.5h-18c-2.8-7.5-10.2-26.9-15.3-40.3-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3 2.6 6.7 6.4 16.5 7.9 20.2h-9.2c-3.9-10.4-9.6-25.4-11.8-31.1-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3.8 2 2.8 7.3 4.3 10.9H256c-1.5-4.1-5.6-14.6-8.4-22-2 2.5-7.2 9.2-10.7 13.7 2.5 1.6 4.3 3.6 5.2 6.3.2.6.5 1.4.6 1.7H225c-4.6-13.9-11.4-27.7-11.4-34.1 0-2.2.3-5.1 1.1-8.2-8.8 10.8-14 15.9-14 25 0 7.5 10.4 28.3 10.4 33.3 0 1.7-.5 3.3-1.4 4.9-9.6-12.7-15.5-20.7-18.8-20.7h-12l-11.2-28c-3.8-9.6-5.7-16-5.7-18.8 0-3.8.5-7.7 1.7-12.2-1 1.3-3.7 4.7-5.5 7.1-.8-2.1-3.1-7.7-4.6-11.5-2.1 2.5-7.5 9.1-11.2 13.6.9 2.3 3.3 8.1 4.9 12.2-2.5 3.3-9.1 11.8-13.6 17.7-4 5.3-5.8 13.3-2.7 21.8 2.5 6.7 2 7.9-1.7 14.1H191c5.5 0 14.3 14 15.5 22 13.2-16 15.4-19.6 16.8-21.6h107c3.9 0 7.2-1.9 9.9-5.8zm20.1-26.6V181.7c-9 12.5-15.9 18.6-20.7 18.6 7.1 14.4 10.7 23.9 10.7 28.3v66.3c0 17.5 8.6 20.4 24 20.4 8.1 0 12.5-.8 13.7-2.7-4.3-1.6-7.6-2.5-9.9-3.3-8.1-3.2-17.8-7.4-17.8-26z" ], + vaadin: [ 448, 512, [], "f408", "M224.5 140.7c1.5-17.6 4.9-52.7 49.8-52.7h98.6c20.7 0 32.1-7.8 32.1-21.6V54.1c0-12.2 9.3-22.1 21.5-22.1S448 41.9 448 54.1v36.5c0 42.9-21.5 62-66.8 62H280.7c-30.1 0-33 14.7-33 27.1 0 1.3-.1 2.5-.2 3.7-.7 12.3-10.9 22.2-23.4 22.2s-22.7-9.8-23.4-22.2c-.1-1.2-.2-2.4-.2-3.7 0-12.3-3-27.1-33-27.1H66.8c-45.3 0-66.8-19.1-66.8-62V54.1C0 41.9 9.4 32 21.6 32s21.5 9.9 21.5 22.1v12.3C43.1 80.2 54.5 88 75.2 88h98.6c44.8 0 48.3 35.1 49.8 52.7h.9zM224 456c11.5 0 21.4-7 25.7-16.3 1.1-1.8 97.1-169.6 98.2-171.4 11.9-19.6-3.2-44.3-27.2-44.3-13.9 0-23.3 6.4-29.8 20.3L224 362l-66.9-117.7c-6.4-13.9-15.9-20.3-29.8-20.3-24 0-39.1 24.6-27.2 44.3 1.1 1.9 97.1 169.6 98.2 171.4 4.3 9.3 14.2 16.3 25.7 16.3z" ], + viacoin: [ 384, 512, [], "f237", "M384 32h-64l-80.7 192h-94.5L64 32H0l48 112H0v48h68.5l13.8 32H0v48h102.8L192 480l89.2-208H384v-48h-82.3l13.8-32H384v-48h-48l48-112zM192 336l-27-64h54l-27 64z" ], + viadeo: [ 448, 512, [], "f2a9", "M276.2 150.5v.7C258.3 98.6 233.6 47.8 205.4 0c43.3 29.2 67 100 70.8 150.5zm32.7 121.7c7.6 18.2 11 37.5 11 57 0 77.7-57.8 141-137.8 139.4l3.8-.3c74.2-46.7 109.3-118.6 109.3-205.1 0-38.1-6.5-75.9-18.9-112 1 11.7 1 23.7 1 35.4 0 91.8-18.1 241.6-116.6 280C95 455.2 49.4 398 49.4 329.2c0-75.6 57.4-142.3 135.4-142.3 16.8 0 33.7 3.1 49.1 9.6 1.7-15.1 6.5-29.9 13.4-43.3-19.9-7.2-41.2-10.7-62.5-10.7-161.5 0-238.7 195.9-129.9 313.7 67.9 74.6 192 73.9 259.8 0 56.6-61.3 60.9-142.4 36.4-201-12.7 8-27.1 13.9-42.2 17zM418.1 11.7c-31 66.5-81.3 47.2-115.8 80.1-12.4 12-20.6 34-20.6 50.5 0 14.1 4.5 27.1 12 38.8 47.4-11 98.3-46 118.2-90.7-.7 5.5-4.8 14.4-7.2 19.2-20.3 35.7-64.6 65.6-99.7 84.9 14.8 14.4 33.7 25.8 55 25.8 79 0 110.1-134.6 58.1-208.6z" ], + "viadeo-square": [ 448, 512, [], "f2aa", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM280.7 381.2c-42.4 46.2-120 46.6-162.4 0-68-73.6-19.8-196.1 81.2-196.1 13.3 0 26.6 2.1 39.1 6.7-4.3 8.4-7.3 17.6-8.4 27.1-9.7-4.1-20.2-6-30.7-6-48.8 0-84.6 41.7-84.6 88.9 0 43 28.5 78.7 69.5 85.9 61.5-24 72.9-117.6 72.9-175 0-7.3 0-14.8-.6-22.1-11.2-32.9-26.6-64.6-44.2-94.5 27.1 18.3 41.9 62.5 44.2 94.1v.4c7.7 22.5 11.8 46.2 11.8 70 0 54.1-21.9 99-68.3 128.2l-2.4.2c50 1 86.2-38.6 86.2-87.2 0-12.2-2.1-24.3-6.9-35.7 9.5-1.9 18.5-5.6 26.4-10.5 15.3 36.6 12.6 87.3-22.8 125.6zM309 233.7c-13.3 0-25.1-7.1-34.4-16.1 21.9-12 49.6-30.7 62.3-53 1.5-3 4.1-8.6 4.5-12-12.5 27.9-44.2 49.8-73.9 56.7-4.7-7.3-7.5-15.5-7.5-24.3 0-10.3 5.2-24.1 12.9-31.6 21.6-20.5 53-8.5 72.4-50 32.5 46.2 13.1 130.3-36.3 130.3z" ], + viber: [ 512, 512, [], "f409", "M444 49.9C431.3 38.2 379.9.9 265.3.4c0 0-135.1-8.1-200.9 52.3C27.8 89.3 14.9 143 13.5 209.5c-1.4 66.5-3.1 191.1 117 224.9h.1l-.1 51.6s-.8 20.9 13 25.1c16.6 5.2 26.4-10.7 42.3-27.8 8.7-9.4 20.7-23.2 29.8-33.7 82.2 6.9 145.3-8.9 152.5-11.2 16.6-5.4 110.5-17.4 125.7-142 15.8-128.6-7.6-209.8-49.8-246.5zM457.9 287c-12.9 104-89 110.6-103 115.1-6 1.9-61.5 15.7-131.2 11.2 0 0-52 62.7-68.2 79-5.3 5.3-11.1 4.8-11-5.7 0-6.9.4-85.7.4-85.7-.1 0-.1 0 0 0-101.8-28.2-95.8-134.3-94.7-189.8 1.1-55.5 11.6-101 42.6-131.6 55.7-50.5 170.4-43 170.4-43 96.9.4 143.3 29.6 154.1 39.4 35.7 30.6 53.9 103.8 40.6 211.1zm-139-80.8c.4 8.6-12.5 9.2-12.9.6-1.1-22-11.4-32.7-32.6-33.9-8.6-.5-7.8-13.4.7-12.9 27.9 1.5 43.4 17.5 44.8 46.2zm20.3 11.3c1-42.4-25.5-75.6-75.8-79.3-8.5-.6-7.6-13.5.9-12.9 58 4.2 88.9 44.1 87.8 92.5-.1 8.6-13.1 8.2-12.9-.3zm47 13.4c.1 8.6-12.9 8.7-12.9.1-.6-81.5-54.9-125.9-120.8-126.4-8.5-.1-8.5-12.9 0-12.9 73.7.5 133 51.4 133.7 139.2zM374.9 329v.2c-10.8 19-31 40-51.8 33.3l-.2-.3c-21.1-5.9-70.8-31.5-102.2-56.5-16.2-12.8-31-27.9-42.4-42.4-10.3-12.9-20.7-28.2-30.8-46.6-21.3-38.5-26-55.7-26-55.7-6.7-20.8 14.2-41 33.3-51.8h.2c9.2-4.8 18-3.2 23.9 3.9 0 0 12.4 14.8 17.7 22.1 5 6.8 11.7 17.7 15.2 23.8 6.1 10.9 2.3 22-3.7 26.6l-12 9.6c-6.1 4.9-5.3 14-5.3 14s17.8 67.3 84.3 84.3c0 0 9.1.8 14-5.3l9.6-12c4.6-6 15.7-9.8 26.6-3.7 14.7 8.3 33.4 21.2 45.8 32.9 7 5.7 8.6 14.4 3.8 23.6z" ], + vimeo: [ 448, 512, [], "f40a", "M403.2 32H44.8C20.1 32 0 52.1 0 76.8v358.4C0 459.9 20.1 480 44.8 480h358.4c24.7 0 44.8-20.1 44.8-44.8V76.8c0-24.7-20.1-44.8-44.8-44.8zM377 180.8c-1.4 31.5-23.4 74.7-66 129.4-44 57.2-81.3 85.8-111.7 85.8-18.9 0-34.8-17.4-47.9-52.3-25.5-93.3-36.4-148-57.4-148-2.4 0-10.9 5.1-25.4 15.2l-15.2-19.6c37.3-32.8 72.9-69.2 95.2-71.2 25.2-2.4 40.7 14.8 46.5 51.7 20.7 131.2 29.9 151 67.6 91.6 13.5-21.4 20.8-37.7 21.8-48.9 3.5-33.2-25.9-30.9-45.8-22.4 15.9-52.1 46.3-77.4 91.2-76 33.3.9 49 22.5 47.1 64.7z" ], + "vimeo-square": [ 448, 512, [], "f194", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16.2 149.6c-1.4 31.1-23.2 73.8-65.3 127.9-43.5 56.5-80.3 84.8-110.4 84.8-18.7 0-34.4-17.2-47.3-51.6-25.2-92.3-35.9-146.4-56.7-146.4-2.4 0-10.8 5-25.1 15.1L64 192c36.9-32.4 72.1-68.4 94.1-70.4 24.9-2.4 40.2 14.6 46 51.1 20.5 129.6 29.6 149.2 66.8 90.5 13.4-21.2 20.6-37.2 21.5-48.3 3.4-32.8-25.6-30.6-45.2-22.2 15.7-51.5 45.8-76.5 90.1-75.1 32.9 1 48.4 22.4 46.5 64z" ], + "vimeo-v": [ 448, 512, [], "f27d", "M447.8 153.6c-2 43.6-32.4 103.3-91.4 179.1-60.9 79.2-112.4 118.8-154.6 118.8-26.1 0-48.2-24.1-66.3-72.3C100.3 250 85.3 174.3 56.2 174.3c-3.4 0-15.1 7.1-35.2 21.1L0 168.2c51.6-45.3 100.9-95.7 131.8-98.5 34.9-3.4 56.3 20.5 64.4 71.5 28.7 181.5 41.4 208.9 93.6 126.7 18.7-29.6 28.8-52.1 30.2-67.6 4.8-45.9-35.8-42.8-63.3-31 22-72.1 64.1-107.1 126.2-105.1 45.8 1.2 67.5 31.1 64.9 89.4z" ], + vine: [ 384, 512, [], "f1ca", "M384 254.7v52.1c-18.4 4.2-36.9 6.1-52.1 6.1-36.9 77.4-103 143.8-125.1 156.2-14 7.9-27.1 8.4-42.7-.8C137 452 34.2 367.7 0 102.7h74.5C93.2 261.8 139 343.4 189.3 404.5c27.9-27.9 54.8-65.1 75.6-106.9-49.8-25.3-80.1-80.9-80.1-145.6 0-65.6 37.7-115.1 102.2-115.1 114.9 0 106.2 127.9 81.6 181.5 0 0-46.4 9.2-63.5-20.5 3.4-11.3 8.2-30.8 8.2-48.5 0-31.3-11.3-46.6-28.4-46.6-18.2 0-30.8 17.1-30.8 50 .1 79.2 59.4 118.7 129.9 101.9z" ], + vk: [ 576, 512, [], "f189", "M545 117.7c3.7-12.5 0-21.7-17.8-21.7h-58.9c-15 0-21.9 7.9-25.6 16.7 0 0-30 73.1-72.4 120.5-13.7 13.7-20 18.1-27.5 18.1-3.7 0-9.4-4.4-9.4-16.9V117.7c0-15-4.2-21.7-16.6-21.7h-92.6c-9.4 0-15 7-15 13.5 0 14.2 21.2 17.5 23.4 57.5v86.8c0 19-3.4 22.5-10.9 22.5-20 0-68.6-73.4-97.4-157.4-5.8-16.3-11.5-22.9-26.6-22.9H38.8c-16.8 0-20.2 7.9-20.2 16.7 0 15.6 20 93.1 93.1 195.5C160.4 378.1 229 416 291.4 416c37.5 0 42.1-8.4 42.1-22.9 0-66.8-3.4-73.1 15.4-73.1 8.7 0 23.7 4.4 58.7 38.1 40 40 46.6 57.9 69 57.9h58.9c16.8 0 25.3-8.4 20.4-25-11.2-34.9-86.9-106.7-90.3-111.5-8.7-11.2-6.2-16.2 0-26.2.1-.1 72-101.3 79.4-135.6z" ], + vnv: [ 640, 512, [], "f40b", "M104.9 352c-34.1 0-46.4-30.4-46.4-30.4L2.6 210.1S-7.8 192 13 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.7-74.5c5.6-9.5 8.4-18.1 18.8-18.1h32.8c20.8 0 10.4 18.1 10.4 18.1l-55.8 111.5S174.2 352 140 352h-35.1zm395 0c-34.1 0-46.4-30.4-46.4-30.4l-55.9-111.5S387.2 192 408 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.8-74.5c5.6-9.5 8.4-18.1 18.8-18.1H627c20.8 0 10.4 18.1 10.4 18.1l-55.9 111.5S569.3 352 535.1 352h-35.2zM337.6 192c34.1 0 46.4 30.4 46.4 30.4l55.9 111.5s10.4 18.1-10.4 18.1h-32.8c-10.4 0-13.2-8.7-18.8-18.1l-36.7-74.5s-5.2-13.1-21.1-13.1c-15.9 0-21.1 13.1-21.1 13.1l-36.7 74.5c-5.6 9.4-8.4 18.1-18.8 18.1h-32.9c-20.8 0-10.4-18.1-10.4-18.1l55.9-111.5s12.2-30.4 46.4-30.4h35.1z" ], + vuejs: [ 448, 512, [], "f41f", "M356.9 64.3H280l-56 88.6-48-88.6H0L224 448 448 64.3h-91.1zm-301.2 32h53.8L224 294.5 338.4 96.3h53.8L224 384.5 55.7 96.3z" ], + weebly: [ 512, 512, [], "f5cc", "M425.09 65.83c-39.88 0-73.28 25.73-83.66 64.33-18.16-58.06-65.5-64.33-84.95-64.33-19.78 0-66.8 6.28-85.28 64.33-10.38-38.6-43.45-64.33-83.66-64.33C38.59 65.83 0 99.72 0 143.03c0 28.96 4.18 33.27 77.17 233.48 22.37 60.57 67.77 69.35 92.74 69.35 39.23 0 70.04-19.46 85.93-53.98 15.89 34.83 46.69 54.29 85.93 54.29 24.97 0 70.36-9.1 92.74-69.67 76.55-208.65 77.5-205.58 77.5-227.2.63-48.32-36.01-83.47-86.92-83.47zm26.34 114.81l-65.57 176.44c-7.92 21.49-21.22 37.22-46.24 37.22-23.44 0-37.38-12.41-44.03-33.9l-39.28-117.42h-.95L216.08 360.4c-6.96 21.5-20.9 33.6-44.02 33.6-25.02 0-38.33-15.74-46.24-37.22L60.88 181.55c-5.38-14.83-7.92-23.91-7.92-34.5 0-16.34 15.84-29.36 38.33-29.36 18.69 0 31.99 11.8 36.11 29.05l44.03 139.82h.95l44.66-136.79c6.02-19.67 16.47-32.08 38.96-32.08s32.94 12.11 38.96 32.08l44.66 136.79h.95l44.03-139.82c4.12-17.25 17.42-29.05 36.11-29.05 22.17 0 38.33 13.32 38.33 35.71-.32 7.87-4.12 16.04-7.61 27.24z" ], + weibo: [ 512, 512, [], "f18a", "M407 177.6c7.6-24-13.4-46.8-37.4-41.7-22 4.8-28.8-28.1-7.1-32.8 50.1-10.9 92.3 37.1 76.5 84.8-6.8 21.2-38.8 10.8-32-10.3zM214.8 446.7C108.5 446.7 0 395.3 0 310.4c0-44.3 28-95.4 76.3-143.7C176 67 279.5 65.8 249.9 161c-4 13.1 12.3 5.7 12.3 6 79.5-33.6 140.5-16.8 114 51.4-3.7 9.4 1.1 10.9 8.3 13.1 135.7 42.3 34.8 215.2-169.7 215.2zm143.7-146.3c-5.4-55.7-78.5-94-163.4-85.7-84.8 8.6-148.8 60.3-143.4 116s78.5 94 163.4 85.7c84.8-8.6 148.8-60.3 143.4-116zM347.9 35.1c-25.9 5.6-16.8 43.7 8.3 38.3 72.3-15.2 134.8 52.8 111.7 124-7.4 24.2 29.1 37 37.4 12 31.9-99.8-55.1-195.9-157.4-174.3zm-78.5 311c-17.1 38.8-66.8 60-109.1 46.3-40.8-13.1-58-53.4-40.3-89.7 17.7-35.4 63.1-55.4 103.4-45.1 42 10.8 63.1 50.2 46 88.5zm-86.3-30c-12.9-5.4-30 .3-38 12.9-8.3 12.9-4.3 28 8.6 34 13.1 6 30.8.3 39.1-12.9 8-13.1 3.7-28.3-9.7-34zm32.6-13.4c-5.1-1.7-11.4.6-14.3 5.4-2.9 5.1-1.4 10.6 3.7 12.9 5.1 2 11.7-.3 14.6-5.4 2.8-5.2 1.1-10.9-4-12.9z" ], + weixin: [ 576, 512, [], "f1d7", "M385.2 167.6c6.4 0 12.6.3 18.8 1.1C387.4 90.3 303.3 32 207.7 32 100.5 32 13 104.8 13 197.4c0 53.4 29.3 97.5 77.9 131.6l-19.3 58.6 68-34.1c24.4 4.8 43.8 9.7 68.2 9.7 6.2 0 12.1-.3 18.3-.8-4-12.9-6.2-26.6-6.2-40.8-.1-84.9 72.9-154 165.3-154zm-104.5-52.9c14.5 0 24.2 9.7 24.2 24.4 0 14.5-9.7 24.2-24.2 24.2-14.8 0-29.3-9.7-29.3-24.2.1-14.7 14.6-24.4 29.3-24.4zm-136.4 48.6c-14.5 0-29.3-9.7-29.3-24.2 0-14.8 14.8-24.4 29.3-24.4 14.8 0 24.4 9.7 24.4 24.4 0 14.6-9.6 24.2-24.4 24.2zM563 319.4c0-77.9-77.9-141.3-165.4-141.3-92.7 0-165.4 63.4-165.4 141.3S305 460.7 397.6 460.7c19.3 0 38.9-5.1 58.6-9.9l53.4 29.3-14.8-48.6C534 402.1 563 363.2 563 319.4zm-219.1-24.5c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.8 0 24.4 9.7 24.4 19.3 0 10-9.7 19.6-24.4 19.6zm107.1 0c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.5 0 24.4 9.7 24.4 19.3.1 10-9.9 19.6-24.4 19.6z" ], + whatsapp: [ 448, 512, [], "f232", "M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z" ], + "whatsapp-square": [ 448, 512, [], "f40c", "M224 122.8c-72.7 0-131.8 59.1-131.9 131.8 0 24.9 7 49.2 20.2 70.1l3.1 5-13.3 48.6 49.9-13.1 4.8 2.9c20.2 12 43.4 18.4 67.1 18.4h.1c72.6 0 133.3-59.1 133.3-131.8 0-35.2-15.2-68.3-40.1-93.2-25-25-58-38.7-93.2-38.7zm77.5 188.4c-3.3 9.3-19.1 17.7-26.7 18.8-12.6 1.9-22.4.9-47.5-9.9-39.7-17.2-65.7-57.2-67.7-59.8-2-2.6-16.2-21.5-16.2-41s10.2-29.1 13.9-33.1c3.6-4 7.9-5 10.6-5 2.6 0 5.3 0 7.6.1 2.4.1 5.7-.9 8.9 6.8 3.3 7.9 11.2 27.4 12.2 29.4s1.7 4.3.3 6.9c-7.6 15.2-15.7 14.6-11.6 21.6 15.3 26.3 30.6 35.4 53.9 47.1 4 2 6.3 1.7 8.6-1 2.3-2.6 9.9-11.6 12.5-15.5 2.6-4 5.3-3.3 8.9-2 3.6 1.3 23.1 10.9 27.1 12.9s6.6 3 7.6 4.6c.9 1.9.9 9.9-2.4 19.1zM400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM223.9 413.2c-26.6 0-52.7-6.7-75.8-19.3L64 416l22.5-82.2c-13.9-24-21.2-51.3-21.2-79.3C65.4 167.1 136.5 96 223.9 96c42.4 0 82.2 16.5 112.2 46.5 29.9 30 47.9 69.8 47.9 112.2 0 87.4-72.7 158.5-160.1 158.5z" ], + whmcs: [ 448, 512, [], "f40d", "M448 161v-21.3l-28.5-8.8-2.2-10.4 20.1-20.7L427 80.4l-29 7.5-7.2-7.5 7.5-28.2-19.1-11.6-21.3 21-10.7-3.2-7-26.4h-22.6l-6.2 26.4-12.1 3.2-19.7-21-19.4 11 8.1 27.7-8.1 8.4-28.5-7.5-11 19.1 20.7 21-2.9 10.4-28.5 7.8-.3 21.7 28.8 7.5 2.4 12.1-20.1 19.9 10.4 18.5 29.6-7.5 7.2 8.6-8.1 26.9 19.9 11.6 19.4-20.4 11.6 2.9 6.7 28.5 22.6.3 6.7-28.8 11.6-3.5 20.7 21.6 20.4-12.1-8.8-28 7.8-8.1 28.8 8.8 10.3-20.1-20.9-18.8 2.2-12.1 29.1-7zm-119.2 45.2c-31.3 0-56.8-25.4-56.8-56.8s25.4-56.8 56.8-56.8 56.8 25.4 56.8 56.8c0 31.5-25.4 56.8-56.8 56.8zm72.3 16.4l46.9 14.5V277l-55.1 13.4-4.1 22.7 38.9 35.3-19.2 37.9-54-16.7-14.6 15.2 16.7 52.5-38.3 22.7-38.9-40.5-21.7 6.6-12.6 54-42.4-.5-12.6-53.6-21.7-5.6-36.4 38.4-37.4-21.7 15.2-50.5-13.7-16.1-55.5 14.1-19.7-34.8 37.9-37.4-4.8-22.8-54-14.1.5-40.9L54 219.9l5.7-19.7-38.9-39.4L41.5 125l53.6 14.1 15.2-15.7-15.2-52 36.4-20.7 36.8 39.4L191 84l11.6-52H245l11.6 45.9L234 72l-6.3-1.7-3.3 5.7-11 19.1-3.3 5.6 4.6 4.6 17.2 17.4-.3 1-23.8 6.5-6.2 1.7-.1 6.4-.2 12.9C153.8 161.6 118 204 118 254.7c0 58.3 47.3 105.7 105.7 105.7 50.5 0 92.7-35.4 103.2-82.8l13.2.2 6.9.1 1.6-6.7 5.6-24 1.9-.6 17.1 17.8 4.7 4.9 5.8-3.4 20.4-12.1 5.8-3.5-2-6.5-6.8-21.2z" ], + "wikipedia-w": [ 640, 512, [], "f266", "M640 51.2l-.3 12.2c-28.1.8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3.3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4.2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5.3v13.1c-19.4.6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4.3-3.6 0-10.3.3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5.8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1.2.5z" ], + windows: [ 448, 512, [], "f17a", "M0 93.7l183.6-25.3v177.4H0V93.7zm0 324.6l183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z" ], + wix: [ 640, 512, [], "f5cf", "M393.38 131.69c0 13.03 2.08 32.69-28.68 43.83-9.52 3.45-15.95 9.66-15.95 9.66 0-31 4.72-42.22 17.4-48.86 9.75-5.11 27.23-4.63 27.23-4.63zm-115.8 35.54l-34.24 132.66-28.48-108.57c-7.69-31.99-20.81-48.53-48.43-48.53-27.37 0-40.66 16.18-48.43 48.53L89.52 299.89 55.28 167.23C49.73 140.51 23.86 128.96 0 131.96l65.57 247.93s21.63 1.56 32.46-3.96c14.22-7.25 20.98-12.84 29.59-46.57 7.67-30.07 29.11-118.41 31.12-124.7 4.76-14.94 11.09-13.81 15.4 0 1.97 6.3 23.45 94.63 31.12 124.7 8.6 33.73 15.37 39.32 29.59 46.57 10.82 5.52 32.46 3.96 32.46 3.96l65.57-247.93c-24.42-3.07-49.82 8.93-55.3 35.27zm115.78 5.21s-4.1 6.34-13.46 11.57c-6.01 3.36-11.78 5.64-17.97 8.61-15.14 7.26-13.18 13.95-13.18 35.2v152.07s16.55 2.09 27.37-3.43c13.93-7.1 17.13-13.95 17.26-44.78V181.41l-.02.01v-8.98zm163.44 84.08L640 132.78s-35.11-5.98-52.5 9.85c-13.3 12.1-24.41 29.55-54.18 72.47-.47.73-6.25 10.54-13.07 0-29.29-42.23-40.8-60.29-54.18-72.47-17.39-15.83-52.5-9.85-52.5-9.85l83.2 123.74-82.97 123.36s36.57 4.62 53.95-11.21c11.49-10.46 17.58-20.37 52.51-70.72 6.81-10.52 12.57-.77 13.07 0 29.4 42.38 39.23 58.06 53.14 70.72 17.39 15.83 53.32 11.21 53.32 11.21L556.8 256.52z" ], + "wolf-pack-battalion": [ 456, 512, [], "f514", "M239.73 471.53l10.56 15.84 5.28-12.32 5.28 7.04V512c21.06-7.92 21.11-66.86 25.51-97.21 4.62-31.89-.88-92.81 81.37-149.11-8.88-23.61-12-49.43-2.64-80.05 27.87 3.34 53.94 10.58 63.34 54.1l-30.35 8.36c11.15 23.04 17.01 46.76 13.2 72.14L384 313.18l-6.16 33.43-18.47-7.04-8.8 33.43-19.35-7.04 26.39 21.11 8.8-28.15 24.63 5.28 7.04-35.63 26.39 14.52c.25-20.02 6.97-58.06-8.8-84.45l26.39 5.28c3.99-22.07-2.38-39.21-7.92-56.74l22.43 9.68c-.44-25.07-29.94-56.79-61.58-58.5-20.22-1.09-56.74-25.17-54.1-51.9 1.96-19.87 17.45-42.62 43.11-49.7-43.99 36.51-9.68 67.3 5.28 73.46 4.4-11.44 17.54-69.08 0-130.2-40.47 22.87-89.73 65.1-93.25 147.79l-58.06 38.71-3.52 93.25 107.33-59.82 7.04 7.04-17.59 3.52-43.99 38.71-15.84-5.28-28.15 49.26-3.52 119.64 21.11 15.84-32.55 15.84-32.55-15.84 21.11-15.84-3.52-119.64-28.15-49.26-15.84 5.28-43.99-38.71-17.59-3.52 7.04-7.04 107.33 59.82-3.52-93.25-58.06-38.71C157.03 65.1 107.77 22.87 67.3 0c-17.54 61.12-4.4 118.76 0 130.2 14.96-6.16 49.26-36.95 5.28-73.46 25.66 7.08 41.15 29.83 43.11 49.7 2.63 26.74-33.88 50.81-54.1 51.9C29.94 160.06.44 191.78 0 216.85l22.43-9.68c-5.54 17.53-11.91 34.67-7.92 56.74l26.39-5.28c-15.76 26.39-9.05 64.43-8.8 84.45l26.39-14.52 7.04 35.63 24.63-5.28 8.8 28.15 26.39-21.11-19.34 7.05-8.8-33.43-18.47 7.04-6.16-33.43-27.27 7.04c-3.82-25.38 2.05-49.1 13.2-72.14l-30.35-8.36c9.4-43.52 35.47-50.77 63.34-54.1 9.36 30.62 6.24 56.45-2.64 80.05 82.25 56.3 76.75 117.23 81.37 149.11 4.4 30.35 4.45 89.29 25.51 97.21v-29.91l5.28-7.04 5.28 12.32 10.56-15.84 11.44 21.11 11.43-21.1zm79.17-95.01l-15.84-10.56c7.47-4.36 13.76-8.42 19.35-12.32-.6 7.26-.27 13.88-3.51 22.88zm28.15-49.26c-.4 10.94-.9 21.66-1.76 31.67-7.85-1.86-15.57-3.8-21.11-7.04 8.24-7.9 15.55-16.27 22.87-24.63zm24.63 5.28c-.02-13.43-2.05-24.21-5.28-33.43-5.38 9.09-11.23 18.18-18.47 27.27l23.75 6.16zm3.52-80.94c19.44 12.81 27.8 33.66 29.91 56.3-12.32-4.53-24.63-9.31-36.95-10.56 5.06-11.99 6.65-28.14 7.04-45.74zm-1.76-45.74c.81 14.3 1.84 28.82 1.76 42.23 19.22-8.11 29.78-9.72 43.99-14.08-10.6-18.95-27.22-25.52-45.75-28.15zM137.68 376.52l15.84-10.56c-7.47-4.36-13.76-8.42-19.35-12.32.6 7.26.27 13.88 3.51 22.88zm-28.15-49.26c.4 10.94.9 21.66 1.76 31.67 7.85-1.86 15.57-3.8 21.11-7.04-8.24-7.9-15.55-16.27-22.87-24.63zm-24.64 5.28c.02-13.43 2.05-24.21 5.28-33.43 5.38 9.09 11.23 18.18 18.47 27.27l-23.75 6.16zm-3.52-80.94c-19.44 12.81-27.8 33.66-29.91 56.3 12.32-4.53 24.63-9.31 36.95-10.56-5.05-11.99-6.65-28.14-7.04-45.74zm1.76-45.74c-.81 14.3-1.84 28.82-1.76 42.23-19.22-8.11-29.78-9.72-43.99-14.08 10.61-18.95 27.22-25.52 45.75-28.15z" ], + wordpress: [ 512, 512, [], "f19a", "M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z" ], + "wordpress-simple": [ 512, 512, [], "f411", "M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8zM33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256zm223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6zm30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3-80.7-239.6zm81.4 297.2l68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7z" ], + wpbeginner: [ 512, 512, [], "f297", "M462.799 322.374C519.01 386.682 466.961 480 370.944 480c-39.602 0-78.824-17.687-100.142-50.04-6.887.356-22.702.356-29.59 0C219.848 462.381 180.588 480 141.069 480c-95.49 0-148.348-92.996-91.855-157.626C-29.925 190.523 80.479 32 256.006 32c175.632 0 285.87 158.626 206.793 290.374zm-339.647-82.972h41.529v-58.075h-41.529v58.075zm217.18 86.072v-23.839c-60.506 20.915-132.355 9.198-187.589-33.971l.246 24.897c51.101 46.367 131.746 57.875 187.343 32.913zm-150.753-86.072h166.058v-58.075H189.579v58.075z" ], + wpexplorer: [ 512, 512, [], "f2de", "M512 256c0 141.2-114.7 256-256 256C114.8 512 0 397.3 0 256S114.7 0 256 0s256 114.7 256 256zm-32 0c0-123.2-100.3-224-224-224C132.5 32 32 132.5 32 256s100.5 224 224 224 224-100.5 224-224zM160.9 124.6l86.9 37.1-37.1 86.9-86.9-37.1 37.1-86.9zm110 169.1l46.6 94h-14.6l-50-100-48.9 100h-14l51.1-106.9-22.3-9.4 6-14 68.6 29.1-6 14.3-16.5-7.1zm-11.8-116.3l68.6 29.4-29.4 68.3L230 246l29.1-68.6zm80.3 42.9l54.6 23.1-23.4 54.3-54.3-23.1 23.1-54.3z" ], + wpforms: [ 448, 512, [], "f298", "M448 75.2v361.7c0 24.3-19 43.2-43.2 43.2H43.2C19.3 480 0 461.4 0 436.8V75.2C0 51.1 18.8 32 43.2 32h361.7c24 0 43.1 18.8 43.1 43.2zm-37.3 361.6V75.2c0-3-2.6-5.8-5.8-5.8h-9.3L285.3 144 224 94.1 162.8 144 52.5 69.3h-9.3c-3.2 0-5.8 2.8-5.8 5.8v361.7c0 3 2.6 5.8 5.8 5.8h361.7c3.2.1 5.8-2.7 5.8-5.8zM150.2 186v37H76.7v-37h73.5zm0 74.4v37.3H76.7v-37.3h73.5zm11.1-147.3l54-43.7H96.8l64.5 43.7zm210 72.9v37h-196v-37h196zm0 74.4v37.3h-196v-37.3h196zm-84.6-147.3l64.5-43.7H232.8l53.9 43.7zM371.3 335v37.3h-99.4V335h99.4z" ], + xbox: [ 512, 512, [], "f412", "M369.9 318.2c44.3 54.3 64.7 98.8 54.4 118.7-7.9 15.1-56.7 44.6-92.6 55.9-29.6 9.3-68.4 13.3-100.4 10.2-38.2-3.7-76.9-17.4-110.1-39C93.3 445.8 87 438.3 87 423.4c0-29.9 32.9-82.3 89.2-142.1 32-33.9 76.5-73.7 81.4-72.6 9.4 2.1 84.3 75.1 112.3 109.5zM188.6 143.8c-29.7-26.9-58.1-53.9-86.4-63.4-15.2-5.1-16.3-4.8-28.7 8.1-29.2 30.4-53.5 79.7-60.3 122.4-5.4 34.2-6.1 43.8-4.2 60.5 5.6 50.5 17.3 85.4 40.5 120.9 9.5 14.6 12.1 17.3 9.3 9.9-4.2-11-.3-37.5 9.5-64 14.3-39 53.9-112.9 120.3-194.4zm311.6 63.5C483.3 127.3 432.7 77 425.6 77c-7.3 0-24.2 6.5-36 13.9-23.3 14.5-41 31.4-64.3 52.8C367.7 197 427.5 283.1 448.2 346c6.8 20.7 9.7 41.1 7.4 52.3-1.7 8.5-1.7 8.5 1.4 4.6 6.1-7.7 19.9-31.3 25.4-43.5 7.4-16.2 15-40.2 18.6-58.7 4.3-22.5 3.9-70.8-.8-93.4zM141.3 43C189 40.5 251 77.5 255.6 78.4c.7.1 10.4-4.2 21.6-9.7 63.9-31.1 94-25.8 107.4-25.2-63.9-39.3-152.7-50-233.9-11.7-23.4 11.1-24 11.9-9.4 11.2z" ], + xing: [ 384, 512, [], "f168", "M162.7 210c-1.8 3.3-25.2 44.4-70.1 123.5-4.9 8.3-10.8 12.5-17.7 12.5H9.8c-7.7 0-12.1-7.5-8.5-14.4l69-121.3c.2 0 .2-.1 0-.3l-43.9-75.6c-4.3-7.8.3-14.1 8.5-14.1H100c7.3 0 13.3 4.1 18 12.2l44.7 77.5zM382.6 46.1l-144 253v.3L330.2 466c3.9 7.1.2 14.1-8.5 14.1h-65.2c-7.6 0-13.6-4-18-12.2l-92.4-168.5c3.3-5.8 51.5-90.8 144.8-255.2 4.6-8.1 10.4-12.2 17.5-12.2h65.7c8 0 12.3 6.7 8.5 14.1z" ], + "xing-square": [ 448, 512, [], "f169", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM140.4 320.2H93.8c-5.5 0-8.7-5.3-6-10.3l49.3-86.7c.1 0 .1-.1 0-.2l-31.4-54c-3-5.6.2-10.1 6-10.1h46.6c5.2 0 9.5 2.9 12.9 8.7l31.9 55.3c-1.3 2.3-18 31.7-50.1 88.2-3.5 6.2-7.7 9.1-12.6 9.1zm219.7-214.1L257.3 286.8v.2l65.5 119c2.8 5.1.1 10.1-6 10.1h-46.6c-5.5 0-9.7-2.9-12.9-8.7l-66-120.3c2.3-4.1 36.8-64.9 103.4-182.3 3.3-5.8 7.4-8.7 12.5-8.7h46.9c5.7-.1 8.8 4.7 6 10z" ], + "y-combinator": [ 448, 512, [], "f23b", "M448 32v448H0V32h448zM236 287.5L313.5 142h-32.7L235 233c-4.7 9.3-9 18.3-12.8 26.8L210 233l-45.2-91h-35l76.7 143.8v94.5H236v-92.8z" ], + yahoo: [ 448, 512, [], "f19e", "M252 292l4 220c-12.7-2.2-23.5-3.9-32.3-3.9-8.4 0-19.2 1.7-32.3 3.9l4-220C140.4 197.2 85 95.2 21.4 0c11.9 3.1 23 3.9 33.2 3.9 9 0 20.4-.8 34.1-3.9 40.9 72.2 82.1 138.7 135 225.5C261 163.9 314.8 81.4 358.6 0c11.1 2.9 22 3.9 32.9 3.9 11.5 0 23.2-1 35-3.9C392.1 47.9 294.9 216.9 252 292z" ], + yandex: [ 256, 512, [], "f413", "M153.1 315.8L65.7 512H2l96-209.8c-45.1-22.9-75.2-64.4-75.2-141.1C22.7 53.7 90.8 0 171.7 0H254v512h-55.1V315.8h-45.8zm45.8-269.3h-29.4c-44.4 0-87.4 29.4-87.4 114.6 0 82.3 39.4 108.8 87.4 108.8h29.4V46.5z" ], + "yandex-international": [ 320, 512, [], "f414", "M129.5 512V345.9L18.5 48h55.8l81.8 229.7L250.2 0h51.3L180.8 347.8V512h-51.3z" ], + yelp: [ 384, 512, [], "f1e9", "M136.9 328c-1 .3-109.2 35.7-115.8 35.7-15.2-.9-18.5-16.2-19.9-31.2-1.5-14.2-1.4-29.8.3-46.8 1.9-18.8 5.5-45.1 24.2-44 4.8 0 67.1 25.9 112.7 44.4 17.1 6.8 18.6 35.8-1.5 41.9zm57.9-113.9c1.8 38.2-25.5 48.5-47.2 14.3L41.3 60.4c-1.5-6.6.3-12.4 5.3-17.4C62.2 26.5 146 3.2 168.1 8.9c7.5 1.9 12.1 6.1 13.8 12.6 1.3 8.3 11.5 167.4 12.9 192.6zm-1.4 164.8c0 4.6.2 116.4-1.7 121.5-2.3 6-7 9.7-14.3 11.2-10.1 1.7-27.1-1.9-51-10.7-22-8.1-56.7-21.5-49.3-42.5 2.8-6.9 51.4-62.8 77.3-93.6 12-15.2 39.8-5.5 39 14.1zm180.2-117.8c-5.6 3.7-110.8 28.2-118.1 30.6l.3-.6c-18.1 4.7-35.4-18.5-23.3-34.6 3.7-3.7 65.9-92.4 72.8-97 5.2-3.6 11.3-3.8 18.3-.6 18.4 8.8 55.1 63.1 57.4 84.6-.1 2.9 1.2 11.7-7.4 17.6zm10.1 130.7c-2.7 20.6-44.5 73.4-63.8 81-6.9 2.6-12.9 2-17.7-2-5-3.5-61.8-97.1-64.9-102.3-10.9-16.2 6.8-39.8 25.6-33.2 0 0 110.5 35.7 114.7 39.4 5.2 4.1 7.2 9.8 6.1 17.1z" ], + yoast: [ 448, 512, [], "f2b1", "M91.3 76h186l-7 18.9h-179c-39.7 0-71.9 31.6-71.9 70.3v205.4c0 35.4 24.9 70.3 84 70.3V460H91.3C41.2 460 0 419.8 0 370.5V165.2C0 115.9 40.7 76 91.3 76zm229.1-56h66.5C243.1 398.1 241.2 418.9 202.2 459.3c-20.8 21.6-49.3 31.7-78.3 32.7v-51.1c49.2-7.7 64.6-49.9 64.6-75.3 0-20.1.6-12.6-82.1-223.2h61.4L218.2 299 320.4 20zM448 161.5V460H234c6.6-9.6 10.7-16.3 12.1-19.4h182.5V161.5c0-32.5-17.1-51.9-48.2-62.9l6.7-17.6c41.7 13.6 60.9 43.1 60.9 80.5z" ], + youtube: [ 576, 512, [], "f167", "M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z" ], + "youtube-square": [ 448, 512, [], "f431", "M186.8 202.1l95.2 54.1-95.2 54.1V202.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-42 176.3s0-59.6-7.6-88.2c-4.2-15.8-16.5-28.2-32.2-32.4C337.9 128 224 128 224 128s-113.9 0-142.2 7.7c-15.7 4.2-28 16.6-32.2 32.4-7.6 28.5-7.6 88.2-7.6 88.2s0 59.6 7.6 88.2c4.2 15.8 16.5 27.7 32.2 31.9C110.1 384 224 384 224 384s113.9 0 142.2-7.7c15.7-4.2 28-16.1 32.2-31.9 7.6-28.5 7.6-88.1 7.6-88.1z" ] + }; + !function(c) { + try { + c(); + } catch (c) { + if (!m) throw c; + } + }(function() { + !function c(l, z) { + var h = Object.keys(z).reduce(function(c, l) { + var h = z[l]; + return h.icon ? c[h.iconName] = h.icon : c[l] = h, c; + }, {}); + "function" == typeof t.hooks.addPack ? t.hooks.addPack(l, h) : t.styles[l] = M({}, t.styles[l] || {}, h), + "fas" === l && c("fa", z); + }("fab", f); + }); +}(), function() { + "use strict"; + var c = {}; + try { + "undefined" != typeof window && (c = window); + } catch (c) {} + var l = (c.navigator || {}).userAgent, h = void 0 === l ? "" : l, z = c, v = (~h.indexOf("MSIE") || h.indexOf("Trident/"), + "___FONT_AWESOME___"), m = function() { + try { + return !1; + } catch (c) { + return !1; + } + }(), s = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ], e = s.concat([ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ]); + [ "xs", "sm", "lg", "fw", "ul", "li", "border", "pull-left", "pull-right", "spin", "pulse", "rotate-90", "rotate-180", "rotate-270", "flip-horizontal", "flip-vertical", "stack", "stack-1x", "stack-2x", "inverse", "layers", "layers-text", "layers-counter" ].concat(s.map(function(c) { + return c + "x"; + })).concat(e.map(function(c) { + return "w-" + c; + })); + var a = z || {}; + a[v] || (a[v] = {}), a[v].styles || (a[v].styles = {}), a[v].hooks || (a[v].hooks = {}), + a[v].shims || (a[v].shims = []); + var t = a[v], M = Object.assign || function(c) { + for (var l = 1; l < arguments.length; l++) { + var h = arguments[l]; + for (var z in h) Object.prototype.hasOwnProperty.call(h, z) && (c[z] = h[z]); + } + return c; + }; + var f = { + "address-book": [ 448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-68 304H48V48h320v416zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z" ], + "address-card": [ 576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H48V80h480v352zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2zM360 320h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8z" ], + angry: [ 496, 512, [], "f556", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-144c-33.6 0-65.2 14.8-86.8 40.6-8.5 10.2-7.1 25.3 3.1 33.8s25.3 7.2 33.8-3c24.8-29.7 75-29.7 99.8 0 8.1 9.7 23.2 11.9 33.8 3 10.2-8.5 11.5-23.6 3.1-33.8-21.6-25.8-53.2-40.6-86.8-40.6zm-48-72c10.3 0 19.9-6.7 23-17.1 3.8-12.7-3.4-26.1-16.1-29.9l-80-24c-12.8-3.9-26.1 3.4-29.9 16.1-3.8 12.7 3.4 26.1 16.1 29.9l28.2 8.5c-3.1 4.9-5.3 10.4-5.3 16.6 0 17.7 14.3 32 32 32s32-14.4 32-32.1zm199-54.9c-3.8-12.7-17.1-19.9-29.9-16.1l-80 24c-12.7 3.8-19.9 17.2-16.1 29.9 3.1 10.4 12.7 17.1 23 17.1 0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.2-2.2-11.7-5.3-16.6l28.2-8.5c12.7-3.7 19.9-17.1 16.1-29.8z" ], + "arrow-alt-circle-down": [ 512, 512, [], "f358", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm-32-316v116h-67c-10.7 0-16 12.9-8.5 20.5l99 99c4.7 4.7 12.3 4.7 17 0l99-99c7.6-7.6 2.2-20.5-8.5-20.5h-67V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12z" ], + "arrow-alt-circle-left": [ 512, 512, [], "f359", "M8 256c0 137 111 248 248 248s248-111 248-248S393 8 256 8 8 119 8 256zm448 0c0 110.5-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56s200 89.5 200 200zm-72-20v40c0 6.6-5.4 12-12 12H256v67c0 10.7-12.9 16-20.5 8.5l-99-99c-4.7-4.7-4.7-12.3 0-17l99-99c7.6-7.6 20.5-2.2 20.5 8.5v67h116c6.6 0 12 5.4 12 12z" ], + "arrow-alt-circle-right": [ 512, 512, [], "f35a", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z" ], + "arrow-alt-circle-up": [ 512, 512, [], "f35b", "M256 504c137 0 248-111 248-248S393 8 256 8 8 119 8 256s111 248 248 248zm0-448c110.5 0 200 89.5 200 200s-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56zm20 328h-40c-6.6 0-12-5.4-12-12V256h-67c-10.7 0-16-12.9-8.5-20.5l99-99c4.7-4.7 12.3-4.7 17 0l99 99c7.6 7.6 2.2 20.5-8.5 20.5h-67v116c0 6.6-5.4 12-12 12z" ], + bell: [ 448, 512, [], "f0f3", "M425.403 330.939c-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.843 31.843 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095C118.101 62.783 57.143 131.831 57.143 214.857c0 81.933-17.551 99.292-34.543 116.078C-25.496 378.441 9.726 448 66.919 448H160c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h93.08c57.19 0 92.415-69.583 44.323-117.061zM224 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm157.092-72H66.9c-16.762 0-25.135-20.39-13.334-32.191 28.585-28.585 51.577-55.724 51.577-152.952C105.143 149.319 158.462 96 224 96s118.857 53.319 118.857 118.857c0 97.65 23.221 124.574 51.568 152.952C406.278 379.661 397.783 400 381.092 400z" ], + "bell-slash": [ 576, 512, [], "f1f6", "M130.9 400c-16.762 0-25.135-20.39-13.334-32.191 25.226-25.226 46.094-49.338 50.649-121.48l-46.777-41.274a168.48 168.48 0 0 0-.296 9.802c0 81.933-17.551 99.292-34.543 116.078C38.504 378.441 73.726 448 130.919 448H224c0 35.346 28.654 64 64 64s64-28.654 64-64h44.777l-54.4-48H130.9zM288 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm283.867.553l-67.931-59.571c13.104-24.118 11.524-56.318-14.532-82.042-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.848 31.848 0 0 0 320 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095c-41.471 6.618-77.891 28.571-103.249 59.841L36.459 3.037c-5.058-4.436-12.777-3.956-17.24 1.071L3.056 22.313C-1.407 27.34-.925 35.012 4.134 39.447l535.408 469.516c5.058 4.436 12.777 3.956 17.24-1.071l16.163-18.205c4.462-5.027 3.98-12.699-1.078-17.134zM288 96c65.538 0 118.857 53.319 118.857 118.857 0 97.65 23.221 124.574 51.568 152.952 2.908 2.908 4.573 6.328 5.209 9.832L194.482 141.612C216.258 113.867 250.075 96 288 96z" ], + bookmark: [ 384, 512, [], "f02e", "M336 0H48C21.49 0 0 21.49 0 48v464l192-112 192 112V48c0-26.51-21.49-48-48-48zm0 428.43l-144-84-144 84V54a6 6 0 0 1 6-6h276c3.314 0 6 2.683 6 5.996V428.43z" ], + building: [ 448, 512, [], "f1ad", "M128 148v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12zm140 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-128 96h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm128 0h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-76 84v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm76 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm180 124v36H0v-36c0-6.6 5.4-12 12-12h19.5V24c0-13.3 10.7-24 24-24h337c13.3 0 24 10.7 24 24v440H436c6.6 0 12 5.4 12 12zM79.5 463H192v-67c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v67h112.5V49L80 48l-.5 415z" ], + calendar: [ 448, 512, [], "f133", "M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z" ], + "calendar-alt": [ 448, 512, [], "f073", "M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "calendar-check": [ 448, 512, [], "f274", "M400 64h-48V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H160V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V160h352v298a6 6 0 0 1-6 6zm-52.849-200.65L198.842 404.519c-4.705 4.667-12.303 4.637-16.971-.068l-75.091-75.699c-4.667-4.705-4.637-12.303.068-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l44.104 44.461 111.072-110.181c4.705-4.667 12.303-4.637 16.971.068l22.536 22.718c4.667 4.705 4.636 12.303-.069 16.97z" ], + "calendar-minus": [ 448, 512, [], "f272", "M124 328c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H124zm324-216v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "calendar-plus": [ 448, 512, [], "f271", "M336 292v24c0 6.6-5.4 12-12 12h-76v76c0 6.6-5.4 12-12 12h-24c-6.6 0-12-5.4-12-12v-76h-76c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h76v-76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v76h76c6.6 0 12 5.4 12 12zm112-180v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "calendar-times": [ 448, 512, [], "f273", "M311.7 374.7l-17 17c-4.7 4.7-12.3 4.7-17 0L224 337.9l-53.7 53.7c-4.7 4.7-12.3 4.7-17 0l-17-17c-4.7-4.7-4.7-12.3 0-17l53.7-53.7-53.7-53.7c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0l53.7 53.7 53.7-53.7c4.7-4.7 12.3-4.7 17 0l17 17c4.7 4.7 4.7 12.3 0 17L257.9 304l53.7 53.7c4.8 4.7 4.8 12.3.1 17zM448 112v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "caret-square-down": [ 448, 512, [], "f150", "M125.1 208h197.8c10.7 0 16.1 13 8.5 20.5l-98.9 98.3c-4.7 4.7-12.2 4.7-16.9 0l-98.9-98.3c-7.7-7.5-2.3-20.5 8.4-20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "caret-square-left": [ 448, 512, [], "f191", "M272 157.1v197.8c0 10.7-13 16.1-20.5 8.5l-98.3-98.9c-4.7-4.7-4.7-12.2 0-16.9l98.3-98.9c7.5-7.7 20.5-2.3 20.5 8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "caret-square-right": [ 448, 512, [], "f152", "M176 354.9V157.1c0-10.7 13-16.1 20.5-8.5l98.3 98.9c4.7 4.7 4.7 12.2 0 16.9l-98.3 98.9c-7.5 7.7-20.5 2.3-20.5-8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "caret-square-up": [ 448, 512, [], "f151", "M322.9 304H125.1c-10.7 0-16.1-13-8.5-20.5l98.9-98.3c4.7-4.7 12.2-4.7 16.9 0l98.9 98.3c7.7 7.5 2.3 20.5-8.4 20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "chart-bar": [ 512, 512, [], "f080", "M500 400c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v324h452zm-356-60v-72c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V140c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V204c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V108c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12z" ], + "check-circle": [ 512, 512, [], "f058", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z" ], + "check-square": [ 448, 512, [], "f14a", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm0 400H48V80h352v352zm-35.864-241.724L191.547 361.48c-4.705 4.667-12.303 4.637-16.97-.068l-90.781-91.516c-4.667-4.705-4.637-12.303.069-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l59.792 60.277 141.352-140.216c4.705-4.667 12.303-4.637 16.97.068l22.536 22.718c4.667 4.706 4.637 12.304-.068 16.971z" ], + circle: [ 512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z" ], + clipboard: [ 384, 512, [], "f328", "M336 64h-80c0-35.29-28.71-64-64-64s-64 28.71-64 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h42v36c0 6.627 5.373 12 12 12h168c6.627 0 12-5.373 12-12v-36h42a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zM192 40c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24" ], + clock: [ 512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z" ], + clone: [ 512, 512, [], "f24d", "M464 0H144c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h320c26.51 0 48-21.49 48-48v-48h48c26.51 0 48-21.49 48-48V48c0-26.51-21.49-48-48-48zM362 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h42v224c0 26.51 21.49 48 48 48h224v42a6 6 0 0 1-6 6zm96-96H150a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h308a6 6 0 0 1 6 6v308a6 6 0 0 1-6 6z" ], + "closed-captioning": [ 512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 336H54c-3.3 0-6-2.7-6-6V118c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v276c0 3.3-2.7 6-6 6zm-211.1-85.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7zm190.4 0c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.9-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 220.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7z" ], + comment: [ 512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z" ], + "comment-alt": [ 512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 7.1 5.8 12 12 12 2.4 0 4.9-.7 7.1-2.4L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm16 352c0 8.8-7.2 16-16 16H288l-12.8 9.6L208 428v-60H64c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h384c8.8 0 16 7.2 16 16v288z" ], + "comment-dots": [ 512, 512, [], "f4ad", "M144 208c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z" ], + comments: [ 576, 512, [], "f086", "M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z" ], + compass: [ 512, 512, [], "f14e", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm91.326-312.131l-33.359 137.779a24.005 24.005 0 0 1-6.772 11.729l-102.64 97.779c-17.104 16.293-45.56.434-39.88-23.024l33.359-137.779a23.997 23.997 0 0 1 6.772-11.729l102.642-97.779c17.285-16.47 45.494-.175 39.878 23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z" ], + copy: [ 448, 512, [], "f0c5", "M433.941 65.941l-51.882-51.882A48 48 0 0 0 348.118 0H176c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48v-48h80c26.51 0 48-21.49 48-48V99.882a48 48 0 0 0-14.059-33.941zM266 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h74v224c0 26.51 21.49 48 48 48h96v42a6 6 0 0 1-6 6zm128-96H182a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h106v88c0 13.255 10.745 24 24 24h88v202a6 6 0 0 1-6 6zm6-256h-64V48h9.632c1.591 0 3.117.632 4.243 1.757l48.368 48.368a6 6 0 0 1 1.757 4.243V112z" ], + copyright: [ 512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm107.351-101.064c-9.614 9.712-45.53 41.396-104.065 41.396-82.43 0-140.484-61.425-140.484-141.567 0-79.152 60.275-139.401 139.762-139.401 55.531 0 88.738 26.62 97.593 34.779a11.965 11.965 0 0 1 1.936 15.322l-18.155 28.113c-3.841 5.95-11.966 7.282-17.499 2.921-8.595-6.776-31.814-22.538-61.708-22.538-48.303 0-77.916 35.33-77.916 80.082 0 41.589 26.888 83.692 78.277 83.692 32.657 0 56.843-19.039 65.726-27.225 5.27-4.857 13.596-4.039 17.82 1.738l19.865 27.17a11.947 11.947 0 0 1-1.152 15.518z" ], + "credit-card": [ 576, 512, [], "f09d", "M527.9 32H48.1C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48.1 48h479.8c26.6 0 48.1-21.5 48.1-48V80c0-26.5-21.5-48-48.1-48zM54.1 80h467.8c3.3 0 6 2.7 6 6v42H48.1V86c0-3.3 2.7-6 6-6zm467.8 352H54.1c-3.3 0-6-2.7-6-6V256h479.8v170c0 3.3-2.7 6-6 6zM192 332v40c0 6.6-5.4 12-12 12h-72c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12zm192 0v40c0 6.6-5.4 12-12 12H236c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12z" ], + dizzy: [ 496, 512, [], "f567", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-33.8-217.9c7.8-7.8 7.8-20.5 0-28.3L196.3 192l17.9-17.9c7.8-7.8 7.8-20.5 0-28.3-7.8-7.8-20.5-7.8-28.3 0L168 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.9 7.7 20.5 7.7 28.4-.2zm160-92.2c-7.8-7.8-20.5-7.8-28.3 0L328 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.8 7.8 20.5 7.8 28.3 0 7.8-7.8 7.8-20.5 0-28.3l-17.8-18 17.9-17.9c7.7-7.8 7.7-20.4 0-28.2zM248 272c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64z" ], + "dot-circle": [ 512, 512, [], "f192", "M256 56c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m0-48C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 168c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80z" ], + edit: [ 576, 512, [], "f044", "M402.3 344.9l32-32c5-5 13.7-1.5 13.7 5.7V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h273.5c7.1 0 10.7 8.6 5.7 13.7l-32 32c-1.5 1.5-3.5 2.3-5.7 2.3H48v352h352V350.5c0-2.1.8-4.1 2.3-5.6zm156.6-201.8L296.3 405.7l-90.4 10c-26.2 2.9-48.5-19.2-45.6-45.6l10-90.4L432.9 17.1c22.9-22.9 59.9-22.9 82.7 0l43.2 43.2c22.9 22.9 22.9 60 .1 82.8zM460.1 174L402 115.9 216.2 301.8l-7.3 65.3 65.3-7.3L460.1 174zm64.8-79.7l-43.2-43.2c-4.1-4.1-10.8-4.1-14.8 0L436 82l58.1 58.1 30.9-30.9c4-4.2 4-10.8-.1-14.9z" ], + envelope: [ 512, 512, [], "f0e0", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z" ], + "envelope-open": [ 512, 512, [], "f2b6", "M494.586 164.516c-4.697-3.883-111.723-89.95-135.251-108.657C337.231 38.191 299.437 0 256 0c-43.205 0-80.636 37.717-103.335 55.859-24.463 19.45-131.07 105.195-135.15 108.549A48.004 48.004 0 0 0 0 201.485V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V201.509a48 48 0 0 0-17.414-36.993zM464 458a6 6 0 0 1-6 6H54a6 6 0 0 1-6-6V204.347c0-1.813.816-3.526 2.226-4.665 15.87-12.814 108.793-87.554 132.364-106.293C200.755 78.88 232.398 48 256 48c23.693 0 55.857 31.369 73.41 45.389 23.573 18.741 116.503 93.493 132.366 106.316a5.99 5.99 0 0 1 2.224 4.663V458zm-31.991-187.704c4.249 5.159 3.465 12.795-1.745 16.981-28.975 23.283-59.274 47.597-70.929 56.863C336.636 362.283 299.205 400 256 400c-43.452 0-81.287-38.237-103.335-55.86-11.279-8.967-41.744-33.413-70.927-56.865-5.21-4.187-5.993-11.822-1.745-16.981l15.258-18.528c4.178-5.073 11.657-5.843 16.779-1.726 28.618 23.001 58.566 47.035 70.56 56.571C200.143 320.631 232.307 352 256 352c23.602 0 55.246-30.88 73.41-45.389 11.994-9.535 41.944-33.57 70.563-56.568 5.122-4.116 12.601-3.346 16.778 1.727l15.258 18.526z" ], + eye: [ 576, 512, [], "f06e", "M569.354 231.631C512.97 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-102.556 0-192.091-54.701-240-136 44.157-74.933 123.677-127.27 216.162-135.007C273.958 131.078 280 144.83 280 160c0 30.928-25.072 56-56 56s-56-25.072-56-56l.001-.042C157.794 179.043 152 200.844 152 224c0 75.111 60.889 136 136 136s136-60.889 136-136c0-31.031-10.4-59.629-27.895-82.515C451.704 164.638 498.009 205.106 528 256c-47.908 81.299-137.444 136-240 136z" ], + "eye-slash": [ 576, 512, [], "f070", "M272.702 359.139c-80.483-9.011-136.212-86.886-116.93-167.042l116.93 167.042zM288 392c-102.556 0-192.092-54.701-240-136 21.755-36.917 52.1-68.342 88.344-91.658l-27.541-39.343C67.001 152.234 31.921 188.741 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.004 376.006 168.14 440 288 440a332.89 332.89 0 0 0 39.648-2.367l-32.021-45.744A284.16 284.16 0 0 1 288 392zm281.354-111.631c-33.232 56.394-83.421 101.742-143.554 129.492l48.116 68.74c3.801 5.429 2.48 12.912-2.949 16.712L450.23 509.83c-5.429 3.801-12.912 2.48-16.712-2.949L102.084 33.399c-3.801-5.429-2.48-12.912 2.949-16.712L125.77 2.17c5.429-3.801 12.912-2.48 16.712 2.949l55.526 79.325C226.612 76.343 256.808 72 288 72c119.86 0 224.996 63.994 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM528 256c-44.157-74.933-123.677-127.27-216.162-135.007C302.042 131.078 296 144.83 296 160c0 30.928 25.072 56 56 56s56-25.072 56-56l-.001-.042c30.632 57.277 16.739 130.26-36.928 171.719l26.695 38.135C452.626 346.551 498.308 306.386 528 256z" ], + file: [ 384, 512, [], "f15b", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48z" ], + "file-alt": [ 384, 512, [], "f15c", "M288 248v28c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-28c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm-12 72H108c-6.6 0-12 5.4-12 12v28c0 6.6 5.4 12 12 12h168c6.6 0 12-5.4 12-12v-28c0-6.6-5.4-12-12-12zm108-188.1V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48C0 21.5 21.5 0 48 0h204.1C264.8 0 277 5.1 286 14.1L369.9 98c9 8.9 14.1 21.2 14.1 33.9zm-128-80V128h76.1L256 51.9zM336 464V176H232c-13.3 0-24-10.7-24-24V48H48v416h288z" ], + "file-archive": [ 384, 512, [], "f1c6", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM256 51.882L332.118 128H256V51.882zM336 464H48V48h79.714v16h32V48H208v104c0 13.255 10.745 24 24 24h104v288zM192.27 96h-32V64h32v32zm-32 0v32h-32V96h32zm0 64v32h-32v-32h32zm32 0h-32v-32h32v32zm1.909 105.678A12 12 0 0 0 182.406 256H160.27v-32h-32v32l-19.69 97.106C101.989 385.611 126.834 416 160 416c33.052 0 57.871-30.192 51.476-62.62l-17.297-87.702zM160.27 390.073c-17.918 0-32.444-12.105-32.444-27.036 0-14.932 14.525-27.036 32.444-27.036s32.444 12.105 32.444 27.036c0 14.931-14.526 27.036-32.444 27.036zm32-166.073h-32v-32h32v32z" ], + "file-audio": [ 384, 512, [], "f1c7", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm144-76.024c0 10.691-12.926 16.045-20.485 8.485L136 360.486h-28c-6.627 0-12-5.373-12-12v-56c0-6.627 5.373-12 12-12h28l35.515-36.947c7.56-7.56 20.485-2.206 20.485 8.485v135.952zm41.201-47.13c9.051-9.297 9.06-24.133.001-33.439-22.149-22.752 12.235-56.246 34.395-33.481 27.198 27.94 27.212 72.444.001 100.401-21.793 22.386-56.947-10.315-34.397-33.481z" ], + "file-code": [ 384, 512, [], "f1c9", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm101.677-115.115L116.854 320l32.822-28.885a8.793 8.793 0 0 0 .605-12.624l-17.403-18.564c-3.384-3.613-8.964-3.662-12.438-.401L62.78 313.58c-3.703 3.474-3.704 9.367.001 12.84l57.659 54.055a8.738 8.738 0 0 0 6.012 2.381 8.746 8.746 0 0 0 6.427-2.782l17.403-18.563a8.795 8.795 0 0 0-.605-12.626zm84.284-127.85l-24.401-7.084a8.796 8.796 0 0 0-10.905 5.998L144.04 408.061c-1.353 4.66 1.338 9.552 5.998 10.905l24.403 7.084c4.68 1.355 9.557-1.354 10.905-5.998l54.612-188.112c1.354-4.66-1.337-9.552-5.997-10.905zm87.258 92.545l-57.658-54.055c-3.526-3.307-9.099-3.165-12.439.401l-17.403 18.563a8.795 8.795 0 0 0 .605 12.625L267.146 320l-32.822 28.885a8.793 8.793 0 0 0-.605 12.624l17.403 18.564a8.797 8.797 0 0 0 12.439.401h-.001l57.66-54.055c3.703-3.473 3.703-9.366-.001-12.839z" ], + "file-excel": [ 384, 512, [], "f1c3", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm212-240h-28.8c-4.4 0-8.4 2.4-10.5 6.3-18 33.1-22.2 42.4-28.6 57.7-13.9-29.1-6.9-17.3-28.6-57.7-2.1-3.9-6.2-6.3-10.6-6.3H124c-9.3 0-15 10-10.4 18l46.3 78-46.3 78c-4.7 8 1.1 18 10.4 18h28.9c4.4 0 8.4-2.4 10.5-6.3 21.7-40 23-45 28.6-57.7 14.9 30.2 5.9 15.9 28.6 57.7 2.1 3.9 6.2 6.3 10.6 6.3H260c9.3 0 15-10 10.4-18L224 320c.7-1.1 30.3-50.5 46.3-78 4.7-8-1.1-18-10.3-18z" ], + "file-image": [ 384, 512, [], "f1c5", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm32-48h224V288l-23.5-23.5c-4.7-4.7-12.3-4.7-17 0L176 352l-39.5-39.5c-4.7-4.7-12.3-4.7-17 0L80 352v64zm48-240c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z" ], + "file-pdf": [ 384, 512, [], "f1c1", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm250.2-143.7c-12.2-12-47-8.7-64.4-6.5-17.2-10.5-28.7-25-36.8-46.3 3.9-16.1 10.1-40.6 5.4-56-4.2-26.2-37.8-23.6-42.6-5.9-4.4 16.1-.4 38.5 7 67.1-10 23.9-24.9 56-35.4 74.4-20 10.3-47 26.2-51 46.2-3.3 15.8 26 55.2 76.1-31.2 22.4-7.4 46.8-16.5 68.4-20.1 18.9 10.2 41 17 55.8 17 25.5 0 28-28.2 17.5-38.7zm-198.1 77.8c5.1-13.7 24.5-29.5 30.4-35-19 30.3-30.4 35.7-30.4 35zm81.6-190.6c7.4 0 6.7 32.1 1.8 40.8-4.4-13.9-4.3-40.8-1.8-40.8zm-24.4 136.6c9.7-16.9 18-37 24.7-54.7 8.3 15.1 18.9 27.2 30.1 35.5-20.8 4.3-38.9 13.1-54.8 19.2zm131.6-5s-5 6-37.3-7.8c35.1-2.6 40.9 5.4 37.3 7.8z" ], + "file-powerpoint": [ 384, 512, [], "f1c4", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm72-60V236c0-6.6 5.4-12 12-12h69.2c36.7 0 62.8 27 62.8 66.3 0 74.3-68.7 66.5-95.5 66.5V404c0 6.6-5.4 12-12 12H132c-6.6 0-12-5.4-12-12zm48.5-87.4h23c7.9 0 13.9-2.4 18.1-7.2 8.5-9.8 8.4-28.5.1-37.8-4.1-4.6-9.9-7-17.4-7h-23.9v52z" ], + "file-video": [ 384, 512, [], "f1c8", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm228.687-211.303L224 305.374V268c0-11.046-8.954-20-20-20H100c-11.046 0-20 8.954-20 20v104c0 11.046 8.954 20 20 20h104c11.046 0 20-8.954 20-20v-37.374l52.687 52.674C286.704 397.318 304 390.28 304 375.986V264.011c0-14.311-17.309-21.319-27.313-11.314z" ], + "file-word": [ 384, 512, [], "f1c2", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm220.1-208c-5.7 0-10.6 4-11.7 9.5-20.6 97.7-20.4 95.4-21 103.5-.2-1.2-.4-2.6-.7-4.3-.8-5.1.3.2-23.6-99.5-1.3-5.4-6.1-9.2-11.7-9.2h-13.3c-5.5 0-10.3 3.8-11.7 9.1-24.4 99-24 96.2-24.8 103.7-.1-1.1-.2-2.5-.5-4.2-.7-5.2-14.1-73.3-19.1-99-1.1-5.6-6-9.7-11.8-9.7h-16.8c-7.8 0-13.5 7.3-11.7 14.8 8 32.6 26.7 109.5 33.2 136 1.3 5.4 6.1 9.1 11.7 9.1h25.2c5.5 0 10.3-3.7 11.6-9.1l17.9-71.4c1.5-6.2 2.5-12 3-17.3l2.9 17.3c.1.4 12.6 50.5 17.9 71.4 1.3 5.3 6.1 9.1 11.6 9.1h24.7c5.5 0 10.3-3.7 11.6-9.1 20.8-81.9 30.2-119 34.5-136 1.9-7.6-3.8-14.9-11.6-14.9h-15.8z" ], + flag: [ 512, 512, [], "f024", "M336.174 80c-49.132 0-93.305-32-161.913-32-31.301 0-58.303 6.482-80.721 15.168a48.04 48.04 0 0 0 2.142-20.727C93.067 19.575 74.167 1.594 51.201.104 23.242-1.71 0 20.431 0 48c0 17.764 9.657 33.262 24 41.562V496c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-83.443C109.869 395.28 143.259 384 199.826 384c49.132 0 93.305 32 161.913 32 58.479 0 101.972-22.617 128.548-39.981C503.846 367.161 512 352.051 512 335.855V95.937c0-34.459-35.264-57.768-66.904-44.117C409.193 67.309 371.641 80 336.174 80zM464 336c-21.783 15.412-60.824 32-102.261 32-59.945 0-102.002-32-161.913-32-43.361 0-96.379 9.403-127.826 24V128c21.784-15.412 60.824-32 102.261-32 59.945 0 102.002 32 161.913 32 43.271 0 96.32-17.366 127.826-32v240z" ], + flushed: [ 496, 512, [], "f579", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm96-312c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-112 24c0-44.2-35.8-80-80-80s-80 35.8-80 80 35.8 80 80 80 80-35.8 80-80zm-80 48c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm160 144H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z" ], + folder: [ 512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48zm-6 272H54c-3.314 0-6-2.678-6-5.992V117.992A5.993 5.993 0 0 1 54 112h134.118l64 64H458a6 6 0 0 1 6 6v212a6 6 0 0 1-6 6z" ], + "folder-open": [ 576, 512, [], "f07c", "M527.943 224H480v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h400a48.001 48.001 0 0 0 40.704-22.56l79.942-128c19.948-31.917-3.038-73.44-40.703-73.44zM54 112h134.118l64 64H426a6 6 0 0 1 6 6v42H152a48 48 0 0 0-41.098 23.202L48 351.449V117.993A5.993 5.993 0 0 1 54 112zm394 288H72l77.234-128H528l-80 128z" ], + "font-awesome-logo-full": [ 3992, 512, [ "Font Awesome" ], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z" ], + frown: [ 496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 128c-40.2 0-78 17.7-103.8 48.6-8.5 10.2-7.1 25.3 3.1 33.8 10.2 8.4 25.3 7.1 33.8-3.1 16.6-19.9 41-31.4 66.9-31.4s50.3 11.4 66.9 31.4c8.1 9.7 23.1 11.9 33.8 3.1 10.2-8.5 11.5-23.6 3.1-33.8C326 321.7 288.2 304 248 304z" ], + "frown-open": [ 496, 512, [], "f57a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-48-248c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 112c-35.6 0-88.8 21.3-95.8 61.2-2 11.8 9 21.5 20.5 18.1 31.2-9.6 59.4-15.3 75.3-15.3s44.1 5.7 75.3 15.3c11.4 3.5 22.5-6.3 20.5-18.1-7-39.9-60.2-61.2-95.8-61.2z" ], + futbol: [ 496, 512, [], "f1e3", "M483.8 179.4C449.8 74.6 352.6 8 248.1 8c-25.4 0-51.2 3.9-76.7 12.2C41.2 62.5-30.1 202.4 12.2 332.6 46.2 437.4 143.4 504 247.9 504c25.4 0 51.2-3.9 76.7-12.2 130.2-42.3 201.5-182.2 159.2-312.4zm-74.5 193.7l-52.2 6.4-43.7-60.9 24.4-75.2 71.1-22.1 38.9 36.4c-.2 30.7-7.4 61.1-21.7 89.2-4.7 9.3-10.7 17.8-16.8 26.2zm0-235.4l-10.4 53.1-70.7 22-64.2-46.5V92.5l47.4-26.2c39.2 13 73.4 38 97.9 71.4zM184.9 66.4L232 92.5v73.8l-64.2 46.5-70.6-22-10.1-52.5c24.3-33.4 57.9-58.6 97.8-71.9zM139 379.5L85.9 373c-14.4-20.1-37.3-59.6-37.8-115.3l39-36.4 71.1 22.2 24.3 74.3-43.5 61.7zm48.2 67l-22.4-48.1 43.6-61.7H287l44.3 61.7-22.4 48.1c-6.2 1.8-57.6 20.4-121.7 0z" ], + gem: [ 576, 512, [], "f3a5", "M464 0H112c-4 0-7.8 2-10 5.4L2 152.6c-2.9 4.4-2.6 10.2.7 14.2l276 340.8c4.8 5.9 13.8 5.9 18.6 0l276-340.8c3.3-4.1 3.6-9.8.7-14.2L474.1 5.4C471.8 2 468.1 0 464 0zm-19.3 48l63.3 96h-68.4l-51.7-96h56.8zm-202.1 0h90.7l51.7 96H191l51.6-96zm-111.3 0h56.8l-51.7 96H68l63.3-96zm-43 144h51.4L208 352 88.3 192zm102.9 0h193.6L288 435.3 191.2 192zM368 352l68.2-160h51.4L368 352z" ], + grimace: [ 496, 512, [], "f57f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm16 16H152c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h192c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48zm-168 96h-24c-8.8 0-16-7.2-16-16v-8h40v24zm0-40h-40v-8c0-8.8 7.2-16 16-16h24v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm56 24c0 8.8-7.2 16-16 16h-24v-24h40v8zm0-24h-40v-24h24c8.8 0 16 7.2 16 16v8z" ], + grin: [ 496, 512, [], "f580", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z" ], + "grin-alt": [ 496, 512, [], "f581", "M200.3 248c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zm128 0c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3z" ], + "grin-beam": [ 496, 512, [], "f582", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-235.9-72.9c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3zm160 0c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3z" ], + "grin-beam-sweat": [ 496, 512, [], "f583", "M440 160c29.5 0 53.3-26.3 53.3-58.7 0-25-31.7-75.5-46.2-97.3-3.6-5.3-10.7-5.3-14.2 0-14.5 21.8-46.2 72.3-46.2 97.3 0 32.4 23.8 58.7 53.3 58.7zM248 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zm105.3-52.9c-24.6 15.7-46 12.9-46.4 12.9 6.9 20.2 10.8 41.8 10.8 64.3 0 110.3-89.7 200-200 200S48 366.3 48 256 137.7 56 248 56c39.8 0 76.8 11.8 108 31.9 1.7-9.5 6.3-24.1 17.2-45.7C336.4 20.6 293.7 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-27-4.4-52.9-12.4-77.2zM168 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z" ], + "grin-hearts": [ 496, 512, [], "f584", "M353.6 304.6c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-152.8-48.9c4.5 1.2 9.2-1.5 10.5-6l19.4-69.9c5.6-20.3-7.4-41.1-28.8-44.5-18.6-3-36.4 9.8-41.5 27.9l-2 7.1-7.1-1.9c-18.2-4.7-38.2 4.3-44.9 22-7.7 20.2 3.8 41.9 24.2 47.2l70.2 18.1zm188.8-65.3c-6.7-17.6-26.7-26.7-44.9-22l-7.1 1.9-2-7.1c-5-18.1-22.8-30.9-41.5-27.9-21.4 3.4-34.4 24.2-28.8 44.5l19.4 69.9c1.2 4.5 5.9 7.2 10.5 6l70.2-18.2c20.4-5.3 31.9-26.9 24.2-47.1zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200z" ], + "grin-squint": [ 496, 512, [], "f585", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-234.7-40.8c3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3l-80-48c-5.1-3-11.4-1.9-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11.1.1 15.5zm242.9 2.5c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11-.1-15.5-3.8-4.4-10.2-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48z" ], + "grin-squint-tears": [ 512, 512, [], "f586", "M117.1 384.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 479 124.3 420.8 128 395c.8-6.4-4.6-11.8-10.9-10.9zm-41.2-41.7C40.3 268 53 176.1 114.6 114.6 152.4 76.8 202.6 56 256 56c36.2 0 70.8 9.8 101.2 27.7 3.8-20.3 8-36.1 12-48.3C333.8 17.2 294.9 8 256 8 192.5 8 129.1 32.2 80.6 80.6c-74.1 74.1-91.3 183.4-52 274 12.2-4.1 27.7-8.3 47.3-12.2zm352.3-187.6c45 76.6 34.9 176.9-30.8 242.6-37.8 37.8-88 58.6-141.4 58.6-30.5 0-59.8-7-86.4-19.8-3.9 19.5-8 35-12.2 47.2 31.4 13.6 65 20.6 98.7 20.6 63.5 0 126.9-24.2 175.4-72.6 78.1-78.1 93.1-195.4 45.2-288.6-12.3 4-28.2 8.1-48.5 12zm-33.3-26.9c25.8-3.7 84-13.7 100.9-30.6 21.9-21.9 21.5-57.9-.9-80.3s-58.3-22.8-80.3-.9C397.7 33 387.7 91.2 384 117c-.8 6.4 4.6 11.8 10.9 10.9zm-187 108.3c-3-3-7.2-4.2-11.4-3.2L106 255.7c-5.7 1.4-9.5 6.7-9.1 12.6.5 5.8 5.1 10.5 10.9 11l52.3 4.8 4.8 52.3c.5 5.8 5.2 10.4 11 10.9h.9c5.5 0 10.3-3.7 11.7-9.1l22.6-90.5c1-4.2-.2-8.5-3.2-11.5zm39.7-25.1l90.5-22.6c5.7-1.4 9.5-6.7 9.1-12.6-.5-5.8-5.1-10.5-10.9-11l-52.3-4.8-4.8-52.3c-.5-5.8-5.2-10.4-11-10.9-5.6-.1-11.2 3.4-12.6 9.1L233 196.5c-1 4.1.2 8.4 3.2 11.4 5 5 11.3 3.2 11.4 3.2zm52 88.5c-29.1 29.1-59.7 52.9-83.9 65.4-9.2 4.8-10 17.5-1.7 23.4 38.9 27.7 107 6.2 143.7-30.6S416 253 388.3 214.1c-5.8-8.2-18.5-7.6-23.4 1.7-12.3 24.2-36.2 54.7-65.3 83.8z" ], + "grin-stars": [ 496, 512, [], "f587", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-227.9-57.5c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.5 1.9-12.2-4.3-13.2l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6.1 34.9zm259.7-72.7l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6 34.9c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.6 1.8-12.2-4.4-13.2z" ], + "grin-tears": [ 640, 512, [], "f588", "M117.1 256.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 351 124.3 292.8 128 267c.8-6.4-4.6-11.8-10.9-10.9zm506.7 30.6c-16.9-16.9-75.1-26.9-100.9-30.6-6.3-.9-11.7 4.5-10.8 10.8 3.7 25.8 13.7 84 30.6 100.9 21.9 21.9 57.9 21.5 80.3-.9 22.3-22.3 22.7-58.3.8-80.2zm-126.6 61.7C463.8 412.3 396.9 456 320 456c-76.9 0-143.8-43.7-177.2-107.6-12.5 37.4-25.2 43.9-28.3 46.5C159.1 460.7 234.5 504 320 504s160.9-43.3 205.5-109.1c-3.2-2.7-15.9-9.2-28.3-46.5zM122.7 224.5C137.9 129.2 220.5 56 320 56c99.5 0 182.1 73.2 197.3 168.5 2.1-.2 5.2-2.4 49.5 7C554.4 106 448.7 8 320 8S85.6 106 73.2 231.4c44.5-9.4 47.1-7.2 49.5-6.9zM320 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zM240 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z" ], + "grin-tongue": [ 496, 512, [], "f589", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zM168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" ], + "grin-tongue-squint": [ 496, 512, [], "f58a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zm36.9-281.1c-3.8-4.4-10.3-5.5-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zm-162.9 45.5l-80-48c-5-3-11.4-2-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3z" ], + "grin-tongue-wink": [ 496, 512, [], "f58b", "M152 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm176-52c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3z" ], + "grin-wink": [ 496, 512, [], "f58c", "M328 180c-25.69 0-55.88 16.92-59.86 42.12-1.75 11.22 11.5 18.24 19.83 10.84l9.55-8.48c14.81-13.19 46.16-13.19 60.97 0l9.55 8.48c8.48 7.43 21.56.25 19.83-10.84C383.88 196.92 353.69 180 328 180zm-160 60c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm185.55 64.64c-25.93 8.3-64.4 13.06-105.55 13.06s-79.62-4.75-105.55-13.06c-9.94-3.13-19.4 5.37-17.71 15.34C132.67 367.13 196.06 400 248 400s115.33-32.87 123.26-80.02c1.68-9.89-7.67-18.48-17.71-15.34zM248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 448c-110.28 0-200-89.72-200-200S137.72 56 248 56s200 89.72 200 200-89.72 200-200 200z" ], + "hand-lizard": [ 576, 512, [], "f258", "M556.686 290.542L410.328 64.829C397.001 44.272 374.417 32 349.917 32H56C25.121 32 0 57.122 0 88v8c0 44.112 35.888 80 80 80h196.042l-18.333 48H144c-48.523 0-88 39.477-88 88 0 30.879 25.121 56 56 56h131.552c2.987 0 5.914.549 8.697 1.631L352 408.418V480h224V355.829c0-23.225-6.679-45.801-19.314-65.287zM528 432H400v-23.582c0-19.948-12.014-37.508-30.604-44.736l-99.751-38.788A71.733 71.733 0 0 0 243.552 320H112c-4.411 0-8-3.589-8-8 0-22.056 17.944-40 40-40h113.709c19.767 0 37.786-12.407 44.84-30.873l24.552-64.281c8.996-23.553-8.428-48.846-33.63-48.846H80c-17.645 0-32-14.355-32-32v-8c0-4.411 3.589-8 8-8h293.917c8.166 0 15.693 4.09 20.137 10.942l146.358 225.715A71.84 71.84 0 0 1 528 355.829V432z" ], + "hand-paper": [ 448, 512, [], "f256", "M372.57 112.641v-10.825c0-43.612-40.52-76.691-83.039-65.546-25.629-49.5-94.09-47.45-117.982.747C130.269 26.456 89.144 57.945 89.144 102v126.13c-19.953-7.427-43.308-5.068-62.083 8.871-29.355 21.796-35.794 63.333-14.55 93.153L132.48 498.569a32 32 0 0 0 26.062 13.432h222.897c14.904 0 27.835-10.289 31.182-24.813l30.184-130.958A203.637 203.637 0 0 0 448 310.564V179c0-40.62-35.523-71.992-75.43-66.359zm27.427 197.922c0 11.731-1.334 23.469-3.965 34.886L368.707 464h-201.92L51.591 302.303c-14.439-20.27 15.023-42.776 29.394-22.605l27.128 38.079c8.995 12.626 29.031 6.287 29.031-9.283V102c0-25.645 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V67c0-25.663 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V101.125c0-25.672 36.57-24.81 36.57.691V256c0 8.837 7.163 16 16 16h6.857c8.837 0 16-7.163 16-16v-76.309c0-26.242 36.57-25.64 36.57-.691v131.563z" ], + "hand-peace": [ 448, 512, [], "f25b", "M362.146 191.976c-13.71-21.649-38.761-34.016-65.006-30.341V74c0-40.804-32.811-74-73.141-74-40.33 0-73.14 33.196-73.14 74L160 168l-18.679-78.85C126.578 50.843 83.85 32.11 46.209 47.208 8.735 62.238-9.571 104.963 5.008 142.85l55.757 144.927c-30.557 24.956-43.994 57.809-24.733 92.218l54.853 97.999C102.625 498.97 124.73 512 148.575 512h205.702c30.744 0 57.558-21.44 64.555-51.797l27.427-118.999a67.801 67.801 0 0 0 1.729-15.203L448 256c0-44.956-43.263-77.343-85.854-64.024zM399.987 326c0 1.488-.169 2.977-.502 4.423l-27.427 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H148.575c-6.486 0-12.542-3.621-15.805-9.449l-54.854-98c-4.557-8.141-2.619-18.668 4.508-24.488l26.647-21.764a16 16 0 0 0 4.812-18.139l-64.09-166.549C37.226 92.956 84.37 74.837 96.51 106.389l59.784 155.357A16 16 0 0 0 171.227 272h11.632c8.837 0 16-7.163 16-16V74c0-34.375 50.281-34.43 50.281 0v182c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16v-28c0-25.122 36.567-25.159 36.567 0v28c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16 0-25.12 36.567-25.16 36.567 0v70z" ], + "hand-point-down": [ 448, 512, [], "f0a7", "M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z" ], + "hand-point-left": [ 512, 512, [], "f0a5", "M0 220.8C0 266.416 37.765 304 83.2 304h35.647a93.148 93.148 0 0 0 7.929 22.064c-2.507 22.006 3.503 44.978 15.985 62.791C143.9 441.342 180.159 480 242.701 480H264c60.063 0 98.512-40 127.2-40h2.679c5.747 4.952 13.536 8 22.12 8h64c17.673 0 32-12.894 32-28.8V188.8c0-15.906-14.327-28.8-32-28.8h-64c-8.584 0-16.373 3.048-22.12 8H391.2c-6.964 0-14.862-6.193-30.183-23.668l-.129-.148-.131-.146c-8.856-9.937-18.116-20.841-25.851-33.253C316.202 80.537 304.514 32 259.2 32c-56.928 0-92 35.286-92 83.2 0 8.026.814 15.489 2.176 22.4H83.2C38.101 137.6 0 175.701 0 220.8zm48 0c0-18.7 16.775-35.2 35.2-35.2h158.4c0-17.325-26.4-35.2-26.4-70.4 0-26.4 20.625-35.2 44-35.2 8.794 0 20.445 32.712 34.926 56.1 9.074 14.575 19.524 27.225 30.799 39.875 16.109 18.374 33.836 36.633 59.075 39.596v176.752C341.21 396.087 309.491 432 264 432h-21.299c-40.524 0-57.124-22.197-50.601-61.325-14.612-8.001-24.151-33.979-12.925-53.625-19.365-18.225-17.787-46.381-4.95-61.05H83.2C64.225 256 48 239.775 48 220.8zM448 360c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z" ], + "hand-point-right": [ 512, 512, [], "f0a4", "M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z" ], + "hand-point-up": [ 448, 512, [], "f0a6", "M105.6 83.2v86.177a115.52 115.52 0 0 0-22.4-2.176c-47.914 0-83.2 35.072-83.2 92 0 45.314 48.537 57.002 78.784 75.707 12.413 7.735 23.317 16.994 33.253 25.851l.146.131.148.129C129.807 376.338 136 384.236 136 391.2v2.679c-4.952 5.747-8 13.536-8 22.12v64c0 17.673 12.894 32 28.8 32h230.4c15.906 0 28.8-14.327 28.8-32v-64c0-8.584-3.048-16.373-8-22.12V391.2c0-28.688 40-67.137 40-127.2v-21.299c0-62.542-38.658-98.8-91.145-99.94-17.813-12.482-40.785-18.491-62.791-15.985A93.148 93.148 0 0 0 272 118.847V83.2C272 37.765 234.416 0 188.8 0c-45.099 0-83.2 38.101-83.2 83.2zm118.4 0v91.026c14.669-12.837 42.825-14.415 61.05 4.95 19.646-11.227 45.624-1.687 53.625 12.925 39.128-6.524 61.325 10.076 61.325 50.6V264c0 45.491-35.913 77.21-39.676 120H183.571c-2.964-25.239-21.222-42.966-39.596-59.075-12.65-11.275-25.3-21.725-39.875-30.799C80.712 279.645 48 267.994 48 259.2c0-23.375 8.8-44 35.2-44 35.2 0 53.075 26.4 70.4 26.4V83.2c0-18.425 16.5-35.2 35.2-35.2 18.975 0 35.2 16.225 35.2 35.2zM352 424c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z" ], + "hand-pointer": [ 448, 512, [], "f25a", "M358.182 179.361c-19.493-24.768-52.679-31.945-79.872-19.098-15.127-15.687-36.182-22.487-56.595-19.629V67c0-36.944-29.736-67-66.286-67S89.143 30.056 89.143 67v161.129c-19.909-7.41-43.272-5.094-62.083 8.872-29.355 21.795-35.793 63.333-14.55 93.152l109.699 154.001C134.632 501.59 154.741 512 176 512h178.286c30.802 0 57.574-21.5 64.557-51.797l27.429-118.999A67.873 67.873 0 0 0 448 326v-84c0-46.844-46.625-79.273-89.818-62.639zM80.985 279.697l27.126 38.079c8.995 12.626 29.031 6.287 29.031-9.283V67c0-25.12 36.571-25.16 36.571 0v175c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16v-35c0-25.12 36.571-25.16 36.571 0v35c0 8.836 7.163 16 16 16H272c8.837 0 16-7.164 16-16v-21c0-25.12 36.571-25.16 36.571 0v21c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16 0-25.121 36.571-25.16 36.571 0v84c0 1.488-.169 2.977-.502 4.423l-27.43 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H176c-5.769 0-11.263-2.878-14.697-7.697l-109.712-154c-14.406-20.223 14.994-42.818 29.394-22.606zM176.143 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.733 0-14-7.163-14-16zm75.428 0v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16zM327 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16z" ], + "hand-rock": [ 512, 512, [], "f255", "M408.864 79.052c-22.401-33.898-66.108-42.273-98.813-23.588-29.474-31.469-79.145-31.093-108.334-.022-47.16-27.02-108.71 5.055-110.671 60.806C44.846 105.407 0 140.001 0 187.429v56.953c0 32.741 14.28 63.954 39.18 85.634l97.71 85.081c4.252 3.702 3.11 5.573 3.11 32.903 0 17.673 14.327 32 32 32h252c17.673 0 32-14.327 32-32 0-23.513-1.015-30.745 3.982-42.37l42.835-99.656c6.094-14.177 9.183-29.172 9.183-44.568V146.963c0-52.839-54.314-88.662-103.136-67.911zM464 261.406a64.505 64.505 0 0 1-5.282 25.613l-42.835 99.655c-5.23 12.171-7.883 25.04-7.883 38.25V432H188v-10.286c0-16.37-7.14-31.977-19.59-42.817l-97.71-85.08C56.274 281.255 48 263.236 48 244.381v-56.953c0-33.208 52-33.537 52 .677v41.228a16 16 0 0 0 5.493 12.067l7 6.095A16 16 0 0 0 139 235.429V118.857c0-33.097 52-33.725 52 .677v26.751c0 8.836 7.164 16 16 16h7c8.836 0 16-7.164 16-16v-41.143c0-33.134 52-33.675 52 .677v40.466c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16v-27.429c0-33.03 52-33.78 52 .677v26.751c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16 0-33.146 52-33.613 52 .677v114.445z" ], + "hand-scissors": [ 512, 512, [], "f257", "M256 480l70-.013c5.114 0 10.231-.583 15.203-1.729l118.999-27.427C490.56 443.835 512 417.02 512 386.277V180.575c0-23.845-13.03-45.951-34.005-57.69l-97.999-54.853c-34.409-19.261-67.263-5.824-92.218 24.733L142.85 37.008c-37.887-14.579-80.612 3.727-95.642 41.201-15.098 37.642 3.635 80.37 41.942 95.112L168 192l-94-9.141c-40.804 0-74 32.811-74 73.14 0 40.33 33.196 73.141 74 73.141h87.635c-3.675 26.245 8.692 51.297 30.341 65.006C178.657 436.737 211.044 480 256 480zm0-48.013c-25.16 0-25.12-36.567 0-36.567 8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16h-28c-25.159 0-25.122-36.567 0-36.567h28c8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16H74c-34.43 0-34.375-50.281 0-50.281h182c8.837 0 16-7.163 16-16v-11.632a16 16 0 0 0-10.254-14.933L106.389 128.51c-31.552-12.14-13.432-59.283 19.222-46.717l166.549 64.091a16.001 16.001 0 0 0 18.139-4.812l21.764-26.647c5.82-7.127 16.348-9.064 24.488-4.508l98 54.854c5.828 3.263 9.449 9.318 9.449 15.805v205.701c0 8.491-5.994 15.804-14.576 17.782l-119.001 27.427a19.743 19.743 0 0 1-4.423.502h-70z" ], + "hand-spock": [ 512, 512, [], "f259", "M21.096 381.79l129.092 121.513a32 32 0 0 0 21.932 8.698h237.6c14.17 0 26.653-9.319 30.68-22.904l31.815-107.313A115.955 115.955 0 0 0 477 348.811v-36.839c0-4.051.476-8.104 1.414-12.045l31.73-133.41c10.099-42.412-22.316-82.738-65.544-82.525-4.144-24.856-22.543-47.165-49.85-53.992-35.803-8.952-72.227 12.655-81.25 48.75L296.599 184 274.924 52.01c-8.286-36.07-44.303-58.572-80.304-50.296-29.616 6.804-50.138 32.389-51.882 61.295-42.637.831-73.455 40.563-64.071 81.844l31.04 136.508c-27.194-22.515-67.284-19.992-91.482 5.722-25.376 26.961-24.098 69.325 2.871 94.707zm32.068-61.811l.002-.001c7.219-7.672 19.241-7.98 26.856-.813l53.012 49.894C143.225 378.649 160 371.4 160 357.406v-69.479c0-1.193-.134-2.383-.397-3.546l-34.13-150.172c-5.596-24.617 31.502-32.86 37.054-8.421l30.399 133.757a16 16 0 0 0 15.603 12.454h8.604c10.276 0 17.894-9.567 15.594-19.583l-41.62-181.153c-5.623-24.469 31.39-33.076 37.035-8.508l45.22 196.828A16 16 0 0 0 288.956 272h13.217a16 16 0 0 0 15.522-12.119l42.372-169.49c6.104-24.422 42.962-15.159 36.865 9.217L358.805 252.12c-2.521 10.088 5.115 19.88 15.522 19.88h9.694a16 16 0 0 0 15.565-12.295L426.509 146.6c5.821-24.448 42.797-15.687 36.966 8.802L431.72 288.81a100.094 100.094 0 0 0-2.72 23.162v36.839c0 6.548-.943 13.051-2.805 19.328L397.775 464h-219.31L53.978 346.836c-7.629-7.18-7.994-19.229-.814-26.857z" ], + handshake: [ 640, 512, [], "f2b5", "M519.2 127.9l-47.6-47.6A56.252 56.252 0 0 0 432 64H205.2c-14.8 0-29.1 5.9-39.6 16.3L118 127.9H0v255.7h64c17.6 0 31.8-14.2 31.9-31.7h9.1l84.6 76.4c30.9 25.1 73.8 25.7 105.6 3.8 12.5 10.8 26 15.9 41.1 15.9 18.2 0 35.3-7.4 48.8-24 22.1 8.7 48.2 2.6 64-16.8l26.2-32.3c5.6-6.9 9.1-14.8 10.9-23h57.9c.1 17.5 14.4 31.7 31.9 31.7h64V127.9H519.2zM48 351.6c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16zm390-6.9l-26.1 32.2c-2.8 3.4-7.8 4-11.3 1.2l-23.9-19.4-30 36.5c-6 7.3-15 4.8-18 2.4l-36.8-31.5-15.6 19.2c-13.9 17.1-39.2 19.7-55.3 6.6l-97.3-88H96V175.8h41.9l61.7-61.6c2-.8 3.7-1.5 5.7-2.3H262l-38.7 35.5c-29.4 26.9-31.1 72.3-4.4 101.3 14.8 16.2 61.2 41.2 101.5 4.4l8.2-7.5 108.2 87.8c3.4 2.8 3.9 7.9 1.2 11.3zm106-40.8h-69.2c-2.3-2.8-4.9-5.4-7.7-7.7l-102.7-83.4 12.5-11.4c6.5-6 7-16.1 1-22.6L367 167.1c-6-6.5-16.1-6.9-22.6-1l-55.2 50.6c-9.5 8.7-25.7 9.4-34.6 0-9.3-9.9-8.5-25.1 1.2-33.9l65.6-60.1c7.4-6.8 17-10.5 27-10.5l83.7-.2c2.1 0 4.1.8 5.5 2.3l61.7 61.6H544v128zm48 47.7c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16z" ], + hdd: [ 576, 512, [], "f0a0", "M567.403 235.642L462.323 84.589A48 48 0 0 0 422.919 64H153.081a48 48 0 0 0-39.404 20.589L8.597 235.642A48.001 48.001 0 0 0 0 263.054V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V263.054c0-9.801-3-19.366-8.597-27.412zM153.081 112h269.838l77.913 112H75.168l77.913-112zM528 400H48V272h480v128zm-32-64c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32zm-96 0c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32z" ], + heart: [ 512, 512, [], "f004", "M458.4 64.3C400.6 15.7 311.3 23 256 79.3 200.7 23 111.4 15.6 53.6 64.3-21.6 127.6-10.6 230.8 43 285.5l175.4 178.7c10 10.2 23.4 15.9 37.6 15.9 14.3 0 27.6-5.6 37.6-15.8L469 285.6c53.5-54.7 64.7-157.9-10.6-221.3zm-23.6 187.5L259.4 430.5c-2.4 2.4-4.4 2.4-6.8 0L77.2 251.8c-36.5-37.2-43.9-107.6 7.3-150.7 38.9-32.7 98.9-27.8 136.5 10.5l35 35.7 35-35.7c37.8-38.5 97.8-43.2 136.5-10.6 51.1 43.1 43.5 113.9 7.3 150.8z" ], + hospital: [ 448, 512, [], "f0f8", "M128 244v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12zm140 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm-76 84v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm76 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm180 124v36H0v-36c0-6.627 5.373-12 12-12h19.5V85.035C31.5 73.418 42.245 64 55.5 64H144V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v40h88.5c13.255 0 24 9.418 24 21.035V464H436c6.627 0 12 5.373 12 12zM79.5 463H192v-67c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v67h112.5V112H304v24c0 13.255-10.745 24-24 24H168c-13.255 0-24-10.745-24-24v-24H79.5v351zM266 64h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6z" ], + hourglass: [ 384, 512, [], "f254", "M368 48h4c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12H12C5.373 0 0 5.373 0 12v24c0 6.627 5.373 12 12 12h4c0 80.564 32.188 165.807 97.18 208C47.899 298.381 16 383.9 16 464h-4c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12h-4c0-80.564-32.188-165.807-97.18-208C336.102 213.619 368 128.1 368 48zM64 48h256c0 101.62-57.307 184-128 184S64 149.621 64 48zm256 416H64c0-101.62 57.308-184 128-184s128 82.38 128 184z" ], + "id-badge": [ 384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm0 464H48V48h288v416zM144 112h96c8.8 0 16-7.2 16-16s-7.2-16-16-16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16zm48 176c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z" ], + "id-card": [ 576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H303.2c.9-4.5.8 3.6.8-22.4 0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6 0 26-.2 17.9.8 22.4H48V144h480v288zm-168-80h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm-168 96c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z" ], + image: [ 512, 512, [], "f03e", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 336H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v276a6 6 0 0 1-6 6zM128 152c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zM96 352h320v-80l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L192 304l-39.515-39.515c-4.686-4.686-12.284-4.686-16.971 0L96 304v48z" ], + images: [ 576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v48H54a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6v-10h48zm42-336H150a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6V86a6 6 0 0 0-6-6zm6-48c26.51 0 48 21.49 48 48v256c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h384zM264 144c0 22.091-17.909 40-40 40s-40-17.909-40-40 17.909-40 40-40 40 17.909 40 40zm-72 96l39.515-39.515c4.686-4.686 12.284-4.686 16.971 0L288 240l103.515-103.515c4.686-4.686 12.284-4.686 16.971 0L480 208v80H192v-48z" ], + keyboard: [ 576, 512, [], "f11c", "M528 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm8 336c0 4.411-3.589 8-8 8H48c-4.411 0-8-3.589-8-8V112c0-4.411 3.589-8 8-8h480c4.411 0 8 3.589 8 8v288zM170 270v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-336 82v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm384 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zM122 188v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-98 158v-16c0-6.627-5.373-12-12-12H180c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h216c6.627 0 12-5.373 12-12z" ], + kiss: [ 496, 512, [], "f596", "M168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm136 132c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" ], + "kiss-beam": [ 496, 512, [], "f597", "M168 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm56-148c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zm24-156c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4z" ], + "kiss-wink-heart": [ 504, 512, [], "f598", "M304 308.5c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36 21.7-9.1 35.1-23.4 35.1-36.4zm70.5-83.5l9.5 8.5c3.8 3.3 9.3 4 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 5.8 3.1 11.2.7 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0zM136 208.5c0 17.7 14.3 32 32 32s32-14.3 32-32-14.3-32-32-32-32 14.3-32 32zm365.1 194c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zM334 436.3c-26.1 12.5-55.2 19.7-86 19.7-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200c0 22.1-3.7 43.3-10.4 63.2 9 6.4 17 14.2 22.6 23.9 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-2.5-7.3 4.3 17.2-13.4-46.8z" ], + laugh: [ 496, 512, [], "f599", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 224c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm-160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z" ], + "laugh-beam": [ 496, 512, [], "f59a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 152c-23.8 0-52.7 29.3-56 71.4-.7 8.6 10.8 11.9 14.9 4.5l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.1-42.1-32-71.4-55.8-71.4zm-201 75.9l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.6 8.5 10.9 11.9 15.1 4.5zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z" ], + "laugh-squint": [ 496, 512, [], "f59b", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM343.6 196l33.6-40.3c8.6-10.3-3.8-24.8-15.4-18l-80 48c-7.8 4.7-7.8 15.9 0 20.6l80 48c11.5 6.8 24-7.6 15.4-18L343.6 196zm-209.4 58.3l80-48c7.8-4.7 7.8-15.9 0-20.6l-80-48c-11.6-6.9-24 7.7-15.4 18l33.6 40.3-33.6 40.3c-8.7 10.4 3.8 24.8 15.4 18zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z" ], + "laugh-wink": [ 496, 512, [], "f59c", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6C68.8 359.6 48 309.4 48 256s20.8-103.6 58.6-141.4C144.4 76.8 194.6 56 248 56s103.6 20.8 141.4 58.6c37.8 37.8 58.6 88 58.6 141.4s-20.8 103.6-58.6 141.4zM328 164c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1zm-160 60c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z" ], + lemon: [ 512, 512, [], "f094", "M484.112 27.889C455.989-.233 416.108-8.057 387.059 8.865 347.604 31.848 223.504-41.111 91.196 91.197-41.277 223.672 31.923 347.472 8.866 387.058c-16.922 29.051-9.1 68.932 19.022 97.054 28.135 28.135 68.011 35.938 97.057 19.021 39.423-22.97 163.557 49.969 295.858-82.329 132.474-132.477 59.273-256.277 82.331-295.861 16.922-29.05 9.1-68.931-19.022-97.054zm-22.405 72.894c-38.8 66.609 45.6 165.635-74.845 286.08-120.44 120.443-219.475 36.048-286.076 74.843-22.679 13.207-64.035-27.241-50.493-50.488 38.8-66.609-45.6-165.635 74.845-286.08C245.573 4.702 344.616 89.086 411.219 50.292c22.73-13.24 64.005 27.288 50.488 50.491zm-169.861 8.736c1.37 10.96-6.404 20.957-17.365 22.327-54.846 6.855-135.779 87.787-142.635 142.635-1.373 10.989-11.399 18.734-22.326 17.365-10.961-1.37-18.735-11.366-17.365-22.326 9.162-73.286 104.167-168.215 177.365-177.365 10.953-1.368 20.956 6.403 22.326 17.364z" ], + "life-ring": [ 512, 512, [], "f1cd", "M256 504c136.967 0 248-111.033 248-248S392.967 8 256 8 8 119.033 8 256s111.033 248 248 248zm-103.398-76.72l53.411-53.411c31.806 13.506 68.128 13.522 99.974 0l53.411 53.411c-63.217 38.319-143.579 38.319-206.796 0zM336 256c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zm91.28 103.398l-53.411-53.411c13.505-31.806 13.522-68.128 0-99.974l53.411-53.411c38.319 63.217 38.319 143.579 0 206.796zM359.397 84.72l-53.411 53.411c-31.806-13.505-68.128-13.522-99.973 0L152.602 84.72c63.217-38.319 143.579-38.319 206.795 0zM84.72 152.602l53.411 53.411c-13.506 31.806-13.522 68.128 0 99.974L84.72 359.398c-38.319-63.217-38.319-143.579 0-206.796z" ], + lightbulb: [ 384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zM128 176c0-35.29 28.71-64 64-64 8.837 0 16-7.164 16-16s-7.163-16-16-16c-52.935 0-96 43.065-96 96 0 8.836 7.164 16 16 16s16-7.164 16-16zm64-128c70.734 0 128 57.254 128 128 0 77.602-37.383 60.477-80.98 160h-94.04C101.318 236.33 64 253.869 64 176c0-70.735 57.254-128 128-128m0-48C94.805 0 16 78.803 16 176c0 101.731 51.697 91.541 90.516 192.674 3.55 9.249 12.47 15.326 22.376 15.326h126.215c9.906 0 18.826-6.078 22.376-15.326C316.303 267.541 368 277.731 368 176 368 78.803 289.195 0 192 0z" ], + "list-alt": [ 512, 512, [], "f022", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zm-42-92v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm-252 12c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36z" ], + map: [ 576, 512, [], "f279", "M560.02 32c-1.96 0-3.98.37-5.96 1.16L384.01 96H384L212 35.28A64.252 64.252 0 0 0 191.76 32c-6.69 0-13.37 1.05-19.81 3.14L20.12 87.95A32.006 32.006 0 0 0 0 117.66v346.32C0 473.17 7.53 480 15.99 480c1.96 0 3.97-.37 5.96-1.16L192 416l172 60.71a63.98 63.98 0 0 0 40.05.15l151.83-52.81A31.996 31.996 0 0 0 576 394.34V48.02c0-9.19-7.53-16.02-15.98-16.02zM224 90.42l128 45.19v285.97l-128-45.19V90.42zM48 418.05V129.07l128-44.53v286.2l-.64.23L48 418.05zm480-35.13l-128 44.53V141.26l.64-.24L528 93.95v288.97z" ], + meh: [ 496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm8 144H160c-13.2 0-24 10.8-24 24s10.8 24 24 24h176c13.2 0 24-10.8 24-24s-10.8-24-24-24z" ], + "meh-blank": [ 496, 512, [], "f5a4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" ], + "meh-rolling-eyes": [ 496, 512, [], "f5a5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm88-304c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm0 112c-22.1 0-40-17.9-40-40 0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40zm-104-40c0-39.8-32.2-72-72-72s-72 32.2-72 72 32.2 72 72 72 72-32.2 72-72zm-112 0c0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40s-40-17.9-40-40zm192 128H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z" ], + "minus-square": [ 448, 512, [], "f146", "M108 284c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h232c6.6 0 12 5.4 12 12v32c0 6.6-5.4 12-12 12H108zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "money-bill-alt": [ 640, 512, [], "f3d1", "M320 144c-53.02 0-96 50.14-96 112 0 61.85 42.98 112 96 112 53 0 96-50.13 96-112 0-61.86-42.98-112-96-112zm40 168c0 4.42-3.58 8-8 8h-64c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h16v-55.44l-.47.31a7.992 7.992 0 0 1-11.09-2.22l-8.88-13.31a7.992 7.992 0 0 1 2.22-11.09l15.33-10.22a23.99 23.99 0 0 1 13.31-4.03H328c4.42 0 8 3.58 8 8v88h16c4.42 0 8 3.58 8 8v16zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zm-16 272c-35.35 0-64 28.65-64 64H112c0-35.35-28.65-64-64-64V176c35.35 0 64-28.65 64-64h416c0 35.35 28.65 64 64 64v160z" ], + moon: [ 512, 512, [], "f186", "M279.135 512c78.756 0 150.982-35.804 198.844-94.775 28.27-34.831-2.558-85.722-46.249-77.401-82.348 15.683-158.272-47.268-158.272-130.792 0-48.424 26.06-92.292 67.434-115.836 38.745-22.05 28.999-80.788-15.022-88.919A257.936 257.936 0 0 0 279.135 0c-141.36 0-256 114.575-256 256 0 141.36 114.576 256 256 256zm0-464c12.985 0 25.689 1.201 38.016 3.478-54.76 31.163-91.693 90.042-91.693 157.554 0 113.848 103.641 199.2 215.252 177.944C402.574 433.964 344.366 464 279.135 464c-114.875 0-208-93.125-208-208s93.125-208 208-208z" ], + newspaper: [ 576, 512, [], "f1ea", "M552 64H112c-20.858 0-38.643 13.377-45.248 32H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h496c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24zM48 392V144h16v248c0 4.411-3.589 8-8 8s-8-3.589-8-8zm480 8H111.422c.374-2.614.578-5.283.578-8V112h416v288zM172 280h136c6.627 0 12-5.373 12-12v-96c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v96c0 6.627 5.373 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H172c-6.627 0-12-5.373-12-12zm192 0v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0-144v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0 72v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12z" ], + "object-group": [ 512, 512, [], "f247", "M500 128c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v256H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V128h12zm-52-64h32v32h-32V64zM32 64h32v32H32V64zm32 384H32v-32h32v32zm416 0h-32v-32h32v32zm-40-64h-12c-6.627 0-12 5.373-12 12v12H96v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h12v256zm-36-192h-84v-52c0-6.628-5.373-12-12-12H108c-6.627 0-12 5.372-12 12v168c0 6.628 5.373 12 12 12h84v52c0 6.628 5.373 12 12 12h200c6.627 0 12-5.372 12-12V204c0-6.628-5.373-12-12-12zm-268-24h144v112H136V168zm240 176H232v-24h76c6.627 0 12-5.372 12-12v-76h56v112z" ], + "object-ungroup": [ 576, 512, [], "f248", "M564 224c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12h-88v-24h12c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v160H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h88v24h-12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V224h12zM352 64h32v32h-32V64zm0 256h32v32h-32v-32zM64 352H32v-32h32v32zm0-256H32V64h32v32zm32 216v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h12v160h-12c-6.627 0-12 5.373-12 12v12H96zm128 136h-32v-32h32v32zm280-64h-12c-6.627 0-12 5.373-12 12v12H256v-12c0-6.627-5.373-12-12-12h-12v-24h88v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12v-88h88v12c0 6.627 5.373 12 12 12h12v160zm40 64h-32v-32h32v32zm0-256h-32v-32h32v32z" ], + "paper-plane": [ 512, 512, [], "f1d8", "M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z" ], + "pause-circle": [ 512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm96-280v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16zm-112 0v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16z" ], + "play-circle": [ 512, 512, [], "f144", "M371.7 238l-176-107c-15.8-8.8-35.7 2.5-35.7 21v208c0 18.4 19.8 29.8 35.7 21l176-101c16.4-9.1 16.4-32.8 0-42zM504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256z" ], + "plus-square": [ 448, 512, [], "f0fe", "M352 240v32c0 6.6-5.4 12-12 12h-88v88c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-88h-88c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h88v-88c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v88h88c6.6 0 12 5.4 12 12zm96-160v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "question-circle": [ 512, 512, [], "f059", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 448c-110.532 0-200-89.431-200-200 0-110.495 89.472-200 200-200 110.491 0 200 89.471 200 200 0 110.53-89.431 200-200 200zm107.244-255.2c0 67.052-72.421 68.084-72.421 92.863V300c0 6.627-5.373 12-12 12h-45.647c-6.627 0-12-5.373-12-12v-8.659c0-35.745 27.1-50.034 47.579-61.516 17.561-9.845 28.324-16.541 28.324-29.579 0-17.246-21.999-28.693-39.784-28.693-23.189 0-33.894 10.977-48.942 29.969-4.057 5.12-11.46 6.071-16.666 2.124l-27.824-21.098c-5.107-3.872-6.251-11.066-2.644-16.363C184.846 131.491 214.94 112 261.794 112c49.071 0 101.45 38.304 101.45 88.8zM298 368c0 23.159-18.841 42-42 42s-42-18.841-42-42 18.841-42 42-42 42 18.841 42 42z" ], + registered: [ 512, 512, [], "f25d", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm110.442-81.791c-53.046-96.284-50.25-91.468-53.271-96.085 24.267-13.879 39.482-41.563 39.482-73.176 0-52.503-30.247-85.252-101.498-85.252h-78.667c-6.617 0-12 5.383-12 12V380c0 6.617 5.383 12 12 12h38.568c6.617 0 12-5.383 12-12v-83.663h31.958l47.515 89.303a11.98 11.98 0 0 0 10.593 6.36h42.81c9.14 0 14.914-9.799 10.51-17.791zM256.933 239.906h-33.875v-64.14h27.377c32.417 0 38.929 12.133 38.929 31.709-.001 20.913-11.518 32.431-32.431 32.431z" ], + "sad-cry": [ 496, 512, [], "f5b3", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm144 386.4V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v151.4C315.5 447 282.8 456 248 456s-67.5-9-96-24.6V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v114.4c-34.6-36-56-84.7-56-138.4 0-110.3 89.7-200 200-200s200 89.7 200 200c0 53.7-21.4 102.5-56 138.4zM205.8 234.5c4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.3 7.9 4.8 13.7 1.6zM344 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.5 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm-96 92c-30.9 0-56 28.7-56 64s25.1 64 56 64 56-28.7 56-64-25.1-64-56-64z" ], + "sad-tear": [ 496, 512, [], "f5b4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm8-152c-13.2 0-24 10.8-24 24s10.8 24 24 24c23.8 0 46.3 10.5 61.6 28.8 8.1 9.8 23.2 11.9 33.8 3.1 10.2-8.5 11.6-23.6 3.1-33.8C330 320.8 294.1 304 256 304zm-88-64c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-165.6 98.8C151 290.1 126 325.4 126 342.9c0 22.7 18.8 41.1 42 41.1s42-18.4 42-41.1c0-17.5-25-52.8-36.4-68.1-2.8-3.7-8.4-3.7-11.2 0z" ], + save: [ 448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM272 80v80H144V80h128zm122 352H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h42v104c0 13.255 10.745 24 24 24h176c13.255 0 24-10.745 24-24V83.882l78.243 78.243a6 6 0 0 1 1.757 4.243V426a6 6 0 0 1-6 6zM224 232c-48.523 0-88 39.477-88 88s39.477 88 88 88 88-39.477 88-88-39.477-88-88-88zm0 128c-22.056 0-40-17.944-40-40s17.944-40 40-40 40 17.944 40 40-17.944 40-40 40z" ], + "share-square": [ 576, 512, [], "f14d", "M561.938 158.06L417.94 14.092C387.926-15.922 336 5.097 336 48.032v57.198c-42.45 1.88-84.03 6.55-120.76 17.99-35.17 10.95-63.07 27.58-82.91 49.42C108.22 199.2 96 232.6 96 271.94c0 61.697 33.178 112.455 84.87 144.76 37.546 23.508 85.248-12.651 71.02-55.74-15.515-47.119-17.156-70.923 84.11-78.76V336c0 42.993 51.968 63.913 81.94 33.94l143.998-144c18.75-18.74 18.75-49.14 0-67.88zM384 336V232.16C255.309 234.082 166.492 255.35 206.31 376 176.79 357.55 144 324.08 144 271.94c0-109.334 129.14-118.947 240-119.85V48l144 144-144 144zm24.74 84.493a82.658 82.658 0 0 0 20.974-9.303c7.976-4.952 18.286.826 18.286 10.214V464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h132c6.627 0 12 5.373 12 12v4.486c0 4.917-2.987 9.369-7.569 11.152-13.702 5.331-26.396 11.537-38.05 18.585a12.138 12.138 0 0 1-6.28 1.777H54a6 6 0 0 0-6 6v340a6 6 0 0 0 6 6h340a6 6 0 0 0 6-6v-25.966c0-5.37 3.579-10.059 8.74-11.541z" ], + smile: [ 496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm4 72.6c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.1-8.4-25.3-7.1-33.8 3.1z" ], + "smile-beam": [ 496, 512, [], "f5b8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm84-143.4c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.6-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.2-8.4-25.3-7.1-33.8 3.1zM136.5 211c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.4 1.1 7.4-.5 9.3-3.7l9.5-17zM328 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4z" ], + "smile-wink": [ 496, 512, [], "f4da", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm117.8-146.4c-10.2-8.5-25.3-7.1-33.8 3.1-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-60c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1z" ], + snowflake: [ 448, 512, [], "f2dc", "M438.237 355.927l-66.574-38.54 59.448-10.327c5.846-1.375 10.609-5.183 13.458-10.13 2.48-4.307 3.506-9.478 2.524-14.651-2.11-11.115-12.686-18.039-23.621-15.467l-85.423 31.115L255.914 256l82.136-41.926 85.423 31.115c10.936 2.572 21.512-4.352 23.621-15.467 2.111-11.115-5.046-22.209-15.981-24.781l-59.448-10.327 66.573-38.54c9.54-5.523 12.615-18.092 6.867-28.074-5.748-9.982-18.14-13.596-27.68-8.074l-66.574 38.54 20.805-56.787c3.246-10.782-2.758-22.542-13.413-26.268-10.654-3.725-21.922 1.997-25.168 12.779l-15.838 89.735-72.423 41.926V136l69.585-58.621c7.689-8.21 6.997-20.856-1.548-28.245-8.545-7.391-21.705-6.723-29.394 1.486l-38.644 46.46V20c0-11.046-9.318-20-20.813-20s-20.813 8.954-20.813 20v77.08l-38.644-46.46c-7.689-8.21-20.849-8.876-29.394-1.486-8.544 7.389-9.236 20.035-1.547 28.245L203.187 136v83.853l-72.423-41.926-15.838-89.736c-3.247-10.782-14.515-16.504-25.169-12.779-10.656 3.725-16.659 15.486-13.413 26.268l20.805 56.787-66.573-38.54c-9.54-5.523-21.933-1.908-27.68 8.074s-2.673 22.551 6.867 28.074l66.574 38.54-59.449 10.328C5.953 207.515-1.202 218.609.907 229.724c2.11 11.114 12.686 18.038 23.622 15.466l85.422-31.115L192.086 256l-82.136 41.926-85.423-31.115c-10.936-2.572-21.511 4.352-23.622 15.466-2.109 11.113 5.046 22.209 15.981 24.781l59.449 10.328-66.574 38.54C.223 361.449-2.852 374.018 2.896 384s18.14 13.597 27.68 8.074l66.574-38.54-20.805 56.786c-1.735 5.764-.828 11.805 2.02 16.751 2.48 4.307 6.433 7.784 11.392 9.517 10.655 3.725 21.923-1.997 25.169-12.779l15.838-89.736 72.423-41.926V376l-69.585 58.621c-7.69 8.21-6.997 20.855 1.547 28.245 8.544 7.388 21.705 6.723 29.394-1.487l38.644-46.46V492c0 11.046 9.318 20 20.813 20s20.813-8.954 20.813-20v-77.081l38.644 46.46c4.111 4.389 9.782 6.621 15.478 6.621 4.96 0 9.939-1.694 13.916-5.134 8.545-7.39 9.237-20.035 1.548-28.245L244.813 376v-83.853l72.423 41.926 15.838 89.736c3.246 10.782 14.514 16.504 25.168 12.779 10.653-3.726 16.659-15.487 13.412-26.268l-20.805-56.787 66.574 38.54c9.54 5.523 21.933 1.908 27.68-8.074 5.749-9.981 2.675-22.55-6.866-28.072z" ], + square: [ 448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h340c3.3 0 6 2.7 6 6v340c0 3.3-2.7 6-6 6z" ], + star: [ 576, 512, [], "f005", "M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z" ], + "star-half": [ 576, 512, [], "f089", "M288 385.3l-124.3 65.4 23.7-138.4-100.6-98 139-20.2 62.2-126V0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6v-54.3z" ], + "sticky-note": [ 448, 512, [], "f249", "M448 348.106V80c0-26.51-21.49-48-48-48H48C21.49 32 0 53.49 0 80v351.988c0 26.51 21.49 48 48 48h268.118a48 48 0 0 0 33.941-14.059l83.882-83.882A48 48 0 0 0 448 348.106zm-128 80v-76.118h76.118L320 428.106zM400 80v223.988H296c-13.255 0-24 10.745-24 24v104H48V80h352z" ], + "stop-circle": [ 512, 512, [], "f28d", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm296-80v160c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16z" ], + sun: [ 512, 512, [], "f185", "M220.116 487.936l-20.213-49.425a3.992 3.992 0 0 0-5.808-1.886l-45.404 28.104c-29.466 18.24-66.295-8.519-58.054-42.179l12.699-51.865a3.993 3.993 0 0 0-3.59-4.941l-53.251-3.951c-34.554-2.562-48.632-45.855-22.174-68.247L65.08 259.05a3.992 3.992 0 0 0 0-6.106l-40.76-34.497c-26.45-22.384-12.39-65.682 22.174-68.246l53.251-3.951a3.993 3.993 0 0 0 3.59-4.941L90.637 89.443c-8.239-33.656 28.581-60.42 58.054-42.179l45.403 28.104a3.993 3.993 0 0 0 5.808-1.887l20.213-49.425c13.116-32.071 58.638-32.081 71.758 0l20.212 49.424a3.994 3.994 0 0 0 5.809 1.887l45.403-28.104c29.464-18.236 66.297 8.513 58.054 42.179l-12.699 51.865a3.995 3.995 0 0 0 3.59 4.941l53.251 3.951c34.553 2.563 48.633 45.854 22.175 68.246l-40.76 34.497a3.993 3.993 0 0 0 0 6.107l40.76 34.496c26.511 22.441 12.322 65.689-22.175 68.247l-53.251 3.951a3.993 3.993 0 0 0-3.589 4.942l12.698 51.864c8.241 33.658-28.583 60.421-58.054 42.18l-45.403-28.104a3.994 3.994 0 0 0-5.809 1.887l-20.212 49.424c-13.159 32.178-58.675 31.993-71.757 0zm16.814-64.568l19.064 46.616 19.064-46.615c10.308-25.2 40.778-35.066 63.892-20.759l42.822 26.507-11.976-48.919c-6.475-26.444 12.38-52.339 39.487-54.349l50.226-3.726-38.444-32.536c-20.782-17.591-20.747-49.621.001-67.18l38.442-32.536-50.225-3.727c-27.151-2.015-45.95-27.948-39.488-54.349l11.978-48.919-42.823 26.507c-23.151 14.327-53.603 4.4-63.892-20.76l-19.064-46.615-19.064 46.617c-10.305 25.198-40.778 35.066-63.891 20.76l-42.823-26.508 11.977 48.918c6.474 26.446-12.381 52.338-39.488 54.35l-50.224 3.726 38.443 32.537c20.782 17.588 20.747 49.619 0 67.178L52.48 322.123l50.226 3.726c27.151 2.014 45.95 27.947 39.487 54.349l-11.977 48.919 42.823-26.507c23.188-14.355 53.622-4.352 63.891 20.758zM256 384c-70.58 0-128-57.421-128-128 0-70.58 57.42-128 128-128 70.579 0 128 57.42 128 128 0 70.579-57.421 128-128 128zm0-208c-44.112 0-80 35.888-80 80s35.888 80 80 80 80-35.888 80-80-35.888-80-80-80z" ], + surprise: [ 496, 512, [], "f5c2", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-176c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm-48-72c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" ], + "thumbs-down": [ 512, 512, [], "f165", "M466.27 225.31c4.674-22.647.864-44.538-8.99-62.99 2.958-23.868-4.021-48.565-17.34-66.99C438.986 39.423 404.117 0 327 0c-7 0-15 .01-22.22.01C201.195.01 168.997 40 128 40h-10.845c-5.64-4.975-13.042-8-21.155-8H32C14.327 32 0 46.327 0 64v240c0 17.673 14.327 32 32 32h64c11.842 0 22.175-6.438 27.708-16h7.052c19.146 16.953 46.013 60.653 68.76 83.4 13.667 13.667 10.153 108.6 71.76 108.6 57.58 0 95.27-31.936 95.27-104.73 0-18.41-3.93-33.73-8.85-46.54h36.48c48.602 0 85.82-41.565 85.82-85.58 0-19.15-4.96-34.99-13.73-49.84zM64 296c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm330.18 16.73H290.19c0 37.82 28.36 55.37 28.36 94.54 0 23.75 0 56.73-47.27 56.73-18.91-18.91-9.46-66.18-37.82-94.54C206.9 342.89 167.28 272 138.92 272H128V85.83c53.611 0 100.001-37.82 171.64-37.82h37.82c35.512 0 60.82 17.12 53.12 65.9 15.2 8.16 26.5 36.44 13.94 57.57 21.581 20.384 18.699 51.065 5.21 65.62 9.45 0 22.36 18.91 22.27 37.81-.09 18.91-16.71 37.82-37.82 37.82z" ], + "thumbs-up": [ 512, 512, [], "f164", "M466.27 286.69C475.04 271.84 480 256 480 236.85c0-44.015-37.218-85.58-85.82-85.58H357.7c4.92-12.81 8.85-28.13 8.85-46.54C366.55 31.936 328.86 0 271.28 0c-61.607 0-58.093 94.933-71.76 108.6-22.747 22.747-49.615 66.447-68.76 83.4H32c-17.673 0-32 14.327-32 32v240c0 17.673 14.327 32 32 32h64c14.893 0 27.408-10.174 30.978-23.95 44.509 1.001 75.06 39.94 177.802 39.94 7.22 0 15.22.01 22.22.01 77.117 0 111.986-39.423 112.94-95.33 13.319-18.425 20.299-43.122 17.34-66.99 9.854-18.452 13.664-40.343 8.99-62.99zm-61.75 53.83c12.56 21.13 1.26 49.41-13.94 57.57 7.7 48.78-17.608 65.9-53.12 65.9h-37.82c-71.639 0-118.029-37.82-171.64-37.82V240h10.92c28.36 0 67.98-70.89 94.54-97.46 28.36-28.36 18.91-75.63 37.82-94.54 47.27 0 47.27 32.98 47.27 56.73 0 39.17-28.36 56.72-28.36 94.54h103.99c21.11 0 37.73 18.91 37.82 37.82.09 18.9-12.82 37.81-22.27 37.81 13.489 14.555 16.371 45.236-5.21 65.62zM88 432c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z" ], + "times-circle": [ 512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm101.8-262.2L295.6 256l62.2 62.2c4.7 4.7 4.7 12.3 0 17l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L256 295.6l-62.2 62.2c-4.7 4.7-12.3 4.7-17 0l-22.6-22.6c-4.7-4.7-4.7-12.3 0-17l62.2-62.2-62.2-62.2c-4.7-4.7-4.7-12.3 0-17l22.6-22.6c4.7-4.7 12.3-4.7 17 0l62.2 62.2 62.2-62.2c4.7-4.7 12.3-4.7 17 0l22.6 22.6c4.7 4.7 4.7 12.3 0 17z" ], + tired: [ 496, 512, [], "f5c8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm129.1-303.8c-3.8-4.4-10.3-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.8 1.6 15.3-2.5 3.8-4.5 3.9-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zM220 208c0-4.2-2.2-8.1-5.8-10.3l-80-48c-5-3-11.5-1.9-15.3 2.5-3.8 4.5-3.9 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.5 4.1 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3zm28 64c-45.4 0-100.9 38.3-107.8 93.3-1.5 11.8 6.9 21.6 15.5 17.9C178.4 373.5 212 368 248 368s69.6 5.5 92.3 15.2c8.5 3.7 17-6 15.5-17.9-6.9-55-62.4-93.3-107.8-93.3z" ], + "trash-alt": [ 448, 512, [], "f2ed", "M192 188v216c0 6.627-5.373 12-12 12h-24c-6.627 0-12-5.373-12-12V188c0-6.627 5.373-12 12-12h24c6.627 0 12 5.373 12 12zm100-12h-24c-6.627 0-12 5.373-12 12v216c0 6.627 5.373 12 12 12h24c6.627 0 12-5.373 12-12V188c0-6.627-5.373-12-12-12zm132-96c13.255 0 24 10.745 24 24v12c0 6.627-5.373 12-12 12h-20v336c0 26.51-21.49 48-48 48H80c-26.51 0-48-21.49-48-48V128H12c-6.627 0-12-5.373-12-12v-12c0-13.255 10.745-24 24-24h74.411l34.018-56.696A48 48 0 0 1 173.589 0h100.823a48 48 0 0 1 41.16 23.304L349.589 80H424zm-269.611 0h139.223L276.16 50.913A6 6 0 0 0 271.015 48h-94.028a6 6 0 0 0-5.145 2.913L154.389 80zM368 128H80v330a6 6 0 0 0 6 6h276a6 6 0 0 0 6-6V128z" ], + user: [ 448, 512, [], "f007", "M313.6 304c-28.7 0-42.5 16-89.6 16-47.1 0-60.8-16-89.6-16C60.2 304 0 364.2 0 438.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-25.6c0-74.2-60.2-134.4-134.4-134.4zM400 464H48v-25.6c0-47.6 38.8-86.4 86.4-86.4 14.6 0 38.3 16 89.6 16 51.7 0 74.9-16 89.6-16 47.6 0 86.4 38.8 86.4 86.4V464zM224 288c79.5 0 144-64.5 144-144S303.5 0 224 0 80 64.5 80 144s64.5 144 144 144zm0-240c52.9 0 96 43.1 96 96s-43.1 96-96 96-96-43.1-96-96 43.1-96 96-96z" ], + "user-circle": [ 496, 512, [], "f2bd", "M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z" ], + "window-close": [ 512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v340zM356.5 194.6L295.1 256l61.4 61.4c4.6 4.6 4.6 12.1 0 16.8l-22.3 22.3c-4.6 4.6-12.1 4.6-16.8 0L256 295.1l-61.4 61.4c-4.6 4.6-12.1 4.6-16.8 0l-22.3-22.3c-4.6-4.6-4.6-12.1 0-16.8l61.4-61.4-61.4-61.4c-4.6-4.6-4.6-12.1 0-16.8l22.3-22.3c4.6-4.6 12.1-4.6 16.8 0l61.4 61.4 61.4-61.4c4.6-4.6 12.1-4.6 16.8 0l22.3 22.3c4.7 4.6 4.7 12.1 0 16.8z" ], + "window-maximize": [ 512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V192h416v234z" ], + "window-minimize": [ 512, 512, [], "f2d1", "M480 480H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h448c17.7 0 32 14.3 32 32s-14.3 32-32 32z" ], + "window-restore": [ 512, 512, [], "f2d2", "M464 0H144c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-96 464H48V256h320v208zm96-96h-48V144c0-26.5-21.5-48-48-48H144V48h320v320z" ] + }; + !function(c) { + try { + c(); + } catch (c) { + if (!m) throw c; + } + }(function() { + !function c(l, z) { + var h = Object.keys(z).reduce(function(c, l) { + var h = z[l]; + return h.icon ? c[h.iconName] = h.icon : c[l] = h, c; + }, {}); + "function" == typeof t.hooks.addPack ? t.hooks.addPack(l, h) : t.styles[l] = M({}, t.styles[l] || {}, h), + "fas" === l && c("fa", z); + }("far", f); + }); +}(), function() { + "use strict"; + var c = {}; + try { + "undefined" != typeof window && (c = window); + } catch (c) {} + var l = (c.navigator || {}).userAgent, h = void 0 === l ? "" : l, z = c, v = (~h.indexOf("MSIE") || h.indexOf("Trident/"), + "___FONT_AWESOME___"), m = function() { + try { + return !1; + } catch (c) { + return !1; + } + }(), s = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ], e = s.concat([ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ]); + [ "xs", "sm", "lg", "fw", "ul", "li", "border", "pull-left", "pull-right", "spin", "pulse", "rotate-90", "rotate-180", "rotate-270", "flip-horizontal", "flip-vertical", "stack", "stack-1x", "stack-2x", "inverse", "layers", "layers-text", "layers-counter" ].concat(s.map(function(c) { + return c + "x"; + })).concat(e.map(function(c) { + return "w-" + c; + })); + var a = z || {}; + a[v] || (a[v] = {}), a[v].styles || (a[v].styles = {}), a[v].hooks || (a[v].hooks = {}), + a[v].shims || (a[v].shims = []); + var t = a[v], M = Object.assign || function(c) { + for (var l = 1; l < arguments.length; l++) { + var h = arguments[l]; + for (var z in h) Object.prototype.hasOwnProperty.call(h, z) && (c[z] = h[z]); + } + return c; + }; + var f = { + "address-book": [ 448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z" ], + "address-card": [ 576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-352 96c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H86.4C74 384 64 375.4 64 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2zM512 312c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z" ], + adjust: [ 512, 512, [], "f042", "M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z" ], + "align-center": [ 448, 512, [], "f037", "M352 44v40c0 8.837-7.163 16-16 16H112c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h224c8.837 0 16 7.163 16 16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm320-200H112c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z" ], + "align-justify": [ 448, 512, [], "f039", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm16 144h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0-128h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" ], + "align-left": [ 448, 512, [], "f036", "M288 44v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16zM0 172v40c0 8.837 7.163 16 16 16h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16zm16 312h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm256-200H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z" ], + "align-right": [ 448, 512, [], "f038", "M160 84V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H176c-8.837 0-16-7.163-16-16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" ], + allergies: [ 448, 512, [], "f461", "M416 112c-17.6 0-32 14.4-32 32v72c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v152c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V32c0-17.6-14.4-32-32-32s-32 14.4-32 32v184c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32S96 46.4 96 64v241l-23.6-32.5c-13-17.9-38-21.8-55.9-8.8s-21.8 38-8.8 55.9l125.6 172.7c9 12.4 23.5 19.8 38.8 19.8h197.6c22.3 0 41.6-15.3 46.7-37l26.5-112.7c3.2-13.7 4.9-28.3 5.1-42.3V144c0-17.6-14.4-32-32-32zM176 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 32c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32-128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z" ], + ambulance: [ 640, 512, [], "f0f9", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm144-248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm176 248c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z" ], + "american-sign-language-interpreting": [ 640, 512, [], "f2a3", "M290.547 189.039c-20.295-10.149-44.147-11.199-64.739-3.89 42.606 0 71.208 20.475 85.578 50.576 8.576 17.899-5.148 38.071-23.617 38.071 18.429 0 32.211 20.136 23.617 38.071-14.725 30.846-46.123 50.854-80.298 50.854-.557 0-94.471-8.615-94.471-8.615l-66.406 33.347c-9.384 4.693-19.815.379-23.895-7.781L1.86 290.747c-4.167-8.615-1.111-18.897 6.946-23.621l58.072-33.069L108 159.861c6.39-57.245 34.731-109.767 79.743-146.726 11.391-9.448 28.341-7.781 37.51 3.613 9.446 11.394 7.78 28.067-3.612 37.516-12.503 10.559-23.618 22.509-32.509 35.57 21.672-14.729 46.679-24.732 74.186-28.067 14.725-1.945 28.063 8.336 29.73 23.065 1.945 14.728-8.336 28.067-23.062 29.734-16.116 1.945-31.12 7.503-44.178 15.284 26.114-5.713 58.712-3.138 88.079 11.115 13.336 6.669 18.893 22.509 12.224 35.848-6.389 13.06-22.504 18.617-35.564 12.226zm-27.229 69.472c-6.112-12.505-18.338-20.286-32.231-20.286a35.46 35.46 0 0 0-35.565 35.57c0 21.428 17.808 35.57 35.565 35.57 13.893 0 26.119-7.781 32.231-20.286 4.446-9.449 13.614-15.006 23.339-15.284-9.725-.277-18.893-5.835-23.339-15.284zm374.821-37.237c4.168 8.615 1.111 18.897-6.946 23.621l-58.071 33.069L532 352.16c-6.39 57.245-34.731 109.767-79.743 146.726-10.932 9.112-27.799 8.144-37.51-3.613-9.446-11.394-7.78-28.067 3.613-37.516 12.503-10.559 23.617-22.509 32.508-35.57-21.672 14.729-46.679 24.732-74.186 28.067-10.021 2.506-27.552-5.643-29.73-23.065-1.945-14.728 8.336-28.067 23.062-29.734 16.116-1.946 31.12-7.503 44.178-15.284-26.114 5.713-58.712 3.138-88.079-11.115-13.336-6.669-18.893-22.509-12.224-35.848 6.389-13.061 22.505-18.619 35.565-12.227 20.295 10.149 44.147 11.199 64.739 3.89-42.606 0-71.208-20.475-85.578-50.576-8.576-17.899 5.148-38.071 23.617-38.071-18.429 0-32.211-20.136-23.617-38.071 14.033-29.396 44.039-50.887 81.966-50.854l92.803 8.615 66.406-33.347c9.408-4.704 19.828-.354 23.894 7.781l44.455 88.926zm-229.227-18.618c-13.893 0-26.119 7.781-32.231 20.286-4.446 9.449-13.614 15.006-23.339 15.284 9.725.278 18.893 5.836 23.339 15.284 6.112 12.505 18.338 20.286 32.231 20.286a35.46 35.46 0 0 0 35.565-35.57c0-21.429-17.808-35.57-35.565-35.57z" ], + anchor: [ 576, 512, [], "f13d", "M12.971 352h32.394C67.172 454.735 181.944 512 288 512c106.229 0 220.853-57.38 242.635-160h32.394c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0l-67.029 67.029c-7.56 7.56-2.206 20.485 8.485 20.485h35.146c-20.29 54.317-84.963 86.588-144.117 94.015V256h52c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-52v-5.47c37.281-13.178 63.995-48.725 64-90.518C384.005 43.772 341.605.738 289.37.01 235.723-.739 192 42.525 192 96c0 41.798 26.716 77.35 64 90.53V192h-52c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v190.015c-58.936-7.399-123.82-39.679-144.117-94.015h35.146c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0L4.485 331.515C-3.074 339.074 2.28 352 12.971 352zM288 64c17.645 0 32 14.355 32 32s-14.355 32-32 32-32-14.355-32-32 14.355-32 32-32z" ], + "angle-double-down": [ 320, 512, [], "f103", "M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z" ], + "angle-double-left": [ 448, 512, [], "f100", "M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" ], + "angle-double-right": [ 448, 512, [], "f101", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" ], + "angle-double-up": [ 320, 512, [], "f102", "M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z" ], + "angle-down": [ 320, 512, [], "f107", "M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z" ], + "angle-left": [ 256, 512, [], "f104", "M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" ], + "angle-right": [ 256, 512, [], "f105", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" ], + "angle-up": [ 320, 512, [], "f106", "M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z" ], + angry: [ 496, 512, [], "f556", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 240c0-9.3 4.1-17.5 10.5-23.4l-31-9.3c-8.5-2.5-13.3-11.5-10.7-19.9 2.5-8.5 11.4-13.2 19.9-10.7l80 24c8.5 2.5 13.3 11.5 10.7 19.9-2.1 6.9-8.4 11.4-15.3 11.4-.5 0-1.1-.2-1.7-.2.7 2.7 1.7 5.3 1.7 8.2 0 17.7-14.3 32-32 32S136 257.7 136 240zm168 154.2c-27.8-33.4-84.2-33.4-112.1 0-13.5 16.3-38.2-4.2-24.6-20.5 20-24 49.4-37.8 80.6-37.8s60.6 13.8 80.6 37.8c13.8 16.5-11.1 36.6-24.5 20.5zm76.6-186.9l-31 9.3c6.3 5.8 10.5 14.1 10.5 23.4 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-2.9.9-5.6 1.7-8.2-.6.1-1.1.2-1.7.2-6.9 0-13.2-4.5-15.3-11.4-2.5-8.5 2.3-17.4 10.7-19.9l80-24c8.4-2.5 17.4 2.3 19.9 10.7 2.5 8.5-2.3 17.4-10.8 19.9z" ], + archive: [ 512, 512, [], "f187", "M32 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160H32v288zm160-212c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v8c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-8zM480 32H32C14.3 32 0 46.3 0 64v48c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16V64c0-17.7-14.3-32-32-32z" ], + archway: [ 576, 512, [], "f557", "M560 448h-16V96H32v352H16.02c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16H176c8.84 0 16-7.16 16-16V320c0-53.02 42.98-96 96-96s96 42.98 96 96l.02 160v16c0 8.84 7.16 16 16 16H560c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm0-448H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h544c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16z" ], + "arrow-alt-circle-down": [ 512, 512, [], "f358", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM212 140v116h-70.9c-10.7 0-16.1 13-8.5 20.5l114.9 114.3c4.7 4.7 12.2 4.7 16.9 0l114.9-114.3c7.6-7.6 2.2-20.5-8.5-20.5H300V140c0-6.6-5.4-12-12-12h-64c-6.6 0-12 5.4-12 12z" ], + "arrow-alt-circle-left": [ 512, 512, [], "f359", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z" ], + "arrow-alt-circle-right": [ 512, 512, [], "f35a", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z" ], + "arrow-alt-circle-up": [ 512, 512, [], "f35b", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm292 116V256h70.9c10.7 0 16.1-13 8.5-20.5L264.5 121.2c-4.7-4.7-12.2-4.7-16.9 0l-115 114.3c-7.6 7.6-2.2 20.5 8.5 20.5H212v116c0 6.6 5.4 12 12 12h64c6.6 0 12-5.4 12-12z" ], + "arrow-circle-down": [ 512, 512, [], "f0ab", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-143.6-28.9L288 302.6V120c0-13.3-10.7-24-24-24h-16c-13.3 0-24 10.7-24 24v182.6l-72.4-75.5c-9.3-9.7-24.8-9.9-34.3-.4l-10.9 11c-9.4 9.4-9.4 24.6 0 33.9L239 404.3c9.4 9.4 24.6 9.4 33.9 0l132.7-132.7c9.4-9.4 9.4-24.6 0-33.9l-10.9-11c-9.5-9.5-25-9.3-34.3.4z" ], + "arrow-circle-left": [ 512, 512, [], "f0a8", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm28.9-143.6L209.4 288H392c13.3 0 24-10.7 24-24v-16c0-13.3-10.7-24-24-24H209.4l75.5-72.4c9.7-9.3 9.9-24.8.4-34.3l-11-10.9c-9.4-9.4-24.6-9.4-33.9 0L107.7 239c-9.4 9.4-9.4 24.6 0 33.9l132.7 132.7c9.4 9.4 24.6 9.4 33.9 0l11-10.9c9.5-9.5 9.3-25-.4-34.3z" ], + "arrow-circle-right": [ 512, 512, [], "f0a9", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28.9 143.6l75.5 72.4H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h182.6l-75.5 72.4c-9.7 9.3-9.9 24.8-.4 34.3l11 10.9c9.4 9.4 24.6 9.4 33.9 0L404.3 273c9.4-9.4 9.4-24.6 0-33.9L271.6 106.3c-9.4-9.4-24.6-9.4-33.9 0l-11 10.9c-9.5 9.6-9.3 25.1.4 34.4z" ], + "arrow-circle-up": [ 512, 512, [], "f0aa", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z" ], + "arrow-down": [ 448, 512, [], "f063", "M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z" ], + "arrow-left": [ 448, 512, [], "f060", "M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z" ], + "arrow-right": [ 448, 512, [], "f061", "M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z" ], + "arrow-up": [ 448, 512, [], "f062", "M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z" ], + "arrows-alt": [ 512, 512, [], "f0b2", "M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z" ], + "arrows-alt-h": [ 512, 512, [], "f337", "M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z" ], + "arrows-alt-v": [ 256, 512, [], "f338", "M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z" ], + "assistive-listening-systems": [ 512, 512, [], "f2a2", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z" ], + asterisk: [ 512, 512, [], "f069", "M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z" ], + at: [ 512, 512, [], "f1fa", "M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z" ], + atlas: [ 448, 512, [], "f558", "M318.38 208h-39.09c-1.49 27.03-6.54 51.35-14.21 70.41 27.71-13.24 48.02-39.19 53.3-70.41zm0-32c-5.29-31.22-25.59-57.17-53.3-70.41 7.68 19.06 12.72 43.38 14.21 70.41h39.09zM224 97.31c-7.69 7.45-20.77 34.42-23.43 78.69h46.87c-2.67-44.26-15.75-71.24-23.44-78.69zm-41.08 8.28c-27.71 13.24-48.02 39.19-53.3 70.41h39.09c1.49-27.03 6.53-51.35 14.21-70.41zm0 172.82c-7.68-19.06-12.72-43.38-14.21-70.41h-39.09c5.28 31.22 25.59 57.17 53.3 70.41zM247.43 208h-46.87c2.66 44.26 15.74 71.24 23.43 78.69 7.7-7.45 20.78-34.43 23.44-78.69zM448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM224 64c70.69 0 128 57.31 128 128s-57.31 128-128 128S96 262.69 96 192 153.31 64 224 64zm160 384H96c-19.2 0-32-12.8-32-32s16-32 32-32h288v64z" ], + "audio-description": [ 512, 512, [], "f29e", "M162.925 238.709l8.822 30.655h-25.606l9.041-30.652c1.277-4.421 2.651-9.994 3.872-15.245 1.22 5.251 2.594 10.823 3.871 15.242zm166.474-32.099h-14.523v98.781h14.523c29.776 0 46.175-17.678 46.175-49.776 0-32.239-17.49-49.005-46.175-49.005zM512 112v288c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48zM245.459 336.139l-57.097-168A12.001 12.001 0 0 0 177 160h-35.894a12.001 12.001 0 0 0-11.362 8.139l-57.097 168C70.003 343.922 75.789 352 84.009 352h29.133a12 12 0 0 0 11.535-8.693l8.574-29.906h51.367l8.793 29.977A12 12 0 0 0 204.926 352h29.172c8.22 0 14.006-8.078 11.361-15.861zm184.701-80.525c0-58.977-37.919-95.614-98.96-95.614h-57.366c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12H331.2c61.041 0 98.96-36.933 98.96-96.386z" ], + award: [ 384, 512, [], "f559", "M97.12 362.63l-5.3-5.3a9.004 9.004 0 0 0-4.02-2.32L72 350.77c-9.51-2.55-17.87-7.45-25.43-13.32L1.2 448.7c-4.39 10.77 3.81 22.47 15.43 22.03l52.69-2.01L105.56 507c8 8.44 22.04 5.81 26.43-4.96l52.05-127.62c-10.84 6.04-22.87 9.58-35.31 9.58-19.5 0-37.82-7.59-51.61-21.37zM382.8 448.7l-45.37-111.24c-7.56 5.88-15.92 10.77-25.43 13.32l-15.8 4.23a9.004 9.004 0 0 0-4.02 2.32l-5.3 5.3C273.09 376.41 254.76 384 235.26 384c-12.44 0-24.47-3.55-35.31-9.58L252 502.04c4.39 10.77 18.44 13.4 26.43 4.96l36.25-38.28 52.69 2.01c11.62.44 19.82-11.27 15.43-22.03zM263 340l5.21-5.3c5-5.09 11.22-8.75 18.05-10.61l15.53-4.23c13.89-3.79 24.75-14.84 28.47-28.98l4.16-15.81a41.145 41.145 0 0 1 10.42-18.37l11.37-11.57c10.17-10.35 14.14-25.44 10.42-39.58l-4.16-15.81a41.657 41.657 0 0 1 0-21.21l4.16-15.81c3.72-14.14-.25-29.23-10.42-39.58l-11.37-11.57c-5-5.09-8.59-11.42-10.42-18.37l-4.16-15.8c-3.72-14.14-14.58-25.19-28.47-28.98l-15.53-4.24c-6.83-1.86-13.05-5.52-18.05-10.61L256.84 12c-10.17-10.35-25-14.4-38.89-10.61l-15.53 4.24a39.614 39.614 0 0 1-20.84 0L166.05 1.4c-13.89-3.79-28.72.25-38.89 10.61l-11.37 11.57c-5 5.09-11.22 8.74-18.05 10.61l-15.53 4.24c-13.89 3.79-24.75 14.84-28.47 28.98l-4.16 15.8a41.145 41.145 0 0 1-10.42 18.37l-11.37 11.57c-10.17 10.35-14.15 25.44-10.42 39.58l4.16 15.8a41.657 41.657 0 0 1 0 21.21l-4.16 15.8c-3.72 14.14.25 29.23 10.42 39.59l11.37 11.57c5 5.09 8.59 11.42 10.42 18.37l4.16 15.8c3.72 14.14 14.58 25.19 28.47 28.98l15.53 4.23c6.83 1.86 13.05 5.52 18.05 10.61L121 340c13.23 13.47 33.84 15.88 49.74 5.82a39.676 39.676 0 0 1 42.53 0c15.89 10.06 36.5 7.65 49.73-5.82zM97.66 175.96c0-53.03 42.24-96.02 94.34-96.02s94.34 42.99 94.34 96.02-42.24 96.02-94.34 96.02-94.34-42.99-94.34-96.02z" ], + backspace: [ 640, 512, [], "f55a", "M576 64H205.26A63.97 63.97 0 0 0 160 82.75L9.37 233.37c-12.5 12.5-12.5 32.76 0 45.25L160 429.25c12 12 28.28 18.75 45.25 18.75H576c35.35 0 64-28.65 64-64V128c0-35.35-28.65-64-64-64zm-84.69 254.06c6.25 6.25 6.25 16.38 0 22.63l-22.62 22.62c-6.25 6.25-16.38 6.25-22.63 0L384 301.25l-62.06 62.06c-6.25 6.25-16.38 6.25-22.63 0l-22.62-22.62c-6.25-6.25-6.25-16.38 0-22.63L338.75 256l-62.06-62.06c-6.25-6.25-6.25-16.38 0-22.63l22.62-22.62c6.25-6.25 16.38-6.25 22.63 0L384 210.75l62.06-62.06c6.25-6.25 16.38-6.25 22.63 0l22.62 22.62c6.25 6.25 6.25 16.38 0 22.63L429.25 256l62.06 62.06z" ], + backward: [ 512, 512, [], "f04a", "M11.5 280.6l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2zm256 0l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2z" ], + "balance-scale": [ 640, 512, [], "f24e", "M256 336h-.02c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0C-2.06 328.75.02 320.33.02 336H0c0 44.18 57.31 80 128 80s128-35.82 128-80zM128 176l72 144H56l72-144zm511.98 160c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 320l72-144 72 144H440zm88 128H352V153.25c23.51-10.29 41.16-31.48 46.39-57.25H528c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H383.64C369.04 12.68 346.09 0 320 0s-49.04 12.68-63.64 32H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h129.61c5.23 25.76 22.87 46.96 46.39 57.25V448H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" ], + ban: [ 512, 512, [], "f05e", "M256 8C119.034 8 8 119.033 8 256s111.034 248 248 248 248-111.034 248-248S392.967 8 256 8zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676zM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676z" ], + "band-aid": [ 640, 512, [], "f462", "M0 160v192c0 35.3 28.7 64 64 64h96V96H64c-35.3 0-64 28.7-64 64zm576-64h-96v320h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64zM192 416h256V96H192v320zm176-232c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24z" ], + barcode: [ 512, 512, [], "f02a", "M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z" ], + bars: [ 448, 512, [], "f0c9", "M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" ], + "baseball-ball": [ 496, 512, [], "f433", "M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z" ], + "basketball-ball": [ 496, 512, [], "f434", "M212.3 10.3c-43.8 6.3-86.2 24.1-122.2 53.8l77.4 77.4c27.8-35.8 43.3-81.2 44.8-131.2zM248 222L405.9 64.1c-42.4-35-93.6-53.5-145.5-56.1-1.2 63.9-21.5 122.3-58.7 167.7L248 222zM56.1 98.1c-29.7 36-47.5 78.4-53.8 122.2 50-1.5 95.5-17 131.2-44.8L56.1 98.1zm272.2 204.2c45.3-37.1 103.7-57.4 167.7-58.7-2.6-51.9-21.1-103.1-56.1-145.5L282 256l46.3 46.3zM248 290L90.1 447.9c42.4 34.9 93.6 53.5 145.5 56.1 1.3-64 21.6-122.4 58.7-167.7L248 290zm191.9 123.9c29.7-36 47.5-78.4 53.8-122.2-50.1 1.6-95.5 17.1-131.2 44.8l77.4 77.4zM167.7 209.7C122.3 246.9 63.9 267.3 0 268.4c2.6 51.9 21.1 103.1 56.1 145.5L214 256l-46.3-46.3zm116 292c43.8-6.3 86.2-24.1 122.2-53.8l-77.4-77.4c-27.7 35.7-43.2 81.2-44.8 131.2z" ], + bath: [ 512, 512, [], "f2cd", "M488 256H80V112c0-17.645 14.355-32 32-32 11.351 0 21.332 5.945 27.015 14.88-16.492 25.207-14.687 59.576 6.838 83.035-4.176 4.713-4.021 11.916.491 16.428l11.314 11.314c4.686 4.686 12.284 4.686 16.971 0l95.03-95.029c4.686-4.686 4.686-12.284 0-16.971l-11.314-11.314c-4.512-4.512-11.715-4.666-16.428-.491-17.949-16.469-42.294-21.429-64.178-15.365C163.281 45.667 139.212 32 112 32c-44.112 0-80 35.888-80 80v144h-8c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h8v32c0 28.43 12.362 53.969 32 71.547V456c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-8h256v8c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-32.453c19.638-17.578 32-43.117 32-71.547v-32h8c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z" ], + "battery-empty": [ 640, 512, [], "f244", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48z" ], + "battery-full": [ 640, 512, [], "f240", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-48 96H96v128h416V192z" ], + "battery-half": [ 640, 512, [], "f242", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-240 96H96v128h224V192z" ], + "battery-quarter": [ 640, 512, [], "f243", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-336 96H96v128h128V192z" ], + "battery-three-quarters": [ 640, 512, [], "f241", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-144 96H96v128h320V192z" ], + bed: [ 640, 512, [], "f236", "M176 256c44.11 0 80-35.89 80-80s-35.89-80-80-80-80 35.89-80 80 35.89 80 80 80zm352-128H304c-8.84 0-16 7.16-16 16v144H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v352c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h512v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V240c0-61.86-50.14-112-112-112z" ], + beer: [ 448, 512, [], "f0fc", "M368 96h-48V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24v-42.11l80.606-35.977C429.396 365.063 448 336.388 448 304.86V176c0-44.112-35.888-80-80-80zm16 208.86a16.018 16.018 0 0 1-9.479 14.611L320 343.805V160h48c8.822 0 16 7.178 16 16v128.86zM208 384c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16zm-96 0c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16z" ], + bell: [ 448, 512, [], "f0f3", "M433.884 366.059C411.634 343.809 384 316.118 384 208c0-79.394-57.831-145.269-133.663-157.83A31.845 31.845 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 6.75 2.095 13.008 5.663 18.17C121.831 62.731 64 128.606 64 208c0 108.118-27.643 135.809-49.893 158.059C-16.042 396.208 5.325 448 48.048 448H160c0 35.346 28.654 64 64 64s64-28.654 64-64h111.943c42.638 0 64.151-51.731 33.941-81.941zM224 472a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16c0 13.234 10.766 24 24 24z" ], + "bell-slash": [ 576, 512, [], "f1f6", "M78.107 366.059C47.958 396.208 69.325 448 112.048 448H224c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h32.685L127.848 221.379c-2.198 97.078-28.439 123.378-49.741 144.68zM264 448c0 13.234 10.766 24 24 24a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16zm305.896 43.733l-10.762 12.086c-8.915 10.012-24.333 10.967-34.437 2.133L8.256 54.393C-1.848 45.558-2.811 30.28 6.104 20.267L16.865 8.181C25.781-1.831 41.199-2.786 51.303 6.049l113.81 99.512c24.017-28.778 57.946-48.996 96.55-55.39A31.85 31.85 0 0 1 256 32c0-17.673 14.327-32 32-32s32 14.327 32 32c0 6.75-2.095 13.008-5.663 18.17C390.169 62.731 448 128.606 448 208c0 108.118 27.634 135.809 49.884 158.059 12.149 12.149 15.923 27.776 13.33 42.121l56.53 49.427c10.104 8.835 11.067 24.113 2.152 34.126z" ], + "bezier-curve": [ 640, 512, [], "f55b", "M368 32h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM208 88h-84.75C113.75 64.56 90.84 48 64 48 28.66 48 0 76.65 0 112s28.66 64 64 64c26.84 0 49.75-16.56 59.25-40h79.73c-55.37 32.52-95.86 87.32-109.54 152h49.4c11.3-41.61 36.77-77.21 71.04-101.56-3.7-8.08-5.88-16.99-5.88-26.44V88zm-48 232H64c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zM576 48c-26.84 0-49.75 16.56-59.25 40H432v72c0 9.45-2.19 18.36-5.88 26.44 34.27 24.35 59.74 59.95 71.04 101.56h49.4c-13.68-64.68-54.17-119.48-109.54-152h79.73c9.5 23.44 32.41 40 59.25 40 35.34 0 64-28.65 64-64s-28.66-64-64-64zm0 272h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z" ], + bicycle: [ 640, 512, [], "f206", "M512.509 192.001c-16.373-.064-32.03 2.955-46.436 8.495l-77.68-125.153A24 24 0 0 0 368.001 64h-64c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h50.649l14.896 24H256.002v-16c0-8.837-7.163-16-16-16h-87.459c-13.441 0-24.777 10.999-24.536 24.437.232 13.044 10.876 23.563 23.995 23.563h48.726l-29.417 47.52c-13.433-4.83-27.904-7.483-42.992-7.52C58.094 191.83.412 249.012.002 319.236-.413 390.279 57.055 448 128.002 448c59.642 0 109.758-40.793 123.967-96h52.033a24 24 0 0 0 20.406-11.367L410.37 201.77l14.938 24.067c-25.455 23.448-41.385 57.081-41.307 94.437.145 68.833 57.899 127.051 126.729 127.719 70.606.685 128.181-55.803 129.255-125.996 1.086-70.941-56.526-129.72-127.476-129.996zM186.75 265.772c9.727 10.529 16.673 23.661 19.642 38.228h-43.306l23.664-38.228zM128.002 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c5.869 0 11.586.653 17.099 1.859l-45.505 73.509C89.715 331.327 101.213 352 120.002 352h81.3c-12.37 28.225-40.562 48-73.3 48zm162.63-96h-35.624c-3.96-31.756-19.556-59.894-42.383-80.026L237.371 184h127.547l-74.286 120zm217.057 95.886c-41.036-2.165-74.049-35.692-75.627-76.755-.812-21.121 6.633-40.518 19.335-55.263l44.433 71.586c4.66 7.508 14.524 9.816 22.032 5.156l13.594-8.437c7.508-4.66 9.817-14.524 5.156-22.032l-44.468-71.643a79.901 79.901 0 0 1 19.858-2.497c44.112 0 80 35.888 80 80-.001 45.54-38.252 82.316-84.313 79.885z" ], + binoculars: [ 512, 512, [], "f1e5", "M192 104H96V56c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24v48zm224-48c0-13.255-10.745-24-24-24h-48c-13.255 0-24 10.745-24 24v48h96V56zM0 456c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H0v16zm88-328c-13.255 0-24 10.745-24 24C64 256 0 272 0 416h168V312c0-13.255 10.745-24 24-24V128H88zm256 328c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H344v16zM216 128v160h80V128h-80zm128 288h168c0-144-64-160-64-264 0-13.255-10.745-24-24-24H320v160c13.255 0 24 10.745 24 24v104z" ], + "birthday-cake": [ 448, 512, [], "f1fd", "M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z" ], + blender: [ 512, 512, [], "f517", "M416 384H160c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-128 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm40-416h166.54L512 0H48C21.49 0 0 21.49 0 48v160c0 26.51 21.49 48 48 48h103.27l8.73 96h256l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H328c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM64 192V64h69.82l11.64 128H64z" ], + blind: [ 384, 512, [], "f29d", "M380.15 510.837a8 8 0 0 1-10.989-2.687l-125.33-206.427a31.923 31.923 0 0 0 12.958-9.485l126.048 207.608a8 8 0 0 1-2.687 10.991zM142.803 314.338l-32.54 89.485 36.12 88.285c6.693 16.36 25.377 24.192 41.733 17.501 16.357-6.692 24.193-25.376 17.501-41.734l-62.814-153.537zM96 88c24.301 0 44-19.699 44-44S120.301 0 96 0 52 19.699 52 44s19.699 44 44 44zm154.837 169.128l-120-152c-4.733-5.995-11.75-9.108-18.837-9.112V96H80v.026c-7.146.003-14.217 3.161-18.944 9.24L0 183.766v95.694c0 13.455 11.011 24.791 24.464 24.536C37.505 303.748 48 293.1 48 280v-79.766l16-20.571v140.698L9.927 469.055c-6.04 16.609 2.528 34.969 19.138 41.009 16.602 6.039 34.968-2.524 41.009-19.138L136 309.638V202.441l-31.406-39.816a4 4 0 1 1 6.269-4.971l102.3 129.217c9.145 11.584 24.368 11.339 33.708 3.965 10.41-8.216 12.159-23.334 3.966-33.708z" ], + bold: [ 384, 512, [], "f032", "M304.793 243.891c33.639-18.537 53.657-54.16 53.657-95.693 0-48.236-26.25-87.626-68.626-104.179C265.138 34.01 240.849 32 209.661 32H24c-8.837 0-16 7.163-16 16v33.049c0 8.837 7.163 16 16 16h33.113v318.53H24c-8.837 0-16 7.163-16 16V464c0 8.837 7.163 16 16 16h195.69c24.203 0 44.834-1.289 66.866-7.584C337.52 457.193 376 410.647 376 350.014c0-52.168-26.573-91.684-71.207-106.123zM142.217 100.809h67.444c16.294 0 27.536 2.019 37.525 6.717 15.828 8.479 24.906 26.502 24.906 49.446 0 35.029-20.32 56.79-53.029 56.79h-76.846V100.809zm112.642 305.475c-10.14 4.056-22.677 4.907-31.409 4.907h-81.233V281.943h84.367c39.645 0 63.057 25.38 63.057 63.057.001 28.425-13.66 52.483-34.782 61.284z" ], + bolt: [ 320, 512, [], "f0e7", "M295.973 160H180.572L215.19 30.184C219.25 14.956 207.756 0 192 0H56C43.971 0 33.8 8.905 32.211 20.828l-31.996 240C-1.704 275.217 9.504 288 24.004 288h118.701L96.646 482.466C93.05 497.649 104.659 512 119.992 512c8.35 0 16.376-4.374 20.778-11.978l175.973-303.997c9.244-15.967-2.288-36.025-20.77-36.025z" ], + bomb: [ 512, 512, [], "f1e2", "M440.5 88.5l-52 52L415 167c9.4 9.4 9.4 24.6 0 33.9l-17.4 17.4c11.8 26.1 18.4 55.1 18.4 85.6 0 114.9-93.1 208-208 208S0 418.9 0 304 93.1 96 208 96c30.5 0 59.5 6.6 85.6 18.4L311 97c9.4-9.4 24.6-9.4 33.9 0l26.5 26.5 52-52 17.1 17zM500 60h-24c-6.6 0-12 5.4-12 12s5.4 12 12 12h24c6.6 0 12-5.4 12-12s-5.4-12-12-12zM440 0c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12s12-5.4 12-12V12c0-6.6-5.4-12-12-12zm33.9 55l17-17c4.7-4.7 4.7-12.3 0-17-4.7-4.7-12.3-4.7-17 0l-17 17c-4.7 4.7-4.7 12.3 0 17 4.8 4.7 12.4 4.7 17 0zm-67.8 0c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17zm67.8 34c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17zM112 272c0-35.3 28.7-64 64-64 8.8 0 16-7.2 16-16s-7.2-16-16-16c-52.9 0-96 43.1-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16z" ], + bong: [ 448, 512, [], "f55c", "M302.5 512c23.18 0 44.43-12.58 56-32.66C374.69 451.26 384 418.75 384 384c0-36.12-10.08-69.81-27.44-98.62L400 241.94l9.38 9.38c6.25 6.25 16.38 6.25 22.63 0l11.3-11.32c6.25-6.25 6.25-16.38 0-22.63l-52.69-52.69c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63l9.38 9.38-39.41 39.41c-11.56-11.37-24.53-21.33-38.65-29.51V63.74l15.97-.02c8.82-.01 15.97-7.16 15.98-15.98l.04-31.72C320 7.17 312.82-.01 303.97 0L80.03.26c-8.82.01-15.97 7.16-15.98 15.98l-.04 31.73c-.01 8.85 7.17 16.02 16.02 16.01L96 63.96v153.93C38.67 251.1 0 312.97 0 384c0 34.75 9.31 67.27 25.5 95.34C37.08 499.42 58.33 512 81.5 512h221zM120.06 259.43L144 245.56V63.91l96-.11v181.76l23.94 13.87c24.81 14.37 44.12 35.73 56.56 60.57h-257c12.45-24.84 31.75-46.2 56.56-60.57z" ], + book: [ 448, 512, [], "f02d", "M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z" ], + "book-open": [ 576, 512, [], "f518", "M542.22 32.05c-54.8 3.11-163.72 14.43-230.96 55.59-4.64 2.84-7.27 7.89-7.27 13.17v363.87c0 11.55 12.63 18.85 23.28 13.49 69.18-34.82 169.23-44.32 218.7-46.92 16.89-.89 30.02-14.43 30.02-30.66V62.75c.01-17.71-15.35-31.74-33.77-30.7zM264.73 87.64C197.5 46.48 88.58 35.17 33.78 32.05 15.36 31.01 0 45.04 0 62.75V400.6c0 16.24 13.13 29.78 30.02 30.66 49.49 2.6 149.59 12.11 218.77 46.95 10.62 5.35 23.21-1.94 23.21-13.46V100.63c0-5.29-2.62-10.14-7.27-12.99z" ], + bookmark: [ 384, 512, [], "f02e", "M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z" ], + "bowling-ball": [ 496, 512, [], "f436", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM120 192c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64-96c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm48 144c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + box: [ 512, 512, [], "f466", "M509.5 184.6L458.9 32.8C452.4 13.2 434.1 0 413.4 0H272v192h238.7c-.4-2.5-.4-5-1.2-7.4zM240 0H98.6c-20.7 0-39 13.2-45.5 32.8L2.5 184.6c-.8 2.4-.8 4.9-1.2 7.4H240V0zM0 224v240c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V224H0z" ], + "box-open": [ 640, 512, [], "f49e", "M53.2 41L1.7 143.8c-4.6 9.2.3 20.2 10.1 23l197.9 56.5c7.1 2 14.7-1 18.5-7.3L320 64 69.8 32.1c-6.9-.8-13.5 2.7-16.6 8.9zm585.1 102.8L586.8 41c-3.1-6.2-9.8-9.8-16.7-8.9L320 64l91.7 152.1c3.8 6.3 11.4 9.3 18.5 7.3l197.9-56.5c9.9-2.9 14.7-13.9 10.2-23.1zM425.7 256c-16.9 0-32.8-9-41.4-23.4L320 126l-64.2 106.6c-8.7 14.5-24.6 23.5-41.5 23.5-4.5 0-9-.6-13.3-1.9L64 215v178c0 14.7 10 27.5 24.2 31l216.2 54.1c10.2 2.5 20.9 2.5 31 0L551.8 424c14.2-3.6 24.2-16.4 24.2-31V215l-137 39.1c-4.3 1.3-8.8 1.9-13.3 1.9z" ], + boxes: [ 576, 512, [], "f468", "M560 288h-80v96l-32-21.3-32 21.3v-96h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16zm-384-64h224c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16h-80v96l-32-21.3L256 96V0h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16zm64 64h-80v96l-32-21.3L96 384v-96H16c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16z" ], + braille: [ 640, 512, [], "f2a1", "M128 256c0 35.346-28.654 64-64 64S0 291.346 0 256s28.654-64 64-64 64 28.654 64 64zM64 384c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352C28.654 32 0 60.654 0 96s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm224 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-320c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z" ], + briefcase: [ 512, 512, [], "f0b1", "M320 288h192v144c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V288h192v20c0 6.627 5.373 12 12 12h104c6.627 0 12-5.373 12-12v-20zm192-112v80H0v-80c0-26.51 21.49-48 48-48h80V80c0-26.51 21.49-48 48-48h160c26.51 0 48 21.49 48 48v48h80c26.51 0 48 21.49 48 48zM320 96H192v32h128V96z" ], + "briefcase-medical": [ 512, 512, [], "f469", "M464 128h-80V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48zM192 96h128v32H192V96zm160 248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48z" ], + "broadcast-tower": [ 640, 512, [], "f519", "M150.94 192h33.73c11.01 0 18.61-10.83 14.86-21.18-4.93-13.58-7.55-27.98-7.55-42.82s2.62-29.24 7.55-42.82C203.29 74.83 195.68 64 184.67 64h-33.73c-7.01 0-13.46 4.49-15.41 11.23C130.64 92.21 128 109.88 128 128c0 18.12 2.64 35.79 7.54 52.76 1.94 6.74 8.39 11.24 15.4 11.24zM89.92 23.34C95.56 12.72 87.97 0 75.96 0H40.63c-6.27 0-12.14 3.59-14.74 9.31C9.4 45.54 0 85.65 0 128c0 24.75 3.12 68.33 26.69 118.86 2.62 5.63 8.42 9.14 14.61 9.14h34.84c12.02 0 19.61-12.74 13.95-23.37-49.78-93.32-16.71-178.15-.17-209.29zM614.06 9.29C611.46 3.58 605.6 0 599.33 0h-35.42c-11.98 0-19.66 12.66-14.02 23.25 18.27 34.29 48.42 119.42.28 209.23-5.72 10.68 1.8 23.52 13.91 23.52h35.23c6.27 0 12.13-3.58 14.73-9.29C630.57 210.48 640 170.36 640 128s-9.42-82.48-25.94-118.71zM489.06 64h-33.73c-11.01 0-18.61 10.83-14.86 21.18 4.93 13.58 7.55 27.98 7.55 42.82s-2.62 29.24-7.55 42.82c-3.76 10.35 3.85 21.18 14.86 21.18h33.73c7.02 0 13.46-4.49 15.41-11.24 4.9-16.97 7.53-34.64 7.53-52.76 0-18.12-2.64-35.79-7.54-52.76-1.94-6.75-8.39-11.24-15.4-11.24zm-116.3 100.12c7.05-10.29 11.2-22.71 11.2-36.12 0-35.35-28.63-64-63.96-64-35.32 0-63.96 28.65-63.96 64 0 13.41 4.15 25.83 11.2 36.12l-130.5 313.41c-3.4 8.15.46 17.52 8.61 20.92l29.51 12.31c8.15 3.4 17.52-.46 20.91-8.61L244.96 384h150.07l49.2 118.15c3.4 8.16 12.76 12.01 20.91 8.61l29.51-12.31c8.15-3.4 12-12.77 8.61-20.92l-130.5-313.41zM271.62 320L320 203.81 368.38 320h-96.76z" ], + broom: [ 512, 512, [], "f51a", "M10.8 247.2C-.7 251.8-3.7 266.7 5 275.4l54.8 54.8 73.2-24.4-24.4 73.2 128 128c8.8 8.8 23.6 5.7 28.2-5.8l98.1-243.7-108.4-108.4-243.7 98.1zM507.3 27.3L484.7 4.7c-6.2-6.3-16.4-6.3-22.6 0L359.8 106.9l-40.4-40.4c-4.2-4.3-11.4-3-13.9 2.5l-27.2 58.6 106.1 106.1 58.6-27.2c5.4-2.5 6.7-9.7 2.5-13.9l-40.4-40.4L507.3 49.9c6.3-6.2 6.3-16.3 0-22.6z" ], + brush: [ 384, 512, [], "f55d", "M352 0H32C14.33 0 0 14.33 0 32v224h384V32c0-17.67-14.33-32-32-32zM0 320c0 35.35 28.66 64 64 64h64v64c0 35.35 28.66 64 64 64s64-28.65 64-64v-64h64c35.34 0 64-28.65 64-64v-32H0v32zm192 104c13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24s-24-10.75-24-24c0-13.26 10.75-24 24-24z" ], + bug: [ 512, 512, [], "f188", "M511.988 288.9c-.478 17.43-15.217 31.1-32.653 31.1H424v16c0 21.864-4.882 42.584-13.6 61.145l60.228 60.228c12.496 12.497 12.496 32.758 0 45.255-12.498 12.497-32.759 12.496-45.256 0l-54.736-54.736C345.886 467.965 314.351 480 280 480V236c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v244c-34.351 0-65.886-12.035-90.636-32.108l-54.736 54.736c-12.498 12.497-32.759 12.496-45.256 0-12.496-12.497-12.496-32.758 0-45.255l60.228-60.228C92.882 378.584 88 357.864 88 336v-16H32.666C15.23 320 .491 306.33.013 288.9-.484 270.816 14.028 256 32 256h56v-58.745l-46.628-46.628c-12.496-12.497-12.496-32.758 0-45.255 12.498-12.497 32.758-12.497 45.256 0L141.255 160h229.489l54.627-54.627c12.498-12.497 32.758-12.497 45.256 0 12.496 12.497 12.496 32.758 0 45.255L424 197.255V256h56c17.972 0 32.484 14.816 31.988 32.9zM257 0c-61.856 0-112 50.144-112 112h224C369 50.144 318.856 0 257 0z" ], + building: [ 448, 512, [], "f1ad", "M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z" ], + bullhorn: [ 576, 512, [], "f0a1", "M576 224c0-20.896-13.36-38.666-32-45.258V64c0-35.346-28.654-64-64-64-64.985 56-142.031 128-272 128H48c-26.51 0-48 21.49-48 48v96c0 26.51 21.49 48 48 48h43.263c-18.742 64.65 2.479 116.379 18.814 167.44 1.702 5.32 5.203 9.893 9.922 12.88 20.78 13.155 68.355 15.657 93.773 5.151 16.046-6.633 19.96-27.423 7.522-39.537-18.508-18.026-30.136-36.91-19.795-60.858a12.278 12.278 0 0 0-1.045-11.673c-16.309-24.679-3.581-62.107 28.517-72.752C346.403 327.887 418.591 395.081 480 448c35.346 0 64-28.654 64-64V269.258c18.64-6.592 32-24.362 32-45.258zm-96 139.855c-54.609-44.979-125.033-92.94-224-104.982v-69.747c98.967-12.042 169.391-60.002 224-104.982v279.711z" ], + bullseye: [ 512, 512, [], "f140", "M256 72c101.689 0 184 82.295 184 184 0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-101.689 82.295-184 184-184m0-64C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 184c35.29 0 64 28.71 64 64s-28.71 64-64 64-64-28.71-64-64 28.71-64 64-64m0-64c-70.692 0-128 57.308-128 128s57.308 128 128 128 128-57.308 128-128-57.308-128-128-128z" ], + burn: [ 384, 512, [], "f46a", "M192 0C79.7 101.3 0 220.9 0 300.5 0 425 79 512 192 512s192-87 192-211.5c0-79.9-80.2-199.6-192-300.5zm0 448c-56.5 0-96-39-96-94.8 0-13.5 4.6-61.5 96-161.2 91.4 99.7 96 147.7 96 161.2 0 55.8-39.5 94.8-96 94.8z" ], + bus: [ 512, 512, [], "f207", "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM112 400c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm16-112c-17.67 0-32-14.33-32-32V128c0-17.67 14.33-32 32-32h256c17.67 0 32 14.33 32 32v128c0 17.67-14.33 32-32 32H128zm272 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "bus-alt": [ 512, 512, [], "f55e", "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM160 72c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H168c-4.42 0-8-3.58-8-8V72zm-48 328c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm128-112H128c-17.67 0-32-14.33-32-32v-96c0-17.67 14.33-32 32-32h112v160zm32 0V128h112c17.67 0 32 14.33 32 32v96c0 17.67-14.33 32-32 32H272zm128 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + calculator: [ 448, 512, [], "f1ec", "M0 464V48C0 21.49 21.49 0 48 0h352c26.51 0 48 21.49 48 48v416c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm384-284V76c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v104c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12zM128 308v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm256 128V268c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-256 0v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm128-128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm0 128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z" ], + calendar: [ 448, 512, [], "f133", "M12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm436-44v-36c0-26.5-21.5-48-48-48h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v36c0 6.6 5.4 12 12 12h424c6.6 0 12-5.4 12-12z" ], + "calendar-alt": [ 448, 512, [], "f073", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm116 204c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40z" ], + "calendar-check": [ 448, 512, [], "f274", "M436 160H12c-6.627 0-12-5.373-12-12v-36c0-26.51 21.49-48 48-48h48V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h128V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h48c26.51 0 48 21.49 48 48v36c0 6.627-5.373 12-12 12zM12 192h424c6.627 0 12 5.373 12 12v260c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V204c0-6.627 5.373-12 12-12zm333.296 95.947l-28.169-28.398c-4.667-4.705-12.265-4.736-16.97-.068L194.12 364.665l-45.98-46.352c-4.667-4.705-12.266-4.736-16.971-.068l-28.397 28.17c-4.705 4.667-4.736 12.265-.068 16.97l82.601 83.269c4.667 4.705 12.265 4.736 16.97.068l142.953-141.805c4.705-4.667 4.736-12.265.068-16.97z" ], + "calendar-minus": [ 448, 512, [], "f272", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm304 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H132c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h184z" ], + "calendar-plus": [ 448, 512, [], "f271", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm316 140c0-6.6-5.4-12-12-12h-60v-60c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v60h-60c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h60v60c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-60h60c6.6 0 12-5.4 12-12v-40z" ], + "calendar-times": [ 448, 512, [], "f273", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm257.3 160l48.1-48.1c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0L224 306.7l-48.1-48.1c-4.7-4.7-12.3-4.7-17 0l-28.3 28.3c-4.7 4.7-4.7 12.3 0 17l48.1 48.1-48.1 48.1c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l48.1-48.1 48.1 48.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L269.3 352z" ], + camera: [ 512, 512, [], "f030", "M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z" ], + "camera-retro": [ 512, 512, [], "f083", "M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm0 32h106c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H38c-3.3 0-6-2.7-6-6V80c0-8.8 7.2-16 16-16zm426 96H38c-3.3 0-6-2.7-6-6v-36c0-3.3 2.7-6 6-6h138l30.2-45.3c1.1-1.7 3-2.7 5-2.7H464c8.8 0 16 7.2 16 16v74c0 3.3-2.7 6-6 6zM256 424c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88zm-48 104c-8.8 0-16-7.2-16-16 0-35.3 28.7-64 64-64 8.8 0 16 7.2 16 16s-7.2 16-16 16c-17.6 0-32 14.4-32 32 0 8.8-7.2 16-16 16z" ], + cannabis: [ 512, 512, [], "f55f", "M503.47 360.25c-1.56-.82-32.39-16.89-76.78-25.81 64.25-75.12 84.05-161.67 84.93-165.64 1.18-5.33-.44-10.9-4.3-14.77-3.03-3.04-7.12-4.7-11.32-4.7-1.14 0-2.29.12-3.44.38-3.88.85-86.54 19.59-160.58 79.76.01-1.46.01-2.93.01-4.4 0-118.79-59.98-213.72-62.53-217.7A15.973 15.973 0 0 0 256 0c-5.45 0-10.53 2.78-13.47 7.37-2.55 3.98-62.53 98.91-62.53 217.7 0 1.47.01 2.94.01 4.4-74.03-60.16-156.69-78.9-160.58-79.76-1.14-.25-2.29-.38-3.44-.38-4.2 0-8.29 1.66-11.32 4.7A15.986 15.986 0 0 0 .38 168.8c.88 3.97 20.68 90.52 84.93 165.64-44.39 8.92-75.21 24.99-76.78 25.81a16.003 16.003 0 0 0-.02 28.29c2.45 1.29 60.76 31.72 133.49 31.72 6.14 0 11.96-.1 17.5-.31-11.37 22.23-16.52 38.31-16.81 39.22-1.8 5.68-.29 11.89 3.91 16.11a16.019 16.019 0 0 0 16.1 3.99c1.83-.57 37.72-11.99 77.3-39.29V504c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8v-64.01c39.58 27.3 75.47 38.71 77.3 39.29a16.019 16.019 0 0 0 16.1-3.99c4.2-4.22 5.71-10.43 3.91-16.11-.29-.91-5.45-16.99-16.81-39.22 5.54.21 11.37.31 17.5.31 72.72 0 131.04-30.43 133.49-31.72 5.24-2.78 8.52-8.22 8.51-14.15-.01-5.94-3.29-11.39-8.53-14.15z" ], + capsules: [ 576, 512, [], "f46b", "M555.3 300.1L424.2 112.8C401.9 81 366.4 64 330.4 64c-22.6 0-45.5 6.7-65.5 20.7-19.7 13.8-33.7 32.8-41.5 53.8C220.5 79.2 172 32 112 32 50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V218.9c3.3 8.6 7.3 17.1 12.8 25L368 431.2c22.2 31.8 57.7 48.8 93.8 48.8 22.7 0 45.5-6.7 65.5-20.7 51.7-36.2 64.2-107.5 28-159.2zM160 256H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm194.8 44.9l-65.6-93.7c-7.7-11-10.7-24.4-8.3-37.6 2.3-13.2 9.7-24.8 20.7-32.5 8.5-6 18.5-9.1 28.8-9.1 16.5 0 31.9 8 41.3 21.5l65.6 93.7-82.5 57.7z" ], + car: [ 512, 512, [], "f1b9", "M499.991 168h-54.815l-7.854-20.944c-9.192-24.513-25.425-45.351-46.942-60.263S343.651 64 317.472 64H194.528c-26.18 0-51.391 7.882-72.908 22.793-21.518 14.912-37.75 35.75-46.942 60.263L66.824 168H12.009c-8.191 0-13.974 8.024-11.384 15.795l8 24A12 12 0 0 0 20.009 216h28.815l-.052.14C29.222 227.093 16 247.997 16 272v48c0 16.225 6.049 31.029 16 42.309V424c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-40h256v40c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-61.691c9.951-11.281 16-26.085 16-42.309v-48c0-24.003-13.222-44.907-32.772-55.86l-.052-.14h28.815a12 12 0 0 0 11.384-8.205l8-24c2.59-7.771-3.193-15.795-11.384-15.795zm-365.388 1.528C143.918 144.689 168 128 194.528 128h122.944c26.528 0 50.61 16.689 59.925 41.528L391.824 208H120.176l14.427-38.472zM88 328c-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32s48 30.327 48 48-30.327 16-48 16zm336 0c-17.673 0-48 1.673-48-16 0-17.673 30.327-48 48-48s32 14.327 32 32c0 17.673-14.327 32-32 32z" ], + "caret-down": [ 320, 512, [], "f0d7", "M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" ], + "caret-left": [ 192, 512, [], "f0d9", "M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z" ], + "caret-right": [ 192, 512, [], "f0da", "M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z" ], + "caret-square-down": [ 448, 512, [], "f150", "M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM92.5 220.5l123 123c4.7 4.7 12.3 4.7 17 0l123-123c7.6-7.6 2.2-20.5-8.5-20.5H101c-10.7 0-16.1 12.9-8.5 20.5z" ], + "caret-square-left": [ 448, 512, [], "f191", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM259.515 124.485l-123.03 123.03c-4.686 4.686-4.686 12.284 0 16.971l123.029 123.029c7.56 7.56 20.485 2.206 20.485-8.485V132.971c.001-10.691-12.925-16.045-20.484-8.486z" ], + "caret-square-right": [ 448, 512, [], "f152", "M48 32h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48zm140.485 355.515l123.029-123.029c4.686-4.686 4.686-12.284 0-16.971l-123.029-123.03c-7.56-7.56-20.485-2.206-20.485 8.485v246.059c0 10.691 12.926 16.045 20.485 8.486z" ], + "caret-square-up": [ 448, 512, [], "f151", "M0 432V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm355.515-140.485l-123.03-123.03c-4.686-4.686-12.284-4.686-16.971 0L92.485 291.515c-7.56 7.56-2.206 20.485 8.485 20.485h246.059c10.691 0 16.045-12.926 8.486-20.485z" ], + "caret-up": [ 320, 512, [], "f0d8", "M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z" ], + "cart-arrow-down": [ 576, 512, [], "f218", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z" ], + "cart-plus": [ 576, 512, [], "f217", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM408 168h-48v-40c0-8.837-7.163-16-16-16h-16c-8.837 0-16 7.163-16 16v40h-48c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h48v40c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-40h48c8.837 0 16-7.163 16-16v-16c0-8.837-7.163-16-16-16z" ], + certificate: [ 512, 512, [], "f0a3", "M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z" ], + chalkboard: [ 640, 512, [], "f51b", "M96 64h448v352h64V40c0-22.06-17.94-40-40-40H72C49.94 0 32 17.94 32 40v376h64V64zm528 384H480v-64H288v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" ], + "chalkboard-teacher": [ 640, 512, [], "f51c", "M208 352c-2.39 0-4.78.35-7.06 1.09C187.98 357.3 174.35 360 160 360c-14.35 0-27.98-2.7-40.95-6.91-2.28-.74-4.66-1.09-7.05-1.09C49.94 352-.33 402.48 0 464.62.14 490.88 21.73 512 48 512h224c26.27 0 47.86-21.12 48-47.38.33-62.14-49.94-112.62-112-112.62zm-48-32c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM592 0H208c-26.47 0-48 22.25-48 49.59V96c23.42 0 45.1 6.78 64 17.8V64h352v288h-64v-64H384v64h-76.24c19.1 16.69 33.12 38.73 39.69 64H592c26.47 0 48-22.25 48-49.59V49.59C640 22.25 618.47 0 592 0z" ], + "chart-area": [ 512, 512, [], "f1fe", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z" ], + "chart-bar": [ 512, 512, [], "f080", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zm-308-44v-72c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V204c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V108c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z" ], + "chart-line": [ 512, 512, [], "f201", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM456 96H344c-21.4 0-32.1 25.9-17 41l32.9 32.9-72 72.9-55.6-55.6c-4.7-4.7-12.2-4.7-16.9 0L96.4 305c-4.7 4.6-4.8 12.2-.2 16.9l28.5 29.4c4.7 4.8 12.4 4.9 17.1.1l82.1-82.1 55.5 55.5c4.7 4.7 12.3 4.7 17 0l109.2-109.2L439 249c15.1 15.1 41 4.4 41-17V120c0-13.3-10.7-24-24-24z" ], + "chart-pie": [ 576, 512, [], "f200", "M288 12.3V240h227.7c6.9 0 12.3-5.8 12-12.7-6.4-122.4-104.5-220.6-227-227-6.9-.3-12.7 5.1-12.7 12zM552.7 288c6.9 0 12.3 5.8 12 12.7-2.8 53.2-23.2 105.6-61.2 147.8-4.6 5.1-12.6 5.4-17.5.5L325 288h227.7zM401 433c4.8 4.8 4.7 12.8-.4 17.3-42.6 38.4-99 61.7-160.8 61.7C107.6 511.9-.2 403.8 0 271.5.2 143.4 100.8 38.9 227.3 32.3c6.9-.4 12.7 5.1 12.7 12V272l161 161z" ], + check: [ 512, 512, [], "f00c", "M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" ], + "check-circle": [ 512, 512, [], "f058", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z" ], + "check-double": [ 512, 512, [], "f560", "M504.5 171.95l-36.2-36.41c-10-10.05-26.21-10.05-36.2 0L192 377.02 79.9 264.28c-10-10.06-26.21-10.06-36.2 0L7.5 300.69c-10 10.05-10 26.36 0 36.41l166.4 167.36c10 10.06 26.21 10.06 36.2 0l294.4-296.09c10-10.06 10-26.36 0-36.42zM166.57 282.71c6.84 7.02 18.18 7.02 25.21.18L403.85 72.62c7.02-6.84 7.02-18.18.18-25.21L362.08 5.29c-6.84-7.02-18.18-7.02-25.21-.18L179.71 161.19l-68.23-68.77c-6.84-7.02-18.18-7.02-25.2-.18l-42.13 41.77c-7.02 6.84-7.02 18.18-.18 25.2l122.6 123.5z" ], + "check-square": [ 448, 512, [], "f14a", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z" ], + chess: [ 512, 512, [], "f439", "M199.821 217.633a6 6 0 0 1 6 6l-.001 20.766a6 6 0 0 1-6 6h-25.805c0 31.715-2.153 96.201 17.398 153.229H64.597C84.54 345.452 82.02 279.245 82.02 250.399H56.183a6 6 0 0 1-6-6l.002-20.766a6 6 0 0 1 6-6h143.636zM41.554 115.088l34.58 95.071h103.734l34.572-95.072c2.846-7.826-2.95-16.101-11.278-16.101H152v-30.22h21.57a6 6 0 0 0 6-6V40.383a6 6 0 0 0-6-6h-28.367V6a6 6 0 0 0-6-6H116.82a6 6 0 0 0-6 6v28.383H82.421a6 6 0 0 0-6 6v22.383a6 6 0 0 0 6 6H104v30.219H52.831c-8.328.001-14.124 8.276-11.277 16.103zM222.678 445.17v-28.067a6 6 0 0 0-6-6H39.322a6 6 0 0 0-6 6v28.067l-22.148 14.164a6 6 0 0 0-2.767 5.055V506a6 6 0 0 0 6 6h227.187a6 6 0 0 0 6-6v-41.612a6 6 0 0 0-2.767-5.055l-22.149-14.163zm90.578-144.225l24.88 16.963c.09 18.124-.167 63.904-11.905 114.522h147.526c-11.713-50.475-11.969-96.324-11.882-114.537l24.859-16.949a3.856 3.856 0 0 0 1.684-3.187v-69.901a3.857 3.857 0 0 0-3.857-3.857h-27.655a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.858-3.857h-52.918a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.857-3.857H315.43a3.857 3.857 0 0 0-3.857 3.857v69.901a3.855 3.855 0 0 0 1.683 3.188zm71.585 51.906c0-8.372 6.787-15.158 15.159-15.158s15.158 6.787 15.158 15.158v30.318h-30.317v-30.318zM504.62 470.059l-13.664-10.639v-15.552a3.857 3.857 0 0 0-3.857-3.857H312.915a3.857 3.857 0 0 0-3.857 3.857v15.552l-13.677 10.639a3.857 3.857 0 0 0-1.488 3.044v35.039a3.857 3.857 0 0 0 3.857 3.857h204.5a3.857 3.857 0 0 0 3.857-3.857v-35.04a3.859 3.859 0 0 0-1.487-3.043z" ], + "chess-bishop": [ 320, 512, [], "f43a", "M123.158 77.881C107.369 72.53 96 57.597 96 40c0-22.091 17.909-40 40-40h47.796c22.091 0 40 17.909 40 40 0 17.541-11.295 32.434-27.005 37.829 23.993 16.657 48.577 46.839 68.703 82.05L144.929 280.443a6 6 0 0 0 0 8.485l14.142 14.142a6 6 0 0 0 8.485 0L280.9 189.726c17.758 38.297 29.371 79.443 29.371 114.273 0 53.786-22.897 75.788-58.446 86.033V448H68.174v-57.97C32.631 379.784 9.739 357.781 9.739 304c0-78.029 58.281-187.766 113.419-226.119zM320 500v-24c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12z" ], + "chess-board": [ 512, 512, [], "f43c", "M256 256v64h-64v-64h64zm0-256h-64v64h64V0zm0 256h64v-64h-64v64zM384 0h-64v64h64V0zm0 512h64v-64h-64v64zm128-64v-64h-64v64h64zm-384 64h64v-64h-64v64zm0-512H64v64h64V0zm384 192v-64h-64v64h64zm0 128v-64h-64v64h64zM0 512h64v-64H0v64zM0 64v64h64V64H0zm0 128v64h64v-64H0zm0 128v64h64v-64H0zm256 192h64v-64h-64v64zm-64-128v64h64v-64h-64zm64-192v-64h-64v64h64zM64 384v64h64v-64H64zm64-128H64v64h64v-64zm256 128h64v-64h-64v64zM512 0h-64v64h64V0zM384 256h64v-64h-64v64zm0-192v64h64V64h-64zm-64 320v64h64v-64h-64zm-192-64v64h64v-64h-64zm128 0v64h64v-64h-64zm-64-128h-64v64h64v-64zm-64-64H64v64h64v-64zm192 192h64v-64h-64v64zM192 128V64h-64v64h64zm128 0V64h-64v64h64zm0 64h64v-64h-64v64z" ], + "chess-king": [ 448, 512, [], "f43f", "M416 476v24c0 6.627-5.373 12-12 12H44c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12zm-8.033-324H248v-48h50a6 6 0 0 0 6-6V62a6 6 0 0 0-6-6h-50V6a6 6 0 0 0-6-6h-36a6 6 0 0 0-6 6v50h-50a6 6 0 0 0-6 6v36a6 6 0 0 0 6 6h50v48H40.033c-27.574 0-46.879 27.244-37.738 53.259L87.582 448h272.836l85.287-242.741C454.846 179.244 435.541 152 407.967 152z" ], + "chess-knight": [ 384, 512, [], "f441", "M352 224v224H32v-46.557c0-30.302 17.12-58.003 44.223-71.554l57.243-28.622A48 48 0 0 0 160 258.334V208l-22.127 11.063a23.996 23.996 0 0 0-12.55 15.645l-11.835 47.338a12 12 0 0 1-7.185 8.231l-29.601 11.84a11.998 11.998 0 0 1-9.33-.176L7.126 275.167A12 12 0 0 1 0 264.201v-158.26c0-6.365 2.529-12.47 7.03-16.971L16 80 1.789 51.578A16.937 16.937 0 0 1 0 44c0-6.627 5.373-12 12-12h148c106.039 0 192 85.961 192 192zm20 240H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12zM52 128c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z" ], + "chess-pawn": [ 320, 512, [], "f443", "M264 448H56s60-42.743 60-176H84c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h40.209C95.721 210.56 76 181.588 76 148c0-46.392 37.608-84 84-84s84 37.608 84 84c0 33.588-19.721 62.56-48.209 76H236c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12h-32c0 133.257 60 176 60 176zm28 16H28c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h264c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12z" ], + "chess-queen": [ 512, 512, [], "f445", "M436 512H76c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12zM255.579 0c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zm204.568 154.634c-5.768-3.045-12.916-.932-16.082 4.77-8.616 15.516-22.747 37.801-44.065 37.801-28.714 0-30.625-19.804-31.686-57.542-.183-6.492-5.501-11.664-11.995-11.664h-41.006c-5.175 0-9.754 3.328-11.388 8.238-8.89 26.709-26.073 40.992-47.925 40.992s-39.034-14.283-47.925-40.992c-1.634-4.91-6.213-8.238-11.388-8.238h-41.005c-6.495 0-11.813 5.174-11.995 11.667-1.052 37.642-2.934 57.539-31.688 57.539-20.691 0-33.817-20.224-44.425-38.025-3.266-5.48-10.258-7.431-15.899-4.453l-39.179 20.679a12 12 0 0 0-5.51 15.145L112 448h288l105.014-257.448a12 12 0 0 0-5.51-15.145l-39.357-20.773z" ], + "chess-rook": [ 384, 512, [], "f447", "M81.241 215.027C80.957 258.92 77.411 348.076 48 448h287.982c-29.4-99.604-32.936-188.912-33.221-232.975l45.418-42.312a11.998 11.998 0 0 0 3.82-8.78V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v44h-48V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v44H96V44c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v119.932c0 3.33 1.384 6.51 3.82 8.78l45.421 42.315zM160 256c0-17.673 14.327-32 32-32 17.673 0 32 14.327 32 32v64.004h-64V256zm224 220v24c0 6.627-5.373 12-12 12H12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12z" ], + "chevron-circle-down": [ 512, 512, [], "f13a", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM273 369.9l135.5-135.5c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L256 285.1 154.4 183.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L239 369.9c9.4 9.4 24.6 9.4 34 0z" ], + "chevron-circle-left": [ 512, 512, [], "f137", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z" ], + "chevron-circle-right": [ 512, 512, [], "f138", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z" ], + "chevron-circle-up": [ 512, 512, [], "f139", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm231-113.9L103.5 277.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L256 226.9l101.6 101.6c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L273 142.1c-9.4-9.4-24.6-9.4-34 0z" ], + "chevron-down": [ 448, 512, [], "f078", "M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z" ], + "chevron-left": [ 320, 512, [], "f053", "M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z" ], + "chevron-right": [ 320, 512, [], "f054", "M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z" ], + "chevron-up": [ 448, 512, [], "f077", "M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z" ], + child: [ 384, 512, [], "f1ae", "M120 72c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.764-32.235 72-72 72s-72-32.236-72-72zm254.627 1.373c-12.496-12.497-32.758-12.497-45.254 0L242.745 160H141.254L54.627 73.373c-12.496-12.497-32.758-12.497-45.254 0-12.497 12.497-12.497 32.758 0 45.255L104 213.254V480c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V368h16v112c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V213.254l94.627-94.627c12.497-12.497 12.497-32.757 0-45.254z" ], + church: [ 640, 512, [], "f51d", "M464.46 246.68L352 179.2V128h48c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-48V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v48h-48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v51.2l-112.46 67.48A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.65-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.54A32.024 32.024 0 0 0 0 395.96zm620.61-29.42L512 320v192h112c8.84 0 16-7.16 16-16V395.96c0-12.8-7.63-24.37-19.39-29.42z" ], + circle: [ 512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z" ], + "circle-notch": [ 512, 512, [], "f1ce", "M288 39.056v16.659c0 10.804 7.281 20.159 17.686 23.066C383.204 100.434 440 171.518 440 256c0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-84.47 56.786-155.564 134.312-177.219C216.719 75.874 224 66.517 224 55.712V39.064c0-15.709-14.834-27.153-30.046-23.234C86.603 43.482 7.394 141.206 8.003 257.332c.72 137.052 111.477 246.956 248.531 246.667C393.255 503.711 504 392.788 504 256c0-115.633-79.14-212.779-186.211-240.236C302.678 11.889 288 23.456 288 39.056z" ], + clipboard: [ 384, 512, [], "f328", "M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z" ], + "clipboard-check": [ 384, 512, [], "f46c", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm121.2 231.8l-143 141.8c-4.7 4.7-12.3 4.6-17-.1l-82.6-83.3c-4.7-4.7-4.6-12.3.1-17L99.1 285c4.7-4.7 12.3-4.6 17 .1l46 46.4 106-105.2c4.7-4.7 12.3-4.6 17 .1l28.2 28.4c4.7 4.8 4.6 12.3-.1 17z" ], + "clipboard-list": [ 384, 512, [], "f46d", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM96 424c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm96-192c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm128 368c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z" ], + clock: [ 512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm57.1 350.1L224.9 294c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v137.7l63.5 46.2c5.4 3.9 6.5 11.4 2.6 16.8l-28.2 38.8c-3.9 5.3-11.4 6.5-16.8 2.6z" ], + clone: [ 512, 512, [], "f24d", "M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z" ], + "closed-captioning": [ 512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM218.1 287.7c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2.1 48 51.1 70.5 92.3 32.6zm190.4 0c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.5 56.9-172.7 32.1-172.7-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 222.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6z" ], + cloud: [ 640, 512, [], "f0c2", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z" ], + "cloud-download-alt": [ 640, 512, [], "f381", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z" ], + "cloud-upload-alt": [ 640, 512, [], "f382", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z" ], + cocktail: [ 576, 512, [], "f561", "M296 464h-56V338.78l168.74-168.73c15.52-15.52 4.53-42.05-17.42-42.05H24.68c-21.95 0-32.94 26.53-17.42 42.05L176 338.78V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM432 0c-62.61 0-115.35 40.2-135.18 96h52.54c16.65-28.55 47.27-48 82.64-48 52.93 0 96 43.06 96 96s-43.07 96-96 96c-14.04 0-27.29-3.2-39.32-8.64l-35.26 35.26C379.23 279.92 404.59 288 432 288c79.53 0 144-64.47 144-144S511.53 0 432 0z" ], + code: [ 640, 512, [], "f121", "M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z" ], + "code-branch": [ 384, 512, [], "f126", "M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z" ], + coffee: [ 640, 512, [], "f0f4", "M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z" ], + cog: [ 512, 512, [], "f013", "M444.788 291.1l42.616 24.599c4.867 2.809 7.126 8.618 5.459 13.985-11.07 35.642-29.97 67.842-54.689 94.586a12.016 12.016 0 0 1-14.832 2.254l-42.584-24.595a191.577 191.577 0 0 1-60.759 35.13v49.182a12.01 12.01 0 0 1-9.377 11.718c-34.956 7.85-72.499 8.256-109.219.007-5.49-1.233-9.403-6.096-9.403-11.723v-49.184a191.555 191.555 0 0 1-60.759-35.13l-42.584 24.595a12.016 12.016 0 0 1-14.832-2.254c-24.718-26.744-43.619-58.944-54.689-94.586-1.667-5.366.592-11.175 5.459-13.985L67.212 291.1a193.48 193.48 0 0 1 0-70.199l-42.616-24.599c-4.867-2.809-7.126-8.618-5.459-13.985 11.07-35.642 29.97-67.842 54.689-94.586a12.016 12.016 0 0 1 14.832-2.254l42.584 24.595a191.577 191.577 0 0 1 60.759-35.13V25.759a12.01 12.01 0 0 1 9.377-11.718c34.956-7.85 72.499-8.256 109.219-.007 5.49 1.233 9.403 6.096 9.403 11.723v49.184a191.555 191.555 0 0 1 60.759 35.13l42.584-24.595a12.016 12.016 0 0 1 14.832 2.254c24.718 26.744 43.619 58.944 54.689 94.586 1.667 5.366-.592 11.175-5.459 13.985L444.788 220.9a193.485 193.485 0 0 1 0 70.2zM336 256c0-44.112-35.888-80-80-80s-80 35.888-80 80 35.888 80 80 80 80-35.888 80-80z" ], + cogs: [ 640, 512, [], "f085", "M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z" ], + coins: [ 512, 512, [], "f51e", "M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z" ], + columns: [ 512, 512, [], "f0db", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z" ], + comment: [ 512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32z" ], + "comment-alt": [ 512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 9.8 11.2 15.5 19.1 9.7L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z" ], + "comment-dots": [ 512, 512, [], "f4ad", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + "comment-slash": [ 640, 512, [], "f4b3", "M64 240c0 49.6 21.4 95 57 130.7-12.6 50.3-54.3 95.2-54.8 95.8-2.2 2.3-2.8 5.7-1.5 8.7 1.3 2.9 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 27.4 0 53.7-3.6 78.4-10L72.9 186.4c-5.6 17.1-8.9 35-8.9 53.6zm569.8 218.1l-114.4-88.4C554.6 334.1 576 289.2 576 240c0-114.9-114.6-208-256-208-65.1 0-124.2 20.1-169.4 52.7L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z" ], + comments: [ 576, 512, [], "f086", "M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z" ], + "compact-disc": [ 496, 512, [], "f51f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 256H56c0-105.9 86.1-192 192-192v32c-88.2 0-160 71.8-160 160zm160 96c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" ], + compass: [ 512, 512, [], "f14e", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM307.446 120.844l-102.642 97.779a23.997 23.997 0 0 0-6.772 11.729l-33.359 137.779c-5.68 23.459 22.777 39.318 39.88 23.024l102.64-97.779a23.99 23.99 0 0 0 6.772-11.729l33.359-137.779c5.618-23.198-22.591-39.493-39.878-23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z" ], + compress: [ 448, 512, [], "f066", "M436 192H312c-13.3 0-24-10.7-24-24V44c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-276-24V44c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v84H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 300V344c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-84h84c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H312c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z" ], + "concierge-bell": [ 512, 512, [], "f562", "M288 130.54V112h16c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h16v18.54C115.49 146.11 32 239.18 32 352h448c0-112.82-83.49-205.89-192-221.46zM496 384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" ], + cookie: [ 512, 512, [], "f563", "M510.37 254.79l-12.08-76.26a132.493 132.493 0 0 0-37.16-72.95l-54.76-54.75c-19.73-19.72-45.18-32.7-72.71-37.05l-76.7-12.15c-27.51-4.36-55.69.11-80.52 12.76L107.32 49.6a132.25 132.25 0 0 0-57.79 57.8l-35.1 68.88a132.602 132.602 0 0 0-12.82 80.94l12.08 76.27a132.493 132.493 0 0 0 37.16 72.95l54.76 54.75a132.087 132.087 0 0 0 72.71 37.05l76.7 12.14c27.51 4.36 55.69-.11 80.52-12.75l69.12-35.21a132.302 132.302 0 0 0 57.79-57.8l35.1-68.87c12.71-24.96 17.2-53.3 12.82-80.96zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "cookie-bite": [ 512, 512, [], "f564", "M510.52 255.82c-69.97-.85-126.47-57.69-126.47-127.86-70.17 0-127-56.49-127.86-126.45-27.26-4.14-55.13.3-79.72 12.82l-69.13 35.22a132.221 132.221 0 0 0-57.79 57.81l-35.1 68.88a132.645 132.645 0 0 0-12.82 80.95l12.08 76.27a132.521 132.521 0 0 0 37.16 72.96l54.77 54.76a132.036 132.036 0 0 0 72.71 37.06l76.71 12.15c27.51 4.36 55.7-.11 80.53-12.76l69.13-35.21a132.273 132.273 0 0 0 57.79-57.81l35.1-68.88c12.56-24.64 17.01-52.58 12.91-79.91zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + copy: [ 448, 512, [], "f0c5", "M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z" ], + copyright: [ 512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm117.134 346.753c-1.592 1.867-39.776 45.731-109.851 45.731-84.692 0-144.484-63.26-144.484-145.567 0-81.303 62.004-143.401 143.762-143.401 66.957 0 101.965 37.315 103.422 38.904a12 12 0 0 1 1.238 14.623l-22.38 34.655c-4.049 6.267-12.774 7.351-18.234 2.295-.233-.214-26.529-23.88-61.88-23.88-46.116 0-73.916 33.575-73.916 76.082 0 39.602 25.514 79.692 74.277 79.692 38.697 0 65.28-28.338 65.544-28.625 5.132-5.565 14.059-5.033 18.508 1.053l24.547 33.572a12.001 12.001 0 0 1-.553 14.866z" ], + couch: [ 640, 512, [], "f4b8", "M160 224v64h320v-64c0-35.3 28.7-64 64-64h32c0-53-43-96-96-96H160c-53 0-96 43-96 96h32c35.3 0 64 28.7 64 64zm416-32h-32c-17.7 0-32 14.3-32 32v96H128v-96c0-17.7-14.3-32-32-32H64c-35.3 0-64 28.7-64 64 0 23.6 13 44 32 55.1V432c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-16h384v16c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V311.1c19-11.1 32-31.5 32-55.1 0-35.3-28.7-64-64-64z" ], + "credit-card": [ 576, 512, [], "f09d", "M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V256H0v176zm192-68c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-40zm-128 0c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM576 80v48H0V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48z" ], + crop: [ 512, 512, [], "f125", "M488 352h-40V109.25l59.31-59.31c6.25-6.25 6.25-16.38 0-22.63L484.69 4.69c-6.25-6.25-16.38-6.25-22.63 0L402.75 64H192v96h114.75L160 306.75V24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v264c0 13.25 10.75 24 24 24h232v-96H205.25L352 205.25V488c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z" ], + "crop-alt": [ 512, 512, [], "f565", "M488 352h-40V96c0-17.67-14.33-32-32-32H192v96h160v328c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24zM160 24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v256c0 17.67 14.33 32 32 32h224v-96H160V24z" ], + crosshairs: [ 512, 512, [], "f05b", "M500 224h-30.364C455.724 130.325 381.675 56.276 288 42.364V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v30.364C130.325 56.276 56.276 130.325 42.364 224H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h30.364C56.276 381.675 130.325 455.724 224 469.636V500c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-30.364C381.675 455.724 455.724 381.675 469.636 288H500c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zM288 404.634V364c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40.634C165.826 392.232 119.783 346.243 107.366 288H148c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40.634C119.768 165.826 165.757 119.783 224 107.366V148c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40.634C346.174 119.768 392.217 165.757 404.634 224H364c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40.634C392.232 346.174 346.243 392.217 288 404.634zM288 256c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z" ], + crow: [ 640, 512, [], "f520", "M544 32h-16.36C513.04 12.68 490.09 0 464 0c-44.18 0-80 35.82-80 80v20.98L12.09 393.57A30.216 30.216 0 0 0 0 417.74c0 22.46 23.64 37.07 43.73 27.03L165.27 384h96.49l44.41 120.1c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38L312.94 384H352c1.91 0 3.76-.23 5.66-.29l44.51 120.38c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38l-41.24-111.53C485.74 352.8 544 279.26 544 192v-80l96-16c0-35.35-42.98-64-96-64zm-80 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z" ], + crown: [ 640, 512, [], "f521", "M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.4 7.7-.8L128 416h384l72.3-192.8c2.5.4 5.1.8 7.7.8 26.5 0 48-21.5 48-48s-21.5-48-48-48z" ], + cube: [ 512, 512, [], "f1b2", "M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z" ], + cubes: [ 512, 512, [], "f1b3", "M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z" ], + cut: [ 448, 512, [], "f0c4", "M278.06 256L444.48 89.57c4.69-4.69 4.69-12.29 0-16.97-32.8-32.8-85.99-32.8-118.79 0L210.18 188.12l-24.86-24.86c4.31-10.92 6.68-22.81 6.68-35.26 0-53.02-42.98-96-96-96S0 74.98 0 128s42.98 96 96 96c4.54 0 8.99-.32 13.36-.93L142.29 256l-32.93 32.93c-4.37-.61-8.83-.93-13.36-.93-53.02 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96c0-12.45-2.37-24.34-6.68-35.26l24.86-24.86L325.69 439.4c32.8 32.8 85.99 32.8 118.79 0 4.69-4.68 4.69-12.28 0-16.97L278.06 256zM96 160c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32zm0 256c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z" ], + database: [ 448, 512, [], "f1c0", "M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z" ], + deaf: [ 512, 512, [], "f2a4", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm268.485-52.201L480.2 3.515c-4.687-4.686-12.284-4.686-16.971 0L376.2 90.544c-4.686 4.686-4.686 12.284 0 16.971l28.285 28.285c4.686 4.686 12.284 4.686 16.97 0l87.03-87.029c4.687-4.688 4.687-12.286 0-16.972zM168.97 314.745c-4.686-4.686-12.284-4.686-16.97 0L3.515 463.23c-4.686 4.686-4.686 12.284 0 16.971L31.8 508.485c4.687 4.686 12.284 4.686 16.971 0L197.256 360c4.686-4.686 4.686-12.284 0-16.971l-28.286-28.284z" ], + desktop: [ 576, 512, [], "f108", "M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z" ], + diagnoses: [ 640, 512, [], "f470", "M496 256c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm-176-80c48.5 0 88-39.5 88-88S368.5 0 320 0s-88 39.5-88 88 39.5 88 88 88zM59.8 364c10.2 15.3 29.3 17.8 42.9 9.8 16.2-9.6 56.2-31.7 105.3-48.6V416h224v-90.7c49.1 16.8 89.1 39 105.3 48.6 13.6 8 32.7 5.3 42.9-9.8l17.8-26.7c8.8-13.2 7.6-34.6-10-45.1-11.9-7.1-29.7-17-51.1-27.4-28.1 46.1-99.4 17.8-87.7-35.1C409.3 217.2 365.1 208 320 208c-57 0-112.9 14.5-160 32.2-.2 40.2-47.6 63.3-79.2 36-11.2 6-21.3 11.6-28.7 16-17.6 10.5-18.8 31.8-10 45.1L59.8 364zM368 344c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-160 8c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm512 192H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z" ], + dice: [ 640, 512, [], "f522", "M592 192H473.26c12.69 29.59 7.12 65.2-17 89.32L320 417.58V464c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48V240c0-26.51-21.49-48-48-48zM480 376c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm-46.37-186.7L258.7 14.37c-19.16-19.16-50.23-19.16-69.39 0L14.37 189.3c-19.16 19.16-19.16 50.23 0 69.39L189.3 433.63c19.16 19.16 50.23 19.16 69.39 0L433.63 258.7c19.16-19.17 19.16-50.24 0-69.4zM96 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z" ], + "dice-five": [ 448, 512, [], "f523", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "dice-four": [ 448, 512, [], "f524", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "dice-one": [ 448, 512, [], "f525", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM224 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "dice-six": [ 448, 512, [], "f526", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "dice-three": [ 448, 512, [], "f527", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "dice-two": [ 448, 512, [], "f528", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "digital-tachograph": [ 640, 512, [], "f566", "M608 96H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128c0-17.67-14.33-32-32-32zM304 352c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8zM72 288v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H80c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm40-64c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-48c0-8.84 7.16-16 16-16h208c8.84 0 16 7.16 16 16v48zm272 128c0 4.42-3.58 8-8 8H344c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8z" ], + divide: [ 448, 512, [], "f529", "M224 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm0-192c35.35 0 64-28.65 64-64s-28.65-64-64-64-64 28.65-64 64 28.65 64 64 64zm192 48H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" ], + dizzy: [ 496, 512, [], "f567", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-96 206.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L174.6 192l28.7 28.7c15.2 15.2-7.9 37.4-22.6 22.6L152 214.6zM248 416c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm147.3-195.3c15.2 15.2-7.9 37.4-22.6 22.6L344 214.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L366.6 192l28.7 28.7z" ], + dna: [ 448, 512, [], "f471", "M.1 494.1c-1.1 9.5 6.3 17.8 15.9 17.8l32.3.1c8.1 0 14.9-5.9 16-13.9.7-4.9 1.8-11.1 3.4-18.1H380c1.6 6.9 2.9 13.2 3.5 18.1 1.1 8 7.9 14 16 13.9l32.3-.1c9.6 0 17.1-8.3 15.9-17.8-4.6-37.9-25.6-129-118.9-207.7-17.6 12.4-37.1 24.2-58.5 35.4 6.2 4.6 11.4 9.4 17 14.2H159.7c21.3-18.1 47-35.6 78.7-51.4C410.5 199.1 442.1 65.8 447.9 17.9 449 8.4 441.6.1 432 .1L399.6 0c-8.1 0-14.9 5.9-16 13.9-.7 4.9-1.8 11.1-3.4 18.1H67.8c-1.6-7-2.7-13.1-3.4-18.1-1.1-8-7.9-14-16-13.9L16.1.1C6.5.1-1 8.4.1 17.9 5.3 60.8 31.4 171.8 160 256 31.5 340.2 5.3 451.2.1 494.1zM224 219.6c-25.1-13.7-46.4-28.4-64.3-43.6h128.5c-17.8 15.2-39.1 30-64.2 43.6zM355.1 96c-5.8 10.4-12.8 21.1-21 32H114c-8.3-10.9-15.3-21.6-21-32h262.1zM92.9 416c5.8-10.4 12.8-21.1 21-32h219.4c8.3 10.9 15.4 21.6 21.2 32H92.9z" ], + "dollar-sign": [ 288, 512, [], "f155", "M209.2 233.4l-108-31.6C88.7 198.2 80 186.5 80 173.5c0-16.3 13.2-29.5 29.5-29.5h66.3c12.2 0 24.2 3.7 34.2 10.5 6.1 4.1 14.3 3.1 19.5-2l34.8-34c7.1-6.9 6.1-18.4-1.8-24.5C238 74.8 207.4 64.1 176 64V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C45.8 64-5.4 118.7.5 183.6c4.2 46.1 39.4 83.6 83.8 96.6l102.5 30c12.5 3.7 21.2 15.3 21.2 28.3 0 16.3-13.2 29.5-29.5 29.5h-66.3C100 368 88 364.3 78 357.5c-6.1-4.1-14.3-3.1-19.5 2l-34.8 34c-7.1 6.9-6.1 18.4 1.8 24.5 24.5 19.2 55.1 29.9 86.5 30v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48.2c46.6-.9 90.3-28.6 105.7-72.7 21.5-61.6-14.6-124.8-72.5-141.7z" ], + dolly: [ 576, 512, [], "f472", "M294.2 277.7c18 5 34.7 13.4 49.5 24.7l161.5-53.8c8.4-2.8 12.9-11.9 10.1-20.2L454.9 47.2c-2.8-8.4-11.9-12.9-20.2-10.1l-61.1 20.4 33.1 99.4L346 177l-33.1-99.4-61.6 20.5c-8.4 2.8-12.9 11.9-10.1 20.2l53 159.4zm281 48.7L565 296c-2.8-8.4-11.9-12.9-20.2-10.1l-213.5 71.2c-17.2-22-43.6-36.4-73.5-37L158.4 21.9C154 8.8 141.8 0 128 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h88.9l92.2 276.7c-26.1 20.4-41.7 53.6-36 90.5 6.1 39.4 37.9 72.3 77.3 79.2 60.2 10.7 112.3-34.8 113.4-92.6l213.3-71.2c8.3-2.8 12.9-11.8 10.1-20.2zM256 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z" ], + "dolly-flatbed": [ 640, 512, [], "f474", "M208 320h384c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H448v128l-48-32-48 32V32H208c-8.8 0-16 7.2-16 16v256c0 8.8 7.2 16 16 16zm416 64H128V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h82.9c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H451c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H624c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z" ], + donate: [ 512, 512, [], "f4b9", "M256 416c114.9 0 208-93.1 208-208S370.9 0 256 0 48 93.1 48 208s93.1 208 208 208zM233.8 97.4V80.6c0-9.2 7.4-16.6 16.6-16.6h11.1c9.2 0 16.6 7.4 16.6 16.6v17c15.5.8 30.5 6.1 43 15.4 5.6 4.1 6.2 12.3 1.2 17.1L306 145.6c-3.8 3.7-9.5 3.8-14 1-5.4-3.4-11.4-5.1-17.8-5.1h-38.9c-9 0-16.3 8.2-16.3 18.3 0 8.2 5 15.5 12.1 17.6l62.3 18.7c25.7 7.7 43.7 32.4 43.7 60.1 0 34-26.4 61.5-59.1 62.4v16.8c0 9.2-7.4 16.6-16.6 16.6h-11.1c-9.2 0-16.6-7.4-16.6-16.6v-17c-15.5-.8-30.5-6.1-43-15.4-5.6-4.1-6.2-12.3-1.2-17.1l16.3-15.5c3.8-3.7 9.5-3.8 14-1 5.4 3.4 11.4 5.1 17.8 5.1h38.9c9 0 16.3-8.2 16.3-18.3 0-8.2-5-15.5-12.1-17.6l-62.3-18.7c-25.7-7.7-43.7-32.4-43.7-60.1.1-34 26.4-61.5 59.1-62.4zM480 352h-32.5c-19.6 26-44.6 47.7-73 64h63.8c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8h63.8c-28.4-16.3-53.3-38-73-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32z" ], + "door-closed": [ 640, 512, [], "f52a", "M624 448H512V50.8C512 22.78 490.47 0 464 0H175.99c-26.47 0-48 22.78-48 50.8V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM415.99 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32c.01 17.67-14.32 32-32 32z" ], + "door-open": [ 640, 512, [], "f52b", "M624 448h-80V113.45C544 86.19 522.47 64 496 64H384v64h96v384h144c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM312.24 1.01l-192 49.74C105.99 54.44 96 67.7 96 82.92V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h336V33.18c0-21.58-19.56-37.41-39.76-32.17zM264 288c-13.25 0-24-14.33-24-32s10.75-32 24-32 24 14.33 24 32-10.75 32-24 32z" ], + "dot-circle": [ 512, 512, [], "f192", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z" ], + dove: [ 512, 512, [], "f4ba", "M288 167.2v-28.1c-28.2-36.3-47.1-79.3-54.1-125.2-2.1-13.5-19-18.8-27.8-8.3-21.1 24.9-37.7 54.1-48.9 86.5 34.2 38.3 80 64.6 130.8 75.1zM400 64c-44.2 0-80 35.9-80 80.1v59.4C215.6 197.3 127 133 87 41.8c-5.5-12.5-23.2-13.2-29-.9C41.4 76 32 115.2 32 156.6c0 70.8 34.1 136.9 85.1 185.9 13.2 12.7 26.1 23.2 38.9 32.8l-143.9 36C1.4 414-3.4 426.4 2.6 435.7 20 462.6 63 508.2 155.8 512c8 .3 16-2.6 22.1-7.9l65.2-56.1H320c88.4 0 160-71.5 160-159.9V128l32-64H400zm0 96.1c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z" ], + download: [ 512, 512, [], "f019", "M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z" ], + "drafting-compass": [ 512, 512, [], "f568", "M457.01 344.42c-25.05 20.33-52.63 37.18-82.54 49.05l54.38 94.19 53.95 23.04c9.81 4.19 20.89-2.21 22.17-12.8l7.02-58.25-54.98-95.23zm42.49-94.56c4.86-7.67 1.89-17.99-6.05-22.39l-28.07-15.57c-7.48-4.15-16.61-1.46-21.26 5.72C403.01 281.15 332.25 320 256 320c-23.93 0-47.23-4.25-69.41-11.53l67.36-116.68c.7.02 1.34.21 2.04.21s1.35-.19 2.04-.21l51.09 88.5c31.23-8.96 59.56-25.75 82.61-48.92l-51.79-89.71C347.39 128.03 352 112.63 352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96c0 16.63 4.61 32.03 12.05 45.66l-68.3 118.31c-12.55-11.61-23.96-24.59-33.68-39-4.79-7.1-13.97-9.62-21.38-5.33l-27.75 16.07c-7.85 4.54-10.63 14.9-5.64 22.47 15.57 23.64 34.69 44.21 55.98 62.02L0 439.66l7.02 58.25c1.28 10.59 12.36 16.99 22.17 12.8l53.95-23.04 70.8-122.63C186.13 377.28 220.62 384 256 384c99.05 0 190.88-51.01 243.5-134.14zM256 64c17.67 0 32 14.33 32 32s-14.33 32-32 32-32-14.33-32-32 14.33-32 32-32z" ], + drum: [ 576, 512, [], "f569", "M458.08 120.88l102.39-61.43c15.16-9.09 20.06-28.75 10.97-43.91C562.34.39 542.7-4.53 527.53 4.57l-160.69 96.41A629.32 629.32 0 0 0 288 96C128.94 96 0 153.31 0 224v160.83c0 30.46 24.03 58.4 64 80.37v-96.37c0-17.6 14.4-32 32-32s32 14.4 32 32v122.41c37.4 11.13 81 18.44 128 20.75V400.84c0-17.6 14.4-32 32-32s32 14.4 32 32V512c47-2.31 90.6-9.62 128-20.75V368.84c0-17.6 14.4-32 32-32s32 14.4 32 32v96.37c39.97-21.97 64-49.91 64-80.37V224.01c-.01-42.38-46.54-79.84-117.92-103.13zM288 304c-132.55 0-240-35.82-240-80s107.45-80 240-80c2.34 0 4.62.1 6.94.12l-87.41 52.44c-15.16 9.09-20.06 28.75-10.97 43.91 9.56 15.93 29.51 19.61 43.91 10.97l162.71-97.62C477.55 167.41 528 193.74 528 224.01 528 268.19 420.54 304 288 304z" ], + "drum-steelpan": [ 576, 512, [], "f56a", "M288 32C128.94 32 0 89.31 0 160v192c0 70.69 128.94 128 288 128s288-57.31 288-128V160c0-70.69-128.94-128-288-128zm-82.99 158.36c-4.45 16.61-14.54 30.57-28.31 40.48C100.23 217.46 48 190.78 48 160c0-30.16 50.11-56.39 124.04-70.03l25.6 44.34c9.86 17.09 12.48 36.99 7.37 56.05zM288 240c-21.08 0-41.41-1-60.89-2.7 8.06-26.13 32.15-45.3 60.89-45.3s52.83 19.17 60.89 45.3C329.41 239 309.08 240 288 240zm64-144c0 35.29-28.71 64-64 64s-64-28.71-64-64V82.96c20.4-1.88 41.8-2.96 64-2.96s43.6 1.08 64 2.96V96zm46.93 134.9c-13.81-9.91-23.94-23.9-28.4-40.54-5.11-19.06-2.49-38.96 7.38-56.04l25.65-44.42C477.72 103.5 528 129.79 528 160c0 30.83-52.4 57.54-129.07 70.9z" ], + dumbbell: [ 640, 512, [], "f44b", "M104 96H56c-13.3 0-24 10.7-24 24v104H8c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h24v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm528 128h-24V120c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v272c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h24c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM456 32h-48c-13.3 0-24 10.7-24 24v168H256V56c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v400c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h128v168c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24z" ], + edit: [ 576, 512, [], "f044", "M402.6 83.2l90.2 90.2c3.8 3.8 3.8 10 0 13.8L274.4 405.6l-92.8 10.3c-12.4 1.4-22.9-9.1-21.5-21.5l10.3-92.8L388.8 83.2c3.8-3.8 10-3.8 13.8 0zm162-22.9l-48.8-48.8c-15.2-15.2-39.9-15.2-55.2 0l-35.4 35.4c-3.8 3.8-3.8 10 0 13.8l90.2 90.2c3.8 3.8 10 3.8 13.8 0l35.4-35.4c15.2-15.3 15.2-40 0-55.2zM384 346.2V448H64V128h229.8c3.2 0 6.2-1.3 8.5-3.5l40-40c7.6-7.6 2.2-20.5-8.5-20.5H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V306.2c0-10.7-12.9-16-20.5-8.5l-40 40c-2.2 2.3-3.5 5.3-3.5 8.5z" ], + eject: [ 448, 512, [], "f052", "M448 384v64c0 17.673-14.327 32-32 32H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h384c17.673 0 32 14.327 32 32zM48.053 320h351.886c41.651 0 63.581-49.674 35.383-80.435L259.383 47.558c-19.014-20.743-51.751-20.744-70.767 0L12.67 239.565C-15.475 270.268 6.324 320 48.053 320z" ], + "ellipsis-h": [ 512, 512, [], "f141", "M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z" ], + "ellipsis-v": [ 192, 512, [], "f142", "M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" ], + envelope: [ 512, 512, [], "f0e0", "M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z" ], + "envelope-open": [ 512, 512, [], "f2b6", "M512 464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V200.724a48 48 0 0 1 18.387-37.776c24.913-19.529 45.501-35.365 164.2-121.511C199.412 29.17 232.797-.347 256 .003c23.198-.354 56.596 29.172 73.413 41.433 118.687 86.137 139.303 101.995 164.2 121.512A48 48 0 0 1 512 200.724V464zm-65.666-196.605c-2.563-3.728-7.7-4.595-11.339-1.907-22.845 16.873-55.462 40.705-105.582 77.079-16.825 12.266-50.21 41.781-73.413 41.43-23.211.344-56.559-29.143-73.413-41.43-50.114-36.37-82.734-60.204-105.582-77.079-3.639-2.688-8.776-1.821-11.339 1.907l-9.072 13.196a7.998 7.998 0 0 0 1.839 10.967c22.887 16.899 55.454 40.69 105.303 76.868 20.274 14.781 56.524 47.813 92.264 47.573 35.724.242 71.961-32.771 92.263-47.573 49.85-36.179 82.418-59.97 105.303-76.868a7.998 7.998 0 0 0 1.839-10.967l-9.071-13.196z" ], + "envelope-square": [ 448, 512, [], "f199", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM178.117 262.104C87.429 196.287 88.353 196.121 64 177.167V152c0-13.255 10.745-24 24-24h272c13.255 0 24 10.745 24 24v25.167c-24.371 18.969-23.434 19.124-114.117 84.938-10.5 7.655-31.392 26.12-45.883 25.894-14.503.218-35.367-18.227-45.883-25.895zM384 217.775V360c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V217.775c13.958 10.794 33.329 25.236 95.303 70.214 14.162 10.341 37.975 32.145 64.694 32.01 26.887.134 51.037-22.041 64.72-32.025 61.958-44.965 81.325-59.406 95.283-70.199z" ], + equals: [ 448, 512, [], "f52c", "M416 304H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32zm0-192H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" ], + eraser: [ 512, 512, [], "f12d", "M497.941 273.941c18.745-18.745 18.745-49.137 0-67.882l-160-160c-18.745-18.745-49.136-18.746-67.883 0l-256 256c-18.745 18.745-18.745 49.137 0 67.882l96 96A48.004 48.004 0 0 0 144 480h356c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H355.883l142.058-142.059zm-302.627-62.627l137.373 137.373L265.373 416H150.628l-80-80 124.686-124.686z" ], + "euro-sign": [ 320, 512, [], "f153", "M310.706 413.765c-1.314-6.63-7.835-10.872-14.424-9.369-10.692 2.439-27.422 5.413-45.426 5.413-56.763 0-101.929-34.79-121.461-85.449h113.689a12 12 0 0 0 11.708-9.369l6.373-28.36c1.686-7.502-4.019-14.631-11.708-14.631H115.22c-1.21-14.328-1.414-28.287.137-42.245H261.95a12 12 0 0 0 11.723-9.434l6.512-29.755c1.638-7.484-4.061-14.566-11.723-14.566H130.184c20.633-44.991 62.69-75.03 117.619-75.03 14.486 0 28.564 2.25 37.851 4.145 6.216 1.268 12.347-2.498 14.002-8.623l11.991-44.368c1.822-6.741-2.465-13.616-9.326-14.917C290.217 34.912 270.71 32 249.635 32 152.451 32 74.03 92.252 45.075 176H12c-6.627 0-12 5.373-12 12v29.755c0 6.627 5.373 12 12 12h21.569c-1.009 13.607-1.181 29.287-.181 42.245H12c-6.627 0-12 5.373-12 12v28.36c0 6.627 5.373 12 12 12h30.114C67.139 414.692 145.264 480 249.635 480c26.301 0 48.562-4.544 61.101-7.788 6.167-1.595 10.027-7.708 8.788-13.957l-8.818-44.49z" ], + "exchange-alt": [ 512, 512, [], "f362", "M0 168v-16c0-13.255 10.745-24 24-24h360V80c0-21.367 25.899-32.042 40.971-16.971l80 80c9.372 9.373 9.372 24.569 0 33.941l-80 80C409.956 271.982 384 261.456 384 240v-48H24c-13.255 0-24-10.745-24-24zm488 152H128v-48c0-21.314-25.862-32.08-40.971-16.971l-80 80c-9.372 9.373-9.372 24.569 0 33.941l80 80C102.057 463.997 128 453.437 128 432v-48h360c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z" ], + exclamation: [ 192, 512, [], "f12a", "M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z" ], + "exclamation-circle": [ 512, 512, [], "f06a", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z" ], + "exclamation-triangle": [ 576, 512, [], "f071", "M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z" ], + expand: [ 448, 512, [], "f065", "M0 180V56c0-13.3 10.7-24 24-24h124c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H64v84c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12zM288 44v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V56c0-13.3-10.7-24-24-24H300c-6.6 0-12 5.4-12 12zm148 276h-40c-6.6 0-12 5.4-12 12v84h-84c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24V332c0-6.6-5.4-12-12-12zM160 468v-40c0-6.6-5.4-12-12-12H64v-84c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v124c0 13.3 10.7 24 24 24h124c6.6 0 12-5.4 12-12z" ], + "expand-arrows-alt": [ 448, 512, [], "f31e", "M448.1 344v112c0 13.3-10.7 24-24 24h-112c-21.4 0-32.1-25.9-17-41l36.2-36.2L224 295.6 116.8 402.9 153 439c15.1 15.1 4.4 41-17 41H24c-13.3 0-24-10.7-24-24V344c0-21.4 25.9-32.1 41-17l36.2 36.2L184.5 256 77.2 148.7 41 185c-15.1 15.1-41 4.4-41-17V56c0-13.3 10.7-24 24-24h112c21.4 0 32.1 25.9 17 41l-36.2 36.2L224 216.4l107.3-107.3L295.1 73c-15.1-15.1-4.4-41 17-41h112c13.3 0 24 10.7 24 24v112c0 21.4-25.9 32.1-41 17l-36.2-36.2L263.6 256l107.3 107.3 36.2-36.2c15.1-15.2 41-4.5 41 16.9z" ], + "external-link-alt": [ 576, 512, [], "f35d", "M576 24v127.984c0 21.461-25.96 31.98-40.971 16.971l-35.707-35.709-243.523 243.523c-9.373 9.373-24.568 9.373-33.941 0l-22.627-22.627c-9.373-9.373-9.373-24.569 0-33.941L442.756 76.676l-35.703-35.705C391.982 25.9 402.656 0 424.024 0H552c13.255 0 24 10.745 24 24zM407.029 270.794l-16 16A23.999 23.999 0 0 0 384 303.765V448H64V128h264a24.003 24.003 0 0 0 16.97-7.029l16-16C376.089 89.851 365.381 64 344 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V287.764c0-21.382-25.852-32.09-40.971-16.97z" ], + "external-link-square-alt": [ 448, 512, [], "f360", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-88 16H248.029c-21.313 0-32.08 25.861-16.971 40.971l31.984 31.987L67.515 364.485c-4.686 4.686-4.686 12.284 0 16.971l31.029 31.029c4.687 4.686 12.285 4.686 16.971 0l195.526-195.526 31.988 31.991C358.058 263.977 384 253.425 384 231.979V120c0-13.255-10.745-24-24-24z" ], + eye: [ 576, 512, [], "f06e", "M569.354 231.631C512.969 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-75.162 0-136-60.827-136-136 0-75.162 60.826-136 136-136 75.162 0 136 60.826 136 136 0 75.162-60.826 136-136 136zm104-136c0 57.438-46.562 104-104 104s-104-46.562-104-104c0-17.708 4.431-34.379 12.236-48.973l-.001.032c0 23.651 19.173 42.823 42.824 42.823s42.824-19.173 42.824-42.823c0-23.651-19.173-42.824-42.824-42.824l-.032.001C253.621 156.431 270.292 152 288 152c57.438 0 104 46.562 104 104z" ], + "eye-dropper": [ 512, 512, [], "f1fb", "M50.75 333.25c-12 12-18.75 28.28-18.75 45.26V424L0 480l32 32 56-32h45.49c16.97 0 33.25-6.74 45.25-18.74l126.64-126.62-128-128L50.75 333.25zM483.88 28.12c-37.47-37.5-98.28-37.5-135.75 0l-77.09 77.09-13.1-13.1c-9.44-9.44-24.65-9.31-33.94 0l-40.97 40.97c-9.37 9.37-9.37 24.57 0 33.94l161.94 161.94c9.44 9.44 24.65 9.31 33.94 0L419.88 288c9.37-9.37 9.37-24.57 0-33.94l-13.1-13.1 77.09-77.09c37.51-37.48 37.51-98.26.01-135.75z" ], + "eye-slash": [ 576, 512, [], "f070", "M286.693 391.984l32.579 46.542A333.958 333.958 0 0 1 288 440C168.19 440 63.031 376.051 6.646 280.369a47.999 47.999 0 0 1 0-48.739c24.023-40.766 56.913-75.775 96.024-102.537l57.077 81.539C154.736 224.82 152 240.087 152 256c0 74.736 60.135 135.282 134.693 135.984zm282.661-111.615c-31.667 53.737-78.747 97.46-135.175 125.475l.011.015 41.47 59.2c7.6 10.86 4.96 25.82-5.9 33.42l-13.11 9.18c-10.86 7.6-25.82 4.96-33.42-5.9L100.34 46.94c-7.6-10.86-4.96-25.82 5.9-33.42l13.11-9.18c10.86-7.6 25.82-4.96 33.42 5.9l51.038 72.617C230.68 75.776 258.905 72 288 72c119.81 0 224.969 63.949 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM424 256c0-75.174-60.838-136-136-136-17.939 0-35.056 3.473-50.729 9.772l19.299 27.058c25.869-8.171 55.044-6.163 80.4 7.41h-.03c-23.65 0-42.82 19.17-42.82 42.82 0 23.626 19.147 42.82 42.82 42.82 23.65 0 42.82-19.17 42.82-42.82v-.03c18.462 34.49 16.312 77.914-8.25 110.95v.01l19.314 27.061C411.496 321.2 424 290.074 424 256zM262.014 356.727l-77.53-110.757c-5.014 52.387 29.314 98.354 77.53 110.757z" ], + "fast-backward": [ 512, 512, [], "f049", "M0 436V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v151.9L235.5 71.4C256.1 54.3 288 68.6 288 96v131.9L459.5 71.4C480.1 54.3 512 68.6 512 96v320c0 27.4-31.9 41.7-52.5 24.6L288 285.3V416c0 27.4-31.9 41.7-52.5 24.6L64 285.3V436c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12z" ], + "fast-forward": [ 512, 512, [], "f050", "M512 76v360c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V284.1L276.5 440.6c-20.6 17.2-52.5 2.8-52.5-24.6V284.1L52.5 440.6C31.9 457.8 0 443.4 0 416V96c0-27.4 31.9-41.7 52.5-24.6L224 226.8V96c0-27.4 31.9-41.7 52.5-24.6L448 226.8V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12z" ], + fax: [ 512, 512, [], "f1ac", "M128 144v320c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V144c0-26.51 21.49-48 48-48h32c26.51 0 48 21.49 48 48zm384 64v256c0 26.51-21.49 48-48 48H192c-26.51 0-48-21.49-48-48V40c0-22.091 17.909-40 40-40h207.432a39.996 39.996 0 0 1 28.284 11.716l48.569 48.569A39.999 39.999 0 0 1 480 88.568v74.174c18.641 6.591 32 24.36 32 45.258zm-320-16h240V96h-24c-13.203 0-24-10.797-24-24V48H192v144zm96 204c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm128 128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40z" ], + feather: [ 512, 512, [], "f52d", "M467.14 44.84c-62.55-62.48-161.67-64.78-252.28 25.73-78.61 78.52-60.98 60.92-85.75 85.66-60.46 60.39-70.39 150.83-63.64 211.17l178.44-178.25c6.26-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.6 9.37 33.98 0l66.1-66.03C159.42 454.65 279 457.11 353.95 384h-98.19l147.57-49.14c49.99-49.93 36.38-36.18 46.31-46.86h-97.78l131.54-43.8c45.44-74.46 34.31-148.84-16.26-199.36z" ], + "feather-alt": [ 512, 512, [], "f56b", "M512 0C460.22 3.56 96.44 38.2 71.01 287.61c-3.09 26.66-4.84 53.44-5.99 80.24l178.87-178.69c6.25-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.59 9.37 33.98 0l57.13-57.07c42.09-.14 84.15-2.53 125.96-7.36 53.48-5.44 97.02-26.47 132.58-56.54H255.74l146.79-48.88c11.25-14.89 21.37-30.71 30.45-47.12h-81.14l106.54-53.21C500.29 132.86 510.19 26.26 512 0z" ], + female: [ 256, 512, [], "f182", "M128 0c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64S92.654 0 128 0m119.283 354.179l-48-192A24 24 0 0 0 176 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H80a24 24 0 0 0-23.283 18.179l-48 192C4.935 369.305 16.383 384 32 384h56v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V384h56c15.591 0 27.071-14.671 23.283-29.821z" ], + "fighter-jet": [ 640, 512, [], "f0fb", "M544 224l-128-16-48-16h-24L227.158 44h39.509C278.333 44 288 41.375 288 38s-9.667-6-21.333-6H152v12h16v164h-48l-66.667-80H18.667L8 138.667V208h8v16h48v2.666l-64 8v42.667l64 8V288H16v16H8v69.333L18.667 384h34.667L120 304h48v164h-16v12h114.667c11.667 0 21.333-2.625 21.333-6s-9.667-6-21.333-6h-39.509L344 320h24l48-16 128-16c96-21.333 96-26.583 96-32 0-5.417 0-10.667-96-32z" ], + file: [ 384, 512, [], "f15b", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + "file-alt": [ 384, 512, [], "f15c", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + "file-archive": [ 384, 512, [], "f1c6", "M224 136V0h-63.6v32h-32V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM95.9 32h32v32h-32V32zm32.3 384c-33.2 0-58-30.4-51.4-62.9L96.4 256v-32h32v-32h-32v-32h32v-32h-32V96h32V64h32v32h-32v32h32v32h-32v32h32v32h-32v32h22.1c5.7 0 10.7 4.1 11.8 9.7l17.3 87.7c6.4 32.4-18.4 62.6-51.4 62.6zm32.7-53c0 14.9-14.5 27-32.4 27S96 378 96 363c0-14.9 14.5-27 32.4-27s32.5 12.1 32.5 27zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + "file-audio": [ 384, 512, [], "f1c7", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + "file-code": [ 384, 512, [], "f1c9", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zM123.206 400.505a5.4 5.4 0 0 1-7.633.246l-64.866-60.812a5.4 5.4 0 0 1 0-7.879l64.866-60.812a5.4 5.4 0 0 1 7.633.246l19.579 20.885a5.4 5.4 0 0 1-.372 7.747L101.65 336l40.763 35.874a5.4 5.4 0 0 1 .372 7.747l-19.579 20.884zm51.295 50.479l-27.453-7.97a5.402 5.402 0 0 1-3.681-6.692l61.44-211.626a5.402 5.402 0 0 1 6.692-3.681l27.452 7.97a5.4 5.4 0 0 1 3.68 6.692l-61.44 211.626a5.397 5.397 0 0 1-6.69 3.681zm160.792-111.045l-64.866 60.812a5.4 5.4 0 0 1-7.633-.246l-19.58-20.885a5.4 5.4 0 0 1 .372-7.747L284.35 336l-40.763-35.874a5.4 5.4 0 0 1-.372-7.747l19.58-20.885a5.4 5.4 0 0 1 7.633-.246l64.866 60.812a5.4 5.4 0 0 1-.001 7.879z" ], + "file-contract": [ 384, 512, [], "f56c", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm192.81 248H304c8.84 0 16 7.16 16 16s-7.16 16-16 16h-47.19c-16.45 0-31.27-9.14-38.64-23.86-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34a15.986 15.986 0 0 1-14.31 8.84c-.38 0-.75-.02-1.14-.05-6.45-.45-12-4.75-14.03-10.89L144 354.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.77-16.19 54.05-9.7 66 14.16 2.02 4.06 5.96 6.5 10.16 6.5zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" ], + "file-download": [ 384, 512, [], "f56d", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm76.45 211.36l-96.42 95.7c-6.65 6.61-17.39 6.61-24.04 0l-96.42-95.7C73.42 337.29 80.54 320 94.82 320H160v-80c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v80h65.18c14.28 0 21.4 17.29 11.27 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" ], + "file-excel": [ 384, 512, [], "f1c3", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm60.1 106.5L224 336l60.1 93.5c5.1 8-.6 18.5-10.1 18.5h-34.9c-4.4 0-8.5-2.4-10.6-6.3C208.9 405.5 192 373 192 373c-6.4 14.8-10 20-36.6 68.8-2.1 3.9-6.1 6.3-10.5 6.3H110c-9.5 0-15.2-10.5-10.1-18.5l60.3-93.5-60.3-93.5c-5.2-8 .6-18.5 10.1-18.5h34.8c4.4 0 8.5 2.4 10.6 6.3 26.1 48.8 20 33.6 36.6 68.5 0 0 6.1-11.7 36.6-68.5 2.1-3.9 6.2-6.3 10.6-6.3H274c9.5-.1 15.2 10.4 10.1 18.4zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + "file-export": [ 576, 512, [], "f56e", "M384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zM192 336v-32c0-8.84 7.16-16 16-16h176V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V352H208c-8.84 0-16-7.16-16-16zm379.05-28.02l-95.7-96.43c-10.06-10.14-27.36-3.01-27.36 11.27V288H384v64h63.99v65.18c0 14.28 17.29 21.41 27.36 11.27l95.7-96.42c6.6-6.66 6.6-17.4 0-24.05z" ], + "file-image": [ 384, 512, [], "f1c5", "M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z" ], + "file-import": [ 512, 512, [], "f56f", "M16 288c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h112v-64H16zm336-152V0H152c-13.3 0-24 10.7-24 24v264h127.99v-65.18c0-14.28 17.29-21.41 27.36-11.27l95.7 96.43c6.6 6.65 6.6 17.39 0 24.04l-95.7 96.42c-10.06 10.14-27.36 3.01-27.36-11.27V352H128v136c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H376c-13.2 0-24-10.8-24-24zm153-31L407.1 7c-4.5-4.5-10.6-7-17-7H384v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" ], + "file-invoice": [ 384, 512, [], "f570", "M288 256H96v64h192v-64zm89-151L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm256 304c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-200v96c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-96c0-8.84 7.16-16 16-16h224c8.84 0 16 7.16 16 16z" ], + "file-invoice-dollar": [ 384, 512, [], "f571", "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 80v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8zm144 263.88V440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-24.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V232c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v24.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07z" ], + "file-medical": [ 384, 512, [], "f477", "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 160v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8z" ], + "file-medical-alt": [ 448, 512, [], "f478", "M288 136V0H88C74.7 0 64 10.7 64 24v232H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h140.9c3 0 5.8 1.7 7.2 4.4l19.9 39.8 56.8-113.7c2.9-5.9 11.4-5.9 14.3 0l34.7 69.5H352c8.8 0 16 7.2 16 16s-7.2 16-16 16h-89.9L240 275.8l-56.8 113.7c-2.9 5.9-11.4 5.9-14.3 0L134.1 320H64v168c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H312c-13.2 0-24-10.8-24-24zm153-31L343.1 7c-4.5-4.5-10.6-7-17-7H320v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" ], + "file-pdf": [ 384, 512, [], "f1c1", "M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z" ], + "file-powerpoint": [ 384, 512, [], "f1c4", "M193.7 271.2c8.8 0 15.5 2.7 20.3 8.1 9.6 10.9 9.8 32.7-.2 44.1-4.9 5.6-11.9 8.5-21.1 8.5h-26.9v-60.7h27.9zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm53 165.2c0 90.3-88.8 77.6-111.1 77.6V436c0 6.6-5.4 12-12 12h-30.8c-6.6 0-12-5.4-12-12V236.2c0-6.6 5.4-12 12-12h81c44.5 0 72.9 32.8 72.9 77z" ], + "file-prescription": [ 384, 512, [], "f572", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm68.53 179.48l11.31 11.31c6.25 6.25 6.25 16.38 0 22.63l-29.9 29.9L304 409.38c6.25 6.25 6.25 16.38 0 22.63l-11.31 11.31c-6.25 6.25-16.38 6.25-22.63 0L240 413.25l-30.06 30.06c-6.25 6.25-16.38 6.25-22.63 0L176 432c-6.25-6.25-6.25-16.38 0-22.63l30.06-30.06L146.74 320H128v48c0 8.84-7.16 16-16 16H96c-8.84 0-16-7.16-16-16V208c0-8.84 7.16-16 16-16h80c35.35 0 64 28.65 64 64 0 24.22-13.62 45.05-33.46 55.92L240 345.38l29.9-29.9c6.25-6.25 16.38-6.25 22.63 0zM176 272h-48v-32h48c8.82 0 16 7.18 16 16s-7.18 16-16 16zm208-150.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + "file-signature": [ 576, 512, [], "f573", "M218.17 424.14c-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34c-6.37 12.78-25.03 11.37-29.48-2.09L144 386.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.75-16.19 54.06-9.7 66 14.16 1.89 3.78 5.49 5.95 9.36 6.26v-82.12l128-127.09V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24v-40l-128-.11c-16.12-.31-30.58-9.28-37.83-23.75zM384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zm-96 225.06V416h68.99l161.68-162.78-67.88-67.88L288 346.96zm280.54-179.63l-31.87-31.87c-9.94-9.94-26.07-9.94-36.01 0l-27.25 27.25 67.88 67.88 27.25-27.25c9.95-9.94 9.95-26.07 0-36.01z" ], + "file-upload": [ 384, 512, [], "f574", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm65.18 216.01H224v80c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-80H94.82c-14.28 0-21.41-17.29-11.27-27.36l96.42-95.7c6.65-6.61 17.39-6.61 24.04 0l96.42 95.7c10.15 10.07 3.03 27.36-11.25 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" ], + "file-video": [ 384, 512, [], "f1c8", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z" ], + "file-word": [ 384, 512, [], "f1c2", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm57.1 120H305c7.7 0 13.4 7.1 11.7 14.7l-38 168c-1.2 5.5-6.1 9.3-11.7 9.3h-38c-5.5 0-10.3-3.8-11.6-9.1-25.8-103.5-20.8-81.2-25.6-110.5h-.5c-1.1 14.3-2.4 17.4-25.6 110.5-1.3 5.3-6.1 9.1-11.6 9.1H117c-5.6 0-10.5-3.9-11.7-9.4l-37.8-168c-1.7-7.5 4-14.6 11.7-14.6h24.5c5.7 0 10.7 4 11.8 9.7 15.6 78 20.1 109.5 21 122.2 1.6-10.2 7.3-32.7 29.4-122.7 1.3-5.4 6.1-9.1 11.7-9.1h29.1c5.6 0 10.4 3.8 11.7 9.2 24 100.4 28.8 124 29.6 129.4-.2-11.2-2.6-17.8 21.6-129.2 1-5.6 5.9-9.5 11.5-9.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + fill: [ 512, 512, [], "f575", "M502.63 217.06L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.77c-6.24-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.63l86.19 86.18-94.76 94.76c-37.49 37.49-37.49 98.26 0 135.75l117.19 117.19c18.75 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.88-28.12l221.57-221.57c12.49-12.5 12.49-32.76 0-45.26zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.61 58.6c12.49 12.49 32.75 12.49 45.24 0 12.49-12.49 12.49-32.75 0-45.24l-58.61-58.6 58.95-58.95 162.45 162.44-48.35 48.34z" ], + "fill-drip": [ 576, 512, [], "f576", "M512 320s-64 92.65-64 128c0 35.35 28.66 64 64 64s64-28.65 64-64-64-128-64-128zm-9.37-102.94L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.76c-6.25-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.62l86.19 86.18-94.76 94.76c-37.49 37.48-37.49 98.26 0 135.75l117.19 117.19c18.74 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.87-28.12l221.57-221.57c12.5-12.5 12.5-32.75.01-45.25zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.6 58.6c12.49 12.49 32.75 12.49 45.24 0s12.49-32.75 0-45.24l-58.6-58.6 58.95-58.95 162.44 162.44-48.34 48.34z" ], + film: [ 512, 512, [], "f008", "M488 64h-8v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V64H96v20c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12V64h-8C10.7 64 0 74.7 0 88v336c0 13.3 10.7 24 24 24h8v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h320v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h8c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM96 372c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm272 208c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm0-168c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm112 152c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z" ], + filter: [ 512, 512, [], "f0b0", "M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z" ], + fingerprint: [ 512, 512, [], "f577", "M256.12 245.96c-13.25 0-24 10.74-24 24 1.14 72.25-8.14 141.9-27.7 211.55-2.73 9.72 2.15 30.49 23.12 30.49 10.48 0 20.11-6.92 23.09-17.52 13.53-47.91 31.04-125.41 29.48-224.52.01-13.25-10.73-24-23.99-24zm-.86-81.73C194 164.16 151.25 211.3 152.1 265.32c.75 47.94-3.75 95.91-13.37 142.55-2.69 12.98 5.67 25.69 18.64 28.36 13.05 2.67 25.67-5.66 28.36-18.64 10.34-50.09 15.17-101.58 14.37-153.02-.41-25.95 19.92-52.49 54.45-52.34 31.31.47 57.15 25.34 57.62 55.47.77 48.05-2.81 96.33-10.61 143.55-2.17 13.06 6.69 25.42 19.76 27.58 19.97 3.33 26.81-15.1 27.58-19.77 8.28-50.03 12.06-101.21 11.27-152.11-.88-55.8-47.94-101.88-104.91-102.72zm-110.69-19.78c-10.3-8.34-25.37-6.8-33.76 3.48-25.62 31.5-39.39 71.28-38.75 112 .59 37.58-2.47 75.27-9.11 112.05-2.34 13.05 6.31 25.53 19.36 27.89 20.11 3.5 27.07-14.81 27.89-19.36 7.19-39.84 10.5-80.66 9.86-121.33-.47-29.88 9.2-57.88 28-80.97 8.35-10.28 6.79-25.39-3.49-33.76zm109.47-62.33c-15.41-.41-30.87 1.44-45.78 4.97-12.89 3.06-20.87 15.98-17.83 28.89 3.06 12.89 16 20.83 28.89 17.83 11.05-2.61 22.47-3.77 34-3.69 75.43 1.13 137.73 61.5 138.88 134.58.59 37.88-1.28 76.11-5.58 113.63-1.5 13.17 7.95 25.08 21.11 26.58 16.72 1.95 25.51-11.88 26.58-21.11a929.06 929.06 0 0 0 5.89-119.85c-1.56-98.75-85.07-180.33-186.16-181.83zm252.07 121.45c-2.86-12.92-15.51-21.2-28.61-18.27-12.94 2.86-21.12 15.66-18.26 28.61 4.71 21.41 4.91 37.41 4.7 61.6-.11 13.27 10.55 24.09 23.8 24.2h.2c13.17 0 23.89-10.61 24-23.8.18-22.18.4-44.11-5.83-72.34zm-40.12-90.72C417.29 43.46 337.6 1.29 252.81.02 183.02-.82 118.47 24.91 70.46 72.94 24.09 119.37-.9 181.04.14 246.65l-.12 21.47c-.39 13.25 10.03 24.31 23.28 24.69.23.02.48.02.72.02 12.92 0 23.59-10.3 23.97-23.3l.16-23.64c-.83-52.5 19.16-101.86 56.28-139 38.76-38.8 91.34-59.67 147.68-58.86 69.45 1.03 134.73 35.56 174.62 92.39 7.61 10.86 22.56 13.45 33.42 5.86 10.84-7.62 13.46-22.59 5.84-33.43z" ], + fire: [ 384, 512, [], "f06d", "M216 23.858c0-23.802-30.653-32.765-44.149-13.038C48 191.851 224 200 224 288c0 35.629-29.114 64.458-64.85 63.994C123.98 351.538 96 322.22 96 287.046v-85.51c0-21.703-26.471-32.225-41.432-16.504C27.801 213.158 0 261.332 0 320c0 105.869 86.131 192 192 192s192-86.131 192-192c0-170.29-168-193.003-168-296.142z" ], + "fire-extinguisher": [ 448, 512, [], "f134", "M434.027 26.329l-168 28C254.693 56.218 256 67.8 256 72h-58.332C208.353 36.108 181.446 0 144 0c-39.435 0-66.368 39.676-52.228 76.203-52.039 13.051-75.381 54.213-90.049 90.884-4.923 12.307 1.063 26.274 13.37 31.197 12.317 4.926 26.279-1.075 31.196-13.37C75.058 112.99 106.964 120 168 120v27.076c-41.543 10.862-72 49.235-72 94.129V488c0 13.255 10.745 24 24 24h144c13.255 0 24-10.745 24-24V240c0-44.731-30.596-82.312-72-92.97V120h40c0 2.974-1.703 15.716 10.027 17.671l168 28C441.342 166.89 448 161.25 448 153.834V38.166c0-7.416-6.658-13.056-13.973-11.837zM144 72c-8.822 0-16-7.178-16-16s7.178-16 16-16 16 7.178 16 16-7.178 16-16 16z" ], + "first-aid": [ 576, 512, [], "f479", "M0 80v352c0 26.5 21.5 48 48 48h48V32H48C21.5 32 0 53.5 0 80zm128 400h320V32H128v448zm64-248c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48zM528 32h-48v448h48c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z" ], + fish: [ 576, 512, [], "f578", "M327.1 96c-89.97 0-168.54 54.77-212.27 101.63L27.5 131.58c-12.13-9.18-30.24.6-27.14 14.66L24.54 256 .35 365.77c-3.1 14.06 15.01 23.83 27.14 14.66l87.33-66.05C158.55 361.23 237.13 416 327.1 416 464.56 416 576 288 576 256S464.56 96 327.1 96zm87.43 184c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24 13.26 0 24 10.74 24 24 0 13.25-10.75 24-24 24z" ], + flag: [ 512, 512, [], "f024", "M349.565 98.783C295.978 98.783 251.721 64 184.348 64c-24.955 0-47.309 4.384-68.045 12.013a55.947 55.947 0 0 0 3.586-23.562C118.117 24.015 94.806 1.206 66.338.048 34.345-1.254 8 24.296 8 56c0 19.026 9.497 35.825 24 45.945V488c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-94.4c28.311-12.064 63.582-22.122 114.435-22.122 53.588 0 97.844 34.783 165.217 34.783 48.169 0 86.667-16.294 122.505-40.858C506.84 359.452 512 349.571 512 339.045v-243.1c0-23.393-24.269-38.87-45.485-29.016-34.338 15.948-76.454 31.854-116.95 31.854z" ], + "flag-checkered": [ 512, 512, [], "f11e", "M466.515 66.928C487.731 57.074 512 72.551 512 95.944v243.1c0 10.526-5.161 20.407-13.843 26.358-35.837 24.564-74.335 40.858-122.505 40.858-67.373 0-111.63-34.783-165.217-34.783-50.853 0-86.124 10.058-114.435 22.122V488c0 13.255-10.745 24-24 24H56c-13.255 0-24-10.745-24-24V101.945C17.497 91.825 8 75.026 8 56 8 24.296 34.345-1.254 66.338.048c28.468 1.158 51.779 23.968 53.551 52.404.52 8.342-.81 16.31-3.586 23.562C137.039 68.384 159.393 64 184.348 64c67.373 0 111.63 34.783 165.217 34.783 40.496 0 82.612-15.906 116.95-31.855zM96 134.63v70.49c29-10.67 51.18-17.83 73.6-20.91v-71.57c-23.5 2.17-40.44 9.79-73.6 21.99zm220.8 9.19c-26.417-4.672-49.886-13.979-73.6-21.34v67.42c24.175 6.706 47.566 16.444 73.6 22.31v-68.39zm-147.2 40.39v70.04c32.796-2.978 53.91-.635 73.6 3.8V189.9c-25.247-7.035-46.581-9.423-73.6-5.69zm73.6 142.23c26.338 4.652 49.732 13.927 73.6 21.34v-67.41c-24.277-6.746-47.54-16.45-73.6-22.32v68.39zM96 342.1c23.62-8.39 47.79-13.84 73.6-16.56v-71.29c-26.11 2.35-47.36 8.04-73.6 17.36v70.49zm368-221.6c-21.3 8.85-46.59 17.64-73.6 22.47v71.91c27.31-4.36 50.03-14.1 73.6-23.89V120.5zm0 209.96v-70.49c-22.19 14.2-48.78 22.61-73.6 26.02v71.58c25.07-2.38 48.49-11.04 73.6-27.11zM316.8 212.21v68.16c25.664 7.134 46.616 9.342 73.6 5.62v-71.11c-25.999 4.187-49.943 2.676-73.6-2.67z" ], + flask: [ 448, 512, [], "f0c3", "M437.2 403.5L320 215V64h8c13.3 0 24-10.7 24-24V24c0-13.3-10.7-24-24-24H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h8v151L10.8 403.5C-18.5 450.6 15.3 512 70.9 512h306.2c55.7 0 89.4-61.5 60.1-108.5zM137.9 320l48.2-77.6c3.7-5.2 5.8-11.6 5.8-18.4V64h64v160c0 6.9 2.2 13.2 5.8 18.4l48.2 77.6h-172z" ], + flushed: [ 496, 512, [], "f579", "M344 200c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-192 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM80 224c0-39.8 32.2-72 72-72s72 32.2 72 72-32.2 72-72 72-72-32.2-72-72zm232 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-104c-39.8 0-72-32.2-72-72s32.2-72 72-72 72 32.2 72 72-32.2 72-72 72z" ], + folder: [ 512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z" ], + "folder-open": [ 576, 512, [], "f07c", "M572.694 292.093L500.27 416.248A63.997 63.997 0 0 1 444.989 448H45.025c-18.523 0-30.064-20.093-20.731-36.093l72.424-124.155A64 64 0 0 1 152 256h399.964c18.523 0 30.064 20.093 20.73 36.093zM152 224h328v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v278.046l69.077-118.418C86.214 242.25 117.989 224 152 224z" ], + font: [ 448, 512, [], "f031", "M152 416h-24.013l26.586-80.782H292.8L319.386 416H296c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-26.739L275.495 42.746A16 16 0 0 0 260.382 32h-72.766a16 16 0 0 0-15.113 10.746L42.739 416H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm64.353-271.778c4.348-15.216 6.61-28.156 7.586-34.644.839 6.521 2.939 19.476 7.727 34.706l41.335 124.006h-98.619l41.971-124.068z" ], + "font-awesome-logo-full": [ 3992, 512, [ "Font Awesome" ], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z" ], + "football-ball": [ 496, 512, [], "f44e", "M481.5 60.3c-4.8-18.2-19.1-32.5-37.3-37.4C420.3 16.5 383 8.9 339.4 8L496 164.8c-.8-43.5-8.2-80.6-14.5-104.5zm-467 391.4c4.8 18.2 19.1 32.5 37.3 37.4 23.9 6.4 61.2 14 104.8 14.9L0 347.2c.8 43.5 8.2 80.6 14.5 104.5zM4.2 283.4L220.4 500c132.5-19.4 248.8-118.7 271.5-271.4L275.6 12C143.1 31.4 26.8 130.7 4.2 283.4zm317.3-123.6c3.1-3.1 8.2-3.1 11.3 0l11.3 11.3c3.1 3.1 3.1 8.2 0 11.3l-28.3 28.3 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-22.6 22.7 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L248 278.6l-22.6 22.6 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-28.3 28.3c-3.1 3.1-8.2 3.1-11.3 0l-11.3-11.3c-3.1-3.1-3.1-8.2 0-11.3l28.3-28.3-28.3-28.2c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 28.3-28.5z" ], + forward: [ 512, 512, [], "f04e", "M500.5 231.4l-192-160C287.9 54.3 256 68.6 256 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2zm-256 0l-192-160C31.9 54.3 0 68.6 0 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2z" ], + frog: [ 576, 512, [], "f52e", "M446.53 97.43C439.67 60.23 407.19 32 368 32c-39.23 0-71.72 28.29-78.54 65.54C126.75 112.96-.5 250.12 0 416.98.11 451.9 29.08 480 64 480h304c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-79.49l35.8-48.33c24.14-36.23 10.35-88.28-33.71-106.6-23.89-9.93-51.55-4.65-72.24 10.88l-32.76 24.59c-7.06 5.31-17.09 3.91-22.41-3.19-5.3-7.08-3.88-17.11 3.19-22.41l34.78-26.09c36.84-27.66 88.28-27.62 125.13 0 10.87 8.15 45.87 39.06 40.8 93.21L469.62 480H560c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-53.63l-98.52-104.68 154.44-86.65A58.16 58.16 0 0 0 576 189.94c0-21.4-11.72-40.95-30.48-51.23-40.56-22.22-98.99-41.28-98.99-41.28zM368 136c-13.26 0-24-10.75-24-24 0-13.26 10.74-24 24-24 13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24z" ], + frown: [ 496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm170.2 218.2C315.8 367.4 282.9 352 248 352s-67.8 15.4-90.2 42.2c-13.5 16.3-38.1-4.2-24.6-20.5C161.7 339.6 203.6 320 248 320s86.3 19.6 114.7 53.8c13.6 16.2-11 36.7-24.5 20.4z" ], + "frown-open": [ 496, 512, [], "f57a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm187.3 183.3c-31.2-9.6-59.4-15.3-75.3-15.3s-44.1 5.7-75.3 15.3c-11.5 3.5-22.5-6.3-20.5-18.1 7-40 60.1-61.2 95.8-61.2s88.8 21.3 95.8 61.2c2 11.9-9.1 21.6-20.5 18.1zM328 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + futbol: [ 512, 512, [], "f1e3", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-48 0l-.003-.282-26.064 22.741-62.679-58.5 16.454-84.355 34.303 3.072c-24.889-34.216-60.004-60.089-100.709-73.141l13.651 31.939L256 139l-74.953-41.525 13.651-31.939c-40.631 13.028-75.78 38.87-100.709 73.141l34.565-3.073 16.192 84.355-62.678 58.5-26.064-22.741-.003.282c0 43.015 13.497 83.952 38.472 117.991l7.704-33.897 85.138 10.447 36.301 77.826-29.902 17.786c40.202 13.122 84.29 13.148 124.572 0l-29.902-17.786 36.301-77.826 85.138-10.447 7.704 33.897C442.503 339.952 456 299.015 456 256zm-248.102 69.571l-29.894-91.312L256 177.732l77.996 56.527-29.622 91.312h-96.476z" ], + gamepad: [ 640, 512, [], "f11b", "M480 96H160C71.6 96 0 167.6 0 256s71.6 160 160 160c44.8 0 85.2-18.4 114.2-48h91.5c29 29.6 69.5 48 114.2 48 88.4 0 160-71.6 160-160S568.4 96 480 96zM256 276c0 6.6-5.4 12-12 12h-52v52c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-52H76c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h52v-52c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h52c6.6 0 12 5.4 12 12v40zm184 68c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-80c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z" ], + "gas-pump": [ 512, 512, [], "f52f", "M336 448H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm157.2-340.7l-81-81c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-6.2 6.2-6.2 16.4 0 22.6L416 97.9V160c0 28.1 20.9 51.3 48 55.2V376c0 13.2-10.8 24-24 24s-24-10.8-24-24v-32c0-48.6-39.4-88-88-88h-8V64c0-35.3-28.7-64-64-64H96C60.7 0 32 28.7 32 64v352h288V304h8c22.1 0 40 17.9 40 40v27.8c0 37.7 27 72 64.5 75.9 43 4.3 79.5-29.5 79.5-71.7V152.6c0-17-6.8-33.3-18.8-45.3zM256 192H96V64h160v128z" ], + gavel: [ 512, 512, [], "f0e3", "M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z" ], + gem: [ 576, 512, [], "f3a5", "M485.5 0L576 160H474.9L405.7 0h79.8zm-128 0l69.2 160H149.3L218.5 0h139zm-267 0h79.8l-69.2 160H0L90.5 0zM0 192h100.7l123 251.7c1.5 3.1-2.7 5.9-5 3.3L0 192zm148.2 0h279.6l-137 318.2c-1 2.4-4.5 2.4-5.5 0L148.2 192zm204.1 251.7l123-251.7H576L357.3 446.9c-2.3 2.7-6.5-.1-5-3.2z" ], + genderless: [ 288, 512, [], "f22d", "M144 176c44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80 35.9-80 80-80m0-64C64.5 112 0 176.5 0 256s64.5 144 144 144 144-64.5 144-144-64.5-144-144-144z" ], + gift: [ 512, 512, [], "f06b", "M32 448c0 17.7 14.3 32 32 32h160V320H32v128zm448-288h-42.1c6.2-12.1 10.1-25.5 10.1-40 0-48.5-39.5-88-88-88-41.6 0-68.5 21.3-103 68.3-34.5-47-61.4-68.3-103-68.3-48.5 0-88 39.5-88 88 0 14.5 3.8 27.9 10.1 40H32c-17.7 0-32 14.3-32 32v80c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-80c0-17.7-14.3-32-32-32zm-326.1 0c-22.1 0-40-17.9-40-40s17.9-40 40-40c19.9 0 34.6 3.3 86.1 80h-86.1zm206.1 0h-86.1c51.4-76.5 65.7-80 86.1-80 22.1 0 40 17.9 40 40s-17.9 40-40 40zm-72 320h160c17.7 0 32-14.3 32-32V320H288v160z" ], + "glass-martini": [ 512, 512, [], "f000", "M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6z" ], + "glass-martini-alt": [ 512, 512, [], "f57b", "M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6zM443.77 48l-48 48H116.24l-48-48h375.53z" ], + glasses: [ 576, 512, [], "f530", "M574.1 280.37L528.75 98.66c-5.91-23.7-21.59-44.05-43-55.81-21.44-11.73-46.97-14.11-70.19-6.33l-15.25 5.08c-8.39 2.79-12.92 11.86-10.12 20.24l5.06 15.18c2.79 8.38 11.85 12.91 20.23 10.12l13.18-4.39c10.87-3.62 23-3.57 33.16 1.73 10.29 5.37 17.57 14.56 20.37 25.82l38.46 153.82c-22.19-6.81-49.79-12.46-81.2-12.46-34.77 0-73.98 7.02-114.85 26.74h-73.18c-40.87-19.74-80.08-26.75-114.86-26.75-31.42 0-59.02 5.65-81.21 12.46l38.46-153.83c2.79-11.25 10.09-20.45 20.38-25.81 10.16-5.3 22.28-5.35 33.15-1.73l13.17 4.39c8.38 2.79 17.44-1.74 20.23-10.12l5.06-15.18c2.8-8.38-1.73-17.45-10.12-20.24l-15.25-5.08c-23.22-7.78-48.75-5.41-70.19 6.33-21.41 11.77-37.09 32.11-43 55.8L1.9 280.37A64.218 64.218 0 0 0 0 295.86v70.25C0 429.01 51.58 480 115.2 480h37.12c60.28 0 110.37-45.94 114.88-105.37l2.93-38.63h35.75l2.93 38.63C313.31 434.06 363.4 480 423.68 480h37.12c63.62 0 115.2-50.99 115.2-113.88v-70.25c0-5.23-.64-10.43-1.9-15.5zm-370.72 89.42c-1.97 25.91-24.4 46.21-51.06 46.21H115.2C86.97 416 64 393.62 64 366.11v-37.54c18.12-6.49 43.42-12.92 72.58-12.92 23.86 0 47.26 4.33 69.93 12.92l-3.13 41.22zM512 366.12c0 27.51-22.97 49.88-51.2 49.88h-37.12c-26.67 0-49.1-20.3-51.06-46.21l-3.13-41.22c22.67-8.59 46.08-12.92 69.95-12.92 29.12 0 54.43 6.44 72.55 12.93v37.54z" ], + globe: [ 496, 512, [], "f0ac", "M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z" ], + "globe-africa": [ 496, 512, [], "f57c", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm160 215.5v6.93c0 5.87-3.32 11.24-8.57 13.86l-15.39 7.7a15.485 15.485 0 0 1-15.53-.97l-18.21-12.14a15.52 15.52 0 0 0-13.5-1.81l-2.65.88c-9.7 3.23-13.66 14.79-7.99 23.3l13.24 19.86c2.87 4.31 7.71 6.9 12.89 6.9h8.21c8.56 0 15.5 6.94 15.5 15.5v11.34c0 3.35-1.09 6.62-3.1 9.3l-18.74 24.98c-1.42 1.9-2.39 4.1-2.83 6.43l-4.3 22.83c-.62 3.29-2.29 6.29-4.76 8.56a159.608 159.608 0 0 0-25 29.16l-13.03 19.55a27.756 27.756 0 0 1-23.09 12.36c-10.51 0-20.12-5.94-24.82-15.34a78.902 78.902 0 0 1-8.33-35.29V367.5c0-8.56-6.94-15.5-15.5-15.5h-25.88c-14.49 0-28.38-5.76-38.63-16a54.659 54.659 0 0 1-16-38.63v-14.06c0-17.19 8.1-33.38 21.85-43.7l27.58-20.69a54.663 54.663 0 0 1 32.78-10.93h.89c8.48 0 16.85 1.97 24.43 5.77l14.72 7.36c3.68 1.84 7.93 2.14 11.83.84l47.31-15.77c6.33-2.11 10.6-8.03 10.6-14.7 0-8.56-6.94-15.5-15.5-15.5h-10.09c-4.11 0-8.05-1.63-10.96-4.54l-6.92-6.92a15.493 15.493 0 0 0-10.96-4.54H199.5c-8.56 0-15.5-6.94-15.5-15.5v-4.4c0-7.11 4.84-13.31 11.74-15.04l14.45-3.61c3.74-.94 7-3.23 9.14-6.44l8.08-12.11c2.87-4.31 7.71-6.9 12.89-6.9h24.21c8.56 0 15.5-6.94 15.5-15.5v-21.7C359.23 71.63 422.86 131.02 441.93 208H423.5c-8.56 0-15.5 6.94-15.5 15.5z" ], + "globe-americas": [ 496, 512, [], "f57d", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm82.29 357.6c-3.9 3.88-7.99 7.95-11.31 11.28-2.99 3-5.1 6.7-6.17 10.71-1.51 5.66-2.73 11.38-4.77 16.87l-17.39 46.85c-13.76 3-28 4.69-42.65 4.69v-27.38c1.69-12.62-7.64-36.26-22.63-51.25-6-6-9.37-14.14-9.37-22.63v-32.01c0-11.64-6.27-22.34-16.46-27.97-14.37-7.95-34.81-19.06-48.81-26.11-11.48-5.78-22.1-13.14-31.65-21.75l-.8-.72a114.792 114.792 0 0 1-18.06-20.74c-9.38-13.77-24.66-36.42-34.59-51.14 20.47-45.5 57.36-82.04 103.2-101.89l24.01 12.01C203.48 89.74 216 82.01 216 70.11v-11.3c7.99-1.29 16.12-2.11 24.39-2.42l28.3 28.3c6.25 6.25 6.25 16.38 0 22.63L264 112l-10.34 10.34c-3.12 3.12-3.12 8.19 0 11.31l4.69 4.69c3.12 3.12 3.12 8.19 0 11.31l-8 8a8.008 8.008 0 0 1-5.66 2.34h-8.99c-2.08 0-4.08.81-5.58 2.27l-9.92 9.65a8.008 8.008 0 0 0-1.58 9.31l15.59 31.19c2.66 5.32-1.21 11.58-7.15 11.58h-5.64c-1.93 0-3.79-.7-5.24-1.96l-9.28-8.06a16.017 16.017 0 0 0-15.55-3.1l-31.17 10.39a11.95 11.95 0 0 0-8.17 11.34c0 4.53 2.56 8.66 6.61 10.69l11.08 5.54c9.41 4.71 19.79 7.16 30.31 7.16s22.59 27.29 32 32h66.75c8.49 0 16.62 3.37 22.63 9.37l13.69 13.69a30.503 30.503 0 0 1 8.93 21.57 46.536 46.536 0 0 1-13.72 32.98zM417 274.25c-5.79-1.45-10.84-5-14.15-9.97l-17.98-26.97a23.97 23.97 0 0 1 0-26.62l19.59-29.38c2.32-3.47 5.5-6.29 9.24-8.15l12.98-6.49C440.2 193.59 448 223.87 448 256c0 8.67-.74 17.16-1.82 25.54L417 274.25z" ], + "globe-asia": [ 496, 512, [], "f57e", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm-11.34 240.23c-2.89 4.82-8.1 7.77-13.72 7.77h-.31c-4.24 0-8.31 1.69-11.31 4.69l-5.66 5.66c-3.12 3.12-3.12 8.19 0 11.31l5.66 5.66c3 3 4.69 7.07 4.69 11.31V304c0 8.84-7.16 16-16 16h-6.11c-6.06 0-11.6-3.42-14.31-8.85l-22.62-45.23c-2.44-4.88-8.95-5.94-12.81-2.08l-19.47 19.46c-3 3-7.07 4.69-11.31 4.69H50.81C49.12 277.55 48 266.92 48 256c0-110.28 89.72-200 200-200 21.51 0 42.2 3.51 61.63 9.82l-50.16 38.53c-5.11 3.41-4.63 11.06.86 13.81l10.83 5.41c5.42 2.71 8.84 8.25 8.84 14.31V216c0 4.42-3.58 8-8 8h-3.06c-3.03 0-5.8-1.71-7.15-4.42-1.56-3.12-5.96-3.29-7.76-.3l-17.37 28.95zM408 358.43c0 4.24-1.69 8.31-4.69 11.31l-9.57 9.57c-3 3-7.07 4.69-11.31 4.69h-15.16c-4.24 0-8.31-1.69-11.31-4.69l-13.01-13.01a26.767 26.767 0 0 0-25.42-7.04l-21.27 5.32c-1.27.32-2.57.48-3.88.48h-10.34c-4.24 0-8.31-1.69-11.31-4.69l-11.91-11.91a8.008 8.008 0 0 1-2.34-5.66v-10.2c0-3.27 1.99-6.21 5.03-7.43l39.34-15.74c1.98-.79 3.86-1.82 5.59-3.05l23.71-16.89a7.978 7.978 0 0 1 4.64-1.48h12.09c3.23 0 6.15 1.94 7.39 4.93l5.35 12.85a4 4 0 0 0 3.69 2.46h3.8c1.78 0 3.35-1.18 3.84-2.88l4.2-14.47c.5-1.71 2.06-2.88 3.84-2.88h6.06c2.21 0 4 1.79 4 4v12.93c0 2.12.84 4.16 2.34 5.66l11.91 11.91c3 3 4.69 7.07 4.69 11.31v24.6z" ], + "golf-ball": [ 416, 512, [], "f450", "M96 416h224c0 17.7-14.3 32-32 32h-16c-17.7 0-32 14.3-32 32v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-20c0-17.7-14.3-32-32-32h-16c-17.7 0-32-14.3-32-32zm320-208c0 74.2-39 139.2-97.5 176h-221C39 347.2 0 282.2 0 208 0 93.1 93.1 0 208 0s208 93.1 208 208zm-180.1 43.9c18.3 0 33.1-14.8 33.1-33.1 0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1zm49.1 46.9c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1zm64-64c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1z" ], + "graduation-cap": [ 640, 512, [], "f19d", "M622.884 199.005l-275.817 85.1a96 96 0 0 1-54.134 0L92.398 222.232c-8.564 11.438-11.018 23.05-11.918 38.335C89.778 266.165 96 276.355 96 288c0 11.952-6.557 22.366-16.265 27.861l16.197 123.096c.63 4.786-3.1 9.043-7.932 9.043H40c-4.828 0-8.562-4.253-7.932-9.044L48.265 315.86C38.557 310.366 32 299.952 32 288c0-12.034 6.646-22.511 16.465-27.976.947-17.951 3.974-33.231 12.152-47.597l-43.502-13.422c-22.876-6.801-22.766-39.241 0-46.01l275.817-85.1a96 96 0 0 1 54.134 0l275.817 85.1c22.877 6.801 22.767 39.241.001 46.01zM356.503 314.682l-.207.064-.207.061a127.998 127.998 0 0 1-72.177 0l-.207-.061-.207-.064-150.914-46.57L120 352c0 35.346 89.543 64 200 64s200-28.654 200-64l-12.583-83.888-150.914 46.57z" ], + "greater-than": [ 384, 512, [], "f531", "M365.52 209.85L59.22 67.01c-16.06-7.49-35.15-.54-42.64 15.52L3.01 111.61c-7.49 16.06-.54 35.15 15.52 42.64L236.96 256.1 18.49 357.99C2.47 365.46-4.46 384.5 3.01 400.52l13.52 29C24 445.54 43.04 452.47 59.06 445l306.47-142.91a32.003 32.003 0 0 0 18.48-29v-34.23c-.01-12.45-7.21-23.76-18.49-29.01z" ], + "greater-than-equal": [ 448, 512, [], "f532", "M55.22 107.69l175.56 68.09-175.44 68.05c-18.39 6.03-27.88 24.39-21.2 41l12.09 30.08c6.68 16.61 26.99 25.19 45.38 19.15L393.02 214.2c13.77-4.52 22.98-16.61 22.98-30.17v-15.96c0-13.56-9.21-25.65-22.98-30.17L91.3 17.92c-18.29-6-38.51 2.53-45.15 19.06L34.12 66.9c-6.64 16.53 2.81 34.79 21.1 40.79zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z" ], + grimace: [ 496, 512, [], "f57f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM144 400h-8c-17.7 0-32-14.3-32-32v-8h40v40zm0-56h-40v-8c0-17.7 14.3-32 32-32h8v40zm-8-136c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm72 192h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm-8-104c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64 128c0 17.7-14.3 32-32 32h-8v-40h40v8zm0-24h-40v-40h8c17.7 0 32 14.3 32 32v8z" ], + grin: [ 496, 512, [], "f580", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm80 256c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" ], + "grin-alt": [ 496, 512, [], "f581", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm63.7 128.7c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zm-160 0c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" ], + "grin-beam": [ 496, 512, [], "f582", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 144c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" ], + "grin-beam-sweat": [ 504, 512, [], "f583", "M456 128c26.5 0 48-21 48-47 0-20-28.5-60.4-41.6-77.8-3.2-4.3-9.6-4.3-12.8 0C436.5 20.6 408 61 408 81c0 26 21.5 47 48 47zm0 32c-44.1 0-80-35.4-80-79 0-4.4.3-14.2 8.1-32.2C345 23.1 298.3 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-35.1-7.4-68.4-20.5-98.6-6.3 1.5-12.7 2.6-19.5 2.6zm-128-8c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" ], + "grin-hearts": [ 496, 512, [], "f584", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM90.4 183.6c6.7-17.6 26.7-26.7 44.9-21.9l7.1 1.9 2-7.1c5-18.1 22.8-30.9 41.5-27.9 21.4 3.4 34.4 24.2 28.8 44.5L195.3 243c-1.2 4.5-5.9 7.2-10.5 6l-70.2-18.2c-20.4-5.4-31.9-27-24.2-47.2zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm133.4-201.3l-70.2 18.2c-4.5 1.2-9.2-1.5-10.5-6L281.3 173c-5.6-20.3 7.4-41.1 28.8-44.5 18.6-3 36.4 9.8 41.5 27.9l2 7.1 7.1-1.9c18.2-4.7 38.2 4.3 44.9 21.9 7.7 20.3-3.8 41.9-24.2 47.2z" ], + "grin-squint": [ 496, 512, [], "f585", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" ], + "grin-squint-tears": [ 512, 512, [], "f586", "M409.6 111.9c22.6-3.2 73.5-12 88.3-26.8 19.2-19.2 18.9-50.6-.7-70.2S446-5 426.9 14.2c-14.8 14.8-23.5 65.7-26.8 88.3-.8 5.5 3.9 10.2 9.5 9.4zM102.4 400.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm311.7-256.5c-33 3.9-48.6-25.1-45.7-45.7 3.4-24 7.4-42.1 11.5-56.5C285.1-13.4 161.8-.5 80.6 80.6-.5 161.7-13.4 285 41.4 379.9c14.4-4.1 32.4-8 56.5-11.5 33.2-3.9 48.6 25.2 45.7 45.7-3.4 24-7.4 42.1-11.5 56.5 94.8 54.8 218.1 41.9 299.3-39.2s94-204.4 39.2-299.3c-14.4 4.1-32.5 8-56.5 11.5zM255.7 106c3.3-13.2 22.4-11.5 23.6 1.8l4.8 52.3 52.3 4.8c13.4 1.2 14.9 20.3 1.8 23.6l-90.5 22.6c-8.9 2.2-16.7-5.9-14.5-14.5l22.5-90.6zm-90.9 230.3L160 284l-52.3-4.8c-13.4-1.2-14.9-20.3-1.8-23.6l90.5-22.6c8.8-2.2 16.7 5.8 14.5 14.5L188.3 338c-3.1 13.2-22.2 11.7-23.5-1.7zm215.7 44.2c-29.3 29.3-75.7 50.4-116.7 50.4-18.9 0-36.6-4.5-51-14.7-9.8-6.9-8.7-21.8 2-27.2 28.3-14.6 63.9-42.4 97.8-76.3s61.7-69.6 76.3-97.8c5.4-10.5 20.2-11.9 27.3-2 32.3 45.3 7.1 124.7-35.7 167.6z" ], + "grin-stars": [ 496, 512, [], "f587", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM94.6 168.9l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.2 1 8.9 8.6 4.3 13.2l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L152 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.6-4.7-1.9-12.3 4.3-13.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm157.7-249.9l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L344 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.5-4.6-1.9-12.2 4.3-13.2l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.3.9 9 8.5 4.4 13.1z" ], + "grin-tears": [ 640, 512, [], "f588", "M102.4 256.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm523.4 26.8c-14.8-14.8-65.7-23.5-88.3-26.8-5.5-.8-10.3 3.9-9.5 9.5 3.2 22.6 12 73.5 26.8 88.3 19.2 19.2 50.6 18.9 70.2-.7s20-51.2.8-70.3zm-129.4-12.8c-3.8-26.6 19.1-49.5 45.7-45.7 8.9 1.3 16.8 2.7 24.3 4.1C552.7 104.5 447.7 8 320 8S87.3 104.5 73.6 228.5c7.5-1.4 15.4-2.8 24.3-4.1 33.2-3.9 48.6 25.3 45.7 45.7-11.8 82.3-29.9 100.4-35.8 106.4-.9.9-2 1.6-3 2.5 42.7 74.6 123 125 215.2 125s172.5-50.4 215.2-125.1c-1-.9-2.1-1.5-3-2.5-5.9-5.9-24-24-35.8-106.3zM400 152c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.7 9.2-21.6 20.7-17.9C227.1 330.5 272 336 320 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" ], + "grin-tongue": [ 496, 512, [], "f589", "M248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-34.9 134.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z" ], + "grin-tongue-squint": [ 496, 512, [], "f58a", "M293.1 374.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-33.8 210.3l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.7 4.7 7.7 15.9 0 20.6zm163 30c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.8-4.7-7.8-15.9 0-20.6l80-48c11.7-6.9 23.9 7.7 15.4 18L343.6 208l33.6 40.3z" ], + "grin-tongue-wink": [ 496, 512, [], "f58b", "M344 184c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-56 225l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L112 233c-8.5 7.4-21.6.3-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c1.6 11.1-11.6 18.2-20 10.8zm152 39c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm-50.9 102.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z" ], + "grin-wink": [ 496, 512, [], "f58c", "M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm168 25l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.6 11-11.5 18.2-20 10.8zm-243.1 87.8C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6 20.7 17.9-9.2 55-83.2 93.3-143.8 93.3s-134.5-38.3-143.8-93.3c-2-11.9 9.3-21.6 20.7-17.9z" ], + "grip-horizontal": [ 448, 512, [], "f58d", "M96 288H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM96 96H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z" ], + "grip-vertical": [ 320, 512, [], "f58e", "M96 32H32C14.33 32 0 46.33 0 64v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM288 32h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z" ], + "h-square": [ 448, 512, [], "f0fd", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-112 48h-32c-8.837 0-16 7.163-16 16v80H160v-80c0-8.837-7.163-16-16-16h-32c-8.837 0-16 7.163-16 16v224c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16v-80h128v80c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144c0-8.837-7.163-16-16-16z" ], + "hand-holding": [ 576, 512, [], "f4bd", "M565.3 328.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z" ], + "hand-holding-heart": [ 576, 512, [], "f4be", "M275.3 250.5c7 7.4 18.4 7.4 25.5 0l108.9-114.2c31.6-33.2 29.8-88.2-5.6-118.8-30.8-26.7-76.7-21.9-104.9 7.7L288 36.9l-11.1-11.6C248.7-4.4 202.8-9.2 172 17.5c-35.3 30.6-37.2 85.6-5.6 118.8l108.9 114.2zm290 77.6c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z" ], + "hand-holding-usd": [ 544, 512, [], "f4c0", "M257.6 144.3l50 14.3c3.6 1 6.1 4.4 6.1 8.1 0 4.6-3.8 8.4-8.4 8.4h-32.8c-3.6 0-7.1-.8-10.3-2.2-4.8-2.2-10.4-1.7-14.1 2l-17.5 17.5c-5.3 5.3-4.7 14.3 1.5 18.4 9.5 6.3 20.3 10.1 31.8 11.5V240c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16v-17.6c30.3-3.6 53.3-31 49.3-63-2.9-23-20.7-41.3-42.9-47.7l-50-14.3c-3.6-1-6.1-4.4-6.1-8.1 0-4.6 3.8-8.4 8.4-8.4h32.8c3.6 0 7.1.8 10.3 2.2 4.8 2.2 10.4 1.7 14.1-2l17.5-17.5c5.3-5.3 4.7-14.3-1.5-18.4-9.5-6.3-20.3-10.1-31.8-11.5V16c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16v17.6c-30.3 3.6-53.3 31-49.3 63 2.9 23 20.7 41.3 42.9 47.7zm276.3 183.8c-11.2-10.7-28.5-10-40.3 0L406.4 402c-10.7 9.1-24 14-37.8 14H256.9c-8.3 0-15.1-7.2-15.1-16s6.8-16 15.1-16h73.9c15.1 0 29-10.9 31.4-26.6 3.1-20-11.5-37.4-29.8-37.4H181.3c-25.5 0-50.2 9.3-69.9 26.3L67.5 384H15.1C6.8 384 0 391.2 0 400v96c0 8.8 6.8 16 15.1 16H352c13.7 0 27-4.9 37.8-14l142.8-121c14.4-12.1 15.5-35.3 1.3-48.9z" ], + "hand-lizard": [ 576, 512, [], "f258", "M384 480h192V363.778a95.998 95.998 0 0 0-14.833-51.263L398.127 54.368A48 48 0 0 0 357.544 32H24C10.745 32 0 42.745 0 56v16c0 30.928 25.072 56 56 56h229.981c12.844 0 21.556 13.067 16.615 24.923l-21.41 51.385A32 32 0 0 1 251.648 224H128c-35.346 0-64 28.654-64 64v8c0 13.255 10.745 24 24 24h147.406a47.995 47.995 0 0 1 25.692 7.455l111.748 70.811A24.001 24.001 0 0 1 384 418.539V480z" ], + "hand-paper": [ 448, 512, [], "f256", "M408.781 128.007C386.356 127.578 368 146.36 368 168.79V256h-8V79.79c0-22.43-18.356-41.212-40.781-40.783C297.488 39.423 280 57.169 280 79v177h-8V40.79C272 18.36 253.644-.422 231.219.007 209.488.423 192 18.169 192 40v216h-8V80.79c0-22.43-18.356-41.212-40.781-40.783C121.488 40.423 104 58.169 104 80v235.992l-31.648-43.519c-12.993-17.866-38.009-21.817-55.877-8.823-17.865 12.994-21.815 38.01-8.822 55.877l125.601 172.705A48 48 0 0 0 172.073 512h197.59c22.274 0 41.622-15.324 46.724-37.006l26.508-112.66a192.011 192.011 0 0 0 5.104-43.975V168c.001-21.831-17.487-39.577-39.218-39.993z" ], + "hand-peace": [ 448, 512, [], "f25b", "M408 216c-22.092 0-40 17.909-40 40h-8v-32c0-22.091-17.908-40-40-40s-40 17.909-40 40v32h-8V48c0-26.51-21.49-48-48-48s-48 21.49-48 48v208h-13.572L92.688 78.449C82.994 53.774 55.134 41.63 30.461 51.324 5.787 61.017-6.356 88.877 3.337 113.551l74.765 190.342-31.09 24.872c-15.381 12.306-19.515 33.978-9.741 51.081l64 112A39.998 39.998 0 0 0 136 512h240c18.562 0 34.686-12.77 38.937-30.838l32-136A39.97 39.97 0 0 0 448 336v-80c0-22.091-17.908-40-40-40z" ], + "hand-point-down": [ 384, 512, [], "f0a7", "M91.826 467.2V317.966c-8.248 5.841-16.558 10.57-24.918 14.153C35.098 345.752-.014 322.222 0 288c.008-18.616 10.897-32.203 29.092-40 28.286-12.122 64.329-78.648 77.323-107.534 7.956-17.857 25.479-28.453 43.845-28.464l.001-.002h171.526c11.812 0 21.897 8.596 23.703 20.269 7.25 46.837 38.483 61.76 38.315 123.731-.007 2.724.195 13.254.195 16 0 50.654-22.122 81.574-71.263 72.6-9.297 18.597-39.486 30.738-62.315 16.45-21.177 24.645-53.896 22.639-70.944 6.299V467.2c0 24.15-20.201 44.8-43.826 44.8-23.283 0-43.826-21.35-43.826-44.8zM112 72V24c0-13.255 10.745-24 24-24h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24zm212-24c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z" ], + "hand-point-left": [ 512, 512, [], "f0a5", "M44.8 155.826h149.234c-5.841-8.248-10.57-16.558-14.153-24.918C166.248 99.098 189.778 63.986 224 64c18.616.008 32.203 10.897 40 29.092 12.122 28.286 78.648 64.329 107.534 77.323 17.857 7.956 28.453 25.479 28.464 43.845l.002.001v171.526c0 11.812-8.596 21.897-20.269 23.703-46.837 7.25-61.76 38.483-123.731 38.315-2.724-.007-13.254.195-16 .195-50.654 0-81.574-22.122-72.6-71.263-18.597-9.297-30.738-39.486-16.45-62.315-24.645-21.177-22.639-53.896-6.299-70.944H44.8c-24.15 0-44.8-20.201-44.8-43.826 0-23.283 21.35-43.826 44.8-43.826zM440 176h48c13.255 0 24 10.745 24 24v192c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24zm24 212c11.046 0 20-8.954 20-20s-8.954-20-20-20-20 8.954-20 20 8.954 20 20 20z" ], + "hand-point-right": [ 512, 512, [], "f0a4", "M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z" ], + "hand-point-up": [ 384, 512, [], "f0a6", "M135.652 0c23.625 0 43.826 20.65 43.826 44.8v99.851c17.048-16.34 49.766-18.346 70.944 6.299 22.829-14.288 53.017-2.147 62.315 16.45C361.878 158.426 384 189.346 384 240c0 2.746-.203 13.276-.195 16 .168 61.971-31.065 76.894-38.315 123.731C343.683 391.404 333.599 400 321.786 400H150.261l-.001-.002c-18.366-.011-35.889-10.607-43.845-28.464C93.421 342.648 57.377 276.122 29.092 264 10.897 256.203.008 242.616 0 224c-.014-34.222 35.098-57.752 66.908-44.119 8.359 3.583 16.67 8.312 24.918 14.153V44.8c0-23.45 20.543-44.8 43.826-44.8zM136 416h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24v-48c0-13.255 10.745-24 24-24zm168 28c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z" ], + "hand-pointer": [ 448, 512, [], "f25a", "M448 240v96c0 3.084-.356 6.159-1.063 9.162l-32 136C410.686 499.23 394.562 512 376 512H168a40.004 40.004 0 0 1-32.35-16.473l-127.997-176c-12.993-17.866-9.043-42.883 8.822-55.876 17.867-12.994 42.884-9.043 55.877 8.823L104 315.992V40c0-22.091 17.908-40 40-40s40 17.909 40 40v200h8v-40c0-22.091 17.908-40 40-40s40 17.909 40 40v40h8v-24c0-22.091 17.908-40 40-40s40 17.909 40 40v24h8c0-22.091 17.908-40 40-40s40 17.909 40 40zm-256 80h-8v96h8v-96zm88 0h-8v96h8v-96zm88 0h-8v96h8v-96z" ], + "hand-rock": [ 512, 512, [], "f255", "M512 128.79c0-26.322-20.861-48.344-47.18-48.783C437.935 79.558 416 101.217 416 128h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C333.935 47.558 312 69.217 312 96v32h-8V80.79c0-26.322-20.861-48.344-47.18-48.783C229.935 31.558 208 53.217 208 80v48h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C125.935 47.558 104 69.217 104 96v136l-8-7.111V176.79c0-26.322-20.861-48.344-47.18-48.783C21.935 127.558 0 149.217 0 176v66.445a95.998 95.998 0 0 0 32.221 71.751l111.668 99.261A47.999 47.999 0 0 1 160 449.333V456c0 13.255 10.745 24 24 24h240c13.255 0 24-10.745 24-24v-2.921a96.01 96.01 0 0 1 7.523-37.254l48.954-116.265A96.002 96.002 0 0 0 512 262.306V128.79z" ], + "hand-scissors": [ 512, 512, [], "f257", "M216 440c0-22.092 17.909-40 40-40v-8h-32c-22.091 0-40-17.908-40-40s17.909-40 40-40h32v-8H48c-26.51 0-48-21.49-48-48s21.49-48 48-48h208v-13.572l-177.551-69.74c-24.674-9.694-36.818-37.555-27.125-62.228 9.693-24.674 37.554-36.817 62.228-27.124l190.342 74.765 24.872-31.09c12.306-15.381 33.978-19.515 51.081-9.741l112 64A40.002 40.002 0 0 1 512 168v240c0 18.562-12.77 34.686-30.838 38.937l-136 32A39.982 39.982 0 0 1 336 480h-80c-22.091 0-40-17.908-40-40z" ], + "hand-spock": [ 512, 512, [], "f259", "M10.872 316.585c15.139-16.086 40.454-16.854 56.543-1.713L128 371.893v-79.405L88.995 120.865c-4.896-21.542 8.598-42.974 30.14-47.87 21.549-4.894 42.975 8.599 47.87 30.141L201.747 256h9.833L164.016 48.966c-4.946-21.531 8.498-42.994 30.028-47.94 21.532-4.95 42.994 8.498 47.94 30.028L293.664 256h15.105l48.425-193.702c5.357-21.432 27.075-34.462 48.507-29.104 21.432 5.358 34.463 27.075 29.104 48.507L391.231 256h11.08l30.768-129.265c5.117-21.491 26.685-34.768 48.177-29.647 21.491 5.117 34.765 26.686 29.647 48.177l-36.292 152.467A96.024 96.024 0 0 0 472 319.967v42.102a96.002 96.002 0 0 1-3.96 27.287l-26.174 88.287C435.825 498.022 417.101 512 395.846 512H179.172a48.002 48.002 0 0 1-32.898-13.046L12.585 373.128c-16.087-15.141-16.853-40.456-1.713-56.543z" ], + hands: [ 640, 512, [], "f4c2", "M204.8 230.4c-10.6-14.1-30.7-17-44.8-6.4-14.1 10.6-17 30.7-6.4 44.8l38.1 50.8c4.8 6.4 4.1 15.3-1.5 20.9l-12.8 12.8c-6.7 6.7-17.6 6.2-23.6-1.1L64 244.4V96c0-17.7-14.3-32-32-32S0 78.3 0 96v218.4c0 10.9 3.7 21.5 10.5 30l104.1 134.3c5 6.5 8.4 13.9 10.4 21.7 1.8 6.9 8.1 11.6 15.3 11.6H272c8.8 0 16-7.2 16-16V384c0-27.7-9-54.6-25.6-76.8l-57.6-76.8zM608 64c-17.7 0-32 14.3-32 32v148.4l-89.8 107.8c-6 7.2-17 7.7-23.6 1.1l-12.8-12.8c-5.6-5.6-6.3-14.5-1.5-20.9l38.1-50.8c10.6-14.1 7.7-34.2-6.4-44.8-14.1-10.6-34.2-7.7-44.8 6.4l-57.6 76.8C361 329.4 352 356.3 352 384v112c0 8.8 7.2 16 16 16h131.7c7.1 0 13.5-4.7 15.3-11.6 2-7.8 5.4-15.2 10.4-21.7l104.1-134.3c6.8-8.5 10.5-19.1 10.5-30V96c0-17.7-14.3-32-32-32z" ], + "hands-helping": [ 640, 512, [], "f4c4", "M488 192H336v56c0 39.7-32.3 72-72 72s-72-32.3-72-72V126.4l-64.9 39C107.8 176.9 96 197.8 96 220.2v47.3l-80 46.2C.7 322.5-4.6 342.1 4.3 357.4l80 138.6c8.8 15.3 28.4 20.5 43.7 11.7L231.4 448H368c35.3 0 64-28.7 64-64h16c17.7 0 32-14.3 32-32v-64h8c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zm147.7-37.4L555.7 16C546.9.7 527.3-4.5 512 4.3L408.6 64H306.4c-12 0-23.7 3.4-33.9 9.7L239 94.6c-9.4 5.8-15 16.1-15 27.1V248c0 22.1 17.9 40 40 40s40-17.9 40-40v-88h184c30.9 0 56 25.1 56 56v28.5l80-46.2c15.3-8.9 20.5-28.4 11.7-43.7z" ], + handshake: [ 640, 512, [], "f2b5", "M434.7 64h-85.9c-8 0-15.7 3-21.6 8.4l-98.3 90c-.1.1-.2.3-.3.4-16.6 15.6-16.3 40.5-2.1 56 12.7 13.9 39.4 17.6 56.1 2.7.1-.1.3-.1.4-.2l79.9-73.2c6.5-5.9 16.7-5.5 22.6 1 6 6.5 5.5 16.6-1 22.6l-26.1 23.9L504 313.8c2.9 2.4 5.5 5 7.9 7.7V128l-54.6-54.6c-5.9-6-14.1-9.4-22.6-9.4zM544 128.2v223.9c0 17.7 14.3 32 32 32h64V128.2h-96zm48 223.9c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM0 384h64c17.7 0 32-14.3 32-32V128.2H0V384zm48-63.9c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16c0-8.9 7.2-16 16-16zm435.9 18.6L334.6 217.5l-30 27.5c-29.7 27.1-75.2 24.5-101.7-4.4-26.9-29.4-24.8-74.9 4.4-101.7L289.1 64h-83.8c-8.5 0-16.6 3.4-22.6 9.4L128 128v223.9h18.3l90.5 81.9c27.4 22.3 67.7 18.1 90-9.3l.2-.2 17.9 15.5c15.9 13 39.4 10.5 52.3-5.4l31.4-38.6 5.4 4.4c13.7 11.1 33.9 9.1 45-4.7l9.5-11.7c11.2-13.8 9.1-33.9-4.6-45.1z" ], + hashtag: [ 448, 512, [], "f292", "M440.667 182.109l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l14.623-81.891C377.123 38.754 371.468 32 363.997 32h-40.632a12 12 0 0 0-11.813 9.891L296.175 128H197.54l14.623-81.891C213.477 38.754 207.822 32 200.35 32h-40.632a12 12 0 0 0-11.813 9.891L132.528 128H53.432a12 12 0 0 0-11.813 9.891l-7.143 40C33.163 185.246 38.818 192 46.289 192h74.81L98.242 320H19.146a12 12 0 0 0-11.813 9.891l-7.143 40C-1.123 377.246 4.532 384 12.003 384h74.81L72.19 465.891C70.877 473.246 76.532 480 84.003 480h40.632a12 12 0 0 0 11.813-9.891L151.826 384h98.634l-14.623 81.891C234.523 473.246 240.178 480 247.65 480h40.632a12 12 0 0 0 11.813-9.891L315.472 384h79.096a12 12 0 0 0 11.813-9.891l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l22.857-128h79.096a12 12 0 0 0 11.813-9.891zM261.889 320h-98.634l22.857-128h98.634l-22.857 128z" ], + hdd: [ 576, 512, [], "f0a0", "M576 304v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48zm-48-80a79.557 79.557 0 0 1 30.777 6.165L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L17.223 230.165A79.557 79.557 0 0 1 48 224h480zm-48 96c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm-96 0c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z" ], + heading: [ 512, 512, [], "f1dc", "M496 80V48c0-8.837-7.163-16-16-16H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.621v128H154.379V96H192c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.275v320H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.621V288H357.62v128H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.275V96H480c8.837 0 16-7.163 16-16z" ], + headphones: [ 512, 512, [], "f025", "M256 32C114.52 32 0 146.496 0 288v48a32 32 0 0 0 17.689 28.622l14.383 7.191C34.083 431.903 83.421 480 144 480h24c13.255 0 24-10.745 24-24V280c0-13.255-10.745-24-24-24h-24c-31.342 0-59.671 12.879-80 33.627V288c0-105.869 86.131-192 192-192s192 86.131 192 192v1.627C427.671 268.879 399.342 256 368 256h-24c-13.255 0-24 10.745-24 24v176c0 13.255 10.745 24 24 24h24c60.579 0 109.917-48.098 111.928-108.187l14.382-7.191A32 32 0 0 0 512 336v-48c0-141.479-114.496-256-256-256z" ], + "headphones-alt": [ 512, 512, [], "f58f", "M160 288h-16c-35.35 0-64 28.7-64 64.12v63.76c0 35.41 28.65 64.12 64 64.12h16c17.67 0 32-14.36 32-32.06V320.06c0-17.71-14.33-32.06-32-32.06zm208 0h-16c-17.67 0-32 14.35-32 32.06v127.88c0 17.7 14.33 32.06 32 32.06h16c35.35 0 64-28.71 64-64.12v-63.76c0-35.41-28.65-64.12-64-64.12zM256 32C112.91 32 4.57 151.13 0 288v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288c0-114.67 93.33-207.8 208-207.82 114.67.02 208 93.15 208 207.82v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288C507.43 151.13 399.09 32 256 32z" ], + headset: [ 512, 512, [], "f590", "M192 208c0-17.67-14.33-32-32-32h-16c-35.35 0-64 28.65-64 64v48c0 35.35 28.65 64 64 64h16c17.67 0 32-14.33 32-32V208zm176 144c35.35 0 64-28.65 64-64v-48c0-35.35-28.65-64-64-64h-16c-17.67 0-32 14.33-32 32v112c0 17.67 14.33 32 32 32h16zM256 0C113.18 0 4.58 118.83 0 256v16c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-16c0-114.69 93.31-208 208-208s208 93.31 208 208h-.12c.08 2.43.12 165.72.12 165.72 0 23.35-18.93 42.28-42.28 42.28H320c0-26.51-21.49-48-48-48h-32c-26.51 0-48 21.49-48 48s21.49 48 48 48h181.72c49.86 0 90.28-40.42 90.28-90.28V256C507.42 118.83 398.82 0 256 0z" ], + heart: [ 512, 512, [], "f004", "M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z" ], + heartbeat: [ 512, 512, [], "f21e", "M320.2 243.8l-49.7 99.4c-6 12.1-23.4 11.7-28.9-.6l-56.9-126.3-30 71.7H60.6l182.5 186.5c7.1 7.3 18.6 7.3 25.7 0L451.4 288H342.3l-22.1-44.2zM473.7 73.9l-2.4-2.5c-51.5-52.6-135.8-52.6-187.4 0L256 100l-27.9-28.5c-51.5-52.7-135.9-52.7-187.4 0l-2.4 2.4C-10.4 123.7-12.5 203 31 256h102.4l35.9-86.2c5.4-12.9 23.6-13.2 29.4-.4l58.2 129.3 49-97.9c5.9-11.8 22.7-11.8 28.6 0l27.6 55.2H481c43.5-53 41.4-132.3-7.3-182.1z" ], + helicopter: [ 640, 512, [], "f533", "M304 384h272c17.67 0 32-14.33 32-32 0-123.71-100.29-224-224-224V64h176c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H144c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h176v64H112L68.8 70.4C65.78 66.37 61.03 64 56 64H16.01C5.6 64-2.04 73.78.49 83.88L32 192l160 64 86.4 115.2A31.992 31.992 0 0 0 304 384zm112-188.49C478.55 208.3 528.03 257.44 540.79 320H416V195.51zm219.37 263.3l-22.15-22.2c-6.25-6.26-16.24-6.1-22.64.01-7.09 6.77-13.84 11.25-24.64 11.25H240c-8.84 0-16 7.18-16 16.03v32.06c0 8.85 7.16 16.03 16 16.03h325.94c14.88 0 35.3-.47 68.45-29.52 7.02-6.14 7.57-17.05.98-23.66z" ], + highlighter: [ 544, 512, [], "f591", "M0 479.98L99.92 512l35.45-35.45-67.04-67.04L0 479.98zm124.61-240.01a36.592 36.592 0 0 0-10.79 38.1l13.05 42.83-50.93 50.94 96.23 96.23 50.86-50.86 42.74 13.08c13.73 4.2 28.65-.01 38.15-10.78l35.55-41.64-173.34-173.34-41.52 35.44zm403.31-160.7l-63.2-63.2c-20.49-20.49-53.38-21.52-75.12-2.35L190.55 183.68l169.77 169.78L530.27 154.4c19.18-21.74 18.15-54.63-2.35-75.13z" ], + history: [ 512, 512, [], "f1da", "M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z" ], + "hockey-puck": [ 512, 512, [], "f453", "M0 160c0-53 114.6-96 256-96s256 43 256 96-114.6 96-256 96S0 213 0 160zm0 82.2V352c0 53 114.6 96 256 96s256-43 256-96V242.2c-113.4 82.3-398.5 82.4-512 0z" ], + home: [ 576, 512, [], "f015", "M488 312.7V456c0 13.3-10.7 24-24 24H348c-6.6 0-12-5.4-12-12V356c0-6.6-5.4-12-12-12h-72c-6.6 0-12 5.4-12 12v112c0 6.6-5.4 12-12 12H112c-13.3 0-24-10.7-24-24V312.7c0-3.6 1.6-7 4.4-9.3l188-154.8c4.4-3.6 10.8-3.6 15.3 0l188 154.8c2.7 2.3 4.3 5.7 4.3 9.3zm83.6-60.9L488 182.9V44.4c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12V117l-89.5-73.7c-17.7-14.6-43.3-14.6-61 0L4.4 251.8c-5.1 4.2-5.8 11.8-1.6 16.9l25.5 31c4.2 5.1 11.8 5.8 16.9 1.6l235.2-193.7c4.4-3.6 10.8-3.6 15.3 0l235.2 193.7c5.1 4.2 12.7 3.5 16.9-1.6l25.5-31c4.2-5.2 3.4-12.7-1.7-16.9z" ], + hospital: [ 448, 512, [], "f0f8", "M448 492v20H0v-20c0-6.627 5.373-12 12-12h20V120c0-13.255 10.745-24 24-24h88V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v72h88c13.255 0 24 10.745 24 24v360h20c6.627 0 12 5.373 12 12zM308 192h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-168 64h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm104 128h-40c-6.627 0-12 5.373-12 12v84h64v-84c0-6.627-5.373-12-12-12zm64-96h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-116 12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zM182 96h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6z" ], + "hospital-alt": [ 576, 512, [], "f47d", "M544 96H416V32c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32v368c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16V128c0-17.7-14.3-32-32-32zM160 436c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm160 128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm16-170c0 3.3-2.7 6-6 6h-26v26c0 3.3-2.7 6-6 6h-20c-3.3 0-6-2.7-6-6v-26h-26c-3.3 0-6-2.7-6-6v-20c0-3.3 2.7-6 6-6h26V86c0-3.3 2.7-6 6-6h20c3.3 0 6 2.7 6 6v26h26c3.3 0 6 2.7 6 6v20zm144 298c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z" ], + "hospital-symbol": [ 512, 512, [], "f47e", "M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm112 376c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-88h-96v88c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V136c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v88h96v-88c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v240z" ], + "hot-tub": [ 512, 512, [], "f593", "M414.21 177.65c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C378.96 6.14 372.22 0 364.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zm-108 0c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C270.96 6.14 264.22 0 256.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zM480 256H256l-110.93-83.2a63.99 63.99 0 0 0-38.4-12.8H64c-35.35 0-64 28.65-64 64v224c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64V288c0-17.67-14.33-32-32-32zM128 440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zM64 128c35.35 0 64-28.65 64-64S99.35 0 64 0 0 28.65 0 64s28.65 64 64 64z" ], + hotel: [ 576, 512, [], "f594", "M560 64c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h15.98v384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h240v-80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v80h240c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-16V64h16zm-304 44.8c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm0 96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm-128-96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zM179.2 256h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8zM192 384c0-53.02 42.98-96 96-96s96 42.98 96 96H192zm256-140.8c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-96c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4z" ], + hourglass: [ 384, 512, [], "f254", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64z" ], + "hourglass-end": [ 384, 512, [], "f253", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64zM192 208c-57.787 0-104-66.518-104-144h208c0 77.945-46.51 144-104 144z" ], + "hourglass-half": [ 384, 512, [], "f252", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-75.078 384H99.08c17.059-46.797 52.096-80 92.92-80 40.821 0 75.862 33.196 92.922 80zm.019-256H99.078C91.988 108.548 88 86.748 88 64h208c0 22.805-3.987 44.587-11.059 64z" ], + "hourglass-start": [ 384, 512, [], "f251", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-64 448H88c0-77.458 46.204-144 104-144 57.786 0 104 66.517 104 144z" ], + "i-cursor": [ 256, 512, [], "f246", "M256 52.048V12.065C256 5.496 250.726.148 244.158.066 211.621-.344 166.469.011 128 37.959 90.266.736 46.979-.114 11.913.114 5.318.157 0 5.519 0 12.114v39.645c0 6.687 5.458 12.078 12.145 11.998C38.111 63.447 96 67.243 96 112.182V224H60c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h36v112c0 44.932-56.075 48.031-83.95 47.959C5.404 447.942 0 453.306 0 459.952v39.983c0 6.569 5.274 11.917 11.842 11.999 32.537.409 77.689.054 116.158-37.894 37.734 37.223 81.021 38.073 116.087 37.845 6.595-.043 11.913-5.405 11.913-12V460.24c0-6.687-5.458-12.078-12.145-11.998C217.889 448.553 160 444.939 160 400V288h36c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-36V112.182c0-44.932 56.075-48.213 83.95-48.142 6.646.018 12.05-5.346 12.05-11.992z" ], + "id-badge": [ 384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM144 32h96c8.8 0 16 7.2 16 16s-7.2 16-16 16h-96c-8.8 0-16-7.2-16-16s7.2-16 16-16zm48 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 416 80 407.4 80 396.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z" ], + "id-card": [ 576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v16h576V80c0-26.5-21.5-48-48-48zM0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V128H0v304zm352-232c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zM176 192c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zM67.1 396.2C75.5 370.5 99.6 352 128 352h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.9-5.2 19.8-15.6 19.8H82.7c-10.4 0-18.8-10-15.6-19.8z" ], + "id-card-alt": [ 576, 512, [], "f47f", "M528 64H384v96H192V64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM288 224c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm93.3 224H194.7c-10.4 0-18.8-10-15.6-19.8 8.3-25.6 32.4-44.2 60.9-44.2h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.8-5.2 19.8-15.6 19.8zM352 32c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v96h128V32z" ], + image: [ 512, 512, [], "f03e", "M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z" ], + images: [ 576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v208c0 44.112 35.888 80 80 80h336zm96-80V80c0-26.51-21.49-48-48-48H144c-26.51 0-48 21.49-48 48v256c0 26.51 21.49 48 48 48h384c26.51 0 48-21.49 48-48zM256 128c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-96 144l55.515-55.515c4.686-4.686 12.284-4.686 16.971 0L272 256l135.515-135.515c4.686-4.686 12.284-4.686 16.971 0L512 208v112H160v-48z" ], + inbox: [ 576, 512, [], "f01c", "M567.938 243.908L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L8.062 243.908A47.994 47.994 0 0 0 0 270.533V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V270.533a47.994 47.994 0 0 0-8.062-26.625zM162.252 128h251.497l85.333 128H376l-32 64H232l-32-64H76.918l85.334-128z" ], + indent: [ 448, 512, [], "f03c", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm176 144h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm-52.687-111.313l-96-95.984C17.266 138.652 0 145.776 0 160.016v191.975c0 14.329 17.325 21.304 27.313 11.313l96-95.992c6.249-6.247 6.249-16.377 0-22.625z" ], + industry: [ 512, 512, [], "f275", "M475.115 163.781L336 252.309v-68.28c0-18.916-20.931-30.399-36.885-20.248L160 252.309V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h464c13.255 0 24-10.745 24-24V184.029c0-18.917-20.931-30.399-36.885-20.248z" ], + infinity: [ 640, 512, [], "f534", "M471.1 96C405 96 353.3 137.3 320 174.6 286.7 137.3 235 96 168.9 96 75.8 96 0 167.8 0 256s75.8 160 168.9 160c66.1 0 117.8-41.3 151.1-78.6 33.3 37.3 85 78.6 151.1 78.6 93.1 0 168.9-71.8 168.9-160S564.2 96 471.1 96zM168.9 320c-40.2 0-72.9-28.7-72.9-64s32.7-64 72.9-64c38.2 0 73.4 36.1 94 64-20.4 27.6-55.9 64-94 64zm302.2 0c-38.2 0-73.4-36.1-94-64 20.4-27.6 55.9-64 94-64 40.2 0 72.9 28.7 72.9 64s-32.7 64-72.9 64z" ], + info: [ 192, 512, [], "f129", "M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z" ], + "info-circle": [ 512, 512, [], "f05a", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z" ], + italic: [ 320, 512, [], "f033", "M204.758 416h-33.849l62.092-320h40.725a16 16 0 0 0 15.704-12.937l6.242-32C297.599 41.184 290.034 32 279.968 32H120.235a16 16 0 0 0-15.704 12.937l-6.242 32C96.362 86.816 103.927 96 113.993 96h33.846l-62.09 320H46.278a16 16 0 0 0-15.704 12.935l-6.245 32C22.402 470.815 29.967 480 40.034 480h158.479a16 16 0 0 0 15.704-12.935l6.245-32c1.927-9.88-5.638-19.065-15.704-19.065z" ], + joint: [ 640, 512, [], "f595", "M444.34 181.1c22.38 15.68 35.66 41.16 35.66 68.59V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-43.24-21.01-83.41-56.34-108.06C463.85 125.02 448 99.34 448 70.31V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v66.4c0 43.69 24.56 81.63 60.34 106.7zM194.97 358.98C126.03 370.07 59.69 394.69 0 432c83.65 52.28 180.3 80 278.94 80h88.57L254.79 380.49c-14.74-17.2-37.45-25.11-59.82-21.51zM553.28 87.09c-5.67-3.8-9.28-9.96-9.28-16.78V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v62.31c0 22.02 10.17 43.41 28.64 55.39C550.79 153.04 576 199.54 576 249.69V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-65.44-32.41-126.19-86.72-162.6zM360.89 352.05c-34.4.06-86.81.15-88.21.17l117.8 137.43A63.987 63.987 0 0 0 439.07 512h88.45L409.57 374.4a63.955 63.955 0 0 0-48.68-22.35zM616 352H432l117.99 137.65A63.987 63.987 0 0 0 598.58 512H616c13.25 0 24-10.75 24-24V376c0-13.26-10.75-24-24-24z" ], + key: [ 512, 512, [], "f084", "M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z" ], + keyboard: [ 576, 512, [], "f11c", "M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z" ], + kiss: [ 496, 512, [], "f596", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm136 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm24-156c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + "kiss-beam": [ 496, 512, [], "f597", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-39 219.9l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5zM304 396c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm65-168.1l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5z" ], + "kiss-wink-heart": [ 504, 512, [], "f598", "M501.1 402.5c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zm-177.6-4c-5.6-20.3-2.3-42 9-59.7 29.7-46.3 98.7-45.5 127.8 4.3 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-.3-.7-23.9-84.6-23.9-84.6zM168 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm120 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-5.7-12.3 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.8-3.7-4.6-16.6 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C274.6 368.7 288 383 288 396zm16-179c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S400 181 404 206.2c1.7 11.1-11.3 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 217z" ], + "kiwi-bird": [ 576, 512, [], "f535", "M575.81 217.98C572.64 157.41 518.28 112 457.63 112h-9.37c-52.82 0-104.25-16.25-147.74-46.24-41.99-28.96-96.04-41.62-153.21-28.7C129.3 41.12-.08 78.24 0 224c.04 70.95 38.68 132.8 95.99 166.01V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-54.26c15.36 3.96 31.4 6.26 48 6.26 5.44 0 10.68-.73 16-1.18V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-59.43c14.24-5.06 27.88-11.39 40.34-19.51C342.07 355.25 393.86 336 448.46 336c25.48 0 16.01-.31 23.05-.78l74.41 136.44c2.86 5.23 8.3 8.34 14.05 8.34 1.31 0 2.64-.16 3.95-.5 7.09-1.8 12.05-8.19 12.05-15.5 0 0 .14-240.24-.16-246.02zM463.97 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm80 153.25l-39.86-73.08c15.12-5.83 28.73-14.6 39.86-25.98v99.06z" ], + language: [ 640, 512, [], "f1ab", "M304 416H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h280v320zm-120.676-72.622A12 12 0 0 0 194.839 352h22.863c8.22 0 14.007-8.078 11.362-15.861L171.61 167.085a12 12 0 0 0-11.362-8.139h-32.489a12.001 12.001 0 0 0-11.362 8.139L58.942 336.139C56.297 343.922 62.084 352 70.304 352h22.805a12 12 0 0 0 11.535-8.693l9.118-31.807h60.211l9.351 31.878zm-39.051-140.42s4.32 21.061 7.83 33.21l10.8 37.531h-38.07l11.07-37.531c3.51-12.15 7.83-33.21 7.83-33.21h.54zM616 416H336V96h280c13.255 0 24 10.745 24 24v272c0 13.255-10.745 24-24 24zm-36-228h-64v-16c0-6.627-5.373-12-12-12h-16c-6.627 0-12 5.373-12 12v16h-64c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h114.106c-6.263 14.299-16.518 28.972-30.023 43.206-6.56-6.898-12.397-13.91-17.365-20.933-3.639-5.144-10.585-6.675-15.995-3.446l-7.28 4.346-6.498 3.879c-5.956 3.556-7.693 11.421-3.735 17.117 6.065 8.729 13.098 17.336 20.984 25.726-8.122 6.226-16.841 12.244-26.103 17.964-5.521 3.41-7.381 10.556-4.162 16.19l7.941 13.896c3.362 5.883 10.935 7.826 16.706 4.276 12.732-7.831 24.571-16.175 35.443-24.891 10.917 8.761 22.766 17.102 35.396 24.881 5.774 3.556 13.353 1.618 16.717-4.27l7.944-13.903c3.213-5.623 1.37-12.76-4.135-16.171a312.737 312.737 0 0 1-26.06-18.019c21.024-22.425 35.768-46.289 42.713-69.85H580c6.627 0 12-5.373 12-12v-16c0-6.625-5.373-11.998-12-11.998z" ], + laptop: [ 640, 512, [], "f109", "M512 64v256H128V64h384m16-64H112C85.5 0 64 21.5 64 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm100 416H389.5c-3 0-5.5 2.1-5.9 5.1C381.2 436.3 368 448 352 448h-64c-16 0-29.2-11.7-31.6-26.9-.5-2.9-3-5.1-5.9-5.1H12c-6.6 0-12 5.4-12 12v36c0 26.5 21.5 48 48 48h544c26.5 0 48-21.5 48-48v-36c0-6.6-5.4-12-12-12z" ], + laugh: [ 496, 512, [], "f599", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 152c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm88 272h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18-8.9 71-69.5 126-142.9 126z" ], + "laugh-beam": [ 496, 512, [], "f59a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm24 199.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.8 4.1-15.1-4.5zm-160 0c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z" ], + "laugh-squint": [ 496, 512, [], "f59b", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 161.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 180l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z" ], + "laugh-wink": [ 496, 512, [], "f59c", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm20.1 198.1c4-25.2 34.2-42.1 59.9-42.1s55.9 16.9 59.9 42.1c1.7 11.1-11.4 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 217c-8.4 7.4-21.6.3-19.9-10.9zM168 160c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm230.9 146C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z" ], + leaf: [ 576, 512, [], "f06c", "M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z" ], + lemon: [ 512, 512, [], "f094", "M489.038 22.963C465.944-.13 434.648-5.93 413.947 6.129c-58.906 34.312-181.25-53.077-321.073 86.746S40.441 355.041 6.129 413.945c-12.059 20.702-6.26 51.999 16.833 75.093 23.095 23.095 54.392 28.891 75.095 16.832 58.901-34.31 181.246 53.079 321.068-86.743S471.56 156.96 505.871 98.056c12.059-20.702 6.261-51.999-16.833-75.093zM243.881 95.522c-58.189 14.547-133.808 90.155-148.358 148.358-1.817 7.27-8.342 12.124-15.511 12.124-1.284 0-2.59-.156-3.893-.481-8.572-2.144-13.784-10.83-11.642-19.403C81.901 166.427 166.316 81.93 236.119 64.478c8.575-2.143 17.261 3.069 19.403 11.642s-3.069 17.259-11.641 19.402z" ], + "less-than": [ 384, 512, [], "f536", "M365.46 357.74L147.04 255.89l218.47-101.88c16.02-7.47 22.95-26.51 15.48-42.53l-13.52-29C360 66.46 340.96 59.53 324.94 67L18.48 209.91a32.014 32.014 0 0 0-18.48 29v34.24c0 12.44 7.21 23.75 18.48 29l306.31 142.83c16.06 7.49 35.15.54 42.64-15.52l13.56-29.08c7.49-16.06.54-35.15-15.53-42.64z" ], + "less-than-equal": [ 448, 512, [], "f537", "M54.98 214.2l301.41 119.87c18.39 6.03 38.71-2.54 45.38-19.15l12.09-30.08c6.68-16.61-2.82-34.97-21.21-41l-175.44-68.05 175.56-68.09c18.29-6 27.74-24.27 21.1-40.79l-12.03-29.92c-6.64-16.53-26.86-25.06-45.15-19.06L54.98 137.89C41.21 142.41 32 154.5 32 168.07v15.96c0 13.56 9.21 25.65 22.98 30.17zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z" ], + "level-down-alt": [ 320, 512, [], "f3be", "M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z" ], + "level-up-alt": [ 320, 512, [], "f3bf", "M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z" ], + "life-ring": [ 512, 512, [], "f1cd", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm173.696 119.559l-63.399 63.399c-10.987-18.559-26.67-34.252-45.255-45.255l63.399-63.399a218.396 218.396 0 0 1 45.255 45.255zM256 352c-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96-42.981 96-96 96zM127.559 82.304l63.399 63.399c-18.559 10.987-34.252 26.67-45.255 45.255l-63.399-63.399a218.372 218.372 0 0 1 45.255-45.255zM82.304 384.441l63.399-63.399c10.987 18.559 26.67 34.252 45.255 45.255l-63.399 63.399a218.396 218.396 0 0 1-45.255-45.255zm302.137 45.255l-63.399-63.399c18.559-10.987 34.252-26.67 45.255-45.255l63.399 63.399a218.403 218.403 0 0 1-45.255 45.255z" ], + lightbulb: [ 384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zm-143.107-44c-9.907 0-18.826-6.078-22.376-15.327C67.697 267.541 16 277.731 16 176 16 78.803 94.805 0 192 0s176 78.803 176 176c0 101.731-51.697 91.541-90.516 192.673-3.55 9.249-12.47 15.327-22.376 15.327H128.893zM112 176c0-44.112 35.888-80 80-80 8.837 0 16-7.164 16-16s-7.163-16-16-16c-61.757 0-112 50.243-112 112 0 8.836 7.164 16 16 16s16-7.164 16-16z" ], + link: [ 512, 512, [], "f0c1", "M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z" ], + "lira-sign": [ 384, 512, [], "f195", "M371.994 256h-48.019C317.64 256 312 260.912 312 267.246 312 368 230.179 416 144 416V256.781l134.603-29.912A12 12 0 0 0 288 215.155v-40.976c0-7.677-7.109-13.38-14.603-11.714L144 191.219V160.78l134.603-29.912A12 12 0 0 0 288 119.154V78.179c0-7.677-7.109-13.38-14.603-11.714L144 95.219V44c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v68.997L9.397 125.131A12 12 0 0 0 0 136.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 178.558v30.439L9.397 221.131A12 12 0 0 0 0 232.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 274.558V468c0 6.627 5.373 12 12 12h79.583c134.091 0 223.255-77.834 228.408-211.592.261-6.782-5.211-12.408-11.997-12.408z" ], + list: [ 512, 512, [], "f03a", "M128 116V76c0-8.837 7.163-16 16-16h352c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H144c-8.837 0-16-7.163-16-16zm16 176h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 144h64c8.837 0 16-7.163 16-16V64c0-8.837-7.163-16-16-16H16C7.163 48 0 55.163 0 64v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16z" ], + "list-alt": [ 512, 512, [], "f022", "M464 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM128 120c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288-136v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12z" ], + "list-ol": [ 512, 512, [], "f0cb", "M3.263 139.527c0-7.477 3.917-11.572 11.573-11.572h15.131V88.078c0-5.163.534-10.503.534-10.503h-.356s-1.779 2.67-2.848 3.738c-4.451 4.273-10.504 4.451-15.666-1.068l-5.518-6.231c-5.342-5.341-4.984-11.216.534-16.379l21.72-19.938C32.815 33.602 36.732 32 42.785 32H54.89c7.656 0 11.749 3.916 11.749 11.572v84.384h15.488c7.655 0 11.572 4.094 11.572 11.572v8.901c0 7.477-3.917 11.572-11.572 11.572H14.836c-7.656 0-11.573-4.095-11.573-11.572v-8.902zM2.211 304.591c0-47.278 50.955-56.383 50.955-69.165 0-7.18-5.954-8.755-9.28-8.755-3.153 0-6.479 1.051-9.455 3.852-5.079 4.903-10.507 7.004-16.111 2.451l-8.579-6.829c-5.779-4.553-7.18-9.805-2.803-15.409C13.592 201.981 26.025 192 47.387 192c19.437 0 44.476 10.506 44.476 39.573 0 38.347-46.753 46.402-48.679 56.909h39.049c7.529 0 11.557 4.027 11.557 11.382v8.755c0 7.354-4.028 11.382-11.557 11.382h-67.94c-7.005 0-12.083-4.028-12.083-11.382v-4.028zM5.654 454.61l5.603-9.28c3.853-6.654 9.105-7.004 15.584-3.152 4.903 2.101 9.63 3.152 14.359 3.152 10.155 0 14.358-3.502 14.358-8.23 0-6.654-5.604-9.106-15.934-9.106h-4.728c-5.954 0-9.28-2.101-12.258-7.88l-1.05-1.926c-2.451-4.728-1.226-9.806 2.801-14.884l5.604-7.004c6.829-8.405 12.257-13.483 12.257-13.483v-.35s-4.203 1.051-12.608 1.051H16.685c-7.53 0-11.383-4.028-11.383-11.382v-8.755c0-7.53 3.853-11.382 11.383-11.382h58.484c7.529 0 11.382 4.027 11.382 11.382v3.327c0 5.778-1.401 9.806-5.079 14.183l-17.509 20.137c19.611 5.078 28.716 20.487 28.716 34.845 0 21.363-14.358 44.126-48.503 44.126-16.636 0-28.192-4.728-35.896-9.455-5.779-4.202-6.304-9.805-2.626-15.934zM144 132h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" ], + "list-ul": [ 512, 512, [], "f0ca", "M96 96c0 26.51-21.49 48-48 48S0 122.51 0 96s21.49-48 48-48 48 21.49 48 48zM48 208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm0 160c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm96-236h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" ], + "location-arrow": [ 512, 512, [], "f124", "M443.683 4.529L27.818 196.418C-18.702 217.889-3.39 288 47.933 288H224v175.993c0 51.727 70.161 66.526 91.582 20.115L507.38 68.225c18.905-40.961-23.752-82.133-63.697-63.696z" ], + lock: [ 448, 512, [], "f023", "M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z" ], + "lock-open": [ 576, 512, [], "f3c1", "M423.5 0C339.5.3 272 69.5 272 153.5V224H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48h-48v-71.1c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v80c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-80C576 68 507.5-.3 423.5 0z" ], + "long-arrow-alt-down": [ 256, 512, [], "f309", "M168 345.941V44c0-6.627-5.373-12-12-12h-56c-6.627 0-12 5.373-12 12v301.941H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.569 9.373 33.941 0l86.059-86.059c15.119-15.119 4.411-40.971-16.971-40.971H168z" ], + "long-arrow-alt-left": [ 448, 512, [], "f30a", "M134.059 296H436c6.627 0 12-5.373 12-12v-56c0-6.627-5.373-12-12-12H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.569 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296z" ], + "long-arrow-alt-right": [ 448, 512, [], "f30b", "M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z" ], + "long-arrow-alt-up": [ 256, 512, [], "f30c", "M88 166.059V468c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12V166.059h46.059c21.382 0 32.09-25.851 16.971-40.971l-86.059-86.059c-9.373-9.373-24.569-9.373-33.941 0l-86.059 86.059c-15.119 15.119-4.411 40.971 16.971 40.971H88z" ], + "low-vision": [ 576, 512, [], "f2a8", "M569.344 231.631C512.96 135.949 407.81 72 288 72c-28.468 0-56.102 3.619-82.451 10.409L152.778 10.24c-7.601-10.858-22.564-13.5-33.423-5.9l-13.114 9.178c-10.86 7.601-13.502 22.566-5.9 33.426l43.131 58.395C89.449 131.73 40.228 174.683 6.682 231.581c-.01.017-.023.033-.034.05-8.765 14.875-8.964 33.528 0 48.739 38.5 65.332 99.742 115.862 172.859 141.349L55.316 244.302A272.194 272.194 0 0 1 83.61 208.39l119.4 170.58h.01l40.63 58.04a330.055 330.055 0 0 0 78.94 1.17l-189.98-271.4a277.628 277.628 0 0 1 38.777-21.563l251.836 356.544c7.601 10.858 22.564 13.499 33.423 5.9l13.114-9.178c10.86-7.601 13.502-22.567 5.9-33.426l-43.12-58.377-.007-.009c57.161-27.978 104.835-72.04 136.81-126.301a47.938 47.938 0 0 0 .001-48.739zM390.026 345.94l-19.066-27.23c24.682-32.567 27.711-76.353 8.8-111.68v.03c0 23.65-19.17 42.82-42.82 42.82-23.828 0-42.82-19.349-42.82-42.82 0-23.65 19.17-42.82 42.82-42.82h.03c-24.75-13.249-53.522-15.643-79.51-7.68l-19.068-27.237C253.758 123.306 270.488 120 288 120c75.162 0 136 60.826 136 136 0 34.504-12.833 65.975-33.974 89.94z" ], + "luggage-cart": [ 640, 512, [], "f59d", "M224 320h32V96h-32c-17.67 0-32 14.33-32 32v160c0 17.67 14.33 32 32 32zm352-32V128c0-17.67-14.33-32-32-32h-32v224h32c17.67 0 32-14.33 32-32zm48 96H128V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h48v368c0 8.84 7.16 16 16 16h82.94c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16h197.88c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM480 96V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v272h192V96zm-48 0h-96V48h96v48z" ], + magic: [ 512, 512, [], "f0d0", "M224 96l16-32 32-16-32-16-16-32-16 32-32 16 32 16 16 32zM80 160l26.66-53.33L160 80l-53.34-26.67L80 0 53.34 53.33 0 80l53.34 26.67L80 160zm352 128l-26.66 53.33L352 368l53.34 26.67L432 448l26.66-53.33L512 368l-53.34-26.67L432 288zm70.62-193.77L417.77 9.38C411.53 3.12 403.34 0 395.15 0c-8.19 0-16.38 3.12-22.63 9.38L9.38 372.52c-12.5 12.5-12.5 32.76 0 45.25l84.85 84.85c6.25 6.25 14.44 9.37 22.62 9.37 8.19 0 16.38-3.12 22.63-9.37l363.14-363.15c12.5-12.48 12.5-32.75 0-45.24zM359.45 203.46l-50.91-50.91 86.6-86.6 50.91 50.91-86.6 86.6z" ], + magnet: [ 512, 512, [], "f076", "M164.1 160H12c-6.6 0-12-5.4-12-12V68c0-19.9 16.1-36 36-36h104c19.9 0 36 16.1 36 36v80c.1 6.6-5.3 12-11.9 12zm348-12V67.9c0-19.9-16.1-36-36-36h-104c-19.9 0-36 16.1-36 36v80c0 6.6 5.4 12 12 12h152c6.6.1 12-5.3 12-11.9zm-164 44c-6.6 0-12 5.4-12 12v52c0 128.1-160 127.9-160 0v-52c0-6.6-5.4-12-12-12h-152c-6.7 0-12 5.4-12 12.1.1 21.4.6 40.3 0 53.3C.1 408 136.3 504 256.9 504 377.5 504 512 408 512 257.3c-.6-12.8-.2-33 0-53.2 0-6.7-5.3-12.1-12-12.1H348.1z" ], + male: [ 192, 512, [], "f183", "M96 0c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64S60.654 0 96 0m48 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H48c-26.51 0-48 21.49-48 48v136c0 13.255 10.745 24 24 24h16v136c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V352h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48z" ], + map: [ 576, 512, [], "f279", "M0 117.66v346.32c0 11.32 11.43 19.06 21.94 14.86L160 416V32L20.12 87.95A32.006 32.006 0 0 0 0 117.66zM192 416l192 64V96L192 32v384zM554.06 33.16L416 96v384l139.88-55.95A31.996 31.996 0 0 0 576 394.34V48.02c0-11.32-11.43-19.06-21.94-14.86z" ], + "map-marked": [ 576, 512, [], "f59f", "M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z" ], + "map-marked-alt": [ 576, 512, [], "f5a0", "M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zm0 168c-23.2 0-42-18.8-42-42s18.8-42 42-42 42 18.8 42 42-18.8 42-42 42zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z" ], + "map-marker": [ 384, 512, [], "f041", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0z" ], + "map-marker-alt": [ 384, 512, [], "f3c5", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z" ], + "map-pin": [ 320, 512, [], "f276", "M192 300.813v172.82l-22.015 33.023c-4.75 7.125-15.219 7.125-19.969 0L128 473.633v-172.82a162.221 162.221 0 0 0 64 0zM160 0c79.529 0 144 64.471 144 144s-64.471 144-144 144S16 223.529 16 144 80.471 0 160 0M80 136c0-39.701 32.299-72 72-72a8 8 0 0 0 0-16c-48.523 0-88 39.477-88 88a8 8 0 0 0 16 0z" ], + "map-signs": [ 512, 512, [], "f277", "M487.515 104.485L439.03 152.97a23.998 23.998 0 0 1-16.97 7.029H56c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h160v-8c0-13.255 10.745-24 24-24h32c13.255 0 24 10.745 24 24v8h126.059a24 24 0 0 1 16.97 7.029l48.485 48.485c4.687 4.687 4.687 12.285.001 16.971zM216 368v120c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V368h-80zm240-144H296v-48h-80v48H89.941a24 24 0 0 0-16.97 7.029l-48.485 48.485c-4.686 4.686-4.686 12.284 0 16.971l48.485 48.485a23.998 23.998 0 0 0 16.97 7.029H456c13.255 0 24-10.745 24-24v-80C480 234.745 469.255 224 456 224z" ], + marker: [ 512, 512, [], "f5a1", "M93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l75.4-75.4-128.02-128.02-75.4 75.4zM485.49 26.51c-35.35-35.35-92.67-35.35-128.02 0l-21.76 21.76-36.56-36.55c-15.62-15.62-40.95-15.62-56.56 0L138.47 115.84c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0l87.15-87.15 19.59 19.59L191.98 192 320 320.02l165.49-165.49c35.35-35.35 35.35-92.66 0-128.02z" ], + mars: [ 384, 512, [], "f222", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c0-6.6-5.4-12-12-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" ], + "mars-double": [ 512, 512, [], "f227", "M340 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C198.5 72.1 172.2 64 144 64 64.5 64 0 128.5 0 208s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.5 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 288c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80zm356-128.1h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7c-18.2-11.4-39-18.9-61.5-21.3-2.1 21.8-8.2 43.3-18.4 63.3 1.1 0 2.2-.1 3.2-.1 44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80c0-1.1 0-2.2.1-3.2-20 10.2-41.5 16.4-63.3 18.4C168.4 455.6 229.6 512 304 512c79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12v-79c0-6.7-5.4-12.1-12-12.1z" ], + "mars-stroke": [ 384, 512, [], "f229", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-17.5 17.5-14.1-14.1c-4.7-4.7-12.3-4.7-17 0L224.5 133c-4.7 4.7-4.7 12.3 0 17l14.1 14.1-18 18c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l18-18 14.1 14.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L329.2 164l17.5-17.5 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c-.1-6.6-5.5-12-12.1-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" ], + "mars-stroke-h": [ 480, 512, [], "f22b", "M476.2 247.5l-55.9-55.9c-7.6-7.6-20.5-2.2-20.5 8.5V224H376v-20c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v20h-27.6c-5.8-25.6-18.7-49.9-38.6-69.8C189.6 98 98.4 98 42.2 154.2c-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 19.9-19.9 32.8-44.2 38.6-69.8H312v20c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-20h23.9v23.9c0 10.7 12.9 16 20.5 8.5l55.9-55.9c4.6-4.7 4.6-12.3-.1-17zm-275.6 65.1c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z" ], + "mars-stroke-v": [ 288, 512, [], "f22a", "M245.8 234.2c-19.9-19.9-44.2-32.8-69.8-38.6v-25.4h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V81.4h23.9c10.7 0 16-12.9 8.5-20.5L152.5 5.1c-4.7-4.7-12.3-4.7-17 0L79.6 61c-7.6 7.6-2.2 20.5 8.5 20.5H112v24.7H92c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h20v25.4c-25.6 5.8-49.9 18.7-69.8 38.6-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 56.3-56.2 56.3-147.4 0-203.6zm-45.2 158.4c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z" ], + medal: [ 512, 512, [], "f5a2", "M223.75 130.75L154.62 15.54A31.997 31.997 0 0 0 127.18 0H16.03C3.08 0-4.5 14.57 2.92 25.18l111.27 158.96c29.72-27.77 67.52-46.83 109.56-53.39zM495.97 0H384.82c-11.24 0-21.66 5.9-27.44 15.54l-69.13 115.21c42.04 6.56 79.84 25.62 109.56 53.38L509.08 25.18C516.5 14.57 508.92 0 495.97 0zM256 160c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm92.52 157.26l-37.93 36.96 8.97 52.22c1.6 9.36-8.26 16.51-16.65 12.09L256 393.88l-46.9 24.65c-8.4 4.45-18.25-2.74-16.65-12.09l8.97-52.22-37.93-36.96c-6.82-6.64-3.05-18.23 6.35-19.59l52.43-7.64 23.43-47.52c2.11-4.28 6.19-6.39 10.28-6.39 4.11 0 8.22 2.14 10.33 6.39l23.43 47.52 52.43 7.64c9.4 1.36 13.17 12.95 6.35 19.59z" ], + medkit: [ 512, 512, [], "f0fa", "M96 480h320V128h-32V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v48H96v352zm96-384h128v32H192V96zm320 80v256c0 26.51-21.49 48-48 48h-16V128h16c26.51 0 48 21.49 48 48zM64 480H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v352zm288-208v32c0 8.837-7.163 16-16 16h-48v48c0 8.837-7.163 16-16 16h-32c-8.837 0-16-7.163-16-16v-48h-48c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h48v-48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v48h48c8.837 0 16 7.163 16 16z" ], + meh: [ 496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm176 192H152c-21.2 0-21.2-32 0-32h192c21.2 0 21.2 32 0 32zm-16-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + "meh-blank": [ 496, 512, [], "f5a4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + "meh-rolling-eyes": [ 496, 512, [], "f5a5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 224c0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64s-64-28.7-64-64zm224 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-112c-35.3 0-64-28.7-64-64 0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64z" ], + memory: [ 640, 512, [], "f538", "M640 130.94V96c0-17.67-14.33-32-32-32H32C14.33 64 0 78.33 0 96v34.94c18.6 6.61 32 24.19 32 45.06s-13.4 38.45-32 45.06V320h640v-98.94c-18.6-6.61-32-24.19-32-45.06s13.4-38.45 32-45.06zM224 256h-64V128h64v128zm128 0h-64V128h64v128zm128 0h-64V128h64v128zM0 448h64v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h64v-96H0v96z" ], + mercury: [ 288, 512, [], "f223", "M288 208c0-44.2-19.9-83.7-51.2-110.1 2.5-1.8 4.9-3.8 7.2-5.8 24.7-21.2 39.8-48.8 43.2-78.8.9-7.1-4.7-13.3-11.9-13.3h-40.5C229 0 224.1 4.1 223 9.8c-2.4 12.5-9.6 24.3-20.7 33.8C187 56.8 166.3 64 144 64s-43-7.2-58.4-20.4C74.5 34.1 67.4 22.3 64.9 9.8 63.8 4.1 58.9 0 53.2 0H12.7C5.5 0-.1 6.2.8 13.3 4.2 43.4 19.2 71 44 92.2c2.3 2 4.7 3.9 7.2 5.8C19.9 124.3 0 163.8 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z" ], + microchip: [ 512, 512, [], "f2db", "M416 48v416c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h224c26.51 0 48 21.49 48 48zm96 58v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42V88h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zM30 376h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6z" ], + microphone: [ 352, 512, [], "f130", "M176 352c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96zm160-160h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16z" ], + "microphone-alt": [ 352, 512, [], "f3c9", "M336 192h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16zM176 352c53.02 0 96-42.98 96-96h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96z" ], + "microphone-alt-slash": [ 640, 512, [], "f539", "M633.82 458.1L476.26 336.33C488.74 312.21 496 284.98 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67h-43.67l-41.4-32H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.78c11.71-1.62 23.1-4.28 33.96-8.08l-50.4-38.96c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z" ], + "microphone-slash": [ 640, 512, [], "f131", "M633.82 458.1l-157.8-121.96C488.61 312.13 496 285.01 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67V96c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.77c11.66-1.6 22.85-4.54 33.67-8.31l-50.11-38.73c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z" ], + minus: [ 448, 512, [], "f068", "M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" ], + "minus-circle": [ 512, 512, [], "f056", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM124 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H124z" ], + "minus-square": [ 448, 512, [], "f146", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H92z" ], + mobile: [ 320, 512, [], "f10b", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + "mobile-alt": [ 320, 512, [], "f3cd", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm112-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v312z" ], + "money-bill": [ 640, 512, [], "f0d6", "M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 176c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 48h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z" ], + "money-bill-alt": [ 640, 512, [], "f3d1", "M352 288h-16v-88c0-4.42-3.58-8-8-8h-13.58c-4.74 0-9.37 1.4-13.31 4.03l-15.33 10.22a7.994 7.994 0 0 0-2.22 11.09l8.88 13.31a7.994 7.994 0 0 0 11.09 2.22l.47-.31V288h-16c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8h64c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 192c-53.02 0-96-50.15-96-112 0-61.86 42.98-112 96-112s96 50.14 96 112c0 61.87-43 112-96 112zm272 32h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z" ], + "money-bill-wave": [ 640, 512, [], "f53a", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM48 132.22c20.12 5.04 41.12 7.57 62.72 8.93C104.84 170.54 79 192.69 48 192.69v-60.47zm0 285v-47.78c34.37 0 62.18 27.27 63.71 61.4-22.53-1.81-43.59-6.31-63.71-13.62zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 27.78c-17.52-4.39-35.71-6.85-54.32-8.44 5.87-26.08 27.5-45.88 54.32-49.28v57.72zm0-236.11c-30.89-3.91-54.86-29.7-55.81-61.55 19.54 2.17 38.09 6.23 55.81 12.66v48.89z" ], + "money-bill-wave-alt": [ 640, 512, [], "f53b", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96z" ], + "money-check": [ 640, 512, [], "f53c", "M0 448c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128H0v320zm448-208c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-32zm0 120c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H456c-4.42 0-8-3.58-8-8v-16zM64 264c0-4.42 3.58-8 8-8h304c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm0 96c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zM624 32H16C7.16 32 0 39.16 0 48v48h640V48c0-8.84-7.16-16-16-16z" ], + "money-check-alt": [ 640, 512, [], "f53d", "M608 32H32C14.33 32 0 46.33 0 64v384c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM176 327.88V344c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V152c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07zM416 312c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm160 0c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h272c4.42 0 8 3.58 8 8v16z" ], + monument: [ 384, 512, [], "f5a6", "M368 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h352c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-78.86-347.26a31.97 31.97 0 0 0-9.21-19.44L203.31 4.69c-6.25-6.25-16.38-6.25-22.63 0l-76.6 76.61a31.97 31.97 0 0 0-9.21 19.44L64 416h256l-30.86-315.26zM240 307.2c0 6.4-6.4 12.8-12.8 12.8h-70.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h70.4c6.4 0 12.8 6.4 12.8 12.8v38.4z" ], + moon: [ 512, 512, [], "f186", "M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z" ], + "mortar-pestle": [ 512, 512, [], "f5a7", "M501.54 60.91c17.22-17.22 12.51-46.25-9.27-57.14a35.696 35.696 0 0 0-37.37 3.37L251.09 160h151.37l99.08-99.09zM496 192H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c0 80.98 50.2 150.11 121.13 178.32-12.76 16.87-21.72 36.8-24.95 58.69-1.46 9.92 6.04 18.98 16.07 18.98h223.5c10.03 0 17.53-9.06 16.07-18.98-3.22-21.89-12.18-41.82-24.95-58.69C429.8 406.11 480 336.98 480 256h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" ], + motorcycle: [ 640, 512, [], "f21c", "M512.949 192.003c-14.862-.108-29.14 2.322-42.434 6.874L437.589 144H520c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24h-45.311a24 24 0 0 0-17.839 7.945l-37.496 41.663-22.774-37.956A24 24 0 0 0 376 64h-80c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h66.411l19.2 32H227.904c-17.727-23.073-44.924-40-99.904-40H72.54c-13.455 0-24.791 11.011-24.536 24.464C48.252 141.505 58.9 152 72 152h56c24.504 0 38.686 10.919 47.787 24.769l-11.291 20.529c-13.006-3.865-26.871-5.736-41.251-5.21C55.857 194.549 1.565 249.605.034 317.021-1.603 389.076 56.317 448 128 448c59.642 0 109.744-40.794 123.953-96h84.236c13.673 0 24.589-11.421 23.976-25.077-2.118-47.12 17.522-93.665 56.185-125.026l12.485 20.808c-27.646 23.654-45.097 58.88-44.831 98.179.47 69.556 57.203 126.452 126.758 127.11 71.629.678 129.839-57.487 129.234-129.099-.588-69.591-57.455-126.386-127.047-126.892zM128 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c4.242 0 8.405.341 12.469.982L98.97 316.434C90.187 332.407 101.762 352 120 352h81.297c-12.37 28.225-40.56 48-73.297 48zm388.351-.116C470.272 402.337 432 365.554 432 320c0-21.363 8.434-40.781 22.125-55.144l49.412 82.352c4.546 7.577 14.375 10.034 21.952 5.488l13.72-8.232c7.577-4.546 10.034-14.375 5.488-21.952l-48.556-80.927A80.005 80.005 0 0 1 512 240c45.554 0 82.338 38.273 79.884 84.352-2.16 40.558-34.974 73.372-75.533 75.532z" ], + "mouse-pointer": [ 320, 512, [], "f245", "M302.189 329.126H196.105l55.831 135.993c3.889 9.428-.555 19.999-9.444 23.999l-49.165 21.427c-9.165 4-19.443-.571-23.332-9.714l-53.053-129.136-86.664 89.138C18.729 472.71 0 463.554 0 447.977V18.299C0 1.899 19.921-6.096 30.277 5.443l284.412 292.542c11.472 11.179 3.007 31.141-12.5 31.141z" ], + music: [ 512, 512, [], "f001", "M470.4 1.5l-304 96C153.1 101.7 144 114 144 128v264.6c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V220.5l272-85.9v194c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V32c0-21.7-21.1-37-41.6-30.5z" ], + neuter: [ 288, 512, [], "f22c", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V468c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V316.4c64.1-14.5 112-71.9 112-140.4zm-144 80c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" ], + newspaper: [ 576, 512, [], "f1ea", "M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z" ], + "not-equal": [ 448, 512, [], "f53e", "M416 208c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32h-23.88l51.87-66.81c5.37-7.02 4.04-17.06-2.97-22.43L415.61 3.3c-7.02-5.38-17.06-4.04-22.44 2.97L311.09 112H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h204.56l-74.53 96H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h55.49l-51.87 66.81c-5.37 7.01-4.04 17.05 2.97 22.43L64 508.7c7.02 5.38 17.06 4.04 22.43-2.97L168.52 400H416c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32H243.05l74.53-96H416z" ], + "notes-medical": [ 384, 512, [], "f481", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm96 304c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm0-192c0 4.4-3.6 8-8 8H104c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16z" ], + "object-group": [ 512, 512, [], "f247", "M480 128V96h20c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v20H64V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v40c0 6.627 5.373 12 12 12h20v320H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-20h384v20c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-20V128zM96 276V140c0-6.627 5.373-12 12-12h168c6.627 0 12 5.373 12 12v136c0 6.627-5.373 12-12 12H108c-6.627 0-12-5.373-12-12zm320 96c0 6.627-5.373 12-12 12H236c-6.627 0-12-5.373-12-12v-52h72c13.255 0 24-10.745 24-24v-72h84c6.627 0 12 5.373 12 12v136z" ], + "object-ungroup": [ 576, 512, [], "f248", "M64 320v26a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6v-52a6 6 0 0 1 6-6h26V96H6a6 6 0 0 1-6-6V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v26h288V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-26v192h26a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-52a6 6 0 0 1-6-6v-26H64zm480-64v-32h26a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-52a6 6 0 0 0-6 6v26H408v72h8c13.255 0 24 10.745 24 24v64c0 13.255-10.745 24-24 24h-64c-13.255 0-24-10.745-24-24v-8H192v72h-26a6 6 0 0 0-6 6v52a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-26h288v26a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-26V256z" ], + outdent: [ 448, 512, [], "f03b", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm208 144h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm192-128h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM4.687 267.313l96 95.984C110.734 373.348 128 366.224 128 351.984V160.008c0-14.329-17.325-21.304-27.313-11.313l-96 95.992c-6.249 6.248-6.249 16.378 0 22.626z" ], + "paint-brush": [ 512, 512, [], "f1fc", "M167.02 309.34c-40.12 2.58-76.53 17.86-97.19 72.3-2.35 6.21-8 9.98-14.59 9.98-11.11 0-45.46-27.67-55.25-34.35C0 439.62 37.93 512 128 512c75.86 0 128-43.77 128-120.19 0-3.11-.65-6.08-.97-9.13l-88.01-73.34zM457.89 0c-15.16 0-29.37 6.71-40.21 16.45C213.27 199.05 192 203.34 192 257.09c0 13.7 3.25 26.76 8.73 38.7l63.82 53.18c7.21 1.8 14.64 3.03 22.39 3.03 62.11 0 98.11-45.47 211.16-256.46 7.38-14.35 13.9-29.85 13.9-45.99C512 20.64 486 0 457.89 0z" ], + "paint-roller": [ 512, 512, [], "f5aa", "M416 128V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32h352c17.67 0 32-14.33 32-32zm32-64v128c0 17.67-14.33 32-32 32H256c-35.35 0-64 28.65-64 64v32c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32v-32h160c53.02 0 96-42.98 96-96v-64c0-35.35-28.65-64-64-64z" ], + palette: [ 512, 512, [], "f53f", "M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + pallet: [ 640, 512, [], "f482", "M144 256h352c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H384v128l-64-32-64 32V0H144c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16zm480 128c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v64H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-64h48zm-336 64H128v-64h160v64zm224 0H352v-64h160v64z" ], + "paper-plane": [ 512, 512, [], "f1d8", "M476 3.2L12.5 270.6c-18.1 10.4-15.8 35.6 2.2 43.2L121 358.4l287.3-253.2c5.5-4.9 13.3 2.6 8.6 8.3L176 407v80.5c0 23.6 28.5 32.9 42.5 15.8L282 426l124.6 52.2c14.2 6 30.4-2.9 33-18.2l72-432C515 7.8 493.3-6.8 476 3.2z" ], + paperclip: [ 448, 512, [], "f0c6", "M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z" ], + "parachute-box": [ 512, 512, [], "f4cd", "M511.9 175c-9.1-75.6-78.4-132.4-158.3-158.7C390 55.7 416 116.9 416 192h28.1L327.5 321.5c-2.5-.6-4.8-1.5-7.5-1.5h-48V192h112C384 76.8 315.1 0 256 0S128 76.8 128 192h112v128h-48c-2.7 0-5 .9-7.5 1.5L67.9 192H96c0-75.1 26-136.3 62.4-175.7C78.5 42.7 9.2 99.5.1 175c-1.1 9.1 6.8 17 16 17h8.7l136.7 151.9c-.7 2.6-1.6 5.2-1.6 8.1v128c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32V352c0-2.9-.9-5.4-1.6-8.1L487.1 192h8.7c9.3 0 17.2-7.8 16.1-17z" ], + paragraph: [ 448, 512, [], "f1dd", "M408 32H177.531C88.948 32 16.045 103.335 16 191.918 15.956 280.321 87.607 352 176 352v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h32v344c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h40c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24z" ], + parking: [ 448, 512, [], "f540", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM240 320h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h96c52.9 0 96 43.1 96 96s-43.1 96-96 96zm0-128h-48v64h48c17.6 0 32-14.4 32-32s-14.4-32-32-32z" ], + passport: [ 448, 512, [], "f5ab", "M129.62 176h39.09c1.49-27.03 6.54-51.35 14.21-70.41-27.71 13.24-48.02 39.19-53.3 70.41zm0 32c5.29 31.22 25.59 57.17 53.3 70.41-7.68-19.06-12.72-43.38-14.21-70.41h-39.09zM224 286.69c7.69-7.45 20.77-34.42 23.43-78.69h-46.87c2.67 44.26 15.75 71.24 23.44 78.69zM200.57 176h46.87c-2.66-44.26-15.74-71.24-23.43-78.69-7.7 7.45-20.78 34.43-23.44 78.69zm64.51 102.41c27.71-13.24 48.02-39.19 53.3-70.41h-39.09c-1.49 27.03-6.53 51.35-14.21 70.41zM416 0H64C28.65 0 0 28.65 0 64v384c0 35.35 28.65 64 64 64h352c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32zm-80 416H112c-8.8 0-16-7.2-16-16s7.2-16 16-16h224c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-112-96c-70.69 0-128-57.31-128-128S153.31 64 224 64s128 57.31 128 128-57.31 128-128 128zm41.08-214.41c7.68 19.06 12.72 43.38 14.21 70.41h39.09c-5.28-31.22-25.59-57.17-53.3-70.41z" ], + paste: [ 448, 512, [], "f0ea", "M128 184c0-30.879 25.122-56 56-56h136V56c0-13.255-10.745-24-24-24h-80.61C204.306 12.89 183.637 0 160 0s-44.306 12.89-55.39 32H24C10.745 32 0 42.745 0 56v336c0 13.255 10.745 24 24 24h104V184zm32-144c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24zm184 248h104v200c0 13.255-10.745 24-24 24H184c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.059V256h-96v-96h6.059a24 24 0 0 1 16.97 7.029l65.941 65.941a24.002 24.002 0 0 1 7.03 16.971z" ], + pause: [ 448, 512, [], "f04c", "M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z" ], + "pause-circle": [ 512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-16 328c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160zm112 0c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160z" ], + paw: [ 512, 512, [], "f1b0", "M85.231 330.958C36 330.958 0 273.792 0 231.5c0-28.292 16-58.042 49.538-58.042 49.231 0 85.231 57.458 85.231 99.75 0 28.292-15.692 57.75-49.538 57.75zm348 106.167c0 37.042-32 42.875-63.385 42.875-41.231 0-74.462-26.25-113.846-26.25-41.231 0-76.308 25.958-120.923 25.958-29.847 0-56.308-9.625-56.308-42.583C78.769 368 180.616 265.333 256 265.333s177.231 102.959 177.231 171.792zM182.462 203.792c-49.847 0-80-59.5-80-100.333C102.462 70.792 120.308 32 160 32c50.154 0 80 59.5 80 100.333 0 32.667-17.846 71.459-57.538 71.459zM272 132.333C272 91.5 301.846 32 352 32c39.692 0 57.539 38.792 57.539 71.458 0 40.833-30.154 100.333-80.001 100.333C289.846 203.792 272 165 272 132.333zM512 231.5c0 42.292-36 99.458-85.231 99.458-33.847 0-49.538-29.458-49.538-57.75 0-42.291 35.999-99.75 85.231-99.75C496 173.458 512 203.208 512 231.5z" ], + pen: [ 512, 512, [], "f304", "M290.74 93.24l128.02 128.02-277.99 277.99-114.14 12.6C11.35 513.54-1.56 500.62.14 485.34l12.7-114.22 277.9-277.88zm207.2-19.06l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.76 18.75-49.16 0-67.91z" ], + "pen-alt": [ 512, 512, [], "f305", "M497.94 74.17l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91zm-246.8-20.53c-15.62-15.62-40.94-15.62-56.56 0L75.8 172.43c-6.25 6.25-6.25 16.38 0 22.62l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l101.82-101.82 22.63 22.62L93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l196.79-196.79-82.77-82.77-84.85-84.85z" ], + "pen-fancy": [ 512, 512, [], "f5ac", "M79.18 282.94a32.005 32.005 0 0 0-20.24 20.24L0 480l4.69 4.69 92.89-92.89c-.66-2.56-1.57-5.03-1.57-7.8 0-17.67 14.33-32 32-32s32 14.33 32 32-14.33 32-32 32c-2.77 0-5.24-.91-7.8-1.57l-92.89 92.89L32 512l176.82-58.94a31.983 31.983 0 0 0 20.24-20.24l33.07-84.07-98.88-98.88-84.07 33.07zM369.25 28.32L186.14 227.81l97.85 97.85 199.49-183.11C568.4 67.48 443.73-55.94 369.25 28.32z" ], + "pen-nib": [ 512, 512, [], "f5ad", "M136.6 138.79a64.003 64.003 0 0 0-43.31 41.35L0 460l14.69 14.69L164.8 324.58c-2.99-6.26-4.8-13.18-4.8-20.58 0-26.51 21.49-48 48-48s48 21.49 48 48-21.49 48-48 48c-7.4 0-14.32-1.81-20.58-4.8L37.31 497.31 52 512l279.86-93.29a64.003 64.003 0 0 0 41.35-43.31L416 224 288 96l-151.4 42.79zm361.34-64.62l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91z" ], + "pen-square": [ 448, 512, [], "f14b", "M400 480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zM238.1 177.9L102.4 313.6l-6.3 57.1c-.8 7.6 5.6 14.1 13.3 13.3l57.1-6.3L302.2 242c2.3-2.3 2.3-6.1 0-8.5L246.7 178c-2.5-2.4-6.3-2.4-8.6-.1zM345 165.1L314.9 135c-9.4-9.4-24.6-9.4-33.9 0l-23.1 23.1c-2.3 2.3-2.3 6.1 0 8.5l55.5 55.5c2.3 2.3 6.1 2.3 8.5 0L345 199c9.3-9.3 9.3-24.5 0-33.9z" ], + "pencil-alt": [ 512, 512, [], "f303", "M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z" ], + "pencil-ruler": [ 512, 512, [], "f5ae", "M109.46 244.04l134.58-134.56-44.12-44.12-61.68 61.68a7.919 7.919 0 0 1-11.21 0l-11.21-11.21c-3.1-3.1-3.1-8.12 0-11.21l61.68-61.68-33.64-33.65C131.47-3.1 111.39-3.1 99 9.29L9.29 99c-12.38 12.39-12.39 32.47 0 44.86l100.17 100.18zm388.47-116.8c18.76-18.76 18.75-49.17 0-67.93l-45.25-45.25c-18.76-18.76-49.18-18.76-67.95 0l-46.02 46.01 113.2 113.2 46.02-46.03zM316.08 82.71l-297 296.96L.32 487.11c-2.53 14.49 10.09 27.11 24.59 24.56l107.45-18.84L429.28 195.9 316.08 82.71zm186.63 285.43l-33.64-33.64-61.68 61.68c-3.1 3.1-8.12 3.1-11.21 0l-11.21-11.21c-3.09-3.1-3.09-8.12 0-11.21l61.68-61.68-44.14-44.14L267.93 402.5l100.21 100.2c12.39 12.39 32.47 12.39 44.86 0l89.71-89.7c12.39-12.39 12.39-32.47 0-44.86z" ], + "people-carry": [ 640, 512, [], "f4ce", "M128 96c26.5 0 48-21.5 48-48S154.5 0 128 0 80 21.5 80 48s21.5 48 48 48zm384 0c26.5 0 48-21.5 48-48S538.5 0 512 0s-48 21.5-48 48 21.5 48 48 48zm125.7 372.1l-44-110-41.1 46.4-2 18.2 27.7 69.2c5 12.5 17 20.1 29.7 20.1 4 0 8-.7 11.9-2.3 16.4-6.6 24.4-25.2 17.8-41.6zm-34.2-209.8L585 178.1c-4.6-20-18.6-36.8-37.5-44.9-18.5-8-39-6.7-56.1 3.3-22.7 13.4-39.7 34.5-48.1 59.4L432 229.8 416 240v-96c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16v96l-16.1-10.2-11.3-33.9c-8.3-25-25.4-46-48.1-59.4-17.2-10-37.6-11.3-56.1-3.3-18.9 8.1-32.9 24.9-37.5 44.9l-18.4 80.2c-4.6 20 .7 41.2 14.4 56.7l67.2 75.9 10.1 92.6C130 499.8 143.8 512 160 512c1.2 0 2.3-.1 3.5-.2 17.6-1.9 30.2-17.7 28.3-35.3l-10.1-92.8c-1.5-13-6.9-25.1-15.6-35l-43.3-49 17.6-70.3 6.8 20.4c4.1 12.5 11.9 23.4 24.5 32.6l51.1 32.5c4.6 2.9 12.1 4.6 17.2 5h160c5.1-.4 12.6-2.1 17.2-5l51.1-32.5c12.6-9.2 20.4-20 24.5-32.6l6.8-20.4 17.6 70.3-43.3 49c-8.7 9.9-14.1 22-15.6 35l-10.1 92.8c-1.9 17.6 10.8 33.4 28.3 35.3 1.2.1 2.3.2 3.5.2 16.1 0 30-12.1 31.8-28.5l10.1-92.6 67.2-75.9c13.6-15.5 19-36.7 14.4-56.7zM46.3 358.1l-44 110c-6.6 16.4 1.4 35 17.8 41.6 16.8 6.6 35.1-1.7 41.6-17.8l27.7-69.2-2-18.2-41.1-46.4z" ], + percent: [ 448, 512, [], "f295", "M112 224c61.9 0 112-50.1 112-112S173.9 0 112 0 0 50.1 0 112s50.1 112 112 112zm0-160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm224 224c-61.9 0-112 50.1-112 112s50.1 112 112 112 112-50.1 112-112-50.1-112-112-112zm0 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zM392.3.2l31.6-.1c19.4-.1 30.9 21.8 19.7 37.8L77.4 501.6a23.95 23.95 0 0 1-19.6 10.2l-33.4.1c-19.5 0-30.9-21.9-19.7-37.8l368-463.7C377.2 4 384.5.2 392.3.2z" ], + percentage: [ 384, 512, [], "f541", "M109.25 173.25c24.99-24.99 24.99-65.52 0-90.51-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 25 25 65.52 25 90.51 0zm256 165.49c-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 24.99 24.99 65.52 24.99 90.51 0 25-24.99 25-65.51 0-90.51zm-1.94-231.43l-22.62-22.62c-12.5-12.5-32.76-12.5-45.25 0L20.69 359.44c-12.5 12.5-12.5 32.76 0 45.25l22.62 22.62c12.5 12.5 32.76 12.5 45.25 0l274.75-274.75c12.5-12.49 12.5-32.75 0-45.25z" ], + phone: [ 512, 512, [], "f095", "M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z" ], + "phone-slash": [ 640, 512, [], "f3dd", "M268.2 381.4l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48c-10.7 4.6-16.5 16.1-13.9 27.5l24 104c2.5 10.8 12.1 18.6 23.4 18.6 100.7 0 193.7-32.4 269.7-86.9l-80-61.8c-10.9 6.5-22.1 12.7-33.6 18.1zm365.6 76.7L475.1 335.5C537.9 256.4 576 156.9 576 48c0-11.2-7.7-20.9-18.6-23.4l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-12.2 26.1-27.9 50.3-46 72.8L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z" ], + "phone-square": [ 448, 512, [], "f098", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM94 416c-7.033 0-13.057-4.873-14.616-11.627l-14.998-65a15 15 0 0 1 8.707-17.16l69.998-29.999a15 15 0 0 1 17.518 4.289l30.997 37.885c48.944-22.963 88.297-62.858 110.781-110.78l-37.886-30.997a15.001 15.001 0 0 1-4.289-17.518l30-69.998a15 15 0 0 1 17.16-8.707l65 14.998A14.997 14.997 0 0 1 384 126c0 160.292-129.945 290-290 290z" ], + "phone-volume": [ 384, 512, [], "f2a0", "M97.333 506.966c-129.874-129.874-129.681-340.252 0-469.933 5.698-5.698 14.527-6.632 21.263-2.422l64.817 40.513a17.187 17.187 0 0 1 6.849 20.958l-32.408 81.021a17.188 17.188 0 0 1-17.669 10.719l-55.81-5.58c-21.051 58.261-20.612 122.471 0 179.515l55.811-5.581a17.188 17.188 0 0 1 17.669 10.719l32.408 81.022a17.188 17.188 0 0 1-6.849 20.958l-64.817 40.513a17.19 17.19 0 0 1-21.264-2.422zM247.126 95.473c11.832 20.047 11.832 45.008 0 65.055-3.95 6.693-13.108 7.959-18.718 2.581l-5.975-5.726c-3.911-3.748-4.793-9.622-2.261-14.41a32.063 32.063 0 0 0 0-29.945c-2.533-4.788-1.65-10.662 2.261-14.41l5.975-5.726c5.61-5.378 14.768-4.112 18.718 2.581zm91.787-91.187c60.14 71.604 60.092 175.882 0 247.428-4.474 5.327-12.53 5.746-17.552.933l-5.798-5.557c-4.56-4.371-4.977-11.529-.93-16.379 49.687-59.538 49.646-145.933 0-205.422-4.047-4.85-3.631-12.008.93-16.379l5.798-5.557c5.022-4.813 13.078-4.394 17.552.933zm-45.972 44.941c36.05 46.322 36.108 111.149 0 157.546-4.39 5.641-12.697 6.251-17.856 1.304l-5.818-5.579c-4.4-4.219-4.998-11.095-1.285-15.931 26.536-34.564 26.534-82.572 0-117.134-3.713-4.836-3.115-11.711 1.285-15.931l5.818-5.579c5.159-4.947 13.466-4.337 17.856 1.304z" ], + "piggy-bank": [ 576, 512, [], "f4d3", "M560 224h-29.5c-8.8-20-21.6-37.7-37.4-52.5L512 96h-32c-29.4 0-55.4 13.5-73 34.3-7.6-1.1-15.1-2.3-23-2.3H256c-77.4 0-141.9 55-156.8 128H56c-14.8 0-26.5-13.5-23.5-28.8C34.7 215.8 45.4 208 57 208h1c3.3 0 6-2.7 6-6v-20c0-3.3-2.7-6-6-6-28.5 0-53.9 20.4-57.5 48.6C-3.9 258.8 22.7 288 56 288h40c0 52.2 25.4 98.1 64 127.3V496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-48h128v48c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80.7c11.8-8.9 22.3-19.4 31.3-31.3H560c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16zm-128 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM256 96h128c5.4 0 10.7.4 15.9.8 0-.3.1-.5.1-.8 0-53-43-96-96-96s-96 43-96 96c0 2.1.5 4.1.6 6.2 15.2-3.9 31-6.2 47.4-6.2z" ], + pills: [ 576, 512, [], "f484", "M112 32C50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V144c0-61.9-50.1-112-112-112zm48 224H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm139.7-29.7c-3.5-3.5-9.4-3.1-12.3.8-45.3 62.5-40.4 150.1 15.9 206.4 56.3 56.3 143.9 61.2 206.4 15.9 4-2.9 4.3-8.8.8-12.3L299.7 226.3zm229.8-19c-56.3-56.3-143.9-61.2-206.4-15.9-4 2.9-4.3 8.8-.8 12.3l210.8 210.8c3.5 3.5 9.4 3.1 12.3-.8 45.3-62.6 40.5-150.1-15.9-206.4z" ], + plane: [ 576, 512, [], "f072", "M480 192H365.71L260.61 8.06A16.014 16.014 0 0 0 246.71 0h-65.5c-10.63 0-18.3 10.17-15.38 20.39L214.86 192H112l-43.2-57.6c-3.02-4.03-7.77-6.4-12.8-6.4H16.01C5.6 128-2.04 137.78.49 147.88L32 256 .49 364.12C-2.04 374.22 5.6 384 16.01 384H56c5.04 0 9.78-2.37 12.8-6.4L112 320h102.86l-49.03 171.6c-2.92 10.22 4.75 20.4 15.38 20.4h65.5c5.74 0 11.04-3.08 13.89-8.06L365.71 320H480c35.35 0 96-28.65 96-64s-60.65-64-96-64z" ], + "plane-arrival": [ 640, 512, [], "f5af", "M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM44.81 205.66l88.74 80a62.607 62.607 0 0 0 25.47 13.93l287.6 78.35c26.48 7.21 54.56 8.72 81 1.36 29.67-8.27 43.44-21.21 47.25-35.71 3.83-14.5-1.73-32.71-23.37-54.96-19.28-19.82-44.35-32.79-70.83-40l-97.51-26.56L282.8 30.22c-1.51-5.81-5.95-10.35-11.66-11.91L206.05.58c-10.56-2.88-20.9 5.32-20.71 16.44l47.92 164.21-102.2-27.84-27.59-67.88c-1.93-4.89-6.01-8.57-11.02-9.93L52.72 64.75c-10.34-2.82-20.53 5-20.72 15.88l.23 101.78c.19 8.91 6.03 17.34 12.58 23.25z" ], + "plane-departure": [ 640, 512, [], "f5b0", "M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM80.55 341.27c6.28 6.84 15.1 10.72 24.33 10.71l130.54-.18a65.62 65.62 0 0 0 29.64-7.12l290.96-147.65c26.74-13.57 50.71-32.94 67.02-58.31 18.31-28.48 20.3-49.09 13.07-63.65-7.21-14.57-24.74-25.27-58.25-27.45-29.85-1.94-59.54 5.92-86.28 19.48l-98.51 49.99-218.7-82.06a17.799 17.799 0 0 0-18-1.11L90.62 67.29c-10.67 5.41-13.25 19.65-5.17 28.53l156.22 98.1-103.21 52.38-72.35-36.47a17.804 17.804 0 0 0-16.07.02L9.91 230.22c-10.44 5.3-13.19 19.12-5.57 28.08l76.21 82.97z" ], + play: [ 448, 512, [], "f04b", "M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z" ], + "play-circle": [ 512, 512, [], "f144", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z" ], + plug: [ 384, 512, [], "f1e6", "M256 144V32c0-17.673 14.327-32 32-32s32 14.327 32 32v112h-64zm112 16H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h16v32c0 77.406 54.969 141.971 128 156.796V512h64v-99.204c73.031-14.825 128-79.39 128-156.796v-32h16c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm-240-16V32c0-17.673-14.327-32-32-32S64 14.327 64 32v112h64z" ], + plus: [ 448, 512, [], "f067", "M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" ], + "plus-circle": [ 512, 512, [], "f055", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z" ], + "plus-square": [ 448, 512, [], "f0fe", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-32 252c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92H92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z" ], + podcast: [ 448, 512, [], "f2ce", "M267.429 488.563C262.286 507.573 242.858 512 224 512c-18.857 0-38.286-4.427-43.428-23.437C172.927 460.134 160 388.898 160 355.75c0-35.156 31.142-43.75 64-43.75s64 8.594 64 43.75c0 32.949-12.871 104.179-20.571 132.813zM156.867 288.554c-18.693-18.308-29.958-44.173-28.784-72.599 2.054-49.724 42.395-89.956 92.124-91.881C274.862 121.958 320 165.807 320 220c0 26.827-11.064 51.116-28.866 68.552-2.675 2.62-2.401 6.986.628 9.187 9.312 6.765 16.46 15.343 21.234 25.363 1.741 3.654 6.497 4.66 9.449 1.891 28.826-27.043 46.553-65.783 45.511-108.565-1.855-76.206-63.595-138.208-139.793-140.369C146.869 73.753 80 139.215 80 220c0 41.361 17.532 78.7 45.55 104.989 2.953 2.771 7.711 1.77 9.453-1.887 4.774-10.021 11.923-18.598 21.235-25.363 3.029-2.2 3.304-6.566.629-9.185zM224 0C100.204 0 0 100.185 0 224c0 89.992 52.602 165.647 125.739 201.408 4.333 2.118 9.267-1.544 8.535-6.31-2.382-15.512-4.342-30.946-5.406-44.339-.146-1.836-1.149-3.486-2.678-4.512-47.4-31.806-78.564-86.016-78.187-147.347.592-96.237 79.29-174.648 175.529-174.899C320.793 47.747 400 126.797 400 224c0 61.932-32.158 116.49-80.65 147.867-.999 14.037-3.069 30.588-5.624 47.23-.732 4.767 4.203 8.429 8.535 6.31C395.227 389.727 448 314.187 448 224 448 100.205 347.815 0 224 0zm0 160c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z" ], + poo: [ 512, 512, [], "f2fe", "M451.4 369.1C468.7 356 480 335.4 480 312c0-39.8-32.2-72-72-72h-14.1c13.4-11.7 22.1-28.8 22.1-48 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C250.3 14.6 256 30.6 256 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 19.2 8.7 36.3 22.1 48H104c-39.8 0-72 32.2-72 72 0 23.4 11.3 44 28.6 57.1C26.3 374.6 0 404.1 0 440c0 39.8 32.2 72 72 72h368c39.8 0 72-32.2 72-72 0-35.9-26.3-65.4-60.6-70.9zM192 256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm159.5 139C341 422.9 293 448 256 448s-85-25.1-95.5-53c-2-5.3 2-11 7.8-11h175.4c5.8 0 9.8 5.7 7.8 11zM320 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + portrait: [ 384, 512, [], "f3e0", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM192 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 384 80 375.4 80 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z" ], + "pound-sign": [ 320, 512, [], "f154", "M308 352h-45.495c-6.627 0-12 5.373-12 12v50.848H128V288h84c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-84v-63.556c0-32.266 24.562-57.086 61.792-57.086 23.658 0 45.878 11.505 57.652 18.849 5.151 3.213 11.888 2.051 15.688-2.685l28.493-35.513c4.233-5.276 3.279-13.005-2.119-17.081C273.124 54.56 236.576 32 187.931 32 106.026 32 48 84.742 48 157.961V224H20c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h28v128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12V364c0-6.627-5.373-12-12-12z" ], + "power-off": [ 512, 512, [], "f011", "M400 54.1c63 45 104 118.6 104 201.9 0 136.8-110.8 247.7-247.5 248C120 504.3 8.2 393 8 256.4 7.9 173.1 48.9 99.3 111.8 54.2c11.7-8.3 28-4.8 35 7.7L162.6 90c5.9 10.5 3.1 23.8-6.6 31-41.5 30.8-68 79.6-68 134.9-.1 92.3 74.5 168.1 168 168.1 91.6 0 168.6-74.2 168-169.1-.3-51.8-24.7-101.8-68.1-134-9.7-7.2-12.4-20.5-6.5-30.9l15.8-28.1c7-12.4 23.2-16.1 34.8-7.8zM296 264V24c0-13.3-10.7-24-24-24h-32c-13.3 0-24 10.7-24 24v240c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24z" ], + prescription: [ 384, 512, [], "f5b1", "M301.26 352l78.06-78.06c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0L256 306.74l-83.96-83.96C219.31 216.8 256 176.89 256 128c0-53.02-42.98-96-96-96H16C7.16 32 0 39.16 0 48v256c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-80h18.75l128 128-78.06 78.06c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0L256 397.25l78.06 78.06c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63L301.26 352zM64 96h96c17.64 0 32 14.36 32 32s-14.36 32-32 32H64V96z" ], + "prescription-bottle": [ 384, 512, [], "f485", "M32 192h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v64zM360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24z" ], + "prescription-bottle-alt": [ 384, 512, [], "f486", "M360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24zM32 480c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v352zm64-184c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48z" ], + print: [ 512, 512, [], "f02f", "M464 192h-16V81.941a24 24 0 0 0-7.029-16.97L383.029 7.029A24 24 0 0 0 366.059 0H88C74.745 0 64 10.745 64 24v168H48c-26.51 0-48 21.49-48 48v132c0 6.627 5.373 12 12 12h52v104c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V384h52c6.627 0 12-5.373 12-12V240c0-26.51-21.49-48-48-48zm-80 256H128v-96h256v96zM128 224V64h192v40c0 13.2 10.8 24 24 24h40v96H128zm304 72c-13.254 0-24-10.746-24-24s10.746-24 24-24 24 10.746 24 24-10.746 24-24 24z" ], + procedures: [ 640, 512, [], "f487", "M528 224H272c-8.8 0-16 7.2-16 16v144H64V144c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v352c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h512v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-61.9-50.1-112-112-112zM136 96h126.1l27.6 55.2c5.9 11.8 22.7 11.8 28.6 0L368 51.8 390.1 96H512c8.8 0 16-7.2 16-16s-7.2-16-16-16H409.9L382.3 8.8C376.4-3 359.6-3 353.7 8.8L304 108.2l-19.9-39.8c-1.4-2.7-4.1-4.4-7.2-4.4H136c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm24 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z" ], + "project-diagram": [ 640, 512, [], "f542", "M384 320H256c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM192 32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v128c0 17.67 14.33 32 32 32h95.72l73.16 128.04C211.98 300.98 232.4 288 256 288h.28L192 175.51V128h224V64H192V32zM608 0H480c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32z" ], + "puzzle-piece": [ 576, 512, [], "f12e", "M519.442 288.651c-41.519 0-59.5 31.593-82.058 31.593C377.409 320.244 432 144 432 144s-196.288 80-196.288-3.297c0-35.827 36.288-46.25 36.288-85.985C272 19.216 243.885 0 210.539 0c-34.654 0-66.366 18.891-66.366 56.346 0 41.364 31.711 59.277 31.711 81.75C175.885 207.719 0 166.758 0 166.758v333.237s178.635 41.047 178.635-28.662c0-22.473-40-40.107-40-81.471 0-37.456 29.25-56.346 63.577-56.346 33.673 0 61.788 19.216 61.788 54.717 0 39.735-36.288 50.158-36.288 85.985 0 60.803 129.675 25.73 181.23 25.73 0 0-34.725-120.101 25.827-120.101 35.962 0 46.423 36.152 86.308 36.152C556.712 416 576 387.99 576 354.443c0-34.199-18.962-65.792-56.558-65.792z" ], + qrcode: [ 448, 512, [], "f029", "M0 224h192V32H0v192zM64 96h64v64H64V96zm192-64v192h192V32H256zm128 128h-64V96h64v64zM0 480h192V288H0v192zm64-128h64v64H64v-64zm352-64h32v128h-96v-32h-32v96h-64V288h96v32h64v-32zm0 160h32v32h-32v-32zm-64 0h32v32h-32v-32z" ], + question: [ 384, 512, [], "f128", "M202.021 0C122.202 0 70.503 32.703 29.914 91.026c-7.363 10.58-5.093 25.086 5.178 32.874l43.138 32.709c10.373 7.865 25.132 6.026 33.253-4.148 25.049-31.381 43.63-49.449 82.757-49.449 30.764 0 68.816 19.799 68.816 49.631 0 22.552-18.617 34.134-48.993 51.164-35.423 19.86-82.299 44.576-82.299 106.405V320c0 13.255 10.745 24 24 24h72.471c13.255 0 24-10.745 24-24v-5.773c0-42.86 125.268-44.645 125.268-160.627C377.504 66.256 286.902 0 202.021 0zM192 373.459c-38.196 0-69.271 31.075-69.271 69.271 0 38.195 31.075 69.27 69.271 69.27s69.271-31.075 69.271-69.271-31.075-69.27-69.271-69.27z" ], + "question-circle": [ 512, 512, [], "f059", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z" ], + quidditch: [ 640, 512, [], "f458", "M256.5 216.8L343.2 326s-16.6 102.4-76.6 150.1C206.7 523.8 0 510.2 0 510.2s3.8-23.1 11-55.4l94.6-112.2c4-4.7-.9-11.6-6.6-9.5l-60.4 22.1c14.4-41.7 32.7-80 54.6-97.5 59.9-47.8 163.3-40.9 163.3-40.9zm238 135c-44 0-79.8 35.8-79.8 79.9 0 44.1 35.7 79.9 79.8 79.9 44.1 0 79.8-35.8 79.8-79.9 0-44.2-35.8-79.9-79.8-79.9zM636.5 31L616.7 6c-5.5-6.9-15.5-8-22.4-2.6L361.8 181.3l-34.1-43c-5.1-6.4-15.1-5.2-18.6 2.2l-25.3 54.6 86.7 109.2 58.8-12.4c8-1.7 11.4-11.2 6.3-17.6l-34.1-42.9L634 53.5c6.9-5.5 8-15.6 2.5-22.5z" ], + "quote-left": [ 512, 512, [], "f10d", "M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z" ], + "quote-right": [ 512, 512, [], "f10e", "M464 32H336c-26.5 0-48 21.5-48 48v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48zm-288 0H48C21.5 32 0 53.5 0 80v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48z" ], + random: [ 512, 512, [], "f074", "M504.971 359.029c9.373 9.373 9.373 24.569 0 33.941l-80 79.984c-15.01 15.01-40.971 4.49-40.971-16.971V416h-58.785a12.004 12.004 0 0 1-8.773-3.812l-70.556-75.596 53.333-57.143L352 336h32v-39.981c0-21.438 25.943-31.998 40.971-16.971l80 79.981zM12 176h84l52.781 56.551 53.333-57.143-70.556-75.596A11.999 11.999 0 0 0 122.785 96H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12zm372 0v39.984c0 21.46 25.961 31.98 40.971 16.971l80-79.984c9.373-9.373 9.373-24.569 0-33.941l-80-79.981C409.943 24.021 384 34.582 384 56.019V96h-58.785a12.004 12.004 0 0 0-8.773 3.812L96 336H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h110.785c3.326 0 6.503-1.381 8.773-3.812L352 176h32z" ], + receipt: [ 384, 512, [], "f543", "M358.4 3.2L320 48 265.6 3.2a15.9 15.9 0 0 0-19.2 0L192 48 137.6 3.2a15.9 15.9 0 0 0-19.2 0L64 48 25.6 3.2C15-4.7 0 2.8 0 16v480c0 13.2 15 20.7 25.6 12.8L64 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L192 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L320 464l38.4 44.8c10.5 7.9 25.6.4 25.6-12.8V16c0-13.2-15-20.7-25.6-12.8zM320 360c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16z" ], + recycle: [ 512, 512, [], "f1b8", "M184.561 261.903c3.232 13.997-12.123 24.635-24.068 17.168l-40.736-25.455-50.867 81.402C55.606 356.273 70.96 384 96.012 384H148c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12H96.115c-75.334 0-121.302-83.048-81.408-146.88l50.822-81.388-40.725-25.448c-12.081-7.547-8.966-25.961 4.879-29.158l110.237-25.45c8.611-1.988 17.201 3.381 19.189 11.99l25.452 110.237zm98.561-182.915l41.289 66.076-40.74 25.457c-12.051 7.528-9 25.953 4.879 29.158l110.237 25.45c8.672 1.999 17.215-3.438 19.189-11.99l25.45-110.237c3.197-13.844-11.99-24.719-24.068-17.168l-40.687 25.424-41.263-66.082c-37.521-60.033-125.209-60.171-162.816 0l-17.963 28.766c-3.51 5.62-1.8 13.021 3.82 16.533l33.919 21.195c5.62 3.512 13.024 1.803 16.536-3.817l17.961-28.743c12.712-20.341 41.973-19.676 54.257-.022zM497.288 301.12l-27.515-44.065c-3.511-5.623-10.916-7.334-16.538-3.821l-33.861 21.159c-5.62 3.512-7.33 10.915-3.818 16.536l27.564 44.112c13.257 21.211-2.057 48.96-27.136 48.96H320V336.02c0-14.213-17.242-21.383-27.313-11.313l-80 79.981c-6.249 6.248-6.249 16.379 0 22.627l80 79.989C302.689 517.308 320 510.3 320 495.989V448h95.88c75.274 0 121.335-82.997 81.408-146.88z" ], + redo: [ 512, 512, [], "f01e", "M500.333 0h-47.411c-6.853 0-12.314 5.729-11.986 12.574l3.966 82.759C399.416 41.899 331.672 8 256.001 8 119.34 8 7.899 119.526 8 256.187 8.101 393.068 119.096 504 256 504c63.926 0 122.202-24.187 166.178-63.908 5.113-4.618 5.354-12.561.482-17.433l-33.971-33.971c-4.466-4.466-11.64-4.717-16.38-.543C341.308 415.448 300.606 432 256 432c-97.267 0-176-78.716-176-176 0-97.267 78.716-176 176-176 60.892 0 114.506 30.858 146.099 77.8l-101.525-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12z" ], + "redo-alt": [ 512, 512, [], "f2f9", "M256.455 8c66.269.119 126.437 26.233 170.859 68.685l35.715-35.715C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.75c-30.864-28.899-70.801-44.907-113.23-45.273-92.398-.798-170.283 73.977-169.484 169.442C88.764 348.009 162.184 424 256 424c41.127 0 79.997-14.678 110.629-41.556 4.743-4.161 11.906-3.908 16.368.553l39.662 39.662c4.872 4.872 4.631 12.815-.482 17.433C378.202 479.813 319.926 504 256 504 119.034 504 8.001 392.967 8 256.002 7.999 119.193 119.646 7.755 256.455 8z" ], + registered: [ 512, 512, [], "f25d", "M285.363 207.475c0 18.6-9.831 28.431-28.431 28.431h-29.876v-56.14h23.378c28.668 0 34.929 8.773 34.929 27.709zM504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM363.411 360.414c-46.729-84.825-43.299-78.636-44.702-80.98 23.432-15.172 37.945-42.979 37.945-74.486 0-54.244-31.5-89.252-105.498-89.252h-70.667c-13.255 0-24 10.745-24 24V372c0 13.255 10.745 24 24 24h22.567c13.255 0 24-10.745 24-24v-71.663h25.556l44.129 82.937a24.001 24.001 0 0 0 21.188 12.727h24.464c18.261-.001 29.829-19.591 21.018-35.587z" ], + reply: [ 512, 512, [], "f3e5", "M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z" ], + "reply-all": [ 576, 512, [], "f122", "M136.309 189.836L312.313 37.851C327.72 24.546 352 35.348 352 56.015v82.763c129.182 10.231 224 52.212 224 183.548 0 61.441-39.582 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 38.512-123.162-3.922-169.482-112.59-182.015v84.175c0 20.701-24.3 31.453-39.687 18.164L136.309 226.164c-11.071-9.561-11.086-26.753 0-36.328zm-128 36.328L184.313 378.15C199.7 391.439 224 380.687 224 359.986v-15.818l-108.606-93.785A55.96 55.96 0 0 1 96 207.998a55.953 55.953 0 0 1 19.393-42.38L224 71.832V56.015c0-20.667-24.28-31.469-39.687-18.164L8.309 189.836c-11.086 9.575-11.071 26.767 0 36.328z" ], + retweet: [ 640, 512, [], "f079", "M629.657 343.598L528.971 444.284c-9.373 9.372-24.568 9.372-33.941 0L394.343 343.598c-9.373-9.373-9.373-24.569 0-33.941l10.823-10.823c9.562-9.562 25.133-9.34 34.419.492L480 342.118V160H292.451a24.005 24.005 0 0 1-16.971-7.029l-16-16C244.361 121.851 255.069 96 276.451 96H520c13.255 0 24 10.745 24 24v222.118l40.416-42.792c9.285-9.831 24.856-10.054 34.419-.492l10.823 10.823c9.372 9.372 9.372 24.569-.001 33.941zm-265.138 15.431A23.999 23.999 0 0 0 347.548 352H160V169.881l40.416 42.792c9.286 9.831 24.856 10.054 34.419.491l10.822-10.822c9.373-9.373 9.373-24.569 0-33.941L144.971 67.716c-9.373-9.373-24.569-9.373-33.941 0L10.343 168.402c-9.373 9.373-9.373 24.569 0 33.941l10.822 10.822c9.562 9.562 25.133 9.34 34.419-.491L96 169.881V392c0 13.255 10.745 24 24 24h243.549c21.382 0 32.09-25.851 16.971-40.971l-16.001-16z" ], + ribbon: [ 448, 512, [], "f4d6", "M6.1 444.3c-9.6 10.8-7.5 27.6 4.5 35.7l68.8 27.9c9.9 6.7 23.3 5 31.3-3.8l91.8-101.9-79.2-87.9-117.2 130zm435.8 0s-292-324.6-295.4-330.1c15.4-8.4 40.2-17.9 77.5-17.9s62.1 9.5 77.5 17.9c-3.3 5.6-56 64.6-56 64.6l79.1 87.7 34.2-38c28.7-31.9 33.3-78.6 11.4-115.5l-43.7-73.5c-4.3-7.2-9.9-13.3-16.8-18-40.7-27.6-127.4-29.7-171.4 0-6.9 4.7-12.5 10.8-16.8 18l-43.6 73.2c-1.5 2.5-37.1 62.2 11.5 116L337.5 504c8 8.9 21.4 10.5 31.3 3.8l68.8-27.9c11.9-8 14-24.8 4.3-35.6z" ], + road: [ 576, 512, [], "f018", "M567.3 383.6L429.9 78.2C426 69.5 417.4 64 408 64h-96.1l1.9 18.8c.7 7.1-4.8 13.2-11.9 13.2H274c-7.1 0-12.7-6.2-11.9-13.2L264 64h-96c-9.4 0-18 5.5-21.9 14.2L8.7 383.6C3.2 395.8 0 409.6 0 424c0 13.3 10.7 24 24 24h213.6c-7.1 0-12.7-6.2-11.9-13.2l10.8-104c.6-6.1 5.8-10.8 11.9-10.8h79.2c6.1 0 11.3 4.6 11.9 10.8l10.8 104c.7 7.1-4.8 13.2-11.9 13.2H552c13.2 0 24-10.7 24-24 0-13.9-3-27.7-8.7-40.4zM254.7 154.8l3.3-32c.6-6.1 5.8-10.8 11.9-10.8h36.2c6.1 0 11.3 4.6 11.9 10.8l3.3 32c.7 7.1-4.8 13.2-11.9 13.2h-42.8c-7.1 0-12.7-6.2-11.9-13.2zM321.8 288h-67.6c-7.1 0-12.7-6.2-11.9-13.2l7.4-72c.6-6.1 5.8-10.8 11.9-10.8h52.7c6.1 0 11.3 4.6 11.9 10.8l7.4 72c.9 7-4.7 13.2-11.8 13.2z" ], + robot: [ 640, 512, [], "f544", "M0 256v128c0 17.7 14.3 32 32 32h32V224H32c-17.7 0-32 14.3-32 32zM464 96H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H176c-44.2 0-80 35.8-80 80v272c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V176c0-44.2-35.8-80-80-80zM256 416h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm128 120h-64v-32h64v32zm96 0h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm192-72h-32v192h32c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32z" ], + rocket: [ 512, 512, [], "f135", "M505.1 19.1C503.8 13 499 8.2 492.9 6.9 460.7 0 435.5 0 410.4 0 307.2 0 245.3 55.2 199.1 128H94.9c-18.2 0-34.8 10.3-42.9 26.5L2.6 253.3c-8 16 3.6 34.7 21.5 34.7h95.1c-5.9 12.8-11.9 25.5-18 37.7-3.1 6.2-1.9 13.6 3 18.5l63.6 63.6c4.9 4.9 12.3 6.1 18.5 3 12.2-6.1 24.9-12 37.7-17.9V488c0 17.8 18.8 29.4 34.7 21.5l98.7-49.4c16.3-8.1 26.5-24.8 26.5-42.9V312.8c72.6-46.3 128-108.4 128-211.1.1-25.2.1-50.4-6.8-82.6zM400 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z" ], + rss: [ 448, 512, [], "f09e", "M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z" ], + "rss-square": [ 448, 512, [], "f143", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM112 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm157.533 0h-34.335c-6.011 0-11.051-4.636-11.442-10.634-5.214-80.05-69.243-143.92-149.123-149.123-5.997-.39-10.633-5.431-10.633-11.441v-34.335c0-6.535 5.468-11.777 11.994-11.425 110.546 5.974 198.997 94.536 204.964 204.964.352 6.526-4.89 11.994-11.425 11.994zm103.027 0h-34.334c-6.161 0-11.175-4.882-11.427-11.038-5.598-136.535-115.204-246.161-251.76-251.76C68.882 152.949 64 147.935 64 141.774V107.44c0-6.454 5.338-11.664 11.787-11.432 167.83 6.025 302.21 141.191 308.205 308.205.232 6.449-4.978 11.787-11.432 11.787z" ], + "ruble-sign": [ 384, 512, [], "f158", "M239.36 320C324.48 320 384 260.542 384 175.071S324.48 32 239.36 32H76c-6.627 0-12 5.373-12 12v206.632H12c-6.627 0-12 5.373-12 12V308c0 6.627 5.373 12 12 12h52v32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v52c0 6.627 5.373 12 12 12h58.56c6.627 0 12-5.373 12-12v-52H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H146.56v-32h92.8zm-92.8-219.252h78.72c46.72 0 74.88 29.11 74.88 74.323 0 45.832-28.16 75.561-76.16 75.561h-77.44V100.748z" ], + ruler: [ 640, 512, [], "f545", "M635.7 167.2L556.1 31.7c-8.8-15-28.3-20.1-43.5-11.5l-69 39.1L503.3 161c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L416 75l-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L333.2 122 278 153.3 337.8 255c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-59.7-101.7-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-27.9-47.5-55.2 31.3 59.7 101.7c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L84.9 262.9l-69 39.1C.7 310.7-4.6 329.8 4.2 344.8l79.6 135.6c8.8 15 28.3 20.1 43.5 11.5L624.1 210c15.2-8.6 20.4-27.8 11.6-42.8z" ], + "ruler-combined": [ 512, 512, [], "f546", "M160 288h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56v-64h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56V96h-56c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8h56V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 2.77.91 5.24 1.57 7.8L160 329.38V288zm320 64h-32v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-41.37L24.2 510.43c2.56.66 5.04 1.57 7.8 1.57h448c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z" ], + "ruler-horizontal": [ 576, 512, [], "f547", "M544 128h-48v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8H88c-4.42 0-8-3.58-8-8v-88H32c-17.67 0-32 14.33-32 32v192c0 17.67 14.33 32 32 32h512c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32z" ], + "ruler-vertical": [ 256, 512, [], "f548", "M168 416c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 17.67 14.33 32 32 32h192c17.67 0 32-14.33 32-32v-64h-88z" ], + "rupee-sign": [ 320, 512, [], "f156", "M308 96c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v44.748c0 6.627 5.373 12 12 12h85.28c27.308 0 48.261 9.958 60.97 27.252H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h158.757c-6.217 36.086-32.961 58.632-74.757 58.632H12c-6.627 0-12 5.373-12 12v53.012c0 3.349 1.4 6.546 3.861 8.818l165.052 152.356a12.001 12.001 0 0 0 8.139 3.182h82.562c10.924 0 16.166-13.408 8.139-20.818L116.871 319.906c76.499-2.34 131.144-53.395 138.318-127.906H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-58.69c-3.486-11.541-8.28-22.246-14.252-32H308z" ], + "sad-cry": [ 496, 512, [], "f5b3", "M248 8C111 8 0 119 0 256c0 90.1 48.2 168.7 120 212.1V288c0-8.8 7.2-16 16-16s16 7.2 16 16v196.7c29.5 12.4 62 19.3 96 19.3s66.5-6.9 96-19.3V288c0-8.8 7.2-16 16-16s16 7.2 16 16v180.1C447.8 424.7 496 346 496 256 496 119 385 8 248 8zm-65.5 216.5c-14.8-13.2-46.2-13.2-61 0L112 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c.8 5-1.7 10-6.1 12.4-5.8 3.1-11.2.7-13.7-1.6l-9.7-8.5zM248 416c-26.5 0-48-28.7-48-64s21.5-64 48-64 48 28.7 48 64-21.5 64-48 64zm149.8-181.5c-5.8 3.1-11.2.7-13.7-1.6l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S400 197 404 222.2c.6 4.9-1.8 9.9-6.2 12.3z" ], + "sad-tear": [ 496, 512, [], "f5b4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM152 416c-26.5 0-48-21-48-47 0-20 28.5-60.4 41.6-77.8 3.2-4.3 9.6-4.3 12.8 0C171.5 308.6 200 349 200 369c0 26-21.5 47-48 47zm16-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm170.2 154.2C315.8 367.4 282.9 352 248 352c-21.2 0-21.2-32 0-32 44.4 0 86.3 19.6 114.7 53.8 13.8 16.4-11.2 36.5-24.5 20.4z" ], + save: [ 448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z" ], + school: [ 640, 512, [], "f549", "M0 224v272c0 8.84 7.16 16 16 16h80V192H32c-17.67 0-32 14.33-32 32zm360-48h-24v-40c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v64c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zm137.75-63.96l-160-106.67a32.02 32.02 0 0 0-35.5 0l-160 106.67A32.002 32.002 0 0 0 128 138.66V512h128V368c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v144h128V138.67c0-10.7-5.35-20.7-14.25-26.63zM320 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm288-64h-64v320h80c8.84 0 16-7.16 16-16V224c0-17.67-14.33-32-32-32z" ], + screwdriver: [ 512, 512, [], "f54a", "M448 0L320 96v62.06l-83.03 83.03c6.79 4.25 13.27 9.06 19.07 14.87 5.8 5.8 10.62 12.28 14.87 19.07L353.94 192H416l96-128-64-64zM128 278.59L10.92 395.67c-14.55 14.55-14.55 38.15 0 52.71l52.7 52.7c14.56 14.56 38.15 14.56 52.71 0L233.41 384c29.11-29.11 29.11-76.3 0-105.41s-76.3-29.11-105.41 0z" ], + search: [ 512, 512, [], "f002", "M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z" ], + "search-minus": [ 512, 512, [], "f010", "M304 192v32c0 6.6-5.4 12-12 12H124c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z" ], + "search-plus": [ 512, 512, [], "f00e", "M304 192v32c0 6.6-5.4 12-12 12h-56v56c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-56h-56c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h56v-56c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v56h56c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z" ], + seedling: [ 512, 512, [], "f4d8", "M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z" ], + server: [ 512, 512, [], "f233", "M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z" ], + share: [ 512, 512, [], "f064", "M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z" ], + "share-alt": [ 448, 512, [], "f1e0", "M352 320c-22.608 0-43.387 7.819-59.79 20.895l-102.486-64.054a96.551 96.551 0 0 0 0-41.683l102.486-64.054C308.613 184.181 329.392 192 352 192c53.019 0 96-42.981 96-96S405.019 0 352 0s-96 42.981-96 96c0 7.158.79 14.13 2.276 20.841L155.79 180.895C139.387 167.819 118.608 160 96 160c-53.019 0-96 42.981-96 96s42.981 96 96 96c22.608 0 43.387-7.819 59.79-20.895l102.486 64.054A96.301 96.301 0 0 0 256 416c0 53.019 42.981 96 96 96s96-42.981 96-96-42.981-96-96-96z" ], + "share-alt-square": [ 448, 512, [], "f1e1", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zM304 296c-14.562 0-27.823 5.561-37.783 14.671l-67.958-40.775a56.339 56.339 0 0 0 0-27.793l67.958-40.775C276.177 210.439 289.438 216 304 216c30.928 0 56-25.072 56-56s-25.072-56-56-56-56 25.072-56 56c0 4.797.605 9.453 1.74 13.897l-67.958 40.775C171.823 205.561 158.562 200 144 200c-30.928 0-56 25.072-56 56s25.072 56 56 56c14.562 0 27.823-5.561 37.783-14.671l67.958 40.775a56.088 56.088 0 0 0-1.74 13.897c0 30.928 25.072 56 56 56s56-25.072 56-56C360 321.072 334.928 296 304 296z" ], + "share-square": [ 576, 512, [], "f14d", "M568.482 177.448L424.479 313.433C409.3 327.768 384 317.14 384 295.985v-71.963c-144.575.97-205.566 35.113-164.775 171.353 4.483 14.973-12.846 26.567-25.006 17.33C155.252 383.105 120 326.488 120 269.339c0-143.937 117.599-172.5 264-173.312V24.012c0-21.174 25.317-31.768 40.479-17.448l144.003 135.988c10.02 9.463 10.028 25.425 0 34.896zM384 379.128V448H64V128h50.916a11.99 11.99 0 0 0 8.648-3.693c14.953-15.568 32.237-27.89 51.014-37.676C185.708 80.83 181.584 64 169.033 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48v-88.806c0-8.288-8.197-14.066-16.011-11.302a71.83 71.83 0 0 1-34.189 3.377c-7.27-1.046-13.8 4.514-13.8 11.859z" ], + "shekel-sign": [ 448, 512, [], "f20b", "M248 168v168c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V168c0-75.11-60.89-136-136-136H24C10.75 32 0 42.74 0 56v408c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112h112c30.93 0 56 25.07 56 56zM432 32h-48c-8.84 0-16 7.16-16 16v296c0 30.93-25.07 56-56 56H200V176c0-8.84-7.16-16-16-16h-48c-8.84 0-16 7.16-16 16v280c0 13.25 10.75 24 24 24h168c75.11 0 136-60.89 136-136V48c0-8.84-7.16-16-16-16z" ], + "shield-alt": [ 512, 512, [], "f3ed", "M496 128c0 221.282-135.934 344.645-221.539 380.308a48 48 0 0 1-36.923 0C130.495 463.713 16 326.487 16 128a48 48 0 0 1 29.539-44.308l192-80a48 48 0 0 1 36.923 0l192 80A48 48 0 0 1 496 128zM256 446.313l.066.034c93.735-46.689 172.497-156.308 175.817-307.729L256 65.333v380.98z" ], + ship: [ 640, 512, [], "f21a", "M496.616 372.639l70.012-70.012c16.899-16.9 9.942-45.771-12.836-53.092L512 236.102V96c0-17.673-14.327-32-32-32h-64V24c0-13.255-10.745-24-24-24H248c-13.255 0-24 10.745-24 24v40h-64c-17.673 0-32 14.327-32 32v140.102l-41.792 13.433c-22.753 7.313-29.754 36.173-12.836 53.092l70.012 70.012C125.828 416.287 85.587 448 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24 61.023 0 107.499-20.61 143.258-59.396C181.677 487.432 216.021 512 256 512h128c39.979 0 74.323-24.568 88.742-59.396C508.495 491.384 554.968 512 616 512c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24-60.817 0-101.542-31.001-119.384-75.361zM192 128h256v87.531l-118.208-37.995a31.995 31.995 0 0 0-19.584 0L192 215.531V128z" ], + "shipping-fast": [ 640, 512, [], "f48b", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H112C85.5 0 64 21.5 64 48v48H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h272c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H40c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H64v128c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z" ], + "shoe-prints": [ 640, 512, [], "f54b", "M192 160h32V32h-32c-35.35 0-64 28.65-64 64s28.65 64 64 64zM0 416c0 35.35 28.65 64 64 64h32V352H64c-35.35 0-64 28.65-64 64zm337.46-128c-34.91 0-76.16 13.12-104.73 32-24.79 16.38-44.52 32-104.73 32v128l57.53 15.97c26.21 7.28 53.01 13.12 80.31 15.05 32.69 2.31 65.6.67 97.58-6.2C472.9 481.3 512 429.22 512 384c0-64-84.18-96-174.54-96zM491.42 7.19C459.44.32 426.53-1.33 393.84.99c-27.3 1.93-54.1 7.77-80.31 15.04L256 32v128c60.2 0 79.94 15.62 104.73 32 28.57 18.88 69.82 32 104.73 32C555.82 224 640 192 640 128c0-45.22-39.1-97.3-148.58-120.81z" ], + "shopping-bag": [ 448, 512, [], "f290", "M352 160v-32C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128v32H0v272c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V160h-96zm-192-32c0-35.29 28.71-64 64-64s64 28.71 64 64v32H160v-32zm160 120c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm-192 0c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24z" ], + "shopping-basket": [ 576, 512, [], "f291", "M576 216v16c0 13.255-10.745 24-24 24h-8l-26.113 182.788C514.509 462.435 494.257 480 470.37 480H105.63c-23.887 0-44.139-17.565-47.518-41.212L32 256h-8c-13.255 0-24-10.745-24-24v-16c0-13.255 10.745-24 24-24h67.341l106.78-146.821c10.395-14.292 30.407-17.453 44.701-7.058 14.293 10.395 17.453 30.408 7.058 44.701L170.477 192h235.046L326.12 82.821c-10.395-14.292-7.234-34.306 7.059-44.701 14.291-10.395 34.306-7.235 44.701 7.058L484.659 192H552c13.255 0 24 10.745 24 24zM312 392V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm112 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm-224 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24z" ], + "shopping-cart": [ 576, 512, [], "f07a", "M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z" ], + shower: [ 512, 512, [], "f2cc", "M389.66 135.6L231.6 293.66c-9.37 9.37-24.57 9.37-33.94 0l-11.32-11.32c-9.37-9.37-9.37-24.57 0-33.94l.11-.11c-34.03-40.21-35.16-98.94-3.39-140.38-11.97-7.55-26.14-11.91-41.3-11.91C98.88 96 64 130.88 64 173.76V480H0V173.76C0 95.59 63.59 32 141.76 32c36.93 0 70.61 14.2 95.86 37.42 35.9-11.51 76.5-4.5 106.67 21.03l.11-.11c9.37-9.37 24.57-9.37 33.94 0l11.32 11.32c9.37 9.37 9.37 24.57 0 33.94zM384 208c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm48-16c8.837 0 16 7.163 16 16s-7.163 16-16 16-16-7.163-16-16 7.163-16 16-16zm80 16c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-128 32c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-96 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm64 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16z" ], + "shuttle-van": [ 640, 512, [], "f5b6", "M628.88 210.65L494.39 49.27A48.01 48.01 0 0 0 457.52 32H32C14.33 32 0 46.33 0 64v288c0 17.67 14.33 32 32 32h32c0 53.02 42.98 96 96 96s96-42.98 96-96h128c0 53.02 42.98 96 96 96s96-42.98 96-96h32c17.67 0 32-14.33 32-32V241.38c0-11.23-3.94-22.1-11.12-30.73zM64 192V96h96v96H64zm96 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm160-240h-96V96h96v96zm160 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm-96-240V96h66.02l80 96H384z" ], + sign: [ 512, 512, [], "f4d9", "M496 64H128V16c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16v48H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V128h368c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM160 384h320V160H160v224z" ], + "sign-in-alt": [ 512, 512, [], "f2f6", "M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z" ], + "sign-language": [ 448, 512, [], "f2a7", "M91.434 483.987c-.307-16.018 13.109-29.129 29.13-29.129h62.293v-5.714H56.993c-16.021 0-29.437-13.111-29.13-29.129C28.16 404.491 40.835 392 56.428 392h126.429v-5.714H29.136c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h154.286v-5.714H57.707c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h168.566l-31.085-22.606c-12.762-9.281-15.583-27.149-6.302-39.912 9.281-12.761 27.15-15.582 39.912-6.302l123.361 89.715a34.287 34.287 0 0 1 14.12 27.728v141.136c0 15.91-10.946 29.73-26.433 33.374l-80.471 18.934a137.16 137.16 0 0 1-31.411 3.646H120c-15.593-.001-28.269-12.492-28.566-28.014zm73.249-225.701h36.423l-11.187-8.136c-18.579-13.511-20.313-40.887-3.17-56.536l-13.004-16.7c-9.843-12.641-28.43-15.171-40.88-5.088-12.065 9.771-14.133 27.447-4.553 39.75l36.371 46.71zm283.298-2.103l-5.003-152.452c-.518-15.771-13.722-28.136-29.493-27.619-15.773.518-28.137 13.722-27.619 29.493l1.262 38.415L283.565 11.019c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l76.889 98.745-4.509 3.511-94.79-121.734c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l94.443 121.288-4.509 3.511-77.675-99.754c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l52.053 66.849c12.497-8.257 29.055-8.285 41.69.904l123.36 89.714c10.904 7.93 17.415 20.715 17.415 34.198v16.999l61.064-47.549a34.285 34.285 0 0 0 13.202-28.177z" ], + "sign-out-alt": [ 512, 512, [], "f2f5", "M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z" ], + signal: [ 640, 512, [], "f012", "M36 384h56c6.6 0 12 5.4 12 12v104c0 6.6-5.4 12-12 12H36c-6.6 0-12-5.4-12-12V396c0-6.6 5.4-12 12-12zm116-36v152c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V348c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-80v232c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V268c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-112v344c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V156c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zM536 12v488c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V12c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12z" ], + signature: [ 512, 512, [], "f5b7", "M496 320h-91.86c-9.27 0-19.72-11.31-25.78-28.52-15.23-43.36-48.11-70.3-85.8-70.3-30.84 0-58.47 18.05-76.11 49.23L194.8 106.5C188.84 81.08 169.34 64 146.28 64c-23.05 0-42.55 17.08-48.5 42.5L56.16 284.2C50.7 307.45 37.75 320 28.33 320H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h12.33c41.97 0 78.19-34.23 90.14-85.2l23.84-101.78 29.25 222.11c1.98 15.05 13.82 27.45 28.94 28.75.99.09 1.96.13 2.93.13 14.08 0 26.64-9.27 30.69-22.95l33.03-112.34c5.88-16.72 15.84-27.52 25.41-27.52 9.58 0 19.55 10.8 25.78 28.52 15.23 43.36 48.11 70.3 85.8 70.3H496c8.84 0 16-7.16 16-16v-32c0-8.86-7.16-16.02-16-16.02z" ], + sitemap: [ 640, 512, [], "f0e8", "M128 352H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm-24-80h192v48h48v-48h192v48h48v-57.59c0-21.17-17.23-38.41-38.41-38.41H344v-64h40c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H256c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h40v64H94.41C73.23 224 56 241.23 56 262.41V320h48v-48zm264 80h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm240 0h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z" ], + skull: [ 512, 512, [], "f54c", "M256 0C114.6 0 0 100.3 0 224c0 70.1 36.9 132.6 94.5 173.7 9.6 6.9 15.2 18.1 13.5 29.9l-9.4 66.2c-1.4 9.6 6 18.2 15.7 18.2H192v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h64v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h77.7c9.7 0 17.1-8.6 15.7-18.2l-9.4-66.2c-1.7-11.7 3.8-23 13.5-29.9C475.1 356.6 512 294.1 512 224 512 100.3 397.4 0 256 0zm-96 320c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm192 0c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64z" ], + "sliders-h": [ 512, 512, [], "f1de", "M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z" ], + smile: [ 496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.6-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.4-16.2 38.1 4.2 24.6 20.5z" ], + "smile-beam": [ 496, 512, [], "f5b8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM112 223.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zm250.8 122.8C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.3 24.6 20.5zm6.2-118.3l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.6 8.6-11 11.9-15.1 4.5z" ], + "smile-wink": [ 496, 512, [], "f4da", "M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm158.5 16.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.7 11.1-11.4 18.3-19.8 10.8l-9.7-8.5zM157.8 325.8C180.2 352.7 213 368 248 368s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.2 24.6 20.5C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11.2-36.7 24.6-20.4z" ], + smoking: [ 640, 512, [], "f48d", "M632 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8zM553.3 87.1c-5.7-3.8-9.3-10-9.3-16.8V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v62.3c0 22 10.2 43.4 28.6 55.4 42.2 27.3 67.4 73.8 67.4 124V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-65.5-32.4-126.2-86.7-162.6zM432 352H48c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h384c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zm-32 112H224v-64h176v64zm87.7-322.4C463.8 125 448 99.3 448 70.3V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v66.4c0 43.7 24.6 81.6 60.3 106.7 22.4 15.7 35.7 41.2 35.7 68.6V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-43.3-21-83.4-56.3-108.1zM536 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8z" ], + "smoking-ban": [ 512, 512, [], "f54d", "M96 304c0 8.8 7.2 16 16 16h117.5l-96-96H112c-8.8 0-16 7.2-16 16v64zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 448c-105.9 0-192-86.1-192-192 0-41.4 13.3-79.7 35.7-111.1l267.4 267.4C335.7 434.7 297.4 448 256 448zm45.2-192H384v32h-50.8l-32-32zm111.1 111.1L365.2 320H400c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16H269.2L144.9 99.7C176.3 77.3 214.6 64 256 64c105.9 0 192 86.1 192 192 0 41.4-13.3 79.7-35.7 111.1zM320.6 128c-15.6 0-28.6-11.2-31.4-25.9-.7-3.6-4-6.1-7.7-6.1h-16.2c-5 0-8.7 4.5-8 9.4 4.6 30.9 31.2 54.6 63.3 54.6 15.6 0 28.6 11.2 31.4 25.9.7 3.6 4 6.1 7.7 6.1h16.2c5 0 8.7-4.5 8-9.4-4.6-30.9-31.2-54.6-63.3-54.6z" ], + snowflake: [ 448, 512, [], "f2dc", "M444.816 301.639a24.12 24.12 0 0 0 2.661-16.978c-2.725-12.966-15.339-21.245-28.174-18.492l-87.407 25.046L264 256l67.896-35.215 87.407 25.046c12.835 2.753 25.449-5.526 28.174-18.492 2.725-12.966-5.471-25.708-18.305-28.461l-47.477-7.137 53.077-30.956c11.363-6.627 15.257-21.306 8.696-32.785-6.561-11.479-21.091-15.412-32.454-8.785l-53.077 30.956 17.621-45.104c4.057-12.606-2.768-26.146-15.247-30.245-12.478-4.099-25.883 2.797-29.94 15.402l-22.232 88.99-60.38 35.215V144l65.175-63.945c8.778-9.852 7.987-25.027-1.766-33.894-9.753-8.867-24.775-8.068-33.552 1.784l-29.857 37.967V24c0-13.255-10.637-24-23.758-24s-23.758 10.745-23.758 24v61.912l-29.857-37.967c-8.779-9.852-23.799-10.652-33.552-1.784-9.753 8.867-10.543 24.042-1.766 33.894L200.242 144v70.431l-60.38-35.215-22.232-88.99c-4.057-12.605-17.462-19.501-29.94-15.402-12.478 4.099-19.304 17.64-15.247 30.245l17.62 45.104-53.077-30.956c-11.363-6.627-25.893-2.694-32.454 8.785s-2.667 26.157 8.696 32.785l53.077 30.956-47.477 7.137C5.993 201.634-2.203 214.375.523 227.341c2.725 12.965 15.339 21.245 28.174 18.492l87.407-25.046L184 256l-67.896 35.215-87.406-25.045c-12.835-2.753-25.449 5.526-28.174 18.492-2.725 12.967 5.47 25.708 18.305 28.461l47.477 7.137-53.077 30.956C1.866 357.843-2.027 372.521 4.533 384s21.091 15.412 32.454 8.785l53.077-30.956-17.62 45.104a24.157 24.157 0 0 0 2.022 19.428c2.831 4.953 7.416 8.909 13.224 10.816 12.478 4.099 25.883-2.797 29.94-15.402l22.232-88.99 60.38-35.215V368l-65.175 63.945c-8.778 9.852-7.987 25.027 1.766 33.894 9.754 8.868 24.774 8.068 33.552-1.784l29.857-37.967V488c0 13.255 10.637 24 23.758 24s23.758-10.745 23.758-24v-61.912l29.857 37.967A23.59 23.59 0 0 0 295.282 472a23.534 23.534 0 0 0 15.885-6.161c9.753-8.867 10.544-24.042 1.766-33.894L247.758 368v-70.431l60.38 35.215 22.232 88.99c4.057 12.605 17.462 19.501 29.94 15.402 12.479-4.099 19.304-17.64 15.247-30.245l-17.621-45.104 53.077 30.956c11.363 6.627 25.893 2.694 32.454-8.785s2.667-26.157-8.696-32.785l-53.077-30.956 47.477-7.137c6.86-1.469 12.394-5.793 15.645-11.481z" ], + "solar-panel": [ 640, 512, [], "f5ba", "M431.98 448.01l-47.97.05V416h-128v32.21l-47.98.05c-8.82.01-15.97 7.16-15.98 15.99l-.05 31.73c-.01 8.85 7.17 16.03 16.02 16.02l223.96-.26c8.82-.01 15.97-7.16 15.98-15.98l.04-31.73c.01-8.85-7.17-16.03-16.02-16.02zM585.2 26.74C582.58 11.31 568.99 0 553.06 0H86.93C71 0 57.41 11.31 54.79 26.74-3.32 369.16.04 348.08.03 352c-.03 17.32 14.29 32 32.6 32h574.74c18.23 0 32.51-14.56 32.59-31.79.02-4.08 3.35 16.95-54.76-325.47zM259.83 64h120.33l9.77 96H250.06l9.77-96zm-75.17 256H71.09L90.1 208h105.97l-11.41 112zm16.29-160H98.24l16.29-96h96.19l-9.77 96zm32.82 160l11.4-112h149.65l11.4 112H233.77zm195.5-256h96.19l16.29 96H439.04l-9.77-96zm26.06 256l-11.4-112H549.9l19.01 112H455.33z" ], + sort: [ 320, 512, [], "f0dc", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z" ], + "sort-alpha-down": [ 448, 512, [], "f15d", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zm119.075-180.007A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z" ], + "sort-alpha-up": [ 448, 512, [], "f15e", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zm301.671 98.621A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z" ], + "sort-amount-down": [ 512, 512, [], "f160", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z" ], + "sort-amount-up": [ 512, 512, [], "f161", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z" ], + "sort-down": [ 320, 512, [], "f0dd", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z" ], + "sort-numeric-down": [ 448, 512, [], "f162", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM175.984 368H128V48c0-8.837-7.163-16-16-16H80c-8.837 0-16 7.163-16 16v320H16.019c-14.212 0-21.384 17.244-11.314 27.314l79.981 80.002c6.245 6.245 16.38 6.247 22.627 0l79.984-80.002c10.05-10.05 2.928-27.314-11.313-27.314z" ], + "sort-numeric-up": [ 448, 512, [], "f163", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM16.016 144H64v320c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144h47.981c14.212 0 21.384-17.244 11.314-27.314l-79.981-80.002c-6.245-6.245-16.38-6.247-22.627 0L4.702 116.686C-5.347 126.736 1.775 144 16.016 144z" ], + "sort-up": [ 320, 512, [], "f0de", "M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z" ], + spa: [ 576, 512, [], "f5bb", "M568.25 192c-29.04.13-135.01 6.16-213.84 83-33.12 29.63-53.36 63.3-66.41 94.86-13.05-31.56-33.29-65.23-66.41-94.86-78.83-76.84-184.8-82.87-213.84-83-4.41-.02-7.79 3.4-7.75 7.82.23 27.92 7.14 126.14 88.77 199.3C172.79 480.94 256 480 288 480s115.19.95 199.23-80.88c81.64-73.17 88.54-171.38 88.77-199.3.04-4.42-3.34-7.84-7.75-7.82zM287.98 302.6c12.82-18.85 27.6-35.78 44.09-50.52 19.09-18.61 39.58-33.3 60.26-45.18-16.44-70.5-51.72-133.05-96.73-172.22-4.11-3.58-11.02-3.58-15.14 0-44.99 39.14-80.27 101.63-96.74 172.07 20.37 11.7 40.5 26.14 59.22 44.39a282.768 282.768 0 0 1 45.04 51.46z" ], + "space-shuttle": [ 640, 512, [], "f197", "M592.604 208.244C559.735 192.836 515.777 184 472 184H186.327c-4.952-6.555-10.585-11.978-16.72-16H376C229.157 137.747 219.403 32 96.003 32H96v128H80V32c-26.51 0-48 28.654-48 64v64c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v16c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v64c0 35.346 21.49 64 48 64V352h16v128h.003c123.4 0 133.154-105.747 279.997-136H169.606c6.135-4.022 11.768-9.445 16.72-16H472c43.777 0 87.735-8.836 120.604-24.244C622.282 289.845 640 271.992 640 256s-17.718-33.845-47.396-47.756zM488 296a8 8 0 0 1-8-8v-64a8 8 0 0 1 8-8c31.909 0 31.942 80 0 80z" ], + spinner: [ 512, 512, [], "f110", "M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z" ], + splotch: [ 512, 512, [], "f5bc", "M472.29 195.89l-67.06-22.95c-19.28-6.6-33.54-20.92-38.14-38.3L351.1 74.19c-11.58-43.77-76.57-57.13-109.98-22.62l-46.14 47.67c-13.26 13.71-33.54 20.93-54.2 19.31l-71.88-5.62c-52.05-4.07-86.93 44.88-59.03 82.83l38.54 52.42c11.08 15.07 12.82 33.86 4.64 50.24L24.62 355.4c-20.59 41.25 22.84 84.87 73.49 73.81l69.96-15.28c20.11-4.39 41.45 0 57.07 11.73l54.32 40.83c39.32 29.56 101.04 7.57 104.45-37.22l4.7-61.86c1.35-17.79 12.8-33.86 30.63-42.99l62-31.74c44.88-22.96 39.59-80.17-8.95-96.79z" ], + "spray-can": [ 512, 512, [], "f5bd", "M224 32c0-17.67-14.33-32-32-32h-64c-17.67 0-32 14.33-32 32v96h128V32zm256 96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-256 32H96c-53.02 0-96 42.98-96 96v224c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V256c0-53.02-42.98-96-96-96zm-64 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zM480 96c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm-96 32c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-96-96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 0c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 192c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z" ], + square: [ 448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z" ], + "square-full": [ 512, 512, [], "f45c", "M512 512H0V0h512v512z" ], + stamp: [ 512, 512, [], "f5bf", "M32 512h448v-64H32v64zm384-256h-66.56c-16.26 0-29.44-13.18-29.44-29.44v-9.46c0-27.37 8.88-53.41 21.46-77.72 9.11-17.61 12.9-38.39 9.05-60.42-6.77-38.78-38.47-70.7-77.26-77.45C212.62-9.04 160 37.33 160 96c0 14.16 3.12 27.54 8.69 39.58C182.02 164.43 192 194.7 192 226.49v.07c0 16.26-13.18 29.44-29.44 29.44H96c-53.02 0-96 42.98-96 96v32c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-32c0-53.02-42.98-96-96-96z" ], + star: [ 576, 512, [], "f005", "M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z" ], + "star-half": [ 576, 512, [], "f089", "M288 0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6V0z" ], + "star-half-alt": [ 536, 512, [], "f5c0", "M508.55 171.51L362.18 150.2 296.77 17.81C290.89 5.98 279.42 0 267.95 0c-11.4 0-22.79 5.9-28.69 17.81l-65.43 132.38-146.38 21.29c-26.25 3.8-36.77 36.09-17.74 54.59l105.89 103-25.06 145.48C86.98 495.33 103.57 512 122.15 512c4.93 0 10-1.17 14.87-3.75l130.95-68.68 130.94 68.7c4.86 2.55 9.92 3.71 14.83 3.71 18.6 0 35.22-16.61 31.66-37.4l-25.03-145.49 105.91-102.98c19.04-18.5 8.52-50.8-17.73-54.6zm-121.74 123.2l-18.12 17.62 4.28 24.88 19.52 113.45-102.13-53.59-22.38-11.74.03-317.19 51.03 103.29 11.18 22.63 25.01 3.64 114.23 16.63-82.65 80.38z" ], + "step-backward": [ 448, 512, [], "f048", "M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z" ], + "step-forward": [ 448, 512, [], "f051", "M384 44v424c0 6.6-5.4 12-12 12h-48c-6.6 0-12-5.4-12-12V291.6l-195.5 181C95.9 489.7 64 475.4 64 448V64c0-27.4 31.9-41.7 52.5-24.6L312 219.3V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12z" ], + stethoscope: [ 512, 512, [], "f0f1", "M447.1 112c-34.2.5-62.3 28.4-63 62.6-.5 24.3 12.5 45.6 32 56.8V344c0 57.3-50.2 104-112 104-60 0-109.2-44.1-111.9-99.2C265 333.8 320 269.2 320 192V36.6c0-11.4-8.1-21.3-19.3-23.5L237.8.5c-13-2.6-25.6 5.8-28.2 18.8L206.4 35c-2.6 13 5.8 25.6 18.8 28.2l30.7 6.1v121.4c0 52.9-42.2 96.7-95.1 97.2-53.4.5-96.9-42.7-96.9-96V69.4l30.7-6.1c13-2.6 21.4-15.2 18.8-28.2l-3.1-15.7C107.7 6.4 95.1-2 82.1.6L19.3 13C8.1 15.3 0 25.1 0 36.6V192c0 77.3 55.1 142 128.1 156.8C130.7 439.2 208.6 512 304 512c97 0 176-75.4 176-168V231.4c19.1-11.1 32-31.7 32-55.4 0-35.7-29.2-64.5-64.9-64zm.9 80c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z" ], + "sticky-note": [ 448, 512, [], "f249", "M312 320h136V56c0-13.3-10.7-24-24-24H24C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h264V344c0-13.2 10.8-24 24-24zm129 55l-98 98c-4.5 4.5-10.6 7-17 7h-6V352h128v6.1c0 6.3-2.5 12.4-7 16.9z" ], + stop: [ 448, 512, [], "f04d", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z" ], + "stop-circle": [ 512, 512, [], "f28d", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z" ], + stopwatch: [ 448, 512, [], "f2f2", "M432 304c0 114.9-93.1 208-208 208S16 418.9 16 304c0-104 76.3-190.2 176-205.5V64h-28c-6.6 0-12-5.4-12-12V12c0-6.6 5.4-12 12-12h120c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-28v34.5c37.5 5.8 71.7 21.6 99.7 44.6l27.5-27.5c4.7-4.7 12.3-4.7 17 0l28.3 28.3c4.7 4.7 4.7 12.3 0 17l-29.4 29.4-.6.6C419.7 223.3 432 262.2 432 304zm-176 36V188.5c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12V340c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z" ], + store: [ 616, 512, [], "f54e", "M602 118.6L537.1 15C531.3 5.7 521 0 510 0H106C95 0 84.7 5.7 78.9 15L14 118.6c-33.5 53.5-3.8 127.9 58.8 136.4 4.5.6 9.1.9 13.7.9 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18.1 20.1 44.3 33.1 73.8 33.1 4.7 0 9.2-.3 13.7-.9 62.8-8.4 92.6-82.8 59-136.4zM529.5 288c-10 0-19.9-1.5-29.5-3.8V384H116v-99.8c-9.6 2.2-19.5 3.8-29.5 3.8-6 0-12.1-.4-18-1.2-5.6-.8-11.1-2.1-16.4-3.6V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V283.2c-5.4 1.6-10.8 2.9-16.4 3.6-6.1.8-12.1 1.2-18.2 1.2z" ], + "store-alt": [ 640, 512, [], "f54f", "M320 384H128V224H64v256c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V224h-64v160zm314.6-241.8l-85.3-128c-6-8.9-16-14.2-26.7-14.2H117.4c-10.7 0-20.7 5.3-26.6 14.2l-85.3 128c-14.2 21.3 1 49.8 26.6 49.8H608c25.5 0 40.7-28.5 26.6-49.8zM512 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h-64v272z" ], + stream: [ 512, 512, [], "f550", "M16 128h416c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H16C7.16 32 0 39.16 0 48v64c0 8.84 7.16 16 16 16zm480 80H80c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm-64 176H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16z" ], + "street-view": [ 512, 512, [], "f21d", "M192 64c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zm112 80h-11.36c-22.711 10.443-49.59 10.894-73.28 0H208c-26.51 0-48 21.49-48 48v104c0 13.255 10.745 24 24 24h16v104c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V320h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48zm85.642 189.152a72.503 72.503 0 0 1-29.01 27.009C391.133 365.251 480 385.854 480 416c0 46.304-167.656 64-224 64-70.303 0-224-20.859-224-64 0-30.123 88.361-50.665 119.367-55.839a72.516 72.516 0 0 1-29.01-27.009C74.959 343.395 0 367.599 0 416c0 77.111 178.658 96 256 96 77.249 0 256-18.865 256-96 0-48.403-74.967-72.606-122.358-82.848z" ], + strikethrough: [ 512, 512, [], "f0cc", "M496 288H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h480c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16zm-214.666 16c27.258 12.937 46.524 28.683 46.524 56.243 0 33.108-28.977 53.676-75.621 53.676-32.325 0-76.874-12.08-76.874-44.271V368c0-8.837-7.164-16-16-16H113.75c-8.836 0-16 7.163-16 16v19.204c0 66.845 77.717 101.82 154.487 101.82 88.578 0 162.013-45.438 162.013-134.424 0-19.815-3.618-36.417-10.143-50.6H281.334zm-30.952-96c-32.422-13.505-56.836-28.946-56.836-59.683 0-33.92 30.901-47.406 64.962-47.406 42.647 0 64.962 16.593 64.962 32.985V136c0 8.837 7.164 16 16 16h45.613c8.836 0 16-7.163 16-16v-30.318c0-52.438-71.725-79.875-142.575-79.875-85.203 0-150.726 40.972-150.726 125.646 0 22.71 4.665 41.176 12.777 56.547h129.823z" ], + stroopwafel: [ 512, 512, [], "f551", "M188.12 210.74L142.86 256l45.25 45.25L233.37 256l-45.25-45.26zm113.13-22.62L256 142.86l-45.25 45.25L256 233.37l45.25-45.25zm-90.5 135.76L256 369.14l45.26-45.26L256 278.63l-45.25 45.25zM256 0C114.62 0 0 114.62 0 256s114.62 256 256 256 256-114.62 256-256S397.38 0 256 0zm186.68 295.6l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-28.29-28.29-45.25 45.25 33.94 33.94 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-33.94-33.94-45.26 45.26 28.29 28.29c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0L256 414.39l-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l28.29-28.29-45.25-45.26-33.94 33.94 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 33.94-33.94-45.25-45.25-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0L69.32 295.6c-3.12-3.12-3.12-8.19 0-11.31L97.61 256l-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l28.29 28.29 45.25-45.26-33.94-33.94-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 33.94 33.94 45.26-45.25-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0L256 97.61l28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-28.29 28.29 45.26 45.25 33.94-33.94-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-33.94 33.94 45.25 45.26 28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31L414.39 256l28.29 28.28a8.015 8.015 0 0 1 0 11.32zM278.63 256l45.26 45.25L369.14 256l-45.25-45.26L278.63 256z" ], + subscript: [ 512, 512, [], "f12c", "M395.198 416c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 256c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 96H16C7.163 96 0 88.837 0 80V48c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035A15.999 15.999 0 0 1 204.226 32H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 256H272z" ], + subway: [ 448, 512, [], "f239", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zM200 232V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm200 0V120c0-13.255-10.745-24-24-24H272c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm-48 56c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm-256 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z" ], + suitcase: [ 512, 512, [], "f0f2", "M128 480h256V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v400zm64-384h128v32H192V96zm320 80v256c0 26.5-21.5 48-48 48h-48V128h48c26.5 0 48 21.5 48 48zM96 480H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h48v352z" ], + "suitcase-rolling": [ 384, 512, [], "f5c1", "M336 160H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h16v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h128v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h16c26.51 0 48-21.49 48-48V208c0-26.51-21.49-48-48-48zm-16 216c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zM144 48h96v80h48V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v80h48V48z" ], + sun: [ 512, 512, [], "f185", "M274.835 12.646l25.516 62.393c4.213 10.301 16.671 14.349 26.134 8.492l57.316-35.479c15.49-9.588 34.808 4.447 30.475 22.142l-16.03 65.475c-2.647 10.81 5.053 21.408 16.152 22.231l67.224 4.987c18.167 1.348 25.546 24.057 11.641 35.826L441.81 242.26c-8.495 7.19-8.495 20.289 0 27.479l51.454 43.548c13.906 11.769 6.527 34.478-11.641 35.826l-67.224 4.987c-11.099.823-18.799 11.421-16.152 22.231l16.03 65.475c4.332 17.695-14.986 31.73-30.475 22.142l-57.316-35.479c-9.463-5.858-21.922-1.81-26.134 8.492l-25.516 62.393c-6.896 16.862-30.774 16.862-37.67 0l-25.516-62.393c-4.213-10.301-16.671-14.349-26.134-8.492l-57.317 35.479c-15.49 9.588-34.808-4.447-30.475-22.142l16.03-65.475c2.647-10.81-5.053-21.408-16.152-22.231l-67.224-4.987c-18.167-1.348-25.546-24.057-11.641-35.826L70.19 269.74c8.495-7.19 8.495-20.289 0-27.479l-51.454-43.548c-13.906-11.769-6.527-34.478 11.641-35.826l67.224-4.987c11.099-.823 18.799-11.421 16.152-22.231l-16.03-65.475c-4.332-17.695 14.986-31.73 30.475-22.142l57.317 35.479c9.463 5.858 21.921 1.81 26.134-8.492l25.516-62.393c6.896-16.861 30.774-16.861 37.67 0zM392 256c0-74.991-61.01-136-136-136-74.991 0-136 61.009-136 136s61.009 136 136 136c74.99 0 136-61.009 136-136zm-32 0c0 57.346-46.654 104-104 104s-104-46.654-104-104 46.654-104 104-104 104 46.654 104 104z" ], + superscript: [ 512, 512, [], "f12b", "M395.198 256c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 256H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035a16 16 0 0 1 13.598-7.567H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 416H272z" ], + surprise: [ 496, 512, [], "f5c2", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm112 208c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm80-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + swatchbook: [ 511, 512, [], "f5c3", "M479.06 320H372.29L186.15 506.51c-2.06 2.07-4.49 3.58-6.67 5.49h299.58c17.64 0 31.94-14.33 31.94-32V352c0-17.67-14.3-32-31.94-32zm-44.5-152.9l-90.33-90.51c-12.47-12.5-32.69-12.5-45.17 0l-75.5 75.65V416c0 2.96-.67 5.73-.87 8.64l211.87-212.28c12.47-12.5 12.47-32.77 0-45.26zM191.62 32c0-17.67-14.3-32-31.94-32H31.94C14.3 0 0 14.33 0 32v384c0 53.02 42.9 96 95.81 96s95.81-42.98 95.81-96V32zM95.81 440c-13.23 0-23.95-10.75-23.95-24 0-13.26 10.73-24 23.95-24s23.95 10.74 23.95 24c.01 13.25-10.72 24-23.95 24zm31.94-184H63.88v-64h63.88v64zm0-128H63.88V64h63.88v64z" ], + swimmer: [ 640, 512, [], "f5c4", "M189.61 310.58c3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c16.02-14.77 34.5-22.58 53.46-22.58h16.3c18.96 0 37.45 7.81 53.46 22.58 3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c14.86-13.71 31.88-21.12 49.39-22.16l-112.84-80.6 18-12.86c3.64-2.58 8.28-3.52 12.62-2.61l100.35 21.53c25.91 5.53 51.44-10.97 57-36.88 5.55-25.92-10.95-51.44-36.88-57L437.68 98.47c-30.73-6.58-63.02.12-88.56 18.38l-80.02 57.17c-10.38 7.39-19.36 16.44-26.72 26.94L173.75 299c5.47 3.23 10.82 6.93 15.86 11.58zM624 352h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 343.58 442.04 352 416 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 343.58 250.04 352 224 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 343.58 58.04 352 32 352H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-512-96c44.18 0 80-35.82 80-80s-35.82-80-80-80-80 35.82-80 80 35.82 80 80 80z" ], + "swimming-pool": [ 640, 512, [], "f5c5", "M624 416h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 407.58 442.04 416 416 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 407.58 250.04 416 224 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 407.58 58.04 416 32 416H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-400-32v-96h192v96c19.12 0 30.86-6.16 34.39-9.42 9.17-8.46 19.2-14.34 29.61-18.07V128c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v96H224v-96c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v228.5c10.41 3.73 20.44 9.62 29.61 18.07 3.53 3.27 15.27 9.43 34.39 9.43z" ], + sync: [ 512, 512, [], "f021", "M440.935 12.574l3.966 82.766C399.416 41.904 331.674 8 256 8 134.813 8 33.933 94.924 12.296 209.824 10.908 217.193 16.604 224 24.103 224h49.084c5.57 0 10.377-3.842 11.676-9.259C103.407 137.408 172.931 80 256 80c60.893 0 114.512 30.856 146.104 77.801l-101.53-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12h-47.411c-6.853 0-12.315 5.729-11.987 12.574zM256 432c-60.895 0-114.517-30.858-146.109-77.805l101.868 4.871c6.845.327 12.573-5.134 12.573-11.986v-47.412c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12V500c0 6.627 5.373 12 12 12h47.385c6.863 0 12.328-5.745 11.985-12.599l-4.129-82.575C112.725 470.166 180.405 504 256 504c121.187 0 222.067-86.924 243.704-201.824 1.388-7.369-4.308-14.176-11.807-14.176h-49.084c-5.57 0-10.377 3.842-11.676 9.259C408.593 374.592 339.069 432 256 432z" ], + "sync-alt": [ 512, 512, [], "f2f1", "M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z" ], + syringe: [ 512, 512, [], "f48e", "M201.5 174.8l55.7 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-55.7-55.8-45.3 45.3 55.8 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L111 265.2l-26.4 26.4c-17.3 17.3-25.6 41.1-23 65.4l7.1 63.6L2.3 487c-3.1 3.1-3.1 8.2 0 11.3l11.3 11.3c3.1 3.1 8.2 3.1 11.3 0l66.3-66.3 63.6 7.1c23.9 2.6 47.9-5.4 65.4-23l181.9-181.9-135.7-135.7-64.9 65zm308.2-93.3L430.5 2.3c-3.1-3.1-8.2-3.1-11.3 0l-11.3 11.3c-3.1 3.1-3.1 8.2 0 11.3l28.3 28.3-45.3 45.3-56.6-56.6-17-17c-3.1-3.1-8.2-3.1-11.3 0l-33.9 33.9c-3.1 3.1-3.1 8.2 0 11.3l17 17L424.8 223l17 17c3.1 3.1 8.2 3.1 11.3 0l33.9-34c3.1-3.1 3.1-8.2 0-11.3l-73.5-73.5 45.3-45.3 28.3 28.3c3.1 3.1 8.2 3.1 11.3 0l11.3-11.3c3.1-3.2 3.1-8.2 0-11.4z" ], + table: [ 512, 512, [], "f0ce", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64v-96h160v96zm0-160H64v-96h160v96zm224 160H288v-96h160v96zm0-160H288v-96h160v96z" ], + "table-tennis": [ 512, 512, [], "f45d", "M496.2 296.5C527.7 218.7 512 126.2 449 63.1 365.1-21 229-21 145.1 63.1l-56 56.1 211.5 211.5c46.1-62.1 131.5-77.4 195.6-34.2zm-217.9 79.7L57.9 155.9c-27.3 45.3-21.7 105 17.3 144.1l34.5 34.6L6.7 424c-8.6 7.5-9.1 20.7-1 28.8l53.4 53.5c8 8.1 21.2 7.6 28.7-1L177.1 402l35.7 35.7c19.7 19.7 44.6 30.5 70.3 33.3-7.1-17-11-35.6-11-55.1-.1-13.8 2.5-27 6.2-39.7zM416 320c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96z" ], + tablet: [ 448, 512, [], "f10a", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + "tablet-alt": [ 448, 512, [], "f3fa", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm176-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h328c6.6 0 12 5.4 12 12v312z" ], + tablets: [ 640, 512, [], "f490", "M160 192C78.9 192 12.5 250.5.1 326.7c-.8 4.8 3.3 9.3 8.3 9.3h303.3c5 0 9.1-4.5 8.3-9.3C307.5 250.5 241.1 192 160 192zm151.6 176H8.4c-5 0-9.1 4.5-8.3 9.3C12.5 453.5 78.9 512 160 512s147.5-58.5 159.9-134.7c.8-4.8-3.3-9.3-8.3-9.3zM593.4 46.6c-56.5-56.5-144.2-61.4-206.9-16-4 2.9-4.3 8.9-.8 12.3L597 254.3c3.5 3.5 9.5 3.2 12.3-.8 45.5-62.7 40.6-150.4-15.9-206.9zM363 65.7c-3.5-3.5-9.5-3.2-12.3.8-45.4 62.7-40.5 150.4 15.9 206.9 56.5 56.5 144.2 61.4 206.9 15.9 4-2.9 4.3-8.9.8-12.3L363 65.7z" ], + "tachometer-alt": [ 576, 512, [], "f3fd", "M75.694 480a48.02 48.02 0 0 1-42.448-25.571C12.023 414.3 0 368.556 0 320 0 160.942 128.942 32 288 32s288 128.942 288 288c0 48.556-12.023 94.3-33.246 134.429A48.018 48.018 0 0 1 500.306 480H75.694zM512 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zM288 128c17.673 0 32-14.327 32-32 0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32zM64 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm65.608-158.392c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm316.784 0c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm-87.078 31.534c-12.627-4.04-26.133 2.92-30.173 15.544l-45.923 143.511C250.108 322.645 224 350.264 224 384c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64 0-19.773-8.971-37.447-23.061-49.187l45.919-143.498c4.039-12.625-2.92-26.133-15.544-30.173z" ], + tag: [ 512, 512, [], "f02b", "M0 252.118V48C0 21.49 21.49 0 48 0h204.118a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882L293.823 497.941c-18.745 18.745-49.137 18.745-67.882 0L14.059 286.059A48 48 0 0 1 0 252.118zM112 64c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z" ], + tags: [ 640, 512, [], "f02c", "M497.941 225.941L286.059 14.059A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v204.118a48 48 0 0 0 14.059 33.941l211.882 211.882c18.744 18.745 49.136 18.746 67.882 0l204.118-204.118c18.745-18.745 18.745-49.137 0-67.882zM112 160c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm513.941 133.823L421.823 497.941c-18.745 18.745-49.137 18.745-67.882 0l-.36-.36L527.64 323.522c16.999-16.999 26.36-39.6 26.36-63.64s-9.362-46.641-26.36-63.64L331.397 0h48.721a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882z" ], + tape: [ 640, 512, [], "f4db", "M224 192c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm400 224H380.6c41.5-40.7 67.4-97.3 67.4-160 0-123.7-100.3-224-224-224S0 132.3 0 256s100.3 224 224 224h400c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400-64c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96z" ], + tasks: [ 512, 512, [], "f0ae", "M208 132h288c8.8 0 16-7.2 16-16V76c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zM64 368c-26.5 0-48.6 21.5-48.6 48s22.1 48 48.6 48 48-21.5 48-48-21.5-48-48-48zm92.5-299l-72.2 72.2-15.6 15.6c-4.7 4.7-12.9 4.7-17.6 0L3.5 109.4c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.3c4.7-4.7 12.3-4.7 17 0l17 16.5c4.6 4.7 4.6 12.3-.1 17zm0 159.6l-72.2 72.2-15.7 15.7c-4.7 4.7-12.9 4.7-17.6 0L3.5 269c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.7c4.7-4.7 12.3-4.7 17 0l17 17c4.6 4.6 4.6 12.2-.1 16.9z" ], + taxi: [ 512, 512, [], "f1ba", "M462 241.64l-22-84.84c-9.6-35.2-41.6-60.8-76.8-60.8H352V64c0-17.67-14.33-32-32-32H192c-17.67 0-32 14.33-32 32v32h-11.2c-35.2 0-67.2 25.6-76.8 60.8l-22 84.84C21.41 248.04 0 273.47 0 304v48c0 23.63 12.95 44.04 32 55.12V448c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-40.88c19.05-11.09 32-31.5 32-55.12v-48c0-30.53-21.41-55.96-50-62.36zM96 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm20.55-112l17.2-66.36c2.23-8.16 9.59-13.64 15.06-13.64h214.4c5.47 0 12.83 5.48 14.85 12.86L395.45 240h-278.9zM416 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + terminal: [ 640, 512, [], "f120", "M257.981 272.971L63.638 467.314c-9.373 9.373-24.569 9.373-33.941 0L7.029 444.647c-9.357-9.357-9.375-24.522-.04-33.901L161.011 256 6.99 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L257.981 239.03c9.373 9.372 9.373 24.568 0 33.941zM640 456v-32c0-13.255-10.745-24-24-24H312c-13.255 0-24 10.745-24 24v32c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z" ], + "text-height": [ 576, 512, [], "f034", "M16 32h288c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96h-54.761v320H232c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H88c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm475.308 4.685l79.995 80.001C581.309 126.693 574.297 144 559.99 144H512v224h48c15.639 0 20.635 17.991 11.313 27.314l-79.995 80.001c-6.247 6.247-16.381 6.245-22.626 0l-79.995-80.001C378.691 385.307 385.703 368 400.01 368H448V144h-48c-15.639 0-20.635-17.991-11.313-27.314l79.995-80.001c6.247-6.248 16.381-6.245 22.626 0z" ], + "text-width": [ 448, 512, [], "f035", "M16 32h416c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96H261.743v128H296c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H152c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm427.315 340.682l-80.001-79.995C353.991 283.365 336 288.362 336 304v48H112v-47.99c0-14.307-17.307-21.319-27.314-11.313L4.685 372.692c-6.245 6.245-6.247 16.379 0 22.626l80.001 79.995C94.009 484.635 112 479.638 112 464v-48h224v47.99c0 14.307 17.307 21.319 27.314 11.313l80.001-79.995c6.245-6.245 6.248-16.379 0-22.626z" ], + th: [ 512, 512, [], "f00a", "M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z" ], + "th-large": [ 512, 512, [], "f009", "M296 32h192c13.255 0 24 10.745 24 24v160c0 13.255-10.745 24-24 24H296c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24zm-80 0H24C10.745 32 0 42.745 0 56v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zM0 296v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm296 184h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H296c-13.255 0-24 10.745-24 24v160c0 13.255 10.745 24 24 24z" ], + "th-list": [ 512, 512, [], "f00b", "M149.333 216v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zM125.333 32H24C10.745 32 0 42.745 0 56v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zm80 448H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm-24-424v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24zm24 264H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24z" ], + thermometer: [ 512, 512, [], "f491", "M476.8 20.4c-37.5-30.7-95.5-26.3-131.9 10.2l-45.7 46 50.5 50.5c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.4-50.5-45.1 45.4 50.3 50.4c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L209 167.4l-45.1 45.4L214 263c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.1-50.2L96 281.1V382L7 471c-9.4 9.4-9.4 24.6 0 33.9 9.4 9.4 24.6 9.4 33.9 0l89-89h99.9L484 162.6c34.9-34.9 42.2-101.5-7.2-142.2z" ], + "thermometer-empty": [ 256, 512, [], "f2cb", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z" ], + "thermometer-full": [ 256, 512, [], "f2c7", "M224 96c0-53.019-42.981-96-96-96S32 42.981 32 96v203.347C12.225 321.756.166 351.136.002 383.333c-.359 70.303 56.787 128.176 127.089 128.664.299.002.61.003.909.003 70.698 0 128-57.304 128-128 0-32.459-12.088-62.09-32-84.653V96zm-96 368l-.576-.002c-43.86-.304-79.647-36.544-79.423-80.42.173-33.98 19.266-51.652 31.999-66.08V96c0-26.467 21.533-48 48-48s48 21.533 48 48v221.498c12.63 14.312 32 32.164 32 66.502 0 44.112-35.888 80-80 80zm64-80c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V96c0-17.673 14.327-32 32-32s32 14.327 32 32v232.583c19.124 11.068 32 31.732 32 55.417z" ], + "thermometer-half": [ 256, 512, [], "f2c9", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V224c0-17.673 14.327-32 32-32s32 14.327 32 32v104.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z" ], + "thermometer-quarter": [ 256, 512, [], "f2ca", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V288c0-17.673 14.327-32 32-32s32 14.327 32 32v40.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z" ], + "thermometer-three-quarters": [ 256, 512, [], "f2c8", "M192 384c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-23.685 12.876-44.349 32-55.417V160c0-17.673 14.327-32 32-32s32 14.327 32 32v168.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z" ], + "thumbs-down": [ 512, 512, [], "f165", "M0 56v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56zm40 200c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24zm272 256c-20.183 0-29.485-39.293-33.931-57.795-5.206-21.666-10.589-44.07-25.393-58.902-32.469-32.524-49.503-73.967-89.117-113.111a11.98 11.98 0 0 1-3.558-8.521V59.901c0-6.541 5.243-11.878 11.783-11.998 15.831-.29 36.694-9.079 52.651-16.178C256.189 17.598 295.709.017 343.995 0h2.844c42.777 0 93.363.413 113.774 29.737 8.392 12.057 10.446 27.034 6.148 44.632 16.312 17.053 25.063 48.863 16.382 74.757 17.544 23.432 19.143 56.132 9.308 79.469l.11.11c11.893 11.949 19.523 31.259 19.439 49.197-.156 30.352-26.157 58.098-59.553 58.098H350.723C358.03 364.34 384 388.132 384 430.548 384 504 336 512 312 512z" ], + "thumbs-up": [ 512, 512, [], "f164", "M104 224H24c-13.255 0-24 10.745-24 24v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V248c0-13.255-10.745-24-24-24zM64 472c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zM384 81.452c0 42.416-25.97 66.208-33.277 94.548h101.723c33.397 0 59.397 27.746 59.553 58.098.084 17.938-7.546 37.249-19.439 49.197l-.11.11c9.836 23.337 8.237 56.037-9.308 79.469 8.681 25.895-.069 57.704-16.382 74.757 4.298 17.598 2.244 32.575-6.148 44.632C440.202 511.587 389.616 512 346.839 512l-2.845-.001c-48.287-.017-87.806-17.598-119.56-31.725-15.957-7.099-36.821-15.887-52.651-16.178-6.54-.12-11.783-5.457-11.783-11.998v-213.77c0-3.2 1.282-6.271 3.558-8.521 39.614-39.144 56.648-80.587 89.117-113.111 14.804-14.832 20.188-37.236 25.393-58.902C282.515 39.293 291.817 0 312 0c24 0 72 8 72 81.452z" ], + thumbtack: [ 384, 512, [], "f08d", "M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z" ], + "ticket-alt": [ 576, 512, [], "f3ff", "M128 160h320v192H128V160zm400 96c0 26.51 21.49 48 48 48v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c26.51 0 48-21.49 48-48s-21.49-48-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v96c-26.51 0-48 21.49-48 48zm-48-104c0-13.255-10.745-24-24-24H120c-13.255 0-24 10.745-24 24v208c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V152z" ], + times: [ 352, 512, [], "f00d", "M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" ], + "times-circle": [ 512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z" ], + tint: [ 352, 512, [], "f043", "M205.22 22.09c-7.94-28.78-49.44-30.12-58.44 0C100.01 179.85 0 222.72 0 333.91 0 432.35 78.72 512 176 512s176-79.65 176-178.09c0-111.75-99.79-153.34-146.78-311.82zM176 448c-61.75 0-112-50.25-112-112 0-8.84 7.16-16 16-16s16 7.16 16 16c0 44.11 35.89 80 80 80 8.84 0 16 7.16 16 16s-7.16 16-16 16z" ], + "tint-slash": [ 640, 512, [], "f5c7", "M633.82 458.1L494.97 350.78c.52-5.57 1.03-11.16 1.03-16.87 0-111.76-99.79-153.34-146.78-311.82-7.94-28.78-49.44-30.12-58.44 0-15.52 52.34-36.87 91.96-58.49 125.68L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM144 333.91C144 432.35 222.72 512 320 512c44.71 0 85.37-16.96 116.4-44.7L162.72 255.78c-11.41 23.5-18.72 48.35-18.72 78.13z" ], + tired: [ 496, 512, [], "f5c8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 288c51.9 0 115.3 43.8 123.2 106.7 1.7 13.6-8 24.6-17.7 20.4-25.9-11.1-64.4-17.4-105.5-17.4s-79.6 6.3-105.5 17.4c-9.8 4.2-19.4-7-17.7-20.4C132.7 331.8 196.1 288 248 288z" ], + "toggle-off": [ 576, 512, [], "f204", "M384 64H192C85.961 64 0 149.961 0 256s85.961 192 192 192h192c106.039 0 192-85.961 192-192S490.039 64 384 64zM64 256c0-70.741 57.249-128 128-128 70.741 0 128 57.249 128 128 0 70.741-57.249 128-128 128-70.741 0-128-57.249-128-128zm320 128h-48.905c65.217-72.858 65.236-183.12 0-256H384c70.741 0 128 57.249 128 128 0 70.74-57.249 128-128 128z" ], + "toggle-on": [ 576, 512, [], "f205", "M576 256c0 106.039-85.961 192-192 192H192C85.961 448 0 362.039 0 256S85.961 64 192 64h192c106.039 0 192 85.961 192 192zM384 128c-70.741 0-128 57.249-128 128 0 70.741 57.249 128 128 128 70.741 0 128-57.249 128-128 0-70.741-57.249-128-128-128" ], + toolbox: [ 512, 512, [], "f552", "M502.63 214.63l-45.25-45.25c-6-6-14.14-9.37-22.63-9.37H384V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v80H77.25c-8.49 0-16.62 3.37-22.63 9.37L9.37 214.63c-6 6-9.37 14.14-9.37 22.63V320h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-82.75c0-8.48-3.37-16.62-9.37-22.62zM320 160H192V96h128v64zm64 208c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H192v16c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H0v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96H384v16z" ], + tooth: [ 448, 512, [], "f5c9", "M443.98 96.25c-11.01-45.22-47.11-82.06-92.01-93.72-32.19-8.36-63 5.1-89.14 24.33-3.25 2.39-6.96 3.73-10.5 5.48l28.32 18.21c7.42 4.77 9.58 14.67 4.8 22.11-4.46 6.95-14.27 9.86-22.11 4.8L162.83 12.84c-20.7-10.85-43.38-16.4-66.81-10.31-44.9 11.67-81 48.5-92.01 93.72-10.13 41.62-.42 80.81 21.5 110.43 23.36 31.57 32.68 68.66 36.29 107.35 4.4 47.16 10.33 94.16 20.94 140.32l7.8 33.95c3.19 13.87 15.49 23.7 29.67 23.7 13.97 0 26.15-9.55 29.54-23.16l34.47-138.42c4.56-18.32 20.96-31.16 39.76-31.16s35.2 12.85 39.76 31.16l34.47 138.42c3.39 13.61 15.57 23.16 29.54 23.16 14.18 0 26.48-9.83 29.67-23.7l7.8-33.95c10.61-46.15 16.53-93.16 20.94-140.32 3.61-38.7 12.93-75.78 36.29-107.35 21.95-29.61 31.66-68.8 21.53-110.43z" ], + trademark: [ 640, 512, [], "f25c", "M97.119 163.133H12c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h248.559c6.627 0 12 5.373 12 12v43.133c0 6.627-5.373 12-12 12H175.44V404c0 6.627-5.373 12-12 12h-54.322c-6.627 0-12-5.373-12-12V163.133zM329.825 96h65.425a12 12 0 0 1 11.346 8.093l43.759 127.068c7.161 20.588 16.111 52.812 16.111 52.812h.896s8.95-32.224 16.111-52.812l43.758-127.068A12 12 0 0 1 538.577 96h65.41a12 12 0 0 1 11.961 11.03l24.012 296c.567 6.987-4.951 12.97-11.961 12.97h-54.101a12 12 0 0 1-11.972-11.182l-9.082-132.93c-1.79-24.168 0-53.706 0-53.706h-.896s-10.741 33.566-17.902 53.706l-30.7 84.731a12 12 0 0 1-11.282 7.912h-50.302a12 12 0 0 1-11.282-7.912l-30.7-84.731c-7.161-20.14-17.903-53.706-17.903-53.706h-.895s1.79 29.538 0 53.706l-9.082 132.93c-.428 6.295-5.66 11.182-11.97 11.182H305.4c-7.017 0-12.536-5.994-11.959-12.987l24.425-296A11.999 11.999 0 0 1 329.825 96z" ], + train: [ 448, 512, [], "f238", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zm-48 136V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24zm-176 64c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56z" ], + transgender: [ 384, 512, [], "f224", "M372 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C198.5 104.1 172.2 96 144 96 64.5 96 0 160.5 0 240c0 68.5 47.9 125.9 112 140.4V408H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM144 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" ], + "transgender-alt": [ 480, 512, [], "f225", "M468 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C294.5 104.1 268.2 96 240 96c-28.2 0-54.5 8.1-76.7 22.1l-16.5-16.5 19.8-19.8c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0l-19.8 19.8-19-19 16.9-16.9C107.1 12.9 101.7 0 91 0H12C5.4 0 0 5.4 0 12v79c0 10.7 12.9 16 20.5 8.5l16.9-16.9 19 19-19.8 19.8c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l19.8-19.8 16.5 16.5C104.1 185.5 96 211.8 96 240c0 68.5 47.9 125.9 112 140.4V408h-36c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM240 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" ], + trash: [ 448, 512, [], "f1f8", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm415.2 56.7L394.8 467c-1.6 25.3-22.6 45-47.9 45H101.1c-25.3 0-46.3-19.7-47.9-45L32.8 140.7c-.4-6.9 5.1-12.7 12-12.7h358.5c6.8 0 12.3 5.8 11.9 12.7z" ], + "trash-alt": [ 448, 512, [], "f2ed", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm416 56v324c0 26.5-21.5 48-48 48H80c-26.5 0-48-21.5-48-48V140c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12zm-272 68c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208z" ], + tree: [ 384, 512, [], "f1bb", "M377.33 375.429L293.906 288H328c21.017 0 31.872-25.207 17.448-40.479L262.79 160H296c20.878 0 31.851-24.969 17.587-40.331l-104-112.003c-9.485-10.214-25.676-10.229-35.174 0l-104 112.003C56.206 134.969 67.037 160 88 160h33.21l-82.659 87.521C24.121 262.801 34.993 288 56 288h34.094L6.665 375.429C-7.869 390.655 2.925 416 24.025 416H144c0 32.781-11.188 49.26-33.995 67.506C98.225 492.93 104.914 512 120 512h144c15.086 0 21.776-19.069 9.995-28.494-19.768-15.814-33.992-31.665-33.995-67.496V416h119.97c21.05 0 31.929-25.309 17.36-40.571z" ], + trophy: [ 576, 512, [], "f091", "M552 64H448V24c0-13.3-10.7-24-24-24H152c-13.3 0-24 10.7-24 24v40H24C10.7 64 0 74.7 0 88v56c0 35.7 22.5 72.4 61.9 100.7 31.5 22.7 69.8 37.1 110 41.7C203.3 338.5 240 360 240 360v72h-48c-35.3 0-64 20.7-64 56v12c0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12v-12c0-35.3-28.7-56-64-56h-48v-72s36.7-21.5 68.1-73.6c40.3-4.6 78.6-19 110-41.7 39.3-28.3 61.9-65 61.9-100.7V88c0-13.3-10.7-24-24-24zM99.3 192.8C74.9 175.2 64 155.6 64 144v-16h64.2c1 32.6 5.8 61.2 12.8 86.2-15.1-5.2-29.2-12.4-41.7-21.4zM512 144c0 16.1-17.7 36.1-35.3 48.8-12.5 9-26.7 16.2-41.8 21.4 7-25 11.8-53.6 12.8-86.2H512v16z" ], + truck: [ 640, 512, [], "f0d1", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z" ], + "truck-loading": [ 640, 512, [], "f4de", "M50.2 375.6c2.3 8.5 11.1 13.6 19.6 11.3l216.4-58c8.5-2.3 13.6-11.1 11.3-19.6l-49.7-185.5c-2.3-8.5-11.1-13.6-19.6-11.3L151 133.3l24.8 92.7-61.8 16.5-24.8-92.7-77.3 20.7C3.4 172.8-1.7 181.6.6 190.1l49.6 185.5zM384 0c-17.7 0-32 14.3-32 32v323.6L5.9 450c-4.3 1.2-6.8 5.6-5.6 9.8l12.6 46.3c1.2 4.3 5.6 6.8 9.8 5.6l393.7-107.4C418.8 464.1 467.6 512 528 512c61.9 0 112-50.1 112-112V0H384zm144 448c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z" ], + "truck-moving": [ 640, 512, [], "f4df", "M621.3 237.3l-58.5-58.5c-12-12-28.3-18.7-45.3-18.7H480V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v336c0 44.2 35.8 80 80 80 26.3 0 49.4-12.9 64-32.4 14.6 19.6 37.7 32.4 64 32.4 44.2 0 80-35.8 80-80 0-5.5-.6-10.8-1.6-16h163.2c-1.1 5.2-1.6 10.5-1.6 16 0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H624c8.8 0 16-7.2 16-16v-85.5c0-17-6.7-33.2-18.7-45.2zM80 432c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm128 0c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm272-224h37.5c4.3 0 8.3 1.7 11.3 4.7l43.3 43.3H480v-48zm48 224c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32z" ], + tshirt: [ 640, 512, [], "f553", "M631.2 96.5L436.5 0C416.4 27.8 371.9 47.2 320 47.2S223.6 27.8 203.5 0L8.8 96.5c-7.9 4-11.1 13.6-7.2 21.5l57.2 114.5c4 7.9 13.6 11.1 21.5 7.2l56.6-27.7c10.6-5.2 23 2.5 23 14.4V480c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V226.3c0-11.8 12.4-19.6 23-14.4l56.6 27.7c7.9 4 17.5.8 21.5-7.2L638.3 118c4-7.9.8-17.6-7.1-21.5z" ], + tty: [ 512, 512, [], "f1e4", "M5.37 103.822c138.532-138.532 362.936-138.326 501.262 0 6.078 6.078 7.074 15.496 2.583 22.681l-43.214 69.138a18.332 18.332 0 0 1-22.356 7.305l-86.422-34.569a18.335 18.335 0 0 1-11.434-18.846L351.741 90c-62.145-22.454-130.636-21.986-191.483 0l5.953 59.532a18.331 18.331 0 0 1-11.434 18.846l-86.423 34.568a18.334 18.334 0 0 1-22.356-7.305L2.787 126.502a18.333 18.333 0 0 1 2.583-22.68zM96 308v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H92c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zM96 500v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H140c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z" ], + tv: [ 640, 512, [], "f26c", "M592 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h245.1v32h-160c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32-14.3 32-32s-14.3-32-32-32h-160v-32H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h512v288z" ], + umbrella: [ 576, 512, [], "f0e9", "M557.011 267.631c-51.432-45.217-107.572-43.698-158.567 30.731-5.298 7.861-14.906 7.165-19.736 0-2.483-3.624-32.218-60.808-90.708-60.808-45.766 0-70.542 31.378-90.709 60.808-4.829 7.165-14.436 7.861-19.734 0-50.904-74.285-106.613-76.406-158.567-30.731-10.21 8.264-20.912-1.109-18.696-9.481C32.146 134.573 158.516 64.612 288.001 64.612c128.793 0 256.546 69.961 287.706 193.538 2.206 8.322-8.426 17.793-18.696 9.481zM256 261.001V416c0 17.645-14.355 32-32 32s-32-14.355-32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 52.935 43.065 96 96 96s96-43.065 96-96V261.288c-21.836-10.806-45.425-9.737-64-.287zm64-211.007V32c0-17.673-14.327-32-32-32s-32 14.327-32 32v17.987a372.105 372.105 0 0 1 64 .007z" ], + "umbrella-beach": [ 640, 512, [], "f5ca", "M115.38 136.9l102.11 37.18c35.19-81.54 86.21-144.29 139-173.7-95.88-4.89-188.78 36.96-248.53 111.8-6.69 8.4-2.66 21.05 7.42 24.72zm132.25 48.16l238.48 86.83c35.76-121.38 18.7-231.66-42.63-253.98-7.4-2.7-15.13-4-23.09-4-58.02.01-128.27 69.17-172.76 171.15zM521.48 60.5c6.22 16.3 10.83 34.6 13.2 55.19 5.74 49.89-1.42 108.23-18.95 166.98l102.62 37.36c10.09 3.67 21.31-3.43 21.57-14.17 2.32-95.69-41.91-187.44-118.44-245.36zM560 447.98H321.06L386 269.5l-60.14-21.9-72.9 200.37H16c-8.84 0-16 7.16-16 16.01v32.01C0 504.83 7.16 512 16 512h544c8.84 0 16-7.17 16-16.01v-32.01c0-8.84-7.16-16-16-16z" ], + underline: [ 448, 512, [], "f0cd", "M224.264 388.24c-91.669 0-156.603-51.165-156.603-151.392V64H39.37c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h137.39c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.813v172.848c0 53.699 28.314 79.444 76.317 79.444 46.966 0 75.796-25.434 75.796-79.965V64h-28.291c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h136.868c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.291v172.848c0 99.405-64.881 151.392-156.082 151.392zM16 448h416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16z" ], + undo: [ 512, 512, [], "f0e2", "M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z" ], + "undo-alt": [ 512, 512, [], "f2ea", "M255.545 8c-66.269.119-126.438 26.233-170.86 68.685L48.971 40.971C33.851 25.851 8 36.559 8 57.941V192c0 13.255 10.745 24 24 24h134.059c21.382 0 32.09-25.851 16.971-40.971l-41.75-41.75c30.864-28.899 70.801-44.907 113.23-45.273 92.398-.798 170.283 73.977 169.484 169.442C423.236 348.009 349.816 424 256 424c-41.127 0-79.997-14.678-110.63-41.556-4.743-4.161-11.906-3.908-16.368.553L89.34 422.659c-4.872 4.872-4.631 12.815.482 17.433C133.798 479.813 192.074 504 256 504c136.966 0 247.999-111.033 248-247.998C504.001 119.193 392.354 7.755 255.545 8z" ], + "universal-access": [ 512, 512, [], "f29a", "M256 48c114.953 0 208 93.029 208 208 0 114.953-93.029 208-208 208-114.953 0-208-93.029-208-208 0-114.953 93.029-208 208-208m0-40C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 56C149.961 64 64 149.961 64 256s85.961 192 192 192 192-85.961 192-192S362.039 64 256 64zm0 44c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36zm117.741 98.023c-28.712 6.779-55.511 12.748-82.14 15.807.851 101.023 12.306 123.052 25.037 155.621 3.617 9.26-.957 19.698-10.217 23.315-9.261 3.617-19.699-.957-23.316-10.217-8.705-22.308-17.086-40.636-22.261-78.549h-9.686c-5.167 37.851-13.534 56.208-22.262 78.549-3.615 9.255-14.05 13.836-23.315 10.217-9.26-3.617-13.834-14.056-10.217-23.315 12.713-32.541 24.185-54.541 25.037-155.621-26.629-3.058-53.428-9.027-82.141-15.807-8.6-2.031-13.926-10.648-11.895-19.249s10.647-13.926 19.249-11.895c96.686 22.829 124.283 22.783 220.775 0 8.599-2.03 17.218 3.294 19.249 11.895 2.029 8.601-3.297 17.219-11.897 19.249z" ], + university: [ 512, 512, [], "f19c", "M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z" ], + unlink: [ 512, 512, [], "f127", "M304.083 405.907c4.686 4.686 4.686 12.284 0 16.971l-44.674 44.674c-59.263 59.262-155.693 59.266-214.961 0-59.264-59.265-59.264-155.696 0-214.96l44.675-44.675c4.686-4.686 12.284-4.686 16.971 0l39.598 39.598c4.686 4.686 4.686 12.284 0 16.971l-44.675 44.674c-28.072 28.073-28.072 73.75 0 101.823 28.072 28.072 73.75 28.073 101.824 0l44.674-44.674c4.686-4.686 12.284-4.686 16.971 0l39.597 39.598zm-56.568-260.216c4.686 4.686 12.284 4.686 16.971 0l44.674-44.674c28.072-28.075 73.75-28.073 101.824 0 28.072 28.073 28.072 73.75 0 101.823l-44.675 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.598 39.598c4.686 4.686 12.284 4.686 16.971 0l44.675-44.675c59.265-59.265 59.265-155.695 0-214.96-59.266-59.264-155.695-59.264-214.961 0l-44.674 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.597 39.598zm234.828 359.28l22.627-22.627c9.373-9.373 9.373-24.569 0-33.941L63.598 7.029c-9.373-9.373-24.569-9.373-33.941 0L7.029 29.657c-9.373 9.373-9.373 24.569 0 33.941l441.373 441.373c9.373 9.372 24.569 9.372 33.941 0z" ], + unlock: [ 448, 512, [], "f09c", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z" ], + "unlock-alt": [ 448, 512, [], "f13e", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zM264 408c0 22.1-17.9 40-40 40s-40-17.9-40-40v-48c0-22.1 17.9-40 40-40s40 17.9 40 40v48z" ], + upload: [ 512, 512, [], "f093", "M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z" ], + user: [ 448, 512, [], "f007", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" ], + "user-alt": [ 512, 512, [], "f406", "M256 288c79.5 0 144-64.5 144-144S335.5 0 256 0 112 64.5 112 144s64.5 144 144 144zm128 32h-55.1c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16H128C57.3 320 0 377.3 0 448v16c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-16c0-70.7-57.3-128-128-128z" ], + "user-alt-slash": [ 640, 512, [], "f4fa", "M633.8 458.1L389.6 269.3C433.8 244.7 464 198.1 464 144 464 64.5 399.5 0 320 0c-67.1 0-123 46.1-139 108.2L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM198.4 320C124.2 320 64 380.2 64 454.4v9.6c0 26.5 21.5 48 48 48h382.2L245.8 320h-47.4z" ], + "user-astronaut": [ 448, 512, [], "f4fb", "M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z" ], + "user-check": [ 640, 512, [], "f4fc", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4zm323-128.4l-27.8-28.1c-4.6-4.7-12.1-4.7-16.8-.1l-104.8 104-45.5-45.8c-4.6-4.7-12.1-4.7-16.8-.1l-28.1 27.9c-4.7 4.6-4.7 12.1-.1 16.8l81.7 82.3c4.6 4.7 12.1 4.7 16.8.1l141.3-140.2c4.6-4.7 4.7-12.2.1-16.8z" ], + "user-circle": [ 496, 512, [], "f2bd", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 96c48.6 0 88 39.4 88 88s-39.4 88-88 88-88-39.4-88-88 39.4-88 88-88zm0 344c-58.7 0-111.3-26.6-146.5-68.2 18.8-35.4 55.6-59.8 98.5-59.8 2.4 0 4.8.4 7.1 1.1 13 4.2 26.6 6.9 40.9 6.9 14.3 0 28-2.7 40.9-6.9 2.3-.7 4.7-1.1 7.1-1.1 42.9 0 79.7 24.4 98.5 59.8C359.3 421.4 306.7 448 248 448z" ], + "user-clock": [ 640, 512, [], "f4fd", "M496 224c-79.6 0-144 64.4-144 144s64.4 144 144 144 144-64.4 144-144-64.4-144-144-144zm64 150.3c0 5.3-4.4 9.7-9.7 9.7h-60.6c-5.3 0-9.7-4.4-9.7-9.7v-76.6c0-5.3 4.4-9.7 9.7-9.7h12.6c5.3 0 9.7 4.4 9.7 9.7V352h38.3c5.3 0 9.7 4.4 9.7 9.7v12.6zM320 368c0-27.8 6.7-54.1 18.2-77.5-8-1.5-16.2-2.5-24.6-2.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h347.1c-45.3-31.9-75.1-84.5-75.1-144zm-96-112c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128z" ], + "user-cog": [ 640, 512, [], "f4fe", "M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z" ], + "user-edit": [ 640, 512, [], "f4ff", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h274.9c-2.4-6.8-3.4-14-2.6-21.3l6.8-60.9 1.2-11.1 7.9-7.9 77.3-77.3c-24.5-27.7-60-45.5-99.9-45.5zm45.3 145.3l-6.8 61c-1.1 10.2 7.5 18.8 17.6 17.6l60.9-6.8 137.9-137.9-71.7-71.7-137.9 137.8zM633 268.9L595.1 231c-9.3-9.3-24.5-9.3-33.8 0l-37.8 37.8-4.1 4.1 71.8 71.7 41.8-41.8c9.3-9.4 9.3-24.5 0-33.9z" ], + "user-friends": [ 640, 512, [], "f500", "M192 256c61.9 0 112-50.1 112-112S253.9 32 192 32 80 82.1 80 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C51.6 288 0 339.6 0 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zM480 256c53 0 96-43 96-96s-43-96-96-96-96 43-96 96 43 96 96 96zm48 32h-3.8c-13.9 4.8-28.6 8-44.2 8s-30.3-3.2-44.2-8H432c-20.4 0-39.2 5.9-55.7 15.4 24.4 26.3 39.7 61.2 39.7 99.8v38.4c0 2.2-.5 4.3-.6 6.4H592c26.5 0 48-21.5 48-48 0-61.9-50.1-112-112-112z" ], + "user-graduate": [ 448, 512, [], "f501", "M319.4 320.6L224 416l-95.4-95.4C57.1 323.7 0 382.2 0 454.4v9.6c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-9.6c0-72.2-57.1-130.7-128.6-133.8zM13.6 79.8l6.4 1.5v58.4c-7 4.2-12 11.5-12 20.3 0 8.4 4.6 15.4 11.1 19.7L3.5 242c-1.7 6.9 2.1 14 7.6 14h41.8c5.5 0 9.3-7.1 7.6-14l-15.6-62.3C51.4 175.4 56 168.4 56 160c0-8.8-5-16.1-12-20.3V87.1l66 15.9c-8.6 17.2-14 36.4-14 57 0 70.7 57.3 128 128 128s128-57.3 128-128c0-20.6-5.3-39.8-14-57l96.3-23.2c18.2-4.4 18.2-27.1 0-31.5l-190.4-46c-13-3.1-26.7-3.1-39.7 0L13.6 48.2c-18.1 4.4-18.1 27.2 0 31.6z" ], + "user-lock": [ 640, 512, [], "f502", "M320 320c0-11.1 3.1-21.4 8.1-30.5-4.8-.5-9.5-1.5-14.5-1.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h280.9c-5.5-9.5-8.9-20.3-8.9-32V320zm-96-64c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm384 32h-32v-48c0-44.2-35.8-80-80-80s-80 35.8-80 80v48h-32c-17.7 0-32 14.3-32 32v160c0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32V320c0-17.7-14.3-32-32-32zm-80 0h-64v-48c0-17.6 14.4-32 32-32s32 14.4 32 32v48z" ], + "user-md": [ 448, 512, [], "f0f0", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zM104 424c0 13.3 10.7 24 24 24s24-10.7 24-24-10.7-24-24-24-24 10.7-24 24zm216-135.4v49c36.5 7.4 64 39.8 64 78.4v41.7c0 7.6-5.4 14.2-12.9 15.7l-32.2 6.4c-4.3.9-8.5-1.9-9.4-6.3l-3.1-15.7c-.9-4.3 1.9-8.6 6.3-9.4l19.3-3.9V416c0-62.8-96-65.1-96 1.9v26.7l19.3 3.9c4.3.9 7.1 5.1 6.3 9.4l-3.1 15.7c-.9 4.3-5.1 7.1-9.4 6.3l-31.2-4.2c-7.9-1.1-13.8-7.8-13.8-15.9V416c0-38.6 27.5-70.9 64-78.4v-45.2c-2.2.7-4.4 1.1-6.6 1.9-18 6.3-37.3 9.8-57.4 9.8s-39.4-3.5-57.4-9.8c-7.4-2.6-14.9-4.2-22.6-5.2v81.6c23.1 6.9 40 28.1 40 53.4 0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.3 16.9-46.5 40-53.4v-80.4C48.5 301 0 355.8 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-72-56.8-130.3-128-133.8z" ], + "user-minus": [ 640, 512, [], "f503", "M624 208H432c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" ], + "user-ninja": [ 448, 512, [], "f504", "M325.4 289.2L224 390.6 122.6 289.2C54 295.3 0 352.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-70.2-54-127.1-122.6-133.2zM32 192c27.3 0 51.8-11.5 69.2-29.7 15.1 53.9 64 93.7 122.8 93.7 70.7 0 128-57.3 128-128S294.7 0 224 0c-50.4 0-93.6 29.4-114.5 71.8C92.1 47.8 64 32 32 32c0 33.4 17.1 62.8 43.1 80-26 17.2-43.1 46.6-43.1 80zm144-96h96c17.7 0 32 14.3 32 32H144c0-17.7 14.3-32 32-32z" ], + "user-plus": [ 640, 512, [], "f234", "M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" ], + "user-secret": [ 448, 512, [], "f21b", "M383.9 308.3l23.9-62.6c4-10.5-3.7-21.7-15-21.7h-58.5c11-18.9 17.8-40.6 17.8-64v-.3c39.2-7.8 64-19.1 64-31.7 0-13.3-27.3-25.1-70.1-33-9.2-32.8-27-65.8-40.6-82.8-9.5-11.9-25.9-15.6-39.5-8.8l-27.6 13.8c-9 4.5-19.6 4.5-28.6 0L182.1 3.4c-13.6-6.8-30-3.1-39.5 8.8-13.5 17-31.4 50-40.6 82.8-42.7 7.9-70 19.7-70 33 0 12.6 24.8 23.9 64 31.7v.3c0 23.4 6.8 45.1 17.8 64H56.3c-11.5 0-19.2 11.7-14.7 22.3l25.8 60.2C27.3 329.8 0 372.7 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-48.4-25.8-90.4-64.1-114.1zM176 480l-41.6-192 49.6 32 24 40-32 120zm96 0l-32-120 24-40 49.6-32L272 480zm41.7-298.5c-3.9 11.9-7 24.6-16.5 33.4-10.1 9.3-48 22.4-64-25-2.8-8.4-15.4-8.4-18.3 0-17 50.2-56 32.4-64 25-9.5-8.8-12.7-21.5-16.5-33.4-.8-2.5-6.3-5.7-6.3-5.8v-10.8c28.3 3.6 61 5.8 96 5.8s67.7-2.1 96-5.8v10.8c-.1.1-5.6 3.2-6.4 5.8z" ], + "user-shield": [ 640, 512, [], "f505", "M622.3 271.1l-115.2-45c-4.1-1.6-12.6-3.7-22.2 0l-115.2 45c-10.7 4.2-17.7 14-17.7 24.9 0 111.6 68.7 188.8 132.9 213.9 9.6 3.7 18 1.6 22.2 0C558.4 489.9 640 420.5 640 296c0-10.9-7-20.7-17.7-24.9zM496 462.4V273.3l95.5 37.3c-5.6 87.1-60.9 135.4-95.5 151.8zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm96 40c0-2.5.8-4.8 1.1-7.2-2.5-.1-4.9-.8-7.5-.8h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c6.8 0 13.3-1.5 19.2-4-54-42.9-99.2-116.7-99.2-212z" ], + "user-slash": [ 640, 512, [], "f506", "M633.8 458.1L362.3 248.3C412.1 230.7 448 183.8 448 128 448 57.3 390.7 0 320 0c-67.1 0-121.5 51.8-126.9 117.4L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM96 422.4V464c0 26.5 21.5 48 48 48h350.2L207.4 290.3C144.2 301.3 96 356 96 422.4z" ], + "user-tag": [ 640, 512, [], "f507", "M630.6 364.9l-90.3-90.2c-12-12-28.3-18.7-45.3-18.7h-79.3c-17.7 0-32 14.3-32 32v79.2c0 17 6.7 33.2 18.7 45.2l90.3 90.2c12.5 12.5 32.8 12.5 45.3 0l92.5-92.5c12.6-12.5 12.6-32.7.1-45.2zm-182.8-21c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24c0 13.2-10.7 24-24 24zm-223.8-88c70.7 0 128-57.3 128-128C352 57.3 294.7 0 224 0S96 57.3 96 128c0 70.6 57.3 127.9 128 127.9zm127.8 111.2V294c-12.2-3.6-24.9-6.2-38.2-6.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 287.9 0 348.1 0 422.3v41.6c0 26.5 21.5 48 48 48h352c15.5 0 29.1-7.5 37.9-18.9l-58-58c-18.1-18.1-28.1-42.2-28.1-67.9z" ], + "user-tie": [ 448, 512, [], "f508", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm95.8 32.6L272 480l-32-136 32-56h-96l32 56-32 136-47.8-191.4C56.9 292 0 350.3 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-72.1-56.9-130.4-128.2-133.8z" ], + "user-times": [ 640, 512, [], "f235", "M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" ], + users: [ 640, 512, [], "f0c0", "M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z" ], + "users-cog": [ 640, 512, [], "f509", "M610.5 341.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 368.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm224 32c1.9 0 3.7-.5 5.6-.6 8.3-21.7 20.5-42.1 36.3-59.2 7.4-8 17.9-12.6 28.9-12.6 6.9 0 13.7 1.8 19.6 5.3l7.9 4.6c.8-.5 1.6-.9 2.4-1.4 7-14.6 11.2-30.8 11.2-48 0-61.9-50.1-112-112-112S208 82.1 208 144c0 61.9 50.1 112 112 112zm105.2 194.5c-2.3-1.2-4.6-2.6-6.8-3.9-8.2 4.8-15.3 9.8-27.5 9.8-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-10.7-34.5 24.9-49.7 25.8-50.3-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-3.8-2.2-7-5-9.8-8.1-3.3.2-6.5.6-9.8.6-24.6 0-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h255.4c-3.7-6-6.2-12.8-6.2-20.3v-9.2zM173.1 274.6C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z" ], + "utensil-spoon": [ 512, 512, [], "f2e5", "M480.1 31.9c-55-55.1-164.9-34.5-227.8 28.5-49.3 49.3-55.1 110-28.8 160.4L9 413.2c-11.6 10.5-12.1 28.5-1 39.5L59.3 504c11 11 29.1 10.5 39.5-1.1l192.4-214.4c50.4 26.3 111.1 20.5 160.4-28.8 63-62.9 83.6-172.8 28.5-227.8z" ], + utensils: [ 416, 512, [], "f2e7", "M207.9 15.2c.8 4.7 16.1 94.5 16.1 128.8 0 52.3-27.8 89.6-68.9 104.6L168 486.7c.7 13.7-10.2 25.3-24 25.3H80c-13.7 0-24.7-11.5-24-25.3l12.9-238.1C27.7 233.6 0 196.2 0 144 0 109.6 15.3 19.9 16.1 15.2 19.3-5.1 61.4-5.4 64 16.3v141.2c1.3 3.4 15.1 3.2 16 0 1.4-25.3 7.9-139.2 8-141.8 3.3-20.8 44.7-20.8 47.9 0 .2 2.7 6.6 116.5 8 141.8.9 3.2 14.8 3.4 16 0V16.3c2.6-21.6 44.8-21.4 48-1.1zm119.2 285.7l-15 185.1c-1.2 14 9.9 26 23.9 26h56c13.3 0 24-10.7 24-24V24c0-13.2-10.7-24-24-24-82.5 0-221.4 178.5-64.9 300.9z" ], + "vector-square": [ 512, 512, [], "f5cb", "M512 128V32c0-17.67-14.33-32-32-32h-96c-17.67 0-32 14.33-32 32H160c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32v192c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32h192c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32V160c17.67 0 32-14.33 32-32zm-96-64h32v32h-32V64zM64 64h32v32H64V64zm32 384H64v-32h32v32zm352 0h-32v-32h32v32zm-32-96h-32c-17.67 0-32 14.33-32 32v32H160v-32c0-17.67-14.33-32-32-32H96V160h32c17.67 0 32-14.33 32-32V96h192v32c0 17.67 14.33 32 32 32h32v192z" ], + venus: [ 288, 512, [], "f221", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z" ], + "venus-double": [ 512, 512, [], "f226", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80zm336 140.4V368h36c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-36v36c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-36h-36c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h36v-51.6c-21.2-4.8-40.6-14.3-57.2-27.3 14-16.7 25-36 32.1-57.1 14.5 14.8 34.7 24 57.1 24 44.1 0 80-35.9 80-80s-35.9-80-80-80c-22.3 0-42.6 9.2-57.1 24-7.1-21.1-18-40.4-32.1-57.1C303.4 43.6 334.3 32 368 32c79.5 0 144 64.5 144 144 0 68.5-47.9 125.9-112 140.4z" ], + "venus-mars": [ 576, 512, [], "f228", "M564 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C422.5 72.1 396.2 64 368 64c-33.7 0-64.6 11.6-89.2 30.9 14 16.7 25 36 32.1 57.1 14.5-14.8 34.7-24 57.1-24 44.1 0 80 35.9 80 80s-35.9 80-80 80c-22.3 0-42.6-9.2-57.1-24-7.1 21.1-18 40.4-32.1 57.1 24.5 19.4 55.5 30.9 89.2 30.9 79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 64C64.5 64 0 128.5 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.6 112-71.9 112-140.4 0-79.5-64.5-144-144-144zm0 224c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" ], + vial: [ 480, 512, [], "f492", "M477.7 186.1L309.5 18.3c-3.1-3.1-8.2-3.1-11.3 0l-34 33.9c-3.1 3.1-3.1 8.2 0 11.3l11.2 11.1L33 316.5c-38.8 38.7-45.1 102-9.4 143.5 20.6 24 49.5 36 78.4 35.9 26.4 0 52.8-10 72.9-30.1l246.3-245.7 11.2 11.1c3.1 3.1 8.2 3.1 11.3 0l34-33.9c3.1-3 3.1-8.1 0-11.2zM318 256H161l148-147.7 78.5 78.3L318 256z" ], + vials: [ 640, 512, [], "f493", "M72 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H72c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64zm480 384H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM360 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64z" ], + video: [ 576, 512, [], "f03d", "M336.2 64H47.8C21.4 64 0 85.4 0 111.8v288.4C0 426.6 21.4 448 47.8 448h288.4c26.4 0 47.8-21.4 47.8-47.8V111.8c0-26.4-21.4-47.8-47.8-47.8zm189.4 37.7L416 177.3v157.4l109.6 75.5c21.2 14.6 50.4-.3 50.4-25.8V127.5c0-25.4-29.1-40.4-50.4-25.8z" ], + "video-slash": [ 640, 512, [], "f4e2", "M633.8 458.1l-55-42.5c15.4-1.4 29.2-13.7 29.2-31.1v-257c0-25.5-29.1-40.4-50.4-25.8L448 177.3v137.2l-32-24.7v-178c0-26.4-21.4-47.8-47.8-47.8H123.9L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4L42.7 82 416 370.6l178.5 138c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.5-6.9 4.2-17-2.8-22.4zM32 400.2c0 26.4 21.4 47.8 47.8 47.8h288.4c11.2 0 21.4-4 29.6-10.5L32 154.7v245.5z" ], + "volleyball-ball": [ 495, 512, [], "f45f", "M223.3 243.4c-.9-37-8.6-72.8-22.7-105.7-90.8 42.4-157.5 122.4-180.3 216.8 13.4 30.8 32.9 58.3 56.9 81.1 22.7-79.2 74.2-147.8 146.1-192.2zM186.4 109c-15-26.4-34.5-50.1-57.4-70.7C38 88.1-15.8 191.2 4 300.5c33.4-83.1 98.4-152 182.4-191.5zM374 274.1c8.6-99.8-27.3-197.5-97.5-264.4-14.7-1.7-51.6-5.5-98.9 8.5 57.3 59.3 91 138.2 93.5 222.7 32.5 17.7 67.3 29 102.9 33.2zm-124.7 9.5c-31.6 19.3-58.7 43.9-80.2 72.6 82 57.3 184.5 75.1 277.5 47.8 19.7-26.4 34.2-56.8 42.2-89.9-26.6 6.6-53.7 10.4-80.9 10.4-54.6-.1-108.9-14.1-158.6-40.9zM151 383.3c-15.2 26-25.7 54.4-32.1 84.2 37.6 23 81.7 36.5 129.1 36.5 61 0 116.7-22.1 159.9-58.6C295 461.5 204.6 420.6 151 383.3zM331.3 22.7c55.3 70.4 82.5 161.2 74.6 253.6 30.3.2 60.5-4.8 89.7-14.2 0-2 .3-4 .3-6 0-107.8-68.7-199.1-164.6-233.4z" ], + "volume-down": [ 384, 512, [], "f027", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zM384 256c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z" ], + "volume-off": [ 256, 512, [], "f026", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971z" ], + "volume-up": [ 576, 512, [], "f028", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zm182.056-77.876C422.982.92 403.283 5.668 394.061 20.745c-9.221 15.077-4.473 34.774 10.604 43.995C468.967 104.063 512 174.983 512 256c0 73.431-36.077 142.292-96.507 184.206-14.522 10.072-18.129 30.01-8.057 44.532 10.076 14.528 30.016 18.126 44.531 8.057C529.633 438.927 576 350.406 576 256c0-103.244-54.579-194.877-137.944-245.859zM480 256c0-68.547-36.15-129.777-91.957-163.901-15.076-9.22-34.774-4.471-43.994 10.607-9.22 15.078-4.471 34.774 10.607 43.994C393.067 170.188 416 211.048 416 256c0 41.964-20.62 81.319-55.158 105.276-14.521 10.073-18.128 30.01-8.056 44.532 6.216 8.96 16.185 13.765 26.322 13.765a31.862 31.862 0 0 0 18.21-5.709C449.091 377.953 480 318.938 480 256zm-96 0c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z" ], + walking: [ 320, 512, [], "f554", "M208 96c26.5 0 48-21.5 48-48S234.5 0 208 0s-48 21.5-48 48 21.5 48 48 48zm94.5 149.1l-23.3-11.8-9.7-29.4c-14.7-44.6-55.7-75.8-102.2-75.9-36-.1-55.9 10.1-93.3 25.2-21.6 8.7-39.3 25.2-49.7 46.2L17.6 213c-7.8 15.8-1.5 35 14.2 42.9 15.6 7.9 34.6 1.5 42.5-14.3L81 228c3.5-7 9.3-12.5 16.5-15.4l26.8-10.8-15.2 60.7c-5.2 20.8.4 42.9 14.9 58.8l59.9 65.4c7.2 7.9 12.3 17.4 14.9 27.7l18.3 73.3c4.3 17.1 21.7 27.6 38.8 23.3 17.1-4.3 27.6-21.7 23.3-38.8l-22.2-89c-2.6-10.3-7.7-19.9-14.9-27.7l-45.5-49.7 17.2-68.7 5.5 16.5c5.3 16.1 16.7 29.4 31.7 37l23.3 11.8c15.6 7.9 34.6 1.5 42.5-14.3 7.7-15.7 1.4-35.1-14.3-43zM73.6 385.8c-3.2 8.1-8 15.4-14.2 21.5l-50 50.1c-12.5 12.5-12.5 32.8 0 45.3s32.7 12.5 45.2 0l59.4-59.4c6.1-6.1 10.9-13.4 14.2-21.5l13.5-33.8c-55.3-60.3-38.7-41.8-47.4-53.7l-20.7 51.5z" ], + wallet: [ 512, 512, [], "f555", "M461.2 128H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h384c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h397.2c28.02 0 50.8-21.53 50.8-48V176c0-26.47-22.78-48-50.8-48zM416 336c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + warehouse: [ 640, 512, [], "f494", "M504 352H136.4c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0 96H136.1c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0-192H136.6c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm106.5-139L338.4 3.7a48.15 48.15 0 0 0-36.9 0L29.5 117C11.7 124.5 0 141.9 0 161.3V504c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V256c0-17.6 14.6-32 32.6-32h382.8c18 0 32.6 14.4 32.6 32v248c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V161.3c0-19.4-11.7-36.8-29.5-44.3z" ], + weight: [ 512, 512, [], "f496", "M448 64h-25.98C438.44 92.28 448 125.01 448 160c0 105.87-86.13 192-192 192S64 265.87 64 160c0-34.99 9.56-67.72 25.98-96H64C28.71 64 0 92.71 0 128v320c0 35.29 28.71 64 64 64h384c35.29 0 64-28.71 64-64V128c0-35.29-28.71-64-64-64zM256 320c88.37 0 160-71.63 160-160S344.37 0 256 0 96 71.63 96 160s71.63 160 160 160zm-.3-151.94l33.58-78.36c3.5-8.17 12.94-11.92 21.03-8.41 8.12 3.48 11.88 12.89 8.41 21l-33.67 78.55C291.73 188 296 197.45 296 208c0 22.09-17.91 40-40 40s-40-17.91-40-40c0-21.98 17.76-39.77 39.7-39.94z" ], + "weight-hanging": [ 512, 512, [], "f5cd", "M510.28 445.86l-73.03-292.13c-3.8-15.19-16.44-25.72-30.87-25.72h-60.25c3.57-10.05 5.88-20.72 5.88-32 0-53.02-42.98-96-96-96s-96 42.98-96 96c0 11.28 2.3 21.95 5.88 32h-60.25c-14.43 0-27.08 10.54-30.87 25.72L1.72 445.86C-6.61 479.17 16.38 512 48.03 512h415.95c31.64 0 54.63-32.83 46.3-66.14zM256 128c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z" ], + wheelchair: [ 512, 512, [], "f193", "M496.101 385.669l14.227 28.663c3.929 7.915.697 17.516-7.218 21.445l-65.465 32.886c-16.049 7.967-35.556 1.194-43.189-15.055L331.679 320H192c-15.925 0-29.426-11.71-31.679-27.475C126.433 55.308 128.38 70.044 128 64c0-36.358 30.318-65.635 67.052-63.929 33.271 1.545 60.048 28.905 60.925 62.201.868 32.933-23.152 60.423-54.608 65.039l4.67 32.69H336c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H215.182l4.572 32H352a32 32 0 0 1 28.962 18.392L438.477 396.8l36.178-18.349c7.915-3.929 17.517-.697 21.446 7.218zM311.358 352h-24.506c-7.788 54.204-54.528 96-110.852 96-61.757 0-112-50.243-112-112 0-41.505 22.694-77.809 56.324-97.156-3.712-25.965-6.844-47.86-9.488-66.333C45.956 198.464 0 261.963 0 336c0 97.047 78.953 176 176 176 71.87 0 133.806-43.308 161.11-105.192L311.358 352z" ], + wifi: [ 640, 512, [], "f1eb", "M384 416c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm136.659-124.443c6.465-6.465 6.245-17.065-.564-23.167-113.793-101.985-286.526-101.869-400.19 0-6.809 6.102-7.029 16.702-.564 23.167l34.006 34.006c5.927 5.927 15.464 6.32 21.769.796 82.88-72.609 207.074-72.447 289.768 0 6.305 5.524 15.842 5.132 21.769-.796l34.006-34.006zm112.11-113.718c6.385-6.385 6.254-16.816-.35-22.973-175.768-163.86-449.134-163.8-624.837 0-6.604 6.157-6.735 16.589-.35 22.973l33.966 33.966c6.095 6.095 15.891 6.231 22.224.383 144.763-133.668 368.356-133.702 513.156 0 6.333 5.848 16.129 5.712 22.224-.383l33.967-33.966z" ], + "window-close": [ 512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-83.6 290.5c4.8 4.8 4.8 12.6 0 17.4l-40.5 40.5c-4.8 4.8-12.6 4.8-17.4 0L256 313.3l-66.5 67.1c-4.8 4.8-12.6 4.8-17.4 0l-40.5-40.5c-4.8-4.8-4.8-12.6 0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6 0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1 66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8 4.8 12.6 0 17.4L313.3 256l67.1 66.5z" ], + "window-maximize": [ 512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16 160H64v-84c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12v84z" ], + "window-minimize": [ 512, 512, [], "f2d1", "M464 352H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48z" ], + "window-restore": [ 512, 512, [], "f2d2", "M512 48v288c0 26.5-21.5 48-48 48h-48V176c0-44.1-35.9-80-80-80H128V48c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zM384 176v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zm-68 28c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v52h252v-52z" ], + "wine-glass": [ 288, 512, [], "f4e3", "M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40z" ], + "wine-glass-alt": [ 288, 512, [], "f5ce", "M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM61.75 48h164.5l7.17 80H54.58l7.17-80z" ], + "won-sign": [ 576, 512, [], "f159", "M564 192c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-48.028l18.572-80.61c1.732-7.518-3.978-14.694-11.693-14.694h-46.107a11.998 11.998 0 0 0-11.736 9.5L450.73 128H340.839l-19.725-85.987a12 12 0 0 0-11.696-9.317H265.43a12 12 0 0 0-11.687 9.277L233.696 128H124.975L107.5 42.299a12 12 0 0 0-11.758-9.602H53.628c-7.686 0-13.39 7.124-11.709 14.624L60 128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h62.342l7.171 32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h83.856l40.927 182.624A12 12 0 0 0 148.492 480h56.767c5.583 0 10.428-3.85 11.689-9.288L259.335 288h55.086l42.386 182.712A12 12 0 0 0 368.496 480h56.826a12 12 0 0 0 11.694-9.306L479.108 288H564c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-70.146l7.373-32H564zm-425.976 0h80.757l-7.457 32h-66.776l-6.524-32zm45.796 150.029c-6.194 25.831-6.758 47.25-7.321 47.25h-1.126s-1.689-22.05-6.758-47.25L157.599 288h38.812l-12.591 54.029zM274.182 224l1.996-8.602c1.856-7.962 3.457-15.968 4.803-23.398h11.794c1.347 7.43 2.947 15.436 4.803 23.398l1.996 8.602h-25.392zm130.959 118.029c-5.068 25.2-6.758 47.25-6.758 47.25h-1.126c-.563 0-1.126-21.42-7.321-47.25L377.542 288h39.107l-11.508 54.029zM430.281 224h-67.42l-7.34-32h81.577l-6.817 32z" ], + wrench: [ 512, 512, [], "f0ad", "M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z" ], + "x-ray": [ 640, 512, [], "f497", "M240 384c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm160 32c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zM624 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zm0 448h-48V96H64v352H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM480 248c0 4.4-3.6 8-8 8H336v32h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48v-16h-64v16c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48h64v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-32H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h136v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-24c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v24h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h136c4.4 0 8 3.6 8 8v16z" ], + "yen-sign": [ 384, 512, [], "f157", "M351.208 32h-65.277a12 12 0 0 0-10.778 6.724l-55.39 113.163c-14.513 34.704-27.133 71.932-27.133 71.932h-1.262s-12.62-37.228-27.133-71.932l-55.39-113.163A11.997 11.997 0 0 0 98.068 32H32.792c-9.057 0-14.85 9.65-10.59 17.643L102.322 200H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h88.162L152 293.228V320H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h108v92c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-92h108c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12H232v-26.772L251.838 256H340c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12h-58.322l80.12-150.357C366.058 41.65 360.266 32 351.208 32z" ] + }; + !function(c) { + try { + c(); + } catch (c) { + if (!m) throw c; + } + }(function() { + !function c(l, z) { + var h = Object.keys(z).reduce(function(c, l) { + var h = z[l]; + return h.icon ? c[h.iconName] = h.icon : c[l] = h, c; + }, {}); + "function" == typeof t.hooks.addPack ? t.hooks.addPack(l, h) : t.styles[l] = M({}, t.styles[l] || {}, h), + "fas" === l && c("fa", z); + }("fas", f); + }); +}(), function() { + "use strict"; + var c = function() {}, l = {}, h = {}, z = null, v = { + mark: c, + measure: c + }; + try { + "undefined" != typeof window && (l = window), "undefined" != typeof document && (h = document), + "undefined" != typeof MutationObserver && (z = MutationObserver), "undefined" != typeof performance && (v = performance); + } catch (c) {} + var m = (l.navigator || {}).userAgent, s = void 0 === m ? "" : m, n = l, r = h, e = z, a = v, t = !!n.document, M = !!r.documentElement && !!r.head && "function" == typeof r.addEventListener && "function" == typeof r.createElement, p = ~s.indexOf("MSIE") || ~s.indexOf("Trident/"), f = "___FONT_AWESOME___", g = 16, i = "svg-inline--fa", b = "data-fa-i2svg", H = "data-fa-pseudo-element", V = "data-prefix", o = "data-icon", C = "fontawesome-i2svg", L = [ "HTML", "HEAD", "STYLE", "SCRIPT" ], u = function() { + try { + return !1; + } catch (c) { + return !1; + } + }(), d = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ], S = d.concat([ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ]), w = [ "class", "data-prefix", "data-icon", "data-fa-transform", "data-fa-mask" ], y = [ "xs", "sm", "lg", "fw", "ul", "li", "border", "pull-left", "pull-right", "spin", "pulse", "rotate-90", "rotate-180", "rotate-270", "flip-horizontal", "flip-vertical", "stack", "stack-1x", "stack-2x", "inverse", "layers", "layers-text", "layers-counter" ].concat(d.map(function(c) { + return c + "x"; + })).concat(S.map(function(c) { + return "w-" + c; + })), k = function(c, l) { + if (!(c instanceof l)) throw new TypeError("Cannot call a class as a function"); + }, x = function() { + function z(c, l) { + for (var h = 0; h < l.length; h++) { + var z = l[h]; + z.enumerable = z.enumerable || !1, z.configurable = !0, "value" in z && (z.writable = !0), + Object.defineProperty(c, z.key, z); + } + } + return function(c, l, h) { + return l && z(c.prototype, l), h && z(c, h), c; + }; + }(), A = Object.assign || function(c) { + for (var l = 1; l < arguments.length; l++) { + var h = arguments[l]; + for (var z in h) Object.prototype.hasOwnProperty.call(h, z) && (c[z] = h[z]); + } + return c; + }, q = function(c, l) { + if (Array.isArray(c)) return c; + if (Symbol.iterator in Object(c)) return function(c, l) { + var h = [], z = !0, v = !1, m = void 0; + try { + for (var s, e = c[Symbol.iterator](); !(z = (s = e.next()).done) && (h.push(s.value), + !l || h.length !== l); z = !0) ; + } catch (c) { + v = !0, m = c; + } finally { + try { + !z && e.return && e.return(); + } finally { + if (v) throw m; + } + } + return h; + }(c, l); + throw new TypeError("Invalid attempt to destructure non-iterable instance"); + }, j = function(c) { + if (Array.isArray(c)) { + for (var l = 0, h = Array(c.length); l < c.length; l++) h[l] = c[l]; + return h; + } + return Array.from(c); + }, O = n.FontAwesomeConfig || {}; + if (r && "function" == typeof r.querySelector) { + [ [ "data-family-prefix", "familyPrefix" ], [ "data-replacement-class", "replacementClass" ], [ "data-auto-replace-svg", "autoReplaceSvg" ], [ "data-auto-add-css", "autoAddCss" ], [ "data-auto-a11y", "autoA11y" ], [ "data-search-pseudo-elements", "searchPseudoElements" ], [ "data-observe-mutations", "observeMutations" ], [ "data-keep-original-source", "keepOriginalSource" ], [ "data-measure-performance", "measurePerformance" ], [ "data-show-missing-icons", "showMissingIcons" ] ].forEach(function(c) { + var l, h = q(c, 2), z = h[0], v = h[1], m = "" === (l = function(c) { + var l = r.querySelector("script[" + c + "]"); + if (l) return l.getAttribute(c); + }(z)) || "false" !== l && ("true" === l || l); + null != m && (O[v] = m); + }); + } + var N = A({ + familyPrefix: "fa", + replacementClass: i, + autoReplaceSvg: !0, + autoAddCss: !0, + autoA11y: !0, + searchPseudoElements: !1, + observeMutations: !0, + keepOriginalSource: !0, + measurePerformance: !1, + showMissingIcons: !0 + }, O); + N.autoReplaceSvg || (N.observeMutations = !1); + var E = A({}, N); + n.FontAwesomeConfig = E; + var P = n || {}; + P[f] || (P[f] = {}), P[f].styles || (P[f].styles = {}), P[f].hooks || (P[f].hooks = {}), + P[f].shims || (P[f].shims = []); + var T = P[f], _ = [], I = !1; + M && ((I = (r.documentElement.doScroll ? /^loaded|^c/ : /^loaded|^i|^c/).test(r.readyState)) || r.addEventListener("DOMContentLoaded", function c() { + r.removeEventListener("DOMContentLoaded", c), I = 1, _.map(function(c) { + return c(); + }); + })); + var R = function(c) { + M && (I ? setTimeout(c, 0) : _.push(c)); + }, F = g, B = { + size: 16, + x: 0, + y: 0, + rotate: 0, + flipX: !1, + flipY: !1 + }; + function D(c) { + if (c && M) { + var l = r.createElement("style"); + l.setAttribute("type", "text/css"), l.innerHTML = c; + for (var h = r.head.childNodes, z = null, v = h.length - 1; -1 < v; v--) { + var m = h[v], s = (m.tagName || "").toUpperCase(); + -1 < [ "STYLE", "LINK" ].indexOf(s) && (z = m); + } + return r.head.insertBefore(l, z), c; + } + } + var X = 0; + function W() { + return ++X; + } + function Y(c) { + for (var l = [], h = (c || []).length >>> 0; h--; ) l[h] = c[h]; + return l; + } + function U(c) { + return c.classList ? Y(c.classList) : (c.getAttribute("class") || "").split(" ").filter(function(c) { + return c; + }); + } + function K(c, l) { + var h, z = l.split("-"), v = z[0], m = z.slice(1).join("-"); + return v !== c || "" === m || (h = m, ~y.indexOf(h)) ? null : m; + } + function G(c) { + return ("" + c).replace(/&/g, "&").replace(/"/g, """).replace(/'/g, "'").replace(//g, ">"); + } + function J(h) { + return Object.keys(h || {}).reduce(function(c, l) { + return c + (l + ": ") + h[l] + ";"; + }, ""); + } + function Q(c) { + return c.size !== B.size || c.x !== B.x || c.y !== B.y || c.rotate !== B.rotate || c.flipX || c.flipY; + } + function Z(c) { + var l = c.transform, h = c.containerWidth, z = c.iconWidth; + return { + outer: { + transform: "translate(" + h / 2 + " 256)" + }, + inner: { + transform: "translate(" + 32 * l.x + ", " + 32 * l.y + ") " + " " + ("scale(" + l.size / 16 * (l.flipX ? -1 : 1) + ", " + l.size / 16 * (l.flipY ? -1 : 1) + ") ") + " " + ("rotate(" + l.rotate + " 0 0)") + }, + path: { + transform: "translate(" + z / 2 * -1 + " -256)" + } + }; + } + var $ = { + x: 0, + y: 0, + width: "100%", + height: "100%" + }, cc = function(c) { + var l = c.children, h = c.attributes, z = c.main, v = c.mask, m = c.transform, s = z.width, e = z.icon, a = v.width, t = v.icon, M = Z({ + transform: m, + containerWidth: a, + iconWidth: s + }), f = { + tag: "rect", + attributes: A({}, $, { + fill: "white" + }) + }, n = { + tag: "g", + attributes: A({}, M.inner), + children: [ { + tag: "path", + attributes: A({}, e.attributes, M.path, { + fill: "black" + }) + } ] + }, r = { + tag: "g", + attributes: A({}, M.outer), + children: [ n ] + }, i = "mask-" + W(), H = "clip-" + W(), V = { + tag: "defs", + children: [ { + tag: "clipPath", + attributes: { + id: H + }, + children: [ t ] + }, { + tag: "mask", + attributes: A({}, $, { + id: i, + maskUnits: "userSpaceOnUse", + maskContentUnits: "userSpaceOnUse" + }), + children: [ f, r ] + } ] + }; + return l.push(V, { + tag: "rect", + attributes: A({ + fill: "currentColor", + "clip-path": "url(#" + H + ")", + mask: "url(#" + i + ")" + }, $) + }), { + children: l, + attributes: h + }; + }, lc = function(c) { + var l = c.children, h = c.attributes, z = c.main, v = c.transform, m = J(c.styles); + if (0 < m.length && (h.style = m), Q(v)) { + var s = Z({ + transform: v, + containerWidth: z.width, + iconWidth: z.width + }); + l.push({ + tag: "g", + attributes: A({}, s.outer), + children: [ { + tag: "g", + attributes: A({}, s.inner), + children: [ { + tag: z.icon.tag, + children: z.icon.children, + attributes: A({}, z.icon.attributes, s.path) + } ] + } ] + }); + } else l.push(z.icon); + return { + children: l, + attributes: h + }; + }, hc = function(c) { + var l = c.children, h = c.main, z = c.mask, v = c.attributes, m = c.styles, s = c.transform; + if (Q(s) && h.found && !z.found) { + var e = h.width / h.height / 2, a = .5; + v.style = J(A({}, m, { + "transform-origin": e + s.x / 16 + "em " + (a + s.y / 16) + "em" + })); + } + return [ { + tag: "svg", + attributes: v, + children: l + } ]; + }, zc = function(c) { + var l = c.prefix, h = c.iconName, z = c.children, v = c.attributes, m = c.symbol, s = !0 === m ? l + "-" + E.familyPrefix + "-" + h : m; + return [ { + tag: "svg", + attributes: { + style: "display: none;" + }, + children: [ { + tag: "symbol", + attributes: A({}, v, { + id: s + }), + children: z + } ] + } ]; + }; + function vc(c) { + var l = c.icons, h = l.main, z = l.mask, v = c.prefix, m = c.iconName, s = c.transform, e = c.symbol, a = c.title, t = c.extra, M = c.watchable, f = void 0 !== M && M, n = z.found ? z : h, r = n.width, i = n.height, H = "fa-w-" + Math.ceil(r / i * 16), V = [ E.replacementClass, m ? E.familyPrefix + "-" + m : "", H ].filter(function(c) { + return -1 === t.classes.indexOf(c); + }).concat(t.classes).join(" "), o = { + children: [], + attributes: A({}, t.attributes, { + "data-prefix": v, + "data-icon": m, + class: V, + role: "img", + xmlns: "http://www.w3.org/2000/svg", + viewBox: "0 0 " + r + " " + i + }) + }; + f && (o.attributes[b] = ""), a && o.children.push({ + tag: "title", + attributes: { + id: o.attributes["aria-labelledby"] || "title-" + W() + }, + children: [ a ] + }); + var C = A({}, o, { + prefix: v, + iconName: m, + main: h, + mask: z, + transform: s, + symbol: e, + styles: t.styles + }), L = z.found && h.found ? cc(C) : lc(C), u = L.children, d = L.attributes; + return C.children = u, C.attributes = d, e ? zc(C) : hc(C); + } + function mc(c) { + var l = c.content, h = c.width, z = c.height, v = c.transform, m = c.title, s = c.extra, e = c.watchable, a = void 0 !== e && e, t = A({}, s.attributes, m ? { + title: m + } : {}, { + class: s.classes.join(" ") + }); + a && (t[b] = ""); + var M, f, n, r, i, H, V, o, C, L = A({}, s.styles); + Q(v) && (L.transform = (f = (M = { + transform: v, + startCentered: !0, + width: h, + height: z + }).transform, n = M.width, r = void 0 === n ? g : n, i = M.height, H = void 0 === i ? g : i, + V = M.startCentered, C = "", C += (o = void 0 !== V && V) && p ? "translate(" + (f.x / F - r / 2) + "em, " + (f.y / F - H / 2) + "em) " : o ? "translate(calc(-50% + " + f.x / F + "em), calc(-50% + " + f.y / F + "em)) " : "translate(" + f.x / F + "em, " + f.y / F + "em) ", + C += "scale(" + f.size / F * (f.flipX ? -1 : 1) + ", " + f.size / F * (f.flipY ? -1 : 1) + ") ", + C += "rotate(" + f.rotate + "deg) "), L["-webkit-transform"] = L.transform); + var u = J(L); + 0 < u.length && (t.style = u); + var d = []; + return d.push({ + tag: "span", + attributes: t, + children: [ l ] + }), m && d.push({ + tag: "span", + attributes: { + class: "sr-only" + }, + children: [ m ] + }), d; + } + var sc = function() {}, ec = E.measurePerformance && a && a.mark && a.measure ? a : { + mark: sc, + measure: sc + }, ac = 'FA "5.1.1"', tc = function(c) { + ec.mark(ac + " " + c + " ends"), ec.measure(ac + " " + c, ac + " " + c + " begins", ac + " " + c + " ends"); + }, Mc = { + begin: function(c) { + return ec.mark(ac + " " + c + " begins"), function() { + return tc(c); + }; + }, + end: tc + }, fc = function(c, l, h, z) { + var v, m, s, e, a, t = Object.keys(c), M = t.length, f = void 0 !== z ? (e = l, + a = z, function(c, l, h, z) { + return e.call(a, c, l, h, z); + }) : l; + for (void 0 === h ? (v = 1, s = c[t[0]]) : (v = 0, s = h); v < M; v++) s = f(s, c[m = t[v]], m, c); + return s; + }, nc = T.styles, rc = T.shims, ic = {}, Hc = {}, Vc = {}, oc = function() { + var c = function(z) { + return fc(nc, function(c, l, h) { + return c[h] = fc(l, z, {}), c; + }, {}); + }; + ic = c(function(c, l, h) { + return c[l[3]] = h, c; + }), Hc = c(function(l, c, h) { + var z = c[2]; + return l[h] = h, z.forEach(function(c) { + l[c] = h; + }), l; + }); + var m = "far" in nc; + Vc = fc(rc, function(c, l) { + var h = l[0], z = l[1], v = l[2]; + return "far" !== z || m || (z = "fas"), c[h] = { + prefix: z, + iconName: v + }, c; + }, {}); + }; + function Cc(c, l) { + return ic[c][l]; + } + oc(); + var Lc = T.styles, uc = function() { + return { + prefix: null, + iconName: null, + rest: [] + }; + }; + function dc(c) { + return c.reduce(function(c, l) { + var h = K(E.familyPrefix, l); + if (Lc[l]) c.prefix = l; else if (h) { + var z = "fa" === c.prefix ? Vc[h] || { + prefix: null, + iconName: null + } : {}; + c.iconName = z.iconName || h, c.prefix = z.prefix || c.prefix; + } else l !== E.replacementClass && 0 !== l.indexOf("fa-w-") && c.rest.push(l); + return c; + }, uc()); + } + function pc(c, l, h) { + if (c && c[l] && c[l][h]) return { + prefix: l, + iconName: h, + icon: c[l][h] + }; + } + function gc(c) { + var h, l = c.tag, z = c.attributes, v = void 0 === z ? {} : z, m = c.children, s = void 0 === m ? [] : m; + return "string" == typeof c ? G(c) : "<" + l + " " + (h = v, Object.keys(h || {}).reduce(function(c, l) { + return c + (l + '="') + G(h[l]) + '" '; + }, "").trim()) + ">" + s.map(gc).join("") + ""; + } + var bc = function() {}; + function Sc(c) { + return "string" == typeof (c.getAttribute ? c.getAttribute(b) : null); + } + var wc = { + replace: function(c) { + var l = c[0], h = c[1].map(function(c) { + return gc(c); + }).join("\n"); + if (l.parentNode && l.outerHTML) l.outerHTML = h + (E.keepOriginalSource && "svg" !== l.tagName.toLowerCase() ? "\x3c!-- " + l.outerHTML + " --\x3e" : ""); else if (l.parentNode) { + var z = document.createElement("span"); + l.parentNode.replaceChild(z, l), z.outerHTML = h; + } + }, + nest: function(c) { + var l = c[0], h = c[1]; + if (~U(l).indexOf(E.replacementClass)) return wc.replace(c); + var z = new RegExp(E.familyPrefix + "-.*"); + delete h[0].attributes.style; + var v = h[0].attributes.class.split(" ").reduce(function(c, l) { + return l === E.replacementClass || l.match(z) ? c.toSvg.push(l) : c.toNode.push(l), + c; + }, { + toNode: [], + toSvg: [] + }); + h[0].attributes.class = v.toSvg.join(" "); + var m = h.map(function(c) { + return gc(c); + }).join("\n"); + l.setAttribute("class", v.toNode.join(" ")), l.setAttribute(b, ""), l.innerHTML = m; + } + }; + function yc(h, c) { + var z = "function" == typeof c ? c : bc; + 0 === h.length ? z() : (n.requestAnimationFrame || function(c) { + return c(); + })(function() { + var c = !0 === E.autoReplaceSvg ? wc.replace : wc[E.autoReplaceSvg] || wc.replace, l = Mc.begin("mutate"); + h.map(c), l(), z(); + }); + } + var kc = !1; + var xc = null; + function Ac(c) { + if (e && E.observeMutations) { + var v = c.treeCallback, m = c.nodeCallback, s = c.pseudoElementsCallback, l = c.observeMutationsRoot, h = void 0 === l ? r.body : l; + xc = new e(function(c) { + kc || Y(c).forEach(function(c) { + if ("childList" === c.type && 0 < c.addedNodes.length && !Sc(c.addedNodes[0]) && (E.searchPseudoElements && s(c.target), + v(c.target)), "attributes" === c.type && c.target.parentNode && E.searchPseudoElements && s(c.target.parentNode), + "attributes" === c.type && Sc(c.target) && ~w.indexOf(c.attributeName)) if ("class" === c.attributeName) { + var l = dc(U(c.target)), h = l.prefix, z = l.iconName; + h && c.target.setAttribute("data-prefix", h), z && c.target.setAttribute("data-icon", z); + } else m(c.target); + }); + }), M && xc.observe(h, { + childList: !0, + attributes: !0, + characterData: !0, + subtree: !0 + }); + } + } + var qc = function(c) { + var l = c.getAttribute("style"), h = []; + return l && (h = l.split(";").reduce(function(c, l) { + var h = l.split(":"), z = h[0], v = h.slice(1); + return z && 0 < v.length && (c[z] = v.join(":").trim()), c; + }, {})), h; + }; + function jc(c) { + for (var l = "", h = 0; h < c.length; h++) { + l += ("000" + c.charCodeAt(h).toString(16)).slice(-4); + } + return l; + } + var Oc = function(c) { + var l, h, z = c.getAttribute("data-prefix"), v = c.getAttribute("data-icon"), m = void 0 !== c.innerText ? c.innerText.trim() : "", s = dc(U(c)); + return z && v && (s.prefix = z, s.iconName = v), s.prefix && 1 < m.length ? s.iconName = (l = s.prefix, + h = c.innerText, Hc[l][h]) : s.prefix && 1 === m.length && (s.iconName = Cc(s.prefix, jc(c.innerText))), + s; + }, Nc = function(c) { + var l = { + size: 16, + x: 0, + y: 0, + flipX: !1, + flipY: !1, + rotate: 0 + }; + return c ? c.toLowerCase().split(" ").reduce(function(c, l) { + var h = l.toLowerCase().split("-"), z = h[0], v = h.slice(1).join("-"); + if (z && "h" === v) return c.flipX = !0, c; + if (z && "v" === v) return c.flipY = !0, c; + if (v = parseFloat(v), isNaN(v)) return c; + switch (z) { + case "grow": + c.size = c.size + v; + break; + + case "shrink": + c.size = c.size - v; + break; + + case "left": + c.x = c.x - v; + break; + + case "right": + c.x = c.x + v; + break; + + case "up": + c.y = c.y - v; + break; + + case "down": + c.y = c.y + v; + break; + + case "rotate": + c.rotate = c.rotate + v; + } + return c; + }, l) : l; + }, Ec = function(c) { + return Nc(c.getAttribute("data-fa-transform")); + }, Pc = function(c) { + var l = c.getAttribute("data-fa-symbol"); + return null !== l && ("" === l || l); + }, Tc = function(c) { + var l = Y(c.attributes).reduce(function(c, l) { + return "class" !== c.name && "style" !== c.name && (c[l.name] = l.value), c; + }, {}), h = c.getAttribute("title"); + return E.autoA11y && (h ? l["aria-labelledby"] = E.replacementClass + "-title-" + W() : l["aria-hidden"] = "true"), + l; + }, _c = function(c) { + var l = c.getAttribute("data-fa-mask"); + return l ? dc(l.split(" ").map(function(c) { + return c.trim(); + })) : uc(); + }, Ic = { + iconName: null, + title: null, + prefix: null, + transform: B, + symbol: !1, + mask: null, + extra: { + classes: [], + styles: {}, + attributes: {} + } + }; + function Rc(c) { + this.name = "MissingIcon", this.message = c || "Icon unavailable", this.stack = new Error().stack; + } + (Rc.prototype = Object.create(Error.prototype)).constructor = Rc; + var Fc = { + fill: "currentColor" + }, Bc = { + attributeType: "XML", + repeatCount: "indefinite", + dur: "2s" + }, Dc = { + tag: "path", + attributes: A({}, Fc, { + d: "M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z" + }) + }, Xc = A({}, Bc, { + attributeName: "opacity" + }), Wc = { + tag: "g", + children: [ Dc, { + tag: "circle", + attributes: A({}, Fc, { + cx: "256", + cy: "364", + r: "28" + }), + children: [ { + tag: "animate", + attributes: A({}, Bc, { + attributeName: "r", + values: "28;14;28;28;14;28;" + }) + }, { + tag: "animate", + attributes: A({}, Xc, { + values: "1;0;1;1;0;1;" + }) + } ] + }, { + tag: "path", + attributes: A({}, Fc, { + opacity: "1", + d: "M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z" + }), + children: [ { + tag: "animate", + attributes: A({}, Xc, { + values: "1;0;0;0;0;1;" + }) + } ] + }, { + tag: "path", + attributes: A({}, Fc, { + opacity: "0", + d: "M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z" + }), + children: [ { + tag: "animate", + attributes: A({}, Xc, { + values: "0;0;1;1;0;0;" + }) + } ] + } ] + }, Yc = T.styles, Uc = "fa-layers-text", Kc = /Font Awesome 5 (Solid|Regular|Light|Brands|Free|Pro)/, Gc = { + Solid: "fas", + Regular: "far", + Light: "fal", + Brands: "fab" + }, Jc = { + 900: "fas", + 400: "far", + 300: "fal" + }; + function Qc(c, l) { + var h = { + found: !1, + width: 512, + height: 512, + icon: Wc + }; + if (c && l && Yc[l] && Yc[l][c]) { + var z = Yc[l][c]; + h = { + found: !0, + width: z[0], + height: z[1], + icon: { + tag: "path", + attributes: { + fill: "currentColor", + d: z.slice(4)[0] + } + } + }; + } else if (c && l && !E.showMissingIcons) throw new Rc("Icon is missing for prefix " + l + " with icon name " + c); + return h; + } + function Zc(c) { + var l, h, z, v, m, s, e, a, t, M, f, n, r, i, H, V, o, C, L, u = (h = Oc(l = c), + z = h.iconName, v = h.prefix, m = h.rest, s = qc(l), e = Ec(l), a = Pc(l), t = Tc(l), + M = _c(l), { + iconName: z, + title: l.getAttribute("title"), + prefix: v, + transform: e, + symbol: a, + mask: M, + extra: { + classes: m, + styles: s, + attributes: t + } + }); + return ~u.extra.classes.indexOf(Uc) ? function(c, l) { + var h = l.title, z = l.transform, v = l.extra, m = null, s = null; + if (p) { + var e = parseInt(getComputedStyle(c).fontSize, 10), a = c.getBoundingClientRect(); + m = a.width / e, s = a.height / e; + } + return E.autoA11y && !h && (v.attributes["aria-hidden"] = "true"), [ c, mc({ + content: c.innerHTML, + width: m, + height: s, + transform: z, + title: h, + extra: v, + watchable: !0 + }) ]; + }(c, u) : (f = c, r = (n = u).iconName, i = n.title, H = n.prefix, V = n.transform, + o = n.symbol, C = n.mask, L = n.extra, [ f, vc({ + icons: { + main: Qc(r, H), + mask: Qc(C.iconName, C.prefix) + }, + prefix: H, + iconName: r, + transform: V, + symbol: o, + mask: C, + title: i, + extra: L, + watchable: !0 + }) ]); + } + function $c(c) { + if (M) { + var l = Mc.begin("searchPseudoElements"); + kc = !0, function() { + Y(c.querySelectorAll("*")).filter(function(c) { + return !(c.parentNode === document.head || ~L.indexOf(c.tagName.toUpperCase()) || c.getAttribute(H) || c.parentNode && "svg" === c.parentNode.tagName); + }).forEach(function(f) { + [ ":before", ":after" ].forEach(function(l) { + var c = Y(f.children).filter(function(c) { + return c.getAttribute(H) === l; + })[0], h = n.getComputedStyle(f, l), z = h.getPropertyValue("font-family").match(Kc), v = h.getPropertyValue("font-weight"); + if (c && !z) f.removeChild(c); else if (z) { + var m = h.getPropertyValue("content"), s = ~[ "Light", "Regular", "Solid", "Brands" ].indexOf(z[1]) ? Gc[z[1]] : Jc[v], e = Cc(s, jc(3 === m.length ? m.substr(1, 1) : m)); + if (!c || c.getAttribute(V) !== s || c.getAttribute(o) !== e) { + c && f.removeChild(c); + var a = Ic.extra; + a.attributes[H] = l; + var t = vc(A({}, Ic, { + icons: { + main: Qc(e, s), + mask: uc() + }, + prefix: s, + iconName: e, + extra: a, + watchable: !0 + })), M = r.createElement("svg"); + ":before" === l ? f.insertBefore(M, f.firstChild) : f.appendChild(M), M.outerHTML = t.map(function(c) { + return gc(c); + }).join("\n"); + } + } + }); + }); + }(), kc = !1, l(); + } + } + function cl(c) { + var l = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : null; + if (M) { + var h = r.documentElement.classList, z = function(c) { + return h.add(C + "-" + c); + }, v = function(c) { + return h.remove(C + "-" + c); + }, m = Object.keys(Yc), s = [ "." + Uc + ":not([" + b + "])" ].concat(m.map(function(c) { + return "." + c + ":not([" + b + "])"; + })).join(", "); + if (0 !== s.length) { + var e = Y(c.querySelectorAll(s)); + if (0 < e.length) { + z("pending"), v("complete"); + var a = Mc.begin("onTree"), t = e.reduce(function(c, l) { + try { + var h = Zc(l); + h && c.push(h); + } catch (c) { + u || c instanceof Rc && console.error(c); + } + return c; + }, []); + a(), yc(t, function() { + z("active"), z("complete"), v("pending"), "function" == typeof l && l(); + }); + } + } + } + } + function ll(c) { + var l = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : null, h = Zc(c); + h && yc([ h ], l); + } + var hl = function() { + var c = i, l = E.familyPrefix, h = E.replacementClass, z = 'svg:not(:root).svg-inline--fa {\n overflow: visible; }\n\n.svg-inline--fa {\n display: inline-block;\n font-size: inherit;\n height: 1em;\n overflow: visible;\n vertical-align: -.125em; }\n .svg-inline--fa.fa-lg {\n vertical-align: -.225em; }\n .svg-inline--fa.fa-w-1 {\n width: 0.0625em; }\n .svg-inline--fa.fa-w-2 {\n width: 0.125em; }\n .svg-inline--fa.fa-w-3 {\n width: 0.1875em; }\n .svg-inline--fa.fa-w-4 {\n width: 0.25em; }\n .svg-inline--fa.fa-w-5 {\n width: 0.3125em; }\n .svg-inline--fa.fa-w-6 {\n width: 0.375em; }\n .svg-inline--fa.fa-w-7 {\n width: 0.4375em; }\n .svg-inline--fa.fa-w-8 {\n width: 0.5em; }\n .svg-inline--fa.fa-w-9 {\n width: 0.5625em; }\n .svg-inline--fa.fa-w-10 {\n width: 0.625em; }\n .svg-inline--fa.fa-w-11 {\n width: 0.6875em; }\n .svg-inline--fa.fa-w-12 {\n width: 0.75em; }\n .svg-inline--fa.fa-w-13 {\n width: 0.8125em; }\n .svg-inline--fa.fa-w-14 {\n width: 0.875em; }\n .svg-inline--fa.fa-w-15 {\n width: 0.9375em; }\n .svg-inline--fa.fa-w-16 {\n width: 1em; }\n .svg-inline--fa.fa-w-17 {\n width: 1.0625em; }\n .svg-inline--fa.fa-w-18 {\n width: 1.125em; }\n .svg-inline--fa.fa-w-19 {\n width: 1.1875em; }\n .svg-inline--fa.fa-w-20 {\n width: 1.25em; }\n .svg-inline--fa.fa-pull-left {\n margin-right: .3em;\n width: auto; }\n .svg-inline--fa.fa-pull-right {\n margin-left: .3em;\n width: auto; }\n .svg-inline--fa.fa-border {\n height: 1.5em; }\n .svg-inline--fa.fa-li {\n width: 2em; }\n .svg-inline--fa.fa-fw {\n width: 1.25em; }\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0; }\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -.125em;\n width: 1em; }\n .fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center; }\n\n.fa-layers-text, .fa-layers-counter {\n display: inline-block;\n position: absolute;\n text-align: center; }\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center; }\n\n.fa-layers-counter {\n background-color: #ff253a;\n border-radius: 1em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #fff;\n height: 1.5em;\n line-height: 1;\n max-width: 5em;\n min-width: 1.5em;\n overflow: hidden;\n padding: .25em;\n right: 0;\n text-overflow: ellipsis;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right; }\n\n.fa-layers-bottom-right {\n bottom: 0;\n right: 0;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right; }\n\n.fa-layers-bottom-left {\n bottom: 0;\n left: 0;\n right: auto;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left; }\n\n.fa-layers-top-right {\n right: 0;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right; }\n\n.fa-layers-top-left {\n left: 0;\n right: auto;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top left;\n transform-origin: top left; }\n\n.fa-lg {\n font-size: 1.33333em;\n line-height: 0.75em;\n vertical-align: -.0667em; }\n\n.fa-xs {\n font-size: .75em; }\n\n.fa-sm {\n font-size: .875em; }\n\n.fa-1x {\n font-size: 1em; }\n\n.fa-2x {\n font-size: 2em; }\n\n.fa-3x {\n font-size: 3em; }\n\n.fa-4x {\n font-size: 4em; }\n\n.fa-5x {\n font-size: 5em; }\n\n.fa-6x {\n font-size: 6em; }\n\n.fa-7x {\n font-size: 7em; }\n\n.fa-8x {\n font-size: 8em; }\n\n.fa-9x {\n font-size: 9em; }\n\n.fa-10x {\n font-size: 10em; }\n\n.fa-fw {\n text-align: center;\n width: 1.25em; }\n\n.fa-ul {\n list-style-type: none;\n margin-left: 2.5em;\n padding-left: 0; }\n .fa-ul > li {\n position: relative; }\n\n.fa-li {\n left: -2em;\n position: absolute;\n text-align: center;\n width: 2em;\n line-height: inherit; }\n\n.fa-border {\n border: solid 0.08em #eee;\n border-radius: .1em;\n padding: .2em .25em .15em; }\n\n.fa-pull-left {\n float: left; }\n\n.fa-pull-right {\n float: right; }\n\n.fa.fa-pull-left,\n.fas.fa-pull-left,\n.far.fa-pull-left,\n.fal.fa-pull-left,\n.fab.fa-pull-left {\n margin-right: .3em; }\n\n.fa.fa-pull-right,\n.fas.fa-pull-right,\n.far.fa-pull-right,\n.fal.fa-pull-right,\n.fab.fa-pull-right {\n margin-left: .3em; }\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear; }\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8); }\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n.fa-rotate-90 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg); }\n\n.fa-rotate-180 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg); }\n\n.fa-rotate-270 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg); }\n\n.fa-flip-horizontal {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1); }\n\n.fa-flip-vertical {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1); }\n\n.fa-flip-horizontal.fa-flip-vertical {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1); }\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n -webkit-filter: none;\n filter: none; }\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n position: relative;\n width: 2em; }\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0; }\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1em; }\n\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2em; }\n\n.fa-inverse {\n color: #fff; }\n\n.sr-only {\n border: 0;\n clip: rect(0, 0, 0, 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px; }\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n clip: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n position: static;\n width: auto; }\n'; + if ("fa" !== l || h !== c) { + var v = new RegExp("\\.fa\\-", "g"), m = new RegExp("\\." + c, "g"); + z = z.replace(v, "." + l + "-").replace(m, "." + h); + } + return z; + }; + function zl(c) { + return { + found: !0, + width: c[0], + height: c[1], + icon: { + tag: "path", + attributes: { + fill: "currentColor", + d: c.slice(4)[0] + } + } + }; + } + function vl() { + E.autoAddCss && !tl && (D(hl()), tl = !0); + } + function ml(l, c) { + return Object.defineProperty(l, "abstract", { + get: c + }), Object.defineProperty(l, "html", { + get: function() { + return l.abstract.map(function(c) { + return gc(c); + }); + } + }), Object.defineProperty(l, "node", { + get: function() { + if (M) { + var c = r.createElement("div"); + return c.innerHTML = l.html, c.children; + } + } + }), l; + } + function sl(c) { + var l = c.prefix, h = void 0 === l ? "fa" : l, z = c.iconName; + if (z) return pc(al.definitions, h, z) || pc(T.styles, h, z); + } + var el, al = new (function() { + function c() { + k(this, c), this.definitions = {}; + } + return x(c, [ { + key: "add", + value: function() { + for (var l = this, c = arguments.length, h = Array(c), z = 0; z < c; z++) h[z] = arguments[z]; + var v = h.reduce(this._pullDefinitions, {}); + Object.keys(v).forEach(function(c) { + l.definitions[c] = A({}, l.definitions[c] || {}, v[c]), function c(l, z) { + var h = Object.keys(z).reduce(function(c, l) { + var h = z[l]; + return h.icon ? c[h.iconName] = h.icon : c[l] = h, c; + }, {}); + "function" == typeof T.hooks.addPack ? T.hooks.addPack(l, h) : T.styles[l] = A({}, T.styles[l] || {}, h), + "fas" === l && c("fa", z); + }(c, v[c]), oc(); + }); + } + }, { + key: "reset", + value: function() { + this.definitions = {}; + } + }, { + key: "_pullDefinitions", + value: function(m, c) { + var s = c.prefix && c.iconName && c.icon ? { + 0: c + } : c; + return Object.keys(s).map(function(c) { + var l = s[c], h = l.prefix, z = l.iconName, v = l.icon; + m[h] || (m[h] = {}), m[h][z] = v; + }), m; + } + } ]), c; + }())(), tl = !1, Ml = { + i2svg: function() { + var c = 0 < arguments.length && void 0 !== arguments[0] ? arguments[0] : {}; + if (M) { + vl(); + var l = c.node, h = void 0 === l ? r : l, z = c.callback, v = void 0 === z ? function() {} : z; + E.searchPseudoElements && $c(h), cl(h, v); + } + }, + css: hl, + insertCss: function() { + tl || (D(hl()), tl = !0); + }, + watch: function() { + var c = 0 < arguments.length && void 0 !== arguments[0] ? arguments[0] : {}, l = c.autoReplaceSvgRoot, h = c.observeMutationsRoot; + !1 === E.autoReplaceSvg && (E.autoReplaceSvg = !0), E.observeMutations = !0, R(function() { + rl({ + autoReplaceSvgRoot: l + }), Ac({ + treeCallback: cl, + nodeCallback: ll, + pseudoElementsCallback: $c, + observeMutationsRoot: h + }); + }); + } + }, fl = (el = function(c) { + var l = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : {}, h = l.transform, z = void 0 === h ? B : h, v = l.symbol, m = void 0 !== v && v, s = l.mask, e = void 0 === s ? null : s, a = l.title, t = void 0 === a ? null : a, M = l.classes, f = void 0 === M ? [] : M, n = l.attributes, r = void 0 === n ? {} : n, i = l.styles, H = void 0 === i ? {} : i; + if (c) { + var V = c.prefix, o = c.iconName, C = c.icon; + return ml(A({ + type: "icon" + }, c), function() { + return vl(), E.autoA11y && (t ? r["aria-labelledby"] = E.replacementClass + "-title-" + W() : r["aria-hidden"] = "true"), + vc({ + icons: { + main: zl(C), + mask: e ? zl(e.icon) : { + found: !1, + width: null, + height: null, + icon: {} + } + }, + prefix: V, + iconName: o, + transform: A({}, B, z), + symbol: m, + title: t, + extra: { + attributes: r, + styles: H, + classes: f + } + }); + }); + } + }, function(c) { + var l = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : {}, h = (c || {}).icon ? c : sl(c || {}), z = l.mask; + return z && (z = (z || {}).icon ? z : sl(z || {})), el(h, A({}, l, { + mask: z + })); + }), nl = { + noAuto: function() { + E.autoReplaceSvg = !1, E.observeMutations = !1, xc && xc.disconnect(); + }, + config: E, + dom: Ml, + library: al, + parse: { + transform: function(c) { + return Nc(c); + } + }, + findIconDefinition: sl, + icon: fl, + text: function(c) { + var l = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : {}, h = l.transform, z = void 0 === h ? B : h, v = l.title, m = void 0 === v ? null : v, s = l.classes, e = void 0 === s ? [] : s, a = l.attributes, t = void 0 === a ? {} : a, M = l.styles, f = void 0 === M ? {} : M; + return ml({ + type: "text", + content: c + }, function() { + return vl(), mc({ + content: c, + transform: A({}, B, z), + title: m, + extra: { + attributes: t, + styles: f, + classes: [ E.familyPrefix + "-layers-text" ].concat(j(e)) + } + }); + }); + }, + counter: function(c) { + var l = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : {}, h = l.title, z = void 0 === h ? null : h, v = l.classes, m = void 0 === v ? [] : v, s = l.attributes, e = void 0 === s ? {} : s, a = l.styles, t = void 0 === a ? {} : a; + return ml({ + type: "counter", + content: c + }, function() { + return vl(), function(c) { + var l = c.content, h = c.title, z = c.extra, v = A({}, z.attributes, h ? { + title: h + } : {}, { + class: z.classes.join(" ") + }), m = J(z.styles); + 0 < m.length && (v.style = m); + var s = []; + return s.push({ + tag: "span", + attributes: v, + children: [ l ] + }), h && s.push({ + tag: "span", + attributes: { + class: "sr-only" + }, + children: [ h ] + }), s; + }({ + content: c.toString(), + title: z, + extra: { + attributes: e, + styles: t, + classes: [ E.familyPrefix + "-layers-counter" ].concat(j(m)) + } + }); + }); + }, + layer: function(c) { + return ml({ + type: "layer" + }, function() { + vl(); + var l = []; + return c(function(c) { + Array.isArray(c) ? c.map(function(c) { + l = l.concat(c.abstract); + }) : l = l.concat(c.abstract); + }), [ { + tag: "span", + attributes: { + class: E.familyPrefix + "-layers" + }, + children: l + } ]; + }); + }, + toHtml: gc + }, rl = function() { + var c = (0 < arguments.length && void 0 !== arguments[0] ? arguments[0] : {}).autoReplaceSvgRoot, l = void 0 === c ? r : c; + 0 < Object.keys(T.styles).length && M && E.autoReplaceSvg && nl.dom.i2svg({ + node: l + }); + }; + !function(c) { + try { + c(); + } catch (c) { + if (!u) throw c; + } + }(function() { + t && (n.FontAwesome || (n.FontAwesome = nl), R(function() { + rl(), Ac({ + treeCallback: cl, + nodeCallback: ll, + pseudoElementsCallback: $c + }); + })), T.hooks = A({}, T.hooks, { + addPack: function(c, l) { + T.styles[c] = A({}, T.styles[c] || {}, l), oc(), rl(); + }, + addShims: function(c) { + var l; + (l = T.shims).push.apply(l, j(c)), oc(), rl(); + } + }); + }); +}(); \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/brands.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/brands.js new file mode 100644 index 0000000000..7c7e7c6489 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/brands.js @@ -0,0 +1,498 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +(function () { +'use strict'; + +var _WINDOW = {}; +try { + if (typeof window !== 'undefined') _WINDOW = window; + +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; + + + + + +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; + + + + + + + + + +var PRODUCTION = function () { + try { + return undefined === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + + + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var icons = { + "500px": [448, 512, [], "f26e", "M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3.3-16 16.5-21.2 23.9l-.5.6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8zm63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2zM393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4zM213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6.2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6z"], + "accessible-icon": [448, 512, [], "f368", "M423.9 255.8L411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7zm-64.9-154c28.1 0 50.9-22.8 50.9-50.9C409.9 22.8 387.1 0 359 0c-28.1 0-50.9 22.8-50.9 50.9 0 28.1 22.8 50.9 50.9 50.9zM179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3z"], + "accusoft": [640, 512, [], "f369", "M482.2 372.1C476.5 365.2 250 75 242.3 65.5c-13.7-17.2 0-16.8 19.2-16.9 9.7-.1 106.3-.6 116.5-.6 24.1-.1 28.7.6 38.4 12.8 2.1 2.7 205.1 245.8 207.2 248.3 5.5 6.7 15.2 19.1 7.2 23.4-2.4 1.3-114.6 47.7-117.8 48.9-10.1 4-17.5 6.8-30.8-9.3m114.7-5.6s-115 50.4-117.5 51.6c-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2-2.3-.3-24.6-4.7-38-7.2m-326-181.3s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3v-1l-51.2-65.8"], + "adn": [496, 512, [], "f170", "M248 167.5l64.9 98.8H183.1l64.9-98.8zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7h30.2z"], + "adversal": [512, 512, [], "f36a", "M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2zM178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4.4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3zm286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7.4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9zm3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6.4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1.2-.1.3-.1.5zm-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2.4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1zm-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8z"], + "affiliatetheme": [512, 512, [], "f36b", "M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2 29.1 21.6 11.1 96.6-40.2 167.5zm351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9.1-8.5-.3-16.8-1-25z"], + "algolia": [448, 512, [], "f36c", "M229.3 182.6c-49.3 0-89.2 39.9-89.2 89.2 0 49.3 39.9 89.2 89.2 89.2s89.2-39.9 89.2-89.2c0-49.3-40-89.2-89.2-89.2zm62.7 56.6l-58.9 30.6c-1.8.9-3.8-.4-3.8-2.3V201c0-1.5 1.3-2.7 2.7-2.6 26.2 1 48.9 15.7 61.1 37.1.7 1.3.2 3-1.1 3.7zM389.1 32H58.9C26.4 32 0 58.4 0 90.9V421c0 32.6 26.4 59 58.9 59H389c32.6 0 58.9-26.4 58.9-58.9V90.9C448 58.4 421.6 32 389.1 32zm-202.6 84.7c0-10.8 8.7-19.5 19.5-19.5h45.3c10.8 0 19.5 8.7 19.5 19.5v15.4c0 1.8-1.7 3-3.3 2.5-12.3-3.4-25.1-5.1-38.1-5.1-13.5 0-26.7 1.8-39.4 5.5-1.7.5-3.4-.8-3.4-2.5v-15.8zm-84.4 37l9.2-9.2c7.6-7.6 19.9-7.6 27.5 0l7.7 7.7c1.1 1.1 1 3-.3 4-6.2 4.5-12.1 9.4-17.6 14.9-5.4 5.4-10.4 11.3-14.8 17.4-1 1.3-2.9 1.5-4 .3l-7.7-7.7c-7.6-7.5-7.6-19.8 0-27.4zm127.2 244.8c-70 0-126.6-56.7-126.6-126.6s56.7-126.6 126.6-126.6c70 0 126.6 56.6 126.6 126.6 0 69.8-56.7 126.6-126.6 126.6z"], + "amazon": [448, 512, [], "f270", "M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z"], + "amazon-pay": [611, 512, [], "f42c", "M0 325.2c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7 40.7 20.4 83.2 35.6 127.4 46.3 20.9 5 41.9 9 63.2 11.8 31.5 4.2 63.2 6 95 5.2 17.4-.4 34.8-1.8 52.1-3.8 56.4-6.7 110.9-20.8 163.3-42.8 2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9-2.8 2.8-6.3 5.1-9.6 7.4-30.7 21.1-64.2 36.4-99.6 47.9-24.6 7.9-49.6 13.8-75.1 17.6-17.6 2.6-35.4 4.4-53.2 4.8-.8 0-1.7.2-2.5.3H294c-.8-.1-1.7-.3-2.5-.3-3.6-.2-7.2-.3-10.7-.4-16.9-.7-33.7-2.6-50.4-5.3-27.4-4.5-54.2-11.4-80.4-20.9-54.1-19.6-102.6-48.6-145.6-87-1.8-1.6-3-3.8-4.4-5.7v-2zM158 65c-1.4.2-2.9.4-4.3.6-14 1.7-26.6 6.9-38 15.1-2.4 1.7-4.6 3.5-7.1 5.4-.2-.5-.4-1-.4-1.4-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6H87.8c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3V215c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zm-47.4 41.9c0-1.5.4-2.4 1.7-3.3 13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9-1.2-.9-1.7-1.7-1.7-3.3.1-14.1 0-28.1 0-42.2 0-14 .1-28 0-42.1zM316.3 65c-1 .1-2 .3-2.9.4-9.8.5-19.4 1.7-28.9 4.1-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9 0 .4-.1.9-.2 1.4-.5-.1-.9 0-1.3-.1-10.5-2.5-21.1-4.3-32-4.9-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4.4-.4.9-.7 1.6-1.1.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0 2.7-.1 4.5-1.9 4.8-4.7.1-.9.1-1.9.1-2.8v-106c0-4.3-.2-8.6-.9-12.9-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1zm35 127.7c0 1.3-.4 2.2-1.5 3-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8-6.3-2.5-10.4-6.9-12.4-13.3s-2-13-.1-19.4c2.5-8.3 8.4-13 16.4-15.6 8.1-2.6 16.5-3 24.8-2.2 8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3-.1 4.7-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3-6.8-2.3-13.9-3.3-21-3.9-13.1-1.1-26.2-.5-39.2 1.9-14.3 2.7-27.9 7.3-40 15.6-1.4 1-2.8 2.1-3.7 3.5-.7 1.1-.9 2.8-.5 4 .4 1.5 2.1 1.9 3.6 1.8.7 0 1.5 0 2.2-.1 7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9 4.8.3 9.7 1.4 14.4 2.7 5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1-.4 1-.8 2-1 3-.5 2.9 1.2 4.8 4.1 4.1 1.7-.4 3.6-1.3 4.8-2.5 4.4-4.3 8.9-8.6 12.7-13.4 12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9v-17.3zM479.1 198.9c-12.9-35.7-25.8-71.5-38.7-107.2-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5.5 2.1 1.1 4.1 1.9 6.1 19.6 48.5 39.3 97.1 59.1 145.5 1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3-5.1 1.4-10.2 1.6-15.4 1.1-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8-.1 3.3-.1 6.6 0 9.9.1 5.5 2 8 7.4 8.9 5.6 1 11.3 1.9 16.9 2 17.1.4 30.7-6.5 39.5-21.4 3.5-5.9 6.7-12.1 9.2-18.4 23.7-59.8 47.1-119.7 70.6-179.6.7-1.8 1.3-3.6 1.6-5.5.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0-3.7 0-6.3 1.6-7.7 5.2-.5 1.4-1.1 2.7-1.6 4.1-11.6 33.3-23.2 66.6-34.8 100-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z"], + "amilia": [448, 512, [], "f36d", "M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm-87.9 327.7c0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5V380c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7"], + "android": [448, 512, [], "f17b", "M89.6 204.5v115.8c0 15.4-12.1 27.7-27.5 27.7-15.3 0-30.1-12.4-30.1-27.7V204.5c0-15.1 14.8-27.5 30.1-27.5 15.1 0 27.5 12.4 27.5 27.5zm10.8 157c0 16.4 13.2 29.6 29.6 29.6h19.9l.3 61.1c0 36.9 55.2 36.6 55.2 0v-61.1h37.2v61.1c0 36.7 55.5 36.8 55.5 0v-61.1h20.2c16.2 0 29.4-13.2 29.4-29.6V182.1H100.4v179.4zm248-189.1H99.3c0-42.8 25.6-80 63.6-99.4l-19.1-35.3c-2.8-4.9 4.3-8 6.7-3.8l19.4 35.6c34.9-15.5 75-14.7 108.3 0L297.5 34c2.5-4.3 9.5-1.1 6.7 3.8L285.1 73c37.7 19.4 63.3 56.6 63.3 99.4zm-170.7-55.5c0-5.7-4.6-10.5-10.5-10.5-5.7 0-10.2 4.8-10.2 10.5s4.6 10.5 10.2 10.5c5.9 0 10.5-4.8 10.5-10.5zm113.4 0c0-5.7-4.6-10.5-10.2-10.5-5.9 0-10.5 4.8-10.5 10.5s4.6 10.5 10.5 10.5c5.6 0 10.2-4.8 10.2-10.5zm94.8 60.1c-15.1 0-27.5 12.1-27.5 27.5v115.8c0 15.4 12.4 27.7 27.5 27.7 15.4 0 30.1-12.4 30.1-27.7V204.5c0-15.4-14.8-27.5-30.1-27.5z"], + "angellist": [448, 512, [], "f209", "M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7zM311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6 33.1-93.7zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8zM140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7.1-7.7 12.7-21.1 20.4-21.1zm184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3.3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7.1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7zm-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1z"], + "angrycreative": [640, 512, [], "f36e", "M640 238.2l-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4 93.1-6.2zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9-12.8 120zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3-126.2 7.7zm-44.3-70.2l-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7 2.7-29.8zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1zm21.1 70.8l5.8-60c-5 13.5-14.7 21.1-27.9 26.6l22.1 33.4zm135.4-45l-7.9-37.8-15.8 39.3 23.7-1.5zm-170.1-74.6l-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8.3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2-56.8 3.7zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1.6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2l-2.9 28.8zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3zm-201.3 8.2l23.8-1.6-8.3-37.6-15.5 39.2z"], + "angular": [415, 512, [], "f420", "M169.7 268.1h76.2l-38.1-91.6-38.1 91.6zM207.8 32L0 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7L207.8 32zM338 373.8h-48.6l-26.2-65.4H152.6l-26.2 65.4H77.7L207.8 81.5 338 373.8z"], + "app-store": [512, 512, [], "f36f", "M255.9 120.9l9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5 9.8 5.6 13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4 0-11.3 9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5l8.9 15.7zm-78.7 218l-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5-9.8-5.6-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6zm168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4 0 11.3-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216z"], + "app-store-ios": [448, 512, [], "f370", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7c16.1-4.9 29.3-1.1 39.6 11.4L127 384.5zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40zm98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20z"], + "apper": [640, 512, [], "f371", "M42.1 239.1c22.2 0 29 2.8 33.5 14.6h.8v-22.9c0-11.3-4.8-15.4-17.9-15.4-11.3 0-14.4 2.5-15.1 12.8H4.8c.3-13.9 1.5-19.1 5.8-24.4C17.9 195 29.5 192 56.7 192c33 0 47.1 5 53.9 18.9 2 4.3 4 15.6 4 23.7v76.3H76.3l1.3-19.1h-1c-5.3 15.6-13.6 20.4-35.5 20.4-30.3 0-41.1-10.1-41.1-37.3 0-25.2 12.3-35.8 42.1-35.8zm17.1 48.1c13.1 0 16.9-3 16.9-13.4 0-9.1-4.3-11.6-19.6-11.6-13.1 0-17.9 3-17.9 12.1-.1 10.4 3.7 12.9 20.6 12.9zm77.8-94.9h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.2 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3H137v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm57.9-60.7h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.3 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3h-39.5v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm53.8-3.8c0-25.4 3.3-37.8 12.3-45.8 8.8-8.1 22.2-11.3 45.1-11.3 42.8 0 55.7 12.8 55.7 55.7v11.1h-75.3c-.3 2-.3 4-.3 4.8 0 16.9 4.5 21.9 20.1 21.9 13.9 0 17.9-3 17.9-13.9h37.5v2.3c0 9.8-2.5 18.9-6.8 24.7-7.3 9.8-19.6 13.6-44.3 13.6-27.5 0-41.6-3.3-50.6-12.3-8.5-8.5-11.3-21.3-11.3-50.8zm76.4-11.6c-.3-1.8-.3-3.3-.3-3.8 0-12.3-3.3-14.6-19.6-14.6-14.4 0-17.1 3-18.1 15.1l-.3 3.3h38.3zm55.6-45.3h38.3l-1.8 19.9h.7c6.8-14.9 14.4-20.2 29.7-20.2 10.8 0 19.1 3.3 23.4 9.3 5.3 7.3 6.8 14.4 6.8 34 0 1.5 0 5 .2 9.3h-35c.3-1.8.3-3.3.3-4 0-15.4-2-19.4-10.3-19.4-6.3 0-10.8 3.3-13.1 9.3-1 3-1 4.3-1 12.3v68h-38.3V192.3z"], + "apple": [376, 512, [], "f179", "M314.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C59.3 141.2 0 184.8 0 273.5c0 26.2 4.8 53.3 14.4 81.2 12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z"], + "apple-pay": [640, 512, [], "f415", "M116.9 158.5c-7.5 8.9-19.5 15.9-31.5 14.9-1.5-12 4.4-24.8 11.3-32.6 7.5-9.1 20.6-15.6 31.3-16.1 1.2 12.4-3.7 24.7-11.1 33.8m10.9 17.2c-17.4-1-32.3 9.9-40.5 9.9-8.4 0-21-9.4-34.8-9.1-17.9.3-34.5 10.4-43.6 26.5-18.8 32.3-4.9 80 13.3 106.3 8.9 13 19.5 27.3 33.5 26.8 13.3-.5 18.5-8.6 34.5-8.6 16.1 0 20.8 8.6 34.8 8.4 14.5-.3 23.6-13 32.5-26 10.1-14.8 14.3-29.1 14.5-29.9-.3-.3-28-10.9-28.3-42.9-.3-26.8 21.9-39.5 22.9-40.3-12.5-18.6-32-20.6-38.8-21.1m100.4-36.2v194.9h30.3v-66.6h41.9c38.3 0 65.1-26.3 65.1-64.3s-26.4-64-64.1-64h-73.2zm30.3 25.5h34.9c26.3 0 41.3 14 41.3 38.6s-15 38.8-41.4 38.8h-34.8V165zm162.2 170.9c19 0 36.6-9.6 44.6-24.9h.6v23.4h28v-97c0-28.1-22.5-46.3-57.1-46.3-32.1 0-55.9 18.4-56.8 43.6h27.3c2.3-12 13.4-19.9 28.6-19.9 18.5 0 28.9 8.6 28.9 24.5v10.8l-37.8 2.3c-35.1 2.1-54.1 16.5-54.1 41.5.1 25.2 19.7 42 47.8 42zm8.2-23.1c-16.1 0-26.4-7.8-26.4-19.6 0-12.3 9.9-19.4 28.8-20.5l33.6-2.1v11c0 18.2-15.5 31.2-36 31.2zm102.5 74.6c29.5 0 43.4-11.3 55.5-45.4L640 193h-30.8l-35.6 115.1h-.6L537.4 193h-31.6L557 334.9l-2.8 8.6c-4.6 14.6-12.1 20.3-25.5 20.3-2.4 0-7-.3-8.9-.5v23.4c1.8.4 9.3.7 11.6.7z"], + "asymmetrik": [576, 512, [], "f372", "M517.5 309.2c38.8-40 58.1-80 58.5-116.1.8-65.5-59.4-118.2-169.4-135C277.9 38.4 118.1 73.6 0 140.5 52 114 110.6 92.3 170.7 82.3c74.5-20.5 153-25.4 221.3-14.8C544.5 91.3 588.8 195 490.8 299.2c-10.2 10.8-22 21.1-35 30.6L304.9 103.4 114.7 388.9c-65.6-29.4-76.5-90.2-19.1-151.2 20.8-22.2 48.3-41.9 79.5-58.1 20-12.2 39.7-22.6 62-30.7-65.1 20.3-122.7 52.9-161.6 92.9-27.7 28.6-41.4 57.1-41.7 82.9-.5 35.1 23.4 65.1 68.4 83l-34.5 51.7h101.6l22-34.4c22.2 1 45.3 0 68.6-2.7l-22.8 37.1h135.5L340 406.3c18.6-5.3 36.9-11.5 54.5-18.7l45.9 71.8H542L468.6 349c18.5-12.1 35-25.5 48.9-39.8zm-187.6 80.5l-25-40.6-32.7 53.3c-23.4 3.5-46.7 5.1-69.2 4.4l101.9-159.3 78.7 123c-17.2 7.4-35.3 13.9-53.7 19.2z"], + "audible": [640, 512, [], "f373", "M640 199.9v54l-320 200L0 254v-54l320 200 320-200.1zm-194.5 72l47.1-29.4c-37.2-55.8-100.7-92.6-172.7-92.6-72 0-135.5 36.7-172.6 92.4h.3c2.5-2.3 5.1-4.5 7.7-6.7 89.7-74.4 219.4-58.1 290.2 36.3zm-220.1 18.8c16.9-11.9 36.5-18.7 57.4-18.7 34.4 0 65.2 18.4 86.4 47.6l45.4-28.4c-20.9-29.9-55.6-49.5-94.8-49.5-38.9 0-73.4 19.4-94.4 49zM103.6 161.1c131.8-104.3 318.2-76.4 417.5 62.1l.7 1 48.8-30.4C517.1 112.1 424.8 58.1 319.9 58.1c-103.5 0-196.6 53.5-250.5 135.6 9.9-10.5 22.7-23.5 34.2-32.6zm467 32.7z"], + "autoprefixer": [640, 512, [], "f41c", "M318.4 16l-161 480h77.5l25.4-81.4h119.5L405 496h77.5L318.4 16zm-40.3 341.9l41.2-130.4h1.5l40.9 130.4h-83.6zM640 405l-10-31.4L462.1 358l19.4 56.5L640 405zm-462.1-47L10 373.7 0 405l158.5 9.4 19.4-56.4z"], + "avianex": [512, 512, [], "f374", "M453.1 32h-312c-38.9 0-76.2 31.2-83.3 69.7L1.2 410.3C-5.9 448.8 19.9 480 58.9 480h312c38.9 0 76.2-31.2 83.3-69.7l56.7-308.5c7-38.6-18.8-69.8-57.8-69.8zm-58.2 347.3l-32 13.5-115.4-110c-14.7 10-29.2 19.5-41.7 27.1l22.1 64.2-17.9 12.7-40.6-61-52.4-48.1 15.7-15.4 58 31.1c9.3-10.5 20.8-22.6 32.8-34.9L203 228.9l-68.8-99.8 18.8-28.9 8.9-4.8L265 207.8l4.9 4.5c19.4-18.8 33.8-32.4 33.8-32.4 7.7-6.5 21.5-2.9 30.7 7.9 9 10.5 10.6 24.7 2.7 31.3-1.8 1.3-15.5 11.4-35.3 25.6l4.5 7.3 94.9 119.4-6.3 7.9z"], + "aviato": [640, 512, [], "f421", "M107.2 283.5l-19-41.8H36.1l-19 41.8H0l62.2-131.4 62.2 131.4h-17.2zm-45-98.1l-19.6 42.5h39.2l-19.6-42.5zm112.7 102.4l-62.2-131.4h17.1l45.1 96 45.1-96h17l-62.1 131.4zm80.6-4.3V156.4H271v127.1h-15.5zm209.1-115.6v115.6h-17.3V167.9h-41.2v-11.5h99.6v11.5h-41.1zM640 218.8c0 9.2-1.7 17.8-5.1 25.8-3.4 8-8.2 15.1-14.2 21.1-6 6-13.1 10.8-21.1 14.2-8 3.4-16.6 5.1-25.8 5.1s-17.8-1.7-25.8-5.1c-8-3.4-15.1-8.2-21.1-14.2-6-6-10.8-13-14.2-21.1-3.4-8-5.1-16.6-5.1-25.8s1.7-17.8 5.1-25.8c3.4-8 8.2-15.1 14.2-21.1 6-6 13-8.4 21.1-11.9 8-3.4 16.6-5.1 25.8-5.1s17.8 1.7 25.8 5.1c8 3.4 15.1 5.8 21.1 11.9 6 6 10.7 13.1 14.2 21.1 3.4 8 5.1 16.6 5.1 25.8zm-15.5 0c0-7.3-1.3-14-3.9-20.3-2.6-6.3-6.2-11.7-10.8-16.3-4.6-4.6-10-8.2-16.2-10.9-6.2-2.7-12.8-4-19.8-4s-13.6 1.3-19.8 4c-6.2 2.7-11.6 6.3-16.2 10.9-4.6 4.6-8.2 10-10.8 16.3-2.6 6.3-3.9 13.1-3.9 20.3 0 7.3 1.3 14 3.9 20.3 2.6 6.3 6.2 11.7 10.8 16.3 4.6 4.6 10 8.2 16.2 10.9 6.2 2.7 12.8 4 19.8 4s13.6-1.3 19.8-4c6.2-2.7 11.6-6.3 16.2-10.9 4.6-4.6 8.2-10 10.8-16.3 2.6-6.3 3.9-13.1 3.9-20.3zm-94.8 96.7v-6.3l88.9-10-242.9 13.4c.6-2.2 1.1-4.6 1.4-7.2.3-2 .5-4.2.6-6.5l64.8-8.1-64.9 1.9c0-.4-.1-.7-.1-1.1-2.8-17.2-25.5-23.7-25.5-23.7l-1.1-26.3h23.8l19 41.8h17.1L348.6 152l-62.2 131.4h17.1l19-41.8h23.6L345 268s-22.7 6.5-25.5 23.7c-.1.3-.1.7-.1 1.1l-64.9-1.9 64.8 8.1c.1 2.3.3 4.4.6 6.5.3 2.6.8 5 1.4 7.2L78.4 299.2l88.9 10v6.3c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4 0-6.2-4.6-11.3-10.5-12.2v-5.8l80.3 9v5.4c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-4.9l28.4 3.2v23.7h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9V323l38.3 4.3c8.1 11.4 19 13.6 19 13.6l-.1 6.7-5.1.2-.1 12.1h4.1l.1-5h5.2l.1 5h4.1l-.1-12.1-5.1-.2-.1-6.7s10.9-2.1 19-13.6l38.3-4.3v23.2h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9v-23.7l28.4-3.2v4.9c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-5.4l80.3-9v5.8c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4-.2-6.3-4.7-11.4-10.7-12.3zm-200.8-87.6l19.6-42.5 19.6 42.5h-17.9l-1.7-40.3-1.7 40.3h-17.9z"], + "aws": [640, 512, [], "f375", "M180.41 203.01c-.72 22.65 10.6 32.68 10.88 39.05a8.164 8.164 0 0 1-4.1 6.27l-12.8 8.96a10.66 10.66 0 0 1-5.63 1.92c-.43-.02-8.19 1.83-20.48-25.61a78.608 78.608 0 0 1-62.61 29.45c-16.28.89-60.4-9.24-58.13-56.21-1.59-38.28 34.06-62.06 70.93-60.05 7.1.02 21.6.37 46.99 6.27v-15.62c2.69-26.46-14.7-46.99-44.81-43.91-2.4.01-19.4-.5-45.84 10.11-7.36 3.38-8.3 2.82-10.75 2.82-7.41 0-4.36-21.48-2.94-24.2 5.21-6.4 35.86-18.35 65.94-18.18a76.857 76.857 0 0 1 55.69 17.28 70.285 70.285 0 0 1 17.67 52.36l-.01 69.29zM93.99 235.4c32.43-.47 46.16-19.97 49.29-30.47 2.46-10.05 2.05-16.41 2.05-27.4-9.67-2.32-23.59-4.85-39.56-4.87-15.15-1.14-42.82 5.63-41.74 32.26-1.24 16.79 11.12 31.4 29.96 30.48zm170.92 23.05c-7.86.72-11.52-4.86-12.68-10.37l-49.8-164.65c-.97-2.78-1.61-5.65-1.92-8.58a4.61 4.61 0 0 1 3.86-5.25c.24-.04-2.13 0 22.25 0 8.78-.88 11.64 6.03 12.55 10.37l35.72 140.83 33.16-140.83c.53-3.22 2.94-11.07 12.8-10.24h17.16c2.17-.18 11.11-.5 12.68 10.37l33.42 142.63L420.98 80.1c.48-2.18 2.72-11.37 12.68-10.37h19.72c.85-.13 6.15-.81 5.25 8.58-.43 1.85 3.41-10.66-52.75 169.9-1.15 5.51-4.82 11.09-12.68 10.37h-18.69c-10.94 1.15-12.51-9.66-12.68-10.75L328.67 110.7l-32.78 136.99c-.16 1.09-1.73 11.9-12.68 10.75h-18.3zm273.48 5.63c-5.88.01-33.92-.3-57.36-12.29a12.802 12.802 0 0 1-7.81-11.91v-10.75c0-8.45 6.2-6.9 8.83-5.89 10.04 4.06 16.48 7.14 28.81 9.6 36.65 7.53 52.77-2.3 56.72-4.48 13.15-7.81 14.19-25.68 5.25-34.95-10.48-8.79-15.48-9.12-53.13-21-4.64-1.29-43.7-13.61-43.79-52.36-.61-28.24 25.05-56.18 69.52-55.95 12.67-.01 46.43 4.13 55.57 15.62 1.35 2.09 2.02 4.55 1.92 7.04v10.11c0 4.44-1.62 6.66-4.87 6.66-7.71-.86-21.39-11.17-49.16-10.75-6.89-.36-39.89.91-38.41 24.97-.43 18.96 26.61 26.07 29.7 26.89 36.46 10.97 48.65 12.79 63.12 29.58 17.14 22.25 7.9 48.3 4.35 55.44-19.08 37.49-68.42 34.44-69.26 34.42zm40.2 104.86c-70.03 51.72-171.69 79.25-258.49 79.25A469.127 469.127 0 0 1 2.83 327.46c-6.53-5.89-.77-13.96 7.17-9.47a637.37 637.37 0 0 0 316.88 84.12 630.22 630.22 0 0 0 241.59-49.55c11.78-5 21.77 7.8 10.12 16.38zm29.19-33.29c-8.96-11.52-59.28-5.38-81.81-2.69-6.79.77-7.94-5.12-1.79-9.47 40.07-28.17 105.88-20.1 113.44-10.63 7.55 9.47-2.05 75.41-39.56 106.91-5.76 4.87-11.27 2.3-8.71-4.1 8.44-21.25 27.39-68.49 18.43-80.02z"], + "bandcamp": [496, 512, [], "f2d5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm48.2 326.1h-181L199.9 178h181l-84.7 156.1z"], + "behance": [576, 512, [], "f1b4", "M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z"], + "behance-square": [448, 512, [], "f1b5", "M186.5 293c0 19.3-14 25.4-31.2 25.4h-45.1v-52.9h46c18.6.1 30.3 7.8 30.3 27.5zm-7.7-82.3c0-17.7-13.7-21.9-28.9-21.9h-39.6v44.8H153c15.1 0 25.8-6.6 25.8-22.9zm132.3 23.2c-18.3 0-30.5 11.4-31.7 29.7h62.2c-1.7-18.5-11.3-29.7-30.5-29.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM271.7 185h77.8v-18.9h-77.8V185zm-43 110.3c0-24.1-11.4-44.9-35-51.6 17.2-8.2 26.2-17.7 26.2-37 0-38.2-28.5-47.5-61.4-47.5H68v192h93.1c34.9-.2 67.6-16.9 67.6-55.9zM380 280.5c0-41.1-24.1-75.4-67.6-75.4-42.4 0-71.1 31.8-71.1 73.6 0 43.3 27.3 73 71.1 73 33.2 0 54.7-14.9 65.1-46.8h-33.7c-3.7 11.9-18.6 18.1-30.2 18.1-22.4 0-34.1-13.1-34.1-35.3h100.2c.1-2.3.3-4.8.3-7.2z"], + "bimobject": [448, 512, [], "f378", "M416 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm-64 257.4c0 49.4-11.4 82.6-103.8 82.6h-16.9c-44.1 0-62.4-14.9-70.4-38.8h-.9V368H96V136h64v74.7h1.1c4.6-30.5 39.7-38.8 69.7-38.8h17.3c92.4 0 103.8 33.1 103.8 82.5v35zm-64-28.9v22.9c0 21.7-3.4 33.8-38.4 33.8h-45.3c-28.9 0-44.1-6.5-44.1-35.7v-19c0-29.3 15.2-35.7 44.1-35.7h45.3c35-.2 38.4 12 38.4 33.7z"], + "bitbucket": [512, 512, [], "f171", "M23.1 32C14.2 31.9 7 38.9 6.9 47.8c0 .9.1 1.8.2 2.8L74.9 462c1.7 10.4 10.7 18 21.2 18.1h325.1c7.9.1 14.7-5.6 16-13.4l67.8-416c1.4-8.7-4.5-16.9-13.2-18.3-.9-.1-1.8-.2-2.8-.2L23.1 32zm285.3 297.3H204.6l-28.1-146.8h157l-25.1 146.8z"], + "bitcoin": [512, 512, [], "f379", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z"], + "bity": [496, 512, [], "f37a", "M78.4 67.2C173.8-22 324.5-24 421.5 71c14.3 14.1-6.4 37.1-22.4 21.5-84.8-82.4-215.8-80.3-298.9-3.2-16.3 15.1-36.5-8.3-21.8-22.1zm98.9 418.6c19.3 5.7 29.3-23.6 7.9-30C73 421.9 9.4 306.1 37.7 194.8c5-19.6-24.9-28.1-30.2-7.1-32.1 127.4 41.1 259.8 169.8 298.1zm148.1-2c121.9-40.2 192.9-166.9 164.4-291-4.5-19.7-34.9-13.8-30 7.9 24.2 107.7-37.1 217.9-143.2 253.4-21.2 7-10.4 36 8.8 29.7zm-62.9-79l.2-71.8c0-8.2-6.6-14.8-14.8-14.8-8.2 0-14.8 6.7-14.8 14.8l-.2 71.8c0 8.2 6.6 14.8 14.8 14.8s14.8-6.6 14.8-14.8zm71-269c2.1 90.9 4.7 131.9-85.5 132.5-92.5-.7-86.9-44.3-85.5-132.5 0-21.8-32.5-19.6-32.5 0v71.6c0 69.3 60.7 90.9 118 90.1 57.3.8 118-20.8 118-90.1v-71.6c0-19.6-32.5-21.8-32.5 0z"], + "black-tie": [448, 512, [], "f27e", "M0 32v448h448V32H0zm316.5 325.2L224 445.9l-92.5-88.7 64.5-184-64.5-86.6h184.9L252 173.2l64.5 184z"], + "blackberry": [512, 512, [], "f37b", "M166 116.9c0 23.4-16.4 49.1-72.5 49.1H23.4l21-88.8h67.8c42.1 0 53.8 23.3 53.8 39.7zm126.2-39.7h-67.8L205.7 166h70.1c53.8 0 70.1-25.7 70.1-49.1.1-16.4-11.6-39.7-53.7-39.7zM88.8 208.1H21L0 296.9h70.1c56.1 0 72.5-23.4 72.5-49.1 0-16.3-11.7-39.7-53.8-39.7zm180.1 0h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 0-16.3-11.7-39.7-53.7-39.7zm189.3-53.8h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7zm-28 137.9h-67.8L343.7 381h70.1c56.1 0 70.1-23.4 70.1-49.1 0-16.3-11.6-39.7-53.7-39.7zM240.8 346H173l-18.7 88.8h70.1c56.1 0 70.1-25.7 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7z"], + "blogger": [448, 512, [], "f37c", "M162.4 196c4.8-4.9 6.2-5.1 36.4-5.1 27.2 0 28.1.1 32.1 2.1 5.8 2.9 8.3 7 8.3 13.6 0 5.9-2.4 10-7.6 13.4-2.8 1.8-4.5 1.9-31.1 2.1-16.4.1-29.5-.2-31.5-.8-10.3-2.9-14.1-17.7-6.6-25.3zm61.4 94.5c-53.9 0-55.8.2-60.2 4.1-3.5 3.1-5.7 9.4-5.1 13.9.7 4.7 4.8 10.1 9.2 12 2.2 1 14.1 1.7 56.3 1.2l47.9-.6 9.2-1.5c9-5.1 10.5-17.4 3.1-24.4-5.3-4.7-5-4.7-60.4-4.7zm223.4 130.1c-3.5 28.4-23 50.4-51.1 57.5-7.2 1.8-9.7 1.9-172.9 1.8-157.8 0-165.9-.1-172-1.8-8.4-2.2-15.6-5.5-22.3-10-5.6-3.8-13.9-11.8-17-16.4-3.8-5.6-8.2-15.3-10-22C.1 423 0 420.3 0 256.3 0 93.2 0 89.7 1.8 82.6 8.1 57.9 27.7 39 53 33.4c7.3-1.6 332.1-1.9 340-.3 21.2 4.3 37.9 17.1 47.6 36.4 7.7 15.3 7-1.5 7.3 180.6.2 115.8 0 164.5-.7 170.5zm-85.4-185.2c-1.1-5-4.2-9.6-7.7-11.5-1.1-.6-8-1.3-15.5-1.7-12.4-.6-13.8-.8-17.8-3.1-6.2-3.6-7.9-7.6-8-18.3 0-20.4-8.5-39.4-25.3-56.5-12-12.2-25.3-20.5-40.6-25.1-3.6-1.1-11.8-1.5-39.2-1.8-42.9-.5-52.5.4-67.1 6.2-27 10.7-46.3 33.4-53.4 62.4-1.3 5.4-1.6 14.2-1.9 64.3-.4 62.8 0 72.1 4 84.5 9.7 30.7 37.1 53.4 64.6 58.4 9.2 1.7 122.2 2.1 133.7.5 20.1-2.7 35.9-10.8 50.7-25.9 10.7-10.9 17.4-22.8 21.8-38.5 3.2-10.9 2.9-88.4 1.7-93.9z"], + "blogger-b": [448, 512, [], "f37d", "M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z"], + "bluetooth": [448, 512, [], "f293", "M292.6 171.1L249.7 214l-.3-86 43.2 43.1m-43.2 219.8l43.1-43.1-42.9-42.9-.2 86zM416 259.4C416 465 344.1 512 230.9 512S32 465 32 259.4 115.4 0 228.6 0 416 53.9 416 259.4zm-158.5 0l79.4-88.6L211.8 36.5v176.9L138 139.6l-27 26.9 92.7 93-92.7 93 26.9 26.9 73.8-73.8 2.3 170 127.4-127.5-83.9-88.7z"], + "bluetooth-b": [320, 512, [], "f294", "M196.48 260.023l92.626-103.333L143.125 0v206.33l-86.111-86.111-31.406 31.405 108.061 108.399L25.608 368.422l31.406 31.405 86.111-86.111L145.84 512l148.552-148.644-97.912-103.333zm40.86-102.996l-49.977 49.978-.338-100.295 50.315 50.317zM187.363 313.04l49.977 49.978-50.315 50.316.338-100.294z"], + "btc": [384, 512, [], "f15a", "M310.204 242.638c27.73-14.18 45.377-39.39 41.28-81.3-5.358-57.351-52.458-76.573-114.85-81.929V0h-48.528v77.203c-12.605 0-25.525.315-38.444.63V0h-48.528v79.409c-17.842.539-38.622.276-97.37 0v51.678c38.314-.678 58.417-3.14 63.023 21.427v217.429c-2.925 19.492-18.524 16.685-53.255 16.071L3.765 443.68c88.481 0 97.37.315 97.37.315V512h48.528v-67.06c13.234.315 26.154.315 38.444.315V512h48.528v-68.005c81.299-4.412 135.647-24.894 142.895-101.467 5.671-61.446-23.32-88.862-69.326-99.89zM150.608 134.553c27.415 0 113.126-8.507 113.126 48.528 0 54.515-85.71 48.212-113.126 48.212v-96.74zm0 251.776V279.821c32.772 0 133.127-9.138 133.127 53.255-.001 60.186-100.355 53.253-133.127 53.253z"], + "buromobelexperte": [448, 512, [], "f37f", "M0 32v128h128V32H0zm120 120H8V40h112v112zm40-120v128h128V32H160zm120 120H168V40h112v112zm40-120v128h128V32H320zm120 120H328V40h112v112zM0 192v128h128V192H0zm120 120H8V200h112v112zm40-120v128h128V192H160zm120 120H168V200h112v112zm40-120v128h128V192H320zm120 120H328V200h112v112zM0 352v128h128V352H0zm120 120H8V360h112v112zm40-120v128h128V352H160zm120 120H168V360h112v112zm40-120v128h128V352H320z"], + "buysellads": [448, 512, [], "f20d", "M224 150.7l42.9 160.7h-85.8L224 150.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-65.3 325.3l-94.5-298.7H159.8L65.3 405.3H156l111.7-91.6 24.2 91.6h90.8z"], + "cc-amazon-pay": [576, 512, [], "f42d", "M124.7 201.8c.1-11.8 0-23.5 0-35.3v-35.3c0-1.3.4-2 1.4-2.7 11.5-8 24.1-12.1 38.2-11.1 12.5.9 22.7 7 28.1 21.7 3.3 8.9 4.1 18.2 4.1 27.7 0 8.7-.7 17.3-3.4 25.6-5.7 17.8-18.7 24.7-35.7 23.9-11.7-.5-21.9-5-31.4-11.7-.9-.8-1.4-1.6-1.3-2.8zm154.9 14.6c4.6 1.8 9.3 2 14.1 1.5 11.6-1.2 21.9-5.7 31.3-12.5.9-.6 1.3-1.3 1.3-2.5-.1-3.9 0-7.9 0-11.8 0-4-.1-8 0-12 0-1.4-.4-2-1.8-2.2-7-.9-13.9-2.2-20.9-2.9-7-.6-14-.3-20.8 1.9-6.7 2.2-11.7 6.2-13.7 13.1-1.6 5.4-1.6 10.8.1 16.2 1.6 5.5 5.2 9.2 10.4 11.2zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zm-207.5 23.9c.4 1.7.9 3.4 1.6 5.1 16.5 40.6 32.9 81.3 49.5 121.9 1.4 3.5 1.7 6.4.2 9.9-2.8 6.2-4.9 12.6-7.8 18.7-2.6 5.5-6.7 9.5-12.7 11.2-4.2 1.1-8.5 1.3-12.9.9-2.1-.2-4.2-.7-6.3-.8-2.8-.2-4.2 1.1-4.3 4-.1 2.8-.1 5.6 0 8.3.1 4.6 1.6 6.7 6.2 7.5 4.7.8 9.4 1.6 14.2 1.7 14.3.3 25.7-5.4 33.1-17.9 2.9-4.9 5.6-10.1 7.7-15.4 19.8-50.1 39.5-100.3 59.2-150.5.6-1.5 1.1-3 1.3-4.6.4-2.4-.7-3.6-3.1-3.7-5.6-.1-11.1 0-16.7 0-3.1 0-5.3 1.4-6.4 4.3-.4 1.1-.9 2.3-1.3 3.4l-29.1 83.7c-2.1 6.1-4.2 12.1-6.5 18.6-.4-.9-.6-1.4-.8-1.9-10.8-29.9-21.6-59.9-32.4-89.8-1.7-4.7-3.5-9.5-5.3-14.2-.9-2.5-2.7-4-5.4-4-6.4-.1-12.8-.2-19.2-.1-2.2 0-3.3 1.6-2.8 3.7zM242.4 206c1.7 11.7 7.6 20.8 18 26.6 9.9 5.5 20.7 6.2 31.7 4.6 12.7-1.9 23.9-7.3 33.8-15.5.4-.3.8-.6 1.4-1 .5 3.2.9 6.2 1.5 9.2.5 2.6 2.1 4.3 4.5 4.4 4.6.1 9.1.1 13.7 0 2.3-.1 3.8-1.6 4-3.9.1-.8.1-1.6.1-2.3v-88.8c0-3.6-.2-7.2-.7-10.8-1.6-10.8-6.2-19.7-15.9-25.4-5.6-3.3-11.8-5-18.2-5.9-3-.4-6-.7-9.1-1.1h-10c-.8.1-1.6.3-2.5.3-8.2.4-16.3 1.4-24.2 3.5-5.1 1.3-10 3.2-15 4.9-3 1-4.5 3.2-4.4 6.5.1 2.8-.1 5.6 0 8.3.1 4.1 1.8 5.2 5.7 4.1 6.5-1.7 13.1-3.5 19.7-4.8 10.3-1.9 20.7-2.7 31.1-1.2 5.4.8 10.5 2.4 14.1 7 3.1 4 4.2 8.8 4.4 13.7.3 6.9.2 13.9.3 20.8 0 .4-.1.7-.2 1.2-.4 0-.8 0-1.1-.1-8.8-2.1-17.7-3.6-26.8-4.1-9.5-.5-18.9.1-27.9 3.2-10.8 3.8-19.5 10.3-24.6 20.8-4.1 8.3-4.6 17-3.4 25.8zM98.7 106.9v175.3c0 .8 0 1.7.1 2.5.2 2.5 1.7 4.1 4.1 4.2 5.9.1 11.8.1 17.7 0 2.5 0 4-1.7 4.1-4.1.1-.8.1-1.7.1-2.5v-60.7c.9.7 1.4 1.2 1.9 1.6 15 12.5 32.2 16.6 51.1 12.9 17.1-3.4 28.9-13.9 36.7-29.2 5.8-11.6 8.3-24.1 8.7-37 .5-14.3-1-28.4-6.8-41.7-7.1-16.4-18.9-27.3-36.7-30.9-2.7-.6-5.5-.8-8.2-1.2h-7c-1.2.2-2.4.3-3.6.5-11.7 1.4-22.3 5.8-31.8 12.7-2 1.4-3.9 3-5.9 4.5-.1-.5-.3-.8-.4-1.2-.4-2.3-.7-4.6-1.1-6.9-.6-3.9-2.5-5.5-6.4-5.6h-9.7c-5.9-.1-6.9 1-6.9 6.8zM493.6 339c-2.7-.7-5.1 0-7.6 1-43.9 18.4-89.5 30.2-136.8 35.8-14.5 1.7-29.1 2.8-43.7 3.2-26.6.7-53.2-.8-79.6-4.3-17.8-2.4-35.5-5.7-53-9.9-37-8.9-72.7-21.7-106.7-38.8-8.8-4.4-17.4-9.3-26.1-14-3.8-2.1-6.2-1.5-8.2 2.1v1.7c1.2 1.6 2.2 3.4 3.7 4.8 36 32.2 76.6 56.5 122 72.9 21.9 7.9 44.4 13.7 67.3 17.5 14 2.3 28 3.8 42.2 4.5 3 .1 6 .2 9 .4.7 0 1.4.2 2.1.3h17.7c.7-.1 1.4-.3 2.1-.3 14.9-.4 29.8-1.8 44.6-4 21.4-3.2 42.4-8.1 62.9-14.7 29.6-9.6 57.7-22.4 83.4-40.1 2.8-1.9 5.7-3.8 8-6.2 4.3-4.4 2.3-10.4-3.3-11.9zm50.4-27.7c-.8-4.2-4-5.8-7.6-7-5.7-1.9-11.6-2.8-17.6-3.3-11-.9-22-.4-32.8 1.6-12 2.2-23.4 6.1-33.5 13.1-1.2.8-2.4 1.8-3.1 3-.6.9-.7 2.3-.5 3.4.3 1.3 1.7 1.6 3 1.5.6 0 1.2 0 1.8-.1l19.5-2.1c9.6-.9 19.2-1.5 28.8-.8 4.1.3 8.1 1.2 12 2.2 4.3 1.1 6.2 4.4 6.4 8.7.3 6.7-1.2 13.1-2.9 19.5-3.5 12.9-8.3 25.4-13.3 37.8-.3.8-.7 1.7-.8 2.5-.4 2.5 1 4 3.4 3.5 1.4-.3 3-1.1 4-2.1 3.7-3.6 7.5-7.2 10.6-11.2 10.7-13.8 17-29.6 20.7-46.6.7-3 1.2-6.1 1.7-9.1.2-4.7.2-9.6.2-14.5z"], + "cc-amex": [576, 512, [], "f1f3", "M576 255.4c-37.9-.2-44.2-.9-54.5 5v-5c-45.3 0-53.5-1.7-64.9 5.2v-5.2h-78.2v5.1c-11.4-6.5-21.4-5.1-75.7-5.1v5.6c-6.3-3.7-14.5-5.6-24.3-5.6h-58c-3.5 3.8-12.5 13.7-15.7 17.2-12.7-14.1-10.5-11.6-15.5-17.2h-83.1v92.3h82c3.3-3.5 12.9-13.9 16.1-17.4 12.7 14.3 10.3 11.7 15.4 17.4h48.9c0-14.7.1-8.3.1-23 11.5.2 24.3-.2 34.3-6.2 0 13.9-.1 17.1-.1 29.2h39.6c0-18.5.1-7.4.1-25.3 6.2 0 7.7 0 9.4.1.1 1.3 0 0 0 25.2 152.8 0 145.9 1.1 156.7-4.5v4.5c34.8 0 54.8 2.2 67.5-6.1V432c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V228.3h26.6c4.2-10.1 2.2-5.3 6.4-15.3h19.2c4.2 10 2.2 5.2 6.4 15.3h52.9v-11.4c2.2 5 1.1 2.5 5.1 11.4h29.5c2.4-5.5 2.6-5.8 5.1-11.4v11.4h135.5v-25.1c6.4 0 8-.1 9.8.2 0 0-.2 10.9.1 24.8h66.5v-8.9c7.4 5.9 17.4 8.9 29.7 8.9h26.8c4.2-10.1 2.2-5.3 6.4-15.3h19c6.5 15 .2.5 6.6 15.3h52.8v-21.9c11.8 19.7 7.8 12.9 13.2 21.9h41.6v-92h-39.9v18.4c-12.2-20.2-6.3-10.4-11.2-18.4h-43.3v20.6c-6.2-14.6-4.6-10.8-8.8-20.6h-32.4c-.4 0-2.3.2-2.3-.3h-27.6c-12.8 0-23.1 3.2-30.7 9.3v-9.3h-39.9v5.3c-10.8-6.1-20.7-5.1-64.4-5.3-.1 0-11.6-.1-11.6 0h-103c-2.5 6.1-6.8 16.4-12.6 30-2.8-6-11-23.8-13.9-30h-46V157c-7.4-17.4-4.7-11-9-21.1H22.9c-3.4 7.9-13.7 32-23.1 53.9V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48v175.4zm-186.6-80.6c-.3.2-1.4 2.2-1.4 7.6 0 6 .9 7.7 1.1 7.9.2.1 1.1.5 3.4.5l7.3-16.9c-1.1 0-2.1-.1-3.1-.1-5.6 0-7 .7-7.3 1zm-19.9 130.9c9.2 3.3 11 9.5 11 18.4l-.1 13.8h-16.6l.1-11.5c0-11.8-3.8-13.8-14.8-13.8h-17.6l-.1 25.3h-16.6l.1-69.3h39.4c13 0 27.1 2.3 27.1 18.7-.1 7.6-4.2 15.3-11.9 18.4zm-6.3-15.4c0-6.4-5.6-7.4-10.7-7.4h-21v15.6h20.7c5.6 0 11-1.3 11-8.2zm181.7-7.1H575v-14.6h-32.9c-12.8 0-23.8 6.6-23.8 20.7 0 33 42.7 12.8 42.7 27.4 0 5.1-4.3 6.4-8.4 6.4h-32l-.1 14.8h32c8.4 0 17.6-1.8 22.5-8.9v-25.8c-10.5-13.8-39.3-1.3-39.3-13.5 0-5.8 4.6-6.5 9.2-6.5zm-99.2-.3v-14.3h-55.2l-.1 69.3h55.2l.1-14.3-38.6-.3v-13.8H445v-14.1h-37.8v-12.5h38.5zm42.2 40.1h-32.2l-.1 14.8h32.2c14.8 0 26.2-5.6 26.2-22 0-33.2-42.9-11.2-42.9-26.3 0-5.6 4.9-6.4 9.2-6.4h30.4v-14.6h-33.2c-12.8 0-23.5 6.6-23.5 20.7 0 33 42.7 12.5 42.7 27.4-.1 5.4-4.7 6.4-8.8 6.4zm-78.1-158.7c-17.4-.3-33.2-4.1-33.2 19.7 0 11.8 2.8 19.9 16.1 19.9h7.4l23.5-54.5h24.8l27.9 65.4v-65.4h25.3l29.1 48.1v-48.1h16.9v69H524l-31.2-51.9v51.9h-33.7l-6.6-15.3h-34.3l-6.4 15.3h-19.2c-22.8 0-33-11.8-33-34 0-23.3 10.5-35.3 34-35.3h16.1v15.2zm14.3 24.5h22.8l-11.2-27.6-11.6 27.6zm-72.6-39.6h-16.9v69.3h16.9v-69.3zm-38.1 37.3c9.5 3.3 11 9.2 11 18.4v13.5h-16.6c-.3-14.8 3.6-25.1-14.8-25.1h-18v25.1h-16.4v-69.3l39.1.3c13.3 0 27.4 2 27.4 18.4.1 8-4.3 15.7-11.7 18.7zm-6.7-15.3c0-6.4-5.6-7.4-10.7-7.4h-21v15.3h20.7c5.7 0 11-1.3 11-7.9zm-59.5-7.4v-14.6h-55.5v69.3h55.5v-14.3h-38.9v-13.8h37.8v-14.1h-37.8v-12.5h38.9zm-84.6 54.7v-54.2l-24 54.2H124l-24-54.2v54.2H66.2l-6.4-15.3H25.3l-6.4 15.3H1l29.7-69.3h24.5l28.1 65.7v-65.7h27.1l21.7 47 19.7-47h27.6v69.3h-16.8zM53.9 188.8l-11.5-27.6-11.2 27.6h22.7zm253 102.5c0 27.9-30.4 23.3-49.3 23.3l-.1 23.3h-32.2l-20.4-23-21.3 23h-65.4l.1-69.3h66.5l20.5 22.8 21-22.8H279c15.6 0 27.9 5.4 27.9 22.7zm-112.7 11.8l-17.9-20.2h-41.7v12.5h36.3v14.1h-36.3v13.8h40.6l19-20.2zM241 276l-25.3 27.4 25.3 28.1V276zm48.3 15.3c0-6.1-4.6-8.4-10.2-8.4h-21.5v17.6h21.2c5.9 0 10.5-2.8 10.5-9.2z"], + "cc-apple-pay": [576, 512, [], "f416", "M302.2 218.4c0 17.2-10.5 27.1-29 27.1h-24.3v-54.2h24.4c18.4 0 28.9 9.8 28.9 27.1zm47.5 62.6c0 8.3 7.2 13.7 18.5 13.7 14.4 0 25.2-9.1 25.2-21.9v-7.7l-23.5 1.5c-13.3.9-20.2 5.8-20.2 14.4zM576 79v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM127.8 197.2c8.4.7 16.8-4.2 22.1-10.4 5.2-6.4 8.6-15 7.7-23.7-7.4.3-16.6 4.9-21.9 11.3-4.8 5.5-8.9 14.4-7.9 22.8zm60.6 74.5c-.2-.2-19.6-7.6-19.8-30-.2-18.7 15.3-27.7 16-28.2-8.8-13-22.4-14.4-27.1-14.7-12.2-.7-22.6 6.9-28.4 6.9-5.9 0-14.7-6.6-24.3-6.4-12.5.2-24.2 7.3-30.5 18.6-13.1 22.6-3.4 56 9.3 74.4 6.2 9.1 13.7 19.1 23.5 18.7 9.3-.4 13-6 24.2-6 11.3 0 14.5 6 24.3 5.9 10.2-.2 16.5-9.1 22.8-18.2 6.9-10.4 9.8-20.4 10-21zm135.4-53.4c0-26.6-18.5-44.8-44.9-44.8h-51.2v136.4h21.2v-46.6h29.3c26.8 0 45.6-18.4 45.6-45zm90 23.7c0-19.7-15.8-32.4-40-32.4-22.5 0-39.1 12.9-39.7 30.5h19.1c1.6-8.4 9.4-13.9 20-13.9 13 0 20.2 6 20.2 17.2v7.5l-26.4 1.6c-24.6 1.5-37.9 11.6-37.9 29.1 0 17.7 13.7 29.4 33.4 29.4 13.3 0 25.6-6.7 31.2-17.4h.4V310h19.6v-68zM516 210.9h-21.5l-24.9 80.6h-.4l-24.9-80.6H422l35.9 99.3-1.9 6c-3.2 10.2-8.5 14.2-17.9 14.2-1.7 0-4.9-.2-6.2-.3v16.4c1.2.4 6.5.5 8.1.5 20.7 0 30.4-7.9 38.9-31.8L516 210.9z"], + "cc-diners-club": [576, 512, [], "f24c", "M239.7 79.9c-96.9 0-175.8 78.6-175.8 175.8 0 96.9 78.9 175.8 175.8 175.8 97.2 0 175.8-78.9 175.8-175.8 0-97.2-78.6-175.8-175.8-175.8zm-39.9 279.6c-41.7-15.9-71.4-56.4-71.4-103.8s29.7-87.9 71.4-104.1v207.9zm79.8.3V151.6c41.7 16.2 71.4 56.7 71.4 104.1s-29.7 87.9-71.4 104.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM329.7 448h-90.3c-106.2 0-193.8-85.5-193.8-190.2C45.6 143.2 133.2 64 239.4 64h90.3c105 0 200.7 79.2 200.7 193.8 0 104.7-95.7 190.2-200.7 190.2z"], + "cc-discover": [576, 512, [], "f1f2", "M83 212.1c0 7.9-3.2 15.5-8.9 20.7-4.9 4.4-11.6 6.4-21.9 6.4H48V185h4.2c10.3 0 16.7 1.7 21.9 6.6 5.7 5 8.9 12.6 8.9 20.5zM504.8 184h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8 0-7.9-5.5-12.1-15.6-12.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM428 253h45.3v-13.8H444V217h28.3v-13.8H444V185h29.3v-14H428v82zm-86.2-82l35 84.2h8.6l35.5-84.2h-17.5l-22.2 55.2-21.9-55.2h-17.5zm-83 41.6c0 24.6 19.9 44.6 44.6 44.6 24.6 0 44.6-19.9 44.6-44.6 0-24.6-19.9-44.6-44.6-44.6-24.6 0-44.6 19.9-44.6 44.6zm-68-.5c0 32.5 33.6 52.5 63.3 38.2v-19c-19.3 19.3-46.8 5.8-46.8-19.2 0-23.7 26.7-39.1 46.8-19v-19c-30.2-15-63.3 6.8-63.3 38zm-33.9 28.3c-7.6 0-13.8-3.7-17.5-10.8l-10.3 9.9c17.8 26.1 56.6 18.2 56.6-11.3 0-13.1-5.4-19-23.6-25.6-9.6-3.4-12.3-5.9-12.3-10.3 0-8.7 14.5-14.1 24.9-2.5l8.4-10.8c-19.1-17.1-49.7-8.9-49.7 14.3 0 11.3 5.2 17.2 20.2 22.7 25.7 9.1 14.7 24.4 3.3 24.4zm-57.4-28.3c0-24.1-18-41.1-44.1-41.1H32v82h23.4c30.9 0 44.1-22.4 44.1-40.9zm23.4-41.1h-16v82h16v-82zM544 288c-33.3 20.8-226.4 124.4-416 160h401c8.2 0 15-6.8 15-15V288zm0-35l-25.9-34.5c12.1-2.5 18.7-10.6 18.7-23.2 0-28.5-30.3-24.4-52.9-24.4v82h16v-32.8h2.2l22.2 32.8H544z"], + "cc-jcb": [576, 512, [], "f24b", "M431.5 244.3V212c41.2 0 38.5.2 38.5.2 7.3 1.3 13.3 7.3 13.3 16 0 8.8-6 14.5-13.3 15.8-1.2.4-3.3.3-38.5.3zm42.8 20.2c-2.8-.7-3.3-.5-42.8-.5v35c39.6 0 40 .2 42.8-.5 7.5-1.5 13.5-8 13.5-17 0-8.7-6-15.5-13.5-17zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM182 192.3h-57c0 67.1 10.7 109.7-35.8 109.7-19.5 0-38.8-5.7-57.2-14.8v28c30 8.3 68 8.3 68 8.3 97.9 0 82-47.7 82-131.2zm178.5 4.5c-63.4-16-165-14.9-165 59.3 0 77.1 108.2 73.6 165 59.2V287C312.9 311.7 253 309 253 256s59.8-55.6 107.5-31.2v-28zM544 286.5c0-18.5-16.5-30.5-38-32v-.8c19.5-2.7 30.3-15.5 30.3-30.2 0-19-15.7-30-37-31 0 0 6.3-.3-120.3-.3v127.5h122.7c24.3.1 42.3-12.9 42.3-33.2z"], + "cc-mastercard": [576, 512, [], "f1f1", "M482.9 410.3c0 6.8-4.6 11.7-11.2 11.7-6.8 0-11.2-5.2-11.2-11.7 0-6.5 4.4-11.7 11.2-11.7 6.6 0 11.2 5.2 11.2 11.7zm-310.8-11.7c-7.1 0-11.2 5.2-11.2 11.7 0 6.5 4.1 11.7 11.2 11.7 6.5 0 10.9-4.9 10.9-11.7-.1-6.5-4.4-11.7-10.9-11.7zm117.5-.3c-5.4 0-8.7 3.5-9.5 8.7h19.1c-.9-5.7-4.4-8.7-9.6-8.7zm107.8.3c-6.8 0-10.9 5.2-10.9 11.7 0 6.5 4.1 11.7 10.9 11.7 6.8 0 11.2-4.9 11.2-11.7 0-6.5-4.4-11.7-11.2-11.7zm105.9 26.1c0 .3.3.5.3 1.1 0 .3-.3.5-.3 1.1-.3.3-.3.5-.5.8-.3.3-.5.5-1.1.5-.3.3-.5.3-1.1.3-.3 0-.5 0-1.1-.3-.3 0-.5-.3-.8-.5-.3-.3-.5-.5-.5-.8-.3-.5-.3-.8-.3-1.1 0-.5 0-.8.3-1.1 0-.5.3-.8.5-1.1.3-.3.5-.3.8-.5.5-.3.8-.3 1.1-.3.5 0 .8 0 1.1.3.5.3.8.3 1.1.5s.2.6.5 1.1zm-2.2 1.4c.5 0 .5-.3.8-.3.3-.3.3-.5.3-.8 0-.3 0-.5-.3-.8-.3 0-.5-.3-1.1-.3h-1.6v3.5h.8V426h.3l1.1 1.4h.8l-1.1-1.3zM576 81v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V81c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM64 220.6c0 76.5 62.1 138.5 138.5 138.5 27.2 0 53.9-8.2 76.5-23.1-72.9-59.3-72.4-171.2 0-230.5-22.6-15-49.3-23.1-76.5-23.1-76.4-.1-138.5 62-138.5 138.2zm224 108.8c70.5-55 70.2-162.2 0-217.5-70.2 55.3-70.5 162.6 0 217.5zm-142.3 76.3c0-8.7-5.7-14.4-14.7-14.7-4.6 0-9.5 1.4-12.8 6.5-2.4-4.1-6.5-6.5-12.2-6.5-3.8 0-7.6 1.4-10.6 5.4V392h-8.2v36.7h8.2c0-18.9-2.5-30.2 9-30.2 10.2 0 8.2 10.2 8.2 30.2h7.9c0-18.3-2.5-30.2 9-30.2 10.2 0 8.2 10 8.2 30.2h8.2v-23zm44.9-13.7h-7.9v4.4c-2.7-3.3-6.5-5.4-11.7-5.4-10.3 0-18.2 8.2-18.2 19.3 0 11.2 7.9 19.3 18.2 19.3 5.2 0 9-1.9 11.7-5.4v4.6h7.9V392zm40.5 25.6c0-15-22.9-8.2-22.9-15.2 0-5.7 11.9-4.8 18.5-1.1l3.3-6.5c-9.4-6.1-30.2-6-30.2 8.2 0 14.3 22.9 8.3 22.9 15 0 6.3-13.5 5.8-20.7.8l-3.5 6.3c11.2 7.6 32.6 6 32.6-7.5zm35.4 9.3l-2.2-6.8c-3.8 2.1-12.2 4.4-12.2-4.1v-16.6h13.1V392h-13.1v-11.2h-8.2V392h-7.6v7.3h7.6V416c0 17.6 17.3 14.4 22.6 10.9zm13.3-13.4h27.5c0-16.2-7.4-22.6-17.4-22.6-10.6 0-18.2 7.9-18.2 19.3 0 20.5 22.6 23.9 33.8 14.2l-3.8-6c-7.8 6.4-19.6 5.8-21.9-4.9zm59.1-21.5c-4.6-2-11.6-1.8-15.2 4.4V392h-8.2v36.7h8.2V408c0-11.6 9.5-10.1 12.8-8.4l2.4-7.6zm10.6 18.3c0-11.4 11.6-15.1 20.7-8.4l3.8-6.5c-11.6-9.1-32.7-4.1-32.7 15 0 19.8 22.4 23.8 32.7 15l-3.8-6.5c-9.2 6.5-20.7 2.6-20.7-8.6zm66.7-18.3H408v4.4c-8.3-11-29.9-4.8-29.9 13.9 0 19.2 22.4 24.7 29.9 13.9v4.6h8.2V392zm33.7 0c-2.4-1.2-11-2.9-15.2 4.4V392h-7.9v36.7h7.9V408c0-11 9-10.3 12.8-8.4l2.4-7.6zm40.3-14.9h-7.9v19.3c-8.2-10.9-29.9-5.1-29.9 13.9 0 19.4 22.5 24.6 29.9 13.9v4.6h7.9v-51.7zm7.6-75.1v4.6h.8V302h1.9v-.8h-4.6v.8h1.9zm6.6 123.8c0-.5 0-1.1-.3-1.6-.3-.3-.5-.8-.8-1.1-.3-.3-.8-.5-1.1-.8-.5 0-1.1-.3-1.6-.3-.3 0-.8.3-1.4.3-.5.3-.8.5-1.1.8-.5.3-.8.8-.8 1.1-.3.5-.3 1.1-.3 1.6 0 .3 0 .8.3 1.4 0 .3.3.8.8 1.1.3.3.5.5 1.1.8.5.3 1.1.3 1.4.3.5 0 1.1 0 1.6-.3.3-.3.8-.5 1.1-.8.3-.3.5-.8.8-1.1.3-.6.3-1.1.3-1.4zm3.2-124.7h-1.4l-1.6 3.5-1.6-3.5h-1.4v5.4h.8v-4.1l1.6 3.5h1.1l1.4-3.5v4.1h1.1v-5.4zm4.4-80.5c0-76.2-62.1-138.3-138.5-138.3-27.2 0-53.9 8.2-76.5 23.1 72.1 59.3 73.2 171.5 0 230.5 22.6 15 49.5 23.1 76.5 23.1 76.4.1 138.5-61.9 138.5-138.4z"], + "cc-paypal": [576, 512, [], "f1f4", "M186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5z"], + "cc-stripe": [576, 512, [], "f1f5", "M396.9 256.5c0 19.1-8.8 33.4-21.9 33.4-8.3 0-13.3-3-16.8-6.7l-.2-52.8c3.7-4.1 8.8-7 17-7 12.9-.1 21.9 14.5 21.9 33.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM122.2 281.1c0-42.3-54.3-34.7-54.3-50.7 0-5.5 4.6-7.7 12.1-7.7 10.8 0 24.5 3.3 35.3 9.1v-33.4c-11.8-4.7-23.5-6.5-35.3-6.5-28.8 0-48 15-48 40.2 0 39.3 54 32.9 54 49.9 0 6.6-5.7 8.7-13.6 8.7-11.8 0-26.9-4.9-38.9-11.3v33.9c13.2 5.7 26.6 8.1 38.8 8.1 29.6-.2 49.9-14.7 49.9-40.3zm68.9-86.9h-27v-30.8l-34.7 7.4-.2 113.9c0 21 15.8 36.5 36.9 36.5 11.6 0 20.2-2.1 24.9-4.7v-28.9c-4.5 1.8-27 8.3-27-12.6v-50.5h27v-30.3zm73.8 0c-4.7-1.7-21.3-4.8-29.6 10.5l-2.2-10.5h-30.7v124.5h35.5v-84.4c8.4-11 22.6-8.9 27.1-7.4v-32.7zm44.2 0h-35.7v124.5h35.7V194.2zm0-47.3l-35.7 7.6v28.9l35.7-7.6v-28.9zm122.7 108.8c0-41.3-23.5-63.8-48.4-63.8-13.9 0-22.9 6.6-27.8 11.1l-1.8-8.8h-31.3V360l35.5-7.5.1-40.2c5.1 3.7 12.7 9 25.1 9 25.4-.1 48.6-20.5 48.6-65.6zm112.2 1.2c0-36.4-17.6-65.1-51.3-65.1-33.8 0-54.3 28.7-54.3 64.9 0 42.8 24.2 64.5 58.8 64.5 17 0 29.7-3.9 39.4-9.2v-28.6c-9.7 4.9-20.8 7.9-34.9 7.9-13.8 0-26-4.9-27.6-21.5h69.5c.1-2 .4-9.4.4-12.9zm-51.6-36.1c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7z"], + "cc-visa": [576, 512, [], "f1f0", "M470.1 231.3s7.6 37.2 9.3 45H446c3.3-8.9 16-43.5 16-43.5-.2.3 3.3-9.1 5.3-14.9l2.8 13.4zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM152.5 331.2L215.7 176h-42.5l-39.3 106-4.3-21.5-14-71.4c-2.3-9.9-9.4-12.7-18.2-13.1H32.7l-.7 3.1c15.8 4 29.9 9.8 42.2 17.1l35.8 135h42.5zm94.4.2L272.1 176h-40.2l-25.1 155.4h40.1zm139.9-50.8c.2-17.7-10.6-31.2-33.7-42.3-14.1-7.1-22.7-11.9-22.7-19.2.2-6.6 7.3-13.4 23.1-13.4 13.1-.3 22.7 2.8 29.9 5.9l3.6 1.7 5.5-33.6c-7.9-3.1-20.5-6.6-36-6.6-39.7 0-67.6 21.2-67.8 51.4-.3 22.3 20 34.7 35.2 42.2 15.5 7.6 20.8 12.6 20.8 19.3-.2 10.4-12.6 15.2-24.1 15.2-16 0-24.6-2.5-37.7-8.3l-5.3-2.5-5.6 34.9c9.4 4.3 26.8 8.1 44.8 8.3 42.2.1 69.7-20.8 70-53zM528 331.4L495.6 176h-31.1c-9.6 0-16.9 2.8-21 12.9l-59.7 142.5H426s6.9-19.2 8.4-23.3H486c1.2 5.5 4.8 23.3 4.8 23.3H528z"], + "centercode": [512, 512, [], "f380", "M329.2 268.6c-3.8 35.2-35.4 60.6-70.6 56.8-35.2-3.8-60.6-35.4-56.8-70.6 3.8-35.2 35.4-60.6 70.6-56.8 35.1 3.8 60.6 35.4 56.8 70.6zm-85.8 235.1C96.7 496-8.2 365.5 10.1 224.3c11.2-86.6 65.8-156.9 139.1-192 161-77.1 349.7 37.4 354.7 216.6 4.1 147-118.4 262.2-260.5 254.8zm179.9-180c27.9-118-160.5-205.9-237.2-234.2-57.5 56.3-69.1 188.6-33.8 344.4 68.8 15.8 169.1-26.4 271-110.2z"], + "chrome": [496, 512, [], "f268", "M131.5 217.5L55.1 100.1c47.6-59.2 119-91.8 192-92.1 42.3-.3 85.5 10.5 124.8 33.2 43.4 25.2 76.4 61.4 97.4 103L264 133.4c-58.1-3.4-113.4 29.3-132.5 84.1zm32.9 38.5c0 46.2 37.4 83.6 83.6 83.6s83.6-37.4 83.6-83.6-37.4-83.6-83.6-83.6-83.6 37.3-83.6 83.6zm314.9-89.2L339.6 174c37.9 44.3 38.5 108.2 6.6 157.2L234.1 503.6c46.5 2.5 94.4-7.7 137.8-32.9 107.4-62 150.9-192 107.4-303.9zM133.7 303.6L40.4 120.1C14.9 159.1 0 205.9 0 256c0 124 90.8 226.7 209.5 244.9l63.7-124.8c-57.6 10.8-113.2-20.8-139.5-72.5z"], + "cloudscale": [448, 512, [], "f383", "M318.1 154l-9.4 7.6c-22.5-19.3-51.5-33.6-83.3-33.6C153.8 128 96 188.8 96 260.3c0 6.6.4 13.1 1.4 19.4-2-56 41.8-97.4 92.6-97.4 24.2 0 46.2 9.4 62.6 24.7l-25.2 20.4c-8.3-.9-16.8 1.8-23.1 8.1-11.1 11-11.1 28.9 0 40 11.1 11 28.9 11 40 0 6.3-6.3 9-14.9 8.1-23.1l75.2-88.8c6.3-6.5-3.3-15.9-9.5-9.6zm-83.8 111.5c-5.6 5.5-14.6 5.5-20.2 0-5.6-5.6-5.6-14.6 0-20.2s14.6-5.6 20.2 0 5.6 14.7 0 20.2zM224 32C100.5 32 0 132.5 0 256s100.5 224 224 224 224-100.5 224-224S347.5 32 224 32zm0 384c-88.2 0-160-71.8-160-160S135.8 96 224 96s160 71.8 160 160-71.8 160-160 160z"], + "cloudsmith": [332, 512, [], "f384", "M332.5 419.9c0 46.4-37.6 84.1-84 84.1s-84-37.7-84-84.1 37.6-84 84-84 84 37.6 84 84zm-84-243.9c46.4 0 80-37.6 80-84s-33.6-84-80-84-88 37.6-88 84-29.6 76-76 76-84 41.6-84 88 37.6 80 84 80 84-33.6 84-80 33.6-80 80-80z"], + "cloudversify": [616, 512, [], "f385", "M148.6 304c8.2 68.5 67.4 115.5 146 111.3 51.2 43.3 136.8 45.8 186.4-5.6 69.2 1.1 118.5-44.6 131.5-99.5 14.8-62.5-18.2-132.5-92.1-155.1-33-88.1-131.4-101.5-186.5-85-57.3 17.3-84.3 53.2-99.3 109.7-7.8 2.7-26.5 8.9-45 24.1 11.7 0 15.2 8.9 15.2 19.5v20.4c0 10.7-8.7 19.5-19.5 19.5h-20.2c-10.7 0-19.5-6-19.5-16.7V240H98.8C95 240 88 244.3 88 251.9v40.4c0 6.4 5.3 11.8 11.7 11.8h48.9zm227.4 8c-10.7 46.3 21.7 72.4 55.3 86.8C324.1 432.6 259.7 348 296 288c-33.2 21.6-33.7 71.2-29.2 92.9-17.9-12.4-53.8-32.4-57.4-79.8-3-39.9 21.5-75.7 57-93.9C297 191.4 369.9 198.7 400 248c-14.1-48-53.8-70.1-101.8-74.8 30.9-30.7 64.4-50.3 114.2-43.7 69.8 9.3 133.2 82.8 67.7 150.5 35-16.3 48.7-54.4 47.5-76.9l10.5 19.6c11.8 22 15.2 47.6 9.4 72-9.2 39-40.6 68.8-79.7 76.5-32.1 6.3-83.1-5.1-91.8-59.2zM128 208H88.2c-8.9 0-16.2-7.3-16.2-16.2v-39.6c0-8.9 7.3-16.2 16.2-16.2H128c8.9 0 16.2 7.3 16.2 16.2v39.6c0 8.9-7.3 16.2-16.2 16.2zM10.1 168C4.5 168 0 163.5 0 157.9v-27.8c0-5.6 4.5-10.1 10.1-10.1h27.7c5.5 0 10.1 4.5 10.1 10.1v27.8c0 5.6-4.5 10.1-10.1 10.1H10.1zM168 142.7v-21.4c0-5.1 4.2-9.3 9.3-9.3h21.4c5.1 0 9.3 4.2 9.3 9.3v21.4c0 5.1-4.2 9.3-9.3 9.3h-21.4c-5.1 0-9.3-4.2-9.3-9.3zM56 235.5v25c0 6.3-5.1 11.5-11.4 11.5H19.4C13.1 272 8 266.8 8 260.5v-25c0-6.3 5.1-11.5 11.4-11.5h25.1c6.4 0 11.5 5.2 11.5 11.5z"], + "codepen": [512, 512, [], "f1cb", "M502.285 159.704l-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285zM278 63.131l172.286 114.858-76.857 51.429L278 165.703V63.131zm-44 0v102.572l-95.429 63.715-76.857-51.429L234 63.131zM44 219.132l55.143 36.857L44 292.846v-73.714zm190 229.715L61.714 333.989l76.857-51.429L234 346.275v102.572zm22-140.858l-77.715-52 77.715-52 77.715 52-77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429L278 448.847zm190-156.001l-55.143-36.857L468 219.132v73.714z"], + "codiepie": [472, 512, [], "f284", "M422.5 202.9c30.7 0 33.5 53.1-.3 53.1h-10.8v44.3h-26.6v-97.4h37.7zM472 352.6C429.9 444.5 350.4 504 248 504 111 504 0 393 0 256S111 8 248 8c97.4 0 172.8 53.7 218.2 138.4l-186 108.8L472 352.6zm-38.5 12.5l-60.3-30.7c-27.1 44.3-70.4 71.4-122.4 71.4-82.5 0-149.2-66.7-149.2-148.9 0-82.5 66.7-149.2 149.2-149.2 48.4 0 88.9 23.5 116.9 63.4l59.5-34.6c-40.7-62.6-104.7-100-179.2-100-121.2 0-219.5 98.3-219.5 219.5S126.8 475.5 248 475.5c78.6 0 146.5-42.1 185.5-110.4z"], + "connectdevelop": [576, 512, [], "f20e", "M550.5 241l-50.089-86.786c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.733-14.732-15.001l-55.447-95.893c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.268-15.268-15.268-4.821 0-8.839 2.143-11.786 5.625H299.518C296.839 18.143 292.821 16 288 16s-8.839 2.143-11.518 5.625H170.411C167.464 18.143 163.447 16 158.625 16c-8.303 0-15.268 6.696-15.268 15.268 0 1.607.536 3.482 1.072 4.821l-55.983 97.233c-5.356 2.41-9.107 7.5-9.107 13.661 0 .535.268 1.071.268 1.607l-53.304 92.143c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.393 12.054 15l55.179 95.358c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.393 12.054 14.732l51.697 89.732c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.268 15.268 15.268 4.821 0 8.839-2.143 11.518-5.357h106.875C279.161 493.857 283.447 496 288 496s8.839-2.143 11.518-5.357h107.143c2.678 2.946 6.696 4.821 10.982 4.821 8.571 0 15.268-6.964 15.268-15.268 0-1.607-.267-2.946-.803-4.285l51.697-90.268c6.964-1.339 12.054-7.5 12.054-14.732 0-1.607-.268-3.214-.804-4.821l54.911-95.358c6.964-1.339 12.322-7.5 12.322-15-.002-7.232-5.092-13.393-11.788-14.732zM153.535 450.732l-43.66-75.803h43.66v75.803zm0-83.839h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.999-47.41v50.624zm0-62.411l-50.357 53.304c-1.339-.536-2.679-1.34-4.018-1.607L43.447 259.75c.535-1.339.535-2.679.535-4.018s0-2.41-.268-3.482l51.965-90c2.679-.268 5.357-1.072 7.768-2.679l50.089 51.965v92.946zm0-102.322l-45.803-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.928-15.804v72.053zm0-80.625l-43.66 15.804 43.66-75.536v59.732zm326.519 39.108l.804 1.339L445.5 329.125l-63.75-67.232 98.036-101.518.268.268zM291.75 355.107l11.518 11.786H280.5l11.25-11.786zm-.268-11.25l-83.303-85.446 79.553-84.375 83.036 87.589-79.286 82.232zm5.357 5.893l79.286-82.232 67.5 71.25-5.892 28.125H313.714l-16.875-17.143zM410.411 44.393c1.071.536 2.142 1.072 3.482 1.34l57.857 100.714v.536c0 2.946.803 5.624 2.143 7.767L376.393 256l-83.035-87.589L410.411 44.393zm-9.107-2.143L287.732 162.518l-57.054-60.268 166.339-60h4.287zm-123.483 0c2.678 2.678 6.16 4.285 10.179 4.285s7.5-1.607 10.179-4.285h75L224.786 95.821 173.893 42.25h103.928zm-116.249 5.625l1.071-2.142a33.834 33.834 0 0 0 2.679-.804l51.161 53.84-54.911 19.821V47.875zm0 79.286l60.803-21.964 59.732 63.214-79.553 84.107-40.982-42.053v-83.304zm0 92.678L198 257.607l-36.428 38.304v-76.072zm0 87.858l42.053-44.464 82.768 85.982-17.143 17.678H161.572v-59.196zm6.964 162.053c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.732h99.91l-91.607 94.821h-1.339zm129.911 0c-2.679-2.41-6.428-4.285-10.447-4.285s-7.767 1.875-10.447 4.285h-96.429l91.607-94.821h38.304l91.607 94.821H298.447zm120-11.786l-4.286 7.5c-1.339.268-2.41.803-3.482 1.339l-89.196-91.875h114.376l-17.412 83.036zm12.856-22.232l12.858-60.803h21.964l-34.822 60.803zm34.822-68.839h-20.357l4.553-21.16 17.143 18.214c-.535.803-1.071 1.874-1.339 2.946zm66.161-107.411l-55.447 96.697c-1.339.535-2.679 1.071-4.018 1.874l-20.625-21.964 34.554-163.928 45.803 79.286c-.267 1.339-.803 2.678-.803 4.285 0 1.339.268 2.411.536 3.75z"], + "contao": [512, 512, [], "f26d", "M45.4 305c14.4 67.1 26.4 129 68.2 175H34c-18.7 0-34-15.2-34-34V66c0-18.7 15.2-34 34-34h57.7C77.9 44.6 65.6 59.2 54.8 75.6c-45.4 70-27 146.8-9.4 229.4zM478 32h-90.2c21.4 21.4 39.2 49.5 52.7 84.1l-137.1 29.3c-14.9-29-37.8-53.3-82.6-43.9-24.6 5.3-41 19.3-48.3 34.6-8.8 18.7-13.2 39.8 8.2 140.3 21.1 100.2 33.7 117.7 49.5 131.2 12.9 11.1 33.4 17 58.3 11.7 44.5-9.4 55.7-40.7 57.4-73.2l137.4-29.6c3.2 71.5-18.7 125.2-57.4 163.6H478c18.7 0 34-15.2 34-34V66c0-18.8-15.2-34-34-34z"], + "cpanel": [640, 512, [], "f388", "M52.9 213.7h40l-6.2 23.6c-1.9 6.5-7.4 10.9-14.3 10.9H53.8c-24.9 0-24.7 37.4 0 37.4h11.3c4.2 0 7.6 3.9 6.4 8.3L64.4 320H52c-33.5 0-59-31.4-50.3-65.2 7.3-27 28.3-41.1 51.2-41.1M73.1 320L108 189.9c1.8-6.4 7.2-10.9 14.3-10.9h37c24.1 0 45.4 16.4 51 41.2 6.6 29.1-14.5 65.3-51.7 65.3h-32l6.4-23.8c1.8-6.2 7.3-10.8 14.3-10.8h10.3c12.4 0 20.8-11.7 18.3-22.6-2.1-9.2-9.9-14.8-18.3-14.8h-19.8L112 309.2c-1.9 6.2-7.4 10.7-14.2 10.7l-24.7.1m220.6-69.4c.3-1 1.9-5.3-2.1-5.3h-57.5c-9.7 0-16.6-8.9-14.2-18.5l3.5-13.4h77.9c18.8 0 33.3 17.6 28.5 36.8l-14 51.8c-2.8 10.6-12.2 17.8-23.4 17.8l-57.5-.2c-42.9 0-38.5-63.8.7-63.8H284l-3.5 13.2c-1.9 6.2-7.4 10.8-14.2 10.8h-21.6c-5.3 0-5.3 7.9 0 7.9h34.9c4.6 0 5.1-3.9 5.5-5.3l8.6-31.8m103.1-36.9c34.4 0 59.3 32.3 50.3 65.4l-8.8 33.1c-1.2 4.9-5.7 7.8-10.3 7.8h-19.1c-4.5 0-7.6-4-6.4-8.3l10.6-40c3.3-11.6-5.6-23.4-18.1-23.4h-19.8l-17.2 64c-1.2 4.8-5.6 7.8-10.4 7.8h-18.9c-4.2 0-7.6-3.9-6.4-8.3l26.2-98h48.3M498 251.6l-8 30c-.9 3.3 1.5 6.7 5.1 6.7h73.3l-5.7 21c-1.9 6.2-7.4 10.7-14.2 10.7h-66.7c-20 0-33.3-19-28.3-36.7l10.8-40c4.8-17.6 20.7-29.6 38.6-29.6h47.3c19 0 33.2 17.7 28.3 36.8l-3.2 12c-2.9 11-12.7 17.6-23.2 17.6h-53.4l3.5-13c1.6-6.2 7.2-10.8 14.2-10.8H538c2 0 3.3-1 3.9-3l.7-2.6c.7-2.7-1.3-5.1-3.9-5.1h-32.9c-4.1 0-6.9 2.1-7.8 6zm70.2 68.4l35.6-133.1c1.2-4.7 5.5-7.9 10.4-7.9h18.9c4.5 0 7.7 4 6.5 8.3l-26.5 98.2c-5.1 20.7-24.2 34.5-44.9 34.5"], + "creative-commons": [496, 512, [], "f25e", "M245.83 214.87l-33.22 17.28c-9.43-19.58-25.24-19.93-27.46-19.93-22.13 0-33.22 14.61-33.22 43.84 0 23.57 9.21 43.84 33.22 43.84 14.47 0 24.65-7.09 30.57-21.26l30.55 15.5c-6.17 11.51-25.69 38.98-65.1 38.98-22.6 0-73.96-10.32-73.96-77.05 0-58.69 43-77.06 72.63-77.06 30.72-.01 52.7 11.95 65.99 35.86zm143.05 0l-32.78 17.28c-9.5-19.77-25.72-19.93-27.9-19.93-22.14 0-33.22 14.61-33.22 43.84 0 23.55 9.23 43.84 33.22 43.84 14.45 0 24.65-7.09 30.54-21.26l31 15.5c-2.1 3.75-21.39 38.98-65.09 38.98-22.69 0-73.96-9.87-73.96-77.05 0-58.67 42.97-77.06 72.63-77.06 30.71-.01 52.58 11.95 65.56 35.86zM247.56 8.05C104.74 8.05 0 123.11 0 256.05c0 138.49 113.6 248 247.56 248 129.93 0 248.44-100.87 248.44-248 0-137.87-106.62-248-248.44-248zm.87 450.81c-112.54 0-203.7-93.04-203.7-202.81 0-105.42 85.43-203.27 203.72-203.27 112.53 0 202.82 89.46 202.82 203.26-.01 121.69-99.68 202.82-202.84 202.82z"], + "creative-commons-by": [496, 512, [], "f4e7", "M314.9 194.4v101.4h-28.3v120.5h-77.1V295.9h-28.3V194.4c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7H299c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3zm-101.5-63.7c0-23.3 11.5-35 34.5-35s34.5 11.7 34.5 35c0 23-11.5 34.5-34.5 34.5s-34.5-11.5-34.5-34.5zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z"], + "creative-commons-nc": [496, 512, [], "f4e8", "M247.6 8C387.4 8 496 115.9 496 256c0 147.2-118.5 248-248.4 248C113.1 504 0 393.2 0 256 0 123.1 104.7 8 247.6 8zM55.8 189.1c-7.4 20.4-11.1 42.7-11.1 66.9 0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4v38.1h-28.8V368c-27.5-.3-52.6-10.2-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4zM248.4 52.3c-38.4 0-112.4 8.7-170.5 93l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3v-38.1h28.8v38.1c22.7 1.2 43.4 8.9 62 23L295 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8z"], + "creative-commons-nc-eu": [496, 512, [], "f4e9", "M247.7 8C103.6 8 0 124.8 0 256c0 136.3 111.7 248 247.7 248C377.9 504 496 403.1 496 256 496 117 388.4 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-23.2 3.7-45.2 10.9-66l65.7 29.1h-4.7v29.5h23.3c0 6.2-.4 3.2-.4 19.5h-22.8v29.5h27c11.4 67 67.2 101.3 124.6 101.3 26.6 0 50.6-7.9 64.8-15.8l-10-46.1c-8.7 4.6-28.2 10.8-47.3 10.8-28.2 0-58.1-10.9-67.3-50.2h90.3l128.3 56.8c-1.5 2.1-56.2 104.3-178.8 104.3zm-16.7-190.6l-.5-.4.9.4h-.4zm77.2-19.5h3.7v-29.5h-70.3l-28.6-12.6c2.5-5.5 5.4-10.5 8.8-14.3 12.9-15.8 31.1-22.4 51.1-22.4 18.3 0 35.3 5.4 46.1 10l11.6-47.3c-15-6.6-37-12.4-62.3-12.4-39 0-72.2 15.8-95.9 42.3-5.3 6.1-9.8 12.9-13.9 20.1l-81.6-36.1c64.6-96.8 157.7-93.6 170.7-93.6 113 0 203 90.2 203 203.4 0 18.7-2.1 36.3-6.3 52.9l-136.1-60.5z"], + "creative-commons-nc-jp": [496, 512, [], "f4ea", "M247.7 8C103.6 8 0 124.8 0 256c0 136.4 111.8 248 247.7 248C377.9 504 496 403.2 496 256 496 117.2 388.5 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-21.1 3-41.2 9-60.3l127 56.5h-27.9v38.6h58.1l5.7 11.8v18.7h-63.8V360h63.8v56h61.7v-56h64.2v-35.7l81 36.1c-1.5 2.2-57.1 98.3-175.2 98.3zm87.6-137.3h-57.6v-18.7l2.9-5.6 54.7 24.3zm6.5-51.4v-17.8h-38.6l63-116H301l-43.4 96-23-10.2-39.6-85.7h-65.8l27.3 51-81.9-36.5c27.8-44.1 82.6-98.1 173.7-98.1 112.8 0 203 90 203 203.4 0 21-2.7 40.6-7.9 59l-101-45.1z"], + "creative-commons-nd": [496, 512, [], "f4eb", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm94 144.3v42.5H162.1V197h180.3zm0 79.8v42.5H162.1v-42.5h180.3z"], + "creative-commons-pd": [496, 512, [], "f4ec", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm0 449.5c-139.2 0-235.8-138-190.2-267.9l78.8 35.1c-2.1 10.5-3.3 21.5-3.3 32.9 0 99 73.9 126.9 120.4 126.9 22.9 0 53.5-6.7 79.4-29.5L297 311.1c-5.5 6.3-17.6 16.7-36.3 16.7-37.8 0-53.7-39.9-53.9-71.9 230.4 102.6 216.5 96.5 217.9 96.8-34.3 62.4-100.6 104.8-176.7 104.8zm194.2-150l-224-100c18.8-34 54.9-30.7 74.7-11l40.4-41.6c-27.1-23.3-58-27.5-78.1-27.5-47.4 0-80.9 20.5-100.7 51.6l-74.9-33.4c36.1-54.9 98.1-91.2 168.5-91.2 111.1 0 201.5 90.4 201.5 201.5 0 18-2.4 35.4-6.8 52-.3-.1-.4-.2-.6-.4z"], + "creative-commons-pd-alt": [496, 512, [], "f4ed", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM135.5 323.3V186h68.2c33.7 0 50.5 15.5 50.5 46.5 0 9-3 46.5-57.1 46.5h-27v44.3h-34.6zm34.1-111.6v41.6h29.2c27.9 0 30-41.6-.9-41.6h-28.3zm93.9 111.6V186h53.2c21.4 0 70 5.2 70 68.6 0 63.5-48.6 68.6-70 68.6h-53.2zm34.1-108.5v79.7h19.9c24 0 34.5-15.3 34.5-39.9 0-42-31.2-39.9-35-39.9l-19.4.1z"], + "creative-commons-remix": [496, 512, [], "f4ee", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm161.7 207.7l4.9 2.2v70c-7.2 3.6-63.4 27.5-67.3 28.8-6.5-1.8-113.7-46.8-137.3-56.2l-64.2 26.6-63.3-27.5v-63.8l59.3-24.8c-.7-.7-.4 5-.4-70.4l67.3-29.7L361 178.5v61.6l49.1 20.3zm-70.4 81.5v-43.8h-.4v-1.8l-113.8-46.5V295l113.8 46.9v-.4l.4.4zm7.5-57.6l39.9-16.4-36.8-15.5-39 16.4 35.9 15.5zm52.3 38.1v-43L355.2 298v43.4l44.3-19z"], + "creative-commons-sa": [496, 512, [], "f4ef", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM137.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97h62.5c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6-33.1 0-51.7 14.6-55.8 43.8h18.2l-49.2 49.2-49-49.2h19.4z"], + "creative-commons-sampling": [496, 512, [], "f4f0", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm3.6 53.2c2.8-.3 11.5 1 11.5 11.5l6.6 107.2 4.9-59.3c0-6 4.7-10.6 10.6-10.6 5.9 0 10.6 4.7 10.6 10.6 0 2.5-.5-5.7 5.7 81.5l5.8-64.2c.3-2.9 2.9-9.3 10.2-9.3 3.8 0 9.9 2.3 10.6 8.9l11.5 96.5 5.3-12.8c1.8-4.4 5.2-6.6 10.2-6.6h58v21.3h-50.9l-18.2 44.3c-3.9 9.9-19.5 9.1-20.8-3.1l-4-31.9-7.5 92.6c-.3 3-3 9.3-10.2 9.3-3 0-9.8-2.1-10.6-9.3 0-1.9.6 5.8-6.2-77.9l-5.3 72.2c-1.1 4.8-4.8 9.3-10.6 9.3-2.9 0-9.8-2-10.6-9.3 0-1.9.5 6.7-5.8-87.7l-5.8 94.8c0 6.3-3.6 12.4-10.6 12.4-5.2 0-10.6-4.1-10.6-12l-5.8-87.7c-5.8 92.5-5.3 84-5.3 85.9-1.1 4.8-4.8 9.3-10.6 9.3-3 0-9.8-2.1-10.6-9.3 0-.7-.4-1.1-.4-2.6l-6.2-88.6L182 348c-.7 6.5-6.7 9.3-10.6 9.3-5.8 0-9.6-4.1-10.6-8.9L149.7 272c-2 4-3.5 8.4-11.1 8.4H87.2v-21.3H132l13.7-27.9c4.4-9.9 18.2-7.2 19.9 2.7l3.1 20.4 8.4-97.9c0-6 4.8-10.6 10.6-10.6.5 0 10.6-.2 10.6 12.4l4.9 69.1 6.6-92.6c0-10.1 9.5-10.6 10.2-10.6.6 0 10.6.7 10.6 10.6l5.3 80.6 6.2-97.9c.1-1.1-.6-10.3 9.9-11.5z"], + "creative-commons-sampling-plus": [496, 512, [], "f4f1", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm107 205.6c-4.7 0-9 2.8-10.7 7.2l-4 9.5-11-92.8c-1.7-13.9-22-13.4-23.1.4l-4.3 51.4-5.2-68.8c-1.1-14.3-22.1-14.2-23.2 0l-3.5 44.9-5.9-94.3c-.9-14.5-22.3-14.4-23.2 0l-5.1 83.7-4.3-66.3c-.9-14.4-22.2-14.4-23.2 0l-5.3 80.2-4.1-57c-1.1-14.3-22-14.3-23.2-.2l-7.7 89.8-1.8-12.2c-1.7-11.4-17.1-13.6-22-3.3l-13.2 27.7H87.5v23.2h51.3c4.4 0 8.4-2.5 10.4-6.4l10.7 73.1c2 13.5 21.9 13 23.1-.7l3.8-43.6 5.7 78.3c1.1 14.4 22.3 14.2 23.2-.1l4.6-70.4 4.8 73.3c.9 14.4 22.3 14.4 23.2-.1l4.9-80.5 4.5 71.8c.9 14.3 22.1 14.5 23.2.2l4.6-58.6 4.9 64.4c1.1 14.3 22 14.2 23.1.1l6.8-83 2.7 22.3c1.4 11.8 17.7 14.1 22.3 3.1l18-43.4h50.5V258l-58.4.3zm-78 5.2h-21.9v21.9c0 4.1-3.3 7.5-7.5 7.5-4.1 0-7.5-3.3-7.5-7.5v-21.9h-21.9c-4.1 0-7.5-3.3-7.5-7.5 0-4.1 3.4-7.5 7.5-7.5h21.9v-21.9c0-4.1 3.4-7.5 7.5-7.5s7.5 3.3 7.5 7.5v21.9h21.9c4.1 0 7.5 3.3 7.5 7.5 0 4.1-3.4 7.5-7.5 7.5z"], + "creative-commons-share": [496, 512, [], "f4f2", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm101 132.4c7.8 0 13.7 6.1 13.7 13.7v182.5c0 7.7-6.1 13.7-13.7 13.7H214.3c-7.7 0-13.7-6-13.7-13.7v-54h-54c-7.8 0-13.7-6-13.7-13.7V131.1c0-8.2 6.6-12.7 12.4-13.7h136.4c7.7 0 13.7 6 13.7 13.7v54h54zM159.9 300.3h40.7V198.9c0-7.4 5.8-12.6 12-13.7h55.8v-40.3H159.9v155.4zm176.2-88.1H227.6v155.4h108.5V212.2z"], + "css3": [512, 512, [], "f13c", "M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z"], + "css3-alt": [384, 512, [], "f38b", "M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z"], + "cuttlefish": [440, 512, [], "f38c", "M344 305.5c-17.5 31.6-57.4 54.5-96 54.5-56.6 0-104-47.4-104-104s47.4-104 104-104c38.6 0 78.5 22.9 96 54.5 13.7-50.9 41.7-93.3 87-117.8C385.7 39.1 320.5 8 248 8 111 8 0 119 0 256s111 248 248 248c72.5 0 137.7-31.1 183-80.7-45.3-24.5-73.3-66.9-87-117.8z"], + "d-and-d": [576, 512, [], "f38d", "M82.5 98.9c-.6-17.2 2-33.8 12.7-48.2.3 7.4 1.2 14.5 4.2 21.6 5.9-27.5 19.7-49.3 42.3-65.5-1.9 5.9-3.5 11.8-3 17.7 8.7-7.4 18.8-17.8 44.4-22.7 14.7-2.8 29.7-2 42.1 1 38.5 9.3 61 34.3 69.7 72.3 5.3 23.1.7 45-8.3 66.4-5.2 12.4-12 24.4-20.7 35.1-2-1.9-3.9-3.8-5.8-5.6-42.8-40.8-26.8-25.2-37.4-37.4-1.1-1.2-1-2.2-.1-3.6 8.3-13.5 11.8-28.2 10-44-1.1-9.8-4.3-18.9-11.3-26.2-14.5-15.3-39.2-15-53.5.6-11.4 12.5-14.1 27.4-10.9 43.6.2 1.3.4 2.7 0 3.9-3.4 13.7-4.6 27.6-2.5 41.6.1.5.1 1.1.1 1.6 0 .3-.1.5-.2 1.1-21.8-11-36-28.3-43.2-52.2-8.3 17.8-11.1 35.5-6.6 54.1-15.6-15.2-21.3-34.3-22-55.2zm469.6 123.2c-11.6-11.6-25-20.4-40.1-26.6-12.8-5.2-26-7.9-39.9-7.1-10 .6-19.6 3.1-29 6.4-2.5.9-5.1 1.6-7.7 2.2-4.9 1.2-7.3-3.1-4.7-6.8 3.2-4.6 3.4-4.2 15-12 .6-.4 1.2-.8 2.2-1.5h-2.5c-.6 0-1.2.2-1.9.3-19.3 3.3-30.7 15.5-48.9 29.6-10.4 8.1-13.8 3.8-12-.5 1.4-3.5 3.3-6.7 5.1-10 1-1.8 2.3-3.4 3.5-5.1-.2-.2-.5-.3-.7-.5-27 18.3-46.7 42.4-57.7 73.3.3.3.7.6 1 .9.3-.6.5-1.2.9-1.7 10.4-12.1 22.8-21.8 36.6-29.8 18.2-10.6 37.5-18.3 58.7-20.2 4.3-.4 8.7-.1 13.1-.1-1.8.7-3.5.9-5.3 1.1-18.5 2.4-35.5 9-51.5 18.5-30.2 17.9-54.5 42.2-75.1 70.4-.3.4-.4.9-.7 1.3 14.5 5.3 24 17.3 36.1 25.6.2-.1.3-.2.4-.4l1.2-2.7c12.2-26.9 27-52.3 46.7-74.5 16.7-18.8 38-25.3 62.5-20 5.9 1.3 11.4 4.4 17.2 6.8 2.3-1.4 5.1-3.2 8-4.7 8.4-4.3 17.4-7 26.7-9 14.7-3.1 29.5-4.9 44.5-1.3v-.5c-.5-.4-1.2-.8-1.7-1.4zM316.7 397.6c-39.4-33-22.8-19.5-42.7-35.6-.8.9 0-.2-1.9 3-11.2 19.1-25.5 35.3-44 47.6-10.3 6.8-21.5 11.8-34.1 11.8-21.6 0-38.2-9.5-49.4-27.8-12-19.5-13.3-40.7-8.2-62.6 7.8-33.8 30.1-55.2 38.6-64.3-18.7-6.2-33 1.7-46.4 13.9.8-13.9 4.3-26.2 11.8-37.3-24.3 10.6-45.9 25-64.8 43.9-.3-5.8 5.4-43.7 5.6-44.7.3-2.7-.6-5.3-3-7.4-24.2 24.7-44.5 51.8-56.1 84.6 7.4-5.9 14.9-11.4 23.6-16.2-8.3 22.3-19.6 52.8-7.8 101.1 4.6 19 11.9 36.8 24.1 52.3 2.9 3.7 6.3 6.9 9.5 10.3.2-.2.4-.3.6-.5-1.4-7-2.2-14.1-1.5-21.9 2.2 3.2 3.9 6 5.9 8.6 12.6 16 28.7 27.4 47.2 35.6 25 11.3 51.1 13.3 77.9 8.6 54.9-9.7 90.7-48.6 116-98.8 1-1.8.6-2.9-.9-4.2zm172-46.4c-9.5-3.1-22.2-4.2-28.7-2.9 9.9 4 14.1 6.6 18.8 12 12.6 14.4 10.4 34.7-5.4 45.6-11.7 8.1-24.9 10.5-38.9 9.1-1.2-.1-2.3-.4-3-.6 2.8-3.7 6-7 8.1-10.8 9.4-16.8 5.4-42.1-8.7-56.1-2.1-2.1-4.6-3.9-7-5.9-.3 1.3-.1 2.1.1 2.8 4.2 16.6-8.1 32.4-24.8 31.8-7.6-.3-13.9-3.8-19.6-8.5-19.5-16.1-39.1-32.1-58.5-48.3-5.9-4.9-12.5-8.1-20.1-8.7-4.6-.4-9.3-.6-13.9-.9-5.9-.4-8.8-2.8-10.4-8.4-.9-3.4-1.5-6.8-2.2-10.2-1.5-8.1-6.2-13-14.3-14.2-4.4-.7-8.9-1-13.3-1.5-13-1.4-19.8-7.4-22.6-20.3-5 11-1.6 22.4 7.3 29.9 4.5 3.8 9.3 7.3 13.8 11.2 4.6 3.8 7.4 8.7 7.9 14.8.4 4.7.8 9.5 1.8 14.1 2.2 10.6 8.9 18.4 17 25.1 16.5 13.7 33 27.3 49.5 41.1 17.9 15 13.9 32.8 13 56-.9 22.9 12.2 42.9 33.5 51.2 1 .4 2 .6 3.6 1.1-15.7-18.2-10.1-44.1.7-52.3.3 2.2.4 4.3.9 6.4 9.4 44.1 45.4 64.2 85 56.9 16-2.9 30.6-8.9 42.9-19.8 2-1.8 3.7-4.1 5.9-6.5-19.3 4.6-35.8.1-50.9-10.6.7-.3 1.3-.3 1.9-.3 21.3 1.8 40.6-3.4 57-17.4 19.5-16.6 26.6-42.9 17.4-66-8.3-20.1-23.6-32.3-43.8-38.9zM99.4 179.3c-5.3-9.2-13.2-15.6-22.1-21.3 13.7-.5 26.6.2 39.6 3.7-7-12.2-8.5-24.7-5-38.7 5.3 11.9 13.7 20.1 23.6 26.8 19.7 13.2 35.7 19.6 46.7 30.2 3.4 3.3 6.3 7.1 9.6 10.9-.8-2.1-1.4-4.1-2.2-6-5-10.6-13-18.6-22.6-25-1.8-1.2-2.8-2.5-3.4-4.5-3.3-12.5-3-25.1-.7-37.6 1-5.5 2.8-10.9 4.5-16.3.8-2.4 2.3-4.6 4-6.6.6 6.9 0 25.5 19.6 46 10.8 11.3 22.4 21.9 33.9 32.7 9 8.5 18.3 16.7 25.5 26.8 1.1 1.6 2.2 3.3 3.8 4.7-5-13-14.2-24.1-24.2-33.8-9.6-9.3-19.4-18.4-29.2-27.4-3.3-3-4.6-6.7-5.1-10.9-1.2-10.4 0-20.6 4.3-30.2.5-1 1.1-2 1.9-3.3.5 4.2.6 7.9 1.4 11.6 4.8 23.1 20.4 36.3 49.3 63.5 10 9.4 19.3 19.2 25.6 31.6 4.8 9.3 7.3 19 5.7 29.6-.1.6.5 1.7 1.1 2 6.2 2.6 10 6.9 9.7 14.3 7.7-2.6 12.5-8 16.4-14.5 4.2 20.2-9.1 50.3-27.2 58.7.4-4.5 5-23.4-16.5-27.7-6.8-1.3-12.8-1.3-22.9-2.1 4.7-9 10.4-20.6.5-22.4-24.9-4.6-52.8 1.9-57.8 4.6 8.2.4 16.3 1 23.5 3.3-2 6.5-4 12.7-5.8 18.9-1.9 6.5 2.1 14.6 9.3 9.6 1.2-.9 2.3-1.9 3.3-2.7-3.1 17.9-2.9 15.9-2.8 18.3.3 10.2 9.5 7.8 15.7 7.3-2.5 11.8-29.5 27.3-45.4 25.8 7-4.7 12.7-10.3 15.9-17.9-6.5.8-12.9 1.6-19.2 2.4l-.3-.9c4.7-3.4 8-7.8 10.2-13.1 8.7-21.1-3.6-38-25-39.9-9.1-.8-17.8.8-25.9 5.5 6.2-15.6 17.2-26.6 32.6-34.5-15.2-4.3-8.9-2.7-24.6-6.3 14.6-9.3 30.2-13.2 46.5-14.6-5.2-3.2-48.1-3.6-70.2 20.9 7.9 1.4 15.5 2.8 23.2 4.2-23.8 7-44 19.7-62.4 35.6 1.1-4.8 2.7-9.5 3.3-14.3.6-4.5.8-9.2.1-13.6-1.5-9.4-8.9-15.1-19.7-16.3-7.9-.9-15.6.1-23.3 1.3-.9.1-1.7.3-2.9 0 15.8-14.8 36-21.7 53.1-33.5 6-4.5 6.8-8.2 3-14.9zm128.4 26.8c3.3 16 12.6 25.5 23.8 24.3-4.6-11.3-12.1-19.5-23.8-24.3z"], + "dashcube": [448, 512, [], "f210", "M326.6 104H110.4c-51.1 0-91.2 43.3-91.2 93.5V427c0 50.5 40.1 85 91.2 85h227.2c51.1 0 91.2-34.5 91.2-85V0L326.6 104zM153.9 416.5c-17.7 0-32.4-15.1-32.4-32.8V240.8c0-17.7 14.7-32.5 32.4-32.5h140.7c17.7 0 32 14.8 32 32.5v123.5l51.1 52.3H153.9z"], + "delicious": [448, 512, [], "f1a5", "M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1.5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3 1 1.1 2.1 2.2 3.3 3.3 5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12zM416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192v176z"], + "deploydog": [512, 512, [], "f38e", "M382.2 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.6 0-33.2 16.4-33.2 32.6zM188.5 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.7 0-33.2 16.4-33.2 32.6zM448 96c17.5 0 32 14.4 32 32v256c0 17.5-14.4 32-32 32H64c-17.5 0-32-14.4-32-32V128c0-17.5 14.4-32 32-32h384m0-32H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h384c35.2 0 64-28.8 64-64V128c0-35.2-28.8-64-64-64z"], + "deskpro": [480, 512, [], "f38f", "M205.9 512l31.1-38.4c12.3-.2 25.6-1.4 36.5-6.6 38.9-18.6 38.4-61.9 38.3-63.8-.1-5-.8-4.4-28.9-37.4H362c-.2 50.1-7.3 68.5-10.2 75.7-9.4 23.7-43.9 62.8-95.2 69.4-8.7 1.1-32.8 1.2-50.7 1.1zm200.4-167.7c38.6 0 58.5-13.6 73.7-30.9l-175.5-.3-17.4 31.3 119.2-.1zm-43.6-223.9v168.3h-73.5l-32.7 55.5H250c-52.3 0-58.1-56.5-58.3-58.9-1.2-13.2-21.3-11.6-20.1 1.8 1.4 15.8 8.8 40 26.4 57.1h-91c-25.5 0-110.8-26.8-107-114V16.9C0 .9 9.7.3 15 .1h82c.2 0 .3.1.5.1 4.3-.4 50.1-2.1 50.1 43.7 0 13.3 20.2 13.4 20.2 0 0-18.2-5.5-32.8-15.8-43.7h84.2c108.7-.4 126.5 79.4 126.5 120.2zm-132.5 56l64 29.3c13.3-45.5-42.2-71.7-64-29.3z"], + "deviantart": [320, 512, [], "f1bd", "M320 93.2l-98.2 179.1 7.4 9.5H320v127.7H159.1l-13.5 9.2-43.7 84c-.3 0-8.6 8.6-9.2 9.2H0v-93.2l93.2-179.4-7.4-9.2H0V102.5h156l13.5-9.2 43.7-84c.3 0 8.6-8.6 9.2-9.2H320v93.1z"], + "digg": [512, 512, [], "f1a6", "M81.7 172.3H0v174.4h132.7V96h-51v76.3zm0 133.4H50.9v-92.3h30.8v92.3zm297.2-133.4v174.4h81.8v28.5h-81.8V416H512V172.3H378.9zm81.8 133.4h-30.8v-92.3h30.8v92.3zm-235.6 41h82.1v28.5h-82.1V416h133.3V172.3H225.1v174.4zm51.2-133.3h30.8v92.3h-30.8v-92.3zM153.3 96h51.3v51h-51.3V96zm0 76.3h51.3v174.4h-51.3V172.3z"], + "digital-ocean": [512, 512, [], "f391", "M256 504v-96.1c101.8 0 180.8-100.9 141.7-208-14.3-39.6-46.1-71.4-85.8-85.7-107.1-38.8-208.1 39.9-208.1 141.7H8C8 93.7 164.9-32.8 335 20.3c74.2 23.3 133.6 82.4 156.6 156.6C544.8 347.2 418.6 504 256 504zm.3-191.4h-95.6v95.6h95.6v-95.6zm-95.6 95.6H87v73.6h73.7v-73.6zM87 346.6H25.4v61.6H87v-61.6z"], + "discord": [448, 512, [], "f392", "M297.216 243.2c0 15.616-11.52 28.416-26.112 28.416-14.336 0-26.112-12.8-26.112-28.416s11.52-28.416 26.112-28.416c14.592 0 26.112 12.8 26.112 28.416zm-119.552-28.416c-14.592 0-26.112 12.8-26.112 28.416s11.776 28.416 26.112 28.416c14.592 0 26.112-12.8 26.112-28.416.256-15.616-11.52-28.416-26.112-28.416zM448 52.736V512c-64.494-56.994-43.868-38.128-118.784-107.776l13.568 47.36H52.48C23.552 451.584 0 428.032 0 398.848V52.736C0 23.552 23.552 0 52.48 0h343.04C424.448 0 448 23.552 448 52.736zm-72.96 242.688c0-82.432-36.864-149.248-36.864-149.248-36.864-27.648-71.936-26.88-71.936-26.88l-3.584 4.096c43.52 13.312 63.744 32.512 63.744 32.512-60.811-33.329-132.244-33.335-191.232-7.424-9.472 4.352-15.104 7.424-15.104 7.424s21.248-20.224 67.328-33.536l-2.56-3.072s-35.072-.768-71.936 26.88c0 0-36.864 66.816-36.864 149.248 0 0 21.504 37.12 78.08 38.912 0 0 9.472-11.52 17.152-21.248-32.512-9.728-44.8-30.208-44.8-30.208 3.766 2.636 9.976 6.053 10.496 6.4 43.21 24.198 104.588 32.126 159.744 8.96 8.96-3.328 18.944-8.192 29.44-15.104 0 0-12.8 20.992-46.336 30.464 7.68 9.728 16.896 20.736 16.896 20.736 56.576-1.792 78.336-38.912 78.336-38.912z"], + "discourse": [448, 512, [], "f393", "M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z"], + "dochub": [416, 512, [], "f394", "M397.9 160H256V19.6L397.9 160zM304 192v130c0 66.8-36.5 100.1-113.3 100.1H96V84.8h94.7c12 0 23.1.8 33.1 2.5v-84C212.9 1.1 201.4 0 189.2 0H0v512h189.2C329.7 512 400 447.4 400 318.1V192h-96z"], + "docker": [640, 512, [], "f395", "M349.9 236.3h-66.1v-59.4h66.1v59.4zm0-204.3h-66.1v60.7h66.1V32zm78.2 144.8H362v59.4h66.1v-59.4zm-156.3-72.1h-66.1v60.1h66.1v-60.1zm78.1 0h-66.1v60.1h66.1v-60.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4.4 67.6.1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1l-13.3-8.9zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm-78.1-72.1h-66.1v60.1h66.1v-60.1z"], + "draft2digital": [480, 512, [], "f396", "M369.9 425.4V371l47.1 27.2-47.1 27.2zM82.4 380.6c25.5-27.3 97.7-104.7 150.9-170 35.1-43.1 40.3-82.4 28.4-112.7-7.4-18.8-17.5-30.2-24.3-35.7 45.3 2.1 68 23.4 82.2 38.3 0 0 42.4 48.2 5.8 113.3-37 65.9-110.9 147.5-128.5 166.7H82.4zm51.8-219.2c0 12.4-10 22.4-22.4 22.4-12.4 0-22.4-10-22.4-22.4 0-12.4 10-22.4 22.4-22.4 12.4 0 22.4 10.1 22.4 22.4M336 315.9v64.7h-91.3c30.8-35 81.8-95.9 111.8-149.3 35.2-62.6 16.1-123.4-12.8-153.3-4.4-4.6-62.2-62.9-166-41.2-59.1 12.4-89.4 43.4-104.3 67.3-13.1 20.9-17 39.8-18.2 47.7-5.5 33 19.4 67.1 56.7 67.1 31.7 0 57.3-25.7 57.3-57.4 0-27.1-19.7-52.1-48-56.8 1.8-7.3 17.7-21.1 26.3-24.7 41.1-17.3 78 5.2 83.3 33.5 8.3 44.3-37.1 90.4-69.7 127.6C84.5 328.1 18.3 396.8 0 415.9l336-.1V480l144-81.9-144-82.2z"], + "dribbble": [512, 512, [], "f17d", "M256 8C119.252 8 8 119.252 8 256s111.252 248 248 248 248-111.252 248-248S392.748 8 256 8zm163.97 114.366c29.503 36.046 47.369 81.957 47.835 131.955-6.984-1.477-77.018-15.682-147.502-6.818-5.752-14.041-11.181-26.393-18.617-41.614 78.321-31.977 113.818-77.482 118.284-83.523zM396.421 97.87c-3.81 5.427-35.697 48.286-111.021 76.519-34.712-63.776-73.185-116.168-79.04-124.008 67.176-16.193 137.966 1.27 190.061 47.489zm-230.48-33.25c5.585 7.659 43.438 60.116 78.537 122.509-99.087 26.313-186.36 25.934-195.834 25.809C62.38 147.205 106.678 92.573 165.941 64.62zM44.17 256.323c0-2.166.043-4.322.108-6.473 9.268.19 111.92 1.513 217.706-30.146 6.064 11.868 11.857 23.915 17.174 35.949-76.599 21.575-146.194 83.527-180.531 142.306C64.794 360.405 44.17 310.73 44.17 256.323zm81.807 167.113c22.127-45.233 82.178-103.622 167.579-132.756 29.74 77.283 42.039 142.053 45.189 160.638-68.112 29.013-150.015 21.053-212.768-27.882zm248.38 8.489c-2.171-12.886-13.446-74.897-41.152-151.033 66.38-10.626 124.7 6.768 131.947 9.055-9.442 58.941-43.273 109.844-90.795 141.978z"], + "dribbble-square": [448, 512, [], "f397", "M90.2 228.2c8.9-42.4 37.4-77.7 75.7-95.7 3.6 4.9 28 38.8 50.7 79-64 17-120.3 16.8-126.4 16.7zM314.6 154c-33.6-29.8-79.3-41.1-122.6-30.6 3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4zM140.1 364c40.5 31.6 93.3 36.7 137.3 18-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6zm98.8-108.2c-3.4-7.8-7.2-15.5-11.1-23.2C159.6 253 93.4 252.2 87.4 252c0 1.4-.1 2.8-.1 4.2 0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8zm34.9 16.3c17.9 49.1 25.1 89.1 26.5 97.4 30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8zm-20.3-48.4c4.8 9.8 8.3 17.8 12 26.8 45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 176c0-88.2-71.8-160-160-160S64 167.8 64 256s71.8 160 160 160 160-71.8 160-160z"], + "dropbox": [528, 512, [], "f16b", "M264.4 116.3l-132 84.3 132 84.3-132 84.3L0 284.1l132.3-84.3L0 116.3 132.3 32l132.1 84.3zM131.6 395.7l132-84.3 132 84.3-132 84.3-132-84.3zm132.8-111.6l132-84.3-132-83.6L395.7 32 528 116.3l-132.3 84.3L528 284.8l-132.3 84.3-131.3-85z"], + "drupal": [448, 512, [], "f1a9", "M319.5 114.7c-22.2-14-43.5-19.5-64.7-33.5-13-8.8-31.3-30-46.5-48.3-2.7 29.3-11.5 41.2-22 49.5-21.3 17-34.8 22.2-53.5 32.3C117 123 32 181.5 32 290.5 32 399.7 123.8 480 225.8 480 327.5 480 416 406 416 294c0-112.3-83-171-96.5-179.3zm2.5 325.6c-20.1 20.1-90.1 28.7-116.7 4.2-4.8-4.8.3-12 6.5-12 0 0 17 13.3 51.5 13.3 27 0 46-7.7 54.5-14 6.1-4.6 8.4 4.3 4.2 8.5zm-54.5-52.6c8.7-3.6 29-3.8 36.8 1.3 4.1 2.8 16.1 18.8 6.2 23.7-8.4 4.2-1.2-15.7-26.5-15.7-14.7 0-19.5 5.2-26.7 11-7 6-9.8 8-12.2 4.7-6-8.2 15.9-22.3 22.4-25zM360 405c-15.2-1-45.5-48.8-65-49.5-30.9-.9-104.1 80.7-161.3 42-38.8-26.6-14.6-104.8 51.8-105.2 49.5-.5 83.8 49 108.5 48.5 21.3-.3 61.8-41.8 81.8-41.8 48.7 0 23.3 109.3-15.8 106z"], + "dyalog": [416, 512, [], "f399", "M0 32v119.2h64V96h107.2C284.6 96 352 176.2 352 255.9 352 332 293.4 416 171.2 416H0v64h171.2C331.9 480 416 367.3 416 255.9c0-58.7-22.1-113.4-62.3-154.3C308.9 56 245.7 32 171.2 32H0z"], + "earlybirds": [480, 512, [], "f39a", "M313.2 47.5c1.2-13 21.3-14 36.6-8.7.9.3 26.2 9.7 19 15.2-27.9-7.4-56.4 18.2-55.6-6.5zm-201 6.9c30.7-8.1 62 20 61.1-7.1-1.3-14.2-23.4-15.3-40.2-9.6-1 .3-28.7 10.5-20.9 16.7zM319.4 160c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-159.7 0c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm318.5 163.2c-9.9 24-40.7 11-63.9-1.2-13.5 69.1-58.1 111.4-126.3 124.2.3.9-2-.1 24 1 33.6 1.4 63.8-3.1 97.4-8-19.8-13.8-11.4-37.1-9.8-38.1 1.4-.9 14.7 1.7 21.6 11.5 8.6-12.5 28.4-14.8 30.2-13.6 1.6 1.1 6.6 20.9-6.9 34.6 4.7-.9 8.2-1.6 9.8-2.1 2.6-.8 17.7 11.3 3.1 13.3-14.3 2.3-22.6 5.1-47.1 10.8-45.9 10.7-85.9 11.8-117.7 12.8l1 11.6c3.8 18.1-23.4 24.3-27.6 6.2.8 17.9-27.1 21.8-28.4-1l-.5 5.3c-.7 18.4-28.4 17.9-28.3-.6-7.5 13.5-28.1 6.8-26.4-8.5l1.2-12.4c-36.7.9-59.7 3.1-61.8 3.1-20.9 0-20.9-31.6 0-31.6 2.4 0 27.7 1.3 63.2 2.8-61.1-15.5-103.7-55-114.9-118.2-25 12.8-57.5 26.8-68.2.8-10.5-25.4 21.5-42.6 66.8-73.4.7-6.6 1.6-13.3 2.7-19.8-14.4-19.6-11.6-36.3-16.1-60.4-16.8 2.4-23.2-9.1-23.6-23.1.3-7.3 2.1-14.9 2.4-15.4 1.1-1.8 10.1-2 12.7-2.6 6-31.7 50.6-33.2 90.9-34.5 19.7-21.8 45.2-41.5 80.9-48.3C203.3 29 215.2 8.5 216.2 8c1.7-.8 21.2 4.3 26.3 23.2 5.2-8.8 18.3-11.4 19.6-10.7 1.1.6 6.4 15-4.9 25.9 40.3 3.5 72.2 24.7 96 50.7 36.1 1.5 71.8 5.9 77.1 34 2.7.6 11.6.8 12.7 2.6.3.5 2.1 8.1 2.4 15.4-.5 13.9-6.8 25.4-23.6 23.1-3.2 17.3-2.7 32.9-8.7 47.7 2.4 11.7 4 23.8 4.8 36.4 37 25.4 70.3 42.5 60.3 66.9zM207.4 159.9c.9-44-37.9-42.2-78.6-40.3-21.7 1-38.9 1.9-45.5 13.9-11.4 20.9 5.9 92.9 23.2 101.2 9.8 4.7 73.4 7.9 86.3-7.1 8.2-9.4 15-49.4 14.6-67.7zm52 58.3c-4.3-12.4-6-30.1-15.3-32.7-2-.5-9-.5-11 0-10 2.8-10.8 22.1-17 37.2 15.4 0 19.3 9.7 23.7 9.7 4.3 0 6.3-11.3 19.6-14.2zm135.7-84.7c-6.6-12.1-24.8-12.9-46.5-13.9-40.2-1.9-78.2-3.8-77.3 40.3-.5 18.3 5 58.3 13.2 67.8 13 14.9 76.6 11.8 86.3 7.1 15.8-7.6 36.5-78.9 24.3-101.3z"], + "ebay": [640, 512, [], "f4f4", "M405.2 263.8c-29.1.9-47.2 6.2-47.2 25.3 0 12.4 9.9 25.8 35 25.8 33.7 0 51.6-18.4 51.6-48.4v-3.3c-11.8 0-26.3.1-39.4.6m71.5 39.7c0 9.3.3 18.6 1 26.8h-29.8c-.8-6.9-1.1-13.6-1.1-20.2-16.1 19.8-35.3 25.5-61.9 25.5-39.5 0-60.6-20.9-60.6-45 0-35 28.8-47.3 78.6-48.4 13.7-.3 29-.4 41.7-.4v-3.4c0-23.4-15-33-41-33-19.3 0-33.6 8-35 21.8h-33.7c3.6-34.4 39.7-43.1 71.5-43.1 38.1 0 70.3 13.5 70.3 53.8v65.6zm-349-56.8c-2.3-54.7-87.5-56.6-94.4 0h94.4zm-95 21.4c3.5 58.3 79.2 57.4 91.2 21.6H157c-6.4 34.4-43 46.1-74.4 46.1-57.2 0-82.5-31.5-82.5-74 0-46.8 26.2-77.6 83-77.6 45.3 0 78.4 23.7 78.4 75.4v8.5H32.7zm211 45.7c29.8 0 50.2-21.5 50.2-53.8 0-32.4-20.4-53.8-50.2-53.8-29.6 0-50.2 21.4-50.2 53.8 0 32.3 20.6 53.8 50.2 53.8m-82.2-186h32.1v80.6c15.7-18.7 37.4-24.2 58.7-24.2 35.7 0 75.4 24.1 75.4 76.2 0 43.6-31.5 75.4-76 75.4-23.3 0-45.1-8.3-58.7-24.9 0 6.6-.4 13.2-1.1 19.5h-31.5c.5-10.2 1.1-22.8 1.1-33.1V127.8zM640 189.5l-99.2 194.8h-35.9l28.5-54.1-74.6-140.7h37.5l54.9 109.9L606 189.5h34z"], + "edge": [512, 512, [], "f282", "M25.714 228.163c.111-.162.23-.323.342-.485-.021.162-.045.323-.065.485h-.277zm460.572 15.508c0-44.032-7.754-84.465-28.801-122.405C416.498 47.879 343.912 8.001 258.893 8.001 118.962 7.724 40.617 113.214 26.056 227.679c42.429-61.312 117.073-121.376 220.375-124.966 0 0 109.666 0 99.419 104.957H169.997c6.369-37.386 18.554-58.986 34.339-78.926-75.048 34.893-121.85 96.096-120.742 188.315.83 71.448 50.124 144.836 120.743 171.976 83.357 31.847 192.776 7.2 240.132-21.324V363.307c-80.864 56.494-270.871 60.925-272.255-67.572h314.073v-52.064z"], + "elementor": [448, 512, [], "f430", "M425.6 32H22.4C10 32 0 42 0 54.4v403.2C0 470 10 480 22.4 480h403.2c12.4 0 22.4-10 22.4-22.4V54.4C448 42 438 32 425.6 32M164.3 355.5h-39.8v-199h39.8v199zm159.3 0H204.1v-39.8h119.5v39.8zm0-79.6H204.1v-39.8h119.5v39.8zm0-79.7H204.1v-39.8h119.5v39.8z"], + "ember": [640, 512, [], "f423", "M639.9 254.6c-1.1-10.7-10.7-6.8-10.7-6.8s-15.6 12.1-29.3 10.7c-13.7-1.3-9.4-32-9.4-32s3-28.1-5.1-30.4c-8.1-2.4-18 7.3-18 7.3s-12.4 13.7-18.3 31.2l-1.6.5s1.9-30.6-.3-37.6c-1.6-3.5-16.4-3.2-18.8 3s-14.2 49.2-15 67.2c0 0-23.1 19.6-43.3 22.8s-25-9.4-25-9.4 54.8-15.3 52.9-59.1c-1.9-43.8-44.2-27.6-49-24-4.6 3.5-29.4 18.4-36.6 59.7-.2 1.4-.7 7.5-.7 7.5s-21.2 14.2-33 18c0 0 33-55.6-7.3-80.9-18.3-11-32.8 12.1-32.8 12.1s54.5-60.7 42.5-112c-5.8-24.4-18-27.1-29.2-23.1-17 6.7-23.5 16.7-23.5 16.7s-22 32-27.1 79.5-12.6 105.1-12.6 105.1-10.5 10.2-20.2 10.7-5.4-28.7-5.4-28.7 7.5-44.6 7-52.1-1.1-11.6-9.9-14.2c-8.9-2.7-18.5 8.6-18.5 8.6s-25.5 38.7-27.7 44.6l-1.3 2.4-1.3-1.6s18-52.7.8-53.5c-17.2-.8-28.5 18.8-28.5 18.8s-19.6 32.8-20.4 36.5l-1.3-1.6s8.1-38.2 6.4-47.6c-1.6-9.4-10.5-7.5-10.5-7.5s-11.3-1.3-14.2 5.9-13.7 55.3-15 70.7c0 0-28.2 20.2-46.8 20.4-18.5.3-16.7-11.8-16.7-11.8s68-23.3 49.4-69.2c-8.3-11.8-18-15.5-31.7-15.3-13.7.3-30.3 8.6-41.3 33.3-5.3 11.8-6.8 23-7.8 31.5 0 0-12.3 2.4-18.8-2.9s-10 0-10 0-11.2 14-.1 18.3 28.1 6.1 28.1 6.1c1.6 7.5 6.2 19.5 19.6 29.7 20.2 15.3 58.8-1.3 58.8-1.3l15.9-8.8s.5 14.6 12.1 16.7c11.6 2.1 16.4 1 36.5-47.9 11.8-25 12.6-23.6 12.6-23.6l1.3-.3s-9.1 46.8-5.6 59.7C187.7 319.4 203 318 203 318s8.3 2.4 15-21.2c6.7-23.6 19.6-49.9 19.6-49.9h1.6s-5.6 48.1 3 63.7c8.6 15.6 30.9 5.3 30.9 5.3s15.6-7.8 18-10.2c0 0 18.5 15.8 44.6 12.9 58.3-11.5 79.1-25.9 79.1-25.9s10 24.4 41.1 26.7c35.5 2.7 54.8-18.6 54.8-18.6s-.3 13.5 12.1 18.6c12.4 5.1 20.7-22.8 20.7-22.8l20.7-57.2h1.9s1.1 37.3 21.5 43.2 47-13.7 47-13.7 6.4-3.5 5.3-14.3zm-578 5.3c.8-32 21.8-45.9 29-39 7.3 7 4.6 22-9.1 31.4-13.7 9.5-19.9 7.6-19.9 7.6zm272.8-123.8s19.1-49.7 23.6-25.5-40 96.2-40 96.2c.5-16.2 16.4-70.7 16.4-70.7zm22.8 138.4c-12.6 33-43.3 19.6-43.3 19.6s-3.5-11.8 6.4-44.9 33.3-20.2 33.3-20.2 16.2 12.4 3.6 45.5zm84.6-14.6s-3-10.5 8.1-30.6c11-20.2 19.6-9.1 19.6-9.1s9.4 10.2-1.3 25.5-26.4 14.2-26.4 14.2z"], + "empire": [496, 512, [], "f1d1", "M287.6 54.2c-10.8-2.2-22.1-3.3-33.5-3.6V32.4c78.1 2.2 146.1 44 184.6 106.6l-15.8 9.1c-6.1-9.7-12.7-18.8-20.2-27.1l-18 15.5c-26-29.6-61.4-50.7-101.9-58.4l4.8-23.9zM53.4 322.4l23-7.7c-6.4-18.3-10-38.2-10-58.7s3.3-40.4 9.7-58.7l-22.7-7.7c3.6-10.8 8.3-21.3 13.6-31l-15.8-9.1C34 181 24.1 217.5 24.1 256s10 75 27.1 106.6l15.8-9.1c-5.3-10-9.7-20.3-13.6-31.1zM213.1 434c-40.4-8-75.8-29.1-101.9-58.7l-18 15.8c-7.5-8.6-14.4-17.7-20.2-27.4l-16 9.4c38.5 62.3 106.8 104.3 184.9 106.6v-18.3c-11.3-.3-22.7-1.7-33.5-3.6l4.7-23.8zM93.3 120.9l18 15.5c26-29.6 61.4-50.7 101.9-58.4l-4.7-23.8c10.8-2.2 22.1-3.3 33.5-3.6V32.4C163.9 34.6 95.9 76.4 57.4 139l15.8 9.1c6-9.7 12.6-18.9 20.1-27.2zm309.4 270.2l-18-15.8c-26 29.6-61.4 50.7-101.9 58.7l4.7 23.8c-10.8 1.9-22.1 3.3-33.5 3.6v18.3c78.1-2.2 146.4-44.3 184.9-106.6l-16.1-9.4c-5.7 9.7-12.6 18.8-20.1 27.4zM496 256c0 137-111 248-248 248S0 393 0 256 111 8 248 8s248 111 248 248zm-12.2 0c0-130.1-105.7-235.8-235.8-235.8S12.2 125.9 12.2 256 117.9 491.8 248 491.8 483.8 386.1 483.8 256zm-39-106.6l-15.8 9.1c5.3 9.7 10 20.2 13.6 31l-22.7 7.7c6.4 18.3 9.7 38.2 9.7 58.7s-3.6 40.4-10 58.7l23 7.7c-3.9 10.8-8.3 21-13.6 31l15.8 9.1C462 331 471.9 294.5 471.9 256s-9.9-75-27.1-106.6zm-183 177.7c16.3-3.3 30.4-11.6 40.7-23.5l51.2 44.8c11.9-13.6 21.3-29.3 27.1-46.8l-64.2-22.1c2.5-7.5 3.9-15.2 3.9-23.5s-1.4-16.1-3.9-23.5l64.5-22.1c-6.1-17.4-15.5-33.2-27.4-46.8l-51.2 44.8c-10.2-11.9-24.4-20.5-40.7-23.8l13.3-66.4c-8.6-1.9-17.7-2.8-27.1-2.8-9.4 0-18.5.8-27.1 2.8l13.3 66.4c-16.3 3.3-30.4 11.9-40.7 23.8l-51.2-44.8c-11.9 13.6-21.3 29.3-27.4 46.8l64.5 22.1c-2.5 7.5-3.9 15.2-3.9 23.5s1.4 16.1 3.9 23.5l-64.2 22.1c5.8 17.4 15.2 33.2 27.1 46.8l51.2-44.8c10.2 11.9 24.4 20.2 40.7 23.5l-13.3 66.7c8.6 1.7 17.7 2.8 27.1 2.8 9.4 0 18.5-1.1 27.1-2.8l-13.3-66.7z"], + "envira": [448, 512, [], "f299", "M0 32c477.6 0 366.6 317.3 367.1 366.3L448 480h-26l-70.4-71.2c-39 4.2-124.4 34.5-214.4-37C47 300.3 52 214.7 0 32zm79.7 46c-49.7-23.5-5.2 9.2-5.2 9.2 45.2 31.2 66 73.7 90.2 119.9 31.5 60.2 79 139.7 144.2 167.7 65 28 34.2 12.5 6-8.5-28.2-21.2-68.2-87-91-130.2-31.7-60-61-118.6-144.2-158.1z"], + "erlang": [640, 512, [], "f39d", "M21.7 246.4c-.1 86.8 29 159.5 78.7 212.1H0v-405h87.2c-41.5 50.2-65.6 116.2-65.5 192.9zM640 53.6h-83.6c31.4 42.7 48.7 97.5 46.2 162.7.5 6 .5 11.7 0 24.1H230.2c-.2 109.7 38.9 194.9 138.6 195.3 68.5-.3 118-51 151.9-106.1l96.4 48.2c-17.4 30.9-36.5 57.8-57.9 80.8H640v-405zm-80.8 405s0-.1 0 0h-.2.2zm-3.1-405h.3l-.1-.1-.2.1zm-230.7 9.6c-45.9.1-85.1 33.5-89.2 83.2h169.9c-1.1-49.7-34.5-83.1-80.7-83.2z"], + "ethereum": [320, 512, [], "f42e", "M311.9 260.8L160 353.6 8 260.8 160 0l151.9 260.8zM160 383.4L8 290.6 160 512l152-221.4-152 92.8z"], + "etsy": [384, 512, [], "f2d7", "M384 348c-1.75 10.75-13.75 110-15.5 132-117.879-4.299-219.895-4.743-368.5 0v-25.5c45.457-8.948 60.627-8.019 61-35.25 1.793-72.322 3.524-244.143 0-322-1.029-28.46-12.13-26.765-61-36v-25.5c73.886 2.358 255.933 8.551 362.999-3.75-3.5 38.25-7.75 126.5-7.75 126.5H332C320.947 115.665 313.241 68 277.25 68h-137c-10.25 0-10.75 3.5-10.75 9.75V241.5c58 .5 88.5-2.5 88.5-2.5 29.77-.951 27.56-8.502 40.75-65.251h25.75c-4.407 101.351-3.91 61.829-1.75 160.25H257c-9.155-40.086-9.065-61.045-39.501-61.5 0 0-21.5-2-88-2v139c0 26 14.25 38.25 44.25 38.25H263c63.636 0 66.564-24.996 98.751-99.75H384z"], + "expeditedssl": [496, 512, [], "f23e", "M248 43.4C130.6 43.4 35.4 138.6 35.4 256S130.6 468.6 248 468.6 460.6 373.4 460.6 256 365.4 43.4 248 43.4zm-97.4 132.9c0-53.7 43.7-97.4 97.4-97.4s97.4 43.7 97.4 97.4v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6c0-82.1-124-82.1-124 0v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6zM389.7 380c0 9.7-8 17.7-17.7 17.7H124c-9.7 0-17.7-8-17.7-17.7V238.3c0-9.7 8-17.7 17.7-17.7h248c9.7 0 17.7 8 17.7 17.7V380zm-248-137.3v132.9c0 2.5-1.9 4.4-4.4 4.4h-8.9c-2.5 0-4.4-1.9-4.4-4.4V242.7c0-2.5 1.9-4.4 4.4-4.4h8.9c2.5 0 4.4 1.9 4.4 4.4zm141.7 48.7c0 13-7.2 24.4-17.7 30.4v31.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-31.6c-10.5-6.1-17.7-17.4-17.7-30.4 0-19.7 15.8-35.4 35.4-35.4s35.5 15.8 35.5 35.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 478.3C121 486.3 17.7 383 17.7 256S121 25.7 248 25.7 478.3 129 478.3 256 375 486.3 248 486.3z"], + "facebook": [448, 512, [], "f09a", "M448 56.7v398.5c0 13.7-11.1 24.7-24.7 24.7H309.1V306.5h58.2l8.7-67.6h-67v-43.2c0-19.6 5.4-32.9 33.5-32.9h35.8v-60.5c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9h-58.4v67.6h58.4V480H24.7C11.1 480 0 468.9 0 455.3V56.7C0 43.1 11.1 32 24.7 32h398.5c13.7 0 24.8 11.1 24.8 24.7z"], + "facebook-f": [264, 512, [], "f39e", "M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"], + "facebook-messenger": [448, 512, [], "f39f", "M224 32C15.9 32-77.5 278 84.6 400.6V480l75.7-42c142.2 39.8 285.4-59.9 285.4-198.7C445.8 124.8 346.5 32 224 32zm23.4 278.1L190 250.5 79.6 311.6l121.1-128.5 57.4 59.6 110.4-61.1-121.1 128.5z"], + "facebook-square": [448, 512, [], "f082", "M448 80v352c0 26.5-21.5 48-48 48h-85.3V302.8h60.6l8.7-67.6h-69.3V192c0-19.6 5.4-32.9 33.5-32.9H384V98.7c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9H184v67.6h60.9V480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z"], + "firefox": [480, 512, [], "f269", "M478.1 235.3c-.7-4.5-1.4-7.1-1.4-7.1s-1.8 2-4.7 5.9c-.9-10.7-2.8-21.2-5.8-31.6-3.7-12.9-8.5-25.4-14.5-37.4-3.8-8-8.2-15.6-13.3-22.8-1.8-2.7-3.7-5.4-5.6-7.9-8.8-14.4-19-23.3-30.7-40-7.6-12.8-12.9-26.9-15.4-41.6-3.2 8.9-5.7 18-7.4 27.3-12.1-12.2-22.5-20.8-28.9-26.7C319.4 24.2 323 9.1 323 9.1S264.7 74.2 289.9 142c8.7 23 23.8 43.1 43.4 57.9 24.4 20.2 50.8 36 64.7 76.6-11.2-21.3-28.1-39.2-48.8-51.5 6.2 14.7 9.4 30.6 9.3 46.5 0 61-49.6 110.5-110.6 110.4-8.3 0-16.5-.9-24.5-2.8-9.5-1.8-18.7-4.9-27.4-9.3-12.9-7.8-24-18.1-32.8-30.3l-.2-.3 2 .7c4.6 1.6 9.2 2.8 14 3.7 18.7 4 38.3 1.7 55.6-6.6 17.5-9.7 28-16.9 36.6-14h.2c8.4 2.7 15-5.5 9-14-10.4-13.4-27.4-20-44.2-17-17.5 2.5-33.5 15-56.4 2.9-1.5-.8-2.9-1.6-4.3-2.5-1.6-.9 4.9 1.3 3.4.3-5-2.5-9.8-5.4-14.4-8.6-.3-.3 3.5 1.1 3.1.8-5.9-4-11-9.2-15-15.2-4.1-7.4-4.5-16.4-1-24.1 2.1-3.8 5.4-6.9 9.3-8.7 3 1.5 4.8 2.6 4.8 2.6s-1.3-2.5-2.1-3.8c.3-.1.5 0 .8-.2 2.6 1.1 8.3 4 11.4 5.8 2.1 1.1 3.8 2.7 5.2 4.7 0 0 1-.5.3-2.7-1.1-2.7-2.9-5-5.4-6.6h.2c2.3 1.2 4.5 2.6 6.6 4.1 1.9-4.4 2.8-9.2 2.6-14 .2-2.6-.2-5.3-1.1-7.8-.8-1.6.5-2.2 1.9-.5-.2-1.3-.7-2.5-1.2-3.7v-.1s.8-1.1 1.2-1.5c1-1 2.1-1.9 3.4-2.7 7.2-4.5 14.8-8.4 22.7-11.6 6.4-2.8 11.7-4.9 12.8-5.6 1.6-1 3.1-2.2 4.5-3.5 5.3-4.5 9-10.8 10.2-17.7.1-.9.2-1.8.3-2.8v-1.5c-.9-3.5-6.9-6.1-38.4-9.1-11.1-1.8-20-10.1-22.5-21.1v.1c-.4 1.1-.9 2.3-1.3 3.5.4-1.2.8-2.3 1.3-3.5v-.2c6-15.7 16.8-29.1 30.8-38.3.8-.7-3.2.2-2.4-.5 2.7-1.3 5.4-2.5 8.2-3.5 1.4-.6-6-3.4-12.6-2.7-4 .2-8 1.2-11.7 2.8 1.6-1.3 6.2-3.1 5.1-3.1-8.4 1.6-16.5 4.7-23.9 9 0-.8.1-1.5.5-2.2-5.9 2.5-11 6.5-15 11.5.1-.9.2-1.8.2-2.7-2.7 2-5.2 4.3-7.3 6.9l-.1.1c-17.4-6.7-36.3-8.3-54.6-4.7l-.2-.1h.2c-3.8-3.1-7.1-6.7-9.7-10.9l-.2.1-.4-.2c-1.2-1.8-2.4-3.8-3.7-6-.9-1.6-1.8-3.4-2.7-5.2 0-.1-.1-.2-.2-.2-.4 0-.6 1.7-.9 1.3v-.1c-3.2-8.3-4.7-17.2-4.4-26.2l-.2.1c-5.1 3.5-9 8.6-11.1 14.5-.9 2.1-1.6 3.3-2.2 4.5v-.5c.1-1.1.6-3.3.5-3.1-.1.2-.2.3-.3.4-1.5 1.7-2.9 3.7-3.9 5.8-.9 1.9-1.7 3.9-2.3 5.9-.1.3 0-.3 0-1s.1-2 0-1.7l-.3.7c-6.7 14.9-10.9 30.8-12.4 47.1-.4 2.8-.6 5.6-.5 8.3v.2c-4.8 5.2-9 11-12.7 17.1-12.1 20.4-21.1 42.5-26.8 65.6 4-8.8 8.8-17.2 14.3-25.1C5.5 228.5 0 257.4 0 286.6c1.8-8.6 4.2-17 7-25.3-1.7 34.5 4.9 68.9 19.4 100.3 19.4 43.5 51.6 80 92.3 104.7 16.6 11.2 34.7 19.9 53.8 25.8 2.5.9 5.1 1.8 7.7 2.7-.8-.3-1.6-.7-2.4-1 22.6 6.8 46.2 10.3 69.8 10.3 83.7 0 111.3-31.9 113.8-35 4.1-3.7 7.5-8.2 9.9-13.3 1.6-.7 3.2-1.4 4.9-2.1l1-.5 1.9-.9c12.6-5.9 24.5-13.4 35.3-22.1 16.3-11.7 27.9-28.7 32.9-48.1 3-7.1 3.1-15 .4-22.2.9-1.4 1.7-2.8 2.7-4.3 18-28.9 28.2-61.9 29.6-95.9v-2.8c0-7.3-.6-14.5-1.9-21.6z"], + "first-order": [448, 512, [], "f2b0", "M12.9 229.2c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4h-.2zM224 96.6c-7.1 0-14.6.6-21.4 1.7l3.7 67.4-22-64c-14.3 3.7-27.7 9.4-40 16.6l29.4 61.4-45.1-50.9c-11.4 8.9-21.7 19.1-30.6 30.9l50.6 45.4-61.1-29.7c-7.1 12.3-12.9 25.7-16.6 40l64.3 22.6-68-4c-.9 7.1-1.4 14.6-1.4 22s.6 14.6 1.4 21.7l67.7-4-64 22.6c3.7 14.3 9.4 27.7 16.6 40.3l61.1-29.7L97.7 352c8.9 11.7 19.1 22.3 30.9 30.9l44.9-50.9-29.5 61.4c12.3 7.4 25.7 13.1 40 16.9l22.3-64.6-4 68c7.1 1.1 14.6 1.7 21.7 1.7 7.4 0 14.6-.6 21.7-1.7l-4-68.6 22.6 65.1c14.3-4 27.7-9.4 40-16.9L274.9 332l44.9 50.9c11.7-8.9 22-19.1 30.6-30.9l-50.6-45.1 61.1 29.4c7.1-12.3 12.9-25.7 16.6-40.3l-64-22.3 67.4 4c1.1-7.1 1.4-14.3 1.4-21.7s-.3-14.9-1.4-22l-67.7 4 64-22.3c-3.7-14.3-9.1-28-16.6-40.3l-60.9 29.7 50.6-45.4c-8.9-11.7-19.1-22-30.6-30.9l-45.1 50.9 29.4-61.1c-12.3-7.4-25.7-13.1-40-16.9L241.7 166l4-67.7c-7.1-1.2-14.3-1.7-21.7-1.7zM443.4 128v256L224 512 4.6 384V128L224 0l219.4 128zm-17.1 10.3L224 20.9 21.7 138.3v235.1L224 491.1l202.3-117.7V138.3zM224 37.1l187.7 109.4v218.9L224 474.9 36.3 365.4V146.6L224 37.1zm0 50.9c-92.3 0-166.9 75.1-166.9 168 0 92.6 74.6 167.7 166.9 167.7 92 0 166.9-75.1 166.9-167.7 0-92.9-74.9-168-166.9-168z"], + "first-order-alt": [496, 512, [], "f50a", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 488.21C115.34 496.21 7.79 388.66 7.79 256S115.34 15.79 248 15.79 488.21 123.34 488.21 256 380.66 496.21 248 496.21zm0-459.92C126.66 36.29 28.29 134.66 28.29 256S126.66 475.71 248 475.71 467.71 377.34 467.71 256 369.34 36.29 248 36.29zm0 431.22c-116.81 0-211.51-94.69-211.51-211.51S131.19 44.49 248 44.49 459.51 139.19 459.51 256 364.81 467.51 248 467.51zm186.23-162.98a191.613 191.613 0 0 1-20.13 48.69l-74.13-35.88 61.48 54.82a193.515 193.515 0 0 1-37.2 37.29l-54.8-61.57 35.88 74.27a190.944 190.944 0 0 1-48.63 20.23l-27.29-78.47 4.79 82.93c-8.61 1.18-17.4 1.8-26.33 1.8s-17.72-.62-26.33-1.8l4.76-82.46-27.15 78.03a191.365 191.365 0 0 1-48.65-20.2l35.93-74.34-54.87 61.64a193.85 193.85 0 0 1-37.22-37.28l61.59-54.9-74.26 35.93a191.638 191.638 0 0 1-20.14-48.69l77.84-27.11-82.23 4.76c-1.16-8.57-1.78-17.32-1.78-26.21 0-9 .63-17.84 1.82-26.51l82.38 4.77-77.94-27.16a191.726 191.726 0 0 1 20.23-48.67l74.22 35.92-61.52-54.86a193.85 193.85 0 0 1 37.28-37.22l54.76 61.53-35.83-74.17a191.49 191.49 0 0 1 48.65-20.13l26.87 77.25-4.71-81.61c8.61-1.18 17.39-1.8 26.32-1.8s17.71.62 26.32 1.8l-4.74 82.16 27.05-77.76c17.27 4.5 33.6 11.35 48.63 20.17l-35.82 74.12 54.72-61.47a193.13 193.13 0 0 1 37.24 37.23l-61.45 54.77 74.12-35.86a191.515 191.515 0 0 1 20.2 48.65l-77.81 27.1 82.24-4.75c1.19 8.66 1.82 17.5 1.82 26.49 0 8.88-.61 17.63-1.78 26.19l-82.12-4.75 77.72 27.09z"], + "firstdraft": [384, 512, [], "f3a1", "M384 192h-64v128H192v128H0v-25.6h166.4v-128h128v-128H384V192zm-25.6 38.4v128h-128v128H64V512h192V384h128V230.4h-25.6zm25.6 192h-89.6V512H320v-64h64v-25.6zM0 0v384h128V256h128V128h128V0H0z"], + "flickr": [448, 512, [], "f16e", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5zm159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5z"], + "flipboard": [448, 512, [], "f44d", "M0 32v448h448V32H0zm358.4 179.2h-89.6v89.6h-89.6v89.6H89.6V121.6h268.8v89.6z"], + "fly": [384, 512, [], "f417", "M197.8 427.8c12.9 11.7 33.7 33.3 33.2 50.7 0 .8-.1 1.6-.1 2.5-1.8 19.8-18.8 31.1-39.1 31-25-.1-39.9-16.8-38.7-35.8 1-16.2 20.5-36.7 32.4-47.6 2.3-2.1 2.7-2.7 5.6-3.6 3.4 0 3.9.3 6.7 2.8zM331.9 67.3c-16.3-25.7-38.6-40.6-63.3-52.1C243.1 4.5 214-.2 192 0c-44.1 0-71.2 13.2-81.1 17.3C57.3 45.2 26.5 87.2 28 158.6c7.1 82.2 97 176 155.8 233.8 1.7 1.6 4.5 4.5 6.2 5.1l3.3.1c2.1-.7 1.8-.5 3.5-2.1 52.3-49.2 140.7-145.8 155.9-215.7 7-39.2 3.1-72.5-20.8-112.5zM186.8 351.9c-28-51.1-65.2-130.7-69.3-189-3.4-47.5 11.4-131.2 69.3-136.7v325.7zM328.7 180c-16.4 56.8-77.3 128-118.9 170.3C237.6 298.4 275 217 277 158.4c1.6-45.9-9.8-105.8-48-131.4 88.8 18.3 115.5 98.1 99.7 153z"], + "font-awesome": [448, 512, [], "f2b4", "M397.8 32H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-45.4 284.3c0 4.2-3.6 6-7.8 7.8-16.7 7.2-34.6 13.7-53.8 13.7-26.9 0-39.4-16.7-71.7-16.7-23.3 0-47.8 8.4-67.5 17.3-1.2.6-2.4.6-3.6 1.2V385c0 1.8 0 3.6-.6 4.8v1.2c-2.4 8.4-10.2 14.3-19.1 14.3-11.3 0-20.3-9-20.3-20.3V166.4c-7.8-6-13.1-15.5-13.1-26.3 0-18.5 14.9-33.5 33.5-33.5 18.5 0 33.5 14.9 33.5 33.5 0 10.8-4.8 20.3-13.1 26.3v18.5c1.8-.6 3.6-1.2 5.4-2.4 18.5-7.8 40.6-14.3 61.5-14.3 22.7 0 40.6 6 60.9 13.7 4.2 1.8 8.4 2.4 13.1 2.4 22.7 0 47.8-16.1 53.8-16.1 4.8 0 9 3.6 9 7.8v140.3z"], + "font-awesome-alt": [448, 512, [], "f35c", "M397.8 67.8c7.8 0 14.3 6.6 14.3 14.3v347.6c0 7.8-6.6 14.3-14.3 14.3H50.2c-7.8 0-14.3-6.6-14.3-14.3V82.2c0-7.8 6.6-14.3 14.3-14.3h347.6m0-35.9H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-58.5 139.2c-6 0-29.9 15.5-52.6 15.5-4.2 0-8.4-.6-12.5-2.4-19.7-7.8-37-13.7-59.1-13.7-20.3 0-41.8 6.6-59.7 13.7-1.8.6-3.6 1.2-4.8 1.8v-17.9c7.8-6 12.5-14.9 12.5-25.7 0-17.9-14.3-32.3-32.3-32.3s-32.3 14.3-32.3 32.3c0 10.2 4.8 19.7 12.5 25.7v212.1c0 10.8 9 19.7 19.7 19.7 9 0 16.1-6 18.5-13.7V385c.6-1.8.6-3 .6-4.8V336c1.2 0 2.4-.6 3-1.2 19.7-8.4 43-16.7 65.7-16.7 31.1 0 43 16.1 69.3 16.1 18.5 0 36.4-6.6 52-13.7 4.2-1.8 7.2-3.6 7.2-7.8V178.3c1.8-4.1-2.3-7.1-7.7-7.1z"], + "font-awesome-flag": [448, 512, [], "f425", "M444.373 359.424c0 7.168-6.144 10.24-13.312 13.312-28.672 12.288-59.392 23.552-92.16 23.552-46.08 0-67.584-28.672-122.88-28.672-39.936 0-81.92 14.336-115.712 29.696-2.048 1.024-4.096 1.024-6.144 2.048v77.824c0 21.405-16.122 34.816-33.792 34.816-19.456 0-34.816-15.36-34.816-34.816V102.4C12.245 92.16 3.029 75.776 3.029 57.344 3.029 25.6 28.629 0 60.373 0s57.344 25.6 57.344 57.344c0 18.432-8.192 34.816-22.528 45.056v31.744c4.124-1.374 58.768-28.672 114.688-28.672 65.27 0 97.676 27.648 126.976 27.648 38.912 0 81.92-27.648 92.16-27.648 8.192 0 15.36 6.144 15.36 13.312v240.64z"], + "font-awesome-logo-full": [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"], + "fonticons": [448, 512, [], "f280", "M0 32v448h448V32H0zm167.4 196h67.4l-11.1 37.3H168v112.9c0 5.8-2 6.7 3.2 7.3l43.5 4.1v25.1H84V389l21.3-2c5.2-.6 6.7-2.3 6.7-7.9V267.7c0-2.3-2.9-2.3-5.8-2.3H84V228h28v-21c0-49.6 26.5-70 77.3-70 34.1 0 64.7 8.2 64.7 52.8l-50.7 6.1c.3-18.7-4.4-23-16.3-23-18.4 0-19 9.9-19 27.4v23.3c0 2.4-3.5 4.4-.6 4.4zM364 414.7H261.3v-25.1l20.4-2.6c5.2-.6 7.6-1.7 7.6-7.3V271.8c0-4.1-2.9-6.7-6.7-7.9l-24.2-6.4 6.7-29.5h80.2v151.7c0 5.8-2.6 6.4 2.9 7.3l15.7 2.6v25.1zm-21.9-255.5l9 33.2-7.3 7.3-31.2-16.6-31.2 16.6-7.3-7.3 9-33.2-21.8-24.2 3.5-9.6h27.7l15.5-28h9.3l15.5 28h27.7l3.5 9.6-21.9 24.2z"], + "fonticons-fi": [384, 512, [], "f3a2", "M114.4 224h92.4l-15.2 51.2h-76.4V433c0 8-2.8 9.2 4.4 10l59.6 5.6V483H0v-35.2l29.2-2.8c7.2-.8 9.2-3.2 9.2-10.8V278.4c0-3.2-4-3.2-8-3.2H0V224h38.4v-28.8c0-68 36.4-96 106-96 46.8 0 88.8 11.2 88.8 72.4l-69.6 8.4c.4-25.6-6-31.6-22.4-31.6-25.2 0-26 13.6-26 37.6v32c0 3.2-4.8 6-.8 6zM384 483H243.2v-34.4l28-3.6c7.2-.8 10.4-2.4 10.4-10V287c0-5.6-4-9.2-9.2-10.8l-33.2-8.8 9.2-40.4h110v208c0 8-3.6 8.8 4 10l21.6 3.6V483zm-30-347.2l12.4 45.6-10 10-42.8-22.8-42.8 22.8-10-10 12.4-45.6-30-36.4 4.8-10h38L307.2 51H320l21.2 38.4h38l4.8 13.2-30 33.2z"], + "fort-awesome": [512, 512, [], "f286", "M489.2 287.9h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6V146.2c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-6-8-4.6-11.7-4.6v-38c8.3-2 17.1-3.4 25.7-3.4 10.9 0 20.9 4.3 31.4 4.3 4.6 0 27.7-1.1 27.7-8v-60c0-2.6-2-4.6-4.6-4.6-5.1 0-15.1 4.3-24 4.3-9.7 0-20.9-4.3-32.6-4.3-8 0-16 1.1-23.7 2.9v-4.9c5.4-2.6 9.1-8.3 9.1-14.3 0-20.7-31.4-20.8-31.4 0 0 6 3.7 11.7 9.1 14.3v111.7c-3.7 0-11.7-1.4-11.7 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32H128v-32c0-2.6-2-4.6-4.6-4.6H96c-2.6 0-4.6 2-4.6 4.6v178.3H54.8v-32c0-2.6-2-4.6-4.6-4.6H22.8c-2.6 0-4.6 2-4.6 4.6V512h182.9v-96c0-72.6 109.7-72.6 109.7 0v96h182.9V292.5c.1-2.6-1.9-4.6-4.5-4.6zm-288.1-4.5c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64zm146.4 0c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64z"], + "fort-awesome-alt": [512, 512, [], "f3a3", "M211.7 241.1v51.7c0 2.1-1.6 3.7-3.7 3.7h-22.2c-2.1 0-3.7-1.6-3.7-3.7v-51.7c0-2.1 1.6-3.7 3.7-3.7H208c2.1 0 3.7 1.6 3.7 3.7zm114.5-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7h22.2c2.1 0 3.7-1.6 3.7-3.7v-51.7c-.1-2.1-1.7-3.7-3.7-3.7zm-29.1 263.2c-.9.1-1.7.3-2.6.4-1 .2-2.1.3-3.1.5-.9.1-1.8.3-2.8.4-1 .1-2 .3-3 .4-1 .1-2 .2-2.9.3-1 .1-1.9.2-2.9.3-1 .1-2.1.2-3.1.3-.9.1-1.8.2-2.7.2-1.1.1-2.3.1-3.4.2-.8 0-1.7.1-2.5.1-1.3.1-2.6.1-3.9.1-.7 0-1.4.1-2.1.1-2 0-4 .1-6 .1s-4 0-6-.1c-.7 0-1.4 0-2.1-.1-1.3 0-2.6-.1-3.9-.1-.8 0-1.7-.1-2.5-.1-1.1-.1-2.3-.1-3.4-.2-.9-.1-1.8-.1-2.7-.2-1-.1-2.1-.2-3.1-.3-1-.1-1.9-.2-2.9-.3-1-.1-2-.2-2.9-.3-1-.1-2-.2-3-.4-.9-.1-1.8-.3-2.8-.4-1-.1-2.1-.3-3.1-.5-.9-.1-1.7-.3-2.6-.4-65.6-10.9-122.5-47.7-160-99.4-.2-.2-.3-.5-.5-.7-.8-1.1-1.6-2.2-2.3-3.3-.3-.4-.6-.8-.8-1.2-.7-1.1-1.4-2.1-2.1-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.4-2.1-2-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.3-2.2-2-3.3-.2-.4-.5-.8-.7-1.2-2.4-4-4.6-8.1-6.8-12.2-.1-.2-.2-.3-.3-.5-.6-1.1-1.1-2.2-1.7-3.3-.3-.6-.6-1.1-.8-1.7-.5-1-1-2.1-1.5-3.1-.3-.7-.6-1.3-.9-2-.5-1-.9-2-1.4-3l-.9-2.1c-.4-1-.9-2-1.3-3-.3-.7-.6-1.5-.9-2.2l-1.2-3c-.3-.8-.6-1.5-.9-2.3-.4-1-.8-2-1.1-3-.3-.9-.6-1.8-1-2.8-.6-1.6-1.1-3.3-1.7-4.9-.3-.9-.6-1.8-.9-2.8-.3-.9-.5-1.8-.8-2.7-.3-.9-.6-1.9-.8-2.8-.3-.9-.5-1.8-.8-2.7-.3-1-.5-1.9-.8-2.9-.2-.9-.5-1.8-.7-2.7-.3-1-.5-2-.7-3-.2-.9-.4-1.7-.6-2.6-.2-1.1-.5-2.2-.7-3.2-.2-.8-.3-1.6-.5-2.4-.3-1.3-.5-2.7-.8-4-.1-.6-.2-1.1-.3-1.7l-.9-5.7c-.1-.6-.2-1.3-.3-1.9-.2-1.3-.4-2.6-.5-3.9-.1-.8-.2-1.5-.3-2.3-.1-1.2-.3-2.4-.4-3.6-.1-.8-.2-1.6-.2-2.4-.1-1.2-.2-2.4-.3-3.5-.1-.8-.1-1.6-.2-2.4-.1-1.2-.2-2.4-.2-3.7 0-.8-.1-1.5-.1-2.3-.1-1.3-.1-2.7-.2-4 0-.7 0-1.3-.1-2 0-2-.1-4-.1-6 0-53.5 16.9-103 45.8-143.6 2.3-3.2 4.7-6.4 7.1-9.5 4.9-6.2 10.1-12.3 15.6-18 2.7-2.9 5.5-5.7 8.4-8.4 2.9-2.7 5.8-5.4 8.8-8 4.5-3.9 9.1-7.6 13.9-11.2 1.6-1.2 3.2-2.4 4.8-3.5C140 34.2 171.7 20.1 206 13c16.1-3.3 32.9-5 50-5s33.8 1.7 50 5c34.3 7 66 21.1 93.6 40.7 1.6 1.2 3.2 2.3 4.8 3.5 4.8 3.6 9.4 7.3 13.9 11.2 12 10.4 23 21.9 32.8 34.4 2.5 3.1 4.8 6.3 7.1 9.5C487.1 153 504 202.5 504 256c0 2 0 4-.1 6 0 .7 0 1.3-.1 2 0 1.3-.1 2.7-.2 4 0 .8-.1 1.5-.1 2.3-.1 1.2-.1 2.4-.2.7-.1.8-.1 1.6-.2 2.4-.1 1.2-.2 2.4-.3 3.5-.1.8-.2 1.6-.2 2.4-.1 1.2-.3 2.4-.4 3.6-.1.8-.2 1.5-.3 2.3-.2 1.3-.4 2.6-.5 3.9-.1.6-.2 1.3-.3 1.9l-.9 5.7c-.1.6-.2 1.1-.3 1.7-.2 1.3-.5 2.7-.8 4-.2.8-.3 1.6-.5 2.4-.2 1.1-.5 2.2-.7 3.2-.2.9-.4 1.7-.6 2.6-.2 1-.5 2-.7 3-.2.9-.5 1.8-.7 2.7-.3 1-.5 1.9-.8 2.9-.2.9-.5 1.8-.8 2.7-.3.9-.6 1.9-.8 2.8-.3.9-.5 1.8-.8 2.7-.3.9-.6 1.8-.9 2.8-.5 1.6-1.1 3.3-1.7 4.9-.3.9-.6 1.8-1 2.8-.4 1-.7 2-1.1 3-.3.8-.6 1.5-.9 2.3l-1.2 3c-.3.7-.6 1.5-.9 2.2-.4 1-.8 2-1.3 3l-.9 2.1c-.4 1-.9 2-1.4 3-.3.7-.6 1.3-.9 2-.5 1-1 2.1-1.5 3.1-.3.6-.6 1.1-.8 1.7-.6 1.1-1.1 2.2-1.7 3.3-.1.2-.2.3-.3.5-2.2 4.1-4.4 8.2-6.8 12.2-.2.4-.5.8-.7 1.2-.7 1.1-1.3 2.2-2 3.3-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2 3.2-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2.1 3.2-.3.4-.6.8-.8 1.2-.8 1.1-1.5 2.2-2.3 3.3-.2.2-.3.5-.5.7-37.6 54.7-94.5 91.4-160.1 102.4zm117.3-86.2c13-13 24.2-27.4 33.6-42.9v-71.3c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7V326h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-4.8-6.5-3.7-9.5-3.7v-30.7c6.7-1.6 13.8-2.8 20.8-2.8 8.8 0 16.8 3.5 25.4 3.5 3.7 0 22.4-.9 22.4-6.5V93.4c0-2.1-1.6-3.7-3.7-3.7-4.2 0-12.2 3.5-19.4 3.5-7.9 0-16.9-3.5-26.3-3.5-6.5 0-12.9.9-19.2 2.3v-3.9c4.4-2.1 7.4-6.7 7.4-11.5 0-16.8-25.4-16.8-25.4 0 0 4.8 3 9.5 7.4 11.5v90.2c-3 0-9.5-1.1-9.5 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v144H93.5v-25.8c0-2.1-1.6-3.7-3.7-3.7H67.7c-2.1 0-3.7 1.6-3.7 3.7v71.3c9.4 15.5 20.6 29.9 33.6 42.9 20.6 20.6 44.5 36.7 71.2 48 13.9 5.9 28.2 10.3 42.9 13.2v-75.8c0-58.6 88.6-58.6 88.6 0v75.8c14.7-2.9 29-7.4 42.9-13.2 26.7-11.3 50.6-27.4 71.2-48"], + "forumbee": [448, 512, [], "f211", "M5.8 309.7C2 292.7 0 275.5 0 258.3 0 135 99.8 35 223.1 35c16.6 0 33.3 2 49.3 5.5C149 87.5 51.9 186 5.8 309.7zm392.9-189.2C385 103 369 87.8 350.9 75.2c-149.6 44.3-266.3 162.1-309.7 312 12.5 18.1 28 35.6 45.2 49 43.1-151.3 161.2-271.7 312.3-315.7zm15.8 252.7c15.2-25.1 25.4-53.7 29.5-82.8-79.4 42.9-145 110.6-187.6 190.3 30-4.4 58.9-15.3 84.6-31.3 35 13.1 70.9 24.3 107 33.6-9.3-36.5-20.4-74.5-33.5-109.8zm29.7-145.5c-2.6-19.5-7.9-38.7-15.8-56.8C290.5 216.7 182 327.5 137.1 466c18.1 7.6 37 12.5 56.6 15.2C240 367.1 330.5 274.4 444.2 227.7z"], + "foursquare": [368, 512, [], "f180", "M323.1 3H49.9C12.4 3 0 31.3 0 49.1v433.8c0 20.3 12.1 27.7 18.2 30.1 6.2 2.5 22.8 4.6 32.9-7.1C180 356.5 182.2 354 182.2 354c3.1-3.4 3.4-3.1 6.8-3.1h83.4c35.1 0 40.6-25.2 44.3-39.7l48.6-243C373.8 25.8 363.1 3 323.1 3zm-16.3 73.8l-11.4 59.7c-1.2 6.5-9.5 13.2-16.9 13.2H172.1c-12 0-20.6 8.3-20.6 20.3v13c0 12 8.6 20.6 20.6 20.6h90.4c8.3 0 16.6 9.2 14.8 18.2-1.8 8.9-10.5 53.8-11.4 58.8-.9 4.9-6.8 13.5-16.9 13.5h-73.5c-13.5 0-17.2 1.8-26.5 12.6 0 0-8.9 11.4-89.5 108.3-.9.9-1.8.6-1.8-.3V75.9c0-7.7 6.8-16.6 16.6-16.6h219c8.2 0 15.6 7.7 13.5 17.5z"], + "free-code-camp": [576, 512, [], "f2c5", "M69.3 144.5c-41 68.5-36.4 163 1 227C92.5 409.7 120 423.9 120 438c0 6.8-6 13-12.8 13C87.7 451 8 375.5 8 253.2c0-111.5 78-186 97.1-186 6 0 14.9 4.8 14.9 11.1 0 12.7-28.3 28.6-50.7 66.2zm195.8 213.8c4.5 1.8 12.3 5.2 12.3-1.2 0-2.7-2.2-2.9-4.3-3.6-8.5-3.4-14-7.7-19.1-15.2-8.2-12.1-10.1-24.2-10.1-38.6 0-32.1 44.2-37.9 44.2-70 0-12.3-7.7-15.9-7.7-19.3 0-2.2.7-2.2 2.9-2.2 8 0 19.1 13.3 22.5 19.8 2.2 4.6 2.4 6 2.4 11.1 0 7-.7 14.2-.7 21.3 0 27 31.9 19.8 31.9 6.8 0-6-3.6-11.6-3.6-17.4 0-.7 0-1.2.7-1.2 3.4 0 9.4 7.7 11.1 10.1 5.8 8.9 8.5 20.8 8.5 31.4 0 32.4-29.5 49-29.5 56 0 1 2.9 7.7 12.1 1.9 29.7-15.1 53.1-47.6 53.1-89.8 0-33.6-8.7-57.7-32.1-82.6-3.9-4.1-16.4-16.9-22.5-16.9-8.2 0 7.2 18.6 7.2 31.2 0 7.2-4.8 12.3-12.3 12.3-11.6 0-14.5-25.4-15.9-33.3-5.8-33.8-12.8-58.2-46.4-74.1-10.4-5-36.5-11.8-36.5-2.2 0 2.4 2.7 4.1 4.6 5.1 9.2 5.6 19.6 21.4 19.6 38.2 0 46.1-57.7 88.2-57.7 136.2-.2 40.3 28.1 72.6 65.3 86.2zM470.4 67c-6 0-14.4 6.5-14.4 12.6 0 8.7 12.1 19.6 17.6 25.4 81.6 85.1 78.6 214.3 17.6 291-7 8.9-35.3 35.3-35.3 43.5 0 5.1 8.2 11.4 13.2 11.4 25.4 0 98.8-80.8 98.8-185.7C568 145.9 491.8 67 470.4 67zm-42.3 323.1H167c-9.4 0-15.5 7.5-15.5 16.4 0 8.5 7 15.5 15.5 15.5h261.1c9.4 0 11.9-7.5 11.9-16.4 0-8.5-3.5-15.5-11.9-15.5z"], + "freebsd": [448, 512, [], "f3a4", "M303.7 96.2c11.1-11.1 115.5-77 139.2-53.2 23.7 23.7-42.1 128.1-53.2 139.2-11.1 11.1-39.4.9-63.1-22.9-23.8-23.7-34.1-52-22.9-63.1zM109.9 68.1C73.6 47.5 22 24.6 5.6 41.1c-16.6 16.6 7.1 69.4 27.9 105.7 18.5-32.2 44.8-59.3 76.4-78.7zM406.7 174c3.3 11.3 2.7 20.7-2.7 26.1-20.3 20.3-87.5-27-109.3-70.1-18-32.3-11.1-53.4 14.9-48.7 5.7-3.6 12.3-7.6 19.6-11.6-29.8-15.5-63.6-24.3-99.5-24.3-119.1 0-215.6 96.5-215.6 215.6 0 119 96.5 215.6 215.6 215.6S445.3 380.1 445.3 261c0-38.4-10.1-74.5-27.7-105.8-3.9 7-7.6 13.3-10.9 18.8z"], + "fulcrum": [269, 512, [], "f50b", "M70.75 164.14l-35.38 43.55L0 164.14l35.38-43.55 35.37 43.55zM119.23 0L98.69 198.18 47.72 256l50.98 57.82L119.23 512V300.89L78.15 256l41.08-44.89V0zm79.67 164.14l35.38 43.55 35.38-43.55-35.38-43.55-35.38 43.55zm-48.48 46.97L191.5 256l-41.08 44.89V512l20.54-198.18L221.94 256l-50.98-57.82L150.42 0v211.11z"], + "galactic-republic": [496, 512, [], "f50c", "M248 504C111.25 504 0 392.75 0 256S111.25 8 248 8s248 111.25 248 248-111.25 248-248 248zm0-479.47C120.37 24.53 16.53 128.37 16.53 256S120.37 487.47 248 487.47 479.47 383.63 479.47 256 375.63 24.53 248 24.53zm27.62 21.81v24.62a185.933 185.933 0 0 1 83.57 34.54l17.39-17.36c-28.75-22.06-63.3-36.89-100.96-41.8zm-55.37.07c-37.64 4.94-72.16 19.8-100.88 41.85l17.28 17.36h.08c24.07-17.84 52.55-30.06 83.52-34.67V46.41zm12.25 50.17v82.87c-10.04 2.03-19.42 5.94-27.67 11.42l-58.62-58.59-21.93 21.93 58.67 58.67c-5.47 8.23-9.45 17.59-11.47 27.62h-82.9v31h82.9c2.02 10.02 6.01 19.31 11.47 27.54l-58.67 58.69 21.93 21.93 58.62-58.62a77.873 77.873 0 0 0 27.67 11.47v82.9h31v-82.9c10.05-2.03 19.37-6.06 27.62-11.55l58.67 58.69 21.93-21.93-58.67-58.69c5.46-8.23 9.47-17.52 11.5-27.54h82.87v-31h-82.87c-2.02-10.02-6.03-19.38-11.5-27.62l58.67-58.67-21.93-21.93-58.67 58.67c-8.25-5.49-17.57-9.47-27.62-11.5V96.58h-31zm183.24 30.72l-17.36 17.36a186.337 186.337 0 0 1 34.67 83.67h24.62c-4.95-37.69-19.83-72.29-41.93-101.03zm-335.55.13c-22.06 28.72-36.91 63.26-41.85 100.91h24.65c4.6-30.96 16.76-59.45 34.59-83.52l-17.39-17.39zM38.34 283.67c4.92 37.64 19.75 72.18 41.8 100.9l17.36-17.39c-17.81-24.07-29.92-52.57-34.51-83.52H38.34zm394.7 0c-4.61 30.99-16.8 59.5-34.67 83.6l17.36 17.36c22.08-28.74 36.98-63.29 41.93-100.96h-24.62zM136.66 406.38l-17.36 17.36c28.73 22.09 63.3 36.98 100.96 41.93v-24.64c-30.99-4.63-59.53-16.79-83.6-34.65zm222.53.05c-24.09 17.84-52.58 30.08-83.57 34.67v24.57c37.67-4.92 72.21-19.79 100.96-41.85l-17.31-17.39h-.08z"], + "galactic-senate": [512, 512, [], "f50d", "M249.86 33.48v26.07C236.28 80.17 226 168.14 225.39 274.9c11.74-15.62 19.13-33.33 19.13-48.24v-16.88c-.03-5.32.75-10.53 2.19-15.65.65-2.14 1.39-4.08 2.62-5.82 1.23-1.75 3.43-3.79 6.68-3.79 3.24 0 5.45 2.05 6.68 3.79 1.23 1.75 1.97 3.68 2.62 5.82 1.44 5.12 2.22 10.33 2.19 15.65v16.88c0 14.91 7.39 32.62 19.13 48.24-.63-106.76-10.91-194.73-24.49-215.35V33.48h-12.28zm-26.34 147.77c-9.52 2.15-18.7 5.19-27.46 9.08 8.9 16.12 9.76 32.64 1.71 37.29-8 4.62-21.85-4.23-31.36-19.82-11.58 8.79-21.88 19.32-30.56 31.09 14.73 9.62 22.89 22.92 18.32 30.66-4.54 7.7-20.03 7.14-35.47-.96-5.78 13.25-9.75 27.51-11.65 42.42 9.68.18 18.67 2.38 26.18 6.04 17.78-.3 32.77-1.96 40.49-4.22 5.55-26.35 23.02-48.23 46.32-59.51.73-25.55 1.88-49.67 3.48-72.07zm64.96 0c1.59 22.4 2.75 46.52 3.47 72.07 23.29 11.28 40.77 33.16 46.32 59.51 7.72 2.26 22.71 3.92 40.49 4.22 7.51-3.66 16.5-5.85 26.18-6.04-1.9-14.91-5.86-29.17-11.65-42.42-15.44 8.1-30.93 8.66-35.47.96-4.57-7.74 3.6-21.05 18.32-30.66-8.68-11.77-18.98-22.3-30.56-31.09-9.51 15.59-23.36 24.44-31.36 19.82-8.05-4.65-7.19-21.16 1.71-37.29a147.49 147.49 0 0 0-27.45-9.08zm-32.48 8.6c-3.23 0-5.86 8.81-6.09 19.93h-.05v16.88c0 41.42-49.01 95.04-93.49 95.04-52 0-122.75-1.45-156.37 29.17v2.51c9.42 17.12 20.58 33.17 33.18 47.97C45.7 380.26 84.77 360.4 141.2 360c45.68 1.02 79.03 20.33 90.76 40.87.01.01-.01.04 0 .05 7.67 2.14 15.85 3.23 24.04 3.21 8.19.02 16.37-1.07 24.04-3.21.01-.01-.01-.04 0-.05 11.74-20.54 45.08-39.85 90.76-40.87 56.43.39 95.49 20.26 108.02 41.35 12.6-14.8 23.76-30.86 33.18-47.97v-2.51c-33.61-30.62-104.37-29.17-156.37-29.17-44.48 0-93.49-53.62-93.49-95.04v-16.88h-.05c-.23-11.12-2.86-19.93-6.09-19.93zm0 96.59c22.42 0 40.6 18.18 40.6 40.6s-18.18 40.65-40.6 40.65-40.6-18.23-40.6-40.65c0-22.42 18.18-40.6 40.6-40.6zm0 7.64c-18.19 0-32.96 14.77-32.96 32.96S237.81 360 256 360s32.96-14.77 32.96-32.96-14.77-32.96-32.96-32.96zm0 6.14c14.81 0 26.82 12.01 26.82 26.82s-12.01 26.82-26.82 26.82-26.82-12.01-26.82-26.82 12.01-26.82 26.82-26.82zm-114.8 66.67c-10.19.07-21.6.36-30.5 1.66.43 4.42 1.51 18.63 7.11 29.76 9.11-2.56 18.36-3.9 27.62-3.9 41.28.94 71.48 34.35 78.26 74.47l.11 4.7c10.4 1.91 21.19 2.94 32.21 2.94 11.03 0 21.81-1.02 32.21-2.94l.11-4.7c6.78-40.12 36.98-73.53 78.26-74.47 9.26 0 18.51 1.34 27.62 3.9 5.6-11.13 6.68-25.34 7.11-29.76-8.9-1.3-20.32-1.58-30.5-1.66-18.76.42-35.19 4.17-48.61 9.67-12.54 16.03-29.16 30.03-49.58 33.07-.09.02-.17.04-.27.05-.05.01-.11.04-.16.05-5.24 1.07-10.63 1.6-16.19 1.6-5.55 0-10.95-.53-16.19-1.6-.05-.01-.11-.04-.16-.05-.1-.02-.17-.04-.27-.05-20.42-3.03-37.03-17.04-49.58-33.07-13.42-5.49-29.86-9.25-48.61-9.67z"], + "get-pocket": [448, 512, [], "f265", "M407.6 64h-367C18.5 64 0 82.5 0 104.6v135.2C0 364.5 99.7 464 224.2 464c124 0 223.8-99.5 223.8-224.2V104.6c0-22.4-17.7-40.6-40.4-40.6zm-162 268.5c-12.4 11.8-31.4 11.1-42.4 0C89.5 223.6 88.3 227.4 88.3 209.3c0-16.9 13.8-30.7 30.7-30.7 17 0 16.1 3.8 105.2 89.3 90.6-86.9 88.6-89.3 105.5-89.3 16.9 0 30.7 13.8 30.7 30.7 0 17.8-2.9 15.7-114.8 123.2z"], + "gg": [512, 512, [], "f260", "M179.2 230.4l102.4 102.4-102.4 102.4L0 256 179.2 76.8l44.8 44.8-25.6 25.6-19.2-19.2-128 128 128 128 51.5-51.5-77.1-76.5 25.6-25.6zM332.8 76.8L230.4 179.2l102.4 102.4 25.6-25.6-77.1-76.5 51.5-51.5 128 128-128 128-19.2-19.2-25.6 25.6 44.8 44.8L512 256 332.8 76.8z"], + "gg-circle": [512, 512, [], "f261", "M257 8C120 8 9 119 9 256s111 248 248 248 248-111 248-248S394 8 257 8zm-49.5 374.8L81.8 257.1l125.7-125.7 35.2 35.4-24.2 24.2-11.1-11.1-77.2 77.2 77.2 77.2 26.6-26.6-53.1-52.9 24.4-24.4 77.2 77.2-75 75.2zm99-2.2l-35.2-35.2 24.1-24.4 11.1 11.1 77.2-77.2-77.2-77.2-26.5 26.5 53.1 52.9-24.4 24.4-77.2-77.2 75-75L432.2 255 306.5 380.6z"], + "git": [448, 512, [], "f1d3", "M18.8 221.7c0 25.3 16.2 60 41.5 68.5v1c-18.8 8.3-24 50.6 1 65.8v1C34 367 16 384.3 16 414.2c0 51.5 48.8 65.8 91.5 65.8 52 0 90.7-18.7 90.7-76 0-70.5-101-44.5-101-82.8 0-13.5 7.2-18.7 19.7-21.3 41.5-7.7 67.5-40 67.5-82.2 0-7.3-1.5-14.2-4-21 6.7-1.5 13.2-3.3 19.7-5.5v-50.5c-17.2 6.8-35.7 11.8-54.5 11.8-53.8-31-126.8 1.3-126.8 69.2zm87.7 163.8c17 0 41.2 3 41.2 25 0 21.8-19.5 26.3-37.7 26.3-17.3 0-43.3-2.7-43.3-25.2.1-22.3 22.1-26.1 39.8-26.1zM103.3 256c-22 0-31.3-13-31.3-33.8 0-49.3 61-48.8 61-.5 0 20.3-8 34.3-29.7 34.3zM432 305.5v49c-13.3 7.3-30.5 9.8-45.5 9.8-53.5 0-59.8-42.2-59.8-85.7v-87.7h.5v-1c-7 0-7.3-1.6-24 1v-47.5h24c0-22.3.3-31-1.5-41.2h56.7c-2 13.8-1.5 27.5-1.5 41.2h51v47.5s-19.3-1-51-1V281c0 14.8 3.3 32.8 21.8 32.8 9.8 0 21.3-2.8 29.3-8.3zM286 68.7c0 18.7-14.5 36.2-33.8 36.2-19.8 0-34.5-17.2-34.5-36.2 0-19.3 14.5-36.7 34.5-36.7C272 32 286 50 286 68.7zm-6.2 74.5c-1.8 14.6-1.6 199.8 0 217.8h-55.5c1.6-18.1 1.8-203 0-217.8h55.5z"], + "git-square": [448, 512, [], "f1d2", "M140.1 348.5c12.1 0 29.5 2.1 29.5 17.9 0 15.5-13.9 18.8-27 18.8-12.3 0-30.9-2-30.9-18s15.7-18.7 28.4-18.7zm-24.7-116.6c0 14.8 6.6 24.1 22.3 24.1 15.5 0 21.2-10 21.2-24.5.1-34.4-43.5-34.8-43.5.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-241 93.7c-12.3 4.8-25.5 8.4-38.9 8.4-38.5-22.1-90.7.9-90.7 49.5 0 18 11.6 42.9 29.6 48.9v.7c-13.4 5.9-17.1 36.1.7 47v.7c-19.5 6.4-32.3 18.8-32.3 40.2 0 36.8 34.8 47 65.4 47 37.1 0 64.8-13.4 64.8-54.3 0-50.4-72.1-31.8-72.1-59.1 0-9.6 5.2-13.4 14.1-15.2 29.6-5.5 48.2-28.6 48.2-58.7 0-5.2-1.1-10.2-2.9-15 4.8-1.1 9.5-2.3 14.1-3.9v-36.2zm56.8 1.8h-39.6c1.3 10.6 1.1 142.6 0 155.5h39.6c-1.1-12.8-1.2-145.1 0-155.5zm4.5-53.3c0-13.4-10-26.2-24.1-26.2-14.3 0-24.6 12.5-24.6 26.2 0 13.6 10.5 25.9 24.6 25.9 13.7 0 24.1-12.5 24.1-25.9zm104.3 53.3h-36.4c0-9.8-.4-19.6 1.1-29.5h-40.5c1.3 7.3 1.1 13.6 1.1 29.5h-17.1v33.9c11.9-1.9 12.1-.7 17.1-.7v.7h-.4v62.7c0 31.1 4.5 61.2 42.7 61.2 10.7 0 23-1.8 32.5-7v-35c-5.7 3.9-13.9 5.9-20.9 5.9-13.2 0-15.5-12.9-15.5-23.4v-65.2c22.7 0 36.4.7 36.4.7v-33.8z"], + "github": [496, 512, [], "f09b", "M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"], + "github-alt": [480, 512, [], "f113", "M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1zM480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2zm-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3zm-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1z"], + "github-square": [448, 512, [], "f092", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z"], + "gitkraken": [592, 512, [], "f3a6", "M565.7 118.1c-2.3-6.1-9.3-9.2-15.3-6.6-5.7 2.4-8.5 8.9-6.3 14.6 10.9 29 16.9 60.5 16.9 93.3 0 134.6-100.3 245.7-230.2 262.7V358.4c7.9-1.5 15.5-3.6 23-6.2v104c106.7-25.9 185.9-122.1 185.9-236.8 0-91.8-50.8-171.8-125.8-213.3-5.7-3.2-13-.9-15.9 5-2.7 5.5-.6 12.2 4.7 15.1 67.9 37.6 113.9 110 113.9 193.2 0 93.3-57.9 173.1-139.8 205.4v-92.2c14.2-4.5 24.9-17.7 24.9-33.5 0-13.1-6.8-24.4-17.3-30.5 8.3-79.5 44.5-58.6 44.5-83.9V170c0-38-87.9-161.8-129-164.7-2.5-.2-5-.2-7.6 0C251.1 8.3 163.2 132 163.2 170v14.8c0 25.3 36.3 4.3 44.5 83.9-10.6 6.1-17.3 17.4-17.3 30.5 0 15.8 10.6 29 24.8 33.5v92.2c-81.9-32.2-139.8-112-139.8-205.4 0-83.1 46-155.5 113.9-193.2 5.4-3 7.4-9.6 4.7-15.1-2.9-5.9-10.1-8.2-15.9-5-75 41.5-125.8 121.5-125.8 213.3 0 114.7 79.2 210.8 185.9 236.8v-104c7.6 2.5 15.1 4.6 23 6.2v123.7C131.4 465.2 31 354.1 31 219.5c0-32.8 6-64.3 16.9-93.3 2.2-5.8-.6-12.2-6.3-14.6-6-2.6-13 .4-15.3 6.6C14.5 149.7 8 183.8 8 219.5c0 155.1 122.6 281.6 276.3 287.8V361.4c6.8.4 15 .5 23.4 0v145.8C461.4 501.1 584 374.6 584 219.5c0-35.7-6.5-69.8-18.3-101.4zM365.9 275.5c13 0 23.7 10.5 23.7 23.7 0 13.1-10.6 23.7-23.7 23.7-13 0-23.7-10.5-23.7-23.7 0-13.1 10.6-23.7 23.7-23.7zm-139.8 47.3c-13.2 0-23.7-10.7-23.7-23.7s10.5-23.7 23.7-23.7c13.1 0 23.7 10.6 23.7 23.7 0 13-10.5 23.7-23.7 23.7z"], + "gitlab": [512, 512, [], "f296", "M29.782 199.732L256 493.714 8.074 309.699c-6.856-5.142-9.712-13.996-7.141-21.993l28.849-87.974zm75.405-174.806c-3.142-8.854-15.709-8.854-18.851 0L29.782 199.732h131.961L105.187 24.926zm56.556 174.806L256 493.714l94.257-293.982H161.743zm349.324 87.974l-28.849-87.974L256 493.714l247.926-184.015c6.855-5.142 9.711-13.996 7.141-21.993zm-85.404-262.78c-3.142-8.854-15.709-8.854-18.851 0l-56.555 174.806h131.961L425.663 24.926z"], + "gitter": [384, 512, [], "f426", "M66.4 322.5H16V0h50.4v322.5zM166.9 76.1h-50.4V512h50.4V76.1zm100.6 0h-50.4V512h50.4V76.1zM368 76h-50.4v247H368V76z"], + "glide": [448, 512, [], "f2a5", "M252.8 148.6c0 8.8-1.6 17.7-3.4 26.4-5.8 27.8-11.6 55.8-17.3 83.6-1.4 6.3-8.3 4.9-13.7 4.9-23.8 0-30.5-26-30.5-45.5 0-29.3 11.2-68.1 38.5-83.1 4.3-2.5 9.2-4.2 14.1-4.2 11.4 0 12.3 8.3 12.3 17.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 187c0-5.1-20.8-37.7-25.5-39.5-2.2-.9-7.2-2.3-9.6-2.3-23.1 0-38.7 10.5-58.2 21.5l-.5-.5c4.3-29.4 14.6-57.2 14.6-87.4 0-44.6-23.8-62.7-67.5-62.7-71.7 0-108 70.8-108 123.5 0 54.7 32 85 86.3 85 7.5 0 6.9-.6 6.9 2.3-10.5 80.3-56.5 82.9-56.5 58.9 0-24.4 28-36.5 28.3-38-.2-7.6-29.3-17.2-36.7-17.2-21.1 0-32.7 33-32.7 50.6 0 32.3 20.4 54.7 53.3 54.7 48.2 0 83.4-49.7 94.3-91.7 9.4-37.7 7-39.4 12.3-42.1 20-10.1 35.8-16.8 58.4-16.8 11.1 0 19 2.3 36.7 5.2 1.8.1 4.1-1.7 4.1-3.5z"], + "glide-g": [448, 512, [], "f2a6", "M407.1 211.2c-3.5-1.4-11.6-3.8-15.4-3.8-37.1 0-62.2 16.8-93.5 34.5l-.9-.9c7-47.3 23.5-91.9 23.5-140.4C320.8 29.1 282.6 0 212.4 0 97.3 0 39 113.7 39 198.4 39 286.3 90.3 335 177.6 335c12 0 11-1 11 3.8-16.9 128.9-90.8 133.1-90.8 94.6 0-39.2 45-58.6 45.5-61-.3-12.2-47-27.6-58.9-27.6-33.9.1-52.4 51.2-52.4 79.3C32 476 64.8 512 117.5 512c77.4 0 134-77.8 151.4-145.4 15.1-60.5 11.2-63.3 19.7-67.6 32.2-16.2 57.5-27 93.8-27 17.8 0 30.5 3.7 58.9 8.4 2.9 0 6.7-2.9 6.7-5.8 0-8-33.4-60.5-40.9-63.4zm-175.3-84.4c-9.3 44.7-18.6 89.6-27.8 134.3-2.3 10.2-13.3 7.8-22 7.8-38.3 0-49-41.8-49-73.1 0-47 18-109.3 61.8-133.4 7-4.1 14.8-6.7 22.6-6.7 18.6 0 20 13.3 20 28.7-.1 14.3-2.7 28.5-5.6 42.4z"], + "gofore": [400, 512, [], "f3a7", "M324 319.8h-13.2v34.7c-24.5 23.1-56.3 35.8-89.9 35.8-73.2 0-132.4-60.2-132.4-134.4 0-74.1 59.2-134.4 132.4-134.4 35.3 0 68.6 14 93.6 39.4l62.3-63.3C335 55.3 279.7 32 220.7 32 98 32 0 132.6 0 256c0 122.5 97 224 220.7 224 63.2 0 124.5-26.2 171-82.5-2-27.6-13.4-77.7-67.7-77.7zm-12.1-112.5H205.6v89H324c33.5 0 60.5 15.1 76 41.8v-30.6c0-65.2-40.4-100.2-88.1-100.2z"], + "goodreads": [448, 512, [], "f3a8", "M299.9 191.2c5.1 37.3-4.7 79-35.9 100.7-22.3 15.5-52.8 14.1-70.8 5.7-37.1-17.3-49.5-58.6-46.8-97.2 4.3-60.9 40.9-87.9 75.3-87.5 46.9-.2 71.8 31.8 78.2 78.3zM448 88v336c0 30.9-25.1 56-56 56H56c-30.9 0-56-25.1-56-56V88c0-30.9 25.1-56 56-56h336c30.9 0 56 25.1 56 56zM330 313.2s-.1-34-.1-217.3h-29v40.3c-.8.3-1.2-.5-1.6-1.2-9.6-20.7-35.9-46.3-76-46-51.9.4-87.2 31.2-100.6 77.8-4.3 14.9-5.8 30.1-5.5 45.6 1.7 77.9 45.1 117.8 112.4 115.2 28.9-1.1 54.5-17 69-45.2.5-1 1.1-1.9 1.7-2.9.2.1.4.1.6.2.3 3.8.2 30.7.1 34.5-.2 14.8-2 29.5-7.2 43.5-7.8 21-22.3 34.7-44.5 39.5-17.8 3.9-35.6 3.8-53.2-1.2-21.5-6.1-36.5-19-41.1-41.8-.3-1.6-1.3-1.3-2.3-1.3h-26.8c.8 10.6 3.2 20.3 8.5 29.2 24.2 40.5 82.7 48.5 128.2 37.4 49.9-12.3 67.3-54.9 67.4-106.3z"], + "goodreads-g": [384, 512, [], "f3a9", "M42.6 403.3h2.8c12.7 0 25.5 0 38.2.1 1.6 0 3.1-.4 3.6 2.1 7.1 34.9 30 54.6 62.9 63.9 26.9 7.6 54.1 7.8 81.3 1.8 33.8-7.4 56-28.3 68-60.4 8-21.5 10.7-43.8 11-66.5.1-5.8.3-47-.2-52.8l-.9-.3c-.8 1.5-1.7 2.9-2.5 4.4-22.1 43.1-61.3 67.4-105.4 69.1-103 4-169.4-57-172-176.2-.5-23.7 1.8-46.9 8.3-69.7C58.3 47.7 112.3.6 191.6 0c61.3-.4 101.5 38.7 116.2 70.3.5 1.1 1.3 2.3 2.4 1.9V10.6h44.3c0 280.3.1 332.2.1 332.2-.1 78.5-26.7 143.7-103 162.2-69.5 16.9-159 4.8-196-57.2-8-13.5-11.8-28.3-13-44.5zM188.9 36.5c-52.5-.5-108.5 40.7-115 133.8-4.1 59 14.8 122.2 71.5 148.6 27.6 12.9 74.3 15 108.3-8.7 47.6-33.2 62.7-97 54.8-154-9.7-71.1-47.8-120-119.6-119.7z"], + "google": [488, 512, [], "f1a0", "M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z"], + "google-drive": [512, 512, [], "f3aa", "M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z"], + "google-play": [512, 512, [], "f3ab", "M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z"], + "google-plus": [496, 512, [], "f2b3", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm-70.7 372c-68.8 0-124-55.5-124-124s55.2-124 124-124c31.3 0 60.1 11 83 32.3l-33.6 32.6c-13.2-12.9-31.3-19.1-49.4-19.1-42.9 0-77.2 35.5-77.2 78.1s34.2 78.1 77.2 78.1c32.6 0 64.9-19.1 70.1-53.3h-70.1v-42.6h116.9c1.3 6.8 1.9 13.6 1.9 20.7 0 70.8-47.5 121.2-118.8 121.2zm230.2-106.2v35.5H372v-35.5h-35.5v-35.5H372v-35.5h35.5v35.5h35.2v35.5h-35.2z"], + "google-plus-g": [640, 512, [], "f0d5", "M386.061 228.496c1.834 9.692 3.143 19.384 3.143 31.956C389.204 370.205 315.599 448 204.8 448c-106.084 0-192-85.915-192-192s85.916-192 192-192c51.864 0 95.083 18.859 128.611 50.292l-52.126 50.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484 0-118.92 54.221-118.92 121.277 0 67.056 53.436 121.277 118.92 121.277 75.961 0 104.513-54.745 108.965-82.773H204.8v-66.009h181.261zm185.406 6.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001h-55.733z"], + "google-plus-square": [448, 512, [], "f0d4", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM164 356c-55.3 0-100-44.7-100-100s44.7-100 100-100c27 0 49.5 9.8 67 26.2l-27.1 26.1c-7.4-7.1-20.3-15.4-39.8-15.4-34.1 0-61.9 28.2-61.9 63.2 0 34.9 27.8 63.2 61.9 63.2 39.6 0 54.4-28.5 56.8-43.1H164v-34.4h94.4c1 5 1.6 10.1 1.6 16.6 0 57.1-38.3 97.6-96 97.6zm220-81.8h-29v29h-29.2v-29h-29V245h29v-29H355v29h29v29.2z"], + "google-wallet": [448, 512, [], "f1ee", "M156.8 126.8c37.6 60.6 64.2 113.1 84.3 162.5-8.3 33.8-18.8 66.5-31.3 98.3-13.2-52.3-26.5-101.3-56-148.5 6.5-36.4 2.3-73.6 3-112.3zM109.3 200H16.1c-6.5 0-10.5 7.5-6.5 12.7C51.8 267 81.3 330.5 101.3 400h103.5c-16.2-69.7-38.7-133.7-82.5-193.5-3-4-8-6.5-13-6.5zm47.8-88c68.5 108 130 234.5 138.2 368H409c-12-138-68.4-265-143.2-368H157.1zm251.8-68.5c-1.8-6.8-8.2-11.5-15.2-11.5h-88.3c-5.3 0-9 5-7.8 10.3 13.2 46.5 22.3 95.5 26.5 146 48.2 86.2 79.7 178.3 90.6 270.8 15.8-60.5 25.3-133.5 25.3-203 0-73.6-12.1-145.1-31.1-212.6z"], + "gratipay": [496, 512, [], "f184", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm114.6 226.4l-113 152.7-112.7-152.7c-8.7-11.9-19.1-50.4 13.6-72 28.1-18.1 54.6-4.2 68.5 11.9 15.9 17.9 46.6 16.9 61.7 0 13.9-16.1 40.4-30 68.1-11.9 32.9 21.6 22.6 60 13.8 72z"], + "grav": [512, 512, [], "f2d6", "M301.1 212c4.4 4.4 4.4 11.9 0 16.3l-9.7 9.7c-4.4 4.7-11.9 4.7-16.6 0l-10.5-10.5c-4.4-4.7-4.4-11.9 0-16.6l9.7-9.7c4.4-4.4 11.9-4.4 16.6 0l10.5 10.8zm-30.2-19.7c3-3 3-7.8 0-10.5-2.8-3-7.5-3-10.5 0-2.8 2.8-2.8 7.5 0 10.5 3.1 2.8 7.8 2.8 10.5 0zm-26 5.3c-3 2.8-3 7.5 0 10.2 2.8 3 7.5 3 10.5 0 2.8-2.8 2.8-7.5 0-10.2-3-3-7.7-3-10.5 0zm72.5-13.3c-19.9-14.4-33.8-43.2-11.9-68.1 21.6-24.9 40.7-17.2 59.8.8 11.9 11.3 29.3 24.9 17.2 48.2-12.5 23.5-45.1 33.2-65.1 19.1zm47.7-44.5c-8.9-10-23.3 6.9-15.5 16.1 7.4 9 32.1 2.4 15.5-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-66.2 42.6c2.5-16.1-20.2-16.6-25.2-25.7-13.6-24.1-27.7-36.8-54.5-30.4 11.6-8 23.5-6.1 23.5-6.1.3-6.4 0-13-9.4-24.9 3.9-12.5.3-22.4.3-22.4 15.5-8.6 26.8-24.4 29.1-43.2 3.6-31-18.8-59.2-49.8-62.8-22.1-2.5-43.7 7.7-54.3 25.7-23.2 40.1 1.4 70.9 22.4 81.4-14.4-1.4-34.3-11.9-40.1-34.3-6.6-25.7 2.8-49.8 8.9-61.4 0 0-4.4-5.8-8-8.9 0 0-13.8 0-24.6 5.3 11.9-15.2 25.2-14.4 25.2-14.4 0-6.4-.6-14.9-3.6-21.6-5.4-11-23.8-12.9-31.7 2.8.1-.2.3-.4.4-.5-5 11.9-1.1 55.9 16.9 87.2-2.5 1.4-9.1 6.1-13 10-21.6 9.7-56.2 60.3-56.2 60.3-28.2 10.8-77.2 50.9-70.6 79.7.3 3 1.4 5.5 3 7.5-2.8 2.2-5.5 5-8.3 8.3-11.9 13.8-5.3 35.2 17.7 24.4 15.8-7.2 29.6-20.2 36.3-30.4 0 0-5.5-5-16.3-4.4 27.7-6.6 34.3-9.4 46.2-9.1 8 3.9 8-34.3 8-34.3 0-14.7-2.2-31-11.1-41.5 12.5 12.2 29.1 32.7 28 60.6-.8 18.3-15.2 23-15.2 23-9.1 16.6-43.2 65.9-30.4 106 0 0-9.7-14.9-10.2-22.1-17.4 19.4-46.5 52.3-24.6 64.5 26.6 14.7 108.8-88.6 126.2-142.3 34.6-20.8 55.4-47.3 63.9-65 22 43.5 95.3 94.5 101.1 59z"], + "gripfire": [384, 512, [], "f3ac", "M171.8 503.8c0-5.3 4.8-12.2 4.8-22.3 0-15.2-13-39.9-78.1-86.6C64.2 365.8 32 336.4 32 286.6 32 171.9 179.1 110.1 179.1 18c0-3.3-.2-6.7-.6-10 5.1 2.4 39.1 43.3 39.1 90.4 0 80.5-105.1 129.2-105.1 203 0 26.9 16.6 47.2 32.6 69.5 22.5 30.2 44.2 56.9 44.2 86.5-.1 14.5-4.4 29.7-17.5 46.4zm146-241.4c1.5 8.4 2.2 16.6 2.2 24.6 0 51.8-29.4 97.5-67.3 136.8-1 1-2.2 2.4-3.2 2.4-3.6 0-35.5-41.6-35.5-53.2 0 0 41.8-55.7 41.8-96.9 0-10.8-2.7-21.7-9.1-33.4-1.5 32.3-55.7 87.7-58.1 87.7-2.7 0-17.9-22-17.9-42.1 0-5.3 1-10.7 3.2-15.8 2.4-5.5 56.6-72 56.6-116.7 0-6.2-1-12-3.4-17.1l-4-7.2c16.7 6.5 82.6 64.1 94.7 130.9"], + "grunt": [384, 512, [], "f3ad", "M61.3 189.3c-1.1 10 5.2 19.1 5.2 19.1.7-7.5 2.2-12.8 4-16.6.4 10.3 3.2 23.5 12.8 34.1 6.9 7.6 35.6 23.3 54.9 6.1 1 2.4 2.1 5.3 3 8.5 2.9 10.3-2.7 25.3-2.7 25.3s15.1-17.1 13.9-32.5c10.8-.5 21.4-8.4 21.1-19.5 0 0-18.9 10.4-35.5-8.8-9.7-11.2-40.9-42-83.1-31.8 4.3 1 8.9 2.4 13.5 4.1h-.1c-4.2 2-6.5 7.1-7 12zm28.3-1.8c19.5 11 37.4 25.7 44.9 37-5.7 3.3-21.7 10.4-38-1.7-10.3-7.6-9.8-26.2-6.9-35.3zm79.2 233.7c2.2 2.3 1.5 5.3.9 6.8-1.1 2.7-5.5 11.6-13 19.8-2.7 2.9-6.6 4.6-11 4.6-4.3 0-8.7-1.6-11.8-4.3-2.3-2.1-10.2-9.5-13.7-18.6-1.3-3.4-1-6.1.9-8.1 1.3-1.3 4-2.9 9.5-2.9H160c4.1 0 7 .9 8.8 2.7zm62.9-187.9c-1.2 15.5 13.9 32.5 13.9 32.5s-5.6-15-2.7-25.3c.9-3.2 2-6 3-8.5 19.3 17.3 48 1.5 54.8-6.1 9.6-10.6 12.3-23.8 12.8-34.1 1.8 3.8 3.4 9.1 4 16.6 0 0 6.4-9.1 5.2-19.1-.6-5-2.9-10-7-11.8h-.1c4.6-1.8 9.2-3.2 13.5-4.1-42.3-10.2-73.4 20.6-83.1 31.8-16.7 19.2-35.5 8.8-35.5 8.8-.2 10.9 10.4 18.9 21.2 19.3zm17.8-8.8c7.5-11.4 25.4-26 44.9-37 3 9.1 3.4 27.7-7 35.4-16.3 12.1-32.2 5-37.9 1.6-.1.1 0 0 0 0zM263 421.4c1.9 1.9 2.2 4.6.9 7.9-3.5 8.9-11.4 16.1-13.7 18.1-3.1 2.6-7.4 4.2-11.8 4.2s-8.3-1.6-11-4.5c-7.5-8-12-16.7-13-19.3-.6-1.5-1.3-4.4.9-6.7 1.7-1.8 4.7-2.7 8.9-2.7h29.4c5.4.1 8.1 1.7 9.4 3zm-98.3-251.5c9.9 6 18.8 8.1 27.3 8.3 8.5-.2 17.4-2.3 27.3-8.3 0 0-14.5 17.7-27.2 17.8h-.2c-12.7-.2-27.2-17.8-27.2-17.8zm184.5 147.4c-2.4 17.9-13 33.8-24.6 43.7-3.1-22.7-3.7-55.5-3.7-62.4 0-14.7 9.5-24.5 12.2-26.1 2.5-1.5 5.4-3 8.3-4.6 18-9.6 40.4-21.6 40.4-43.7 0-16.2-9.3-23.2-15.4-27.8-.8-.6-1.5-1.1-2.2-1.7-2.1-1.7-3.7-3-4.3-4.4-4.4-9.8-3.6-34.2-1.7-37.6.6-.6 16.7-20.9 11.8-39.2-2-7.4-6.9-13.3-14.1-17-5.3-2.7-11.9-4.2-19.5-4.5-.1-2-.5-3.9-.9-5.9-.6-2.6-1.1-5.3-.9-8.1.4-4.7.8-9 2.2-11.3 8.4-13.3 28.8-17.6 29-17.6l12.3-2.4-8.1-9.5c-.1-.2-17.3-17.5-46.3-17.5-7.9 0-16 1.3-24.1 3.9-24.2 7.8-42.9 30.5-49.4 39.3-3.1-1-6.3-1.9-9.6-2.7-4.2-15.8 9-38.5 9-38.5s-13.6-3-33.7 15.2c-2.6-6.5-8.1-20.5-1.8-37.2C184.6 10.1 177.2 26 175 40.4c-7.6-5.4-6.7-23.1-7.2-27.6-7.5.9-29.2 21.9-28.2 48.3-2 .5-3.9 1.1-5.9 1.7-6.5-8.8-25.1-31.5-49.4-39.3-7.9-2.2-16-3.5-23.9-3.5-29 0-46.1 17.3-46.3 17.5L6 46.9l12.3 2.4c.2 0 20.6 4.3 29 17.6 1.4 2.2 1.8 6.6 2.2 11.3.2 2.8-.4 5.5-.9 8.1-.4 1.9-.8 3.9-.9 5.9-7.7.3-14.2 1.8-19.5 4.5-7.2 3.7-12.1 9.6-14.1 17-5 18.2 11.2 38.5 11.8 39.2 1.9 3.4 2.7 27.8-1.7 37.6-.6 1.4-2.2 2.7-4.3 4.4-.7.5-1.4 1.1-2.2 1.7-6.1 4.6-15.4 11.7-15.4 27.8 0 22.1 22.4 34.1 40.4 43.7 3 1.6 5.8 3.1 8.3 4.6 2.7 1.6 12.2 11.4 12.2 26.1 0 6.9-.6 39.7-3.7 62.4-11.6-9.9-22.2-25.9-24.6-43.8 0 0-29.2 22.6-20.6 70.8 5.2 29.5 23.2 46.1 47 54.7 8.8 19.1 29.4 45.7 67.3 49.6C143 504.3 163 512 192.2 512h.2c29.1 0 49.1-7.7 63.6-19.5 37.9-3.9 58.5-30.5 67.3-49.6 23.8-8.7 41.7-25.2 47-54.7 8.2-48.4-21.1-70.9-21.1-70.9zM305.7 37.7c5.6-1.8 11.6-2.7 17.7-2.7 11 0 19.9 3 24.7 5-3.1 1.4-6.4 3.2-9.7 5.3-2.4-.4-5.6-.8-9.2-.8-10.5 0-20.5 3.1-28.7 8.9-12.3 8.7-18 16.9-20.7 22.4-2.2-1.3-4.5-2.5-7.1-3.7-1.6-.8-3.1-1.5-4.7-2.2 6.1-9.1 19.9-26.5 37.7-32.2zm21 18.2c-.8 1-1.6 2.1-2.3 3.2-3.3 5.2-3.9 11.6-4.4 17.8-.5 6.4-1.1 12.5-4.4 17-4.2.8-8.1 1.7-11.5 2.7-2.3-3.1-5.6-7-10.5-11.2 1.4-4.8 5.5-16.1 13.5-22.5 5.6-4.3 12.2-6.7 19.6-7zM45.6 45.3c-3.3-2.2-6.6-4-9.7-5.3 4.8-2 13.7-5 24.7-5 6.1 0 12 .9 17.7 2.7 17.8 5.8 31.6 23.2 37.7 32.1-1.6.7-3.2 1.4-4.8 2.2-2.5 1.2-4.9 2.5-7.1 3.7-2.6-5.4-8.3-13.7-20.7-22.4-8.3-5.8-18.2-8.9-28.8-8.9-3.4.1-6.6.5-9 .9zm44.7 40.1c-4.9 4.2-8.3 8-10.5 11.2-3.4-.9-7.3-1.9-11.5-2.7C65 89.5 64.5 83.4 64 77c-.5-6.2-1.1-12.6-4.4-17.8-.7-1.1-1.5-2.2-2.3-3.2 7.4.3 14 2.6 19.5 7 8 6.3 12.1 17.6 13.5 22.4zM58.1 259.9c-2.7-1.6-5.6-3.1-8.4-4.6-14.9-8-30.2-16.3-30.2-30.5 0-11.1 4.3-14.6 8.9-18.2l.5-.4c.7-.6 1.4-1.2 2.2-1.8-.9 7.2-1.9 13.3-2.7 14.9 0 0 12.1-15 15.7-44.3 1.4-11.5-1.1-34.3-5.1-43 .2 4.9 0 9.8-.3 14.4-.4-.8-.8-1.6-1.3-2.2-3.2-4-11.8-17.5-9.4-26.6.9-3.5 3.1-6 6.7-7.8 3.8-1.9 8.8-2.9 15.1-2.9 12.3 0 25.9 3.7 32.9 6 25.1 8 55.4 30.9 64.1 37.7.2.2.4.3.4.3l5.6 3.9-3.5-5.8c-.2-.3-19.1-31.4-53.2-46.5 2-2.9 7.4-8.1 21.6-15.1 21.4-10.5 46.5-15.8 74.3-15.8 27.9 0 52.9 5.3 74.3 15.8 14.2 6.9 19.6 12.2 21.6 15.1-34 15.1-52.9 46.2-53.1 46.5l-3.5 5.8 5.6-3.9s.2-.1.4-.3c8.7-6.8 39-29.8 64.1-37.7 7-2.2 20.6-6 32.9-6 6.3 0 11.3 1 15.1 2.9 3.5 1.8 5.7 4.4 6.7 7.8 2.5 9.1-6.1 22.6-9.4 26.6-.5.6-.9 1.3-1.3 2.2-.3-4.6-.5-9.5-.3-14.4-4 8.8-6.5 31.5-5.1 43 3.6 29.3 15.7 44.3 15.7 44.3-.8-1.6-1.8-7.7-2.7-14.9.7.6 1.5 1.2 2.2 1.8l.5.4c4.6 3.7 8.9 7.1 8.9 18.2 0 14.2-15.4 22.5-30.2 30.5-2.9 1.5-5.7 3.1-8.4 4.6-8.7 5-18 16.7-19.1 34.2-.9 14.6.9 49.9 3.4 75.9-12.4 4.8-26.7 6.4-39.7 6.8-2-4.1-3.9-8.5-5.5-13.1-.7-2-19.6-51.1-26.4-62.2 5.5 39 17.5 73.7 23.5 89.6-3.5-.5-7.3-.7-11.7-.7h-117c-4.4 0-8.3.3-11.7.7 6-15.9 18.1-50.6 23.5-89.6-6.8 11.2-25.7 60.3-26.4 62.2-1.6 4.6-3.5 9-5.5 13.1-13-.4-27.2-2-39.7-6.8 2.5-26 4.3-61.2 3.4-75.9-.9-17.4-10.3-29.2-19-34.2zM34.8 404.6c-12.1-20-8.7-54.1-3.7-59.1 10.9 34.4 47.2 44.3 74.4 45.4-2.7 4.2-5.2 7.6-7 10l-1.4 1.4c-7.2 7.8-8.6 18.5-4.1 31.8-22.7-.1-46.3-9.8-58.2-29.5zm45.7 43.5c6 1.1 12.2 1.9 18.6 2.4 3.5 8 7.4 15.9 12.3 23.1-14.4-5.9-24.4-16-30.9-25.5zM192 498.2c-60.6-.1-78.3-45.8-84.9-64.7-3.7-10.5-3.4-18.2.9-23.1 2.9-3.3 9.5-7.2 24.6-7.2h118.8c15.1 0 21.8 3.9 24.6 7.2 4.2 4.8 4.5 12.6.9 23.1-6.6 18.8-24.3 64.6-84.9 64.7zm80.6-24.6c4.9-7.2 8.8-15.1 12.3-23.1 6.4-.5 12.6-1.3 18.6-2.4-6.5 9.5-16.5 19.6-30.9 25.5zm76.6-69c-12 19.7-35.6 29.3-58.1 29.7 4.5-13.3 3.1-24.1-4.1-31.8-.4-.5-.9-1-1.4-1.5-1.8-2.4-4.3-5.8-7-10 27.2-1.2 63.5-11 74.4-45.4 5 5 8.4 39.1-3.8 59z"], + "gulp": [256, 512, [], "f3ae", "M209.8 391.1l-14.1 24.6-4.6 80.2c0 8.9-28.3 16.1-63.1 16.1s-63.1-7.2-63.1-16.1l-5.8-79.4-14.9-25.4c41.2 17.3 126 16.7 165.6 0zm-196-253.3l13.6 125.5c5.9-20 20.8-47 40-55.2 6.3-2.7 12.7-2.7 18.7.9 5.2 3 9.6 9.3 10.1 11.8 1.2 6.5-2 9.1-4.5 9.1-3 0-5.3-4.6-6.8-7.3-4.1-7.3-10.3-7.6-16.9-2.8-6.9 5-12.9 13.4-17.1 20.7-5.1 8.8-9.4 18.5-12 28.2-1.5 5.6-2.9 14.6-.6 19.9 1 2.2 2.5 3.6 4.9 3.6 5 0 12.3-6.6 15.8-10.1 4.5-4.5 10.3-11.5 12.5-16l5.2-15.5c2.6-6.8 9.9-5.6 9.9 0 0 10.2-3.7 13.6-10 34.7-5.8 19.5-7.6 25.8-7.6 25.8-.7 2.8-3.4 7.5-6.3 7.5-1.2 0-2.1-.4-2.6-1.2-1-1.4-.9-5.3-.8-6.3.2-3.2 6.3-22.2 7.3-25.2-2 2.2-4.1 4.4-6.4 6.6-5.4 5.1-14.1 11.8-21.5 11.8-3.4 0-5.6-.9-7.7-2.4l7.6 79.6c2 5 39.2 17.1 88.2 17.1 49.1 0 86.3-12.2 88.2-17.1l10.9-94.6c-5.7 5.2-12.3 11.6-19.6 14.8-5.4 2.3-17.4 3.8-17.4-5.7 0-5.2 9.1-14.8 14.4-21.5 1.4-1.7 4.7-5.9 4.7-8.1 0-2.9-6-2.2-11.7 2.5-3.2 2.7-6.2 6.3-8.7 9.7-4.3 6-6.6 11.2-8.5 15.5-6.2 14.2-4.1 8.6-9.1 22-5 13.3-4.2 11.8-5.2 14-.9 1.9-2.2 3.5-4 4.5-1.9 1-4.5.9-6.1-.3-.9-.6-1.3-1.9-1.3-3.7 0-.9.1-1.8.3-2.7 1.5-6.1 7.8-18.1 15-34.3 1.6-3.7 1-2.6.8-2.3-6.2 6-10.9 8.9-14.4 10.5-5.8 2.6-13 2.6-14.5-4.1-.1-.4-.1-.8-.2-1.2-11.8 9.2-24.3 11.7-20-8.1-4.6 8.2-12.6 14.9-22.4 14.9-4.1 0-7.1-1.4-8.6-5.1-2.3-5.5 1.3-14.9 4.6-23.8 1.7-4.5 4-9.9 7.1-16.2 1.6-3.4 4.2-5.4 7.6-4.5.6.2 1.1.4 1.6.7 2.6 1.8 1.6 4.5.3 7.2-3.8 7.5-7.1 13-9.3 20.8-.9 3.3-2 9 1.5 9 2.4 0 4.7-.8 6.9-2.4 4.6-3.4 8.3-8.5 11.1-13.5 2-3.6 4.4-8.3 5.6-12.3.5-1.7 1.1-3.3 1.8-4.8 1.1-2.5 2.6-5.1 5.2-5.1 1.3 0 2.4.5 3.2 1.5 1.7 2.2 1.3 4.5.4 6.9-2 5.6-4.7 10.6-6.9 16.7-1.3 3.5-2.7 8-2.7 11.7 0 3.4 3.7 2.6 6.8 1.2 2.4-1.1 4.8-2.8 6.8-4.5 1.2-4.9.9-3.8 26.4-68.2 1.3-3.3 3.7-4.7 6.1-4.7 1.2 0 2.2.4 3.2 1.1 1.7 1.3 1.7 4.1 1 6.2-.7 1.9-.6 1.3-4.5 10.5-5.2 12.1-8.6 20.8-13.2 31.9-1.9 4.6-7.7 18.9-8.7 22.3-.6 2.2-1.3 5.8 1 5.8 5.4 0 19.3-13.1 23.1-17 .2-.3.5-.4.9-.6.6-1.9 1.2-3.7 1.7-5.5 1.4-3.8 2.7-8.2 5.3-11.3.8-1 1.7-1.6 2.7-1.6 2.8 0 4.2 1.2 4.2 4 0 1.1-.7 5.1-1.1 6.2 1.4-1.5 2.9-3 4.5-4.5 15-13.9 25.7-6.8 25.7.2 0 7.4-8.9 17.7-13.8 23.4-1.6 1.9-4.9 5.4-5 6.4 0 1.3.9 1.8 2.2 1.8 2 0 6.4-3.5 8-4.7 5-3.9 11.8-9.9 16.6-14.1l14.8-136.8c-30.5 17.1-197.6 17.2-228.3.2zm229.7-8.5c0 21-231.2 21-231.2 0 0-8.8 51.8-15.9 115.6-15.9 9 0 17.8.1 26.3.4l12.6-48.7L228.1.6c1.4-1.4 5.8-.2 9.9 3.5s6.6 7.9 5.3 9.3l-.1.1L185.9 74l-10 40.7c39.9 2.6 67.6 8.1 67.6 14.6zm-69.4 4.6c0-.8-.9-1.5-2.5-2.1l-.2.8c0 1.3-5 2.4-11.1 2.4s-11.1-1.1-11.1-2.4c0-.1 0-.2.1-.3l.2-.7c-1.8.6-3 1.4-3 2.3 0 2.1 6.2 3.7 13.7 3.7 7.7.1 13.9-1.6 13.9-3.7z"], + "hacker-news": [448, 512, [], "f1d4", "M0 32v448h448V32H0zm21.2 197.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z"], + "hacker-news-square": [448, 512, [], "f3af", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM21.2 229.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z"], + "hips": [640, 512, [], "f452", "M0 80.2c0-1.8.9-2.7 2.7-2.7h40.9c1.9 0 2.8.9 2.8 2.7v81.2c15.2-7.7 31.7-11.5 49.8-11.4 24 .1 44.2 6.2 60.3 18 18.7 13.5 28 31.9 28 55.3v136.1c0 1.9-.9 2.8-2.7 2.8h-27.3c-9.1 0-16.4-7.3-16.4-16.3V223.3c0-.9 2.7-27-45.8-27-48.6 0-45.8 26.2-45.8 27v136.1c0 1.9-.9 2.8-2.8 2.8h-41c-1.8 0-2.7-.9-2.7-2.8V80.2zm497.7 221.5c13.7 10.2 34.1 19.1 58.4 19.1 23.3 0 32.8-4.5 36.5-13.6 3-7.9-.6-16.1-12.2-21.2l-53.6-23.5c-21.4-9.4-33.8-24-37.2-43.6-5.7-33.7 22.2-53.3 22.7-53.7 13.2-9.6 32-15.4 58.5-15.4 19 0 37.4 3.3 55.1 9.9 1.3.5 1.9 1.3 1.9 2.6V207c0 2.1-2.3 3.4-4 2.4-39.7-20.7-76.6-12.3-84-6.8-6.6 4.9-6 12.5 2.6 16.1L600 244c16.5 7.1 28.1 18.4 34.9 34.1 5.5 12.6 6.6 25.6 3.1 39.1-9.6 36.9-44.9 45.5-45.6 45.8-10.5 3.1-23.6 4.3-36.3 4.3-16.6 0-32.6-2.7-48.2-8.2-9.7-3.4-14.6-10.3-14.6-20.7V304c0-2.1 2.3-3.7 4.4-2.3zM376.2 149.8c-31.7 0-104.2 20.1-104.2 103.5v183.5c0 .8.6 2.7 2.7 2.7h40.9c1.9 0 2.8-.9 2.8-2.7V348c16.5 12.7 35.8 19.1 57.7 19.1 60.5 0 108.7-48.5 108.7-108.7.1-60.3-48.2-108.6-108.6-108.6zm0 170.9c-17.2 0-31.9-6.1-44-18.2-12.2-12.2-18.2-26.8-18.2-44 0-34.5 27.6-62.2 62.2-62.2 34.5 0 62.2 27.6 62.2 62.2.1 34.3-27.3 62.2-62.2 62.2zm-124.6 38.7c0 1.9-.9 2.8-2.8 2.8h-40.9c-1.6 0-2.7-1.4-2.7-2.8V157.6c0-1.4 1.1-2.8 2.7-2.8h40.9c1.9 0 2.8.9 2.8 2.8v201.8M228.3 72.5c15.9 0 28.9 12.7 28.9 28.9 0 15.8-12.7 28.9-28.9 28.9s-28.9-13.3-28.9-28.9c.1-16 13-28.9 28.9-28.9"], + "hire-a-helper": [512, 512, [], "f3b0", "M443.1 0H71.9C67.9 37.3 37.4 67.8 0 71.7v371.5c37.4 4.9 66 32.4 71.9 68.8h372.2c3-36.4 32.5-65.8 67.9-69.8V71.7c-36.4-5.9-65-35.3-68.9-71.7zm-37 404.9c-36.3 0-18.8-2-55.1-2-35.8 0-21 2-56.1 2-5.9 0-4.9-8.2 0-9.8 22.8-7.6 22.9-10.2 24.6-12.8 10.4-15.6 5.9-83 5.9-113 0-5.3-6.4-12.8-13.8-12.8H200.4c-7.4 0-13.8 7.5-13.8 12.8 0 30-4.5 97.4 5.9 113 1.7 2.5 1.8 5.2 24.6 12.8 4.9 1.6 6 9.8 0 9.8-35.1 0-20.3-2-56.1-2-36.3 0-18.8 2-55.1 2-7.9 0-5.8-10.8 0-10.8 10.2-3.4 13.5-3.5 21.7-13.8 7.7-12.9 7.9-44.4 7.9-127.8V151.3c0-22.2-12.2-28.3-28.6-32.4-8.8-2.2-4-11.8 1-11.8 36.5 0 20.6 2 57.1 2 32.7 0 16.5-2 49.2-2 3.3 0 8.5 8.3 1 10.8-4.9 1.6-27.6 3.7-27.6 39.3 0 45.6-.2 55.8 1 68.8 0 1.3 2.3 12.8 12.8 12.8h109.2c10.5 0 12.8-11.5 12.8-12.8 1.2-13 1-23.2 1-68.8 0-35.6-22.7-37.7-27.6-39.3-7.5-2.5-2.3-10.8 1-10.8 32.7 0 16.5 2 49.2 2 36.5 0 20.6-2 57.1-2 4.9 0 9.9 9.6 1 11.8-16.4 4.1-28.6 10.3-28.6 32.4v101.2c0 83.4.1 114.9 7.9 127.8 8.2 10.2 11.4 10.4 21.7 13.8 5.8 0 7.8 10.8 0 10.8z"], + "hooli": [640, 512, [], "f427", "M508.4 352h57.9V156.7L508.4 184v168zm73.7-110.5V352H640V241.5h-57.9zm-250.7-8.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.2-1.1-50.4 17.1c-1.9 1.9-3.7 3.9-5.3 6-38.2-29.6-72.5-46.5-102.1-61.1v-20.7l-22.5 10.6c-54.4-22.1-89-18.2-97.3.1 0 0-24.9 32.8 61.9 110.9v-31c-48.8-54.6-39-76.1-35.3-79.2 13.5-11.4 37.5-8 64.4 2.1L65.2 184v63.3c13.1 14.7 30.5 31.5 53.5 50.4l4.5 3.6v-29.8c0-6.9 1.7-18.2 10.8-18.2s10.6 6.9 10.6 15V317c18 12.2 37.3 22.1 57.7 29.6v-93.9c0-18.7-13.4-37.4-40.6-37.4-15.8-.1-30.5 8.2-38.5 21.9v-54.3c41.9 20.9 83.9 46.5 99.9 58.3-10.2 14.6-9.3 28.1-9.3 43.7 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.7-33.8 16.7-52.5 0-18.5 1.5-34.2-16.7-52.3zm-39.7 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm185.7-71.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.3-1.1-50.4 17.1c-18.2 18.2-16.8 33.9-16.8 52.6 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.8-33.8 16.8-52.5-.1-18.8 1.3-34.5-16.8-52.6zm-39.8 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm173.5-73c15.9 0 28.9-12.9 28.9-28.9s-12.9-24.5-28.9-24.5c-15.9 0-28.9 8.6-28.9 24.5s12.9 28.9 28.9 28.9zM144.5 352l38.3.8c-13.2-4.6-26-10.2-38.3-16.8v16zm-21.4 0v-28.6c-6.5-4.2-13-8.7-19.4-13.6-14.8-11.2-27.5-21.7-38.5-31.5V352h57.9zm59.7.8c36.5 12.5 69.9 14.2 94.7 7.2-19.9.2-45.8-2.6-75.3-13.3v5.3l-19.4.8z"], + "hornbill": [509, 512, [], "f592", "M75.37 370.3c2.14 15.83-5.77 31.98-20.94 39.29-18.85 9.1-41.55 1.17-50.68-17.68-9.08-18.83-1.13-41.58 17.7-50.65 7.05-3.4 14.63-4.42 21.85-3.38-78.28-111.35 52-190.53 52-190.53-5.86 43.04-8.24 91.16-8.24 91.16-67.31 41.45.92 64.06 39.81 72.87 19.77 53.62 71.18 91.94 131.66 91.94 1.92 0 3.77-.21 5.67-.28l.11 18.86c-99.22 1.39-158.7-29.14-188.94-51.6zM183.38 42.6c.89-7-.1-14.33-3.39-21.15-9.1-18.84-31.82-26.78-50.66-17.69-18.86 9.1-26.8 31.83-17.69 50.68 6.98 14.47 22.02 22.42 37.18 21.23-22.55 29.91-53.83 89.57-52.42 190.03l21.84-.15c-.02-.9-.14-1.77-.14-2.68 0-58.95 36.37-109.33 87.85-130.16 8.01-37.75 30.74-114.3 73.84-44.29 0 0 48.14 2.38 91.18 8.24 0-.01-77.84-128.03-187.59-54.06zm304.18 134.17c18.84-9.09 26.81-31.81 17.7-50.65-9.1-18.85-31.83-26.77-50.67-17.69-15.27 7.37-23.19 23.69-20.87 39.64-31.71-21.94-89.84-49.05-183.45-47.74l.14 22.5c2.7-.15 5.39-.41 8.14-.41 59.3 0 109.9 36.8 130.49 88.76 39.1 9.02 105.06 31.58 38.46 72.54 0 0-2.34 48.13-8.21 91.16 0 0 133.45-81.16 48.96-194.61 6.43.5 13.07-.49 19.31-3.5zM373.05 436.24c21.43-32.46 46.42-89.69 45.14-179.66l-19.52.14c.08 2.06.3 4.07.3 6.15 0 60.27-38.05 111.55-91.39 131.45-8.85 38.95-31.44 106.66-72.77 39.49 0 0-48.12-2.34-91.19-8.22 0 0 79.92 131.34 191.9 50.97.31 4.72 1.45 9.45 3.64 13.97 9.06 18.89 31.8 26.78 50.64 17.71 18.86-9.1 26.79-31.83 17.7-50.65-6.56-13.62-20.26-21.43-34.45-21.35z"], + "hotjar": [448, 512, [], "f3b1", "M414.9 161.5C340.2 29 121.1 0 121.1 0S222.2 110.4 93 197.7C11.3 252.8-21 324.4 14 402.6c26.8 59.9 83.5 84.3 144.6 93.4-29.2-55.1-6.6-122.4-4.1-129.6 57.1 86.4 165 0 110.8-93.9 71 15.4 81.6 138.6 27.1 215.5 80.5-25.3 134.1-88.9 148.8-145.6 15.5-59.3 3.7-127.9-26.3-180.9z"], + "houzz": [414, 512, [], "f27c", "M258.9 330.7H154.3V480H0V32h109.5v104.5l305.1 85.6V480H258.9V330.7z"], + "html5": [384, 512, [], "f13b", "M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z"], + "hubspot": [512, 512, [], "f3b2", "M267.4 211.6c-25.1 23.7-40.8 57.3-40.8 94.6 0 29.3 9.7 56.3 26 78L203.1 434c-4.4-1.6-9.1-2.5-14-2.5-10.8 0-20.9 4.2-28.5 11.8-7.6 7.6-11.8 17.8-11.8 28.6s4.2 20.9 11.8 28.5c7.6 7.6 17.8 11.6 28.5 11.6 10.8 0 20.9-3.9 28.6-11.6 7.6-7.6 11.8-17.8 11.8-28.5 0-4.2-.6-8.2-1.9-12.1l50-50.2c22 16.9 49.4 26.9 79.3 26.9 71.9 0 130-58.3 130-130.2 0-65.2-47.7-119.2-110.2-128.7V116c17.5-7.4 28.2-23.8 28.2-42.9 0-26.1-20.9-47.9-47-47.9S311.2 47 311.2 73.1c0 19.1 10.7 35.5 28.2 42.9v61.2c-15.2 2.1-29.6 6.7-42.7 13.6-27.6-20.9-117.5-85.7-168.9-124.8 1.2-4.4 2-9 2-13.8C129.8 23.4 106.3 0 77.4 0 48.6 0 25.2 23.4 25.2 52.2c0 28.9 23.4 52.3 52.2 52.3 9.8 0 18.9-2.9 26.8-7.6l163.2 114.7zm89.5 163.6c-38.1 0-69-30.9-69-69s30.9-69 69-69 69 30.9 69 69-30.9 69-69 69z"], + "imdb": [448, 512, [], "f2d8", "M350.5 288.7c0 5.4 1.6 14.4-6.2 14.4-1.6 0-3-.8-3.8-2.4-2.2-5.1-1.1-44.1-1.1-44.7 0-3.8-1.1-12.7 4.9-12.7 7.3 0 6.2 7.3 6.2 12.7v32.7zM265 229.9c0-9.7 1.6-16-10.3-16v83.7c12.2.3 10.3-8.7 10.3-18.4v-49.3zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM21.3 228.8c-.1.1-.2.3-.3.4h.3v-.4zM97 192H64v127.8h33V192zm113.3 0h-43.1l-7.6 59.9c-2.7-20-5.4-40.1-8.7-59.9h-42.8v127.8h29v-84.5l12.2 84.5h20.6l11.6-86.4v86.4h28.7V192zm86.3 45.3c0-8.1.3-16.8-1.4-24.4-4.3-22.5-31.4-20.9-49-20.9h-24.6v127.8c86.1.1 75 6 75-82.5zm85.9 17.3c0-17.3-.8-30.1-22.2-30.1-8.9 0-14.9 2.7-20.9 9.2V192h-31.7v127.8h29.8l1.9-8.1c5.7 6.8 11.9 9.8 20.9 9.8 19.8 0 22.2-15.2 22.2-30.9v-36z"], + "instagram": [448, 512, [], "f16d", "M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"], + "internet-explorer": [512, 512, [], "f26b", "M483.049 159.706c10.855-24.575 21.424-60.438 21.424-87.871 0-72.722-79.641-98.371-209.673-38.577-107.632-7.181-211.221 73.67-237.098 186.457 30.852-34.862 78.271-82.298 121.977-101.158C125.404 166.85 79.128 228.002 43.992 291.725 23.246 329.651 0 390.94 0 436.747c0 98.575 92.854 86.5 180.251 42.006 31.423 15.43 66.559 15.573 101.695 15.573 97.124 0 184.249-54.294 216.814-146.022H377.927c-52.509 88.593-196.819 52.996-196.819-47.436H509.9c6.407-43.581-1.655-95.715-26.851-141.162zM64.559 346.877c17.711 51.15 53.703 95.871 100.266 123.304-88.741 48.94-173.267 29.096-100.266-123.304zm115.977-108.873c2-55.151 50.276-94.871 103.98-94.871 53.418 0 101.981 39.72 103.981 94.871H180.536zm184.536-187.6c21.425-10.287 48.563-22.003 72.558-22.003 31.422 0 54.274 21.717 54.274 53.722 0 20.003-7.427 49.007-14.569 67.867-26.28-42.292-65.986-81.584-112.263-99.586z"], + "ioxhost": [640, 512, [], "f208", "M616 160h-67.3C511.2 70.7 422.9 8 320 8 183 8 72 119 72 256c0 16.4 1.6 32.5 4.7 48H24c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h67.3c37.5 89.3 125.8 152 228.7 152 137 0 248-111 248-248 0-16.4-1.6-32.5-4.7-48H616c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24zm-96 96c0 110.5-89.5 200-200 200-75.7 0-141.6-42-175.5-104H424c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24H125.8c-3.8-15.4-5.8-31.4-5.8-48 0-110.5 89.5-200 200-200 75.7 0 141.6 42 175.5 104H216c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h298.2c3.8 15.4 5.8 31.4 5.8 48zm-304-24h208c13.3 0 24 10.7 24 24 0 13.2-10.7 24-24 24H216c-13.3 0-24-10.7-24-24 0-13.2 10.7-24 24-24z"], + "itunes": [448, 512, [], "f3b4", "M223.6 80.3C129 80.3 52.5 157 52.5 251.5S129 422.8 223.6 422.8s171.2-76.7 171.2-171.2c0-94.6-76.7-171.3-171.2-171.3zm79.4 240c-3.2 13.6-13.5 21.2-27.3 23.8-12.1 2.2-22.2 2.8-31.9-5-11.8-10-12-26.4-1.4-36.8 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 3.2-3.6 2.2-2 2.2-80.8 0-5.6-2.7-7.1-8.4-6.1-4 .7-91.9 17.1-91.9 17.1-5 1.1-6.7 2.6-6.7 8.3 0 116.1.5 110.8-1.2 118.5-2.1 9-7.6 15.8-14.9 19.6-8.3 4.6-23.4 6.6-31.4 5.2-21.4-4-28.9-28.7-14.4-42.9 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 5-5.7.9-127 2.6-133.7.4-2.6 1.5-4.8 3.5-6.4 2.1-1.7 5.8-2.7 6.7-2.7 101-19 113.3-21.4 115.1-21.4 5.7-.4 9 3 9 8.7-.1 170.6.4 161.4-1 167.6zM345.2 32H102.8C45.9 32 0 77.9 0 134.8v242.4C0 434.1 45.9 480 102.8 480h242.4c57 0 102.8-45.9 102.8-102.8V134.8C448 77.9 402.1 32 345.2 32zM223.6 444c-106.3 0-192.5-86.2-192.5-192.5S117.3 59 223.6 59s192.5 86.2 192.5 192.5S329.9 444 223.6 444z"], + "itunes-note": [384, 512, [], "f3b5", "M381.9 388.2c-6.4 27.4-27.2 42.8-55.1 48-24.5 4.5-44.9 5.6-64.5-10.2-23.9-20.1-24.2-53.4-2.7-74.4 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 6.4-7.2 4.4-4.1 4.4-163.2 0-11.2-5.5-14.3-17-12.3-8.2 1.4-185.7 34.6-185.7 34.6-10.2 2.2-13.4 5.2-13.4 16.7 0 234.7 1.1 223.9-2.5 239.5-4.2 18.2-15.4 31.9-30.2 39.5-16.8 9.3-47.2 13.4-63.4 10.4-43.2-8.1-58.4-58-29.1-86.6 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 10.1-11.5 1.8-256.6 5.2-270.2.8-5.2 3-9.6 7.1-12.9 4.2-3.5 11.8-5.5 13.4-5.5 204-38.2 228.9-43.1 232.4-43.1 11.5-.8 18.1 6 18.1 17.6.2 344.5 1.1 326-1.8 338.5z"], + "java": [377, 512, [], "f4e4", "M121.6 396s-19.6 11.4 13.9 15.2c40.6 4.6 61.3 4 106-4.5 0 0 11.8 7.4 28.2 13.8C169.5 463.4 42.9 418 121.6 396m-12.2-56.1s-21.9 16.2 11.6 19.7c43.3 4.5 77.6 4.8 136.8-6.6 0 0 8.2 8.3 21.1 12.8-121.3 35.5-256.3 2.9-169.5-25.9m103.2-95.1c24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3.1 0-175.2 43.8-91.5 140.2m132.6 192.6s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6.7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2 204.2 33.2 372.4-14.9 319.4-38.8M131 281.8s-93.1 22.1-33 30.1c25.4 3.4 76 2.6 123.1-1.3 38.5-3.2 77.2-10.2 77.2-10.2s-13.6 5.8-23.4 12.5c-94.5 24.9-277 13.3-224.5-12.1 44.5-21.4 80.6-19 80.6-19m167 93.3c96.1-49.9 51.6-97.9 20.6-91.4-7.6 1.6-11 3-11 3s2.8-4.4 8.2-6.3c61.3-21.6 108.5 63.6-19.8 97.3 0-.1 1.5-1.4 2-2.6M240 0s53.2 53.2-50.5 135c-83.1 65.6-19 103.1 0 145.8-48.5-43.8-84.1-82.3-60.2-118.2C164.4 110.1 261.5 84.5 240 0m-99.5 510.4c92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6"], + "jedi-order": [448, 512, [], "f50e", "M231.89 335.72l31.44-45.89-20.18 55.5 62.56 9.09-62.56 9.08 24.22 47.43s-30.22-31.77-34.49-36.25c1.76 68.78 2.19 85.7 2.19 85.7s154.4-71.65 68.62-230.09c0 0 106.97-118.07 10.09-190.73 0 0 165.5 99.91 60.55 271.46 0 0 86.78-84.77 41.37-170.54 0 0 78.71 111.01-17.16 233.11 0 0 26.24-16.15 49.45-77.71 0 0-16.93 183.26-221.96 185.66v.02h-4.08v-.02C16.93 479.14 0 295.88 0 295.88c23.21 61.56 49.44 77.71 49.44 77.71-95.87-122.11-17.15-233.11-17.15-233.11-45.41 85.78 41.38 170.54 41.38 170.54-104.95-171.56 60.54-271.46 60.54-271.46-96.88 72.66 10.09 190.73 10.09 190.73-85.78 158.44 68.62 230.09 68.62 230.09s.43-16.93 2.19-85.7l-34.48 36.25 24.22-47.43-62.56-9.08 62.56-9.09-20.18-55.5 31.44 45.89c2.25-87.85 7.82-305.82 7.85-306.85l.01-2.43.02 1 .03-1 .01 2.43c.05 1.72 5.61 219.2 7.86 306.85z"], + "jenkins": [512, 512, [], "f3b6", "M487.1 425c-1.4-11.2-19-23.1-28.2-31.9-5.1-5-29-23.1-30.4-29.9-1.4-6.6 9.7-21.5 13.3-28.9 5.1-10.7 8.8-23.7 11.3-32.6 18.8-66.1 20.7-156.9-6.2-211.2-10.2-20.6-38.6-49-56.4-62.5-42-31.7-119.6-35.3-170.1-16.6-14.1 5.2-27.8 9.8-40.1 17.1-33.1 19.4-68.3 32.5-78.1 71.6-24.2 10.8-31.5 41.8-30.3 77.8.2 7 4.1 15.8 2.7 22.4-.7 3.3-5.2 7.6-6.1 9.8-11.6 27.7-2.3 64 11.1 83.7 8.1 11.9 21.5 22.4 39.2 25.2.7 10.6 3.3 19.7 8.2 30.4 3.1 6.8 14.7 19 10.4 27.7-2.2 4.4-21 13.8-27.3 17.6C89 407.2 73.7 415 54.2 429c-12.6 9-32.3 10.2-29.2 31.1 2.1 14.1 10.1 31.6 14.7 45.8.7 2 1.4 4.1 2.1 6h422c4.9-15.3 9.7-30.9 14.6-47.2 3.4-11.4 10.2-27.8 8.7-39.7zM205.9 33.7c1.8-.5 3.4.7 4.9 2.4-.2 5.2-5.4 5.1-8.9 6.8-5.4 6.7-13.4 9.8-20 17.2-6.8 7.5-14.4 27.7-23.4 30-4.5 1.1-9.7-.8-13.6-.5-10.4.7-17.7 6-28.3 7.5 13.6-29.9 56.1-54 89.3-63.4zm-104.8 93.6c13.5-14.9 32.1-24.1 54.8-25.9 11.7 29.7-8.4 65-.9 97.6 2.3 9.9 10.2 25.4-2.4 25.7.3-28.3-34.8-46.3-61.3-29.6-1.8-21.5-4.9-51.7 9.8-67.8zm36.7 200.2c-1-4.1-2.7-12.9-2.3-15.1 1.6-8.7 17.1-12.5 11-24.7-11.3-.1-13.8 10.2-24.1 11.3-26.7 2.6-45.6-35.4-44.4-58.4 1-19.5 17.6-38.2 40.1-35.8 16 1.8 21.4 19.2 24.5 34.7 9.2.5 22.5-.4 26.9-7.6-.6-17.5-8.8-31.6-8.2-47.7 1-30.3 17.5-57.6 4.8-87.4 13.6-30.9 53.5-55.3 83.1-70 36.6-18.3 94.9-3.7 129.3 15.8 19.7 11.1 34.4 32.7 48.3 50.7-19.5-5.8-36.1 4.2-33.1 20.3 16.3-14.9 44.2-.2 52.5 16.4 7.9 15.8 7.8 39.3 9 62.8 2.9 57-10.4 115.9-39.1 157.1-7.7 11-14.1 23-24.9 30.6-26 18.2-65.4 34.7-99.2 23.4-44.7-15-65-44.8-89.5-78.8.7 18.7 13.8 34.1 26.8 48.4 11.3 12.5 25 26.6 39.7 32.4-12.3-2.9-31.1-3.8-36.2 7.2-28.6-1.9-55.1-4.8-68.7-24.2-10.6-15.4-21.4-41.4-26.3-61.4zm222 124.1c4.1-3 11.1-2.9 17.4-3.6-5.4-2.7-13-3.7-19.3-2.2-.1-4.2-2-6.8-3.2-10.2 10.6-3.8 35.5-28.5 49.6-20.3 6.7 3.9 9.5 26.2 10.1 37 .4 9-.8 18-4.5 22.8-18.8-.6-35.8-2.8-50.7-7 .9-6.1-1-12.1.6-16.5zm-17.2-20c-16.8.8-26-1.2-38.3-10.8.2-.8 1.4-.5 1.5-1.4 18 8 40.8-3.3 59-4.9-7.9 5.1-14.6 11.6-22.2 17.1zm-12.1 33.2c-1.6-9.4-3.5-12-2.8-20.2 25-16.6 29.7 28.6 2.8 20.2zM226 438.6c-11.6-.7-48.1-14-38.5-23.7 9.4 6.5 27.5 4.9 41.3 7.3.8 4.4-2.8 10.2-2.8 16.4zM57.7 497.1c-4.3-12.7-9.2-25.1-14.8-36.9 30.8-23.8 65.3-48.9 102.2-63.5 2.8-1.1 23.2 25.4 26.2 27.6 16.5 11.7 37 21 56.2 30.2 1.2 8.8 3.9 20.2 8.7 35.5.7 2.3 1.4 4.7 2.2 7.2H57.7zm240.6 5.7h-.8c.3-.2.5-.4.8-.5v.5zm7.5-5.7c2.1-1.4 4.3-2.8 6.4-4.3 1.1 1.4 2.2 2.8 3.2 4.3h-9.6zm15.1-24.7c-10.8 7.3-20.6 18.3-33.3 25.2-6 3.3-27 11.7-33.4 10.2-3.6-.8-3.9-5.3-5.4-9.5-3.1-9-10.1-23.4-10.8-37-.8-17.2-2.5-46 16-42.4 14.9 2.9 32.3 9.7 43.9 16.1 7.1 3.9 11.1 8.6 21.9 9.5-.1 1.4-.1 2.8-.2 4.3-5.9 3.9-15.3 3.8-21.8 7.1 9.5.4 17 2.7 23.5 5.9-.1 3.4-.3 7-.4 10.6zm53.4 24.7h-14c-.1-3.2-2.8-5.8-6.1-5.8s-5.9 2.6-6.1 5.8h-17.4c-2.8-4.4-5.7-8.6-8.9-12.5 2.1-2.2 4-4.7 6-6.9 9 3.7 14.8-4.9 21.7-4.2 7.9.8 14.2 11.7 25.4 11l-.6 12.6zm8.7 0c.2-4 .4-7.8.6-11.5 15.6-7.3 29 1.3 35.7 11.5H383zm83.4-37c-2.3 11.2-5.8 24-9.9 37.1-.2-.1-.4-.1-.6-.1H428c.6-1.1 1.2-2.2 1.9-3.3-2.6-6.1-9-8.7-10.9-15.5 12.1-22.7 6.5-93.4-24.2-78.5 4.3-6.3 15.6-11.5 20.8-19.3 13 10.4 20.8 20.3 33.2 31.4 6.8 6 20 13.3 21.4 23.1.8 5.5-2.6 18.9-3.8 25.1zM222.2 130.5c5.4-14.9 27.2-34.7 45-32 7.7 1.2 18 8.2 12.2 17.7-30.2-7-45.2 12.6-54.4 33.1-8.1-2-4.9-13.1-2.8-18.8zm184.1 63.1c8.2-3.6 22.4-.7 29.6-5.3-4.2-11.5-10.3-21.4-9.3-37.7.5 0 1 0 1.4.1 6.8 14.2 12.7 29.2 21.4 41.7-5.7 13.5-43.6 25.4-43.1 1.2zm20.4-43zm-117.2 45.7c-6.8-10.9-19-32.5-14.5-45.3 6.5 11.9 8.6 24.4 17.8 33.3 4.1 4 12.2 9 8.2 20.2-.9 2.7-7.8 8.6-11.7 9.7-14.4 4.3-47.9.9-36.6-17.1 11.9.7 27.9 7.8 36.8-.8zm27.3 70c3.8 6.6 1.4 18.7 12.1 20.6 20.2 3.4 43.6-12.3 58.1-17.8 9-15.2-.8-20.7-8.9-30.5-16.6-20-38.8-44.8-38-74.7 6.7-4.9 7.3 7.4 8.2 9.7 8.7 20.3 30.4 46.2 46.3 63.5 3.9 4.3 10.3 8.4 11 11.2 2.1 8.2-5.4 18-4.5 23.5-21.7 13.9-45.8 29.1-81.4 25.6-7.4-6.7-10.3-21.4-2.9-31.1zm-201.3-9.2c-6.8-3.9-8.4-21-16.4-21.4-11.4-.7-9.3 22.2-9.3 35.5-7.8-7.1-9.2-29.1-3.5-40.3-6.6-3.2-9.5 3.6-13.1 5.9 4.7-34.1 49.8-15.8 42.3 20.3zm299.6 28.8c-10.1 19.2-24.4 40.4-54 41-.6-6.2-1.1-15.6 0-19.4 22.7-2.2 36.6-13.7 54-21.6zm-141.9 12.4c18.9 9.9 53.6 11 79.3 10.2 1.4 5.6 1.3 12.6 1.4 19.4-33 1.8-72-6.4-80.7-29.6zm92.2 46.7c-1.7 4.3-5.3 9.3-9.8 11.1-12.1 4.9-45.6 8.7-62.4-.3-10.7-5.7-17.5-18.5-23.4-26-2.8-3.6-16.9-12.9-.2-12.9 13.1 32.7 58 29 95.8 28.1z"], + "joget": [496, 512, [], "f3b7", "M227.5 468.7c-9-13.6-19.9-33.3-23.7-42.4-5.7-13.7-27.2-45.6 31.2-67.1 51.7-19.1 176.7-16.5 208.8-17.6-4 9-8.6 17.9-13.9 26.6-40.4 65.5-110.4 101.5-182 101.5-6.8 0-13.6-.4-20.4-1M66.1 143.9C128 43.4 259.6 12.2 360.1 74.1c74.8 46.1 111.2 130.9 99.3 212.7-24.9-.5-179.3-3.6-230.3-4.9-55.5-1.4-81.7-20.8-58.5-48.2 23.2-27.4 51.1-40.7 68.9-51.2 17.9-10.5 27.3-33.7-23.6-29.7C87.3 161.5 48.6 252.1 37.6 293c-8.8-49.7-.1-102.7 28.5-149.1m-29.2-18c-71.9 116.6-35.6 269.3 81 341.2 116.6 71.9 269.3 35.6 341.2-80.9 71.9-116.6 35.6-269.4-81-341.2-40.5-25.1-85.5-37-129.9-37C165 8 83.8 49.9 36.9 125.9m244.4 110.4c-31.5 20.5-65.3 31.3-65.3 31.3l169.5-1.6 46.5-23.4s3.6-9.5-19.1-15.5c-22.7-6-57 11.3-86.7 27.2-29.7 15.8-31.1 8.2-31.1 8.2s40.2-28.1 50.7-34.5c10.5-6.4 31.9-14 13.4-24.6-3.2-1.8-6.7-2.7-10.4-2.7-17.8 0-41.5 18.7-67.5 35.6"], + "joomla": [448, 512, [], "f1aa", "M.6 92.1C.6 58.8 27.4 32 60.4 32c30 0 54.5 21.9 59.2 50.2 32.6-7.6 67.1.6 96.5 30l-44.3 44.3c-20.5-20.5-42.6-16.3-55.4-3.5-14.3 14.3-14.3 37.9 0 52.2l99.5 99.5-44 44.3c-87.7-87.2-49.7-49.7-99.8-99.7-26.8-26.5-35-64.8-24.8-98.9C20.4 144.6.6 120.7.6 92.1zm129.5 116.4l44.3 44.3c10-10 89.7-89.7 99.7-99.8 14.3-14.3 37.6-14.3 51.9 0 12.8 12.8 17 35-3.5 55.4l44 44.3c31.2-31.2 38.5-67.6 28.9-101.2 29.2-4.1 51.9-29.2 51.9-59.5 0-33.2-26.8-60.1-59.8-60.1-30.3 0-55.4 22.5-59.5 51.6-33.8-9.9-71.7-1.5-98.3 25.1-18.3 19.1-71.1 71.5-99.6 99.9zm266.3 152.2c8.2-32.7-.9-68.5-26.3-93.9-11.8-12.2 5 4.7-99.5-99.7l-44.3 44.3 99.7 99.7c14.3 14.3 14.3 37.6 0 51.9-12.8 12.8-35 17-55.4-3.5l-44 44.3c27.6 30.2 68 38.8 102.7 28 5.5 27.4 29.7 48.1 58.9 48.1 33 0 59.8-26.8 59.8-60.1 0-30.2-22.5-55-51.6-59.1zm-84.3-53.1l-44-44.3c-87 86.4-50.4 50.4-99.7 99.8-14.3 14.3-37.6 14.3-51.9 0-13.1-13.4-16.9-35.3 3.2-55.4l-44-44.3c-30.2 30.2-38 65.2-29.5 98.3-26.7 6-46.2 29.9-46.2 58.2C0 453.2 26.8 480 59.8 480c28.6 0 52.5-19.8 58.6-46.7 32.7 8.2 68.5-.6 94.2-26 32.1-32 12.2-12.4 99.5-99.7z"], + "js": [448, 512, [], "f3b8", "M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"], + "js-square": [448, 512, [], "f3b9", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM243.8 381.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"], + "jsfiddle": [576, 512, [], "f1cc", "M510.634 237.462c-4.727-2.621-5.664-5.748-6.381-10.776-2.352-16.488-3.539-33.619-9.097-49.095-35.895-99.957-153.99-143.386-246.849-91.646-27.37 15.25-48.971 36.369-65.493 63.903-3.184-1.508-5.458-2.71-7.824-3.686-30.102-12.421-59.049-10.121-85.331 9.167-25.531 18.737-36.422 44.548-32.676 76.408.355 3.025-1.967 7.621-4.514 9.545-39.712 29.992-56.031 78.065-41.902 124.615 13.831 45.569 57.514 79.796 105.608 81.433 30.291 1.031 60.637.546 90.959.539 84.041-.021 168.09.531 252.12-.48 52.664-.634 96.108-36.873 108.212-87.293 11.54-48.074-11.144-97.3-56.832-122.634zm21.107 156.88c-18.23 22.432-42.343 35.253-71.28 35.65-56.874.781-113.767.23-170.652.23 0 .7-163.028.159-163.728.154-43.861-.332-76.739-19.766-95.175-59.995-18.902-41.245-4.004-90.848 34.186-116.106 9.182-6.073 12.505-11.566 10.096-23.136-5.49-26.361 4.453-47.956 26.42-62.981 22.987-15.723 47.422-16.146 72.034-3.083 10.269 5.45 14.607 11.564 22.198-2.527 14.222-26.399 34.557-46.727 60.671-61.294 97.46-54.366 228.37 7.568 230.24 132.697.122 8.15 2.412 12.428 9.848 15.894 57.56 26.829 74.456 96.122 35.142 144.497zm-87.789-80.499c-5.848 31.157-34.622 55.096-66.666 55.095-16.953-.001-32.058-6.545-44.079-17.705-27.697-25.713-71.141-74.98-95.937-93.387-20.056-14.888-41.99-12.333-60.272 3.782-49.996 44.071 15.859 121.775 67.063 77.188 4.548-3.96 7.84-9.543 12.744-12.844 8.184-5.509 20.766-.884 13.168 10.622-17.358 26.284-49.33 38.197-78.863 29.301-28.897-8.704-48.84-35.968-48.626-70.179 1.225-22.485 12.364-43.06 35.414-55.965 22.575-12.638 46.369-13.146 66.991 2.474C295.68 280.7 320.467 323.97 352.185 343.47c24.558 15.099 54.254 7.363 68.823-17.506 28.83-49.209-34.592-105.016-78.868-63.46-3.989 3.744-6.917 8.932-11.41 11.72-10.975 6.811-17.333-4.113-12.809-10.353 20.703-28.554 50.464-40.44 83.271-28.214 31.429 11.714 49.108 44.366 42.76 78.186z"], + "keybase": [412, 512, [], "f4f5", "M177.2 430.9c0 9.8-8 17.8-17.8 17.8s-17.8-8-17.8-17.8 8-17.8 17.8-17.8c9.8-.1 17.8 7.9 17.8 17.8zM270 413c-9.8 0-17.8 8-17.8 17.8s8 17.8 17.8 17.8 17.8-8 17.8-17.8-8-17.8-17.8-17.8zm142.3-36c0 38.9-7.6 73.9-22.2 103h-27.3c23.5-38.7 30.5-94.8 22.4-134.3-16.1 29.5-52.1 38.6-85.9 28.8-127.8-37.5-192.5 19.7-234.6 50.3l18.9-59.3-39.9 42.3c4.8 26.7 15.7 51.3 31.2 72.3H46.1c-9.7-15.8-17.2-33-22.2-51.3L.1 454c0-74.9-5.5-147.6 61.5-215.2 20.2-20.4 43.7-36.2 69.1-46.7-6.8-13.5-9.5-29.2-7.8-46l-19.9-1.2c-17.9-1.1-31.6-16.5-30.6-34.4v-.1L74 84.2c1.1-17.1 15.4-30.6 32.5-30.6 1.3 0-.3-.1 28.2 1.7 13.9.8 21.5 9.8 22.8 11.4 7.1-10.4 14.5-20.5 24.6-34.5l20.6 12.1c-13.6 29-9.1 36.2-9 36.3 3.9 0 13.9-.5 32.4 5.7C246 92.9 262 107 271 126c.4.9 15.5 29 1.2 62.6 19 6.1 51.3 19.9 82.4 51.8 36.6 37.6 57.7 87.4 57.7 136.6zM128 122.3c3.2-10 7.7-19.7 13.1-29.4.1-2 2.2-13.1-7.8-13.8-28.5-1.8-26.3-1.6-26.7-1.6-4.6 0-8.3 3.5-8.6 8.1l-1.6 26.2c-.3 4.7 3.4 8.8 8.1 9.1l23.5 1.4zm25.8 61.8c5.6 9.4 14.1 16.1 22.3 20 0-21.2 28.5-41.9 52.8-17.5l8.4 10.3c20.8-18.8 19.4-45.3 12.1-60.9-13.8-29.1-46.9-32-54.3-31.7-10.3.4-19.7-5.4-23.7-15.3-13.7 21.2-37.2 62.5-17.6 95.1zm82.9 68.4L217 268.6c-1.9 1.6-2.2 4.4-.6 6.3l8.9 10.9c1 1.2 3.8 2.7 6.3.6l19.6-16 5.5 6.8c4.9 6 13.8-1.4 9-7.3-63.6-78.3-41.5-51.1-55.3-68.1-4.7-6-13.9 1.4-9 7.3 1.9 2.3 18.4 22.6 19.8 24.3l-9.6 7.9c-4.6 3.8 2.6 13.3 7.4 9.4l9.7-8 8 9.8zm118.4 25.7c-16.9-23.7-42.6-46.7-73.4-60.4-7.9-3.5-15-6.1-22.9-8.6-2 2.2-4.1 4.3-6.4 6.2l31.9 39.2c10.4 12.7 8.5 31.5-4.2 41.9-1.3 1.1-13.1 10.7-29 4.9-2.9 2.3-10.1 9.9-22.2 9.9-8.6 0-16.6-3.8-22.1-10.5l-8.9-10.9c-6.3-7.8-7.9-17.9-5-26.8-8.2-9.9-8.3-21.3-4.6-30-7.2-1.3-26.7-6.2-42.7-21.4-55.8 20.7-88 64.4-101.3 91.2-14.9 30.2-18.8 60.9-19.9 90.2 8.2-8.7-3.9 4.1 114-120.9l-29.9 93.6c57.8-31.1 124-36 197.4-14.4 23.6 6.9 45.1 1.6 56-13.9 11.1-15.6 8.5-37.7-6.8-59.3zM110.6 107.3l15.6 1 1-15.6-15.6-1-1 15.6z"], + "keycdn": [512, 512, [], "f3ba", "M63.8 409.3l60.5-59c32.1 42.8 71.1 66 126.6 67.4 30.5.7 60.3-7 86.4-22.4 5.1 5.3 18.5 19.5 20.9 22-32.2 20.7-69.6 31.1-108.1 30.2-43.3-1.1-84.6-16.7-117.7-44.4.3-.6-38.2 37.5-38.6 37.9 9.5 29.8-13.1 62.4-46.3 62.4C20.7 503.3 0 481.7 0 454.9c0-34.3 33.1-56.6 63.8-45.6zm354.9-252.4c19.1 31.3 29.6 67.4 28.7 104-1.1 44.8-19 87.5-48.6 121 .3.3 23.8 25.2 24.1 25.5 9.6-1.3 19.2 2 25.9 9.1 11.3 12 10.9 30.9-1.1 42.4-12 11.3-30.9 10.9-42.4-1.1-6.7-7-9.4-16.8-7.6-26.3-24.9-26.6-44.4-47.2-44.4-47.2 42.7-34.1 63.3-79.6 64.4-124.2.7-28.9-7.2-57.2-21.1-82.2l22.1-21zM104 53.1c6.7 7 9.4 16.8 7.6 26.3l45.9 48.1c-4.7 3.8-13.3 10.4-22.8 21.3-25.4 28.5-39.6 64.8-40.7 102.9-.7 28.9 6.1 57.2 20 82.4l-22 21.5C72.7 324 63.1 287.9 64.2 250.9c1-44.6 18.3-87.6 47.5-121.1l-25.3-26.4c-9.6 1.3-19.2-2-25.9-9.1-11.3-12-10.9-30.9 1.1-42.4C73.5 40.7 92.2 41 104 53.1zM464.9 8c26 0 47.1 22.4 47.1 48.3S490.9 104 464.9 104c-6.3.1-14-1.1-15.9-1.8l-62.9 59.7c-32.7-43.6-76.7-65.9-126.9-67.2-30.5-.7-60.3 6.8-86.2 22.4l-21.1-22C184.1 74.3 221.5 64 260 64.9c43.3 1.1 84.6 16.7 117.7 44.6l41.1-38.6c-1.5-4.7-2.2-9.6-2.2-14.5C416.5 29.7 438.9 8 464.9 8zM256.7 113.4c5.5 0 10.9.4 16.4 1.1 78.1 9.8 133.4 81.1 123.8 159.1-9.8 78.1-81.1 133.4-159.1 123.8-78.1-9.8-133.4-81.1-123.8-159.2 9.3-72.4 70.1-124.6 142.7-124.8zm-59 119.4c.6 22.7 12.2 41.8 32.4 52.2l-11 51.7h73.7l-11-51.7c20.1-10.9 32.1-29 32.4-52.2-.4-32.8-25.8-57.5-58.3-58.3-32.1.8-57.3 24.8-58.2 58.3zM256 160"], + "kickstarter": [448, 512, [], "f3bb", "M400 480H48c-26.4 0-48-21.6-48-48V80c0-26.4 21.6-48 48-48h352c26.4 0 48 21.6 48 48v352c0 26.4-21.6 48-48 48zM199.6 178.5c0-30.7-17.6-45.1-39.7-45.1-25.8 0-40 19.8-40 44.5v154.8c0 25.8 13.7 45.6 40.5 45.6 21.5 0 39.2-14 39.2-45.6v-41.8l60.6 75.7c12.3 14.9 39 16.8 55.8 0 14.6-15.1 14.8-36.8 4-50.4l-49.1-62.8 40.5-58.7c9.4-13.5 9.5-34.5-5.6-49.1-16.4-15.9-44.6-17.3-61.4 7l-44.8 64.7v-38.8z"], + "kickstarter-k": [384, 512, [], "f3bc", "M147.3 114.4c0-56.2-32.5-82.4-73.4-82.4C26.2 32 0 68.2 0 113.4v283c0 47.3 25.3 83.4 74.9 83.4 39.8 0 72.4-25.6 72.4-83.4v-76.5l112.1 138.3c22.7 27.2 72.1 30.7 103.2 0 27-27.6 27.3-67.4 7.4-92.2l-90.8-114.8 74.9-107.4c17.4-24.7 17.5-63.1-10.4-89.8-30.3-29-82.4-31.6-113.6 12.8L147.3 185v-70.6z"], + "korvue": [446, 512, [], "f42f", "M386.5 34h-327C26.8 34 0 60.8 0 93.5v327.1C0 453.2 26.8 480 59.5 480h327.1c33 0 59.5-26.8 59.5-59.5v-327C446 60.8 419.2 34 386.5 34zM87.1 120.8h96v116l61.8-116h110.9l-81.2 132H87.1v-132zm161.8 272.1l-65.7-113.6v113.6h-96V262.1h191.5l88.6 130.8H248.9z"], + "laravel": [640, 512, [], "f3bd", "M637.5 241.6c-4.2-4.8-62.8-78.1-73.1-90.5-10.3-12.4-15.4-10.2-21.7-9.3-6.4.9-80.5 13.4-89.1 14.8-8.6 1.5-14 4.9-8.7 12.3 4.7 6.6 53.4 75.7 64.2 90.9l-193.7 46.4L161.2 48.7c-6.1-9.1-7.4-12.3-21.4-11.6-14 .6-120.9 9.5-128.5 10.2-7.6.6-16 4-8.4 22s129 279.6 132.4 287.2c3.4 7.6 12.2 20 32.8 15 21.1-5.1 94.3-24.2 134.3-34.7 21.1 38.3 64.2 115.9 72.2 127 10.6 14.9 18 12.4 34.3 7.4 12.8-3.9 199.6-71.1 208-74.5 8.4-3.5 13.6-5.9 7.9-14.4-4.2-6.2-53.5-72.2-79.3-106.8 17.7-4.7 80.6-21.4 87.3-23.3 7.9-2 9-5.8 4.7-10.6zm-352.2 72c-2.3.5-110.8 26.5-116.6 27.8-5.8 1.3-5.8.7-6.5-1.3-.7-2-129-266.7-130.8-270-1.8-3.3-1.7-5.9 0-5.9s102.5-9 106-9.2c3.6-.2 3.2.6 4.5 2.8 0 0 142.2 245.4 144.6 249.7 2.6 4.3 1.1 5.6-1.2 6.1zm306 57.4c1.7 2.7 3.5 4.5-2 6.4-5.4 2-183.7 62.1-187.1 63.6-3.5 1.5-6.2 2-10.6-4.5s-62.4-106.8-62.4-106.8L518 280.6c4.7-1.5 6.2-2.5 9.2 2.2 2.9 4.8 62.4 85.5 64.1 88.2zm12.1-134.1c-4.2.9-73.6 18.1-73.6 18.1l-56.7-77.8c-1.6-2.3-2.9-4.5 1.1-5s68.4-12.2 71.3-12.8c2.9-.7 5.4-1.5 9 3.4 3.6 4.9 52.6 67 54.5 69.4 1.8 2.3-1.4 3.7-5.6 4.7z"], + "lastfm": [512, 512, [], "f202", "M225.8 367.1l-18.8-51s-30.5 34-76.2 34c-40.5 0-69.2-35.2-69.2-91.5 0-72.1 36.4-97.9 72.1-97.9 66.5 0 74.8 53.3 100.9 134.9 18.8 56.9 54 102.6 155.4 102.6 72.7 0 122-22.3 122-80.9 0-72.9-62.7-80.6-115-92.1-25.8-5.9-33.4-16.4-33.4-34 0-19.9 15.8-31.7 41.6-31.7 28.2 0 43.4 10.6 45.7 35.8l58.6-7c-4.7-52.8-41.1-74.5-100.9-74.5-52.8 0-104.4 19.9-104.4 83.9 0 39.9 19.4 65.1 68 76.8 44.9 10.6 79.8 13.8 79.8 45.7 0 21.7-21.1 30.5-61 30.5-59.2 0-83.9-31.1-97.9-73.9-32-96.8-43.6-163-161.3-163C45.7 113.8 0 168.3 0 261c0 89.1 45.7 137.2 127.9 137.2 66.2 0 97.9-31.1 97.9-31.1z"], + "lastfm-square": [448, 512, [], "f203", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-92.2 312.9c-63.4 0-85.4-28.6-97.1-64.1-16.3-51-21.5-84.3-63-84.3-22.4 0-45.1 16.1-45.1 61.2 0 35.2 18 57.2 43.3 57.2 28.6 0 47.6-21.3 47.6-21.3l11.7 31.9s-19.8 19.4-61.2 19.4c-51.3 0-79.9-30.1-79.9-85.8 0-57.9 28.6-92 82.5-92 73.5 0 80.8 41.4 100.8 101.9 8.8 26.8 24.2 46.2 61.2 46.2 24.9 0 38.1-5.5 38.1-19.1 0-19.9-21.8-22-49.9-28.6-30.4-7.3-42.5-23.1-42.5-48 0-40 32.3-52.4 65.2-52.4 37.4 0 60.1 13.6 63 46.6l-36.7 4.4c-1.5-15.8-11-22.4-28.6-22.4-16.1 0-26 7.3-26 19.8 0 11 4.8 17.6 20.9 21.3 32.7 7.1 71.8 12 71.8 57.5.1 36.7-30.7 50.6-76.1 50.6z"], + "leanpub": [576, 512, [], "f212", "M386.539 111.485l15.096 248.955-10.979-.275c-36.232-.824-71.64 8.783-102.657 27.997-31.016-19.214-66.424-27.997-102.657-27.997-45.564 0-82.07 10.705-123.516 27.723L93.117 129.6c28.546-11.803 61.484-18.115 92.226-18.115 41.173 0 73.836 13.175 102.657 42.544 27.723-28.271 59.013-41.721 98.539-42.544zM569.07 448c-25.526 0-47.485-5.215-70.542-15.645-34.31-15.645-69.993-24.978-107.871-24.978-38.977 0-74.934 12.901-102.657 40.623-27.723-27.723-63.68-40.623-102.657-40.623-37.878 0-73.561 9.333-107.871 24.978C55.239 442.236 32.731 448 8.303 448H6.93L49.475 98.859C88.726 76.626 136.486 64 181.775 64 218.83 64 256.984 71.685 288 93.095 319.016 71.685 357.17 64 394.225 64c45.289 0 93.049 12.626 132.3 34.859L569.07 448zm-43.368-44.741l-34.036-280.246c-30.742-13.999-67.248-21.41-101.009-21.41-38.428 0-74.385 12.077-102.657 38.702-28.272-26.625-64.228-38.702-102.657-38.702-33.761 0-70.267 7.411-101.009 21.41L50.298 403.259c47.211-19.487 82.894-33.486 135.045-33.486 37.604 0 70.817 9.606 102.657 29.644 31.84-20.038 65.052-29.644 102.657-29.644 52.151 0 87.834 13.999 135.045 33.486z"], + "less": [640, 512, [], "f41d", "M612.7 219c0-20.5 3.2-32.6 3.2-54.6 0-34.2-12.6-45.2-40.5-45.2h-20.5v24.2h6.3c14.2 0 17.3 4.7 17.3 22.1 0 16.3-1.6 32.6-1.6 51.5 0 24.2 7.9 33.6 23.6 37.3v1.6c-15.8 3.7-23.6 13.1-23.6 37.3 0 18.9 1.6 34.2 1.6 51.5 0 17.9-3.7 22.6-17.3 22.6v.5h-6.3V393h20.5c27.8 0 40.5-11 40.5-45.2 0-22.6-3.2-34.2-3.2-54.6 0-11 6.8-22.6 27.3-23.6v-27.3c-20.5-.7-27.3-12.3-27.3-23.3zm-105.6 32c-15.8-6.3-30.5-10-30.5-20.5 0-7.9 6.3-12.6 17.9-12.6s22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-21 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51s-22.5-41-43-47.8zm-358.9 59.4c-3.7 0-8.4-3.2-8.4-13.1V119.1H65.2c-28.4 0-41 11-41 45.2 0 22.6 3.2 35.2 3.2 54.6 0 11-6.8 22.6-27.3 23.6v27.3c20.5.5 27.3 12.1 27.3 23.1 0 19.4-3.2 31-3.2 53.6 0 34.2 12.6 45.2 40.5 45.2h20.5v-24.2h-6.3c-13.1 0-17.3-5.3-17.3-22.6s1.6-32.1 1.6-51.5c0-24.2-7.9-33.6-23.6-37.3v-1.6c15.8-3.7 23.6-13.1 23.6-37.3 0-18.9-1.6-34.2-1.6-51.5s3.7-22.1 17.3-22.1H93v150.8c0 32.1 11 53.1 43.1 53.1 10 0 17.9-1.6 23.6-3.7l-5.3-34.2c-3.1.8-4.6.8-6.2.8zM379.9 251c-16.3-6.3-31-10-31-20.5 0-7.9 6.3-12.6 17.9-12.6 11.6 0 22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-20.5 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51 .1-28.9-22.5-41-43-47.8zm-155-68.8c-38.4 0-75.1 32.1-74.1 82.5 0 52 34.2 82.5 79.3 82.5 18.9 0 39.9-6.8 56.2-17.9l-15.8-27.8c-11.6 6.8-22.6 10-34.2 10-21 0-37.3-10-41.5-34.2H290c.5-3.7 1.6-11 1.6-19.4.6-42.6-22.6-75.7-66.7-75.7zm-30 66.2c3.2-21 15.8-31 30.5-31 18.9 0 26.3 13.1 26.3 31h-56.8z"], + "line": [448, 512, [], "f3c0", "M272.1 204.2v71.1c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.1 0-2.1-.6-2.6-1.3l-32.6-44v42.2c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.8 0-3.2-1.4-3.2-3.2v-71.1c0-1.8 1.4-3.2 3.2-3.2H219c1 0 2.1.5 2.6 1.4l32.6 44v-42.2c0-1.8 1.4-3.2 3.2-3.2h11.4c1.8-.1 3.3 1.4 3.3 3.1zm-82-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 1.8 1.4 3.2 3.2 3.2h11.4c1.8 0 3.2-1.4 3.2-3.2v-71.1c0-1.7-1.4-3.2-3.2-3.2zm-27.5 59.6h-31.1v-56.4c0-1.8-1.4-3.2-3.2-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 .9.3 1.6.9 2.2.6.5 1.3.9 2.2.9h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.7-1.4-3.2-3.1-3.2zM332.1 201h-45.7c-1.7 0-3.2 1.4-3.2 3.2v71.1c0 1.7 1.4 3.2 3.2 3.2h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2V234c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2v-11.4c-.1-1.7-1.5-3.2-3.2-3.2zM448 113.7V399c-.1 44.8-36.8 81.1-81.7 81H81c-44.8-.1-81.1-36.9-81-81.7V113c.1-44.8 36.9-81.1 81.7-81H367c44.8.1 81.1 36.8 81 81.7zm-61.6 122.6c0-73-73.2-132.4-163.1-132.4-89.9 0-163.1 59.4-163.1 132.4 0 65.4 58 120.2 136.4 130.6 19.1 4.1 16.9 11.1 12.6 36.8-.7 4.1-3.3 16.1 14.1 8.8 17.4-7.3 93.9-55.3 128.2-94.7 23.6-26 34.9-52.3 34.9-81.5z"], + "linkedin": [448, 512, [], "f08c", "M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"], + "linkedin-in": [448, 512, [], "f0e1", "M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"], + "linode": [448, 512, [], "f2b8", "M437.4 226.3c-.3-.9-.9-1.4-1.4-2l-70-38.6c-.9-.6-2-.6-3.1 0l-58.9 36c-.9.6-1.4 1.7-1.4 2.6l-.9 31.4-24-16c-.9-.6-2.3-.6-3.1 0L240 260.9l-1.4-35.1c0-.9-.6-2-1.4-2.3l-36-24.3 33.7-17.4c1.1-.6 1.7-1.7 1.7-2.9l-5.7-132.3c0-.9-.9-2-1.7-2.6L138.6.3c-.9-.3-1.7-.3-2.3-.3L12.6 38.6c-1.4.6-2.3 2-2 3.7L38 175.4c.9 3.4 34 27.4 38.6 30.9l-26.9 12.9c-1.4.9-2 2.3-1.7 3.4l20.6 100.3c.6 2.9 23.7 23.1 27.1 26.3l-17.4 10.6c-.9.6-1.7 2-1.4 3.1 1.4 7.1 15.4 77.7 16.9 79.1l65.1 69.1c.6.6 1.4.6 2.3.9.6 0 1.1-.3 1.7-.6l83.7-66.9c.9-.6 1.1-1.4 1.1-2.3l-2-46 28 23.7c1.1.9 2.9.9 4 0l66.9-53.4c.9-.6 1.1-1.4 1.1-2.3l2.3-33.4 20.3 14c1.1.9 2.6.9 3.7 0l54.6-43.7c.6-.3 1.1-1.1 1.1-2 .9-6.5 10.3-70.8 9.7-72.8zm-204.8 4.8l4 92.6-90.6 61.2-14-96.6 100.6-57.2zm-7.7-180l5.4 126-106.6 55.4L104 97.7l120.9-46.6zM44 173.1L18 48l79.7 49.4 19.4 132.9L44 173.1zm30.6 147.8L55.7 230l70 58.3 13.7 93.4-64.8-60.8zm24.3 117.7l-13.7-67.1 61.7 60.9 9.7 67.4-57.7-61.2zm64.5 64.5l-10.6-70.9 85.7-61.4 3.1 70-78.2 62.3zm82-115.1c0-3.4.9-22.9-2-25.1l-24.3-20 22.3-14.9c2.3-1.7 1.1-5.7 1.1-8l29.4 22.6.6 68.3-27.1-22.9zm94.3-25.4l-60.9 48.6-.6-68.6 65.7-46.9-4.2 66.9zm27.7-25.7l-19.1-13.4 2-34c.3-.9-.3-2-1.1-2.6L308 259.7l.6-30 64.6 40.6-5.8 66.6zm54.6-39.8l-48.3 38.3 5.7-65.1 51.1-36.6-8.5 63.4z"], + "linux": [448, 512, [], "f17c", "M196.1 123.6c-.2-1.4 1.9-2.3 3.2-2.9 1.7-.7 3.9-1 5.5-.1.4.2.8.7.6 1.1-.4 1.2-2.4 1-3.5 1.6-1 .5-1.8 1.7-3 1.7-1 .1-2.7-.4-2.8-1.4zm24.7-.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm214.7 310.2c-.5 8.2-6.5 13.8-13.9 18.3-14.9 9-37.3 15.8-50.9 32.2l-2.6-2.2 2.6 2.2c-14.2 16.9-31.7 26.6-48.3 27.9-16.5 1.3-32-6.3-40.3-23v-.1c-1.1-2.1-1.9-4.4-2.5-6.7-21.5 1.2-40.2-5.3-55.1-4.1-22 1.2-35.8 6.5-48.3 6.6-4.8 10.6-14.3 17.6-25.9 20.2-16 3.7-36.1 0-55.9-10.4l1.6-3-1.6 3c-18.5-9.8-42-8.9-59.3-12.5-8.7-1.8-16.3-5-20.1-12.3-3.7-7.3-3-17.3 2.2-31.7 1.7-5.1.4-12.7-.8-20.8-.6-3.9-1.2-7.9-1.2-11.8 0-4.3.7-8.5 2.8-12.4 4.5-8.5 11.8-12.1 18.5-14.5 6.7-2.4 12.8-4 17-8.3 5.2-5.5 10.1-14.4 16.6-20.2-2.6-17.2.2-35.4 6.2-53.3 12.6-37.9 39.2-74.2 58.1-96.7 16.1-22.9 20.8-41.3 22.5-64.7C158 103.4 132.4-.2 234.8 0c80.9.1 76.3 85.4 75.8 131.3-.3 30.1 16.3 50.5 33.4 72 15.2 18 35.1 44.3 46.5 74.4 9.3 24.6 12.9 51.8 3.7 79.1 1.4.5 2.8 1.2 4.1 2 1.4.8 2.7 1.8 4 2.9 6.6 5.6 8.7 14.3 10.5 22.4 1.9 8.1 3.6 15.7 7.2 19.7 11.1 12.4 15.9 21.5 15.5 29.7zM220.8 109.1c3.6.9 8.9 2.4 13 4.4-2.1-12.2 4.5-23.5 11.8-23 8.9.3 13.9 15.5 9.1 27.3-.8 1.9-2.8 3.4-3.9 4.6 6.7 2.3 11 4.1 12.6 4.9 7.9-9.5 10.8-26.2 4.3-40.4-9.8-21.4-34.2-21.8-44 .4-3.2 7.2-3.9 14.9-2.9 21.8zm-46.2 18.8c7.8-5.7 6.9-4.7 5.9-5.5-8-6.9-6.6-27.4 1.8-28.1 6.3-.5 10.8 10.7 9.6 19.6 3.1-2.1 6.7-3.6 10.2-4.6 1.7-19.3-9-33.5-19.1-33.5-18.9 0-24 37.5-8.4 52.1zm-9.4 20.9c1.5 4.9 6.1 10.5 14.7 15.3 7.8 4.6 12 11.5 20 15 2.6 1.1 5.7 1.9 9.6 2.1 18.4 1.1 27.1-11.3 38.2-14.9 11.7-3.7 20.1-11 22.7-18.1 3.2-8.5-2.1-14.7-10.5-18.2-11.3-4.9-16.3-5.2-22.6-9.3-10.3-6.6-18.8-8.9-25.9-8.9-14.4 0-23.2 9.8-27.9 14.2-.5.5-7.9 5.9-14.1 10.5-4.2 3.3-5.6 7.4-4.2 12.3zm-33.5 252.8L112.1 366c-6.8-9.2-13.8-14.8-21.9-16-7.7-1.2-12.6 1.4-17.7 6.9-4.8 5.1-8.8 12.3-14.3 18-7.8 6.5-9.3 6.2-19.6 9.9-6.3 2.2-11.3 4.6-14.8 11.3-2.7 5-2.1 12.2-.9 20 1.2 7.9 3 16.3.6 23.9v.2c-5 13.7-5 21.7-2.6 26.4 7.9 15.4 46.6 6.1 76.5 21.9 31.4 16.4 72.6 17.1 75.3-18 2.1-20.5-31.5-49-41-68.9zm153.9 35.8c3.2-11 6.3-21.3 6.8-29 .8-15.2 1.6-28.7 4.4-39.9 3.1-12.6 9.3-23.1 21.4-27.3 2.3-21.1 18.7-21.1 38.3-12.5 18.9 8.5 26 16 22.8 26.1 1 0 2-.1 4.2 0 5.2-16.9-14.3-28-30.7-34.8 2.9-12 2.4-24.1-.4-35.7-6-25.3-22.6-47.8-35.2-59-2.3-.1-2.1 1.9 2.6 6.5 11.6 10.7 37.1 49.2 23.3 84.9-3.9-1-7.6-1.5-10.9-1.4-5.3-29.1-17.5-53.2-23.6-64.6-11.5-21.4-29.5-65.3-37.2-95.7-4.5 6.4-12.4 11.9-22.3 15-4.7 1.5-9.7 5.5-15.9 9-13.9 8-30 8.8-42.4-1.2-4.5-3.6-8-7.6-12.6-10.3-1.6-.9-5.1-3.3-6.2-4.1-2 37.8-27.3 85.3-39.3 112.7-8.3 19.7-13.2 40.8-13.8 61.5-21.8-29.1-5.9-66.3 2.6-82.4 9.5-17.6 11-22.5 8.7-20.8-8.6 14-22 36.3-27.2 59.2-2.7 11.9-3.2 24 .3 35.2 3.5 11.2 11.1 21.5 24.6 29.9 0 0 24.8 14.3 38.3 32.5 7.4 10 9.7 18.7 7.4 24.9-2.5 6.7-9.6 8.9-16.7 8.9 4.8 6 10.3 13 14.4 19.6 37.6 25.7 82.2 15.7 114.3-7.2zM415 408.5c-10-11.3-7.2-33.1-17.1-41.6-6.9-6-13.6-5.4-22.6-5.1-7.7 8.8-25.8 19.6-38.4 16.3-11.5-2.9-18-16.3-18.8-29.5-.3.2-.7.3-1 .5-7.1 3.9-11.1 10.8-13.7 21.1-2.5 10.2-3.4 23.5-4.2 38.7-.7 11.8-6.2 26.4-9.9 40.6-3.5 13.2-5.8 25.2-1.1 36.3 7.2 14.5 19.5 20.4 33.7 19.3 14.2-1.1 30.4-9.8 43.6-25.5 22-26.6 62.3-29.7 63.2-46.5.3-5.1-3.1-13-13.7-24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4 3.9-3.4 5.9-6.3 3.1-6.6-2.8-.3-2.6 2.6-6 5.1-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2-10.4 0-18.7-4.8-24.9-9.7-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z"], + "lyft": [512, 512, [], "f3c3", "M0 81.1h77.8v208.7c0 33.1 15 52.8 27.2 61-12.7 11.1-51.2 20.9-80.2-2.8C7.8 334 0 310.7 0 289V81.1zm485.9 173.5v-22h23.8v-76.8h-26.1c-10.1-46.3-51.2-80.7-100.3-80.7-56.6 0-102.7 46-102.7 102.7V357c16 2.3 35.4-.3 51.7-14 17.1-14 24.8-37.2 24.8-59v-6.7h38.8v-76.8h-38.8v-23.3c0-34.6 52.2-34.6 52.2 0v77.1c0 56.6 46 102.7 102.7 102.7v-76.5c-14.5 0-26.1-11.7-26.1-25.9zm-294.3-99v113c0 15.4-23.8 15.4-23.8 0v-113H91v132.7c0 23.8 8 54 45 63.9 37 9.8 58.2-10.6 58.2-10.6-2.1 13.4-14.5 23.3-34.9 25.3-15.5 1.6-35.2-3.6-45-7.8v70.3c25.1 7.5 51.5 9.8 77.6 4.7 47.1-9.1 76.8-48.4 76.8-100.8V155.1h-77.1v.5z"], + "magento": [448, 512, [], "f3c4", "M445.7 127.9V384l-63.4 36.5V164.7L223.8 73.1 65.2 164.7l.4 255.9L2.3 384V128.1L224.2 0l221.5 127.9zM255.6 420.5L224 438.9l-31.8-18.2v-256l-63.3 36.6.1 255.9 94.9 54.9 95.1-54.9v-256l-63.4-36.6v255.9z"], + "mailchimp": [428, 512, [], "f59e", "M426.56 323.72c-3.09-6.59-8.97-11.13-16.35-12.88-2.47-11.27-5.88-16.8-6.19-17.63 1.3-1.48 2.56-2.97 2.84-3.32 10.42-12.93 3.62-31.86-14.19-36.33-10.02-9.64-19.09-14.17-26.54-17.9-7.14-3.57-4.29-2.17-10.99-5.19-1.78-8.71-2.37-28.97-5.2-43.19-2.54-12.79-7.66-22.06-15.56-28.15-3.16-6.84-7.59-13.74-12.93-18.81 24.84-38.08 31.38-75.69 13.19-95.39-8.1-8.77-20.13-12.93-34.52-12.93-20.26 0-45.18 8.26-70.34 23.54 0 0-16.38-13.18-16.73-13.46-70.08-55.19-268.28 188.7-198.32 242l18.06 13.8c-11.34 31.54 4.43 69.14 37.29 81.21 7.26 2.67 15.14 3.97 23.31 3.51 0 0 53.09 97.36 165.1 97.39 129.58.04 162.55-126.72 162.9-127.86 0 .01 10.5-15.51 5.17-28.41zM20.12 267.95c-14.2-23.96 10.51-73.19 28.09-101.17C91.66 97.63 163.98 43.06 196.82 50.85l9.03-3.46c.03.03 24.67 20.85 24.7 20.87 16.97-10.19 38.58-20.57 58.8-22.64-12.3 2.77-27.29 9.15-45.05 20.01-.43.25-42.02 28.32-67.43 53.52-13.85 13.73-69.45 80.41-69.4 80.35 10.16-19.23 16.86-28.67 32.94-48.9 9.1-11.44 18.81-22.57 28.74-32.84 4.61-4.77 9.28-9.36 13.95-13.71 3.21-2.99 6.44-5.87 9.65-8.62 1.48-1.27 2.96-2.5 4.43-3.71l.01-.01L164.6 64.8l1.72 12.06 23.69 20.87s-20.96 14.11-31.39 23.01c-41.79 35.66-82.8 90.4-98.06 143.69l.73-.03c-7.6 4.19-15.14 10.91-21.73 20.05-.16-.04-17.04-12.43-19.44-16.5zm69.11 100.09c-25.03 0-45.33-21.37-45.33-47.72 0-26.36 20.29-47.72 45.33-47.72 6.49 0 12.66 1.44 18.24 4.02 0 0 9.63 4.86 12.34 27.81 2.82-7.17 4.24-13.06 4.24-13.06 3.23 9.88 4.88 20.26 4.23 30.76 2.68-3.56 5.55-10.27 5.55-10.27 5 29.33-16.4 56.18-44.6 56.18zm55.8-168.53s19.49-37.06 62.33-61.57c-3.19-.51-10.99.48-12.36.64 7.78-6.69 22.24-11.16 32.23-13.19-2.92-1.86-9.89-2.33-13.34-2.42-1.02-.03-1.01-.02-2.22.03 9.4-5.25 26.82-8.34 42.65-5.55-1.99-2.64-6.5-4.57-9.67-5.51-.28-.08-1.52-.39-1.52-.39l1.19-.28c9.54-1.84 20.69.15 29.5 3.69-1-2.32-3.45-5.03-5.29-6.74-.19-.18-1.29-.97-1.29-.97 9.22 1.91 18.06 5.94 24.71 10.5-.9-1.75-3.14-4.69-4.69-6.29 8.81 2.52 18.71 8.81 22.95 17.82.1.2.37.94.4 1.03-16.7-12.84-65.44-9.2-114.24 22.42-22.33 14.48-38.71 30.32-51.34 46.78zm263.32 146.34c-.59 1.15-6.73 34.4-41.86 62.01-44.37 34.86-102.66 31.33-124.67 11.8-11.76-11-16.85-26.73-16.85-26.73s-1.33 8.87-1.56 12.35c-8.87-15.09-8.12-33.52-8.12-33.52s-4.73 8.83-6.9 13.77c-6.53-16.62-3.16-33.78-3.16-33.78l-5.16 7.7s-2.42-18.81 3.52-34.47c6.36-16.74 18.68-28.9 21.11-30.42-9.35-2.97-20.12-11.49-20.14-11.51 0 0 4.28.28 7.26-.4 0 0-18.9-13.54-22.22-34.26 2.74 3.38 8.49 7.21 8.49 7.21-1.86-5.42-2.99-17.49-1.25-29.36l.01-.01c3.58-22.68 22.27-37.45 43.44-37.27 22.54.2 37.65 4.93 56.55-12.5 4-3.69 7.19-6.87 12.81-8.11.59-.13 2.06-.75 5.07-.75 3.05 0 5.98.69 8.67 2.29 10.25 6.1 12.46 22.01 13.56 33.68 4.07 43.28 2.43 35.57 19.94 44.49 8.36 4.25 17.74 8.29 28.43 19.72.03.03.08.09.08.09h.13c9.01.22 13.65 7.31 9.5 12.47-30.23 36.1-72.46 53.39-119.51 54.84-1.94.05-6.32.15-6.34.15-19.01.58-25.19 25.16-13.27 39.95 7.54 9.35 22.03 12.42 33.97 12.46l.17-.06c51.45 1.04 103.14-35.37 112.07-55.44.06-.15.61-1.42.61-1.42-2.07 2.43-52.18 49.61-113.08 47.9 0 0-6.66-.14-12.93-1.6-8.27-1.92-14.55-5.56-16.95-13.8 5.05 1.01 11.45 1.66 18.87 1.66 43.96 0 75.63-19.98 72.33-20.25-.13 0-.26.03-.48.08-5.13 1.19-57.97 21.66-91.37 11.16.08-1.02.24-2.01.48-2.9 2.97-9.95 8.25-8.56 16.79-8.93 30.48-1.01 55.07-8.68 73.5-17.43 19.65-9.33 34.63-21.35 40.03-27.42 7 11.79 6.96 26.92 6.96 26.92s2.74-.96 6.38-.96c11.38.01 13.73 10.23 5.09 20.6zm-149.29 13.7c0-.05-.01-.1-.01-.15.01.05.01.1.01.15zm-.01-.21c-.01-.13-.01-.26-.02-.39-.02-.65-.03-1.33 0-2.02-.02.74-.02 1.42 0 2.02.01.13.01.27.02.39zm.12 1.46c0 .02 0 .04.01.06 0-.02 0-.04-.01-.06zm.02.12c.2 1.58.51 2.31.55 2.4-.23-.49-.42-1.34-.55-2.4zM193.96 59.68l2.87-8.83 4.88 17.72-6.03-1.95-1.72-6.94zm22.38 17.72l-3.62-12.59 9.97 8.36c-2.24 1.44-4.36 2.86-6.35 4.23zm42.71 281.94c-.01-.13-.01-.26-.02-.39.01.13.01.27.02.39zm-.01-.39c-.02-.65-.03-1.33 0-2.02-.03.75-.03 1.42 0 2.02zm.02.6c0-.05-.01-.1-.01-.15m.13 1.46c0-.02 0-.04-.01-.06m.02.12c.2 1.58.51 2.31.55 2.4-.23-.49-.42-1.34-.55-2.4zm52.1-138.61c-.07-3.36.47-8.92 3.63-9.95h.01c5.41-1.88 12.58 11.98 12.91 24.28-4.28-2.14-9.3-3.05-14.47-2.6-1.3-3.97-1.92-7.7-2.08-11.73zM205.38 85.27l-13.59-11.38 20.57 6.28c-2.65 1.88-5 3.6-6.98 5.1zm27.7 166.94c-3.41 1.3-5.83 2.31-7 2.14-1.89-.28-.06-3.75 4.08-7.11 8.33-6.64 19.76-8.7 29.53-5.07 4.28 1.57 9.08 4.72 11.6 8.39.95 1.39 1.21 2.44.82 2.88-.77.9-3.51-.31-7.55-1.89-10.35-3.86-17.98-4.45-31.48.66zm14.55 14.53c-2.31.94-3.81 1.66-4.42 1.17-.62-.48-.01-2.42 2.15-4.51 1.88-1.81 3.83-2.83 6.07-3.77.35-.15.72-.28 1.1-.38 1.04-.28 2.09-.63 3.23-.8 9.12-1.55 15.8 3.51 14.93 4.98-.39.69-2.08.53-4.6.36-5.23-.36-10.71-.27-18.46 2.95zM60.86 323.12zm24.3-25.78c-1.85.39-.81.17-2.64.68a7 7 0 0 0-.77.25c-.58.27-1.11.45-1.62.73-.43.24-4.07 1.86-7.03 5.48-3.99 4.95-5.44 11.43-5.19 17.67.24 6.06 2.02 9.41 2.35 10.23 1.38 2.96-1.85 3.57-4.79.39l-.01-.01c-2.35-2.49-3.86-6.29-4.6-9.66-2.98-13.95 3.24-27.97 17.61-33.57.8-.32 1.74-.51 2.5-.73h-.01c1.47-.44 6.72-1.5 12.07-.67 5.87.91 11.04 3.85 14.33 7.67l.01.01c2.53 2.87 4.43 6.92 4.09 10.53v.01c-.13 1.5-.79 3.65-2.14 4.21-.5.21-1.01.1-1.36-.25-.98-.96-.22-2.93-2.6-6.3-3.17-4.47-10.31-8.76-20.2-6.67zm30.28 31.17c1.88 10.82-6 20.5-15.52 20.7-6.67.15-10.31-4.02-9.66-4.93.3-.43 1.32-.24 2.88-.01 8.5 1.32 13.66-3.86 14.9-9.29.02-.09.35-1.54.34-2.54.07-.88-.03-1.76-.16-2.56-1-5.62-7.45-6.68-11.6-11.15-3.72-4.04-2.99-9.22-.65-11.71 2.81-2.77 6.83-1.76 6.78-.78 0 .52-.97.91-2.17 1.74-1.56 1.1-1.77 2.16-1.37 3.98.26 1 .71 1.65 1.68 2.42 3.48 2.76 12.85 4.7 14.55 14.13zm212.87-81.47c2.58.4 4.22 3.59 3.67 7.13-.55 3.54-3.09 6.08-5.67 5.67-2.58-.4-4.22-3.59-3.67-7.13.56-3.53 3.09-6.07 5.67-5.67zm-28.33 10.31c1.42-2.59 5.44-3.11 8.99-1.16 3.55 1.94 5.27 5.62 3.86 8.2-1.42 2.59-5.44 3.11-8.99 1.16-3.55-1.94-5.28-5.61-3.86-8.2z"], + "mandalorian": [390, 512, [], "f50f", "M203.28 511.89c-.98-3.26-1.69-15.83-1.39-24.58.55-15.89.98-24.72 1.4-28.76.64-6.2 2.87-20.72 3.28-21.38.6-.96.4-27.87-.24-33.13-.31-2.58-.63-11.9-.69-20.73-.13-16.47-.53-20.12-2.73-24.76-1.1-2.32-1.23-3.84-.99-11.43.16-4.81 0-10.53-.34-12.71-2.05-12.97-3.46-27.7-3.25-33.9.21-6.12.43-7.15 2.06-9.67 3.05-4.71 6.51-14.04 8.62-23.27 2.26-9.86 3.88-17.18 4.59-20.74.89-4.42 2.43-9.72 4.36-15.05 2.27-6.25 2.49-15.39.37-15.39-.3 0-1.38 1.22-2.41 2.71-1.03 1.49-4.76 4.8-8.29 7.36-8.37 6.08-11.7 9.39-12.66 12.58-.93 3.11-1.02 7.23-.16 7.76.34.21 1.29 2.4 2.11 4.88 1.62 4.88 1.87 10.12.72 15.36-.39 1.77-1.05 5.47-1.46 8.23-.41 2.76-.98 6.46-1.25 8.22-.28 1.76-.97 3.68-1.55 4.26-.96.96-1.14.91-2.05-.53-.55-.87-1.2-3.01-1.44-4.75-.25-1.74-1.63-7.11-3.08-11.93-3.28-10.9-3.52-16.15-.96-20.96.92-1.73 1.67-3.81 1.67-4.61 0-2.39-2.2-5.32-7.41-9.89-7.05-6.18-8.63-7.92-10.23-11.3-1.71-3.6-3.06-4.06-4.54-1.54-1.78 3.01-2.6 9.11-2.97 22.02l-.35 12.13 1.95 2.25c3.21 3.7 12.07 16.45 13.78 19.83 3.41 6.74 4.34 11.69 4.41 23.56.07 11.84.95 22.75 2 24.71.36.66.51 1.35.34 1.52-.17.17.41 2.09 1.29 4.27.88 2.18 1.81 6.22 2.06 8.98.25 2.76 1.02 7.43 1.71 10.37 2.23 9.56 2.77 14.08 2.39 20.14-.2 3.27-.53 11.07-.73 17.32-1.31 41.76-1.85 57.98-2.04 61.21-.12 2.02-.39 11.51-.6 21.07-.36 16.3-1.3 27.37-2.42 28.65-.64.73-8.07-4.91-12.52-9.49-3.75-3.87-4.02-4.79-2.83-9.95.7-3.01 2.26-18.29 3.33-32.62.36-4.78.81-10.5 1.01-12.71.83-9.37 1.66-20.35 2.61-34.78.56-8.46 1.33-16.44 1.72-17.73.38-1.29.89-9.89 1.13-19.11l.43-16.77-2.26-4.3c-1.72-3.28-4.87-6.94-13.22-15.34-6.03-6.07-11.84-12.3-12.91-13.85l-1.95-2.81.75-10.9c1.09-15.71 1.1-48.57.02-59.06l-.89-8.7-3.28-4.52c-5.86-8.08-5.8-7.75-6.22-33.27-.1-6.07-.38-11.5-.63-12.06-.83-1.87-3.05-2.66-8.54-3.05-8.86-.62-10.96-1.9-23.85-14.55-6.15-6.04-12.34-11.97-13.75-13.19-2.81-2.42-2.79-1.99-.56-9.63l1.35-4.65-1.69-3.04c-.93-1.67-2.09-3.51-2.59-4.07-1.33-1.51-5.5-10.89-5.99-13.49-.31-1.66-.09-2.67.87-3.9 2.23-2.86 3.4-5.68 4.45-10.73 2.33-11.19 7.74-26.09 10.6-29.22 3.18-3.47 7.7-1.05 9.41 5.03 1.34 4.79 1.37 9.79.1 18.55-.53 3.68-.98 8.68-.99 11.11-.02 4.01.19 4.69 2.25 7.39 3.33 4.37 7.73 7.41 15.2 10.52 1.7.71 3.82 1.99 4.72 2.85 11.17 10.72 18.62 16.18 22.95 16.85 5.18.8 7.98 4.54 10.04 13.39 1.31 5.65 4 11.14 5.46 11.14.59 0 2.09-.63 3.33-1.39 1.98-1.22 2.25-1.73 2.25-4.18-.01-3.71-1.17-14.08-2-17.84-.37-1.66-.78-4.06-.93-5.35-.14-1.29-.61-3.85-1.03-5.69-2.55-11.16-3.65-15.46-4.1-16.05-1.55-2.02-4.08-10.2-4.93-15.92-1.64-11.11-3.96-14.23-12.91-17.39-4.64-1.64-8.89-4.12-13.32-7.78-1.15-.95-4.01-3.22-6.35-5.06-2.35-1.83-4.41-3.53-4.6-3.76-.18-.23-1.39-1.14-2.69-2.02-6.24-4.22-8.84-6.98-11.26-11.96l-2.44-5.02-.22-12.98-.22-12.98 6.91-6.55c3.95-3.75 8.48-7.35 10.59-8.43 3.31-1.69 4.45-1.89 11.37-2.05 8.53-.19 10.12.02 11.66 1.56 1.53 1.53 1.36 6.4-.29 8.5-.74.94-1.34 1.98-1.34 2.32 0 .58-2.61 4.91-5.42 8.99-.68.99-2.13 5.35-2.37 6.82 20.44 13.39 21.55 3.77 14.07 28.98l11.4 2.54c3.11-8.66 6.47-17.26 8.61-26.22.29-7.63-11.98-4.19-15.4-8.68-2.33-5.93 3.13-14.18 6.06-19.2 1.6-2.34 6.62-4.7 8.82-4.15.88.22 4.16-.35 7.37-1.28 3.18-.92 6.58-1.68 7.55-1.68.97 0 3.66-.58 5.98-1.29 3.65-1.11 4.5-1.17 6.35-.4 1.17.48 3.79 1.09 5.82 1.36 2.02.26 4.72 1.12 6 1.91 1.28.79 3.53 1.77 5.02 2.17 2.51.68 3 .57 7.05-1.67l4.35-2.4 10.7-.41c10.44-.4 10.81-.47 15.26-2.68l4.58-2.3 2.46 1.43c1.76 1.02 3.14 2.73 4.85 5.98 2.36 4.51 2.38 4.58 1.37 7.37-.88 2.44-.89 3.3-.1 6.39.5 1.96 1.45 4.62 2.1 5.91.65 1.29 1.24 3.09 1.31 4.01.31 4.33-.03 5.3-2.41 6.92-2.17 1.47-6.98 7.91-6.98 9.34 0 .32-.48 1.69-1.07 3.03-5.04 11.51-6.76 13.56-14.26 16.98-9.2 4.2-12.3 5.19-16.21 5.19-3.1 0-4 .25-4.54 1.26-.37.69-2.21 2.37-4.09 3.71-2.04 1.47-3.8 3.38-4.38 4.78-.54 1.28-1.66 2.59-2.49 2.91-.83.32-1.94 1.08-2.45 1.71-.52.62-3.66 3.04-7 5.38-3.33 2.34-6.87 5.02-7.87 5.96-1 .94-2.07 1.71-2.39 1.71s-1.28.74-2.13 1.65c-1.31 1.39-1.49 2.11-1.14 4.6.22 1.63.86 4.27 1.42 5.88 1.32 3.8 1.31 7.86-.05 10.57-1.43 2.86-.89 6.65 1.35 9.59 2.01 2.63 2.16 4.56.71 8.84-.61 1.8-1.05 5.45-1.06 8.91-.02 4.88.22 6.28 1.46 8.38 1.2 2.04 1.82 2.48 3.24 2.32 1.98-.23 2.3-1.05 4.71-12.12 2.18-10.03 3.71-11.92 13.76-17.08 2.94-1.51 7.46-3.96 10.03-5.44 2.58-1.48 6.79-3.69 9.37-4.91 6.67-3.16 11.05-6.52 15.22-11.67 7.11-8.79 9.98-16.22 12.85-33.3.55-3.28 1.43-5.65 2.86-7.73 1.29-1.87 2.37-4.62 2.89-7.31 1.02-5.3 2.85-9.08 5.58-11.51 4.7-4.18 6-1.09 4.59 10.87-.46 3.86-1.1 10.33-1.44 14.38l-.61 7.36 4.45 4.09 4.45 4.09.11 8.42c.06 4.63.47 9.53.92 10.89l.82 2.47-6.43 6.28c-8.54 8.33-12.88 13.93-16.76 21.61-1.77 3.49-3.74 7.11-4.38 8.03-2.18 3.11-6.46 13.01-8.76 20.26l-2.29 7.22-6.97 6.49c-3.83 3.57-7.96 7.25-9.17 8.17-3.05 2.32-4.26 5.15-4.26 9.99 0 2.98.43 4.96 1.59 7.26.87 1.74 1.81 3.91 2.09 4.83.28.92.98 2.22 1.57 2.89 1.4 1.59 1.92 16.12.83 23.22-.68 4.48-3.63 12.02-4.7 12.02-1.79 0-4.06 9.27-5.07 20.74-.18 2.02-.62 5.94-.98 8.7-.36 2.76-.96 9.98-1.35 16.05-.77 12.22-.19 18.77 2.05 23.15 3.41 6.69.52 12.69-11.03 22.84l-3.97 3.49.07 5.19c.04 2.86.55 6.85 1.14 8.87 4.61 15.98 4.73 16.92 4.38 37.13-.46 26.4-.26 40.27.63 44.15.42 1.84.91 5 1.08 7.02.17 2.02.66 5.33 1.08 7.36.47 2.26.78 11.02.79 22.74l.02 19.06-1.81 2.63c-2.71 3.91-15.11 13.54-15.49 12.29zm29.53-45.11c-.18-.3-.33-6.87-.33-14.59 0-14.06-.89-27.54-2.26-34.45-.4-2.02-.81-9.7-.9-17.06-.15-11.93-1.4-24.37-2.64-26.38-.66-1.07-3.02-17.66-3.03-21.3-.01-4.23 1.02-6 5.28-9.13 4.14-3.04 4.86-3.14 5.48-.72.28 1.1 1.45 5.62 2.6 10.03 3.93 15.12 4.14 16.27 4.05 21.74-.1 5.78-.13 6.13-1.74 17.73-.98 7.07-1.17 12.39-1.04 28.43.17 19.4-.64 35.73-2.04 41.27-.71 2.78-2.8 5.48-3.43 4.43zm-70.99-37.58c-.24-.38-1.01-5.24-1.73-10.79-.72-5.56-1.49-10.41-1.73-10.79-.23-.38-.68-3.3-.99-6.49-.31-3.19-.91-7.46-1.33-9.48-.99-4.79-3.35-19.35-3.42-21.07-.03-.74-.34-4.05-.7-7.36-.67-6.21-.84-27.67-.22-28.29.96-.96 6.63 2.76 11.33 7.43l5.28 5.25-.45 6.47c-.25 3.56-.6 10.23-.78 14.83-.18 4.6-.49 9.87-.67 11.71-.18 1.84-.61 9.36-.94 16.72-.79 17.41-1.94 31.29-2.65 32-.32.3-.76.24-1-.14zM74.63 162.61c21.07 12.79 17.84 14.15 28.49 17.66 13.01 4.29 18.87 7.13 23.15 16.87-43.66 36.14-69.01 57.9-76.71 70.82-31.02 52.01-5.99 101.59 62.75 87.21-14.18 29.23-77.97 28.63-98.68-4.9-24.68-39.95-22.09-118.3 61-187.66zm210.79 179.02c56.66 6.88 82.32-37.74 46.54-89.23 0 0-26.87-29.34-64.28-67.96 2.98-15.45 9.49-32.12 30.57-53.82 89.2 63.51 92 141.61 92.46 149.36 4.27 70.58-78.66 91.12-105.29 61.65z"], + "mastodon": [417, 512, [], "f4f6", "M417.8 179.1c0-97.2-63.7-125.7-63.7-125.7-62.5-28.7-228.5-28.4-290.4 0 0 0-63.7 28.5-63.7 125.7 0 115.7-6.6 259.4 105.6 289.1 40.5 10.7 75.3 13 103.3 11.4 50.8-2.8 79.3-18.1 79.3-18.1l-1.7-36.9s-36.3 11.4-77.1 10.1c-40.4-1.4-83-4.4-89.6-54-.6-4.4-.9-9-.9-13.9 85.6 20.9 158.6 9.1 178.7 6.7 56.1-6.7 105-41.3 111.2-72.9 9.8-49.8 9-121.5 9-121.5zm-75.1 125.2h-46.6V190.1c0-49.7-64-51.6-64 6.9v62.5h-46.3V197c0-58.5-64-56.6-64-6.9v114.2H75.1c0-122.1-5.2-147.9 18.4-175 25.9-28.9 79.8-30.8 103.8 6.1l11.6 19.5 11.6-19.5c24.1-37.1 78.1-34.8 103.8-6.1 23.7 27.3 18.4 53 18.4 175z"], + "maxcdn": [512, 512, [], "f136", "M461.1 442.7h-97.4L415.6 200c2.3-10.2.9-19.5-4.4-25.7-5-6.1-13.7-9.6-24.2-9.6h-49.3l-59.5 278h-97.4l59.5-278h-83.4l-59.5 278H0l59.5-278-44.6-95.4H387c39.4 0 75.3 16.3 98.3 44.9 23.3 28.6 31.8 67.4 23.6 105.9l-47.8 222.6z"], + "medapps": [320, 512, [], "f3c6", "M118.3 238.4c3.5-12.5 6.9-33.6 13.2-33.6 8.3 1.8 9.6 23.4 18.6 36.6 4.6-23.5 5.3-85.1 14.1-86.7 9-.7 19.7 66.5 22 77.5 9.9 4.1 48.9 6.6 48.9 6.6 1.9 7.3-24 7.6-40 7.8-4.6 14.8-5.4 27.7-11.4 28-4.7.2-8.2-28.8-17.5-49.6l-9.4 65.5c-4.4 13-15.5-22.5-21.9-39.3-3.3-.1-62.4-1.6-47.6-7.8l31-5zM228 448c21.2 0 21.2-32 0-32H92c-21.2 0-21.2 32 0 32h136zm-24 64c21.2 0 21.2-32 0-32h-88c-21.2 0-21.2 32 0 32h88zm34.2-141.5c3.2-18.9 5.2-36.4 11.9-48.8 7.9-14.7 16.1-28.1 24-41 24.6-40.4 45.9-75.2 45.9-125.5C320 69.6 248.2 0 160 0S0 69.6 0 155.2c0 50.2 21.3 85.1 45.9 125.5 7.9 12.9 16 26.3 24 41 6.7 12.5 8.7 29.8 11.9 48.9 3.5 21 36.1 15.7 32.6-5.1-3.6-21.7-5.6-40.7-15.3-58.6C66.5 246.5 33 211.3 33 155.2 33 87.3 90 32 160 32s127 55.3 127 123.2c0 56.1-33.5 91.3-66.1 151.6-9.7 18-11.7 37.4-15.3 58.6-3.4 20.6 29 26.4 32.6 5.1z"], + "medium": [448, 512, [], "f23a", "M0 32v448h448V32H0zm372.2 106.1l-24 23c-2.1 1.6-3.1 4.2-2.7 6.7v169.3c-.4 2.6.6 5.2 2.7 6.7l23.5 23v5.1h-118V367l24.3-23.6c2.4-2.4 2.4-3.1 2.4-6.7V199.8l-67.6 171.6h-9.1L125 199.8v115c-.7 4.8 1 9.7 4.4 13.2l31.6 38.3v5.1H71.2v-5.1l31.6-38.3c3.4-3.5 4.9-8.4 4.1-13.2v-133c.4-3.7-1-7.3-3.8-9.8L75 138.1V133h87.3l67.4 148L289 133.1h83.2v5z"], + "medium-m": [512, 512, [], "f3c7", "M71.5 142.3c.6-5.9-1.7-11.8-6.1-15.8L20.3 72.1V64h140.2l108.4 237.7L364.2 64h133.7v8.1l-38.6 37c-3.3 2.5-5 6.7-4.3 10.8v272c-.7 4.1 1 8.3 4.3 10.8l37.7 37v8.1H307.3v-8.1l39.1-37.9c3.8-3.8 3.8-5 3.8-10.8V171.2L241.5 447.1h-14.7L100.4 171.2v184.9c-1.1 7.8 1.5 15.6 7 21.2l50.8 61.6v8.1h-144v-8L65 377.3c5.4-5.6 7.9-13.5 6.5-21.2V142.3z"], + "medrt": [544, 512, [], "f3c8", "M113.7 256c0 121.8 83.9 222.8 193.5 241.1-18.7 4.5-38.2 6.9-58.2 6.9C111.4 504 0 393 0 256S111.4 8 248.9 8c20.1 0 39.6 2.4 58.2 6.9C197.5 33.2 113.7 134.2 113.7 256m297.4 100.3c-77.7 55.4-179.6 47.5-240.4-14.6 5.5 14.1 12.7 27.7 21.7 40.5 61.6 88.2 182.4 109.3 269.7 47 87.3-62.3 108.1-184.3 46.5-272.6-9-12.9-19.3-24.3-30.5-34.2 37.4 78.8 10.7 178.5-67 233.9m-218.8-244c-1.4 1-2.7 2.1-4 3.1 64.3-17.8 135.9 4 178.9 60.5 35.7 47 42.9 106.6 24.4 158 56.7-56.2 67.6-142.1 22.3-201.8-50-65.5-149.1-74.4-221.6-19.8M296 224c-4.4 0-8-3.6-8-8v-40c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v40c0 4.4-3.6 8-8 8h-40c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h40c4.4 0 8 3.6 8 8v40c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-40c0-4.4 3.6-8 8-8h40c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-40z"], + "meetup": [512, 512, [], "f2e0", "M99 414.3c1.1 5.7-2.3 11.1-8 12.3-5.4 1.1-10.9-2.3-12-8-1.1-5.4 2.3-11.1 7.7-12.3 5.4-1.2 11.1 2.3 12.3 8zm143.1 71.4c-6.3 4.6-8 13.4-3.7 20 4.6 6.6 13.4 8.3 20 3.7 6.3-4.6 8-13.4 3.4-20-4.2-6.5-13.1-8.3-19.7-3.7zm-86-462.3c6.3-1.4 10.3-7.7 8.9-14-1.1-6.6-7.4-10.6-13.7-9.1-6.3 1.4-10.3 7.7-9.1 14 1.4 6.6 7.6 10.6 13.9 9.1zM34.4 226.3c-10-6.9-23.7-4.3-30.6 6-6.9 10-4.3 24 5.7 30.9 10 7.1 23.7 4.6 30.6-5.7 6.9-10.4 4.3-24.1-5.7-31.2zm272-170.9c10.6-6.3 13.7-20 7.7-30.3-6.3-10.6-19.7-14-30-7.7s-13.7 20-7.4 30.6c6 10.3 19.4 13.7 29.7 7.4zm-191.1 58c7.7-5.4 9.4-16 4.3-23.7s-15.7-9.4-23.1-4.3c-7.7 5.4-9.4 16-4.3 23.7 5.1 7.8 15.6 9.5 23.1 4.3zm372.3 156c-7.4 1.7-12.3 9.1-10.6 16.9 1.4 7.4 8.9 12.3 16.3 10.6 7.4-1.4 12.3-8.9 10.6-16.6-1.5-7.4-8.9-12.3-16.3-10.9zm39.7-56.8c-1.1-5.7-6.6-9.1-12-8-5.7 1.1-9.1 6.9-8 12.6 1.1 5.4 6.6 9.1 12.3 8 5.4-1.5 9.1-6.9 7.7-12.6zM447 138.9c-8.6 6-10.6 17.7-4.9 26.3 5.7 8.6 17.4 10.6 26 4.9 8.3-6 10.3-17.7 4.6-26.3-5.7-8.7-17.4-10.9-25.7-4.9zm-6.3 139.4c26.3 43.1 15.1 100-26.3 129.1-17.4 12.3-37.1 17.7-56.9 17.1-12 47.1-69.4 64.6-105.1 32.6-1.1.9-2.6 1.7-3.7 2.9-39.1 27.1-92.3 17.4-119.4-22.3-9.7-14.3-14.6-30.6-15.1-46.9-65.4-10.9-90-94-41.1-139.7-28.3-46.9.6-107.4 53.4-114.9C151.6 70 234.1 38.6 290.1 82c67.4-22.3 136.3 29.4 130.9 101.1 41.1 12.6 52.8 66.9 19.7 95.2zm-70 74.3c-3.1-20.6-40.9-4.6-43.1-27.1-3.1-32 43.7-101.1 40-128-3.4-24-19.4-29.1-33.4-29.4-13.4-.3-16.9 2-21.4 4.6-2.9 1.7-6.6 4.9-11.7-.3-6.3-6-11.1-11.7-19.4-12.9-12.3-2-17.7 2-26.6 9.7-3.4 2.9-12 12.9-20 9.1-3.4-1.7-15.4-7.7-24-11.4-16.3-7.1-40 4.6-48.6 20-12.9 22.9-38 113.1-41.7 125.1-8.6 26.6 10.9 48.6 36.9 47.1 11.1-.6 18.3-4.6 25.4-17.4 4-7.4 41.7-107.7 44.6-112.6 2-3.4 8.9-8 14.6-5.1 5.7 3.1 6.9 9.4 6 15.1-1.1 9.7-28 70.9-28.9 77.7-3.4 22.9 26.9 26.6 38.6 4 3.7-7.1 45.7-92.6 49.4-98.3 4.3-6.3 7.4-8.3 11.7-8 3.1 0 8.3.9 7.1 10.9-1.4 9.4-35.1 72.3-38.9 87.7-4.6 20.6 6.6 41.4 24.9 50.6 11.4 5.7 62.5 15.7 58.5-11.1zm5.7 92.3c-10.3 7.4-12.9 22-5.7 32.6 7.1 10.6 21.4 13.1 32 6 10.6-7.4 13.1-22 6-32.6-7.4-10.6-21.7-13.5-32.3-6z"], + "megaport": [496, 512, [], "f5a3", "M248 8C111.04 8 0 119.04 0 256c0 136.97 111.04 248 248 248 136.96 0 248-111.03 248-248C496 119.04 384.96 8 248 8zm85.46 267.67l59.66 59.67v87.05l-26.07 19.23L341 422.39v-65.46l-33.44-33.44-33.44 33.44v65.46L248 441.62l-26.12-19.23v-65.46l-33.44-33.44L155 356.92v65.46l-26.07 19.23-26.06-19.23v-87.05l59.47-59.47V188l59.5-59.5V52.88l26.06-19.23 26.06 19.23v75.64l59.5 59.5m-85.56-11.86l33.44 33.44V276L248 309.33l-33.54-33.54v-66.2l33.44-33.43z"], + "microsoft": [448, 512, [], "f3ca", "M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z"], + "mix": [448, 512, [], "f3cb", "M0 64v348.9c0 56.2 88 58.1 88 0V174.3c7.9-52.9 88-50.4 88 6.5v175.3c0 57.9 96 58 96 0V240c5.3-54.7 88-52.5 88 4.3v23.8c0 59.9 88 56.6 88 0V64H0z"], + "mixcloud": [640, 512, [], "f289", "M424.43 219.729C416.124 134.727 344.135 68 256.919 68c-72.266 0-136.224 46.516-159.205 114.074-54.545 8.029-96.63 54.822-96.63 111.582 0 62.298 50.668 112.966 113.243 112.966h289.614c52.329 0 94.969-42.362 94.969-94.693 0-45.131-32.118-83.063-74.48-92.2zm-20.489 144.53H114.327c-39.04 0-70.881-31.564-70.881-70.604s31.841-70.604 70.881-70.604c18.827 0 36.548 7.475 49.838 20.766 19.963 19.963 50.133-10.227 30.18-30.18-14.675-14.398-32.672-24.365-52.053-29.349 19.935-44.3 64.79-73.926 114.628-73.926 69.496 0 125.979 56.483 125.979 125.702 0 13.568-2.215 26.857-6.369 39.594-8.943 27.517 32.133 38.939 40.147 13.29 2.769-8.306 4.984-16.889 6.369-25.472 19.381 7.476 33.502 26.303 33.502 48.453 0 28.795-23.535 52.33-52.607 52.33zm235.069-52.33c0 44.024-12.737 86.386-37.102 122.657-4.153 6.092-10.798 9.414-17.72 9.414-16.317 0-27.127-18.826-17.443-32.949 19.381-29.349 29.903-63.682 29.903-99.122s-10.521-69.773-29.903-98.845c-15.655-22.831 19.361-47.24 35.163-23.534 24.366 35.993 37.102 78.356 37.102 122.379zm-70.88 0c0 31.565-9.137 62.021-26.857 88.325-4.153 6.091-10.798 9.136-17.72 9.136-17.201 0-27.022-18.979-17.443-32.948 13.013-19.104 19.658-41.255 19.658-64.513 0-22.981-6.645-45.408-19.658-64.512-15.761-22.986 19.008-47.095 35.163-23.535 17.719 26.026 26.857 56.483 26.857 88.047z"], + "mizuni": [496, 512, [], "f3cc", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm-80 351.9c-31.4 10.6-58.8 27.3-80 48.2V136c0-22.1 17.9-40 40-40s40 17.9 40 40v223.9zm120-9.9c-12.9-2-26.2-3.1-39.8-3.1-13.8 0-27.2 1.1-40.2 3.1V136c0-22.1 17.9-40 40-40s40 17.9 40 40v214zm120 57.7c-21.2-20.8-48.6-37.4-80-48V136c0-22.1 17.9-40 40-40s40 17.9 40 40v271.7z"], + "modx": [448, 512, [], "f285", "M356 241.8l36.7 23.7V480l-133-83.8L356 241.8zM440 75H226.3l-23 37.8 153.5 96.5L440 75zm-89 142.8L55.2 32v214.5l46 29L351 217.8zM97 294.2L8 437h213.7l125-200.5L97 294.2z"], + "monero": [496, 512, [], "f3d0", "M352 384h108.4C417 455.9 338.1 504 248 504S79 455.9 35.6 384H144V256.2L248 361l104-105v128zM88 336V128l159.4 159.4L408 128v208h74.8c8.5-25.1 13.2-52 13.2-80C496 119 385 8 248 8S0 119 0 256c0 28 4.6 54.9 13.2 80H88z"], + "napster": [496, 512, [], "f3d2", "M298.3 373.6c-14.2 13.6-31.3 24.1-50.4 30.5-19-6.4-36.2-16.9-50.3-30.5h100.7zm44-199.6c20-16.9 43.6-29.2 69.6-36.2V299c0 219.4-328 217.6-328 .3V137.7c25.9 6.9 49.6 19.6 69.5 36.4 56.8-40 132.5-39.9 188.9-.1zm-208.8-58.5c64.4-60 164.3-60.1 228.9-.2-7.1 3.5-13.9 7.3-20.6 11.5-58.7-30.5-129.2-30.4-187.9.1-6.3-4-13.9-8.2-20.4-11.4zM43.8 93.2v69.3c-58.4 36.5-58.4 121.1.1 158.3 26.4 245.1 381.7 240.3 407.6 1.5l.3-1.7c58.7-36.3 58.9-121.7.2-158.2V93.2c-17.3.5-34 3-50.1 7.4-82-91.5-225.5-91.5-307.5.1-16.3-4.4-33.1-7-50.6-7.5zM259.2 352s36-.3 61.3-1.5c10.2-.5 21.1-4 25.5-6.5 26.3-15.1 25.4-39.2 26.2-47.4-79.5-.6-99.9-3.9-113 55.4zm-135.5-55.3c.8 8.2-.1 32.3 26.2 47.4 4.4 2.5 15.2 6 25.5 6.5 25.3 1.1 61.3 1.5 61.3 1.5-13.2-59.4-33.7-56.1-113-55.4zm169.1 123.4c-3.2-5.3-6.9-7.3-6.9-7.3-24.8 7.3-52.2 6.9-75.9 0 0 0-2.9 1.5-6.4 6.6-2.8 4.1-3.7 9.6-3.7 9.6 29.1 17.6 67.1 17.6 96.2 0-.1-.1-.3-4-3.3-8.9z"], + "nimblr": [355, 512, [], "f5a8", "M232.6 299.29c15.57 0 27.15 11.46 27.15 26.96 0 15.55-11.62 26.96-27.15 26.96-15.7 0-27.15-11.57-27.15-26.96 0-15.51 11.58-26.96 27.15-26.96zM99.01 326.25c0-15.61 11.68-26.96 27.15-26.96 15.57 0 27.15 11.46 27.15 26.96 0 15.41-11.47 26.96-27.15 26.96-15.44 0-27.15-11.31-27.15-26.96m78.75-167.3C143 158.95 75.45 178.77 45.25 227L0 0v335.48C0 433.13 79.61 512 177.76 512c98.24 0 177.76-78.95 177.76-176.52 0-97.46-79.39-176.53-177.76-176.53zm0 308.12c-73.27 0-132.51-58.9-132.51-131.59 0-72.68 59.24-131.59 132.51-131.59 73.27 0 132.51 58.91 132.51 131.59s-59.25 131.59-132.51 131.59z"], + "nintendo-switch": [448, 512, [], "f418", "M95.9 33.5c-44.6 8-80.5 41-91.8 84.4C0 133.6-.3 142.8.2 264.4.4 376 .5 378.6 2.4 387.3c10.3 46.5 43.3 79.6 90.3 90.5 6.1 1.4 13.9 1.7 64.1 1.9 51.9.4 57.3.3 58.7-1.1 1.4-1.4 1.5-19.3 1.5-222.2 0-150.5-.3-221.3-.9-222.6-.9-1.7-2.5-1.8-56.9-1.7-44.2.1-57.5.4-63.3 1.4zm83.9 222.6V444l-37.8-.5c-34.8-.4-38.5-.6-45.5-2.3-29.9-7.7-52-30.7-58.3-60.7-2-9.4-2-240.1-.1-249.3 5.6-26.1 23.7-47.7 48-57.4 12.2-4.9 17.9-5.5 57.6-5.6l35.9-.1v188zm-75.9-131.2c-5.8 1.1-14.7 5.6-19.5 9.7-9.7 8.4-14.6 20.4-13.8 34.5.4 7.3.8 9.3 3.8 15.2 4.4 9 10.9 15.6 19.9 20 6.2 3.1 7.8 3.4 15.9 3.7 7.3.3 9.9 0 14.8-1.7 20.1-6.8 32.3-26.3 28.8-46.4-3.9-23.7-26.6-39.7-49.9-35zm158.2-92.3c-.4.3-.6 100.8-.6 223.5 0 202.3.1 222.8 1.5 223.4 2.5.9 74.5.6 83.4-.4 37.7-4.3 71-27.2 89-61.2 2.3-4.4 5.4-11.7 7-16.2 5.8-17.4 5.7-12.8 5.7-146.1 0-106.4-.2-122.3-1.5-129-9.2-48.3-46.1-84.8-94.5-93.1-6.5-1.1-16.5-1.4-48.8-1.4-22.4-.1-40.9.2-41.2.5zm99.1 202.1c14.5 3.8 26.3 14.8 31.2 28.9 3.1 8.7 3 21.5-.1 29.5-5.7 14.7-16.8 25-31.1 28.8-23.2 6-47.9-8-54.6-31-2-7-1.9-18.9.4-26.2 6.9-22.7 31-36.1 54.2-30z"], + "node": [640, 512, [], "f419", "M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4.1l14.8 8.8c.5.3 1.3.3 1.8 0L375 408c.5-.3.9-.9.9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6.3-.9 1-.9 1.6v66.7c0 .6.4 1.2.9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9.7-1.7 1.7-1.7h7.3c.9 0 1.7.7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7zm46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6.2.8.8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5.3-.4.5-.8.4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7.7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8zm54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1zm-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3 0 5.2 4.2 9.4 9.3 9.4 5.2-.1 9.4-4.3 9.4-9.4zm-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7.1 1.8 1.2 2.1 2.8.1 1 .3 2.7.6 3.3zm-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8zM137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3.4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3.7 2.5 1.8 3.2 1.1.7 2.5.7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1 1.3 0 2.6.3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1.7 2.6.7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2l.2-95zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4zm-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6.3-.9.9-.9 1.6v24.3c0 .7.4 1.3.9 1.6l21 12.1c.6.3 1.3.3 1.8 0l21-12.1c.6-.3.9-.9.9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3.7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1.7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2l36.7-21.3zM559 219c-.4.3-.7.7-.7 1.2v13.6c0 .5.3 1 .7 1.2l11.8 6.8c.4.3 1 .3 1.4 0L584 235c.4-.3.7-.7.7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0L559 219zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7.1-.5.2-1.1.2-1.7zm-74.3-124.9l-.8.5h1.1l-.3-.5zm76.2 130.2l-.4-.7v.9l.4-.2z"], + "node-js": [448, 512, [], "f3d3", "M224 508c-6.7 0-13.5-1.8-19.4-5.2l-61.7-36.5c-9.2-5.2-4.7-7-1.7-8 12.3-4.3 14.8-5.2 27.9-12.7 1.4-.8 3.2-.5 4.6.4l47.4 28.1c1.7 1 4.1 1 5.7 0l184.7-106.6c1.7-1 2.8-3 2.8-5V149.3c0-2.1-1.1-4-2.9-5.1L226.8 37.7c-1.7-1-4-1-5.7 0L36.6 144.3c-1.8 1-2.9 3-2.9 5.1v213.1c0 2 1.1 4 2.9 4.9l50.6 29.2c27.5 13.7 44.3-2.4 44.3-18.7V167.5c0-3 2.4-5.3 5.4-5.3h23.4c2.9 0 5.4 2.3 5.4 5.3V378c0 36.6-20 57.6-54.7 57.6-10.7 0-19.1 0-42.5-11.6l-48.4-27.9C8.1 389.2.7 376.3.7 362.4V149.3c0-13.8 7.4-26.8 19.4-33.7L204.6 9c11.7-6.6 27.2-6.6 38.8 0l184.7 106.7c12 6.9 19.4 19.8 19.4 33.7v213.1c0 13.8-7.4 26.7-19.4 33.7L243.4 502.8c-5.9 3.4-12.6 5.2-19.4 5.2zm149.1-210.1c0-39.9-27-50.5-83.7-58-57.4-7.6-63.2-11.5-63.2-24.9 0-11.1 4.9-25.9 47.4-25.9 37.9 0 51.9 8.2 57.7 33.8.5 2.4 2.7 4.2 5.2 4.2h24c1.5 0 2.9-.6 3.9-1.7s1.5-2.6 1.4-4.1c-3.7-44.1-33-64.6-92.2-64.6-52.7 0-84.1 22.2-84.1 59.5 0 40.4 31.3 51.6 81.8 56.6 60.5 5.9 65.2 14.8 65.2 26.7 0 20.6-16.6 29.4-55.5 29.4-48.9 0-59.6-12.3-63.2-36.6-.4-2.6-2.6-4.5-5.3-4.5h-23.9c-3 0-5.3 2.4-5.3 5.3 0 31.1 16.9 68.2 97.8 68.2 58.4-.1 92-23.2 92-63.4z"], + "npm": [576, 512, [], "f3d4", "M288 288h-32v-64h32v64zm288-128v192H288v32H160v-32H0V160h576zm-416 32H32v128h64v-96h32v96h32V192zm160 0H192v160h64v-32h64V192zm224 0H352v128h64v-96h32v96h32v-96h32v96h32V192z"], + "ns8": [640, 512, [], "f3d5", "M187.1 159.9l-34.2 113.7-54.5-113.7H49L0 320h44.9L76 213.5 126.6 320h56.9L232 159.9h-44.9zm452.5-.9c-2.9-18-23.9-28.1-42.1-31.3-44.6-7.8-101.9 16.3-88.5 58.8v.1c-43.8 8.7-74.3 26.8-94.2 48.2-3-9.8-13.6-16.6-34-16.6h-87.6c-9.3 0-12.9-2.3-11.5-7.4 1.6-5.5 1.9-6.8 3.7-12.2 2.1-6.4 7.8-7.1 13.3-7.1h133.5l9.7-31.5c-139.7 0-144.5-.5-160.1 1.2-12.3 1.3-23.5 4.8-30.6 15-6.8 9.9-14.4 35.6-17.6 47.1-5.4 19.4-.6 28.6 32.8 28.6h87.3c7.8 0 8.8 2.7 7.7 6.6-1.1 4.4-2.8 10-4.5 14.6-1.6 4.2-4.7 7.4-13.8 7.4H216.3L204.7 320c139.9 0 145.3-.6 160.9-2.3 6.6-.7 13-2.1 18.5-4.9.2 3.7.5 7.3 1.2 10.8 5.4 30.5 27.4 52.3 56.8 59.5 48.6 11.9 108.7-16.8 135.1-68 18.7-36.2 14.1-76.2-3.4-105.5h.1c29.6-5.9 70.3-22 65.7-50.6zM530.7 263.7c-5.9 29.5-36.6 47.8-61.6 43.9-30.9-4.8-38.5-39.5-14.1-64.8 16.2-16.8 45.2-24 68.5-26.9 6.7 14.1 10.3 32 7.2 47.8zm21.8-83.1c-4.2-6-9.8-18.5-2.5-26.3 6.7-7.2 20.9-10.1 31.8-7.7 15.3 3.4 19.7 15.9 4.9 24.4-10.7 6.1-23.6 8.1-34.2 9.6z"], + "nutritionix": [400, 512, [], "f3d6", "M88 8.1S221.4-.1 209 112.5c0 0 19.1-74.9 103-40.6 0 0-17.7 74-88 56 0 0 14.6-54.6 66.1-56.6 0 0-39.9-10.3-82.1 48.8 0 0-19.8-94.5-93.6-99.7 0 0 75.2 19.4 77.6 107.5 0 .1-106.4 7-104-119.8zm312 315.6c0 48.5-9.7 95.3-32 132.3-42.2 30.9-105 48-168 48-62.9 0-125.8-17.1-168-48C9.7 419 0 372.2 0 323.7 0 275.3 17.7 229 40 192c42.2-30.9 97.1-48.6 160-48.6 63 0 117.8 17.6 160 48.6 22.3 37 40 83.3 40 131.7zM120 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM192 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM264 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM336 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm24-39.6c-4.8-22.3-7.4-36.9-16-56-38.8-19.9-90.5-32-144-32S94.8 180.1 56 200c-8.8 19.5-11.2 33.9-16 56 42.2-7.9 98.7-14.8 160-14.8s117.8 6.9 160 14.8z"], + "odnoklassniki": [320, 512, [], "f263", "M275.1 334c-27.4 17.4-65.1 24.3-90 26.9l20.9 20.6 76.3 76.3c27.9 28.6-17.5 73.3-45.7 45.7-19.1-19.4-47.1-47.4-76.3-76.6L84 503.4c-28.2 27.5-73.6-17.6-45.4-45.7 19.4-19.4 47.1-47.4 76.3-76.3l20.6-20.6c-24.6-2.6-62.9-9.1-90.6-26.9-32.6-21-46.9-33.3-34.3-59 7.4-14.6 27.7-26.9 54.6-5.7 0 0 36.3 28.9 94.9 28.9s94.9-28.9 94.9-28.9c26.9-21.1 47.1-8.9 54.6 5.7 12.4 25.7-1.9 38-34.5 59.1zM30.3 129.7C30.3 58 88.6 0 160 0s129.7 58 129.7 129.7c0 71.4-58.3 129.4-129.7 129.4s-129.7-58-129.7-129.4zm66 0c0 35.1 28.6 63.7 63.7 63.7s63.7-28.6 63.7-63.7c0-35.4-28.6-64-63.7-64s-63.7 28.6-63.7 64z"], + "odnoklassniki-square": [448, 512, [], "f264", "M184.2 177.1c0-22.1 17.9-40 39.8-40s39.8 17.9 39.8 40c0 22-17.9 39.8-39.8 39.8s-39.8-17.9-39.8-39.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-305.1 97.1c0 44.6 36.4 80.9 81.1 80.9s81.1-36.2 81.1-80.9c0-44.8-36.4-81.1-81.1-81.1s-81.1 36.2-81.1 81.1zm174.5 90.7c-4.6-9.1-17.3-16.8-34.1-3.6 0 0-22.7 18-59.3 18s-59.3-18-59.3-18c-16.8-13.2-29.5-5.5-34.1 3.6-7.9 16.1 1.1 23.7 21.4 37 17.3 11.1 41.2 15.2 56.6 16.8l-12.9 12.9c-18.2 18-35.5 35.5-47.7 47.7-17.6 17.6 10.7 45.8 28.4 28.6l47.7-47.9c18.2 18.2 35.7 35.7 47.7 47.9 17.6 17.2 46-10.7 28.6-28.6l-47.7-47.7-13-12.9c15.5-1.6 39.1-5.9 56.2-16.8 20.4-13.3 29.3-21 21.5-37z"], + "old-republic": [496, 512, [], "f510", "M235.76 10.23c7.5-.31 15-.28 22.5-.09 3.61.14 7.2.4 10.79.73 4.92.27 9.79 1.03 14.67 1.62 2.93.43 5.83.98 8.75 1.46 7.9 1.33 15.67 3.28 23.39 5.4 12.24 3.47 24.19 7.92 35.76 13.21 26.56 12.24 50.94 29.21 71.63 49.88 20.03 20.09 36.72 43.55 48.89 69.19 1.13 2.59 2.44 5.1 3.47 7.74 2.81 6.43 5.39 12.97 7.58 19.63 4.14 12.33 7.34 24.99 9.42 37.83.57 3.14 1.04 6.3 1.4 9.47.55 3.83.94 7.69 1.18 11.56.83 8.34.84 16.73.77 25.1-.07 4.97-.26 9.94-.75 14.89-.24 3.38-.51 6.76-.98 10.12-.39 2.72-.63 5.46-1.11 8.17-.9 5.15-1.7 10.31-2.87 15.41-4.1 18.5-10.3 36.55-18.51 53.63-15.77 32.83-38.83 62.17-67.12 85.12a246.503 246.503 0 0 1-56.91 34.86c-6.21 2.68-12.46 5.25-18.87 7.41-3.51 1.16-7.01 2.38-10.57 3.39-6.62 1.88-13.29 3.64-20.04 5-4.66.91-9.34 1.73-14.03 2.48-5.25.66-10.5 1.44-15.79 1.74-6.69.66-13.41.84-20.12.81-6.82.03-13.65-.12-20.45-.79-3.29-.23-6.57-.5-9.83-.95-2.72-.39-5.46-.63-8.17-1.11-4.12-.72-8.25-1.37-12.35-2.22-4.25-.94-8.49-1.89-12.69-3.02-8.63-2.17-17.08-5.01-25.41-8.13-10.49-4.12-20.79-8.75-30.64-14.25-2.14-1.15-4.28-2.29-6.35-3.57-11.22-6.58-21.86-14.1-31.92-22.34-34.68-28.41-61.41-66.43-76.35-108.7-3.09-8.74-5.71-17.65-7.8-26.68-1.48-6.16-2.52-12.42-3.58-18.66-.4-2.35-.61-4.73-.95-7.09-.6-3.96-.75-7.96-1.17-11.94-.8-9.47-.71-18.99-.51-28.49.14-3.51.34-7.01.7-10.51.31-3.17.46-6.37.92-9.52.41-2.81.65-5.65 1.16-8.44.7-3.94 1.3-7.9 2.12-11.82 3.43-16.52 8.47-32.73 15.26-48.18 1.15-2.92 2.59-5.72 3.86-8.59 8.05-16.71 17.9-32.56 29.49-47.06 20-25.38 45.1-46.68 73.27-62.47 7.5-4.15 15.16-8.05 23.07-11.37 15.82-6.88 32.41-11.95 49.31-15.38 3.51-.67 7.04-1.24 10.56-1.85 2.62-.47 5.28-.7 7.91-1.08 3.53-.53 7.1-.68 10.65-1.04 2.46-.24 4.91-.36 7.36-.51m8.64 24.41c-9.23.1-18.43.99-27.57 2.23-7.3 1.08-14.53 2.6-21.71 4.3-13.91 3.5-27.48 8.34-40.46 14.42-10.46 4.99-20.59 10.7-30.18 17.22-4.18 2.92-8.4 5.8-12.34 9.03-5.08 3.97-9.98 8.17-14.68 12.59-2.51 2.24-4.81 4.7-7.22 7.06-28.22 28.79-48.44 65.39-57.5 104.69-2.04 8.44-3.54 17.02-4.44 25.65-1.1 8.89-1.44 17.85-1.41 26.8.11 7.14.38 14.28 1.22 21.37.62 7.12 1.87 14.16 3.2 21.18 1.07 4.65 2.03 9.32 3.33 13.91 6.29 23.38 16.5 45.7 30.07 65.75 8.64 12.98 18.78 24.93 29.98 35.77 16.28 15.82 35.05 29.04 55.34 39.22 7.28 3.52 14.66 6.87 22.27 9.63 5.04 1.76 10.06 3.57 15.22 4.98 11.26 3.23 22.77 5.6 34.39 7.06 2.91.29 5.81.61 8.72.9 13.82 1.08 27.74 1 41.54-.43 4.45-.6 8.92-.99 13.35-1.78 3.63-.67 7.28-1.25 10.87-2.1 4.13-.98 8.28-1.91 12.36-3.07 26.5-7.34 51.58-19.71 73.58-36.2 15.78-11.82 29.96-25.76 42.12-41.28 3.26-4.02 6.17-8.31 9.13-12.55 3.39-5.06 6.58-10.25 9.6-15.54 2.4-4.44 4.74-8.91 6.95-13.45 5.69-12.05 10.28-24.62 13.75-37.49 2.59-10.01 4.75-20.16 5.9-30.45 1.77-13.47 1.94-27.1 1.29-40.65-.29-3.89-.67-7.77-1-11.66-2.23-19.08-6.79-37.91-13.82-55.8-5.95-15.13-13.53-29.63-22.61-43.13-12.69-18.8-28.24-35.68-45.97-49.83-25.05-20-54.47-34.55-85.65-42.08-7.78-1.93-15.69-3.34-23.63-4.45-3.91-.59-7.85-.82-11.77-1.24-7.39-.57-14.81-.72-22.22-.58zM139.26 83.53c13.3-8.89 28.08-15.38 43.3-20.18-3.17 1.77-6.44 3.38-9.53 5.29-11.21 6.68-21.52 14.9-30.38 24.49-6.8 7.43-12.76 15.73-17.01 24.89-3.29 6.86-5.64 14.19-6.86 21.71-.93 4.85-1.3 9.81-1.17 14.75.13 13.66 4.44 27.08 11.29 38.82 5.92 10.22 13.63 19.33 22.36 27.26 4.85 4.36 10.24 8.09 14.95 12.6 2.26 2.19 4.49 4.42 6.43 6.91 2.62 3.31 4.89 6.99 5.99 11.1.9 3.02.66 6.2.69 9.31.02 4.1-.04 8.2.03 12.3.14 3.54-.02 7.09.11 10.63.08 2.38.02 4.76.05 7.14.16 5.77.06 11.53.15 17.3.11 2.91.02 5.82.13 8.74.03 1.63.13 3.28-.03 4.91-.91.12-1.82.18-2.73.16-10.99 0-21.88-2.63-31.95-6.93-6-2.7-11.81-5.89-17.09-9.83-5.75-4.19-11.09-8.96-15.79-14.31-6.53-7.24-11.98-15.39-16.62-23.95-1.07-2.03-2.24-4.02-3.18-6.12-1.16-2.64-2.62-5.14-3.67-7.82-4.05-9.68-6.57-19.94-8.08-30.31-.49-4.44-1.09-8.88-1.2-13.35-.7-15.73.84-31.55 4.67-46.82 2.12-8.15 4.77-16.18 8.31-23.83 6.32-14.2 15.34-27.18 26.3-38.19 6.28-6.2 13.13-11.84 20.53-16.67zm175.37-20.12c2.74.74 5.41 1.74 8.09 2.68 6.36 2.33 12.68 4.84 18.71 7.96 13.11 6.44 25.31 14.81 35.82 24.97 10.2 9.95 18.74 21.6 25.14 34.34 1.28 2.75 2.64 5.46 3.81 8.26 6.31 15.1 10 31.26 11.23 47.57.41 4.54.44 9.09.45 13.64.07 11.64-1.49 23.25-4.3 34.53-1.97 7.27-4.35 14.49-7.86 21.18-3.18 6.64-6.68 13.16-10.84 19.24-6.94 10.47-15.6 19.87-25.82 27.22-10.48 7.64-22.64 13.02-35.4 15.38-3.51.69-7.08 1.08-10.66 1.21-1.85.06-3.72.16-5.56-.1-.28-2.15 0-4.31-.01-6.46-.03-3.73.14-7.45.1-11.17.19-7.02.02-14.05.21-21.07.03-2.38-.03-4.76.03-7.14.17-5.07-.04-10.14.14-15.21.1-2.99-.24-6.04.51-8.96.66-2.5 1.78-4.86 3.09-7.08 4.46-7.31 11.06-12.96 17.68-18.26 5.38-4.18 10.47-8.77 15.02-13.84 7.68-8.37 14.17-17.88 18.78-28.27 2.5-5.93 4.52-12.1 5.55-18.46.86-4.37 1.06-8.83 1.01-13.27-.02-7.85-1.4-15.65-3.64-23.17-1.75-5.73-4.27-11.18-7.09-16.45-3.87-6.93-8.65-13.31-13.96-19.2-9.94-10.85-21.75-19.94-34.6-27.1-1.85-1.02-3.84-1.82-5.63-2.97zm-100.8 58.45c.98-1.18 1.99-2.33 3.12-3.38-.61.93-1.27 1.81-1.95 2.68-3.1 3.88-5.54 8.31-7.03 13.06-.87 3.27-1.68 6.6-1.73 10-.07 2.52-.08 5.07.32 7.57 1.13 7.63 4.33 14.85 8.77 21.12 2 2.7 4.25 5.27 6.92 7.33 1.62 1.27 3.53 2.09 5.34 3.05 3.11 1.68 6.32 3.23 9.07 5.48 2.67 2.09 4.55 5.33 4.4 8.79-.01 73.67 0 147.34-.01 221.02 0 1.35-.08 2.7.04 4.04.13 1.48.82 2.83 1.47 4.15.86 1.66 1.78 3.34 3.18 4.62.85.77 1.97 1.4 3.15 1.24 1.5-.2 2.66-1.35 3.45-2.57.96-1.51 1.68-3.16 2.28-4.85.76-2.13.44-4.42.54-6.63.14-4.03-.02-8.06.14-12.09.03-5.89.03-11.77.06-17.66.14-3.62.03-7.24.11-10.86.15-4.03-.02-8.06.14-12.09.03-5.99.03-11.98.07-17.97.14-3.62.02-7.24.11-10.86.14-3.93-.02-7.86.14-11.78.03-5.99.03-11.98.06-17.97.16-3.94-.01-7.88.19-11.82.29 1.44.13 2.92.22 4.38.19 3.61.42 7.23.76 10.84.32 3.44.44 6.89.86 10.32.37 3.1.51 6.22.95 9.31.57 4.09.87 8.21 1.54 12.29 1.46 9.04 2.83 18.11 5.09 26.99 1.13 4.82 2.4 9.61 4 14.3 2.54 7.9 5.72 15.67 10.31 22.62 1.73 2.64 3.87 4.98 6.1 7.21.27.25.55.51.88.71.6.25 1.31-.07 1.7-.57.71-.88 1.17-1.94 1.7-2.93 4.05-7.8 8.18-15.56 12.34-23.31.7-1.31 1.44-2.62 2.56-3.61 1.75-1.57 3.84-2.69 5.98-3.63 2.88-1.22 5.9-2.19 9.03-2.42 6.58-.62 13.11.75 19.56 1.85 3.69.58 7.4 1.17 11.13 1.41 3.74.1 7.48.05 11.21-.28 8.55-.92 16.99-2.96 24.94-6.25 5.3-2.24 10.46-4.83 15.31-7.93 11.46-7.21 21.46-16.57 30.04-27.01 1.17-1.42 2.25-2.9 3.46-4.28-1.2 3.24-2.67 6.37-4.16 9.48-1.25 2.9-2.84 5.61-4.27 8.42-5.16 9.63-11.02 18.91-17.75 27.52-4.03 5.21-8.53 10.05-13.33 14.57-6.64 6.05-14.07 11.37-22.43 14.76-8.21 3.37-17.31 4.63-26.09 3.29-3.56-.58-7.01-1.69-10.41-2.88-2.79-.97-5.39-2.38-8.03-3.69-3.43-1.71-6.64-3.81-9.71-6.08 2.71 3.06 5.69 5.86 8.7 8.61 4.27 3.76 8.74 7.31 13.63 10.23 3.98 2.45 8.29 4.4 12.84 5.51 1.46.37 2.96.46 4.45.6-1.25 1.1-2.63 2.04-3.99 2.98-9.61 6.54-20.01 11.86-30.69 16.43-20.86 8.7-43.17 13.97-65.74 15.34-4.66.24-9.32.36-13.98.36-4.98-.11-9.97-.13-14.92-.65-11.2-.76-22.29-2.73-33.17-5.43-10.35-2.71-20.55-6.12-30.3-10.55-8.71-3.86-17.12-8.42-24.99-13.79-1.83-1.31-3.74-2.53-5.37-4.08 6.6-1.19 13.03-3.39 18.99-6.48 5.74-2.86 10.99-6.66 15.63-11.07 2.24-2.19 4.29-4.59 6.19-7.09-3.43 2.13-6.93 4.15-10.62 5.78-4.41 2.16-9.07 3.77-13.81 5.02-5.73 1.52-11.74 1.73-17.61 1.14-8.13-.95-15.86-4.27-22.51-8.98-4.32-2.94-8.22-6.43-11.96-10.06-9.93-10.16-18.2-21.81-25.66-33.86-3.94-6.27-7.53-12.75-11.12-19.22-1.05-2.04-2.15-4.05-3.18-6.1 2.85 2.92 5.57 5.97 8.43 8.88 8.99 8.97 18.56 17.44 29.16 24.48 7.55 4.9 15.67 9.23 24.56 11.03 3.11.73 6.32.47 9.47.81 2.77.28 5.56.2 8.34.3 5.05.06 10.11.04 15.16-.16 3.65-.16 7.27-.66 10.89-1.09 2.07-.25 4.11-.71 6.14-1.2 3.88-.95 8.11-.96 11.83.61 4.76 1.85 8.44 5.64 11.38 9.71 2.16 3.02 4.06 6.22 5.66 9.58 1.16 2.43 2.46 4.79 3.55 7.26 1 2.24 2.15 4.42 3.42 6.52.67 1.02 1.4 2.15 2.62 2.55 1.06-.75 1.71-1.91 2.28-3.03 2.1-4.16 3.42-8.65 4.89-13.05 2.02-6.59 3.78-13.27 5.19-20.02 2.21-9.25 3.25-18.72 4.54-28.13.56-3.98.83-7.99 1.31-11.97.87-10.64 1.9-21.27 2.24-31.94.08-1.86.24-3.71.25-5.57.01-4.35.25-8.69.22-13.03-.01-2.38-.01-4.76 0-7.13.05-5.07-.2-10.14-.22-15.21-.2-6.61-.71-13.2-1.29-19.78-.73-5.88-1.55-11.78-3.12-17.51-2.05-7.75-5.59-15.03-9.8-21.82-3.16-5.07-6.79-9.88-11.09-14.03-3.88-3.86-8.58-7.08-13.94-8.45-1.5-.41-3.06-.45-4.59-.64.07-2.99.7-5.93 1.26-8.85 1.59-7.71 3.8-15.3 6.76-22.6 1.52-4.03 3.41-7.9 5.39-11.72 3.45-6.56 7.62-12.79 12.46-18.46zm31.27 1.7c.35-.06.71-.12 1.07-.19.19 1.79.09 3.58.1 5.37v38.13c-.01 1.74.13 3.49-.15 5.22-.36-.03-.71-.05-1.06-.05-.95-3.75-1.72-7.55-2.62-11.31-.38-1.53-.58-3.09-1.07-4.59-1.7-.24-3.43-.17-5.15-.2-5.06-.01-10.13 0-15.19-.01-1.66-.01-3.32.09-4.98-.03-.03-.39-.26-.91.16-1.18 1.28-.65 2.72-.88 4.06-1.35 3.43-1.14 6.88-2.16 10.31-3.31 1.39-.48 2.9-.72 4.16-1.54.04-.56.02-1.13-.05-1.68-1.23-.55-2.53-.87-3.81-1.28-3.13-1.03-6.29-1.96-9.41-3.02-1.79-.62-3.67-1-5.41-1.79-.03-.37-.07-.73-.11-1.09 5.09-.19 10.2.06 15.3-.12 3.36-.13 6.73.08 10.09-.07.12-.39.26-.77.37-1.16 1.08-4.94 2.33-9.83 3.39-14.75zm5.97-.2c.36.05.72.12 1.08.2.98 3.85 1.73 7.76 2.71 11.61.36 1.42.56 2.88 1.03 4.27 2.53.18 5.07-.01 7.61.05 5.16.12 10.33.12 15.49.07.76-.01 1.52.03 2.28.08-.04.36-.07.72-.1 1.08-1.82.83-3.78 1.25-5.67 1.89-3.73 1.23-7.48 2.39-11.22 3.57-.57.17-1.12.42-1.67.64-.15.55-.18 1.12-.12 1.69.87.48 1.82.81 2.77 1.09 4.88 1.52 9.73 3.14 14.63 4.6.38.13.78.27 1.13.49.4.27.23.79.15 1.18-1.66.13-3.31.03-4.97.04-5.17.01-10.33-.01-15.5.01-1.61.03-3.22-.02-4.82.21-.52 1.67-.72 3.42-1.17 5.11-.94 3.57-1.52 7.24-2.54 10.78-.36.01-.71.02-1.06.06-.29-1.73-.15-3.48-.15-5.22v-38.13c.02-1.78-.08-3.58.11-5.37zM65.05 168.33c1.12-2.15 2.08-4.4 3.37-6.46-1.82 7.56-2.91 15.27-3.62 23-.8 7.71-.85 15.49-.54 23.23 1.05 19.94 5.54 39.83 14.23 57.88 2.99 5.99 6.35 11.83 10.5 17.11 6.12 7.47 12.53 14.76 19.84 21.09 4.8 4.1 9.99 7.78 15.54 10.8 3.27 1.65 6.51 3.39 9.94 4.68 5.01 2.03 10.19 3.61 15.42 4.94 3.83.96 7.78 1.41 11.52 2.71 5 1.57 9.47 4.61 13.03 8.43 4.93 5.23 8.09 11.87 10.2 18.67.99 2.9 1.59 5.91 2.17 8.92.15.75.22 1.52.16 2.29-6.5 2.78-13.26 5.06-20.26 6.18-4.11.78-8.29.99-12.46 1.08-10.25.24-20.47-1.76-30.12-5.12-3.74-1.42-7.49-2.85-11.03-4.72-8.06-3.84-15.64-8.7-22.46-14.46-2.92-2.55-5.83-5.13-8.4-8.03-9.16-9.83-16.3-21.41-21.79-33.65-2.39-5.55-4.61-11.18-6.37-16.96-1.17-3.94-2.36-7.89-3.26-11.91-.75-2.94-1.22-5.95-1.87-8.92-.46-2.14-.69-4.32-1.03-6.48-.85-5.43-1.28-10.93-1.33-16.43.11-6.18.25-12.37 1.07-18.5.4-2.86.67-5.74 1.15-8.6.98-5.7 2.14-11.37 3.71-16.93 3.09-11.65 7.48-22.95 12.69-33.84zm363.73-6.44c1.1 1.66 1.91 3.48 2.78 5.26 2.1 4.45 4.24 8.9 6.02 13.49 7.61 18.76 12.3 38.79 13.04 59.05.02 1.76.07 3.52.11 5.29.13 9.57-1.27 19.09-3.18 28.45-.73 3.59-1.54 7.17-2.58 10.69-4.04 14.72-10 29-18.41 41.78-8.21 12.57-19.01 23.55-31.84 31.41-5.73 3.59-11.79 6.64-18.05 9.19-5.78 2.19-11.71 4.03-17.8 5.11-6.4 1.05-12.91 1.52-19.4 1.23-7.92-.48-15.78-2.07-23.21-4.85-1.94-.8-3.94-1.46-5.84-2.33-.21-1.51.25-2.99.53-4.46 1.16-5.74 3.03-11.36 5.7-16.58 2.37-4.51 5.52-8.65 9.46-11.9 2.43-2.05 5.24-3.61 8.16-4.83 3.58-1.5 7.47-1.97 11.24-2.83 7.23-1.71 14.37-3.93 21.15-7 10.35-4.65 19.71-11.38 27.65-19.46 1.59-1.61 3.23-3.18 4.74-4.87 3.37-3.76 6.71-7.57 9.85-11.53 7.48-10.07 12.82-21.59 16.71-33.48 1.58-5.3 3.21-10.6 4.21-16.05.63-2.87 1.04-5.78 1.52-8.68.87-6.09 1.59-12.22 1.68-18.38.12-6.65.14-13.32-.53-19.94-.73-7.99-1.87-15.96-3.71-23.78z"], + "opencart": [640, 512, [], "f23d", "M423.3 440.7c0 25.3-20.3 45.6-45.6 45.6s-45.8-20.3-45.8-45.6 20.6-45.8 45.8-45.8c25.4 0 45.6 20.5 45.6 45.8zm-253.9-45.8c-25.3 0-45.6 20.6-45.6 45.8s20.3 45.6 45.6 45.6 45.8-20.3 45.8-45.6-20.5-45.8-45.8-45.8zm291.7-270C158.9 124.9 81.9 112.1 0 25.7c34.4 51.7 53.3 148.9 373.1 144.2 333.3-5 130 86.1 70.8 188.9 186.7-166.7 319.4-233.9 17.2-233.9z"], + "openid": [448, 512, [], "f19b", "M271.5 432l-68 32C88.5 453.7 0 392.5 0 318.2c0-71.5 82.5-131 191.7-144.3v43c-71.5 12.5-124 53-124 101.3 0 51 58.5 93.3 135.7 103v-340l68-33.2v384zM448 291l-131.3-28.5 36.8-20.7c-19.5-11.5-43.5-20-70-24.8v-43c46.2 5.5 87.7 19.5 120.3 39.3l35-19.8L448 291z"], + "opera": [496, 512, [], "f26a", "M313.9 32.7c-170.2 0-252.6 223.8-147.5 355.1 36.5 45.4 88.6 75.6 147.5 75.6 36.3 0 70.3-11.1 99.4-30.4-43.8 39.2-101.9 63-165.3 63-3.9 0-8 0-11.9-.3C104.6 489.6 0 381.1 0 248 0 111 111 0 248 0h.8c63.1.3 120.7 24.1 164.4 63.1-29-19.4-63.1-30.4-99.3-30.4zm101.8 397.7c-40.9 24.7-90.7 23.6-132-5.8 56.2-20.5 97.7-91.6 97.7-176.6 0-84.7-41.2-155.8-97.4-176.6 41.8-29.2 91.2-30.3 132.9-5 105.9 98.7 105.5 265.7-1.2 364z"], + "optin-monster": [576, 512, [], "f23c", "M550.671 450.303c0 11.62-15.673 19.457-32.158 14.863-12.16-3.243-31.346-17.565-36.211-27.294-5.674-11.62 4.054-32.698 18.916-30.806 15.674 1.621 49.453 25.401 49.453 43.237zM372.86 75.223c-3.783-72.151-100.796-79.718-125.928-23.51 44.588-24.321 90.257-15.673 125.928 23.51zM74.795 407.066c-15.673 1.621-49.452 25.401-49.452 43.237 0 11.62 15.673 19.457 32.157 14.863 12.16-3.243 31.076-17.565 35.94-27.294 5.946-11.62-3.782-32.698-18.645-30.806zm497.765 14.322c1.081 3.513 1.892 7.026 1.892 10.809.81 31.616-44.317 64.045-73.503 65.125-17.295.81-34.59-8.377-42.696-23.51-113.497 4.053-226.994 4.864-340.22 0-8.377 15.133-25.672 24.05-42.967 23.51-28.915-1.081-74.043-33.509-73.503-65.125.27-3.783.811-7.296 1.892-10.809-5.566-9.463-4.845-15.282 5.405-11.62 3.243-5.134 7.026-9.458 11.08-13.782-2.57-10.917 1.27-14.094 11.079-9.188 4.594-3.243 9.998-6.485 15.944-9.188 0-15.757 11.839-11.131 17.295-5.675 12.467-1.78 20.129.709 26.753 5.675v-19.726c-12.987 0-40.641-11.375-45.94-36.212-4.974-20.725 2.607-38.075 25.132-47.56.81-5.945 8.107-14.052 14.862-15.944 7.567-1.892 12.431 4.594 14.052 10.269 7.425 0 17.757 1.465 21.078 8.107 5.405-.541 11.079-1.352 16.484-1.892-2.432-1.892-5.134-3.513-8.107-4.594-5.134-8.917-13.782-11.079-24.591-11.62 0-.81 0-1.621.27-2.702-19.727-.541-44.048-5.675-54.857-17.835-21.321-23.638-15.935-83.577 12.16-103.498 8.377-5.675 21.618-.811 22.699 9.728 2.425 20.598.399 26.833 26.212 25.942 8.107-7.836 16.755-14.592 26.483-19.997-14.862-1.352-28.914 1.621-43.778 3.783 12.752-12.48 23.953-25.442 56.748-42.427 23.511-11.89 49.993-20.808 76.205-23.239-18.646-7.837-39.993-11.891-59.721-16.484 76.475-16.214 174.569-22.159 244.289 37.562 18.105 15.403 32.427 36.211 42.696 59.992 39.799 4.853 36.47-5.581 38.643-25.132 1.081-10.269 14.322-15.403 22.699-9.458 14.862 10.539 22.159 30.806 24.59 48.101 2.162 17.835.27 41.345-12.43 55.127-10.809 12.16-34.32 17.565-53.776 18.105v2.703c-11.08.27-20.268 2.432-25.673 11.62-2.972 1.081-5.674 2.703-8.377 4.594 5.675.54 11.35 1.351 16.755 1.891 1.869-5.619 12.535-8.377 21.077-8.377 1.621-5.405 6.756-11.89 14.052-10.269s14.052 9.998 14.863 15.944c10.809 4.324 22.159 12.16 25.131 25.672 1.892 8.107 1.621 15.133.27 21.888-5.726 25.262-33.361 36.212-45.939 36.212 0 6.756 0 13.241-.27 19.726 8.01-6.006 16.367-7.158 26.752-5.675 5.919-5.919 17.565-9.41 17.565 5.675 5.675 2.703 11.349 5.945 15.944 9.188 10.1-5.051 13.669-.539 10.809 9.188 4.053 4.323 8.107 8.917 11.079 13.782 10.136-3.62 11.021 2.078 5.409 11.62zm-73.773-254.016c17.295 6.756 26.212 22.159 30.265 35.67 1.081-10.539-2.702-39.453-13.782-51.073-7.296-7.296-14.052-5.134-14.052.81.001 6.216-1.35 11.62-2.431 14.593zm-18.646 12.43c12.971 15.673 17.024 41.615 12.7 62.963 10.809-2.162 20.537-6.215 26.212-12.16 1.892-2.162 3.783-4.864 4.864-7.566-1.081-21.348-10.269-42.697-29.725-48.912-3.242 3.243-9.187 4.864-14.051 5.675zm-21.889.811c7.567 20.537 12.431 42.696 14.322 64.585 3.513 0 7.567-.27 11.62-.811 5.945-24.321-.27-51.614-14.052-63.504-3.783 0-8.107 0-11.89-.27zM77.768 167.372c-1.081-2.973-2.432-8.377-2.432-14.593 0-5.945-7.026-8.107-14.052-.81-11.35 11.62-14.863 40.534-13.782 51.073 4.053-13.512 12.971-28.915 30.266-35.67zm5.675 75.394c-4.324-21.348-.27-47.291 12.701-62.963-4.865-.811-10.809-2.432-14.052-5.675-19.457 6.215-28.375 27.563-29.726 48.912 1.351 2.702 2.972 5.404 4.864 7.566 5.675 6.215 15.403 9.998 26.213 12.16zm41.345-61.073c-5.134 1.081-9.998 2.973-14.862 4.865l-12.16 5.134v-.27c-7.296 14.052-9.999 34.319-5.405 52.965 4.594.541 8.647.811 12.7.811 2.432-22.159 9.188-43.778 19.727-63.505zm88.095-23.239c0 42.155 34.319 76.205 76.205 76.205s76.205-34.05 76.205-76.205c0-41.886-34.319-75.935-76.205-75.935s-76.205 34.049-76.205 75.935zm152.41 97.283c9.969 50.608 3.299 64.692 16.484 58.099 15.944-8.107 22.699-39.183 22.97-57.019-12.971-.81-26.213-.81-39.454-1.08zm-71.611-.541v-.27c-.27 5.134.27 38.103 4.324 41.075 11.079 5.405 39.453 4.594 51.073 1.081 5.405-1.621 2.432-37.022 1.621-41.886-18.916-.27-38.102-.27-57.018 0zm-14.053 0v-.27c-19.456.27-38.642.27-57.829.811-1.892 9.187-4.594 48.911 1.892 51.614 12.971 5.675 41.616 5.134 54.586 1.621 4.595-2.432 2.433-45.399 1.351-53.776zm-85.662 57.56c5.405 2.432 8.647 2.432 9.728-4.324 1.892-8.647 2.432-36.752 4.865-52.155-12.16.27-24.591.811-36.752 1.621-5.405 19.727.27 45.129 22.159 54.858zm-65.666-11.08c43.778 47.02 92.689 85.663 155.923 106.47 67.558-19.186 115.659-59.991 163.219-107.011-11.095-4.315-7.715-10.363-7.296-11.62-8.918-.81-17.835-1.892-26.483-2.702-9.458 32.968-35.94 52.965-46.75 31.616-2.702-5.134-3.513-11.62-4.594-16.754-3.783 8.377-13.242 8.107-24.591 8.918-13.241 1.081-31.617 1.351-44.048-2.972-2.972 12.971-11.079 12.971-26.752 14.322-14.052 1.352-48.642 4.054-54.857-10.809-1.081 28.644-35.13 9.998-45.129-7.026-3.243-5.675-5.405-11.35-7.026-17.565-7.837.81-15.673 1.621-23.511 2.702 2.443 3.663 1.549 9.052-8.105 12.431zM115.6 453.545c-5.674-23.239-18.646-49.722-33.508-54.046-22.429-6.756-68.909 23.51-66.207 54.586 12.701 19.457 39.994 35.67 59.181 36.481 17.835.81 35.94-11.08 39.724-28.914.539-2.432.81-5.134.81-8.107zm7.296-5.944c33.509-19.457 69.179-35.671 105.931-47.02-38.643-20.537-68.098-47.831-97.283-77.016-2.162 1.352-5.134 2.432-7.836 3.513-1.637 4.91 8.718 5.33 5.405 12.431-2.162 4.054-8.648 7.567-15.133 9.188-2.161 2.702-5.134 4.864-7.836 6.485h-.27c-.27 13.511-.27 27.024.27 40.535 8.939 15.964 15.426 33.314 16.752 51.884zm320.764 12.7c-36.752-21.348-74.044-41.345-115.659-52.965-13.782 6.215-27.833 11.349-42.155 15.403-2.162.811-2.162.811-4.324 0-11.89-3.783-23.239-8.107-34.859-13.241-40.265 11.62-77.286 29.185-112.416 50.803h-.27v.27c.27 0 .27 0 .27-.27 103.227 4.054 206.455 3.513 309.413 0zm27.023-64.045l-.27.27c.541-13.782.811-27.563.811-41.345-2.973-1.621-5.675-4.054-8.107-6.756-6.485-1.351-12.971-5.134-15.133-8.918-1.892-4.053 1.351-7.566 5.945-10.269-.27-.541-.541-1.621-.541-2.432-2.972-.811-5.405-1.892-7.567-3.243-31.616 29.455-65.396 56.749-103.498 76.746 38.914 11.62 75.935 28.104 111.875 47.561 1.05-14.692 7.231-35.749 16.485-51.614zm23.24 3.244c-14.593 4.323-27.834 30.806-33.509 54.046 0 23.826 21.278 37.897 40.534 37.022 19.186-.811 46.48-17.024 59.181-36.481 2.973-31.077-43.507-61.344-66.206-54.587zM290.709 134.133c.045 0 .089.003.134.003.046 0 .09-.003.136-.003h-.27zm0 96.743c28.645 0 51.884-21.618 51.884-48.371 0-36.092-40.507-58.079-72.151-44.318 9.458 2.972 16.484 11.62 16.484 21.618 0 23.257-33.291 31.955-46.48 11.35-7.297 34.067 19.368 59.721 50.263 59.721zM68.039 474.083c.54 6.486 12.16 12.701 21.618 9.458 6.756-2.703 14.593-10.539 17.295-16.214 2.973-7.026-1.081-19.997-9.728-18.375-8.917 1.621-29.725 16.754-29.185 25.131zm410.75-25.131c-8.377-1.621-12.431 11.349-9.458 18.375 2.432 5.675 10.269 13.511 17.295 16.214 9.187 3.243 21.078-2.972 21.348-9.458.811-8.377-20.267-23.51-29.185-25.131z"], + "osi": [495, 512, [], "f41a", "M0 259.2C2.3 123.4 97.4 26.8 213.8 11.1c138.8-18.6 255.6 75.8 278 201.1 21.3 118.8-44 230-151.6 274-9.3 3.8-14.4 1.7-18-7.7-17.8-46.3-35.6-92.7-53.4-139-3.1-8.1-1-13.2 7-16.8 24.2-11 39.3-29.4 43.3-55.8 6.4-42.4-24.5-78.7-64.5-82.2-39-3.4-71.8 23.7-77.5 59.7-5.2 33 11.1 63.7 41.9 77.7 9.6 4.4 11.5 8.6 7.8 18.4-17.9 46.6-35.8 93.2-53.7 139.9-2.6 6.9-8.3 9.3-15.5 6.5-52.6-20.3-101.4-61-130.8-119C1.9 318.7 1.6 280.2 0 259.2zm20.9-1.9c.4 6.6.6 14.3 1.3 22.1 6.3 71.9 49.6 143.5 131 183.1 3.2 1.5 4.4.8 5.6-2.3 14.9-39.1 29.9-78.2 45-117.3 1.3-3.3.6-4.8-2.4-6.7-31.6-19.9-47.3-48.5-45.6-86 1-21.6 9.3-40.5 23.8-56.3 30-32.7 77-39.8 115.5-17.6 31.9 18.4 49.5 53.8 45.2 90.4-3.6 30.6-19.3 53.9-45.7 69.8-2.7 1.6-3.5 2.9-2.3 6 15.2 39.2 30.2 78.4 45.2 117.7 1.2 3.1 2.4 3.8 5.6 2.3 35.5-16.6 65.2-40.3 88.1-72 34.8-48.2 49.1-101.9 42.3-161C459.8 112 354.1 14.7 218 31.5 111.9 44.5 22.7 134 20.9 257.3z"], + "page4": [496, 512, [], "f3d7", "M248 504C111 504 0 393 0 256S111 8 248 8c20.9 0 41.3 2.6 60.7 7.5L42.3 392H248v112zm0-143.6V146.8L98.6 360.4H248zm96 31.6v92.7c45.7-19.2 84.5-51.7 111.4-92.7H344zm57.4-138.2l-21.2 8.4 21.2 8.3v-16.7zm-20.3 54.5c-6.7 0-8 6.3-8 12.9v7.7h16.2v-10c0-5.9-2.3-10.6-8.2-10.6zM496 256c0 37.3-8.2 72.7-23 104.4H344V27.3C433.3 64.8 496 153.1 496 256zM360.4 143.6h68.2V96h-13.9v32.6h-13.9V99h-13.9v29.6h-12.7V96h-13.9v47.6zm68.1 185.3H402v-11c0-15.4-5.6-25.2-20.9-25.2-15.4 0-20.7 10.6-20.7 25.9v25.3h68.2v-15zm0-103l-68.2 29.7V268l68.2 29.5v-16.6l-14.4-5.7v-26.5l14.4-5.9v-16.9zm-4.8-68.5h-35.6V184H402v-12.2h11c8.6 15.8 1.3 35.3-18.6 35.3-22.5 0-28.3-25.3-15.5-37.7l-11.6-10.6c-16.2 17.5-12.2 63.9 27.1 63.9 34 0 44.7-35.9 29.3-65.3z"], + "pagelines": [384, 512, [], "f18c", "M384 312.7c-55.1 136.7-187.1 54-187.1 54-40.5 81.8-107.4 134.4-184.6 134.7-16.1 0-16.6-24.4 0-24.4 64.4-.3 120.5-42.7 157.2-110.1-41.1 15.9-118.6 27.9-161.6-82.2 109-44.9 159.1 11.2 178.3 45.5 9.9-24.4 17-50.9 21.6-79.7 0 0-139.7 21.9-149.5-98.1 119.1-47.9 152.6 76.7 152.6 76.7 1.6-16.7 3.3-52.6 3.3-53.4 0 0-106.3-73.7-38.1-165.2 124.6 43 61.4 162.4 61.4 162.4.5 1.6.5 23.8 0 33.4 0 0 45.2-89 136.4-57.5-4.2 134-141.9 106.4-141.9 106.4-4.4 27.4-11.2 53.4-20 77.5 0 0 83-91.8 172-20z"], + "palfed": [576, 512, [], "f3d8", "M384.9 193.9c0-47.4-55.2-44.2-95.4-29.8-1.3 39.4-2.5 80.7-3 119.8.7 2.8 2.6 6.2 15.1 6.2 36.8 0 83.4-42.8 83.3-96.2zm-194.5 72.2c.2 0 6.5-2.7 11.2-2.7 26.6 0 20.7 44.1-14.4 44.1-21.5 0-37.1-18.1-37.1-43 0-42 42.9-95.6 100.7-126.5 1-12.4 3-22 10.5-28.2 11.2-9 26.6-3.5 29.5 11.1 72.2-22.2 135.2 1 135.2 72 0 77.9-79.3 152.6-140.1 138.2-.1 39.4.9 74.4 2.7 100v.2c.2 3.4.6 12.5-5.3 19.1-9.6 10.6-33.4 10-36.4-22.3-4.1-44.4.2-206.1 1.4-242.5-21.5 15-58.5 50.3-58.5 75.9.2 2.5.4 4 .6 4.6zM8 181.1s-.1 37.4 38.4 37.4h30l22.4 217.2s0 44.3 44.7 44.3h288.9s44.7-.4 44.7-44.3l22.4-217.2h30s38.4 1.2 38.4-37.4c0 0 .1-37.4-38.4-37.4h-30.1c-7.3-25.6-30.2-74.3-119.4-74.3h-28V50.3s-2.7-18.4-21.1-18.4h-85.8s-21.1 0-21.1 18.4v19.1h-28.1s-105 4.2-120.5 74.3h-29S8 142.5 8 181.1z"], + "patreon": [512, 512, [], "f3d9", "M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z"], + "paypal": [384, 512, [], "f1ed", "M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z"], + "periscope": [448, 512, [], "f3da", "M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z"], + "phabricator": [496, 512, [], "f3db", "M323 262.1l-.1-13s21.7-19.8 21.1-21.2l-9.5-20c-.6-1.4-29.5-.5-29.5-.5l-9.4-9.3s.2-28.5-1.2-29.1l-20.1-9.2c-1.4-.6-20.7 21-20.7 21l-13.1-.2s-20.5-21.4-21.9-20.8l-20 8.3c-1.4.5.2 28.9.2 28.9l-9.1 9.1s-29.2-.9-29.7.4l-8.1 19.8c-.6 1.4 21 21 21 21l.1 12.9s-21.7 19.8-21.1 21.2l9.5 20c.6 1.4 29.5.5 29.5.5l9.4 9.3s-.2 31.8 1.2 32.3l20.1 8.3c1.4.6 20.7-23.5 20.7-23.5l13.1.2s20.5 23.8 21.8 23.3l20-7.5c1.4-.6-.2-32.1-.2-32.1l9.1-9.1s29.2.9 29.7-.5l8.1-19.8c.7-1.1-20.9-20.7-20.9-20.7zm-44.9-8.7c.7 17.1-12.8 31.6-30.1 32.4-17.3.8-32.1-12.5-32.8-29.6-.7-17.1 12.8-31.6 30.1-32.3 17.3-.8 32.1 12.5 32.8 29.5zm201.2-37.9l-97-97-.1.1c-75.1-73.3-195.4-72.8-269.8 1.6-50.9 51-27.8 27.9-95.7 95.3-22.3 22.3-22.3 58.7 0 81 69.9 69.4 46.4 46 97.4 97l.1-.1c75.1 73.3 195.4 72.9 269.8-1.6 51-50.9 27.9-27.9 95.3-95.3 22.3-22.3 22.3-58.7 0-81zM140.4 363.8c-59.6-59.5-59.6-156 0-215.5 59.5-59.6 156-59.5 215.6 0 59.5 59.5 59.6 156 0 215.6-59.6 59.5-156 59.4-215.6-.1z"], + "phoenix-framework": [640, 512, [], "f3dc", "M212.9 344.3c3.8-.1 22.8-1.4 25.6-2.2-2.4-2.6-43.6-1-68-49.6-4.3-8.6-7.5-17.6-6.4-27.6 2.9-25.5 32.9-30 52-18.5 36 21.6 63.3 91.3 113.7 97.5 37 4.5 84.6-17 108.2-45.4-.6-.1-.8-.2-1-.1-.4.1-.8.2-1.1.3-33.3 12.1-94.3 9.7-134.7-14.8-37.6-22.8-53.1-58.7-51.8-74.6 1.8-21.3 22.9-23.2 35.9-19.6 14.4 3.9 24.4 17.6 38.9 27.4 15.6 10.4 32.9 13.7 51.3 10.3 14.9-2.7 34.4-12.3 36.5-14.5-1.1-.1-1.8-.1-2.5-.2-6.2-.6-12.4-.8-18.5-1.7C279.8 194.5 262.1 47.4 138.5 37.9 94.2 34.5 39.1 46 2.2 72.9c-.8.6-1.5 1.2-2.2 1.8.1.2.1.3.2.5.8 0 1.6-.1 2.4-.2 6.3-1 12.5-.8 18.7.3 23.8 4.3 47.7 23.1 55.9 76.5 5.3 34.3-.7 50.8 8 86.1 19 77.1 91 107.6 127.7 106.4zM75.3 64.9c-.9-1-.9-1.2-1.3-2 12.1-2.6 24.2-4.1 36.6-4.8-1.1 14.7-22.2 21.3-35.3 6.8zm196.9 350.5c-42.8 1.2-92-26.7-123.5-61.4-4.6-5-16.8-20.2-18.6-23.4l.4-.4c6.6 4.1 25.7 18.6 54.8 27 24.2 7 48.1 6.3 71.6-3.3 22.7-9.3 41-.5 43.1 2.9-18.5 3.8-20.1 4.4-24 7.9-5.1 4.4-4.6 11.7 7 17.2 26.2 12.4 63-2.8 97.2 25.4 2.4 2 8.1 7.8 10.1 10.7-.1.2-.3.3-.4.5-4.8-1.5-16.4-7.5-40.2-9.3-24.7-2-46.3 5.3-77.5 6.2zm174.8-252c16.4-5.2 41.3-13.4 66.5-3.3 16.1 6.5 26.2 18.7 32.1 34.6 3.5 9.4 5.1 19.7 5.1 28.7-.2 0-.4 0-.6.1-.2-.4-.4-.9-.5-1.3-5-22-29.9-43.8-67.6-29.9-50.2 18.6-130.4 9.7-176.9-48-.7-.9-2.4-1.7-1.3-3.2.1-.2 2.1.6 3 1.3 18.1 13.4 38.3 21.9 60.3 26.2 30.5 6.1 54.6 2.9 79.9-5.2zm102.7 117.5c-32.4.2-33.8 50.1-103.6 64.4-18.2 3.7-38.7 4.6-44.9 4.2v-.4c2.8-1.5 14.7-2.6 29.7-16.6 7.9-7.3 15.3-15.1 22.8-22.9 19.5-20.2 41.4-42.2 81.9-39 23.1 1.8 29.3 8.2 36.1 12.7.3.2.4.5.7.9-.5 0-.7.1-.9 0-7-2.7-14.3-3.3-21.8-3.3zm-12.3-24.1c-.1.2-.1.4-.2.6-28.9-4.4-48-7.9-68.5 4-17 9.9-31.4 20.5-62 24.4-27.1 3.4-45.1 2.4-66.1-8-.3-.2-.6-.4-1-.6 0-.2.1-.3.1-.5 24.9 3.8 36.4 5.1 55.5-5.8 22.3-12.9 40.1-26.6 71.3-31 29.6-4.1 51.3 2.5 70.9 16.9zM268.6 97.3c-.6-.6-1.1-1.2-2.1-2.3 7.6 0 29.7-1.2 53.4 8.4 19.7 8 32.2 21 50.2 32.9 11.1 7.3 23.4 9.3 36.4 8.1 4.3-.4 8.5-1.2 12.8-1.7.4-.1.9 0 1.5.3-.6.4-1.2.9-1.8 1.2-8.1 4-16.7 6.3-25.6 7.1-26.1 2.6-50.3-3.7-73.4-15.4-19.3-9.9-36.4-22.9-51.4-38.6zM640 335.7c-3.5 3.1-22.7 11.6-42.7 5.3-12.3-3.9-19.5-14.9-31.6-24.1-10-7.6-20.9-7.9-28.1-8.4.6-.8.9-1.2 1.2-1.4 14.8-9.2 30.5-12.2 47.3-6.5 12.5 4.2 19.2 13.5 30.4 24.2 10.8 10.4 21 9.9 23.1 10.5.1-.1.2 0 .4.4zm-212.5 137c2.2 1.2 1.6 1.5 1.5 2-18.5-1.4-33.9-7.6-46.8-22.2-21.8-24.7-41.7-27.9-48.6-29.7.5-.2.8-.4 1.1-.4 13.1.1 26.1.7 38.9 3.9 25.3 6.4 35 25.4 41.6 35.3 3.2 4.8 7.3 8.3 12.3 11.1z"], + "phoenix-squadron": [513, 512, [], "f511", "M96.24 62.81C142.91 26.57 202.15 6.57 261.28 8.08c29.67-.38 59.29 5.38 87.17 15.37-24.2-4.64-49.18-6.35-73.6-2.45-43 5.35-83.26 27.23-112.16 59.35 5.69-.99 10.81-3.68 16.07-5.88 18.19-7.89 37.6-13.29 57.4-14.87 19.8-2.14 39.75-.43 59.45 1.93-14.46 2.79-29.2 4.58-43.11 9.61-34.53 11.11-65.46 33.26-86.55 62.82-13.84 19.77-23.7 42.99-24.74 67.33-.35 16.54 5.23 34.91 19.89 44.17 11.13 6.66 24.85 9.39 37.63 6.76 15.49-2.47 30.16-8.67 43.73-16.38 11.55-6.84 22.73-14.59 32.05-24.32 3.8-3.23 2.54-8.48 2.63-12.83-2.13-.34-4.4-1.11-6.32.3a203.975 203.975 0 0 1-35.93 15.42c-20.07 6.19-42.28 8.48-62.28.78 12.83 1.73 26.14.31 37.85-5.46 20.29-9.75 36.92-25.27 54.6-38.88 27.84-21.29 57.64-40.11 89.17-55.47 25.78-12.01 53.09-22.85 81.81-24.2-15.68 13.76-32.25 26.6-46.92 41.51-14.55 14.04-27.54 29.58-40.23 45.31-3.53 4.61-8.98 6.96-13.62 10.19-22.24 15.03-40.6 35.96-52.04 60.28-9.36 19.74-14.55 41.97-11.81 63.84 1.95 13.73 8.74 27.67 20.96 35.01 12.94 7.99 29.14 8.09 43.61 5.11 32.9-7.47 61.61-28.97 81.28-56 20.5-27.6 30.61-62.38 29.25-96.64-.52-7.52-1.58-15-1.67-22.55 8.02 19.54 14.87 39.83 16.7 61.01 2.01 14.32.75 28.84-1.62 43.02-1.92 11.02-5.69 21.58-7.81 32.53 20.36-22.73 34.17-51.24 39.46-81.31 5.72-35.37.58-72.36-14.25-104.95 20.84 32.12 32.43 69.79 35.81 107.8.5 12.77.5 25.58 0 38.34-2.91 34.26-12.97 67.95-29.76 98-26.2 47.48-68.2 85.89-117.54 108.32-78.52 36.34-175.2 31.41-248.72-14.72-38.84-23.78-71.06-58.32-91.68-98.96C10.72 337.43 2.04 305.5 0 273.13V241.7c3.94-69.97 40.99-136.32 96.24-178.89m222.65 80.57c5.51-.8 10.82-2.57 16.02-4.5 4.99-1.77 9.27-5.95 10.35-11.25-8.91 5-17.95 9.95-26.37 15.75z"], + "php": [640, 512, [], "f457", "M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z"], + "pied-piper": [448, 512, [], "f2ae", "M32 419L0 479.2l.8-328C.8 85.3 54 32 120 32h327.2c-93 28.9-189.9 94.2-253.9 168.6C122.7 282 82.6 338 32 419M448 32S305.2 98.8 261.6 199.1c-23.2 53.6-28.9 118.1-71 158.6-28.9 27.8-69.8 38.2-105.3 56.3-23.2 12-66.4 40.5-84.9 66h328.4c66 0 119.3-53.3 119.3-119.2-.1 0-.1-328.8-.1-328.8z"], + "pied-piper-alt": [576, 512, [], "f1a8", "M242 187c6.3-11.8 13.2-17 25.9-21.8 27.3-10.3 40.2-30.5 58.9-51.1 11.9 8.4 12 24.6 31.6 23v21.8l6.3.3c37.4-14.4 74.7-30.2 106.6-54.6 48.3-36.8 52.9-50 81.3-100l2-2.6c-.6 14.1-6.3 27.3-12.4 39.9-30.5 63.8-78.7 100.3-146.8 116.7-12.4 2.9-26.4 3.2-37.6 8.9 1.4 9.8 13.2 18.1 13.2 23 0 3.4-5.5 7.2-7.5 8.6-11.2-12.9-16.1-19.3-22.7-22.1-7.6-3.5-63.9-6.4-98.8 10zm137.9 256.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9L244 246zm-12.6 31.8l24.1 61.2 21-13.8-31.3-50.9-13.8 3.5zM555.5 0l-.6 1.1-.3.9.6-.6.3-1.4zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46v27.3l11.8-3.4-2.9-23.8h-8.9zm76.1 2.9c0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3l2 12.4c9-1.5 58.4-6.6 58.4-14.1z"], + "pied-piper-hat": [640, 512, [], "f4e5", "M640 24.9c-80.8 53.6-89.4 92.5-96.4 104.4-6.7 12.2-11.7 60.3-23.3 83.6-11.7 23.6-54.2 42.2-66.1 50-11.7 7.8-28.3 38.1-41.9 64.2-108.1-4.4-167.4 38.8-259.2 93.6 29.4-9.7 43.3-16.7 43.3-16.7 94.2-36 139.3-68.3 281.1-49.2 1.1 0 1.9.6 2.8.8 3.9 2.2 5.3 6.9 3.1 10.8l-53.9 95.8c-2.5 4.7-7.8 7.2-13.1 6.1-126.8-23.8-226.9 17.3-318.9 18.6C24.1 488 0 453.4 0 451.8c0-1.1.6-1.7 1.7-1.7 0 0 38.3 0 103.1-15.3C178.4 294.5 244 245.4 315.4 245.4c0 0 71.7 0 90.6 61.9 22.8-39.7 28.3-49.2 28.3-49.2 5.3-9.4 35-77.2 86.4-141.4 51.5-64 90.4-79.9 119.3-91.8z"], + "pied-piper-pp": [448, 512, [], "f1a7", "M205.3 174.6c0 21.1-14.2 38.1-31.7 38.1-7.1 0-12.8-1.2-17.2-3.7v-68c4.4-2.7 10.1-4.2 17.2-4.2 17.5 0 31.7 16.9 31.7 37.8zm52.6 67c-7.1 0-12.8 1.5-17.2 4.2v68c4.4 2.5 10.1 3.7 17.2 3.7 17.4 0 31.7-16.9 31.7-37.8 0-21.1-14.3-38.1-31.7-38.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM185 255.1c41 0 74.2-35.6 74.2-79.6 0-44-33.2-79.6-74.2-79.6-12 0-24.1 3.2-34.6 8.8h-45.7V311l51.8-10.1v-50.6c8.6 3.1 18.1 4.8 28.5 4.8zm158.4 25.3c0-44-33.2-79.6-73.9-79.6-3.2 0-6.4.2-9.6.7-3.7 12.5-10.1 23.8-19.2 33.4-13.8 15-32.2 23.8-51.8 24.8V416l51.8-10.1v-50.6c8.6 3.2 18.2 4.7 28.7 4.7 40.8 0 74-35.6 74-79.6z"], + "pinterest": [496, 512, [], "f0d2", "M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3.8-3.4 5-20.3 6.9-28.1.6-2.5.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z"], + "pinterest-p": [384, 512, [], "f231", "M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z"], + "pinterest-square": [448, 512, [], "f0d3", "M448 80v352c0 26.5-21.5 48-48 48H154.4c9.8-16.4 22.4-40 27.4-59.3 3-11.5 15.3-58.4 15.3-58.4 8 15.3 31.4 28.2 56.3 28.2 74.1 0 127.4-68.1 127.4-152.7 0-81.1-66.2-141.8-151.4-141.8-106 0-162.2 71.1-162.2 148.6 0 36 19.2 80.8 49.8 95.1 4.7 2.2 7.1 1.2 8.2-3.3.8-3.4 5-20.1 6.8-27.8.6-2.5.3-4.6-1.7-7-10.1-12.3-18.3-34.9-18.3-56 0-54.2 41-106.6 110.9-106.6 60.3 0 102.6 41.1 102.6 99.9 0 66.4-33.5 112.4-77.2 112.4-24.1 0-42.1-19.9-36.4-44.4 6.9-29.2 20.3-60.7 20.3-81.8 0-53-75.5-45.7-75.5 25 0 21.7 7.3 36.5 7.3 36.5-31.4 132.8-36.1 134.5-29.6 192.6l2.2.8H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z"], + "playstation": [576, 512, [], "f3df", "M570.9 372.3c-11.3 14.2-38.8 24.3-38.8 24.3L327 470.2v-54.3l150.9-53.8c17.1-6.1 19.8-14.8 5.8-19.4-13.9-4.6-39.1-3.3-56.2 2.9L327 381.1v-56.4c23.2-7.8 47.1-13.6 75.7-16.8 40.9-4.5 90.9.6 130.2 15.5 44.2 14 49.2 34.7 38 48.9zm-224.4-92.5v-139c0-16.3-3-31.3-18.3-35.6-11.7-3.8-19 7.1-19 23.4v347.9l-93.8-29.8V32c39.9 7.4 98 24.9 129.2 35.4C424.1 94.7 451 128.7 451 205.2c0 74.5-46 102.8-104.5 74.6zM43.2 410.2c-45.4-12.8-53-39.5-32.3-54.8 19.1-14.2 51.7-24.9 51.7-24.9l134.5-47.8v54.5l-96.8 34.6c-17.1 6.1-19.7 14.8-5.8 19.4 13.9 4.6 39.1 3.3 56.2-2.9l46.4-16.9v48.8c-51.6 9.3-101.4 7.3-153.9-10z"], + "product-hunt": [512, 512, [], "f288", "M326.3 218.8c0 20.5-16.7 37.2-37.2 37.2h-70.3v-74.4h70.3c20.5 0 37.2 16.7 37.2 37.2zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-128.1-37.2c0-47.9-38.9-86.8-86.8-86.8H169.2v248h49.6v-74.4h70.3c47.9 0 86.8-38.9 86.8-86.8z"], + "pushed": [432, 512, [], "f3e1", "M407 111.9l-98.5-9 14-33.4c10.4-23.5-10.8-40.4-28.7-37L22.5 76.9c-15.1 2.7-26 18.3-21.4 36.6l105.1 348.3c6.5 21.3 36.7 24.2 47.7 7l35.3-80.8 235.2-231.3c16.4-16.8 4.3-42.9-17.4-44.8zM297.6 53.6c5.1-.7 7.5 2.5 5.2 7.4L286 100.9 108.6 84.6l189-31zM22.7 107.9c-3.1-5.1 1-10 6.1-9.1l248.7 22.7-96.9 230.7L22.7 107.9zM136 456.4c-2.6 4-7.9 3.1-9.4-1.2L43.5 179.7l127.7 197.6c-7 15-35.2 79.1-35.2 79.1zm272.8-314.5L210.1 337.3l89.7-213.7 106.4 9.7c4 1.1 5.7 5.3 2.6 8.6z"], + "python": [448, 512, [], "f3e2", "M167.8 36.4c-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1zm-6.7 28.4c11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4zm185.2 81.4v47.5c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6-7.7-30.9-22.3-54.2-53.4-54.2h-40.1zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3z"], + "qq": [448, 512, [], "f1d6", "M433.754 420.445c-11.526 1.393-44.86-52.741-44.86-52.741 0 31.345-16.136 72.247-51.051 101.786 16.842 5.192 54.843 19.167 45.803 34.421-7.316 12.343-125.51 7.881-159.632 4.037-34.122 3.844-152.316 8.306-159.632-4.037-9.045-15.25 28.918-29.214 45.783-34.415-34.92-29.539-51.059-70.445-51.059-101.792 0 0-33.334 54.134-44.859 52.741-5.37-.65-12.424-29.644 9.347-99.704 10.261-33.024 21.995-60.478 40.144-105.779C60.683 98.063 108.982.006 224 0c113.737.006 163.156 96.133 160.264 214.963 18.118 45.223 29.912 72.85 40.144 105.778 21.768 70.06 14.716 99.053 9.346 99.704z"], + "quinscape": [489, 512, [], "f459", "M301.9 474.6h-1.3c-87.3 0-158.1-70.8-158.1-158.1s70.8-158.1 158.1-158.1c94.9 0 168.2 83.1 157 176.6 4 5.1 8.2 9.6 11.2 15.3 13.4-30.3 20.3-62.4 20.3-97.7C489.1 117.5 379.6 8 244.5 8 109.5 8 0 117.5 0 252.6s109.5 244.6 244.5 244.6c24.8 0 47.8-3.2 70.4-10.1-5.2-3.5-9-8.2-13.4-12.6l.4.1zm-21.2-69.8c0-54.8 44.4-99.2 99.2-99.2 54.8 0 99.2 44.4 99.2 99.2 0 54.8-44.4 99.2-99.2 99.2-54.8 0-99.2-44.4-99.2-99.2"], + "quora": [448, 512, [], "f2c4", "M440.5 386.7h-29.3c-1.5 13.5-10.5 30.8-33 30.8-20.5 0-35.3-14.2-49.5-35.8 44.2-34.2 74.7-87.5 74.7-153C403.5 111.2 306.8 32 205 32 105.3 32 7.3 111.7 7.3 228.7c0 134.1 131.3 221.6 249 189C276 451.3 302 480 351.5 480c81.8 0 90.8-75.3 89-93.3zM297 329.2C277.5 300 253.3 277 205.5 277c-30.5 0-54.3 10-69 22.8l12.2 24.3c6.2-3 13-4 19.8-4 35.5 0 53.7 30.8 69.2 61.3-10 3-20.7 4.2-32.7 4.2-75 0-107.5-53-107.5-156.7C97.5 124.5 130 71 205 71c76.2 0 108.7 53.5 108.7 157.7.1 41.8-5.4 75.6-16.7 100.5z"], + "r-project": [581, 512, [], "f4f7", "M581 226.6C581 119.1 450.9 32 290.5 32S0 119.1 0 226.6C0 322.4 103.3 402 239.4 418.1V480h99.1v-61.5c24.3-2.7 47.6-7.4 69.4-13.9L448 480h112l-67.4-113.7c54.5-35.4 88.4-84.9 88.4-139.7zm-466.8 14.5c0-73.5 98.9-133 220.8-133s211.9 40.7 211.9 133c0 50.1-26.5 85-70.3 106.4-2.4-1.6-4.7-2.9-6.4-3.7-10.2-5.2-27.8-10.5-27.8-10.5s86.6-6.4 86.6-92.7-90.6-87.9-90.6-87.9h-199V361c-74.1-21.5-125.2-67.1-125.2-119.9zm225.1 38.3v-55.6c57.8 0 87.8-6.8 87.8 27.3 0 36.5-38.2 28.3-87.8 28.3zm-.9 72.5H365c10.8 0 18.9 11.7 24 19.2-16.1 1.9-33 2.8-50.6 2.9v-22.1z"], + "ravelry": [512, 512, [], "f2d9", "M407.4 61.5C331.6 22.1 257.8 31 182.9 66c-11.3 5.2-15.5 10.6-19.9 19-10.3 19.2-16.2 37.4-19.9 52.7-21.2 25.6-36.4 56.1-43.3 89.9-10.6 18-20.9 41.4-23.1 71.4 0 0-.7 7.6-.5 7.9-35.3-4.6-76.2-27-76.2-27 9.1 14.5 61.3 32.3 76.3 37.9 0 0 1.7 98 64.5 131.2-11.3-17.2-13.3-20.2-13.3-20.2S94.8 369 100.4 324.7c.7 0 1.5.2 2.2.2 23.9 87.4 103.2 151.4 196.9 151.4 6.2 0 12.1-.2 18-.7 14 1.5 27.6.5 40.1-3.9 6.9-2.2 13.8-6.4 20.2-10.8 70.2-39.1 100.9-82 123.1-147.7 5.4-16 8.1-35.5 9.8-52.2 8.7-82.3-30.6-161.6-103.3-199.5zM138.8 163.2s-1.2 12.3-.7 19.7c-3.4 2.5-10.1 8.1-18.2 16.7 5.2-12.8 11.3-25.1 18.9-36.4zm-31.2 121.9c4.4-17.2 13.3-39.1 29.8-55.1 0 0 1.7 48 15.8 90.1l-41.4-6.9c-2.2-9.2-3.5-18.5-4.2-28.1zm7.9 42.8c14.8 3.2 34 7.6 43.1 9.1 27.3 76.8 108.3 124.3 108.3 124.3 1 .5 1.7.7 2.7 1-73.1-11.6-132.7-64.7-154.1-134.4zM386 444.1c-14.5 4.7-36.2 8.4-64.7 3.7 0 0-91.1-23.1-127.5-107.8 38.2.7 52.4-.2 78-3.9 39.4-5.7 79-16.2 115-33 11.8-5.4 11.1-19.4 9.6-29.8-2-12.8-11.1-12.1-21.4-4.7 0 0-82 58.6-189.8 53.7-18.7-32-26.8-110.8-26.8-110.8 41.4-35.2 83.2-59.6 168.4-52.4.2-6.4 3-27.1-20.4-28.1 0 0-93.5-11.1-146 33.5 2.5-16.5 5.9-29.3 11.1-39.4 34.2-30.8 79-49.5 128.3-49.5 106.4 0 193 87.1 193 194.5-.2 76-43.8 142-106.8 174z"], + "react": [512, 512, [], "f41b", "M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zm-130 189.1c4.6 8.8 9.3 17.5 14.3 26.1 5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5zm0-50.6c-6.3-14.9-11.6-29.5-16-43.6 14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26zm11.4 25.3c6.6-13.8 13.8-27.3 21.4-40.6 7.6-13.3 15.8-26.2 24.4-38.9 15-1.1 30.3-1.7 45.9-1.7 15.6 0 31 .6 45.9 1.7 8.5 12.6 16.6 25.5 24.3 38.7 7.7 13.2 14.9 26.7 21.7 40.4-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6-15.7 0-30.9-.5-45.6-1.4-8.7-12.7-16.9-25.7-24.6-39-7.7-13.3-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zM256 210.2c25.3 0 45.8 20.5 45.8 45.8 0 25.3-20.5 45.8-45.8 45.8-25.3 0-45.8-20.5-45.8-45.8 0-25.3 20.5-45.8 45.8-45.8"], + "readme": [576, 512, [], "f4d5", "M528.3 46.5H388.5c-48.1 0-89.9 33.3-100.4 80.3-10.6-47-52.3-80.3-100.4-80.3H48c-26.5 0-48 21.5-48 48v245.8c0 26.5 21.5 48 48 48h89.7c102.2 0 132.7 24.4 147.3 75 .7 2.8 5.2 2.8 6 0 14.7-50.6 45.2-75 147.3-75H528c26.5 0 48-21.5 48-48V94.6c0-26.4-21.3-47.9-47.7-48.1zM242 311.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5V289c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V251zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm259.3 121.7c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5V228c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.8c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V190z"], + "rebel": [512, 512, [], "f1d0", "M256.5 504C117.2 504 9 387.8 13.2 249.9 16 170.7 56.4 97.7 129.7 49.5c.3 0 1.9-.6 1.1.8-5.8 5.5-111.3 129.8-14.1 226.4 49.8 49.5 90 2.5 90 2.5 38.5-50.1-.6-125.9-.6-125.9-10-24.9-45.7-40.1-45.7-40.1l28.8-31.8c24.4 10.5 43.2 38.7 43.2 38.7.8-29.6-21.9-61.4-21.9-61.4L255.1 8l44.3 50.1c-20.5 28.8-21.9 62.6-21.9 62.6 13.8-23 43.5-39.3 43.5-39.3l28.5 31.8c-27.4 8.9-45.4 39.9-45.4 39.9-15.8 28.5-27.1 89.4.6 127.3 32.4 44.6 87.7-2.8 87.7-2.8 102.7-91.9-10.5-225-10.5-225-6.1-5.5.8-2.8.8-2.8 50.1 36.5 114.6 84.4 116.2 204.8C500.9 400.2 399 504 256.5 504z"], + "red-river": [448, 512, [], "f3e3", "M353.2 32H94.8C42.4 32 0 74.4 0 126.8v258.4C0 437.6 42.4 480 94.8 480h258.4c52.4 0 94.8-42.4 94.8-94.8V126.8c0-52.4-42.4-94.8-94.8-94.8zM144.9 200.9v56.3c0 27-21.9 48.9-48.9 48.9V151.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9h-56.3c-12.3-.6-24.6 11.6-24 24zm176.3 72h-56.3c-12.3-.6-24.6 11.6-24 24v56.3c0 27-21.9 48.9-48.9 48.9V247.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9z"], + "reddit": [512, 512, [], "f1a1", "M201.5 305.5c-13.8 0-24.9-11.1-24.9-24.6 0-13.8 11.1-24.9 24.9-24.9 13.6 0 24.6 11.1 24.6 24.9 0 13.6-11.1 24.6-24.6 24.6zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-132.3-41.2c-9.4 0-17.7 3.9-23.8 10-22.4-15.5-52.6-25.5-86.1-26.6l17.4-78.3 55.4 12.5c0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.3 24.9-24.9s-11.1-24.9-24.9-24.9c-9.7 0-18 5.8-22.1 13.8l-61.2-13.6c-3-.8-6.1 1.4-6.9 4.4l-19.1 86.4c-33.2 1.4-63.1 11.3-85.5 26.8-6.1-6.4-14.7-10.2-24.1-10.2-34.9 0-46.3 46.9-14.4 62.8-1.1 5-1.7 10.2-1.7 15.5 0 52.6 59.2 95.2 132 95.2 73.1 0 132.3-42.6 132.3-95.2 0-5.3-.6-10.8-1.9-15.8 31.3-16 19.8-62.5-14.9-62.5zM302.8 331c-18.2 18.2-76.1 17.9-93.6 0-2.2-2.2-6.1-2.2-8.3 0-2.5 2.5-2.5 6.4 0 8.6 22.8 22.8 87.3 22.8 110.2 0 2.5-2.2 2.5-6.1 0-8.6-2.2-2.2-6.1-2.2-8.3 0zm7.7-75c-13.6 0-24.6 11.1-24.6 24.9 0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.1 24.9-24.6 0-13.8-11-24.9-24.9-24.9z"], + "reddit-alien": [512, 512, [], "f281", "M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2.1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z"], + "reddit-square": [448, 512, [], "f1a2", "M283.2 345.5c2.7 2.7 2.7 6.8 0 9.2-24.5 24.5-93.8 24.6-118.4 0-2.7-2.4-2.7-6.5 0-9.2 2.4-2.4 6.5-2.4 8.9 0 18.7 19.2 81 19.6 100.5 0 2.4-2.3 6.6-2.3 9 0zm-91.3-53.8c0-14.9-11.9-26.8-26.5-26.8-14.9 0-26.8 11.9-26.8 26.8 0 14.6 11.9 26.5 26.8 26.5 14.6 0 26.5-11.9 26.5-26.5zm90.7-26.8c-14.6 0-26.5 11.9-26.5 26.8 0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-11.9 26.8-26.5 0-14.9-11.9-26.8-26.8-26.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-99.7 140.6c-10.1 0-19 4.2-25.6 10.7-24.1-16.7-56.5-27.4-92.5-28.6l18.7-84.2 59.5 13.4c0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-12.2 26.8-26.8 0-14.6-11.9-26.8-26.8-26.8-10.4 0-19.3 6.2-23.8 14.9l-65.7-14.6c-3.3-.9-6.5 1.5-7.4 4.8l-20.5 92.8c-35.7 1.5-67.8 12.2-91.9 28.9-6.5-6.8-15.8-11-25.9-11-37.5 0-49.8 50.4-15.5 67.5-1.2 5.4-1.8 11-1.8 16.7 0 56.5 63.7 102.3 141.9 102.3 78.5 0 142.2-45.8 142.2-102.3 0-5.7-.6-11.6-2.1-17 33.6-17.2 21.2-67.2-16.1-67.2z"], + "rendact": [496, 512, [], "f3e4", "M248 8C111 8 0 119 0 256s111 248 248 248c18.6 0 36.7-2.1 54.1-5.9-5.6-7.4-10.8-14.4-15.9-21.3-12.4 2.1-25.2 3.3-38.3 3.3C124.3 480 24 379.7 24 256S124.3 32 248 32s224 100.3 224 224c0 71-33 134.2-84.5 175.3-25.9 18.8-39.1 21.4-83.5-44.2-78.7-112.9-48-71.1-73.7-108.3 72.8 8.9 228.5-72 168.6-168.6C314-26.8 15 93.8 59.7 226.4c3.2 9.8 14.4 38.6 45.6 38.6 2 0 2.6-.6 2-1.7-4.4-8.7-20.1-9.8-20.1-37.4 0-40.5 40.5-89.6 100.3-120 66.1-32.3 131.9-30.2 158.2 5.4 27.2 38.3-20.9 119.2-120.4 136.9 7.5-9.4 57-75.2 62.8-84 22.7-34.6 23.6-49 14-59.2-15.5-16.9-29.5-10.3-50.7-11.7-10.8-.9-113.7 181.2-136.4 216.9-5.9 9-21.2 34.1-21.2 50.9 0 21.3 2.8 51.4 20.6 51.4 10.6 0 8-18.7 8-26.6 0-12.9 27.4-49.4 74.8-104.6 20.4 36.1 57.7 114.3 130.2 209.7 98-33.1 168.5-125.8 168.5-235C496 119 385 8 248 8z"], + "renren": [512, 512, [], "f18b", "M214 169.1c0 110.4-61 205.4-147.6 247.4C30 373.2 8 317.7 8 256.6 8 133.9 97.1 32.2 214 12.5v156.6zM255 504c-42.9 0-83.3-11-118.5-30.4C193.7 437.5 239.9 382.9 255 319c15.5 63.9 61.7 118.5 118.8 154.7C338.7 493 298.3 504 255 504zm190.6-87.5C359 374.5 298 279.6 298 169.1V12.5c116.9 19.7 206 121.4 206 244.1 0 61.1-22 116.6-58.4 159.9z"], + "replyd": [448, 512, [], "f3e6", "M320 480H128C57.6 480 0 422.4 0 352V160C0 89.6 57.6 32 128 32h192c70.4 0 128 57.6 128 128v192c0 70.4-57.6 128-128 128zM193.4 273.2c-6.1-2-11.6-3.1-16.4-3.1-7.2 0-13.5 1.9-18.9 5.6-5.4 3.7-9.6 9-12.8 15.8h-1.1l-4.2-18.3h-28v138.9h36.1v-89.7c1.5-5.4 4.4-9.8 8.7-13.2 4.3-3.4 9.8-5.1 16.2-5.1 4.6 0 9.8 1 15.6 3.1l4.8-34zm115.2 103.4c-3.2 2.4-7.7 4.8-13.7 7.1-6 2.3-12.8 3.5-20.4 3.5-12.2 0-21.1-3-26.5-8.9-5.5-5.9-8.5-14.7-9-26.4h83.3c.9-4.8 1.6-9.4 2.1-13.9.5-4.4.7-8.6.7-12.5 0-10.7-1.6-19.7-4.7-26.9-3.2-7.2-7.3-13-12.5-17.2-5.2-4.3-11.1-7.3-17.8-9.2-6.7-1.8-13.5-2.8-20.6-2.8-21.1 0-37.5 6.1-49.2 18.3s-17.5 30.5-17.5 55c0 22.8 5.2 40.7 15.6 53.7 10.4 13.1 26.8 19.6 49.2 19.6 10.7 0 20.9-1.5 30.4-4.6 9.5-3.1 17.1-6.8 22.6-11.2l-12-23.6zm-21.8-70.3c3.8 5.4 5.3 13.1 4.6 23.1h-51.7c.9-9.4 3.7-17 8.2-22.6 4.5-5.6 11.5-8.5 21-8.5 8.2-.1 14.1 2.6 17.9 8zm79.9 2.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4s2 11.7 6.1 15.6zm0 100.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4 0 6.6 2 11.7 6.1 15.6z"], + "researchgate": [448, 512, [], "f4f8", "M0 32v448h448V32H0zm262.2 334.4c-6.6 3-33.2 6-50-14.2-9.2-10.6-25.3-33.3-42.2-63.6-8.9 0-14.7 0-21.4-.6v46.4c0 23.5 6 21.2 25.8 23.9v8.1c-6.9-.3-23.1-.8-35.6-.8-13.1 0-26.1.6-33.6.8v-8.1c15.5-2.9 22-1.3 22-23.9V225c0-22.6-6.4-21-22-23.9V193c25.8 1 53.1-.6 70.9-.6 31.7 0 55.9 14.4 55.9 45.6 0 21.1-16.7 42.2-39.2 47.5 13.6 24.2 30 45.6 42.2 58.9 7.2 7.8 17.2 14.7 27.2 14.7v7.3zm22.9-135c-23.3 0-32.2-15.7-32.2-32.2V167c0-12.2 8.8-30.4 34-30.4s30.4 17.9 30.4 17.9l-10.7 7.2s-5.5-12.5-19.7-12.5c-7.9 0-19.7 7.3-19.7 19.7v26.8c0 13.4 6.6 23.3 17.9 23.3 14.1 0 21.5-10.9 21.5-26.8h-17.9v-10.7h30.4c0 20.5 4.7 49.9-34 49.9zm-116.5 44.7c-9.4 0-13.6-.3-20-.8v-69.7c6.4-.6 15-.6 22.5-.6 23.3 0 37.2 12.2 37.2 34.5 0 21.9-15 36.6-39.7 36.6z"], + "resolving": [496, 512, [], "f3e7", "M281.2 278.2c46-13.3 49.6-23.5 44-43.4L314 195.5c-6.1-20.9-18.4-28.1-71.1-12.8L54.7 236.8l28.6 98.6 197.9-57.2zM248.5 8C131.4 8 33.2 88.7 7.2 197.5l221.9-63.9c34.8-10.2 54.2-11.7 79.3-8.2 36.3 6.1 52.7 25 61.4 55.2l10.7 37.8c8.2 28.1 1 50.6-23.5 73.6-19.4 17.4-31.2 24.5-61.4 33.2L203 351.8l220.4 27.1 9.7 34.2-48.1 13.3-286.8-37.3 23 80.2c36.8 22 80.3 34.7 126.3 34.7 137 0 248.5-111.4 248.5-248.3C497 119.4 385.5 8 248.5 8zM38.3 388.6L0 256.8c0 48.5 14.3 93.4 38.3 131.8z"], + "rev": [410, 512, [], "f5b2", "M270.67 274.89c0 36.16-29.41 65.57-65.56 65.57s-65.57-29.41-65.57-65.57 29.41-65.56 65.57-65.56 65.56 29.4 65.56 65.56zm139.55-5.05h-.13c-1.49-61.55-30.1-116.35-74.32-152.98l-45.38 26.2c43.17 28.03 71.81 76.63 71.81 131.82 0 86.62-70.47 157.09-157.09 157.09S48.02 361.5 48.02 274.88c0-81.86 62.96-149.27 142.99-156.43v39.12l108.76-62.79L191.01 32v38.32C84.31 77.57 0 166.36 0 274.89c0 111.59 89.12 202.29 200.06 204.98v.13h210.16V269.84z"], + "rocketchat": [448, 512, [], "f3e8", "M448 256.2c0-87.2-99.6-153.3-219.8-153.3-18.8 0-37.3 1.6-55.3 4.8-11.1-10.5-24.2-20-38-27.4C61.2 44.2 0 79.4 0 79.4s56.9 47.1 47.6 88.3c-52.3 52.3-52.5 124.1 0 176.6C56.9 385.6 0 432.6 0 432.6s61.2 35.2 134.9-.8c13.8-7.5 26.9-16.9 38-27.4 18 3.2 36.5 4.8 55.3 4.8 120.3-.1 219.8-65.8 219.8-153zm-219.7 124c-23.7 0-46.3-2.8-67.3-7.8-21.3 25.8-68.1 61.7-113.6 50.1 14.8-16 36.7-43.1 32-87.6-27.3-21.4-43.6-48.7-43.6-78.5 0-68.4 86.2-123.9 192.5-123.9S420.8 188 420.8 256.4c0 68.3-86.2 123.8-192.5 123.8zm25.6-123.9c0 14.2-11.5 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.5-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm88.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm-177.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.2 0 25.6 11.6 25.6 25.8z"], + "rockrms": [496, 512, [], "f3e9", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm157.4 419.5h-90l-112-131.3c-17.9-20.4-3.9-56.1 26.6-56.1h75.3l-84.6-99.3-84.3 98.9h-90L193.5 67.2c14.4-18.4 41.3-17.3 54.5 0l157.7 185.1c19 22.8 2 57.2-27.6 56.1-.6 0-74.2.2-74.2.2l101.5 118.9z"], + "safari": [512, 512, [], "f267", "M236.9 256.8c0-9.1 6.6-17.7 16.3-17.7 8.9 0 17.4 6.4 17.4 16.1 0 9.1-6.4 17.7-16.1 17.7-9 0-17.6-6.7-17.6-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-26.6 0c0-122.3-99.1-221.4-221.4-221.4S34.6 133.7 34.6 256 133.7 477.4 256 477.4 477.4 378.3 477.4 256zm-72.5 96.6c0 3.6 13 10.2 16.3 12.2-27.4 41.5-69.8 71.4-117.9 83.3l-4.4-18.5c-.3-2.5-1.9-2.8-4.2-2.8-1.9 0-3 2.8-2.8 4.2l4.4 18.8c-13.3 2.8-26.8 4.2-40.4 4.2-36.3 0-72-10.2-103-29.1 1.7-2.8 12.2-18 12.2-20.2 0-1.9-1.7-3.6-3.6-3.6-3.9 0-12.2 16.6-14.7 19.9-41.8-27.7-72-70.6-83.6-119.6l19.1-4.2c2.2-.6 2.8-2.2 2.8-4.2 0-1.9-2.8-3-4.4-2.8L62 294.5c-2.5-12.7-3.9-25.5-3.9-38.5 0-37.1 10.5-73.6 30.2-104.9 2.8 1.7 16.1 10.8 18.3 10.8 1.9 0 3.6-1.4 3.6-3.3 0-3.9-14.7-11.3-18-13.6 28.2-41.2 71.1-70.9 119.8-81.9l4.2 18.5c.6 2.2 2.2 2.8 4.2 2.8s3-2.8 2.8-4.4L219 61.7c12.2-2.2 24.6-3.6 37.1-3.6 37.1 0 73.3 10.5 104.9 30.2-1.9 2.8-10.8 15.8-10.8 18 0 1.9 1.4 3.6 3.3 3.6 3.9 0 11.3-14.4 13.3-17.7 41 27.7 70.3 70 81.7 118.2l-15.5 3.3c-2.5.6-2.8 2.2-2.8 4.4 0 1.9 2.8 3 4.2 2.8l15.8-3.6c2.5 12.7 3.9 25.7 3.9 38.7 0 36.3-10 72-28.8 102.7-2.8-1.4-14.4-9.7-16.6-9.7-2.1 0-3.8 1.7-3.8 3.6zm-33.2-242.2c-13 12.2-134.2 123.7-137.6 129.5l-96.6 160.5c12.7-11.9 134.2-124 137.3-129.3l96.9-160.7z"], + "sass": [640, 512, [], "f41e", "M551.1 291.9c-22.4.1-41.8 5.5-58 13.5-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-3.8 11.1-5.3 19.1-2.3 11.7-25.8 53.5-39.1 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-2.7 11.4-5.3 19.1-2.6 7.7-33.9 77.3-42.1 95.4-4.2 9.2-7.8 16.6-10.4 21.6s-.2.3-.4.9c-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4.3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2-.8 0-1.4 2-1.4 2s10.1-42.4-19.4-42.4c-18.4 0-44 20.2-56.6 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.8-38.2-101.9-65.2-99.1-116.5 1-18.7 7.5-67.8 127.1-127.4 98-48.8 176.4-35.4 189.9-5.6 19.4 42.5-41.9 121.6-143.7 133-38.8 4.3-59.2-10.7-64.3-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.8 28.9 18.7 6.1 64.2 9.5 119.2-11.8C367 196.5 415.1 130.2 401 74.7 386.6 18.3 293.1-.2 204.6 31.2 151.9 49.9 94.9 79.3 53.9 117.6 5.2 163.2-2.6 202.9.6 219.5c11.4 58.9 92.6 97.3 125.1 125.7-1.6.9-3.1 1.7-4.5 2.5-16.3 8.1-78.2 40.5-93.7 74.7-17.5 38.8 2.9 66.6 16.3 70.4 41.8 11.6 84.6-9.3 107.6-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.3-4.9 16.4-9.4 23.5-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.5 5 15.4 5 13.8 0 20-11.4 26.9-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.4 0 18.8-12.1 23-18.3v.1s.2-.4.7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.6-46 16.2-31.8 31.7-71.5 31.7-71.5s1.4 9.7 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2s0 .1.1.2c-3 4-6.4 8.3-9.9 12.5-12.8 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.7 2.5 11.5-.8 19.6-3.6 23.5-5.4 6.2-2.2 13.4-5.7 20.2-10.6 12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5 19.8-28.9 35.1-60.6 35.1-60.6s1.4 9.7 6.2 25.8c2.4 8.1 7.1 17 11.4 25.7-18.6 15.1-30.1 32.6-34.1 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5 6.5-2.2 14.3-5.7 21.6-11.1 12.5-9.2 24.6-22.1 23.8-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.1-10.2 62.1-7.2 55.7 6.5 66.6 41.3 64.5 55.8-2.1 14.6-13.8 22.6-17.7 25-3.9 2.4-5.1 3.3-4.8 5.1.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.2-11.8 30.3-38.7 1.6-34-31.1-71.4-89-71.1zM121.8 436.6c-18.4 20.1-44.2 27.7-55.3 21.3C54.6 451 59.3 421.4 82 400c13.8-13 31.6-25 43.4-32.4 2.7-1.6 6.6-4 11.4-6.9.8-.5 1.2-.7 1.2-.7.9-.6 1.9-1.1 2.9-1.7 8.3 30.4.3 57.2-19.1 78.3zm134.4-91.4c-6.4 15.7-19.9 55.7-28.1 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.1-11.3 21.2-14.9 23.8-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.9-13.9 0 .5.1 1 .1 1.6-.1 17.9-17.3 30-25.1 34.8zm85.6-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.6-15.3 19-24.5 1.2 3.8 1.9 7.4 1.9 10.8-.1 22.5-16.2 30.9-25.9 34.4z"], + "schlix": [448, 512, [], "f3ea", "M350.5 157.7l-54.2-46.1 73.4-39 78.3 44.2-97.5 40.9zM192 122.1l45.7-28.2 34.7 34.6-55.4 29-25-35.4zm-65.1 6.6l31.9-22.1L176 135l-36.7 22.5-12.4-28.8zm-23.3 88.2l-8.8-34.8 29.6-18.3 13.1 35.3-33.9 17.8zm-21.2-83.7l23.9-18.1 8.9 24-26.7 18.3-6.1-24.2zM59 206.5l-3.6-28.4 22.3-15.5 6.1 28.7L59 206.5zm-30.6 16.6l20.8-12.8 3.3 33.4-22.9 12-1.2-32.6zM1.4 268l19.2-10.2.4 38.2-21 8.8L1.4 268zm59.1 59.3l-28.3 8.3-1.6-46.8 25.1-10.7 4.8 49.2zM99 263.2l-31.1 13-5.2-40.8L90.1 221l8.9 42.2zM123.2 377l-41.6 5.9-8.1-63.5 35.2-10.8 14.5 68.4zm28.5-139.9l21.2 57.1-46.2 13.6-13.7-54.1 38.7-16.6zm85.7 230.5l-70.9-3.3-24.3-95.8 55.2-8.6 40 107.7zm-84.9-279.7l42.2-22.4 28 45.9-50.8 21.3-19.4-44.8zm41 94.9l61.3-18.7 52.8 86.6-79.8 11.3-34.3-79.2zm51.4-85.6l67.3-28.8 65.5 65.4-88.6 26.2-44.2-62.8z"], + "scribd": [384, 512, [], "f28a", "M42.3 252.7c-16.1-19-24.7-45.9-24.8-79.9 0-100.4 75.2-153.1 167.2-153.1 98.6-1.6 156.8 49 184.3 70.6l-50.5 72.1-37.3-24.6 26.9-38.6c-36.5-24-79.4-36.5-123-35.8-50.7-.8-111.7 27.2-111.7 76.2 0 18.7 11.2 20.7 28.6 15.6 23.3-5.3 41.9.6 55.8 14 26.4 24.3 23.2 67.6-.7 91.9-29.2 29.5-85.2 27.3-114.8-8.4zm317.7 5.9c-15.5-18.8-38.9-29.4-63.2-28.6-38.1-2-71.1 28-70.5 67.2-.7 16.8 6 33 18.4 44.3 14.1 13.9 33 19.7 56.3 14.4 17.4-5.1 28.6-3.1 28.6 15.6 0 4.3-.5 8.5-1.4 12.7-16.7 40.9-59.5 64.4-121.4 64.4-51.9.2-102.4-16.4-144.1-47.3l33.7-39.4-35.6-27.4L0 406.3l15.4 13.8c52.5 46.8 120.4 72.5 190.7 72.2 51.4 0 94.4-10.5 133.6-44.1 57.1-51.4 54.2-149.2 20.3-189.6z"], + "searchengin": [460, 512, [], "f3eb", "M220.6 130.3l-67.2 28.2V43.2L98.7 233.5l54.7-24.2v130.3l67.2-209.3zm-83.2-96.7l-1.3 4.7-15.2 52.9C80.6 106.7 52 145.8 52 191.5c0 52.3 34.3 95.9 83.4 105.5v53.6C57.5 340.1 0 272.4 0 191.6c0-80.5 59.8-147.2 137.4-158zm311.4 447.2c-11.2 11.2-23.1 12.3-28.6 10.5-5.4-1.8-27.1-19.9-60.4-44.4-33.3-24.6-33.6-35.7-43-56.7-9.4-20.9-30.4-42.6-57.5-52.4l-9.7-14.7c-24.7 16.9-53 26.9-81.3 28.7l2.1-6.6 15.9-49.5c46.5-11.9 80.9-54 80.9-104.2 0-54.5-38.4-102.1-96-107.1V32.3C254.4 37.4 320 106.8 320 191.6c0 33.6-11.2 64.7-29 90.4l14.6 9.6c9.8 27.1 31.5 48 52.4 57.4s32.2 9.7 56.8 43c24.6 33.2 42.7 54.9 44.5 60.3s.7 17.3-10.5 28.5zm-9.9-17.9c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8z"], + "sellcast": [448, 512, [], "f2da", "M353.4 32H94.7C42.6 32 0 74.6 0 126.6v258.7C0 437.4 42.6 480 94.7 480h258.7c52.1 0 94.7-42.6 94.7-94.6V126.6c0-52-42.6-94.6-94.7-94.6zm-50 316.4c-27.9 48.2-89.9 64.9-138.2 37.2-22.9 39.8-54.9 8.6-42.3-13.2l15.7-27.2c5.9-10.3 19.2-13.9 29.5-7.9 18.6 10.8-.1-.1 18.5 10.7 27.6 15.9 63.4 6.3 79.4-21.3 15.9-27.6 6.3-63.4-21.3-79.4-17.8-10.2-.6-.4-18.6-10.6-24.6-14.2-3.4-51.9 21.6-37.5 18.6 10.8-.1-.1 18.5 10.7 48.4 28 65.1 90.3 37.2 138.5zm21.8-208.8c-17 29.5-16.3 28.8-19 31.5-6.5 6.5-16.3 8.7-26.5 3.6-18.6-10.8.1.1-18.5-10.7-27.6-15.9-63.4-6.3-79.4 21.3s-6.3 63.4 21.3 79.4c0 0 18.5 10.6 18.6 10.6 24.6 14.2 3.4 51.9-21.6 37.5-18.6-10.8.1.1-18.5-10.7-48.2-27.8-64.9-90.1-37.1-138.4 27.9-48.2 89.9-64.9 138.2-37.2l4.8-8.4c14.3-24.9 52-3.3 37.7 21.5z"], + "sellsy": [640, 512, [], "f213", "M539.71 237.308c3.064-12.257 4.29-24.821 4.29-37.384C544 107.382 468.618 32 376.076 32c-77.22 0-144.634 53.012-163.02 127.781-15.322-13.176-34.934-20.53-55.157-20.53-46.271 0-83.962 37.69-83.962 83.961 0 7.354.92 15.015 3.065 22.369-42.9 20.225-70.785 63.738-70.785 111.234C6.216 424.843 61.68 480 129.401 480h381.198c67.72 0 123.184-55.157 123.184-123.184.001-56.384-38.916-106.025-94.073-119.508zM199.88 401.554c0 8.274-7.048 15.321-15.321 15.321H153.61c-8.274 0-15.321-7.048-15.321-15.321V290.626c0-8.273 7.048-15.321 15.321-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v110.928zm89.477 0c0 8.274-7.048 15.321-15.322 15.321h-30.949c-8.274 0-15.321-7.048-15.321-15.321V270.096c0-8.274 7.048-15.321 15.321-15.321h30.949c8.274 0 15.322 7.048 15.322 15.321v131.458zm89.477 0c0 8.274-7.047 15.321-15.321 15.321h-30.949c-8.274 0-15.322-7.048-15.322-15.321V238.84c0-8.274 7.048-15.321 15.322-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v162.714zm87.027 0c0 8.274-7.048 15.321-15.322 15.321h-28.497c-8.274 0-15.321-7.048-15.321-15.321V176.941c0-8.579 7.047-15.628 15.321-15.628h28.497c8.274 0 15.322 7.048 15.322 15.628v224.613z"], + "servicestack": [496, 512, [], "f3ec", "M88 216c81.7 10.2 273.7 102.3 304 232H0c99.5-8.1 184.5-137 88-232zm32-152c32.3 35.6 47.7 83.9 46.4 133.6C249.3 231.3 373.7 321.3 400 448h96C455.3 231.9 222.8 79.5 120 64z"], + "shirtsinbulk": [448, 512, [], "f214", "M395.208 221.583H406v33.542h-10.792v-33.542zm0-9.625H406v-33.542h-10.792v33.542zm0 86.333H406V264.75h-10.792v33.541zM358.75 135.25h-33.542v10.5h33.542v-10.5zm36.458 206.208H406v-33.542h-10.792v33.542zM311.5 135.25h-33.542v10.5H311.5v-10.5zm-47.25 0H231v10.5h33.25v-10.5zm-47.25 0h-33.25v10.5H217v-10.5zm178.208 33.542H406V135.25h-33.542v10.5h22.75v23.042zm-255.792 259l30.625 13.417 4.375-9.917-30.625-13.417-4.375 9.917zM179.083 445l30.334 13.708 4.374-9.916-30.333-13.417-4.375 9.625zm216.125-60.375H406v-33.542h-10.792v33.542zm-334.833 8.167L91 406.208l4.375-9.624-30.625-13.709-4.375 9.917zm39.666 17.499l30.625 13.417 4.375-9.917-30.625-13.416-4.375 9.916zm132.417 38.501l4.375 9.916L267.459 445l-4.375-9.625-30.626 13.417zm118.417-52.208l4.375 9.624 30.624-13.416-4.374-9.917-30.625 13.709zM311.5 413.791l4.375 9.917 30.625-13.417-4.374-9.916-30.626 13.416zm-39.667 17.501l4.375 9.917 30.625-13.417-4.375-9.917-30.625 13.417zM311.5 46.583h-33.542v10.5H311.5v-10.5zm94.209 0h-33.251v10.5h33.251v-10.5zm-188.709 0h-33.25v10.5H217v-10.5zm141.75 0h-33.542v10.5h33.542v-10.5zm-94.5 0H231v10.5h33.25v-10.5zM448 3.708v406l-226.334 98.584L0 409.708v-406h448zm-29.166 116.958H29.166V390.75l192.792 85.75 196.875-85.75V120.666zm0-87.791H29.166V91.5h389.667V32.875zM75.542 46.583H42.291v10.5h33.251v-10.5zm94.5 0H136.5v10.5h33.542v-10.5zm-47.251 0H89.25v10.5h33.542v-10.5zm7.584 236.542c0-50.167 41.125-91.292 91.292-91.292 50.458 0 91.292 41.125 91.292 91.292 0 50.458-40.833 91.292-91.292 91.292-50.167-.001-91.292-40.834-91.292-91.292zm120.75 18.084c0 13.125-23.917 14.291-32.666 14.291-12.25 0-29.75-2.625-35.875-14.875h-.875L172.666 319c14.876 9.333 29.167 12.25 47.25 12.25 19.542 0 51.042-5.833 51.042-31.209 0-48.125-78.458-16.333-78.458-37.916 0-13.125 20.708-14.875 29.75-14.875 10.791 0 29.166 3.208 35.583 13.124h.875l8.751-16.916c-15.167-6.125-27.417-11.959-44.334-11.959-20.125 0-49.583 6.417-49.583 31.792 0 44.334 77.583 11.959 77.583 37.918zM122.791 135.25H89.25v10.5h33.542v-10.5zm-69.999 10.5h22.75v-10.5H42v33.542h10.792V145.75zm0 32.666H42v33.542h10.792v-33.542zm117.25-43.166H136.5v10.5h33.542v-10.5zm-117.25 86.333H42v33.542h10.792v-33.542zm0 86.334H42v33.542h10.792v-33.542zm0-43.167H42v33.542h10.792V264.75zm0 86.333H42v33.542h10.792v-33.542z"], + "shopware": [495, 512, [], "f5b5", "M395.5 455.27c-42.95 31.79-93.95 48.59-147.48 48.59-137.21 0-248.02-111-248.02-248 0-137.19 111.04-248 248.02-248 61.3 0 120.14 22.55 165.68 63.5 2.62 2.36.58 6.64-2.86 6.18-17.67-2.43-36.75-3.66-56.71-3.66-129.36 0-222.4 53.47-222.4 155.35 0 109.04 92.13 145.88 176.83 178.73 33.64 13.04 65.4 25.36 86.96 41.59 1.9 1.44 1.89 4.31-.02 5.72zm99.46-222.32c-.08-.94-.55-1.83-1.27-2.44-51.76-42.96-93.62-60.48-144.48-60.48-84.13 0-80.25 52.17-80.25 53.63 0 42.6 52.06 62.01 112.34 84.49 31.07 11.59 63.19 23.57 92.68 39.93 1.88 1.05 4.26.19 5.05-1.82 18.89-48.39 17.94-90.23 15.93-113.31z"], + "simplybuilt": [512, 512, [], "f215", "M481.2 64h-106c-14.5 0-26.6 11.8-26.6 26.3v39.6H163.3V90.3c0-14.5-12-26.3-26.6-26.3h-106C16.1 64 4.3 75.8 4.3 90.3v331.4c0 14.5 11.8 26.3 26.6 26.3h450.4c14.8 0 26.6-11.8 26.6-26.3V90.3c-.2-14.5-12-26.3-26.7-26.3zM149.8 355.8c-36.6 0-66.4-29.7-66.4-66.4 0-36.9 29.7-66.6 66.4-66.6 36.9 0 66.6 29.7 66.6 66.6 0 36.7-29.7 66.4-66.6 66.4zm212.4 0c-36.9 0-66.6-29.7-66.6-66.6 0-36.6 29.7-66.4 66.6-66.4 36.6 0 66.4 29.7 66.4 66.4 0 36.9-29.8 66.6-66.4 66.6z"], + "sistrix": [448, 512, [], "f3ee", "M448 449L301.2 300.2c20-27.9 31.9-62.2 31.9-99.2 0-93.1-74.7-168.9-166.5-168.9C74.7 32 0 107.8 0 200.9s74.7 168.9 166.5 168.9c39.8 0 76.3-14.2 105-37.9l146 148.1 30.5-31zM166.5 330.8c-70.6 0-128.1-58.3-128.1-129.9S95.9 71 166.5 71s128.1 58.3 128.1 129.9-57.4 129.9-128.1 129.9z"], + "sith": [448, 512, [], "f512", "M0 32l69.71 118.75-58.86-11.52 69.84 91.03a146.741 146.741 0 0 0 0 51.45l-69.84 91.03 58.86-11.52L0 480l118.75-69.71-11.52 58.86 91.03-69.84c17.02 3.04 34.47 3.04 51.48 0l91.03 69.84-11.52-58.86L448 480l-69.71-118.78 58.86 11.52-69.84-91.03c3.03-17.01 3.04-34.44 0-51.45l69.84-91.03-58.86 11.52L448 32l-118.75 69.71 11.52-58.9-91.06 69.87c-8.5-1.52-17.1-2.29-25.71-2.29s-17.21.78-25.71 2.29l-91.06-69.87 11.52 58.9L0 32zm224 99.78c31.8 0 63.6 12.12 87.85 36.37 48.5 48.5 48.49 127.21 0 175.7s-127.2 48.46-175.7-.03c-48.5-48.5-48.49-127.21 0-175.7 24.24-24.25 56.05-36.34 87.85-36.34zm0 36.66c-22.42 0-44.83 8.52-61.92 25.61-34.18 34.18-34.19 89.68 0 123.87s89.65 34.18 123.84 0c34.18-34.18 34.19-89.68 0-123.87-17.09-17.09-39.5-25.61-61.92-25.61z"], + "skyatlas": [640, 512, [], "f216", "M640 329.3c0 65.9-52.5 114.4-117.5 114.4-165.9 0-196.6-249.7-359.7-249.7-146.9 0-147.1 212.2 5.6 212.2 42.5 0 90.9-17.8 125.3-42.5 5.6-4.1 16.9-16.3 22.8-16.3s10.9 5 10.9 10.9c0 7.8-13.1 19.1-18.7 24.1-40.9 35.6-100.3 61.2-154.7 61.2-83.4.1-154-59-154-144.9s67.5-149.1 152.8-149.1c185.3 0 222.5 245.9 361.9 245.9 99.9 0 94.8-139.7 3.4-139.7-17.5 0-35 11.6-46.9 11.6-8.4 0-15.9-7.2-15.9-15.6 0-11.6 5.3-23.7 5.3-36.3 0-66.6-50.9-114.7-116.9-114.7-53.1 0-80 36.9-88.8 36.9-6.2 0-11.2-5-11.2-11.2 0-5.6 4.1-10.3 7.8-14.4 25.3-28.8 64.7-43.7 102.8-43.7 79.4 0 139.1 58.4 139.1 137.8 0 6.9-.3 13.7-1.2 20.6 11.9-3.1 24.1-4.7 35.9-4.7 60.7 0 111.9 45.3 111.9 107.2z"], + "skype": [448, 512, [], "f17e", "M424.7 299.8c2.9-14 4.7-28.9 4.7-43.8 0-113.5-91.9-205.3-205.3-205.3-14.9 0-29.7 1.7-43.8 4.7C161.3 40.7 137.7 32 112 32 50.2 32 0 82.2 0 144c0 25.7 8.7 49.3 23.3 68.2-2.9 14-4.7 28.9-4.7 43.8 0 113.5 91.9 205.3 205.3 205.3 14.9 0 29.7-1.7 43.8-4.7 19 14.6 42.6 23.3 68.2 23.3 61.8 0 112-50.2 112-112 .1-25.6-8.6-49.2-23.2-68.1zm-194.6 91.5c-65.6 0-120.5-29.2-120.5-65 0-16 9-30.6 29.5-30.6 31.2 0 34.1 44.9 88.1 44.9 25.7 0 42.3-11.4 42.3-26.3 0-18.7-16-21.6-42-28-62.5-15.4-117.8-22-117.8-87.2 0-59.2 58.6-81.1 109.1-81.1 55.1 0 110.8 21.9 110.8 55.4 0 16.9-11.4 31.8-30.3 31.8-28.3 0-29.2-33.5-75-33.5-25.7 0-42 7-42 22.5 0 19.8 20.8 21.8 69.1 33 41.4 9.3 90.7 26.8 90.7 77.6 0 59.1-57.1 86.5-112 86.5z"], + "slack": [448, 512, [], "f198", "M244.2 217.5l19.3 57.7-59.8 20-19.3-57.7 59.8-20zm41.4 243.7C131.6 507.4 65 471.6 18.8 317.6S8.4 97 162.4 50.8C316.4 4.6 383 40.4 429.2 194.4c46.2 154 10.4 220.6-143.6 266.8zM366.2 265c-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-19.3-57.7 29-9.7c12.2-3.9 18.6-17.2 14.7-29.4-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-59.8 20.1-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l19.3 57.7-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 59.8-20.1 10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 29-9.7c12.2-4.2 18.6-17.5 14.7-29.6z"], + "slack-hash": [448, 512, [], "f3ef", "M446.2 270.4c-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-30.3-90 45.4-15.1c19.1-6.2 29.1-26.8 23-45.9-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-93.4 31.2-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-45.3 15c-19.1 6.2-29.1 26.8-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l30.3 90L78 354.8c-19 6.2-29.1 26.9-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 93.6-31.3 15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 45.4-15.1c19-6 29.1-26.7 22.9-45.7zm-254.1 47.2l-30.3-90.2 93.5-31.3 30.3 90.2-93.5 31.3z"], + "slideshare": [512, 512, [], "f1e7", "M249.429 211.436c0 31.716-27.715 57.717-61.717 57.717-34.001 0-61.716-26.001-61.716-57.717 0-32.001 27.715-57.716 61.716-57.716 34.001 0 61.717 25.715 61.717 57.716zm254.294 50.002c-18.286 22.573-53.144 50.288-106.289 72.003C453.722 525.163 260 555.735 263.143 457.446c0 1.714-.286-52.859-.286-93.432-4.285-.858-8.571-2-13.714-3.143 0 40.858-.286 98.289-.286 96.575C252 555.735 58.278 525.163 114.566 333.441c-53.145-21.715-88.003-49.43-106.29-72.003-9.143-13.714.858-28.287 16.001-17.715 2 1.428 4.285 2.857 6.285 4.285V49.716C30.563 22.287 51.135 0 76.565 0h359.157c25.429 0 46.002 22.287 46.002 49.716v198.293l6-4.285c15.143-10.573 25.143 4 15.999 17.714zm-46.572-189.15c0-32.858-10.572-45.716-40.859-45.716H98.566c-31.716 0-40.573 10.858-40.573 45.716v192.293c67.717 35.43 125.72 29.144 157.435 28.001 13.429-.286 22.001 2.286 27.144 7.715 1.689 1.687 10.023 9.446 20.287 17.143 1.143-15.715 10.001-25.715 33.716-24.858 32.287 1.428 91.718 7.715 160.577-29.716V72.288zM331.146 153.72c-34.002 0-61.716 25.715-61.716 57.716 0 31.716 27.715 57.717 61.716 57.717 34.287 0 61.716-26.001 61.716-57.717 0-32.001-27.429-57.716-61.716-57.716z"], + "snapchat": [496, 512, [], "f2ab", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm169.5 338.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C183.1 100 230.7 96 244.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z"], + "snapchat-ghost": [512, 512, [], "f2ac", "M510.846 392.673c-5.211 12.157-27.239 21.089-67.36 27.318-2.064 2.786-3.775 14.686-6.507 23.956-1.625 5.566-5.623 8.869-12.128 8.869l-.297-.005c-9.395 0-19.203-4.323-38.852-4.323-26.521 0-35.662 6.043-56.254 20.588-21.832 15.438-42.771 28.764-74.027 27.399-31.646 2.334-58.025-16.908-72.871-27.404-20.714-14.643-29.828-20.582-56.241-20.582-18.864 0-30.736 4.72-38.852 4.72-8.073 0-11.213-4.922-12.422-9.04-2.703-9.189-4.404-21.263-6.523-24.13-20.679-3.209-67.31-11.344-68.498-32.15a10.627 10.627 0 0 1 8.877-11.069c69.583-11.455 100.924-82.901 102.227-85.934.074-.176.155-.344.237-.515 3.713-7.537 4.544-13.849 2.463-18.753-5.05-11.896-26.872-16.164-36.053-19.796-23.715-9.366-27.015-20.128-25.612-27.504 2.437-12.836 21.725-20.735 33.002-15.453 8.919 4.181 16.843 6.297 23.547 6.297 5.022 0 8.212-1.204 9.96-2.171-2.043-35.936-7.101-87.29 5.687-115.969C158.122 21.304 229.705 15.42 250.826 15.42c.944 0 9.141-.089 10.11-.089 52.148 0 102.254 26.78 126.723 81.643 12.777 28.65 7.749 79.792 5.695 116.009 1.582.872 4.357 1.942 8.599 2.139 6.397-.286 13.815-2.389 22.069-6.257 6.085-2.846 14.406-2.461 20.48.058l.029.01c9.476 3.385 15.439 10.215 15.589 17.87.184 9.747-8.522 18.165-25.878 25.018-2.118.835-4.694 1.655-7.434 2.525-9.797 3.106-24.6 7.805-28.616 17.271-2.079 4.904-1.256 11.211 2.46 18.748.087.168.166.342.239.515 1.301 3.03 32.615 74.46 102.23 85.934 6.427 1.058 11.163 7.877 7.725 15.859z"], + "snapchat-square": [448, 512, [], "f2ad", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6.5 314.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C159.1 100 206.7 96 220.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z"], + "soundcloud": [640, 512, [], "f1be", "M111.4 256.3l5.8 65-5.8 68.3c-.3 2.5-2.2 4.4-4.4 4.4s-4.2-1.9-4.2-4.4l-5.6-68.3 5.6-65c0-2.2 1.9-4.2 4.2-4.2 2.2 0 4.1 2 4.4 4.2zm21.4-45.6c-2.8 0-4.7 2.2-5 5l-5 105.6 5 68.3c.3 2.8 2.2 5 5 5 2.5 0 4.7-2.2 4.7-5l5.8-68.3-5.8-105.6c0-2.8-2.2-5-4.7-5zm25.5-24.1c-3.1 0-5.3 2.2-5.6 5.3l-4.4 130 4.4 67.8c.3 3.1 2.5 5.3 5.6 5.3 2.8 0 5.3-2.2 5.3-5.3l5.3-67.8-5.3-130c0-3.1-2.5-5.3-5.3-5.3zM7.2 283.2c-1.4 0-2.2 1.1-2.5 2.5L0 321.3l4.7 35c.3 1.4 1.1 2.5 2.5 2.5s2.2-1.1 2.5-2.5l5.6-35-5.6-35.6c-.3-1.4-1.1-2.5-2.5-2.5zm23.6-21.9c-1.4 0-2.5 1.1-2.5 2.5l-6.4 57.5 6.4 56.1c0 1.7 1.1 2.8 2.5 2.8s2.5-1.1 2.8-2.5l7.2-56.4-7.2-57.5c-.3-1.4-1.4-2.5-2.8-2.5zm25.3-11.4c-1.7 0-3.1 1.4-3.3 3.3L47 321.3l5.8 65.8c.3 1.7 1.7 3.1 3.3 3.1 1.7 0 3.1-1.4 3.1-3.1l6.9-65.8-6.9-68.1c0-1.9-1.4-3.3-3.1-3.3zm25.3-2.2c-1.9 0-3.6 1.4-3.6 3.6l-5.8 70 5.8 67.8c0 2.2 1.7 3.6 3.6 3.6s3.6-1.4 3.9-3.6l6.4-67.8-6.4-70c-.3-2.2-2-3.6-3.9-3.6zm241.4-110.9c-1.1-.8-2.8-1.4-4.2-1.4-2.2 0-4.2.8-5.6 1.9-1.9 1.7-3.1 4.2-3.3 6.7v.8l-3.3 176.7 1.7 32.5 1.7 31.7c.3 4.7 4.2 8.6 8.9 8.6s8.6-3.9 8.6-8.6l3.9-64.2-3.9-177.5c-.4-3-2-5.8-4.5-7.2zm-26.7 15.3c-1.4-.8-2.8-1.4-4.4-1.4s-3.1.6-4.4 1.4c-2.2 1.4-3.6 3.9-3.6 6.7l-.3 1.7-2.8 160.8s0 .3 3.1 65.6v.3c0 1.7.6 3.3 1.7 4.7 1.7 1.9 3.9 3.1 6.4 3.1 2.2 0 4.2-1.1 5.6-2.5 1.7-1.4 2.5-3.3 2.5-5.6l.3-6.7 3.1-58.6-3.3-162.8c-.3-2.8-1.7-5.3-3.9-6.7zm-111.4 22.5c-3.1 0-5.8 2.8-5.8 6.1l-4.4 140.6 4.4 67.2c.3 3.3 2.8 5.8 5.8 5.8 3.3 0 5.8-2.5 6.1-5.8l5-67.2-5-140.6c-.2-3.3-2.7-6.1-6.1-6.1zm376.7 62.8c-10.8 0-21.1 2.2-30.6 6.1-6.4-70.8-65.8-126.4-138.3-126.4-17.8 0-35 3.3-50.3 9.4-6.1 2.2-7.8 4.4-7.8 9.2v249.7c0 5 3.9 8.6 8.6 9.2h218.3c43.3 0 78.6-35 78.6-78.3.1-43.6-35.2-78.9-78.5-78.9zm-296.7-60.3c-4.2 0-7.5 3.3-7.8 7.8l-3.3 136.7 3.3 65.6c.3 4.2 3.6 7.5 7.8 7.5 4.2 0 7.5-3.3 7.5-7.5l3.9-65.6-3.9-136.7c-.3-4.5-3.3-7.8-7.5-7.8zm-53.6-7.8c-3.3 0-6.4 3.1-6.4 6.7l-3.9 145.3 3.9 66.9c.3 3.6 3.1 6.4 6.4 6.4 3.6 0 6.4-2.8 6.7-6.4l4.4-66.9-4.4-145.3c-.3-3.6-3.1-6.7-6.7-6.7zm26.7 3.4c-3.9 0-6.9 3.1-6.9 6.9L227 321.3l3.9 66.4c.3 3.9 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9l4.2-66.4-4.2-141.7c0-3.9-3-6.9-6.9-6.9z"], + "speakap": [448, 512, [], "f3f3", "M352 32H96C43.2 32 0 75.2 0 128v256c0 52.8 43.2 96 96 96h256c52.8 0 96-43.2 96-96V128c0-52.8-43.2-96-96-96zM221 382.9c-39.6 0-81.9-17.8-81.9-53.7V302H179v17.8c0 15.1 19.5 24.5 41.9 24.5 24.2 0 41.3-10.4 41.3-29.5 0-23.8-27.2-31.9-54.7-42.6-31.9-12.4-63.1-26.2-63.1-69.1 0-48 38.6-66.4 79.9-66.4 37.6 0 75.5 14.1 75.5 41.9v31.2h-39.9v-16.1c0-12.1-17.8-18.5-35.6-18.5-19.5 0-35.6 8.1-35.6 26.2 0 22.1 22.5 29.2 47 38.9 35.9 12.4 71.1 27.2 71.1 71.5.1 48.6-40.8 71.1-85.8 71.1z"], + "spotify": [496, 512, [], "f1bc", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm100.7 364.9c-4.2 0-6.8-1.3-10.7-3.6-62.4-37.6-135-39.2-206.7-24.5-3.9 1-9 2.6-11.9 2.6-9.7 0-15.8-7.7-15.8-15.8 0-10.3 6.1-15.2 13.6-16.8 81.9-18.1 165.6-16.5 237 26.2 6.1 3.9 9.7 7.4 9.7 16.5s-7.1 15.4-15.2 15.4zm26.9-65.6c-5.2 0-8.7-2.3-12.3-4.2-62.5-37-155.7-51.9-238.6-29.4-4.8 1.3-7.4 2.6-11.9 2.6-10.7 0-19.4-8.7-19.4-19.4s5.2-17.8 15.5-20.7c27.8-7.8 56.2-13.6 97.8-13.6 64.9 0 127.6 16.1 177 45.5 8.1 4.8 11.3 11 11.3 19.7-.1 10.8-8.5 19.5-19.4 19.5zm31-76.2c-5.2 0-8.4-1.3-12.9-3.9-71.2-42.5-198.5-52.7-280.9-29.7-3.6 1-8.1 2.6-12.9 2.6-13.2 0-23.3-10.3-23.3-23.6 0-13.6 8.4-21.3 17.4-23.9 35.2-10.3 74.6-15.2 117.5-15.2 73 0 149.5 15.2 205.4 47.8 7.8 4.5 12.9 10.7 12.9 22.6 0 13.6-11 23.3-23.2 23.3z"], + "squarespace": [512, 512, [], "f5be", "M186.12 343.34c-9.65 9.65-9.65 25.29 0 34.94 9.65 9.65 25.29 9.65 34.94 0L378.24 221.1c19.29-19.29 50.57-19.29 69.86 0s19.29 50.57 0 69.86L293.95 445.1c19.27 19.29 50.53 19.31 69.82.04l.04-.04 119.25-119.24c38.59-38.59 38.59-101.14 0-139.72-38.59-38.59-101.15-38.59-139.72 0l-157.22 157.2zm244.53-104.8c-9.65-9.65-25.29-9.65-34.93 0l-157.2 157.18c-19.27 19.29-50.53 19.31-69.82.05l-.05-.05c-9.64-9.64-25.27-9.65-34.92-.01l-.01.01c-9.65 9.64-9.66 25.28-.02 34.93l.02.02c38.58 38.57 101.14 38.57 139.72 0l157.2-157.2c9.65-9.65 9.65-25.29.01-34.93zm-261.99 87.33l157.18-157.18c9.64-9.65 9.64-25.29 0-34.94-9.64-9.64-25.27-9.64-34.91 0L133.72 290.93c-19.28 19.29-50.56 19.3-69.85.01l-.01-.01c-19.29-19.28-19.31-50.54-.03-69.84l.03-.03L218.03 66.89c-19.28-19.29-50.55-19.3-69.85-.02l-.02.02L28.93 186.14c-38.58 38.59-38.58 101.14 0 139.72 38.6 38.59 101.13 38.59 139.73.01zm-87.33-52.4c9.64 9.64 25.27 9.64 34.91 0l157.21-157.19c19.28-19.29 50.55-19.3 69.84-.02l.02.02c9.65 9.65 25.29 9.65 34.93 0 9.65-9.65 9.65-25.29 0-34.93-38.59-38.59-101.13-38.59-139.72 0L81.33 238.54c-9.65 9.64-9.65 25.28-.01 34.93h.01z"], + "stack-exchange": [448, 512, [], "f18d", "M17.7 332.3h412.7v22c0 37.7-29.3 68-65.3 68h-19L259.3 512v-89.7H83c-36 0-65.3-30.3-65.3-68v-22zm0-23.6h412.7v-85H17.7v85zm0-109.4h412.7v-85H17.7v85zM365 0H83C47 0 17.7 30.3 17.7 67.7V90h412.7V67.7C430.3 30.3 401 0 365 0z"], + "stack-overflow": [384, 512, [], "f16c", "M293.7 300l-181.2-84.5 16.7-36.5 181.3 84.7-16.8 36.3zm48-76L188.2 95.7l-25.5 30.8 153.5 128.3 25.5-30.8zm39.6-31.7L262 32l-32 24 119.3 160.3 32-24zM290.7 311L95 269.7 86.8 309l195.7 41 8.2-39zm31.6 129H42.7V320h-40v160h359.5V320h-40v120zm-39.8-80h-200v39.7h200V360z"], + "staylinked": [440, 512, [], "f3f5", "M201.6 127.4c4.1-3.2 10.3-3 13.8.5l170 167.3-2.7-2.7 44.3 41.3c3.7 3.5 3.3 9-.7 12.2l-198 163.9c-9.9 7.6-17.3.8-17.3.8L2.3 314.6c-3.5-3.5-3-9 1.2-12.2l45.8-34.9c4.2-3.2 10.4-3 13.9.5l151.9 147.5c3.7 3.5 10 3.7 14.2.4l93.2-74c4.1-3.2 4.5-8.7.9-12.2l-84-81.3c-3.6-3.5-9.9-3.7-14-.5l-.1.1c-4.1 3.2-10.4 3-14-.5l-68.1-64.3c-3.5-3.5-3.1-9 1.1-12.2l57.3-43.6m14.8 257.3c3.7 3.5 10.1 3.7 14.3.4l50.2-38.8-.3-.3 7.7-6c4.2-3.2 4.6-8.7.9-12.2l-57.1-54.4c-3.6-3.5-10-3.7-14.2-.5l-.1.1c-4.2 3.2-10.5 3.1-14.2-.4L109 180.8c-3.6-3.5-3.1-8.9 1.1-12.2l92.2-71.5c4.1-3.2 10.3-3 13.9.5l160.4 159c3.7 3.5 10 3.7 14.1.5l45.8-35.8c4.1-3.2 4.4-8.7.7-12.2L226.7 2.5c-1.5-1.2-8-5.5-16.3 1.1L3.6 165.7c-4.2 3.2-4.8 8.7-1.2 12.2l42.3 41.7"], + "steam": [496, 512, [], "f1b6", "M496 256c0 137-111.2 248-248.4 248-113.8 0-209.6-76.3-239-180.4l95.2 39.3c6.4 32.1 34.9 56.4 68.9 56.4 39.2 0 71.9-32.4 70.2-73.5l84.5-60.2c52.1 1.3 95.8-40.9 95.8-93.5 0-51.6-42-93.5-93.7-93.5s-93.7 42-93.7 93.5v1.2L176.6 279c-15.5-.9-30.7 3.4-43.5 12.1L0 236.1C10.2 108.4 117.1 8 247.6 8 384.8 8 496 119 496 256zM155.7 384.3l-30.5-12.6a52.79 52.79 0 0 0 27.2 25.8c26.9 11.2 57.8-1.6 69-28.4 5.4-13 5.5-27.3.1-40.3-5.4-13-15.5-23.2-28.5-28.6-12.9-5.4-26.7-5.2-38.9-.6l31.5 13c19.8 8.2 29.2 30.9 20.9 50.7-8.3 19.9-31 29.2-50.8 21zm173.8-129.9c-34.4 0-62.4-28-62.4-62.3s28-62.3 62.4-62.3 62.4 28 62.4 62.3-27.9 62.3-62.4 62.3zm.1-15.6c25.9 0 46.9-21 46.9-46.8 0-25.9-21-46.8-46.9-46.8s-46.9 21-46.9 46.8c.1 25.8 21.1 46.8 46.9 46.8z"], + "steam-square": [448, 512, [], "f1b7", "M185.2 356.5c7.7-18.5-1-39.7-19.6-47.4l-29.5-12.2c11.4-4.3 24.3-4.5 36.4.5 12.2 5.1 21.6 14.6 26.7 26.7 5 12.2 5 25.6-.1 37.7-10.5 25.1-39.4 37-64.6 26.5-11.6-4.8-20.4-13.6-25.4-24.2l28.5 11.8c18.6 7.8 39.9-.9 47.6-19.4zM400 32H48C21.5 32 0 53.5 0 80v160.7l116.6 48.1c12-8.2 26.2-12.1 40.7-11.3l55.4-80.2v-1.1c0-48.2 39.3-87.5 87.6-87.5s87.6 39.3 87.6 87.5c0 49.2-40.9 88.7-89.6 87.5l-79 56.3c1.6 38.5-29.1 68.8-65.7 68.8-31.8 0-58.5-22.7-64.5-52.7L0 319.2V432c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-99.7 222.5c-32.2 0-58.4-26.1-58.4-58.3s26.2-58.3 58.4-58.3 58.4 26.2 58.4 58.3-26.2 58.3-58.4 58.3zm.1-14.6c24.2 0 43.9-19.6 43.9-43.8 0-24.2-19.6-43.8-43.9-43.8-24.2 0-43.9 19.6-43.9 43.8 0 24.2 19.7 43.8 43.9 43.8z"], + "steam-symbol": [448, 512, [], "f3f6", "M395.5 177.5c0 33.8-27.5 61-61 61-33.8 0-61-27.3-61-61s27.3-61 61-61c33.5 0 61 27.2 61 61zm52.5.2c0 63-51 113.8-113.7 113.8L225 371.3c-4 43-40.5 76.8-84.5 76.8-40.5 0-74.7-28.8-83-67L0 358V250.7L97.2 290c15.1-9.2 32.2-13.3 52-11.5l71-101.7c.5-62.3 51.5-112.8 114-112.8C397 64 448 115 448 177.7zM203 363c0-34.7-27.8-62.5-62.5-62.5-4.5 0-9 .5-13.5 1.5l26 10.5c25.5 10.2 38 39 27.7 64.5-10.2 25.5-39.2 38-64.7 27.5-10.2-4-20.5-8.3-30.7-12.2 10.5 19.7 31.2 33.2 55.2 33.2 34.7 0 62.5-27.8 62.5-62.5zm207.5-185.3c0-42-34.3-76.2-76.2-76.2-42.3 0-76.5 34.2-76.5 76.2 0 42.2 34.3 76.2 76.5 76.2 41.9.1 76.2-33.9 76.2-76.2z"], + "sticker-mule": [576, 512, [], "f3f7", "M353.1 509.8c-5.9 2.9-32.1 3.2-36.5-.5-4.1-3-2.2-11.9-1.5-15 2.2-15-2.5-7.9-9.8-11.5-3.1-1.5-4.1-5.5-4.6-10-.5-1.5-1-2.5-1.5-3.5-1.7-10.7 6.8-33.6 8.2-43.4 4.9-23.7-.7-37.2 1.5-46.9 3.7-16.2 4.1-3.5 4.1-29.9-1.4-25.9 3.3-36.9.5-38.9-14.8 0-64.3 10.7-112.2 2-46.1-8.9-59.4-29-65.4-30.9-10.3-4.5-23.2.5-27.3 7-.1.1-35 70.6-39.6 87.8-6.2 20.5-.5 47.4 4.1 66.8 0 .1 4.5 14.6 10.3 19.5 2.1 1.5 5.1 2.5 7.2 4.5 2.8 2.7 9.4 15.2 9.8 16 2.6 4.5 3.6 8-1.5 10.5-3.6 2-9.3 2.5-14.4 2.5-2.6.5-1.5 3.5-3.1 5-2.9 2.8-20.7 6.1-29.9 2.5-2.6-1-5.7-3-6.2-5-1.5-4 2.1-9-1-12.5-4.5-2.9-13.1-2-17-12-2.2-5.4-2.6-7.6-2.6-49.4 0-9.7-5.9-38.7-8.2-46.9-1.5-5.5-1.5-11.5 0-16 .3-.9 4.1-4.6 4.1-13-1-1.5-4.6-.5-5.1-1.5-10.4-80.6-5.9-79-7.7-98.3-1.5-16-10.9-43.9-6.7-64.3.5-2.4 3.4-21 24.2-38.9 31-26.7 48.4-38.3 159-11.5 1.1.4 66.3 21.1 110.7-9 15.5-11.3 28.8-11.3 35.5-16 .1-.1 61.7-52.1 87-65.3 47.2-29.4 69.9-16.7 75.1-18 4.7-1 13.4-25.8 17-25.8 5.5 0 1.6 20.2 3.6 25.9.5 2 3.6 5 6.2 5 2.3 0 1.7-.8 10.3-5 8.4-5.4 14.9-17.6 20.6-17 11.7 1.6-19 41.6-19 46.9 0 2 .2.8 4.6 9.5 2.6 5.5 4.6 13.5 6.2 20 8.3 29.7 5.7 14.6 13.4 36.9 20.2 50.1 20.6 45.2 20.6 52.9 0 7.5-4.1 11-7.2 16.5-1.5 3-4.6 7.5-7.2 8-2.7.7 7-1.5-13.4 2.5-7.2 1-13.4-4.5-14.9-9.5-1.6-4.7 2.8-10.1-11.8-22.9-10.3-10-21.1-11.3-31.9-17-9.8-5.7-11.9 1-18 8-18 22.9-34 46.9-52 69.8-11.8 15-24.2 30.4-33.5 47.4-3.9 6.8-9.5 28.1-10.3 29.9-6.2 17.7-5.5 25.8-16.5 68.3-3.1 10-5.7 21.4-8.7 32.4-2.2 6.8-7.4 49.3-.5 59.4 2.1 3.5 8.7 4.5 11.3 8 .1.1 9.6 18.2 9.3 20 0 6.1-9.4 5.6-11.3 6.5-4.8 2.9-3.8 5.9-6.4 7.4"], + "strava": [369, 512, [], "f428", "M301.6 292l-43.9 88.2-44.6-88.2h-67.6l112.2 220 111.5-220h-67.6zM151.4 0L0 292h89.2l62.2-116.1L213.1 292h88.5L151.4 0z"], + "stripe": [640, 512, [], "f429", "M640 261.6c0-45.5-22-81.4-64.2-81.4s-67.9 35.9-67.9 81.1c0 53.5 30.3 78.2 73.5 78.2 21.2 0 37.1-4.8 49.2-11.5v-33.4c-12.1 6.1-26 9.8-43.6 9.8-17.3 0-32.5-6.1-34.5-26.9h86.9c.2-2.3.6-11.6.6-15.9m-87.9-16.8c0-20 12.3-28.4 23.4-28.4 10.9 0 22.5 8.4 22.5 28.4h-45.9zm-112.9-64.6c-17.4 0-28.6 8.2-34.8 13.9l-2.3-11H363v204.8l44.4-9.4.1-50.2c6.4 4.7 15.9 11.2 31.4 11.2 31.8 0 60.8-23.2 60.8-79.6.1-51.6-29.3-79.7-60.5-79.7m-10.6 122.5c-10.4 0-16.6-3.8-20.9-8.4l-.3-66c4.6-5.1 11-8.8 21.2-8.8 16.2 0 27.4 18.2 27.4 41.4.1 23.9-10.9 41.8-27.4 41.8M346.4 124v36.2l-44.6 9.5v-36.2l44.6-9.5m-44.5 59.2h44.6v153.2h-44.6V183.2zm-47.8 13.1c10.4-19.1 31.1-15.2 37.1-13.1V224c-5.7-1.8-23.4-4.5-33.9 9.3v103.1H213V183.2h38.4l2.7 13.1m-89-13.1h33.7V221h-33.7v63.2c0 26.2 28 18 33.7 15.7v33.8c-5.9 3.2-16.6 5.9-31.2 5.9-26.3 0-46.1-17-46.1-43.3l.2-142.4 43.3-9.2.1 38.5zM44.9 228.3c0 20 67.9 10.5 67.9 63.4 0 32-25.4 47.8-62.3 47.8-15.3 0-32-3-48.5-10.1v-40c14.9 8.1 33.9 14.2 48.6 14.2 9.9 0 17-2.7 17-10.9 0-21.2-67.5-13.2-67.5-62.4 0-31.4 24-50.2 60-50.2 14.7 0 29.4 2.3 44.1 8.1V230c-13.5-7.3-30.7-11.4-44.2-11.4-9.3.1-15.1 2.8-15.1 9.7"], + "stripe-s": [362, 512, [], "f42a", "M144.3 154.6c0-22.3 18.6-30.9 48.4-30.9 43.4 0 98.5 13.3 141.9 36.7V26.1C287.3 7.2 240.1 0 192.8 0 77.1 0 0 60.4 0 161.4c0 157.9 216.8 132.3 216.8 200.4 0 26.4-22.9 34.9-54.7 34.9-47.2 0-108.2-19.5-156.1-45.5v128.5c53 22.8 106.8 32.4 156 32.4 118.6 0 200.3-51 200.3-153.6 0-170.2-218-139.7-218-203.9"], + "studiovinari": [512, 512, [], "f3f8", "M480.3 187.7l4.2 28v28l-25.1 44.1-39.8 78.4-56.1 67.5-79.1 37.8-17.7 24.5-7.7 12-9.6 4s17.3-63.6 19.4-63.6c2.1 0 20.3.7 20.3.7l66.7-38.6-92.5 26.1-55.9 36.8-22.8 28-6.6 1.4 20.8-73.6 6.9-5.5 20.7 12.9 88.3-45.2 56.8-51.5 14.8-68.4-125.4 23.3 15.2-18.2-173.4-53.3 81.9-10.5-166-122.9L133.5 108 32.2 0l252.9 126.6-31.5-38L378 163 234.7 64l18.7 38.4-49.6-18.1L158.3 0l194.6 122L310 66.2l108 96.4 12-8.9-21-16.4 4.2-37.8L451 89.1l29.2 24.7 11.5 4.2-7 6.2 8.5 12-13.1 7.4-10.3 20.2 10.5 23.9z"], + "stumbleupon": [512, 512, [], "f1a4", "M502.9 266v69.7c0 62.1-50.3 112.4-112.4 112.4-61.8 0-112.4-49.8-112.4-111.3v-70.2l34.3 16 51.1-15.2V338c0 14.7 12 26.5 26.7 26.5S417 352.7 417 338v-72h85.9zm-224.7-58.2l34.3 16 51.1-15.2V173c0-60.5-51.1-109-112.1-109-60.8 0-112.1 48.2-112.1 108.2v162.4c0 14.9-12 26.7-26.7 26.7S86 349.5 86 334.6V266H0v69.7C0 397.7 50.3 448 112.4 448c61.6 0 112.4-49.5 112.4-110.8V176.9c0-14.7 12-26.7 26.7-26.7s26.7 12 26.7 26.7v30.9z"], + "stumbleupon-circle": [496, 512, [], "f1a3", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 177.5c-9.8 0-17.8 8-17.8 17.8v106.9c0 40.9-33.9 73.9-74.9 73.9-41.4 0-74.9-33.5-74.9-74.9v-46.5h57.3v45.8c0 10 8 17.8 17.8 17.8s17.8-7.9 17.8-17.8V200.1c0-40 34.2-72.1 74.7-72.1 40.7 0 74.7 32.3 74.7 72.6v23.7l-34.1 10.1-22.9-10.7v-20.6c.1-9.6-7.9-17.6-17.7-17.6zm167.6 123.6c0 41.4-33.5 74.9-74.9 74.9-41.2 0-74.9-33.2-74.9-74.2V263l22.9 10.7 34.1-10.1v47.1c0 9.8 8 17.6 17.8 17.6s17.8-7.9 17.8-17.6v-48h57.3c-.1 45.9-.1 46.4-.1 46.4z"], + "superpowers": [448, 512, [], "f2dd", "M448 32c-83.3 11-166.8 22-250 33-92 12.5-163.3 86.7-169 180-3.3 55.5 18 109.5 57.8 148.2L0 480c83.3-11 166.5-22 249.8-33 91.8-12.5 163.3-86.8 168.7-179.8 3.5-55.5-18-109.5-57.7-148.2L448 32zm-79.7 232.3c-4.2 79.5-74 139.2-152.8 134.5-79.5-4.7-140.7-71-136.3-151 4.5-79.2 74.3-139.3 153-134.5 79.3 4.7 140.5 71 136.1 151z"], + "supple": [640, 512, [], "f3f9", "M640 262.5c0 64.1-109 116.1-243.5 116.1-24.8 0-48.6-1.8-71.1-5 7.7.4 15.5.6 23.4.6 134.5 0 243.5-56.9 243.5-127.1 0-29.4-19.1-56.4-51.2-78 60 21.1 98.9 55.1 98.9 93.4zM47.7 227.9c-.1-70.2 108.8-127.3 243.3-127.6 7.9 0 15.6.2 23.3.5-22.5-3.2-46.3-4.9-71-4.9C108.8 96.3-.1 148.5 0 212.6c.1 38.3 39.1 72.3 99.3 93.3-32.3-21.5-51.5-48.6-51.6-78zm60.2 39.9s10.5 13.2 29.3 13.2c17.9 0 28.4-11.5 28.4-25.1 0-28-40.2-25.1-40.2-39.7 0-5.4 5.3-9.1 12.5-9.1 5.7 0 11.3 2.6 11.3 6.6v3.9h14.2v-7.9c0-12.1-15.4-16.8-25.4-16.8-16.5 0-28.5 10.2-28.5 24.1 0 26.6 40.2 25.4 40.2 39.9 0 6.6-5.8 10.1-12.3 10.1-11.9 0-20.7-10.1-20.7-10.1l-8.8 10.9zm120.8-73.6v54.4c0 11.3-7.1 17.8-17.8 17.8-10.7 0-17.8-6.5-17.8-17.7v-54.5h-15.8v55c0 18.9 13.4 31.9 33.7 31.9 20.1 0 33.4-13 33.4-31.9v-55h-15.7zm34.4 85.4h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.8-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5.1 14.7-14 14.7h-12.6zm57 43h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.7-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5 14.7-14 14.7h-12.6zm57.1 34.8c0 5.8 2.4 8.2 8.2 8.2h37.6c5.8 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-18.6c-1.7 0-2.6-1-2.6-2.6v-61.2c0-5.7-2.4-8.2-8.2-8.2H401v13.4h5.2c1.7 0 2.6 1 2.6 2.6v61.2zm63.4 0c0 5.8 2.4 8.2 8.2 8.2H519c5.7 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-19.7c-1.7 0-2.6-1-2.6-2.6v-20.3h27.7v-13.4H488v-22.4h19.2c1.7 0 2.6 1 2.6 2.6v5.2H524v-13c0-5.7-2.5-8.2-8.2-8.2h-51.6v13.4h7.8v63.9zm58.9-76v5.9h1.6v-5.9h2.7v-1.2h-7v1.2h2.7zm5.7-1.2v7.1h1.5v-5.7l2.3 5.7h1.3l2.3-5.7v5.7h1.5v-7.1h-2.3l-2.1 5.1-2.1-5.1h-2.4z"], + "teamspeak": [511, 512, [], "f4f9", "M.82 237.82c2.36-15.52 10.69-27.04 24.88-34.03 3.5-1.85 5.65-3.5 6.37-7.81 6.17-33.41 19.53-63.94 39.37-91.59 2.36-3.19 4.01-5.35 1.03-9.35-3.7-5.35-1.03-10.18 2.98-14.49 28.06-31.87 61.88-55.1 101.98-67.44 95.81-29.4 180.1-9.35 252.37 60.45 6.68 6.37 15.52 12.85 6.99 24.36-1.34 1.85 1.03 3.5 2.16 5.04 20.66 28.06 34.23 59.42 40.4 93.65.82 3.7 2.98 5.04 5.86 6.37 17.37 8.84 25.7 23.34 26.01 42.25 0 17.17 1.85 34.54-1.03 51.71-4.01 24.67-29.19 41.74-53.25 36.7-7.2-1.64-9.35-7.2-9.35-14.19 0-28.06.82-56.44 0-84.6-1.85-75.76-36.18-132.81-102.28-169.41C234.28 4.98 92.11 72.42 67.54 196.91c-6.06 30.42-1.74 48.27-3.7 125.82-.31 7.2-4.32 11.2-12.03 11.51C20.97 335.58 0 316.05 0 285.21v-20.87m221.74 106.81c11.82-4.32 20.05-11.82 22.51-24.36 2.36-12.34-12.03-30.02-32.38-48.73-20.87-19.22-48.22-39.06-63.43-46.57-21.69-12.03-41.74-1.85-46.26 22.72-5.04 26.21 0 51.4 14.49 73.91 10.18 15.52 25.39 22.72 43.38 24.05 11.62.62 52.54 2.16 61.69-1.02m129.83 5.55c36.5 2.81 59.33-28.55 58.39-60.45-2.14-45.17-66.17-16.48-87.79-8.02-73.16 28.14-45.05 54.92-22.2 60.75m149.26-1.33c-2.98-2.36-7.2-1.03-8.33 2.36-8.02 25.39-44.72 112.46-172.08 121.51-149.67 10.49 80.29 43.59 145.36-6.37 22.72-17.37 47.6-35.05 46.57-85.43-.32-10.07-4.84-26.72-11.52-32.07"], + "telegram": [496, 512, [], "f2c6", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm121.8 169.9l-40.7 191.8c-3 13.6-11.1 16.9-22.4 10.5l-62-45.7-29.9 28.8c-3.3 3.3-6.1 6.1-12.5 6.1l4.4-63.1 114.9-103.8c5-4.4-1.1-6.9-7.7-2.5l-142 89.4-61.2-19.1c-13.3-4.2-13.6-13.3 2.8-19.7l239.1-92.2c11.1-4 20.8 2.7 17.2 19.5z"], + "telegram-plane": [448, 512, [], "f3fe", "M446.7 98.6l-67.6 318.8c-5.1 22.5-18.4 28.1-37.3 17.5l-103-75.9-49.7 47.8c-5.5 5.5-10.1 10.1-20.7 10.1l7.4-104.9 190.9-172.5c8.3-7.4-1.8-11.5-12.9-4.1L117.8 284 16.2 252.2c-22.1-6.9-22.5-22.1 4.6-32.7L418.2 66.4c18.4-6.9 34.5 4.1 28.5 32.2z"], + "tencent-weibo": [384, 512, [], "f1d5", "M72.3 495.8c1.4 19.9-27.6 22.2-29.7 2.9C31 368.8 73.7 259.2 144 185.5c-15.6-34 9.2-77.1 50.6-77.1 30.3 0 55.1 24.6 55.1 55.1 0 44-49.5 70.8-86.9 45.1-65.7 71.3-101.4 169.8-90.5 287.2zM192 .1C66.1.1-12.3 134.3 43.7 242.4 52.4 259.8 79 246.9 70 229 23.7 136.4 91 29.8 192 29.8c75.4 0 136.9 61.4 136.9 136.9 0 90.8-86.9 153.9-167.7 133.1-19.1-4.1-25.6 24.4-6.6 29.1 110.7 23.2 204-60 204-162.3C358.6 74.7 284 .1 192 .1z"], + "themeco": [441, 512, [], "f5c6", "M199.74 12.29c9.74-5.64 25.59-5.73 35.39-.21l188.13 105.95c9.81 5.52 17.76 19.14 17.76 30.38v213.87c0 11.26-7.93 24.89-17.71 30.46L235.09 499.88c-9.78 5.57-25.58 5.48-35.29-.21L17.58 392.95C7.87 387.26 0 373.52 0 362.27V148.41c0-11.26 7.9-24.96 17.63-30.59L199.74 12.29zM123.54 209c-15.69 0-31.39.14-47.08.14v99.87h18.83v-29.39h28.25c48.94 0 48.79-70.62 0-70.62zm137.96 98.73l-30.25-34.1c36.4-7.39 34.26-64.21-10.7-64.49-15.84 0-31.67-.14-47.51-.14v100.01h18.83v-33.38H210l29.1 33.38h22.4v-1.28zm-40.94-81.04c22.98 0 22.9 31.96 0 31.96h-28.68v-31.96h28.68zm-94.07-1.57c20.85 0 20.78 38.24 0 38.24H94.68v-38.23l31.81-.01zm189.65-17.97c-67.4 0-69.86 104.15 0 104.15 68.39-.01 68.33-104.15 0-104.15zm0 17.12c43.43 0 44.1 69.76 0 69.76-44.12 0-43.74-69.76 0-69.76z"], + "themeisle": [512, 512, [], "f2b2", "M208 88.286c0-10 6.286-21.714 17.715-21.714 11.142 0 17.714 11.714 17.714 21.714 0 10.285-6.572 21.714-17.714 21.714C214.286 110 208 98.571 208 88.286zm304 160c0 36.001-11.429 102.286-36.286 129.714-22.858 24.858-87.428 61.143-120.857 70.572l-1.143.286v32.571c0 16.286-12.572 30.571-29.143 30.571-10 0-19.429-5.714-24.572-14.286-5.427 8.572-14.856 14.286-24.856 14.286-10 0-19.429-5.714-24.858-14.286-5.142 8.572-14.571 14.286-24.57 14.286-10.286 0-19.429-5.714-24.858-14.286-5.143 8.572-14.571 14.286-24.571 14.286-18.857 0-29.429-15.714-29.429-32.857-16.286 12.285-35.715 19.428-56.571 19.428-22 0-43.429-8.285-60.286-22.857 10.285-.286 20.571-2.286 30.285-5.714-20.857-5.714-39.428-18.857-52-36.286 21.37 4.645 46.209 1.673 67.143-11.143-22-22-56.571-58.857-68.572-87.428C1.143 321.714 0 303.714 0 289.429c0-49.714 20.286-160 86.286-160 10.571 0 18.857 4.858 23.143 14.857a158.792 158.792 0 0 1 12-15.428c2-2.572 5.714-5.429 7.143-8.286 7.999-12.571 11.714-21.142 21.714-34C182.571 45.428 232 17.143 285.143 17.143c6 0 12 .285 17.714 1.143C313.714 6.571 328.857 0 344.572 0c14.571 0 29.714 6 40 16.286.857.858 1.428 2.286 1.428 3.428 0 3.714-10.285 13.429-12.857 16.286 4.286 1.429 15.714 6.858 15.714 12 0 2.857-2.857 5.143-4.571 7.143 31.429 27.714 49.429 67.143 56.286 108 4.286-5.143 10.285-8.572 17.143-8.572 10.571 0 20.857 7.144 28.571 14.001C507.143 187.143 512 221.714 512 248.286zM188 89.428c0 18.286 12.571 37.143 32.286 37.143 19.714 0 32.285-18.857 32.285-37.143 0-18-12.571-36.857-32.285-36.857-19.715 0-32.286 18.858-32.286 36.857zM237.714 194c0-19.714 3.714-39.143 8.571-58.286-52.039 79.534-13.531 184.571 68.858 184.571 21.428 0 42.571-7.714 60-20 2-7.429 3.714-14.857 3.714-22.572 0-14.286-6.286-21.428-20.572-21.428-4.571 0-9.143.857-13.429 1.714-63.343 12.668-107.142 3.669-107.142-63.999zm-41.142 254.858c0-11.143-8.858-20.857-20.286-20.857-11.429 0-20 9.715-20 20.857v32.571c0 11.143 8.571 21.142 20 21.142 11.428 0 20.286-9.715 20.286-21.142v-32.571zm49.143 0c0-11.143-8.572-20.857-20-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20-10 20-21.142v-32.571zm49.713 0c0-11.143-8.857-20.857-20.285-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20.285-9.715 20.285-21.142v-32.571zm49.715 0c0-11.143-8.857-20.857-20.286-20.857-11.428 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.858 21.142 20.286 21.142 11.429 0 20.286-10 20.286-21.142v-32.571zM421.714 286c-30.857 59.142-90.285 102.572-158.571 102.572-96.571 0-160.571-84.572-160.571-176.572 0-16.857 2-33.429 6-49.714-20 33.715-29.714 72.572-29.714 111.429 0 60.286 24.857 121.715 71.429 160.857 5.143-9.714 14.857-16.286 26-16.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.571-14.286 24.858-14.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.857-14.286 24.858-14.286 10 0 19.428 5.714 24.857 14.286 5.143-8.571 14.571-14.286 24.572-14.286 10.857 0 20.857 6.572 25.714 16 43.427-36.286 68.569-92 71.426-148.286zm10.572-99.714c0-53.714-34.571-105.714-92.572-105.714-30.285 0-58.571 15.143-78.857 36.857C240.862 183.812 233.41 254 302.286 254c28.805 0 97.357-28.538 84.286 36.857 28.857-26 45.714-65.714 45.714-104.571z"], + "trade-federation": [496, 512, [], "f513", "M202.45 108.42v81.61H38.94l48.22 61.91h114.73v196.75h64.61V252.96h83.27v-62.69h-83.18V171.1h145.62v-62.68H202.45zm4.86 6h197.77v50.68H259.44v30.93h83.18v50.93h-83.26v195.73h-52.73V245.94H89.86l-39.95-49.91h157.4v-81.61zM247.99 8.8C111.03 8.8 0 119.83 0 256.8s111.03 248 247.99 248S496 393.76 496 256.8 384.96 8.8 247.99 8.8zm.02 13.24c129.66 0 234.76 105.12 234.76 234.78s-105.1 234.76-234.76 234.76S13.23 386.47 13.23 256.81 118.35 22.04 248.01 22.04zm0 7.89c-125.3 0-226.89 101.57-226.89 226.87s101.59 226.89 226.89 226.89S474.88 382.1 474.88 256.8 373.31 29.93 248.01 29.93zm-.02 13.3c117.95 0 213.56 95.62 213.56 213.56s-95.62 213.56-213.56 213.56S34.43 374.75 34.43 256.8 130.04 43.23 247.99 43.23zm-73.32 104.8l15.66 18.05-22.16-9.45-12.33 20.47 2.15-23.99-23.28-5.4 23.48-5.37-2.06-23.81 12.37 20.67 22.01-9.32-15.84 18.15zm-47.14-46.54l8.01 12.4 12.69-5.86-9.32 11.45 9.5 10.25-13.77-5.32-6.82 12.2.81-14.74-13.71-2.71 14.27-3.78-1.66-13.89zm250.77 75.59l11.99 19.56 20.88-9.11-14.9 17.45 15.11 17.04-21.2-8.78-11.54 19.64 1.8-22.87-22.24-4.9 22.31-5.36-2.21-22.67zm-107.05 98.45l13.86-3.22-1.28-14.17 7.35 12.18 13.08-5.59-9.31 10.75 9.36 10.71-13.1-5.54-7.29 12.21 1.22-14.17-13.89-3.16zm-125.43 6.5l23.73-3.87-1.73-24.53 11.01 21.38 22.79-9.22-16.93 17.08 15.81 18.83-21.47-10.82-13.02 20.86 3.66-23.77-23.85-5.94zm63.44-165.66v81.61H54.16l36.72 46.01h117.7v196.75h48.82V245.01h83.27v-47.03H257.4v-34.83h145.73v-46.78H209.26zm10.86 11.2h171.8v24.36H246.88v56.23h82.93v23.94h-82.93v197.42h-26.76V232.1H96.31l-20.09-23.94h143.9v-80.59z"], + "trello": [448, 512, [], "f181", "M392 32H56C25.1 32 0 57.1 0 88v336c0 30.9 25.1 56 56 56h336c30.9 0 56-25.1 56-56V88c0-30.9-25.1-56-56-56zM194.9 371.4c0 14.8-12 26.9-26.9 26.9H85.1c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9H168c14.8 0 26.9 12 26.9 26.9v254.3zm194.9-112c0 14.8-12 26.9-26.9 26.9H280c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9h82.9c14.8 0 26.9 12 26.9 26.9v142.3z"], + "tripadvisor": [576, 512, [], "f262", "M166.4 280.521c0 13.236-10.73 23.966-23.966 23.966s-23.966-10.73-23.966-23.966 10.73-23.966 23.966-23.966 23.966 10.729 23.966 23.966zm264.962-23.956c-13.23 0-23.956 10.725-23.956 23.956 0 13.23 10.725 23.956 23.956 23.956 13.23 0 23.956-10.725 23.956-23.956-.001-13.231-10.726-23.956-23.956-23.956zm89.388 139.49c-62.667 49.104-153.276 38.109-202.379-24.559l-30.979 46.325-30.683-45.939c-48.277 60.39-135.622 71.891-197.885 26.055-64.058-47.158-77.759-137.316-30.601-201.374A186.762 186.762 0 0 0 0 139.416l90.286-.05a358.48 358.48 0 0 1 197.065-54.03 350.382 350.382 0 0 1 192.181 53.349l96.218.074a185.713 185.713 0 0 0-28.352 57.649c46.793 62.747 34.964 151.37-26.648 199.647zM259.366 281.761c-.007-63.557-51.535-115.075-115.092-115.068C80.717 166.7 29.2 218.228 29.206 281.785c.007 63.557 51.535 115.075 115.092 115.068 63.513-.075 114.984-51.539 115.068-115.052v-.04zm28.591-10.455c5.433-73.44 65.51-130.884 139.12-133.022a339.146 339.146 0 0 0-139.727-27.812 356.31 356.31 0 0 0-140.164 27.253c74.344 1.582 135.299 59.424 140.771 133.581zm251.706-28.767c-21.992-59.634-88.162-90.148-147.795-68.157-59.634 21.992-90.148 88.162-68.157 147.795v.032c22.038 59.607 88.198 90.091 147.827 68.113 59.615-22.004 90.113-88.162 68.125-147.783zm-326.039 37.975v.115c-.057 39.328-31.986 71.163-71.314 71.106-39.328-.057-71.163-31.986-71.106-71.314.057-39.328 31.986-71.163 71.314-71.106 39.259.116 71.042 31.94 71.106 71.199zm-24.512 0v-.084c-.051-25.784-20.994-46.645-46.778-46.594-25.784.051-46.645 20.994-46.594 46.777.051 25.784 20.994 46.645 46.777 46.594 25.726-.113 46.537-20.968 46.595-46.693zm313.423 0v.048c-.02 39.328-31.918 71.194-71.247 71.173s-71.194-31.918-71.173-71.247c.02-39.328 31.918-71.194 71.247-71.173 39.29.066 71.121 31.909 71.173 71.199zm-24.504-.008c-.009-25.784-20.918-46.679-46.702-46.67-25.784.009-46.679 20.918-46.67 46.702.009 25.784 20.918 46.678 46.702 46.67 25.765-.046 46.636-20.928 46.67-46.693v-.009z"], + "tumblr": [320, 512, [], "f173", "M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z"], + "tumblr-square": [448, 512, [], "f174", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-82.3 364.2c-8.5 9.1-31.2 19.8-60.9 19.8-75.5 0-91.9-55.5-91.9-87.9v-90h-29.7c-3.4 0-6.2-2.8-6.2-6.2v-42.5c0-4.5 2.8-8.5 7.1-10 38.8-13.7 50.9-47.5 52.7-73.2.5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2h-52.1V321c0 21.4 14.8 33.5 42.5 22.4 3-1.2 5.6-2 8-1.4 2.2.5 3.6 2.1 4.6 4.9l13.8 40.2c1 3.2 2 6.7-.3 9.1z"], + "twitch": [448, 512, [], "f1e8", "M40.1 32L10 108.9v314.3h107V480h60.2l56.8-56.8h87l117-117V32H40.1zm357.8 254.1L331 353H224l-56.8 56.8V353H76.9V72.1h321v214zM331 149v116.9h-40.1V149H331zm-107 0v116.9h-40.1V149H224z"], + "twitter": [512, 512, [], "f099", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"], + "twitter-square": [448, 512, [], "f081", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z"], + "typo3": [433, 512, [], "f42b", "M330.8 341c-7 2.3-11.6 2.3-18.5 2.3-57.2 0-140.6-198.5-140.6-264.9 0-24.7 5.4-32.4 13.9-39.4-69.5 8.5-149.3 34-176.3 66.4-5.4 7.7-9.3 20.8-9.3 37.1C0 246 106.8 480 184.1 480c36.3 0 97.3-59.5 146.7-139M294.5 32c71.8 0 138.8 11.6 138.8 52.5 0 82.6-52.5 182.3-78.8 182.3-47.9 0-101.7-132.1-101.7-198.5 0-30.9 11.6-36.3 41.7-36.3"], + "uber": [448, 512, [], "f402", "M414.1 32H33.9C15.2 32 0 47.2 0 65.9V446c0 18.8 15.2 34 33.9 34H414c18.7 0 33.9-15.2 33.9-33.9V65.9C448 47.2 432.8 32 414.1 32zM237.6 391.1C163 398.6 96.4 344.2 88.9 269.6h94.4V290c0 3.7 3 6.8 6.8 6.8H258c3.7 0 6.8-3 6.8-6.8v-67.9c0-3.7-3-6.8-6.8-6.8h-67.9c-3.7 0-6.8 3-6.8 6.8v20.4H88.9c7-69.4 65.4-122.2 135.1-122.2 69.7 0 128.1 52.8 135.1 122.2 7.5 74.5-46.9 141.1-121.5 148.6z"], + "uikit": [448, 512, [], "f403", "M443.9 128v256L218 512 0 384V169.7l87.6 45.1v117l133.5 75.5 135.8-75.5v-151l-101.1-57.6 87.6-53.1L443.9 128zM308.6 49.1L223.8 0l-88.6 54.8 86 47.3 87.4-53z"], + "uniregistry": [384, 512, [], "f404", "M281.1 220.1H384v-14.8H281.1v14.8zm0-37.1H384v-12.4H281.1V183zm0 74.2H384v-17.3H281.1v17.3zm-157.7 86.7H8.5c2.6 8.5 5.8 16.8 9.6 24.8h138.3c-12.9-5.7-24.1-14.2-33-24.8m145.7-12.4h109.7c1.8-7.3 3.1-14.7 3.9-22.3H278.3c-2.1 7.9-5.2 15.4-9.2 22.3m-41.5 37.1H367c3.7-8 5.8-16.2 8.5-24.8h-115c-8.8 10.7-20.1 19.2-32.9 24.8M384 32H281.1v2.5H384V32zM192 480c39.5 0 76.2-11.8 106.8-32.2H85.3C115.8 468.2 152.5 480 192 480m89.1-334.2H384V136H281.1v9.8zm0-37.1H384v-7.4H281.1v7.4zm0-37.1H384v-4.9H281.1v4.9zm-178.2 99H0V183h102.9v-12.4zM38.8 405.7h305.3c6.7-8.5 12.6-17.6 17.8-27.2H23c5.2 9.6 9.2 18.7 15.8 27.2m64.1-118.8v-12.4H0v12.4c0 2.5 0 5 .1 7.4h103.1c-.2-2.4-.3-4.9-.3-7.4m178.2 0c0 2.5-.1 5-.4 7.4h103.1c.1-2.5.2-4.9.2-7.4v-12.4H281.1v12.4zm-203 156h227.7c11.8-8.7 22.7-18.6 32.2-29.7H44.9c9.6 11 21.4 21 33.2 29.7m24.8-376.2H0v4.9h102.9v-4.9zm0-34.7H0v2.5h102.9V32zm0 173.3H0v14.8h102.9v-14.8zm0 34.6H0v17.3h102.9v-17.3zm0-103.9H0v9.9h102.9V136zm0-34.7H0v7.4h102.9v-7.4zm2.8 207.9H1.3c.9 7.6 2.2 15 3.9 22.3h109.7c-4-6.9-7.2-14.4-9.2-22.3"], + "untappd": [640, 512, [], "f405", "M401.3 49.9c-79.8 160.1-84.6 152.5-87.9 173.2l-5.2 32.8c-1.9 12-6.6 23.5-13.7 33.4L145.6 497.1c-7.6 10.6-20.4 16.2-33.4 14.6-40.3-5-77.8-32.2-95.3-68.5-5.7-11.8-4.5-25.8 3.1-36.4l148.9-207.9c7.1-9.9 16.4-18 27.2-23.7l29.3-15.5c18.5-9.8 9.7-11.9 135.6-138.9 1-4.8 1-7.3 3.6-8 3-.7 6.6-1 6.3-4.6l-.4-4.6c-.2-1.9 1.3-3.6 3.2-3.6 4.5-.1 13.2 1.2 25.6 10 12.3 8.9 16.4 16.8 17.7 21.1.6 1.8-.6 3.7-2.4 4.2l-4.5 1.1c-3.4.9-2.5 4.4-2.3 7.4.1 2.8-2.3 3.6-6.5 6.1zM230.1 36.4c3.4.9 2.5 4.4 2.3 7.4-.2 2.7 2.1 3.5 6.4 6 7.9 15.9 15.3 30.5 22.2 44 .7 1.3 2.3 1.5 3.3.5 11.2-12 24.6-26.2 40.5-42.6 1.3-1.4 1.4-3.5.1-4.9-8-8.2-16.5-16.9-25.6-26.1-1-4.7-1-7.3-3.6-8-3-.8-6.6-1-6.3-4.6.3-3.3 1.4-8.1-2.8-8.2-4.5-.1-13.2 1.1-25.6 10-12.3 8.9-16.4 16.8-17.7 21.1-1.4 4.2 3.6 4.6 6.8 5.4zM620 406.7L471.2 198.8c-13.2-18.5-26.6-23.4-56.4-39.1-11.2-5.9-14.2-10.9-30.5-28.9-1-1.1-2.9-.9-3.6.5-46.3 88.8-47.1 82.8-49 94.8-1.7 10.7-1.3 20 .3 29.8 1.9 12 6.6 23.5 13.7 33.4l148.9 207.9c7.6 10.6 20.2 16.2 33.1 14.7 40.3-4.9 78-32 95.7-68.6 5.4-11.9 4.3-25.9-3.4-36.6z"], + "usb": [640, 512, [], "f287", "M641.5 256c0 3.1-1.7 6.1-4.5 7.5L547.9 317c-1.4.8-2.8 1.4-4.5 1.4-1.4 0-3.1-.3-4.5-1.1-2.8-1.7-4.5-4.5-4.5-7.8v-35.6H295.7c25.3 39.6 40.5 106.9 69.6 106.9H392V354c0-5 3.9-8.9 8.9-8.9H490c5 0 8.9 3.9 8.9 8.9v89.1c0 5-3.9 8.9-8.9 8.9h-89.1c-5 0-8.9-3.9-8.9-8.9v-26.7h-26.7c-75.4 0-81.1-142.5-124.7-142.5H140.3c-8.1 30.6-35.9 53.5-69 53.5C32 327.3 0 295.3 0 256s32-71.3 71.3-71.3c33.1 0 61 22.8 69 53.5 39.1 0 43.9 9.5 74.6-60.4C255 88.7 273 95.7 323.8 95.7c7.5-20.9 27-35.6 50.4-35.6 29.5 0 53.5 23.9 53.5 53.5s-23.9 53.5-53.5 53.5c-23.4 0-42.9-14.8-50.4-35.6H294c-29.1 0-44.3 67.4-69.6 106.9h310.1v-35.6c0-3.3 1.7-6.1 4.5-7.8 2.8-1.7 6.4-1.4 8.9.3l89.1 53.5c2.8 1.1 4.5 4.1 4.5 7.2z"], + "ussunnah": [512, 512, [], "f407", "M156.8 285.1l5.7 14.4h-8.2c-1.3-3.2-3.1-7.7-3.8-9.5-2.5-6.3-1.1-8.4 0-10 1.9-2.7 3.2-4.4 3.6-5.2 0 2.2.8 5.7 2.7 10.3zm297.3 18.8c-2.1 13.8-5.7 27.1-10.5 39.7l43 23.4-44.8-18.8c-5.3 13.2-12 25.6-19.9 37.2l34.2 30.2-36.8-26.4c-8.4 11.8-18 22.6-28.7 32.3l24.9 34.7-28.1-31.8c-11 9.6-23.1 18-36.1 25.1l15.7 37.2-19.3-35.3c-13.1 6.8-27 12.1-41.6 15.9l6.7 38.4-10.5-37.4c-14.3 3.4-29.2 5.3-44.5 5.4L256 512l-1.9-38.4c-15.3-.1-30.2-2-44.5-5.3L199 505.6l6.7-38.2c-14.6-3.7-28.6-9.1-41.7-15.8l-19.2 35.1 15.6-37c-13-7-25.2-15.4-36.2-25.1l-27.9 31.6 24.7-34.4c-10.7-9.7-20.4-20.5-28.8-32.3l-36.5 26.2 33.9-29.9c-7.9-11.6-14.6-24.1-20-37.3l-44.4 18.7L67.8 344c-4.8-12.7-8.4-26.1-10.5-39.9l-51 9 50.3-14.2c-1.1-8.5-1.7-17.1-1.7-25.9 0-4.7.2-9.4.5-14.1L0 256l56-2.8c1.3-13.1 3.8-25.8 7.5-38.1L6.4 199l58.9 10.4c4-12 9.1-23.5 15.2-34.4l-55.1-30 58.3 24.6C90 159 97.2 149.2 105.3 140L55.8 96.4l53.9 38.7c8.1-8.6 17-16.5 26.6-23.6l-40-55.6 45.6 51.6c9.5-6.6 19.7-12.3 30.3-17.2l-27.3-64.9 33.8 62.1c10.5-4.4 21.4-7.9 32.7-10.4L199 6.4l19.5 69.2c11-2.1 22.3-3.2 33.8-3.4L256 0l3.6 72.2c11.5.2 22.8 1.4 33.8 3.5L313 6.4l-12.4 70.7c11.3 2.6 22.2 6.1 32.6 10.5l33.9-62.2-27.4 65.1c10.6 4.9 20.7 10.7 30.2 17.2l45.8-51.8-40.1 55.9c9.5 7.1 18.4 15 26.5 23.6l54.2-38.9-49.7 43.9c8 9.1 15.2 18.9 21.5 29.4l58.7-24.7-55.5 30.2c6.1 10.9 11.1 22.3 15.1 34.3l59.3-10.4-57.5 16.2c3.7 12.2 6.2 24.9 7.5 37.9L512 256l-56 2.8c.3 4.6.5 9.3.5 14.1 0 8.7-.6 17.3-1.6 25.8l50.7 14.3-51.5-9.1zm-21.8-31c0-97.5-79-176.5-176.5-176.5s-176.5 79-176.5 176.5 79 176.5 176.5 176.5 176.5-79 176.5-176.5zm-24 0c0 84.3-68.3 152.6-152.6 152.6s-152.6-68.3-152.6-152.6 68.3-152.6 152.6-152.6 152.6 68.3 152.6 152.6zM195 241c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-40.7-19c0 2.1 1.3 3.8 3.6 5.1 3.5 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-19 0c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.4 6.8-9.6 10.9-9.6 12.6zm204.9 87.9c-8.4-3-8.7-6.8-8.7-15.6V182c-8.2 12.5-14.2 18.6-18 18.6 6.3 14.4 9.5 23.9 9.5 28.3v64.3c0 2.2-2.2 6.5-4.7 6.5h-18c-2.8-7.5-10.2-26.9-15.3-40.3-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3 2.6 6.7 6.4 16.5 7.9 20.2h-9.2c-3.9-10.4-9.6-25.4-11.8-31.1-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3.8 2 2.8 7.3 4.3 10.9H256c-1.5-4.1-5.6-14.6-8.4-22-2 2.5-7.2 9.2-10.7 13.7 2.5 1.6 4.3 3.6 5.2 6.3.2.6.5 1.4.6 1.7H225c-4.6-13.9-11.4-27.7-11.4-34.1 0-2.2.3-5.1 1.1-8.2-8.8 10.8-14 15.9-14 25 0 7.5 10.4 28.3 10.4 33.3 0 1.7-.5 3.3-1.4 4.9-9.6-12.7-15.5-20.7-18.8-20.7h-12l-11.2-28c-3.8-9.6-5.7-16-5.7-18.8 0-3.8.5-7.7 1.7-12.2-1 1.3-3.7 4.7-5.5 7.1-.8-2.1-3.1-7.7-4.6-11.5-2.1 2.5-7.5 9.1-11.2 13.6.9 2.3 3.3 8.1 4.9 12.2-2.5 3.3-9.1 11.8-13.6 17.7-4 5.3-5.8 13.3-2.7 21.8 2.5 6.7 2 7.9-1.7 14.1H191c5.5 0 14.3 14 15.5 22 13.2-16 15.4-19.6 16.8-21.6h107c3.9 0 7.2-1.9 9.9-5.8zm20.1-26.6V181.7c-9 12.5-15.9 18.6-20.7 18.6 7.1 14.4 10.7 23.9 10.7 28.3v66.3c0 17.5 8.6 20.4 24 20.4 8.1 0 12.5-.8 13.7-2.7-4.3-1.6-7.6-2.5-9.9-3.3-8.1-3.2-17.8-7.4-17.8-26z"], + "vaadin": [448, 512, [], "f408", "M224.5 140.7c1.5-17.6 4.9-52.7 49.8-52.7h98.6c20.7 0 32.1-7.8 32.1-21.6V54.1c0-12.2 9.3-22.1 21.5-22.1S448 41.9 448 54.1v36.5c0 42.9-21.5 62-66.8 62H280.7c-30.1 0-33 14.7-33 27.1 0 1.3-.1 2.5-.2 3.7-.7 12.3-10.9 22.2-23.4 22.2s-22.7-9.8-23.4-22.2c-.1-1.2-.2-2.4-.2-3.7 0-12.3-3-27.1-33-27.1H66.8c-45.3 0-66.8-19.1-66.8-62V54.1C0 41.9 9.4 32 21.6 32s21.5 9.9 21.5 22.1v12.3C43.1 80.2 54.5 88 75.2 88h98.6c44.8 0 48.3 35.1 49.8 52.7h.9zM224 456c11.5 0 21.4-7 25.7-16.3 1.1-1.8 97.1-169.6 98.2-171.4 11.9-19.6-3.2-44.3-27.2-44.3-13.9 0-23.3 6.4-29.8 20.3L224 362l-66.9-117.7c-6.4-13.9-15.9-20.3-29.8-20.3-24 0-39.1 24.6-27.2 44.3 1.1 1.9 97.1 169.6 98.2 171.4 4.3 9.3 14.2 16.3 25.7 16.3z"], + "viacoin": [384, 512, [], "f237", "M384 32h-64l-80.7 192h-94.5L64 32H0l48 112H0v48h68.5l13.8 32H0v48h102.8L192 480l89.2-208H384v-48h-82.3l13.8-32H384v-48h-48l48-112zM192 336l-27-64h54l-27 64z"], + "viadeo": [448, 512, [], "f2a9", "M276.2 150.5v.7C258.3 98.6 233.6 47.8 205.4 0c43.3 29.2 67 100 70.8 150.5zm32.7 121.7c7.6 18.2 11 37.5 11 57 0 77.7-57.8 141-137.8 139.4l3.8-.3c74.2-46.7 109.3-118.6 109.3-205.1 0-38.1-6.5-75.9-18.9-112 1 11.7 1 23.7 1 35.4 0 91.8-18.1 241.6-116.6 280C95 455.2 49.4 398 49.4 329.2c0-75.6 57.4-142.3 135.4-142.3 16.8 0 33.7 3.1 49.1 9.6 1.7-15.1 6.5-29.9 13.4-43.3-19.9-7.2-41.2-10.7-62.5-10.7-161.5 0-238.7 195.9-129.9 313.7 67.9 74.6 192 73.9 259.8 0 56.6-61.3 60.9-142.4 36.4-201-12.7 8-27.1 13.9-42.2 17zM418.1 11.7c-31 66.5-81.3 47.2-115.8 80.1-12.4 12-20.6 34-20.6 50.5 0 14.1 4.5 27.1 12 38.8 47.4-11 98.3-46 118.2-90.7-.7 5.5-4.8 14.4-7.2 19.2-20.3 35.7-64.6 65.6-99.7 84.9 14.8 14.4 33.7 25.8 55 25.8 79 0 110.1-134.6 58.1-208.6z"], + "viadeo-square": [448, 512, [], "f2aa", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM280.7 381.2c-42.4 46.2-120 46.6-162.4 0-68-73.6-19.8-196.1 81.2-196.1 13.3 0 26.6 2.1 39.1 6.7-4.3 8.4-7.3 17.6-8.4 27.1-9.7-4.1-20.2-6-30.7-6-48.8 0-84.6 41.7-84.6 88.9 0 43 28.5 78.7 69.5 85.9 61.5-24 72.9-117.6 72.9-175 0-7.3 0-14.8-.6-22.1-11.2-32.9-26.6-64.6-44.2-94.5 27.1 18.3 41.9 62.5 44.2 94.1v.4c7.7 22.5 11.8 46.2 11.8 70 0 54.1-21.9 99-68.3 128.2l-2.4.2c50 1 86.2-38.6 86.2-87.2 0-12.2-2.1-24.3-6.9-35.7 9.5-1.9 18.5-5.6 26.4-10.5 15.3 36.6 12.6 87.3-22.8 125.6zM309 233.7c-13.3 0-25.1-7.1-34.4-16.1 21.9-12 49.6-30.7 62.3-53 1.5-3 4.1-8.6 4.5-12-12.5 27.9-44.2 49.8-73.9 56.7-4.7-7.3-7.5-15.5-7.5-24.3 0-10.3 5.2-24.1 12.9-31.6 21.6-20.5 53-8.5 72.4-50 32.5 46.2 13.1 130.3-36.3 130.3z"], + "viber": [512, 512, [], "f409", "M444 49.9C431.3 38.2 379.9.9 265.3.4c0 0-135.1-8.1-200.9 52.3C27.8 89.3 14.9 143 13.5 209.5c-1.4 66.5-3.1 191.1 117 224.9h.1l-.1 51.6s-.8 20.9 13 25.1c16.6 5.2 26.4-10.7 42.3-27.8 8.7-9.4 20.7-23.2 29.8-33.7 82.2 6.9 145.3-8.9 152.5-11.2 16.6-5.4 110.5-17.4 125.7-142 15.8-128.6-7.6-209.8-49.8-246.5zM457.9 287c-12.9 104-89 110.6-103 115.1-6 1.9-61.5 15.7-131.2 11.2 0 0-52 62.7-68.2 79-5.3 5.3-11.1 4.8-11-5.7 0-6.9.4-85.7.4-85.7-.1 0-.1 0 0 0-101.8-28.2-95.8-134.3-94.7-189.8 1.1-55.5 11.6-101 42.6-131.6 55.7-50.5 170.4-43 170.4-43 96.9.4 143.3 29.6 154.1 39.4 35.7 30.6 53.9 103.8 40.6 211.1zm-139-80.8c.4 8.6-12.5 9.2-12.9.6-1.1-22-11.4-32.7-32.6-33.9-8.6-.5-7.8-13.4.7-12.9 27.9 1.5 43.4 17.5 44.8 46.2zm20.3 11.3c1-42.4-25.5-75.6-75.8-79.3-8.5-.6-7.6-13.5.9-12.9 58 4.2 88.9 44.1 87.8 92.5-.1 8.6-13.1 8.2-12.9-.3zm47 13.4c.1 8.6-12.9 8.7-12.9.1-.6-81.5-54.9-125.9-120.8-126.4-8.5-.1-8.5-12.9 0-12.9 73.7.5 133 51.4 133.7 139.2zM374.9 329v.2c-10.8 19-31 40-51.8 33.3l-.2-.3c-21.1-5.9-70.8-31.5-102.2-56.5-16.2-12.8-31-27.9-42.4-42.4-10.3-12.9-20.7-28.2-30.8-46.6-21.3-38.5-26-55.7-26-55.7-6.7-20.8 14.2-41 33.3-51.8h.2c9.2-4.8 18-3.2 23.9 3.9 0 0 12.4 14.8 17.7 22.1 5 6.8 11.7 17.7 15.2 23.8 6.1 10.9 2.3 22-3.7 26.6l-12 9.6c-6.1 4.9-5.3 14-5.3 14s17.8 67.3 84.3 84.3c0 0 9.1.8 14-5.3l9.6-12c4.6-6 15.7-9.8 26.6-3.7 14.7 8.3 33.4 21.2 45.8 32.9 7 5.7 8.6 14.4 3.8 23.6z"], + "vimeo": [448, 512, [], "f40a", "M403.2 32H44.8C20.1 32 0 52.1 0 76.8v358.4C0 459.9 20.1 480 44.8 480h358.4c24.7 0 44.8-20.1 44.8-44.8V76.8c0-24.7-20.1-44.8-44.8-44.8zM377 180.8c-1.4 31.5-23.4 74.7-66 129.4-44 57.2-81.3 85.8-111.7 85.8-18.9 0-34.8-17.4-47.9-52.3-25.5-93.3-36.4-148-57.4-148-2.4 0-10.9 5.1-25.4 15.2l-15.2-19.6c37.3-32.8 72.9-69.2 95.2-71.2 25.2-2.4 40.7 14.8 46.5 51.7 20.7 131.2 29.9 151 67.6 91.6 13.5-21.4 20.8-37.7 21.8-48.9 3.5-33.2-25.9-30.9-45.8-22.4 15.9-52.1 46.3-77.4 91.2-76 33.3.9 49 22.5 47.1 64.7z"], + "vimeo-square": [448, 512, [], "f194", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16.2 149.6c-1.4 31.1-23.2 73.8-65.3 127.9-43.5 56.5-80.3 84.8-110.4 84.8-18.7 0-34.4-17.2-47.3-51.6-25.2-92.3-35.9-146.4-56.7-146.4-2.4 0-10.8 5-25.1 15.1L64 192c36.9-32.4 72.1-68.4 94.1-70.4 24.9-2.4 40.2 14.6 46 51.1 20.5 129.6 29.6 149.2 66.8 90.5 13.4-21.2 20.6-37.2 21.5-48.3 3.4-32.8-25.6-30.6-45.2-22.2 15.7-51.5 45.8-76.5 90.1-75.1 32.9 1 48.4 22.4 46.5 64z"], + "vimeo-v": [448, 512, [], "f27d", "M447.8 153.6c-2 43.6-32.4 103.3-91.4 179.1-60.9 79.2-112.4 118.8-154.6 118.8-26.1 0-48.2-24.1-66.3-72.3C100.3 250 85.3 174.3 56.2 174.3c-3.4 0-15.1 7.1-35.2 21.1L0 168.2c51.6-45.3 100.9-95.7 131.8-98.5 34.9-3.4 56.3 20.5 64.4 71.5 28.7 181.5 41.4 208.9 93.6 126.7 18.7-29.6 28.8-52.1 30.2-67.6 4.8-45.9-35.8-42.8-63.3-31 22-72.1 64.1-107.1 126.2-105.1 45.8 1.2 67.5 31.1 64.9 89.4z"], + "vine": [384, 512, [], "f1ca", "M384 254.7v52.1c-18.4 4.2-36.9 6.1-52.1 6.1-36.9 77.4-103 143.8-125.1 156.2-14 7.9-27.1 8.4-42.7-.8C137 452 34.2 367.7 0 102.7h74.5C93.2 261.8 139 343.4 189.3 404.5c27.9-27.9 54.8-65.1 75.6-106.9-49.8-25.3-80.1-80.9-80.1-145.6 0-65.6 37.7-115.1 102.2-115.1 114.9 0 106.2 127.9 81.6 181.5 0 0-46.4 9.2-63.5-20.5 3.4-11.3 8.2-30.8 8.2-48.5 0-31.3-11.3-46.6-28.4-46.6-18.2 0-30.8 17.1-30.8 50 .1 79.2 59.4 118.7 129.9 101.9z"], + "vk": [576, 512, [], "f189", "M545 117.7c3.7-12.5 0-21.7-17.8-21.7h-58.9c-15 0-21.9 7.9-25.6 16.7 0 0-30 73.1-72.4 120.5-13.7 13.7-20 18.1-27.5 18.1-3.7 0-9.4-4.4-9.4-16.9V117.7c0-15-4.2-21.7-16.6-21.7h-92.6c-9.4 0-15 7-15 13.5 0 14.2 21.2 17.5 23.4 57.5v86.8c0 19-3.4 22.5-10.9 22.5-20 0-68.6-73.4-97.4-157.4-5.8-16.3-11.5-22.9-26.6-22.9H38.8c-16.8 0-20.2 7.9-20.2 16.7 0 15.6 20 93.1 93.1 195.5C160.4 378.1 229 416 291.4 416c37.5 0 42.1-8.4 42.1-22.9 0-66.8-3.4-73.1 15.4-73.1 8.7 0 23.7 4.4 58.7 38.1 40 40 46.6 57.9 69 57.9h58.9c16.8 0 25.3-8.4 20.4-25-11.2-34.9-86.9-106.7-90.3-111.5-8.7-11.2-6.2-16.2 0-26.2.1-.1 72-101.3 79.4-135.6z"], + "vnv": [640, 512, [], "f40b", "M104.9 352c-34.1 0-46.4-30.4-46.4-30.4L2.6 210.1S-7.8 192 13 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.7-74.5c5.6-9.5 8.4-18.1 18.8-18.1h32.8c20.8 0 10.4 18.1 10.4 18.1l-55.8 111.5S174.2 352 140 352h-35.1zm395 0c-34.1 0-46.4-30.4-46.4-30.4l-55.9-111.5S387.2 192 408 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.8-74.5c5.6-9.5 8.4-18.1 18.8-18.1H627c20.8 0 10.4 18.1 10.4 18.1l-55.9 111.5S569.3 352 535.1 352h-35.2zM337.6 192c34.1 0 46.4 30.4 46.4 30.4l55.9 111.5s10.4 18.1-10.4 18.1h-32.8c-10.4 0-13.2-8.7-18.8-18.1l-36.7-74.5s-5.2-13.1-21.1-13.1c-15.9 0-21.1 13.1-21.1 13.1l-36.7 74.5c-5.6 9.4-8.4 18.1-18.8 18.1h-32.9c-20.8 0-10.4-18.1-10.4-18.1l55.9-111.5s12.2-30.4 46.4-30.4h35.1z"], + "vuejs": [448, 512, [], "f41f", "M356.9 64.3H280l-56 88.6-48-88.6H0L224 448 448 64.3h-91.1zm-301.2 32h53.8L224 294.5 338.4 96.3h53.8L224 384.5 55.7 96.3z"], + "weebly": [512, 512, [], "f5cc", "M425.09 65.83c-39.88 0-73.28 25.73-83.66 64.33-18.16-58.06-65.5-64.33-84.95-64.33-19.78 0-66.8 6.28-85.28 64.33-10.38-38.6-43.45-64.33-83.66-64.33C38.59 65.83 0 99.72 0 143.03c0 28.96 4.18 33.27 77.17 233.48 22.37 60.57 67.77 69.35 92.74 69.35 39.23 0 70.04-19.46 85.93-53.98 15.89 34.83 46.69 54.29 85.93 54.29 24.97 0 70.36-9.1 92.74-69.67 76.55-208.65 77.5-205.58 77.5-227.2.63-48.32-36.01-83.47-86.92-83.47zm26.34 114.81l-65.57 176.44c-7.92 21.49-21.22 37.22-46.24 37.22-23.44 0-37.38-12.41-44.03-33.9l-39.28-117.42h-.95L216.08 360.4c-6.96 21.5-20.9 33.6-44.02 33.6-25.02 0-38.33-15.74-46.24-37.22L60.88 181.55c-5.38-14.83-7.92-23.91-7.92-34.5 0-16.34 15.84-29.36 38.33-29.36 18.69 0 31.99 11.8 36.11 29.05l44.03 139.82h.95l44.66-136.79c6.02-19.67 16.47-32.08 38.96-32.08s32.94 12.11 38.96 32.08l44.66 136.79h.95l44.03-139.82c4.12-17.25 17.42-29.05 36.11-29.05 22.17 0 38.33 13.32 38.33 35.71-.32 7.87-4.12 16.04-7.61 27.24z"], + "weibo": [512, 512, [], "f18a", "M407 177.6c7.6-24-13.4-46.8-37.4-41.7-22 4.8-28.8-28.1-7.1-32.8 50.1-10.9 92.3 37.1 76.5 84.8-6.8 21.2-38.8 10.8-32-10.3zM214.8 446.7C108.5 446.7 0 395.3 0 310.4c0-44.3 28-95.4 76.3-143.7C176 67 279.5 65.8 249.9 161c-4 13.1 12.3 5.7 12.3 6 79.5-33.6 140.5-16.8 114 51.4-3.7 9.4 1.1 10.9 8.3 13.1 135.7 42.3 34.8 215.2-169.7 215.2zm143.7-146.3c-5.4-55.7-78.5-94-163.4-85.7-84.8 8.6-148.8 60.3-143.4 116s78.5 94 163.4 85.7c84.8-8.6 148.8-60.3 143.4-116zM347.9 35.1c-25.9 5.6-16.8 43.7 8.3 38.3 72.3-15.2 134.8 52.8 111.7 124-7.4 24.2 29.1 37 37.4 12 31.9-99.8-55.1-195.9-157.4-174.3zm-78.5 311c-17.1 38.8-66.8 60-109.1 46.3-40.8-13.1-58-53.4-40.3-89.7 17.7-35.4 63.1-55.4 103.4-45.1 42 10.8 63.1 50.2 46 88.5zm-86.3-30c-12.9-5.4-30 .3-38 12.9-8.3 12.9-4.3 28 8.6 34 13.1 6 30.8.3 39.1-12.9 8-13.1 3.7-28.3-9.7-34zm32.6-13.4c-5.1-1.7-11.4.6-14.3 5.4-2.9 5.1-1.4 10.6 3.7 12.9 5.1 2 11.7-.3 14.6-5.4 2.8-5.2 1.1-10.9-4-12.9z"], + "weixin": [576, 512, [], "f1d7", "M385.2 167.6c6.4 0 12.6.3 18.8 1.1C387.4 90.3 303.3 32 207.7 32 100.5 32 13 104.8 13 197.4c0 53.4 29.3 97.5 77.9 131.6l-19.3 58.6 68-34.1c24.4 4.8 43.8 9.7 68.2 9.7 6.2 0 12.1-.3 18.3-.8-4-12.9-6.2-26.6-6.2-40.8-.1-84.9 72.9-154 165.3-154zm-104.5-52.9c14.5 0 24.2 9.7 24.2 24.4 0 14.5-9.7 24.2-24.2 24.2-14.8 0-29.3-9.7-29.3-24.2.1-14.7 14.6-24.4 29.3-24.4zm-136.4 48.6c-14.5 0-29.3-9.7-29.3-24.2 0-14.8 14.8-24.4 29.3-24.4 14.8 0 24.4 9.7 24.4 24.4 0 14.6-9.6 24.2-24.4 24.2zM563 319.4c0-77.9-77.9-141.3-165.4-141.3-92.7 0-165.4 63.4-165.4 141.3S305 460.7 397.6 460.7c19.3 0 38.9-5.1 58.6-9.9l53.4 29.3-14.8-48.6C534 402.1 563 363.2 563 319.4zm-219.1-24.5c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.8 0 24.4 9.7 24.4 19.3 0 10-9.7 19.6-24.4 19.6zm107.1 0c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.5 0 24.4 9.7 24.4 19.3.1 10-9.9 19.6-24.4 19.6z"], + "whatsapp": [448, 512, [], "f232", "M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"], + "whatsapp-square": [448, 512, [], "f40c", "M224 122.8c-72.7 0-131.8 59.1-131.9 131.8 0 24.9 7 49.2 20.2 70.1l3.1 5-13.3 48.6 49.9-13.1 4.8 2.9c20.2 12 43.4 18.4 67.1 18.4h.1c72.6 0 133.3-59.1 133.3-131.8 0-35.2-15.2-68.3-40.1-93.2-25-25-58-38.7-93.2-38.7zm77.5 188.4c-3.3 9.3-19.1 17.7-26.7 18.8-12.6 1.9-22.4.9-47.5-9.9-39.7-17.2-65.7-57.2-67.7-59.8-2-2.6-16.2-21.5-16.2-41s10.2-29.1 13.9-33.1c3.6-4 7.9-5 10.6-5 2.6 0 5.3 0 7.6.1 2.4.1 5.7-.9 8.9 6.8 3.3 7.9 11.2 27.4 12.2 29.4s1.7 4.3.3 6.9c-7.6 15.2-15.7 14.6-11.6 21.6 15.3 26.3 30.6 35.4 53.9 47.1 4 2 6.3 1.7 8.6-1 2.3-2.6 9.9-11.6 12.5-15.5 2.6-4 5.3-3.3 8.9-2 3.6 1.3 23.1 10.9 27.1 12.9s6.6 3 7.6 4.6c.9 1.9.9 9.9-2.4 19.1zM400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM223.9 413.2c-26.6 0-52.7-6.7-75.8-19.3L64 416l22.5-82.2c-13.9-24-21.2-51.3-21.2-79.3C65.4 167.1 136.5 96 223.9 96c42.4 0 82.2 16.5 112.2 46.5 29.9 30 47.9 69.8 47.9 112.2 0 87.4-72.7 158.5-160.1 158.5z"], + "whmcs": [448, 512, [], "f40d", "M448 161v-21.3l-28.5-8.8-2.2-10.4 20.1-20.7L427 80.4l-29 7.5-7.2-7.5 7.5-28.2-19.1-11.6-21.3 21-10.7-3.2-7-26.4h-22.6l-6.2 26.4-12.1 3.2-19.7-21-19.4 11 8.1 27.7-8.1 8.4-28.5-7.5-11 19.1 20.7 21-2.9 10.4-28.5 7.8-.3 21.7 28.8 7.5 2.4 12.1-20.1 19.9 10.4 18.5 29.6-7.5 7.2 8.6-8.1 26.9 19.9 11.6 19.4-20.4 11.6 2.9 6.7 28.5 22.6.3 6.7-28.8 11.6-3.5 20.7 21.6 20.4-12.1-8.8-28 7.8-8.1 28.8 8.8 10.3-20.1-20.9-18.8 2.2-12.1 29.1-7zm-119.2 45.2c-31.3 0-56.8-25.4-56.8-56.8s25.4-56.8 56.8-56.8 56.8 25.4 56.8 56.8c0 31.5-25.4 56.8-56.8 56.8zm72.3 16.4l46.9 14.5V277l-55.1 13.4-4.1 22.7 38.9 35.3-19.2 37.9-54-16.7-14.6 15.2 16.7 52.5-38.3 22.7-38.9-40.5-21.7 6.6-12.6 54-42.4-.5-12.6-53.6-21.7-5.6-36.4 38.4-37.4-21.7 15.2-50.5-13.7-16.1-55.5 14.1-19.7-34.8 37.9-37.4-4.8-22.8-54-14.1.5-40.9L54 219.9l5.7-19.7-38.9-39.4L41.5 125l53.6 14.1 15.2-15.7-15.2-52 36.4-20.7 36.8 39.4L191 84l11.6-52H245l11.6 45.9L234 72l-6.3-1.7-3.3 5.7-11 19.1-3.3 5.6 4.6 4.6 17.2 17.4-.3 1-23.8 6.5-6.2 1.7-.1 6.4-.2 12.9C153.8 161.6 118 204 118 254.7c0 58.3 47.3 105.7 105.7 105.7 50.5 0 92.7-35.4 103.2-82.8l13.2.2 6.9.1 1.6-6.7 5.6-24 1.9-.6 17.1 17.8 4.7 4.9 5.8-3.4 20.4-12.1 5.8-3.5-2-6.5-6.8-21.2z"], + "wikipedia-w": [640, 512, [], "f266", "M640 51.2l-.3 12.2c-28.1.8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3.3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4.2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5.3v13.1c-19.4.6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4.3-3.6 0-10.3.3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5.8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1.2.5z"], + "windows": [448, 512, [], "f17a", "M0 93.7l183.6-25.3v177.4H0V93.7zm0 324.6l183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z"], + "wix": [640, 512, [], "f5cf", "M393.38 131.69c0 13.03 2.08 32.69-28.68 43.83-9.52 3.45-15.95 9.66-15.95 9.66 0-31 4.72-42.22 17.4-48.86 9.75-5.11 27.23-4.63 27.23-4.63zm-115.8 35.54l-34.24 132.66-28.48-108.57c-7.69-31.99-20.81-48.53-48.43-48.53-27.37 0-40.66 16.18-48.43 48.53L89.52 299.89 55.28 167.23C49.73 140.51 23.86 128.96 0 131.96l65.57 247.93s21.63 1.56 32.46-3.96c14.22-7.25 20.98-12.84 29.59-46.57 7.67-30.07 29.11-118.41 31.12-124.7 4.76-14.94 11.09-13.81 15.4 0 1.97 6.3 23.45 94.63 31.12 124.7 8.6 33.73 15.37 39.32 29.59 46.57 10.82 5.52 32.46 3.96 32.46 3.96l65.57-247.93c-24.42-3.07-49.82 8.93-55.3 35.27zm115.78 5.21s-4.1 6.34-13.46 11.57c-6.01 3.36-11.78 5.64-17.97 8.61-15.14 7.26-13.18 13.95-13.18 35.2v152.07s16.55 2.09 27.37-3.43c13.93-7.1 17.13-13.95 17.26-44.78V181.41l-.02.01v-8.98zm163.44 84.08L640 132.78s-35.11-5.98-52.5 9.85c-13.3 12.1-24.41 29.55-54.18 72.47-.47.73-6.25 10.54-13.07 0-29.29-42.23-40.8-60.29-54.18-72.47-17.39-15.83-52.5-9.85-52.5-9.85l83.2 123.74-82.97 123.36s36.57 4.62 53.95-11.21c11.49-10.46 17.58-20.37 52.51-70.72 6.81-10.52 12.57-.77 13.07 0 29.4 42.38 39.23 58.06 53.14 70.72 17.39 15.83 53.32 11.21 53.32 11.21L556.8 256.52z"], + "wolf-pack-battalion": [456, 512, [], "f514", "M239.73 471.53l10.56 15.84 5.28-12.32 5.28 7.04V512c21.06-7.92 21.11-66.86 25.51-97.21 4.62-31.89-.88-92.81 81.37-149.11-8.88-23.61-12-49.43-2.64-80.05 27.87 3.34 53.94 10.58 63.34 54.1l-30.35 8.36c11.15 23.04 17.01 46.76 13.2 72.14L384 313.18l-6.16 33.43-18.47-7.04-8.8 33.43-19.35-7.04 26.39 21.11 8.8-28.15 24.63 5.28 7.04-35.63 26.39 14.52c.25-20.02 6.97-58.06-8.8-84.45l26.39 5.28c3.99-22.07-2.38-39.21-7.92-56.74l22.43 9.68c-.44-25.07-29.94-56.79-61.58-58.5-20.22-1.09-56.74-25.17-54.1-51.9 1.96-19.87 17.45-42.62 43.11-49.7-43.99 36.51-9.68 67.3 5.28 73.46 4.4-11.44 17.54-69.08 0-130.2-40.47 22.87-89.73 65.1-93.25 147.79l-58.06 38.71-3.52 93.25 107.33-59.82 7.04 7.04-17.59 3.52-43.99 38.71-15.84-5.28-28.15 49.26-3.52 119.64 21.11 15.84-32.55 15.84-32.55-15.84 21.11-15.84-3.52-119.64-28.15-49.26-15.84 5.28-43.99-38.71-17.59-3.52 7.04-7.04 107.33 59.82-3.52-93.25-58.06-38.71C157.03 65.1 107.77 22.87 67.3 0c-17.54 61.12-4.4 118.76 0 130.2 14.96-6.16 49.26-36.95 5.28-73.46 25.66 7.08 41.15 29.83 43.11 49.7 2.63 26.74-33.88 50.81-54.1 51.9C29.94 160.06.44 191.78 0 216.85l22.43-9.68c-5.54 17.53-11.91 34.67-7.92 56.74l26.39-5.28c-15.76 26.39-9.05 64.43-8.8 84.45l26.39-14.52 7.04 35.63 24.63-5.28 8.8 28.15 26.39-21.11-19.34 7.05-8.8-33.43-18.47 7.04-6.16-33.43-27.27 7.04c-3.82-25.38 2.05-49.1 13.2-72.14l-30.35-8.36c9.4-43.52 35.47-50.77 63.34-54.1 9.36 30.62 6.24 56.45-2.64 80.05 82.25 56.3 76.75 117.23 81.37 149.11 4.4 30.35 4.45 89.29 25.51 97.21v-29.91l5.28-7.04 5.28 12.32 10.56-15.84 11.44 21.11 11.43-21.1zm79.17-95.01l-15.84-10.56c7.47-4.36 13.76-8.42 19.35-12.32-.6 7.26-.27 13.88-3.51 22.88zm28.15-49.26c-.4 10.94-.9 21.66-1.76 31.67-7.85-1.86-15.57-3.8-21.11-7.04 8.24-7.9 15.55-16.27 22.87-24.63zm24.63 5.28c-.02-13.43-2.05-24.21-5.28-33.43-5.38 9.09-11.23 18.18-18.47 27.27l23.75 6.16zm3.52-80.94c19.44 12.81 27.8 33.66 29.91 56.3-12.32-4.53-24.63-9.31-36.95-10.56 5.06-11.99 6.65-28.14 7.04-45.74zm-1.76-45.74c.81 14.3 1.84 28.82 1.76 42.23 19.22-8.11 29.78-9.72 43.99-14.08-10.6-18.95-27.22-25.52-45.75-28.15zM137.68 376.52l15.84-10.56c-7.47-4.36-13.76-8.42-19.35-12.32.6 7.26.27 13.88 3.51 22.88zm-28.15-49.26c.4 10.94.9 21.66 1.76 31.67 7.85-1.86 15.57-3.8 21.11-7.04-8.24-7.9-15.55-16.27-22.87-24.63zm-24.64 5.28c.02-13.43 2.05-24.21 5.28-33.43 5.38 9.09 11.23 18.18 18.47 27.27l-23.75 6.16zm-3.52-80.94c-19.44 12.81-27.8 33.66-29.91 56.3 12.32-4.53 24.63-9.31 36.95-10.56-5.05-11.99-6.65-28.14-7.04-45.74zm1.76-45.74c-.81 14.3-1.84 28.82-1.76 42.23-19.22-8.11-29.78-9.72-43.99-14.08 10.61-18.95 27.22-25.52 45.75-28.15z"], + "wordpress": [512, 512, [], "f19a", "M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z"], + "wordpress-simple": [512, 512, [], "f411", "M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8zM33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256zm223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6zm30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3-80.7-239.6zm81.4 297.2l68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7z"], + "wpbeginner": [512, 512, [], "f297", "M462.799 322.374C519.01 386.682 466.961 480 370.944 480c-39.602 0-78.824-17.687-100.142-50.04-6.887.356-22.702.356-29.59 0C219.848 462.381 180.588 480 141.069 480c-95.49 0-148.348-92.996-91.855-157.626C-29.925 190.523 80.479 32 256.006 32c175.632 0 285.87 158.626 206.793 290.374zm-339.647-82.972h41.529v-58.075h-41.529v58.075zm217.18 86.072v-23.839c-60.506 20.915-132.355 9.198-187.589-33.971l.246 24.897c51.101 46.367 131.746 57.875 187.343 32.913zm-150.753-86.072h166.058v-58.075H189.579v58.075z"], + "wpexplorer": [512, 512, [], "f2de", "M512 256c0 141.2-114.7 256-256 256C114.8 512 0 397.3 0 256S114.7 0 256 0s256 114.7 256 256zm-32 0c0-123.2-100.3-224-224-224C132.5 32 32 132.5 32 256s100.5 224 224 224 224-100.5 224-224zM160.9 124.6l86.9 37.1-37.1 86.9-86.9-37.1 37.1-86.9zm110 169.1l46.6 94h-14.6l-50-100-48.9 100h-14l51.1-106.9-22.3-9.4 6-14 68.6 29.1-6 14.3-16.5-7.1zm-11.8-116.3l68.6 29.4-29.4 68.3L230 246l29.1-68.6zm80.3 42.9l54.6 23.1-23.4 54.3-54.3-23.1 23.1-54.3z"], + "wpforms": [448, 512, [], "f298", "M448 75.2v361.7c0 24.3-19 43.2-43.2 43.2H43.2C19.3 480 0 461.4 0 436.8V75.2C0 51.1 18.8 32 43.2 32h361.7c24 0 43.1 18.8 43.1 43.2zm-37.3 361.6V75.2c0-3-2.6-5.8-5.8-5.8h-9.3L285.3 144 224 94.1 162.8 144 52.5 69.3h-9.3c-3.2 0-5.8 2.8-5.8 5.8v361.7c0 3 2.6 5.8 5.8 5.8h361.7c3.2.1 5.8-2.7 5.8-5.8zM150.2 186v37H76.7v-37h73.5zm0 74.4v37.3H76.7v-37.3h73.5zm11.1-147.3l54-43.7H96.8l64.5 43.7zm210 72.9v37h-196v-37h196zm0 74.4v37.3h-196v-37.3h196zm-84.6-147.3l64.5-43.7H232.8l53.9 43.7zM371.3 335v37.3h-99.4V335h99.4z"], + "xbox": [512, 512, [], "f412", "M369.9 318.2c44.3 54.3 64.7 98.8 54.4 118.7-7.9 15.1-56.7 44.6-92.6 55.9-29.6 9.3-68.4 13.3-100.4 10.2-38.2-3.7-76.9-17.4-110.1-39C93.3 445.8 87 438.3 87 423.4c0-29.9 32.9-82.3 89.2-142.1 32-33.9 76.5-73.7 81.4-72.6 9.4 2.1 84.3 75.1 112.3 109.5zM188.6 143.8c-29.7-26.9-58.1-53.9-86.4-63.4-15.2-5.1-16.3-4.8-28.7 8.1-29.2 30.4-53.5 79.7-60.3 122.4-5.4 34.2-6.1 43.8-4.2 60.5 5.6 50.5 17.3 85.4 40.5 120.9 9.5 14.6 12.1 17.3 9.3 9.9-4.2-11-.3-37.5 9.5-64 14.3-39 53.9-112.9 120.3-194.4zm311.6 63.5C483.3 127.3 432.7 77 425.6 77c-7.3 0-24.2 6.5-36 13.9-23.3 14.5-41 31.4-64.3 52.8C367.7 197 427.5 283.1 448.2 346c6.8 20.7 9.7 41.1 7.4 52.3-1.7 8.5-1.7 8.5 1.4 4.6 6.1-7.7 19.9-31.3 25.4-43.5 7.4-16.2 15-40.2 18.6-58.7 4.3-22.5 3.9-70.8-.8-93.4zM141.3 43C189 40.5 251 77.5 255.6 78.4c.7.1 10.4-4.2 21.6-9.7 63.9-31.1 94-25.8 107.4-25.2-63.9-39.3-152.7-50-233.9-11.7-23.4 11.1-24 11.9-9.4 11.2z"], + "xing": [384, 512, [], "f168", "M162.7 210c-1.8 3.3-25.2 44.4-70.1 123.5-4.9 8.3-10.8 12.5-17.7 12.5H9.8c-7.7 0-12.1-7.5-8.5-14.4l69-121.3c.2 0 .2-.1 0-.3l-43.9-75.6c-4.3-7.8.3-14.1 8.5-14.1H100c7.3 0 13.3 4.1 18 12.2l44.7 77.5zM382.6 46.1l-144 253v.3L330.2 466c3.9 7.1.2 14.1-8.5 14.1h-65.2c-7.6 0-13.6-4-18-12.2l-92.4-168.5c3.3-5.8 51.5-90.8 144.8-255.2 4.6-8.1 10.4-12.2 17.5-12.2h65.7c8 0 12.3 6.7 8.5 14.1z"], + "xing-square": [448, 512, [], "f169", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM140.4 320.2H93.8c-5.5 0-8.7-5.3-6-10.3l49.3-86.7c.1 0 .1-.1 0-.2l-31.4-54c-3-5.6.2-10.1 6-10.1h46.6c5.2 0 9.5 2.9 12.9 8.7l31.9 55.3c-1.3 2.3-18 31.7-50.1 88.2-3.5 6.2-7.7 9.1-12.6 9.1zm219.7-214.1L257.3 286.8v.2l65.5 119c2.8 5.1.1 10.1-6 10.1h-46.6c-5.5 0-9.7-2.9-12.9-8.7l-66-120.3c2.3-4.1 36.8-64.9 103.4-182.3 3.3-5.8 7.4-8.7 12.5-8.7h46.9c5.7-.1 8.8 4.7 6 10z"], + "y-combinator": [448, 512, [], "f23b", "M448 32v448H0V32h448zM236 287.5L313.5 142h-32.7L235 233c-4.7 9.3-9 18.3-12.8 26.8L210 233l-45.2-91h-35l76.7 143.8v94.5H236v-92.8z"], + "yahoo": [448, 512, [], "f19e", "M252 292l4 220c-12.7-2.2-23.5-3.9-32.3-3.9-8.4 0-19.2 1.7-32.3 3.9l4-220C140.4 197.2 85 95.2 21.4 0c11.9 3.1 23 3.9 33.2 3.9 9 0 20.4-.8 34.1-3.9 40.9 72.2 82.1 138.7 135 225.5C261 163.9 314.8 81.4 358.6 0c11.1 2.9 22 3.9 32.9 3.9 11.5 0 23.2-1 35-3.9C392.1 47.9 294.9 216.9 252 292z"], + "yandex": [256, 512, [], "f413", "M153.1 315.8L65.7 512H2l96-209.8c-45.1-22.9-75.2-64.4-75.2-141.1C22.7 53.7 90.8 0 171.7 0H254v512h-55.1V315.8h-45.8zm45.8-269.3h-29.4c-44.4 0-87.4 29.4-87.4 114.6 0 82.3 39.4 108.8 87.4 108.8h29.4V46.5z"], + "yandex-international": [320, 512, [], "f414", "M129.5 512V345.9L18.5 48h55.8l81.8 229.7L250.2 0h51.3L180.8 347.8V512h-51.3z"], + "yelp": [384, 512, [], "f1e9", "M136.9 328c-1 .3-109.2 35.7-115.8 35.7-15.2-.9-18.5-16.2-19.9-31.2-1.5-14.2-1.4-29.8.3-46.8 1.9-18.8 5.5-45.1 24.2-44 4.8 0 67.1 25.9 112.7 44.4 17.1 6.8 18.6 35.8-1.5 41.9zm57.9-113.9c1.8 38.2-25.5 48.5-47.2 14.3L41.3 60.4c-1.5-6.6.3-12.4 5.3-17.4C62.2 26.5 146 3.2 168.1 8.9c7.5 1.9 12.1 6.1 13.8 12.6 1.3 8.3 11.5 167.4 12.9 192.6zm-1.4 164.8c0 4.6.2 116.4-1.7 121.5-2.3 6-7 9.7-14.3 11.2-10.1 1.7-27.1-1.9-51-10.7-22-8.1-56.7-21.5-49.3-42.5 2.8-6.9 51.4-62.8 77.3-93.6 12-15.2 39.8-5.5 39 14.1zm180.2-117.8c-5.6 3.7-110.8 28.2-118.1 30.6l.3-.6c-18.1 4.7-35.4-18.5-23.3-34.6 3.7-3.7 65.9-92.4 72.8-97 5.2-3.6 11.3-3.8 18.3-.6 18.4 8.8 55.1 63.1 57.4 84.6-.1 2.9 1.2 11.7-7.4 17.6zm10.1 130.7c-2.7 20.6-44.5 73.4-63.8 81-6.9 2.6-12.9 2-17.7-2-5-3.5-61.8-97.1-64.9-102.3-10.9-16.2 6.8-39.8 25.6-33.2 0 0 110.5 35.7 114.7 39.4 5.2 4.1 7.2 9.8 6.1 17.1z"], + "yoast": [448, 512, [], "f2b1", "M91.3 76h186l-7 18.9h-179c-39.7 0-71.9 31.6-71.9 70.3v205.4c0 35.4 24.9 70.3 84 70.3V460H91.3C41.2 460 0 419.8 0 370.5V165.2C0 115.9 40.7 76 91.3 76zm229.1-56h66.5C243.1 398.1 241.2 418.9 202.2 459.3c-20.8 21.6-49.3 31.7-78.3 32.7v-51.1c49.2-7.7 64.6-49.9 64.6-75.3 0-20.1.6-12.6-82.1-223.2h61.4L218.2 299 320.4 20zM448 161.5V460H234c6.6-9.6 10.7-16.3 12.1-19.4h182.5V161.5c0-32.5-17.1-51.9-48.2-62.9l6.7-17.6c41.7 13.6 60.9 43.1 60.9 80.5z"], + "youtube": [576, 512, [], "f167", "M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"], + "youtube-square": [448, 512, [], "f431", "M186.8 202.1l95.2 54.1-95.2 54.1V202.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-42 176.3s0-59.6-7.6-88.2c-4.2-15.8-16.5-28.2-32.2-32.4C337.9 128 224 128 224 128s-113.9 0-142.2 7.7c-15.7 4.2-28 16.6-32.2 32.4-7.6 28.5-7.6 88.2-7.6 88.2s0 59.6 7.6 88.2c4.2 15.8 16.5 27.7 32.2 31.9C110.1 384 224 384 224 384s113.9 0 142.2-7.7c15.7-4.2 28-16.1 32.2-31.9 7.6-28.5 7.6-88.1 7.6-88.1z"] +}; + +bunker(function () { + define('fab', icons); +}); + +}()); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/brands.min.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/brands.min.js new file mode 100644 index 0000000000..8f273d7bf3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/brands.min.js @@ -0,0 +1,425 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +!function() { + "use strict"; + var c = {}; + try { + "undefined" != typeof window && (c = window); + } catch (c) {} + var z = (c.navigator || {}).userAgent, l = void 0 === z ? "" : z, h = c, v = (~l.indexOf("MSIE") || l.indexOf("Trident/"), + "___FONT_AWESOME___"), m = function() { + try { + return !1; + } catch (c) { + return !1; + } + }(), M = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ], s = M.concat([ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ]); + [ "xs", "sm", "lg", "fw", "ul", "li", "border", "pull-left", "pull-right", "spin", "pulse", "rotate-90", "rotate-180", "rotate-270", "flip-horizontal", "flip-vertical", "stack", "stack-1x", "stack-2x", "inverse", "layers", "layers-text", "layers-counter" ].concat(M.map(function(c) { + return c + "x"; + })).concat(s.map(function(c) { + return "w-" + c; + })); + var H = h || {}; + H[v] || (H[v] = {}), H[v].styles || (H[v].styles = {}), H[v].hooks || (H[v].hooks = {}), + H[v].shims || (H[v].shims = []); + var f = H[v], V = Object.assign || function(c) { + for (var z = 1; z < arguments.length; z++) { + var l = arguments[z]; + for (var h in l) Object.prototype.hasOwnProperty.call(l, h) && (c[h] = l[h]); + } + return c; + }; + var e = { + "500px": [ 448, 512, [], "f26e", "M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3.3-16 16.5-21.2 23.9l-.5.6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8zm63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2zM393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4zM213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6.2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6z" ], + "accessible-icon": [ 448, 512, [], "f368", "M423.9 255.8L411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7zm-64.9-154c28.1 0 50.9-22.8 50.9-50.9C409.9 22.8 387.1 0 359 0c-28.1 0-50.9 22.8-50.9 50.9 0 28.1 22.8 50.9 50.9 50.9zM179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3z" ], + accusoft: [ 640, 512, [], "f369", "M482.2 372.1C476.5 365.2 250 75 242.3 65.5c-13.7-17.2 0-16.8 19.2-16.9 9.7-.1 106.3-.6 116.5-.6 24.1-.1 28.7.6 38.4 12.8 2.1 2.7 205.1 245.8 207.2 248.3 5.5 6.7 15.2 19.1 7.2 23.4-2.4 1.3-114.6 47.7-117.8 48.9-10.1 4-17.5 6.8-30.8-9.3m114.7-5.6s-115 50.4-117.5 51.6c-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2-2.3-.3-24.6-4.7-38-7.2m-326-181.3s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3v-1l-51.2-65.8" ], + adn: [ 496, 512, [], "f170", "M248 167.5l64.9 98.8H183.1l64.9-98.8zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7h30.2z" ], + adversal: [ 512, 512, [], "f36a", "M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2zM178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4.4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3zm286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7.4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9zm3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6.4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1.2-.1.3-.1.5zm-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2.4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1zm-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8z" ], + affiliatetheme: [ 512, 512, [], "f36b", "M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2 29.1 21.6 11.1 96.6-40.2 167.5zm351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9.1-8.5-.3-16.8-1-25z" ], + algolia: [ 448, 512, [], "f36c", "M229.3 182.6c-49.3 0-89.2 39.9-89.2 89.2 0 49.3 39.9 89.2 89.2 89.2s89.2-39.9 89.2-89.2c0-49.3-40-89.2-89.2-89.2zm62.7 56.6l-58.9 30.6c-1.8.9-3.8-.4-3.8-2.3V201c0-1.5 1.3-2.7 2.7-2.6 26.2 1 48.9 15.7 61.1 37.1.7 1.3.2 3-1.1 3.7zM389.1 32H58.9C26.4 32 0 58.4 0 90.9V421c0 32.6 26.4 59 58.9 59H389c32.6 0 58.9-26.4 58.9-58.9V90.9C448 58.4 421.6 32 389.1 32zm-202.6 84.7c0-10.8 8.7-19.5 19.5-19.5h45.3c10.8 0 19.5 8.7 19.5 19.5v15.4c0 1.8-1.7 3-3.3 2.5-12.3-3.4-25.1-5.1-38.1-5.1-13.5 0-26.7 1.8-39.4 5.5-1.7.5-3.4-.8-3.4-2.5v-15.8zm-84.4 37l9.2-9.2c7.6-7.6 19.9-7.6 27.5 0l7.7 7.7c1.1 1.1 1 3-.3 4-6.2 4.5-12.1 9.4-17.6 14.9-5.4 5.4-10.4 11.3-14.8 17.4-1 1.3-2.9 1.5-4 .3l-7.7-7.7c-7.6-7.5-7.6-19.8 0-27.4zm127.2 244.8c-70 0-126.6-56.7-126.6-126.6s56.7-126.6 126.6-126.6c70 0 126.6 56.6 126.6 126.6 0 69.8-56.7 126.6-126.6 126.6z" ], + amazon: [ 448, 512, [], "f270", "M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z" ], + "amazon-pay": [ 611, 512, [], "f42c", "M0 325.2c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7 40.7 20.4 83.2 35.6 127.4 46.3 20.9 5 41.9 9 63.2 11.8 31.5 4.2 63.2 6 95 5.2 17.4-.4 34.8-1.8 52.1-3.8 56.4-6.7 110.9-20.8 163.3-42.8 2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9-2.8 2.8-6.3 5.1-9.6 7.4-30.7 21.1-64.2 36.4-99.6 47.9-24.6 7.9-49.6 13.8-75.1 17.6-17.6 2.6-35.4 4.4-53.2 4.8-.8 0-1.7.2-2.5.3H294c-.8-.1-1.7-.3-2.5-.3-3.6-.2-7.2-.3-10.7-.4-16.9-.7-33.7-2.6-50.4-5.3-27.4-4.5-54.2-11.4-80.4-20.9-54.1-19.6-102.6-48.6-145.6-87-1.8-1.6-3-3.8-4.4-5.7v-2zM158 65c-1.4.2-2.9.4-4.3.6-14 1.7-26.6 6.9-38 15.1-2.4 1.7-4.6 3.5-7.1 5.4-.2-.5-.4-1-.4-1.4-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6H87.8c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3V215c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zm-47.4 41.9c0-1.5.4-2.4 1.7-3.3 13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9-1.2-.9-1.7-1.7-1.7-3.3.1-14.1 0-28.1 0-42.2 0-14 .1-28 0-42.1zM316.3 65c-1 .1-2 .3-2.9.4-9.8.5-19.4 1.7-28.9 4.1-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9 0 .4-.1.9-.2 1.4-.5-.1-.9 0-1.3-.1-10.5-2.5-21.1-4.3-32-4.9-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4.4-.4.9-.7 1.6-1.1.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0 2.7-.1 4.5-1.9 4.8-4.7.1-.9.1-1.9.1-2.8v-106c0-4.3-.2-8.6-.9-12.9-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1zm35 127.7c0 1.3-.4 2.2-1.5 3-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8-6.3-2.5-10.4-6.9-12.4-13.3s-2-13-.1-19.4c2.5-8.3 8.4-13 16.4-15.6 8.1-2.6 16.5-3 24.8-2.2 8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3-.1 4.7-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3-6.8-2.3-13.9-3.3-21-3.9-13.1-1.1-26.2-.5-39.2 1.9-14.3 2.7-27.9 7.3-40 15.6-1.4 1-2.8 2.1-3.7 3.5-.7 1.1-.9 2.8-.5 4 .4 1.5 2.1 1.9 3.6 1.8.7 0 1.5 0 2.2-.1 7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9 4.8.3 9.7 1.4 14.4 2.7 5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1-.4 1-.8 2-1 3-.5 2.9 1.2 4.8 4.1 4.1 1.7-.4 3.6-1.3 4.8-2.5 4.4-4.3 8.9-8.6 12.7-13.4 12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9v-17.3zM479.1 198.9c-12.9-35.7-25.8-71.5-38.7-107.2-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5.5 2.1 1.1 4.1 1.9 6.1 19.6 48.5 39.3 97.1 59.1 145.5 1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3-5.1 1.4-10.2 1.6-15.4 1.1-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8-.1 3.3-.1 6.6 0 9.9.1 5.5 2 8 7.4 8.9 5.6 1 11.3 1.9 16.9 2 17.1.4 30.7-6.5 39.5-21.4 3.5-5.9 6.7-12.1 9.2-18.4 23.7-59.8 47.1-119.7 70.6-179.6.7-1.8 1.3-3.6 1.6-5.5.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0-3.7 0-6.3 1.6-7.7 5.2-.5 1.4-1.1 2.7-1.6 4.1-11.6 33.3-23.2 66.6-34.8 100-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z" ], + amilia: [ 448, 512, [], "f36d", "M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm-87.9 327.7c0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5V380c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7" ], + android: [ 448, 512, [], "f17b", "M89.6 204.5v115.8c0 15.4-12.1 27.7-27.5 27.7-15.3 0-30.1-12.4-30.1-27.7V204.5c0-15.1 14.8-27.5 30.1-27.5 15.1 0 27.5 12.4 27.5 27.5zm10.8 157c0 16.4 13.2 29.6 29.6 29.6h19.9l.3 61.1c0 36.9 55.2 36.6 55.2 0v-61.1h37.2v61.1c0 36.7 55.5 36.8 55.5 0v-61.1h20.2c16.2 0 29.4-13.2 29.4-29.6V182.1H100.4v179.4zm248-189.1H99.3c0-42.8 25.6-80 63.6-99.4l-19.1-35.3c-2.8-4.9 4.3-8 6.7-3.8l19.4 35.6c34.9-15.5 75-14.7 108.3 0L297.5 34c2.5-4.3 9.5-1.1 6.7 3.8L285.1 73c37.7 19.4 63.3 56.6 63.3 99.4zm-170.7-55.5c0-5.7-4.6-10.5-10.5-10.5-5.7 0-10.2 4.8-10.2 10.5s4.6 10.5 10.2 10.5c5.9 0 10.5-4.8 10.5-10.5zm113.4 0c0-5.7-4.6-10.5-10.2-10.5-5.9 0-10.5 4.8-10.5 10.5s4.6 10.5 10.5 10.5c5.6 0 10.2-4.8 10.2-10.5zm94.8 60.1c-15.1 0-27.5 12.1-27.5 27.5v115.8c0 15.4 12.4 27.7 27.5 27.7 15.4 0 30.1-12.4 30.1-27.7V204.5c0-15.4-14.8-27.5-30.1-27.5z" ], + angellist: [ 448, 512, [], "f209", "M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7zM311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6 33.1-93.7zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8zM140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7.1-7.7 12.7-21.1 20.4-21.1zm184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3.3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7.1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7zm-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1z" ], + angrycreative: [ 640, 512, [], "f36e", "M640 238.2l-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4 93.1-6.2zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9-12.8 120zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3-126.2 7.7zm-44.3-70.2l-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7 2.7-29.8zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1zm21.1 70.8l5.8-60c-5 13.5-14.7 21.1-27.9 26.6l22.1 33.4zm135.4-45l-7.9-37.8-15.8 39.3 23.7-1.5zm-170.1-74.6l-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8.3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2-56.8 3.7zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1.6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2l-2.9 28.8zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3zm-201.3 8.2l23.8-1.6-8.3-37.6-15.5 39.2z" ], + angular: [ 415, 512, [], "f420", "M169.7 268.1h76.2l-38.1-91.6-38.1 91.6zM207.8 32L0 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7L207.8 32zM338 373.8h-48.6l-26.2-65.4H152.6l-26.2 65.4H77.7L207.8 81.5 338 373.8z" ], + "app-store": [ 512, 512, [], "f36f", "M255.9 120.9l9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5 9.8 5.6 13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4 0-11.3 9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5l8.9 15.7zm-78.7 218l-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5-9.8-5.6-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6zm168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4 0 11.3-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216z" ], + "app-store-ios": [ 448, 512, [], "f370", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7c16.1-4.9 29.3-1.1 39.6 11.4L127 384.5zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40zm98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20z" ], + apper: [ 640, 512, [], "f371", "M42.1 239.1c22.2 0 29 2.8 33.5 14.6h.8v-22.9c0-11.3-4.8-15.4-17.9-15.4-11.3 0-14.4 2.5-15.1 12.8H4.8c.3-13.9 1.5-19.1 5.8-24.4C17.9 195 29.5 192 56.7 192c33 0 47.1 5 53.9 18.9 2 4.3 4 15.6 4 23.7v76.3H76.3l1.3-19.1h-1c-5.3 15.6-13.6 20.4-35.5 20.4-30.3 0-41.1-10.1-41.1-37.3 0-25.2 12.3-35.8 42.1-35.8zm17.1 48.1c13.1 0 16.9-3 16.9-13.4 0-9.1-4.3-11.6-19.6-11.6-13.1 0-17.9 3-17.9 12.1-.1 10.4 3.7 12.9 20.6 12.9zm77.8-94.9h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.2 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3H137v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm57.9-60.7h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.3 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3h-39.5v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm53.8-3.8c0-25.4 3.3-37.8 12.3-45.8 8.8-8.1 22.2-11.3 45.1-11.3 42.8 0 55.7 12.8 55.7 55.7v11.1h-75.3c-.3 2-.3 4-.3 4.8 0 16.9 4.5 21.9 20.1 21.9 13.9 0 17.9-3 17.9-13.9h37.5v2.3c0 9.8-2.5 18.9-6.8 24.7-7.3 9.8-19.6 13.6-44.3 13.6-27.5 0-41.6-3.3-50.6-12.3-8.5-8.5-11.3-21.3-11.3-50.8zm76.4-11.6c-.3-1.8-.3-3.3-.3-3.8 0-12.3-3.3-14.6-19.6-14.6-14.4 0-17.1 3-18.1 15.1l-.3 3.3h38.3zm55.6-45.3h38.3l-1.8 19.9h.7c6.8-14.9 14.4-20.2 29.7-20.2 10.8 0 19.1 3.3 23.4 9.3 5.3 7.3 6.8 14.4 6.8 34 0 1.5 0 5 .2 9.3h-35c.3-1.8.3-3.3.3-4 0-15.4-2-19.4-10.3-19.4-6.3 0-10.8 3.3-13.1 9.3-1 3-1 4.3-1 12.3v68h-38.3V192.3z" ], + apple: [ 376, 512, [], "f179", "M314.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C59.3 141.2 0 184.8 0 273.5c0 26.2 4.8 53.3 14.4 81.2 12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z" ], + "apple-pay": [ 640, 512, [], "f415", "M116.9 158.5c-7.5 8.9-19.5 15.9-31.5 14.9-1.5-12 4.4-24.8 11.3-32.6 7.5-9.1 20.6-15.6 31.3-16.1 1.2 12.4-3.7 24.7-11.1 33.8m10.9 17.2c-17.4-1-32.3 9.9-40.5 9.9-8.4 0-21-9.4-34.8-9.1-17.9.3-34.5 10.4-43.6 26.5-18.8 32.3-4.9 80 13.3 106.3 8.9 13 19.5 27.3 33.5 26.8 13.3-.5 18.5-8.6 34.5-8.6 16.1 0 20.8 8.6 34.8 8.4 14.5-.3 23.6-13 32.5-26 10.1-14.8 14.3-29.1 14.5-29.9-.3-.3-28-10.9-28.3-42.9-.3-26.8 21.9-39.5 22.9-40.3-12.5-18.6-32-20.6-38.8-21.1m100.4-36.2v194.9h30.3v-66.6h41.9c38.3 0 65.1-26.3 65.1-64.3s-26.4-64-64.1-64h-73.2zm30.3 25.5h34.9c26.3 0 41.3 14 41.3 38.6s-15 38.8-41.4 38.8h-34.8V165zm162.2 170.9c19 0 36.6-9.6 44.6-24.9h.6v23.4h28v-97c0-28.1-22.5-46.3-57.1-46.3-32.1 0-55.9 18.4-56.8 43.6h27.3c2.3-12 13.4-19.9 28.6-19.9 18.5 0 28.9 8.6 28.9 24.5v10.8l-37.8 2.3c-35.1 2.1-54.1 16.5-54.1 41.5.1 25.2 19.7 42 47.8 42zm8.2-23.1c-16.1 0-26.4-7.8-26.4-19.6 0-12.3 9.9-19.4 28.8-20.5l33.6-2.1v11c0 18.2-15.5 31.2-36 31.2zm102.5 74.6c29.5 0 43.4-11.3 55.5-45.4L640 193h-30.8l-35.6 115.1h-.6L537.4 193h-31.6L557 334.9l-2.8 8.6c-4.6 14.6-12.1 20.3-25.5 20.3-2.4 0-7-.3-8.9-.5v23.4c1.8.4 9.3.7 11.6.7z" ], + asymmetrik: [ 576, 512, [], "f372", "M517.5 309.2c38.8-40 58.1-80 58.5-116.1.8-65.5-59.4-118.2-169.4-135C277.9 38.4 118.1 73.6 0 140.5 52 114 110.6 92.3 170.7 82.3c74.5-20.5 153-25.4 221.3-14.8C544.5 91.3 588.8 195 490.8 299.2c-10.2 10.8-22 21.1-35 30.6L304.9 103.4 114.7 388.9c-65.6-29.4-76.5-90.2-19.1-151.2 20.8-22.2 48.3-41.9 79.5-58.1 20-12.2 39.7-22.6 62-30.7-65.1 20.3-122.7 52.9-161.6 92.9-27.7 28.6-41.4 57.1-41.7 82.9-.5 35.1 23.4 65.1 68.4 83l-34.5 51.7h101.6l22-34.4c22.2 1 45.3 0 68.6-2.7l-22.8 37.1h135.5L340 406.3c18.6-5.3 36.9-11.5 54.5-18.7l45.9 71.8H542L468.6 349c18.5-12.1 35-25.5 48.9-39.8zm-187.6 80.5l-25-40.6-32.7 53.3c-23.4 3.5-46.7 5.1-69.2 4.4l101.9-159.3 78.7 123c-17.2 7.4-35.3 13.9-53.7 19.2z" ], + audible: [ 640, 512, [], "f373", "M640 199.9v54l-320 200L0 254v-54l320 200 320-200.1zm-194.5 72l47.1-29.4c-37.2-55.8-100.7-92.6-172.7-92.6-72 0-135.5 36.7-172.6 92.4h.3c2.5-2.3 5.1-4.5 7.7-6.7 89.7-74.4 219.4-58.1 290.2 36.3zm-220.1 18.8c16.9-11.9 36.5-18.7 57.4-18.7 34.4 0 65.2 18.4 86.4 47.6l45.4-28.4c-20.9-29.9-55.6-49.5-94.8-49.5-38.9 0-73.4 19.4-94.4 49zM103.6 161.1c131.8-104.3 318.2-76.4 417.5 62.1l.7 1 48.8-30.4C517.1 112.1 424.8 58.1 319.9 58.1c-103.5 0-196.6 53.5-250.5 135.6 9.9-10.5 22.7-23.5 34.2-32.6zm467 32.7z" ], + autoprefixer: [ 640, 512, [], "f41c", "M318.4 16l-161 480h77.5l25.4-81.4h119.5L405 496h77.5L318.4 16zm-40.3 341.9l41.2-130.4h1.5l40.9 130.4h-83.6zM640 405l-10-31.4L462.1 358l19.4 56.5L640 405zm-462.1-47L10 373.7 0 405l158.5 9.4 19.4-56.4z" ], + avianex: [ 512, 512, [], "f374", "M453.1 32h-312c-38.9 0-76.2 31.2-83.3 69.7L1.2 410.3C-5.9 448.8 19.9 480 58.9 480h312c38.9 0 76.2-31.2 83.3-69.7l56.7-308.5c7-38.6-18.8-69.8-57.8-69.8zm-58.2 347.3l-32 13.5-115.4-110c-14.7 10-29.2 19.5-41.7 27.1l22.1 64.2-17.9 12.7-40.6-61-52.4-48.1 15.7-15.4 58 31.1c9.3-10.5 20.8-22.6 32.8-34.9L203 228.9l-68.8-99.8 18.8-28.9 8.9-4.8L265 207.8l4.9 4.5c19.4-18.8 33.8-32.4 33.8-32.4 7.7-6.5 21.5-2.9 30.7 7.9 9 10.5 10.6 24.7 2.7 31.3-1.8 1.3-15.5 11.4-35.3 25.6l4.5 7.3 94.9 119.4-6.3 7.9z" ], + aviato: [ 640, 512, [], "f421", "M107.2 283.5l-19-41.8H36.1l-19 41.8H0l62.2-131.4 62.2 131.4h-17.2zm-45-98.1l-19.6 42.5h39.2l-19.6-42.5zm112.7 102.4l-62.2-131.4h17.1l45.1 96 45.1-96h17l-62.1 131.4zm80.6-4.3V156.4H271v127.1h-15.5zm209.1-115.6v115.6h-17.3V167.9h-41.2v-11.5h99.6v11.5h-41.1zM640 218.8c0 9.2-1.7 17.8-5.1 25.8-3.4 8-8.2 15.1-14.2 21.1-6 6-13.1 10.8-21.1 14.2-8 3.4-16.6 5.1-25.8 5.1s-17.8-1.7-25.8-5.1c-8-3.4-15.1-8.2-21.1-14.2-6-6-10.8-13-14.2-21.1-3.4-8-5.1-16.6-5.1-25.8s1.7-17.8 5.1-25.8c3.4-8 8.2-15.1 14.2-21.1 6-6 13-8.4 21.1-11.9 8-3.4 16.6-5.1 25.8-5.1s17.8 1.7 25.8 5.1c8 3.4 15.1 5.8 21.1 11.9 6 6 10.7 13.1 14.2 21.1 3.4 8 5.1 16.6 5.1 25.8zm-15.5 0c0-7.3-1.3-14-3.9-20.3-2.6-6.3-6.2-11.7-10.8-16.3-4.6-4.6-10-8.2-16.2-10.9-6.2-2.7-12.8-4-19.8-4s-13.6 1.3-19.8 4c-6.2 2.7-11.6 6.3-16.2 10.9-4.6 4.6-8.2 10-10.8 16.3-2.6 6.3-3.9 13.1-3.9 20.3 0 7.3 1.3 14 3.9 20.3 2.6 6.3 6.2 11.7 10.8 16.3 4.6 4.6 10 8.2 16.2 10.9 6.2 2.7 12.8 4 19.8 4s13.6-1.3 19.8-4c6.2-2.7 11.6-6.3 16.2-10.9 4.6-4.6 8.2-10 10.8-16.3 2.6-6.3 3.9-13.1 3.9-20.3zm-94.8 96.7v-6.3l88.9-10-242.9 13.4c.6-2.2 1.1-4.6 1.4-7.2.3-2 .5-4.2.6-6.5l64.8-8.1-64.9 1.9c0-.4-.1-.7-.1-1.1-2.8-17.2-25.5-23.7-25.5-23.7l-1.1-26.3h23.8l19 41.8h17.1L348.6 152l-62.2 131.4h17.1l19-41.8h23.6L345 268s-22.7 6.5-25.5 23.7c-.1.3-.1.7-.1 1.1l-64.9-1.9 64.8 8.1c.1 2.3.3 4.4.6 6.5.3 2.6.8 5 1.4 7.2L78.4 299.2l88.9 10v6.3c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4 0-6.2-4.6-11.3-10.5-12.2v-5.8l80.3 9v5.4c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-4.9l28.4 3.2v23.7h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9V323l38.3 4.3c8.1 11.4 19 13.6 19 13.6l-.1 6.7-5.1.2-.1 12.1h4.1l.1-5h5.2l.1 5h4.1l-.1-12.1-5.1-.2-.1-6.7s10.9-2.1 19-13.6l38.3-4.3v23.2h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9v-23.7l28.4-3.2v4.9c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-5.4l80.3-9v5.8c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4-.2-6.3-4.7-11.4-10.7-12.3zm-200.8-87.6l19.6-42.5 19.6 42.5h-17.9l-1.7-40.3-1.7 40.3h-17.9z" ], + aws: [ 640, 512, [], "f375", "M180.41 203.01c-.72 22.65 10.6 32.68 10.88 39.05a8.164 8.164 0 0 1-4.1 6.27l-12.8 8.96a10.66 10.66 0 0 1-5.63 1.92c-.43-.02-8.19 1.83-20.48-25.61a78.608 78.608 0 0 1-62.61 29.45c-16.28.89-60.4-9.24-58.13-56.21-1.59-38.28 34.06-62.06 70.93-60.05 7.1.02 21.6.37 46.99 6.27v-15.62c2.69-26.46-14.7-46.99-44.81-43.91-2.4.01-19.4-.5-45.84 10.11-7.36 3.38-8.3 2.82-10.75 2.82-7.41 0-4.36-21.48-2.94-24.2 5.21-6.4 35.86-18.35 65.94-18.18a76.857 76.857 0 0 1 55.69 17.28 70.285 70.285 0 0 1 17.67 52.36l-.01 69.29zM93.99 235.4c32.43-.47 46.16-19.97 49.29-30.47 2.46-10.05 2.05-16.41 2.05-27.4-9.67-2.32-23.59-4.85-39.56-4.87-15.15-1.14-42.82 5.63-41.74 32.26-1.24 16.79 11.12 31.4 29.96 30.48zm170.92 23.05c-7.86.72-11.52-4.86-12.68-10.37l-49.8-164.65c-.97-2.78-1.61-5.65-1.92-8.58a4.61 4.61 0 0 1 3.86-5.25c.24-.04-2.13 0 22.25 0 8.78-.88 11.64 6.03 12.55 10.37l35.72 140.83 33.16-140.83c.53-3.22 2.94-11.07 12.8-10.24h17.16c2.17-.18 11.11-.5 12.68 10.37l33.42 142.63L420.98 80.1c.48-2.18 2.72-11.37 12.68-10.37h19.72c.85-.13 6.15-.81 5.25 8.58-.43 1.85 3.41-10.66-52.75 169.9-1.15 5.51-4.82 11.09-12.68 10.37h-18.69c-10.94 1.15-12.51-9.66-12.68-10.75L328.67 110.7l-32.78 136.99c-.16 1.09-1.73 11.9-12.68 10.75h-18.3zm273.48 5.63c-5.88.01-33.92-.3-57.36-12.29a12.802 12.802 0 0 1-7.81-11.91v-10.75c0-8.45 6.2-6.9 8.83-5.89 10.04 4.06 16.48 7.14 28.81 9.6 36.65 7.53 52.77-2.3 56.72-4.48 13.15-7.81 14.19-25.68 5.25-34.95-10.48-8.79-15.48-9.12-53.13-21-4.64-1.29-43.7-13.61-43.79-52.36-.61-28.24 25.05-56.18 69.52-55.95 12.67-.01 46.43 4.13 55.57 15.62 1.35 2.09 2.02 4.55 1.92 7.04v10.11c0 4.44-1.62 6.66-4.87 6.66-7.71-.86-21.39-11.17-49.16-10.75-6.89-.36-39.89.91-38.41 24.97-.43 18.96 26.61 26.07 29.7 26.89 36.46 10.97 48.65 12.79 63.12 29.58 17.14 22.25 7.9 48.3 4.35 55.44-19.08 37.49-68.42 34.44-69.26 34.42zm40.2 104.86c-70.03 51.72-171.69 79.25-258.49 79.25A469.127 469.127 0 0 1 2.83 327.46c-6.53-5.89-.77-13.96 7.17-9.47a637.37 637.37 0 0 0 316.88 84.12 630.22 630.22 0 0 0 241.59-49.55c11.78-5 21.77 7.8 10.12 16.38zm29.19-33.29c-8.96-11.52-59.28-5.38-81.81-2.69-6.79.77-7.94-5.12-1.79-9.47 40.07-28.17 105.88-20.1 113.44-10.63 7.55 9.47-2.05 75.41-39.56 106.91-5.76 4.87-11.27 2.3-8.71-4.1 8.44-21.25 27.39-68.49 18.43-80.02z" ], + bandcamp: [ 496, 512, [], "f2d5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm48.2 326.1h-181L199.9 178h181l-84.7 156.1z" ], + behance: [ 576, 512, [], "f1b4", "M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z" ], + "behance-square": [ 448, 512, [], "f1b5", "M186.5 293c0 19.3-14 25.4-31.2 25.4h-45.1v-52.9h46c18.6.1 30.3 7.8 30.3 27.5zm-7.7-82.3c0-17.7-13.7-21.9-28.9-21.9h-39.6v44.8H153c15.1 0 25.8-6.6 25.8-22.9zm132.3 23.2c-18.3 0-30.5 11.4-31.7 29.7h62.2c-1.7-18.5-11.3-29.7-30.5-29.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM271.7 185h77.8v-18.9h-77.8V185zm-43 110.3c0-24.1-11.4-44.9-35-51.6 17.2-8.2 26.2-17.7 26.2-37 0-38.2-28.5-47.5-61.4-47.5H68v192h93.1c34.9-.2 67.6-16.9 67.6-55.9zM380 280.5c0-41.1-24.1-75.4-67.6-75.4-42.4 0-71.1 31.8-71.1 73.6 0 43.3 27.3 73 71.1 73 33.2 0 54.7-14.9 65.1-46.8h-33.7c-3.7 11.9-18.6 18.1-30.2 18.1-22.4 0-34.1-13.1-34.1-35.3h100.2c.1-2.3.3-4.8.3-7.2z" ], + bimobject: [ 448, 512, [], "f378", "M416 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm-64 257.4c0 49.4-11.4 82.6-103.8 82.6h-16.9c-44.1 0-62.4-14.9-70.4-38.8h-.9V368H96V136h64v74.7h1.1c4.6-30.5 39.7-38.8 69.7-38.8h17.3c92.4 0 103.8 33.1 103.8 82.5v35zm-64-28.9v22.9c0 21.7-3.4 33.8-38.4 33.8h-45.3c-28.9 0-44.1-6.5-44.1-35.7v-19c0-29.3 15.2-35.7 44.1-35.7h45.3c35-.2 38.4 12 38.4 33.7z" ], + bitbucket: [ 512, 512, [], "f171", "M23.1 32C14.2 31.9 7 38.9 6.9 47.8c0 .9.1 1.8.2 2.8L74.9 462c1.7 10.4 10.7 18 21.2 18.1h325.1c7.9.1 14.7-5.6 16-13.4l67.8-416c1.4-8.7-4.5-16.9-13.2-18.3-.9-.1-1.8-.2-2.8-.2L23.1 32zm285.3 297.3H204.6l-28.1-146.8h157l-25.1 146.8z" ], + bitcoin: [ 512, 512, [], "f379", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z" ], + bity: [ 496, 512, [], "f37a", "M78.4 67.2C173.8-22 324.5-24 421.5 71c14.3 14.1-6.4 37.1-22.4 21.5-84.8-82.4-215.8-80.3-298.9-3.2-16.3 15.1-36.5-8.3-21.8-22.1zm98.9 418.6c19.3 5.7 29.3-23.6 7.9-30C73 421.9 9.4 306.1 37.7 194.8c5-19.6-24.9-28.1-30.2-7.1-32.1 127.4 41.1 259.8 169.8 298.1zm148.1-2c121.9-40.2 192.9-166.9 164.4-291-4.5-19.7-34.9-13.8-30 7.9 24.2 107.7-37.1 217.9-143.2 253.4-21.2 7-10.4 36 8.8 29.7zm-62.9-79l.2-71.8c0-8.2-6.6-14.8-14.8-14.8-8.2 0-14.8 6.7-14.8 14.8l-.2 71.8c0 8.2 6.6 14.8 14.8 14.8s14.8-6.6 14.8-14.8zm71-269c2.1 90.9 4.7 131.9-85.5 132.5-92.5-.7-86.9-44.3-85.5-132.5 0-21.8-32.5-19.6-32.5 0v71.6c0 69.3 60.7 90.9 118 90.1 57.3.8 118-20.8 118-90.1v-71.6c0-19.6-32.5-21.8-32.5 0z" ], + "black-tie": [ 448, 512, [], "f27e", "M0 32v448h448V32H0zm316.5 325.2L224 445.9l-92.5-88.7 64.5-184-64.5-86.6h184.9L252 173.2l64.5 184z" ], + blackberry: [ 512, 512, [], "f37b", "M166 116.9c0 23.4-16.4 49.1-72.5 49.1H23.4l21-88.8h67.8c42.1 0 53.8 23.3 53.8 39.7zm126.2-39.7h-67.8L205.7 166h70.1c53.8 0 70.1-25.7 70.1-49.1.1-16.4-11.6-39.7-53.7-39.7zM88.8 208.1H21L0 296.9h70.1c56.1 0 72.5-23.4 72.5-49.1 0-16.3-11.7-39.7-53.8-39.7zm180.1 0h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 0-16.3-11.7-39.7-53.7-39.7zm189.3-53.8h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7zm-28 137.9h-67.8L343.7 381h70.1c56.1 0 70.1-23.4 70.1-49.1 0-16.3-11.6-39.7-53.7-39.7zM240.8 346H173l-18.7 88.8h70.1c56.1 0 70.1-25.7 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7z" ], + blogger: [ 448, 512, [], "f37c", "M162.4 196c4.8-4.9 6.2-5.1 36.4-5.1 27.2 0 28.1.1 32.1 2.1 5.8 2.9 8.3 7 8.3 13.6 0 5.9-2.4 10-7.6 13.4-2.8 1.8-4.5 1.9-31.1 2.1-16.4.1-29.5-.2-31.5-.8-10.3-2.9-14.1-17.7-6.6-25.3zm61.4 94.5c-53.9 0-55.8.2-60.2 4.1-3.5 3.1-5.7 9.4-5.1 13.9.7 4.7 4.8 10.1 9.2 12 2.2 1 14.1 1.7 56.3 1.2l47.9-.6 9.2-1.5c9-5.1 10.5-17.4 3.1-24.4-5.3-4.7-5-4.7-60.4-4.7zm223.4 130.1c-3.5 28.4-23 50.4-51.1 57.5-7.2 1.8-9.7 1.9-172.9 1.8-157.8 0-165.9-.1-172-1.8-8.4-2.2-15.6-5.5-22.3-10-5.6-3.8-13.9-11.8-17-16.4-3.8-5.6-8.2-15.3-10-22C.1 423 0 420.3 0 256.3 0 93.2 0 89.7 1.8 82.6 8.1 57.9 27.7 39 53 33.4c7.3-1.6 332.1-1.9 340-.3 21.2 4.3 37.9 17.1 47.6 36.4 7.7 15.3 7-1.5 7.3 180.6.2 115.8 0 164.5-.7 170.5zm-85.4-185.2c-1.1-5-4.2-9.6-7.7-11.5-1.1-.6-8-1.3-15.5-1.7-12.4-.6-13.8-.8-17.8-3.1-6.2-3.6-7.9-7.6-8-18.3 0-20.4-8.5-39.4-25.3-56.5-12-12.2-25.3-20.5-40.6-25.1-3.6-1.1-11.8-1.5-39.2-1.8-42.9-.5-52.5.4-67.1 6.2-27 10.7-46.3 33.4-53.4 62.4-1.3 5.4-1.6 14.2-1.9 64.3-.4 62.8 0 72.1 4 84.5 9.7 30.7 37.1 53.4 64.6 58.4 9.2 1.7 122.2 2.1 133.7.5 20.1-2.7 35.9-10.8 50.7-25.9 10.7-10.9 17.4-22.8 21.8-38.5 3.2-10.9 2.9-88.4 1.7-93.9z" ], + "blogger-b": [ 448, 512, [], "f37d", "M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z" ], + bluetooth: [ 448, 512, [], "f293", "M292.6 171.1L249.7 214l-.3-86 43.2 43.1m-43.2 219.8l43.1-43.1-42.9-42.9-.2 86zM416 259.4C416 465 344.1 512 230.9 512S32 465 32 259.4 115.4 0 228.6 0 416 53.9 416 259.4zm-158.5 0l79.4-88.6L211.8 36.5v176.9L138 139.6l-27 26.9 92.7 93-92.7 93 26.9 26.9 73.8-73.8 2.3 170 127.4-127.5-83.9-88.7z" ], + "bluetooth-b": [ 320, 512, [], "f294", "M196.48 260.023l92.626-103.333L143.125 0v206.33l-86.111-86.111-31.406 31.405 108.061 108.399L25.608 368.422l31.406 31.405 86.111-86.111L145.84 512l148.552-148.644-97.912-103.333zm40.86-102.996l-49.977 49.978-.338-100.295 50.315 50.317zM187.363 313.04l49.977 49.978-50.315 50.316.338-100.294z" ], + btc: [ 384, 512, [], "f15a", "M310.204 242.638c27.73-14.18 45.377-39.39 41.28-81.3-5.358-57.351-52.458-76.573-114.85-81.929V0h-48.528v77.203c-12.605 0-25.525.315-38.444.63V0h-48.528v79.409c-17.842.539-38.622.276-97.37 0v51.678c38.314-.678 58.417-3.14 63.023 21.427v217.429c-2.925 19.492-18.524 16.685-53.255 16.071L3.765 443.68c88.481 0 97.37.315 97.37.315V512h48.528v-67.06c13.234.315 26.154.315 38.444.315V512h48.528v-68.005c81.299-4.412 135.647-24.894 142.895-101.467 5.671-61.446-23.32-88.862-69.326-99.89zM150.608 134.553c27.415 0 113.126-8.507 113.126 48.528 0 54.515-85.71 48.212-113.126 48.212v-96.74zm0 251.776V279.821c32.772 0 133.127-9.138 133.127 53.255-.001 60.186-100.355 53.253-133.127 53.253z" ], + buromobelexperte: [ 448, 512, [], "f37f", "M0 32v128h128V32H0zm120 120H8V40h112v112zm40-120v128h128V32H160zm120 120H168V40h112v112zm40-120v128h128V32H320zm120 120H328V40h112v112zM0 192v128h128V192H0zm120 120H8V200h112v112zm40-120v128h128V192H160zm120 120H168V200h112v112zm40-120v128h128V192H320zm120 120H328V200h112v112zM0 352v128h128V352H0zm120 120H8V360h112v112zm40-120v128h128V352H160zm120 120H168V360h112v112zm40-120v128h128V352H320z" ], + buysellads: [ 448, 512, [], "f20d", "M224 150.7l42.9 160.7h-85.8L224 150.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-65.3 325.3l-94.5-298.7H159.8L65.3 405.3H156l111.7-91.6 24.2 91.6h90.8z" ], + "cc-amazon-pay": [ 576, 512, [], "f42d", "M124.7 201.8c.1-11.8 0-23.5 0-35.3v-35.3c0-1.3.4-2 1.4-2.7 11.5-8 24.1-12.1 38.2-11.1 12.5.9 22.7 7 28.1 21.7 3.3 8.9 4.1 18.2 4.1 27.7 0 8.7-.7 17.3-3.4 25.6-5.7 17.8-18.7 24.7-35.7 23.9-11.7-.5-21.9-5-31.4-11.7-.9-.8-1.4-1.6-1.3-2.8zm154.9 14.6c4.6 1.8 9.3 2 14.1 1.5 11.6-1.2 21.9-5.7 31.3-12.5.9-.6 1.3-1.3 1.3-2.5-.1-3.9 0-7.9 0-11.8 0-4-.1-8 0-12 0-1.4-.4-2-1.8-2.2-7-.9-13.9-2.2-20.9-2.9-7-.6-14-.3-20.8 1.9-6.7 2.2-11.7 6.2-13.7 13.1-1.6 5.4-1.6 10.8.1 16.2 1.6 5.5 5.2 9.2 10.4 11.2zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zm-207.5 23.9c.4 1.7.9 3.4 1.6 5.1 16.5 40.6 32.9 81.3 49.5 121.9 1.4 3.5 1.7 6.4.2 9.9-2.8 6.2-4.9 12.6-7.8 18.7-2.6 5.5-6.7 9.5-12.7 11.2-4.2 1.1-8.5 1.3-12.9.9-2.1-.2-4.2-.7-6.3-.8-2.8-.2-4.2 1.1-4.3 4-.1 2.8-.1 5.6 0 8.3.1 4.6 1.6 6.7 6.2 7.5 4.7.8 9.4 1.6 14.2 1.7 14.3.3 25.7-5.4 33.1-17.9 2.9-4.9 5.6-10.1 7.7-15.4 19.8-50.1 39.5-100.3 59.2-150.5.6-1.5 1.1-3 1.3-4.6.4-2.4-.7-3.6-3.1-3.7-5.6-.1-11.1 0-16.7 0-3.1 0-5.3 1.4-6.4 4.3-.4 1.1-.9 2.3-1.3 3.4l-29.1 83.7c-2.1 6.1-4.2 12.1-6.5 18.6-.4-.9-.6-1.4-.8-1.9-10.8-29.9-21.6-59.9-32.4-89.8-1.7-4.7-3.5-9.5-5.3-14.2-.9-2.5-2.7-4-5.4-4-6.4-.1-12.8-.2-19.2-.1-2.2 0-3.3 1.6-2.8 3.7zM242.4 206c1.7 11.7 7.6 20.8 18 26.6 9.9 5.5 20.7 6.2 31.7 4.6 12.7-1.9 23.9-7.3 33.8-15.5.4-.3.8-.6 1.4-1 .5 3.2.9 6.2 1.5 9.2.5 2.6 2.1 4.3 4.5 4.4 4.6.1 9.1.1 13.7 0 2.3-.1 3.8-1.6 4-3.9.1-.8.1-1.6.1-2.3v-88.8c0-3.6-.2-7.2-.7-10.8-1.6-10.8-6.2-19.7-15.9-25.4-5.6-3.3-11.8-5-18.2-5.9-3-.4-6-.7-9.1-1.1h-10c-.8.1-1.6.3-2.5.3-8.2.4-16.3 1.4-24.2 3.5-5.1 1.3-10 3.2-15 4.9-3 1-4.5 3.2-4.4 6.5.1 2.8-.1 5.6 0 8.3.1 4.1 1.8 5.2 5.7 4.1 6.5-1.7 13.1-3.5 19.7-4.8 10.3-1.9 20.7-2.7 31.1-1.2 5.4.8 10.5 2.4 14.1 7 3.1 4 4.2 8.8 4.4 13.7.3 6.9.2 13.9.3 20.8 0 .4-.1.7-.2 1.2-.4 0-.8 0-1.1-.1-8.8-2.1-17.7-3.6-26.8-4.1-9.5-.5-18.9.1-27.9 3.2-10.8 3.8-19.5 10.3-24.6 20.8-4.1 8.3-4.6 17-3.4 25.8zM98.7 106.9v175.3c0 .8 0 1.7.1 2.5.2 2.5 1.7 4.1 4.1 4.2 5.9.1 11.8.1 17.7 0 2.5 0 4-1.7 4.1-4.1.1-.8.1-1.7.1-2.5v-60.7c.9.7 1.4 1.2 1.9 1.6 15 12.5 32.2 16.6 51.1 12.9 17.1-3.4 28.9-13.9 36.7-29.2 5.8-11.6 8.3-24.1 8.7-37 .5-14.3-1-28.4-6.8-41.7-7.1-16.4-18.9-27.3-36.7-30.9-2.7-.6-5.5-.8-8.2-1.2h-7c-1.2.2-2.4.3-3.6.5-11.7 1.4-22.3 5.8-31.8 12.7-2 1.4-3.9 3-5.9 4.5-.1-.5-.3-.8-.4-1.2-.4-2.3-.7-4.6-1.1-6.9-.6-3.9-2.5-5.5-6.4-5.6h-9.7c-5.9-.1-6.9 1-6.9 6.8zM493.6 339c-2.7-.7-5.1 0-7.6 1-43.9 18.4-89.5 30.2-136.8 35.8-14.5 1.7-29.1 2.8-43.7 3.2-26.6.7-53.2-.8-79.6-4.3-17.8-2.4-35.5-5.7-53-9.9-37-8.9-72.7-21.7-106.7-38.8-8.8-4.4-17.4-9.3-26.1-14-3.8-2.1-6.2-1.5-8.2 2.1v1.7c1.2 1.6 2.2 3.4 3.7 4.8 36 32.2 76.6 56.5 122 72.9 21.9 7.9 44.4 13.7 67.3 17.5 14 2.3 28 3.8 42.2 4.5 3 .1 6 .2 9 .4.7 0 1.4.2 2.1.3h17.7c.7-.1 1.4-.3 2.1-.3 14.9-.4 29.8-1.8 44.6-4 21.4-3.2 42.4-8.1 62.9-14.7 29.6-9.6 57.7-22.4 83.4-40.1 2.8-1.9 5.7-3.8 8-6.2 4.3-4.4 2.3-10.4-3.3-11.9zm50.4-27.7c-.8-4.2-4-5.8-7.6-7-5.7-1.9-11.6-2.8-17.6-3.3-11-.9-22-.4-32.8 1.6-12 2.2-23.4 6.1-33.5 13.1-1.2.8-2.4 1.8-3.1 3-.6.9-.7 2.3-.5 3.4.3 1.3 1.7 1.6 3 1.5.6 0 1.2 0 1.8-.1l19.5-2.1c9.6-.9 19.2-1.5 28.8-.8 4.1.3 8.1 1.2 12 2.2 4.3 1.1 6.2 4.4 6.4 8.7.3 6.7-1.2 13.1-2.9 19.5-3.5 12.9-8.3 25.4-13.3 37.8-.3.8-.7 1.7-.8 2.5-.4 2.5 1 4 3.4 3.5 1.4-.3 3-1.1 4-2.1 3.7-3.6 7.5-7.2 10.6-11.2 10.7-13.8 17-29.6 20.7-46.6.7-3 1.2-6.1 1.7-9.1.2-4.7.2-9.6.2-14.5z" ], + "cc-amex": [ 576, 512, [], "f1f3", "M576 255.4c-37.9-.2-44.2-.9-54.5 5v-5c-45.3 0-53.5-1.7-64.9 5.2v-5.2h-78.2v5.1c-11.4-6.5-21.4-5.1-75.7-5.1v5.6c-6.3-3.7-14.5-5.6-24.3-5.6h-58c-3.5 3.8-12.5 13.7-15.7 17.2-12.7-14.1-10.5-11.6-15.5-17.2h-83.1v92.3h82c3.3-3.5 12.9-13.9 16.1-17.4 12.7 14.3 10.3 11.7 15.4 17.4h48.9c0-14.7.1-8.3.1-23 11.5.2 24.3-.2 34.3-6.2 0 13.9-.1 17.1-.1 29.2h39.6c0-18.5.1-7.4.1-25.3 6.2 0 7.7 0 9.4.1.1 1.3 0 0 0 25.2 152.8 0 145.9 1.1 156.7-4.5v4.5c34.8 0 54.8 2.2 67.5-6.1V432c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V228.3h26.6c4.2-10.1 2.2-5.3 6.4-15.3h19.2c4.2 10 2.2 5.2 6.4 15.3h52.9v-11.4c2.2 5 1.1 2.5 5.1 11.4h29.5c2.4-5.5 2.6-5.8 5.1-11.4v11.4h135.5v-25.1c6.4 0 8-.1 9.8.2 0 0-.2 10.9.1 24.8h66.5v-8.9c7.4 5.9 17.4 8.9 29.7 8.9h26.8c4.2-10.1 2.2-5.3 6.4-15.3h19c6.5 15 .2.5 6.6 15.3h52.8v-21.9c11.8 19.7 7.8 12.9 13.2 21.9h41.6v-92h-39.9v18.4c-12.2-20.2-6.3-10.4-11.2-18.4h-43.3v20.6c-6.2-14.6-4.6-10.8-8.8-20.6h-32.4c-.4 0-2.3.2-2.3-.3h-27.6c-12.8 0-23.1 3.2-30.7 9.3v-9.3h-39.9v5.3c-10.8-6.1-20.7-5.1-64.4-5.3-.1 0-11.6-.1-11.6 0h-103c-2.5 6.1-6.8 16.4-12.6 30-2.8-6-11-23.8-13.9-30h-46V157c-7.4-17.4-4.7-11-9-21.1H22.9c-3.4 7.9-13.7 32-23.1 53.9V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48v175.4zm-186.6-80.6c-.3.2-1.4 2.2-1.4 7.6 0 6 .9 7.7 1.1 7.9.2.1 1.1.5 3.4.5l7.3-16.9c-1.1 0-2.1-.1-3.1-.1-5.6 0-7 .7-7.3 1zm-19.9 130.9c9.2 3.3 11 9.5 11 18.4l-.1 13.8h-16.6l.1-11.5c0-11.8-3.8-13.8-14.8-13.8h-17.6l-.1 25.3h-16.6l.1-69.3h39.4c13 0 27.1 2.3 27.1 18.7-.1 7.6-4.2 15.3-11.9 18.4zm-6.3-15.4c0-6.4-5.6-7.4-10.7-7.4h-21v15.6h20.7c5.6 0 11-1.3 11-8.2zm181.7-7.1H575v-14.6h-32.9c-12.8 0-23.8 6.6-23.8 20.7 0 33 42.7 12.8 42.7 27.4 0 5.1-4.3 6.4-8.4 6.4h-32l-.1 14.8h32c8.4 0 17.6-1.8 22.5-8.9v-25.8c-10.5-13.8-39.3-1.3-39.3-13.5 0-5.8 4.6-6.5 9.2-6.5zm-99.2-.3v-14.3h-55.2l-.1 69.3h55.2l.1-14.3-38.6-.3v-13.8H445v-14.1h-37.8v-12.5h38.5zm42.2 40.1h-32.2l-.1 14.8h32.2c14.8 0 26.2-5.6 26.2-22 0-33.2-42.9-11.2-42.9-26.3 0-5.6 4.9-6.4 9.2-6.4h30.4v-14.6h-33.2c-12.8 0-23.5 6.6-23.5 20.7 0 33 42.7 12.5 42.7 27.4-.1 5.4-4.7 6.4-8.8 6.4zm-78.1-158.7c-17.4-.3-33.2-4.1-33.2 19.7 0 11.8 2.8 19.9 16.1 19.9h7.4l23.5-54.5h24.8l27.9 65.4v-65.4h25.3l29.1 48.1v-48.1h16.9v69H524l-31.2-51.9v51.9h-33.7l-6.6-15.3h-34.3l-6.4 15.3h-19.2c-22.8 0-33-11.8-33-34 0-23.3 10.5-35.3 34-35.3h16.1v15.2zm14.3 24.5h22.8l-11.2-27.6-11.6 27.6zm-72.6-39.6h-16.9v69.3h16.9v-69.3zm-38.1 37.3c9.5 3.3 11 9.2 11 18.4v13.5h-16.6c-.3-14.8 3.6-25.1-14.8-25.1h-18v25.1h-16.4v-69.3l39.1.3c13.3 0 27.4 2 27.4 18.4.1 8-4.3 15.7-11.7 18.7zm-6.7-15.3c0-6.4-5.6-7.4-10.7-7.4h-21v15.3h20.7c5.7 0 11-1.3 11-7.9zm-59.5-7.4v-14.6h-55.5v69.3h55.5v-14.3h-38.9v-13.8h37.8v-14.1h-37.8v-12.5h38.9zm-84.6 54.7v-54.2l-24 54.2H124l-24-54.2v54.2H66.2l-6.4-15.3H25.3l-6.4 15.3H1l29.7-69.3h24.5l28.1 65.7v-65.7h27.1l21.7 47 19.7-47h27.6v69.3h-16.8zM53.9 188.8l-11.5-27.6-11.2 27.6h22.7zm253 102.5c0 27.9-30.4 23.3-49.3 23.3l-.1 23.3h-32.2l-20.4-23-21.3 23h-65.4l.1-69.3h66.5l20.5 22.8 21-22.8H279c15.6 0 27.9 5.4 27.9 22.7zm-112.7 11.8l-17.9-20.2h-41.7v12.5h36.3v14.1h-36.3v13.8h40.6l19-20.2zM241 276l-25.3 27.4 25.3 28.1V276zm48.3 15.3c0-6.1-4.6-8.4-10.2-8.4h-21.5v17.6h21.2c5.9 0 10.5-2.8 10.5-9.2z" ], + "cc-apple-pay": [ 576, 512, [], "f416", "M302.2 218.4c0 17.2-10.5 27.1-29 27.1h-24.3v-54.2h24.4c18.4 0 28.9 9.8 28.9 27.1zm47.5 62.6c0 8.3 7.2 13.7 18.5 13.7 14.4 0 25.2-9.1 25.2-21.9v-7.7l-23.5 1.5c-13.3.9-20.2 5.8-20.2 14.4zM576 79v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM127.8 197.2c8.4.7 16.8-4.2 22.1-10.4 5.2-6.4 8.6-15 7.7-23.7-7.4.3-16.6 4.9-21.9 11.3-4.8 5.5-8.9 14.4-7.9 22.8zm60.6 74.5c-.2-.2-19.6-7.6-19.8-30-.2-18.7 15.3-27.7 16-28.2-8.8-13-22.4-14.4-27.1-14.7-12.2-.7-22.6 6.9-28.4 6.9-5.9 0-14.7-6.6-24.3-6.4-12.5.2-24.2 7.3-30.5 18.6-13.1 22.6-3.4 56 9.3 74.4 6.2 9.1 13.7 19.1 23.5 18.7 9.3-.4 13-6 24.2-6 11.3 0 14.5 6 24.3 5.9 10.2-.2 16.5-9.1 22.8-18.2 6.9-10.4 9.8-20.4 10-21zm135.4-53.4c0-26.6-18.5-44.8-44.9-44.8h-51.2v136.4h21.2v-46.6h29.3c26.8 0 45.6-18.4 45.6-45zm90 23.7c0-19.7-15.8-32.4-40-32.4-22.5 0-39.1 12.9-39.7 30.5h19.1c1.6-8.4 9.4-13.9 20-13.9 13 0 20.2 6 20.2 17.2v7.5l-26.4 1.6c-24.6 1.5-37.9 11.6-37.9 29.1 0 17.7 13.7 29.4 33.4 29.4 13.3 0 25.6-6.7 31.2-17.4h.4V310h19.6v-68zM516 210.9h-21.5l-24.9 80.6h-.4l-24.9-80.6H422l35.9 99.3-1.9 6c-3.2 10.2-8.5 14.2-17.9 14.2-1.7 0-4.9-.2-6.2-.3v16.4c1.2.4 6.5.5 8.1.5 20.7 0 30.4-7.9 38.9-31.8L516 210.9z" ], + "cc-diners-club": [ 576, 512, [], "f24c", "M239.7 79.9c-96.9 0-175.8 78.6-175.8 175.8 0 96.9 78.9 175.8 175.8 175.8 97.2 0 175.8-78.9 175.8-175.8 0-97.2-78.6-175.8-175.8-175.8zm-39.9 279.6c-41.7-15.9-71.4-56.4-71.4-103.8s29.7-87.9 71.4-104.1v207.9zm79.8.3V151.6c41.7 16.2 71.4 56.7 71.4 104.1s-29.7 87.9-71.4 104.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM329.7 448h-90.3c-106.2 0-193.8-85.5-193.8-190.2C45.6 143.2 133.2 64 239.4 64h90.3c105 0 200.7 79.2 200.7 193.8 0 104.7-95.7 190.2-200.7 190.2z" ], + "cc-discover": [ 576, 512, [], "f1f2", "M83 212.1c0 7.9-3.2 15.5-8.9 20.7-4.9 4.4-11.6 6.4-21.9 6.4H48V185h4.2c10.3 0 16.7 1.7 21.9 6.6 5.7 5 8.9 12.6 8.9 20.5zM504.8 184h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8 0-7.9-5.5-12.1-15.6-12.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM428 253h45.3v-13.8H444V217h28.3v-13.8H444V185h29.3v-14H428v82zm-86.2-82l35 84.2h8.6l35.5-84.2h-17.5l-22.2 55.2-21.9-55.2h-17.5zm-83 41.6c0 24.6 19.9 44.6 44.6 44.6 24.6 0 44.6-19.9 44.6-44.6 0-24.6-19.9-44.6-44.6-44.6-24.6 0-44.6 19.9-44.6 44.6zm-68-.5c0 32.5 33.6 52.5 63.3 38.2v-19c-19.3 19.3-46.8 5.8-46.8-19.2 0-23.7 26.7-39.1 46.8-19v-19c-30.2-15-63.3 6.8-63.3 38zm-33.9 28.3c-7.6 0-13.8-3.7-17.5-10.8l-10.3 9.9c17.8 26.1 56.6 18.2 56.6-11.3 0-13.1-5.4-19-23.6-25.6-9.6-3.4-12.3-5.9-12.3-10.3 0-8.7 14.5-14.1 24.9-2.5l8.4-10.8c-19.1-17.1-49.7-8.9-49.7 14.3 0 11.3 5.2 17.2 20.2 22.7 25.7 9.1 14.7 24.4 3.3 24.4zm-57.4-28.3c0-24.1-18-41.1-44.1-41.1H32v82h23.4c30.9 0 44.1-22.4 44.1-40.9zm23.4-41.1h-16v82h16v-82zM544 288c-33.3 20.8-226.4 124.4-416 160h401c8.2 0 15-6.8 15-15V288zm0-35l-25.9-34.5c12.1-2.5 18.7-10.6 18.7-23.2 0-28.5-30.3-24.4-52.9-24.4v82h16v-32.8h2.2l22.2 32.8H544z" ], + "cc-jcb": [ 576, 512, [], "f24b", "M431.5 244.3V212c41.2 0 38.5.2 38.5.2 7.3 1.3 13.3 7.3 13.3 16 0 8.8-6 14.5-13.3 15.8-1.2.4-3.3.3-38.5.3zm42.8 20.2c-2.8-.7-3.3-.5-42.8-.5v35c39.6 0 40 .2 42.8-.5 7.5-1.5 13.5-8 13.5-17 0-8.7-6-15.5-13.5-17zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM182 192.3h-57c0 67.1 10.7 109.7-35.8 109.7-19.5 0-38.8-5.7-57.2-14.8v28c30 8.3 68 8.3 68 8.3 97.9 0 82-47.7 82-131.2zm178.5 4.5c-63.4-16-165-14.9-165 59.3 0 77.1 108.2 73.6 165 59.2V287C312.9 311.7 253 309 253 256s59.8-55.6 107.5-31.2v-28zM544 286.5c0-18.5-16.5-30.5-38-32v-.8c19.5-2.7 30.3-15.5 30.3-30.2 0-19-15.7-30-37-31 0 0 6.3-.3-120.3-.3v127.5h122.7c24.3.1 42.3-12.9 42.3-33.2z" ], + "cc-mastercard": [ 576, 512, [], "f1f1", "M482.9 410.3c0 6.8-4.6 11.7-11.2 11.7-6.8 0-11.2-5.2-11.2-11.7 0-6.5 4.4-11.7 11.2-11.7 6.6 0 11.2 5.2 11.2 11.7zm-310.8-11.7c-7.1 0-11.2 5.2-11.2 11.7 0 6.5 4.1 11.7 11.2 11.7 6.5 0 10.9-4.9 10.9-11.7-.1-6.5-4.4-11.7-10.9-11.7zm117.5-.3c-5.4 0-8.7 3.5-9.5 8.7h19.1c-.9-5.7-4.4-8.7-9.6-8.7zm107.8.3c-6.8 0-10.9 5.2-10.9 11.7 0 6.5 4.1 11.7 10.9 11.7 6.8 0 11.2-4.9 11.2-11.7 0-6.5-4.4-11.7-11.2-11.7zm105.9 26.1c0 .3.3.5.3 1.1 0 .3-.3.5-.3 1.1-.3.3-.3.5-.5.8-.3.3-.5.5-1.1.5-.3.3-.5.3-1.1.3-.3 0-.5 0-1.1-.3-.3 0-.5-.3-.8-.5-.3-.3-.5-.5-.5-.8-.3-.5-.3-.8-.3-1.1 0-.5 0-.8.3-1.1 0-.5.3-.8.5-1.1.3-.3.5-.3.8-.5.5-.3.8-.3 1.1-.3.5 0 .8 0 1.1.3.5.3.8.3 1.1.5s.2.6.5 1.1zm-2.2 1.4c.5 0 .5-.3.8-.3.3-.3.3-.5.3-.8 0-.3 0-.5-.3-.8-.3 0-.5-.3-1.1-.3h-1.6v3.5h.8V426h.3l1.1 1.4h.8l-1.1-1.3zM576 81v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V81c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM64 220.6c0 76.5 62.1 138.5 138.5 138.5 27.2 0 53.9-8.2 76.5-23.1-72.9-59.3-72.4-171.2 0-230.5-22.6-15-49.3-23.1-76.5-23.1-76.4-.1-138.5 62-138.5 138.2zm224 108.8c70.5-55 70.2-162.2 0-217.5-70.2 55.3-70.5 162.6 0 217.5zm-142.3 76.3c0-8.7-5.7-14.4-14.7-14.7-4.6 0-9.5 1.4-12.8 6.5-2.4-4.1-6.5-6.5-12.2-6.5-3.8 0-7.6 1.4-10.6 5.4V392h-8.2v36.7h8.2c0-18.9-2.5-30.2 9-30.2 10.2 0 8.2 10.2 8.2 30.2h7.9c0-18.3-2.5-30.2 9-30.2 10.2 0 8.2 10 8.2 30.2h8.2v-23zm44.9-13.7h-7.9v4.4c-2.7-3.3-6.5-5.4-11.7-5.4-10.3 0-18.2 8.2-18.2 19.3 0 11.2 7.9 19.3 18.2 19.3 5.2 0 9-1.9 11.7-5.4v4.6h7.9V392zm40.5 25.6c0-15-22.9-8.2-22.9-15.2 0-5.7 11.9-4.8 18.5-1.1l3.3-6.5c-9.4-6.1-30.2-6-30.2 8.2 0 14.3 22.9 8.3 22.9 15 0 6.3-13.5 5.8-20.7.8l-3.5 6.3c11.2 7.6 32.6 6 32.6-7.5zm35.4 9.3l-2.2-6.8c-3.8 2.1-12.2 4.4-12.2-4.1v-16.6h13.1V392h-13.1v-11.2h-8.2V392h-7.6v7.3h7.6V416c0 17.6 17.3 14.4 22.6 10.9zm13.3-13.4h27.5c0-16.2-7.4-22.6-17.4-22.6-10.6 0-18.2 7.9-18.2 19.3 0 20.5 22.6 23.9 33.8 14.2l-3.8-6c-7.8 6.4-19.6 5.8-21.9-4.9zm59.1-21.5c-4.6-2-11.6-1.8-15.2 4.4V392h-8.2v36.7h8.2V408c0-11.6 9.5-10.1 12.8-8.4l2.4-7.6zm10.6 18.3c0-11.4 11.6-15.1 20.7-8.4l3.8-6.5c-11.6-9.1-32.7-4.1-32.7 15 0 19.8 22.4 23.8 32.7 15l-3.8-6.5c-9.2 6.5-20.7 2.6-20.7-8.6zm66.7-18.3H408v4.4c-8.3-11-29.9-4.8-29.9 13.9 0 19.2 22.4 24.7 29.9 13.9v4.6h8.2V392zm33.7 0c-2.4-1.2-11-2.9-15.2 4.4V392h-7.9v36.7h7.9V408c0-11 9-10.3 12.8-8.4l2.4-7.6zm40.3-14.9h-7.9v19.3c-8.2-10.9-29.9-5.1-29.9 13.9 0 19.4 22.5 24.6 29.9 13.9v4.6h7.9v-51.7zm7.6-75.1v4.6h.8V302h1.9v-.8h-4.6v.8h1.9zm6.6 123.8c0-.5 0-1.1-.3-1.6-.3-.3-.5-.8-.8-1.1-.3-.3-.8-.5-1.1-.8-.5 0-1.1-.3-1.6-.3-.3 0-.8.3-1.4.3-.5.3-.8.5-1.1.8-.5.3-.8.8-.8 1.1-.3.5-.3 1.1-.3 1.6 0 .3 0 .8.3 1.4 0 .3.3.8.8 1.1.3.3.5.5 1.1.8.5.3 1.1.3 1.4.3.5 0 1.1 0 1.6-.3.3-.3.8-.5 1.1-.8.3-.3.5-.8.8-1.1.3-.6.3-1.1.3-1.4zm3.2-124.7h-1.4l-1.6 3.5-1.6-3.5h-1.4v5.4h.8v-4.1l1.6 3.5h1.1l1.4-3.5v4.1h1.1v-5.4zm4.4-80.5c0-76.2-62.1-138.3-138.5-138.3-27.2 0-53.9 8.2-76.5 23.1 72.1 59.3 73.2 171.5 0 230.5 22.6 15 49.5 23.1 76.5 23.1 76.4.1 138.5-61.9 138.5-138.4z" ], + "cc-paypal": [ 576, 512, [], "f1f4", "M186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5z" ], + "cc-stripe": [ 576, 512, [], "f1f5", "M396.9 256.5c0 19.1-8.8 33.4-21.9 33.4-8.3 0-13.3-3-16.8-6.7l-.2-52.8c3.7-4.1 8.8-7 17-7 12.9-.1 21.9 14.5 21.9 33.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM122.2 281.1c0-42.3-54.3-34.7-54.3-50.7 0-5.5 4.6-7.7 12.1-7.7 10.8 0 24.5 3.3 35.3 9.1v-33.4c-11.8-4.7-23.5-6.5-35.3-6.5-28.8 0-48 15-48 40.2 0 39.3 54 32.9 54 49.9 0 6.6-5.7 8.7-13.6 8.7-11.8 0-26.9-4.9-38.9-11.3v33.9c13.2 5.7 26.6 8.1 38.8 8.1 29.6-.2 49.9-14.7 49.9-40.3zm68.9-86.9h-27v-30.8l-34.7 7.4-.2 113.9c0 21 15.8 36.5 36.9 36.5 11.6 0 20.2-2.1 24.9-4.7v-28.9c-4.5 1.8-27 8.3-27-12.6v-50.5h27v-30.3zm73.8 0c-4.7-1.7-21.3-4.8-29.6 10.5l-2.2-10.5h-30.7v124.5h35.5v-84.4c8.4-11 22.6-8.9 27.1-7.4v-32.7zm44.2 0h-35.7v124.5h35.7V194.2zm0-47.3l-35.7 7.6v28.9l35.7-7.6v-28.9zm122.7 108.8c0-41.3-23.5-63.8-48.4-63.8-13.9 0-22.9 6.6-27.8 11.1l-1.8-8.8h-31.3V360l35.5-7.5.1-40.2c5.1 3.7 12.7 9 25.1 9 25.4-.1 48.6-20.5 48.6-65.6zm112.2 1.2c0-36.4-17.6-65.1-51.3-65.1-33.8 0-54.3 28.7-54.3 64.9 0 42.8 24.2 64.5 58.8 64.5 17 0 29.7-3.9 39.4-9.2v-28.6c-9.7 4.9-20.8 7.9-34.9 7.9-13.8 0-26-4.9-27.6-21.5h69.5c.1-2 .4-9.4.4-12.9zm-51.6-36.1c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7z" ], + "cc-visa": [ 576, 512, [], "f1f0", "M470.1 231.3s7.6 37.2 9.3 45H446c3.3-8.9 16-43.5 16-43.5-.2.3 3.3-9.1 5.3-14.9l2.8 13.4zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM152.5 331.2L215.7 176h-42.5l-39.3 106-4.3-21.5-14-71.4c-2.3-9.9-9.4-12.7-18.2-13.1H32.7l-.7 3.1c15.8 4 29.9 9.8 42.2 17.1l35.8 135h42.5zm94.4.2L272.1 176h-40.2l-25.1 155.4h40.1zm139.9-50.8c.2-17.7-10.6-31.2-33.7-42.3-14.1-7.1-22.7-11.9-22.7-19.2.2-6.6 7.3-13.4 23.1-13.4 13.1-.3 22.7 2.8 29.9 5.9l3.6 1.7 5.5-33.6c-7.9-3.1-20.5-6.6-36-6.6-39.7 0-67.6 21.2-67.8 51.4-.3 22.3 20 34.7 35.2 42.2 15.5 7.6 20.8 12.6 20.8 19.3-.2 10.4-12.6 15.2-24.1 15.2-16 0-24.6-2.5-37.7-8.3l-5.3-2.5-5.6 34.9c9.4 4.3 26.8 8.1 44.8 8.3 42.2.1 69.7-20.8 70-53zM528 331.4L495.6 176h-31.1c-9.6 0-16.9 2.8-21 12.9l-59.7 142.5H426s6.9-19.2 8.4-23.3H486c1.2 5.5 4.8 23.3 4.8 23.3H528z" ], + centercode: [ 512, 512, [], "f380", "M329.2 268.6c-3.8 35.2-35.4 60.6-70.6 56.8-35.2-3.8-60.6-35.4-56.8-70.6 3.8-35.2 35.4-60.6 70.6-56.8 35.1 3.8 60.6 35.4 56.8 70.6zm-85.8 235.1C96.7 496-8.2 365.5 10.1 224.3c11.2-86.6 65.8-156.9 139.1-192 161-77.1 349.7 37.4 354.7 216.6 4.1 147-118.4 262.2-260.5 254.8zm179.9-180c27.9-118-160.5-205.9-237.2-234.2-57.5 56.3-69.1 188.6-33.8 344.4 68.8 15.8 169.1-26.4 271-110.2z" ], + chrome: [ 496, 512, [], "f268", "M131.5 217.5L55.1 100.1c47.6-59.2 119-91.8 192-92.1 42.3-.3 85.5 10.5 124.8 33.2 43.4 25.2 76.4 61.4 97.4 103L264 133.4c-58.1-3.4-113.4 29.3-132.5 84.1zm32.9 38.5c0 46.2 37.4 83.6 83.6 83.6s83.6-37.4 83.6-83.6-37.4-83.6-83.6-83.6-83.6 37.3-83.6 83.6zm314.9-89.2L339.6 174c37.9 44.3 38.5 108.2 6.6 157.2L234.1 503.6c46.5 2.5 94.4-7.7 137.8-32.9 107.4-62 150.9-192 107.4-303.9zM133.7 303.6L40.4 120.1C14.9 159.1 0 205.9 0 256c0 124 90.8 226.7 209.5 244.9l63.7-124.8c-57.6 10.8-113.2-20.8-139.5-72.5z" ], + cloudscale: [ 448, 512, [], "f383", "M318.1 154l-9.4 7.6c-22.5-19.3-51.5-33.6-83.3-33.6C153.8 128 96 188.8 96 260.3c0 6.6.4 13.1 1.4 19.4-2-56 41.8-97.4 92.6-97.4 24.2 0 46.2 9.4 62.6 24.7l-25.2 20.4c-8.3-.9-16.8 1.8-23.1 8.1-11.1 11-11.1 28.9 0 40 11.1 11 28.9 11 40 0 6.3-6.3 9-14.9 8.1-23.1l75.2-88.8c6.3-6.5-3.3-15.9-9.5-9.6zm-83.8 111.5c-5.6 5.5-14.6 5.5-20.2 0-5.6-5.6-5.6-14.6 0-20.2s14.6-5.6 20.2 0 5.6 14.7 0 20.2zM224 32C100.5 32 0 132.5 0 256s100.5 224 224 224 224-100.5 224-224S347.5 32 224 32zm0 384c-88.2 0-160-71.8-160-160S135.8 96 224 96s160 71.8 160 160-71.8 160-160 160z" ], + cloudsmith: [ 332, 512, [], "f384", "M332.5 419.9c0 46.4-37.6 84.1-84 84.1s-84-37.7-84-84.1 37.6-84 84-84 84 37.6 84 84zm-84-243.9c46.4 0 80-37.6 80-84s-33.6-84-80-84-88 37.6-88 84-29.6 76-76 76-84 41.6-84 88 37.6 80 84 80 84-33.6 84-80 33.6-80 80-80z" ], + cloudversify: [ 616, 512, [], "f385", "M148.6 304c8.2 68.5 67.4 115.5 146 111.3 51.2 43.3 136.8 45.8 186.4-5.6 69.2 1.1 118.5-44.6 131.5-99.5 14.8-62.5-18.2-132.5-92.1-155.1-33-88.1-131.4-101.5-186.5-85-57.3 17.3-84.3 53.2-99.3 109.7-7.8 2.7-26.5 8.9-45 24.1 11.7 0 15.2 8.9 15.2 19.5v20.4c0 10.7-8.7 19.5-19.5 19.5h-20.2c-10.7 0-19.5-6-19.5-16.7V240H98.8C95 240 88 244.3 88 251.9v40.4c0 6.4 5.3 11.8 11.7 11.8h48.9zm227.4 8c-10.7 46.3 21.7 72.4 55.3 86.8C324.1 432.6 259.7 348 296 288c-33.2 21.6-33.7 71.2-29.2 92.9-17.9-12.4-53.8-32.4-57.4-79.8-3-39.9 21.5-75.7 57-93.9C297 191.4 369.9 198.7 400 248c-14.1-48-53.8-70.1-101.8-74.8 30.9-30.7 64.4-50.3 114.2-43.7 69.8 9.3 133.2 82.8 67.7 150.5 35-16.3 48.7-54.4 47.5-76.9l10.5 19.6c11.8 22 15.2 47.6 9.4 72-9.2 39-40.6 68.8-79.7 76.5-32.1 6.3-83.1-5.1-91.8-59.2zM128 208H88.2c-8.9 0-16.2-7.3-16.2-16.2v-39.6c0-8.9 7.3-16.2 16.2-16.2H128c8.9 0 16.2 7.3 16.2 16.2v39.6c0 8.9-7.3 16.2-16.2 16.2zM10.1 168C4.5 168 0 163.5 0 157.9v-27.8c0-5.6 4.5-10.1 10.1-10.1h27.7c5.5 0 10.1 4.5 10.1 10.1v27.8c0 5.6-4.5 10.1-10.1 10.1H10.1zM168 142.7v-21.4c0-5.1 4.2-9.3 9.3-9.3h21.4c5.1 0 9.3 4.2 9.3 9.3v21.4c0 5.1-4.2 9.3-9.3 9.3h-21.4c-5.1 0-9.3-4.2-9.3-9.3zM56 235.5v25c0 6.3-5.1 11.5-11.4 11.5H19.4C13.1 272 8 266.8 8 260.5v-25c0-6.3 5.1-11.5 11.4-11.5h25.1c6.4 0 11.5 5.2 11.5 11.5z" ], + codepen: [ 512, 512, [], "f1cb", "M502.285 159.704l-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285zM278 63.131l172.286 114.858-76.857 51.429L278 165.703V63.131zm-44 0v102.572l-95.429 63.715-76.857-51.429L234 63.131zM44 219.132l55.143 36.857L44 292.846v-73.714zm190 229.715L61.714 333.989l76.857-51.429L234 346.275v102.572zm22-140.858l-77.715-52 77.715-52 77.715 52-77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429L278 448.847zm190-156.001l-55.143-36.857L468 219.132v73.714z" ], + codiepie: [ 472, 512, [], "f284", "M422.5 202.9c30.7 0 33.5 53.1-.3 53.1h-10.8v44.3h-26.6v-97.4h37.7zM472 352.6C429.9 444.5 350.4 504 248 504 111 504 0 393 0 256S111 8 248 8c97.4 0 172.8 53.7 218.2 138.4l-186 108.8L472 352.6zm-38.5 12.5l-60.3-30.7c-27.1 44.3-70.4 71.4-122.4 71.4-82.5 0-149.2-66.7-149.2-148.9 0-82.5 66.7-149.2 149.2-149.2 48.4 0 88.9 23.5 116.9 63.4l59.5-34.6c-40.7-62.6-104.7-100-179.2-100-121.2 0-219.5 98.3-219.5 219.5S126.8 475.5 248 475.5c78.6 0 146.5-42.1 185.5-110.4z" ], + connectdevelop: [ 576, 512, [], "f20e", "M550.5 241l-50.089-86.786c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.733-14.732-15.001l-55.447-95.893c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.268-15.268-15.268-4.821 0-8.839 2.143-11.786 5.625H299.518C296.839 18.143 292.821 16 288 16s-8.839 2.143-11.518 5.625H170.411C167.464 18.143 163.447 16 158.625 16c-8.303 0-15.268 6.696-15.268 15.268 0 1.607.536 3.482 1.072 4.821l-55.983 97.233c-5.356 2.41-9.107 7.5-9.107 13.661 0 .535.268 1.071.268 1.607l-53.304 92.143c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.393 12.054 15l55.179 95.358c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.393 12.054 14.732l51.697 89.732c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.268 15.268 15.268 4.821 0 8.839-2.143 11.518-5.357h106.875C279.161 493.857 283.447 496 288 496s8.839-2.143 11.518-5.357h107.143c2.678 2.946 6.696 4.821 10.982 4.821 8.571 0 15.268-6.964 15.268-15.268 0-1.607-.267-2.946-.803-4.285l51.697-90.268c6.964-1.339 12.054-7.5 12.054-14.732 0-1.607-.268-3.214-.804-4.821l54.911-95.358c6.964-1.339 12.322-7.5 12.322-15-.002-7.232-5.092-13.393-11.788-14.732zM153.535 450.732l-43.66-75.803h43.66v75.803zm0-83.839h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.999-47.41v50.624zm0-62.411l-50.357 53.304c-1.339-.536-2.679-1.34-4.018-1.607L43.447 259.75c.535-1.339.535-2.679.535-4.018s0-2.41-.268-3.482l51.965-90c2.679-.268 5.357-1.072 7.768-2.679l50.089 51.965v92.946zm0-102.322l-45.803-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.928-15.804v72.053zm0-80.625l-43.66 15.804 43.66-75.536v59.732zm326.519 39.108l.804 1.339L445.5 329.125l-63.75-67.232 98.036-101.518.268.268zM291.75 355.107l11.518 11.786H280.5l11.25-11.786zm-.268-11.25l-83.303-85.446 79.553-84.375 83.036 87.589-79.286 82.232zm5.357 5.893l79.286-82.232 67.5 71.25-5.892 28.125H313.714l-16.875-17.143zM410.411 44.393c1.071.536 2.142 1.072 3.482 1.34l57.857 100.714v.536c0 2.946.803 5.624 2.143 7.767L376.393 256l-83.035-87.589L410.411 44.393zm-9.107-2.143L287.732 162.518l-57.054-60.268 166.339-60h4.287zm-123.483 0c2.678 2.678 6.16 4.285 10.179 4.285s7.5-1.607 10.179-4.285h75L224.786 95.821 173.893 42.25h103.928zm-116.249 5.625l1.071-2.142a33.834 33.834 0 0 0 2.679-.804l51.161 53.84-54.911 19.821V47.875zm0 79.286l60.803-21.964 59.732 63.214-79.553 84.107-40.982-42.053v-83.304zm0 92.678L198 257.607l-36.428 38.304v-76.072zm0 87.858l42.053-44.464 82.768 85.982-17.143 17.678H161.572v-59.196zm6.964 162.053c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.732h99.91l-91.607 94.821h-1.339zm129.911 0c-2.679-2.41-6.428-4.285-10.447-4.285s-7.767 1.875-10.447 4.285h-96.429l91.607-94.821h38.304l91.607 94.821H298.447zm120-11.786l-4.286 7.5c-1.339.268-2.41.803-3.482 1.339l-89.196-91.875h114.376l-17.412 83.036zm12.856-22.232l12.858-60.803h21.964l-34.822 60.803zm34.822-68.839h-20.357l4.553-21.16 17.143 18.214c-.535.803-1.071 1.874-1.339 2.946zm66.161-107.411l-55.447 96.697c-1.339.535-2.679 1.071-4.018 1.874l-20.625-21.964 34.554-163.928 45.803 79.286c-.267 1.339-.803 2.678-.803 4.285 0 1.339.268 2.411.536 3.75z" ], + contao: [ 512, 512, [], "f26d", "M45.4 305c14.4 67.1 26.4 129 68.2 175H34c-18.7 0-34-15.2-34-34V66c0-18.7 15.2-34 34-34h57.7C77.9 44.6 65.6 59.2 54.8 75.6c-45.4 70-27 146.8-9.4 229.4zM478 32h-90.2c21.4 21.4 39.2 49.5 52.7 84.1l-137.1 29.3c-14.9-29-37.8-53.3-82.6-43.9-24.6 5.3-41 19.3-48.3 34.6-8.8 18.7-13.2 39.8 8.2 140.3 21.1 100.2 33.7 117.7 49.5 131.2 12.9 11.1 33.4 17 58.3 11.7 44.5-9.4 55.7-40.7 57.4-73.2l137.4-29.6c3.2 71.5-18.7 125.2-57.4 163.6H478c18.7 0 34-15.2 34-34V66c0-18.8-15.2-34-34-34z" ], + cpanel: [ 640, 512, [], "f388", "M52.9 213.7h40l-6.2 23.6c-1.9 6.5-7.4 10.9-14.3 10.9H53.8c-24.9 0-24.7 37.4 0 37.4h11.3c4.2 0 7.6 3.9 6.4 8.3L64.4 320H52c-33.5 0-59-31.4-50.3-65.2 7.3-27 28.3-41.1 51.2-41.1M73.1 320L108 189.9c1.8-6.4 7.2-10.9 14.3-10.9h37c24.1 0 45.4 16.4 51 41.2 6.6 29.1-14.5 65.3-51.7 65.3h-32l6.4-23.8c1.8-6.2 7.3-10.8 14.3-10.8h10.3c12.4 0 20.8-11.7 18.3-22.6-2.1-9.2-9.9-14.8-18.3-14.8h-19.8L112 309.2c-1.9 6.2-7.4 10.7-14.2 10.7l-24.7.1m220.6-69.4c.3-1 1.9-5.3-2.1-5.3h-57.5c-9.7 0-16.6-8.9-14.2-18.5l3.5-13.4h77.9c18.8 0 33.3 17.6 28.5 36.8l-14 51.8c-2.8 10.6-12.2 17.8-23.4 17.8l-57.5-.2c-42.9 0-38.5-63.8.7-63.8H284l-3.5 13.2c-1.9 6.2-7.4 10.8-14.2 10.8h-21.6c-5.3 0-5.3 7.9 0 7.9h34.9c4.6 0 5.1-3.9 5.5-5.3l8.6-31.8m103.1-36.9c34.4 0 59.3 32.3 50.3 65.4l-8.8 33.1c-1.2 4.9-5.7 7.8-10.3 7.8h-19.1c-4.5 0-7.6-4-6.4-8.3l10.6-40c3.3-11.6-5.6-23.4-18.1-23.4h-19.8l-17.2 64c-1.2 4.8-5.6 7.8-10.4 7.8h-18.9c-4.2 0-7.6-3.9-6.4-8.3l26.2-98h48.3M498 251.6l-8 30c-.9 3.3 1.5 6.7 5.1 6.7h73.3l-5.7 21c-1.9 6.2-7.4 10.7-14.2 10.7h-66.7c-20 0-33.3-19-28.3-36.7l10.8-40c4.8-17.6 20.7-29.6 38.6-29.6h47.3c19 0 33.2 17.7 28.3 36.8l-3.2 12c-2.9 11-12.7 17.6-23.2 17.6h-53.4l3.5-13c1.6-6.2 7.2-10.8 14.2-10.8H538c2 0 3.3-1 3.9-3l.7-2.6c.7-2.7-1.3-5.1-3.9-5.1h-32.9c-4.1 0-6.9 2.1-7.8 6zm70.2 68.4l35.6-133.1c1.2-4.7 5.5-7.9 10.4-7.9h18.9c4.5 0 7.7 4 6.5 8.3l-26.5 98.2c-5.1 20.7-24.2 34.5-44.9 34.5" ], + "creative-commons": [ 496, 512, [], "f25e", "M245.83 214.87l-33.22 17.28c-9.43-19.58-25.24-19.93-27.46-19.93-22.13 0-33.22 14.61-33.22 43.84 0 23.57 9.21 43.84 33.22 43.84 14.47 0 24.65-7.09 30.57-21.26l30.55 15.5c-6.17 11.51-25.69 38.98-65.1 38.98-22.6 0-73.96-10.32-73.96-77.05 0-58.69 43-77.06 72.63-77.06 30.72-.01 52.7 11.95 65.99 35.86zm143.05 0l-32.78 17.28c-9.5-19.77-25.72-19.93-27.9-19.93-22.14 0-33.22 14.61-33.22 43.84 0 23.55 9.23 43.84 33.22 43.84 14.45 0 24.65-7.09 30.54-21.26l31 15.5c-2.1 3.75-21.39 38.98-65.09 38.98-22.69 0-73.96-9.87-73.96-77.05 0-58.67 42.97-77.06 72.63-77.06 30.71-.01 52.58 11.95 65.56 35.86zM247.56 8.05C104.74 8.05 0 123.11 0 256.05c0 138.49 113.6 248 247.56 248 129.93 0 248.44-100.87 248.44-248 0-137.87-106.62-248-248.44-248zm.87 450.81c-112.54 0-203.7-93.04-203.7-202.81 0-105.42 85.43-203.27 203.72-203.27 112.53 0 202.82 89.46 202.82 203.26-.01 121.69-99.68 202.82-202.84 202.82z" ], + "creative-commons-by": [ 496, 512, [], "f4e7", "M314.9 194.4v101.4h-28.3v120.5h-77.1V295.9h-28.3V194.4c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7H299c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3zm-101.5-63.7c0-23.3 11.5-35 34.5-35s34.5 11.7 34.5 35c0 23-11.5 34.5-34.5 34.5s-34.5-11.5-34.5-34.5zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z" ], + "creative-commons-nc": [ 496, 512, [], "f4e8", "M247.6 8C387.4 8 496 115.9 496 256c0 147.2-118.5 248-248.4 248C113.1 504 0 393.2 0 256 0 123.1 104.7 8 247.6 8zM55.8 189.1c-7.4 20.4-11.1 42.7-11.1 66.9 0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4v38.1h-28.8V368c-27.5-.3-52.6-10.2-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4zM248.4 52.3c-38.4 0-112.4 8.7-170.5 93l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3v-38.1h28.8v38.1c22.7 1.2 43.4 8.9 62 23L295 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8z" ], + "creative-commons-nc-eu": [ 496, 512, [], "f4e9", "M247.7 8C103.6 8 0 124.8 0 256c0 136.3 111.7 248 247.7 248C377.9 504 496 403.1 496 256 496 117 388.4 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-23.2 3.7-45.2 10.9-66l65.7 29.1h-4.7v29.5h23.3c0 6.2-.4 3.2-.4 19.5h-22.8v29.5h27c11.4 67 67.2 101.3 124.6 101.3 26.6 0 50.6-7.9 64.8-15.8l-10-46.1c-8.7 4.6-28.2 10.8-47.3 10.8-28.2 0-58.1-10.9-67.3-50.2h90.3l128.3 56.8c-1.5 2.1-56.2 104.3-178.8 104.3zm-16.7-190.6l-.5-.4.9.4h-.4zm77.2-19.5h3.7v-29.5h-70.3l-28.6-12.6c2.5-5.5 5.4-10.5 8.8-14.3 12.9-15.8 31.1-22.4 51.1-22.4 18.3 0 35.3 5.4 46.1 10l11.6-47.3c-15-6.6-37-12.4-62.3-12.4-39 0-72.2 15.8-95.9 42.3-5.3 6.1-9.8 12.9-13.9 20.1l-81.6-36.1c64.6-96.8 157.7-93.6 170.7-93.6 113 0 203 90.2 203 203.4 0 18.7-2.1 36.3-6.3 52.9l-136.1-60.5z" ], + "creative-commons-nc-jp": [ 496, 512, [], "f4ea", "M247.7 8C103.6 8 0 124.8 0 256c0 136.4 111.8 248 247.7 248C377.9 504 496 403.2 496 256 496 117.2 388.5 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-21.1 3-41.2 9-60.3l127 56.5h-27.9v38.6h58.1l5.7 11.8v18.7h-63.8V360h63.8v56h61.7v-56h64.2v-35.7l81 36.1c-1.5 2.2-57.1 98.3-175.2 98.3zm87.6-137.3h-57.6v-18.7l2.9-5.6 54.7 24.3zm6.5-51.4v-17.8h-38.6l63-116H301l-43.4 96-23-10.2-39.6-85.7h-65.8l27.3 51-81.9-36.5c27.8-44.1 82.6-98.1 173.7-98.1 112.8 0 203 90 203 203.4 0 21-2.7 40.6-7.9 59l-101-45.1z" ], + "creative-commons-nd": [ 496, 512, [], "f4eb", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm94 144.3v42.5H162.1V197h180.3zm0 79.8v42.5H162.1v-42.5h180.3z" ], + "creative-commons-pd": [ 496, 512, [], "f4ec", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm0 449.5c-139.2 0-235.8-138-190.2-267.9l78.8 35.1c-2.1 10.5-3.3 21.5-3.3 32.9 0 99 73.9 126.9 120.4 126.9 22.9 0 53.5-6.7 79.4-29.5L297 311.1c-5.5 6.3-17.6 16.7-36.3 16.7-37.8 0-53.7-39.9-53.9-71.9 230.4 102.6 216.5 96.5 217.9 96.8-34.3 62.4-100.6 104.8-176.7 104.8zm194.2-150l-224-100c18.8-34 54.9-30.7 74.7-11l40.4-41.6c-27.1-23.3-58-27.5-78.1-27.5-47.4 0-80.9 20.5-100.7 51.6l-74.9-33.4c36.1-54.9 98.1-91.2 168.5-91.2 111.1 0 201.5 90.4 201.5 201.5 0 18-2.4 35.4-6.8 52-.3-.1-.4-.2-.6-.4z" ], + "creative-commons-pd-alt": [ 496, 512, [], "f4ed", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM135.5 323.3V186h68.2c33.7 0 50.5 15.5 50.5 46.5 0 9-3 46.5-57.1 46.5h-27v44.3h-34.6zm34.1-111.6v41.6h29.2c27.9 0 30-41.6-.9-41.6h-28.3zm93.9 111.6V186h53.2c21.4 0 70 5.2 70 68.6 0 63.5-48.6 68.6-70 68.6h-53.2zm34.1-108.5v79.7h19.9c24 0 34.5-15.3 34.5-39.9 0-42-31.2-39.9-35-39.9l-19.4.1z" ], + "creative-commons-remix": [ 496, 512, [], "f4ee", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm161.7 207.7l4.9 2.2v70c-7.2 3.6-63.4 27.5-67.3 28.8-6.5-1.8-113.7-46.8-137.3-56.2l-64.2 26.6-63.3-27.5v-63.8l59.3-24.8c-.7-.7-.4 5-.4-70.4l67.3-29.7L361 178.5v61.6l49.1 20.3zm-70.4 81.5v-43.8h-.4v-1.8l-113.8-46.5V295l113.8 46.9v-.4l.4.4zm7.5-57.6l39.9-16.4-36.8-15.5-39 16.4 35.9 15.5zm52.3 38.1v-43L355.2 298v43.4l44.3-19z" ], + "creative-commons-sa": [ 496, 512, [], "f4ef", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM137.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97h62.5c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6-33.1 0-51.7 14.6-55.8 43.8h18.2l-49.2 49.2-49-49.2h19.4z" ], + "creative-commons-sampling": [ 496, 512, [], "f4f0", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm3.6 53.2c2.8-.3 11.5 1 11.5 11.5l6.6 107.2 4.9-59.3c0-6 4.7-10.6 10.6-10.6 5.9 0 10.6 4.7 10.6 10.6 0 2.5-.5-5.7 5.7 81.5l5.8-64.2c.3-2.9 2.9-9.3 10.2-9.3 3.8 0 9.9 2.3 10.6 8.9l11.5 96.5 5.3-12.8c1.8-4.4 5.2-6.6 10.2-6.6h58v21.3h-50.9l-18.2 44.3c-3.9 9.9-19.5 9.1-20.8-3.1l-4-31.9-7.5 92.6c-.3 3-3 9.3-10.2 9.3-3 0-9.8-2.1-10.6-9.3 0-1.9.6 5.8-6.2-77.9l-5.3 72.2c-1.1 4.8-4.8 9.3-10.6 9.3-2.9 0-9.8-2-10.6-9.3 0-1.9.5 6.7-5.8-87.7l-5.8 94.8c0 6.3-3.6 12.4-10.6 12.4-5.2 0-10.6-4.1-10.6-12l-5.8-87.7c-5.8 92.5-5.3 84-5.3 85.9-1.1 4.8-4.8 9.3-10.6 9.3-3 0-9.8-2.1-10.6-9.3 0-.7-.4-1.1-.4-2.6l-6.2-88.6L182 348c-.7 6.5-6.7 9.3-10.6 9.3-5.8 0-9.6-4.1-10.6-8.9L149.7 272c-2 4-3.5 8.4-11.1 8.4H87.2v-21.3H132l13.7-27.9c4.4-9.9 18.2-7.2 19.9 2.7l3.1 20.4 8.4-97.9c0-6 4.8-10.6 10.6-10.6.5 0 10.6-.2 10.6 12.4l4.9 69.1 6.6-92.6c0-10.1 9.5-10.6 10.2-10.6.6 0 10.6.7 10.6 10.6l5.3 80.6 6.2-97.9c.1-1.1-.6-10.3 9.9-11.5z" ], + "creative-commons-sampling-plus": [ 496, 512, [], "f4f1", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm107 205.6c-4.7 0-9 2.8-10.7 7.2l-4 9.5-11-92.8c-1.7-13.9-22-13.4-23.1.4l-4.3 51.4-5.2-68.8c-1.1-14.3-22.1-14.2-23.2 0l-3.5 44.9-5.9-94.3c-.9-14.5-22.3-14.4-23.2 0l-5.1 83.7-4.3-66.3c-.9-14.4-22.2-14.4-23.2 0l-5.3 80.2-4.1-57c-1.1-14.3-22-14.3-23.2-.2l-7.7 89.8-1.8-12.2c-1.7-11.4-17.1-13.6-22-3.3l-13.2 27.7H87.5v23.2h51.3c4.4 0 8.4-2.5 10.4-6.4l10.7 73.1c2 13.5 21.9 13 23.1-.7l3.8-43.6 5.7 78.3c1.1 14.4 22.3 14.2 23.2-.1l4.6-70.4 4.8 73.3c.9 14.4 22.3 14.4 23.2-.1l4.9-80.5 4.5 71.8c.9 14.3 22.1 14.5 23.2.2l4.6-58.6 4.9 64.4c1.1 14.3 22 14.2 23.1.1l6.8-83 2.7 22.3c1.4 11.8 17.7 14.1 22.3 3.1l18-43.4h50.5V258l-58.4.3zm-78 5.2h-21.9v21.9c0 4.1-3.3 7.5-7.5 7.5-4.1 0-7.5-3.3-7.5-7.5v-21.9h-21.9c-4.1 0-7.5-3.3-7.5-7.5 0-4.1 3.4-7.5 7.5-7.5h21.9v-21.9c0-4.1 3.4-7.5 7.5-7.5s7.5 3.3 7.5 7.5v21.9h21.9c4.1 0 7.5 3.3 7.5 7.5 0 4.1-3.4 7.5-7.5 7.5z" ], + "creative-commons-share": [ 496, 512, [], "f4f2", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm101 132.4c7.8 0 13.7 6.1 13.7 13.7v182.5c0 7.7-6.1 13.7-13.7 13.7H214.3c-7.7 0-13.7-6-13.7-13.7v-54h-54c-7.8 0-13.7-6-13.7-13.7V131.1c0-8.2 6.6-12.7 12.4-13.7h136.4c7.7 0 13.7 6 13.7 13.7v54h54zM159.9 300.3h40.7V198.9c0-7.4 5.8-12.6 12-13.7h55.8v-40.3H159.9v155.4zm176.2-88.1H227.6v155.4h108.5V212.2z" ], + css3: [ 512, 512, [], "f13c", "M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z" ], + "css3-alt": [ 384, 512, [], "f38b", "M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z" ], + cuttlefish: [ 440, 512, [], "f38c", "M344 305.5c-17.5 31.6-57.4 54.5-96 54.5-56.6 0-104-47.4-104-104s47.4-104 104-104c38.6 0 78.5 22.9 96 54.5 13.7-50.9 41.7-93.3 87-117.8C385.7 39.1 320.5 8 248 8 111 8 0 119 0 256s111 248 248 248c72.5 0 137.7-31.1 183-80.7-45.3-24.5-73.3-66.9-87-117.8z" ], + "d-and-d": [ 576, 512, [], "f38d", "M82.5 98.9c-.6-17.2 2-33.8 12.7-48.2.3 7.4 1.2 14.5 4.2 21.6 5.9-27.5 19.7-49.3 42.3-65.5-1.9 5.9-3.5 11.8-3 17.7 8.7-7.4 18.8-17.8 44.4-22.7 14.7-2.8 29.7-2 42.1 1 38.5 9.3 61 34.3 69.7 72.3 5.3 23.1.7 45-8.3 66.4-5.2 12.4-12 24.4-20.7 35.1-2-1.9-3.9-3.8-5.8-5.6-42.8-40.8-26.8-25.2-37.4-37.4-1.1-1.2-1-2.2-.1-3.6 8.3-13.5 11.8-28.2 10-44-1.1-9.8-4.3-18.9-11.3-26.2-14.5-15.3-39.2-15-53.5.6-11.4 12.5-14.1 27.4-10.9 43.6.2 1.3.4 2.7 0 3.9-3.4 13.7-4.6 27.6-2.5 41.6.1.5.1 1.1.1 1.6 0 .3-.1.5-.2 1.1-21.8-11-36-28.3-43.2-52.2-8.3 17.8-11.1 35.5-6.6 54.1-15.6-15.2-21.3-34.3-22-55.2zm469.6 123.2c-11.6-11.6-25-20.4-40.1-26.6-12.8-5.2-26-7.9-39.9-7.1-10 .6-19.6 3.1-29 6.4-2.5.9-5.1 1.6-7.7 2.2-4.9 1.2-7.3-3.1-4.7-6.8 3.2-4.6 3.4-4.2 15-12 .6-.4 1.2-.8 2.2-1.5h-2.5c-.6 0-1.2.2-1.9.3-19.3 3.3-30.7 15.5-48.9 29.6-10.4 8.1-13.8 3.8-12-.5 1.4-3.5 3.3-6.7 5.1-10 1-1.8 2.3-3.4 3.5-5.1-.2-.2-.5-.3-.7-.5-27 18.3-46.7 42.4-57.7 73.3.3.3.7.6 1 .9.3-.6.5-1.2.9-1.7 10.4-12.1 22.8-21.8 36.6-29.8 18.2-10.6 37.5-18.3 58.7-20.2 4.3-.4 8.7-.1 13.1-.1-1.8.7-3.5.9-5.3 1.1-18.5 2.4-35.5 9-51.5 18.5-30.2 17.9-54.5 42.2-75.1 70.4-.3.4-.4.9-.7 1.3 14.5 5.3 24 17.3 36.1 25.6.2-.1.3-.2.4-.4l1.2-2.7c12.2-26.9 27-52.3 46.7-74.5 16.7-18.8 38-25.3 62.5-20 5.9 1.3 11.4 4.4 17.2 6.8 2.3-1.4 5.1-3.2 8-4.7 8.4-4.3 17.4-7 26.7-9 14.7-3.1 29.5-4.9 44.5-1.3v-.5c-.5-.4-1.2-.8-1.7-1.4zM316.7 397.6c-39.4-33-22.8-19.5-42.7-35.6-.8.9 0-.2-1.9 3-11.2 19.1-25.5 35.3-44 47.6-10.3 6.8-21.5 11.8-34.1 11.8-21.6 0-38.2-9.5-49.4-27.8-12-19.5-13.3-40.7-8.2-62.6 7.8-33.8 30.1-55.2 38.6-64.3-18.7-6.2-33 1.7-46.4 13.9.8-13.9 4.3-26.2 11.8-37.3-24.3 10.6-45.9 25-64.8 43.9-.3-5.8 5.4-43.7 5.6-44.7.3-2.7-.6-5.3-3-7.4-24.2 24.7-44.5 51.8-56.1 84.6 7.4-5.9 14.9-11.4 23.6-16.2-8.3 22.3-19.6 52.8-7.8 101.1 4.6 19 11.9 36.8 24.1 52.3 2.9 3.7 6.3 6.9 9.5 10.3.2-.2.4-.3.6-.5-1.4-7-2.2-14.1-1.5-21.9 2.2 3.2 3.9 6 5.9 8.6 12.6 16 28.7 27.4 47.2 35.6 25 11.3 51.1 13.3 77.9 8.6 54.9-9.7 90.7-48.6 116-98.8 1-1.8.6-2.9-.9-4.2zm172-46.4c-9.5-3.1-22.2-4.2-28.7-2.9 9.9 4 14.1 6.6 18.8 12 12.6 14.4 10.4 34.7-5.4 45.6-11.7 8.1-24.9 10.5-38.9 9.1-1.2-.1-2.3-.4-3-.6 2.8-3.7 6-7 8.1-10.8 9.4-16.8 5.4-42.1-8.7-56.1-2.1-2.1-4.6-3.9-7-5.9-.3 1.3-.1 2.1.1 2.8 4.2 16.6-8.1 32.4-24.8 31.8-7.6-.3-13.9-3.8-19.6-8.5-19.5-16.1-39.1-32.1-58.5-48.3-5.9-4.9-12.5-8.1-20.1-8.7-4.6-.4-9.3-.6-13.9-.9-5.9-.4-8.8-2.8-10.4-8.4-.9-3.4-1.5-6.8-2.2-10.2-1.5-8.1-6.2-13-14.3-14.2-4.4-.7-8.9-1-13.3-1.5-13-1.4-19.8-7.4-22.6-20.3-5 11-1.6 22.4 7.3 29.9 4.5 3.8 9.3 7.3 13.8 11.2 4.6 3.8 7.4 8.7 7.9 14.8.4 4.7.8 9.5 1.8 14.1 2.2 10.6 8.9 18.4 17 25.1 16.5 13.7 33 27.3 49.5 41.1 17.9 15 13.9 32.8 13 56-.9 22.9 12.2 42.9 33.5 51.2 1 .4 2 .6 3.6 1.1-15.7-18.2-10.1-44.1.7-52.3.3 2.2.4 4.3.9 6.4 9.4 44.1 45.4 64.2 85 56.9 16-2.9 30.6-8.9 42.9-19.8 2-1.8 3.7-4.1 5.9-6.5-19.3 4.6-35.8.1-50.9-10.6.7-.3 1.3-.3 1.9-.3 21.3 1.8 40.6-3.4 57-17.4 19.5-16.6 26.6-42.9 17.4-66-8.3-20.1-23.6-32.3-43.8-38.9zM99.4 179.3c-5.3-9.2-13.2-15.6-22.1-21.3 13.7-.5 26.6.2 39.6 3.7-7-12.2-8.5-24.7-5-38.7 5.3 11.9 13.7 20.1 23.6 26.8 19.7 13.2 35.7 19.6 46.7 30.2 3.4 3.3 6.3 7.1 9.6 10.9-.8-2.1-1.4-4.1-2.2-6-5-10.6-13-18.6-22.6-25-1.8-1.2-2.8-2.5-3.4-4.5-3.3-12.5-3-25.1-.7-37.6 1-5.5 2.8-10.9 4.5-16.3.8-2.4 2.3-4.6 4-6.6.6 6.9 0 25.5 19.6 46 10.8 11.3 22.4 21.9 33.9 32.7 9 8.5 18.3 16.7 25.5 26.8 1.1 1.6 2.2 3.3 3.8 4.7-5-13-14.2-24.1-24.2-33.8-9.6-9.3-19.4-18.4-29.2-27.4-3.3-3-4.6-6.7-5.1-10.9-1.2-10.4 0-20.6 4.3-30.2.5-1 1.1-2 1.9-3.3.5 4.2.6 7.9 1.4 11.6 4.8 23.1 20.4 36.3 49.3 63.5 10 9.4 19.3 19.2 25.6 31.6 4.8 9.3 7.3 19 5.7 29.6-.1.6.5 1.7 1.1 2 6.2 2.6 10 6.9 9.7 14.3 7.7-2.6 12.5-8 16.4-14.5 4.2 20.2-9.1 50.3-27.2 58.7.4-4.5 5-23.4-16.5-27.7-6.8-1.3-12.8-1.3-22.9-2.1 4.7-9 10.4-20.6.5-22.4-24.9-4.6-52.8 1.9-57.8 4.6 8.2.4 16.3 1 23.5 3.3-2 6.5-4 12.7-5.8 18.9-1.9 6.5 2.1 14.6 9.3 9.6 1.2-.9 2.3-1.9 3.3-2.7-3.1 17.9-2.9 15.9-2.8 18.3.3 10.2 9.5 7.8 15.7 7.3-2.5 11.8-29.5 27.3-45.4 25.8 7-4.7 12.7-10.3 15.9-17.9-6.5.8-12.9 1.6-19.2 2.4l-.3-.9c4.7-3.4 8-7.8 10.2-13.1 8.7-21.1-3.6-38-25-39.9-9.1-.8-17.8.8-25.9 5.5 6.2-15.6 17.2-26.6 32.6-34.5-15.2-4.3-8.9-2.7-24.6-6.3 14.6-9.3 30.2-13.2 46.5-14.6-5.2-3.2-48.1-3.6-70.2 20.9 7.9 1.4 15.5 2.8 23.2 4.2-23.8 7-44 19.7-62.4 35.6 1.1-4.8 2.7-9.5 3.3-14.3.6-4.5.8-9.2.1-13.6-1.5-9.4-8.9-15.1-19.7-16.3-7.9-.9-15.6.1-23.3 1.3-.9.1-1.7.3-2.9 0 15.8-14.8 36-21.7 53.1-33.5 6-4.5 6.8-8.2 3-14.9zm128.4 26.8c3.3 16 12.6 25.5 23.8 24.3-4.6-11.3-12.1-19.5-23.8-24.3z" ], + dashcube: [ 448, 512, [], "f210", "M326.6 104H110.4c-51.1 0-91.2 43.3-91.2 93.5V427c0 50.5 40.1 85 91.2 85h227.2c51.1 0 91.2-34.5 91.2-85V0L326.6 104zM153.9 416.5c-17.7 0-32.4-15.1-32.4-32.8V240.8c0-17.7 14.7-32.5 32.4-32.5h140.7c17.7 0 32 14.8 32 32.5v123.5l51.1 52.3H153.9z" ], + delicious: [ 448, 512, [], "f1a5", "M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1.5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3 1 1.1 2.1 2.2 3.3 3.3 5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12zM416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192v176z" ], + deploydog: [ 512, 512, [], "f38e", "M382.2 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.6 0-33.2 16.4-33.2 32.6zM188.5 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.7 0-33.2 16.4-33.2 32.6zM448 96c17.5 0 32 14.4 32 32v256c0 17.5-14.4 32-32 32H64c-17.5 0-32-14.4-32-32V128c0-17.5 14.4-32 32-32h384m0-32H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h384c35.2 0 64-28.8 64-64V128c0-35.2-28.8-64-64-64z" ], + deskpro: [ 480, 512, [], "f38f", "M205.9 512l31.1-38.4c12.3-.2 25.6-1.4 36.5-6.6 38.9-18.6 38.4-61.9 38.3-63.8-.1-5-.8-4.4-28.9-37.4H362c-.2 50.1-7.3 68.5-10.2 75.7-9.4 23.7-43.9 62.8-95.2 69.4-8.7 1.1-32.8 1.2-50.7 1.1zm200.4-167.7c38.6 0 58.5-13.6 73.7-30.9l-175.5-.3-17.4 31.3 119.2-.1zm-43.6-223.9v168.3h-73.5l-32.7 55.5H250c-52.3 0-58.1-56.5-58.3-58.9-1.2-13.2-21.3-11.6-20.1 1.8 1.4 15.8 8.8 40 26.4 57.1h-91c-25.5 0-110.8-26.8-107-114V16.9C0 .9 9.7.3 15 .1h82c.2 0 .3.1.5.1 4.3-.4 50.1-2.1 50.1 43.7 0 13.3 20.2 13.4 20.2 0 0-18.2-5.5-32.8-15.8-43.7h84.2c108.7-.4 126.5 79.4 126.5 120.2zm-132.5 56l64 29.3c13.3-45.5-42.2-71.7-64-29.3z" ], + deviantart: [ 320, 512, [], "f1bd", "M320 93.2l-98.2 179.1 7.4 9.5H320v127.7H159.1l-13.5 9.2-43.7 84c-.3 0-8.6 8.6-9.2 9.2H0v-93.2l93.2-179.4-7.4-9.2H0V102.5h156l13.5-9.2 43.7-84c.3 0 8.6-8.6 9.2-9.2H320v93.1z" ], + digg: [ 512, 512, [], "f1a6", "M81.7 172.3H0v174.4h132.7V96h-51v76.3zm0 133.4H50.9v-92.3h30.8v92.3zm297.2-133.4v174.4h81.8v28.5h-81.8V416H512V172.3H378.9zm81.8 133.4h-30.8v-92.3h30.8v92.3zm-235.6 41h82.1v28.5h-82.1V416h133.3V172.3H225.1v174.4zm51.2-133.3h30.8v92.3h-30.8v-92.3zM153.3 96h51.3v51h-51.3V96zm0 76.3h51.3v174.4h-51.3V172.3z" ], + "digital-ocean": [ 512, 512, [], "f391", "M256 504v-96.1c101.8 0 180.8-100.9 141.7-208-14.3-39.6-46.1-71.4-85.8-85.7-107.1-38.8-208.1 39.9-208.1 141.7H8C8 93.7 164.9-32.8 335 20.3c74.2 23.3 133.6 82.4 156.6 156.6C544.8 347.2 418.6 504 256 504zm.3-191.4h-95.6v95.6h95.6v-95.6zm-95.6 95.6H87v73.6h73.7v-73.6zM87 346.6H25.4v61.6H87v-61.6z" ], + discord: [ 448, 512, [], "f392", "M297.216 243.2c0 15.616-11.52 28.416-26.112 28.416-14.336 0-26.112-12.8-26.112-28.416s11.52-28.416 26.112-28.416c14.592 0 26.112 12.8 26.112 28.416zm-119.552-28.416c-14.592 0-26.112 12.8-26.112 28.416s11.776 28.416 26.112 28.416c14.592 0 26.112-12.8 26.112-28.416.256-15.616-11.52-28.416-26.112-28.416zM448 52.736V512c-64.494-56.994-43.868-38.128-118.784-107.776l13.568 47.36H52.48C23.552 451.584 0 428.032 0 398.848V52.736C0 23.552 23.552 0 52.48 0h343.04C424.448 0 448 23.552 448 52.736zm-72.96 242.688c0-82.432-36.864-149.248-36.864-149.248-36.864-27.648-71.936-26.88-71.936-26.88l-3.584 4.096c43.52 13.312 63.744 32.512 63.744 32.512-60.811-33.329-132.244-33.335-191.232-7.424-9.472 4.352-15.104 7.424-15.104 7.424s21.248-20.224 67.328-33.536l-2.56-3.072s-35.072-.768-71.936 26.88c0 0-36.864 66.816-36.864 149.248 0 0 21.504 37.12 78.08 38.912 0 0 9.472-11.52 17.152-21.248-32.512-9.728-44.8-30.208-44.8-30.208 3.766 2.636 9.976 6.053 10.496 6.4 43.21 24.198 104.588 32.126 159.744 8.96 8.96-3.328 18.944-8.192 29.44-15.104 0 0-12.8 20.992-46.336 30.464 7.68 9.728 16.896 20.736 16.896 20.736 56.576-1.792 78.336-38.912 78.336-38.912z" ], + discourse: [ 448, 512, [], "f393", "M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z" ], + dochub: [ 416, 512, [], "f394", "M397.9 160H256V19.6L397.9 160zM304 192v130c0 66.8-36.5 100.1-113.3 100.1H96V84.8h94.7c12 0 23.1.8 33.1 2.5v-84C212.9 1.1 201.4 0 189.2 0H0v512h189.2C329.7 512 400 447.4 400 318.1V192h-96z" ], + docker: [ 640, 512, [], "f395", "M349.9 236.3h-66.1v-59.4h66.1v59.4zm0-204.3h-66.1v60.7h66.1V32zm78.2 144.8H362v59.4h66.1v-59.4zm-156.3-72.1h-66.1v60.1h66.1v-60.1zm78.1 0h-66.1v60.1h66.1v-60.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4.4 67.6.1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1l-13.3-8.9zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm-78.1-72.1h-66.1v60.1h66.1v-60.1z" ], + draft2digital: [ 480, 512, [], "f396", "M369.9 425.4V371l47.1 27.2-47.1 27.2zM82.4 380.6c25.5-27.3 97.7-104.7 150.9-170 35.1-43.1 40.3-82.4 28.4-112.7-7.4-18.8-17.5-30.2-24.3-35.7 45.3 2.1 68 23.4 82.2 38.3 0 0 42.4 48.2 5.8 113.3-37 65.9-110.9 147.5-128.5 166.7H82.4zm51.8-219.2c0 12.4-10 22.4-22.4 22.4-12.4 0-22.4-10-22.4-22.4 0-12.4 10-22.4 22.4-22.4 12.4 0 22.4 10.1 22.4 22.4M336 315.9v64.7h-91.3c30.8-35 81.8-95.9 111.8-149.3 35.2-62.6 16.1-123.4-12.8-153.3-4.4-4.6-62.2-62.9-166-41.2-59.1 12.4-89.4 43.4-104.3 67.3-13.1 20.9-17 39.8-18.2 47.7-5.5 33 19.4 67.1 56.7 67.1 31.7 0 57.3-25.7 57.3-57.4 0-27.1-19.7-52.1-48-56.8 1.8-7.3 17.7-21.1 26.3-24.7 41.1-17.3 78 5.2 83.3 33.5 8.3 44.3-37.1 90.4-69.7 127.6C84.5 328.1 18.3 396.8 0 415.9l336-.1V480l144-81.9-144-82.2z" ], + dribbble: [ 512, 512, [], "f17d", "M256 8C119.252 8 8 119.252 8 256s111.252 248 248 248 248-111.252 248-248S392.748 8 256 8zm163.97 114.366c29.503 36.046 47.369 81.957 47.835 131.955-6.984-1.477-77.018-15.682-147.502-6.818-5.752-14.041-11.181-26.393-18.617-41.614 78.321-31.977 113.818-77.482 118.284-83.523zM396.421 97.87c-3.81 5.427-35.697 48.286-111.021 76.519-34.712-63.776-73.185-116.168-79.04-124.008 67.176-16.193 137.966 1.27 190.061 47.489zm-230.48-33.25c5.585 7.659 43.438 60.116 78.537 122.509-99.087 26.313-186.36 25.934-195.834 25.809C62.38 147.205 106.678 92.573 165.941 64.62zM44.17 256.323c0-2.166.043-4.322.108-6.473 9.268.19 111.92 1.513 217.706-30.146 6.064 11.868 11.857 23.915 17.174 35.949-76.599 21.575-146.194 83.527-180.531 142.306C64.794 360.405 44.17 310.73 44.17 256.323zm81.807 167.113c22.127-45.233 82.178-103.622 167.579-132.756 29.74 77.283 42.039 142.053 45.189 160.638-68.112 29.013-150.015 21.053-212.768-27.882zm248.38 8.489c-2.171-12.886-13.446-74.897-41.152-151.033 66.38-10.626 124.7 6.768 131.947 9.055-9.442 58.941-43.273 109.844-90.795 141.978z" ], + "dribbble-square": [ 448, 512, [], "f397", "M90.2 228.2c8.9-42.4 37.4-77.7 75.7-95.7 3.6 4.9 28 38.8 50.7 79-64 17-120.3 16.8-126.4 16.7zM314.6 154c-33.6-29.8-79.3-41.1-122.6-30.6 3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4zM140.1 364c40.5 31.6 93.3 36.7 137.3 18-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6zm98.8-108.2c-3.4-7.8-7.2-15.5-11.1-23.2C159.6 253 93.4 252.2 87.4 252c0 1.4-.1 2.8-.1 4.2 0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8zm34.9 16.3c17.9 49.1 25.1 89.1 26.5 97.4 30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8zm-20.3-48.4c4.8 9.8 8.3 17.8 12 26.8 45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 176c0-88.2-71.8-160-160-160S64 167.8 64 256s71.8 160 160 160 160-71.8 160-160z" ], + dropbox: [ 528, 512, [], "f16b", "M264.4 116.3l-132 84.3 132 84.3-132 84.3L0 284.1l132.3-84.3L0 116.3 132.3 32l132.1 84.3zM131.6 395.7l132-84.3 132 84.3-132 84.3-132-84.3zm132.8-111.6l132-84.3-132-83.6L395.7 32 528 116.3l-132.3 84.3L528 284.8l-132.3 84.3-131.3-85z" ], + drupal: [ 448, 512, [], "f1a9", "M319.5 114.7c-22.2-14-43.5-19.5-64.7-33.5-13-8.8-31.3-30-46.5-48.3-2.7 29.3-11.5 41.2-22 49.5-21.3 17-34.8 22.2-53.5 32.3C117 123 32 181.5 32 290.5 32 399.7 123.8 480 225.8 480 327.5 480 416 406 416 294c0-112.3-83-171-96.5-179.3zm2.5 325.6c-20.1 20.1-90.1 28.7-116.7 4.2-4.8-4.8.3-12 6.5-12 0 0 17 13.3 51.5 13.3 27 0 46-7.7 54.5-14 6.1-4.6 8.4 4.3 4.2 8.5zm-54.5-52.6c8.7-3.6 29-3.8 36.8 1.3 4.1 2.8 16.1 18.8 6.2 23.7-8.4 4.2-1.2-15.7-26.5-15.7-14.7 0-19.5 5.2-26.7 11-7 6-9.8 8-12.2 4.7-6-8.2 15.9-22.3 22.4-25zM360 405c-15.2-1-45.5-48.8-65-49.5-30.9-.9-104.1 80.7-161.3 42-38.8-26.6-14.6-104.8 51.8-105.2 49.5-.5 83.8 49 108.5 48.5 21.3-.3 61.8-41.8 81.8-41.8 48.7 0 23.3 109.3-15.8 106z" ], + dyalog: [ 416, 512, [], "f399", "M0 32v119.2h64V96h107.2C284.6 96 352 176.2 352 255.9 352 332 293.4 416 171.2 416H0v64h171.2C331.9 480 416 367.3 416 255.9c0-58.7-22.1-113.4-62.3-154.3C308.9 56 245.7 32 171.2 32H0z" ], + earlybirds: [ 480, 512, [], "f39a", "M313.2 47.5c1.2-13 21.3-14 36.6-8.7.9.3 26.2 9.7 19 15.2-27.9-7.4-56.4 18.2-55.6-6.5zm-201 6.9c30.7-8.1 62 20 61.1-7.1-1.3-14.2-23.4-15.3-40.2-9.6-1 .3-28.7 10.5-20.9 16.7zM319.4 160c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-159.7 0c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm318.5 163.2c-9.9 24-40.7 11-63.9-1.2-13.5 69.1-58.1 111.4-126.3 124.2.3.9-2-.1 24 1 33.6 1.4 63.8-3.1 97.4-8-19.8-13.8-11.4-37.1-9.8-38.1 1.4-.9 14.7 1.7 21.6 11.5 8.6-12.5 28.4-14.8 30.2-13.6 1.6 1.1 6.6 20.9-6.9 34.6 4.7-.9 8.2-1.6 9.8-2.1 2.6-.8 17.7 11.3 3.1 13.3-14.3 2.3-22.6 5.1-47.1 10.8-45.9 10.7-85.9 11.8-117.7 12.8l1 11.6c3.8 18.1-23.4 24.3-27.6 6.2.8 17.9-27.1 21.8-28.4-1l-.5 5.3c-.7 18.4-28.4 17.9-28.3-.6-7.5 13.5-28.1 6.8-26.4-8.5l1.2-12.4c-36.7.9-59.7 3.1-61.8 3.1-20.9 0-20.9-31.6 0-31.6 2.4 0 27.7 1.3 63.2 2.8-61.1-15.5-103.7-55-114.9-118.2-25 12.8-57.5 26.8-68.2.8-10.5-25.4 21.5-42.6 66.8-73.4.7-6.6 1.6-13.3 2.7-19.8-14.4-19.6-11.6-36.3-16.1-60.4-16.8 2.4-23.2-9.1-23.6-23.1.3-7.3 2.1-14.9 2.4-15.4 1.1-1.8 10.1-2 12.7-2.6 6-31.7 50.6-33.2 90.9-34.5 19.7-21.8 45.2-41.5 80.9-48.3C203.3 29 215.2 8.5 216.2 8c1.7-.8 21.2 4.3 26.3 23.2 5.2-8.8 18.3-11.4 19.6-10.7 1.1.6 6.4 15-4.9 25.9 40.3 3.5 72.2 24.7 96 50.7 36.1 1.5 71.8 5.9 77.1 34 2.7.6 11.6.8 12.7 2.6.3.5 2.1 8.1 2.4 15.4-.5 13.9-6.8 25.4-23.6 23.1-3.2 17.3-2.7 32.9-8.7 47.7 2.4 11.7 4 23.8 4.8 36.4 37 25.4 70.3 42.5 60.3 66.9zM207.4 159.9c.9-44-37.9-42.2-78.6-40.3-21.7 1-38.9 1.9-45.5 13.9-11.4 20.9 5.9 92.9 23.2 101.2 9.8 4.7 73.4 7.9 86.3-7.1 8.2-9.4 15-49.4 14.6-67.7zm52 58.3c-4.3-12.4-6-30.1-15.3-32.7-2-.5-9-.5-11 0-10 2.8-10.8 22.1-17 37.2 15.4 0 19.3 9.7 23.7 9.7 4.3 0 6.3-11.3 19.6-14.2zm135.7-84.7c-6.6-12.1-24.8-12.9-46.5-13.9-40.2-1.9-78.2-3.8-77.3 40.3-.5 18.3 5 58.3 13.2 67.8 13 14.9 76.6 11.8 86.3 7.1 15.8-7.6 36.5-78.9 24.3-101.3z" ], + ebay: [ 640, 512, [], "f4f4", "M405.2 263.8c-29.1.9-47.2 6.2-47.2 25.3 0 12.4 9.9 25.8 35 25.8 33.7 0 51.6-18.4 51.6-48.4v-3.3c-11.8 0-26.3.1-39.4.6m71.5 39.7c0 9.3.3 18.6 1 26.8h-29.8c-.8-6.9-1.1-13.6-1.1-20.2-16.1 19.8-35.3 25.5-61.9 25.5-39.5 0-60.6-20.9-60.6-45 0-35 28.8-47.3 78.6-48.4 13.7-.3 29-.4 41.7-.4v-3.4c0-23.4-15-33-41-33-19.3 0-33.6 8-35 21.8h-33.7c3.6-34.4 39.7-43.1 71.5-43.1 38.1 0 70.3 13.5 70.3 53.8v65.6zm-349-56.8c-2.3-54.7-87.5-56.6-94.4 0h94.4zm-95 21.4c3.5 58.3 79.2 57.4 91.2 21.6H157c-6.4 34.4-43 46.1-74.4 46.1-57.2 0-82.5-31.5-82.5-74 0-46.8 26.2-77.6 83-77.6 45.3 0 78.4 23.7 78.4 75.4v8.5H32.7zm211 45.7c29.8 0 50.2-21.5 50.2-53.8 0-32.4-20.4-53.8-50.2-53.8-29.6 0-50.2 21.4-50.2 53.8 0 32.3 20.6 53.8 50.2 53.8m-82.2-186h32.1v80.6c15.7-18.7 37.4-24.2 58.7-24.2 35.7 0 75.4 24.1 75.4 76.2 0 43.6-31.5 75.4-76 75.4-23.3 0-45.1-8.3-58.7-24.9 0 6.6-.4 13.2-1.1 19.5h-31.5c.5-10.2 1.1-22.8 1.1-33.1V127.8zM640 189.5l-99.2 194.8h-35.9l28.5-54.1-74.6-140.7h37.5l54.9 109.9L606 189.5h34z" ], + edge: [ 512, 512, [], "f282", "M25.714 228.163c.111-.162.23-.323.342-.485-.021.162-.045.323-.065.485h-.277zm460.572 15.508c0-44.032-7.754-84.465-28.801-122.405C416.498 47.879 343.912 8.001 258.893 8.001 118.962 7.724 40.617 113.214 26.056 227.679c42.429-61.312 117.073-121.376 220.375-124.966 0 0 109.666 0 99.419 104.957H169.997c6.369-37.386 18.554-58.986 34.339-78.926-75.048 34.893-121.85 96.096-120.742 188.315.83 71.448 50.124 144.836 120.743 171.976 83.357 31.847 192.776 7.2 240.132-21.324V363.307c-80.864 56.494-270.871 60.925-272.255-67.572h314.073v-52.064z" ], + elementor: [ 448, 512, [], "f430", "M425.6 32H22.4C10 32 0 42 0 54.4v403.2C0 470 10 480 22.4 480h403.2c12.4 0 22.4-10 22.4-22.4V54.4C448 42 438 32 425.6 32M164.3 355.5h-39.8v-199h39.8v199zm159.3 0H204.1v-39.8h119.5v39.8zm0-79.6H204.1v-39.8h119.5v39.8zm0-79.7H204.1v-39.8h119.5v39.8z" ], + ember: [ 640, 512, [], "f423", "M639.9 254.6c-1.1-10.7-10.7-6.8-10.7-6.8s-15.6 12.1-29.3 10.7c-13.7-1.3-9.4-32-9.4-32s3-28.1-5.1-30.4c-8.1-2.4-18 7.3-18 7.3s-12.4 13.7-18.3 31.2l-1.6.5s1.9-30.6-.3-37.6c-1.6-3.5-16.4-3.2-18.8 3s-14.2 49.2-15 67.2c0 0-23.1 19.6-43.3 22.8s-25-9.4-25-9.4 54.8-15.3 52.9-59.1c-1.9-43.8-44.2-27.6-49-24-4.6 3.5-29.4 18.4-36.6 59.7-.2 1.4-.7 7.5-.7 7.5s-21.2 14.2-33 18c0 0 33-55.6-7.3-80.9-18.3-11-32.8 12.1-32.8 12.1s54.5-60.7 42.5-112c-5.8-24.4-18-27.1-29.2-23.1-17 6.7-23.5 16.7-23.5 16.7s-22 32-27.1 79.5-12.6 105.1-12.6 105.1-10.5 10.2-20.2 10.7-5.4-28.7-5.4-28.7 7.5-44.6 7-52.1-1.1-11.6-9.9-14.2c-8.9-2.7-18.5 8.6-18.5 8.6s-25.5 38.7-27.7 44.6l-1.3 2.4-1.3-1.6s18-52.7.8-53.5c-17.2-.8-28.5 18.8-28.5 18.8s-19.6 32.8-20.4 36.5l-1.3-1.6s8.1-38.2 6.4-47.6c-1.6-9.4-10.5-7.5-10.5-7.5s-11.3-1.3-14.2 5.9-13.7 55.3-15 70.7c0 0-28.2 20.2-46.8 20.4-18.5.3-16.7-11.8-16.7-11.8s68-23.3 49.4-69.2c-8.3-11.8-18-15.5-31.7-15.3-13.7.3-30.3 8.6-41.3 33.3-5.3 11.8-6.8 23-7.8 31.5 0 0-12.3 2.4-18.8-2.9s-10 0-10 0-11.2 14-.1 18.3 28.1 6.1 28.1 6.1c1.6 7.5 6.2 19.5 19.6 29.7 20.2 15.3 58.8-1.3 58.8-1.3l15.9-8.8s.5 14.6 12.1 16.7c11.6 2.1 16.4 1 36.5-47.9 11.8-25 12.6-23.6 12.6-23.6l1.3-.3s-9.1 46.8-5.6 59.7C187.7 319.4 203 318 203 318s8.3 2.4 15-21.2c6.7-23.6 19.6-49.9 19.6-49.9h1.6s-5.6 48.1 3 63.7c8.6 15.6 30.9 5.3 30.9 5.3s15.6-7.8 18-10.2c0 0 18.5 15.8 44.6 12.9 58.3-11.5 79.1-25.9 79.1-25.9s10 24.4 41.1 26.7c35.5 2.7 54.8-18.6 54.8-18.6s-.3 13.5 12.1 18.6c12.4 5.1 20.7-22.8 20.7-22.8l20.7-57.2h1.9s1.1 37.3 21.5 43.2 47-13.7 47-13.7 6.4-3.5 5.3-14.3zm-578 5.3c.8-32 21.8-45.9 29-39 7.3 7 4.6 22-9.1 31.4-13.7 9.5-19.9 7.6-19.9 7.6zm272.8-123.8s19.1-49.7 23.6-25.5-40 96.2-40 96.2c.5-16.2 16.4-70.7 16.4-70.7zm22.8 138.4c-12.6 33-43.3 19.6-43.3 19.6s-3.5-11.8 6.4-44.9 33.3-20.2 33.3-20.2 16.2 12.4 3.6 45.5zm84.6-14.6s-3-10.5 8.1-30.6c11-20.2 19.6-9.1 19.6-9.1s9.4 10.2-1.3 25.5-26.4 14.2-26.4 14.2z" ], + empire: [ 496, 512, [], "f1d1", "M287.6 54.2c-10.8-2.2-22.1-3.3-33.5-3.6V32.4c78.1 2.2 146.1 44 184.6 106.6l-15.8 9.1c-6.1-9.7-12.7-18.8-20.2-27.1l-18 15.5c-26-29.6-61.4-50.7-101.9-58.4l4.8-23.9zM53.4 322.4l23-7.7c-6.4-18.3-10-38.2-10-58.7s3.3-40.4 9.7-58.7l-22.7-7.7c3.6-10.8 8.3-21.3 13.6-31l-15.8-9.1C34 181 24.1 217.5 24.1 256s10 75 27.1 106.6l15.8-9.1c-5.3-10-9.7-20.3-13.6-31.1zM213.1 434c-40.4-8-75.8-29.1-101.9-58.7l-18 15.8c-7.5-8.6-14.4-17.7-20.2-27.4l-16 9.4c38.5 62.3 106.8 104.3 184.9 106.6v-18.3c-11.3-.3-22.7-1.7-33.5-3.6l4.7-23.8zM93.3 120.9l18 15.5c26-29.6 61.4-50.7 101.9-58.4l-4.7-23.8c10.8-2.2 22.1-3.3 33.5-3.6V32.4C163.9 34.6 95.9 76.4 57.4 139l15.8 9.1c6-9.7 12.6-18.9 20.1-27.2zm309.4 270.2l-18-15.8c-26 29.6-61.4 50.7-101.9 58.7l4.7 23.8c-10.8 1.9-22.1 3.3-33.5 3.6v18.3c78.1-2.2 146.4-44.3 184.9-106.6l-16.1-9.4c-5.7 9.7-12.6 18.8-20.1 27.4zM496 256c0 137-111 248-248 248S0 393 0 256 111 8 248 8s248 111 248 248zm-12.2 0c0-130.1-105.7-235.8-235.8-235.8S12.2 125.9 12.2 256 117.9 491.8 248 491.8 483.8 386.1 483.8 256zm-39-106.6l-15.8 9.1c5.3 9.7 10 20.2 13.6 31l-22.7 7.7c6.4 18.3 9.7 38.2 9.7 58.7s-3.6 40.4-10 58.7l23 7.7c-3.9 10.8-8.3 21-13.6 31l15.8 9.1C462 331 471.9 294.5 471.9 256s-9.9-75-27.1-106.6zm-183 177.7c16.3-3.3 30.4-11.6 40.7-23.5l51.2 44.8c11.9-13.6 21.3-29.3 27.1-46.8l-64.2-22.1c2.5-7.5 3.9-15.2 3.9-23.5s-1.4-16.1-3.9-23.5l64.5-22.1c-6.1-17.4-15.5-33.2-27.4-46.8l-51.2 44.8c-10.2-11.9-24.4-20.5-40.7-23.8l13.3-66.4c-8.6-1.9-17.7-2.8-27.1-2.8-9.4 0-18.5.8-27.1 2.8l13.3 66.4c-16.3 3.3-30.4 11.9-40.7 23.8l-51.2-44.8c-11.9 13.6-21.3 29.3-27.4 46.8l64.5 22.1c-2.5 7.5-3.9 15.2-3.9 23.5s1.4 16.1 3.9 23.5l-64.2 22.1c5.8 17.4 15.2 33.2 27.1 46.8l51.2-44.8c10.2 11.9 24.4 20.2 40.7 23.5l-13.3 66.7c8.6 1.7 17.7 2.8 27.1 2.8 9.4 0 18.5-1.1 27.1-2.8l-13.3-66.7z" ], + envira: [ 448, 512, [], "f299", "M0 32c477.6 0 366.6 317.3 367.1 366.3L448 480h-26l-70.4-71.2c-39 4.2-124.4 34.5-214.4-37C47 300.3 52 214.7 0 32zm79.7 46c-49.7-23.5-5.2 9.2-5.2 9.2 45.2 31.2 66 73.7 90.2 119.9 31.5 60.2 79 139.7 144.2 167.7 65 28 34.2 12.5 6-8.5-28.2-21.2-68.2-87-91-130.2-31.7-60-61-118.6-144.2-158.1z" ], + erlang: [ 640, 512, [], "f39d", "M21.7 246.4c-.1 86.8 29 159.5 78.7 212.1H0v-405h87.2c-41.5 50.2-65.6 116.2-65.5 192.9zM640 53.6h-83.6c31.4 42.7 48.7 97.5 46.2 162.7.5 6 .5 11.7 0 24.1H230.2c-.2 109.7 38.9 194.9 138.6 195.3 68.5-.3 118-51 151.9-106.1l96.4 48.2c-17.4 30.9-36.5 57.8-57.9 80.8H640v-405zm-80.8 405s0-.1 0 0h-.2.2zm-3.1-405h.3l-.1-.1-.2.1zm-230.7 9.6c-45.9.1-85.1 33.5-89.2 83.2h169.9c-1.1-49.7-34.5-83.1-80.7-83.2z" ], + ethereum: [ 320, 512, [], "f42e", "M311.9 260.8L160 353.6 8 260.8 160 0l151.9 260.8zM160 383.4L8 290.6 160 512l152-221.4-152 92.8z" ], + etsy: [ 384, 512, [], "f2d7", "M384 348c-1.75 10.75-13.75 110-15.5 132-117.879-4.299-219.895-4.743-368.5 0v-25.5c45.457-8.948 60.627-8.019 61-35.25 1.793-72.322 3.524-244.143 0-322-1.029-28.46-12.13-26.765-61-36v-25.5c73.886 2.358 255.933 8.551 362.999-3.75-3.5 38.25-7.75 126.5-7.75 126.5H332C320.947 115.665 313.241 68 277.25 68h-137c-10.25 0-10.75 3.5-10.75 9.75V241.5c58 .5 88.5-2.5 88.5-2.5 29.77-.951 27.56-8.502 40.75-65.251h25.75c-4.407 101.351-3.91 61.829-1.75 160.25H257c-9.155-40.086-9.065-61.045-39.501-61.5 0 0-21.5-2-88-2v139c0 26 14.25 38.25 44.25 38.25H263c63.636 0 66.564-24.996 98.751-99.75H384z" ], + expeditedssl: [ 496, 512, [], "f23e", "M248 43.4C130.6 43.4 35.4 138.6 35.4 256S130.6 468.6 248 468.6 460.6 373.4 460.6 256 365.4 43.4 248 43.4zm-97.4 132.9c0-53.7 43.7-97.4 97.4-97.4s97.4 43.7 97.4 97.4v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6c0-82.1-124-82.1-124 0v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6zM389.7 380c0 9.7-8 17.7-17.7 17.7H124c-9.7 0-17.7-8-17.7-17.7V238.3c0-9.7 8-17.7 17.7-17.7h248c9.7 0 17.7 8 17.7 17.7V380zm-248-137.3v132.9c0 2.5-1.9 4.4-4.4 4.4h-8.9c-2.5 0-4.4-1.9-4.4-4.4V242.7c0-2.5 1.9-4.4 4.4-4.4h8.9c2.5 0 4.4 1.9 4.4 4.4zm141.7 48.7c0 13-7.2 24.4-17.7 30.4v31.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-31.6c-10.5-6.1-17.7-17.4-17.7-30.4 0-19.7 15.8-35.4 35.4-35.4s35.5 15.8 35.5 35.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 478.3C121 486.3 17.7 383 17.7 256S121 25.7 248 25.7 478.3 129 478.3 256 375 486.3 248 486.3z" ], + facebook: [ 448, 512, [], "f09a", "M448 56.7v398.5c0 13.7-11.1 24.7-24.7 24.7H309.1V306.5h58.2l8.7-67.6h-67v-43.2c0-19.6 5.4-32.9 33.5-32.9h35.8v-60.5c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9h-58.4v67.6h58.4V480H24.7C11.1 480 0 468.9 0 455.3V56.7C0 43.1 11.1 32 24.7 32h398.5c13.7 0 24.8 11.1 24.8 24.7z" ], + "facebook-f": [ 264, 512, [], "f39e", "M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229" ], + "facebook-messenger": [ 448, 512, [], "f39f", "M224 32C15.9 32-77.5 278 84.6 400.6V480l75.7-42c142.2 39.8 285.4-59.9 285.4-198.7C445.8 124.8 346.5 32 224 32zm23.4 278.1L190 250.5 79.6 311.6l121.1-128.5 57.4 59.6 110.4-61.1-121.1 128.5z" ], + "facebook-square": [ 448, 512, [], "f082", "M448 80v352c0 26.5-21.5 48-48 48h-85.3V302.8h60.6l8.7-67.6h-69.3V192c0-19.6 5.4-32.9 33.5-32.9H384V98.7c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9H184v67.6h60.9V480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z" ], + firefox: [ 480, 512, [], "f269", "M478.1 235.3c-.7-4.5-1.4-7.1-1.4-7.1s-1.8 2-4.7 5.9c-.9-10.7-2.8-21.2-5.8-31.6-3.7-12.9-8.5-25.4-14.5-37.4-3.8-8-8.2-15.6-13.3-22.8-1.8-2.7-3.7-5.4-5.6-7.9-8.8-14.4-19-23.3-30.7-40-7.6-12.8-12.9-26.9-15.4-41.6-3.2 8.9-5.7 18-7.4 27.3-12.1-12.2-22.5-20.8-28.9-26.7C319.4 24.2 323 9.1 323 9.1S264.7 74.2 289.9 142c8.7 23 23.8 43.1 43.4 57.9 24.4 20.2 50.8 36 64.7 76.6-11.2-21.3-28.1-39.2-48.8-51.5 6.2 14.7 9.4 30.6 9.3 46.5 0 61-49.6 110.5-110.6 110.4-8.3 0-16.5-.9-24.5-2.8-9.5-1.8-18.7-4.9-27.4-9.3-12.9-7.8-24-18.1-32.8-30.3l-.2-.3 2 .7c4.6 1.6 9.2 2.8 14 3.7 18.7 4 38.3 1.7 55.6-6.6 17.5-9.7 28-16.9 36.6-14h.2c8.4 2.7 15-5.5 9-14-10.4-13.4-27.4-20-44.2-17-17.5 2.5-33.5 15-56.4 2.9-1.5-.8-2.9-1.6-4.3-2.5-1.6-.9 4.9 1.3 3.4.3-5-2.5-9.8-5.4-14.4-8.6-.3-.3 3.5 1.1 3.1.8-5.9-4-11-9.2-15-15.2-4.1-7.4-4.5-16.4-1-24.1 2.1-3.8 5.4-6.9 9.3-8.7 3 1.5 4.8 2.6 4.8 2.6s-1.3-2.5-2.1-3.8c.3-.1.5 0 .8-.2 2.6 1.1 8.3 4 11.4 5.8 2.1 1.1 3.8 2.7 5.2 4.7 0 0 1-.5.3-2.7-1.1-2.7-2.9-5-5.4-6.6h.2c2.3 1.2 4.5 2.6 6.6 4.1 1.9-4.4 2.8-9.2 2.6-14 .2-2.6-.2-5.3-1.1-7.8-.8-1.6.5-2.2 1.9-.5-.2-1.3-.7-2.5-1.2-3.7v-.1s.8-1.1 1.2-1.5c1-1 2.1-1.9 3.4-2.7 7.2-4.5 14.8-8.4 22.7-11.6 6.4-2.8 11.7-4.9 12.8-5.6 1.6-1 3.1-2.2 4.5-3.5 5.3-4.5 9-10.8 10.2-17.7.1-.9.2-1.8.3-2.8v-1.5c-.9-3.5-6.9-6.1-38.4-9.1-11.1-1.8-20-10.1-22.5-21.1v.1c-.4 1.1-.9 2.3-1.3 3.5.4-1.2.8-2.3 1.3-3.5v-.2c6-15.7 16.8-29.1 30.8-38.3.8-.7-3.2.2-2.4-.5 2.7-1.3 5.4-2.5 8.2-3.5 1.4-.6-6-3.4-12.6-2.7-4 .2-8 1.2-11.7 2.8 1.6-1.3 6.2-3.1 5.1-3.1-8.4 1.6-16.5 4.7-23.9 9 0-.8.1-1.5.5-2.2-5.9 2.5-11 6.5-15 11.5.1-.9.2-1.8.2-2.7-2.7 2-5.2 4.3-7.3 6.9l-.1.1c-17.4-6.7-36.3-8.3-54.6-4.7l-.2-.1h.2c-3.8-3.1-7.1-6.7-9.7-10.9l-.2.1-.4-.2c-1.2-1.8-2.4-3.8-3.7-6-.9-1.6-1.8-3.4-2.7-5.2 0-.1-.1-.2-.2-.2-.4 0-.6 1.7-.9 1.3v-.1c-3.2-8.3-4.7-17.2-4.4-26.2l-.2.1c-5.1 3.5-9 8.6-11.1 14.5-.9 2.1-1.6 3.3-2.2 4.5v-.5c.1-1.1.6-3.3.5-3.1-.1.2-.2.3-.3.4-1.5 1.7-2.9 3.7-3.9 5.8-.9 1.9-1.7 3.9-2.3 5.9-.1.3 0-.3 0-1s.1-2 0-1.7l-.3.7c-6.7 14.9-10.9 30.8-12.4 47.1-.4 2.8-.6 5.6-.5 8.3v.2c-4.8 5.2-9 11-12.7 17.1-12.1 20.4-21.1 42.5-26.8 65.6 4-8.8 8.8-17.2 14.3-25.1C5.5 228.5 0 257.4 0 286.6c1.8-8.6 4.2-17 7-25.3-1.7 34.5 4.9 68.9 19.4 100.3 19.4 43.5 51.6 80 92.3 104.7 16.6 11.2 34.7 19.9 53.8 25.8 2.5.9 5.1 1.8 7.7 2.7-.8-.3-1.6-.7-2.4-1 22.6 6.8 46.2 10.3 69.8 10.3 83.7 0 111.3-31.9 113.8-35 4.1-3.7 7.5-8.2 9.9-13.3 1.6-.7 3.2-1.4 4.9-2.1l1-.5 1.9-.9c12.6-5.9 24.5-13.4 35.3-22.1 16.3-11.7 27.9-28.7 32.9-48.1 3-7.1 3.1-15 .4-22.2.9-1.4 1.7-2.8 2.7-4.3 18-28.9 28.2-61.9 29.6-95.9v-2.8c0-7.3-.6-14.5-1.9-21.6z" ], + "first-order": [ 448, 512, [], "f2b0", "M12.9 229.2c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4h-.2zM224 96.6c-7.1 0-14.6.6-21.4 1.7l3.7 67.4-22-64c-14.3 3.7-27.7 9.4-40 16.6l29.4 61.4-45.1-50.9c-11.4 8.9-21.7 19.1-30.6 30.9l50.6 45.4-61.1-29.7c-7.1 12.3-12.9 25.7-16.6 40l64.3 22.6-68-4c-.9 7.1-1.4 14.6-1.4 22s.6 14.6 1.4 21.7l67.7-4-64 22.6c3.7 14.3 9.4 27.7 16.6 40.3l61.1-29.7L97.7 352c8.9 11.7 19.1 22.3 30.9 30.9l44.9-50.9-29.5 61.4c12.3 7.4 25.7 13.1 40 16.9l22.3-64.6-4 68c7.1 1.1 14.6 1.7 21.7 1.7 7.4 0 14.6-.6 21.7-1.7l-4-68.6 22.6 65.1c14.3-4 27.7-9.4 40-16.9L274.9 332l44.9 50.9c11.7-8.9 22-19.1 30.6-30.9l-50.6-45.1 61.1 29.4c7.1-12.3 12.9-25.7 16.6-40.3l-64-22.3 67.4 4c1.1-7.1 1.4-14.3 1.4-21.7s-.3-14.9-1.4-22l-67.7 4 64-22.3c-3.7-14.3-9.1-28-16.6-40.3l-60.9 29.7 50.6-45.4c-8.9-11.7-19.1-22-30.6-30.9l-45.1 50.9 29.4-61.1c-12.3-7.4-25.7-13.1-40-16.9L241.7 166l4-67.7c-7.1-1.2-14.3-1.7-21.7-1.7zM443.4 128v256L224 512 4.6 384V128L224 0l219.4 128zm-17.1 10.3L224 20.9 21.7 138.3v235.1L224 491.1l202.3-117.7V138.3zM224 37.1l187.7 109.4v218.9L224 474.9 36.3 365.4V146.6L224 37.1zm0 50.9c-92.3 0-166.9 75.1-166.9 168 0 92.6 74.6 167.7 166.9 167.7 92 0 166.9-75.1 166.9-167.7 0-92.9-74.9-168-166.9-168z" ], + "first-order-alt": [ 496, 512, [], "f50a", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 488.21C115.34 496.21 7.79 388.66 7.79 256S115.34 15.79 248 15.79 488.21 123.34 488.21 256 380.66 496.21 248 496.21zm0-459.92C126.66 36.29 28.29 134.66 28.29 256S126.66 475.71 248 475.71 467.71 377.34 467.71 256 369.34 36.29 248 36.29zm0 431.22c-116.81 0-211.51-94.69-211.51-211.51S131.19 44.49 248 44.49 459.51 139.19 459.51 256 364.81 467.51 248 467.51zm186.23-162.98a191.613 191.613 0 0 1-20.13 48.69l-74.13-35.88 61.48 54.82a193.515 193.515 0 0 1-37.2 37.29l-54.8-61.57 35.88 74.27a190.944 190.944 0 0 1-48.63 20.23l-27.29-78.47 4.79 82.93c-8.61 1.18-17.4 1.8-26.33 1.8s-17.72-.62-26.33-1.8l4.76-82.46-27.15 78.03a191.365 191.365 0 0 1-48.65-20.2l35.93-74.34-54.87 61.64a193.85 193.85 0 0 1-37.22-37.28l61.59-54.9-74.26 35.93a191.638 191.638 0 0 1-20.14-48.69l77.84-27.11-82.23 4.76c-1.16-8.57-1.78-17.32-1.78-26.21 0-9 .63-17.84 1.82-26.51l82.38 4.77-77.94-27.16a191.726 191.726 0 0 1 20.23-48.67l74.22 35.92-61.52-54.86a193.85 193.85 0 0 1 37.28-37.22l54.76 61.53-35.83-74.17a191.49 191.49 0 0 1 48.65-20.13l26.87 77.25-4.71-81.61c8.61-1.18 17.39-1.8 26.32-1.8s17.71.62 26.32 1.8l-4.74 82.16 27.05-77.76c17.27 4.5 33.6 11.35 48.63 20.17l-35.82 74.12 54.72-61.47a193.13 193.13 0 0 1 37.24 37.23l-61.45 54.77 74.12-35.86a191.515 191.515 0 0 1 20.2 48.65l-77.81 27.1 82.24-4.75c1.19 8.66 1.82 17.5 1.82 26.49 0 8.88-.61 17.63-1.78 26.19l-82.12-4.75 77.72 27.09z" ], + firstdraft: [ 384, 512, [], "f3a1", "M384 192h-64v128H192v128H0v-25.6h166.4v-128h128v-128H384V192zm-25.6 38.4v128h-128v128H64V512h192V384h128V230.4h-25.6zm25.6 192h-89.6V512H320v-64h64v-25.6zM0 0v384h128V256h128V128h128V0H0z" ], + flickr: [ 448, 512, [], "f16e", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5zm159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5z" ], + flipboard: [ 448, 512, [], "f44d", "M0 32v448h448V32H0zm358.4 179.2h-89.6v89.6h-89.6v89.6H89.6V121.6h268.8v89.6z" ], + fly: [ 384, 512, [], "f417", "M197.8 427.8c12.9 11.7 33.7 33.3 33.2 50.7 0 .8-.1 1.6-.1 2.5-1.8 19.8-18.8 31.1-39.1 31-25-.1-39.9-16.8-38.7-35.8 1-16.2 20.5-36.7 32.4-47.6 2.3-2.1 2.7-2.7 5.6-3.6 3.4 0 3.9.3 6.7 2.8zM331.9 67.3c-16.3-25.7-38.6-40.6-63.3-52.1C243.1 4.5 214-.2 192 0c-44.1 0-71.2 13.2-81.1 17.3C57.3 45.2 26.5 87.2 28 158.6c7.1 82.2 97 176 155.8 233.8 1.7 1.6 4.5 4.5 6.2 5.1l3.3.1c2.1-.7 1.8-.5 3.5-2.1 52.3-49.2 140.7-145.8 155.9-215.7 7-39.2 3.1-72.5-20.8-112.5zM186.8 351.9c-28-51.1-65.2-130.7-69.3-189-3.4-47.5 11.4-131.2 69.3-136.7v325.7zM328.7 180c-16.4 56.8-77.3 128-118.9 170.3C237.6 298.4 275 217 277 158.4c1.6-45.9-9.8-105.8-48-131.4 88.8 18.3 115.5 98.1 99.7 153z" ], + "font-awesome": [ 448, 512, [], "f2b4", "M397.8 32H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-45.4 284.3c0 4.2-3.6 6-7.8 7.8-16.7 7.2-34.6 13.7-53.8 13.7-26.9 0-39.4-16.7-71.7-16.7-23.3 0-47.8 8.4-67.5 17.3-1.2.6-2.4.6-3.6 1.2V385c0 1.8 0 3.6-.6 4.8v1.2c-2.4 8.4-10.2 14.3-19.1 14.3-11.3 0-20.3-9-20.3-20.3V166.4c-7.8-6-13.1-15.5-13.1-26.3 0-18.5 14.9-33.5 33.5-33.5 18.5 0 33.5 14.9 33.5 33.5 0 10.8-4.8 20.3-13.1 26.3v18.5c1.8-.6 3.6-1.2 5.4-2.4 18.5-7.8 40.6-14.3 61.5-14.3 22.7 0 40.6 6 60.9 13.7 4.2 1.8 8.4 2.4 13.1 2.4 22.7 0 47.8-16.1 53.8-16.1 4.8 0 9 3.6 9 7.8v140.3z" ], + "font-awesome-alt": [ 448, 512, [], "f35c", "M397.8 67.8c7.8 0 14.3 6.6 14.3 14.3v347.6c0 7.8-6.6 14.3-14.3 14.3H50.2c-7.8 0-14.3-6.6-14.3-14.3V82.2c0-7.8 6.6-14.3 14.3-14.3h347.6m0-35.9H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-58.5 139.2c-6 0-29.9 15.5-52.6 15.5-4.2 0-8.4-.6-12.5-2.4-19.7-7.8-37-13.7-59.1-13.7-20.3 0-41.8 6.6-59.7 13.7-1.8.6-3.6 1.2-4.8 1.8v-17.9c7.8-6 12.5-14.9 12.5-25.7 0-17.9-14.3-32.3-32.3-32.3s-32.3 14.3-32.3 32.3c0 10.2 4.8 19.7 12.5 25.7v212.1c0 10.8 9 19.7 19.7 19.7 9 0 16.1-6 18.5-13.7V385c.6-1.8.6-3 .6-4.8V336c1.2 0 2.4-.6 3-1.2 19.7-8.4 43-16.7 65.7-16.7 31.1 0 43 16.1 69.3 16.1 18.5 0 36.4-6.6 52-13.7 4.2-1.8 7.2-3.6 7.2-7.8V178.3c1.8-4.1-2.3-7.1-7.7-7.1z" ], + "font-awesome-flag": [ 448, 512, [], "f425", "M444.373 359.424c0 7.168-6.144 10.24-13.312 13.312-28.672 12.288-59.392 23.552-92.16 23.552-46.08 0-67.584-28.672-122.88-28.672-39.936 0-81.92 14.336-115.712 29.696-2.048 1.024-4.096 1.024-6.144 2.048v77.824c0 21.405-16.122 34.816-33.792 34.816-19.456 0-34.816-15.36-34.816-34.816V102.4C12.245 92.16 3.029 75.776 3.029 57.344 3.029 25.6 28.629 0 60.373 0s57.344 25.6 57.344 57.344c0 18.432-8.192 34.816-22.528 45.056v31.744c4.124-1.374 58.768-28.672 114.688-28.672 65.27 0 97.676 27.648 126.976 27.648 38.912 0 81.92-27.648 92.16-27.648 8.192 0 15.36 6.144 15.36 13.312v240.64z" ], + "font-awesome-logo-full": [ 3992, 512, [ "Font Awesome" ], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z" ], + fonticons: [ 448, 512, [], "f280", "M0 32v448h448V32H0zm167.4 196h67.4l-11.1 37.3H168v112.9c0 5.8-2 6.7 3.2 7.3l43.5 4.1v25.1H84V389l21.3-2c5.2-.6 6.7-2.3 6.7-7.9V267.7c0-2.3-2.9-2.3-5.8-2.3H84V228h28v-21c0-49.6 26.5-70 77.3-70 34.1 0 64.7 8.2 64.7 52.8l-50.7 6.1c.3-18.7-4.4-23-16.3-23-18.4 0-19 9.9-19 27.4v23.3c0 2.4-3.5 4.4-.6 4.4zM364 414.7H261.3v-25.1l20.4-2.6c5.2-.6 7.6-1.7 7.6-7.3V271.8c0-4.1-2.9-6.7-6.7-7.9l-24.2-6.4 6.7-29.5h80.2v151.7c0 5.8-2.6 6.4 2.9 7.3l15.7 2.6v25.1zm-21.9-255.5l9 33.2-7.3 7.3-31.2-16.6-31.2 16.6-7.3-7.3 9-33.2-21.8-24.2 3.5-9.6h27.7l15.5-28h9.3l15.5 28h27.7l3.5 9.6-21.9 24.2z" ], + "fonticons-fi": [ 384, 512, [], "f3a2", "M114.4 224h92.4l-15.2 51.2h-76.4V433c0 8-2.8 9.2 4.4 10l59.6 5.6V483H0v-35.2l29.2-2.8c7.2-.8 9.2-3.2 9.2-10.8V278.4c0-3.2-4-3.2-8-3.2H0V224h38.4v-28.8c0-68 36.4-96 106-96 46.8 0 88.8 11.2 88.8 72.4l-69.6 8.4c.4-25.6-6-31.6-22.4-31.6-25.2 0-26 13.6-26 37.6v32c0 3.2-4.8 6-.8 6zM384 483H243.2v-34.4l28-3.6c7.2-.8 10.4-2.4 10.4-10V287c0-5.6-4-9.2-9.2-10.8l-33.2-8.8 9.2-40.4h110v208c0 8-3.6 8.8 4 10l21.6 3.6V483zm-30-347.2l12.4 45.6-10 10-42.8-22.8-42.8 22.8-10-10 12.4-45.6-30-36.4 4.8-10h38L307.2 51H320l21.2 38.4h38l4.8 13.2-30 33.2z" ], + "fort-awesome": [ 512, 512, [], "f286", "M489.2 287.9h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6V146.2c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-6-8-4.6-11.7-4.6v-38c8.3-2 17.1-3.4 25.7-3.4 10.9 0 20.9 4.3 31.4 4.3 4.6 0 27.7-1.1 27.7-8v-60c0-2.6-2-4.6-4.6-4.6-5.1 0-15.1 4.3-24 4.3-9.7 0-20.9-4.3-32.6-4.3-8 0-16 1.1-23.7 2.9v-4.9c5.4-2.6 9.1-8.3 9.1-14.3 0-20.7-31.4-20.8-31.4 0 0 6 3.7 11.7 9.1 14.3v111.7c-3.7 0-11.7-1.4-11.7 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32H128v-32c0-2.6-2-4.6-4.6-4.6H96c-2.6 0-4.6 2-4.6 4.6v178.3H54.8v-32c0-2.6-2-4.6-4.6-4.6H22.8c-2.6 0-4.6 2-4.6 4.6V512h182.9v-96c0-72.6 109.7-72.6 109.7 0v96h182.9V292.5c.1-2.6-1.9-4.6-4.5-4.6zm-288.1-4.5c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64zm146.4 0c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64z" ], + "fort-awesome-alt": [ 512, 512, [], "f3a3", "M211.7 241.1v51.7c0 2.1-1.6 3.7-3.7 3.7h-22.2c-2.1 0-3.7-1.6-3.7-3.7v-51.7c0-2.1 1.6-3.7 3.7-3.7H208c2.1 0 3.7 1.6 3.7 3.7zm114.5-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7h22.2c2.1 0 3.7-1.6 3.7-3.7v-51.7c-.1-2.1-1.7-3.7-3.7-3.7zm-29.1 263.2c-.9.1-1.7.3-2.6.4-1 .2-2.1.3-3.1.5-.9.1-1.8.3-2.8.4-1 .1-2 .3-3 .4-1 .1-2 .2-2.9.3-1 .1-1.9.2-2.9.3-1 .1-2.1.2-3.1.3-.9.1-1.8.2-2.7.2-1.1.1-2.3.1-3.4.2-.8 0-1.7.1-2.5.1-1.3.1-2.6.1-3.9.1-.7 0-1.4.1-2.1.1-2 0-4 .1-6 .1s-4 0-6-.1c-.7 0-1.4 0-2.1-.1-1.3 0-2.6-.1-3.9-.1-.8 0-1.7-.1-2.5-.1-1.1-.1-2.3-.1-3.4-.2-.9-.1-1.8-.1-2.7-.2-1-.1-2.1-.2-3.1-.3-1-.1-1.9-.2-2.9-.3-1-.1-2-.2-2.9-.3-1-.1-2-.2-3-.4-.9-.1-1.8-.3-2.8-.4-1-.1-2.1-.3-3.1-.5-.9-.1-1.7-.3-2.6-.4-65.6-10.9-122.5-47.7-160-99.4-.2-.2-.3-.5-.5-.7-.8-1.1-1.6-2.2-2.3-3.3-.3-.4-.6-.8-.8-1.2-.7-1.1-1.4-2.1-2.1-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.4-2.1-2-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.3-2.2-2-3.3-.2-.4-.5-.8-.7-1.2-2.4-4-4.6-8.1-6.8-12.2-.1-.2-.2-.3-.3-.5-.6-1.1-1.1-2.2-1.7-3.3-.3-.6-.6-1.1-.8-1.7-.5-1-1-2.1-1.5-3.1-.3-.7-.6-1.3-.9-2-.5-1-.9-2-1.4-3l-.9-2.1c-.4-1-.9-2-1.3-3-.3-.7-.6-1.5-.9-2.2l-1.2-3c-.3-.8-.6-1.5-.9-2.3-.4-1-.8-2-1.1-3-.3-.9-.6-1.8-1-2.8-.6-1.6-1.1-3.3-1.7-4.9-.3-.9-.6-1.8-.9-2.8-.3-.9-.5-1.8-.8-2.7-.3-.9-.6-1.9-.8-2.8-.3-.9-.5-1.8-.8-2.7-.3-1-.5-1.9-.8-2.9-.2-.9-.5-1.8-.7-2.7-.3-1-.5-2-.7-3-.2-.9-.4-1.7-.6-2.6-.2-1.1-.5-2.2-.7-3.2-.2-.8-.3-1.6-.5-2.4-.3-1.3-.5-2.7-.8-4-.1-.6-.2-1.1-.3-1.7l-.9-5.7c-.1-.6-.2-1.3-.3-1.9-.2-1.3-.4-2.6-.5-3.9-.1-.8-.2-1.5-.3-2.3-.1-1.2-.3-2.4-.4-3.6-.1-.8-.2-1.6-.2-2.4-.1-1.2-.2-2.4-.3-3.5-.1-.8-.1-1.6-.2-2.4-.1-1.2-.2-2.4-.2-3.7 0-.8-.1-1.5-.1-2.3-.1-1.3-.1-2.7-.2-4 0-.7 0-1.3-.1-2 0-2-.1-4-.1-6 0-53.5 16.9-103 45.8-143.6 2.3-3.2 4.7-6.4 7.1-9.5 4.9-6.2 10.1-12.3 15.6-18 2.7-2.9 5.5-5.7 8.4-8.4 2.9-2.7 5.8-5.4 8.8-8 4.5-3.9 9.1-7.6 13.9-11.2 1.6-1.2 3.2-2.4 4.8-3.5C140 34.2 171.7 20.1 206 13c16.1-3.3 32.9-5 50-5s33.8 1.7 50 5c34.3 7 66 21.1 93.6 40.7 1.6 1.2 3.2 2.3 4.8 3.5 4.8 3.6 9.4 7.3 13.9 11.2 12 10.4 23 21.9 32.8 34.4 2.5 3.1 4.8 6.3 7.1 9.5C487.1 153 504 202.5 504 256c0 2 0 4-.1 6 0 .7 0 1.3-.1 2 0 1.3-.1 2.7-.2 4 0 .8-.1 1.5-.1 2.3-.1 1.2-.1 2.4-.2.7-.1.8-.1 1.6-.2 2.4-.1 1.2-.2 2.4-.3 3.5-.1.8-.2 1.6-.2 2.4-.1 1.2-.3 2.4-.4 3.6-.1.8-.2 1.5-.3 2.3-.2 1.3-.4 2.6-.5 3.9-.1.6-.2 1.3-.3 1.9l-.9 5.7c-.1.6-.2 1.1-.3 1.7-.2 1.3-.5 2.7-.8 4-.2.8-.3 1.6-.5 2.4-.2 1.1-.5 2.2-.7 3.2-.2.9-.4 1.7-.6 2.6-.2 1-.5 2-.7 3-.2.9-.5 1.8-.7 2.7-.3 1-.5 1.9-.8 2.9-.2.9-.5 1.8-.8 2.7-.3.9-.6 1.9-.8 2.8-.3.9-.5 1.8-.8 2.7-.3.9-.6 1.8-.9 2.8-.5 1.6-1.1 3.3-1.7 4.9-.3.9-.6 1.8-1 2.8-.4 1-.7 2-1.1 3-.3.8-.6 1.5-.9 2.3l-1.2 3c-.3.7-.6 1.5-.9 2.2-.4 1-.8 2-1.3 3l-.9 2.1c-.4 1-.9 2-1.4 3-.3.7-.6 1.3-.9 2-.5 1-1 2.1-1.5 3.1-.3.6-.6 1.1-.8 1.7-.6 1.1-1.1 2.2-1.7 3.3-.1.2-.2.3-.3.5-2.2 4.1-4.4 8.2-6.8 12.2-.2.4-.5.8-.7 1.2-.7 1.1-1.3 2.2-2 3.3-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2 3.2-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2.1 3.2-.3.4-.6.8-.8 1.2-.8 1.1-1.5 2.2-2.3 3.3-.2.2-.3.5-.5.7-37.6 54.7-94.5 91.4-160.1 102.4zm117.3-86.2c13-13 24.2-27.4 33.6-42.9v-71.3c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7V326h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-4.8-6.5-3.7-9.5-3.7v-30.7c6.7-1.6 13.8-2.8 20.8-2.8 8.8 0 16.8 3.5 25.4 3.5 3.7 0 22.4-.9 22.4-6.5V93.4c0-2.1-1.6-3.7-3.7-3.7-4.2 0-12.2 3.5-19.4 3.5-7.9 0-16.9-3.5-26.3-3.5-6.5 0-12.9.9-19.2 2.3v-3.9c4.4-2.1 7.4-6.7 7.4-11.5 0-16.8-25.4-16.8-25.4 0 0 4.8 3 9.5 7.4 11.5v90.2c-3 0-9.5-1.1-9.5 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v144H93.5v-25.8c0-2.1-1.6-3.7-3.7-3.7H67.7c-2.1 0-3.7 1.6-3.7 3.7v71.3c9.4 15.5 20.6 29.9 33.6 42.9 20.6 20.6 44.5 36.7 71.2 48 13.9 5.9 28.2 10.3 42.9 13.2v-75.8c0-58.6 88.6-58.6 88.6 0v75.8c14.7-2.9 29-7.4 42.9-13.2 26.7-11.3 50.6-27.4 71.2-48" ], + forumbee: [ 448, 512, [], "f211", "M5.8 309.7C2 292.7 0 275.5 0 258.3 0 135 99.8 35 223.1 35c16.6 0 33.3 2 49.3 5.5C149 87.5 51.9 186 5.8 309.7zm392.9-189.2C385 103 369 87.8 350.9 75.2c-149.6 44.3-266.3 162.1-309.7 312 12.5 18.1 28 35.6 45.2 49 43.1-151.3 161.2-271.7 312.3-315.7zm15.8 252.7c15.2-25.1 25.4-53.7 29.5-82.8-79.4 42.9-145 110.6-187.6 190.3 30-4.4 58.9-15.3 84.6-31.3 35 13.1 70.9 24.3 107 33.6-9.3-36.5-20.4-74.5-33.5-109.8zm29.7-145.5c-2.6-19.5-7.9-38.7-15.8-56.8C290.5 216.7 182 327.5 137.1 466c18.1 7.6 37 12.5 56.6 15.2C240 367.1 330.5 274.4 444.2 227.7z" ], + foursquare: [ 368, 512, [], "f180", "M323.1 3H49.9C12.4 3 0 31.3 0 49.1v433.8c0 20.3 12.1 27.7 18.2 30.1 6.2 2.5 22.8 4.6 32.9-7.1C180 356.5 182.2 354 182.2 354c3.1-3.4 3.4-3.1 6.8-3.1h83.4c35.1 0 40.6-25.2 44.3-39.7l48.6-243C373.8 25.8 363.1 3 323.1 3zm-16.3 73.8l-11.4 59.7c-1.2 6.5-9.5 13.2-16.9 13.2H172.1c-12 0-20.6 8.3-20.6 20.3v13c0 12 8.6 20.6 20.6 20.6h90.4c8.3 0 16.6 9.2 14.8 18.2-1.8 8.9-10.5 53.8-11.4 58.8-.9 4.9-6.8 13.5-16.9 13.5h-73.5c-13.5 0-17.2 1.8-26.5 12.6 0 0-8.9 11.4-89.5 108.3-.9.9-1.8.6-1.8-.3V75.9c0-7.7 6.8-16.6 16.6-16.6h219c8.2 0 15.6 7.7 13.5 17.5z" ], + "free-code-camp": [ 576, 512, [], "f2c5", "M69.3 144.5c-41 68.5-36.4 163 1 227C92.5 409.7 120 423.9 120 438c0 6.8-6 13-12.8 13C87.7 451 8 375.5 8 253.2c0-111.5 78-186 97.1-186 6 0 14.9 4.8 14.9 11.1 0 12.7-28.3 28.6-50.7 66.2zm195.8 213.8c4.5 1.8 12.3 5.2 12.3-1.2 0-2.7-2.2-2.9-4.3-3.6-8.5-3.4-14-7.7-19.1-15.2-8.2-12.1-10.1-24.2-10.1-38.6 0-32.1 44.2-37.9 44.2-70 0-12.3-7.7-15.9-7.7-19.3 0-2.2.7-2.2 2.9-2.2 8 0 19.1 13.3 22.5 19.8 2.2 4.6 2.4 6 2.4 11.1 0 7-.7 14.2-.7 21.3 0 27 31.9 19.8 31.9 6.8 0-6-3.6-11.6-3.6-17.4 0-.7 0-1.2.7-1.2 3.4 0 9.4 7.7 11.1 10.1 5.8 8.9 8.5 20.8 8.5 31.4 0 32.4-29.5 49-29.5 56 0 1 2.9 7.7 12.1 1.9 29.7-15.1 53.1-47.6 53.1-89.8 0-33.6-8.7-57.7-32.1-82.6-3.9-4.1-16.4-16.9-22.5-16.9-8.2 0 7.2 18.6 7.2 31.2 0 7.2-4.8 12.3-12.3 12.3-11.6 0-14.5-25.4-15.9-33.3-5.8-33.8-12.8-58.2-46.4-74.1-10.4-5-36.5-11.8-36.5-2.2 0 2.4 2.7 4.1 4.6 5.1 9.2 5.6 19.6 21.4 19.6 38.2 0 46.1-57.7 88.2-57.7 136.2-.2 40.3 28.1 72.6 65.3 86.2zM470.4 67c-6 0-14.4 6.5-14.4 12.6 0 8.7 12.1 19.6 17.6 25.4 81.6 85.1 78.6 214.3 17.6 291-7 8.9-35.3 35.3-35.3 43.5 0 5.1 8.2 11.4 13.2 11.4 25.4 0 98.8-80.8 98.8-185.7C568 145.9 491.8 67 470.4 67zm-42.3 323.1H167c-9.4 0-15.5 7.5-15.5 16.4 0 8.5 7 15.5 15.5 15.5h261.1c9.4 0 11.9-7.5 11.9-16.4 0-8.5-3.5-15.5-11.9-15.5z" ], + freebsd: [ 448, 512, [], "f3a4", "M303.7 96.2c11.1-11.1 115.5-77 139.2-53.2 23.7 23.7-42.1 128.1-53.2 139.2-11.1 11.1-39.4.9-63.1-22.9-23.8-23.7-34.1-52-22.9-63.1zM109.9 68.1C73.6 47.5 22 24.6 5.6 41.1c-16.6 16.6 7.1 69.4 27.9 105.7 18.5-32.2 44.8-59.3 76.4-78.7zM406.7 174c3.3 11.3 2.7 20.7-2.7 26.1-20.3 20.3-87.5-27-109.3-70.1-18-32.3-11.1-53.4 14.9-48.7 5.7-3.6 12.3-7.6 19.6-11.6-29.8-15.5-63.6-24.3-99.5-24.3-119.1 0-215.6 96.5-215.6 215.6 0 119 96.5 215.6 215.6 215.6S445.3 380.1 445.3 261c0-38.4-10.1-74.5-27.7-105.8-3.9 7-7.6 13.3-10.9 18.8z" ], + fulcrum: [ 269, 512, [], "f50b", "M70.75 164.14l-35.38 43.55L0 164.14l35.38-43.55 35.37 43.55zM119.23 0L98.69 198.18 47.72 256l50.98 57.82L119.23 512V300.89L78.15 256l41.08-44.89V0zm79.67 164.14l35.38 43.55 35.38-43.55-35.38-43.55-35.38 43.55zm-48.48 46.97L191.5 256l-41.08 44.89V512l20.54-198.18L221.94 256l-50.98-57.82L150.42 0v211.11z" ], + "galactic-republic": [ 496, 512, [], "f50c", "M248 504C111.25 504 0 392.75 0 256S111.25 8 248 8s248 111.25 248 248-111.25 248-248 248zm0-479.47C120.37 24.53 16.53 128.37 16.53 256S120.37 487.47 248 487.47 479.47 383.63 479.47 256 375.63 24.53 248 24.53zm27.62 21.81v24.62a185.933 185.933 0 0 1 83.57 34.54l17.39-17.36c-28.75-22.06-63.3-36.89-100.96-41.8zm-55.37.07c-37.64 4.94-72.16 19.8-100.88 41.85l17.28 17.36h.08c24.07-17.84 52.55-30.06 83.52-34.67V46.41zm12.25 50.17v82.87c-10.04 2.03-19.42 5.94-27.67 11.42l-58.62-58.59-21.93 21.93 58.67 58.67c-5.47 8.23-9.45 17.59-11.47 27.62h-82.9v31h82.9c2.02 10.02 6.01 19.31 11.47 27.54l-58.67 58.69 21.93 21.93 58.62-58.62a77.873 77.873 0 0 0 27.67 11.47v82.9h31v-82.9c10.05-2.03 19.37-6.06 27.62-11.55l58.67 58.69 21.93-21.93-58.67-58.69c5.46-8.23 9.47-17.52 11.5-27.54h82.87v-31h-82.87c-2.02-10.02-6.03-19.38-11.5-27.62l58.67-58.67-21.93-21.93-58.67 58.67c-8.25-5.49-17.57-9.47-27.62-11.5V96.58h-31zm183.24 30.72l-17.36 17.36a186.337 186.337 0 0 1 34.67 83.67h24.62c-4.95-37.69-19.83-72.29-41.93-101.03zm-335.55.13c-22.06 28.72-36.91 63.26-41.85 100.91h24.65c4.6-30.96 16.76-59.45 34.59-83.52l-17.39-17.39zM38.34 283.67c4.92 37.64 19.75 72.18 41.8 100.9l17.36-17.39c-17.81-24.07-29.92-52.57-34.51-83.52H38.34zm394.7 0c-4.61 30.99-16.8 59.5-34.67 83.6l17.36 17.36c22.08-28.74 36.98-63.29 41.93-100.96h-24.62zM136.66 406.38l-17.36 17.36c28.73 22.09 63.3 36.98 100.96 41.93v-24.64c-30.99-4.63-59.53-16.79-83.6-34.65zm222.53.05c-24.09 17.84-52.58 30.08-83.57 34.67v24.57c37.67-4.92 72.21-19.79 100.96-41.85l-17.31-17.39h-.08z" ], + "galactic-senate": [ 512, 512, [], "f50d", "M249.86 33.48v26.07C236.28 80.17 226 168.14 225.39 274.9c11.74-15.62 19.13-33.33 19.13-48.24v-16.88c-.03-5.32.75-10.53 2.19-15.65.65-2.14 1.39-4.08 2.62-5.82 1.23-1.75 3.43-3.79 6.68-3.79 3.24 0 5.45 2.05 6.68 3.79 1.23 1.75 1.97 3.68 2.62 5.82 1.44 5.12 2.22 10.33 2.19 15.65v16.88c0 14.91 7.39 32.62 19.13 48.24-.63-106.76-10.91-194.73-24.49-215.35V33.48h-12.28zm-26.34 147.77c-9.52 2.15-18.7 5.19-27.46 9.08 8.9 16.12 9.76 32.64 1.71 37.29-8 4.62-21.85-4.23-31.36-19.82-11.58 8.79-21.88 19.32-30.56 31.09 14.73 9.62 22.89 22.92 18.32 30.66-4.54 7.7-20.03 7.14-35.47-.96-5.78 13.25-9.75 27.51-11.65 42.42 9.68.18 18.67 2.38 26.18 6.04 17.78-.3 32.77-1.96 40.49-4.22 5.55-26.35 23.02-48.23 46.32-59.51.73-25.55 1.88-49.67 3.48-72.07zm64.96 0c1.59 22.4 2.75 46.52 3.47 72.07 23.29 11.28 40.77 33.16 46.32 59.51 7.72 2.26 22.71 3.92 40.49 4.22 7.51-3.66 16.5-5.85 26.18-6.04-1.9-14.91-5.86-29.17-11.65-42.42-15.44 8.1-30.93 8.66-35.47.96-4.57-7.74 3.6-21.05 18.32-30.66-8.68-11.77-18.98-22.3-30.56-31.09-9.51 15.59-23.36 24.44-31.36 19.82-8.05-4.65-7.19-21.16 1.71-37.29a147.49 147.49 0 0 0-27.45-9.08zm-32.48 8.6c-3.23 0-5.86 8.81-6.09 19.93h-.05v16.88c0 41.42-49.01 95.04-93.49 95.04-52 0-122.75-1.45-156.37 29.17v2.51c9.42 17.12 20.58 33.17 33.18 47.97C45.7 380.26 84.77 360.4 141.2 360c45.68 1.02 79.03 20.33 90.76 40.87.01.01-.01.04 0 .05 7.67 2.14 15.85 3.23 24.04 3.21 8.19.02 16.37-1.07 24.04-3.21.01-.01-.01-.04 0-.05 11.74-20.54 45.08-39.85 90.76-40.87 56.43.39 95.49 20.26 108.02 41.35 12.6-14.8 23.76-30.86 33.18-47.97v-2.51c-33.61-30.62-104.37-29.17-156.37-29.17-44.48 0-93.49-53.62-93.49-95.04v-16.88h-.05c-.23-11.12-2.86-19.93-6.09-19.93zm0 96.59c22.42 0 40.6 18.18 40.6 40.6s-18.18 40.65-40.6 40.65-40.6-18.23-40.6-40.65c0-22.42 18.18-40.6 40.6-40.6zm0 7.64c-18.19 0-32.96 14.77-32.96 32.96S237.81 360 256 360s32.96-14.77 32.96-32.96-14.77-32.96-32.96-32.96zm0 6.14c14.81 0 26.82 12.01 26.82 26.82s-12.01 26.82-26.82 26.82-26.82-12.01-26.82-26.82 12.01-26.82 26.82-26.82zm-114.8 66.67c-10.19.07-21.6.36-30.5 1.66.43 4.42 1.51 18.63 7.11 29.76 9.11-2.56 18.36-3.9 27.62-3.9 41.28.94 71.48 34.35 78.26 74.47l.11 4.7c10.4 1.91 21.19 2.94 32.21 2.94 11.03 0 21.81-1.02 32.21-2.94l.11-4.7c6.78-40.12 36.98-73.53 78.26-74.47 9.26 0 18.51 1.34 27.62 3.9 5.6-11.13 6.68-25.34 7.11-29.76-8.9-1.3-20.32-1.58-30.5-1.66-18.76.42-35.19 4.17-48.61 9.67-12.54 16.03-29.16 30.03-49.58 33.07-.09.02-.17.04-.27.05-.05.01-.11.04-.16.05-5.24 1.07-10.63 1.6-16.19 1.6-5.55 0-10.95-.53-16.19-1.6-.05-.01-.11-.04-.16-.05-.1-.02-.17-.04-.27-.05-20.42-3.03-37.03-17.04-49.58-33.07-13.42-5.49-29.86-9.25-48.61-9.67z" ], + "get-pocket": [ 448, 512, [], "f265", "M407.6 64h-367C18.5 64 0 82.5 0 104.6v135.2C0 364.5 99.7 464 224.2 464c124 0 223.8-99.5 223.8-224.2V104.6c0-22.4-17.7-40.6-40.4-40.6zm-162 268.5c-12.4 11.8-31.4 11.1-42.4 0C89.5 223.6 88.3 227.4 88.3 209.3c0-16.9 13.8-30.7 30.7-30.7 17 0 16.1 3.8 105.2 89.3 90.6-86.9 88.6-89.3 105.5-89.3 16.9 0 30.7 13.8 30.7 30.7 0 17.8-2.9 15.7-114.8 123.2z" ], + gg: [ 512, 512, [], "f260", "M179.2 230.4l102.4 102.4-102.4 102.4L0 256 179.2 76.8l44.8 44.8-25.6 25.6-19.2-19.2-128 128 128 128 51.5-51.5-77.1-76.5 25.6-25.6zM332.8 76.8L230.4 179.2l102.4 102.4 25.6-25.6-77.1-76.5 51.5-51.5 128 128-128 128-19.2-19.2-25.6 25.6 44.8 44.8L512 256 332.8 76.8z" ], + "gg-circle": [ 512, 512, [], "f261", "M257 8C120 8 9 119 9 256s111 248 248 248 248-111 248-248S394 8 257 8zm-49.5 374.8L81.8 257.1l125.7-125.7 35.2 35.4-24.2 24.2-11.1-11.1-77.2 77.2 77.2 77.2 26.6-26.6-53.1-52.9 24.4-24.4 77.2 77.2-75 75.2zm99-2.2l-35.2-35.2 24.1-24.4 11.1 11.1 77.2-77.2-77.2-77.2-26.5 26.5 53.1 52.9-24.4 24.4-77.2-77.2 75-75L432.2 255 306.5 380.6z" ], + git: [ 448, 512, [], "f1d3", "M18.8 221.7c0 25.3 16.2 60 41.5 68.5v1c-18.8 8.3-24 50.6 1 65.8v1C34 367 16 384.3 16 414.2c0 51.5 48.8 65.8 91.5 65.8 52 0 90.7-18.7 90.7-76 0-70.5-101-44.5-101-82.8 0-13.5 7.2-18.7 19.7-21.3 41.5-7.7 67.5-40 67.5-82.2 0-7.3-1.5-14.2-4-21 6.7-1.5 13.2-3.3 19.7-5.5v-50.5c-17.2 6.8-35.7 11.8-54.5 11.8-53.8-31-126.8 1.3-126.8 69.2zm87.7 163.8c17 0 41.2 3 41.2 25 0 21.8-19.5 26.3-37.7 26.3-17.3 0-43.3-2.7-43.3-25.2.1-22.3 22.1-26.1 39.8-26.1zM103.3 256c-22 0-31.3-13-31.3-33.8 0-49.3 61-48.8 61-.5 0 20.3-8 34.3-29.7 34.3zM432 305.5v49c-13.3 7.3-30.5 9.8-45.5 9.8-53.5 0-59.8-42.2-59.8-85.7v-87.7h.5v-1c-7 0-7.3-1.6-24 1v-47.5h24c0-22.3.3-31-1.5-41.2h56.7c-2 13.8-1.5 27.5-1.5 41.2h51v47.5s-19.3-1-51-1V281c0 14.8 3.3 32.8 21.8 32.8 9.8 0 21.3-2.8 29.3-8.3zM286 68.7c0 18.7-14.5 36.2-33.8 36.2-19.8 0-34.5-17.2-34.5-36.2 0-19.3 14.5-36.7 34.5-36.7C272 32 286 50 286 68.7zm-6.2 74.5c-1.8 14.6-1.6 199.8 0 217.8h-55.5c1.6-18.1 1.8-203 0-217.8h55.5z" ], + "git-square": [ 448, 512, [], "f1d2", "M140.1 348.5c12.1 0 29.5 2.1 29.5 17.9 0 15.5-13.9 18.8-27 18.8-12.3 0-30.9-2-30.9-18s15.7-18.7 28.4-18.7zm-24.7-116.6c0 14.8 6.6 24.1 22.3 24.1 15.5 0 21.2-10 21.2-24.5.1-34.4-43.5-34.8-43.5.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-241 93.7c-12.3 4.8-25.5 8.4-38.9 8.4-38.5-22.1-90.7.9-90.7 49.5 0 18 11.6 42.9 29.6 48.9v.7c-13.4 5.9-17.1 36.1.7 47v.7c-19.5 6.4-32.3 18.8-32.3 40.2 0 36.8 34.8 47 65.4 47 37.1 0 64.8-13.4 64.8-54.3 0-50.4-72.1-31.8-72.1-59.1 0-9.6 5.2-13.4 14.1-15.2 29.6-5.5 48.2-28.6 48.2-58.7 0-5.2-1.1-10.2-2.9-15 4.8-1.1 9.5-2.3 14.1-3.9v-36.2zm56.8 1.8h-39.6c1.3 10.6 1.1 142.6 0 155.5h39.6c-1.1-12.8-1.2-145.1 0-155.5zm4.5-53.3c0-13.4-10-26.2-24.1-26.2-14.3 0-24.6 12.5-24.6 26.2 0 13.6 10.5 25.9 24.6 25.9 13.7 0 24.1-12.5 24.1-25.9zm104.3 53.3h-36.4c0-9.8-.4-19.6 1.1-29.5h-40.5c1.3 7.3 1.1 13.6 1.1 29.5h-17.1v33.9c11.9-1.9 12.1-.7 17.1-.7v.7h-.4v62.7c0 31.1 4.5 61.2 42.7 61.2 10.7 0 23-1.8 32.5-7v-35c-5.7 3.9-13.9 5.9-20.9 5.9-13.2 0-15.5-12.9-15.5-23.4v-65.2c22.7 0 36.4.7 36.4.7v-33.8z" ], + github: [ 496, 512, [], "f09b", "M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z" ], + "github-alt": [ 480, 512, [], "f113", "M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1zM480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2zm-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3zm-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1z" ], + "github-square": [ 448, 512, [], "f092", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z" ], + gitkraken: [ 592, 512, [], "f3a6", "M565.7 118.1c-2.3-6.1-9.3-9.2-15.3-6.6-5.7 2.4-8.5 8.9-6.3 14.6 10.9 29 16.9 60.5 16.9 93.3 0 134.6-100.3 245.7-230.2 262.7V358.4c7.9-1.5 15.5-3.6 23-6.2v104c106.7-25.9 185.9-122.1 185.9-236.8 0-91.8-50.8-171.8-125.8-213.3-5.7-3.2-13-.9-15.9 5-2.7 5.5-.6 12.2 4.7 15.1 67.9 37.6 113.9 110 113.9 193.2 0 93.3-57.9 173.1-139.8 205.4v-92.2c14.2-4.5 24.9-17.7 24.9-33.5 0-13.1-6.8-24.4-17.3-30.5 8.3-79.5 44.5-58.6 44.5-83.9V170c0-38-87.9-161.8-129-164.7-2.5-.2-5-.2-7.6 0C251.1 8.3 163.2 132 163.2 170v14.8c0 25.3 36.3 4.3 44.5 83.9-10.6 6.1-17.3 17.4-17.3 30.5 0 15.8 10.6 29 24.8 33.5v92.2c-81.9-32.2-139.8-112-139.8-205.4 0-83.1 46-155.5 113.9-193.2 5.4-3 7.4-9.6 4.7-15.1-2.9-5.9-10.1-8.2-15.9-5-75 41.5-125.8 121.5-125.8 213.3 0 114.7 79.2 210.8 185.9 236.8v-104c7.6 2.5 15.1 4.6 23 6.2v123.7C131.4 465.2 31 354.1 31 219.5c0-32.8 6-64.3 16.9-93.3 2.2-5.8-.6-12.2-6.3-14.6-6-2.6-13 .4-15.3 6.6C14.5 149.7 8 183.8 8 219.5c0 155.1 122.6 281.6 276.3 287.8V361.4c6.8.4 15 .5 23.4 0v145.8C461.4 501.1 584 374.6 584 219.5c0-35.7-6.5-69.8-18.3-101.4zM365.9 275.5c13 0 23.7 10.5 23.7 23.7 0 13.1-10.6 23.7-23.7 23.7-13 0-23.7-10.5-23.7-23.7 0-13.1 10.6-23.7 23.7-23.7zm-139.8 47.3c-13.2 0-23.7-10.7-23.7-23.7s10.5-23.7 23.7-23.7c13.1 0 23.7 10.6 23.7 23.7 0 13-10.5 23.7-23.7 23.7z" ], + gitlab: [ 512, 512, [], "f296", "M29.782 199.732L256 493.714 8.074 309.699c-6.856-5.142-9.712-13.996-7.141-21.993l28.849-87.974zm75.405-174.806c-3.142-8.854-15.709-8.854-18.851 0L29.782 199.732h131.961L105.187 24.926zm56.556 174.806L256 493.714l94.257-293.982H161.743zm349.324 87.974l-28.849-87.974L256 493.714l247.926-184.015c6.855-5.142 9.711-13.996 7.141-21.993zm-85.404-262.78c-3.142-8.854-15.709-8.854-18.851 0l-56.555 174.806h131.961L425.663 24.926z" ], + gitter: [ 384, 512, [], "f426", "M66.4 322.5H16V0h50.4v322.5zM166.9 76.1h-50.4V512h50.4V76.1zm100.6 0h-50.4V512h50.4V76.1zM368 76h-50.4v247H368V76z" ], + glide: [ 448, 512, [], "f2a5", "M252.8 148.6c0 8.8-1.6 17.7-3.4 26.4-5.8 27.8-11.6 55.8-17.3 83.6-1.4 6.3-8.3 4.9-13.7 4.9-23.8 0-30.5-26-30.5-45.5 0-29.3 11.2-68.1 38.5-83.1 4.3-2.5 9.2-4.2 14.1-4.2 11.4 0 12.3 8.3 12.3 17.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 187c0-5.1-20.8-37.7-25.5-39.5-2.2-.9-7.2-2.3-9.6-2.3-23.1 0-38.7 10.5-58.2 21.5l-.5-.5c4.3-29.4 14.6-57.2 14.6-87.4 0-44.6-23.8-62.7-67.5-62.7-71.7 0-108 70.8-108 123.5 0 54.7 32 85 86.3 85 7.5 0 6.9-.6 6.9 2.3-10.5 80.3-56.5 82.9-56.5 58.9 0-24.4 28-36.5 28.3-38-.2-7.6-29.3-17.2-36.7-17.2-21.1 0-32.7 33-32.7 50.6 0 32.3 20.4 54.7 53.3 54.7 48.2 0 83.4-49.7 94.3-91.7 9.4-37.7 7-39.4 12.3-42.1 20-10.1 35.8-16.8 58.4-16.8 11.1 0 19 2.3 36.7 5.2 1.8.1 4.1-1.7 4.1-3.5z" ], + "glide-g": [ 448, 512, [], "f2a6", "M407.1 211.2c-3.5-1.4-11.6-3.8-15.4-3.8-37.1 0-62.2 16.8-93.5 34.5l-.9-.9c7-47.3 23.5-91.9 23.5-140.4C320.8 29.1 282.6 0 212.4 0 97.3 0 39 113.7 39 198.4 39 286.3 90.3 335 177.6 335c12 0 11-1 11 3.8-16.9 128.9-90.8 133.1-90.8 94.6 0-39.2 45-58.6 45.5-61-.3-12.2-47-27.6-58.9-27.6-33.9.1-52.4 51.2-52.4 79.3C32 476 64.8 512 117.5 512c77.4 0 134-77.8 151.4-145.4 15.1-60.5 11.2-63.3 19.7-67.6 32.2-16.2 57.5-27 93.8-27 17.8 0 30.5 3.7 58.9 8.4 2.9 0 6.7-2.9 6.7-5.8 0-8-33.4-60.5-40.9-63.4zm-175.3-84.4c-9.3 44.7-18.6 89.6-27.8 134.3-2.3 10.2-13.3 7.8-22 7.8-38.3 0-49-41.8-49-73.1 0-47 18-109.3 61.8-133.4 7-4.1 14.8-6.7 22.6-6.7 18.6 0 20 13.3 20 28.7-.1 14.3-2.7 28.5-5.6 42.4z" ], + gofore: [ 400, 512, [], "f3a7", "M324 319.8h-13.2v34.7c-24.5 23.1-56.3 35.8-89.9 35.8-73.2 0-132.4-60.2-132.4-134.4 0-74.1 59.2-134.4 132.4-134.4 35.3 0 68.6 14 93.6 39.4l62.3-63.3C335 55.3 279.7 32 220.7 32 98 32 0 132.6 0 256c0 122.5 97 224 220.7 224 63.2 0 124.5-26.2 171-82.5-2-27.6-13.4-77.7-67.7-77.7zm-12.1-112.5H205.6v89H324c33.5 0 60.5 15.1 76 41.8v-30.6c0-65.2-40.4-100.2-88.1-100.2z" ], + goodreads: [ 448, 512, [], "f3a8", "M299.9 191.2c5.1 37.3-4.7 79-35.9 100.7-22.3 15.5-52.8 14.1-70.8 5.7-37.1-17.3-49.5-58.6-46.8-97.2 4.3-60.9 40.9-87.9 75.3-87.5 46.9-.2 71.8 31.8 78.2 78.3zM448 88v336c0 30.9-25.1 56-56 56H56c-30.9 0-56-25.1-56-56V88c0-30.9 25.1-56 56-56h336c30.9 0 56 25.1 56 56zM330 313.2s-.1-34-.1-217.3h-29v40.3c-.8.3-1.2-.5-1.6-1.2-9.6-20.7-35.9-46.3-76-46-51.9.4-87.2 31.2-100.6 77.8-4.3 14.9-5.8 30.1-5.5 45.6 1.7 77.9 45.1 117.8 112.4 115.2 28.9-1.1 54.5-17 69-45.2.5-1 1.1-1.9 1.7-2.9.2.1.4.1.6.2.3 3.8.2 30.7.1 34.5-.2 14.8-2 29.5-7.2 43.5-7.8 21-22.3 34.7-44.5 39.5-17.8 3.9-35.6 3.8-53.2-1.2-21.5-6.1-36.5-19-41.1-41.8-.3-1.6-1.3-1.3-2.3-1.3h-26.8c.8 10.6 3.2 20.3 8.5 29.2 24.2 40.5 82.7 48.5 128.2 37.4 49.9-12.3 67.3-54.9 67.4-106.3z" ], + "goodreads-g": [ 384, 512, [], "f3a9", "M42.6 403.3h2.8c12.7 0 25.5 0 38.2.1 1.6 0 3.1-.4 3.6 2.1 7.1 34.9 30 54.6 62.9 63.9 26.9 7.6 54.1 7.8 81.3 1.8 33.8-7.4 56-28.3 68-60.4 8-21.5 10.7-43.8 11-66.5.1-5.8.3-47-.2-52.8l-.9-.3c-.8 1.5-1.7 2.9-2.5 4.4-22.1 43.1-61.3 67.4-105.4 69.1-103 4-169.4-57-172-176.2-.5-23.7 1.8-46.9 8.3-69.7C58.3 47.7 112.3.6 191.6 0c61.3-.4 101.5 38.7 116.2 70.3.5 1.1 1.3 2.3 2.4 1.9V10.6h44.3c0 280.3.1 332.2.1 332.2-.1 78.5-26.7 143.7-103 162.2-69.5 16.9-159 4.8-196-57.2-8-13.5-11.8-28.3-13-44.5zM188.9 36.5c-52.5-.5-108.5 40.7-115 133.8-4.1 59 14.8 122.2 71.5 148.6 27.6 12.9 74.3 15 108.3-8.7 47.6-33.2 62.7-97 54.8-154-9.7-71.1-47.8-120-119.6-119.7z" ], + google: [ 488, 512, [], "f1a0", "M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z" ], + "google-drive": [ 512, 512, [], "f3aa", "M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z" ], + "google-play": [ 512, 512, [], "f3ab", "M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z" ], + "google-plus": [ 496, 512, [], "f2b3", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm-70.7 372c-68.8 0-124-55.5-124-124s55.2-124 124-124c31.3 0 60.1 11 83 32.3l-33.6 32.6c-13.2-12.9-31.3-19.1-49.4-19.1-42.9 0-77.2 35.5-77.2 78.1s34.2 78.1 77.2 78.1c32.6 0 64.9-19.1 70.1-53.3h-70.1v-42.6h116.9c1.3 6.8 1.9 13.6 1.9 20.7 0 70.8-47.5 121.2-118.8 121.2zm230.2-106.2v35.5H372v-35.5h-35.5v-35.5H372v-35.5h35.5v35.5h35.2v35.5h-35.2z" ], + "google-plus-g": [ 640, 512, [], "f0d5", "M386.061 228.496c1.834 9.692 3.143 19.384 3.143 31.956C389.204 370.205 315.599 448 204.8 448c-106.084 0-192-85.915-192-192s85.916-192 192-192c51.864 0 95.083 18.859 128.611 50.292l-52.126 50.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484 0-118.92 54.221-118.92 121.277 0 67.056 53.436 121.277 118.92 121.277 75.961 0 104.513-54.745 108.965-82.773H204.8v-66.009h181.261zm185.406 6.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001h-55.733z" ], + "google-plus-square": [ 448, 512, [], "f0d4", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM164 356c-55.3 0-100-44.7-100-100s44.7-100 100-100c27 0 49.5 9.8 67 26.2l-27.1 26.1c-7.4-7.1-20.3-15.4-39.8-15.4-34.1 0-61.9 28.2-61.9 63.2 0 34.9 27.8 63.2 61.9 63.2 39.6 0 54.4-28.5 56.8-43.1H164v-34.4h94.4c1 5 1.6 10.1 1.6 16.6 0 57.1-38.3 97.6-96 97.6zm220-81.8h-29v29h-29.2v-29h-29V245h29v-29H355v29h29v29.2z" ], + "google-wallet": [ 448, 512, [], "f1ee", "M156.8 126.8c37.6 60.6 64.2 113.1 84.3 162.5-8.3 33.8-18.8 66.5-31.3 98.3-13.2-52.3-26.5-101.3-56-148.5 6.5-36.4 2.3-73.6 3-112.3zM109.3 200H16.1c-6.5 0-10.5 7.5-6.5 12.7C51.8 267 81.3 330.5 101.3 400h103.5c-16.2-69.7-38.7-133.7-82.5-193.5-3-4-8-6.5-13-6.5zm47.8-88c68.5 108 130 234.5 138.2 368H409c-12-138-68.4-265-143.2-368H157.1zm251.8-68.5c-1.8-6.8-8.2-11.5-15.2-11.5h-88.3c-5.3 0-9 5-7.8 10.3 13.2 46.5 22.3 95.5 26.5 146 48.2 86.2 79.7 178.3 90.6 270.8 15.8-60.5 25.3-133.5 25.3-203 0-73.6-12.1-145.1-31.1-212.6z" ], + gratipay: [ 496, 512, [], "f184", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm114.6 226.4l-113 152.7-112.7-152.7c-8.7-11.9-19.1-50.4 13.6-72 28.1-18.1 54.6-4.2 68.5 11.9 15.9 17.9 46.6 16.9 61.7 0 13.9-16.1 40.4-30 68.1-11.9 32.9 21.6 22.6 60 13.8 72z" ], + grav: [ 512, 512, [], "f2d6", "M301.1 212c4.4 4.4 4.4 11.9 0 16.3l-9.7 9.7c-4.4 4.7-11.9 4.7-16.6 0l-10.5-10.5c-4.4-4.7-4.4-11.9 0-16.6l9.7-9.7c4.4-4.4 11.9-4.4 16.6 0l10.5 10.8zm-30.2-19.7c3-3 3-7.8 0-10.5-2.8-3-7.5-3-10.5 0-2.8 2.8-2.8 7.5 0 10.5 3.1 2.8 7.8 2.8 10.5 0zm-26 5.3c-3 2.8-3 7.5 0 10.2 2.8 3 7.5 3 10.5 0 2.8-2.8 2.8-7.5 0-10.2-3-3-7.7-3-10.5 0zm72.5-13.3c-19.9-14.4-33.8-43.2-11.9-68.1 21.6-24.9 40.7-17.2 59.8.8 11.9 11.3 29.3 24.9 17.2 48.2-12.5 23.5-45.1 33.2-65.1 19.1zm47.7-44.5c-8.9-10-23.3 6.9-15.5 16.1 7.4 9 32.1 2.4 15.5-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-66.2 42.6c2.5-16.1-20.2-16.6-25.2-25.7-13.6-24.1-27.7-36.8-54.5-30.4 11.6-8 23.5-6.1 23.5-6.1.3-6.4 0-13-9.4-24.9 3.9-12.5.3-22.4.3-22.4 15.5-8.6 26.8-24.4 29.1-43.2 3.6-31-18.8-59.2-49.8-62.8-22.1-2.5-43.7 7.7-54.3 25.7-23.2 40.1 1.4 70.9 22.4 81.4-14.4-1.4-34.3-11.9-40.1-34.3-6.6-25.7 2.8-49.8 8.9-61.4 0 0-4.4-5.8-8-8.9 0 0-13.8 0-24.6 5.3 11.9-15.2 25.2-14.4 25.2-14.4 0-6.4-.6-14.9-3.6-21.6-5.4-11-23.8-12.9-31.7 2.8.1-.2.3-.4.4-.5-5 11.9-1.1 55.9 16.9 87.2-2.5 1.4-9.1 6.1-13 10-21.6 9.7-56.2 60.3-56.2 60.3-28.2 10.8-77.2 50.9-70.6 79.7.3 3 1.4 5.5 3 7.5-2.8 2.2-5.5 5-8.3 8.3-11.9 13.8-5.3 35.2 17.7 24.4 15.8-7.2 29.6-20.2 36.3-30.4 0 0-5.5-5-16.3-4.4 27.7-6.6 34.3-9.4 46.2-9.1 8 3.9 8-34.3 8-34.3 0-14.7-2.2-31-11.1-41.5 12.5 12.2 29.1 32.7 28 60.6-.8 18.3-15.2 23-15.2 23-9.1 16.6-43.2 65.9-30.4 106 0 0-9.7-14.9-10.2-22.1-17.4 19.4-46.5 52.3-24.6 64.5 26.6 14.7 108.8-88.6 126.2-142.3 34.6-20.8 55.4-47.3 63.9-65 22 43.5 95.3 94.5 101.1 59z" ], + gripfire: [ 384, 512, [], "f3ac", "M171.8 503.8c0-5.3 4.8-12.2 4.8-22.3 0-15.2-13-39.9-78.1-86.6C64.2 365.8 32 336.4 32 286.6 32 171.9 179.1 110.1 179.1 18c0-3.3-.2-6.7-.6-10 5.1 2.4 39.1 43.3 39.1 90.4 0 80.5-105.1 129.2-105.1 203 0 26.9 16.6 47.2 32.6 69.5 22.5 30.2 44.2 56.9 44.2 86.5-.1 14.5-4.4 29.7-17.5 46.4zm146-241.4c1.5 8.4 2.2 16.6 2.2 24.6 0 51.8-29.4 97.5-67.3 136.8-1 1-2.2 2.4-3.2 2.4-3.6 0-35.5-41.6-35.5-53.2 0 0 41.8-55.7 41.8-96.9 0-10.8-2.7-21.7-9.1-33.4-1.5 32.3-55.7 87.7-58.1 87.7-2.7 0-17.9-22-17.9-42.1 0-5.3 1-10.7 3.2-15.8 2.4-5.5 56.6-72 56.6-116.7 0-6.2-1-12-3.4-17.1l-4-7.2c16.7 6.5 82.6 64.1 94.7 130.9" ], + grunt: [ 384, 512, [], "f3ad", "M61.3 189.3c-1.1 10 5.2 19.1 5.2 19.1.7-7.5 2.2-12.8 4-16.6.4 10.3 3.2 23.5 12.8 34.1 6.9 7.6 35.6 23.3 54.9 6.1 1 2.4 2.1 5.3 3 8.5 2.9 10.3-2.7 25.3-2.7 25.3s15.1-17.1 13.9-32.5c10.8-.5 21.4-8.4 21.1-19.5 0 0-18.9 10.4-35.5-8.8-9.7-11.2-40.9-42-83.1-31.8 4.3 1 8.9 2.4 13.5 4.1h-.1c-4.2 2-6.5 7.1-7 12zm28.3-1.8c19.5 11 37.4 25.7 44.9 37-5.7 3.3-21.7 10.4-38-1.7-10.3-7.6-9.8-26.2-6.9-35.3zm79.2 233.7c2.2 2.3 1.5 5.3.9 6.8-1.1 2.7-5.5 11.6-13 19.8-2.7 2.9-6.6 4.6-11 4.6-4.3 0-8.7-1.6-11.8-4.3-2.3-2.1-10.2-9.5-13.7-18.6-1.3-3.4-1-6.1.9-8.1 1.3-1.3 4-2.9 9.5-2.9H160c4.1 0 7 .9 8.8 2.7zm62.9-187.9c-1.2 15.5 13.9 32.5 13.9 32.5s-5.6-15-2.7-25.3c.9-3.2 2-6 3-8.5 19.3 17.3 48 1.5 54.8-6.1 9.6-10.6 12.3-23.8 12.8-34.1 1.8 3.8 3.4 9.1 4 16.6 0 0 6.4-9.1 5.2-19.1-.6-5-2.9-10-7-11.8h-.1c4.6-1.8 9.2-3.2 13.5-4.1-42.3-10.2-73.4 20.6-83.1 31.8-16.7 19.2-35.5 8.8-35.5 8.8-.2 10.9 10.4 18.9 21.2 19.3zm17.8-8.8c7.5-11.4 25.4-26 44.9-37 3 9.1 3.4 27.7-7 35.4-16.3 12.1-32.2 5-37.9 1.6-.1.1 0 0 0 0zM263 421.4c1.9 1.9 2.2 4.6.9 7.9-3.5 8.9-11.4 16.1-13.7 18.1-3.1 2.6-7.4 4.2-11.8 4.2s-8.3-1.6-11-4.5c-7.5-8-12-16.7-13-19.3-.6-1.5-1.3-4.4.9-6.7 1.7-1.8 4.7-2.7 8.9-2.7h29.4c5.4.1 8.1 1.7 9.4 3zm-98.3-251.5c9.9 6 18.8 8.1 27.3 8.3 8.5-.2 17.4-2.3 27.3-8.3 0 0-14.5 17.7-27.2 17.8h-.2c-12.7-.2-27.2-17.8-27.2-17.8zm184.5 147.4c-2.4 17.9-13 33.8-24.6 43.7-3.1-22.7-3.7-55.5-3.7-62.4 0-14.7 9.5-24.5 12.2-26.1 2.5-1.5 5.4-3 8.3-4.6 18-9.6 40.4-21.6 40.4-43.7 0-16.2-9.3-23.2-15.4-27.8-.8-.6-1.5-1.1-2.2-1.7-2.1-1.7-3.7-3-4.3-4.4-4.4-9.8-3.6-34.2-1.7-37.6.6-.6 16.7-20.9 11.8-39.2-2-7.4-6.9-13.3-14.1-17-5.3-2.7-11.9-4.2-19.5-4.5-.1-2-.5-3.9-.9-5.9-.6-2.6-1.1-5.3-.9-8.1.4-4.7.8-9 2.2-11.3 8.4-13.3 28.8-17.6 29-17.6l12.3-2.4-8.1-9.5c-.1-.2-17.3-17.5-46.3-17.5-7.9 0-16 1.3-24.1 3.9-24.2 7.8-42.9 30.5-49.4 39.3-3.1-1-6.3-1.9-9.6-2.7-4.2-15.8 9-38.5 9-38.5s-13.6-3-33.7 15.2c-2.6-6.5-8.1-20.5-1.8-37.2C184.6 10.1 177.2 26 175 40.4c-7.6-5.4-6.7-23.1-7.2-27.6-7.5.9-29.2 21.9-28.2 48.3-2 .5-3.9 1.1-5.9 1.7-6.5-8.8-25.1-31.5-49.4-39.3-7.9-2.2-16-3.5-23.9-3.5-29 0-46.1 17.3-46.3 17.5L6 46.9l12.3 2.4c.2 0 20.6 4.3 29 17.6 1.4 2.2 1.8 6.6 2.2 11.3.2 2.8-.4 5.5-.9 8.1-.4 1.9-.8 3.9-.9 5.9-7.7.3-14.2 1.8-19.5 4.5-7.2 3.7-12.1 9.6-14.1 17-5 18.2 11.2 38.5 11.8 39.2 1.9 3.4 2.7 27.8-1.7 37.6-.6 1.4-2.2 2.7-4.3 4.4-.7.5-1.4 1.1-2.2 1.7-6.1 4.6-15.4 11.7-15.4 27.8 0 22.1 22.4 34.1 40.4 43.7 3 1.6 5.8 3.1 8.3 4.6 2.7 1.6 12.2 11.4 12.2 26.1 0 6.9-.6 39.7-3.7 62.4-11.6-9.9-22.2-25.9-24.6-43.8 0 0-29.2 22.6-20.6 70.8 5.2 29.5 23.2 46.1 47 54.7 8.8 19.1 29.4 45.7 67.3 49.6C143 504.3 163 512 192.2 512h.2c29.1 0 49.1-7.7 63.6-19.5 37.9-3.9 58.5-30.5 67.3-49.6 23.8-8.7 41.7-25.2 47-54.7 8.2-48.4-21.1-70.9-21.1-70.9zM305.7 37.7c5.6-1.8 11.6-2.7 17.7-2.7 11 0 19.9 3 24.7 5-3.1 1.4-6.4 3.2-9.7 5.3-2.4-.4-5.6-.8-9.2-.8-10.5 0-20.5 3.1-28.7 8.9-12.3 8.7-18 16.9-20.7 22.4-2.2-1.3-4.5-2.5-7.1-3.7-1.6-.8-3.1-1.5-4.7-2.2 6.1-9.1 19.9-26.5 37.7-32.2zm21 18.2c-.8 1-1.6 2.1-2.3 3.2-3.3 5.2-3.9 11.6-4.4 17.8-.5 6.4-1.1 12.5-4.4 17-4.2.8-8.1 1.7-11.5 2.7-2.3-3.1-5.6-7-10.5-11.2 1.4-4.8 5.5-16.1 13.5-22.5 5.6-4.3 12.2-6.7 19.6-7zM45.6 45.3c-3.3-2.2-6.6-4-9.7-5.3 4.8-2 13.7-5 24.7-5 6.1 0 12 .9 17.7 2.7 17.8 5.8 31.6 23.2 37.7 32.1-1.6.7-3.2 1.4-4.8 2.2-2.5 1.2-4.9 2.5-7.1 3.7-2.6-5.4-8.3-13.7-20.7-22.4-8.3-5.8-18.2-8.9-28.8-8.9-3.4.1-6.6.5-9 .9zm44.7 40.1c-4.9 4.2-8.3 8-10.5 11.2-3.4-.9-7.3-1.9-11.5-2.7C65 89.5 64.5 83.4 64 77c-.5-6.2-1.1-12.6-4.4-17.8-.7-1.1-1.5-2.2-2.3-3.2 7.4.3 14 2.6 19.5 7 8 6.3 12.1 17.6 13.5 22.4zM58.1 259.9c-2.7-1.6-5.6-3.1-8.4-4.6-14.9-8-30.2-16.3-30.2-30.5 0-11.1 4.3-14.6 8.9-18.2l.5-.4c.7-.6 1.4-1.2 2.2-1.8-.9 7.2-1.9 13.3-2.7 14.9 0 0 12.1-15 15.7-44.3 1.4-11.5-1.1-34.3-5.1-43 .2 4.9 0 9.8-.3 14.4-.4-.8-.8-1.6-1.3-2.2-3.2-4-11.8-17.5-9.4-26.6.9-3.5 3.1-6 6.7-7.8 3.8-1.9 8.8-2.9 15.1-2.9 12.3 0 25.9 3.7 32.9 6 25.1 8 55.4 30.9 64.1 37.7.2.2.4.3.4.3l5.6 3.9-3.5-5.8c-.2-.3-19.1-31.4-53.2-46.5 2-2.9 7.4-8.1 21.6-15.1 21.4-10.5 46.5-15.8 74.3-15.8 27.9 0 52.9 5.3 74.3 15.8 14.2 6.9 19.6 12.2 21.6 15.1-34 15.1-52.9 46.2-53.1 46.5l-3.5 5.8 5.6-3.9s.2-.1.4-.3c8.7-6.8 39-29.8 64.1-37.7 7-2.2 20.6-6 32.9-6 6.3 0 11.3 1 15.1 2.9 3.5 1.8 5.7 4.4 6.7 7.8 2.5 9.1-6.1 22.6-9.4 26.6-.5.6-.9 1.3-1.3 2.2-.3-4.6-.5-9.5-.3-14.4-4 8.8-6.5 31.5-5.1 43 3.6 29.3 15.7 44.3 15.7 44.3-.8-1.6-1.8-7.7-2.7-14.9.7.6 1.5 1.2 2.2 1.8l.5.4c4.6 3.7 8.9 7.1 8.9 18.2 0 14.2-15.4 22.5-30.2 30.5-2.9 1.5-5.7 3.1-8.4 4.6-8.7 5-18 16.7-19.1 34.2-.9 14.6.9 49.9 3.4 75.9-12.4 4.8-26.7 6.4-39.7 6.8-2-4.1-3.9-8.5-5.5-13.1-.7-2-19.6-51.1-26.4-62.2 5.5 39 17.5 73.7 23.5 89.6-3.5-.5-7.3-.7-11.7-.7h-117c-4.4 0-8.3.3-11.7.7 6-15.9 18.1-50.6 23.5-89.6-6.8 11.2-25.7 60.3-26.4 62.2-1.6 4.6-3.5 9-5.5 13.1-13-.4-27.2-2-39.7-6.8 2.5-26 4.3-61.2 3.4-75.9-.9-17.4-10.3-29.2-19-34.2zM34.8 404.6c-12.1-20-8.7-54.1-3.7-59.1 10.9 34.4 47.2 44.3 74.4 45.4-2.7 4.2-5.2 7.6-7 10l-1.4 1.4c-7.2 7.8-8.6 18.5-4.1 31.8-22.7-.1-46.3-9.8-58.2-29.5zm45.7 43.5c6 1.1 12.2 1.9 18.6 2.4 3.5 8 7.4 15.9 12.3 23.1-14.4-5.9-24.4-16-30.9-25.5zM192 498.2c-60.6-.1-78.3-45.8-84.9-64.7-3.7-10.5-3.4-18.2.9-23.1 2.9-3.3 9.5-7.2 24.6-7.2h118.8c15.1 0 21.8 3.9 24.6 7.2 4.2 4.8 4.5 12.6.9 23.1-6.6 18.8-24.3 64.6-84.9 64.7zm80.6-24.6c4.9-7.2 8.8-15.1 12.3-23.1 6.4-.5 12.6-1.3 18.6-2.4-6.5 9.5-16.5 19.6-30.9 25.5zm76.6-69c-12 19.7-35.6 29.3-58.1 29.7 4.5-13.3 3.1-24.1-4.1-31.8-.4-.5-.9-1-1.4-1.5-1.8-2.4-4.3-5.8-7-10 27.2-1.2 63.5-11 74.4-45.4 5 5 8.4 39.1-3.8 59z" ], + gulp: [ 256, 512, [], "f3ae", "M209.8 391.1l-14.1 24.6-4.6 80.2c0 8.9-28.3 16.1-63.1 16.1s-63.1-7.2-63.1-16.1l-5.8-79.4-14.9-25.4c41.2 17.3 126 16.7 165.6 0zm-196-253.3l13.6 125.5c5.9-20 20.8-47 40-55.2 6.3-2.7 12.7-2.7 18.7.9 5.2 3 9.6 9.3 10.1 11.8 1.2 6.5-2 9.1-4.5 9.1-3 0-5.3-4.6-6.8-7.3-4.1-7.3-10.3-7.6-16.9-2.8-6.9 5-12.9 13.4-17.1 20.7-5.1 8.8-9.4 18.5-12 28.2-1.5 5.6-2.9 14.6-.6 19.9 1 2.2 2.5 3.6 4.9 3.6 5 0 12.3-6.6 15.8-10.1 4.5-4.5 10.3-11.5 12.5-16l5.2-15.5c2.6-6.8 9.9-5.6 9.9 0 0 10.2-3.7 13.6-10 34.7-5.8 19.5-7.6 25.8-7.6 25.8-.7 2.8-3.4 7.5-6.3 7.5-1.2 0-2.1-.4-2.6-1.2-1-1.4-.9-5.3-.8-6.3.2-3.2 6.3-22.2 7.3-25.2-2 2.2-4.1 4.4-6.4 6.6-5.4 5.1-14.1 11.8-21.5 11.8-3.4 0-5.6-.9-7.7-2.4l7.6 79.6c2 5 39.2 17.1 88.2 17.1 49.1 0 86.3-12.2 88.2-17.1l10.9-94.6c-5.7 5.2-12.3 11.6-19.6 14.8-5.4 2.3-17.4 3.8-17.4-5.7 0-5.2 9.1-14.8 14.4-21.5 1.4-1.7 4.7-5.9 4.7-8.1 0-2.9-6-2.2-11.7 2.5-3.2 2.7-6.2 6.3-8.7 9.7-4.3 6-6.6 11.2-8.5 15.5-6.2 14.2-4.1 8.6-9.1 22-5 13.3-4.2 11.8-5.2 14-.9 1.9-2.2 3.5-4 4.5-1.9 1-4.5.9-6.1-.3-.9-.6-1.3-1.9-1.3-3.7 0-.9.1-1.8.3-2.7 1.5-6.1 7.8-18.1 15-34.3 1.6-3.7 1-2.6.8-2.3-6.2 6-10.9 8.9-14.4 10.5-5.8 2.6-13 2.6-14.5-4.1-.1-.4-.1-.8-.2-1.2-11.8 9.2-24.3 11.7-20-8.1-4.6 8.2-12.6 14.9-22.4 14.9-4.1 0-7.1-1.4-8.6-5.1-2.3-5.5 1.3-14.9 4.6-23.8 1.7-4.5 4-9.9 7.1-16.2 1.6-3.4 4.2-5.4 7.6-4.5.6.2 1.1.4 1.6.7 2.6 1.8 1.6 4.5.3 7.2-3.8 7.5-7.1 13-9.3 20.8-.9 3.3-2 9 1.5 9 2.4 0 4.7-.8 6.9-2.4 4.6-3.4 8.3-8.5 11.1-13.5 2-3.6 4.4-8.3 5.6-12.3.5-1.7 1.1-3.3 1.8-4.8 1.1-2.5 2.6-5.1 5.2-5.1 1.3 0 2.4.5 3.2 1.5 1.7 2.2 1.3 4.5.4 6.9-2 5.6-4.7 10.6-6.9 16.7-1.3 3.5-2.7 8-2.7 11.7 0 3.4 3.7 2.6 6.8 1.2 2.4-1.1 4.8-2.8 6.8-4.5 1.2-4.9.9-3.8 26.4-68.2 1.3-3.3 3.7-4.7 6.1-4.7 1.2 0 2.2.4 3.2 1.1 1.7 1.3 1.7 4.1 1 6.2-.7 1.9-.6 1.3-4.5 10.5-5.2 12.1-8.6 20.8-13.2 31.9-1.9 4.6-7.7 18.9-8.7 22.3-.6 2.2-1.3 5.8 1 5.8 5.4 0 19.3-13.1 23.1-17 .2-.3.5-.4.9-.6.6-1.9 1.2-3.7 1.7-5.5 1.4-3.8 2.7-8.2 5.3-11.3.8-1 1.7-1.6 2.7-1.6 2.8 0 4.2 1.2 4.2 4 0 1.1-.7 5.1-1.1 6.2 1.4-1.5 2.9-3 4.5-4.5 15-13.9 25.7-6.8 25.7.2 0 7.4-8.9 17.7-13.8 23.4-1.6 1.9-4.9 5.4-5 6.4 0 1.3.9 1.8 2.2 1.8 2 0 6.4-3.5 8-4.7 5-3.9 11.8-9.9 16.6-14.1l14.8-136.8c-30.5 17.1-197.6 17.2-228.3.2zm229.7-8.5c0 21-231.2 21-231.2 0 0-8.8 51.8-15.9 115.6-15.9 9 0 17.8.1 26.3.4l12.6-48.7L228.1.6c1.4-1.4 5.8-.2 9.9 3.5s6.6 7.9 5.3 9.3l-.1.1L185.9 74l-10 40.7c39.9 2.6 67.6 8.1 67.6 14.6zm-69.4 4.6c0-.8-.9-1.5-2.5-2.1l-.2.8c0 1.3-5 2.4-11.1 2.4s-11.1-1.1-11.1-2.4c0-.1 0-.2.1-.3l.2-.7c-1.8.6-3 1.4-3 2.3 0 2.1 6.2 3.7 13.7 3.7 7.7.1 13.9-1.6 13.9-3.7z" ], + "hacker-news": [ 448, 512, [], "f1d4", "M0 32v448h448V32H0zm21.2 197.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z" ], + "hacker-news-square": [ 448, 512, [], "f3af", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM21.2 229.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z" ], + hips: [ 640, 512, [], "f452", "M0 80.2c0-1.8.9-2.7 2.7-2.7h40.9c1.9 0 2.8.9 2.8 2.7v81.2c15.2-7.7 31.7-11.5 49.8-11.4 24 .1 44.2 6.2 60.3 18 18.7 13.5 28 31.9 28 55.3v136.1c0 1.9-.9 2.8-2.7 2.8h-27.3c-9.1 0-16.4-7.3-16.4-16.3V223.3c0-.9 2.7-27-45.8-27-48.6 0-45.8 26.2-45.8 27v136.1c0 1.9-.9 2.8-2.8 2.8h-41c-1.8 0-2.7-.9-2.7-2.8V80.2zm497.7 221.5c13.7 10.2 34.1 19.1 58.4 19.1 23.3 0 32.8-4.5 36.5-13.6 3-7.9-.6-16.1-12.2-21.2l-53.6-23.5c-21.4-9.4-33.8-24-37.2-43.6-5.7-33.7 22.2-53.3 22.7-53.7 13.2-9.6 32-15.4 58.5-15.4 19 0 37.4 3.3 55.1 9.9 1.3.5 1.9 1.3 1.9 2.6V207c0 2.1-2.3 3.4-4 2.4-39.7-20.7-76.6-12.3-84-6.8-6.6 4.9-6 12.5 2.6 16.1L600 244c16.5 7.1 28.1 18.4 34.9 34.1 5.5 12.6 6.6 25.6 3.1 39.1-9.6 36.9-44.9 45.5-45.6 45.8-10.5 3.1-23.6 4.3-36.3 4.3-16.6 0-32.6-2.7-48.2-8.2-9.7-3.4-14.6-10.3-14.6-20.7V304c0-2.1 2.3-3.7 4.4-2.3zM376.2 149.8c-31.7 0-104.2 20.1-104.2 103.5v183.5c0 .8.6 2.7 2.7 2.7h40.9c1.9 0 2.8-.9 2.8-2.7V348c16.5 12.7 35.8 19.1 57.7 19.1 60.5 0 108.7-48.5 108.7-108.7.1-60.3-48.2-108.6-108.6-108.6zm0 170.9c-17.2 0-31.9-6.1-44-18.2-12.2-12.2-18.2-26.8-18.2-44 0-34.5 27.6-62.2 62.2-62.2 34.5 0 62.2 27.6 62.2 62.2.1 34.3-27.3 62.2-62.2 62.2zm-124.6 38.7c0 1.9-.9 2.8-2.8 2.8h-40.9c-1.6 0-2.7-1.4-2.7-2.8V157.6c0-1.4 1.1-2.8 2.7-2.8h40.9c1.9 0 2.8.9 2.8 2.8v201.8M228.3 72.5c15.9 0 28.9 12.7 28.9 28.9 0 15.8-12.7 28.9-28.9 28.9s-28.9-13.3-28.9-28.9c.1-16 13-28.9 28.9-28.9" ], + "hire-a-helper": [ 512, 512, [], "f3b0", "M443.1 0H71.9C67.9 37.3 37.4 67.8 0 71.7v371.5c37.4 4.9 66 32.4 71.9 68.8h372.2c3-36.4 32.5-65.8 67.9-69.8V71.7c-36.4-5.9-65-35.3-68.9-71.7zm-37 404.9c-36.3 0-18.8-2-55.1-2-35.8 0-21 2-56.1 2-5.9 0-4.9-8.2 0-9.8 22.8-7.6 22.9-10.2 24.6-12.8 10.4-15.6 5.9-83 5.9-113 0-5.3-6.4-12.8-13.8-12.8H200.4c-7.4 0-13.8 7.5-13.8 12.8 0 30-4.5 97.4 5.9 113 1.7 2.5 1.8 5.2 24.6 12.8 4.9 1.6 6 9.8 0 9.8-35.1 0-20.3-2-56.1-2-36.3 0-18.8 2-55.1 2-7.9 0-5.8-10.8 0-10.8 10.2-3.4 13.5-3.5 21.7-13.8 7.7-12.9 7.9-44.4 7.9-127.8V151.3c0-22.2-12.2-28.3-28.6-32.4-8.8-2.2-4-11.8 1-11.8 36.5 0 20.6 2 57.1 2 32.7 0 16.5-2 49.2-2 3.3 0 8.5 8.3 1 10.8-4.9 1.6-27.6 3.7-27.6 39.3 0 45.6-.2 55.8 1 68.8 0 1.3 2.3 12.8 12.8 12.8h109.2c10.5 0 12.8-11.5 12.8-12.8 1.2-13 1-23.2 1-68.8 0-35.6-22.7-37.7-27.6-39.3-7.5-2.5-2.3-10.8 1-10.8 32.7 0 16.5 2 49.2 2 36.5 0 20.6-2 57.1-2 4.9 0 9.9 9.6 1 11.8-16.4 4.1-28.6 10.3-28.6 32.4v101.2c0 83.4.1 114.9 7.9 127.8 8.2 10.2 11.4 10.4 21.7 13.8 5.8 0 7.8 10.8 0 10.8z" ], + hooli: [ 640, 512, [], "f427", "M508.4 352h57.9V156.7L508.4 184v168zm73.7-110.5V352H640V241.5h-57.9zm-250.7-8.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.2-1.1-50.4 17.1c-1.9 1.9-3.7 3.9-5.3 6-38.2-29.6-72.5-46.5-102.1-61.1v-20.7l-22.5 10.6c-54.4-22.1-89-18.2-97.3.1 0 0-24.9 32.8 61.9 110.9v-31c-48.8-54.6-39-76.1-35.3-79.2 13.5-11.4 37.5-8 64.4 2.1L65.2 184v63.3c13.1 14.7 30.5 31.5 53.5 50.4l4.5 3.6v-29.8c0-6.9 1.7-18.2 10.8-18.2s10.6 6.9 10.6 15V317c18 12.2 37.3 22.1 57.7 29.6v-93.9c0-18.7-13.4-37.4-40.6-37.4-15.8-.1-30.5 8.2-38.5 21.9v-54.3c41.9 20.9 83.9 46.5 99.9 58.3-10.2 14.6-9.3 28.1-9.3 43.7 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.7-33.8 16.7-52.5 0-18.5 1.5-34.2-16.7-52.3zm-39.7 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm185.7-71.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.3-1.1-50.4 17.1c-18.2 18.2-16.8 33.9-16.8 52.6 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.8-33.8 16.8-52.5-.1-18.8 1.3-34.5-16.8-52.6zm-39.8 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm173.5-73c15.9 0 28.9-12.9 28.9-28.9s-12.9-24.5-28.9-24.5c-15.9 0-28.9 8.6-28.9 24.5s12.9 28.9 28.9 28.9zM144.5 352l38.3.8c-13.2-4.6-26-10.2-38.3-16.8v16zm-21.4 0v-28.6c-6.5-4.2-13-8.7-19.4-13.6-14.8-11.2-27.5-21.7-38.5-31.5V352h57.9zm59.7.8c36.5 12.5 69.9 14.2 94.7 7.2-19.9.2-45.8-2.6-75.3-13.3v5.3l-19.4.8z" ], + hornbill: [ 509, 512, [], "f592", "M75.37 370.3c2.14 15.83-5.77 31.98-20.94 39.29-18.85 9.1-41.55 1.17-50.68-17.68-9.08-18.83-1.13-41.58 17.7-50.65 7.05-3.4 14.63-4.42 21.85-3.38-78.28-111.35 52-190.53 52-190.53-5.86 43.04-8.24 91.16-8.24 91.16-67.31 41.45.92 64.06 39.81 72.87 19.77 53.62 71.18 91.94 131.66 91.94 1.92 0 3.77-.21 5.67-.28l.11 18.86c-99.22 1.39-158.7-29.14-188.94-51.6zM183.38 42.6c.89-7-.1-14.33-3.39-21.15-9.1-18.84-31.82-26.78-50.66-17.69-18.86 9.1-26.8 31.83-17.69 50.68 6.98 14.47 22.02 22.42 37.18 21.23-22.55 29.91-53.83 89.57-52.42 190.03l21.84-.15c-.02-.9-.14-1.77-.14-2.68 0-58.95 36.37-109.33 87.85-130.16 8.01-37.75 30.74-114.3 73.84-44.29 0 0 48.14 2.38 91.18 8.24 0-.01-77.84-128.03-187.59-54.06zm304.18 134.17c18.84-9.09 26.81-31.81 17.7-50.65-9.1-18.85-31.83-26.77-50.67-17.69-15.27 7.37-23.19 23.69-20.87 39.64-31.71-21.94-89.84-49.05-183.45-47.74l.14 22.5c2.7-.15 5.39-.41 8.14-.41 59.3 0 109.9 36.8 130.49 88.76 39.1 9.02 105.06 31.58 38.46 72.54 0 0-2.34 48.13-8.21 91.16 0 0 133.45-81.16 48.96-194.61 6.43.5 13.07-.49 19.31-3.5zM373.05 436.24c21.43-32.46 46.42-89.69 45.14-179.66l-19.52.14c.08 2.06.3 4.07.3 6.15 0 60.27-38.05 111.55-91.39 131.45-8.85 38.95-31.44 106.66-72.77 39.49 0 0-48.12-2.34-91.19-8.22 0 0 79.92 131.34 191.9 50.97.31 4.72 1.45 9.45 3.64 13.97 9.06 18.89 31.8 26.78 50.64 17.71 18.86-9.1 26.79-31.83 17.7-50.65-6.56-13.62-20.26-21.43-34.45-21.35z" ], + hotjar: [ 448, 512, [], "f3b1", "M414.9 161.5C340.2 29 121.1 0 121.1 0S222.2 110.4 93 197.7C11.3 252.8-21 324.4 14 402.6c26.8 59.9 83.5 84.3 144.6 93.4-29.2-55.1-6.6-122.4-4.1-129.6 57.1 86.4 165 0 110.8-93.9 71 15.4 81.6 138.6 27.1 215.5 80.5-25.3 134.1-88.9 148.8-145.6 15.5-59.3 3.7-127.9-26.3-180.9z" ], + houzz: [ 414, 512, [], "f27c", "M258.9 330.7H154.3V480H0V32h109.5v104.5l305.1 85.6V480H258.9V330.7z" ], + html5: [ 384, 512, [], "f13b", "M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z" ], + hubspot: [ 512, 512, [], "f3b2", "M267.4 211.6c-25.1 23.7-40.8 57.3-40.8 94.6 0 29.3 9.7 56.3 26 78L203.1 434c-4.4-1.6-9.1-2.5-14-2.5-10.8 0-20.9 4.2-28.5 11.8-7.6 7.6-11.8 17.8-11.8 28.6s4.2 20.9 11.8 28.5c7.6 7.6 17.8 11.6 28.5 11.6 10.8 0 20.9-3.9 28.6-11.6 7.6-7.6 11.8-17.8 11.8-28.5 0-4.2-.6-8.2-1.9-12.1l50-50.2c22 16.9 49.4 26.9 79.3 26.9 71.9 0 130-58.3 130-130.2 0-65.2-47.7-119.2-110.2-128.7V116c17.5-7.4 28.2-23.8 28.2-42.9 0-26.1-20.9-47.9-47-47.9S311.2 47 311.2 73.1c0 19.1 10.7 35.5 28.2 42.9v61.2c-15.2 2.1-29.6 6.7-42.7 13.6-27.6-20.9-117.5-85.7-168.9-124.8 1.2-4.4 2-9 2-13.8C129.8 23.4 106.3 0 77.4 0 48.6 0 25.2 23.4 25.2 52.2c0 28.9 23.4 52.3 52.2 52.3 9.8 0 18.9-2.9 26.8-7.6l163.2 114.7zm89.5 163.6c-38.1 0-69-30.9-69-69s30.9-69 69-69 69 30.9 69 69-30.9 69-69 69z" ], + imdb: [ 448, 512, [], "f2d8", "M350.5 288.7c0 5.4 1.6 14.4-6.2 14.4-1.6 0-3-.8-3.8-2.4-2.2-5.1-1.1-44.1-1.1-44.7 0-3.8-1.1-12.7 4.9-12.7 7.3 0 6.2 7.3 6.2 12.7v32.7zM265 229.9c0-9.7 1.6-16-10.3-16v83.7c12.2.3 10.3-8.7 10.3-18.4v-49.3zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM21.3 228.8c-.1.1-.2.3-.3.4h.3v-.4zM97 192H64v127.8h33V192zm113.3 0h-43.1l-7.6 59.9c-2.7-20-5.4-40.1-8.7-59.9h-42.8v127.8h29v-84.5l12.2 84.5h20.6l11.6-86.4v86.4h28.7V192zm86.3 45.3c0-8.1.3-16.8-1.4-24.4-4.3-22.5-31.4-20.9-49-20.9h-24.6v127.8c86.1.1 75 6 75-82.5zm85.9 17.3c0-17.3-.8-30.1-22.2-30.1-8.9 0-14.9 2.7-20.9 9.2V192h-31.7v127.8h29.8l1.9-8.1c5.7 6.8 11.9 9.8 20.9 9.8 19.8 0 22.2-15.2 22.2-30.9v-36z" ], + instagram: [ 448, 512, [], "f16d", "M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z" ], + "internet-explorer": [ 512, 512, [], "f26b", "M483.049 159.706c10.855-24.575 21.424-60.438 21.424-87.871 0-72.722-79.641-98.371-209.673-38.577-107.632-7.181-211.221 73.67-237.098 186.457 30.852-34.862 78.271-82.298 121.977-101.158C125.404 166.85 79.128 228.002 43.992 291.725 23.246 329.651 0 390.94 0 436.747c0 98.575 92.854 86.5 180.251 42.006 31.423 15.43 66.559 15.573 101.695 15.573 97.124 0 184.249-54.294 216.814-146.022H377.927c-52.509 88.593-196.819 52.996-196.819-47.436H509.9c6.407-43.581-1.655-95.715-26.851-141.162zM64.559 346.877c17.711 51.15 53.703 95.871 100.266 123.304-88.741 48.94-173.267 29.096-100.266-123.304zm115.977-108.873c2-55.151 50.276-94.871 103.98-94.871 53.418 0 101.981 39.72 103.981 94.871H180.536zm184.536-187.6c21.425-10.287 48.563-22.003 72.558-22.003 31.422 0 54.274 21.717 54.274 53.722 0 20.003-7.427 49.007-14.569 67.867-26.28-42.292-65.986-81.584-112.263-99.586z" ], + ioxhost: [ 640, 512, [], "f208", "M616 160h-67.3C511.2 70.7 422.9 8 320 8 183 8 72 119 72 256c0 16.4 1.6 32.5 4.7 48H24c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h67.3c37.5 89.3 125.8 152 228.7 152 137 0 248-111 248-248 0-16.4-1.6-32.5-4.7-48H616c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24zm-96 96c0 110.5-89.5 200-200 200-75.7 0-141.6-42-175.5-104H424c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24H125.8c-3.8-15.4-5.8-31.4-5.8-48 0-110.5 89.5-200 200-200 75.7 0 141.6 42 175.5 104H216c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h298.2c3.8 15.4 5.8 31.4 5.8 48zm-304-24h208c13.3 0 24 10.7 24 24 0 13.2-10.7 24-24 24H216c-13.3 0-24-10.7-24-24 0-13.2 10.7-24 24-24z" ], + itunes: [ 448, 512, [], "f3b4", "M223.6 80.3C129 80.3 52.5 157 52.5 251.5S129 422.8 223.6 422.8s171.2-76.7 171.2-171.2c0-94.6-76.7-171.3-171.2-171.3zm79.4 240c-3.2 13.6-13.5 21.2-27.3 23.8-12.1 2.2-22.2 2.8-31.9-5-11.8-10-12-26.4-1.4-36.8 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 3.2-3.6 2.2-2 2.2-80.8 0-5.6-2.7-7.1-8.4-6.1-4 .7-91.9 17.1-91.9 17.1-5 1.1-6.7 2.6-6.7 8.3 0 116.1.5 110.8-1.2 118.5-2.1 9-7.6 15.8-14.9 19.6-8.3 4.6-23.4 6.6-31.4 5.2-21.4-4-28.9-28.7-14.4-42.9 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 5-5.7.9-127 2.6-133.7.4-2.6 1.5-4.8 3.5-6.4 2.1-1.7 5.8-2.7 6.7-2.7 101-19 113.3-21.4 115.1-21.4 5.7-.4 9 3 9 8.7-.1 170.6.4 161.4-1 167.6zM345.2 32H102.8C45.9 32 0 77.9 0 134.8v242.4C0 434.1 45.9 480 102.8 480h242.4c57 0 102.8-45.9 102.8-102.8V134.8C448 77.9 402.1 32 345.2 32zM223.6 444c-106.3 0-192.5-86.2-192.5-192.5S117.3 59 223.6 59s192.5 86.2 192.5 192.5S329.9 444 223.6 444z" ], + "itunes-note": [ 384, 512, [], "f3b5", "M381.9 388.2c-6.4 27.4-27.2 42.8-55.1 48-24.5 4.5-44.9 5.6-64.5-10.2-23.9-20.1-24.2-53.4-2.7-74.4 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 6.4-7.2 4.4-4.1 4.4-163.2 0-11.2-5.5-14.3-17-12.3-8.2 1.4-185.7 34.6-185.7 34.6-10.2 2.2-13.4 5.2-13.4 16.7 0 234.7 1.1 223.9-2.5 239.5-4.2 18.2-15.4 31.9-30.2 39.5-16.8 9.3-47.2 13.4-63.4 10.4-43.2-8.1-58.4-58-29.1-86.6 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 10.1-11.5 1.8-256.6 5.2-270.2.8-5.2 3-9.6 7.1-12.9 4.2-3.5 11.8-5.5 13.4-5.5 204-38.2 228.9-43.1 232.4-43.1 11.5-.8 18.1 6 18.1 17.6.2 344.5 1.1 326-1.8 338.5z" ], + java: [ 377, 512, [], "f4e4", "M121.6 396s-19.6 11.4 13.9 15.2c40.6 4.6 61.3 4 106-4.5 0 0 11.8 7.4 28.2 13.8C169.5 463.4 42.9 418 121.6 396m-12.2-56.1s-21.9 16.2 11.6 19.7c43.3 4.5 77.6 4.8 136.8-6.6 0 0 8.2 8.3 21.1 12.8-121.3 35.5-256.3 2.9-169.5-25.9m103.2-95.1c24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3.1 0-175.2 43.8-91.5 140.2m132.6 192.6s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6.7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2 204.2 33.2 372.4-14.9 319.4-38.8M131 281.8s-93.1 22.1-33 30.1c25.4 3.4 76 2.6 123.1-1.3 38.5-3.2 77.2-10.2 77.2-10.2s-13.6 5.8-23.4 12.5c-94.5 24.9-277 13.3-224.5-12.1 44.5-21.4 80.6-19 80.6-19m167 93.3c96.1-49.9 51.6-97.9 20.6-91.4-7.6 1.6-11 3-11 3s2.8-4.4 8.2-6.3c61.3-21.6 108.5 63.6-19.8 97.3 0-.1 1.5-1.4 2-2.6M240 0s53.2 53.2-50.5 135c-83.1 65.6-19 103.1 0 145.8-48.5-43.8-84.1-82.3-60.2-118.2C164.4 110.1 261.5 84.5 240 0m-99.5 510.4c92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6" ], + "jedi-order": [ 448, 512, [], "f50e", "M231.89 335.72l31.44-45.89-20.18 55.5 62.56 9.09-62.56 9.08 24.22 47.43s-30.22-31.77-34.49-36.25c1.76 68.78 2.19 85.7 2.19 85.7s154.4-71.65 68.62-230.09c0 0 106.97-118.07 10.09-190.73 0 0 165.5 99.91 60.55 271.46 0 0 86.78-84.77 41.37-170.54 0 0 78.71 111.01-17.16 233.11 0 0 26.24-16.15 49.45-77.71 0 0-16.93 183.26-221.96 185.66v.02h-4.08v-.02C16.93 479.14 0 295.88 0 295.88c23.21 61.56 49.44 77.71 49.44 77.71-95.87-122.11-17.15-233.11-17.15-233.11-45.41 85.78 41.38 170.54 41.38 170.54-104.95-171.56 60.54-271.46 60.54-271.46-96.88 72.66 10.09 190.73 10.09 190.73-85.78 158.44 68.62 230.09 68.62 230.09s.43-16.93 2.19-85.7l-34.48 36.25 24.22-47.43-62.56-9.08 62.56-9.09-20.18-55.5 31.44 45.89c2.25-87.85 7.82-305.82 7.85-306.85l.01-2.43.02 1 .03-1 .01 2.43c.05 1.72 5.61 219.2 7.86 306.85z" ], + jenkins: [ 512, 512, [], "f3b6", "M487.1 425c-1.4-11.2-19-23.1-28.2-31.9-5.1-5-29-23.1-30.4-29.9-1.4-6.6 9.7-21.5 13.3-28.9 5.1-10.7 8.8-23.7 11.3-32.6 18.8-66.1 20.7-156.9-6.2-211.2-10.2-20.6-38.6-49-56.4-62.5-42-31.7-119.6-35.3-170.1-16.6-14.1 5.2-27.8 9.8-40.1 17.1-33.1 19.4-68.3 32.5-78.1 71.6-24.2 10.8-31.5 41.8-30.3 77.8.2 7 4.1 15.8 2.7 22.4-.7 3.3-5.2 7.6-6.1 9.8-11.6 27.7-2.3 64 11.1 83.7 8.1 11.9 21.5 22.4 39.2 25.2.7 10.6 3.3 19.7 8.2 30.4 3.1 6.8 14.7 19 10.4 27.7-2.2 4.4-21 13.8-27.3 17.6C89 407.2 73.7 415 54.2 429c-12.6 9-32.3 10.2-29.2 31.1 2.1 14.1 10.1 31.6 14.7 45.8.7 2 1.4 4.1 2.1 6h422c4.9-15.3 9.7-30.9 14.6-47.2 3.4-11.4 10.2-27.8 8.7-39.7zM205.9 33.7c1.8-.5 3.4.7 4.9 2.4-.2 5.2-5.4 5.1-8.9 6.8-5.4 6.7-13.4 9.8-20 17.2-6.8 7.5-14.4 27.7-23.4 30-4.5 1.1-9.7-.8-13.6-.5-10.4.7-17.7 6-28.3 7.5 13.6-29.9 56.1-54 89.3-63.4zm-104.8 93.6c13.5-14.9 32.1-24.1 54.8-25.9 11.7 29.7-8.4 65-.9 97.6 2.3 9.9 10.2 25.4-2.4 25.7.3-28.3-34.8-46.3-61.3-29.6-1.8-21.5-4.9-51.7 9.8-67.8zm36.7 200.2c-1-4.1-2.7-12.9-2.3-15.1 1.6-8.7 17.1-12.5 11-24.7-11.3-.1-13.8 10.2-24.1 11.3-26.7 2.6-45.6-35.4-44.4-58.4 1-19.5 17.6-38.2 40.1-35.8 16 1.8 21.4 19.2 24.5 34.7 9.2.5 22.5-.4 26.9-7.6-.6-17.5-8.8-31.6-8.2-47.7 1-30.3 17.5-57.6 4.8-87.4 13.6-30.9 53.5-55.3 83.1-70 36.6-18.3 94.9-3.7 129.3 15.8 19.7 11.1 34.4 32.7 48.3 50.7-19.5-5.8-36.1 4.2-33.1 20.3 16.3-14.9 44.2-.2 52.5 16.4 7.9 15.8 7.8 39.3 9 62.8 2.9 57-10.4 115.9-39.1 157.1-7.7 11-14.1 23-24.9 30.6-26 18.2-65.4 34.7-99.2 23.4-44.7-15-65-44.8-89.5-78.8.7 18.7 13.8 34.1 26.8 48.4 11.3 12.5 25 26.6 39.7 32.4-12.3-2.9-31.1-3.8-36.2 7.2-28.6-1.9-55.1-4.8-68.7-24.2-10.6-15.4-21.4-41.4-26.3-61.4zm222 124.1c4.1-3 11.1-2.9 17.4-3.6-5.4-2.7-13-3.7-19.3-2.2-.1-4.2-2-6.8-3.2-10.2 10.6-3.8 35.5-28.5 49.6-20.3 6.7 3.9 9.5 26.2 10.1 37 .4 9-.8 18-4.5 22.8-18.8-.6-35.8-2.8-50.7-7 .9-6.1-1-12.1.6-16.5zm-17.2-20c-16.8.8-26-1.2-38.3-10.8.2-.8 1.4-.5 1.5-1.4 18 8 40.8-3.3 59-4.9-7.9 5.1-14.6 11.6-22.2 17.1zm-12.1 33.2c-1.6-9.4-3.5-12-2.8-20.2 25-16.6 29.7 28.6 2.8 20.2zM226 438.6c-11.6-.7-48.1-14-38.5-23.7 9.4 6.5 27.5 4.9 41.3 7.3.8 4.4-2.8 10.2-2.8 16.4zM57.7 497.1c-4.3-12.7-9.2-25.1-14.8-36.9 30.8-23.8 65.3-48.9 102.2-63.5 2.8-1.1 23.2 25.4 26.2 27.6 16.5 11.7 37 21 56.2 30.2 1.2 8.8 3.9 20.2 8.7 35.5.7 2.3 1.4 4.7 2.2 7.2H57.7zm240.6 5.7h-.8c.3-.2.5-.4.8-.5v.5zm7.5-5.7c2.1-1.4 4.3-2.8 6.4-4.3 1.1 1.4 2.2 2.8 3.2 4.3h-9.6zm15.1-24.7c-10.8 7.3-20.6 18.3-33.3 25.2-6 3.3-27 11.7-33.4 10.2-3.6-.8-3.9-5.3-5.4-9.5-3.1-9-10.1-23.4-10.8-37-.8-17.2-2.5-46 16-42.4 14.9 2.9 32.3 9.7 43.9 16.1 7.1 3.9 11.1 8.6 21.9 9.5-.1 1.4-.1 2.8-.2 4.3-5.9 3.9-15.3 3.8-21.8 7.1 9.5.4 17 2.7 23.5 5.9-.1 3.4-.3 7-.4 10.6zm53.4 24.7h-14c-.1-3.2-2.8-5.8-6.1-5.8s-5.9 2.6-6.1 5.8h-17.4c-2.8-4.4-5.7-8.6-8.9-12.5 2.1-2.2 4-4.7 6-6.9 9 3.7 14.8-4.9 21.7-4.2 7.9.8 14.2 11.7 25.4 11l-.6 12.6zm8.7 0c.2-4 .4-7.8.6-11.5 15.6-7.3 29 1.3 35.7 11.5H383zm83.4-37c-2.3 11.2-5.8 24-9.9 37.1-.2-.1-.4-.1-.6-.1H428c.6-1.1 1.2-2.2 1.9-3.3-2.6-6.1-9-8.7-10.9-15.5 12.1-22.7 6.5-93.4-24.2-78.5 4.3-6.3 15.6-11.5 20.8-19.3 13 10.4 20.8 20.3 33.2 31.4 6.8 6 20 13.3 21.4 23.1.8 5.5-2.6 18.9-3.8 25.1zM222.2 130.5c5.4-14.9 27.2-34.7 45-32 7.7 1.2 18 8.2 12.2 17.7-30.2-7-45.2 12.6-54.4 33.1-8.1-2-4.9-13.1-2.8-18.8zm184.1 63.1c8.2-3.6 22.4-.7 29.6-5.3-4.2-11.5-10.3-21.4-9.3-37.7.5 0 1 0 1.4.1 6.8 14.2 12.7 29.2 21.4 41.7-5.7 13.5-43.6 25.4-43.1 1.2zm20.4-43zm-117.2 45.7c-6.8-10.9-19-32.5-14.5-45.3 6.5 11.9 8.6 24.4 17.8 33.3 4.1 4 12.2 9 8.2 20.2-.9 2.7-7.8 8.6-11.7 9.7-14.4 4.3-47.9.9-36.6-17.1 11.9.7 27.9 7.8 36.8-.8zm27.3 70c3.8 6.6 1.4 18.7 12.1 20.6 20.2 3.4 43.6-12.3 58.1-17.8 9-15.2-.8-20.7-8.9-30.5-16.6-20-38.8-44.8-38-74.7 6.7-4.9 7.3 7.4 8.2 9.7 8.7 20.3 30.4 46.2 46.3 63.5 3.9 4.3 10.3 8.4 11 11.2 2.1 8.2-5.4 18-4.5 23.5-21.7 13.9-45.8 29.1-81.4 25.6-7.4-6.7-10.3-21.4-2.9-31.1zm-201.3-9.2c-6.8-3.9-8.4-21-16.4-21.4-11.4-.7-9.3 22.2-9.3 35.5-7.8-7.1-9.2-29.1-3.5-40.3-6.6-3.2-9.5 3.6-13.1 5.9 4.7-34.1 49.8-15.8 42.3 20.3zm299.6 28.8c-10.1 19.2-24.4 40.4-54 41-.6-6.2-1.1-15.6 0-19.4 22.7-2.2 36.6-13.7 54-21.6zm-141.9 12.4c18.9 9.9 53.6 11 79.3 10.2 1.4 5.6 1.3 12.6 1.4 19.4-33 1.8-72-6.4-80.7-29.6zm92.2 46.7c-1.7 4.3-5.3 9.3-9.8 11.1-12.1 4.9-45.6 8.7-62.4-.3-10.7-5.7-17.5-18.5-23.4-26-2.8-3.6-16.9-12.9-.2-12.9 13.1 32.7 58 29 95.8 28.1z" ], + joget: [ 496, 512, [], "f3b7", "M227.5 468.7c-9-13.6-19.9-33.3-23.7-42.4-5.7-13.7-27.2-45.6 31.2-67.1 51.7-19.1 176.7-16.5 208.8-17.6-4 9-8.6 17.9-13.9 26.6-40.4 65.5-110.4 101.5-182 101.5-6.8 0-13.6-.4-20.4-1M66.1 143.9C128 43.4 259.6 12.2 360.1 74.1c74.8 46.1 111.2 130.9 99.3 212.7-24.9-.5-179.3-3.6-230.3-4.9-55.5-1.4-81.7-20.8-58.5-48.2 23.2-27.4 51.1-40.7 68.9-51.2 17.9-10.5 27.3-33.7-23.6-29.7C87.3 161.5 48.6 252.1 37.6 293c-8.8-49.7-.1-102.7 28.5-149.1m-29.2-18c-71.9 116.6-35.6 269.3 81 341.2 116.6 71.9 269.3 35.6 341.2-80.9 71.9-116.6 35.6-269.4-81-341.2-40.5-25.1-85.5-37-129.9-37C165 8 83.8 49.9 36.9 125.9m244.4 110.4c-31.5 20.5-65.3 31.3-65.3 31.3l169.5-1.6 46.5-23.4s3.6-9.5-19.1-15.5c-22.7-6-57 11.3-86.7 27.2-29.7 15.8-31.1 8.2-31.1 8.2s40.2-28.1 50.7-34.5c10.5-6.4 31.9-14 13.4-24.6-3.2-1.8-6.7-2.7-10.4-2.7-17.8 0-41.5 18.7-67.5 35.6" ], + joomla: [ 448, 512, [], "f1aa", "M.6 92.1C.6 58.8 27.4 32 60.4 32c30 0 54.5 21.9 59.2 50.2 32.6-7.6 67.1.6 96.5 30l-44.3 44.3c-20.5-20.5-42.6-16.3-55.4-3.5-14.3 14.3-14.3 37.9 0 52.2l99.5 99.5-44 44.3c-87.7-87.2-49.7-49.7-99.8-99.7-26.8-26.5-35-64.8-24.8-98.9C20.4 144.6.6 120.7.6 92.1zm129.5 116.4l44.3 44.3c10-10 89.7-89.7 99.7-99.8 14.3-14.3 37.6-14.3 51.9 0 12.8 12.8 17 35-3.5 55.4l44 44.3c31.2-31.2 38.5-67.6 28.9-101.2 29.2-4.1 51.9-29.2 51.9-59.5 0-33.2-26.8-60.1-59.8-60.1-30.3 0-55.4 22.5-59.5 51.6-33.8-9.9-71.7-1.5-98.3 25.1-18.3 19.1-71.1 71.5-99.6 99.9zm266.3 152.2c8.2-32.7-.9-68.5-26.3-93.9-11.8-12.2 5 4.7-99.5-99.7l-44.3 44.3 99.7 99.7c14.3 14.3 14.3 37.6 0 51.9-12.8 12.8-35 17-55.4-3.5l-44 44.3c27.6 30.2 68 38.8 102.7 28 5.5 27.4 29.7 48.1 58.9 48.1 33 0 59.8-26.8 59.8-60.1 0-30.2-22.5-55-51.6-59.1zm-84.3-53.1l-44-44.3c-87 86.4-50.4 50.4-99.7 99.8-14.3 14.3-37.6 14.3-51.9 0-13.1-13.4-16.9-35.3 3.2-55.4l-44-44.3c-30.2 30.2-38 65.2-29.5 98.3-26.7 6-46.2 29.9-46.2 58.2C0 453.2 26.8 480 59.8 480c28.6 0 52.5-19.8 58.6-46.7 32.7 8.2 68.5-.6 94.2-26 32.1-32 12.2-12.4 99.5-99.7z" ], + js: [ 448, 512, [], "f3b8", "M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z" ], + "js-square": [ 448, 512, [], "f3b9", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM243.8 381.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z" ], + jsfiddle: [ 576, 512, [], "f1cc", "M510.634 237.462c-4.727-2.621-5.664-5.748-6.381-10.776-2.352-16.488-3.539-33.619-9.097-49.095-35.895-99.957-153.99-143.386-246.849-91.646-27.37 15.25-48.971 36.369-65.493 63.903-3.184-1.508-5.458-2.71-7.824-3.686-30.102-12.421-59.049-10.121-85.331 9.167-25.531 18.737-36.422 44.548-32.676 76.408.355 3.025-1.967 7.621-4.514 9.545-39.712 29.992-56.031 78.065-41.902 124.615 13.831 45.569 57.514 79.796 105.608 81.433 30.291 1.031 60.637.546 90.959.539 84.041-.021 168.09.531 252.12-.48 52.664-.634 96.108-36.873 108.212-87.293 11.54-48.074-11.144-97.3-56.832-122.634zm21.107 156.88c-18.23 22.432-42.343 35.253-71.28 35.65-56.874.781-113.767.23-170.652.23 0 .7-163.028.159-163.728.154-43.861-.332-76.739-19.766-95.175-59.995-18.902-41.245-4.004-90.848 34.186-116.106 9.182-6.073 12.505-11.566 10.096-23.136-5.49-26.361 4.453-47.956 26.42-62.981 22.987-15.723 47.422-16.146 72.034-3.083 10.269 5.45 14.607 11.564 22.198-2.527 14.222-26.399 34.557-46.727 60.671-61.294 97.46-54.366 228.37 7.568 230.24 132.697.122 8.15 2.412 12.428 9.848 15.894 57.56 26.829 74.456 96.122 35.142 144.497zm-87.789-80.499c-5.848 31.157-34.622 55.096-66.666 55.095-16.953-.001-32.058-6.545-44.079-17.705-27.697-25.713-71.141-74.98-95.937-93.387-20.056-14.888-41.99-12.333-60.272 3.782-49.996 44.071 15.859 121.775 67.063 77.188 4.548-3.96 7.84-9.543 12.744-12.844 8.184-5.509 20.766-.884 13.168 10.622-17.358 26.284-49.33 38.197-78.863 29.301-28.897-8.704-48.84-35.968-48.626-70.179 1.225-22.485 12.364-43.06 35.414-55.965 22.575-12.638 46.369-13.146 66.991 2.474C295.68 280.7 320.467 323.97 352.185 343.47c24.558 15.099 54.254 7.363 68.823-17.506 28.83-49.209-34.592-105.016-78.868-63.46-3.989 3.744-6.917 8.932-11.41 11.72-10.975 6.811-17.333-4.113-12.809-10.353 20.703-28.554 50.464-40.44 83.271-28.214 31.429 11.714 49.108 44.366 42.76 78.186z" ], + keybase: [ 412, 512, [], "f4f5", "M177.2 430.9c0 9.8-8 17.8-17.8 17.8s-17.8-8-17.8-17.8 8-17.8 17.8-17.8c9.8-.1 17.8 7.9 17.8 17.8zM270 413c-9.8 0-17.8 8-17.8 17.8s8 17.8 17.8 17.8 17.8-8 17.8-17.8-8-17.8-17.8-17.8zm142.3-36c0 38.9-7.6 73.9-22.2 103h-27.3c23.5-38.7 30.5-94.8 22.4-134.3-16.1 29.5-52.1 38.6-85.9 28.8-127.8-37.5-192.5 19.7-234.6 50.3l18.9-59.3-39.9 42.3c4.8 26.7 15.7 51.3 31.2 72.3H46.1c-9.7-15.8-17.2-33-22.2-51.3L.1 454c0-74.9-5.5-147.6 61.5-215.2 20.2-20.4 43.7-36.2 69.1-46.7-6.8-13.5-9.5-29.2-7.8-46l-19.9-1.2c-17.9-1.1-31.6-16.5-30.6-34.4v-.1L74 84.2c1.1-17.1 15.4-30.6 32.5-30.6 1.3 0-.3-.1 28.2 1.7 13.9.8 21.5 9.8 22.8 11.4 7.1-10.4 14.5-20.5 24.6-34.5l20.6 12.1c-13.6 29-9.1 36.2-9 36.3 3.9 0 13.9-.5 32.4 5.7C246 92.9 262 107 271 126c.4.9 15.5 29 1.2 62.6 19 6.1 51.3 19.9 82.4 51.8 36.6 37.6 57.7 87.4 57.7 136.6zM128 122.3c3.2-10 7.7-19.7 13.1-29.4.1-2 2.2-13.1-7.8-13.8-28.5-1.8-26.3-1.6-26.7-1.6-4.6 0-8.3 3.5-8.6 8.1l-1.6 26.2c-.3 4.7 3.4 8.8 8.1 9.1l23.5 1.4zm25.8 61.8c5.6 9.4 14.1 16.1 22.3 20 0-21.2 28.5-41.9 52.8-17.5l8.4 10.3c20.8-18.8 19.4-45.3 12.1-60.9-13.8-29.1-46.9-32-54.3-31.7-10.3.4-19.7-5.4-23.7-15.3-13.7 21.2-37.2 62.5-17.6 95.1zm82.9 68.4L217 268.6c-1.9 1.6-2.2 4.4-.6 6.3l8.9 10.9c1 1.2 3.8 2.7 6.3.6l19.6-16 5.5 6.8c4.9 6 13.8-1.4 9-7.3-63.6-78.3-41.5-51.1-55.3-68.1-4.7-6-13.9 1.4-9 7.3 1.9 2.3 18.4 22.6 19.8 24.3l-9.6 7.9c-4.6 3.8 2.6 13.3 7.4 9.4l9.7-8 8 9.8zm118.4 25.7c-16.9-23.7-42.6-46.7-73.4-60.4-7.9-3.5-15-6.1-22.9-8.6-2 2.2-4.1 4.3-6.4 6.2l31.9 39.2c10.4 12.7 8.5 31.5-4.2 41.9-1.3 1.1-13.1 10.7-29 4.9-2.9 2.3-10.1 9.9-22.2 9.9-8.6 0-16.6-3.8-22.1-10.5l-8.9-10.9c-6.3-7.8-7.9-17.9-5-26.8-8.2-9.9-8.3-21.3-4.6-30-7.2-1.3-26.7-6.2-42.7-21.4-55.8 20.7-88 64.4-101.3 91.2-14.9 30.2-18.8 60.9-19.9 90.2 8.2-8.7-3.9 4.1 114-120.9l-29.9 93.6c57.8-31.1 124-36 197.4-14.4 23.6 6.9 45.1 1.6 56-13.9 11.1-15.6 8.5-37.7-6.8-59.3zM110.6 107.3l15.6 1 1-15.6-15.6-1-1 15.6z" ], + keycdn: [ 512, 512, [], "f3ba", "M63.8 409.3l60.5-59c32.1 42.8 71.1 66 126.6 67.4 30.5.7 60.3-7 86.4-22.4 5.1 5.3 18.5 19.5 20.9 22-32.2 20.7-69.6 31.1-108.1 30.2-43.3-1.1-84.6-16.7-117.7-44.4.3-.6-38.2 37.5-38.6 37.9 9.5 29.8-13.1 62.4-46.3 62.4C20.7 503.3 0 481.7 0 454.9c0-34.3 33.1-56.6 63.8-45.6zm354.9-252.4c19.1 31.3 29.6 67.4 28.7 104-1.1 44.8-19 87.5-48.6 121 .3.3 23.8 25.2 24.1 25.5 9.6-1.3 19.2 2 25.9 9.1 11.3 12 10.9 30.9-1.1 42.4-12 11.3-30.9 10.9-42.4-1.1-6.7-7-9.4-16.8-7.6-26.3-24.9-26.6-44.4-47.2-44.4-47.2 42.7-34.1 63.3-79.6 64.4-124.2.7-28.9-7.2-57.2-21.1-82.2l22.1-21zM104 53.1c6.7 7 9.4 16.8 7.6 26.3l45.9 48.1c-4.7 3.8-13.3 10.4-22.8 21.3-25.4 28.5-39.6 64.8-40.7 102.9-.7 28.9 6.1 57.2 20 82.4l-22 21.5C72.7 324 63.1 287.9 64.2 250.9c1-44.6 18.3-87.6 47.5-121.1l-25.3-26.4c-9.6 1.3-19.2-2-25.9-9.1-11.3-12-10.9-30.9 1.1-42.4C73.5 40.7 92.2 41 104 53.1zM464.9 8c26 0 47.1 22.4 47.1 48.3S490.9 104 464.9 104c-6.3.1-14-1.1-15.9-1.8l-62.9 59.7c-32.7-43.6-76.7-65.9-126.9-67.2-30.5-.7-60.3 6.8-86.2 22.4l-21.1-22C184.1 74.3 221.5 64 260 64.9c43.3 1.1 84.6 16.7 117.7 44.6l41.1-38.6c-1.5-4.7-2.2-9.6-2.2-14.5C416.5 29.7 438.9 8 464.9 8zM256.7 113.4c5.5 0 10.9.4 16.4 1.1 78.1 9.8 133.4 81.1 123.8 159.1-9.8 78.1-81.1 133.4-159.1 123.8-78.1-9.8-133.4-81.1-123.8-159.2 9.3-72.4 70.1-124.6 142.7-124.8zm-59 119.4c.6 22.7 12.2 41.8 32.4 52.2l-11 51.7h73.7l-11-51.7c20.1-10.9 32.1-29 32.4-52.2-.4-32.8-25.8-57.5-58.3-58.3-32.1.8-57.3 24.8-58.2 58.3zM256 160" ], + kickstarter: [ 448, 512, [], "f3bb", "M400 480H48c-26.4 0-48-21.6-48-48V80c0-26.4 21.6-48 48-48h352c26.4 0 48 21.6 48 48v352c0 26.4-21.6 48-48 48zM199.6 178.5c0-30.7-17.6-45.1-39.7-45.1-25.8 0-40 19.8-40 44.5v154.8c0 25.8 13.7 45.6 40.5 45.6 21.5 0 39.2-14 39.2-45.6v-41.8l60.6 75.7c12.3 14.9 39 16.8 55.8 0 14.6-15.1 14.8-36.8 4-50.4l-49.1-62.8 40.5-58.7c9.4-13.5 9.5-34.5-5.6-49.1-16.4-15.9-44.6-17.3-61.4 7l-44.8 64.7v-38.8z" ], + "kickstarter-k": [ 384, 512, [], "f3bc", "M147.3 114.4c0-56.2-32.5-82.4-73.4-82.4C26.2 32 0 68.2 0 113.4v283c0 47.3 25.3 83.4 74.9 83.4 39.8 0 72.4-25.6 72.4-83.4v-76.5l112.1 138.3c22.7 27.2 72.1 30.7 103.2 0 27-27.6 27.3-67.4 7.4-92.2l-90.8-114.8 74.9-107.4c17.4-24.7 17.5-63.1-10.4-89.8-30.3-29-82.4-31.6-113.6 12.8L147.3 185v-70.6z" ], + korvue: [ 446, 512, [], "f42f", "M386.5 34h-327C26.8 34 0 60.8 0 93.5v327.1C0 453.2 26.8 480 59.5 480h327.1c33 0 59.5-26.8 59.5-59.5v-327C446 60.8 419.2 34 386.5 34zM87.1 120.8h96v116l61.8-116h110.9l-81.2 132H87.1v-132zm161.8 272.1l-65.7-113.6v113.6h-96V262.1h191.5l88.6 130.8H248.9z" ], + laravel: [ 640, 512, [], "f3bd", "M637.5 241.6c-4.2-4.8-62.8-78.1-73.1-90.5-10.3-12.4-15.4-10.2-21.7-9.3-6.4.9-80.5 13.4-89.1 14.8-8.6 1.5-14 4.9-8.7 12.3 4.7 6.6 53.4 75.7 64.2 90.9l-193.7 46.4L161.2 48.7c-6.1-9.1-7.4-12.3-21.4-11.6-14 .6-120.9 9.5-128.5 10.2-7.6.6-16 4-8.4 22s129 279.6 132.4 287.2c3.4 7.6 12.2 20 32.8 15 21.1-5.1 94.3-24.2 134.3-34.7 21.1 38.3 64.2 115.9 72.2 127 10.6 14.9 18 12.4 34.3 7.4 12.8-3.9 199.6-71.1 208-74.5 8.4-3.5 13.6-5.9 7.9-14.4-4.2-6.2-53.5-72.2-79.3-106.8 17.7-4.7 80.6-21.4 87.3-23.3 7.9-2 9-5.8 4.7-10.6zm-352.2 72c-2.3.5-110.8 26.5-116.6 27.8-5.8 1.3-5.8.7-6.5-1.3-.7-2-129-266.7-130.8-270-1.8-3.3-1.7-5.9 0-5.9s102.5-9 106-9.2c3.6-.2 3.2.6 4.5 2.8 0 0 142.2 245.4 144.6 249.7 2.6 4.3 1.1 5.6-1.2 6.1zm306 57.4c1.7 2.7 3.5 4.5-2 6.4-5.4 2-183.7 62.1-187.1 63.6-3.5 1.5-6.2 2-10.6-4.5s-62.4-106.8-62.4-106.8L518 280.6c4.7-1.5 6.2-2.5 9.2 2.2 2.9 4.8 62.4 85.5 64.1 88.2zm12.1-134.1c-4.2.9-73.6 18.1-73.6 18.1l-56.7-77.8c-1.6-2.3-2.9-4.5 1.1-5s68.4-12.2 71.3-12.8c2.9-.7 5.4-1.5 9 3.4 3.6 4.9 52.6 67 54.5 69.4 1.8 2.3-1.4 3.7-5.6 4.7z" ], + lastfm: [ 512, 512, [], "f202", "M225.8 367.1l-18.8-51s-30.5 34-76.2 34c-40.5 0-69.2-35.2-69.2-91.5 0-72.1 36.4-97.9 72.1-97.9 66.5 0 74.8 53.3 100.9 134.9 18.8 56.9 54 102.6 155.4 102.6 72.7 0 122-22.3 122-80.9 0-72.9-62.7-80.6-115-92.1-25.8-5.9-33.4-16.4-33.4-34 0-19.9 15.8-31.7 41.6-31.7 28.2 0 43.4 10.6 45.7 35.8l58.6-7c-4.7-52.8-41.1-74.5-100.9-74.5-52.8 0-104.4 19.9-104.4 83.9 0 39.9 19.4 65.1 68 76.8 44.9 10.6 79.8 13.8 79.8 45.7 0 21.7-21.1 30.5-61 30.5-59.2 0-83.9-31.1-97.9-73.9-32-96.8-43.6-163-161.3-163C45.7 113.8 0 168.3 0 261c0 89.1 45.7 137.2 127.9 137.2 66.2 0 97.9-31.1 97.9-31.1z" ], + "lastfm-square": [ 448, 512, [], "f203", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-92.2 312.9c-63.4 0-85.4-28.6-97.1-64.1-16.3-51-21.5-84.3-63-84.3-22.4 0-45.1 16.1-45.1 61.2 0 35.2 18 57.2 43.3 57.2 28.6 0 47.6-21.3 47.6-21.3l11.7 31.9s-19.8 19.4-61.2 19.4c-51.3 0-79.9-30.1-79.9-85.8 0-57.9 28.6-92 82.5-92 73.5 0 80.8 41.4 100.8 101.9 8.8 26.8 24.2 46.2 61.2 46.2 24.9 0 38.1-5.5 38.1-19.1 0-19.9-21.8-22-49.9-28.6-30.4-7.3-42.5-23.1-42.5-48 0-40 32.3-52.4 65.2-52.4 37.4 0 60.1 13.6 63 46.6l-36.7 4.4c-1.5-15.8-11-22.4-28.6-22.4-16.1 0-26 7.3-26 19.8 0 11 4.8 17.6 20.9 21.3 32.7 7.1 71.8 12 71.8 57.5.1 36.7-30.7 50.6-76.1 50.6z" ], + leanpub: [ 576, 512, [], "f212", "M386.539 111.485l15.096 248.955-10.979-.275c-36.232-.824-71.64 8.783-102.657 27.997-31.016-19.214-66.424-27.997-102.657-27.997-45.564 0-82.07 10.705-123.516 27.723L93.117 129.6c28.546-11.803 61.484-18.115 92.226-18.115 41.173 0 73.836 13.175 102.657 42.544 27.723-28.271 59.013-41.721 98.539-42.544zM569.07 448c-25.526 0-47.485-5.215-70.542-15.645-34.31-15.645-69.993-24.978-107.871-24.978-38.977 0-74.934 12.901-102.657 40.623-27.723-27.723-63.68-40.623-102.657-40.623-37.878 0-73.561 9.333-107.871 24.978C55.239 442.236 32.731 448 8.303 448H6.93L49.475 98.859C88.726 76.626 136.486 64 181.775 64 218.83 64 256.984 71.685 288 93.095 319.016 71.685 357.17 64 394.225 64c45.289 0 93.049 12.626 132.3 34.859L569.07 448zm-43.368-44.741l-34.036-280.246c-30.742-13.999-67.248-21.41-101.009-21.41-38.428 0-74.385 12.077-102.657 38.702-28.272-26.625-64.228-38.702-102.657-38.702-33.761 0-70.267 7.411-101.009 21.41L50.298 403.259c47.211-19.487 82.894-33.486 135.045-33.486 37.604 0 70.817 9.606 102.657 29.644 31.84-20.038 65.052-29.644 102.657-29.644 52.151 0 87.834 13.999 135.045 33.486z" ], + less: [ 640, 512, [], "f41d", "M612.7 219c0-20.5 3.2-32.6 3.2-54.6 0-34.2-12.6-45.2-40.5-45.2h-20.5v24.2h6.3c14.2 0 17.3 4.7 17.3 22.1 0 16.3-1.6 32.6-1.6 51.5 0 24.2 7.9 33.6 23.6 37.3v1.6c-15.8 3.7-23.6 13.1-23.6 37.3 0 18.9 1.6 34.2 1.6 51.5 0 17.9-3.7 22.6-17.3 22.6v.5h-6.3V393h20.5c27.8 0 40.5-11 40.5-45.2 0-22.6-3.2-34.2-3.2-54.6 0-11 6.8-22.6 27.3-23.6v-27.3c-20.5-.7-27.3-12.3-27.3-23.3zm-105.6 32c-15.8-6.3-30.5-10-30.5-20.5 0-7.9 6.3-12.6 17.9-12.6s22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-21 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51s-22.5-41-43-47.8zm-358.9 59.4c-3.7 0-8.4-3.2-8.4-13.1V119.1H65.2c-28.4 0-41 11-41 45.2 0 22.6 3.2 35.2 3.2 54.6 0 11-6.8 22.6-27.3 23.6v27.3c20.5.5 27.3 12.1 27.3 23.1 0 19.4-3.2 31-3.2 53.6 0 34.2 12.6 45.2 40.5 45.2h20.5v-24.2h-6.3c-13.1 0-17.3-5.3-17.3-22.6s1.6-32.1 1.6-51.5c0-24.2-7.9-33.6-23.6-37.3v-1.6c15.8-3.7 23.6-13.1 23.6-37.3 0-18.9-1.6-34.2-1.6-51.5s3.7-22.1 17.3-22.1H93v150.8c0 32.1 11 53.1 43.1 53.1 10 0 17.9-1.6 23.6-3.7l-5.3-34.2c-3.1.8-4.6.8-6.2.8zM379.9 251c-16.3-6.3-31-10-31-20.5 0-7.9 6.3-12.6 17.9-12.6 11.6 0 22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-20.5 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51 .1-28.9-22.5-41-43-47.8zm-155-68.8c-38.4 0-75.1 32.1-74.1 82.5 0 52 34.2 82.5 79.3 82.5 18.9 0 39.9-6.8 56.2-17.9l-15.8-27.8c-11.6 6.8-22.6 10-34.2 10-21 0-37.3-10-41.5-34.2H290c.5-3.7 1.6-11 1.6-19.4.6-42.6-22.6-75.7-66.7-75.7zm-30 66.2c3.2-21 15.8-31 30.5-31 18.9 0 26.3 13.1 26.3 31h-56.8z" ], + line: [ 448, 512, [], "f3c0", "M272.1 204.2v71.1c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.1 0-2.1-.6-2.6-1.3l-32.6-44v42.2c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.8 0-3.2-1.4-3.2-3.2v-71.1c0-1.8 1.4-3.2 3.2-3.2H219c1 0 2.1.5 2.6 1.4l32.6 44v-42.2c0-1.8 1.4-3.2 3.2-3.2h11.4c1.8-.1 3.3 1.4 3.3 3.1zm-82-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 1.8 1.4 3.2 3.2 3.2h11.4c1.8 0 3.2-1.4 3.2-3.2v-71.1c0-1.7-1.4-3.2-3.2-3.2zm-27.5 59.6h-31.1v-56.4c0-1.8-1.4-3.2-3.2-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 .9.3 1.6.9 2.2.6.5 1.3.9 2.2.9h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.7-1.4-3.2-3.1-3.2zM332.1 201h-45.7c-1.7 0-3.2 1.4-3.2 3.2v71.1c0 1.7 1.4 3.2 3.2 3.2h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2V234c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2v-11.4c-.1-1.7-1.5-3.2-3.2-3.2zM448 113.7V399c-.1 44.8-36.8 81.1-81.7 81H81c-44.8-.1-81.1-36.9-81-81.7V113c.1-44.8 36.9-81.1 81.7-81H367c44.8.1 81.1 36.8 81 81.7zm-61.6 122.6c0-73-73.2-132.4-163.1-132.4-89.9 0-163.1 59.4-163.1 132.4 0 65.4 58 120.2 136.4 130.6 19.1 4.1 16.9 11.1 12.6 36.8-.7 4.1-3.3 16.1 14.1 8.8 17.4-7.3 93.9-55.3 128.2-94.7 23.6-26 34.9-52.3 34.9-81.5z" ], + linkedin: [ 448, 512, [], "f08c", "M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z" ], + "linkedin-in": [ 448, 512, [], "f0e1", "M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z" ], + linode: [ 448, 512, [], "f2b8", "M437.4 226.3c-.3-.9-.9-1.4-1.4-2l-70-38.6c-.9-.6-2-.6-3.1 0l-58.9 36c-.9.6-1.4 1.7-1.4 2.6l-.9 31.4-24-16c-.9-.6-2.3-.6-3.1 0L240 260.9l-1.4-35.1c0-.9-.6-2-1.4-2.3l-36-24.3 33.7-17.4c1.1-.6 1.7-1.7 1.7-2.9l-5.7-132.3c0-.9-.9-2-1.7-2.6L138.6.3c-.9-.3-1.7-.3-2.3-.3L12.6 38.6c-1.4.6-2.3 2-2 3.7L38 175.4c.9 3.4 34 27.4 38.6 30.9l-26.9 12.9c-1.4.9-2 2.3-1.7 3.4l20.6 100.3c.6 2.9 23.7 23.1 27.1 26.3l-17.4 10.6c-.9.6-1.7 2-1.4 3.1 1.4 7.1 15.4 77.7 16.9 79.1l65.1 69.1c.6.6 1.4.6 2.3.9.6 0 1.1-.3 1.7-.6l83.7-66.9c.9-.6 1.1-1.4 1.1-2.3l-2-46 28 23.7c1.1.9 2.9.9 4 0l66.9-53.4c.9-.6 1.1-1.4 1.1-2.3l2.3-33.4 20.3 14c1.1.9 2.6.9 3.7 0l54.6-43.7c.6-.3 1.1-1.1 1.1-2 .9-6.5 10.3-70.8 9.7-72.8zm-204.8 4.8l4 92.6-90.6 61.2-14-96.6 100.6-57.2zm-7.7-180l5.4 126-106.6 55.4L104 97.7l120.9-46.6zM44 173.1L18 48l79.7 49.4 19.4 132.9L44 173.1zm30.6 147.8L55.7 230l70 58.3 13.7 93.4-64.8-60.8zm24.3 117.7l-13.7-67.1 61.7 60.9 9.7 67.4-57.7-61.2zm64.5 64.5l-10.6-70.9 85.7-61.4 3.1 70-78.2 62.3zm82-115.1c0-3.4.9-22.9-2-25.1l-24.3-20 22.3-14.9c2.3-1.7 1.1-5.7 1.1-8l29.4 22.6.6 68.3-27.1-22.9zm94.3-25.4l-60.9 48.6-.6-68.6 65.7-46.9-4.2 66.9zm27.7-25.7l-19.1-13.4 2-34c.3-.9-.3-2-1.1-2.6L308 259.7l.6-30 64.6 40.6-5.8 66.6zm54.6-39.8l-48.3 38.3 5.7-65.1 51.1-36.6-8.5 63.4z" ], + linux: [ 448, 512, [], "f17c", "M196.1 123.6c-.2-1.4 1.9-2.3 3.2-2.9 1.7-.7 3.9-1 5.5-.1.4.2.8.7.6 1.1-.4 1.2-2.4 1-3.5 1.6-1 .5-1.8 1.7-3 1.7-1 .1-2.7-.4-2.8-1.4zm24.7-.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm214.7 310.2c-.5 8.2-6.5 13.8-13.9 18.3-14.9 9-37.3 15.8-50.9 32.2l-2.6-2.2 2.6 2.2c-14.2 16.9-31.7 26.6-48.3 27.9-16.5 1.3-32-6.3-40.3-23v-.1c-1.1-2.1-1.9-4.4-2.5-6.7-21.5 1.2-40.2-5.3-55.1-4.1-22 1.2-35.8 6.5-48.3 6.6-4.8 10.6-14.3 17.6-25.9 20.2-16 3.7-36.1 0-55.9-10.4l1.6-3-1.6 3c-18.5-9.8-42-8.9-59.3-12.5-8.7-1.8-16.3-5-20.1-12.3-3.7-7.3-3-17.3 2.2-31.7 1.7-5.1.4-12.7-.8-20.8-.6-3.9-1.2-7.9-1.2-11.8 0-4.3.7-8.5 2.8-12.4 4.5-8.5 11.8-12.1 18.5-14.5 6.7-2.4 12.8-4 17-8.3 5.2-5.5 10.1-14.4 16.6-20.2-2.6-17.2.2-35.4 6.2-53.3 12.6-37.9 39.2-74.2 58.1-96.7 16.1-22.9 20.8-41.3 22.5-64.7C158 103.4 132.4-.2 234.8 0c80.9.1 76.3 85.4 75.8 131.3-.3 30.1 16.3 50.5 33.4 72 15.2 18 35.1 44.3 46.5 74.4 9.3 24.6 12.9 51.8 3.7 79.1 1.4.5 2.8 1.2 4.1 2 1.4.8 2.7 1.8 4 2.9 6.6 5.6 8.7 14.3 10.5 22.4 1.9 8.1 3.6 15.7 7.2 19.7 11.1 12.4 15.9 21.5 15.5 29.7zM220.8 109.1c3.6.9 8.9 2.4 13 4.4-2.1-12.2 4.5-23.5 11.8-23 8.9.3 13.9 15.5 9.1 27.3-.8 1.9-2.8 3.4-3.9 4.6 6.7 2.3 11 4.1 12.6 4.9 7.9-9.5 10.8-26.2 4.3-40.4-9.8-21.4-34.2-21.8-44 .4-3.2 7.2-3.9 14.9-2.9 21.8zm-46.2 18.8c7.8-5.7 6.9-4.7 5.9-5.5-8-6.9-6.6-27.4 1.8-28.1 6.3-.5 10.8 10.7 9.6 19.6 3.1-2.1 6.7-3.6 10.2-4.6 1.7-19.3-9-33.5-19.1-33.5-18.9 0-24 37.5-8.4 52.1zm-9.4 20.9c1.5 4.9 6.1 10.5 14.7 15.3 7.8 4.6 12 11.5 20 15 2.6 1.1 5.7 1.9 9.6 2.1 18.4 1.1 27.1-11.3 38.2-14.9 11.7-3.7 20.1-11 22.7-18.1 3.2-8.5-2.1-14.7-10.5-18.2-11.3-4.9-16.3-5.2-22.6-9.3-10.3-6.6-18.8-8.9-25.9-8.9-14.4 0-23.2 9.8-27.9 14.2-.5.5-7.9 5.9-14.1 10.5-4.2 3.3-5.6 7.4-4.2 12.3zm-33.5 252.8L112.1 366c-6.8-9.2-13.8-14.8-21.9-16-7.7-1.2-12.6 1.4-17.7 6.9-4.8 5.1-8.8 12.3-14.3 18-7.8 6.5-9.3 6.2-19.6 9.9-6.3 2.2-11.3 4.6-14.8 11.3-2.7 5-2.1 12.2-.9 20 1.2 7.9 3 16.3.6 23.9v.2c-5 13.7-5 21.7-2.6 26.4 7.9 15.4 46.6 6.1 76.5 21.9 31.4 16.4 72.6 17.1 75.3-18 2.1-20.5-31.5-49-41-68.9zm153.9 35.8c3.2-11 6.3-21.3 6.8-29 .8-15.2 1.6-28.7 4.4-39.9 3.1-12.6 9.3-23.1 21.4-27.3 2.3-21.1 18.7-21.1 38.3-12.5 18.9 8.5 26 16 22.8 26.1 1 0 2-.1 4.2 0 5.2-16.9-14.3-28-30.7-34.8 2.9-12 2.4-24.1-.4-35.7-6-25.3-22.6-47.8-35.2-59-2.3-.1-2.1 1.9 2.6 6.5 11.6 10.7 37.1 49.2 23.3 84.9-3.9-1-7.6-1.5-10.9-1.4-5.3-29.1-17.5-53.2-23.6-64.6-11.5-21.4-29.5-65.3-37.2-95.7-4.5 6.4-12.4 11.9-22.3 15-4.7 1.5-9.7 5.5-15.9 9-13.9 8-30 8.8-42.4-1.2-4.5-3.6-8-7.6-12.6-10.3-1.6-.9-5.1-3.3-6.2-4.1-2 37.8-27.3 85.3-39.3 112.7-8.3 19.7-13.2 40.8-13.8 61.5-21.8-29.1-5.9-66.3 2.6-82.4 9.5-17.6 11-22.5 8.7-20.8-8.6 14-22 36.3-27.2 59.2-2.7 11.9-3.2 24 .3 35.2 3.5 11.2 11.1 21.5 24.6 29.9 0 0 24.8 14.3 38.3 32.5 7.4 10 9.7 18.7 7.4 24.9-2.5 6.7-9.6 8.9-16.7 8.9 4.8 6 10.3 13 14.4 19.6 37.6 25.7 82.2 15.7 114.3-7.2zM415 408.5c-10-11.3-7.2-33.1-17.1-41.6-6.9-6-13.6-5.4-22.6-5.1-7.7 8.8-25.8 19.6-38.4 16.3-11.5-2.9-18-16.3-18.8-29.5-.3.2-.7.3-1 .5-7.1 3.9-11.1 10.8-13.7 21.1-2.5 10.2-3.4 23.5-4.2 38.7-.7 11.8-6.2 26.4-9.9 40.6-3.5 13.2-5.8 25.2-1.1 36.3 7.2 14.5 19.5 20.4 33.7 19.3 14.2-1.1 30.4-9.8 43.6-25.5 22-26.6 62.3-29.7 63.2-46.5.3-5.1-3.1-13-13.7-24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4 3.9-3.4 5.9-6.3 3.1-6.6-2.8-.3-2.6 2.6-6 5.1-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2-10.4 0-18.7-4.8-24.9-9.7-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z" ], + lyft: [ 512, 512, [], "f3c3", "M0 81.1h77.8v208.7c0 33.1 15 52.8 27.2 61-12.7 11.1-51.2 20.9-80.2-2.8C7.8 334 0 310.7 0 289V81.1zm485.9 173.5v-22h23.8v-76.8h-26.1c-10.1-46.3-51.2-80.7-100.3-80.7-56.6 0-102.7 46-102.7 102.7V357c16 2.3 35.4-.3 51.7-14 17.1-14 24.8-37.2 24.8-59v-6.7h38.8v-76.8h-38.8v-23.3c0-34.6 52.2-34.6 52.2 0v77.1c0 56.6 46 102.7 102.7 102.7v-76.5c-14.5 0-26.1-11.7-26.1-25.9zm-294.3-99v113c0 15.4-23.8 15.4-23.8 0v-113H91v132.7c0 23.8 8 54 45 63.9 37 9.8 58.2-10.6 58.2-10.6-2.1 13.4-14.5 23.3-34.9 25.3-15.5 1.6-35.2-3.6-45-7.8v70.3c25.1 7.5 51.5 9.8 77.6 4.7 47.1-9.1 76.8-48.4 76.8-100.8V155.1h-77.1v.5z" ], + magento: [ 448, 512, [], "f3c4", "M445.7 127.9V384l-63.4 36.5V164.7L223.8 73.1 65.2 164.7l.4 255.9L2.3 384V128.1L224.2 0l221.5 127.9zM255.6 420.5L224 438.9l-31.8-18.2v-256l-63.3 36.6.1 255.9 94.9 54.9 95.1-54.9v-256l-63.4-36.6v255.9z" ], + mailchimp: [ 428, 512, [], "f59e", "M426.56 323.72c-3.09-6.59-8.97-11.13-16.35-12.88-2.47-11.27-5.88-16.8-6.19-17.63 1.3-1.48 2.56-2.97 2.84-3.32 10.42-12.93 3.62-31.86-14.19-36.33-10.02-9.64-19.09-14.17-26.54-17.9-7.14-3.57-4.29-2.17-10.99-5.19-1.78-8.71-2.37-28.97-5.2-43.19-2.54-12.79-7.66-22.06-15.56-28.15-3.16-6.84-7.59-13.74-12.93-18.81 24.84-38.08 31.38-75.69 13.19-95.39-8.1-8.77-20.13-12.93-34.52-12.93-20.26 0-45.18 8.26-70.34 23.54 0 0-16.38-13.18-16.73-13.46-70.08-55.19-268.28 188.7-198.32 242l18.06 13.8c-11.34 31.54 4.43 69.14 37.29 81.21 7.26 2.67 15.14 3.97 23.31 3.51 0 0 53.09 97.36 165.1 97.39 129.58.04 162.55-126.72 162.9-127.86 0 .01 10.5-15.51 5.17-28.41zM20.12 267.95c-14.2-23.96 10.51-73.19 28.09-101.17C91.66 97.63 163.98 43.06 196.82 50.85l9.03-3.46c.03.03 24.67 20.85 24.7 20.87 16.97-10.19 38.58-20.57 58.8-22.64-12.3 2.77-27.29 9.15-45.05 20.01-.43.25-42.02 28.32-67.43 53.52-13.85 13.73-69.45 80.41-69.4 80.35 10.16-19.23 16.86-28.67 32.94-48.9 9.1-11.44 18.81-22.57 28.74-32.84 4.61-4.77 9.28-9.36 13.95-13.71 3.21-2.99 6.44-5.87 9.65-8.62 1.48-1.27 2.96-2.5 4.43-3.71l.01-.01L164.6 64.8l1.72 12.06 23.69 20.87s-20.96 14.11-31.39 23.01c-41.79 35.66-82.8 90.4-98.06 143.69l.73-.03c-7.6 4.19-15.14 10.91-21.73 20.05-.16-.04-17.04-12.43-19.44-16.5zm69.11 100.09c-25.03 0-45.33-21.37-45.33-47.72 0-26.36 20.29-47.72 45.33-47.72 6.49 0 12.66 1.44 18.24 4.02 0 0 9.63 4.86 12.34 27.81 2.82-7.17 4.24-13.06 4.24-13.06 3.23 9.88 4.88 20.26 4.23 30.76 2.68-3.56 5.55-10.27 5.55-10.27 5 29.33-16.4 56.18-44.6 56.18zm55.8-168.53s19.49-37.06 62.33-61.57c-3.19-.51-10.99.48-12.36.64 7.78-6.69 22.24-11.16 32.23-13.19-2.92-1.86-9.89-2.33-13.34-2.42-1.02-.03-1.01-.02-2.22.03 9.4-5.25 26.82-8.34 42.65-5.55-1.99-2.64-6.5-4.57-9.67-5.51-.28-.08-1.52-.39-1.52-.39l1.19-.28c9.54-1.84 20.69.15 29.5 3.69-1-2.32-3.45-5.03-5.29-6.74-.19-.18-1.29-.97-1.29-.97 9.22 1.91 18.06 5.94 24.71 10.5-.9-1.75-3.14-4.69-4.69-6.29 8.81 2.52 18.71 8.81 22.95 17.82.1.2.37.94.4 1.03-16.7-12.84-65.44-9.2-114.24 22.42-22.33 14.48-38.71 30.32-51.34 46.78zm263.32 146.34c-.59 1.15-6.73 34.4-41.86 62.01-44.37 34.86-102.66 31.33-124.67 11.8-11.76-11-16.85-26.73-16.85-26.73s-1.33 8.87-1.56 12.35c-8.87-15.09-8.12-33.52-8.12-33.52s-4.73 8.83-6.9 13.77c-6.53-16.62-3.16-33.78-3.16-33.78l-5.16 7.7s-2.42-18.81 3.52-34.47c6.36-16.74 18.68-28.9 21.11-30.42-9.35-2.97-20.12-11.49-20.14-11.51 0 0 4.28.28 7.26-.4 0 0-18.9-13.54-22.22-34.26 2.74 3.38 8.49 7.21 8.49 7.21-1.86-5.42-2.99-17.49-1.25-29.36l.01-.01c3.58-22.68 22.27-37.45 43.44-37.27 22.54.2 37.65 4.93 56.55-12.5 4-3.69 7.19-6.87 12.81-8.11.59-.13 2.06-.75 5.07-.75 3.05 0 5.98.69 8.67 2.29 10.25 6.1 12.46 22.01 13.56 33.68 4.07 43.28 2.43 35.57 19.94 44.49 8.36 4.25 17.74 8.29 28.43 19.72.03.03.08.09.08.09h.13c9.01.22 13.65 7.31 9.5 12.47-30.23 36.1-72.46 53.39-119.51 54.84-1.94.05-6.32.15-6.34.15-19.01.58-25.19 25.16-13.27 39.95 7.54 9.35 22.03 12.42 33.97 12.46l.17-.06c51.45 1.04 103.14-35.37 112.07-55.44.06-.15.61-1.42.61-1.42-2.07 2.43-52.18 49.61-113.08 47.9 0 0-6.66-.14-12.93-1.6-8.27-1.92-14.55-5.56-16.95-13.8 5.05 1.01 11.45 1.66 18.87 1.66 43.96 0 75.63-19.98 72.33-20.25-.13 0-.26.03-.48.08-5.13 1.19-57.97 21.66-91.37 11.16.08-1.02.24-2.01.48-2.9 2.97-9.95 8.25-8.56 16.79-8.93 30.48-1.01 55.07-8.68 73.5-17.43 19.65-9.33 34.63-21.35 40.03-27.42 7 11.79 6.96 26.92 6.96 26.92s2.74-.96 6.38-.96c11.38.01 13.73 10.23 5.09 20.6zm-149.29 13.7c0-.05-.01-.1-.01-.15.01.05.01.1.01.15zm-.01-.21c-.01-.13-.01-.26-.02-.39-.02-.65-.03-1.33 0-2.02-.02.74-.02 1.42 0 2.02.01.13.01.27.02.39zm.12 1.46c0 .02 0 .04.01.06 0-.02 0-.04-.01-.06zm.02.12c.2 1.58.51 2.31.55 2.4-.23-.49-.42-1.34-.55-2.4zM193.96 59.68l2.87-8.83 4.88 17.72-6.03-1.95-1.72-6.94zm22.38 17.72l-3.62-12.59 9.97 8.36c-2.24 1.44-4.36 2.86-6.35 4.23zm42.71 281.94c-.01-.13-.01-.26-.02-.39.01.13.01.27.02.39zm-.01-.39c-.02-.65-.03-1.33 0-2.02-.03.75-.03 1.42 0 2.02zm.02.6c0-.05-.01-.1-.01-.15m.13 1.46c0-.02 0-.04-.01-.06m.02.12c.2 1.58.51 2.31.55 2.4-.23-.49-.42-1.34-.55-2.4zm52.1-138.61c-.07-3.36.47-8.92 3.63-9.95h.01c5.41-1.88 12.58 11.98 12.91 24.28-4.28-2.14-9.3-3.05-14.47-2.6-1.3-3.97-1.92-7.7-2.08-11.73zM205.38 85.27l-13.59-11.38 20.57 6.28c-2.65 1.88-5 3.6-6.98 5.1zm27.7 166.94c-3.41 1.3-5.83 2.31-7 2.14-1.89-.28-.06-3.75 4.08-7.11 8.33-6.64 19.76-8.7 29.53-5.07 4.28 1.57 9.08 4.72 11.6 8.39.95 1.39 1.21 2.44.82 2.88-.77.9-3.51-.31-7.55-1.89-10.35-3.86-17.98-4.45-31.48.66zm14.55 14.53c-2.31.94-3.81 1.66-4.42 1.17-.62-.48-.01-2.42 2.15-4.51 1.88-1.81 3.83-2.83 6.07-3.77.35-.15.72-.28 1.1-.38 1.04-.28 2.09-.63 3.23-.8 9.12-1.55 15.8 3.51 14.93 4.98-.39.69-2.08.53-4.6.36-5.23-.36-10.71-.27-18.46 2.95zM60.86 323.12zm24.3-25.78c-1.85.39-.81.17-2.64.68a7 7 0 0 0-.77.25c-.58.27-1.11.45-1.62.73-.43.24-4.07 1.86-7.03 5.48-3.99 4.95-5.44 11.43-5.19 17.67.24 6.06 2.02 9.41 2.35 10.23 1.38 2.96-1.85 3.57-4.79.39l-.01-.01c-2.35-2.49-3.86-6.29-4.6-9.66-2.98-13.95 3.24-27.97 17.61-33.57.8-.32 1.74-.51 2.5-.73h-.01c1.47-.44 6.72-1.5 12.07-.67 5.87.91 11.04 3.85 14.33 7.67l.01.01c2.53 2.87 4.43 6.92 4.09 10.53v.01c-.13 1.5-.79 3.65-2.14 4.21-.5.21-1.01.1-1.36-.25-.98-.96-.22-2.93-2.6-6.3-3.17-4.47-10.31-8.76-20.2-6.67zm30.28 31.17c1.88 10.82-6 20.5-15.52 20.7-6.67.15-10.31-4.02-9.66-4.93.3-.43 1.32-.24 2.88-.01 8.5 1.32 13.66-3.86 14.9-9.29.02-.09.35-1.54.34-2.54.07-.88-.03-1.76-.16-2.56-1-5.62-7.45-6.68-11.6-11.15-3.72-4.04-2.99-9.22-.65-11.71 2.81-2.77 6.83-1.76 6.78-.78 0 .52-.97.91-2.17 1.74-1.56 1.1-1.77 2.16-1.37 3.98.26 1 .71 1.65 1.68 2.42 3.48 2.76 12.85 4.7 14.55 14.13zm212.87-81.47c2.58.4 4.22 3.59 3.67 7.13-.55 3.54-3.09 6.08-5.67 5.67-2.58-.4-4.22-3.59-3.67-7.13.56-3.53 3.09-6.07 5.67-5.67zm-28.33 10.31c1.42-2.59 5.44-3.11 8.99-1.16 3.55 1.94 5.27 5.62 3.86 8.2-1.42 2.59-5.44 3.11-8.99 1.16-3.55-1.94-5.28-5.61-3.86-8.2z" ], + mandalorian: [ 390, 512, [], "f50f", "M203.28 511.89c-.98-3.26-1.69-15.83-1.39-24.58.55-15.89.98-24.72 1.4-28.76.64-6.2 2.87-20.72 3.28-21.38.6-.96.4-27.87-.24-33.13-.31-2.58-.63-11.9-.69-20.73-.13-16.47-.53-20.12-2.73-24.76-1.1-2.32-1.23-3.84-.99-11.43.16-4.81 0-10.53-.34-12.71-2.05-12.97-3.46-27.7-3.25-33.9.21-6.12.43-7.15 2.06-9.67 3.05-4.71 6.51-14.04 8.62-23.27 2.26-9.86 3.88-17.18 4.59-20.74.89-4.42 2.43-9.72 4.36-15.05 2.27-6.25 2.49-15.39.37-15.39-.3 0-1.38 1.22-2.41 2.71-1.03 1.49-4.76 4.8-8.29 7.36-8.37 6.08-11.7 9.39-12.66 12.58-.93 3.11-1.02 7.23-.16 7.76.34.21 1.29 2.4 2.11 4.88 1.62 4.88 1.87 10.12.72 15.36-.39 1.77-1.05 5.47-1.46 8.23-.41 2.76-.98 6.46-1.25 8.22-.28 1.76-.97 3.68-1.55 4.26-.96.96-1.14.91-2.05-.53-.55-.87-1.2-3.01-1.44-4.75-.25-1.74-1.63-7.11-3.08-11.93-3.28-10.9-3.52-16.15-.96-20.96.92-1.73 1.67-3.81 1.67-4.61 0-2.39-2.2-5.32-7.41-9.89-7.05-6.18-8.63-7.92-10.23-11.3-1.71-3.6-3.06-4.06-4.54-1.54-1.78 3.01-2.6 9.11-2.97 22.02l-.35 12.13 1.95 2.25c3.21 3.7 12.07 16.45 13.78 19.83 3.41 6.74 4.34 11.69 4.41 23.56.07 11.84.95 22.75 2 24.71.36.66.51 1.35.34 1.52-.17.17.41 2.09 1.29 4.27.88 2.18 1.81 6.22 2.06 8.98.25 2.76 1.02 7.43 1.71 10.37 2.23 9.56 2.77 14.08 2.39 20.14-.2 3.27-.53 11.07-.73 17.32-1.31 41.76-1.85 57.98-2.04 61.21-.12 2.02-.39 11.51-.6 21.07-.36 16.3-1.3 27.37-2.42 28.65-.64.73-8.07-4.91-12.52-9.49-3.75-3.87-4.02-4.79-2.83-9.95.7-3.01 2.26-18.29 3.33-32.62.36-4.78.81-10.5 1.01-12.71.83-9.37 1.66-20.35 2.61-34.78.56-8.46 1.33-16.44 1.72-17.73.38-1.29.89-9.89 1.13-19.11l.43-16.77-2.26-4.3c-1.72-3.28-4.87-6.94-13.22-15.34-6.03-6.07-11.84-12.3-12.91-13.85l-1.95-2.81.75-10.9c1.09-15.71 1.1-48.57.02-59.06l-.89-8.7-3.28-4.52c-5.86-8.08-5.8-7.75-6.22-33.27-.1-6.07-.38-11.5-.63-12.06-.83-1.87-3.05-2.66-8.54-3.05-8.86-.62-10.96-1.9-23.85-14.55-6.15-6.04-12.34-11.97-13.75-13.19-2.81-2.42-2.79-1.99-.56-9.63l1.35-4.65-1.69-3.04c-.93-1.67-2.09-3.51-2.59-4.07-1.33-1.51-5.5-10.89-5.99-13.49-.31-1.66-.09-2.67.87-3.9 2.23-2.86 3.4-5.68 4.45-10.73 2.33-11.19 7.74-26.09 10.6-29.22 3.18-3.47 7.7-1.05 9.41 5.03 1.34 4.79 1.37 9.79.1 18.55-.53 3.68-.98 8.68-.99 11.11-.02 4.01.19 4.69 2.25 7.39 3.33 4.37 7.73 7.41 15.2 10.52 1.7.71 3.82 1.99 4.72 2.85 11.17 10.72 18.62 16.18 22.95 16.85 5.18.8 7.98 4.54 10.04 13.39 1.31 5.65 4 11.14 5.46 11.14.59 0 2.09-.63 3.33-1.39 1.98-1.22 2.25-1.73 2.25-4.18-.01-3.71-1.17-14.08-2-17.84-.37-1.66-.78-4.06-.93-5.35-.14-1.29-.61-3.85-1.03-5.69-2.55-11.16-3.65-15.46-4.1-16.05-1.55-2.02-4.08-10.2-4.93-15.92-1.64-11.11-3.96-14.23-12.91-17.39-4.64-1.64-8.89-4.12-13.32-7.78-1.15-.95-4.01-3.22-6.35-5.06-2.35-1.83-4.41-3.53-4.6-3.76-.18-.23-1.39-1.14-2.69-2.02-6.24-4.22-8.84-6.98-11.26-11.96l-2.44-5.02-.22-12.98-.22-12.98 6.91-6.55c3.95-3.75 8.48-7.35 10.59-8.43 3.31-1.69 4.45-1.89 11.37-2.05 8.53-.19 10.12.02 11.66 1.56 1.53 1.53 1.36 6.4-.29 8.5-.74.94-1.34 1.98-1.34 2.32 0 .58-2.61 4.91-5.42 8.99-.68.99-2.13 5.35-2.37 6.82 20.44 13.39 21.55 3.77 14.07 28.98l11.4 2.54c3.11-8.66 6.47-17.26 8.61-26.22.29-7.63-11.98-4.19-15.4-8.68-2.33-5.93 3.13-14.18 6.06-19.2 1.6-2.34 6.62-4.7 8.82-4.15.88.22 4.16-.35 7.37-1.28 3.18-.92 6.58-1.68 7.55-1.68.97 0 3.66-.58 5.98-1.29 3.65-1.11 4.5-1.17 6.35-.4 1.17.48 3.79 1.09 5.82 1.36 2.02.26 4.72 1.12 6 1.91 1.28.79 3.53 1.77 5.02 2.17 2.51.68 3 .57 7.05-1.67l4.35-2.4 10.7-.41c10.44-.4 10.81-.47 15.26-2.68l4.58-2.3 2.46 1.43c1.76 1.02 3.14 2.73 4.85 5.98 2.36 4.51 2.38 4.58 1.37 7.37-.88 2.44-.89 3.3-.1 6.39.5 1.96 1.45 4.62 2.1 5.91.65 1.29 1.24 3.09 1.31 4.01.31 4.33-.03 5.3-2.41 6.92-2.17 1.47-6.98 7.91-6.98 9.34 0 .32-.48 1.69-1.07 3.03-5.04 11.51-6.76 13.56-14.26 16.98-9.2 4.2-12.3 5.19-16.21 5.19-3.1 0-4 .25-4.54 1.26-.37.69-2.21 2.37-4.09 3.71-2.04 1.47-3.8 3.38-4.38 4.78-.54 1.28-1.66 2.59-2.49 2.91-.83.32-1.94 1.08-2.45 1.71-.52.62-3.66 3.04-7 5.38-3.33 2.34-6.87 5.02-7.87 5.96-1 .94-2.07 1.71-2.39 1.71s-1.28.74-2.13 1.65c-1.31 1.39-1.49 2.11-1.14 4.6.22 1.63.86 4.27 1.42 5.88 1.32 3.8 1.31 7.86-.05 10.57-1.43 2.86-.89 6.65 1.35 9.59 2.01 2.63 2.16 4.56.71 8.84-.61 1.8-1.05 5.45-1.06 8.91-.02 4.88.22 6.28 1.46 8.38 1.2 2.04 1.82 2.48 3.24 2.32 1.98-.23 2.3-1.05 4.71-12.12 2.18-10.03 3.71-11.92 13.76-17.08 2.94-1.51 7.46-3.96 10.03-5.44 2.58-1.48 6.79-3.69 9.37-4.91 6.67-3.16 11.05-6.52 15.22-11.67 7.11-8.79 9.98-16.22 12.85-33.3.55-3.28 1.43-5.65 2.86-7.73 1.29-1.87 2.37-4.62 2.89-7.31 1.02-5.3 2.85-9.08 5.58-11.51 4.7-4.18 6-1.09 4.59 10.87-.46 3.86-1.1 10.33-1.44 14.38l-.61 7.36 4.45 4.09 4.45 4.09.11 8.42c.06 4.63.47 9.53.92 10.89l.82 2.47-6.43 6.28c-8.54 8.33-12.88 13.93-16.76 21.61-1.77 3.49-3.74 7.11-4.38 8.03-2.18 3.11-6.46 13.01-8.76 20.26l-2.29 7.22-6.97 6.49c-3.83 3.57-7.96 7.25-9.17 8.17-3.05 2.32-4.26 5.15-4.26 9.99 0 2.98.43 4.96 1.59 7.26.87 1.74 1.81 3.91 2.09 4.83.28.92.98 2.22 1.57 2.89 1.4 1.59 1.92 16.12.83 23.22-.68 4.48-3.63 12.02-4.7 12.02-1.79 0-4.06 9.27-5.07 20.74-.18 2.02-.62 5.94-.98 8.7-.36 2.76-.96 9.98-1.35 16.05-.77 12.22-.19 18.77 2.05 23.15 3.41 6.69.52 12.69-11.03 22.84l-3.97 3.49.07 5.19c.04 2.86.55 6.85 1.14 8.87 4.61 15.98 4.73 16.92 4.38 37.13-.46 26.4-.26 40.27.63 44.15.42 1.84.91 5 1.08 7.02.17 2.02.66 5.33 1.08 7.36.47 2.26.78 11.02.79 22.74l.02 19.06-1.81 2.63c-2.71 3.91-15.11 13.54-15.49 12.29zm29.53-45.11c-.18-.3-.33-6.87-.33-14.59 0-14.06-.89-27.54-2.26-34.45-.4-2.02-.81-9.7-.9-17.06-.15-11.93-1.4-24.37-2.64-26.38-.66-1.07-3.02-17.66-3.03-21.3-.01-4.23 1.02-6 5.28-9.13 4.14-3.04 4.86-3.14 5.48-.72.28 1.1 1.45 5.62 2.6 10.03 3.93 15.12 4.14 16.27 4.05 21.74-.1 5.78-.13 6.13-1.74 17.73-.98 7.07-1.17 12.39-1.04 28.43.17 19.4-.64 35.73-2.04 41.27-.71 2.78-2.8 5.48-3.43 4.43zm-70.99-37.58c-.24-.38-1.01-5.24-1.73-10.79-.72-5.56-1.49-10.41-1.73-10.79-.23-.38-.68-3.3-.99-6.49-.31-3.19-.91-7.46-1.33-9.48-.99-4.79-3.35-19.35-3.42-21.07-.03-.74-.34-4.05-.7-7.36-.67-6.21-.84-27.67-.22-28.29.96-.96 6.63 2.76 11.33 7.43l5.28 5.25-.45 6.47c-.25 3.56-.6 10.23-.78 14.83-.18 4.6-.49 9.87-.67 11.71-.18 1.84-.61 9.36-.94 16.72-.79 17.41-1.94 31.29-2.65 32-.32.3-.76.24-1-.14zM74.63 162.61c21.07 12.79 17.84 14.15 28.49 17.66 13.01 4.29 18.87 7.13 23.15 16.87-43.66 36.14-69.01 57.9-76.71 70.82-31.02 52.01-5.99 101.59 62.75 87.21-14.18 29.23-77.97 28.63-98.68-4.9-24.68-39.95-22.09-118.3 61-187.66zm210.79 179.02c56.66 6.88 82.32-37.74 46.54-89.23 0 0-26.87-29.34-64.28-67.96 2.98-15.45 9.49-32.12 30.57-53.82 89.2 63.51 92 141.61 92.46 149.36 4.27 70.58-78.66 91.12-105.29 61.65z" ], + mastodon: [ 417, 512, [], "f4f6", "M417.8 179.1c0-97.2-63.7-125.7-63.7-125.7-62.5-28.7-228.5-28.4-290.4 0 0 0-63.7 28.5-63.7 125.7 0 115.7-6.6 259.4 105.6 289.1 40.5 10.7 75.3 13 103.3 11.4 50.8-2.8 79.3-18.1 79.3-18.1l-1.7-36.9s-36.3 11.4-77.1 10.1c-40.4-1.4-83-4.4-89.6-54-.6-4.4-.9-9-.9-13.9 85.6 20.9 158.6 9.1 178.7 6.7 56.1-6.7 105-41.3 111.2-72.9 9.8-49.8 9-121.5 9-121.5zm-75.1 125.2h-46.6V190.1c0-49.7-64-51.6-64 6.9v62.5h-46.3V197c0-58.5-64-56.6-64-6.9v114.2H75.1c0-122.1-5.2-147.9 18.4-175 25.9-28.9 79.8-30.8 103.8 6.1l11.6 19.5 11.6-19.5c24.1-37.1 78.1-34.8 103.8-6.1 23.7 27.3 18.4 53 18.4 175z" ], + maxcdn: [ 512, 512, [], "f136", "M461.1 442.7h-97.4L415.6 200c2.3-10.2.9-19.5-4.4-25.7-5-6.1-13.7-9.6-24.2-9.6h-49.3l-59.5 278h-97.4l59.5-278h-83.4l-59.5 278H0l59.5-278-44.6-95.4H387c39.4 0 75.3 16.3 98.3 44.9 23.3 28.6 31.8 67.4 23.6 105.9l-47.8 222.6z" ], + medapps: [ 320, 512, [], "f3c6", "M118.3 238.4c3.5-12.5 6.9-33.6 13.2-33.6 8.3 1.8 9.6 23.4 18.6 36.6 4.6-23.5 5.3-85.1 14.1-86.7 9-.7 19.7 66.5 22 77.5 9.9 4.1 48.9 6.6 48.9 6.6 1.9 7.3-24 7.6-40 7.8-4.6 14.8-5.4 27.7-11.4 28-4.7.2-8.2-28.8-17.5-49.6l-9.4 65.5c-4.4 13-15.5-22.5-21.9-39.3-3.3-.1-62.4-1.6-47.6-7.8l31-5zM228 448c21.2 0 21.2-32 0-32H92c-21.2 0-21.2 32 0 32h136zm-24 64c21.2 0 21.2-32 0-32h-88c-21.2 0-21.2 32 0 32h88zm34.2-141.5c3.2-18.9 5.2-36.4 11.9-48.8 7.9-14.7 16.1-28.1 24-41 24.6-40.4 45.9-75.2 45.9-125.5C320 69.6 248.2 0 160 0S0 69.6 0 155.2c0 50.2 21.3 85.1 45.9 125.5 7.9 12.9 16 26.3 24 41 6.7 12.5 8.7 29.8 11.9 48.9 3.5 21 36.1 15.7 32.6-5.1-3.6-21.7-5.6-40.7-15.3-58.6C66.5 246.5 33 211.3 33 155.2 33 87.3 90 32 160 32s127 55.3 127 123.2c0 56.1-33.5 91.3-66.1 151.6-9.7 18-11.7 37.4-15.3 58.6-3.4 20.6 29 26.4 32.6 5.1z" ], + medium: [ 448, 512, [], "f23a", "M0 32v448h448V32H0zm372.2 106.1l-24 23c-2.1 1.6-3.1 4.2-2.7 6.7v169.3c-.4 2.6.6 5.2 2.7 6.7l23.5 23v5.1h-118V367l24.3-23.6c2.4-2.4 2.4-3.1 2.4-6.7V199.8l-67.6 171.6h-9.1L125 199.8v115c-.7 4.8 1 9.7 4.4 13.2l31.6 38.3v5.1H71.2v-5.1l31.6-38.3c3.4-3.5 4.9-8.4 4.1-13.2v-133c.4-3.7-1-7.3-3.8-9.8L75 138.1V133h87.3l67.4 148L289 133.1h83.2v5z" ], + "medium-m": [ 512, 512, [], "f3c7", "M71.5 142.3c.6-5.9-1.7-11.8-6.1-15.8L20.3 72.1V64h140.2l108.4 237.7L364.2 64h133.7v8.1l-38.6 37c-3.3 2.5-5 6.7-4.3 10.8v272c-.7 4.1 1 8.3 4.3 10.8l37.7 37v8.1H307.3v-8.1l39.1-37.9c3.8-3.8 3.8-5 3.8-10.8V171.2L241.5 447.1h-14.7L100.4 171.2v184.9c-1.1 7.8 1.5 15.6 7 21.2l50.8 61.6v8.1h-144v-8L65 377.3c5.4-5.6 7.9-13.5 6.5-21.2V142.3z" ], + medrt: [ 544, 512, [], "f3c8", "M113.7 256c0 121.8 83.9 222.8 193.5 241.1-18.7 4.5-38.2 6.9-58.2 6.9C111.4 504 0 393 0 256S111.4 8 248.9 8c20.1 0 39.6 2.4 58.2 6.9C197.5 33.2 113.7 134.2 113.7 256m297.4 100.3c-77.7 55.4-179.6 47.5-240.4-14.6 5.5 14.1 12.7 27.7 21.7 40.5 61.6 88.2 182.4 109.3 269.7 47 87.3-62.3 108.1-184.3 46.5-272.6-9-12.9-19.3-24.3-30.5-34.2 37.4 78.8 10.7 178.5-67 233.9m-218.8-244c-1.4 1-2.7 2.1-4 3.1 64.3-17.8 135.9 4 178.9 60.5 35.7 47 42.9 106.6 24.4 158 56.7-56.2 67.6-142.1 22.3-201.8-50-65.5-149.1-74.4-221.6-19.8M296 224c-4.4 0-8-3.6-8-8v-40c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v40c0 4.4-3.6 8-8 8h-40c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h40c4.4 0 8 3.6 8 8v40c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-40c0-4.4 3.6-8 8-8h40c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-40z" ], + meetup: [ 512, 512, [], "f2e0", "M99 414.3c1.1 5.7-2.3 11.1-8 12.3-5.4 1.1-10.9-2.3-12-8-1.1-5.4 2.3-11.1 7.7-12.3 5.4-1.2 11.1 2.3 12.3 8zm143.1 71.4c-6.3 4.6-8 13.4-3.7 20 4.6 6.6 13.4 8.3 20 3.7 6.3-4.6 8-13.4 3.4-20-4.2-6.5-13.1-8.3-19.7-3.7zm-86-462.3c6.3-1.4 10.3-7.7 8.9-14-1.1-6.6-7.4-10.6-13.7-9.1-6.3 1.4-10.3 7.7-9.1 14 1.4 6.6 7.6 10.6 13.9 9.1zM34.4 226.3c-10-6.9-23.7-4.3-30.6 6-6.9 10-4.3 24 5.7 30.9 10 7.1 23.7 4.6 30.6-5.7 6.9-10.4 4.3-24.1-5.7-31.2zm272-170.9c10.6-6.3 13.7-20 7.7-30.3-6.3-10.6-19.7-14-30-7.7s-13.7 20-7.4 30.6c6 10.3 19.4 13.7 29.7 7.4zm-191.1 58c7.7-5.4 9.4-16 4.3-23.7s-15.7-9.4-23.1-4.3c-7.7 5.4-9.4 16-4.3 23.7 5.1 7.8 15.6 9.5 23.1 4.3zm372.3 156c-7.4 1.7-12.3 9.1-10.6 16.9 1.4 7.4 8.9 12.3 16.3 10.6 7.4-1.4 12.3-8.9 10.6-16.6-1.5-7.4-8.9-12.3-16.3-10.9zm39.7-56.8c-1.1-5.7-6.6-9.1-12-8-5.7 1.1-9.1 6.9-8 12.6 1.1 5.4 6.6 9.1 12.3 8 5.4-1.5 9.1-6.9 7.7-12.6zM447 138.9c-8.6 6-10.6 17.7-4.9 26.3 5.7 8.6 17.4 10.6 26 4.9 8.3-6 10.3-17.7 4.6-26.3-5.7-8.7-17.4-10.9-25.7-4.9zm-6.3 139.4c26.3 43.1 15.1 100-26.3 129.1-17.4 12.3-37.1 17.7-56.9 17.1-12 47.1-69.4 64.6-105.1 32.6-1.1.9-2.6 1.7-3.7 2.9-39.1 27.1-92.3 17.4-119.4-22.3-9.7-14.3-14.6-30.6-15.1-46.9-65.4-10.9-90-94-41.1-139.7-28.3-46.9.6-107.4 53.4-114.9C151.6 70 234.1 38.6 290.1 82c67.4-22.3 136.3 29.4 130.9 101.1 41.1 12.6 52.8 66.9 19.7 95.2zm-70 74.3c-3.1-20.6-40.9-4.6-43.1-27.1-3.1-32 43.7-101.1 40-128-3.4-24-19.4-29.1-33.4-29.4-13.4-.3-16.9 2-21.4 4.6-2.9 1.7-6.6 4.9-11.7-.3-6.3-6-11.1-11.7-19.4-12.9-12.3-2-17.7 2-26.6 9.7-3.4 2.9-12 12.9-20 9.1-3.4-1.7-15.4-7.7-24-11.4-16.3-7.1-40 4.6-48.6 20-12.9 22.9-38 113.1-41.7 125.1-8.6 26.6 10.9 48.6 36.9 47.1 11.1-.6 18.3-4.6 25.4-17.4 4-7.4 41.7-107.7 44.6-112.6 2-3.4 8.9-8 14.6-5.1 5.7 3.1 6.9 9.4 6 15.1-1.1 9.7-28 70.9-28.9 77.7-3.4 22.9 26.9 26.6 38.6 4 3.7-7.1 45.7-92.6 49.4-98.3 4.3-6.3 7.4-8.3 11.7-8 3.1 0 8.3.9 7.1 10.9-1.4 9.4-35.1 72.3-38.9 87.7-4.6 20.6 6.6 41.4 24.9 50.6 11.4 5.7 62.5 15.7 58.5-11.1zm5.7 92.3c-10.3 7.4-12.9 22-5.7 32.6 7.1 10.6 21.4 13.1 32 6 10.6-7.4 13.1-22 6-32.6-7.4-10.6-21.7-13.5-32.3-6z" ], + megaport: [ 496, 512, [], "f5a3", "M248 8C111.04 8 0 119.04 0 256c0 136.97 111.04 248 248 248 136.96 0 248-111.03 248-248C496 119.04 384.96 8 248 8zm85.46 267.67l59.66 59.67v87.05l-26.07 19.23L341 422.39v-65.46l-33.44-33.44-33.44 33.44v65.46L248 441.62l-26.12-19.23v-65.46l-33.44-33.44L155 356.92v65.46l-26.07 19.23-26.06-19.23v-87.05l59.47-59.47V188l59.5-59.5V52.88l26.06-19.23 26.06 19.23v75.64l59.5 59.5m-85.56-11.86l33.44 33.44V276L248 309.33l-33.54-33.54v-66.2l33.44-33.43z" ], + microsoft: [ 448, 512, [], "f3ca", "M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z" ], + mix: [ 448, 512, [], "f3cb", "M0 64v348.9c0 56.2 88 58.1 88 0V174.3c7.9-52.9 88-50.4 88 6.5v175.3c0 57.9 96 58 96 0V240c5.3-54.7 88-52.5 88 4.3v23.8c0 59.9 88 56.6 88 0V64H0z" ], + mixcloud: [ 640, 512, [], "f289", "M424.43 219.729C416.124 134.727 344.135 68 256.919 68c-72.266 0-136.224 46.516-159.205 114.074-54.545 8.029-96.63 54.822-96.63 111.582 0 62.298 50.668 112.966 113.243 112.966h289.614c52.329 0 94.969-42.362 94.969-94.693 0-45.131-32.118-83.063-74.48-92.2zm-20.489 144.53H114.327c-39.04 0-70.881-31.564-70.881-70.604s31.841-70.604 70.881-70.604c18.827 0 36.548 7.475 49.838 20.766 19.963 19.963 50.133-10.227 30.18-30.18-14.675-14.398-32.672-24.365-52.053-29.349 19.935-44.3 64.79-73.926 114.628-73.926 69.496 0 125.979 56.483 125.979 125.702 0 13.568-2.215 26.857-6.369 39.594-8.943 27.517 32.133 38.939 40.147 13.29 2.769-8.306 4.984-16.889 6.369-25.472 19.381 7.476 33.502 26.303 33.502 48.453 0 28.795-23.535 52.33-52.607 52.33zm235.069-52.33c0 44.024-12.737 86.386-37.102 122.657-4.153 6.092-10.798 9.414-17.72 9.414-16.317 0-27.127-18.826-17.443-32.949 19.381-29.349 29.903-63.682 29.903-99.122s-10.521-69.773-29.903-98.845c-15.655-22.831 19.361-47.24 35.163-23.534 24.366 35.993 37.102 78.356 37.102 122.379zm-70.88 0c0 31.565-9.137 62.021-26.857 88.325-4.153 6.091-10.798 9.136-17.72 9.136-17.201 0-27.022-18.979-17.443-32.948 13.013-19.104 19.658-41.255 19.658-64.513 0-22.981-6.645-45.408-19.658-64.512-15.761-22.986 19.008-47.095 35.163-23.535 17.719 26.026 26.857 56.483 26.857 88.047z" ], + mizuni: [ 496, 512, [], "f3cc", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm-80 351.9c-31.4 10.6-58.8 27.3-80 48.2V136c0-22.1 17.9-40 40-40s40 17.9 40 40v223.9zm120-9.9c-12.9-2-26.2-3.1-39.8-3.1-13.8 0-27.2 1.1-40.2 3.1V136c0-22.1 17.9-40 40-40s40 17.9 40 40v214zm120 57.7c-21.2-20.8-48.6-37.4-80-48V136c0-22.1 17.9-40 40-40s40 17.9 40 40v271.7z" ], + modx: [ 448, 512, [], "f285", "M356 241.8l36.7 23.7V480l-133-83.8L356 241.8zM440 75H226.3l-23 37.8 153.5 96.5L440 75zm-89 142.8L55.2 32v214.5l46 29L351 217.8zM97 294.2L8 437h213.7l125-200.5L97 294.2z" ], + monero: [ 496, 512, [], "f3d0", "M352 384h108.4C417 455.9 338.1 504 248 504S79 455.9 35.6 384H144V256.2L248 361l104-105v128zM88 336V128l159.4 159.4L408 128v208h74.8c8.5-25.1 13.2-52 13.2-80C496 119 385 8 248 8S0 119 0 256c0 28 4.6 54.9 13.2 80H88z" ], + napster: [ 496, 512, [], "f3d2", "M298.3 373.6c-14.2 13.6-31.3 24.1-50.4 30.5-19-6.4-36.2-16.9-50.3-30.5h100.7zm44-199.6c20-16.9 43.6-29.2 69.6-36.2V299c0 219.4-328 217.6-328 .3V137.7c25.9 6.9 49.6 19.6 69.5 36.4 56.8-40 132.5-39.9 188.9-.1zm-208.8-58.5c64.4-60 164.3-60.1 228.9-.2-7.1 3.5-13.9 7.3-20.6 11.5-58.7-30.5-129.2-30.4-187.9.1-6.3-4-13.9-8.2-20.4-11.4zM43.8 93.2v69.3c-58.4 36.5-58.4 121.1.1 158.3 26.4 245.1 381.7 240.3 407.6 1.5l.3-1.7c58.7-36.3 58.9-121.7.2-158.2V93.2c-17.3.5-34 3-50.1 7.4-82-91.5-225.5-91.5-307.5.1-16.3-4.4-33.1-7-50.6-7.5zM259.2 352s36-.3 61.3-1.5c10.2-.5 21.1-4 25.5-6.5 26.3-15.1 25.4-39.2 26.2-47.4-79.5-.6-99.9-3.9-113 55.4zm-135.5-55.3c.8 8.2-.1 32.3 26.2 47.4 4.4 2.5 15.2 6 25.5 6.5 25.3 1.1 61.3 1.5 61.3 1.5-13.2-59.4-33.7-56.1-113-55.4zm169.1 123.4c-3.2-5.3-6.9-7.3-6.9-7.3-24.8 7.3-52.2 6.9-75.9 0 0 0-2.9 1.5-6.4 6.6-2.8 4.1-3.7 9.6-3.7 9.6 29.1 17.6 67.1 17.6 96.2 0-.1-.1-.3-4-3.3-8.9z" ], + nimblr: [ 355, 512, [], "f5a8", "M232.6 299.29c15.57 0 27.15 11.46 27.15 26.96 0 15.55-11.62 26.96-27.15 26.96-15.7 0-27.15-11.57-27.15-26.96 0-15.51 11.58-26.96 27.15-26.96zM99.01 326.25c0-15.61 11.68-26.96 27.15-26.96 15.57 0 27.15 11.46 27.15 26.96 0 15.41-11.47 26.96-27.15 26.96-15.44 0-27.15-11.31-27.15-26.96m78.75-167.3C143 158.95 75.45 178.77 45.25 227L0 0v335.48C0 433.13 79.61 512 177.76 512c98.24 0 177.76-78.95 177.76-176.52 0-97.46-79.39-176.53-177.76-176.53zm0 308.12c-73.27 0-132.51-58.9-132.51-131.59 0-72.68 59.24-131.59 132.51-131.59 73.27 0 132.51 58.91 132.51 131.59s-59.25 131.59-132.51 131.59z" ], + "nintendo-switch": [ 448, 512, [], "f418", "M95.9 33.5c-44.6 8-80.5 41-91.8 84.4C0 133.6-.3 142.8.2 264.4.4 376 .5 378.6 2.4 387.3c10.3 46.5 43.3 79.6 90.3 90.5 6.1 1.4 13.9 1.7 64.1 1.9 51.9.4 57.3.3 58.7-1.1 1.4-1.4 1.5-19.3 1.5-222.2 0-150.5-.3-221.3-.9-222.6-.9-1.7-2.5-1.8-56.9-1.7-44.2.1-57.5.4-63.3 1.4zm83.9 222.6V444l-37.8-.5c-34.8-.4-38.5-.6-45.5-2.3-29.9-7.7-52-30.7-58.3-60.7-2-9.4-2-240.1-.1-249.3 5.6-26.1 23.7-47.7 48-57.4 12.2-4.9 17.9-5.5 57.6-5.6l35.9-.1v188zm-75.9-131.2c-5.8 1.1-14.7 5.6-19.5 9.7-9.7 8.4-14.6 20.4-13.8 34.5.4 7.3.8 9.3 3.8 15.2 4.4 9 10.9 15.6 19.9 20 6.2 3.1 7.8 3.4 15.9 3.7 7.3.3 9.9 0 14.8-1.7 20.1-6.8 32.3-26.3 28.8-46.4-3.9-23.7-26.6-39.7-49.9-35zm158.2-92.3c-.4.3-.6 100.8-.6 223.5 0 202.3.1 222.8 1.5 223.4 2.5.9 74.5.6 83.4-.4 37.7-4.3 71-27.2 89-61.2 2.3-4.4 5.4-11.7 7-16.2 5.8-17.4 5.7-12.8 5.7-146.1 0-106.4-.2-122.3-1.5-129-9.2-48.3-46.1-84.8-94.5-93.1-6.5-1.1-16.5-1.4-48.8-1.4-22.4-.1-40.9.2-41.2.5zm99.1 202.1c14.5 3.8 26.3 14.8 31.2 28.9 3.1 8.7 3 21.5-.1 29.5-5.7 14.7-16.8 25-31.1 28.8-23.2 6-47.9-8-54.6-31-2-7-1.9-18.9.4-26.2 6.9-22.7 31-36.1 54.2-30z" ], + node: [ 640, 512, [], "f419", "M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4.1l14.8 8.8c.5.3 1.3.3 1.8 0L375 408c.5-.3.9-.9.9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6.3-.9 1-.9 1.6v66.7c0 .6.4 1.2.9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9.7-1.7 1.7-1.7h7.3c.9 0 1.7.7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7zm46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6.2.8.8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5.3-.4.5-.8.4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7.7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8zm54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1zm-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3 0 5.2 4.2 9.4 9.3 9.4 5.2-.1 9.4-4.3 9.4-9.4zm-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7.1 1.8 1.2 2.1 2.8.1 1 .3 2.7.6 3.3zm-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8zM137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3.4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3.7 2.5 1.8 3.2 1.1.7 2.5.7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1 1.3 0 2.6.3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1.7 2.6.7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2l.2-95zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4zm-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6.3-.9.9-.9 1.6v24.3c0 .7.4 1.3.9 1.6l21 12.1c.6.3 1.3.3 1.8 0l21-12.1c.6-.3.9-.9.9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3.7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1.7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2l36.7-21.3zM559 219c-.4.3-.7.7-.7 1.2v13.6c0 .5.3 1 .7 1.2l11.8 6.8c.4.3 1 .3 1.4 0L584 235c.4-.3.7-.7.7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0L559 219zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7.1-.5.2-1.1.2-1.7zm-74.3-124.9l-.8.5h1.1l-.3-.5zm76.2 130.2l-.4-.7v.9l.4-.2z" ], + "node-js": [ 448, 512, [], "f3d3", "M224 508c-6.7 0-13.5-1.8-19.4-5.2l-61.7-36.5c-9.2-5.2-4.7-7-1.7-8 12.3-4.3 14.8-5.2 27.9-12.7 1.4-.8 3.2-.5 4.6.4l47.4 28.1c1.7 1 4.1 1 5.7 0l184.7-106.6c1.7-1 2.8-3 2.8-5V149.3c0-2.1-1.1-4-2.9-5.1L226.8 37.7c-1.7-1-4-1-5.7 0L36.6 144.3c-1.8 1-2.9 3-2.9 5.1v213.1c0 2 1.1 4 2.9 4.9l50.6 29.2c27.5 13.7 44.3-2.4 44.3-18.7V167.5c0-3 2.4-5.3 5.4-5.3h23.4c2.9 0 5.4 2.3 5.4 5.3V378c0 36.6-20 57.6-54.7 57.6-10.7 0-19.1 0-42.5-11.6l-48.4-27.9C8.1 389.2.7 376.3.7 362.4V149.3c0-13.8 7.4-26.8 19.4-33.7L204.6 9c11.7-6.6 27.2-6.6 38.8 0l184.7 106.7c12 6.9 19.4 19.8 19.4 33.7v213.1c0 13.8-7.4 26.7-19.4 33.7L243.4 502.8c-5.9 3.4-12.6 5.2-19.4 5.2zm149.1-210.1c0-39.9-27-50.5-83.7-58-57.4-7.6-63.2-11.5-63.2-24.9 0-11.1 4.9-25.9 47.4-25.9 37.9 0 51.9 8.2 57.7 33.8.5 2.4 2.7 4.2 5.2 4.2h24c1.5 0 2.9-.6 3.9-1.7s1.5-2.6 1.4-4.1c-3.7-44.1-33-64.6-92.2-64.6-52.7 0-84.1 22.2-84.1 59.5 0 40.4 31.3 51.6 81.8 56.6 60.5 5.9 65.2 14.8 65.2 26.7 0 20.6-16.6 29.4-55.5 29.4-48.9 0-59.6-12.3-63.2-36.6-.4-2.6-2.6-4.5-5.3-4.5h-23.9c-3 0-5.3 2.4-5.3 5.3 0 31.1 16.9 68.2 97.8 68.2 58.4-.1 92-23.2 92-63.4z" ], + npm: [ 576, 512, [], "f3d4", "M288 288h-32v-64h32v64zm288-128v192H288v32H160v-32H0V160h576zm-416 32H32v128h64v-96h32v96h32V192zm160 0H192v160h64v-32h64V192zm224 0H352v128h64v-96h32v96h32v-96h32v96h32V192z" ], + ns8: [ 640, 512, [], "f3d5", "M187.1 159.9l-34.2 113.7-54.5-113.7H49L0 320h44.9L76 213.5 126.6 320h56.9L232 159.9h-44.9zm452.5-.9c-2.9-18-23.9-28.1-42.1-31.3-44.6-7.8-101.9 16.3-88.5 58.8v.1c-43.8 8.7-74.3 26.8-94.2 48.2-3-9.8-13.6-16.6-34-16.6h-87.6c-9.3 0-12.9-2.3-11.5-7.4 1.6-5.5 1.9-6.8 3.7-12.2 2.1-6.4 7.8-7.1 13.3-7.1h133.5l9.7-31.5c-139.7 0-144.5-.5-160.1 1.2-12.3 1.3-23.5 4.8-30.6 15-6.8 9.9-14.4 35.6-17.6 47.1-5.4 19.4-.6 28.6 32.8 28.6h87.3c7.8 0 8.8 2.7 7.7 6.6-1.1 4.4-2.8 10-4.5 14.6-1.6 4.2-4.7 7.4-13.8 7.4H216.3L204.7 320c139.9 0 145.3-.6 160.9-2.3 6.6-.7 13-2.1 18.5-4.9.2 3.7.5 7.3 1.2 10.8 5.4 30.5 27.4 52.3 56.8 59.5 48.6 11.9 108.7-16.8 135.1-68 18.7-36.2 14.1-76.2-3.4-105.5h.1c29.6-5.9 70.3-22 65.7-50.6zM530.7 263.7c-5.9 29.5-36.6 47.8-61.6 43.9-30.9-4.8-38.5-39.5-14.1-64.8 16.2-16.8 45.2-24 68.5-26.9 6.7 14.1 10.3 32 7.2 47.8zm21.8-83.1c-4.2-6-9.8-18.5-2.5-26.3 6.7-7.2 20.9-10.1 31.8-7.7 15.3 3.4 19.7 15.9 4.9 24.4-10.7 6.1-23.6 8.1-34.2 9.6z" ], + nutritionix: [ 400, 512, [], "f3d6", "M88 8.1S221.4-.1 209 112.5c0 0 19.1-74.9 103-40.6 0 0-17.7 74-88 56 0 0 14.6-54.6 66.1-56.6 0 0-39.9-10.3-82.1 48.8 0 0-19.8-94.5-93.6-99.7 0 0 75.2 19.4 77.6 107.5 0 .1-106.4 7-104-119.8zm312 315.6c0 48.5-9.7 95.3-32 132.3-42.2 30.9-105 48-168 48-62.9 0-125.8-17.1-168-48C9.7 419 0 372.2 0 323.7 0 275.3 17.7 229 40 192c42.2-30.9 97.1-48.6 160-48.6 63 0 117.8 17.6 160 48.6 22.3 37 40 83.3 40 131.7zM120 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM192 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM264 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM336 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm24-39.6c-4.8-22.3-7.4-36.9-16-56-38.8-19.9-90.5-32-144-32S94.8 180.1 56 200c-8.8 19.5-11.2 33.9-16 56 42.2-7.9 98.7-14.8 160-14.8s117.8 6.9 160 14.8z" ], + odnoklassniki: [ 320, 512, [], "f263", "M275.1 334c-27.4 17.4-65.1 24.3-90 26.9l20.9 20.6 76.3 76.3c27.9 28.6-17.5 73.3-45.7 45.7-19.1-19.4-47.1-47.4-76.3-76.6L84 503.4c-28.2 27.5-73.6-17.6-45.4-45.7 19.4-19.4 47.1-47.4 76.3-76.3l20.6-20.6c-24.6-2.6-62.9-9.1-90.6-26.9-32.6-21-46.9-33.3-34.3-59 7.4-14.6 27.7-26.9 54.6-5.7 0 0 36.3 28.9 94.9 28.9s94.9-28.9 94.9-28.9c26.9-21.1 47.1-8.9 54.6 5.7 12.4 25.7-1.9 38-34.5 59.1zM30.3 129.7C30.3 58 88.6 0 160 0s129.7 58 129.7 129.7c0 71.4-58.3 129.4-129.7 129.4s-129.7-58-129.7-129.4zm66 0c0 35.1 28.6 63.7 63.7 63.7s63.7-28.6 63.7-63.7c0-35.4-28.6-64-63.7-64s-63.7 28.6-63.7 64z" ], + "odnoklassniki-square": [ 448, 512, [], "f264", "M184.2 177.1c0-22.1 17.9-40 39.8-40s39.8 17.9 39.8 40c0 22-17.9 39.8-39.8 39.8s-39.8-17.9-39.8-39.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-305.1 97.1c0 44.6 36.4 80.9 81.1 80.9s81.1-36.2 81.1-80.9c0-44.8-36.4-81.1-81.1-81.1s-81.1 36.2-81.1 81.1zm174.5 90.7c-4.6-9.1-17.3-16.8-34.1-3.6 0 0-22.7 18-59.3 18s-59.3-18-59.3-18c-16.8-13.2-29.5-5.5-34.1 3.6-7.9 16.1 1.1 23.7 21.4 37 17.3 11.1 41.2 15.2 56.6 16.8l-12.9 12.9c-18.2 18-35.5 35.5-47.7 47.7-17.6 17.6 10.7 45.8 28.4 28.6l47.7-47.9c18.2 18.2 35.7 35.7 47.7 47.9 17.6 17.2 46-10.7 28.6-28.6l-47.7-47.7-13-12.9c15.5-1.6 39.1-5.9 56.2-16.8 20.4-13.3 29.3-21 21.5-37z" ], + "old-republic": [ 496, 512, [], "f510", "M235.76 10.23c7.5-.31 15-.28 22.5-.09 3.61.14 7.2.4 10.79.73 4.92.27 9.79 1.03 14.67 1.62 2.93.43 5.83.98 8.75 1.46 7.9 1.33 15.67 3.28 23.39 5.4 12.24 3.47 24.19 7.92 35.76 13.21 26.56 12.24 50.94 29.21 71.63 49.88 20.03 20.09 36.72 43.55 48.89 69.19 1.13 2.59 2.44 5.1 3.47 7.74 2.81 6.43 5.39 12.97 7.58 19.63 4.14 12.33 7.34 24.99 9.42 37.83.57 3.14 1.04 6.3 1.4 9.47.55 3.83.94 7.69 1.18 11.56.83 8.34.84 16.73.77 25.1-.07 4.97-.26 9.94-.75 14.89-.24 3.38-.51 6.76-.98 10.12-.39 2.72-.63 5.46-1.11 8.17-.9 5.15-1.7 10.31-2.87 15.41-4.1 18.5-10.3 36.55-18.51 53.63-15.77 32.83-38.83 62.17-67.12 85.12a246.503 246.503 0 0 1-56.91 34.86c-6.21 2.68-12.46 5.25-18.87 7.41-3.51 1.16-7.01 2.38-10.57 3.39-6.62 1.88-13.29 3.64-20.04 5-4.66.91-9.34 1.73-14.03 2.48-5.25.66-10.5 1.44-15.79 1.74-6.69.66-13.41.84-20.12.81-6.82.03-13.65-.12-20.45-.79-3.29-.23-6.57-.5-9.83-.95-2.72-.39-5.46-.63-8.17-1.11-4.12-.72-8.25-1.37-12.35-2.22-4.25-.94-8.49-1.89-12.69-3.02-8.63-2.17-17.08-5.01-25.41-8.13-10.49-4.12-20.79-8.75-30.64-14.25-2.14-1.15-4.28-2.29-6.35-3.57-11.22-6.58-21.86-14.1-31.92-22.34-34.68-28.41-61.41-66.43-76.35-108.7-3.09-8.74-5.71-17.65-7.8-26.68-1.48-6.16-2.52-12.42-3.58-18.66-.4-2.35-.61-4.73-.95-7.09-.6-3.96-.75-7.96-1.17-11.94-.8-9.47-.71-18.99-.51-28.49.14-3.51.34-7.01.7-10.51.31-3.17.46-6.37.92-9.52.41-2.81.65-5.65 1.16-8.44.7-3.94 1.3-7.9 2.12-11.82 3.43-16.52 8.47-32.73 15.26-48.18 1.15-2.92 2.59-5.72 3.86-8.59 8.05-16.71 17.9-32.56 29.49-47.06 20-25.38 45.1-46.68 73.27-62.47 7.5-4.15 15.16-8.05 23.07-11.37 15.82-6.88 32.41-11.95 49.31-15.38 3.51-.67 7.04-1.24 10.56-1.85 2.62-.47 5.28-.7 7.91-1.08 3.53-.53 7.1-.68 10.65-1.04 2.46-.24 4.91-.36 7.36-.51m8.64 24.41c-9.23.1-18.43.99-27.57 2.23-7.3 1.08-14.53 2.6-21.71 4.3-13.91 3.5-27.48 8.34-40.46 14.42-10.46 4.99-20.59 10.7-30.18 17.22-4.18 2.92-8.4 5.8-12.34 9.03-5.08 3.97-9.98 8.17-14.68 12.59-2.51 2.24-4.81 4.7-7.22 7.06-28.22 28.79-48.44 65.39-57.5 104.69-2.04 8.44-3.54 17.02-4.44 25.65-1.1 8.89-1.44 17.85-1.41 26.8.11 7.14.38 14.28 1.22 21.37.62 7.12 1.87 14.16 3.2 21.18 1.07 4.65 2.03 9.32 3.33 13.91 6.29 23.38 16.5 45.7 30.07 65.75 8.64 12.98 18.78 24.93 29.98 35.77 16.28 15.82 35.05 29.04 55.34 39.22 7.28 3.52 14.66 6.87 22.27 9.63 5.04 1.76 10.06 3.57 15.22 4.98 11.26 3.23 22.77 5.6 34.39 7.06 2.91.29 5.81.61 8.72.9 13.82 1.08 27.74 1 41.54-.43 4.45-.6 8.92-.99 13.35-1.78 3.63-.67 7.28-1.25 10.87-2.1 4.13-.98 8.28-1.91 12.36-3.07 26.5-7.34 51.58-19.71 73.58-36.2 15.78-11.82 29.96-25.76 42.12-41.28 3.26-4.02 6.17-8.31 9.13-12.55 3.39-5.06 6.58-10.25 9.6-15.54 2.4-4.44 4.74-8.91 6.95-13.45 5.69-12.05 10.28-24.62 13.75-37.49 2.59-10.01 4.75-20.16 5.9-30.45 1.77-13.47 1.94-27.1 1.29-40.65-.29-3.89-.67-7.77-1-11.66-2.23-19.08-6.79-37.91-13.82-55.8-5.95-15.13-13.53-29.63-22.61-43.13-12.69-18.8-28.24-35.68-45.97-49.83-25.05-20-54.47-34.55-85.65-42.08-7.78-1.93-15.69-3.34-23.63-4.45-3.91-.59-7.85-.82-11.77-1.24-7.39-.57-14.81-.72-22.22-.58zM139.26 83.53c13.3-8.89 28.08-15.38 43.3-20.18-3.17 1.77-6.44 3.38-9.53 5.29-11.21 6.68-21.52 14.9-30.38 24.49-6.8 7.43-12.76 15.73-17.01 24.89-3.29 6.86-5.64 14.19-6.86 21.71-.93 4.85-1.3 9.81-1.17 14.75.13 13.66 4.44 27.08 11.29 38.82 5.92 10.22 13.63 19.33 22.36 27.26 4.85 4.36 10.24 8.09 14.95 12.6 2.26 2.19 4.49 4.42 6.43 6.91 2.62 3.31 4.89 6.99 5.99 11.1.9 3.02.66 6.2.69 9.31.02 4.1-.04 8.2.03 12.3.14 3.54-.02 7.09.11 10.63.08 2.38.02 4.76.05 7.14.16 5.77.06 11.53.15 17.3.11 2.91.02 5.82.13 8.74.03 1.63.13 3.28-.03 4.91-.91.12-1.82.18-2.73.16-10.99 0-21.88-2.63-31.95-6.93-6-2.7-11.81-5.89-17.09-9.83-5.75-4.19-11.09-8.96-15.79-14.31-6.53-7.24-11.98-15.39-16.62-23.95-1.07-2.03-2.24-4.02-3.18-6.12-1.16-2.64-2.62-5.14-3.67-7.82-4.05-9.68-6.57-19.94-8.08-30.31-.49-4.44-1.09-8.88-1.2-13.35-.7-15.73.84-31.55 4.67-46.82 2.12-8.15 4.77-16.18 8.31-23.83 6.32-14.2 15.34-27.18 26.3-38.19 6.28-6.2 13.13-11.84 20.53-16.67zm175.37-20.12c2.74.74 5.41 1.74 8.09 2.68 6.36 2.33 12.68 4.84 18.71 7.96 13.11 6.44 25.31 14.81 35.82 24.97 10.2 9.95 18.74 21.6 25.14 34.34 1.28 2.75 2.64 5.46 3.81 8.26 6.31 15.1 10 31.26 11.23 47.57.41 4.54.44 9.09.45 13.64.07 11.64-1.49 23.25-4.3 34.53-1.97 7.27-4.35 14.49-7.86 21.18-3.18 6.64-6.68 13.16-10.84 19.24-6.94 10.47-15.6 19.87-25.82 27.22-10.48 7.64-22.64 13.02-35.4 15.38-3.51.69-7.08 1.08-10.66 1.21-1.85.06-3.72.16-5.56-.1-.28-2.15 0-4.31-.01-6.46-.03-3.73.14-7.45.1-11.17.19-7.02.02-14.05.21-21.07.03-2.38-.03-4.76.03-7.14.17-5.07-.04-10.14.14-15.21.1-2.99-.24-6.04.51-8.96.66-2.5 1.78-4.86 3.09-7.08 4.46-7.31 11.06-12.96 17.68-18.26 5.38-4.18 10.47-8.77 15.02-13.84 7.68-8.37 14.17-17.88 18.78-28.27 2.5-5.93 4.52-12.1 5.55-18.46.86-4.37 1.06-8.83 1.01-13.27-.02-7.85-1.4-15.65-3.64-23.17-1.75-5.73-4.27-11.18-7.09-16.45-3.87-6.93-8.65-13.31-13.96-19.2-9.94-10.85-21.75-19.94-34.6-27.1-1.85-1.02-3.84-1.82-5.63-2.97zm-100.8 58.45c.98-1.18 1.99-2.33 3.12-3.38-.61.93-1.27 1.81-1.95 2.68-3.1 3.88-5.54 8.31-7.03 13.06-.87 3.27-1.68 6.6-1.73 10-.07 2.52-.08 5.07.32 7.57 1.13 7.63 4.33 14.85 8.77 21.12 2 2.7 4.25 5.27 6.92 7.33 1.62 1.27 3.53 2.09 5.34 3.05 3.11 1.68 6.32 3.23 9.07 5.48 2.67 2.09 4.55 5.33 4.4 8.79-.01 73.67 0 147.34-.01 221.02 0 1.35-.08 2.7.04 4.04.13 1.48.82 2.83 1.47 4.15.86 1.66 1.78 3.34 3.18 4.62.85.77 1.97 1.4 3.15 1.24 1.5-.2 2.66-1.35 3.45-2.57.96-1.51 1.68-3.16 2.28-4.85.76-2.13.44-4.42.54-6.63.14-4.03-.02-8.06.14-12.09.03-5.89.03-11.77.06-17.66.14-3.62.03-7.24.11-10.86.15-4.03-.02-8.06.14-12.09.03-5.99.03-11.98.07-17.97.14-3.62.02-7.24.11-10.86.14-3.93-.02-7.86.14-11.78.03-5.99.03-11.98.06-17.97.16-3.94-.01-7.88.19-11.82.29 1.44.13 2.92.22 4.38.19 3.61.42 7.23.76 10.84.32 3.44.44 6.89.86 10.32.37 3.1.51 6.22.95 9.31.57 4.09.87 8.21 1.54 12.29 1.46 9.04 2.83 18.11 5.09 26.99 1.13 4.82 2.4 9.61 4 14.3 2.54 7.9 5.72 15.67 10.31 22.62 1.73 2.64 3.87 4.98 6.1 7.21.27.25.55.51.88.71.6.25 1.31-.07 1.7-.57.71-.88 1.17-1.94 1.7-2.93 4.05-7.8 8.18-15.56 12.34-23.31.7-1.31 1.44-2.62 2.56-3.61 1.75-1.57 3.84-2.69 5.98-3.63 2.88-1.22 5.9-2.19 9.03-2.42 6.58-.62 13.11.75 19.56 1.85 3.69.58 7.4 1.17 11.13 1.41 3.74.1 7.48.05 11.21-.28 8.55-.92 16.99-2.96 24.94-6.25 5.3-2.24 10.46-4.83 15.31-7.93 11.46-7.21 21.46-16.57 30.04-27.01 1.17-1.42 2.25-2.9 3.46-4.28-1.2 3.24-2.67 6.37-4.16 9.48-1.25 2.9-2.84 5.61-4.27 8.42-5.16 9.63-11.02 18.91-17.75 27.52-4.03 5.21-8.53 10.05-13.33 14.57-6.64 6.05-14.07 11.37-22.43 14.76-8.21 3.37-17.31 4.63-26.09 3.29-3.56-.58-7.01-1.69-10.41-2.88-2.79-.97-5.39-2.38-8.03-3.69-3.43-1.71-6.64-3.81-9.71-6.08 2.71 3.06 5.69 5.86 8.7 8.61 4.27 3.76 8.74 7.31 13.63 10.23 3.98 2.45 8.29 4.4 12.84 5.51 1.46.37 2.96.46 4.45.6-1.25 1.1-2.63 2.04-3.99 2.98-9.61 6.54-20.01 11.86-30.69 16.43-20.86 8.7-43.17 13.97-65.74 15.34-4.66.24-9.32.36-13.98.36-4.98-.11-9.97-.13-14.92-.65-11.2-.76-22.29-2.73-33.17-5.43-10.35-2.71-20.55-6.12-30.3-10.55-8.71-3.86-17.12-8.42-24.99-13.79-1.83-1.31-3.74-2.53-5.37-4.08 6.6-1.19 13.03-3.39 18.99-6.48 5.74-2.86 10.99-6.66 15.63-11.07 2.24-2.19 4.29-4.59 6.19-7.09-3.43 2.13-6.93 4.15-10.62 5.78-4.41 2.16-9.07 3.77-13.81 5.02-5.73 1.52-11.74 1.73-17.61 1.14-8.13-.95-15.86-4.27-22.51-8.98-4.32-2.94-8.22-6.43-11.96-10.06-9.93-10.16-18.2-21.81-25.66-33.86-3.94-6.27-7.53-12.75-11.12-19.22-1.05-2.04-2.15-4.05-3.18-6.1 2.85 2.92 5.57 5.97 8.43 8.88 8.99 8.97 18.56 17.44 29.16 24.48 7.55 4.9 15.67 9.23 24.56 11.03 3.11.73 6.32.47 9.47.81 2.77.28 5.56.2 8.34.3 5.05.06 10.11.04 15.16-.16 3.65-.16 7.27-.66 10.89-1.09 2.07-.25 4.11-.71 6.14-1.2 3.88-.95 8.11-.96 11.83.61 4.76 1.85 8.44 5.64 11.38 9.71 2.16 3.02 4.06 6.22 5.66 9.58 1.16 2.43 2.46 4.79 3.55 7.26 1 2.24 2.15 4.42 3.42 6.52.67 1.02 1.4 2.15 2.62 2.55 1.06-.75 1.71-1.91 2.28-3.03 2.1-4.16 3.42-8.65 4.89-13.05 2.02-6.59 3.78-13.27 5.19-20.02 2.21-9.25 3.25-18.72 4.54-28.13.56-3.98.83-7.99 1.31-11.97.87-10.64 1.9-21.27 2.24-31.94.08-1.86.24-3.71.25-5.57.01-4.35.25-8.69.22-13.03-.01-2.38-.01-4.76 0-7.13.05-5.07-.2-10.14-.22-15.21-.2-6.61-.71-13.2-1.29-19.78-.73-5.88-1.55-11.78-3.12-17.51-2.05-7.75-5.59-15.03-9.8-21.82-3.16-5.07-6.79-9.88-11.09-14.03-3.88-3.86-8.58-7.08-13.94-8.45-1.5-.41-3.06-.45-4.59-.64.07-2.99.7-5.93 1.26-8.85 1.59-7.71 3.8-15.3 6.76-22.6 1.52-4.03 3.41-7.9 5.39-11.72 3.45-6.56 7.62-12.79 12.46-18.46zm31.27 1.7c.35-.06.71-.12 1.07-.19.19 1.79.09 3.58.1 5.37v38.13c-.01 1.74.13 3.49-.15 5.22-.36-.03-.71-.05-1.06-.05-.95-3.75-1.72-7.55-2.62-11.31-.38-1.53-.58-3.09-1.07-4.59-1.7-.24-3.43-.17-5.15-.2-5.06-.01-10.13 0-15.19-.01-1.66-.01-3.32.09-4.98-.03-.03-.39-.26-.91.16-1.18 1.28-.65 2.72-.88 4.06-1.35 3.43-1.14 6.88-2.16 10.31-3.31 1.39-.48 2.9-.72 4.16-1.54.04-.56.02-1.13-.05-1.68-1.23-.55-2.53-.87-3.81-1.28-3.13-1.03-6.29-1.96-9.41-3.02-1.79-.62-3.67-1-5.41-1.79-.03-.37-.07-.73-.11-1.09 5.09-.19 10.2.06 15.3-.12 3.36-.13 6.73.08 10.09-.07.12-.39.26-.77.37-1.16 1.08-4.94 2.33-9.83 3.39-14.75zm5.97-.2c.36.05.72.12 1.08.2.98 3.85 1.73 7.76 2.71 11.61.36 1.42.56 2.88 1.03 4.27 2.53.18 5.07-.01 7.61.05 5.16.12 10.33.12 15.49.07.76-.01 1.52.03 2.28.08-.04.36-.07.72-.1 1.08-1.82.83-3.78 1.25-5.67 1.89-3.73 1.23-7.48 2.39-11.22 3.57-.57.17-1.12.42-1.67.64-.15.55-.18 1.12-.12 1.69.87.48 1.82.81 2.77 1.09 4.88 1.52 9.73 3.14 14.63 4.6.38.13.78.27 1.13.49.4.27.23.79.15 1.18-1.66.13-3.31.03-4.97.04-5.17.01-10.33-.01-15.5.01-1.61.03-3.22-.02-4.82.21-.52 1.67-.72 3.42-1.17 5.11-.94 3.57-1.52 7.24-2.54 10.78-.36.01-.71.02-1.06.06-.29-1.73-.15-3.48-.15-5.22v-38.13c.02-1.78-.08-3.58.11-5.37zM65.05 168.33c1.12-2.15 2.08-4.4 3.37-6.46-1.82 7.56-2.91 15.27-3.62 23-.8 7.71-.85 15.49-.54 23.23 1.05 19.94 5.54 39.83 14.23 57.88 2.99 5.99 6.35 11.83 10.5 17.11 6.12 7.47 12.53 14.76 19.84 21.09 4.8 4.1 9.99 7.78 15.54 10.8 3.27 1.65 6.51 3.39 9.94 4.68 5.01 2.03 10.19 3.61 15.42 4.94 3.83.96 7.78 1.41 11.52 2.71 5 1.57 9.47 4.61 13.03 8.43 4.93 5.23 8.09 11.87 10.2 18.67.99 2.9 1.59 5.91 2.17 8.92.15.75.22 1.52.16 2.29-6.5 2.78-13.26 5.06-20.26 6.18-4.11.78-8.29.99-12.46 1.08-10.25.24-20.47-1.76-30.12-5.12-3.74-1.42-7.49-2.85-11.03-4.72-8.06-3.84-15.64-8.7-22.46-14.46-2.92-2.55-5.83-5.13-8.4-8.03-9.16-9.83-16.3-21.41-21.79-33.65-2.39-5.55-4.61-11.18-6.37-16.96-1.17-3.94-2.36-7.89-3.26-11.91-.75-2.94-1.22-5.95-1.87-8.92-.46-2.14-.69-4.32-1.03-6.48-.85-5.43-1.28-10.93-1.33-16.43.11-6.18.25-12.37 1.07-18.5.4-2.86.67-5.74 1.15-8.6.98-5.7 2.14-11.37 3.71-16.93 3.09-11.65 7.48-22.95 12.69-33.84zm363.73-6.44c1.1 1.66 1.91 3.48 2.78 5.26 2.1 4.45 4.24 8.9 6.02 13.49 7.61 18.76 12.3 38.79 13.04 59.05.02 1.76.07 3.52.11 5.29.13 9.57-1.27 19.09-3.18 28.45-.73 3.59-1.54 7.17-2.58 10.69-4.04 14.72-10 29-18.41 41.78-8.21 12.57-19.01 23.55-31.84 31.41-5.73 3.59-11.79 6.64-18.05 9.19-5.78 2.19-11.71 4.03-17.8 5.11-6.4 1.05-12.91 1.52-19.4 1.23-7.92-.48-15.78-2.07-23.21-4.85-1.94-.8-3.94-1.46-5.84-2.33-.21-1.51.25-2.99.53-4.46 1.16-5.74 3.03-11.36 5.7-16.58 2.37-4.51 5.52-8.65 9.46-11.9 2.43-2.05 5.24-3.61 8.16-4.83 3.58-1.5 7.47-1.97 11.24-2.83 7.23-1.71 14.37-3.93 21.15-7 10.35-4.65 19.71-11.38 27.65-19.46 1.59-1.61 3.23-3.18 4.74-4.87 3.37-3.76 6.71-7.57 9.85-11.53 7.48-10.07 12.82-21.59 16.71-33.48 1.58-5.3 3.21-10.6 4.21-16.05.63-2.87 1.04-5.78 1.52-8.68.87-6.09 1.59-12.22 1.68-18.38.12-6.65.14-13.32-.53-19.94-.73-7.99-1.87-15.96-3.71-23.78z" ], + opencart: [ 640, 512, [], "f23d", "M423.3 440.7c0 25.3-20.3 45.6-45.6 45.6s-45.8-20.3-45.8-45.6 20.6-45.8 45.8-45.8c25.4 0 45.6 20.5 45.6 45.8zm-253.9-45.8c-25.3 0-45.6 20.6-45.6 45.8s20.3 45.6 45.6 45.6 45.8-20.3 45.8-45.6-20.5-45.8-45.8-45.8zm291.7-270C158.9 124.9 81.9 112.1 0 25.7c34.4 51.7 53.3 148.9 373.1 144.2 333.3-5 130 86.1 70.8 188.9 186.7-166.7 319.4-233.9 17.2-233.9z" ], + openid: [ 448, 512, [], "f19b", "M271.5 432l-68 32C88.5 453.7 0 392.5 0 318.2c0-71.5 82.5-131 191.7-144.3v43c-71.5 12.5-124 53-124 101.3 0 51 58.5 93.3 135.7 103v-340l68-33.2v384zM448 291l-131.3-28.5 36.8-20.7c-19.5-11.5-43.5-20-70-24.8v-43c46.2 5.5 87.7 19.5 120.3 39.3l35-19.8L448 291z" ], + opera: [ 496, 512, [], "f26a", "M313.9 32.7c-170.2 0-252.6 223.8-147.5 355.1 36.5 45.4 88.6 75.6 147.5 75.6 36.3 0 70.3-11.1 99.4-30.4-43.8 39.2-101.9 63-165.3 63-3.9 0-8 0-11.9-.3C104.6 489.6 0 381.1 0 248 0 111 111 0 248 0h.8c63.1.3 120.7 24.1 164.4 63.1-29-19.4-63.1-30.4-99.3-30.4zm101.8 397.7c-40.9 24.7-90.7 23.6-132-5.8 56.2-20.5 97.7-91.6 97.7-176.6 0-84.7-41.2-155.8-97.4-176.6 41.8-29.2 91.2-30.3 132.9-5 105.9 98.7 105.5 265.7-1.2 364z" ], + "optin-monster": [ 576, 512, [], "f23c", "M550.671 450.303c0 11.62-15.673 19.457-32.158 14.863-12.16-3.243-31.346-17.565-36.211-27.294-5.674-11.62 4.054-32.698 18.916-30.806 15.674 1.621 49.453 25.401 49.453 43.237zM372.86 75.223c-3.783-72.151-100.796-79.718-125.928-23.51 44.588-24.321 90.257-15.673 125.928 23.51zM74.795 407.066c-15.673 1.621-49.452 25.401-49.452 43.237 0 11.62 15.673 19.457 32.157 14.863 12.16-3.243 31.076-17.565 35.94-27.294 5.946-11.62-3.782-32.698-18.645-30.806zm497.765 14.322c1.081 3.513 1.892 7.026 1.892 10.809.81 31.616-44.317 64.045-73.503 65.125-17.295.81-34.59-8.377-42.696-23.51-113.497 4.053-226.994 4.864-340.22 0-8.377 15.133-25.672 24.05-42.967 23.51-28.915-1.081-74.043-33.509-73.503-65.125.27-3.783.811-7.296 1.892-10.809-5.566-9.463-4.845-15.282 5.405-11.62 3.243-5.134 7.026-9.458 11.08-13.782-2.57-10.917 1.27-14.094 11.079-9.188 4.594-3.243 9.998-6.485 15.944-9.188 0-15.757 11.839-11.131 17.295-5.675 12.467-1.78 20.129.709 26.753 5.675v-19.726c-12.987 0-40.641-11.375-45.94-36.212-4.974-20.725 2.607-38.075 25.132-47.56.81-5.945 8.107-14.052 14.862-15.944 7.567-1.892 12.431 4.594 14.052 10.269 7.425 0 17.757 1.465 21.078 8.107 5.405-.541 11.079-1.352 16.484-1.892-2.432-1.892-5.134-3.513-8.107-4.594-5.134-8.917-13.782-11.079-24.591-11.62 0-.81 0-1.621.27-2.702-19.727-.541-44.048-5.675-54.857-17.835-21.321-23.638-15.935-83.577 12.16-103.498 8.377-5.675 21.618-.811 22.699 9.728 2.425 20.598.399 26.833 26.212 25.942 8.107-7.836 16.755-14.592 26.483-19.997-14.862-1.352-28.914 1.621-43.778 3.783 12.752-12.48 23.953-25.442 56.748-42.427 23.511-11.89 49.993-20.808 76.205-23.239-18.646-7.837-39.993-11.891-59.721-16.484 76.475-16.214 174.569-22.159 244.289 37.562 18.105 15.403 32.427 36.211 42.696 59.992 39.799 4.853 36.47-5.581 38.643-25.132 1.081-10.269 14.322-15.403 22.699-9.458 14.862 10.539 22.159 30.806 24.59 48.101 2.162 17.835.27 41.345-12.43 55.127-10.809 12.16-34.32 17.565-53.776 18.105v2.703c-11.08.27-20.268 2.432-25.673 11.62-2.972 1.081-5.674 2.703-8.377 4.594 5.675.54 11.35 1.351 16.755 1.891 1.869-5.619 12.535-8.377 21.077-8.377 1.621-5.405 6.756-11.89 14.052-10.269s14.052 9.998 14.863 15.944c10.809 4.324 22.159 12.16 25.131 25.672 1.892 8.107 1.621 15.133.27 21.888-5.726 25.262-33.361 36.212-45.939 36.212 0 6.756 0 13.241-.27 19.726 8.01-6.006 16.367-7.158 26.752-5.675 5.919-5.919 17.565-9.41 17.565 5.675 5.675 2.703 11.349 5.945 15.944 9.188 10.1-5.051 13.669-.539 10.809 9.188 4.053 4.323 8.107 8.917 11.079 13.782 10.136-3.62 11.021 2.078 5.409 11.62zm-73.773-254.016c17.295 6.756 26.212 22.159 30.265 35.67 1.081-10.539-2.702-39.453-13.782-51.073-7.296-7.296-14.052-5.134-14.052.81.001 6.216-1.35 11.62-2.431 14.593zm-18.646 12.43c12.971 15.673 17.024 41.615 12.7 62.963 10.809-2.162 20.537-6.215 26.212-12.16 1.892-2.162 3.783-4.864 4.864-7.566-1.081-21.348-10.269-42.697-29.725-48.912-3.242 3.243-9.187 4.864-14.051 5.675zm-21.889.811c7.567 20.537 12.431 42.696 14.322 64.585 3.513 0 7.567-.27 11.62-.811 5.945-24.321-.27-51.614-14.052-63.504-3.783 0-8.107 0-11.89-.27zM77.768 167.372c-1.081-2.973-2.432-8.377-2.432-14.593 0-5.945-7.026-8.107-14.052-.81-11.35 11.62-14.863 40.534-13.782 51.073 4.053-13.512 12.971-28.915 30.266-35.67zm5.675 75.394c-4.324-21.348-.27-47.291 12.701-62.963-4.865-.811-10.809-2.432-14.052-5.675-19.457 6.215-28.375 27.563-29.726 48.912 1.351 2.702 2.972 5.404 4.864 7.566 5.675 6.215 15.403 9.998 26.213 12.16zm41.345-61.073c-5.134 1.081-9.998 2.973-14.862 4.865l-12.16 5.134v-.27c-7.296 14.052-9.999 34.319-5.405 52.965 4.594.541 8.647.811 12.7.811 2.432-22.159 9.188-43.778 19.727-63.505zm88.095-23.239c0 42.155 34.319 76.205 76.205 76.205s76.205-34.05 76.205-76.205c0-41.886-34.319-75.935-76.205-75.935s-76.205 34.049-76.205 75.935zm152.41 97.283c9.969 50.608 3.299 64.692 16.484 58.099 15.944-8.107 22.699-39.183 22.97-57.019-12.971-.81-26.213-.81-39.454-1.08zm-71.611-.541v-.27c-.27 5.134.27 38.103 4.324 41.075 11.079 5.405 39.453 4.594 51.073 1.081 5.405-1.621 2.432-37.022 1.621-41.886-18.916-.27-38.102-.27-57.018 0zm-14.053 0v-.27c-19.456.27-38.642.27-57.829.811-1.892 9.187-4.594 48.911 1.892 51.614 12.971 5.675 41.616 5.134 54.586 1.621 4.595-2.432 2.433-45.399 1.351-53.776zm-85.662 57.56c5.405 2.432 8.647 2.432 9.728-4.324 1.892-8.647 2.432-36.752 4.865-52.155-12.16.27-24.591.811-36.752 1.621-5.405 19.727.27 45.129 22.159 54.858zm-65.666-11.08c43.778 47.02 92.689 85.663 155.923 106.47 67.558-19.186 115.659-59.991 163.219-107.011-11.095-4.315-7.715-10.363-7.296-11.62-8.918-.81-17.835-1.892-26.483-2.702-9.458 32.968-35.94 52.965-46.75 31.616-2.702-5.134-3.513-11.62-4.594-16.754-3.783 8.377-13.242 8.107-24.591 8.918-13.241 1.081-31.617 1.351-44.048-2.972-2.972 12.971-11.079 12.971-26.752 14.322-14.052 1.352-48.642 4.054-54.857-10.809-1.081 28.644-35.13 9.998-45.129-7.026-3.243-5.675-5.405-11.35-7.026-17.565-7.837.81-15.673 1.621-23.511 2.702 2.443 3.663 1.549 9.052-8.105 12.431zM115.6 453.545c-5.674-23.239-18.646-49.722-33.508-54.046-22.429-6.756-68.909 23.51-66.207 54.586 12.701 19.457 39.994 35.67 59.181 36.481 17.835.81 35.94-11.08 39.724-28.914.539-2.432.81-5.134.81-8.107zm7.296-5.944c33.509-19.457 69.179-35.671 105.931-47.02-38.643-20.537-68.098-47.831-97.283-77.016-2.162 1.352-5.134 2.432-7.836 3.513-1.637 4.91 8.718 5.33 5.405 12.431-2.162 4.054-8.648 7.567-15.133 9.188-2.161 2.702-5.134 4.864-7.836 6.485h-.27c-.27 13.511-.27 27.024.27 40.535 8.939 15.964 15.426 33.314 16.752 51.884zm320.764 12.7c-36.752-21.348-74.044-41.345-115.659-52.965-13.782 6.215-27.833 11.349-42.155 15.403-2.162.811-2.162.811-4.324 0-11.89-3.783-23.239-8.107-34.859-13.241-40.265 11.62-77.286 29.185-112.416 50.803h-.27v.27c.27 0 .27 0 .27-.27 103.227 4.054 206.455 3.513 309.413 0zm27.023-64.045l-.27.27c.541-13.782.811-27.563.811-41.345-2.973-1.621-5.675-4.054-8.107-6.756-6.485-1.351-12.971-5.134-15.133-8.918-1.892-4.053 1.351-7.566 5.945-10.269-.27-.541-.541-1.621-.541-2.432-2.972-.811-5.405-1.892-7.567-3.243-31.616 29.455-65.396 56.749-103.498 76.746 38.914 11.62 75.935 28.104 111.875 47.561 1.05-14.692 7.231-35.749 16.485-51.614zm23.24 3.244c-14.593 4.323-27.834 30.806-33.509 54.046 0 23.826 21.278 37.897 40.534 37.022 19.186-.811 46.48-17.024 59.181-36.481 2.973-31.077-43.507-61.344-66.206-54.587zM290.709 134.133c.045 0 .089.003.134.003.046 0 .09-.003.136-.003h-.27zm0 96.743c28.645 0 51.884-21.618 51.884-48.371 0-36.092-40.507-58.079-72.151-44.318 9.458 2.972 16.484 11.62 16.484 21.618 0 23.257-33.291 31.955-46.48 11.35-7.297 34.067 19.368 59.721 50.263 59.721zM68.039 474.083c.54 6.486 12.16 12.701 21.618 9.458 6.756-2.703 14.593-10.539 17.295-16.214 2.973-7.026-1.081-19.997-9.728-18.375-8.917 1.621-29.725 16.754-29.185 25.131zm410.75-25.131c-8.377-1.621-12.431 11.349-9.458 18.375 2.432 5.675 10.269 13.511 17.295 16.214 9.187 3.243 21.078-2.972 21.348-9.458.811-8.377-20.267-23.51-29.185-25.131z" ], + osi: [ 495, 512, [], "f41a", "M0 259.2C2.3 123.4 97.4 26.8 213.8 11.1c138.8-18.6 255.6 75.8 278 201.1 21.3 118.8-44 230-151.6 274-9.3 3.8-14.4 1.7-18-7.7-17.8-46.3-35.6-92.7-53.4-139-3.1-8.1-1-13.2 7-16.8 24.2-11 39.3-29.4 43.3-55.8 6.4-42.4-24.5-78.7-64.5-82.2-39-3.4-71.8 23.7-77.5 59.7-5.2 33 11.1 63.7 41.9 77.7 9.6 4.4 11.5 8.6 7.8 18.4-17.9 46.6-35.8 93.2-53.7 139.9-2.6 6.9-8.3 9.3-15.5 6.5-52.6-20.3-101.4-61-130.8-119C1.9 318.7 1.6 280.2 0 259.2zm20.9-1.9c.4 6.6.6 14.3 1.3 22.1 6.3 71.9 49.6 143.5 131 183.1 3.2 1.5 4.4.8 5.6-2.3 14.9-39.1 29.9-78.2 45-117.3 1.3-3.3.6-4.8-2.4-6.7-31.6-19.9-47.3-48.5-45.6-86 1-21.6 9.3-40.5 23.8-56.3 30-32.7 77-39.8 115.5-17.6 31.9 18.4 49.5 53.8 45.2 90.4-3.6 30.6-19.3 53.9-45.7 69.8-2.7 1.6-3.5 2.9-2.3 6 15.2 39.2 30.2 78.4 45.2 117.7 1.2 3.1 2.4 3.8 5.6 2.3 35.5-16.6 65.2-40.3 88.1-72 34.8-48.2 49.1-101.9 42.3-161C459.8 112 354.1 14.7 218 31.5 111.9 44.5 22.7 134 20.9 257.3z" ], + page4: [ 496, 512, [], "f3d7", "M248 504C111 504 0 393 0 256S111 8 248 8c20.9 0 41.3 2.6 60.7 7.5L42.3 392H248v112zm0-143.6V146.8L98.6 360.4H248zm96 31.6v92.7c45.7-19.2 84.5-51.7 111.4-92.7H344zm57.4-138.2l-21.2 8.4 21.2 8.3v-16.7zm-20.3 54.5c-6.7 0-8 6.3-8 12.9v7.7h16.2v-10c0-5.9-2.3-10.6-8.2-10.6zM496 256c0 37.3-8.2 72.7-23 104.4H344V27.3C433.3 64.8 496 153.1 496 256zM360.4 143.6h68.2V96h-13.9v32.6h-13.9V99h-13.9v29.6h-12.7V96h-13.9v47.6zm68.1 185.3H402v-11c0-15.4-5.6-25.2-20.9-25.2-15.4 0-20.7 10.6-20.7 25.9v25.3h68.2v-15zm0-103l-68.2 29.7V268l68.2 29.5v-16.6l-14.4-5.7v-26.5l14.4-5.9v-16.9zm-4.8-68.5h-35.6V184H402v-12.2h11c8.6 15.8 1.3 35.3-18.6 35.3-22.5 0-28.3-25.3-15.5-37.7l-11.6-10.6c-16.2 17.5-12.2 63.9 27.1 63.9 34 0 44.7-35.9 29.3-65.3z" ], + pagelines: [ 384, 512, [], "f18c", "M384 312.7c-55.1 136.7-187.1 54-187.1 54-40.5 81.8-107.4 134.4-184.6 134.7-16.1 0-16.6-24.4 0-24.4 64.4-.3 120.5-42.7 157.2-110.1-41.1 15.9-118.6 27.9-161.6-82.2 109-44.9 159.1 11.2 178.3 45.5 9.9-24.4 17-50.9 21.6-79.7 0 0-139.7 21.9-149.5-98.1 119.1-47.9 152.6 76.7 152.6 76.7 1.6-16.7 3.3-52.6 3.3-53.4 0 0-106.3-73.7-38.1-165.2 124.6 43 61.4 162.4 61.4 162.4.5 1.6.5 23.8 0 33.4 0 0 45.2-89 136.4-57.5-4.2 134-141.9 106.4-141.9 106.4-4.4 27.4-11.2 53.4-20 77.5 0 0 83-91.8 172-20z" ], + palfed: [ 576, 512, [], "f3d8", "M384.9 193.9c0-47.4-55.2-44.2-95.4-29.8-1.3 39.4-2.5 80.7-3 119.8.7 2.8 2.6 6.2 15.1 6.2 36.8 0 83.4-42.8 83.3-96.2zm-194.5 72.2c.2 0 6.5-2.7 11.2-2.7 26.6 0 20.7 44.1-14.4 44.1-21.5 0-37.1-18.1-37.1-43 0-42 42.9-95.6 100.7-126.5 1-12.4 3-22 10.5-28.2 11.2-9 26.6-3.5 29.5 11.1 72.2-22.2 135.2 1 135.2 72 0 77.9-79.3 152.6-140.1 138.2-.1 39.4.9 74.4 2.7 100v.2c.2 3.4.6 12.5-5.3 19.1-9.6 10.6-33.4 10-36.4-22.3-4.1-44.4.2-206.1 1.4-242.5-21.5 15-58.5 50.3-58.5 75.9.2 2.5.4 4 .6 4.6zM8 181.1s-.1 37.4 38.4 37.4h30l22.4 217.2s0 44.3 44.7 44.3h288.9s44.7-.4 44.7-44.3l22.4-217.2h30s38.4 1.2 38.4-37.4c0 0 .1-37.4-38.4-37.4h-30.1c-7.3-25.6-30.2-74.3-119.4-74.3h-28V50.3s-2.7-18.4-21.1-18.4h-85.8s-21.1 0-21.1 18.4v19.1h-28.1s-105 4.2-120.5 74.3h-29S8 142.5 8 181.1z" ], + patreon: [ 512, 512, [], "f3d9", "M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z" ], + paypal: [ 384, 512, [], "f1ed", "M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z" ], + periscope: [ 448, 512, [], "f3da", "M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z" ], + phabricator: [ 496, 512, [], "f3db", "M323 262.1l-.1-13s21.7-19.8 21.1-21.2l-9.5-20c-.6-1.4-29.5-.5-29.5-.5l-9.4-9.3s.2-28.5-1.2-29.1l-20.1-9.2c-1.4-.6-20.7 21-20.7 21l-13.1-.2s-20.5-21.4-21.9-20.8l-20 8.3c-1.4.5.2 28.9.2 28.9l-9.1 9.1s-29.2-.9-29.7.4l-8.1 19.8c-.6 1.4 21 21 21 21l.1 12.9s-21.7 19.8-21.1 21.2l9.5 20c.6 1.4 29.5.5 29.5.5l9.4 9.3s-.2 31.8 1.2 32.3l20.1 8.3c1.4.6 20.7-23.5 20.7-23.5l13.1.2s20.5 23.8 21.8 23.3l20-7.5c1.4-.6-.2-32.1-.2-32.1l9.1-9.1s29.2.9 29.7-.5l8.1-19.8c.7-1.1-20.9-20.7-20.9-20.7zm-44.9-8.7c.7 17.1-12.8 31.6-30.1 32.4-17.3.8-32.1-12.5-32.8-29.6-.7-17.1 12.8-31.6 30.1-32.3 17.3-.8 32.1 12.5 32.8 29.5zm201.2-37.9l-97-97-.1.1c-75.1-73.3-195.4-72.8-269.8 1.6-50.9 51-27.8 27.9-95.7 95.3-22.3 22.3-22.3 58.7 0 81 69.9 69.4 46.4 46 97.4 97l.1-.1c75.1 73.3 195.4 72.9 269.8-1.6 51-50.9 27.9-27.9 95.3-95.3 22.3-22.3 22.3-58.7 0-81zM140.4 363.8c-59.6-59.5-59.6-156 0-215.5 59.5-59.6 156-59.5 215.6 0 59.5 59.5 59.6 156 0 215.6-59.6 59.5-156 59.4-215.6-.1z" ], + "phoenix-framework": [ 640, 512, [], "f3dc", "M212.9 344.3c3.8-.1 22.8-1.4 25.6-2.2-2.4-2.6-43.6-1-68-49.6-4.3-8.6-7.5-17.6-6.4-27.6 2.9-25.5 32.9-30 52-18.5 36 21.6 63.3 91.3 113.7 97.5 37 4.5 84.6-17 108.2-45.4-.6-.1-.8-.2-1-.1-.4.1-.8.2-1.1.3-33.3 12.1-94.3 9.7-134.7-14.8-37.6-22.8-53.1-58.7-51.8-74.6 1.8-21.3 22.9-23.2 35.9-19.6 14.4 3.9 24.4 17.6 38.9 27.4 15.6 10.4 32.9 13.7 51.3 10.3 14.9-2.7 34.4-12.3 36.5-14.5-1.1-.1-1.8-.1-2.5-.2-6.2-.6-12.4-.8-18.5-1.7C279.8 194.5 262.1 47.4 138.5 37.9 94.2 34.5 39.1 46 2.2 72.9c-.8.6-1.5 1.2-2.2 1.8.1.2.1.3.2.5.8 0 1.6-.1 2.4-.2 6.3-1 12.5-.8 18.7.3 23.8 4.3 47.7 23.1 55.9 76.5 5.3 34.3-.7 50.8 8 86.1 19 77.1 91 107.6 127.7 106.4zM75.3 64.9c-.9-1-.9-1.2-1.3-2 12.1-2.6 24.2-4.1 36.6-4.8-1.1 14.7-22.2 21.3-35.3 6.8zm196.9 350.5c-42.8 1.2-92-26.7-123.5-61.4-4.6-5-16.8-20.2-18.6-23.4l.4-.4c6.6 4.1 25.7 18.6 54.8 27 24.2 7 48.1 6.3 71.6-3.3 22.7-9.3 41-.5 43.1 2.9-18.5 3.8-20.1 4.4-24 7.9-5.1 4.4-4.6 11.7 7 17.2 26.2 12.4 63-2.8 97.2 25.4 2.4 2 8.1 7.8 10.1 10.7-.1.2-.3.3-.4.5-4.8-1.5-16.4-7.5-40.2-9.3-24.7-2-46.3 5.3-77.5 6.2zm174.8-252c16.4-5.2 41.3-13.4 66.5-3.3 16.1 6.5 26.2 18.7 32.1 34.6 3.5 9.4 5.1 19.7 5.1 28.7-.2 0-.4 0-.6.1-.2-.4-.4-.9-.5-1.3-5-22-29.9-43.8-67.6-29.9-50.2 18.6-130.4 9.7-176.9-48-.7-.9-2.4-1.7-1.3-3.2.1-.2 2.1.6 3 1.3 18.1 13.4 38.3 21.9 60.3 26.2 30.5 6.1 54.6 2.9 79.9-5.2zm102.7 117.5c-32.4.2-33.8 50.1-103.6 64.4-18.2 3.7-38.7 4.6-44.9 4.2v-.4c2.8-1.5 14.7-2.6 29.7-16.6 7.9-7.3 15.3-15.1 22.8-22.9 19.5-20.2 41.4-42.2 81.9-39 23.1 1.8 29.3 8.2 36.1 12.7.3.2.4.5.7.9-.5 0-.7.1-.9 0-7-2.7-14.3-3.3-21.8-3.3zm-12.3-24.1c-.1.2-.1.4-.2.6-28.9-4.4-48-7.9-68.5 4-17 9.9-31.4 20.5-62 24.4-27.1 3.4-45.1 2.4-66.1-8-.3-.2-.6-.4-1-.6 0-.2.1-.3.1-.5 24.9 3.8 36.4 5.1 55.5-5.8 22.3-12.9 40.1-26.6 71.3-31 29.6-4.1 51.3 2.5 70.9 16.9zM268.6 97.3c-.6-.6-1.1-1.2-2.1-2.3 7.6 0 29.7-1.2 53.4 8.4 19.7 8 32.2 21 50.2 32.9 11.1 7.3 23.4 9.3 36.4 8.1 4.3-.4 8.5-1.2 12.8-1.7.4-.1.9 0 1.5.3-.6.4-1.2.9-1.8 1.2-8.1 4-16.7 6.3-25.6 7.1-26.1 2.6-50.3-3.7-73.4-15.4-19.3-9.9-36.4-22.9-51.4-38.6zM640 335.7c-3.5 3.1-22.7 11.6-42.7 5.3-12.3-3.9-19.5-14.9-31.6-24.1-10-7.6-20.9-7.9-28.1-8.4.6-.8.9-1.2 1.2-1.4 14.8-9.2 30.5-12.2 47.3-6.5 12.5 4.2 19.2 13.5 30.4 24.2 10.8 10.4 21 9.9 23.1 10.5.1-.1.2 0 .4.4zm-212.5 137c2.2 1.2 1.6 1.5 1.5 2-18.5-1.4-33.9-7.6-46.8-22.2-21.8-24.7-41.7-27.9-48.6-29.7.5-.2.8-.4 1.1-.4 13.1.1 26.1.7 38.9 3.9 25.3 6.4 35 25.4 41.6 35.3 3.2 4.8 7.3 8.3 12.3 11.1z" ], + "phoenix-squadron": [ 513, 512, [], "f511", "M96.24 62.81C142.91 26.57 202.15 6.57 261.28 8.08c29.67-.38 59.29 5.38 87.17 15.37-24.2-4.64-49.18-6.35-73.6-2.45-43 5.35-83.26 27.23-112.16 59.35 5.69-.99 10.81-3.68 16.07-5.88 18.19-7.89 37.6-13.29 57.4-14.87 19.8-2.14 39.75-.43 59.45 1.93-14.46 2.79-29.2 4.58-43.11 9.61-34.53 11.11-65.46 33.26-86.55 62.82-13.84 19.77-23.7 42.99-24.74 67.33-.35 16.54 5.23 34.91 19.89 44.17 11.13 6.66 24.85 9.39 37.63 6.76 15.49-2.47 30.16-8.67 43.73-16.38 11.55-6.84 22.73-14.59 32.05-24.32 3.8-3.23 2.54-8.48 2.63-12.83-2.13-.34-4.4-1.11-6.32.3a203.975 203.975 0 0 1-35.93 15.42c-20.07 6.19-42.28 8.48-62.28.78 12.83 1.73 26.14.31 37.85-5.46 20.29-9.75 36.92-25.27 54.6-38.88 27.84-21.29 57.64-40.11 89.17-55.47 25.78-12.01 53.09-22.85 81.81-24.2-15.68 13.76-32.25 26.6-46.92 41.51-14.55 14.04-27.54 29.58-40.23 45.31-3.53 4.61-8.98 6.96-13.62 10.19-22.24 15.03-40.6 35.96-52.04 60.28-9.36 19.74-14.55 41.97-11.81 63.84 1.95 13.73 8.74 27.67 20.96 35.01 12.94 7.99 29.14 8.09 43.61 5.11 32.9-7.47 61.61-28.97 81.28-56 20.5-27.6 30.61-62.38 29.25-96.64-.52-7.52-1.58-15-1.67-22.55 8.02 19.54 14.87 39.83 16.7 61.01 2.01 14.32.75 28.84-1.62 43.02-1.92 11.02-5.69 21.58-7.81 32.53 20.36-22.73 34.17-51.24 39.46-81.31 5.72-35.37.58-72.36-14.25-104.95 20.84 32.12 32.43 69.79 35.81 107.8.5 12.77.5 25.58 0 38.34-2.91 34.26-12.97 67.95-29.76 98-26.2 47.48-68.2 85.89-117.54 108.32-78.52 36.34-175.2 31.41-248.72-14.72-38.84-23.78-71.06-58.32-91.68-98.96C10.72 337.43 2.04 305.5 0 273.13V241.7c3.94-69.97 40.99-136.32 96.24-178.89m222.65 80.57c5.51-.8 10.82-2.57 16.02-4.5 4.99-1.77 9.27-5.95 10.35-11.25-8.91 5-17.95 9.95-26.37 15.75z" ], + php: [ 640, 512, [], "f457", "M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z" ], + "pied-piper": [ 448, 512, [], "f2ae", "M32 419L0 479.2l.8-328C.8 85.3 54 32 120 32h327.2c-93 28.9-189.9 94.2-253.9 168.6C122.7 282 82.6 338 32 419M448 32S305.2 98.8 261.6 199.1c-23.2 53.6-28.9 118.1-71 158.6-28.9 27.8-69.8 38.2-105.3 56.3-23.2 12-66.4 40.5-84.9 66h328.4c66 0 119.3-53.3 119.3-119.2-.1 0-.1-328.8-.1-328.8z" ], + "pied-piper-alt": [ 576, 512, [], "f1a8", "M242 187c6.3-11.8 13.2-17 25.9-21.8 27.3-10.3 40.2-30.5 58.9-51.1 11.9 8.4 12 24.6 31.6 23v21.8l6.3.3c37.4-14.4 74.7-30.2 106.6-54.6 48.3-36.8 52.9-50 81.3-100l2-2.6c-.6 14.1-6.3 27.3-12.4 39.9-30.5 63.8-78.7 100.3-146.8 116.7-12.4 2.9-26.4 3.2-37.6 8.9 1.4 9.8 13.2 18.1 13.2 23 0 3.4-5.5 7.2-7.5 8.6-11.2-12.9-16.1-19.3-22.7-22.1-7.6-3.5-63.9-6.4-98.8 10zm137.9 256.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9L244 246zm-12.6 31.8l24.1 61.2 21-13.8-31.3-50.9-13.8 3.5zM555.5 0l-.6 1.1-.3.9.6-.6.3-1.4zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46v27.3l11.8-3.4-2.9-23.8h-8.9zm76.1 2.9c0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3l2 12.4c9-1.5 58.4-6.6 58.4-14.1z" ], + "pied-piper-hat": [ 640, 512, [], "f4e5", "M640 24.9c-80.8 53.6-89.4 92.5-96.4 104.4-6.7 12.2-11.7 60.3-23.3 83.6-11.7 23.6-54.2 42.2-66.1 50-11.7 7.8-28.3 38.1-41.9 64.2-108.1-4.4-167.4 38.8-259.2 93.6 29.4-9.7 43.3-16.7 43.3-16.7 94.2-36 139.3-68.3 281.1-49.2 1.1 0 1.9.6 2.8.8 3.9 2.2 5.3 6.9 3.1 10.8l-53.9 95.8c-2.5 4.7-7.8 7.2-13.1 6.1-126.8-23.8-226.9 17.3-318.9 18.6C24.1 488 0 453.4 0 451.8c0-1.1.6-1.7 1.7-1.7 0 0 38.3 0 103.1-15.3C178.4 294.5 244 245.4 315.4 245.4c0 0 71.7 0 90.6 61.9 22.8-39.7 28.3-49.2 28.3-49.2 5.3-9.4 35-77.2 86.4-141.4 51.5-64 90.4-79.9 119.3-91.8z" ], + "pied-piper-pp": [ 448, 512, [], "f1a7", "M205.3 174.6c0 21.1-14.2 38.1-31.7 38.1-7.1 0-12.8-1.2-17.2-3.7v-68c4.4-2.7 10.1-4.2 17.2-4.2 17.5 0 31.7 16.9 31.7 37.8zm52.6 67c-7.1 0-12.8 1.5-17.2 4.2v68c4.4 2.5 10.1 3.7 17.2 3.7 17.4 0 31.7-16.9 31.7-37.8 0-21.1-14.3-38.1-31.7-38.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM185 255.1c41 0 74.2-35.6 74.2-79.6 0-44-33.2-79.6-74.2-79.6-12 0-24.1 3.2-34.6 8.8h-45.7V311l51.8-10.1v-50.6c8.6 3.1 18.1 4.8 28.5 4.8zm158.4 25.3c0-44-33.2-79.6-73.9-79.6-3.2 0-6.4.2-9.6.7-3.7 12.5-10.1 23.8-19.2 33.4-13.8 15-32.2 23.8-51.8 24.8V416l51.8-10.1v-50.6c8.6 3.2 18.2 4.7 28.7 4.7 40.8 0 74-35.6 74-79.6z" ], + pinterest: [ 496, 512, [], "f0d2", "M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3.8-3.4 5-20.3 6.9-28.1.6-2.5.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z" ], + "pinterest-p": [ 384, 512, [], "f231", "M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z" ], + "pinterest-square": [ 448, 512, [], "f0d3", "M448 80v352c0 26.5-21.5 48-48 48H154.4c9.8-16.4 22.4-40 27.4-59.3 3-11.5 15.3-58.4 15.3-58.4 8 15.3 31.4 28.2 56.3 28.2 74.1 0 127.4-68.1 127.4-152.7 0-81.1-66.2-141.8-151.4-141.8-106 0-162.2 71.1-162.2 148.6 0 36 19.2 80.8 49.8 95.1 4.7 2.2 7.1 1.2 8.2-3.3.8-3.4 5-20.1 6.8-27.8.6-2.5.3-4.6-1.7-7-10.1-12.3-18.3-34.9-18.3-56 0-54.2 41-106.6 110.9-106.6 60.3 0 102.6 41.1 102.6 99.9 0 66.4-33.5 112.4-77.2 112.4-24.1 0-42.1-19.9-36.4-44.4 6.9-29.2 20.3-60.7 20.3-81.8 0-53-75.5-45.7-75.5 25 0 21.7 7.3 36.5 7.3 36.5-31.4 132.8-36.1 134.5-29.6 192.6l2.2.8H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z" ], + playstation: [ 576, 512, [], "f3df", "M570.9 372.3c-11.3 14.2-38.8 24.3-38.8 24.3L327 470.2v-54.3l150.9-53.8c17.1-6.1 19.8-14.8 5.8-19.4-13.9-4.6-39.1-3.3-56.2 2.9L327 381.1v-56.4c23.2-7.8 47.1-13.6 75.7-16.8 40.9-4.5 90.9.6 130.2 15.5 44.2 14 49.2 34.7 38 48.9zm-224.4-92.5v-139c0-16.3-3-31.3-18.3-35.6-11.7-3.8-19 7.1-19 23.4v347.9l-93.8-29.8V32c39.9 7.4 98 24.9 129.2 35.4C424.1 94.7 451 128.7 451 205.2c0 74.5-46 102.8-104.5 74.6zM43.2 410.2c-45.4-12.8-53-39.5-32.3-54.8 19.1-14.2 51.7-24.9 51.7-24.9l134.5-47.8v54.5l-96.8 34.6c-17.1 6.1-19.7 14.8-5.8 19.4 13.9 4.6 39.1 3.3 56.2-2.9l46.4-16.9v48.8c-51.6 9.3-101.4 7.3-153.9-10z" ], + "product-hunt": [ 512, 512, [], "f288", "M326.3 218.8c0 20.5-16.7 37.2-37.2 37.2h-70.3v-74.4h70.3c20.5 0 37.2 16.7 37.2 37.2zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-128.1-37.2c0-47.9-38.9-86.8-86.8-86.8H169.2v248h49.6v-74.4h70.3c47.9 0 86.8-38.9 86.8-86.8z" ], + pushed: [ 432, 512, [], "f3e1", "M407 111.9l-98.5-9 14-33.4c10.4-23.5-10.8-40.4-28.7-37L22.5 76.9c-15.1 2.7-26 18.3-21.4 36.6l105.1 348.3c6.5 21.3 36.7 24.2 47.7 7l35.3-80.8 235.2-231.3c16.4-16.8 4.3-42.9-17.4-44.8zM297.6 53.6c5.1-.7 7.5 2.5 5.2 7.4L286 100.9 108.6 84.6l189-31zM22.7 107.9c-3.1-5.1 1-10 6.1-9.1l248.7 22.7-96.9 230.7L22.7 107.9zM136 456.4c-2.6 4-7.9 3.1-9.4-1.2L43.5 179.7l127.7 197.6c-7 15-35.2 79.1-35.2 79.1zm272.8-314.5L210.1 337.3l89.7-213.7 106.4 9.7c4 1.1 5.7 5.3 2.6 8.6z" ], + python: [ 448, 512, [], "f3e2", "M167.8 36.4c-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1zm-6.7 28.4c11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4zm185.2 81.4v47.5c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6-7.7-30.9-22.3-54.2-53.4-54.2h-40.1zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3z" ], + qq: [ 448, 512, [], "f1d6", "M433.754 420.445c-11.526 1.393-44.86-52.741-44.86-52.741 0 31.345-16.136 72.247-51.051 101.786 16.842 5.192 54.843 19.167 45.803 34.421-7.316 12.343-125.51 7.881-159.632 4.037-34.122 3.844-152.316 8.306-159.632-4.037-9.045-15.25 28.918-29.214 45.783-34.415-34.92-29.539-51.059-70.445-51.059-101.792 0 0-33.334 54.134-44.859 52.741-5.37-.65-12.424-29.644 9.347-99.704 10.261-33.024 21.995-60.478 40.144-105.779C60.683 98.063 108.982.006 224 0c113.737.006 163.156 96.133 160.264 214.963 18.118 45.223 29.912 72.85 40.144 105.778 21.768 70.06 14.716 99.053 9.346 99.704z" ], + quinscape: [ 489, 512, [], "f459", "M301.9 474.6h-1.3c-87.3 0-158.1-70.8-158.1-158.1s70.8-158.1 158.1-158.1c94.9 0 168.2 83.1 157 176.6 4 5.1 8.2 9.6 11.2 15.3 13.4-30.3 20.3-62.4 20.3-97.7C489.1 117.5 379.6 8 244.5 8 109.5 8 0 117.5 0 252.6s109.5 244.6 244.5 244.6c24.8 0 47.8-3.2 70.4-10.1-5.2-3.5-9-8.2-13.4-12.6l.4.1zm-21.2-69.8c0-54.8 44.4-99.2 99.2-99.2 54.8 0 99.2 44.4 99.2 99.2 0 54.8-44.4 99.2-99.2 99.2-54.8 0-99.2-44.4-99.2-99.2" ], + quora: [ 448, 512, [], "f2c4", "M440.5 386.7h-29.3c-1.5 13.5-10.5 30.8-33 30.8-20.5 0-35.3-14.2-49.5-35.8 44.2-34.2 74.7-87.5 74.7-153C403.5 111.2 306.8 32 205 32 105.3 32 7.3 111.7 7.3 228.7c0 134.1 131.3 221.6 249 189C276 451.3 302 480 351.5 480c81.8 0 90.8-75.3 89-93.3zM297 329.2C277.5 300 253.3 277 205.5 277c-30.5 0-54.3 10-69 22.8l12.2 24.3c6.2-3 13-4 19.8-4 35.5 0 53.7 30.8 69.2 61.3-10 3-20.7 4.2-32.7 4.2-75 0-107.5-53-107.5-156.7C97.5 124.5 130 71 205 71c76.2 0 108.7 53.5 108.7 157.7.1 41.8-5.4 75.6-16.7 100.5z" ], + "r-project": [ 581, 512, [], "f4f7", "M581 226.6C581 119.1 450.9 32 290.5 32S0 119.1 0 226.6C0 322.4 103.3 402 239.4 418.1V480h99.1v-61.5c24.3-2.7 47.6-7.4 69.4-13.9L448 480h112l-67.4-113.7c54.5-35.4 88.4-84.9 88.4-139.7zm-466.8 14.5c0-73.5 98.9-133 220.8-133s211.9 40.7 211.9 133c0 50.1-26.5 85-70.3 106.4-2.4-1.6-4.7-2.9-6.4-3.7-10.2-5.2-27.8-10.5-27.8-10.5s86.6-6.4 86.6-92.7-90.6-87.9-90.6-87.9h-199V361c-74.1-21.5-125.2-67.1-125.2-119.9zm225.1 38.3v-55.6c57.8 0 87.8-6.8 87.8 27.3 0 36.5-38.2 28.3-87.8 28.3zm-.9 72.5H365c10.8 0 18.9 11.7 24 19.2-16.1 1.9-33 2.8-50.6 2.9v-22.1z" ], + ravelry: [ 512, 512, [], "f2d9", "M407.4 61.5C331.6 22.1 257.8 31 182.9 66c-11.3 5.2-15.5 10.6-19.9 19-10.3 19.2-16.2 37.4-19.9 52.7-21.2 25.6-36.4 56.1-43.3 89.9-10.6 18-20.9 41.4-23.1 71.4 0 0-.7 7.6-.5 7.9-35.3-4.6-76.2-27-76.2-27 9.1 14.5 61.3 32.3 76.3 37.9 0 0 1.7 98 64.5 131.2-11.3-17.2-13.3-20.2-13.3-20.2S94.8 369 100.4 324.7c.7 0 1.5.2 2.2.2 23.9 87.4 103.2 151.4 196.9 151.4 6.2 0 12.1-.2 18-.7 14 1.5 27.6.5 40.1-3.9 6.9-2.2 13.8-6.4 20.2-10.8 70.2-39.1 100.9-82 123.1-147.7 5.4-16 8.1-35.5 9.8-52.2 8.7-82.3-30.6-161.6-103.3-199.5zM138.8 163.2s-1.2 12.3-.7 19.7c-3.4 2.5-10.1 8.1-18.2 16.7 5.2-12.8 11.3-25.1 18.9-36.4zm-31.2 121.9c4.4-17.2 13.3-39.1 29.8-55.1 0 0 1.7 48 15.8 90.1l-41.4-6.9c-2.2-9.2-3.5-18.5-4.2-28.1zm7.9 42.8c14.8 3.2 34 7.6 43.1 9.1 27.3 76.8 108.3 124.3 108.3 124.3 1 .5 1.7.7 2.7 1-73.1-11.6-132.7-64.7-154.1-134.4zM386 444.1c-14.5 4.7-36.2 8.4-64.7 3.7 0 0-91.1-23.1-127.5-107.8 38.2.7 52.4-.2 78-3.9 39.4-5.7 79-16.2 115-33 11.8-5.4 11.1-19.4 9.6-29.8-2-12.8-11.1-12.1-21.4-4.7 0 0-82 58.6-189.8 53.7-18.7-32-26.8-110.8-26.8-110.8 41.4-35.2 83.2-59.6 168.4-52.4.2-6.4 3-27.1-20.4-28.1 0 0-93.5-11.1-146 33.5 2.5-16.5 5.9-29.3 11.1-39.4 34.2-30.8 79-49.5 128.3-49.5 106.4 0 193 87.1 193 194.5-.2 76-43.8 142-106.8 174z" ], + react: [ 512, 512, [], "f41b", "M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zm-130 189.1c4.6 8.8 9.3 17.5 14.3 26.1 5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5zm0-50.6c-6.3-14.9-11.6-29.5-16-43.6 14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26zm11.4 25.3c6.6-13.8 13.8-27.3 21.4-40.6 7.6-13.3 15.8-26.2 24.4-38.9 15-1.1 30.3-1.7 45.9-1.7 15.6 0 31 .6 45.9 1.7 8.5 12.6 16.6 25.5 24.3 38.7 7.7 13.2 14.9 26.7 21.7 40.4-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6-15.7 0-30.9-.5-45.6-1.4-8.7-12.7-16.9-25.7-24.6-39-7.7-13.3-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zM256 210.2c25.3 0 45.8 20.5 45.8 45.8 0 25.3-20.5 45.8-45.8 45.8-25.3 0-45.8-20.5-45.8-45.8 0-25.3 20.5-45.8 45.8-45.8" ], + readme: [ 576, 512, [], "f4d5", "M528.3 46.5H388.5c-48.1 0-89.9 33.3-100.4 80.3-10.6-47-52.3-80.3-100.4-80.3H48c-26.5 0-48 21.5-48 48v245.8c0 26.5 21.5 48 48 48h89.7c102.2 0 132.7 24.4 147.3 75 .7 2.8 5.2 2.8 6 0 14.7-50.6 45.2-75 147.3-75H528c26.5 0 48-21.5 48-48V94.6c0-26.4-21.3-47.9-47.7-48.1zM242 311.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5V289c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V251zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm259.3 121.7c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5V228c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.8c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V190z" ], + rebel: [ 512, 512, [], "f1d0", "M256.5 504C117.2 504 9 387.8 13.2 249.9 16 170.7 56.4 97.7 129.7 49.5c.3 0 1.9-.6 1.1.8-5.8 5.5-111.3 129.8-14.1 226.4 49.8 49.5 90 2.5 90 2.5 38.5-50.1-.6-125.9-.6-125.9-10-24.9-45.7-40.1-45.7-40.1l28.8-31.8c24.4 10.5 43.2 38.7 43.2 38.7.8-29.6-21.9-61.4-21.9-61.4L255.1 8l44.3 50.1c-20.5 28.8-21.9 62.6-21.9 62.6 13.8-23 43.5-39.3 43.5-39.3l28.5 31.8c-27.4 8.9-45.4 39.9-45.4 39.9-15.8 28.5-27.1 89.4.6 127.3 32.4 44.6 87.7-2.8 87.7-2.8 102.7-91.9-10.5-225-10.5-225-6.1-5.5.8-2.8.8-2.8 50.1 36.5 114.6 84.4 116.2 204.8C500.9 400.2 399 504 256.5 504z" ], + "red-river": [ 448, 512, [], "f3e3", "M353.2 32H94.8C42.4 32 0 74.4 0 126.8v258.4C0 437.6 42.4 480 94.8 480h258.4c52.4 0 94.8-42.4 94.8-94.8V126.8c0-52.4-42.4-94.8-94.8-94.8zM144.9 200.9v56.3c0 27-21.9 48.9-48.9 48.9V151.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9h-56.3c-12.3-.6-24.6 11.6-24 24zm176.3 72h-56.3c-12.3-.6-24.6 11.6-24 24v56.3c0 27-21.9 48.9-48.9 48.9V247.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9z" ], + reddit: [ 512, 512, [], "f1a1", "M201.5 305.5c-13.8 0-24.9-11.1-24.9-24.6 0-13.8 11.1-24.9 24.9-24.9 13.6 0 24.6 11.1 24.6 24.9 0 13.6-11.1 24.6-24.6 24.6zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-132.3-41.2c-9.4 0-17.7 3.9-23.8 10-22.4-15.5-52.6-25.5-86.1-26.6l17.4-78.3 55.4 12.5c0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.3 24.9-24.9s-11.1-24.9-24.9-24.9c-9.7 0-18 5.8-22.1 13.8l-61.2-13.6c-3-.8-6.1 1.4-6.9 4.4l-19.1 86.4c-33.2 1.4-63.1 11.3-85.5 26.8-6.1-6.4-14.7-10.2-24.1-10.2-34.9 0-46.3 46.9-14.4 62.8-1.1 5-1.7 10.2-1.7 15.5 0 52.6 59.2 95.2 132 95.2 73.1 0 132.3-42.6 132.3-95.2 0-5.3-.6-10.8-1.9-15.8 31.3-16 19.8-62.5-14.9-62.5zM302.8 331c-18.2 18.2-76.1 17.9-93.6 0-2.2-2.2-6.1-2.2-8.3 0-2.5 2.5-2.5 6.4 0 8.6 22.8 22.8 87.3 22.8 110.2 0 2.5-2.2 2.5-6.1 0-8.6-2.2-2.2-6.1-2.2-8.3 0zm7.7-75c-13.6 0-24.6 11.1-24.6 24.9 0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.1 24.9-24.6 0-13.8-11-24.9-24.9-24.9z" ], + "reddit-alien": [ 512, 512, [], "f281", "M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2.1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z" ], + "reddit-square": [ 448, 512, [], "f1a2", "M283.2 345.5c2.7 2.7 2.7 6.8 0 9.2-24.5 24.5-93.8 24.6-118.4 0-2.7-2.4-2.7-6.5 0-9.2 2.4-2.4 6.5-2.4 8.9 0 18.7 19.2 81 19.6 100.5 0 2.4-2.3 6.6-2.3 9 0zm-91.3-53.8c0-14.9-11.9-26.8-26.5-26.8-14.9 0-26.8 11.9-26.8 26.8 0 14.6 11.9 26.5 26.8 26.5 14.6 0 26.5-11.9 26.5-26.5zm90.7-26.8c-14.6 0-26.5 11.9-26.5 26.8 0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-11.9 26.8-26.5 0-14.9-11.9-26.8-26.8-26.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-99.7 140.6c-10.1 0-19 4.2-25.6 10.7-24.1-16.7-56.5-27.4-92.5-28.6l18.7-84.2 59.5 13.4c0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-12.2 26.8-26.8 0-14.6-11.9-26.8-26.8-26.8-10.4 0-19.3 6.2-23.8 14.9l-65.7-14.6c-3.3-.9-6.5 1.5-7.4 4.8l-20.5 92.8c-35.7 1.5-67.8 12.2-91.9 28.9-6.5-6.8-15.8-11-25.9-11-37.5 0-49.8 50.4-15.5 67.5-1.2 5.4-1.8 11-1.8 16.7 0 56.5 63.7 102.3 141.9 102.3 78.5 0 142.2-45.8 142.2-102.3 0-5.7-.6-11.6-2.1-17 33.6-17.2 21.2-67.2-16.1-67.2z" ], + rendact: [ 496, 512, [], "f3e4", "M248 8C111 8 0 119 0 256s111 248 248 248c18.6 0 36.7-2.1 54.1-5.9-5.6-7.4-10.8-14.4-15.9-21.3-12.4 2.1-25.2 3.3-38.3 3.3C124.3 480 24 379.7 24 256S124.3 32 248 32s224 100.3 224 224c0 71-33 134.2-84.5 175.3-25.9 18.8-39.1 21.4-83.5-44.2-78.7-112.9-48-71.1-73.7-108.3 72.8 8.9 228.5-72 168.6-168.6C314-26.8 15 93.8 59.7 226.4c3.2 9.8 14.4 38.6 45.6 38.6 2 0 2.6-.6 2-1.7-4.4-8.7-20.1-9.8-20.1-37.4 0-40.5 40.5-89.6 100.3-120 66.1-32.3 131.9-30.2 158.2 5.4 27.2 38.3-20.9 119.2-120.4 136.9 7.5-9.4 57-75.2 62.8-84 22.7-34.6 23.6-49 14-59.2-15.5-16.9-29.5-10.3-50.7-11.7-10.8-.9-113.7 181.2-136.4 216.9-5.9 9-21.2 34.1-21.2 50.9 0 21.3 2.8 51.4 20.6 51.4 10.6 0 8-18.7 8-26.6 0-12.9 27.4-49.4 74.8-104.6 20.4 36.1 57.7 114.3 130.2 209.7 98-33.1 168.5-125.8 168.5-235C496 119 385 8 248 8z" ], + renren: [ 512, 512, [], "f18b", "M214 169.1c0 110.4-61 205.4-147.6 247.4C30 373.2 8 317.7 8 256.6 8 133.9 97.1 32.2 214 12.5v156.6zM255 504c-42.9 0-83.3-11-118.5-30.4C193.7 437.5 239.9 382.9 255 319c15.5 63.9 61.7 118.5 118.8 154.7C338.7 493 298.3 504 255 504zm190.6-87.5C359 374.5 298 279.6 298 169.1V12.5c116.9 19.7 206 121.4 206 244.1 0 61.1-22 116.6-58.4 159.9z" ], + replyd: [ 448, 512, [], "f3e6", "M320 480H128C57.6 480 0 422.4 0 352V160C0 89.6 57.6 32 128 32h192c70.4 0 128 57.6 128 128v192c0 70.4-57.6 128-128 128zM193.4 273.2c-6.1-2-11.6-3.1-16.4-3.1-7.2 0-13.5 1.9-18.9 5.6-5.4 3.7-9.6 9-12.8 15.8h-1.1l-4.2-18.3h-28v138.9h36.1v-89.7c1.5-5.4 4.4-9.8 8.7-13.2 4.3-3.4 9.8-5.1 16.2-5.1 4.6 0 9.8 1 15.6 3.1l4.8-34zm115.2 103.4c-3.2 2.4-7.7 4.8-13.7 7.1-6 2.3-12.8 3.5-20.4 3.5-12.2 0-21.1-3-26.5-8.9-5.5-5.9-8.5-14.7-9-26.4h83.3c.9-4.8 1.6-9.4 2.1-13.9.5-4.4.7-8.6.7-12.5 0-10.7-1.6-19.7-4.7-26.9-3.2-7.2-7.3-13-12.5-17.2-5.2-4.3-11.1-7.3-17.8-9.2-6.7-1.8-13.5-2.8-20.6-2.8-21.1 0-37.5 6.1-49.2 18.3s-17.5 30.5-17.5 55c0 22.8 5.2 40.7 15.6 53.7 10.4 13.1 26.8 19.6 49.2 19.6 10.7 0 20.9-1.5 30.4-4.6 9.5-3.1 17.1-6.8 22.6-11.2l-12-23.6zm-21.8-70.3c3.8 5.4 5.3 13.1 4.6 23.1h-51.7c.9-9.4 3.7-17 8.2-22.6 4.5-5.6 11.5-8.5 21-8.5 8.2-.1 14.1 2.6 17.9 8zm79.9 2.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4s2 11.7 6.1 15.6zm0 100.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4 0 6.6 2 11.7 6.1 15.6z" ], + researchgate: [ 448, 512, [], "f4f8", "M0 32v448h448V32H0zm262.2 334.4c-6.6 3-33.2 6-50-14.2-9.2-10.6-25.3-33.3-42.2-63.6-8.9 0-14.7 0-21.4-.6v46.4c0 23.5 6 21.2 25.8 23.9v8.1c-6.9-.3-23.1-.8-35.6-.8-13.1 0-26.1.6-33.6.8v-8.1c15.5-2.9 22-1.3 22-23.9V225c0-22.6-6.4-21-22-23.9V193c25.8 1 53.1-.6 70.9-.6 31.7 0 55.9 14.4 55.9 45.6 0 21.1-16.7 42.2-39.2 47.5 13.6 24.2 30 45.6 42.2 58.9 7.2 7.8 17.2 14.7 27.2 14.7v7.3zm22.9-135c-23.3 0-32.2-15.7-32.2-32.2V167c0-12.2 8.8-30.4 34-30.4s30.4 17.9 30.4 17.9l-10.7 7.2s-5.5-12.5-19.7-12.5c-7.9 0-19.7 7.3-19.7 19.7v26.8c0 13.4 6.6 23.3 17.9 23.3 14.1 0 21.5-10.9 21.5-26.8h-17.9v-10.7h30.4c0 20.5 4.7 49.9-34 49.9zm-116.5 44.7c-9.4 0-13.6-.3-20-.8v-69.7c6.4-.6 15-.6 22.5-.6 23.3 0 37.2 12.2 37.2 34.5 0 21.9-15 36.6-39.7 36.6z" ], + resolving: [ 496, 512, [], "f3e7", "M281.2 278.2c46-13.3 49.6-23.5 44-43.4L314 195.5c-6.1-20.9-18.4-28.1-71.1-12.8L54.7 236.8l28.6 98.6 197.9-57.2zM248.5 8C131.4 8 33.2 88.7 7.2 197.5l221.9-63.9c34.8-10.2 54.2-11.7 79.3-8.2 36.3 6.1 52.7 25 61.4 55.2l10.7 37.8c8.2 28.1 1 50.6-23.5 73.6-19.4 17.4-31.2 24.5-61.4 33.2L203 351.8l220.4 27.1 9.7 34.2-48.1 13.3-286.8-37.3 23 80.2c36.8 22 80.3 34.7 126.3 34.7 137 0 248.5-111.4 248.5-248.3C497 119.4 385.5 8 248.5 8zM38.3 388.6L0 256.8c0 48.5 14.3 93.4 38.3 131.8z" ], + rev: [ 410, 512, [], "f5b2", "M270.67 274.89c0 36.16-29.41 65.57-65.56 65.57s-65.57-29.41-65.57-65.57 29.41-65.56 65.57-65.56 65.56 29.4 65.56 65.56zm139.55-5.05h-.13c-1.49-61.55-30.1-116.35-74.32-152.98l-45.38 26.2c43.17 28.03 71.81 76.63 71.81 131.82 0 86.62-70.47 157.09-157.09 157.09S48.02 361.5 48.02 274.88c0-81.86 62.96-149.27 142.99-156.43v39.12l108.76-62.79L191.01 32v38.32C84.31 77.57 0 166.36 0 274.89c0 111.59 89.12 202.29 200.06 204.98v.13h210.16V269.84z" ], + rocketchat: [ 448, 512, [], "f3e8", "M448 256.2c0-87.2-99.6-153.3-219.8-153.3-18.8 0-37.3 1.6-55.3 4.8-11.1-10.5-24.2-20-38-27.4C61.2 44.2 0 79.4 0 79.4s56.9 47.1 47.6 88.3c-52.3 52.3-52.5 124.1 0 176.6C56.9 385.6 0 432.6 0 432.6s61.2 35.2 134.9-.8c13.8-7.5 26.9-16.9 38-27.4 18 3.2 36.5 4.8 55.3 4.8 120.3-.1 219.8-65.8 219.8-153zm-219.7 124c-23.7 0-46.3-2.8-67.3-7.8-21.3 25.8-68.1 61.7-113.6 50.1 14.8-16 36.7-43.1 32-87.6-27.3-21.4-43.6-48.7-43.6-78.5 0-68.4 86.2-123.9 192.5-123.9S420.8 188 420.8 256.4c0 68.3-86.2 123.8-192.5 123.8zm25.6-123.9c0 14.2-11.5 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.5-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm88.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm-177.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.2 0 25.6 11.6 25.6 25.8z" ], + rockrms: [ 496, 512, [], "f3e9", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm157.4 419.5h-90l-112-131.3c-17.9-20.4-3.9-56.1 26.6-56.1h75.3l-84.6-99.3-84.3 98.9h-90L193.5 67.2c14.4-18.4 41.3-17.3 54.5 0l157.7 185.1c19 22.8 2 57.2-27.6 56.1-.6 0-74.2.2-74.2.2l101.5 118.9z" ], + safari: [ 512, 512, [], "f267", "M236.9 256.8c0-9.1 6.6-17.7 16.3-17.7 8.9 0 17.4 6.4 17.4 16.1 0 9.1-6.4 17.7-16.1 17.7-9 0-17.6-6.7-17.6-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-26.6 0c0-122.3-99.1-221.4-221.4-221.4S34.6 133.7 34.6 256 133.7 477.4 256 477.4 477.4 378.3 477.4 256zm-72.5 96.6c0 3.6 13 10.2 16.3 12.2-27.4 41.5-69.8 71.4-117.9 83.3l-4.4-18.5c-.3-2.5-1.9-2.8-4.2-2.8-1.9 0-3 2.8-2.8 4.2l4.4 18.8c-13.3 2.8-26.8 4.2-40.4 4.2-36.3 0-72-10.2-103-29.1 1.7-2.8 12.2-18 12.2-20.2 0-1.9-1.7-3.6-3.6-3.6-3.9 0-12.2 16.6-14.7 19.9-41.8-27.7-72-70.6-83.6-119.6l19.1-4.2c2.2-.6 2.8-2.2 2.8-4.2 0-1.9-2.8-3-4.4-2.8L62 294.5c-2.5-12.7-3.9-25.5-3.9-38.5 0-37.1 10.5-73.6 30.2-104.9 2.8 1.7 16.1 10.8 18.3 10.8 1.9 0 3.6-1.4 3.6-3.3 0-3.9-14.7-11.3-18-13.6 28.2-41.2 71.1-70.9 119.8-81.9l4.2 18.5c.6 2.2 2.2 2.8 4.2 2.8s3-2.8 2.8-4.4L219 61.7c12.2-2.2 24.6-3.6 37.1-3.6 37.1 0 73.3 10.5 104.9 30.2-1.9 2.8-10.8 15.8-10.8 18 0 1.9 1.4 3.6 3.3 3.6 3.9 0 11.3-14.4 13.3-17.7 41 27.7 70.3 70 81.7 118.2l-15.5 3.3c-2.5.6-2.8 2.2-2.8 4.4 0 1.9 2.8 3 4.2 2.8l15.8-3.6c2.5 12.7 3.9 25.7 3.9 38.7 0 36.3-10 72-28.8 102.7-2.8-1.4-14.4-9.7-16.6-9.7-2.1 0-3.8 1.7-3.8 3.6zm-33.2-242.2c-13 12.2-134.2 123.7-137.6 129.5l-96.6 160.5c12.7-11.9 134.2-124 137.3-129.3l96.9-160.7z" ], + sass: [ 640, 512, [], "f41e", "M551.1 291.9c-22.4.1-41.8 5.5-58 13.5-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-3.8 11.1-5.3 19.1-2.3 11.7-25.8 53.5-39.1 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-2.7 11.4-5.3 19.1-2.6 7.7-33.9 77.3-42.1 95.4-4.2 9.2-7.8 16.6-10.4 21.6s-.2.3-.4.9c-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4.3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2-.8 0-1.4 2-1.4 2s10.1-42.4-19.4-42.4c-18.4 0-44 20.2-56.6 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.8-38.2-101.9-65.2-99.1-116.5 1-18.7 7.5-67.8 127.1-127.4 98-48.8 176.4-35.4 189.9-5.6 19.4 42.5-41.9 121.6-143.7 133-38.8 4.3-59.2-10.7-64.3-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.8 28.9 18.7 6.1 64.2 9.5 119.2-11.8C367 196.5 415.1 130.2 401 74.7 386.6 18.3 293.1-.2 204.6 31.2 151.9 49.9 94.9 79.3 53.9 117.6 5.2 163.2-2.6 202.9.6 219.5c11.4 58.9 92.6 97.3 125.1 125.7-1.6.9-3.1 1.7-4.5 2.5-16.3 8.1-78.2 40.5-93.7 74.7-17.5 38.8 2.9 66.6 16.3 70.4 41.8 11.6 84.6-9.3 107.6-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.3-4.9 16.4-9.4 23.5-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.5 5 15.4 5 13.8 0 20-11.4 26.9-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.4 0 18.8-12.1 23-18.3v.1s.2-.4.7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.6-46 16.2-31.8 31.7-71.5 31.7-71.5s1.4 9.7 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2s0 .1.1.2c-3 4-6.4 8.3-9.9 12.5-12.8 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.7 2.5 11.5-.8 19.6-3.6 23.5-5.4 6.2-2.2 13.4-5.7 20.2-10.6 12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5 19.8-28.9 35.1-60.6 35.1-60.6s1.4 9.7 6.2 25.8c2.4 8.1 7.1 17 11.4 25.7-18.6 15.1-30.1 32.6-34.1 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5 6.5-2.2 14.3-5.7 21.6-11.1 12.5-9.2 24.6-22.1 23.8-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.1-10.2 62.1-7.2 55.7 6.5 66.6 41.3 64.5 55.8-2.1 14.6-13.8 22.6-17.7 25-3.9 2.4-5.1 3.3-4.8 5.1.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.2-11.8 30.3-38.7 1.6-34-31.1-71.4-89-71.1zM121.8 436.6c-18.4 20.1-44.2 27.7-55.3 21.3C54.6 451 59.3 421.4 82 400c13.8-13 31.6-25 43.4-32.4 2.7-1.6 6.6-4 11.4-6.9.8-.5 1.2-.7 1.2-.7.9-.6 1.9-1.1 2.9-1.7 8.3 30.4.3 57.2-19.1 78.3zm134.4-91.4c-6.4 15.7-19.9 55.7-28.1 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.1-11.3 21.2-14.9 23.8-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.9-13.9 0 .5.1 1 .1 1.6-.1 17.9-17.3 30-25.1 34.8zm85.6-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.6-15.3 19-24.5 1.2 3.8 1.9 7.4 1.9 10.8-.1 22.5-16.2 30.9-25.9 34.4z" ], + schlix: [ 448, 512, [], "f3ea", "M350.5 157.7l-54.2-46.1 73.4-39 78.3 44.2-97.5 40.9zM192 122.1l45.7-28.2 34.7 34.6-55.4 29-25-35.4zm-65.1 6.6l31.9-22.1L176 135l-36.7 22.5-12.4-28.8zm-23.3 88.2l-8.8-34.8 29.6-18.3 13.1 35.3-33.9 17.8zm-21.2-83.7l23.9-18.1 8.9 24-26.7 18.3-6.1-24.2zM59 206.5l-3.6-28.4 22.3-15.5 6.1 28.7L59 206.5zm-30.6 16.6l20.8-12.8 3.3 33.4-22.9 12-1.2-32.6zM1.4 268l19.2-10.2.4 38.2-21 8.8L1.4 268zm59.1 59.3l-28.3 8.3-1.6-46.8 25.1-10.7 4.8 49.2zM99 263.2l-31.1 13-5.2-40.8L90.1 221l8.9 42.2zM123.2 377l-41.6 5.9-8.1-63.5 35.2-10.8 14.5 68.4zm28.5-139.9l21.2 57.1-46.2 13.6-13.7-54.1 38.7-16.6zm85.7 230.5l-70.9-3.3-24.3-95.8 55.2-8.6 40 107.7zm-84.9-279.7l42.2-22.4 28 45.9-50.8 21.3-19.4-44.8zm41 94.9l61.3-18.7 52.8 86.6-79.8 11.3-34.3-79.2zm51.4-85.6l67.3-28.8 65.5 65.4-88.6 26.2-44.2-62.8z" ], + scribd: [ 384, 512, [], "f28a", "M42.3 252.7c-16.1-19-24.7-45.9-24.8-79.9 0-100.4 75.2-153.1 167.2-153.1 98.6-1.6 156.8 49 184.3 70.6l-50.5 72.1-37.3-24.6 26.9-38.6c-36.5-24-79.4-36.5-123-35.8-50.7-.8-111.7 27.2-111.7 76.2 0 18.7 11.2 20.7 28.6 15.6 23.3-5.3 41.9.6 55.8 14 26.4 24.3 23.2 67.6-.7 91.9-29.2 29.5-85.2 27.3-114.8-8.4zm317.7 5.9c-15.5-18.8-38.9-29.4-63.2-28.6-38.1-2-71.1 28-70.5 67.2-.7 16.8 6 33 18.4 44.3 14.1 13.9 33 19.7 56.3 14.4 17.4-5.1 28.6-3.1 28.6 15.6 0 4.3-.5 8.5-1.4 12.7-16.7 40.9-59.5 64.4-121.4 64.4-51.9.2-102.4-16.4-144.1-47.3l33.7-39.4-35.6-27.4L0 406.3l15.4 13.8c52.5 46.8 120.4 72.5 190.7 72.2 51.4 0 94.4-10.5 133.6-44.1 57.1-51.4 54.2-149.2 20.3-189.6z" ], + searchengin: [ 460, 512, [], "f3eb", "M220.6 130.3l-67.2 28.2V43.2L98.7 233.5l54.7-24.2v130.3l67.2-209.3zm-83.2-96.7l-1.3 4.7-15.2 52.9C80.6 106.7 52 145.8 52 191.5c0 52.3 34.3 95.9 83.4 105.5v53.6C57.5 340.1 0 272.4 0 191.6c0-80.5 59.8-147.2 137.4-158zm311.4 447.2c-11.2 11.2-23.1 12.3-28.6 10.5-5.4-1.8-27.1-19.9-60.4-44.4-33.3-24.6-33.6-35.7-43-56.7-9.4-20.9-30.4-42.6-57.5-52.4l-9.7-14.7c-24.7 16.9-53 26.9-81.3 28.7l2.1-6.6 15.9-49.5c46.5-11.9 80.9-54 80.9-104.2 0-54.5-38.4-102.1-96-107.1V32.3C254.4 37.4 320 106.8 320 191.6c0 33.6-11.2 64.7-29 90.4l14.6 9.6c9.8 27.1 31.5 48 52.4 57.4s32.2 9.7 56.8 43c24.6 33.2 42.7 54.9 44.5 60.3s.7 17.3-10.5 28.5zm-9.9-17.9c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8z" ], + sellcast: [ 448, 512, [], "f2da", "M353.4 32H94.7C42.6 32 0 74.6 0 126.6v258.7C0 437.4 42.6 480 94.7 480h258.7c52.1 0 94.7-42.6 94.7-94.6V126.6c0-52-42.6-94.6-94.7-94.6zm-50 316.4c-27.9 48.2-89.9 64.9-138.2 37.2-22.9 39.8-54.9 8.6-42.3-13.2l15.7-27.2c5.9-10.3 19.2-13.9 29.5-7.9 18.6 10.8-.1-.1 18.5 10.7 27.6 15.9 63.4 6.3 79.4-21.3 15.9-27.6 6.3-63.4-21.3-79.4-17.8-10.2-.6-.4-18.6-10.6-24.6-14.2-3.4-51.9 21.6-37.5 18.6 10.8-.1-.1 18.5 10.7 48.4 28 65.1 90.3 37.2 138.5zm21.8-208.8c-17 29.5-16.3 28.8-19 31.5-6.5 6.5-16.3 8.7-26.5 3.6-18.6-10.8.1.1-18.5-10.7-27.6-15.9-63.4-6.3-79.4 21.3s-6.3 63.4 21.3 79.4c0 0 18.5 10.6 18.6 10.6 24.6 14.2 3.4 51.9-21.6 37.5-18.6-10.8.1.1-18.5-10.7-48.2-27.8-64.9-90.1-37.1-138.4 27.9-48.2 89.9-64.9 138.2-37.2l4.8-8.4c14.3-24.9 52-3.3 37.7 21.5z" ], + sellsy: [ 640, 512, [], "f213", "M539.71 237.308c3.064-12.257 4.29-24.821 4.29-37.384C544 107.382 468.618 32 376.076 32c-77.22 0-144.634 53.012-163.02 127.781-15.322-13.176-34.934-20.53-55.157-20.53-46.271 0-83.962 37.69-83.962 83.961 0 7.354.92 15.015 3.065 22.369-42.9 20.225-70.785 63.738-70.785 111.234C6.216 424.843 61.68 480 129.401 480h381.198c67.72 0 123.184-55.157 123.184-123.184.001-56.384-38.916-106.025-94.073-119.508zM199.88 401.554c0 8.274-7.048 15.321-15.321 15.321H153.61c-8.274 0-15.321-7.048-15.321-15.321V290.626c0-8.273 7.048-15.321 15.321-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v110.928zm89.477 0c0 8.274-7.048 15.321-15.322 15.321h-30.949c-8.274 0-15.321-7.048-15.321-15.321V270.096c0-8.274 7.048-15.321 15.321-15.321h30.949c8.274 0 15.322 7.048 15.322 15.321v131.458zm89.477 0c0 8.274-7.047 15.321-15.321 15.321h-30.949c-8.274 0-15.322-7.048-15.322-15.321V238.84c0-8.274 7.048-15.321 15.322-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v162.714zm87.027 0c0 8.274-7.048 15.321-15.322 15.321h-28.497c-8.274 0-15.321-7.048-15.321-15.321V176.941c0-8.579 7.047-15.628 15.321-15.628h28.497c8.274 0 15.322 7.048 15.322 15.628v224.613z" ], + servicestack: [ 496, 512, [], "f3ec", "M88 216c81.7 10.2 273.7 102.3 304 232H0c99.5-8.1 184.5-137 88-232zm32-152c32.3 35.6 47.7 83.9 46.4 133.6C249.3 231.3 373.7 321.3 400 448h96C455.3 231.9 222.8 79.5 120 64z" ], + shirtsinbulk: [ 448, 512, [], "f214", "M395.208 221.583H406v33.542h-10.792v-33.542zm0-9.625H406v-33.542h-10.792v33.542zm0 86.333H406V264.75h-10.792v33.541zM358.75 135.25h-33.542v10.5h33.542v-10.5zm36.458 206.208H406v-33.542h-10.792v33.542zM311.5 135.25h-33.542v10.5H311.5v-10.5zm-47.25 0H231v10.5h33.25v-10.5zm-47.25 0h-33.25v10.5H217v-10.5zm178.208 33.542H406V135.25h-33.542v10.5h22.75v23.042zm-255.792 259l30.625 13.417 4.375-9.917-30.625-13.417-4.375 9.917zM179.083 445l30.334 13.708 4.374-9.916-30.333-13.417-4.375 9.625zm216.125-60.375H406v-33.542h-10.792v33.542zm-334.833 8.167L91 406.208l4.375-9.624-30.625-13.709-4.375 9.917zm39.666 17.499l30.625 13.417 4.375-9.917-30.625-13.416-4.375 9.916zm132.417 38.501l4.375 9.916L267.459 445l-4.375-9.625-30.626 13.417zm118.417-52.208l4.375 9.624 30.624-13.416-4.374-9.917-30.625 13.709zM311.5 413.791l4.375 9.917 30.625-13.417-4.374-9.916-30.626 13.416zm-39.667 17.501l4.375 9.917 30.625-13.417-4.375-9.917-30.625 13.417zM311.5 46.583h-33.542v10.5H311.5v-10.5zm94.209 0h-33.251v10.5h33.251v-10.5zm-188.709 0h-33.25v10.5H217v-10.5zm141.75 0h-33.542v10.5h33.542v-10.5zm-94.5 0H231v10.5h33.25v-10.5zM448 3.708v406l-226.334 98.584L0 409.708v-406h448zm-29.166 116.958H29.166V390.75l192.792 85.75 196.875-85.75V120.666zm0-87.791H29.166V91.5h389.667V32.875zM75.542 46.583H42.291v10.5h33.251v-10.5zm94.5 0H136.5v10.5h33.542v-10.5zm-47.251 0H89.25v10.5h33.542v-10.5zm7.584 236.542c0-50.167 41.125-91.292 91.292-91.292 50.458 0 91.292 41.125 91.292 91.292 0 50.458-40.833 91.292-91.292 91.292-50.167-.001-91.292-40.834-91.292-91.292zm120.75 18.084c0 13.125-23.917 14.291-32.666 14.291-12.25 0-29.75-2.625-35.875-14.875h-.875L172.666 319c14.876 9.333 29.167 12.25 47.25 12.25 19.542 0 51.042-5.833 51.042-31.209 0-48.125-78.458-16.333-78.458-37.916 0-13.125 20.708-14.875 29.75-14.875 10.791 0 29.166 3.208 35.583 13.124h.875l8.751-16.916c-15.167-6.125-27.417-11.959-44.334-11.959-20.125 0-49.583 6.417-49.583 31.792 0 44.334 77.583 11.959 77.583 37.918zM122.791 135.25H89.25v10.5h33.542v-10.5zm-69.999 10.5h22.75v-10.5H42v33.542h10.792V145.75zm0 32.666H42v33.542h10.792v-33.542zm117.25-43.166H136.5v10.5h33.542v-10.5zm-117.25 86.333H42v33.542h10.792v-33.542zm0 86.334H42v33.542h10.792v-33.542zm0-43.167H42v33.542h10.792V264.75zm0 86.333H42v33.542h10.792v-33.542z" ], + shopware: [ 495, 512, [], "f5b5", "M395.5 455.27c-42.95 31.79-93.95 48.59-147.48 48.59-137.21 0-248.02-111-248.02-248 0-137.19 111.04-248 248.02-248 61.3 0 120.14 22.55 165.68 63.5 2.62 2.36.58 6.64-2.86 6.18-17.67-2.43-36.75-3.66-56.71-3.66-129.36 0-222.4 53.47-222.4 155.35 0 109.04 92.13 145.88 176.83 178.73 33.64 13.04 65.4 25.36 86.96 41.59 1.9 1.44 1.89 4.31-.02 5.72zm99.46-222.32c-.08-.94-.55-1.83-1.27-2.44-51.76-42.96-93.62-60.48-144.48-60.48-84.13 0-80.25 52.17-80.25 53.63 0 42.6 52.06 62.01 112.34 84.49 31.07 11.59 63.19 23.57 92.68 39.93 1.88 1.05 4.26.19 5.05-1.82 18.89-48.39 17.94-90.23 15.93-113.31z" ], + simplybuilt: [ 512, 512, [], "f215", "M481.2 64h-106c-14.5 0-26.6 11.8-26.6 26.3v39.6H163.3V90.3c0-14.5-12-26.3-26.6-26.3h-106C16.1 64 4.3 75.8 4.3 90.3v331.4c0 14.5 11.8 26.3 26.6 26.3h450.4c14.8 0 26.6-11.8 26.6-26.3V90.3c-.2-14.5-12-26.3-26.7-26.3zM149.8 355.8c-36.6 0-66.4-29.7-66.4-66.4 0-36.9 29.7-66.6 66.4-66.6 36.9 0 66.6 29.7 66.6 66.6 0 36.7-29.7 66.4-66.6 66.4zm212.4 0c-36.9 0-66.6-29.7-66.6-66.6 0-36.6 29.7-66.4 66.6-66.4 36.6 0 66.4 29.7 66.4 66.4 0 36.9-29.8 66.6-66.4 66.6z" ], + sistrix: [ 448, 512, [], "f3ee", "M448 449L301.2 300.2c20-27.9 31.9-62.2 31.9-99.2 0-93.1-74.7-168.9-166.5-168.9C74.7 32 0 107.8 0 200.9s74.7 168.9 166.5 168.9c39.8 0 76.3-14.2 105-37.9l146 148.1 30.5-31zM166.5 330.8c-70.6 0-128.1-58.3-128.1-129.9S95.9 71 166.5 71s128.1 58.3 128.1 129.9-57.4 129.9-128.1 129.9z" ], + sith: [ 448, 512, [], "f512", "M0 32l69.71 118.75-58.86-11.52 69.84 91.03a146.741 146.741 0 0 0 0 51.45l-69.84 91.03 58.86-11.52L0 480l118.75-69.71-11.52 58.86 91.03-69.84c17.02 3.04 34.47 3.04 51.48 0l91.03 69.84-11.52-58.86L448 480l-69.71-118.78 58.86 11.52-69.84-91.03c3.03-17.01 3.04-34.44 0-51.45l69.84-91.03-58.86 11.52L448 32l-118.75 69.71 11.52-58.9-91.06 69.87c-8.5-1.52-17.1-2.29-25.71-2.29s-17.21.78-25.71 2.29l-91.06-69.87 11.52 58.9L0 32zm224 99.78c31.8 0 63.6 12.12 87.85 36.37 48.5 48.5 48.49 127.21 0 175.7s-127.2 48.46-175.7-.03c-48.5-48.5-48.49-127.21 0-175.7 24.24-24.25 56.05-36.34 87.85-36.34zm0 36.66c-22.42 0-44.83 8.52-61.92 25.61-34.18 34.18-34.19 89.68 0 123.87s89.65 34.18 123.84 0c34.18-34.18 34.19-89.68 0-123.87-17.09-17.09-39.5-25.61-61.92-25.61z" ], + skyatlas: [ 640, 512, [], "f216", "M640 329.3c0 65.9-52.5 114.4-117.5 114.4-165.9 0-196.6-249.7-359.7-249.7-146.9 0-147.1 212.2 5.6 212.2 42.5 0 90.9-17.8 125.3-42.5 5.6-4.1 16.9-16.3 22.8-16.3s10.9 5 10.9 10.9c0 7.8-13.1 19.1-18.7 24.1-40.9 35.6-100.3 61.2-154.7 61.2-83.4.1-154-59-154-144.9s67.5-149.1 152.8-149.1c185.3 0 222.5 245.9 361.9 245.9 99.9 0 94.8-139.7 3.4-139.7-17.5 0-35 11.6-46.9 11.6-8.4 0-15.9-7.2-15.9-15.6 0-11.6 5.3-23.7 5.3-36.3 0-66.6-50.9-114.7-116.9-114.7-53.1 0-80 36.9-88.8 36.9-6.2 0-11.2-5-11.2-11.2 0-5.6 4.1-10.3 7.8-14.4 25.3-28.8 64.7-43.7 102.8-43.7 79.4 0 139.1 58.4 139.1 137.8 0 6.9-.3 13.7-1.2 20.6 11.9-3.1 24.1-4.7 35.9-4.7 60.7 0 111.9 45.3 111.9 107.2z" ], + skype: [ 448, 512, [], "f17e", "M424.7 299.8c2.9-14 4.7-28.9 4.7-43.8 0-113.5-91.9-205.3-205.3-205.3-14.9 0-29.7 1.7-43.8 4.7C161.3 40.7 137.7 32 112 32 50.2 32 0 82.2 0 144c0 25.7 8.7 49.3 23.3 68.2-2.9 14-4.7 28.9-4.7 43.8 0 113.5 91.9 205.3 205.3 205.3 14.9 0 29.7-1.7 43.8-4.7 19 14.6 42.6 23.3 68.2 23.3 61.8 0 112-50.2 112-112 .1-25.6-8.6-49.2-23.2-68.1zm-194.6 91.5c-65.6 0-120.5-29.2-120.5-65 0-16 9-30.6 29.5-30.6 31.2 0 34.1 44.9 88.1 44.9 25.7 0 42.3-11.4 42.3-26.3 0-18.7-16-21.6-42-28-62.5-15.4-117.8-22-117.8-87.2 0-59.2 58.6-81.1 109.1-81.1 55.1 0 110.8 21.9 110.8 55.4 0 16.9-11.4 31.8-30.3 31.8-28.3 0-29.2-33.5-75-33.5-25.7 0-42 7-42 22.5 0 19.8 20.8 21.8 69.1 33 41.4 9.3 90.7 26.8 90.7 77.6 0 59.1-57.1 86.5-112 86.5z" ], + slack: [ 448, 512, [], "f198", "M244.2 217.5l19.3 57.7-59.8 20-19.3-57.7 59.8-20zm41.4 243.7C131.6 507.4 65 471.6 18.8 317.6S8.4 97 162.4 50.8C316.4 4.6 383 40.4 429.2 194.4c46.2 154 10.4 220.6-143.6 266.8zM366.2 265c-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-19.3-57.7 29-9.7c12.2-3.9 18.6-17.2 14.7-29.4-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-59.8 20.1-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l19.3 57.7-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 59.8-20.1 10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 29-9.7c12.2-4.2 18.6-17.5 14.7-29.6z" ], + "slack-hash": [ 448, 512, [], "f3ef", "M446.2 270.4c-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-30.3-90 45.4-15.1c19.1-6.2 29.1-26.8 23-45.9-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-93.4 31.2-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-45.3 15c-19.1 6.2-29.1 26.8-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l30.3 90L78 354.8c-19 6.2-29.1 26.9-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 93.6-31.3 15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 45.4-15.1c19-6 29.1-26.7 22.9-45.7zm-254.1 47.2l-30.3-90.2 93.5-31.3 30.3 90.2-93.5 31.3z" ], + slideshare: [ 512, 512, [], "f1e7", "M249.429 211.436c0 31.716-27.715 57.717-61.717 57.717-34.001 0-61.716-26.001-61.716-57.717 0-32.001 27.715-57.716 61.716-57.716 34.001 0 61.717 25.715 61.717 57.716zm254.294 50.002c-18.286 22.573-53.144 50.288-106.289 72.003C453.722 525.163 260 555.735 263.143 457.446c0 1.714-.286-52.859-.286-93.432-4.285-.858-8.571-2-13.714-3.143 0 40.858-.286 98.289-.286 96.575C252 555.735 58.278 525.163 114.566 333.441c-53.145-21.715-88.003-49.43-106.29-72.003-9.143-13.714.858-28.287 16.001-17.715 2 1.428 4.285 2.857 6.285 4.285V49.716C30.563 22.287 51.135 0 76.565 0h359.157c25.429 0 46.002 22.287 46.002 49.716v198.293l6-4.285c15.143-10.573 25.143 4 15.999 17.714zm-46.572-189.15c0-32.858-10.572-45.716-40.859-45.716H98.566c-31.716 0-40.573 10.858-40.573 45.716v192.293c67.717 35.43 125.72 29.144 157.435 28.001 13.429-.286 22.001 2.286 27.144 7.715 1.689 1.687 10.023 9.446 20.287 17.143 1.143-15.715 10.001-25.715 33.716-24.858 32.287 1.428 91.718 7.715 160.577-29.716V72.288zM331.146 153.72c-34.002 0-61.716 25.715-61.716 57.716 0 31.716 27.715 57.717 61.716 57.717 34.287 0 61.716-26.001 61.716-57.717 0-32.001-27.429-57.716-61.716-57.716z" ], + snapchat: [ 496, 512, [], "f2ab", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm169.5 338.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C183.1 100 230.7 96 244.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z" ], + "snapchat-ghost": [ 512, 512, [], "f2ac", "M510.846 392.673c-5.211 12.157-27.239 21.089-67.36 27.318-2.064 2.786-3.775 14.686-6.507 23.956-1.625 5.566-5.623 8.869-12.128 8.869l-.297-.005c-9.395 0-19.203-4.323-38.852-4.323-26.521 0-35.662 6.043-56.254 20.588-21.832 15.438-42.771 28.764-74.027 27.399-31.646 2.334-58.025-16.908-72.871-27.404-20.714-14.643-29.828-20.582-56.241-20.582-18.864 0-30.736 4.72-38.852 4.72-8.073 0-11.213-4.922-12.422-9.04-2.703-9.189-4.404-21.263-6.523-24.13-20.679-3.209-67.31-11.344-68.498-32.15a10.627 10.627 0 0 1 8.877-11.069c69.583-11.455 100.924-82.901 102.227-85.934.074-.176.155-.344.237-.515 3.713-7.537 4.544-13.849 2.463-18.753-5.05-11.896-26.872-16.164-36.053-19.796-23.715-9.366-27.015-20.128-25.612-27.504 2.437-12.836 21.725-20.735 33.002-15.453 8.919 4.181 16.843 6.297 23.547 6.297 5.022 0 8.212-1.204 9.96-2.171-2.043-35.936-7.101-87.29 5.687-115.969C158.122 21.304 229.705 15.42 250.826 15.42c.944 0 9.141-.089 10.11-.089 52.148 0 102.254 26.78 126.723 81.643 12.777 28.65 7.749 79.792 5.695 116.009 1.582.872 4.357 1.942 8.599 2.139 6.397-.286 13.815-2.389 22.069-6.257 6.085-2.846 14.406-2.461 20.48.058l.029.01c9.476 3.385 15.439 10.215 15.589 17.87.184 9.747-8.522 18.165-25.878 25.018-2.118.835-4.694 1.655-7.434 2.525-9.797 3.106-24.6 7.805-28.616 17.271-2.079 4.904-1.256 11.211 2.46 18.748.087.168.166.342.239.515 1.301 3.03 32.615 74.46 102.23 85.934 6.427 1.058 11.163 7.877 7.725 15.859z" ], + "snapchat-square": [ 448, 512, [], "f2ad", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6.5 314.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C159.1 100 206.7 96 220.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z" ], + soundcloud: [ 640, 512, [], "f1be", "M111.4 256.3l5.8 65-5.8 68.3c-.3 2.5-2.2 4.4-4.4 4.4s-4.2-1.9-4.2-4.4l-5.6-68.3 5.6-65c0-2.2 1.9-4.2 4.2-4.2 2.2 0 4.1 2 4.4 4.2zm21.4-45.6c-2.8 0-4.7 2.2-5 5l-5 105.6 5 68.3c.3 2.8 2.2 5 5 5 2.5 0 4.7-2.2 4.7-5l5.8-68.3-5.8-105.6c0-2.8-2.2-5-4.7-5zm25.5-24.1c-3.1 0-5.3 2.2-5.6 5.3l-4.4 130 4.4 67.8c.3 3.1 2.5 5.3 5.6 5.3 2.8 0 5.3-2.2 5.3-5.3l5.3-67.8-5.3-130c0-3.1-2.5-5.3-5.3-5.3zM7.2 283.2c-1.4 0-2.2 1.1-2.5 2.5L0 321.3l4.7 35c.3 1.4 1.1 2.5 2.5 2.5s2.2-1.1 2.5-2.5l5.6-35-5.6-35.6c-.3-1.4-1.1-2.5-2.5-2.5zm23.6-21.9c-1.4 0-2.5 1.1-2.5 2.5l-6.4 57.5 6.4 56.1c0 1.7 1.1 2.8 2.5 2.8s2.5-1.1 2.8-2.5l7.2-56.4-7.2-57.5c-.3-1.4-1.4-2.5-2.8-2.5zm25.3-11.4c-1.7 0-3.1 1.4-3.3 3.3L47 321.3l5.8 65.8c.3 1.7 1.7 3.1 3.3 3.1 1.7 0 3.1-1.4 3.1-3.1l6.9-65.8-6.9-68.1c0-1.9-1.4-3.3-3.1-3.3zm25.3-2.2c-1.9 0-3.6 1.4-3.6 3.6l-5.8 70 5.8 67.8c0 2.2 1.7 3.6 3.6 3.6s3.6-1.4 3.9-3.6l6.4-67.8-6.4-70c-.3-2.2-2-3.6-3.9-3.6zm241.4-110.9c-1.1-.8-2.8-1.4-4.2-1.4-2.2 0-4.2.8-5.6 1.9-1.9 1.7-3.1 4.2-3.3 6.7v.8l-3.3 176.7 1.7 32.5 1.7 31.7c.3 4.7 4.2 8.6 8.9 8.6s8.6-3.9 8.6-8.6l3.9-64.2-3.9-177.5c-.4-3-2-5.8-4.5-7.2zm-26.7 15.3c-1.4-.8-2.8-1.4-4.4-1.4s-3.1.6-4.4 1.4c-2.2 1.4-3.6 3.9-3.6 6.7l-.3 1.7-2.8 160.8s0 .3 3.1 65.6v.3c0 1.7.6 3.3 1.7 4.7 1.7 1.9 3.9 3.1 6.4 3.1 2.2 0 4.2-1.1 5.6-2.5 1.7-1.4 2.5-3.3 2.5-5.6l.3-6.7 3.1-58.6-3.3-162.8c-.3-2.8-1.7-5.3-3.9-6.7zm-111.4 22.5c-3.1 0-5.8 2.8-5.8 6.1l-4.4 140.6 4.4 67.2c.3 3.3 2.8 5.8 5.8 5.8 3.3 0 5.8-2.5 6.1-5.8l5-67.2-5-140.6c-.2-3.3-2.7-6.1-6.1-6.1zm376.7 62.8c-10.8 0-21.1 2.2-30.6 6.1-6.4-70.8-65.8-126.4-138.3-126.4-17.8 0-35 3.3-50.3 9.4-6.1 2.2-7.8 4.4-7.8 9.2v249.7c0 5 3.9 8.6 8.6 9.2h218.3c43.3 0 78.6-35 78.6-78.3.1-43.6-35.2-78.9-78.5-78.9zm-296.7-60.3c-4.2 0-7.5 3.3-7.8 7.8l-3.3 136.7 3.3 65.6c.3 4.2 3.6 7.5 7.8 7.5 4.2 0 7.5-3.3 7.5-7.5l3.9-65.6-3.9-136.7c-.3-4.5-3.3-7.8-7.5-7.8zm-53.6-7.8c-3.3 0-6.4 3.1-6.4 6.7l-3.9 145.3 3.9 66.9c.3 3.6 3.1 6.4 6.4 6.4 3.6 0 6.4-2.8 6.7-6.4l4.4-66.9-4.4-145.3c-.3-3.6-3.1-6.7-6.7-6.7zm26.7 3.4c-3.9 0-6.9 3.1-6.9 6.9L227 321.3l3.9 66.4c.3 3.9 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9l4.2-66.4-4.2-141.7c0-3.9-3-6.9-6.9-6.9z" ], + speakap: [ 448, 512, [], "f3f3", "M352 32H96C43.2 32 0 75.2 0 128v256c0 52.8 43.2 96 96 96h256c52.8 0 96-43.2 96-96V128c0-52.8-43.2-96-96-96zM221 382.9c-39.6 0-81.9-17.8-81.9-53.7V302H179v17.8c0 15.1 19.5 24.5 41.9 24.5 24.2 0 41.3-10.4 41.3-29.5 0-23.8-27.2-31.9-54.7-42.6-31.9-12.4-63.1-26.2-63.1-69.1 0-48 38.6-66.4 79.9-66.4 37.6 0 75.5 14.1 75.5 41.9v31.2h-39.9v-16.1c0-12.1-17.8-18.5-35.6-18.5-19.5 0-35.6 8.1-35.6 26.2 0 22.1 22.5 29.2 47 38.9 35.9 12.4 71.1 27.2 71.1 71.5.1 48.6-40.8 71.1-85.8 71.1z" ], + spotify: [ 496, 512, [], "f1bc", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm100.7 364.9c-4.2 0-6.8-1.3-10.7-3.6-62.4-37.6-135-39.2-206.7-24.5-3.9 1-9 2.6-11.9 2.6-9.7 0-15.8-7.7-15.8-15.8 0-10.3 6.1-15.2 13.6-16.8 81.9-18.1 165.6-16.5 237 26.2 6.1 3.9 9.7 7.4 9.7 16.5s-7.1 15.4-15.2 15.4zm26.9-65.6c-5.2 0-8.7-2.3-12.3-4.2-62.5-37-155.7-51.9-238.6-29.4-4.8 1.3-7.4 2.6-11.9 2.6-10.7 0-19.4-8.7-19.4-19.4s5.2-17.8 15.5-20.7c27.8-7.8 56.2-13.6 97.8-13.6 64.9 0 127.6 16.1 177 45.5 8.1 4.8 11.3 11 11.3 19.7-.1 10.8-8.5 19.5-19.4 19.5zm31-76.2c-5.2 0-8.4-1.3-12.9-3.9-71.2-42.5-198.5-52.7-280.9-29.7-3.6 1-8.1 2.6-12.9 2.6-13.2 0-23.3-10.3-23.3-23.6 0-13.6 8.4-21.3 17.4-23.9 35.2-10.3 74.6-15.2 117.5-15.2 73 0 149.5 15.2 205.4 47.8 7.8 4.5 12.9 10.7 12.9 22.6 0 13.6-11 23.3-23.2 23.3z" ], + squarespace: [ 512, 512, [], "f5be", "M186.12 343.34c-9.65 9.65-9.65 25.29 0 34.94 9.65 9.65 25.29 9.65 34.94 0L378.24 221.1c19.29-19.29 50.57-19.29 69.86 0s19.29 50.57 0 69.86L293.95 445.1c19.27 19.29 50.53 19.31 69.82.04l.04-.04 119.25-119.24c38.59-38.59 38.59-101.14 0-139.72-38.59-38.59-101.15-38.59-139.72 0l-157.22 157.2zm244.53-104.8c-9.65-9.65-25.29-9.65-34.93 0l-157.2 157.18c-19.27 19.29-50.53 19.31-69.82.05l-.05-.05c-9.64-9.64-25.27-9.65-34.92-.01l-.01.01c-9.65 9.64-9.66 25.28-.02 34.93l.02.02c38.58 38.57 101.14 38.57 139.72 0l157.2-157.2c9.65-9.65 9.65-25.29.01-34.93zm-261.99 87.33l157.18-157.18c9.64-9.65 9.64-25.29 0-34.94-9.64-9.64-25.27-9.64-34.91 0L133.72 290.93c-19.28 19.29-50.56 19.3-69.85.01l-.01-.01c-19.29-19.28-19.31-50.54-.03-69.84l.03-.03L218.03 66.89c-19.28-19.29-50.55-19.3-69.85-.02l-.02.02L28.93 186.14c-38.58 38.59-38.58 101.14 0 139.72 38.6 38.59 101.13 38.59 139.73.01zm-87.33-52.4c9.64 9.64 25.27 9.64 34.91 0l157.21-157.19c19.28-19.29 50.55-19.3 69.84-.02l.02.02c9.65 9.65 25.29 9.65 34.93 0 9.65-9.65 9.65-25.29 0-34.93-38.59-38.59-101.13-38.59-139.72 0L81.33 238.54c-9.65 9.64-9.65 25.28-.01 34.93h.01z" ], + "stack-exchange": [ 448, 512, [], "f18d", "M17.7 332.3h412.7v22c0 37.7-29.3 68-65.3 68h-19L259.3 512v-89.7H83c-36 0-65.3-30.3-65.3-68v-22zm0-23.6h412.7v-85H17.7v85zm0-109.4h412.7v-85H17.7v85zM365 0H83C47 0 17.7 30.3 17.7 67.7V90h412.7V67.7C430.3 30.3 401 0 365 0z" ], + "stack-overflow": [ 384, 512, [], "f16c", "M293.7 300l-181.2-84.5 16.7-36.5 181.3 84.7-16.8 36.3zm48-76L188.2 95.7l-25.5 30.8 153.5 128.3 25.5-30.8zm39.6-31.7L262 32l-32 24 119.3 160.3 32-24zM290.7 311L95 269.7 86.8 309l195.7 41 8.2-39zm31.6 129H42.7V320h-40v160h359.5V320h-40v120zm-39.8-80h-200v39.7h200V360z" ], + staylinked: [ 440, 512, [], "f3f5", "M201.6 127.4c4.1-3.2 10.3-3 13.8.5l170 167.3-2.7-2.7 44.3 41.3c3.7 3.5 3.3 9-.7 12.2l-198 163.9c-9.9 7.6-17.3.8-17.3.8L2.3 314.6c-3.5-3.5-3-9 1.2-12.2l45.8-34.9c4.2-3.2 10.4-3 13.9.5l151.9 147.5c3.7 3.5 10 3.7 14.2.4l93.2-74c4.1-3.2 4.5-8.7.9-12.2l-84-81.3c-3.6-3.5-9.9-3.7-14-.5l-.1.1c-4.1 3.2-10.4 3-14-.5l-68.1-64.3c-3.5-3.5-3.1-9 1.1-12.2l57.3-43.6m14.8 257.3c3.7 3.5 10.1 3.7 14.3.4l50.2-38.8-.3-.3 7.7-6c4.2-3.2 4.6-8.7.9-12.2l-57.1-54.4c-3.6-3.5-10-3.7-14.2-.5l-.1.1c-4.2 3.2-10.5 3.1-14.2-.4L109 180.8c-3.6-3.5-3.1-8.9 1.1-12.2l92.2-71.5c4.1-3.2 10.3-3 13.9.5l160.4 159c3.7 3.5 10 3.7 14.1.5l45.8-35.8c4.1-3.2 4.4-8.7.7-12.2L226.7 2.5c-1.5-1.2-8-5.5-16.3 1.1L3.6 165.7c-4.2 3.2-4.8 8.7-1.2 12.2l42.3 41.7" ], + steam: [ 496, 512, [], "f1b6", "M496 256c0 137-111.2 248-248.4 248-113.8 0-209.6-76.3-239-180.4l95.2 39.3c6.4 32.1 34.9 56.4 68.9 56.4 39.2 0 71.9-32.4 70.2-73.5l84.5-60.2c52.1 1.3 95.8-40.9 95.8-93.5 0-51.6-42-93.5-93.7-93.5s-93.7 42-93.7 93.5v1.2L176.6 279c-15.5-.9-30.7 3.4-43.5 12.1L0 236.1C10.2 108.4 117.1 8 247.6 8 384.8 8 496 119 496 256zM155.7 384.3l-30.5-12.6a52.79 52.79 0 0 0 27.2 25.8c26.9 11.2 57.8-1.6 69-28.4 5.4-13 5.5-27.3.1-40.3-5.4-13-15.5-23.2-28.5-28.6-12.9-5.4-26.7-5.2-38.9-.6l31.5 13c19.8 8.2 29.2 30.9 20.9 50.7-8.3 19.9-31 29.2-50.8 21zm173.8-129.9c-34.4 0-62.4-28-62.4-62.3s28-62.3 62.4-62.3 62.4 28 62.4 62.3-27.9 62.3-62.4 62.3zm.1-15.6c25.9 0 46.9-21 46.9-46.8 0-25.9-21-46.8-46.9-46.8s-46.9 21-46.9 46.8c.1 25.8 21.1 46.8 46.9 46.8z" ], + "steam-square": [ 448, 512, [], "f1b7", "M185.2 356.5c7.7-18.5-1-39.7-19.6-47.4l-29.5-12.2c11.4-4.3 24.3-4.5 36.4.5 12.2 5.1 21.6 14.6 26.7 26.7 5 12.2 5 25.6-.1 37.7-10.5 25.1-39.4 37-64.6 26.5-11.6-4.8-20.4-13.6-25.4-24.2l28.5 11.8c18.6 7.8 39.9-.9 47.6-19.4zM400 32H48C21.5 32 0 53.5 0 80v160.7l116.6 48.1c12-8.2 26.2-12.1 40.7-11.3l55.4-80.2v-1.1c0-48.2 39.3-87.5 87.6-87.5s87.6 39.3 87.6 87.5c0 49.2-40.9 88.7-89.6 87.5l-79 56.3c1.6 38.5-29.1 68.8-65.7 68.8-31.8 0-58.5-22.7-64.5-52.7L0 319.2V432c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-99.7 222.5c-32.2 0-58.4-26.1-58.4-58.3s26.2-58.3 58.4-58.3 58.4 26.2 58.4 58.3-26.2 58.3-58.4 58.3zm.1-14.6c24.2 0 43.9-19.6 43.9-43.8 0-24.2-19.6-43.8-43.9-43.8-24.2 0-43.9 19.6-43.9 43.8 0 24.2 19.7 43.8 43.9 43.8z" ], + "steam-symbol": [ 448, 512, [], "f3f6", "M395.5 177.5c0 33.8-27.5 61-61 61-33.8 0-61-27.3-61-61s27.3-61 61-61c33.5 0 61 27.2 61 61zm52.5.2c0 63-51 113.8-113.7 113.8L225 371.3c-4 43-40.5 76.8-84.5 76.8-40.5 0-74.7-28.8-83-67L0 358V250.7L97.2 290c15.1-9.2 32.2-13.3 52-11.5l71-101.7c.5-62.3 51.5-112.8 114-112.8C397 64 448 115 448 177.7zM203 363c0-34.7-27.8-62.5-62.5-62.5-4.5 0-9 .5-13.5 1.5l26 10.5c25.5 10.2 38 39 27.7 64.5-10.2 25.5-39.2 38-64.7 27.5-10.2-4-20.5-8.3-30.7-12.2 10.5 19.7 31.2 33.2 55.2 33.2 34.7 0 62.5-27.8 62.5-62.5zm207.5-185.3c0-42-34.3-76.2-76.2-76.2-42.3 0-76.5 34.2-76.5 76.2 0 42.2 34.3 76.2 76.5 76.2 41.9.1 76.2-33.9 76.2-76.2z" ], + "sticker-mule": [ 576, 512, [], "f3f7", "M353.1 509.8c-5.9 2.9-32.1 3.2-36.5-.5-4.1-3-2.2-11.9-1.5-15 2.2-15-2.5-7.9-9.8-11.5-3.1-1.5-4.1-5.5-4.6-10-.5-1.5-1-2.5-1.5-3.5-1.7-10.7 6.8-33.6 8.2-43.4 4.9-23.7-.7-37.2 1.5-46.9 3.7-16.2 4.1-3.5 4.1-29.9-1.4-25.9 3.3-36.9.5-38.9-14.8 0-64.3 10.7-112.2 2-46.1-8.9-59.4-29-65.4-30.9-10.3-4.5-23.2.5-27.3 7-.1.1-35 70.6-39.6 87.8-6.2 20.5-.5 47.4 4.1 66.8 0 .1 4.5 14.6 10.3 19.5 2.1 1.5 5.1 2.5 7.2 4.5 2.8 2.7 9.4 15.2 9.8 16 2.6 4.5 3.6 8-1.5 10.5-3.6 2-9.3 2.5-14.4 2.5-2.6.5-1.5 3.5-3.1 5-2.9 2.8-20.7 6.1-29.9 2.5-2.6-1-5.7-3-6.2-5-1.5-4 2.1-9-1-12.5-4.5-2.9-13.1-2-17-12-2.2-5.4-2.6-7.6-2.6-49.4 0-9.7-5.9-38.7-8.2-46.9-1.5-5.5-1.5-11.5 0-16 .3-.9 4.1-4.6 4.1-13-1-1.5-4.6-.5-5.1-1.5-10.4-80.6-5.9-79-7.7-98.3-1.5-16-10.9-43.9-6.7-64.3.5-2.4 3.4-21 24.2-38.9 31-26.7 48.4-38.3 159-11.5 1.1.4 66.3 21.1 110.7-9 15.5-11.3 28.8-11.3 35.5-16 .1-.1 61.7-52.1 87-65.3 47.2-29.4 69.9-16.7 75.1-18 4.7-1 13.4-25.8 17-25.8 5.5 0 1.6 20.2 3.6 25.9.5 2 3.6 5 6.2 5 2.3 0 1.7-.8 10.3-5 8.4-5.4 14.9-17.6 20.6-17 11.7 1.6-19 41.6-19 46.9 0 2 .2.8 4.6 9.5 2.6 5.5 4.6 13.5 6.2 20 8.3 29.7 5.7 14.6 13.4 36.9 20.2 50.1 20.6 45.2 20.6 52.9 0 7.5-4.1 11-7.2 16.5-1.5 3-4.6 7.5-7.2 8-2.7.7 7-1.5-13.4 2.5-7.2 1-13.4-4.5-14.9-9.5-1.6-4.7 2.8-10.1-11.8-22.9-10.3-10-21.1-11.3-31.9-17-9.8-5.7-11.9 1-18 8-18 22.9-34 46.9-52 69.8-11.8 15-24.2 30.4-33.5 47.4-3.9 6.8-9.5 28.1-10.3 29.9-6.2 17.7-5.5 25.8-16.5 68.3-3.1 10-5.7 21.4-8.7 32.4-2.2 6.8-7.4 49.3-.5 59.4 2.1 3.5 8.7 4.5 11.3 8 .1.1 9.6 18.2 9.3 20 0 6.1-9.4 5.6-11.3 6.5-4.8 2.9-3.8 5.9-6.4 7.4" ], + strava: [ 369, 512, [], "f428", "M301.6 292l-43.9 88.2-44.6-88.2h-67.6l112.2 220 111.5-220h-67.6zM151.4 0L0 292h89.2l62.2-116.1L213.1 292h88.5L151.4 0z" ], + stripe: [ 640, 512, [], "f429", "M640 261.6c0-45.5-22-81.4-64.2-81.4s-67.9 35.9-67.9 81.1c0 53.5 30.3 78.2 73.5 78.2 21.2 0 37.1-4.8 49.2-11.5v-33.4c-12.1 6.1-26 9.8-43.6 9.8-17.3 0-32.5-6.1-34.5-26.9h86.9c.2-2.3.6-11.6.6-15.9m-87.9-16.8c0-20 12.3-28.4 23.4-28.4 10.9 0 22.5 8.4 22.5 28.4h-45.9zm-112.9-64.6c-17.4 0-28.6 8.2-34.8 13.9l-2.3-11H363v204.8l44.4-9.4.1-50.2c6.4 4.7 15.9 11.2 31.4 11.2 31.8 0 60.8-23.2 60.8-79.6.1-51.6-29.3-79.7-60.5-79.7m-10.6 122.5c-10.4 0-16.6-3.8-20.9-8.4l-.3-66c4.6-5.1 11-8.8 21.2-8.8 16.2 0 27.4 18.2 27.4 41.4.1 23.9-10.9 41.8-27.4 41.8M346.4 124v36.2l-44.6 9.5v-36.2l44.6-9.5m-44.5 59.2h44.6v153.2h-44.6V183.2zm-47.8 13.1c10.4-19.1 31.1-15.2 37.1-13.1V224c-5.7-1.8-23.4-4.5-33.9 9.3v103.1H213V183.2h38.4l2.7 13.1m-89-13.1h33.7V221h-33.7v63.2c0 26.2 28 18 33.7 15.7v33.8c-5.9 3.2-16.6 5.9-31.2 5.9-26.3 0-46.1-17-46.1-43.3l.2-142.4 43.3-9.2.1 38.5zM44.9 228.3c0 20 67.9 10.5 67.9 63.4 0 32-25.4 47.8-62.3 47.8-15.3 0-32-3-48.5-10.1v-40c14.9 8.1 33.9 14.2 48.6 14.2 9.9 0 17-2.7 17-10.9 0-21.2-67.5-13.2-67.5-62.4 0-31.4 24-50.2 60-50.2 14.7 0 29.4 2.3 44.1 8.1V230c-13.5-7.3-30.7-11.4-44.2-11.4-9.3.1-15.1 2.8-15.1 9.7" ], + "stripe-s": [ 362, 512, [], "f42a", "M144.3 154.6c0-22.3 18.6-30.9 48.4-30.9 43.4 0 98.5 13.3 141.9 36.7V26.1C287.3 7.2 240.1 0 192.8 0 77.1 0 0 60.4 0 161.4c0 157.9 216.8 132.3 216.8 200.4 0 26.4-22.9 34.9-54.7 34.9-47.2 0-108.2-19.5-156.1-45.5v128.5c53 22.8 106.8 32.4 156 32.4 118.6 0 200.3-51 200.3-153.6 0-170.2-218-139.7-218-203.9" ], + studiovinari: [ 512, 512, [], "f3f8", "M480.3 187.7l4.2 28v28l-25.1 44.1-39.8 78.4-56.1 67.5-79.1 37.8-17.7 24.5-7.7 12-9.6 4s17.3-63.6 19.4-63.6c2.1 0 20.3.7 20.3.7l66.7-38.6-92.5 26.1-55.9 36.8-22.8 28-6.6 1.4 20.8-73.6 6.9-5.5 20.7 12.9 88.3-45.2 56.8-51.5 14.8-68.4-125.4 23.3 15.2-18.2-173.4-53.3 81.9-10.5-166-122.9L133.5 108 32.2 0l252.9 126.6-31.5-38L378 163 234.7 64l18.7 38.4-49.6-18.1L158.3 0l194.6 122L310 66.2l108 96.4 12-8.9-21-16.4 4.2-37.8L451 89.1l29.2 24.7 11.5 4.2-7 6.2 8.5 12-13.1 7.4-10.3 20.2 10.5 23.9z" ], + stumbleupon: [ 512, 512, [], "f1a4", "M502.9 266v69.7c0 62.1-50.3 112.4-112.4 112.4-61.8 0-112.4-49.8-112.4-111.3v-70.2l34.3 16 51.1-15.2V338c0 14.7 12 26.5 26.7 26.5S417 352.7 417 338v-72h85.9zm-224.7-58.2l34.3 16 51.1-15.2V173c0-60.5-51.1-109-112.1-109-60.8 0-112.1 48.2-112.1 108.2v162.4c0 14.9-12 26.7-26.7 26.7S86 349.5 86 334.6V266H0v69.7C0 397.7 50.3 448 112.4 448c61.6 0 112.4-49.5 112.4-110.8V176.9c0-14.7 12-26.7 26.7-26.7s26.7 12 26.7 26.7v30.9z" ], + "stumbleupon-circle": [ 496, 512, [], "f1a3", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 177.5c-9.8 0-17.8 8-17.8 17.8v106.9c0 40.9-33.9 73.9-74.9 73.9-41.4 0-74.9-33.5-74.9-74.9v-46.5h57.3v45.8c0 10 8 17.8 17.8 17.8s17.8-7.9 17.8-17.8V200.1c0-40 34.2-72.1 74.7-72.1 40.7 0 74.7 32.3 74.7 72.6v23.7l-34.1 10.1-22.9-10.7v-20.6c.1-9.6-7.9-17.6-17.7-17.6zm167.6 123.6c0 41.4-33.5 74.9-74.9 74.9-41.2 0-74.9-33.2-74.9-74.2V263l22.9 10.7 34.1-10.1v47.1c0 9.8 8 17.6 17.8 17.6s17.8-7.9 17.8-17.6v-48h57.3c-.1 45.9-.1 46.4-.1 46.4z" ], + superpowers: [ 448, 512, [], "f2dd", "M448 32c-83.3 11-166.8 22-250 33-92 12.5-163.3 86.7-169 180-3.3 55.5 18 109.5 57.8 148.2L0 480c83.3-11 166.5-22 249.8-33 91.8-12.5 163.3-86.8 168.7-179.8 3.5-55.5-18-109.5-57.7-148.2L448 32zm-79.7 232.3c-4.2 79.5-74 139.2-152.8 134.5-79.5-4.7-140.7-71-136.3-151 4.5-79.2 74.3-139.3 153-134.5 79.3 4.7 140.5 71 136.1 151z" ], + supple: [ 640, 512, [], "f3f9", "M640 262.5c0 64.1-109 116.1-243.5 116.1-24.8 0-48.6-1.8-71.1-5 7.7.4 15.5.6 23.4.6 134.5 0 243.5-56.9 243.5-127.1 0-29.4-19.1-56.4-51.2-78 60 21.1 98.9 55.1 98.9 93.4zM47.7 227.9c-.1-70.2 108.8-127.3 243.3-127.6 7.9 0 15.6.2 23.3.5-22.5-3.2-46.3-4.9-71-4.9C108.8 96.3-.1 148.5 0 212.6c.1 38.3 39.1 72.3 99.3 93.3-32.3-21.5-51.5-48.6-51.6-78zm60.2 39.9s10.5 13.2 29.3 13.2c17.9 0 28.4-11.5 28.4-25.1 0-28-40.2-25.1-40.2-39.7 0-5.4 5.3-9.1 12.5-9.1 5.7 0 11.3 2.6 11.3 6.6v3.9h14.2v-7.9c0-12.1-15.4-16.8-25.4-16.8-16.5 0-28.5 10.2-28.5 24.1 0 26.6 40.2 25.4 40.2 39.9 0 6.6-5.8 10.1-12.3 10.1-11.9 0-20.7-10.1-20.7-10.1l-8.8 10.9zm120.8-73.6v54.4c0 11.3-7.1 17.8-17.8 17.8-10.7 0-17.8-6.5-17.8-17.7v-54.5h-15.8v55c0 18.9 13.4 31.9 33.7 31.9 20.1 0 33.4-13 33.4-31.9v-55h-15.7zm34.4 85.4h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.8-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5.1 14.7-14 14.7h-12.6zm57 43h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.7-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5 14.7-14 14.7h-12.6zm57.1 34.8c0 5.8 2.4 8.2 8.2 8.2h37.6c5.8 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-18.6c-1.7 0-2.6-1-2.6-2.6v-61.2c0-5.7-2.4-8.2-8.2-8.2H401v13.4h5.2c1.7 0 2.6 1 2.6 2.6v61.2zm63.4 0c0 5.8 2.4 8.2 8.2 8.2H519c5.7 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-19.7c-1.7 0-2.6-1-2.6-2.6v-20.3h27.7v-13.4H488v-22.4h19.2c1.7 0 2.6 1 2.6 2.6v5.2H524v-13c0-5.7-2.5-8.2-8.2-8.2h-51.6v13.4h7.8v63.9zm58.9-76v5.9h1.6v-5.9h2.7v-1.2h-7v1.2h2.7zm5.7-1.2v7.1h1.5v-5.7l2.3 5.7h1.3l2.3-5.7v5.7h1.5v-7.1h-2.3l-2.1 5.1-2.1-5.1h-2.4z" ], + teamspeak: [ 511, 512, [], "f4f9", "M.82 237.82c2.36-15.52 10.69-27.04 24.88-34.03 3.5-1.85 5.65-3.5 6.37-7.81 6.17-33.41 19.53-63.94 39.37-91.59 2.36-3.19 4.01-5.35 1.03-9.35-3.7-5.35-1.03-10.18 2.98-14.49 28.06-31.87 61.88-55.1 101.98-67.44 95.81-29.4 180.1-9.35 252.37 60.45 6.68 6.37 15.52 12.85 6.99 24.36-1.34 1.85 1.03 3.5 2.16 5.04 20.66 28.06 34.23 59.42 40.4 93.65.82 3.7 2.98 5.04 5.86 6.37 17.37 8.84 25.7 23.34 26.01 42.25 0 17.17 1.85 34.54-1.03 51.71-4.01 24.67-29.19 41.74-53.25 36.7-7.2-1.64-9.35-7.2-9.35-14.19 0-28.06.82-56.44 0-84.6-1.85-75.76-36.18-132.81-102.28-169.41C234.28 4.98 92.11 72.42 67.54 196.91c-6.06 30.42-1.74 48.27-3.7 125.82-.31 7.2-4.32 11.2-12.03 11.51C20.97 335.58 0 316.05 0 285.21v-20.87m221.74 106.81c11.82-4.32 20.05-11.82 22.51-24.36 2.36-12.34-12.03-30.02-32.38-48.73-20.87-19.22-48.22-39.06-63.43-46.57-21.69-12.03-41.74-1.85-46.26 22.72-5.04 26.21 0 51.4 14.49 73.91 10.18 15.52 25.39 22.72 43.38 24.05 11.62.62 52.54 2.16 61.69-1.02m129.83 5.55c36.5 2.81 59.33-28.55 58.39-60.45-2.14-45.17-66.17-16.48-87.79-8.02-73.16 28.14-45.05 54.92-22.2 60.75m149.26-1.33c-2.98-2.36-7.2-1.03-8.33 2.36-8.02 25.39-44.72 112.46-172.08 121.51-149.67 10.49 80.29 43.59 145.36-6.37 22.72-17.37 47.6-35.05 46.57-85.43-.32-10.07-4.84-26.72-11.52-32.07" ], + telegram: [ 496, 512, [], "f2c6", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm121.8 169.9l-40.7 191.8c-3 13.6-11.1 16.9-22.4 10.5l-62-45.7-29.9 28.8c-3.3 3.3-6.1 6.1-12.5 6.1l4.4-63.1 114.9-103.8c5-4.4-1.1-6.9-7.7-2.5l-142 89.4-61.2-19.1c-13.3-4.2-13.6-13.3 2.8-19.7l239.1-92.2c11.1-4 20.8 2.7 17.2 19.5z" ], + "telegram-plane": [ 448, 512, [], "f3fe", "M446.7 98.6l-67.6 318.8c-5.1 22.5-18.4 28.1-37.3 17.5l-103-75.9-49.7 47.8c-5.5 5.5-10.1 10.1-20.7 10.1l7.4-104.9 190.9-172.5c8.3-7.4-1.8-11.5-12.9-4.1L117.8 284 16.2 252.2c-22.1-6.9-22.5-22.1 4.6-32.7L418.2 66.4c18.4-6.9 34.5 4.1 28.5 32.2z" ], + "tencent-weibo": [ 384, 512, [], "f1d5", "M72.3 495.8c1.4 19.9-27.6 22.2-29.7 2.9C31 368.8 73.7 259.2 144 185.5c-15.6-34 9.2-77.1 50.6-77.1 30.3 0 55.1 24.6 55.1 55.1 0 44-49.5 70.8-86.9 45.1-65.7 71.3-101.4 169.8-90.5 287.2zM192 .1C66.1.1-12.3 134.3 43.7 242.4 52.4 259.8 79 246.9 70 229 23.7 136.4 91 29.8 192 29.8c75.4 0 136.9 61.4 136.9 136.9 0 90.8-86.9 153.9-167.7 133.1-19.1-4.1-25.6 24.4-6.6 29.1 110.7 23.2 204-60 204-162.3C358.6 74.7 284 .1 192 .1z" ], + themeco: [ 441, 512, [], "f5c6", "M199.74 12.29c9.74-5.64 25.59-5.73 35.39-.21l188.13 105.95c9.81 5.52 17.76 19.14 17.76 30.38v213.87c0 11.26-7.93 24.89-17.71 30.46L235.09 499.88c-9.78 5.57-25.58 5.48-35.29-.21L17.58 392.95C7.87 387.26 0 373.52 0 362.27V148.41c0-11.26 7.9-24.96 17.63-30.59L199.74 12.29zM123.54 209c-15.69 0-31.39.14-47.08.14v99.87h18.83v-29.39h28.25c48.94 0 48.79-70.62 0-70.62zm137.96 98.73l-30.25-34.1c36.4-7.39 34.26-64.21-10.7-64.49-15.84 0-31.67-.14-47.51-.14v100.01h18.83v-33.38H210l29.1 33.38h22.4v-1.28zm-40.94-81.04c22.98 0 22.9 31.96 0 31.96h-28.68v-31.96h28.68zm-94.07-1.57c20.85 0 20.78 38.24 0 38.24H94.68v-38.23l31.81-.01zm189.65-17.97c-67.4 0-69.86 104.15 0 104.15 68.39-.01 68.33-104.15 0-104.15zm0 17.12c43.43 0 44.1 69.76 0 69.76-44.12 0-43.74-69.76 0-69.76z" ], + themeisle: [ 512, 512, [], "f2b2", "M208 88.286c0-10 6.286-21.714 17.715-21.714 11.142 0 17.714 11.714 17.714 21.714 0 10.285-6.572 21.714-17.714 21.714C214.286 110 208 98.571 208 88.286zm304 160c0 36.001-11.429 102.286-36.286 129.714-22.858 24.858-87.428 61.143-120.857 70.572l-1.143.286v32.571c0 16.286-12.572 30.571-29.143 30.571-10 0-19.429-5.714-24.572-14.286-5.427 8.572-14.856 14.286-24.856 14.286-10 0-19.429-5.714-24.858-14.286-5.142 8.572-14.571 14.286-24.57 14.286-10.286 0-19.429-5.714-24.858-14.286-5.143 8.572-14.571 14.286-24.571 14.286-18.857 0-29.429-15.714-29.429-32.857-16.286 12.285-35.715 19.428-56.571 19.428-22 0-43.429-8.285-60.286-22.857 10.285-.286 20.571-2.286 30.285-5.714-20.857-5.714-39.428-18.857-52-36.286 21.37 4.645 46.209 1.673 67.143-11.143-22-22-56.571-58.857-68.572-87.428C1.143 321.714 0 303.714 0 289.429c0-49.714 20.286-160 86.286-160 10.571 0 18.857 4.858 23.143 14.857a158.792 158.792 0 0 1 12-15.428c2-2.572 5.714-5.429 7.143-8.286 7.999-12.571 11.714-21.142 21.714-34C182.571 45.428 232 17.143 285.143 17.143c6 0 12 .285 17.714 1.143C313.714 6.571 328.857 0 344.572 0c14.571 0 29.714 6 40 16.286.857.858 1.428 2.286 1.428 3.428 0 3.714-10.285 13.429-12.857 16.286 4.286 1.429 15.714 6.858 15.714 12 0 2.857-2.857 5.143-4.571 7.143 31.429 27.714 49.429 67.143 56.286 108 4.286-5.143 10.285-8.572 17.143-8.572 10.571 0 20.857 7.144 28.571 14.001C507.143 187.143 512 221.714 512 248.286zM188 89.428c0 18.286 12.571 37.143 32.286 37.143 19.714 0 32.285-18.857 32.285-37.143 0-18-12.571-36.857-32.285-36.857-19.715 0-32.286 18.858-32.286 36.857zM237.714 194c0-19.714 3.714-39.143 8.571-58.286-52.039 79.534-13.531 184.571 68.858 184.571 21.428 0 42.571-7.714 60-20 2-7.429 3.714-14.857 3.714-22.572 0-14.286-6.286-21.428-20.572-21.428-4.571 0-9.143.857-13.429 1.714-63.343 12.668-107.142 3.669-107.142-63.999zm-41.142 254.858c0-11.143-8.858-20.857-20.286-20.857-11.429 0-20 9.715-20 20.857v32.571c0 11.143 8.571 21.142 20 21.142 11.428 0 20.286-9.715 20.286-21.142v-32.571zm49.143 0c0-11.143-8.572-20.857-20-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20-10 20-21.142v-32.571zm49.713 0c0-11.143-8.857-20.857-20.285-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20.285-9.715 20.285-21.142v-32.571zm49.715 0c0-11.143-8.857-20.857-20.286-20.857-11.428 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.858 21.142 20.286 21.142 11.429 0 20.286-10 20.286-21.142v-32.571zM421.714 286c-30.857 59.142-90.285 102.572-158.571 102.572-96.571 0-160.571-84.572-160.571-176.572 0-16.857 2-33.429 6-49.714-20 33.715-29.714 72.572-29.714 111.429 0 60.286 24.857 121.715 71.429 160.857 5.143-9.714 14.857-16.286 26-16.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.571-14.286 24.858-14.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.857-14.286 24.858-14.286 10 0 19.428 5.714 24.857 14.286 5.143-8.571 14.571-14.286 24.572-14.286 10.857 0 20.857 6.572 25.714 16 43.427-36.286 68.569-92 71.426-148.286zm10.572-99.714c0-53.714-34.571-105.714-92.572-105.714-30.285 0-58.571 15.143-78.857 36.857C240.862 183.812 233.41 254 302.286 254c28.805 0 97.357-28.538 84.286 36.857 28.857-26 45.714-65.714 45.714-104.571z" ], + "trade-federation": [ 496, 512, [], "f513", "M202.45 108.42v81.61H38.94l48.22 61.91h114.73v196.75h64.61V252.96h83.27v-62.69h-83.18V171.1h145.62v-62.68H202.45zm4.86 6h197.77v50.68H259.44v30.93h83.18v50.93h-83.26v195.73h-52.73V245.94H89.86l-39.95-49.91h157.4v-81.61zM247.99 8.8C111.03 8.8 0 119.83 0 256.8s111.03 248 247.99 248S496 393.76 496 256.8 384.96 8.8 247.99 8.8zm.02 13.24c129.66 0 234.76 105.12 234.76 234.78s-105.1 234.76-234.76 234.76S13.23 386.47 13.23 256.81 118.35 22.04 248.01 22.04zm0 7.89c-125.3 0-226.89 101.57-226.89 226.87s101.59 226.89 226.89 226.89S474.88 382.1 474.88 256.8 373.31 29.93 248.01 29.93zm-.02 13.3c117.95 0 213.56 95.62 213.56 213.56s-95.62 213.56-213.56 213.56S34.43 374.75 34.43 256.8 130.04 43.23 247.99 43.23zm-73.32 104.8l15.66 18.05-22.16-9.45-12.33 20.47 2.15-23.99-23.28-5.4 23.48-5.37-2.06-23.81 12.37 20.67 22.01-9.32-15.84 18.15zm-47.14-46.54l8.01 12.4 12.69-5.86-9.32 11.45 9.5 10.25-13.77-5.32-6.82 12.2.81-14.74-13.71-2.71 14.27-3.78-1.66-13.89zm250.77 75.59l11.99 19.56 20.88-9.11-14.9 17.45 15.11 17.04-21.2-8.78-11.54 19.64 1.8-22.87-22.24-4.9 22.31-5.36-2.21-22.67zm-107.05 98.45l13.86-3.22-1.28-14.17 7.35 12.18 13.08-5.59-9.31 10.75 9.36 10.71-13.1-5.54-7.29 12.21 1.22-14.17-13.89-3.16zm-125.43 6.5l23.73-3.87-1.73-24.53 11.01 21.38 22.79-9.22-16.93 17.08 15.81 18.83-21.47-10.82-13.02 20.86 3.66-23.77-23.85-5.94zm63.44-165.66v81.61H54.16l36.72 46.01h117.7v196.75h48.82V245.01h83.27v-47.03H257.4v-34.83h145.73v-46.78H209.26zm10.86 11.2h171.8v24.36H246.88v56.23h82.93v23.94h-82.93v197.42h-26.76V232.1H96.31l-20.09-23.94h143.9v-80.59z" ], + trello: [ 448, 512, [], "f181", "M392 32H56C25.1 32 0 57.1 0 88v336c0 30.9 25.1 56 56 56h336c30.9 0 56-25.1 56-56V88c0-30.9-25.1-56-56-56zM194.9 371.4c0 14.8-12 26.9-26.9 26.9H85.1c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9H168c14.8 0 26.9 12 26.9 26.9v254.3zm194.9-112c0 14.8-12 26.9-26.9 26.9H280c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9h82.9c14.8 0 26.9 12 26.9 26.9v142.3z" ], + tripadvisor: [ 576, 512, [], "f262", "M166.4 280.521c0 13.236-10.73 23.966-23.966 23.966s-23.966-10.73-23.966-23.966 10.73-23.966 23.966-23.966 23.966 10.729 23.966 23.966zm264.962-23.956c-13.23 0-23.956 10.725-23.956 23.956 0 13.23 10.725 23.956 23.956 23.956 13.23 0 23.956-10.725 23.956-23.956-.001-13.231-10.726-23.956-23.956-23.956zm89.388 139.49c-62.667 49.104-153.276 38.109-202.379-24.559l-30.979 46.325-30.683-45.939c-48.277 60.39-135.622 71.891-197.885 26.055-64.058-47.158-77.759-137.316-30.601-201.374A186.762 186.762 0 0 0 0 139.416l90.286-.05a358.48 358.48 0 0 1 197.065-54.03 350.382 350.382 0 0 1 192.181 53.349l96.218.074a185.713 185.713 0 0 0-28.352 57.649c46.793 62.747 34.964 151.37-26.648 199.647zM259.366 281.761c-.007-63.557-51.535-115.075-115.092-115.068C80.717 166.7 29.2 218.228 29.206 281.785c.007 63.557 51.535 115.075 115.092 115.068 63.513-.075 114.984-51.539 115.068-115.052v-.04zm28.591-10.455c5.433-73.44 65.51-130.884 139.12-133.022a339.146 339.146 0 0 0-139.727-27.812 356.31 356.31 0 0 0-140.164 27.253c74.344 1.582 135.299 59.424 140.771 133.581zm251.706-28.767c-21.992-59.634-88.162-90.148-147.795-68.157-59.634 21.992-90.148 88.162-68.157 147.795v.032c22.038 59.607 88.198 90.091 147.827 68.113 59.615-22.004 90.113-88.162 68.125-147.783zm-326.039 37.975v.115c-.057 39.328-31.986 71.163-71.314 71.106-39.328-.057-71.163-31.986-71.106-71.314.057-39.328 31.986-71.163 71.314-71.106 39.259.116 71.042 31.94 71.106 71.199zm-24.512 0v-.084c-.051-25.784-20.994-46.645-46.778-46.594-25.784.051-46.645 20.994-46.594 46.777.051 25.784 20.994 46.645 46.777 46.594 25.726-.113 46.537-20.968 46.595-46.693zm313.423 0v.048c-.02 39.328-31.918 71.194-71.247 71.173s-71.194-31.918-71.173-71.247c.02-39.328 31.918-71.194 71.247-71.173 39.29.066 71.121 31.909 71.173 71.199zm-24.504-.008c-.009-25.784-20.918-46.679-46.702-46.67-25.784.009-46.679 20.918-46.67 46.702.009 25.784 20.918 46.678 46.702 46.67 25.765-.046 46.636-20.928 46.67-46.693v-.009z" ], + tumblr: [ 320, 512, [], "f173", "M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z" ], + "tumblr-square": [ 448, 512, [], "f174", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-82.3 364.2c-8.5 9.1-31.2 19.8-60.9 19.8-75.5 0-91.9-55.5-91.9-87.9v-90h-29.7c-3.4 0-6.2-2.8-6.2-6.2v-42.5c0-4.5 2.8-8.5 7.1-10 38.8-13.7 50.9-47.5 52.7-73.2.5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2h-52.1V321c0 21.4 14.8 33.5 42.5 22.4 3-1.2 5.6-2 8-1.4 2.2.5 3.6 2.1 4.6 4.9l13.8 40.2c1 3.2 2 6.7-.3 9.1z" ], + twitch: [ 448, 512, [], "f1e8", "M40.1 32L10 108.9v314.3h107V480h60.2l56.8-56.8h87l117-117V32H40.1zm357.8 254.1L331 353H224l-56.8 56.8V353H76.9V72.1h321v214zM331 149v116.9h-40.1V149H331zm-107 0v116.9h-40.1V149H224z" ], + twitter: [ 512, 512, [], "f099", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z" ], + "twitter-square": [ 448, 512, [], "f081", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z" ], + typo3: [ 433, 512, [], "f42b", "M330.8 341c-7 2.3-11.6 2.3-18.5 2.3-57.2 0-140.6-198.5-140.6-264.9 0-24.7 5.4-32.4 13.9-39.4-69.5 8.5-149.3 34-176.3 66.4-5.4 7.7-9.3 20.8-9.3 37.1C0 246 106.8 480 184.1 480c36.3 0 97.3-59.5 146.7-139M294.5 32c71.8 0 138.8 11.6 138.8 52.5 0 82.6-52.5 182.3-78.8 182.3-47.9 0-101.7-132.1-101.7-198.5 0-30.9 11.6-36.3 41.7-36.3" ], + uber: [ 448, 512, [], "f402", "M414.1 32H33.9C15.2 32 0 47.2 0 65.9V446c0 18.8 15.2 34 33.9 34H414c18.7 0 33.9-15.2 33.9-33.9V65.9C448 47.2 432.8 32 414.1 32zM237.6 391.1C163 398.6 96.4 344.2 88.9 269.6h94.4V290c0 3.7 3 6.8 6.8 6.8H258c3.7 0 6.8-3 6.8-6.8v-67.9c0-3.7-3-6.8-6.8-6.8h-67.9c-3.7 0-6.8 3-6.8 6.8v20.4H88.9c7-69.4 65.4-122.2 135.1-122.2 69.7 0 128.1 52.8 135.1 122.2 7.5 74.5-46.9 141.1-121.5 148.6z" ], + uikit: [ 448, 512, [], "f403", "M443.9 128v256L218 512 0 384V169.7l87.6 45.1v117l133.5 75.5 135.8-75.5v-151l-101.1-57.6 87.6-53.1L443.9 128zM308.6 49.1L223.8 0l-88.6 54.8 86 47.3 87.4-53z" ], + uniregistry: [ 384, 512, [], "f404", "M281.1 220.1H384v-14.8H281.1v14.8zm0-37.1H384v-12.4H281.1V183zm0 74.2H384v-17.3H281.1v17.3zm-157.7 86.7H8.5c2.6 8.5 5.8 16.8 9.6 24.8h138.3c-12.9-5.7-24.1-14.2-33-24.8m145.7-12.4h109.7c1.8-7.3 3.1-14.7 3.9-22.3H278.3c-2.1 7.9-5.2 15.4-9.2 22.3m-41.5 37.1H367c3.7-8 5.8-16.2 8.5-24.8h-115c-8.8 10.7-20.1 19.2-32.9 24.8M384 32H281.1v2.5H384V32zM192 480c39.5 0 76.2-11.8 106.8-32.2H85.3C115.8 468.2 152.5 480 192 480m89.1-334.2H384V136H281.1v9.8zm0-37.1H384v-7.4H281.1v7.4zm0-37.1H384v-4.9H281.1v4.9zm-178.2 99H0V183h102.9v-12.4zM38.8 405.7h305.3c6.7-8.5 12.6-17.6 17.8-27.2H23c5.2 9.6 9.2 18.7 15.8 27.2m64.1-118.8v-12.4H0v12.4c0 2.5 0 5 .1 7.4h103.1c-.2-2.4-.3-4.9-.3-7.4m178.2 0c0 2.5-.1 5-.4 7.4h103.1c.1-2.5.2-4.9.2-7.4v-12.4H281.1v12.4zm-203 156h227.7c11.8-8.7 22.7-18.6 32.2-29.7H44.9c9.6 11 21.4 21 33.2 29.7m24.8-376.2H0v4.9h102.9v-4.9zm0-34.7H0v2.5h102.9V32zm0 173.3H0v14.8h102.9v-14.8zm0 34.6H0v17.3h102.9v-17.3zm0-103.9H0v9.9h102.9V136zm0-34.7H0v7.4h102.9v-7.4zm2.8 207.9H1.3c.9 7.6 2.2 15 3.9 22.3h109.7c-4-6.9-7.2-14.4-9.2-22.3" ], + untappd: [ 640, 512, [], "f405", "M401.3 49.9c-79.8 160.1-84.6 152.5-87.9 173.2l-5.2 32.8c-1.9 12-6.6 23.5-13.7 33.4L145.6 497.1c-7.6 10.6-20.4 16.2-33.4 14.6-40.3-5-77.8-32.2-95.3-68.5-5.7-11.8-4.5-25.8 3.1-36.4l148.9-207.9c7.1-9.9 16.4-18 27.2-23.7l29.3-15.5c18.5-9.8 9.7-11.9 135.6-138.9 1-4.8 1-7.3 3.6-8 3-.7 6.6-1 6.3-4.6l-.4-4.6c-.2-1.9 1.3-3.6 3.2-3.6 4.5-.1 13.2 1.2 25.6 10 12.3 8.9 16.4 16.8 17.7 21.1.6 1.8-.6 3.7-2.4 4.2l-4.5 1.1c-3.4.9-2.5 4.4-2.3 7.4.1 2.8-2.3 3.6-6.5 6.1zM230.1 36.4c3.4.9 2.5 4.4 2.3 7.4-.2 2.7 2.1 3.5 6.4 6 7.9 15.9 15.3 30.5 22.2 44 .7 1.3 2.3 1.5 3.3.5 11.2-12 24.6-26.2 40.5-42.6 1.3-1.4 1.4-3.5.1-4.9-8-8.2-16.5-16.9-25.6-26.1-1-4.7-1-7.3-3.6-8-3-.8-6.6-1-6.3-4.6.3-3.3 1.4-8.1-2.8-8.2-4.5-.1-13.2 1.1-25.6 10-12.3 8.9-16.4 16.8-17.7 21.1-1.4 4.2 3.6 4.6 6.8 5.4zM620 406.7L471.2 198.8c-13.2-18.5-26.6-23.4-56.4-39.1-11.2-5.9-14.2-10.9-30.5-28.9-1-1.1-2.9-.9-3.6.5-46.3 88.8-47.1 82.8-49 94.8-1.7 10.7-1.3 20 .3 29.8 1.9 12 6.6 23.5 13.7 33.4l148.9 207.9c7.6 10.6 20.2 16.2 33.1 14.7 40.3-4.9 78-32 95.7-68.6 5.4-11.9 4.3-25.9-3.4-36.6z" ], + usb: [ 640, 512, [], "f287", "M641.5 256c0 3.1-1.7 6.1-4.5 7.5L547.9 317c-1.4.8-2.8 1.4-4.5 1.4-1.4 0-3.1-.3-4.5-1.1-2.8-1.7-4.5-4.5-4.5-7.8v-35.6H295.7c25.3 39.6 40.5 106.9 69.6 106.9H392V354c0-5 3.9-8.9 8.9-8.9H490c5 0 8.9 3.9 8.9 8.9v89.1c0 5-3.9 8.9-8.9 8.9h-89.1c-5 0-8.9-3.9-8.9-8.9v-26.7h-26.7c-75.4 0-81.1-142.5-124.7-142.5H140.3c-8.1 30.6-35.9 53.5-69 53.5C32 327.3 0 295.3 0 256s32-71.3 71.3-71.3c33.1 0 61 22.8 69 53.5 39.1 0 43.9 9.5 74.6-60.4C255 88.7 273 95.7 323.8 95.7c7.5-20.9 27-35.6 50.4-35.6 29.5 0 53.5 23.9 53.5 53.5s-23.9 53.5-53.5 53.5c-23.4 0-42.9-14.8-50.4-35.6H294c-29.1 0-44.3 67.4-69.6 106.9h310.1v-35.6c0-3.3 1.7-6.1 4.5-7.8 2.8-1.7 6.4-1.4 8.9.3l89.1 53.5c2.8 1.1 4.5 4.1 4.5 7.2z" ], + ussunnah: [ 512, 512, [], "f407", "M156.8 285.1l5.7 14.4h-8.2c-1.3-3.2-3.1-7.7-3.8-9.5-2.5-6.3-1.1-8.4 0-10 1.9-2.7 3.2-4.4 3.6-5.2 0 2.2.8 5.7 2.7 10.3zm297.3 18.8c-2.1 13.8-5.7 27.1-10.5 39.7l43 23.4-44.8-18.8c-5.3 13.2-12 25.6-19.9 37.2l34.2 30.2-36.8-26.4c-8.4 11.8-18 22.6-28.7 32.3l24.9 34.7-28.1-31.8c-11 9.6-23.1 18-36.1 25.1l15.7 37.2-19.3-35.3c-13.1 6.8-27 12.1-41.6 15.9l6.7 38.4-10.5-37.4c-14.3 3.4-29.2 5.3-44.5 5.4L256 512l-1.9-38.4c-15.3-.1-30.2-2-44.5-5.3L199 505.6l6.7-38.2c-14.6-3.7-28.6-9.1-41.7-15.8l-19.2 35.1 15.6-37c-13-7-25.2-15.4-36.2-25.1l-27.9 31.6 24.7-34.4c-10.7-9.7-20.4-20.5-28.8-32.3l-36.5 26.2 33.9-29.9c-7.9-11.6-14.6-24.1-20-37.3l-44.4 18.7L67.8 344c-4.8-12.7-8.4-26.1-10.5-39.9l-51 9 50.3-14.2c-1.1-8.5-1.7-17.1-1.7-25.9 0-4.7.2-9.4.5-14.1L0 256l56-2.8c1.3-13.1 3.8-25.8 7.5-38.1L6.4 199l58.9 10.4c4-12 9.1-23.5 15.2-34.4l-55.1-30 58.3 24.6C90 159 97.2 149.2 105.3 140L55.8 96.4l53.9 38.7c8.1-8.6 17-16.5 26.6-23.6l-40-55.6 45.6 51.6c9.5-6.6 19.7-12.3 30.3-17.2l-27.3-64.9 33.8 62.1c10.5-4.4 21.4-7.9 32.7-10.4L199 6.4l19.5 69.2c11-2.1 22.3-3.2 33.8-3.4L256 0l3.6 72.2c11.5.2 22.8 1.4 33.8 3.5L313 6.4l-12.4 70.7c11.3 2.6 22.2 6.1 32.6 10.5l33.9-62.2-27.4 65.1c10.6 4.9 20.7 10.7 30.2 17.2l45.8-51.8-40.1 55.9c9.5 7.1 18.4 15 26.5 23.6l54.2-38.9-49.7 43.9c8 9.1 15.2 18.9 21.5 29.4l58.7-24.7-55.5 30.2c6.1 10.9 11.1 22.3 15.1 34.3l59.3-10.4-57.5 16.2c3.7 12.2 6.2 24.9 7.5 37.9L512 256l-56 2.8c.3 4.6.5 9.3.5 14.1 0 8.7-.6 17.3-1.6 25.8l50.7 14.3-51.5-9.1zm-21.8-31c0-97.5-79-176.5-176.5-176.5s-176.5 79-176.5 176.5 79 176.5 176.5 176.5 176.5-79 176.5-176.5zm-24 0c0 84.3-68.3 152.6-152.6 152.6s-152.6-68.3-152.6-152.6 68.3-152.6 152.6-152.6 152.6 68.3 152.6 152.6zM195 241c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-40.7-19c0 2.1 1.3 3.8 3.6 5.1 3.5 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-19 0c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.4 6.8-9.6 10.9-9.6 12.6zm204.9 87.9c-8.4-3-8.7-6.8-8.7-15.6V182c-8.2 12.5-14.2 18.6-18 18.6 6.3 14.4 9.5 23.9 9.5 28.3v64.3c0 2.2-2.2 6.5-4.7 6.5h-18c-2.8-7.5-10.2-26.9-15.3-40.3-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3 2.6 6.7 6.4 16.5 7.9 20.2h-9.2c-3.9-10.4-9.6-25.4-11.8-31.1-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3.8 2 2.8 7.3 4.3 10.9H256c-1.5-4.1-5.6-14.6-8.4-22-2 2.5-7.2 9.2-10.7 13.7 2.5 1.6 4.3 3.6 5.2 6.3.2.6.5 1.4.6 1.7H225c-4.6-13.9-11.4-27.7-11.4-34.1 0-2.2.3-5.1 1.1-8.2-8.8 10.8-14 15.9-14 25 0 7.5 10.4 28.3 10.4 33.3 0 1.7-.5 3.3-1.4 4.9-9.6-12.7-15.5-20.7-18.8-20.7h-12l-11.2-28c-3.8-9.6-5.7-16-5.7-18.8 0-3.8.5-7.7 1.7-12.2-1 1.3-3.7 4.7-5.5 7.1-.8-2.1-3.1-7.7-4.6-11.5-2.1 2.5-7.5 9.1-11.2 13.6.9 2.3 3.3 8.1 4.9 12.2-2.5 3.3-9.1 11.8-13.6 17.7-4 5.3-5.8 13.3-2.7 21.8 2.5 6.7 2 7.9-1.7 14.1H191c5.5 0 14.3 14 15.5 22 13.2-16 15.4-19.6 16.8-21.6h107c3.9 0 7.2-1.9 9.9-5.8zm20.1-26.6V181.7c-9 12.5-15.9 18.6-20.7 18.6 7.1 14.4 10.7 23.9 10.7 28.3v66.3c0 17.5 8.6 20.4 24 20.4 8.1 0 12.5-.8 13.7-2.7-4.3-1.6-7.6-2.5-9.9-3.3-8.1-3.2-17.8-7.4-17.8-26z" ], + vaadin: [ 448, 512, [], "f408", "M224.5 140.7c1.5-17.6 4.9-52.7 49.8-52.7h98.6c20.7 0 32.1-7.8 32.1-21.6V54.1c0-12.2 9.3-22.1 21.5-22.1S448 41.9 448 54.1v36.5c0 42.9-21.5 62-66.8 62H280.7c-30.1 0-33 14.7-33 27.1 0 1.3-.1 2.5-.2 3.7-.7 12.3-10.9 22.2-23.4 22.2s-22.7-9.8-23.4-22.2c-.1-1.2-.2-2.4-.2-3.7 0-12.3-3-27.1-33-27.1H66.8c-45.3 0-66.8-19.1-66.8-62V54.1C0 41.9 9.4 32 21.6 32s21.5 9.9 21.5 22.1v12.3C43.1 80.2 54.5 88 75.2 88h98.6c44.8 0 48.3 35.1 49.8 52.7h.9zM224 456c11.5 0 21.4-7 25.7-16.3 1.1-1.8 97.1-169.6 98.2-171.4 11.9-19.6-3.2-44.3-27.2-44.3-13.9 0-23.3 6.4-29.8 20.3L224 362l-66.9-117.7c-6.4-13.9-15.9-20.3-29.8-20.3-24 0-39.1 24.6-27.2 44.3 1.1 1.9 97.1 169.6 98.2 171.4 4.3 9.3 14.2 16.3 25.7 16.3z" ], + viacoin: [ 384, 512, [], "f237", "M384 32h-64l-80.7 192h-94.5L64 32H0l48 112H0v48h68.5l13.8 32H0v48h102.8L192 480l89.2-208H384v-48h-82.3l13.8-32H384v-48h-48l48-112zM192 336l-27-64h54l-27 64z" ], + viadeo: [ 448, 512, [], "f2a9", "M276.2 150.5v.7C258.3 98.6 233.6 47.8 205.4 0c43.3 29.2 67 100 70.8 150.5zm32.7 121.7c7.6 18.2 11 37.5 11 57 0 77.7-57.8 141-137.8 139.4l3.8-.3c74.2-46.7 109.3-118.6 109.3-205.1 0-38.1-6.5-75.9-18.9-112 1 11.7 1 23.7 1 35.4 0 91.8-18.1 241.6-116.6 280C95 455.2 49.4 398 49.4 329.2c0-75.6 57.4-142.3 135.4-142.3 16.8 0 33.7 3.1 49.1 9.6 1.7-15.1 6.5-29.9 13.4-43.3-19.9-7.2-41.2-10.7-62.5-10.7-161.5 0-238.7 195.9-129.9 313.7 67.9 74.6 192 73.9 259.8 0 56.6-61.3 60.9-142.4 36.4-201-12.7 8-27.1 13.9-42.2 17zM418.1 11.7c-31 66.5-81.3 47.2-115.8 80.1-12.4 12-20.6 34-20.6 50.5 0 14.1 4.5 27.1 12 38.8 47.4-11 98.3-46 118.2-90.7-.7 5.5-4.8 14.4-7.2 19.2-20.3 35.7-64.6 65.6-99.7 84.9 14.8 14.4 33.7 25.8 55 25.8 79 0 110.1-134.6 58.1-208.6z" ], + "viadeo-square": [ 448, 512, [], "f2aa", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM280.7 381.2c-42.4 46.2-120 46.6-162.4 0-68-73.6-19.8-196.1 81.2-196.1 13.3 0 26.6 2.1 39.1 6.7-4.3 8.4-7.3 17.6-8.4 27.1-9.7-4.1-20.2-6-30.7-6-48.8 0-84.6 41.7-84.6 88.9 0 43 28.5 78.7 69.5 85.9 61.5-24 72.9-117.6 72.9-175 0-7.3 0-14.8-.6-22.1-11.2-32.9-26.6-64.6-44.2-94.5 27.1 18.3 41.9 62.5 44.2 94.1v.4c7.7 22.5 11.8 46.2 11.8 70 0 54.1-21.9 99-68.3 128.2l-2.4.2c50 1 86.2-38.6 86.2-87.2 0-12.2-2.1-24.3-6.9-35.7 9.5-1.9 18.5-5.6 26.4-10.5 15.3 36.6 12.6 87.3-22.8 125.6zM309 233.7c-13.3 0-25.1-7.1-34.4-16.1 21.9-12 49.6-30.7 62.3-53 1.5-3 4.1-8.6 4.5-12-12.5 27.9-44.2 49.8-73.9 56.7-4.7-7.3-7.5-15.5-7.5-24.3 0-10.3 5.2-24.1 12.9-31.6 21.6-20.5 53-8.5 72.4-50 32.5 46.2 13.1 130.3-36.3 130.3z" ], + viber: [ 512, 512, [], "f409", "M444 49.9C431.3 38.2 379.9.9 265.3.4c0 0-135.1-8.1-200.9 52.3C27.8 89.3 14.9 143 13.5 209.5c-1.4 66.5-3.1 191.1 117 224.9h.1l-.1 51.6s-.8 20.9 13 25.1c16.6 5.2 26.4-10.7 42.3-27.8 8.7-9.4 20.7-23.2 29.8-33.7 82.2 6.9 145.3-8.9 152.5-11.2 16.6-5.4 110.5-17.4 125.7-142 15.8-128.6-7.6-209.8-49.8-246.5zM457.9 287c-12.9 104-89 110.6-103 115.1-6 1.9-61.5 15.7-131.2 11.2 0 0-52 62.7-68.2 79-5.3 5.3-11.1 4.8-11-5.7 0-6.9.4-85.7.4-85.7-.1 0-.1 0 0 0-101.8-28.2-95.8-134.3-94.7-189.8 1.1-55.5 11.6-101 42.6-131.6 55.7-50.5 170.4-43 170.4-43 96.9.4 143.3 29.6 154.1 39.4 35.7 30.6 53.9 103.8 40.6 211.1zm-139-80.8c.4 8.6-12.5 9.2-12.9.6-1.1-22-11.4-32.7-32.6-33.9-8.6-.5-7.8-13.4.7-12.9 27.9 1.5 43.4 17.5 44.8 46.2zm20.3 11.3c1-42.4-25.5-75.6-75.8-79.3-8.5-.6-7.6-13.5.9-12.9 58 4.2 88.9 44.1 87.8 92.5-.1 8.6-13.1 8.2-12.9-.3zm47 13.4c.1 8.6-12.9 8.7-12.9.1-.6-81.5-54.9-125.9-120.8-126.4-8.5-.1-8.5-12.9 0-12.9 73.7.5 133 51.4 133.7 139.2zM374.9 329v.2c-10.8 19-31 40-51.8 33.3l-.2-.3c-21.1-5.9-70.8-31.5-102.2-56.5-16.2-12.8-31-27.9-42.4-42.4-10.3-12.9-20.7-28.2-30.8-46.6-21.3-38.5-26-55.7-26-55.7-6.7-20.8 14.2-41 33.3-51.8h.2c9.2-4.8 18-3.2 23.9 3.9 0 0 12.4 14.8 17.7 22.1 5 6.8 11.7 17.7 15.2 23.8 6.1 10.9 2.3 22-3.7 26.6l-12 9.6c-6.1 4.9-5.3 14-5.3 14s17.8 67.3 84.3 84.3c0 0 9.1.8 14-5.3l9.6-12c4.6-6 15.7-9.8 26.6-3.7 14.7 8.3 33.4 21.2 45.8 32.9 7 5.7 8.6 14.4 3.8 23.6z" ], + vimeo: [ 448, 512, [], "f40a", "M403.2 32H44.8C20.1 32 0 52.1 0 76.8v358.4C0 459.9 20.1 480 44.8 480h358.4c24.7 0 44.8-20.1 44.8-44.8V76.8c0-24.7-20.1-44.8-44.8-44.8zM377 180.8c-1.4 31.5-23.4 74.7-66 129.4-44 57.2-81.3 85.8-111.7 85.8-18.9 0-34.8-17.4-47.9-52.3-25.5-93.3-36.4-148-57.4-148-2.4 0-10.9 5.1-25.4 15.2l-15.2-19.6c37.3-32.8 72.9-69.2 95.2-71.2 25.2-2.4 40.7 14.8 46.5 51.7 20.7 131.2 29.9 151 67.6 91.6 13.5-21.4 20.8-37.7 21.8-48.9 3.5-33.2-25.9-30.9-45.8-22.4 15.9-52.1 46.3-77.4 91.2-76 33.3.9 49 22.5 47.1 64.7z" ], + "vimeo-square": [ 448, 512, [], "f194", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16.2 149.6c-1.4 31.1-23.2 73.8-65.3 127.9-43.5 56.5-80.3 84.8-110.4 84.8-18.7 0-34.4-17.2-47.3-51.6-25.2-92.3-35.9-146.4-56.7-146.4-2.4 0-10.8 5-25.1 15.1L64 192c36.9-32.4 72.1-68.4 94.1-70.4 24.9-2.4 40.2 14.6 46 51.1 20.5 129.6 29.6 149.2 66.8 90.5 13.4-21.2 20.6-37.2 21.5-48.3 3.4-32.8-25.6-30.6-45.2-22.2 15.7-51.5 45.8-76.5 90.1-75.1 32.9 1 48.4 22.4 46.5 64z" ], + "vimeo-v": [ 448, 512, [], "f27d", "M447.8 153.6c-2 43.6-32.4 103.3-91.4 179.1-60.9 79.2-112.4 118.8-154.6 118.8-26.1 0-48.2-24.1-66.3-72.3C100.3 250 85.3 174.3 56.2 174.3c-3.4 0-15.1 7.1-35.2 21.1L0 168.2c51.6-45.3 100.9-95.7 131.8-98.5 34.9-3.4 56.3 20.5 64.4 71.5 28.7 181.5 41.4 208.9 93.6 126.7 18.7-29.6 28.8-52.1 30.2-67.6 4.8-45.9-35.8-42.8-63.3-31 22-72.1 64.1-107.1 126.2-105.1 45.8 1.2 67.5 31.1 64.9 89.4z" ], + vine: [ 384, 512, [], "f1ca", "M384 254.7v52.1c-18.4 4.2-36.9 6.1-52.1 6.1-36.9 77.4-103 143.8-125.1 156.2-14 7.9-27.1 8.4-42.7-.8C137 452 34.2 367.7 0 102.7h74.5C93.2 261.8 139 343.4 189.3 404.5c27.9-27.9 54.8-65.1 75.6-106.9-49.8-25.3-80.1-80.9-80.1-145.6 0-65.6 37.7-115.1 102.2-115.1 114.9 0 106.2 127.9 81.6 181.5 0 0-46.4 9.2-63.5-20.5 3.4-11.3 8.2-30.8 8.2-48.5 0-31.3-11.3-46.6-28.4-46.6-18.2 0-30.8 17.1-30.8 50 .1 79.2 59.4 118.7 129.9 101.9z" ], + vk: [ 576, 512, [], "f189", "M545 117.7c3.7-12.5 0-21.7-17.8-21.7h-58.9c-15 0-21.9 7.9-25.6 16.7 0 0-30 73.1-72.4 120.5-13.7 13.7-20 18.1-27.5 18.1-3.7 0-9.4-4.4-9.4-16.9V117.7c0-15-4.2-21.7-16.6-21.7h-92.6c-9.4 0-15 7-15 13.5 0 14.2 21.2 17.5 23.4 57.5v86.8c0 19-3.4 22.5-10.9 22.5-20 0-68.6-73.4-97.4-157.4-5.8-16.3-11.5-22.9-26.6-22.9H38.8c-16.8 0-20.2 7.9-20.2 16.7 0 15.6 20 93.1 93.1 195.5C160.4 378.1 229 416 291.4 416c37.5 0 42.1-8.4 42.1-22.9 0-66.8-3.4-73.1 15.4-73.1 8.7 0 23.7 4.4 58.7 38.1 40 40 46.6 57.9 69 57.9h58.9c16.8 0 25.3-8.4 20.4-25-11.2-34.9-86.9-106.7-90.3-111.5-8.7-11.2-6.2-16.2 0-26.2.1-.1 72-101.3 79.4-135.6z" ], + vnv: [ 640, 512, [], "f40b", "M104.9 352c-34.1 0-46.4-30.4-46.4-30.4L2.6 210.1S-7.8 192 13 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.7-74.5c5.6-9.5 8.4-18.1 18.8-18.1h32.8c20.8 0 10.4 18.1 10.4 18.1l-55.8 111.5S174.2 352 140 352h-35.1zm395 0c-34.1 0-46.4-30.4-46.4-30.4l-55.9-111.5S387.2 192 408 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.8-74.5c5.6-9.5 8.4-18.1 18.8-18.1H627c20.8 0 10.4 18.1 10.4 18.1l-55.9 111.5S569.3 352 535.1 352h-35.2zM337.6 192c34.1 0 46.4 30.4 46.4 30.4l55.9 111.5s10.4 18.1-10.4 18.1h-32.8c-10.4 0-13.2-8.7-18.8-18.1l-36.7-74.5s-5.2-13.1-21.1-13.1c-15.9 0-21.1 13.1-21.1 13.1l-36.7 74.5c-5.6 9.4-8.4 18.1-18.8 18.1h-32.9c-20.8 0-10.4-18.1-10.4-18.1l55.9-111.5s12.2-30.4 46.4-30.4h35.1z" ], + vuejs: [ 448, 512, [], "f41f", "M356.9 64.3H280l-56 88.6-48-88.6H0L224 448 448 64.3h-91.1zm-301.2 32h53.8L224 294.5 338.4 96.3h53.8L224 384.5 55.7 96.3z" ], + weebly: [ 512, 512, [], "f5cc", "M425.09 65.83c-39.88 0-73.28 25.73-83.66 64.33-18.16-58.06-65.5-64.33-84.95-64.33-19.78 0-66.8 6.28-85.28 64.33-10.38-38.6-43.45-64.33-83.66-64.33C38.59 65.83 0 99.72 0 143.03c0 28.96 4.18 33.27 77.17 233.48 22.37 60.57 67.77 69.35 92.74 69.35 39.23 0 70.04-19.46 85.93-53.98 15.89 34.83 46.69 54.29 85.93 54.29 24.97 0 70.36-9.1 92.74-69.67 76.55-208.65 77.5-205.58 77.5-227.2.63-48.32-36.01-83.47-86.92-83.47zm26.34 114.81l-65.57 176.44c-7.92 21.49-21.22 37.22-46.24 37.22-23.44 0-37.38-12.41-44.03-33.9l-39.28-117.42h-.95L216.08 360.4c-6.96 21.5-20.9 33.6-44.02 33.6-25.02 0-38.33-15.74-46.24-37.22L60.88 181.55c-5.38-14.83-7.92-23.91-7.92-34.5 0-16.34 15.84-29.36 38.33-29.36 18.69 0 31.99 11.8 36.11 29.05l44.03 139.82h.95l44.66-136.79c6.02-19.67 16.47-32.08 38.96-32.08s32.94 12.11 38.96 32.08l44.66 136.79h.95l44.03-139.82c4.12-17.25 17.42-29.05 36.11-29.05 22.17 0 38.33 13.32 38.33 35.71-.32 7.87-4.12 16.04-7.61 27.24z" ], + weibo: [ 512, 512, [], "f18a", "M407 177.6c7.6-24-13.4-46.8-37.4-41.7-22 4.8-28.8-28.1-7.1-32.8 50.1-10.9 92.3 37.1 76.5 84.8-6.8 21.2-38.8 10.8-32-10.3zM214.8 446.7C108.5 446.7 0 395.3 0 310.4c0-44.3 28-95.4 76.3-143.7C176 67 279.5 65.8 249.9 161c-4 13.1 12.3 5.7 12.3 6 79.5-33.6 140.5-16.8 114 51.4-3.7 9.4 1.1 10.9 8.3 13.1 135.7 42.3 34.8 215.2-169.7 215.2zm143.7-146.3c-5.4-55.7-78.5-94-163.4-85.7-84.8 8.6-148.8 60.3-143.4 116s78.5 94 163.4 85.7c84.8-8.6 148.8-60.3 143.4-116zM347.9 35.1c-25.9 5.6-16.8 43.7 8.3 38.3 72.3-15.2 134.8 52.8 111.7 124-7.4 24.2 29.1 37 37.4 12 31.9-99.8-55.1-195.9-157.4-174.3zm-78.5 311c-17.1 38.8-66.8 60-109.1 46.3-40.8-13.1-58-53.4-40.3-89.7 17.7-35.4 63.1-55.4 103.4-45.1 42 10.8 63.1 50.2 46 88.5zm-86.3-30c-12.9-5.4-30 .3-38 12.9-8.3 12.9-4.3 28 8.6 34 13.1 6 30.8.3 39.1-12.9 8-13.1 3.7-28.3-9.7-34zm32.6-13.4c-5.1-1.7-11.4.6-14.3 5.4-2.9 5.1-1.4 10.6 3.7 12.9 5.1 2 11.7-.3 14.6-5.4 2.8-5.2 1.1-10.9-4-12.9z" ], + weixin: [ 576, 512, [], "f1d7", "M385.2 167.6c6.4 0 12.6.3 18.8 1.1C387.4 90.3 303.3 32 207.7 32 100.5 32 13 104.8 13 197.4c0 53.4 29.3 97.5 77.9 131.6l-19.3 58.6 68-34.1c24.4 4.8 43.8 9.7 68.2 9.7 6.2 0 12.1-.3 18.3-.8-4-12.9-6.2-26.6-6.2-40.8-.1-84.9 72.9-154 165.3-154zm-104.5-52.9c14.5 0 24.2 9.7 24.2 24.4 0 14.5-9.7 24.2-24.2 24.2-14.8 0-29.3-9.7-29.3-24.2.1-14.7 14.6-24.4 29.3-24.4zm-136.4 48.6c-14.5 0-29.3-9.7-29.3-24.2 0-14.8 14.8-24.4 29.3-24.4 14.8 0 24.4 9.7 24.4 24.4 0 14.6-9.6 24.2-24.4 24.2zM563 319.4c0-77.9-77.9-141.3-165.4-141.3-92.7 0-165.4 63.4-165.4 141.3S305 460.7 397.6 460.7c19.3 0 38.9-5.1 58.6-9.9l53.4 29.3-14.8-48.6C534 402.1 563 363.2 563 319.4zm-219.1-24.5c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.8 0 24.4 9.7 24.4 19.3 0 10-9.7 19.6-24.4 19.6zm107.1 0c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.5 0 24.4 9.7 24.4 19.3.1 10-9.9 19.6-24.4 19.6z" ], + whatsapp: [ 448, 512, [], "f232", "M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z" ], + "whatsapp-square": [ 448, 512, [], "f40c", "M224 122.8c-72.7 0-131.8 59.1-131.9 131.8 0 24.9 7 49.2 20.2 70.1l3.1 5-13.3 48.6 49.9-13.1 4.8 2.9c20.2 12 43.4 18.4 67.1 18.4h.1c72.6 0 133.3-59.1 133.3-131.8 0-35.2-15.2-68.3-40.1-93.2-25-25-58-38.7-93.2-38.7zm77.5 188.4c-3.3 9.3-19.1 17.7-26.7 18.8-12.6 1.9-22.4.9-47.5-9.9-39.7-17.2-65.7-57.2-67.7-59.8-2-2.6-16.2-21.5-16.2-41s10.2-29.1 13.9-33.1c3.6-4 7.9-5 10.6-5 2.6 0 5.3 0 7.6.1 2.4.1 5.7-.9 8.9 6.8 3.3 7.9 11.2 27.4 12.2 29.4s1.7 4.3.3 6.9c-7.6 15.2-15.7 14.6-11.6 21.6 15.3 26.3 30.6 35.4 53.9 47.1 4 2 6.3 1.7 8.6-1 2.3-2.6 9.9-11.6 12.5-15.5 2.6-4 5.3-3.3 8.9-2 3.6 1.3 23.1 10.9 27.1 12.9s6.6 3 7.6 4.6c.9 1.9.9 9.9-2.4 19.1zM400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM223.9 413.2c-26.6 0-52.7-6.7-75.8-19.3L64 416l22.5-82.2c-13.9-24-21.2-51.3-21.2-79.3C65.4 167.1 136.5 96 223.9 96c42.4 0 82.2 16.5 112.2 46.5 29.9 30 47.9 69.8 47.9 112.2 0 87.4-72.7 158.5-160.1 158.5z" ], + whmcs: [ 448, 512, [], "f40d", "M448 161v-21.3l-28.5-8.8-2.2-10.4 20.1-20.7L427 80.4l-29 7.5-7.2-7.5 7.5-28.2-19.1-11.6-21.3 21-10.7-3.2-7-26.4h-22.6l-6.2 26.4-12.1 3.2-19.7-21-19.4 11 8.1 27.7-8.1 8.4-28.5-7.5-11 19.1 20.7 21-2.9 10.4-28.5 7.8-.3 21.7 28.8 7.5 2.4 12.1-20.1 19.9 10.4 18.5 29.6-7.5 7.2 8.6-8.1 26.9 19.9 11.6 19.4-20.4 11.6 2.9 6.7 28.5 22.6.3 6.7-28.8 11.6-3.5 20.7 21.6 20.4-12.1-8.8-28 7.8-8.1 28.8 8.8 10.3-20.1-20.9-18.8 2.2-12.1 29.1-7zm-119.2 45.2c-31.3 0-56.8-25.4-56.8-56.8s25.4-56.8 56.8-56.8 56.8 25.4 56.8 56.8c0 31.5-25.4 56.8-56.8 56.8zm72.3 16.4l46.9 14.5V277l-55.1 13.4-4.1 22.7 38.9 35.3-19.2 37.9-54-16.7-14.6 15.2 16.7 52.5-38.3 22.7-38.9-40.5-21.7 6.6-12.6 54-42.4-.5-12.6-53.6-21.7-5.6-36.4 38.4-37.4-21.7 15.2-50.5-13.7-16.1-55.5 14.1-19.7-34.8 37.9-37.4-4.8-22.8-54-14.1.5-40.9L54 219.9l5.7-19.7-38.9-39.4L41.5 125l53.6 14.1 15.2-15.7-15.2-52 36.4-20.7 36.8 39.4L191 84l11.6-52H245l11.6 45.9L234 72l-6.3-1.7-3.3 5.7-11 19.1-3.3 5.6 4.6 4.6 17.2 17.4-.3 1-23.8 6.5-6.2 1.7-.1 6.4-.2 12.9C153.8 161.6 118 204 118 254.7c0 58.3 47.3 105.7 105.7 105.7 50.5 0 92.7-35.4 103.2-82.8l13.2.2 6.9.1 1.6-6.7 5.6-24 1.9-.6 17.1 17.8 4.7 4.9 5.8-3.4 20.4-12.1 5.8-3.5-2-6.5-6.8-21.2z" ], + "wikipedia-w": [ 640, 512, [], "f266", "M640 51.2l-.3 12.2c-28.1.8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3.3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4.2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5.3v13.1c-19.4.6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4.3-3.6 0-10.3.3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5.8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1.2.5z" ], + windows: [ 448, 512, [], "f17a", "M0 93.7l183.6-25.3v177.4H0V93.7zm0 324.6l183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z" ], + wix: [ 640, 512, [], "f5cf", "M393.38 131.69c0 13.03 2.08 32.69-28.68 43.83-9.52 3.45-15.95 9.66-15.95 9.66 0-31 4.72-42.22 17.4-48.86 9.75-5.11 27.23-4.63 27.23-4.63zm-115.8 35.54l-34.24 132.66-28.48-108.57c-7.69-31.99-20.81-48.53-48.43-48.53-27.37 0-40.66 16.18-48.43 48.53L89.52 299.89 55.28 167.23C49.73 140.51 23.86 128.96 0 131.96l65.57 247.93s21.63 1.56 32.46-3.96c14.22-7.25 20.98-12.84 29.59-46.57 7.67-30.07 29.11-118.41 31.12-124.7 4.76-14.94 11.09-13.81 15.4 0 1.97 6.3 23.45 94.63 31.12 124.7 8.6 33.73 15.37 39.32 29.59 46.57 10.82 5.52 32.46 3.96 32.46 3.96l65.57-247.93c-24.42-3.07-49.82 8.93-55.3 35.27zm115.78 5.21s-4.1 6.34-13.46 11.57c-6.01 3.36-11.78 5.64-17.97 8.61-15.14 7.26-13.18 13.95-13.18 35.2v152.07s16.55 2.09 27.37-3.43c13.93-7.1 17.13-13.95 17.26-44.78V181.41l-.02.01v-8.98zm163.44 84.08L640 132.78s-35.11-5.98-52.5 9.85c-13.3 12.1-24.41 29.55-54.18 72.47-.47.73-6.25 10.54-13.07 0-29.29-42.23-40.8-60.29-54.18-72.47-17.39-15.83-52.5-9.85-52.5-9.85l83.2 123.74-82.97 123.36s36.57 4.62 53.95-11.21c11.49-10.46 17.58-20.37 52.51-70.72 6.81-10.52 12.57-.77 13.07 0 29.4 42.38 39.23 58.06 53.14 70.72 17.39 15.83 53.32 11.21 53.32 11.21L556.8 256.52z" ], + "wolf-pack-battalion": [ 456, 512, [], "f514", "M239.73 471.53l10.56 15.84 5.28-12.32 5.28 7.04V512c21.06-7.92 21.11-66.86 25.51-97.21 4.62-31.89-.88-92.81 81.37-149.11-8.88-23.61-12-49.43-2.64-80.05 27.87 3.34 53.94 10.58 63.34 54.1l-30.35 8.36c11.15 23.04 17.01 46.76 13.2 72.14L384 313.18l-6.16 33.43-18.47-7.04-8.8 33.43-19.35-7.04 26.39 21.11 8.8-28.15 24.63 5.28 7.04-35.63 26.39 14.52c.25-20.02 6.97-58.06-8.8-84.45l26.39 5.28c3.99-22.07-2.38-39.21-7.92-56.74l22.43 9.68c-.44-25.07-29.94-56.79-61.58-58.5-20.22-1.09-56.74-25.17-54.1-51.9 1.96-19.87 17.45-42.62 43.11-49.7-43.99 36.51-9.68 67.3 5.28 73.46 4.4-11.44 17.54-69.08 0-130.2-40.47 22.87-89.73 65.1-93.25 147.79l-58.06 38.71-3.52 93.25 107.33-59.82 7.04 7.04-17.59 3.52-43.99 38.71-15.84-5.28-28.15 49.26-3.52 119.64 21.11 15.84-32.55 15.84-32.55-15.84 21.11-15.84-3.52-119.64-28.15-49.26-15.84 5.28-43.99-38.71-17.59-3.52 7.04-7.04 107.33 59.82-3.52-93.25-58.06-38.71C157.03 65.1 107.77 22.87 67.3 0c-17.54 61.12-4.4 118.76 0 130.2 14.96-6.16 49.26-36.95 5.28-73.46 25.66 7.08 41.15 29.83 43.11 49.7 2.63 26.74-33.88 50.81-54.1 51.9C29.94 160.06.44 191.78 0 216.85l22.43-9.68c-5.54 17.53-11.91 34.67-7.92 56.74l26.39-5.28c-15.76 26.39-9.05 64.43-8.8 84.45l26.39-14.52 7.04 35.63 24.63-5.28 8.8 28.15 26.39-21.11-19.34 7.05-8.8-33.43-18.47 7.04-6.16-33.43-27.27 7.04c-3.82-25.38 2.05-49.1 13.2-72.14l-30.35-8.36c9.4-43.52 35.47-50.77 63.34-54.1 9.36 30.62 6.24 56.45-2.64 80.05 82.25 56.3 76.75 117.23 81.37 149.11 4.4 30.35 4.45 89.29 25.51 97.21v-29.91l5.28-7.04 5.28 12.32 10.56-15.84 11.44 21.11 11.43-21.1zm79.17-95.01l-15.84-10.56c7.47-4.36 13.76-8.42 19.35-12.32-.6 7.26-.27 13.88-3.51 22.88zm28.15-49.26c-.4 10.94-.9 21.66-1.76 31.67-7.85-1.86-15.57-3.8-21.11-7.04 8.24-7.9 15.55-16.27 22.87-24.63zm24.63 5.28c-.02-13.43-2.05-24.21-5.28-33.43-5.38 9.09-11.23 18.18-18.47 27.27l23.75 6.16zm3.52-80.94c19.44 12.81 27.8 33.66 29.91 56.3-12.32-4.53-24.63-9.31-36.95-10.56 5.06-11.99 6.65-28.14 7.04-45.74zm-1.76-45.74c.81 14.3 1.84 28.82 1.76 42.23 19.22-8.11 29.78-9.72 43.99-14.08-10.6-18.95-27.22-25.52-45.75-28.15zM137.68 376.52l15.84-10.56c-7.47-4.36-13.76-8.42-19.35-12.32.6 7.26.27 13.88 3.51 22.88zm-28.15-49.26c.4 10.94.9 21.66 1.76 31.67 7.85-1.86 15.57-3.8 21.11-7.04-8.24-7.9-15.55-16.27-22.87-24.63zm-24.64 5.28c.02-13.43 2.05-24.21 5.28-33.43 5.38 9.09 11.23 18.18 18.47 27.27l-23.75 6.16zm-3.52-80.94c-19.44 12.81-27.8 33.66-29.91 56.3 12.32-4.53 24.63-9.31 36.95-10.56-5.05-11.99-6.65-28.14-7.04-45.74zm1.76-45.74c-.81 14.3-1.84 28.82-1.76 42.23-19.22-8.11-29.78-9.72-43.99-14.08 10.61-18.95 27.22-25.52 45.75-28.15z" ], + wordpress: [ 512, 512, [], "f19a", "M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z" ], + "wordpress-simple": [ 512, 512, [], "f411", "M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8zM33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256zm223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6zm30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3-80.7-239.6zm81.4 297.2l68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7z" ], + wpbeginner: [ 512, 512, [], "f297", "M462.799 322.374C519.01 386.682 466.961 480 370.944 480c-39.602 0-78.824-17.687-100.142-50.04-6.887.356-22.702.356-29.59 0C219.848 462.381 180.588 480 141.069 480c-95.49 0-148.348-92.996-91.855-157.626C-29.925 190.523 80.479 32 256.006 32c175.632 0 285.87 158.626 206.793 290.374zm-339.647-82.972h41.529v-58.075h-41.529v58.075zm217.18 86.072v-23.839c-60.506 20.915-132.355 9.198-187.589-33.971l.246 24.897c51.101 46.367 131.746 57.875 187.343 32.913zm-150.753-86.072h166.058v-58.075H189.579v58.075z" ], + wpexplorer: [ 512, 512, [], "f2de", "M512 256c0 141.2-114.7 256-256 256C114.8 512 0 397.3 0 256S114.7 0 256 0s256 114.7 256 256zm-32 0c0-123.2-100.3-224-224-224C132.5 32 32 132.5 32 256s100.5 224 224 224 224-100.5 224-224zM160.9 124.6l86.9 37.1-37.1 86.9-86.9-37.1 37.1-86.9zm110 169.1l46.6 94h-14.6l-50-100-48.9 100h-14l51.1-106.9-22.3-9.4 6-14 68.6 29.1-6 14.3-16.5-7.1zm-11.8-116.3l68.6 29.4-29.4 68.3L230 246l29.1-68.6zm80.3 42.9l54.6 23.1-23.4 54.3-54.3-23.1 23.1-54.3z" ], + wpforms: [ 448, 512, [], "f298", "M448 75.2v361.7c0 24.3-19 43.2-43.2 43.2H43.2C19.3 480 0 461.4 0 436.8V75.2C0 51.1 18.8 32 43.2 32h361.7c24 0 43.1 18.8 43.1 43.2zm-37.3 361.6V75.2c0-3-2.6-5.8-5.8-5.8h-9.3L285.3 144 224 94.1 162.8 144 52.5 69.3h-9.3c-3.2 0-5.8 2.8-5.8 5.8v361.7c0 3 2.6 5.8 5.8 5.8h361.7c3.2.1 5.8-2.7 5.8-5.8zM150.2 186v37H76.7v-37h73.5zm0 74.4v37.3H76.7v-37.3h73.5zm11.1-147.3l54-43.7H96.8l64.5 43.7zm210 72.9v37h-196v-37h196zm0 74.4v37.3h-196v-37.3h196zm-84.6-147.3l64.5-43.7H232.8l53.9 43.7zM371.3 335v37.3h-99.4V335h99.4z" ], + xbox: [ 512, 512, [], "f412", "M369.9 318.2c44.3 54.3 64.7 98.8 54.4 118.7-7.9 15.1-56.7 44.6-92.6 55.9-29.6 9.3-68.4 13.3-100.4 10.2-38.2-3.7-76.9-17.4-110.1-39C93.3 445.8 87 438.3 87 423.4c0-29.9 32.9-82.3 89.2-142.1 32-33.9 76.5-73.7 81.4-72.6 9.4 2.1 84.3 75.1 112.3 109.5zM188.6 143.8c-29.7-26.9-58.1-53.9-86.4-63.4-15.2-5.1-16.3-4.8-28.7 8.1-29.2 30.4-53.5 79.7-60.3 122.4-5.4 34.2-6.1 43.8-4.2 60.5 5.6 50.5 17.3 85.4 40.5 120.9 9.5 14.6 12.1 17.3 9.3 9.9-4.2-11-.3-37.5 9.5-64 14.3-39 53.9-112.9 120.3-194.4zm311.6 63.5C483.3 127.3 432.7 77 425.6 77c-7.3 0-24.2 6.5-36 13.9-23.3 14.5-41 31.4-64.3 52.8C367.7 197 427.5 283.1 448.2 346c6.8 20.7 9.7 41.1 7.4 52.3-1.7 8.5-1.7 8.5 1.4 4.6 6.1-7.7 19.9-31.3 25.4-43.5 7.4-16.2 15-40.2 18.6-58.7 4.3-22.5 3.9-70.8-.8-93.4zM141.3 43C189 40.5 251 77.5 255.6 78.4c.7.1 10.4-4.2 21.6-9.7 63.9-31.1 94-25.8 107.4-25.2-63.9-39.3-152.7-50-233.9-11.7-23.4 11.1-24 11.9-9.4 11.2z" ], + xing: [ 384, 512, [], "f168", "M162.7 210c-1.8 3.3-25.2 44.4-70.1 123.5-4.9 8.3-10.8 12.5-17.7 12.5H9.8c-7.7 0-12.1-7.5-8.5-14.4l69-121.3c.2 0 .2-.1 0-.3l-43.9-75.6c-4.3-7.8.3-14.1 8.5-14.1H100c7.3 0 13.3 4.1 18 12.2l44.7 77.5zM382.6 46.1l-144 253v.3L330.2 466c3.9 7.1.2 14.1-8.5 14.1h-65.2c-7.6 0-13.6-4-18-12.2l-92.4-168.5c3.3-5.8 51.5-90.8 144.8-255.2 4.6-8.1 10.4-12.2 17.5-12.2h65.7c8 0 12.3 6.7 8.5 14.1z" ], + "xing-square": [ 448, 512, [], "f169", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM140.4 320.2H93.8c-5.5 0-8.7-5.3-6-10.3l49.3-86.7c.1 0 .1-.1 0-.2l-31.4-54c-3-5.6.2-10.1 6-10.1h46.6c5.2 0 9.5 2.9 12.9 8.7l31.9 55.3c-1.3 2.3-18 31.7-50.1 88.2-3.5 6.2-7.7 9.1-12.6 9.1zm219.7-214.1L257.3 286.8v.2l65.5 119c2.8 5.1.1 10.1-6 10.1h-46.6c-5.5 0-9.7-2.9-12.9-8.7l-66-120.3c2.3-4.1 36.8-64.9 103.4-182.3 3.3-5.8 7.4-8.7 12.5-8.7h46.9c5.7-.1 8.8 4.7 6 10z" ], + "y-combinator": [ 448, 512, [], "f23b", "M448 32v448H0V32h448zM236 287.5L313.5 142h-32.7L235 233c-4.7 9.3-9 18.3-12.8 26.8L210 233l-45.2-91h-35l76.7 143.8v94.5H236v-92.8z" ], + yahoo: [ 448, 512, [], "f19e", "M252 292l4 220c-12.7-2.2-23.5-3.9-32.3-3.9-8.4 0-19.2 1.7-32.3 3.9l4-220C140.4 197.2 85 95.2 21.4 0c11.9 3.1 23 3.9 33.2 3.9 9 0 20.4-.8 34.1-3.9 40.9 72.2 82.1 138.7 135 225.5C261 163.9 314.8 81.4 358.6 0c11.1 2.9 22 3.9 32.9 3.9 11.5 0 23.2-1 35-3.9C392.1 47.9 294.9 216.9 252 292z" ], + yandex: [ 256, 512, [], "f413", "M153.1 315.8L65.7 512H2l96-209.8c-45.1-22.9-75.2-64.4-75.2-141.1C22.7 53.7 90.8 0 171.7 0H254v512h-55.1V315.8h-45.8zm45.8-269.3h-29.4c-44.4 0-87.4 29.4-87.4 114.6 0 82.3 39.4 108.8 87.4 108.8h29.4V46.5z" ], + "yandex-international": [ 320, 512, [], "f414", "M129.5 512V345.9L18.5 48h55.8l81.8 229.7L250.2 0h51.3L180.8 347.8V512h-51.3z" ], + yelp: [ 384, 512, [], "f1e9", "M136.9 328c-1 .3-109.2 35.7-115.8 35.7-15.2-.9-18.5-16.2-19.9-31.2-1.5-14.2-1.4-29.8.3-46.8 1.9-18.8 5.5-45.1 24.2-44 4.8 0 67.1 25.9 112.7 44.4 17.1 6.8 18.6 35.8-1.5 41.9zm57.9-113.9c1.8 38.2-25.5 48.5-47.2 14.3L41.3 60.4c-1.5-6.6.3-12.4 5.3-17.4C62.2 26.5 146 3.2 168.1 8.9c7.5 1.9 12.1 6.1 13.8 12.6 1.3 8.3 11.5 167.4 12.9 192.6zm-1.4 164.8c0 4.6.2 116.4-1.7 121.5-2.3 6-7 9.7-14.3 11.2-10.1 1.7-27.1-1.9-51-10.7-22-8.1-56.7-21.5-49.3-42.5 2.8-6.9 51.4-62.8 77.3-93.6 12-15.2 39.8-5.5 39 14.1zm180.2-117.8c-5.6 3.7-110.8 28.2-118.1 30.6l.3-.6c-18.1 4.7-35.4-18.5-23.3-34.6 3.7-3.7 65.9-92.4 72.8-97 5.2-3.6 11.3-3.8 18.3-.6 18.4 8.8 55.1 63.1 57.4 84.6-.1 2.9 1.2 11.7-7.4 17.6zm10.1 130.7c-2.7 20.6-44.5 73.4-63.8 81-6.9 2.6-12.9 2-17.7-2-5-3.5-61.8-97.1-64.9-102.3-10.9-16.2 6.8-39.8 25.6-33.2 0 0 110.5 35.7 114.7 39.4 5.2 4.1 7.2 9.8 6.1 17.1z" ], + yoast: [ 448, 512, [], "f2b1", "M91.3 76h186l-7 18.9h-179c-39.7 0-71.9 31.6-71.9 70.3v205.4c0 35.4 24.9 70.3 84 70.3V460H91.3C41.2 460 0 419.8 0 370.5V165.2C0 115.9 40.7 76 91.3 76zm229.1-56h66.5C243.1 398.1 241.2 418.9 202.2 459.3c-20.8 21.6-49.3 31.7-78.3 32.7v-51.1c49.2-7.7 64.6-49.9 64.6-75.3 0-20.1.6-12.6-82.1-223.2h61.4L218.2 299 320.4 20zM448 161.5V460H234c6.6-9.6 10.7-16.3 12.1-19.4h182.5V161.5c0-32.5-17.1-51.9-48.2-62.9l6.7-17.6c41.7 13.6 60.9 43.1 60.9 80.5z" ], + youtube: [ 576, 512, [], "f167", "M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z" ], + "youtube-square": [ 448, 512, [], "f431", "M186.8 202.1l95.2 54.1-95.2 54.1V202.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-42 176.3s0-59.6-7.6-88.2c-4.2-15.8-16.5-28.2-32.2-32.4C337.9 128 224 128 224 128s-113.9 0-142.2 7.7c-15.7 4.2-28 16.6-32.2 32.4-7.6 28.5-7.6 88.2-7.6 88.2s0 59.6 7.6 88.2c4.2 15.8 16.5 27.7 32.2 31.9C110.1 384 224 384 224 384s113.9 0 142.2-7.7c15.7-4.2 28-16.1 32.2-31.9 7.6-28.5 7.6-88.1 7.6-88.1z" ] + }; + !function(c) { + try { + c(); + } catch (c) { + if (!m) throw c; + } + }(function() { + !function c(z, h) { + var l = Object.keys(h).reduce(function(c, z) { + var l = h[z]; + return l.icon ? c[l.iconName] = l.icon : c[z] = l, c; + }, {}); + "function" == typeof f.hooks.addPack ? f.hooks.addPack(z, l) : f.styles[z] = V({}, f.styles[z] || {}, l), + "fas" === z && c("fa", h); + }("fab", e); + }); +}(); \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/fontawesome.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/fontawesome.js new file mode 100644 index 0000000000..568cf6eef9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/fontawesome.js @@ -0,0 +1,1978 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +(function () { +'use strict'; + +var noop = function noop() {}; + +var _WINDOW = {}; +var _DOCUMENT = {}; +var _MUTATION_OBSERVER$1 = null; +var _PERFORMANCE = { mark: noop, measure: noop }; + +try { + if (typeof window !== 'undefined') _WINDOW = window; + if (typeof document !== 'undefined') _DOCUMENT = document; + if (typeof MutationObserver !== 'undefined') _MUTATION_OBSERVER$1 = MutationObserver; + if (typeof performance !== 'undefined') _PERFORMANCE = performance; +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; +var DOCUMENT = _DOCUMENT; +var MUTATION_OBSERVER = _MUTATION_OBSERVER$1; +var PERFORMANCE = _PERFORMANCE; +var IS_BROWSER = !!WINDOW.document; +var IS_DOM = !!DOCUMENT.documentElement && !!DOCUMENT.head && typeof DOCUMENT.addEventListener === 'function' && typeof DOCUMENT.createElement === 'function'; +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; +var UNITS_IN_GRID = 16; +var DEFAULT_FAMILY_PREFIX = 'fa'; +var DEFAULT_REPLACEMENT_CLASS = 'svg-inline--fa'; +var DATA_FA_I2SVG = 'data-fa-i2svg'; +var DATA_FA_PSEUDO_ELEMENT = 'data-fa-pseudo-element'; +var DATA_PREFIX = 'data-prefix'; +var DATA_ICON = 'data-icon'; +var HTML_CLASS_I2SVG_BASE_CLASS = 'fontawesome-i2svg'; +var TAGNAMES_TO_SKIP_FOR_PSEUDOELEMENTS = ['HTML', 'HEAD', 'STYLE', 'SCRIPT']; +var PRODUCTION = function () { + try { + return undefined === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + +var ATTRIBUTES_WATCHED_FOR_MUTATION = ['class', 'data-prefix', 'data-icon', 'data-fa-transform', 'data-fa-mask']; + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +var classCallCheck = function (instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function"); + } +}; + +var createClass = function () { + function defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } + } + + return function (Constructor, protoProps, staticProps) { + if (protoProps) defineProperties(Constructor.prototype, protoProps); + if (staticProps) defineProperties(Constructor, staticProps); + return Constructor; + }; +}(); + + + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + + + +var slicedToArray = function () { + function sliceIterator(arr, i) { + var _arr = []; + var _n = true; + var _d = false; + var _e = undefined; + + try { + for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { + _arr.push(_s.value); + + if (i && _arr.length === i) break; + } + } catch (err) { + _d = true; + _e = err; + } finally { + try { + if (!_n && _i["return"]) _i["return"](); + } finally { + if (_d) throw _e; + } + } + + return _arr; + } + + return function (arr, i) { + if (Array.isArray(arr)) { + return arr; + } else if (Symbol.iterator in Object(arr)) { + return sliceIterator(arr, i); + } else { + throw new TypeError("Invalid attempt to destructure non-iterable instance"); + } + }; +}(); + +var toConsumableArray = function (arr) { + if (Array.isArray(arr)) { + for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) arr2[i] = arr[i]; + + return arr2; + } else { + return Array.from(arr); + } +}; + +var initial = WINDOW.FontAwesomeConfig || {}; + +function getAttrConfig(attr) { + var element = DOCUMENT.querySelector('script[' + attr + ']'); + + if (element) { + return element.getAttribute(attr); + } +} + +function coerce(val) { + // Getting an empty string will occur if the attribute is set on the HTML tag but without a value + // We'll assume that this is an indication that it should be toggled to true + // For example + if (val === '') return true; + if (val === 'false') return false; + if (val === 'true') return true; + return val; +} + +if (DOCUMENT && typeof DOCUMENT.querySelector === 'function') { + var attrs = [['data-family-prefix', 'familyPrefix'], ['data-replacement-class', 'replacementClass'], ['data-auto-replace-svg', 'autoReplaceSvg'], ['data-auto-add-css', 'autoAddCss'], ['data-auto-a11y', 'autoA11y'], ['data-search-pseudo-elements', 'searchPseudoElements'], ['data-observe-mutations', 'observeMutations'], ['data-keep-original-source', 'keepOriginalSource'], ['data-measure-performance', 'measurePerformance'], ['data-show-missing-icons', 'showMissingIcons']]; + + attrs.forEach(function (_ref) { + var _ref2 = slicedToArray(_ref, 2), + attr = _ref2[0], + key = _ref2[1]; + + var val = coerce(getAttrConfig(attr)); + + if (val !== undefined && val !== null) { + initial[key] = val; + } + }); +} + +var _default = _extends({ + familyPrefix: DEFAULT_FAMILY_PREFIX, + replacementClass: DEFAULT_REPLACEMENT_CLASS, + autoReplaceSvg: true, + autoAddCss: true, + autoA11y: true, + searchPseudoElements: false, + observeMutations: true, + keepOriginalSource: true, + measurePerformance: false, + showMissingIcons: true +}, initial); + +if (!_default.autoReplaceSvg) _default.observeMutations = false; + +var config = _extends({}, _default); + +WINDOW.FontAwesomeConfig = config; + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var functions = []; +var listener = function listener() { + DOCUMENT.removeEventListener('DOMContentLoaded', listener); + loaded = 1; + functions.map(function (fn) { + return fn(); + }); +}; + +var loaded = false; + +if (IS_DOM) { + loaded = (DOCUMENT.documentElement.doScroll ? /^loaded|^c/ : /^loaded|^i|^c/).test(DOCUMENT.readyState); + + if (!loaded) DOCUMENT.addEventListener('DOMContentLoaded', listener); +} + +var domready = function (fn) { + if (!IS_DOM) return; + loaded ? setTimeout(fn, 0) : functions.push(fn); +}; + +var d = UNITS_IN_GRID; + +var meaninglessTransform = { + size: 16, + x: 0, + y: 0, + rotate: 0, + flipX: false, + flipY: false +}; + +function isReserved(name) { + return ~RESERVED_CLASSES.indexOf(name); +} + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +function insertCss(css) { + if (!css || !IS_DOM) { + return; + } + + var style = DOCUMENT.createElement('style'); + style.setAttribute('type', 'text/css'); + style.innerHTML = css; + + var headChildren = DOCUMENT.head.childNodes; + var beforeChild = null; + + for (var i = headChildren.length - 1; i > -1; i--) { + var child = headChildren[i]; + var tagName = (child.tagName || '').toUpperCase(); + if (['STYLE', 'LINK'].indexOf(tagName) > -1) { + beforeChild = child; + } + } + + DOCUMENT.head.insertBefore(style, beforeChild); + + return css; +} + +var _uniqueId = 0; + +function nextUniqueId() { + _uniqueId++; + + return _uniqueId; +} + +function toArray(obj) { + var array = []; + + for (var i = (obj || []).length >>> 0; i--;) { + array[i] = obj[i]; + } + + return array; +} + +function classArray(node) { + if (node.classList) { + return toArray(node.classList); + } else { + return (node.getAttribute('class') || '').split(' ').filter(function (i) { + return i; + }); + } +} + +function getIconName(familyPrefix, cls) { + var parts = cls.split('-'); + var prefix = parts[0]; + var iconName = parts.slice(1).join('-'); + + if (prefix === familyPrefix && iconName !== '' && !isReserved(iconName)) { + return iconName; + } else { + return null; + } +} + +function htmlEscape(str) { + return ('' + str).replace(/&/g, '&').replace(/"/g, '"').replace(/'/g, ''').replace(//g, '>'); +} + +function joinAttributes(attributes) { + return Object.keys(attributes || {}).reduce(function (acc, attributeName) { + return acc + (attributeName + '="' + htmlEscape(attributes[attributeName]) + '" '); + }, '').trim(); +} + +function joinStyles(styles) { + return Object.keys(styles || {}).reduce(function (acc, styleName) { + return acc + (styleName + ': ' + styles[styleName] + ';'); + }, ''); +} + +function transformIsMeaningful(transform) { + return transform.size !== meaninglessTransform.size || transform.x !== meaninglessTransform.x || transform.y !== meaninglessTransform.y || transform.rotate !== meaninglessTransform.rotate || transform.flipX || transform.flipY; +} + +function transformForSvg(_ref) { + var transform = _ref.transform, + containerWidth = _ref.containerWidth, + iconWidth = _ref.iconWidth; + + var outer = { + transform: 'translate(' + containerWidth / 2 + ' 256)' + }; + var innerTranslate = 'translate(' + transform.x * 32 + ', ' + transform.y * 32 + ') '; + var innerScale = 'scale(' + transform.size / 16 * (transform.flipX ? -1 : 1) + ', ' + transform.size / 16 * (transform.flipY ? -1 : 1) + ') '; + var innerRotate = 'rotate(' + transform.rotate + ' 0 0)'; + var inner = { + transform: innerTranslate + ' ' + innerScale + ' ' + innerRotate + }; + var path = { + transform: 'translate(' + iconWidth / 2 * -1 + ' -256)' + }; + return { + outer: outer, + inner: inner, + path: path + }; +} + +function transformForCss(_ref2) { + var transform = _ref2.transform, + _ref2$width = _ref2.width, + width = _ref2$width === undefined ? UNITS_IN_GRID : _ref2$width, + _ref2$height = _ref2.height, + height = _ref2$height === undefined ? UNITS_IN_GRID : _ref2$height, + _ref2$startCentered = _ref2.startCentered, + startCentered = _ref2$startCentered === undefined ? false : _ref2$startCentered; + + var val = ''; + + if (startCentered && IS_IE) { + val += 'translate(' + (transform.x / d - width / 2) + 'em, ' + (transform.y / d - height / 2) + 'em) '; + } else if (startCentered) { + val += 'translate(calc(-50% + ' + transform.x / d + 'em), calc(-50% + ' + transform.y / d + 'em)) '; + } else { + val += 'translate(' + transform.x / d + 'em, ' + transform.y / d + 'em) '; + } + + val += 'scale(' + transform.size / d * (transform.flipX ? -1 : 1) + ', ' + transform.size / d * (transform.flipY ? -1 : 1) + ') '; + val += 'rotate(' + transform.rotate + 'deg) '; + + return val; +} + +var ALL_SPACE = { + x: 0, + y: 0, + width: '100%', + height: '100%' +}; + +var makeIconMasking = function (_ref) { + var children = _ref.children, + attributes = _ref.attributes, + main = _ref.main, + mask = _ref.mask, + transform = _ref.transform; + var mainWidth = main.width, + mainPath = main.icon; + var maskWidth = mask.width, + maskPath = mask.icon; + + + var trans = transformForSvg({ transform: transform, containerWidth: maskWidth, iconWidth: mainWidth }); + + var maskRect = { + tag: 'rect', + attributes: _extends({}, ALL_SPACE, { + fill: 'white' + }) + }; + var maskInnerGroup = { + tag: 'g', + attributes: _extends({}, trans.inner), + children: [{ tag: 'path', attributes: _extends({}, mainPath.attributes, trans.path, { fill: 'black' }) }] + }; + var maskOuterGroup = { + tag: 'g', + attributes: _extends({}, trans.outer), + children: [maskInnerGroup] + }; + var maskId = 'mask-' + nextUniqueId(); + var clipId = 'clip-' + nextUniqueId(); + var maskTag = { + tag: 'mask', + attributes: _extends({}, ALL_SPACE, { + id: maskId, + maskUnits: 'userSpaceOnUse', + maskContentUnits: 'userSpaceOnUse' + }), + children: [maskRect, maskOuterGroup] + }; + var defs = { + tag: 'defs', + children: [{ tag: 'clipPath', attributes: { id: clipId }, children: [maskPath] }, maskTag] + }; + + children.push(defs, { tag: 'rect', attributes: _extends({ fill: 'currentColor', 'clip-path': 'url(#' + clipId + ')', mask: 'url(#' + maskId + ')' }, ALL_SPACE) }); + + return { + children: children, + attributes: attributes + }; +}; + +var makeIconStandard = function (_ref) { + var children = _ref.children, + attributes = _ref.attributes, + main = _ref.main, + transform = _ref.transform, + styles = _ref.styles; + + var styleString = joinStyles(styles); + + if (styleString.length > 0) { + attributes['style'] = styleString; + } + + if (transformIsMeaningful(transform)) { + var trans = transformForSvg({ transform: transform, containerWidth: main.width, iconWidth: main.width }); + children.push({ + tag: 'g', + attributes: _extends({}, trans.outer), + children: [{ + tag: 'g', + attributes: _extends({}, trans.inner), + children: [{ + tag: main.icon.tag, + children: main.icon.children, + attributes: _extends({}, main.icon.attributes, trans.path) + }] + }] + }); + } else { + children.push(main.icon); + } + + return { + children: children, + attributes: attributes + }; +}; + +var asIcon = function (_ref) { + var children = _ref.children, + main = _ref.main, + mask = _ref.mask, + attributes = _ref.attributes, + styles = _ref.styles, + transform = _ref.transform; + + if (transformIsMeaningful(transform) && main.found && !mask.found) { + var width = main.width, + height = main.height; + + var offset = { + x: width / height / 2, + y: 0.5 + }; + attributes['style'] = joinStyles(_extends({}, styles, { + 'transform-origin': offset.x + transform.x / 16 + 'em ' + (offset.y + transform.y / 16) + 'em' + })); + } + + return [{ + tag: 'svg', + attributes: attributes, + children: children + }]; +}; + +var asSymbol = function (_ref) { + var prefix = _ref.prefix, + iconName = _ref.iconName, + children = _ref.children, + attributes = _ref.attributes, + symbol = _ref.symbol; + + var id = symbol === true ? prefix + '-' + config.familyPrefix + '-' + iconName : symbol; + + return [{ + tag: 'svg', + attributes: { + style: 'display: none;' + }, + children: [{ + tag: 'symbol', + attributes: _extends({}, attributes, { id: id }), + children: children + }] + }]; +}; + +function makeInlineSvgAbstract(params) { + var _params$icons = params.icons, + main = _params$icons.main, + mask = _params$icons.mask, + prefix = params.prefix, + iconName = params.iconName, + transform = params.transform, + symbol = params.symbol, + title = params.title, + extra = params.extra, + _params$watchable = params.watchable, + watchable = _params$watchable === undefined ? false : _params$watchable; + + var _ref = mask.found ? mask : main, + width = _ref.width, + height = _ref.height; + + var widthClass = 'fa-w-' + Math.ceil(width / height * 16); + var attrClass = [config.replacementClass, iconName ? config.familyPrefix + '-' + iconName : '', widthClass].filter(function (c) { + return extra.classes.indexOf(c) === -1; + }).concat(extra.classes).join(' '); + + var content = { + children: [], + attributes: _extends({}, extra.attributes, { + 'data-prefix': prefix, + 'data-icon': iconName, + 'class': attrClass, + 'role': 'img', + 'xmlns': 'http://www.w3.org/2000/svg', + 'viewBox': '0 0 ' + width + ' ' + height + }) + }; + + if (watchable) { + content.attributes[DATA_FA_I2SVG] = ''; + } + + if (title) content.children.push({ tag: 'title', attributes: { id: content.attributes['aria-labelledby'] || 'title-' + nextUniqueId() }, children: [title] }); + + var args = _extends({}, content, { + prefix: prefix, + iconName: iconName, + main: main, + mask: mask, + transform: transform, + symbol: symbol, + styles: extra.styles + }); + + var _ref2 = mask.found && main.found ? makeIconMasking(args) : makeIconStandard(args), + children = _ref2.children, + attributes = _ref2.attributes; + + args.children = children; + args.attributes = attributes; + + if (symbol) { + return asSymbol(args); + } else { + return asIcon(args); + } +} + +function makeLayersTextAbstract(params) { + var content = params.content, + width = params.width, + height = params.height, + transform = params.transform, + title = params.title, + extra = params.extra, + _params$watchable2 = params.watchable, + watchable = _params$watchable2 === undefined ? false : _params$watchable2; + + + var attributes = _extends({}, extra.attributes, title ? { 'title': title } : {}, { + 'class': extra.classes.join(' ') + }); + + if (watchable) { + attributes[DATA_FA_I2SVG] = ''; + } + + var styles = _extends({}, extra.styles); + + if (transformIsMeaningful(transform)) { + styles['transform'] = transformForCss({ transform: transform, startCentered: true, width: width, height: height }); + styles['-webkit-transform'] = styles['transform']; + } + + var styleString = joinStyles(styles); + + if (styleString.length > 0) { + attributes['style'] = styleString; + } + + var val = []; + + val.push({ + tag: 'span', + attributes: attributes, + children: [content] + }); + + if (title) { + val.push({ tag: 'span', attributes: { class: 'sr-only' }, children: [title] }); + } + + return val; +} + +function makeLayersCounterAbstract(params) { + var content = params.content, + title = params.title, + extra = params.extra; + + + var attributes = _extends({}, extra.attributes, title ? { 'title': title } : {}, { + 'class': extra.classes.join(' ') + }); + + var styleString = joinStyles(extra.styles); + + if (styleString.length > 0) { + attributes['style'] = styleString; + } + + var val = []; + + val.push({ + tag: 'span', + attributes: attributes, + children: [content] + }); + + if (title) { + val.push({ tag: 'span', attributes: { class: 'sr-only' }, children: [title] }); + } + + return val; +} + +var noop$2 = function noop() {}; +var p = config.measurePerformance && PERFORMANCE && PERFORMANCE.mark && PERFORMANCE.measure ? PERFORMANCE : { mark: noop$2, measure: noop$2 }; +var preamble = 'FA "5.1.1"'; + +var begin = function begin(name) { + p.mark(preamble + ' ' + name + ' begins'); + return function () { + return end(name); + }; +}; + +var end = function end(name) { + p.mark(preamble + ' ' + name + ' ends'); + p.measure(preamble + ' ' + name, preamble + ' ' + name + ' begins', preamble + ' ' + name + ' ends'); +}; + +var perf = { begin: begin, end: end }; + +'use strict'; + +/** + * Internal helper to bind a function known to have 4 arguments + * to a given context. + */ +var bindInternal4 = function bindInternal4 (func, thisContext) { + return function (a, b, c, d) { + return func.call(thisContext, a, b, c, d); + }; +}; + +'use strict'; + + + +/** + * # Reduce + * + * A fast object `.reduce()` implementation. + * + * @param {Object} subject The object to reduce over. + * @param {Function} fn The reducer function. + * @param {mixed} initialValue The initial value for the reducer, defaults to subject[0]. + * @param {Object} thisContext The context for the reducer. + * @return {mixed} The final result. + */ +var reduce = function fastReduceObject (subject, fn, initialValue, thisContext) { + var keys = Object.keys(subject), + length = keys.length, + iterator = thisContext !== undefined ? bindInternal4(fn, thisContext) : fn, + i, key, result; + + if (initialValue === undefined) { + i = 1; + result = subject[keys[0]]; + } + else { + i = 0; + result = initialValue; + } + + for (; i < length; i++) { + key = keys[i]; + result = iterator(result, subject[key], key, subject); + } + + return result; +}; + +var styles$2 = namespace.styles; +var shims = namespace.shims; + + +var _byUnicode = {}; +var _byLigature = {}; +var _byOldName = {}; + +var build = function build() { + var lookup = function lookup(reducer) { + return reduce(styles$2, function (o, style, prefix) { + o[prefix] = reduce(style, reducer, {}); + return o; + }, {}); + }; + + _byUnicode = lookup(function (acc, icon, iconName) { + acc[icon[3]] = iconName; + + return acc; + }); + + _byLigature = lookup(function (acc, icon, iconName) { + var ligatures = icon[2]; + + acc[iconName] = iconName; + + ligatures.forEach(function (ligature) { + acc[ligature] = iconName; + }); + + return acc; + }); + + var hasRegular = 'far' in styles$2; + + _byOldName = reduce(shims, function (acc, shim) { + var oldName = shim[0]; + var prefix = shim[1]; + var iconName = shim[2]; + + if (prefix === 'far' && !hasRegular) { + prefix = 'fas'; + } + + acc[oldName] = { prefix: prefix, iconName: iconName }; + + return acc; + }, {}); +}; + +build(); + +function byUnicode(prefix, unicode) { + return _byUnicode[prefix][unicode]; +} + +function byLigature(prefix, ligature) { + return _byLigature[prefix][ligature]; +} + +function byOldName(name) { + return _byOldName[name] || { prefix: null, iconName: null }; +} + +var styles$1 = namespace.styles; + + +var emptyCanonicalIcon = function emptyCanonicalIcon() { + return { prefix: null, iconName: null, rest: [] }; +}; + +function getCanonicalIcon(values) { + return values.reduce(function (acc, cls) { + var iconName = getIconName(config.familyPrefix, cls); + + if (styles$1[cls]) { + acc.prefix = cls; + } else if (iconName) { + var shim = acc.prefix === 'fa' ? byOldName(iconName) : {}; + + acc.iconName = shim.iconName || iconName; + acc.prefix = shim.prefix || acc.prefix; + } else if (cls !== config.replacementClass && cls.indexOf('fa-w-') !== 0) { + acc.rest.push(cls); + } + + return acc; + }, emptyCanonicalIcon()); +} + +function iconFromMapping(mapping, prefix, iconName) { + if (mapping && mapping[prefix] && mapping[prefix][iconName]) { + return { + prefix: prefix, + iconName: iconName, + icon: mapping[prefix][iconName] + }; + } +} + +function toHtml(abstractNodes) { + var tag = abstractNodes.tag, + _abstractNodes$attrib = abstractNodes.attributes, + attributes = _abstractNodes$attrib === undefined ? {} : _abstractNodes$attrib, + _abstractNodes$childr = abstractNodes.children, + children = _abstractNodes$childr === undefined ? [] : _abstractNodes$childr; + + + if (typeof abstractNodes === 'string') { + return htmlEscape(abstractNodes); + } else { + return '<' + tag + ' ' + joinAttributes(attributes) + '>' + children.map(toHtml).join('') + ''; + } +} + +var noop$1 = function noop() {}; + +function isWatched(node) { + var i2svg = node.getAttribute ? node.getAttribute(DATA_FA_I2SVG) : null; + + return typeof i2svg === 'string'; +} + +function getMutator() { + if (config.autoReplaceSvg === true) { + return mutators.replace; + } + + var mutator = mutators[config.autoReplaceSvg]; + + return mutator || mutators.replace; +} + +var mutators = { + replace: function replace(mutation) { + var node = mutation[0]; + var abstract = mutation[1]; + var newOuterHTML = abstract.map(function (a) { + return toHtml(a); + }).join('\n'); + + if (node.parentNode && node.outerHTML) { + node.outerHTML = newOuterHTML + (config.keepOriginalSource && node.tagName.toLowerCase() !== 'svg' ? '' : ''); + } else if (node.parentNode) { + var newNode = document.createElement('span'); + node.parentNode.replaceChild(newNode, node); + newNode.outerHTML = newOuterHTML; + } + }, + nest: function nest(mutation) { + var node = mutation[0]; + var abstract = mutation[1]; + + // If we already have a replaced node we do not want to continue nesting within it. + // Short-circuit to the standard replacement + if (~classArray(node).indexOf(config.replacementClass)) { + return mutators.replace(mutation); + } + + var forSvg = new RegExp(config.familyPrefix + '-.*'); + + delete abstract[0].attributes.style; + + var splitClasses = abstract[0].attributes.class.split(' ').reduce(function (acc, cls) { + if (cls === config.replacementClass || cls.match(forSvg)) { + acc.toSvg.push(cls); + } else { + acc.toNode.push(cls); + } + + return acc; + }, { toNode: [], toSvg: [] }); + + abstract[0].attributes.class = splitClasses.toSvg.join(' '); + + var newInnerHTML = abstract.map(function (a) { + return toHtml(a); + }).join('\n'); + node.setAttribute('class', splitClasses.toNode.join(' ')); + node.setAttribute(DATA_FA_I2SVG, ''); + node.innerHTML = newInnerHTML; + } +}; + +function perform(mutations, callback) { + var callbackFunction = typeof callback === 'function' ? callback : noop$1; + + if (mutations.length === 0) { + callbackFunction(); + } else { + var frame = WINDOW.requestAnimationFrame || function (op) { + return op(); + }; + + frame(function () { + var mutator = getMutator(); + var mark = perf.begin('mutate'); + + mutations.map(mutator); + + mark(); + + callbackFunction(); + }); + } +} + +var disabled = false; + +function disableObservation(operation) { + disabled = true; + operation(); + disabled = false; +} + +var mo = null; + +function observe(options) { + if (!MUTATION_OBSERVER) { + return; + } + + if (!config.observeMutations) { + return; + } + + var treeCallback = options.treeCallback, + nodeCallback = options.nodeCallback, + pseudoElementsCallback = options.pseudoElementsCallback, + _options$observeMutat = options.observeMutationsRoot, + observeMutationsRoot = _options$observeMutat === undefined ? DOCUMENT.body : _options$observeMutat; + + + mo = new MUTATION_OBSERVER(function (objects) { + if (disabled) return; + + toArray(objects).forEach(function (mutationRecord) { + if (mutationRecord.type === 'childList' && mutationRecord.addedNodes.length > 0 && !isWatched(mutationRecord.addedNodes[0])) { + if (config.searchPseudoElements) { + pseudoElementsCallback(mutationRecord.target); + } + + treeCallback(mutationRecord.target); + } + + if (mutationRecord.type === 'attributes' && mutationRecord.target.parentNode && config.searchPseudoElements) { + pseudoElementsCallback(mutationRecord.target.parentNode); + } + + if (mutationRecord.type === 'attributes' && isWatched(mutationRecord.target) && ~ATTRIBUTES_WATCHED_FOR_MUTATION.indexOf(mutationRecord.attributeName)) { + if (mutationRecord.attributeName === 'class') { + var _getCanonicalIcon = getCanonicalIcon(classArray(mutationRecord.target)), + prefix = _getCanonicalIcon.prefix, + iconName = _getCanonicalIcon.iconName; + + if (prefix) mutationRecord.target.setAttribute('data-prefix', prefix); + if (iconName) mutationRecord.target.setAttribute('data-icon', iconName); + } else { + nodeCallback(mutationRecord.target); + } + } + }); + }); + + if (!IS_DOM) return; + + mo.observe(observeMutationsRoot, { + childList: true, attributes: true, characterData: true, subtree: true + }); +} + +function disconnect() { + if (!mo) return; + + mo.disconnect(); +} + +var styleParser = function (node) { + var style = node.getAttribute('style'); + + var val = []; + + if (style) { + val = style.split(';').reduce(function (acc, style) { + var styles = style.split(':'); + var prop = styles[0]; + var value = styles.slice(1); + + if (prop && value.length > 0) { + acc[prop] = value.join(':').trim(); + } + + return acc; + }, {}); + } + + return val; +}; + +function toHex(unicode) { + var result = ''; + + for (var i = 0; i < unicode.length; i++) { + var hex = unicode.charCodeAt(i).toString(16); + result += ('000' + hex).slice(-4); + } + + return result; +} + +var classParser = function (node) { + var existingPrefix = node.getAttribute('data-prefix'); + var existingIconName = node.getAttribute('data-icon'); + var innerText = node.innerText !== undefined ? node.innerText.trim() : ''; + + var val = getCanonicalIcon(classArray(node)); + + if (existingPrefix && existingIconName) { + val.prefix = existingPrefix; + val.iconName = existingIconName; + } + + if (val.prefix && innerText.length > 1) { + val.iconName = byLigature(val.prefix, node.innerText); + } else if (val.prefix && innerText.length === 1) { + val.iconName = byUnicode(val.prefix, toHex(node.innerText)); + } + + return val; +}; + +var parseTransformString = function parseTransformString(transformString) { + var transform = { + size: 16, + x: 0, + y: 0, + flipX: false, + flipY: false, + rotate: 0 + }; + + if (!transformString) { + return transform; + } else { + return transformString.toLowerCase().split(' ').reduce(function (acc, n) { + var parts = n.toLowerCase().split('-'); + var first = parts[0]; + var rest = parts.slice(1).join('-'); + + if (first && rest === 'h') { + acc.flipX = true; + return acc; + } + + if (first && rest === 'v') { + acc.flipY = true; + return acc; + } + + rest = parseFloat(rest); + + if (isNaN(rest)) { + return acc; + } + + switch (first) { + case 'grow': + acc.size = acc.size + rest; + break; + case 'shrink': + acc.size = acc.size - rest; + break; + case 'left': + acc.x = acc.x - rest; + break; + case 'right': + acc.x = acc.x + rest; + break; + case 'up': + acc.y = acc.y - rest; + break; + case 'down': + acc.y = acc.y + rest; + break; + case 'rotate': + acc.rotate = acc.rotate + rest; + break; + } + + return acc; + }, transform); + } +}; + +var transformParser = function (node) { + return parseTransformString(node.getAttribute('data-fa-transform')); +}; + +var symbolParser = function (node) { + var symbol = node.getAttribute('data-fa-symbol'); + + return symbol === null ? false : symbol === '' ? true : symbol; +}; + +var attributesParser = function (node) { + var extraAttributes = toArray(node.attributes).reduce(function (acc, attr) { + if (acc.name !== 'class' && acc.name !== 'style') { + acc[attr.name] = attr.value; + } + return acc; + }, {}); + + var title = node.getAttribute('title'); + + if (config.autoA11y) { + if (title) { + extraAttributes['aria-labelledby'] = config.replacementClass + '-title-' + nextUniqueId(); + } else { + extraAttributes['aria-hidden'] = 'true'; + } + } + + return extraAttributes; +}; + +var maskParser = function (node) { + var mask = node.getAttribute('data-fa-mask'); + + if (!mask) { + return emptyCanonicalIcon(); + } else { + return getCanonicalIcon(mask.split(' ').map(function (i) { + return i.trim(); + })); + } +}; + +var blankMeta = { + iconName: null, + title: null, + prefix: null, + transform: meaninglessTransform, + symbol: false, + mask: null, + extra: { classes: [], styles: {}, attributes: {} } +}; + +function parseMeta(node) { + var _classParser = classParser(node), + iconName = _classParser.iconName, + prefix = _classParser.prefix, + extraClasses = _classParser.rest; + + var extraStyles = styleParser(node); + var transform = transformParser(node); + var symbol = symbolParser(node); + var extraAttributes = attributesParser(node); + var mask = maskParser(node); + + return { + iconName: iconName, + title: node.getAttribute('title'), + prefix: prefix, + transform: transform, + symbol: symbol, + mask: mask, + extra: { + classes: extraClasses, + styles: extraStyles, + attributes: extraAttributes + } + }; +} + +function MissingIcon(error) { + this.name = 'MissingIcon'; + this.message = error || 'Icon unavailable'; + this.stack = new Error().stack; +} + +MissingIcon.prototype = Object.create(Error.prototype); +MissingIcon.prototype.constructor = MissingIcon; + +var FILL = { fill: 'currentColor' }; +var ANIMATION_BASE = { + attributeType: 'XML', + repeatCount: 'indefinite', + dur: '2s' +}; +var RING = { + tag: 'path', + attributes: _extends({}, FILL, { + d: 'M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z' + }) +}; +var OPACITY_ANIMATE = _extends({}, ANIMATION_BASE, { + attributeName: 'opacity' +}); +var DOT = { + tag: 'circle', + attributes: _extends({}, FILL, { + cx: '256', + cy: '364', + r: '28' + }), + children: [{ tag: 'animate', attributes: _extends({}, ANIMATION_BASE, { attributeName: 'r', values: '28;14;28;28;14;28;' }) }, { tag: 'animate', attributes: _extends({}, OPACITY_ANIMATE, { values: '1;0;1;1;0;1;' }) }] +}; +var QUESTION = { + tag: 'path', + attributes: _extends({}, FILL, { + opacity: '1', + d: 'M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z' + }), + children: [{ tag: 'animate', attributes: _extends({}, OPACITY_ANIMATE, { values: '1;0;0;0;0;1;' }) }] +}; +var EXCLAMATION = { + tag: 'path', + attributes: _extends({}, FILL, { + opacity: '0', + d: 'M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z' + }), + children: [{ tag: 'animate', attributes: _extends({}, OPACITY_ANIMATE, { values: '0;0;1;1;0;0;' }) }] +}; + +var missing = { tag: 'g', children: [RING, DOT, QUESTION, EXCLAMATION] }; + +var styles = namespace.styles; + +var LAYERS_TEXT_CLASSNAME = 'fa-layers-text'; +var FONT_FAMILY_PATTERN = /Font Awesome 5 (Solid|Regular|Light|Brands|Free|Pro)/; +var STYLE_TO_PREFIX = { + 'Solid': 'fas', + 'Regular': 'far', + 'Light': 'fal', + 'Brands': 'fab' +}; +var FONT_WEIGHT_TO_PREFIX = { + '900': 'fas', + '400': 'far', + '300': 'fal' +}; + +function findIcon(iconName, prefix) { + var val = { + found: false, + width: 512, + height: 512, + icon: missing + }; + + if (iconName && prefix && styles[prefix] && styles[prefix][iconName]) { + var icon = styles[prefix][iconName]; + var width = icon[0]; + var height = icon[1]; + var vectorData = icon.slice(4); + + val = { + found: true, + width: width, + height: height, + icon: { tag: 'path', attributes: { fill: 'currentColor', d: vectorData[0] } } + }; + } else if (iconName && prefix && !config.showMissingIcons) { + throw new MissingIcon('Icon is missing for prefix ' + prefix + ' with icon name ' + iconName); + } + + return val; +} + +function generateSvgReplacementMutation(node, nodeMeta) { + var iconName = nodeMeta.iconName, + title = nodeMeta.title, + prefix = nodeMeta.prefix, + transform = nodeMeta.transform, + symbol = nodeMeta.symbol, + mask = nodeMeta.mask, + extra = nodeMeta.extra; + + + return [node, makeInlineSvgAbstract({ + icons: { + main: findIcon(iconName, prefix), + mask: findIcon(mask.iconName, mask.prefix) + }, + prefix: prefix, + iconName: iconName, + transform: transform, + symbol: symbol, + mask: mask, + title: title, + extra: extra, + watchable: true + })]; +} + +function generateLayersText(node, nodeMeta) { + var title = nodeMeta.title, + transform = nodeMeta.transform, + extra = nodeMeta.extra; + + + var width = null; + var height = null; + + if (IS_IE) { + var computedFontSize = parseInt(getComputedStyle(node).fontSize, 10); + var boundingClientRect = node.getBoundingClientRect(); + width = boundingClientRect.width / computedFontSize; + height = boundingClientRect.height / computedFontSize; + } + + if (config.autoA11y && !title) { + extra.attributes['aria-hidden'] = 'true'; + } + + return [node, makeLayersTextAbstract({ + content: node.innerHTML, + width: width, + height: height, + transform: transform, + title: title, + extra: extra, + watchable: true + })]; +} + +function generateMutation(node) { + var nodeMeta = parseMeta(node); + + if (~nodeMeta.extra.classes.indexOf(LAYERS_TEXT_CLASSNAME)) { + return generateLayersText(node, nodeMeta); + } else { + return generateSvgReplacementMutation(node, nodeMeta); + } +} + +function searchPseudoElements(root) { + if (!IS_DOM) return; + + var end = perf.begin('searchPseudoElements'); + + disableObservation(function () { + toArray(root.querySelectorAll('*')).filter(function (n) { + return n.parentNode !== document.head && !~TAGNAMES_TO_SKIP_FOR_PSEUDOELEMENTS.indexOf(n.tagName.toUpperCase()) && !n.getAttribute(DATA_FA_PSEUDO_ELEMENT) && (!n.parentNode || n.parentNode.tagName !== 'svg'); + }).forEach(function (node) { + [':before', ':after'].forEach(function (pos) { + var children = toArray(node.children); + var alreadyProcessedPseudoElement = children.filter(function (c) { + return c.getAttribute(DATA_FA_PSEUDO_ELEMENT) === pos; + })[0]; + + var styles = WINDOW.getComputedStyle(node, pos); + var fontFamily = styles.getPropertyValue('font-family').match(FONT_FAMILY_PATTERN); + var fontWeight = styles.getPropertyValue('font-weight'); + + if (alreadyProcessedPseudoElement && !fontFamily) { + // If we've already processed it but the current computed style does not result in a font-family, + // that probably means that a class name that was previously present to make the icon has been + // removed. So we now should delete the icon. + node.removeChild(alreadyProcessedPseudoElement); + } else if (fontFamily) { + var content = styles.getPropertyValue('content'); + var prefix = ~['Light', 'Regular', 'Solid', 'Brands'].indexOf(fontFamily[1]) ? STYLE_TO_PREFIX[fontFamily[1]] : FONT_WEIGHT_TO_PREFIX[fontWeight]; + var iconName = byUnicode(prefix, toHex(content.length === 3 ? content.substr(1, 1) : content)); + // Only convert the pseudo element in this :before/:after position into an icon if we haven't + // already done so with the same prefix and iconName + if (!alreadyProcessedPseudoElement || alreadyProcessedPseudoElement.getAttribute(DATA_PREFIX) !== prefix || alreadyProcessedPseudoElement.getAttribute(DATA_ICON) !== iconName) { + if (alreadyProcessedPseudoElement) { + // Delete the old one, since we're replacing it with a new one + node.removeChild(alreadyProcessedPseudoElement); + } + + var extra = blankMeta.extra; + + extra.attributes[DATA_FA_PSEUDO_ELEMENT] = pos; + var abstract = makeInlineSvgAbstract(_extends({}, blankMeta, { + icons: { + main: findIcon(iconName, prefix), + mask: emptyCanonicalIcon() + }, + prefix: prefix, + iconName: iconName, + extra: extra, + watchable: true + })); + + var element = DOCUMENT.createElement('svg'); + + if (pos === ':before') { + node.insertBefore(element, node.firstChild); + } else { + node.appendChild(element); + } + + element.outerHTML = abstract.map(function (a) { + return toHtml(a); + }).join('\n'); + } + } + }); + }); + }); + + end(); +} + +function onTree(root) { + var callback = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + + if (!IS_DOM) return; + + var htmlClassList = DOCUMENT.documentElement.classList; + var hclAdd = function hclAdd(suffix) { + return htmlClassList.add(HTML_CLASS_I2SVG_BASE_CLASS + '-' + suffix); + }; + var hclRemove = function hclRemove(suffix) { + return htmlClassList.remove(HTML_CLASS_I2SVG_BASE_CLASS + '-' + suffix); + }; + var prefixes = Object.keys(styles); + var prefixesDomQuery = ['.' + LAYERS_TEXT_CLASSNAME + ':not([' + DATA_FA_I2SVG + '])'].concat(prefixes.map(function (p) { + return '.' + p + ':not([' + DATA_FA_I2SVG + '])'; + })).join(', '); + + if (prefixesDomQuery.length === 0) { + return; + } + + var candidates = toArray(root.querySelectorAll(prefixesDomQuery)); + + if (candidates.length > 0) { + hclAdd('pending'); + hclRemove('complete'); + } else { + return; + } + + var mark = perf.begin('onTree'); + + var mutations = candidates.reduce(function (acc, node) { + try { + var mutation = generateMutation(node); + + if (mutation) { + acc.push(mutation); + } + } catch (e) { + if (!PRODUCTION) { + if (e instanceof MissingIcon) { + console.error(e); + } + } + } + + return acc; + }, []); + + mark(); + + perform(mutations, function () { + hclAdd('active'); + hclAdd('complete'); + hclRemove('pending'); + + if (typeof callback === 'function') callback(); + }); +} + +function onNode(node) { + var callback = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + + var mutation = generateMutation(node); + + if (mutation) { + perform([mutation], callback); + } +} + +var baseStyles = "svg:not(:root).svg-inline--fa {\n overflow: visible; }\n\n.svg-inline--fa {\n display: inline-block;\n font-size: inherit;\n height: 1em;\n overflow: visible;\n vertical-align: -.125em; }\n .svg-inline--fa.fa-lg {\n vertical-align: -.225em; }\n .svg-inline--fa.fa-w-1 {\n width: 0.0625em; }\n .svg-inline--fa.fa-w-2 {\n width: 0.125em; }\n .svg-inline--fa.fa-w-3 {\n width: 0.1875em; }\n .svg-inline--fa.fa-w-4 {\n width: 0.25em; }\n .svg-inline--fa.fa-w-5 {\n width: 0.3125em; }\n .svg-inline--fa.fa-w-6 {\n width: 0.375em; }\n .svg-inline--fa.fa-w-7 {\n width: 0.4375em; }\n .svg-inline--fa.fa-w-8 {\n width: 0.5em; }\n .svg-inline--fa.fa-w-9 {\n width: 0.5625em; }\n .svg-inline--fa.fa-w-10 {\n width: 0.625em; }\n .svg-inline--fa.fa-w-11 {\n width: 0.6875em; }\n .svg-inline--fa.fa-w-12 {\n width: 0.75em; }\n .svg-inline--fa.fa-w-13 {\n width: 0.8125em; }\n .svg-inline--fa.fa-w-14 {\n width: 0.875em; }\n .svg-inline--fa.fa-w-15 {\n width: 0.9375em; }\n .svg-inline--fa.fa-w-16 {\n width: 1em; }\n .svg-inline--fa.fa-w-17 {\n width: 1.0625em; }\n .svg-inline--fa.fa-w-18 {\n width: 1.125em; }\n .svg-inline--fa.fa-w-19 {\n width: 1.1875em; }\n .svg-inline--fa.fa-w-20 {\n width: 1.25em; }\n .svg-inline--fa.fa-pull-left {\n margin-right: .3em;\n width: auto; }\n .svg-inline--fa.fa-pull-right {\n margin-left: .3em;\n width: auto; }\n .svg-inline--fa.fa-border {\n height: 1.5em; }\n .svg-inline--fa.fa-li {\n width: 2em; }\n .svg-inline--fa.fa-fw {\n width: 1.25em; }\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0; }\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -.125em;\n width: 1em; }\n .fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center; }\n\n.fa-layers-text, .fa-layers-counter {\n display: inline-block;\n position: absolute;\n text-align: center; }\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center; }\n\n.fa-layers-counter {\n background-color: #ff253a;\n border-radius: 1em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #fff;\n height: 1.5em;\n line-height: 1;\n max-width: 5em;\n min-width: 1.5em;\n overflow: hidden;\n padding: .25em;\n right: 0;\n text-overflow: ellipsis;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right; }\n\n.fa-layers-bottom-right {\n bottom: 0;\n right: 0;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right; }\n\n.fa-layers-bottom-left {\n bottom: 0;\n left: 0;\n right: auto;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left; }\n\n.fa-layers-top-right {\n right: 0;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right; }\n\n.fa-layers-top-left {\n left: 0;\n right: auto;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top left;\n transform-origin: top left; }\n\n.fa-lg {\n font-size: 1.33333em;\n line-height: 0.75em;\n vertical-align: -.0667em; }\n\n.fa-xs {\n font-size: .75em; }\n\n.fa-sm {\n font-size: .875em; }\n\n.fa-1x {\n font-size: 1em; }\n\n.fa-2x {\n font-size: 2em; }\n\n.fa-3x {\n font-size: 3em; }\n\n.fa-4x {\n font-size: 4em; }\n\n.fa-5x {\n font-size: 5em; }\n\n.fa-6x {\n font-size: 6em; }\n\n.fa-7x {\n font-size: 7em; }\n\n.fa-8x {\n font-size: 8em; }\n\n.fa-9x {\n font-size: 9em; }\n\n.fa-10x {\n font-size: 10em; }\n\n.fa-fw {\n text-align: center;\n width: 1.25em; }\n\n.fa-ul {\n list-style-type: none;\n margin-left: 2.5em;\n padding-left: 0; }\n .fa-ul > li {\n position: relative; }\n\n.fa-li {\n left: -2em;\n position: absolute;\n text-align: center;\n width: 2em;\n line-height: inherit; }\n\n.fa-border {\n border: solid 0.08em #eee;\n border-radius: .1em;\n padding: .2em .25em .15em; }\n\n.fa-pull-left {\n float: left; }\n\n.fa-pull-right {\n float: right; }\n\n.fa.fa-pull-left,\n.fas.fa-pull-left,\n.far.fa-pull-left,\n.fal.fa-pull-left,\n.fab.fa-pull-left {\n margin-right: .3em; }\n\n.fa.fa-pull-right,\n.fas.fa-pull-right,\n.far.fa-pull-right,\n.fal.fa-pull-right,\n.fab.fa-pull-right {\n margin-left: .3em; }\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear; }\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8); }\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n.fa-rotate-90 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg); }\n\n.fa-rotate-180 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg); }\n\n.fa-rotate-270 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg); }\n\n.fa-flip-horizontal {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1); }\n\n.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1); }\n\n.fa-flip-horizontal.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1); }\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n -webkit-filter: none;\n filter: none; }\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n position: relative;\n width: 2em; }\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0; }\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1em; }\n\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2em; }\n\n.fa-inverse {\n color: #fff; }\n\n.sr-only {\n border: 0;\n clip: rect(0, 0, 0, 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px; }\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n clip: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n position: static;\n width: auto; }\n"; + +var css = function () { + var dfp = DEFAULT_FAMILY_PREFIX; + var drc = DEFAULT_REPLACEMENT_CLASS; + var fp = config.familyPrefix; + var rc = config.replacementClass; + var s = baseStyles; + + if (fp !== dfp || rc !== drc) { + var dPatt = new RegExp('\\.' + dfp + '\\-', 'g'); + var rPatt = new RegExp('\\.' + drc, 'g'); + + s = s.replace(dPatt, '.' + fp + '-').replace(rPatt, '.' + rc); + } + + return s; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var Library = function () { + function Library() { + classCallCheck(this, Library); + + this.definitions = {}; + } + + createClass(Library, [{ + key: 'add', + value: function add() { + var _this = this; + + for (var _len = arguments.length, definitions = Array(_len), _key = 0; _key < _len; _key++) { + definitions[_key] = arguments[_key]; + } + + var additions = definitions.reduce(this._pullDefinitions, {}); + + Object.keys(additions).forEach(function (key) { + _this.definitions[key] = _extends({}, _this.definitions[key] || {}, additions[key]); + define(key, additions[key]); + build(); + }); + } + }, { + key: 'reset', + value: function reset() { + this.definitions = {}; + } + }, { + key: '_pullDefinitions', + value: function _pullDefinitions(additions, definition) { + var normalized = definition.prefix && definition.iconName && definition.icon ? { 0: definition } : definition; + + Object.keys(normalized).map(function (key) { + var _normalized$key = normalized[key], + prefix = _normalized$key.prefix, + iconName = _normalized$key.iconName, + icon = _normalized$key.icon; + + + if (!additions[prefix]) additions[prefix] = {}; + + additions[prefix][iconName] = icon; + }); + + return additions; + } + }]); + return Library; +}(); + +function prepIcon(icon) { + var width = icon[0]; + var height = icon[1]; + var vectorData = icon.slice(4); + + return { + found: true, + width: width, + height: height, + icon: { tag: 'path', attributes: { fill: 'currentColor', d: vectorData[0] } } + }; +} + +function ensureCss() { + if (config.autoAddCss && !_cssInserted) { + insertCss(css()); + _cssInserted = true; + } +} + +function apiObject(val, abstractCreator) { + Object.defineProperty(val, 'abstract', { + get: abstractCreator + }); + + Object.defineProperty(val, 'html', { + get: function get() { + return val.abstract.map(function (a) { + return toHtml(a); + }); + } + }); + + Object.defineProperty(val, 'node', { + get: function get() { + if (!IS_DOM) return; + + var container = DOCUMENT.createElement('div'); + container.innerHTML = val.html; + return container.children; + } + }); + + return val; +} + +function findIconDefinition(params) { + var _params$prefix = params.prefix, + prefix = _params$prefix === undefined ? 'fa' : _params$prefix, + iconName = params.iconName; + + + if (!iconName) return; + + return iconFromMapping(library.definitions, prefix, iconName) || iconFromMapping(namespace.styles, prefix, iconName); +} + +function resolveIcons(next) { + return function (maybeIconDefinition) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + + var iconDefinition = (maybeIconDefinition || {}).icon ? maybeIconDefinition : findIconDefinition(maybeIconDefinition || {}); + + var mask = params.mask; + + + if (mask) { + mask = (mask || {}).icon ? mask : findIconDefinition(mask || {}); + } + + return next(iconDefinition, _extends({}, params, { mask: mask })); + }; +} + +var library = new Library(); + +var noAuto = function noAuto() { + config.autoReplaceSvg = false; + config.observeMutations = false; + + disconnect(); +}; + +var _cssInserted = false; + +var dom = { + i2svg: function i2svg() { + var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + + if (IS_DOM) { + ensureCss(); + + var _params$node = params.node, + node = _params$node === undefined ? DOCUMENT : _params$node, + _params$callback = params.callback, + callback = _params$callback === undefined ? function () {} : _params$callback; + + + if (config.searchPseudoElements) { + searchPseudoElements(node); + } + + onTree(node, callback); + } + }, + + css: css, + + insertCss: function insertCss$$1() { + if (!_cssInserted) { + insertCss(css()); + _cssInserted = true; + } + }, + + watch: function watch() { + var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var autoReplaceSvgRoot = params.autoReplaceSvgRoot, + observeMutationsRoot = params.observeMutationsRoot; + + + if (config.autoReplaceSvg === false) { + config.autoReplaceSvg = true; + } + + config.observeMutations = true; + + domready(function () { + autoReplace({ + autoReplaceSvgRoot: autoReplaceSvgRoot + }); + + observe({ + treeCallback: onTree, + nodeCallback: onNode, + pseudoElementsCallback: searchPseudoElements, + observeMutationsRoot: observeMutationsRoot + }); + }); + } +}; + +var parse = { + transform: function transform(transformString) { + return parseTransformString(transformString); + } +}; + +var icon = resolveIcons(function (iconDefinition) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _params$transform = params.transform, + transform = _params$transform === undefined ? meaninglessTransform : _params$transform, + _params$symbol = params.symbol, + symbol = _params$symbol === undefined ? false : _params$symbol, + _params$mask = params.mask, + mask = _params$mask === undefined ? null : _params$mask, + _params$title = params.title, + title = _params$title === undefined ? null : _params$title, + _params$classes = params.classes, + classes = _params$classes === undefined ? [] : _params$classes, + _params$attributes = params.attributes, + attributes = _params$attributes === undefined ? {} : _params$attributes, + _params$styles = params.styles, + styles = _params$styles === undefined ? {} : _params$styles; + + + if (!iconDefinition) return; + + var prefix = iconDefinition.prefix, + iconName = iconDefinition.iconName, + icon = iconDefinition.icon; + + + return apiObject(_extends({ type: 'icon' }, iconDefinition), function () { + ensureCss(); + + if (config.autoA11y) { + if (title) { + attributes['aria-labelledby'] = config.replacementClass + '-title-' + nextUniqueId(); + } else { + attributes['aria-hidden'] = 'true'; + } + } + + return makeInlineSvgAbstract({ + icons: { + main: prepIcon(icon), + mask: mask ? prepIcon(mask.icon) : { found: false, width: null, height: null, icon: {} } + }, + prefix: prefix, + iconName: iconName, + transform: _extends({}, meaninglessTransform, transform), + symbol: symbol, + title: title, + extra: { + attributes: attributes, + styles: styles, + classes: classes + } + }); + }); +}); + +var text = function text(content) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _params$transform2 = params.transform, + transform = _params$transform2 === undefined ? meaninglessTransform : _params$transform2, + _params$title2 = params.title, + title = _params$title2 === undefined ? null : _params$title2, + _params$classes2 = params.classes, + classes = _params$classes2 === undefined ? [] : _params$classes2, + _params$attributes2 = params.attributes, + attributes = _params$attributes2 === undefined ? {} : _params$attributes2, + _params$styles2 = params.styles, + styles = _params$styles2 === undefined ? {} : _params$styles2; + + + return apiObject({ type: 'text', content: content }, function () { + ensureCss(); + + return makeLayersTextAbstract({ + content: content, + transform: _extends({}, meaninglessTransform, transform), + title: title, + extra: { + attributes: attributes, + styles: styles, + classes: [config.familyPrefix + '-layers-text'].concat(toConsumableArray(classes)) + } + }); + }); +}; + +var counter = function counter(content) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _params$title3 = params.title, + title = _params$title3 === undefined ? null : _params$title3, + _params$classes3 = params.classes, + classes = _params$classes3 === undefined ? [] : _params$classes3, + _params$attributes3 = params.attributes, + attributes = _params$attributes3 === undefined ? {} : _params$attributes3, + _params$styles3 = params.styles, + styles = _params$styles3 === undefined ? {} : _params$styles3; + + + return apiObject({ type: 'counter', content: content }, function () { + ensureCss(); + + return makeLayersCounterAbstract({ + content: content.toString(), + title: title, + extra: { + attributes: attributes, + styles: styles, + classes: [config.familyPrefix + '-layers-counter'].concat(toConsumableArray(classes)) + } + }); + }); +}; + +var layer = function layer(assembler) { + return apiObject({ type: 'layer' }, function () { + ensureCss(); + + var children = []; + + assembler(function (args) { + Array.isArray(args) ? args.map(function (a) { + children = children.concat(a.abstract); + }) : children = children.concat(args.abstract); + }); + + return [{ + tag: 'span', + attributes: { class: config.familyPrefix + '-layers' }, + children: children + }]; + }); +}; + +var api = { + noAuto: noAuto, + config: config, + dom: dom, + library: library, + parse: parse, + findIconDefinition: findIconDefinition, + icon: icon, + text: text, + counter: counter, + layer: layer, + toHtml: toHtml +}; + +var autoReplace = function autoReplace() { + var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var _params$autoReplaceSv = params.autoReplaceSvgRoot, + autoReplaceSvgRoot = _params$autoReplaceSv === undefined ? DOCUMENT : _params$autoReplaceSv; + + + if (Object.keys(namespace.styles).length > 0 && IS_DOM && config.autoReplaceSvg) api.dom.i2svg({ node: autoReplaceSvgRoot }); +}; + +function bootstrap() { + if (IS_BROWSER) { + if (!WINDOW.FontAwesome) { + WINDOW.FontAwesome = api; + } + + domready(function () { + autoReplace(); + + observe({ + treeCallback: onTree, + nodeCallback: onNode, + pseudoElementsCallback: searchPseudoElements + }); + }); + } + + namespace.hooks = _extends({}, namespace.hooks, { + + addPack: function addPack(prefix, icons) { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, icons); + + build(); + autoReplace(); + }, + + addShims: function addShims(shims) { + var _namespace$shims; + + (_namespace$shims = namespace.shims).push.apply(_namespace$shims, toConsumableArray(shims)); + + build(); + autoReplace(); + } + }); +} + +bunker(bootstrap); + +}()); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/fontawesome.min.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/fontawesome.min.js new file mode 100644 index 0000000000..1ee1e39a42 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/fontawesome.min.js @@ -0,0 +1,1054 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +!function() { + "use strict"; + var t = function() {}, e = {}, n = {}, r = null, a = { + mark: t, + measure: t + }; + try { + "undefined" != typeof window && (e = window), "undefined" != typeof document && (n = document), + "undefined" != typeof MutationObserver && (r = MutationObserver), "undefined" != typeof performance && (a = performance); + } catch (t) {} + var i = (e.navigator || {}).userAgent, o = void 0 === i ? "" : i, m = e, d = n, s = r, l = a, f = !!m.document, c = !!d.documentElement && !!d.head && "function" == typeof d.addEventListener && "function" == typeof d.createElement, k = ~o.indexOf("MSIE") || ~o.indexOf("Trident/"), u = "___FONT_AWESOME___", C = 16, g = "svg-inline--fa", M = "data-fa-i2svg", h = "data-fa-pseudo-element", p = "data-prefix", v = "data-icon", b = "fontawesome-i2svg", y = [ "HTML", "HEAD", "STYLE", "SCRIPT" ], w = function() { + try { + return !1; + } catch (t) { + return !1; + } + }(), x = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ], A = x.concat([ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ]), N = [ "class", "data-prefix", "data-icon", "data-fa-transform", "data-fa-mask" ], z = [ "xs", "sm", "lg", "fw", "ul", "li", "border", "pull-left", "pull-right", "spin", "pulse", "rotate-90", "rotate-180", "rotate-270", "flip-horizontal", "flip-vertical", "stack", "stack-1x", "stack-2x", "inverse", "layers", "layers-text", "layers-counter" ].concat(x.map(function(t) { + return t + "x"; + })).concat(A.map(function(t) { + return "w-" + t; + })), S = function(t, e) { + if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function"); + }, L = function() { + function r(t, e) { + for (var n = 0; n < e.length; n++) { + var r = e[n]; + r.enumerable = r.enumerable || !1, r.configurable = !0, "value" in r && (r.writable = !0), + Object.defineProperty(t, r.key, r); + } + } + return function(t, e, n) { + return e && r(t.prototype, e), n && r(t, n), t; + }; + }(), E = Object.assign || function(t) { + for (var e = 1; e < arguments.length; e++) { + var n = arguments[e]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (t[r] = n[r]); + } + return t; + }, O = function(t, e) { + if (Array.isArray(t)) return t; + if (Symbol.iterator in Object(t)) return function(t, e) { + var n = [], r = !0, a = !1, i = void 0; + try { + for (var o, s = t[Symbol.iterator](); !(r = (o = s.next()).done) && (n.push(o.value), + !e || n.length !== e); r = !0) ; + } catch (t) { + a = !0, i = t; + } finally { + try { + !r && s.return && s.return(); + } finally { + if (a) throw i; + } + } + return n; + }(t, e); + throw new TypeError("Invalid attempt to destructure non-iterable instance"); + }, P = function(t) { + if (Array.isArray(t)) { + for (var e = 0, n = Array(t.length); e < t.length; e++) n[e] = t[e]; + return n; + } + return Array.from(t); + }, T = m.FontAwesomeConfig || {}; + if (d && "function" == typeof d.querySelector) { + [ [ "data-family-prefix", "familyPrefix" ], [ "data-replacement-class", "replacementClass" ], [ "data-auto-replace-svg", "autoReplaceSvg" ], [ "data-auto-add-css", "autoAddCss" ], [ "data-auto-a11y", "autoA11y" ], [ "data-search-pseudo-elements", "searchPseudoElements" ], [ "data-observe-mutations", "observeMutations" ], [ "data-keep-original-source", "keepOriginalSource" ], [ "data-measure-performance", "measurePerformance" ], [ "data-show-missing-icons", "showMissingIcons" ] ].forEach(function(t) { + var e, n = O(t, 2), r = n[0], a = n[1], i = "" === (e = function(t) { + var e = d.querySelector("script[" + t + "]"); + if (e) return e.getAttribute(t); + }(r)) || "false" !== e && ("true" === e || e); + null != i && (T[a] = i); + }); + } + var j = E({ + familyPrefix: "fa", + replacementClass: g, + autoReplaceSvg: !0, + autoAddCss: !0, + autoA11y: !0, + searchPseudoElements: !1, + observeMutations: !0, + keepOriginalSource: !0, + measurePerformance: !1, + showMissingIcons: !0 + }, T); + j.autoReplaceSvg || (j.observeMutations = !1); + var R = E({}, j); + m.FontAwesomeConfig = R; + var I = m || {}; + I[u] || (I[u] = {}), I[u].styles || (I[u].styles = {}), I[u].hooks || (I[u].hooks = {}), + I[u].shims || (I[u].shims = []); + var H = I[u], B = [], D = !1; + c && ((D = (d.documentElement.doScroll ? /^loaded|^c/ : /^loaded|^i|^c/).test(d.readyState)) || d.addEventListener("DOMContentLoaded", function t() { + d.removeEventListener("DOMContentLoaded", t), D = 1, B.map(function(t) { + return t(); + }); + })); + var X = function(t) { + c && (D ? setTimeout(t, 0) : B.push(t)); + }, F = C, _ = { + size: 16, + x: 0, + y: 0, + rotate: 0, + flipX: !1, + flipY: !1 + }; + function Y(t) { + if (t && c) { + var e = d.createElement("style"); + e.setAttribute("type", "text/css"), e.innerHTML = t; + for (var n = d.head.childNodes, r = null, a = n.length - 1; -1 < a; a--) { + var i = n[a], o = (i.tagName || "").toUpperCase(); + -1 < [ "STYLE", "LINK" ].indexOf(o) && (r = i); + } + return d.head.insertBefore(e, r), t; + } + } + var W = 0; + function q() { + return ++W; + } + function U(t) { + for (var e = [], n = (t || []).length >>> 0; n--; ) e[n] = t[n]; + return e; + } + function V(t) { + return t.classList ? U(t.classList) : (t.getAttribute("class") || "").split(" ").filter(function(t) { + return t; + }); + } + function K(t, e) { + var n, r = e.split("-"), a = r[0], i = r.slice(1).join("-"); + return a !== t || "" === i || (n = i, ~z.indexOf(n)) ? null : i; + } + function G(t) { + return ("" + t).replace(/&/g, "&").replace(/"/g, """).replace(/'/g, "'").replace(//g, ">"); + } + function J(n) { + return Object.keys(n || {}).reduce(function(t, e) { + return t + (e + ": ") + n[e] + ";"; + }, ""); + } + function Q(t) { + return t.size !== _.size || t.x !== _.x || t.y !== _.y || t.rotate !== _.rotate || t.flipX || t.flipY; + } + function Z(t) { + var e = t.transform, n = t.containerWidth, r = t.iconWidth; + return { + outer: { + transform: "translate(" + n / 2 + " 256)" + }, + inner: { + transform: "translate(" + 32 * e.x + ", " + 32 * e.y + ") " + " " + ("scale(" + e.size / 16 * (e.flipX ? -1 : 1) + ", " + e.size / 16 * (e.flipY ? -1 : 1) + ") ") + " " + ("rotate(" + e.rotate + " 0 0)") + }, + path: { + transform: "translate(" + r / 2 * -1 + " -256)" + } + }; + } + var $ = { + x: 0, + y: 0, + width: "100%", + height: "100%" + }, tt = function(t) { + var e = t.children, n = t.attributes, r = t.main, a = t.mask, i = t.transform, o = r.width, s = r.icon, l = a.width, f = a.icon, c = Z({ + transform: i, + containerWidth: l, + iconWidth: o + }), u = { + tag: "rect", + attributes: E({}, $, { + fill: "white" + }) + }, m = { + tag: "g", + attributes: E({}, c.inner), + children: [ { + tag: "path", + attributes: E({}, s.attributes, c.path, { + fill: "black" + }) + } ] + }, d = { + tag: "g", + attributes: E({}, c.outer), + children: [ m ] + }, g = "mask-" + q(), h = "clip-" + q(), p = { + tag: "defs", + children: [ { + tag: "clipPath", + attributes: { + id: h + }, + children: [ f ] + }, { + tag: "mask", + attributes: E({}, $, { + id: g, + maskUnits: "userSpaceOnUse", + maskContentUnits: "userSpaceOnUse" + }), + children: [ u, d ] + } ] + }; + return e.push(p, { + tag: "rect", + attributes: E({ + fill: "currentColor", + "clip-path": "url(#" + h + ")", + mask: "url(#" + g + ")" + }, $) + }), { + children: e, + attributes: n + }; + }, et = function(t) { + var e = t.children, n = t.attributes, r = t.main, a = t.transform, i = J(t.styles); + if (0 < i.length && (n.style = i), Q(a)) { + var o = Z({ + transform: a, + containerWidth: r.width, + iconWidth: r.width + }); + e.push({ + tag: "g", + attributes: E({}, o.outer), + children: [ { + tag: "g", + attributes: E({}, o.inner), + children: [ { + tag: r.icon.tag, + children: r.icon.children, + attributes: E({}, r.icon.attributes, o.path) + } ] + } ] + }); + } else e.push(r.icon); + return { + children: e, + attributes: n + }; + }, nt = function(t) { + var e = t.children, n = t.main, r = t.mask, a = t.attributes, i = t.styles, o = t.transform; + if (Q(o) && n.found && !r.found) { + var s = n.width / n.height / 2, l = .5; + a.style = J(E({}, i, { + "transform-origin": s + o.x / 16 + "em " + (l + o.y / 16) + "em" + })); + } + return [ { + tag: "svg", + attributes: a, + children: e + } ]; + }, rt = function(t) { + var e = t.prefix, n = t.iconName, r = t.children, a = t.attributes, i = t.symbol, o = !0 === i ? e + "-" + R.familyPrefix + "-" + n : i; + return [ { + tag: "svg", + attributes: { + style: "display: none;" + }, + children: [ { + tag: "symbol", + attributes: E({}, a, { + id: o + }), + children: r + } ] + } ]; + }; + function at(t) { + var e = t.icons, n = e.main, r = e.mask, a = t.prefix, i = t.iconName, o = t.transform, s = t.symbol, l = t.title, f = t.extra, c = t.watchable, u = void 0 !== c && c, m = r.found ? r : n, d = m.width, g = m.height, h = "fa-w-" + Math.ceil(d / g * 16), p = [ R.replacementClass, i ? R.familyPrefix + "-" + i : "", h ].filter(function(t) { + return -1 === f.classes.indexOf(t); + }).concat(f.classes).join(" "), v = { + children: [], + attributes: E({}, f.attributes, { + "data-prefix": a, + "data-icon": i, + class: p, + role: "img", + xmlns: "http://www.w3.org/2000/svg", + viewBox: "0 0 " + d + " " + g + }) + }; + u && (v.attributes[M] = ""), l && v.children.push({ + tag: "title", + attributes: { + id: v.attributes["aria-labelledby"] || "title-" + q() + }, + children: [ l ] + }); + var b = E({}, v, { + prefix: a, + iconName: i, + main: n, + mask: r, + transform: o, + symbol: s, + styles: f.styles + }), y = r.found && n.found ? tt(b) : et(b), w = y.children, x = y.attributes; + return b.children = w, b.attributes = x, s ? rt(b) : nt(b); + } + function it(t) { + var e = t.content, n = t.width, r = t.height, a = t.transform, i = t.title, o = t.extra, s = t.watchable, l = void 0 !== s && s, f = E({}, o.attributes, i ? { + title: i + } : {}, { + class: o.classes.join(" ") + }); + l && (f[M] = ""); + var c, u, m, d, g, h, p, v, b, y = E({}, o.styles); + Q(a) && (y.transform = (u = (c = { + transform: a, + startCentered: !0, + width: n, + height: r + }).transform, m = c.width, d = void 0 === m ? C : m, g = c.height, h = void 0 === g ? C : g, + p = c.startCentered, b = "", b += (v = void 0 !== p && p) && k ? "translate(" + (u.x / F - d / 2) + "em, " + (u.y / F - h / 2) + "em) " : v ? "translate(calc(-50% + " + u.x / F + "em), calc(-50% + " + u.y / F + "em)) " : "translate(" + u.x / F + "em, " + u.y / F + "em) ", + b += "scale(" + u.size / F * (u.flipX ? -1 : 1) + ", " + u.size / F * (u.flipY ? -1 : 1) + ") ", + b += "rotate(" + u.rotate + "deg) "), y["-webkit-transform"] = y.transform); + var w = J(y); + 0 < w.length && (f.style = w); + var x = []; + return x.push({ + tag: "span", + attributes: f, + children: [ e ] + }), i && x.push({ + tag: "span", + attributes: { + class: "sr-only" + }, + children: [ i ] + }), x; + } + var ot = function() {}, st = R.measurePerformance && l && l.mark && l.measure ? l : { + mark: ot, + measure: ot + }, lt = 'FA "5.1.1"', ft = function(t) { + st.mark(lt + " " + t + " ends"), st.measure(lt + " " + t, lt + " " + t + " begins", lt + " " + t + " ends"); + }, ct = { + begin: function(t) { + return st.mark(lt + " " + t + " begins"), function() { + return ft(t); + }; + }, + end: ft + }, ut = function(t, e, n, r) { + var a, i, o, s, l, f = Object.keys(t), c = f.length, u = void 0 !== r ? (s = e, + l = r, function(t, e, n, r) { + return s.call(l, t, e, n, r); + }) : e; + for (void 0 === n ? (a = 1, o = t[f[0]]) : (a = 0, o = n); a < c; a++) o = u(o, t[i = f[a]], i, t); + return o; + }, mt = H.styles, dt = H.shims, gt = {}, ht = {}, pt = {}, vt = function() { + var t = function(r) { + return ut(mt, function(t, e, n) { + return t[n] = ut(e, r, {}), t; + }, {}); + }; + gt = t(function(t, e, n) { + return t[e[3]] = n, t; + }), ht = t(function(e, t, n) { + var r = t[2]; + return e[n] = n, r.forEach(function(t) { + e[t] = n; + }), e; + }); + var i = "far" in mt; + pt = ut(dt, function(t, e) { + var n = e[0], r = e[1], a = e[2]; + return "far" !== r || i || (r = "fas"), t[n] = { + prefix: r, + iconName: a + }, t; + }, {}); + }; + function bt(t, e) { + return gt[t][e]; + } + vt(); + var yt = H.styles, wt = function() { + return { + prefix: null, + iconName: null, + rest: [] + }; + }; + function xt(t) { + return t.reduce(function(t, e) { + var n = K(R.familyPrefix, e); + if (yt[e]) t.prefix = e; else if (n) { + var r = "fa" === t.prefix ? pt[n] || { + prefix: null, + iconName: null + } : {}; + t.iconName = r.iconName || n, t.prefix = r.prefix || t.prefix; + } else e !== R.replacementClass && 0 !== e.indexOf("fa-w-") && t.rest.push(e); + return t; + }, wt()); + } + function kt(t, e, n) { + if (t && t[e] && t[e][n]) return { + prefix: e, + iconName: n, + icon: t[e][n] + }; + } + function Ct(t) { + var n, e = t.tag, r = t.attributes, a = void 0 === r ? {} : r, i = t.children, o = void 0 === i ? [] : i; + return "string" == typeof t ? G(t) : "<" + e + " " + (n = a, Object.keys(n || {}).reduce(function(t, e) { + return t + (e + '="') + G(n[e]) + '" '; + }, "").trim()) + ">" + o.map(Ct).join("") + ""; + } + var Mt = function() {}; + function At(t) { + return "string" == typeof (t.getAttribute ? t.getAttribute(M) : null); + } + var Nt = { + replace: function(t) { + var e = t[0], n = t[1].map(function(t) { + return Ct(t); + }).join("\n"); + if (e.parentNode && e.outerHTML) e.outerHTML = n + (R.keepOriginalSource && "svg" !== e.tagName.toLowerCase() ? "\x3c!-- " + e.outerHTML + " --\x3e" : ""); else if (e.parentNode) { + var r = document.createElement("span"); + e.parentNode.replaceChild(r, e), r.outerHTML = n; + } + }, + nest: function(t) { + var e = t[0], n = t[1]; + if (~V(e).indexOf(R.replacementClass)) return Nt.replace(t); + var r = new RegExp(R.familyPrefix + "-.*"); + delete n[0].attributes.style; + var a = n[0].attributes.class.split(" ").reduce(function(t, e) { + return e === R.replacementClass || e.match(r) ? t.toSvg.push(e) : t.toNode.push(e), + t; + }, { + toNode: [], + toSvg: [] + }); + n[0].attributes.class = a.toSvg.join(" "); + var i = n.map(function(t) { + return Ct(t); + }).join("\n"); + e.setAttribute("class", a.toNode.join(" ")), e.setAttribute(M, ""), e.innerHTML = i; + } + }; + function zt(n, t) { + var r = "function" == typeof t ? t : Mt; + 0 === n.length ? r() : (m.requestAnimationFrame || function(t) { + return t(); + })(function() { + var t = !0 === R.autoReplaceSvg ? Nt.replace : Nt[R.autoReplaceSvg] || Nt.replace, e = ct.begin("mutate"); + n.map(t), e(), r(); + }); + } + var St = !1; + var Lt = null; + function Et(t) { + if (s && R.observeMutations) { + var a = t.treeCallback, i = t.nodeCallback, o = t.pseudoElementsCallback, e = t.observeMutationsRoot, n = void 0 === e ? d.body : e; + Lt = new s(function(t) { + St || U(t).forEach(function(t) { + if ("childList" === t.type && 0 < t.addedNodes.length && !At(t.addedNodes[0]) && (R.searchPseudoElements && o(t.target), + a(t.target)), "attributes" === t.type && t.target.parentNode && R.searchPseudoElements && o(t.target.parentNode), + "attributes" === t.type && At(t.target) && ~N.indexOf(t.attributeName)) if ("class" === t.attributeName) { + var e = xt(V(t.target)), n = e.prefix, r = e.iconName; + n && t.target.setAttribute("data-prefix", n), r && t.target.setAttribute("data-icon", r); + } else i(t.target); + }); + }), c && Lt.observe(n, { + childList: !0, + attributes: !0, + characterData: !0, + subtree: !0 + }); + } + } + var Ot = function(t) { + var e = t.getAttribute("style"), n = []; + return e && (n = e.split(";").reduce(function(t, e) { + var n = e.split(":"), r = n[0], a = n.slice(1); + return r && 0 < a.length && (t[r] = a.join(":").trim()), t; + }, {})), n; + }; + function Pt(t) { + for (var e = "", n = 0; n < t.length; n++) { + e += ("000" + t.charCodeAt(n).toString(16)).slice(-4); + } + return e; + } + var Tt = function(t) { + var e, n, r = t.getAttribute("data-prefix"), a = t.getAttribute("data-icon"), i = void 0 !== t.innerText ? t.innerText.trim() : "", o = xt(V(t)); + return r && a && (o.prefix = r, o.iconName = a), o.prefix && 1 < i.length ? o.iconName = (e = o.prefix, + n = t.innerText, ht[e][n]) : o.prefix && 1 === i.length && (o.iconName = bt(o.prefix, Pt(t.innerText))), + o; + }, jt = function(t) { + var e = { + size: 16, + x: 0, + y: 0, + flipX: !1, + flipY: !1, + rotate: 0 + }; + return t ? t.toLowerCase().split(" ").reduce(function(t, e) { + var n = e.toLowerCase().split("-"), r = n[0], a = n.slice(1).join("-"); + if (r && "h" === a) return t.flipX = !0, t; + if (r && "v" === a) return t.flipY = !0, t; + if (a = parseFloat(a), isNaN(a)) return t; + switch (r) { + case "grow": + t.size = t.size + a; + break; + + case "shrink": + t.size = t.size - a; + break; + + case "left": + t.x = t.x - a; + break; + + case "right": + t.x = t.x + a; + break; + + case "up": + t.y = t.y - a; + break; + + case "down": + t.y = t.y + a; + break; + + case "rotate": + t.rotate = t.rotate + a; + } + return t; + }, e) : e; + }, Rt = function(t) { + return jt(t.getAttribute("data-fa-transform")); + }, It = function(t) { + var e = t.getAttribute("data-fa-symbol"); + return null !== e && ("" === e || e); + }, Ht = function(t) { + var e = U(t.attributes).reduce(function(t, e) { + return "class" !== t.name && "style" !== t.name && (t[e.name] = e.value), t; + }, {}), n = t.getAttribute("title"); + return R.autoA11y && (n ? e["aria-labelledby"] = R.replacementClass + "-title-" + q() : e["aria-hidden"] = "true"), + e; + }, Bt = function(t) { + var e = t.getAttribute("data-fa-mask"); + return e ? xt(e.split(" ").map(function(t) { + return t.trim(); + })) : wt(); + }, Dt = { + iconName: null, + title: null, + prefix: null, + transform: _, + symbol: !1, + mask: null, + extra: { + classes: [], + styles: {}, + attributes: {} + } + }; + function Xt(t) { + this.name = "MissingIcon", this.message = t || "Icon unavailable", this.stack = new Error().stack; + } + (Xt.prototype = Object.create(Error.prototype)).constructor = Xt; + var Ft = { + fill: "currentColor" + }, _t = { + attributeType: "XML", + repeatCount: "indefinite", + dur: "2s" + }, Yt = { + tag: "path", + attributes: E({}, Ft, { + d: "M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z" + }) + }, Wt = E({}, _t, { + attributeName: "opacity" + }), qt = { + tag: "g", + children: [ Yt, { + tag: "circle", + attributes: E({}, Ft, { + cx: "256", + cy: "364", + r: "28" + }), + children: [ { + tag: "animate", + attributes: E({}, _t, { + attributeName: "r", + values: "28;14;28;28;14;28;" + }) + }, { + tag: "animate", + attributes: E({}, Wt, { + values: "1;0;1;1;0;1;" + }) + } ] + }, { + tag: "path", + attributes: E({}, Ft, { + opacity: "1", + d: "M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z" + }), + children: [ { + tag: "animate", + attributes: E({}, Wt, { + values: "1;0;0;0;0;1;" + }) + } ] + }, { + tag: "path", + attributes: E({}, Ft, { + opacity: "0", + d: "M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z" + }), + children: [ { + tag: "animate", + attributes: E({}, Wt, { + values: "0;0;1;1;0;0;" + }) + } ] + } ] + }, Ut = H.styles, Vt = "fa-layers-text", Kt = /Font Awesome 5 (Solid|Regular|Light|Brands|Free|Pro)/, Gt = { + Solid: "fas", + Regular: "far", + Light: "fal", + Brands: "fab" + }, Jt = { + 900: "fas", + 400: "far", + 300: "fal" + }; + function Qt(t, e) { + var n = { + found: !1, + width: 512, + height: 512, + icon: qt + }; + if (t && e && Ut[e] && Ut[e][t]) { + var r = Ut[e][t]; + n = { + found: !0, + width: r[0], + height: r[1], + icon: { + tag: "path", + attributes: { + fill: "currentColor", + d: r.slice(4)[0] + } + } + }; + } else if (t && e && !R.showMissingIcons) throw new Xt("Icon is missing for prefix " + e + " with icon name " + t); + return n; + } + function Zt(t) { + var e, n, r, a, i, o, s, l, f, c, u, m, d, g, h, p, v, b, y, w = (n = Tt(e = t), + r = n.iconName, a = n.prefix, i = n.rest, o = Ot(e), s = Rt(e), l = It(e), f = Ht(e), + c = Bt(e), { + iconName: r, + title: e.getAttribute("title"), + prefix: a, + transform: s, + symbol: l, + mask: c, + extra: { + classes: i, + styles: o, + attributes: f + } + }); + return ~w.extra.classes.indexOf(Vt) ? function(t, e) { + var n = e.title, r = e.transform, a = e.extra, i = null, o = null; + if (k) { + var s = parseInt(getComputedStyle(t).fontSize, 10), l = t.getBoundingClientRect(); + i = l.width / s, o = l.height / s; + } + return R.autoA11y && !n && (a.attributes["aria-hidden"] = "true"), [ t, it({ + content: t.innerHTML, + width: i, + height: o, + transform: r, + title: n, + extra: a, + watchable: !0 + }) ]; + }(t, w) : (u = t, d = (m = w).iconName, g = m.title, h = m.prefix, p = m.transform, + v = m.symbol, b = m.mask, y = m.extra, [ u, at({ + icons: { + main: Qt(d, h), + mask: Qt(b.iconName, b.prefix) + }, + prefix: h, + iconName: d, + transform: p, + symbol: v, + mask: b, + title: g, + extra: y, + watchable: !0 + }) ]); + } + function $t(t) { + if (c) { + var e = ct.begin("searchPseudoElements"); + St = !0, function() { + U(t.querySelectorAll("*")).filter(function(t) { + return !(t.parentNode === document.head || ~y.indexOf(t.tagName.toUpperCase()) || t.getAttribute(h) || t.parentNode && "svg" === t.parentNode.tagName); + }).forEach(function(u) { + [ ":before", ":after" ].forEach(function(e) { + var t = U(u.children).filter(function(t) { + return t.getAttribute(h) === e; + })[0], n = m.getComputedStyle(u, e), r = n.getPropertyValue("font-family").match(Kt), a = n.getPropertyValue("font-weight"); + if (t && !r) u.removeChild(t); else if (r) { + var i = n.getPropertyValue("content"), o = ~[ "Light", "Regular", "Solid", "Brands" ].indexOf(r[1]) ? Gt[r[1]] : Jt[a], s = bt(o, Pt(3 === i.length ? i.substr(1, 1) : i)); + if (!t || t.getAttribute(p) !== o || t.getAttribute(v) !== s) { + t && u.removeChild(t); + var l = Dt.extra; + l.attributes[h] = e; + var f = at(E({}, Dt, { + icons: { + main: Qt(s, o), + mask: wt() + }, + prefix: o, + iconName: s, + extra: l, + watchable: !0 + })), c = d.createElement("svg"); + ":before" === e ? u.insertBefore(c, u.firstChild) : u.appendChild(c), c.outerHTML = f.map(function(t) { + return Ct(t); + }).join("\n"); + } + } + }); + }); + }(), St = !1, e(); + } + } + function te(t) { + var e = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : null; + if (c) { + var n = d.documentElement.classList, r = function(t) { + return n.add(b + "-" + t); + }, a = function(t) { + return n.remove(b + "-" + t); + }, i = Object.keys(Ut), o = [ "." + Vt + ":not([" + M + "])" ].concat(i.map(function(t) { + return "." + t + ":not([" + M + "])"; + })).join(", "); + if (0 !== o.length) { + var s = U(t.querySelectorAll(o)); + if (0 < s.length) { + r("pending"), a("complete"); + var l = ct.begin("onTree"), f = s.reduce(function(t, e) { + try { + var n = Zt(e); + n && t.push(n); + } catch (t) { + w || t instanceof Xt && console.error(t); + } + return t; + }, []); + l(), zt(f, function() { + r("active"), r("complete"), a("pending"), "function" == typeof e && e(); + }); + } + } + } + } + function ee(t) { + var e = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : null, n = Zt(t); + n && zt([ n ], e); + } + var ne = function() { + var t = g, e = R.familyPrefix, n = R.replacementClass, r = 'svg:not(:root).svg-inline--fa {\n overflow: visible; }\n\n.svg-inline--fa {\n display: inline-block;\n font-size: inherit;\n height: 1em;\n overflow: visible;\n vertical-align: -.125em; }\n .svg-inline--fa.fa-lg {\n vertical-align: -.225em; }\n .svg-inline--fa.fa-w-1 {\n width: 0.0625em; }\n .svg-inline--fa.fa-w-2 {\n width: 0.125em; }\n .svg-inline--fa.fa-w-3 {\n width: 0.1875em; }\n .svg-inline--fa.fa-w-4 {\n width: 0.25em; }\n .svg-inline--fa.fa-w-5 {\n width: 0.3125em; }\n .svg-inline--fa.fa-w-6 {\n width: 0.375em; }\n .svg-inline--fa.fa-w-7 {\n width: 0.4375em; }\n .svg-inline--fa.fa-w-8 {\n width: 0.5em; }\n .svg-inline--fa.fa-w-9 {\n width: 0.5625em; }\n .svg-inline--fa.fa-w-10 {\n width: 0.625em; }\n .svg-inline--fa.fa-w-11 {\n width: 0.6875em; }\n .svg-inline--fa.fa-w-12 {\n width: 0.75em; }\n .svg-inline--fa.fa-w-13 {\n width: 0.8125em; }\n .svg-inline--fa.fa-w-14 {\n width: 0.875em; }\n .svg-inline--fa.fa-w-15 {\n width: 0.9375em; }\n .svg-inline--fa.fa-w-16 {\n width: 1em; }\n .svg-inline--fa.fa-w-17 {\n width: 1.0625em; }\n .svg-inline--fa.fa-w-18 {\n width: 1.125em; }\n .svg-inline--fa.fa-w-19 {\n width: 1.1875em; }\n .svg-inline--fa.fa-w-20 {\n width: 1.25em; }\n .svg-inline--fa.fa-pull-left {\n margin-right: .3em;\n width: auto; }\n .svg-inline--fa.fa-pull-right {\n margin-left: .3em;\n width: auto; }\n .svg-inline--fa.fa-border {\n height: 1.5em; }\n .svg-inline--fa.fa-li {\n width: 2em; }\n .svg-inline--fa.fa-fw {\n width: 1.25em; }\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0; }\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -.125em;\n width: 1em; }\n .fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center; }\n\n.fa-layers-text, .fa-layers-counter {\n display: inline-block;\n position: absolute;\n text-align: center; }\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center; }\n\n.fa-layers-counter {\n background-color: #ff253a;\n border-radius: 1em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #fff;\n height: 1.5em;\n line-height: 1;\n max-width: 5em;\n min-width: 1.5em;\n overflow: hidden;\n padding: .25em;\n right: 0;\n text-overflow: ellipsis;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right; }\n\n.fa-layers-bottom-right {\n bottom: 0;\n right: 0;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right; }\n\n.fa-layers-bottom-left {\n bottom: 0;\n left: 0;\n right: auto;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left; }\n\n.fa-layers-top-right {\n right: 0;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right; }\n\n.fa-layers-top-left {\n left: 0;\n right: auto;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top left;\n transform-origin: top left; }\n\n.fa-lg {\n font-size: 1.33333em;\n line-height: 0.75em;\n vertical-align: -.0667em; }\n\n.fa-xs {\n font-size: .75em; }\n\n.fa-sm {\n font-size: .875em; }\n\n.fa-1x {\n font-size: 1em; }\n\n.fa-2x {\n font-size: 2em; }\n\n.fa-3x {\n font-size: 3em; }\n\n.fa-4x {\n font-size: 4em; }\n\n.fa-5x {\n font-size: 5em; }\n\n.fa-6x {\n font-size: 6em; }\n\n.fa-7x {\n font-size: 7em; }\n\n.fa-8x {\n font-size: 8em; }\n\n.fa-9x {\n font-size: 9em; }\n\n.fa-10x {\n font-size: 10em; }\n\n.fa-fw {\n text-align: center;\n width: 1.25em; }\n\n.fa-ul {\n list-style-type: none;\n margin-left: 2.5em;\n padding-left: 0; }\n .fa-ul > li {\n position: relative; }\n\n.fa-li {\n left: -2em;\n position: absolute;\n text-align: center;\n width: 2em;\n line-height: inherit; }\n\n.fa-border {\n border: solid 0.08em #eee;\n border-radius: .1em;\n padding: .2em .25em .15em; }\n\n.fa-pull-left {\n float: left; }\n\n.fa-pull-right {\n float: right; }\n\n.fa.fa-pull-left,\n.fas.fa-pull-left,\n.far.fa-pull-left,\n.fal.fa-pull-left,\n.fab.fa-pull-left {\n margin-right: .3em; }\n\n.fa.fa-pull-right,\n.fas.fa-pull-right,\n.far.fa-pull-right,\n.fal.fa-pull-right,\n.fab.fa-pull-right {\n margin-left: .3em; }\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear; }\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8); }\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n.fa-rotate-90 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg); }\n\n.fa-rotate-180 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg); }\n\n.fa-rotate-270 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg); }\n\n.fa-flip-horizontal {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1); }\n\n.fa-flip-vertical {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1); }\n\n.fa-flip-horizontal.fa-flip-vertical {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1); }\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n -webkit-filter: none;\n filter: none; }\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n position: relative;\n width: 2em; }\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0; }\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1em; }\n\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2em; }\n\n.fa-inverse {\n color: #fff; }\n\n.sr-only {\n border: 0;\n clip: rect(0, 0, 0, 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px; }\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n clip: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n position: static;\n width: auto; }\n'; + if ("fa" !== e || n !== t) { + var a = new RegExp("\\.fa\\-", "g"), i = new RegExp("\\." + t, "g"); + r = r.replace(a, "." + e + "-").replace(i, "." + n); + } + return r; + }; + function re(t) { + return { + found: !0, + width: t[0], + height: t[1], + icon: { + tag: "path", + attributes: { + fill: "currentColor", + d: t.slice(4)[0] + } + } + }; + } + function ae() { + R.autoAddCss && !fe && (Y(ne()), fe = !0); + } + function ie(e, t) { + return Object.defineProperty(e, "abstract", { + get: t + }), Object.defineProperty(e, "html", { + get: function() { + return e.abstract.map(function(t) { + return Ct(t); + }); + } + }), Object.defineProperty(e, "node", { + get: function() { + if (c) { + var t = d.createElement("div"); + return t.innerHTML = e.html, t.children; + } + } + }), e; + } + function oe(t) { + var e = t.prefix, n = void 0 === e ? "fa" : e, r = t.iconName; + if (r) return kt(le.definitions, n, r) || kt(H.styles, n, r); + } + var se, le = new (function() { + function t() { + S(this, t), this.definitions = {}; + } + return L(t, [ { + key: "add", + value: function() { + for (var e = this, t = arguments.length, n = Array(t), r = 0; r < t; r++) n[r] = arguments[r]; + var a = n.reduce(this._pullDefinitions, {}); + Object.keys(a).forEach(function(t) { + e.definitions[t] = E({}, e.definitions[t] || {}, a[t]), function t(e, r) { + var n = Object.keys(r).reduce(function(t, e) { + var n = r[e]; + return n.icon ? t[n.iconName] = n.icon : t[e] = n, t; + }, {}); + "function" == typeof H.hooks.addPack ? H.hooks.addPack(e, n) : H.styles[e] = E({}, H.styles[e] || {}, n), + "fas" === e && t("fa", r); + }(t, a[t]), vt(); + }); + } + }, { + key: "reset", + value: function() { + this.definitions = {}; + } + }, { + key: "_pullDefinitions", + value: function(i, t) { + var o = t.prefix && t.iconName && t.icon ? { + 0: t + } : t; + return Object.keys(o).map(function(t) { + var e = o[t], n = e.prefix, r = e.iconName, a = e.icon; + i[n] || (i[n] = {}), i[n][r] = a; + }), i; + } + } ]), t; + }())(), fe = !1, ce = { + i2svg: function() { + var t = 0 < arguments.length && void 0 !== arguments[0] ? arguments[0] : {}; + if (c) { + ae(); + var e = t.node, n = void 0 === e ? d : e, r = t.callback, a = void 0 === r ? function() {} : r; + R.searchPseudoElements && $t(n), te(n, a); + } + }, + css: ne, + insertCss: function() { + fe || (Y(ne()), fe = !0); + }, + watch: function() { + var t = 0 < arguments.length && void 0 !== arguments[0] ? arguments[0] : {}, e = t.autoReplaceSvgRoot, n = t.observeMutationsRoot; + !1 === R.autoReplaceSvg && (R.autoReplaceSvg = !0), R.observeMutations = !0, X(function() { + de({ + autoReplaceSvgRoot: e + }), Et({ + treeCallback: te, + nodeCallback: ee, + pseudoElementsCallback: $t, + observeMutationsRoot: n + }); + }); + } + }, ue = (se = function(t) { + var e = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : {}, n = e.transform, r = void 0 === n ? _ : n, a = e.symbol, i = void 0 !== a && a, o = e.mask, s = void 0 === o ? null : o, l = e.title, f = void 0 === l ? null : l, c = e.classes, u = void 0 === c ? [] : c, m = e.attributes, d = void 0 === m ? {} : m, g = e.styles, h = void 0 === g ? {} : g; + if (t) { + var p = t.prefix, v = t.iconName, b = t.icon; + return ie(E({ + type: "icon" + }, t), function() { + return ae(), R.autoA11y && (f ? d["aria-labelledby"] = R.replacementClass + "-title-" + q() : d["aria-hidden"] = "true"), + at({ + icons: { + main: re(b), + mask: s ? re(s.icon) : { + found: !1, + width: null, + height: null, + icon: {} + } + }, + prefix: p, + iconName: v, + transform: E({}, _, r), + symbol: i, + title: f, + extra: { + attributes: d, + styles: h, + classes: u + } + }); + }); + } + }, function(t) { + var e = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : {}, n = (t || {}).icon ? t : oe(t || {}), r = e.mask; + return r && (r = (r || {}).icon ? r : oe(r || {})), se(n, E({}, e, { + mask: r + })); + }), me = { + noAuto: function() { + R.autoReplaceSvg = !1, R.observeMutations = !1, Lt && Lt.disconnect(); + }, + config: R, + dom: ce, + library: le, + parse: { + transform: function(t) { + return jt(t); + } + }, + findIconDefinition: oe, + icon: ue, + text: function(t) { + var e = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : {}, n = e.transform, r = void 0 === n ? _ : n, a = e.title, i = void 0 === a ? null : a, o = e.classes, s = void 0 === o ? [] : o, l = e.attributes, f = void 0 === l ? {} : l, c = e.styles, u = void 0 === c ? {} : c; + return ie({ + type: "text", + content: t + }, function() { + return ae(), it({ + content: t, + transform: E({}, _, r), + title: i, + extra: { + attributes: f, + styles: u, + classes: [ R.familyPrefix + "-layers-text" ].concat(P(s)) + } + }); + }); + }, + counter: function(t) { + var e = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : {}, n = e.title, r = void 0 === n ? null : n, a = e.classes, i = void 0 === a ? [] : a, o = e.attributes, s = void 0 === o ? {} : o, l = e.styles, f = void 0 === l ? {} : l; + return ie({ + type: "counter", + content: t + }, function() { + return ae(), function(t) { + var e = t.content, n = t.title, r = t.extra, a = E({}, r.attributes, n ? { + title: n + } : {}, { + class: r.classes.join(" ") + }), i = J(r.styles); + 0 < i.length && (a.style = i); + var o = []; + return o.push({ + tag: "span", + attributes: a, + children: [ e ] + }), n && o.push({ + tag: "span", + attributes: { + class: "sr-only" + }, + children: [ n ] + }), o; + }({ + content: t.toString(), + title: r, + extra: { + attributes: s, + styles: f, + classes: [ R.familyPrefix + "-layers-counter" ].concat(P(i)) + } + }); + }); + }, + layer: function(t) { + return ie({ + type: "layer" + }, function() { + ae(); + var e = []; + return t(function(t) { + Array.isArray(t) ? t.map(function(t) { + e = e.concat(t.abstract); + }) : e = e.concat(t.abstract); + }), [ { + tag: "span", + attributes: { + class: R.familyPrefix + "-layers" + }, + children: e + } ]; + }); + }, + toHtml: Ct + }, de = function() { + var t = (0 < arguments.length && void 0 !== arguments[0] ? arguments[0] : {}).autoReplaceSvgRoot, e = void 0 === t ? d : t; + 0 < Object.keys(H.styles).length && c && R.autoReplaceSvg && me.dom.i2svg({ + node: e + }); + }; + !function(t) { + try { + t(); + } catch (t) { + if (!w) throw t; + } + }(function() { + f && (m.FontAwesome || (m.FontAwesome = me), X(function() { + de(), Et({ + treeCallback: te, + nodeCallback: ee, + pseudoElementsCallback: $t + }); + })), H.hooks = E({}, H.hooks, { + addPack: function(t, e) { + H.styles[t] = E({}, H.styles[t] || {}, e), vt(), de(); + }, + addShims: function(t) { + var e; + (e = H.shims).push.apply(e, P(t)), vt(), de(); + } + }); + }); +}(); \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/regular.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/regular.js new file mode 100644 index 0000000000..d6142c8a1d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/regular.js @@ -0,0 +1,277 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +(function () { +'use strict'; + +var _WINDOW = {}; +try { + if (typeof window !== 'undefined') _WINDOW = window; + +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; + + + + + +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; + + + + + + + + + +var PRODUCTION = function () { + try { + return undefined === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + + + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var icons = { + "address-book": [448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-68 304H48V48h320v416zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"], + "address-card": [576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H48V80h480v352zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2zM360 320h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8z"], + "angry": [496, 512, [], "f556", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-144c-33.6 0-65.2 14.8-86.8 40.6-8.5 10.2-7.1 25.3 3.1 33.8s25.3 7.2 33.8-3c24.8-29.7 75-29.7 99.8 0 8.1 9.7 23.2 11.9 33.8 3 10.2-8.5 11.5-23.6 3.1-33.8-21.6-25.8-53.2-40.6-86.8-40.6zm-48-72c10.3 0 19.9-6.7 23-17.1 3.8-12.7-3.4-26.1-16.1-29.9l-80-24c-12.8-3.9-26.1 3.4-29.9 16.1-3.8 12.7 3.4 26.1 16.1 29.9l28.2 8.5c-3.1 4.9-5.3 10.4-5.3 16.6 0 17.7 14.3 32 32 32s32-14.4 32-32.1zm199-54.9c-3.8-12.7-17.1-19.9-29.9-16.1l-80 24c-12.7 3.8-19.9 17.2-16.1 29.9 3.1 10.4 12.7 17.1 23 17.1 0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.2-2.2-11.7-5.3-16.6l28.2-8.5c12.7-3.7 19.9-17.1 16.1-29.8z"], + "arrow-alt-circle-down": [512, 512, [], "f358", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm-32-316v116h-67c-10.7 0-16 12.9-8.5 20.5l99 99c4.7 4.7 12.3 4.7 17 0l99-99c7.6-7.6 2.2-20.5-8.5-20.5h-67V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12z"], + "arrow-alt-circle-left": [512, 512, [], "f359", "M8 256c0 137 111 248 248 248s248-111 248-248S393 8 256 8 8 119 8 256zm448 0c0 110.5-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56s200 89.5 200 200zm-72-20v40c0 6.6-5.4 12-12 12H256v67c0 10.7-12.9 16-20.5 8.5l-99-99c-4.7-4.7-4.7-12.3 0-17l99-99c7.6-7.6 20.5-2.2 20.5 8.5v67h116c6.6 0 12 5.4 12 12z"], + "arrow-alt-circle-right": [512, 512, [], "f35a", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z"], + "arrow-alt-circle-up": [512, 512, [], "f35b", "M256 504c137 0 248-111 248-248S393 8 256 8 8 119 8 256s111 248 248 248zm0-448c110.5 0 200 89.5 200 200s-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56zm20 328h-40c-6.6 0-12-5.4-12-12V256h-67c-10.7 0-16-12.9-8.5-20.5l99-99c4.7-4.7 12.3-4.7 17 0l99 99c7.6 7.6 2.2 20.5-8.5 20.5h-67v116c0 6.6-5.4 12-12 12z"], + "bell": [448, 512, [], "f0f3", "M425.403 330.939c-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.843 31.843 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095C118.101 62.783 57.143 131.831 57.143 214.857c0 81.933-17.551 99.292-34.543 116.078C-25.496 378.441 9.726 448 66.919 448H160c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h93.08c57.19 0 92.415-69.583 44.323-117.061zM224 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm157.092-72H66.9c-16.762 0-25.135-20.39-13.334-32.191 28.585-28.585 51.577-55.724 51.577-152.952C105.143 149.319 158.462 96 224 96s118.857 53.319 118.857 118.857c0 97.65 23.221 124.574 51.568 152.952C406.278 379.661 397.783 400 381.092 400z"], + "bell-slash": [576, 512, [], "f1f6", "M130.9 400c-16.762 0-25.135-20.39-13.334-32.191 25.226-25.226 46.094-49.338 50.649-121.48l-46.777-41.274a168.48 168.48 0 0 0-.296 9.802c0 81.933-17.551 99.292-34.543 116.078C38.504 378.441 73.726 448 130.919 448H224c0 35.346 28.654 64 64 64s64-28.654 64-64h44.777l-54.4-48H130.9zM288 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm283.867.553l-67.931-59.571c13.104-24.118 11.524-56.318-14.532-82.042-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.848 31.848 0 0 0 320 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095c-41.471 6.618-77.891 28.571-103.249 59.841L36.459 3.037c-5.058-4.436-12.777-3.956-17.24 1.071L3.056 22.313C-1.407 27.34-.925 35.012 4.134 39.447l535.408 469.516c5.058 4.436 12.777 3.956 17.24-1.071l16.163-18.205c4.462-5.027 3.98-12.699-1.078-17.134zM288 96c65.538 0 118.857 53.319 118.857 118.857 0 97.65 23.221 124.574 51.568 152.952 2.908 2.908 4.573 6.328 5.209 9.832L194.482 141.612C216.258 113.867 250.075 96 288 96z"], + "bookmark": [384, 512, [], "f02e", "M336 0H48C21.49 0 0 21.49 0 48v464l192-112 192 112V48c0-26.51-21.49-48-48-48zm0 428.43l-144-84-144 84V54a6 6 0 0 1 6-6h276c3.314 0 6 2.683 6 5.996V428.43z"], + "building": [448, 512, [], "f1ad", "M128 148v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12zm140 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-128 96h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm128 0h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-76 84v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm76 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm180 124v36H0v-36c0-6.6 5.4-12 12-12h19.5V24c0-13.3 10.7-24 24-24h337c13.3 0 24 10.7 24 24v440H436c6.6 0 12 5.4 12 12zM79.5 463H192v-67c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v67h112.5V49L80 48l-.5 415z"], + "calendar": [448, 512, [], "f133", "M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z"], + "calendar-alt": [448, 512, [], "f073", "M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "calendar-check": [448, 512, [], "f274", "M400 64h-48V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H160V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V160h352v298a6 6 0 0 1-6 6zm-52.849-200.65L198.842 404.519c-4.705 4.667-12.303 4.637-16.971-.068l-75.091-75.699c-4.667-4.705-4.637-12.303.068-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l44.104 44.461 111.072-110.181c4.705-4.667 12.303-4.637 16.971.068l22.536 22.718c4.667 4.705 4.636 12.303-.069 16.97z"], + "calendar-minus": [448, 512, [], "f272", "M124 328c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H124zm324-216v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "calendar-plus": [448, 512, [], "f271", "M336 292v24c0 6.6-5.4 12-12 12h-76v76c0 6.6-5.4 12-12 12h-24c-6.6 0-12-5.4-12-12v-76h-76c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h76v-76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v76h76c6.6 0 12 5.4 12 12zm112-180v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "calendar-times": [448, 512, [], "f273", "M311.7 374.7l-17 17c-4.7 4.7-12.3 4.7-17 0L224 337.9l-53.7 53.7c-4.7 4.7-12.3 4.7-17 0l-17-17c-4.7-4.7-4.7-12.3 0-17l53.7-53.7-53.7-53.7c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0l53.7 53.7 53.7-53.7c4.7-4.7 12.3-4.7 17 0l17 17c4.7 4.7 4.7 12.3 0 17L257.9 304l53.7 53.7c4.8 4.7 4.8 12.3.1 17zM448 112v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "caret-square-down": [448, 512, [], "f150", "M125.1 208h197.8c10.7 0 16.1 13 8.5 20.5l-98.9 98.3c-4.7 4.7-12.2 4.7-16.9 0l-98.9-98.3c-7.7-7.5-2.3-20.5 8.4-20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "caret-square-left": [448, 512, [], "f191", "M272 157.1v197.8c0 10.7-13 16.1-20.5 8.5l-98.3-98.9c-4.7-4.7-4.7-12.2 0-16.9l98.3-98.9c7.5-7.7 20.5-2.3 20.5 8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "caret-square-right": [448, 512, [], "f152", "M176 354.9V157.1c0-10.7 13-16.1 20.5-8.5l98.3 98.9c4.7 4.7 4.7 12.2 0 16.9l-98.3 98.9c-7.5 7.7-20.5 2.3-20.5-8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "caret-square-up": [448, 512, [], "f151", "M322.9 304H125.1c-10.7 0-16.1-13-8.5-20.5l98.9-98.3c4.7-4.7 12.2-4.7 16.9 0l98.9 98.3c7.7 7.5 2.3 20.5-8.4 20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "chart-bar": [512, 512, [], "f080", "M500 400c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v324h452zm-356-60v-72c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V140c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V204c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V108c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12z"], + "check-circle": [512, 512, [], "f058", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"], + "check-square": [448, 512, [], "f14a", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm0 400H48V80h352v352zm-35.864-241.724L191.547 361.48c-4.705 4.667-12.303 4.637-16.97-.068l-90.781-91.516c-4.667-4.705-4.637-12.303.069-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l59.792 60.277 141.352-140.216c4.705-4.667 12.303-4.637 16.97.068l22.536 22.718c4.667 4.706 4.637 12.304-.068 16.971z"], + "circle": [512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z"], + "clipboard": [384, 512, [], "f328", "M336 64h-80c0-35.29-28.71-64-64-64s-64 28.71-64 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h42v36c0 6.627 5.373 12 12 12h168c6.627 0 12-5.373 12-12v-36h42a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zM192 40c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24"], + "clock": [512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"], + "clone": [512, 512, [], "f24d", "M464 0H144c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h320c26.51 0 48-21.49 48-48v-48h48c26.51 0 48-21.49 48-48V48c0-26.51-21.49-48-48-48zM362 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h42v224c0 26.51 21.49 48 48 48h224v42a6 6 0 0 1-6 6zm96-96H150a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h308a6 6 0 0 1 6 6v308a6 6 0 0 1-6 6z"], + "closed-captioning": [512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 336H54c-3.3 0-6-2.7-6-6V118c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v276c0 3.3-2.7 6-6 6zm-211.1-85.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7zm190.4 0c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.9-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 220.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7z"], + "comment": [512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"], + "comment-alt": [512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 7.1 5.8 12 12 12 2.4 0 4.9-.7 7.1-2.4L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm16 352c0 8.8-7.2 16-16 16H288l-12.8 9.6L208 428v-60H64c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h384c8.8 0 16 7.2 16 16v288z"], + "comment-dots": [512, 512, [], "f4ad", "M144 208c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"], + "comments": [576, 512, [], "f086", "M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"], + "compass": [512, 512, [], "f14e", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm91.326-312.131l-33.359 137.779a24.005 24.005 0 0 1-6.772 11.729l-102.64 97.779c-17.104 16.293-45.56.434-39.88-23.024l33.359-137.779a23.997 23.997 0 0 1 6.772-11.729l102.642-97.779c17.285-16.47 45.494-.175 39.878 23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"], + "copy": [448, 512, [], "f0c5", "M433.941 65.941l-51.882-51.882A48 48 0 0 0 348.118 0H176c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48v-48h80c26.51 0 48-21.49 48-48V99.882a48 48 0 0 0-14.059-33.941zM266 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h74v224c0 26.51 21.49 48 48 48h96v42a6 6 0 0 1-6 6zm128-96H182a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h106v88c0 13.255 10.745 24 24 24h88v202a6 6 0 0 1-6 6zm6-256h-64V48h9.632c1.591 0 3.117.632 4.243 1.757l48.368 48.368a6 6 0 0 1 1.757 4.243V112z"], + "copyright": [512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm107.351-101.064c-9.614 9.712-45.53 41.396-104.065 41.396-82.43 0-140.484-61.425-140.484-141.567 0-79.152 60.275-139.401 139.762-139.401 55.531 0 88.738 26.62 97.593 34.779a11.965 11.965 0 0 1 1.936 15.322l-18.155 28.113c-3.841 5.95-11.966 7.282-17.499 2.921-8.595-6.776-31.814-22.538-61.708-22.538-48.303 0-77.916 35.33-77.916 80.082 0 41.589 26.888 83.692 78.277 83.692 32.657 0 56.843-19.039 65.726-27.225 5.27-4.857 13.596-4.039 17.82 1.738l19.865 27.17a11.947 11.947 0 0 1-1.152 15.518z"], + "credit-card": [576, 512, [], "f09d", "M527.9 32H48.1C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48.1 48h479.8c26.6 0 48.1-21.5 48.1-48V80c0-26.5-21.5-48-48.1-48zM54.1 80h467.8c3.3 0 6 2.7 6 6v42H48.1V86c0-3.3 2.7-6 6-6zm467.8 352H54.1c-3.3 0-6-2.7-6-6V256h479.8v170c0 3.3-2.7 6-6 6zM192 332v40c0 6.6-5.4 12-12 12h-72c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12zm192 0v40c0 6.6-5.4 12-12 12H236c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12z"], + "dizzy": [496, 512, [], "f567", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-33.8-217.9c7.8-7.8 7.8-20.5 0-28.3L196.3 192l17.9-17.9c7.8-7.8 7.8-20.5 0-28.3-7.8-7.8-20.5-7.8-28.3 0L168 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.9 7.7 20.5 7.7 28.4-.2zm160-92.2c-7.8-7.8-20.5-7.8-28.3 0L328 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.8 7.8 20.5 7.8 28.3 0 7.8-7.8 7.8-20.5 0-28.3l-17.8-18 17.9-17.9c7.7-7.8 7.7-20.4 0-28.2zM248 272c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64z"], + "dot-circle": [512, 512, [], "f192", "M256 56c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m0-48C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 168c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80z"], + "edit": [576, 512, [], "f044", "M402.3 344.9l32-32c5-5 13.7-1.5 13.7 5.7V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h273.5c7.1 0 10.7 8.6 5.7 13.7l-32 32c-1.5 1.5-3.5 2.3-5.7 2.3H48v352h352V350.5c0-2.1.8-4.1 2.3-5.6zm156.6-201.8L296.3 405.7l-90.4 10c-26.2 2.9-48.5-19.2-45.6-45.6l10-90.4L432.9 17.1c22.9-22.9 59.9-22.9 82.7 0l43.2 43.2c22.9 22.9 22.9 60 .1 82.8zM460.1 174L402 115.9 216.2 301.8l-7.3 65.3 65.3-7.3L460.1 174zm64.8-79.7l-43.2-43.2c-4.1-4.1-10.8-4.1-14.8 0L436 82l58.1 58.1 30.9-30.9c4-4.2 4-10.8-.1-14.9z"], + "envelope": [512, 512, [], "f0e0", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z"], + "envelope-open": [512, 512, [], "f2b6", "M494.586 164.516c-4.697-3.883-111.723-89.95-135.251-108.657C337.231 38.191 299.437 0 256 0c-43.205 0-80.636 37.717-103.335 55.859-24.463 19.45-131.07 105.195-135.15 108.549A48.004 48.004 0 0 0 0 201.485V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V201.509a48 48 0 0 0-17.414-36.993zM464 458a6 6 0 0 1-6 6H54a6 6 0 0 1-6-6V204.347c0-1.813.816-3.526 2.226-4.665 15.87-12.814 108.793-87.554 132.364-106.293C200.755 78.88 232.398 48 256 48c23.693 0 55.857 31.369 73.41 45.389 23.573 18.741 116.503 93.493 132.366 106.316a5.99 5.99 0 0 1 2.224 4.663V458zm-31.991-187.704c4.249 5.159 3.465 12.795-1.745 16.981-28.975 23.283-59.274 47.597-70.929 56.863C336.636 362.283 299.205 400 256 400c-43.452 0-81.287-38.237-103.335-55.86-11.279-8.967-41.744-33.413-70.927-56.865-5.21-4.187-5.993-11.822-1.745-16.981l15.258-18.528c4.178-5.073 11.657-5.843 16.779-1.726 28.618 23.001 58.566 47.035 70.56 56.571C200.143 320.631 232.307 352 256 352c23.602 0 55.246-30.88 73.41-45.389 11.994-9.535 41.944-33.57 70.563-56.568 5.122-4.116 12.601-3.346 16.778 1.727l15.258 18.526z"], + "eye": [576, 512, [], "f06e", "M569.354 231.631C512.97 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-102.556 0-192.091-54.701-240-136 44.157-74.933 123.677-127.27 216.162-135.007C273.958 131.078 280 144.83 280 160c0 30.928-25.072 56-56 56s-56-25.072-56-56l.001-.042C157.794 179.043 152 200.844 152 224c0 75.111 60.889 136 136 136s136-60.889 136-136c0-31.031-10.4-59.629-27.895-82.515C451.704 164.638 498.009 205.106 528 256c-47.908 81.299-137.444 136-240 136z"], + "eye-slash": [576, 512, [], "f070", "M272.702 359.139c-80.483-9.011-136.212-86.886-116.93-167.042l116.93 167.042zM288 392c-102.556 0-192.092-54.701-240-136 21.755-36.917 52.1-68.342 88.344-91.658l-27.541-39.343C67.001 152.234 31.921 188.741 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.004 376.006 168.14 440 288 440a332.89 332.89 0 0 0 39.648-2.367l-32.021-45.744A284.16 284.16 0 0 1 288 392zm281.354-111.631c-33.232 56.394-83.421 101.742-143.554 129.492l48.116 68.74c3.801 5.429 2.48 12.912-2.949 16.712L450.23 509.83c-5.429 3.801-12.912 2.48-16.712-2.949L102.084 33.399c-3.801-5.429-2.48-12.912 2.949-16.712L125.77 2.17c5.429-3.801 12.912-2.48 16.712 2.949l55.526 79.325C226.612 76.343 256.808 72 288 72c119.86 0 224.996 63.994 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM528 256c-44.157-74.933-123.677-127.27-216.162-135.007C302.042 131.078 296 144.83 296 160c0 30.928 25.072 56 56 56s56-25.072 56-56l-.001-.042c30.632 57.277 16.739 130.26-36.928 171.719l26.695 38.135C452.626 346.551 498.308 306.386 528 256z"], + "file": [384, 512, [], "f15b", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48z"], + "file-alt": [384, 512, [], "f15c", "M288 248v28c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-28c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm-12 72H108c-6.6 0-12 5.4-12 12v28c0 6.6 5.4 12 12 12h168c6.6 0 12-5.4 12-12v-28c0-6.6-5.4-12-12-12zm108-188.1V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48C0 21.5 21.5 0 48 0h204.1C264.8 0 277 5.1 286 14.1L369.9 98c9 8.9 14.1 21.2 14.1 33.9zm-128-80V128h76.1L256 51.9zM336 464V176H232c-13.3 0-24-10.7-24-24V48H48v416h288z"], + "file-archive": [384, 512, [], "f1c6", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM256 51.882L332.118 128H256V51.882zM336 464H48V48h79.714v16h32V48H208v104c0 13.255 10.745 24 24 24h104v288zM192.27 96h-32V64h32v32zm-32 0v32h-32V96h32zm0 64v32h-32v-32h32zm32 0h-32v-32h32v32zm1.909 105.678A12 12 0 0 0 182.406 256H160.27v-32h-32v32l-19.69 97.106C101.989 385.611 126.834 416 160 416c33.052 0 57.871-30.192 51.476-62.62l-17.297-87.702zM160.27 390.073c-17.918 0-32.444-12.105-32.444-27.036 0-14.932 14.525-27.036 32.444-27.036s32.444 12.105 32.444 27.036c0 14.931-14.526 27.036-32.444 27.036zm32-166.073h-32v-32h32v32z"], + "file-audio": [384, 512, [], "f1c7", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm144-76.024c0 10.691-12.926 16.045-20.485 8.485L136 360.486h-28c-6.627 0-12-5.373-12-12v-56c0-6.627 5.373-12 12-12h28l35.515-36.947c7.56-7.56 20.485-2.206 20.485 8.485v135.952zm41.201-47.13c9.051-9.297 9.06-24.133.001-33.439-22.149-22.752 12.235-56.246 34.395-33.481 27.198 27.94 27.212 72.444.001 100.401-21.793 22.386-56.947-10.315-34.397-33.481z"], + "file-code": [384, 512, [], "f1c9", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm101.677-115.115L116.854 320l32.822-28.885a8.793 8.793 0 0 0 .605-12.624l-17.403-18.564c-3.384-3.613-8.964-3.662-12.438-.401L62.78 313.58c-3.703 3.474-3.704 9.367.001 12.84l57.659 54.055a8.738 8.738 0 0 0 6.012 2.381 8.746 8.746 0 0 0 6.427-2.782l17.403-18.563a8.795 8.795 0 0 0-.605-12.626zm84.284-127.85l-24.401-7.084a8.796 8.796 0 0 0-10.905 5.998L144.04 408.061c-1.353 4.66 1.338 9.552 5.998 10.905l24.403 7.084c4.68 1.355 9.557-1.354 10.905-5.998l54.612-188.112c1.354-4.66-1.337-9.552-5.997-10.905zm87.258 92.545l-57.658-54.055c-3.526-3.307-9.099-3.165-12.439.401l-17.403 18.563a8.795 8.795 0 0 0 .605 12.625L267.146 320l-32.822 28.885a8.793 8.793 0 0 0-.605 12.624l17.403 18.564a8.797 8.797 0 0 0 12.439.401h-.001l57.66-54.055c3.703-3.473 3.703-9.366-.001-12.839z"], + "file-excel": [384, 512, [], "f1c3", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm212-240h-28.8c-4.4 0-8.4 2.4-10.5 6.3-18 33.1-22.2 42.4-28.6 57.7-13.9-29.1-6.9-17.3-28.6-57.7-2.1-3.9-6.2-6.3-10.6-6.3H124c-9.3 0-15 10-10.4 18l46.3 78-46.3 78c-4.7 8 1.1 18 10.4 18h28.9c4.4 0 8.4-2.4 10.5-6.3 21.7-40 23-45 28.6-57.7 14.9 30.2 5.9 15.9 28.6 57.7 2.1 3.9 6.2 6.3 10.6 6.3H260c9.3 0 15-10 10.4-18L224 320c.7-1.1 30.3-50.5 46.3-78 4.7-8-1.1-18-10.3-18z"], + "file-image": [384, 512, [], "f1c5", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm32-48h224V288l-23.5-23.5c-4.7-4.7-12.3-4.7-17 0L176 352l-39.5-39.5c-4.7-4.7-12.3-4.7-17 0L80 352v64zm48-240c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z"], + "file-pdf": [384, 512, [], "f1c1", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm250.2-143.7c-12.2-12-47-8.7-64.4-6.5-17.2-10.5-28.7-25-36.8-46.3 3.9-16.1 10.1-40.6 5.4-56-4.2-26.2-37.8-23.6-42.6-5.9-4.4 16.1-.4 38.5 7 67.1-10 23.9-24.9 56-35.4 74.4-20 10.3-47 26.2-51 46.2-3.3 15.8 26 55.2 76.1-31.2 22.4-7.4 46.8-16.5 68.4-20.1 18.9 10.2 41 17 55.8 17 25.5 0 28-28.2 17.5-38.7zm-198.1 77.8c5.1-13.7 24.5-29.5 30.4-35-19 30.3-30.4 35.7-30.4 35zm81.6-190.6c7.4 0 6.7 32.1 1.8 40.8-4.4-13.9-4.3-40.8-1.8-40.8zm-24.4 136.6c9.7-16.9 18-37 24.7-54.7 8.3 15.1 18.9 27.2 30.1 35.5-20.8 4.3-38.9 13.1-54.8 19.2zm131.6-5s-5 6-37.3-7.8c35.1-2.6 40.9 5.4 37.3 7.8z"], + "file-powerpoint": [384, 512, [], "f1c4", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm72-60V236c0-6.6 5.4-12 12-12h69.2c36.7 0 62.8 27 62.8 66.3 0 74.3-68.7 66.5-95.5 66.5V404c0 6.6-5.4 12-12 12H132c-6.6 0-12-5.4-12-12zm48.5-87.4h23c7.9 0 13.9-2.4 18.1-7.2 8.5-9.8 8.4-28.5.1-37.8-4.1-4.6-9.9-7-17.4-7h-23.9v52z"], + "file-video": [384, 512, [], "f1c8", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm228.687-211.303L224 305.374V268c0-11.046-8.954-20-20-20H100c-11.046 0-20 8.954-20 20v104c0 11.046 8.954 20 20 20h104c11.046 0 20-8.954 20-20v-37.374l52.687 52.674C286.704 397.318 304 390.28 304 375.986V264.011c0-14.311-17.309-21.319-27.313-11.314z"], + "file-word": [384, 512, [], "f1c2", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm220.1-208c-5.7 0-10.6 4-11.7 9.5-20.6 97.7-20.4 95.4-21 103.5-.2-1.2-.4-2.6-.7-4.3-.8-5.1.3.2-23.6-99.5-1.3-5.4-6.1-9.2-11.7-9.2h-13.3c-5.5 0-10.3 3.8-11.7 9.1-24.4 99-24 96.2-24.8 103.7-.1-1.1-.2-2.5-.5-4.2-.7-5.2-14.1-73.3-19.1-99-1.1-5.6-6-9.7-11.8-9.7h-16.8c-7.8 0-13.5 7.3-11.7 14.8 8 32.6 26.7 109.5 33.2 136 1.3 5.4 6.1 9.1 11.7 9.1h25.2c5.5 0 10.3-3.7 11.6-9.1l17.9-71.4c1.5-6.2 2.5-12 3-17.3l2.9 17.3c.1.4 12.6 50.5 17.9 71.4 1.3 5.3 6.1 9.1 11.6 9.1h24.7c5.5 0 10.3-3.7 11.6-9.1 20.8-81.9 30.2-119 34.5-136 1.9-7.6-3.8-14.9-11.6-14.9h-15.8z"], + "flag": [512, 512, [], "f024", "M336.174 80c-49.132 0-93.305-32-161.913-32-31.301 0-58.303 6.482-80.721 15.168a48.04 48.04 0 0 0 2.142-20.727C93.067 19.575 74.167 1.594 51.201.104 23.242-1.71 0 20.431 0 48c0 17.764 9.657 33.262 24 41.562V496c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-83.443C109.869 395.28 143.259 384 199.826 384c49.132 0 93.305 32 161.913 32 58.479 0 101.972-22.617 128.548-39.981C503.846 367.161 512 352.051 512 335.855V95.937c0-34.459-35.264-57.768-66.904-44.117C409.193 67.309 371.641 80 336.174 80zM464 336c-21.783 15.412-60.824 32-102.261 32-59.945 0-102.002-32-161.913-32-43.361 0-96.379 9.403-127.826 24V128c21.784-15.412 60.824-32 102.261-32 59.945 0 102.002 32 161.913 32 43.271 0 96.32-17.366 127.826-32v240z"], + "flushed": [496, 512, [], "f579", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm96-312c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-112 24c0-44.2-35.8-80-80-80s-80 35.8-80 80 35.8 80 80 80 80-35.8 80-80zm-80 48c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm160 144H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z"], + "folder": [512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48zm-6 272H54c-3.314 0-6-2.678-6-5.992V117.992A5.993 5.993 0 0 1 54 112h134.118l64 64H458a6 6 0 0 1 6 6v212a6 6 0 0 1-6 6z"], + "folder-open": [576, 512, [], "f07c", "M527.943 224H480v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h400a48.001 48.001 0 0 0 40.704-22.56l79.942-128c19.948-31.917-3.038-73.44-40.703-73.44zM54 112h134.118l64 64H426a6 6 0 0 1 6 6v42H152a48 48 0 0 0-41.098 23.202L48 351.449V117.993A5.993 5.993 0 0 1 54 112zm394 288H72l77.234-128H528l-80 128z"], + "font-awesome-logo-full": [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"], + "frown": [496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 128c-40.2 0-78 17.7-103.8 48.6-8.5 10.2-7.1 25.3 3.1 33.8 10.2 8.4 25.3 7.1 33.8-3.1 16.6-19.9 41-31.4 66.9-31.4s50.3 11.4 66.9 31.4c8.1 9.7 23.1 11.9 33.8 3.1 10.2-8.5 11.5-23.6 3.1-33.8C326 321.7 288.2 304 248 304z"], + "frown-open": [496, 512, [], "f57a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-48-248c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 112c-35.6 0-88.8 21.3-95.8 61.2-2 11.8 9 21.5 20.5 18.1 31.2-9.6 59.4-15.3 75.3-15.3s44.1 5.7 75.3 15.3c11.4 3.5 22.5-6.3 20.5-18.1-7-39.9-60.2-61.2-95.8-61.2z"], + "futbol": [496, 512, [], "f1e3", "M483.8 179.4C449.8 74.6 352.6 8 248.1 8c-25.4 0-51.2 3.9-76.7 12.2C41.2 62.5-30.1 202.4 12.2 332.6 46.2 437.4 143.4 504 247.9 504c25.4 0 51.2-3.9 76.7-12.2 130.2-42.3 201.5-182.2 159.2-312.4zm-74.5 193.7l-52.2 6.4-43.7-60.9 24.4-75.2 71.1-22.1 38.9 36.4c-.2 30.7-7.4 61.1-21.7 89.2-4.7 9.3-10.7 17.8-16.8 26.2zm0-235.4l-10.4 53.1-70.7 22-64.2-46.5V92.5l47.4-26.2c39.2 13 73.4 38 97.9 71.4zM184.9 66.4L232 92.5v73.8l-64.2 46.5-70.6-22-10.1-52.5c24.3-33.4 57.9-58.6 97.8-71.9zM139 379.5L85.9 373c-14.4-20.1-37.3-59.6-37.8-115.3l39-36.4 71.1 22.2 24.3 74.3-43.5 61.7zm48.2 67l-22.4-48.1 43.6-61.7H287l44.3 61.7-22.4 48.1c-6.2 1.8-57.6 20.4-121.7 0z"], + "gem": [576, 512, [], "f3a5", "M464 0H112c-4 0-7.8 2-10 5.4L2 152.6c-2.9 4.4-2.6 10.2.7 14.2l276 340.8c4.8 5.9 13.8 5.9 18.6 0l276-340.8c3.3-4.1 3.6-9.8.7-14.2L474.1 5.4C471.8 2 468.1 0 464 0zm-19.3 48l63.3 96h-68.4l-51.7-96h56.8zm-202.1 0h90.7l51.7 96H191l51.6-96zm-111.3 0h56.8l-51.7 96H68l63.3-96zm-43 144h51.4L208 352 88.3 192zm102.9 0h193.6L288 435.3 191.2 192zM368 352l68.2-160h51.4L368 352z"], + "grimace": [496, 512, [], "f57f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm16 16H152c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h192c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48zm-168 96h-24c-8.8 0-16-7.2-16-16v-8h40v24zm0-40h-40v-8c0-8.8 7.2-16 16-16h24v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm56 24c0 8.8-7.2 16-16 16h-24v-24h40v8zm0-24h-40v-24h24c8.8 0 16 7.2 16 16v8z"], + "grin": [496, 512, [], "f580", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z"], + "grin-alt": [496, 512, [], "f581", "M200.3 248c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zm128 0c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3z"], + "grin-beam": [496, 512, [], "f582", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-235.9-72.9c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3zm160 0c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3z"], + "grin-beam-sweat": [496, 512, [], "f583", "M440 160c29.5 0 53.3-26.3 53.3-58.7 0-25-31.7-75.5-46.2-97.3-3.6-5.3-10.7-5.3-14.2 0-14.5 21.8-46.2 72.3-46.2 97.3 0 32.4 23.8 58.7 53.3 58.7zM248 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zm105.3-52.9c-24.6 15.7-46 12.9-46.4 12.9 6.9 20.2 10.8 41.8 10.8 64.3 0 110.3-89.7 200-200 200S48 366.3 48 256 137.7 56 248 56c39.8 0 76.8 11.8 108 31.9 1.7-9.5 6.3-24.1 17.2-45.7C336.4 20.6 293.7 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-27-4.4-52.9-12.4-77.2zM168 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z"], + "grin-hearts": [496, 512, [], "f584", "M353.6 304.6c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-152.8-48.9c4.5 1.2 9.2-1.5 10.5-6l19.4-69.9c5.6-20.3-7.4-41.1-28.8-44.5-18.6-3-36.4 9.8-41.5 27.9l-2 7.1-7.1-1.9c-18.2-4.7-38.2 4.3-44.9 22-7.7 20.2 3.8 41.9 24.2 47.2l70.2 18.1zm188.8-65.3c-6.7-17.6-26.7-26.7-44.9-22l-7.1 1.9-2-7.1c-5-18.1-22.8-30.9-41.5-27.9-21.4 3.4-34.4 24.2-28.8 44.5l19.4 69.9c1.2 4.5 5.9 7.2 10.5 6l70.2-18.2c20.4-5.3 31.9-26.9 24.2-47.1zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200z"], + "grin-squint": [496, 512, [], "f585", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-234.7-40.8c3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3l-80-48c-5.1-3-11.4-1.9-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11.1.1 15.5zm242.9 2.5c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11-.1-15.5-3.8-4.4-10.2-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48z"], + "grin-squint-tears": [512, 512, [], "f586", "M117.1 384.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 479 124.3 420.8 128 395c.8-6.4-4.6-11.8-10.9-10.9zm-41.2-41.7C40.3 268 53 176.1 114.6 114.6 152.4 76.8 202.6 56 256 56c36.2 0 70.8 9.8 101.2 27.7 3.8-20.3 8-36.1 12-48.3C333.8 17.2 294.9 8 256 8 192.5 8 129.1 32.2 80.6 80.6c-74.1 74.1-91.3 183.4-52 274 12.2-4.1 27.7-8.3 47.3-12.2zm352.3-187.6c45 76.6 34.9 176.9-30.8 242.6-37.8 37.8-88 58.6-141.4 58.6-30.5 0-59.8-7-86.4-19.8-3.9 19.5-8 35-12.2 47.2 31.4 13.6 65 20.6 98.7 20.6 63.5 0 126.9-24.2 175.4-72.6 78.1-78.1 93.1-195.4 45.2-288.6-12.3 4-28.2 8.1-48.5 12zm-33.3-26.9c25.8-3.7 84-13.7 100.9-30.6 21.9-21.9 21.5-57.9-.9-80.3s-58.3-22.8-80.3-.9C397.7 33 387.7 91.2 384 117c-.8 6.4 4.6 11.8 10.9 10.9zm-187 108.3c-3-3-7.2-4.2-11.4-3.2L106 255.7c-5.7 1.4-9.5 6.7-9.1 12.6.5 5.8 5.1 10.5 10.9 11l52.3 4.8 4.8 52.3c.5 5.8 5.2 10.4 11 10.9h.9c5.5 0 10.3-3.7 11.7-9.1l22.6-90.5c1-4.2-.2-8.5-3.2-11.5zm39.7-25.1l90.5-22.6c5.7-1.4 9.5-6.7 9.1-12.6-.5-5.8-5.1-10.5-10.9-11l-52.3-4.8-4.8-52.3c-.5-5.8-5.2-10.4-11-10.9-5.6-.1-11.2 3.4-12.6 9.1L233 196.5c-1 4.1.2 8.4 3.2 11.4 5 5 11.3 3.2 11.4 3.2zm52 88.5c-29.1 29.1-59.7 52.9-83.9 65.4-9.2 4.8-10 17.5-1.7 23.4 38.9 27.7 107 6.2 143.7-30.6S416 253 388.3 214.1c-5.8-8.2-18.5-7.6-23.4 1.7-12.3 24.2-36.2 54.7-65.3 83.8z"], + "grin-stars": [496, 512, [], "f587", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-227.9-57.5c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.5 1.9-12.2-4.3-13.2l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6.1 34.9zm259.7-72.7l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6 34.9c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.6 1.8-12.2-4.4-13.2z"], + "grin-tears": [640, 512, [], "f588", "M117.1 256.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 351 124.3 292.8 128 267c.8-6.4-4.6-11.8-10.9-10.9zm506.7 30.6c-16.9-16.9-75.1-26.9-100.9-30.6-6.3-.9-11.7 4.5-10.8 10.8 3.7 25.8 13.7 84 30.6 100.9 21.9 21.9 57.9 21.5 80.3-.9 22.3-22.3 22.7-58.3.8-80.2zm-126.6 61.7C463.8 412.3 396.9 456 320 456c-76.9 0-143.8-43.7-177.2-107.6-12.5 37.4-25.2 43.9-28.3 46.5C159.1 460.7 234.5 504 320 504s160.9-43.3 205.5-109.1c-3.2-2.7-15.9-9.2-28.3-46.5zM122.7 224.5C137.9 129.2 220.5 56 320 56c99.5 0 182.1 73.2 197.3 168.5 2.1-.2 5.2-2.4 49.5 7C554.4 106 448.7 8 320 8S85.6 106 73.2 231.4c44.5-9.4 47.1-7.2 49.5-6.9zM320 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zM240 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z"], + "grin-tongue": [496, 512, [], "f589", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zM168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"], + "grin-tongue-squint": [496, 512, [], "f58a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zm36.9-281.1c-3.8-4.4-10.3-5.5-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zm-162.9 45.5l-80-48c-5-3-11.4-2-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3z"], + "grin-tongue-wink": [496, 512, [], "f58b", "M152 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm176-52c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3z"], + "grin-wink": [496, 512, [], "f58c", "M328 180c-25.69 0-55.88 16.92-59.86 42.12-1.75 11.22 11.5 18.24 19.83 10.84l9.55-8.48c14.81-13.19 46.16-13.19 60.97 0l9.55 8.48c8.48 7.43 21.56.25 19.83-10.84C383.88 196.92 353.69 180 328 180zm-160 60c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm185.55 64.64c-25.93 8.3-64.4 13.06-105.55 13.06s-79.62-4.75-105.55-13.06c-9.94-3.13-19.4 5.37-17.71 15.34C132.67 367.13 196.06 400 248 400s115.33-32.87 123.26-80.02c1.68-9.89-7.67-18.48-17.71-15.34zM248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 448c-110.28 0-200-89.72-200-200S137.72 56 248 56s200 89.72 200 200-89.72 200-200 200z"], + "hand-lizard": [576, 512, [], "f258", "M556.686 290.542L410.328 64.829C397.001 44.272 374.417 32 349.917 32H56C25.121 32 0 57.122 0 88v8c0 44.112 35.888 80 80 80h196.042l-18.333 48H144c-48.523 0-88 39.477-88 88 0 30.879 25.121 56 56 56h131.552c2.987 0 5.914.549 8.697 1.631L352 408.418V480h224V355.829c0-23.225-6.679-45.801-19.314-65.287zM528 432H400v-23.582c0-19.948-12.014-37.508-30.604-44.736l-99.751-38.788A71.733 71.733 0 0 0 243.552 320H112c-4.411 0-8-3.589-8-8 0-22.056 17.944-40 40-40h113.709c19.767 0 37.786-12.407 44.84-30.873l24.552-64.281c8.996-23.553-8.428-48.846-33.63-48.846H80c-17.645 0-32-14.355-32-32v-8c0-4.411 3.589-8 8-8h293.917c8.166 0 15.693 4.09 20.137 10.942l146.358 225.715A71.84 71.84 0 0 1 528 355.829V432z"], + "hand-paper": [448, 512, [], "f256", "M372.57 112.641v-10.825c0-43.612-40.52-76.691-83.039-65.546-25.629-49.5-94.09-47.45-117.982.747C130.269 26.456 89.144 57.945 89.144 102v126.13c-19.953-7.427-43.308-5.068-62.083 8.871-29.355 21.796-35.794 63.333-14.55 93.153L132.48 498.569a32 32 0 0 0 26.062 13.432h222.897c14.904 0 27.835-10.289 31.182-24.813l30.184-130.958A203.637 203.637 0 0 0 448 310.564V179c0-40.62-35.523-71.992-75.43-66.359zm27.427 197.922c0 11.731-1.334 23.469-3.965 34.886L368.707 464h-201.92L51.591 302.303c-14.439-20.27 15.023-42.776 29.394-22.605l27.128 38.079c8.995 12.626 29.031 6.287 29.031-9.283V102c0-25.645 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V67c0-25.663 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V101.125c0-25.672 36.57-24.81 36.57.691V256c0 8.837 7.163 16 16 16h6.857c8.837 0 16-7.163 16-16v-76.309c0-26.242 36.57-25.64 36.57-.691v131.563z"], + "hand-peace": [448, 512, [], "f25b", "M362.146 191.976c-13.71-21.649-38.761-34.016-65.006-30.341V74c0-40.804-32.811-74-73.141-74-40.33 0-73.14 33.196-73.14 74L160 168l-18.679-78.85C126.578 50.843 83.85 32.11 46.209 47.208 8.735 62.238-9.571 104.963 5.008 142.85l55.757 144.927c-30.557 24.956-43.994 57.809-24.733 92.218l54.853 97.999C102.625 498.97 124.73 512 148.575 512h205.702c30.744 0 57.558-21.44 64.555-51.797l27.427-118.999a67.801 67.801 0 0 0 1.729-15.203L448 256c0-44.956-43.263-77.343-85.854-64.024zM399.987 326c0 1.488-.169 2.977-.502 4.423l-27.427 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H148.575c-6.486 0-12.542-3.621-15.805-9.449l-54.854-98c-4.557-8.141-2.619-18.668 4.508-24.488l26.647-21.764a16 16 0 0 0 4.812-18.139l-64.09-166.549C37.226 92.956 84.37 74.837 96.51 106.389l59.784 155.357A16 16 0 0 0 171.227 272h11.632c8.837 0 16-7.163 16-16V74c0-34.375 50.281-34.43 50.281 0v182c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16v-28c0-25.122 36.567-25.159 36.567 0v28c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16 0-25.12 36.567-25.16 36.567 0v70z"], + "hand-point-down": [448, 512, [], "f0a7", "M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z"], + "hand-point-left": [512, 512, [], "f0a5", "M0 220.8C0 266.416 37.765 304 83.2 304h35.647a93.148 93.148 0 0 0 7.929 22.064c-2.507 22.006 3.503 44.978 15.985 62.791C143.9 441.342 180.159 480 242.701 480H264c60.063 0 98.512-40 127.2-40h2.679c5.747 4.952 13.536 8 22.12 8h64c17.673 0 32-12.894 32-28.8V188.8c0-15.906-14.327-28.8-32-28.8h-64c-8.584 0-16.373 3.048-22.12 8H391.2c-6.964 0-14.862-6.193-30.183-23.668l-.129-.148-.131-.146c-8.856-9.937-18.116-20.841-25.851-33.253C316.202 80.537 304.514 32 259.2 32c-56.928 0-92 35.286-92 83.2 0 8.026.814 15.489 2.176 22.4H83.2C38.101 137.6 0 175.701 0 220.8zm48 0c0-18.7 16.775-35.2 35.2-35.2h158.4c0-17.325-26.4-35.2-26.4-70.4 0-26.4 20.625-35.2 44-35.2 8.794 0 20.445 32.712 34.926 56.1 9.074 14.575 19.524 27.225 30.799 39.875 16.109 18.374 33.836 36.633 59.075 39.596v176.752C341.21 396.087 309.491 432 264 432h-21.299c-40.524 0-57.124-22.197-50.601-61.325-14.612-8.001-24.151-33.979-12.925-53.625-19.365-18.225-17.787-46.381-4.95-61.05H83.2C64.225 256 48 239.775 48 220.8zM448 360c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z"], + "hand-point-right": [512, 512, [], "f0a4", "M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"], + "hand-point-up": [448, 512, [], "f0a6", "M105.6 83.2v86.177a115.52 115.52 0 0 0-22.4-2.176c-47.914 0-83.2 35.072-83.2 92 0 45.314 48.537 57.002 78.784 75.707 12.413 7.735 23.317 16.994 33.253 25.851l.146.131.148.129C129.807 376.338 136 384.236 136 391.2v2.679c-4.952 5.747-8 13.536-8 22.12v64c0 17.673 12.894 32 28.8 32h230.4c15.906 0 28.8-14.327 28.8-32v-64c0-8.584-3.048-16.373-8-22.12V391.2c0-28.688 40-67.137 40-127.2v-21.299c0-62.542-38.658-98.8-91.145-99.94-17.813-12.482-40.785-18.491-62.791-15.985A93.148 93.148 0 0 0 272 118.847V83.2C272 37.765 234.416 0 188.8 0c-45.099 0-83.2 38.101-83.2 83.2zm118.4 0v91.026c14.669-12.837 42.825-14.415 61.05 4.95 19.646-11.227 45.624-1.687 53.625 12.925 39.128-6.524 61.325 10.076 61.325 50.6V264c0 45.491-35.913 77.21-39.676 120H183.571c-2.964-25.239-21.222-42.966-39.596-59.075-12.65-11.275-25.3-21.725-39.875-30.799C80.712 279.645 48 267.994 48 259.2c0-23.375 8.8-44 35.2-44 35.2 0 53.075 26.4 70.4 26.4V83.2c0-18.425 16.5-35.2 35.2-35.2 18.975 0 35.2 16.225 35.2 35.2zM352 424c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z"], + "hand-pointer": [448, 512, [], "f25a", "M358.182 179.361c-19.493-24.768-52.679-31.945-79.872-19.098-15.127-15.687-36.182-22.487-56.595-19.629V67c0-36.944-29.736-67-66.286-67S89.143 30.056 89.143 67v161.129c-19.909-7.41-43.272-5.094-62.083 8.872-29.355 21.795-35.793 63.333-14.55 93.152l109.699 154.001C134.632 501.59 154.741 512 176 512h178.286c30.802 0 57.574-21.5 64.557-51.797l27.429-118.999A67.873 67.873 0 0 0 448 326v-84c0-46.844-46.625-79.273-89.818-62.639zM80.985 279.697l27.126 38.079c8.995 12.626 29.031 6.287 29.031-9.283V67c0-25.12 36.571-25.16 36.571 0v175c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16v-35c0-25.12 36.571-25.16 36.571 0v35c0 8.836 7.163 16 16 16H272c8.837 0 16-7.164 16-16v-21c0-25.12 36.571-25.16 36.571 0v21c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16 0-25.121 36.571-25.16 36.571 0v84c0 1.488-.169 2.977-.502 4.423l-27.43 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H176c-5.769 0-11.263-2.878-14.697-7.697l-109.712-154c-14.406-20.223 14.994-42.818 29.394-22.606zM176.143 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.733 0-14-7.163-14-16zm75.428 0v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16zM327 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16z"], + "hand-rock": [512, 512, [], "f255", "M408.864 79.052c-22.401-33.898-66.108-42.273-98.813-23.588-29.474-31.469-79.145-31.093-108.334-.022-47.16-27.02-108.71 5.055-110.671 60.806C44.846 105.407 0 140.001 0 187.429v56.953c0 32.741 14.28 63.954 39.18 85.634l97.71 85.081c4.252 3.702 3.11 5.573 3.11 32.903 0 17.673 14.327 32 32 32h252c17.673 0 32-14.327 32-32 0-23.513-1.015-30.745 3.982-42.37l42.835-99.656c6.094-14.177 9.183-29.172 9.183-44.568V146.963c0-52.839-54.314-88.662-103.136-67.911zM464 261.406a64.505 64.505 0 0 1-5.282 25.613l-42.835 99.655c-5.23 12.171-7.883 25.04-7.883 38.25V432H188v-10.286c0-16.37-7.14-31.977-19.59-42.817l-97.71-85.08C56.274 281.255 48 263.236 48 244.381v-56.953c0-33.208 52-33.537 52 .677v41.228a16 16 0 0 0 5.493 12.067l7 6.095A16 16 0 0 0 139 235.429V118.857c0-33.097 52-33.725 52 .677v26.751c0 8.836 7.164 16 16 16h7c8.836 0 16-7.164 16-16v-41.143c0-33.134 52-33.675 52 .677v40.466c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16v-27.429c0-33.03 52-33.78 52 .677v26.751c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16 0-33.146 52-33.613 52 .677v114.445z"], + "hand-scissors": [512, 512, [], "f257", "M256 480l70-.013c5.114 0 10.231-.583 15.203-1.729l118.999-27.427C490.56 443.835 512 417.02 512 386.277V180.575c0-23.845-13.03-45.951-34.005-57.69l-97.999-54.853c-34.409-19.261-67.263-5.824-92.218 24.733L142.85 37.008c-37.887-14.579-80.612 3.727-95.642 41.201-15.098 37.642 3.635 80.37 41.942 95.112L168 192l-94-9.141c-40.804 0-74 32.811-74 73.14 0 40.33 33.196 73.141 74 73.141h87.635c-3.675 26.245 8.692 51.297 30.341 65.006C178.657 436.737 211.044 480 256 480zm0-48.013c-25.16 0-25.12-36.567 0-36.567 8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16h-28c-25.159 0-25.122-36.567 0-36.567h28c8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16H74c-34.43 0-34.375-50.281 0-50.281h182c8.837 0 16-7.163 16-16v-11.632a16 16 0 0 0-10.254-14.933L106.389 128.51c-31.552-12.14-13.432-59.283 19.222-46.717l166.549 64.091a16.001 16.001 0 0 0 18.139-4.812l21.764-26.647c5.82-7.127 16.348-9.064 24.488-4.508l98 54.854c5.828 3.263 9.449 9.318 9.449 15.805v205.701c0 8.491-5.994 15.804-14.576 17.782l-119.001 27.427a19.743 19.743 0 0 1-4.423.502h-70z"], + "hand-spock": [512, 512, [], "f259", "M21.096 381.79l129.092 121.513a32 32 0 0 0 21.932 8.698h237.6c14.17 0 26.653-9.319 30.68-22.904l31.815-107.313A115.955 115.955 0 0 0 477 348.811v-36.839c0-4.051.476-8.104 1.414-12.045l31.73-133.41c10.099-42.412-22.316-82.738-65.544-82.525-4.144-24.856-22.543-47.165-49.85-53.992-35.803-8.952-72.227 12.655-81.25 48.75L296.599 184 274.924 52.01c-8.286-36.07-44.303-58.572-80.304-50.296-29.616 6.804-50.138 32.389-51.882 61.295-42.637.831-73.455 40.563-64.071 81.844l31.04 136.508c-27.194-22.515-67.284-19.992-91.482 5.722-25.376 26.961-24.098 69.325 2.871 94.707zm32.068-61.811l.002-.001c7.219-7.672 19.241-7.98 26.856-.813l53.012 49.894C143.225 378.649 160 371.4 160 357.406v-69.479c0-1.193-.134-2.383-.397-3.546l-34.13-150.172c-5.596-24.617 31.502-32.86 37.054-8.421l30.399 133.757a16 16 0 0 0 15.603 12.454h8.604c10.276 0 17.894-9.567 15.594-19.583l-41.62-181.153c-5.623-24.469 31.39-33.076 37.035-8.508l45.22 196.828A16 16 0 0 0 288.956 272h13.217a16 16 0 0 0 15.522-12.119l42.372-169.49c6.104-24.422 42.962-15.159 36.865 9.217L358.805 252.12c-2.521 10.088 5.115 19.88 15.522 19.88h9.694a16 16 0 0 0 15.565-12.295L426.509 146.6c5.821-24.448 42.797-15.687 36.966 8.802L431.72 288.81a100.094 100.094 0 0 0-2.72 23.162v36.839c0 6.548-.943 13.051-2.805 19.328L397.775 464h-219.31L53.978 346.836c-7.629-7.18-7.994-19.229-.814-26.857z"], + "handshake": [640, 512, [], "f2b5", "M519.2 127.9l-47.6-47.6A56.252 56.252 0 0 0 432 64H205.2c-14.8 0-29.1 5.9-39.6 16.3L118 127.9H0v255.7h64c17.6 0 31.8-14.2 31.9-31.7h9.1l84.6 76.4c30.9 25.1 73.8 25.7 105.6 3.8 12.5 10.8 26 15.9 41.1 15.9 18.2 0 35.3-7.4 48.8-24 22.1 8.7 48.2 2.6 64-16.8l26.2-32.3c5.6-6.9 9.1-14.8 10.9-23h57.9c.1 17.5 14.4 31.7 31.9 31.7h64V127.9H519.2zM48 351.6c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16zm390-6.9l-26.1 32.2c-2.8 3.4-7.8 4-11.3 1.2l-23.9-19.4-30 36.5c-6 7.3-15 4.8-18 2.4l-36.8-31.5-15.6 19.2c-13.9 17.1-39.2 19.7-55.3 6.6l-97.3-88H96V175.8h41.9l61.7-61.6c2-.8 3.7-1.5 5.7-2.3H262l-38.7 35.5c-29.4 26.9-31.1 72.3-4.4 101.3 14.8 16.2 61.2 41.2 101.5 4.4l8.2-7.5 108.2 87.8c3.4 2.8 3.9 7.9 1.2 11.3zm106-40.8h-69.2c-2.3-2.8-4.9-5.4-7.7-7.7l-102.7-83.4 12.5-11.4c6.5-6 7-16.1 1-22.6L367 167.1c-6-6.5-16.1-6.9-22.6-1l-55.2 50.6c-9.5 8.7-25.7 9.4-34.6 0-9.3-9.9-8.5-25.1 1.2-33.9l65.6-60.1c7.4-6.8 17-10.5 27-10.5l83.7-.2c2.1 0 4.1.8 5.5 2.3l61.7 61.6H544v128zm48 47.7c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16z"], + "hdd": [576, 512, [], "f0a0", "M567.403 235.642L462.323 84.589A48 48 0 0 0 422.919 64H153.081a48 48 0 0 0-39.404 20.589L8.597 235.642A48.001 48.001 0 0 0 0 263.054V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V263.054c0-9.801-3-19.366-8.597-27.412zM153.081 112h269.838l77.913 112H75.168l77.913-112zM528 400H48V272h480v128zm-32-64c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32zm-96 0c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32z"], + "heart": [512, 512, [], "f004", "M458.4 64.3C400.6 15.7 311.3 23 256 79.3 200.7 23 111.4 15.6 53.6 64.3-21.6 127.6-10.6 230.8 43 285.5l175.4 178.7c10 10.2 23.4 15.9 37.6 15.9 14.3 0 27.6-5.6 37.6-15.8L469 285.6c53.5-54.7 64.7-157.9-10.6-221.3zm-23.6 187.5L259.4 430.5c-2.4 2.4-4.4 2.4-6.8 0L77.2 251.8c-36.5-37.2-43.9-107.6 7.3-150.7 38.9-32.7 98.9-27.8 136.5 10.5l35 35.7 35-35.7c37.8-38.5 97.8-43.2 136.5-10.6 51.1 43.1 43.5 113.9 7.3 150.8z"], + "hospital": [448, 512, [], "f0f8", "M128 244v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12zm140 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm-76 84v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm76 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm180 124v36H0v-36c0-6.627 5.373-12 12-12h19.5V85.035C31.5 73.418 42.245 64 55.5 64H144V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v40h88.5c13.255 0 24 9.418 24 21.035V464H436c6.627 0 12 5.373 12 12zM79.5 463H192v-67c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v67h112.5V112H304v24c0 13.255-10.745 24-24 24H168c-13.255 0-24-10.745-24-24v-24H79.5v351zM266 64h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6z"], + "hourglass": [384, 512, [], "f254", "M368 48h4c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12H12C5.373 0 0 5.373 0 12v24c0 6.627 5.373 12 12 12h4c0 80.564 32.188 165.807 97.18 208C47.899 298.381 16 383.9 16 464h-4c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12h-4c0-80.564-32.188-165.807-97.18-208C336.102 213.619 368 128.1 368 48zM64 48h256c0 101.62-57.307 184-128 184S64 149.621 64 48zm256 416H64c0-101.62 57.308-184 128-184s128 82.38 128 184z"], + "id-badge": [384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm0 464H48V48h288v416zM144 112h96c8.8 0 16-7.2 16-16s-7.2-16-16-16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16zm48 176c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"], + "id-card": [576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H303.2c.9-4.5.8 3.6.8-22.4 0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6 0 26-.2 17.9.8 22.4H48V144h480v288zm-168-80h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm-168 96c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z"], + "image": [512, 512, [], "f03e", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 336H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v276a6 6 0 0 1-6 6zM128 152c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zM96 352h320v-80l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L192 304l-39.515-39.515c-4.686-4.686-12.284-4.686-16.971 0L96 304v48z"], + "images": [576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v48H54a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6v-10h48zm42-336H150a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6V86a6 6 0 0 0-6-6zm6-48c26.51 0 48 21.49 48 48v256c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h384zM264 144c0 22.091-17.909 40-40 40s-40-17.909-40-40 17.909-40 40-40 40 17.909 40 40zm-72 96l39.515-39.515c4.686-4.686 12.284-4.686 16.971 0L288 240l103.515-103.515c4.686-4.686 12.284-4.686 16.971 0L480 208v80H192v-48z"], + "keyboard": [576, 512, [], "f11c", "M528 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm8 336c0 4.411-3.589 8-8 8H48c-4.411 0-8-3.589-8-8V112c0-4.411 3.589-8 8-8h480c4.411 0 8 3.589 8 8v288zM170 270v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-336 82v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm384 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zM122 188v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-98 158v-16c0-6.627-5.373-12-12-12H180c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h216c6.627 0 12-5.373 12-12z"], + "kiss": [496, 512, [], "f596", "M168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm136 132c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"], + "kiss-beam": [496, 512, [], "f597", "M168 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm56-148c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zm24-156c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4z"], + "kiss-wink-heart": [504, 512, [], "f598", "M304 308.5c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36 21.7-9.1 35.1-23.4 35.1-36.4zm70.5-83.5l9.5 8.5c3.8 3.3 9.3 4 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 5.8 3.1 11.2.7 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0zM136 208.5c0 17.7 14.3 32 32 32s32-14.3 32-32-14.3-32-32-32-32 14.3-32 32zm365.1 194c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zM334 436.3c-26.1 12.5-55.2 19.7-86 19.7-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200c0 22.1-3.7 43.3-10.4 63.2 9 6.4 17 14.2 22.6 23.9 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-2.5-7.3 4.3 17.2-13.4-46.8z"], + "laugh": [496, 512, [], "f599", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 224c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm-160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"], + "laugh-beam": [496, 512, [], "f59a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 152c-23.8 0-52.7 29.3-56 71.4-.7 8.6 10.8 11.9 14.9 4.5l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.1-42.1-32-71.4-55.8-71.4zm-201 75.9l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.6 8.5 10.9 11.9 15.1 4.5zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"], + "laugh-squint": [496, 512, [], "f59b", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM343.6 196l33.6-40.3c8.6-10.3-3.8-24.8-15.4-18l-80 48c-7.8 4.7-7.8 15.9 0 20.6l80 48c11.5 6.8 24-7.6 15.4-18L343.6 196zm-209.4 58.3l80-48c7.8-4.7 7.8-15.9 0-20.6l-80-48c-11.6-6.9-24 7.7-15.4 18l33.6 40.3-33.6 40.3c-8.7 10.4 3.8 24.8 15.4 18zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"], + "laugh-wink": [496, 512, [], "f59c", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6C68.8 359.6 48 309.4 48 256s20.8-103.6 58.6-141.4C144.4 76.8 194.6 56 248 56s103.6 20.8 141.4 58.6c37.8 37.8 58.6 88 58.6 141.4s-20.8 103.6-58.6 141.4zM328 164c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1zm-160 60c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"], + "lemon": [512, 512, [], "f094", "M484.112 27.889C455.989-.233 416.108-8.057 387.059 8.865 347.604 31.848 223.504-41.111 91.196 91.197-41.277 223.672 31.923 347.472 8.866 387.058c-16.922 29.051-9.1 68.932 19.022 97.054 28.135 28.135 68.011 35.938 97.057 19.021 39.423-22.97 163.557 49.969 295.858-82.329 132.474-132.477 59.273-256.277 82.331-295.861 16.922-29.05 9.1-68.931-19.022-97.054zm-22.405 72.894c-38.8 66.609 45.6 165.635-74.845 286.08-120.44 120.443-219.475 36.048-286.076 74.843-22.679 13.207-64.035-27.241-50.493-50.488 38.8-66.609-45.6-165.635 74.845-286.08C245.573 4.702 344.616 89.086 411.219 50.292c22.73-13.24 64.005 27.288 50.488 50.491zm-169.861 8.736c1.37 10.96-6.404 20.957-17.365 22.327-54.846 6.855-135.779 87.787-142.635 142.635-1.373 10.989-11.399 18.734-22.326 17.365-10.961-1.37-18.735-11.366-17.365-22.326 9.162-73.286 104.167-168.215 177.365-177.365 10.953-1.368 20.956 6.403 22.326 17.364z"], + "life-ring": [512, 512, [], "f1cd", "M256 504c136.967 0 248-111.033 248-248S392.967 8 256 8 8 119.033 8 256s111.033 248 248 248zm-103.398-76.72l53.411-53.411c31.806 13.506 68.128 13.522 99.974 0l53.411 53.411c-63.217 38.319-143.579 38.319-206.796 0zM336 256c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zm91.28 103.398l-53.411-53.411c13.505-31.806 13.522-68.128 0-99.974l53.411-53.411c38.319 63.217 38.319 143.579 0 206.796zM359.397 84.72l-53.411 53.411c-31.806-13.505-68.128-13.522-99.973 0L152.602 84.72c63.217-38.319 143.579-38.319 206.795 0zM84.72 152.602l53.411 53.411c-13.506 31.806-13.522 68.128 0 99.974L84.72 359.398c-38.319-63.217-38.319-143.579 0-206.796z"], + "lightbulb": [384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zM128 176c0-35.29 28.71-64 64-64 8.837 0 16-7.164 16-16s-7.163-16-16-16c-52.935 0-96 43.065-96 96 0 8.836 7.164 16 16 16s16-7.164 16-16zm64-128c70.734 0 128 57.254 128 128 0 77.602-37.383 60.477-80.98 160h-94.04C101.318 236.33 64 253.869 64 176c0-70.735 57.254-128 128-128m0-48C94.805 0 16 78.803 16 176c0 101.731 51.697 91.541 90.516 192.674 3.55 9.249 12.47 15.326 22.376 15.326h126.215c9.906 0 18.826-6.078 22.376-15.326C316.303 267.541 368 277.731 368 176 368 78.803 289.195 0 192 0z"], + "list-alt": [512, 512, [], "f022", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zm-42-92v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm-252 12c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36z"], + "map": [576, 512, [], "f279", "M560.02 32c-1.96 0-3.98.37-5.96 1.16L384.01 96H384L212 35.28A64.252 64.252 0 0 0 191.76 32c-6.69 0-13.37 1.05-19.81 3.14L20.12 87.95A32.006 32.006 0 0 0 0 117.66v346.32C0 473.17 7.53 480 15.99 480c1.96 0 3.97-.37 5.96-1.16L192 416l172 60.71a63.98 63.98 0 0 0 40.05.15l151.83-52.81A31.996 31.996 0 0 0 576 394.34V48.02c0-9.19-7.53-16.02-15.98-16.02zM224 90.42l128 45.19v285.97l-128-45.19V90.42zM48 418.05V129.07l128-44.53v286.2l-.64.23L48 418.05zm480-35.13l-128 44.53V141.26l.64-.24L528 93.95v288.97z"], + "meh": [496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm8 144H160c-13.2 0-24 10.8-24 24s10.8 24 24 24h176c13.2 0 24-10.8 24-24s-10.8-24-24-24z"], + "meh-blank": [496, 512, [], "f5a4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"], + "meh-rolling-eyes": [496, 512, [], "f5a5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm88-304c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm0 112c-22.1 0-40-17.9-40-40 0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40zm-104-40c0-39.8-32.2-72-72-72s-72 32.2-72 72 32.2 72 72 72 72-32.2 72-72zm-112 0c0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40s-40-17.9-40-40zm192 128H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z"], + "minus-square": [448, 512, [], "f146", "M108 284c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h232c6.6 0 12 5.4 12 12v32c0 6.6-5.4 12-12 12H108zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "money-bill-alt": [640, 512, [], "f3d1", "M320 144c-53.02 0-96 50.14-96 112 0 61.85 42.98 112 96 112 53 0 96-50.13 96-112 0-61.86-42.98-112-96-112zm40 168c0 4.42-3.58 8-8 8h-64c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h16v-55.44l-.47.31a7.992 7.992 0 0 1-11.09-2.22l-8.88-13.31a7.992 7.992 0 0 1 2.22-11.09l15.33-10.22a23.99 23.99 0 0 1 13.31-4.03H328c4.42 0 8 3.58 8 8v88h16c4.42 0 8 3.58 8 8v16zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zm-16 272c-35.35 0-64 28.65-64 64H112c0-35.35-28.65-64-64-64V176c35.35 0 64-28.65 64-64h416c0 35.35 28.65 64 64 64v160z"], + "moon": [512, 512, [], "f186", "M279.135 512c78.756 0 150.982-35.804 198.844-94.775 28.27-34.831-2.558-85.722-46.249-77.401-82.348 15.683-158.272-47.268-158.272-130.792 0-48.424 26.06-92.292 67.434-115.836 38.745-22.05 28.999-80.788-15.022-88.919A257.936 257.936 0 0 0 279.135 0c-141.36 0-256 114.575-256 256 0 141.36 114.576 256 256 256zm0-464c12.985 0 25.689 1.201 38.016 3.478-54.76 31.163-91.693 90.042-91.693 157.554 0 113.848 103.641 199.2 215.252 177.944C402.574 433.964 344.366 464 279.135 464c-114.875 0-208-93.125-208-208s93.125-208 208-208z"], + "newspaper": [576, 512, [], "f1ea", "M552 64H112c-20.858 0-38.643 13.377-45.248 32H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h496c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24zM48 392V144h16v248c0 4.411-3.589 8-8 8s-8-3.589-8-8zm480 8H111.422c.374-2.614.578-5.283.578-8V112h416v288zM172 280h136c6.627 0 12-5.373 12-12v-96c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v96c0 6.627 5.373 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H172c-6.627 0-12-5.373-12-12zm192 0v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0-144v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0 72v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12z"], + "object-group": [512, 512, [], "f247", "M500 128c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v256H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V128h12zm-52-64h32v32h-32V64zM32 64h32v32H32V64zm32 384H32v-32h32v32zm416 0h-32v-32h32v32zm-40-64h-12c-6.627 0-12 5.373-12 12v12H96v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h12v256zm-36-192h-84v-52c0-6.628-5.373-12-12-12H108c-6.627 0-12 5.372-12 12v168c0 6.628 5.373 12 12 12h84v52c0 6.628 5.373 12 12 12h200c6.627 0 12-5.372 12-12V204c0-6.628-5.373-12-12-12zm-268-24h144v112H136V168zm240 176H232v-24h76c6.627 0 12-5.372 12-12v-76h56v112z"], + "object-ungroup": [576, 512, [], "f248", "M564 224c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12h-88v-24h12c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v160H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h88v24h-12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V224h12zM352 64h32v32h-32V64zm0 256h32v32h-32v-32zM64 352H32v-32h32v32zm0-256H32V64h32v32zm32 216v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h12v160h-12c-6.627 0-12 5.373-12 12v12H96zm128 136h-32v-32h32v32zm280-64h-12c-6.627 0-12 5.373-12 12v12H256v-12c0-6.627-5.373-12-12-12h-12v-24h88v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12v-88h88v12c0 6.627 5.373 12 12 12h12v160zm40 64h-32v-32h32v32zm0-256h-32v-32h32v32z"], + "paper-plane": [512, 512, [], "f1d8", "M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z"], + "pause-circle": [512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm96-280v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16zm-112 0v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16z"], + "play-circle": [512, 512, [], "f144", "M371.7 238l-176-107c-15.8-8.8-35.7 2.5-35.7 21v208c0 18.4 19.8 29.8 35.7 21l176-101c16.4-9.1 16.4-32.8 0-42zM504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256z"], + "plus-square": [448, 512, [], "f0fe", "M352 240v32c0 6.6-5.4 12-12 12h-88v88c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-88h-88c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h88v-88c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v88h88c6.6 0 12 5.4 12 12zm96-160v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "question-circle": [512, 512, [], "f059", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 448c-110.532 0-200-89.431-200-200 0-110.495 89.472-200 200-200 110.491 0 200 89.471 200 200 0 110.53-89.431 200-200 200zm107.244-255.2c0 67.052-72.421 68.084-72.421 92.863V300c0 6.627-5.373 12-12 12h-45.647c-6.627 0-12-5.373-12-12v-8.659c0-35.745 27.1-50.034 47.579-61.516 17.561-9.845 28.324-16.541 28.324-29.579 0-17.246-21.999-28.693-39.784-28.693-23.189 0-33.894 10.977-48.942 29.969-4.057 5.12-11.46 6.071-16.666 2.124l-27.824-21.098c-5.107-3.872-6.251-11.066-2.644-16.363C184.846 131.491 214.94 112 261.794 112c49.071 0 101.45 38.304 101.45 88.8zM298 368c0 23.159-18.841 42-42 42s-42-18.841-42-42 18.841-42 42-42 42 18.841 42 42z"], + "registered": [512, 512, [], "f25d", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm110.442-81.791c-53.046-96.284-50.25-91.468-53.271-96.085 24.267-13.879 39.482-41.563 39.482-73.176 0-52.503-30.247-85.252-101.498-85.252h-78.667c-6.617 0-12 5.383-12 12V380c0 6.617 5.383 12 12 12h38.568c6.617 0 12-5.383 12-12v-83.663h31.958l47.515 89.303a11.98 11.98 0 0 0 10.593 6.36h42.81c9.14 0 14.914-9.799 10.51-17.791zM256.933 239.906h-33.875v-64.14h27.377c32.417 0 38.929 12.133 38.929 31.709-.001 20.913-11.518 32.431-32.431 32.431z"], + "sad-cry": [496, 512, [], "f5b3", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm144 386.4V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v151.4C315.5 447 282.8 456 248 456s-67.5-9-96-24.6V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v114.4c-34.6-36-56-84.7-56-138.4 0-110.3 89.7-200 200-200s200 89.7 200 200c0 53.7-21.4 102.5-56 138.4zM205.8 234.5c4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.3 7.9 4.8 13.7 1.6zM344 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.5 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm-96 92c-30.9 0-56 28.7-56 64s25.1 64 56 64 56-28.7 56-64-25.1-64-56-64z"], + "sad-tear": [496, 512, [], "f5b4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm8-152c-13.2 0-24 10.8-24 24s10.8 24 24 24c23.8 0 46.3 10.5 61.6 28.8 8.1 9.8 23.2 11.9 33.8 3.1 10.2-8.5 11.6-23.6 3.1-33.8C330 320.8 294.1 304 256 304zm-88-64c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-165.6 98.8C151 290.1 126 325.4 126 342.9c0 22.7 18.8 41.1 42 41.1s42-18.4 42-41.1c0-17.5-25-52.8-36.4-68.1-2.8-3.7-8.4-3.7-11.2 0z"], + "save": [448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM272 80v80H144V80h128zm122 352H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h42v104c0 13.255 10.745 24 24 24h176c13.255 0 24-10.745 24-24V83.882l78.243 78.243a6 6 0 0 1 1.757 4.243V426a6 6 0 0 1-6 6zM224 232c-48.523 0-88 39.477-88 88s39.477 88 88 88 88-39.477 88-88-39.477-88-88-88zm0 128c-22.056 0-40-17.944-40-40s17.944-40 40-40 40 17.944 40 40-17.944 40-40 40z"], + "share-square": [576, 512, [], "f14d", "M561.938 158.06L417.94 14.092C387.926-15.922 336 5.097 336 48.032v57.198c-42.45 1.88-84.03 6.55-120.76 17.99-35.17 10.95-63.07 27.58-82.91 49.42C108.22 199.2 96 232.6 96 271.94c0 61.697 33.178 112.455 84.87 144.76 37.546 23.508 85.248-12.651 71.02-55.74-15.515-47.119-17.156-70.923 84.11-78.76V336c0 42.993 51.968 63.913 81.94 33.94l143.998-144c18.75-18.74 18.75-49.14 0-67.88zM384 336V232.16C255.309 234.082 166.492 255.35 206.31 376 176.79 357.55 144 324.08 144 271.94c0-109.334 129.14-118.947 240-119.85V48l144 144-144 144zm24.74 84.493a82.658 82.658 0 0 0 20.974-9.303c7.976-4.952 18.286.826 18.286 10.214V464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h132c6.627 0 12 5.373 12 12v4.486c0 4.917-2.987 9.369-7.569 11.152-13.702 5.331-26.396 11.537-38.05 18.585a12.138 12.138 0 0 1-6.28 1.777H54a6 6 0 0 0-6 6v340a6 6 0 0 0 6 6h340a6 6 0 0 0 6-6v-25.966c0-5.37 3.579-10.059 8.74-11.541z"], + "smile": [496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm4 72.6c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.1-8.4-25.3-7.1-33.8 3.1z"], + "smile-beam": [496, 512, [], "f5b8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm84-143.4c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.6-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.2-8.4-25.3-7.1-33.8 3.1zM136.5 211c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.4 1.1 7.4-.5 9.3-3.7l9.5-17zM328 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4z"], + "smile-wink": [496, 512, [], "f4da", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm117.8-146.4c-10.2-8.5-25.3-7.1-33.8 3.1-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-60c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1z"], + "snowflake": [448, 512, [], "f2dc", "M438.237 355.927l-66.574-38.54 59.448-10.327c5.846-1.375 10.609-5.183 13.458-10.13 2.48-4.307 3.506-9.478 2.524-14.651-2.11-11.115-12.686-18.039-23.621-15.467l-85.423 31.115L255.914 256l82.136-41.926 85.423 31.115c10.936 2.572 21.512-4.352 23.621-15.467 2.111-11.115-5.046-22.209-15.981-24.781l-59.448-10.327 66.573-38.54c9.54-5.523 12.615-18.092 6.867-28.074-5.748-9.982-18.14-13.596-27.68-8.074l-66.574 38.54 20.805-56.787c3.246-10.782-2.758-22.542-13.413-26.268-10.654-3.725-21.922 1.997-25.168 12.779l-15.838 89.735-72.423 41.926V136l69.585-58.621c7.689-8.21 6.997-20.856-1.548-28.245-8.545-7.391-21.705-6.723-29.394 1.486l-38.644 46.46V20c0-11.046-9.318-20-20.813-20s-20.813 8.954-20.813 20v77.08l-38.644-46.46c-7.689-8.21-20.849-8.876-29.394-1.486-8.544 7.389-9.236 20.035-1.547 28.245L203.187 136v83.853l-72.423-41.926-15.838-89.736c-3.247-10.782-14.515-16.504-25.169-12.779-10.656 3.725-16.659 15.486-13.413 26.268l20.805 56.787-66.573-38.54c-9.54-5.523-21.933-1.908-27.68 8.074s-2.673 22.551 6.867 28.074l66.574 38.54-59.449 10.328C5.953 207.515-1.202 218.609.907 229.724c2.11 11.114 12.686 18.038 23.622 15.466l85.422-31.115L192.086 256l-82.136 41.926-85.423-31.115c-10.936-2.572-21.511 4.352-23.622 15.466-2.109 11.113 5.046 22.209 15.981 24.781l59.449 10.328-66.574 38.54C.223 361.449-2.852 374.018 2.896 384s18.14 13.597 27.68 8.074l66.574-38.54-20.805 56.786c-1.735 5.764-.828 11.805 2.02 16.751 2.48 4.307 6.433 7.784 11.392 9.517 10.655 3.725 21.923-1.997 25.169-12.779l15.838-89.736 72.423-41.926V376l-69.585 58.621c-7.69 8.21-6.997 20.855 1.547 28.245 8.544 7.388 21.705 6.723 29.394-1.487l38.644-46.46V492c0 11.046 9.318 20 20.813 20s20.813-8.954 20.813-20v-77.081l38.644 46.46c4.111 4.389 9.782 6.621 15.478 6.621 4.96 0 9.939-1.694 13.916-5.134 8.545-7.39 9.237-20.035 1.548-28.245L244.813 376v-83.853l72.423 41.926 15.838 89.736c3.246 10.782 14.514 16.504 25.168 12.779 10.653-3.726 16.659-15.487 13.412-26.268l-20.805-56.787 66.574 38.54c9.54 5.523 21.933 1.908 27.68-8.074 5.749-9.981 2.675-22.55-6.866-28.072z"], + "square": [448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h340c3.3 0 6 2.7 6 6v340c0 3.3-2.7 6-6 6z"], + "star": [576, 512, [], "f005", "M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z"], + "star-half": [576, 512, [], "f089", "M288 385.3l-124.3 65.4 23.7-138.4-100.6-98 139-20.2 62.2-126V0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6v-54.3z"], + "sticky-note": [448, 512, [], "f249", "M448 348.106V80c0-26.51-21.49-48-48-48H48C21.49 32 0 53.49 0 80v351.988c0 26.51 21.49 48 48 48h268.118a48 48 0 0 0 33.941-14.059l83.882-83.882A48 48 0 0 0 448 348.106zm-128 80v-76.118h76.118L320 428.106zM400 80v223.988H296c-13.255 0-24 10.745-24 24v104H48V80h352z"], + "stop-circle": [512, 512, [], "f28d", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm296-80v160c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16z"], + "sun": [512, 512, [], "f185", "M220.116 487.936l-20.213-49.425a3.992 3.992 0 0 0-5.808-1.886l-45.404 28.104c-29.466 18.24-66.295-8.519-58.054-42.179l12.699-51.865a3.993 3.993 0 0 0-3.59-4.941l-53.251-3.951c-34.554-2.562-48.632-45.855-22.174-68.247L65.08 259.05a3.992 3.992 0 0 0 0-6.106l-40.76-34.497c-26.45-22.384-12.39-65.682 22.174-68.246l53.251-3.951a3.993 3.993 0 0 0 3.59-4.941L90.637 89.443c-8.239-33.656 28.581-60.42 58.054-42.179l45.403 28.104a3.993 3.993 0 0 0 5.808-1.887l20.213-49.425c13.116-32.071 58.638-32.081 71.758 0l20.212 49.424a3.994 3.994 0 0 0 5.809 1.887l45.403-28.104c29.464-18.236 66.297 8.513 58.054 42.179l-12.699 51.865a3.995 3.995 0 0 0 3.59 4.941l53.251 3.951c34.553 2.563 48.633 45.854 22.175 68.246l-40.76 34.497a3.993 3.993 0 0 0 0 6.107l40.76 34.496c26.511 22.441 12.322 65.689-22.175 68.247l-53.251 3.951a3.993 3.993 0 0 0-3.589 4.942l12.698 51.864c8.241 33.658-28.583 60.421-58.054 42.18l-45.403-28.104a3.994 3.994 0 0 0-5.809 1.887l-20.212 49.424c-13.159 32.178-58.675 31.993-71.757 0zm16.814-64.568l19.064 46.616 19.064-46.615c10.308-25.2 40.778-35.066 63.892-20.759l42.822 26.507-11.976-48.919c-6.475-26.444 12.38-52.339 39.487-54.349l50.226-3.726-38.444-32.536c-20.782-17.591-20.747-49.621.001-67.18l38.442-32.536-50.225-3.727c-27.151-2.015-45.95-27.948-39.488-54.349l11.978-48.919-42.823 26.507c-23.151 14.327-53.603 4.4-63.892-20.76l-19.064-46.615-19.064 46.617c-10.305 25.198-40.778 35.066-63.891 20.76l-42.823-26.508 11.977 48.918c6.474 26.446-12.381 52.338-39.488 54.35l-50.224 3.726 38.443 32.537c20.782 17.588 20.747 49.619 0 67.178L52.48 322.123l50.226 3.726c27.151 2.014 45.95 27.947 39.487 54.349l-11.977 48.919 42.823-26.507c23.188-14.355 53.622-4.352 63.891 20.758zM256 384c-70.58 0-128-57.421-128-128 0-70.58 57.42-128 128-128 70.579 0 128 57.42 128 128 0 70.579-57.421 128-128 128zm0-208c-44.112 0-80 35.888-80 80s35.888 80 80 80 80-35.888 80-80-35.888-80-80-80z"], + "surprise": [496, 512, [], "f5c2", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-176c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm-48-72c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"], + "thumbs-down": [512, 512, [], "f165", "M466.27 225.31c4.674-22.647.864-44.538-8.99-62.99 2.958-23.868-4.021-48.565-17.34-66.99C438.986 39.423 404.117 0 327 0c-7 0-15 .01-22.22.01C201.195.01 168.997 40 128 40h-10.845c-5.64-4.975-13.042-8-21.155-8H32C14.327 32 0 46.327 0 64v240c0 17.673 14.327 32 32 32h64c11.842 0 22.175-6.438 27.708-16h7.052c19.146 16.953 46.013 60.653 68.76 83.4 13.667 13.667 10.153 108.6 71.76 108.6 57.58 0 95.27-31.936 95.27-104.73 0-18.41-3.93-33.73-8.85-46.54h36.48c48.602 0 85.82-41.565 85.82-85.58 0-19.15-4.96-34.99-13.73-49.84zM64 296c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm330.18 16.73H290.19c0 37.82 28.36 55.37 28.36 94.54 0 23.75 0 56.73-47.27 56.73-18.91-18.91-9.46-66.18-37.82-94.54C206.9 342.89 167.28 272 138.92 272H128V85.83c53.611 0 100.001-37.82 171.64-37.82h37.82c35.512 0 60.82 17.12 53.12 65.9 15.2 8.16 26.5 36.44 13.94 57.57 21.581 20.384 18.699 51.065 5.21 65.62 9.45 0 22.36 18.91 22.27 37.81-.09 18.91-16.71 37.82-37.82 37.82z"], + "thumbs-up": [512, 512, [], "f164", "M466.27 286.69C475.04 271.84 480 256 480 236.85c0-44.015-37.218-85.58-85.82-85.58H357.7c4.92-12.81 8.85-28.13 8.85-46.54C366.55 31.936 328.86 0 271.28 0c-61.607 0-58.093 94.933-71.76 108.6-22.747 22.747-49.615 66.447-68.76 83.4H32c-17.673 0-32 14.327-32 32v240c0 17.673 14.327 32 32 32h64c14.893 0 27.408-10.174 30.978-23.95 44.509 1.001 75.06 39.94 177.802 39.94 7.22 0 15.22.01 22.22.01 77.117 0 111.986-39.423 112.94-95.33 13.319-18.425 20.299-43.122 17.34-66.99 9.854-18.452 13.664-40.343 8.99-62.99zm-61.75 53.83c12.56 21.13 1.26 49.41-13.94 57.57 7.7 48.78-17.608 65.9-53.12 65.9h-37.82c-71.639 0-118.029-37.82-171.64-37.82V240h10.92c28.36 0 67.98-70.89 94.54-97.46 28.36-28.36 18.91-75.63 37.82-94.54 47.27 0 47.27 32.98 47.27 56.73 0 39.17-28.36 56.72-28.36 94.54h103.99c21.11 0 37.73 18.91 37.82 37.82.09 18.9-12.82 37.81-22.27 37.81 13.489 14.555 16.371 45.236-5.21 65.62zM88 432c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"], + "times-circle": [512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm101.8-262.2L295.6 256l62.2 62.2c4.7 4.7 4.7 12.3 0 17l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L256 295.6l-62.2 62.2c-4.7 4.7-12.3 4.7-17 0l-22.6-22.6c-4.7-4.7-4.7-12.3 0-17l62.2-62.2-62.2-62.2c-4.7-4.7-4.7-12.3 0-17l22.6-22.6c4.7-4.7 12.3-4.7 17 0l62.2 62.2 62.2-62.2c4.7-4.7 12.3-4.7 17 0l22.6 22.6c4.7 4.7 4.7 12.3 0 17z"], + "tired": [496, 512, [], "f5c8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm129.1-303.8c-3.8-4.4-10.3-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.8 1.6 15.3-2.5 3.8-4.5 3.9-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zM220 208c0-4.2-2.2-8.1-5.8-10.3l-80-48c-5-3-11.5-1.9-15.3 2.5-3.8 4.5-3.9 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.5 4.1 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3zm28 64c-45.4 0-100.9 38.3-107.8 93.3-1.5 11.8 6.9 21.6 15.5 17.9C178.4 373.5 212 368 248 368s69.6 5.5 92.3 15.2c8.5 3.7 17-6 15.5-17.9-6.9-55-62.4-93.3-107.8-93.3z"], + "trash-alt": [448, 512, [], "f2ed", "M192 188v216c0 6.627-5.373 12-12 12h-24c-6.627 0-12-5.373-12-12V188c0-6.627 5.373-12 12-12h24c6.627 0 12 5.373 12 12zm100-12h-24c-6.627 0-12 5.373-12 12v216c0 6.627 5.373 12 12 12h24c6.627 0 12-5.373 12-12V188c0-6.627-5.373-12-12-12zm132-96c13.255 0 24 10.745 24 24v12c0 6.627-5.373 12-12 12h-20v336c0 26.51-21.49 48-48 48H80c-26.51 0-48-21.49-48-48V128H12c-6.627 0-12-5.373-12-12v-12c0-13.255 10.745-24 24-24h74.411l34.018-56.696A48 48 0 0 1 173.589 0h100.823a48 48 0 0 1 41.16 23.304L349.589 80H424zm-269.611 0h139.223L276.16 50.913A6 6 0 0 0 271.015 48h-94.028a6 6 0 0 0-5.145 2.913L154.389 80zM368 128H80v330a6 6 0 0 0 6 6h276a6 6 0 0 0 6-6V128z"], + "user": [448, 512, [], "f007", "M313.6 304c-28.7 0-42.5 16-89.6 16-47.1 0-60.8-16-89.6-16C60.2 304 0 364.2 0 438.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-25.6c0-74.2-60.2-134.4-134.4-134.4zM400 464H48v-25.6c0-47.6 38.8-86.4 86.4-86.4 14.6 0 38.3 16 89.6 16 51.7 0 74.9-16 89.6-16 47.6 0 86.4 38.8 86.4 86.4V464zM224 288c79.5 0 144-64.5 144-144S303.5 0 224 0 80 64.5 80 144s64.5 144 144 144zm0-240c52.9 0 96 43.1 96 96s-43.1 96-96 96-96-43.1-96-96 43.1-96 96-96z"], + "user-circle": [496, 512, [], "f2bd", "M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"], + "window-close": [512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v340zM356.5 194.6L295.1 256l61.4 61.4c4.6 4.6 4.6 12.1 0 16.8l-22.3 22.3c-4.6 4.6-12.1 4.6-16.8 0L256 295.1l-61.4 61.4c-4.6 4.6-12.1 4.6-16.8 0l-22.3-22.3c-4.6-4.6-4.6-12.1 0-16.8l61.4-61.4-61.4-61.4c-4.6-4.6-4.6-12.1 0-16.8l22.3-22.3c4.6-4.6 12.1-4.6 16.8 0l61.4 61.4 61.4-61.4c4.6-4.6 12.1-4.6 16.8 0l22.3 22.3c4.7 4.6 4.7 12.1 0 16.8z"], + "window-maximize": [512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V192h416v234z"], + "window-minimize": [512, 512, [], "f2d1", "M480 480H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h448c17.7 0 32 14.3 32 32s-14.3 32-32 32z"], + "window-restore": [512, 512, [], "f2d2", "M464 0H144c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-96 464H48V256h320v208zm96-96h-48V144c0-26.5-21.5-48-48-48H144V48h320v320z"] +}; + +bunker(function () { + define('far', icons); +}); + +}()); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/regular.min.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/regular.min.js new file mode 100644 index 0000000000..a958d571cc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/regular.min.js @@ -0,0 +1,204 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +!function() { + "use strict"; + var c = {}; + try { + "undefined" != typeof window && (c = window); + } catch (c) {} + var z = (c.navigator || {}).userAgent, h = void 0 === z ? "" : z, l = c, v = (~h.indexOf("MSIE") || h.indexOf("Trident/"), + "___FONT_AWESOME___"), m = function() { + try { + return !1; + } catch (c) { + return !1; + } + }(), s = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ], a = s.concat([ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ]); + [ "xs", "sm", "lg", "fw", "ul", "li", "border", "pull-left", "pull-right", "spin", "pulse", "rotate-90", "rotate-180", "rotate-270", "flip-horizontal", "flip-vertical", "stack", "stack-1x", "stack-2x", "inverse", "layers", "layers-text", "layers-counter" ].concat(s.map(function(c) { + return c + "x"; + })).concat(a.map(function(c) { + return "w-" + c; + })); + var M = l || {}; + M[v] || (M[v] = {}), M[v].styles || (M[v].styles = {}), M[v].hooks || (M[v].hooks = {}), + M[v].shims || (M[v].shims = []); + var V = M[v], H = Object.assign || function(c) { + for (var z = 1; z < arguments.length; z++) { + var h = arguments[z]; + for (var l in h) Object.prototype.hasOwnProperty.call(h, l) && (c[l] = h[l]); + } + return c; + }; + var C = { + "address-book": [ 448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-68 304H48V48h320v416zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z" ], + "address-card": [ 576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H48V80h480v352zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2zM360 320h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8z" ], + angry: [ 496, 512, [], "f556", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-144c-33.6 0-65.2 14.8-86.8 40.6-8.5 10.2-7.1 25.3 3.1 33.8s25.3 7.2 33.8-3c24.8-29.7 75-29.7 99.8 0 8.1 9.7 23.2 11.9 33.8 3 10.2-8.5 11.5-23.6 3.1-33.8-21.6-25.8-53.2-40.6-86.8-40.6zm-48-72c10.3 0 19.9-6.7 23-17.1 3.8-12.7-3.4-26.1-16.1-29.9l-80-24c-12.8-3.9-26.1 3.4-29.9 16.1-3.8 12.7 3.4 26.1 16.1 29.9l28.2 8.5c-3.1 4.9-5.3 10.4-5.3 16.6 0 17.7 14.3 32 32 32s32-14.4 32-32.1zm199-54.9c-3.8-12.7-17.1-19.9-29.9-16.1l-80 24c-12.7 3.8-19.9 17.2-16.1 29.9 3.1 10.4 12.7 17.1 23 17.1 0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.2-2.2-11.7-5.3-16.6l28.2-8.5c12.7-3.7 19.9-17.1 16.1-29.8z" ], + "arrow-alt-circle-down": [ 512, 512, [], "f358", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm-32-316v116h-67c-10.7 0-16 12.9-8.5 20.5l99 99c4.7 4.7 12.3 4.7 17 0l99-99c7.6-7.6 2.2-20.5-8.5-20.5h-67V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12z" ], + "arrow-alt-circle-left": [ 512, 512, [], "f359", "M8 256c0 137 111 248 248 248s248-111 248-248S393 8 256 8 8 119 8 256zm448 0c0 110.5-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56s200 89.5 200 200zm-72-20v40c0 6.6-5.4 12-12 12H256v67c0 10.7-12.9 16-20.5 8.5l-99-99c-4.7-4.7-4.7-12.3 0-17l99-99c7.6-7.6 20.5-2.2 20.5 8.5v67h116c6.6 0 12 5.4 12 12z" ], + "arrow-alt-circle-right": [ 512, 512, [], "f35a", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z" ], + "arrow-alt-circle-up": [ 512, 512, [], "f35b", "M256 504c137 0 248-111 248-248S393 8 256 8 8 119 8 256s111 248 248 248zm0-448c110.5 0 200 89.5 200 200s-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56zm20 328h-40c-6.6 0-12-5.4-12-12V256h-67c-10.7 0-16-12.9-8.5-20.5l99-99c4.7-4.7 12.3-4.7 17 0l99 99c7.6 7.6 2.2 20.5-8.5 20.5h-67v116c0 6.6-5.4 12-12 12z" ], + bell: [ 448, 512, [], "f0f3", "M425.403 330.939c-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.843 31.843 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095C118.101 62.783 57.143 131.831 57.143 214.857c0 81.933-17.551 99.292-34.543 116.078C-25.496 378.441 9.726 448 66.919 448H160c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h93.08c57.19 0 92.415-69.583 44.323-117.061zM224 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm157.092-72H66.9c-16.762 0-25.135-20.39-13.334-32.191 28.585-28.585 51.577-55.724 51.577-152.952C105.143 149.319 158.462 96 224 96s118.857 53.319 118.857 118.857c0 97.65 23.221 124.574 51.568 152.952C406.278 379.661 397.783 400 381.092 400z" ], + "bell-slash": [ 576, 512, [], "f1f6", "M130.9 400c-16.762 0-25.135-20.39-13.334-32.191 25.226-25.226 46.094-49.338 50.649-121.48l-46.777-41.274a168.48 168.48 0 0 0-.296 9.802c0 81.933-17.551 99.292-34.543 116.078C38.504 378.441 73.726 448 130.919 448H224c0 35.346 28.654 64 64 64s64-28.654 64-64h44.777l-54.4-48H130.9zM288 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm283.867.553l-67.931-59.571c13.104-24.118 11.524-56.318-14.532-82.042-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.848 31.848 0 0 0 320 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095c-41.471 6.618-77.891 28.571-103.249 59.841L36.459 3.037c-5.058-4.436-12.777-3.956-17.24 1.071L3.056 22.313C-1.407 27.34-.925 35.012 4.134 39.447l535.408 469.516c5.058 4.436 12.777 3.956 17.24-1.071l16.163-18.205c4.462-5.027 3.98-12.699-1.078-17.134zM288 96c65.538 0 118.857 53.319 118.857 118.857 0 97.65 23.221 124.574 51.568 152.952 2.908 2.908 4.573 6.328 5.209 9.832L194.482 141.612C216.258 113.867 250.075 96 288 96z" ], + bookmark: [ 384, 512, [], "f02e", "M336 0H48C21.49 0 0 21.49 0 48v464l192-112 192 112V48c0-26.51-21.49-48-48-48zm0 428.43l-144-84-144 84V54a6 6 0 0 1 6-6h276c3.314 0 6 2.683 6 5.996V428.43z" ], + building: [ 448, 512, [], "f1ad", "M128 148v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12zm140 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-128 96h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm128 0h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-76 84v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm76 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm180 124v36H0v-36c0-6.6 5.4-12 12-12h19.5V24c0-13.3 10.7-24 24-24h337c13.3 0 24 10.7 24 24v440H436c6.6 0 12 5.4 12 12zM79.5 463H192v-67c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v67h112.5V49L80 48l-.5 415z" ], + calendar: [ 448, 512, [], "f133", "M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z" ], + "calendar-alt": [ 448, 512, [], "f073", "M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "calendar-check": [ 448, 512, [], "f274", "M400 64h-48V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H160V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V160h352v298a6 6 0 0 1-6 6zm-52.849-200.65L198.842 404.519c-4.705 4.667-12.303 4.637-16.971-.068l-75.091-75.699c-4.667-4.705-4.637-12.303.068-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l44.104 44.461 111.072-110.181c4.705-4.667 12.303-4.637 16.971.068l22.536 22.718c4.667 4.705 4.636 12.303-.069 16.97z" ], + "calendar-minus": [ 448, 512, [], "f272", "M124 328c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H124zm324-216v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "calendar-plus": [ 448, 512, [], "f271", "M336 292v24c0 6.6-5.4 12-12 12h-76v76c0 6.6-5.4 12-12 12h-24c-6.6 0-12-5.4-12-12v-76h-76c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h76v-76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v76h76c6.6 0 12 5.4 12 12zm112-180v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "calendar-times": [ 448, 512, [], "f273", "M311.7 374.7l-17 17c-4.7 4.7-12.3 4.7-17 0L224 337.9l-53.7 53.7c-4.7 4.7-12.3 4.7-17 0l-17-17c-4.7-4.7-4.7-12.3 0-17l53.7-53.7-53.7-53.7c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0l53.7 53.7 53.7-53.7c4.7-4.7 12.3-4.7 17 0l17 17c4.7 4.7 4.7 12.3 0 17L257.9 304l53.7 53.7c4.8 4.7 4.8 12.3.1 17zM448 112v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "caret-square-down": [ 448, 512, [], "f150", "M125.1 208h197.8c10.7 0 16.1 13 8.5 20.5l-98.9 98.3c-4.7 4.7-12.2 4.7-16.9 0l-98.9-98.3c-7.7-7.5-2.3-20.5 8.4-20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "caret-square-left": [ 448, 512, [], "f191", "M272 157.1v197.8c0 10.7-13 16.1-20.5 8.5l-98.3-98.9c-4.7-4.7-4.7-12.2 0-16.9l98.3-98.9c7.5-7.7 20.5-2.3 20.5 8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "caret-square-right": [ 448, 512, [], "f152", "M176 354.9V157.1c0-10.7 13-16.1 20.5-8.5l98.3 98.9c4.7 4.7 4.7 12.2 0 16.9l-98.3 98.9c-7.5 7.7-20.5 2.3-20.5-8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "caret-square-up": [ 448, 512, [], "f151", "M322.9 304H125.1c-10.7 0-16.1-13-8.5-20.5l98.9-98.3c4.7-4.7 12.2-4.7 16.9 0l98.9 98.3c7.7 7.5 2.3 20.5-8.4 20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "chart-bar": [ 512, 512, [], "f080", "M500 400c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v324h452zm-356-60v-72c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V140c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V204c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V108c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12z" ], + "check-circle": [ 512, 512, [], "f058", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z" ], + "check-square": [ 448, 512, [], "f14a", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm0 400H48V80h352v352zm-35.864-241.724L191.547 361.48c-4.705 4.667-12.303 4.637-16.97-.068l-90.781-91.516c-4.667-4.705-4.637-12.303.069-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l59.792 60.277 141.352-140.216c4.705-4.667 12.303-4.637 16.97.068l22.536 22.718c4.667 4.706 4.637 12.304-.068 16.971z" ], + circle: [ 512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z" ], + clipboard: [ 384, 512, [], "f328", "M336 64h-80c0-35.29-28.71-64-64-64s-64 28.71-64 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h42v36c0 6.627 5.373 12 12 12h168c6.627 0 12-5.373 12-12v-36h42a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zM192 40c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24" ], + clock: [ 512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z" ], + clone: [ 512, 512, [], "f24d", "M464 0H144c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h320c26.51 0 48-21.49 48-48v-48h48c26.51 0 48-21.49 48-48V48c0-26.51-21.49-48-48-48zM362 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h42v224c0 26.51 21.49 48 48 48h224v42a6 6 0 0 1-6 6zm96-96H150a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h308a6 6 0 0 1 6 6v308a6 6 0 0 1-6 6z" ], + "closed-captioning": [ 512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 336H54c-3.3 0-6-2.7-6-6V118c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v276c0 3.3-2.7 6-6 6zm-211.1-85.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7zm190.4 0c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.9-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 220.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7z" ], + comment: [ 512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z" ], + "comment-alt": [ 512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 7.1 5.8 12 12 12 2.4 0 4.9-.7 7.1-2.4L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm16 352c0 8.8-7.2 16-16 16H288l-12.8 9.6L208 428v-60H64c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h384c8.8 0 16 7.2 16 16v288z" ], + "comment-dots": [ 512, 512, [], "f4ad", "M144 208c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z" ], + comments: [ 576, 512, [], "f086", "M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z" ], + compass: [ 512, 512, [], "f14e", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm91.326-312.131l-33.359 137.779a24.005 24.005 0 0 1-6.772 11.729l-102.64 97.779c-17.104 16.293-45.56.434-39.88-23.024l33.359-137.779a23.997 23.997 0 0 1 6.772-11.729l102.642-97.779c17.285-16.47 45.494-.175 39.878 23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z" ], + copy: [ 448, 512, [], "f0c5", "M433.941 65.941l-51.882-51.882A48 48 0 0 0 348.118 0H176c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48v-48h80c26.51 0 48-21.49 48-48V99.882a48 48 0 0 0-14.059-33.941zM266 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h74v224c0 26.51 21.49 48 48 48h96v42a6 6 0 0 1-6 6zm128-96H182a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h106v88c0 13.255 10.745 24 24 24h88v202a6 6 0 0 1-6 6zm6-256h-64V48h9.632c1.591 0 3.117.632 4.243 1.757l48.368 48.368a6 6 0 0 1 1.757 4.243V112z" ], + copyright: [ 512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm107.351-101.064c-9.614 9.712-45.53 41.396-104.065 41.396-82.43 0-140.484-61.425-140.484-141.567 0-79.152 60.275-139.401 139.762-139.401 55.531 0 88.738 26.62 97.593 34.779a11.965 11.965 0 0 1 1.936 15.322l-18.155 28.113c-3.841 5.95-11.966 7.282-17.499 2.921-8.595-6.776-31.814-22.538-61.708-22.538-48.303 0-77.916 35.33-77.916 80.082 0 41.589 26.888 83.692 78.277 83.692 32.657 0 56.843-19.039 65.726-27.225 5.27-4.857 13.596-4.039 17.82 1.738l19.865 27.17a11.947 11.947 0 0 1-1.152 15.518z" ], + "credit-card": [ 576, 512, [], "f09d", "M527.9 32H48.1C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48.1 48h479.8c26.6 0 48.1-21.5 48.1-48V80c0-26.5-21.5-48-48.1-48zM54.1 80h467.8c3.3 0 6 2.7 6 6v42H48.1V86c0-3.3 2.7-6 6-6zm467.8 352H54.1c-3.3 0-6-2.7-6-6V256h479.8v170c0 3.3-2.7 6-6 6zM192 332v40c0 6.6-5.4 12-12 12h-72c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12zm192 0v40c0 6.6-5.4 12-12 12H236c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12z" ], + dizzy: [ 496, 512, [], "f567", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-33.8-217.9c7.8-7.8 7.8-20.5 0-28.3L196.3 192l17.9-17.9c7.8-7.8 7.8-20.5 0-28.3-7.8-7.8-20.5-7.8-28.3 0L168 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.9 7.7 20.5 7.7 28.4-.2zm160-92.2c-7.8-7.8-20.5-7.8-28.3 0L328 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.8 7.8 20.5 7.8 28.3 0 7.8-7.8 7.8-20.5 0-28.3l-17.8-18 17.9-17.9c7.7-7.8 7.7-20.4 0-28.2zM248 272c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64z" ], + "dot-circle": [ 512, 512, [], "f192", "M256 56c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m0-48C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 168c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80z" ], + edit: [ 576, 512, [], "f044", "M402.3 344.9l32-32c5-5 13.7-1.5 13.7 5.7V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h273.5c7.1 0 10.7 8.6 5.7 13.7l-32 32c-1.5 1.5-3.5 2.3-5.7 2.3H48v352h352V350.5c0-2.1.8-4.1 2.3-5.6zm156.6-201.8L296.3 405.7l-90.4 10c-26.2 2.9-48.5-19.2-45.6-45.6l10-90.4L432.9 17.1c22.9-22.9 59.9-22.9 82.7 0l43.2 43.2c22.9 22.9 22.9 60 .1 82.8zM460.1 174L402 115.9 216.2 301.8l-7.3 65.3 65.3-7.3L460.1 174zm64.8-79.7l-43.2-43.2c-4.1-4.1-10.8-4.1-14.8 0L436 82l58.1 58.1 30.9-30.9c4-4.2 4-10.8-.1-14.9z" ], + envelope: [ 512, 512, [], "f0e0", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z" ], + "envelope-open": [ 512, 512, [], "f2b6", "M494.586 164.516c-4.697-3.883-111.723-89.95-135.251-108.657C337.231 38.191 299.437 0 256 0c-43.205 0-80.636 37.717-103.335 55.859-24.463 19.45-131.07 105.195-135.15 108.549A48.004 48.004 0 0 0 0 201.485V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V201.509a48 48 0 0 0-17.414-36.993zM464 458a6 6 0 0 1-6 6H54a6 6 0 0 1-6-6V204.347c0-1.813.816-3.526 2.226-4.665 15.87-12.814 108.793-87.554 132.364-106.293C200.755 78.88 232.398 48 256 48c23.693 0 55.857 31.369 73.41 45.389 23.573 18.741 116.503 93.493 132.366 106.316a5.99 5.99 0 0 1 2.224 4.663V458zm-31.991-187.704c4.249 5.159 3.465 12.795-1.745 16.981-28.975 23.283-59.274 47.597-70.929 56.863C336.636 362.283 299.205 400 256 400c-43.452 0-81.287-38.237-103.335-55.86-11.279-8.967-41.744-33.413-70.927-56.865-5.21-4.187-5.993-11.822-1.745-16.981l15.258-18.528c4.178-5.073 11.657-5.843 16.779-1.726 28.618 23.001 58.566 47.035 70.56 56.571C200.143 320.631 232.307 352 256 352c23.602 0 55.246-30.88 73.41-45.389 11.994-9.535 41.944-33.57 70.563-56.568 5.122-4.116 12.601-3.346 16.778 1.727l15.258 18.526z" ], + eye: [ 576, 512, [], "f06e", "M569.354 231.631C512.97 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-102.556 0-192.091-54.701-240-136 44.157-74.933 123.677-127.27 216.162-135.007C273.958 131.078 280 144.83 280 160c0 30.928-25.072 56-56 56s-56-25.072-56-56l.001-.042C157.794 179.043 152 200.844 152 224c0 75.111 60.889 136 136 136s136-60.889 136-136c0-31.031-10.4-59.629-27.895-82.515C451.704 164.638 498.009 205.106 528 256c-47.908 81.299-137.444 136-240 136z" ], + "eye-slash": [ 576, 512, [], "f070", "M272.702 359.139c-80.483-9.011-136.212-86.886-116.93-167.042l116.93 167.042zM288 392c-102.556 0-192.092-54.701-240-136 21.755-36.917 52.1-68.342 88.344-91.658l-27.541-39.343C67.001 152.234 31.921 188.741 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.004 376.006 168.14 440 288 440a332.89 332.89 0 0 0 39.648-2.367l-32.021-45.744A284.16 284.16 0 0 1 288 392zm281.354-111.631c-33.232 56.394-83.421 101.742-143.554 129.492l48.116 68.74c3.801 5.429 2.48 12.912-2.949 16.712L450.23 509.83c-5.429 3.801-12.912 2.48-16.712-2.949L102.084 33.399c-3.801-5.429-2.48-12.912 2.949-16.712L125.77 2.17c5.429-3.801 12.912-2.48 16.712 2.949l55.526 79.325C226.612 76.343 256.808 72 288 72c119.86 0 224.996 63.994 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM528 256c-44.157-74.933-123.677-127.27-216.162-135.007C302.042 131.078 296 144.83 296 160c0 30.928 25.072 56 56 56s56-25.072 56-56l-.001-.042c30.632 57.277 16.739 130.26-36.928 171.719l26.695 38.135C452.626 346.551 498.308 306.386 528 256z" ], + file: [ 384, 512, [], "f15b", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48z" ], + "file-alt": [ 384, 512, [], "f15c", "M288 248v28c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-28c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm-12 72H108c-6.6 0-12 5.4-12 12v28c0 6.6 5.4 12 12 12h168c6.6 0 12-5.4 12-12v-28c0-6.6-5.4-12-12-12zm108-188.1V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48C0 21.5 21.5 0 48 0h204.1C264.8 0 277 5.1 286 14.1L369.9 98c9 8.9 14.1 21.2 14.1 33.9zm-128-80V128h76.1L256 51.9zM336 464V176H232c-13.3 0-24-10.7-24-24V48H48v416h288z" ], + "file-archive": [ 384, 512, [], "f1c6", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM256 51.882L332.118 128H256V51.882zM336 464H48V48h79.714v16h32V48H208v104c0 13.255 10.745 24 24 24h104v288zM192.27 96h-32V64h32v32zm-32 0v32h-32V96h32zm0 64v32h-32v-32h32zm32 0h-32v-32h32v32zm1.909 105.678A12 12 0 0 0 182.406 256H160.27v-32h-32v32l-19.69 97.106C101.989 385.611 126.834 416 160 416c33.052 0 57.871-30.192 51.476-62.62l-17.297-87.702zM160.27 390.073c-17.918 0-32.444-12.105-32.444-27.036 0-14.932 14.525-27.036 32.444-27.036s32.444 12.105 32.444 27.036c0 14.931-14.526 27.036-32.444 27.036zm32-166.073h-32v-32h32v32z" ], + "file-audio": [ 384, 512, [], "f1c7", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm144-76.024c0 10.691-12.926 16.045-20.485 8.485L136 360.486h-28c-6.627 0-12-5.373-12-12v-56c0-6.627 5.373-12 12-12h28l35.515-36.947c7.56-7.56 20.485-2.206 20.485 8.485v135.952zm41.201-47.13c9.051-9.297 9.06-24.133.001-33.439-22.149-22.752 12.235-56.246 34.395-33.481 27.198 27.94 27.212 72.444.001 100.401-21.793 22.386-56.947-10.315-34.397-33.481z" ], + "file-code": [ 384, 512, [], "f1c9", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm101.677-115.115L116.854 320l32.822-28.885a8.793 8.793 0 0 0 .605-12.624l-17.403-18.564c-3.384-3.613-8.964-3.662-12.438-.401L62.78 313.58c-3.703 3.474-3.704 9.367.001 12.84l57.659 54.055a8.738 8.738 0 0 0 6.012 2.381 8.746 8.746 0 0 0 6.427-2.782l17.403-18.563a8.795 8.795 0 0 0-.605-12.626zm84.284-127.85l-24.401-7.084a8.796 8.796 0 0 0-10.905 5.998L144.04 408.061c-1.353 4.66 1.338 9.552 5.998 10.905l24.403 7.084c4.68 1.355 9.557-1.354 10.905-5.998l54.612-188.112c1.354-4.66-1.337-9.552-5.997-10.905zm87.258 92.545l-57.658-54.055c-3.526-3.307-9.099-3.165-12.439.401l-17.403 18.563a8.795 8.795 0 0 0 .605 12.625L267.146 320l-32.822 28.885a8.793 8.793 0 0 0-.605 12.624l17.403 18.564a8.797 8.797 0 0 0 12.439.401h-.001l57.66-54.055c3.703-3.473 3.703-9.366-.001-12.839z" ], + "file-excel": [ 384, 512, [], "f1c3", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm212-240h-28.8c-4.4 0-8.4 2.4-10.5 6.3-18 33.1-22.2 42.4-28.6 57.7-13.9-29.1-6.9-17.3-28.6-57.7-2.1-3.9-6.2-6.3-10.6-6.3H124c-9.3 0-15 10-10.4 18l46.3 78-46.3 78c-4.7 8 1.1 18 10.4 18h28.9c4.4 0 8.4-2.4 10.5-6.3 21.7-40 23-45 28.6-57.7 14.9 30.2 5.9 15.9 28.6 57.7 2.1 3.9 6.2 6.3 10.6 6.3H260c9.3 0 15-10 10.4-18L224 320c.7-1.1 30.3-50.5 46.3-78 4.7-8-1.1-18-10.3-18z" ], + "file-image": [ 384, 512, [], "f1c5", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm32-48h224V288l-23.5-23.5c-4.7-4.7-12.3-4.7-17 0L176 352l-39.5-39.5c-4.7-4.7-12.3-4.7-17 0L80 352v64zm48-240c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z" ], + "file-pdf": [ 384, 512, [], "f1c1", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm250.2-143.7c-12.2-12-47-8.7-64.4-6.5-17.2-10.5-28.7-25-36.8-46.3 3.9-16.1 10.1-40.6 5.4-56-4.2-26.2-37.8-23.6-42.6-5.9-4.4 16.1-.4 38.5 7 67.1-10 23.9-24.9 56-35.4 74.4-20 10.3-47 26.2-51 46.2-3.3 15.8 26 55.2 76.1-31.2 22.4-7.4 46.8-16.5 68.4-20.1 18.9 10.2 41 17 55.8 17 25.5 0 28-28.2 17.5-38.7zm-198.1 77.8c5.1-13.7 24.5-29.5 30.4-35-19 30.3-30.4 35.7-30.4 35zm81.6-190.6c7.4 0 6.7 32.1 1.8 40.8-4.4-13.9-4.3-40.8-1.8-40.8zm-24.4 136.6c9.7-16.9 18-37 24.7-54.7 8.3 15.1 18.9 27.2 30.1 35.5-20.8 4.3-38.9 13.1-54.8 19.2zm131.6-5s-5 6-37.3-7.8c35.1-2.6 40.9 5.4 37.3 7.8z" ], + "file-powerpoint": [ 384, 512, [], "f1c4", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm72-60V236c0-6.6 5.4-12 12-12h69.2c36.7 0 62.8 27 62.8 66.3 0 74.3-68.7 66.5-95.5 66.5V404c0 6.6-5.4 12-12 12H132c-6.6 0-12-5.4-12-12zm48.5-87.4h23c7.9 0 13.9-2.4 18.1-7.2 8.5-9.8 8.4-28.5.1-37.8-4.1-4.6-9.9-7-17.4-7h-23.9v52z" ], + "file-video": [ 384, 512, [], "f1c8", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm228.687-211.303L224 305.374V268c0-11.046-8.954-20-20-20H100c-11.046 0-20 8.954-20 20v104c0 11.046 8.954 20 20 20h104c11.046 0 20-8.954 20-20v-37.374l52.687 52.674C286.704 397.318 304 390.28 304 375.986V264.011c0-14.311-17.309-21.319-27.313-11.314z" ], + "file-word": [ 384, 512, [], "f1c2", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm220.1-208c-5.7 0-10.6 4-11.7 9.5-20.6 97.7-20.4 95.4-21 103.5-.2-1.2-.4-2.6-.7-4.3-.8-5.1.3.2-23.6-99.5-1.3-5.4-6.1-9.2-11.7-9.2h-13.3c-5.5 0-10.3 3.8-11.7 9.1-24.4 99-24 96.2-24.8 103.7-.1-1.1-.2-2.5-.5-4.2-.7-5.2-14.1-73.3-19.1-99-1.1-5.6-6-9.7-11.8-9.7h-16.8c-7.8 0-13.5 7.3-11.7 14.8 8 32.6 26.7 109.5 33.2 136 1.3 5.4 6.1 9.1 11.7 9.1h25.2c5.5 0 10.3-3.7 11.6-9.1l17.9-71.4c1.5-6.2 2.5-12 3-17.3l2.9 17.3c.1.4 12.6 50.5 17.9 71.4 1.3 5.3 6.1 9.1 11.6 9.1h24.7c5.5 0 10.3-3.7 11.6-9.1 20.8-81.9 30.2-119 34.5-136 1.9-7.6-3.8-14.9-11.6-14.9h-15.8z" ], + flag: [ 512, 512, [], "f024", "M336.174 80c-49.132 0-93.305-32-161.913-32-31.301 0-58.303 6.482-80.721 15.168a48.04 48.04 0 0 0 2.142-20.727C93.067 19.575 74.167 1.594 51.201.104 23.242-1.71 0 20.431 0 48c0 17.764 9.657 33.262 24 41.562V496c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-83.443C109.869 395.28 143.259 384 199.826 384c49.132 0 93.305 32 161.913 32 58.479 0 101.972-22.617 128.548-39.981C503.846 367.161 512 352.051 512 335.855V95.937c0-34.459-35.264-57.768-66.904-44.117C409.193 67.309 371.641 80 336.174 80zM464 336c-21.783 15.412-60.824 32-102.261 32-59.945 0-102.002-32-161.913-32-43.361 0-96.379 9.403-127.826 24V128c21.784-15.412 60.824-32 102.261-32 59.945 0 102.002 32 161.913 32 43.271 0 96.32-17.366 127.826-32v240z" ], + flushed: [ 496, 512, [], "f579", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm96-312c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-112 24c0-44.2-35.8-80-80-80s-80 35.8-80 80 35.8 80 80 80 80-35.8 80-80zm-80 48c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm160 144H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z" ], + folder: [ 512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48zm-6 272H54c-3.314 0-6-2.678-6-5.992V117.992A5.993 5.993 0 0 1 54 112h134.118l64 64H458a6 6 0 0 1 6 6v212a6 6 0 0 1-6 6z" ], + "folder-open": [ 576, 512, [], "f07c", "M527.943 224H480v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h400a48.001 48.001 0 0 0 40.704-22.56l79.942-128c19.948-31.917-3.038-73.44-40.703-73.44zM54 112h134.118l64 64H426a6 6 0 0 1 6 6v42H152a48 48 0 0 0-41.098 23.202L48 351.449V117.993A5.993 5.993 0 0 1 54 112zm394 288H72l77.234-128H528l-80 128z" ], + "font-awesome-logo-full": [ 3992, 512, [ "Font Awesome" ], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z" ], + frown: [ 496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 128c-40.2 0-78 17.7-103.8 48.6-8.5 10.2-7.1 25.3 3.1 33.8 10.2 8.4 25.3 7.1 33.8-3.1 16.6-19.9 41-31.4 66.9-31.4s50.3 11.4 66.9 31.4c8.1 9.7 23.1 11.9 33.8 3.1 10.2-8.5 11.5-23.6 3.1-33.8C326 321.7 288.2 304 248 304z" ], + "frown-open": [ 496, 512, [], "f57a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-48-248c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 112c-35.6 0-88.8 21.3-95.8 61.2-2 11.8 9 21.5 20.5 18.1 31.2-9.6 59.4-15.3 75.3-15.3s44.1 5.7 75.3 15.3c11.4 3.5 22.5-6.3 20.5-18.1-7-39.9-60.2-61.2-95.8-61.2z" ], + futbol: [ 496, 512, [], "f1e3", "M483.8 179.4C449.8 74.6 352.6 8 248.1 8c-25.4 0-51.2 3.9-76.7 12.2C41.2 62.5-30.1 202.4 12.2 332.6 46.2 437.4 143.4 504 247.9 504c25.4 0 51.2-3.9 76.7-12.2 130.2-42.3 201.5-182.2 159.2-312.4zm-74.5 193.7l-52.2 6.4-43.7-60.9 24.4-75.2 71.1-22.1 38.9 36.4c-.2 30.7-7.4 61.1-21.7 89.2-4.7 9.3-10.7 17.8-16.8 26.2zm0-235.4l-10.4 53.1-70.7 22-64.2-46.5V92.5l47.4-26.2c39.2 13 73.4 38 97.9 71.4zM184.9 66.4L232 92.5v73.8l-64.2 46.5-70.6-22-10.1-52.5c24.3-33.4 57.9-58.6 97.8-71.9zM139 379.5L85.9 373c-14.4-20.1-37.3-59.6-37.8-115.3l39-36.4 71.1 22.2 24.3 74.3-43.5 61.7zm48.2 67l-22.4-48.1 43.6-61.7H287l44.3 61.7-22.4 48.1c-6.2 1.8-57.6 20.4-121.7 0z" ], + gem: [ 576, 512, [], "f3a5", "M464 0H112c-4 0-7.8 2-10 5.4L2 152.6c-2.9 4.4-2.6 10.2.7 14.2l276 340.8c4.8 5.9 13.8 5.9 18.6 0l276-340.8c3.3-4.1 3.6-9.8.7-14.2L474.1 5.4C471.8 2 468.1 0 464 0zm-19.3 48l63.3 96h-68.4l-51.7-96h56.8zm-202.1 0h90.7l51.7 96H191l51.6-96zm-111.3 0h56.8l-51.7 96H68l63.3-96zm-43 144h51.4L208 352 88.3 192zm102.9 0h193.6L288 435.3 191.2 192zM368 352l68.2-160h51.4L368 352z" ], + grimace: [ 496, 512, [], "f57f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm16 16H152c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h192c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48zm-168 96h-24c-8.8 0-16-7.2-16-16v-8h40v24zm0-40h-40v-8c0-8.8 7.2-16 16-16h24v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm56 24c0 8.8-7.2 16-16 16h-24v-24h40v8zm0-24h-40v-24h24c8.8 0 16 7.2 16 16v8z" ], + grin: [ 496, 512, [], "f580", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z" ], + "grin-alt": [ 496, 512, [], "f581", "M200.3 248c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zm128 0c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3z" ], + "grin-beam": [ 496, 512, [], "f582", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-235.9-72.9c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3zm160 0c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3z" ], + "grin-beam-sweat": [ 496, 512, [], "f583", "M440 160c29.5 0 53.3-26.3 53.3-58.7 0-25-31.7-75.5-46.2-97.3-3.6-5.3-10.7-5.3-14.2 0-14.5 21.8-46.2 72.3-46.2 97.3 0 32.4 23.8 58.7 53.3 58.7zM248 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zm105.3-52.9c-24.6 15.7-46 12.9-46.4 12.9 6.9 20.2 10.8 41.8 10.8 64.3 0 110.3-89.7 200-200 200S48 366.3 48 256 137.7 56 248 56c39.8 0 76.8 11.8 108 31.9 1.7-9.5 6.3-24.1 17.2-45.7C336.4 20.6 293.7 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-27-4.4-52.9-12.4-77.2zM168 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z" ], + "grin-hearts": [ 496, 512, [], "f584", "M353.6 304.6c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-152.8-48.9c4.5 1.2 9.2-1.5 10.5-6l19.4-69.9c5.6-20.3-7.4-41.1-28.8-44.5-18.6-3-36.4 9.8-41.5 27.9l-2 7.1-7.1-1.9c-18.2-4.7-38.2 4.3-44.9 22-7.7 20.2 3.8 41.9 24.2 47.2l70.2 18.1zm188.8-65.3c-6.7-17.6-26.7-26.7-44.9-22l-7.1 1.9-2-7.1c-5-18.1-22.8-30.9-41.5-27.9-21.4 3.4-34.4 24.2-28.8 44.5l19.4 69.9c1.2 4.5 5.9 7.2 10.5 6l70.2-18.2c20.4-5.3 31.9-26.9 24.2-47.1zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200z" ], + "grin-squint": [ 496, 512, [], "f585", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-234.7-40.8c3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3l-80-48c-5.1-3-11.4-1.9-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11.1.1 15.5zm242.9 2.5c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11-.1-15.5-3.8-4.4-10.2-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48z" ], + "grin-squint-tears": [ 512, 512, [], "f586", "M117.1 384.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 479 124.3 420.8 128 395c.8-6.4-4.6-11.8-10.9-10.9zm-41.2-41.7C40.3 268 53 176.1 114.6 114.6 152.4 76.8 202.6 56 256 56c36.2 0 70.8 9.8 101.2 27.7 3.8-20.3 8-36.1 12-48.3C333.8 17.2 294.9 8 256 8 192.5 8 129.1 32.2 80.6 80.6c-74.1 74.1-91.3 183.4-52 274 12.2-4.1 27.7-8.3 47.3-12.2zm352.3-187.6c45 76.6 34.9 176.9-30.8 242.6-37.8 37.8-88 58.6-141.4 58.6-30.5 0-59.8-7-86.4-19.8-3.9 19.5-8 35-12.2 47.2 31.4 13.6 65 20.6 98.7 20.6 63.5 0 126.9-24.2 175.4-72.6 78.1-78.1 93.1-195.4 45.2-288.6-12.3 4-28.2 8.1-48.5 12zm-33.3-26.9c25.8-3.7 84-13.7 100.9-30.6 21.9-21.9 21.5-57.9-.9-80.3s-58.3-22.8-80.3-.9C397.7 33 387.7 91.2 384 117c-.8 6.4 4.6 11.8 10.9 10.9zm-187 108.3c-3-3-7.2-4.2-11.4-3.2L106 255.7c-5.7 1.4-9.5 6.7-9.1 12.6.5 5.8 5.1 10.5 10.9 11l52.3 4.8 4.8 52.3c.5 5.8 5.2 10.4 11 10.9h.9c5.5 0 10.3-3.7 11.7-9.1l22.6-90.5c1-4.2-.2-8.5-3.2-11.5zm39.7-25.1l90.5-22.6c5.7-1.4 9.5-6.7 9.1-12.6-.5-5.8-5.1-10.5-10.9-11l-52.3-4.8-4.8-52.3c-.5-5.8-5.2-10.4-11-10.9-5.6-.1-11.2 3.4-12.6 9.1L233 196.5c-1 4.1.2 8.4 3.2 11.4 5 5 11.3 3.2 11.4 3.2zm52 88.5c-29.1 29.1-59.7 52.9-83.9 65.4-9.2 4.8-10 17.5-1.7 23.4 38.9 27.7 107 6.2 143.7-30.6S416 253 388.3 214.1c-5.8-8.2-18.5-7.6-23.4 1.7-12.3 24.2-36.2 54.7-65.3 83.8z" ], + "grin-stars": [ 496, 512, [], "f587", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-227.9-57.5c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.5 1.9-12.2-4.3-13.2l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6.1 34.9zm259.7-72.7l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6 34.9c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.6 1.8-12.2-4.4-13.2z" ], + "grin-tears": [ 640, 512, [], "f588", "M117.1 256.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 351 124.3 292.8 128 267c.8-6.4-4.6-11.8-10.9-10.9zm506.7 30.6c-16.9-16.9-75.1-26.9-100.9-30.6-6.3-.9-11.7 4.5-10.8 10.8 3.7 25.8 13.7 84 30.6 100.9 21.9 21.9 57.9 21.5 80.3-.9 22.3-22.3 22.7-58.3.8-80.2zm-126.6 61.7C463.8 412.3 396.9 456 320 456c-76.9 0-143.8-43.7-177.2-107.6-12.5 37.4-25.2 43.9-28.3 46.5C159.1 460.7 234.5 504 320 504s160.9-43.3 205.5-109.1c-3.2-2.7-15.9-9.2-28.3-46.5zM122.7 224.5C137.9 129.2 220.5 56 320 56c99.5 0 182.1 73.2 197.3 168.5 2.1-.2 5.2-2.4 49.5 7C554.4 106 448.7 8 320 8S85.6 106 73.2 231.4c44.5-9.4 47.1-7.2 49.5-6.9zM320 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zM240 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z" ], + "grin-tongue": [ 496, 512, [], "f589", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zM168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" ], + "grin-tongue-squint": [ 496, 512, [], "f58a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zm36.9-281.1c-3.8-4.4-10.3-5.5-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zm-162.9 45.5l-80-48c-5-3-11.4-2-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3z" ], + "grin-tongue-wink": [ 496, 512, [], "f58b", "M152 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm176-52c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3z" ], + "grin-wink": [ 496, 512, [], "f58c", "M328 180c-25.69 0-55.88 16.92-59.86 42.12-1.75 11.22 11.5 18.24 19.83 10.84l9.55-8.48c14.81-13.19 46.16-13.19 60.97 0l9.55 8.48c8.48 7.43 21.56.25 19.83-10.84C383.88 196.92 353.69 180 328 180zm-160 60c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm185.55 64.64c-25.93 8.3-64.4 13.06-105.55 13.06s-79.62-4.75-105.55-13.06c-9.94-3.13-19.4 5.37-17.71 15.34C132.67 367.13 196.06 400 248 400s115.33-32.87 123.26-80.02c1.68-9.89-7.67-18.48-17.71-15.34zM248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 448c-110.28 0-200-89.72-200-200S137.72 56 248 56s200 89.72 200 200-89.72 200-200 200z" ], + "hand-lizard": [ 576, 512, [], "f258", "M556.686 290.542L410.328 64.829C397.001 44.272 374.417 32 349.917 32H56C25.121 32 0 57.122 0 88v8c0 44.112 35.888 80 80 80h196.042l-18.333 48H144c-48.523 0-88 39.477-88 88 0 30.879 25.121 56 56 56h131.552c2.987 0 5.914.549 8.697 1.631L352 408.418V480h224V355.829c0-23.225-6.679-45.801-19.314-65.287zM528 432H400v-23.582c0-19.948-12.014-37.508-30.604-44.736l-99.751-38.788A71.733 71.733 0 0 0 243.552 320H112c-4.411 0-8-3.589-8-8 0-22.056 17.944-40 40-40h113.709c19.767 0 37.786-12.407 44.84-30.873l24.552-64.281c8.996-23.553-8.428-48.846-33.63-48.846H80c-17.645 0-32-14.355-32-32v-8c0-4.411 3.589-8 8-8h293.917c8.166 0 15.693 4.09 20.137 10.942l146.358 225.715A71.84 71.84 0 0 1 528 355.829V432z" ], + "hand-paper": [ 448, 512, [], "f256", "M372.57 112.641v-10.825c0-43.612-40.52-76.691-83.039-65.546-25.629-49.5-94.09-47.45-117.982.747C130.269 26.456 89.144 57.945 89.144 102v126.13c-19.953-7.427-43.308-5.068-62.083 8.871-29.355 21.796-35.794 63.333-14.55 93.153L132.48 498.569a32 32 0 0 0 26.062 13.432h222.897c14.904 0 27.835-10.289 31.182-24.813l30.184-130.958A203.637 203.637 0 0 0 448 310.564V179c0-40.62-35.523-71.992-75.43-66.359zm27.427 197.922c0 11.731-1.334 23.469-3.965 34.886L368.707 464h-201.92L51.591 302.303c-14.439-20.27 15.023-42.776 29.394-22.605l27.128 38.079c8.995 12.626 29.031 6.287 29.031-9.283V102c0-25.645 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V67c0-25.663 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V101.125c0-25.672 36.57-24.81 36.57.691V256c0 8.837 7.163 16 16 16h6.857c8.837 0 16-7.163 16-16v-76.309c0-26.242 36.57-25.64 36.57-.691v131.563z" ], + "hand-peace": [ 448, 512, [], "f25b", "M362.146 191.976c-13.71-21.649-38.761-34.016-65.006-30.341V74c0-40.804-32.811-74-73.141-74-40.33 0-73.14 33.196-73.14 74L160 168l-18.679-78.85C126.578 50.843 83.85 32.11 46.209 47.208 8.735 62.238-9.571 104.963 5.008 142.85l55.757 144.927c-30.557 24.956-43.994 57.809-24.733 92.218l54.853 97.999C102.625 498.97 124.73 512 148.575 512h205.702c30.744 0 57.558-21.44 64.555-51.797l27.427-118.999a67.801 67.801 0 0 0 1.729-15.203L448 256c0-44.956-43.263-77.343-85.854-64.024zM399.987 326c0 1.488-.169 2.977-.502 4.423l-27.427 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H148.575c-6.486 0-12.542-3.621-15.805-9.449l-54.854-98c-4.557-8.141-2.619-18.668 4.508-24.488l26.647-21.764a16 16 0 0 0 4.812-18.139l-64.09-166.549C37.226 92.956 84.37 74.837 96.51 106.389l59.784 155.357A16 16 0 0 0 171.227 272h11.632c8.837 0 16-7.163 16-16V74c0-34.375 50.281-34.43 50.281 0v182c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16v-28c0-25.122 36.567-25.159 36.567 0v28c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16 0-25.12 36.567-25.16 36.567 0v70z" ], + "hand-point-down": [ 448, 512, [], "f0a7", "M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z" ], + "hand-point-left": [ 512, 512, [], "f0a5", "M0 220.8C0 266.416 37.765 304 83.2 304h35.647a93.148 93.148 0 0 0 7.929 22.064c-2.507 22.006 3.503 44.978 15.985 62.791C143.9 441.342 180.159 480 242.701 480H264c60.063 0 98.512-40 127.2-40h2.679c5.747 4.952 13.536 8 22.12 8h64c17.673 0 32-12.894 32-28.8V188.8c0-15.906-14.327-28.8-32-28.8h-64c-8.584 0-16.373 3.048-22.12 8H391.2c-6.964 0-14.862-6.193-30.183-23.668l-.129-.148-.131-.146c-8.856-9.937-18.116-20.841-25.851-33.253C316.202 80.537 304.514 32 259.2 32c-56.928 0-92 35.286-92 83.2 0 8.026.814 15.489 2.176 22.4H83.2C38.101 137.6 0 175.701 0 220.8zm48 0c0-18.7 16.775-35.2 35.2-35.2h158.4c0-17.325-26.4-35.2-26.4-70.4 0-26.4 20.625-35.2 44-35.2 8.794 0 20.445 32.712 34.926 56.1 9.074 14.575 19.524 27.225 30.799 39.875 16.109 18.374 33.836 36.633 59.075 39.596v176.752C341.21 396.087 309.491 432 264 432h-21.299c-40.524 0-57.124-22.197-50.601-61.325-14.612-8.001-24.151-33.979-12.925-53.625-19.365-18.225-17.787-46.381-4.95-61.05H83.2C64.225 256 48 239.775 48 220.8zM448 360c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z" ], + "hand-point-right": [ 512, 512, [], "f0a4", "M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z" ], + "hand-point-up": [ 448, 512, [], "f0a6", "M105.6 83.2v86.177a115.52 115.52 0 0 0-22.4-2.176c-47.914 0-83.2 35.072-83.2 92 0 45.314 48.537 57.002 78.784 75.707 12.413 7.735 23.317 16.994 33.253 25.851l.146.131.148.129C129.807 376.338 136 384.236 136 391.2v2.679c-4.952 5.747-8 13.536-8 22.12v64c0 17.673 12.894 32 28.8 32h230.4c15.906 0 28.8-14.327 28.8-32v-64c0-8.584-3.048-16.373-8-22.12V391.2c0-28.688 40-67.137 40-127.2v-21.299c0-62.542-38.658-98.8-91.145-99.94-17.813-12.482-40.785-18.491-62.791-15.985A93.148 93.148 0 0 0 272 118.847V83.2C272 37.765 234.416 0 188.8 0c-45.099 0-83.2 38.101-83.2 83.2zm118.4 0v91.026c14.669-12.837 42.825-14.415 61.05 4.95 19.646-11.227 45.624-1.687 53.625 12.925 39.128-6.524 61.325 10.076 61.325 50.6V264c0 45.491-35.913 77.21-39.676 120H183.571c-2.964-25.239-21.222-42.966-39.596-59.075-12.65-11.275-25.3-21.725-39.875-30.799C80.712 279.645 48 267.994 48 259.2c0-23.375 8.8-44 35.2-44 35.2 0 53.075 26.4 70.4 26.4V83.2c0-18.425 16.5-35.2 35.2-35.2 18.975 0 35.2 16.225 35.2 35.2zM352 424c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z" ], + "hand-pointer": [ 448, 512, [], "f25a", "M358.182 179.361c-19.493-24.768-52.679-31.945-79.872-19.098-15.127-15.687-36.182-22.487-56.595-19.629V67c0-36.944-29.736-67-66.286-67S89.143 30.056 89.143 67v161.129c-19.909-7.41-43.272-5.094-62.083 8.872-29.355 21.795-35.793 63.333-14.55 93.152l109.699 154.001C134.632 501.59 154.741 512 176 512h178.286c30.802 0 57.574-21.5 64.557-51.797l27.429-118.999A67.873 67.873 0 0 0 448 326v-84c0-46.844-46.625-79.273-89.818-62.639zM80.985 279.697l27.126 38.079c8.995 12.626 29.031 6.287 29.031-9.283V67c0-25.12 36.571-25.16 36.571 0v175c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16v-35c0-25.12 36.571-25.16 36.571 0v35c0 8.836 7.163 16 16 16H272c8.837 0 16-7.164 16-16v-21c0-25.12 36.571-25.16 36.571 0v21c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16 0-25.121 36.571-25.16 36.571 0v84c0 1.488-.169 2.977-.502 4.423l-27.43 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H176c-5.769 0-11.263-2.878-14.697-7.697l-109.712-154c-14.406-20.223 14.994-42.818 29.394-22.606zM176.143 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.733 0-14-7.163-14-16zm75.428 0v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16zM327 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16z" ], + "hand-rock": [ 512, 512, [], "f255", "M408.864 79.052c-22.401-33.898-66.108-42.273-98.813-23.588-29.474-31.469-79.145-31.093-108.334-.022-47.16-27.02-108.71 5.055-110.671 60.806C44.846 105.407 0 140.001 0 187.429v56.953c0 32.741 14.28 63.954 39.18 85.634l97.71 85.081c4.252 3.702 3.11 5.573 3.11 32.903 0 17.673 14.327 32 32 32h252c17.673 0 32-14.327 32-32 0-23.513-1.015-30.745 3.982-42.37l42.835-99.656c6.094-14.177 9.183-29.172 9.183-44.568V146.963c0-52.839-54.314-88.662-103.136-67.911zM464 261.406a64.505 64.505 0 0 1-5.282 25.613l-42.835 99.655c-5.23 12.171-7.883 25.04-7.883 38.25V432H188v-10.286c0-16.37-7.14-31.977-19.59-42.817l-97.71-85.08C56.274 281.255 48 263.236 48 244.381v-56.953c0-33.208 52-33.537 52 .677v41.228a16 16 0 0 0 5.493 12.067l7 6.095A16 16 0 0 0 139 235.429V118.857c0-33.097 52-33.725 52 .677v26.751c0 8.836 7.164 16 16 16h7c8.836 0 16-7.164 16-16v-41.143c0-33.134 52-33.675 52 .677v40.466c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16v-27.429c0-33.03 52-33.78 52 .677v26.751c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16 0-33.146 52-33.613 52 .677v114.445z" ], + "hand-scissors": [ 512, 512, [], "f257", "M256 480l70-.013c5.114 0 10.231-.583 15.203-1.729l118.999-27.427C490.56 443.835 512 417.02 512 386.277V180.575c0-23.845-13.03-45.951-34.005-57.69l-97.999-54.853c-34.409-19.261-67.263-5.824-92.218 24.733L142.85 37.008c-37.887-14.579-80.612 3.727-95.642 41.201-15.098 37.642 3.635 80.37 41.942 95.112L168 192l-94-9.141c-40.804 0-74 32.811-74 73.14 0 40.33 33.196 73.141 74 73.141h87.635c-3.675 26.245 8.692 51.297 30.341 65.006C178.657 436.737 211.044 480 256 480zm0-48.013c-25.16 0-25.12-36.567 0-36.567 8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16h-28c-25.159 0-25.122-36.567 0-36.567h28c8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16H74c-34.43 0-34.375-50.281 0-50.281h182c8.837 0 16-7.163 16-16v-11.632a16 16 0 0 0-10.254-14.933L106.389 128.51c-31.552-12.14-13.432-59.283 19.222-46.717l166.549 64.091a16.001 16.001 0 0 0 18.139-4.812l21.764-26.647c5.82-7.127 16.348-9.064 24.488-4.508l98 54.854c5.828 3.263 9.449 9.318 9.449 15.805v205.701c0 8.491-5.994 15.804-14.576 17.782l-119.001 27.427a19.743 19.743 0 0 1-4.423.502h-70z" ], + "hand-spock": [ 512, 512, [], "f259", "M21.096 381.79l129.092 121.513a32 32 0 0 0 21.932 8.698h237.6c14.17 0 26.653-9.319 30.68-22.904l31.815-107.313A115.955 115.955 0 0 0 477 348.811v-36.839c0-4.051.476-8.104 1.414-12.045l31.73-133.41c10.099-42.412-22.316-82.738-65.544-82.525-4.144-24.856-22.543-47.165-49.85-53.992-35.803-8.952-72.227 12.655-81.25 48.75L296.599 184 274.924 52.01c-8.286-36.07-44.303-58.572-80.304-50.296-29.616 6.804-50.138 32.389-51.882 61.295-42.637.831-73.455 40.563-64.071 81.844l31.04 136.508c-27.194-22.515-67.284-19.992-91.482 5.722-25.376 26.961-24.098 69.325 2.871 94.707zm32.068-61.811l.002-.001c7.219-7.672 19.241-7.98 26.856-.813l53.012 49.894C143.225 378.649 160 371.4 160 357.406v-69.479c0-1.193-.134-2.383-.397-3.546l-34.13-150.172c-5.596-24.617 31.502-32.86 37.054-8.421l30.399 133.757a16 16 0 0 0 15.603 12.454h8.604c10.276 0 17.894-9.567 15.594-19.583l-41.62-181.153c-5.623-24.469 31.39-33.076 37.035-8.508l45.22 196.828A16 16 0 0 0 288.956 272h13.217a16 16 0 0 0 15.522-12.119l42.372-169.49c6.104-24.422 42.962-15.159 36.865 9.217L358.805 252.12c-2.521 10.088 5.115 19.88 15.522 19.88h9.694a16 16 0 0 0 15.565-12.295L426.509 146.6c5.821-24.448 42.797-15.687 36.966 8.802L431.72 288.81a100.094 100.094 0 0 0-2.72 23.162v36.839c0 6.548-.943 13.051-2.805 19.328L397.775 464h-219.31L53.978 346.836c-7.629-7.18-7.994-19.229-.814-26.857z" ], + handshake: [ 640, 512, [], "f2b5", "M519.2 127.9l-47.6-47.6A56.252 56.252 0 0 0 432 64H205.2c-14.8 0-29.1 5.9-39.6 16.3L118 127.9H0v255.7h64c17.6 0 31.8-14.2 31.9-31.7h9.1l84.6 76.4c30.9 25.1 73.8 25.7 105.6 3.8 12.5 10.8 26 15.9 41.1 15.9 18.2 0 35.3-7.4 48.8-24 22.1 8.7 48.2 2.6 64-16.8l26.2-32.3c5.6-6.9 9.1-14.8 10.9-23h57.9c.1 17.5 14.4 31.7 31.9 31.7h64V127.9H519.2zM48 351.6c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16zm390-6.9l-26.1 32.2c-2.8 3.4-7.8 4-11.3 1.2l-23.9-19.4-30 36.5c-6 7.3-15 4.8-18 2.4l-36.8-31.5-15.6 19.2c-13.9 17.1-39.2 19.7-55.3 6.6l-97.3-88H96V175.8h41.9l61.7-61.6c2-.8 3.7-1.5 5.7-2.3H262l-38.7 35.5c-29.4 26.9-31.1 72.3-4.4 101.3 14.8 16.2 61.2 41.2 101.5 4.4l8.2-7.5 108.2 87.8c3.4 2.8 3.9 7.9 1.2 11.3zm106-40.8h-69.2c-2.3-2.8-4.9-5.4-7.7-7.7l-102.7-83.4 12.5-11.4c6.5-6 7-16.1 1-22.6L367 167.1c-6-6.5-16.1-6.9-22.6-1l-55.2 50.6c-9.5 8.7-25.7 9.4-34.6 0-9.3-9.9-8.5-25.1 1.2-33.9l65.6-60.1c7.4-6.8 17-10.5 27-10.5l83.7-.2c2.1 0 4.1.8 5.5 2.3l61.7 61.6H544v128zm48 47.7c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16z" ], + hdd: [ 576, 512, [], "f0a0", "M567.403 235.642L462.323 84.589A48 48 0 0 0 422.919 64H153.081a48 48 0 0 0-39.404 20.589L8.597 235.642A48.001 48.001 0 0 0 0 263.054V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V263.054c0-9.801-3-19.366-8.597-27.412zM153.081 112h269.838l77.913 112H75.168l77.913-112zM528 400H48V272h480v128zm-32-64c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32zm-96 0c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32z" ], + heart: [ 512, 512, [], "f004", "M458.4 64.3C400.6 15.7 311.3 23 256 79.3 200.7 23 111.4 15.6 53.6 64.3-21.6 127.6-10.6 230.8 43 285.5l175.4 178.7c10 10.2 23.4 15.9 37.6 15.9 14.3 0 27.6-5.6 37.6-15.8L469 285.6c53.5-54.7 64.7-157.9-10.6-221.3zm-23.6 187.5L259.4 430.5c-2.4 2.4-4.4 2.4-6.8 0L77.2 251.8c-36.5-37.2-43.9-107.6 7.3-150.7 38.9-32.7 98.9-27.8 136.5 10.5l35 35.7 35-35.7c37.8-38.5 97.8-43.2 136.5-10.6 51.1 43.1 43.5 113.9 7.3 150.8z" ], + hospital: [ 448, 512, [], "f0f8", "M128 244v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12zm140 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm-76 84v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm76 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm180 124v36H0v-36c0-6.627 5.373-12 12-12h19.5V85.035C31.5 73.418 42.245 64 55.5 64H144V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v40h88.5c13.255 0 24 9.418 24 21.035V464H436c6.627 0 12 5.373 12 12zM79.5 463H192v-67c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v67h112.5V112H304v24c0 13.255-10.745 24-24 24H168c-13.255 0-24-10.745-24-24v-24H79.5v351zM266 64h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6z" ], + hourglass: [ 384, 512, [], "f254", "M368 48h4c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12H12C5.373 0 0 5.373 0 12v24c0 6.627 5.373 12 12 12h4c0 80.564 32.188 165.807 97.18 208C47.899 298.381 16 383.9 16 464h-4c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12h-4c0-80.564-32.188-165.807-97.18-208C336.102 213.619 368 128.1 368 48zM64 48h256c0 101.62-57.307 184-128 184S64 149.621 64 48zm256 416H64c0-101.62 57.308-184 128-184s128 82.38 128 184z" ], + "id-badge": [ 384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm0 464H48V48h288v416zM144 112h96c8.8 0 16-7.2 16-16s-7.2-16-16-16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16zm48 176c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z" ], + "id-card": [ 576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H303.2c.9-4.5.8 3.6.8-22.4 0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6 0 26-.2 17.9.8 22.4H48V144h480v288zm-168-80h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm-168 96c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z" ], + image: [ 512, 512, [], "f03e", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 336H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v276a6 6 0 0 1-6 6zM128 152c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zM96 352h320v-80l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L192 304l-39.515-39.515c-4.686-4.686-12.284-4.686-16.971 0L96 304v48z" ], + images: [ 576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v48H54a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6v-10h48zm42-336H150a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6V86a6 6 0 0 0-6-6zm6-48c26.51 0 48 21.49 48 48v256c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h384zM264 144c0 22.091-17.909 40-40 40s-40-17.909-40-40 17.909-40 40-40 40 17.909 40 40zm-72 96l39.515-39.515c4.686-4.686 12.284-4.686 16.971 0L288 240l103.515-103.515c4.686-4.686 12.284-4.686 16.971 0L480 208v80H192v-48z" ], + keyboard: [ 576, 512, [], "f11c", "M528 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm8 336c0 4.411-3.589 8-8 8H48c-4.411 0-8-3.589-8-8V112c0-4.411 3.589-8 8-8h480c4.411 0 8 3.589 8 8v288zM170 270v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-336 82v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm384 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zM122 188v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-98 158v-16c0-6.627-5.373-12-12-12H180c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h216c6.627 0 12-5.373 12-12z" ], + kiss: [ 496, 512, [], "f596", "M168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm136 132c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" ], + "kiss-beam": [ 496, 512, [], "f597", "M168 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm56-148c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zm24-156c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4z" ], + "kiss-wink-heart": [ 504, 512, [], "f598", "M304 308.5c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36 21.7-9.1 35.1-23.4 35.1-36.4zm70.5-83.5l9.5 8.5c3.8 3.3 9.3 4 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 5.8 3.1 11.2.7 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0zM136 208.5c0 17.7 14.3 32 32 32s32-14.3 32-32-14.3-32-32-32-32 14.3-32 32zm365.1 194c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zM334 436.3c-26.1 12.5-55.2 19.7-86 19.7-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200c0 22.1-3.7 43.3-10.4 63.2 9 6.4 17 14.2 22.6 23.9 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-2.5-7.3 4.3 17.2-13.4-46.8z" ], + laugh: [ 496, 512, [], "f599", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 224c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm-160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z" ], + "laugh-beam": [ 496, 512, [], "f59a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 152c-23.8 0-52.7 29.3-56 71.4-.7 8.6 10.8 11.9 14.9 4.5l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.1-42.1-32-71.4-55.8-71.4zm-201 75.9l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.6 8.5 10.9 11.9 15.1 4.5zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z" ], + "laugh-squint": [ 496, 512, [], "f59b", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM343.6 196l33.6-40.3c8.6-10.3-3.8-24.8-15.4-18l-80 48c-7.8 4.7-7.8 15.9 0 20.6l80 48c11.5 6.8 24-7.6 15.4-18L343.6 196zm-209.4 58.3l80-48c7.8-4.7 7.8-15.9 0-20.6l-80-48c-11.6-6.9-24 7.7-15.4 18l33.6 40.3-33.6 40.3c-8.7 10.4 3.8 24.8 15.4 18zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z" ], + "laugh-wink": [ 496, 512, [], "f59c", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6C68.8 359.6 48 309.4 48 256s20.8-103.6 58.6-141.4C144.4 76.8 194.6 56 248 56s103.6 20.8 141.4 58.6c37.8 37.8 58.6 88 58.6 141.4s-20.8 103.6-58.6 141.4zM328 164c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1zm-160 60c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z" ], + lemon: [ 512, 512, [], "f094", "M484.112 27.889C455.989-.233 416.108-8.057 387.059 8.865 347.604 31.848 223.504-41.111 91.196 91.197-41.277 223.672 31.923 347.472 8.866 387.058c-16.922 29.051-9.1 68.932 19.022 97.054 28.135 28.135 68.011 35.938 97.057 19.021 39.423-22.97 163.557 49.969 295.858-82.329 132.474-132.477 59.273-256.277 82.331-295.861 16.922-29.05 9.1-68.931-19.022-97.054zm-22.405 72.894c-38.8 66.609 45.6 165.635-74.845 286.08-120.44 120.443-219.475 36.048-286.076 74.843-22.679 13.207-64.035-27.241-50.493-50.488 38.8-66.609-45.6-165.635 74.845-286.08C245.573 4.702 344.616 89.086 411.219 50.292c22.73-13.24 64.005 27.288 50.488 50.491zm-169.861 8.736c1.37 10.96-6.404 20.957-17.365 22.327-54.846 6.855-135.779 87.787-142.635 142.635-1.373 10.989-11.399 18.734-22.326 17.365-10.961-1.37-18.735-11.366-17.365-22.326 9.162-73.286 104.167-168.215 177.365-177.365 10.953-1.368 20.956 6.403 22.326 17.364z" ], + "life-ring": [ 512, 512, [], "f1cd", "M256 504c136.967 0 248-111.033 248-248S392.967 8 256 8 8 119.033 8 256s111.033 248 248 248zm-103.398-76.72l53.411-53.411c31.806 13.506 68.128 13.522 99.974 0l53.411 53.411c-63.217 38.319-143.579 38.319-206.796 0zM336 256c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zm91.28 103.398l-53.411-53.411c13.505-31.806 13.522-68.128 0-99.974l53.411-53.411c38.319 63.217 38.319 143.579 0 206.796zM359.397 84.72l-53.411 53.411c-31.806-13.505-68.128-13.522-99.973 0L152.602 84.72c63.217-38.319 143.579-38.319 206.795 0zM84.72 152.602l53.411 53.411c-13.506 31.806-13.522 68.128 0 99.974L84.72 359.398c-38.319-63.217-38.319-143.579 0-206.796z" ], + lightbulb: [ 384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zM128 176c0-35.29 28.71-64 64-64 8.837 0 16-7.164 16-16s-7.163-16-16-16c-52.935 0-96 43.065-96 96 0 8.836 7.164 16 16 16s16-7.164 16-16zm64-128c70.734 0 128 57.254 128 128 0 77.602-37.383 60.477-80.98 160h-94.04C101.318 236.33 64 253.869 64 176c0-70.735 57.254-128 128-128m0-48C94.805 0 16 78.803 16 176c0 101.731 51.697 91.541 90.516 192.674 3.55 9.249 12.47 15.326 22.376 15.326h126.215c9.906 0 18.826-6.078 22.376-15.326C316.303 267.541 368 277.731 368 176 368 78.803 289.195 0 192 0z" ], + "list-alt": [ 512, 512, [], "f022", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zm-42-92v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm-252 12c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36z" ], + map: [ 576, 512, [], "f279", "M560.02 32c-1.96 0-3.98.37-5.96 1.16L384.01 96H384L212 35.28A64.252 64.252 0 0 0 191.76 32c-6.69 0-13.37 1.05-19.81 3.14L20.12 87.95A32.006 32.006 0 0 0 0 117.66v346.32C0 473.17 7.53 480 15.99 480c1.96 0 3.97-.37 5.96-1.16L192 416l172 60.71a63.98 63.98 0 0 0 40.05.15l151.83-52.81A31.996 31.996 0 0 0 576 394.34V48.02c0-9.19-7.53-16.02-15.98-16.02zM224 90.42l128 45.19v285.97l-128-45.19V90.42zM48 418.05V129.07l128-44.53v286.2l-.64.23L48 418.05zm480-35.13l-128 44.53V141.26l.64-.24L528 93.95v288.97z" ], + meh: [ 496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm8 144H160c-13.2 0-24 10.8-24 24s10.8 24 24 24h176c13.2 0 24-10.8 24-24s-10.8-24-24-24z" ], + "meh-blank": [ 496, 512, [], "f5a4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" ], + "meh-rolling-eyes": [ 496, 512, [], "f5a5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm88-304c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm0 112c-22.1 0-40-17.9-40-40 0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40zm-104-40c0-39.8-32.2-72-72-72s-72 32.2-72 72 32.2 72 72 72 72-32.2 72-72zm-112 0c0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40s-40-17.9-40-40zm192 128H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z" ], + "minus-square": [ 448, 512, [], "f146", "M108 284c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h232c6.6 0 12 5.4 12 12v32c0 6.6-5.4 12-12 12H108zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "money-bill-alt": [ 640, 512, [], "f3d1", "M320 144c-53.02 0-96 50.14-96 112 0 61.85 42.98 112 96 112 53 0 96-50.13 96-112 0-61.86-42.98-112-96-112zm40 168c0 4.42-3.58 8-8 8h-64c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h16v-55.44l-.47.31a7.992 7.992 0 0 1-11.09-2.22l-8.88-13.31a7.992 7.992 0 0 1 2.22-11.09l15.33-10.22a23.99 23.99 0 0 1 13.31-4.03H328c4.42 0 8 3.58 8 8v88h16c4.42 0 8 3.58 8 8v16zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zm-16 272c-35.35 0-64 28.65-64 64H112c0-35.35-28.65-64-64-64V176c35.35 0 64-28.65 64-64h416c0 35.35 28.65 64 64 64v160z" ], + moon: [ 512, 512, [], "f186", "M279.135 512c78.756 0 150.982-35.804 198.844-94.775 28.27-34.831-2.558-85.722-46.249-77.401-82.348 15.683-158.272-47.268-158.272-130.792 0-48.424 26.06-92.292 67.434-115.836 38.745-22.05 28.999-80.788-15.022-88.919A257.936 257.936 0 0 0 279.135 0c-141.36 0-256 114.575-256 256 0 141.36 114.576 256 256 256zm0-464c12.985 0 25.689 1.201 38.016 3.478-54.76 31.163-91.693 90.042-91.693 157.554 0 113.848 103.641 199.2 215.252 177.944C402.574 433.964 344.366 464 279.135 464c-114.875 0-208-93.125-208-208s93.125-208 208-208z" ], + newspaper: [ 576, 512, [], "f1ea", "M552 64H112c-20.858 0-38.643 13.377-45.248 32H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h496c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24zM48 392V144h16v248c0 4.411-3.589 8-8 8s-8-3.589-8-8zm480 8H111.422c.374-2.614.578-5.283.578-8V112h416v288zM172 280h136c6.627 0 12-5.373 12-12v-96c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v96c0 6.627 5.373 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H172c-6.627 0-12-5.373-12-12zm192 0v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0-144v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0 72v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12z" ], + "object-group": [ 512, 512, [], "f247", "M500 128c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v256H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V128h12zm-52-64h32v32h-32V64zM32 64h32v32H32V64zm32 384H32v-32h32v32zm416 0h-32v-32h32v32zm-40-64h-12c-6.627 0-12 5.373-12 12v12H96v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h12v256zm-36-192h-84v-52c0-6.628-5.373-12-12-12H108c-6.627 0-12 5.372-12 12v168c0 6.628 5.373 12 12 12h84v52c0 6.628 5.373 12 12 12h200c6.627 0 12-5.372 12-12V204c0-6.628-5.373-12-12-12zm-268-24h144v112H136V168zm240 176H232v-24h76c6.627 0 12-5.372 12-12v-76h56v112z" ], + "object-ungroup": [ 576, 512, [], "f248", "M564 224c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12h-88v-24h12c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v160H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h88v24h-12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V224h12zM352 64h32v32h-32V64zm0 256h32v32h-32v-32zM64 352H32v-32h32v32zm0-256H32V64h32v32zm32 216v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h12v160h-12c-6.627 0-12 5.373-12 12v12H96zm128 136h-32v-32h32v32zm280-64h-12c-6.627 0-12 5.373-12 12v12H256v-12c0-6.627-5.373-12-12-12h-12v-24h88v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12v-88h88v12c0 6.627 5.373 12 12 12h12v160zm40 64h-32v-32h32v32zm0-256h-32v-32h32v32z" ], + "paper-plane": [ 512, 512, [], "f1d8", "M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z" ], + "pause-circle": [ 512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm96-280v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16zm-112 0v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16z" ], + "play-circle": [ 512, 512, [], "f144", "M371.7 238l-176-107c-15.8-8.8-35.7 2.5-35.7 21v208c0 18.4 19.8 29.8 35.7 21l176-101c16.4-9.1 16.4-32.8 0-42zM504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256z" ], + "plus-square": [ 448, 512, [], "f0fe", "M352 240v32c0 6.6-5.4 12-12 12h-88v88c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-88h-88c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h88v-88c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v88h88c6.6 0 12 5.4 12 12zm96-160v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "question-circle": [ 512, 512, [], "f059", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 448c-110.532 0-200-89.431-200-200 0-110.495 89.472-200 200-200 110.491 0 200 89.471 200 200 0 110.53-89.431 200-200 200zm107.244-255.2c0 67.052-72.421 68.084-72.421 92.863V300c0 6.627-5.373 12-12 12h-45.647c-6.627 0-12-5.373-12-12v-8.659c0-35.745 27.1-50.034 47.579-61.516 17.561-9.845 28.324-16.541 28.324-29.579 0-17.246-21.999-28.693-39.784-28.693-23.189 0-33.894 10.977-48.942 29.969-4.057 5.12-11.46 6.071-16.666 2.124l-27.824-21.098c-5.107-3.872-6.251-11.066-2.644-16.363C184.846 131.491 214.94 112 261.794 112c49.071 0 101.45 38.304 101.45 88.8zM298 368c0 23.159-18.841 42-42 42s-42-18.841-42-42 18.841-42 42-42 42 18.841 42 42z" ], + registered: [ 512, 512, [], "f25d", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm110.442-81.791c-53.046-96.284-50.25-91.468-53.271-96.085 24.267-13.879 39.482-41.563 39.482-73.176 0-52.503-30.247-85.252-101.498-85.252h-78.667c-6.617 0-12 5.383-12 12V380c0 6.617 5.383 12 12 12h38.568c6.617 0 12-5.383 12-12v-83.663h31.958l47.515 89.303a11.98 11.98 0 0 0 10.593 6.36h42.81c9.14 0 14.914-9.799 10.51-17.791zM256.933 239.906h-33.875v-64.14h27.377c32.417 0 38.929 12.133 38.929 31.709-.001 20.913-11.518 32.431-32.431 32.431z" ], + "sad-cry": [ 496, 512, [], "f5b3", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm144 386.4V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v151.4C315.5 447 282.8 456 248 456s-67.5-9-96-24.6V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v114.4c-34.6-36-56-84.7-56-138.4 0-110.3 89.7-200 200-200s200 89.7 200 200c0 53.7-21.4 102.5-56 138.4zM205.8 234.5c4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.3 7.9 4.8 13.7 1.6zM344 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.5 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm-96 92c-30.9 0-56 28.7-56 64s25.1 64 56 64 56-28.7 56-64-25.1-64-56-64z" ], + "sad-tear": [ 496, 512, [], "f5b4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm8-152c-13.2 0-24 10.8-24 24s10.8 24 24 24c23.8 0 46.3 10.5 61.6 28.8 8.1 9.8 23.2 11.9 33.8 3.1 10.2-8.5 11.6-23.6 3.1-33.8C330 320.8 294.1 304 256 304zm-88-64c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-165.6 98.8C151 290.1 126 325.4 126 342.9c0 22.7 18.8 41.1 42 41.1s42-18.4 42-41.1c0-17.5-25-52.8-36.4-68.1-2.8-3.7-8.4-3.7-11.2 0z" ], + save: [ 448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM272 80v80H144V80h128zm122 352H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h42v104c0 13.255 10.745 24 24 24h176c13.255 0 24-10.745 24-24V83.882l78.243 78.243a6 6 0 0 1 1.757 4.243V426a6 6 0 0 1-6 6zM224 232c-48.523 0-88 39.477-88 88s39.477 88 88 88 88-39.477 88-88-39.477-88-88-88zm0 128c-22.056 0-40-17.944-40-40s17.944-40 40-40 40 17.944 40 40-17.944 40-40 40z" ], + "share-square": [ 576, 512, [], "f14d", "M561.938 158.06L417.94 14.092C387.926-15.922 336 5.097 336 48.032v57.198c-42.45 1.88-84.03 6.55-120.76 17.99-35.17 10.95-63.07 27.58-82.91 49.42C108.22 199.2 96 232.6 96 271.94c0 61.697 33.178 112.455 84.87 144.76 37.546 23.508 85.248-12.651 71.02-55.74-15.515-47.119-17.156-70.923 84.11-78.76V336c0 42.993 51.968 63.913 81.94 33.94l143.998-144c18.75-18.74 18.75-49.14 0-67.88zM384 336V232.16C255.309 234.082 166.492 255.35 206.31 376 176.79 357.55 144 324.08 144 271.94c0-109.334 129.14-118.947 240-119.85V48l144 144-144 144zm24.74 84.493a82.658 82.658 0 0 0 20.974-9.303c7.976-4.952 18.286.826 18.286 10.214V464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h132c6.627 0 12 5.373 12 12v4.486c0 4.917-2.987 9.369-7.569 11.152-13.702 5.331-26.396 11.537-38.05 18.585a12.138 12.138 0 0 1-6.28 1.777H54a6 6 0 0 0-6 6v340a6 6 0 0 0 6 6h340a6 6 0 0 0 6-6v-25.966c0-5.37 3.579-10.059 8.74-11.541z" ], + smile: [ 496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm4 72.6c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.1-8.4-25.3-7.1-33.8 3.1z" ], + "smile-beam": [ 496, 512, [], "f5b8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm84-143.4c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.6-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.2-8.4-25.3-7.1-33.8 3.1zM136.5 211c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.4 1.1 7.4-.5 9.3-3.7l9.5-17zM328 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4z" ], + "smile-wink": [ 496, 512, [], "f4da", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm117.8-146.4c-10.2-8.5-25.3-7.1-33.8 3.1-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-60c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1z" ], + snowflake: [ 448, 512, [], "f2dc", "M438.237 355.927l-66.574-38.54 59.448-10.327c5.846-1.375 10.609-5.183 13.458-10.13 2.48-4.307 3.506-9.478 2.524-14.651-2.11-11.115-12.686-18.039-23.621-15.467l-85.423 31.115L255.914 256l82.136-41.926 85.423 31.115c10.936 2.572 21.512-4.352 23.621-15.467 2.111-11.115-5.046-22.209-15.981-24.781l-59.448-10.327 66.573-38.54c9.54-5.523 12.615-18.092 6.867-28.074-5.748-9.982-18.14-13.596-27.68-8.074l-66.574 38.54 20.805-56.787c3.246-10.782-2.758-22.542-13.413-26.268-10.654-3.725-21.922 1.997-25.168 12.779l-15.838 89.735-72.423 41.926V136l69.585-58.621c7.689-8.21 6.997-20.856-1.548-28.245-8.545-7.391-21.705-6.723-29.394 1.486l-38.644 46.46V20c0-11.046-9.318-20-20.813-20s-20.813 8.954-20.813 20v77.08l-38.644-46.46c-7.689-8.21-20.849-8.876-29.394-1.486-8.544 7.389-9.236 20.035-1.547 28.245L203.187 136v83.853l-72.423-41.926-15.838-89.736c-3.247-10.782-14.515-16.504-25.169-12.779-10.656 3.725-16.659 15.486-13.413 26.268l20.805 56.787-66.573-38.54c-9.54-5.523-21.933-1.908-27.68 8.074s-2.673 22.551 6.867 28.074l66.574 38.54-59.449 10.328C5.953 207.515-1.202 218.609.907 229.724c2.11 11.114 12.686 18.038 23.622 15.466l85.422-31.115L192.086 256l-82.136 41.926-85.423-31.115c-10.936-2.572-21.511 4.352-23.622 15.466-2.109 11.113 5.046 22.209 15.981 24.781l59.449 10.328-66.574 38.54C.223 361.449-2.852 374.018 2.896 384s18.14 13.597 27.68 8.074l66.574-38.54-20.805 56.786c-1.735 5.764-.828 11.805 2.02 16.751 2.48 4.307 6.433 7.784 11.392 9.517 10.655 3.725 21.923-1.997 25.169-12.779l15.838-89.736 72.423-41.926V376l-69.585 58.621c-7.69 8.21-6.997 20.855 1.547 28.245 8.544 7.388 21.705 6.723 29.394-1.487l38.644-46.46V492c0 11.046 9.318 20 20.813 20s20.813-8.954 20.813-20v-77.081l38.644 46.46c4.111 4.389 9.782 6.621 15.478 6.621 4.96 0 9.939-1.694 13.916-5.134 8.545-7.39 9.237-20.035 1.548-28.245L244.813 376v-83.853l72.423 41.926 15.838 89.736c3.246 10.782 14.514 16.504 25.168 12.779 10.653-3.726 16.659-15.487 13.412-26.268l-20.805-56.787 66.574 38.54c9.54 5.523 21.933 1.908 27.68-8.074 5.749-9.981 2.675-22.55-6.866-28.072z" ], + square: [ 448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h340c3.3 0 6 2.7 6 6v340c0 3.3-2.7 6-6 6z" ], + star: [ 576, 512, [], "f005", "M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z" ], + "star-half": [ 576, 512, [], "f089", "M288 385.3l-124.3 65.4 23.7-138.4-100.6-98 139-20.2 62.2-126V0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6v-54.3z" ], + "sticky-note": [ 448, 512, [], "f249", "M448 348.106V80c0-26.51-21.49-48-48-48H48C21.49 32 0 53.49 0 80v351.988c0 26.51 21.49 48 48 48h268.118a48 48 0 0 0 33.941-14.059l83.882-83.882A48 48 0 0 0 448 348.106zm-128 80v-76.118h76.118L320 428.106zM400 80v223.988H296c-13.255 0-24 10.745-24 24v104H48V80h352z" ], + "stop-circle": [ 512, 512, [], "f28d", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm296-80v160c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16z" ], + sun: [ 512, 512, [], "f185", "M220.116 487.936l-20.213-49.425a3.992 3.992 0 0 0-5.808-1.886l-45.404 28.104c-29.466 18.24-66.295-8.519-58.054-42.179l12.699-51.865a3.993 3.993 0 0 0-3.59-4.941l-53.251-3.951c-34.554-2.562-48.632-45.855-22.174-68.247L65.08 259.05a3.992 3.992 0 0 0 0-6.106l-40.76-34.497c-26.45-22.384-12.39-65.682 22.174-68.246l53.251-3.951a3.993 3.993 0 0 0 3.59-4.941L90.637 89.443c-8.239-33.656 28.581-60.42 58.054-42.179l45.403 28.104a3.993 3.993 0 0 0 5.808-1.887l20.213-49.425c13.116-32.071 58.638-32.081 71.758 0l20.212 49.424a3.994 3.994 0 0 0 5.809 1.887l45.403-28.104c29.464-18.236 66.297 8.513 58.054 42.179l-12.699 51.865a3.995 3.995 0 0 0 3.59 4.941l53.251 3.951c34.553 2.563 48.633 45.854 22.175 68.246l-40.76 34.497a3.993 3.993 0 0 0 0 6.107l40.76 34.496c26.511 22.441 12.322 65.689-22.175 68.247l-53.251 3.951a3.993 3.993 0 0 0-3.589 4.942l12.698 51.864c8.241 33.658-28.583 60.421-58.054 42.18l-45.403-28.104a3.994 3.994 0 0 0-5.809 1.887l-20.212 49.424c-13.159 32.178-58.675 31.993-71.757 0zm16.814-64.568l19.064 46.616 19.064-46.615c10.308-25.2 40.778-35.066 63.892-20.759l42.822 26.507-11.976-48.919c-6.475-26.444 12.38-52.339 39.487-54.349l50.226-3.726-38.444-32.536c-20.782-17.591-20.747-49.621.001-67.18l38.442-32.536-50.225-3.727c-27.151-2.015-45.95-27.948-39.488-54.349l11.978-48.919-42.823 26.507c-23.151 14.327-53.603 4.4-63.892-20.76l-19.064-46.615-19.064 46.617c-10.305 25.198-40.778 35.066-63.891 20.76l-42.823-26.508 11.977 48.918c6.474 26.446-12.381 52.338-39.488 54.35l-50.224 3.726 38.443 32.537c20.782 17.588 20.747 49.619 0 67.178L52.48 322.123l50.226 3.726c27.151 2.014 45.95 27.947 39.487 54.349l-11.977 48.919 42.823-26.507c23.188-14.355 53.622-4.352 63.891 20.758zM256 384c-70.58 0-128-57.421-128-128 0-70.58 57.42-128 128-128 70.579 0 128 57.42 128 128 0 70.579-57.421 128-128 128zm0-208c-44.112 0-80 35.888-80 80s35.888 80 80 80 80-35.888 80-80-35.888-80-80-80z" ], + surprise: [ 496, 512, [], "f5c2", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-176c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm-48-72c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" ], + "thumbs-down": [ 512, 512, [], "f165", "M466.27 225.31c4.674-22.647.864-44.538-8.99-62.99 2.958-23.868-4.021-48.565-17.34-66.99C438.986 39.423 404.117 0 327 0c-7 0-15 .01-22.22.01C201.195.01 168.997 40 128 40h-10.845c-5.64-4.975-13.042-8-21.155-8H32C14.327 32 0 46.327 0 64v240c0 17.673 14.327 32 32 32h64c11.842 0 22.175-6.438 27.708-16h7.052c19.146 16.953 46.013 60.653 68.76 83.4 13.667 13.667 10.153 108.6 71.76 108.6 57.58 0 95.27-31.936 95.27-104.73 0-18.41-3.93-33.73-8.85-46.54h36.48c48.602 0 85.82-41.565 85.82-85.58 0-19.15-4.96-34.99-13.73-49.84zM64 296c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm330.18 16.73H290.19c0 37.82 28.36 55.37 28.36 94.54 0 23.75 0 56.73-47.27 56.73-18.91-18.91-9.46-66.18-37.82-94.54C206.9 342.89 167.28 272 138.92 272H128V85.83c53.611 0 100.001-37.82 171.64-37.82h37.82c35.512 0 60.82 17.12 53.12 65.9 15.2 8.16 26.5 36.44 13.94 57.57 21.581 20.384 18.699 51.065 5.21 65.62 9.45 0 22.36 18.91 22.27 37.81-.09 18.91-16.71 37.82-37.82 37.82z" ], + "thumbs-up": [ 512, 512, [], "f164", "M466.27 286.69C475.04 271.84 480 256 480 236.85c0-44.015-37.218-85.58-85.82-85.58H357.7c4.92-12.81 8.85-28.13 8.85-46.54C366.55 31.936 328.86 0 271.28 0c-61.607 0-58.093 94.933-71.76 108.6-22.747 22.747-49.615 66.447-68.76 83.4H32c-17.673 0-32 14.327-32 32v240c0 17.673 14.327 32 32 32h64c14.893 0 27.408-10.174 30.978-23.95 44.509 1.001 75.06 39.94 177.802 39.94 7.22 0 15.22.01 22.22.01 77.117 0 111.986-39.423 112.94-95.33 13.319-18.425 20.299-43.122 17.34-66.99 9.854-18.452 13.664-40.343 8.99-62.99zm-61.75 53.83c12.56 21.13 1.26 49.41-13.94 57.57 7.7 48.78-17.608 65.9-53.12 65.9h-37.82c-71.639 0-118.029-37.82-171.64-37.82V240h10.92c28.36 0 67.98-70.89 94.54-97.46 28.36-28.36 18.91-75.63 37.82-94.54 47.27 0 47.27 32.98 47.27 56.73 0 39.17-28.36 56.72-28.36 94.54h103.99c21.11 0 37.73 18.91 37.82 37.82.09 18.9-12.82 37.81-22.27 37.81 13.489 14.555 16.371 45.236-5.21 65.62zM88 432c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z" ], + "times-circle": [ 512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm101.8-262.2L295.6 256l62.2 62.2c4.7 4.7 4.7 12.3 0 17l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L256 295.6l-62.2 62.2c-4.7 4.7-12.3 4.7-17 0l-22.6-22.6c-4.7-4.7-4.7-12.3 0-17l62.2-62.2-62.2-62.2c-4.7-4.7-4.7-12.3 0-17l22.6-22.6c4.7-4.7 12.3-4.7 17 0l62.2 62.2 62.2-62.2c4.7-4.7 12.3-4.7 17 0l22.6 22.6c4.7 4.7 4.7 12.3 0 17z" ], + tired: [ 496, 512, [], "f5c8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm129.1-303.8c-3.8-4.4-10.3-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.8 1.6 15.3-2.5 3.8-4.5 3.9-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zM220 208c0-4.2-2.2-8.1-5.8-10.3l-80-48c-5-3-11.5-1.9-15.3 2.5-3.8 4.5-3.9 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.5 4.1 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3zm28 64c-45.4 0-100.9 38.3-107.8 93.3-1.5 11.8 6.9 21.6 15.5 17.9C178.4 373.5 212 368 248 368s69.6 5.5 92.3 15.2c8.5 3.7 17-6 15.5-17.9-6.9-55-62.4-93.3-107.8-93.3z" ], + "trash-alt": [ 448, 512, [], "f2ed", "M192 188v216c0 6.627-5.373 12-12 12h-24c-6.627 0-12-5.373-12-12V188c0-6.627 5.373-12 12-12h24c6.627 0 12 5.373 12 12zm100-12h-24c-6.627 0-12 5.373-12 12v216c0 6.627 5.373 12 12 12h24c6.627 0 12-5.373 12-12V188c0-6.627-5.373-12-12-12zm132-96c13.255 0 24 10.745 24 24v12c0 6.627-5.373 12-12 12h-20v336c0 26.51-21.49 48-48 48H80c-26.51 0-48-21.49-48-48V128H12c-6.627 0-12-5.373-12-12v-12c0-13.255 10.745-24 24-24h74.411l34.018-56.696A48 48 0 0 1 173.589 0h100.823a48 48 0 0 1 41.16 23.304L349.589 80H424zm-269.611 0h139.223L276.16 50.913A6 6 0 0 0 271.015 48h-94.028a6 6 0 0 0-5.145 2.913L154.389 80zM368 128H80v330a6 6 0 0 0 6 6h276a6 6 0 0 0 6-6V128z" ], + user: [ 448, 512, [], "f007", "M313.6 304c-28.7 0-42.5 16-89.6 16-47.1 0-60.8-16-89.6-16C60.2 304 0 364.2 0 438.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-25.6c0-74.2-60.2-134.4-134.4-134.4zM400 464H48v-25.6c0-47.6 38.8-86.4 86.4-86.4 14.6 0 38.3 16 89.6 16 51.7 0 74.9-16 89.6-16 47.6 0 86.4 38.8 86.4 86.4V464zM224 288c79.5 0 144-64.5 144-144S303.5 0 224 0 80 64.5 80 144s64.5 144 144 144zm0-240c52.9 0 96 43.1 96 96s-43.1 96-96 96-96-43.1-96-96 43.1-96 96-96z" ], + "user-circle": [ 496, 512, [], "f2bd", "M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z" ], + "window-close": [ 512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v340zM356.5 194.6L295.1 256l61.4 61.4c4.6 4.6 4.6 12.1 0 16.8l-22.3 22.3c-4.6 4.6-12.1 4.6-16.8 0L256 295.1l-61.4 61.4c-4.6 4.6-12.1 4.6-16.8 0l-22.3-22.3c-4.6-4.6-4.6-12.1 0-16.8l61.4-61.4-61.4-61.4c-4.6-4.6-4.6-12.1 0-16.8l22.3-22.3c4.6-4.6 12.1-4.6 16.8 0l61.4 61.4 61.4-61.4c4.6-4.6 12.1-4.6 16.8 0l22.3 22.3c4.7 4.6 4.7 12.1 0 16.8z" ], + "window-maximize": [ 512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V192h416v234z" ], + "window-minimize": [ 512, 512, [], "f2d1", "M480 480H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h448c17.7 0 32 14.3 32 32s-14.3 32-32 32z" ], + "window-restore": [ 512, 512, [], "f2d2", "M464 0H144c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-96 464H48V256h320v208zm96-96h-48V144c0-26.5-21.5-48-48-48H144V48h320v320z" ] + }; + !function(c) { + try { + c(); + } catch (c) { + if (!m) throw c; + } + }(function() { + !function c(z, l) { + var h = Object.keys(l).reduce(function(c, z) { + var h = l[z]; + return h.icon ? c[h.iconName] = h.icon : c[z] = h, c; + }, {}); + "function" == typeof V.hooks.addPack ? V.hooks.addPack(z, h) : V.styles[z] = H({}, V.styles[z] || {}, h), + "fas" === z && c("fa", l); + }("far", C); + }); +}(); \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/solid.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/solid.js new file mode 100644 index 0000000000..bc0aaac807 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/solid.js @@ -0,0 +1,865 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +(function () { +'use strict'; + +var _WINDOW = {}; +try { + if (typeof window !== 'undefined') _WINDOW = window; + +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; + + + + + +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; + + + + + + + + + +var PRODUCTION = function () { + try { + return undefined === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + + + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var icons = { + "address-book": [448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"], + "address-card": [576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-352 96c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H86.4C74 384 64 375.4 64 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2zM512 312c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z"], + "adjust": [512, 512, [], "f042", "M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z"], + "align-center": [448, 512, [], "f037", "M352 44v40c0 8.837-7.163 16-16 16H112c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h224c8.837 0 16 7.163 16 16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm320-200H112c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z"], + "align-justify": [448, 512, [], "f039", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm16 144h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0-128h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"], + "align-left": [448, 512, [], "f036", "M288 44v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16zM0 172v40c0 8.837 7.163 16 16 16h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16zm16 312h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm256-200H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z"], + "align-right": [448, 512, [], "f038", "M160 84V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H176c-8.837 0-16-7.163-16-16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"], + "allergies": [448, 512, [], "f461", "M416 112c-17.6 0-32 14.4-32 32v72c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v152c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V32c0-17.6-14.4-32-32-32s-32 14.4-32 32v184c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32S96 46.4 96 64v241l-23.6-32.5c-13-17.9-38-21.8-55.9-8.8s-21.8 38-8.8 55.9l125.6 172.7c9 12.4 23.5 19.8 38.8 19.8h197.6c22.3 0 41.6-15.3 46.7-37l26.5-112.7c3.2-13.7 4.9-28.3 5.1-42.3V144c0-17.6-14.4-32-32-32zM176 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 32c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32-128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"], + "ambulance": [640, 512, [], "f0f9", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm144-248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm176 248c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"], + "american-sign-language-interpreting": [640, 512, [], "f2a3", "M290.547 189.039c-20.295-10.149-44.147-11.199-64.739-3.89 42.606 0 71.208 20.475 85.578 50.576 8.576 17.899-5.148 38.071-23.617 38.071 18.429 0 32.211 20.136 23.617 38.071-14.725 30.846-46.123 50.854-80.298 50.854-.557 0-94.471-8.615-94.471-8.615l-66.406 33.347c-9.384 4.693-19.815.379-23.895-7.781L1.86 290.747c-4.167-8.615-1.111-18.897 6.946-23.621l58.072-33.069L108 159.861c6.39-57.245 34.731-109.767 79.743-146.726 11.391-9.448 28.341-7.781 37.51 3.613 9.446 11.394 7.78 28.067-3.612 37.516-12.503 10.559-23.618 22.509-32.509 35.57 21.672-14.729 46.679-24.732 74.186-28.067 14.725-1.945 28.063 8.336 29.73 23.065 1.945 14.728-8.336 28.067-23.062 29.734-16.116 1.945-31.12 7.503-44.178 15.284 26.114-5.713 58.712-3.138 88.079 11.115 13.336 6.669 18.893 22.509 12.224 35.848-6.389 13.06-22.504 18.617-35.564 12.226zm-27.229 69.472c-6.112-12.505-18.338-20.286-32.231-20.286a35.46 35.46 0 0 0-35.565 35.57c0 21.428 17.808 35.57 35.565 35.57 13.893 0 26.119-7.781 32.231-20.286 4.446-9.449 13.614-15.006 23.339-15.284-9.725-.277-18.893-5.835-23.339-15.284zm374.821-37.237c4.168 8.615 1.111 18.897-6.946 23.621l-58.071 33.069L532 352.16c-6.39 57.245-34.731 109.767-79.743 146.726-10.932 9.112-27.799 8.144-37.51-3.613-9.446-11.394-7.78-28.067 3.613-37.516 12.503-10.559 23.617-22.509 32.508-35.57-21.672 14.729-46.679 24.732-74.186 28.067-10.021 2.506-27.552-5.643-29.73-23.065-1.945-14.728 8.336-28.067 23.062-29.734 16.116-1.946 31.12-7.503 44.178-15.284-26.114 5.713-58.712 3.138-88.079-11.115-13.336-6.669-18.893-22.509-12.224-35.848 6.389-13.061 22.505-18.619 35.565-12.227 20.295 10.149 44.147 11.199 64.739 3.89-42.606 0-71.208-20.475-85.578-50.576-8.576-17.899 5.148-38.071 23.617-38.071-18.429 0-32.211-20.136-23.617-38.071 14.033-29.396 44.039-50.887 81.966-50.854l92.803 8.615 66.406-33.347c9.408-4.704 19.828-.354 23.894 7.781l44.455 88.926zm-229.227-18.618c-13.893 0-26.119 7.781-32.231 20.286-4.446 9.449-13.614 15.006-23.339 15.284 9.725.278 18.893 5.836 23.339 15.284 6.112 12.505 18.338 20.286 32.231 20.286a35.46 35.46 0 0 0 35.565-35.57c0-21.429-17.808-35.57-35.565-35.57z"], + "anchor": [576, 512, [], "f13d", "M12.971 352h32.394C67.172 454.735 181.944 512 288 512c106.229 0 220.853-57.38 242.635-160h32.394c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0l-67.029 67.029c-7.56 7.56-2.206 20.485 8.485 20.485h35.146c-20.29 54.317-84.963 86.588-144.117 94.015V256h52c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-52v-5.47c37.281-13.178 63.995-48.725 64-90.518C384.005 43.772 341.605.738 289.37.01 235.723-.739 192 42.525 192 96c0 41.798 26.716 77.35 64 90.53V192h-52c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v190.015c-58.936-7.399-123.82-39.679-144.117-94.015h35.146c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0L4.485 331.515C-3.074 339.074 2.28 352 12.971 352zM288 64c17.645 0 32 14.355 32 32s-14.355 32-32 32-32-14.355-32-32 14.355-32 32-32z"], + "angle-double-down": [320, 512, [], "f103", "M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z"], + "angle-double-left": [448, 512, [], "f100", "M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z"], + "angle-double-right": [448, 512, [], "f101", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z"], + "angle-double-up": [320, 512, [], "f102", "M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z"], + "angle-down": [320, 512, [], "f107", "M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"], + "angle-left": [256, 512, [], "f104", "M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"], + "angle-right": [256, 512, [], "f105", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"], + "angle-up": [320, 512, [], "f106", "M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z"], + "angry": [496, 512, [], "f556", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 240c0-9.3 4.1-17.5 10.5-23.4l-31-9.3c-8.5-2.5-13.3-11.5-10.7-19.9 2.5-8.5 11.4-13.2 19.9-10.7l80 24c8.5 2.5 13.3 11.5 10.7 19.9-2.1 6.9-8.4 11.4-15.3 11.4-.5 0-1.1-.2-1.7-.2.7 2.7 1.7 5.3 1.7 8.2 0 17.7-14.3 32-32 32S136 257.7 136 240zm168 154.2c-27.8-33.4-84.2-33.4-112.1 0-13.5 16.3-38.2-4.2-24.6-20.5 20-24 49.4-37.8 80.6-37.8s60.6 13.8 80.6 37.8c13.8 16.5-11.1 36.6-24.5 20.5zm76.6-186.9l-31 9.3c6.3 5.8 10.5 14.1 10.5 23.4 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-2.9.9-5.6 1.7-8.2-.6.1-1.1.2-1.7.2-6.9 0-13.2-4.5-15.3-11.4-2.5-8.5 2.3-17.4 10.7-19.9l80-24c8.4-2.5 17.4 2.3 19.9 10.7 2.5 8.5-2.3 17.4-10.8 19.9z"], + "archive": [512, 512, [], "f187", "M32 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160H32v288zm160-212c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v8c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-8zM480 32H32C14.3 32 0 46.3 0 64v48c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16V64c0-17.7-14.3-32-32-32z"], + "archway": [576, 512, [], "f557", "M560 448h-16V96H32v352H16.02c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16H176c8.84 0 16-7.16 16-16V320c0-53.02 42.98-96 96-96s96 42.98 96 96l.02 160v16c0 8.84 7.16 16 16 16H560c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm0-448H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h544c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16z"], + "arrow-alt-circle-down": [512, 512, [], "f358", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM212 140v116h-70.9c-10.7 0-16.1 13-8.5 20.5l114.9 114.3c4.7 4.7 12.2 4.7 16.9 0l114.9-114.3c7.6-7.6 2.2-20.5-8.5-20.5H300V140c0-6.6-5.4-12-12-12h-64c-6.6 0-12 5.4-12 12z"], + "arrow-alt-circle-left": [512, 512, [], "f359", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z"], + "arrow-alt-circle-right": [512, 512, [], "f35a", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z"], + "arrow-alt-circle-up": [512, 512, [], "f35b", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm292 116V256h70.9c10.7 0 16.1-13 8.5-20.5L264.5 121.2c-4.7-4.7-12.2-4.7-16.9 0l-115 114.3c-7.6 7.6-2.2 20.5 8.5 20.5H212v116c0 6.6 5.4 12 12 12h64c6.6 0 12-5.4 12-12z"], + "arrow-circle-down": [512, 512, [], "f0ab", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-143.6-28.9L288 302.6V120c0-13.3-10.7-24-24-24h-16c-13.3 0-24 10.7-24 24v182.6l-72.4-75.5c-9.3-9.7-24.8-9.9-34.3-.4l-10.9 11c-9.4 9.4-9.4 24.6 0 33.9L239 404.3c9.4 9.4 24.6 9.4 33.9 0l132.7-132.7c9.4-9.4 9.4-24.6 0-33.9l-10.9-11c-9.5-9.5-25-9.3-34.3.4z"], + "arrow-circle-left": [512, 512, [], "f0a8", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm28.9-143.6L209.4 288H392c13.3 0 24-10.7 24-24v-16c0-13.3-10.7-24-24-24H209.4l75.5-72.4c9.7-9.3 9.9-24.8.4-34.3l-11-10.9c-9.4-9.4-24.6-9.4-33.9 0L107.7 239c-9.4 9.4-9.4 24.6 0 33.9l132.7 132.7c9.4 9.4 24.6 9.4 33.9 0l11-10.9c9.5-9.5 9.3-25-.4-34.3z"], + "arrow-circle-right": [512, 512, [], "f0a9", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28.9 143.6l75.5 72.4H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h182.6l-75.5 72.4c-9.7 9.3-9.9 24.8-.4 34.3l11 10.9c9.4 9.4 24.6 9.4 33.9 0L404.3 273c9.4-9.4 9.4-24.6 0-33.9L271.6 106.3c-9.4-9.4-24.6-9.4-33.9 0l-11 10.9c-9.5 9.6-9.3 25.1.4 34.4z"], + "arrow-circle-up": [512, 512, [], "f0aa", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z"], + "arrow-down": [448, 512, [], "f063", "M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z"], + "arrow-left": [448, 512, [], "f060", "M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z"], + "arrow-right": [448, 512, [], "f061", "M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z"], + "arrow-up": [448, 512, [], "f062", "M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z"], + "arrows-alt": [512, 512, [], "f0b2", "M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z"], + "arrows-alt-h": [512, 512, [], "f337", "M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z"], + "arrows-alt-v": [256, 512, [], "f338", "M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z"], + "assistive-listening-systems": [512, 512, [], "f2a2", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z"], + "asterisk": [512, 512, [], "f069", "M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z"], + "at": [512, 512, [], "f1fa", "M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z"], + "atlas": [448, 512, [], "f558", "M318.38 208h-39.09c-1.49 27.03-6.54 51.35-14.21 70.41 27.71-13.24 48.02-39.19 53.3-70.41zm0-32c-5.29-31.22-25.59-57.17-53.3-70.41 7.68 19.06 12.72 43.38 14.21 70.41h39.09zM224 97.31c-7.69 7.45-20.77 34.42-23.43 78.69h46.87c-2.67-44.26-15.75-71.24-23.44-78.69zm-41.08 8.28c-27.71 13.24-48.02 39.19-53.3 70.41h39.09c1.49-27.03 6.53-51.35 14.21-70.41zm0 172.82c-7.68-19.06-12.72-43.38-14.21-70.41h-39.09c5.28 31.22 25.59 57.17 53.3 70.41zM247.43 208h-46.87c2.66 44.26 15.74 71.24 23.43 78.69 7.7-7.45 20.78-34.43 23.44-78.69zM448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM224 64c70.69 0 128 57.31 128 128s-57.31 128-128 128S96 262.69 96 192 153.31 64 224 64zm160 384H96c-19.2 0-32-12.8-32-32s16-32 32-32h288v64z"], + "audio-description": [512, 512, [], "f29e", "M162.925 238.709l8.822 30.655h-25.606l9.041-30.652c1.277-4.421 2.651-9.994 3.872-15.245 1.22 5.251 2.594 10.823 3.871 15.242zm166.474-32.099h-14.523v98.781h14.523c29.776 0 46.175-17.678 46.175-49.776 0-32.239-17.49-49.005-46.175-49.005zM512 112v288c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48zM245.459 336.139l-57.097-168A12.001 12.001 0 0 0 177 160h-35.894a12.001 12.001 0 0 0-11.362 8.139l-57.097 168C70.003 343.922 75.789 352 84.009 352h29.133a12 12 0 0 0 11.535-8.693l8.574-29.906h51.367l8.793 29.977A12 12 0 0 0 204.926 352h29.172c8.22 0 14.006-8.078 11.361-15.861zm184.701-80.525c0-58.977-37.919-95.614-98.96-95.614h-57.366c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12H331.2c61.041 0 98.96-36.933 98.96-96.386z"], + "award": [384, 512, [], "f559", "M97.12 362.63l-5.3-5.3a9.004 9.004 0 0 0-4.02-2.32L72 350.77c-9.51-2.55-17.87-7.45-25.43-13.32L1.2 448.7c-4.39 10.77 3.81 22.47 15.43 22.03l52.69-2.01L105.56 507c8 8.44 22.04 5.81 26.43-4.96l52.05-127.62c-10.84 6.04-22.87 9.58-35.31 9.58-19.5 0-37.82-7.59-51.61-21.37zM382.8 448.7l-45.37-111.24c-7.56 5.88-15.92 10.77-25.43 13.32l-15.8 4.23a9.004 9.004 0 0 0-4.02 2.32l-5.3 5.3C273.09 376.41 254.76 384 235.26 384c-12.44 0-24.47-3.55-35.31-9.58L252 502.04c4.39 10.77 18.44 13.4 26.43 4.96l36.25-38.28 52.69 2.01c11.62.44 19.82-11.27 15.43-22.03zM263 340l5.21-5.3c5-5.09 11.22-8.75 18.05-10.61l15.53-4.23c13.89-3.79 24.75-14.84 28.47-28.98l4.16-15.81a41.145 41.145 0 0 1 10.42-18.37l11.37-11.57c10.17-10.35 14.14-25.44 10.42-39.58l-4.16-15.81a41.657 41.657 0 0 1 0-21.21l4.16-15.81c3.72-14.14-.25-29.23-10.42-39.58l-11.37-11.57c-5-5.09-8.59-11.42-10.42-18.37l-4.16-15.8c-3.72-14.14-14.58-25.19-28.47-28.98l-15.53-4.24c-6.83-1.86-13.05-5.52-18.05-10.61L256.84 12c-10.17-10.35-25-14.4-38.89-10.61l-15.53 4.24a39.614 39.614 0 0 1-20.84 0L166.05 1.4c-13.89-3.79-28.72.25-38.89 10.61l-11.37 11.57c-5 5.09-11.22 8.74-18.05 10.61l-15.53 4.24c-13.89 3.79-24.75 14.84-28.47 28.98l-4.16 15.8a41.145 41.145 0 0 1-10.42 18.37l-11.37 11.57c-10.17 10.35-14.15 25.44-10.42 39.58l4.16 15.8a41.657 41.657 0 0 1 0 21.21l-4.16 15.8c-3.72 14.14.25 29.23 10.42 39.59l11.37 11.57c5 5.09 8.59 11.42 10.42 18.37l4.16 15.8c3.72 14.14 14.58 25.19 28.47 28.98l15.53 4.23c6.83 1.86 13.05 5.52 18.05 10.61L121 340c13.23 13.47 33.84 15.88 49.74 5.82a39.676 39.676 0 0 1 42.53 0c15.89 10.06 36.5 7.65 49.73-5.82zM97.66 175.96c0-53.03 42.24-96.02 94.34-96.02s94.34 42.99 94.34 96.02-42.24 96.02-94.34 96.02-94.34-42.99-94.34-96.02z"], + "backspace": [640, 512, [], "f55a", "M576 64H205.26A63.97 63.97 0 0 0 160 82.75L9.37 233.37c-12.5 12.5-12.5 32.76 0 45.25L160 429.25c12 12 28.28 18.75 45.25 18.75H576c35.35 0 64-28.65 64-64V128c0-35.35-28.65-64-64-64zm-84.69 254.06c6.25 6.25 6.25 16.38 0 22.63l-22.62 22.62c-6.25 6.25-16.38 6.25-22.63 0L384 301.25l-62.06 62.06c-6.25 6.25-16.38 6.25-22.63 0l-22.62-22.62c-6.25-6.25-6.25-16.38 0-22.63L338.75 256l-62.06-62.06c-6.25-6.25-6.25-16.38 0-22.63l22.62-22.62c6.25-6.25 16.38-6.25 22.63 0L384 210.75l62.06-62.06c6.25-6.25 16.38-6.25 22.63 0l22.62 22.62c6.25 6.25 6.25 16.38 0 22.63L429.25 256l62.06 62.06z"], + "backward": [512, 512, [], "f04a", "M11.5 280.6l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2zm256 0l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2z"], + "balance-scale": [640, 512, [], "f24e", "M256 336h-.02c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0C-2.06 328.75.02 320.33.02 336H0c0 44.18 57.31 80 128 80s128-35.82 128-80zM128 176l72 144H56l72-144zm511.98 160c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 320l72-144 72 144H440zm88 128H352V153.25c23.51-10.29 41.16-31.48 46.39-57.25H528c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H383.64C369.04 12.68 346.09 0 320 0s-49.04 12.68-63.64 32H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h129.61c5.23 25.76 22.87 46.96 46.39 57.25V448H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"], + "ban": [512, 512, [], "f05e", "M256 8C119.034 8 8 119.033 8 256s111.034 248 248 248 248-111.034 248-248S392.967 8 256 8zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676zM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676z"], + "band-aid": [640, 512, [], "f462", "M0 160v192c0 35.3 28.7 64 64 64h96V96H64c-35.3 0-64 28.7-64 64zm576-64h-96v320h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64zM192 416h256V96H192v320zm176-232c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24z"], + "barcode": [512, 512, [], "f02a", "M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z"], + "bars": [448, 512, [], "f0c9", "M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"], + "baseball-ball": [496, 512, [], "f433", "M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z"], + "basketball-ball": [496, 512, [], "f434", "M212.3 10.3c-43.8 6.3-86.2 24.1-122.2 53.8l77.4 77.4c27.8-35.8 43.3-81.2 44.8-131.2zM248 222L405.9 64.1c-42.4-35-93.6-53.5-145.5-56.1-1.2 63.9-21.5 122.3-58.7 167.7L248 222zM56.1 98.1c-29.7 36-47.5 78.4-53.8 122.2 50-1.5 95.5-17 131.2-44.8L56.1 98.1zm272.2 204.2c45.3-37.1 103.7-57.4 167.7-58.7-2.6-51.9-21.1-103.1-56.1-145.5L282 256l46.3 46.3zM248 290L90.1 447.9c42.4 34.9 93.6 53.5 145.5 56.1 1.3-64 21.6-122.4 58.7-167.7L248 290zm191.9 123.9c29.7-36 47.5-78.4 53.8-122.2-50.1 1.6-95.5 17.1-131.2 44.8l77.4 77.4zM167.7 209.7C122.3 246.9 63.9 267.3 0 268.4c2.6 51.9 21.1 103.1 56.1 145.5L214 256l-46.3-46.3zm116 292c43.8-6.3 86.2-24.1 122.2-53.8l-77.4-77.4c-27.7 35.7-43.2 81.2-44.8 131.2z"], + "bath": [512, 512, [], "f2cd", "M488 256H80V112c0-17.645 14.355-32 32-32 11.351 0 21.332 5.945 27.015 14.88-16.492 25.207-14.687 59.576 6.838 83.035-4.176 4.713-4.021 11.916.491 16.428l11.314 11.314c4.686 4.686 12.284 4.686 16.971 0l95.03-95.029c4.686-4.686 4.686-12.284 0-16.971l-11.314-11.314c-4.512-4.512-11.715-4.666-16.428-.491-17.949-16.469-42.294-21.429-64.178-15.365C163.281 45.667 139.212 32 112 32c-44.112 0-80 35.888-80 80v144h-8c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h8v32c0 28.43 12.362 53.969 32 71.547V456c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-8h256v8c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-32.453c19.638-17.578 32-43.117 32-71.547v-32h8c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z"], + "battery-empty": [640, 512, [], "f244", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48z"], + "battery-full": [640, 512, [], "f240", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-48 96H96v128h416V192z"], + "battery-half": [640, 512, [], "f242", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-240 96H96v128h224V192z"], + "battery-quarter": [640, 512, [], "f243", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-336 96H96v128h128V192z"], + "battery-three-quarters": [640, 512, [], "f241", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-144 96H96v128h320V192z"], + "bed": [640, 512, [], "f236", "M176 256c44.11 0 80-35.89 80-80s-35.89-80-80-80-80 35.89-80 80 35.89 80 80 80zm352-128H304c-8.84 0-16 7.16-16 16v144H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v352c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h512v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V240c0-61.86-50.14-112-112-112z"], + "beer": [448, 512, [], "f0fc", "M368 96h-48V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24v-42.11l80.606-35.977C429.396 365.063 448 336.388 448 304.86V176c0-44.112-35.888-80-80-80zm16 208.86a16.018 16.018 0 0 1-9.479 14.611L320 343.805V160h48c8.822 0 16 7.178 16 16v128.86zM208 384c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16zm-96 0c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16z"], + "bell": [448, 512, [], "f0f3", "M433.884 366.059C411.634 343.809 384 316.118 384 208c0-79.394-57.831-145.269-133.663-157.83A31.845 31.845 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 6.75 2.095 13.008 5.663 18.17C121.831 62.731 64 128.606 64 208c0 108.118-27.643 135.809-49.893 158.059C-16.042 396.208 5.325 448 48.048 448H160c0 35.346 28.654 64 64 64s64-28.654 64-64h111.943c42.638 0 64.151-51.731 33.941-81.941zM224 472a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16c0 13.234 10.766 24 24 24z"], + "bell-slash": [576, 512, [], "f1f6", "M78.107 366.059C47.958 396.208 69.325 448 112.048 448H224c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h32.685L127.848 221.379c-2.198 97.078-28.439 123.378-49.741 144.68zM264 448c0 13.234 10.766 24 24 24a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16zm305.896 43.733l-10.762 12.086c-8.915 10.012-24.333 10.967-34.437 2.133L8.256 54.393C-1.848 45.558-2.811 30.28 6.104 20.267L16.865 8.181C25.781-1.831 41.199-2.786 51.303 6.049l113.81 99.512c24.017-28.778 57.946-48.996 96.55-55.39A31.85 31.85 0 0 1 256 32c0-17.673 14.327-32 32-32s32 14.327 32 32c0 6.75-2.095 13.008-5.663 18.17C390.169 62.731 448 128.606 448 208c0 108.118 27.634 135.809 49.884 158.059 12.149 12.149 15.923 27.776 13.33 42.121l56.53 49.427c10.104 8.835 11.067 24.113 2.152 34.126z"], + "bezier-curve": [640, 512, [], "f55b", "M368 32h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM208 88h-84.75C113.75 64.56 90.84 48 64 48 28.66 48 0 76.65 0 112s28.66 64 64 64c26.84 0 49.75-16.56 59.25-40h79.73c-55.37 32.52-95.86 87.32-109.54 152h49.4c11.3-41.61 36.77-77.21 71.04-101.56-3.7-8.08-5.88-16.99-5.88-26.44V88zm-48 232H64c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zM576 48c-26.84 0-49.75 16.56-59.25 40H432v72c0 9.45-2.19 18.36-5.88 26.44 34.27 24.35 59.74 59.95 71.04 101.56h49.4c-13.68-64.68-54.17-119.48-109.54-152h79.73c9.5 23.44 32.41 40 59.25 40 35.34 0 64-28.65 64-64s-28.66-64-64-64zm0 272h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"], + "bicycle": [640, 512, [], "f206", "M512.509 192.001c-16.373-.064-32.03 2.955-46.436 8.495l-77.68-125.153A24 24 0 0 0 368.001 64h-64c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h50.649l14.896 24H256.002v-16c0-8.837-7.163-16-16-16h-87.459c-13.441 0-24.777 10.999-24.536 24.437.232 13.044 10.876 23.563 23.995 23.563h48.726l-29.417 47.52c-13.433-4.83-27.904-7.483-42.992-7.52C58.094 191.83.412 249.012.002 319.236-.413 390.279 57.055 448 128.002 448c59.642 0 109.758-40.793 123.967-96h52.033a24 24 0 0 0 20.406-11.367L410.37 201.77l14.938 24.067c-25.455 23.448-41.385 57.081-41.307 94.437.145 68.833 57.899 127.051 126.729 127.719 70.606.685 128.181-55.803 129.255-125.996 1.086-70.941-56.526-129.72-127.476-129.996zM186.75 265.772c9.727 10.529 16.673 23.661 19.642 38.228h-43.306l23.664-38.228zM128.002 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c5.869 0 11.586.653 17.099 1.859l-45.505 73.509C89.715 331.327 101.213 352 120.002 352h81.3c-12.37 28.225-40.562 48-73.3 48zm162.63-96h-35.624c-3.96-31.756-19.556-59.894-42.383-80.026L237.371 184h127.547l-74.286 120zm217.057 95.886c-41.036-2.165-74.049-35.692-75.627-76.755-.812-21.121 6.633-40.518 19.335-55.263l44.433 71.586c4.66 7.508 14.524 9.816 22.032 5.156l13.594-8.437c7.508-4.66 9.817-14.524 5.156-22.032l-44.468-71.643a79.901 79.901 0 0 1 19.858-2.497c44.112 0 80 35.888 80 80-.001 45.54-38.252 82.316-84.313 79.885z"], + "binoculars": [512, 512, [], "f1e5", "M192 104H96V56c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24v48zm224-48c0-13.255-10.745-24-24-24h-48c-13.255 0-24 10.745-24 24v48h96V56zM0 456c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H0v16zm88-328c-13.255 0-24 10.745-24 24C64 256 0 272 0 416h168V312c0-13.255 10.745-24 24-24V128H88zm256 328c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H344v16zM216 128v160h80V128h-80zm128 288h168c0-144-64-160-64-264 0-13.255-10.745-24-24-24H320v160c13.255 0 24 10.745 24 24v104z"], + "birthday-cake": [448, 512, [], "f1fd", "M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z"], + "blender": [512, 512, [], "f517", "M416 384H160c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-128 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm40-416h166.54L512 0H48C21.49 0 0 21.49 0 48v160c0 26.51 21.49 48 48 48h103.27l8.73 96h256l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H328c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM64 192V64h69.82l11.64 128H64z"], + "blind": [384, 512, [], "f29d", "M380.15 510.837a8 8 0 0 1-10.989-2.687l-125.33-206.427a31.923 31.923 0 0 0 12.958-9.485l126.048 207.608a8 8 0 0 1-2.687 10.991zM142.803 314.338l-32.54 89.485 36.12 88.285c6.693 16.36 25.377 24.192 41.733 17.501 16.357-6.692 24.193-25.376 17.501-41.734l-62.814-153.537zM96 88c24.301 0 44-19.699 44-44S120.301 0 96 0 52 19.699 52 44s19.699 44 44 44zm154.837 169.128l-120-152c-4.733-5.995-11.75-9.108-18.837-9.112V96H80v.026c-7.146.003-14.217 3.161-18.944 9.24L0 183.766v95.694c0 13.455 11.011 24.791 24.464 24.536C37.505 303.748 48 293.1 48 280v-79.766l16-20.571v140.698L9.927 469.055c-6.04 16.609 2.528 34.969 19.138 41.009 16.602 6.039 34.968-2.524 41.009-19.138L136 309.638V202.441l-31.406-39.816a4 4 0 1 1 6.269-4.971l102.3 129.217c9.145 11.584 24.368 11.339 33.708 3.965 10.41-8.216 12.159-23.334 3.966-33.708z"], + "bold": [384, 512, [], "f032", "M304.793 243.891c33.639-18.537 53.657-54.16 53.657-95.693 0-48.236-26.25-87.626-68.626-104.179C265.138 34.01 240.849 32 209.661 32H24c-8.837 0-16 7.163-16 16v33.049c0 8.837 7.163 16 16 16h33.113v318.53H24c-8.837 0-16 7.163-16 16V464c0 8.837 7.163 16 16 16h195.69c24.203 0 44.834-1.289 66.866-7.584C337.52 457.193 376 410.647 376 350.014c0-52.168-26.573-91.684-71.207-106.123zM142.217 100.809h67.444c16.294 0 27.536 2.019 37.525 6.717 15.828 8.479 24.906 26.502 24.906 49.446 0 35.029-20.32 56.79-53.029 56.79h-76.846V100.809zm112.642 305.475c-10.14 4.056-22.677 4.907-31.409 4.907h-81.233V281.943h84.367c39.645 0 63.057 25.38 63.057 63.057.001 28.425-13.66 52.483-34.782 61.284z"], + "bolt": [320, 512, [], "f0e7", "M295.973 160H180.572L215.19 30.184C219.25 14.956 207.756 0 192 0H56C43.971 0 33.8 8.905 32.211 20.828l-31.996 240C-1.704 275.217 9.504 288 24.004 288h118.701L96.646 482.466C93.05 497.649 104.659 512 119.992 512c8.35 0 16.376-4.374 20.778-11.978l175.973-303.997c9.244-15.967-2.288-36.025-20.77-36.025z"], + "bomb": [512, 512, [], "f1e2", "M440.5 88.5l-52 52L415 167c9.4 9.4 9.4 24.6 0 33.9l-17.4 17.4c11.8 26.1 18.4 55.1 18.4 85.6 0 114.9-93.1 208-208 208S0 418.9 0 304 93.1 96 208 96c30.5 0 59.5 6.6 85.6 18.4L311 97c9.4-9.4 24.6-9.4 33.9 0l26.5 26.5 52-52 17.1 17zM500 60h-24c-6.6 0-12 5.4-12 12s5.4 12 12 12h24c6.6 0 12-5.4 12-12s-5.4-12-12-12zM440 0c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12s12-5.4 12-12V12c0-6.6-5.4-12-12-12zm33.9 55l17-17c4.7-4.7 4.7-12.3 0-17-4.7-4.7-12.3-4.7-17 0l-17 17c-4.7 4.7-4.7 12.3 0 17 4.8 4.7 12.4 4.7 17 0zm-67.8 0c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17zm67.8 34c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17zM112 272c0-35.3 28.7-64 64-64 8.8 0 16-7.2 16-16s-7.2-16-16-16c-52.9 0-96 43.1-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16z"], + "bong": [448, 512, [], "f55c", "M302.5 512c23.18 0 44.43-12.58 56-32.66C374.69 451.26 384 418.75 384 384c0-36.12-10.08-69.81-27.44-98.62L400 241.94l9.38 9.38c6.25 6.25 16.38 6.25 22.63 0l11.3-11.32c6.25-6.25 6.25-16.38 0-22.63l-52.69-52.69c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63l9.38 9.38-39.41 39.41c-11.56-11.37-24.53-21.33-38.65-29.51V63.74l15.97-.02c8.82-.01 15.97-7.16 15.98-15.98l.04-31.72C320 7.17 312.82-.01 303.97 0L80.03.26c-8.82.01-15.97 7.16-15.98 15.98l-.04 31.73c-.01 8.85 7.17 16.02 16.02 16.01L96 63.96v153.93C38.67 251.1 0 312.97 0 384c0 34.75 9.31 67.27 25.5 95.34C37.08 499.42 58.33 512 81.5 512h221zM120.06 259.43L144 245.56V63.91l96-.11v181.76l23.94 13.87c24.81 14.37 44.12 35.73 56.56 60.57h-257c12.45-24.84 31.75-46.2 56.56-60.57z"], + "book": [448, 512, [], "f02d", "M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z"], + "book-open": [576, 512, [], "f518", "M542.22 32.05c-54.8 3.11-163.72 14.43-230.96 55.59-4.64 2.84-7.27 7.89-7.27 13.17v363.87c0 11.55 12.63 18.85 23.28 13.49 69.18-34.82 169.23-44.32 218.7-46.92 16.89-.89 30.02-14.43 30.02-30.66V62.75c.01-17.71-15.35-31.74-33.77-30.7zM264.73 87.64C197.5 46.48 88.58 35.17 33.78 32.05 15.36 31.01 0 45.04 0 62.75V400.6c0 16.24 13.13 29.78 30.02 30.66 49.49 2.6 149.59 12.11 218.77 46.95 10.62 5.35 23.21-1.94 23.21-13.46V100.63c0-5.29-2.62-10.14-7.27-12.99z"], + "bookmark": [384, 512, [], "f02e", "M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z"], + "bowling-ball": [496, 512, [], "f436", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM120 192c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64-96c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm48 144c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "box": [512, 512, [], "f466", "M509.5 184.6L458.9 32.8C452.4 13.2 434.1 0 413.4 0H272v192h238.7c-.4-2.5-.4-5-1.2-7.4zM240 0H98.6c-20.7 0-39 13.2-45.5 32.8L2.5 184.6c-.8 2.4-.8 4.9-1.2 7.4H240V0zM0 224v240c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V224H0z"], + "box-open": [640, 512, [], "f49e", "M53.2 41L1.7 143.8c-4.6 9.2.3 20.2 10.1 23l197.9 56.5c7.1 2 14.7-1 18.5-7.3L320 64 69.8 32.1c-6.9-.8-13.5 2.7-16.6 8.9zm585.1 102.8L586.8 41c-3.1-6.2-9.8-9.8-16.7-8.9L320 64l91.7 152.1c3.8 6.3 11.4 9.3 18.5 7.3l197.9-56.5c9.9-2.9 14.7-13.9 10.2-23.1zM425.7 256c-16.9 0-32.8-9-41.4-23.4L320 126l-64.2 106.6c-8.7 14.5-24.6 23.5-41.5 23.5-4.5 0-9-.6-13.3-1.9L64 215v178c0 14.7 10 27.5 24.2 31l216.2 54.1c10.2 2.5 20.9 2.5 31 0L551.8 424c14.2-3.6 24.2-16.4 24.2-31V215l-137 39.1c-4.3 1.3-8.8 1.9-13.3 1.9z"], + "boxes": [576, 512, [], "f468", "M560 288h-80v96l-32-21.3-32 21.3v-96h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16zm-384-64h224c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16h-80v96l-32-21.3L256 96V0h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16zm64 64h-80v96l-32-21.3L96 384v-96H16c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16z"], + "braille": [640, 512, [], "f2a1", "M128 256c0 35.346-28.654 64-64 64S0 291.346 0 256s28.654-64 64-64 64 28.654 64 64zM64 384c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352C28.654 32 0 60.654 0 96s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm224 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-320c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"], + "briefcase": [512, 512, [], "f0b1", "M320 288h192v144c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V288h192v20c0 6.627 5.373 12 12 12h104c6.627 0 12-5.373 12-12v-20zm192-112v80H0v-80c0-26.51 21.49-48 48-48h80V80c0-26.51 21.49-48 48-48h160c26.51 0 48 21.49 48 48v48h80c26.51 0 48 21.49 48 48zM320 96H192v32h128V96z"], + "briefcase-medical": [512, 512, [], "f469", "M464 128h-80V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48zM192 96h128v32H192V96zm160 248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48z"], + "broadcast-tower": [640, 512, [], "f519", "M150.94 192h33.73c11.01 0 18.61-10.83 14.86-21.18-4.93-13.58-7.55-27.98-7.55-42.82s2.62-29.24 7.55-42.82C203.29 74.83 195.68 64 184.67 64h-33.73c-7.01 0-13.46 4.49-15.41 11.23C130.64 92.21 128 109.88 128 128c0 18.12 2.64 35.79 7.54 52.76 1.94 6.74 8.39 11.24 15.4 11.24zM89.92 23.34C95.56 12.72 87.97 0 75.96 0H40.63c-6.27 0-12.14 3.59-14.74 9.31C9.4 45.54 0 85.65 0 128c0 24.75 3.12 68.33 26.69 118.86 2.62 5.63 8.42 9.14 14.61 9.14h34.84c12.02 0 19.61-12.74 13.95-23.37-49.78-93.32-16.71-178.15-.17-209.29zM614.06 9.29C611.46 3.58 605.6 0 599.33 0h-35.42c-11.98 0-19.66 12.66-14.02 23.25 18.27 34.29 48.42 119.42.28 209.23-5.72 10.68 1.8 23.52 13.91 23.52h35.23c6.27 0 12.13-3.58 14.73-9.29C630.57 210.48 640 170.36 640 128s-9.42-82.48-25.94-118.71zM489.06 64h-33.73c-11.01 0-18.61 10.83-14.86 21.18 4.93 13.58 7.55 27.98 7.55 42.82s-2.62 29.24-7.55 42.82c-3.76 10.35 3.85 21.18 14.86 21.18h33.73c7.02 0 13.46-4.49 15.41-11.24 4.9-16.97 7.53-34.64 7.53-52.76 0-18.12-2.64-35.79-7.54-52.76-1.94-6.75-8.39-11.24-15.4-11.24zm-116.3 100.12c7.05-10.29 11.2-22.71 11.2-36.12 0-35.35-28.63-64-63.96-64-35.32 0-63.96 28.65-63.96 64 0 13.41 4.15 25.83 11.2 36.12l-130.5 313.41c-3.4 8.15.46 17.52 8.61 20.92l29.51 12.31c8.15 3.4 17.52-.46 20.91-8.61L244.96 384h150.07l49.2 118.15c3.4 8.16 12.76 12.01 20.91 8.61l29.51-12.31c8.15-3.4 12-12.77 8.61-20.92l-130.5-313.41zM271.62 320L320 203.81 368.38 320h-96.76z"], + "broom": [512, 512, [], "f51a", "M10.8 247.2C-.7 251.8-3.7 266.7 5 275.4l54.8 54.8 73.2-24.4-24.4 73.2 128 128c8.8 8.8 23.6 5.7 28.2-5.8l98.1-243.7-108.4-108.4-243.7 98.1zM507.3 27.3L484.7 4.7c-6.2-6.3-16.4-6.3-22.6 0L359.8 106.9l-40.4-40.4c-4.2-4.3-11.4-3-13.9 2.5l-27.2 58.6 106.1 106.1 58.6-27.2c5.4-2.5 6.7-9.7 2.5-13.9l-40.4-40.4L507.3 49.9c6.3-6.2 6.3-16.3 0-22.6z"], + "brush": [384, 512, [], "f55d", "M352 0H32C14.33 0 0 14.33 0 32v224h384V32c0-17.67-14.33-32-32-32zM0 320c0 35.35 28.66 64 64 64h64v64c0 35.35 28.66 64 64 64s64-28.65 64-64v-64h64c35.34 0 64-28.65 64-64v-32H0v32zm192 104c13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24s-24-10.75-24-24c0-13.26 10.75-24 24-24z"], + "bug": [512, 512, [], "f188", "M511.988 288.9c-.478 17.43-15.217 31.1-32.653 31.1H424v16c0 21.864-4.882 42.584-13.6 61.145l60.228 60.228c12.496 12.497 12.496 32.758 0 45.255-12.498 12.497-32.759 12.496-45.256 0l-54.736-54.736C345.886 467.965 314.351 480 280 480V236c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v244c-34.351 0-65.886-12.035-90.636-32.108l-54.736 54.736c-12.498 12.497-32.759 12.496-45.256 0-12.496-12.497-12.496-32.758 0-45.255l60.228-60.228C92.882 378.584 88 357.864 88 336v-16H32.666C15.23 320 .491 306.33.013 288.9-.484 270.816 14.028 256 32 256h56v-58.745l-46.628-46.628c-12.496-12.497-12.496-32.758 0-45.255 12.498-12.497 32.758-12.497 45.256 0L141.255 160h229.489l54.627-54.627c12.498-12.497 32.758-12.497 45.256 0 12.496 12.497 12.496 32.758 0 45.255L424 197.255V256h56c17.972 0 32.484 14.816 31.988 32.9zM257 0c-61.856 0-112 50.144-112 112h224C369 50.144 318.856 0 257 0z"], + "building": [448, 512, [], "f1ad", "M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z"], + "bullhorn": [576, 512, [], "f0a1", "M576 224c0-20.896-13.36-38.666-32-45.258V64c0-35.346-28.654-64-64-64-64.985 56-142.031 128-272 128H48c-26.51 0-48 21.49-48 48v96c0 26.51 21.49 48 48 48h43.263c-18.742 64.65 2.479 116.379 18.814 167.44 1.702 5.32 5.203 9.893 9.922 12.88 20.78 13.155 68.355 15.657 93.773 5.151 16.046-6.633 19.96-27.423 7.522-39.537-18.508-18.026-30.136-36.91-19.795-60.858a12.278 12.278 0 0 0-1.045-11.673c-16.309-24.679-3.581-62.107 28.517-72.752C346.403 327.887 418.591 395.081 480 448c35.346 0 64-28.654 64-64V269.258c18.64-6.592 32-24.362 32-45.258zm-96 139.855c-54.609-44.979-125.033-92.94-224-104.982v-69.747c98.967-12.042 169.391-60.002 224-104.982v279.711z"], + "bullseye": [512, 512, [], "f140", "M256 72c101.689 0 184 82.295 184 184 0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-101.689 82.295-184 184-184m0-64C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 184c35.29 0 64 28.71 64 64s-28.71 64-64 64-64-28.71-64-64 28.71-64 64-64m0-64c-70.692 0-128 57.308-128 128s57.308 128 128 128 128-57.308 128-128-57.308-128-128-128z"], + "burn": [384, 512, [], "f46a", "M192 0C79.7 101.3 0 220.9 0 300.5 0 425 79 512 192 512s192-87 192-211.5c0-79.9-80.2-199.6-192-300.5zm0 448c-56.5 0-96-39-96-94.8 0-13.5 4.6-61.5 96-161.2 91.4 99.7 96 147.7 96 161.2 0 55.8-39.5 94.8-96 94.8z"], + "bus": [512, 512, [], "f207", "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM112 400c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm16-112c-17.67 0-32-14.33-32-32V128c0-17.67 14.33-32 32-32h256c17.67 0 32 14.33 32 32v128c0 17.67-14.33 32-32 32H128zm272 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "bus-alt": [512, 512, [], "f55e", "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM160 72c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H168c-4.42 0-8-3.58-8-8V72zm-48 328c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm128-112H128c-17.67 0-32-14.33-32-32v-96c0-17.67 14.33-32 32-32h112v160zm32 0V128h112c17.67 0 32 14.33 32 32v96c0 17.67-14.33 32-32 32H272zm128 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "calculator": [448, 512, [], "f1ec", "M0 464V48C0 21.49 21.49 0 48 0h352c26.51 0 48 21.49 48 48v416c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm384-284V76c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v104c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12zM128 308v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm256 128V268c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-256 0v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm128-128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm0 128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"], + "calendar": [448, 512, [], "f133", "M12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm436-44v-36c0-26.5-21.5-48-48-48h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v36c0 6.6 5.4 12 12 12h424c6.6 0 12-5.4 12-12z"], + "calendar-alt": [448, 512, [], "f073", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm116 204c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40z"], + "calendar-check": [448, 512, [], "f274", "M436 160H12c-6.627 0-12-5.373-12-12v-36c0-26.51 21.49-48 48-48h48V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h128V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h48c26.51 0 48 21.49 48 48v36c0 6.627-5.373 12-12 12zM12 192h424c6.627 0 12 5.373 12 12v260c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V204c0-6.627 5.373-12 12-12zm333.296 95.947l-28.169-28.398c-4.667-4.705-12.265-4.736-16.97-.068L194.12 364.665l-45.98-46.352c-4.667-4.705-12.266-4.736-16.971-.068l-28.397 28.17c-4.705 4.667-4.736 12.265-.068 16.97l82.601 83.269c4.667 4.705 12.265 4.736 16.97.068l142.953-141.805c4.705-4.667 4.736-12.265.068-16.97z"], + "calendar-minus": [448, 512, [], "f272", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm304 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H132c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h184z"], + "calendar-plus": [448, 512, [], "f271", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm316 140c0-6.6-5.4-12-12-12h-60v-60c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v60h-60c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h60v60c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-60h60c6.6 0 12-5.4 12-12v-40z"], + "calendar-times": [448, 512, [], "f273", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm257.3 160l48.1-48.1c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0L224 306.7l-48.1-48.1c-4.7-4.7-12.3-4.7-17 0l-28.3 28.3c-4.7 4.7-4.7 12.3 0 17l48.1 48.1-48.1 48.1c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l48.1-48.1 48.1 48.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L269.3 352z"], + "camera": [512, 512, [], "f030", "M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z"], + "camera-retro": [512, 512, [], "f083", "M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm0 32h106c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H38c-3.3 0-6-2.7-6-6V80c0-8.8 7.2-16 16-16zm426 96H38c-3.3 0-6-2.7-6-6v-36c0-3.3 2.7-6 6-6h138l30.2-45.3c1.1-1.7 3-2.7 5-2.7H464c8.8 0 16 7.2 16 16v74c0 3.3-2.7 6-6 6zM256 424c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88zm-48 104c-8.8 0-16-7.2-16-16 0-35.3 28.7-64 64-64 8.8 0 16 7.2 16 16s-7.2 16-16 16c-17.6 0-32 14.4-32 32 0 8.8-7.2 16-16 16z"], + "cannabis": [512, 512, [], "f55f", "M503.47 360.25c-1.56-.82-32.39-16.89-76.78-25.81 64.25-75.12 84.05-161.67 84.93-165.64 1.18-5.33-.44-10.9-4.3-14.77-3.03-3.04-7.12-4.7-11.32-4.7-1.14 0-2.29.12-3.44.38-3.88.85-86.54 19.59-160.58 79.76.01-1.46.01-2.93.01-4.4 0-118.79-59.98-213.72-62.53-217.7A15.973 15.973 0 0 0 256 0c-5.45 0-10.53 2.78-13.47 7.37-2.55 3.98-62.53 98.91-62.53 217.7 0 1.47.01 2.94.01 4.4-74.03-60.16-156.69-78.9-160.58-79.76-1.14-.25-2.29-.38-3.44-.38-4.2 0-8.29 1.66-11.32 4.7A15.986 15.986 0 0 0 .38 168.8c.88 3.97 20.68 90.52 84.93 165.64-44.39 8.92-75.21 24.99-76.78 25.81a16.003 16.003 0 0 0-.02 28.29c2.45 1.29 60.76 31.72 133.49 31.72 6.14 0 11.96-.1 17.5-.31-11.37 22.23-16.52 38.31-16.81 39.22-1.8 5.68-.29 11.89 3.91 16.11a16.019 16.019 0 0 0 16.1 3.99c1.83-.57 37.72-11.99 77.3-39.29V504c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8v-64.01c39.58 27.3 75.47 38.71 77.3 39.29a16.019 16.019 0 0 0 16.1-3.99c4.2-4.22 5.71-10.43 3.91-16.11-.29-.91-5.45-16.99-16.81-39.22 5.54.21 11.37.31 17.5.31 72.72 0 131.04-30.43 133.49-31.72 5.24-2.78 8.52-8.22 8.51-14.15-.01-5.94-3.29-11.39-8.53-14.15z"], + "capsules": [576, 512, [], "f46b", "M555.3 300.1L424.2 112.8C401.9 81 366.4 64 330.4 64c-22.6 0-45.5 6.7-65.5 20.7-19.7 13.8-33.7 32.8-41.5 53.8C220.5 79.2 172 32 112 32 50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V218.9c3.3 8.6 7.3 17.1 12.8 25L368 431.2c22.2 31.8 57.7 48.8 93.8 48.8 22.7 0 45.5-6.7 65.5-20.7 51.7-36.2 64.2-107.5 28-159.2zM160 256H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm194.8 44.9l-65.6-93.7c-7.7-11-10.7-24.4-8.3-37.6 2.3-13.2 9.7-24.8 20.7-32.5 8.5-6 18.5-9.1 28.8-9.1 16.5 0 31.9 8 41.3 21.5l65.6 93.7-82.5 57.7z"], + "car": [512, 512, [], "f1b9", "M499.991 168h-54.815l-7.854-20.944c-9.192-24.513-25.425-45.351-46.942-60.263S343.651 64 317.472 64H194.528c-26.18 0-51.391 7.882-72.908 22.793-21.518 14.912-37.75 35.75-46.942 60.263L66.824 168H12.009c-8.191 0-13.974 8.024-11.384 15.795l8 24A12 12 0 0 0 20.009 216h28.815l-.052.14C29.222 227.093 16 247.997 16 272v48c0 16.225 6.049 31.029 16 42.309V424c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-40h256v40c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-61.691c9.951-11.281 16-26.085 16-42.309v-48c0-24.003-13.222-44.907-32.772-55.86l-.052-.14h28.815a12 12 0 0 0 11.384-8.205l8-24c2.59-7.771-3.193-15.795-11.384-15.795zm-365.388 1.528C143.918 144.689 168 128 194.528 128h122.944c26.528 0 50.61 16.689 59.925 41.528L391.824 208H120.176l14.427-38.472zM88 328c-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32s48 30.327 48 48-30.327 16-48 16zm336 0c-17.673 0-48 1.673-48-16 0-17.673 30.327-48 48-48s32 14.327 32 32c0 17.673-14.327 32-32 32z"], + "caret-down": [320, 512, [], "f0d7", "M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z"], + "caret-left": [192, 512, [], "f0d9", "M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z"], + "caret-right": [192, 512, [], "f0da", "M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z"], + "caret-square-down": [448, 512, [], "f150", "M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM92.5 220.5l123 123c4.7 4.7 12.3 4.7 17 0l123-123c7.6-7.6 2.2-20.5-8.5-20.5H101c-10.7 0-16.1 12.9-8.5 20.5z"], + "caret-square-left": [448, 512, [], "f191", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM259.515 124.485l-123.03 123.03c-4.686 4.686-4.686 12.284 0 16.971l123.029 123.029c7.56 7.56 20.485 2.206 20.485-8.485V132.971c.001-10.691-12.925-16.045-20.484-8.486z"], + "caret-square-right": [448, 512, [], "f152", "M48 32h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48zm140.485 355.515l123.029-123.029c4.686-4.686 4.686-12.284 0-16.971l-123.029-123.03c-7.56-7.56-20.485-2.206-20.485 8.485v246.059c0 10.691 12.926 16.045 20.485 8.486z"], + "caret-square-up": [448, 512, [], "f151", "M0 432V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm355.515-140.485l-123.03-123.03c-4.686-4.686-12.284-4.686-16.971 0L92.485 291.515c-7.56 7.56-2.206 20.485 8.485 20.485h246.059c10.691 0 16.045-12.926 8.486-20.485z"], + "caret-up": [320, 512, [], "f0d8", "M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z"], + "cart-arrow-down": [576, 512, [], "f218", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z"], + "cart-plus": [576, 512, [], "f217", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM408 168h-48v-40c0-8.837-7.163-16-16-16h-16c-8.837 0-16 7.163-16 16v40h-48c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h48v40c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-40h48c8.837 0 16-7.163 16-16v-16c0-8.837-7.163-16-16-16z"], + "certificate": [512, 512, [], "f0a3", "M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z"], + "chalkboard": [640, 512, [], "f51b", "M96 64h448v352h64V40c0-22.06-17.94-40-40-40H72C49.94 0 32 17.94 32 40v376h64V64zm528 384H480v-64H288v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"], + "chalkboard-teacher": [640, 512, [], "f51c", "M208 352c-2.39 0-4.78.35-7.06 1.09C187.98 357.3 174.35 360 160 360c-14.35 0-27.98-2.7-40.95-6.91-2.28-.74-4.66-1.09-7.05-1.09C49.94 352-.33 402.48 0 464.62.14 490.88 21.73 512 48 512h224c26.27 0 47.86-21.12 48-47.38.33-62.14-49.94-112.62-112-112.62zm-48-32c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM592 0H208c-26.47 0-48 22.25-48 49.59V96c23.42 0 45.1 6.78 64 17.8V64h352v288h-64v-64H384v64h-76.24c19.1 16.69 33.12 38.73 39.69 64H592c26.47 0 48-22.25 48-49.59V49.59C640 22.25 618.47 0 592 0z"], + "chart-area": [512, 512, [], "f1fe", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z"], + "chart-bar": [512, 512, [], "f080", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zm-308-44v-72c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V204c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V108c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"], + "chart-line": [512, 512, [], "f201", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM456 96H344c-21.4 0-32.1 25.9-17 41l32.9 32.9-72 72.9-55.6-55.6c-4.7-4.7-12.2-4.7-16.9 0L96.4 305c-4.7 4.6-4.8 12.2-.2 16.9l28.5 29.4c4.7 4.8 12.4 4.9 17.1.1l82.1-82.1 55.5 55.5c4.7 4.7 12.3 4.7 17 0l109.2-109.2L439 249c15.1 15.1 41 4.4 41-17V120c0-13.3-10.7-24-24-24z"], + "chart-pie": [576, 512, [], "f200", "M288 12.3V240h227.7c6.9 0 12.3-5.8 12-12.7-6.4-122.4-104.5-220.6-227-227-6.9-.3-12.7 5.1-12.7 12zM552.7 288c6.9 0 12.3 5.8 12 12.7-2.8 53.2-23.2 105.6-61.2 147.8-4.6 5.1-12.6 5.4-17.5.5L325 288h227.7zM401 433c4.8 4.8 4.7 12.8-.4 17.3-42.6 38.4-99 61.7-160.8 61.7C107.6 511.9-.2 403.8 0 271.5.2 143.4 100.8 38.9 227.3 32.3c6.9-.4 12.7 5.1 12.7 12V272l161 161z"], + "check": [512, 512, [], "f00c", "M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"], + "check-circle": [512, 512, [], "f058", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"], + "check-double": [512, 512, [], "f560", "M504.5 171.95l-36.2-36.41c-10-10.05-26.21-10.05-36.2 0L192 377.02 79.9 264.28c-10-10.06-26.21-10.06-36.2 0L7.5 300.69c-10 10.05-10 26.36 0 36.41l166.4 167.36c10 10.06 26.21 10.06 36.2 0l294.4-296.09c10-10.06 10-26.36 0-36.42zM166.57 282.71c6.84 7.02 18.18 7.02 25.21.18L403.85 72.62c7.02-6.84 7.02-18.18.18-25.21L362.08 5.29c-6.84-7.02-18.18-7.02-25.21-.18L179.71 161.19l-68.23-68.77c-6.84-7.02-18.18-7.02-25.2-.18l-42.13 41.77c-7.02 6.84-7.02 18.18-.18 25.2l122.6 123.5z"], + "check-square": [448, 512, [], "f14a", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"], + "chess": [512, 512, [], "f439", "M199.821 217.633a6 6 0 0 1 6 6l-.001 20.766a6 6 0 0 1-6 6h-25.805c0 31.715-2.153 96.201 17.398 153.229H64.597C84.54 345.452 82.02 279.245 82.02 250.399H56.183a6 6 0 0 1-6-6l.002-20.766a6 6 0 0 1 6-6h143.636zM41.554 115.088l34.58 95.071h103.734l34.572-95.072c2.846-7.826-2.95-16.101-11.278-16.101H152v-30.22h21.57a6 6 0 0 0 6-6V40.383a6 6 0 0 0-6-6h-28.367V6a6 6 0 0 0-6-6H116.82a6 6 0 0 0-6 6v28.383H82.421a6 6 0 0 0-6 6v22.383a6 6 0 0 0 6 6H104v30.219H52.831c-8.328.001-14.124 8.276-11.277 16.103zM222.678 445.17v-28.067a6 6 0 0 0-6-6H39.322a6 6 0 0 0-6 6v28.067l-22.148 14.164a6 6 0 0 0-2.767 5.055V506a6 6 0 0 0 6 6h227.187a6 6 0 0 0 6-6v-41.612a6 6 0 0 0-2.767-5.055l-22.149-14.163zm90.578-144.225l24.88 16.963c.09 18.124-.167 63.904-11.905 114.522h147.526c-11.713-50.475-11.969-96.324-11.882-114.537l24.859-16.949a3.856 3.856 0 0 0 1.684-3.187v-69.901a3.857 3.857 0 0 0-3.857-3.857h-27.655a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.858-3.857h-52.918a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.857-3.857H315.43a3.857 3.857 0 0 0-3.857 3.857v69.901a3.855 3.855 0 0 0 1.683 3.188zm71.585 51.906c0-8.372 6.787-15.158 15.159-15.158s15.158 6.787 15.158 15.158v30.318h-30.317v-30.318zM504.62 470.059l-13.664-10.639v-15.552a3.857 3.857 0 0 0-3.857-3.857H312.915a3.857 3.857 0 0 0-3.857 3.857v15.552l-13.677 10.639a3.857 3.857 0 0 0-1.488 3.044v35.039a3.857 3.857 0 0 0 3.857 3.857h204.5a3.857 3.857 0 0 0 3.857-3.857v-35.04a3.859 3.859 0 0 0-1.487-3.043z"], + "chess-bishop": [320, 512, [], "f43a", "M123.158 77.881C107.369 72.53 96 57.597 96 40c0-22.091 17.909-40 40-40h47.796c22.091 0 40 17.909 40 40 0 17.541-11.295 32.434-27.005 37.829 23.993 16.657 48.577 46.839 68.703 82.05L144.929 280.443a6 6 0 0 0 0 8.485l14.142 14.142a6 6 0 0 0 8.485 0L280.9 189.726c17.758 38.297 29.371 79.443 29.371 114.273 0 53.786-22.897 75.788-58.446 86.033V448H68.174v-57.97C32.631 379.784 9.739 357.781 9.739 304c0-78.029 58.281-187.766 113.419-226.119zM320 500v-24c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12z"], + "chess-board": [512, 512, [], "f43c", "M256 256v64h-64v-64h64zm0-256h-64v64h64V0zm0 256h64v-64h-64v64zM384 0h-64v64h64V0zm0 512h64v-64h-64v64zm128-64v-64h-64v64h64zm-384 64h64v-64h-64v64zm0-512H64v64h64V0zm384 192v-64h-64v64h64zm0 128v-64h-64v64h64zM0 512h64v-64H0v64zM0 64v64h64V64H0zm0 128v64h64v-64H0zm0 128v64h64v-64H0zm256 192h64v-64h-64v64zm-64-128v64h64v-64h-64zm64-192v-64h-64v64h64zM64 384v64h64v-64H64zm64-128H64v64h64v-64zm256 128h64v-64h-64v64zM512 0h-64v64h64V0zM384 256h64v-64h-64v64zm0-192v64h64V64h-64zm-64 320v64h64v-64h-64zm-192-64v64h64v-64h-64zm128 0v64h64v-64h-64zm-64-128h-64v64h64v-64zm-64-64H64v64h64v-64zm192 192h64v-64h-64v64zM192 128V64h-64v64h64zm128 0V64h-64v64h64zm0 64h64v-64h-64v64z"], + "chess-king": [448, 512, [], "f43f", "M416 476v24c0 6.627-5.373 12-12 12H44c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12zm-8.033-324H248v-48h50a6 6 0 0 0 6-6V62a6 6 0 0 0-6-6h-50V6a6 6 0 0 0-6-6h-36a6 6 0 0 0-6 6v50h-50a6 6 0 0 0-6 6v36a6 6 0 0 0 6 6h50v48H40.033c-27.574 0-46.879 27.244-37.738 53.259L87.582 448h272.836l85.287-242.741C454.846 179.244 435.541 152 407.967 152z"], + "chess-knight": [384, 512, [], "f441", "M352 224v224H32v-46.557c0-30.302 17.12-58.003 44.223-71.554l57.243-28.622A48 48 0 0 0 160 258.334V208l-22.127 11.063a23.996 23.996 0 0 0-12.55 15.645l-11.835 47.338a12 12 0 0 1-7.185 8.231l-29.601 11.84a11.998 11.998 0 0 1-9.33-.176L7.126 275.167A12 12 0 0 1 0 264.201v-158.26c0-6.365 2.529-12.47 7.03-16.971L16 80 1.789 51.578A16.937 16.937 0 0 1 0 44c0-6.627 5.373-12 12-12h148c106.039 0 192 85.961 192 192zm20 240H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12zM52 128c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z"], + "chess-pawn": [320, 512, [], "f443", "M264 448H56s60-42.743 60-176H84c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h40.209C95.721 210.56 76 181.588 76 148c0-46.392 37.608-84 84-84s84 37.608 84 84c0 33.588-19.721 62.56-48.209 76H236c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12h-32c0 133.257 60 176 60 176zm28 16H28c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h264c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12z"], + "chess-queen": [512, 512, [], "f445", "M436 512H76c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12zM255.579 0c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zm204.568 154.634c-5.768-3.045-12.916-.932-16.082 4.77-8.616 15.516-22.747 37.801-44.065 37.801-28.714 0-30.625-19.804-31.686-57.542-.183-6.492-5.501-11.664-11.995-11.664h-41.006c-5.175 0-9.754 3.328-11.388 8.238-8.89 26.709-26.073 40.992-47.925 40.992s-39.034-14.283-47.925-40.992c-1.634-4.91-6.213-8.238-11.388-8.238h-41.005c-6.495 0-11.813 5.174-11.995 11.667-1.052 37.642-2.934 57.539-31.688 57.539-20.691 0-33.817-20.224-44.425-38.025-3.266-5.48-10.258-7.431-15.899-4.453l-39.179 20.679a12 12 0 0 0-5.51 15.145L112 448h288l105.014-257.448a12 12 0 0 0-5.51-15.145l-39.357-20.773z"], + "chess-rook": [384, 512, [], "f447", "M81.241 215.027C80.957 258.92 77.411 348.076 48 448h287.982c-29.4-99.604-32.936-188.912-33.221-232.975l45.418-42.312a11.998 11.998 0 0 0 3.82-8.78V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v44h-48V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v44H96V44c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v119.932c0 3.33 1.384 6.51 3.82 8.78l45.421 42.315zM160 256c0-17.673 14.327-32 32-32 17.673 0 32 14.327 32 32v64.004h-64V256zm224 220v24c0 6.627-5.373 12-12 12H12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12z"], + "chevron-circle-down": [512, 512, [], "f13a", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM273 369.9l135.5-135.5c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L256 285.1 154.4 183.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L239 369.9c9.4 9.4 24.6 9.4 34 0z"], + "chevron-circle-left": [512, 512, [], "f137", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z"], + "chevron-circle-right": [512, 512, [], "f138", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z"], + "chevron-circle-up": [512, 512, [], "f139", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm231-113.9L103.5 277.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L256 226.9l101.6 101.6c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L273 142.1c-9.4-9.4-24.6-9.4-34 0z"], + "chevron-down": [448, 512, [], "f078", "M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"], + "chevron-left": [320, 512, [], "f053", "M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z"], + "chevron-right": [320, 512, [], "f054", "M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z"], + "chevron-up": [448, 512, [], "f077", "M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z"], + "child": [384, 512, [], "f1ae", "M120 72c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.764-32.235 72-72 72s-72-32.236-72-72zm254.627 1.373c-12.496-12.497-32.758-12.497-45.254 0L242.745 160H141.254L54.627 73.373c-12.496-12.497-32.758-12.497-45.254 0-12.497 12.497-12.497 32.758 0 45.255L104 213.254V480c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V368h16v112c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V213.254l94.627-94.627c12.497-12.497 12.497-32.757 0-45.254z"], + "church": [640, 512, [], "f51d", "M464.46 246.68L352 179.2V128h48c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-48V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v48h-48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v51.2l-112.46 67.48A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.65-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.54A32.024 32.024 0 0 0 0 395.96zm620.61-29.42L512 320v192h112c8.84 0 16-7.16 16-16V395.96c0-12.8-7.63-24.37-19.39-29.42z"], + "circle": [512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"], + "circle-notch": [512, 512, [], "f1ce", "M288 39.056v16.659c0 10.804 7.281 20.159 17.686 23.066C383.204 100.434 440 171.518 440 256c0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-84.47 56.786-155.564 134.312-177.219C216.719 75.874 224 66.517 224 55.712V39.064c0-15.709-14.834-27.153-30.046-23.234C86.603 43.482 7.394 141.206 8.003 257.332c.72 137.052 111.477 246.956 248.531 246.667C393.255 503.711 504 392.788 504 256c0-115.633-79.14-212.779-186.211-240.236C302.678 11.889 288 23.456 288 39.056z"], + "clipboard": [384, 512, [], "f328", "M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z"], + "clipboard-check": [384, 512, [], "f46c", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm121.2 231.8l-143 141.8c-4.7 4.7-12.3 4.6-17-.1l-82.6-83.3c-4.7-4.7-4.6-12.3.1-17L99.1 285c4.7-4.7 12.3-4.6 17 .1l46 46.4 106-105.2c4.7-4.7 12.3-4.6 17 .1l28.2 28.4c4.7 4.8 4.6 12.3-.1 17z"], + "clipboard-list": [384, 512, [], "f46d", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM96 424c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm96-192c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm128 368c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z"], + "clock": [512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm57.1 350.1L224.9 294c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v137.7l63.5 46.2c5.4 3.9 6.5 11.4 2.6 16.8l-28.2 38.8c-3.9 5.3-11.4 6.5-16.8 2.6z"], + "clone": [512, 512, [], "f24d", "M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z"], + "closed-captioning": [512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM218.1 287.7c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2.1 48 51.1 70.5 92.3 32.6zm190.4 0c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.5 56.9-172.7 32.1-172.7-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 222.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6z"], + "cloud": [640, 512, [], "f0c2", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z"], + "cloud-download-alt": [640, 512, [], "f381", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z"], + "cloud-upload-alt": [640, 512, [], "f382", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z"], + "cocktail": [576, 512, [], "f561", "M296 464h-56V338.78l168.74-168.73c15.52-15.52 4.53-42.05-17.42-42.05H24.68c-21.95 0-32.94 26.53-17.42 42.05L176 338.78V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM432 0c-62.61 0-115.35 40.2-135.18 96h52.54c16.65-28.55 47.27-48 82.64-48 52.93 0 96 43.06 96 96s-43.07 96-96 96c-14.04 0-27.29-3.2-39.32-8.64l-35.26 35.26C379.23 279.92 404.59 288 432 288c79.53 0 144-64.47 144-144S511.53 0 432 0z"], + "code": [640, 512, [], "f121", "M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"], + "code-branch": [384, 512, [], "f126", "M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"], + "coffee": [640, 512, [], "f0f4", "M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z"], + "cog": [512, 512, [], "f013", "M444.788 291.1l42.616 24.599c4.867 2.809 7.126 8.618 5.459 13.985-11.07 35.642-29.97 67.842-54.689 94.586a12.016 12.016 0 0 1-14.832 2.254l-42.584-24.595a191.577 191.577 0 0 1-60.759 35.13v49.182a12.01 12.01 0 0 1-9.377 11.718c-34.956 7.85-72.499 8.256-109.219.007-5.49-1.233-9.403-6.096-9.403-11.723v-49.184a191.555 191.555 0 0 1-60.759-35.13l-42.584 24.595a12.016 12.016 0 0 1-14.832-2.254c-24.718-26.744-43.619-58.944-54.689-94.586-1.667-5.366.592-11.175 5.459-13.985L67.212 291.1a193.48 193.48 0 0 1 0-70.199l-42.616-24.599c-4.867-2.809-7.126-8.618-5.459-13.985 11.07-35.642 29.97-67.842 54.689-94.586a12.016 12.016 0 0 1 14.832-2.254l42.584 24.595a191.577 191.577 0 0 1 60.759-35.13V25.759a12.01 12.01 0 0 1 9.377-11.718c34.956-7.85 72.499-8.256 109.219-.007 5.49 1.233 9.403 6.096 9.403 11.723v49.184a191.555 191.555 0 0 1 60.759 35.13l42.584-24.595a12.016 12.016 0 0 1 14.832 2.254c24.718 26.744 43.619 58.944 54.689 94.586 1.667 5.366-.592 11.175-5.459 13.985L444.788 220.9a193.485 193.485 0 0 1 0 70.2zM336 256c0-44.112-35.888-80-80-80s-80 35.888-80 80 35.888 80 80 80 80-35.888 80-80z"], + "cogs": [640, 512, [], "f085", "M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z"], + "coins": [512, 512, [], "f51e", "M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z"], + "columns": [512, 512, [], "f0db", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z"], + "comment": [512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32z"], + "comment-alt": [512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 9.8 11.2 15.5 19.1 9.7L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z"], + "comment-dots": [512, 512, [], "f4ad", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "comment-slash": [640, 512, [], "f4b3", "M64 240c0 49.6 21.4 95 57 130.7-12.6 50.3-54.3 95.2-54.8 95.8-2.2 2.3-2.8 5.7-1.5 8.7 1.3 2.9 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 27.4 0 53.7-3.6 78.4-10L72.9 186.4c-5.6 17.1-8.9 35-8.9 53.6zm569.8 218.1l-114.4-88.4C554.6 334.1 576 289.2 576 240c0-114.9-114.6-208-256-208-65.1 0-124.2 20.1-169.4 52.7L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z"], + "comments": [576, 512, [], "f086", "M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z"], + "compact-disc": [496, 512, [], "f51f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 256H56c0-105.9 86.1-192 192-192v32c-88.2 0-160 71.8-160 160zm160 96c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"], + "compass": [512, 512, [], "f14e", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM307.446 120.844l-102.642 97.779a23.997 23.997 0 0 0-6.772 11.729l-33.359 137.779c-5.68 23.459 22.777 39.318 39.88 23.024l102.64-97.779a23.99 23.99 0 0 0 6.772-11.729l33.359-137.779c5.618-23.198-22.591-39.493-39.878-23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"], + "compress": [448, 512, [], "f066", "M436 192H312c-13.3 0-24-10.7-24-24V44c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-276-24V44c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v84H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 300V344c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-84h84c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H312c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"], + "concierge-bell": [512, 512, [], "f562", "M288 130.54V112h16c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h16v18.54C115.49 146.11 32 239.18 32 352h448c0-112.82-83.49-205.89-192-221.46zM496 384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"], + "cookie": [512, 512, [], "f563", "M510.37 254.79l-12.08-76.26a132.493 132.493 0 0 0-37.16-72.95l-54.76-54.75c-19.73-19.72-45.18-32.7-72.71-37.05l-76.7-12.15c-27.51-4.36-55.69.11-80.52 12.76L107.32 49.6a132.25 132.25 0 0 0-57.79 57.8l-35.1 68.88a132.602 132.602 0 0 0-12.82 80.94l12.08 76.27a132.493 132.493 0 0 0 37.16 72.95l54.76 54.75a132.087 132.087 0 0 0 72.71 37.05l76.7 12.14c27.51 4.36 55.69-.11 80.52-12.75l69.12-35.21a132.302 132.302 0 0 0 57.79-57.8l35.1-68.87c12.71-24.96 17.2-53.3 12.82-80.96zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "cookie-bite": [512, 512, [], "f564", "M510.52 255.82c-69.97-.85-126.47-57.69-126.47-127.86-70.17 0-127-56.49-127.86-126.45-27.26-4.14-55.13.3-79.72 12.82l-69.13 35.22a132.221 132.221 0 0 0-57.79 57.81l-35.1 68.88a132.645 132.645 0 0 0-12.82 80.95l12.08 76.27a132.521 132.521 0 0 0 37.16 72.96l54.77 54.76a132.036 132.036 0 0 0 72.71 37.06l76.71 12.15c27.51 4.36 55.7-.11 80.53-12.76l69.13-35.21a132.273 132.273 0 0 0 57.79-57.81l35.1-68.88c12.56-24.64 17.01-52.58 12.91-79.91zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "copy": [448, 512, [], "f0c5", "M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z"], + "copyright": [512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm117.134 346.753c-1.592 1.867-39.776 45.731-109.851 45.731-84.692 0-144.484-63.26-144.484-145.567 0-81.303 62.004-143.401 143.762-143.401 66.957 0 101.965 37.315 103.422 38.904a12 12 0 0 1 1.238 14.623l-22.38 34.655c-4.049 6.267-12.774 7.351-18.234 2.295-.233-.214-26.529-23.88-61.88-23.88-46.116 0-73.916 33.575-73.916 76.082 0 39.602 25.514 79.692 74.277 79.692 38.697 0 65.28-28.338 65.544-28.625 5.132-5.565 14.059-5.033 18.508 1.053l24.547 33.572a12.001 12.001 0 0 1-.553 14.866z"], + "couch": [640, 512, [], "f4b8", "M160 224v64h320v-64c0-35.3 28.7-64 64-64h32c0-53-43-96-96-96H160c-53 0-96 43-96 96h32c35.3 0 64 28.7 64 64zm416-32h-32c-17.7 0-32 14.3-32 32v96H128v-96c0-17.7-14.3-32-32-32H64c-35.3 0-64 28.7-64 64 0 23.6 13 44 32 55.1V432c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-16h384v16c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V311.1c19-11.1 32-31.5 32-55.1 0-35.3-28.7-64-64-64z"], + "credit-card": [576, 512, [], "f09d", "M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V256H0v176zm192-68c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-40zm-128 0c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM576 80v48H0V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48z"], + "crop": [512, 512, [], "f125", "M488 352h-40V109.25l59.31-59.31c6.25-6.25 6.25-16.38 0-22.63L484.69 4.69c-6.25-6.25-16.38-6.25-22.63 0L402.75 64H192v96h114.75L160 306.75V24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v264c0 13.25 10.75 24 24 24h232v-96H205.25L352 205.25V488c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"], + "crop-alt": [512, 512, [], "f565", "M488 352h-40V96c0-17.67-14.33-32-32-32H192v96h160v328c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24zM160 24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v256c0 17.67 14.33 32 32 32h224v-96H160V24z"], + "crosshairs": [512, 512, [], "f05b", "M500 224h-30.364C455.724 130.325 381.675 56.276 288 42.364V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v30.364C130.325 56.276 56.276 130.325 42.364 224H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h30.364C56.276 381.675 130.325 455.724 224 469.636V500c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-30.364C381.675 455.724 455.724 381.675 469.636 288H500c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zM288 404.634V364c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40.634C165.826 392.232 119.783 346.243 107.366 288H148c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40.634C119.768 165.826 165.757 119.783 224 107.366V148c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40.634C346.174 119.768 392.217 165.757 404.634 224H364c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40.634C392.232 346.174 346.243 392.217 288 404.634zM288 256c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z"], + "crow": [640, 512, [], "f520", "M544 32h-16.36C513.04 12.68 490.09 0 464 0c-44.18 0-80 35.82-80 80v20.98L12.09 393.57A30.216 30.216 0 0 0 0 417.74c0 22.46 23.64 37.07 43.73 27.03L165.27 384h96.49l44.41 120.1c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38L312.94 384H352c1.91 0 3.76-.23 5.66-.29l44.51 120.38c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38l-41.24-111.53C485.74 352.8 544 279.26 544 192v-80l96-16c0-35.35-42.98-64-96-64zm-80 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"], + "crown": [640, 512, [], "f521", "M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.4 7.7-.8L128 416h384l72.3-192.8c2.5.4 5.1.8 7.7.8 26.5 0 48-21.5 48-48s-21.5-48-48-48z"], + "cube": [512, 512, [], "f1b2", "M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z"], + "cubes": [512, 512, [], "f1b3", "M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z"], + "cut": [448, 512, [], "f0c4", "M278.06 256L444.48 89.57c4.69-4.69 4.69-12.29 0-16.97-32.8-32.8-85.99-32.8-118.79 0L210.18 188.12l-24.86-24.86c4.31-10.92 6.68-22.81 6.68-35.26 0-53.02-42.98-96-96-96S0 74.98 0 128s42.98 96 96 96c4.54 0 8.99-.32 13.36-.93L142.29 256l-32.93 32.93c-4.37-.61-8.83-.93-13.36-.93-53.02 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96c0-12.45-2.37-24.34-6.68-35.26l24.86-24.86L325.69 439.4c32.8 32.8 85.99 32.8 118.79 0 4.69-4.68 4.69-12.28 0-16.97L278.06 256zM96 160c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32zm0 256c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z"], + "database": [448, 512, [], "f1c0", "M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z"], + "deaf": [512, 512, [], "f2a4", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm268.485-52.201L480.2 3.515c-4.687-4.686-12.284-4.686-16.971 0L376.2 90.544c-4.686 4.686-4.686 12.284 0 16.971l28.285 28.285c4.686 4.686 12.284 4.686 16.97 0l87.03-87.029c4.687-4.688 4.687-12.286 0-16.972zM168.97 314.745c-4.686-4.686-12.284-4.686-16.97 0L3.515 463.23c-4.686 4.686-4.686 12.284 0 16.971L31.8 508.485c4.687 4.686 12.284 4.686 16.971 0L197.256 360c4.686-4.686 4.686-12.284 0-16.971l-28.286-28.284z"], + "desktop": [576, 512, [], "f108", "M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z"], + "diagnoses": [640, 512, [], "f470", "M496 256c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm-176-80c48.5 0 88-39.5 88-88S368.5 0 320 0s-88 39.5-88 88 39.5 88 88 88zM59.8 364c10.2 15.3 29.3 17.8 42.9 9.8 16.2-9.6 56.2-31.7 105.3-48.6V416h224v-90.7c49.1 16.8 89.1 39 105.3 48.6 13.6 8 32.7 5.3 42.9-9.8l17.8-26.7c8.8-13.2 7.6-34.6-10-45.1-11.9-7.1-29.7-17-51.1-27.4-28.1 46.1-99.4 17.8-87.7-35.1C409.3 217.2 365.1 208 320 208c-57 0-112.9 14.5-160 32.2-.2 40.2-47.6 63.3-79.2 36-11.2 6-21.3 11.6-28.7 16-17.6 10.5-18.8 31.8-10 45.1L59.8 364zM368 344c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-160 8c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm512 192H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z"], + "dice": [640, 512, [], "f522", "M592 192H473.26c12.69 29.59 7.12 65.2-17 89.32L320 417.58V464c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48V240c0-26.51-21.49-48-48-48zM480 376c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm-46.37-186.7L258.7 14.37c-19.16-19.16-50.23-19.16-69.39 0L14.37 189.3c-19.16 19.16-19.16 50.23 0 69.39L189.3 433.63c19.16 19.16 50.23 19.16 69.39 0L433.63 258.7c19.16-19.17 19.16-50.24 0-69.4zM96 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"], + "dice-five": [448, 512, [], "f523", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "dice-four": [448, 512, [], "f524", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "dice-one": [448, 512, [], "f525", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM224 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "dice-six": [448, 512, [], "f526", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "dice-three": [448, 512, [], "f527", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "dice-two": [448, 512, [], "f528", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "digital-tachograph": [640, 512, [], "f566", "M608 96H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128c0-17.67-14.33-32-32-32zM304 352c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8zM72 288v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H80c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm40-64c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-48c0-8.84 7.16-16 16-16h208c8.84 0 16 7.16 16 16v48zm272 128c0 4.42-3.58 8-8 8H344c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8z"], + "divide": [448, 512, [], "f529", "M224 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm0-192c35.35 0 64-28.65 64-64s-28.65-64-64-64-64 28.65-64 64 28.65 64 64 64zm192 48H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"], + "dizzy": [496, 512, [], "f567", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-96 206.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L174.6 192l28.7 28.7c15.2 15.2-7.9 37.4-22.6 22.6L152 214.6zM248 416c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm147.3-195.3c15.2 15.2-7.9 37.4-22.6 22.6L344 214.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L366.6 192l28.7 28.7z"], + "dna": [448, 512, [], "f471", "M.1 494.1c-1.1 9.5 6.3 17.8 15.9 17.8l32.3.1c8.1 0 14.9-5.9 16-13.9.7-4.9 1.8-11.1 3.4-18.1H380c1.6 6.9 2.9 13.2 3.5 18.1 1.1 8 7.9 14 16 13.9l32.3-.1c9.6 0 17.1-8.3 15.9-17.8-4.6-37.9-25.6-129-118.9-207.7-17.6 12.4-37.1 24.2-58.5 35.4 6.2 4.6 11.4 9.4 17 14.2H159.7c21.3-18.1 47-35.6 78.7-51.4C410.5 199.1 442.1 65.8 447.9 17.9 449 8.4 441.6.1 432 .1L399.6 0c-8.1 0-14.9 5.9-16 13.9-.7 4.9-1.8 11.1-3.4 18.1H67.8c-1.6-7-2.7-13.1-3.4-18.1-1.1-8-7.9-14-16-13.9L16.1.1C6.5.1-1 8.4.1 17.9 5.3 60.8 31.4 171.8 160 256 31.5 340.2 5.3 451.2.1 494.1zM224 219.6c-25.1-13.7-46.4-28.4-64.3-43.6h128.5c-17.8 15.2-39.1 30-64.2 43.6zM355.1 96c-5.8 10.4-12.8 21.1-21 32H114c-8.3-10.9-15.3-21.6-21-32h262.1zM92.9 416c5.8-10.4 12.8-21.1 21-32h219.4c8.3 10.9 15.4 21.6 21.2 32H92.9z"], + "dollar-sign": [288, 512, [], "f155", "M209.2 233.4l-108-31.6C88.7 198.2 80 186.5 80 173.5c0-16.3 13.2-29.5 29.5-29.5h66.3c12.2 0 24.2 3.7 34.2 10.5 6.1 4.1 14.3 3.1 19.5-2l34.8-34c7.1-6.9 6.1-18.4-1.8-24.5C238 74.8 207.4 64.1 176 64V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C45.8 64-5.4 118.7.5 183.6c4.2 46.1 39.4 83.6 83.8 96.6l102.5 30c12.5 3.7 21.2 15.3 21.2 28.3 0 16.3-13.2 29.5-29.5 29.5h-66.3C100 368 88 364.3 78 357.5c-6.1-4.1-14.3-3.1-19.5 2l-34.8 34c-7.1 6.9-6.1 18.4 1.8 24.5 24.5 19.2 55.1 29.9 86.5 30v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48.2c46.6-.9 90.3-28.6 105.7-72.7 21.5-61.6-14.6-124.8-72.5-141.7z"], + "dolly": [576, 512, [], "f472", "M294.2 277.7c18 5 34.7 13.4 49.5 24.7l161.5-53.8c8.4-2.8 12.9-11.9 10.1-20.2L454.9 47.2c-2.8-8.4-11.9-12.9-20.2-10.1l-61.1 20.4 33.1 99.4L346 177l-33.1-99.4-61.6 20.5c-8.4 2.8-12.9 11.9-10.1 20.2l53 159.4zm281 48.7L565 296c-2.8-8.4-11.9-12.9-20.2-10.1l-213.5 71.2c-17.2-22-43.6-36.4-73.5-37L158.4 21.9C154 8.8 141.8 0 128 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h88.9l92.2 276.7c-26.1 20.4-41.7 53.6-36 90.5 6.1 39.4 37.9 72.3 77.3 79.2 60.2 10.7 112.3-34.8 113.4-92.6l213.3-71.2c8.3-2.8 12.9-11.8 10.1-20.2zM256 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"], + "dolly-flatbed": [640, 512, [], "f474", "M208 320h384c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H448v128l-48-32-48 32V32H208c-8.8 0-16 7.2-16 16v256c0 8.8 7.2 16 16 16zm416 64H128V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h82.9c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H451c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H624c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z"], + "donate": [512, 512, [], "f4b9", "M256 416c114.9 0 208-93.1 208-208S370.9 0 256 0 48 93.1 48 208s93.1 208 208 208zM233.8 97.4V80.6c0-9.2 7.4-16.6 16.6-16.6h11.1c9.2 0 16.6 7.4 16.6 16.6v17c15.5.8 30.5 6.1 43 15.4 5.6 4.1 6.2 12.3 1.2 17.1L306 145.6c-3.8 3.7-9.5 3.8-14 1-5.4-3.4-11.4-5.1-17.8-5.1h-38.9c-9 0-16.3 8.2-16.3 18.3 0 8.2 5 15.5 12.1 17.6l62.3 18.7c25.7 7.7 43.7 32.4 43.7 60.1 0 34-26.4 61.5-59.1 62.4v16.8c0 9.2-7.4 16.6-16.6 16.6h-11.1c-9.2 0-16.6-7.4-16.6-16.6v-17c-15.5-.8-30.5-6.1-43-15.4-5.6-4.1-6.2-12.3-1.2-17.1l16.3-15.5c3.8-3.7 9.5-3.8 14-1 5.4 3.4 11.4 5.1 17.8 5.1h38.9c9 0 16.3-8.2 16.3-18.3 0-8.2-5-15.5-12.1-17.6l-62.3-18.7c-25.7-7.7-43.7-32.4-43.7-60.1.1-34 26.4-61.5 59.1-62.4zM480 352h-32.5c-19.6 26-44.6 47.7-73 64h63.8c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8h63.8c-28.4-16.3-53.3-38-73-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32z"], + "door-closed": [640, 512, [], "f52a", "M624 448H512V50.8C512 22.78 490.47 0 464 0H175.99c-26.47 0-48 22.78-48 50.8V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM415.99 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32c.01 17.67-14.32 32-32 32z"], + "door-open": [640, 512, [], "f52b", "M624 448h-80V113.45C544 86.19 522.47 64 496 64H384v64h96v384h144c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM312.24 1.01l-192 49.74C105.99 54.44 96 67.7 96 82.92V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h336V33.18c0-21.58-19.56-37.41-39.76-32.17zM264 288c-13.25 0-24-14.33-24-32s10.75-32 24-32 24 14.33 24 32-10.75 32-24 32z"], + "dot-circle": [512, 512, [], "f192", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z"], + "dove": [512, 512, [], "f4ba", "M288 167.2v-28.1c-28.2-36.3-47.1-79.3-54.1-125.2-2.1-13.5-19-18.8-27.8-8.3-21.1 24.9-37.7 54.1-48.9 86.5 34.2 38.3 80 64.6 130.8 75.1zM400 64c-44.2 0-80 35.9-80 80.1v59.4C215.6 197.3 127 133 87 41.8c-5.5-12.5-23.2-13.2-29-.9C41.4 76 32 115.2 32 156.6c0 70.8 34.1 136.9 85.1 185.9 13.2 12.7 26.1 23.2 38.9 32.8l-143.9 36C1.4 414-3.4 426.4 2.6 435.7 20 462.6 63 508.2 155.8 512c8 .3 16-2.6 22.1-7.9l65.2-56.1H320c88.4 0 160-71.5 160-159.9V128l32-64H400zm0 96.1c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"], + "download": [512, 512, [], "f019", "M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"], + "drafting-compass": [512, 512, [], "f568", "M457.01 344.42c-25.05 20.33-52.63 37.18-82.54 49.05l54.38 94.19 53.95 23.04c9.81 4.19 20.89-2.21 22.17-12.8l7.02-58.25-54.98-95.23zm42.49-94.56c4.86-7.67 1.89-17.99-6.05-22.39l-28.07-15.57c-7.48-4.15-16.61-1.46-21.26 5.72C403.01 281.15 332.25 320 256 320c-23.93 0-47.23-4.25-69.41-11.53l67.36-116.68c.7.02 1.34.21 2.04.21s1.35-.19 2.04-.21l51.09 88.5c31.23-8.96 59.56-25.75 82.61-48.92l-51.79-89.71C347.39 128.03 352 112.63 352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96c0 16.63 4.61 32.03 12.05 45.66l-68.3 118.31c-12.55-11.61-23.96-24.59-33.68-39-4.79-7.1-13.97-9.62-21.38-5.33l-27.75 16.07c-7.85 4.54-10.63 14.9-5.64 22.47 15.57 23.64 34.69 44.21 55.98 62.02L0 439.66l7.02 58.25c1.28 10.59 12.36 16.99 22.17 12.8l53.95-23.04 70.8-122.63C186.13 377.28 220.62 384 256 384c99.05 0 190.88-51.01 243.5-134.14zM256 64c17.67 0 32 14.33 32 32s-14.33 32-32 32-32-14.33-32-32 14.33-32 32-32z"], + "drum": [576, 512, [], "f569", "M458.08 120.88l102.39-61.43c15.16-9.09 20.06-28.75 10.97-43.91C562.34.39 542.7-4.53 527.53 4.57l-160.69 96.41A629.32 629.32 0 0 0 288 96C128.94 96 0 153.31 0 224v160.83c0 30.46 24.03 58.4 64 80.37v-96.37c0-17.6 14.4-32 32-32s32 14.4 32 32v122.41c37.4 11.13 81 18.44 128 20.75V400.84c0-17.6 14.4-32 32-32s32 14.4 32 32V512c47-2.31 90.6-9.62 128-20.75V368.84c0-17.6 14.4-32 32-32s32 14.4 32 32v96.37c39.97-21.97 64-49.91 64-80.37V224.01c-.01-42.38-46.54-79.84-117.92-103.13zM288 304c-132.55 0-240-35.82-240-80s107.45-80 240-80c2.34 0 4.62.1 6.94.12l-87.41 52.44c-15.16 9.09-20.06 28.75-10.97 43.91 9.56 15.93 29.51 19.61 43.91 10.97l162.71-97.62C477.55 167.41 528 193.74 528 224.01 528 268.19 420.54 304 288 304z"], + "drum-steelpan": [576, 512, [], "f56a", "M288 32C128.94 32 0 89.31 0 160v192c0 70.69 128.94 128 288 128s288-57.31 288-128V160c0-70.69-128.94-128-288-128zm-82.99 158.36c-4.45 16.61-14.54 30.57-28.31 40.48C100.23 217.46 48 190.78 48 160c0-30.16 50.11-56.39 124.04-70.03l25.6 44.34c9.86 17.09 12.48 36.99 7.37 56.05zM288 240c-21.08 0-41.41-1-60.89-2.7 8.06-26.13 32.15-45.3 60.89-45.3s52.83 19.17 60.89 45.3C329.41 239 309.08 240 288 240zm64-144c0 35.29-28.71 64-64 64s-64-28.71-64-64V82.96c20.4-1.88 41.8-2.96 64-2.96s43.6 1.08 64 2.96V96zm46.93 134.9c-13.81-9.91-23.94-23.9-28.4-40.54-5.11-19.06-2.49-38.96 7.38-56.04l25.65-44.42C477.72 103.5 528 129.79 528 160c0 30.83-52.4 57.54-129.07 70.9z"], + "dumbbell": [640, 512, [], "f44b", "M104 96H56c-13.3 0-24 10.7-24 24v104H8c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h24v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm528 128h-24V120c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v272c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h24c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM456 32h-48c-13.3 0-24 10.7-24 24v168H256V56c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v400c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h128v168c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24z"], + "edit": [576, 512, [], "f044", "M402.6 83.2l90.2 90.2c3.8 3.8 3.8 10 0 13.8L274.4 405.6l-92.8 10.3c-12.4 1.4-22.9-9.1-21.5-21.5l10.3-92.8L388.8 83.2c3.8-3.8 10-3.8 13.8 0zm162-22.9l-48.8-48.8c-15.2-15.2-39.9-15.2-55.2 0l-35.4 35.4c-3.8 3.8-3.8 10 0 13.8l90.2 90.2c3.8 3.8 10 3.8 13.8 0l35.4-35.4c15.2-15.3 15.2-40 0-55.2zM384 346.2V448H64V128h229.8c3.2 0 6.2-1.3 8.5-3.5l40-40c7.6-7.6 2.2-20.5-8.5-20.5H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V306.2c0-10.7-12.9-16-20.5-8.5l-40 40c-2.2 2.3-3.5 5.3-3.5 8.5z"], + "eject": [448, 512, [], "f052", "M448 384v64c0 17.673-14.327 32-32 32H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h384c17.673 0 32 14.327 32 32zM48.053 320h351.886c41.651 0 63.581-49.674 35.383-80.435L259.383 47.558c-19.014-20.743-51.751-20.744-70.767 0L12.67 239.565C-15.475 270.268 6.324 320 48.053 320z"], + "ellipsis-h": [512, 512, [], "f141", "M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z"], + "ellipsis-v": [192, 512, [], "f142", "M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z"], + "envelope": [512, 512, [], "f0e0", "M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"], + "envelope-open": [512, 512, [], "f2b6", "M512 464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V200.724a48 48 0 0 1 18.387-37.776c24.913-19.529 45.501-35.365 164.2-121.511C199.412 29.17 232.797-.347 256 .003c23.198-.354 56.596 29.172 73.413 41.433 118.687 86.137 139.303 101.995 164.2 121.512A48 48 0 0 1 512 200.724V464zm-65.666-196.605c-2.563-3.728-7.7-4.595-11.339-1.907-22.845 16.873-55.462 40.705-105.582 77.079-16.825 12.266-50.21 41.781-73.413 41.43-23.211.344-56.559-29.143-73.413-41.43-50.114-36.37-82.734-60.204-105.582-77.079-3.639-2.688-8.776-1.821-11.339 1.907l-9.072 13.196a7.998 7.998 0 0 0 1.839 10.967c22.887 16.899 55.454 40.69 105.303 76.868 20.274 14.781 56.524 47.813 92.264 47.573 35.724.242 71.961-32.771 92.263-47.573 49.85-36.179 82.418-59.97 105.303-76.868a7.998 7.998 0 0 0 1.839-10.967l-9.071-13.196z"], + "envelope-square": [448, 512, [], "f199", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM178.117 262.104C87.429 196.287 88.353 196.121 64 177.167V152c0-13.255 10.745-24 24-24h272c13.255 0 24 10.745 24 24v25.167c-24.371 18.969-23.434 19.124-114.117 84.938-10.5 7.655-31.392 26.12-45.883 25.894-14.503.218-35.367-18.227-45.883-25.895zM384 217.775V360c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V217.775c13.958 10.794 33.329 25.236 95.303 70.214 14.162 10.341 37.975 32.145 64.694 32.01 26.887.134 51.037-22.041 64.72-32.025 61.958-44.965 81.325-59.406 95.283-70.199z"], + "equals": [448, 512, [], "f52c", "M416 304H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32zm0-192H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"], + "eraser": [512, 512, [], "f12d", "M497.941 273.941c18.745-18.745 18.745-49.137 0-67.882l-160-160c-18.745-18.745-49.136-18.746-67.883 0l-256 256c-18.745 18.745-18.745 49.137 0 67.882l96 96A48.004 48.004 0 0 0 144 480h356c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H355.883l142.058-142.059zm-302.627-62.627l137.373 137.373L265.373 416H150.628l-80-80 124.686-124.686z"], + "euro-sign": [320, 512, [], "f153", "M310.706 413.765c-1.314-6.63-7.835-10.872-14.424-9.369-10.692 2.439-27.422 5.413-45.426 5.413-56.763 0-101.929-34.79-121.461-85.449h113.689a12 12 0 0 0 11.708-9.369l6.373-28.36c1.686-7.502-4.019-14.631-11.708-14.631H115.22c-1.21-14.328-1.414-28.287.137-42.245H261.95a12 12 0 0 0 11.723-9.434l6.512-29.755c1.638-7.484-4.061-14.566-11.723-14.566H130.184c20.633-44.991 62.69-75.03 117.619-75.03 14.486 0 28.564 2.25 37.851 4.145 6.216 1.268 12.347-2.498 14.002-8.623l11.991-44.368c1.822-6.741-2.465-13.616-9.326-14.917C290.217 34.912 270.71 32 249.635 32 152.451 32 74.03 92.252 45.075 176H12c-6.627 0-12 5.373-12 12v29.755c0 6.627 5.373 12 12 12h21.569c-1.009 13.607-1.181 29.287-.181 42.245H12c-6.627 0-12 5.373-12 12v28.36c0 6.627 5.373 12 12 12h30.114C67.139 414.692 145.264 480 249.635 480c26.301 0 48.562-4.544 61.101-7.788 6.167-1.595 10.027-7.708 8.788-13.957l-8.818-44.49z"], + "exchange-alt": [512, 512, [], "f362", "M0 168v-16c0-13.255 10.745-24 24-24h360V80c0-21.367 25.899-32.042 40.971-16.971l80 80c9.372 9.373 9.372 24.569 0 33.941l-80 80C409.956 271.982 384 261.456 384 240v-48H24c-13.255 0-24-10.745-24-24zm488 152H128v-48c0-21.314-25.862-32.08-40.971-16.971l-80 80c-9.372 9.373-9.372 24.569 0 33.941l80 80C102.057 463.997 128 453.437 128 432v-48h360c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z"], + "exclamation": [192, 512, [], "f12a", "M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z"], + "exclamation-circle": [512, 512, [], "f06a", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"], + "exclamation-triangle": [576, 512, [], "f071", "M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"], + "expand": [448, 512, [], "f065", "M0 180V56c0-13.3 10.7-24 24-24h124c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H64v84c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12zM288 44v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V56c0-13.3-10.7-24-24-24H300c-6.6 0-12 5.4-12 12zm148 276h-40c-6.6 0-12 5.4-12 12v84h-84c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24V332c0-6.6-5.4-12-12-12zM160 468v-40c0-6.6-5.4-12-12-12H64v-84c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v124c0 13.3 10.7 24 24 24h124c6.6 0 12-5.4 12-12z"], + "expand-arrows-alt": [448, 512, [], "f31e", "M448.1 344v112c0 13.3-10.7 24-24 24h-112c-21.4 0-32.1-25.9-17-41l36.2-36.2L224 295.6 116.8 402.9 153 439c15.1 15.1 4.4 41-17 41H24c-13.3 0-24-10.7-24-24V344c0-21.4 25.9-32.1 41-17l36.2 36.2L184.5 256 77.2 148.7 41 185c-15.1 15.1-41 4.4-41-17V56c0-13.3 10.7-24 24-24h112c21.4 0 32.1 25.9 17 41l-36.2 36.2L224 216.4l107.3-107.3L295.1 73c-15.1-15.1-4.4-41 17-41h112c13.3 0 24 10.7 24 24v112c0 21.4-25.9 32.1-41 17l-36.2-36.2L263.6 256l107.3 107.3 36.2-36.2c15.1-15.2 41-4.5 41 16.9z"], + "external-link-alt": [576, 512, [], "f35d", "M576 24v127.984c0 21.461-25.96 31.98-40.971 16.971l-35.707-35.709-243.523 243.523c-9.373 9.373-24.568 9.373-33.941 0l-22.627-22.627c-9.373-9.373-9.373-24.569 0-33.941L442.756 76.676l-35.703-35.705C391.982 25.9 402.656 0 424.024 0H552c13.255 0 24 10.745 24 24zM407.029 270.794l-16 16A23.999 23.999 0 0 0 384 303.765V448H64V128h264a24.003 24.003 0 0 0 16.97-7.029l16-16C376.089 89.851 365.381 64 344 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V287.764c0-21.382-25.852-32.09-40.971-16.97z"], + "external-link-square-alt": [448, 512, [], "f360", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-88 16H248.029c-21.313 0-32.08 25.861-16.971 40.971l31.984 31.987L67.515 364.485c-4.686 4.686-4.686 12.284 0 16.971l31.029 31.029c4.687 4.686 12.285 4.686 16.971 0l195.526-195.526 31.988 31.991C358.058 263.977 384 253.425 384 231.979V120c0-13.255-10.745-24-24-24z"], + "eye": [576, 512, [], "f06e", "M569.354 231.631C512.969 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-75.162 0-136-60.827-136-136 0-75.162 60.826-136 136-136 75.162 0 136 60.826 136 136 0 75.162-60.826 136-136 136zm104-136c0 57.438-46.562 104-104 104s-104-46.562-104-104c0-17.708 4.431-34.379 12.236-48.973l-.001.032c0 23.651 19.173 42.823 42.824 42.823s42.824-19.173 42.824-42.823c0-23.651-19.173-42.824-42.824-42.824l-.032.001C253.621 156.431 270.292 152 288 152c57.438 0 104 46.562 104 104z"], + "eye-dropper": [512, 512, [], "f1fb", "M50.75 333.25c-12 12-18.75 28.28-18.75 45.26V424L0 480l32 32 56-32h45.49c16.97 0 33.25-6.74 45.25-18.74l126.64-126.62-128-128L50.75 333.25zM483.88 28.12c-37.47-37.5-98.28-37.5-135.75 0l-77.09 77.09-13.1-13.1c-9.44-9.44-24.65-9.31-33.94 0l-40.97 40.97c-9.37 9.37-9.37 24.57 0 33.94l161.94 161.94c9.44 9.44 24.65 9.31 33.94 0L419.88 288c9.37-9.37 9.37-24.57 0-33.94l-13.1-13.1 77.09-77.09c37.51-37.48 37.51-98.26.01-135.75z"], + "eye-slash": [576, 512, [], "f070", "M286.693 391.984l32.579 46.542A333.958 333.958 0 0 1 288 440C168.19 440 63.031 376.051 6.646 280.369a47.999 47.999 0 0 1 0-48.739c24.023-40.766 56.913-75.775 96.024-102.537l57.077 81.539C154.736 224.82 152 240.087 152 256c0 74.736 60.135 135.282 134.693 135.984zm282.661-111.615c-31.667 53.737-78.747 97.46-135.175 125.475l.011.015 41.47 59.2c7.6 10.86 4.96 25.82-5.9 33.42l-13.11 9.18c-10.86 7.6-25.82 4.96-33.42-5.9L100.34 46.94c-7.6-10.86-4.96-25.82 5.9-33.42l13.11-9.18c10.86-7.6 25.82-4.96 33.42 5.9l51.038 72.617C230.68 75.776 258.905 72 288 72c119.81 0 224.969 63.949 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM424 256c0-75.174-60.838-136-136-136-17.939 0-35.056 3.473-50.729 9.772l19.299 27.058c25.869-8.171 55.044-6.163 80.4 7.41h-.03c-23.65 0-42.82 19.17-42.82 42.82 0 23.626 19.147 42.82 42.82 42.82 23.65 0 42.82-19.17 42.82-42.82v-.03c18.462 34.49 16.312 77.914-8.25 110.95v.01l19.314 27.061C411.496 321.2 424 290.074 424 256zM262.014 356.727l-77.53-110.757c-5.014 52.387 29.314 98.354 77.53 110.757z"], + "fast-backward": [512, 512, [], "f049", "M0 436V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v151.9L235.5 71.4C256.1 54.3 288 68.6 288 96v131.9L459.5 71.4C480.1 54.3 512 68.6 512 96v320c0 27.4-31.9 41.7-52.5 24.6L288 285.3V416c0 27.4-31.9 41.7-52.5 24.6L64 285.3V436c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12z"], + "fast-forward": [512, 512, [], "f050", "M512 76v360c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V284.1L276.5 440.6c-20.6 17.2-52.5 2.8-52.5-24.6V284.1L52.5 440.6C31.9 457.8 0 443.4 0 416V96c0-27.4 31.9-41.7 52.5-24.6L224 226.8V96c0-27.4 31.9-41.7 52.5-24.6L448 226.8V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12z"], + "fax": [512, 512, [], "f1ac", "M128 144v320c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V144c0-26.51 21.49-48 48-48h32c26.51 0 48 21.49 48 48zm384 64v256c0 26.51-21.49 48-48 48H192c-26.51 0-48-21.49-48-48V40c0-22.091 17.909-40 40-40h207.432a39.996 39.996 0 0 1 28.284 11.716l48.569 48.569A39.999 39.999 0 0 1 480 88.568v74.174c18.641 6.591 32 24.36 32 45.258zm-320-16h240V96h-24c-13.203 0-24-10.797-24-24V48H192v144zm96 204c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm128 128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40z"], + "feather": [512, 512, [], "f52d", "M467.14 44.84c-62.55-62.48-161.67-64.78-252.28 25.73-78.61 78.52-60.98 60.92-85.75 85.66-60.46 60.39-70.39 150.83-63.64 211.17l178.44-178.25c6.26-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.6 9.37 33.98 0l66.1-66.03C159.42 454.65 279 457.11 353.95 384h-98.19l147.57-49.14c49.99-49.93 36.38-36.18 46.31-46.86h-97.78l131.54-43.8c45.44-74.46 34.31-148.84-16.26-199.36z"], + "feather-alt": [512, 512, [], "f56b", "M512 0C460.22 3.56 96.44 38.2 71.01 287.61c-3.09 26.66-4.84 53.44-5.99 80.24l178.87-178.69c6.25-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.59 9.37 33.98 0l57.13-57.07c42.09-.14 84.15-2.53 125.96-7.36 53.48-5.44 97.02-26.47 132.58-56.54H255.74l146.79-48.88c11.25-14.89 21.37-30.71 30.45-47.12h-81.14l106.54-53.21C500.29 132.86 510.19 26.26 512 0z"], + "female": [256, 512, [], "f182", "M128 0c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64S92.654 0 128 0m119.283 354.179l-48-192A24 24 0 0 0 176 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H80a24 24 0 0 0-23.283 18.179l-48 192C4.935 369.305 16.383 384 32 384h56v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V384h56c15.591 0 27.071-14.671 23.283-29.821z"], + "fighter-jet": [640, 512, [], "f0fb", "M544 224l-128-16-48-16h-24L227.158 44h39.509C278.333 44 288 41.375 288 38s-9.667-6-21.333-6H152v12h16v164h-48l-66.667-80H18.667L8 138.667V208h8v16h48v2.666l-64 8v42.667l64 8V288H16v16H8v69.333L18.667 384h34.667L120 304h48v164h-16v12h114.667c11.667 0 21.333-2.625 21.333-6s-9.667-6-21.333-6h-39.509L344 320h24l48-16 128-16c96-21.333 96-26.583 96-32 0-5.417 0-10.667-96-32z"], + "file": [384, 512, [], "f15b", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "file-alt": [384, 512, [], "f15c", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "file-archive": [384, 512, [], "f1c6", "M224 136V0h-63.6v32h-32V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM95.9 32h32v32h-32V32zm32.3 384c-33.2 0-58-30.4-51.4-62.9L96.4 256v-32h32v-32h-32v-32h32v-32h-32V96h32V64h32v32h-32v32h32v32h-32v32h32v32h-32v32h22.1c5.7 0 10.7 4.1 11.8 9.7l17.3 87.7c6.4 32.4-18.4 62.6-51.4 62.6zm32.7-53c0 14.9-14.5 27-32.4 27S96 378 96 363c0-14.9 14.5-27 32.4-27s32.5 12.1 32.5 27zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "file-audio": [384, 512, [], "f1c7", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "file-code": [384, 512, [], "f1c9", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zM123.206 400.505a5.4 5.4 0 0 1-7.633.246l-64.866-60.812a5.4 5.4 0 0 1 0-7.879l64.866-60.812a5.4 5.4 0 0 1 7.633.246l19.579 20.885a5.4 5.4 0 0 1-.372 7.747L101.65 336l40.763 35.874a5.4 5.4 0 0 1 .372 7.747l-19.579 20.884zm51.295 50.479l-27.453-7.97a5.402 5.402 0 0 1-3.681-6.692l61.44-211.626a5.402 5.402 0 0 1 6.692-3.681l27.452 7.97a5.4 5.4 0 0 1 3.68 6.692l-61.44 211.626a5.397 5.397 0 0 1-6.69 3.681zm160.792-111.045l-64.866 60.812a5.4 5.4 0 0 1-7.633-.246l-19.58-20.885a5.4 5.4 0 0 1 .372-7.747L284.35 336l-40.763-35.874a5.4 5.4 0 0 1-.372-7.747l19.58-20.885a5.4 5.4 0 0 1 7.633-.246l64.866 60.812a5.4 5.4 0 0 1-.001 7.879z"], + "file-contract": [384, 512, [], "f56c", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm192.81 248H304c8.84 0 16 7.16 16 16s-7.16 16-16 16h-47.19c-16.45 0-31.27-9.14-38.64-23.86-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34a15.986 15.986 0 0 1-14.31 8.84c-.38 0-.75-.02-1.14-.05-6.45-.45-12-4.75-14.03-10.89L144 354.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.77-16.19 54.05-9.7 66 14.16 2.02 4.06 5.96 6.5 10.16 6.5zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"], + "file-download": [384, 512, [], "f56d", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm76.45 211.36l-96.42 95.7c-6.65 6.61-17.39 6.61-24.04 0l-96.42-95.7C73.42 337.29 80.54 320 94.82 320H160v-80c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v80h65.18c14.28 0 21.4 17.29 11.27 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"], + "file-excel": [384, 512, [], "f1c3", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm60.1 106.5L224 336l60.1 93.5c5.1 8-.6 18.5-10.1 18.5h-34.9c-4.4 0-8.5-2.4-10.6-6.3C208.9 405.5 192 373 192 373c-6.4 14.8-10 20-36.6 68.8-2.1 3.9-6.1 6.3-10.5 6.3H110c-9.5 0-15.2-10.5-10.1-18.5l60.3-93.5-60.3-93.5c-5.2-8 .6-18.5 10.1-18.5h34.8c4.4 0 8.5 2.4 10.6 6.3 26.1 48.8 20 33.6 36.6 68.5 0 0 6.1-11.7 36.6-68.5 2.1-3.9 6.2-6.3 10.6-6.3H274c9.5-.1 15.2 10.4 10.1 18.4zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "file-export": [576, 512, [], "f56e", "M384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zM192 336v-32c0-8.84 7.16-16 16-16h176V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V352H208c-8.84 0-16-7.16-16-16zm379.05-28.02l-95.7-96.43c-10.06-10.14-27.36-3.01-27.36 11.27V288H384v64h63.99v65.18c0 14.28 17.29 21.41 27.36 11.27l95.7-96.42c6.6-6.66 6.6-17.4 0-24.05z"], + "file-image": [384, 512, [], "f1c5", "M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z"], + "file-import": [512, 512, [], "f56f", "M16 288c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h112v-64H16zm336-152V0H152c-13.3 0-24 10.7-24 24v264h127.99v-65.18c0-14.28 17.29-21.41 27.36-11.27l95.7 96.43c6.6 6.65 6.6 17.39 0 24.04l-95.7 96.42c-10.06 10.14-27.36 3.01-27.36-11.27V352H128v136c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H376c-13.2 0-24-10.8-24-24zm153-31L407.1 7c-4.5-4.5-10.6-7-17-7H384v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"], + "file-invoice": [384, 512, [], "f570", "M288 256H96v64h192v-64zm89-151L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm256 304c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-200v96c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-96c0-8.84 7.16-16 16-16h224c8.84 0 16 7.16 16 16z"], + "file-invoice-dollar": [384, 512, [], "f571", "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 80v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8zm144 263.88V440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-24.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V232c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v24.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07z"], + "file-medical": [384, 512, [], "f477", "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 160v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8z"], + "file-medical-alt": [448, 512, [], "f478", "M288 136V0H88C74.7 0 64 10.7 64 24v232H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h140.9c3 0 5.8 1.7 7.2 4.4l19.9 39.8 56.8-113.7c2.9-5.9 11.4-5.9 14.3 0l34.7 69.5H352c8.8 0 16 7.2 16 16s-7.2 16-16 16h-89.9L240 275.8l-56.8 113.7c-2.9 5.9-11.4 5.9-14.3 0L134.1 320H64v168c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H312c-13.2 0-24-10.8-24-24zm153-31L343.1 7c-4.5-4.5-10.6-7-17-7H320v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"], + "file-pdf": [384, 512, [], "f1c1", "M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z"], + "file-powerpoint": [384, 512, [], "f1c4", "M193.7 271.2c8.8 0 15.5 2.7 20.3 8.1 9.6 10.9 9.8 32.7-.2 44.1-4.9 5.6-11.9 8.5-21.1 8.5h-26.9v-60.7h27.9zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm53 165.2c0 90.3-88.8 77.6-111.1 77.6V436c0 6.6-5.4 12-12 12h-30.8c-6.6 0-12-5.4-12-12V236.2c0-6.6 5.4-12 12-12h81c44.5 0 72.9 32.8 72.9 77z"], + "file-prescription": [384, 512, [], "f572", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm68.53 179.48l11.31 11.31c6.25 6.25 6.25 16.38 0 22.63l-29.9 29.9L304 409.38c6.25 6.25 6.25 16.38 0 22.63l-11.31 11.31c-6.25 6.25-16.38 6.25-22.63 0L240 413.25l-30.06 30.06c-6.25 6.25-16.38 6.25-22.63 0L176 432c-6.25-6.25-6.25-16.38 0-22.63l30.06-30.06L146.74 320H128v48c0 8.84-7.16 16-16 16H96c-8.84 0-16-7.16-16-16V208c0-8.84 7.16-16 16-16h80c35.35 0 64 28.65 64 64 0 24.22-13.62 45.05-33.46 55.92L240 345.38l29.9-29.9c6.25-6.25 16.38-6.25 22.63 0zM176 272h-48v-32h48c8.82 0 16 7.18 16 16s-7.18 16-16 16zm208-150.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "file-signature": [576, 512, [], "f573", "M218.17 424.14c-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34c-6.37 12.78-25.03 11.37-29.48-2.09L144 386.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.75-16.19 54.06-9.7 66 14.16 1.89 3.78 5.49 5.95 9.36 6.26v-82.12l128-127.09V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24v-40l-128-.11c-16.12-.31-30.58-9.28-37.83-23.75zM384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zm-96 225.06V416h68.99l161.68-162.78-67.88-67.88L288 346.96zm280.54-179.63l-31.87-31.87c-9.94-9.94-26.07-9.94-36.01 0l-27.25 27.25 67.88 67.88 27.25-27.25c9.95-9.94 9.95-26.07 0-36.01z"], + "file-upload": [384, 512, [], "f574", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm65.18 216.01H224v80c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-80H94.82c-14.28 0-21.41-17.29-11.27-27.36l96.42-95.7c6.65-6.61 17.39-6.61 24.04 0l96.42 95.7c10.15 10.07 3.03 27.36-11.25 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"], + "file-video": [384, 512, [], "f1c8", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z"], + "file-word": [384, 512, [], "f1c2", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm57.1 120H305c7.7 0 13.4 7.1 11.7 14.7l-38 168c-1.2 5.5-6.1 9.3-11.7 9.3h-38c-5.5 0-10.3-3.8-11.6-9.1-25.8-103.5-20.8-81.2-25.6-110.5h-.5c-1.1 14.3-2.4 17.4-25.6 110.5-1.3 5.3-6.1 9.1-11.6 9.1H117c-5.6 0-10.5-3.9-11.7-9.4l-37.8-168c-1.7-7.5 4-14.6 11.7-14.6h24.5c5.7 0 10.7 4 11.8 9.7 15.6 78 20.1 109.5 21 122.2 1.6-10.2 7.3-32.7 29.4-122.7 1.3-5.4 6.1-9.1 11.7-9.1h29.1c5.6 0 10.4 3.8 11.7 9.2 24 100.4 28.8 124 29.6 129.4-.2-11.2-2.6-17.8 21.6-129.2 1-5.6 5.9-9.5 11.5-9.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "fill": [512, 512, [], "f575", "M502.63 217.06L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.77c-6.24-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.63l86.19 86.18-94.76 94.76c-37.49 37.49-37.49 98.26 0 135.75l117.19 117.19c18.75 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.88-28.12l221.57-221.57c12.49-12.5 12.49-32.76 0-45.26zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.61 58.6c12.49 12.49 32.75 12.49 45.24 0 12.49-12.49 12.49-32.75 0-45.24l-58.61-58.6 58.95-58.95 162.45 162.44-48.35 48.34z"], + "fill-drip": [576, 512, [], "f576", "M512 320s-64 92.65-64 128c0 35.35 28.66 64 64 64s64-28.65 64-64-64-128-64-128zm-9.37-102.94L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.76c-6.25-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.62l86.19 86.18-94.76 94.76c-37.49 37.48-37.49 98.26 0 135.75l117.19 117.19c18.74 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.87-28.12l221.57-221.57c12.5-12.5 12.5-32.75.01-45.25zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.6 58.6c12.49 12.49 32.75 12.49 45.24 0s12.49-32.75 0-45.24l-58.6-58.6 58.95-58.95 162.44 162.44-48.34 48.34z"], + "film": [512, 512, [], "f008", "M488 64h-8v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V64H96v20c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12V64h-8C10.7 64 0 74.7 0 88v336c0 13.3 10.7 24 24 24h8v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h320v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h8c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM96 372c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm272 208c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm0-168c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm112 152c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z"], + "filter": [512, 512, [], "f0b0", "M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z"], + "fingerprint": [512, 512, [], "f577", "M256.12 245.96c-13.25 0-24 10.74-24 24 1.14 72.25-8.14 141.9-27.7 211.55-2.73 9.72 2.15 30.49 23.12 30.49 10.48 0 20.11-6.92 23.09-17.52 13.53-47.91 31.04-125.41 29.48-224.52.01-13.25-10.73-24-23.99-24zm-.86-81.73C194 164.16 151.25 211.3 152.1 265.32c.75 47.94-3.75 95.91-13.37 142.55-2.69 12.98 5.67 25.69 18.64 28.36 13.05 2.67 25.67-5.66 28.36-18.64 10.34-50.09 15.17-101.58 14.37-153.02-.41-25.95 19.92-52.49 54.45-52.34 31.31.47 57.15 25.34 57.62 55.47.77 48.05-2.81 96.33-10.61 143.55-2.17 13.06 6.69 25.42 19.76 27.58 19.97 3.33 26.81-15.1 27.58-19.77 8.28-50.03 12.06-101.21 11.27-152.11-.88-55.8-47.94-101.88-104.91-102.72zm-110.69-19.78c-10.3-8.34-25.37-6.8-33.76 3.48-25.62 31.5-39.39 71.28-38.75 112 .59 37.58-2.47 75.27-9.11 112.05-2.34 13.05 6.31 25.53 19.36 27.89 20.11 3.5 27.07-14.81 27.89-19.36 7.19-39.84 10.5-80.66 9.86-121.33-.47-29.88 9.2-57.88 28-80.97 8.35-10.28 6.79-25.39-3.49-33.76zm109.47-62.33c-15.41-.41-30.87 1.44-45.78 4.97-12.89 3.06-20.87 15.98-17.83 28.89 3.06 12.89 16 20.83 28.89 17.83 11.05-2.61 22.47-3.77 34-3.69 75.43 1.13 137.73 61.5 138.88 134.58.59 37.88-1.28 76.11-5.58 113.63-1.5 13.17 7.95 25.08 21.11 26.58 16.72 1.95 25.51-11.88 26.58-21.11a929.06 929.06 0 0 0 5.89-119.85c-1.56-98.75-85.07-180.33-186.16-181.83zm252.07 121.45c-2.86-12.92-15.51-21.2-28.61-18.27-12.94 2.86-21.12 15.66-18.26 28.61 4.71 21.41 4.91 37.41 4.7 61.6-.11 13.27 10.55 24.09 23.8 24.2h.2c13.17 0 23.89-10.61 24-23.8.18-22.18.4-44.11-5.83-72.34zm-40.12-90.72C417.29 43.46 337.6 1.29 252.81.02 183.02-.82 118.47 24.91 70.46 72.94 24.09 119.37-.9 181.04.14 246.65l-.12 21.47c-.39 13.25 10.03 24.31 23.28 24.69.23.02.48.02.72.02 12.92 0 23.59-10.3 23.97-23.3l.16-23.64c-.83-52.5 19.16-101.86 56.28-139 38.76-38.8 91.34-59.67 147.68-58.86 69.45 1.03 134.73 35.56 174.62 92.39 7.61 10.86 22.56 13.45 33.42 5.86 10.84-7.62 13.46-22.59 5.84-33.43z"], + "fire": [384, 512, [], "f06d", "M216 23.858c0-23.802-30.653-32.765-44.149-13.038C48 191.851 224 200 224 288c0 35.629-29.114 64.458-64.85 63.994C123.98 351.538 96 322.22 96 287.046v-85.51c0-21.703-26.471-32.225-41.432-16.504C27.801 213.158 0 261.332 0 320c0 105.869 86.131 192 192 192s192-86.131 192-192c0-170.29-168-193.003-168-296.142z"], + "fire-extinguisher": [448, 512, [], "f134", "M434.027 26.329l-168 28C254.693 56.218 256 67.8 256 72h-58.332C208.353 36.108 181.446 0 144 0c-39.435 0-66.368 39.676-52.228 76.203-52.039 13.051-75.381 54.213-90.049 90.884-4.923 12.307 1.063 26.274 13.37 31.197 12.317 4.926 26.279-1.075 31.196-13.37C75.058 112.99 106.964 120 168 120v27.076c-41.543 10.862-72 49.235-72 94.129V488c0 13.255 10.745 24 24 24h144c13.255 0 24-10.745 24-24V240c0-44.731-30.596-82.312-72-92.97V120h40c0 2.974-1.703 15.716 10.027 17.671l168 28C441.342 166.89 448 161.25 448 153.834V38.166c0-7.416-6.658-13.056-13.973-11.837zM144 72c-8.822 0-16-7.178-16-16s7.178-16 16-16 16 7.178 16 16-7.178 16-16 16z"], + "first-aid": [576, 512, [], "f479", "M0 80v352c0 26.5 21.5 48 48 48h48V32H48C21.5 32 0 53.5 0 80zm128 400h320V32H128v448zm64-248c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48zM528 32h-48v448h48c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"], + "fish": [576, 512, [], "f578", "M327.1 96c-89.97 0-168.54 54.77-212.27 101.63L27.5 131.58c-12.13-9.18-30.24.6-27.14 14.66L24.54 256 .35 365.77c-3.1 14.06 15.01 23.83 27.14 14.66l87.33-66.05C158.55 361.23 237.13 416 327.1 416 464.56 416 576 288 576 256S464.56 96 327.1 96zm87.43 184c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24 13.26 0 24 10.74 24 24 0 13.25-10.75 24-24 24z"], + "flag": [512, 512, [], "f024", "M349.565 98.783C295.978 98.783 251.721 64 184.348 64c-24.955 0-47.309 4.384-68.045 12.013a55.947 55.947 0 0 0 3.586-23.562C118.117 24.015 94.806 1.206 66.338.048 34.345-1.254 8 24.296 8 56c0 19.026 9.497 35.825 24 45.945V488c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-94.4c28.311-12.064 63.582-22.122 114.435-22.122 53.588 0 97.844 34.783 165.217 34.783 48.169 0 86.667-16.294 122.505-40.858C506.84 359.452 512 349.571 512 339.045v-243.1c0-23.393-24.269-38.87-45.485-29.016-34.338 15.948-76.454 31.854-116.95 31.854z"], + "flag-checkered": [512, 512, [], "f11e", "M466.515 66.928C487.731 57.074 512 72.551 512 95.944v243.1c0 10.526-5.161 20.407-13.843 26.358-35.837 24.564-74.335 40.858-122.505 40.858-67.373 0-111.63-34.783-165.217-34.783-50.853 0-86.124 10.058-114.435 22.122V488c0 13.255-10.745 24-24 24H56c-13.255 0-24-10.745-24-24V101.945C17.497 91.825 8 75.026 8 56 8 24.296 34.345-1.254 66.338.048c28.468 1.158 51.779 23.968 53.551 52.404.52 8.342-.81 16.31-3.586 23.562C137.039 68.384 159.393 64 184.348 64c67.373 0 111.63 34.783 165.217 34.783 40.496 0 82.612-15.906 116.95-31.855zM96 134.63v70.49c29-10.67 51.18-17.83 73.6-20.91v-71.57c-23.5 2.17-40.44 9.79-73.6 21.99zm220.8 9.19c-26.417-4.672-49.886-13.979-73.6-21.34v67.42c24.175 6.706 47.566 16.444 73.6 22.31v-68.39zm-147.2 40.39v70.04c32.796-2.978 53.91-.635 73.6 3.8V189.9c-25.247-7.035-46.581-9.423-73.6-5.69zm73.6 142.23c26.338 4.652 49.732 13.927 73.6 21.34v-67.41c-24.277-6.746-47.54-16.45-73.6-22.32v68.39zM96 342.1c23.62-8.39 47.79-13.84 73.6-16.56v-71.29c-26.11 2.35-47.36 8.04-73.6 17.36v70.49zm368-221.6c-21.3 8.85-46.59 17.64-73.6 22.47v71.91c27.31-4.36 50.03-14.1 73.6-23.89V120.5zm0 209.96v-70.49c-22.19 14.2-48.78 22.61-73.6 26.02v71.58c25.07-2.38 48.49-11.04 73.6-27.11zM316.8 212.21v68.16c25.664 7.134 46.616 9.342 73.6 5.62v-71.11c-25.999 4.187-49.943 2.676-73.6-2.67z"], + "flask": [448, 512, [], "f0c3", "M437.2 403.5L320 215V64h8c13.3 0 24-10.7 24-24V24c0-13.3-10.7-24-24-24H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h8v151L10.8 403.5C-18.5 450.6 15.3 512 70.9 512h306.2c55.7 0 89.4-61.5 60.1-108.5zM137.9 320l48.2-77.6c3.7-5.2 5.8-11.6 5.8-18.4V64h64v160c0 6.9 2.2 13.2 5.8 18.4l48.2 77.6h-172z"], + "flushed": [496, 512, [], "f579", "M344 200c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-192 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM80 224c0-39.8 32.2-72 72-72s72 32.2 72 72-32.2 72-72 72-72-32.2-72-72zm232 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-104c-39.8 0-72-32.2-72-72s32.2-72 72-72 72 32.2 72 72-32.2 72-72 72z"], + "folder": [512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z"], + "folder-open": [576, 512, [], "f07c", "M572.694 292.093L500.27 416.248A63.997 63.997 0 0 1 444.989 448H45.025c-18.523 0-30.064-20.093-20.731-36.093l72.424-124.155A64 64 0 0 1 152 256h399.964c18.523 0 30.064 20.093 20.73 36.093zM152 224h328v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v278.046l69.077-118.418C86.214 242.25 117.989 224 152 224z"], + "font": [448, 512, [], "f031", "M152 416h-24.013l26.586-80.782H292.8L319.386 416H296c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-26.739L275.495 42.746A16 16 0 0 0 260.382 32h-72.766a16 16 0 0 0-15.113 10.746L42.739 416H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm64.353-271.778c4.348-15.216 6.61-28.156 7.586-34.644.839 6.521 2.939 19.476 7.727 34.706l41.335 124.006h-98.619l41.971-124.068z"], + "font-awesome-logo-full": [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"], + "football-ball": [496, 512, [], "f44e", "M481.5 60.3c-4.8-18.2-19.1-32.5-37.3-37.4C420.3 16.5 383 8.9 339.4 8L496 164.8c-.8-43.5-8.2-80.6-14.5-104.5zm-467 391.4c4.8 18.2 19.1 32.5 37.3 37.4 23.9 6.4 61.2 14 104.8 14.9L0 347.2c.8 43.5 8.2 80.6 14.5 104.5zM4.2 283.4L220.4 500c132.5-19.4 248.8-118.7 271.5-271.4L275.6 12C143.1 31.4 26.8 130.7 4.2 283.4zm317.3-123.6c3.1-3.1 8.2-3.1 11.3 0l11.3 11.3c3.1 3.1 3.1 8.2 0 11.3l-28.3 28.3 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-22.6 22.7 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L248 278.6l-22.6 22.6 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-28.3 28.3c-3.1 3.1-8.2 3.1-11.3 0l-11.3-11.3c-3.1-3.1-3.1-8.2 0-11.3l28.3-28.3-28.3-28.2c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 28.3-28.5z"], + "forward": [512, 512, [], "f04e", "M500.5 231.4l-192-160C287.9 54.3 256 68.6 256 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2zm-256 0l-192-160C31.9 54.3 0 68.6 0 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2z"], + "frog": [576, 512, [], "f52e", "M446.53 97.43C439.67 60.23 407.19 32 368 32c-39.23 0-71.72 28.29-78.54 65.54C126.75 112.96-.5 250.12 0 416.98.11 451.9 29.08 480 64 480h304c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-79.49l35.8-48.33c24.14-36.23 10.35-88.28-33.71-106.6-23.89-9.93-51.55-4.65-72.24 10.88l-32.76 24.59c-7.06 5.31-17.09 3.91-22.41-3.19-5.3-7.08-3.88-17.11 3.19-22.41l34.78-26.09c36.84-27.66 88.28-27.62 125.13 0 10.87 8.15 45.87 39.06 40.8 93.21L469.62 480H560c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-53.63l-98.52-104.68 154.44-86.65A58.16 58.16 0 0 0 576 189.94c0-21.4-11.72-40.95-30.48-51.23-40.56-22.22-98.99-41.28-98.99-41.28zM368 136c-13.26 0-24-10.75-24-24 0-13.26 10.74-24 24-24 13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24z"], + "frown": [496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm170.2 218.2C315.8 367.4 282.9 352 248 352s-67.8 15.4-90.2 42.2c-13.5 16.3-38.1-4.2-24.6-20.5C161.7 339.6 203.6 320 248 320s86.3 19.6 114.7 53.8c13.6 16.2-11 36.7-24.5 20.4z"], + "frown-open": [496, 512, [], "f57a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm187.3 183.3c-31.2-9.6-59.4-15.3-75.3-15.3s-44.1 5.7-75.3 15.3c-11.5 3.5-22.5-6.3-20.5-18.1 7-40 60.1-61.2 95.8-61.2s88.8 21.3 95.8 61.2c2 11.9-9.1 21.6-20.5 18.1zM328 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "futbol": [512, 512, [], "f1e3", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-48 0l-.003-.282-26.064 22.741-62.679-58.5 16.454-84.355 34.303 3.072c-24.889-34.216-60.004-60.089-100.709-73.141l13.651 31.939L256 139l-74.953-41.525 13.651-31.939c-40.631 13.028-75.78 38.87-100.709 73.141l34.565-3.073 16.192 84.355-62.678 58.5-26.064-22.741-.003.282c0 43.015 13.497 83.952 38.472 117.991l7.704-33.897 85.138 10.447 36.301 77.826-29.902 17.786c40.202 13.122 84.29 13.148 124.572 0l-29.902-17.786 36.301-77.826 85.138-10.447 7.704 33.897C442.503 339.952 456 299.015 456 256zm-248.102 69.571l-29.894-91.312L256 177.732l77.996 56.527-29.622 91.312h-96.476z"], + "gamepad": [640, 512, [], "f11b", "M480 96H160C71.6 96 0 167.6 0 256s71.6 160 160 160c44.8 0 85.2-18.4 114.2-48h91.5c29 29.6 69.5 48 114.2 48 88.4 0 160-71.6 160-160S568.4 96 480 96zM256 276c0 6.6-5.4 12-12 12h-52v52c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-52H76c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h52v-52c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h52c6.6 0 12 5.4 12 12v40zm184 68c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-80c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"], + "gas-pump": [512, 512, [], "f52f", "M336 448H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm157.2-340.7l-81-81c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-6.2 6.2-6.2 16.4 0 22.6L416 97.9V160c0 28.1 20.9 51.3 48 55.2V376c0 13.2-10.8 24-24 24s-24-10.8-24-24v-32c0-48.6-39.4-88-88-88h-8V64c0-35.3-28.7-64-64-64H96C60.7 0 32 28.7 32 64v352h288V304h8c22.1 0 40 17.9 40 40v27.8c0 37.7 27 72 64.5 75.9 43 4.3 79.5-29.5 79.5-71.7V152.6c0-17-6.8-33.3-18.8-45.3zM256 192H96V64h160v128z"], + "gavel": [512, 512, [], "f0e3", "M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z"], + "gem": [576, 512, [], "f3a5", "M485.5 0L576 160H474.9L405.7 0h79.8zm-128 0l69.2 160H149.3L218.5 0h139zm-267 0h79.8l-69.2 160H0L90.5 0zM0 192h100.7l123 251.7c1.5 3.1-2.7 5.9-5 3.3L0 192zm148.2 0h279.6l-137 318.2c-1 2.4-4.5 2.4-5.5 0L148.2 192zm204.1 251.7l123-251.7H576L357.3 446.9c-2.3 2.7-6.5-.1-5-3.2z"], + "genderless": [288, 512, [], "f22d", "M144 176c44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80 35.9-80 80-80m0-64C64.5 112 0 176.5 0 256s64.5 144 144 144 144-64.5 144-144-64.5-144-144-144z"], + "gift": [512, 512, [], "f06b", "M32 448c0 17.7 14.3 32 32 32h160V320H32v128zm448-288h-42.1c6.2-12.1 10.1-25.5 10.1-40 0-48.5-39.5-88-88-88-41.6 0-68.5 21.3-103 68.3-34.5-47-61.4-68.3-103-68.3-48.5 0-88 39.5-88 88 0 14.5 3.8 27.9 10.1 40H32c-17.7 0-32 14.3-32 32v80c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-80c0-17.7-14.3-32-32-32zm-326.1 0c-22.1 0-40-17.9-40-40s17.9-40 40-40c19.9 0 34.6 3.3 86.1 80h-86.1zm206.1 0h-86.1c51.4-76.5 65.7-80 86.1-80 22.1 0 40 17.9 40 40s-17.9 40-40 40zm-72 320h160c17.7 0 32-14.3 32-32V320H288v160z"], + "glass-martini": [512, 512, [], "f000", "M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6z"], + "glass-martini-alt": [512, 512, [], "f57b", "M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6zM443.77 48l-48 48H116.24l-48-48h375.53z"], + "glasses": [576, 512, [], "f530", "M574.1 280.37L528.75 98.66c-5.91-23.7-21.59-44.05-43-55.81-21.44-11.73-46.97-14.11-70.19-6.33l-15.25 5.08c-8.39 2.79-12.92 11.86-10.12 20.24l5.06 15.18c2.79 8.38 11.85 12.91 20.23 10.12l13.18-4.39c10.87-3.62 23-3.57 33.16 1.73 10.29 5.37 17.57 14.56 20.37 25.82l38.46 153.82c-22.19-6.81-49.79-12.46-81.2-12.46-34.77 0-73.98 7.02-114.85 26.74h-73.18c-40.87-19.74-80.08-26.75-114.86-26.75-31.42 0-59.02 5.65-81.21 12.46l38.46-153.83c2.79-11.25 10.09-20.45 20.38-25.81 10.16-5.3 22.28-5.35 33.15-1.73l13.17 4.39c8.38 2.79 17.44-1.74 20.23-10.12l5.06-15.18c2.8-8.38-1.73-17.45-10.12-20.24l-15.25-5.08c-23.22-7.78-48.75-5.41-70.19 6.33-21.41 11.77-37.09 32.11-43 55.8L1.9 280.37A64.218 64.218 0 0 0 0 295.86v70.25C0 429.01 51.58 480 115.2 480h37.12c60.28 0 110.37-45.94 114.88-105.37l2.93-38.63h35.75l2.93 38.63C313.31 434.06 363.4 480 423.68 480h37.12c63.62 0 115.2-50.99 115.2-113.88v-70.25c0-5.23-.64-10.43-1.9-15.5zm-370.72 89.42c-1.97 25.91-24.4 46.21-51.06 46.21H115.2C86.97 416 64 393.62 64 366.11v-37.54c18.12-6.49 43.42-12.92 72.58-12.92 23.86 0 47.26 4.33 69.93 12.92l-3.13 41.22zM512 366.12c0 27.51-22.97 49.88-51.2 49.88h-37.12c-26.67 0-49.1-20.3-51.06-46.21l-3.13-41.22c22.67-8.59 46.08-12.92 69.95-12.92 29.12 0 54.43 6.44 72.55 12.93v37.54z"], + "globe": [496, 512, [], "f0ac", "M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z"], + "globe-africa": [496, 512, [], "f57c", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm160 215.5v6.93c0 5.87-3.32 11.24-8.57 13.86l-15.39 7.7a15.485 15.485 0 0 1-15.53-.97l-18.21-12.14a15.52 15.52 0 0 0-13.5-1.81l-2.65.88c-9.7 3.23-13.66 14.79-7.99 23.3l13.24 19.86c2.87 4.31 7.71 6.9 12.89 6.9h8.21c8.56 0 15.5 6.94 15.5 15.5v11.34c0 3.35-1.09 6.62-3.1 9.3l-18.74 24.98c-1.42 1.9-2.39 4.1-2.83 6.43l-4.3 22.83c-.62 3.29-2.29 6.29-4.76 8.56a159.608 159.608 0 0 0-25 29.16l-13.03 19.55a27.756 27.756 0 0 1-23.09 12.36c-10.51 0-20.12-5.94-24.82-15.34a78.902 78.902 0 0 1-8.33-35.29V367.5c0-8.56-6.94-15.5-15.5-15.5h-25.88c-14.49 0-28.38-5.76-38.63-16a54.659 54.659 0 0 1-16-38.63v-14.06c0-17.19 8.1-33.38 21.85-43.7l27.58-20.69a54.663 54.663 0 0 1 32.78-10.93h.89c8.48 0 16.85 1.97 24.43 5.77l14.72 7.36c3.68 1.84 7.93 2.14 11.83.84l47.31-15.77c6.33-2.11 10.6-8.03 10.6-14.7 0-8.56-6.94-15.5-15.5-15.5h-10.09c-4.11 0-8.05-1.63-10.96-4.54l-6.92-6.92a15.493 15.493 0 0 0-10.96-4.54H199.5c-8.56 0-15.5-6.94-15.5-15.5v-4.4c0-7.11 4.84-13.31 11.74-15.04l14.45-3.61c3.74-.94 7-3.23 9.14-6.44l8.08-12.11c2.87-4.31 7.71-6.9 12.89-6.9h24.21c8.56 0 15.5-6.94 15.5-15.5v-21.7C359.23 71.63 422.86 131.02 441.93 208H423.5c-8.56 0-15.5 6.94-15.5 15.5z"], + "globe-americas": [496, 512, [], "f57d", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm82.29 357.6c-3.9 3.88-7.99 7.95-11.31 11.28-2.99 3-5.1 6.7-6.17 10.71-1.51 5.66-2.73 11.38-4.77 16.87l-17.39 46.85c-13.76 3-28 4.69-42.65 4.69v-27.38c1.69-12.62-7.64-36.26-22.63-51.25-6-6-9.37-14.14-9.37-22.63v-32.01c0-11.64-6.27-22.34-16.46-27.97-14.37-7.95-34.81-19.06-48.81-26.11-11.48-5.78-22.1-13.14-31.65-21.75l-.8-.72a114.792 114.792 0 0 1-18.06-20.74c-9.38-13.77-24.66-36.42-34.59-51.14 20.47-45.5 57.36-82.04 103.2-101.89l24.01 12.01C203.48 89.74 216 82.01 216 70.11v-11.3c7.99-1.29 16.12-2.11 24.39-2.42l28.3 28.3c6.25 6.25 6.25 16.38 0 22.63L264 112l-10.34 10.34c-3.12 3.12-3.12 8.19 0 11.31l4.69 4.69c3.12 3.12 3.12 8.19 0 11.31l-8 8a8.008 8.008 0 0 1-5.66 2.34h-8.99c-2.08 0-4.08.81-5.58 2.27l-9.92 9.65a8.008 8.008 0 0 0-1.58 9.31l15.59 31.19c2.66 5.32-1.21 11.58-7.15 11.58h-5.64c-1.93 0-3.79-.7-5.24-1.96l-9.28-8.06a16.017 16.017 0 0 0-15.55-3.1l-31.17 10.39a11.95 11.95 0 0 0-8.17 11.34c0 4.53 2.56 8.66 6.61 10.69l11.08 5.54c9.41 4.71 19.79 7.16 30.31 7.16s22.59 27.29 32 32h66.75c8.49 0 16.62 3.37 22.63 9.37l13.69 13.69a30.503 30.503 0 0 1 8.93 21.57 46.536 46.536 0 0 1-13.72 32.98zM417 274.25c-5.79-1.45-10.84-5-14.15-9.97l-17.98-26.97a23.97 23.97 0 0 1 0-26.62l19.59-29.38c2.32-3.47 5.5-6.29 9.24-8.15l12.98-6.49C440.2 193.59 448 223.87 448 256c0 8.67-.74 17.16-1.82 25.54L417 274.25z"], + "globe-asia": [496, 512, [], "f57e", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm-11.34 240.23c-2.89 4.82-8.1 7.77-13.72 7.77h-.31c-4.24 0-8.31 1.69-11.31 4.69l-5.66 5.66c-3.12 3.12-3.12 8.19 0 11.31l5.66 5.66c3 3 4.69 7.07 4.69 11.31V304c0 8.84-7.16 16-16 16h-6.11c-6.06 0-11.6-3.42-14.31-8.85l-22.62-45.23c-2.44-4.88-8.95-5.94-12.81-2.08l-19.47 19.46c-3 3-7.07 4.69-11.31 4.69H50.81C49.12 277.55 48 266.92 48 256c0-110.28 89.72-200 200-200 21.51 0 42.2 3.51 61.63 9.82l-50.16 38.53c-5.11 3.41-4.63 11.06.86 13.81l10.83 5.41c5.42 2.71 8.84 8.25 8.84 14.31V216c0 4.42-3.58 8-8 8h-3.06c-3.03 0-5.8-1.71-7.15-4.42-1.56-3.12-5.96-3.29-7.76-.3l-17.37 28.95zM408 358.43c0 4.24-1.69 8.31-4.69 11.31l-9.57 9.57c-3 3-7.07 4.69-11.31 4.69h-15.16c-4.24 0-8.31-1.69-11.31-4.69l-13.01-13.01a26.767 26.767 0 0 0-25.42-7.04l-21.27 5.32c-1.27.32-2.57.48-3.88.48h-10.34c-4.24 0-8.31-1.69-11.31-4.69l-11.91-11.91a8.008 8.008 0 0 1-2.34-5.66v-10.2c0-3.27 1.99-6.21 5.03-7.43l39.34-15.74c1.98-.79 3.86-1.82 5.59-3.05l23.71-16.89a7.978 7.978 0 0 1 4.64-1.48h12.09c3.23 0 6.15 1.94 7.39 4.93l5.35 12.85a4 4 0 0 0 3.69 2.46h3.8c1.78 0 3.35-1.18 3.84-2.88l4.2-14.47c.5-1.71 2.06-2.88 3.84-2.88h6.06c2.21 0 4 1.79 4 4v12.93c0 2.12.84 4.16 2.34 5.66l11.91 11.91c3 3 4.69 7.07 4.69 11.31v24.6z"], + "golf-ball": [416, 512, [], "f450", "M96 416h224c0 17.7-14.3 32-32 32h-16c-17.7 0-32 14.3-32 32v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-20c0-17.7-14.3-32-32-32h-16c-17.7 0-32-14.3-32-32zm320-208c0 74.2-39 139.2-97.5 176h-221C39 347.2 0 282.2 0 208 0 93.1 93.1 0 208 0s208 93.1 208 208zm-180.1 43.9c18.3 0 33.1-14.8 33.1-33.1 0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1zm49.1 46.9c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1zm64-64c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1z"], + "graduation-cap": [640, 512, [], "f19d", "M622.884 199.005l-275.817 85.1a96 96 0 0 1-54.134 0L92.398 222.232c-8.564 11.438-11.018 23.05-11.918 38.335C89.778 266.165 96 276.355 96 288c0 11.952-6.557 22.366-16.265 27.861l16.197 123.096c.63 4.786-3.1 9.043-7.932 9.043H40c-4.828 0-8.562-4.253-7.932-9.044L48.265 315.86C38.557 310.366 32 299.952 32 288c0-12.034 6.646-22.511 16.465-27.976.947-17.951 3.974-33.231 12.152-47.597l-43.502-13.422c-22.876-6.801-22.766-39.241 0-46.01l275.817-85.1a96 96 0 0 1 54.134 0l275.817 85.1c22.877 6.801 22.767 39.241.001 46.01zM356.503 314.682l-.207.064-.207.061a127.998 127.998 0 0 1-72.177 0l-.207-.061-.207-.064-150.914-46.57L120 352c0 35.346 89.543 64 200 64s200-28.654 200-64l-12.583-83.888-150.914 46.57z"], + "greater-than": [384, 512, [], "f531", "M365.52 209.85L59.22 67.01c-16.06-7.49-35.15-.54-42.64 15.52L3.01 111.61c-7.49 16.06-.54 35.15 15.52 42.64L236.96 256.1 18.49 357.99C2.47 365.46-4.46 384.5 3.01 400.52l13.52 29C24 445.54 43.04 452.47 59.06 445l306.47-142.91a32.003 32.003 0 0 0 18.48-29v-34.23c-.01-12.45-7.21-23.76-18.49-29.01z"], + "greater-than-equal": [448, 512, [], "f532", "M55.22 107.69l175.56 68.09-175.44 68.05c-18.39 6.03-27.88 24.39-21.2 41l12.09 30.08c6.68 16.61 26.99 25.19 45.38 19.15L393.02 214.2c13.77-4.52 22.98-16.61 22.98-30.17v-15.96c0-13.56-9.21-25.65-22.98-30.17L91.3 17.92c-18.29-6-38.51 2.53-45.15 19.06L34.12 66.9c-6.64 16.53 2.81 34.79 21.1 40.79zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"], + "grimace": [496, 512, [], "f57f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM144 400h-8c-17.7 0-32-14.3-32-32v-8h40v40zm0-56h-40v-8c0-17.7 14.3-32 32-32h8v40zm-8-136c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm72 192h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm-8-104c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64 128c0 17.7-14.3 32-32 32h-8v-40h40v8zm0-24h-40v-40h8c17.7 0 32 14.3 32 32v8z"], + "grin": [496, 512, [], "f580", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm80 256c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"], + "grin-alt": [496, 512, [], "f581", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm63.7 128.7c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zm-160 0c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"], + "grin-beam": [496, 512, [], "f582", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 144c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"], + "grin-beam-sweat": [504, 512, [], "f583", "M456 128c26.5 0 48-21 48-47 0-20-28.5-60.4-41.6-77.8-3.2-4.3-9.6-4.3-12.8 0C436.5 20.6 408 61 408 81c0 26 21.5 47 48 47zm0 32c-44.1 0-80-35.4-80-79 0-4.4.3-14.2 8.1-32.2C345 23.1 298.3 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-35.1-7.4-68.4-20.5-98.6-6.3 1.5-12.7 2.6-19.5 2.6zm-128-8c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"], + "grin-hearts": [496, 512, [], "f584", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM90.4 183.6c6.7-17.6 26.7-26.7 44.9-21.9l7.1 1.9 2-7.1c5-18.1 22.8-30.9 41.5-27.9 21.4 3.4 34.4 24.2 28.8 44.5L195.3 243c-1.2 4.5-5.9 7.2-10.5 6l-70.2-18.2c-20.4-5.4-31.9-27-24.2-47.2zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm133.4-201.3l-70.2 18.2c-4.5 1.2-9.2-1.5-10.5-6L281.3 173c-5.6-20.3 7.4-41.1 28.8-44.5 18.6-3 36.4 9.8 41.5 27.9l2 7.1 7.1-1.9c18.2-4.7 38.2 4.3 44.9 21.9 7.7 20.3-3.8 41.9-24.2 47.2z"], + "grin-squint": [496, 512, [], "f585", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"], + "grin-squint-tears": [512, 512, [], "f586", "M409.6 111.9c22.6-3.2 73.5-12 88.3-26.8 19.2-19.2 18.9-50.6-.7-70.2S446-5 426.9 14.2c-14.8 14.8-23.5 65.7-26.8 88.3-.8 5.5 3.9 10.2 9.5 9.4zM102.4 400.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm311.7-256.5c-33 3.9-48.6-25.1-45.7-45.7 3.4-24 7.4-42.1 11.5-56.5C285.1-13.4 161.8-.5 80.6 80.6-.5 161.7-13.4 285 41.4 379.9c14.4-4.1 32.4-8 56.5-11.5 33.2-3.9 48.6 25.2 45.7 45.7-3.4 24-7.4 42.1-11.5 56.5 94.8 54.8 218.1 41.9 299.3-39.2s94-204.4 39.2-299.3c-14.4 4.1-32.5 8-56.5 11.5zM255.7 106c3.3-13.2 22.4-11.5 23.6 1.8l4.8 52.3 52.3 4.8c13.4 1.2 14.9 20.3 1.8 23.6l-90.5 22.6c-8.9 2.2-16.7-5.9-14.5-14.5l22.5-90.6zm-90.9 230.3L160 284l-52.3-4.8c-13.4-1.2-14.9-20.3-1.8-23.6l90.5-22.6c8.8-2.2 16.7 5.8 14.5 14.5L188.3 338c-3.1 13.2-22.2 11.7-23.5-1.7zm215.7 44.2c-29.3 29.3-75.7 50.4-116.7 50.4-18.9 0-36.6-4.5-51-14.7-9.8-6.9-8.7-21.8 2-27.2 28.3-14.6 63.9-42.4 97.8-76.3s61.7-69.6 76.3-97.8c5.4-10.5 20.2-11.9 27.3-2 32.3 45.3 7.1 124.7-35.7 167.6z"], + "grin-stars": [496, 512, [], "f587", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM94.6 168.9l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.2 1 8.9 8.6 4.3 13.2l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L152 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.6-4.7-1.9-12.3 4.3-13.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm157.7-249.9l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L344 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.5-4.6-1.9-12.2 4.3-13.2l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.3.9 9 8.5 4.4 13.1z"], + "grin-tears": [640, 512, [], "f588", "M102.4 256.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm523.4 26.8c-14.8-14.8-65.7-23.5-88.3-26.8-5.5-.8-10.3 3.9-9.5 9.5 3.2 22.6 12 73.5 26.8 88.3 19.2 19.2 50.6 18.9 70.2-.7s20-51.2.8-70.3zm-129.4-12.8c-3.8-26.6 19.1-49.5 45.7-45.7 8.9 1.3 16.8 2.7 24.3 4.1C552.7 104.5 447.7 8 320 8S87.3 104.5 73.6 228.5c7.5-1.4 15.4-2.8 24.3-4.1 33.2-3.9 48.6 25.3 45.7 45.7-11.8 82.3-29.9 100.4-35.8 106.4-.9.9-2 1.6-3 2.5 42.7 74.6 123 125 215.2 125s172.5-50.4 215.2-125.1c-1-.9-2.1-1.5-3-2.5-5.9-5.9-24-24-35.8-106.3zM400 152c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.7 9.2-21.6 20.7-17.9C227.1 330.5 272 336 320 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"], + "grin-tongue": [496, 512, [], "f589", "M248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-34.9 134.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z"], + "grin-tongue-squint": [496, 512, [], "f58a", "M293.1 374.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-33.8 210.3l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.7 4.7 7.7 15.9 0 20.6zm163 30c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.8-4.7-7.8-15.9 0-20.6l80-48c11.7-6.9 23.9 7.7 15.4 18L343.6 208l33.6 40.3z"], + "grin-tongue-wink": [496, 512, [], "f58b", "M344 184c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-56 225l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L112 233c-8.5 7.4-21.6.3-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c1.6 11.1-11.6 18.2-20 10.8zm152 39c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm-50.9 102.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z"], + "grin-wink": [496, 512, [], "f58c", "M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm168 25l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.6 11-11.5 18.2-20 10.8zm-243.1 87.8C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6 20.7 17.9-9.2 55-83.2 93.3-143.8 93.3s-134.5-38.3-143.8-93.3c-2-11.9 9.3-21.6 20.7-17.9z"], + "grip-horizontal": [448, 512, [], "f58d", "M96 288H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM96 96H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z"], + "grip-vertical": [320, 512, [], "f58e", "M96 32H32C14.33 32 0 46.33 0 64v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM288 32h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z"], + "h-square": [448, 512, [], "f0fd", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-112 48h-32c-8.837 0-16 7.163-16 16v80H160v-80c0-8.837-7.163-16-16-16h-32c-8.837 0-16 7.163-16 16v224c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16v-80h128v80c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144c0-8.837-7.163-16-16-16z"], + "hand-holding": [576, 512, [], "f4bd", "M565.3 328.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z"], + "hand-holding-heart": [576, 512, [], "f4be", "M275.3 250.5c7 7.4 18.4 7.4 25.5 0l108.9-114.2c31.6-33.2 29.8-88.2-5.6-118.8-30.8-26.7-76.7-21.9-104.9 7.7L288 36.9l-11.1-11.6C248.7-4.4 202.8-9.2 172 17.5c-35.3 30.6-37.2 85.6-5.6 118.8l108.9 114.2zm290 77.6c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z"], + "hand-holding-usd": [544, 512, [], "f4c0", "M257.6 144.3l50 14.3c3.6 1 6.1 4.4 6.1 8.1 0 4.6-3.8 8.4-8.4 8.4h-32.8c-3.6 0-7.1-.8-10.3-2.2-4.8-2.2-10.4-1.7-14.1 2l-17.5 17.5c-5.3 5.3-4.7 14.3 1.5 18.4 9.5 6.3 20.3 10.1 31.8 11.5V240c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16v-17.6c30.3-3.6 53.3-31 49.3-63-2.9-23-20.7-41.3-42.9-47.7l-50-14.3c-3.6-1-6.1-4.4-6.1-8.1 0-4.6 3.8-8.4 8.4-8.4h32.8c3.6 0 7.1.8 10.3 2.2 4.8 2.2 10.4 1.7 14.1-2l17.5-17.5c5.3-5.3 4.7-14.3-1.5-18.4-9.5-6.3-20.3-10.1-31.8-11.5V16c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16v17.6c-30.3 3.6-53.3 31-49.3 63 2.9 23 20.7 41.3 42.9 47.7zm276.3 183.8c-11.2-10.7-28.5-10-40.3 0L406.4 402c-10.7 9.1-24 14-37.8 14H256.9c-8.3 0-15.1-7.2-15.1-16s6.8-16 15.1-16h73.9c15.1 0 29-10.9 31.4-26.6 3.1-20-11.5-37.4-29.8-37.4H181.3c-25.5 0-50.2 9.3-69.9 26.3L67.5 384H15.1C6.8 384 0 391.2 0 400v96c0 8.8 6.8 16 15.1 16H352c13.7 0 27-4.9 37.8-14l142.8-121c14.4-12.1 15.5-35.3 1.3-48.9z"], + "hand-lizard": [576, 512, [], "f258", "M384 480h192V363.778a95.998 95.998 0 0 0-14.833-51.263L398.127 54.368A48 48 0 0 0 357.544 32H24C10.745 32 0 42.745 0 56v16c0 30.928 25.072 56 56 56h229.981c12.844 0 21.556 13.067 16.615 24.923l-21.41 51.385A32 32 0 0 1 251.648 224H128c-35.346 0-64 28.654-64 64v8c0 13.255 10.745 24 24 24h147.406a47.995 47.995 0 0 1 25.692 7.455l111.748 70.811A24.001 24.001 0 0 1 384 418.539V480z"], + "hand-paper": [448, 512, [], "f256", "M408.781 128.007C386.356 127.578 368 146.36 368 168.79V256h-8V79.79c0-22.43-18.356-41.212-40.781-40.783C297.488 39.423 280 57.169 280 79v177h-8V40.79C272 18.36 253.644-.422 231.219.007 209.488.423 192 18.169 192 40v216h-8V80.79c0-22.43-18.356-41.212-40.781-40.783C121.488 40.423 104 58.169 104 80v235.992l-31.648-43.519c-12.993-17.866-38.009-21.817-55.877-8.823-17.865 12.994-21.815 38.01-8.822 55.877l125.601 172.705A48 48 0 0 0 172.073 512h197.59c22.274 0 41.622-15.324 46.724-37.006l26.508-112.66a192.011 192.011 0 0 0 5.104-43.975V168c.001-21.831-17.487-39.577-39.218-39.993z"], + "hand-peace": [448, 512, [], "f25b", "M408 216c-22.092 0-40 17.909-40 40h-8v-32c0-22.091-17.908-40-40-40s-40 17.909-40 40v32h-8V48c0-26.51-21.49-48-48-48s-48 21.49-48 48v208h-13.572L92.688 78.449C82.994 53.774 55.134 41.63 30.461 51.324 5.787 61.017-6.356 88.877 3.337 113.551l74.765 190.342-31.09 24.872c-15.381 12.306-19.515 33.978-9.741 51.081l64 112A39.998 39.998 0 0 0 136 512h240c18.562 0 34.686-12.77 38.937-30.838l32-136A39.97 39.97 0 0 0 448 336v-80c0-22.091-17.908-40-40-40z"], + "hand-point-down": [384, 512, [], "f0a7", "M91.826 467.2V317.966c-8.248 5.841-16.558 10.57-24.918 14.153C35.098 345.752-.014 322.222 0 288c.008-18.616 10.897-32.203 29.092-40 28.286-12.122 64.329-78.648 77.323-107.534 7.956-17.857 25.479-28.453 43.845-28.464l.001-.002h171.526c11.812 0 21.897 8.596 23.703 20.269 7.25 46.837 38.483 61.76 38.315 123.731-.007 2.724.195 13.254.195 16 0 50.654-22.122 81.574-71.263 72.6-9.297 18.597-39.486 30.738-62.315 16.45-21.177 24.645-53.896 22.639-70.944 6.299V467.2c0 24.15-20.201 44.8-43.826 44.8-23.283 0-43.826-21.35-43.826-44.8zM112 72V24c0-13.255 10.745-24 24-24h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24zm212-24c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z"], + "hand-point-left": [512, 512, [], "f0a5", "M44.8 155.826h149.234c-5.841-8.248-10.57-16.558-14.153-24.918C166.248 99.098 189.778 63.986 224 64c18.616.008 32.203 10.897 40 29.092 12.122 28.286 78.648 64.329 107.534 77.323 17.857 7.956 28.453 25.479 28.464 43.845l.002.001v171.526c0 11.812-8.596 21.897-20.269 23.703-46.837 7.25-61.76 38.483-123.731 38.315-2.724-.007-13.254.195-16 .195-50.654 0-81.574-22.122-72.6-71.263-18.597-9.297-30.738-39.486-16.45-62.315-24.645-21.177-22.639-53.896-6.299-70.944H44.8c-24.15 0-44.8-20.201-44.8-43.826 0-23.283 21.35-43.826 44.8-43.826zM440 176h48c13.255 0 24 10.745 24 24v192c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24zm24 212c11.046 0 20-8.954 20-20s-8.954-20-20-20-20 8.954-20 20 8.954 20 20 20z"], + "hand-point-right": [512, 512, [], "f0a4", "M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z"], + "hand-point-up": [384, 512, [], "f0a6", "M135.652 0c23.625 0 43.826 20.65 43.826 44.8v99.851c17.048-16.34 49.766-18.346 70.944 6.299 22.829-14.288 53.017-2.147 62.315 16.45C361.878 158.426 384 189.346 384 240c0 2.746-.203 13.276-.195 16 .168 61.971-31.065 76.894-38.315 123.731C343.683 391.404 333.599 400 321.786 400H150.261l-.001-.002c-18.366-.011-35.889-10.607-43.845-28.464C93.421 342.648 57.377 276.122 29.092 264 10.897 256.203.008 242.616 0 224c-.014-34.222 35.098-57.752 66.908-44.119 8.359 3.583 16.67 8.312 24.918 14.153V44.8c0-23.45 20.543-44.8 43.826-44.8zM136 416h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24v-48c0-13.255 10.745-24 24-24zm168 28c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z"], + "hand-pointer": [448, 512, [], "f25a", "M448 240v96c0 3.084-.356 6.159-1.063 9.162l-32 136C410.686 499.23 394.562 512 376 512H168a40.004 40.004 0 0 1-32.35-16.473l-127.997-176c-12.993-17.866-9.043-42.883 8.822-55.876 17.867-12.994 42.884-9.043 55.877 8.823L104 315.992V40c0-22.091 17.908-40 40-40s40 17.909 40 40v200h8v-40c0-22.091 17.908-40 40-40s40 17.909 40 40v40h8v-24c0-22.091 17.908-40 40-40s40 17.909 40 40v24h8c0-22.091 17.908-40 40-40s40 17.909 40 40zm-256 80h-8v96h8v-96zm88 0h-8v96h8v-96zm88 0h-8v96h8v-96z"], + "hand-rock": [512, 512, [], "f255", "M512 128.79c0-26.322-20.861-48.344-47.18-48.783C437.935 79.558 416 101.217 416 128h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C333.935 47.558 312 69.217 312 96v32h-8V80.79c0-26.322-20.861-48.344-47.18-48.783C229.935 31.558 208 53.217 208 80v48h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C125.935 47.558 104 69.217 104 96v136l-8-7.111V176.79c0-26.322-20.861-48.344-47.18-48.783C21.935 127.558 0 149.217 0 176v66.445a95.998 95.998 0 0 0 32.221 71.751l111.668 99.261A47.999 47.999 0 0 1 160 449.333V456c0 13.255 10.745 24 24 24h240c13.255 0 24-10.745 24-24v-2.921a96.01 96.01 0 0 1 7.523-37.254l48.954-116.265A96.002 96.002 0 0 0 512 262.306V128.79z"], + "hand-scissors": [512, 512, [], "f257", "M216 440c0-22.092 17.909-40 40-40v-8h-32c-22.091 0-40-17.908-40-40s17.909-40 40-40h32v-8H48c-26.51 0-48-21.49-48-48s21.49-48 48-48h208v-13.572l-177.551-69.74c-24.674-9.694-36.818-37.555-27.125-62.228 9.693-24.674 37.554-36.817 62.228-27.124l190.342 74.765 24.872-31.09c12.306-15.381 33.978-19.515 51.081-9.741l112 64A40.002 40.002 0 0 1 512 168v240c0 18.562-12.77 34.686-30.838 38.937l-136 32A39.982 39.982 0 0 1 336 480h-80c-22.091 0-40-17.908-40-40z"], + "hand-spock": [512, 512, [], "f259", "M10.872 316.585c15.139-16.086 40.454-16.854 56.543-1.713L128 371.893v-79.405L88.995 120.865c-4.896-21.542 8.598-42.974 30.14-47.87 21.549-4.894 42.975 8.599 47.87 30.141L201.747 256h9.833L164.016 48.966c-4.946-21.531 8.498-42.994 30.028-47.94 21.532-4.95 42.994 8.498 47.94 30.028L293.664 256h15.105l48.425-193.702c5.357-21.432 27.075-34.462 48.507-29.104 21.432 5.358 34.463 27.075 29.104 48.507L391.231 256h11.08l30.768-129.265c5.117-21.491 26.685-34.768 48.177-29.647 21.491 5.117 34.765 26.686 29.647 48.177l-36.292 152.467A96.024 96.024 0 0 0 472 319.967v42.102a96.002 96.002 0 0 1-3.96 27.287l-26.174 88.287C435.825 498.022 417.101 512 395.846 512H179.172a48.002 48.002 0 0 1-32.898-13.046L12.585 373.128c-16.087-15.141-16.853-40.456-1.713-56.543z"], + "hands": [640, 512, [], "f4c2", "M204.8 230.4c-10.6-14.1-30.7-17-44.8-6.4-14.1 10.6-17 30.7-6.4 44.8l38.1 50.8c4.8 6.4 4.1 15.3-1.5 20.9l-12.8 12.8c-6.7 6.7-17.6 6.2-23.6-1.1L64 244.4V96c0-17.7-14.3-32-32-32S0 78.3 0 96v218.4c0 10.9 3.7 21.5 10.5 30l104.1 134.3c5 6.5 8.4 13.9 10.4 21.7 1.8 6.9 8.1 11.6 15.3 11.6H272c8.8 0 16-7.2 16-16V384c0-27.7-9-54.6-25.6-76.8l-57.6-76.8zM608 64c-17.7 0-32 14.3-32 32v148.4l-89.8 107.8c-6 7.2-17 7.7-23.6 1.1l-12.8-12.8c-5.6-5.6-6.3-14.5-1.5-20.9l38.1-50.8c10.6-14.1 7.7-34.2-6.4-44.8-14.1-10.6-34.2-7.7-44.8 6.4l-57.6 76.8C361 329.4 352 356.3 352 384v112c0 8.8 7.2 16 16 16h131.7c7.1 0 13.5-4.7 15.3-11.6 2-7.8 5.4-15.2 10.4-21.7l104.1-134.3c6.8-8.5 10.5-19.1 10.5-30V96c0-17.7-14.3-32-32-32z"], + "hands-helping": [640, 512, [], "f4c4", "M488 192H336v56c0 39.7-32.3 72-72 72s-72-32.3-72-72V126.4l-64.9 39C107.8 176.9 96 197.8 96 220.2v47.3l-80 46.2C.7 322.5-4.6 342.1 4.3 357.4l80 138.6c8.8 15.3 28.4 20.5 43.7 11.7L231.4 448H368c35.3 0 64-28.7 64-64h16c17.7 0 32-14.3 32-32v-64h8c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zm147.7-37.4L555.7 16C546.9.7 527.3-4.5 512 4.3L408.6 64H306.4c-12 0-23.7 3.4-33.9 9.7L239 94.6c-9.4 5.8-15 16.1-15 27.1V248c0 22.1 17.9 40 40 40s40-17.9 40-40v-88h184c30.9 0 56 25.1 56 56v28.5l80-46.2c15.3-8.9 20.5-28.4 11.7-43.7z"], + "handshake": [640, 512, [], "f2b5", "M434.7 64h-85.9c-8 0-15.7 3-21.6 8.4l-98.3 90c-.1.1-.2.3-.3.4-16.6 15.6-16.3 40.5-2.1 56 12.7 13.9 39.4 17.6 56.1 2.7.1-.1.3-.1.4-.2l79.9-73.2c6.5-5.9 16.7-5.5 22.6 1 6 6.5 5.5 16.6-1 22.6l-26.1 23.9L504 313.8c2.9 2.4 5.5 5 7.9 7.7V128l-54.6-54.6c-5.9-6-14.1-9.4-22.6-9.4zM544 128.2v223.9c0 17.7 14.3 32 32 32h64V128.2h-96zm48 223.9c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM0 384h64c17.7 0 32-14.3 32-32V128.2H0V384zm48-63.9c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16c0-8.9 7.2-16 16-16zm435.9 18.6L334.6 217.5l-30 27.5c-29.7 27.1-75.2 24.5-101.7-4.4-26.9-29.4-24.8-74.9 4.4-101.7L289.1 64h-83.8c-8.5 0-16.6 3.4-22.6 9.4L128 128v223.9h18.3l90.5 81.9c27.4 22.3 67.7 18.1 90-9.3l.2-.2 17.9 15.5c15.9 13 39.4 10.5 52.3-5.4l31.4-38.6 5.4 4.4c13.7 11.1 33.9 9.1 45-4.7l9.5-11.7c11.2-13.8 9.1-33.9-4.6-45.1z"], + "hashtag": [448, 512, [], "f292", "M440.667 182.109l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l14.623-81.891C377.123 38.754 371.468 32 363.997 32h-40.632a12 12 0 0 0-11.813 9.891L296.175 128H197.54l14.623-81.891C213.477 38.754 207.822 32 200.35 32h-40.632a12 12 0 0 0-11.813 9.891L132.528 128H53.432a12 12 0 0 0-11.813 9.891l-7.143 40C33.163 185.246 38.818 192 46.289 192h74.81L98.242 320H19.146a12 12 0 0 0-11.813 9.891l-7.143 40C-1.123 377.246 4.532 384 12.003 384h74.81L72.19 465.891C70.877 473.246 76.532 480 84.003 480h40.632a12 12 0 0 0 11.813-9.891L151.826 384h98.634l-14.623 81.891C234.523 473.246 240.178 480 247.65 480h40.632a12 12 0 0 0 11.813-9.891L315.472 384h79.096a12 12 0 0 0 11.813-9.891l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l22.857-128h79.096a12 12 0 0 0 11.813-9.891zM261.889 320h-98.634l22.857-128h98.634l-22.857 128z"], + "hdd": [576, 512, [], "f0a0", "M576 304v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48zm-48-80a79.557 79.557 0 0 1 30.777 6.165L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L17.223 230.165A79.557 79.557 0 0 1 48 224h480zm-48 96c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm-96 0c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"], + "heading": [512, 512, [], "f1dc", "M496 80V48c0-8.837-7.163-16-16-16H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.621v128H154.379V96H192c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.275v320H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.621V288H357.62v128H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.275V96H480c8.837 0 16-7.163 16-16z"], + "headphones": [512, 512, [], "f025", "M256 32C114.52 32 0 146.496 0 288v48a32 32 0 0 0 17.689 28.622l14.383 7.191C34.083 431.903 83.421 480 144 480h24c13.255 0 24-10.745 24-24V280c0-13.255-10.745-24-24-24h-24c-31.342 0-59.671 12.879-80 33.627V288c0-105.869 86.131-192 192-192s192 86.131 192 192v1.627C427.671 268.879 399.342 256 368 256h-24c-13.255 0-24 10.745-24 24v176c0 13.255 10.745 24 24 24h24c60.579 0 109.917-48.098 111.928-108.187l14.382-7.191A32 32 0 0 0 512 336v-48c0-141.479-114.496-256-256-256z"], + "headphones-alt": [512, 512, [], "f58f", "M160 288h-16c-35.35 0-64 28.7-64 64.12v63.76c0 35.41 28.65 64.12 64 64.12h16c17.67 0 32-14.36 32-32.06V320.06c0-17.71-14.33-32.06-32-32.06zm208 0h-16c-17.67 0-32 14.35-32 32.06v127.88c0 17.7 14.33 32.06 32 32.06h16c35.35 0 64-28.71 64-64.12v-63.76c0-35.41-28.65-64.12-64-64.12zM256 32C112.91 32 4.57 151.13 0 288v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288c0-114.67 93.33-207.8 208-207.82 114.67.02 208 93.15 208 207.82v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288C507.43 151.13 399.09 32 256 32z"], + "headset": [512, 512, [], "f590", "M192 208c0-17.67-14.33-32-32-32h-16c-35.35 0-64 28.65-64 64v48c0 35.35 28.65 64 64 64h16c17.67 0 32-14.33 32-32V208zm176 144c35.35 0 64-28.65 64-64v-48c0-35.35-28.65-64-64-64h-16c-17.67 0-32 14.33-32 32v112c0 17.67 14.33 32 32 32h16zM256 0C113.18 0 4.58 118.83 0 256v16c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-16c0-114.69 93.31-208 208-208s208 93.31 208 208h-.12c.08 2.43.12 165.72.12 165.72 0 23.35-18.93 42.28-42.28 42.28H320c0-26.51-21.49-48-48-48h-32c-26.51 0-48 21.49-48 48s21.49 48 48 48h181.72c49.86 0 90.28-40.42 90.28-90.28V256C507.42 118.83 398.82 0 256 0z"], + "heart": [512, 512, [], "f004", "M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z"], + "heartbeat": [512, 512, [], "f21e", "M320.2 243.8l-49.7 99.4c-6 12.1-23.4 11.7-28.9-.6l-56.9-126.3-30 71.7H60.6l182.5 186.5c7.1 7.3 18.6 7.3 25.7 0L451.4 288H342.3l-22.1-44.2zM473.7 73.9l-2.4-2.5c-51.5-52.6-135.8-52.6-187.4 0L256 100l-27.9-28.5c-51.5-52.7-135.9-52.7-187.4 0l-2.4 2.4C-10.4 123.7-12.5 203 31 256h102.4l35.9-86.2c5.4-12.9 23.6-13.2 29.4-.4l58.2 129.3 49-97.9c5.9-11.8 22.7-11.8 28.6 0l27.6 55.2H481c43.5-53 41.4-132.3-7.3-182.1z"], + "helicopter": [640, 512, [], "f533", "M304 384h272c17.67 0 32-14.33 32-32 0-123.71-100.29-224-224-224V64h176c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H144c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h176v64H112L68.8 70.4C65.78 66.37 61.03 64 56 64H16.01C5.6 64-2.04 73.78.49 83.88L32 192l160 64 86.4 115.2A31.992 31.992 0 0 0 304 384zm112-188.49C478.55 208.3 528.03 257.44 540.79 320H416V195.51zm219.37 263.3l-22.15-22.2c-6.25-6.26-16.24-6.1-22.64.01-7.09 6.77-13.84 11.25-24.64 11.25H240c-8.84 0-16 7.18-16 16.03v32.06c0 8.85 7.16 16.03 16 16.03h325.94c14.88 0 35.3-.47 68.45-29.52 7.02-6.14 7.57-17.05.98-23.66z"], + "highlighter": [544, 512, [], "f591", "M0 479.98L99.92 512l35.45-35.45-67.04-67.04L0 479.98zm124.61-240.01a36.592 36.592 0 0 0-10.79 38.1l13.05 42.83-50.93 50.94 96.23 96.23 50.86-50.86 42.74 13.08c13.73 4.2 28.65-.01 38.15-10.78l35.55-41.64-173.34-173.34-41.52 35.44zm403.31-160.7l-63.2-63.2c-20.49-20.49-53.38-21.52-75.12-2.35L190.55 183.68l169.77 169.78L530.27 154.4c19.18-21.74 18.15-54.63-2.35-75.13z"], + "history": [512, 512, [], "f1da", "M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z"], + "hockey-puck": [512, 512, [], "f453", "M0 160c0-53 114.6-96 256-96s256 43 256 96-114.6 96-256 96S0 213 0 160zm0 82.2V352c0 53 114.6 96 256 96s256-43 256-96V242.2c-113.4 82.3-398.5 82.4-512 0z"], + "home": [576, 512, [], "f015", "M488 312.7V456c0 13.3-10.7 24-24 24H348c-6.6 0-12-5.4-12-12V356c0-6.6-5.4-12-12-12h-72c-6.6 0-12 5.4-12 12v112c0 6.6-5.4 12-12 12H112c-13.3 0-24-10.7-24-24V312.7c0-3.6 1.6-7 4.4-9.3l188-154.8c4.4-3.6 10.8-3.6 15.3 0l188 154.8c2.7 2.3 4.3 5.7 4.3 9.3zm83.6-60.9L488 182.9V44.4c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12V117l-89.5-73.7c-17.7-14.6-43.3-14.6-61 0L4.4 251.8c-5.1 4.2-5.8 11.8-1.6 16.9l25.5 31c4.2 5.1 11.8 5.8 16.9 1.6l235.2-193.7c4.4-3.6 10.8-3.6 15.3 0l235.2 193.7c5.1 4.2 12.7 3.5 16.9-1.6l25.5-31c4.2-5.2 3.4-12.7-1.7-16.9z"], + "hospital": [448, 512, [], "f0f8", "M448 492v20H0v-20c0-6.627 5.373-12 12-12h20V120c0-13.255 10.745-24 24-24h88V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v72h88c13.255 0 24 10.745 24 24v360h20c6.627 0 12 5.373 12 12zM308 192h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-168 64h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm104 128h-40c-6.627 0-12 5.373-12 12v84h64v-84c0-6.627-5.373-12-12-12zm64-96h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-116 12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zM182 96h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6z"], + "hospital-alt": [576, 512, [], "f47d", "M544 96H416V32c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32v368c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16V128c0-17.7-14.3-32-32-32zM160 436c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm160 128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm16-170c0 3.3-2.7 6-6 6h-26v26c0 3.3-2.7 6-6 6h-20c-3.3 0-6-2.7-6-6v-26h-26c-3.3 0-6-2.7-6-6v-20c0-3.3 2.7-6 6-6h26V86c0-3.3 2.7-6 6-6h20c3.3 0 6 2.7 6 6v26h26c3.3 0 6 2.7 6 6v20zm144 298c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z"], + "hospital-symbol": [512, 512, [], "f47e", "M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm112 376c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-88h-96v88c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V136c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v88h96v-88c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v240z"], + "hot-tub": [512, 512, [], "f593", "M414.21 177.65c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C378.96 6.14 372.22 0 364.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zm-108 0c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C270.96 6.14 264.22 0 256.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zM480 256H256l-110.93-83.2a63.99 63.99 0 0 0-38.4-12.8H64c-35.35 0-64 28.65-64 64v224c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64V288c0-17.67-14.33-32-32-32zM128 440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zM64 128c35.35 0 64-28.65 64-64S99.35 0 64 0 0 28.65 0 64s28.65 64 64 64z"], + "hotel": [576, 512, [], "f594", "M560 64c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h15.98v384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h240v-80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v80h240c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-16V64h16zm-304 44.8c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm0 96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm-128-96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zM179.2 256h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8zM192 384c0-53.02 42.98-96 96-96s96 42.98 96 96H192zm256-140.8c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-96c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4z"], + "hourglass": [384, 512, [], "f254", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64z"], + "hourglass-end": [384, 512, [], "f253", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64zM192 208c-57.787 0-104-66.518-104-144h208c0 77.945-46.51 144-104 144z"], + "hourglass-half": [384, 512, [], "f252", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-75.078 384H99.08c17.059-46.797 52.096-80 92.92-80 40.821 0 75.862 33.196 92.922 80zm.019-256H99.078C91.988 108.548 88 86.748 88 64h208c0 22.805-3.987 44.587-11.059 64z"], + "hourglass-start": [384, 512, [], "f251", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-64 448H88c0-77.458 46.204-144 104-144 57.786 0 104 66.517 104 144z"], + "i-cursor": [256, 512, [], "f246", "M256 52.048V12.065C256 5.496 250.726.148 244.158.066 211.621-.344 166.469.011 128 37.959 90.266.736 46.979-.114 11.913.114 5.318.157 0 5.519 0 12.114v39.645c0 6.687 5.458 12.078 12.145 11.998C38.111 63.447 96 67.243 96 112.182V224H60c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h36v112c0 44.932-56.075 48.031-83.95 47.959C5.404 447.942 0 453.306 0 459.952v39.983c0 6.569 5.274 11.917 11.842 11.999 32.537.409 77.689.054 116.158-37.894 37.734 37.223 81.021 38.073 116.087 37.845 6.595-.043 11.913-5.405 11.913-12V460.24c0-6.687-5.458-12.078-12.145-11.998C217.889 448.553 160 444.939 160 400V288h36c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-36V112.182c0-44.932 56.075-48.213 83.95-48.142 6.646.018 12.05-5.346 12.05-11.992z"], + "id-badge": [384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM144 32h96c8.8 0 16 7.2 16 16s-7.2 16-16 16h-96c-8.8 0-16-7.2-16-16s7.2-16 16-16zm48 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 416 80 407.4 80 396.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"], + "id-card": [576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v16h576V80c0-26.5-21.5-48-48-48zM0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V128H0v304zm352-232c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zM176 192c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zM67.1 396.2C75.5 370.5 99.6 352 128 352h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.9-5.2 19.8-15.6 19.8H82.7c-10.4 0-18.8-10-15.6-19.8z"], + "id-card-alt": [576, 512, [], "f47f", "M528 64H384v96H192V64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM288 224c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm93.3 224H194.7c-10.4 0-18.8-10-15.6-19.8 8.3-25.6 32.4-44.2 60.9-44.2h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.8-5.2 19.8-15.6 19.8zM352 32c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v96h128V32z"], + "image": [512, 512, [], "f03e", "M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z"], + "images": [576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v208c0 44.112 35.888 80 80 80h336zm96-80V80c0-26.51-21.49-48-48-48H144c-26.51 0-48 21.49-48 48v256c0 26.51 21.49 48 48 48h384c26.51 0 48-21.49 48-48zM256 128c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-96 144l55.515-55.515c4.686-4.686 12.284-4.686 16.971 0L272 256l135.515-135.515c4.686-4.686 12.284-4.686 16.971 0L512 208v112H160v-48z"], + "inbox": [576, 512, [], "f01c", "M567.938 243.908L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L8.062 243.908A47.994 47.994 0 0 0 0 270.533V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V270.533a47.994 47.994 0 0 0-8.062-26.625zM162.252 128h251.497l85.333 128H376l-32 64H232l-32-64H76.918l85.334-128z"], + "indent": [448, 512, [], "f03c", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm176 144h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm-52.687-111.313l-96-95.984C17.266 138.652 0 145.776 0 160.016v191.975c0 14.329 17.325 21.304 27.313 11.313l96-95.992c6.249-6.247 6.249-16.377 0-22.625z"], + "industry": [512, 512, [], "f275", "M475.115 163.781L336 252.309v-68.28c0-18.916-20.931-30.399-36.885-20.248L160 252.309V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h464c13.255 0 24-10.745 24-24V184.029c0-18.917-20.931-30.399-36.885-20.248z"], + "infinity": [640, 512, [], "f534", "M471.1 96C405 96 353.3 137.3 320 174.6 286.7 137.3 235 96 168.9 96 75.8 96 0 167.8 0 256s75.8 160 168.9 160c66.1 0 117.8-41.3 151.1-78.6 33.3 37.3 85 78.6 151.1 78.6 93.1 0 168.9-71.8 168.9-160S564.2 96 471.1 96zM168.9 320c-40.2 0-72.9-28.7-72.9-64s32.7-64 72.9-64c38.2 0 73.4 36.1 94 64-20.4 27.6-55.9 64-94 64zm302.2 0c-38.2 0-73.4-36.1-94-64 20.4-27.6 55.9-64 94-64 40.2 0 72.9 28.7 72.9 64s-32.7 64-72.9 64z"], + "info": [192, 512, [], "f129", "M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z"], + "info-circle": [512, 512, [], "f05a", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z"], + "italic": [320, 512, [], "f033", "M204.758 416h-33.849l62.092-320h40.725a16 16 0 0 0 15.704-12.937l6.242-32C297.599 41.184 290.034 32 279.968 32H120.235a16 16 0 0 0-15.704 12.937l-6.242 32C96.362 86.816 103.927 96 113.993 96h33.846l-62.09 320H46.278a16 16 0 0 0-15.704 12.935l-6.245 32C22.402 470.815 29.967 480 40.034 480h158.479a16 16 0 0 0 15.704-12.935l6.245-32c1.927-9.88-5.638-19.065-15.704-19.065z"], + "joint": [640, 512, [], "f595", "M444.34 181.1c22.38 15.68 35.66 41.16 35.66 68.59V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-43.24-21.01-83.41-56.34-108.06C463.85 125.02 448 99.34 448 70.31V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v66.4c0 43.69 24.56 81.63 60.34 106.7zM194.97 358.98C126.03 370.07 59.69 394.69 0 432c83.65 52.28 180.3 80 278.94 80h88.57L254.79 380.49c-14.74-17.2-37.45-25.11-59.82-21.51zM553.28 87.09c-5.67-3.8-9.28-9.96-9.28-16.78V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v62.31c0 22.02 10.17 43.41 28.64 55.39C550.79 153.04 576 199.54 576 249.69V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-65.44-32.41-126.19-86.72-162.6zM360.89 352.05c-34.4.06-86.81.15-88.21.17l117.8 137.43A63.987 63.987 0 0 0 439.07 512h88.45L409.57 374.4a63.955 63.955 0 0 0-48.68-22.35zM616 352H432l117.99 137.65A63.987 63.987 0 0 0 598.58 512H616c13.25 0 24-10.75 24-24V376c0-13.26-10.75-24-24-24z"], + "key": [512, 512, [], "f084", "M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z"], + "keyboard": [576, 512, [], "f11c", "M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"], + "kiss": [496, 512, [], "f596", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm136 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm24-156c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "kiss-beam": [496, 512, [], "f597", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-39 219.9l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5zM304 396c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm65-168.1l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5z"], + "kiss-wink-heart": [504, 512, [], "f598", "M501.1 402.5c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zm-177.6-4c-5.6-20.3-2.3-42 9-59.7 29.7-46.3 98.7-45.5 127.8 4.3 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-.3-.7-23.9-84.6-23.9-84.6zM168 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm120 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-5.7-12.3 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.8-3.7-4.6-16.6 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C274.6 368.7 288 383 288 396zm16-179c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S400 181 404 206.2c1.7 11.1-11.3 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 217z"], + "kiwi-bird": [576, 512, [], "f535", "M575.81 217.98C572.64 157.41 518.28 112 457.63 112h-9.37c-52.82 0-104.25-16.25-147.74-46.24-41.99-28.96-96.04-41.62-153.21-28.7C129.3 41.12-.08 78.24 0 224c.04 70.95 38.68 132.8 95.99 166.01V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-54.26c15.36 3.96 31.4 6.26 48 6.26 5.44 0 10.68-.73 16-1.18V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-59.43c14.24-5.06 27.88-11.39 40.34-19.51C342.07 355.25 393.86 336 448.46 336c25.48 0 16.01-.31 23.05-.78l74.41 136.44c2.86 5.23 8.3 8.34 14.05 8.34 1.31 0 2.64-.16 3.95-.5 7.09-1.8 12.05-8.19 12.05-15.5 0 0 .14-240.24-.16-246.02zM463.97 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm80 153.25l-39.86-73.08c15.12-5.83 28.73-14.6 39.86-25.98v99.06z"], + "language": [640, 512, [], "f1ab", "M304 416H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h280v320zm-120.676-72.622A12 12 0 0 0 194.839 352h22.863c8.22 0 14.007-8.078 11.362-15.861L171.61 167.085a12 12 0 0 0-11.362-8.139h-32.489a12.001 12.001 0 0 0-11.362 8.139L58.942 336.139C56.297 343.922 62.084 352 70.304 352h22.805a12 12 0 0 0 11.535-8.693l9.118-31.807h60.211l9.351 31.878zm-39.051-140.42s4.32 21.061 7.83 33.21l10.8 37.531h-38.07l11.07-37.531c3.51-12.15 7.83-33.21 7.83-33.21h.54zM616 416H336V96h280c13.255 0 24 10.745 24 24v272c0 13.255-10.745 24-24 24zm-36-228h-64v-16c0-6.627-5.373-12-12-12h-16c-6.627 0-12 5.373-12 12v16h-64c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h114.106c-6.263 14.299-16.518 28.972-30.023 43.206-6.56-6.898-12.397-13.91-17.365-20.933-3.639-5.144-10.585-6.675-15.995-3.446l-7.28 4.346-6.498 3.879c-5.956 3.556-7.693 11.421-3.735 17.117 6.065 8.729 13.098 17.336 20.984 25.726-8.122 6.226-16.841 12.244-26.103 17.964-5.521 3.41-7.381 10.556-4.162 16.19l7.941 13.896c3.362 5.883 10.935 7.826 16.706 4.276 12.732-7.831 24.571-16.175 35.443-24.891 10.917 8.761 22.766 17.102 35.396 24.881 5.774 3.556 13.353 1.618 16.717-4.27l7.944-13.903c3.213-5.623 1.37-12.76-4.135-16.171a312.737 312.737 0 0 1-26.06-18.019c21.024-22.425 35.768-46.289 42.713-69.85H580c6.627 0 12-5.373 12-12v-16c0-6.625-5.373-11.998-12-11.998z"], + "laptop": [640, 512, [], "f109", "M512 64v256H128V64h384m16-64H112C85.5 0 64 21.5 64 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm100 416H389.5c-3 0-5.5 2.1-5.9 5.1C381.2 436.3 368 448 352 448h-64c-16 0-29.2-11.7-31.6-26.9-.5-2.9-3-5.1-5.9-5.1H12c-6.6 0-12 5.4-12 12v36c0 26.5 21.5 48 48 48h544c26.5 0 48-21.5 48-48v-36c0-6.6-5.4-12-12-12z"], + "laugh": [496, 512, [], "f599", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 152c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm88 272h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18-8.9 71-69.5 126-142.9 126z"], + "laugh-beam": [496, 512, [], "f59a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm24 199.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.8 4.1-15.1-4.5zm-160 0c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z"], + "laugh-squint": [496, 512, [], "f59b", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 161.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 180l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z"], + "laugh-wink": [496, 512, [], "f59c", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm20.1 198.1c4-25.2 34.2-42.1 59.9-42.1s55.9 16.9 59.9 42.1c1.7 11.1-11.4 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 217c-8.4 7.4-21.6.3-19.9-10.9zM168 160c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm230.9 146C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z"], + "leaf": [576, 512, [], "f06c", "M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z"], + "lemon": [512, 512, [], "f094", "M489.038 22.963C465.944-.13 434.648-5.93 413.947 6.129c-58.906 34.312-181.25-53.077-321.073 86.746S40.441 355.041 6.129 413.945c-12.059 20.702-6.26 51.999 16.833 75.093 23.095 23.095 54.392 28.891 75.095 16.832 58.901-34.31 181.246 53.079 321.068-86.743S471.56 156.96 505.871 98.056c12.059-20.702 6.261-51.999-16.833-75.093zM243.881 95.522c-58.189 14.547-133.808 90.155-148.358 148.358-1.817 7.27-8.342 12.124-15.511 12.124-1.284 0-2.59-.156-3.893-.481-8.572-2.144-13.784-10.83-11.642-19.403C81.901 166.427 166.316 81.93 236.119 64.478c8.575-2.143 17.261 3.069 19.403 11.642s-3.069 17.259-11.641 19.402z"], + "less-than": [384, 512, [], "f536", "M365.46 357.74L147.04 255.89l218.47-101.88c16.02-7.47 22.95-26.51 15.48-42.53l-13.52-29C360 66.46 340.96 59.53 324.94 67L18.48 209.91a32.014 32.014 0 0 0-18.48 29v34.24c0 12.44 7.21 23.75 18.48 29l306.31 142.83c16.06 7.49 35.15.54 42.64-15.52l13.56-29.08c7.49-16.06.54-35.15-15.53-42.64z"], + "less-than-equal": [448, 512, [], "f537", "M54.98 214.2l301.41 119.87c18.39 6.03 38.71-2.54 45.38-19.15l12.09-30.08c6.68-16.61-2.82-34.97-21.21-41l-175.44-68.05 175.56-68.09c18.29-6 27.74-24.27 21.1-40.79l-12.03-29.92c-6.64-16.53-26.86-25.06-45.15-19.06L54.98 137.89C41.21 142.41 32 154.5 32 168.07v15.96c0 13.56 9.21 25.65 22.98 30.17zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"], + "level-down-alt": [320, 512, [], "f3be", "M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z"], + "level-up-alt": [320, 512, [], "f3bf", "M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z"], + "life-ring": [512, 512, [], "f1cd", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm173.696 119.559l-63.399 63.399c-10.987-18.559-26.67-34.252-45.255-45.255l63.399-63.399a218.396 218.396 0 0 1 45.255 45.255zM256 352c-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96-42.981 96-96 96zM127.559 82.304l63.399 63.399c-18.559 10.987-34.252 26.67-45.255 45.255l-63.399-63.399a218.372 218.372 0 0 1 45.255-45.255zM82.304 384.441l63.399-63.399c10.987 18.559 26.67 34.252 45.255 45.255l-63.399 63.399a218.396 218.396 0 0 1-45.255-45.255zm302.137 45.255l-63.399-63.399c18.559-10.987 34.252-26.67 45.255-45.255l63.399 63.399a218.403 218.403 0 0 1-45.255 45.255z"], + "lightbulb": [384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zm-143.107-44c-9.907 0-18.826-6.078-22.376-15.327C67.697 267.541 16 277.731 16 176 16 78.803 94.805 0 192 0s176 78.803 176 176c0 101.731-51.697 91.541-90.516 192.673-3.55 9.249-12.47 15.327-22.376 15.327H128.893zM112 176c0-44.112 35.888-80 80-80 8.837 0 16-7.164 16-16s-7.163-16-16-16c-61.757 0-112 50.243-112 112 0 8.836 7.164 16 16 16s16-7.164 16-16z"], + "link": [512, 512, [], "f0c1", "M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z"], + "lira-sign": [384, 512, [], "f195", "M371.994 256h-48.019C317.64 256 312 260.912 312 267.246 312 368 230.179 416 144 416V256.781l134.603-29.912A12 12 0 0 0 288 215.155v-40.976c0-7.677-7.109-13.38-14.603-11.714L144 191.219V160.78l134.603-29.912A12 12 0 0 0 288 119.154V78.179c0-7.677-7.109-13.38-14.603-11.714L144 95.219V44c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v68.997L9.397 125.131A12 12 0 0 0 0 136.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 178.558v30.439L9.397 221.131A12 12 0 0 0 0 232.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 274.558V468c0 6.627 5.373 12 12 12h79.583c134.091 0 223.255-77.834 228.408-211.592.261-6.782-5.211-12.408-11.997-12.408z"], + "list": [512, 512, [], "f03a", "M128 116V76c0-8.837 7.163-16 16-16h352c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H144c-8.837 0-16-7.163-16-16zm16 176h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 144h64c8.837 0 16-7.163 16-16V64c0-8.837-7.163-16-16-16H16C7.163 48 0 55.163 0 64v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16z"], + "list-alt": [512, 512, [], "f022", "M464 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM128 120c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288-136v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12z"], + "list-ol": [512, 512, [], "f0cb", "M3.263 139.527c0-7.477 3.917-11.572 11.573-11.572h15.131V88.078c0-5.163.534-10.503.534-10.503h-.356s-1.779 2.67-2.848 3.738c-4.451 4.273-10.504 4.451-15.666-1.068l-5.518-6.231c-5.342-5.341-4.984-11.216.534-16.379l21.72-19.938C32.815 33.602 36.732 32 42.785 32H54.89c7.656 0 11.749 3.916 11.749 11.572v84.384h15.488c7.655 0 11.572 4.094 11.572 11.572v8.901c0 7.477-3.917 11.572-11.572 11.572H14.836c-7.656 0-11.573-4.095-11.573-11.572v-8.902zM2.211 304.591c0-47.278 50.955-56.383 50.955-69.165 0-7.18-5.954-8.755-9.28-8.755-3.153 0-6.479 1.051-9.455 3.852-5.079 4.903-10.507 7.004-16.111 2.451l-8.579-6.829c-5.779-4.553-7.18-9.805-2.803-15.409C13.592 201.981 26.025 192 47.387 192c19.437 0 44.476 10.506 44.476 39.573 0 38.347-46.753 46.402-48.679 56.909h39.049c7.529 0 11.557 4.027 11.557 11.382v8.755c0 7.354-4.028 11.382-11.557 11.382h-67.94c-7.005 0-12.083-4.028-12.083-11.382v-4.028zM5.654 454.61l5.603-9.28c3.853-6.654 9.105-7.004 15.584-3.152 4.903 2.101 9.63 3.152 14.359 3.152 10.155 0 14.358-3.502 14.358-8.23 0-6.654-5.604-9.106-15.934-9.106h-4.728c-5.954 0-9.28-2.101-12.258-7.88l-1.05-1.926c-2.451-4.728-1.226-9.806 2.801-14.884l5.604-7.004c6.829-8.405 12.257-13.483 12.257-13.483v-.35s-4.203 1.051-12.608 1.051H16.685c-7.53 0-11.383-4.028-11.383-11.382v-8.755c0-7.53 3.853-11.382 11.383-11.382h58.484c7.529 0 11.382 4.027 11.382 11.382v3.327c0 5.778-1.401 9.806-5.079 14.183l-17.509 20.137c19.611 5.078 28.716 20.487 28.716 34.845 0 21.363-14.358 44.126-48.503 44.126-16.636 0-28.192-4.728-35.896-9.455-5.779-4.202-6.304-9.805-2.626-15.934zM144 132h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"], + "list-ul": [512, 512, [], "f0ca", "M96 96c0 26.51-21.49 48-48 48S0 122.51 0 96s21.49-48 48-48 48 21.49 48 48zM48 208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm0 160c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm96-236h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"], + "location-arrow": [512, 512, [], "f124", "M443.683 4.529L27.818 196.418C-18.702 217.889-3.39 288 47.933 288H224v175.993c0 51.727 70.161 66.526 91.582 20.115L507.38 68.225c18.905-40.961-23.752-82.133-63.697-63.696z"], + "lock": [448, 512, [], "f023", "M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z"], + "lock-open": [576, 512, [], "f3c1", "M423.5 0C339.5.3 272 69.5 272 153.5V224H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48h-48v-71.1c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v80c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-80C576 68 507.5-.3 423.5 0z"], + "long-arrow-alt-down": [256, 512, [], "f309", "M168 345.941V44c0-6.627-5.373-12-12-12h-56c-6.627 0-12 5.373-12 12v301.941H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.569 9.373 33.941 0l86.059-86.059c15.119-15.119 4.411-40.971-16.971-40.971H168z"], + "long-arrow-alt-left": [448, 512, [], "f30a", "M134.059 296H436c6.627 0 12-5.373 12-12v-56c0-6.627-5.373-12-12-12H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.569 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296z"], + "long-arrow-alt-right": [448, 512, [], "f30b", "M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z"], + "long-arrow-alt-up": [256, 512, [], "f30c", "M88 166.059V468c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12V166.059h46.059c21.382 0 32.09-25.851 16.971-40.971l-86.059-86.059c-9.373-9.373-24.569-9.373-33.941 0l-86.059 86.059c-15.119 15.119-4.411 40.971 16.971 40.971H88z"], + "low-vision": [576, 512, [], "f2a8", "M569.344 231.631C512.96 135.949 407.81 72 288 72c-28.468 0-56.102 3.619-82.451 10.409L152.778 10.24c-7.601-10.858-22.564-13.5-33.423-5.9l-13.114 9.178c-10.86 7.601-13.502 22.566-5.9 33.426l43.131 58.395C89.449 131.73 40.228 174.683 6.682 231.581c-.01.017-.023.033-.034.05-8.765 14.875-8.964 33.528 0 48.739 38.5 65.332 99.742 115.862 172.859 141.349L55.316 244.302A272.194 272.194 0 0 1 83.61 208.39l119.4 170.58h.01l40.63 58.04a330.055 330.055 0 0 0 78.94 1.17l-189.98-271.4a277.628 277.628 0 0 1 38.777-21.563l251.836 356.544c7.601 10.858 22.564 13.499 33.423 5.9l13.114-9.178c10.86-7.601 13.502-22.567 5.9-33.426l-43.12-58.377-.007-.009c57.161-27.978 104.835-72.04 136.81-126.301a47.938 47.938 0 0 0 .001-48.739zM390.026 345.94l-19.066-27.23c24.682-32.567 27.711-76.353 8.8-111.68v.03c0 23.65-19.17 42.82-42.82 42.82-23.828 0-42.82-19.349-42.82-42.82 0-23.65 19.17-42.82 42.82-42.82h.03c-24.75-13.249-53.522-15.643-79.51-7.68l-19.068-27.237C253.758 123.306 270.488 120 288 120c75.162 0 136 60.826 136 136 0 34.504-12.833 65.975-33.974 89.94z"], + "luggage-cart": [640, 512, [], "f59d", "M224 320h32V96h-32c-17.67 0-32 14.33-32 32v160c0 17.67 14.33 32 32 32zm352-32V128c0-17.67-14.33-32-32-32h-32v224h32c17.67 0 32-14.33 32-32zm48 96H128V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h48v368c0 8.84 7.16 16 16 16h82.94c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16h197.88c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM480 96V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v272h192V96zm-48 0h-96V48h96v48z"], + "magic": [512, 512, [], "f0d0", "M224 96l16-32 32-16-32-16-16-32-16 32-32 16 32 16 16 32zM80 160l26.66-53.33L160 80l-53.34-26.67L80 0 53.34 53.33 0 80l53.34 26.67L80 160zm352 128l-26.66 53.33L352 368l53.34 26.67L432 448l26.66-53.33L512 368l-53.34-26.67L432 288zm70.62-193.77L417.77 9.38C411.53 3.12 403.34 0 395.15 0c-8.19 0-16.38 3.12-22.63 9.38L9.38 372.52c-12.5 12.5-12.5 32.76 0 45.25l84.85 84.85c6.25 6.25 14.44 9.37 22.62 9.37 8.19 0 16.38-3.12 22.63-9.37l363.14-363.15c12.5-12.48 12.5-32.75 0-45.24zM359.45 203.46l-50.91-50.91 86.6-86.6 50.91 50.91-86.6 86.6z"], + "magnet": [512, 512, [], "f076", "M164.1 160H12c-6.6 0-12-5.4-12-12V68c0-19.9 16.1-36 36-36h104c19.9 0 36 16.1 36 36v80c.1 6.6-5.3 12-11.9 12zm348-12V67.9c0-19.9-16.1-36-36-36h-104c-19.9 0-36 16.1-36 36v80c0 6.6 5.4 12 12 12h152c6.6.1 12-5.3 12-11.9zm-164 44c-6.6 0-12 5.4-12 12v52c0 128.1-160 127.9-160 0v-52c0-6.6-5.4-12-12-12h-152c-6.7 0-12 5.4-12 12.1.1 21.4.6 40.3 0 53.3C.1 408 136.3 504 256.9 504 377.5 504 512 408 512 257.3c-.6-12.8-.2-33 0-53.2 0-6.7-5.3-12.1-12-12.1H348.1z"], + "male": [192, 512, [], "f183", "M96 0c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64S60.654 0 96 0m48 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H48c-26.51 0-48 21.49-48 48v136c0 13.255 10.745 24 24 24h16v136c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V352h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48z"], + "map": [576, 512, [], "f279", "M0 117.66v346.32c0 11.32 11.43 19.06 21.94 14.86L160 416V32L20.12 87.95A32.006 32.006 0 0 0 0 117.66zM192 416l192 64V96L192 32v384zM554.06 33.16L416 96v384l139.88-55.95A31.996 31.996 0 0 0 576 394.34V48.02c0-11.32-11.43-19.06-21.94-14.86z"], + "map-marked": [576, 512, [], "f59f", "M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z"], + "map-marked-alt": [576, 512, [], "f5a0", "M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zm0 168c-23.2 0-42-18.8-42-42s18.8-42 42-42 42 18.8 42 42-18.8 42-42 42zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z"], + "map-marker": [384, 512, [], "f041", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0z"], + "map-marker-alt": [384, 512, [], "f3c5", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"], + "map-pin": [320, 512, [], "f276", "M192 300.813v172.82l-22.015 33.023c-4.75 7.125-15.219 7.125-19.969 0L128 473.633v-172.82a162.221 162.221 0 0 0 64 0zM160 0c79.529 0 144 64.471 144 144s-64.471 144-144 144S16 223.529 16 144 80.471 0 160 0M80 136c0-39.701 32.299-72 72-72a8 8 0 0 0 0-16c-48.523 0-88 39.477-88 88a8 8 0 0 0 16 0z"], + "map-signs": [512, 512, [], "f277", "M487.515 104.485L439.03 152.97a23.998 23.998 0 0 1-16.97 7.029H56c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h160v-8c0-13.255 10.745-24 24-24h32c13.255 0 24 10.745 24 24v8h126.059a24 24 0 0 1 16.97 7.029l48.485 48.485c4.687 4.687 4.687 12.285.001 16.971zM216 368v120c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V368h-80zm240-144H296v-48h-80v48H89.941a24 24 0 0 0-16.97 7.029l-48.485 48.485c-4.686 4.686-4.686 12.284 0 16.971l48.485 48.485a23.998 23.998 0 0 0 16.97 7.029H456c13.255 0 24-10.745 24-24v-80C480 234.745 469.255 224 456 224z"], + "marker": [512, 512, [], "f5a1", "M93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l75.4-75.4-128.02-128.02-75.4 75.4zM485.49 26.51c-35.35-35.35-92.67-35.35-128.02 0l-21.76 21.76-36.56-36.55c-15.62-15.62-40.95-15.62-56.56 0L138.47 115.84c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0l87.15-87.15 19.59 19.59L191.98 192 320 320.02l165.49-165.49c35.35-35.35 35.35-92.66 0-128.02z"], + "mars": [384, 512, [], "f222", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c0-6.6-5.4-12-12-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"], + "mars-double": [512, 512, [], "f227", "M340 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C198.5 72.1 172.2 64 144 64 64.5 64 0 128.5 0 208s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.5 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 288c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80zm356-128.1h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7c-18.2-11.4-39-18.9-61.5-21.3-2.1 21.8-8.2 43.3-18.4 63.3 1.1 0 2.2-.1 3.2-.1 44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80c0-1.1 0-2.2.1-3.2-20 10.2-41.5 16.4-63.3 18.4C168.4 455.6 229.6 512 304 512c79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12v-79c0-6.7-5.4-12.1-12-12.1z"], + "mars-stroke": [384, 512, [], "f229", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-17.5 17.5-14.1-14.1c-4.7-4.7-12.3-4.7-17 0L224.5 133c-4.7 4.7-4.7 12.3 0 17l14.1 14.1-18 18c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l18-18 14.1 14.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L329.2 164l17.5-17.5 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c-.1-6.6-5.5-12-12.1-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"], + "mars-stroke-h": [480, 512, [], "f22b", "M476.2 247.5l-55.9-55.9c-7.6-7.6-20.5-2.2-20.5 8.5V224H376v-20c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v20h-27.6c-5.8-25.6-18.7-49.9-38.6-69.8C189.6 98 98.4 98 42.2 154.2c-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 19.9-19.9 32.8-44.2 38.6-69.8H312v20c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-20h23.9v23.9c0 10.7 12.9 16 20.5 8.5l55.9-55.9c4.6-4.7 4.6-12.3-.1-17zm-275.6 65.1c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z"], + "mars-stroke-v": [288, 512, [], "f22a", "M245.8 234.2c-19.9-19.9-44.2-32.8-69.8-38.6v-25.4h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V81.4h23.9c10.7 0 16-12.9 8.5-20.5L152.5 5.1c-4.7-4.7-12.3-4.7-17 0L79.6 61c-7.6 7.6-2.2 20.5 8.5 20.5H112v24.7H92c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h20v25.4c-25.6 5.8-49.9 18.7-69.8 38.6-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 56.3-56.2 56.3-147.4 0-203.6zm-45.2 158.4c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z"], + "medal": [512, 512, [], "f5a2", "M223.75 130.75L154.62 15.54A31.997 31.997 0 0 0 127.18 0H16.03C3.08 0-4.5 14.57 2.92 25.18l111.27 158.96c29.72-27.77 67.52-46.83 109.56-53.39zM495.97 0H384.82c-11.24 0-21.66 5.9-27.44 15.54l-69.13 115.21c42.04 6.56 79.84 25.62 109.56 53.38L509.08 25.18C516.5 14.57 508.92 0 495.97 0zM256 160c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm92.52 157.26l-37.93 36.96 8.97 52.22c1.6 9.36-8.26 16.51-16.65 12.09L256 393.88l-46.9 24.65c-8.4 4.45-18.25-2.74-16.65-12.09l8.97-52.22-37.93-36.96c-6.82-6.64-3.05-18.23 6.35-19.59l52.43-7.64 23.43-47.52c2.11-4.28 6.19-6.39 10.28-6.39 4.11 0 8.22 2.14 10.33 6.39l23.43 47.52 52.43 7.64c9.4 1.36 13.17 12.95 6.35 19.59z"], + "medkit": [512, 512, [], "f0fa", "M96 480h320V128h-32V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v48H96v352zm96-384h128v32H192V96zm320 80v256c0 26.51-21.49 48-48 48h-16V128h16c26.51 0 48 21.49 48 48zM64 480H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v352zm288-208v32c0 8.837-7.163 16-16 16h-48v48c0 8.837-7.163 16-16 16h-32c-8.837 0-16-7.163-16-16v-48h-48c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h48v-48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v48h48c8.837 0 16 7.163 16 16z"], + "meh": [496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm176 192H152c-21.2 0-21.2-32 0-32h192c21.2 0 21.2 32 0 32zm-16-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "meh-blank": [496, 512, [], "f5a4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "meh-rolling-eyes": [496, 512, [], "f5a5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 224c0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64s-64-28.7-64-64zm224 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-112c-35.3 0-64-28.7-64-64 0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64z"], + "memory": [640, 512, [], "f538", "M640 130.94V96c0-17.67-14.33-32-32-32H32C14.33 64 0 78.33 0 96v34.94c18.6 6.61 32 24.19 32 45.06s-13.4 38.45-32 45.06V320h640v-98.94c-18.6-6.61-32-24.19-32-45.06s13.4-38.45 32-45.06zM224 256h-64V128h64v128zm128 0h-64V128h64v128zm128 0h-64V128h64v128zM0 448h64v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h64v-96H0v96z"], + "mercury": [288, 512, [], "f223", "M288 208c0-44.2-19.9-83.7-51.2-110.1 2.5-1.8 4.9-3.8 7.2-5.8 24.7-21.2 39.8-48.8 43.2-78.8.9-7.1-4.7-13.3-11.9-13.3h-40.5C229 0 224.1 4.1 223 9.8c-2.4 12.5-9.6 24.3-20.7 33.8C187 56.8 166.3 64 144 64s-43-7.2-58.4-20.4C74.5 34.1 67.4 22.3 64.9 9.8 63.8 4.1 58.9 0 53.2 0H12.7C5.5 0-.1 6.2.8 13.3 4.2 43.4 19.2 71 44 92.2c2.3 2 4.7 3.9 7.2 5.8C19.9 124.3 0 163.8 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z"], + "microchip": [512, 512, [], "f2db", "M416 48v416c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h224c26.51 0 48 21.49 48 48zm96 58v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42V88h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zM30 376h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6z"], + "microphone": [352, 512, [], "f130", "M176 352c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96zm160-160h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16z"], + "microphone-alt": [352, 512, [], "f3c9", "M336 192h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16zM176 352c53.02 0 96-42.98 96-96h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96z"], + "microphone-alt-slash": [640, 512, [], "f539", "M633.82 458.1L476.26 336.33C488.74 312.21 496 284.98 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67h-43.67l-41.4-32H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.78c11.71-1.62 23.1-4.28 33.96-8.08l-50.4-38.96c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z"], + "microphone-slash": [640, 512, [], "f131", "M633.82 458.1l-157.8-121.96C488.61 312.13 496 285.01 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67V96c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.77c11.66-1.6 22.85-4.54 33.67-8.31l-50.11-38.73c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z"], + "minus": [448, 512, [], "f068", "M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"], + "minus-circle": [512, 512, [], "f056", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM124 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H124z"], + "minus-square": [448, 512, [], "f146", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H92z"], + "mobile": [320, 512, [], "f10b", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "mobile-alt": [320, 512, [], "f3cd", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm112-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v312z"], + "money-bill": [640, 512, [], "f0d6", "M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 176c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 48h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z"], + "money-bill-alt": [640, 512, [], "f3d1", "M352 288h-16v-88c0-4.42-3.58-8-8-8h-13.58c-4.74 0-9.37 1.4-13.31 4.03l-15.33 10.22a7.994 7.994 0 0 0-2.22 11.09l8.88 13.31a7.994 7.994 0 0 0 11.09 2.22l.47-.31V288h-16c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8h64c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 192c-53.02 0-96-50.15-96-112 0-61.86 42.98-112 96-112s96 50.14 96 112c0 61.87-43 112-96 112zm272 32h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z"], + "money-bill-wave": [640, 512, [], "f53a", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM48 132.22c20.12 5.04 41.12 7.57 62.72 8.93C104.84 170.54 79 192.69 48 192.69v-60.47zm0 285v-47.78c34.37 0 62.18 27.27 63.71 61.4-22.53-1.81-43.59-6.31-63.71-13.62zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 27.78c-17.52-4.39-35.71-6.85-54.32-8.44 5.87-26.08 27.5-45.88 54.32-49.28v57.72zm0-236.11c-30.89-3.91-54.86-29.7-55.81-61.55 19.54 2.17 38.09 6.23 55.81 12.66v48.89z"], + "money-bill-wave-alt": [640, 512, [], "f53b", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96z"], + "money-check": [640, 512, [], "f53c", "M0 448c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128H0v320zm448-208c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-32zm0 120c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H456c-4.42 0-8-3.58-8-8v-16zM64 264c0-4.42 3.58-8 8-8h304c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm0 96c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zM624 32H16C7.16 32 0 39.16 0 48v48h640V48c0-8.84-7.16-16-16-16z"], + "money-check-alt": [640, 512, [], "f53d", "M608 32H32C14.33 32 0 46.33 0 64v384c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM176 327.88V344c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V152c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07zM416 312c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm160 0c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h272c4.42 0 8 3.58 8 8v16z"], + "monument": [384, 512, [], "f5a6", "M368 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h352c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-78.86-347.26a31.97 31.97 0 0 0-9.21-19.44L203.31 4.69c-6.25-6.25-16.38-6.25-22.63 0l-76.6 76.61a31.97 31.97 0 0 0-9.21 19.44L64 416h256l-30.86-315.26zM240 307.2c0 6.4-6.4 12.8-12.8 12.8h-70.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h70.4c6.4 0 12.8 6.4 12.8 12.8v38.4z"], + "moon": [512, 512, [], "f186", "M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z"], + "mortar-pestle": [512, 512, [], "f5a7", "M501.54 60.91c17.22-17.22 12.51-46.25-9.27-57.14a35.696 35.696 0 0 0-37.37 3.37L251.09 160h151.37l99.08-99.09zM496 192H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c0 80.98 50.2 150.11 121.13 178.32-12.76 16.87-21.72 36.8-24.95 58.69-1.46 9.92 6.04 18.98 16.07 18.98h223.5c10.03 0 17.53-9.06 16.07-18.98-3.22-21.89-12.18-41.82-24.95-58.69C429.8 406.11 480 336.98 480 256h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"], + "motorcycle": [640, 512, [], "f21c", "M512.949 192.003c-14.862-.108-29.14 2.322-42.434 6.874L437.589 144H520c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24h-45.311a24 24 0 0 0-17.839 7.945l-37.496 41.663-22.774-37.956A24 24 0 0 0 376 64h-80c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h66.411l19.2 32H227.904c-17.727-23.073-44.924-40-99.904-40H72.54c-13.455 0-24.791 11.011-24.536 24.464C48.252 141.505 58.9 152 72 152h56c24.504 0 38.686 10.919 47.787 24.769l-11.291 20.529c-13.006-3.865-26.871-5.736-41.251-5.21C55.857 194.549 1.565 249.605.034 317.021-1.603 389.076 56.317 448 128 448c59.642 0 109.744-40.794 123.953-96h84.236c13.673 0 24.589-11.421 23.976-25.077-2.118-47.12 17.522-93.665 56.185-125.026l12.485 20.808c-27.646 23.654-45.097 58.88-44.831 98.179.47 69.556 57.203 126.452 126.758 127.11 71.629.678 129.839-57.487 129.234-129.099-.588-69.591-57.455-126.386-127.047-126.892zM128 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c4.242 0 8.405.341 12.469.982L98.97 316.434C90.187 332.407 101.762 352 120 352h81.297c-12.37 28.225-40.56 48-73.297 48zm388.351-.116C470.272 402.337 432 365.554 432 320c0-21.363 8.434-40.781 22.125-55.144l49.412 82.352c4.546 7.577 14.375 10.034 21.952 5.488l13.72-8.232c7.577-4.546 10.034-14.375 5.488-21.952l-48.556-80.927A80.005 80.005 0 0 1 512 240c45.554 0 82.338 38.273 79.884 84.352-2.16 40.558-34.974 73.372-75.533 75.532z"], + "mouse-pointer": [320, 512, [], "f245", "M302.189 329.126H196.105l55.831 135.993c3.889 9.428-.555 19.999-9.444 23.999l-49.165 21.427c-9.165 4-19.443-.571-23.332-9.714l-53.053-129.136-86.664 89.138C18.729 472.71 0 463.554 0 447.977V18.299C0 1.899 19.921-6.096 30.277 5.443l284.412 292.542c11.472 11.179 3.007 31.141-12.5 31.141z"], + "music": [512, 512, [], "f001", "M470.4 1.5l-304 96C153.1 101.7 144 114 144 128v264.6c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V220.5l272-85.9v194c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V32c0-21.7-21.1-37-41.6-30.5z"], + "neuter": [288, 512, [], "f22c", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V468c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V316.4c64.1-14.5 112-71.9 112-140.4zm-144 80c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"], + "newspaper": [576, 512, [], "f1ea", "M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z"], + "not-equal": [448, 512, [], "f53e", "M416 208c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32h-23.88l51.87-66.81c5.37-7.02 4.04-17.06-2.97-22.43L415.61 3.3c-7.02-5.38-17.06-4.04-22.44 2.97L311.09 112H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h204.56l-74.53 96H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h55.49l-51.87 66.81c-5.37 7.01-4.04 17.05 2.97 22.43L64 508.7c7.02 5.38 17.06 4.04 22.43-2.97L168.52 400H416c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32H243.05l74.53-96H416z"], + "notes-medical": [384, 512, [], "f481", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm96 304c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm0-192c0 4.4-3.6 8-8 8H104c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16z"], + "object-group": [512, 512, [], "f247", "M480 128V96h20c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v20H64V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v40c0 6.627 5.373 12 12 12h20v320H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-20h384v20c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-20V128zM96 276V140c0-6.627 5.373-12 12-12h168c6.627 0 12 5.373 12 12v136c0 6.627-5.373 12-12 12H108c-6.627 0-12-5.373-12-12zm320 96c0 6.627-5.373 12-12 12H236c-6.627 0-12-5.373-12-12v-52h72c13.255 0 24-10.745 24-24v-72h84c6.627 0 12 5.373 12 12v136z"], + "object-ungroup": [576, 512, [], "f248", "M64 320v26a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6v-52a6 6 0 0 1 6-6h26V96H6a6 6 0 0 1-6-6V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v26h288V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-26v192h26a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-52a6 6 0 0 1-6-6v-26H64zm480-64v-32h26a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-52a6 6 0 0 0-6 6v26H408v72h8c13.255 0 24 10.745 24 24v64c0 13.255-10.745 24-24 24h-64c-13.255 0-24-10.745-24-24v-8H192v72h-26a6 6 0 0 0-6 6v52a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-26h288v26a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-26V256z"], + "outdent": [448, 512, [], "f03b", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm208 144h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm192-128h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM4.687 267.313l96 95.984C110.734 373.348 128 366.224 128 351.984V160.008c0-14.329-17.325-21.304-27.313-11.313l-96 95.992c-6.249 6.248-6.249 16.378 0 22.626z"], + "paint-brush": [512, 512, [], "f1fc", "M167.02 309.34c-40.12 2.58-76.53 17.86-97.19 72.3-2.35 6.21-8 9.98-14.59 9.98-11.11 0-45.46-27.67-55.25-34.35C0 439.62 37.93 512 128 512c75.86 0 128-43.77 128-120.19 0-3.11-.65-6.08-.97-9.13l-88.01-73.34zM457.89 0c-15.16 0-29.37 6.71-40.21 16.45C213.27 199.05 192 203.34 192 257.09c0 13.7 3.25 26.76 8.73 38.7l63.82 53.18c7.21 1.8 14.64 3.03 22.39 3.03 62.11 0 98.11-45.47 211.16-256.46 7.38-14.35 13.9-29.85 13.9-45.99C512 20.64 486 0 457.89 0z"], + "paint-roller": [512, 512, [], "f5aa", "M416 128V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32h352c17.67 0 32-14.33 32-32zm32-64v128c0 17.67-14.33 32-32 32H256c-35.35 0-64 28.65-64 64v32c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32v-32h160c53.02 0 96-42.98 96-96v-64c0-35.35-28.65-64-64-64z"], + "palette": [512, 512, [], "f53f", "M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "pallet": [640, 512, [], "f482", "M144 256h352c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H384v128l-64-32-64 32V0H144c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16zm480 128c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v64H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-64h48zm-336 64H128v-64h160v64zm224 0H352v-64h160v64z"], + "paper-plane": [512, 512, [], "f1d8", "M476 3.2L12.5 270.6c-18.1 10.4-15.8 35.6 2.2 43.2L121 358.4l287.3-253.2c5.5-4.9 13.3 2.6 8.6 8.3L176 407v80.5c0 23.6 28.5 32.9 42.5 15.8L282 426l124.6 52.2c14.2 6 30.4-2.9 33-18.2l72-432C515 7.8 493.3-6.8 476 3.2z"], + "paperclip": [448, 512, [], "f0c6", "M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z"], + "parachute-box": [512, 512, [], "f4cd", "M511.9 175c-9.1-75.6-78.4-132.4-158.3-158.7C390 55.7 416 116.9 416 192h28.1L327.5 321.5c-2.5-.6-4.8-1.5-7.5-1.5h-48V192h112C384 76.8 315.1 0 256 0S128 76.8 128 192h112v128h-48c-2.7 0-5 .9-7.5 1.5L67.9 192H96c0-75.1 26-136.3 62.4-175.7C78.5 42.7 9.2 99.5.1 175c-1.1 9.1 6.8 17 16 17h8.7l136.7 151.9c-.7 2.6-1.6 5.2-1.6 8.1v128c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32V352c0-2.9-.9-5.4-1.6-8.1L487.1 192h8.7c9.3 0 17.2-7.8 16.1-17z"], + "paragraph": [448, 512, [], "f1dd", "M408 32H177.531C88.948 32 16.045 103.335 16 191.918 15.956 280.321 87.607 352 176 352v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h32v344c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h40c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24z"], + "parking": [448, 512, [], "f540", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM240 320h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h96c52.9 0 96 43.1 96 96s-43.1 96-96 96zm0-128h-48v64h48c17.6 0 32-14.4 32-32s-14.4-32-32-32z"], + "passport": [448, 512, [], "f5ab", "M129.62 176h39.09c1.49-27.03 6.54-51.35 14.21-70.41-27.71 13.24-48.02 39.19-53.3 70.41zm0 32c5.29 31.22 25.59 57.17 53.3 70.41-7.68-19.06-12.72-43.38-14.21-70.41h-39.09zM224 286.69c7.69-7.45 20.77-34.42 23.43-78.69h-46.87c2.67 44.26 15.75 71.24 23.44 78.69zM200.57 176h46.87c-2.66-44.26-15.74-71.24-23.43-78.69-7.7 7.45-20.78 34.43-23.44 78.69zm64.51 102.41c27.71-13.24 48.02-39.19 53.3-70.41h-39.09c-1.49 27.03-6.53 51.35-14.21 70.41zM416 0H64C28.65 0 0 28.65 0 64v384c0 35.35 28.65 64 64 64h352c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32zm-80 416H112c-8.8 0-16-7.2-16-16s7.2-16 16-16h224c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-112-96c-70.69 0-128-57.31-128-128S153.31 64 224 64s128 57.31 128 128-57.31 128-128 128zm41.08-214.41c7.68 19.06 12.72 43.38 14.21 70.41h39.09c-5.28-31.22-25.59-57.17-53.3-70.41z"], + "paste": [448, 512, [], "f0ea", "M128 184c0-30.879 25.122-56 56-56h136V56c0-13.255-10.745-24-24-24h-80.61C204.306 12.89 183.637 0 160 0s-44.306 12.89-55.39 32H24C10.745 32 0 42.745 0 56v336c0 13.255 10.745 24 24 24h104V184zm32-144c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24zm184 248h104v200c0 13.255-10.745 24-24 24H184c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.059V256h-96v-96h6.059a24 24 0 0 1 16.97 7.029l65.941 65.941a24.002 24.002 0 0 1 7.03 16.971z"], + "pause": [448, 512, [], "f04c", "M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z"], + "pause-circle": [512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-16 328c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160zm112 0c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160z"], + "paw": [512, 512, [], "f1b0", "M85.231 330.958C36 330.958 0 273.792 0 231.5c0-28.292 16-58.042 49.538-58.042 49.231 0 85.231 57.458 85.231 99.75 0 28.292-15.692 57.75-49.538 57.75zm348 106.167c0 37.042-32 42.875-63.385 42.875-41.231 0-74.462-26.25-113.846-26.25-41.231 0-76.308 25.958-120.923 25.958-29.847 0-56.308-9.625-56.308-42.583C78.769 368 180.616 265.333 256 265.333s177.231 102.959 177.231 171.792zM182.462 203.792c-49.847 0-80-59.5-80-100.333C102.462 70.792 120.308 32 160 32c50.154 0 80 59.5 80 100.333 0 32.667-17.846 71.459-57.538 71.459zM272 132.333C272 91.5 301.846 32 352 32c39.692 0 57.539 38.792 57.539 71.458 0 40.833-30.154 100.333-80.001 100.333C289.846 203.792 272 165 272 132.333zM512 231.5c0 42.292-36 99.458-85.231 99.458-33.847 0-49.538-29.458-49.538-57.75 0-42.291 35.999-99.75 85.231-99.75C496 173.458 512 203.208 512 231.5z"], + "pen": [512, 512, [], "f304", "M290.74 93.24l128.02 128.02-277.99 277.99-114.14 12.6C11.35 513.54-1.56 500.62.14 485.34l12.7-114.22 277.9-277.88zm207.2-19.06l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.76 18.75-49.16 0-67.91z"], + "pen-alt": [512, 512, [], "f305", "M497.94 74.17l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91zm-246.8-20.53c-15.62-15.62-40.94-15.62-56.56 0L75.8 172.43c-6.25 6.25-6.25 16.38 0 22.62l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l101.82-101.82 22.63 22.62L93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l196.79-196.79-82.77-82.77-84.85-84.85z"], + "pen-fancy": [512, 512, [], "f5ac", "M79.18 282.94a32.005 32.005 0 0 0-20.24 20.24L0 480l4.69 4.69 92.89-92.89c-.66-2.56-1.57-5.03-1.57-7.8 0-17.67 14.33-32 32-32s32 14.33 32 32-14.33 32-32 32c-2.77 0-5.24-.91-7.8-1.57l-92.89 92.89L32 512l176.82-58.94a31.983 31.983 0 0 0 20.24-20.24l33.07-84.07-98.88-98.88-84.07 33.07zM369.25 28.32L186.14 227.81l97.85 97.85 199.49-183.11C568.4 67.48 443.73-55.94 369.25 28.32z"], + "pen-nib": [512, 512, [], "f5ad", "M136.6 138.79a64.003 64.003 0 0 0-43.31 41.35L0 460l14.69 14.69L164.8 324.58c-2.99-6.26-4.8-13.18-4.8-20.58 0-26.51 21.49-48 48-48s48 21.49 48 48-21.49 48-48 48c-7.4 0-14.32-1.81-20.58-4.8L37.31 497.31 52 512l279.86-93.29a64.003 64.003 0 0 0 41.35-43.31L416 224 288 96l-151.4 42.79zm361.34-64.62l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91z"], + "pen-square": [448, 512, [], "f14b", "M400 480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zM238.1 177.9L102.4 313.6l-6.3 57.1c-.8 7.6 5.6 14.1 13.3 13.3l57.1-6.3L302.2 242c2.3-2.3 2.3-6.1 0-8.5L246.7 178c-2.5-2.4-6.3-2.4-8.6-.1zM345 165.1L314.9 135c-9.4-9.4-24.6-9.4-33.9 0l-23.1 23.1c-2.3 2.3-2.3 6.1 0 8.5l55.5 55.5c2.3 2.3 6.1 2.3 8.5 0L345 199c9.3-9.3 9.3-24.5 0-33.9z"], + "pencil-alt": [512, 512, [], "f303", "M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z"], + "pencil-ruler": [512, 512, [], "f5ae", "M109.46 244.04l134.58-134.56-44.12-44.12-61.68 61.68a7.919 7.919 0 0 1-11.21 0l-11.21-11.21c-3.1-3.1-3.1-8.12 0-11.21l61.68-61.68-33.64-33.65C131.47-3.1 111.39-3.1 99 9.29L9.29 99c-12.38 12.39-12.39 32.47 0 44.86l100.17 100.18zm388.47-116.8c18.76-18.76 18.75-49.17 0-67.93l-45.25-45.25c-18.76-18.76-49.18-18.76-67.95 0l-46.02 46.01 113.2 113.2 46.02-46.03zM316.08 82.71l-297 296.96L.32 487.11c-2.53 14.49 10.09 27.11 24.59 24.56l107.45-18.84L429.28 195.9 316.08 82.71zm186.63 285.43l-33.64-33.64-61.68 61.68c-3.1 3.1-8.12 3.1-11.21 0l-11.21-11.21c-3.09-3.1-3.09-8.12 0-11.21l61.68-61.68-44.14-44.14L267.93 402.5l100.21 100.2c12.39 12.39 32.47 12.39 44.86 0l89.71-89.7c12.39-12.39 12.39-32.47 0-44.86z"], + "people-carry": [640, 512, [], "f4ce", "M128 96c26.5 0 48-21.5 48-48S154.5 0 128 0 80 21.5 80 48s21.5 48 48 48zm384 0c26.5 0 48-21.5 48-48S538.5 0 512 0s-48 21.5-48 48 21.5 48 48 48zm125.7 372.1l-44-110-41.1 46.4-2 18.2 27.7 69.2c5 12.5 17 20.1 29.7 20.1 4 0 8-.7 11.9-2.3 16.4-6.6 24.4-25.2 17.8-41.6zm-34.2-209.8L585 178.1c-4.6-20-18.6-36.8-37.5-44.9-18.5-8-39-6.7-56.1 3.3-22.7 13.4-39.7 34.5-48.1 59.4L432 229.8 416 240v-96c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16v96l-16.1-10.2-11.3-33.9c-8.3-25-25.4-46-48.1-59.4-17.2-10-37.6-11.3-56.1-3.3-18.9 8.1-32.9 24.9-37.5 44.9l-18.4 80.2c-4.6 20 .7 41.2 14.4 56.7l67.2 75.9 10.1 92.6C130 499.8 143.8 512 160 512c1.2 0 2.3-.1 3.5-.2 17.6-1.9 30.2-17.7 28.3-35.3l-10.1-92.8c-1.5-13-6.9-25.1-15.6-35l-43.3-49 17.6-70.3 6.8 20.4c4.1 12.5 11.9 23.4 24.5 32.6l51.1 32.5c4.6 2.9 12.1 4.6 17.2 5h160c5.1-.4 12.6-2.1 17.2-5l51.1-32.5c12.6-9.2 20.4-20 24.5-32.6l6.8-20.4 17.6 70.3-43.3 49c-8.7 9.9-14.1 22-15.6 35l-10.1 92.8c-1.9 17.6 10.8 33.4 28.3 35.3 1.2.1 2.3.2 3.5.2 16.1 0 30-12.1 31.8-28.5l10.1-92.6 67.2-75.9c13.6-15.5 19-36.7 14.4-56.7zM46.3 358.1l-44 110c-6.6 16.4 1.4 35 17.8 41.6 16.8 6.6 35.1-1.7 41.6-17.8l27.7-69.2-2-18.2-41.1-46.4z"], + "percent": [448, 512, [], "f295", "M112 224c61.9 0 112-50.1 112-112S173.9 0 112 0 0 50.1 0 112s50.1 112 112 112zm0-160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm224 224c-61.9 0-112 50.1-112 112s50.1 112 112 112 112-50.1 112-112-50.1-112-112-112zm0 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zM392.3.2l31.6-.1c19.4-.1 30.9 21.8 19.7 37.8L77.4 501.6a23.95 23.95 0 0 1-19.6 10.2l-33.4.1c-19.5 0-30.9-21.9-19.7-37.8l368-463.7C377.2 4 384.5.2 392.3.2z"], + "percentage": [384, 512, [], "f541", "M109.25 173.25c24.99-24.99 24.99-65.52 0-90.51-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 25 25 65.52 25 90.51 0zm256 165.49c-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 24.99 24.99 65.52 24.99 90.51 0 25-24.99 25-65.51 0-90.51zm-1.94-231.43l-22.62-22.62c-12.5-12.5-32.76-12.5-45.25 0L20.69 359.44c-12.5 12.5-12.5 32.76 0 45.25l22.62 22.62c12.5 12.5 32.76 12.5 45.25 0l274.75-274.75c12.5-12.49 12.5-32.75 0-45.25z"], + "phone": [512, 512, [], "f095", "M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z"], + "phone-slash": [640, 512, [], "f3dd", "M268.2 381.4l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48c-10.7 4.6-16.5 16.1-13.9 27.5l24 104c2.5 10.8 12.1 18.6 23.4 18.6 100.7 0 193.7-32.4 269.7-86.9l-80-61.8c-10.9 6.5-22.1 12.7-33.6 18.1zm365.6 76.7L475.1 335.5C537.9 256.4 576 156.9 576 48c0-11.2-7.7-20.9-18.6-23.4l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-12.2 26.1-27.9 50.3-46 72.8L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z"], + "phone-square": [448, 512, [], "f098", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM94 416c-7.033 0-13.057-4.873-14.616-11.627l-14.998-65a15 15 0 0 1 8.707-17.16l69.998-29.999a15 15 0 0 1 17.518 4.289l30.997 37.885c48.944-22.963 88.297-62.858 110.781-110.78l-37.886-30.997a15.001 15.001 0 0 1-4.289-17.518l30-69.998a15 15 0 0 1 17.16-8.707l65 14.998A14.997 14.997 0 0 1 384 126c0 160.292-129.945 290-290 290z"], + "phone-volume": [384, 512, [], "f2a0", "M97.333 506.966c-129.874-129.874-129.681-340.252 0-469.933 5.698-5.698 14.527-6.632 21.263-2.422l64.817 40.513a17.187 17.187 0 0 1 6.849 20.958l-32.408 81.021a17.188 17.188 0 0 1-17.669 10.719l-55.81-5.58c-21.051 58.261-20.612 122.471 0 179.515l55.811-5.581a17.188 17.188 0 0 1 17.669 10.719l32.408 81.022a17.188 17.188 0 0 1-6.849 20.958l-64.817 40.513a17.19 17.19 0 0 1-21.264-2.422zM247.126 95.473c11.832 20.047 11.832 45.008 0 65.055-3.95 6.693-13.108 7.959-18.718 2.581l-5.975-5.726c-3.911-3.748-4.793-9.622-2.261-14.41a32.063 32.063 0 0 0 0-29.945c-2.533-4.788-1.65-10.662 2.261-14.41l5.975-5.726c5.61-5.378 14.768-4.112 18.718 2.581zm91.787-91.187c60.14 71.604 60.092 175.882 0 247.428-4.474 5.327-12.53 5.746-17.552.933l-5.798-5.557c-4.56-4.371-4.977-11.529-.93-16.379 49.687-59.538 49.646-145.933 0-205.422-4.047-4.85-3.631-12.008.93-16.379l5.798-5.557c5.022-4.813 13.078-4.394 17.552.933zm-45.972 44.941c36.05 46.322 36.108 111.149 0 157.546-4.39 5.641-12.697 6.251-17.856 1.304l-5.818-5.579c-4.4-4.219-4.998-11.095-1.285-15.931 26.536-34.564 26.534-82.572 0-117.134-3.713-4.836-3.115-11.711 1.285-15.931l5.818-5.579c5.159-4.947 13.466-4.337 17.856 1.304z"], + "piggy-bank": [576, 512, [], "f4d3", "M560 224h-29.5c-8.8-20-21.6-37.7-37.4-52.5L512 96h-32c-29.4 0-55.4 13.5-73 34.3-7.6-1.1-15.1-2.3-23-2.3H256c-77.4 0-141.9 55-156.8 128H56c-14.8 0-26.5-13.5-23.5-28.8C34.7 215.8 45.4 208 57 208h1c3.3 0 6-2.7 6-6v-20c0-3.3-2.7-6-6-6-28.5 0-53.9 20.4-57.5 48.6C-3.9 258.8 22.7 288 56 288h40c0 52.2 25.4 98.1 64 127.3V496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-48h128v48c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80.7c11.8-8.9 22.3-19.4 31.3-31.3H560c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16zm-128 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM256 96h128c5.4 0 10.7.4 15.9.8 0-.3.1-.5.1-.8 0-53-43-96-96-96s-96 43-96 96c0 2.1.5 4.1.6 6.2 15.2-3.9 31-6.2 47.4-6.2z"], + "pills": [576, 512, [], "f484", "M112 32C50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V144c0-61.9-50.1-112-112-112zm48 224H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm139.7-29.7c-3.5-3.5-9.4-3.1-12.3.8-45.3 62.5-40.4 150.1 15.9 206.4 56.3 56.3 143.9 61.2 206.4 15.9 4-2.9 4.3-8.8.8-12.3L299.7 226.3zm229.8-19c-56.3-56.3-143.9-61.2-206.4-15.9-4 2.9-4.3 8.8-.8 12.3l210.8 210.8c3.5 3.5 9.4 3.1 12.3-.8 45.3-62.6 40.5-150.1-15.9-206.4z"], + "plane": [576, 512, [], "f072", "M480 192H365.71L260.61 8.06A16.014 16.014 0 0 0 246.71 0h-65.5c-10.63 0-18.3 10.17-15.38 20.39L214.86 192H112l-43.2-57.6c-3.02-4.03-7.77-6.4-12.8-6.4H16.01C5.6 128-2.04 137.78.49 147.88L32 256 .49 364.12C-2.04 374.22 5.6 384 16.01 384H56c5.04 0 9.78-2.37 12.8-6.4L112 320h102.86l-49.03 171.6c-2.92 10.22 4.75 20.4 15.38 20.4h65.5c5.74 0 11.04-3.08 13.89-8.06L365.71 320H480c35.35 0 96-28.65 96-64s-60.65-64-96-64z"], + "plane-arrival": [640, 512, [], "f5af", "M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM44.81 205.66l88.74 80a62.607 62.607 0 0 0 25.47 13.93l287.6 78.35c26.48 7.21 54.56 8.72 81 1.36 29.67-8.27 43.44-21.21 47.25-35.71 3.83-14.5-1.73-32.71-23.37-54.96-19.28-19.82-44.35-32.79-70.83-40l-97.51-26.56L282.8 30.22c-1.51-5.81-5.95-10.35-11.66-11.91L206.05.58c-10.56-2.88-20.9 5.32-20.71 16.44l47.92 164.21-102.2-27.84-27.59-67.88c-1.93-4.89-6.01-8.57-11.02-9.93L52.72 64.75c-10.34-2.82-20.53 5-20.72 15.88l.23 101.78c.19 8.91 6.03 17.34 12.58 23.25z"], + "plane-departure": [640, 512, [], "f5b0", "M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM80.55 341.27c6.28 6.84 15.1 10.72 24.33 10.71l130.54-.18a65.62 65.62 0 0 0 29.64-7.12l290.96-147.65c26.74-13.57 50.71-32.94 67.02-58.31 18.31-28.48 20.3-49.09 13.07-63.65-7.21-14.57-24.74-25.27-58.25-27.45-29.85-1.94-59.54 5.92-86.28 19.48l-98.51 49.99-218.7-82.06a17.799 17.799 0 0 0-18-1.11L90.62 67.29c-10.67 5.41-13.25 19.65-5.17 28.53l156.22 98.1-103.21 52.38-72.35-36.47a17.804 17.804 0 0 0-16.07.02L9.91 230.22c-10.44 5.3-13.19 19.12-5.57 28.08l76.21 82.97z"], + "play": [448, 512, [], "f04b", "M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z"], + "play-circle": [512, 512, [], "f144", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z"], + "plug": [384, 512, [], "f1e6", "M256 144V32c0-17.673 14.327-32 32-32s32 14.327 32 32v112h-64zm112 16H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h16v32c0 77.406 54.969 141.971 128 156.796V512h64v-99.204c73.031-14.825 128-79.39 128-156.796v-32h16c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm-240-16V32c0-17.673-14.327-32-32-32S64 14.327 64 32v112h64z"], + "plus": [448, 512, [], "f067", "M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"], + "plus-circle": [512, 512, [], "f055", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"], + "plus-square": [448, 512, [], "f0fe", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-32 252c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92H92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"], + "podcast": [448, 512, [], "f2ce", "M267.429 488.563C262.286 507.573 242.858 512 224 512c-18.857 0-38.286-4.427-43.428-23.437C172.927 460.134 160 388.898 160 355.75c0-35.156 31.142-43.75 64-43.75s64 8.594 64 43.75c0 32.949-12.871 104.179-20.571 132.813zM156.867 288.554c-18.693-18.308-29.958-44.173-28.784-72.599 2.054-49.724 42.395-89.956 92.124-91.881C274.862 121.958 320 165.807 320 220c0 26.827-11.064 51.116-28.866 68.552-2.675 2.62-2.401 6.986.628 9.187 9.312 6.765 16.46 15.343 21.234 25.363 1.741 3.654 6.497 4.66 9.449 1.891 28.826-27.043 46.553-65.783 45.511-108.565-1.855-76.206-63.595-138.208-139.793-140.369C146.869 73.753 80 139.215 80 220c0 41.361 17.532 78.7 45.55 104.989 2.953 2.771 7.711 1.77 9.453-1.887 4.774-10.021 11.923-18.598 21.235-25.363 3.029-2.2 3.304-6.566.629-9.185zM224 0C100.204 0 0 100.185 0 224c0 89.992 52.602 165.647 125.739 201.408 4.333 2.118 9.267-1.544 8.535-6.31-2.382-15.512-4.342-30.946-5.406-44.339-.146-1.836-1.149-3.486-2.678-4.512-47.4-31.806-78.564-86.016-78.187-147.347.592-96.237 79.29-174.648 175.529-174.899C320.793 47.747 400 126.797 400 224c0 61.932-32.158 116.49-80.65 147.867-.999 14.037-3.069 30.588-5.624 47.23-.732 4.767 4.203 8.429 8.535 6.31C395.227 389.727 448 314.187 448 224 448 100.205 347.815 0 224 0zm0 160c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z"], + "poo": [512, 512, [], "f2fe", "M451.4 369.1C468.7 356 480 335.4 480 312c0-39.8-32.2-72-72-72h-14.1c13.4-11.7 22.1-28.8 22.1-48 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C250.3 14.6 256 30.6 256 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 19.2 8.7 36.3 22.1 48H104c-39.8 0-72 32.2-72 72 0 23.4 11.3 44 28.6 57.1C26.3 374.6 0 404.1 0 440c0 39.8 32.2 72 72 72h368c39.8 0 72-32.2 72-72 0-35.9-26.3-65.4-60.6-70.9zM192 256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm159.5 139C341 422.9 293 448 256 448s-85-25.1-95.5-53c-2-5.3 2-11 7.8-11h175.4c5.8 0 9.8 5.7 7.8 11zM320 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "portrait": [384, 512, [], "f3e0", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM192 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 384 80 375.4 80 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"], + "pound-sign": [320, 512, [], "f154", "M308 352h-45.495c-6.627 0-12 5.373-12 12v50.848H128V288h84c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-84v-63.556c0-32.266 24.562-57.086 61.792-57.086 23.658 0 45.878 11.505 57.652 18.849 5.151 3.213 11.888 2.051 15.688-2.685l28.493-35.513c4.233-5.276 3.279-13.005-2.119-17.081C273.124 54.56 236.576 32 187.931 32 106.026 32 48 84.742 48 157.961V224H20c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h28v128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12V364c0-6.627-5.373-12-12-12z"], + "power-off": [512, 512, [], "f011", "M400 54.1c63 45 104 118.6 104 201.9 0 136.8-110.8 247.7-247.5 248C120 504.3 8.2 393 8 256.4 7.9 173.1 48.9 99.3 111.8 54.2c11.7-8.3 28-4.8 35 7.7L162.6 90c5.9 10.5 3.1 23.8-6.6 31-41.5 30.8-68 79.6-68 134.9-.1 92.3 74.5 168.1 168 168.1 91.6 0 168.6-74.2 168-169.1-.3-51.8-24.7-101.8-68.1-134-9.7-7.2-12.4-20.5-6.5-30.9l15.8-28.1c7-12.4 23.2-16.1 34.8-7.8zM296 264V24c0-13.3-10.7-24-24-24h-32c-13.3 0-24 10.7-24 24v240c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24z"], + "prescription": [384, 512, [], "f5b1", "M301.26 352l78.06-78.06c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0L256 306.74l-83.96-83.96C219.31 216.8 256 176.89 256 128c0-53.02-42.98-96-96-96H16C7.16 32 0 39.16 0 48v256c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-80h18.75l128 128-78.06 78.06c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0L256 397.25l78.06 78.06c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63L301.26 352zM64 96h96c17.64 0 32 14.36 32 32s-14.36 32-32 32H64V96z"], + "prescription-bottle": [384, 512, [], "f485", "M32 192h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v64zM360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24z"], + "prescription-bottle-alt": [384, 512, [], "f486", "M360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24zM32 480c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v352zm64-184c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48z"], + "print": [512, 512, [], "f02f", "M464 192h-16V81.941a24 24 0 0 0-7.029-16.97L383.029 7.029A24 24 0 0 0 366.059 0H88C74.745 0 64 10.745 64 24v168H48c-26.51 0-48 21.49-48 48v132c0 6.627 5.373 12 12 12h52v104c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V384h52c6.627 0 12-5.373 12-12V240c0-26.51-21.49-48-48-48zm-80 256H128v-96h256v96zM128 224V64h192v40c0 13.2 10.8 24 24 24h40v96H128zm304 72c-13.254 0-24-10.746-24-24s10.746-24 24-24 24 10.746 24 24-10.746 24-24 24z"], + "procedures": [640, 512, [], "f487", "M528 224H272c-8.8 0-16 7.2-16 16v144H64V144c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v352c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h512v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-61.9-50.1-112-112-112zM136 96h126.1l27.6 55.2c5.9 11.8 22.7 11.8 28.6 0L368 51.8 390.1 96H512c8.8 0 16-7.2 16-16s-7.2-16-16-16H409.9L382.3 8.8C376.4-3 359.6-3 353.7 8.8L304 108.2l-19.9-39.8c-1.4-2.7-4.1-4.4-7.2-4.4H136c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm24 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z"], + "project-diagram": [640, 512, [], "f542", "M384 320H256c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM192 32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v128c0 17.67 14.33 32 32 32h95.72l73.16 128.04C211.98 300.98 232.4 288 256 288h.28L192 175.51V128h224V64H192V32zM608 0H480c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32z"], + "puzzle-piece": [576, 512, [], "f12e", "M519.442 288.651c-41.519 0-59.5 31.593-82.058 31.593C377.409 320.244 432 144 432 144s-196.288 80-196.288-3.297c0-35.827 36.288-46.25 36.288-85.985C272 19.216 243.885 0 210.539 0c-34.654 0-66.366 18.891-66.366 56.346 0 41.364 31.711 59.277 31.711 81.75C175.885 207.719 0 166.758 0 166.758v333.237s178.635 41.047 178.635-28.662c0-22.473-40-40.107-40-81.471 0-37.456 29.25-56.346 63.577-56.346 33.673 0 61.788 19.216 61.788 54.717 0 39.735-36.288 50.158-36.288 85.985 0 60.803 129.675 25.73 181.23 25.73 0 0-34.725-120.101 25.827-120.101 35.962 0 46.423 36.152 86.308 36.152C556.712 416 576 387.99 576 354.443c0-34.199-18.962-65.792-56.558-65.792z"], + "qrcode": [448, 512, [], "f029", "M0 224h192V32H0v192zM64 96h64v64H64V96zm192-64v192h192V32H256zm128 128h-64V96h64v64zM0 480h192V288H0v192zm64-128h64v64H64v-64zm352-64h32v128h-96v-32h-32v96h-64V288h96v32h64v-32zm0 160h32v32h-32v-32zm-64 0h32v32h-32v-32z"], + "question": [384, 512, [], "f128", "M202.021 0C122.202 0 70.503 32.703 29.914 91.026c-7.363 10.58-5.093 25.086 5.178 32.874l43.138 32.709c10.373 7.865 25.132 6.026 33.253-4.148 25.049-31.381 43.63-49.449 82.757-49.449 30.764 0 68.816 19.799 68.816 49.631 0 22.552-18.617 34.134-48.993 51.164-35.423 19.86-82.299 44.576-82.299 106.405V320c0 13.255 10.745 24 24 24h72.471c13.255 0 24-10.745 24-24v-5.773c0-42.86 125.268-44.645 125.268-160.627C377.504 66.256 286.902 0 202.021 0zM192 373.459c-38.196 0-69.271 31.075-69.271 69.271 0 38.195 31.075 69.27 69.271 69.27s69.271-31.075 69.271-69.271-31.075-69.27-69.271-69.27z"], + "question-circle": [512, 512, [], "f059", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z"], + "quidditch": [640, 512, [], "f458", "M256.5 216.8L343.2 326s-16.6 102.4-76.6 150.1C206.7 523.8 0 510.2 0 510.2s3.8-23.1 11-55.4l94.6-112.2c4-4.7-.9-11.6-6.6-9.5l-60.4 22.1c14.4-41.7 32.7-80 54.6-97.5 59.9-47.8 163.3-40.9 163.3-40.9zm238 135c-44 0-79.8 35.8-79.8 79.9 0 44.1 35.7 79.9 79.8 79.9 44.1 0 79.8-35.8 79.8-79.9 0-44.2-35.8-79.9-79.8-79.9zM636.5 31L616.7 6c-5.5-6.9-15.5-8-22.4-2.6L361.8 181.3l-34.1-43c-5.1-6.4-15.1-5.2-18.6 2.2l-25.3 54.6 86.7 109.2 58.8-12.4c8-1.7 11.4-11.2 6.3-17.6l-34.1-42.9L634 53.5c6.9-5.5 8-15.6 2.5-22.5z"], + "quote-left": [512, 512, [], "f10d", "M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z"], + "quote-right": [512, 512, [], "f10e", "M464 32H336c-26.5 0-48 21.5-48 48v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48zm-288 0H48C21.5 32 0 53.5 0 80v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48z"], + "random": [512, 512, [], "f074", "M504.971 359.029c9.373 9.373 9.373 24.569 0 33.941l-80 79.984c-15.01 15.01-40.971 4.49-40.971-16.971V416h-58.785a12.004 12.004 0 0 1-8.773-3.812l-70.556-75.596 53.333-57.143L352 336h32v-39.981c0-21.438 25.943-31.998 40.971-16.971l80 79.981zM12 176h84l52.781 56.551 53.333-57.143-70.556-75.596A11.999 11.999 0 0 0 122.785 96H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12zm372 0v39.984c0 21.46 25.961 31.98 40.971 16.971l80-79.984c9.373-9.373 9.373-24.569 0-33.941l-80-79.981C409.943 24.021 384 34.582 384 56.019V96h-58.785a12.004 12.004 0 0 0-8.773 3.812L96 336H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h110.785c3.326 0 6.503-1.381 8.773-3.812L352 176h32z"], + "receipt": [384, 512, [], "f543", "M358.4 3.2L320 48 265.6 3.2a15.9 15.9 0 0 0-19.2 0L192 48 137.6 3.2a15.9 15.9 0 0 0-19.2 0L64 48 25.6 3.2C15-4.7 0 2.8 0 16v480c0 13.2 15 20.7 25.6 12.8L64 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L192 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L320 464l38.4 44.8c10.5 7.9 25.6.4 25.6-12.8V16c0-13.2-15-20.7-25.6-12.8zM320 360c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16z"], + "recycle": [512, 512, [], "f1b8", "M184.561 261.903c3.232 13.997-12.123 24.635-24.068 17.168l-40.736-25.455-50.867 81.402C55.606 356.273 70.96 384 96.012 384H148c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12H96.115c-75.334 0-121.302-83.048-81.408-146.88l50.822-81.388-40.725-25.448c-12.081-7.547-8.966-25.961 4.879-29.158l110.237-25.45c8.611-1.988 17.201 3.381 19.189 11.99l25.452 110.237zm98.561-182.915l41.289 66.076-40.74 25.457c-12.051 7.528-9 25.953 4.879 29.158l110.237 25.45c8.672 1.999 17.215-3.438 19.189-11.99l25.45-110.237c3.197-13.844-11.99-24.719-24.068-17.168l-40.687 25.424-41.263-66.082c-37.521-60.033-125.209-60.171-162.816 0l-17.963 28.766c-3.51 5.62-1.8 13.021 3.82 16.533l33.919 21.195c5.62 3.512 13.024 1.803 16.536-3.817l17.961-28.743c12.712-20.341 41.973-19.676 54.257-.022zM497.288 301.12l-27.515-44.065c-3.511-5.623-10.916-7.334-16.538-3.821l-33.861 21.159c-5.62 3.512-7.33 10.915-3.818 16.536l27.564 44.112c13.257 21.211-2.057 48.96-27.136 48.96H320V336.02c0-14.213-17.242-21.383-27.313-11.313l-80 79.981c-6.249 6.248-6.249 16.379 0 22.627l80 79.989C302.689 517.308 320 510.3 320 495.989V448h95.88c75.274 0 121.335-82.997 81.408-146.88z"], + "redo": [512, 512, [], "f01e", "M500.333 0h-47.411c-6.853 0-12.314 5.729-11.986 12.574l3.966 82.759C399.416 41.899 331.672 8 256.001 8 119.34 8 7.899 119.526 8 256.187 8.101 393.068 119.096 504 256 504c63.926 0 122.202-24.187 166.178-63.908 5.113-4.618 5.354-12.561.482-17.433l-33.971-33.971c-4.466-4.466-11.64-4.717-16.38-.543C341.308 415.448 300.606 432 256 432c-97.267 0-176-78.716-176-176 0-97.267 78.716-176 176-176 60.892 0 114.506 30.858 146.099 77.8l-101.525-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12z"], + "redo-alt": [512, 512, [], "f2f9", "M256.455 8c66.269.119 126.437 26.233 170.859 68.685l35.715-35.715C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.75c-30.864-28.899-70.801-44.907-113.23-45.273-92.398-.798-170.283 73.977-169.484 169.442C88.764 348.009 162.184 424 256 424c41.127 0 79.997-14.678 110.629-41.556 4.743-4.161 11.906-3.908 16.368.553l39.662 39.662c4.872 4.872 4.631 12.815-.482 17.433C378.202 479.813 319.926 504 256 504 119.034 504 8.001 392.967 8 256.002 7.999 119.193 119.646 7.755 256.455 8z"], + "registered": [512, 512, [], "f25d", "M285.363 207.475c0 18.6-9.831 28.431-28.431 28.431h-29.876v-56.14h23.378c28.668 0 34.929 8.773 34.929 27.709zM504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM363.411 360.414c-46.729-84.825-43.299-78.636-44.702-80.98 23.432-15.172 37.945-42.979 37.945-74.486 0-54.244-31.5-89.252-105.498-89.252h-70.667c-13.255 0-24 10.745-24 24V372c0 13.255 10.745 24 24 24h22.567c13.255 0 24-10.745 24-24v-71.663h25.556l44.129 82.937a24.001 24.001 0 0 0 21.188 12.727h24.464c18.261-.001 29.829-19.591 21.018-35.587z"], + "reply": [512, 512, [], "f3e5", "M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z"], + "reply-all": [576, 512, [], "f122", "M136.309 189.836L312.313 37.851C327.72 24.546 352 35.348 352 56.015v82.763c129.182 10.231 224 52.212 224 183.548 0 61.441-39.582 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 38.512-123.162-3.922-169.482-112.59-182.015v84.175c0 20.701-24.3 31.453-39.687 18.164L136.309 226.164c-11.071-9.561-11.086-26.753 0-36.328zm-128 36.328L184.313 378.15C199.7 391.439 224 380.687 224 359.986v-15.818l-108.606-93.785A55.96 55.96 0 0 1 96 207.998a55.953 55.953 0 0 1 19.393-42.38L224 71.832V56.015c0-20.667-24.28-31.469-39.687-18.164L8.309 189.836c-11.086 9.575-11.071 26.767 0 36.328z"], + "retweet": [640, 512, [], "f079", "M629.657 343.598L528.971 444.284c-9.373 9.372-24.568 9.372-33.941 0L394.343 343.598c-9.373-9.373-9.373-24.569 0-33.941l10.823-10.823c9.562-9.562 25.133-9.34 34.419.492L480 342.118V160H292.451a24.005 24.005 0 0 1-16.971-7.029l-16-16C244.361 121.851 255.069 96 276.451 96H520c13.255 0 24 10.745 24 24v222.118l40.416-42.792c9.285-9.831 24.856-10.054 34.419-.492l10.823 10.823c9.372 9.372 9.372 24.569-.001 33.941zm-265.138 15.431A23.999 23.999 0 0 0 347.548 352H160V169.881l40.416 42.792c9.286 9.831 24.856 10.054 34.419.491l10.822-10.822c9.373-9.373 9.373-24.569 0-33.941L144.971 67.716c-9.373-9.373-24.569-9.373-33.941 0L10.343 168.402c-9.373 9.373-9.373 24.569 0 33.941l10.822 10.822c9.562 9.562 25.133 9.34 34.419-.491L96 169.881V392c0 13.255 10.745 24 24 24h243.549c21.382 0 32.09-25.851 16.971-40.971l-16.001-16z"], + "ribbon": [448, 512, [], "f4d6", "M6.1 444.3c-9.6 10.8-7.5 27.6 4.5 35.7l68.8 27.9c9.9 6.7 23.3 5 31.3-3.8l91.8-101.9-79.2-87.9-117.2 130zm435.8 0s-292-324.6-295.4-330.1c15.4-8.4 40.2-17.9 77.5-17.9s62.1 9.5 77.5 17.9c-3.3 5.6-56 64.6-56 64.6l79.1 87.7 34.2-38c28.7-31.9 33.3-78.6 11.4-115.5l-43.7-73.5c-4.3-7.2-9.9-13.3-16.8-18-40.7-27.6-127.4-29.7-171.4 0-6.9 4.7-12.5 10.8-16.8 18l-43.6 73.2c-1.5 2.5-37.1 62.2 11.5 116L337.5 504c8 8.9 21.4 10.5 31.3 3.8l68.8-27.9c11.9-8 14-24.8 4.3-35.6z"], + "road": [576, 512, [], "f018", "M567.3 383.6L429.9 78.2C426 69.5 417.4 64 408 64h-96.1l1.9 18.8c.7 7.1-4.8 13.2-11.9 13.2H274c-7.1 0-12.7-6.2-11.9-13.2L264 64h-96c-9.4 0-18 5.5-21.9 14.2L8.7 383.6C3.2 395.8 0 409.6 0 424c0 13.3 10.7 24 24 24h213.6c-7.1 0-12.7-6.2-11.9-13.2l10.8-104c.6-6.1 5.8-10.8 11.9-10.8h79.2c6.1 0 11.3 4.6 11.9 10.8l10.8 104c.7 7.1-4.8 13.2-11.9 13.2H552c13.2 0 24-10.7 24-24 0-13.9-3-27.7-8.7-40.4zM254.7 154.8l3.3-32c.6-6.1 5.8-10.8 11.9-10.8h36.2c6.1 0 11.3 4.6 11.9 10.8l3.3 32c.7 7.1-4.8 13.2-11.9 13.2h-42.8c-7.1 0-12.7-6.2-11.9-13.2zM321.8 288h-67.6c-7.1 0-12.7-6.2-11.9-13.2l7.4-72c.6-6.1 5.8-10.8 11.9-10.8h52.7c6.1 0 11.3 4.6 11.9 10.8l7.4 72c.9 7-4.7 13.2-11.8 13.2z"], + "robot": [640, 512, [], "f544", "M0 256v128c0 17.7 14.3 32 32 32h32V224H32c-17.7 0-32 14.3-32 32zM464 96H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H176c-44.2 0-80 35.8-80 80v272c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V176c0-44.2-35.8-80-80-80zM256 416h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm128 120h-64v-32h64v32zm96 0h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm192-72h-32v192h32c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32z"], + "rocket": [512, 512, [], "f135", "M505.1 19.1C503.8 13 499 8.2 492.9 6.9 460.7 0 435.5 0 410.4 0 307.2 0 245.3 55.2 199.1 128H94.9c-18.2 0-34.8 10.3-42.9 26.5L2.6 253.3c-8 16 3.6 34.7 21.5 34.7h95.1c-5.9 12.8-11.9 25.5-18 37.7-3.1 6.2-1.9 13.6 3 18.5l63.6 63.6c4.9 4.9 12.3 6.1 18.5 3 12.2-6.1 24.9-12 37.7-17.9V488c0 17.8 18.8 29.4 34.7 21.5l98.7-49.4c16.3-8.1 26.5-24.8 26.5-42.9V312.8c72.6-46.3 128-108.4 128-211.1.1-25.2.1-50.4-6.8-82.6zM400 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"], + "rss": [448, 512, [], "f09e", "M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"], + "rss-square": [448, 512, [], "f143", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM112 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm157.533 0h-34.335c-6.011 0-11.051-4.636-11.442-10.634-5.214-80.05-69.243-143.92-149.123-149.123-5.997-.39-10.633-5.431-10.633-11.441v-34.335c0-6.535 5.468-11.777 11.994-11.425 110.546 5.974 198.997 94.536 204.964 204.964.352 6.526-4.89 11.994-11.425 11.994zm103.027 0h-34.334c-6.161 0-11.175-4.882-11.427-11.038-5.598-136.535-115.204-246.161-251.76-251.76C68.882 152.949 64 147.935 64 141.774V107.44c0-6.454 5.338-11.664 11.787-11.432 167.83 6.025 302.21 141.191 308.205 308.205.232 6.449-4.978 11.787-11.432 11.787z"], + "ruble-sign": [384, 512, [], "f158", "M239.36 320C324.48 320 384 260.542 384 175.071S324.48 32 239.36 32H76c-6.627 0-12 5.373-12 12v206.632H12c-6.627 0-12 5.373-12 12V308c0 6.627 5.373 12 12 12h52v32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v52c0 6.627 5.373 12 12 12h58.56c6.627 0 12-5.373 12-12v-52H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H146.56v-32h92.8zm-92.8-219.252h78.72c46.72 0 74.88 29.11 74.88 74.323 0 45.832-28.16 75.561-76.16 75.561h-77.44V100.748z"], + "ruler": [640, 512, [], "f545", "M635.7 167.2L556.1 31.7c-8.8-15-28.3-20.1-43.5-11.5l-69 39.1L503.3 161c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L416 75l-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L333.2 122 278 153.3 337.8 255c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-59.7-101.7-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-27.9-47.5-55.2 31.3 59.7 101.7c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L84.9 262.9l-69 39.1C.7 310.7-4.6 329.8 4.2 344.8l79.6 135.6c8.8 15 28.3 20.1 43.5 11.5L624.1 210c15.2-8.6 20.4-27.8 11.6-42.8z"], + "ruler-combined": [512, 512, [], "f546", "M160 288h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56v-64h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56V96h-56c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8h56V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 2.77.91 5.24 1.57 7.8L160 329.38V288zm320 64h-32v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-41.37L24.2 510.43c2.56.66 5.04 1.57 7.8 1.57h448c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"], + "ruler-horizontal": [576, 512, [], "f547", "M544 128h-48v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8H88c-4.42 0-8-3.58-8-8v-88H32c-17.67 0-32 14.33-32 32v192c0 17.67 14.33 32 32 32h512c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32z"], + "ruler-vertical": [256, 512, [], "f548", "M168 416c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 17.67 14.33 32 32 32h192c17.67 0 32-14.33 32-32v-64h-88z"], + "rupee-sign": [320, 512, [], "f156", "M308 96c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v44.748c0 6.627 5.373 12 12 12h85.28c27.308 0 48.261 9.958 60.97 27.252H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h158.757c-6.217 36.086-32.961 58.632-74.757 58.632H12c-6.627 0-12 5.373-12 12v53.012c0 3.349 1.4 6.546 3.861 8.818l165.052 152.356a12.001 12.001 0 0 0 8.139 3.182h82.562c10.924 0 16.166-13.408 8.139-20.818L116.871 319.906c76.499-2.34 131.144-53.395 138.318-127.906H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-58.69c-3.486-11.541-8.28-22.246-14.252-32H308z"], + "sad-cry": [496, 512, [], "f5b3", "M248 8C111 8 0 119 0 256c0 90.1 48.2 168.7 120 212.1V288c0-8.8 7.2-16 16-16s16 7.2 16 16v196.7c29.5 12.4 62 19.3 96 19.3s66.5-6.9 96-19.3V288c0-8.8 7.2-16 16-16s16 7.2 16 16v180.1C447.8 424.7 496 346 496 256 496 119 385 8 248 8zm-65.5 216.5c-14.8-13.2-46.2-13.2-61 0L112 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c.8 5-1.7 10-6.1 12.4-5.8 3.1-11.2.7-13.7-1.6l-9.7-8.5zM248 416c-26.5 0-48-28.7-48-64s21.5-64 48-64 48 28.7 48 64-21.5 64-48 64zm149.8-181.5c-5.8 3.1-11.2.7-13.7-1.6l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S400 197 404 222.2c.6 4.9-1.8 9.9-6.2 12.3z"], + "sad-tear": [496, 512, [], "f5b4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM152 416c-26.5 0-48-21-48-47 0-20 28.5-60.4 41.6-77.8 3.2-4.3 9.6-4.3 12.8 0C171.5 308.6 200 349 200 369c0 26-21.5 47-48 47zm16-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm170.2 154.2C315.8 367.4 282.9 352 248 352c-21.2 0-21.2-32 0-32 44.4 0 86.3 19.6 114.7 53.8 13.8 16.4-11.2 36.5-24.5 20.4z"], + "save": [448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z"], + "school": [640, 512, [], "f549", "M0 224v272c0 8.84 7.16 16 16 16h80V192H32c-17.67 0-32 14.33-32 32zm360-48h-24v-40c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v64c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zm137.75-63.96l-160-106.67a32.02 32.02 0 0 0-35.5 0l-160 106.67A32.002 32.002 0 0 0 128 138.66V512h128V368c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v144h128V138.67c0-10.7-5.35-20.7-14.25-26.63zM320 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm288-64h-64v320h80c8.84 0 16-7.16 16-16V224c0-17.67-14.33-32-32-32z"], + "screwdriver": [512, 512, [], "f54a", "M448 0L320 96v62.06l-83.03 83.03c6.79 4.25 13.27 9.06 19.07 14.87 5.8 5.8 10.62 12.28 14.87 19.07L353.94 192H416l96-128-64-64zM128 278.59L10.92 395.67c-14.55 14.55-14.55 38.15 0 52.71l52.7 52.7c14.56 14.56 38.15 14.56 52.71 0L233.41 384c29.11-29.11 29.11-76.3 0-105.41s-76.3-29.11-105.41 0z"], + "search": [512, 512, [], "f002", "M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"], + "search-minus": [512, 512, [], "f010", "M304 192v32c0 6.6-5.4 12-12 12H124c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z"], + "search-plus": [512, 512, [], "f00e", "M304 192v32c0 6.6-5.4 12-12 12h-56v56c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-56h-56c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h56v-56c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v56h56c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z"], + "seedling": [512, 512, [], "f4d8", "M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z"], + "server": [512, 512, [], "f233", "M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z"], + "share": [512, 512, [], "f064", "M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z"], + "share-alt": [448, 512, [], "f1e0", "M352 320c-22.608 0-43.387 7.819-59.79 20.895l-102.486-64.054a96.551 96.551 0 0 0 0-41.683l102.486-64.054C308.613 184.181 329.392 192 352 192c53.019 0 96-42.981 96-96S405.019 0 352 0s-96 42.981-96 96c0 7.158.79 14.13 2.276 20.841L155.79 180.895C139.387 167.819 118.608 160 96 160c-53.019 0-96 42.981-96 96s42.981 96 96 96c22.608 0 43.387-7.819 59.79-20.895l102.486 64.054A96.301 96.301 0 0 0 256 416c0 53.019 42.981 96 96 96s96-42.981 96-96-42.981-96-96-96z"], + "share-alt-square": [448, 512, [], "f1e1", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zM304 296c-14.562 0-27.823 5.561-37.783 14.671l-67.958-40.775a56.339 56.339 0 0 0 0-27.793l67.958-40.775C276.177 210.439 289.438 216 304 216c30.928 0 56-25.072 56-56s-25.072-56-56-56-56 25.072-56 56c0 4.797.605 9.453 1.74 13.897l-67.958 40.775C171.823 205.561 158.562 200 144 200c-30.928 0-56 25.072-56 56s25.072 56 56 56c14.562 0 27.823-5.561 37.783-14.671l67.958 40.775a56.088 56.088 0 0 0-1.74 13.897c0 30.928 25.072 56 56 56s56-25.072 56-56C360 321.072 334.928 296 304 296z"], + "share-square": [576, 512, [], "f14d", "M568.482 177.448L424.479 313.433C409.3 327.768 384 317.14 384 295.985v-71.963c-144.575.97-205.566 35.113-164.775 171.353 4.483 14.973-12.846 26.567-25.006 17.33C155.252 383.105 120 326.488 120 269.339c0-143.937 117.599-172.5 264-173.312V24.012c0-21.174 25.317-31.768 40.479-17.448l144.003 135.988c10.02 9.463 10.028 25.425 0 34.896zM384 379.128V448H64V128h50.916a11.99 11.99 0 0 0 8.648-3.693c14.953-15.568 32.237-27.89 51.014-37.676C185.708 80.83 181.584 64 169.033 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48v-88.806c0-8.288-8.197-14.066-16.011-11.302a71.83 71.83 0 0 1-34.189 3.377c-7.27-1.046-13.8 4.514-13.8 11.859z"], + "shekel-sign": [448, 512, [], "f20b", "M248 168v168c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V168c0-75.11-60.89-136-136-136H24C10.75 32 0 42.74 0 56v408c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112h112c30.93 0 56 25.07 56 56zM432 32h-48c-8.84 0-16 7.16-16 16v296c0 30.93-25.07 56-56 56H200V176c0-8.84-7.16-16-16-16h-48c-8.84 0-16 7.16-16 16v280c0 13.25 10.75 24 24 24h168c75.11 0 136-60.89 136-136V48c0-8.84-7.16-16-16-16z"], + "shield-alt": [512, 512, [], "f3ed", "M496 128c0 221.282-135.934 344.645-221.539 380.308a48 48 0 0 1-36.923 0C130.495 463.713 16 326.487 16 128a48 48 0 0 1 29.539-44.308l192-80a48 48 0 0 1 36.923 0l192 80A48 48 0 0 1 496 128zM256 446.313l.066.034c93.735-46.689 172.497-156.308 175.817-307.729L256 65.333v380.98z"], + "ship": [640, 512, [], "f21a", "M496.616 372.639l70.012-70.012c16.899-16.9 9.942-45.771-12.836-53.092L512 236.102V96c0-17.673-14.327-32-32-32h-64V24c0-13.255-10.745-24-24-24H248c-13.255 0-24 10.745-24 24v40h-64c-17.673 0-32 14.327-32 32v140.102l-41.792 13.433c-22.753 7.313-29.754 36.173-12.836 53.092l70.012 70.012C125.828 416.287 85.587 448 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24 61.023 0 107.499-20.61 143.258-59.396C181.677 487.432 216.021 512 256 512h128c39.979 0 74.323-24.568 88.742-59.396C508.495 491.384 554.968 512 616 512c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24-60.817 0-101.542-31.001-119.384-75.361zM192 128h256v87.531l-118.208-37.995a31.995 31.995 0 0 0-19.584 0L192 215.531V128z"], + "shipping-fast": [640, 512, [], "f48b", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H112C85.5 0 64 21.5 64 48v48H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h272c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H40c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H64v128c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"], + "shoe-prints": [640, 512, [], "f54b", "M192 160h32V32h-32c-35.35 0-64 28.65-64 64s28.65 64 64 64zM0 416c0 35.35 28.65 64 64 64h32V352H64c-35.35 0-64 28.65-64 64zm337.46-128c-34.91 0-76.16 13.12-104.73 32-24.79 16.38-44.52 32-104.73 32v128l57.53 15.97c26.21 7.28 53.01 13.12 80.31 15.05 32.69 2.31 65.6.67 97.58-6.2C472.9 481.3 512 429.22 512 384c0-64-84.18-96-174.54-96zM491.42 7.19C459.44.32 426.53-1.33 393.84.99c-27.3 1.93-54.1 7.77-80.31 15.04L256 32v128c60.2 0 79.94 15.62 104.73 32 28.57 18.88 69.82 32 104.73 32C555.82 224 640 192 640 128c0-45.22-39.1-97.3-148.58-120.81z"], + "shopping-bag": [448, 512, [], "f290", "M352 160v-32C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128v32H0v272c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V160h-96zm-192-32c0-35.29 28.71-64 64-64s64 28.71 64 64v32H160v-32zm160 120c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm-192 0c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24z"], + "shopping-basket": [576, 512, [], "f291", "M576 216v16c0 13.255-10.745 24-24 24h-8l-26.113 182.788C514.509 462.435 494.257 480 470.37 480H105.63c-23.887 0-44.139-17.565-47.518-41.212L32 256h-8c-13.255 0-24-10.745-24-24v-16c0-13.255 10.745-24 24-24h67.341l106.78-146.821c10.395-14.292 30.407-17.453 44.701-7.058 14.293 10.395 17.453 30.408 7.058 44.701L170.477 192h235.046L326.12 82.821c-10.395-14.292-7.234-34.306 7.059-44.701 14.291-10.395 34.306-7.235 44.701 7.058L484.659 192H552c13.255 0 24 10.745 24 24zM312 392V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm112 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm-224 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24z"], + "shopping-cart": [576, 512, [], "f07a", "M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z"], + "shower": [512, 512, [], "f2cc", "M389.66 135.6L231.6 293.66c-9.37 9.37-24.57 9.37-33.94 0l-11.32-11.32c-9.37-9.37-9.37-24.57 0-33.94l.11-.11c-34.03-40.21-35.16-98.94-3.39-140.38-11.97-7.55-26.14-11.91-41.3-11.91C98.88 96 64 130.88 64 173.76V480H0V173.76C0 95.59 63.59 32 141.76 32c36.93 0 70.61 14.2 95.86 37.42 35.9-11.51 76.5-4.5 106.67 21.03l.11-.11c9.37-9.37 24.57-9.37 33.94 0l11.32 11.32c9.37 9.37 9.37 24.57 0 33.94zM384 208c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm48-16c8.837 0 16 7.163 16 16s-7.163 16-16 16-16-7.163-16-16 7.163-16 16-16zm80 16c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-128 32c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-96 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm64 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16z"], + "shuttle-van": [640, 512, [], "f5b6", "M628.88 210.65L494.39 49.27A48.01 48.01 0 0 0 457.52 32H32C14.33 32 0 46.33 0 64v288c0 17.67 14.33 32 32 32h32c0 53.02 42.98 96 96 96s96-42.98 96-96h128c0 53.02 42.98 96 96 96s96-42.98 96-96h32c17.67 0 32-14.33 32-32V241.38c0-11.23-3.94-22.1-11.12-30.73zM64 192V96h96v96H64zm96 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm160-240h-96V96h96v96zm160 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm-96-240V96h66.02l80 96H384z"], + "sign": [512, 512, [], "f4d9", "M496 64H128V16c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16v48H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V128h368c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM160 384h320V160H160v224z"], + "sign-in-alt": [512, 512, [], "f2f6", "M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z"], + "sign-language": [448, 512, [], "f2a7", "M91.434 483.987c-.307-16.018 13.109-29.129 29.13-29.129h62.293v-5.714H56.993c-16.021 0-29.437-13.111-29.13-29.129C28.16 404.491 40.835 392 56.428 392h126.429v-5.714H29.136c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h154.286v-5.714H57.707c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h168.566l-31.085-22.606c-12.762-9.281-15.583-27.149-6.302-39.912 9.281-12.761 27.15-15.582 39.912-6.302l123.361 89.715a34.287 34.287 0 0 1 14.12 27.728v141.136c0 15.91-10.946 29.73-26.433 33.374l-80.471 18.934a137.16 137.16 0 0 1-31.411 3.646H120c-15.593-.001-28.269-12.492-28.566-28.014zm73.249-225.701h36.423l-11.187-8.136c-18.579-13.511-20.313-40.887-3.17-56.536l-13.004-16.7c-9.843-12.641-28.43-15.171-40.88-5.088-12.065 9.771-14.133 27.447-4.553 39.75l36.371 46.71zm283.298-2.103l-5.003-152.452c-.518-15.771-13.722-28.136-29.493-27.619-15.773.518-28.137 13.722-27.619 29.493l1.262 38.415L283.565 11.019c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l76.889 98.745-4.509 3.511-94.79-121.734c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l94.443 121.288-4.509 3.511-77.675-99.754c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l52.053 66.849c12.497-8.257 29.055-8.285 41.69.904l123.36 89.714c10.904 7.93 17.415 20.715 17.415 34.198v16.999l61.064-47.549a34.285 34.285 0 0 0 13.202-28.177z"], + "sign-out-alt": [512, 512, [], "f2f5", "M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"], + "signal": [640, 512, [], "f012", "M36 384h56c6.6 0 12 5.4 12 12v104c0 6.6-5.4 12-12 12H36c-6.6 0-12-5.4-12-12V396c0-6.6 5.4-12 12-12zm116-36v152c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V348c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-80v232c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V268c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-112v344c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V156c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zM536 12v488c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V12c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12z"], + "signature": [512, 512, [], "f5b7", "M496 320h-91.86c-9.27 0-19.72-11.31-25.78-28.52-15.23-43.36-48.11-70.3-85.8-70.3-30.84 0-58.47 18.05-76.11 49.23L194.8 106.5C188.84 81.08 169.34 64 146.28 64c-23.05 0-42.55 17.08-48.5 42.5L56.16 284.2C50.7 307.45 37.75 320 28.33 320H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h12.33c41.97 0 78.19-34.23 90.14-85.2l23.84-101.78 29.25 222.11c1.98 15.05 13.82 27.45 28.94 28.75.99.09 1.96.13 2.93.13 14.08 0 26.64-9.27 30.69-22.95l33.03-112.34c5.88-16.72 15.84-27.52 25.41-27.52 9.58 0 19.55 10.8 25.78 28.52 15.23 43.36 48.11 70.3 85.8 70.3H496c8.84 0 16-7.16 16-16v-32c0-8.86-7.16-16.02-16-16.02z"], + "sitemap": [640, 512, [], "f0e8", "M128 352H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm-24-80h192v48h48v-48h192v48h48v-57.59c0-21.17-17.23-38.41-38.41-38.41H344v-64h40c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H256c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h40v64H94.41C73.23 224 56 241.23 56 262.41V320h48v-48zm264 80h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm240 0h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"], + "skull": [512, 512, [], "f54c", "M256 0C114.6 0 0 100.3 0 224c0 70.1 36.9 132.6 94.5 173.7 9.6 6.9 15.2 18.1 13.5 29.9l-9.4 66.2c-1.4 9.6 6 18.2 15.7 18.2H192v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h64v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h77.7c9.7 0 17.1-8.6 15.7-18.2l-9.4-66.2c-1.7-11.7 3.8-23 13.5-29.9C475.1 356.6 512 294.1 512 224 512 100.3 397.4 0 256 0zm-96 320c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm192 0c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64z"], + "sliders-h": [512, 512, [], "f1de", "M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z"], + "smile": [496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.6-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.4-16.2 38.1 4.2 24.6 20.5z"], + "smile-beam": [496, 512, [], "f5b8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM112 223.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zm250.8 122.8C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.3 24.6 20.5zm6.2-118.3l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.6 8.6-11 11.9-15.1 4.5z"], + "smile-wink": [496, 512, [], "f4da", "M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm158.5 16.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.7 11.1-11.4 18.3-19.8 10.8l-9.7-8.5zM157.8 325.8C180.2 352.7 213 368 248 368s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.2 24.6 20.5C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11.2-36.7 24.6-20.4z"], + "smoking": [640, 512, [], "f48d", "M632 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8zM553.3 87.1c-5.7-3.8-9.3-10-9.3-16.8V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v62.3c0 22 10.2 43.4 28.6 55.4 42.2 27.3 67.4 73.8 67.4 124V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-65.5-32.4-126.2-86.7-162.6zM432 352H48c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h384c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zm-32 112H224v-64h176v64zm87.7-322.4C463.8 125 448 99.3 448 70.3V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v66.4c0 43.7 24.6 81.6 60.3 106.7 22.4 15.7 35.7 41.2 35.7 68.6V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-43.3-21-83.4-56.3-108.1zM536 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8z"], + "smoking-ban": [512, 512, [], "f54d", "M96 304c0 8.8 7.2 16 16 16h117.5l-96-96H112c-8.8 0-16 7.2-16 16v64zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 448c-105.9 0-192-86.1-192-192 0-41.4 13.3-79.7 35.7-111.1l267.4 267.4C335.7 434.7 297.4 448 256 448zm45.2-192H384v32h-50.8l-32-32zm111.1 111.1L365.2 320H400c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16H269.2L144.9 99.7C176.3 77.3 214.6 64 256 64c105.9 0 192 86.1 192 192 0 41.4-13.3 79.7-35.7 111.1zM320.6 128c-15.6 0-28.6-11.2-31.4-25.9-.7-3.6-4-6.1-7.7-6.1h-16.2c-5 0-8.7 4.5-8 9.4 4.6 30.9 31.2 54.6 63.3 54.6 15.6 0 28.6 11.2 31.4 25.9.7 3.6 4 6.1 7.7 6.1h16.2c5 0 8.7-4.5 8-9.4-4.6-30.9-31.2-54.6-63.3-54.6z"], + "snowflake": [448, 512, [], "f2dc", "M444.816 301.639a24.12 24.12 0 0 0 2.661-16.978c-2.725-12.966-15.339-21.245-28.174-18.492l-87.407 25.046L264 256l67.896-35.215 87.407 25.046c12.835 2.753 25.449-5.526 28.174-18.492 2.725-12.966-5.471-25.708-18.305-28.461l-47.477-7.137 53.077-30.956c11.363-6.627 15.257-21.306 8.696-32.785-6.561-11.479-21.091-15.412-32.454-8.785l-53.077 30.956 17.621-45.104c4.057-12.606-2.768-26.146-15.247-30.245-12.478-4.099-25.883 2.797-29.94 15.402l-22.232 88.99-60.38 35.215V144l65.175-63.945c8.778-9.852 7.987-25.027-1.766-33.894-9.753-8.867-24.775-8.068-33.552 1.784l-29.857 37.967V24c0-13.255-10.637-24-23.758-24s-23.758 10.745-23.758 24v61.912l-29.857-37.967c-8.779-9.852-23.799-10.652-33.552-1.784-9.753 8.867-10.543 24.042-1.766 33.894L200.242 144v70.431l-60.38-35.215-22.232-88.99c-4.057-12.605-17.462-19.501-29.94-15.402-12.478 4.099-19.304 17.64-15.247 30.245l17.62 45.104-53.077-30.956c-11.363-6.627-25.893-2.694-32.454 8.785s-2.667 26.157 8.696 32.785l53.077 30.956-47.477 7.137C5.993 201.634-2.203 214.375.523 227.341c2.725 12.965 15.339 21.245 28.174 18.492l87.407-25.046L184 256l-67.896 35.215-87.406-25.045c-12.835-2.753-25.449 5.526-28.174 18.492-2.725 12.967 5.47 25.708 18.305 28.461l47.477 7.137-53.077 30.956C1.866 357.843-2.027 372.521 4.533 384s21.091 15.412 32.454 8.785l53.077-30.956-17.62 45.104a24.157 24.157 0 0 0 2.022 19.428c2.831 4.953 7.416 8.909 13.224 10.816 12.478 4.099 25.883-2.797 29.94-15.402l22.232-88.99 60.38-35.215V368l-65.175 63.945c-8.778 9.852-7.987 25.027 1.766 33.894 9.754 8.868 24.774 8.068 33.552-1.784l29.857-37.967V488c0 13.255 10.637 24 23.758 24s23.758-10.745 23.758-24v-61.912l29.857 37.967A23.59 23.59 0 0 0 295.282 472a23.534 23.534 0 0 0 15.885-6.161c9.753-8.867 10.544-24.042 1.766-33.894L247.758 368v-70.431l60.38 35.215 22.232 88.99c4.057 12.605 17.462 19.501 29.94 15.402 12.479-4.099 19.304-17.64 15.247-30.245l-17.621-45.104 53.077 30.956c11.363 6.627 25.893 2.694 32.454-8.785s2.667-26.157-8.696-32.785l-53.077-30.956 47.477-7.137c6.86-1.469 12.394-5.793 15.645-11.481z"], + "solar-panel": [640, 512, [], "f5ba", "M431.98 448.01l-47.97.05V416h-128v32.21l-47.98.05c-8.82.01-15.97 7.16-15.98 15.99l-.05 31.73c-.01 8.85 7.17 16.03 16.02 16.02l223.96-.26c8.82-.01 15.97-7.16 15.98-15.98l.04-31.73c.01-8.85-7.17-16.03-16.02-16.02zM585.2 26.74C582.58 11.31 568.99 0 553.06 0H86.93C71 0 57.41 11.31 54.79 26.74-3.32 369.16.04 348.08.03 352c-.03 17.32 14.29 32 32.6 32h574.74c18.23 0 32.51-14.56 32.59-31.79.02-4.08 3.35 16.95-54.76-325.47zM259.83 64h120.33l9.77 96H250.06l9.77-96zm-75.17 256H71.09L90.1 208h105.97l-11.41 112zm16.29-160H98.24l16.29-96h96.19l-9.77 96zm32.82 160l11.4-112h149.65l11.4 112H233.77zm195.5-256h96.19l16.29 96H439.04l-9.77-96zm26.06 256l-11.4-112H549.9l19.01 112H455.33z"], + "sort": [320, 512, [], "f0dc", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z"], + "sort-alpha-down": [448, 512, [], "f15d", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zm119.075-180.007A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z"], + "sort-alpha-up": [448, 512, [], "f15e", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zm301.671 98.621A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z"], + "sort-amount-down": [512, 512, [], "f160", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z"], + "sort-amount-up": [512, 512, [], "f161", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z"], + "sort-down": [320, 512, [], "f0dd", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z"], + "sort-numeric-down": [448, 512, [], "f162", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM175.984 368H128V48c0-8.837-7.163-16-16-16H80c-8.837 0-16 7.163-16 16v320H16.019c-14.212 0-21.384 17.244-11.314 27.314l79.981 80.002c6.245 6.245 16.38 6.247 22.627 0l79.984-80.002c10.05-10.05 2.928-27.314-11.313-27.314z"], + "sort-numeric-up": [448, 512, [], "f163", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM16.016 144H64v320c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144h47.981c14.212 0 21.384-17.244 11.314-27.314l-79.981-80.002c-6.245-6.245-16.38-6.247-22.627 0L4.702 116.686C-5.347 126.736 1.775 144 16.016 144z"], + "sort-up": [320, 512, [], "f0de", "M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z"], + "spa": [576, 512, [], "f5bb", "M568.25 192c-29.04.13-135.01 6.16-213.84 83-33.12 29.63-53.36 63.3-66.41 94.86-13.05-31.56-33.29-65.23-66.41-94.86-78.83-76.84-184.8-82.87-213.84-83-4.41-.02-7.79 3.4-7.75 7.82.23 27.92 7.14 126.14 88.77 199.3C172.79 480.94 256 480 288 480s115.19.95 199.23-80.88c81.64-73.17 88.54-171.38 88.77-199.3.04-4.42-3.34-7.84-7.75-7.82zM287.98 302.6c12.82-18.85 27.6-35.78 44.09-50.52 19.09-18.61 39.58-33.3 60.26-45.18-16.44-70.5-51.72-133.05-96.73-172.22-4.11-3.58-11.02-3.58-15.14 0-44.99 39.14-80.27 101.63-96.74 172.07 20.37 11.7 40.5 26.14 59.22 44.39a282.768 282.768 0 0 1 45.04 51.46z"], + "space-shuttle": [640, 512, [], "f197", "M592.604 208.244C559.735 192.836 515.777 184 472 184H186.327c-4.952-6.555-10.585-11.978-16.72-16H376C229.157 137.747 219.403 32 96.003 32H96v128H80V32c-26.51 0-48 28.654-48 64v64c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v16c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v64c0 35.346 21.49 64 48 64V352h16v128h.003c123.4 0 133.154-105.747 279.997-136H169.606c6.135-4.022 11.768-9.445 16.72-16H472c43.777 0 87.735-8.836 120.604-24.244C622.282 289.845 640 271.992 640 256s-17.718-33.845-47.396-47.756zM488 296a8 8 0 0 1-8-8v-64a8 8 0 0 1 8-8c31.909 0 31.942 80 0 80z"], + "spinner": [512, 512, [], "f110", "M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z"], + "splotch": [512, 512, [], "f5bc", "M472.29 195.89l-67.06-22.95c-19.28-6.6-33.54-20.92-38.14-38.3L351.1 74.19c-11.58-43.77-76.57-57.13-109.98-22.62l-46.14 47.67c-13.26 13.71-33.54 20.93-54.2 19.31l-71.88-5.62c-52.05-4.07-86.93 44.88-59.03 82.83l38.54 52.42c11.08 15.07 12.82 33.86 4.64 50.24L24.62 355.4c-20.59 41.25 22.84 84.87 73.49 73.81l69.96-15.28c20.11-4.39 41.45 0 57.07 11.73l54.32 40.83c39.32 29.56 101.04 7.57 104.45-37.22l4.7-61.86c1.35-17.79 12.8-33.86 30.63-42.99l62-31.74c44.88-22.96 39.59-80.17-8.95-96.79z"], + "spray-can": [512, 512, [], "f5bd", "M224 32c0-17.67-14.33-32-32-32h-64c-17.67 0-32 14.33-32 32v96h128V32zm256 96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-256 32H96c-53.02 0-96 42.98-96 96v224c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V256c0-53.02-42.98-96-96-96zm-64 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zM480 96c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm-96 32c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-96-96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 0c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 192c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z"], + "square": [448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"], + "square-full": [512, 512, [], "f45c", "M512 512H0V0h512v512z"], + "stamp": [512, 512, [], "f5bf", "M32 512h448v-64H32v64zm384-256h-66.56c-16.26 0-29.44-13.18-29.44-29.44v-9.46c0-27.37 8.88-53.41 21.46-77.72 9.11-17.61 12.9-38.39 9.05-60.42-6.77-38.78-38.47-70.7-77.26-77.45C212.62-9.04 160 37.33 160 96c0 14.16 3.12 27.54 8.69 39.58C182.02 164.43 192 194.7 192 226.49v.07c0 16.26-13.18 29.44-29.44 29.44H96c-53.02 0-96 42.98-96 96v32c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-32c0-53.02-42.98-96-96-96z"], + "star": [576, 512, [], "f005", "M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z"], + "star-half": [576, 512, [], "f089", "M288 0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6V0z"], + "star-half-alt": [536, 512, [], "f5c0", "M508.55 171.51L362.18 150.2 296.77 17.81C290.89 5.98 279.42 0 267.95 0c-11.4 0-22.79 5.9-28.69 17.81l-65.43 132.38-146.38 21.29c-26.25 3.8-36.77 36.09-17.74 54.59l105.89 103-25.06 145.48C86.98 495.33 103.57 512 122.15 512c4.93 0 10-1.17 14.87-3.75l130.95-68.68 130.94 68.7c4.86 2.55 9.92 3.71 14.83 3.71 18.6 0 35.22-16.61 31.66-37.4l-25.03-145.49 105.91-102.98c19.04-18.5 8.52-50.8-17.73-54.6zm-121.74 123.2l-18.12 17.62 4.28 24.88 19.52 113.45-102.13-53.59-22.38-11.74.03-317.19 51.03 103.29 11.18 22.63 25.01 3.64 114.23 16.63-82.65 80.38z"], + "step-backward": [448, 512, [], "f048", "M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z"], + "step-forward": [448, 512, [], "f051", "M384 44v424c0 6.6-5.4 12-12 12h-48c-6.6 0-12-5.4-12-12V291.6l-195.5 181C95.9 489.7 64 475.4 64 448V64c0-27.4 31.9-41.7 52.5-24.6L312 219.3V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12z"], + "stethoscope": [512, 512, [], "f0f1", "M447.1 112c-34.2.5-62.3 28.4-63 62.6-.5 24.3 12.5 45.6 32 56.8V344c0 57.3-50.2 104-112 104-60 0-109.2-44.1-111.9-99.2C265 333.8 320 269.2 320 192V36.6c0-11.4-8.1-21.3-19.3-23.5L237.8.5c-13-2.6-25.6 5.8-28.2 18.8L206.4 35c-2.6 13 5.8 25.6 18.8 28.2l30.7 6.1v121.4c0 52.9-42.2 96.7-95.1 97.2-53.4.5-96.9-42.7-96.9-96V69.4l30.7-6.1c13-2.6 21.4-15.2 18.8-28.2l-3.1-15.7C107.7 6.4 95.1-2 82.1.6L19.3 13C8.1 15.3 0 25.1 0 36.6V192c0 77.3 55.1 142 128.1 156.8C130.7 439.2 208.6 512 304 512c97 0 176-75.4 176-168V231.4c19.1-11.1 32-31.7 32-55.4 0-35.7-29.2-64.5-64.9-64zm.9 80c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"], + "sticky-note": [448, 512, [], "f249", "M312 320h136V56c0-13.3-10.7-24-24-24H24C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h264V344c0-13.2 10.8-24 24-24zm129 55l-98 98c-4.5 4.5-10.6 7-17 7h-6V352h128v6.1c0 6.3-2.5 12.4-7 16.9z"], + "stop": [448, 512, [], "f04d", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"], + "stop-circle": [512, 512, [], "f28d", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z"], + "stopwatch": [448, 512, [], "f2f2", "M432 304c0 114.9-93.1 208-208 208S16 418.9 16 304c0-104 76.3-190.2 176-205.5V64h-28c-6.6 0-12-5.4-12-12V12c0-6.6 5.4-12 12-12h120c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-28v34.5c37.5 5.8 71.7 21.6 99.7 44.6l27.5-27.5c4.7-4.7 12.3-4.7 17 0l28.3 28.3c4.7 4.7 4.7 12.3 0 17l-29.4 29.4-.6.6C419.7 223.3 432 262.2 432 304zm-176 36V188.5c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12V340c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"], + "store": [616, 512, [], "f54e", "M602 118.6L537.1 15C531.3 5.7 521 0 510 0H106C95 0 84.7 5.7 78.9 15L14 118.6c-33.5 53.5-3.8 127.9 58.8 136.4 4.5.6 9.1.9 13.7.9 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18.1 20.1 44.3 33.1 73.8 33.1 4.7 0 9.2-.3 13.7-.9 62.8-8.4 92.6-82.8 59-136.4zM529.5 288c-10 0-19.9-1.5-29.5-3.8V384H116v-99.8c-9.6 2.2-19.5 3.8-29.5 3.8-6 0-12.1-.4-18-1.2-5.6-.8-11.1-2.1-16.4-3.6V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V283.2c-5.4 1.6-10.8 2.9-16.4 3.6-6.1.8-12.1 1.2-18.2 1.2z"], + "store-alt": [640, 512, [], "f54f", "M320 384H128V224H64v256c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V224h-64v160zm314.6-241.8l-85.3-128c-6-8.9-16-14.2-26.7-14.2H117.4c-10.7 0-20.7 5.3-26.6 14.2l-85.3 128c-14.2 21.3 1 49.8 26.6 49.8H608c25.5 0 40.7-28.5 26.6-49.8zM512 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h-64v272z"], + "stream": [512, 512, [], "f550", "M16 128h416c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H16C7.16 32 0 39.16 0 48v64c0 8.84 7.16 16 16 16zm480 80H80c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm-64 176H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16z"], + "street-view": [512, 512, [], "f21d", "M192 64c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zm112 80h-11.36c-22.711 10.443-49.59 10.894-73.28 0H208c-26.51 0-48 21.49-48 48v104c0 13.255 10.745 24 24 24h16v104c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V320h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48zm85.642 189.152a72.503 72.503 0 0 1-29.01 27.009C391.133 365.251 480 385.854 480 416c0 46.304-167.656 64-224 64-70.303 0-224-20.859-224-64 0-30.123 88.361-50.665 119.367-55.839a72.516 72.516 0 0 1-29.01-27.009C74.959 343.395 0 367.599 0 416c0 77.111 178.658 96 256 96 77.249 0 256-18.865 256-96 0-48.403-74.967-72.606-122.358-82.848z"], + "strikethrough": [512, 512, [], "f0cc", "M496 288H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h480c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16zm-214.666 16c27.258 12.937 46.524 28.683 46.524 56.243 0 33.108-28.977 53.676-75.621 53.676-32.325 0-76.874-12.08-76.874-44.271V368c0-8.837-7.164-16-16-16H113.75c-8.836 0-16 7.163-16 16v19.204c0 66.845 77.717 101.82 154.487 101.82 88.578 0 162.013-45.438 162.013-134.424 0-19.815-3.618-36.417-10.143-50.6H281.334zm-30.952-96c-32.422-13.505-56.836-28.946-56.836-59.683 0-33.92 30.901-47.406 64.962-47.406 42.647 0 64.962 16.593 64.962 32.985V136c0 8.837 7.164 16 16 16h45.613c8.836 0 16-7.163 16-16v-30.318c0-52.438-71.725-79.875-142.575-79.875-85.203 0-150.726 40.972-150.726 125.646 0 22.71 4.665 41.176 12.777 56.547h129.823z"], + "stroopwafel": [512, 512, [], "f551", "M188.12 210.74L142.86 256l45.25 45.25L233.37 256l-45.25-45.26zm113.13-22.62L256 142.86l-45.25 45.25L256 233.37l45.25-45.25zm-90.5 135.76L256 369.14l45.26-45.26L256 278.63l-45.25 45.25zM256 0C114.62 0 0 114.62 0 256s114.62 256 256 256 256-114.62 256-256S397.38 0 256 0zm186.68 295.6l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-28.29-28.29-45.25 45.25 33.94 33.94 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-33.94-33.94-45.26 45.26 28.29 28.29c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0L256 414.39l-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l28.29-28.29-45.25-45.26-33.94 33.94 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 33.94-33.94-45.25-45.25-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0L69.32 295.6c-3.12-3.12-3.12-8.19 0-11.31L97.61 256l-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l28.29 28.29 45.25-45.26-33.94-33.94-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 33.94 33.94 45.26-45.25-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0L256 97.61l28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-28.29 28.29 45.26 45.25 33.94-33.94-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-33.94 33.94 45.25 45.26 28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31L414.39 256l28.29 28.28a8.015 8.015 0 0 1 0 11.32zM278.63 256l45.26 45.25L369.14 256l-45.25-45.26L278.63 256z"], + "subscript": [512, 512, [], "f12c", "M395.198 416c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 256c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 96H16C7.163 96 0 88.837 0 80V48c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035A15.999 15.999 0 0 1 204.226 32H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 256H272z"], + "subway": [448, 512, [], "f239", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zM200 232V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm200 0V120c0-13.255-10.745-24-24-24H272c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm-48 56c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm-256 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"], + "suitcase": [512, 512, [], "f0f2", "M128 480h256V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v400zm64-384h128v32H192V96zm320 80v256c0 26.5-21.5 48-48 48h-48V128h48c26.5 0 48 21.5 48 48zM96 480H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h48v352z"], + "suitcase-rolling": [384, 512, [], "f5c1", "M336 160H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h16v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h128v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h16c26.51 0 48-21.49 48-48V208c0-26.51-21.49-48-48-48zm-16 216c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zM144 48h96v80h48V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v80h48V48z"], + "sun": [512, 512, [], "f185", "M274.835 12.646l25.516 62.393c4.213 10.301 16.671 14.349 26.134 8.492l57.316-35.479c15.49-9.588 34.808 4.447 30.475 22.142l-16.03 65.475c-2.647 10.81 5.053 21.408 16.152 22.231l67.224 4.987c18.167 1.348 25.546 24.057 11.641 35.826L441.81 242.26c-8.495 7.19-8.495 20.289 0 27.479l51.454 43.548c13.906 11.769 6.527 34.478-11.641 35.826l-67.224 4.987c-11.099.823-18.799 11.421-16.152 22.231l16.03 65.475c4.332 17.695-14.986 31.73-30.475 22.142l-57.316-35.479c-9.463-5.858-21.922-1.81-26.134 8.492l-25.516 62.393c-6.896 16.862-30.774 16.862-37.67 0l-25.516-62.393c-4.213-10.301-16.671-14.349-26.134-8.492l-57.317 35.479c-15.49 9.588-34.808-4.447-30.475-22.142l16.03-65.475c2.647-10.81-5.053-21.408-16.152-22.231l-67.224-4.987c-18.167-1.348-25.546-24.057-11.641-35.826L70.19 269.74c8.495-7.19 8.495-20.289 0-27.479l-51.454-43.548c-13.906-11.769-6.527-34.478 11.641-35.826l67.224-4.987c11.099-.823 18.799-11.421 16.152-22.231l-16.03-65.475c-4.332-17.695 14.986-31.73 30.475-22.142l57.317 35.479c9.463 5.858 21.921 1.81 26.134-8.492l25.516-62.393c6.896-16.861 30.774-16.861 37.67 0zM392 256c0-74.991-61.01-136-136-136-74.991 0-136 61.009-136 136s61.009 136 136 136c74.99 0 136-61.009 136-136zm-32 0c0 57.346-46.654 104-104 104s-104-46.654-104-104 46.654-104 104-104 104 46.654 104 104z"], + "superscript": [512, 512, [], "f12b", "M395.198 256c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 256H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035a16 16 0 0 1 13.598-7.567H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 416H272z"], + "surprise": [496, 512, [], "f5c2", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm112 208c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm80-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "swatchbook": [511, 512, [], "f5c3", "M479.06 320H372.29L186.15 506.51c-2.06 2.07-4.49 3.58-6.67 5.49h299.58c17.64 0 31.94-14.33 31.94-32V352c0-17.67-14.3-32-31.94-32zm-44.5-152.9l-90.33-90.51c-12.47-12.5-32.69-12.5-45.17 0l-75.5 75.65V416c0 2.96-.67 5.73-.87 8.64l211.87-212.28c12.47-12.5 12.47-32.77 0-45.26zM191.62 32c0-17.67-14.3-32-31.94-32H31.94C14.3 0 0 14.33 0 32v384c0 53.02 42.9 96 95.81 96s95.81-42.98 95.81-96V32zM95.81 440c-13.23 0-23.95-10.75-23.95-24 0-13.26 10.73-24 23.95-24s23.95 10.74 23.95 24c.01 13.25-10.72 24-23.95 24zm31.94-184H63.88v-64h63.88v64zm0-128H63.88V64h63.88v64z"], + "swimmer": [640, 512, [], "f5c4", "M189.61 310.58c3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c16.02-14.77 34.5-22.58 53.46-22.58h16.3c18.96 0 37.45 7.81 53.46 22.58 3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c14.86-13.71 31.88-21.12 49.39-22.16l-112.84-80.6 18-12.86c3.64-2.58 8.28-3.52 12.62-2.61l100.35 21.53c25.91 5.53 51.44-10.97 57-36.88 5.55-25.92-10.95-51.44-36.88-57L437.68 98.47c-30.73-6.58-63.02.12-88.56 18.38l-80.02 57.17c-10.38 7.39-19.36 16.44-26.72 26.94L173.75 299c5.47 3.23 10.82 6.93 15.86 11.58zM624 352h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 343.58 442.04 352 416 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 343.58 250.04 352 224 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 343.58 58.04 352 32 352H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-512-96c44.18 0 80-35.82 80-80s-35.82-80-80-80-80 35.82-80 80 35.82 80 80 80z"], + "swimming-pool": [640, 512, [], "f5c5", "M624 416h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 407.58 442.04 416 416 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 407.58 250.04 416 224 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 407.58 58.04 416 32 416H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-400-32v-96h192v96c19.12 0 30.86-6.16 34.39-9.42 9.17-8.46 19.2-14.34 29.61-18.07V128c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v96H224v-96c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v228.5c10.41 3.73 20.44 9.62 29.61 18.07 3.53 3.27 15.27 9.43 34.39 9.43z"], + "sync": [512, 512, [], "f021", "M440.935 12.574l3.966 82.766C399.416 41.904 331.674 8 256 8 134.813 8 33.933 94.924 12.296 209.824 10.908 217.193 16.604 224 24.103 224h49.084c5.57 0 10.377-3.842 11.676-9.259C103.407 137.408 172.931 80 256 80c60.893 0 114.512 30.856 146.104 77.801l-101.53-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12h-47.411c-6.853 0-12.315 5.729-11.987 12.574zM256 432c-60.895 0-114.517-30.858-146.109-77.805l101.868 4.871c6.845.327 12.573-5.134 12.573-11.986v-47.412c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12V500c0 6.627 5.373 12 12 12h47.385c6.863 0 12.328-5.745 11.985-12.599l-4.129-82.575C112.725 470.166 180.405 504 256 504c121.187 0 222.067-86.924 243.704-201.824 1.388-7.369-4.308-14.176-11.807-14.176h-49.084c-5.57 0-10.377 3.842-11.676 9.259C408.593 374.592 339.069 432 256 432z"], + "sync-alt": [512, 512, [], "f2f1", "M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z"], + "syringe": [512, 512, [], "f48e", "M201.5 174.8l55.7 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-55.7-55.8-45.3 45.3 55.8 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L111 265.2l-26.4 26.4c-17.3 17.3-25.6 41.1-23 65.4l7.1 63.6L2.3 487c-3.1 3.1-3.1 8.2 0 11.3l11.3 11.3c3.1 3.1 8.2 3.1 11.3 0l66.3-66.3 63.6 7.1c23.9 2.6 47.9-5.4 65.4-23l181.9-181.9-135.7-135.7-64.9 65zm308.2-93.3L430.5 2.3c-3.1-3.1-8.2-3.1-11.3 0l-11.3 11.3c-3.1 3.1-3.1 8.2 0 11.3l28.3 28.3-45.3 45.3-56.6-56.6-17-17c-3.1-3.1-8.2-3.1-11.3 0l-33.9 33.9c-3.1 3.1-3.1 8.2 0 11.3l17 17L424.8 223l17 17c3.1 3.1 8.2 3.1 11.3 0l33.9-34c3.1-3.1 3.1-8.2 0-11.3l-73.5-73.5 45.3-45.3 28.3 28.3c3.1 3.1 8.2 3.1 11.3 0l11.3-11.3c3.1-3.2 3.1-8.2 0-11.4z"], + "table": [512, 512, [], "f0ce", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64v-96h160v96zm0-160H64v-96h160v96zm224 160H288v-96h160v96zm0-160H288v-96h160v96z"], + "table-tennis": [512, 512, [], "f45d", "M496.2 296.5C527.7 218.7 512 126.2 449 63.1 365.1-21 229-21 145.1 63.1l-56 56.1 211.5 211.5c46.1-62.1 131.5-77.4 195.6-34.2zm-217.9 79.7L57.9 155.9c-27.3 45.3-21.7 105 17.3 144.1l34.5 34.6L6.7 424c-8.6 7.5-9.1 20.7-1 28.8l53.4 53.5c8 8.1 21.2 7.6 28.7-1L177.1 402l35.7 35.7c19.7 19.7 44.6 30.5 70.3 33.3-7.1-17-11-35.6-11-55.1-.1-13.8 2.5-27 6.2-39.7zM416 320c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96z"], + "tablet": [448, 512, [], "f10a", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "tablet-alt": [448, 512, [], "f3fa", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm176-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h328c6.6 0 12 5.4 12 12v312z"], + "tablets": [640, 512, [], "f490", "M160 192C78.9 192 12.5 250.5.1 326.7c-.8 4.8 3.3 9.3 8.3 9.3h303.3c5 0 9.1-4.5 8.3-9.3C307.5 250.5 241.1 192 160 192zm151.6 176H8.4c-5 0-9.1 4.5-8.3 9.3C12.5 453.5 78.9 512 160 512s147.5-58.5 159.9-134.7c.8-4.8-3.3-9.3-8.3-9.3zM593.4 46.6c-56.5-56.5-144.2-61.4-206.9-16-4 2.9-4.3 8.9-.8 12.3L597 254.3c3.5 3.5 9.5 3.2 12.3-.8 45.5-62.7 40.6-150.4-15.9-206.9zM363 65.7c-3.5-3.5-9.5-3.2-12.3.8-45.4 62.7-40.5 150.4 15.9 206.9 56.5 56.5 144.2 61.4 206.9 15.9 4-2.9 4.3-8.9.8-12.3L363 65.7z"], + "tachometer-alt": [576, 512, [], "f3fd", "M75.694 480a48.02 48.02 0 0 1-42.448-25.571C12.023 414.3 0 368.556 0 320 0 160.942 128.942 32 288 32s288 128.942 288 288c0 48.556-12.023 94.3-33.246 134.429A48.018 48.018 0 0 1 500.306 480H75.694zM512 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zM288 128c17.673 0 32-14.327 32-32 0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32zM64 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm65.608-158.392c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm316.784 0c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm-87.078 31.534c-12.627-4.04-26.133 2.92-30.173 15.544l-45.923 143.511C250.108 322.645 224 350.264 224 384c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64 0-19.773-8.971-37.447-23.061-49.187l45.919-143.498c4.039-12.625-2.92-26.133-15.544-30.173z"], + "tag": [512, 512, [], "f02b", "M0 252.118V48C0 21.49 21.49 0 48 0h204.118a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882L293.823 497.941c-18.745 18.745-49.137 18.745-67.882 0L14.059 286.059A48 48 0 0 1 0 252.118zM112 64c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"], + "tags": [640, 512, [], "f02c", "M497.941 225.941L286.059 14.059A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v204.118a48 48 0 0 0 14.059 33.941l211.882 211.882c18.744 18.745 49.136 18.746 67.882 0l204.118-204.118c18.745-18.745 18.745-49.137 0-67.882zM112 160c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm513.941 133.823L421.823 497.941c-18.745 18.745-49.137 18.745-67.882 0l-.36-.36L527.64 323.522c16.999-16.999 26.36-39.6 26.36-63.64s-9.362-46.641-26.36-63.64L331.397 0h48.721a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882z"], + "tape": [640, 512, [], "f4db", "M224 192c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm400 224H380.6c41.5-40.7 67.4-97.3 67.4-160 0-123.7-100.3-224-224-224S0 132.3 0 256s100.3 224 224 224h400c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400-64c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96z"], + "tasks": [512, 512, [], "f0ae", "M208 132h288c8.8 0 16-7.2 16-16V76c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zM64 368c-26.5 0-48.6 21.5-48.6 48s22.1 48 48.6 48 48-21.5 48-48-21.5-48-48-48zm92.5-299l-72.2 72.2-15.6 15.6c-4.7 4.7-12.9 4.7-17.6 0L3.5 109.4c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.3c4.7-4.7 12.3-4.7 17 0l17 16.5c4.6 4.7 4.6 12.3-.1 17zm0 159.6l-72.2 72.2-15.7 15.7c-4.7 4.7-12.9 4.7-17.6 0L3.5 269c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.7c4.7-4.7 12.3-4.7 17 0l17 17c4.6 4.6 4.6 12.2-.1 16.9z"], + "taxi": [512, 512, [], "f1ba", "M462 241.64l-22-84.84c-9.6-35.2-41.6-60.8-76.8-60.8H352V64c0-17.67-14.33-32-32-32H192c-17.67 0-32 14.33-32 32v32h-11.2c-35.2 0-67.2 25.6-76.8 60.8l-22 84.84C21.41 248.04 0 273.47 0 304v48c0 23.63 12.95 44.04 32 55.12V448c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-40.88c19.05-11.09 32-31.5 32-55.12v-48c0-30.53-21.41-55.96-50-62.36zM96 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm20.55-112l17.2-66.36c2.23-8.16 9.59-13.64 15.06-13.64h214.4c5.47 0 12.83 5.48 14.85 12.86L395.45 240h-278.9zM416 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "terminal": [640, 512, [], "f120", "M257.981 272.971L63.638 467.314c-9.373 9.373-24.569 9.373-33.941 0L7.029 444.647c-9.357-9.357-9.375-24.522-.04-33.901L161.011 256 6.99 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L257.981 239.03c9.373 9.372 9.373 24.568 0 33.941zM640 456v-32c0-13.255-10.745-24-24-24H312c-13.255 0-24 10.745-24 24v32c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z"], + "text-height": [576, 512, [], "f034", "M16 32h288c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96h-54.761v320H232c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H88c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm475.308 4.685l79.995 80.001C581.309 126.693 574.297 144 559.99 144H512v224h48c15.639 0 20.635 17.991 11.313 27.314l-79.995 80.001c-6.247 6.247-16.381 6.245-22.626 0l-79.995-80.001C378.691 385.307 385.703 368 400.01 368H448V144h-48c-15.639 0-20.635-17.991-11.313-27.314l79.995-80.001c6.247-6.248 16.381-6.245 22.626 0z"], + "text-width": [448, 512, [], "f035", "M16 32h416c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96H261.743v128H296c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H152c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm427.315 340.682l-80.001-79.995C353.991 283.365 336 288.362 336 304v48H112v-47.99c0-14.307-17.307-21.319-27.314-11.313L4.685 372.692c-6.245 6.245-6.247 16.379 0 22.626l80.001 79.995C94.009 484.635 112 479.638 112 464v-48h224v47.99c0 14.307 17.307 21.319 27.314 11.313l80.001-79.995c6.245-6.245 6.248-16.379 0-22.626z"], + "th": [512, 512, [], "f00a", "M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z"], + "th-large": [512, 512, [], "f009", "M296 32h192c13.255 0 24 10.745 24 24v160c0 13.255-10.745 24-24 24H296c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24zm-80 0H24C10.745 32 0 42.745 0 56v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zM0 296v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm296 184h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H296c-13.255 0-24 10.745-24 24v160c0 13.255 10.745 24 24 24z"], + "th-list": [512, 512, [], "f00b", "M149.333 216v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zM125.333 32H24C10.745 32 0 42.745 0 56v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zm80 448H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm-24-424v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24zm24 264H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24z"], + "thermometer": [512, 512, [], "f491", "M476.8 20.4c-37.5-30.7-95.5-26.3-131.9 10.2l-45.7 46 50.5 50.5c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.4-50.5-45.1 45.4 50.3 50.4c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L209 167.4l-45.1 45.4L214 263c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.1-50.2L96 281.1V382L7 471c-9.4 9.4-9.4 24.6 0 33.9 9.4 9.4 24.6 9.4 33.9 0l89-89h99.9L484 162.6c34.9-34.9 42.2-101.5-7.2-142.2z"], + "thermometer-empty": [256, 512, [], "f2cb", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"], + "thermometer-full": [256, 512, [], "f2c7", "M224 96c0-53.019-42.981-96-96-96S32 42.981 32 96v203.347C12.225 321.756.166 351.136.002 383.333c-.359 70.303 56.787 128.176 127.089 128.664.299.002.61.003.909.003 70.698 0 128-57.304 128-128 0-32.459-12.088-62.09-32-84.653V96zm-96 368l-.576-.002c-43.86-.304-79.647-36.544-79.423-80.42.173-33.98 19.266-51.652 31.999-66.08V96c0-26.467 21.533-48 48-48s48 21.533 48 48v221.498c12.63 14.312 32 32.164 32 66.502 0 44.112-35.888 80-80 80zm64-80c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V96c0-17.673 14.327-32 32-32s32 14.327 32 32v232.583c19.124 11.068 32 31.732 32 55.417z"], + "thermometer-half": [256, 512, [], "f2c9", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V224c0-17.673 14.327-32 32-32s32 14.327 32 32v104.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"], + "thermometer-quarter": [256, 512, [], "f2ca", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V288c0-17.673 14.327-32 32-32s32 14.327 32 32v40.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"], + "thermometer-three-quarters": [256, 512, [], "f2c8", "M192 384c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-23.685 12.876-44.349 32-55.417V160c0-17.673 14.327-32 32-32s32 14.327 32 32v168.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"], + "thumbs-down": [512, 512, [], "f165", "M0 56v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56zm40 200c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24zm272 256c-20.183 0-29.485-39.293-33.931-57.795-5.206-21.666-10.589-44.07-25.393-58.902-32.469-32.524-49.503-73.967-89.117-113.111a11.98 11.98 0 0 1-3.558-8.521V59.901c0-6.541 5.243-11.878 11.783-11.998 15.831-.29 36.694-9.079 52.651-16.178C256.189 17.598 295.709.017 343.995 0h2.844c42.777 0 93.363.413 113.774 29.737 8.392 12.057 10.446 27.034 6.148 44.632 16.312 17.053 25.063 48.863 16.382 74.757 17.544 23.432 19.143 56.132 9.308 79.469l.11.11c11.893 11.949 19.523 31.259 19.439 49.197-.156 30.352-26.157 58.098-59.553 58.098H350.723C358.03 364.34 384 388.132 384 430.548 384 504 336 512 312 512z"], + "thumbs-up": [512, 512, [], "f164", "M104 224H24c-13.255 0-24 10.745-24 24v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V248c0-13.255-10.745-24-24-24zM64 472c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zM384 81.452c0 42.416-25.97 66.208-33.277 94.548h101.723c33.397 0 59.397 27.746 59.553 58.098.084 17.938-7.546 37.249-19.439 49.197l-.11.11c9.836 23.337 8.237 56.037-9.308 79.469 8.681 25.895-.069 57.704-16.382 74.757 4.298 17.598 2.244 32.575-6.148 44.632C440.202 511.587 389.616 512 346.839 512l-2.845-.001c-48.287-.017-87.806-17.598-119.56-31.725-15.957-7.099-36.821-15.887-52.651-16.178-6.54-.12-11.783-5.457-11.783-11.998v-213.77c0-3.2 1.282-6.271 3.558-8.521 39.614-39.144 56.648-80.587 89.117-113.111 14.804-14.832 20.188-37.236 25.393-58.902C282.515 39.293 291.817 0 312 0c24 0 72 8 72 81.452z"], + "thumbtack": [384, 512, [], "f08d", "M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z"], + "ticket-alt": [576, 512, [], "f3ff", "M128 160h320v192H128V160zm400 96c0 26.51 21.49 48 48 48v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c26.51 0 48-21.49 48-48s-21.49-48-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v96c-26.51 0-48 21.49-48 48zm-48-104c0-13.255-10.745-24-24-24H120c-13.255 0-24 10.745-24 24v208c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V152z"], + "times": [352, 512, [], "f00d", "M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"], + "times-circle": [512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z"], + "tint": [352, 512, [], "f043", "M205.22 22.09c-7.94-28.78-49.44-30.12-58.44 0C100.01 179.85 0 222.72 0 333.91 0 432.35 78.72 512 176 512s176-79.65 176-178.09c0-111.75-99.79-153.34-146.78-311.82zM176 448c-61.75 0-112-50.25-112-112 0-8.84 7.16-16 16-16s16 7.16 16 16c0 44.11 35.89 80 80 80 8.84 0 16 7.16 16 16s-7.16 16-16 16z"], + "tint-slash": [640, 512, [], "f5c7", "M633.82 458.1L494.97 350.78c.52-5.57 1.03-11.16 1.03-16.87 0-111.76-99.79-153.34-146.78-311.82-7.94-28.78-49.44-30.12-58.44 0-15.52 52.34-36.87 91.96-58.49 125.68L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM144 333.91C144 432.35 222.72 512 320 512c44.71 0 85.37-16.96 116.4-44.7L162.72 255.78c-11.41 23.5-18.72 48.35-18.72 78.13z"], + "tired": [496, 512, [], "f5c8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 288c51.9 0 115.3 43.8 123.2 106.7 1.7 13.6-8 24.6-17.7 20.4-25.9-11.1-64.4-17.4-105.5-17.4s-79.6 6.3-105.5 17.4c-9.8 4.2-19.4-7-17.7-20.4C132.7 331.8 196.1 288 248 288z"], + "toggle-off": [576, 512, [], "f204", "M384 64H192C85.961 64 0 149.961 0 256s85.961 192 192 192h192c106.039 0 192-85.961 192-192S490.039 64 384 64zM64 256c0-70.741 57.249-128 128-128 70.741 0 128 57.249 128 128 0 70.741-57.249 128-128 128-70.741 0-128-57.249-128-128zm320 128h-48.905c65.217-72.858 65.236-183.12 0-256H384c70.741 0 128 57.249 128 128 0 70.74-57.249 128-128 128z"], + "toggle-on": [576, 512, [], "f205", "M576 256c0 106.039-85.961 192-192 192H192C85.961 448 0 362.039 0 256S85.961 64 192 64h192c106.039 0 192 85.961 192 192zM384 128c-70.741 0-128 57.249-128 128 0 70.741 57.249 128 128 128 70.741 0 128-57.249 128-128 0-70.741-57.249-128-128-128"], + "toolbox": [512, 512, [], "f552", "M502.63 214.63l-45.25-45.25c-6-6-14.14-9.37-22.63-9.37H384V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v80H77.25c-8.49 0-16.62 3.37-22.63 9.37L9.37 214.63c-6 6-9.37 14.14-9.37 22.63V320h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-82.75c0-8.48-3.37-16.62-9.37-22.62zM320 160H192V96h128v64zm64 208c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H192v16c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H0v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96H384v16z"], + "tooth": [448, 512, [], "f5c9", "M443.98 96.25c-11.01-45.22-47.11-82.06-92.01-93.72-32.19-8.36-63 5.1-89.14 24.33-3.25 2.39-6.96 3.73-10.5 5.48l28.32 18.21c7.42 4.77 9.58 14.67 4.8 22.11-4.46 6.95-14.27 9.86-22.11 4.8L162.83 12.84c-20.7-10.85-43.38-16.4-66.81-10.31-44.9 11.67-81 48.5-92.01 93.72-10.13 41.62-.42 80.81 21.5 110.43 23.36 31.57 32.68 68.66 36.29 107.35 4.4 47.16 10.33 94.16 20.94 140.32l7.8 33.95c3.19 13.87 15.49 23.7 29.67 23.7 13.97 0 26.15-9.55 29.54-23.16l34.47-138.42c4.56-18.32 20.96-31.16 39.76-31.16s35.2 12.85 39.76 31.16l34.47 138.42c3.39 13.61 15.57 23.16 29.54 23.16 14.18 0 26.48-9.83 29.67-23.7l7.8-33.95c10.61-46.15 16.53-93.16 20.94-140.32 3.61-38.7 12.93-75.78 36.29-107.35 21.95-29.61 31.66-68.8 21.53-110.43z"], + "trademark": [640, 512, [], "f25c", "M97.119 163.133H12c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h248.559c6.627 0 12 5.373 12 12v43.133c0 6.627-5.373 12-12 12H175.44V404c0 6.627-5.373 12-12 12h-54.322c-6.627 0-12-5.373-12-12V163.133zM329.825 96h65.425a12 12 0 0 1 11.346 8.093l43.759 127.068c7.161 20.588 16.111 52.812 16.111 52.812h.896s8.95-32.224 16.111-52.812l43.758-127.068A12 12 0 0 1 538.577 96h65.41a12 12 0 0 1 11.961 11.03l24.012 296c.567 6.987-4.951 12.97-11.961 12.97h-54.101a12 12 0 0 1-11.972-11.182l-9.082-132.93c-1.79-24.168 0-53.706 0-53.706h-.896s-10.741 33.566-17.902 53.706l-30.7 84.731a12 12 0 0 1-11.282 7.912h-50.302a12 12 0 0 1-11.282-7.912l-30.7-84.731c-7.161-20.14-17.903-53.706-17.903-53.706h-.895s1.79 29.538 0 53.706l-9.082 132.93c-.428 6.295-5.66 11.182-11.97 11.182H305.4c-7.017 0-12.536-5.994-11.959-12.987l24.425-296A11.999 11.999 0 0 1 329.825 96z"], + "train": [448, 512, [], "f238", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zm-48 136V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24zm-176 64c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56z"], + "transgender": [384, 512, [], "f224", "M372 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C198.5 104.1 172.2 96 144 96 64.5 96 0 160.5 0 240c0 68.5 47.9 125.9 112 140.4V408H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM144 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"], + "transgender-alt": [480, 512, [], "f225", "M468 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C294.5 104.1 268.2 96 240 96c-28.2 0-54.5 8.1-76.7 22.1l-16.5-16.5 19.8-19.8c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0l-19.8 19.8-19-19 16.9-16.9C107.1 12.9 101.7 0 91 0H12C5.4 0 0 5.4 0 12v79c0 10.7 12.9 16 20.5 8.5l16.9-16.9 19 19-19.8 19.8c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l19.8-19.8 16.5 16.5C104.1 185.5 96 211.8 96 240c0 68.5 47.9 125.9 112 140.4V408h-36c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM240 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"], + "trash": [448, 512, [], "f1f8", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm415.2 56.7L394.8 467c-1.6 25.3-22.6 45-47.9 45H101.1c-25.3 0-46.3-19.7-47.9-45L32.8 140.7c-.4-6.9 5.1-12.7 12-12.7h358.5c6.8 0 12.3 5.8 11.9 12.7z"], + "trash-alt": [448, 512, [], "f2ed", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm416 56v324c0 26.5-21.5 48-48 48H80c-26.5 0-48-21.5-48-48V140c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12zm-272 68c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208z"], + "tree": [384, 512, [], "f1bb", "M377.33 375.429L293.906 288H328c21.017 0 31.872-25.207 17.448-40.479L262.79 160H296c20.878 0 31.851-24.969 17.587-40.331l-104-112.003c-9.485-10.214-25.676-10.229-35.174 0l-104 112.003C56.206 134.969 67.037 160 88 160h33.21l-82.659 87.521C24.121 262.801 34.993 288 56 288h34.094L6.665 375.429C-7.869 390.655 2.925 416 24.025 416H144c0 32.781-11.188 49.26-33.995 67.506C98.225 492.93 104.914 512 120 512h144c15.086 0 21.776-19.069 9.995-28.494-19.768-15.814-33.992-31.665-33.995-67.496V416h119.97c21.05 0 31.929-25.309 17.36-40.571z"], + "trophy": [576, 512, [], "f091", "M552 64H448V24c0-13.3-10.7-24-24-24H152c-13.3 0-24 10.7-24 24v40H24C10.7 64 0 74.7 0 88v56c0 35.7 22.5 72.4 61.9 100.7 31.5 22.7 69.8 37.1 110 41.7C203.3 338.5 240 360 240 360v72h-48c-35.3 0-64 20.7-64 56v12c0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12v-12c0-35.3-28.7-56-64-56h-48v-72s36.7-21.5 68.1-73.6c40.3-4.6 78.6-19 110-41.7 39.3-28.3 61.9-65 61.9-100.7V88c0-13.3-10.7-24-24-24zM99.3 192.8C74.9 175.2 64 155.6 64 144v-16h64.2c1 32.6 5.8 61.2 12.8 86.2-15.1-5.2-29.2-12.4-41.7-21.4zM512 144c0 16.1-17.7 36.1-35.3 48.8-12.5 9-26.7 16.2-41.8 21.4 7-25 11.8-53.6 12.8-86.2H512v16z"], + "truck": [640, 512, [], "f0d1", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"], + "truck-loading": [640, 512, [], "f4de", "M50.2 375.6c2.3 8.5 11.1 13.6 19.6 11.3l216.4-58c8.5-2.3 13.6-11.1 11.3-19.6l-49.7-185.5c-2.3-8.5-11.1-13.6-19.6-11.3L151 133.3l24.8 92.7-61.8 16.5-24.8-92.7-77.3 20.7C3.4 172.8-1.7 181.6.6 190.1l49.6 185.5zM384 0c-17.7 0-32 14.3-32 32v323.6L5.9 450c-4.3 1.2-6.8 5.6-5.6 9.8l12.6 46.3c1.2 4.3 5.6 6.8 9.8 5.6l393.7-107.4C418.8 464.1 467.6 512 528 512c61.9 0 112-50.1 112-112V0H384zm144 448c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"], + "truck-moving": [640, 512, [], "f4df", "M621.3 237.3l-58.5-58.5c-12-12-28.3-18.7-45.3-18.7H480V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v336c0 44.2 35.8 80 80 80 26.3 0 49.4-12.9 64-32.4 14.6 19.6 37.7 32.4 64 32.4 44.2 0 80-35.8 80-80 0-5.5-.6-10.8-1.6-16h163.2c-1.1 5.2-1.6 10.5-1.6 16 0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H624c8.8 0 16-7.2 16-16v-85.5c0-17-6.7-33.2-18.7-45.2zM80 432c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm128 0c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm272-224h37.5c4.3 0 8.3 1.7 11.3 4.7l43.3 43.3H480v-48zm48 224c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32z"], + "tshirt": [640, 512, [], "f553", "M631.2 96.5L436.5 0C416.4 27.8 371.9 47.2 320 47.2S223.6 27.8 203.5 0L8.8 96.5c-7.9 4-11.1 13.6-7.2 21.5l57.2 114.5c4 7.9 13.6 11.1 21.5 7.2l56.6-27.7c10.6-5.2 23 2.5 23 14.4V480c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V226.3c0-11.8 12.4-19.6 23-14.4l56.6 27.7c7.9 4 17.5.8 21.5-7.2L638.3 118c4-7.9.8-17.6-7.1-21.5z"], + "tty": [512, 512, [], "f1e4", "M5.37 103.822c138.532-138.532 362.936-138.326 501.262 0 6.078 6.078 7.074 15.496 2.583 22.681l-43.214 69.138a18.332 18.332 0 0 1-22.356 7.305l-86.422-34.569a18.335 18.335 0 0 1-11.434-18.846L351.741 90c-62.145-22.454-130.636-21.986-191.483 0l5.953 59.532a18.331 18.331 0 0 1-11.434 18.846l-86.423 34.568a18.334 18.334 0 0 1-22.356-7.305L2.787 126.502a18.333 18.333 0 0 1 2.583-22.68zM96 308v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H92c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zM96 500v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H140c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"], + "tv": [640, 512, [], "f26c", "M592 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h245.1v32h-160c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32-14.3 32-32s-14.3-32-32-32h-160v-32H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h512v288z"], + "umbrella": [576, 512, [], "f0e9", "M557.011 267.631c-51.432-45.217-107.572-43.698-158.567 30.731-5.298 7.861-14.906 7.165-19.736 0-2.483-3.624-32.218-60.808-90.708-60.808-45.766 0-70.542 31.378-90.709 60.808-4.829 7.165-14.436 7.861-19.734 0-50.904-74.285-106.613-76.406-158.567-30.731-10.21 8.264-20.912-1.109-18.696-9.481C32.146 134.573 158.516 64.612 288.001 64.612c128.793 0 256.546 69.961 287.706 193.538 2.206 8.322-8.426 17.793-18.696 9.481zM256 261.001V416c0 17.645-14.355 32-32 32s-32-14.355-32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 52.935 43.065 96 96 96s96-43.065 96-96V261.288c-21.836-10.806-45.425-9.737-64-.287zm64-211.007V32c0-17.673-14.327-32-32-32s-32 14.327-32 32v17.987a372.105 372.105 0 0 1 64 .007z"], + "umbrella-beach": [640, 512, [], "f5ca", "M115.38 136.9l102.11 37.18c35.19-81.54 86.21-144.29 139-173.7-95.88-4.89-188.78 36.96-248.53 111.8-6.69 8.4-2.66 21.05 7.42 24.72zm132.25 48.16l238.48 86.83c35.76-121.38 18.7-231.66-42.63-253.98-7.4-2.7-15.13-4-23.09-4-58.02.01-128.27 69.17-172.76 171.15zM521.48 60.5c6.22 16.3 10.83 34.6 13.2 55.19 5.74 49.89-1.42 108.23-18.95 166.98l102.62 37.36c10.09 3.67 21.31-3.43 21.57-14.17 2.32-95.69-41.91-187.44-118.44-245.36zM560 447.98H321.06L386 269.5l-60.14-21.9-72.9 200.37H16c-8.84 0-16 7.16-16 16.01v32.01C0 504.83 7.16 512 16 512h544c8.84 0 16-7.17 16-16.01v-32.01c0-8.84-7.16-16-16-16z"], + "underline": [448, 512, [], "f0cd", "M224.264 388.24c-91.669 0-156.603-51.165-156.603-151.392V64H39.37c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h137.39c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.813v172.848c0 53.699 28.314 79.444 76.317 79.444 46.966 0 75.796-25.434 75.796-79.965V64h-28.291c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h136.868c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.291v172.848c0 99.405-64.881 151.392-156.082 151.392zM16 448h416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16z"], + "undo": [512, 512, [], "f0e2", "M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z"], + "undo-alt": [512, 512, [], "f2ea", "M255.545 8c-66.269.119-126.438 26.233-170.86 68.685L48.971 40.971C33.851 25.851 8 36.559 8 57.941V192c0 13.255 10.745 24 24 24h134.059c21.382 0 32.09-25.851 16.971-40.971l-41.75-41.75c30.864-28.899 70.801-44.907 113.23-45.273 92.398-.798 170.283 73.977 169.484 169.442C423.236 348.009 349.816 424 256 424c-41.127 0-79.997-14.678-110.63-41.556-4.743-4.161-11.906-3.908-16.368.553L89.34 422.659c-4.872 4.872-4.631 12.815.482 17.433C133.798 479.813 192.074 504 256 504c136.966 0 247.999-111.033 248-247.998C504.001 119.193 392.354 7.755 255.545 8z"], + "universal-access": [512, 512, [], "f29a", "M256 48c114.953 0 208 93.029 208 208 0 114.953-93.029 208-208 208-114.953 0-208-93.029-208-208 0-114.953 93.029-208 208-208m0-40C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 56C149.961 64 64 149.961 64 256s85.961 192 192 192 192-85.961 192-192S362.039 64 256 64zm0 44c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36zm117.741 98.023c-28.712 6.779-55.511 12.748-82.14 15.807.851 101.023 12.306 123.052 25.037 155.621 3.617 9.26-.957 19.698-10.217 23.315-9.261 3.617-19.699-.957-23.316-10.217-8.705-22.308-17.086-40.636-22.261-78.549h-9.686c-5.167 37.851-13.534 56.208-22.262 78.549-3.615 9.255-14.05 13.836-23.315 10.217-9.26-3.617-13.834-14.056-10.217-23.315 12.713-32.541 24.185-54.541 25.037-155.621-26.629-3.058-53.428-9.027-82.141-15.807-8.6-2.031-13.926-10.648-11.895-19.249s10.647-13.926 19.249-11.895c96.686 22.829 124.283 22.783 220.775 0 8.599-2.03 17.218 3.294 19.249 11.895 2.029 8.601-3.297 17.219-11.897 19.249z"], + "university": [512, 512, [], "f19c", "M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z"], + "unlink": [512, 512, [], "f127", "M304.083 405.907c4.686 4.686 4.686 12.284 0 16.971l-44.674 44.674c-59.263 59.262-155.693 59.266-214.961 0-59.264-59.265-59.264-155.696 0-214.96l44.675-44.675c4.686-4.686 12.284-4.686 16.971 0l39.598 39.598c4.686 4.686 4.686 12.284 0 16.971l-44.675 44.674c-28.072 28.073-28.072 73.75 0 101.823 28.072 28.072 73.75 28.073 101.824 0l44.674-44.674c4.686-4.686 12.284-4.686 16.971 0l39.597 39.598zm-56.568-260.216c4.686 4.686 12.284 4.686 16.971 0l44.674-44.674c28.072-28.075 73.75-28.073 101.824 0 28.072 28.073 28.072 73.75 0 101.823l-44.675 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.598 39.598c4.686 4.686 12.284 4.686 16.971 0l44.675-44.675c59.265-59.265 59.265-155.695 0-214.96-59.266-59.264-155.695-59.264-214.961 0l-44.674 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.597 39.598zm234.828 359.28l22.627-22.627c9.373-9.373 9.373-24.569 0-33.941L63.598 7.029c-9.373-9.373-24.569-9.373-33.941 0L7.029 29.657c-9.373 9.373-9.373 24.569 0 33.941l441.373 441.373c9.373 9.372 24.569 9.372 33.941 0z"], + "unlock": [448, 512, [], "f09c", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z"], + "unlock-alt": [448, 512, [], "f13e", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zM264 408c0 22.1-17.9 40-40 40s-40-17.9-40-40v-48c0-22.1 17.9-40 40-40s40 17.9 40 40v48z"], + "upload": [512, 512, [], "f093", "M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"], + "user": [448, 512, [], "f007", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"], + "user-alt": [512, 512, [], "f406", "M256 288c79.5 0 144-64.5 144-144S335.5 0 256 0 112 64.5 112 144s64.5 144 144 144zm128 32h-55.1c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16H128C57.3 320 0 377.3 0 448v16c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-16c0-70.7-57.3-128-128-128z"], + "user-alt-slash": [640, 512, [], "f4fa", "M633.8 458.1L389.6 269.3C433.8 244.7 464 198.1 464 144 464 64.5 399.5 0 320 0c-67.1 0-123 46.1-139 108.2L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM198.4 320C124.2 320 64 380.2 64 454.4v9.6c0 26.5 21.5 48 48 48h382.2L245.8 320h-47.4z"], + "user-astronaut": [448, 512, [], "f4fb", "M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z"], + "user-check": [640, 512, [], "f4fc", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4zm323-128.4l-27.8-28.1c-4.6-4.7-12.1-4.7-16.8-.1l-104.8 104-45.5-45.8c-4.6-4.7-12.1-4.7-16.8-.1l-28.1 27.9c-4.7 4.6-4.7 12.1-.1 16.8l81.7 82.3c4.6 4.7 12.1 4.7 16.8.1l141.3-140.2c4.6-4.7 4.7-12.2.1-16.8z"], + "user-circle": [496, 512, [], "f2bd", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 96c48.6 0 88 39.4 88 88s-39.4 88-88 88-88-39.4-88-88 39.4-88 88-88zm0 344c-58.7 0-111.3-26.6-146.5-68.2 18.8-35.4 55.6-59.8 98.5-59.8 2.4 0 4.8.4 7.1 1.1 13 4.2 26.6 6.9 40.9 6.9 14.3 0 28-2.7 40.9-6.9 2.3-.7 4.7-1.1 7.1-1.1 42.9 0 79.7 24.4 98.5 59.8C359.3 421.4 306.7 448 248 448z"], + "user-clock": [640, 512, [], "f4fd", "M496 224c-79.6 0-144 64.4-144 144s64.4 144 144 144 144-64.4 144-144-64.4-144-144-144zm64 150.3c0 5.3-4.4 9.7-9.7 9.7h-60.6c-5.3 0-9.7-4.4-9.7-9.7v-76.6c0-5.3 4.4-9.7 9.7-9.7h12.6c5.3 0 9.7 4.4 9.7 9.7V352h38.3c5.3 0 9.7 4.4 9.7 9.7v12.6zM320 368c0-27.8 6.7-54.1 18.2-77.5-8-1.5-16.2-2.5-24.6-2.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h347.1c-45.3-31.9-75.1-84.5-75.1-144zm-96-112c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128z"], + "user-cog": [640, 512, [], "f4fe", "M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z"], + "user-edit": [640, 512, [], "f4ff", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h274.9c-2.4-6.8-3.4-14-2.6-21.3l6.8-60.9 1.2-11.1 7.9-7.9 77.3-77.3c-24.5-27.7-60-45.5-99.9-45.5zm45.3 145.3l-6.8 61c-1.1 10.2 7.5 18.8 17.6 17.6l60.9-6.8 137.9-137.9-71.7-71.7-137.9 137.8zM633 268.9L595.1 231c-9.3-9.3-24.5-9.3-33.8 0l-37.8 37.8-4.1 4.1 71.8 71.7 41.8-41.8c9.3-9.4 9.3-24.5 0-33.9z"], + "user-friends": [640, 512, [], "f500", "M192 256c61.9 0 112-50.1 112-112S253.9 32 192 32 80 82.1 80 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C51.6 288 0 339.6 0 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zM480 256c53 0 96-43 96-96s-43-96-96-96-96 43-96 96 43 96 96 96zm48 32h-3.8c-13.9 4.8-28.6 8-44.2 8s-30.3-3.2-44.2-8H432c-20.4 0-39.2 5.9-55.7 15.4 24.4 26.3 39.7 61.2 39.7 99.8v38.4c0 2.2-.5 4.3-.6 6.4H592c26.5 0 48-21.5 48-48 0-61.9-50.1-112-112-112z"], + "user-graduate": [448, 512, [], "f501", "M319.4 320.6L224 416l-95.4-95.4C57.1 323.7 0 382.2 0 454.4v9.6c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-9.6c0-72.2-57.1-130.7-128.6-133.8zM13.6 79.8l6.4 1.5v58.4c-7 4.2-12 11.5-12 20.3 0 8.4 4.6 15.4 11.1 19.7L3.5 242c-1.7 6.9 2.1 14 7.6 14h41.8c5.5 0 9.3-7.1 7.6-14l-15.6-62.3C51.4 175.4 56 168.4 56 160c0-8.8-5-16.1-12-20.3V87.1l66 15.9c-8.6 17.2-14 36.4-14 57 0 70.7 57.3 128 128 128s128-57.3 128-128c0-20.6-5.3-39.8-14-57l96.3-23.2c18.2-4.4 18.2-27.1 0-31.5l-190.4-46c-13-3.1-26.7-3.1-39.7 0L13.6 48.2c-18.1 4.4-18.1 27.2 0 31.6z"], + "user-lock": [640, 512, [], "f502", "M320 320c0-11.1 3.1-21.4 8.1-30.5-4.8-.5-9.5-1.5-14.5-1.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h280.9c-5.5-9.5-8.9-20.3-8.9-32V320zm-96-64c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm384 32h-32v-48c0-44.2-35.8-80-80-80s-80 35.8-80 80v48h-32c-17.7 0-32 14.3-32 32v160c0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32V320c0-17.7-14.3-32-32-32zm-80 0h-64v-48c0-17.6 14.4-32 32-32s32 14.4 32 32v48z"], + "user-md": [448, 512, [], "f0f0", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zM104 424c0 13.3 10.7 24 24 24s24-10.7 24-24-10.7-24-24-24-24 10.7-24 24zm216-135.4v49c36.5 7.4 64 39.8 64 78.4v41.7c0 7.6-5.4 14.2-12.9 15.7l-32.2 6.4c-4.3.9-8.5-1.9-9.4-6.3l-3.1-15.7c-.9-4.3 1.9-8.6 6.3-9.4l19.3-3.9V416c0-62.8-96-65.1-96 1.9v26.7l19.3 3.9c4.3.9 7.1 5.1 6.3 9.4l-3.1 15.7c-.9 4.3-5.1 7.1-9.4 6.3l-31.2-4.2c-7.9-1.1-13.8-7.8-13.8-15.9V416c0-38.6 27.5-70.9 64-78.4v-45.2c-2.2.7-4.4 1.1-6.6 1.9-18 6.3-37.3 9.8-57.4 9.8s-39.4-3.5-57.4-9.8c-7.4-2.6-14.9-4.2-22.6-5.2v81.6c23.1 6.9 40 28.1 40 53.4 0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.3 16.9-46.5 40-53.4v-80.4C48.5 301 0 355.8 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-72-56.8-130.3-128-133.8z"], + "user-minus": [640, 512, [], "f503", "M624 208H432c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"], + "user-ninja": [448, 512, [], "f504", "M325.4 289.2L224 390.6 122.6 289.2C54 295.3 0 352.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-70.2-54-127.1-122.6-133.2zM32 192c27.3 0 51.8-11.5 69.2-29.7 15.1 53.9 64 93.7 122.8 93.7 70.7 0 128-57.3 128-128S294.7 0 224 0c-50.4 0-93.6 29.4-114.5 71.8C92.1 47.8 64 32 32 32c0 33.4 17.1 62.8 43.1 80-26 17.2-43.1 46.6-43.1 80zm144-96h96c17.7 0 32 14.3 32 32H144c0-17.7 14.3-32 32-32z"], + "user-plus": [640, 512, [], "f234", "M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"], + "user-secret": [448, 512, [], "f21b", "M383.9 308.3l23.9-62.6c4-10.5-3.7-21.7-15-21.7h-58.5c11-18.9 17.8-40.6 17.8-64v-.3c39.2-7.8 64-19.1 64-31.7 0-13.3-27.3-25.1-70.1-33-9.2-32.8-27-65.8-40.6-82.8-9.5-11.9-25.9-15.6-39.5-8.8l-27.6 13.8c-9 4.5-19.6 4.5-28.6 0L182.1 3.4c-13.6-6.8-30-3.1-39.5 8.8-13.5 17-31.4 50-40.6 82.8-42.7 7.9-70 19.7-70 33 0 12.6 24.8 23.9 64 31.7v.3c0 23.4 6.8 45.1 17.8 64H56.3c-11.5 0-19.2 11.7-14.7 22.3l25.8 60.2C27.3 329.8 0 372.7 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-48.4-25.8-90.4-64.1-114.1zM176 480l-41.6-192 49.6 32 24 40-32 120zm96 0l-32-120 24-40 49.6-32L272 480zm41.7-298.5c-3.9 11.9-7 24.6-16.5 33.4-10.1 9.3-48 22.4-64-25-2.8-8.4-15.4-8.4-18.3 0-17 50.2-56 32.4-64 25-9.5-8.8-12.7-21.5-16.5-33.4-.8-2.5-6.3-5.7-6.3-5.8v-10.8c28.3 3.6 61 5.8 96 5.8s67.7-2.1 96-5.8v10.8c-.1.1-5.6 3.2-6.4 5.8z"], + "user-shield": [640, 512, [], "f505", "M622.3 271.1l-115.2-45c-4.1-1.6-12.6-3.7-22.2 0l-115.2 45c-10.7 4.2-17.7 14-17.7 24.9 0 111.6 68.7 188.8 132.9 213.9 9.6 3.7 18 1.6 22.2 0C558.4 489.9 640 420.5 640 296c0-10.9-7-20.7-17.7-24.9zM496 462.4V273.3l95.5 37.3c-5.6 87.1-60.9 135.4-95.5 151.8zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm96 40c0-2.5.8-4.8 1.1-7.2-2.5-.1-4.9-.8-7.5-.8h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c6.8 0 13.3-1.5 19.2-4-54-42.9-99.2-116.7-99.2-212z"], + "user-slash": [640, 512, [], "f506", "M633.8 458.1L362.3 248.3C412.1 230.7 448 183.8 448 128 448 57.3 390.7 0 320 0c-67.1 0-121.5 51.8-126.9 117.4L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM96 422.4V464c0 26.5 21.5 48 48 48h350.2L207.4 290.3C144.2 301.3 96 356 96 422.4z"], + "user-tag": [640, 512, [], "f507", "M630.6 364.9l-90.3-90.2c-12-12-28.3-18.7-45.3-18.7h-79.3c-17.7 0-32 14.3-32 32v79.2c0 17 6.7 33.2 18.7 45.2l90.3 90.2c12.5 12.5 32.8 12.5 45.3 0l92.5-92.5c12.6-12.5 12.6-32.7.1-45.2zm-182.8-21c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24c0 13.2-10.7 24-24 24zm-223.8-88c70.7 0 128-57.3 128-128C352 57.3 294.7 0 224 0S96 57.3 96 128c0 70.6 57.3 127.9 128 127.9zm127.8 111.2V294c-12.2-3.6-24.9-6.2-38.2-6.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 287.9 0 348.1 0 422.3v41.6c0 26.5 21.5 48 48 48h352c15.5 0 29.1-7.5 37.9-18.9l-58-58c-18.1-18.1-28.1-42.2-28.1-67.9z"], + "user-tie": [448, 512, [], "f508", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm95.8 32.6L272 480l-32-136 32-56h-96l32 56-32 136-47.8-191.4C56.9 292 0 350.3 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-72.1-56.9-130.4-128.2-133.8z"], + "user-times": [640, 512, [], "f235", "M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"], + "users": [640, 512, [], "f0c0", "M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"], + "users-cog": [640, 512, [], "f509", "M610.5 341.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 368.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm224 32c1.9 0 3.7-.5 5.6-.6 8.3-21.7 20.5-42.1 36.3-59.2 7.4-8 17.9-12.6 28.9-12.6 6.9 0 13.7 1.8 19.6 5.3l7.9 4.6c.8-.5 1.6-.9 2.4-1.4 7-14.6 11.2-30.8 11.2-48 0-61.9-50.1-112-112-112S208 82.1 208 144c0 61.9 50.1 112 112 112zm105.2 194.5c-2.3-1.2-4.6-2.6-6.8-3.9-8.2 4.8-15.3 9.8-27.5 9.8-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-10.7-34.5 24.9-49.7 25.8-50.3-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-3.8-2.2-7-5-9.8-8.1-3.3.2-6.5.6-9.8.6-24.6 0-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h255.4c-3.7-6-6.2-12.8-6.2-20.3v-9.2zM173.1 274.6C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"], + "utensil-spoon": [512, 512, [], "f2e5", "M480.1 31.9c-55-55.1-164.9-34.5-227.8 28.5-49.3 49.3-55.1 110-28.8 160.4L9 413.2c-11.6 10.5-12.1 28.5-1 39.5L59.3 504c11 11 29.1 10.5 39.5-1.1l192.4-214.4c50.4 26.3 111.1 20.5 160.4-28.8 63-62.9 83.6-172.8 28.5-227.8z"], + "utensils": [416, 512, [], "f2e7", "M207.9 15.2c.8 4.7 16.1 94.5 16.1 128.8 0 52.3-27.8 89.6-68.9 104.6L168 486.7c.7 13.7-10.2 25.3-24 25.3H80c-13.7 0-24.7-11.5-24-25.3l12.9-238.1C27.7 233.6 0 196.2 0 144 0 109.6 15.3 19.9 16.1 15.2 19.3-5.1 61.4-5.4 64 16.3v141.2c1.3 3.4 15.1 3.2 16 0 1.4-25.3 7.9-139.2 8-141.8 3.3-20.8 44.7-20.8 47.9 0 .2 2.7 6.6 116.5 8 141.8.9 3.2 14.8 3.4 16 0V16.3c2.6-21.6 44.8-21.4 48-1.1zm119.2 285.7l-15 185.1c-1.2 14 9.9 26 23.9 26h56c13.3 0 24-10.7 24-24V24c0-13.2-10.7-24-24-24-82.5 0-221.4 178.5-64.9 300.9z"], + "vector-square": [512, 512, [], "f5cb", "M512 128V32c0-17.67-14.33-32-32-32h-96c-17.67 0-32 14.33-32 32H160c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32v192c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32h192c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32V160c17.67 0 32-14.33 32-32zm-96-64h32v32h-32V64zM64 64h32v32H64V64zm32 384H64v-32h32v32zm352 0h-32v-32h32v32zm-32-96h-32c-17.67 0-32 14.33-32 32v32H160v-32c0-17.67-14.33-32-32-32H96V160h32c17.67 0 32-14.33 32-32V96h192v32c0 17.67 14.33 32 32 32h32v192z"], + "venus": [288, 512, [], "f221", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z"], + "venus-double": [512, 512, [], "f226", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80zm336 140.4V368h36c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-36v36c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-36h-36c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h36v-51.6c-21.2-4.8-40.6-14.3-57.2-27.3 14-16.7 25-36 32.1-57.1 14.5 14.8 34.7 24 57.1 24 44.1 0 80-35.9 80-80s-35.9-80-80-80c-22.3 0-42.6 9.2-57.1 24-7.1-21.1-18-40.4-32.1-57.1C303.4 43.6 334.3 32 368 32c79.5 0 144 64.5 144 144 0 68.5-47.9 125.9-112 140.4z"], + "venus-mars": [576, 512, [], "f228", "M564 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C422.5 72.1 396.2 64 368 64c-33.7 0-64.6 11.6-89.2 30.9 14 16.7 25 36 32.1 57.1 14.5-14.8 34.7-24 57.1-24 44.1 0 80 35.9 80 80s-35.9 80-80 80c-22.3 0-42.6-9.2-57.1-24-7.1 21.1-18 40.4-32.1 57.1 24.5 19.4 55.5 30.9 89.2 30.9 79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 64C64.5 64 0 128.5 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.6 112-71.9 112-140.4 0-79.5-64.5-144-144-144zm0 224c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"], + "vial": [480, 512, [], "f492", "M477.7 186.1L309.5 18.3c-3.1-3.1-8.2-3.1-11.3 0l-34 33.9c-3.1 3.1-3.1 8.2 0 11.3l11.2 11.1L33 316.5c-38.8 38.7-45.1 102-9.4 143.5 20.6 24 49.5 36 78.4 35.9 26.4 0 52.8-10 72.9-30.1l246.3-245.7 11.2 11.1c3.1 3.1 8.2 3.1 11.3 0l34-33.9c3.1-3 3.1-8.1 0-11.2zM318 256H161l148-147.7 78.5 78.3L318 256z"], + "vials": [640, 512, [], "f493", "M72 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H72c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64zm480 384H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM360 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64z"], + "video": [576, 512, [], "f03d", "M336.2 64H47.8C21.4 64 0 85.4 0 111.8v288.4C0 426.6 21.4 448 47.8 448h288.4c26.4 0 47.8-21.4 47.8-47.8V111.8c0-26.4-21.4-47.8-47.8-47.8zm189.4 37.7L416 177.3v157.4l109.6 75.5c21.2 14.6 50.4-.3 50.4-25.8V127.5c0-25.4-29.1-40.4-50.4-25.8z"], + "video-slash": [640, 512, [], "f4e2", "M633.8 458.1l-55-42.5c15.4-1.4 29.2-13.7 29.2-31.1v-257c0-25.5-29.1-40.4-50.4-25.8L448 177.3v137.2l-32-24.7v-178c0-26.4-21.4-47.8-47.8-47.8H123.9L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4L42.7 82 416 370.6l178.5 138c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.5-6.9 4.2-17-2.8-22.4zM32 400.2c0 26.4 21.4 47.8 47.8 47.8h288.4c11.2 0 21.4-4 29.6-10.5L32 154.7v245.5z"], + "volleyball-ball": [495, 512, [], "f45f", "M223.3 243.4c-.9-37-8.6-72.8-22.7-105.7-90.8 42.4-157.5 122.4-180.3 216.8 13.4 30.8 32.9 58.3 56.9 81.1 22.7-79.2 74.2-147.8 146.1-192.2zM186.4 109c-15-26.4-34.5-50.1-57.4-70.7C38 88.1-15.8 191.2 4 300.5c33.4-83.1 98.4-152 182.4-191.5zM374 274.1c8.6-99.8-27.3-197.5-97.5-264.4-14.7-1.7-51.6-5.5-98.9 8.5 57.3 59.3 91 138.2 93.5 222.7 32.5 17.7 67.3 29 102.9 33.2zm-124.7 9.5c-31.6 19.3-58.7 43.9-80.2 72.6 82 57.3 184.5 75.1 277.5 47.8 19.7-26.4 34.2-56.8 42.2-89.9-26.6 6.6-53.7 10.4-80.9 10.4-54.6-.1-108.9-14.1-158.6-40.9zM151 383.3c-15.2 26-25.7 54.4-32.1 84.2 37.6 23 81.7 36.5 129.1 36.5 61 0 116.7-22.1 159.9-58.6C295 461.5 204.6 420.6 151 383.3zM331.3 22.7c55.3 70.4 82.5 161.2 74.6 253.6 30.3.2 60.5-4.8 89.7-14.2 0-2 .3-4 .3-6 0-107.8-68.7-199.1-164.6-233.4z"], + "volume-down": [384, 512, [], "f027", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zM384 256c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z"], + "volume-off": [256, 512, [], "f026", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971z"], + "volume-up": [576, 512, [], "f028", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zm182.056-77.876C422.982.92 403.283 5.668 394.061 20.745c-9.221 15.077-4.473 34.774 10.604 43.995C468.967 104.063 512 174.983 512 256c0 73.431-36.077 142.292-96.507 184.206-14.522 10.072-18.129 30.01-8.057 44.532 10.076 14.528 30.016 18.126 44.531 8.057C529.633 438.927 576 350.406 576 256c0-103.244-54.579-194.877-137.944-245.859zM480 256c0-68.547-36.15-129.777-91.957-163.901-15.076-9.22-34.774-4.471-43.994 10.607-9.22 15.078-4.471 34.774 10.607 43.994C393.067 170.188 416 211.048 416 256c0 41.964-20.62 81.319-55.158 105.276-14.521 10.073-18.128 30.01-8.056 44.532 6.216 8.96 16.185 13.765 26.322 13.765a31.862 31.862 0 0 0 18.21-5.709C449.091 377.953 480 318.938 480 256zm-96 0c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z"], + "walking": [320, 512, [], "f554", "M208 96c26.5 0 48-21.5 48-48S234.5 0 208 0s-48 21.5-48 48 21.5 48 48 48zm94.5 149.1l-23.3-11.8-9.7-29.4c-14.7-44.6-55.7-75.8-102.2-75.9-36-.1-55.9 10.1-93.3 25.2-21.6 8.7-39.3 25.2-49.7 46.2L17.6 213c-7.8 15.8-1.5 35 14.2 42.9 15.6 7.9 34.6 1.5 42.5-14.3L81 228c3.5-7 9.3-12.5 16.5-15.4l26.8-10.8-15.2 60.7c-5.2 20.8.4 42.9 14.9 58.8l59.9 65.4c7.2 7.9 12.3 17.4 14.9 27.7l18.3 73.3c4.3 17.1 21.7 27.6 38.8 23.3 17.1-4.3 27.6-21.7 23.3-38.8l-22.2-89c-2.6-10.3-7.7-19.9-14.9-27.7l-45.5-49.7 17.2-68.7 5.5 16.5c5.3 16.1 16.7 29.4 31.7 37l23.3 11.8c15.6 7.9 34.6 1.5 42.5-14.3 7.7-15.7 1.4-35.1-14.3-43zM73.6 385.8c-3.2 8.1-8 15.4-14.2 21.5l-50 50.1c-12.5 12.5-12.5 32.8 0 45.3s32.7 12.5 45.2 0l59.4-59.4c6.1-6.1 10.9-13.4 14.2-21.5l13.5-33.8c-55.3-60.3-38.7-41.8-47.4-53.7l-20.7 51.5z"], + "wallet": [512, 512, [], "f555", "M461.2 128H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h384c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h397.2c28.02 0 50.8-21.53 50.8-48V176c0-26.47-22.78-48-50.8-48zM416 336c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "warehouse": [640, 512, [], "f494", "M504 352H136.4c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0 96H136.1c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0-192H136.6c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm106.5-139L338.4 3.7a48.15 48.15 0 0 0-36.9 0L29.5 117C11.7 124.5 0 141.9 0 161.3V504c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V256c0-17.6 14.6-32 32.6-32h382.8c18 0 32.6 14.4 32.6 32v248c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V161.3c0-19.4-11.7-36.8-29.5-44.3z"], + "weight": [512, 512, [], "f496", "M448 64h-25.98C438.44 92.28 448 125.01 448 160c0 105.87-86.13 192-192 192S64 265.87 64 160c0-34.99 9.56-67.72 25.98-96H64C28.71 64 0 92.71 0 128v320c0 35.29 28.71 64 64 64h384c35.29 0 64-28.71 64-64V128c0-35.29-28.71-64-64-64zM256 320c88.37 0 160-71.63 160-160S344.37 0 256 0 96 71.63 96 160s71.63 160 160 160zm-.3-151.94l33.58-78.36c3.5-8.17 12.94-11.92 21.03-8.41 8.12 3.48 11.88 12.89 8.41 21l-33.67 78.55C291.73 188 296 197.45 296 208c0 22.09-17.91 40-40 40s-40-17.91-40-40c0-21.98 17.76-39.77 39.7-39.94z"], + "weight-hanging": [512, 512, [], "f5cd", "M510.28 445.86l-73.03-292.13c-3.8-15.19-16.44-25.72-30.87-25.72h-60.25c3.57-10.05 5.88-20.72 5.88-32 0-53.02-42.98-96-96-96s-96 42.98-96 96c0 11.28 2.3 21.95 5.88 32h-60.25c-14.43 0-27.08 10.54-30.87 25.72L1.72 445.86C-6.61 479.17 16.38 512 48.03 512h415.95c31.64 0 54.63-32.83 46.3-66.14zM256 128c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z"], + "wheelchair": [512, 512, [], "f193", "M496.101 385.669l14.227 28.663c3.929 7.915.697 17.516-7.218 21.445l-65.465 32.886c-16.049 7.967-35.556 1.194-43.189-15.055L331.679 320H192c-15.925 0-29.426-11.71-31.679-27.475C126.433 55.308 128.38 70.044 128 64c0-36.358 30.318-65.635 67.052-63.929 33.271 1.545 60.048 28.905 60.925 62.201.868 32.933-23.152 60.423-54.608 65.039l4.67 32.69H336c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H215.182l4.572 32H352a32 32 0 0 1 28.962 18.392L438.477 396.8l36.178-18.349c7.915-3.929 17.517-.697 21.446 7.218zM311.358 352h-24.506c-7.788 54.204-54.528 96-110.852 96-61.757 0-112-50.243-112-112 0-41.505 22.694-77.809 56.324-97.156-3.712-25.965-6.844-47.86-9.488-66.333C45.956 198.464 0 261.963 0 336c0 97.047 78.953 176 176 176 71.87 0 133.806-43.308 161.11-105.192L311.358 352z"], + "wifi": [640, 512, [], "f1eb", "M384 416c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm136.659-124.443c6.465-6.465 6.245-17.065-.564-23.167-113.793-101.985-286.526-101.869-400.19 0-6.809 6.102-7.029 16.702-.564 23.167l34.006 34.006c5.927 5.927 15.464 6.32 21.769.796 82.88-72.609 207.074-72.447 289.768 0 6.305 5.524 15.842 5.132 21.769-.796l34.006-34.006zm112.11-113.718c6.385-6.385 6.254-16.816-.35-22.973-175.768-163.86-449.134-163.8-624.837 0-6.604 6.157-6.735 16.589-.35 22.973l33.966 33.966c6.095 6.095 15.891 6.231 22.224.383 144.763-133.668 368.356-133.702 513.156 0 6.333 5.848 16.129 5.712 22.224-.383l33.967-33.966z"], + "window-close": [512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-83.6 290.5c4.8 4.8 4.8 12.6 0 17.4l-40.5 40.5c-4.8 4.8-12.6 4.8-17.4 0L256 313.3l-66.5 67.1c-4.8 4.8-12.6 4.8-17.4 0l-40.5-40.5c-4.8-4.8-4.8-12.6 0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6 0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1 66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8 4.8 12.6 0 17.4L313.3 256l67.1 66.5z"], + "window-maximize": [512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16 160H64v-84c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12v84z"], + "window-minimize": [512, 512, [], "f2d1", "M464 352H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48z"], + "window-restore": [512, 512, [], "f2d2", "M512 48v288c0 26.5-21.5 48-48 48h-48V176c0-44.1-35.9-80-80-80H128V48c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zM384 176v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zm-68 28c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v52h252v-52z"], + "wine-glass": [288, 512, [], "f4e3", "M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40z"], + "wine-glass-alt": [288, 512, [], "f5ce", "M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM61.75 48h164.5l7.17 80H54.58l7.17-80z"], + "won-sign": [576, 512, [], "f159", "M564 192c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-48.028l18.572-80.61c1.732-7.518-3.978-14.694-11.693-14.694h-46.107a11.998 11.998 0 0 0-11.736 9.5L450.73 128H340.839l-19.725-85.987a12 12 0 0 0-11.696-9.317H265.43a12 12 0 0 0-11.687 9.277L233.696 128H124.975L107.5 42.299a12 12 0 0 0-11.758-9.602H53.628c-7.686 0-13.39 7.124-11.709 14.624L60 128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h62.342l7.171 32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h83.856l40.927 182.624A12 12 0 0 0 148.492 480h56.767c5.583 0 10.428-3.85 11.689-9.288L259.335 288h55.086l42.386 182.712A12 12 0 0 0 368.496 480h56.826a12 12 0 0 0 11.694-9.306L479.108 288H564c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-70.146l7.373-32H564zm-425.976 0h80.757l-7.457 32h-66.776l-6.524-32zm45.796 150.029c-6.194 25.831-6.758 47.25-7.321 47.25h-1.126s-1.689-22.05-6.758-47.25L157.599 288h38.812l-12.591 54.029zM274.182 224l1.996-8.602c1.856-7.962 3.457-15.968 4.803-23.398h11.794c1.347 7.43 2.947 15.436 4.803 23.398l1.996 8.602h-25.392zm130.959 118.029c-5.068 25.2-6.758 47.25-6.758 47.25h-1.126c-.563 0-1.126-21.42-7.321-47.25L377.542 288h39.107l-11.508 54.029zM430.281 224h-67.42l-7.34-32h81.577l-6.817 32z"], + "wrench": [512, 512, [], "f0ad", "M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"], + "x-ray": [640, 512, [], "f497", "M240 384c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm160 32c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zM624 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zm0 448h-48V96H64v352H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM480 248c0 4.4-3.6 8-8 8H336v32h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48v-16h-64v16c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48h64v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-32H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h136v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-24c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v24h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h136c4.4 0 8 3.6 8 8v16z"], + "yen-sign": [384, 512, [], "f157", "M351.208 32h-65.277a12 12 0 0 0-10.778 6.724l-55.39 113.163c-14.513 34.704-27.133 71.932-27.133 71.932h-1.262s-12.62-37.228-27.133-71.932l-55.39-113.163A11.997 11.997 0 0 0 98.068 32H32.792c-9.057 0-14.85 9.65-10.59 17.643L102.322 200H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h88.162L152 293.228V320H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h108v92c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-92h108c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12H232v-26.772L251.838 256H340c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12h-58.322l80.12-150.357C366.058 41.65 360.266 32 351.208 32z"] +}; + +bunker(function () { + define('fas', icons); +}); + +}()); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/solid.min.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/solid.min.js new file mode 100644 index 0000000000..a89ca1d66d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/solid.min.js @@ -0,0 +1,792 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +!function() { + "use strict"; + var c = {}; + try { + "undefined" != typeof window && (c = window); + } catch (c) {} + var h = (c.navigator || {}).userAgent, v = void 0 === h ? "" : h, l = c, z = (~v.indexOf("MSIE") || v.indexOf("Trident/"), + "___FONT_AWESOME___"), s = function() { + try { + return !1; + } catch (c) { + return !1; + } + }(), M = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ], m = M.concat([ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ]); + [ "xs", "sm", "lg", "fw", "ul", "li", "border", "pull-left", "pull-right", "spin", "pulse", "rotate-90", "rotate-180", "rotate-270", "flip-horizontal", "flip-vertical", "stack", "stack-1x", "stack-2x", "inverse", "layers", "layers-text", "layers-counter" ].concat(M.map(function(c) { + return c + "x"; + })).concat(m.map(function(c) { + return "w-" + c; + })); + var H = l || {}; + H[z] || (H[z] = {}), H[z].styles || (H[z].styles = {}), H[z].hooks || (H[z].hooks = {}), + H[z].shims || (H[z].shims = []); + var V = H[z], a = Object.assign || function(c) { + for (var h = 1; h < arguments.length; h++) { + var v = arguments[h]; + for (var l in v) Object.prototype.hasOwnProperty.call(v, l) && (c[l] = v[l]); + } + return c; + }; + var f = { + "address-book": [ 448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z" ], + "address-card": [ 576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-352 96c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H86.4C74 384 64 375.4 64 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2zM512 312c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z" ], + adjust: [ 512, 512, [], "f042", "M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z" ], + "align-center": [ 448, 512, [], "f037", "M352 44v40c0 8.837-7.163 16-16 16H112c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h224c8.837 0 16 7.163 16 16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm320-200H112c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z" ], + "align-justify": [ 448, 512, [], "f039", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm16 144h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0-128h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" ], + "align-left": [ 448, 512, [], "f036", "M288 44v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16zM0 172v40c0 8.837 7.163 16 16 16h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16zm16 312h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm256-200H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z" ], + "align-right": [ 448, 512, [], "f038", "M160 84V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H176c-8.837 0-16-7.163-16-16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" ], + allergies: [ 448, 512, [], "f461", "M416 112c-17.6 0-32 14.4-32 32v72c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v152c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V32c0-17.6-14.4-32-32-32s-32 14.4-32 32v184c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32S96 46.4 96 64v241l-23.6-32.5c-13-17.9-38-21.8-55.9-8.8s-21.8 38-8.8 55.9l125.6 172.7c9 12.4 23.5 19.8 38.8 19.8h197.6c22.3 0 41.6-15.3 46.7-37l26.5-112.7c3.2-13.7 4.9-28.3 5.1-42.3V144c0-17.6-14.4-32-32-32zM176 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 32c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32-128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z" ], + ambulance: [ 640, 512, [], "f0f9", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm144-248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm176 248c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z" ], + "american-sign-language-interpreting": [ 640, 512, [], "f2a3", "M290.547 189.039c-20.295-10.149-44.147-11.199-64.739-3.89 42.606 0 71.208 20.475 85.578 50.576 8.576 17.899-5.148 38.071-23.617 38.071 18.429 0 32.211 20.136 23.617 38.071-14.725 30.846-46.123 50.854-80.298 50.854-.557 0-94.471-8.615-94.471-8.615l-66.406 33.347c-9.384 4.693-19.815.379-23.895-7.781L1.86 290.747c-4.167-8.615-1.111-18.897 6.946-23.621l58.072-33.069L108 159.861c6.39-57.245 34.731-109.767 79.743-146.726 11.391-9.448 28.341-7.781 37.51 3.613 9.446 11.394 7.78 28.067-3.612 37.516-12.503 10.559-23.618 22.509-32.509 35.57 21.672-14.729 46.679-24.732 74.186-28.067 14.725-1.945 28.063 8.336 29.73 23.065 1.945 14.728-8.336 28.067-23.062 29.734-16.116 1.945-31.12 7.503-44.178 15.284 26.114-5.713 58.712-3.138 88.079 11.115 13.336 6.669 18.893 22.509 12.224 35.848-6.389 13.06-22.504 18.617-35.564 12.226zm-27.229 69.472c-6.112-12.505-18.338-20.286-32.231-20.286a35.46 35.46 0 0 0-35.565 35.57c0 21.428 17.808 35.57 35.565 35.57 13.893 0 26.119-7.781 32.231-20.286 4.446-9.449 13.614-15.006 23.339-15.284-9.725-.277-18.893-5.835-23.339-15.284zm374.821-37.237c4.168 8.615 1.111 18.897-6.946 23.621l-58.071 33.069L532 352.16c-6.39 57.245-34.731 109.767-79.743 146.726-10.932 9.112-27.799 8.144-37.51-3.613-9.446-11.394-7.78-28.067 3.613-37.516 12.503-10.559 23.617-22.509 32.508-35.57-21.672 14.729-46.679 24.732-74.186 28.067-10.021 2.506-27.552-5.643-29.73-23.065-1.945-14.728 8.336-28.067 23.062-29.734 16.116-1.946 31.12-7.503 44.178-15.284-26.114 5.713-58.712 3.138-88.079-11.115-13.336-6.669-18.893-22.509-12.224-35.848 6.389-13.061 22.505-18.619 35.565-12.227 20.295 10.149 44.147 11.199 64.739 3.89-42.606 0-71.208-20.475-85.578-50.576-8.576-17.899 5.148-38.071 23.617-38.071-18.429 0-32.211-20.136-23.617-38.071 14.033-29.396 44.039-50.887 81.966-50.854l92.803 8.615 66.406-33.347c9.408-4.704 19.828-.354 23.894 7.781l44.455 88.926zm-229.227-18.618c-13.893 0-26.119 7.781-32.231 20.286-4.446 9.449-13.614 15.006-23.339 15.284 9.725.278 18.893 5.836 23.339 15.284 6.112 12.505 18.338 20.286 32.231 20.286a35.46 35.46 0 0 0 35.565-35.57c0-21.429-17.808-35.57-35.565-35.57z" ], + anchor: [ 576, 512, [], "f13d", "M12.971 352h32.394C67.172 454.735 181.944 512 288 512c106.229 0 220.853-57.38 242.635-160h32.394c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0l-67.029 67.029c-7.56 7.56-2.206 20.485 8.485 20.485h35.146c-20.29 54.317-84.963 86.588-144.117 94.015V256h52c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-52v-5.47c37.281-13.178 63.995-48.725 64-90.518C384.005 43.772 341.605.738 289.37.01 235.723-.739 192 42.525 192 96c0 41.798 26.716 77.35 64 90.53V192h-52c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v190.015c-58.936-7.399-123.82-39.679-144.117-94.015h35.146c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0L4.485 331.515C-3.074 339.074 2.28 352 12.971 352zM288 64c17.645 0 32 14.355 32 32s-14.355 32-32 32-32-14.355-32-32 14.355-32 32-32z" ], + "angle-double-down": [ 320, 512, [], "f103", "M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z" ], + "angle-double-left": [ 448, 512, [], "f100", "M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" ], + "angle-double-right": [ 448, 512, [], "f101", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" ], + "angle-double-up": [ 320, 512, [], "f102", "M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z" ], + "angle-down": [ 320, 512, [], "f107", "M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z" ], + "angle-left": [ 256, 512, [], "f104", "M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" ], + "angle-right": [ 256, 512, [], "f105", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" ], + "angle-up": [ 320, 512, [], "f106", "M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z" ], + angry: [ 496, 512, [], "f556", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 240c0-9.3 4.1-17.5 10.5-23.4l-31-9.3c-8.5-2.5-13.3-11.5-10.7-19.9 2.5-8.5 11.4-13.2 19.9-10.7l80 24c8.5 2.5 13.3 11.5 10.7 19.9-2.1 6.9-8.4 11.4-15.3 11.4-.5 0-1.1-.2-1.7-.2.7 2.7 1.7 5.3 1.7 8.2 0 17.7-14.3 32-32 32S136 257.7 136 240zm168 154.2c-27.8-33.4-84.2-33.4-112.1 0-13.5 16.3-38.2-4.2-24.6-20.5 20-24 49.4-37.8 80.6-37.8s60.6 13.8 80.6 37.8c13.8 16.5-11.1 36.6-24.5 20.5zm76.6-186.9l-31 9.3c6.3 5.8 10.5 14.1 10.5 23.4 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-2.9.9-5.6 1.7-8.2-.6.1-1.1.2-1.7.2-6.9 0-13.2-4.5-15.3-11.4-2.5-8.5 2.3-17.4 10.7-19.9l80-24c8.4-2.5 17.4 2.3 19.9 10.7 2.5 8.5-2.3 17.4-10.8 19.9z" ], + archive: [ 512, 512, [], "f187", "M32 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160H32v288zm160-212c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v8c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-8zM480 32H32C14.3 32 0 46.3 0 64v48c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16V64c0-17.7-14.3-32-32-32z" ], + archway: [ 576, 512, [], "f557", "M560 448h-16V96H32v352H16.02c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16H176c8.84 0 16-7.16 16-16V320c0-53.02 42.98-96 96-96s96 42.98 96 96l.02 160v16c0 8.84 7.16 16 16 16H560c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm0-448H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h544c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16z" ], + "arrow-alt-circle-down": [ 512, 512, [], "f358", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM212 140v116h-70.9c-10.7 0-16.1 13-8.5 20.5l114.9 114.3c4.7 4.7 12.2 4.7 16.9 0l114.9-114.3c7.6-7.6 2.2-20.5-8.5-20.5H300V140c0-6.6-5.4-12-12-12h-64c-6.6 0-12 5.4-12 12z" ], + "arrow-alt-circle-left": [ 512, 512, [], "f359", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z" ], + "arrow-alt-circle-right": [ 512, 512, [], "f35a", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z" ], + "arrow-alt-circle-up": [ 512, 512, [], "f35b", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm292 116V256h70.9c10.7 0 16.1-13 8.5-20.5L264.5 121.2c-4.7-4.7-12.2-4.7-16.9 0l-115 114.3c-7.6 7.6-2.2 20.5 8.5 20.5H212v116c0 6.6 5.4 12 12 12h64c6.6 0 12-5.4 12-12z" ], + "arrow-circle-down": [ 512, 512, [], "f0ab", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-143.6-28.9L288 302.6V120c0-13.3-10.7-24-24-24h-16c-13.3 0-24 10.7-24 24v182.6l-72.4-75.5c-9.3-9.7-24.8-9.9-34.3-.4l-10.9 11c-9.4 9.4-9.4 24.6 0 33.9L239 404.3c9.4 9.4 24.6 9.4 33.9 0l132.7-132.7c9.4-9.4 9.4-24.6 0-33.9l-10.9-11c-9.5-9.5-25-9.3-34.3.4z" ], + "arrow-circle-left": [ 512, 512, [], "f0a8", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm28.9-143.6L209.4 288H392c13.3 0 24-10.7 24-24v-16c0-13.3-10.7-24-24-24H209.4l75.5-72.4c9.7-9.3 9.9-24.8.4-34.3l-11-10.9c-9.4-9.4-24.6-9.4-33.9 0L107.7 239c-9.4 9.4-9.4 24.6 0 33.9l132.7 132.7c9.4 9.4 24.6 9.4 33.9 0l11-10.9c9.5-9.5 9.3-25-.4-34.3z" ], + "arrow-circle-right": [ 512, 512, [], "f0a9", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28.9 143.6l75.5 72.4H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h182.6l-75.5 72.4c-9.7 9.3-9.9 24.8-.4 34.3l11 10.9c9.4 9.4 24.6 9.4 33.9 0L404.3 273c9.4-9.4 9.4-24.6 0-33.9L271.6 106.3c-9.4-9.4-24.6-9.4-33.9 0l-11 10.9c-9.5 9.6-9.3 25.1.4 34.4z" ], + "arrow-circle-up": [ 512, 512, [], "f0aa", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z" ], + "arrow-down": [ 448, 512, [], "f063", "M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z" ], + "arrow-left": [ 448, 512, [], "f060", "M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z" ], + "arrow-right": [ 448, 512, [], "f061", "M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z" ], + "arrow-up": [ 448, 512, [], "f062", "M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z" ], + "arrows-alt": [ 512, 512, [], "f0b2", "M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z" ], + "arrows-alt-h": [ 512, 512, [], "f337", "M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z" ], + "arrows-alt-v": [ 256, 512, [], "f338", "M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z" ], + "assistive-listening-systems": [ 512, 512, [], "f2a2", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z" ], + asterisk: [ 512, 512, [], "f069", "M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z" ], + at: [ 512, 512, [], "f1fa", "M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z" ], + atlas: [ 448, 512, [], "f558", "M318.38 208h-39.09c-1.49 27.03-6.54 51.35-14.21 70.41 27.71-13.24 48.02-39.19 53.3-70.41zm0-32c-5.29-31.22-25.59-57.17-53.3-70.41 7.68 19.06 12.72 43.38 14.21 70.41h39.09zM224 97.31c-7.69 7.45-20.77 34.42-23.43 78.69h46.87c-2.67-44.26-15.75-71.24-23.44-78.69zm-41.08 8.28c-27.71 13.24-48.02 39.19-53.3 70.41h39.09c1.49-27.03 6.53-51.35 14.21-70.41zm0 172.82c-7.68-19.06-12.72-43.38-14.21-70.41h-39.09c5.28 31.22 25.59 57.17 53.3 70.41zM247.43 208h-46.87c2.66 44.26 15.74 71.24 23.43 78.69 7.7-7.45 20.78-34.43 23.44-78.69zM448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM224 64c70.69 0 128 57.31 128 128s-57.31 128-128 128S96 262.69 96 192 153.31 64 224 64zm160 384H96c-19.2 0-32-12.8-32-32s16-32 32-32h288v64z" ], + "audio-description": [ 512, 512, [], "f29e", "M162.925 238.709l8.822 30.655h-25.606l9.041-30.652c1.277-4.421 2.651-9.994 3.872-15.245 1.22 5.251 2.594 10.823 3.871 15.242zm166.474-32.099h-14.523v98.781h14.523c29.776 0 46.175-17.678 46.175-49.776 0-32.239-17.49-49.005-46.175-49.005zM512 112v288c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48zM245.459 336.139l-57.097-168A12.001 12.001 0 0 0 177 160h-35.894a12.001 12.001 0 0 0-11.362 8.139l-57.097 168C70.003 343.922 75.789 352 84.009 352h29.133a12 12 0 0 0 11.535-8.693l8.574-29.906h51.367l8.793 29.977A12 12 0 0 0 204.926 352h29.172c8.22 0 14.006-8.078 11.361-15.861zm184.701-80.525c0-58.977-37.919-95.614-98.96-95.614h-57.366c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12H331.2c61.041 0 98.96-36.933 98.96-96.386z" ], + award: [ 384, 512, [], "f559", "M97.12 362.63l-5.3-5.3a9.004 9.004 0 0 0-4.02-2.32L72 350.77c-9.51-2.55-17.87-7.45-25.43-13.32L1.2 448.7c-4.39 10.77 3.81 22.47 15.43 22.03l52.69-2.01L105.56 507c8 8.44 22.04 5.81 26.43-4.96l52.05-127.62c-10.84 6.04-22.87 9.58-35.31 9.58-19.5 0-37.82-7.59-51.61-21.37zM382.8 448.7l-45.37-111.24c-7.56 5.88-15.92 10.77-25.43 13.32l-15.8 4.23a9.004 9.004 0 0 0-4.02 2.32l-5.3 5.3C273.09 376.41 254.76 384 235.26 384c-12.44 0-24.47-3.55-35.31-9.58L252 502.04c4.39 10.77 18.44 13.4 26.43 4.96l36.25-38.28 52.69 2.01c11.62.44 19.82-11.27 15.43-22.03zM263 340l5.21-5.3c5-5.09 11.22-8.75 18.05-10.61l15.53-4.23c13.89-3.79 24.75-14.84 28.47-28.98l4.16-15.81a41.145 41.145 0 0 1 10.42-18.37l11.37-11.57c10.17-10.35 14.14-25.44 10.42-39.58l-4.16-15.81a41.657 41.657 0 0 1 0-21.21l4.16-15.81c3.72-14.14-.25-29.23-10.42-39.58l-11.37-11.57c-5-5.09-8.59-11.42-10.42-18.37l-4.16-15.8c-3.72-14.14-14.58-25.19-28.47-28.98l-15.53-4.24c-6.83-1.86-13.05-5.52-18.05-10.61L256.84 12c-10.17-10.35-25-14.4-38.89-10.61l-15.53 4.24a39.614 39.614 0 0 1-20.84 0L166.05 1.4c-13.89-3.79-28.72.25-38.89 10.61l-11.37 11.57c-5 5.09-11.22 8.74-18.05 10.61l-15.53 4.24c-13.89 3.79-24.75 14.84-28.47 28.98l-4.16 15.8a41.145 41.145 0 0 1-10.42 18.37l-11.37 11.57c-10.17 10.35-14.15 25.44-10.42 39.58l4.16 15.8a41.657 41.657 0 0 1 0 21.21l-4.16 15.8c-3.72 14.14.25 29.23 10.42 39.59l11.37 11.57c5 5.09 8.59 11.42 10.42 18.37l4.16 15.8c3.72 14.14 14.58 25.19 28.47 28.98l15.53 4.23c6.83 1.86 13.05 5.52 18.05 10.61L121 340c13.23 13.47 33.84 15.88 49.74 5.82a39.676 39.676 0 0 1 42.53 0c15.89 10.06 36.5 7.65 49.73-5.82zM97.66 175.96c0-53.03 42.24-96.02 94.34-96.02s94.34 42.99 94.34 96.02-42.24 96.02-94.34 96.02-94.34-42.99-94.34-96.02z" ], + backspace: [ 640, 512, [], "f55a", "M576 64H205.26A63.97 63.97 0 0 0 160 82.75L9.37 233.37c-12.5 12.5-12.5 32.76 0 45.25L160 429.25c12 12 28.28 18.75 45.25 18.75H576c35.35 0 64-28.65 64-64V128c0-35.35-28.65-64-64-64zm-84.69 254.06c6.25 6.25 6.25 16.38 0 22.63l-22.62 22.62c-6.25 6.25-16.38 6.25-22.63 0L384 301.25l-62.06 62.06c-6.25 6.25-16.38 6.25-22.63 0l-22.62-22.62c-6.25-6.25-6.25-16.38 0-22.63L338.75 256l-62.06-62.06c-6.25-6.25-6.25-16.38 0-22.63l22.62-22.62c6.25-6.25 16.38-6.25 22.63 0L384 210.75l62.06-62.06c6.25-6.25 16.38-6.25 22.63 0l22.62 22.62c6.25 6.25 6.25 16.38 0 22.63L429.25 256l62.06 62.06z" ], + backward: [ 512, 512, [], "f04a", "M11.5 280.6l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2zm256 0l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2z" ], + "balance-scale": [ 640, 512, [], "f24e", "M256 336h-.02c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0C-2.06 328.75.02 320.33.02 336H0c0 44.18 57.31 80 128 80s128-35.82 128-80zM128 176l72 144H56l72-144zm511.98 160c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 320l72-144 72 144H440zm88 128H352V153.25c23.51-10.29 41.16-31.48 46.39-57.25H528c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H383.64C369.04 12.68 346.09 0 320 0s-49.04 12.68-63.64 32H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h129.61c5.23 25.76 22.87 46.96 46.39 57.25V448H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" ], + ban: [ 512, 512, [], "f05e", "M256 8C119.034 8 8 119.033 8 256s111.034 248 248 248 248-111.034 248-248S392.967 8 256 8zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676zM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676z" ], + "band-aid": [ 640, 512, [], "f462", "M0 160v192c0 35.3 28.7 64 64 64h96V96H64c-35.3 0-64 28.7-64 64zm576-64h-96v320h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64zM192 416h256V96H192v320zm176-232c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24z" ], + barcode: [ 512, 512, [], "f02a", "M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z" ], + bars: [ 448, 512, [], "f0c9", "M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" ], + "baseball-ball": [ 496, 512, [], "f433", "M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z" ], + "basketball-ball": [ 496, 512, [], "f434", "M212.3 10.3c-43.8 6.3-86.2 24.1-122.2 53.8l77.4 77.4c27.8-35.8 43.3-81.2 44.8-131.2zM248 222L405.9 64.1c-42.4-35-93.6-53.5-145.5-56.1-1.2 63.9-21.5 122.3-58.7 167.7L248 222zM56.1 98.1c-29.7 36-47.5 78.4-53.8 122.2 50-1.5 95.5-17 131.2-44.8L56.1 98.1zm272.2 204.2c45.3-37.1 103.7-57.4 167.7-58.7-2.6-51.9-21.1-103.1-56.1-145.5L282 256l46.3 46.3zM248 290L90.1 447.9c42.4 34.9 93.6 53.5 145.5 56.1 1.3-64 21.6-122.4 58.7-167.7L248 290zm191.9 123.9c29.7-36 47.5-78.4 53.8-122.2-50.1 1.6-95.5 17.1-131.2 44.8l77.4 77.4zM167.7 209.7C122.3 246.9 63.9 267.3 0 268.4c2.6 51.9 21.1 103.1 56.1 145.5L214 256l-46.3-46.3zm116 292c43.8-6.3 86.2-24.1 122.2-53.8l-77.4-77.4c-27.7 35.7-43.2 81.2-44.8 131.2z" ], + bath: [ 512, 512, [], "f2cd", "M488 256H80V112c0-17.645 14.355-32 32-32 11.351 0 21.332 5.945 27.015 14.88-16.492 25.207-14.687 59.576 6.838 83.035-4.176 4.713-4.021 11.916.491 16.428l11.314 11.314c4.686 4.686 12.284 4.686 16.971 0l95.03-95.029c4.686-4.686 4.686-12.284 0-16.971l-11.314-11.314c-4.512-4.512-11.715-4.666-16.428-.491-17.949-16.469-42.294-21.429-64.178-15.365C163.281 45.667 139.212 32 112 32c-44.112 0-80 35.888-80 80v144h-8c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h8v32c0 28.43 12.362 53.969 32 71.547V456c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-8h256v8c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-32.453c19.638-17.578 32-43.117 32-71.547v-32h8c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z" ], + "battery-empty": [ 640, 512, [], "f244", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48z" ], + "battery-full": [ 640, 512, [], "f240", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-48 96H96v128h416V192z" ], + "battery-half": [ 640, 512, [], "f242", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-240 96H96v128h224V192z" ], + "battery-quarter": [ 640, 512, [], "f243", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-336 96H96v128h128V192z" ], + "battery-three-quarters": [ 640, 512, [], "f241", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-144 96H96v128h320V192z" ], + bed: [ 640, 512, [], "f236", "M176 256c44.11 0 80-35.89 80-80s-35.89-80-80-80-80 35.89-80 80 35.89 80 80 80zm352-128H304c-8.84 0-16 7.16-16 16v144H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v352c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h512v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V240c0-61.86-50.14-112-112-112z" ], + beer: [ 448, 512, [], "f0fc", "M368 96h-48V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24v-42.11l80.606-35.977C429.396 365.063 448 336.388 448 304.86V176c0-44.112-35.888-80-80-80zm16 208.86a16.018 16.018 0 0 1-9.479 14.611L320 343.805V160h48c8.822 0 16 7.178 16 16v128.86zM208 384c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16zm-96 0c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16z" ], + bell: [ 448, 512, [], "f0f3", "M433.884 366.059C411.634 343.809 384 316.118 384 208c0-79.394-57.831-145.269-133.663-157.83A31.845 31.845 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 6.75 2.095 13.008 5.663 18.17C121.831 62.731 64 128.606 64 208c0 108.118-27.643 135.809-49.893 158.059C-16.042 396.208 5.325 448 48.048 448H160c0 35.346 28.654 64 64 64s64-28.654 64-64h111.943c42.638 0 64.151-51.731 33.941-81.941zM224 472a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16c0 13.234 10.766 24 24 24z" ], + "bell-slash": [ 576, 512, [], "f1f6", "M78.107 366.059C47.958 396.208 69.325 448 112.048 448H224c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h32.685L127.848 221.379c-2.198 97.078-28.439 123.378-49.741 144.68zM264 448c0 13.234 10.766 24 24 24a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16zm305.896 43.733l-10.762 12.086c-8.915 10.012-24.333 10.967-34.437 2.133L8.256 54.393C-1.848 45.558-2.811 30.28 6.104 20.267L16.865 8.181C25.781-1.831 41.199-2.786 51.303 6.049l113.81 99.512c24.017-28.778 57.946-48.996 96.55-55.39A31.85 31.85 0 0 1 256 32c0-17.673 14.327-32 32-32s32 14.327 32 32c0 6.75-2.095 13.008-5.663 18.17C390.169 62.731 448 128.606 448 208c0 108.118 27.634 135.809 49.884 158.059 12.149 12.149 15.923 27.776 13.33 42.121l56.53 49.427c10.104 8.835 11.067 24.113 2.152 34.126z" ], + "bezier-curve": [ 640, 512, [], "f55b", "M368 32h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM208 88h-84.75C113.75 64.56 90.84 48 64 48 28.66 48 0 76.65 0 112s28.66 64 64 64c26.84 0 49.75-16.56 59.25-40h79.73c-55.37 32.52-95.86 87.32-109.54 152h49.4c11.3-41.61 36.77-77.21 71.04-101.56-3.7-8.08-5.88-16.99-5.88-26.44V88zm-48 232H64c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zM576 48c-26.84 0-49.75 16.56-59.25 40H432v72c0 9.45-2.19 18.36-5.88 26.44 34.27 24.35 59.74 59.95 71.04 101.56h49.4c-13.68-64.68-54.17-119.48-109.54-152h79.73c9.5 23.44 32.41 40 59.25 40 35.34 0 64-28.65 64-64s-28.66-64-64-64zm0 272h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z" ], + bicycle: [ 640, 512, [], "f206", "M512.509 192.001c-16.373-.064-32.03 2.955-46.436 8.495l-77.68-125.153A24 24 0 0 0 368.001 64h-64c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h50.649l14.896 24H256.002v-16c0-8.837-7.163-16-16-16h-87.459c-13.441 0-24.777 10.999-24.536 24.437.232 13.044 10.876 23.563 23.995 23.563h48.726l-29.417 47.52c-13.433-4.83-27.904-7.483-42.992-7.52C58.094 191.83.412 249.012.002 319.236-.413 390.279 57.055 448 128.002 448c59.642 0 109.758-40.793 123.967-96h52.033a24 24 0 0 0 20.406-11.367L410.37 201.77l14.938 24.067c-25.455 23.448-41.385 57.081-41.307 94.437.145 68.833 57.899 127.051 126.729 127.719 70.606.685 128.181-55.803 129.255-125.996 1.086-70.941-56.526-129.72-127.476-129.996zM186.75 265.772c9.727 10.529 16.673 23.661 19.642 38.228h-43.306l23.664-38.228zM128.002 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c5.869 0 11.586.653 17.099 1.859l-45.505 73.509C89.715 331.327 101.213 352 120.002 352h81.3c-12.37 28.225-40.562 48-73.3 48zm162.63-96h-35.624c-3.96-31.756-19.556-59.894-42.383-80.026L237.371 184h127.547l-74.286 120zm217.057 95.886c-41.036-2.165-74.049-35.692-75.627-76.755-.812-21.121 6.633-40.518 19.335-55.263l44.433 71.586c4.66 7.508 14.524 9.816 22.032 5.156l13.594-8.437c7.508-4.66 9.817-14.524 5.156-22.032l-44.468-71.643a79.901 79.901 0 0 1 19.858-2.497c44.112 0 80 35.888 80 80-.001 45.54-38.252 82.316-84.313 79.885z" ], + binoculars: [ 512, 512, [], "f1e5", "M192 104H96V56c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24v48zm224-48c0-13.255-10.745-24-24-24h-48c-13.255 0-24 10.745-24 24v48h96V56zM0 456c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H0v16zm88-328c-13.255 0-24 10.745-24 24C64 256 0 272 0 416h168V312c0-13.255 10.745-24 24-24V128H88zm256 328c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H344v16zM216 128v160h80V128h-80zm128 288h168c0-144-64-160-64-264 0-13.255-10.745-24-24-24H320v160c13.255 0 24 10.745 24 24v104z" ], + "birthday-cake": [ 448, 512, [], "f1fd", "M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z" ], + blender: [ 512, 512, [], "f517", "M416 384H160c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-128 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm40-416h166.54L512 0H48C21.49 0 0 21.49 0 48v160c0 26.51 21.49 48 48 48h103.27l8.73 96h256l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H328c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM64 192V64h69.82l11.64 128H64z" ], + blind: [ 384, 512, [], "f29d", "M380.15 510.837a8 8 0 0 1-10.989-2.687l-125.33-206.427a31.923 31.923 0 0 0 12.958-9.485l126.048 207.608a8 8 0 0 1-2.687 10.991zM142.803 314.338l-32.54 89.485 36.12 88.285c6.693 16.36 25.377 24.192 41.733 17.501 16.357-6.692 24.193-25.376 17.501-41.734l-62.814-153.537zM96 88c24.301 0 44-19.699 44-44S120.301 0 96 0 52 19.699 52 44s19.699 44 44 44zm154.837 169.128l-120-152c-4.733-5.995-11.75-9.108-18.837-9.112V96H80v.026c-7.146.003-14.217 3.161-18.944 9.24L0 183.766v95.694c0 13.455 11.011 24.791 24.464 24.536C37.505 303.748 48 293.1 48 280v-79.766l16-20.571v140.698L9.927 469.055c-6.04 16.609 2.528 34.969 19.138 41.009 16.602 6.039 34.968-2.524 41.009-19.138L136 309.638V202.441l-31.406-39.816a4 4 0 1 1 6.269-4.971l102.3 129.217c9.145 11.584 24.368 11.339 33.708 3.965 10.41-8.216 12.159-23.334 3.966-33.708z" ], + bold: [ 384, 512, [], "f032", "M304.793 243.891c33.639-18.537 53.657-54.16 53.657-95.693 0-48.236-26.25-87.626-68.626-104.179C265.138 34.01 240.849 32 209.661 32H24c-8.837 0-16 7.163-16 16v33.049c0 8.837 7.163 16 16 16h33.113v318.53H24c-8.837 0-16 7.163-16 16V464c0 8.837 7.163 16 16 16h195.69c24.203 0 44.834-1.289 66.866-7.584C337.52 457.193 376 410.647 376 350.014c0-52.168-26.573-91.684-71.207-106.123zM142.217 100.809h67.444c16.294 0 27.536 2.019 37.525 6.717 15.828 8.479 24.906 26.502 24.906 49.446 0 35.029-20.32 56.79-53.029 56.79h-76.846V100.809zm112.642 305.475c-10.14 4.056-22.677 4.907-31.409 4.907h-81.233V281.943h84.367c39.645 0 63.057 25.38 63.057 63.057.001 28.425-13.66 52.483-34.782 61.284z" ], + bolt: [ 320, 512, [], "f0e7", "M295.973 160H180.572L215.19 30.184C219.25 14.956 207.756 0 192 0H56C43.971 0 33.8 8.905 32.211 20.828l-31.996 240C-1.704 275.217 9.504 288 24.004 288h118.701L96.646 482.466C93.05 497.649 104.659 512 119.992 512c8.35 0 16.376-4.374 20.778-11.978l175.973-303.997c9.244-15.967-2.288-36.025-20.77-36.025z" ], + bomb: [ 512, 512, [], "f1e2", "M440.5 88.5l-52 52L415 167c9.4 9.4 9.4 24.6 0 33.9l-17.4 17.4c11.8 26.1 18.4 55.1 18.4 85.6 0 114.9-93.1 208-208 208S0 418.9 0 304 93.1 96 208 96c30.5 0 59.5 6.6 85.6 18.4L311 97c9.4-9.4 24.6-9.4 33.9 0l26.5 26.5 52-52 17.1 17zM500 60h-24c-6.6 0-12 5.4-12 12s5.4 12 12 12h24c6.6 0 12-5.4 12-12s-5.4-12-12-12zM440 0c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12s12-5.4 12-12V12c0-6.6-5.4-12-12-12zm33.9 55l17-17c4.7-4.7 4.7-12.3 0-17-4.7-4.7-12.3-4.7-17 0l-17 17c-4.7 4.7-4.7 12.3 0 17 4.8 4.7 12.4 4.7 17 0zm-67.8 0c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17zm67.8 34c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17zM112 272c0-35.3 28.7-64 64-64 8.8 0 16-7.2 16-16s-7.2-16-16-16c-52.9 0-96 43.1-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16z" ], + bong: [ 448, 512, [], "f55c", "M302.5 512c23.18 0 44.43-12.58 56-32.66C374.69 451.26 384 418.75 384 384c0-36.12-10.08-69.81-27.44-98.62L400 241.94l9.38 9.38c6.25 6.25 16.38 6.25 22.63 0l11.3-11.32c6.25-6.25 6.25-16.38 0-22.63l-52.69-52.69c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63l9.38 9.38-39.41 39.41c-11.56-11.37-24.53-21.33-38.65-29.51V63.74l15.97-.02c8.82-.01 15.97-7.16 15.98-15.98l.04-31.72C320 7.17 312.82-.01 303.97 0L80.03.26c-8.82.01-15.97 7.16-15.98 15.98l-.04 31.73c-.01 8.85 7.17 16.02 16.02 16.01L96 63.96v153.93C38.67 251.1 0 312.97 0 384c0 34.75 9.31 67.27 25.5 95.34C37.08 499.42 58.33 512 81.5 512h221zM120.06 259.43L144 245.56V63.91l96-.11v181.76l23.94 13.87c24.81 14.37 44.12 35.73 56.56 60.57h-257c12.45-24.84 31.75-46.2 56.56-60.57z" ], + book: [ 448, 512, [], "f02d", "M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z" ], + "book-open": [ 576, 512, [], "f518", "M542.22 32.05c-54.8 3.11-163.72 14.43-230.96 55.59-4.64 2.84-7.27 7.89-7.27 13.17v363.87c0 11.55 12.63 18.85 23.28 13.49 69.18-34.82 169.23-44.32 218.7-46.92 16.89-.89 30.02-14.43 30.02-30.66V62.75c.01-17.71-15.35-31.74-33.77-30.7zM264.73 87.64C197.5 46.48 88.58 35.17 33.78 32.05 15.36 31.01 0 45.04 0 62.75V400.6c0 16.24 13.13 29.78 30.02 30.66 49.49 2.6 149.59 12.11 218.77 46.95 10.62 5.35 23.21-1.94 23.21-13.46V100.63c0-5.29-2.62-10.14-7.27-12.99z" ], + bookmark: [ 384, 512, [], "f02e", "M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z" ], + "bowling-ball": [ 496, 512, [], "f436", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM120 192c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64-96c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm48 144c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + box: [ 512, 512, [], "f466", "M509.5 184.6L458.9 32.8C452.4 13.2 434.1 0 413.4 0H272v192h238.7c-.4-2.5-.4-5-1.2-7.4zM240 0H98.6c-20.7 0-39 13.2-45.5 32.8L2.5 184.6c-.8 2.4-.8 4.9-1.2 7.4H240V0zM0 224v240c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V224H0z" ], + "box-open": [ 640, 512, [], "f49e", "M53.2 41L1.7 143.8c-4.6 9.2.3 20.2 10.1 23l197.9 56.5c7.1 2 14.7-1 18.5-7.3L320 64 69.8 32.1c-6.9-.8-13.5 2.7-16.6 8.9zm585.1 102.8L586.8 41c-3.1-6.2-9.8-9.8-16.7-8.9L320 64l91.7 152.1c3.8 6.3 11.4 9.3 18.5 7.3l197.9-56.5c9.9-2.9 14.7-13.9 10.2-23.1zM425.7 256c-16.9 0-32.8-9-41.4-23.4L320 126l-64.2 106.6c-8.7 14.5-24.6 23.5-41.5 23.5-4.5 0-9-.6-13.3-1.9L64 215v178c0 14.7 10 27.5 24.2 31l216.2 54.1c10.2 2.5 20.9 2.5 31 0L551.8 424c14.2-3.6 24.2-16.4 24.2-31V215l-137 39.1c-4.3 1.3-8.8 1.9-13.3 1.9z" ], + boxes: [ 576, 512, [], "f468", "M560 288h-80v96l-32-21.3-32 21.3v-96h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16zm-384-64h224c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16h-80v96l-32-21.3L256 96V0h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16zm64 64h-80v96l-32-21.3L96 384v-96H16c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16z" ], + braille: [ 640, 512, [], "f2a1", "M128 256c0 35.346-28.654 64-64 64S0 291.346 0 256s28.654-64 64-64 64 28.654 64 64zM64 384c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352C28.654 32 0 60.654 0 96s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm224 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-320c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z" ], + briefcase: [ 512, 512, [], "f0b1", "M320 288h192v144c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V288h192v20c0 6.627 5.373 12 12 12h104c6.627 0 12-5.373 12-12v-20zm192-112v80H0v-80c0-26.51 21.49-48 48-48h80V80c0-26.51 21.49-48 48-48h160c26.51 0 48 21.49 48 48v48h80c26.51 0 48 21.49 48 48zM320 96H192v32h128V96z" ], + "briefcase-medical": [ 512, 512, [], "f469", "M464 128h-80V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48zM192 96h128v32H192V96zm160 248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48z" ], + "broadcast-tower": [ 640, 512, [], "f519", "M150.94 192h33.73c11.01 0 18.61-10.83 14.86-21.18-4.93-13.58-7.55-27.98-7.55-42.82s2.62-29.24 7.55-42.82C203.29 74.83 195.68 64 184.67 64h-33.73c-7.01 0-13.46 4.49-15.41 11.23C130.64 92.21 128 109.88 128 128c0 18.12 2.64 35.79 7.54 52.76 1.94 6.74 8.39 11.24 15.4 11.24zM89.92 23.34C95.56 12.72 87.97 0 75.96 0H40.63c-6.27 0-12.14 3.59-14.74 9.31C9.4 45.54 0 85.65 0 128c0 24.75 3.12 68.33 26.69 118.86 2.62 5.63 8.42 9.14 14.61 9.14h34.84c12.02 0 19.61-12.74 13.95-23.37-49.78-93.32-16.71-178.15-.17-209.29zM614.06 9.29C611.46 3.58 605.6 0 599.33 0h-35.42c-11.98 0-19.66 12.66-14.02 23.25 18.27 34.29 48.42 119.42.28 209.23-5.72 10.68 1.8 23.52 13.91 23.52h35.23c6.27 0 12.13-3.58 14.73-9.29C630.57 210.48 640 170.36 640 128s-9.42-82.48-25.94-118.71zM489.06 64h-33.73c-11.01 0-18.61 10.83-14.86 21.18 4.93 13.58 7.55 27.98 7.55 42.82s-2.62 29.24-7.55 42.82c-3.76 10.35 3.85 21.18 14.86 21.18h33.73c7.02 0 13.46-4.49 15.41-11.24 4.9-16.97 7.53-34.64 7.53-52.76 0-18.12-2.64-35.79-7.54-52.76-1.94-6.75-8.39-11.24-15.4-11.24zm-116.3 100.12c7.05-10.29 11.2-22.71 11.2-36.12 0-35.35-28.63-64-63.96-64-35.32 0-63.96 28.65-63.96 64 0 13.41 4.15 25.83 11.2 36.12l-130.5 313.41c-3.4 8.15.46 17.52 8.61 20.92l29.51 12.31c8.15 3.4 17.52-.46 20.91-8.61L244.96 384h150.07l49.2 118.15c3.4 8.16 12.76 12.01 20.91 8.61l29.51-12.31c8.15-3.4 12-12.77 8.61-20.92l-130.5-313.41zM271.62 320L320 203.81 368.38 320h-96.76z" ], + broom: [ 512, 512, [], "f51a", "M10.8 247.2C-.7 251.8-3.7 266.7 5 275.4l54.8 54.8 73.2-24.4-24.4 73.2 128 128c8.8 8.8 23.6 5.7 28.2-5.8l98.1-243.7-108.4-108.4-243.7 98.1zM507.3 27.3L484.7 4.7c-6.2-6.3-16.4-6.3-22.6 0L359.8 106.9l-40.4-40.4c-4.2-4.3-11.4-3-13.9 2.5l-27.2 58.6 106.1 106.1 58.6-27.2c5.4-2.5 6.7-9.7 2.5-13.9l-40.4-40.4L507.3 49.9c6.3-6.2 6.3-16.3 0-22.6z" ], + brush: [ 384, 512, [], "f55d", "M352 0H32C14.33 0 0 14.33 0 32v224h384V32c0-17.67-14.33-32-32-32zM0 320c0 35.35 28.66 64 64 64h64v64c0 35.35 28.66 64 64 64s64-28.65 64-64v-64h64c35.34 0 64-28.65 64-64v-32H0v32zm192 104c13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24s-24-10.75-24-24c0-13.26 10.75-24 24-24z" ], + bug: [ 512, 512, [], "f188", "M511.988 288.9c-.478 17.43-15.217 31.1-32.653 31.1H424v16c0 21.864-4.882 42.584-13.6 61.145l60.228 60.228c12.496 12.497 12.496 32.758 0 45.255-12.498 12.497-32.759 12.496-45.256 0l-54.736-54.736C345.886 467.965 314.351 480 280 480V236c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v244c-34.351 0-65.886-12.035-90.636-32.108l-54.736 54.736c-12.498 12.497-32.759 12.496-45.256 0-12.496-12.497-12.496-32.758 0-45.255l60.228-60.228C92.882 378.584 88 357.864 88 336v-16H32.666C15.23 320 .491 306.33.013 288.9-.484 270.816 14.028 256 32 256h56v-58.745l-46.628-46.628c-12.496-12.497-12.496-32.758 0-45.255 12.498-12.497 32.758-12.497 45.256 0L141.255 160h229.489l54.627-54.627c12.498-12.497 32.758-12.497 45.256 0 12.496 12.497 12.496 32.758 0 45.255L424 197.255V256h56c17.972 0 32.484 14.816 31.988 32.9zM257 0c-61.856 0-112 50.144-112 112h224C369 50.144 318.856 0 257 0z" ], + building: [ 448, 512, [], "f1ad", "M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z" ], + bullhorn: [ 576, 512, [], "f0a1", "M576 224c0-20.896-13.36-38.666-32-45.258V64c0-35.346-28.654-64-64-64-64.985 56-142.031 128-272 128H48c-26.51 0-48 21.49-48 48v96c0 26.51 21.49 48 48 48h43.263c-18.742 64.65 2.479 116.379 18.814 167.44 1.702 5.32 5.203 9.893 9.922 12.88 20.78 13.155 68.355 15.657 93.773 5.151 16.046-6.633 19.96-27.423 7.522-39.537-18.508-18.026-30.136-36.91-19.795-60.858a12.278 12.278 0 0 0-1.045-11.673c-16.309-24.679-3.581-62.107 28.517-72.752C346.403 327.887 418.591 395.081 480 448c35.346 0 64-28.654 64-64V269.258c18.64-6.592 32-24.362 32-45.258zm-96 139.855c-54.609-44.979-125.033-92.94-224-104.982v-69.747c98.967-12.042 169.391-60.002 224-104.982v279.711z" ], + bullseye: [ 512, 512, [], "f140", "M256 72c101.689 0 184 82.295 184 184 0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-101.689 82.295-184 184-184m0-64C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 184c35.29 0 64 28.71 64 64s-28.71 64-64 64-64-28.71-64-64 28.71-64 64-64m0-64c-70.692 0-128 57.308-128 128s57.308 128 128 128 128-57.308 128-128-57.308-128-128-128z" ], + burn: [ 384, 512, [], "f46a", "M192 0C79.7 101.3 0 220.9 0 300.5 0 425 79 512 192 512s192-87 192-211.5c0-79.9-80.2-199.6-192-300.5zm0 448c-56.5 0-96-39-96-94.8 0-13.5 4.6-61.5 96-161.2 91.4 99.7 96 147.7 96 161.2 0 55.8-39.5 94.8-96 94.8z" ], + bus: [ 512, 512, [], "f207", "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM112 400c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm16-112c-17.67 0-32-14.33-32-32V128c0-17.67 14.33-32 32-32h256c17.67 0 32 14.33 32 32v128c0 17.67-14.33 32-32 32H128zm272 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "bus-alt": [ 512, 512, [], "f55e", "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM160 72c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H168c-4.42 0-8-3.58-8-8V72zm-48 328c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm128-112H128c-17.67 0-32-14.33-32-32v-96c0-17.67 14.33-32 32-32h112v160zm32 0V128h112c17.67 0 32 14.33 32 32v96c0 17.67-14.33 32-32 32H272zm128 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + calculator: [ 448, 512, [], "f1ec", "M0 464V48C0 21.49 21.49 0 48 0h352c26.51 0 48 21.49 48 48v416c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm384-284V76c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v104c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12zM128 308v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm256 128V268c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-256 0v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm128-128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm0 128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z" ], + calendar: [ 448, 512, [], "f133", "M12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm436-44v-36c0-26.5-21.5-48-48-48h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v36c0 6.6 5.4 12 12 12h424c6.6 0 12-5.4 12-12z" ], + "calendar-alt": [ 448, 512, [], "f073", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm116 204c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40z" ], + "calendar-check": [ 448, 512, [], "f274", "M436 160H12c-6.627 0-12-5.373-12-12v-36c0-26.51 21.49-48 48-48h48V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h128V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h48c26.51 0 48 21.49 48 48v36c0 6.627-5.373 12-12 12zM12 192h424c6.627 0 12 5.373 12 12v260c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V204c0-6.627 5.373-12 12-12zm333.296 95.947l-28.169-28.398c-4.667-4.705-12.265-4.736-16.97-.068L194.12 364.665l-45.98-46.352c-4.667-4.705-12.266-4.736-16.971-.068l-28.397 28.17c-4.705 4.667-4.736 12.265-.068 16.97l82.601 83.269c4.667 4.705 12.265 4.736 16.97.068l142.953-141.805c4.705-4.667 4.736-12.265.068-16.97z" ], + "calendar-minus": [ 448, 512, [], "f272", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm304 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H132c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h184z" ], + "calendar-plus": [ 448, 512, [], "f271", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm316 140c0-6.6-5.4-12-12-12h-60v-60c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v60h-60c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h60v60c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-60h60c6.6 0 12-5.4 12-12v-40z" ], + "calendar-times": [ 448, 512, [], "f273", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm257.3 160l48.1-48.1c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0L224 306.7l-48.1-48.1c-4.7-4.7-12.3-4.7-17 0l-28.3 28.3c-4.7 4.7-4.7 12.3 0 17l48.1 48.1-48.1 48.1c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l48.1-48.1 48.1 48.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L269.3 352z" ], + camera: [ 512, 512, [], "f030", "M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z" ], + "camera-retro": [ 512, 512, [], "f083", "M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm0 32h106c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H38c-3.3 0-6-2.7-6-6V80c0-8.8 7.2-16 16-16zm426 96H38c-3.3 0-6-2.7-6-6v-36c0-3.3 2.7-6 6-6h138l30.2-45.3c1.1-1.7 3-2.7 5-2.7H464c8.8 0 16 7.2 16 16v74c0 3.3-2.7 6-6 6zM256 424c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88zm-48 104c-8.8 0-16-7.2-16-16 0-35.3 28.7-64 64-64 8.8 0 16 7.2 16 16s-7.2 16-16 16c-17.6 0-32 14.4-32 32 0 8.8-7.2 16-16 16z" ], + cannabis: [ 512, 512, [], "f55f", "M503.47 360.25c-1.56-.82-32.39-16.89-76.78-25.81 64.25-75.12 84.05-161.67 84.93-165.64 1.18-5.33-.44-10.9-4.3-14.77-3.03-3.04-7.12-4.7-11.32-4.7-1.14 0-2.29.12-3.44.38-3.88.85-86.54 19.59-160.58 79.76.01-1.46.01-2.93.01-4.4 0-118.79-59.98-213.72-62.53-217.7A15.973 15.973 0 0 0 256 0c-5.45 0-10.53 2.78-13.47 7.37-2.55 3.98-62.53 98.91-62.53 217.7 0 1.47.01 2.94.01 4.4-74.03-60.16-156.69-78.9-160.58-79.76-1.14-.25-2.29-.38-3.44-.38-4.2 0-8.29 1.66-11.32 4.7A15.986 15.986 0 0 0 .38 168.8c.88 3.97 20.68 90.52 84.93 165.64-44.39 8.92-75.21 24.99-76.78 25.81a16.003 16.003 0 0 0-.02 28.29c2.45 1.29 60.76 31.72 133.49 31.72 6.14 0 11.96-.1 17.5-.31-11.37 22.23-16.52 38.31-16.81 39.22-1.8 5.68-.29 11.89 3.91 16.11a16.019 16.019 0 0 0 16.1 3.99c1.83-.57 37.72-11.99 77.3-39.29V504c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8v-64.01c39.58 27.3 75.47 38.71 77.3 39.29a16.019 16.019 0 0 0 16.1-3.99c4.2-4.22 5.71-10.43 3.91-16.11-.29-.91-5.45-16.99-16.81-39.22 5.54.21 11.37.31 17.5.31 72.72 0 131.04-30.43 133.49-31.72 5.24-2.78 8.52-8.22 8.51-14.15-.01-5.94-3.29-11.39-8.53-14.15z" ], + capsules: [ 576, 512, [], "f46b", "M555.3 300.1L424.2 112.8C401.9 81 366.4 64 330.4 64c-22.6 0-45.5 6.7-65.5 20.7-19.7 13.8-33.7 32.8-41.5 53.8C220.5 79.2 172 32 112 32 50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V218.9c3.3 8.6 7.3 17.1 12.8 25L368 431.2c22.2 31.8 57.7 48.8 93.8 48.8 22.7 0 45.5-6.7 65.5-20.7 51.7-36.2 64.2-107.5 28-159.2zM160 256H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm194.8 44.9l-65.6-93.7c-7.7-11-10.7-24.4-8.3-37.6 2.3-13.2 9.7-24.8 20.7-32.5 8.5-6 18.5-9.1 28.8-9.1 16.5 0 31.9 8 41.3 21.5l65.6 93.7-82.5 57.7z" ], + car: [ 512, 512, [], "f1b9", "M499.991 168h-54.815l-7.854-20.944c-9.192-24.513-25.425-45.351-46.942-60.263S343.651 64 317.472 64H194.528c-26.18 0-51.391 7.882-72.908 22.793-21.518 14.912-37.75 35.75-46.942 60.263L66.824 168H12.009c-8.191 0-13.974 8.024-11.384 15.795l8 24A12 12 0 0 0 20.009 216h28.815l-.052.14C29.222 227.093 16 247.997 16 272v48c0 16.225 6.049 31.029 16 42.309V424c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-40h256v40c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-61.691c9.951-11.281 16-26.085 16-42.309v-48c0-24.003-13.222-44.907-32.772-55.86l-.052-.14h28.815a12 12 0 0 0 11.384-8.205l8-24c2.59-7.771-3.193-15.795-11.384-15.795zm-365.388 1.528C143.918 144.689 168 128 194.528 128h122.944c26.528 0 50.61 16.689 59.925 41.528L391.824 208H120.176l14.427-38.472zM88 328c-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32s48 30.327 48 48-30.327 16-48 16zm336 0c-17.673 0-48 1.673-48-16 0-17.673 30.327-48 48-48s32 14.327 32 32c0 17.673-14.327 32-32 32z" ], + "caret-down": [ 320, 512, [], "f0d7", "M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" ], + "caret-left": [ 192, 512, [], "f0d9", "M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z" ], + "caret-right": [ 192, 512, [], "f0da", "M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z" ], + "caret-square-down": [ 448, 512, [], "f150", "M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM92.5 220.5l123 123c4.7 4.7 12.3 4.7 17 0l123-123c7.6-7.6 2.2-20.5-8.5-20.5H101c-10.7 0-16.1 12.9-8.5 20.5z" ], + "caret-square-left": [ 448, 512, [], "f191", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM259.515 124.485l-123.03 123.03c-4.686 4.686-4.686 12.284 0 16.971l123.029 123.029c7.56 7.56 20.485 2.206 20.485-8.485V132.971c.001-10.691-12.925-16.045-20.484-8.486z" ], + "caret-square-right": [ 448, 512, [], "f152", "M48 32h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48zm140.485 355.515l123.029-123.029c4.686-4.686 4.686-12.284 0-16.971l-123.029-123.03c-7.56-7.56-20.485-2.206-20.485 8.485v246.059c0 10.691 12.926 16.045 20.485 8.486z" ], + "caret-square-up": [ 448, 512, [], "f151", "M0 432V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm355.515-140.485l-123.03-123.03c-4.686-4.686-12.284-4.686-16.971 0L92.485 291.515c-7.56 7.56-2.206 20.485 8.485 20.485h246.059c10.691 0 16.045-12.926 8.486-20.485z" ], + "caret-up": [ 320, 512, [], "f0d8", "M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z" ], + "cart-arrow-down": [ 576, 512, [], "f218", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z" ], + "cart-plus": [ 576, 512, [], "f217", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM408 168h-48v-40c0-8.837-7.163-16-16-16h-16c-8.837 0-16 7.163-16 16v40h-48c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h48v40c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-40h48c8.837 0 16-7.163 16-16v-16c0-8.837-7.163-16-16-16z" ], + certificate: [ 512, 512, [], "f0a3", "M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z" ], + chalkboard: [ 640, 512, [], "f51b", "M96 64h448v352h64V40c0-22.06-17.94-40-40-40H72C49.94 0 32 17.94 32 40v376h64V64zm528 384H480v-64H288v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" ], + "chalkboard-teacher": [ 640, 512, [], "f51c", "M208 352c-2.39 0-4.78.35-7.06 1.09C187.98 357.3 174.35 360 160 360c-14.35 0-27.98-2.7-40.95-6.91-2.28-.74-4.66-1.09-7.05-1.09C49.94 352-.33 402.48 0 464.62.14 490.88 21.73 512 48 512h224c26.27 0 47.86-21.12 48-47.38.33-62.14-49.94-112.62-112-112.62zm-48-32c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM592 0H208c-26.47 0-48 22.25-48 49.59V96c23.42 0 45.1 6.78 64 17.8V64h352v288h-64v-64H384v64h-76.24c19.1 16.69 33.12 38.73 39.69 64H592c26.47 0 48-22.25 48-49.59V49.59C640 22.25 618.47 0 592 0z" ], + "chart-area": [ 512, 512, [], "f1fe", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z" ], + "chart-bar": [ 512, 512, [], "f080", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zm-308-44v-72c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V204c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V108c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z" ], + "chart-line": [ 512, 512, [], "f201", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM456 96H344c-21.4 0-32.1 25.9-17 41l32.9 32.9-72 72.9-55.6-55.6c-4.7-4.7-12.2-4.7-16.9 0L96.4 305c-4.7 4.6-4.8 12.2-.2 16.9l28.5 29.4c4.7 4.8 12.4 4.9 17.1.1l82.1-82.1 55.5 55.5c4.7 4.7 12.3 4.7 17 0l109.2-109.2L439 249c15.1 15.1 41 4.4 41-17V120c0-13.3-10.7-24-24-24z" ], + "chart-pie": [ 576, 512, [], "f200", "M288 12.3V240h227.7c6.9 0 12.3-5.8 12-12.7-6.4-122.4-104.5-220.6-227-227-6.9-.3-12.7 5.1-12.7 12zM552.7 288c6.9 0 12.3 5.8 12 12.7-2.8 53.2-23.2 105.6-61.2 147.8-4.6 5.1-12.6 5.4-17.5.5L325 288h227.7zM401 433c4.8 4.8 4.7 12.8-.4 17.3-42.6 38.4-99 61.7-160.8 61.7C107.6 511.9-.2 403.8 0 271.5.2 143.4 100.8 38.9 227.3 32.3c6.9-.4 12.7 5.1 12.7 12V272l161 161z" ], + check: [ 512, 512, [], "f00c", "M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" ], + "check-circle": [ 512, 512, [], "f058", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z" ], + "check-double": [ 512, 512, [], "f560", "M504.5 171.95l-36.2-36.41c-10-10.05-26.21-10.05-36.2 0L192 377.02 79.9 264.28c-10-10.06-26.21-10.06-36.2 0L7.5 300.69c-10 10.05-10 26.36 0 36.41l166.4 167.36c10 10.06 26.21 10.06 36.2 0l294.4-296.09c10-10.06 10-26.36 0-36.42zM166.57 282.71c6.84 7.02 18.18 7.02 25.21.18L403.85 72.62c7.02-6.84 7.02-18.18.18-25.21L362.08 5.29c-6.84-7.02-18.18-7.02-25.21-.18L179.71 161.19l-68.23-68.77c-6.84-7.02-18.18-7.02-25.2-.18l-42.13 41.77c-7.02 6.84-7.02 18.18-.18 25.2l122.6 123.5z" ], + "check-square": [ 448, 512, [], "f14a", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z" ], + chess: [ 512, 512, [], "f439", "M199.821 217.633a6 6 0 0 1 6 6l-.001 20.766a6 6 0 0 1-6 6h-25.805c0 31.715-2.153 96.201 17.398 153.229H64.597C84.54 345.452 82.02 279.245 82.02 250.399H56.183a6 6 0 0 1-6-6l.002-20.766a6 6 0 0 1 6-6h143.636zM41.554 115.088l34.58 95.071h103.734l34.572-95.072c2.846-7.826-2.95-16.101-11.278-16.101H152v-30.22h21.57a6 6 0 0 0 6-6V40.383a6 6 0 0 0-6-6h-28.367V6a6 6 0 0 0-6-6H116.82a6 6 0 0 0-6 6v28.383H82.421a6 6 0 0 0-6 6v22.383a6 6 0 0 0 6 6H104v30.219H52.831c-8.328.001-14.124 8.276-11.277 16.103zM222.678 445.17v-28.067a6 6 0 0 0-6-6H39.322a6 6 0 0 0-6 6v28.067l-22.148 14.164a6 6 0 0 0-2.767 5.055V506a6 6 0 0 0 6 6h227.187a6 6 0 0 0 6-6v-41.612a6 6 0 0 0-2.767-5.055l-22.149-14.163zm90.578-144.225l24.88 16.963c.09 18.124-.167 63.904-11.905 114.522h147.526c-11.713-50.475-11.969-96.324-11.882-114.537l24.859-16.949a3.856 3.856 0 0 0 1.684-3.187v-69.901a3.857 3.857 0 0 0-3.857-3.857h-27.655a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.858-3.857h-52.918a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.857-3.857H315.43a3.857 3.857 0 0 0-3.857 3.857v69.901a3.855 3.855 0 0 0 1.683 3.188zm71.585 51.906c0-8.372 6.787-15.158 15.159-15.158s15.158 6.787 15.158 15.158v30.318h-30.317v-30.318zM504.62 470.059l-13.664-10.639v-15.552a3.857 3.857 0 0 0-3.857-3.857H312.915a3.857 3.857 0 0 0-3.857 3.857v15.552l-13.677 10.639a3.857 3.857 0 0 0-1.488 3.044v35.039a3.857 3.857 0 0 0 3.857 3.857h204.5a3.857 3.857 0 0 0 3.857-3.857v-35.04a3.859 3.859 0 0 0-1.487-3.043z" ], + "chess-bishop": [ 320, 512, [], "f43a", "M123.158 77.881C107.369 72.53 96 57.597 96 40c0-22.091 17.909-40 40-40h47.796c22.091 0 40 17.909 40 40 0 17.541-11.295 32.434-27.005 37.829 23.993 16.657 48.577 46.839 68.703 82.05L144.929 280.443a6 6 0 0 0 0 8.485l14.142 14.142a6 6 0 0 0 8.485 0L280.9 189.726c17.758 38.297 29.371 79.443 29.371 114.273 0 53.786-22.897 75.788-58.446 86.033V448H68.174v-57.97C32.631 379.784 9.739 357.781 9.739 304c0-78.029 58.281-187.766 113.419-226.119zM320 500v-24c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12z" ], + "chess-board": [ 512, 512, [], "f43c", "M256 256v64h-64v-64h64zm0-256h-64v64h64V0zm0 256h64v-64h-64v64zM384 0h-64v64h64V0zm0 512h64v-64h-64v64zm128-64v-64h-64v64h64zm-384 64h64v-64h-64v64zm0-512H64v64h64V0zm384 192v-64h-64v64h64zm0 128v-64h-64v64h64zM0 512h64v-64H0v64zM0 64v64h64V64H0zm0 128v64h64v-64H0zm0 128v64h64v-64H0zm256 192h64v-64h-64v64zm-64-128v64h64v-64h-64zm64-192v-64h-64v64h64zM64 384v64h64v-64H64zm64-128H64v64h64v-64zm256 128h64v-64h-64v64zM512 0h-64v64h64V0zM384 256h64v-64h-64v64zm0-192v64h64V64h-64zm-64 320v64h64v-64h-64zm-192-64v64h64v-64h-64zm128 0v64h64v-64h-64zm-64-128h-64v64h64v-64zm-64-64H64v64h64v-64zm192 192h64v-64h-64v64zM192 128V64h-64v64h64zm128 0V64h-64v64h64zm0 64h64v-64h-64v64z" ], + "chess-king": [ 448, 512, [], "f43f", "M416 476v24c0 6.627-5.373 12-12 12H44c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12zm-8.033-324H248v-48h50a6 6 0 0 0 6-6V62a6 6 0 0 0-6-6h-50V6a6 6 0 0 0-6-6h-36a6 6 0 0 0-6 6v50h-50a6 6 0 0 0-6 6v36a6 6 0 0 0 6 6h50v48H40.033c-27.574 0-46.879 27.244-37.738 53.259L87.582 448h272.836l85.287-242.741C454.846 179.244 435.541 152 407.967 152z" ], + "chess-knight": [ 384, 512, [], "f441", "M352 224v224H32v-46.557c0-30.302 17.12-58.003 44.223-71.554l57.243-28.622A48 48 0 0 0 160 258.334V208l-22.127 11.063a23.996 23.996 0 0 0-12.55 15.645l-11.835 47.338a12 12 0 0 1-7.185 8.231l-29.601 11.84a11.998 11.998 0 0 1-9.33-.176L7.126 275.167A12 12 0 0 1 0 264.201v-158.26c0-6.365 2.529-12.47 7.03-16.971L16 80 1.789 51.578A16.937 16.937 0 0 1 0 44c0-6.627 5.373-12 12-12h148c106.039 0 192 85.961 192 192zm20 240H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12zM52 128c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z" ], + "chess-pawn": [ 320, 512, [], "f443", "M264 448H56s60-42.743 60-176H84c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h40.209C95.721 210.56 76 181.588 76 148c0-46.392 37.608-84 84-84s84 37.608 84 84c0 33.588-19.721 62.56-48.209 76H236c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12h-32c0 133.257 60 176 60 176zm28 16H28c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h264c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12z" ], + "chess-queen": [ 512, 512, [], "f445", "M436 512H76c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12zM255.579 0c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zm204.568 154.634c-5.768-3.045-12.916-.932-16.082 4.77-8.616 15.516-22.747 37.801-44.065 37.801-28.714 0-30.625-19.804-31.686-57.542-.183-6.492-5.501-11.664-11.995-11.664h-41.006c-5.175 0-9.754 3.328-11.388 8.238-8.89 26.709-26.073 40.992-47.925 40.992s-39.034-14.283-47.925-40.992c-1.634-4.91-6.213-8.238-11.388-8.238h-41.005c-6.495 0-11.813 5.174-11.995 11.667-1.052 37.642-2.934 57.539-31.688 57.539-20.691 0-33.817-20.224-44.425-38.025-3.266-5.48-10.258-7.431-15.899-4.453l-39.179 20.679a12 12 0 0 0-5.51 15.145L112 448h288l105.014-257.448a12 12 0 0 0-5.51-15.145l-39.357-20.773z" ], + "chess-rook": [ 384, 512, [], "f447", "M81.241 215.027C80.957 258.92 77.411 348.076 48 448h287.982c-29.4-99.604-32.936-188.912-33.221-232.975l45.418-42.312a11.998 11.998 0 0 0 3.82-8.78V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v44h-48V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v44H96V44c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v119.932c0 3.33 1.384 6.51 3.82 8.78l45.421 42.315zM160 256c0-17.673 14.327-32 32-32 17.673 0 32 14.327 32 32v64.004h-64V256zm224 220v24c0 6.627-5.373 12-12 12H12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12z" ], + "chevron-circle-down": [ 512, 512, [], "f13a", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM273 369.9l135.5-135.5c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L256 285.1 154.4 183.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L239 369.9c9.4 9.4 24.6 9.4 34 0z" ], + "chevron-circle-left": [ 512, 512, [], "f137", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z" ], + "chevron-circle-right": [ 512, 512, [], "f138", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z" ], + "chevron-circle-up": [ 512, 512, [], "f139", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm231-113.9L103.5 277.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L256 226.9l101.6 101.6c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L273 142.1c-9.4-9.4-24.6-9.4-34 0z" ], + "chevron-down": [ 448, 512, [], "f078", "M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z" ], + "chevron-left": [ 320, 512, [], "f053", "M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z" ], + "chevron-right": [ 320, 512, [], "f054", "M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z" ], + "chevron-up": [ 448, 512, [], "f077", "M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z" ], + child: [ 384, 512, [], "f1ae", "M120 72c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.764-32.235 72-72 72s-72-32.236-72-72zm254.627 1.373c-12.496-12.497-32.758-12.497-45.254 0L242.745 160H141.254L54.627 73.373c-12.496-12.497-32.758-12.497-45.254 0-12.497 12.497-12.497 32.758 0 45.255L104 213.254V480c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V368h16v112c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V213.254l94.627-94.627c12.497-12.497 12.497-32.757 0-45.254z" ], + church: [ 640, 512, [], "f51d", "M464.46 246.68L352 179.2V128h48c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-48V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v48h-48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v51.2l-112.46 67.48A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.65-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.54A32.024 32.024 0 0 0 0 395.96zm620.61-29.42L512 320v192h112c8.84 0 16-7.16 16-16V395.96c0-12.8-7.63-24.37-19.39-29.42z" ], + circle: [ 512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z" ], + "circle-notch": [ 512, 512, [], "f1ce", "M288 39.056v16.659c0 10.804 7.281 20.159 17.686 23.066C383.204 100.434 440 171.518 440 256c0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-84.47 56.786-155.564 134.312-177.219C216.719 75.874 224 66.517 224 55.712V39.064c0-15.709-14.834-27.153-30.046-23.234C86.603 43.482 7.394 141.206 8.003 257.332c.72 137.052 111.477 246.956 248.531 246.667C393.255 503.711 504 392.788 504 256c0-115.633-79.14-212.779-186.211-240.236C302.678 11.889 288 23.456 288 39.056z" ], + clipboard: [ 384, 512, [], "f328", "M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z" ], + "clipboard-check": [ 384, 512, [], "f46c", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm121.2 231.8l-143 141.8c-4.7 4.7-12.3 4.6-17-.1l-82.6-83.3c-4.7-4.7-4.6-12.3.1-17L99.1 285c4.7-4.7 12.3-4.6 17 .1l46 46.4 106-105.2c4.7-4.7 12.3-4.6 17 .1l28.2 28.4c4.7 4.8 4.6 12.3-.1 17z" ], + "clipboard-list": [ 384, 512, [], "f46d", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM96 424c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm96-192c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm128 368c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z" ], + clock: [ 512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm57.1 350.1L224.9 294c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v137.7l63.5 46.2c5.4 3.9 6.5 11.4 2.6 16.8l-28.2 38.8c-3.9 5.3-11.4 6.5-16.8 2.6z" ], + clone: [ 512, 512, [], "f24d", "M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z" ], + "closed-captioning": [ 512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM218.1 287.7c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2.1 48 51.1 70.5 92.3 32.6zm190.4 0c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.5 56.9-172.7 32.1-172.7-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 222.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6z" ], + cloud: [ 640, 512, [], "f0c2", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z" ], + "cloud-download-alt": [ 640, 512, [], "f381", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z" ], + "cloud-upload-alt": [ 640, 512, [], "f382", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z" ], + cocktail: [ 576, 512, [], "f561", "M296 464h-56V338.78l168.74-168.73c15.52-15.52 4.53-42.05-17.42-42.05H24.68c-21.95 0-32.94 26.53-17.42 42.05L176 338.78V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM432 0c-62.61 0-115.35 40.2-135.18 96h52.54c16.65-28.55 47.27-48 82.64-48 52.93 0 96 43.06 96 96s-43.07 96-96 96c-14.04 0-27.29-3.2-39.32-8.64l-35.26 35.26C379.23 279.92 404.59 288 432 288c79.53 0 144-64.47 144-144S511.53 0 432 0z" ], + code: [ 640, 512, [], "f121", "M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z" ], + "code-branch": [ 384, 512, [], "f126", "M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z" ], + coffee: [ 640, 512, [], "f0f4", "M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z" ], + cog: [ 512, 512, [], "f013", "M444.788 291.1l42.616 24.599c4.867 2.809 7.126 8.618 5.459 13.985-11.07 35.642-29.97 67.842-54.689 94.586a12.016 12.016 0 0 1-14.832 2.254l-42.584-24.595a191.577 191.577 0 0 1-60.759 35.13v49.182a12.01 12.01 0 0 1-9.377 11.718c-34.956 7.85-72.499 8.256-109.219.007-5.49-1.233-9.403-6.096-9.403-11.723v-49.184a191.555 191.555 0 0 1-60.759-35.13l-42.584 24.595a12.016 12.016 0 0 1-14.832-2.254c-24.718-26.744-43.619-58.944-54.689-94.586-1.667-5.366.592-11.175 5.459-13.985L67.212 291.1a193.48 193.48 0 0 1 0-70.199l-42.616-24.599c-4.867-2.809-7.126-8.618-5.459-13.985 11.07-35.642 29.97-67.842 54.689-94.586a12.016 12.016 0 0 1 14.832-2.254l42.584 24.595a191.577 191.577 0 0 1 60.759-35.13V25.759a12.01 12.01 0 0 1 9.377-11.718c34.956-7.85 72.499-8.256 109.219-.007 5.49 1.233 9.403 6.096 9.403 11.723v49.184a191.555 191.555 0 0 1 60.759 35.13l42.584-24.595a12.016 12.016 0 0 1 14.832 2.254c24.718 26.744 43.619 58.944 54.689 94.586 1.667 5.366-.592 11.175-5.459 13.985L444.788 220.9a193.485 193.485 0 0 1 0 70.2zM336 256c0-44.112-35.888-80-80-80s-80 35.888-80 80 35.888 80 80 80 80-35.888 80-80z" ], + cogs: [ 640, 512, [], "f085", "M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z" ], + coins: [ 512, 512, [], "f51e", "M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z" ], + columns: [ 512, 512, [], "f0db", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z" ], + comment: [ 512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32z" ], + "comment-alt": [ 512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 9.8 11.2 15.5 19.1 9.7L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z" ], + "comment-dots": [ 512, 512, [], "f4ad", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + "comment-slash": [ 640, 512, [], "f4b3", "M64 240c0 49.6 21.4 95 57 130.7-12.6 50.3-54.3 95.2-54.8 95.8-2.2 2.3-2.8 5.7-1.5 8.7 1.3 2.9 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 27.4 0 53.7-3.6 78.4-10L72.9 186.4c-5.6 17.1-8.9 35-8.9 53.6zm569.8 218.1l-114.4-88.4C554.6 334.1 576 289.2 576 240c0-114.9-114.6-208-256-208-65.1 0-124.2 20.1-169.4 52.7L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z" ], + comments: [ 576, 512, [], "f086", "M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z" ], + "compact-disc": [ 496, 512, [], "f51f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 256H56c0-105.9 86.1-192 192-192v32c-88.2 0-160 71.8-160 160zm160 96c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" ], + compass: [ 512, 512, [], "f14e", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM307.446 120.844l-102.642 97.779a23.997 23.997 0 0 0-6.772 11.729l-33.359 137.779c-5.68 23.459 22.777 39.318 39.88 23.024l102.64-97.779a23.99 23.99 0 0 0 6.772-11.729l33.359-137.779c5.618-23.198-22.591-39.493-39.878-23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z" ], + compress: [ 448, 512, [], "f066", "M436 192H312c-13.3 0-24-10.7-24-24V44c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-276-24V44c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v84H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 300V344c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-84h84c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H312c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z" ], + "concierge-bell": [ 512, 512, [], "f562", "M288 130.54V112h16c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h16v18.54C115.49 146.11 32 239.18 32 352h448c0-112.82-83.49-205.89-192-221.46zM496 384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" ], + cookie: [ 512, 512, [], "f563", "M510.37 254.79l-12.08-76.26a132.493 132.493 0 0 0-37.16-72.95l-54.76-54.75c-19.73-19.72-45.18-32.7-72.71-37.05l-76.7-12.15c-27.51-4.36-55.69.11-80.52 12.76L107.32 49.6a132.25 132.25 0 0 0-57.79 57.8l-35.1 68.88a132.602 132.602 0 0 0-12.82 80.94l12.08 76.27a132.493 132.493 0 0 0 37.16 72.95l54.76 54.75a132.087 132.087 0 0 0 72.71 37.05l76.7 12.14c27.51 4.36 55.69-.11 80.52-12.75l69.12-35.21a132.302 132.302 0 0 0 57.79-57.8l35.1-68.87c12.71-24.96 17.2-53.3 12.82-80.96zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "cookie-bite": [ 512, 512, [], "f564", "M510.52 255.82c-69.97-.85-126.47-57.69-126.47-127.86-70.17 0-127-56.49-127.86-126.45-27.26-4.14-55.13.3-79.72 12.82l-69.13 35.22a132.221 132.221 0 0 0-57.79 57.81l-35.1 68.88a132.645 132.645 0 0 0-12.82 80.95l12.08 76.27a132.521 132.521 0 0 0 37.16 72.96l54.77 54.76a132.036 132.036 0 0 0 72.71 37.06l76.71 12.15c27.51 4.36 55.7-.11 80.53-12.76l69.13-35.21a132.273 132.273 0 0 0 57.79-57.81l35.1-68.88c12.56-24.64 17.01-52.58 12.91-79.91zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + copy: [ 448, 512, [], "f0c5", "M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z" ], + copyright: [ 512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm117.134 346.753c-1.592 1.867-39.776 45.731-109.851 45.731-84.692 0-144.484-63.26-144.484-145.567 0-81.303 62.004-143.401 143.762-143.401 66.957 0 101.965 37.315 103.422 38.904a12 12 0 0 1 1.238 14.623l-22.38 34.655c-4.049 6.267-12.774 7.351-18.234 2.295-.233-.214-26.529-23.88-61.88-23.88-46.116 0-73.916 33.575-73.916 76.082 0 39.602 25.514 79.692 74.277 79.692 38.697 0 65.28-28.338 65.544-28.625 5.132-5.565 14.059-5.033 18.508 1.053l24.547 33.572a12.001 12.001 0 0 1-.553 14.866z" ], + couch: [ 640, 512, [], "f4b8", "M160 224v64h320v-64c0-35.3 28.7-64 64-64h32c0-53-43-96-96-96H160c-53 0-96 43-96 96h32c35.3 0 64 28.7 64 64zm416-32h-32c-17.7 0-32 14.3-32 32v96H128v-96c0-17.7-14.3-32-32-32H64c-35.3 0-64 28.7-64 64 0 23.6 13 44 32 55.1V432c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-16h384v16c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V311.1c19-11.1 32-31.5 32-55.1 0-35.3-28.7-64-64-64z" ], + "credit-card": [ 576, 512, [], "f09d", "M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V256H0v176zm192-68c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-40zm-128 0c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM576 80v48H0V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48z" ], + crop: [ 512, 512, [], "f125", "M488 352h-40V109.25l59.31-59.31c6.25-6.25 6.25-16.38 0-22.63L484.69 4.69c-6.25-6.25-16.38-6.25-22.63 0L402.75 64H192v96h114.75L160 306.75V24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v264c0 13.25 10.75 24 24 24h232v-96H205.25L352 205.25V488c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z" ], + "crop-alt": [ 512, 512, [], "f565", "M488 352h-40V96c0-17.67-14.33-32-32-32H192v96h160v328c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24zM160 24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v256c0 17.67 14.33 32 32 32h224v-96H160V24z" ], + crosshairs: [ 512, 512, [], "f05b", "M500 224h-30.364C455.724 130.325 381.675 56.276 288 42.364V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v30.364C130.325 56.276 56.276 130.325 42.364 224H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h30.364C56.276 381.675 130.325 455.724 224 469.636V500c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-30.364C381.675 455.724 455.724 381.675 469.636 288H500c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zM288 404.634V364c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40.634C165.826 392.232 119.783 346.243 107.366 288H148c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40.634C119.768 165.826 165.757 119.783 224 107.366V148c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40.634C346.174 119.768 392.217 165.757 404.634 224H364c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40.634C392.232 346.174 346.243 392.217 288 404.634zM288 256c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z" ], + crow: [ 640, 512, [], "f520", "M544 32h-16.36C513.04 12.68 490.09 0 464 0c-44.18 0-80 35.82-80 80v20.98L12.09 393.57A30.216 30.216 0 0 0 0 417.74c0 22.46 23.64 37.07 43.73 27.03L165.27 384h96.49l44.41 120.1c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38L312.94 384H352c1.91 0 3.76-.23 5.66-.29l44.51 120.38c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38l-41.24-111.53C485.74 352.8 544 279.26 544 192v-80l96-16c0-35.35-42.98-64-96-64zm-80 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z" ], + crown: [ 640, 512, [], "f521", "M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.4 7.7-.8L128 416h384l72.3-192.8c2.5.4 5.1.8 7.7.8 26.5 0 48-21.5 48-48s-21.5-48-48-48z" ], + cube: [ 512, 512, [], "f1b2", "M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z" ], + cubes: [ 512, 512, [], "f1b3", "M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z" ], + cut: [ 448, 512, [], "f0c4", "M278.06 256L444.48 89.57c4.69-4.69 4.69-12.29 0-16.97-32.8-32.8-85.99-32.8-118.79 0L210.18 188.12l-24.86-24.86c4.31-10.92 6.68-22.81 6.68-35.26 0-53.02-42.98-96-96-96S0 74.98 0 128s42.98 96 96 96c4.54 0 8.99-.32 13.36-.93L142.29 256l-32.93 32.93c-4.37-.61-8.83-.93-13.36-.93-53.02 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96c0-12.45-2.37-24.34-6.68-35.26l24.86-24.86L325.69 439.4c32.8 32.8 85.99 32.8 118.79 0 4.69-4.68 4.69-12.28 0-16.97L278.06 256zM96 160c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32zm0 256c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z" ], + database: [ 448, 512, [], "f1c0", "M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z" ], + deaf: [ 512, 512, [], "f2a4", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm268.485-52.201L480.2 3.515c-4.687-4.686-12.284-4.686-16.971 0L376.2 90.544c-4.686 4.686-4.686 12.284 0 16.971l28.285 28.285c4.686 4.686 12.284 4.686 16.97 0l87.03-87.029c4.687-4.688 4.687-12.286 0-16.972zM168.97 314.745c-4.686-4.686-12.284-4.686-16.97 0L3.515 463.23c-4.686 4.686-4.686 12.284 0 16.971L31.8 508.485c4.687 4.686 12.284 4.686 16.971 0L197.256 360c4.686-4.686 4.686-12.284 0-16.971l-28.286-28.284z" ], + desktop: [ 576, 512, [], "f108", "M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z" ], + diagnoses: [ 640, 512, [], "f470", "M496 256c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm-176-80c48.5 0 88-39.5 88-88S368.5 0 320 0s-88 39.5-88 88 39.5 88 88 88zM59.8 364c10.2 15.3 29.3 17.8 42.9 9.8 16.2-9.6 56.2-31.7 105.3-48.6V416h224v-90.7c49.1 16.8 89.1 39 105.3 48.6 13.6 8 32.7 5.3 42.9-9.8l17.8-26.7c8.8-13.2 7.6-34.6-10-45.1-11.9-7.1-29.7-17-51.1-27.4-28.1 46.1-99.4 17.8-87.7-35.1C409.3 217.2 365.1 208 320 208c-57 0-112.9 14.5-160 32.2-.2 40.2-47.6 63.3-79.2 36-11.2 6-21.3 11.6-28.7 16-17.6 10.5-18.8 31.8-10 45.1L59.8 364zM368 344c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-160 8c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm512 192H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z" ], + dice: [ 640, 512, [], "f522", "M592 192H473.26c12.69 29.59 7.12 65.2-17 89.32L320 417.58V464c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48V240c0-26.51-21.49-48-48-48zM480 376c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm-46.37-186.7L258.7 14.37c-19.16-19.16-50.23-19.16-69.39 0L14.37 189.3c-19.16 19.16-19.16 50.23 0 69.39L189.3 433.63c19.16 19.16 50.23 19.16 69.39 0L433.63 258.7c19.16-19.17 19.16-50.24 0-69.4zM96 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z" ], + "dice-five": [ 448, 512, [], "f523", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "dice-four": [ 448, 512, [], "f524", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "dice-one": [ 448, 512, [], "f525", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM224 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "dice-six": [ 448, 512, [], "f526", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "dice-three": [ 448, 512, [], "f527", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "dice-two": [ 448, 512, [], "f528", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "digital-tachograph": [ 640, 512, [], "f566", "M608 96H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128c0-17.67-14.33-32-32-32zM304 352c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8zM72 288v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H80c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm40-64c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-48c0-8.84 7.16-16 16-16h208c8.84 0 16 7.16 16 16v48zm272 128c0 4.42-3.58 8-8 8H344c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8z" ], + divide: [ 448, 512, [], "f529", "M224 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm0-192c35.35 0 64-28.65 64-64s-28.65-64-64-64-64 28.65-64 64 28.65 64 64 64zm192 48H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" ], + dizzy: [ 496, 512, [], "f567", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-96 206.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L174.6 192l28.7 28.7c15.2 15.2-7.9 37.4-22.6 22.6L152 214.6zM248 416c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm147.3-195.3c15.2 15.2-7.9 37.4-22.6 22.6L344 214.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L366.6 192l28.7 28.7z" ], + dna: [ 448, 512, [], "f471", "M.1 494.1c-1.1 9.5 6.3 17.8 15.9 17.8l32.3.1c8.1 0 14.9-5.9 16-13.9.7-4.9 1.8-11.1 3.4-18.1H380c1.6 6.9 2.9 13.2 3.5 18.1 1.1 8 7.9 14 16 13.9l32.3-.1c9.6 0 17.1-8.3 15.9-17.8-4.6-37.9-25.6-129-118.9-207.7-17.6 12.4-37.1 24.2-58.5 35.4 6.2 4.6 11.4 9.4 17 14.2H159.7c21.3-18.1 47-35.6 78.7-51.4C410.5 199.1 442.1 65.8 447.9 17.9 449 8.4 441.6.1 432 .1L399.6 0c-8.1 0-14.9 5.9-16 13.9-.7 4.9-1.8 11.1-3.4 18.1H67.8c-1.6-7-2.7-13.1-3.4-18.1-1.1-8-7.9-14-16-13.9L16.1.1C6.5.1-1 8.4.1 17.9 5.3 60.8 31.4 171.8 160 256 31.5 340.2 5.3 451.2.1 494.1zM224 219.6c-25.1-13.7-46.4-28.4-64.3-43.6h128.5c-17.8 15.2-39.1 30-64.2 43.6zM355.1 96c-5.8 10.4-12.8 21.1-21 32H114c-8.3-10.9-15.3-21.6-21-32h262.1zM92.9 416c5.8-10.4 12.8-21.1 21-32h219.4c8.3 10.9 15.4 21.6 21.2 32H92.9z" ], + "dollar-sign": [ 288, 512, [], "f155", "M209.2 233.4l-108-31.6C88.7 198.2 80 186.5 80 173.5c0-16.3 13.2-29.5 29.5-29.5h66.3c12.2 0 24.2 3.7 34.2 10.5 6.1 4.1 14.3 3.1 19.5-2l34.8-34c7.1-6.9 6.1-18.4-1.8-24.5C238 74.8 207.4 64.1 176 64V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C45.8 64-5.4 118.7.5 183.6c4.2 46.1 39.4 83.6 83.8 96.6l102.5 30c12.5 3.7 21.2 15.3 21.2 28.3 0 16.3-13.2 29.5-29.5 29.5h-66.3C100 368 88 364.3 78 357.5c-6.1-4.1-14.3-3.1-19.5 2l-34.8 34c-7.1 6.9-6.1 18.4 1.8 24.5 24.5 19.2 55.1 29.9 86.5 30v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48.2c46.6-.9 90.3-28.6 105.7-72.7 21.5-61.6-14.6-124.8-72.5-141.7z" ], + dolly: [ 576, 512, [], "f472", "M294.2 277.7c18 5 34.7 13.4 49.5 24.7l161.5-53.8c8.4-2.8 12.9-11.9 10.1-20.2L454.9 47.2c-2.8-8.4-11.9-12.9-20.2-10.1l-61.1 20.4 33.1 99.4L346 177l-33.1-99.4-61.6 20.5c-8.4 2.8-12.9 11.9-10.1 20.2l53 159.4zm281 48.7L565 296c-2.8-8.4-11.9-12.9-20.2-10.1l-213.5 71.2c-17.2-22-43.6-36.4-73.5-37L158.4 21.9C154 8.8 141.8 0 128 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h88.9l92.2 276.7c-26.1 20.4-41.7 53.6-36 90.5 6.1 39.4 37.9 72.3 77.3 79.2 60.2 10.7 112.3-34.8 113.4-92.6l213.3-71.2c8.3-2.8 12.9-11.8 10.1-20.2zM256 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z" ], + "dolly-flatbed": [ 640, 512, [], "f474", "M208 320h384c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H448v128l-48-32-48 32V32H208c-8.8 0-16 7.2-16 16v256c0 8.8 7.2 16 16 16zm416 64H128V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h82.9c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H451c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H624c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z" ], + donate: [ 512, 512, [], "f4b9", "M256 416c114.9 0 208-93.1 208-208S370.9 0 256 0 48 93.1 48 208s93.1 208 208 208zM233.8 97.4V80.6c0-9.2 7.4-16.6 16.6-16.6h11.1c9.2 0 16.6 7.4 16.6 16.6v17c15.5.8 30.5 6.1 43 15.4 5.6 4.1 6.2 12.3 1.2 17.1L306 145.6c-3.8 3.7-9.5 3.8-14 1-5.4-3.4-11.4-5.1-17.8-5.1h-38.9c-9 0-16.3 8.2-16.3 18.3 0 8.2 5 15.5 12.1 17.6l62.3 18.7c25.7 7.7 43.7 32.4 43.7 60.1 0 34-26.4 61.5-59.1 62.4v16.8c0 9.2-7.4 16.6-16.6 16.6h-11.1c-9.2 0-16.6-7.4-16.6-16.6v-17c-15.5-.8-30.5-6.1-43-15.4-5.6-4.1-6.2-12.3-1.2-17.1l16.3-15.5c3.8-3.7 9.5-3.8 14-1 5.4 3.4 11.4 5.1 17.8 5.1h38.9c9 0 16.3-8.2 16.3-18.3 0-8.2-5-15.5-12.1-17.6l-62.3-18.7c-25.7-7.7-43.7-32.4-43.7-60.1.1-34 26.4-61.5 59.1-62.4zM480 352h-32.5c-19.6 26-44.6 47.7-73 64h63.8c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8h63.8c-28.4-16.3-53.3-38-73-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32z" ], + "door-closed": [ 640, 512, [], "f52a", "M624 448H512V50.8C512 22.78 490.47 0 464 0H175.99c-26.47 0-48 22.78-48 50.8V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM415.99 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32c.01 17.67-14.32 32-32 32z" ], + "door-open": [ 640, 512, [], "f52b", "M624 448h-80V113.45C544 86.19 522.47 64 496 64H384v64h96v384h144c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM312.24 1.01l-192 49.74C105.99 54.44 96 67.7 96 82.92V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h336V33.18c0-21.58-19.56-37.41-39.76-32.17zM264 288c-13.25 0-24-14.33-24-32s10.75-32 24-32 24 14.33 24 32-10.75 32-24 32z" ], + "dot-circle": [ 512, 512, [], "f192", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z" ], + dove: [ 512, 512, [], "f4ba", "M288 167.2v-28.1c-28.2-36.3-47.1-79.3-54.1-125.2-2.1-13.5-19-18.8-27.8-8.3-21.1 24.9-37.7 54.1-48.9 86.5 34.2 38.3 80 64.6 130.8 75.1zM400 64c-44.2 0-80 35.9-80 80.1v59.4C215.6 197.3 127 133 87 41.8c-5.5-12.5-23.2-13.2-29-.9C41.4 76 32 115.2 32 156.6c0 70.8 34.1 136.9 85.1 185.9 13.2 12.7 26.1 23.2 38.9 32.8l-143.9 36C1.4 414-3.4 426.4 2.6 435.7 20 462.6 63 508.2 155.8 512c8 .3 16-2.6 22.1-7.9l65.2-56.1H320c88.4 0 160-71.5 160-159.9V128l32-64H400zm0 96.1c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z" ], + download: [ 512, 512, [], "f019", "M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z" ], + "drafting-compass": [ 512, 512, [], "f568", "M457.01 344.42c-25.05 20.33-52.63 37.18-82.54 49.05l54.38 94.19 53.95 23.04c9.81 4.19 20.89-2.21 22.17-12.8l7.02-58.25-54.98-95.23zm42.49-94.56c4.86-7.67 1.89-17.99-6.05-22.39l-28.07-15.57c-7.48-4.15-16.61-1.46-21.26 5.72C403.01 281.15 332.25 320 256 320c-23.93 0-47.23-4.25-69.41-11.53l67.36-116.68c.7.02 1.34.21 2.04.21s1.35-.19 2.04-.21l51.09 88.5c31.23-8.96 59.56-25.75 82.61-48.92l-51.79-89.71C347.39 128.03 352 112.63 352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96c0 16.63 4.61 32.03 12.05 45.66l-68.3 118.31c-12.55-11.61-23.96-24.59-33.68-39-4.79-7.1-13.97-9.62-21.38-5.33l-27.75 16.07c-7.85 4.54-10.63 14.9-5.64 22.47 15.57 23.64 34.69 44.21 55.98 62.02L0 439.66l7.02 58.25c1.28 10.59 12.36 16.99 22.17 12.8l53.95-23.04 70.8-122.63C186.13 377.28 220.62 384 256 384c99.05 0 190.88-51.01 243.5-134.14zM256 64c17.67 0 32 14.33 32 32s-14.33 32-32 32-32-14.33-32-32 14.33-32 32-32z" ], + drum: [ 576, 512, [], "f569", "M458.08 120.88l102.39-61.43c15.16-9.09 20.06-28.75 10.97-43.91C562.34.39 542.7-4.53 527.53 4.57l-160.69 96.41A629.32 629.32 0 0 0 288 96C128.94 96 0 153.31 0 224v160.83c0 30.46 24.03 58.4 64 80.37v-96.37c0-17.6 14.4-32 32-32s32 14.4 32 32v122.41c37.4 11.13 81 18.44 128 20.75V400.84c0-17.6 14.4-32 32-32s32 14.4 32 32V512c47-2.31 90.6-9.62 128-20.75V368.84c0-17.6 14.4-32 32-32s32 14.4 32 32v96.37c39.97-21.97 64-49.91 64-80.37V224.01c-.01-42.38-46.54-79.84-117.92-103.13zM288 304c-132.55 0-240-35.82-240-80s107.45-80 240-80c2.34 0 4.62.1 6.94.12l-87.41 52.44c-15.16 9.09-20.06 28.75-10.97 43.91 9.56 15.93 29.51 19.61 43.91 10.97l162.71-97.62C477.55 167.41 528 193.74 528 224.01 528 268.19 420.54 304 288 304z" ], + "drum-steelpan": [ 576, 512, [], "f56a", "M288 32C128.94 32 0 89.31 0 160v192c0 70.69 128.94 128 288 128s288-57.31 288-128V160c0-70.69-128.94-128-288-128zm-82.99 158.36c-4.45 16.61-14.54 30.57-28.31 40.48C100.23 217.46 48 190.78 48 160c0-30.16 50.11-56.39 124.04-70.03l25.6 44.34c9.86 17.09 12.48 36.99 7.37 56.05zM288 240c-21.08 0-41.41-1-60.89-2.7 8.06-26.13 32.15-45.3 60.89-45.3s52.83 19.17 60.89 45.3C329.41 239 309.08 240 288 240zm64-144c0 35.29-28.71 64-64 64s-64-28.71-64-64V82.96c20.4-1.88 41.8-2.96 64-2.96s43.6 1.08 64 2.96V96zm46.93 134.9c-13.81-9.91-23.94-23.9-28.4-40.54-5.11-19.06-2.49-38.96 7.38-56.04l25.65-44.42C477.72 103.5 528 129.79 528 160c0 30.83-52.4 57.54-129.07 70.9z" ], + dumbbell: [ 640, 512, [], "f44b", "M104 96H56c-13.3 0-24 10.7-24 24v104H8c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h24v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm528 128h-24V120c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v272c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h24c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM456 32h-48c-13.3 0-24 10.7-24 24v168H256V56c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v400c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h128v168c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24z" ], + edit: [ 576, 512, [], "f044", "M402.6 83.2l90.2 90.2c3.8 3.8 3.8 10 0 13.8L274.4 405.6l-92.8 10.3c-12.4 1.4-22.9-9.1-21.5-21.5l10.3-92.8L388.8 83.2c3.8-3.8 10-3.8 13.8 0zm162-22.9l-48.8-48.8c-15.2-15.2-39.9-15.2-55.2 0l-35.4 35.4c-3.8 3.8-3.8 10 0 13.8l90.2 90.2c3.8 3.8 10 3.8 13.8 0l35.4-35.4c15.2-15.3 15.2-40 0-55.2zM384 346.2V448H64V128h229.8c3.2 0 6.2-1.3 8.5-3.5l40-40c7.6-7.6 2.2-20.5-8.5-20.5H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V306.2c0-10.7-12.9-16-20.5-8.5l-40 40c-2.2 2.3-3.5 5.3-3.5 8.5z" ], + eject: [ 448, 512, [], "f052", "M448 384v64c0 17.673-14.327 32-32 32H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h384c17.673 0 32 14.327 32 32zM48.053 320h351.886c41.651 0 63.581-49.674 35.383-80.435L259.383 47.558c-19.014-20.743-51.751-20.744-70.767 0L12.67 239.565C-15.475 270.268 6.324 320 48.053 320z" ], + "ellipsis-h": [ 512, 512, [], "f141", "M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z" ], + "ellipsis-v": [ 192, 512, [], "f142", "M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" ], + envelope: [ 512, 512, [], "f0e0", "M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z" ], + "envelope-open": [ 512, 512, [], "f2b6", "M512 464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V200.724a48 48 0 0 1 18.387-37.776c24.913-19.529 45.501-35.365 164.2-121.511C199.412 29.17 232.797-.347 256 .003c23.198-.354 56.596 29.172 73.413 41.433 118.687 86.137 139.303 101.995 164.2 121.512A48 48 0 0 1 512 200.724V464zm-65.666-196.605c-2.563-3.728-7.7-4.595-11.339-1.907-22.845 16.873-55.462 40.705-105.582 77.079-16.825 12.266-50.21 41.781-73.413 41.43-23.211.344-56.559-29.143-73.413-41.43-50.114-36.37-82.734-60.204-105.582-77.079-3.639-2.688-8.776-1.821-11.339 1.907l-9.072 13.196a7.998 7.998 0 0 0 1.839 10.967c22.887 16.899 55.454 40.69 105.303 76.868 20.274 14.781 56.524 47.813 92.264 47.573 35.724.242 71.961-32.771 92.263-47.573 49.85-36.179 82.418-59.97 105.303-76.868a7.998 7.998 0 0 0 1.839-10.967l-9.071-13.196z" ], + "envelope-square": [ 448, 512, [], "f199", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM178.117 262.104C87.429 196.287 88.353 196.121 64 177.167V152c0-13.255 10.745-24 24-24h272c13.255 0 24 10.745 24 24v25.167c-24.371 18.969-23.434 19.124-114.117 84.938-10.5 7.655-31.392 26.12-45.883 25.894-14.503.218-35.367-18.227-45.883-25.895zM384 217.775V360c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V217.775c13.958 10.794 33.329 25.236 95.303 70.214 14.162 10.341 37.975 32.145 64.694 32.01 26.887.134 51.037-22.041 64.72-32.025 61.958-44.965 81.325-59.406 95.283-70.199z" ], + equals: [ 448, 512, [], "f52c", "M416 304H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32zm0-192H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" ], + eraser: [ 512, 512, [], "f12d", "M497.941 273.941c18.745-18.745 18.745-49.137 0-67.882l-160-160c-18.745-18.745-49.136-18.746-67.883 0l-256 256c-18.745 18.745-18.745 49.137 0 67.882l96 96A48.004 48.004 0 0 0 144 480h356c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H355.883l142.058-142.059zm-302.627-62.627l137.373 137.373L265.373 416H150.628l-80-80 124.686-124.686z" ], + "euro-sign": [ 320, 512, [], "f153", "M310.706 413.765c-1.314-6.63-7.835-10.872-14.424-9.369-10.692 2.439-27.422 5.413-45.426 5.413-56.763 0-101.929-34.79-121.461-85.449h113.689a12 12 0 0 0 11.708-9.369l6.373-28.36c1.686-7.502-4.019-14.631-11.708-14.631H115.22c-1.21-14.328-1.414-28.287.137-42.245H261.95a12 12 0 0 0 11.723-9.434l6.512-29.755c1.638-7.484-4.061-14.566-11.723-14.566H130.184c20.633-44.991 62.69-75.03 117.619-75.03 14.486 0 28.564 2.25 37.851 4.145 6.216 1.268 12.347-2.498 14.002-8.623l11.991-44.368c1.822-6.741-2.465-13.616-9.326-14.917C290.217 34.912 270.71 32 249.635 32 152.451 32 74.03 92.252 45.075 176H12c-6.627 0-12 5.373-12 12v29.755c0 6.627 5.373 12 12 12h21.569c-1.009 13.607-1.181 29.287-.181 42.245H12c-6.627 0-12 5.373-12 12v28.36c0 6.627 5.373 12 12 12h30.114C67.139 414.692 145.264 480 249.635 480c26.301 0 48.562-4.544 61.101-7.788 6.167-1.595 10.027-7.708 8.788-13.957l-8.818-44.49z" ], + "exchange-alt": [ 512, 512, [], "f362", "M0 168v-16c0-13.255 10.745-24 24-24h360V80c0-21.367 25.899-32.042 40.971-16.971l80 80c9.372 9.373 9.372 24.569 0 33.941l-80 80C409.956 271.982 384 261.456 384 240v-48H24c-13.255 0-24-10.745-24-24zm488 152H128v-48c0-21.314-25.862-32.08-40.971-16.971l-80 80c-9.372 9.373-9.372 24.569 0 33.941l80 80C102.057 463.997 128 453.437 128 432v-48h360c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z" ], + exclamation: [ 192, 512, [], "f12a", "M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z" ], + "exclamation-circle": [ 512, 512, [], "f06a", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z" ], + "exclamation-triangle": [ 576, 512, [], "f071", "M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z" ], + expand: [ 448, 512, [], "f065", "M0 180V56c0-13.3 10.7-24 24-24h124c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H64v84c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12zM288 44v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V56c0-13.3-10.7-24-24-24H300c-6.6 0-12 5.4-12 12zm148 276h-40c-6.6 0-12 5.4-12 12v84h-84c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24V332c0-6.6-5.4-12-12-12zM160 468v-40c0-6.6-5.4-12-12-12H64v-84c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v124c0 13.3 10.7 24 24 24h124c6.6 0 12-5.4 12-12z" ], + "expand-arrows-alt": [ 448, 512, [], "f31e", "M448.1 344v112c0 13.3-10.7 24-24 24h-112c-21.4 0-32.1-25.9-17-41l36.2-36.2L224 295.6 116.8 402.9 153 439c15.1 15.1 4.4 41-17 41H24c-13.3 0-24-10.7-24-24V344c0-21.4 25.9-32.1 41-17l36.2 36.2L184.5 256 77.2 148.7 41 185c-15.1 15.1-41 4.4-41-17V56c0-13.3 10.7-24 24-24h112c21.4 0 32.1 25.9 17 41l-36.2 36.2L224 216.4l107.3-107.3L295.1 73c-15.1-15.1-4.4-41 17-41h112c13.3 0 24 10.7 24 24v112c0 21.4-25.9 32.1-41 17l-36.2-36.2L263.6 256l107.3 107.3 36.2-36.2c15.1-15.2 41-4.5 41 16.9z" ], + "external-link-alt": [ 576, 512, [], "f35d", "M576 24v127.984c0 21.461-25.96 31.98-40.971 16.971l-35.707-35.709-243.523 243.523c-9.373 9.373-24.568 9.373-33.941 0l-22.627-22.627c-9.373-9.373-9.373-24.569 0-33.941L442.756 76.676l-35.703-35.705C391.982 25.9 402.656 0 424.024 0H552c13.255 0 24 10.745 24 24zM407.029 270.794l-16 16A23.999 23.999 0 0 0 384 303.765V448H64V128h264a24.003 24.003 0 0 0 16.97-7.029l16-16C376.089 89.851 365.381 64 344 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V287.764c0-21.382-25.852-32.09-40.971-16.97z" ], + "external-link-square-alt": [ 448, 512, [], "f360", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-88 16H248.029c-21.313 0-32.08 25.861-16.971 40.971l31.984 31.987L67.515 364.485c-4.686 4.686-4.686 12.284 0 16.971l31.029 31.029c4.687 4.686 12.285 4.686 16.971 0l195.526-195.526 31.988 31.991C358.058 263.977 384 253.425 384 231.979V120c0-13.255-10.745-24-24-24z" ], + eye: [ 576, 512, [], "f06e", "M569.354 231.631C512.969 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-75.162 0-136-60.827-136-136 0-75.162 60.826-136 136-136 75.162 0 136 60.826 136 136 0 75.162-60.826 136-136 136zm104-136c0 57.438-46.562 104-104 104s-104-46.562-104-104c0-17.708 4.431-34.379 12.236-48.973l-.001.032c0 23.651 19.173 42.823 42.824 42.823s42.824-19.173 42.824-42.823c0-23.651-19.173-42.824-42.824-42.824l-.032.001C253.621 156.431 270.292 152 288 152c57.438 0 104 46.562 104 104z" ], + "eye-dropper": [ 512, 512, [], "f1fb", "M50.75 333.25c-12 12-18.75 28.28-18.75 45.26V424L0 480l32 32 56-32h45.49c16.97 0 33.25-6.74 45.25-18.74l126.64-126.62-128-128L50.75 333.25zM483.88 28.12c-37.47-37.5-98.28-37.5-135.75 0l-77.09 77.09-13.1-13.1c-9.44-9.44-24.65-9.31-33.94 0l-40.97 40.97c-9.37 9.37-9.37 24.57 0 33.94l161.94 161.94c9.44 9.44 24.65 9.31 33.94 0L419.88 288c9.37-9.37 9.37-24.57 0-33.94l-13.1-13.1 77.09-77.09c37.51-37.48 37.51-98.26.01-135.75z" ], + "eye-slash": [ 576, 512, [], "f070", "M286.693 391.984l32.579 46.542A333.958 333.958 0 0 1 288 440C168.19 440 63.031 376.051 6.646 280.369a47.999 47.999 0 0 1 0-48.739c24.023-40.766 56.913-75.775 96.024-102.537l57.077 81.539C154.736 224.82 152 240.087 152 256c0 74.736 60.135 135.282 134.693 135.984zm282.661-111.615c-31.667 53.737-78.747 97.46-135.175 125.475l.011.015 41.47 59.2c7.6 10.86 4.96 25.82-5.9 33.42l-13.11 9.18c-10.86 7.6-25.82 4.96-33.42-5.9L100.34 46.94c-7.6-10.86-4.96-25.82 5.9-33.42l13.11-9.18c10.86-7.6 25.82-4.96 33.42 5.9l51.038 72.617C230.68 75.776 258.905 72 288 72c119.81 0 224.969 63.949 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM424 256c0-75.174-60.838-136-136-136-17.939 0-35.056 3.473-50.729 9.772l19.299 27.058c25.869-8.171 55.044-6.163 80.4 7.41h-.03c-23.65 0-42.82 19.17-42.82 42.82 0 23.626 19.147 42.82 42.82 42.82 23.65 0 42.82-19.17 42.82-42.82v-.03c18.462 34.49 16.312 77.914-8.25 110.95v.01l19.314 27.061C411.496 321.2 424 290.074 424 256zM262.014 356.727l-77.53-110.757c-5.014 52.387 29.314 98.354 77.53 110.757z" ], + "fast-backward": [ 512, 512, [], "f049", "M0 436V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v151.9L235.5 71.4C256.1 54.3 288 68.6 288 96v131.9L459.5 71.4C480.1 54.3 512 68.6 512 96v320c0 27.4-31.9 41.7-52.5 24.6L288 285.3V416c0 27.4-31.9 41.7-52.5 24.6L64 285.3V436c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12z" ], + "fast-forward": [ 512, 512, [], "f050", "M512 76v360c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V284.1L276.5 440.6c-20.6 17.2-52.5 2.8-52.5-24.6V284.1L52.5 440.6C31.9 457.8 0 443.4 0 416V96c0-27.4 31.9-41.7 52.5-24.6L224 226.8V96c0-27.4 31.9-41.7 52.5-24.6L448 226.8V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12z" ], + fax: [ 512, 512, [], "f1ac", "M128 144v320c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V144c0-26.51 21.49-48 48-48h32c26.51 0 48 21.49 48 48zm384 64v256c0 26.51-21.49 48-48 48H192c-26.51 0-48-21.49-48-48V40c0-22.091 17.909-40 40-40h207.432a39.996 39.996 0 0 1 28.284 11.716l48.569 48.569A39.999 39.999 0 0 1 480 88.568v74.174c18.641 6.591 32 24.36 32 45.258zm-320-16h240V96h-24c-13.203 0-24-10.797-24-24V48H192v144zm96 204c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm128 128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40z" ], + feather: [ 512, 512, [], "f52d", "M467.14 44.84c-62.55-62.48-161.67-64.78-252.28 25.73-78.61 78.52-60.98 60.92-85.75 85.66-60.46 60.39-70.39 150.83-63.64 211.17l178.44-178.25c6.26-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.6 9.37 33.98 0l66.1-66.03C159.42 454.65 279 457.11 353.95 384h-98.19l147.57-49.14c49.99-49.93 36.38-36.18 46.31-46.86h-97.78l131.54-43.8c45.44-74.46 34.31-148.84-16.26-199.36z" ], + "feather-alt": [ 512, 512, [], "f56b", "M512 0C460.22 3.56 96.44 38.2 71.01 287.61c-3.09 26.66-4.84 53.44-5.99 80.24l178.87-178.69c6.25-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.59 9.37 33.98 0l57.13-57.07c42.09-.14 84.15-2.53 125.96-7.36 53.48-5.44 97.02-26.47 132.58-56.54H255.74l146.79-48.88c11.25-14.89 21.37-30.71 30.45-47.12h-81.14l106.54-53.21C500.29 132.86 510.19 26.26 512 0z" ], + female: [ 256, 512, [], "f182", "M128 0c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64S92.654 0 128 0m119.283 354.179l-48-192A24 24 0 0 0 176 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H80a24 24 0 0 0-23.283 18.179l-48 192C4.935 369.305 16.383 384 32 384h56v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V384h56c15.591 0 27.071-14.671 23.283-29.821z" ], + "fighter-jet": [ 640, 512, [], "f0fb", "M544 224l-128-16-48-16h-24L227.158 44h39.509C278.333 44 288 41.375 288 38s-9.667-6-21.333-6H152v12h16v164h-48l-66.667-80H18.667L8 138.667V208h8v16h48v2.666l-64 8v42.667l64 8V288H16v16H8v69.333L18.667 384h34.667L120 304h48v164h-16v12h114.667c11.667 0 21.333-2.625 21.333-6s-9.667-6-21.333-6h-39.509L344 320h24l48-16 128-16c96-21.333 96-26.583 96-32 0-5.417 0-10.667-96-32z" ], + file: [ 384, 512, [], "f15b", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + "file-alt": [ 384, 512, [], "f15c", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + "file-archive": [ 384, 512, [], "f1c6", "M224 136V0h-63.6v32h-32V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM95.9 32h32v32h-32V32zm32.3 384c-33.2 0-58-30.4-51.4-62.9L96.4 256v-32h32v-32h-32v-32h32v-32h-32V96h32V64h32v32h-32v32h32v32h-32v32h32v32h-32v32h22.1c5.7 0 10.7 4.1 11.8 9.7l17.3 87.7c6.4 32.4-18.4 62.6-51.4 62.6zm32.7-53c0 14.9-14.5 27-32.4 27S96 378 96 363c0-14.9 14.5-27 32.4-27s32.5 12.1 32.5 27zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + "file-audio": [ 384, 512, [], "f1c7", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + "file-code": [ 384, 512, [], "f1c9", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zM123.206 400.505a5.4 5.4 0 0 1-7.633.246l-64.866-60.812a5.4 5.4 0 0 1 0-7.879l64.866-60.812a5.4 5.4 0 0 1 7.633.246l19.579 20.885a5.4 5.4 0 0 1-.372 7.747L101.65 336l40.763 35.874a5.4 5.4 0 0 1 .372 7.747l-19.579 20.884zm51.295 50.479l-27.453-7.97a5.402 5.402 0 0 1-3.681-6.692l61.44-211.626a5.402 5.402 0 0 1 6.692-3.681l27.452 7.97a5.4 5.4 0 0 1 3.68 6.692l-61.44 211.626a5.397 5.397 0 0 1-6.69 3.681zm160.792-111.045l-64.866 60.812a5.4 5.4 0 0 1-7.633-.246l-19.58-20.885a5.4 5.4 0 0 1 .372-7.747L284.35 336l-40.763-35.874a5.4 5.4 0 0 1-.372-7.747l19.58-20.885a5.4 5.4 0 0 1 7.633-.246l64.866 60.812a5.4 5.4 0 0 1-.001 7.879z" ], + "file-contract": [ 384, 512, [], "f56c", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm192.81 248H304c8.84 0 16 7.16 16 16s-7.16 16-16 16h-47.19c-16.45 0-31.27-9.14-38.64-23.86-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34a15.986 15.986 0 0 1-14.31 8.84c-.38 0-.75-.02-1.14-.05-6.45-.45-12-4.75-14.03-10.89L144 354.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.77-16.19 54.05-9.7 66 14.16 2.02 4.06 5.96 6.5 10.16 6.5zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" ], + "file-download": [ 384, 512, [], "f56d", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm76.45 211.36l-96.42 95.7c-6.65 6.61-17.39 6.61-24.04 0l-96.42-95.7C73.42 337.29 80.54 320 94.82 320H160v-80c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v80h65.18c14.28 0 21.4 17.29 11.27 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" ], + "file-excel": [ 384, 512, [], "f1c3", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm60.1 106.5L224 336l60.1 93.5c5.1 8-.6 18.5-10.1 18.5h-34.9c-4.4 0-8.5-2.4-10.6-6.3C208.9 405.5 192 373 192 373c-6.4 14.8-10 20-36.6 68.8-2.1 3.9-6.1 6.3-10.5 6.3H110c-9.5 0-15.2-10.5-10.1-18.5l60.3-93.5-60.3-93.5c-5.2-8 .6-18.5 10.1-18.5h34.8c4.4 0 8.5 2.4 10.6 6.3 26.1 48.8 20 33.6 36.6 68.5 0 0 6.1-11.7 36.6-68.5 2.1-3.9 6.2-6.3 10.6-6.3H274c9.5-.1 15.2 10.4 10.1 18.4zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + "file-export": [ 576, 512, [], "f56e", "M384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zM192 336v-32c0-8.84 7.16-16 16-16h176V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V352H208c-8.84 0-16-7.16-16-16zm379.05-28.02l-95.7-96.43c-10.06-10.14-27.36-3.01-27.36 11.27V288H384v64h63.99v65.18c0 14.28 17.29 21.41 27.36 11.27l95.7-96.42c6.6-6.66 6.6-17.4 0-24.05z" ], + "file-image": [ 384, 512, [], "f1c5", "M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z" ], + "file-import": [ 512, 512, [], "f56f", "M16 288c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h112v-64H16zm336-152V0H152c-13.3 0-24 10.7-24 24v264h127.99v-65.18c0-14.28 17.29-21.41 27.36-11.27l95.7 96.43c6.6 6.65 6.6 17.39 0 24.04l-95.7 96.42c-10.06 10.14-27.36 3.01-27.36-11.27V352H128v136c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H376c-13.2 0-24-10.8-24-24zm153-31L407.1 7c-4.5-4.5-10.6-7-17-7H384v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" ], + "file-invoice": [ 384, 512, [], "f570", "M288 256H96v64h192v-64zm89-151L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm256 304c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-200v96c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-96c0-8.84 7.16-16 16-16h224c8.84 0 16 7.16 16 16z" ], + "file-invoice-dollar": [ 384, 512, [], "f571", "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 80v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8zm144 263.88V440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-24.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V232c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v24.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07z" ], + "file-medical": [ 384, 512, [], "f477", "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 160v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8z" ], + "file-medical-alt": [ 448, 512, [], "f478", "M288 136V0H88C74.7 0 64 10.7 64 24v232H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h140.9c3 0 5.8 1.7 7.2 4.4l19.9 39.8 56.8-113.7c2.9-5.9 11.4-5.9 14.3 0l34.7 69.5H352c8.8 0 16 7.2 16 16s-7.2 16-16 16h-89.9L240 275.8l-56.8 113.7c-2.9 5.9-11.4 5.9-14.3 0L134.1 320H64v168c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H312c-13.2 0-24-10.8-24-24zm153-31L343.1 7c-4.5-4.5-10.6-7-17-7H320v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" ], + "file-pdf": [ 384, 512, [], "f1c1", "M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z" ], + "file-powerpoint": [ 384, 512, [], "f1c4", "M193.7 271.2c8.8 0 15.5 2.7 20.3 8.1 9.6 10.9 9.8 32.7-.2 44.1-4.9 5.6-11.9 8.5-21.1 8.5h-26.9v-60.7h27.9zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm53 165.2c0 90.3-88.8 77.6-111.1 77.6V436c0 6.6-5.4 12-12 12h-30.8c-6.6 0-12-5.4-12-12V236.2c0-6.6 5.4-12 12-12h81c44.5 0 72.9 32.8 72.9 77z" ], + "file-prescription": [ 384, 512, [], "f572", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm68.53 179.48l11.31 11.31c6.25 6.25 6.25 16.38 0 22.63l-29.9 29.9L304 409.38c6.25 6.25 6.25 16.38 0 22.63l-11.31 11.31c-6.25 6.25-16.38 6.25-22.63 0L240 413.25l-30.06 30.06c-6.25 6.25-16.38 6.25-22.63 0L176 432c-6.25-6.25-6.25-16.38 0-22.63l30.06-30.06L146.74 320H128v48c0 8.84-7.16 16-16 16H96c-8.84 0-16-7.16-16-16V208c0-8.84 7.16-16 16-16h80c35.35 0 64 28.65 64 64 0 24.22-13.62 45.05-33.46 55.92L240 345.38l29.9-29.9c6.25-6.25 16.38-6.25 22.63 0zM176 272h-48v-32h48c8.82 0 16 7.18 16 16s-7.18 16-16 16zm208-150.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + "file-signature": [ 576, 512, [], "f573", "M218.17 424.14c-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34c-6.37 12.78-25.03 11.37-29.48-2.09L144 386.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.75-16.19 54.06-9.7 66 14.16 1.89 3.78 5.49 5.95 9.36 6.26v-82.12l128-127.09V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24v-40l-128-.11c-16.12-.31-30.58-9.28-37.83-23.75zM384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zm-96 225.06V416h68.99l161.68-162.78-67.88-67.88L288 346.96zm280.54-179.63l-31.87-31.87c-9.94-9.94-26.07-9.94-36.01 0l-27.25 27.25 67.88 67.88 27.25-27.25c9.95-9.94 9.95-26.07 0-36.01z" ], + "file-upload": [ 384, 512, [], "f574", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm65.18 216.01H224v80c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-80H94.82c-14.28 0-21.41-17.29-11.27-27.36l96.42-95.7c6.65-6.61 17.39-6.61 24.04 0l96.42 95.7c10.15 10.07 3.03 27.36-11.25 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" ], + "file-video": [ 384, 512, [], "f1c8", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z" ], + "file-word": [ 384, 512, [], "f1c2", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm57.1 120H305c7.7 0 13.4 7.1 11.7 14.7l-38 168c-1.2 5.5-6.1 9.3-11.7 9.3h-38c-5.5 0-10.3-3.8-11.6-9.1-25.8-103.5-20.8-81.2-25.6-110.5h-.5c-1.1 14.3-2.4 17.4-25.6 110.5-1.3 5.3-6.1 9.1-11.6 9.1H117c-5.6 0-10.5-3.9-11.7-9.4l-37.8-168c-1.7-7.5 4-14.6 11.7-14.6h24.5c5.7 0 10.7 4 11.8 9.7 15.6 78 20.1 109.5 21 122.2 1.6-10.2 7.3-32.7 29.4-122.7 1.3-5.4 6.1-9.1 11.7-9.1h29.1c5.6 0 10.4 3.8 11.7 9.2 24 100.4 28.8 124 29.6 129.4-.2-11.2-2.6-17.8 21.6-129.2 1-5.6 5.9-9.5 11.5-9.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + fill: [ 512, 512, [], "f575", "M502.63 217.06L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.77c-6.24-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.63l86.19 86.18-94.76 94.76c-37.49 37.49-37.49 98.26 0 135.75l117.19 117.19c18.75 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.88-28.12l221.57-221.57c12.49-12.5 12.49-32.76 0-45.26zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.61 58.6c12.49 12.49 32.75 12.49 45.24 0 12.49-12.49 12.49-32.75 0-45.24l-58.61-58.6 58.95-58.95 162.45 162.44-48.35 48.34z" ], + "fill-drip": [ 576, 512, [], "f576", "M512 320s-64 92.65-64 128c0 35.35 28.66 64 64 64s64-28.65 64-64-64-128-64-128zm-9.37-102.94L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.76c-6.25-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.62l86.19 86.18-94.76 94.76c-37.49 37.48-37.49 98.26 0 135.75l117.19 117.19c18.74 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.87-28.12l221.57-221.57c12.5-12.5 12.5-32.75.01-45.25zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.6 58.6c12.49 12.49 32.75 12.49 45.24 0s12.49-32.75 0-45.24l-58.6-58.6 58.95-58.95 162.44 162.44-48.34 48.34z" ], + film: [ 512, 512, [], "f008", "M488 64h-8v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V64H96v20c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12V64h-8C10.7 64 0 74.7 0 88v336c0 13.3 10.7 24 24 24h8v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h320v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h8c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM96 372c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm272 208c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm0-168c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm112 152c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z" ], + filter: [ 512, 512, [], "f0b0", "M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z" ], + fingerprint: [ 512, 512, [], "f577", "M256.12 245.96c-13.25 0-24 10.74-24 24 1.14 72.25-8.14 141.9-27.7 211.55-2.73 9.72 2.15 30.49 23.12 30.49 10.48 0 20.11-6.92 23.09-17.52 13.53-47.91 31.04-125.41 29.48-224.52.01-13.25-10.73-24-23.99-24zm-.86-81.73C194 164.16 151.25 211.3 152.1 265.32c.75 47.94-3.75 95.91-13.37 142.55-2.69 12.98 5.67 25.69 18.64 28.36 13.05 2.67 25.67-5.66 28.36-18.64 10.34-50.09 15.17-101.58 14.37-153.02-.41-25.95 19.92-52.49 54.45-52.34 31.31.47 57.15 25.34 57.62 55.47.77 48.05-2.81 96.33-10.61 143.55-2.17 13.06 6.69 25.42 19.76 27.58 19.97 3.33 26.81-15.1 27.58-19.77 8.28-50.03 12.06-101.21 11.27-152.11-.88-55.8-47.94-101.88-104.91-102.72zm-110.69-19.78c-10.3-8.34-25.37-6.8-33.76 3.48-25.62 31.5-39.39 71.28-38.75 112 .59 37.58-2.47 75.27-9.11 112.05-2.34 13.05 6.31 25.53 19.36 27.89 20.11 3.5 27.07-14.81 27.89-19.36 7.19-39.84 10.5-80.66 9.86-121.33-.47-29.88 9.2-57.88 28-80.97 8.35-10.28 6.79-25.39-3.49-33.76zm109.47-62.33c-15.41-.41-30.87 1.44-45.78 4.97-12.89 3.06-20.87 15.98-17.83 28.89 3.06 12.89 16 20.83 28.89 17.83 11.05-2.61 22.47-3.77 34-3.69 75.43 1.13 137.73 61.5 138.88 134.58.59 37.88-1.28 76.11-5.58 113.63-1.5 13.17 7.95 25.08 21.11 26.58 16.72 1.95 25.51-11.88 26.58-21.11a929.06 929.06 0 0 0 5.89-119.85c-1.56-98.75-85.07-180.33-186.16-181.83zm252.07 121.45c-2.86-12.92-15.51-21.2-28.61-18.27-12.94 2.86-21.12 15.66-18.26 28.61 4.71 21.41 4.91 37.41 4.7 61.6-.11 13.27 10.55 24.09 23.8 24.2h.2c13.17 0 23.89-10.61 24-23.8.18-22.18.4-44.11-5.83-72.34zm-40.12-90.72C417.29 43.46 337.6 1.29 252.81.02 183.02-.82 118.47 24.91 70.46 72.94 24.09 119.37-.9 181.04.14 246.65l-.12 21.47c-.39 13.25 10.03 24.31 23.28 24.69.23.02.48.02.72.02 12.92 0 23.59-10.3 23.97-23.3l.16-23.64c-.83-52.5 19.16-101.86 56.28-139 38.76-38.8 91.34-59.67 147.68-58.86 69.45 1.03 134.73 35.56 174.62 92.39 7.61 10.86 22.56 13.45 33.42 5.86 10.84-7.62 13.46-22.59 5.84-33.43z" ], + fire: [ 384, 512, [], "f06d", "M216 23.858c0-23.802-30.653-32.765-44.149-13.038C48 191.851 224 200 224 288c0 35.629-29.114 64.458-64.85 63.994C123.98 351.538 96 322.22 96 287.046v-85.51c0-21.703-26.471-32.225-41.432-16.504C27.801 213.158 0 261.332 0 320c0 105.869 86.131 192 192 192s192-86.131 192-192c0-170.29-168-193.003-168-296.142z" ], + "fire-extinguisher": [ 448, 512, [], "f134", "M434.027 26.329l-168 28C254.693 56.218 256 67.8 256 72h-58.332C208.353 36.108 181.446 0 144 0c-39.435 0-66.368 39.676-52.228 76.203-52.039 13.051-75.381 54.213-90.049 90.884-4.923 12.307 1.063 26.274 13.37 31.197 12.317 4.926 26.279-1.075 31.196-13.37C75.058 112.99 106.964 120 168 120v27.076c-41.543 10.862-72 49.235-72 94.129V488c0 13.255 10.745 24 24 24h144c13.255 0 24-10.745 24-24V240c0-44.731-30.596-82.312-72-92.97V120h40c0 2.974-1.703 15.716 10.027 17.671l168 28C441.342 166.89 448 161.25 448 153.834V38.166c0-7.416-6.658-13.056-13.973-11.837zM144 72c-8.822 0-16-7.178-16-16s7.178-16 16-16 16 7.178 16 16-7.178 16-16 16z" ], + "first-aid": [ 576, 512, [], "f479", "M0 80v352c0 26.5 21.5 48 48 48h48V32H48C21.5 32 0 53.5 0 80zm128 400h320V32H128v448zm64-248c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48zM528 32h-48v448h48c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z" ], + fish: [ 576, 512, [], "f578", "M327.1 96c-89.97 0-168.54 54.77-212.27 101.63L27.5 131.58c-12.13-9.18-30.24.6-27.14 14.66L24.54 256 .35 365.77c-3.1 14.06 15.01 23.83 27.14 14.66l87.33-66.05C158.55 361.23 237.13 416 327.1 416 464.56 416 576 288 576 256S464.56 96 327.1 96zm87.43 184c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24 13.26 0 24 10.74 24 24 0 13.25-10.75 24-24 24z" ], + flag: [ 512, 512, [], "f024", "M349.565 98.783C295.978 98.783 251.721 64 184.348 64c-24.955 0-47.309 4.384-68.045 12.013a55.947 55.947 0 0 0 3.586-23.562C118.117 24.015 94.806 1.206 66.338.048 34.345-1.254 8 24.296 8 56c0 19.026 9.497 35.825 24 45.945V488c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-94.4c28.311-12.064 63.582-22.122 114.435-22.122 53.588 0 97.844 34.783 165.217 34.783 48.169 0 86.667-16.294 122.505-40.858C506.84 359.452 512 349.571 512 339.045v-243.1c0-23.393-24.269-38.87-45.485-29.016-34.338 15.948-76.454 31.854-116.95 31.854z" ], + "flag-checkered": [ 512, 512, [], "f11e", "M466.515 66.928C487.731 57.074 512 72.551 512 95.944v243.1c0 10.526-5.161 20.407-13.843 26.358-35.837 24.564-74.335 40.858-122.505 40.858-67.373 0-111.63-34.783-165.217-34.783-50.853 0-86.124 10.058-114.435 22.122V488c0 13.255-10.745 24-24 24H56c-13.255 0-24-10.745-24-24V101.945C17.497 91.825 8 75.026 8 56 8 24.296 34.345-1.254 66.338.048c28.468 1.158 51.779 23.968 53.551 52.404.52 8.342-.81 16.31-3.586 23.562C137.039 68.384 159.393 64 184.348 64c67.373 0 111.63 34.783 165.217 34.783 40.496 0 82.612-15.906 116.95-31.855zM96 134.63v70.49c29-10.67 51.18-17.83 73.6-20.91v-71.57c-23.5 2.17-40.44 9.79-73.6 21.99zm220.8 9.19c-26.417-4.672-49.886-13.979-73.6-21.34v67.42c24.175 6.706 47.566 16.444 73.6 22.31v-68.39zm-147.2 40.39v70.04c32.796-2.978 53.91-.635 73.6 3.8V189.9c-25.247-7.035-46.581-9.423-73.6-5.69zm73.6 142.23c26.338 4.652 49.732 13.927 73.6 21.34v-67.41c-24.277-6.746-47.54-16.45-73.6-22.32v68.39zM96 342.1c23.62-8.39 47.79-13.84 73.6-16.56v-71.29c-26.11 2.35-47.36 8.04-73.6 17.36v70.49zm368-221.6c-21.3 8.85-46.59 17.64-73.6 22.47v71.91c27.31-4.36 50.03-14.1 73.6-23.89V120.5zm0 209.96v-70.49c-22.19 14.2-48.78 22.61-73.6 26.02v71.58c25.07-2.38 48.49-11.04 73.6-27.11zM316.8 212.21v68.16c25.664 7.134 46.616 9.342 73.6 5.62v-71.11c-25.999 4.187-49.943 2.676-73.6-2.67z" ], + flask: [ 448, 512, [], "f0c3", "M437.2 403.5L320 215V64h8c13.3 0 24-10.7 24-24V24c0-13.3-10.7-24-24-24H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h8v151L10.8 403.5C-18.5 450.6 15.3 512 70.9 512h306.2c55.7 0 89.4-61.5 60.1-108.5zM137.9 320l48.2-77.6c3.7-5.2 5.8-11.6 5.8-18.4V64h64v160c0 6.9 2.2 13.2 5.8 18.4l48.2 77.6h-172z" ], + flushed: [ 496, 512, [], "f579", "M344 200c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-192 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM80 224c0-39.8 32.2-72 72-72s72 32.2 72 72-32.2 72-72 72-72-32.2-72-72zm232 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-104c-39.8 0-72-32.2-72-72s32.2-72 72-72 72 32.2 72 72-32.2 72-72 72z" ], + folder: [ 512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z" ], + "folder-open": [ 576, 512, [], "f07c", "M572.694 292.093L500.27 416.248A63.997 63.997 0 0 1 444.989 448H45.025c-18.523 0-30.064-20.093-20.731-36.093l72.424-124.155A64 64 0 0 1 152 256h399.964c18.523 0 30.064 20.093 20.73 36.093zM152 224h328v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v278.046l69.077-118.418C86.214 242.25 117.989 224 152 224z" ], + font: [ 448, 512, [], "f031", "M152 416h-24.013l26.586-80.782H292.8L319.386 416H296c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-26.739L275.495 42.746A16 16 0 0 0 260.382 32h-72.766a16 16 0 0 0-15.113 10.746L42.739 416H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm64.353-271.778c4.348-15.216 6.61-28.156 7.586-34.644.839 6.521 2.939 19.476 7.727 34.706l41.335 124.006h-98.619l41.971-124.068z" ], + "font-awesome-logo-full": [ 3992, 512, [ "Font Awesome" ], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z" ], + "football-ball": [ 496, 512, [], "f44e", "M481.5 60.3c-4.8-18.2-19.1-32.5-37.3-37.4C420.3 16.5 383 8.9 339.4 8L496 164.8c-.8-43.5-8.2-80.6-14.5-104.5zm-467 391.4c4.8 18.2 19.1 32.5 37.3 37.4 23.9 6.4 61.2 14 104.8 14.9L0 347.2c.8 43.5 8.2 80.6 14.5 104.5zM4.2 283.4L220.4 500c132.5-19.4 248.8-118.7 271.5-271.4L275.6 12C143.1 31.4 26.8 130.7 4.2 283.4zm317.3-123.6c3.1-3.1 8.2-3.1 11.3 0l11.3 11.3c3.1 3.1 3.1 8.2 0 11.3l-28.3 28.3 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-22.6 22.7 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L248 278.6l-22.6 22.6 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-28.3 28.3c-3.1 3.1-8.2 3.1-11.3 0l-11.3-11.3c-3.1-3.1-3.1-8.2 0-11.3l28.3-28.3-28.3-28.2c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 28.3-28.5z" ], + forward: [ 512, 512, [], "f04e", "M500.5 231.4l-192-160C287.9 54.3 256 68.6 256 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2zm-256 0l-192-160C31.9 54.3 0 68.6 0 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2z" ], + frog: [ 576, 512, [], "f52e", "M446.53 97.43C439.67 60.23 407.19 32 368 32c-39.23 0-71.72 28.29-78.54 65.54C126.75 112.96-.5 250.12 0 416.98.11 451.9 29.08 480 64 480h304c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-79.49l35.8-48.33c24.14-36.23 10.35-88.28-33.71-106.6-23.89-9.93-51.55-4.65-72.24 10.88l-32.76 24.59c-7.06 5.31-17.09 3.91-22.41-3.19-5.3-7.08-3.88-17.11 3.19-22.41l34.78-26.09c36.84-27.66 88.28-27.62 125.13 0 10.87 8.15 45.87 39.06 40.8 93.21L469.62 480H560c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-53.63l-98.52-104.68 154.44-86.65A58.16 58.16 0 0 0 576 189.94c0-21.4-11.72-40.95-30.48-51.23-40.56-22.22-98.99-41.28-98.99-41.28zM368 136c-13.26 0-24-10.75-24-24 0-13.26 10.74-24 24-24 13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24z" ], + frown: [ 496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm170.2 218.2C315.8 367.4 282.9 352 248 352s-67.8 15.4-90.2 42.2c-13.5 16.3-38.1-4.2-24.6-20.5C161.7 339.6 203.6 320 248 320s86.3 19.6 114.7 53.8c13.6 16.2-11 36.7-24.5 20.4z" ], + "frown-open": [ 496, 512, [], "f57a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm187.3 183.3c-31.2-9.6-59.4-15.3-75.3-15.3s-44.1 5.7-75.3 15.3c-11.5 3.5-22.5-6.3-20.5-18.1 7-40 60.1-61.2 95.8-61.2s88.8 21.3 95.8 61.2c2 11.9-9.1 21.6-20.5 18.1zM328 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + futbol: [ 512, 512, [], "f1e3", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-48 0l-.003-.282-26.064 22.741-62.679-58.5 16.454-84.355 34.303 3.072c-24.889-34.216-60.004-60.089-100.709-73.141l13.651 31.939L256 139l-74.953-41.525 13.651-31.939c-40.631 13.028-75.78 38.87-100.709 73.141l34.565-3.073 16.192 84.355-62.678 58.5-26.064-22.741-.003.282c0 43.015 13.497 83.952 38.472 117.991l7.704-33.897 85.138 10.447 36.301 77.826-29.902 17.786c40.202 13.122 84.29 13.148 124.572 0l-29.902-17.786 36.301-77.826 85.138-10.447 7.704 33.897C442.503 339.952 456 299.015 456 256zm-248.102 69.571l-29.894-91.312L256 177.732l77.996 56.527-29.622 91.312h-96.476z" ], + gamepad: [ 640, 512, [], "f11b", "M480 96H160C71.6 96 0 167.6 0 256s71.6 160 160 160c44.8 0 85.2-18.4 114.2-48h91.5c29 29.6 69.5 48 114.2 48 88.4 0 160-71.6 160-160S568.4 96 480 96zM256 276c0 6.6-5.4 12-12 12h-52v52c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-52H76c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h52v-52c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h52c6.6 0 12 5.4 12 12v40zm184 68c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-80c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z" ], + "gas-pump": [ 512, 512, [], "f52f", "M336 448H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm157.2-340.7l-81-81c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-6.2 6.2-6.2 16.4 0 22.6L416 97.9V160c0 28.1 20.9 51.3 48 55.2V376c0 13.2-10.8 24-24 24s-24-10.8-24-24v-32c0-48.6-39.4-88-88-88h-8V64c0-35.3-28.7-64-64-64H96C60.7 0 32 28.7 32 64v352h288V304h8c22.1 0 40 17.9 40 40v27.8c0 37.7 27 72 64.5 75.9 43 4.3 79.5-29.5 79.5-71.7V152.6c0-17-6.8-33.3-18.8-45.3zM256 192H96V64h160v128z" ], + gavel: [ 512, 512, [], "f0e3", "M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z" ], + gem: [ 576, 512, [], "f3a5", "M485.5 0L576 160H474.9L405.7 0h79.8zm-128 0l69.2 160H149.3L218.5 0h139zm-267 0h79.8l-69.2 160H0L90.5 0zM0 192h100.7l123 251.7c1.5 3.1-2.7 5.9-5 3.3L0 192zm148.2 0h279.6l-137 318.2c-1 2.4-4.5 2.4-5.5 0L148.2 192zm204.1 251.7l123-251.7H576L357.3 446.9c-2.3 2.7-6.5-.1-5-3.2z" ], + genderless: [ 288, 512, [], "f22d", "M144 176c44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80 35.9-80 80-80m0-64C64.5 112 0 176.5 0 256s64.5 144 144 144 144-64.5 144-144-64.5-144-144-144z" ], + gift: [ 512, 512, [], "f06b", "M32 448c0 17.7 14.3 32 32 32h160V320H32v128zm448-288h-42.1c6.2-12.1 10.1-25.5 10.1-40 0-48.5-39.5-88-88-88-41.6 0-68.5 21.3-103 68.3-34.5-47-61.4-68.3-103-68.3-48.5 0-88 39.5-88 88 0 14.5 3.8 27.9 10.1 40H32c-17.7 0-32 14.3-32 32v80c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-80c0-17.7-14.3-32-32-32zm-326.1 0c-22.1 0-40-17.9-40-40s17.9-40 40-40c19.9 0 34.6 3.3 86.1 80h-86.1zm206.1 0h-86.1c51.4-76.5 65.7-80 86.1-80 22.1 0 40 17.9 40 40s-17.9 40-40 40zm-72 320h160c17.7 0 32-14.3 32-32V320H288v160z" ], + "glass-martini": [ 512, 512, [], "f000", "M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6z" ], + "glass-martini-alt": [ 512, 512, [], "f57b", "M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6zM443.77 48l-48 48H116.24l-48-48h375.53z" ], + glasses: [ 576, 512, [], "f530", "M574.1 280.37L528.75 98.66c-5.91-23.7-21.59-44.05-43-55.81-21.44-11.73-46.97-14.11-70.19-6.33l-15.25 5.08c-8.39 2.79-12.92 11.86-10.12 20.24l5.06 15.18c2.79 8.38 11.85 12.91 20.23 10.12l13.18-4.39c10.87-3.62 23-3.57 33.16 1.73 10.29 5.37 17.57 14.56 20.37 25.82l38.46 153.82c-22.19-6.81-49.79-12.46-81.2-12.46-34.77 0-73.98 7.02-114.85 26.74h-73.18c-40.87-19.74-80.08-26.75-114.86-26.75-31.42 0-59.02 5.65-81.21 12.46l38.46-153.83c2.79-11.25 10.09-20.45 20.38-25.81 10.16-5.3 22.28-5.35 33.15-1.73l13.17 4.39c8.38 2.79 17.44-1.74 20.23-10.12l5.06-15.18c2.8-8.38-1.73-17.45-10.12-20.24l-15.25-5.08c-23.22-7.78-48.75-5.41-70.19 6.33-21.41 11.77-37.09 32.11-43 55.8L1.9 280.37A64.218 64.218 0 0 0 0 295.86v70.25C0 429.01 51.58 480 115.2 480h37.12c60.28 0 110.37-45.94 114.88-105.37l2.93-38.63h35.75l2.93 38.63C313.31 434.06 363.4 480 423.68 480h37.12c63.62 0 115.2-50.99 115.2-113.88v-70.25c0-5.23-.64-10.43-1.9-15.5zm-370.72 89.42c-1.97 25.91-24.4 46.21-51.06 46.21H115.2C86.97 416 64 393.62 64 366.11v-37.54c18.12-6.49 43.42-12.92 72.58-12.92 23.86 0 47.26 4.33 69.93 12.92l-3.13 41.22zM512 366.12c0 27.51-22.97 49.88-51.2 49.88h-37.12c-26.67 0-49.1-20.3-51.06-46.21l-3.13-41.22c22.67-8.59 46.08-12.92 69.95-12.92 29.12 0 54.43 6.44 72.55 12.93v37.54z" ], + globe: [ 496, 512, [], "f0ac", "M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z" ], + "globe-africa": [ 496, 512, [], "f57c", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm160 215.5v6.93c0 5.87-3.32 11.24-8.57 13.86l-15.39 7.7a15.485 15.485 0 0 1-15.53-.97l-18.21-12.14a15.52 15.52 0 0 0-13.5-1.81l-2.65.88c-9.7 3.23-13.66 14.79-7.99 23.3l13.24 19.86c2.87 4.31 7.71 6.9 12.89 6.9h8.21c8.56 0 15.5 6.94 15.5 15.5v11.34c0 3.35-1.09 6.62-3.1 9.3l-18.74 24.98c-1.42 1.9-2.39 4.1-2.83 6.43l-4.3 22.83c-.62 3.29-2.29 6.29-4.76 8.56a159.608 159.608 0 0 0-25 29.16l-13.03 19.55a27.756 27.756 0 0 1-23.09 12.36c-10.51 0-20.12-5.94-24.82-15.34a78.902 78.902 0 0 1-8.33-35.29V367.5c0-8.56-6.94-15.5-15.5-15.5h-25.88c-14.49 0-28.38-5.76-38.63-16a54.659 54.659 0 0 1-16-38.63v-14.06c0-17.19 8.1-33.38 21.85-43.7l27.58-20.69a54.663 54.663 0 0 1 32.78-10.93h.89c8.48 0 16.85 1.97 24.43 5.77l14.72 7.36c3.68 1.84 7.93 2.14 11.83.84l47.31-15.77c6.33-2.11 10.6-8.03 10.6-14.7 0-8.56-6.94-15.5-15.5-15.5h-10.09c-4.11 0-8.05-1.63-10.96-4.54l-6.92-6.92a15.493 15.493 0 0 0-10.96-4.54H199.5c-8.56 0-15.5-6.94-15.5-15.5v-4.4c0-7.11 4.84-13.31 11.74-15.04l14.45-3.61c3.74-.94 7-3.23 9.14-6.44l8.08-12.11c2.87-4.31 7.71-6.9 12.89-6.9h24.21c8.56 0 15.5-6.94 15.5-15.5v-21.7C359.23 71.63 422.86 131.02 441.93 208H423.5c-8.56 0-15.5 6.94-15.5 15.5z" ], + "globe-americas": [ 496, 512, [], "f57d", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm82.29 357.6c-3.9 3.88-7.99 7.95-11.31 11.28-2.99 3-5.1 6.7-6.17 10.71-1.51 5.66-2.73 11.38-4.77 16.87l-17.39 46.85c-13.76 3-28 4.69-42.65 4.69v-27.38c1.69-12.62-7.64-36.26-22.63-51.25-6-6-9.37-14.14-9.37-22.63v-32.01c0-11.64-6.27-22.34-16.46-27.97-14.37-7.95-34.81-19.06-48.81-26.11-11.48-5.78-22.1-13.14-31.65-21.75l-.8-.72a114.792 114.792 0 0 1-18.06-20.74c-9.38-13.77-24.66-36.42-34.59-51.14 20.47-45.5 57.36-82.04 103.2-101.89l24.01 12.01C203.48 89.74 216 82.01 216 70.11v-11.3c7.99-1.29 16.12-2.11 24.39-2.42l28.3 28.3c6.25 6.25 6.25 16.38 0 22.63L264 112l-10.34 10.34c-3.12 3.12-3.12 8.19 0 11.31l4.69 4.69c3.12 3.12 3.12 8.19 0 11.31l-8 8a8.008 8.008 0 0 1-5.66 2.34h-8.99c-2.08 0-4.08.81-5.58 2.27l-9.92 9.65a8.008 8.008 0 0 0-1.58 9.31l15.59 31.19c2.66 5.32-1.21 11.58-7.15 11.58h-5.64c-1.93 0-3.79-.7-5.24-1.96l-9.28-8.06a16.017 16.017 0 0 0-15.55-3.1l-31.17 10.39a11.95 11.95 0 0 0-8.17 11.34c0 4.53 2.56 8.66 6.61 10.69l11.08 5.54c9.41 4.71 19.79 7.16 30.31 7.16s22.59 27.29 32 32h66.75c8.49 0 16.62 3.37 22.63 9.37l13.69 13.69a30.503 30.503 0 0 1 8.93 21.57 46.536 46.536 0 0 1-13.72 32.98zM417 274.25c-5.79-1.45-10.84-5-14.15-9.97l-17.98-26.97a23.97 23.97 0 0 1 0-26.62l19.59-29.38c2.32-3.47 5.5-6.29 9.24-8.15l12.98-6.49C440.2 193.59 448 223.87 448 256c0 8.67-.74 17.16-1.82 25.54L417 274.25z" ], + "globe-asia": [ 496, 512, [], "f57e", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm-11.34 240.23c-2.89 4.82-8.1 7.77-13.72 7.77h-.31c-4.24 0-8.31 1.69-11.31 4.69l-5.66 5.66c-3.12 3.12-3.12 8.19 0 11.31l5.66 5.66c3 3 4.69 7.07 4.69 11.31V304c0 8.84-7.16 16-16 16h-6.11c-6.06 0-11.6-3.42-14.31-8.85l-22.62-45.23c-2.44-4.88-8.95-5.94-12.81-2.08l-19.47 19.46c-3 3-7.07 4.69-11.31 4.69H50.81C49.12 277.55 48 266.92 48 256c0-110.28 89.72-200 200-200 21.51 0 42.2 3.51 61.63 9.82l-50.16 38.53c-5.11 3.41-4.63 11.06.86 13.81l10.83 5.41c5.42 2.71 8.84 8.25 8.84 14.31V216c0 4.42-3.58 8-8 8h-3.06c-3.03 0-5.8-1.71-7.15-4.42-1.56-3.12-5.96-3.29-7.76-.3l-17.37 28.95zM408 358.43c0 4.24-1.69 8.31-4.69 11.31l-9.57 9.57c-3 3-7.07 4.69-11.31 4.69h-15.16c-4.24 0-8.31-1.69-11.31-4.69l-13.01-13.01a26.767 26.767 0 0 0-25.42-7.04l-21.27 5.32c-1.27.32-2.57.48-3.88.48h-10.34c-4.24 0-8.31-1.69-11.31-4.69l-11.91-11.91a8.008 8.008 0 0 1-2.34-5.66v-10.2c0-3.27 1.99-6.21 5.03-7.43l39.34-15.74c1.98-.79 3.86-1.82 5.59-3.05l23.71-16.89a7.978 7.978 0 0 1 4.64-1.48h12.09c3.23 0 6.15 1.94 7.39 4.93l5.35 12.85a4 4 0 0 0 3.69 2.46h3.8c1.78 0 3.35-1.18 3.84-2.88l4.2-14.47c.5-1.71 2.06-2.88 3.84-2.88h6.06c2.21 0 4 1.79 4 4v12.93c0 2.12.84 4.16 2.34 5.66l11.91 11.91c3 3 4.69 7.07 4.69 11.31v24.6z" ], + "golf-ball": [ 416, 512, [], "f450", "M96 416h224c0 17.7-14.3 32-32 32h-16c-17.7 0-32 14.3-32 32v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-20c0-17.7-14.3-32-32-32h-16c-17.7 0-32-14.3-32-32zm320-208c0 74.2-39 139.2-97.5 176h-221C39 347.2 0 282.2 0 208 0 93.1 93.1 0 208 0s208 93.1 208 208zm-180.1 43.9c18.3 0 33.1-14.8 33.1-33.1 0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1zm49.1 46.9c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1zm64-64c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1z" ], + "graduation-cap": [ 640, 512, [], "f19d", "M622.884 199.005l-275.817 85.1a96 96 0 0 1-54.134 0L92.398 222.232c-8.564 11.438-11.018 23.05-11.918 38.335C89.778 266.165 96 276.355 96 288c0 11.952-6.557 22.366-16.265 27.861l16.197 123.096c.63 4.786-3.1 9.043-7.932 9.043H40c-4.828 0-8.562-4.253-7.932-9.044L48.265 315.86C38.557 310.366 32 299.952 32 288c0-12.034 6.646-22.511 16.465-27.976.947-17.951 3.974-33.231 12.152-47.597l-43.502-13.422c-22.876-6.801-22.766-39.241 0-46.01l275.817-85.1a96 96 0 0 1 54.134 0l275.817 85.1c22.877 6.801 22.767 39.241.001 46.01zM356.503 314.682l-.207.064-.207.061a127.998 127.998 0 0 1-72.177 0l-.207-.061-.207-.064-150.914-46.57L120 352c0 35.346 89.543 64 200 64s200-28.654 200-64l-12.583-83.888-150.914 46.57z" ], + "greater-than": [ 384, 512, [], "f531", "M365.52 209.85L59.22 67.01c-16.06-7.49-35.15-.54-42.64 15.52L3.01 111.61c-7.49 16.06-.54 35.15 15.52 42.64L236.96 256.1 18.49 357.99C2.47 365.46-4.46 384.5 3.01 400.52l13.52 29C24 445.54 43.04 452.47 59.06 445l306.47-142.91a32.003 32.003 0 0 0 18.48-29v-34.23c-.01-12.45-7.21-23.76-18.49-29.01z" ], + "greater-than-equal": [ 448, 512, [], "f532", "M55.22 107.69l175.56 68.09-175.44 68.05c-18.39 6.03-27.88 24.39-21.2 41l12.09 30.08c6.68 16.61 26.99 25.19 45.38 19.15L393.02 214.2c13.77-4.52 22.98-16.61 22.98-30.17v-15.96c0-13.56-9.21-25.65-22.98-30.17L91.3 17.92c-18.29-6-38.51 2.53-45.15 19.06L34.12 66.9c-6.64 16.53 2.81 34.79 21.1 40.79zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z" ], + grimace: [ 496, 512, [], "f57f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM144 400h-8c-17.7 0-32-14.3-32-32v-8h40v40zm0-56h-40v-8c0-17.7 14.3-32 32-32h8v40zm-8-136c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm72 192h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm-8-104c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64 128c0 17.7-14.3 32-32 32h-8v-40h40v8zm0-24h-40v-40h8c17.7 0 32 14.3 32 32v8z" ], + grin: [ 496, 512, [], "f580", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm80 256c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" ], + "grin-alt": [ 496, 512, [], "f581", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm63.7 128.7c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zm-160 0c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" ], + "grin-beam": [ 496, 512, [], "f582", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 144c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" ], + "grin-beam-sweat": [ 504, 512, [], "f583", "M456 128c26.5 0 48-21 48-47 0-20-28.5-60.4-41.6-77.8-3.2-4.3-9.6-4.3-12.8 0C436.5 20.6 408 61 408 81c0 26 21.5 47 48 47zm0 32c-44.1 0-80-35.4-80-79 0-4.4.3-14.2 8.1-32.2C345 23.1 298.3 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-35.1-7.4-68.4-20.5-98.6-6.3 1.5-12.7 2.6-19.5 2.6zm-128-8c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" ], + "grin-hearts": [ 496, 512, [], "f584", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM90.4 183.6c6.7-17.6 26.7-26.7 44.9-21.9l7.1 1.9 2-7.1c5-18.1 22.8-30.9 41.5-27.9 21.4 3.4 34.4 24.2 28.8 44.5L195.3 243c-1.2 4.5-5.9 7.2-10.5 6l-70.2-18.2c-20.4-5.4-31.9-27-24.2-47.2zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm133.4-201.3l-70.2 18.2c-4.5 1.2-9.2-1.5-10.5-6L281.3 173c-5.6-20.3 7.4-41.1 28.8-44.5 18.6-3 36.4 9.8 41.5 27.9l2 7.1 7.1-1.9c18.2-4.7 38.2 4.3 44.9 21.9 7.7 20.3-3.8 41.9-24.2 47.2z" ], + "grin-squint": [ 496, 512, [], "f585", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" ], + "grin-squint-tears": [ 512, 512, [], "f586", "M409.6 111.9c22.6-3.2 73.5-12 88.3-26.8 19.2-19.2 18.9-50.6-.7-70.2S446-5 426.9 14.2c-14.8 14.8-23.5 65.7-26.8 88.3-.8 5.5 3.9 10.2 9.5 9.4zM102.4 400.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm311.7-256.5c-33 3.9-48.6-25.1-45.7-45.7 3.4-24 7.4-42.1 11.5-56.5C285.1-13.4 161.8-.5 80.6 80.6-.5 161.7-13.4 285 41.4 379.9c14.4-4.1 32.4-8 56.5-11.5 33.2-3.9 48.6 25.2 45.7 45.7-3.4 24-7.4 42.1-11.5 56.5 94.8 54.8 218.1 41.9 299.3-39.2s94-204.4 39.2-299.3c-14.4 4.1-32.5 8-56.5 11.5zM255.7 106c3.3-13.2 22.4-11.5 23.6 1.8l4.8 52.3 52.3 4.8c13.4 1.2 14.9 20.3 1.8 23.6l-90.5 22.6c-8.9 2.2-16.7-5.9-14.5-14.5l22.5-90.6zm-90.9 230.3L160 284l-52.3-4.8c-13.4-1.2-14.9-20.3-1.8-23.6l90.5-22.6c8.8-2.2 16.7 5.8 14.5 14.5L188.3 338c-3.1 13.2-22.2 11.7-23.5-1.7zm215.7 44.2c-29.3 29.3-75.7 50.4-116.7 50.4-18.9 0-36.6-4.5-51-14.7-9.8-6.9-8.7-21.8 2-27.2 28.3-14.6 63.9-42.4 97.8-76.3s61.7-69.6 76.3-97.8c5.4-10.5 20.2-11.9 27.3-2 32.3 45.3 7.1 124.7-35.7 167.6z" ], + "grin-stars": [ 496, 512, [], "f587", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM94.6 168.9l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.2 1 8.9 8.6 4.3 13.2l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L152 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.6-4.7-1.9-12.3 4.3-13.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm157.7-249.9l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L344 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.5-4.6-1.9-12.2 4.3-13.2l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.3.9 9 8.5 4.4 13.1z" ], + "grin-tears": [ 640, 512, [], "f588", "M102.4 256.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm523.4 26.8c-14.8-14.8-65.7-23.5-88.3-26.8-5.5-.8-10.3 3.9-9.5 9.5 3.2 22.6 12 73.5 26.8 88.3 19.2 19.2 50.6 18.9 70.2-.7s20-51.2.8-70.3zm-129.4-12.8c-3.8-26.6 19.1-49.5 45.7-45.7 8.9 1.3 16.8 2.7 24.3 4.1C552.7 104.5 447.7 8 320 8S87.3 104.5 73.6 228.5c7.5-1.4 15.4-2.8 24.3-4.1 33.2-3.9 48.6 25.3 45.7 45.7-11.8 82.3-29.9 100.4-35.8 106.4-.9.9-2 1.6-3 2.5 42.7 74.6 123 125 215.2 125s172.5-50.4 215.2-125.1c-1-.9-2.1-1.5-3-2.5-5.9-5.9-24-24-35.8-106.3zM400 152c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.7 9.2-21.6 20.7-17.9C227.1 330.5 272 336 320 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" ], + "grin-tongue": [ 496, 512, [], "f589", "M248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-34.9 134.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z" ], + "grin-tongue-squint": [ 496, 512, [], "f58a", "M293.1 374.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-33.8 210.3l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.7 4.7 7.7 15.9 0 20.6zm163 30c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.8-4.7-7.8-15.9 0-20.6l80-48c11.7-6.9 23.9 7.7 15.4 18L343.6 208l33.6 40.3z" ], + "grin-tongue-wink": [ 496, 512, [], "f58b", "M344 184c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-56 225l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L112 233c-8.5 7.4-21.6.3-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c1.6 11.1-11.6 18.2-20 10.8zm152 39c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm-50.9 102.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z" ], + "grin-wink": [ 496, 512, [], "f58c", "M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm168 25l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.6 11-11.5 18.2-20 10.8zm-243.1 87.8C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6 20.7 17.9-9.2 55-83.2 93.3-143.8 93.3s-134.5-38.3-143.8-93.3c-2-11.9 9.3-21.6 20.7-17.9z" ], + "grip-horizontal": [ 448, 512, [], "f58d", "M96 288H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM96 96H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z" ], + "grip-vertical": [ 320, 512, [], "f58e", "M96 32H32C14.33 32 0 46.33 0 64v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM288 32h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z" ], + "h-square": [ 448, 512, [], "f0fd", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-112 48h-32c-8.837 0-16 7.163-16 16v80H160v-80c0-8.837-7.163-16-16-16h-32c-8.837 0-16 7.163-16 16v224c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16v-80h128v80c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144c0-8.837-7.163-16-16-16z" ], + "hand-holding": [ 576, 512, [], "f4bd", "M565.3 328.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z" ], + "hand-holding-heart": [ 576, 512, [], "f4be", "M275.3 250.5c7 7.4 18.4 7.4 25.5 0l108.9-114.2c31.6-33.2 29.8-88.2-5.6-118.8-30.8-26.7-76.7-21.9-104.9 7.7L288 36.9l-11.1-11.6C248.7-4.4 202.8-9.2 172 17.5c-35.3 30.6-37.2 85.6-5.6 118.8l108.9 114.2zm290 77.6c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z" ], + "hand-holding-usd": [ 544, 512, [], "f4c0", "M257.6 144.3l50 14.3c3.6 1 6.1 4.4 6.1 8.1 0 4.6-3.8 8.4-8.4 8.4h-32.8c-3.6 0-7.1-.8-10.3-2.2-4.8-2.2-10.4-1.7-14.1 2l-17.5 17.5c-5.3 5.3-4.7 14.3 1.5 18.4 9.5 6.3 20.3 10.1 31.8 11.5V240c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16v-17.6c30.3-3.6 53.3-31 49.3-63-2.9-23-20.7-41.3-42.9-47.7l-50-14.3c-3.6-1-6.1-4.4-6.1-8.1 0-4.6 3.8-8.4 8.4-8.4h32.8c3.6 0 7.1.8 10.3 2.2 4.8 2.2 10.4 1.7 14.1-2l17.5-17.5c5.3-5.3 4.7-14.3-1.5-18.4-9.5-6.3-20.3-10.1-31.8-11.5V16c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16v17.6c-30.3 3.6-53.3 31-49.3 63 2.9 23 20.7 41.3 42.9 47.7zm276.3 183.8c-11.2-10.7-28.5-10-40.3 0L406.4 402c-10.7 9.1-24 14-37.8 14H256.9c-8.3 0-15.1-7.2-15.1-16s6.8-16 15.1-16h73.9c15.1 0 29-10.9 31.4-26.6 3.1-20-11.5-37.4-29.8-37.4H181.3c-25.5 0-50.2 9.3-69.9 26.3L67.5 384H15.1C6.8 384 0 391.2 0 400v96c0 8.8 6.8 16 15.1 16H352c13.7 0 27-4.9 37.8-14l142.8-121c14.4-12.1 15.5-35.3 1.3-48.9z" ], + "hand-lizard": [ 576, 512, [], "f258", "M384 480h192V363.778a95.998 95.998 0 0 0-14.833-51.263L398.127 54.368A48 48 0 0 0 357.544 32H24C10.745 32 0 42.745 0 56v16c0 30.928 25.072 56 56 56h229.981c12.844 0 21.556 13.067 16.615 24.923l-21.41 51.385A32 32 0 0 1 251.648 224H128c-35.346 0-64 28.654-64 64v8c0 13.255 10.745 24 24 24h147.406a47.995 47.995 0 0 1 25.692 7.455l111.748 70.811A24.001 24.001 0 0 1 384 418.539V480z" ], + "hand-paper": [ 448, 512, [], "f256", "M408.781 128.007C386.356 127.578 368 146.36 368 168.79V256h-8V79.79c0-22.43-18.356-41.212-40.781-40.783C297.488 39.423 280 57.169 280 79v177h-8V40.79C272 18.36 253.644-.422 231.219.007 209.488.423 192 18.169 192 40v216h-8V80.79c0-22.43-18.356-41.212-40.781-40.783C121.488 40.423 104 58.169 104 80v235.992l-31.648-43.519c-12.993-17.866-38.009-21.817-55.877-8.823-17.865 12.994-21.815 38.01-8.822 55.877l125.601 172.705A48 48 0 0 0 172.073 512h197.59c22.274 0 41.622-15.324 46.724-37.006l26.508-112.66a192.011 192.011 0 0 0 5.104-43.975V168c.001-21.831-17.487-39.577-39.218-39.993z" ], + "hand-peace": [ 448, 512, [], "f25b", "M408 216c-22.092 0-40 17.909-40 40h-8v-32c0-22.091-17.908-40-40-40s-40 17.909-40 40v32h-8V48c0-26.51-21.49-48-48-48s-48 21.49-48 48v208h-13.572L92.688 78.449C82.994 53.774 55.134 41.63 30.461 51.324 5.787 61.017-6.356 88.877 3.337 113.551l74.765 190.342-31.09 24.872c-15.381 12.306-19.515 33.978-9.741 51.081l64 112A39.998 39.998 0 0 0 136 512h240c18.562 0 34.686-12.77 38.937-30.838l32-136A39.97 39.97 0 0 0 448 336v-80c0-22.091-17.908-40-40-40z" ], + "hand-point-down": [ 384, 512, [], "f0a7", "M91.826 467.2V317.966c-8.248 5.841-16.558 10.57-24.918 14.153C35.098 345.752-.014 322.222 0 288c.008-18.616 10.897-32.203 29.092-40 28.286-12.122 64.329-78.648 77.323-107.534 7.956-17.857 25.479-28.453 43.845-28.464l.001-.002h171.526c11.812 0 21.897 8.596 23.703 20.269 7.25 46.837 38.483 61.76 38.315 123.731-.007 2.724.195 13.254.195 16 0 50.654-22.122 81.574-71.263 72.6-9.297 18.597-39.486 30.738-62.315 16.45-21.177 24.645-53.896 22.639-70.944 6.299V467.2c0 24.15-20.201 44.8-43.826 44.8-23.283 0-43.826-21.35-43.826-44.8zM112 72V24c0-13.255 10.745-24 24-24h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24zm212-24c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z" ], + "hand-point-left": [ 512, 512, [], "f0a5", "M44.8 155.826h149.234c-5.841-8.248-10.57-16.558-14.153-24.918C166.248 99.098 189.778 63.986 224 64c18.616.008 32.203 10.897 40 29.092 12.122 28.286 78.648 64.329 107.534 77.323 17.857 7.956 28.453 25.479 28.464 43.845l.002.001v171.526c0 11.812-8.596 21.897-20.269 23.703-46.837 7.25-61.76 38.483-123.731 38.315-2.724-.007-13.254.195-16 .195-50.654 0-81.574-22.122-72.6-71.263-18.597-9.297-30.738-39.486-16.45-62.315-24.645-21.177-22.639-53.896-6.299-70.944H44.8c-24.15 0-44.8-20.201-44.8-43.826 0-23.283 21.35-43.826 44.8-43.826zM440 176h48c13.255 0 24 10.745 24 24v192c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24zm24 212c11.046 0 20-8.954 20-20s-8.954-20-20-20-20 8.954-20 20 8.954 20 20 20z" ], + "hand-point-right": [ 512, 512, [], "f0a4", "M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z" ], + "hand-point-up": [ 384, 512, [], "f0a6", "M135.652 0c23.625 0 43.826 20.65 43.826 44.8v99.851c17.048-16.34 49.766-18.346 70.944 6.299 22.829-14.288 53.017-2.147 62.315 16.45C361.878 158.426 384 189.346 384 240c0 2.746-.203 13.276-.195 16 .168 61.971-31.065 76.894-38.315 123.731C343.683 391.404 333.599 400 321.786 400H150.261l-.001-.002c-18.366-.011-35.889-10.607-43.845-28.464C93.421 342.648 57.377 276.122 29.092 264 10.897 256.203.008 242.616 0 224c-.014-34.222 35.098-57.752 66.908-44.119 8.359 3.583 16.67 8.312 24.918 14.153V44.8c0-23.45 20.543-44.8 43.826-44.8zM136 416h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24v-48c0-13.255 10.745-24 24-24zm168 28c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z" ], + "hand-pointer": [ 448, 512, [], "f25a", "M448 240v96c0 3.084-.356 6.159-1.063 9.162l-32 136C410.686 499.23 394.562 512 376 512H168a40.004 40.004 0 0 1-32.35-16.473l-127.997-176c-12.993-17.866-9.043-42.883 8.822-55.876 17.867-12.994 42.884-9.043 55.877 8.823L104 315.992V40c0-22.091 17.908-40 40-40s40 17.909 40 40v200h8v-40c0-22.091 17.908-40 40-40s40 17.909 40 40v40h8v-24c0-22.091 17.908-40 40-40s40 17.909 40 40v24h8c0-22.091 17.908-40 40-40s40 17.909 40 40zm-256 80h-8v96h8v-96zm88 0h-8v96h8v-96zm88 0h-8v96h8v-96z" ], + "hand-rock": [ 512, 512, [], "f255", "M512 128.79c0-26.322-20.861-48.344-47.18-48.783C437.935 79.558 416 101.217 416 128h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C333.935 47.558 312 69.217 312 96v32h-8V80.79c0-26.322-20.861-48.344-47.18-48.783C229.935 31.558 208 53.217 208 80v48h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C125.935 47.558 104 69.217 104 96v136l-8-7.111V176.79c0-26.322-20.861-48.344-47.18-48.783C21.935 127.558 0 149.217 0 176v66.445a95.998 95.998 0 0 0 32.221 71.751l111.668 99.261A47.999 47.999 0 0 1 160 449.333V456c0 13.255 10.745 24 24 24h240c13.255 0 24-10.745 24-24v-2.921a96.01 96.01 0 0 1 7.523-37.254l48.954-116.265A96.002 96.002 0 0 0 512 262.306V128.79z" ], + "hand-scissors": [ 512, 512, [], "f257", "M216 440c0-22.092 17.909-40 40-40v-8h-32c-22.091 0-40-17.908-40-40s17.909-40 40-40h32v-8H48c-26.51 0-48-21.49-48-48s21.49-48 48-48h208v-13.572l-177.551-69.74c-24.674-9.694-36.818-37.555-27.125-62.228 9.693-24.674 37.554-36.817 62.228-27.124l190.342 74.765 24.872-31.09c12.306-15.381 33.978-19.515 51.081-9.741l112 64A40.002 40.002 0 0 1 512 168v240c0 18.562-12.77 34.686-30.838 38.937l-136 32A39.982 39.982 0 0 1 336 480h-80c-22.091 0-40-17.908-40-40z" ], + "hand-spock": [ 512, 512, [], "f259", "M10.872 316.585c15.139-16.086 40.454-16.854 56.543-1.713L128 371.893v-79.405L88.995 120.865c-4.896-21.542 8.598-42.974 30.14-47.87 21.549-4.894 42.975 8.599 47.87 30.141L201.747 256h9.833L164.016 48.966c-4.946-21.531 8.498-42.994 30.028-47.94 21.532-4.95 42.994 8.498 47.94 30.028L293.664 256h15.105l48.425-193.702c5.357-21.432 27.075-34.462 48.507-29.104 21.432 5.358 34.463 27.075 29.104 48.507L391.231 256h11.08l30.768-129.265c5.117-21.491 26.685-34.768 48.177-29.647 21.491 5.117 34.765 26.686 29.647 48.177l-36.292 152.467A96.024 96.024 0 0 0 472 319.967v42.102a96.002 96.002 0 0 1-3.96 27.287l-26.174 88.287C435.825 498.022 417.101 512 395.846 512H179.172a48.002 48.002 0 0 1-32.898-13.046L12.585 373.128c-16.087-15.141-16.853-40.456-1.713-56.543z" ], + hands: [ 640, 512, [], "f4c2", "M204.8 230.4c-10.6-14.1-30.7-17-44.8-6.4-14.1 10.6-17 30.7-6.4 44.8l38.1 50.8c4.8 6.4 4.1 15.3-1.5 20.9l-12.8 12.8c-6.7 6.7-17.6 6.2-23.6-1.1L64 244.4V96c0-17.7-14.3-32-32-32S0 78.3 0 96v218.4c0 10.9 3.7 21.5 10.5 30l104.1 134.3c5 6.5 8.4 13.9 10.4 21.7 1.8 6.9 8.1 11.6 15.3 11.6H272c8.8 0 16-7.2 16-16V384c0-27.7-9-54.6-25.6-76.8l-57.6-76.8zM608 64c-17.7 0-32 14.3-32 32v148.4l-89.8 107.8c-6 7.2-17 7.7-23.6 1.1l-12.8-12.8c-5.6-5.6-6.3-14.5-1.5-20.9l38.1-50.8c10.6-14.1 7.7-34.2-6.4-44.8-14.1-10.6-34.2-7.7-44.8 6.4l-57.6 76.8C361 329.4 352 356.3 352 384v112c0 8.8 7.2 16 16 16h131.7c7.1 0 13.5-4.7 15.3-11.6 2-7.8 5.4-15.2 10.4-21.7l104.1-134.3c6.8-8.5 10.5-19.1 10.5-30V96c0-17.7-14.3-32-32-32z" ], + "hands-helping": [ 640, 512, [], "f4c4", "M488 192H336v56c0 39.7-32.3 72-72 72s-72-32.3-72-72V126.4l-64.9 39C107.8 176.9 96 197.8 96 220.2v47.3l-80 46.2C.7 322.5-4.6 342.1 4.3 357.4l80 138.6c8.8 15.3 28.4 20.5 43.7 11.7L231.4 448H368c35.3 0 64-28.7 64-64h16c17.7 0 32-14.3 32-32v-64h8c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zm147.7-37.4L555.7 16C546.9.7 527.3-4.5 512 4.3L408.6 64H306.4c-12 0-23.7 3.4-33.9 9.7L239 94.6c-9.4 5.8-15 16.1-15 27.1V248c0 22.1 17.9 40 40 40s40-17.9 40-40v-88h184c30.9 0 56 25.1 56 56v28.5l80-46.2c15.3-8.9 20.5-28.4 11.7-43.7z" ], + handshake: [ 640, 512, [], "f2b5", "M434.7 64h-85.9c-8 0-15.7 3-21.6 8.4l-98.3 90c-.1.1-.2.3-.3.4-16.6 15.6-16.3 40.5-2.1 56 12.7 13.9 39.4 17.6 56.1 2.7.1-.1.3-.1.4-.2l79.9-73.2c6.5-5.9 16.7-5.5 22.6 1 6 6.5 5.5 16.6-1 22.6l-26.1 23.9L504 313.8c2.9 2.4 5.5 5 7.9 7.7V128l-54.6-54.6c-5.9-6-14.1-9.4-22.6-9.4zM544 128.2v223.9c0 17.7 14.3 32 32 32h64V128.2h-96zm48 223.9c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM0 384h64c17.7 0 32-14.3 32-32V128.2H0V384zm48-63.9c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16c0-8.9 7.2-16 16-16zm435.9 18.6L334.6 217.5l-30 27.5c-29.7 27.1-75.2 24.5-101.7-4.4-26.9-29.4-24.8-74.9 4.4-101.7L289.1 64h-83.8c-8.5 0-16.6 3.4-22.6 9.4L128 128v223.9h18.3l90.5 81.9c27.4 22.3 67.7 18.1 90-9.3l.2-.2 17.9 15.5c15.9 13 39.4 10.5 52.3-5.4l31.4-38.6 5.4 4.4c13.7 11.1 33.9 9.1 45-4.7l9.5-11.7c11.2-13.8 9.1-33.9-4.6-45.1z" ], + hashtag: [ 448, 512, [], "f292", "M440.667 182.109l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l14.623-81.891C377.123 38.754 371.468 32 363.997 32h-40.632a12 12 0 0 0-11.813 9.891L296.175 128H197.54l14.623-81.891C213.477 38.754 207.822 32 200.35 32h-40.632a12 12 0 0 0-11.813 9.891L132.528 128H53.432a12 12 0 0 0-11.813 9.891l-7.143 40C33.163 185.246 38.818 192 46.289 192h74.81L98.242 320H19.146a12 12 0 0 0-11.813 9.891l-7.143 40C-1.123 377.246 4.532 384 12.003 384h74.81L72.19 465.891C70.877 473.246 76.532 480 84.003 480h40.632a12 12 0 0 0 11.813-9.891L151.826 384h98.634l-14.623 81.891C234.523 473.246 240.178 480 247.65 480h40.632a12 12 0 0 0 11.813-9.891L315.472 384h79.096a12 12 0 0 0 11.813-9.891l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l22.857-128h79.096a12 12 0 0 0 11.813-9.891zM261.889 320h-98.634l22.857-128h98.634l-22.857 128z" ], + hdd: [ 576, 512, [], "f0a0", "M576 304v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48zm-48-80a79.557 79.557 0 0 1 30.777 6.165L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L17.223 230.165A79.557 79.557 0 0 1 48 224h480zm-48 96c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm-96 0c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z" ], + heading: [ 512, 512, [], "f1dc", "M496 80V48c0-8.837-7.163-16-16-16H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.621v128H154.379V96H192c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.275v320H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.621V288H357.62v128H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.275V96H480c8.837 0 16-7.163 16-16z" ], + headphones: [ 512, 512, [], "f025", "M256 32C114.52 32 0 146.496 0 288v48a32 32 0 0 0 17.689 28.622l14.383 7.191C34.083 431.903 83.421 480 144 480h24c13.255 0 24-10.745 24-24V280c0-13.255-10.745-24-24-24h-24c-31.342 0-59.671 12.879-80 33.627V288c0-105.869 86.131-192 192-192s192 86.131 192 192v1.627C427.671 268.879 399.342 256 368 256h-24c-13.255 0-24 10.745-24 24v176c0 13.255 10.745 24 24 24h24c60.579 0 109.917-48.098 111.928-108.187l14.382-7.191A32 32 0 0 0 512 336v-48c0-141.479-114.496-256-256-256z" ], + "headphones-alt": [ 512, 512, [], "f58f", "M160 288h-16c-35.35 0-64 28.7-64 64.12v63.76c0 35.41 28.65 64.12 64 64.12h16c17.67 0 32-14.36 32-32.06V320.06c0-17.71-14.33-32.06-32-32.06zm208 0h-16c-17.67 0-32 14.35-32 32.06v127.88c0 17.7 14.33 32.06 32 32.06h16c35.35 0 64-28.71 64-64.12v-63.76c0-35.41-28.65-64.12-64-64.12zM256 32C112.91 32 4.57 151.13 0 288v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288c0-114.67 93.33-207.8 208-207.82 114.67.02 208 93.15 208 207.82v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288C507.43 151.13 399.09 32 256 32z" ], + headset: [ 512, 512, [], "f590", "M192 208c0-17.67-14.33-32-32-32h-16c-35.35 0-64 28.65-64 64v48c0 35.35 28.65 64 64 64h16c17.67 0 32-14.33 32-32V208zm176 144c35.35 0 64-28.65 64-64v-48c0-35.35-28.65-64-64-64h-16c-17.67 0-32 14.33-32 32v112c0 17.67 14.33 32 32 32h16zM256 0C113.18 0 4.58 118.83 0 256v16c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-16c0-114.69 93.31-208 208-208s208 93.31 208 208h-.12c.08 2.43.12 165.72.12 165.72 0 23.35-18.93 42.28-42.28 42.28H320c0-26.51-21.49-48-48-48h-32c-26.51 0-48 21.49-48 48s21.49 48 48 48h181.72c49.86 0 90.28-40.42 90.28-90.28V256C507.42 118.83 398.82 0 256 0z" ], + heart: [ 512, 512, [], "f004", "M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z" ], + heartbeat: [ 512, 512, [], "f21e", "M320.2 243.8l-49.7 99.4c-6 12.1-23.4 11.7-28.9-.6l-56.9-126.3-30 71.7H60.6l182.5 186.5c7.1 7.3 18.6 7.3 25.7 0L451.4 288H342.3l-22.1-44.2zM473.7 73.9l-2.4-2.5c-51.5-52.6-135.8-52.6-187.4 0L256 100l-27.9-28.5c-51.5-52.7-135.9-52.7-187.4 0l-2.4 2.4C-10.4 123.7-12.5 203 31 256h102.4l35.9-86.2c5.4-12.9 23.6-13.2 29.4-.4l58.2 129.3 49-97.9c5.9-11.8 22.7-11.8 28.6 0l27.6 55.2H481c43.5-53 41.4-132.3-7.3-182.1z" ], + helicopter: [ 640, 512, [], "f533", "M304 384h272c17.67 0 32-14.33 32-32 0-123.71-100.29-224-224-224V64h176c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H144c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h176v64H112L68.8 70.4C65.78 66.37 61.03 64 56 64H16.01C5.6 64-2.04 73.78.49 83.88L32 192l160 64 86.4 115.2A31.992 31.992 0 0 0 304 384zm112-188.49C478.55 208.3 528.03 257.44 540.79 320H416V195.51zm219.37 263.3l-22.15-22.2c-6.25-6.26-16.24-6.1-22.64.01-7.09 6.77-13.84 11.25-24.64 11.25H240c-8.84 0-16 7.18-16 16.03v32.06c0 8.85 7.16 16.03 16 16.03h325.94c14.88 0 35.3-.47 68.45-29.52 7.02-6.14 7.57-17.05.98-23.66z" ], + highlighter: [ 544, 512, [], "f591", "M0 479.98L99.92 512l35.45-35.45-67.04-67.04L0 479.98zm124.61-240.01a36.592 36.592 0 0 0-10.79 38.1l13.05 42.83-50.93 50.94 96.23 96.23 50.86-50.86 42.74 13.08c13.73 4.2 28.65-.01 38.15-10.78l35.55-41.64-173.34-173.34-41.52 35.44zm403.31-160.7l-63.2-63.2c-20.49-20.49-53.38-21.52-75.12-2.35L190.55 183.68l169.77 169.78L530.27 154.4c19.18-21.74 18.15-54.63-2.35-75.13z" ], + history: [ 512, 512, [], "f1da", "M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z" ], + "hockey-puck": [ 512, 512, [], "f453", "M0 160c0-53 114.6-96 256-96s256 43 256 96-114.6 96-256 96S0 213 0 160zm0 82.2V352c0 53 114.6 96 256 96s256-43 256-96V242.2c-113.4 82.3-398.5 82.4-512 0z" ], + home: [ 576, 512, [], "f015", "M488 312.7V456c0 13.3-10.7 24-24 24H348c-6.6 0-12-5.4-12-12V356c0-6.6-5.4-12-12-12h-72c-6.6 0-12 5.4-12 12v112c0 6.6-5.4 12-12 12H112c-13.3 0-24-10.7-24-24V312.7c0-3.6 1.6-7 4.4-9.3l188-154.8c4.4-3.6 10.8-3.6 15.3 0l188 154.8c2.7 2.3 4.3 5.7 4.3 9.3zm83.6-60.9L488 182.9V44.4c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12V117l-89.5-73.7c-17.7-14.6-43.3-14.6-61 0L4.4 251.8c-5.1 4.2-5.8 11.8-1.6 16.9l25.5 31c4.2 5.1 11.8 5.8 16.9 1.6l235.2-193.7c4.4-3.6 10.8-3.6 15.3 0l235.2 193.7c5.1 4.2 12.7 3.5 16.9-1.6l25.5-31c4.2-5.2 3.4-12.7-1.7-16.9z" ], + hospital: [ 448, 512, [], "f0f8", "M448 492v20H0v-20c0-6.627 5.373-12 12-12h20V120c0-13.255 10.745-24 24-24h88V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v72h88c13.255 0 24 10.745 24 24v360h20c6.627 0 12 5.373 12 12zM308 192h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-168 64h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm104 128h-40c-6.627 0-12 5.373-12 12v84h64v-84c0-6.627-5.373-12-12-12zm64-96h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-116 12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zM182 96h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6z" ], + "hospital-alt": [ 576, 512, [], "f47d", "M544 96H416V32c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32v368c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16V128c0-17.7-14.3-32-32-32zM160 436c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm160 128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm16-170c0 3.3-2.7 6-6 6h-26v26c0 3.3-2.7 6-6 6h-20c-3.3 0-6-2.7-6-6v-26h-26c-3.3 0-6-2.7-6-6v-20c0-3.3 2.7-6 6-6h26V86c0-3.3 2.7-6 6-6h20c3.3 0 6 2.7 6 6v26h26c3.3 0 6 2.7 6 6v20zm144 298c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z" ], + "hospital-symbol": [ 512, 512, [], "f47e", "M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm112 376c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-88h-96v88c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V136c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v88h96v-88c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v240z" ], + "hot-tub": [ 512, 512, [], "f593", "M414.21 177.65c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C378.96 6.14 372.22 0 364.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zm-108 0c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C270.96 6.14 264.22 0 256.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zM480 256H256l-110.93-83.2a63.99 63.99 0 0 0-38.4-12.8H64c-35.35 0-64 28.65-64 64v224c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64V288c0-17.67-14.33-32-32-32zM128 440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zM64 128c35.35 0 64-28.65 64-64S99.35 0 64 0 0 28.65 0 64s28.65 64 64 64z" ], + hotel: [ 576, 512, [], "f594", "M560 64c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h15.98v384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h240v-80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v80h240c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-16V64h16zm-304 44.8c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm0 96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm-128-96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zM179.2 256h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8zM192 384c0-53.02 42.98-96 96-96s96 42.98 96 96H192zm256-140.8c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-96c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4z" ], + hourglass: [ 384, 512, [], "f254", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64z" ], + "hourglass-end": [ 384, 512, [], "f253", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64zM192 208c-57.787 0-104-66.518-104-144h208c0 77.945-46.51 144-104 144z" ], + "hourglass-half": [ 384, 512, [], "f252", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-75.078 384H99.08c17.059-46.797 52.096-80 92.92-80 40.821 0 75.862 33.196 92.922 80zm.019-256H99.078C91.988 108.548 88 86.748 88 64h208c0 22.805-3.987 44.587-11.059 64z" ], + "hourglass-start": [ 384, 512, [], "f251", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-64 448H88c0-77.458 46.204-144 104-144 57.786 0 104 66.517 104 144z" ], + "i-cursor": [ 256, 512, [], "f246", "M256 52.048V12.065C256 5.496 250.726.148 244.158.066 211.621-.344 166.469.011 128 37.959 90.266.736 46.979-.114 11.913.114 5.318.157 0 5.519 0 12.114v39.645c0 6.687 5.458 12.078 12.145 11.998C38.111 63.447 96 67.243 96 112.182V224H60c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h36v112c0 44.932-56.075 48.031-83.95 47.959C5.404 447.942 0 453.306 0 459.952v39.983c0 6.569 5.274 11.917 11.842 11.999 32.537.409 77.689.054 116.158-37.894 37.734 37.223 81.021 38.073 116.087 37.845 6.595-.043 11.913-5.405 11.913-12V460.24c0-6.687-5.458-12.078-12.145-11.998C217.889 448.553 160 444.939 160 400V288h36c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-36V112.182c0-44.932 56.075-48.213 83.95-48.142 6.646.018 12.05-5.346 12.05-11.992z" ], + "id-badge": [ 384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM144 32h96c8.8 0 16 7.2 16 16s-7.2 16-16 16h-96c-8.8 0-16-7.2-16-16s7.2-16 16-16zm48 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 416 80 407.4 80 396.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z" ], + "id-card": [ 576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v16h576V80c0-26.5-21.5-48-48-48zM0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V128H0v304zm352-232c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zM176 192c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zM67.1 396.2C75.5 370.5 99.6 352 128 352h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.9-5.2 19.8-15.6 19.8H82.7c-10.4 0-18.8-10-15.6-19.8z" ], + "id-card-alt": [ 576, 512, [], "f47f", "M528 64H384v96H192V64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM288 224c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm93.3 224H194.7c-10.4 0-18.8-10-15.6-19.8 8.3-25.6 32.4-44.2 60.9-44.2h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.8-5.2 19.8-15.6 19.8zM352 32c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v96h128V32z" ], + image: [ 512, 512, [], "f03e", "M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z" ], + images: [ 576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v208c0 44.112 35.888 80 80 80h336zm96-80V80c0-26.51-21.49-48-48-48H144c-26.51 0-48 21.49-48 48v256c0 26.51 21.49 48 48 48h384c26.51 0 48-21.49 48-48zM256 128c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-96 144l55.515-55.515c4.686-4.686 12.284-4.686 16.971 0L272 256l135.515-135.515c4.686-4.686 12.284-4.686 16.971 0L512 208v112H160v-48z" ], + inbox: [ 576, 512, [], "f01c", "M567.938 243.908L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L8.062 243.908A47.994 47.994 0 0 0 0 270.533V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V270.533a47.994 47.994 0 0 0-8.062-26.625zM162.252 128h251.497l85.333 128H376l-32 64H232l-32-64H76.918l85.334-128z" ], + indent: [ 448, 512, [], "f03c", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm176 144h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm-52.687-111.313l-96-95.984C17.266 138.652 0 145.776 0 160.016v191.975c0 14.329 17.325 21.304 27.313 11.313l96-95.992c6.249-6.247 6.249-16.377 0-22.625z" ], + industry: [ 512, 512, [], "f275", "M475.115 163.781L336 252.309v-68.28c0-18.916-20.931-30.399-36.885-20.248L160 252.309V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h464c13.255 0 24-10.745 24-24V184.029c0-18.917-20.931-30.399-36.885-20.248z" ], + infinity: [ 640, 512, [], "f534", "M471.1 96C405 96 353.3 137.3 320 174.6 286.7 137.3 235 96 168.9 96 75.8 96 0 167.8 0 256s75.8 160 168.9 160c66.1 0 117.8-41.3 151.1-78.6 33.3 37.3 85 78.6 151.1 78.6 93.1 0 168.9-71.8 168.9-160S564.2 96 471.1 96zM168.9 320c-40.2 0-72.9-28.7-72.9-64s32.7-64 72.9-64c38.2 0 73.4 36.1 94 64-20.4 27.6-55.9 64-94 64zm302.2 0c-38.2 0-73.4-36.1-94-64 20.4-27.6 55.9-64 94-64 40.2 0 72.9 28.7 72.9 64s-32.7 64-72.9 64z" ], + info: [ 192, 512, [], "f129", "M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z" ], + "info-circle": [ 512, 512, [], "f05a", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z" ], + italic: [ 320, 512, [], "f033", "M204.758 416h-33.849l62.092-320h40.725a16 16 0 0 0 15.704-12.937l6.242-32C297.599 41.184 290.034 32 279.968 32H120.235a16 16 0 0 0-15.704 12.937l-6.242 32C96.362 86.816 103.927 96 113.993 96h33.846l-62.09 320H46.278a16 16 0 0 0-15.704 12.935l-6.245 32C22.402 470.815 29.967 480 40.034 480h158.479a16 16 0 0 0 15.704-12.935l6.245-32c1.927-9.88-5.638-19.065-15.704-19.065z" ], + joint: [ 640, 512, [], "f595", "M444.34 181.1c22.38 15.68 35.66 41.16 35.66 68.59V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-43.24-21.01-83.41-56.34-108.06C463.85 125.02 448 99.34 448 70.31V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v66.4c0 43.69 24.56 81.63 60.34 106.7zM194.97 358.98C126.03 370.07 59.69 394.69 0 432c83.65 52.28 180.3 80 278.94 80h88.57L254.79 380.49c-14.74-17.2-37.45-25.11-59.82-21.51zM553.28 87.09c-5.67-3.8-9.28-9.96-9.28-16.78V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v62.31c0 22.02 10.17 43.41 28.64 55.39C550.79 153.04 576 199.54 576 249.69V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-65.44-32.41-126.19-86.72-162.6zM360.89 352.05c-34.4.06-86.81.15-88.21.17l117.8 137.43A63.987 63.987 0 0 0 439.07 512h88.45L409.57 374.4a63.955 63.955 0 0 0-48.68-22.35zM616 352H432l117.99 137.65A63.987 63.987 0 0 0 598.58 512H616c13.25 0 24-10.75 24-24V376c0-13.26-10.75-24-24-24z" ], + key: [ 512, 512, [], "f084", "M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z" ], + keyboard: [ 576, 512, [], "f11c", "M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z" ], + kiss: [ 496, 512, [], "f596", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm136 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm24-156c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + "kiss-beam": [ 496, 512, [], "f597", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-39 219.9l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5zM304 396c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm65-168.1l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5z" ], + "kiss-wink-heart": [ 504, 512, [], "f598", "M501.1 402.5c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zm-177.6-4c-5.6-20.3-2.3-42 9-59.7 29.7-46.3 98.7-45.5 127.8 4.3 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-.3-.7-23.9-84.6-23.9-84.6zM168 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm120 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-5.7-12.3 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.8-3.7-4.6-16.6 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C274.6 368.7 288 383 288 396zm16-179c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S400 181 404 206.2c1.7 11.1-11.3 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 217z" ], + "kiwi-bird": [ 576, 512, [], "f535", "M575.81 217.98C572.64 157.41 518.28 112 457.63 112h-9.37c-52.82 0-104.25-16.25-147.74-46.24-41.99-28.96-96.04-41.62-153.21-28.7C129.3 41.12-.08 78.24 0 224c.04 70.95 38.68 132.8 95.99 166.01V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-54.26c15.36 3.96 31.4 6.26 48 6.26 5.44 0 10.68-.73 16-1.18V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-59.43c14.24-5.06 27.88-11.39 40.34-19.51C342.07 355.25 393.86 336 448.46 336c25.48 0 16.01-.31 23.05-.78l74.41 136.44c2.86 5.23 8.3 8.34 14.05 8.34 1.31 0 2.64-.16 3.95-.5 7.09-1.8 12.05-8.19 12.05-15.5 0 0 .14-240.24-.16-246.02zM463.97 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm80 153.25l-39.86-73.08c15.12-5.83 28.73-14.6 39.86-25.98v99.06z" ], + language: [ 640, 512, [], "f1ab", "M304 416H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h280v320zm-120.676-72.622A12 12 0 0 0 194.839 352h22.863c8.22 0 14.007-8.078 11.362-15.861L171.61 167.085a12 12 0 0 0-11.362-8.139h-32.489a12.001 12.001 0 0 0-11.362 8.139L58.942 336.139C56.297 343.922 62.084 352 70.304 352h22.805a12 12 0 0 0 11.535-8.693l9.118-31.807h60.211l9.351 31.878zm-39.051-140.42s4.32 21.061 7.83 33.21l10.8 37.531h-38.07l11.07-37.531c3.51-12.15 7.83-33.21 7.83-33.21h.54zM616 416H336V96h280c13.255 0 24 10.745 24 24v272c0 13.255-10.745 24-24 24zm-36-228h-64v-16c0-6.627-5.373-12-12-12h-16c-6.627 0-12 5.373-12 12v16h-64c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h114.106c-6.263 14.299-16.518 28.972-30.023 43.206-6.56-6.898-12.397-13.91-17.365-20.933-3.639-5.144-10.585-6.675-15.995-3.446l-7.28 4.346-6.498 3.879c-5.956 3.556-7.693 11.421-3.735 17.117 6.065 8.729 13.098 17.336 20.984 25.726-8.122 6.226-16.841 12.244-26.103 17.964-5.521 3.41-7.381 10.556-4.162 16.19l7.941 13.896c3.362 5.883 10.935 7.826 16.706 4.276 12.732-7.831 24.571-16.175 35.443-24.891 10.917 8.761 22.766 17.102 35.396 24.881 5.774 3.556 13.353 1.618 16.717-4.27l7.944-13.903c3.213-5.623 1.37-12.76-4.135-16.171a312.737 312.737 0 0 1-26.06-18.019c21.024-22.425 35.768-46.289 42.713-69.85H580c6.627 0 12-5.373 12-12v-16c0-6.625-5.373-11.998-12-11.998z" ], + laptop: [ 640, 512, [], "f109", "M512 64v256H128V64h384m16-64H112C85.5 0 64 21.5 64 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm100 416H389.5c-3 0-5.5 2.1-5.9 5.1C381.2 436.3 368 448 352 448h-64c-16 0-29.2-11.7-31.6-26.9-.5-2.9-3-5.1-5.9-5.1H12c-6.6 0-12 5.4-12 12v36c0 26.5 21.5 48 48 48h544c26.5 0 48-21.5 48-48v-36c0-6.6-5.4-12-12-12z" ], + laugh: [ 496, 512, [], "f599", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 152c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm88 272h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18-8.9 71-69.5 126-142.9 126z" ], + "laugh-beam": [ 496, 512, [], "f59a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm24 199.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.8 4.1-15.1-4.5zm-160 0c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z" ], + "laugh-squint": [ 496, 512, [], "f59b", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 161.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 180l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z" ], + "laugh-wink": [ 496, 512, [], "f59c", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm20.1 198.1c4-25.2 34.2-42.1 59.9-42.1s55.9 16.9 59.9 42.1c1.7 11.1-11.4 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 217c-8.4 7.4-21.6.3-19.9-10.9zM168 160c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm230.9 146C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z" ], + leaf: [ 576, 512, [], "f06c", "M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z" ], + lemon: [ 512, 512, [], "f094", "M489.038 22.963C465.944-.13 434.648-5.93 413.947 6.129c-58.906 34.312-181.25-53.077-321.073 86.746S40.441 355.041 6.129 413.945c-12.059 20.702-6.26 51.999 16.833 75.093 23.095 23.095 54.392 28.891 75.095 16.832 58.901-34.31 181.246 53.079 321.068-86.743S471.56 156.96 505.871 98.056c12.059-20.702 6.261-51.999-16.833-75.093zM243.881 95.522c-58.189 14.547-133.808 90.155-148.358 148.358-1.817 7.27-8.342 12.124-15.511 12.124-1.284 0-2.59-.156-3.893-.481-8.572-2.144-13.784-10.83-11.642-19.403C81.901 166.427 166.316 81.93 236.119 64.478c8.575-2.143 17.261 3.069 19.403 11.642s-3.069 17.259-11.641 19.402z" ], + "less-than": [ 384, 512, [], "f536", "M365.46 357.74L147.04 255.89l218.47-101.88c16.02-7.47 22.95-26.51 15.48-42.53l-13.52-29C360 66.46 340.96 59.53 324.94 67L18.48 209.91a32.014 32.014 0 0 0-18.48 29v34.24c0 12.44 7.21 23.75 18.48 29l306.31 142.83c16.06 7.49 35.15.54 42.64-15.52l13.56-29.08c7.49-16.06.54-35.15-15.53-42.64z" ], + "less-than-equal": [ 448, 512, [], "f537", "M54.98 214.2l301.41 119.87c18.39 6.03 38.71-2.54 45.38-19.15l12.09-30.08c6.68-16.61-2.82-34.97-21.21-41l-175.44-68.05 175.56-68.09c18.29-6 27.74-24.27 21.1-40.79l-12.03-29.92c-6.64-16.53-26.86-25.06-45.15-19.06L54.98 137.89C41.21 142.41 32 154.5 32 168.07v15.96c0 13.56 9.21 25.65 22.98 30.17zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z" ], + "level-down-alt": [ 320, 512, [], "f3be", "M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z" ], + "level-up-alt": [ 320, 512, [], "f3bf", "M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z" ], + "life-ring": [ 512, 512, [], "f1cd", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm173.696 119.559l-63.399 63.399c-10.987-18.559-26.67-34.252-45.255-45.255l63.399-63.399a218.396 218.396 0 0 1 45.255 45.255zM256 352c-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96-42.981 96-96 96zM127.559 82.304l63.399 63.399c-18.559 10.987-34.252 26.67-45.255 45.255l-63.399-63.399a218.372 218.372 0 0 1 45.255-45.255zM82.304 384.441l63.399-63.399c10.987 18.559 26.67 34.252 45.255 45.255l-63.399 63.399a218.396 218.396 0 0 1-45.255-45.255zm302.137 45.255l-63.399-63.399c18.559-10.987 34.252-26.67 45.255-45.255l63.399 63.399a218.403 218.403 0 0 1-45.255 45.255z" ], + lightbulb: [ 384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zm-143.107-44c-9.907 0-18.826-6.078-22.376-15.327C67.697 267.541 16 277.731 16 176 16 78.803 94.805 0 192 0s176 78.803 176 176c0 101.731-51.697 91.541-90.516 192.673-3.55 9.249-12.47 15.327-22.376 15.327H128.893zM112 176c0-44.112 35.888-80 80-80 8.837 0 16-7.164 16-16s-7.163-16-16-16c-61.757 0-112 50.243-112 112 0 8.836 7.164 16 16 16s16-7.164 16-16z" ], + link: [ 512, 512, [], "f0c1", "M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z" ], + "lira-sign": [ 384, 512, [], "f195", "M371.994 256h-48.019C317.64 256 312 260.912 312 267.246 312 368 230.179 416 144 416V256.781l134.603-29.912A12 12 0 0 0 288 215.155v-40.976c0-7.677-7.109-13.38-14.603-11.714L144 191.219V160.78l134.603-29.912A12 12 0 0 0 288 119.154V78.179c0-7.677-7.109-13.38-14.603-11.714L144 95.219V44c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v68.997L9.397 125.131A12 12 0 0 0 0 136.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 178.558v30.439L9.397 221.131A12 12 0 0 0 0 232.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 274.558V468c0 6.627 5.373 12 12 12h79.583c134.091 0 223.255-77.834 228.408-211.592.261-6.782-5.211-12.408-11.997-12.408z" ], + list: [ 512, 512, [], "f03a", "M128 116V76c0-8.837 7.163-16 16-16h352c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H144c-8.837 0-16-7.163-16-16zm16 176h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 144h64c8.837 0 16-7.163 16-16V64c0-8.837-7.163-16-16-16H16C7.163 48 0 55.163 0 64v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16z" ], + "list-alt": [ 512, 512, [], "f022", "M464 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM128 120c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288-136v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12z" ], + "list-ol": [ 512, 512, [], "f0cb", "M3.263 139.527c0-7.477 3.917-11.572 11.573-11.572h15.131V88.078c0-5.163.534-10.503.534-10.503h-.356s-1.779 2.67-2.848 3.738c-4.451 4.273-10.504 4.451-15.666-1.068l-5.518-6.231c-5.342-5.341-4.984-11.216.534-16.379l21.72-19.938C32.815 33.602 36.732 32 42.785 32H54.89c7.656 0 11.749 3.916 11.749 11.572v84.384h15.488c7.655 0 11.572 4.094 11.572 11.572v8.901c0 7.477-3.917 11.572-11.572 11.572H14.836c-7.656 0-11.573-4.095-11.573-11.572v-8.902zM2.211 304.591c0-47.278 50.955-56.383 50.955-69.165 0-7.18-5.954-8.755-9.28-8.755-3.153 0-6.479 1.051-9.455 3.852-5.079 4.903-10.507 7.004-16.111 2.451l-8.579-6.829c-5.779-4.553-7.18-9.805-2.803-15.409C13.592 201.981 26.025 192 47.387 192c19.437 0 44.476 10.506 44.476 39.573 0 38.347-46.753 46.402-48.679 56.909h39.049c7.529 0 11.557 4.027 11.557 11.382v8.755c0 7.354-4.028 11.382-11.557 11.382h-67.94c-7.005 0-12.083-4.028-12.083-11.382v-4.028zM5.654 454.61l5.603-9.28c3.853-6.654 9.105-7.004 15.584-3.152 4.903 2.101 9.63 3.152 14.359 3.152 10.155 0 14.358-3.502 14.358-8.23 0-6.654-5.604-9.106-15.934-9.106h-4.728c-5.954 0-9.28-2.101-12.258-7.88l-1.05-1.926c-2.451-4.728-1.226-9.806 2.801-14.884l5.604-7.004c6.829-8.405 12.257-13.483 12.257-13.483v-.35s-4.203 1.051-12.608 1.051H16.685c-7.53 0-11.383-4.028-11.383-11.382v-8.755c0-7.53 3.853-11.382 11.383-11.382h58.484c7.529 0 11.382 4.027 11.382 11.382v3.327c0 5.778-1.401 9.806-5.079 14.183l-17.509 20.137c19.611 5.078 28.716 20.487 28.716 34.845 0 21.363-14.358 44.126-48.503 44.126-16.636 0-28.192-4.728-35.896-9.455-5.779-4.202-6.304-9.805-2.626-15.934zM144 132h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" ], + "list-ul": [ 512, 512, [], "f0ca", "M96 96c0 26.51-21.49 48-48 48S0 122.51 0 96s21.49-48 48-48 48 21.49 48 48zM48 208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm0 160c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm96-236h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" ], + "location-arrow": [ 512, 512, [], "f124", "M443.683 4.529L27.818 196.418C-18.702 217.889-3.39 288 47.933 288H224v175.993c0 51.727 70.161 66.526 91.582 20.115L507.38 68.225c18.905-40.961-23.752-82.133-63.697-63.696z" ], + lock: [ 448, 512, [], "f023", "M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z" ], + "lock-open": [ 576, 512, [], "f3c1", "M423.5 0C339.5.3 272 69.5 272 153.5V224H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48h-48v-71.1c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v80c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-80C576 68 507.5-.3 423.5 0z" ], + "long-arrow-alt-down": [ 256, 512, [], "f309", "M168 345.941V44c0-6.627-5.373-12-12-12h-56c-6.627 0-12 5.373-12 12v301.941H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.569 9.373 33.941 0l86.059-86.059c15.119-15.119 4.411-40.971-16.971-40.971H168z" ], + "long-arrow-alt-left": [ 448, 512, [], "f30a", "M134.059 296H436c6.627 0 12-5.373 12-12v-56c0-6.627-5.373-12-12-12H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.569 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296z" ], + "long-arrow-alt-right": [ 448, 512, [], "f30b", "M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z" ], + "long-arrow-alt-up": [ 256, 512, [], "f30c", "M88 166.059V468c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12V166.059h46.059c21.382 0 32.09-25.851 16.971-40.971l-86.059-86.059c-9.373-9.373-24.569-9.373-33.941 0l-86.059 86.059c-15.119 15.119-4.411 40.971 16.971 40.971H88z" ], + "low-vision": [ 576, 512, [], "f2a8", "M569.344 231.631C512.96 135.949 407.81 72 288 72c-28.468 0-56.102 3.619-82.451 10.409L152.778 10.24c-7.601-10.858-22.564-13.5-33.423-5.9l-13.114 9.178c-10.86 7.601-13.502 22.566-5.9 33.426l43.131 58.395C89.449 131.73 40.228 174.683 6.682 231.581c-.01.017-.023.033-.034.05-8.765 14.875-8.964 33.528 0 48.739 38.5 65.332 99.742 115.862 172.859 141.349L55.316 244.302A272.194 272.194 0 0 1 83.61 208.39l119.4 170.58h.01l40.63 58.04a330.055 330.055 0 0 0 78.94 1.17l-189.98-271.4a277.628 277.628 0 0 1 38.777-21.563l251.836 356.544c7.601 10.858 22.564 13.499 33.423 5.9l13.114-9.178c10.86-7.601 13.502-22.567 5.9-33.426l-43.12-58.377-.007-.009c57.161-27.978 104.835-72.04 136.81-126.301a47.938 47.938 0 0 0 .001-48.739zM390.026 345.94l-19.066-27.23c24.682-32.567 27.711-76.353 8.8-111.68v.03c0 23.65-19.17 42.82-42.82 42.82-23.828 0-42.82-19.349-42.82-42.82 0-23.65 19.17-42.82 42.82-42.82h.03c-24.75-13.249-53.522-15.643-79.51-7.68l-19.068-27.237C253.758 123.306 270.488 120 288 120c75.162 0 136 60.826 136 136 0 34.504-12.833 65.975-33.974 89.94z" ], + "luggage-cart": [ 640, 512, [], "f59d", "M224 320h32V96h-32c-17.67 0-32 14.33-32 32v160c0 17.67 14.33 32 32 32zm352-32V128c0-17.67-14.33-32-32-32h-32v224h32c17.67 0 32-14.33 32-32zm48 96H128V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h48v368c0 8.84 7.16 16 16 16h82.94c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16h197.88c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM480 96V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v272h192V96zm-48 0h-96V48h96v48z" ], + magic: [ 512, 512, [], "f0d0", "M224 96l16-32 32-16-32-16-16-32-16 32-32 16 32 16 16 32zM80 160l26.66-53.33L160 80l-53.34-26.67L80 0 53.34 53.33 0 80l53.34 26.67L80 160zm352 128l-26.66 53.33L352 368l53.34 26.67L432 448l26.66-53.33L512 368l-53.34-26.67L432 288zm70.62-193.77L417.77 9.38C411.53 3.12 403.34 0 395.15 0c-8.19 0-16.38 3.12-22.63 9.38L9.38 372.52c-12.5 12.5-12.5 32.76 0 45.25l84.85 84.85c6.25 6.25 14.44 9.37 22.62 9.37 8.19 0 16.38-3.12 22.63-9.37l363.14-363.15c12.5-12.48 12.5-32.75 0-45.24zM359.45 203.46l-50.91-50.91 86.6-86.6 50.91 50.91-86.6 86.6z" ], + magnet: [ 512, 512, [], "f076", "M164.1 160H12c-6.6 0-12-5.4-12-12V68c0-19.9 16.1-36 36-36h104c19.9 0 36 16.1 36 36v80c.1 6.6-5.3 12-11.9 12zm348-12V67.9c0-19.9-16.1-36-36-36h-104c-19.9 0-36 16.1-36 36v80c0 6.6 5.4 12 12 12h152c6.6.1 12-5.3 12-11.9zm-164 44c-6.6 0-12 5.4-12 12v52c0 128.1-160 127.9-160 0v-52c0-6.6-5.4-12-12-12h-152c-6.7 0-12 5.4-12 12.1.1 21.4.6 40.3 0 53.3C.1 408 136.3 504 256.9 504 377.5 504 512 408 512 257.3c-.6-12.8-.2-33 0-53.2 0-6.7-5.3-12.1-12-12.1H348.1z" ], + male: [ 192, 512, [], "f183", "M96 0c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64S60.654 0 96 0m48 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H48c-26.51 0-48 21.49-48 48v136c0 13.255 10.745 24 24 24h16v136c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V352h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48z" ], + map: [ 576, 512, [], "f279", "M0 117.66v346.32c0 11.32 11.43 19.06 21.94 14.86L160 416V32L20.12 87.95A32.006 32.006 0 0 0 0 117.66zM192 416l192 64V96L192 32v384zM554.06 33.16L416 96v384l139.88-55.95A31.996 31.996 0 0 0 576 394.34V48.02c0-11.32-11.43-19.06-21.94-14.86z" ], + "map-marked": [ 576, 512, [], "f59f", "M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z" ], + "map-marked-alt": [ 576, 512, [], "f5a0", "M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zm0 168c-23.2 0-42-18.8-42-42s18.8-42 42-42 42 18.8 42 42-18.8 42-42 42zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z" ], + "map-marker": [ 384, 512, [], "f041", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0z" ], + "map-marker-alt": [ 384, 512, [], "f3c5", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z" ], + "map-pin": [ 320, 512, [], "f276", "M192 300.813v172.82l-22.015 33.023c-4.75 7.125-15.219 7.125-19.969 0L128 473.633v-172.82a162.221 162.221 0 0 0 64 0zM160 0c79.529 0 144 64.471 144 144s-64.471 144-144 144S16 223.529 16 144 80.471 0 160 0M80 136c0-39.701 32.299-72 72-72a8 8 0 0 0 0-16c-48.523 0-88 39.477-88 88a8 8 0 0 0 16 0z" ], + "map-signs": [ 512, 512, [], "f277", "M487.515 104.485L439.03 152.97a23.998 23.998 0 0 1-16.97 7.029H56c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h160v-8c0-13.255 10.745-24 24-24h32c13.255 0 24 10.745 24 24v8h126.059a24 24 0 0 1 16.97 7.029l48.485 48.485c4.687 4.687 4.687 12.285.001 16.971zM216 368v120c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V368h-80zm240-144H296v-48h-80v48H89.941a24 24 0 0 0-16.97 7.029l-48.485 48.485c-4.686 4.686-4.686 12.284 0 16.971l48.485 48.485a23.998 23.998 0 0 0 16.97 7.029H456c13.255 0 24-10.745 24-24v-80C480 234.745 469.255 224 456 224z" ], + marker: [ 512, 512, [], "f5a1", "M93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l75.4-75.4-128.02-128.02-75.4 75.4zM485.49 26.51c-35.35-35.35-92.67-35.35-128.02 0l-21.76 21.76-36.56-36.55c-15.62-15.62-40.95-15.62-56.56 0L138.47 115.84c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0l87.15-87.15 19.59 19.59L191.98 192 320 320.02l165.49-165.49c35.35-35.35 35.35-92.66 0-128.02z" ], + mars: [ 384, 512, [], "f222", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c0-6.6-5.4-12-12-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" ], + "mars-double": [ 512, 512, [], "f227", "M340 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C198.5 72.1 172.2 64 144 64 64.5 64 0 128.5 0 208s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.5 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 288c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80zm356-128.1h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7c-18.2-11.4-39-18.9-61.5-21.3-2.1 21.8-8.2 43.3-18.4 63.3 1.1 0 2.2-.1 3.2-.1 44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80c0-1.1 0-2.2.1-3.2-20 10.2-41.5 16.4-63.3 18.4C168.4 455.6 229.6 512 304 512c79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12v-79c0-6.7-5.4-12.1-12-12.1z" ], + "mars-stroke": [ 384, 512, [], "f229", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-17.5 17.5-14.1-14.1c-4.7-4.7-12.3-4.7-17 0L224.5 133c-4.7 4.7-4.7 12.3 0 17l14.1 14.1-18 18c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l18-18 14.1 14.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L329.2 164l17.5-17.5 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c-.1-6.6-5.5-12-12.1-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" ], + "mars-stroke-h": [ 480, 512, [], "f22b", "M476.2 247.5l-55.9-55.9c-7.6-7.6-20.5-2.2-20.5 8.5V224H376v-20c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v20h-27.6c-5.8-25.6-18.7-49.9-38.6-69.8C189.6 98 98.4 98 42.2 154.2c-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 19.9-19.9 32.8-44.2 38.6-69.8H312v20c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-20h23.9v23.9c0 10.7 12.9 16 20.5 8.5l55.9-55.9c4.6-4.7 4.6-12.3-.1-17zm-275.6 65.1c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z" ], + "mars-stroke-v": [ 288, 512, [], "f22a", "M245.8 234.2c-19.9-19.9-44.2-32.8-69.8-38.6v-25.4h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V81.4h23.9c10.7 0 16-12.9 8.5-20.5L152.5 5.1c-4.7-4.7-12.3-4.7-17 0L79.6 61c-7.6 7.6-2.2 20.5 8.5 20.5H112v24.7H92c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h20v25.4c-25.6 5.8-49.9 18.7-69.8 38.6-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 56.3-56.2 56.3-147.4 0-203.6zm-45.2 158.4c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z" ], + medal: [ 512, 512, [], "f5a2", "M223.75 130.75L154.62 15.54A31.997 31.997 0 0 0 127.18 0H16.03C3.08 0-4.5 14.57 2.92 25.18l111.27 158.96c29.72-27.77 67.52-46.83 109.56-53.39zM495.97 0H384.82c-11.24 0-21.66 5.9-27.44 15.54l-69.13 115.21c42.04 6.56 79.84 25.62 109.56 53.38L509.08 25.18C516.5 14.57 508.92 0 495.97 0zM256 160c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm92.52 157.26l-37.93 36.96 8.97 52.22c1.6 9.36-8.26 16.51-16.65 12.09L256 393.88l-46.9 24.65c-8.4 4.45-18.25-2.74-16.65-12.09l8.97-52.22-37.93-36.96c-6.82-6.64-3.05-18.23 6.35-19.59l52.43-7.64 23.43-47.52c2.11-4.28 6.19-6.39 10.28-6.39 4.11 0 8.22 2.14 10.33 6.39l23.43 47.52 52.43 7.64c9.4 1.36 13.17 12.95 6.35 19.59z" ], + medkit: [ 512, 512, [], "f0fa", "M96 480h320V128h-32V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v48H96v352zm96-384h128v32H192V96zm320 80v256c0 26.51-21.49 48-48 48h-16V128h16c26.51 0 48 21.49 48 48zM64 480H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v352zm288-208v32c0 8.837-7.163 16-16 16h-48v48c0 8.837-7.163 16-16 16h-32c-8.837 0-16-7.163-16-16v-48h-48c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h48v-48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v48h48c8.837 0 16 7.163 16 16z" ], + meh: [ 496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm176 192H152c-21.2 0-21.2-32 0-32h192c21.2 0 21.2 32 0 32zm-16-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + "meh-blank": [ 496, 512, [], "f5a4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + "meh-rolling-eyes": [ 496, 512, [], "f5a5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 224c0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64s-64-28.7-64-64zm224 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-112c-35.3 0-64-28.7-64-64 0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64z" ], + memory: [ 640, 512, [], "f538", "M640 130.94V96c0-17.67-14.33-32-32-32H32C14.33 64 0 78.33 0 96v34.94c18.6 6.61 32 24.19 32 45.06s-13.4 38.45-32 45.06V320h640v-98.94c-18.6-6.61-32-24.19-32-45.06s13.4-38.45 32-45.06zM224 256h-64V128h64v128zm128 0h-64V128h64v128zm128 0h-64V128h64v128zM0 448h64v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h64v-96H0v96z" ], + mercury: [ 288, 512, [], "f223", "M288 208c0-44.2-19.9-83.7-51.2-110.1 2.5-1.8 4.9-3.8 7.2-5.8 24.7-21.2 39.8-48.8 43.2-78.8.9-7.1-4.7-13.3-11.9-13.3h-40.5C229 0 224.1 4.1 223 9.8c-2.4 12.5-9.6 24.3-20.7 33.8C187 56.8 166.3 64 144 64s-43-7.2-58.4-20.4C74.5 34.1 67.4 22.3 64.9 9.8 63.8 4.1 58.9 0 53.2 0H12.7C5.5 0-.1 6.2.8 13.3 4.2 43.4 19.2 71 44 92.2c2.3 2 4.7 3.9 7.2 5.8C19.9 124.3 0 163.8 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z" ], + microchip: [ 512, 512, [], "f2db", "M416 48v416c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h224c26.51 0 48 21.49 48 48zm96 58v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42V88h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zM30 376h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6z" ], + microphone: [ 352, 512, [], "f130", "M176 352c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96zm160-160h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16z" ], + "microphone-alt": [ 352, 512, [], "f3c9", "M336 192h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16zM176 352c53.02 0 96-42.98 96-96h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96z" ], + "microphone-alt-slash": [ 640, 512, [], "f539", "M633.82 458.1L476.26 336.33C488.74 312.21 496 284.98 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67h-43.67l-41.4-32H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.78c11.71-1.62 23.1-4.28 33.96-8.08l-50.4-38.96c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z" ], + "microphone-slash": [ 640, 512, [], "f131", "M633.82 458.1l-157.8-121.96C488.61 312.13 496 285.01 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67V96c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.77c11.66-1.6 22.85-4.54 33.67-8.31l-50.11-38.73c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z" ], + minus: [ 448, 512, [], "f068", "M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" ], + "minus-circle": [ 512, 512, [], "f056", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM124 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H124z" ], + "minus-square": [ 448, 512, [], "f146", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H92z" ], + mobile: [ 320, 512, [], "f10b", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + "mobile-alt": [ 320, 512, [], "f3cd", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm112-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v312z" ], + "money-bill": [ 640, 512, [], "f0d6", "M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 176c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 48h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z" ], + "money-bill-alt": [ 640, 512, [], "f3d1", "M352 288h-16v-88c0-4.42-3.58-8-8-8h-13.58c-4.74 0-9.37 1.4-13.31 4.03l-15.33 10.22a7.994 7.994 0 0 0-2.22 11.09l8.88 13.31a7.994 7.994 0 0 0 11.09 2.22l.47-.31V288h-16c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8h64c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 192c-53.02 0-96-50.15-96-112 0-61.86 42.98-112 96-112s96 50.14 96 112c0 61.87-43 112-96 112zm272 32h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z" ], + "money-bill-wave": [ 640, 512, [], "f53a", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM48 132.22c20.12 5.04 41.12 7.57 62.72 8.93C104.84 170.54 79 192.69 48 192.69v-60.47zm0 285v-47.78c34.37 0 62.18 27.27 63.71 61.4-22.53-1.81-43.59-6.31-63.71-13.62zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 27.78c-17.52-4.39-35.71-6.85-54.32-8.44 5.87-26.08 27.5-45.88 54.32-49.28v57.72zm0-236.11c-30.89-3.91-54.86-29.7-55.81-61.55 19.54 2.17 38.09 6.23 55.81 12.66v48.89z" ], + "money-bill-wave-alt": [ 640, 512, [], "f53b", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96z" ], + "money-check": [ 640, 512, [], "f53c", "M0 448c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128H0v320zm448-208c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-32zm0 120c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H456c-4.42 0-8-3.58-8-8v-16zM64 264c0-4.42 3.58-8 8-8h304c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm0 96c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zM624 32H16C7.16 32 0 39.16 0 48v48h640V48c0-8.84-7.16-16-16-16z" ], + "money-check-alt": [ 640, 512, [], "f53d", "M608 32H32C14.33 32 0 46.33 0 64v384c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM176 327.88V344c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V152c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07zM416 312c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm160 0c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h272c4.42 0 8 3.58 8 8v16z" ], + monument: [ 384, 512, [], "f5a6", "M368 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h352c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-78.86-347.26a31.97 31.97 0 0 0-9.21-19.44L203.31 4.69c-6.25-6.25-16.38-6.25-22.63 0l-76.6 76.61a31.97 31.97 0 0 0-9.21 19.44L64 416h256l-30.86-315.26zM240 307.2c0 6.4-6.4 12.8-12.8 12.8h-70.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h70.4c6.4 0 12.8 6.4 12.8 12.8v38.4z" ], + moon: [ 512, 512, [], "f186", "M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z" ], + "mortar-pestle": [ 512, 512, [], "f5a7", "M501.54 60.91c17.22-17.22 12.51-46.25-9.27-57.14a35.696 35.696 0 0 0-37.37 3.37L251.09 160h151.37l99.08-99.09zM496 192H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c0 80.98 50.2 150.11 121.13 178.32-12.76 16.87-21.72 36.8-24.95 58.69-1.46 9.92 6.04 18.98 16.07 18.98h223.5c10.03 0 17.53-9.06 16.07-18.98-3.22-21.89-12.18-41.82-24.95-58.69C429.8 406.11 480 336.98 480 256h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" ], + motorcycle: [ 640, 512, [], "f21c", "M512.949 192.003c-14.862-.108-29.14 2.322-42.434 6.874L437.589 144H520c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24h-45.311a24 24 0 0 0-17.839 7.945l-37.496 41.663-22.774-37.956A24 24 0 0 0 376 64h-80c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h66.411l19.2 32H227.904c-17.727-23.073-44.924-40-99.904-40H72.54c-13.455 0-24.791 11.011-24.536 24.464C48.252 141.505 58.9 152 72 152h56c24.504 0 38.686 10.919 47.787 24.769l-11.291 20.529c-13.006-3.865-26.871-5.736-41.251-5.21C55.857 194.549 1.565 249.605.034 317.021-1.603 389.076 56.317 448 128 448c59.642 0 109.744-40.794 123.953-96h84.236c13.673 0 24.589-11.421 23.976-25.077-2.118-47.12 17.522-93.665 56.185-125.026l12.485 20.808c-27.646 23.654-45.097 58.88-44.831 98.179.47 69.556 57.203 126.452 126.758 127.11 71.629.678 129.839-57.487 129.234-129.099-.588-69.591-57.455-126.386-127.047-126.892zM128 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c4.242 0 8.405.341 12.469.982L98.97 316.434C90.187 332.407 101.762 352 120 352h81.297c-12.37 28.225-40.56 48-73.297 48zm388.351-.116C470.272 402.337 432 365.554 432 320c0-21.363 8.434-40.781 22.125-55.144l49.412 82.352c4.546 7.577 14.375 10.034 21.952 5.488l13.72-8.232c7.577-4.546 10.034-14.375 5.488-21.952l-48.556-80.927A80.005 80.005 0 0 1 512 240c45.554 0 82.338 38.273 79.884 84.352-2.16 40.558-34.974 73.372-75.533 75.532z" ], + "mouse-pointer": [ 320, 512, [], "f245", "M302.189 329.126H196.105l55.831 135.993c3.889 9.428-.555 19.999-9.444 23.999l-49.165 21.427c-9.165 4-19.443-.571-23.332-9.714l-53.053-129.136-86.664 89.138C18.729 472.71 0 463.554 0 447.977V18.299C0 1.899 19.921-6.096 30.277 5.443l284.412 292.542c11.472 11.179 3.007 31.141-12.5 31.141z" ], + music: [ 512, 512, [], "f001", "M470.4 1.5l-304 96C153.1 101.7 144 114 144 128v264.6c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V220.5l272-85.9v194c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V32c0-21.7-21.1-37-41.6-30.5z" ], + neuter: [ 288, 512, [], "f22c", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V468c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V316.4c64.1-14.5 112-71.9 112-140.4zm-144 80c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" ], + newspaper: [ 576, 512, [], "f1ea", "M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z" ], + "not-equal": [ 448, 512, [], "f53e", "M416 208c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32h-23.88l51.87-66.81c5.37-7.02 4.04-17.06-2.97-22.43L415.61 3.3c-7.02-5.38-17.06-4.04-22.44 2.97L311.09 112H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h204.56l-74.53 96H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h55.49l-51.87 66.81c-5.37 7.01-4.04 17.05 2.97 22.43L64 508.7c7.02 5.38 17.06 4.04 22.43-2.97L168.52 400H416c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32H243.05l74.53-96H416z" ], + "notes-medical": [ 384, 512, [], "f481", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm96 304c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm0-192c0 4.4-3.6 8-8 8H104c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16z" ], + "object-group": [ 512, 512, [], "f247", "M480 128V96h20c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v20H64V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v40c0 6.627 5.373 12 12 12h20v320H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-20h384v20c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-20V128zM96 276V140c0-6.627 5.373-12 12-12h168c6.627 0 12 5.373 12 12v136c0 6.627-5.373 12-12 12H108c-6.627 0-12-5.373-12-12zm320 96c0 6.627-5.373 12-12 12H236c-6.627 0-12-5.373-12-12v-52h72c13.255 0 24-10.745 24-24v-72h84c6.627 0 12 5.373 12 12v136z" ], + "object-ungroup": [ 576, 512, [], "f248", "M64 320v26a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6v-52a6 6 0 0 1 6-6h26V96H6a6 6 0 0 1-6-6V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v26h288V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-26v192h26a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-52a6 6 0 0 1-6-6v-26H64zm480-64v-32h26a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-52a6 6 0 0 0-6 6v26H408v72h8c13.255 0 24 10.745 24 24v64c0 13.255-10.745 24-24 24h-64c-13.255 0-24-10.745-24-24v-8H192v72h-26a6 6 0 0 0-6 6v52a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-26h288v26a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-26V256z" ], + outdent: [ 448, 512, [], "f03b", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm208 144h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm192-128h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM4.687 267.313l96 95.984C110.734 373.348 128 366.224 128 351.984V160.008c0-14.329-17.325-21.304-27.313-11.313l-96 95.992c-6.249 6.248-6.249 16.378 0 22.626z" ], + "paint-brush": [ 512, 512, [], "f1fc", "M167.02 309.34c-40.12 2.58-76.53 17.86-97.19 72.3-2.35 6.21-8 9.98-14.59 9.98-11.11 0-45.46-27.67-55.25-34.35C0 439.62 37.93 512 128 512c75.86 0 128-43.77 128-120.19 0-3.11-.65-6.08-.97-9.13l-88.01-73.34zM457.89 0c-15.16 0-29.37 6.71-40.21 16.45C213.27 199.05 192 203.34 192 257.09c0 13.7 3.25 26.76 8.73 38.7l63.82 53.18c7.21 1.8 14.64 3.03 22.39 3.03 62.11 0 98.11-45.47 211.16-256.46 7.38-14.35 13.9-29.85 13.9-45.99C512 20.64 486 0 457.89 0z" ], + "paint-roller": [ 512, 512, [], "f5aa", "M416 128V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32h352c17.67 0 32-14.33 32-32zm32-64v128c0 17.67-14.33 32-32 32H256c-35.35 0-64 28.65-64 64v32c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32v-32h160c53.02 0 96-42.98 96-96v-64c0-35.35-28.65-64-64-64z" ], + palette: [ 512, 512, [], "f53f", "M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + pallet: [ 640, 512, [], "f482", "M144 256h352c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H384v128l-64-32-64 32V0H144c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16zm480 128c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v64H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-64h48zm-336 64H128v-64h160v64zm224 0H352v-64h160v64z" ], + "paper-plane": [ 512, 512, [], "f1d8", "M476 3.2L12.5 270.6c-18.1 10.4-15.8 35.6 2.2 43.2L121 358.4l287.3-253.2c5.5-4.9 13.3 2.6 8.6 8.3L176 407v80.5c0 23.6 28.5 32.9 42.5 15.8L282 426l124.6 52.2c14.2 6 30.4-2.9 33-18.2l72-432C515 7.8 493.3-6.8 476 3.2z" ], + paperclip: [ 448, 512, [], "f0c6", "M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z" ], + "parachute-box": [ 512, 512, [], "f4cd", "M511.9 175c-9.1-75.6-78.4-132.4-158.3-158.7C390 55.7 416 116.9 416 192h28.1L327.5 321.5c-2.5-.6-4.8-1.5-7.5-1.5h-48V192h112C384 76.8 315.1 0 256 0S128 76.8 128 192h112v128h-48c-2.7 0-5 .9-7.5 1.5L67.9 192H96c0-75.1 26-136.3 62.4-175.7C78.5 42.7 9.2 99.5.1 175c-1.1 9.1 6.8 17 16 17h8.7l136.7 151.9c-.7 2.6-1.6 5.2-1.6 8.1v128c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32V352c0-2.9-.9-5.4-1.6-8.1L487.1 192h8.7c9.3 0 17.2-7.8 16.1-17z" ], + paragraph: [ 448, 512, [], "f1dd", "M408 32H177.531C88.948 32 16.045 103.335 16 191.918 15.956 280.321 87.607 352 176 352v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h32v344c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h40c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24z" ], + parking: [ 448, 512, [], "f540", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM240 320h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h96c52.9 0 96 43.1 96 96s-43.1 96-96 96zm0-128h-48v64h48c17.6 0 32-14.4 32-32s-14.4-32-32-32z" ], + passport: [ 448, 512, [], "f5ab", "M129.62 176h39.09c1.49-27.03 6.54-51.35 14.21-70.41-27.71 13.24-48.02 39.19-53.3 70.41zm0 32c5.29 31.22 25.59 57.17 53.3 70.41-7.68-19.06-12.72-43.38-14.21-70.41h-39.09zM224 286.69c7.69-7.45 20.77-34.42 23.43-78.69h-46.87c2.67 44.26 15.75 71.24 23.44 78.69zM200.57 176h46.87c-2.66-44.26-15.74-71.24-23.43-78.69-7.7 7.45-20.78 34.43-23.44 78.69zm64.51 102.41c27.71-13.24 48.02-39.19 53.3-70.41h-39.09c-1.49 27.03-6.53 51.35-14.21 70.41zM416 0H64C28.65 0 0 28.65 0 64v384c0 35.35 28.65 64 64 64h352c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32zm-80 416H112c-8.8 0-16-7.2-16-16s7.2-16 16-16h224c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-112-96c-70.69 0-128-57.31-128-128S153.31 64 224 64s128 57.31 128 128-57.31 128-128 128zm41.08-214.41c7.68 19.06 12.72 43.38 14.21 70.41h39.09c-5.28-31.22-25.59-57.17-53.3-70.41z" ], + paste: [ 448, 512, [], "f0ea", "M128 184c0-30.879 25.122-56 56-56h136V56c0-13.255-10.745-24-24-24h-80.61C204.306 12.89 183.637 0 160 0s-44.306 12.89-55.39 32H24C10.745 32 0 42.745 0 56v336c0 13.255 10.745 24 24 24h104V184zm32-144c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24zm184 248h104v200c0 13.255-10.745 24-24 24H184c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.059V256h-96v-96h6.059a24 24 0 0 1 16.97 7.029l65.941 65.941a24.002 24.002 0 0 1 7.03 16.971z" ], + pause: [ 448, 512, [], "f04c", "M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z" ], + "pause-circle": [ 512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-16 328c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160zm112 0c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160z" ], + paw: [ 512, 512, [], "f1b0", "M85.231 330.958C36 330.958 0 273.792 0 231.5c0-28.292 16-58.042 49.538-58.042 49.231 0 85.231 57.458 85.231 99.75 0 28.292-15.692 57.75-49.538 57.75zm348 106.167c0 37.042-32 42.875-63.385 42.875-41.231 0-74.462-26.25-113.846-26.25-41.231 0-76.308 25.958-120.923 25.958-29.847 0-56.308-9.625-56.308-42.583C78.769 368 180.616 265.333 256 265.333s177.231 102.959 177.231 171.792zM182.462 203.792c-49.847 0-80-59.5-80-100.333C102.462 70.792 120.308 32 160 32c50.154 0 80 59.5 80 100.333 0 32.667-17.846 71.459-57.538 71.459zM272 132.333C272 91.5 301.846 32 352 32c39.692 0 57.539 38.792 57.539 71.458 0 40.833-30.154 100.333-80.001 100.333C289.846 203.792 272 165 272 132.333zM512 231.5c0 42.292-36 99.458-85.231 99.458-33.847 0-49.538-29.458-49.538-57.75 0-42.291 35.999-99.75 85.231-99.75C496 173.458 512 203.208 512 231.5z" ], + pen: [ 512, 512, [], "f304", "M290.74 93.24l128.02 128.02-277.99 277.99-114.14 12.6C11.35 513.54-1.56 500.62.14 485.34l12.7-114.22 277.9-277.88zm207.2-19.06l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.76 18.75-49.16 0-67.91z" ], + "pen-alt": [ 512, 512, [], "f305", "M497.94 74.17l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91zm-246.8-20.53c-15.62-15.62-40.94-15.62-56.56 0L75.8 172.43c-6.25 6.25-6.25 16.38 0 22.62l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l101.82-101.82 22.63 22.62L93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l196.79-196.79-82.77-82.77-84.85-84.85z" ], + "pen-fancy": [ 512, 512, [], "f5ac", "M79.18 282.94a32.005 32.005 0 0 0-20.24 20.24L0 480l4.69 4.69 92.89-92.89c-.66-2.56-1.57-5.03-1.57-7.8 0-17.67 14.33-32 32-32s32 14.33 32 32-14.33 32-32 32c-2.77 0-5.24-.91-7.8-1.57l-92.89 92.89L32 512l176.82-58.94a31.983 31.983 0 0 0 20.24-20.24l33.07-84.07-98.88-98.88-84.07 33.07zM369.25 28.32L186.14 227.81l97.85 97.85 199.49-183.11C568.4 67.48 443.73-55.94 369.25 28.32z" ], + "pen-nib": [ 512, 512, [], "f5ad", "M136.6 138.79a64.003 64.003 0 0 0-43.31 41.35L0 460l14.69 14.69L164.8 324.58c-2.99-6.26-4.8-13.18-4.8-20.58 0-26.51 21.49-48 48-48s48 21.49 48 48-21.49 48-48 48c-7.4 0-14.32-1.81-20.58-4.8L37.31 497.31 52 512l279.86-93.29a64.003 64.003 0 0 0 41.35-43.31L416 224 288 96l-151.4 42.79zm361.34-64.62l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91z" ], + "pen-square": [ 448, 512, [], "f14b", "M400 480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zM238.1 177.9L102.4 313.6l-6.3 57.1c-.8 7.6 5.6 14.1 13.3 13.3l57.1-6.3L302.2 242c2.3-2.3 2.3-6.1 0-8.5L246.7 178c-2.5-2.4-6.3-2.4-8.6-.1zM345 165.1L314.9 135c-9.4-9.4-24.6-9.4-33.9 0l-23.1 23.1c-2.3 2.3-2.3 6.1 0 8.5l55.5 55.5c2.3 2.3 6.1 2.3 8.5 0L345 199c9.3-9.3 9.3-24.5 0-33.9z" ], + "pencil-alt": [ 512, 512, [], "f303", "M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z" ], + "pencil-ruler": [ 512, 512, [], "f5ae", "M109.46 244.04l134.58-134.56-44.12-44.12-61.68 61.68a7.919 7.919 0 0 1-11.21 0l-11.21-11.21c-3.1-3.1-3.1-8.12 0-11.21l61.68-61.68-33.64-33.65C131.47-3.1 111.39-3.1 99 9.29L9.29 99c-12.38 12.39-12.39 32.47 0 44.86l100.17 100.18zm388.47-116.8c18.76-18.76 18.75-49.17 0-67.93l-45.25-45.25c-18.76-18.76-49.18-18.76-67.95 0l-46.02 46.01 113.2 113.2 46.02-46.03zM316.08 82.71l-297 296.96L.32 487.11c-2.53 14.49 10.09 27.11 24.59 24.56l107.45-18.84L429.28 195.9 316.08 82.71zm186.63 285.43l-33.64-33.64-61.68 61.68c-3.1 3.1-8.12 3.1-11.21 0l-11.21-11.21c-3.09-3.1-3.09-8.12 0-11.21l61.68-61.68-44.14-44.14L267.93 402.5l100.21 100.2c12.39 12.39 32.47 12.39 44.86 0l89.71-89.7c12.39-12.39 12.39-32.47 0-44.86z" ], + "people-carry": [ 640, 512, [], "f4ce", "M128 96c26.5 0 48-21.5 48-48S154.5 0 128 0 80 21.5 80 48s21.5 48 48 48zm384 0c26.5 0 48-21.5 48-48S538.5 0 512 0s-48 21.5-48 48 21.5 48 48 48zm125.7 372.1l-44-110-41.1 46.4-2 18.2 27.7 69.2c5 12.5 17 20.1 29.7 20.1 4 0 8-.7 11.9-2.3 16.4-6.6 24.4-25.2 17.8-41.6zm-34.2-209.8L585 178.1c-4.6-20-18.6-36.8-37.5-44.9-18.5-8-39-6.7-56.1 3.3-22.7 13.4-39.7 34.5-48.1 59.4L432 229.8 416 240v-96c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16v96l-16.1-10.2-11.3-33.9c-8.3-25-25.4-46-48.1-59.4-17.2-10-37.6-11.3-56.1-3.3-18.9 8.1-32.9 24.9-37.5 44.9l-18.4 80.2c-4.6 20 .7 41.2 14.4 56.7l67.2 75.9 10.1 92.6C130 499.8 143.8 512 160 512c1.2 0 2.3-.1 3.5-.2 17.6-1.9 30.2-17.7 28.3-35.3l-10.1-92.8c-1.5-13-6.9-25.1-15.6-35l-43.3-49 17.6-70.3 6.8 20.4c4.1 12.5 11.9 23.4 24.5 32.6l51.1 32.5c4.6 2.9 12.1 4.6 17.2 5h160c5.1-.4 12.6-2.1 17.2-5l51.1-32.5c12.6-9.2 20.4-20 24.5-32.6l6.8-20.4 17.6 70.3-43.3 49c-8.7 9.9-14.1 22-15.6 35l-10.1 92.8c-1.9 17.6 10.8 33.4 28.3 35.3 1.2.1 2.3.2 3.5.2 16.1 0 30-12.1 31.8-28.5l10.1-92.6 67.2-75.9c13.6-15.5 19-36.7 14.4-56.7zM46.3 358.1l-44 110c-6.6 16.4 1.4 35 17.8 41.6 16.8 6.6 35.1-1.7 41.6-17.8l27.7-69.2-2-18.2-41.1-46.4z" ], + percent: [ 448, 512, [], "f295", "M112 224c61.9 0 112-50.1 112-112S173.9 0 112 0 0 50.1 0 112s50.1 112 112 112zm0-160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm224 224c-61.9 0-112 50.1-112 112s50.1 112 112 112 112-50.1 112-112-50.1-112-112-112zm0 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zM392.3.2l31.6-.1c19.4-.1 30.9 21.8 19.7 37.8L77.4 501.6a23.95 23.95 0 0 1-19.6 10.2l-33.4.1c-19.5 0-30.9-21.9-19.7-37.8l368-463.7C377.2 4 384.5.2 392.3.2z" ], + percentage: [ 384, 512, [], "f541", "M109.25 173.25c24.99-24.99 24.99-65.52 0-90.51-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 25 25 65.52 25 90.51 0zm256 165.49c-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 24.99 24.99 65.52 24.99 90.51 0 25-24.99 25-65.51 0-90.51zm-1.94-231.43l-22.62-22.62c-12.5-12.5-32.76-12.5-45.25 0L20.69 359.44c-12.5 12.5-12.5 32.76 0 45.25l22.62 22.62c12.5 12.5 32.76 12.5 45.25 0l274.75-274.75c12.5-12.49 12.5-32.75 0-45.25z" ], + phone: [ 512, 512, [], "f095", "M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z" ], + "phone-slash": [ 640, 512, [], "f3dd", "M268.2 381.4l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48c-10.7 4.6-16.5 16.1-13.9 27.5l24 104c2.5 10.8 12.1 18.6 23.4 18.6 100.7 0 193.7-32.4 269.7-86.9l-80-61.8c-10.9 6.5-22.1 12.7-33.6 18.1zm365.6 76.7L475.1 335.5C537.9 256.4 576 156.9 576 48c0-11.2-7.7-20.9-18.6-23.4l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-12.2 26.1-27.9 50.3-46 72.8L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z" ], + "phone-square": [ 448, 512, [], "f098", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM94 416c-7.033 0-13.057-4.873-14.616-11.627l-14.998-65a15 15 0 0 1 8.707-17.16l69.998-29.999a15 15 0 0 1 17.518 4.289l30.997 37.885c48.944-22.963 88.297-62.858 110.781-110.78l-37.886-30.997a15.001 15.001 0 0 1-4.289-17.518l30-69.998a15 15 0 0 1 17.16-8.707l65 14.998A14.997 14.997 0 0 1 384 126c0 160.292-129.945 290-290 290z" ], + "phone-volume": [ 384, 512, [], "f2a0", "M97.333 506.966c-129.874-129.874-129.681-340.252 0-469.933 5.698-5.698 14.527-6.632 21.263-2.422l64.817 40.513a17.187 17.187 0 0 1 6.849 20.958l-32.408 81.021a17.188 17.188 0 0 1-17.669 10.719l-55.81-5.58c-21.051 58.261-20.612 122.471 0 179.515l55.811-5.581a17.188 17.188 0 0 1 17.669 10.719l32.408 81.022a17.188 17.188 0 0 1-6.849 20.958l-64.817 40.513a17.19 17.19 0 0 1-21.264-2.422zM247.126 95.473c11.832 20.047 11.832 45.008 0 65.055-3.95 6.693-13.108 7.959-18.718 2.581l-5.975-5.726c-3.911-3.748-4.793-9.622-2.261-14.41a32.063 32.063 0 0 0 0-29.945c-2.533-4.788-1.65-10.662 2.261-14.41l5.975-5.726c5.61-5.378 14.768-4.112 18.718 2.581zm91.787-91.187c60.14 71.604 60.092 175.882 0 247.428-4.474 5.327-12.53 5.746-17.552.933l-5.798-5.557c-4.56-4.371-4.977-11.529-.93-16.379 49.687-59.538 49.646-145.933 0-205.422-4.047-4.85-3.631-12.008.93-16.379l5.798-5.557c5.022-4.813 13.078-4.394 17.552.933zm-45.972 44.941c36.05 46.322 36.108 111.149 0 157.546-4.39 5.641-12.697 6.251-17.856 1.304l-5.818-5.579c-4.4-4.219-4.998-11.095-1.285-15.931 26.536-34.564 26.534-82.572 0-117.134-3.713-4.836-3.115-11.711 1.285-15.931l5.818-5.579c5.159-4.947 13.466-4.337 17.856 1.304z" ], + "piggy-bank": [ 576, 512, [], "f4d3", "M560 224h-29.5c-8.8-20-21.6-37.7-37.4-52.5L512 96h-32c-29.4 0-55.4 13.5-73 34.3-7.6-1.1-15.1-2.3-23-2.3H256c-77.4 0-141.9 55-156.8 128H56c-14.8 0-26.5-13.5-23.5-28.8C34.7 215.8 45.4 208 57 208h1c3.3 0 6-2.7 6-6v-20c0-3.3-2.7-6-6-6-28.5 0-53.9 20.4-57.5 48.6C-3.9 258.8 22.7 288 56 288h40c0 52.2 25.4 98.1 64 127.3V496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-48h128v48c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80.7c11.8-8.9 22.3-19.4 31.3-31.3H560c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16zm-128 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM256 96h128c5.4 0 10.7.4 15.9.8 0-.3.1-.5.1-.8 0-53-43-96-96-96s-96 43-96 96c0 2.1.5 4.1.6 6.2 15.2-3.9 31-6.2 47.4-6.2z" ], + pills: [ 576, 512, [], "f484", "M112 32C50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V144c0-61.9-50.1-112-112-112zm48 224H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm139.7-29.7c-3.5-3.5-9.4-3.1-12.3.8-45.3 62.5-40.4 150.1 15.9 206.4 56.3 56.3 143.9 61.2 206.4 15.9 4-2.9 4.3-8.8.8-12.3L299.7 226.3zm229.8-19c-56.3-56.3-143.9-61.2-206.4-15.9-4 2.9-4.3 8.8-.8 12.3l210.8 210.8c3.5 3.5 9.4 3.1 12.3-.8 45.3-62.6 40.5-150.1-15.9-206.4z" ], + plane: [ 576, 512, [], "f072", "M480 192H365.71L260.61 8.06A16.014 16.014 0 0 0 246.71 0h-65.5c-10.63 0-18.3 10.17-15.38 20.39L214.86 192H112l-43.2-57.6c-3.02-4.03-7.77-6.4-12.8-6.4H16.01C5.6 128-2.04 137.78.49 147.88L32 256 .49 364.12C-2.04 374.22 5.6 384 16.01 384H56c5.04 0 9.78-2.37 12.8-6.4L112 320h102.86l-49.03 171.6c-2.92 10.22 4.75 20.4 15.38 20.4h65.5c5.74 0 11.04-3.08 13.89-8.06L365.71 320H480c35.35 0 96-28.65 96-64s-60.65-64-96-64z" ], + "plane-arrival": [ 640, 512, [], "f5af", "M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM44.81 205.66l88.74 80a62.607 62.607 0 0 0 25.47 13.93l287.6 78.35c26.48 7.21 54.56 8.72 81 1.36 29.67-8.27 43.44-21.21 47.25-35.71 3.83-14.5-1.73-32.71-23.37-54.96-19.28-19.82-44.35-32.79-70.83-40l-97.51-26.56L282.8 30.22c-1.51-5.81-5.95-10.35-11.66-11.91L206.05.58c-10.56-2.88-20.9 5.32-20.71 16.44l47.92 164.21-102.2-27.84-27.59-67.88c-1.93-4.89-6.01-8.57-11.02-9.93L52.72 64.75c-10.34-2.82-20.53 5-20.72 15.88l.23 101.78c.19 8.91 6.03 17.34 12.58 23.25z" ], + "plane-departure": [ 640, 512, [], "f5b0", "M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM80.55 341.27c6.28 6.84 15.1 10.72 24.33 10.71l130.54-.18a65.62 65.62 0 0 0 29.64-7.12l290.96-147.65c26.74-13.57 50.71-32.94 67.02-58.31 18.31-28.48 20.3-49.09 13.07-63.65-7.21-14.57-24.74-25.27-58.25-27.45-29.85-1.94-59.54 5.92-86.28 19.48l-98.51 49.99-218.7-82.06a17.799 17.799 0 0 0-18-1.11L90.62 67.29c-10.67 5.41-13.25 19.65-5.17 28.53l156.22 98.1-103.21 52.38-72.35-36.47a17.804 17.804 0 0 0-16.07.02L9.91 230.22c-10.44 5.3-13.19 19.12-5.57 28.08l76.21 82.97z" ], + play: [ 448, 512, [], "f04b", "M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z" ], + "play-circle": [ 512, 512, [], "f144", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z" ], + plug: [ 384, 512, [], "f1e6", "M256 144V32c0-17.673 14.327-32 32-32s32 14.327 32 32v112h-64zm112 16H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h16v32c0 77.406 54.969 141.971 128 156.796V512h64v-99.204c73.031-14.825 128-79.39 128-156.796v-32h16c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm-240-16V32c0-17.673-14.327-32-32-32S64 14.327 64 32v112h64z" ], + plus: [ 448, 512, [], "f067", "M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" ], + "plus-circle": [ 512, 512, [], "f055", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z" ], + "plus-square": [ 448, 512, [], "f0fe", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-32 252c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92H92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z" ], + podcast: [ 448, 512, [], "f2ce", "M267.429 488.563C262.286 507.573 242.858 512 224 512c-18.857 0-38.286-4.427-43.428-23.437C172.927 460.134 160 388.898 160 355.75c0-35.156 31.142-43.75 64-43.75s64 8.594 64 43.75c0 32.949-12.871 104.179-20.571 132.813zM156.867 288.554c-18.693-18.308-29.958-44.173-28.784-72.599 2.054-49.724 42.395-89.956 92.124-91.881C274.862 121.958 320 165.807 320 220c0 26.827-11.064 51.116-28.866 68.552-2.675 2.62-2.401 6.986.628 9.187 9.312 6.765 16.46 15.343 21.234 25.363 1.741 3.654 6.497 4.66 9.449 1.891 28.826-27.043 46.553-65.783 45.511-108.565-1.855-76.206-63.595-138.208-139.793-140.369C146.869 73.753 80 139.215 80 220c0 41.361 17.532 78.7 45.55 104.989 2.953 2.771 7.711 1.77 9.453-1.887 4.774-10.021 11.923-18.598 21.235-25.363 3.029-2.2 3.304-6.566.629-9.185zM224 0C100.204 0 0 100.185 0 224c0 89.992 52.602 165.647 125.739 201.408 4.333 2.118 9.267-1.544 8.535-6.31-2.382-15.512-4.342-30.946-5.406-44.339-.146-1.836-1.149-3.486-2.678-4.512-47.4-31.806-78.564-86.016-78.187-147.347.592-96.237 79.29-174.648 175.529-174.899C320.793 47.747 400 126.797 400 224c0 61.932-32.158 116.49-80.65 147.867-.999 14.037-3.069 30.588-5.624 47.23-.732 4.767 4.203 8.429 8.535 6.31C395.227 389.727 448 314.187 448 224 448 100.205 347.815 0 224 0zm0 160c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z" ], + poo: [ 512, 512, [], "f2fe", "M451.4 369.1C468.7 356 480 335.4 480 312c0-39.8-32.2-72-72-72h-14.1c13.4-11.7 22.1-28.8 22.1-48 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C250.3 14.6 256 30.6 256 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 19.2 8.7 36.3 22.1 48H104c-39.8 0-72 32.2-72 72 0 23.4 11.3 44 28.6 57.1C26.3 374.6 0 404.1 0 440c0 39.8 32.2 72 72 72h368c39.8 0 72-32.2 72-72 0-35.9-26.3-65.4-60.6-70.9zM192 256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm159.5 139C341 422.9 293 448 256 448s-85-25.1-95.5-53c-2-5.3 2-11 7.8-11h175.4c5.8 0 9.8 5.7 7.8 11zM320 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + portrait: [ 384, 512, [], "f3e0", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM192 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 384 80 375.4 80 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z" ], + "pound-sign": [ 320, 512, [], "f154", "M308 352h-45.495c-6.627 0-12 5.373-12 12v50.848H128V288h84c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-84v-63.556c0-32.266 24.562-57.086 61.792-57.086 23.658 0 45.878 11.505 57.652 18.849 5.151 3.213 11.888 2.051 15.688-2.685l28.493-35.513c4.233-5.276 3.279-13.005-2.119-17.081C273.124 54.56 236.576 32 187.931 32 106.026 32 48 84.742 48 157.961V224H20c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h28v128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12V364c0-6.627-5.373-12-12-12z" ], + "power-off": [ 512, 512, [], "f011", "M400 54.1c63 45 104 118.6 104 201.9 0 136.8-110.8 247.7-247.5 248C120 504.3 8.2 393 8 256.4 7.9 173.1 48.9 99.3 111.8 54.2c11.7-8.3 28-4.8 35 7.7L162.6 90c5.9 10.5 3.1 23.8-6.6 31-41.5 30.8-68 79.6-68 134.9-.1 92.3 74.5 168.1 168 168.1 91.6 0 168.6-74.2 168-169.1-.3-51.8-24.7-101.8-68.1-134-9.7-7.2-12.4-20.5-6.5-30.9l15.8-28.1c7-12.4 23.2-16.1 34.8-7.8zM296 264V24c0-13.3-10.7-24-24-24h-32c-13.3 0-24 10.7-24 24v240c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24z" ], + prescription: [ 384, 512, [], "f5b1", "M301.26 352l78.06-78.06c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0L256 306.74l-83.96-83.96C219.31 216.8 256 176.89 256 128c0-53.02-42.98-96-96-96H16C7.16 32 0 39.16 0 48v256c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-80h18.75l128 128-78.06 78.06c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0L256 397.25l78.06 78.06c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63L301.26 352zM64 96h96c17.64 0 32 14.36 32 32s-14.36 32-32 32H64V96z" ], + "prescription-bottle": [ 384, 512, [], "f485", "M32 192h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v64zM360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24z" ], + "prescription-bottle-alt": [ 384, 512, [], "f486", "M360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24zM32 480c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v352zm64-184c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48z" ], + print: [ 512, 512, [], "f02f", "M464 192h-16V81.941a24 24 0 0 0-7.029-16.97L383.029 7.029A24 24 0 0 0 366.059 0H88C74.745 0 64 10.745 64 24v168H48c-26.51 0-48 21.49-48 48v132c0 6.627 5.373 12 12 12h52v104c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V384h52c6.627 0 12-5.373 12-12V240c0-26.51-21.49-48-48-48zm-80 256H128v-96h256v96zM128 224V64h192v40c0 13.2 10.8 24 24 24h40v96H128zm304 72c-13.254 0-24-10.746-24-24s10.746-24 24-24 24 10.746 24 24-10.746 24-24 24z" ], + procedures: [ 640, 512, [], "f487", "M528 224H272c-8.8 0-16 7.2-16 16v144H64V144c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v352c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h512v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-61.9-50.1-112-112-112zM136 96h126.1l27.6 55.2c5.9 11.8 22.7 11.8 28.6 0L368 51.8 390.1 96H512c8.8 0 16-7.2 16-16s-7.2-16-16-16H409.9L382.3 8.8C376.4-3 359.6-3 353.7 8.8L304 108.2l-19.9-39.8c-1.4-2.7-4.1-4.4-7.2-4.4H136c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm24 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z" ], + "project-diagram": [ 640, 512, [], "f542", "M384 320H256c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM192 32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v128c0 17.67 14.33 32 32 32h95.72l73.16 128.04C211.98 300.98 232.4 288 256 288h.28L192 175.51V128h224V64H192V32zM608 0H480c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32z" ], + "puzzle-piece": [ 576, 512, [], "f12e", "M519.442 288.651c-41.519 0-59.5 31.593-82.058 31.593C377.409 320.244 432 144 432 144s-196.288 80-196.288-3.297c0-35.827 36.288-46.25 36.288-85.985C272 19.216 243.885 0 210.539 0c-34.654 0-66.366 18.891-66.366 56.346 0 41.364 31.711 59.277 31.711 81.75C175.885 207.719 0 166.758 0 166.758v333.237s178.635 41.047 178.635-28.662c0-22.473-40-40.107-40-81.471 0-37.456 29.25-56.346 63.577-56.346 33.673 0 61.788 19.216 61.788 54.717 0 39.735-36.288 50.158-36.288 85.985 0 60.803 129.675 25.73 181.23 25.73 0 0-34.725-120.101 25.827-120.101 35.962 0 46.423 36.152 86.308 36.152C556.712 416 576 387.99 576 354.443c0-34.199-18.962-65.792-56.558-65.792z" ], + qrcode: [ 448, 512, [], "f029", "M0 224h192V32H0v192zM64 96h64v64H64V96zm192-64v192h192V32H256zm128 128h-64V96h64v64zM0 480h192V288H0v192zm64-128h64v64H64v-64zm352-64h32v128h-96v-32h-32v96h-64V288h96v32h64v-32zm0 160h32v32h-32v-32zm-64 0h32v32h-32v-32z" ], + question: [ 384, 512, [], "f128", "M202.021 0C122.202 0 70.503 32.703 29.914 91.026c-7.363 10.58-5.093 25.086 5.178 32.874l43.138 32.709c10.373 7.865 25.132 6.026 33.253-4.148 25.049-31.381 43.63-49.449 82.757-49.449 30.764 0 68.816 19.799 68.816 49.631 0 22.552-18.617 34.134-48.993 51.164-35.423 19.86-82.299 44.576-82.299 106.405V320c0 13.255 10.745 24 24 24h72.471c13.255 0 24-10.745 24-24v-5.773c0-42.86 125.268-44.645 125.268-160.627C377.504 66.256 286.902 0 202.021 0zM192 373.459c-38.196 0-69.271 31.075-69.271 69.271 0 38.195 31.075 69.27 69.271 69.27s69.271-31.075 69.271-69.271-31.075-69.27-69.271-69.27z" ], + "question-circle": [ 512, 512, [], "f059", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z" ], + quidditch: [ 640, 512, [], "f458", "M256.5 216.8L343.2 326s-16.6 102.4-76.6 150.1C206.7 523.8 0 510.2 0 510.2s3.8-23.1 11-55.4l94.6-112.2c4-4.7-.9-11.6-6.6-9.5l-60.4 22.1c14.4-41.7 32.7-80 54.6-97.5 59.9-47.8 163.3-40.9 163.3-40.9zm238 135c-44 0-79.8 35.8-79.8 79.9 0 44.1 35.7 79.9 79.8 79.9 44.1 0 79.8-35.8 79.8-79.9 0-44.2-35.8-79.9-79.8-79.9zM636.5 31L616.7 6c-5.5-6.9-15.5-8-22.4-2.6L361.8 181.3l-34.1-43c-5.1-6.4-15.1-5.2-18.6 2.2l-25.3 54.6 86.7 109.2 58.8-12.4c8-1.7 11.4-11.2 6.3-17.6l-34.1-42.9L634 53.5c6.9-5.5 8-15.6 2.5-22.5z" ], + "quote-left": [ 512, 512, [], "f10d", "M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z" ], + "quote-right": [ 512, 512, [], "f10e", "M464 32H336c-26.5 0-48 21.5-48 48v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48zm-288 0H48C21.5 32 0 53.5 0 80v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48z" ], + random: [ 512, 512, [], "f074", "M504.971 359.029c9.373 9.373 9.373 24.569 0 33.941l-80 79.984c-15.01 15.01-40.971 4.49-40.971-16.971V416h-58.785a12.004 12.004 0 0 1-8.773-3.812l-70.556-75.596 53.333-57.143L352 336h32v-39.981c0-21.438 25.943-31.998 40.971-16.971l80 79.981zM12 176h84l52.781 56.551 53.333-57.143-70.556-75.596A11.999 11.999 0 0 0 122.785 96H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12zm372 0v39.984c0 21.46 25.961 31.98 40.971 16.971l80-79.984c9.373-9.373 9.373-24.569 0-33.941l-80-79.981C409.943 24.021 384 34.582 384 56.019V96h-58.785a12.004 12.004 0 0 0-8.773 3.812L96 336H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h110.785c3.326 0 6.503-1.381 8.773-3.812L352 176h32z" ], + receipt: [ 384, 512, [], "f543", "M358.4 3.2L320 48 265.6 3.2a15.9 15.9 0 0 0-19.2 0L192 48 137.6 3.2a15.9 15.9 0 0 0-19.2 0L64 48 25.6 3.2C15-4.7 0 2.8 0 16v480c0 13.2 15 20.7 25.6 12.8L64 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L192 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L320 464l38.4 44.8c10.5 7.9 25.6.4 25.6-12.8V16c0-13.2-15-20.7-25.6-12.8zM320 360c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16z" ], + recycle: [ 512, 512, [], "f1b8", "M184.561 261.903c3.232 13.997-12.123 24.635-24.068 17.168l-40.736-25.455-50.867 81.402C55.606 356.273 70.96 384 96.012 384H148c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12H96.115c-75.334 0-121.302-83.048-81.408-146.88l50.822-81.388-40.725-25.448c-12.081-7.547-8.966-25.961 4.879-29.158l110.237-25.45c8.611-1.988 17.201 3.381 19.189 11.99l25.452 110.237zm98.561-182.915l41.289 66.076-40.74 25.457c-12.051 7.528-9 25.953 4.879 29.158l110.237 25.45c8.672 1.999 17.215-3.438 19.189-11.99l25.45-110.237c3.197-13.844-11.99-24.719-24.068-17.168l-40.687 25.424-41.263-66.082c-37.521-60.033-125.209-60.171-162.816 0l-17.963 28.766c-3.51 5.62-1.8 13.021 3.82 16.533l33.919 21.195c5.62 3.512 13.024 1.803 16.536-3.817l17.961-28.743c12.712-20.341 41.973-19.676 54.257-.022zM497.288 301.12l-27.515-44.065c-3.511-5.623-10.916-7.334-16.538-3.821l-33.861 21.159c-5.62 3.512-7.33 10.915-3.818 16.536l27.564 44.112c13.257 21.211-2.057 48.96-27.136 48.96H320V336.02c0-14.213-17.242-21.383-27.313-11.313l-80 79.981c-6.249 6.248-6.249 16.379 0 22.627l80 79.989C302.689 517.308 320 510.3 320 495.989V448h95.88c75.274 0 121.335-82.997 81.408-146.88z" ], + redo: [ 512, 512, [], "f01e", "M500.333 0h-47.411c-6.853 0-12.314 5.729-11.986 12.574l3.966 82.759C399.416 41.899 331.672 8 256.001 8 119.34 8 7.899 119.526 8 256.187 8.101 393.068 119.096 504 256 504c63.926 0 122.202-24.187 166.178-63.908 5.113-4.618 5.354-12.561.482-17.433l-33.971-33.971c-4.466-4.466-11.64-4.717-16.38-.543C341.308 415.448 300.606 432 256 432c-97.267 0-176-78.716-176-176 0-97.267 78.716-176 176-176 60.892 0 114.506 30.858 146.099 77.8l-101.525-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12z" ], + "redo-alt": [ 512, 512, [], "f2f9", "M256.455 8c66.269.119 126.437 26.233 170.859 68.685l35.715-35.715C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.75c-30.864-28.899-70.801-44.907-113.23-45.273-92.398-.798-170.283 73.977-169.484 169.442C88.764 348.009 162.184 424 256 424c41.127 0 79.997-14.678 110.629-41.556 4.743-4.161 11.906-3.908 16.368.553l39.662 39.662c4.872 4.872 4.631 12.815-.482 17.433C378.202 479.813 319.926 504 256 504 119.034 504 8.001 392.967 8 256.002 7.999 119.193 119.646 7.755 256.455 8z" ], + registered: [ 512, 512, [], "f25d", "M285.363 207.475c0 18.6-9.831 28.431-28.431 28.431h-29.876v-56.14h23.378c28.668 0 34.929 8.773 34.929 27.709zM504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM363.411 360.414c-46.729-84.825-43.299-78.636-44.702-80.98 23.432-15.172 37.945-42.979 37.945-74.486 0-54.244-31.5-89.252-105.498-89.252h-70.667c-13.255 0-24 10.745-24 24V372c0 13.255 10.745 24 24 24h22.567c13.255 0 24-10.745 24-24v-71.663h25.556l44.129 82.937a24.001 24.001 0 0 0 21.188 12.727h24.464c18.261-.001 29.829-19.591 21.018-35.587z" ], + reply: [ 512, 512, [], "f3e5", "M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z" ], + "reply-all": [ 576, 512, [], "f122", "M136.309 189.836L312.313 37.851C327.72 24.546 352 35.348 352 56.015v82.763c129.182 10.231 224 52.212 224 183.548 0 61.441-39.582 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 38.512-123.162-3.922-169.482-112.59-182.015v84.175c0 20.701-24.3 31.453-39.687 18.164L136.309 226.164c-11.071-9.561-11.086-26.753 0-36.328zm-128 36.328L184.313 378.15C199.7 391.439 224 380.687 224 359.986v-15.818l-108.606-93.785A55.96 55.96 0 0 1 96 207.998a55.953 55.953 0 0 1 19.393-42.38L224 71.832V56.015c0-20.667-24.28-31.469-39.687-18.164L8.309 189.836c-11.086 9.575-11.071 26.767 0 36.328z" ], + retweet: [ 640, 512, [], "f079", "M629.657 343.598L528.971 444.284c-9.373 9.372-24.568 9.372-33.941 0L394.343 343.598c-9.373-9.373-9.373-24.569 0-33.941l10.823-10.823c9.562-9.562 25.133-9.34 34.419.492L480 342.118V160H292.451a24.005 24.005 0 0 1-16.971-7.029l-16-16C244.361 121.851 255.069 96 276.451 96H520c13.255 0 24 10.745 24 24v222.118l40.416-42.792c9.285-9.831 24.856-10.054 34.419-.492l10.823 10.823c9.372 9.372 9.372 24.569-.001 33.941zm-265.138 15.431A23.999 23.999 0 0 0 347.548 352H160V169.881l40.416 42.792c9.286 9.831 24.856 10.054 34.419.491l10.822-10.822c9.373-9.373 9.373-24.569 0-33.941L144.971 67.716c-9.373-9.373-24.569-9.373-33.941 0L10.343 168.402c-9.373 9.373-9.373 24.569 0 33.941l10.822 10.822c9.562 9.562 25.133 9.34 34.419-.491L96 169.881V392c0 13.255 10.745 24 24 24h243.549c21.382 0 32.09-25.851 16.971-40.971l-16.001-16z" ], + ribbon: [ 448, 512, [], "f4d6", "M6.1 444.3c-9.6 10.8-7.5 27.6 4.5 35.7l68.8 27.9c9.9 6.7 23.3 5 31.3-3.8l91.8-101.9-79.2-87.9-117.2 130zm435.8 0s-292-324.6-295.4-330.1c15.4-8.4 40.2-17.9 77.5-17.9s62.1 9.5 77.5 17.9c-3.3 5.6-56 64.6-56 64.6l79.1 87.7 34.2-38c28.7-31.9 33.3-78.6 11.4-115.5l-43.7-73.5c-4.3-7.2-9.9-13.3-16.8-18-40.7-27.6-127.4-29.7-171.4 0-6.9 4.7-12.5 10.8-16.8 18l-43.6 73.2c-1.5 2.5-37.1 62.2 11.5 116L337.5 504c8 8.9 21.4 10.5 31.3 3.8l68.8-27.9c11.9-8 14-24.8 4.3-35.6z" ], + road: [ 576, 512, [], "f018", "M567.3 383.6L429.9 78.2C426 69.5 417.4 64 408 64h-96.1l1.9 18.8c.7 7.1-4.8 13.2-11.9 13.2H274c-7.1 0-12.7-6.2-11.9-13.2L264 64h-96c-9.4 0-18 5.5-21.9 14.2L8.7 383.6C3.2 395.8 0 409.6 0 424c0 13.3 10.7 24 24 24h213.6c-7.1 0-12.7-6.2-11.9-13.2l10.8-104c.6-6.1 5.8-10.8 11.9-10.8h79.2c6.1 0 11.3 4.6 11.9 10.8l10.8 104c.7 7.1-4.8 13.2-11.9 13.2H552c13.2 0 24-10.7 24-24 0-13.9-3-27.7-8.7-40.4zM254.7 154.8l3.3-32c.6-6.1 5.8-10.8 11.9-10.8h36.2c6.1 0 11.3 4.6 11.9 10.8l3.3 32c.7 7.1-4.8 13.2-11.9 13.2h-42.8c-7.1 0-12.7-6.2-11.9-13.2zM321.8 288h-67.6c-7.1 0-12.7-6.2-11.9-13.2l7.4-72c.6-6.1 5.8-10.8 11.9-10.8h52.7c6.1 0 11.3 4.6 11.9 10.8l7.4 72c.9 7-4.7 13.2-11.8 13.2z" ], + robot: [ 640, 512, [], "f544", "M0 256v128c0 17.7 14.3 32 32 32h32V224H32c-17.7 0-32 14.3-32 32zM464 96H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H176c-44.2 0-80 35.8-80 80v272c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V176c0-44.2-35.8-80-80-80zM256 416h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm128 120h-64v-32h64v32zm96 0h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm192-72h-32v192h32c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32z" ], + rocket: [ 512, 512, [], "f135", "M505.1 19.1C503.8 13 499 8.2 492.9 6.9 460.7 0 435.5 0 410.4 0 307.2 0 245.3 55.2 199.1 128H94.9c-18.2 0-34.8 10.3-42.9 26.5L2.6 253.3c-8 16 3.6 34.7 21.5 34.7h95.1c-5.9 12.8-11.9 25.5-18 37.7-3.1 6.2-1.9 13.6 3 18.5l63.6 63.6c4.9 4.9 12.3 6.1 18.5 3 12.2-6.1 24.9-12 37.7-17.9V488c0 17.8 18.8 29.4 34.7 21.5l98.7-49.4c16.3-8.1 26.5-24.8 26.5-42.9V312.8c72.6-46.3 128-108.4 128-211.1.1-25.2.1-50.4-6.8-82.6zM400 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z" ], + rss: [ 448, 512, [], "f09e", "M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z" ], + "rss-square": [ 448, 512, [], "f143", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM112 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm157.533 0h-34.335c-6.011 0-11.051-4.636-11.442-10.634-5.214-80.05-69.243-143.92-149.123-149.123-5.997-.39-10.633-5.431-10.633-11.441v-34.335c0-6.535 5.468-11.777 11.994-11.425 110.546 5.974 198.997 94.536 204.964 204.964.352 6.526-4.89 11.994-11.425 11.994zm103.027 0h-34.334c-6.161 0-11.175-4.882-11.427-11.038-5.598-136.535-115.204-246.161-251.76-251.76C68.882 152.949 64 147.935 64 141.774V107.44c0-6.454 5.338-11.664 11.787-11.432 167.83 6.025 302.21 141.191 308.205 308.205.232 6.449-4.978 11.787-11.432 11.787z" ], + "ruble-sign": [ 384, 512, [], "f158", "M239.36 320C324.48 320 384 260.542 384 175.071S324.48 32 239.36 32H76c-6.627 0-12 5.373-12 12v206.632H12c-6.627 0-12 5.373-12 12V308c0 6.627 5.373 12 12 12h52v32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v52c0 6.627 5.373 12 12 12h58.56c6.627 0 12-5.373 12-12v-52H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H146.56v-32h92.8zm-92.8-219.252h78.72c46.72 0 74.88 29.11 74.88 74.323 0 45.832-28.16 75.561-76.16 75.561h-77.44V100.748z" ], + ruler: [ 640, 512, [], "f545", "M635.7 167.2L556.1 31.7c-8.8-15-28.3-20.1-43.5-11.5l-69 39.1L503.3 161c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L416 75l-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L333.2 122 278 153.3 337.8 255c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-59.7-101.7-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-27.9-47.5-55.2 31.3 59.7 101.7c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L84.9 262.9l-69 39.1C.7 310.7-4.6 329.8 4.2 344.8l79.6 135.6c8.8 15 28.3 20.1 43.5 11.5L624.1 210c15.2-8.6 20.4-27.8 11.6-42.8z" ], + "ruler-combined": [ 512, 512, [], "f546", "M160 288h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56v-64h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56V96h-56c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8h56V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 2.77.91 5.24 1.57 7.8L160 329.38V288zm320 64h-32v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-41.37L24.2 510.43c2.56.66 5.04 1.57 7.8 1.57h448c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z" ], + "ruler-horizontal": [ 576, 512, [], "f547", "M544 128h-48v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8H88c-4.42 0-8-3.58-8-8v-88H32c-17.67 0-32 14.33-32 32v192c0 17.67 14.33 32 32 32h512c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32z" ], + "ruler-vertical": [ 256, 512, [], "f548", "M168 416c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 17.67 14.33 32 32 32h192c17.67 0 32-14.33 32-32v-64h-88z" ], + "rupee-sign": [ 320, 512, [], "f156", "M308 96c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v44.748c0 6.627 5.373 12 12 12h85.28c27.308 0 48.261 9.958 60.97 27.252H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h158.757c-6.217 36.086-32.961 58.632-74.757 58.632H12c-6.627 0-12 5.373-12 12v53.012c0 3.349 1.4 6.546 3.861 8.818l165.052 152.356a12.001 12.001 0 0 0 8.139 3.182h82.562c10.924 0 16.166-13.408 8.139-20.818L116.871 319.906c76.499-2.34 131.144-53.395 138.318-127.906H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-58.69c-3.486-11.541-8.28-22.246-14.252-32H308z" ], + "sad-cry": [ 496, 512, [], "f5b3", "M248 8C111 8 0 119 0 256c0 90.1 48.2 168.7 120 212.1V288c0-8.8 7.2-16 16-16s16 7.2 16 16v196.7c29.5 12.4 62 19.3 96 19.3s66.5-6.9 96-19.3V288c0-8.8 7.2-16 16-16s16 7.2 16 16v180.1C447.8 424.7 496 346 496 256 496 119 385 8 248 8zm-65.5 216.5c-14.8-13.2-46.2-13.2-61 0L112 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c.8 5-1.7 10-6.1 12.4-5.8 3.1-11.2.7-13.7-1.6l-9.7-8.5zM248 416c-26.5 0-48-28.7-48-64s21.5-64 48-64 48 28.7 48 64-21.5 64-48 64zm149.8-181.5c-5.8 3.1-11.2.7-13.7-1.6l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S400 197 404 222.2c.6 4.9-1.8 9.9-6.2 12.3z" ], + "sad-tear": [ 496, 512, [], "f5b4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM152 416c-26.5 0-48-21-48-47 0-20 28.5-60.4 41.6-77.8 3.2-4.3 9.6-4.3 12.8 0C171.5 308.6 200 349 200 369c0 26-21.5 47-48 47zm16-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm170.2 154.2C315.8 367.4 282.9 352 248 352c-21.2 0-21.2-32 0-32 44.4 0 86.3 19.6 114.7 53.8 13.8 16.4-11.2 36.5-24.5 20.4z" ], + save: [ 448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z" ], + school: [ 640, 512, [], "f549", "M0 224v272c0 8.84 7.16 16 16 16h80V192H32c-17.67 0-32 14.33-32 32zm360-48h-24v-40c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v64c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zm137.75-63.96l-160-106.67a32.02 32.02 0 0 0-35.5 0l-160 106.67A32.002 32.002 0 0 0 128 138.66V512h128V368c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v144h128V138.67c0-10.7-5.35-20.7-14.25-26.63zM320 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm288-64h-64v320h80c8.84 0 16-7.16 16-16V224c0-17.67-14.33-32-32-32z" ], + screwdriver: [ 512, 512, [], "f54a", "M448 0L320 96v62.06l-83.03 83.03c6.79 4.25 13.27 9.06 19.07 14.87 5.8 5.8 10.62 12.28 14.87 19.07L353.94 192H416l96-128-64-64zM128 278.59L10.92 395.67c-14.55 14.55-14.55 38.15 0 52.71l52.7 52.7c14.56 14.56 38.15 14.56 52.71 0L233.41 384c29.11-29.11 29.11-76.3 0-105.41s-76.3-29.11-105.41 0z" ], + search: [ 512, 512, [], "f002", "M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z" ], + "search-minus": [ 512, 512, [], "f010", "M304 192v32c0 6.6-5.4 12-12 12H124c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z" ], + "search-plus": [ 512, 512, [], "f00e", "M304 192v32c0 6.6-5.4 12-12 12h-56v56c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-56h-56c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h56v-56c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v56h56c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z" ], + seedling: [ 512, 512, [], "f4d8", "M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z" ], + server: [ 512, 512, [], "f233", "M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z" ], + share: [ 512, 512, [], "f064", "M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z" ], + "share-alt": [ 448, 512, [], "f1e0", "M352 320c-22.608 0-43.387 7.819-59.79 20.895l-102.486-64.054a96.551 96.551 0 0 0 0-41.683l102.486-64.054C308.613 184.181 329.392 192 352 192c53.019 0 96-42.981 96-96S405.019 0 352 0s-96 42.981-96 96c0 7.158.79 14.13 2.276 20.841L155.79 180.895C139.387 167.819 118.608 160 96 160c-53.019 0-96 42.981-96 96s42.981 96 96 96c22.608 0 43.387-7.819 59.79-20.895l102.486 64.054A96.301 96.301 0 0 0 256 416c0 53.019 42.981 96 96 96s96-42.981 96-96-42.981-96-96-96z" ], + "share-alt-square": [ 448, 512, [], "f1e1", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zM304 296c-14.562 0-27.823 5.561-37.783 14.671l-67.958-40.775a56.339 56.339 0 0 0 0-27.793l67.958-40.775C276.177 210.439 289.438 216 304 216c30.928 0 56-25.072 56-56s-25.072-56-56-56-56 25.072-56 56c0 4.797.605 9.453 1.74 13.897l-67.958 40.775C171.823 205.561 158.562 200 144 200c-30.928 0-56 25.072-56 56s25.072 56 56 56c14.562 0 27.823-5.561 37.783-14.671l67.958 40.775a56.088 56.088 0 0 0-1.74 13.897c0 30.928 25.072 56 56 56s56-25.072 56-56C360 321.072 334.928 296 304 296z" ], + "share-square": [ 576, 512, [], "f14d", "M568.482 177.448L424.479 313.433C409.3 327.768 384 317.14 384 295.985v-71.963c-144.575.97-205.566 35.113-164.775 171.353 4.483 14.973-12.846 26.567-25.006 17.33C155.252 383.105 120 326.488 120 269.339c0-143.937 117.599-172.5 264-173.312V24.012c0-21.174 25.317-31.768 40.479-17.448l144.003 135.988c10.02 9.463 10.028 25.425 0 34.896zM384 379.128V448H64V128h50.916a11.99 11.99 0 0 0 8.648-3.693c14.953-15.568 32.237-27.89 51.014-37.676C185.708 80.83 181.584 64 169.033 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48v-88.806c0-8.288-8.197-14.066-16.011-11.302a71.83 71.83 0 0 1-34.189 3.377c-7.27-1.046-13.8 4.514-13.8 11.859z" ], + "shekel-sign": [ 448, 512, [], "f20b", "M248 168v168c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V168c0-75.11-60.89-136-136-136H24C10.75 32 0 42.74 0 56v408c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112h112c30.93 0 56 25.07 56 56zM432 32h-48c-8.84 0-16 7.16-16 16v296c0 30.93-25.07 56-56 56H200V176c0-8.84-7.16-16-16-16h-48c-8.84 0-16 7.16-16 16v280c0 13.25 10.75 24 24 24h168c75.11 0 136-60.89 136-136V48c0-8.84-7.16-16-16-16z" ], + "shield-alt": [ 512, 512, [], "f3ed", "M496 128c0 221.282-135.934 344.645-221.539 380.308a48 48 0 0 1-36.923 0C130.495 463.713 16 326.487 16 128a48 48 0 0 1 29.539-44.308l192-80a48 48 0 0 1 36.923 0l192 80A48 48 0 0 1 496 128zM256 446.313l.066.034c93.735-46.689 172.497-156.308 175.817-307.729L256 65.333v380.98z" ], + ship: [ 640, 512, [], "f21a", "M496.616 372.639l70.012-70.012c16.899-16.9 9.942-45.771-12.836-53.092L512 236.102V96c0-17.673-14.327-32-32-32h-64V24c0-13.255-10.745-24-24-24H248c-13.255 0-24 10.745-24 24v40h-64c-17.673 0-32 14.327-32 32v140.102l-41.792 13.433c-22.753 7.313-29.754 36.173-12.836 53.092l70.012 70.012C125.828 416.287 85.587 448 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24 61.023 0 107.499-20.61 143.258-59.396C181.677 487.432 216.021 512 256 512h128c39.979 0 74.323-24.568 88.742-59.396C508.495 491.384 554.968 512 616 512c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24-60.817 0-101.542-31.001-119.384-75.361zM192 128h256v87.531l-118.208-37.995a31.995 31.995 0 0 0-19.584 0L192 215.531V128z" ], + "shipping-fast": [ 640, 512, [], "f48b", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H112C85.5 0 64 21.5 64 48v48H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h272c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H40c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H64v128c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z" ], + "shoe-prints": [ 640, 512, [], "f54b", "M192 160h32V32h-32c-35.35 0-64 28.65-64 64s28.65 64 64 64zM0 416c0 35.35 28.65 64 64 64h32V352H64c-35.35 0-64 28.65-64 64zm337.46-128c-34.91 0-76.16 13.12-104.73 32-24.79 16.38-44.52 32-104.73 32v128l57.53 15.97c26.21 7.28 53.01 13.12 80.31 15.05 32.69 2.31 65.6.67 97.58-6.2C472.9 481.3 512 429.22 512 384c0-64-84.18-96-174.54-96zM491.42 7.19C459.44.32 426.53-1.33 393.84.99c-27.3 1.93-54.1 7.77-80.31 15.04L256 32v128c60.2 0 79.94 15.62 104.73 32 28.57 18.88 69.82 32 104.73 32C555.82 224 640 192 640 128c0-45.22-39.1-97.3-148.58-120.81z" ], + "shopping-bag": [ 448, 512, [], "f290", "M352 160v-32C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128v32H0v272c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V160h-96zm-192-32c0-35.29 28.71-64 64-64s64 28.71 64 64v32H160v-32zm160 120c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm-192 0c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24z" ], + "shopping-basket": [ 576, 512, [], "f291", "M576 216v16c0 13.255-10.745 24-24 24h-8l-26.113 182.788C514.509 462.435 494.257 480 470.37 480H105.63c-23.887 0-44.139-17.565-47.518-41.212L32 256h-8c-13.255 0-24-10.745-24-24v-16c0-13.255 10.745-24 24-24h67.341l106.78-146.821c10.395-14.292 30.407-17.453 44.701-7.058 14.293 10.395 17.453 30.408 7.058 44.701L170.477 192h235.046L326.12 82.821c-10.395-14.292-7.234-34.306 7.059-44.701 14.291-10.395 34.306-7.235 44.701 7.058L484.659 192H552c13.255 0 24 10.745 24 24zM312 392V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm112 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm-224 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24z" ], + "shopping-cart": [ 576, 512, [], "f07a", "M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z" ], + shower: [ 512, 512, [], "f2cc", "M389.66 135.6L231.6 293.66c-9.37 9.37-24.57 9.37-33.94 0l-11.32-11.32c-9.37-9.37-9.37-24.57 0-33.94l.11-.11c-34.03-40.21-35.16-98.94-3.39-140.38-11.97-7.55-26.14-11.91-41.3-11.91C98.88 96 64 130.88 64 173.76V480H0V173.76C0 95.59 63.59 32 141.76 32c36.93 0 70.61 14.2 95.86 37.42 35.9-11.51 76.5-4.5 106.67 21.03l.11-.11c9.37-9.37 24.57-9.37 33.94 0l11.32 11.32c9.37 9.37 9.37 24.57 0 33.94zM384 208c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm48-16c8.837 0 16 7.163 16 16s-7.163 16-16 16-16-7.163-16-16 7.163-16 16-16zm80 16c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-128 32c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-96 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm64 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16z" ], + "shuttle-van": [ 640, 512, [], "f5b6", "M628.88 210.65L494.39 49.27A48.01 48.01 0 0 0 457.52 32H32C14.33 32 0 46.33 0 64v288c0 17.67 14.33 32 32 32h32c0 53.02 42.98 96 96 96s96-42.98 96-96h128c0 53.02 42.98 96 96 96s96-42.98 96-96h32c17.67 0 32-14.33 32-32V241.38c0-11.23-3.94-22.1-11.12-30.73zM64 192V96h96v96H64zm96 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm160-240h-96V96h96v96zm160 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm-96-240V96h66.02l80 96H384z" ], + sign: [ 512, 512, [], "f4d9", "M496 64H128V16c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16v48H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V128h368c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM160 384h320V160H160v224z" ], + "sign-in-alt": [ 512, 512, [], "f2f6", "M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z" ], + "sign-language": [ 448, 512, [], "f2a7", "M91.434 483.987c-.307-16.018 13.109-29.129 29.13-29.129h62.293v-5.714H56.993c-16.021 0-29.437-13.111-29.13-29.129C28.16 404.491 40.835 392 56.428 392h126.429v-5.714H29.136c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h154.286v-5.714H57.707c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h168.566l-31.085-22.606c-12.762-9.281-15.583-27.149-6.302-39.912 9.281-12.761 27.15-15.582 39.912-6.302l123.361 89.715a34.287 34.287 0 0 1 14.12 27.728v141.136c0 15.91-10.946 29.73-26.433 33.374l-80.471 18.934a137.16 137.16 0 0 1-31.411 3.646H120c-15.593-.001-28.269-12.492-28.566-28.014zm73.249-225.701h36.423l-11.187-8.136c-18.579-13.511-20.313-40.887-3.17-56.536l-13.004-16.7c-9.843-12.641-28.43-15.171-40.88-5.088-12.065 9.771-14.133 27.447-4.553 39.75l36.371 46.71zm283.298-2.103l-5.003-152.452c-.518-15.771-13.722-28.136-29.493-27.619-15.773.518-28.137 13.722-27.619 29.493l1.262 38.415L283.565 11.019c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l76.889 98.745-4.509 3.511-94.79-121.734c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l94.443 121.288-4.509 3.511-77.675-99.754c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l52.053 66.849c12.497-8.257 29.055-8.285 41.69.904l123.36 89.714c10.904 7.93 17.415 20.715 17.415 34.198v16.999l61.064-47.549a34.285 34.285 0 0 0 13.202-28.177z" ], + "sign-out-alt": [ 512, 512, [], "f2f5", "M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z" ], + signal: [ 640, 512, [], "f012", "M36 384h56c6.6 0 12 5.4 12 12v104c0 6.6-5.4 12-12 12H36c-6.6 0-12-5.4-12-12V396c0-6.6 5.4-12 12-12zm116-36v152c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V348c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-80v232c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V268c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-112v344c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V156c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zM536 12v488c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V12c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12z" ], + signature: [ 512, 512, [], "f5b7", "M496 320h-91.86c-9.27 0-19.72-11.31-25.78-28.52-15.23-43.36-48.11-70.3-85.8-70.3-30.84 0-58.47 18.05-76.11 49.23L194.8 106.5C188.84 81.08 169.34 64 146.28 64c-23.05 0-42.55 17.08-48.5 42.5L56.16 284.2C50.7 307.45 37.75 320 28.33 320H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h12.33c41.97 0 78.19-34.23 90.14-85.2l23.84-101.78 29.25 222.11c1.98 15.05 13.82 27.45 28.94 28.75.99.09 1.96.13 2.93.13 14.08 0 26.64-9.27 30.69-22.95l33.03-112.34c5.88-16.72 15.84-27.52 25.41-27.52 9.58 0 19.55 10.8 25.78 28.52 15.23 43.36 48.11 70.3 85.8 70.3H496c8.84 0 16-7.16 16-16v-32c0-8.86-7.16-16.02-16-16.02z" ], + sitemap: [ 640, 512, [], "f0e8", "M128 352H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm-24-80h192v48h48v-48h192v48h48v-57.59c0-21.17-17.23-38.41-38.41-38.41H344v-64h40c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H256c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h40v64H94.41C73.23 224 56 241.23 56 262.41V320h48v-48zm264 80h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm240 0h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z" ], + skull: [ 512, 512, [], "f54c", "M256 0C114.6 0 0 100.3 0 224c0 70.1 36.9 132.6 94.5 173.7 9.6 6.9 15.2 18.1 13.5 29.9l-9.4 66.2c-1.4 9.6 6 18.2 15.7 18.2H192v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h64v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h77.7c9.7 0 17.1-8.6 15.7-18.2l-9.4-66.2c-1.7-11.7 3.8-23 13.5-29.9C475.1 356.6 512 294.1 512 224 512 100.3 397.4 0 256 0zm-96 320c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm192 0c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64z" ], + "sliders-h": [ 512, 512, [], "f1de", "M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z" ], + smile: [ 496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.6-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.4-16.2 38.1 4.2 24.6 20.5z" ], + "smile-beam": [ 496, 512, [], "f5b8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM112 223.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zm250.8 122.8C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.3 24.6 20.5zm6.2-118.3l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.6 8.6-11 11.9-15.1 4.5z" ], + "smile-wink": [ 496, 512, [], "f4da", "M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm158.5 16.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.7 11.1-11.4 18.3-19.8 10.8l-9.7-8.5zM157.8 325.8C180.2 352.7 213 368 248 368s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.2 24.6 20.5C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11.2-36.7 24.6-20.4z" ], + smoking: [ 640, 512, [], "f48d", "M632 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8zM553.3 87.1c-5.7-3.8-9.3-10-9.3-16.8V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v62.3c0 22 10.2 43.4 28.6 55.4 42.2 27.3 67.4 73.8 67.4 124V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-65.5-32.4-126.2-86.7-162.6zM432 352H48c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h384c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zm-32 112H224v-64h176v64zm87.7-322.4C463.8 125 448 99.3 448 70.3V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v66.4c0 43.7 24.6 81.6 60.3 106.7 22.4 15.7 35.7 41.2 35.7 68.6V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-43.3-21-83.4-56.3-108.1zM536 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8z" ], + "smoking-ban": [ 512, 512, [], "f54d", "M96 304c0 8.8 7.2 16 16 16h117.5l-96-96H112c-8.8 0-16 7.2-16 16v64zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 448c-105.9 0-192-86.1-192-192 0-41.4 13.3-79.7 35.7-111.1l267.4 267.4C335.7 434.7 297.4 448 256 448zm45.2-192H384v32h-50.8l-32-32zm111.1 111.1L365.2 320H400c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16H269.2L144.9 99.7C176.3 77.3 214.6 64 256 64c105.9 0 192 86.1 192 192 0 41.4-13.3 79.7-35.7 111.1zM320.6 128c-15.6 0-28.6-11.2-31.4-25.9-.7-3.6-4-6.1-7.7-6.1h-16.2c-5 0-8.7 4.5-8 9.4 4.6 30.9 31.2 54.6 63.3 54.6 15.6 0 28.6 11.2 31.4 25.9.7 3.6 4 6.1 7.7 6.1h16.2c5 0 8.7-4.5 8-9.4-4.6-30.9-31.2-54.6-63.3-54.6z" ], + snowflake: [ 448, 512, [], "f2dc", "M444.816 301.639a24.12 24.12 0 0 0 2.661-16.978c-2.725-12.966-15.339-21.245-28.174-18.492l-87.407 25.046L264 256l67.896-35.215 87.407 25.046c12.835 2.753 25.449-5.526 28.174-18.492 2.725-12.966-5.471-25.708-18.305-28.461l-47.477-7.137 53.077-30.956c11.363-6.627 15.257-21.306 8.696-32.785-6.561-11.479-21.091-15.412-32.454-8.785l-53.077 30.956 17.621-45.104c4.057-12.606-2.768-26.146-15.247-30.245-12.478-4.099-25.883 2.797-29.94 15.402l-22.232 88.99-60.38 35.215V144l65.175-63.945c8.778-9.852 7.987-25.027-1.766-33.894-9.753-8.867-24.775-8.068-33.552 1.784l-29.857 37.967V24c0-13.255-10.637-24-23.758-24s-23.758 10.745-23.758 24v61.912l-29.857-37.967c-8.779-9.852-23.799-10.652-33.552-1.784-9.753 8.867-10.543 24.042-1.766 33.894L200.242 144v70.431l-60.38-35.215-22.232-88.99c-4.057-12.605-17.462-19.501-29.94-15.402-12.478 4.099-19.304 17.64-15.247 30.245l17.62 45.104-53.077-30.956c-11.363-6.627-25.893-2.694-32.454 8.785s-2.667 26.157 8.696 32.785l53.077 30.956-47.477 7.137C5.993 201.634-2.203 214.375.523 227.341c2.725 12.965 15.339 21.245 28.174 18.492l87.407-25.046L184 256l-67.896 35.215-87.406-25.045c-12.835-2.753-25.449 5.526-28.174 18.492-2.725 12.967 5.47 25.708 18.305 28.461l47.477 7.137-53.077 30.956C1.866 357.843-2.027 372.521 4.533 384s21.091 15.412 32.454 8.785l53.077-30.956-17.62 45.104a24.157 24.157 0 0 0 2.022 19.428c2.831 4.953 7.416 8.909 13.224 10.816 12.478 4.099 25.883-2.797 29.94-15.402l22.232-88.99 60.38-35.215V368l-65.175 63.945c-8.778 9.852-7.987 25.027 1.766 33.894 9.754 8.868 24.774 8.068 33.552-1.784l29.857-37.967V488c0 13.255 10.637 24 23.758 24s23.758-10.745 23.758-24v-61.912l29.857 37.967A23.59 23.59 0 0 0 295.282 472a23.534 23.534 0 0 0 15.885-6.161c9.753-8.867 10.544-24.042 1.766-33.894L247.758 368v-70.431l60.38 35.215 22.232 88.99c4.057 12.605 17.462 19.501 29.94 15.402 12.479-4.099 19.304-17.64 15.247-30.245l-17.621-45.104 53.077 30.956c11.363 6.627 25.893 2.694 32.454-8.785s2.667-26.157-8.696-32.785l-53.077-30.956 47.477-7.137c6.86-1.469 12.394-5.793 15.645-11.481z" ], + "solar-panel": [ 640, 512, [], "f5ba", "M431.98 448.01l-47.97.05V416h-128v32.21l-47.98.05c-8.82.01-15.97 7.16-15.98 15.99l-.05 31.73c-.01 8.85 7.17 16.03 16.02 16.02l223.96-.26c8.82-.01 15.97-7.16 15.98-15.98l.04-31.73c.01-8.85-7.17-16.03-16.02-16.02zM585.2 26.74C582.58 11.31 568.99 0 553.06 0H86.93C71 0 57.41 11.31 54.79 26.74-3.32 369.16.04 348.08.03 352c-.03 17.32 14.29 32 32.6 32h574.74c18.23 0 32.51-14.56 32.59-31.79.02-4.08 3.35 16.95-54.76-325.47zM259.83 64h120.33l9.77 96H250.06l9.77-96zm-75.17 256H71.09L90.1 208h105.97l-11.41 112zm16.29-160H98.24l16.29-96h96.19l-9.77 96zm32.82 160l11.4-112h149.65l11.4 112H233.77zm195.5-256h96.19l16.29 96H439.04l-9.77-96zm26.06 256l-11.4-112H549.9l19.01 112H455.33z" ], + sort: [ 320, 512, [], "f0dc", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z" ], + "sort-alpha-down": [ 448, 512, [], "f15d", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zm119.075-180.007A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z" ], + "sort-alpha-up": [ 448, 512, [], "f15e", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zm301.671 98.621A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z" ], + "sort-amount-down": [ 512, 512, [], "f160", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z" ], + "sort-amount-up": [ 512, 512, [], "f161", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z" ], + "sort-down": [ 320, 512, [], "f0dd", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z" ], + "sort-numeric-down": [ 448, 512, [], "f162", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM175.984 368H128V48c0-8.837-7.163-16-16-16H80c-8.837 0-16 7.163-16 16v320H16.019c-14.212 0-21.384 17.244-11.314 27.314l79.981 80.002c6.245 6.245 16.38 6.247 22.627 0l79.984-80.002c10.05-10.05 2.928-27.314-11.313-27.314z" ], + "sort-numeric-up": [ 448, 512, [], "f163", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM16.016 144H64v320c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144h47.981c14.212 0 21.384-17.244 11.314-27.314l-79.981-80.002c-6.245-6.245-16.38-6.247-22.627 0L4.702 116.686C-5.347 126.736 1.775 144 16.016 144z" ], + "sort-up": [ 320, 512, [], "f0de", "M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z" ], + spa: [ 576, 512, [], "f5bb", "M568.25 192c-29.04.13-135.01 6.16-213.84 83-33.12 29.63-53.36 63.3-66.41 94.86-13.05-31.56-33.29-65.23-66.41-94.86-78.83-76.84-184.8-82.87-213.84-83-4.41-.02-7.79 3.4-7.75 7.82.23 27.92 7.14 126.14 88.77 199.3C172.79 480.94 256 480 288 480s115.19.95 199.23-80.88c81.64-73.17 88.54-171.38 88.77-199.3.04-4.42-3.34-7.84-7.75-7.82zM287.98 302.6c12.82-18.85 27.6-35.78 44.09-50.52 19.09-18.61 39.58-33.3 60.26-45.18-16.44-70.5-51.72-133.05-96.73-172.22-4.11-3.58-11.02-3.58-15.14 0-44.99 39.14-80.27 101.63-96.74 172.07 20.37 11.7 40.5 26.14 59.22 44.39a282.768 282.768 0 0 1 45.04 51.46z" ], + "space-shuttle": [ 640, 512, [], "f197", "M592.604 208.244C559.735 192.836 515.777 184 472 184H186.327c-4.952-6.555-10.585-11.978-16.72-16H376C229.157 137.747 219.403 32 96.003 32H96v128H80V32c-26.51 0-48 28.654-48 64v64c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v16c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v64c0 35.346 21.49 64 48 64V352h16v128h.003c123.4 0 133.154-105.747 279.997-136H169.606c6.135-4.022 11.768-9.445 16.72-16H472c43.777 0 87.735-8.836 120.604-24.244C622.282 289.845 640 271.992 640 256s-17.718-33.845-47.396-47.756zM488 296a8 8 0 0 1-8-8v-64a8 8 0 0 1 8-8c31.909 0 31.942 80 0 80z" ], + spinner: [ 512, 512, [], "f110", "M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z" ], + splotch: [ 512, 512, [], "f5bc", "M472.29 195.89l-67.06-22.95c-19.28-6.6-33.54-20.92-38.14-38.3L351.1 74.19c-11.58-43.77-76.57-57.13-109.98-22.62l-46.14 47.67c-13.26 13.71-33.54 20.93-54.2 19.31l-71.88-5.62c-52.05-4.07-86.93 44.88-59.03 82.83l38.54 52.42c11.08 15.07 12.82 33.86 4.64 50.24L24.62 355.4c-20.59 41.25 22.84 84.87 73.49 73.81l69.96-15.28c20.11-4.39 41.45 0 57.07 11.73l54.32 40.83c39.32 29.56 101.04 7.57 104.45-37.22l4.7-61.86c1.35-17.79 12.8-33.86 30.63-42.99l62-31.74c44.88-22.96 39.59-80.17-8.95-96.79z" ], + "spray-can": [ 512, 512, [], "f5bd", "M224 32c0-17.67-14.33-32-32-32h-64c-17.67 0-32 14.33-32 32v96h128V32zm256 96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-256 32H96c-53.02 0-96 42.98-96 96v224c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V256c0-53.02-42.98-96-96-96zm-64 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zM480 96c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm-96 32c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-96-96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 0c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 192c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z" ], + square: [ 448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z" ], + "square-full": [ 512, 512, [], "f45c", "M512 512H0V0h512v512z" ], + stamp: [ 512, 512, [], "f5bf", "M32 512h448v-64H32v64zm384-256h-66.56c-16.26 0-29.44-13.18-29.44-29.44v-9.46c0-27.37 8.88-53.41 21.46-77.72 9.11-17.61 12.9-38.39 9.05-60.42-6.77-38.78-38.47-70.7-77.26-77.45C212.62-9.04 160 37.33 160 96c0 14.16 3.12 27.54 8.69 39.58C182.02 164.43 192 194.7 192 226.49v.07c0 16.26-13.18 29.44-29.44 29.44H96c-53.02 0-96 42.98-96 96v32c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-32c0-53.02-42.98-96-96-96z" ], + star: [ 576, 512, [], "f005", "M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z" ], + "star-half": [ 576, 512, [], "f089", "M288 0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6V0z" ], + "star-half-alt": [ 536, 512, [], "f5c0", "M508.55 171.51L362.18 150.2 296.77 17.81C290.89 5.98 279.42 0 267.95 0c-11.4 0-22.79 5.9-28.69 17.81l-65.43 132.38-146.38 21.29c-26.25 3.8-36.77 36.09-17.74 54.59l105.89 103-25.06 145.48C86.98 495.33 103.57 512 122.15 512c4.93 0 10-1.17 14.87-3.75l130.95-68.68 130.94 68.7c4.86 2.55 9.92 3.71 14.83 3.71 18.6 0 35.22-16.61 31.66-37.4l-25.03-145.49 105.91-102.98c19.04-18.5 8.52-50.8-17.73-54.6zm-121.74 123.2l-18.12 17.62 4.28 24.88 19.52 113.45-102.13-53.59-22.38-11.74.03-317.19 51.03 103.29 11.18 22.63 25.01 3.64 114.23 16.63-82.65 80.38z" ], + "step-backward": [ 448, 512, [], "f048", "M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z" ], + "step-forward": [ 448, 512, [], "f051", "M384 44v424c0 6.6-5.4 12-12 12h-48c-6.6 0-12-5.4-12-12V291.6l-195.5 181C95.9 489.7 64 475.4 64 448V64c0-27.4 31.9-41.7 52.5-24.6L312 219.3V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12z" ], + stethoscope: [ 512, 512, [], "f0f1", "M447.1 112c-34.2.5-62.3 28.4-63 62.6-.5 24.3 12.5 45.6 32 56.8V344c0 57.3-50.2 104-112 104-60 0-109.2-44.1-111.9-99.2C265 333.8 320 269.2 320 192V36.6c0-11.4-8.1-21.3-19.3-23.5L237.8.5c-13-2.6-25.6 5.8-28.2 18.8L206.4 35c-2.6 13 5.8 25.6 18.8 28.2l30.7 6.1v121.4c0 52.9-42.2 96.7-95.1 97.2-53.4.5-96.9-42.7-96.9-96V69.4l30.7-6.1c13-2.6 21.4-15.2 18.8-28.2l-3.1-15.7C107.7 6.4 95.1-2 82.1.6L19.3 13C8.1 15.3 0 25.1 0 36.6V192c0 77.3 55.1 142 128.1 156.8C130.7 439.2 208.6 512 304 512c97 0 176-75.4 176-168V231.4c19.1-11.1 32-31.7 32-55.4 0-35.7-29.2-64.5-64.9-64zm.9 80c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z" ], + "sticky-note": [ 448, 512, [], "f249", "M312 320h136V56c0-13.3-10.7-24-24-24H24C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h264V344c0-13.2 10.8-24 24-24zm129 55l-98 98c-4.5 4.5-10.6 7-17 7h-6V352h128v6.1c0 6.3-2.5 12.4-7 16.9z" ], + stop: [ 448, 512, [], "f04d", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z" ], + "stop-circle": [ 512, 512, [], "f28d", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z" ], + stopwatch: [ 448, 512, [], "f2f2", "M432 304c0 114.9-93.1 208-208 208S16 418.9 16 304c0-104 76.3-190.2 176-205.5V64h-28c-6.6 0-12-5.4-12-12V12c0-6.6 5.4-12 12-12h120c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-28v34.5c37.5 5.8 71.7 21.6 99.7 44.6l27.5-27.5c4.7-4.7 12.3-4.7 17 0l28.3 28.3c4.7 4.7 4.7 12.3 0 17l-29.4 29.4-.6.6C419.7 223.3 432 262.2 432 304zm-176 36V188.5c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12V340c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z" ], + store: [ 616, 512, [], "f54e", "M602 118.6L537.1 15C531.3 5.7 521 0 510 0H106C95 0 84.7 5.7 78.9 15L14 118.6c-33.5 53.5-3.8 127.9 58.8 136.4 4.5.6 9.1.9 13.7.9 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18.1 20.1 44.3 33.1 73.8 33.1 4.7 0 9.2-.3 13.7-.9 62.8-8.4 92.6-82.8 59-136.4zM529.5 288c-10 0-19.9-1.5-29.5-3.8V384H116v-99.8c-9.6 2.2-19.5 3.8-29.5 3.8-6 0-12.1-.4-18-1.2-5.6-.8-11.1-2.1-16.4-3.6V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V283.2c-5.4 1.6-10.8 2.9-16.4 3.6-6.1.8-12.1 1.2-18.2 1.2z" ], + "store-alt": [ 640, 512, [], "f54f", "M320 384H128V224H64v256c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V224h-64v160zm314.6-241.8l-85.3-128c-6-8.9-16-14.2-26.7-14.2H117.4c-10.7 0-20.7 5.3-26.6 14.2l-85.3 128c-14.2 21.3 1 49.8 26.6 49.8H608c25.5 0 40.7-28.5 26.6-49.8zM512 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h-64v272z" ], + stream: [ 512, 512, [], "f550", "M16 128h416c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H16C7.16 32 0 39.16 0 48v64c0 8.84 7.16 16 16 16zm480 80H80c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm-64 176H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16z" ], + "street-view": [ 512, 512, [], "f21d", "M192 64c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zm112 80h-11.36c-22.711 10.443-49.59 10.894-73.28 0H208c-26.51 0-48 21.49-48 48v104c0 13.255 10.745 24 24 24h16v104c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V320h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48zm85.642 189.152a72.503 72.503 0 0 1-29.01 27.009C391.133 365.251 480 385.854 480 416c0 46.304-167.656 64-224 64-70.303 0-224-20.859-224-64 0-30.123 88.361-50.665 119.367-55.839a72.516 72.516 0 0 1-29.01-27.009C74.959 343.395 0 367.599 0 416c0 77.111 178.658 96 256 96 77.249 0 256-18.865 256-96 0-48.403-74.967-72.606-122.358-82.848z" ], + strikethrough: [ 512, 512, [], "f0cc", "M496 288H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h480c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16zm-214.666 16c27.258 12.937 46.524 28.683 46.524 56.243 0 33.108-28.977 53.676-75.621 53.676-32.325 0-76.874-12.08-76.874-44.271V368c0-8.837-7.164-16-16-16H113.75c-8.836 0-16 7.163-16 16v19.204c0 66.845 77.717 101.82 154.487 101.82 88.578 0 162.013-45.438 162.013-134.424 0-19.815-3.618-36.417-10.143-50.6H281.334zm-30.952-96c-32.422-13.505-56.836-28.946-56.836-59.683 0-33.92 30.901-47.406 64.962-47.406 42.647 0 64.962 16.593 64.962 32.985V136c0 8.837 7.164 16 16 16h45.613c8.836 0 16-7.163 16-16v-30.318c0-52.438-71.725-79.875-142.575-79.875-85.203 0-150.726 40.972-150.726 125.646 0 22.71 4.665 41.176 12.777 56.547h129.823z" ], + stroopwafel: [ 512, 512, [], "f551", "M188.12 210.74L142.86 256l45.25 45.25L233.37 256l-45.25-45.26zm113.13-22.62L256 142.86l-45.25 45.25L256 233.37l45.25-45.25zm-90.5 135.76L256 369.14l45.26-45.26L256 278.63l-45.25 45.25zM256 0C114.62 0 0 114.62 0 256s114.62 256 256 256 256-114.62 256-256S397.38 0 256 0zm186.68 295.6l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-28.29-28.29-45.25 45.25 33.94 33.94 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-33.94-33.94-45.26 45.26 28.29 28.29c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0L256 414.39l-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l28.29-28.29-45.25-45.26-33.94 33.94 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 33.94-33.94-45.25-45.25-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0L69.32 295.6c-3.12-3.12-3.12-8.19 0-11.31L97.61 256l-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l28.29 28.29 45.25-45.26-33.94-33.94-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 33.94 33.94 45.26-45.25-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0L256 97.61l28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-28.29 28.29 45.26 45.25 33.94-33.94-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-33.94 33.94 45.25 45.26 28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31L414.39 256l28.29 28.28a8.015 8.015 0 0 1 0 11.32zM278.63 256l45.26 45.25L369.14 256l-45.25-45.26L278.63 256z" ], + subscript: [ 512, 512, [], "f12c", "M395.198 416c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 256c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 96H16C7.163 96 0 88.837 0 80V48c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035A15.999 15.999 0 0 1 204.226 32H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 256H272z" ], + subway: [ 448, 512, [], "f239", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zM200 232V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm200 0V120c0-13.255-10.745-24-24-24H272c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm-48 56c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm-256 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z" ], + suitcase: [ 512, 512, [], "f0f2", "M128 480h256V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v400zm64-384h128v32H192V96zm320 80v256c0 26.5-21.5 48-48 48h-48V128h48c26.5 0 48 21.5 48 48zM96 480H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h48v352z" ], + "suitcase-rolling": [ 384, 512, [], "f5c1", "M336 160H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h16v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h128v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h16c26.51 0 48-21.49 48-48V208c0-26.51-21.49-48-48-48zm-16 216c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zM144 48h96v80h48V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v80h48V48z" ], + sun: [ 512, 512, [], "f185", "M274.835 12.646l25.516 62.393c4.213 10.301 16.671 14.349 26.134 8.492l57.316-35.479c15.49-9.588 34.808 4.447 30.475 22.142l-16.03 65.475c-2.647 10.81 5.053 21.408 16.152 22.231l67.224 4.987c18.167 1.348 25.546 24.057 11.641 35.826L441.81 242.26c-8.495 7.19-8.495 20.289 0 27.479l51.454 43.548c13.906 11.769 6.527 34.478-11.641 35.826l-67.224 4.987c-11.099.823-18.799 11.421-16.152 22.231l16.03 65.475c4.332 17.695-14.986 31.73-30.475 22.142l-57.316-35.479c-9.463-5.858-21.922-1.81-26.134 8.492l-25.516 62.393c-6.896 16.862-30.774 16.862-37.67 0l-25.516-62.393c-4.213-10.301-16.671-14.349-26.134-8.492l-57.317 35.479c-15.49 9.588-34.808-4.447-30.475-22.142l16.03-65.475c2.647-10.81-5.053-21.408-16.152-22.231l-67.224-4.987c-18.167-1.348-25.546-24.057-11.641-35.826L70.19 269.74c8.495-7.19 8.495-20.289 0-27.479l-51.454-43.548c-13.906-11.769-6.527-34.478 11.641-35.826l67.224-4.987c11.099-.823 18.799-11.421 16.152-22.231l-16.03-65.475c-4.332-17.695 14.986-31.73 30.475-22.142l57.317 35.479c9.463 5.858 21.921 1.81 26.134-8.492l25.516-62.393c6.896-16.861 30.774-16.861 37.67 0zM392 256c0-74.991-61.01-136-136-136-74.991 0-136 61.009-136 136s61.009 136 136 136c74.99 0 136-61.009 136-136zm-32 0c0 57.346-46.654 104-104 104s-104-46.654-104-104 46.654-104 104-104 104 46.654 104 104z" ], + superscript: [ 512, 512, [], "f12b", "M395.198 256c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 256H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035a16 16 0 0 1 13.598-7.567H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 416H272z" ], + surprise: [ 496, 512, [], "f5c2", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm112 208c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm80-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + swatchbook: [ 511, 512, [], "f5c3", "M479.06 320H372.29L186.15 506.51c-2.06 2.07-4.49 3.58-6.67 5.49h299.58c17.64 0 31.94-14.33 31.94-32V352c0-17.67-14.3-32-31.94-32zm-44.5-152.9l-90.33-90.51c-12.47-12.5-32.69-12.5-45.17 0l-75.5 75.65V416c0 2.96-.67 5.73-.87 8.64l211.87-212.28c12.47-12.5 12.47-32.77 0-45.26zM191.62 32c0-17.67-14.3-32-31.94-32H31.94C14.3 0 0 14.33 0 32v384c0 53.02 42.9 96 95.81 96s95.81-42.98 95.81-96V32zM95.81 440c-13.23 0-23.95-10.75-23.95-24 0-13.26 10.73-24 23.95-24s23.95 10.74 23.95 24c.01 13.25-10.72 24-23.95 24zm31.94-184H63.88v-64h63.88v64zm0-128H63.88V64h63.88v64z" ], + swimmer: [ 640, 512, [], "f5c4", "M189.61 310.58c3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c16.02-14.77 34.5-22.58 53.46-22.58h16.3c18.96 0 37.45 7.81 53.46 22.58 3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c14.86-13.71 31.88-21.12 49.39-22.16l-112.84-80.6 18-12.86c3.64-2.58 8.28-3.52 12.62-2.61l100.35 21.53c25.91 5.53 51.44-10.97 57-36.88 5.55-25.92-10.95-51.44-36.88-57L437.68 98.47c-30.73-6.58-63.02.12-88.56 18.38l-80.02 57.17c-10.38 7.39-19.36 16.44-26.72 26.94L173.75 299c5.47 3.23 10.82 6.93 15.86 11.58zM624 352h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 343.58 442.04 352 416 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 343.58 250.04 352 224 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 343.58 58.04 352 32 352H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-512-96c44.18 0 80-35.82 80-80s-35.82-80-80-80-80 35.82-80 80 35.82 80 80 80z" ], + "swimming-pool": [ 640, 512, [], "f5c5", "M624 416h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 407.58 442.04 416 416 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 407.58 250.04 416 224 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 407.58 58.04 416 32 416H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-400-32v-96h192v96c19.12 0 30.86-6.16 34.39-9.42 9.17-8.46 19.2-14.34 29.61-18.07V128c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v96H224v-96c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v228.5c10.41 3.73 20.44 9.62 29.61 18.07 3.53 3.27 15.27 9.43 34.39 9.43z" ], + sync: [ 512, 512, [], "f021", "M440.935 12.574l3.966 82.766C399.416 41.904 331.674 8 256 8 134.813 8 33.933 94.924 12.296 209.824 10.908 217.193 16.604 224 24.103 224h49.084c5.57 0 10.377-3.842 11.676-9.259C103.407 137.408 172.931 80 256 80c60.893 0 114.512 30.856 146.104 77.801l-101.53-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12h-47.411c-6.853 0-12.315 5.729-11.987 12.574zM256 432c-60.895 0-114.517-30.858-146.109-77.805l101.868 4.871c6.845.327 12.573-5.134 12.573-11.986v-47.412c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12V500c0 6.627 5.373 12 12 12h47.385c6.863 0 12.328-5.745 11.985-12.599l-4.129-82.575C112.725 470.166 180.405 504 256 504c121.187 0 222.067-86.924 243.704-201.824 1.388-7.369-4.308-14.176-11.807-14.176h-49.084c-5.57 0-10.377 3.842-11.676 9.259C408.593 374.592 339.069 432 256 432z" ], + "sync-alt": [ 512, 512, [], "f2f1", "M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z" ], + syringe: [ 512, 512, [], "f48e", "M201.5 174.8l55.7 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-55.7-55.8-45.3 45.3 55.8 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L111 265.2l-26.4 26.4c-17.3 17.3-25.6 41.1-23 65.4l7.1 63.6L2.3 487c-3.1 3.1-3.1 8.2 0 11.3l11.3 11.3c3.1 3.1 8.2 3.1 11.3 0l66.3-66.3 63.6 7.1c23.9 2.6 47.9-5.4 65.4-23l181.9-181.9-135.7-135.7-64.9 65zm308.2-93.3L430.5 2.3c-3.1-3.1-8.2-3.1-11.3 0l-11.3 11.3c-3.1 3.1-3.1 8.2 0 11.3l28.3 28.3-45.3 45.3-56.6-56.6-17-17c-3.1-3.1-8.2-3.1-11.3 0l-33.9 33.9c-3.1 3.1-3.1 8.2 0 11.3l17 17L424.8 223l17 17c3.1 3.1 8.2 3.1 11.3 0l33.9-34c3.1-3.1 3.1-8.2 0-11.3l-73.5-73.5 45.3-45.3 28.3 28.3c3.1 3.1 8.2 3.1 11.3 0l11.3-11.3c3.1-3.2 3.1-8.2 0-11.4z" ], + table: [ 512, 512, [], "f0ce", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64v-96h160v96zm0-160H64v-96h160v96zm224 160H288v-96h160v96zm0-160H288v-96h160v96z" ], + "table-tennis": [ 512, 512, [], "f45d", "M496.2 296.5C527.7 218.7 512 126.2 449 63.1 365.1-21 229-21 145.1 63.1l-56 56.1 211.5 211.5c46.1-62.1 131.5-77.4 195.6-34.2zm-217.9 79.7L57.9 155.9c-27.3 45.3-21.7 105 17.3 144.1l34.5 34.6L6.7 424c-8.6 7.5-9.1 20.7-1 28.8l53.4 53.5c8 8.1 21.2 7.6 28.7-1L177.1 402l35.7 35.7c19.7 19.7 44.6 30.5 70.3 33.3-7.1-17-11-35.6-11-55.1-.1-13.8 2.5-27 6.2-39.7zM416 320c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96z" ], + tablet: [ 448, 512, [], "f10a", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + "tablet-alt": [ 448, 512, [], "f3fa", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm176-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h328c6.6 0 12 5.4 12 12v312z" ], + tablets: [ 640, 512, [], "f490", "M160 192C78.9 192 12.5 250.5.1 326.7c-.8 4.8 3.3 9.3 8.3 9.3h303.3c5 0 9.1-4.5 8.3-9.3C307.5 250.5 241.1 192 160 192zm151.6 176H8.4c-5 0-9.1 4.5-8.3 9.3C12.5 453.5 78.9 512 160 512s147.5-58.5 159.9-134.7c.8-4.8-3.3-9.3-8.3-9.3zM593.4 46.6c-56.5-56.5-144.2-61.4-206.9-16-4 2.9-4.3 8.9-.8 12.3L597 254.3c3.5 3.5 9.5 3.2 12.3-.8 45.5-62.7 40.6-150.4-15.9-206.9zM363 65.7c-3.5-3.5-9.5-3.2-12.3.8-45.4 62.7-40.5 150.4 15.9 206.9 56.5 56.5 144.2 61.4 206.9 15.9 4-2.9 4.3-8.9.8-12.3L363 65.7z" ], + "tachometer-alt": [ 576, 512, [], "f3fd", "M75.694 480a48.02 48.02 0 0 1-42.448-25.571C12.023 414.3 0 368.556 0 320 0 160.942 128.942 32 288 32s288 128.942 288 288c0 48.556-12.023 94.3-33.246 134.429A48.018 48.018 0 0 1 500.306 480H75.694zM512 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zM288 128c17.673 0 32-14.327 32-32 0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32zM64 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm65.608-158.392c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm316.784 0c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm-87.078 31.534c-12.627-4.04-26.133 2.92-30.173 15.544l-45.923 143.511C250.108 322.645 224 350.264 224 384c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64 0-19.773-8.971-37.447-23.061-49.187l45.919-143.498c4.039-12.625-2.92-26.133-15.544-30.173z" ], + tag: [ 512, 512, [], "f02b", "M0 252.118V48C0 21.49 21.49 0 48 0h204.118a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882L293.823 497.941c-18.745 18.745-49.137 18.745-67.882 0L14.059 286.059A48 48 0 0 1 0 252.118zM112 64c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z" ], + tags: [ 640, 512, [], "f02c", "M497.941 225.941L286.059 14.059A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v204.118a48 48 0 0 0 14.059 33.941l211.882 211.882c18.744 18.745 49.136 18.746 67.882 0l204.118-204.118c18.745-18.745 18.745-49.137 0-67.882zM112 160c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm513.941 133.823L421.823 497.941c-18.745 18.745-49.137 18.745-67.882 0l-.36-.36L527.64 323.522c16.999-16.999 26.36-39.6 26.36-63.64s-9.362-46.641-26.36-63.64L331.397 0h48.721a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882z" ], + tape: [ 640, 512, [], "f4db", "M224 192c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm400 224H380.6c41.5-40.7 67.4-97.3 67.4-160 0-123.7-100.3-224-224-224S0 132.3 0 256s100.3 224 224 224h400c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400-64c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96z" ], + tasks: [ 512, 512, [], "f0ae", "M208 132h288c8.8 0 16-7.2 16-16V76c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zM64 368c-26.5 0-48.6 21.5-48.6 48s22.1 48 48.6 48 48-21.5 48-48-21.5-48-48-48zm92.5-299l-72.2 72.2-15.6 15.6c-4.7 4.7-12.9 4.7-17.6 0L3.5 109.4c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.3c4.7-4.7 12.3-4.7 17 0l17 16.5c4.6 4.7 4.6 12.3-.1 17zm0 159.6l-72.2 72.2-15.7 15.7c-4.7 4.7-12.9 4.7-17.6 0L3.5 269c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.7c4.7-4.7 12.3-4.7 17 0l17 17c4.6 4.6 4.6 12.2-.1 16.9z" ], + taxi: [ 512, 512, [], "f1ba", "M462 241.64l-22-84.84c-9.6-35.2-41.6-60.8-76.8-60.8H352V64c0-17.67-14.33-32-32-32H192c-17.67 0-32 14.33-32 32v32h-11.2c-35.2 0-67.2 25.6-76.8 60.8l-22 84.84C21.41 248.04 0 273.47 0 304v48c0 23.63 12.95 44.04 32 55.12V448c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-40.88c19.05-11.09 32-31.5 32-55.12v-48c0-30.53-21.41-55.96-50-62.36zM96 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm20.55-112l17.2-66.36c2.23-8.16 9.59-13.64 15.06-13.64h214.4c5.47 0 12.83 5.48 14.85 12.86L395.45 240h-278.9zM416 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + terminal: [ 640, 512, [], "f120", "M257.981 272.971L63.638 467.314c-9.373 9.373-24.569 9.373-33.941 0L7.029 444.647c-9.357-9.357-9.375-24.522-.04-33.901L161.011 256 6.99 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L257.981 239.03c9.373 9.372 9.373 24.568 0 33.941zM640 456v-32c0-13.255-10.745-24-24-24H312c-13.255 0-24 10.745-24 24v32c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z" ], + "text-height": [ 576, 512, [], "f034", "M16 32h288c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96h-54.761v320H232c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H88c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm475.308 4.685l79.995 80.001C581.309 126.693 574.297 144 559.99 144H512v224h48c15.639 0 20.635 17.991 11.313 27.314l-79.995 80.001c-6.247 6.247-16.381 6.245-22.626 0l-79.995-80.001C378.691 385.307 385.703 368 400.01 368H448V144h-48c-15.639 0-20.635-17.991-11.313-27.314l79.995-80.001c6.247-6.248 16.381-6.245 22.626 0z" ], + "text-width": [ 448, 512, [], "f035", "M16 32h416c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96H261.743v128H296c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H152c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm427.315 340.682l-80.001-79.995C353.991 283.365 336 288.362 336 304v48H112v-47.99c0-14.307-17.307-21.319-27.314-11.313L4.685 372.692c-6.245 6.245-6.247 16.379 0 22.626l80.001 79.995C94.009 484.635 112 479.638 112 464v-48h224v47.99c0 14.307 17.307 21.319 27.314 11.313l80.001-79.995c6.245-6.245 6.248-16.379 0-22.626z" ], + th: [ 512, 512, [], "f00a", "M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z" ], + "th-large": [ 512, 512, [], "f009", "M296 32h192c13.255 0 24 10.745 24 24v160c0 13.255-10.745 24-24 24H296c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24zm-80 0H24C10.745 32 0 42.745 0 56v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zM0 296v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm296 184h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H296c-13.255 0-24 10.745-24 24v160c0 13.255 10.745 24 24 24z" ], + "th-list": [ 512, 512, [], "f00b", "M149.333 216v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zM125.333 32H24C10.745 32 0 42.745 0 56v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zm80 448H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm-24-424v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24zm24 264H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24z" ], + thermometer: [ 512, 512, [], "f491", "M476.8 20.4c-37.5-30.7-95.5-26.3-131.9 10.2l-45.7 46 50.5 50.5c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.4-50.5-45.1 45.4 50.3 50.4c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L209 167.4l-45.1 45.4L214 263c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.1-50.2L96 281.1V382L7 471c-9.4 9.4-9.4 24.6 0 33.9 9.4 9.4 24.6 9.4 33.9 0l89-89h99.9L484 162.6c34.9-34.9 42.2-101.5-7.2-142.2z" ], + "thermometer-empty": [ 256, 512, [], "f2cb", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z" ], + "thermometer-full": [ 256, 512, [], "f2c7", "M224 96c0-53.019-42.981-96-96-96S32 42.981 32 96v203.347C12.225 321.756.166 351.136.002 383.333c-.359 70.303 56.787 128.176 127.089 128.664.299.002.61.003.909.003 70.698 0 128-57.304 128-128 0-32.459-12.088-62.09-32-84.653V96zm-96 368l-.576-.002c-43.86-.304-79.647-36.544-79.423-80.42.173-33.98 19.266-51.652 31.999-66.08V96c0-26.467 21.533-48 48-48s48 21.533 48 48v221.498c12.63 14.312 32 32.164 32 66.502 0 44.112-35.888 80-80 80zm64-80c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V96c0-17.673 14.327-32 32-32s32 14.327 32 32v232.583c19.124 11.068 32 31.732 32 55.417z" ], + "thermometer-half": [ 256, 512, [], "f2c9", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V224c0-17.673 14.327-32 32-32s32 14.327 32 32v104.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z" ], + "thermometer-quarter": [ 256, 512, [], "f2ca", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V288c0-17.673 14.327-32 32-32s32 14.327 32 32v40.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z" ], + "thermometer-three-quarters": [ 256, 512, [], "f2c8", "M192 384c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-23.685 12.876-44.349 32-55.417V160c0-17.673 14.327-32 32-32s32 14.327 32 32v168.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z" ], + "thumbs-down": [ 512, 512, [], "f165", "M0 56v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56zm40 200c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24zm272 256c-20.183 0-29.485-39.293-33.931-57.795-5.206-21.666-10.589-44.07-25.393-58.902-32.469-32.524-49.503-73.967-89.117-113.111a11.98 11.98 0 0 1-3.558-8.521V59.901c0-6.541 5.243-11.878 11.783-11.998 15.831-.29 36.694-9.079 52.651-16.178C256.189 17.598 295.709.017 343.995 0h2.844c42.777 0 93.363.413 113.774 29.737 8.392 12.057 10.446 27.034 6.148 44.632 16.312 17.053 25.063 48.863 16.382 74.757 17.544 23.432 19.143 56.132 9.308 79.469l.11.11c11.893 11.949 19.523 31.259 19.439 49.197-.156 30.352-26.157 58.098-59.553 58.098H350.723C358.03 364.34 384 388.132 384 430.548 384 504 336 512 312 512z" ], + "thumbs-up": [ 512, 512, [], "f164", "M104 224H24c-13.255 0-24 10.745-24 24v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V248c0-13.255-10.745-24-24-24zM64 472c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zM384 81.452c0 42.416-25.97 66.208-33.277 94.548h101.723c33.397 0 59.397 27.746 59.553 58.098.084 17.938-7.546 37.249-19.439 49.197l-.11.11c9.836 23.337 8.237 56.037-9.308 79.469 8.681 25.895-.069 57.704-16.382 74.757 4.298 17.598 2.244 32.575-6.148 44.632C440.202 511.587 389.616 512 346.839 512l-2.845-.001c-48.287-.017-87.806-17.598-119.56-31.725-15.957-7.099-36.821-15.887-52.651-16.178-6.54-.12-11.783-5.457-11.783-11.998v-213.77c0-3.2 1.282-6.271 3.558-8.521 39.614-39.144 56.648-80.587 89.117-113.111 14.804-14.832 20.188-37.236 25.393-58.902C282.515 39.293 291.817 0 312 0c24 0 72 8 72 81.452z" ], + thumbtack: [ 384, 512, [], "f08d", "M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z" ], + "ticket-alt": [ 576, 512, [], "f3ff", "M128 160h320v192H128V160zm400 96c0 26.51 21.49 48 48 48v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c26.51 0 48-21.49 48-48s-21.49-48-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v96c-26.51 0-48 21.49-48 48zm-48-104c0-13.255-10.745-24-24-24H120c-13.255 0-24 10.745-24 24v208c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V152z" ], + times: [ 352, 512, [], "f00d", "M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" ], + "times-circle": [ 512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z" ], + tint: [ 352, 512, [], "f043", "M205.22 22.09c-7.94-28.78-49.44-30.12-58.44 0C100.01 179.85 0 222.72 0 333.91 0 432.35 78.72 512 176 512s176-79.65 176-178.09c0-111.75-99.79-153.34-146.78-311.82zM176 448c-61.75 0-112-50.25-112-112 0-8.84 7.16-16 16-16s16 7.16 16 16c0 44.11 35.89 80 80 80 8.84 0 16 7.16 16 16s-7.16 16-16 16z" ], + "tint-slash": [ 640, 512, [], "f5c7", "M633.82 458.1L494.97 350.78c.52-5.57 1.03-11.16 1.03-16.87 0-111.76-99.79-153.34-146.78-311.82-7.94-28.78-49.44-30.12-58.44 0-15.52 52.34-36.87 91.96-58.49 125.68L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM144 333.91C144 432.35 222.72 512 320 512c44.71 0 85.37-16.96 116.4-44.7L162.72 255.78c-11.41 23.5-18.72 48.35-18.72 78.13z" ], + tired: [ 496, 512, [], "f5c8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 288c51.9 0 115.3 43.8 123.2 106.7 1.7 13.6-8 24.6-17.7 20.4-25.9-11.1-64.4-17.4-105.5-17.4s-79.6 6.3-105.5 17.4c-9.8 4.2-19.4-7-17.7-20.4C132.7 331.8 196.1 288 248 288z" ], + "toggle-off": [ 576, 512, [], "f204", "M384 64H192C85.961 64 0 149.961 0 256s85.961 192 192 192h192c106.039 0 192-85.961 192-192S490.039 64 384 64zM64 256c0-70.741 57.249-128 128-128 70.741 0 128 57.249 128 128 0 70.741-57.249 128-128 128-70.741 0-128-57.249-128-128zm320 128h-48.905c65.217-72.858 65.236-183.12 0-256H384c70.741 0 128 57.249 128 128 0 70.74-57.249 128-128 128z" ], + "toggle-on": [ 576, 512, [], "f205", "M576 256c0 106.039-85.961 192-192 192H192C85.961 448 0 362.039 0 256S85.961 64 192 64h192c106.039 0 192 85.961 192 192zM384 128c-70.741 0-128 57.249-128 128 0 70.741 57.249 128 128 128 70.741 0 128-57.249 128-128 0-70.741-57.249-128-128-128" ], + toolbox: [ 512, 512, [], "f552", "M502.63 214.63l-45.25-45.25c-6-6-14.14-9.37-22.63-9.37H384V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v80H77.25c-8.49 0-16.62 3.37-22.63 9.37L9.37 214.63c-6 6-9.37 14.14-9.37 22.63V320h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-82.75c0-8.48-3.37-16.62-9.37-22.62zM320 160H192V96h128v64zm64 208c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H192v16c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H0v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96H384v16z" ], + tooth: [ 448, 512, [], "f5c9", "M443.98 96.25c-11.01-45.22-47.11-82.06-92.01-93.72-32.19-8.36-63 5.1-89.14 24.33-3.25 2.39-6.96 3.73-10.5 5.48l28.32 18.21c7.42 4.77 9.58 14.67 4.8 22.11-4.46 6.95-14.27 9.86-22.11 4.8L162.83 12.84c-20.7-10.85-43.38-16.4-66.81-10.31-44.9 11.67-81 48.5-92.01 93.72-10.13 41.62-.42 80.81 21.5 110.43 23.36 31.57 32.68 68.66 36.29 107.35 4.4 47.16 10.33 94.16 20.94 140.32l7.8 33.95c3.19 13.87 15.49 23.7 29.67 23.7 13.97 0 26.15-9.55 29.54-23.16l34.47-138.42c4.56-18.32 20.96-31.16 39.76-31.16s35.2 12.85 39.76 31.16l34.47 138.42c3.39 13.61 15.57 23.16 29.54 23.16 14.18 0 26.48-9.83 29.67-23.7l7.8-33.95c10.61-46.15 16.53-93.16 20.94-140.32 3.61-38.7 12.93-75.78 36.29-107.35 21.95-29.61 31.66-68.8 21.53-110.43z" ], + trademark: [ 640, 512, [], "f25c", "M97.119 163.133H12c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h248.559c6.627 0 12 5.373 12 12v43.133c0 6.627-5.373 12-12 12H175.44V404c0 6.627-5.373 12-12 12h-54.322c-6.627 0-12-5.373-12-12V163.133zM329.825 96h65.425a12 12 0 0 1 11.346 8.093l43.759 127.068c7.161 20.588 16.111 52.812 16.111 52.812h.896s8.95-32.224 16.111-52.812l43.758-127.068A12 12 0 0 1 538.577 96h65.41a12 12 0 0 1 11.961 11.03l24.012 296c.567 6.987-4.951 12.97-11.961 12.97h-54.101a12 12 0 0 1-11.972-11.182l-9.082-132.93c-1.79-24.168 0-53.706 0-53.706h-.896s-10.741 33.566-17.902 53.706l-30.7 84.731a12 12 0 0 1-11.282 7.912h-50.302a12 12 0 0 1-11.282-7.912l-30.7-84.731c-7.161-20.14-17.903-53.706-17.903-53.706h-.895s1.79 29.538 0 53.706l-9.082 132.93c-.428 6.295-5.66 11.182-11.97 11.182H305.4c-7.017 0-12.536-5.994-11.959-12.987l24.425-296A11.999 11.999 0 0 1 329.825 96z" ], + train: [ 448, 512, [], "f238", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zm-48 136V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24zm-176 64c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56z" ], + transgender: [ 384, 512, [], "f224", "M372 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C198.5 104.1 172.2 96 144 96 64.5 96 0 160.5 0 240c0 68.5 47.9 125.9 112 140.4V408H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM144 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" ], + "transgender-alt": [ 480, 512, [], "f225", "M468 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C294.5 104.1 268.2 96 240 96c-28.2 0-54.5 8.1-76.7 22.1l-16.5-16.5 19.8-19.8c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0l-19.8 19.8-19-19 16.9-16.9C107.1 12.9 101.7 0 91 0H12C5.4 0 0 5.4 0 12v79c0 10.7 12.9 16 20.5 8.5l16.9-16.9 19 19-19.8 19.8c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l19.8-19.8 16.5 16.5C104.1 185.5 96 211.8 96 240c0 68.5 47.9 125.9 112 140.4V408h-36c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM240 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" ], + trash: [ 448, 512, [], "f1f8", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm415.2 56.7L394.8 467c-1.6 25.3-22.6 45-47.9 45H101.1c-25.3 0-46.3-19.7-47.9-45L32.8 140.7c-.4-6.9 5.1-12.7 12-12.7h358.5c6.8 0 12.3 5.8 11.9 12.7z" ], + "trash-alt": [ 448, 512, [], "f2ed", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm416 56v324c0 26.5-21.5 48-48 48H80c-26.5 0-48-21.5-48-48V140c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12zm-272 68c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208z" ], + tree: [ 384, 512, [], "f1bb", "M377.33 375.429L293.906 288H328c21.017 0 31.872-25.207 17.448-40.479L262.79 160H296c20.878 0 31.851-24.969 17.587-40.331l-104-112.003c-9.485-10.214-25.676-10.229-35.174 0l-104 112.003C56.206 134.969 67.037 160 88 160h33.21l-82.659 87.521C24.121 262.801 34.993 288 56 288h34.094L6.665 375.429C-7.869 390.655 2.925 416 24.025 416H144c0 32.781-11.188 49.26-33.995 67.506C98.225 492.93 104.914 512 120 512h144c15.086 0 21.776-19.069 9.995-28.494-19.768-15.814-33.992-31.665-33.995-67.496V416h119.97c21.05 0 31.929-25.309 17.36-40.571z" ], + trophy: [ 576, 512, [], "f091", "M552 64H448V24c0-13.3-10.7-24-24-24H152c-13.3 0-24 10.7-24 24v40H24C10.7 64 0 74.7 0 88v56c0 35.7 22.5 72.4 61.9 100.7 31.5 22.7 69.8 37.1 110 41.7C203.3 338.5 240 360 240 360v72h-48c-35.3 0-64 20.7-64 56v12c0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12v-12c0-35.3-28.7-56-64-56h-48v-72s36.7-21.5 68.1-73.6c40.3-4.6 78.6-19 110-41.7 39.3-28.3 61.9-65 61.9-100.7V88c0-13.3-10.7-24-24-24zM99.3 192.8C74.9 175.2 64 155.6 64 144v-16h64.2c1 32.6 5.8 61.2 12.8 86.2-15.1-5.2-29.2-12.4-41.7-21.4zM512 144c0 16.1-17.7 36.1-35.3 48.8-12.5 9-26.7 16.2-41.8 21.4 7-25 11.8-53.6 12.8-86.2H512v16z" ], + truck: [ 640, 512, [], "f0d1", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z" ], + "truck-loading": [ 640, 512, [], "f4de", "M50.2 375.6c2.3 8.5 11.1 13.6 19.6 11.3l216.4-58c8.5-2.3 13.6-11.1 11.3-19.6l-49.7-185.5c-2.3-8.5-11.1-13.6-19.6-11.3L151 133.3l24.8 92.7-61.8 16.5-24.8-92.7-77.3 20.7C3.4 172.8-1.7 181.6.6 190.1l49.6 185.5zM384 0c-17.7 0-32 14.3-32 32v323.6L5.9 450c-4.3 1.2-6.8 5.6-5.6 9.8l12.6 46.3c1.2 4.3 5.6 6.8 9.8 5.6l393.7-107.4C418.8 464.1 467.6 512 528 512c61.9 0 112-50.1 112-112V0H384zm144 448c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z" ], + "truck-moving": [ 640, 512, [], "f4df", "M621.3 237.3l-58.5-58.5c-12-12-28.3-18.7-45.3-18.7H480V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v336c0 44.2 35.8 80 80 80 26.3 0 49.4-12.9 64-32.4 14.6 19.6 37.7 32.4 64 32.4 44.2 0 80-35.8 80-80 0-5.5-.6-10.8-1.6-16h163.2c-1.1 5.2-1.6 10.5-1.6 16 0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H624c8.8 0 16-7.2 16-16v-85.5c0-17-6.7-33.2-18.7-45.2zM80 432c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm128 0c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm272-224h37.5c4.3 0 8.3 1.7 11.3 4.7l43.3 43.3H480v-48zm48 224c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32z" ], + tshirt: [ 640, 512, [], "f553", "M631.2 96.5L436.5 0C416.4 27.8 371.9 47.2 320 47.2S223.6 27.8 203.5 0L8.8 96.5c-7.9 4-11.1 13.6-7.2 21.5l57.2 114.5c4 7.9 13.6 11.1 21.5 7.2l56.6-27.7c10.6-5.2 23 2.5 23 14.4V480c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V226.3c0-11.8 12.4-19.6 23-14.4l56.6 27.7c7.9 4 17.5.8 21.5-7.2L638.3 118c4-7.9.8-17.6-7.1-21.5z" ], + tty: [ 512, 512, [], "f1e4", "M5.37 103.822c138.532-138.532 362.936-138.326 501.262 0 6.078 6.078 7.074 15.496 2.583 22.681l-43.214 69.138a18.332 18.332 0 0 1-22.356 7.305l-86.422-34.569a18.335 18.335 0 0 1-11.434-18.846L351.741 90c-62.145-22.454-130.636-21.986-191.483 0l5.953 59.532a18.331 18.331 0 0 1-11.434 18.846l-86.423 34.568a18.334 18.334 0 0 1-22.356-7.305L2.787 126.502a18.333 18.333 0 0 1 2.583-22.68zM96 308v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H92c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zM96 500v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H140c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z" ], + tv: [ 640, 512, [], "f26c", "M592 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h245.1v32h-160c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32-14.3 32-32s-14.3-32-32-32h-160v-32H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h512v288z" ], + umbrella: [ 576, 512, [], "f0e9", "M557.011 267.631c-51.432-45.217-107.572-43.698-158.567 30.731-5.298 7.861-14.906 7.165-19.736 0-2.483-3.624-32.218-60.808-90.708-60.808-45.766 0-70.542 31.378-90.709 60.808-4.829 7.165-14.436 7.861-19.734 0-50.904-74.285-106.613-76.406-158.567-30.731-10.21 8.264-20.912-1.109-18.696-9.481C32.146 134.573 158.516 64.612 288.001 64.612c128.793 0 256.546 69.961 287.706 193.538 2.206 8.322-8.426 17.793-18.696 9.481zM256 261.001V416c0 17.645-14.355 32-32 32s-32-14.355-32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 52.935 43.065 96 96 96s96-43.065 96-96V261.288c-21.836-10.806-45.425-9.737-64-.287zm64-211.007V32c0-17.673-14.327-32-32-32s-32 14.327-32 32v17.987a372.105 372.105 0 0 1 64 .007z" ], + "umbrella-beach": [ 640, 512, [], "f5ca", "M115.38 136.9l102.11 37.18c35.19-81.54 86.21-144.29 139-173.7-95.88-4.89-188.78 36.96-248.53 111.8-6.69 8.4-2.66 21.05 7.42 24.72zm132.25 48.16l238.48 86.83c35.76-121.38 18.7-231.66-42.63-253.98-7.4-2.7-15.13-4-23.09-4-58.02.01-128.27 69.17-172.76 171.15zM521.48 60.5c6.22 16.3 10.83 34.6 13.2 55.19 5.74 49.89-1.42 108.23-18.95 166.98l102.62 37.36c10.09 3.67 21.31-3.43 21.57-14.17 2.32-95.69-41.91-187.44-118.44-245.36zM560 447.98H321.06L386 269.5l-60.14-21.9-72.9 200.37H16c-8.84 0-16 7.16-16 16.01v32.01C0 504.83 7.16 512 16 512h544c8.84 0 16-7.17 16-16.01v-32.01c0-8.84-7.16-16-16-16z" ], + underline: [ 448, 512, [], "f0cd", "M224.264 388.24c-91.669 0-156.603-51.165-156.603-151.392V64H39.37c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h137.39c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.813v172.848c0 53.699 28.314 79.444 76.317 79.444 46.966 0 75.796-25.434 75.796-79.965V64h-28.291c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h136.868c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.291v172.848c0 99.405-64.881 151.392-156.082 151.392zM16 448h416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16z" ], + undo: [ 512, 512, [], "f0e2", "M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z" ], + "undo-alt": [ 512, 512, [], "f2ea", "M255.545 8c-66.269.119-126.438 26.233-170.86 68.685L48.971 40.971C33.851 25.851 8 36.559 8 57.941V192c0 13.255 10.745 24 24 24h134.059c21.382 0 32.09-25.851 16.971-40.971l-41.75-41.75c30.864-28.899 70.801-44.907 113.23-45.273 92.398-.798 170.283 73.977 169.484 169.442C423.236 348.009 349.816 424 256 424c-41.127 0-79.997-14.678-110.63-41.556-4.743-4.161-11.906-3.908-16.368.553L89.34 422.659c-4.872 4.872-4.631 12.815.482 17.433C133.798 479.813 192.074 504 256 504c136.966 0 247.999-111.033 248-247.998C504.001 119.193 392.354 7.755 255.545 8z" ], + "universal-access": [ 512, 512, [], "f29a", "M256 48c114.953 0 208 93.029 208 208 0 114.953-93.029 208-208 208-114.953 0-208-93.029-208-208 0-114.953 93.029-208 208-208m0-40C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 56C149.961 64 64 149.961 64 256s85.961 192 192 192 192-85.961 192-192S362.039 64 256 64zm0 44c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36zm117.741 98.023c-28.712 6.779-55.511 12.748-82.14 15.807.851 101.023 12.306 123.052 25.037 155.621 3.617 9.26-.957 19.698-10.217 23.315-9.261 3.617-19.699-.957-23.316-10.217-8.705-22.308-17.086-40.636-22.261-78.549h-9.686c-5.167 37.851-13.534 56.208-22.262 78.549-3.615 9.255-14.05 13.836-23.315 10.217-9.26-3.617-13.834-14.056-10.217-23.315 12.713-32.541 24.185-54.541 25.037-155.621-26.629-3.058-53.428-9.027-82.141-15.807-8.6-2.031-13.926-10.648-11.895-19.249s10.647-13.926 19.249-11.895c96.686 22.829 124.283 22.783 220.775 0 8.599-2.03 17.218 3.294 19.249 11.895 2.029 8.601-3.297 17.219-11.897 19.249z" ], + university: [ 512, 512, [], "f19c", "M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z" ], + unlink: [ 512, 512, [], "f127", "M304.083 405.907c4.686 4.686 4.686 12.284 0 16.971l-44.674 44.674c-59.263 59.262-155.693 59.266-214.961 0-59.264-59.265-59.264-155.696 0-214.96l44.675-44.675c4.686-4.686 12.284-4.686 16.971 0l39.598 39.598c4.686 4.686 4.686 12.284 0 16.971l-44.675 44.674c-28.072 28.073-28.072 73.75 0 101.823 28.072 28.072 73.75 28.073 101.824 0l44.674-44.674c4.686-4.686 12.284-4.686 16.971 0l39.597 39.598zm-56.568-260.216c4.686 4.686 12.284 4.686 16.971 0l44.674-44.674c28.072-28.075 73.75-28.073 101.824 0 28.072 28.073 28.072 73.75 0 101.823l-44.675 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.598 39.598c4.686 4.686 12.284 4.686 16.971 0l44.675-44.675c59.265-59.265 59.265-155.695 0-214.96-59.266-59.264-155.695-59.264-214.961 0l-44.674 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.597 39.598zm234.828 359.28l22.627-22.627c9.373-9.373 9.373-24.569 0-33.941L63.598 7.029c-9.373-9.373-24.569-9.373-33.941 0L7.029 29.657c-9.373 9.373-9.373 24.569 0 33.941l441.373 441.373c9.373 9.372 24.569 9.372 33.941 0z" ], + unlock: [ 448, 512, [], "f09c", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z" ], + "unlock-alt": [ 448, 512, [], "f13e", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zM264 408c0 22.1-17.9 40-40 40s-40-17.9-40-40v-48c0-22.1 17.9-40 40-40s40 17.9 40 40v48z" ], + upload: [ 512, 512, [], "f093", "M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z" ], + user: [ 448, 512, [], "f007", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" ], + "user-alt": [ 512, 512, [], "f406", "M256 288c79.5 0 144-64.5 144-144S335.5 0 256 0 112 64.5 112 144s64.5 144 144 144zm128 32h-55.1c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16H128C57.3 320 0 377.3 0 448v16c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-16c0-70.7-57.3-128-128-128z" ], + "user-alt-slash": [ 640, 512, [], "f4fa", "M633.8 458.1L389.6 269.3C433.8 244.7 464 198.1 464 144 464 64.5 399.5 0 320 0c-67.1 0-123 46.1-139 108.2L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM198.4 320C124.2 320 64 380.2 64 454.4v9.6c0 26.5 21.5 48 48 48h382.2L245.8 320h-47.4z" ], + "user-astronaut": [ 448, 512, [], "f4fb", "M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z" ], + "user-check": [ 640, 512, [], "f4fc", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4zm323-128.4l-27.8-28.1c-4.6-4.7-12.1-4.7-16.8-.1l-104.8 104-45.5-45.8c-4.6-4.7-12.1-4.7-16.8-.1l-28.1 27.9c-4.7 4.6-4.7 12.1-.1 16.8l81.7 82.3c4.6 4.7 12.1 4.7 16.8.1l141.3-140.2c4.6-4.7 4.7-12.2.1-16.8z" ], + "user-circle": [ 496, 512, [], "f2bd", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 96c48.6 0 88 39.4 88 88s-39.4 88-88 88-88-39.4-88-88 39.4-88 88-88zm0 344c-58.7 0-111.3-26.6-146.5-68.2 18.8-35.4 55.6-59.8 98.5-59.8 2.4 0 4.8.4 7.1 1.1 13 4.2 26.6 6.9 40.9 6.9 14.3 0 28-2.7 40.9-6.9 2.3-.7 4.7-1.1 7.1-1.1 42.9 0 79.7 24.4 98.5 59.8C359.3 421.4 306.7 448 248 448z" ], + "user-clock": [ 640, 512, [], "f4fd", "M496 224c-79.6 0-144 64.4-144 144s64.4 144 144 144 144-64.4 144-144-64.4-144-144-144zm64 150.3c0 5.3-4.4 9.7-9.7 9.7h-60.6c-5.3 0-9.7-4.4-9.7-9.7v-76.6c0-5.3 4.4-9.7 9.7-9.7h12.6c5.3 0 9.7 4.4 9.7 9.7V352h38.3c5.3 0 9.7 4.4 9.7 9.7v12.6zM320 368c0-27.8 6.7-54.1 18.2-77.5-8-1.5-16.2-2.5-24.6-2.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h347.1c-45.3-31.9-75.1-84.5-75.1-144zm-96-112c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128z" ], + "user-cog": [ 640, 512, [], "f4fe", "M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z" ], + "user-edit": [ 640, 512, [], "f4ff", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h274.9c-2.4-6.8-3.4-14-2.6-21.3l6.8-60.9 1.2-11.1 7.9-7.9 77.3-77.3c-24.5-27.7-60-45.5-99.9-45.5zm45.3 145.3l-6.8 61c-1.1 10.2 7.5 18.8 17.6 17.6l60.9-6.8 137.9-137.9-71.7-71.7-137.9 137.8zM633 268.9L595.1 231c-9.3-9.3-24.5-9.3-33.8 0l-37.8 37.8-4.1 4.1 71.8 71.7 41.8-41.8c9.3-9.4 9.3-24.5 0-33.9z" ], + "user-friends": [ 640, 512, [], "f500", "M192 256c61.9 0 112-50.1 112-112S253.9 32 192 32 80 82.1 80 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C51.6 288 0 339.6 0 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zM480 256c53 0 96-43 96-96s-43-96-96-96-96 43-96 96 43 96 96 96zm48 32h-3.8c-13.9 4.8-28.6 8-44.2 8s-30.3-3.2-44.2-8H432c-20.4 0-39.2 5.9-55.7 15.4 24.4 26.3 39.7 61.2 39.7 99.8v38.4c0 2.2-.5 4.3-.6 6.4H592c26.5 0 48-21.5 48-48 0-61.9-50.1-112-112-112z" ], + "user-graduate": [ 448, 512, [], "f501", "M319.4 320.6L224 416l-95.4-95.4C57.1 323.7 0 382.2 0 454.4v9.6c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-9.6c0-72.2-57.1-130.7-128.6-133.8zM13.6 79.8l6.4 1.5v58.4c-7 4.2-12 11.5-12 20.3 0 8.4 4.6 15.4 11.1 19.7L3.5 242c-1.7 6.9 2.1 14 7.6 14h41.8c5.5 0 9.3-7.1 7.6-14l-15.6-62.3C51.4 175.4 56 168.4 56 160c0-8.8-5-16.1-12-20.3V87.1l66 15.9c-8.6 17.2-14 36.4-14 57 0 70.7 57.3 128 128 128s128-57.3 128-128c0-20.6-5.3-39.8-14-57l96.3-23.2c18.2-4.4 18.2-27.1 0-31.5l-190.4-46c-13-3.1-26.7-3.1-39.7 0L13.6 48.2c-18.1 4.4-18.1 27.2 0 31.6z" ], + "user-lock": [ 640, 512, [], "f502", "M320 320c0-11.1 3.1-21.4 8.1-30.5-4.8-.5-9.5-1.5-14.5-1.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h280.9c-5.5-9.5-8.9-20.3-8.9-32V320zm-96-64c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm384 32h-32v-48c0-44.2-35.8-80-80-80s-80 35.8-80 80v48h-32c-17.7 0-32 14.3-32 32v160c0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32V320c0-17.7-14.3-32-32-32zm-80 0h-64v-48c0-17.6 14.4-32 32-32s32 14.4 32 32v48z" ], + "user-md": [ 448, 512, [], "f0f0", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zM104 424c0 13.3 10.7 24 24 24s24-10.7 24-24-10.7-24-24-24-24 10.7-24 24zm216-135.4v49c36.5 7.4 64 39.8 64 78.4v41.7c0 7.6-5.4 14.2-12.9 15.7l-32.2 6.4c-4.3.9-8.5-1.9-9.4-6.3l-3.1-15.7c-.9-4.3 1.9-8.6 6.3-9.4l19.3-3.9V416c0-62.8-96-65.1-96 1.9v26.7l19.3 3.9c4.3.9 7.1 5.1 6.3 9.4l-3.1 15.7c-.9 4.3-5.1 7.1-9.4 6.3l-31.2-4.2c-7.9-1.1-13.8-7.8-13.8-15.9V416c0-38.6 27.5-70.9 64-78.4v-45.2c-2.2.7-4.4 1.1-6.6 1.9-18 6.3-37.3 9.8-57.4 9.8s-39.4-3.5-57.4-9.8c-7.4-2.6-14.9-4.2-22.6-5.2v81.6c23.1 6.9 40 28.1 40 53.4 0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.3 16.9-46.5 40-53.4v-80.4C48.5 301 0 355.8 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-72-56.8-130.3-128-133.8z" ], + "user-minus": [ 640, 512, [], "f503", "M624 208H432c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" ], + "user-ninja": [ 448, 512, [], "f504", "M325.4 289.2L224 390.6 122.6 289.2C54 295.3 0 352.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-70.2-54-127.1-122.6-133.2zM32 192c27.3 0 51.8-11.5 69.2-29.7 15.1 53.9 64 93.7 122.8 93.7 70.7 0 128-57.3 128-128S294.7 0 224 0c-50.4 0-93.6 29.4-114.5 71.8C92.1 47.8 64 32 32 32c0 33.4 17.1 62.8 43.1 80-26 17.2-43.1 46.6-43.1 80zm144-96h96c17.7 0 32 14.3 32 32H144c0-17.7 14.3-32 32-32z" ], + "user-plus": [ 640, 512, [], "f234", "M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" ], + "user-secret": [ 448, 512, [], "f21b", "M383.9 308.3l23.9-62.6c4-10.5-3.7-21.7-15-21.7h-58.5c11-18.9 17.8-40.6 17.8-64v-.3c39.2-7.8 64-19.1 64-31.7 0-13.3-27.3-25.1-70.1-33-9.2-32.8-27-65.8-40.6-82.8-9.5-11.9-25.9-15.6-39.5-8.8l-27.6 13.8c-9 4.5-19.6 4.5-28.6 0L182.1 3.4c-13.6-6.8-30-3.1-39.5 8.8-13.5 17-31.4 50-40.6 82.8-42.7 7.9-70 19.7-70 33 0 12.6 24.8 23.9 64 31.7v.3c0 23.4 6.8 45.1 17.8 64H56.3c-11.5 0-19.2 11.7-14.7 22.3l25.8 60.2C27.3 329.8 0 372.7 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-48.4-25.8-90.4-64.1-114.1zM176 480l-41.6-192 49.6 32 24 40-32 120zm96 0l-32-120 24-40 49.6-32L272 480zm41.7-298.5c-3.9 11.9-7 24.6-16.5 33.4-10.1 9.3-48 22.4-64-25-2.8-8.4-15.4-8.4-18.3 0-17 50.2-56 32.4-64 25-9.5-8.8-12.7-21.5-16.5-33.4-.8-2.5-6.3-5.7-6.3-5.8v-10.8c28.3 3.6 61 5.8 96 5.8s67.7-2.1 96-5.8v10.8c-.1.1-5.6 3.2-6.4 5.8z" ], + "user-shield": [ 640, 512, [], "f505", "M622.3 271.1l-115.2-45c-4.1-1.6-12.6-3.7-22.2 0l-115.2 45c-10.7 4.2-17.7 14-17.7 24.9 0 111.6 68.7 188.8 132.9 213.9 9.6 3.7 18 1.6 22.2 0C558.4 489.9 640 420.5 640 296c0-10.9-7-20.7-17.7-24.9zM496 462.4V273.3l95.5 37.3c-5.6 87.1-60.9 135.4-95.5 151.8zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm96 40c0-2.5.8-4.8 1.1-7.2-2.5-.1-4.9-.8-7.5-.8h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c6.8 0 13.3-1.5 19.2-4-54-42.9-99.2-116.7-99.2-212z" ], + "user-slash": [ 640, 512, [], "f506", "M633.8 458.1L362.3 248.3C412.1 230.7 448 183.8 448 128 448 57.3 390.7 0 320 0c-67.1 0-121.5 51.8-126.9 117.4L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM96 422.4V464c0 26.5 21.5 48 48 48h350.2L207.4 290.3C144.2 301.3 96 356 96 422.4z" ], + "user-tag": [ 640, 512, [], "f507", "M630.6 364.9l-90.3-90.2c-12-12-28.3-18.7-45.3-18.7h-79.3c-17.7 0-32 14.3-32 32v79.2c0 17 6.7 33.2 18.7 45.2l90.3 90.2c12.5 12.5 32.8 12.5 45.3 0l92.5-92.5c12.6-12.5 12.6-32.7.1-45.2zm-182.8-21c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24c0 13.2-10.7 24-24 24zm-223.8-88c70.7 0 128-57.3 128-128C352 57.3 294.7 0 224 0S96 57.3 96 128c0 70.6 57.3 127.9 128 127.9zm127.8 111.2V294c-12.2-3.6-24.9-6.2-38.2-6.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 287.9 0 348.1 0 422.3v41.6c0 26.5 21.5 48 48 48h352c15.5 0 29.1-7.5 37.9-18.9l-58-58c-18.1-18.1-28.1-42.2-28.1-67.9z" ], + "user-tie": [ 448, 512, [], "f508", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm95.8 32.6L272 480l-32-136 32-56h-96l32 56-32 136-47.8-191.4C56.9 292 0 350.3 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-72.1-56.9-130.4-128.2-133.8z" ], + "user-times": [ 640, 512, [], "f235", "M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" ], + users: [ 640, 512, [], "f0c0", "M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z" ], + "users-cog": [ 640, 512, [], "f509", "M610.5 341.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 368.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm224 32c1.9 0 3.7-.5 5.6-.6 8.3-21.7 20.5-42.1 36.3-59.2 7.4-8 17.9-12.6 28.9-12.6 6.9 0 13.7 1.8 19.6 5.3l7.9 4.6c.8-.5 1.6-.9 2.4-1.4 7-14.6 11.2-30.8 11.2-48 0-61.9-50.1-112-112-112S208 82.1 208 144c0 61.9 50.1 112 112 112zm105.2 194.5c-2.3-1.2-4.6-2.6-6.8-3.9-8.2 4.8-15.3 9.8-27.5 9.8-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-10.7-34.5 24.9-49.7 25.8-50.3-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-3.8-2.2-7-5-9.8-8.1-3.3.2-6.5.6-9.8.6-24.6 0-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h255.4c-3.7-6-6.2-12.8-6.2-20.3v-9.2zM173.1 274.6C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z" ], + "utensil-spoon": [ 512, 512, [], "f2e5", "M480.1 31.9c-55-55.1-164.9-34.5-227.8 28.5-49.3 49.3-55.1 110-28.8 160.4L9 413.2c-11.6 10.5-12.1 28.5-1 39.5L59.3 504c11 11 29.1 10.5 39.5-1.1l192.4-214.4c50.4 26.3 111.1 20.5 160.4-28.8 63-62.9 83.6-172.8 28.5-227.8z" ], + utensils: [ 416, 512, [], "f2e7", "M207.9 15.2c.8 4.7 16.1 94.5 16.1 128.8 0 52.3-27.8 89.6-68.9 104.6L168 486.7c.7 13.7-10.2 25.3-24 25.3H80c-13.7 0-24.7-11.5-24-25.3l12.9-238.1C27.7 233.6 0 196.2 0 144 0 109.6 15.3 19.9 16.1 15.2 19.3-5.1 61.4-5.4 64 16.3v141.2c1.3 3.4 15.1 3.2 16 0 1.4-25.3 7.9-139.2 8-141.8 3.3-20.8 44.7-20.8 47.9 0 .2 2.7 6.6 116.5 8 141.8.9 3.2 14.8 3.4 16 0V16.3c2.6-21.6 44.8-21.4 48-1.1zm119.2 285.7l-15 185.1c-1.2 14 9.9 26 23.9 26h56c13.3 0 24-10.7 24-24V24c0-13.2-10.7-24-24-24-82.5 0-221.4 178.5-64.9 300.9z" ], + "vector-square": [ 512, 512, [], "f5cb", "M512 128V32c0-17.67-14.33-32-32-32h-96c-17.67 0-32 14.33-32 32H160c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32v192c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32h192c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32V160c17.67 0 32-14.33 32-32zm-96-64h32v32h-32V64zM64 64h32v32H64V64zm32 384H64v-32h32v32zm352 0h-32v-32h32v32zm-32-96h-32c-17.67 0-32 14.33-32 32v32H160v-32c0-17.67-14.33-32-32-32H96V160h32c17.67 0 32-14.33 32-32V96h192v32c0 17.67 14.33 32 32 32h32v192z" ], + venus: [ 288, 512, [], "f221", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z" ], + "venus-double": [ 512, 512, [], "f226", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80zm336 140.4V368h36c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-36v36c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-36h-36c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h36v-51.6c-21.2-4.8-40.6-14.3-57.2-27.3 14-16.7 25-36 32.1-57.1 14.5 14.8 34.7 24 57.1 24 44.1 0 80-35.9 80-80s-35.9-80-80-80c-22.3 0-42.6 9.2-57.1 24-7.1-21.1-18-40.4-32.1-57.1C303.4 43.6 334.3 32 368 32c79.5 0 144 64.5 144 144 0 68.5-47.9 125.9-112 140.4z" ], + "venus-mars": [ 576, 512, [], "f228", "M564 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C422.5 72.1 396.2 64 368 64c-33.7 0-64.6 11.6-89.2 30.9 14 16.7 25 36 32.1 57.1 14.5-14.8 34.7-24 57.1-24 44.1 0 80 35.9 80 80s-35.9 80-80 80c-22.3 0-42.6-9.2-57.1-24-7.1 21.1-18 40.4-32.1 57.1 24.5 19.4 55.5 30.9 89.2 30.9 79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 64C64.5 64 0 128.5 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.6 112-71.9 112-140.4 0-79.5-64.5-144-144-144zm0 224c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" ], + vial: [ 480, 512, [], "f492", "M477.7 186.1L309.5 18.3c-3.1-3.1-8.2-3.1-11.3 0l-34 33.9c-3.1 3.1-3.1 8.2 0 11.3l11.2 11.1L33 316.5c-38.8 38.7-45.1 102-9.4 143.5 20.6 24 49.5 36 78.4 35.9 26.4 0 52.8-10 72.9-30.1l246.3-245.7 11.2 11.1c3.1 3.1 8.2 3.1 11.3 0l34-33.9c3.1-3 3.1-8.1 0-11.2zM318 256H161l148-147.7 78.5 78.3L318 256z" ], + vials: [ 640, 512, [], "f493", "M72 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H72c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64zm480 384H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM360 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64z" ], + video: [ 576, 512, [], "f03d", "M336.2 64H47.8C21.4 64 0 85.4 0 111.8v288.4C0 426.6 21.4 448 47.8 448h288.4c26.4 0 47.8-21.4 47.8-47.8V111.8c0-26.4-21.4-47.8-47.8-47.8zm189.4 37.7L416 177.3v157.4l109.6 75.5c21.2 14.6 50.4-.3 50.4-25.8V127.5c0-25.4-29.1-40.4-50.4-25.8z" ], + "video-slash": [ 640, 512, [], "f4e2", "M633.8 458.1l-55-42.5c15.4-1.4 29.2-13.7 29.2-31.1v-257c0-25.5-29.1-40.4-50.4-25.8L448 177.3v137.2l-32-24.7v-178c0-26.4-21.4-47.8-47.8-47.8H123.9L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4L42.7 82 416 370.6l178.5 138c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.5-6.9 4.2-17-2.8-22.4zM32 400.2c0 26.4 21.4 47.8 47.8 47.8h288.4c11.2 0 21.4-4 29.6-10.5L32 154.7v245.5z" ], + "volleyball-ball": [ 495, 512, [], "f45f", "M223.3 243.4c-.9-37-8.6-72.8-22.7-105.7-90.8 42.4-157.5 122.4-180.3 216.8 13.4 30.8 32.9 58.3 56.9 81.1 22.7-79.2 74.2-147.8 146.1-192.2zM186.4 109c-15-26.4-34.5-50.1-57.4-70.7C38 88.1-15.8 191.2 4 300.5c33.4-83.1 98.4-152 182.4-191.5zM374 274.1c8.6-99.8-27.3-197.5-97.5-264.4-14.7-1.7-51.6-5.5-98.9 8.5 57.3 59.3 91 138.2 93.5 222.7 32.5 17.7 67.3 29 102.9 33.2zm-124.7 9.5c-31.6 19.3-58.7 43.9-80.2 72.6 82 57.3 184.5 75.1 277.5 47.8 19.7-26.4 34.2-56.8 42.2-89.9-26.6 6.6-53.7 10.4-80.9 10.4-54.6-.1-108.9-14.1-158.6-40.9zM151 383.3c-15.2 26-25.7 54.4-32.1 84.2 37.6 23 81.7 36.5 129.1 36.5 61 0 116.7-22.1 159.9-58.6C295 461.5 204.6 420.6 151 383.3zM331.3 22.7c55.3 70.4 82.5 161.2 74.6 253.6 30.3.2 60.5-4.8 89.7-14.2 0-2 .3-4 .3-6 0-107.8-68.7-199.1-164.6-233.4z" ], + "volume-down": [ 384, 512, [], "f027", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zM384 256c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z" ], + "volume-off": [ 256, 512, [], "f026", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971z" ], + "volume-up": [ 576, 512, [], "f028", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zm182.056-77.876C422.982.92 403.283 5.668 394.061 20.745c-9.221 15.077-4.473 34.774 10.604 43.995C468.967 104.063 512 174.983 512 256c0 73.431-36.077 142.292-96.507 184.206-14.522 10.072-18.129 30.01-8.057 44.532 10.076 14.528 30.016 18.126 44.531 8.057C529.633 438.927 576 350.406 576 256c0-103.244-54.579-194.877-137.944-245.859zM480 256c0-68.547-36.15-129.777-91.957-163.901-15.076-9.22-34.774-4.471-43.994 10.607-9.22 15.078-4.471 34.774 10.607 43.994C393.067 170.188 416 211.048 416 256c0 41.964-20.62 81.319-55.158 105.276-14.521 10.073-18.128 30.01-8.056 44.532 6.216 8.96 16.185 13.765 26.322 13.765a31.862 31.862 0 0 0 18.21-5.709C449.091 377.953 480 318.938 480 256zm-96 0c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z" ], + walking: [ 320, 512, [], "f554", "M208 96c26.5 0 48-21.5 48-48S234.5 0 208 0s-48 21.5-48 48 21.5 48 48 48zm94.5 149.1l-23.3-11.8-9.7-29.4c-14.7-44.6-55.7-75.8-102.2-75.9-36-.1-55.9 10.1-93.3 25.2-21.6 8.7-39.3 25.2-49.7 46.2L17.6 213c-7.8 15.8-1.5 35 14.2 42.9 15.6 7.9 34.6 1.5 42.5-14.3L81 228c3.5-7 9.3-12.5 16.5-15.4l26.8-10.8-15.2 60.7c-5.2 20.8.4 42.9 14.9 58.8l59.9 65.4c7.2 7.9 12.3 17.4 14.9 27.7l18.3 73.3c4.3 17.1 21.7 27.6 38.8 23.3 17.1-4.3 27.6-21.7 23.3-38.8l-22.2-89c-2.6-10.3-7.7-19.9-14.9-27.7l-45.5-49.7 17.2-68.7 5.5 16.5c5.3 16.1 16.7 29.4 31.7 37l23.3 11.8c15.6 7.9 34.6 1.5 42.5-14.3 7.7-15.7 1.4-35.1-14.3-43zM73.6 385.8c-3.2 8.1-8 15.4-14.2 21.5l-50 50.1c-12.5 12.5-12.5 32.8 0 45.3s32.7 12.5 45.2 0l59.4-59.4c6.1-6.1 10.9-13.4 14.2-21.5l13.5-33.8c-55.3-60.3-38.7-41.8-47.4-53.7l-20.7 51.5z" ], + wallet: [ 512, 512, [], "f555", "M461.2 128H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h384c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h397.2c28.02 0 50.8-21.53 50.8-48V176c0-26.47-22.78-48-50.8-48zM416 336c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + warehouse: [ 640, 512, [], "f494", "M504 352H136.4c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0 96H136.1c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0-192H136.6c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm106.5-139L338.4 3.7a48.15 48.15 0 0 0-36.9 0L29.5 117C11.7 124.5 0 141.9 0 161.3V504c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V256c0-17.6 14.6-32 32.6-32h382.8c18 0 32.6 14.4 32.6 32v248c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V161.3c0-19.4-11.7-36.8-29.5-44.3z" ], + weight: [ 512, 512, [], "f496", "M448 64h-25.98C438.44 92.28 448 125.01 448 160c0 105.87-86.13 192-192 192S64 265.87 64 160c0-34.99 9.56-67.72 25.98-96H64C28.71 64 0 92.71 0 128v320c0 35.29 28.71 64 64 64h384c35.29 0 64-28.71 64-64V128c0-35.29-28.71-64-64-64zM256 320c88.37 0 160-71.63 160-160S344.37 0 256 0 96 71.63 96 160s71.63 160 160 160zm-.3-151.94l33.58-78.36c3.5-8.17 12.94-11.92 21.03-8.41 8.12 3.48 11.88 12.89 8.41 21l-33.67 78.55C291.73 188 296 197.45 296 208c0 22.09-17.91 40-40 40s-40-17.91-40-40c0-21.98 17.76-39.77 39.7-39.94z" ], + "weight-hanging": [ 512, 512, [], "f5cd", "M510.28 445.86l-73.03-292.13c-3.8-15.19-16.44-25.72-30.87-25.72h-60.25c3.57-10.05 5.88-20.72 5.88-32 0-53.02-42.98-96-96-96s-96 42.98-96 96c0 11.28 2.3 21.95 5.88 32h-60.25c-14.43 0-27.08 10.54-30.87 25.72L1.72 445.86C-6.61 479.17 16.38 512 48.03 512h415.95c31.64 0 54.63-32.83 46.3-66.14zM256 128c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z" ], + wheelchair: [ 512, 512, [], "f193", "M496.101 385.669l14.227 28.663c3.929 7.915.697 17.516-7.218 21.445l-65.465 32.886c-16.049 7.967-35.556 1.194-43.189-15.055L331.679 320H192c-15.925 0-29.426-11.71-31.679-27.475C126.433 55.308 128.38 70.044 128 64c0-36.358 30.318-65.635 67.052-63.929 33.271 1.545 60.048 28.905 60.925 62.201.868 32.933-23.152 60.423-54.608 65.039l4.67 32.69H336c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H215.182l4.572 32H352a32 32 0 0 1 28.962 18.392L438.477 396.8l36.178-18.349c7.915-3.929 17.517-.697 21.446 7.218zM311.358 352h-24.506c-7.788 54.204-54.528 96-110.852 96-61.757 0-112-50.243-112-112 0-41.505 22.694-77.809 56.324-97.156-3.712-25.965-6.844-47.86-9.488-66.333C45.956 198.464 0 261.963 0 336c0 97.047 78.953 176 176 176 71.87 0 133.806-43.308 161.11-105.192L311.358 352z" ], + wifi: [ 640, 512, [], "f1eb", "M384 416c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm136.659-124.443c6.465-6.465 6.245-17.065-.564-23.167-113.793-101.985-286.526-101.869-400.19 0-6.809 6.102-7.029 16.702-.564 23.167l34.006 34.006c5.927 5.927 15.464 6.32 21.769.796 82.88-72.609 207.074-72.447 289.768 0 6.305 5.524 15.842 5.132 21.769-.796l34.006-34.006zm112.11-113.718c6.385-6.385 6.254-16.816-.35-22.973-175.768-163.86-449.134-163.8-624.837 0-6.604 6.157-6.735 16.589-.35 22.973l33.966 33.966c6.095 6.095 15.891 6.231 22.224.383 144.763-133.668 368.356-133.702 513.156 0 6.333 5.848 16.129 5.712 22.224-.383l33.967-33.966z" ], + "window-close": [ 512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-83.6 290.5c4.8 4.8 4.8 12.6 0 17.4l-40.5 40.5c-4.8 4.8-12.6 4.8-17.4 0L256 313.3l-66.5 67.1c-4.8 4.8-12.6 4.8-17.4 0l-40.5-40.5c-4.8-4.8-4.8-12.6 0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6 0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1 66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8 4.8 12.6 0 17.4L313.3 256l67.1 66.5z" ], + "window-maximize": [ 512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16 160H64v-84c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12v84z" ], + "window-minimize": [ 512, 512, [], "f2d1", "M464 352H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48z" ], + "window-restore": [ 512, 512, [], "f2d2", "M512 48v288c0 26.5-21.5 48-48 48h-48V176c0-44.1-35.9-80-80-80H128V48c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zM384 176v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zm-68 28c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v52h252v-52z" ], + "wine-glass": [ 288, 512, [], "f4e3", "M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40z" ], + "wine-glass-alt": [ 288, 512, [], "f5ce", "M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM61.75 48h164.5l7.17 80H54.58l7.17-80z" ], + "won-sign": [ 576, 512, [], "f159", "M564 192c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-48.028l18.572-80.61c1.732-7.518-3.978-14.694-11.693-14.694h-46.107a11.998 11.998 0 0 0-11.736 9.5L450.73 128H340.839l-19.725-85.987a12 12 0 0 0-11.696-9.317H265.43a12 12 0 0 0-11.687 9.277L233.696 128H124.975L107.5 42.299a12 12 0 0 0-11.758-9.602H53.628c-7.686 0-13.39 7.124-11.709 14.624L60 128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h62.342l7.171 32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h83.856l40.927 182.624A12 12 0 0 0 148.492 480h56.767c5.583 0 10.428-3.85 11.689-9.288L259.335 288h55.086l42.386 182.712A12 12 0 0 0 368.496 480h56.826a12 12 0 0 0 11.694-9.306L479.108 288H564c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-70.146l7.373-32H564zm-425.976 0h80.757l-7.457 32h-66.776l-6.524-32zm45.796 150.029c-6.194 25.831-6.758 47.25-7.321 47.25h-1.126s-1.689-22.05-6.758-47.25L157.599 288h38.812l-12.591 54.029zM274.182 224l1.996-8.602c1.856-7.962 3.457-15.968 4.803-23.398h11.794c1.347 7.43 2.947 15.436 4.803 23.398l1.996 8.602h-25.392zm130.959 118.029c-5.068 25.2-6.758 47.25-6.758 47.25h-1.126c-.563 0-1.126-21.42-7.321-47.25L377.542 288h39.107l-11.508 54.029zM430.281 224h-67.42l-7.34-32h81.577l-6.817 32z" ], + wrench: [ 512, 512, [], "f0ad", "M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z" ], + "x-ray": [ 640, 512, [], "f497", "M240 384c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm160 32c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zM624 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zm0 448h-48V96H64v352H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM480 248c0 4.4-3.6 8-8 8H336v32h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48v-16h-64v16c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48h64v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-32H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h136v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-24c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v24h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h136c4.4 0 8 3.6 8 8v16z" ], + "yen-sign": [ 384, 512, [], "f157", "M351.208 32h-65.277a12 12 0 0 0-10.778 6.724l-55.39 113.163c-14.513 34.704-27.133 71.932-27.133 71.932h-1.262s-12.62-37.228-27.133-71.932l-55.39-113.163A11.997 11.997 0 0 0 98.068 32H32.792c-9.057 0-14.85 9.65-10.59 17.643L102.322 200H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h88.162L152 293.228V320H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h108v92c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-92h108c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12H232v-26.772L251.838 256H340c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12h-58.322l80.12-150.357C366.058 41.65 360.266 32 351.208 32z" ] + }; + !function(c) { + try { + c(); + } catch (c) { + if (!s) throw c; + } + }(function() { + !function c(h, l) { + var v = Object.keys(l).reduce(function(c, h) { + var v = l[h]; + return v.icon ? c[v.iconName] = v.icon : c[h] = v, c; + }, {}); + "function" == typeof V.hooks.addPack ? V.hooks.addPack(h, v) : V.styles[h] = a({}, V.styles[h] || {}, v), + "fas" === h && c("fa", l); + }("fas", f); + }); +}(); \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/v4-shims.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/v4-shims.js new file mode 100644 index 0000000000..5b705d871a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/v4-shims.js @@ -0,0 +1,91 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : + typeof define === 'function' && define.amd ? define(factory) : + (global['fontawesome-free-shims'] = factory()); +}(this, (function () { 'use strict'; + +var _WINDOW = {}; +try { + if (typeof window !== 'undefined') _WINDOW = window; + +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; + + + + + +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; + + + + + + + + + +var PRODUCTION = function () { + try { + return process.env.NODE_ENV === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + + + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var shims = [["glass", null, "glass-martini"], ["meetup", "fab", null], ["star-o", "far", "star"], ["remove", null, "times"], ["close", null, "times"], ["gear", null, "cog"], ["trash-o", "far", "trash-alt"], ["file-o", "far", "file"], ["clock-o", "far", "clock"], ["arrow-circle-o-down", "far", "arrow-alt-circle-down"], ["arrow-circle-o-up", "far", "arrow-alt-circle-up"], ["play-circle-o", "far", "play-circle"], ["repeat", null, "redo"], ["rotate-right", null, "redo"], ["refresh", null, "sync"], ["list-alt", "far", null], ["dedent", null, "outdent"], ["video-camera", null, "video"], ["picture-o", "far", "image"], ["photo", "far", "image"], ["image", "far", "image"], ["pencil", null, "pencil-alt"], ["map-marker", null, "map-marker-alt"], ["pencil-square-o", "far", "edit"], ["share-square-o", "far", "share-square"], ["check-square-o", "far", "check-square"], ["arrows", null, "arrows-alt"], ["times-circle-o", "far", "times-circle"], ["check-circle-o", "far", "check-circle"], ["mail-forward", null, "share"], ["eye", "far", null], ["eye-slash", "far", null], ["warning", null, "exclamation-triangle"], ["calendar", null, "calendar-alt"], ["arrows-v", null, "arrows-alt-v"], ["arrows-h", null, "arrows-alt-h"], ["bar-chart", "far", "chart-bar"], ["bar-chart-o", "far", "chart-bar"], ["twitter-square", "fab", null], ["facebook-square", "fab", null], ["gears", null, "cogs"], ["thumbs-o-up", "far", "thumbs-up"], ["thumbs-o-down", "far", "thumbs-down"], ["heart-o", "far", "heart"], ["sign-out", null, "sign-out-alt"], ["linkedin-square", "fab", "linkedin"], ["thumb-tack", null, "thumbtack"], ["external-link", null, "external-link-alt"], ["sign-in", null, "sign-in-alt"], ["github-square", "fab", null], ["lemon-o", "far", "lemon"], ["square-o", "far", "square"], ["bookmark-o", "far", "bookmark"], ["twitter", "fab", null], ["facebook", "fab", "facebook-f"], ["facebook-f", "fab", "facebook-f"], ["github", "fab", null], ["credit-card", "far", null], ["feed", null, "rss"], ["hdd-o", "far", "hdd"], ["hand-o-right", "far", "hand-point-right"], ["hand-o-left", "far", "hand-point-left"], ["hand-o-up", "far", "hand-point-up"], ["hand-o-down", "far", "hand-point-down"], ["arrows-alt", null, "expand-arrows-alt"], ["group", null, "users"], ["chain", null, "link"], ["scissors", null, "cut"], ["files-o", "far", "copy"], ["floppy-o", "far", "save"], ["navicon", null, "bars"], ["reorder", null, "bars"], ["pinterest", "fab", null], ["pinterest-square", "fab", null], ["google-plus-square", "fab", null], ["google-plus", "fab", "google-plus-g"], ["money", "far", "money-bill-alt"], ["unsorted", null, "sort"], ["sort-desc", null, "sort-down"], ["sort-asc", null, "sort-up"], ["linkedin", "fab", "linkedin-in"], ["rotate-left", null, "undo"], ["legal", null, "gavel"], ["tachometer", null, "tachometer-alt"], ["dashboard", null, "tachometer-alt"], ["comment-o", "far", "comment"], ["comments-o", "far", "comments"], ["flash", null, "bolt"], ["clipboard", "far", null], ["paste", "far", "clipboard"], ["lightbulb-o", "far", "lightbulb"], ["exchange", null, "exchange-alt"], ["cloud-download", null, "cloud-download-alt"], ["cloud-upload", null, "cloud-upload-alt"], ["bell-o", "far", "bell"], ["cutlery", null, "utensils"], ["file-text-o", "far", "file-alt"], ["building-o", "far", "building"], ["hospital-o", "far", "hospital"], ["tablet", null, "tablet-alt"], ["mobile", null, "mobile-alt"], ["mobile-phone", null, "mobile-alt"], ["circle-o", "far", "circle"], ["mail-reply", null, "reply"], ["github-alt", "fab", null], ["folder-o", "far", "folder"], ["folder-open-o", "far", "folder-open"], ["smile-o", "far", "smile"], ["frown-o", "far", "frown"], ["meh-o", "far", "meh"], ["keyboard-o", "far", "keyboard"], ["flag-o", "far", "flag"], ["mail-reply-all", null, "reply-all"], ["star-half-o", "far", "star-half"], ["star-half-empty", "far", "star-half"], ["star-half-full", "far", "star-half"], ["code-fork", null, "code-branch"], ["chain-broken", null, "unlink"], ["shield", null, "shield-alt"], ["calendar-o", "far", "calendar"], ["maxcdn", "fab", null], ["html5", "fab", null], ["css3", "fab", null], ["ticket", null, "ticket-alt"], ["minus-square-o", "far", "minus-square"], ["level-up", null, "level-up-alt"], ["level-down", null, "level-down-alt"], ["pencil-square", null, "pen-square"], ["external-link-square", null, "external-link-square-alt"], ["compass", "far", null], ["caret-square-o-down", "far", "caret-square-down"], ["toggle-down", "far", "caret-square-down"], ["caret-square-o-up", "far", "caret-square-up"], ["toggle-up", "far", "caret-square-up"], ["caret-square-o-right", "far", "caret-square-right"], ["toggle-right", "far", "caret-square-right"], ["eur", null, "euro-sign"], ["euro", null, "euro-sign"], ["gbp", null, "pound-sign"], ["usd", null, "dollar-sign"], ["dollar", null, "dollar-sign"], ["inr", null, "rupee-sign"], ["rupee", null, "rupee-sign"], ["jpy", null, "yen-sign"], ["cny", null, "yen-sign"], ["rmb", null, "yen-sign"], ["yen", null, "yen-sign"], ["rub", null, "ruble-sign"], ["ruble", null, "ruble-sign"], ["rouble", null, "ruble-sign"], ["krw", null, "won-sign"], ["won", null, "won-sign"], ["btc", "fab", null], ["bitcoin", "fab", "btc"], ["file-text", null, "file-alt"], ["sort-alpha-asc", null, "sort-alpha-down"], ["sort-alpha-desc", null, "sort-alpha-up"], ["sort-amount-asc", null, "sort-amount-down"], ["sort-amount-desc", null, "sort-amount-up"], ["sort-numeric-asc", null, "sort-numeric-down"], ["sort-numeric-desc", null, "sort-numeric-up"], ["youtube-square", "fab", null], ["youtube", "fab", null], ["xing", "fab", null], ["xing-square", "fab", null], ["youtube-play", "fab", "youtube"], ["dropbox", "fab", null], ["stack-overflow", "fab", null], ["instagram", "fab", null], ["flickr", "fab", null], ["adn", "fab", null], ["bitbucket", "fab", null], ["bitbucket-square", "fab", "bitbucket"], ["tumblr", "fab", null], ["tumblr-square", "fab", null], ["long-arrow-down", null, "long-arrow-alt-down"], ["long-arrow-up", null, "long-arrow-alt-up"], ["long-arrow-left", null, "long-arrow-alt-left"], ["long-arrow-right", null, "long-arrow-alt-right"], ["apple", "fab", null], ["windows", "fab", null], ["android", "fab", null], ["linux", "fab", null], ["dribbble", "fab", null], ["skype", "fab", null], ["foursquare", "fab", null], ["trello", "fab", null], ["gratipay", "fab", null], ["gittip", "fab", "gratipay"], ["sun-o", "far", "sun"], ["moon-o", "far", "moon"], ["vk", "fab", null], ["weibo", "fab", null], ["renren", "fab", null], ["pagelines", "fab", null], ["stack-exchange", "fab", null], ["arrow-circle-o-right", "far", "arrow-alt-circle-right"], ["arrow-circle-o-left", "far", "arrow-alt-circle-left"], ["caret-square-o-left", "far", "caret-square-left"], ["toggle-left", "far", "caret-square-left"], ["dot-circle-o", "far", "dot-circle"], ["vimeo-square", "fab", null], ["try", null, "lira-sign"], ["turkish-lira", null, "lira-sign"], ["plus-square-o", "far", "plus-square"], ["slack", "fab", null], ["wordpress", "fab", null], ["openid", "fab", null], ["institution", null, "university"], ["bank", null, "university"], ["mortar-board", null, "graduation-cap"], ["yahoo", "fab", null], ["google", "fab", null], ["reddit", "fab", null], ["reddit-square", "fab", null], ["stumbleupon-circle", "fab", null], ["stumbleupon", "fab", null], ["delicious", "fab", null], ["digg", "fab", null], ["pied-piper-pp", "fab", null], ["pied-piper-alt", "fab", null], ["drupal", "fab", null], ["joomla", "fab", null], ["spoon", null, "utensil-spoon"], ["behance", "fab", null], ["behance-square", "fab", null], ["steam", "fab", null], ["steam-square", "fab", null], ["automobile", null, "car"], ["cab", null, "taxi"], ["envelope-o", "far", "envelope"], ["deviantart", "fab", null], ["soundcloud", "fab", null], ["file-pdf-o", "far", "file-pdf"], ["file-word-o", "far", "file-word"], ["file-excel-o", "far", "file-excel"], ["file-powerpoint-o", "far", "file-powerpoint"], ["file-image-o", "far", "file-image"], ["file-photo-o", "far", "file-image"], ["file-picture-o", "far", "file-image"], ["file-archive-o", "far", "file-archive"], ["file-zip-o", "far", "file-archive"], ["file-audio-o", "far", "file-audio"], ["file-sound-o", "far", "file-audio"], ["file-video-o", "far", "file-video"], ["file-movie-o", "far", "file-video"], ["file-code-o", "far", "file-code"], ["vine", "fab", null], ["codepen", "fab", null], ["jsfiddle", "fab", null], ["life-ring", "far", null], ["life-bouy", "far", "life-ring"], ["life-buoy", "far", "life-ring"], ["life-saver", "far", "life-ring"], ["support", "far", "life-ring"], ["circle-o-notch", null, "circle-notch"], ["rebel", "fab", null], ["ra", "fab", "rebel"], ["resistance", "fab", "rebel"], ["empire", "fab", null], ["ge", "fab", "empire"], ["git-square", "fab", null], ["git", "fab", null], ["hacker-news", "fab", null], ["y-combinator-square", "fab", "hacker-news"], ["yc-square", "fab", "hacker-news"], ["tencent-weibo", "fab", null], ["qq", "fab", null], ["weixin", "fab", null], ["wechat", "fab", "weixin"], ["send", null, "paper-plane"], ["paper-plane-o", "far", "paper-plane"], ["send-o", "far", "paper-plane"], ["circle-thin", "far", "circle"], ["header", null, "heading"], ["sliders", null, "sliders-h"], ["futbol-o", "far", "futbol"], ["soccer-ball-o", "far", "futbol"], ["slideshare", "fab", null], ["twitch", "fab", null], ["yelp", "fab", null], ["newspaper-o", "far", "newspaper"], ["paypal", "fab", null], ["google-wallet", "fab", null], ["cc-visa", "fab", null], ["cc-mastercard", "fab", null], ["cc-discover", "fab", null], ["cc-amex", "fab", null], ["cc-paypal", "fab", null], ["cc-stripe", "fab", null], ["bell-slash-o", "far", "bell-slash"], ["trash", null, "trash-alt"], ["copyright", "far", null], ["eyedropper", null, "eye-dropper"], ["area-chart", null, "chart-area"], ["pie-chart", null, "chart-pie"], ["line-chart", null, "chart-line"], ["lastfm", "fab", null], ["lastfm-square", "fab", null], ["ioxhost", "fab", null], ["angellist", "fab", null], ["cc", "far", "closed-captioning"], ["ils", null, "shekel-sign"], ["shekel", null, "shekel-sign"], ["sheqel", null, "shekel-sign"], ["meanpath", "fab", "font-awesome"], ["buysellads", "fab", null], ["connectdevelop", "fab", null], ["dashcube", "fab", null], ["forumbee", "fab", null], ["leanpub", "fab", null], ["sellsy", "fab", null], ["shirtsinbulk", "fab", null], ["simplybuilt", "fab", null], ["skyatlas", "fab", null], ["diamond", "far", "gem"], ["intersex", null, "transgender"], ["facebook-official", "fab", "facebook"], ["pinterest-p", "fab", null], ["whatsapp", "fab", null], ["hotel", null, "bed"], ["viacoin", "fab", null], ["medium", "fab", null], ["y-combinator", "fab", null], ["yc", "fab", "y-combinator"], ["optin-monster", "fab", null], ["opencart", "fab", null], ["expeditedssl", "fab", null], ["battery-4", null, "battery-full"], ["battery", null, "battery-full"], ["battery-3", null, "battery-three-quarters"], ["battery-2", null, "battery-half"], ["battery-1", null, "battery-quarter"], ["battery-0", null, "battery-empty"], ["object-group", "far", null], ["object-ungroup", "far", null], ["sticky-note-o", "far", "sticky-note"], ["cc-jcb", "fab", null], ["cc-diners-club", "fab", null], ["clone", "far", null], ["hourglass-o", "far", "hourglass"], ["hourglass-1", null, "hourglass-start"], ["hourglass-2", null, "hourglass-half"], ["hourglass-3", null, "hourglass-end"], ["hand-rock-o", "far", "hand-rock"], ["hand-grab-o", "far", "hand-rock"], ["hand-paper-o", "far", "hand-paper"], ["hand-stop-o", "far", "hand-paper"], ["hand-scissors-o", "far", "hand-scissors"], ["hand-lizard-o", "far", "hand-lizard"], ["hand-spock-o", "far", "hand-spock"], ["hand-pointer-o", "far", "hand-pointer"], ["hand-peace-o", "far", "hand-peace"], ["registered", "far", null], ["creative-commons", "fab", null], ["gg", "fab", null], ["gg-circle", "fab", null], ["tripadvisor", "fab", null], ["odnoklassniki", "fab", null], ["odnoklassniki-square", "fab", null], ["get-pocket", "fab", null], ["wikipedia-w", "fab", null], ["safari", "fab", null], ["chrome", "fab", null], ["firefox", "fab", null], ["opera", "fab", null], ["internet-explorer", "fab", null], ["television", null, "tv"], ["contao", "fab", null], ["500px", "fab", null], ["amazon", "fab", null], ["calendar-plus-o", "far", "calendar-plus"], ["calendar-minus-o", "far", "calendar-minus"], ["calendar-times-o", "far", "calendar-times"], ["calendar-check-o", "far", "calendar-check"], ["map-o", "far", "map"], ["commenting", "far", "comment-dots"], ["commenting-o", "far", "comment-dots"], ["houzz", "fab", null], ["vimeo", "fab", "vimeo-v"], ["black-tie", "fab", null], ["fonticons", "fab", null], ["reddit-alien", "fab", null], ["edge", "fab", null], ["credit-card-alt", null, "credit-card"], ["codiepie", "fab", null], ["modx", "fab", null], ["fort-awesome", "fab", null], ["usb", "fab", null], ["product-hunt", "fab", null], ["mixcloud", "fab", null], ["scribd", "fab", null], ["pause-circle-o", "far", "pause-circle"], ["stop-circle-o", "far", "stop-circle"], ["bluetooth", "fab", null], ["bluetooth-b", "fab", null], ["gitlab", "fab", null], ["wpbeginner", "fab", null], ["wpforms", "fab", null], ["envira", "fab", null], ["wheelchair-alt", "fab", "accessible-icon"], ["question-circle-o", "far", "question-circle"], ["volume-control-phone", null, "phone-volume"], ["asl-interpreting", null, "american-sign-language-interpreting"], ["deafness", null, "deaf"], ["hard-of-hearing", null, "deaf"], ["glide", "fab", null], ["glide-g", "fab", null], ["signing", null, "sign-language"], ["viadeo", "fab", null], ["viadeo-square", "fab", null], ["snapchat", "fab", null], ["snapchat-ghost", "fab", null], ["snapchat-square", "fab", null], ["pied-piper", "fab", null], ["first-order", "fab", null], ["yoast", "fab", null], ["themeisle", "fab", null], ["google-plus-official", "fab", "google-plus"], ["google-plus-circle", "fab", "google-plus"], ["font-awesome", "fab", null], ["fa", "fab", "font-awesome"], ["handshake-o", "far", "handshake"], ["envelope-open-o", "far", "envelope-open"], ["linode", "fab", null], ["address-book-o", "far", "address-book"], ["vcard", null, "address-card"], ["address-card-o", "far", "address-card"], ["vcard-o", "far", "address-card"], ["user-circle-o", "far", "user-circle"], ["user-o", "far", "user"], ["id-badge", "far", null], ["drivers-license", null, "id-card"], ["id-card-o", "far", "id-card"], ["drivers-license-o", "far", "id-card"], ["quora", "fab", null], ["free-code-camp", "fab", null], ["telegram", "fab", null], ["thermometer-4", null, "thermometer-full"], ["thermometer", null, "thermometer-full"], ["thermometer-3", null, "thermometer-three-quarters"], ["thermometer-2", null, "thermometer-half"], ["thermometer-1", null, "thermometer-quarter"], ["thermometer-0", null, "thermometer-empty"], ["bathtub", null, "bath"], ["s15", null, "bath"], ["window-maximize", "far", null], ["window-restore", "far", null], ["times-rectangle", null, "window-close"], ["window-close-o", "far", "window-close"], ["times-rectangle-o", "far", "window-close"], ["bandcamp", "fab", null], ["grav", "fab", null], ["etsy", "fab", null], ["imdb", "fab", null], ["ravelry", "fab", null], ["eercast", "fab", "sellcast"], ["snowflake-o", "far", "snowflake"], ["superpowers", "fab", null], ["wpexplorer", "fab", null], ["spotify", "fab", null]]; + +bunker(function () { + if (typeof namespace.hooks.addShims === 'function') { + namespace.hooks.addShims(shims); + } else { + var _namespace$shims; + + (_namespace$shims = namespace.shims).push.apply(_namespace$shims, shims); + } +}); + +return shims; + +}))); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/v4-shims.min.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/v4-shims.min.js new file mode 100644 index 0000000000..800be4a0c8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/js/v4-shims.min.js @@ -0,0 +1,40 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +var l, a; + +l = this, a = function() { + "use strict"; + var l = {}; + try { + "undefined" != typeof window && (l = window); + } catch (l) {} + var a = (l.navigator || {}).userAgent, e = void 0 === a ? "" : a, r = l, n = (~e.indexOf("MSIE") || e.indexOf("Trident/"), + "___FONT_AWESOME___"), o = function() { + try { + return "production" === process.env.NODE_ENV; + } catch (l) { + return !1; + } + }(), u = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ], t = u.concat([ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ]); + [ "xs", "sm", "lg", "fw", "ul", "li", "border", "pull-left", "pull-right", "spin", "pulse", "rotate-90", "rotate-180", "rotate-270", "flip-horizontal", "flip-vertical", "stack", "stack-1x", "stack-2x", "inverse", "layers", "layers-text", "layers-counter" ].concat(u.map(function(l) { + return l + "x"; + })).concat(t.map(function(l) { + return "w-" + l; + })); + var f = r || {}; + f[n] || (f[n] = {}), f[n].styles || (f[n].styles = {}), f[n].hooks || (f[n].hooks = {}), + f[n].shims || (f[n].shims = []); + var i = f[n], s = [ [ "glass", null, "glass-martini" ], [ "meetup", "fab", null ], [ "star-o", "far", "star" ], [ "remove", null, "times" ], [ "close", null, "times" ], [ "gear", null, "cog" ], [ "trash-o", "far", "trash-alt" ], [ "file-o", "far", "file" ], [ "clock-o", "far", "clock" ], [ "arrow-circle-o-down", "far", "arrow-alt-circle-down" ], [ "arrow-circle-o-up", "far", "arrow-alt-circle-up" ], [ "play-circle-o", "far", "play-circle" ], [ "repeat", null, "redo" ], [ "rotate-right", null, "redo" ], [ "refresh", null, "sync" ], [ "list-alt", "far", null ], [ "dedent", null, "outdent" ], [ "video-camera", null, "video" ], [ "picture-o", "far", "image" ], [ "photo", "far", "image" ], [ "image", "far", "image" ], [ "pencil", null, "pencil-alt" ], [ "map-marker", null, "map-marker-alt" ], [ "pencil-square-o", "far", "edit" ], [ "share-square-o", "far", "share-square" ], [ "check-square-o", "far", "check-square" ], [ "arrows", null, "arrows-alt" ], [ "times-circle-o", "far", "times-circle" ], [ "check-circle-o", "far", "check-circle" ], [ "mail-forward", null, "share" ], [ "eye", "far", null ], [ "eye-slash", "far", null ], [ "warning", null, "exclamation-triangle" ], [ "calendar", null, "calendar-alt" ], [ "arrows-v", null, "arrows-alt-v" ], [ "arrows-h", null, "arrows-alt-h" ], [ "bar-chart", "far", "chart-bar" ], [ "bar-chart-o", "far", "chart-bar" ], [ "twitter-square", "fab", null ], [ "facebook-square", "fab", null ], [ "gears", null, "cogs" ], [ "thumbs-o-up", "far", "thumbs-up" ], [ "thumbs-o-down", "far", "thumbs-down" ], [ "heart-o", "far", "heart" ], [ "sign-out", null, "sign-out-alt" ], [ "linkedin-square", "fab", "linkedin" ], [ "thumb-tack", null, "thumbtack" ], [ "external-link", null, "external-link-alt" ], [ "sign-in", null, "sign-in-alt" ], [ "github-square", "fab", null ], [ "lemon-o", "far", "lemon" ], [ "square-o", "far", "square" ], [ "bookmark-o", "far", "bookmark" ], [ "twitter", "fab", null ], [ "facebook", "fab", "facebook-f" ], [ "facebook-f", "fab", "facebook-f" ], [ "github", "fab", null ], [ "credit-card", "far", null ], [ "feed", null, "rss" ], [ "hdd-o", "far", "hdd" ], [ "hand-o-right", "far", "hand-point-right" ], [ "hand-o-left", "far", "hand-point-left" ], [ "hand-o-up", "far", "hand-point-up" ], [ "hand-o-down", "far", "hand-point-down" ], [ "arrows-alt", null, "expand-arrows-alt" ], [ "group", null, "users" ], [ "chain", null, "link" ], [ "scissors", null, "cut" ], [ "files-o", "far", "copy" ], [ "floppy-o", "far", "save" ], [ "navicon", null, "bars" ], [ "reorder", null, "bars" ], [ "pinterest", "fab", null ], [ "pinterest-square", "fab", null ], [ "google-plus-square", "fab", null ], [ "google-plus", "fab", "google-plus-g" ], [ "money", "far", "money-bill-alt" ], [ "unsorted", null, "sort" ], [ "sort-desc", null, "sort-down" ], [ "sort-asc", null, "sort-up" ], [ "linkedin", "fab", "linkedin-in" ], [ "rotate-left", null, "undo" ], [ "legal", null, "gavel" ], [ "tachometer", null, "tachometer-alt" ], [ "dashboard", null, "tachometer-alt" ], [ "comment-o", "far", "comment" ], [ "comments-o", "far", "comments" ], [ "flash", null, "bolt" ], [ "clipboard", "far", null ], [ "paste", "far", "clipboard" ], [ "lightbulb-o", "far", "lightbulb" ], [ "exchange", null, "exchange-alt" ], [ "cloud-download", null, "cloud-download-alt" ], [ "cloud-upload", null, "cloud-upload-alt" ], [ "bell-o", "far", "bell" ], [ "cutlery", null, "utensils" ], [ "file-text-o", "far", "file-alt" ], [ "building-o", "far", "building" ], [ "hospital-o", "far", "hospital" ], [ "tablet", null, "tablet-alt" ], [ "mobile", null, "mobile-alt" ], [ "mobile-phone", null, "mobile-alt" ], [ "circle-o", "far", "circle" ], [ "mail-reply", null, "reply" ], [ "github-alt", "fab", null ], [ "folder-o", "far", "folder" ], [ "folder-open-o", "far", "folder-open" ], [ "smile-o", "far", "smile" ], [ "frown-o", "far", "frown" ], [ "meh-o", "far", "meh" ], [ "keyboard-o", "far", "keyboard" ], [ "flag-o", "far", "flag" ], [ "mail-reply-all", null, "reply-all" ], [ "star-half-o", "far", "star-half" ], [ "star-half-empty", "far", "star-half" ], [ "star-half-full", "far", "star-half" ], [ "code-fork", null, "code-branch" ], [ "chain-broken", null, "unlink" ], [ "shield", null, "shield-alt" ], [ "calendar-o", "far", "calendar" ], [ "maxcdn", "fab", null ], [ "html5", "fab", null ], [ "css3", "fab", null ], [ "ticket", null, "ticket-alt" ], [ "minus-square-o", "far", "minus-square" ], [ "level-up", null, "level-up-alt" ], [ "level-down", null, "level-down-alt" ], [ "pencil-square", null, "pen-square" ], [ "external-link-square", null, "external-link-square-alt" ], [ "compass", "far", null ], [ "caret-square-o-down", "far", "caret-square-down" ], [ "toggle-down", "far", "caret-square-down" ], [ "caret-square-o-up", "far", "caret-square-up" ], [ "toggle-up", "far", "caret-square-up" ], [ "caret-square-o-right", "far", "caret-square-right" ], [ "toggle-right", "far", "caret-square-right" ], [ "eur", null, "euro-sign" ], [ "euro", null, "euro-sign" ], [ "gbp", null, "pound-sign" ], [ "usd", null, "dollar-sign" ], [ "dollar", null, "dollar-sign" ], [ "inr", null, "rupee-sign" ], [ "rupee", null, "rupee-sign" ], [ "jpy", null, "yen-sign" ], [ "cny", null, "yen-sign" ], [ "rmb", null, "yen-sign" ], [ "yen", null, "yen-sign" ], [ "rub", null, "ruble-sign" ], [ "ruble", null, "ruble-sign" ], [ "rouble", null, "ruble-sign" ], [ "krw", null, "won-sign" ], [ "won", null, "won-sign" ], [ "btc", "fab", null ], [ "bitcoin", "fab", "btc" ], [ "file-text", null, "file-alt" ], [ "sort-alpha-asc", null, "sort-alpha-down" ], [ "sort-alpha-desc", null, "sort-alpha-up" ], [ "sort-amount-asc", null, "sort-amount-down" ], [ "sort-amount-desc", null, "sort-amount-up" ], [ "sort-numeric-asc", null, "sort-numeric-down" ], [ "sort-numeric-desc", null, "sort-numeric-up" ], [ "youtube-square", "fab", null ], [ "youtube", "fab", null ], [ "xing", "fab", null ], [ "xing-square", "fab", null ], [ "youtube-play", "fab", "youtube" ], [ "dropbox", "fab", null ], [ "stack-overflow", "fab", null ], [ "instagram", "fab", null ], [ "flickr", "fab", null ], [ "adn", "fab", null ], [ "bitbucket", "fab", null ], [ "bitbucket-square", "fab", "bitbucket" ], [ "tumblr", "fab", null ], [ "tumblr-square", "fab", null ], [ "long-arrow-down", null, "long-arrow-alt-down" ], [ "long-arrow-up", null, "long-arrow-alt-up" ], [ "long-arrow-left", null, "long-arrow-alt-left" ], [ "long-arrow-right", null, "long-arrow-alt-right" ], [ "apple", "fab", null ], [ "windows", "fab", null ], [ "android", "fab", null ], [ "linux", "fab", null ], [ "dribbble", "fab", null ], [ "skype", "fab", null ], [ "foursquare", "fab", null ], [ "trello", "fab", null ], [ "gratipay", "fab", null ], [ "gittip", "fab", "gratipay" ], [ "sun-o", "far", "sun" ], [ "moon-o", "far", "moon" ], [ "vk", "fab", null ], [ "weibo", "fab", null ], [ "renren", "fab", null ], [ "pagelines", "fab", null ], [ "stack-exchange", "fab", null ], [ "arrow-circle-o-right", "far", "arrow-alt-circle-right" ], [ "arrow-circle-o-left", "far", "arrow-alt-circle-left" ], [ "caret-square-o-left", "far", "caret-square-left" ], [ "toggle-left", "far", "caret-square-left" ], [ "dot-circle-o", "far", "dot-circle" ], [ "vimeo-square", "fab", null ], [ "try", null, "lira-sign" ], [ "turkish-lira", null, "lira-sign" ], [ "plus-square-o", "far", "plus-square" ], [ "slack", "fab", null ], [ "wordpress", "fab", null ], [ "openid", "fab", null ], [ "institution", null, "university" ], [ "bank", null, "university" ], [ "mortar-board", null, "graduation-cap" ], [ "yahoo", "fab", null ], [ "google", "fab", null ], [ "reddit", "fab", null ], [ "reddit-square", "fab", null ], [ "stumbleupon-circle", "fab", null ], [ "stumbleupon", "fab", null ], [ "delicious", "fab", null ], [ "digg", "fab", null ], [ "pied-piper-pp", "fab", null ], [ "pied-piper-alt", "fab", null ], [ "drupal", "fab", null ], [ "joomla", "fab", null ], [ "spoon", null, "utensil-spoon" ], [ "behance", "fab", null ], [ "behance-square", "fab", null ], [ "steam", "fab", null ], [ "steam-square", "fab", null ], [ "automobile", null, "car" ], [ "cab", null, "taxi" ], [ "envelope-o", "far", "envelope" ], [ "deviantart", "fab", null ], [ "soundcloud", "fab", null ], [ "file-pdf-o", "far", "file-pdf" ], [ "file-word-o", "far", "file-word" ], [ "file-excel-o", "far", "file-excel" ], [ "file-powerpoint-o", "far", "file-powerpoint" ], [ "file-image-o", "far", "file-image" ], [ "file-photo-o", "far", "file-image" ], [ "file-picture-o", "far", "file-image" ], [ "file-archive-o", "far", "file-archive" ], [ "file-zip-o", "far", "file-archive" ], [ "file-audio-o", "far", "file-audio" ], [ "file-sound-o", "far", "file-audio" ], [ "file-video-o", "far", "file-video" ], [ "file-movie-o", "far", "file-video" ], [ "file-code-o", "far", "file-code" ], [ "vine", "fab", null ], [ "codepen", "fab", null ], [ "jsfiddle", "fab", null ], [ "life-ring", "far", null ], [ "life-bouy", "far", "life-ring" ], [ "life-buoy", "far", "life-ring" ], [ "life-saver", "far", "life-ring" ], [ "support", "far", "life-ring" ], [ "circle-o-notch", null, "circle-notch" ], [ "rebel", "fab", null ], [ "ra", "fab", "rebel" ], [ "resistance", "fab", "rebel" ], [ "empire", "fab", null ], [ "ge", "fab", "empire" ], [ "git-square", "fab", null ], [ "git", "fab", null ], [ "hacker-news", "fab", null ], [ "y-combinator-square", "fab", "hacker-news" ], [ "yc-square", "fab", "hacker-news" ], [ "tencent-weibo", "fab", null ], [ "qq", "fab", null ], [ "weixin", "fab", null ], [ "wechat", "fab", "weixin" ], [ "send", null, "paper-plane" ], [ "paper-plane-o", "far", "paper-plane" ], [ "send-o", "far", "paper-plane" ], [ "circle-thin", "far", "circle" ], [ "header", null, "heading" ], [ "sliders", null, "sliders-h" ], [ "futbol-o", "far", "futbol" ], [ "soccer-ball-o", "far", "futbol" ], [ "slideshare", "fab", null ], [ "twitch", "fab", null ], [ "yelp", "fab", null ], [ "newspaper-o", "far", "newspaper" ], [ "paypal", "fab", null ], [ "google-wallet", "fab", null ], [ "cc-visa", "fab", null ], [ "cc-mastercard", "fab", null ], [ "cc-discover", "fab", null ], [ "cc-amex", "fab", null ], [ "cc-paypal", "fab", null ], [ "cc-stripe", "fab", null ], [ "bell-slash-o", "far", "bell-slash" ], [ "trash", null, "trash-alt" ], [ "copyright", "far", null ], [ "eyedropper", null, "eye-dropper" ], [ "area-chart", null, "chart-area" ], [ "pie-chart", null, "chart-pie" ], [ "line-chart", null, "chart-line" ], [ "lastfm", "fab", null ], [ "lastfm-square", "fab", null ], [ "ioxhost", "fab", null ], [ "angellist", "fab", null ], [ "cc", "far", "closed-captioning" ], [ "ils", null, "shekel-sign" ], [ "shekel", null, "shekel-sign" ], [ "sheqel", null, "shekel-sign" ], [ "meanpath", "fab", "font-awesome" ], [ "buysellads", "fab", null ], [ "connectdevelop", "fab", null ], [ "dashcube", "fab", null ], [ "forumbee", "fab", null ], [ "leanpub", "fab", null ], [ "sellsy", "fab", null ], [ "shirtsinbulk", "fab", null ], [ "simplybuilt", "fab", null ], [ "skyatlas", "fab", null ], [ "diamond", "far", "gem" ], [ "intersex", null, "transgender" ], [ "facebook-official", "fab", "facebook" ], [ "pinterest-p", "fab", null ], [ "whatsapp", "fab", null ], [ "hotel", null, "bed" ], [ "viacoin", "fab", null ], [ "medium", "fab", null ], [ "y-combinator", "fab", null ], [ "yc", "fab", "y-combinator" ], [ "optin-monster", "fab", null ], [ "opencart", "fab", null ], [ "expeditedssl", "fab", null ], [ "battery-4", null, "battery-full" ], [ "battery", null, "battery-full" ], [ "battery-3", null, "battery-three-quarters" ], [ "battery-2", null, "battery-half" ], [ "battery-1", null, "battery-quarter" ], [ "battery-0", null, "battery-empty" ], [ "object-group", "far", null ], [ "object-ungroup", "far", null ], [ "sticky-note-o", "far", "sticky-note" ], [ "cc-jcb", "fab", null ], [ "cc-diners-club", "fab", null ], [ "clone", "far", null ], [ "hourglass-o", "far", "hourglass" ], [ "hourglass-1", null, "hourglass-start" ], [ "hourglass-2", null, "hourglass-half" ], [ "hourglass-3", null, "hourglass-end" ], [ "hand-rock-o", "far", "hand-rock" ], [ "hand-grab-o", "far", "hand-rock" ], [ "hand-paper-o", "far", "hand-paper" ], [ "hand-stop-o", "far", "hand-paper" ], [ "hand-scissors-o", "far", "hand-scissors" ], [ "hand-lizard-o", "far", "hand-lizard" ], [ "hand-spock-o", "far", "hand-spock" ], [ "hand-pointer-o", "far", "hand-pointer" ], [ "hand-peace-o", "far", "hand-peace" ], [ "registered", "far", null ], [ "creative-commons", "fab", null ], [ "gg", "fab", null ], [ "gg-circle", "fab", null ], [ "tripadvisor", "fab", null ], [ "odnoklassniki", "fab", null ], [ "odnoklassniki-square", "fab", null ], [ "get-pocket", "fab", null ], [ "wikipedia-w", "fab", null ], [ "safari", "fab", null ], [ "chrome", "fab", null ], [ "firefox", "fab", null ], [ "opera", "fab", null ], [ "internet-explorer", "fab", null ], [ "television", null, "tv" ], [ "contao", "fab", null ], [ "500px", "fab", null ], [ "amazon", "fab", null ], [ "calendar-plus-o", "far", "calendar-plus" ], [ "calendar-minus-o", "far", "calendar-minus" ], [ "calendar-times-o", "far", "calendar-times" ], [ "calendar-check-o", "far", "calendar-check" ], [ "map-o", "far", "map" ], [ "commenting", "far", "comment-dots" ], [ "commenting-o", "far", "comment-dots" ], [ "houzz", "fab", null ], [ "vimeo", "fab", "vimeo-v" ], [ "black-tie", "fab", null ], [ "fonticons", "fab", null ], [ "reddit-alien", "fab", null ], [ "edge", "fab", null ], [ "credit-card-alt", null, "credit-card" ], [ "codiepie", "fab", null ], [ "modx", "fab", null ], [ "fort-awesome", "fab", null ], [ "usb", "fab", null ], [ "product-hunt", "fab", null ], [ "mixcloud", "fab", null ], [ "scribd", "fab", null ], [ "pause-circle-o", "far", "pause-circle" ], [ "stop-circle-o", "far", "stop-circle" ], [ "bluetooth", "fab", null ], [ "bluetooth-b", "fab", null ], [ "gitlab", "fab", null ], [ "wpbeginner", "fab", null ], [ "wpforms", "fab", null ], [ "envira", "fab", null ], [ "wheelchair-alt", "fab", "accessible-icon" ], [ "question-circle-o", "far", "question-circle" ], [ "volume-control-phone", null, "phone-volume" ], [ "asl-interpreting", null, "american-sign-language-interpreting" ], [ "deafness", null, "deaf" ], [ "hard-of-hearing", null, "deaf" ], [ "glide", "fab", null ], [ "glide-g", "fab", null ], [ "signing", null, "sign-language" ], [ "viadeo", "fab", null ], [ "viadeo-square", "fab", null ], [ "snapchat", "fab", null ], [ "snapchat-ghost", "fab", null ], [ "snapchat-square", "fab", null ], [ "pied-piper", "fab", null ], [ "first-order", "fab", null ], [ "yoast", "fab", null ], [ "themeisle", "fab", null ], [ "google-plus-official", "fab", "google-plus" ], [ "google-plus-circle", "fab", "google-plus" ], [ "font-awesome", "fab", null ], [ "fa", "fab", "font-awesome" ], [ "handshake-o", "far", "handshake" ], [ "envelope-open-o", "far", "envelope-open" ], [ "linode", "fab", null ], [ "address-book-o", "far", "address-book" ], [ "vcard", null, "address-card" ], [ "address-card-o", "far", "address-card" ], [ "vcard-o", "far", "address-card" ], [ "user-circle-o", "far", "user-circle" ], [ "user-o", "far", "user" ], [ "id-badge", "far", null ], [ "drivers-license", null, "id-card" ], [ "id-card-o", "far", "id-card" ], [ "drivers-license-o", "far", "id-card" ], [ "quora", "fab", null ], [ "free-code-camp", "fab", null ], [ "telegram", "fab", null ], [ "thermometer-4", null, "thermometer-full" ], [ "thermometer", null, "thermometer-full" ], [ "thermometer-3", null, "thermometer-three-quarters" ], [ "thermometer-2", null, "thermometer-half" ], [ "thermometer-1", null, "thermometer-quarter" ], [ "thermometer-0", null, "thermometer-empty" ], [ "bathtub", null, "bath" ], [ "s15", null, "bath" ], [ "window-maximize", "far", null ], [ "window-restore", "far", null ], [ "times-rectangle", null, "window-close" ], [ "window-close-o", "far", "window-close" ], [ "times-rectangle-o", "far", "window-close" ], [ "bandcamp", "fab", null ], [ "grav", "fab", null ], [ "etsy", "fab", null ], [ "imdb", "fab", null ], [ "ravelry", "fab", null ], [ "eercast", "fab", "sellcast" ], [ "snowflake-o", "far", "snowflake" ], [ "superpowers", "fab", null ], [ "wpexplorer", "fab", null ], [ "spotify", "fab", null ] ]; + return function(l) { + try { + l(); + } catch (l) { + if (!o) throw l; + } + }(function() { + var l; + "function" == typeof i.hooks.addShims ? i.hooks.addShims(s) : (l = i.shims).push.apply(l, s); + }), s; +}, "object" == typeof exports && "undefined" != typeof module ? module.exports = a() : "function" == typeof define && define.amd ? define(a) : l["fontawesome-free-shims"] = a(); \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_animated.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_animated.less new file mode 100644 index 0000000000..704ec95103 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_animated.less @@ -0,0 +1,19 @@ +// Animated Icons +// -------------------------- + +.@{fa-css-prefix}-spin { + animation: fa-spin 2s infinite linear; +} + +.@{fa-css-prefix}-pulse { + animation: fa-spin 1s infinite steps(8); +} + +@keyframes fa-spin { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_bordered-pulled.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_bordered-pulled.less new file mode 100644 index 0000000000..29a356b423 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_bordered-pulled.less @@ -0,0 +1,16 @@ +// Bordered & Pulled +// ------------------------- + +.@{fa-css-prefix}-border { + border-radius: .1em; + border: solid .08em @fa-border-color; + padding: .2em .25em .15em; +} + +.@{fa-css-prefix}-pull-left { float: left; } +.@{fa-css-prefix}-pull-right { float: right; } + +.@{fa-css-prefix}, .fas, .far, .fal, .fab { + &.@{fa-css-prefix}-pull-left { margin-right: .3em; } + &.@{fa-css-prefix}-pull-right { margin-left: .3em; } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_core.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_core.less new file mode 100644 index 0000000000..82031d6523 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_core.less @@ -0,0 +1,12 @@ +// Base Class Definition +// ------------------------- + +.@{fa-css-prefix}, .fas, .far, .fal, .fab { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + line-height: 1; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_fixed-width.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_fixed-width.less new file mode 100644 index 0000000000..be817c6375 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_fixed-width.less @@ -0,0 +1,6 @@ +// Fixed Width Icons +// ------------------------- +.@{fa-css-prefix}-fw { + text-align: center; + width: (20em / 16); +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_icons.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_icons.less new file mode 100644 index 0000000000..064263140c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_icons.less @@ -0,0 +1,1115 @@ +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ + +.@{fa-css-prefix}-500px:before { content: @fa-var-500px; } +.@{fa-css-prefix}-accessible-icon:before { content: @fa-var-accessible-icon; } +.@{fa-css-prefix}-accusoft:before { content: @fa-var-accusoft; } +.@{fa-css-prefix}-address-book:before { content: @fa-var-address-book; } +.@{fa-css-prefix}-address-card:before { content: @fa-var-address-card; } +.@{fa-css-prefix}-adjust:before { content: @fa-var-adjust; } +.@{fa-css-prefix}-adn:before { content: @fa-var-adn; } +.@{fa-css-prefix}-adversal:before { content: @fa-var-adversal; } +.@{fa-css-prefix}-affiliatetheme:before { content: @fa-var-affiliatetheme; } +.@{fa-css-prefix}-algolia:before { content: @fa-var-algolia; } +.@{fa-css-prefix}-align-center:before { content: @fa-var-align-center; } +.@{fa-css-prefix}-align-justify:before { content: @fa-var-align-justify; } +.@{fa-css-prefix}-align-left:before { content: @fa-var-align-left; } +.@{fa-css-prefix}-align-right:before { content: @fa-var-align-right; } +.@{fa-css-prefix}-allergies:before { content: @fa-var-allergies; } +.@{fa-css-prefix}-amazon:before { content: @fa-var-amazon; } +.@{fa-css-prefix}-amazon-pay:before { content: @fa-var-amazon-pay; } +.@{fa-css-prefix}-ambulance:before { content: @fa-var-ambulance; } +.@{fa-css-prefix}-american-sign-language-interpreting:before { content: @fa-var-american-sign-language-interpreting; } +.@{fa-css-prefix}-amilia:before { content: @fa-var-amilia; } +.@{fa-css-prefix}-anchor:before { content: @fa-var-anchor; } +.@{fa-css-prefix}-android:before { content: @fa-var-android; } +.@{fa-css-prefix}-angellist:before { content: @fa-var-angellist; } +.@{fa-css-prefix}-angle-double-down:before { content: @fa-var-angle-double-down; } +.@{fa-css-prefix}-angle-double-left:before { content: @fa-var-angle-double-left; } +.@{fa-css-prefix}-angle-double-right:before { content: @fa-var-angle-double-right; } +.@{fa-css-prefix}-angle-double-up:before { content: @fa-var-angle-double-up; } +.@{fa-css-prefix}-angle-down:before { content: @fa-var-angle-down; } +.@{fa-css-prefix}-angle-left:before { content: @fa-var-angle-left; } +.@{fa-css-prefix}-angle-right:before { content: @fa-var-angle-right; } +.@{fa-css-prefix}-angle-up:before { content: @fa-var-angle-up; } +.@{fa-css-prefix}-angry:before { content: @fa-var-angry; } +.@{fa-css-prefix}-angrycreative:before { content: @fa-var-angrycreative; } +.@{fa-css-prefix}-angular:before { content: @fa-var-angular; } +.@{fa-css-prefix}-app-store:before { content: @fa-var-app-store; } +.@{fa-css-prefix}-app-store-ios:before { content: @fa-var-app-store-ios; } +.@{fa-css-prefix}-apper:before { content: @fa-var-apper; } +.@{fa-css-prefix}-apple:before { content: @fa-var-apple; } +.@{fa-css-prefix}-apple-pay:before { content: @fa-var-apple-pay; } +.@{fa-css-prefix}-archive:before { content: @fa-var-archive; } +.@{fa-css-prefix}-archway:before { content: @fa-var-archway; } +.@{fa-css-prefix}-arrow-alt-circle-down:before { content: @fa-var-arrow-alt-circle-down; } +.@{fa-css-prefix}-arrow-alt-circle-left:before { content: @fa-var-arrow-alt-circle-left; } +.@{fa-css-prefix}-arrow-alt-circle-right:before { content: @fa-var-arrow-alt-circle-right; } +.@{fa-css-prefix}-arrow-alt-circle-up:before { content: @fa-var-arrow-alt-circle-up; } +.@{fa-css-prefix}-arrow-circle-down:before { content: @fa-var-arrow-circle-down; } +.@{fa-css-prefix}-arrow-circle-left:before { content: @fa-var-arrow-circle-left; } +.@{fa-css-prefix}-arrow-circle-right:before { content: @fa-var-arrow-circle-right; } +.@{fa-css-prefix}-arrow-circle-up:before { content: @fa-var-arrow-circle-up; } +.@{fa-css-prefix}-arrow-down:before { content: @fa-var-arrow-down; } +.@{fa-css-prefix}-arrow-left:before { content: @fa-var-arrow-left; } +.@{fa-css-prefix}-arrow-right:before { content: @fa-var-arrow-right; } +.@{fa-css-prefix}-arrow-up:before { content: @fa-var-arrow-up; } +.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-arrows-alt; } +.@{fa-css-prefix}-arrows-alt-h:before { content: @fa-var-arrows-alt-h; } +.@{fa-css-prefix}-arrows-alt-v:before { content: @fa-var-arrows-alt-v; } +.@{fa-css-prefix}-assistive-listening-systems:before { content: @fa-var-assistive-listening-systems; } +.@{fa-css-prefix}-asterisk:before { content: @fa-var-asterisk; } +.@{fa-css-prefix}-asymmetrik:before { content: @fa-var-asymmetrik; } +.@{fa-css-prefix}-at:before { content: @fa-var-at; } +.@{fa-css-prefix}-atlas:before { content: @fa-var-atlas; } +.@{fa-css-prefix}-audible:before { content: @fa-var-audible; } +.@{fa-css-prefix}-audio-description:before { content: @fa-var-audio-description; } +.@{fa-css-prefix}-autoprefixer:before { content: @fa-var-autoprefixer; } +.@{fa-css-prefix}-avianex:before { content: @fa-var-avianex; } +.@{fa-css-prefix}-aviato:before { content: @fa-var-aviato; } +.@{fa-css-prefix}-award:before { content: @fa-var-award; } +.@{fa-css-prefix}-aws:before { content: @fa-var-aws; } +.@{fa-css-prefix}-backspace:before { content: @fa-var-backspace; } +.@{fa-css-prefix}-backward:before { content: @fa-var-backward; } +.@{fa-css-prefix}-balance-scale:before { content: @fa-var-balance-scale; } +.@{fa-css-prefix}-ban:before { content: @fa-var-ban; } +.@{fa-css-prefix}-band-aid:before { content: @fa-var-band-aid; } +.@{fa-css-prefix}-bandcamp:before { content: @fa-var-bandcamp; } +.@{fa-css-prefix}-barcode:before { content: @fa-var-barcode; } +.@{fa-css-prefix}-bars:before { content: @fa-var-bars; } +.@{fa-css-prefix}-baseball-ball:before { content: @fa-var-baseball-ball; } +.@{fa-css-prefix}-basketball-ball:before { content: @fa-var-basketball-ball; } +.@{fa-css-prefix}-bath:before { content: @fa-var-bath; } +.@{fa-css-prefix}-battery-empty:before { content: @fa-var-battery-empty; } +.@{fa-css-prefix}-battery-full:before { content: @fa-var-battery-full; } +.@{fa-css-prefix}-battery-half:before { content: @fa-var-battery-half; } +.@{fa-css-prefix}-battery-quarter:before { content: @fa-var-battery-quarter; } +.@{fa-css-prefix}-battery-three-quarters:before { content: @fa-var-battery-three-quarters; } +.@{fa-css-prefix}-bed:before { content: @fa-var-bed; } +.@{fa-css-prefix}-beer:before { content: @fa-var-beer; } +.@{fa-css-prefix}-behance:before { content: @fa-var-behance; } +.@{fa-css-prefix}-behance-square:before { content: @fa-var-behance-square; } +.@{fa-css-prefix}-bell:before { content: @fa-var-bell; } +.@{fa-css-prefix}-bell-slash:before { content: @fa-var-bell-slash; } +.@{fa-css-prefix}-bezier-curve:before { content: @fa-var-bezier-curve; } +.@{fa-css-prefix}-bicycle:before { content: @fa-var-bicycle; } +.@{fa-css-prefix}-bimobject:before { content: @fa-var-bimobject; } +.@{fa-css-prefix}-binoculars:before { content: @fa-var-binoculars; } +.@{fa-css-prefix}-birthday-cake:before { content: @fa-var-birthday-cake; } +.@{fa-css-prefix}-bitbucket:before { content: @fa-var-bitbucket; } +.@{fa-css-prefix}-bitcoin:before { content: @fa-var-bitcoin; } +.@{fa-css-prefix}-bity:before { content: @fa-var-bity; } +.@{fa-css-prefix}-black-tie:before { content: @fa-var-black-tie; } +.@{fa-css-prefix}-blackberry:before { content: @fa-var-blackberry; } +.@{fa-css-prefix}-blender:before { content: @fa-var-blender; } +.@{fa-css-prefix}-blind:before { content: @fa-var-blind; } +.@{fa-css-prefix}-blogger:before { content: @fa-var-blogger; } +.@{fa-css-prefix}-blogger-b:before { content: @fa-var-blogger-b; } +.@{fa-css-prefix}-bluetooth:before { content: @fa-var-bluetooth; } +.@{fa-css-prefix}-bluetooth-b:before { content: @fa-var-bluetooth-b; } +.@{fa-css-prefix}-bold:before { content: @fa-var-bold; } +.@{fa-css-prefix}-bolt:before { content: @fa-var-bolt; } +.@{fa-css-prefix}-bomb:before { content: @fa-var-bomb; } +.@{fa-css-prefix}-bong:before { content: @fa-var-bong; } +.@{fa-css-prefix}-book:before { content: @fa-var-book; } +.@{fa-css-prefix}-book-open:before { content: @fa-var-book-open; } +.@{fa-css-prefix}-bookmark:before { content: @fa-var-bookmark; } +.@{fa-css-prefix}-bowling-ball:before { content: @fa-var-bowling-ball; } +.@{fa-css-prefix}-box:before { content: @fa-var-box; } +.@{fa-css-prefix}-box-open:before { content: @fa-var-box-open; } +.@{fa-css-prefix}-boxes:before { content: @fa-var-boxes; } +.@{fa-css-prefix}-braille:before { content: @fa-var-braille; } +.@{fa-css-prefix}-briefcase:before { content: @fa-var-briefcase; } +.@{fa-css-prefix}-briefcase-medical:before { content: @fa-var-briefcase-medical; } +.@{fa-css-prefix}-broadcast-tower:before { content: @fa-var-broadcast-tower; } +.@{fa-css-prefix}-broom:before { content: @fa-var-broom; } +.@{fa-css-prefix}-brush:before { content: @fa-var-brush; } +.@{fa-css-prefix}-btc:before { content: @fa-var-btc; } +.@{fa-css-prefix}-bug:before { content: @fa-var-bug; } +.@{fa-css-prefix}-building:before { content: @fa-var-building; } +.@{fa-css-prefix}-bullhorn:before { content: @fa-var-bullhorn; } +.@{fa-css-prefix}-bullseye:before { content: @fa-var-bullseye; } +.@{fa-css-prefix}-burn:before { content: @fa-var-burn; } +.@{fa-css-prefix}-buromobelexperte:before { content: @fa-var-buromobelexperte; } +.@{fa-css-prefix}-bus:before { content: @fa-var-bus; } +.@{fa-css-prefix}-bus-alt:before { content: @fa-var-bus-alt; } +.@{fa-css-prefix}-buysellads:before { content: @fa-var-buysellads; } +.@{fa-css-prefix}-calculator:before { content: @fa-var-calculator; } +.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar; } +.@{fa-css-prefix}-calendar-alt:before { content: @fa-var-calendar-alt; } +.@{fa-css-prefix}-calendar-check:before { content: @fa-var-calendar-check; } +.@{fa-css-prefix}-calendar-minus:before { content: @fa-var-calendar-minus; } +.@{fa-css-prefix}-calendar-plus:before { content: @fa-var-calendar-plus; } +.@{fa-css-prefix}-calendar-times:before { content: @fa-var-calendar-times; } +.@{fa-css-prefix}-camera:before { content: @fa-var-camera; } +.@{fa-css-prefix}-camera-retro:before { content: @fa-var-camera-retro; } +.@{fa-css-prefix}-cannabis:before { content: @fa-var-cannabis; } +.@{fa-css-prefix}-capsules:before { content: @fa-var-capsules; } +.@{fa-css-prefix}-car:before { content: @fa-var-car; } +.@{fa-css-prefix}-caret-down:before { content: @fa-var-caret-down; } +.@{fa-css-prefix}-caret-left:before { content: @fa-var-caret-left; } +.@{fa-css-prefix}-caret-right:before { content: @fa-var-caret-right; } +.@{fa-css-prefix}-caret-square-down:before { content: @fa-var-caret-square-down; } +.@{fa-css-prefix}-caret-square-left:before { content: @fa-var-caret-square-left; } +.@{fa-css-prefix}-caret-square-right:before { content: @fa-var-caret-square-right; } +.@{fa-css-prefix}-caret-square-up:before { content: @fa-var-caret-square-up; } +.@{fa-css-prefix}-caret-up:before { content: @fa-var-caret-up; } +.@{fa-css-prefix}-cart-arrow-down:before { content: @fa-var-cart-arrow-down; } +.@{fa-css-prefix}-cart-plus:before { content: @fa-var-cart-plus; } +.@{fa-css-prefix}-cc-amazon-pay:before { content: @fa-var-cc-amazon-pay; } +.@{fa-css-prefix}-cc-amex:before { content: @fa-var-cc-amex; } +.@{fa-css-prefix}-cc-apple-pay:before { content: @fa-var-cc-apple-pay; } +.@{fa-css-prefix}-cc-diners-club:before { content: @fa-var-cc-diners-club; } +.@{fa-css-prefix}-cc-discover:before { content: @fa-var-cc-discover; } +.@{fa-css-prefix}-cc-jcb:before { content: @fa-var-cc-jcb; } +.@{fa-css-prefix}-cc-mastercard:before { content: @fa-var-cc-mastercard; } +.@{fa-css-prefix}-cc-paypal:before { content: @fa-var-cc-paypal; } +.@{fa-css-prefix}-cc-stripe:before { content: @fa-var-cc-stripe; } +.@{fa-css-prefix}-cc-visa:before { content: @fa-var-cc-visa; } +.@{fa-css-prefix}-centercode:before { content: @fa-var-centercode; } +.@{fa-css-prefix}-certificate:before { content: @fa-var-certificate; } +.@{fa-css-prefix}-chalkboard:before { content: @fa-var-chalkboard; } +.@{fa-css-prefix}-chalkboard-teacher:before { content: @fa-var-chalkboard-teacher; } +.@{fa-css-prefix}-chart-area:before { content: @fa-var-chart-area; } +.@{fa-css-prefix}-chart-bar:before { content: @fa-var-chart-bar; } +.@{fa-css-prefix}-chart-line:before { content: @fa-var-chart-line; } +.@{fa-css-prefix}-chart-pie:before { content: @fa-var-chart-pie; } +.@{fa-css-prefix}-check:before { content: @fa-var-check; } +.@{fa-css-prefix}-check-circle:before { content: @fa-var-check-circle; } +.@{fa-css-prefix}-check-double:before { content: @fa-var-check-double; } +.@{fa-css-prefix}-check-square:before { content: @fa-var-check-square; } +.@{fa-css-prefix}-chess:before { content: @fa-var-chess; } +.@{fa-css-prefix}-chess-bishop:before { content: @fa-var-chess-bishop; } +.@{fa-css-prefix}-chess-board:before { content: @fa-var-chess-board; } +.@{fa-css-prefix}-chess-king:before { content: @fa-var-chess-king; } +.@{fa-css-prefix}-chess-knight:before { content: @fa-var-chess-knight; } +.@{fa-css-prefix}-chess-pawn:before { content: @fa-var-chess-pawn; } +.@{fa-css-prefix}-chess-queen:before { content: @fa-var-chess-queen; } +.@{fa-css-prefix}-chess-rook:before { content: @fa-var-chess-rook; } +.@{fa-css-prefix}-chevron-circle-down:before { content: @fa-var-chevron-circle-down; } +.@{fa-css-prefix}-chevron-circle-left:before { content: @fa-var-chevron-circle-left; } +.@{fa-css-prefix}-chevron-circle-right:before { content: @fa-var-chevron-circle-right; } +.@{fa-css-prefix}-chevron-circle-up:before { content: @fa-var-chevron-circle-up; } +.@{fa-css-prefix}-chevron-down:before { content: @fa-var-chevron-down; } +.@{fa-css-prefix}-chevron-left:before { content: @fa-var-chevron-left; } +.@{fa-css-prefix}-chevron-right:before { content: @fa-var-chevron-right; } +.@{fa-css-prefix}-chevron-up:before { content: @fa-var-chevron-up; } +.@{fa-css-prefix}-child:before { content: @fa-var-child; } +.@{fa-css-prefix}-chrome:before { content: @fa-var-chrome; } +.@{fa-css-prefix}-church:before { content: @fa-var-church; } +.@{fa-css-prefix}-circle:before { content: @fa-var-circle; } +.@{fa-css-prefix}-circle-notch:before { content: @fa-var-circle-notch; } +.@{fa-css-prefix}-clipboard:before { content: @fa-var-clipboard; } +.@{fa-css-prefix}-clipboard-check:before { content: @fa-var-clipboard-check; } +.@{fa-css-prefix}-clipboard-list:before { content: @fa-var-clipboard-list; } +.@{fa-css-prefix}-clock:before { content: @fa-var-clock; } +.@{fa-css-prefix}-clone:before { content: @fa-var-clone; } +.@{fa-css-prefix}-closed-captioning:before { content: @fa-var-closed-captioning; } +.@{fa-css-prefix}-cloud:before { content: @fa-var-cloud; } +.@{fa-css-prefix}-cloud-download-alt:before { content: @fa-var-cloud-download-alt; } +.@{fa-css-prefix}-cloud-upload-alt:before { content: @fa-var-cloud-upload-alt; } +.@{fa-css-prefix}-cloudscale:before { content: @fa-var-cloudscale; } +.@{fa-css-prefix}-cloudsmith:before { content: @fa-var-cloudsmith; } +.@{fa-css-prefix}-cloudversify:before { content: @fa-var-cloudversify; } +.@{fa-css-prefix}-cocktail:before { content: @fa-var-cocktail; } +.@{fa-css-prefix}-code:before { content: @fa-var-code; } +.@{fa-css-prefix}-code-branch:before { content: @fa-var-code-branch; } +.@{fa-css-prefix}-codepen:before { content: @fa-var-codepen; } +.@{fa-css-prefix}-codiepie:before { content: @fa-var-codiepie; } +.@{fa-css-prefix}-coffee:before { content: @fa-var-coffee; } +.@{fa-css-prefix}-cog:before { content: @fa-var-cog; } +.@{fa-css-prefix}-cogs:before { content: @fa-var-cogs; } +.@{fa-css-prefix}-coins:before { content: @fa-var-coins; } +.@{fa-css-prefix}-columns:before { content: @fa-var-columns; } +.@{fa-css-prefix}-comment:before { content: @fa-var-comment; } +.@{fa-css-prefix}-comment-alt:before { content: @fa-var-comment-alt; } +.@{fa-css-prefix}-comment-dots:before { content: @fa-var-comment-dots; } +.@{fa-css-prefix}-comment-slash:before { content: @fa-var-comment-slash; } +.@{fa-css-prefix}-comments:before { content: @fa-var-comments; } +.@{fa-css-prefix}-compact-disc:before { content: @fa-var-compact-disc; } +.@{fa-css-prefix}-compass:before { content: @fa-var-compass; } +.@{fa-css-prefix}-compress:before { content: @fa-var-compress; } +.@{fa-css-prefix}-concierge-bell:before { content: @fa-var-concierge-bell; } +.@{fa-css-prefix}-connectdevelop:before { content: @fa-var-connectdevelop; } +.@{fa-css-prefix}-contao:before { content: @fa-var-contao; } +.@{fa-css-prefix}-cookie:before { content: @fa-var-cookie; } +.@{fa-css-prefix}-cookie-bite:before { content: @fa-var-cookie-bite; } +.@{fa-css-prefix}-copy:before { content: @fa-var-copy; } +.@{fa-css-prefix}-copyright:before { content: @fa-var-copyright; } +.@{fa-css-prefix}-couch:before { content: @fa-var-couch; } +.@{fa-css-prefix}-cpanel:before { content: @fa-var-cpanel; } +.@{fa-css-prefix}-creative-commons:before { content: @fa-var-creative-commons; } +.@{fa-css-prefix}-creative-commons-by:before { content: @fa-var-creative-commons-by; } +.@{fa-css-prefix}-creative-commons-nc:before { content: @fa-var-creative-commons-nc; } +.@{fa-css-prefix}-creative-commons-nc-eu:before { content: @fa-var-creative-commons-nc-eu; } +.@{fa-css-prefix}-creative-commons-nc-jp:before { content: @fa-var-creative-commons-nc-jp; } +.@{fa-css-prefix}-creative-commons-nd:before { content: @fa-var-creative-commons-nd; } +.@{fa-css-prefix}-creative-commons-pd:before { content: @fa-var-creative-commons-pd; } +.@{fa-css-prefix}-creative-commons-pd-alt:before { content: @fa-var-creative-commons-pd-alt; } +.@{fa-css-prefix}-creative-commons-remix:before { content: @fa-var-creative-commons-remix; } +.@{fa-css-prefix}-creative-commons-sa:before { content: @fa-var-creative-commons-sa; } +.@{fa-css-prefix}-creative-commons-sampling:before { content: @fa-var-creative-commons-sampling; } +.@{fa-css-prefix}-creative-commons-sampling-plus:before { content: @fa-var-creative-commons-sampling-plus; } +.@{fa-css-prefix}-creative-commons-share:before { content: @fa-var-creative-commons-share; } +.@{fa-css-prefix}-credit-card:before { content: @fa-var-credit-card; } +.@{fa-css-prefix}-crop:before { content: @fa-var-crop; } +.@{fa-css-prefix}-crop-alt:before { content: @fa-var-crop-alt; } +.@{fa-css-prefix}-crosshairs:before { content: @fa-var-crosshairs; } +.@{fa-css-prefix}-crow:before { content: @fa-var-crow; } +.@{fa-css-prefix}-crown:before { content: @fa-var-crown; } +.@{fa-css-prefix}-css3:before { content: @fa-var-css3; } +.@{fa-css-prefix}-css3-alt:before { content: @fa-var-css3-alt; } +.@{fa-css-prefix}-cube:before { content: @fa-var-cube; } +.@{fa-css-prefix}-cubes:before { content: @fa-var-cubes; } +.@{fa-css-prefix}-cut:before { content: @fa-var-cut; } +.@{fa-css-prefix}-cuttlefish:before { content: @fa-var-cuttlefish; } +.@{fa-css-prefix}-d-and-d:before { content: @fa-var-d-and-d; } +.@{fa-css-prefix}-dashcube:before { content: @fa-var-dashcube; } +.@{fa-css-prefix}-database:before { content: @fa-var-database; } +.@{fa-css-prefix}-deaf:before { content: @fa-var-deaf; } +.@{fa-css-prefix}-delicious:before { content: @fa-var-delicious; } +.@{fa-css-prefix}-deploydog:before { content: @fa-var-deploydog; } +.@{fa-css-prefix}-deskpro:before { content: @fa-var-deskpro; } +.@{fa-css-prefix}-desktop:before { content: @fa-var-desktop; } +.@{fa-css-prefix}-deviantart:before { content: @fa-var-deviantart; } +.@{fa-css-prefix}-diagnoses:before { content: @fa-var-diagnoses; } +.@{fa-css-prefix}-dice:before { content: @fa-var-dice; } +.@{fa-css-prefix}-dice-five:before { content: @fa-var-dice-five; } +.@{fa-css-prefix}-dice-four:before { content: @fa-var-dice-four; } +.@{fa-css-prefix}-dice-one:before { content: @fa-var-dice-one; } +.@{fa-css-prefix}-dice-six:before { content: @fa-var-dice-six; } +.@{fa-css-prefix}-dice-three:before { content: @fa-var-dice-three; } +.@{fa-css-prefix}-dice-two:before { content: @fa-var-dice-two; } +.@{fa-css-prefix}-digg:before { content: @fa-var-digg; } +.@{fa-css-prefix}-digital-ocean:before { content: @fa-var-digital-ocean; } +.@{fa-css-prefix}-digital-tachograph:before { content: @fa-var-digital-tachograph; } +.@{fa-css-prefix}-discord:before { content: @fa-var-discord; } +.@{fa-css-prefix}-discourse:before { content: @fa-var-discourse; } +.@{fa-css-prefix}-divide:before { content: @fa-var-divide; } +.@{fa-css-prefix}-dizzy:before { content: @fa-var-dizzy; } +.@{fa-css-prefix}-dna:before { content: @fa-var-dna; } +.@{fa-css-prefix}-dochub:before { content: @fa-var-dochub; } +.@{fa-css-prefix}-docker:before { content: @fa-var-docker; } +.@{fa-css-prefix}-dollar-sign:before { content: @fa-var-dollar-sign; } +.@{fa-css-prefix}-dolly:before { content: @fa-var-dolly; } +.@{fa-css-prefix}-dolly-flatbed:before { content: @fa-var-dolly-flatbed; } +.@{fa-css-prefix}-donate:before { content: @fa-var-donate; } +.@{fa-css-prefix}-door-closed:before { content: @fa-var-door-closed; } +.@{fa-css-prefix}-door-open:before { content: @fa-var-door-open; } +.@{fa-css-prefix}-dot-circle:before { content: @fa-var-dot-circle; } +.@{fa-css-prefix}-dove:before { content: @fa-var-dove; } +.@{fa-css-prefix}-download:before { content: @fa-var-download; } +.@{fa-css-prefix}-draft2digital:before { content: @fa-var-draft2digital; } +.@{fa-css-prefix}-drafting-compass:before { content: @fa-var-drafting-compass; } +.@{fa-css-prefix}-dribbble:before { content: @fa-var-dribbble; } +.@{fa-css-prefix}-dribbble-square:before { content: @fa-var-dribbble-square; } +.@{fa-css-prefix}-dropbox:before { content: @fa-var-dropbox; } +.@{fa-css-prefix}-drum:before { content: @fa-var-drum; } +.@{fa-css-prefix}-drum-steelpan:before { content: @fa-var-drum-steelpan; } +.@{fa-css-prefix}-drupal:before { content: @fa-var-drupal; } +.@{fa-css-prefix}-dumbbell:before { content: @fa-var-dumbbell; } +.@{fa-css-prefix}-dyalog:before { content: @fa-var-dyalog; } +.@{fa-css-prefix}-earlybirds:before { content: @fa-var-earlybirds; } +.@{fa-css-prefix}-ebay:before { content: @fa-var-ebay; } +.@{fa-css-prefix}-edge:before { content: @fa-var-edge; } +.@{fa-css-prefix}-edit:before { content: @fa-var-edit; } +.@{fa-css-prefix}-eject:before { content: @fa-var-eject; } +.@{fa-css-prefix}-elementor:before { content: @fa-var-elementor; } +.@{fa-css-prefix}-ellipsis-h:before { content: @fa-var-ellipsis-h; } +.@{fa-css-prefix}-ellipsis-v:before { content: @fa-var-ellipsis-v; } +.@{fa-css-prefix}-ember:before { content: @fa-var-ember; } +.@{fa-css-prefix}-empire:before { content: @fa-var-empire; } +.@{fa-css-prefix}-envelope:before { content: @fa-var-envelope; } +.@{fa-css-prefix}-envelope-open:before { content: @fa-var-envelope-open; } +.@{fa-css-prefix}-envelope-square:before { content: @fa-var-envelope-square; } +.@{fa-css-prefix}-envira:before { content: @fa-var-envira; } +.@{fa-css-prefix}-equals:before { content: @fa-var-equals; } +.@{fa-css-prefix}-eraser:before { content: @fa-var-eraser; } +.@{fa-css-prefix}-erlang:before { content: @fa-var-erlang; } +.@{fa-css-prefix}-ethereum:before { content: @fa-var-ethereum; } +.@{fa-css-prefix}-etsy:before { content: @fa-var-etsy; } +.@{fa-css-prefix}-euro-sign:before { content: @fa-var-euro-sign; } +.@{fa-css-prefix}-exchange-alt:before { content: @fa-var-exchange-alt; } +.@{fa-css-prefix}-exclamation:before { content: @fa-var-exclamation; } +.@{fa-css-prefix}-exclamation-circle:before { content: @fa-var-exclamation-circle; } +.@{fa-css-prefix}-exclamation-triangle:before { content: @fa-var-exclamation-triangle; } +.@{fa-css-prefix}-expand:before { content: @fa-var-expand; } +.@{fa-css-prefix}-expand-arrows-alt:before { content: @fa-var-expand-arrows-alt; } +.@{fa-css-prefix}-expeditedssl:before { content: @fa-var-expeditedssl; } +.@{fa-css-prefix}-external-link-alt:before { content: @fa-var-external-link-alt; } +.@{fa-css-prefix}-external-link-square-alt:before { content: @fa-var-external-link-square-alt; } +.@{fa-css-prefix}-eye:before { content: @fa-var-eye; } +.@{fa-css-prefix}-eye-dropper:before { content: @fa-var-eye-dropper; } +.@{fa-css-prefix}-eye-slash:before { content: @fa-var-eye-slash; } +.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook; } +.@{fa-css-prefix}-facebook-f:before { content: @fa-var-facebook-f; } +.@{fa-css-prefix}-facebook-messenger:before { content: @fa-var-facebook-messenger; } +.@{fa-css-prefix}-facebook-square:before { content: @fa-var-facebook-square; } +.@{fa-css-prefix}-fast-backward:before { content: @fa-var-fast-backward; } +.@{fa-css-prefix}-fast-forward:before { content: @fa-var-fast-forward; } +.@{fa-css-prefix}-fax:before { content: @fa-var-fax; } +.@{fa-css-prefix}-feather:before { content: @fa-var-feather; } +.@{fa-css-prefix}-feather-alt:before { content: @fa-var-feather-alt; } +.@{fa-css-prefix}-female:before { content: @fa-var-female; } +.@{fa-css-prefix}-fighter-jet:before { content: @fa-var-fighter-jet; } +.@{fa-css-prefix}-file:before { content: @fa-var-file; } +.@{fa-css-prefix}-file-alt:before { content: @fa-var-file-alt; } +.@{fa-css-prefix}-file-archive:before { content: @fa-var-file-archive; } +.@{fa-css-prefix}-file-audio:before { content: @fa-var-file-audio; } +.@{fa-css-prefix}-file-code:before { content: @fa-var-file-code; } +.@{fa-css-prefix}-file-contract:before { content: @fa-var-file-contract; } +.@{fa-css-prefix}-file-download:before { content: @fa-var-file-download; } +.@{fa-css-prefix}-file-excel:before { content: @fa-var-file-excel; } +.@{fa-css-prefix}-file-export:before { content: @fa-var-file-export; } +.@{fa-css-prefix}-file-image:before { content: @fa-var-file-image; } +.@{fa-css-prefix}-file-import:before { content: @fa-var-file-import; } +.@{fa-css-prefix}-file-invoice:before { content: @fa-var-file-invoice; } +.@{fa-css-prefix}-file-invoice-dollar:before { content: @fa-var-file-invoice-dollar; } +.@{fa-css-prefix}-file-medical:before { content: @fa-var-file-medical; } +.@{fa-css-prefix}-file-medical-alt:before { content: @fa-var-file-medical-alt; } +.@{fa-css-prefix}-file-pdf:before { content: @fa-var-file-pdf; } +.@{fa-css-prefix}-file-powerpoint:before { content: @fa-var-file-powerpoint; } +.@{fa-css-prefix}-file-prescription:before { content: @fa-var-file-prescription; } +.@{fa-css-prefix}-file-signature:before { content: @fa-var-file-signature; } +.@{fa-css-prefix}-file-upload:before { content: @fa-var-file-upload; } +.@{fa-css-prefix}-file-video:before { content: @fa-var-file-video; } +.@{fa-css-prefix}-file-word:before { content: @fa-var-file-word; } +.@{fa-css-prefix}-fill:before { content: @fa-var-fill; } +.@{fa-css-prefix}-fill-drip:before { content: @fa-var-fill-drip; } +.@{fa-css-prefix}-film:before { content: @fa-var-film; } +.@{fa-css-prefix}-filter:before { content: @fa-var-filter; } +.@{fa-css-prefix}-fingerprint:before { content: @fa-var-fingerprint; } +.@{fa-css-prefix}-fire:before { content: @fa-var-fire; } +.@{fa-css-prefix}-fire-extinguisher:before { content: @fa-var-fire-extinguisher; } +.@{fa-css-prefix}-firefox:before { content: @fa-var-firefox; } +.@{fa-css-prefix}-first-aid:before { content: @fa-var-first-aid; } +.@{fa-css-prefix}-first-order:before { content: @fa-var-first-order; } +.@{fa-css-prefix}-first-order-alt:before { content: @fa-var-first-order-alt; } +.@{fa-css-prefix}-firstdraft:before { content: @fa-var-firstdraft; } +.@{fa-css-prefix}-fish:before { content: @fa-var-fish; } +.@{fa-css-prefix}-flag:before { content: @fa-var-flag; } +.@{fa-css-prefix}-flag-checkered:before { content: @fa-var-flag-checkered; } +.@{fa-css-prefix}-flask:before { content: @fa-var-flask; } +.@{fa-css-prefix}-flickr:before { content: @fa-var-flickr; } +.@{fa-css-prefix}-flipboard:before { content: @fa-var-flipboard; } +.@{fa-css-prefix}-flushed:before { content: @fa-var-flushed; } +.@{fa-css-prefix}-fly:before { content: @fa-var-fly; } +.@{fa-css-prefix}-folder:before { content: @fa-var-folder; } +.@{fa-css-prefix}-folder-open:before { content: @fa-var-folder-open; } +.@{fa-css-prefix}-font:before { content: @fa-var-font; } +.@{fa-css-prefix}-font-awesome:before { content: @fa-var-font-awesome; } +.@{fa-css-prefix}-font-awesome-alt:before { content: @fa-var-font-awesome-alt; } +.@{fa-css-prefix}-font-awesome-flag:before { content: @fa-var-font-awesome-flag; } +.@{fa-css-prefix}-font-awesome-logo-full:before { content: @fa-var-font-awesome-logo-full; } +.@{fa-css-prefix}-fonticons:before { content: @fa-var-fonticons; } +.@{fa-css-prefix}-fonticons-fi:before { content: @fa-var-fonticons-fi; } +.@{fa-css-prefix}-football-ball:before { content: @fa-var-football-ball; } +.@{fa-css-prefix}-fort-awesome:before { content: @fa-var-fort-awesome; } +.@{fa-css-prefix}-fort-awesome-alt:before { content: @fa-var-fort-awesome-alt; } +.@{fa-css-prefix}-forumbee:before { content: @fa-var-forumbee; } +.@{fa-css-prefix}-forward:before { content: @fa-var-forward; } +.@{fa-css-prefix}-foursquare:before { content: @fa-var-foursquare; } +.@{fa-css-prefix}-free-code-camp:before { content: @fa-var-free-code-camp; } +.@{fa-css-prefix}-freebsd:before { content: @fa-var-freebsd; } +.@{fa-css-prefix}-frog:before { content: @fa-var-frog; } +.@{fa-css-prefix}-frown:before { content: @fa-var-frown; } +.@{fa-css-prefix}-frown-open:before { content: @fa-var-frown-open; } +.@{fa-css-prefix}-fulcrum:before { content: @fa-var-fulcrum; } +.@{fa-css-prefix}-futbol:before { content: @fa-var-futbol; } +.@{fa-css-prefix}-galactic-republic:before { content: @fa-var-galactic-republic; } +.@{fa-css-prefix}-galactic-senate:before { content: @fa-var-galactic-senate; } +.@{fa-css-prefix}-gamepad:before { content: @fa-var-gamepad; } +.@{fa-css-prefix}-gas-pump:before { content: @fa-var-gas-pump; } +.@{fa-css-prefix}-gavel:before { content: @fa-var-gavel; } +.@{fa-css-prefix}-gem:before { content: @fa-var-gem; } +.@{fa-css-prefix}-genderless:before { content: @fa-var-genderless; } +.@{fa-css-prefix}-get-pocket:before { content: @fa-var-get-pocket; } +.@{fa-css-prefix}-gg:before { content: @fa-var-gg; } +.@{fa-css-prefix}-gg-circle:before { content: @fa-var-gg-circle; } +.@{fa-css-prefix}-gift:before { content: @fa-var-gift; } +.@{fa-css-prefix}-git:before { content: @fa-var-git; } +.@{fa-css-prefix}-git-square:before { content: @fa-var-git-square; } +.@{fa-css-prefix}-github:before { content: @fa-var-github; } +.@{fa-css-prefix}-github-alt:before { content: @fa-var-github-alt; } +.@{fa-css-prefix}-github-square:before { content: @fa-var-github-square; } +.@{fa-css-prefix}-gitkraken:before { content: @fa-var-gitkraken; } +.@{fa-css-prefix}-gitlab:before { content: @fa-var-gitlab; } +.@{fa-css-prefix}-gitter:before { content: @fa-var-gitter; } +.@{fa-css-prefix}-glass-martini:before { content: @fa-var-glass-martini; } +.@{fa-css-prefix}-glass-martini-alt:before { content: @fa-var-glass-martini-alt; } +.@{fa-css-prefix}-glasses:before { content: @fa-var-glasses; } +.@{fa-css-prefix}-glide:before { content: @fa-var-glide; } +.@{fa-css-prefix}-glide-g:before { content: @fa-var-glide-g; } +.@{fa-css-prefix}-globe:before { content: @fa-var-globe; } +.@{fa-css-prefix}-globe-africa:before { content: @fa-var-globe-africa; } +.@{fa-css-prefix}-globe-americas:before { content: @fa-var-globe-americas; } +.@{fa-css-prefix}-globe-asia:before { content: @fa-var-globe-asia; } +.@{fa-css-prefix}-gofore:before { content: @fa-var-gofore; } +.@{fa-css-prefix}-golf-ball:before { content: @fa-var-golf-ball; } +.@{fa-css-prefix}-goodreads:before { content: @fa-var-goodreads; } +.@{fa-css-prefix}-goodreads-g:before { content: @fa-var-goodreads-g; } +.@{fa-css-prefix}-google:before { content: @fa-var-google; } +.@{fa-css-prefix}-google-drive:before { content: @fa-var-google-drive; } +.@{fa-css-prefix}-google-play:before { content: @fa-var-google-play; } +.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus; } +.@{fa-css-prefix}-google-plus-g:before { content: @fa-var-google-plus-g; } +.@{fa-css-prefix}-google-plus-square:before { content: @fa-var-google-plus-square; } +.@{fa-css-prefix}-google-wallet:before { content: @fa-var-google-wallet; } +.@{fa-css-prefix}-graduation-cap:before { content: @fa-var-graduation-cap; } +.@{fa-css-prefix}-gratipay:before { content: @fa-var-gratipay; } +.@{fa-css-prefix}-grav:before { content: @fa-var-grav; } +.@{fa-css-prefix}-greater-than:before { content: @fa-var-greater-than; } +.@{fa-css-prefix}-greater-than-equal:before { content: @fa-var-greater-than-equal; } +.@{fa-css-prefix}-grimace:before { content: @fa-var-grimace; } +.@{fa-css-prefix}-grin:before { content: @fa-var-grin; } +.@{fa-css-prefix}-grin-alt:before { content: @fa-var-grin-alt; } +.@{fa-css-prefix}-grin-beam:before { content: @fa-var-grin-beam; } +.@{fa-css-prefix}-grin-beam-sweat:before { content: @fa-var-grin-beam-sweat; } +.@{fa-css-prefix}-grin-hearts:before { content: @fa-var-grin-hearts; } +.@{fa-css-prefix}-grin-squint:before { content: @fa-var-grin-squint; } +.@{fa-css-prefix}-grin-squint-tears:before { content: @fa-var-grin-squint-tears; } +.@{fa-css-prefix}-grin-stars:before { content: @fa-var-grin-stars; } +.@{fa-css-prefix}-grin-tears:before { content: @fa-var-grin-tears; } +.@{fa-css-prefix}-grin-tongue:before { content: @fa-var-grin-tongue; } +.@{fa-css-prefix}-grin-tongue-squint:before { content: @fa-var-grin-tongue-squint; } +.@{fa-css-prefix}-grin-tongue-wink:before { content: @fa-var-grin-tongue-wink; } +.@{fa-css-prefix}-grin-wink:before { content: @fa-var-grin-wink; } +.@{fa-css-prefix}-grip-horizontal:before { content: @fa-var-grip-horizontal; } +.@{fa-css-prefix}-grip-vertical:before { content: @fa-var-grip-vertical; } +.@{fa-css-prefix}-gripfire:before { content: @fa-var-gripfire; } +.@{fa-css-prefix}-grunt:before { content: @fa-var-grunt; } +.@{fa-css-prefix}-gulp:before { content: @fa-var-gulp; } +.@{fa-css-prefix}-h-square:before { content: @fa-var-h-square; } +.@{fa-css-prefix}-hacker-news:before { content: @fa-var-hacker-news; } +.@{fa-css-prefix}-hacker-news-square:before { content: @fa-var-hacker-news-square; } +.@{fa-css-prefix}-hand-holding:before { content: @fa-var-hand-holding; } +.@{fa-css-prefix}-hand-holding-heart:before { content: @fa-var-hand-holding-heart; } +.@{fa-css-prefix}-hand-holding-usd:before { content: @fa-var-hand-holding-usd; } +.@{fa-css-prefix}-hand-lizard:before { content: @fa-var-hand-lizard; } +.@{fa-css-prefix}-hand-paper:before { content: @fa-var-hand-paper; } +.@{fa-css-prefix}-hand-peace:before { content: @fa-var-hand-peace; } +.@{fa-css-prefix}-hand-point-down:before { content: @fa-var-hand-point-down; } +.@{fa-css-prefix}-hand-point-left:before { content: @fa-var-hand-point-left; } +.@{fa-css-prefix}-hand-point-right:before { content: @fa-var-hand-point-right; } +.@{fa-css-prefix}-hand-point-up:before { content: @fa-var-hand-point-up; } +.@{fa-css-prefix}-hand-pointer:before { content: @fa-var-hand-pointer; } +.@{fa-css-prefix}-hand-rock:before { content: @fa-var-hand-rock; } +.@{fa-css-prefix}-hand-scissors:before { content: @fa-var-hand-scissors; } +.@{fa-css-prefix}-hand-spock:before { content: @fa-var-hand-spock; } +.@{fa-css-prefix}-hands:before { content: @fa-var-hands; } +.@{fa-css-prefix}-hands-helping:before { content: @fa-var-hands-helping; } +.@{fa-css-prefix}-handshake:before { content: @fa-var-handshake; } +.@{fa-css-prefix}-hashtag:before { content: @fa-var-hashtag; } +.@{fa-css-prefix}-hdd:before { content: @fa-var-hdd; } +.@{fa-css-prefix}-heading:before { content: @fa-var-heading; } +.@{fa-css-prefix}-headphones:before { content: @fa-var-headphones; } +.@{fa-css-prefix}-headphones-alt:before { content: @fa-var-headphones-alt; } +.@{fa-css-prefix}-headset:before { content: @fa-var-headset; } +.@{fa-css-prefix}-heart:before { content: @fa-var-heart; } +.@{fa-css-prefix}-heartbeat:before { content: @fa-var-heartbeat; } +.@{fa-css-prefix}-helicopter:before { content: @fa-var-helicopter; } +.@{fa-css-prefix}-highlighter:before { content: @fa-var-highlighter; } +.@{fa-css-prefix}-hips:before { content: @fa-var-hips; } +.@{fa-css-prefix}-hire-a-helper:before { content: @fa-var-hire-a-helper; } +.@{fa-css-prefix}-history:before { content: @fa-var-history; } +.@{fa-css-prefix}-hockey-puck:before { content: @fa-var-hockey-puck; } +.@{fa-css-prefix}-home:before { content: @fa-var-home; } +.@{fa-css-prefix}-hooli:before { content: @fa-var-hooli; } +.@{fa-css-prefix}-hornbill:before { content: @fa-var-hornbill; } +.@{fa-css-prefix}-hospital:before { content: @fa-var-hospital; } +.@{fa-css-prefix}-hospital-alt:before { content: @fa-var-hospital-alt; } +.@{fa-css-prefix}-hospital-symbol:before { content: @fa-var-hospital-symbol; } +.@{fa-css-prefix}-hot-tub:before { content: @fa-var-hot-tub; } +.@{fa-css-prefix}-hotel:before { content: @fa-var-hotel; } +.@{fa-css-prefix}-hotjar:before { content: @fa-var-hotjar; } +.@{fa-css-prefix}-hourglass:before { content: @fa-var-hourglass; } +.@{fa-css-prefix}-hourglass-end:before { content: @fa-var-hourglass-end; } +.@{fa-css-prefix}-hourglass-half:before { content: @fa-var-hourglass-half; } +.@{fa-css-prefix}-hourglass-start:before { content: @fa-var-hourglass-start; } +.@{fa-css-prefix}-houzz:before { content: @fa-var-houzz; } +.@{fa-css-prefix}-html5:before { content: @fa-var-html5; } +.@{fa-css-prefix}-hubspot:before { content: @fa-var-hubspot; } +.@{fa-css-prefix}-i-cursor:before { content: @fa-var-i-cursor; } +.@{fa-css-prefix}-id-badge:before { content: @fa-var-id-badge; } +.@{fa-css-prefix}-id-card:before { content: @fa-var-id-card; } +.@{fa-css-prefix}-id-card-alt:before { content: @fa-var-id-card-alt; } +.@{fa-css-prefix}-image:before { content: @fa-var-image; } +.@{fa-css-prefix}-images:before { content: @fa-var-images; } +.@{fa-css-prefix}-imdb:before { content: @fa-var-imdb; } +.@{fa-css-prefix}-inbox:before { content: @fa-var-inbox; } +.@{fa-css-prefix}-indent:before { content: @fa-var-indent; } +.@{fa-css-prefix}-industry:before { content: @fa-var-industry; } +.@{fa-css-prefix}-infinity:before { content: @fa-var-infinity; } +.@{fa-css-prefix}-info:before { content: @fa-var-info; } +.@{fa-css-prefix}-info-circle:before { content: @fa-var-info-circle; } +.@{fa-css-prefix}-instagram:before { content: @fa-var-instagram; } +.@{fa-css-prefix}-internet-explorer:before { content: @fa-var-internet-explorer; } +.@{fa-css-prefix}-ioxhost:before { content: @fa-var-ioxhost; } +.@{fa-css-prefix}-italic:before { content: @fa-var-italic; } +.@{fa-css-prefix}-itunes:before { content: @fa-var-itunes; } +.@{fa-css-prefix}-itunes-note:before { content: @fa-var-itunes-note; } +.@{fa-css-prefix}-java:before { content: @fa-var-java; } +.@{fa-css-prefix}-jedi-order:before { content: @fa-var-jedi-order; } +.@{fa-css-prefix}-jenkins:before { content: @fa-var-jenkins; } +.@{fa-css-prefix}-joget:before { content: @fa-var-joget; } +.@{fa-css-prefix}-joint:before { content: @fa-var-joint; } +.@{fa-css-prefix}-joomla:before { content: @fa-var-joomla; } +.@{fa-css-prefix}-js:before { content: @fa-var-js; } +.@{fa-css-prefix}-js-square:before { content: @fa-var-js-square; } +.@{fa-css-prefix}-jsfiddle:before { content: @fa-var-jsfiddle; } +.@{fa-css-prefix}-key:before { content: @fa-var-key; } +.@{fa-css-prefix}-keybase:before { content: @fa-var-keybase; } +.@{fa-css-prefix}-keyboard:before { content: @fa-var-keyboard; } +.@{fa-css-prefix}-keycdn:before { content: @fa-var-keycdn; } +.@{fa-css-prefix}-kickstarter:before { content: @fa-var-kickstarter; } +.@{fa-css-prefix}-kickstarter-k:before { content: @fa-var-kickstarter-k; } +.@{fa-css-prefix}-kiss:before { content: @fa-var-kiss; } +.@{fa-css-prefix}-kiss-beam:before { content: @fa-var-kiss-beam; } +.@{fa-css-prefix}-kiss-wink-heart:before { content: @fa-var-kiss-wink-heart; } +.@{fa-css-prefix}-kiwi-bird:before { content: @fa-var-kiwi-bird; } +.@{fa-css-prefix}-korvue:before { content: @fa-var-korvue; } +.@{fa-css-prefix}-language:before { content: @fa-var-language; } +.@{fa-css-prefix}-laptop:before { content: @fa-var-laptop; } +.@{fa-css-prefix}-laravel:before { content: @fa-var-laravel; } +.@{fa-css-prefix}-lastfm:before { content: @fa-var-lastfm; } +.@{fa-css-prefix}-lastfm-square:before { content: @fa-var-lastfm-square; } +.@{fa-css-prefix}-laugh:before { content: @fa-var-laugh; } +.@{fa-css-prefix}-laugh-beam:before { content: @fa-var-laugh-beam; } +.@{fa-css-prefix}-laugh-squint:before { content: @fa-var-laugh-squint; } +.@{fa-css-prefix}-laugh-wink:before { content: @fa-var-laugh-wink; } +.@{fa-css-prefix}-leaf:before { content: @fa-var-leaf; } +.@{fa-css-prefix}-leanpub:before { content: @fa-var-leanpub; } +.@{fa-css-prefix}-lemon:before { content: @fa-var-lemon; } +.@{fa-css-prefix}-less:before { content: @fa-var-less; } +.@{fa-css-prefix}-less-than:before { content: @fa-var-less-than; } +.@{fa-css-prefix}-less-than-equal:before { content: @fa-var-less-than-equal; } +.@{fa-css-prefix}-level-down-alt:before { content: @fa-var-level-down-alt; } +.@{fa-css-prefix}-level-up-alt:before { content: @fa-var-level-up-alt; } +.@{fa-css-prefix}-life-ring:before { content: @fa-var-life-ring; } +.@{fa-css-prefix}-lightbulb:before { content: @fa-var-lightbulb; } +.@{fa-css-prefix}-line:before { content: @fa-var-line; } +.@{fa-css-prefix}-link:before { content: @fa-var-link; } +.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin; } +.@{fa-css-prefix}-linkedin-in:before { content: @fa-var-linkedin-in; } +.@{fa-css-prefix}-linode:before { content: @fa-var-linode; } +.@{fa-css-prefix}-linux:before { content: @fa-var-linux; } +.@{fa-css-prefix}-lira-sign:before { content: @fa-var-lira-sign; } +.@{fa-css-prefix}-list:before { content: @fa-var-list; } +.@{fa-css-prefix}-list-alt:before { content: @fa-var-list-alt; } +.@{fa-css-prefix}-list-ol:before { content: @fa-var-list-ol; } +.@{fa-css-prefix}-list-ul:before { content: @fa-var-list-ul; } +.@{fa-css-prefix}-location-arrow:before { content: @fa-var-location-arrow; } +.@{fa-css-prefix}-lock:before { content: @fa-var-lock; } +.@{fa-css-prefix}-lock-open:before { content: @fa-var-lock-open; } +.@{fa-css-prefix}-long-arrow-alt-down:before { content: @fa-var-long-arrow-alt-down; } +.@{fa-css-prefix}-long-arrow-alt-left:before { content: @fa-var-long-arrow-alt-left; } +.@{fa-css-prefix}-long-arrow-alt-right:before { content: @fa-var-long-arrow-alt-right; } +.@{fa-css-prefix}-long-arrow-alt-up:before { content: @fa-var-long-arrow-alt-up; } +.@{fa-css-prefix}-low-vision:before { content: @fa-var-low-vision; } +.@{fa-css-prefix}-luggage-cart:before { content: @fa-var-luggage-cart; } +.@{fa-css-prefix}-lyft:before { content: @fa-var-lyft; } +.@{fa-css-prefix}-magento:before { content: @fa-var-magento; } +.@{fa-css-prefix}-magic:before { content: @fa-var-magic; } +.@{fa-css-prefix}-magnet:before { content: @fa-var-magnet; } +.@{fa-css-prefix}-mailchimp:before { content: @fa-var-mailchimp; } +.@{fa-css-prefix}-male:before { content: @fa-var-male; } +.@{fa-css-prefix}-mandalorian:before { content: @fa-var-mandalorian; } +.@{fa-css-prefix}-map:before { content: @fa-var-map; } +.@{fa-css-prefix}-map-marked:before { content: @fa-var-map-marked; } +.@{fa-css-prefix}-map-marked-alt:before { content: @fa-var-map-marked-alt; } +.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker; } +.@{fa-css-prefix}-map-marker-alt:before { content: @fa-var-map-marker-alt; } +.@{fa-css-prefix}-map-pin:before { content: @fa-var-map-pin; } +.@{fa-css-prefix}-map-signs:before { content: @fa-var-map-signs; } +.@{fa-css-prefix}-marker:before { content: @fa-var-marker; } +.@{fa-css-prefix}-mars:before { content: @fa-var-mars; } +.@{fa-css-prefix}-mars-double:before { content: @fa-var-mars-double; } +.@{fa-css-prefix}-mars-stroke:before { content: @fa-var-mars-stroke; } +.@{fa-css-prefix}-mars-stroke-h:before { content: @fa-var-mars-stroke-h; } +.@{fa-css-prefix}-mars-stroke-v:before { content: @fa-var-mars-stroke-v; } +.@{fa-css-prefix}-mastodon:before { content: @fa-var-mastodon; } +.@{fa-css-prefix}-maxcdn:before { content: @fa-var-maxcdn; } +.@{fa-css-prefix}-medal:before { content: @fa-var-medal; } +.@{fa-css-prefix}-medapps:before { content: @fa-var-medapps; } +.@{fa-css-prefix}-medium:before { content: @fa-var-medium; } +.@{fa-css-prefix}-medium-m:before { content: @fa-var-medium-m; } +.@{fa-css-prefix}-medkit:before { content: @fa-var-medkit; } +.@{fa-css-prefix}-medrt:before { content: @fa-var-medrt; } +.@{fa-css-prefix}-meetup:before { content: @fa-var-meetup; } +.@{fa-css-prefix}-megaport:before { content: @fa-var-megaport; } +.@{fa-css-prefix}-meh:before { content: @fa-var-meh; } +.@{fa-css-prefix}-meh-blank:before { content: @fa-var-meh-blank; } +.@{fa-css-prefix}-meh-rolling-eyes:before { content: @fa-var-meh-rolling-eyes; } +.@{fa-css-prefix}-memory:before { content: @fa-var-memory; } +.@{fa-css-prefix}-mercury:before { content: @fa-var-mercury; } +.@{fa-css-prefix}-microchip:before { content: @fa-var-microchip; } +.@{fa-css-prefix}-microphone:before { content: @fa-var-microphone; } +.@{fa-css-prefix}-microphone-alt:before { content: @fa-var-microphone-alt; } +.@{fa-css-prefix}-microphone-alt-slash:before { content: @fa-var-microphone-alt-slash; } +.@{fa-css-prefix}-microphone-slash:before { content: @fa-var-microphone-slash; } +.@{fa-css-prefix}-microsoft:before { content: @fa-var-microsoft; } +.@{fa-css-prefix}-minus:before { content: @fa-var-minus; } +.@{fa-css-prefix}-minus-circle:before { content: @fa-var-minus-circle; } +.@{fa-css-prefix}-minus-square:before { content: @fa-var-minus-square; } +.@{fa-css-prefix}-mix:before { content: @fa-var-mix; } +.@{fa-css-prefix}-mixcloud:before { content: @fa-var-mixcloud; } +.@{fa-css-prefix}-mizuni:before { content: @fa-var-mizuni; } +.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile; } +.@{fa-css-prefix}-mobile-alt:before { content: @fa-var-mobile-alt; } +.@{fa-css-prefix}-modx:before { content: @fa-var-modx; } +.@{fa-css-prefix}-monero:before { content: @fa-var-monero; } +.@{fa-css-prefix}-money-bill:before { content: @fa-var-money-bill; } +.@{fa-css-prefix}-money-bill-alt:before { content: @fa-var-money-bill-alt; } +.@{fa-css-prefix}-money-bill-wave:before { content: @fa-var-money-bill-wave; } +.@{fa-css-prefix}-money-bill-wave-alt:before { content: @fa-var-money-bill-wave-alt; } +.@{fa-css-prefix}-money-check:before { content: @fa-var-money-check; } +.@{fa-css-prefix}-money-check-alt:before { content: @fa-var-money-check-alt; } +.@{fa-css-prefix}-monument:before { content: @fa-var-monument; } +.@{fa-css-prefix}-moon:before { content: @fa-var-moon; } +.@{fa-css-prefix}-mortar-pestle:before { content: @fa-var-mortar-pestle; } +.@{fa-css-prefix}-motorcycle:before { content: @fa-var-motorcycle; } +.@{fa-css-prefix}-mouse-pointer:before { content: @fa-var-mouse-pointer; } +.@{fa-css-prefix}-music:before { content: @fa-var-music; } +.@{fa-css-prefix}-napster:before { content: @fa-var-napster; } +.@{fa-css-prefix}-neuter:before { content: @fa-var-neuter; } +.@{fa-css-prefix}-newspaper:before { content: @fa-var-newspaper; } +.@{fa-css-prefix}-nimblr:before { content: @fa-var-nimblr; } +.@{fa-css-prefix}-nintendo-switch:before { content: @fa-var-nintendo-switch; } +.@{fa-css-prefix}-node:before { content: @fa-var-node; } +.@{fa-css-prefix}-node-js:before { content: @fa-var-node-js; } +.@{fa-css-prefix}-not-equal:before { content: @fa-var-not-equal; } +.@{fa-css-prefix}-notes-medical:before { content: @fa-var-notes-medical; } +.@{fa-css-prefix}-npm:before { content: @fa-var-npm; } +.@{fa-css-prefix}-ns8:before { content: @fa-var-ns8; } +.@{fa-css-prefix}-nutritionix:before { content: @fa-var-nutritionix; } +.@{fa-css-prefix}-object-group:before { content: @fa-var-object-group; } +.@{fa-css-prefix}-object-ungroup:before { content: @fa-var-object-ungroup; } +.@{fa-css-prefix}-odnoklassniki:before { content: @fa-var-odnoklassniki; } +.@{fa-css-prefix}-odnoklassniki-square:before { content: @fa-var-odnoklassniki-square; } +.@{fa-css-prefix}-old-republic:before { content: @fa-var-old-republic; } +.@{fa-css-prefix}-opencart:before { content: @fa-var-opencart; } +.@{fa-css-prefix}-openid:before { content: @fa-var-openid; } +.@{fa-css-prefix}-opera:before { content: @fa-var-opera; } +.@{fa-css-prefix}-optin-monster:before { content: @fa-var-optin-monster; } +.@{fa-css-prefix}-osi:before { content: @fa-var-osi; } +.@{fa-css-prefix}-outdent:before { content: @fa-var-outdent; } +.@{fa-css-prefix}-page4:before { content: @fa-var-page4; } +.@{fa-css-prefix}-pagelines:before { content: @fa-var-pagelines; } +.@{fa-css-prefix}-paint-brush:before { content: @fa-var-paint-brush; } +.@{fa-css-prefix}-paint-roller:before { content: @fa-var-paint-roller; } +.@{fa-css-prefix}-palette:before { content: @fa-var-palette; } +.@{fa-css-prefix}-palfed:before { content: @fa-var-palfed; } +.@{fa-css-prefix}-pallet:before { content: @fa-var-pallet; } +.@{fa-css-prefix}-paper-plane:before { content: @fa-var-paper-plane; } +.@{fa-css-prefix}-paperclip:before { content: @fa-var-paperclip; } +.@{fa-css-prefix}-parachute-box:before { content: @fa-var-parachute-box; } +.@{fa-css-prefix}-paragraph:before { content: @fa-var-paragraph; } +.@{fa-css-prefix}-parking:before { content: @fa-var-parking; } +.@{fa-css-prefix}-passport:before { content: @fa-var-passport; } +.@{fa-css-prefix}-paste:before { content: @fa-var-paste; } +.@{fa-css-prefix}-patreon:before { content: @fa-var-patreon; } +.@{fa-css-prefix}-pause:before { content: @fa-var-pause; } +.@{fa-css-prefix}-pause-circle:before { content: @fa-var-pause-circle; } +.@{fa-css-prefix}-paw:before { content: @fa-var-paw; } +.@{fa-css-prefix}-paypal:before { content: @fa-var-paypal; } +.@{fa-css-prefix}-pen:before { content: @fa-var-pen; } +.@{fa-css-prefix}-pen-alt:before { content: @fa-var-pen-alt; } +.@{fa-css-prefix}-pen-fancy:before { content: @fa-var-pen-fancy; } +.@{fa-css-prefix}-pen-nib:before { content: @fa-var-pen-nib; } +.@{fa-css-prefix}-pen-square:before { content: @fa-var-pen-square; } +.@{fa-css-prefix}-pencil-alt:before { content: @fa-var-pencil-alt; } +.@{fa-css-prefix}-pencil-ruler:before { content: @fa-var-pencil-ruler; } +.@{fa-css-prefix}-people-carry:before { content: @fa-var-people-carry; } +.@{fa-css-prefix}-percent:before { content: @fa-var-percent; } +.@{fa-css-prefix}-percentage:before { content: @fa-var-percentage; } +.@{fa-css-prefix}-periscope:before { content: @fa-var-periscope; } +.@{fa-css-prefix}-phabricator:before { content: @fa-var-phabricator; } +.@{fa-css-prefix}-phoenix-framework:before { content: @fa-var-phoenix-framework; } +.@{fa-css-prefix}-phoenix-squadron:before { content: @fa-var-phoenix-squadron; } +.@{fa-css-prefix}-phone:before { content: @fa-var-phone; } +.@{fa-css-prefix}-phone-slash:before { content: @fa-var-phone-slash; } +.@{fa-css-prefix}-phone-square:before { content: @fa-var-phone-square; } +.@{fa-css-prefix}-phone-volume:before { content: @fa-var-phone-volume; } +.@{fa-css-prefix}-php:before { content: @fa-var-php; } +.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; } +.@{fa-css-prefix}-pied-piper-alt:before { content: @fa-var-pied-piper-alt; } +.@{fa-css-prefix}-pied-piper-hat:before { content: @fa-var-pied-piper-hat; } +.@{fa-css-prefix}-pied-piper-pp:before { content: @fa-var-pied-piper-pp; } +.@{fa-css-prefix}-piggy-bank:before { content: @fa-var-piggy-bank; } +.@{fa-css-prefix}-pills:before { content: @fa-var-pills; } +.@{fa-css-prefix}-pinterest:before { content: @fa-var-pinterest; } +.@{fa-css-prefix}-pinterest-p:before { content: @fa-var-pinterest-p; } +.@{fa-css-prefix}-pinterest-square:before { content: @fa-var-pinterest-square; } +.@{fa-css-prefix}-plane:before { content: @fa-var-plane; } +.@{fa-css-prefix}-plane-arrival:before { content: @fa-var-plane-arrival; } +.@{fa-css-prefix}-plane-departure:before { content: @fa-var-plane-departure; } +.@{fa-css-prefix}-play:before { content: @fa-var-play; } +.@{fa-css-prefix}-play-circle:before { content: @fa-var-play-circle; } +.@{fa-css-prefix}-playstation:before { content: @fa-var-playstation; } +.@{fa-css-prefix}-plug:before { content: @fa-var-plug; } +.@{fa-css-prefix}-plus:before { content: @fa-var-plus; } +.@{fa-css-prefix}-plus-circle:before { content: @fa-var-plus-circle; } +.@{fa-css-prefix}-plus-square:before { content: @fa-var-plus-square; } +.@{fa-css-prefix}-podcast:before { content: @fa-var-podcast; } +.@{fa-css-prefix}-poo:before { content: @fa-var-poo; } +.@{fa-css-prefix}-portrait:before { content: @fa-var-portrait; } +.@{fa-css-prefix}-pound-sign:before { content: @fa-var-pound-sign; } +.@{fa-css-prefix}-power-off:before { content: @fa-var-power-off; } +.@{fa-css-prefix}-prescription:before { content: @fa-var-prescription; } +.@{fa-css-prefix}-prescription-bottle:before { content: @fa-var-prescription-bottle; } +.@{fa-css-prefix}-prescription-bottle-alt:before { content: @fa-var-prescription-bottle-alt; } +.@{fa-css-prefix}-print:before { content: @fa-var-print; } +.@{fa-css-prefix}-procedures:before { content: @fa-var-procedures; } +.@{fa-css-prefix}-product-hunt:before { content: @fa-var-product-hunt; } +.@{fa-css-prefix}-project-diagram:before { content: @fa-var-project-diagram; } +.@{fa-css-prefix}-pushed:before { content: @fa-var-pushed; } +.@{fa-css-prefix}-puzzle-piece:before { content: @fa-var-puzzle-piece; } +.@{fa-css-prefix}-python:before { content: @fa-var-python; } +.@{fa-css-prefix}-qq:before { content: @fa-var-qq; } +.@{fa-css-prefix}-qrcode:before { content: @fa-var-qrcode; } +.@{fa-css-prefix}-question:before { content: @fa-var-question; } +.@{fa-css-prefix}-question-circle:before { content: @fa-var-question-circle; } +.@{fa-css-prefix}-quidditch:before { content: @fa-var-quidditch; } +.@{fa-css-prefix}-quinscape:before { content: @fa-var-quinscape; } +.@{fa-css-prefix}-quora:before { content: @fa-var-quora; } +.@{fa-css-prefix}-quote-left:before { content: @fa-var-quote-left; } +.@{fa-css-prefix}-quote-right:before { content: @fa-var-quote-right; } +.@{fa-css-prefix}-r-project:before { content: @fa-var-r-project; } +.@{fa-css-prefix}-random:before { content: @fa-var-random; } +.@{fa-css-prefix}-ravelry:before { content: @fa-var-ravelry; } +.@{fa-css-prefix}-react:before { content: @fa-var-react; } +.@{fa-css-prefix}-readme:before { content: @fa-var-readme; } +.@{fa-css-prefix}-rebel:before { content: @fa-var-rebel; } +.@{fa-css-prefix}-receipt:before { content: @fa-var-receipt; } +.@{fa-css-prefix}-recycle:before { content: @fa-var-recycle; } +.@{fa-css-prefix}-red-river:before { content: @fa-var-red-river; } +.@{fa-css-prefix}-reddit:before { content: @fa-var-reddit; } +.@{fa-css-prefix}-reddit-alien:before { content: @fa-var-reddit-alien; } +.@{fa-css-prefix}-reddit-square:before { content: @fa-var-reddit-square; } +.@{fa-css-prefix}-redo:before { content: @fa-var-redo; } +.@{fa-css-prefix}-redo-alt:before { content: @fa-var-redo-alt; } +.@{fa-css-prefix}-registered:before { content: @fa-var-registered; } +.@{fa-css-prefix}-rendact:before { content: @fa-var-rendact; } +.@{fa-css-prefix}-renren:before { content: @fa-var-renren; } +.@{fa-css-prefix}-reply:before { content: @fa-var-reply; } +.@{fa-css-prefix}-reply-all:before { content: @fa-var-reply-all; } +.@{fa-css-prefix}-replyd:before { content: @fa-var-replyd; } +.@{fa-css-prefix}-researchgate:before { content: @fa-var-researchgate; } +.@{fa-css-prefix}-resolving:before { content: @fa-var-resolving; } +.@{fa-css-prefix}-retweet:before { content: @fa-var-retweet; } +.@{fa-css-prefix}-rev:before { content: @fa-var-rev; } +.@{fa-css-prefix}-ribbon:before { content: @fa-var-ribbon; } +.@{fa-css-prefix}-road:before { content: @fa-var-road; } +.@{fa-css-prefix}-robot:before { content: @fa-var-robot; } +.@{fa-css-prefix}-rocket:before { content: @fa-var-rocket; } +.@{fa-css-prefix}-rocketchat:before { content: @fa-var-rocketchat; } +.@{fa-css-prefix}-rockrms:before { content: @fa-var-rockrms; } +.@{fa-css-prefix}-rss:before { content: @fa-var-rss; } +.@{fa-css-prefix}-rss-square:before { content: @fa-var-rss-square; } +.@{fa-css-prefix}-ruble-sign:before { content: @fa-var-ruble-sign; } +.@{fa-css-prefix}-ruler:before { content: @fa-var-ruler; } +.@{fa-css-prefix}-ruler-combined:before { content: @fa-var-ruler-combined; } +.@{fa-css-prefix}-ruler-horizontal:before { content: @fa-var-ruler-horizontal; } +.@{fa-css-prefix}-ruler-vertical:before { content: @fa-var-ruler-vertical; } +.@{fa-css-prefix}-rupee-sign:before { content: @fa-var-rupee-sign; } +.@{fa-css-prefix}-sad-cry:before { content: @fa-var-sad-cry; } +.@{fa-css-prefix}-sad-tear:before { content: @fa-var-sad-tear; } +.@{fa-css-prefix}-safari:before { content: @fa-var-safari; } +.@{fa-css-prefix}-sass:before { content: @fa-var-sass; } +.@{fa-css-prefix}-save:before { content: @fa-var-save; } +.@{fa-css-prefix}-schlix:before { content: @fa-var-schlix; } +.@{fa-css-prefix}-school:before { content: @fa-var-school; } +.@{fa-css-prefix}-screwdriver:before { content: @fa-var-screwdriver; } +.@{fa-css-prefix}-scribd:before { content: @fa-var-scribd; } +.@{fa-css-prefix}-search:before { content: @fa-var-search; } +.@{fa-css-prefix}-search-minus:before { content: @fa-var-search-minus; } +.@{fa-css-prefix}-search-plus:before { content: @fa-var-search-plus; } +.@{fa-css-prefix}-searchengin:before { content: @fa-var-searchengin; } +.@{fa-css-prefix}-seedling:before { content: @fa-var-seedling; } +.@{fa-css-prefix}-sellcast:before { content: @fa-var-sellcast; } +.@{fa-css-prefix}-sellsy:before { content: @fa-var-sellsy; } +.@{fa-css-prefix}-server:before { content: @fa-var-server; } +.@{fa-css-prefix}-servicestack:before { content: @fa-var-servicestack; } +.@{fa-css-prefix}-share:before { content: @fa-var-share; } +.@{fa-css-prefix}-share-alt:before { content: @fa-var-share-alt; } +.@{fa-css-prefix}-share-alt-square:before { content: @fa-var-share-alt-square; } +.@{fa-css-prefix}-share-square:before { content: @fa-var-share-square; } +.@{fa-css-prefix}-shekel-sign:before { content: @fa-var-shekel-sign; } +.@{fa-css-prefix}-shield-alt:before { content: @fa-var-shield-alt; } +.@{fa-css-prefix}-ship:before { content: @fa-var-ship; } +.@{fa-css-prefix}-shipping-fast:before { content: @fa-var-shipping-fast; } +.@{fa-css-prefix}-shirtsinbulk:before { content: @fa-var-shirtsinbulk; } +.@{fa-css-prefix}-shoe-prints:before { content: @fa-var-shoe-prints; } +.@{fa-css-prefix}-shopping-bag:before { content: @fa-var-shopping-bag; } +.@{fa-css-prefix}-shopping-basket:before { content: @fa-var-shopping-basket; } +.@{fa-css-prefix}-shopping-cart:before { content: @fa-var-shopping-cart; } +.@{fa-css-prefix}-shopware:before { content: @fa-var-shopware; } +.@{fa-css-prefix}-shower:before { content: @fa-var-shower; } +.@{fa-css-prefix}-shuttle-van:before { content: @fa-var-shuttle-van; } +.@{fa-css-prefix}-sign:before { content: @fa-var-sign; } +.@{fa-css-prefix}-sign-in-alt:before { content: @fa-var-sign-in-alt; } +.@{fa-css-prefix}-sign-language:before { content: @fa-var-sign-language; } +.@{fa-css-prefix}-sign-out-alt:before { content: @fa-var-sign-out-alt; } +.@{fa-css-prefix}-signal:before { content: @fa-var-signal; } +.@{fa-css-prefix}-signature:before { content: @fa-var-signature; } +.@{fa-css-prefix}-simplybuilt:before { content: @fa-var-simplybuilt; } +.@{fa-css-prefix}-sistrix:before { content: @fa-var-sistrix; } +.@{fa-css-prefix}-sitemap:before { content: @fa-var-sitemap; } +.@{fa-css-prefix}-sith:before { content: @fa-var-sith; } +.@{fa-css-prefix}-skull:before { content: @fa-var-skull; } +.@{fa-css-prefix}-skyatlas:before { content: @fa-var-skyatlas; } +.@{fa-css-prefix}-skype:before { content: @fa-var-skype; } +.@{fa-css-prefix}-slack:before { content: @fa-var-slack; } +.@{fa-css-prefix}-slack-hash:before { content: @fa-var-slack-hash; } +.@{fa-css-prefix}-sliders-h:before { content: @fa-var-sliders-h; } +.@{fa-css-prefix}-slideshare:before { content: @fa-var-slideshare; } +.@{fa-css-prefix}-smile:before { content: @fa-var-smile; } +.@{fa-css-prefix}-smile-beam:before { content: @fa-var-smile-beam; } +.@{fa-css-prefix}-smile-wink:before { content: @fa-var-smile-wink; } +.@{fa-css-prefix}-smoking:before { content: @fa-var-smoking; } +.@{fa-css-prefix}-smoking-ban:before { content: @fa-var-smoking-ban; } +.@{fa-css-prefix}-snapchat:before { content: @fa-var-snapchat; } +.@{fa-css-prefix}-snapchat-ghost:before { content: @fa-var-snapchat-ghost; } +.@{fa-css-prefix}-snapchat-square:before { content: @fa-var-snapchat-square; } +.@{fa-css-prefix}-snowflake:before { content: @fa-var-snowflake; } +.@{fa-css-prefix}-solar-panel:before { content: @fa-var-solar-panel; } +.@{fa-css-prefix}-sort:before { content: @fa-var-sort; } +.@{fa-css-prefix}-sort-alpha-down:before { content: @fa-var-sort-alpha-down; } +.@{fa-css-prefix}-sort-alpha-up:before { content: @fa-var-sort-alpha-up; } +.@{fa-css-prefix}-sort-amount-down:before { content: @fa-var-sort-amount-down; } +.@{fa-css-prefix}-sort-amount-up:before { content: @fa-var-sort-amount-up; } +.@{fa-css-prefix}-sort-down:before { content: @fa-var-sort-down; } +.@{fa-css-prefix}-sort-numeric-down:before { content: @fa-var-sort-numeric-down; } +.@{fa-css-prefix}-sort-numeric-up:before { content: @fa-var-sort-numeric-up; } +.@{fa-css-prefix}-sort-up:before { content: @fa-var-sort-up; } +.@{fa-css-prefix}-soundcloud:before { content: @fa-var-soundcloud; } +.@{fa-css-prefix}-spa:before { content: @fa-var-spa; } +.@{fa-css-prefix}-space-shuttle:before { content: @fa-var-space-shuttle; } +.@{fa-css-prefix}-speakap:before { content: @fa-var-speakap; } +.@{fa-css-prefix}-spinner:before { content: @fa-var-spinner; } +.@{fa-css-prefix}-splotch:before { content: @fa-var-splotch; } +.@{fa-css-prefix}-spotify:before { content: @fa-var-spotify; } +.@{fa-css-prefix}-spray-can:before { content: @fa-var-spray-can; } +.@{fa-css-prefix}-square:before { content: @fa-var-square; } +.@{fa-css-prefix}-square-full:before { content: @fa-var-square-full; } +.@{fa-css-prefix}-squarespace:before { content: @fa-var-squarespace; } +.@{fa-css-prefix}-stack-exchange:before { content: @fa-var-stack-exchange; } +.@{fa-css-prefix}-stack-overflow:before { content: @fa-var-stack-overflow; } +.@{fa-css-prefix}-stamp:before { content: @fa-var-stamp; } +.@{fa-css-prefix}-star:before { content: @fa-var-star; } +.@{fa-css-prefix}-star-half:before { content: @fa-var-star-half; } +.@{fa-css-prefix}-star-half-alt:before { content: @fa-var-star-half-alt; } +.@{fa-css-prefix}-staylinked:before { content: @fa-var-staylinked; } +.@{fa-css-prefix}-steam:before { content: @fa-var-steam; } +.@{fa-css-prefix}-steam-square:before { content: @fa-var-steam-square; } +.@{fa-css-prefix}-steam-symbol:before { content: @fa-var-steam-symbol; } +.@{fa-css-prefix}-step-backward:before { content: @fa-var-step-backward; } +.@{fa-css-prefix}-step-forward:before { content: @fa-var-step-forward; } +.@{fa-css-prefix}-stethoscope:before { content: @fa-var-stethoscope; } +.@{fa-css-prefix}-sticker-mule:before { content: @fa-var-sticker-mule; } +.@{fa-css-prefix}-sticky-note:before { content: @fa-var-sticky-note; } +.@{fa-css-prefix}-stop:before { content: @fa-var-stop; } +.@{fa-css-prefix}-stop-circle:before { content: @fa-var-stop-circle; } +.@{fa-css-prefix}-stopwatch:before { content: @fa-var-stopwatch; } +.@{fa-css-prefix}-store:before { content: @fa-var-store; } +.@{fa-css-prefix}-store-alt:before { content: @fa-var-store-alt; } +.@{fa-css-prefix}-strava:before { content: @fa-var-strava; } +.@{fa-css-prefix}-stream:before { content: @fa-var-stream; } +.@{fa-css-prefix}-street-view:before { content: @fa-var-street-view; } +.@{fa-css-prefix}-strikethrough:before { content: @fa-var-strikethrough; } +.@{fa-css-prefix}-stripe:before { content: @fa-var-stripe; } +.@{fa-css-prefix}-stripe-s:before { content: @fa-var-stripe-s; } +.@{fa-css-prefix}-stroopwafel:before { content: @fa-var-stroopwafel; } +.@{fa-css-prefix}-studiovinari:before { content: @fa-var-studiovinari; } +.@{fa-css-prefix}-stumbleupon:before { content: @fa-var-stumbleupon; } +.@{fa-css-prefix}-stumbleupon-circle:before { content: @fa-var-stumbleupon-circle; } +.@{fa-css-prefix}-subscript:before { content: @fa-var-subscript; } +.@{fa-css-prefix}-subway:before { content: @fa-var-subway; } +.@{fa-css-prefix}-suitcase:before { content: @fa-var-suitcase; } +.@{fa-css-prefix}-suitcase-rolling:before { content: @fa-var-suitcase-rolling; } +.@{fa-css-prefix}-sun:before { content: @fa-var-sun; } +.@{fa-css-prefix}-superpowers:before { content: @fa-var-superpowers; } +.@{fa-css-prefix}-superscript:before { content: @fa-var-superscript; } +.@{fa-css-prefix}-supple:before { content: @fa-var-supple; } +.@{fa-css-prefix}-surprise:before { content: @fa-var-surprise; } +.@{fa-css-prefix}-swatchbook:before { content: @fa-var-swatchbook; } +.@{fa-css-prefix}-swimmer:before { content: @fa-var-swimmer; } +.@{fa-css-prefix}-swimming-pool:before { content: @fa-var-swimming-pool; } +.@{fa-css-prefix}-sync:before { content: @fa-var-sync; } +.@{fa-css-prefix}-sync-alt:before { content: @fa-var-sync-alt; } +.@{fa-css-prefix}-syringe:before { content: @fa-var-syringe; } +.@{fa-css-prefix}-table:before { content: @fa-var-table; } +.@{fa-css-prefix}-table-tennis:before { content: @fa-var-table-tennis; } +.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet; } +.@{fa-css-prefix}-tablet-alt:before { content: @fa-var-tablet-alt; } +.@{fa-css-prefix}-tablets:before { content: @fa-var-tablets; } +.@{fa-css-prefix}-tachometer-alt:before { content: @fa-var-tachometer-alt; } +.@{fa-css-prefix}-tag:before { content: @fa-var-tag; } +.@{fa-css-prefix}-tags:before { content: @fa-var-tags; } +.@{fa-css-prefix}-tape:before { content: @fa-var-tape; } +.@{fa-css-prefix}-tasks:before { content: @fa-var-tasks; } +.@{fa-css-prefix}-taxi:before { content: @fa-var-taxi; } +.@{fa-css-prefix}-teamspeak:before { content: @fa-var-teamspeak; } +.@{fa-css-prefix}-telegram:before { content: @fa-var-telegram; } +.@{fa-css-prefix}-telegram-plane:before { content: @fa-var-telegram-plane; } +.@{fa-css-prefix}-tencent-weibo:before { content: @fa-var-tencent-weibo; } +.@{fa-css-prefix}-terminal:before { content: @fa-var-terminal; } +.@{fa-css-prefix}-text-height:before { content: @fa-var-text-height; } +.@{fa-css-prefix}-text-width:before { content: @fa-var-text-width; } +.@{fa-css-prefix}-th:before { content: @fa-var-th; } +.@{fa-css-prefix}-th-large:before { content: @fa-var-th-large; } +.@{fa-css-prefix}-th-list:before { content: @fa-var-th-list; } +.@{fa-css-prefix}-themeco:before { content: @fa-var-themeco; } +.@{fa-css-prefix}-themeisle:before { content: @fa-var-themeisle; } +.@{fa-css-prefix}-thermometer:before { content: @fa-var-thermometer; } +.@{fa-css-prefix}-thermometer-empty:before { content: @fa-var-thermometer-empty; } +.@{fa-css-prefix}-thermometer-full:before { content: @fa-var-thermometer-full; } +.@{fa-css-prefix}-thermometer-half:before { content: @fa-var-thermometer-half; } +.@{fa-css-prefix}-thermometer-quarter:before { content: @fa-var-thermometer-quarter; } +.@{fa-css-prefix}-thermometer-three-quarters:before { content: @fa-var-thermometer-three-quarters; } +.@{fa-css-prefix}-thumbs-down:before { content: @fa-var-thumbs-down; } +.@{fa-css-prefix}-thumbs-up:before { content: @fa-var-thumbs-up; } +.@{fa-css-prefix}-thumbtack:before { content: @fa-var-thumbtack; } +.@{fa-css-prefix}-ticket-alt:before { content: @fa-var-ticket-alt; } +.@{fa-css-prefix}-times:before { content: @fa-var-times; } +.@{fa-css-prefix}-times-circle:before { content: @fa-var-times-circle; } +.@{fa-css-prefix}-tint:before { content: @fa-var-tint; } +.@{fa-css-prefix}-tint-slash:before { content: @fa-var-tint-slash; } +.@{fa-css-prefix}-tired:before { content: @fa-var-tired; } +.@{fa-css-prefix}-toggle-off:before { content: @fa-var-toggle-off; } +.@{fa-css-prefix}-toggle-on:before { content: @fa-var-toggle-on; } +.@{fa-css-prefix}-toolbox:before { content: @fa-var-toolbox; } +.@{fa-css-prefix}-tooth:before { content: @fa-var-tooth; } +.@{fa-css-prefix}-trade-federation:before { content: @fa-var-trade-federation; } +.@{fa-css-prefix}-trademark:before { content: @fa-var-trademark; } +.@{fa-css-prefix}-train:before { content: @fa-var-train; } +.@{fa-css-prefix}-transgender:before { content: @fa-var-transgender; } +.@{fa-css-prefix}-transgender-alt:before { content: @fa-var-transgender-alt; } +.@{fa-css-prefix}-trash:before { content: @fa-var-trash; } +.@{fa-css-prefix}-trash-alt:before { content: @fa-var-trash-alt; } +.@{fa-css-prefix}-tree:before { content: @fa-var-tree; } +.@{fa-css-prefix}-trello:before { content: @fa-var-trello; } +.@{fa-css-prefix}-tripadvisor:before { content: @fa-var-tripadvisor; } +.@{fa-css-prefix}-trophy:before { content: @fa-var-trophy; } +.@{fa-css-prefix}-truck:before { content: @fa-var-truck; } +.@{fa-css-prefix}-truck-loading:before { content: @fa-var-truck-loading; } +.@{fa-css-prefix}-truck-moving:before { content: @fa-var-truck-moving; } +.@{fa-css-prefix}-tshirt:before { content: @fa-var-tshirt; } +.@{fa-css-prefix}-tty:before { content: @fa-var-tty; } +.@{fa-css-prefix}-tumblr:before { content: @fa-var-tumblr; } +.@{fa-css-prefix}-tumblr-square:before { content: @fa-var-tumblr-square; } +.@{fa-css-prefix}-tv:before { content: @fa-var-tv; } +.@{fa-css-prefix}-twitch:before { content: @fa-var-twitch; } +.@{fa-css-prefix}-twitter:before { content: @fa-var-twitter; } +.@{fa-css-prefix}-twitter-square:before { content: @fa-var-twitter-square; } +.@{fa-css-prefix}-typo3:before { content: @fa-var-typo3; } +.@{fa-css-prefix}-uber:before { content: @fa-var-uber; } +.@{fa-css-prefix}-uikit:before { content: @fa-var-uikit; } +.@{fa-css-prefix}-umbrella:before { content: @fa-var-umbrella; } +.@{fa-css-prefix}-umbrella-beach:before { content: @fa-var-umbrella-beach; } +.@{fa-css-prefix}-underline:before { content: @fa-var-underline; } +.@{fa-css-prefix}-undo:before { content: @fa-var-undo; } +.@{fa-css-prefix}-undo-alt:before { content: @fa-var-undo-alt; } +.@{fa-css-prefix}-uniregistry:before { content: @fa-var-uniregistry; } +.@{fa-css-prefix}-universal-access:before { content: @fa-var-universal-access; } +.@{fa-css-prefix}-university:before { content: @fa-var-university; } +.@{fa-css-prefix}-unlink:before { content: @fa-var-unlink; } +.@{fa-css-prefix}-unlock:before { content: @fa-var-unlock; } +.@{fa-css-prefix}-unlock-alt:before { content: @fa-var-unlock-alt; } +.@{fa-css-prefix}-untappd:before { content: @fa-var-untappd; } +.@{fa-css-prefix}-upload:before { content: @fa-var-upload; } +.@{fa-css-prefix}-usb:before { content: @fa-var-usb; } +.@{fa-css-prefix}-user:before { content: @fa-var-user; } +.@{fa-css-prefix}-user-alt:before { content: @fa-var-user-alt; } +.@{fa-css-prefix}-user-alt-slash:before { content: @fa-var-user-alt-slash; } +.@{fa-css-prefix}-user-astronaut:before { content: @fa-var-user-astronaut; } +.@{fa-css-prefix}-user-check:before { content: @fa-var-user-check; } +.@{fa-css-prefix}-user-circle:before { content: @fa-var-user-circle; } +.@{fa-css-prefix}-user-clock:before { content: @fa-var-user-clock; } +.@{fa-css-prefix}-user-cog:before { content: @fa-var-user-cog; } +.@{fa-css-prefix}-user-edit:before { content: @fa-var-user-edit; } +.@{fa-css-prefix}-user-friends:before { content: @fa-var-user-friends; } +.@{fa-css-prefix}-user-graduate:before { content: @fa-var-user-graduate; } +.@{fa-css-prefix}-user-lock:before { content: @fa-var-user-lock; } +.@{fa-css-prefix}-user-md:before { content: @fa-var-user-md; } +.@{fa-css-prefix}-user-minus:before { content: @fa-var-user-minus; } +.@{fa-css-prefix}-user-ninja:before { content: @fa-var-user-ninja; } +.@{fa-css-prefix}-user-plus:before { content: @fa-var-user-plus; } +.@{fa-css-prefix}-user-secret:before { content: @fa-var-user-secret; } +.@{fa-css-prefix}-user-shield:before { content: @fa-var-user-shield; } +.@{fa-css-prefix}-user-slash:before { content: @fa-var-user-slash; } +.@{fa-css-prefix}-user-tag:before { content: @fa-var-user-tag; } +.@{fa-css-prefix}-user-tie:before { content: @fa-var-user-tie; } +.@{fa-css-prefix}-user-times:before { content: @fa-var-user-times; } +.@{fa-css-prefix}-users:before { content: @fa-var-users; } +.@{fa-css-prefix}-users-cog:before { content: @fa-var-users-cog; } +.@{fa-css-prefix}-ussunnah:before { content: @fa-var-ussunnah; } +.@{fa-css-prefix}-utensil-spoon:before { content: @fa-var-utensil-spoon; } +.@{fa-css-prefix}-utensils:before { content: @fa-var-utensils; } +.@{fa-css-prefix}-vaadin:before { content: @fa-var-vaadin; } +.@{fa-css-prefix}-vector-square:before { content: @fa-var-vector-square; } +.@{fa-css-prefix}-venus:before { content: @fa-var-venus; } +.@{fa-css-prefix}-venus-double:before { content: @fa-var-venus-double; } +.@{fa-css-prefix}-venus-mars:before { content: @fa-var-venus-mars; } +.@{fa-css-prefix}-viacoin:before { content: @fa-var-viacoin; } +.@{fa-css-prefix}-viadeo:before { content: @fa-var-viadeo; } +.@{fa-css-prefix}-viadeo-square:before { content: @fa-var-viadeo-square; } +.@{fa-css-prefix}-vial:before { content: @fa-var-vial; } +.@{fa-css-prefix}-vials:before { content: @fa-var-vials; } +.@{fa-css-prefix}-viber:before { content: @fa-var-viber; } +.@{fa-css-prefix}-video:before { content: @fa-var-video; } +.@{fa-css-prefix}-video-slash:before { content: @fa-var-video-slash; } +.@{fa-css-prefix}-vimeo:before { content: @fa-var-vimeo; } +.@{fa-css-prefix}-vimeo-square:before { content: @fa-var-vimeo-square; } +.@{fa-css-prefix}-vimeo-v:before { content: @fa-var-vimeo-v; } +.@{fa-css-prefix}-vine:before { content: @fa-var-vine; } +.@{fa-css-prefix}-vk:before { content: @fa-var-vk; } +.@{fa-css-prefix}-vnv:before { content: @fa-var-vnv; } +.@{fa-css-prefix}-volleyball-ball:before { content: @fa-var-volleyball-ball; } +.@{fa-css-prefix}-volume-down:before { content: @fa-var-volume-down; } +.@{fa-css-prefix}-volume-off:before { content: @fa-var-volume-off; } +.@{fa-css-prefix}-volume-up:before { content: @fa-var-volume-up; } +.@{fa-css-prefix}-vuejs:before { content: @fa-var-vuejs; } +.@{fa-css-prefix}-walking:before { content: @fa-var-walking; } +.@{fa-css-prefix}-wallet:before { content: @fa-var-wallet; } +.@{fa-css-prefix}-warehouse:before { content: @fa-var-warehouse; } +.@{fa-css-prefix}-weebly:before { content: @fa-var-weebly; } +.@{fa-css-prefix}-weibo:before { content: @fa-var-weibo; } +.@{fa-css-prefix}-weight:before { content: @fa-var-weight; } +.@{fa-css-prefix}-weight-hanging:before { content: @fa-var-weight-hanging; } +.@{fa-css-prefix}-weixin:before { content: @fa-var-weixin; } +.@{fa-css-prefix}-whatsapp:before { content: @fa-var-whatsapp; } +.@{fa-css-prefix}-whatsapp-square:before { content: @fa-var-whatsapp-square; } +.@{fa-css-prefix}-wheelchair:before { content: @fa-var-wheelchair; } +.@{fa-css-prefix}-whmcs:before { content: @fa-var-whmcs; } +.@{fa-css-prefix}-wifi:before { content: @fa-var-wifi; } +.@{fa-css-prefix}-wikipedia-w:before { content: @fa-var-wikipedia-w; } +.@{fa-css-prefix}-window-close:before { content: @fa-var-window-close; } +.@{fa-css-prefix}-window-maximize:before { content: @fa-var-window-maximize; } +.@{fa-css-prefix}-window-minimize:before { content: @fa-var-window-minimize; } +.@{fa-css-prefix}-window-restore:before { content: @fa-var-window-restore; } +.@{fa-css-prefix}-windows:before { content: @fa-var-windows; } +.@{fa-css-prefix}-wine-glass:before { content: @fa-var-wine-glass; } +.@{fa-css-prefix}-wine-glass-alt:before { content: @fa-var-wine-glass-alt; } +.@{fa-css-prefix}-wix:before { content: @fa-var-wix; } +.@{fa-css-prefix}-wolf-pack-battalion:before { content: @fa-var-wolf-pack-battalion; } +.@{fa-css-prefix}-won-sign:before { content: @fa-var-won-sign; } +.@{fa-css-prefix}-wordpress:before { content: @fa-var-wordpress; } +.@{fa-css-prefix}-wordpress-simple:before { content: @fa-var-wordpress-simple; } +.@{fa-css-prefix}-wpbeginner:before { content: @fa-var-wpbeginner; } +.@{fa-css-prefix}-wpexplorer:before { content: @fa-var-wpexplorer; } +.@{fa-css-prefix}-wpforms:before { content: @fa-var-wpforms; } +.@{fa-css-prefix}-wrench:before { content: @fa-var-wrench; } +.@{fa-css-prefix}-x-ray:before { content: @fa-var-x-ray; } +.@{fa-css-prefix}-xbox:before { content: @fa-var-xbox; } +.@{fa-css-prefix}-xing:before { content: @fa-var-xing; } +.@{fa-css-prefix}-xing-square:before { content: @fa-var-xing-square; } +.@{fa-css-prefix}-y-combinator:before { content: @fa-var-y-combinator; } +.@{fa-css-prefix}-yahoo:before { content: @fa-var-yahoo; } +.@{fa-css-prefix}-yandex:before { content: @fa-var-yandex; } +.@{fa-css-prefix}-yandex-international:before { content: @fa-var-yandex-international; } +.@{fa-css-prefix}-yelp:before { content: @fa-var-yelp; } +.@{fa-css-prefix}-yen-sign:before { content: @fa-var-yen-sign; } +.@{fa-css-prefix}-yoast:before { content: @fa-var-yoast; } +.@{fa-css-prefix}-youtube:before { content: @fa-var-youtube; } +.@{fa-css-prefix}-youtube-square:before { content: @fa-var-youtube-square; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_larger.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_larger.less new file mode 100644 index 0000000000..6cbb1ec6ec --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_larger.less @@ -0,0 +1,27 @@ +// Icon Sizes +// ------------------------- + +.larger(@factor) when (@factor > 0) { + .larger((@factor - 1)); + + .@{fa-css-prefix}-@{factor}x { + font-size: (@factor * 1em); + } +} + +/* makes the font 33% larger relative to the icon container */ +.@{fa-css-prefix}-lg { + font-size: (4em / 3); + line-height: (3em / 4); + vertical-align: -.0667em; +} + +.@{fa-css-prefix}-xs { + font-size: .75em; +} + +.@{fa-css-prefix}-sm { + font-size: .875em; +} + +.larger(10); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_list.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_list.less new file mode 100644 index 0000000000..1ff7ca7f59 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_list.less @@ -0,0 +1,18 @@ +// List Icons +// ------------------------- + +.@{fa-css-prefix}-ul { + list-style-type: none; + margin-left: @fa-li-width * 5/4; + padding-left: 0; + + > li { position: relative; } +} + +.@{fa-css-prefix}-li { + left: -@fa-li-width; + position: absolute; + text-align: center; + width: @fa-li-width; + line-height: inherit; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_mixins.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_mixins.less new file mode 100644 index 0000000000..a4e93f90a3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_mixins.less @@ -0,0 +1,57 @@ +// Mixins +// -------------------------- + +.fa-icon() { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: inline-block; + font-style: normal; + font-variant: normal; + font-weight: normal; + line-height: 1; + vertical-align: -.125em; +} + +.fa-icon-rotate(@degrees, @rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})"; + transform: rotate(@degrees); +} + +.fa-icon-flip(@horiz, @vert, @rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)"; + transform: scale(@horiz, @vert); +} + + +// Only display content to screen readers. A la Bootstrap 4. +// +// See: http://a11yproject.com/posts/how-to-hide-content/ + +.sr-only() { + border: 0; + clip: rect(0,0,0,0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; +} + +// Use in conjunction with .sr-only to only display content when it's focused. +// +// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 +// +// Credit: HTML5 Boilerplate + +.sr-only-focusable() { + &:active, + &:focus { + clip: auto; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto; + } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_rotated-flipped.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_rotated-flipped.less new file mode 100644 index 0000000000..1ee31db19f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_rotated-flipped.less @@ -0,0 +1,23 @@ +// Rotated & Flipped Icons +// ------------------------- + +.@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } +.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } +.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } + +.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } +.@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } +.@{fa-css-prefix}-flip-horizontal.@{fa-css-prefix}-flip-vertical { .fa-icon-flip(-1, -1, 2); } + +// Hook for IE8-9 +// ------------------------- + +:root { + .@{fa-css-prefix}-rotate-90, + .@{fa-css-prefix}-rotate-180, + .@{fa-css-prefix}-rotate-270, + .@{fa-css-prefix}-flip-horizontal, + .@{fa-css-prefix}-flip-vertical { + filter: none; + } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_screen-reader.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_screen-reader.less new file mode 100644 index 0000000000..11c188196d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_screen-reader.less @@ -0,0 +1,5 @@ +// Screen Readers +// ------------------------- + +.sr-only { .sr-only(); } +.sr-only-focusable { .sr-only-focusable(); } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_shims.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_shims.less new file mode 100644 index 0000000000..248f52f347 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_shims.less @@ -0,0 +1,2066 @@ +.@{fa-css-prefix}.@{fa-css-prefix}-glass:before { content: @fa-var-glass-martini; } + +.@{fa-css-prefix}.@{fa-css-prefix}-meetup { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-star-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-star-o:before { content: @fa-var-star; } + +.@{fa-css-prefix}.@{fa-css-prefix}-remove:before { content: @fa-var-times; } + +.@{fa-css-prefix}.@{fa-css-prefix}-close:before { content: @fa-var-times; } + +.@{fa-css-prefix}.@{fa-css-prefix}-gear:before { content: @fa-var-cog; } + +.@{fa-css-prefix}.@{fa-css-prefix}-trash-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-trash-o:before { content: @fa-var-trash-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-o:before { content: @fa-var-file; } + +.@{fa-css-prefix}.@{fa-css-prefix}-clock-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-clock-o:before { content: @fa-var-clock; } + +.@{fa-css-prefix}.@{fa-css-prefix}-arrow-circle-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-arrow-circle-o-down:before { content: @fa-var-arrow-alt-circle-down; } + +.@{fa-css-prefix}.@{fa-css-prefix}-arrow-circle-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-arrow-circle-o-up:before { content: @fa-var-arrow-alt-circle-up; } + +.@{fa-css-prefix}.@{fa-css-prefix}-play-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-play-circle-o:before { content: @fa-var-play-circle; } + +.@{fa-css-prefix}.@{fa-css-prefix}-repeat:before { content: @fa-var-redo; } + +.@{fa-css-prefix}.@{fa-css-prefix}-rotate-right:before { content: @fa-var-redo; } + +.@{fa-css-prefix}.@{fa-css-prefix}-refresh:before { content: @fa-var-sync; } + +.@{fa-css-prefix}.@{fa-css-prefix}-list-alt { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-dedent:before { content: @fa-var-outdent; } + +.@{fa-css-prefix}.@{fa-css-prefix}-video-camera:before { content: @fa-var-video; } + +.@{fa-css-prefix}.@{fa-css-prefix}-picture-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-picture-o:before { content: @fa-var-image; } + +.@{fa-css-prefix}.@{fa-css-prefix}-photo { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-photo:before { content: @fa-var-image; } + +.@{fa-css-prefix}.@{fa-css-prefix}-image { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-image:before { content: @fa-var-image; } + +.@{fa-css-prefix}.@{fa-css-prefix}-pencil:before { content: @fa-var-pencil-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-pencil-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-pencil-square-o:before { content: @fa-var-edit; } + +.@{fa-css-prefix}.@{fa-css-prefix}-share-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-share-square-o:before { content: @fa-var-share-square; } + +.@{fa-css-prefix}.@{fa-css-prefix}-check-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-check-square-o:before { content: @fa-var-check-square; } + +.@{fa-css-prefix}.@{fa-css-prefix}-arrows:before { content: @fa-var-arrows-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-times-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-times-circle-o:before { content: @fa-var-times-circle; } + +.@{fa-css-prefix}.@{fa-css-prefix}-check-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-check-circle-o:before { content: @fa-var-check-circle; } + +.@{fa-css-prefix}.@{fa-css-prefix}-mail-forward:before { content: @fa-var-share; } + +.@{fa-css-prefix}.@{fa-css-prefix}-eye { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-eye-slash { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-warning:before { content: @fa-var-exclamation-triangle; } + +.@{fa-css-prefix}.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-arrows-v:before { content: @fa-var-arrows-alt-v; } + +.@{fa-css-prefix}.@{fa-css-prefix}-arrows-h:before { content: @fa-var-arrows-alt-h; } + +.@{fa-css-prefix}.@{fa-css-prefix}-bar-chart { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-bar-chart:before { content: @fa-var-chart-bar; } + +.@{fa-css-prefix}.@{fa-css-prefix}-bar-chart-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-bar-chart-o:before { content: @fa-var-chart-bar; } + +.@{fa-css-prefix}.@{fa-css-prefix}-twitter-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-facebook-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-gears:before { content: @fa-var-cogs; } + +.@{fa-css-prefix}.@{fa-css-prefix}-thumbs-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-thumbs-o-up:before { content: @fa-var-thumbs-up; } + +.@{fa-css-prefix}.@{fa-css-prefix}-thumbs-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-thumbs-o-down:before { content: @fa-var-thumbs-down; } + +.@{fa-css-prefix}.@{fa-css-prefix}-heart-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-heart-o:before { content: @fa-var-heart; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sign-out:before { content: @fa-var-sign-out-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-linkedin-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-linkedin-square:before { content: @fa-var-linkedin; } + +.@{fa-css-prefix}.@{fa-css-prefix}-thumb-tack:before { content: @fa-var-thumbtack; } + +.@{fa-css-prefix}.@{fa-css-prefix}-external-link:before { content: @fa-var-external-link-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sign-in:before { content: @fa-var-sign-in-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-github-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-lemon-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-lemon-o:before { content: @fa-var-lemon; } + +.@{fa-css-prefix}.@{fa-css-prefix}-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-square-o:before { content: @fa-var-square; } + +.@{fa-css-prefix}.@{fa-css-prefix}-bookmark-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-bookmark-o:before { content: @fa-var-bookmark; } + +.@{fa-css-prefix}.@{fa-css-prefix}-twitter { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-facebook { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook-f; } + +.@{fa-css-prefix}.@{fa-css-prefix}-facebook-f { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-facebook-f:before { content: @fa-var-facebook-f; } + +.@{fa-css-prefix}.@{fa-css-prefix}-github { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-credit-card { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-feed:before { content: @fa-var-rss; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hdd-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hdd-o:before { content: @fa-var-hdd; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-o-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-o-right:before { content: @fa-var-hand-point-right; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-o-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-o-left:before { content: @fa-var-hand-point-left; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-o-up:before { content: @fa-var-hand-point-up; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-o-down:before { content: @fa-var-hand-point-down; } + +.@{fa-css-prefix}.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-expand-arrows-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-group:before { content: @fa-var-users; } + +.@{fa-css-prefix}.@{fa-css-prefix}-chain:before { content: @fa-var-link; } + +.@{fa-css-prefix}.@{fa-css-prefix}-scissors:before { content: @fa-var-cut; } + +.@{fa-css-prefix}.@{fa-css-prefix}-files-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-files-o:before { content: @fa-var-copy; } + +.@{fa-css-prefix}.@{fa-css-prefix}-floppy-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-floppy-o:before { content: @fa-var-save; } + +.@{fa-css-prefix}.@{fa-css-prefix}-navicon:before { content: @fa-var-bars; } + +.@{fa-css-prefix}.@{fa-css-prefix}-reorder:before { content: @fa-var-bars; } + +.@{fa-css-prefix}.@{fa-css-prefix}-pinterest { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-pinterest-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-google-plus-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-google-plus { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus-g; } + +.@{fa-css-prefix}.@{fa-css-prefix}-money { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-money:before { content: @fa-var-money-bill-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-unsorted:before { content: @fa-var-sort; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sort-desc:before { content: @fa-var-sort-down; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sort-asc:before { content: @fa-var-sort-up; } + +.@{fa-css-prefix}.@{fa-css-prefix}-linkedin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin-in; } + +.@{fa-css-prefix}.@{fa-css-prefix}-rotate-left:before { content: @fa-var-undo; } + +.@{fa-css-prefix}.@{fa-css-prefix}-legal:before { content: @fa-var-gavel; } + +.@{fa-css-prefix}.@{fa-css-prefix}-tachometer:before { content: @fa-var-tachometer-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-dashboard:before { content: @fa-var-tachometer-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-comment-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-comment-o:before { content: @fa-var-comment; } + +.@{fa-css-prefix}.@{fa-css-prefix}-comments-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-comments-o:before { content: @fa-var-comments; } + +.@{fa-css-prefix}.@{fa-css-prefix}-flash:before { content: @fa-var-bolt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-clipboard { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-paste { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-paste:before { content: @fa-var-clipboard; } + +.@{fa-css-prefix}.@{fa-css-prefix}-lightbulb-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-lightbulb-o:before { content: @fa-var-lightbulb; } + +.@{fa-css-prefix}.@{fa-css-prefix}-exchange:before { content: @fa-var-exchange-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-cloud-download:before { content: @fa-var-cloud-download-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-cloud-upload:before { content: @fa-var-cloud-upload-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-bell-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-bell-o:before { content: @fa-var-bell; } + +.@{fa-css-prefix}.@{fa-css-prefix}-cutlery:before { content: @fa-var-utensils; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-text-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-text-o:before { content: @fa-var-file-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-building-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-building-o:before { content: @fa-var-building; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hospital-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hospital-o:before { content: @fa-var-hospital; } + +.@{fa-css-prefix}.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-mobile-phone:before { content: @fa-var-mobile-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-circle-o:before { content: @fa-var-circle; } + +.@{fa-css-prefix}.@{fa-css-prefix}-mail-reply:before { content: @fa-var-reply; } + +.@{fa-css-prefix}.@{fa-css-prefix}-github-alt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-folder-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-folder-o:before { content: @fa-var-folder; } + +.@{fa-css-prefix}.@{fa-css-prefix}-folder-open-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-folder-open-o:before { content: @fa-var-folder-open; } + +.@{fa-css-prefix}.@{fa-css-prefix}-smile-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-smile-o:before { content: @fa-var-smile; } + +.@{fa-css-prefix}.@{fa-css-prefix}-frown-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-frown-o:before { content: @fa-var-frown; } + +.@{fa-css-prefix}.@{fa-css-prefix}-meh-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-meh-o:before { content: @fa-var-meh; } + +.@{fa-css-prefix}.@{fa-css-prefix}-keyboard-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-keyboard-o:before { content: @fa-var-keyboard; } + +.@{fa-css-prefix}.@{fa-css-prefix}-flag-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-flag-o:before { content: @fa-var-flag; } + +.@{fa-css-prefix}.@{fa-css-prefix}-mail-reply-all:before { content: @fa-var-reply-all; } + +.@{fa-css-prefix}.@{fa-css-prefix}-star-half-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-star-half-o:before { content: @fa-var-star-half; } + +.@{fa-css-prefix}.@{fa-css-prefix}-star-half-empty { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-star-half-empty:before { content: @fa-var-star-half; } + +.@{fa-css-prefix}.@{fa-css-prefix}-star-half-full { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-star-half-full:before { content: @fa-var-star-half; } + +.@{fa-css-prefix}.@{fa-css-prefix}-code-fork:before { content: @fa-var-code-branch; } + +.@{fa-css-prefix}.@{fa-css-prefix}-chain-broken:before { content: @fa-var-unlink; } + +.@{fa-css-prefix}.@{fa-css-prefix}-shield:before { content: @fa-var-shield-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-calendar-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-calendar-o:before { content: @fa-var-calendar; } + +.@{fa-css-prefix}.@{fa-css-prefix}-maxcdn { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-html5 { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-css3 { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-ticket:before { content: @fa-var-ticket-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-minus-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-minus-square-o:before { content: @fa-var-minus-square; } + +.@{fa-css-prefix}.@{fa-css-prefix}-level-up:before { content: @fa-var-level-up-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-level-down:before { content: @fa-var-level-down-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-pencil-square:before { content: @fa-var-pen-square; } + +.@{fa-css-prefix}.@{fa-css-prefix}-external-link-square:before { content: @fa-var-external-link-square-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-compass { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-caret-square-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-caret-square-o-down:before { content: @fa-var-caret-square-down; } + +.@{fa-css-prefix}.@{fa-css-prefix}-toggle-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-toggle-down:before { content: @fa-var-caret-square-down; } + +.@{fa-css-prefix}.@{fa-css-prefix}-caret-square-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-caret-square-o-up:before { content: @fa-var-caret-square-up; } + +.@{fa-css-prefix}.@{fa-css-prefix}-toggle-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-toggle-up:before { content: @fa-var-caret-square-up; } + +.@{fa-css-prefix}.@{fa-css-prefix}-caret-square-o-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-caret-square-o-right:before { content: @fa-var-caret-square-right; } + +.@{fa-css-prefix}.@{fa-css-prefix}-toggle-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-toggle-right:before { content: @fa-var-caret-square-right; } + +.@{fa-css-prefix}.@{fa-css-prefix}-eur:before { content: @fa-var-euro-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-euro:before { content: @fa-var-euro-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-gbp:before { content: @fa-var-pound-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-usd:before { content: @fa-var-dollar-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-dollar:before { content: @fa-var-dollar-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-inr:before { content: @fa-var-rupee-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-rupee:before { content: @fa-var-rupee-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-jpy:before { content: @fa-var-yen-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-cny:before { content: @fa-var-yen-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-rmb:before { content: @fa-var-yen-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-yen:before { content: @fa-var-yen-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-rub:before { content: @fa-var-ruble-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-ruble:before { content: @fa-var-ruble-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-rouble:before { content: @fa-var-ruble-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-krw:before { content: @fa-var-won-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-won:before { content: @fa-var-won-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-btc { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-bitcoin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-bitcoin:before { content: @fa-var-btc; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-text:before { content: @fa-var-file-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sort-alpha-asc:before { content: @fa-var-sort-alpha-down; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sort-alpha-desc:before { content: @fa-var-sort-alpha-up; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sort-amount-asc:before { content: @fa-var-sort-amount-down; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sort-amount-desc:before { content: @fa-var-sort-amount-up; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sort-numeric-asc:before { content: @fa-var-sort-numeric-down; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sort-numeric-desc:before { content: @fa-var-sort-numeric-up; } + +.@{fa-css-prefix}.@{fa-css-prefix}-youtube-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-youtube { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-xing { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-xing-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-youtube-play { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-youtube-play:before { content: @fa-var-youtube; } + +.@{fa-css-prefix}.@{fa-css-prefix}-dropbox { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-stack-overflow { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-instagram { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-flickr { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-adn { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-bitbucket { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-bitbucket-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-bitbucket-square:before { content: @fa-var-bitbucket; } + +.@{fa-css-prefix}.@{fa-css-prefix}-tumblr { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-tumblr-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-long-arrow-down:before { content: @fa-var-long-arrow-alt-down; } + +.@{fa-css-prefix}.@{fa-css-prefix}-long-arrow-up:before { content: @fa-var-long-arrow-alt-up; } + +.@{fa-css-prefix}.@{fa-css-prefix}-long-arrow-left:before { content: @fa-var-long-arrow-alt-left; } + +.@{fa-css-prefix}.@{fa-css-prefix}-long-arrow-right:before { content: @fa-var-long-arrow-alt-right; } + +.@{fa-css-prefix}.@{fa-css-prefix}-apple { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-windows { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-android { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-linux { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-dribbble { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-skype { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-foursquare { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-trello { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-gratipay { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-gittip { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-gittip:before { content: @fa-var-gratipay; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sun-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-sun-o:before { content: @fa-var-sun; } + +.@{fa-css-prefix}.@{fa-css-prefix}-moon-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-moon-o:before { content: @fa-var-moon; } + +.@{fa-css-prefix}.@{fa-css-prefix}-vk { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-weibo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-renren { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-pagelines { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-stack-exchange { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-arrow-circle-o-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-arrow-circle-o-right:before { content: @fa-var-arrow-alt-circle-right; } + +.@{fa-css-prefix}.@{fa-css-prefix}-arrow-circle-o-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-arrow-circle-o-left:before { content: @fa-var-arrow-alt-circle-left; } + +.@{fa-css-prefix}.@{fa-css-prefix}-caret-square-o-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-caret-square-o-left:before { content: @fa-var-caret-square-left; } + +.@{fa-css-prefix}.@{fa-css-prefix}-toggle-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-toggle-left:before { content: @fa-var-caret-square-left; } + +.@{fa-css-prefix}.@{fa-css-prefix}-dot-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-dot-circle-o:before { content: @fa-var-dot-circle; } + +.@{fa-css-prefix}.@{fa-css-prefix}-vimeo-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-try:before { content: @fa-var-lira-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-turkish-lira:before { content: @fa-var-lira-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-plus-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-plus-square-o:before { content: @fa-var-plus-square; } + +.@{fa-css-prefix}.@{fa-css-prefix}-slack { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-wordpress { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-openid { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-institution:before { content: @fa-var-university; } + +.@{fa-css-prefix}.@{fa-css-prefix}-bank:before { content: @fa-var-university; } + +.@{fa-css-prefix}.@{fa-css-prefix}-mortar-board:before { content: @fa-var-graduation-cap; } + +.@{fa-css-prefix}.@{fa-css-prefix}-yahoo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-google { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-reddit { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-reddit-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-stumbleupon-circle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-stumbleupon { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-delicious { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-digg { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-pied-piper-pp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-pied-piper-alt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-drupal { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-joomla { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-spoon:before { content: @fa-var-utensil-spoon; } + +.@{fa-css-prefix}.@{fa-css-prefix}-behance { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-behance-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-steam { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-steam-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-automobile:before { content: @fa-var-car; } + +.@{fa-css-prefix}.@{fa-css-prefix}-cab:before { content: @fa-var-taxi; } + +.@{fa-css-prefix}.@{fa-css-prefix}-envelope-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-envelope-o:before { content: @fa-var-envelope; } + +.@{fa-css-prefix}.@{fa-css-prefix}-deviantart { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-soundcloud { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-file-pdf-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-pdf-o:before { content: @fa-var-file-pdf; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-word-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-word-o:before { content: @fa-var-file-word; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-excel-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-excel-o:before { content: @fa-var-file-excel; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-powerpoint-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-powerpoint-o:before { content: @fa-var-file-powerpoint; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-image-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-image-o:before { content: @fa-var-file-image; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-photo-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-photo-o:before { content: @fa-var-file-image; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-picture-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-picture-o:before { content: @fa-var-file-image; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-archive-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-archive-o:before { content: @fa-var-file-archive; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-zip-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-zip-o:before { content: @fa-var-file-archive; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-audio-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-audio-o:before { content: @fa-var-file-audio; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-sound-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-sound-o:before { content: @fa-var-file-audio; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-video-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-video-o:before { content: @fa-var-file-video; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-movie-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-movie-o:before { content: @fa-var-file-video; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-code-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-code-o:before { content: @fa-var-file-code; } + +.@{fa-css-prefix}.@{fa-css-prefix}-vine { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-codepen { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-jsfiddle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-life-ring { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-life-bouy { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-life-bouy:before { content: @fa-var-life-ring; } + +.@{fa-css-prefix}.@{fa-css-prefix}-life-buoy { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-life-buoy:before { content: @fa-var-life-ring; } + +.@{fa-css-prefix}.@{fa-css-prefix}-life-saver { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-life-saver:before { content: @fa-var-life-ring; } + +.@{fa-css-prefix}.@{fa-css-prefix}-support { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-support:before { content: @fa-var-life-ring; } + +.@{fa-css-prefix}.@{fa-css-prefix}-circle-o-notch:before { content: @fa-var-circle-notch; } + +.@{fa-css-prefix}.@{fa-css-prefix}-rebel { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-ra { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-ra:before { content: @fa-var-rebel; } + +.@{fa-css-prefix}.@{fa-css-prefix}-resistance { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-resistance:before { content: @fa-var-rebel; } + +.@{fa-css-prefix}.@{fa-css-prefix}-empire { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-ge { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-ge:before { content: @fa-var-empire; } + +.@{fa-css-prefix}.@{fa-css-prefix}-git-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-git { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-hacker-news { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-y-combinator-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-y-combinator-square:before { content: @fa-var-hacker-news; } + +.@{fa-css-prefix}.@{fa-css-prefix}-yc-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-yc-square:before { content: @fa-var-hacker-news; } + +.@{fa-css-prefix}.@{fa-css-prefix}-tencent-weibo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-qq { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-weixin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-wechat { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-wechat:before { content: @fa-var-weixin; } + +.@{fa-css-prefix}.@{fa-css-prefix}-send:before { content: @fa-var-paper-plane; } + +.@{fa-css-prefix}.@{fa-css-prefix}-paper-plane-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-paper-plane-o:before { content: @fa-var-paper-plane; } + +.@{fa-css-prefix}.@{fa-css-prefix}-send-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-send-o:before { content: @fa-var-paper-plane; } + +.@{fa-css-prefix}.@{fa-css-prefix}-circle-thin { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-circle-thin:before { content: @fa-var-circle; } + +.@{fa-css-prefix}.@{fa-css-prefix}-header:before { content: @fa-var-heading; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sliders:before { content: @fa-var-sliders-h; } + +.@{fa-css-prefix}.@{fa-css-prefix}-futbol-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-futbol-o:before { content: @fa-var-futbol; } + +.@{fa-css-prefix}.@{fa-css-prefix}-soccer-ball-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-soccer-ball-o:before { content: @fa-var-futbol; } + +.@{fa-css-prefix}.@{fa-css-prefix}-slideshare { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-twitch { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-yelp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-newspaper-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-newspaper-o:before { content: @fa-var-newspaper; } + +.@{fa-css-prefix}.@{fa-css-prefix}-paypal { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-google-wallet { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-cc-visa { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-cc-mastercard { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-cc-discover { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-cc-amex { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-cc-paypal { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-cc-stripe { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-bell-slash-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-bell-slash-o:before { content: @fa-var-bell-slash; } + +.@{fa-css-prefix}.@{fa-css-prefix}-trash:before { content: @fa-var-trash-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-copyright { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-eyedropper:before { content: @fa-var-eye-dropper; } + +.@{fa-css-prefix}.@{fa-css-prefix}-area-chart:before { content: @fa-var-chart-area; } + +.@{fa-css-prefix}.@{fa-css-prefix}-pie-chart:before { content: @fa-var-chart-pie; } + +.@{fa-css-prefix}.@{fa-css-prefix}-line-chart:before { content: @fa-var-chart-line; } + +.@{fa-css-prefix}.@{fa-css-prefix}-lastfm { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-lastfm-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-ioxhost { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-angellist { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-cc { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-cc:before { content: @fa-var-closed-captioning; } + +.@{fa-css-prefix}.@{fa-css-prefix}-ils:before { content: @fa-var-shekel-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-shekel:before { content: @fa-var-shekel-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sheqel:before { content: @fa-var-shekel-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-meanpath { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-meanpath:before { content: @fa-var-font-awesome; } + +.@{fa-css-prefix}.@{fa-css-prefix}-buysellads { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-connectdevelop { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-dashcube { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-forumbee { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-leanpub { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-sellsy { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-shirtsinbulk { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-simplybuilt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-skyatlas { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-diamond { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-diamond:before { content: @fa-var-gem; } + +.@{fa-css-prefix}.@{fa-css-prefix}-intersex:before { content: @fa-var-transgender; } + +.@{fa-css-prefix}.@{fa-css-prefix}-facebook-official { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-facebook-official:before { content: @fa-var-facebook; } + +.@{fa-css-prefix}.@{fa-css-prefix}-pinterest-p { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-whatsapp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-hotel:before { content: @fa-var-bed; } + +.@{fa-css-prefix}.@{fa-css-prefix}-viacoin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-medium { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-y-combinator { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-yc { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-yc:before { content: @fa-var-y-combinator; } + +.@{fa-css-prefix}.@{fa-css-prefix}-optin-monster { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-opencart { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-expeditedssl { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-battery-4:before { content: @fa-var-battery-full; } + +.@{fa-css-prefix}.@{fa-css-prefix}-battery:before { content: @fa-var-battery-full; } + +.@{fa-css-prefix}.@{fa-css-prefix}-battery-3:before { content: @fa-var-battery-three-quarters; } + +.@{fa-css-prefix}.@{fa-css-prefix}-battery-2:before { content: @fa-var-battery-half; } + +.@{fa-css-prefix}.@{fa-css-prefix}-battery-1:before { content: @fa-var-battery-quarter; } + +.@{fa-css-prefix}.@{fa-css-prefix}-battery-0:before { content: @fa-var-battery-empty; } + +.@{fa-css-prefix}.@{fa-css-prefix}-object-group { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-object-ungroup { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-sticky-note-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-sticky-note-o:before { content: @fa-var-sticky-note; } + +.@{fa-css-prefix}.@{fa-css-prefix}-cc-jcb { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-cc-diners-club { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-clone { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-hourglass-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hourglass-o:before { content: @fa-var-hourglass; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hourglass-1:before { content: @fa-var-hourglass-start; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hourglass-2:before { content: @fa-var-hourglass-half; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hourglass-3:before { content: @fa-var-hourglass-end; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-rock-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-rock-o:before { content: @fa-var-hand-rock; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-grab-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-grab-o:before { content: @fa-var-hand-rock; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-paper-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-paper-o:before { content: @fa-var-hand-paper; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-stop-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-stop-o:before { content: @fa-var-hand-paper; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-scissors-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-scissors-o:before { content: @fa-var-hand-scissors; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-lizard-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-lizard-o:before { content: @fa-var-hand-lizard; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-spock-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-spock-o:before { content: @fa-var-hand-spock; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-pointer-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-pointer-o:before { content: @fa-var-hand-pointer; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-peace-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-peace-o:before { content: @fa-var-hand-peace; } + +.@{fa-css-prefix}.@{fa-css-prefix}-registered { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-creative-commons { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-gg { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-gg-circle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-tripadvisor { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-odnoklassniki { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-odnoklassniki-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-get-pocket { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-wikipedia-w { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-safari { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-chrome { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-firefox { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-opera { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-internet-explorer { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-television:before { content: @fa-var-tv; } + +.@{fa-css-prefix}.@{fa-css-prefix}-contao { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-500px { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-amazon { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-calendar-plus-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-calendar-plus-o:before { content: @fa-var-calendar-plus; } + +.@{fa-css-prefix}.@{fa-css-prefix}-calendar-minus-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-calendar-minus-o:before { content: @fa-var-calendar-minus; } + +.@{fa-css-prefix}.@{fa-css-prefix}-calendar-times-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-calendar-times-o:before { content: @fa-var-calendar-times; } + +.@{fa-css-prefix}.@{fa-css-prefix}-calendar-check-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-calendar-check-o:before { content: @fa-var-calendar-check; } + +.@{fa-css-prefix}.@{fa-css-prefix}-map-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-map-o:before { content: @fa-var-map; } + +.@{fa-css-prefix}.@{fa-css-prefix}-commenting { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-commenting:before { content: @fa-var-comment-dots; } + +.@{fa-css-prefix}.@{fa-css-prefix}-commenting-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-commenting-o:before { content: @fa-var-comment-dots; } + +.@{fa-css-prefix}.@{fa-css-prefix}-houzz { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-vimeo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-vimeo:before { content: @fa-var-vimeo-v; } + +.@{fa-css-prefix}.@{fa-css-prefix}-black-tie { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-fonticons { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-reddit-alien { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-edge { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-credit-card-alt:before { content: @fa-var-credit-card; } + +.@{fa-css-prefix}.@{fa-css-prefix}-codiepie { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-modx { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-fort-awesome { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-usb { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-product-hunt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-mixcloud { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-scribd { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-pause-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-pause-circle-o:before { content: @fa-var-pause-circle; } + +.@{fa-css-prefix}.@{fa-css-prefix}-stop-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-stop-circle-o:before { content: @fa-var-stop-circle; } + +.@{fa-css-prefix}.@{fa-css-prefix}-bluetooth { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-bluetooth-b { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-gitlab { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-wpbeginner { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-wpforms { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-envira { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-wheelchair-alt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-wheelchair-alt:before { content: @fa-var-accessible-icon; } + +.@{fa-css-prefix}.@{fa-css-prefix}-question-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-question-circle-o:before { content: @fa-var-question-circle; } + +.@{fa-css-prefix}.@{fa-css-prefix}-volume-control-phone:before { content: @fa-var-phone-volume; } + +.@{fa-css-prefix}.@{fa-css-prefix}-asl-interpreting:before { content: @fa-var-american-sign-language-interpreting; } + +.@{fa-css-prefix}.@{fa-css-prefix}-deafness:before { content: @fa-var-deaf; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hard-of-hearing:before { content: @fa-var-deaf; } + +.@{fa-css-prefix}.@{fa-css-prefix}-glide { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-glide-g { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-signing:before { content: @fa-var-sign-language; } + +.@{fa-css-prefix}.@{fa-css-prefix}-viadeo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-viadeo-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-snapchat { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-snapchat-ghost { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-snapchat-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-pied-piper { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-first-order { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-yoast { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-themeisle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-google-plus-official { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-google-plus-official:before { content: @fa-var-google-plus; } + +.@{fa-css-prefix}.@{fa-css-prefix}-google-plus-circle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-google-plus-circle:before { content: @fa-var-google-plus; } + +.@{fa-css-prefix}.@{fa-css-prefix}-font-awesome { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-fa { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-fa:before { content: @fa-var-font-awesome; } + +.@{fa-css-prefix}.@{fa-css-prefix}-handshake-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-handshake-o:before { content: @fa-var-handshake; } + +.@{fa-css-prefix}.@{fa-css-prefix}-envelope-open-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-envelope-open-o:before { content: @fa-var-envelope-open; } + +.@{fa-css-prefix}.@{fa-css-prefix}-linode { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-address-book-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-address-book-o:before { content: @fa-var-address-book; } + +.@{fa-css-prefix}.@{fa-css-prefix}-vcard:before { content: @fa-var-address-card; } + +.@{fa-css-prefix}.@{fa-css-prefix}-address-card-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-address-card-o:before { content: @fa-var-address-card; } + +.@{fa-css-prefix}.@{fa-css-prefix}-vcard-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-vcard-o:before { content: @fa-var-address-card; } + +.@{fa-css-prefix}.@{fa-css-prefix}-user-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-user-circle-o:before { content: @fa-var-user-circle; } + +.@{fa-css-prefix}.@{fa-css-prefix}-user-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-user-o:before { content: @fa-var-user; } + +.@{fa-css-prefix}.@{fa-css-prefix}-id-badge { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-drivers-license:before { content: @fa-var-id-card; } + +.@{fa-css-prefix}.@{fa-css-prefix}-id-card-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-id-card-o:before { content: @fa-var-id-card; } + +.@{fa-css-prefix}.@{fa-css-prefix}-drivers-license-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-drivers-license-o:before { content: @fa-var-id-card; } + +.@{fa-css-prefix}.@{fa-css-prefix}-quora { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-free-code-camp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-telegram { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-thermometer-4:before { content: @fa-var-thermometer-full; } + +.@{fa-css-prefix}.@{fa-css-prefix}-thermometer:before { content: @fa-var-thermometer-full; } + +.@{fa-css-prefix}.@{fa-css-prefix}-thermometer-3:before { content: @fa-var-thermometer-three-quarters; } + +.@{fa-css-prefix}.@{fa-css-prefix}-thermometer-2:before { content: @fa-var-thermometer-half; } + +.@{fa-css-prefix}.@{fa-css-prefix}-thermometer-1:before { content: @fa-var-thermometer-quarter; } + +.@{fa-css-prefix}.@{fa-css-prefix}-thermometer-0:before { content: @fa-var-thermometer-empty; } + +.@{fa-css-prefix}.@{fa-css-prefix}-bathtub:before { content: @fa-var-bath; } + +.@{fa-css-prefix}.@{fa-css-prefix}-s15:before { content: @fa-var-bath; } + +.@{fa-css-prefix}.@{fa-css-prefix}-window-maximize { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-window-restore { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-times-rectangle:before { content: @fa-var-window-close; } + +.@{fa-css-prefix}.@{fa-css-prefix}-window-close-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-window-close-o:before { content: @fa-var-window-close; } + +.@{fa-css-prefix}.@{fa-css-prefix}-times-rectangle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-times-rectangle-o:before { content: @fa-var-window-close; } + +.@{fa-css-prefix}.@{fa-css-prefix}-bandcamp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-grav { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-etsy { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-imdb { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-ravelry { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-eercast { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-eercast:before { content: @fa-var-sellcast; } + +.@{fa-css-prefix}.@{fa-css-prefix}-snowflake-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-snowflake-o:before { content: @fa-var-snowflake; } + +.@{fa-css-prefix}.@{fa-css-prefix}-superpowers { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-wpexplorer { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-spotify { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_stacked.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_stacked.less new file mode 100644 index 0000000000..263b5c44fc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_stacked.less @@ -0,0 +1,22 @@ +// Stacked Icons +// ------------------------- + +.@{fa-css-prefix}-stack { + display: inline-block; + height: 2em; + line-height: 2em; + position: relative; + vertical-align: middle; + width: 2em; +} + +.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { + left: 0; + position: absolute; + text-align: center; + width: 100%; +} + +.@{fa-css-prefix}-stack-1x { line-height: inherit; } +.@{fa-css-prefix}-stack-2x { font-size: 2em; } +.@{fa-css-prefix}-inverse { color: @fa-inverse; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_variables.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_variables.less new file mode 100644 index 0000000000..185fc735cc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/_variables.less @@ -0,0 +1,1124 @@ +// Variables +// -------------------------- + +@fa-font-path: "../webfonts"; +@fa-font-size-base: 16px; +@fa-line-height-base: 1; +@fa-css-prefix: fa; +@fa-version: "5.1.1"; +@fa-border-color: #eee; +@fa-inverse: #fff; +@fa-li-width: 2em; + +@fa-var-500px: "\f26e"; +@fa-var-accessible-icon: "\f368"; +@fa-var-accusoft: "\f369"; +@fa-var-address-book: "\f2b9"; +@fa-var-address-card: "\f2bb"; +@fa-var-adjust: "\f042"; +@fa-var-adn: "\f170"; +@fa-var-adversal: "\f36a"; +@fa-var-affiliatetheme: "\f36b"; +@fa-var-algolia: "\f36c"; +@fa-var-align-center: "\f037"; +@fa-var-align-justify: "\f039"; +@fa-var-align-left: "\f036"; +@fa-var-align-right: "\f038"; +@fa-var-allergies: "\f461"; +@fa-var-amazon: "\f270"; +@fa-var-amazon-pay: "\f42c"; +@fa-var-ambulance: "\f0f9"; +@fa-var-american-sign-language-interpreting: "\f2a3"; +@fa-var-amilia: "\f36d"; +@fa-var-anchor: "\f13d"; +@fa-var-android: "\f17b"; +@fa-var-angellist: "\f209"; +@fa-var-angle-double-down: "\f103"; +@fa-var-angle-double-left: "\f100"; +@fa-var-angle-double-right: "\f101"; +@fa-var-angle-double-up: "\f102"; +@fa-var-angle-down: "\f107"; +@fa-var-angle-left: "\f104"; +@fa-var-angle-right: "\f105"; +@fa-var-angle-up: "\f106"; +@fa-var-angry: "\f556"; +@fa-var-angrycreative: "\f36e"; +@fa-var-angular: "\f420"; +@fa-var-app-store: "\f36f"; +@fa-var-app-store-ios: "\f370"; +@fa-var-apper: "\f371"; +@fa-var-apple: "\f179"; +@fa-var-apple-pay: "\f415"; +@fa-var-archive: "\f187"; +@fa-var-archway: "\f557"; +@fa-var-arrow-alt-circle-down: "\f358"; +@fa-var-arrow-alt-circle-left: "\f359"; +@fa-var-arrow-alt-circle-right: "\f35a"; +@fa-var-arrow-alt-circle-up: "\f35b"; +@fa-var-arrow-circle-down: "\f0ab"; +@fa-var-arrow-circle-left: "\f0a8"; +@fa-var-arrow-circle-right: "\f0a9"; +@fa-var-arrow-circle-up: "\f0aa"; +@fa-var-arrow-down: "\f063"; +@fa-var-arrow-left: "\f060"; +@fa-var-arrow-right: "\f061"; +@fa-var-arrow-up: "\f062"; +@fa-var-arrows-alt: "\f0b2"; +@fa-var-arrows-alt-h: "\f337"; +@fa-var-arrows-alt-v: "\f338"; +@fa-var-assistive-listening-systems: "\f2a2"; +@fa-var-asterisk: "\f069"; +@fa-var-asymmetrik: "\f372"; +@fa-var-at: "\f1fa"; +@fa-var-atlas: "\f558"; +@fa-var-audible: "\f373"; +@fa-var-audio-description: "\f29e"; +@fa-var-autoprefixer: "\f41c"; +@fa-var-avianex: "\f374"; +@fa-var-aviato: "\f421"; +@fa-var-award: "\f559"; +@fa-var-aws: "\f375"; +@fa-var-backspace: "\f55a"; +@fa-var-backward: "\f04a"; +@fa-var-balance-scale: "\f24e"; +@fa-var-ban: "\f05e"; +@fa-var-band-aid: "\f462"; +@fa-var-bandcamp: "\f2d5"; +@fa-var-barcode: "\f02a"; +@fa-var-bars: "\f0c9"; +@fa-var-baseball-ball: "\f433"; +@fa-var-basketball-ball: "\f434"; +@fa-var-bath: "\f2cd"; +@fa-var-battery-empty: "\f244"; +@fa-var-battery-full: "\f240"; +@fa-var-battery-half: "\f242"; +@fa-var-battery-quarter: "\f243"; +@fa-var-battery-three-quarters: "\f241"; +@fa-var-bed: "\f236"; +@fa-var-beer: "\f0fc"; +@fa-var-behance: "\f1b4"; +@fa-var-behance-square: "\f1b5"; +@fa-var-bell: "\f0f3"; +@fa-var-bell-slash: "\f1f6"; +@fa-var-bezier-curve: "\f55b"; +@fa-var-bicycle: "\f206"; +@fa-var-bimobject: "\f378"; +@fa-var-binoculars: "\f1e5"; +@fa-var-birthday-cake: "\f1fd"; +@fa-var-bitbucket: "\f171"; +@fa-var-bitcoin: "\f379"; +@fa-var-bity: "\f37a"; +@fa-var-black-tie: "\f27e"; +@fa-var-blackberry: "\f37b"; +@fa-var-blender: "\f517"; +@fa-var-blind: "\f29d"; +@fa-var-blogger: "\f37c"; +@fa-var-blogger-b: "\f37d"; +@fa-var-bluetooth: "\f293"; +@fa-var-bluetooth-b: "\f294"; +@fa-var-bold: "\f032"; +@fa-var-bolt: "\f0e7"; +@fa-var-bomb: "\f1e2"; +@fa-var-bong: "\f55c"; +@fa-var-book: "\f02d"; +@fa-var-book-open: "\f518"; +@fa-var-bookmark: "\f02e"; +@fa-var-bowling-ball: "\f436"; +@fa-var-box: "\f466"; +@fa-var-box-open: "\f49e"; +@fa-var-boxes: "\f468"; +@fa-var-braille: "\f2a1"; +@fa-var-briefcase: "\f0b1"; +@fa-var-briefcase-medical: "\f469"; +@fa-var-broadcast-tower: "\f519"; +@fa-var-broom: "\f51a"; +@fa-var-brush: "\f55d"; +@fa-var-btc: "\f15a"; +@fa-var-bug: "\f188"; +@fa-var-building: "\f1ad"; +@fa-var-bullhorn: "\f0a1"; +@fa-var-bullseye: "\f140"; +@fa-var-burn: "\f46a"; +@fa-var-buromobelexperte: "\f37f"; +@fa-var-bus: "\f207"; +@fa-var-bus-alt: "\f55e"; +@fa-var-buysellads: "\f20d"; +@fa-var-calculator: "\f1ec"; +@fa-var-calendar: "\f133"; +@fa-var-calendar-alt: "\f073"; +@fa-var-calendar-check: "\f274"; +@fa-var-calendar-minus: "\f272"; +@fa-var-calendar-plus: "\f271"; +@fa-var-calendar-times: "\f273"; +@fa-var-camera: "\f030"; +@fa-var-camera-retro: "\f083"; +@fa-var-cannabis: "\f55f"; +@fa-var-capsules: "\f46b"; +@fa-var-car: "\f1b9"; +@fa-var-caret-down: "\f0d7"; +@fa-var-caret-left: "\f0d9"; +@fa-var-caret-right: "\f0da"; +@fa-var-caret-square-down: "\f150"; +@fa-var-caret-square-left: "\f191"; +@fa-var-caret-square-right: "\f152"; +@fa-var-caret-square-up: "\f151"; +@fa-var-caret-up: "\f0d8"; +@fa-var-cart-arrow-down: "\f218"; +@fa-var-cart-plus: "\f217"; +@fa-var-cc-amazon-pay: "\f42d"; +@fa-var-cc-amex: "\f1f3"; +@fa-var-cc-apple-pay: "\f416"; +@fa-var-cc-diners-club: "\f24c"; +@fa-var-cc-discover: "\f1f2"; +@fa-var-cc-jcb: "\f24b"; +@fa-var-cc-mastercard: "\f1f1"; +@fa-var-cc-paypal: "\f1f4"; +@fa-var-cc-stripe: "\f1f5"; +@fa-var-cc-visa: "\f1f0"; +@fa-var-centercode: "\f380"; +@fa-var-certificate: "\f0a3"; +@fa-var-chalkboard: "\f51b"; +@fa-var-chalkboard-teacher: "\f51c"; +@fa-var-chart-area: "\f1fe"; +@fa-var-chart-bar: "\f080"; +@fa-var-chart-line: "\f201"; +@fa-var-chart-pie: "\f200"; +@fa-var-check: "\f00c"; +@fa-var-check-circle: "\f058"; +@fa-var-check-double: "\f560"; +@fa-var-check-square: "\f14a"; +@fa-var-chess: "\f439"; +@fa-var-chess-bishop: "\f43a"; +@fa-var-chess-board: "\f43c"; +@fa-var-chess-king: "\f43f"; +@fa-var-chess-knight: "\f441"; +@fa-var-chess-pawn: "\f443"; +@fa-var-chess-queen: "\f445"; +@fa-var-chess-rook: "\f447"; +@fa-var-chevron-circle-down: "\f13a"; +@fa-var-chevron-circle-left: "\f137"; +@fa-var-chevron-circle-right: "\f138"; +@fa-var-chevron-circle-up: "\f139"; +@fa-var-chevron-down: "\f078"; +@fa-var-chevron-left: "\f053"; +@fa-var-chevron-right: "\f054"; +@fa-var-chevron-up: "\f077"; +@fa-var-child: "\f1ae"; +@fa-var-chrome: "\f268"; +@fa-var-church: "\f51d"; +@fa-var-circle: "\f111"; +@fa-var-circle-notch: "\f1ce"; +@fa-var-clipboard: "\f328"; +@fa-var-clipboard-check: "\f46c"; +@fa-var-clipboard-list: "\f46d"; +@fa-var-clock: "\f017"; +@fa-var-clone: "\f24d"; +@fa-var-closed-captioning: "\f20a"; +@fa-var-cloud: "\f0c2"; +@fa-var-cloud-download-alt: "\f381"; +@fa-var-cloud-upload-alt: "\f382"; +@fa-var-cloudscale: "\f383"; +@fa-var-cloudsmith: "\f384"; +@fa-var-cloudversify: "\f385"; +@fa-var-cocktail: "\f561"; +@fa-var-code: "\f121"; +@fa-var-code-branch: "\f126"; +@fa-var-codepen: "\f1cb"; +@fa-var-codiepie: "\f284"; +@fa-var-coffee: "\f0f4"; +@fa-var-cog: "\f013"; +@fa-var-cogs: "\f085"; +@fa-var-coins: "\f51e"; +@fa-var-columns: "\f0db"; +@fa-var-comment: "\f075"; +@fa-var-comment-alt: "\f27a"; +@fa-var-comment-dots: "\f4ad"; +@fa-var-comment-slash: "\f4b3"; +@fa-var-comments: "\f086"; +@fa-var-compact-disc: "\f51f"; +@fa-var-compass: "\f14e"; +@fa-var-compress: "\f066"; +@fa-var-concierge-bell: "\f562"; +@fa-var-connectdevelop: "\f20e"; +@fa-var-contao: "\f26d"; +@fa-var-cookie: "\f563"; +@fa-var-cookie-bite: "\f564"; +@fa-var-copy: "\f0c5"; +@fa-var-copyright: "\f1f9"; +@fa-var-couch: "\f4b8"; +@fa-var-cpanel: "\f388"; +@fa-var-creative-commons: "\f25e"; +@fa-var-creative-commons-by: "\f4e7"; +@fa-var-creative-commons-nc: "\f4e8"; +@fa-var-creative-commons-nc-eu: "\f4e9"; +@fa-var-creative-commons-nc-jp: "\f4ea"; +@fa-var-creative-commons-nd: "\f4eb"; +@fa-var-creative-commons-pd: "\f4ec"; +@fa-var-creative-commons-pd-alt: "\f4ed"; +@fa-var-creative-commons-remix: "\f4ee"; +@fa-var-creative-commons-sa: "\f4ef"; +@fa-var-creative-commons-sampling: "\f4f0"; +@fa-var-creative-commons-sampling-plus: "\f4f1"; +@fa-var-creative-commons-share: "\f4f2"; +@fa-var-credit-card: "\f09d"; +@fa-var-crop: "\f125"; +@fa-var-crop-alt: "\f565"; +@fa-var-crosshairs: "\f05b"; +@fa-var-crow: "\f520"; +@fa-var-crown: "\f521"; +@fa-var-css3: "\f13c"; +@fa-var-css3-alt: "\f38b"; +@fa-var-cube: "\f1b2"; +@fa-var-cubes: "\f1b3"; +@fa-var-cut: "\f0c4"; +@fa-var-cuttlefish: "\f38c"; +@fa-var-d-and-d: "\f38d"; +@fa-var-dashcube: "\f210"; +@fa-var-database: "\f1c0"; +@fa-var-deaf: "\f2a4"; +@fa-var-delicious: "\f1a5"; +@fa-var-deploydog: "\f38e"; +@fa-var-deskpro: "\f38f"; +@fa-var-desktop: "\f108"; +@fa-var-deviantart: "\f1bd"; +@fa-var-diagnoses: "\f470"; +@fa-var-dice: "\f522"; +@fa-var-dice-five: "\f523"; +@fa-var-dice-four: "\f524"; +@fa-var-dice-one: "\f525"; +@fa-var-dice-six: "\f526"; +@fa-var-dice-three: "\f527"; +@fa-var-dice-two: "\f528"; +@fa-var-digg: "\f1a6"; +@fa-var-digital-ocean: "\f391"; +@fa-var-digital-tachograph: "\f566"; +@fa-var-discord: "\f392"; +@fa-var-discourse: "\f393"; +@fa-var-divide: "\f529"; +@fa-var-dizzy: "\f567"; +@fa-var-dna: "\f471"; +@fa-var-dochub: "\f394"; +@fa-var-docker: "\f395"; +@fa-var-dollar-sign: "\f155"; +@fa-var-dolly: "\f472"; +@fa-var-dolly-flatbed: "\f474"; +@fa-var-donate: "\f4b9"; +@fa-var-door-closed: "\f52a"; +@fa-var-door-open: "\f52b"; +@fa-var-dot-circle: "\f192"; +@fa-var-dove: "\f4ba"; +@fa-var-download: "\f019"; +@fa-var-draft2digital: "\f396"; +@fa-var-drafting-compass: "\f568"; +@fa-var-dribbble: "\f17d"; +@fa-var-dribbble-square: "\f397"; +@fa-var-dropbox: "\f16b"; +@fa-var-drum: "\f569"; +@fa-var-drum-steelpan: "\f56a"; +@fa-var-drupal: "\f1a9"; +@fa-var-dumbbell: "\f44b"; +@fa-var-dyalog: "\f399"; +@fa-var-earlybirds: "\f39a"; +@fa-var-ebay: "\f4f4"; +@fa-var-edge: "\f282"; +@fa-var-edit: "\f044"; +@fa-var-eject: "\f052"; +@fa-var-elementor: "\f430"; +@fa-var-ellipsis-h: "\f141"; +@fa-var-ellipsis-v: "\f142"; +@fa-var-ember: "\f423"; +@fa-var-empire: "\f1d1"; +@fa-var-envelope: "\f0e0"; +@fa-var-envelope-open: "\f2b6"; +@fa-var-envelope-square: "\f199"; +@fa-var-envira: "\f299"; +@fa-var-equals: "\f52c"; +@fa-var-eraser: "\f12d"; +@fa-var-erlang: "\f39d"; +@fa-var-ethereum: "\f42e"; +@fa-var-etsy: "\f2d7"; +@fa-var-euro-sign: "\f153"; +@fa-var-exchange-alt: "\f362"; +@fa-var-exclamation: "\f12a"; +@fa-var-exclamation-circle: "\f06a"; +@fa-var-exclamation-triangle: "\f071"; +@fa-var-expand: "\f065"; +@fa-var-expand-arrows-alt: "\f31e"; +@fa-var-expeditedssl: "\f23e"; +@fa-var-external-link-alt: "\f35d"; +@fa-var-external-link-square-alt: "\f360"; +@fa-var-eye: "\f06e"; +@fa-var-eye-dropper: "\f1fb"; +@fa-var-eye-slash: "\f070"; +@fa-var-facebook: "\f09a"; +@fa-var-facebook-f: "\f39e"; +@fa-var-facebook-messenger: "\f39f"; +@fa-var-facebook-square: "\f082"; +@fa-var-fast-backward: "\f049"; +@fa-var-fast-forward: "\f050"; +@fa-var-fax: "\f1ac"; +@fa-var-feather: "\f52d"; +@fa-var-feather-alt: "\f56b"; +@fa-var-female: "\f182"; +@fa-var-fighter-jet: "\f0fb"; +@fa-var-file: "\f15b"; +@fa-var-file-alt: "\f15c"; +@fa-var-file-archive: "\f1c6"; +@fa-var-file-audio: "\f1c7"; +@fa-var-file-code: "\f1c9"; +@fa-var-file-contract: "\f56c"; +@fa-var-file-download: "\f56d"; +@fa-var-file-excel: "\f1c3"; +@fa-var-file-export: "\f56e"; +@fa-var-file-image: "\f1c5"; +@fa-var-file-import: "\f56f"; +@fa-var-file-invoice: "\f570"; +@fa-var-file-invoice-dollar: "\f571"; +@fa-var-file-medical: "\f477"; +@fa-var-file-medical-alt: "\f478"; +@fa-var-file-pdf: "\f1c1"; +@fa-var-file-powerpoint: "\f1c4"; +@fa-var-file-prescription: "\f572"; +@fa-var-file-signature: "\f573"; +@fa-var-file-upload: "\f574"; +@fa-var-file-video: "\f1c8"; +@fa-var-file-word: "\f1c2"; +@fa-var-fill: "\f575"; +@fa-var-fill-drip: "\f576"; +@fa-var-film: "\f008"; +@fa-var-filter: "\f0b0"; +@fa-var-fingerprint: "\f577"; +@fa-var-fire: "\f06d"; +@fa-var-fire-extinguisher: "\f134"; +@fa-var-firefox: "\f269"; +@fa-var-first-aid: "\f479"; +@fa-var-first-order: "\f2b0"; +@fa-var-first-order-alt: "\f50a"; +@fa-var-firstdraft: "\f3a1"; +@fa-var-fish: "\f578"; +@fa-var-flag: "\f024"; +@fa-var-flag-checkered: "\f11e"; +@fa-var-flask: "\f0c3"; +@fa-var-flickr: "\f16e"; +@fa-var-flipboard: "\f44d"; +@fa-var-flushed: "\f579"; +@fa-var-fly: "\f417"; +@fa-var-folder: "\f07b"; +@fa-var-folder-open: "\f07c"; +@fa-var-font: "\f031"; +@fa-var-font-awesome: "\f2b4"; +@fa-var-font-awesome-alt: "\f35c"; +@fa-var-font-awesome-flag: "\f425"; +@fa-var-font-awesome-logo-full: "\f4e6"; +@fa-var-fonticons: "\f280"; +@fa-var-fonticons-fi: "\f3a2"; +@fa-var-football-ball: "\f44e"; +@fa-var-fort-awesome: "\f286"; +@fa-var-fort-awesome-alt: "\f3a3"; +@fa-var-forumbee: "\f211"; +@fa-var-forward: "\f04e"; +@fa-var-foursquare: "\f180"; +@fa-var-free-code-camp: "\f2c5"; +@fa-var-freebsd: "\f3a4"; +@fa-var-frog: "\f52e"; +@fa-var-frown: "\f119"; +@fa-var-frown-open: "\f57a"; +@fa-var-fulcrum: "\f50b"; +@fa-var-futbol: "\f1e3"; +@fa-var-galactic-republic: "\f50c"; +@fa-var-galactic-senate: "\f50d"; +@fa-var-gamepad: "\f11b"; +@fa-var-gas-pump: "\f52f"; +@fa-var-gavel: "\f0e3"; +@fa-var-gem: "\f3a5"; +@fa-var-genderless: "\f22d"; +@fa-var-get-pocket: "\f265"; +@fa-var-gg: "\f260"; +@fa-var-gg-circle: "\f261"; +@fa-var-gift: "\f06b"; +@fa-var-git: "\f1d3"; +@fa-var-git-square: "\f1d2"; +@fa-var-github: "\f09b"; +@fa-var-github-alt: "\f113"; +@fa-var-github-square: "\f092"; +@fa-var-gitkraken: "\f3a6"; +@fa-var-gitlab: "\f296"; +@fa-var-gitter: "\f426"; +@fa-var-glass-martini: "\f000"; +@fa-var-glass-martini-alt: "\f57b"; +@fa-var-glasses: "\f530"; +@fa-var-glide: "\f2a5"; +@fa-var-glide-g: "\f2a6"; +@fa-var-globe: "\f0ac"; +@fa-var-globe-africa: "\f57c"; +@fa-var-globe-americas: "\f57d"; +@fa-var-globe-asia: "\f57e"; +@fa-var-gofore: "\f3a7"; +@fa-var-golf-ball: "\f450"; +@fa-var-goodreads: "\f3a8"; +@fa-var-goodreads-g: "\f3a9"; +@fa-var-google: "\f1a0"; +@fa-var-google-drive: "\f3aa"; +@fa-var-google-play: "\f3ab"; +@fa-var-google-plus: "\f2b3"; +@fa-var-google-plus-g: "\f0d5"; +@fa-var-google-plus-square: "\f0d4"; +@fa-var-google-wallet: "\f1ee"; +@fa-var-graduation-cap: "\f19d"; +@fa-var-gratipay: "\f184"; +@fa-var-grav: "\f2d6"; +@fa-var-greater-than: "\f531"; +@fa-var-greater-than-equal: "\f532"; +@fa-var-grimace: "\f57f"; +@fa-var-grin: "\f580"; +@fa-var-grin-alt: "\f581"; +@fa-var-grin-beam: "\f582"; +@fa-var-grin-beam-sweat: "\f583"; +@fa-var-grin-hearts: "\f584"; +@fa-var-grin-squint: "\f585"; +@fa-var-grin-squint-tears: "\f586"; +@fa-var-grin-stars: "\f587"; +@fa-var-grin-tears: "\f588"; +@fa-var-grin-tongue: "\f589"; +@fa-var-grin-tongue-squint: "\f58a"; +@fa-var-grin-tongue-wink: "\f58b"; +@fa-var-grin-wink: "\f58c"; +@fa-var-grip-horizontal: "\f58d"; +@fa-var-grip-vertical: "\f58e"; +@fa-var-gripfire: "\f3ac"; +@fa-var-grunt: "\f3ad"; +@fa-var-gulp: "\f3ae"; +@fa-var-h-square: "\f0fd"; +@fa-var-hacker-news: "\f1d4"; +@fa-var-hacker-news-square: "\f3af"; +@fa-var-hand-holding: "\f4bd"; +@fa-var-hand-holding-heart: "\f4be"; +@fa-var-hand-holding-usd: "\f4c0"; +@fa-var-hand-lizard: "\f258"; +@fa-var-hand-paper: "\f256"; +@fa-var-hand-peace: "\f25b"; +@fa-var-hand-point-down: "\f0a7"; +@fa-var-hand-point-left: "\f0a5"; +@fa-var-hand-point-right: "\f0a4"; +@fa-var-hand-point-up: "\f0a6"; +@fa-var-hand-pointer: "\f25a"; +@fa-var-hand-rock: "\f255"; +@fa-var-hand-scissors: "\f257"; +@fa-var-hand-spock: "\f259"; +@fa-var-hands: "\f4c2"; +@fa-var-hands-helping: "\f4c4"; +@fa-var-handshake: "\f2b5"; +@fa-var-hashtag: "\f292"; +@fa-var-hdd: "\f0a0"; +@fa-var-heading: "\f1dc"; +@fa-var-headphones: "\f025"; +@fa-var-headphones-alt: "\f58f"; +@fa-var-headset: "\f590"; +@fa-var-heart: "\f004"; +@fa-var-heartbeat: "\f21e"; +@fa-var-helicopter: "\f533"; +@fa-var-highlighter: "\f591"; +@fa-var-hips: "\f452"; +@fa-var-hire-a-helper: "\f3b0"; +@fa-var-history: "\f1da"; +@fa-var-hockey-puck: "\f453"; +@fa-var-home: "\f015"; +@fa-var-hooli: "\f427"; +@fa-var-hornbill: "\f592"; +@fa-var-hospital: "\f0f8"; +@fa-var-hospital-alt: "\f47d"; +@fa-var-hospital-symbol: "\f47e"; +@fa-var-hot-tub: "\f593"; +@fa-var-hotel: "\f594"; +@fa-var-hotjar: "\f3b1"; +@fa-var-hourglass: "\f254"; +@fa-var-hourglass-end: "\f253"; +@fa-var-hourglass-half: "\f252"; +@fa-var-hourglass-start: "\f251"; +@fa-var-houzz: "\f27c"; +@fa-var-html5: "\f13b"; +@fa-var-hubspot: "\f3b2"; +@fa-var-i-cursor: "\f246"; +@fa-var-id-badge: "\f2c1"; +@fa-var-id-card: "\f2c2"; +@fa-var-id-card-alt: "\f47f"; +@fa-var-image: "\f03e"; +@fa-var-images: "\f302"; +@fa-var-imdb: "\f2d8"; +@fa-var-inbox: "\f01c"; +@fa-var-indent: "\f03c"; +@fa-var-industry: "\f275"; +@fa-var-infinity: "\f534"; +@fa-var-info: "\f129"; +@fa-var-info-circle: "\f05a"; +@fa-var-instagram: "\f16d"; +@fa-var-internet-explorer: "\f26b"; +@fa-var-ioxhost: "\f208"; +@fa-var-italic: "\f033"; +@fa-var-itunes: "\f3b4"; +@fa-var-itunes-note: "\f3b5"; +@fa-var-java: "\f4e4"; +@fa-var-jedi-order: "\f50e"; +@fa-var-jenkins: "\f3b6"; +@fa-var-joget: "\f3b7"; +@fa-var-joint: "\f595"; +@fa-var-joomla: "\f1aa"; +@fa-var-js: "\f3b8"; +@fa-var-js-square: "\f3b9"; +@fa-var-jsfiddle: "\f1cc"; +@fa-var-key: "\f084"; +@fa-var-keybase: "\f4f5"; +@fa-var-keyboard: "\f11c"; +@fa-var-keycdn: "\f3ba"; +@fa-var-kickstarter: "\f3bb"; +@fa-var-kickstarter-k: "\f3bc"; +@fa-var-kiss: "\f596"; +@fa-var-kiss-beam: "\f597"; +@fa-var-kiss-wink-heart: "\f598"; +@fa-var-kiwi-bird: "\f535"; +@fa-var-korvue: "\f42f"; +@fa-var-language: "\f1ab"; +@fa-var-laptop: "\f109"; +@fa-var-laravel: "\f3bd"; +@fa-var-lastfm: "\f202"; +@fa-var-lastfm-square: "\f203"; +@fa-var-laugh: "\f599"; +@fa-var-laugh-beam: "\f59a"; +@fa-var-laugh-squint: "\f59b"; +@fa-var-laugh-wink: "\f59c"; +@fa-var-leaf: "\f06c"; +@fa-var-leanpub: "\f212"; +@fa-var-lemon: "\f094"; +@fa-var-less: "\f41d"; +@fa-var-less-than: "\f536"; +@fa-var-less-than-equal: "\f537"; +@fa-var-level-down-alt: "\f3be"; +@fa-var-level-up-alt: "\f3bf"; +@fa-var-life-ring: "\f1cd"; +@fa-var-lightbulb: "\f0eb"; +@fa-var-line: "\f3c0"; +@fa-var-link: "\f0c1"; +@fa-var-linkedin: "\f08c"; +@fa-var-linkedin-in: "\f0e1"; +@fa-var-linode: "\f2b8"; +@fa-var-linux: "\f17c"; +@fa-var-lira-sign: "\f195"; +@fa-var-list: "\f03a"; +@fa-var-list-alt: "\f022"; +@fa-var-list-ol: "\f0cb"; +@fa-var-list-ul: "\f0ca"; +@fa-var-location-arrow: "\f124"; +@fa-var-lock: "\f023"; +@fa-var-lock-open: "\f3c1"; +@fa-var-long-arrow-alt-down: "\f309"; +@fa-var-long-arrow-alt-left: "\f30a"; +@fa-var-long-arrow-alt-right: "\f30b"; +@fa-var-long-arrow-alt-up: "\f30c"; +@fa-var-low-vision: "\f2a8"; +@fa-var-luggage-cart: "\f59d"; +@fa-var-lyft: "\f3c3"; +@fa-var-magento: "\f3c4"; +@fa-var-magic: "\f0d0"; +@fa-var-magnet: "\f076"; +@fa-var-mailchimp: "\f59e"; +@fa-var-male: "\f183"; +@fa-var-mandalorian: "\f50f"; +@fa-var-map: "\f279"; +@fa-var-map-marked: "\f59f"; +@fa-var-map-marked-alt: "\f5a0"; +@fa-var-map-marker: "\f041"; +@fa-var-map-marker-alt: "\f3c5"; +@fa-var-map-pin: "\f276"; +@fa-var-map-signs: "\f277"; +@fa-var-marker: "\f5a1"; +@fa-var-mars: "\f222"; +@fa-var-mars-double: "\f227"; +@fa-var-mars-stroke: "\f229"; +@fa-var-mars-stroke-h: "\f22b"; +@fa-var-mars-stroke-v: "\f22a"; +@fa-var-mastodon: "\f4f6"; +@fa-var-maxcdn: "\f136"; +@fa-var-medal: "\f5a2"; +@fa-var-medapps: "\f3c6"; +@fa-var-medium: "\f23a"; +@fa-var-medium-m: "\f3c7"; +@fa-var-medkit: "\f0fa"; +@fa-var-medrt: "\f3c8"; +@fa-var-meetup: "\f2e0"; +@fa-var-megaport: "\f5a3"; +@fa-var-meh: "\f11a"; +@fa-var-meh-blank: "\f5a4"; +@fa-var-meh-rolling-eyes: "\f5a5"; +@fa-var-memory: "\f538"; +@fa-var-mercury: "\f223"; +@fa-var-microchip: "\f2db"; +@fa-var-microphone: "\f130"; +@fa-var-microphone-alt: "\f3c9"; +@fa-var-microphone-alt-slash: "\f539"; +@fa-var-microphone-slash: "\f131"; +@fa-var-microsoft: "\f3ca"; +@fa-var-minus: "\f068"; +@fa-var-minus-circle: "\f056"; +@fa-var-minus-square: "\f146"; +@fa-var-mix: "\f3cb"; +@fa-var-mixcloud: "\f289"; +@fa-var-mizuni: "\f3cc"; +@fa-var-mobile: "\f10b"; +@fa-var-mobile-alt: "\f3cd"; +@fa-var-modx: "\f285"; +@fa-var-monero: "\f3d0"; +@fa-var-money-bill: "\f0d6"; +@fa-var-money-bill-alt: "\f3d1"; +@fa-var-money-bill-wave: "\f53a"; +@fa-var-money-bill-wave-alt: "\f53b"; +@fa-var-money-check: "\f53c"; +@fa-var-money-check-alt: "\f53d"; +@fa-var-monument: "\f5a6"; +@fa-var-moon: "\f186"; +@fa-var-mortar-pestle: "\f5a7"; +@fa-var-motorcycle: "\f21c"; +@fa-var-mouse-pointer: "\f245"; +@fa-var-music: "\f001"; +@fa-var-napster: "\f3d2"; +@fa-var-neuter: "\f22c"; +@fa-var-newspaper: "\f1ea"; +@fa-var-nimblr: "\f5a8"; +@fa-var-nintendo-switch: "\f418"; +@fa-var-node: "\f419"; +@fa-var-node-js: "\f3d3"; +@fa-var-not-equal: "\f53e"; +@fa-var-notes-medical: "\f481"; +@fa-var-npm: "\f3d4"; +@fa-var-ns8: "\f3d5"; +@fa-var-nutritionix: "\f3d6"; +@fa-var-object-group: "\f247"; +@fa-var-object-ungroup: "\f248"; +@fa-var-odnoklassniki: "\f263"; +@fa-var-odnoklassniki-square: "\f264"; +@fa-var-old-republic: "\f510"; +@fa-var-opencart: "\f23d"; +@fa-var-openid: "\f19b"; +@fa-var-opera: "\f26a"; +@fa-var-optin-monster: "\f23c"; +@fa-var-osi: "\f41a"; +@fa-var-outdent: "\f03b"; +@fa-var-page4: "\f3d7"; +@fa-var-pagelines: "\f18c"; +@fa-var-paint-brush: "\f1fc"; +@fa-var-paint-roller: "\f5aa"; +@fa-var-palette: "\f53f"; +@fa-var-palfed: "\f3d8"; +@fa-var-pallet: "\f482"; +@fa-var-paper-plane: "\f1d8"; +@fa-var-paperclip: "\f0c6"; +@fa-var-parachute-box: "\f4cd"; +@fa-var-paragraph: "\f1dd"; +@fa-var-parking: "\f540"; +@fa-var-passport: "\f5ab"; +@fa-var-paste: "\f0ea"; +@fa-var-patreon: "\f3d9"; +@fa-var-pause: "\f04c"; +@fa-var-pause-circle: "\f28b"; +@fa-var-paw: "\f1b0"; +@fa-var-paypal: "\f1ed"; +@fa-var-pen: "\f304"; +@fa-var-pen-alt: "\f305"; +@fa-var-pen-fancy: "\f5ac"; +@fa-var-pen-nib: "\f5ad"; +@fa-var-pen-square: "\f14b"; +@fa-var-pencil-alt: "\f303"; +@fa-var-pencil-ruler: "\f5ae"; +@fa-var-people-carry: "\f4ce"; +@fa-var-percent: "\f295"; +@fa-var-percentage: "\f541"; +@fa-var-periscope: "\f3da"; +@fa-var-phabricator: "\f3db"; +@fa-var-phoenix-framework: "\f3dc"; +@fa-var-phoenix-squadron: "\f511"; +@fa-var-phone: "\f095"; +@fa-var-phone-slash: "\f3dd"; +@fa-var-phone-square: "\f098"; +@fa-var-phone-volume: "\f2a0"; +@fa-var-php: "\f457"; +@fa-var-pied-piper: "\f2ae"; +@fa-var-pied-piper-alt: "\f1a8"; +@fa-var-pied-piper-hat: "\f4e5"; +@fa-var-pied-piper-pp: "\f1a7"; +@fa-var-piggy-bank: "\f4d3"; +@fa-var-pills: "\f484"; +@fa-var-pinterest: "\f0d2"; +@fa-var-pinterest-p: "\f231"; +@fa-var-pinterest-square: "\f0d3"; +@fa-var-plane: "\f072"; +@fa-var-plane-arrival: "\f5af"; +@fa-var-plane-departure: "\f5b0"; +@fa-var-play: "\f04b"; +@fa-var-play-circle: "\f144"; +@fa-var-playstation: "\f3df"; +@fa-var-plug: "\f1e6"; +@fa-var-plus: "\f067"; +@fa-var-plus-circle: "\f055"; +@fa-var-plus-square: "\f0fe"; +@fa-var-podcast: "\f2ce"; +@fa-var-poo: "\f2fe"; +@fa-var-portrait: "\f3e0"; +@fa-var-pound-sign: "\f154"; +@fa-var-power-off: "\f011"; +@fa-var-prescription: "\f5b1"; +@fa-var-prescription-bottle: "\f485"; +@fa-var-prescription-bottle-alt: "\f486"; +@fa-var-print: "\f02f"; +@fa-var-procedures: "\f487"; +@fa-var-product-hunt: "\f288"; +@fa-var-project-diagram: "\f542"; +@fa-var-pushed: "\f3e1"; +@fa-var-puzzle-piece: "\f12e"; +@fa-var-python: "\f3e2"; +@fa-var-qq: "\f1d6"; +@fa-var-qrcode: "\f029"; +@fa-var-question: "\f128"; +@fa-var-question-circle: "\f059"; +@fa-var-quidditch: "\f458"; +@fa-var-quinscape: "\f459"; +@fa-var-quora: "\f2c4"; +@fa-var-quote-left: "\f10d"; +@fa-var-quote-right: "\f10e"; +@fa-var-r-project: "\f4f7"; +@fa-var-random: "\f074"; +@fa-var-ravelry: "\f2d9"; +@fa-var-react: "\f41b"; +@fa-var-readme: "\f4d5"; +@fa-var-rebel: "\f1d0"; +@fa-var-receipt: "\f543"; +@fa-var-recycle: "\f1b8"; +@fa-var-red-river: "\f3e3"; +@fa-var-reddit: "\f1a1"; +@fa-var-reddit-alien: "\f281"; +@fa-var-reddit-square: "\f1a2"; +@fa-var-redo: "\f01e"; +@fa-var-redo-alt: "\f2f9"; +@fa-var-registered: "\f25d"; +@fa-var-rendact: "\f3e4"; +@fa-var-renren: "\f18b"; +@fa-var-reply: "\f3e5"; +@fa-var-reply-all: "\f122"; +@fa-var-replyd: "\f3e6"; +@fa-var-researchgate: "\f4f8"; +@fa-var-resolving: "\f3e7"; +@fa-var-retweet: "\f079"; +@fa-var-rev: "\f5b2"; +@fa-var-ribbon: "\f4d6"; +@fa-var-road: "\f018"; +@fa-var-robot: "\f544"; +@fa-var-rocket: "\f135"; +@fa-var-rocketchat: "\f3e8"; +@fa-var-rockrms: "\f3e9"; +@fa-var-rss: "\f09e"; +@fa-var-rss-square: "\f143"; +@fa-var-ruble-sign: "\f158"; +@fa-var-ruler: "\f545"; +@fa-var-ruler-combined: "\f546"; +@fa-var-ruler-horizontal: "\f547"; +@fa-var-ruler-vertical: "\f548"; +@fa-var-rupee-sign: "\f156"; +@fa-var-sad-cry: "\f5b3"; +@fa-var-sad-tear: "\f5b4"; +@fa-var-safari: "\f267"; +@fa-var-sass: "\f41e"; +@fa-var-save: "\f0c7"; +@fa-var-schlix: "\f3ea"; +@fa-var-school: "\f549"; +@fa-var-screwdriver: "\f54a"; +@fa-var-scribd: "\f28a"; +@fa-var-search: "\f002"; +@fa-var-search-minus: "\f010"; +@fa-var-search-plus: "\f00e"; +@fa-var-searchengin: "\f3eb"; +@fa-var-seedling: "\f4d8"; +@fa-var-sellcast: "\f2da"; +@fa-var-sellsy: "\f213"; +@fa-var-server: "\f233"; +@fa-var-servicestack: "\f3ec"; +@fa-var-share: "\f064"; +@fa-var-share-alt: "\f1e0"; +@fa-var-share-alt-square: "\f1e1"; +@fa-var-share-square: "\f14d"; +@fa-var-shekel-sign: "\f20b"; +@fa-var-shield-alt: "\f3ed"; +@fa-var-ship: "\f21a"; +@fa-var-shipping-fast: "\f48b"; +@fa-var-shirtsinbulk: "\f214"; +@fa-var-shoe-prints: "\f54b"; +@fa-var-shopping-bag: "\f290"; +@fa-var-shopping-basket: "\f291"; +@fa-var-shopping-cart: "\f07a"; +@fa-var-shopware: "\f5b5"; +@fa-var-shower: "\f2cc"; +@fa-var-shuttle-van: "\f5b6"; +@fa-var-sign: "\f4d9"; +@fa-var-sign-in-alt: "\f2f6"; +@fa-var-sign-language: "\f2a7"; +@fa-var-sign-out-alt: "\f2f5"; +@fa-var-signal: "\f012"; +@fa-var-signature: "\f5b7"; +@fa-var-simplybuilt: "\f215"; +@fa-var-sistrix: "\f3ee"; +@fa-var-sitemap: "\f0e8"; +@fa-var-sith: "\f512"; +@fa-var-skull: "\f54c"; +@fa-var-skyatlas: "\f216"; +@fa-var-skype: "\f17e"; +@fa-var-slack: "\f198"; +@fa-var-slack-hash: "\f3ef"; +@fa-var-sliders-h: "\f1de"; +@fa-var-slideshare: "\f1e7"; +@fa-var-smile: "\f118"; +@fa-var-smile-beam: "\f5b8"; +@fa-var-smile-wink: "\f4da"; +@fa-var-smoking: "\f48d"; +@fa-var-smoking-ban: "\f54d"; +@fa-var-snapchat: "\f2ab"; +@fa-var-snapchat-ghost: "\f2ac"; +@fa-var-snapchat-square: "\f2ad"; +@fa-var-snowflake: "\f2dc"; +@fa-var-solar-panel: "\f5ba"; +@fa-var-sort: "\f0dc"; +@fa-var-sort-alpha-down: "\f15d"; +@fa-var-sort-alpha-up: "\f15e"; +@fa-var-sort-amount-down: "\f160"; +@fa-var-sort-amount-up: "\f161"; +@fa-var-sort-down: "\f0dd"; +@fa-var-sort-numeric-down: "\f162"; +@fa-var-sort-numeric-up: "\f163"; +@fa-var-sort-up: "\f0de"; +@fa-var-soundcloud: "\f1be"; +@fa-var-spa: "\f5bb"; +@fa-var-space-shuttle: "\f197"; +@fa-var-speakap: "\f3f3"; +@fa-var-spinner: "\f110"; +@fa-var-splotch: "\f5bc"; +@fa-var-spotify: "\f1bc"; +@fa-var-spray-can: "\f5bd"; +@fa-var-square: "\f0c8"; +@fa-var-square-full: "\f45c"; +@fa-var-squarespace: "\f5be"; +@fa-var-stack-exchange: "\f18d"; +@fa-var-stack-overflow: "\f16c"; +@fa-var-stamp: "\f5bf"; +@fa-var-star: "\f005"; +@fa-var-star-half: "\f089"; +@fa-var-star-half-alt: "\f5c0"; +@fa-var-staylinked: "\f3f5"; +@fa-var-steam: "\f1b6"; +@fa-var-steam-square: "\f1b7"; +@fa-var-steam-symbol: "\f3f6"; +@fa-var-step-backward: "\f048"; +@fa-var-step-forward: "\f051"; +@fa-var-stethoscope: "\f0f1"; +@fa-var-sticker-mule: "\f3f7"; +@fa-var-sticky-note: "\f249"; +@fa-var-stop: "\f04d"; +@fa-var-stop-circle: "\f28d"; +@fa-var-stopwatch: "\f2f2"; +@fa-var-store: "\f54e"; +@fa-var-store-alt: "\f54f"; +@fa-var-strava: "\f428"; +@fa-var-stream: "\f550"; +@fa-var-street-view: "\f21d"; +@fa-var-strikethrough: "\f0cc"; +@fa-var-stripe: "\f429"; +@fa-var-stripe-s: "\f42a"; +@fa-var-stroopwafel: "\f551"; +@fa-var-studiovinari: "\f3f8"; +@fa-var-stumbleupon: "\f1a4"; +@fa-var-stumbleupon-circle: "\f1a3"; +@fa-var-subscript: "\f12c"; +@fa-var-subway: "\f239"; +@fa-var-suitcase: "\f0f2"; +@fa-var-suitcase-rolling: "\f5c1"; +@fa-var-sun: "\f185"; +@fa-var-superpowers: "\f2dd"; +@fa-var-superscript: "\f12b"; +@fa-var-supple: "\f3f9"; +@fa-var-surprise: "\f5c2"; +@fa-var-swatchbook: "\f5c3"; +@fa-var-swimmer: "\f5c4"; +@fa-var-swimming-pool: "\f5c5"; +@fa-var-sync: "\f021"; +@fa-var-sync-alt: "\f2f1"; +@fa-var-syringe: "\f48e"; +@fa-var-table: "\f0ce"; +@fa-var-table-tennis: "\f45d"; +@fa-var-tablet: "\f10a"; +@fa-var-tablet-alt: "\f3fa"; +@fa-var-tablets: "\f490"; +@fa-var-tachometer-alt: "\f3fd"; +@fa-var-tag: "\f02b"; +@fa-var-tags: "\f02c"; +@fa-var-tape: "\f4db"; +@fa-var-tasks: "\f0ae"; +@fa-var-taxi: "\f1ba"; +@fa-var-teamspeak: "\f4f9"; +@fa-var-telegram: "\f2c6"; +@fa-var-telegram-plane: "\f3fe"; +@fa-var-tencent-weibo: "\f1d5"; +@fa-var-terminal: "\f120"; +@fa-var-text-height: "\f034"; +@fa-var-text-width: "\f035"; +@fa-var-th: "\f00a"; +@fa-var-th-large: "\f009"; +@fa-var-th-list: "\f00b"; +@fa-var-themeco: "\f5c6"; +@fa-var-themeisle: "\f2b2"; +@fa-var-thermometer: "\f491"; +@fa-var-thermometer-empty: "\f2cb"; +@fa-var-thermometer-full: "\f2c7"; +@fa-var-thermometer-half: "\f2c9"; +@fa-var-thermometer-quarter: "\f2ca"; +@fa-var-thermometer-three-quarters: "\f2c8"; +@fa-var-thumbs-down: "\f165"; +@fa-var-thumbs-up: "\f164"; +@fa-var-thumbtack: "\f08d"; +@fa-var-ticket-alt: "\f3ff"; +@fa-var-times: "\f00d"; +@fa-var-times-circle: "\f057"; +@fa-var-tint: "\f043"; +@fa-var-tint-slash: "\f5c7"; +@fa-var-tired: "\f5c8"; +@fa-var-toggle-off: "\f204"; +@fa-var-toggle-on: "\f205"; +@fa-var-toolbox: "\f552"; +@fa-var-tooth: "\f5c9"; +@fa-var-trade-federation: "\f513"; +@fa-var-trademark: "\f25c"; +@fa-var-train: "\f238"; +@fa-var-transgender: "\f224"; +@fa-var-transgender-alt: "\f225"; +@fa-var-trash: "\f1f8"; +@fa-var-trash-alt: "\f2ed"; +@fa-var-tree: "\f1bb"; +@fa-var-trello: "\f181"; +@fa-var-tripadvisor: "\f262"; +@fa-var-trophy: "\f091"; +@fa-var-truck: "\f0d1"; +@fa-var-truck-loading: "\f4de"; +@fa-var-truck-moving: "\f4df"; +@fa-var-tshirt: "\f553"; +@fa-var-tty: "\f1e4"; +@fa-var-tumblr: "\f173"; +@fa-var-tumblr-square: "\f174"; +@fa-var-tv: "\f26c"; +@fa-var-twitch: "\f1e8"; +@fa-var-twitter: "\f099"; +@fa-var-twitter-square: "\f081"; +@fa-var-typo3: "\f42b"; +@fa-var-uber: "\f402"; +@fa-var-uikit: "\f403"; +@fa-var-umbrella: "\f0e9"; +@fa-var-umbrella-beach: "\f5ca"; +@fa-var-underline: "\f0cd"; +@fa-var-undo: "\f0e2"; +@fa-var-undo-alt: "\f2ea"; +@fa-var-uniregistry: "\f404"; +@fa-var-universal-access: "\f29a"; +@fa-var-university: "\f19c"; +@fa-var-unlink: "\f127"; +@fa-var-unlock: "\f09c"; +@fa-var-unlock-alt: "\f13e"; +@fa-var-untappd: "\f405"; +@fa-var-upload: "\f093"; +@fa-var-usb: "\f287"; +@fa-var-user: "\f007"; +@fa-var-user-alt: "\f406"; +@fa-var-user-alt-slash: "\f4fa"; +@fa-var-user-astronaut: "\f4fb"; +@fa-var-user-check: "\f4fc"; +@fa-var-user-circle: "\f2bd"; +@fa-var-user-clock: "\f4fd"; +@fa-var-user-cog: "\f4fe"; +@fa-var-user-edit: "\f4ff"; +@fa-var-user-friends: "\f500"; +@fa-var-user-graduate: "\f501"; +@fa-var-user-lock: "\f502"; +@fa-var-user-md: "\f0f0"; +@fa-var-user-minus: "\f503"; +@fa-var-user-ninja: "\f504"; +@fa-var-user-plus: "\f234"; +@fa-var-user-secret: "\f21b"; +@fa-var-user-shield: "\f505"; +@fa-var-user-slash: "\f506"; +@fa-var-user-tag: "\f507"; +@fa-var-user-tie: "\f508"; +@fa-var-user-times: "\f235"; +@fa-var-users: "\f0c0"; +@fa-var-users-cog: "\f509"; +@fa-var-ussunnah: "\f407"; +@fa-var-utensil-spoon: "\f2e5"; +@fa-var-utensils: "\f2e7"; +@fa-var-vaadin: "\f408"; +@fa-var-vector-square: "\f5cb"; +@fa-var-venus: "\f221"; +@fa-var-venus-double: "\f226"; +@fa-var-venus-mars: "\f228"; +@fa-var-viacoin: "\f237"; +@fa-var-viadeo: "\f2a9"; +@fa-var-viadeo-square: "\f2aa"; +@fa-var-vial: "\f492"; +@fa-var-vials: "\f493"; +@fa-var-viber: "\f409"; +@fa-var-video: "\f03d"; +@fa-var-video-slash: "\f4e2"; +@fa-var-vimeo: "\f40a"; +@fa-var-vimeo-square: "\f194"; +@fa-var-vimeo-v: "\f27d"; +@fa-var-vine: "\f1ca"; +@fa-var-vk: "\f189"; +@fa-var-vnv: "\f40b"; +@fa-var-volleyball-ball: "\f45f"; +@fa-var-volume-down: "\f027"; +@fa-var-volume-off: "\f026"; +@fa-var-volume-up: "\f028"; +@fa-var-vuejs: "\f41f"; +@fa-var-walking: "\f554"; +@fa-var-wallet: "\f555"; +@fa-var-warehouse: "\f494"; +@fa-var-weebly: "\f5cc"; +@fa-var-weibo: "\f18a"; +@fa-var-weight: "\f496"; +@fa-var-weight-hanging: "\f5cd"; +@fa-var-weixin: "\f1d7"; +@fa-var-whatsapp: "\f232"; +@fa-var-whatsapp-square: "\f40c"; +@fa-var-wheelchair: "\f193"; +@fa-var-whmcs: "\f40d"; +@fa-var-wifi: "\f1eb"; +@fa-var-wikipedia-w: "\f266"; +@fa-var-window-close: "\f410"; +@fa-var-window-maximize: "\f2d0"; +@fa-var-window-minimize: "\f2d1"; +@fa-var-window-restore: "\f2d2"; +@fa-var-windows: "\f17a"; +@fa-var-wine-glass: "\f4e3"; +@fa-var-wine-glass-alt: "\f5ce"; +@fa-var-wix: "\f5cf"; +@fa-var-wolf-pack-battalion: "\f514"; +@fa-var-won-sign: "\f159"; +@fa-var-wordpress: "\f19a"; +@fa-var-wordpress-simple: "\f411"; +@fa-var-wpbeginner: "\f297"; +@fa-var-wpexplorer: "\f2de"; +@fa-var-wpforms: "\f298"; +@fa-var-wrench: "\f0ad"; +@fa-var-x-ray: "\f497"; +@fa-var-xbox: "\f412"; +@fa-var-xing: "\f168"; +@fa-var-xing-square: "\f169"; +@fa-var-y-combinator: "\f23b"; +@fa-var-yahoo: "\f19e"; +@fa-var-yandex: "\f413"; +@fa-var-yandex-international: "\f414"; +@fa-var-yelp: "\f1e9"; +@fa-var-yen-sign: "\f157"; +@fa-var-yoast: "\f2b1"; +@fa-var-youtube: "\f167"; +@fa-var-youtube-square: "\f431"; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/brands.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/brands.less new file mode 100644 index 0000000000..ae970c967e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/brands.less @@ -0,0 +1,21 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import "_variables.less"; + +@font-face { + font-family: 'Font Awesome 5 Brands'; + font-style: normal; + font-weight: normal; + src: url('@{fa-font-path}/fa-brands-400.eot'); + src: url('@{fa-font-path}/fa-brands-400.eot?#iefix') format('embedded-opentype'), + url('@{fa-font-path}/fa-brands-400.woff2') format('woff2'), + url('@{fa-font-path}/fa-brands-400.woff') format('woff'), + url('@{fa-font-path}/fa-brands-400.ttf') format('truetype'), + url('@{fa-font-path}/fa-brands-400.svg#fontawesome') format('svg'); +} + +.fab { + font-family: 'Font Awesome 5 Brands'; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/fa-brands.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/fa-brands.less new file mode 100644 index 0000000000..758d5e1897 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/fa-brands.less @@ -0,0 +1,17 @@ +@import "_variables.less"; + +@font-face { + font-family: 'Font Awesome 5 Brands'; + font-style: normal; + font-weight: normal; + src: url('@{fa-font-path}/fa-brands-400.eot'); + src: url('@{fa-font-path}/fa-brands-400.eot?#iefix') format('embedded-opentype'), + url('@{fa-font-path}/fa-brands-400.woff2') format('woff2'), + url('@{fa-font-path}/fa-brands-400.woff') format('woff'), + url('@{fa-font-path}/fa-brands-400.ttf') format('truetype'), + url('@{fa-font-path}/fa-brands-400.svg#fontawesome') format('svg'); +} + +.fab { + font-family: 'Font Awesome 5 Brands'; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/fa-regular.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/fa-regular.less new file mode 100644 index 0000000000..b2985ff219 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/fa-regular.less @@ -0,0 +1,18 @@ +@import "_variables.less"; + +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 400; + src: url('@{fa-font-path}/fa-regular-400.eot'); + src: url('@{fa-font-path}/fa-regular-400.eot?#iefix') format('embedded-opentype'), + url('@{fa-font-path}/fa-regular-400.woff2') format('woff2'), + url('@{fa-font-path}/fa-regular-400.woff') format('woff'), + url('@{fa-font-path}/fa-regular-400.ttf') format('truetype'), + url('@{fa-font-path}/fa-regular-400.svg#fontawesome') format('svg'); +} + +.far { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/fa-solid.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/fa-solid.less new file mode 100644 index 0000000000..d9c5aaca8f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/fa-solid.less @@ -0,0 +1,19 @@ +@import "_variables.less"; + +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 900; + src: url('@{fa-font-path}/fa-solid-900.eot'); + src: url('@{fa-font-path}/fa-solid-900.eot?#iefix') format('embedded-opentype'), + url('@{fa-font-path}/fa-solid-900.woff2') format('woff2'), + url('@{fa-font-path}/fa-solid-900.woff') format('woff'), + url('@{fa-font-path}/fa-solid-900.ttf') format('truetype'), + url('@{fa-font-path}/fa-solid-900.svg#fontawesome') format('svg'); +} + +.fa, +.fas { + font-family: 'Font Awesome 5 Free'; + font-weight: 900; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/fontawesome.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/fontawesome.less new file mode 100644 index 0000000000..19ae74f9bf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/fontawesome.less @@ -0,0 +1,16 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import "_variables.less"; +@import "_mixins.less"; +@import "_core.less"; +@import "_larger.less"; +@import "_fixed-width.less"; +@import "_list.less"; +@import "_bordered-pulled.less"; +@import "_animated.less"; +@import "_rotated-flipped.less"; +@import "_stacked.less"; +@import "_icons.less"; +@import "_screen-reader.less"; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/regular.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/regular.less new file mode 100644 index 0000000000..1016c43bad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/regular.less @@ -0,0 +1,22 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import "_variables.less"; + +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 400; + src: url('@{fa-font-path}/fa-regular-400.eot'); + src: url('@{fa-font-path}/fa-regular-400.eot?#iefix') format('embedded-opentype'), + url('@{fa-font-path}/fa-regular-400.woff2') format('woff2'), + url('@{fa-font-path}/fa-regular-400.woff') format('woff'), + url('@{fa-font-path}/fa-regular-400.ttf') format('truetype'), + url('@{fa-font-path}/fa-regular-400.svg#fontawesome') format('svg'); +} + +.far { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/solid.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/solid.less new file mode 100644 index 0000000000..5642289387 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/solid.less @@ -0,0 +1,23 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import "_variables.less"; + +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 900; + src: url('@{fa-font-path}/fa-solid-900.eot'); + src: url('@{fa-font-path}/fa-solid-900.eot?#iefix') format('embedded-opentype'), + url('@{fa-font-path}/fa-solid-900.woff2') format('woff2'), + url('@{fa-font-path}/fa-solid-900.woff') format('woff'), + url('@{fa-font-path}/fa-solid-900.ttf') format('truetype'), + url('@{fa-font-path}/fa-solid-900.svg#fontawesome') format('svg'); +} + +.fa, +.fas { + font-family: 'Font Awesome 5 Free'; + font-weight: 900; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/v4-shims.less b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/v4-shims.less new file mode 100644 index 0000000000..18c66883b1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/less/v4-shims.less @@ -0,0 +1,6 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import '_variables.less'; +@import '_shims.less'; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/package.json b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/package.json new file mode 100644 index 0000000000..cf0cb41b2e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/package.json @@ -0,0 +1,55 @@ +{ + "description": "The iconic font, CSS, and SVG framework", + "keywords": [ + "font", + "awesome", + "fontawesome", + "icon", + "svg", + "bootstrap" + ], + "homepage": "https://fontawesome.com", + "bugs": { + "url": "http://github.com/FortAwesome/Font-Awesome/issues" + }, + "author": { + "name": "Dave Gandy", + "email": "dave@fontawesome.com", + "web": "http://twitter.com/davegandy" + }, + "contributors": [ + { + "name": "Brian Talbot", + "web": "http://twitter.com/talbs" + }, + { + "name": "Travis Chase", + "web": "http://twitter.com/supercodepoet" + }, + { + "name": "Rob Madole", + "web": "http://twitter.com/robmadole" + }, + { + "name": "Geremia Taglialatela", + "web": "http://twitter.com/gtagliala" + }, + { + "name": "Mike Wilkerson", + "web": "http://twitter.com/mw77" + } + ], + "repository": { + "type": "git", + "url": "https://github.com/FortAwesome/Font-Awesome" + }, + "engines": { + "node": ">=6" + }, + "dependencies": {}, + "version": "5.1.1", + "name": "@fortawesome/fontawesome-free", + "main": "js/fontawesome.js", + "style": "css/fontawesome.css", + "license": "(CC-BY-4.0 AND OFL-1.1 AND MIT)" +} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_animated.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_animated.scss new file mode 100644 index 0000000000..7c7c0e173c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_animated.scss @@ -0,0 +1,20 @@ +// Animated Icons +// -------------------------- + +.#{$fa-css-prefix}-spin { + animation: fa-spin 2s infinite linear; +} + +.#{$fa-css-prefix}-pulse { + animation: fa-spin 1s infinite steps(8); +} + +@keyframes fa-spin { + 0% { + transform: rotate(0deg); + } + + 100% { + transform: rotate(360deg); + } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_bordered-pulled.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_bordered-pulled.scss new file mode 100644 index 0000000000..c8c4274c40 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_bordered-pulled.scss @@ -0,0 +1,20 @@ +// Bordered & Pulled +// ------------------------- + +.#{$fa-css-prefix}-border { + border: solid .08em $fa-border-color; + border-radius: .1em; + padding: .2em .25em .15em; +} + +.#{$fa-css-prefix}-pull-left { float: left; } +.#{$fa-css-prefix}-pull-right { float: right; } + +.#{$fa-css-prefix}, +.fas, +.far, +.fal, +.fab { + &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } + &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_core.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_core.scss new file mode 100644 index 0000000000..7fd37f855c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_core.scss @@ -0,0 +1,16 @@ +// Base Class Definition +// ------------------------- + +.#{$fa-css-prefix}, +.fas, +.far, +.fal, +.fab { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + line-height: 1; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_fixed-width.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_fixed-width.scss new file mode 100644 index 0000000000..5b33eb49aa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_fixed-width.scss @@ -0,0 +1,6 @@ +// Fixed Width Icons +// ------------------------- +.#{$fa-css-prefix}-fw { + text-align: center; + width: (20em / 16); +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_icons.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_icons.scss new file mode 100644 index 0000000000..96c261aab4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_icons.scss @@ -0,0 +1,1115 @@ +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen +readers do not read off random characters that represent icons */ + +.#{$fa-css-prefix}-500px:before { content: fa-content($fa-var-500px); } +.#{$fa-css-prefix}-accessible-icon:before { content: fa-content($fa-var-accessible-icon); } +.#{$fa-css-prefix}-accusoft:before { content: fa-content($fa-var-accusoft); } +.#{$fa-css-prefix}-address-book:before { content: fa-content($fa-var-address-book); } +.#{$fa-css-prefix}-address-card:before { content: fa-content($fa-var-address-card); } +.#{$fa-css-prefix}-adjust:before { content: fa-content($fa-var-adjust); } +.#{$fa-css-prefix}-adn:before { content: fa-content($fa-var-adn); } +.#{$fa-css-prefix}-adversal:before { content: fa-content($fa-var-adversal); } +.#{$fa-css-prefix}-affiliatetheme:before { content: fa-content($fa-var-affiliatetheme); } +.#{$fa-css-prefix}-algolia:before { content: fa-content($fa-var-algolia); } +.#{$fa-css-prefix}-align-center:before { content: fa-content($fa-var-align-center); } +.#{$fa-css-prefix}-align-justify:before { content: fa-content($fa-var-align-justify); } +.#{$fa-css-prefix}-align-left:before { content: fa-content($fa-var-align-left); } +.#{$fa-css-prefix}-align-right:before { content: fa-content($fa-var-align-right); } +.#{$fa-css-prefix}-allergies:before { content: fa-content($fa-var-allergies); } +.#{$fa-css-prefix}-amazon:before { content: fa-content($fa-var-amazon); } +.#{$fa-css-prefix}-amazon-pay:before { content: fa-content($fa-var-amazon-pay); } +.#{$fa-css-prefix}-ambulance:before { content: fa-content($fa-var-ambulance); } +.#{$fa-css-prefix}-american-sign-language-interpreting:before { content: fa-content($fa-var-american-sign-language-interpreting); } +.#{$fa-css-prefix}-amilia:before { content: fa-content($fa-var-amilia); } +.#{$fa-css-prefix}-anchor:before { content: fa-content($fa-var-anchor); } +.#{$fa-css-prefix}-android:before { content: fa-content($fa-var-android); } +.#{$fa-css-prefix}-angellist:before { content: fa-content($fa-var-angellist); } +.#{$fa-css-prefix}-angle-double-down:before { content: fa-content($fa-var-angle-double-down); } +.#{$fa-css-prefix}-angle-double-left:before { content: fa-content($fa-var-angle-double-left); } +.#{$fa-css-prefix}-angle-double-right:before { content: fa-content($fa-var-angle-double-right); } +.#{$fa-css-prefix}-angle-double-up:before { content: fa-content($fa-var-angle-double-up); } +.#{$fa-css-prefix}-angle-down:before { content: fa-content($fa-var-angle-down); } +.#{$fa-css-prefix}-angle-left:before { content: fa-content($fa-var-angle-left); } +.#{$fa-css-prefix}-angle-right:before { content: fa-content($fa-var-angle-right); } +.#{$fa-css-prefix}-angle-up:before { content: fa-content($fa-var-angle-up); } +.#{$fa-css-prefix}-angry:before { content: fa-content($fa-var-angry); } +.#{$fa-css-prefix}-angrycreative:before { content: fa-content($fa-var-angrycreative); } +.#{$fa-css-prefix}-angular:before { content: fa-content($fa-var-angular); } +.#{$fa-css-prefix}-app-store:before { content: fa-content($fa-var-app-store); } +.#{$fa-css-prefix}-app-store-ios:before { content: fa-content($fa-var-app-store-ios); } +.#{$fa-css-prefix}-apper:before { content: fa-content($fa-var-apper); } +.#{$fa-css-prefix}-apple:before { content: fa-content($fa-var-apple); } +.#{$fa-css-prefix}-apple-pay:before { content: fa-content($fa-var-apple-pay); } +.#{$fa-css-prefix}-archive:before { content: fa-content($fa-var-archive); } +.#{$fa-css-prefix}-archway:before { content: fa-content($fa-var-archway); } +.#{$fa-css-prefix}-arrow-alt-circle-down:before { content: fa-content($fa-var-arrow-alt-circle-down); } +.#{$fa-css-prefix}-arrow-alt-circle-left:before { content: fa-content($fa-var-arrow-alt-circle-left); } +.#{$fa-css-prefix}-arrow-alt-circle-right:before { content: fa-content($fa-var-arrow-alt-circle-right); } +.#{$fa-css-prefix}-arrow-alt-circle-up:before { content: fa-content($fa-var-arrow-alt-circle-up); } +.#{$fa-css-prefix}-arrow-circle-down:before { content: fa-content($fa-var-arrow-circle-down); } +.#{$fa-css-prefix}-arrow-circle-left:before { content: fa-content($fa-var-arrow-circle-left); } +.#{$fa-css-prefix}-arrow-circle-right:before { content: fa-content($fa-var-arrow-circle-right); } +.#{$fa-css-prefix}-arrow-circle-up:before { content: fa-content($fa-var-arrow-circle-up); } +.#{$fa-css-prefix}-arrow-down:before { content: fa-content($fa-var-arrow-down); } +.#{$fa-css-prefix}-arrow-left:before { content: fa-content($fa-var-arrow-left); } +.#{$fa-css-prefix}-arrow-right:before { content: fa-content($fa-var-arrow-right); } +.#{$fa-css-prefix}-arrow-up:before { content: fa-content($fa-var-arrow-up); } +.#{$fa-css-prefix}-arrows-alt:before { content: fa-content($fa-var-arrows-alt); } +.#{$fa-css-prefix}-arrows-alt-h:before { content: fa-content($fa-var-arrows-alt-h); } +.#{$fa-css-prefix}-arrows-alt-v:before { content: fa-content($fa-var-arrows-alt-v); } +.#{$fa-css-prefix}-assistive-listening-systems:before { content: fa-content($fa-var-assistive-listening-systems); } +.#{$fa-css-prefix}-asterisk:before { content: fa-content($fa-var-asterisk); } +.#{$fa-css-prefix}-asymmetrik:before { content: fa-content($fa-var-asymmetrik); } +.#{$fa-css-prefix}-at:before { content: fa-content($fa-var-at); } +.#{$fa-css-prefix}-atlas:before { content: fa-content($fa-var-atlas); } +.#{$fa-css-prefix}-audible:before { content: fa-content($fa-var-audible); } +.#{$fa-css-prefix}-audio-description:before { content: fa-content($fa-var-audio-description); } +.#{$fa-css-prefix}-autoprefixer:before { content: fa-content($fa-var-autoprefixer); } +.#{$fa-css-prefix}-avianex:before { content: fa-content($fa-var-avianex); } +.#{$fa-css-prefix}-aviato:before { content: fa-content($fa-var-aviato); } +.#{$fa-css-prefix}-award:before { content: fa-content($fa-var-award); } +.#{$fa-css-prefix}-aws:before { content: fa-content($fa-var-aws); } +.#{$fa-css-prefix}-backspace:before { content: fa-content($fa-var-backspace); } +.#{$fa-css-prefix}-backward:before { content: fa-content($fa-var-backward); } +.#{$fa-css-prefix}-balance-scale:before { content: fa-content($fa-var-balance-scale); } +.#{$fa-css-prefix}-ban:before { content: fa-content($fa-var-ban); } +.#{$fa-css-prefix}-band-aid:before { content: fa-content($fa-var-band-aid); } +.#{$fa-css-prefix}-bandcamp:before { content: fa-content($fa-var-bandcamp); } +.#{$fa-css-prefix}-barcode:before { content: fa-content($fa-var-barcode); } +.#{$fa-css-prefix}-bars:before { content: fa-content($fa-var-bars); } +.#{$fa-css-prefix}-baseball-ball:before { content: fa-content($fa-var-baseball-ball); } +.#{$fa-css-prefix}-basketball-ball:before { content: fa-content($fa-var-basketball-ball); } +.#{$fa-css-prefix}-bath:before { content: fa-content($fa-var-bath); } +.#{$fa-css-prefix}-battery-empty:before { content: fa-content($fa-var-battery-empty); } +.#{$fa-css-prefix}-battery-full:before { content: fa-content($fa-var-battery-full); } +.#{$fa-css-prefix}-battery-half:before { content: fa-content($fa-var-battery-half); } +.#{$fa-css-prefix}-battery-quarter:before { content: fa-content($fa-var-battery-quarter); } +.#{$fa-css-prefix}-battery-three-quarters:before { content: fa-content($fa-var-battery-three-quarters); } +.#{$fa-css-prefix}-bed:before { content: fa-content($fa-var-bed); } +.#{$fa-css-prefix}-beer:before { content: fa-content($fa-var-beer); } +.#{$fa-css-prefix}-behance:before { content: fa-content($fa-var-behance); } +.#{$fa-css-prefix}-behance-square:before { content: fa-content($fa-var-behance-square); } +.#{$fa-css-prefix}-bell:before { content: fa-content($fa-var-bell); } +.#{$fa-css-prefix}-bell-slash:before { content: fa-content($fa-var-bell-slash); } +.#{$fa-css-prefix}-bezier-curve:before { content: fa-content($fa-var-bezier-curve); } +.#{$fa-css-prefix}-bicycle:before { content: fa-content($fa-var-bicycle); } +.#{$fa-css-prefix}-bimobject:before { content: fa-content($fa-var-bimobject); } +.#{$fa-css-prefix}-binoculars:before { content: fa-content($fa-var-binoculars); } +.#{$fa-css-prefix}-birthday-cake:before { content: fa-content($fa-var-birthday-cake); } +.#{$fa-css-prefix}-bitbucket:before { content: fa-content($fa-var-bitbucket); } +.#{$fa-css-prefix}-bitcoin:before { content: fa-content($fa-var-bitcoin); } +.#{$fa-css-prefix}-bity:before { content: fa-content($fa-var-bity); } +.#{$fa-css-prefix}-black-tie:before { content: fa-content($fa-var-black-tie); } +.#{$fa-css-prefix}-blackberry:before { content: fa-content($fa-var-blackberry); } +.#{$fa-css-prefix}-blender:before { content: fa-content($fa-var-blender); } +.#{$fa-css-prefix}-blind:before { content: fa-content($fa-var-blind); } +.#{$fa-css-prefix}-blogger:before { content: fa-content($fa-var-blogger); } +.#{$fa-css-prefix}-blogger-b:before { content: fa-content($fa-var-blogger-b); } +.#{$fa-css-prefix}-bluetooth:before { content: fa-content($fa-var-bluetooth); } +.#{$fa-css-prefix}-bluetooth-b:before { content: fa-content($fa-var-bluetooth-b); } +.#{$fa-css-prefix}-bold:before { content: fa-content($fa-var-bold); } +.#{$fa-css-prefix}-bolt:before { content: fa-content($fa-var-bolt); } +.#{$fa-css-prefix}-bomb:before { content: fa-content($fa-var-bomb); } +.#{$fa-css-prefix}-bong:before { content: fa-content($fa-var-bong); } +.#{$fa-css-prefix}-book:before { content: fa-content($fa-var-book); } +.#{$fa-css-prefix}-book-open:before { content: fa-content($fa-var-book-open); } +.#{$fa-css-prefix}-bookmark:before { content: fa-content($fa-var-bookmark); } +.#{$fa-css-prefix}-bowling-ball:before { content: fa-content($fa-var-bowling-ball); } +.#{$fa-css-prefix}-box:before { content: fa-content($fa-var-box); } +.#{$fa-css-prefix}-box-open:before { content: fa-content($fa-var-box-open); } +.#{$fa-css-prefix}-boxes:before { content: fa-content($fa-var-boxes); } +.#{$fa-css-prefix}-braille:before { content: fa-content($fa-var-braille); } +.#{$fa-css-prefix}-briefcase:before { content: fa-content($fa-var-briefcase); } +.#{$fa-css-prefix}-briefcase-medical:before { content: fa-content($fa-var-briefcase-medical); } +.#{$fa-css-prefix}-broadcast-tower:before { content: fa-content($fa-var-broadcast-tower); } +.#{$fa-css-prefix}-broom:before { content: fa-content($fa-var-broom); } +.#{$fa-css-prefix}-brush:before { content: fa-content($fa-var-brush); } +.#{$fa-css-prefix}-btc:before { content: fa-content($fa-var-btc); } +.#{$fa-css-prefix}-bug:before { content: fa-content($fa-var-bug); } +.#{$fa-css-prefix}-building:before { content: fa-content($fa-var-building); } +.#{$fa-css-prefix}-bullhorn:before { content: fa-content($fa-var-bullhorn); } +.#{$fa-css-prefix}-bullseye:before { content: fa-content($fa-var-bullseye); } +.#{$fa-css-prefix}-burn:before { content: fa-content($fa-var-burn); } +.#{$fa-css-prefix}-buromobelexperte:before { content: fa-content($fa-var-buromobelexperte); } +.#{$fa-css-prefix}-bus:before { content: fa-content($fa-var-bus); } +.#{$fa-css-prefix}-bus-alt:before { content: fa-content($fa-var-bus-alt); } +.#{$fa-css-prefix}-buysellads:before { content: fa-content($fa-var-buysellads); } +.#{$fa-css-prefix}-calculator:before { content: fa-content($fa-var-calculator); } +.#{$fa-css-prefix}-calendar:before { content: fa-content($fa-var-calendar); } +.#{$fa-css-prefix}-calendar-alt:before { content: fa-content($fa-var-calendar-alt); } +.#{$fa-css-prefix}-calendar-check:before { content: fa-content($fa-var-calendar-check); } +.#{$fa-css-prefix}-calendar-minus:before { content: fa-content($fa-var-calendar-minus); } +.#{$fa-css-prefix}-calendar-plus:before { content: fa-content($fa-var-calendar-plus); } +.#{$fa-css-prefix}-calendar-times:before { content: fa-content($fa-var-calendar-times); } +.#{$fa-css-prefix}-camera:before { content: fa-content($fa-var-camera); } +.#{$fa-css-prefix}-camera-retro:before { content: fa-content($fa-var-camera-retro); } +.#{$fa-css-prefix}-cannabis:before { content: fa-content($fa-var-cannabis); } +.#{$fa-css-prefix}-capsules:before { content: fa-content($fa-var-capsules); } +.#{$fa-css-prefix}-car:before { content: fa-content($fa-var-car); } +.#{$fa-css-prefix}-caret-down:before { content: fa-content($fa-var-caret-down); } +.#{$fa-css-prefix}-caret-left:before { content: fa-content($fa-var-caret-left); } +.#{$fa-css-prefix}-caret-right:before { content: fa-content($fa-var-caret-right); } +.#{$fa-css-prefix}-caret-square-down:before { content: fa-content($fa-var-caret-square-down); } +.#{$fa-css-prefix}-caret-square-left:before { content: fa-content($fa-var-caret-square-left); } +.#{$fa-css-prefix}-caret-square-right:before { content: fa-content($fa-var-caret-square-right); } +.#{$fa-css-prefix}-caret-square-up:before { content: fa-content($fa-var-caret-square-up); } +.#{$fa-css-prefix}-caret-up:before { content: fa-content($fa-var-caret-up); } +.#{$fa-css-prefix}-cart-arrow-down:before { content: fa-content($fa-var-cart-arrow-down); } +.#{$fa-css-prefix}-cart-plus:before { content: fa-content($fa-var-cart-plus); } +.#{$fa-css-prefix}-cc-amazon-pay:before { content: fa-content($fa-var-cc-amazon-pay); } +.#{$fa-css-prefix}-cc-amex:before { content: fa-content($fa-var-cc-amex); } +.#{$fa-css-prefix}-cc-apple-pay:before { content: fa-content($fa-var-cc-apple-pay); } +.#{$fa-css-prefix}-cc-diners-club:before { content: fa-content($fa-var-cc-diners-club); } +.#{$fa-css-prefix}-cc-discover:before { content: fa-content($fa-var-cc-discover); } +.#{$fa-css-prefix}-cc-jcb:before { content: fa-content($fa-var-cc-jcb); } +.#{$fa-css-prefix}-cc-mastercard:before { content: fa-content($fa-var-cc-mastercard); } +.#{$fa-css-prefix}-cc-paypal:before { content: fa-content($fa-var-cc-paypal); } +.#{$fa-css-prefix}-cc-stripe:before { content: fa-content($fa-var-cc-stripe); } +.#{$fa-css-prefix}-cc-visa:before { content: fa-content($fa-var-cc-visa); } +.#{$fa-css-prefix}-centercode:before { content: fa-content($fa-var-centercode); } +.#{$fa-css-prefix}-certificate:before { content: fa-content($fa-var-certificate); } +.#{$fa-css-prefix}-chalkboard:before { content: fa-content($fa-var-chalkboard); } +.#{$fa-css-prefix}-chalkboard-teacher:before { content: fa-content($fa-var-chalkboard-teacher); } +.#{$fa-css-prefix}-chart-area:before { content: fa-content($fa-var-chart-area); } +.#{$fa-css-prefix}-chart-bar:before { content: fa-content($fa-var-chart-bar); } +.#{$fa-css-prefix}-chart-line:before { content: fa-content($fa-var-chart-line); } +.#{$fa-css-prefix}-chart-pie:before { content: fa-content($fa-var-chart-pie); } +.#{$fa-css-prefix}-check:before { content: fa-content($fa-var-check); } +.#{$fa-css-prefix}-check-circle:before { content: fa-content($fa-var-check-circle); } +.#{$fa-css-prefix}-check-double:before { content: fa-content($fa-var-check-double); } +.#{$fa-css-prefix}-check-square:before { content: fa-content($fa-var-check-square); } +.#{$fa-css-prefix}-chess:before { content: fa-content($fa-var-chess); } +.#{$fa-css-prefix}-chess-bishop:before { content: fa-content($fa-var-chess-bishop); } +.#{$fa-css-prefix}-chess-board:before { content: fa-content($fa-var-chess-board); } +.#{$fa-css-prefix}-chess-king:before { content: fa-content($fa-var-chess-king); } +.#{$fa-css-prefix}-chess-knight:before { content: fa-content($fa-var-chess-knight); } +.#{$fa-css-prefix}-chess-pawn:before { content: fa-content($fa-var-chess-pawn); } +.#{$fa-css-prefix}-chess-queen:before { content: fa-content($fa-var-chess-queen); } +.#{$fa-css-prefix}-chess-rook:before { content: fa-content($fa-var-chess-rook); } +.#{$fa-css-prefix}-chevron-circle-down:before { content: fa-content($fa-var-chevron-circle-down); } +.#{$fa-css-prefix}-chevron-circle-left:before { content: fa-content($fa-var-chevron-circle-left); } +.#{$fa-css-prefix}-chevron-circle-right:before { content: fa-content($fa-var-chevron-circle-right); } +.#{$fa-css-prefix}-chevron-circle-up:before { content: fa-content($fa-var-chevron-circle-up); } +.#{$fa-css-prefix}-chevron-down:before { content: fa-content($fa-var-chevron-down); } +.#{$fa-css-prefix}-chevron-left:before { content: fa-content($fa-var-chevron-left); } +.#{$fa-css-prefix}-chevron-right:before { content: fa-content($fa-var-chevron-right); } +.#{$fa-css-prefix}-chevron-up:before { content: fa-content($fa-var-chevron-up); } +.#{$fa-css-prefix}-child:before { content: fa-content($fa-var-child); } +.#{$fa-css-prefix}-chrome:before { content: fa-content($fa-var-chrome); } +.#{$fa-css-prefix}-church:before { content: fa-content($fa-var-church); } +.#{$fa-css-prefix}-circle:before { content: fa-content($fa-var-circle); } +.#{$fa-css-prefix}-circle-notch:before { content: fa-content($fa-var-circle-notch); } +.#{$fa-css-prefix}-clipboard:before { content: fa-content($fa-var-clipboard); } +.#{$fa-css-prefix}-clipboard-check:before { content: fa-content($fa-var-clipboard-check); } +.#{$fa-css-prefix}-clipboard-list:before { content: fa-content($fa-var-clipboard-list); } +.#{$fa-css-prefix}-clock:before { content: fa-content($fa-var-clock); } +.#{$fa-css-prefix}-clone:before { content: fa-content($fa-var-clone); } +.#{$fa-css-prefix}-closed-captioning:before { content: fa-content($fa-var-closed-captioning); } +.#{$fa-css-prefix}-cloud:before { content: fa-content($fa-var-cloud); } +.#{$fa-css-prefix}-cloud-download-alt:before { content: fa-content($fa-var-cloud-download-alt); } +.#{$fa-css-prefix}-cloud-upload-alt:before { content: fa-content($fa-var-cloud-upload-alt); } +.#{$fa-css-prefix}-cloudscale:before { content: fa-content($fa-var-cloudscale); } +.#{$fa-css-prefix}-cloudsmith:before { content: fa-content($fa-var-cloudsmith); } +.#{$fa-css-prefix}-cloudversify:before { content: fa-content($fa-var-cloudversify); } +.#{$fa-css-prefix}-cocktail:before { content: fa-content($fa-var-cocktail); } +.#{$fa-css-prefix}-code:before { content: fa-content($fa-var-code); } +.#{$fa-css-prefix}-code-branch:before { content: fa-content($fa-var-code-branch); } +.#{$fa-css-prefix}-codepen:before { content: fa-content($fa-var-codepen); } +.#{$fa-css-prefix}-codiepie:before { content: fa-content($fa-var-codiepie); } +.#{$fa-css-prefix}-coffee:before { content: fa-content($fa-var-coffee); } +.#{$fa-css-prefix}-cog:before { content: fa-content($fa-var-cog); } +.#{$fa-css-prefix}-cogs:before { content: fa-content($fa-var-cogs); } +.#{$fa-css-prefix}-coins:before { content: fa-content($fa-var-coins); } +.#{$fa-css-prefix}-columns:before { content: fa-content($fa-var-columns); } +.#{$fa-css-prefix}-comment:before { content: fa-content($fa-var-comment); } +.#{$fa-css-prefix}-comment-alt:before { content: fa-content($fa-var-comment-alt); } +.#{$fa-css-prefix}-comment-dots:before { content: fa-content($fa-var-comment-dots); } +.#{$fa-css-prefix}-comment-slash:before { content: fa-content($fa-var-comment-slash); } +.#{$fa-css-prefix}-comments:before { content: fa-content($fa-var-comments); } +.#{$fa-css-prefix}-compact-disc:before { content: fa-content($fa-var-compact-disc); } +.#{$fa-css-prefix}-compass:before { content: fa-content($fa-var-compass); } +.#{$fa-css-prefix}-compress:before { content: fa-content($fa-var-compress); } +.#{$fa-css-prefix}-concierge-bell:before { content: fa-content($fa-var-concierge-bell); } +.#{$fa-css-prefix}-connectdevelop:before { content: fa-content($fa-var-connectdevelop); } +.#{$fa-css-prefix}-contao:before { content: fa-content($fa-var-contao); } +.#{$fa-css-prefix}-cookie:before { content: fa-content($fa-var-cookie); } +.#{$fa-css-prefix}-cookie-bite:before { content: fa-content($fa-var-cookie-bite); } +.#{$fa-css-prefix}-copy:before { content: fa-content($fa-var-copy); } +.#{$fa-css-prefix}-copyright:before { content: fa-content($fa-var-copyright); } +.#{$fa-css-prefix}-couch:before { content: fa-content($fa-var-couch); } +.#{$fa-css-prefix}-cpanel:before { content: fa-content($fa-var-cpanel); } +.#{$fa-css-prefix}-creative-commons:before { content: fa-content($fa-var-creative-commons); } +.#{$fa-css-prefix}-creative-commons-by:before { content: fa-content($fa-var-creative-commons-by); } +.#{$fa-css-prefix}-creative-commons-nc:before { content: fa-content($fa-var-creative-commons-nc); } +.#{$fa-css-prefix}-creative-commons-nc-eu:before { content: fa-content($fa-var-creative-commons-nc-eu); } +.#{$fa-css-prefix}-creative-commons-nc-jp:before { content: fa-content($fa-var-creative-commons-nc-jp); } +.#{$fa-css-prefix}-creative-commons-nd:before { content: fa-content($fa-var-creative-commons-nd); } +.#{$fa-css-prefix}-creative-commons-pd:before { content: fa-content($fa-var-creative-commons-pd); } +.#{$fa-css-prefix}-creative-commons-pd-alt:before { content: fa-content($fa-var-creative-commons-pd-alt); } +.#{$fa-css-prefix}-creative-commons-remix:before { content: fa-content($fa-var-creative-commons-remix); } +.#{$fa-css-prefix}-creative-commons-sa:before { content: fa-content($fa-var-creative-commons-sa); } +.#{$fa-css-prefix}-creative-commons-sampling:before { content: fa-content($fa-var-creative-commons-sampling); } +.#{$fa-css-prefix}-creative-commons-sampling-plus:before { content: fa-content($fa-var-creative-commons-sampling-plus); } +.#{$fa-css-prefix}-creative-commons-share:before { content: fa-content($fa-var-creative-commons-share); } +.#{$fa-css-prefix}-credit-card:before { content: fa-content($fa-var-credit-card); } +.#{$fa-css-prefix}-crop:before { content: fa-content($fa-var-crop); } +.#{$fa-css-prefix}-crop-alt:before { content: fa-content($fa-var-crop-alt); } +.#{$fa-css-prefix}-crosshairs:before { content: fa-content($fa-var-crosshairs); } +.#{$fa-css-prefix}-crow:before { content: fa-content($fa-var-crow); } +.#{$fa-css-prefix}-crown:before { content: fa-content($fa-var-crown); } +.#{$fa-css-prefix}-css3:before { content: fa-content($fa-var-css3); } +.#{$fa-css-prefix}-css3-alt:before { content: fa-content($fa-var-css3-alt); } +.#{$fa-css-prefix}-cube:before { content: fa-content($fa-var-cube); } +.#{$fa-css-prefix}-cubes:before { content: fa-content($fa-var-cubes); } +.#{$fa-css-prefix}-cut:before { content: fa-content($fa-var-cut); } +.#{$fa-css-prefix}-cuttlefish:before { content: fa-content($fa-var-cuttlefish); } +.#{$fa-css-prefix}-d-and-d:before { content: fa-content($fa-var-d-and-d); } +.#{$fa-css-prefix}-dashcube:before { content: fa-content($fa-var-dashcube); } +.#{$fa-css-prefix}-database:before { content: fa-content($fa-var-database); } +.#{$fa-css-prefix}-deaf:before { content: fa-content($fa-var-deaf); } +.#{$fa-css-prefix}-delicious:before { content: fa-content($fa-var-delicious); } +.#{$fa-css-prefix}-deploydog:before { content: fa-content($fa-var-deploydog); } +.#{$fa-css-prefix}-deskpro:before { content: fa-content($fa-var-deskpro); } +.#{$fa-css-prefix}-desktop:before { content: fa-content($fa-var-desktop); } +.#{$fa-css-prefix}-deviantart:before { content: fa-content($fa-var-deviantart); } +.#{$fa-css-prefix}-diagnoses:before { content: fa-content($fa-var-diagnoses); } +.#{$fa-css-prefix}-dice:before { content: fa-content($fa-var-dice); } +.#{$fa-css-prefix}-dice-five:before { content: fa-content($fa-var-dice-five); } +.#{$fa-css-prefix}-dice-four:before { content: fa-content($fa-var-dice-four); } +.#{$fa-css-prefix}-dice-one:before { content: fa-content($fa-var-dice-one); } +.#{$fa-css-prefix}-dice-six:before { content: fa-content($fa-var-dice-six); } +.#{$fa-css-prefix}-dice-three:before { content: fa-content($fa-var-dice-three); } +.#{$fa-css-prefix}-dice-two:before { content: fa-content($fa-var-dice-two); } +.#{$fa-css-prefix}-digg:before { content: fa-content($fa-var-digg); } +.#{$fa-css-prefix}-digital-ocean:before { content: fa-content($fa-var-digital-ocean); } +.#{$fa-css-prefix}-digital-tachograph:before { content: fa-content($fa-var-digital-tachograph); } +.#{$fa-css-prefix}-discord:before { content: fa-content($fa-var-discord); } +.#{$fa-css-prefix}-discourse:before { content: fa-content($fa-var-discourse); } +.#{$fa-css-prefix}-divide:before { content: fa-content($fa-var-divide); } +.#{$fa-css-prefix}-dizzy:before { content: fa-content($fa-var-dizzy); } +.#{$fa-css-prefix}-dna:before { content: fa-content($fa-var-dna); } +.#{$fa-css-prefix}-dochub:before { content: fa-content($fa-var-dochub); } +.#{$fa-css-prefix}-docker:before { content: fa-content($fa-var-docker); } +.#{$fa-css-prefix}-dollar-sign:before { content: fa-content($fa-var-dollar-sign); } +.#{$fa-css-prefix}-dolly:before { content: fa-content($fa-var-dolly); } +.#{$fa-css-prefix}-dolly-flatbed:before { content: fa-content($fa-var-dolly-flatbed); } +.#{$fa-css-prefix}-donate:before { content: fa-content($fa-var-donate); } +.#{$fa-css-prefix}-door-closed:before { content: fa-content($fa-var-door-closed); } +.#{$fa-css-prefix}-door-open:before { content: fa-content($fa-var-door-open); } +.#{$fa-css-prefix}-dot-circle:before { content: fa-content($fa-var-dot-circle); } +.#{$fa-css-prefix}-dove:before { content: fa-content($fa-var-dove); } +.#{$fa-css-prefix}-download:before { content: fa-content($fa-var-download); } +.#{$fa-css-prefix}-draft2digital:before { content: fa-content($fa-var-draft2digital); } +.#{$fa-css-prefix}-drafting-compass:before { content: fa-content($fa-var-drafting-compass); } +.#{$fa-css-prefix}-dribbble:before { content: fa-content($fa-var-dribbble); } +.#{$fa-css-prefix}-dribbble-square:before { content: fa-content($fa-var-dribbble-square); } +.#{$fa-css-prefix}-dropbox:before { content: fa-content($fa-var-dropbox); } +.#{$fa-css-prefix}-drum:before { content: fa-content($fa-var-drum); } +.#{$fa-css-prefix}-drum-steelpan:before { content: fa-content($fa-var-drum-steelpan); } +.#{$fa-css-prefix}-drupal:before { content: fa-content($fa-var-drupal); } +.#{$fa-css-prefix}-dumbbell:before { content: fa-content($fa-var-dumbbell); } +.#{$fa-css-prefix}-dyalog:before { content: fa-content($fa-var-dyalog); } +.#{$fa-css-prefix}-earlybirds:before { content: fa-content($fa-var-earlybirds); } +.#{$fa-css-prefix}-ebay:before { content: fa-content($fa-var-ebay); } +.#{$fa-css-prefix}-edge:before { content: fa-content($fa-var-edge); } +.#{$fa-css-prefix}-edit:before { content: fa-content($fa-var-edit); } +.#{$fa-css-prefix}-eject:before { content: fa-content($fa-var-eject); } +.#{$fa-css-prefix}-elementor:before { content: fa-content($fa-var-elementor); } +.#{$fa-css-prefix}-ellipsis-h:before { content: fa-content($fa-var-ellipsis-h); } +.#{$fa-css-prefix}-ellipsis-v:before { content: fa-content($fa-var-ellipsis-v); } +.#{$fa-css-prefix}-ember:before { content: fa-content($fa-var-ember); } +.#{$fa-css-prefix}-empire:before { content: fa-content($fa-var-empire); } +.#{$fa-css-prefix}-envelope:before { content: fa-content($fa-var-envelope); } +.#{$fa-css-prefix}-envelope-open:before { content: fa-content($fa-var-envelope-open); } +.#{$fa-css-prefix}-envelope-square:before { content: fa-content($fa-var-envelope-square); } +.#{$fa-css-prefix}-envira:before { content: fa-content($fa-var-envira); } +.#{$fa-css-prefix}-equals:before { content: fa-content($fa-var-equals); } +.#{$fa-css-prefix}-eraser:before { content: fa-content($fa-var-eraser); } +.#{$fa-css-prefix}-erlang:before { content: fa-content($fa-var-erlang); } +.#{$fa-css-prefix}-ethereum:before { content: fa-content($fa-var-ethereum); } +.#{$fa-css-prefix}-etsy:before { content: fa-content($fa-var-etsy); } +.#{$fa-css-prefix}-euro-sign:before { content: fa-content($fa-var-euro-sign); } +.#{$fa-css-prefix}-exchange-alt:before { content: fa-content($fa-var-exchange-alt); } +.#{$fa-css-prefix}-exclamation:before { content: fa-content($fa-var-exclamation); } +.#{$fa-css-prefix}-exclamation-circle:before { content: fa-content($fa-var-exclamation-circle); } +.#{$fa-css-prefix}-exclamation-triangle:before { content: fa-content($fa-var-exclamation-triangle); } +.#{$fa-css-prefix}-expand:before { content: fa-content($fa-var-expand); } +.#{$fa-css-prefix}-expand-arrows-alt:before { content: fa-content($fa-var-expand-arrows-alt); } +.#{$fa-css-prefix}-expeditedssl:before { content: fa-content($fa-var-expeditedssl); } +.#{$fa-css-prefix}-external-link-alt:before { content: fa-content($fa-var-external-link-alt); } +.#{$fa-css-prefix}-external-link-square-alt:before { content: fa-content($fa-var-external-link-square-alt); } +.#{$fa-css-prefix}-eye:before { content: fa-content($fa-var-eye); } +.#{$fa-css-prefix}-eye-dropper:before { content: fa-content($fa-var-eye-dropper); } +.#{$fa-css-prefix}-eye-slash:before { content: fa-content($fa-var-eye-slash); } +.#{$fa-css-prefix}-facebook:before { content: fa-content($fa-var-facebook); } +.#{$fa-css-prefix}-facebook-f:before { content: fa-content($fa-var-facebook-f); } +.#{$fa-css-prefix}-facebook-messenger:before { content: fa-content($fa-var-facebook-messenger); } +.#{$fa-css-prefix}-facebook-square:before { content: fa-content($fa-var-facebook-square); } +.#{$fa-css-prefix}-fast-backward:before { content: fa-content($fa-var-fast-backward); } +.#{$fa-css-prefix}-fast-forward:before { content: fa-content($fa-var-fast-forward); } +.#{$fa-css-prefix}-fax:before { content: fa-content($fa-var-fax); } +.#{$fa-css-prefix}-feather:before { content: fa-content($fa-var-feather); } +.#{$fa-css-prefix}-feather-alt:before { content: fa-content($fa-var-feather-alt); } +.#{$fa-css-prefix}-female:before { content: fa-content($fa-var-female); } +.#{$fa-css-prefix}-fighter-jet:before { content: fa-content($fa-var-fighter-jet); } +.#{$fa-css-prefix}-file:before { content: fa-content($fa-var-file); } +.#{$fa-css-prefix}-file-alt:before { content: fa-content($fa-var-file-alt); } +.#{$fa-css-prefix}-file-archive:before { content: fa-content($fa-var-file-archive); } +.#{$fa-css-prefix}-file-audio:before { content: fa-content($fa-var-file-audio); } +.#{$fa-css-prefix}-file-code:before { content: fa-content($fa-var-file-code); } +.#{$fa-css-prefix}-file-contract:before { content: fa-content($fa-var-file-contract); } +.#{$fa-css-prefix}-file-download:before { content: fa-content($fa-var-file-download); } +.#{$fa-css-prefix}-file-excel:before { content: fa-content($fa-var-file-excel); } +.#{$fa-css-prefix}-file-export:before { content: fa-content($fa-var-file-export); } +.#{$fa-css-prefix}-file-image:before { content: fa-content($fa-var-file-image); } +.#{$fa-css-prefix}-file-import:before { content: fa-content($fa-var-file-import); } +.#{$fa-css-prefix}-file-invoice:before { content: fa-content($fa-var-file-invoice); } +.#{$fa-css-prefix}-file-invoice-dollar:before { content: fa-content($fa-var-file-invoice-dollar); } +.#{$fa-css-prefix}-file-medical:before { content: fa-content($fa-var-file-medical); } +.#{$fa-css-prefix}-file-medical-alt:before { content: fa-content($fa-var-file-medical-alt); } +.#{$fa-css-prefix}-file-pdf:before { content: fa-content($fa-var-file-pdf); } +.#{$fa-css-prefix}-file-powerpoint:before { content: fa-content($fa-var-file-powerpoint); } +.#{$fa-css-prefix}-file-prescription:before { content: fa-content($fa-var-file-prescription); } +.#{$fa-css-prefix}-file-signature:before { content: fa-content($fa-var-file-signature); } +.#{$fa-css-prefix}-file-upload:before { content: fa-content($fa-var-file-upload); } +.#{$fa-css-prefix}-file-video:before { content: fa-content($fa-var-file-video); } +.#{$fa-css-prefix}-file-word:before { content: fa-content($fa-var-file-word); } +.#{$fa-css-prefix}-fill:before { content: fa-content($fa-var-fill); } +.#{$fa-css-prefix}-fill-drip:before { content: fa-content($fa-var-fill-drip); } +.#{$fa-css-prefix}-film:before { content: fa-content($fa-var-film); } +.#{$fa-css-prefix}-filter:before { content: fa-content($fa-var-filter); } +.#{$fa-css-prefix}-fingerprint:before { content: fa-content($fa-var-fingerprint); } +.#{$fa-css-prefix}-fire:before { content: fa-content($fa-var-fire); } +.#{$fa-css-prefix}-fire-extinguisher:before { content: fa-content($fa-var-fire-extinguisher); } +.#{$fa-css-prefix}-firefox:before { content: fa-content($fa-var-firefox); } +.#{$fa-css-prefix}-first-aid:before { content: fa-content($fa-var-first-aid); } +.#{$fa-css-prefix}-first-order:before { content: fa-content($fa-var-first-order); } +.#{$fa-css-prefix}-first-order-alt:before { content: fa-content($fa-var-first-order-alt); } +.#{$fa-css-prefix}-firstdraft:before { content: fa-content($fa-var-firstdraft); } +.#{$fa-css-prefix}-fish:before { content: fa-content($fa-var-fish); } +.#{$fa-css-prefix}-flag:before { content: fa-content($fa-var-flag); } +.#{$fa-css-prefix}-flag-checkered:before { content: fa-content($fa-var-flag-checkered); } +.#{$fa-css-prefix}-flask:before { content: fa-content($fa-var-flask); } +.#{$fa-css-prefix}-flickr:before { content: fa-content($fa-var-flickr); } +.#{$fa-css-prefix}-flipboard:before { content: fa-content($fa-var-flipboard); } +.#{$fa-css-prefix}-flushed:before { content: fa-content($fa-var-flushed); } +.#{$fa-css-prefix}-fly:before { content: fa-content($fa-var-fly); } +.#{$fa-css-prefix}-folder:before { content: fa-content($fa-var-folder); } +.#{$fa-css-prefix}-folder-open:before { content: fa-content($fa-var-folder-open); } +.#{$fa-css-prefix}-font:before { content: fa-content($fa-var-font); } +.#{$fa-css-prefix}-font-awesome:before { content: fa-content($fa-var-font-awesome); } +.#{$fa-css-prefix}-font-awesome-alt:before { content: fa-content($fa-var-font-awesome-alt); } +.#{$fa-css-prefix}-font-awesome-flag:before { content: fa-content($fa-var-font-awesome-flag); } +.#{$fa-css-prefix}-font-awesome-logo-full:before { content: fa-content($fa-var-font-awesome-logo-full); } +.#{$fa-css-prefix}-fonticons:before { content: fa-content($fa-var-fonticons); } +.#{$fa-css-prefix}-fonticons-fi:before { content: fa-content($fa-var-fonticons-fi); } +.#{$fa-css-prefix}-football-ball:before { content: fa-content($fa-var-football-ball); } +.#{$fa-css-prefix}-fort-awesome:before { content: fa-content($fa-var-fort-awesome); } +.#{$fa-css-prefix}-fort-awesome-alt:before { content: fa-content($fa-var-fort-awesome-alt); } +.#{$fa-css-prefix}-forumbee:before { content: fa-content($fa-var-forumbee); } +.#{$fa-css-prefix}-forward:before { content: fa-content($fa-var-forward); } +.#{$fa-css-prefix}-foursquare:before { content: fa-content($fa-var-foursquare); } +.#{$fa-css-prefix}-free-code-camp:before { content: fa-content($fa-var-free-code-camp); } +.#{$fa-css-prefix}-freebsd:before { content: fa-content($fa-var-freebsd); } +.#{$fa-css-prefix}-frog:before { content: fa-content($fa-var-frog); } +.#{$fa-css-prefix}-frown:before { content: fa-content($fa-var-frown); } +.#{$fa-css-prefix}-frown-open:before { content: fa-content($fa-var-frown-open); } +.#{$fa-css-prefix}-fulcrum:before { content: fa-content($fa-var-fulcrum); } +.#{$fa-css-prefix}-futbol:before { content: fa-content($fa-var-futbol); } +.#{$fa-css-prefix}-galactic-republic:before { content: fa-content($fa-var-galactic-republic); } +.#{$fa-css-prefix}-galactic-senate:before { content: fa-content($fa-var-galactic-senate); } +.#{$fa-css-prefix}-gamepad:before { content: fa-content($fa-var-gamepad); } +.#{$fa-css-prefix}-gas-pump:before { content: fa-content($fa-var-gas-pump); } +.#{$fa-css-prefix}-gavel:before { content: fa-content($fa-var-gavel); } +.#{$fa-css-prefix}-gem:before { content: fa-content($fa-var-gem); } +.#{$fa-css-prefix}-genderless:before { content: fa-content($fa-var-genderless); } +.#{$fa-css-prefix}-get-pocket:before { content: fa-content($fa-var-get-pocket); } +.#{$fa-css-prefix}-gg:before { content: fa-content($fa-var-gg); } +.#{$fa-css-prefix}-gg-circle:before { content: fa-content($fa-var-gg-circle); } +.#{$fa-css-prefix}-gift:before { content: fa-content($fa-var-gift); } +.#{$fa-css-prefix}-git:before { content: fa-content($fa-var-git); } +.#{$fa-css-prefix}-git-square:before { content: fa-content($fa-var-git-square); } +.#{$fa-css-prefix}-github:before { content: fa-content($fa-var-github); } +.#{$fa-css-prefix}-github-alt:before { content: fa-content($fa-var-github-alt); } +.#{$fa-css-prefix}-github-square:before { content: fa-content($fa-var-github-square); } +.#{$fa-css-prefix}-gitkraken:before { content: fa-content($fa-var-gitkraken); } +.#{$fa-css-prefix}-gitlab:before { content: fa-content($fa-var-gitlab); } +.#{$fa-css-prefix}-gitter:before { content: fa-content($fa-var-gitter); } +.#{$fa-css-prefix}-glass-martini:before { content: fa-content($fa-var-glass-martini); } +.#{$fa-css-prefix}-glass-martini-alt:before { content: fa-content($fa-var-glass-martini-alt); } +.#{$fa-css-prefix}-glasses:before { content: fa-content($fa-var-glasses); } +.#{$fa-css-prefix}-glide:before { content: fa-content($fa-var-glide); } +.#{$fa-css-prefix}-glide-g:before { content: fa-content($fa-var-glide-g); } +.#{$fa-css-prefix}-globe:before { content: fa-content($fa-var-globe); } +.#{$fa-css-prefix}-globe-africa:before { content: fa-content($fa-var-globe-africa); } +.#{$fa-css-prefix}-globe-americas:before { content: fa-content($fa-var-globe-americas); } +.#{$fa-css-prefix}-globe-asia:before { content: fa-content($fa-var-globe-asia); } +.#{$fa-css-prefix}-gofore:before { content: fa-content($fa-var-gofore); } +.#{$fa-css-prefix}-golf-ball:before { content: fa-content($fa-var-golf-ball); } +.#{$fa-css-prefix}-goodreads:before { content: fa-content($fa-var-goodreads); } +.#{$fa-css-prefix}-goodreads-g:before { content: fa-content($fa-var-goodreads-g); } +.#{$fa-css-prefix}-google:before { content: fa-content($fa-var-google); } +.#{$fa-css-prefix}-google-drive:before { content: fa-content($fa-var-google-drive); } +.#{$fa-css-prefix}-google-play:before { content: fa-content($fa-var-google-play); } +.#{$fa-css-prefix}-google-plus:before { content: fa-content($fa-var-google-plus); } +.#{$fa-css-prefix}-google-plus-g:before { content: fa-content($fa-var-google-plus-g); } +.#{$fa-css-prefix}-google-plus-square:before { content: fa-content($fa-var-google-plus-square); } +.#{$fa-css-prefix}-google-wallet:before { content: fa-content($fa-var-google-wallet); } +.#{$fa-css-prefix}-graduation-cap:before { content: fa-content($fa-var-graduation-cap); } +.#{$fa-css-prefix}-gratipay:before { content: fa-content($fa-var-gratipay); } +.#{$fa-css-prefix}-grav:before { content: fa-content($fa-var-grav); } +.#{$fa-css-prefix}-greater-than:before { content: fa-content($fa-var-greater-than); } +.#{$fa-css-prefix}-greater-than-equal:before { content: fa-content($fa-var-greater-than-equal); } +.#{$fa-css-prefix}-grimace:before { content: fa-content($fa-var-grimace); } +.#{$fa-css-prefix}-grin:before { content: fa-content($fa-var-grin); } +.#{$fa-css-prefix}-grin-alt:before { content: fa-content($fa-var-grin-alt); } +.#{$fa-css-prefix}-grin-beam:before { content: fa-content($fa-var-grin-beam); } +.#{$fa-css-prefix}-grin-beam-sweat:before { content: fa-content($fa-var-grin-beam-sweat); } +.#{$fa-css-prefix}-grin-hearts:before { content: fa-content($fa-var-grin-hearts); } +.#{$fa-css-prefix}-grin-squint:before { content: fa-content($fa-var-grin-squint); } +.#{$fa-css-prefix}-grin-squint-tears:before { content: fa-content($fa-var-grin-squint-tears); } +.#{$fa-css-prefix}-grin-stars:before { content: fa-content($fa-var-grin-stars); } +.#{$fa-css-prefix}-grin-tears:before { content: fa-content($fa-var-grin-tears); } +.#{$fa-css-prefix}-grin-tongue:before { content: fa-content($fa-var-grin-tongue); } +.#{$fa-css-prefix}-grin-tongue-squint:before { content: fa-content($fa-var-grin-tongue-squint); } +.#{$fa-css-prefix}-grin-tongue-wink:before { content: fa-content($fa-var-grin-tongue-wink); } +.#{$fa-css-prefix}-grin-wink:before { content: fa-content($fa-var-grin-wink); } +.#{$fa-css-prefix}-grip-horizontal:before { content: fa-content($fa-var-grip-horizontal); } +.#{$fa-css-prefix}-grip-vertical:before { content: fa-content($fa-var-grip-vertical); } +.#{$fa-css-prefix}-gripfire:before { content: fa-content($fa-var-gripfire); } +.#{$fa-css-prefix}-grunt:before { content: fa-content($fa-var-grunt); } +.#{$fa-css-prefix}-gulp:before { content: fa-content($fa-var-gulp); } +.#{$fa-css-prefix}-h-square:before { content: fa-content($fa-var-h-square); } +.#{$fa-css-prefix}-hacker-news:before { content: fa-content($fa-var-hacker-news); } +.#{$fa-css-prefix}-hacker-news-square:before { content: fa-content($fa-var-hacker-news-square); } +.#{$fa-css-prefix}-hand-holding:before { content: fa-content($fa-var-hand-holding); } +.#{$fa-css-prefix}-hand-holding-heart:before { content: fa-content($fa-var-hand-holding-heart); } +.#{$fa-css-prefix}-hand-holding-usd:before { content: fa-content($fa-var-hand-holding-usd); } +.#{$fa-css-prefix}-hand-lizard:before { content: fa-content($fa-var-hand-lizard); } +.#{$fa-css-prefix}-hand-paper:before { content: fa-content($fa-var-hand-paper); } +.#{$fa-css-prefix}-hand-peace:before { content: fa-content($fa-var-hand-peace); } +.#{$fa-css-prefix}-hand-point-down:before { content: fa-content($fa-var-hand-point-down); } +.#{$fa-css-prefix}-hand-point-left:before { content: fa-content($fa-var-hand-point-left); } +.#{$fa-css-prefix}-hand-point-right:before { content: fa-content($fa-var-hand-point-right); } +.#{$fa-css-prefix}-hand-point-up:before { content: fa-content($fa-var-hand-point-up); } +.#{$fa-css-prefix}-hand-pointer:before { content: fa-content($fa-var-hand-pointer); } +.#{$fa-css-prefix}-hand-rock:before { content: fa-content($fa-var-hand-rock); } +.#{$fa-css-prefix}-hand-scissors:before { content: fa-content($fa-var-hand-scissors); } +.#{$fa-css-prefix}-hand-spock:before { content: fa-content($fa-var-hand-spock); } +.#{$fa-css-prefix}-hands:before { content: fa-content($fa-var-hands); } +.#{$fa-css-prefix}-hands-helping:before { content: fa-content($fa-var-hands-helping); } +.#{$fa-css-prefix}-handshake:before { content: fa-content($fa-var-handshake); } +.#{$fa-css-prefix}-hashtag:before { content: fa-content($fa-var-hashtag); } +.#{$fa-css-prefix}-hdd:before { content: fa-content($fa-var-hdd); } +.#{$fa-css-prefix}-heading:before { content: fa-content($fa-var-heading); } +.#{$fa-css-prefix}-headphones:before { content: fa-content($fa-var-headphones); } +.#{$fa-css-prefix}-headphones-alt:before { content: fa-content($fa-var-headphones-alt); } +.#{$fa-css-prefix}-headset:before { content: fa-content($fa-var-headset); } +.#{$fa-css-prefix}-heart:before { content: fa-content($fa-var-heart); } +.#{$fa-css-prefix}-heartbeat:before { content: fa-content($fa-var-heartbeat); } +.#{$fa-css-prefix}-helicopter:before { content: fa-content($fa-var-helicopter); } +.#{$fa-css-prefix}-highlighter:before { content: fa-content($fa-var-highlighter); } +.#{$fa-css-prefix}-hips:before { content: fa-content($fa-var-hips); } +.#{$fa-css-prefix}-hire-a-helper:before { content: fa-content($fa-var-hire-a-helper); } +.#{$fa-css-prefix}-history:before { content: fa-content($fa-var-history); } +.#{$fa-css-prefix}-hockey-puck:before { content: fa-content($fa-var-hockey-puck); } +.#{$fa-css-prefix}-home:before { content: fa-content($fa-var-home); } +.#{$fa-css-prefix}-hooli:before { content: fa-content($fa-var-hooli); } +.#{$fa-css-prefix}-hornbill:before { content: fa-content($fa-var-hornbill); } +.#{$fa-css-prefix}-hospital:before { content: fa-content($fa-var-hospital); } +.#{$fa-css-prefix}-hospital-alt:before { content: fa-content($fa-var-hospital-alt); } +.#{$fa-css-prefix}-hospital-symbol:before { content: fa-content($fa-var-hospital-symbol); } +.#{$fa-css-prefix}-hot-tub:before { content: fa-content($fa-var-hot-tub); } +.#{$fa-css-prefix}-hotel:before { content: fa-content($fa-var-hotel); } +.#{$fa-css-prefix}-hotjar:before { content: fa-content($fa-var-hotjar); } +.#{$fa-css-prefix}-hourglass:before { content: fa-content($fa-var-hourglass); } +.#{$fa-css-prefix}-hourglass-end:before { content: fa-content($fa-var-hourglass-end); } +.#{$fa-css-prefix}-hourglass-half:before { content: fa-content($fa-var-hourglass-half); } +.#{$fa-css-prefix}-hourglass-start:before { content: fa-content($fa-var-hourglass-start); } +.#{$fa-css-prefix}-houzz:before { content: fa-content($fa-var-houzz); } +.#{$fa-css-prefix}-html5:before { content: fa-content($fa-var-html5); } +.#{$fa-css-prefix}-hubspot:before { content: fa-content($fa-var-hubspot); } +.#{$fa-css-prefix}-i-cursor:before { content: fa-content($fa-var-i-cursor); } +.#{$fa-css-prefix}-id-badge:before { content: fa-content($fa-var-id-badge); } +.#{$fa-css-prefix}-id-card:before { content: fa-content($fa-var-id-card); } +.#{$fa-css-prefix}-id-card-alt:before { content: fa-content($fa-var-id-card-alt); } +.#{$fa-css-prefix}-image:before { content: fa-content($fa-var-image); } +.#{$fa-css-prefix}-images:before { content: fa-content($fa-var-images); } +.#{$fa-css-prefix}-imdb:before { content: fa-content($fa-var-imdb); } +.#{$fa-css-prefix}-inbox:before { content: fa-content($fa-var-inbox); } +.#{$fa-css-prefix}-indent:before { content: fa-content($fa-var-indent); } +.#{$fa-css-prefix}-industry:before { content: fa-content($fa-var-industry); } +.#{$fa-css-prefix}-infinity:before { content: fa-content($fa-var-infinity); } +.#{$fa-css-prefix}-info:before { content: fa-content($fa-var-info); } +.#{$fa-css-prefix}-info-circle:before { content: fa-content($fa-var-info-circle); } +.#{$fa-css-prefix}-instagram:before { content: fa-content($fa-var-instagram); } +.#{$fa-css-prefix}-internet-explorer:before { content: fa-content($fa-var-internet-explorer); } +.#{$fa-css-prefix}-ioxhost:before { content: fa-content($fa-var-ioxhost); } +.#{$fa-css-prefix}-italic:before { content: fa-content($fa-var-italic); } +.#{$fa-css-prefix}-itunes:before { content: fa-content($fa-var-itunes); } +.#{$fa-css-prefix}-itunes-note:before { content: fa-content($fa-var-itunes-note); } +.#{$fa-css-prefix}-java:before { content: fa-content($fa-var-java); } +.#{$fa-css-prefix}-jedi-order:before { content: fa-content($fa-var-jedi-order); } +.#{$fa-css-prefix}-jenkins:before { content: fa-content($fa-var-jenkins); } +.#{$fa-css-prefix}-joget:before { content: fa-content($fa-var-joget); } +.#{$fa-css-prefix}-joint:before { content: fa-content($fa-var-joint); } +.#{$fa-css-prefix}-joomla:before { content: fa-content($fa-var-joomla); } +.#{$fa-css-prefix}-js:before { content: fa-content($fa-var-js); } +.#{$fa-css-prefix}-js-square:before { content: fa-content($fa-var-js-square); } +.#{$fa-css-prefix}-jsfiddle:before { content: fa-content($fa-var-jsfiddle); } +.#{$fa-css-prefix}-key:before { content: fa-content($fa-var-key); } +.#{$fa-css-prefix}-keybase:before { content: fa-content($fa-var-keybase); } +.#{$fa-css-prefix}-keyboard:before { content: fa-content($fa-var-keyboard); } +.#{$fa-css-prefix}-keycdn:before { content: fa-content($fa-var-keycdn); } +.#{$fa-css-prefix}-kickstarter:before { content: fa-content($fa-var-kickstarter); } +.#{$fa-css-prefix}-kickstarter-k:before { content: fa-content($fa-var-kickstarter-k); } +.#{$fa-css-prefix}-kiss:before { content: fa-content($fa-var-kiss); } +.#{$fa-css-prefix}-kiss-beam:before { content: fa-content($fa-var-kiss-beam); } +.#{$fa-css-prefix}-kiss-wink-heart:before { content: fa-content($fa-var-kiss-wink-heart); } +.#{$fa-css-prefix}-kiwi-bird:before { content: fa-content($fa-var-kiwi-bird); } +.#{$fa-css-prefix}-korvue:before { content: fa-content($fa-var-korvue); } +.#{$fa-css-prefix}-language:before { content: fa-content($fa-var-language); } +.#{$fa-css-prefix}-laptop:before { content: fa-content($fa-var-laptop); } +.#{$fa-css-prefix}-laravel:before { content: fa-content($fa-var-laravel); } +.#{$fa-css-prefix}-lastfm:before { content: fa-content($fa-var-lastfm); } +.#{$fa-css-prefix}-lastfm-square:before { content: fa-content($fa-var-lastfm-square); } +.#{$fa-css-prefix}-laugh:before { content: fa-content($fa-var-laugh); } +.#{$fa-css-prefix}-laugh-beam:before { content: fa-content($fa-var-laugh-beam); } +.#{$fa-css-prefix}-laugh-squint:before { content: fa-content($fa-var-laugh-squint); } +.#{$fa-css-prefix}-laugh-wink:before { content: fa-content($fa-var-laugh-wink); } +.#{$fa-css-prefix}-leaf:before { content: fa-content($fa-var-leaf); } +.#{$fa-css-prefix}-leanpub:before { content: fa-content($fa-var-leanpub); } +.#{$fa-css-prefix}-lemon:before { content: fa-content($fa-var-lemon); } +.#{$fa-css-prefix}-less:before { content: fa-content($fa-var-less); } +.#{$fa-css-prefix}-less-than:before { content: fa-content($fa-var-less-than); } +.#{$fa-css-prefix}-less-than-equal:before { content: fa-content($fa-var-less-than-equal); } +.#{$fa-css-prefix}-level-down-alt:before { content: fa-content($fa-var-level-down-alt); } +.#{$fa-css-prefix}-level-up-alt:before { content: fa-content($fa-var-level-up-alt); } +.#{$fa-css-prefix}-life-ring:before { content: fa-content($fa-var-life-ring); } +.#{$fa-css-prefix}-lightbulb:before { content: fa-content($fa-var-lightbulb); } +.#{$fa-css-prefix}-line:before { content: fa-content($fa-var-line); } +.#{$fa-css-prefix}-link:before { content: fa-content($fa-var-link); } +.#{$fa-css-prefix}-linkedin:before { content: fa-content($fa-var-linkedin); } +.#{$fa-css-prefix}-linkedin-in:before { content: fa-content($fa-var-linkedin-in); } +.#{$fa-css-prefix}-linode:before { content: fa-content($fa-var-linode); } +.#{$fa-css-prefix}-linux:before { content: fa-content($fa-var-linux); } +.#{$fa-css-prefix}-lira-sign:before { content: fa-content($fa-var-lira-sign); } +.#{$fa-css-prefix}-list:before { content: fa-content($fa-var-list); } +.#{$fa-css-prefix}-list-alt:before { content: fa-content($fa-var-list-alt); } +.#{$fa-css-prefix}-list-ol:before { content: fa-content($fa-var-list-ol); } +.#{$fa-css-prefix}-list-ul:before { content: fa-content($fa-var-list-ul); } +.#{$fa-css-prefix}-location-arrow:before { content: fa-content($fa-var-location-arrow); } +.#{$fa-css-prefix}-lock:before { content: fa-content($fa-var-lock); } +.#{$fa-css-prefix}-lock-open:before { content: fa-content($fa-var-lock-open); } +.#{$fa-css-prefix}-long-arrow-alt-down:before { content: fa-content($fa-var-long-arrow-alt-down); } +.#{$fa-css-prefix}-long-arrow-alt-left:before { content: fa-content($fa-var-long-arrow-alt-left); } +.#{$fa-css-prefix}-long-arrow-alt-right:before { content: fa-content($fa-var-long-arrow-alt-right); } +.#{$fa-css-prefix}-long-arrow-alt-up:before { content: fa-content($fa-var-long-arrow-alt-up); } +.#{$fa-css-prefix}-low-vision:before { content: fa-content($fa-var-low-vision); } +.#{$fa-css-prefix}-luggage-cart:before { content: fa-content($fa-var-luggage-cart); } +.#{$fa-css-prefix}-lyft:before { content: fa-content($fa-var-lyft); } +.#{$fa-css-prefix}-magento:before { content: fa-content($fa-var-magento); } +.#{$fa-css-prefix}-magic:before { content: fa-content($fa-var-magic); } +.#{$fa-css-prefix}-magnet:before { content: fa-content($fa-var-magnet); } +.#{$fa-css-prefix}-mailchimp:before { content: fa-content($fa-var-mailchimp); } +.#{$fa-css-prefix}-male:before { content: fa-content($fa-var-male); } +.#{$fa-css-prefix}-mandalorian:before { content: fa-content($fa-var-mandalorian); } +.#{$fa-css-prefix}-map:before { content: fa-content($fa-var-map); } +.#{$fa-css-prefix}-map-marked:before { content: fa-content($fa-var-map-marked); } +.#{$fa-css-prefix}-map-marked-alt:before { content: fa-content($fa-var-map-marked-alt); } +.#{$fa-css-prefix}-map-marker:before { content: fa-content($fa-var-map-marker); } +.#{$fa-css-prefix}-map-marker-alt:before { content: fa-content($fa-var-map-marker-alt); } +.#{$fa-css-prefix}-map-pin:before { content: fa-content($fa-var-map-pin); } +.#{$fa-css-prefix}-map-signs:before { content: fa-content($fa-var-map-signs); } +.#{$fa-css-prefix}-marker:before { content: fa-content($fa-var-marker); } +.#{$fa-css-prefix}-mars:before { content: fa-content($fa-var-mars); } +.#{$fa-css-prefix}-mars-double:before { content: fa-content($fa-var-mars-double); } +.#{$fa-css-prefix}-mars-stroke:before { content: fa-content($fa-var-mars-stroke); } +.#{$fa-css-prefix}-mars-stroke-h:before { content: fa-content($fa-var-mars-stroke-h); } +.#{$fa-css-prefix}-mars-stroke-v:before { content: fa-content($fa-var-mars-stroke-v); } +.#{$fa-css-prefix}-mastodon:before { content: fa-content($fa-var-mastodon); } +.#{$fa-css-prefix}-maxcdn:before { content: fa-content($fa-var-maxcdn); } +.#{$fa-css-prefix}-medal:before { content: fa-content($fa-var-medal); } +.#{$fa-css-prefix}-medapps:before { content: fa-content($fa-var-medapps); } +.#{$fa-css-prefix}-medium:before { content: fa-content($fa-var-medium); } +.#{$fa-css-prefix}-medium-m:before { content: fa-content($fa-var-medium-m); } +.#{$fa-css-prefix}-medkit:before { content: fa-content($fa-var-medkit); } +.#{$fa-css-prefix}-medrt:before { content: fa-content($fa-var-medrt); } +.#{$fa-css-prefix}-meetup:before { content: fa-content($fa-var-meetup); } +.#{$fa-css-prefix}-megaport:before { content: fa-content($fa-var-megaport); } +.#{$fa-css-prefix}-meh:before { content: fa-content($fa-var-meh); } +.#{$fa-css-prefix}-meh-blank:before { content: fa-content($fa-var-meh-blank); } +.#{$fa-css-prefix}-meh-rolling-eyes:before { content: fa-content($fa-var-meh-rolling-eyes); } +.#{$fa-css-prefix}-memory:before { content: fa-content($fa-var-memory); } +.#{$fa-css-prefix}-mercury:before { content: fa-content($fa-var-mercury); } +.#{$fa-css-prefix}-microchip:before { content: fa-content($fa-var-microchip); } +.#{$fa-css-prefix}-microphone:before { content: fa-content($fa-var-microphone); } +.#{$fa-css-prefix}-microphone-alt:before { content: fa-content($fa-var-microphone-alt); } +.#{$fa-css-prefix}-microphone-alt-slash:before { content: fa-content($fa-var-microphone-alt-slash); } +.#{$fa-css-prefix}-microphone-slash:before { content: fa-content($fa-var-microphone-slash); } +.#{$fa-css-prefix}-microsoft:before { content: fa-content($fa-var-microsoft); } +.#{$fa-css-prefix}-minus:before { content: fa-content($fa-var-minus); } +.#{$fa-css-prefix}-minus-circle:before { content: fa-content($fa-var-minus-circle); } +.#{$fa-css-prefix}-minus-square:before { content: fa-content($fa-var-minus-square); } +.#{$fa-css-prefix}-mix:before { content: fa-content($fa-var-mix); } +.#{$fa-css-prefix}-mixcloud:before { content: fa-content($fa-var-mixcloud); } +.#{$fa-css-prefix}-mizuni:before { content: fa-content($fa-var-mizuni); } +.#{$fa-css-prefix}-mobile:before { content: fa-content($fa-var-mobile); } +.#{$fa-css-prefix}-mobile-alt:before { content: fa-content($fa-var-mobile-alt); } +.#{$fa-css-prefix}-modx:before { content: fa-content($fa-var-modx); } +.#{$fa-css-prefix}-monero:before { content: fa-content($fa-var-monero); } +.#{$fa-css-prefix}-money-bill:before { content: fa-content($fa-var-money-bill); } +.#{$fa-css-prefix}-money-bill-alt:before { content: fa-content($fa-var-money-bill-alt); } +.#{$fa-css-prefix}-money-bill-wave:before { content: fa-content($fa-var-money-bill-wave); } +.#{$fa-css-prefix}-money-bill-wave-alt:before { content: fa-content($fa-var-money-bill-wave-alt); } +.#{$fa-css-prefix}-money-check:before { content: fa-content($fa-var-money-check); } +.#{$fa-css-prefix}-money-check-alt:before { content: fa-content($fa-var-money-check-alt); } +.#{$fa-css-prefix}-monument:before { content: fa-content($fa-var-monument); } +.#{$fa-css-prefix}-moon:before { content: fa-content($fa-var-moon); } +.#{$fa-css-prefix}-mortar-pestle:before { content: fa-content($fa-var-mortar-pestle); } +.#{$fa-css-prefix}-motorcycle:before { content: fa-content($fa-var-motorcycle); } +.#{$fa-css-prefix}-mouse-pointer:before { content: fa-content($fa-var-mouse-pointer); } +.#{$fa-css-prefix}-music:before { content: fa-content($fa-var-music); } +.#{$fa-css-prefix}-napster:before { content: fa-content($fa-var-napster); } +.#{$fa-css-prefix}-neuter:before { content: fa-content($fa-var-neuter); } +.#{$fa-css-prefix}-newspaper:before { content: fa-content($fa-var-newspaper); } +.#{$fa-css-prefix}-nimblr:before { content: fa-content($fa-var-nimblr); } +.#{$fa-css-prefix}-nintendo-switch:before { content: fa-content($fa-var-nintendo-switch); } +.#{$fa-css-prefix}-node:before { content: fa-content($fa-var-node); } +.#{$fa-css-prefix}-node-js:before { content: fa-content($fa-var-node-js); } +.#{$fa-css-prefix}-not-equal:before { content: fa-content($fa-var-not-equal); } +.#{$fa-css-prefix}-notes-medical:before { content: fa-content($fa-var-notes-medical); } +.#{$fa-css-prefix}-npm:before { content: fa-content($fa-var-npm); } +.#{$fa-css-prefix}-ns8:before { content: fa-content($fa-var-ns8); } +.#{$fa-css-prefix}-nutritionix:before { content: fa-content($fa-var-nutritionix); } +.#{$fa-css-prefix}-object-group:before { content: fa-content($fa-var-object-group); } +.#{$fa-css-prefix}-object-ungroup:before { content: fa-content($fa-var-object-ungroup); } +.#{$fa-css-prefix}-odnoklassniki:before { content: fa-content($fa-var-odnoklassniki); } +.#{$fa-css-prefix}-odnoklassniki-square:before { content: fa-content($fa-var-odnoklassniki-square); } +.#{$fa-css-prefix}-old-republic:before { content: fa-content($fa-var-old-republic); } +.#{$fa-css-prefix}-opencart:before { content: fa-content($fa-var-opencart); } +.#{$fa-css-prefix}-openid:before { content: fa-content($fa-var-openid); } +.#{$fa-css-prefix}-opera:before { content: fa-content($fa-var-opera); } +.#{$fa-css-prefix}-optin-monster:before { content: fa-content($fa-var-optin-monster); } +.#{$fa-css-prefix}-osi:before { content: fa-content($fa-var-osi); } +.#{$fa-css-prefix}-outdent:before { content: fa-content($fa-var-outdent); } +.#{$fa-css-prefix}-page4:before { content: fa-content($fa-var-page4); } +.#{$fa-css-prefix}-pagelines:before { content: fa-content($fa-var-pagelines); } +.#{$fa-css-prefix}-paint-brush:before { content: fa-content($fa-var-paint-brush); } +.#{$fa-css-prefix}-paint-roller:before { content: fa-content($fa-var-paint-roller); } +.#{$fa-css-prefix}-palette:before { content: fa-content($fa-var-palette); } +.#{$fa-css-prefix}-palfed:before { content: fa-content($fa-var-palfed); } +.#{$fa-css-prefix}-pallet:before { content: fa-content($fa-var-pallet); } +.#{$fa-css-prefix}-paper-plane:before { content: fa-content($fa-var-paper-plane); } +.#{$fa-css-prefix}-paperclip:before { content: fa-content($fa-var-paperclip); } +.#{$fa-css-prefix}-parachute-box:before { content: fa-content($fa-var-parachute-box); } +.#{$fa-css-prefix}-paragraph:before { content: fa-content($fa-var-paragraph); } +.#{$fa-css-prefix}-parking:before { content: fa-content($fa-var-parking); } +.#{$fa-css-prefix}-passport:before { content: fa-content($fa-var-passport); } +.#{$fa-css-prefix}-paste:before { content: fa-content($fa-var-paste); } +.#{$fa-css-prefix}-patreon:before { content: fa-content($fa-var-patreon); } +.#{$fa-css-prefix}-pause:before { content: fa-content($fa-var-pause); } +.#{$fa-css-prefix}-pause-circle:before { content: fa-content($fa-var-pause-circle); } +.#{$fa-css-prefix}-paw:before { content: fa-content($fa-var-paw); } +.#{$fa-css-prefix}-paypal:before { content: fa-content($fa-var-paypal); } +.#{$fa-css-prefix}-pen:before { content: fa-content($fa-var-pen); } +.#{$fa-css-prefix}-pen-alt:before { content: fa-content($fa-var-pen-alt); } +.#{$fa-css-prefix}-pen-fancy:before { content: fa-content($fa-var-pen-fancy); } +.#{$fa-css-prefix}-pen-nib:before { content: fa-content($fa-var-pen-nib); } +.#{$fa-css-prefix}-pen-square:before { content: fa-content($fa-var-pen-square); } +.#{$fa-css-prefix}-pencil-alt:before { content: fa-content($fa-var-pencil-alt); } +.#{$fa-css-prefix}-pencil-ruler:before { content: fa-content($fa-var-pencil-ruler); } +.#{$fa-css-prefix}-people-carry:before { content: fa-content($fa-var-people-carry); } +.#{$fa-css-prefix}-percent:before { content: fa-content($fa-var-percent); } +.#{$fa-css-prefix}-percentage:before { content: fa-content($fa-var-percentage); } +.#{$fa-css-prefix}-periscope:before { content: fa-content($fa-var-periscope); } +.#{$fa-css-prefix}-phabricator:before { content: fa-content($fa-var-phabricator); } +.#{$fa-css-prefix}-phoenix-framework:before { content: fa-content($fa-var-phoenix-framework); } +.#{$fa-css-prefix}-phoenix-squadron:before { content: fa-content($fa-var-phoenix-squadron); } +.#{$fa-css-prefix}-phone:before { content: fa-content($fa-var-phone); } +.#{$fa-css-prefix}-phone-slash:before { content: fa-content($fa-var-phone-slash); } +.#{$fa-css-prefix}-phone-square:before { content: fa-content($fa-var-phone-square); } +.#{$fa-css-prefix}-phone-volume:before { content: fa-content($fa-var-phone-volume); } +.#{$fa-css-prefix}-php:before { content: fa-content($fa-var-php); } +.#{$fa-css-prefix}-pied-piper:before { content: fa-content($fa-var-pied-piper); } +.#{$fa-css-prefix}-pied-piper-alt:before { content: fa-content($fa-var-pied-piper-alt); } +.#{$fa-css-prefix}-pied-piper-hat:before { content: fa-content($fa-var-pied-piper-hat); } +.#{$fa-css-prefix}-pied-piper-pp:before { content: fa-content($fa-var-pied-piper-pp); } +.#{$fa-css-prefix}-piggy-bank:before { content: fa-content($fa-var-piggy-bank); } +.#{$fa-css-prefix}-pills:before { content: fa-content($fa-var-pills); } +.#{$fa-css-prefix}-pinterest:before { content: fa-content($fa-var-pinterest); } +.#{$fa-css-prefix}-pinterest-p:before { content: fa-content($fa-var-pinterest-p); } +.#{$fa-css-prefix}-pinterest-square:before { content: fa-content($fa-var-pinterest-square); } +.#{$fa-css-prefix}-plane:before { content: fa-content($fa-var-plane); } +.#{$fa-css-prefix}-plane-arrival:before { content: fa-content($fa-var-plane-arrival); } +.#{$fa-css-prefix}-plane-departure:before { content: fa-content($fa-var-plane-departure); } +.#{$fa-css-prefix}-play:before { content: fa-content($fa-var-play); } +.#{$fa-css-prefix}-play-circle:before { content: fa-content($fa-var-play-circle); } +.#{$fa-css-prefix}-playstation:before { content: fa-content($fa-var-playstation); } +.#{$fa-css-prefix}-plug:before { content: fa-content($fa-var-plug); } +.#{$fa-css-prefix}-plus:before { content: fa-content($fa-var-plus); } +.#{$fa-css-prefix}-plus-circle:before { content: fa-content($fa-var-plus-circle); } +.#{$fa-css-prefix}-plus-square:before { content: fa-content($fa-var-plus-square); } +.#{$fa-css-prefix}-podcast:before { content: fa-content($fa-var-podcast); } +.#{$fa-css-prefix}-poo:before { content: fa-content($fa-var-poo); } +.#{$fa-css-prefix}-portrait:before { content: fa-content($fa-var-portrait); } +.#{$fa-css-prefix}-pound-sign:before { content: fa-content($fa-var-pound-sign); } +.#{$fa-css-prefix}-power-off:before { content: fa-content($fa-var-power-off); } +.#{$fa-css-prefix}-prescription:before { content: fa-content($fa-var-prescription); } +.#{$fa-css-prefix}-prescription-bottle:before { content: fa-content($fa-var-prescription-bottle); } +.#{$fa-css-prefix}-prescription-bottle-alt:before { content: fa-content($fa-var-prescription-bottle-alt); } +.#{$fa-css-prefix}-print:before { content: fa-content($fa-var-print); } +.#{$fa-css-prefix}-procedures:before { content: fa-content($fa-var-procedures); } +.#{$fa-css-prefix}-product-hunt:before { content: fa-content($fa-var-product-hunt); } +.#{$fa-css-prefix}-project-diagram:before { content: fa-content($fa-var-project-diagram); } +.#{$fa-css-prefix}-pushed:before { content: fa-content($fa-var-pushed); } +.#{$fa-css-prefix}-puzzle-piece:before { content: fa-content($fa-var-puzzle-piece); } +.#{$fa-css-prefix}-python:before { content: fa-content($fa-var-python); } +.#{$fa-css-prefix}-qq:before { content: fa-content($fa-var-qq); } +.#{$fa-css-prefix}-qrcode:before { content: fa-content($fa-var-qrcode); } +.#{$fa-css-prefix}-question:before { content: fa-content($fa-var-question); } +.#{$fa-css-prefix}-question-circle:before { content: fa-content($fa-var-question-circle); } +.#{$fa-css-prefix}-quidditch:before { content: fa-content($fa-var-quidditch); } +.#{$fa-css-prefix}-quinscape:before { content: fa-content($fa-var-quinscape); } +.#{$fa-css-prefix}-quora:before { content: fa-content($fa-var-quora); } +.#{$fa-css-prefix}-quote-left:before { content: fa-content($fa-var-quote-left); } +.#{$fa-css-prefix}-quote-right:before { content: fa-content($fa-var-quote-right); } +.#{$fa-css-prefix}-r-project:before { content: fa-content($fa-var-r-project); } +.#{$fa-css-prefix}-random:before { content: fa-content($fa-var-random); } +.#{$fa-css-prefix}-ravelry:before { content: fa-content($fa-var-ravelry); } +.#{$fa-css-prefix}-react:before { content: fa-content($fa-var-react); } +.#{$fa-css-prefix}-readme:before { content: fa-content($fa-var-readme); } +.#{$fa-css-prefix}-rebel:before { content: fa-content($fa-var-rebel); } +.#{$fa-css-prefix}-receipt:before { content: fa-content($fa-var-receipt); } +.#{$fa-css-prefix}-recycle:before { content: fa-content($fa-var-recycle); } +.#{$fa-css-prefix}-red-river:before { content: fa-content($fa-var-red-river); } +.#{$fa-css-prefix}-reddit:before { content: fa-content($fa-var-reddit); } +.#{$fa-css-prefix}-reddit-alien:before { content: fa-content($fa-var-reddit-alien); } +.#{$fa-css-prefix}-reddit-square:before { content: fa-content($fa-var-reddit-square); } +.#{$fa-css-prefix}-redo:before { content: fa-content($fa-var-redo); } +.#{$fa-css-prefix}-redo-alt:before { content: fa-content($fa-var-redo-alt); } +.#{$fa-css-prefix}-registered:before { content: fa-content($fa-var-registered); } +.#{$fa-css-prefix}-rendact:before { content: fa-content($fa-var-rendact); } +.#{$fa-css-prefix}-renren:before { content: fa-content($fa-var-renren); } +.#{$fa-css-prefix}-reply:before { content: fa-content($fa-var-reply); } +.#{$fa-css-prefix}-reply-all:before { content: fa-content($fa-var-reply-all); } +.#{$fa-css-prefix}-replyd:before { content: fa-content($fa-var-replyd); } +.#{$fa-css-prefix}-researchgate:before { content: fa-content($fa-var-researchgate); } +.#{$fa-css-prefix}-resolving:before { content: fa-content($fa-var-resolving); } +.#{$fa-css-prefix}-retweet:before { content: fa-content($fa-var-retweet); } +.#{$fa-css-prefix}-rev:before { content: fa-content($fa-var-rev); } +.#{$fa-css-prefix}-ribbon:before { content: fa-content($fa-var-ribbon); } +.#{$fa-css-prefix}-road:before { content: fa-content($fa-var-road); } +.#{$fa-css-prefix}-robot:before { content: fa-content($fa-var-robot); } +.#{$fa-css-prefix}-rocket:before { content: fa-content($fa-var-rocket); } +.#{$fa-css-prefix}-rocketchat:before { content: fa-content($fa-var-rocketchat); } +.#{$fa-css-prefix}-rockrms:before { content: fa-content($fa-var-rockrms); } +.#{$fa-css-prefix}-rss:before { content: fa-content($fa-var-rss); } +.#{$fa-css-prefix}-rss-square:before { content: fa-content($fa-var-rss-square); } +.#{$fa-css-prefix}-ruble-sign:before { content: fa-content($fa-var-ruble-sign); } +.#{$fa-css-prefix}-ruler:before { content: fa-content($fa-var-ruler); } +.#{$fa-css-prefix}-ruler-combined:before { content: fa-content($fa-var-ruler-combined); } +.#{$fa-css-prefix}-ruler-horizontal:before { content: fa-content($fa-var-ruler-horizontal); } +.#{$fa-css-prefix}-ruler-vertical:before { content: fa-content($fa-var-ruler-vertical); } +.#{$fa-css-prefix}-rupee-sign:before { content: fa-content($fa-var-rupee-sign); } +.#{$fa-css-prefix}-sad-cry:before { content: fa-content($fa-var-sad-cry); } +.#{$fa-css-prefix}-sad-tear:before { content: fa-content($fa-var-sad-tear); } +.#{$fa-css-prefix}-safari:before { content: fa-content($fa-var-safari); } +.#{$fa-css-prefix}-sass:before { content: fa-content($fa-var-sass); } +.#{$fa-css-prefix}-save:before { content: fa-content($fa-var-save); } +.#{$fa-css-prefix}-schlix:before { content: fa-content($fa-var-schlix); } +.#{$fa-css-prefix}-school:before { content: fa-content($fa-var-school); } +.#{$fa-css-prefix}-screwdriver:before { content: fa-content($fa-var-screwdriver); } +.#{$fa-css-prefix}-scribd:before { content: fa-content($fa-var-scribd); } +.#{$fa-css-prefix}-search:before { content: fa-content($fa-var-search); } +.#{$fa-css-prefix}-search-minus:before { content: fa-content($fa-var-search-minus); } +.#{$fa-css-prefix}-search-plus:before { content: fa-content($fa-var-search-plus); } +.#{$fa-css-prefix}-searchengin:before { content: fa-content($fa-var-searchengin); } +.#{$fa-css-prefix}-seedling:before { content: fa-content($fa-var-seedling); } +.#{$fa-css-prefix}-sellcast:before { content: fa-content($fa-var-sellcast); } +.#{$fa-css-prefix}-sellsy:before { content: fa-content($fa-var-sellsy); } +.#{$fa-css-prefix}-server:before { content: fa-content($fa-var-server); } +.#{$fa-css-prefix}-servicestack:before { content: fa-content($fa-var-servicestack); } +.#{$fa-css-prefix}-share:before { content: fa-content($fa-var-share); } +.#{$fa-css-prefix}-share-alt:before { content: fa-content($fa-var-share-alt); } +.#{$fa-css-prefix}-share-alt-square:before { content: fa-content($fa-var-share-alt-square); } +.#{$fa-css-prefix}-share-square:before { content: fa-content($fa-var-share-square); } +.#{$fa-css-prefix}-shekel-sign:before { content: fa-content($fa-var-shekel-sign); } +.#{$fa-css-prefix}-shield-alt:before { content: fa-content($fa-var-shield-alt); } +.#{$fa-css-prefix}-ship:before { content: fa-content($fa-var-ship); } +.#{$fa-css-prefix}-shipping-fast:before { content: fa-content($fa-var-shipping-fast); } +.#{$fa-css-prefix}-shirtsinbulk:before { content: fa-content($fa-var-shirtsinbulk); } +.#{$fa-css-prefix}-shoe-prints:before { content: fa-content($fa-var-shoe-prints); } +.#{$fa-css-prefix}-shopping-bag:before { content: fa-content($fa-var-shopping-bag); } +.#{$fa-css-prefix}-shopping-basket:before { content: fa-content($fa-var-shopping-basket); } +.#{$fa-css-prefix}-shopping-cart:before { content: fa-content($fa-var-shopping-cart); } +.#{$fa-css-prefix}-shopware:before { content: fa-content($fa-var-shopware); } +.#{$fa-css-prefix}-shower:before { content: fa-content($fa-var-shower); } +.#{$fa-css-prefix}-shuttle-van:before { content: fa-content($fa-var-shuttle-van); } +.#{$fa-css-prefix}-sign:before { content: fa-content($fa-var-sign); } +.#{$fa-css-prefix}-sign-in-alt:before { content: fa-content($fa-var-sign-in-alt); } +.#{$fa-css-prefix}-sign-language:before { content: fa-content($fa-var-sign-language); } +.#{$fa-css-prefix}-sign-out-alt:before { content: fa-content($fa-var-sign-out-alt); } +.#{$fa-css-prefix}-signal:before { content: fa-content($fa-var-signal); } +.#{$fa-css-prefix}-signature:before { content: fa-content($fa-var-signature); } +.#{$fa-css-prefix}-simplybuilt:before { content: fa-content($fa-var-simplybuilt); } +.#{$fa-css-prefix}-sistrix:before { content: fa-content($fa-var-sistrix); } +.#{$fa-css-prefix}-sitemap:before { content: fa-content($fa-var-sitemap); } +.#{$fa-css-prefix}-sith:before { content: fa-content($fa-var-sith); } +.#{$fa-css-prefix}-skull:before { content: fa-content($fa-var-skull); } +.#{$fa-css-prefix}-skyatlas:before { content: fa-content($fa-var-skyatlas); } +.#{$fa-css-prefix}-skype:before { content: fa-content($fa-var-skype); } +.#{$fa-css-prefix}-slack:before { content: fa-content($fa-var-slack); } +.#{$fa-css-prefix}-slack-hash:before { content: fa-content($fa-var-slack-hash); } +.#{$fa-css-prefix}-sliders-h:before { content: fa-content($fa-var-sliders-h); } +.#{$fa-css-prefix}-slideshare:before { content: fa-content($fa-var-slideshare); } +.#{$fa-css-prefix}-smile:before { content: fa-content($fa-var-smile); } +.#{$fa-css-prefix}-smile-beam:before { content: fa-content($fa-var-smile-beam); } +.#{$fa-css-prefix}-smile-wink:before { content: fa-content($fa-var-smile-wink); } +.#{$fa-css-prefix}-smoking:before { content: fa-content($fa-var-smoking); } +.#{$fa-css-prefix}-smoking-ban:before { content: fa-content($fa-var-smoking-ban); } +.#{$fa-css-prefix}-snapchat:before { content: fa-content($fa-var-snapchat); } +.#{$fa-css-prefix}-snapchat-ghost:before { content: fa-content($fa-var-snapchat-ghost); } +.#{$fa-css-prefix}-snapchat-square:before { content: fa-content($fa-var-snapchat-square); } +.#{$fa-css-prefix}-snowflake:before { content: fa-content($fa-var-snowflake); } +.#{$fa-css-prefix}-solar-panel:before { content: fa-content($fa-var-solar-panel); } +.#{$fa-css-prefix}-sort:before { content: fa-content($fa-var-sort); } +.#{$fa-css-prefix}-sort-alpha-down:before { content: fa-content($fa-var-sort-alpha-down); } +.#{$fa-css-prefix}-sort-alpha-up:before { content: fa-content($fa-var-sort-alpha-up); } +.#{$fa-css-prefix}-sort-amount-down:before { content: fa-content($fa-var-sort-amount-down); } +.#{$fa-css-prefix}-sort-amount-up:before { content: fa-content($fa-var-sort-amount-up); } +.#{$fa-css-prefix}-sort-down:before { content: fa-content($fa-var-sort-down); } +.#{$fa-css-prefix}-sort-numeric-down:before { content: fa-content($fa-var-sort-numeric-down); } +.#{$fa-css-prefix}-sort-numeric-up:before { content: fa-content($fa-var-sort-numeric-up); } +.#{$fa-css-prefix}-sort-up:before { content: fa-content($fa-var-sort-up); } +.#{$fa-css-prefix}-soundcloud:before { content: fa-content($fa-var-soundcloud); } +.#{$fa-css-prefix}-spa:before { content: fa-content($fa-var-spa); } +.#{$fa-css-prefix}-space-shuttle:before { content: fa-content($fa-var-space-shuttle); } +.#{$fa-css-prefix}-speakap:before { content: fa-content($fa-var-speakap); } +.#{$fa-css-prefix}-spinner:before { content: fa-content($fa-var-spinner); } +.#{$fa-css-prefix}-splotch:before { content: fa-content($fa-var-splotch); } +.#{$fa-css-prefix}-spotify:before { content: fa-content($fa-var-spotify); } +.#{$fa-css-prefix}-spray-can:before { content: fa-content($fa-var-spray-can); } +.#{$fa-css-prefix}-square:before { content: fa-content($fa-var-square); } +.#{$fa-css-prefix}-square-full:before { content: fa-content($fa-var-square-full); } +.#{$fa-css-prefix}-squarespace:before { content: fa-content($fa-var-squarespace); } +.#{$fa-css-prefix}-stack-exchange:before { content: fa-content($fa-var-stack-exchange); } +.#{$fa-css-prefix}-stack-overflow:before { content: fa-content($fa-var-stack-overflow); } +.#{$fa-css-prefix}-stamp:before { content: fa-content($fa-var-stamp); } +.#{$fa-css-prefix}-star:before { content: fa-content($fa-var-star); } +.#{$fa-css-prefix}-star-half:before { content: fa-content($fa-var-star-half); } +.#{$fa-css-prefix}-star-half-alt:before { content: fa-content($fa-var-star-half-alt); } +.#{$fa-css-prefix}-staylinked:before { content: fa-content($fa-var-staylinked); } +.#{$fa-css-prefix}-steam:before { content: fa-content($fa-var-steam); } +.#{$fa-css-prefix}-steam-square:before { content: fa-content($fa-var-steam-square); } +.#{$fa-css-prefix}-steam-symbol:before { content: fa-content($fa-var-steam-symbol); } +.#{$fa-css-prefix}-step-backward:before { content: fa-content($fa-var-step-backward); } +.#{$fa-css-prefix}-step-forward:before { content: fa-content($fa-var-step-forward); } +.#{$fa-css-prefix}-stethoscope:before { content: fa-content($fa-var-stethoscope); } +.#{$fa-css-prefix}-sticker-mule:before { content: fa-content($fa-var-sticker-mule); } +.#{$fa-css-prefix}-sticky-note:before { content: fa-content($fa-var-sticky-note); } +.#{$fa-css-prefix}-stop:before { content: fa-content($fa-var-stop); } +.#{$fa-css-prefix}-stop-circle:before { content: fa-content($fa-var-stop-circle); } +.#{$fa-css-prefix}-stopwatch:before { content: fa-content($fa-var-stopwatch); } +.#{$fa-css-prefix}-store:before { content: fa-content($fa-var-store); } +.#{$fa-css-prefix}-store-alt:before { content: fa-content($fa-var-store-alt); } +.#{$fa-css-prefix}-strava:before { content: fa-content($fa-var-strava); } +.#{$fa-css-prefix}-stream:before { content: fa-content($fa-var-stream); } +.#{$fa-css-prefix}-street-view:before { content: fa-content($fa-var-street-view); } +.#{$fa-css-prefix}-strikethrough:before { content: fa-content($fa-var-strikethrough); } +.#{$fa-css-prefix}-stripe:before { content: fa-content($fa-var-stripe); } +.#{$fa-css-prefix}-stripe-s:before { content: fa-content($fa-var-stripe-s); } +.#{$fa-css-prefix}-stroopwafel:before { content: fa-content($fa-var-stroopwafel); } +.#{$fa-css-prefix}-studiovinari:before { content: fa-content($fa-var-studiovinari); } +.#{$fa-css-prefix}-stumbleupon:before { content: fa-content($fa-var-stumbleupon); } +.#{$fa-css-prefix}-stumbleupon-circle:before { content: fa-content($fa-var-stumbleupon-circle); } +.#{$fa-css-prefix}-subscript:before { content: fa-content($fa-var-subscript); } +.#{$fa-css-prefix}-subway:before { content: fa-content($fa-var-subway); } +.#{$fa-css-prefix}-suitcase:before { content: fa-content($fa-var-suitcase); } +.#{$fa-css-prefix}-suitcase-rolling:before { content: fa-content($fa-var-suitcase-rolling); } +.#{$fa-css-prefix}-sun:before { content: fa-content($fa-var-sun); } +.#{$fa-css-prefix}-superpowers:before { content: fa-content($fa-var-superpowers); } +.#{$fa-css-prefix}-superscript:before { content: fa-content($fa-var-superscript); } +.#{$fa-css-prefix}-supple:before { content: fa-content($fa-var-supple); } +.#{$fa-css-prefix}-surprise:before { content: fa-content($fa-var-surprise); } +.#{$fa-css-prefix}-swatchbook:before { content: fa-content($fa-var-swatchbook); } +.#{$fa-css-prefix}-swimmer:before { content: fa-content($fa-var-swimmer); } +.#{$fa-css-prefix}-swimming-pool:before { content: fa-content($fa-var-swimming-pool); } +.#{$fa-css-prefix}-sync:before { content: fa-content($fa-var-sync); } +.#{$fa-css-prefix}-sync-alt:before { content: fa-content($fa-var-sync-alt); } +.#{$fa-css-prefix}-syringe:before { content: fa-content($fa-var-syringe); } +.#{$fa-css-prefix}-table:before { content: fa-content($fa-var-table); } +.#{$fa-css-prefix}-table-tennis:before { content: fa-content($fa-var-table-tennis); } +.#{$fa-css-prefix}-tablet:before { content: fa-content($fa-var-tablet); } +.#{$fa-css-prefix}-tablet-alt:before { content: fa-content($fa-var-tablet-alt); } +.#{$fa-css-prefix}-tablets:before { content: fa-content($fa-var-tablets); } +.#{$fa-css-prefix}-tachometer-alt:before { content: fa-content($fa-var-tachometer-alt); } +.#{$fa-css-prefix}-tag:before { content: fa-content($fa-var-tag); } +.#{$fa-css-prefix}-tags:before { content: fa-content($fa-var-tags); } +.#{$fa-css-prefix}-tape:before { content: fa-content($fa-var-tape); } +.#{$fa-css-prefix}-tasks:before { content: fa-content($fa-var-tasks); } +.#{$fa-css-prefix}-taxi:before { content: fa-content($fa-var-taxi); } +.#{$fa-css-prefix}-teamspeak:before { content: fa-content($fa-var-teamspeak); } +.#{$fa-css-prefix}-telegram:before { content: fa-content($fa-var-telegram); } +.#{$fa-css-prefix}-telegram-plane:before { content: fa-content($fa-var-telegram-plane); } +.#{$fa-css-prefix}-tencent-weibo:before { content: fa-content($fa-var-tencent-weibo); } +.#{$fa-css-prefix}-terminal:before { content: fa-content($fa-var-terminal); } +.#{$fa-css-prefix}-text-height:before { content: fa-content($fa-var-text-height); } +.#{$fa-css-prefix}-text-width:before { content: fa-content($fa-var-text-width); } +.#{$fa-css-prefix}-th:before { content: fa-content($fa-var-th); } +.#{$fa-css-prefix}-th-large:before { content: fa-content($fa-var-th-large); } +.#{$fa-css-prefix}-th-list:before { content: fa-content($fa-var-th-list); } +.#{$fa-css-prefix}-themeco:before { content: fa-content($fa-var-themeco); } +.#{$fa-css-prefix}-themeisle:before { content: fa-content($fa-var-themeisle); } +.#{$fa-css-prefix}-thermometer:before { content: fa-content($fa-var-thermometer); } +.#{$fa-css-prefix}-thermometer-empty:before { content: fa-content($fa-var-thermometer-empty); } +.#{$fa-css-prefix}-thermometer-full:before { content: fa-content($fa-var-thermometer-full); } +.#{$fa-css-prefix}-thermometer-half:before { content: fa-content($fa-var-thermometer-half); } +.#{$fa-css-prefix}-thermometer-quarter:before { content: fa-content($fa-var-thermometer-quarter); } +.#{$fa-css-prefix}-thermometer-three-quarters:before { content: fa-content($fa-var-thermometer-three-quarters); } +.#{$fa-css-prefix}-thumbs-down:before { content: fa-content($fa-var-thumbs-down); } +.#{$fa-css-prefix}-thumbs-up:before { content: fa-content($fa-var-thumbs-up); } +.#{$fa-css-prefix}-thumbtack:before { content: fa-content($fa-var-thumbtack); } +.#{$fa-css-prefix}-ticket-alt:before { content: fa-content($fa-var-ticket-alt); } +.#{$fa-css-prefix}-times:before { content: fa-content($fa-var-times); } +.#{$fa-css-prefix}-times-circle:before { content: fa-content($fa-var-times-circle); } +.#{$fa-css-prefix}-tint:before { content: fa-content($fa-var-tint); } +.#{$fa-css-prefix}-tint-slash:before { content: fa-content($fa-var-tint-slash); } +.#{$fa-css-prefix}-tired:before { content: fa-content($fa-var-tired); } +.#{$fa-css-prefix}-toggle-off:before { content: fa-content($fa-var-toggle-off); } +.#{$fa-css-prefix}-toggle-on:before { content: fa-content($fa-var-toggle-on); } +.#{$fa-css-prefix}-toolbox:before { content: fa-content($fa-var-toolbox); } +.#{$fa-css-prefix}-tooth:before { content: fa-content($fa-var-tooth); } +.#{$fa-css-prefix}-trade-federation:before { content: fa-content($fa-var-trade-federation); } +.#{$fa-css-prefix}-trademark:before { content: fa-content($fa-var-trademark); } +.#{$fa-css-prefix}-train:before { content: fa-content($fa-var-train); } +.#{$fa-css-prefix}-transgender:before { content: fa-content($fa-var-transgender); } +.#{$fa-css-prefix}-transgender-alt:before { content: fa-content($fa-var-transgender-alt); } +.#{$fa-css-prefix}-trash:before { content: fa-content($fa-var-trash); } +.#{$fa-css-prefix}-trash-alt:before { content: fa-content($fa-var-trash-alt); } +.#{$fa-css-prefix}-tree:before { content: fa-content($fa-var-tree); } +.#{$fa-css-prefix}-trello:before { content: fa-content($fa-var-trello); } +.#{$fa-css-prefix}-tripadvisor:before { content: fa-content($fa-var-tripadvisor); } +.#{$fa-css-prefix}-trophy:before { content: fa-content($fa-var-trophy); } +.#{$fa-css-prefix}-truck:before { content: fa-content($fa-var-truck); } +.#{$fa-css-prefix}-truck-loading:before { content: fa-content($fa-var-truck-loading); } +.#{$fa-css-prefix}-truck-moving:before { content: fa-content($fa-var-truck-moving); } +.#{$fa-css-prefix}-tshirt:before { content: fa-content($fa-var-tshirt); } +.#{$fa-css-prefix}-tty:before { content: fa-content($fa-var-tty); } +.#{$fa-css-prefix}-tumblr:before { content: fa-content($fa-var-tumblr); } +.#{$fa-css-prefix}-tumblr-square:before { content: fa-content($fa-var-tumblr-square); } +.#{$fa-css-prefix}-tv:before { content: fa-content($fa-var-tv); } +.#{$fa-css-prefix}-twitch:before { content: fa-content($fa-var-twitch); } +.#{$fa-css-prefix}-twitter:before { content: fa-content($fa-var-twitter); } +.#{$fa-css-prefix}-twitter-square:before { content: fa-content($fa-var-twitter-square); } +.#{$fa-css-prefix}-typo3:before { content: fa-content($fa-var-typo3); } +.#{$fa-css-prefix}-uber:before { content: fa-content($fa-var-uber); } +.#{$fa-css-prefix}-uikit:before { content: fa-content($fa-var-uikit); } +.#{$fa-css-prefix}-umbrella:before { content: fa-content($fa-var-umbrella); } +.#{$fa-css-prefix}-umbrella-beach:before { content: fa-content($fa-var-umbrella-beach); } +.#{$fa-css-prefix}-underline:before { content: fa-content($fa-var-underline); } +.#{$fa-css-prefix}-undo:before { content: fa-content($fa-var-undo); } +.#{$fa-css-prefix}-undo-alt:before { content: fa-content($fa-var-undo-alt); } +.#{$fa-css-prefix}-uniregistry:before { content: fa-content($fa-var-uniregistry); } +.#{$fa-css-prefix}-universal-access:before { content: fa-content($fa-var-universal-access); } +.#{$fa-css-prefix}-university:before { content: fa-content($fa-var-university); } +.#{$fa-css-prefix}-unlink:before { content: fa-content($fa-var-unlink); } +.#{$fa-css-prefix}-unlock:before { content: fa-content($fa-var-unlock); } +.#{$fa-css-prefix}-unlock-alt:before { content: fa-content($fa-var-unlock-alt); } +.#{$fa-css-prefix}-untappd:before { content: fa-content($fa-var-untappd); } +.#{$fa-css-prefix}-upload:before { content: fa-content($fa-var-upload); } +.#{$fa-css-prefix}-usb:before { content: fa-content($fa-var-usb); } +.#{$fa-css-prefix}-user:before { content: fa-content($fa-var-user); } +.#{$fa-css-prefix}-user-alt:before { content: fa-content($fa-var-user-alt); } +.#{$fa-css-prefix}-user-alt-slash:before { content: fa-content($fa-var-user-alt-slash); } +.#{$fa-css-prefix}-user-astronaut:before { content: fa-content($fa-var-user-astronaut); } +.#{$fa-css-prefix}-user-check:before { content: fa-content($fa-var-user-check); } +.#{$fa-css-prefix}-user-circle:before { content: fa-content($fa-var-user-circle); } +.#{$fa-css-prefix}-user-clock:before { content: fa-content($fa-var-user-clock); } +.#{$fa-css-prefix}-user-cog:before { content: fa-content($fa-var-user-cog); } +.#{$fa-css-prefix}-user-edit:before { content: fa-content($fa-var-user-edit); } +.#{$fa-css-prefix}-user-friends:before { content: fa-content($fa-var-user-friends); } +.#{$fa-css-prefix}-user-graduate:before { content: fa-content($fa-var-user-graduate); } +.#{$fa-css-prefix}-user-lock:before { content: fa-content($fa-var-user-lock); } +.#{$fa-css-prefix}-user-md:before { content: fa-content($fa-var-user-md); } +.#{$fa-css-prefix}-user-minus:before { content: fa-content($fa-var-user-minus); } +.#{$fa-css-prefix}-user-ninja:before { content: fa-content($fa-var-user-ninja); } +.#{$fa-css-prefix}-user-plus:before { content: fa-content($fa-var-user-plus); } +.#{$fa-css-prefix}-user-secret:before { content: fa-content($fa-var-user-secret); } +.#{$fa-css-prefix}-user-shield:before { content: fa-content($fa-var-user-shield); } +.#{$fa-css-prefix}-user-slash:before { content: fa-content($fa-var-user-slash); } +.#{$fa-css-prefix}-user-tag:before { content: fa-content($fa-var-user-tag); } +.#{$fa-css-prefix}-user-tie:before { content: fa-content($fa-var-user-tie); } +.#{$fa-css-prefix}-user-times:before { content: fa-content($fa-var-user-times); } +.#{$fa-css-prefix}-users:before { content: fa-content($fa-var-users); } +.#{$fa-css-prefix}-users-cog:before { content: fa-content($fa-var-users-cog); } +.#{$fa-css-prefix}-ussunnah:before { content: fa-content($fa-var-ussunnah); } +.#{$fa-css-prefix}-utensil-spoon:before { content: fa-content($fa-var-utensil-spoon); } +.#{$fa-css-prefix}-utensils:before { content: fa-content($fa-var-utensils); } +.#{$fa-css-prefix}-vaadin:before { content: fa-content($fa-var-vaadin); } +.#{$fa-css-prefix}-vector-square:before { content: fa-content($fa-var-vector-square); } +.#{$fa-css-prefix}-venus:before { content: fa-content($fa-var-venus); } +.#{$fa-css-prefix}-venus-double:before { content: fa-content($fa-var-venus-double); } +.#{$fa-css-prefix}-venus-mars:before { content: fa-content($fa-var-venus-mars); } +.#{$fa-css-prefix}-viacoin:before { content: fa-content($fa-var-viacoin); } +.#{$fa-css-prefix}-viadeo:before { content: fa-content($fa-var-viadeo); } +.#{$fa-css-prefix}-viadeo-square:before { content: fa-content($fa-var-viadeo-square); } +.#{$fa-css-prefix}-vial:before { content: fa-content($fa-var-vial); } +.#{$fa-css-prefix}-vials:before { content: fa-content($fa-var-vials); } +.#{$fa-css-prefix}-viber:before { content: fa-content($fa-var-viber); } +.#{$fa-css-prefix}-video:before { content: fa-content($fa-var-video); } +.#{$fa-css-prefix}-video-slash:before { content: fa-content($fa-var-video-slash); } +.#{$fa-css-prefix}-vimeo:before { content: fa-content($fa-var-vimeo); } +.#{$fa-css-prefix}-vimeo-square:before { content: fa-content($fa-var-vimeo-square); } +.#{$fa-css-prefix}-vimeo-v:before { content: fa-content($fa-var-vimeo-v); } +.#{$fa-css-prefix}-vine:before { content: fa-content($fa-var-vine); } +.#{$fa-css-prefix}-vk:before { content: fa-content($fa-var-vk); } +.#{$fa-css-prefix}-vnv:before { content: fa-content($fa-var-vnv); } +.#{$fa-css-prefix}-volleyball-ball:before { content: fa-content($fa-var-volleyball-ball); } +.#{$fa-css-prefix}-volume-down:before { content: fa-content($fa-var-volume-down); } +.#{$fa-css-prefix}-volume-off:before { content: fa-content($fa-var-volume-off); } +.#{$fa-css-prefix}-volume-up:before { content: fa-content($fa-var-volume-up); } +.#{$fa-css-prefix}-vuejs:before { content: fa-content($fa-var-vuejs); } +.#{$fa-css-prefix}-walking:before { content: fa-content($fa-var-walking); } +.#{$fa-css-prefix}-wallet:before { content: fa-content($fa-var-wallet); } +.#{$fa-css-prefix}-warehouse:before { content: fa-content($fa-var-warehouse); } +.#{$fa-css-prefix}-weebly:before { content: fa-content($fa-var-weebly); } +.#{$fa-css-prefix}-weibo:before { content: fa-content($fa-var-weibo); } +.#{$fa-css-prefix}-weight:before { content: fa-content($fa-var-weight); } +.#{$fa-css-prefix}-weight-hanging:before { content: fa-content($fa-var-weight-hanging); } +.#{$fa-css-prefix}-weixin:before { content: fa-content($fa-var-weixin); } +.#{$fa-css-prefix}-whatsapp:before { content: fa-content($fa-var-whatsapp); } +.#{$fa-css-prefix}-whatsapp-square:before { content: fa-content($fa-var-whatsapp-square); } +.#{$fa-css-prefix}-wheelchair:before { content: fa-content($fa-var-wheelchair); } +.#{$fa-css-prefix}-whmcs:before { content: fa-content($fa-var-whmcs); } +.#{$fa-css-prefix}-wifi:before { content: fa-content($fa-var-wifi); } +.#{$fa-css-prefix}-wikipedia-w:before { content: fa-content($fa-var-wikipedia-w); } +.#{$fa-css-prefix}-window-close:before { content: fa-content($fa-var-window-close); } +.#{$fa-css-prefix}-window-maximize:before { content: fa-content($fa-var-window-maximize); } +.#{$fa-css-prefix}-window-minimize:before { content: fa-content($fa-var-window-minimize); } +.#{$fa-css-prefix}-window-restore:before { content: fa-content($fa-var-window-restore); } +.#{$fa-css-prefix}-windows:before { content: fa-content($fa-var-windows); } +.#{$fa-css-prefix}-wine-glass:before { content: fa-content($fa-var-wine-glass); } +.#{$fa-css-prefix}-wine-glass-alt:before { content: fa-content($fa-var-wine-glass-alt); } +.#{$fa-css-prefix}-wix:before { content: fa-content($fa-var-wix); } +.#{$fa-css-prefix}-wolf-pack-battalion:before { content: fa-content($fa-var-wolf-pack-battalion); } +.#{$fa-css-prefix}-won-sign:before { content: fa-content($fa-var-won-sign); } +.#{$fa-css-prefix}-wordpress:before { content: fa-content($fa-var-wordpress); } +.#{$fa-css-prefix}-wordpress-simple:before { content: fa-content($fa-var-wordpress-simple); } +.#{$fa-css-prefix}-wpbeginner:before { content: fa-content($fa-var-wpbeginner); } +.#{$fa-css-prefix}-wpexplorer:before { content: fa-content($fa-var-wpexplorer); } +.#{$fa-css-prefix}-wpforms:before { content: fa-content($fa-var-wpforms); } +.#{$fa-css-prefix}-wrench:before { content: fa-content($fa-var-wrench); } +.#{$fa-css-prefix}-x-ray:before { content: fa-content($fa-var-x-ray); } +.#{$fa-css-prefix}-xbox:before { content: fa-content($fa-var-xbox); } +.#{$fa-css-prefix}-xing:before { content: fa-content($fa-var-xing); } +.#{$fa-css-prefix}-xing-square:before { content: fa-content($fa-var-xing-square); } +.#{$fa-css-prefix}-y-combinator:before { content: fa-content($fa-var-y-combinator); } +.#{$fa-css-prefix}-yahoo:before { content: fa-content($fa-var-yahoo); } +.#{$fa-css-prefix}-yandex:before { content: fa-content($fa-var-yandex); } +.#{$fa-css-prefix}-yandex-international:before { content: fa-content($fa-var-yandex-international); } +.#{$fa-css-prefix}-yelp:before { content: fa-content($fa-var-yelp); } +.#{$fa-css-prefix}-yen-sign:before { content: fa-content($fa-var-yen-sign); } +.#{$fa-css-prefix}-yoast:before { content: fa-content($fa-var-yoast); } +.#{$fa-css-prefix}-youtube:before { content: fa-content($fa-var-youtube); } +.#{$fa-css-prefix}-youtube-square:before { content: fa-content($fa-var-youtube-square); } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_larger.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_larger.scss new file mode 100644 index 0000000000..27c2ad5fc4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_larger.scss @@ -0,0 +1,23 @@ +// Icon Sizes +// ------------------------- + +// makes the font 33% larger relative to the icon container +.#{$fa-css-prefix}-lg { + font-size: (4em / 3); + line-height: (3em / 4); + vertical-align: -.0667em; +} + +.#{$fa-css-prefix}-xs { + font-size: .75em; +} + +.#{$fa-css-prefix}-sm { + font-size: .875em; +} + +@for $i from 1 through 10 { + .#{$fa-css-prefix}-#{$i}x { + font-size: $i * 1em; + } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_list.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_list.scss new file mode 100644 index 0000000000..8ebf33333c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_list.scss @@ -0,0 +1,18 @@ +// List Icons +// ------------------------- + +.#{$fa-css-prefix}-ul { + list-style-type: none; + margin-left: $fa-li-width * 5/4; + padding-left: 0; + + > li { position: relative; } +} + +.#{$fa-css-prefix}-li { + left: -$fa-li-width; + position: absolute; + text-align: center; + width: $fa-li-width; + line-height: inherit; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_mixins.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_mixins.scss new file mode 100644 index 0000000000..50a2e9f18c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_mixins.scss @@ -0,0 +1,57 @@ +// Mixins +// -------------------------- + +@mixin fa-icon { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + display: inline-block; + font-style: normal; + font-variant: normal; + font-weight: normal; + line-height: 1; + vertical-align: -.125em; +} + +@mixin fa-icon-rotate($degrees, $rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})"; + transform: rotate($degrees); +} + +@mixin fa-icon-flip($horiz, $vert, $rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)"; + transform: scale($horiz, $vert); +} + + +// Only display content to screen readers. A la Bootstrap 4. +// +// See: http://a11yproject.com/posts/how-to-hide-content/ + +@mixin sr-only { + border: 0; + clip: rect(0, 0, 0, 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; +} + +// Use in conjunction with .sr-only to only display content when it's focused. +// +// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 +// +// Credit: HTML5 Boilerplate + +@mixin sr-only-focusable { + &:active, + &:focus { + clip: auto; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto; + } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_rotated-flipped.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_rotated-flipped.scss new file mode 100644 index 0000000000..995bc4cc70 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_rotated-flipped.scss @@ -0,0 +1,23 @@ +// Rotated & Flipped Icons +// ------------------------- + +.#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } +.#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } +.#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } + +.#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } +.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } +.#{$fa-css-prefix}-flip-horizontal.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(-1, -1, 2); } + +// Hook for IE8-9 +// ------------------------- + +:root { + .#{$fa-css-prefix}-rotate-90, + .#{$fa-css-prefix}-rotate-180, + .#{$fa-css-prefix}-rotate-270, + .#{$fa-css-prefix}-flip-horizontal, + .#{$fa-css-prefix}-flip-vertical { + filter: none; + } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_screen-reader.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_screen-reader.scss new file mode 100644 index 0000000000..5d0ab262f1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_screen-reader.scss @@ -0,0 +1,5 @@ +// Screen Readers +// ------------------------- + +.sr-only { @include sr-only; } +.sr-only-focusable { @include sr-only-focusable; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_shims.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_shims.scss new file mode 100644 index 0000000000..08261c93df --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_shims.scss @@ -0,0 +1,2066 @@ +.#{$fa-css-prefix}.#{$fa-css-prefix}-glass:before { content: fa-content($fa-var-glass-martini); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-meetup { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-star-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-star-o:before { content: fa-content($fa-var-star); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-remove:before { content: fa-content($fa-var-times); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-close:before { content: fa-content($fa-var-times); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-gear:before { content: fa-content($fa-var-cog); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o:before { content: fa-content($fa-var-trash-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-o:before { content: fa-content($fa-var-file); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o:before { content: fa-content($fa-var-clock); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down:before { content: fa-content($fa-var-arrow-alt-circle-down); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up:before { content: fa-content($fa-var-arrow-alt-circle-up); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o:before { content: fa-content($fa-var-play-circle); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-repeat:before { content: fa-content($fa-var-redo); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-right:before { content: fa-content($fa-var-redo); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-refresh:before { content: fa-content($fa-var-sync); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-list-alt { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-dedent:before { content: fa-content($fa-var-outdent); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-video-camera:before { content: fa-content($fa-var-video); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o:before { content: fa-content($fa-var-image); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-photo { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-photo:before { content: fa-content($fa-var-image); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-image { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-image:before { content: fa-content($fa-var-image); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil:before { content: fa-content($fa-var-pencil-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-map-marker:before { content: fa-content($fa-var-map-marker-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o:before { content: fa-content($fa-var-edit); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-share-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-share-square-o:before { content: fa-content($fa-var-share-square); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o:before { content: fa-content($fa-var-check-square); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows:before { content: fa-content($fa-var-arrows-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o:before { content: fa-content($fa-var-times-circle); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o:before { content: fa-content($fa-var-check-circle); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-forward:before { content: fa-content($fa-var-share); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-eye { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-eye-slash { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-warning:before { content: fa-content($fa-var-exclamation-triangle); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar:before { content: fa-content($fa-var-calendar-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-v:before { content: fa-content($fa-var-arrows-alt-v); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-h:before { content: fa-content($fa-var-arrows-alt-h); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart:before { content: fa-content($fa-var-chart-bar); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart-o:before { content: fa-content($fa-var-chart-bar); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-twitter-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-gears:before { content: fa-content($fa-var-cogs); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up:before { content: fa-content($fa-var-thumbs-up); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down:before { content: fa-content($fa-var-thumbs-down); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o:before { content: fa-content($fa-var-heart); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sign-out:before { content: fa-content($fa-var-sign-out-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square:before { content: fa-content($fa-var-linkedin); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-thumb-tack:before { content: fa-content($fa-var-thumbtack); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-external-link:before { content: fa-content($fa-var-external-link-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sign-in:before { content: fa-content($fa-var-sign-in-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-github-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o:before { content: fa-content($fa-var-lemon); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-square-o:before { content: fa-content($fa-var-square); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o:before { content: fa-content($fa-var-bookmark); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-twitter { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook:before { content: fa-content($fa-var-facebook-f); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f:before { content: fa-content($fa-var-facebook-f); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-github { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-feed:before { content: fa-content($fa-var-rss); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o:before { content: fa-content($fa-var-hdd); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right:before { content: fa-content($fa-var-hand-point-right); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left:before { content: fa-content($fa-var-hand-point-left); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up:before { content: fa-content($fa-var-hand-point-up); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down:before { content: fa-content($fa-var-hand-point-down); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-alt:before { content: fa-content($fa-var-expand-arrows-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-group:before { content: fa-content($fa-var-users); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-chain:before { content: fa-content($fa-var-link); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-scissors:before { content: fa-content($fa-var-cut); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-files-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-files-o:before { content: fa-content($fa-var-copy); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o:before { content: fa-content($fa-var-save); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-navicon:before { content: fa-content($fa-var-bars); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-reorder:before { content: fa-content($fa-var-bars); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus:before { content: fa-content($fa-var-google-plus-g); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-money { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-money:before { content: fa-content($fa-var-money-bill-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-unsorted:before { content: fa-content($fa-var-sort); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-desc:before { content: fa-content($fa-var-sort-down); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-asc:before { content: fa-content($fa-var-sort-up); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin:before { content: fa-content($fa-var-linkedin-in); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-left:before { content: fa-content($fa-var-undo); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-legal:before { content: fa-content($fa-var-gavel); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-tachometer:before { content: fa-content($fa-var-tachometer-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-dashboard:before { content: fa-content($fa-var-tachometer-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o:before { content: fa-content($fa-var-comment); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o:before { content: fa-content($fa-var-comments); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-flash:before { content: fa-content($fa-var-bolt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-clipboard { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-paste { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-paste:before { content: fa-content($fa-var-clipboard); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o:before { content: fa-content($fa-var-lightbulb); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-exchange:before { content: fa-content($fa-var-exchange-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-download:before { content: fa-content($fa-var-cloud-download-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-upload:before { content: fa-content($fa-var-cloud-upload-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o:before { content: fa-content($fa-var-bell); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cutlery:before { content: fa-content($fa-var-utensils); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o:before { content: fa-content($fa-var-file-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-building-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-building-o:before { content: fa-content($fa-var-building); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o:before { content: fa-content($fa-var-hospital); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-tablet:before { content: fa-content($fa-var-tablet-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-mobile:before { content: fa-content($fa-var-mobile-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-mobile-phone:before { content: fa-content($fa-var-mobile-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o:before { content: fa-content($fa-var-circle); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply:before { content: fa-content($fa-var-reply); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-github-alt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o:before { content: fa-content($fa-var-folder); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o:before { content: fa-content($fa-var-folder-open); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o:before { content: fa-content($fa-var-smile); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o:before { content: fa-content($fa-var-frown); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o:before { content: fa-content($fa-var-meh); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o:before { content: fa-content($fa-var-keyboard); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o:before { content: fa-content($fa-var-flag); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply-all:before { content: fa-content($fa-var-reply-all); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o:before { content: fa-content($fa-var-star-half); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty:before { content: fa-content($fa-var-star-half); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full:before { content: fa-content($fa-var-star-half); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-code-fork:before { content: fa-content($fa-var-code-branch); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-chain-broken:before { content: fa-content($fa-var-unlink); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-shield:before { content: fa-content($fa-var-shield-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o:before { content: fa-content($fa-var-calendar); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-maxcdn { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-html5 { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-css3 { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-ticket:before { content: fa-content($fa-var-ticket-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o:before { content: fa-content($fa-var-minus-square); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-level-up:before { content: fa-content($fa-var-level-up-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-level-down:before { content: fa-content($fa-var-level-down-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square:before { content: fa-content($fa-var-pen-square); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-external-link-square:before { content: fa-content($fa-var-external-link-square-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-compass { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down:before { content: fa-content($fa-var-caret-square-down); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down:before { content: fa-content($fa-var-caret-square-down); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up:before { content: fa-content($fa-var-caret-square-up); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up:before { content: fa-content($fa-var-caret-square-up); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right:before { content: fa-content($fa-var-caret-square-right); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right:before { content: fa-content($fa-var-caret-square-right); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-eur:before { content: fa-content($fa-var-euro-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-euro:before { content: fa-content($fa-var-euro-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-gbp:before { content: fa-content($fa-var-pound-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-usd:before { content: fa-content($fa-var-dollar-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-dollar:before { content: fa-content($fa-var-dollar-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-inr:before { content: fa-content($fa-var-rupee-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-rupee:before { content: fa-content($fa-var-rupee-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-jpy:before { content: fa-content($fa-var-yen-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cny:before { content: fa-content($fa-var-yen-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-rmb:before { content: fa-content($fa-var-yen-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-yen:before { content: fa-content($fa-var-yen-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-rub:before { content: fa-content($fa-var-ruble-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-ruble:before { content: fa-content($fa-var-ruble-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-rouble:before { content: fa-content($fa-var-ruble-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-krw:before { content: fa-content($fa-var-won-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-won:before { content: fa-content($fa-var-won-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-btc { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin:before { content: fa-content($fa-var-btc); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-text:before { content: fa-content($fa-var-file-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-asc:before { content: fa-content($fa-var-sort-alpha-down); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-desc:before { content: fa-content($fa-var-sort-alpha-up); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-asc:before { content: fa-content($fa-var-sort-amount-down); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-desc:before { content: fa-content($fa-var-sort-amount-up); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-asc:before { content: fa-content($fa-var-sort-numeric-down); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-desc:before { content: fa-content($fa-var-sort-numeric-up); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-xing { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-xing-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play:before { content: fa-content($fa-var-youtube); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-dropbox { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-stack-overflow { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-instagram { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-flickr { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-adn { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square:before { content: fa-content($fa-var-bitbucket); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-down:before { content: fa-content($fa-var-long-arrow-alt-down); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-up:before { content: fa-content($fa-var-long-arrow-alt-up); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-left:before { content: fa-content($fa-var-long-arrow-alt-left); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-right:before { content: fa-content($fa-var-long-arrow-alt-right); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-apple { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-windows { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-android { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-linux { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-dribbble { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-skype { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-foursquare { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-trello { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-gratipay { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-gittip { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-gittip:before { content: fa-content($fa-var-gratipay); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o:before { content: fa-content($fa-var-sun); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o:before { content: fa-content($fa-var-moon); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-vk { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-weibo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-renren { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-pagelines { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-stack-exchange { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right:before { content: fa-content($fa-var-arrow-alt-circle-right); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left:before { content: fa-content($fa-var-arrow-alt-circle-left); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left:before { content: fa-content($fa-var-caret-square-left); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left:before { content: fa-content($fa-var-caret-square-left); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o:before { content: fa-content($fa-var-dot-circle); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-try:before { content: fa-content($fa-var-lira-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-turkish-lira:before { content: fa-content($fa-var-lira-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o:before { content: fa-content($fa-var-plus-square); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-slack { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-wordpress { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-openid { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-institution:before { content: fa-content($fa-var-university); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bank:before { content: fa-content($fa-var-university); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-mortar-board:before { content: fa-content($fa-var-graduation-cap); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-yahoo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-google { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-reddit { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-stumbleupon-circle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-stumbleupon { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-delicious { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-digg { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper-pp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper-alt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-drupal { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-joomla { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-spoon:before { content: fa-content($fa-var-utensil-spoon); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-behance { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-behance-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-steam { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-steam-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-automobile:before { content: fa-content($fa-var-car); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cab:before { content: fa-content($fa-var-taxi); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o:before { content: fa-content($fa-var-envelope); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-deviantart { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-soundcloud { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o:before { content: fa-content($fa-var-file-pdf); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o:before { content: fa-content($fa-var-file-word); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o:before { content: fa-content($fa-var-file-excel); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o:before { content: fa-content($fa-var-file-powerpoint); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o:before { content: fa-content($fa-var-file-image); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o:before { content: fa-content($fa-var-file-image); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o:before { content: fa-content($fa-var-file-image); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o:before { content: fa-content($fa-var-file-archive); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o:before { content: fa-content($fa-var-file-archive); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o:before { content: fa-content($fa-var-file-audio); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o:before { content: fa-content($fa-var-file-audio); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o:before { content: fa-content($fa-var-file-video); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o:before { content: fa-content($fa-var-file-video); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o:before { content: fa-content($fa-var-file-code); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-vine { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-codepen { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-jsfiddle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-life-ring { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-life-bouy { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-life-bouy:before { content: fa-content($fa-var-life-ring); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-life-buoy { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-life-buoy:before { content: fa-content($fa-var-life-ring); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-life-saver { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-life-saver:before { content: fa-content($fa-var-life-ring); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-support { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-support:before { content: fa-content($fa-var-life-ring); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o-notch:before { content: fa-content($fa-var-circle-notch); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-rebel { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-ra { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-ra:before { content: fa-content($fa-var-rebel); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-resistance { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-resistance:before { content: fa-content($fa-var-rebel); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-empire { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-ge { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-ge:before { content: fa-content($fa-var-empire); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-git-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-git { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hacker-news { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square:before { content: fa-content($fa-var-hacker-news); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square:before { content: fa-content($fa-var-hacker-news); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-tencent-weibo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-qq { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-weixin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-wechat { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-wechat:before { content: fa-content($fa-var-weixin); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-send:before { content: fa-content($fa-var-paper-plane); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o:before { content: fa-content($fa-var-paper-plane); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-send-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-send-o:before { content: fa-content($fa-var-paper-plane); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin:before { content: fa-content($fa-var-circle); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-header:before { content: fa-content($fa-var-heading); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sliders:before { content: fa-content($fa-var-sliders-h); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o:before { content: fa-content($fa-var-futbol); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o:before { content: fa-content($fa-var-futbol); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-slideshare { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-twitch { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-yelp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o:before { content: fa-content($fa-var-newspaper); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-paypal { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-google-wallet { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-visa { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-mastercard { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-discover { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-amex { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-paypal { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-stripe { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o:before { content: fa-content($fa-var-bell-slash); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-trash:before { content: fa-content($fa-var-trash-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-copyright { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-eyedropper:before { content: fa-content($fa-var-eye-dropper); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-area-chart:before { content: fa-content($fa-var-chart-area); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-pie-chart:before { content: fa-content($fa-var-chart-pie); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-line-chart:before { content: fa-content($fa-var-chart-line); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-ioxhost { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-angellist { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cc { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-cc:before { content: fa-content($fa-var-closed-captioning); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-ils:before { content: fa-content($fa-var-shekel-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-shekel:before { content: fa-content($fa-var-shekel-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sheqel:before { content: fa-content($fa-var-shekel-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-meanpath { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-meanpath:before { content: fa-content($fa-var-font-awesome); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-buysellads { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-connectdevelop { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-dashcube { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-forumbee { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-leanpub { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sellsy { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-shirtsinbulk { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-simplybuilt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-skyatlas { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-diamond { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-diamond:before { content: fa-content($fa-var-gem); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-intersex:before { content: fa-content($fa-var-transgender); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official:before { content: fa-content($fa-var-facebook); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-p { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-whatsapp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hotel:before { content: fa-content($fa-var-bed); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-viacoin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-medium { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-yc { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-yc:before { content: fa-content($fa-var-y-combinator); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-optin-monster { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-opencart { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-expeditedssl { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-4:before { content: fa-content($fa-var-battery-full); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-battery:before { content: fa-content($fa-var-battery-full); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-3:before { content: fa-content($fa-var-battery-three-quarters); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-2:before { content: fa-content($fa-var-battery-half); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-1:before { content: fa-content($fa-var-battery-quarter); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-0:before { content: fa-content($fa-var-battery-empty); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-object-group { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-object-ungroup { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o:before { content: fa-content($fa-var-sticky-note); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-jcb { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-diners-club { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-clone { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-o:before { content: fa-content($fa-var-hourglass); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-1:before { content: fa-content($fa-var-hourglass-start); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-2:before { content: fa-content($fa-var-hourglass-half); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-3:before { content: fa-content($fa-var-hourglass-end); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o:before { content: fa-content($fa-var-hand-rock); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o:before { content: fa-content($fa-var-hand-rock); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o:before { content: fa-content($fa-var-hand-paper); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o:before { content: fa-content($fa-var-hand-paper); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o:before { content: fa-content($fa-var-hand-scissors); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o:before { content: fa-content($fa-var-hand-lizard); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o:before { content: fa-content($fa-var-hand-spock); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o:before { content: fa-content($fa-var-hand-pointer); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o:before { content: fa-content($fa-var-hand-peace); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-registered { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-creative-commons { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-gg { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-gg-circle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-tripadvisor { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-get-pocket { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-wikipedia-w { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-safari { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-chrome { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-firefox { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-opera { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-internet-explorer { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-television:before { content: fa-content($fa-var-tv); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-contao { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-500px { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-amazon { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o:before { content: fa-content($fa-var-calendar-plus); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o:before { content: fa-content($fa-var-calendar-minus); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o:before { content: fa-content($fa-var-calendar-times); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o:before { content: fa-content($fa-var-calendar-check); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-map-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-map-o:before { content: fa-content($fa-var-map); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting:before { content: fa-content($fa-var-comment-dots); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o:before { content: fa-content($fa-var-comment-dots); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-houzz { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo:before { content: fa-content($fa-var-vimeo-v); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-black-tie { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-fonticons { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-alien { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-edge { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card-alt:before { content: fa-content($fa-var-credit-card); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-codiepie { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-modx { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-fort-awesome { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-usb { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-product-hunt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-mixcloud { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-scribd { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o:before { content: fa-content($fa-var-pause-circle); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o:before { content: fa-content($fa-var-stop-circle); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bluetooth { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bluetooth-b { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-gitlab { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-wpbeginner { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-wpforms { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-envira { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt:before { content: fa-content($fa-var-accessible-icon); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o:before { content: fa-content($fa-var-question-circle); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-volume-control-phone:before { content: fa-content($fa-var-phone-volume); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-asl-interpreting:before { content: fa-content($fa-var-american-sign-language-interpreting); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-deafness:before { content: fa-content($fa-var-deaf); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hard-of-hearing:before { content: fa-content($fa-var-deaf); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-glide { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-glide-g { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-signing:before { content: fa-content($fa-var-sign-language); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-ghost { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-first-order { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-yoast { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-themeisle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official:before { content: fa-content($fa-var-google-plus); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle:before { content: fa-content($fa-var-google-plus); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-font-awesome { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-fa { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-fa:before { content: fa-content($fa-var-font-awesome); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o:before { content: fa-content($fa-var-handshake); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o:before { content: fa-content($fa-var-envelope-open); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-linode { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o:before { content: fa-content($fa-var-address-book); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-vcard:before { content: fa-content($fa-var-address-card); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o:before { content: fa-content($fa-var-address-card); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o:before { content: fa-content($fa-var-address-card); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o:before { content: fa-content($fa-var-user-circle); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-user-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-user-o:before { content: fa-content($fa-var-user); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-id-badge { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license:before { content: fa-content($fa-var-id-card); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o:before { content: fa-content($fa-var-id-card); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o:before { content: fa-content($fa-var-id-card); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-quora { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-free-code-camp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-telegram { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-4:before { content: fa-content($fa-var-thermometer-full); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer:before { content: fa-content($fa-var-thermometer-full); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-3:before { content: fa-content($fa-var-thermometer-three-quarters); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-2:before { content: fa-content($fa-var-thermometer-half); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-1:before { content: fa-content($fa-var-thermometer-quarter); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-0:before { content: fa-content($fa-var-thermometer-empty); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bathtub:before { content: fa-content($fa-var-bath); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-s15:before { content: fa-content($fa-var-bath); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-window-maximize { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-window-restore { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle:before { content: fa-content($fa-var-window-close); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o:before { content: fa-content($fa-var-window-close); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o:before { content: fa-content($fa-var-window-close); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bandcamp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-grav { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-etsy { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-imdb { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-ravelry { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-eercast { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-eercast:before { content: fa-content($fa-var-sellcast); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o:before { content: fa-content($fa-var-snowflake); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-superpowers { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-wpexplorer { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-spotify { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_stacked.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_stacked.scss new file mode 100644 index 0000000000..6c09d84cd1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_stacked.scss @@ -0,0 +1,31 @@ +// Stacked Icons +// ------------------------- + +.#{$fa-css-prefix}-stack { + display: inline-block; + height: 2em; + line-height: 2em; + position: relative; + vertical-align: middle; + width: 2em; +} + +.#{$fa-css-prefix}-stack-1x, +.#{$fa-css-prefix}-stack-2x { + left: 0; + position: absolute; + text-align: center; + width: 100%; +} + +.#{$fa-css-prefix}-stack-1x { + line-height: inherit; +} + +.#{$fa-css-prefix}-stack-2x { + font-size: 2em; +} + +.#{$fa-css-prefix}-inverse { + color: $fa-inverse; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_variables.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_variables.scss new file mode 100644 index 0000000000..6100eebcff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/_variables.scss @@ -0,0 +1,1128 @@ +// Variables +// -------------------------- + +$fa-font-path: "../webfonts" !default; +$fa-font-size-base: 16px !default; +$fa-css-prefix: fa !default; +$fa-version: "5.1.1" !default; +$fa-border-color: #eee !default; +$fa-inverse: #fff !default; +$fa-li-width: 2em !default; + +// Convenience function used to set content property +@function fa-content($fa-var) { + @return unquote("\"#{ $fa-var }\""); +} + +$fa-var-500px: \f26e; +$fa-var-accessible-icon: \f368; +$fa-var-accusoft: \f369; +$fa-var-address-book: \f2b9; +$fa-var-address-card: \f2bb; +$fa-var-adjust: \f042; +$fa-var-adn: \f170; +$fa-var-adversal: \f36a; +$fa-var-affiliatetheme: \f36b; +$fa-var-algolia: \f36c; +$fa-var-align-center: \f037; +$fa-var-align-justify: \f039; +$fa-var-align-left: \f036; +$fa-var-align-right: \f038; +$fa-var-allergies: \f461; +$fa-var-amazon: \f270; +$fa-var-amazon-pay: \f42c; +$fa-var-ambulance: \f0f9; +$fa-var-american-sign-language-interpreting: \f2a3; +$fa-var-amilia: \f36d; +$fa-var-anchor: \f13d; +$fa-var-android: \f17b; +$fa-var-angellist: \f209; +$fa-var-angle-double-down: \f103; +$fa-var-angle-double-left: \f100; +$fa-var-angle-double-right: \f101; +$fa-var-angle-double-up: \f102; +$fa-var-angle-down: \f107; +$fa-var-angle-left: \f104; +$fa-var-angle-right: \f105; +$fa-var-angle-up: \f106; +$fa-var-angry: \f556; +$fa-var-angrycreative: \f36e; +$fa-var-angular: \f420; +$fa-var-app-store: \f36f; +$fa-var-app-store-ios: \f370; +$fa-var-apper: \f371; +$fa-var-apple: \f179; +$fa-var-apple-pay: \f415; +$fa-var-archive: \f187; +$fa-var-archway: \f557; +$fa-var-arrow-alt-circle-down: \f358; +$fa-var-arrow-alt-circle-left: \f359; +$fa-var-arrow-alt-circle-right: \f35a; +$fa-var-arrow-alt-circle-up: \f35b; +$fa-var-arrow-circle-down: \f0ab; +$fa-var-arrow-circle-left: \f0a8; +$fa-var-arrow-circle-right: \f0a9; +$fa-var-arrow-circle-up: \f0aa; +$fa-var-arrow-down: \f063; +$fa-var-arrow-left: \f060; +$fa-var-arrow-right: \f061; +$fa-var-arrow-up: \f062; +$fa-var-arrows-alt: \f0b2; +$fa-var-arrows-alt-h: \f337; +$fa-var-arrows-alt-v: \f338; +$fa-var-assistive-listening-systems: \f2a2; +$fa-var-asterisk: \f069; +$fa-var-asymmetrik: \f372; +$fa-var-at: \f1fa; +$fa-var-atlas: \f558; +$fa-var-audible: \f373; +$fa-var-audio-description: \f29e; +$fa-var-autoprefixer: \f41c; +$fa-var-avianex: \f374; +$fa-var-aviato: \f421; +$fa-var-award: \f559; +$fa-var-aws: \f375; +$fa-var-backspace: \f55a; +$fa-var-backward: \f04a; +$fa-var-balance-scale: \f24e; +$fa-var-ban: \f05e; +$fa-var-band-aid: \f462; +$fa-var-bandcamp: \f2d5; +$fa-var-barcode: \f02a; +$fa-var-bars: \f0c9; +$fa-var-baseball-ball: \f433; +$fa-var-basketball-ball: \f434; +$fa-var-bath: \f2cd; +$fa-var-battery-empty: \f244; +$fa-var-battery-full: \f240; +$fa-var-battery-half: \f242; +$fa-var-battery-quarter: \f243; +$fa-var-battery-three-quarters: \f241; +$fa-var-bed: \f236; +$fa-var-beer: \f0fc; +$fa-var-behance: \f1b4; +$fa-var-behance-square: \f1b5; +$fa-var-bell: \f0f3; +$fa-var-bell-slash: \f1f6; +$fa-var-bezier-curve: \f55b; +$fa-var-bicycle: \f206; +$fa-var-bimobject: \f378; +$fa-var-binoculars: \f1e5; +$fa-var-birthday-cake: \f1fd; +$fa-var-bitbucket: \f171; +$fa-var-bitcoin: \f379; +$fa-var-bity: \f37a; +$fa-var-black-tie: \f27e; +$fa-var-blackberry: \f37b; +$fa-var-blender: \f517; +$fa-var-blind: \f29d; +$fa-var-blogger: \f37c; +$fa-var-blogger-b: \f37d; +$fa-var-bluetooth: \f293; +$fa-var-bluetooth-b: \f294; +$fa-var-bold: \f032; +$fa-var-bolt: \f0e7; +$fa-var-bomb: \f1e2; +$fa-var-bong: \f55c; +$fa-var-book: \f02d; +$fa-var-book-open: \f518; +$fa-var-bookmark: \f02e; +$fa-var-bowling-ball: \f436; +$fa-var-box: \f466; +$fa-var-box-open: \f49e; +$fa-var-boxes: \f468; +$fa-var-braille: \f2a1; +$fa-var-briefcase: \f0b1; +$fa-var-briefcase-medical: \f469; +$fa-var-broadcast-tower: \f519; +$fa-var-broom: \f51a; +$fa-var-brush: \f55d; +$fa-var-btc: \f15a; +$fa-var-bug: \f188; +$fa-var-building: \f1ad; +$fa-var-bullhorn: \f0a1; +$fa-var-bullseye: \f140; +$fa-var-burn: \f46a; +$fa-var-buromobelexperte: \f37f; +$fa-var-bus: \f207; +$fa-var-bus-alt: \f55e; +$fa-var-buysellads: \f20d; +$fa-var-calculator: \f1ec; +$fa-var-calendar: \f133; +$fa-var-calendar-alt: \f073; +$fa-var-calendar-check: \f274; +$fa-var-calendar-minus: \f272; +$fa-var-calendar-plus: \f271; +$fa-var-calendar-times: \f273; +$fa-var-camera: \f030; +$fa-var-camera-retro: \f083; +$fa-var-cannabis: \f55f; +$fa-var-capsules: \f46b; +$fa-var-car: \f1b9; +$fa-var-caret-down: \f0d7; +$fa-var-caret-left: \f0d9; +$fa-var-caret-right: \f0da; +$fa-var-caret-square-down: \f150; +$fa-var-caret-square-left: \f191; +$fa-var-caret-square-right: \f152; +$fa-var-caret-square-up: \f151; +$fa-var-caret-up: \f0d8; +$fa-var-cart-arrow-down: \f218; +$fa-var-cart-plus: \f217; +$fa-var-cc-amazon-pay: \f42d; +$fa-var-cc-amex: \f1f3; +$fa-var-cc-apple-pay: \f416; +$fa-var-cc-diners-club: \f24c; +$fa-var-cc-discover: \f1f2; +$fa-var-cc-jcb: \f24b; +$fa-var-cc-mastercard: \f1f1; +$fa-var-cc-paypal: \f1f4; +$fa-var-cc-stripe: \f1f5; +$fa-var-cc-visa: \f1f0; +$fa-var-centercode: \f380; +$fa-var-certificate: \f0a3; +$fa-var-chalkboard: \f51b; +$fa-var-chalkboard-teacher: \f51c; +$fa-var-chart-area: \f1fe; +$fa-var-chart-bar: \f080; +$fa-var-chart-line: \f201; +$fa-var-chart-pie: \f200; +$fa-var-check: \f00c; +$fa-var-check-circle: \f058; +$fa-var-check-double: \f560; +$fa-var-check-square: \f14a; +$fa-var-chess: \f439; +$fa-var-chess-bishop: \f43a; +$fa-var-chess-board: \f43c; +$fa-var-chess-king: \f43f; +$fa-var-chess-knight: \f441; +$fa-var-chess-pawn: \f443; +$fa-var-chess-queen: \f445; +$fa-var-chess-rook: \f447; +$fa-var-chevron-circle-down: \f13a; +$fa-var-chevron-circle-left: \f137; +$fa-var-chevron-circle-right: \f138; +$fa-var-chevron-circle-up: \f139; +$fa-var-chevron-down: \f078; +$fa-var-chevron-left: \f053; +$fa-var-chevron-right: \f054; +$fa-var-chevron-up: \f077; +$fa-var-child: \f1ae; +$fa-var-chrome: \f268; +$fa-var-church: \f51d; +$fa-var-circle: \f111; +$fa-var-circle-notch: \f1ce; +$fa-var-clipboard: \f328; +$fa-var-clipboard-check: \f46c; +$fa-var-clipboard-list: \f46d; +$fa-var-clock: \f017; +$fa-var-clone: \f24d; +$fa-var-closed-captioning: \f20a; +$fa-var-cloud: \f0c2; +$fa-var-cloud-download-alt: \f381; +$fa-var-cloud-upload-alt: \f382; +$fa-var-cloudscale: \f383; +$fa-var-cloudsmith: \f384; +$fa-var-cloudversify: \f385; +$fa-var-cocktail: \f561; +$fa-var-code: \f121; +$fa-var-code-branch: \f126; +$fa-var-codepen: \f1cb; +$fa-var-codiepie: \f284; +$fa-var-coffee: \f0f4; +$fa-var-cog: \f013; +$fa-var-cogs: \f085; +$fa-var-coins: \f51e; +$fa-var-columns: \f0db; +$fa-var-comment: \f075; +$fa-var-comment-alt: \f27a; +$fa-var-comment-dots: \f4ad; +$fa-var-comment-slash: \f4b3; +$fa-var-comments: \f086; +$fa-var-compact-disc: \f51f; +$fa-var-compass: \f14e; +$fa-var-compress: \f066; +$fa-var-concierge-bell: \f562; +$fa-var-connectdevelop: \f20e; +$fa-var-contao: \f26d; +$fa-var-cookie: \f563; +$fa-var-cookie-bite: \f564; +$fa-var-copy: \f0c5; +$fa-var-copyright: \f1f9; +$fa-var-couch: \f4b8; +$fa-var-cpanel: \f388; +$fa-var-creative-commons: \f25e; +$fa-var-creative-commons-by: \f4e7; +$fa-var-creative-commons-nc: \f4e8; +$fa-var-creative-commons-nc-eu: \f4e9; +$fa-var-creative-commons-nc-jp: \f4ea; +$fa-var-creative-commons-nd: \f4eb; +$fa-var-creative-commons-pd: \f4ec; +$fa-var-creative-commons-pd-alt: \f4ed; +$fa-var-creative-commons-remix: \f4ee; +$fa-var-creative-commons-sa: \f4ef; +$fa-var-creative-commons-sampling: \f4f0; +$fa-var-creative-commons-sampling-plus: \f4f1; +$fa-var-creative-commons-share: \f4f2; +$fa-var-credit-card: \f09d; +$fa-var-crop: \f125; +$fa-var-crop-alt: \f565; +$fa-var-crosshairs: \f05b; +$fa-var-crow: \f520; +$fa-var-crown: \f521; +$fa-var-css3: \f13c; +$fa-var-css3-alt: \f38b; +$fa-var-cube: \f1b2; +$fa-var-cubes: \f1b3; +$fa-var-cut: \f0c4; +$fa-var-cuttlefish: \f38c; +$fa-var-d-and-d: \f38d; +$fa-var-dashcube: \f210; +$fa-var-database: \f1c0; +$fa-var-deaf: \f2a4; +$fa-var-delicious: \f1a5; +$fa-var-deploydog: \f38e; +$fa-var-deskpro: \f38f; +$fa-var-desktop: \f108; +$fa-var-deviantart: \f1bd; +$fa-var-diagnoses: \f470; +$fa-var-dice: \f522; +$fa-var-dice-five: \f523; +$fa-var-dice-four: \f524; +$fa-var-dice-one: \f525; +$fa-var-dice-six: \f526; +$fa-var-dice-three: \f527; +$fa-var-dice-two: \f528; +$fa-var-digg: \f1a6; +$fa-var-digital-ocean: \f391; +$fa-var-digital-tachograph: \f566; +$fa-var-discord: \f392; +$fa-var-discourse: \f393; +$fa-var-divide: \f529; +$fa-var-dizzy: \f567; +$fa-var-dna: \f471; +$fa-var-dochub: \f394; +$fa-var-docker: \f395; +$fa-var-dollar-sign: \f155; +$fa-var-dolly: \f472; +$fa-var-dolly-flatbed: \f474; +$fa-var-donate: \f4b9; +$fa-var-door-closed: \f52a; +$fa-var-door-open: \f52b; +$fa-var-dot-circle: \f192; +$fa-var-dove: \f4ba; +$fa-var-download: \f019; +$fa-var-draft2digital: \f396; +$fa-var-drafting-compass: \f568; +$fa-var-dribbble: \f17d; +$fa-var-dribbble-square: \f397; +$fa-var-dropbox: \f16b; +$fa-var-drum: \f569; +$fa-var-drum-steelpan: \f56a; +$fa-var-drupal: \f1a9; +$fa-var-dumbbell: \f44b; +$fa-var-dyalog: \f399; +$fa-var-earlybirds: \f39a; +$fa-var-ebay: \f4f4; +$fa-var-edge: \f282; +$fa-var-edit: \f044; +$fa-var-eject: \f052; +$fa-var-elementor: \f430; +$fa-var-ellipsis-h: \f141; +$fa-var-ellipsis-v: \f142; +$fa-var-ember: \f423; +$fa-var-empire: \f1d1; +$fa-var-envelope: \f0e0; +$fa-var-envelope-open: \f2b6; +$fa-var-envelope-square: \f199; +$fa-var-envira: \f299; +$fa-var-equals: \f52c; +$fa-var-eraser: \f12d; +$fa-var-erlang: \f39d; +$fa-var-ethereum: \f42e; +$fa-var-etsy: \f2d7; +$fa-var-euro-sign: \f153; +$fa-var-exchange-alt: \f362; +$fa-var-exclamation: \f12a; +$fa-var-exclamation-circle: \f06a; +$fa-var-exclamation-triangle: \f071; +$fa-var-expand: \f065; +$fa-var-expand-arrows-alt: \f31e; +$fa-var-expeditedssl: \f23e; +$fa-var-external-link-alt: \f35d; +$fa-var-external-link-square-alt: \f360; +$fa-var-eye: \f06e; +$fa-var-eye-dropper: \f1fb; +$fa-var-eye-slash: \f070; +$fa-var-facebook: \f09a; +$fa-var-facebook-f: \f39e; +$fa-var-facebook-messenger: \f39f; +$fa-var-facebook-square: \f082; +$fa-var-fast-backward: \f049; +$fa-var-fast-forward: \f050; +$fa-var-fax: \f1ac; +$fa-var-feather: \f52d; +$fa-var-feather-alt: \f56b; +$fa-var-female: \f182; +$fa-var-fighter-jet: \f0fb; +$fa-var-file: \f15b; +$fa-var-file-alt: \f15c; +$fa-var-file-archive: \f1c6; +$fa-var-file-audio: \f1c7; +$fa-var-file-code: \f1c9; +$fa-var-file-contract: \f56c; +$fa-var-file-download: \f56d; +$fa-var-file-excel: \f1c3; +$fa-var-file-export: \f56e; +$fa-var-file-image: \f1c5; +$fa-var-file-import: \f56f; +$fa-var-file-invoice: \f570; +$fa-var-file-invoice-dollar: \f571; +$fa-var-file-medical: \f477; +$fa-var-file-medical-alt: \f478; +$fa-var-file-pdf: \f1c1; +$fa-var-file-powerpoint: \f1c4; +$fa-var-file-prescription: \f572; +$fa-var-file-signature: \f573; +$fa-var-file-upload: \f574; +$fa-var-file-video: \f1c8; +$fa-var-file-word: \f1c2; +$fa-var-fill: \f575; +$fa-var-fill-drip: \f576; +$fa-var-film: \f008; +$fa-var-filter: \f0b0; +$fa-var-fingerprint: \f577; +$fa-var-fire: \f06d; +$fa-var-fire-extinguisher: \f134; +$fa-var-firefox: \f269; +$fa-var-first-aid: \f479; +$fa-var-first-order: \f2b0; +$fa-var-first-order-alt: \f50a; +$fa-var-firstdraft: \f3a1; +$fa-var-fish: \f578; +$fa-var-flag: \f024; +$fa-var-flag-checkered: \f11e; +$fa-var-flask: \f0c3; +$fa-var-flickr: \f16e; +$fa-var-flipboard: \f44d; +$fa-var-flushed: \f579; +$fa-var-fly: \f417; +$fa-var-folder: \f07b; +$fa-var-folder-open: \f07c; +$fa-var-font: \f031; +$fa-var-font-awesome: \f2b4; +$fa-var-font-awesome-alt: \f35c; +$fa-var-font-awesome-flag: \f425; +$fa-var-font-awesome-logo-full: \f4e6; +$fa-var-fonticons: \f280; +$fa-var-fonticons-fi: \f3a2; +$fa-var-football-ball: \f44e; +$fa-var-fort-awesome: \f286; +$fa-var-fort-awesome-alt: \f3a3; +$fa-var-forumbee: \f211; +$fa-var-forward: \f04e; +$fa-var-foursquare: \f180; +$fa-var-free-code-camp: \f2c5; +$fa-var-freebsd: \f3a4; +$fa-var-frog: \f52e; +$fa-var-frown: \f119; +$fa-var-frown-open: \f57a; +$fa-var-fulcrum: \f50b; +$fa-var-futbol: \f1e3; +$fa-var-galactic-republic: \f50c; +$fa-var-galactic-senate: \f50d; +$fa-var-gamepad: \f11b; +$fa-var-gas-pump: \f52f; +$fa-var-gavel: \f0e3; +$fa-var-gem: \f3a5; +$fa-var-genderless: \f22d; +$fa-var-get-pocket: \f265; +$fa-var-gg: \f260; +$fa-var-gg-circle: \f261; +$fa-var-gift: \f06b; +$fa-var-git: \f1d3; +$fa-var-git-square: \f1d2; +$fa-var-github: \f09b; +$fa-var-github-alt: \f113; +$fa-var-github-square: \f092; +$fa-var-gitkraken: \f3a6; +$fa-var-gitlab: \f296; +$fa-var-gitter: \f426; +$fa-var-glass-martini: \f000; +$fa-var-glass-martini-alt: \f57b; +$fa-var-glasses: \f530; +$fa-var-glide: \f2a5; +$fa-var-glide-g: \f2a6; +$fa-var-globe: \f0ac; +$fa-var-globe-africa: \f57c; +$fa-var-globe-americas: \f57d; +$fa-var-globe-asia: \f57e; +$fa-var-gofore: \f3a7; +$fa-var-golf-ball: \f450; +$fa-var-goodreads: \f3a8; +$fa-var-goodreads-g: \f3a9; +$fa-var-google: \f1a0; +$fa-var-google-drive: \f3aa; +$fa-var-google-play: \f3ab; +$fa-var-google-plus: \f2b3; +$fa-var-google-plus-g: \f0d5; +$fa-var-google-plus-square: \f0d4; +$fa-var-google-wallet: \f1ee; +$fa-var-graduation-cap: \f19d; +$fa-var-gratipay: \f184; +$fa-var-grav: \f2d6; +$fa-var-greater-than: \f531; +$fa-var-greater-than-equal: \f532; +$fa-var-grimace: \f57f; +$fa-var-grin: \f580; +$fa-var-grin-alt: \f581; +$fa-var-grin-beam: \f582; +$fa-var-grin-beam-sweat: \f583; +$fa-var-grin-hearts: \f584; +$fa-var-grin-squint: \f585; +$fa-var-grin-squint-tears: \f586; +$fa-var-grin-stars: \f587; +$fa-var-grin-tears: \f588; +$fa-var-grin-tongue: \f589; +$fa-var-grin-tongue-squint: \f58a; +$fa-var-grin-tongue-wink: \f58b; +$fa-var-grin-wink: \f58c; +$fa-var-grip-horizontal: \f58d; +$fa-var-grip-vertical: \f58e; +$fa-var-gripfire: \f3ac; +$fa-var-grunt: \f3ad; +$fa-var-gulp: \f3ae; +$fa-var-h-square: \f0fd; +$fa-var-hacker-news: \f1d4; +$fa-var-hacker-news-square: \f3af; +$fa-var-hand-holding: \f4bd; +$fa-var-hand-holding-heart: \f4be; +$fa-var-hand-holding-usd: \f4c0; +$fa-var-hand-lizard: \f258; +$fa-var-hand-paper: \f256; +$fa-var-hand-peace: \f25b; +$fa-var-hand-point-down: \f0a7; +$fa-var-hand-point-left: \f0a5; +$fa-var-hand-point-right: \f0a4; +$fa-var-hand-point-up: \f0a6; +$fa-var-hand-pointer: \f25a; +$fa-var-hand-rock: \f255; +$fa-var-hand-scissors: \f257; +$fa-var-hand-spock: \f259; +$fa-var-hands: \f4c2; +$fa-var-hands-helping: \f4c4; +$fa-var-handshake: \f2b5; +$fa-var-hashtag: \f292; +$fa-var-hdd: \f0a0; +$fa-var-heading: \f1dc; +$fa-var-headphones: \f025; +$fa-var-headphones-alt: \f58f; +$fa-var-headset: \f590; +$fa-var-heart: \f004; +$fa-var-heartbeat: \f21e; +$fa-var-helicopter: \f533; +$fa-var-highlighter: \f591; +$fa-var-hips: \f452; +$fa-var-hire-a-helper: \f3b0; +$fa-var-history: \f1da; +$fa-var-hockey-puck: \f453; +$fa-var-home: \f015; +$fa-var-hooli: \f427; +$fa-var-hornbill: \f592; +$fa-var-hospital: \f0f8; +$fa-var-hospital-alt: \f47d; +$fa-var-hospital-symbol: \f47e; +$fa-var-hot-tub: \f593; +$fa-var-hotel: \f594; +$fa-var-hotjar: \f3b1; +$fa-var-hourglass: \f254; +$fa-var-hourglass-end: \f253; +$fa-var-hourglass-half: \f252; +$fa-var-hourglass-start: \f251; +$fa-var-houzz: \f27c; +$fa-var-html5: \f13b; +$fa-var-hubspot: \f3b2; +$fa-var-i-cursor: \f246; +$fa-var-id-badge: \f2c1; +$fa-var-id-card: \f2c2; +$fa-var-id-card-alt: \f47f; +$fa-var-image: \f03e; +$fa-var-images: \f302; +$fa-var-imdb: \f2d8; +$fa-var-inbox: \f01c; +$fa-var-indent: \f03c; +$fa-var-industry: \f275; +$fa-var-infinity: \f534; +$fa-var-info: \f129; +$fa-var-info-circle: \f05a; +$fa-var-instagram: \f16d; +$fa-var-internet-explorer: \f26b; +$fa-var-ioxhost: \f208; +$fa-var-italic: \f033; +$fa-var-itunes: \f3b4; +$fa-var-itunes-note: \f3b5; +$fa-var-java: \f4e4; +$fa-var-jedi-order: \f50e; +$fa-var-jenkins: \f3b6; +$fa-var-joget: \f3b7; +$fa-var-joint: \f595; +$fa-var-joomla: \f1aa; +$fa-var-js: \f3b8; +$fa-var-js-square: \f3b9; +$fa-var-jsfiddle: \f1cc; +$fa-var-key: \f084; +$fa-var-keybase: \f4f5; +$fa-var-keyboard: \f11c; +$fa-var-keycdn: \f3ba; +$fa-var-kickstarter: \f3bb; +$fa-var-kickstarter-k: \f3bc; +$fa-var-kiss: \f596; +$fa-var-kiss-beam: \f597; +$fa-var-kiss-wink-heart: \f598; +$fa-var-kiwi-bird: \f535; +$fa-var-korvue: \f42f; +$fa-var-language: \f1ab; +$fa-var-laptop: \f109; +$fa-var-laravel: \f3bd; +$fa-var-lastfm: \f202; +$fa-var-lastfm-square: \f203; +$fa-var-laugh: \f599; +$fa-var-laugh-beam: \f59a; +$fa-var-laugh-squint: \f59b; +$fa-var-laugh-wink: \f59c; +$fa-var-leaf: \f06c; +$fa-var-leanpub: \f212; +$fa-var-lemon: \f094; +$fa-var-less: \f41d; +$fa-var-less-than: \f536; +$fa-var-less-than-equal: \f537; +$fa-var-level-down-alt: \f3be; +$fa-var-level-up-alt: \f3bf; +$fa-var-life-ring: \f1cd; +$fa-var-lightbulb: \f0eb; +$fa-var-line: \f3c0; +$fa-var-link: \f0c1; +$fa-var-linkedin: \f08c; +$fa-var-linkedin-in: \f0e1; +$fa-var-linode: \f2b8; +$fa-var-linux: \f17c; +$fa-var-lira-sign: \f195; +$fa-var-list: \f03a; +$fa-var-list-alt: \f022; +$fa-var-list-ol: \f0cb; +$fa-var-list-ul: \f0ca; +$fa-var-location-arrow: \f124; +$fa-var-lock: \f023; +$fa-var-lock-open: \f3c1; +$fa-var-long-arrow-alt-down: \f309; +$fa-var-long-arrow-alt-left: \f30a; +$fa-var-long-arrow-alt-right: \f30b; +$fa-var-long-arrow-alt-up: \f30c; +$fa-var-low-vision: \f2a8; +$fa-var-luggage-cart: \f59d; +$fa-var-lyft: \f3c3; +$fa-var-magento: \f3c4; +$fa-var-magic: \f0d0; +$fa-var-magnet: \f076; +$fa-var-mailchimp: \f59e; +$fa-var-male: \f183; +$fa-var-mandalorian: \f50f; +$fa-var-map: \f279; +$fa-var-map-marked: \f59f; +$fa-var-map-marked-alt: \f5a0; +$fa-var-map-marker: \f041; +$fa-var-map-marker-alt: \f3c5; +$fa-var-map-pin: \f276; +$fa-var-map-signs: \f277; +$fa-var-marker: \f5a1; +$fa-var-mars: \f222; +$fa-var-mars-double: \f227; +$fa-var-mars-stroke: \f229; +$fa-var-mars-stroke-h: \f22b; +$fa-var-mars-stroke-v: \f22a; +$fa-var-mastodon: \f4f6; +$fa-var-maxcdn: \f136; +$fa-var-medal: \f5a2; +$fa-var-medapps: \f3c6; +$fa-var-medium: \f23a; +$fa-var-medium-m: \f3c7; +$fa-var-medkit: \f0fa; +$fa-var-medrt: \f3c8; +$fa-var-meetup: \f2e0; +$fa-var-megaport: \f5a3; +$fa-var-meh: \f11a; +$fa-var-meh-blank: \f5a4; +$fa-var-meh-rolling-eyes: \f5a5; +$fa-var-memory: \f538; +$fa-var-mercury: \f223; +$fa-var-microchip: \f2db; +$fa-var-microphone: \f130; +$fa-var-microphone-alt: \f3c9; +$fa-var-microphone-alt-slash: \f539; +$fa-var-microphone-slash: \f131; +$fa-var-microsoft: \f3ca; +$fa-var-minus: \f068; +$fa-var-minus-circle: \f056; +$fa-var-minus-square: \f146; +$fa-var-mix: \f3cb; +$fa-var-mixcloud: \f289; +$fa-var-mizuni: \f3cc; +$fa-var-mobile: \f10b; +$fa-var-mobile-alt: \f3cd; +$fa-var-modx: \f285; +$fa-var-monero: \f3d0; +$fa-var-money-bill: \f0d6; +$fa-var-money-bill-alt: \f3d1; +$fa-var-money-bill-wave: \f53a; +$fa-var-money-bill-wave-alt: \f53b; +$fa-var-money-check: \f53c; +$fa-var-money-check-alt: \f53d; +$fa-var-monument: \f5a6; +$fa-var-moon: \f186; +$fa-var-mortar-pestle: \f5a7; +$fa-var-motorcycle: \f21c; +$fa-var-mouse-pointer: \f245; +$fa-var-music: \f001; +$fa-var-napster: \f3d2; +$fa-var-neuter: \f22c; +$fa-var-newspaper: \f1ea; +$fa-var-nimblr: \f5a8; +$fa-var-nintendo-switch: \f418; +$fa-var-node: \f419; +$fa-var-node-js: \f3d3; +$fa-var-not-equal: \f53e; +$fa-var-notes-medical: \f481; +$fa-var-npm: \f3d4; +$fa-var-ns8: \f3d5; +$fa-var-nutritionix: \f3d6; +$fa-var-object-group: \f247; +$fa-var-object-ungroup: \f248; +$fa-var-odnoklassniki: \f263; +$fa-var-odnoklassniki-square: \f264; +$fa-var-old-republic: \f510; +$fa-var-opencart: \f23d; +$fa-var-openid: \f19b; +$fa-var-opera: \f26a; +$fa-var-optin-monster: \f23c; +$fa-var-osi: \f41a; +$fa-var-outdent: \f03b; +$fa-var-page4: \f3d7; +$fa-var-pagelines: \f18c; +$fa-var-paint-brush: \f1fc; +$fa-var-paint-roller: \f5aa; +$fa-var-palette: \f53f; +$fa-var-palfed: \f3d8; +$fa-var-pallet: \f482; +$fa-var-paper-plane: \f1d8; +$fa-var-paperclip: \f0c6; +$fa-var-parachute-box: \f4cd; +$fa-var-paragraph: \f1dd; +$fa-var-parking: \f540; +$fa-var-passport: \f5ab; +$fa-var-paste: \f0ea; +$fa-var-patreon: \f3d9; +$fa-var-pause: \f04c; +$fa-var-pause-circle: \f28b; +$fa-var-paw: \f1b0; +$fa-var-paypal: \f1ed; +$fa-var-pen: \f304; +$fa-var-pen-alt: \f305; +$fa-var-pen-fancy: \f5ac; +$fa-var-pen-nib: \f5ad; +$fa-var-pen-square: \f14b; +$fa-var-pencil-alt: \f303; +$fa-var-pencil-ruler: \f5ae; +$fa-var-people-carry: \f4ce; +$fa-var-percent: \f295; +$fa-var-percentage: \f541; +$fa-var-periscope: \f3da; +$fa-var-phabricator: \f3db; +$fa-var-phoenix-framework: \f3dc; +$fa-var-phoenix-squadron: \f511; +$fa-var-phone: \f095; +$fa-var-phone-slash: \f3dd; +$fa-var-phone-square: \f098; +$fa-var-phone-volume: \f2a0; +$fa-var-php: \f457; +$fa-var-pied-piper: \f2ae; +$fa-var-pied-piper-alt: \f1a8; +$fa-var-pied-piper-hat: \f4e5; +$fa-var-pied-piper-pp: \f1a7; +$fa-var-piggy-bank: \f4d3; +$fa-var-pills: \f484; +$fa-var-pinterest: \f0d2; +$fa-var-pinterest-p: \f231; +$fa-var-pinterest-square: \f0d3; +$fa-var-plane: \f072; +$fa-var-plane-arrival: \f5af; +$fa-var-plane-departure: \f5b0; +$fa-var-play: \f04b; +$fa-var-play-circle: \f144; +$fa-var-playstation: \f3df; +$fa-var-plug: \f1e6; +$fa-var-plus: \f067; +$fa-var-plus-circle: \f055; +$fa-var-plus-square: \f0fe; +$fa-var-podcast: \f2ce; +$fa-var-poo: \f2fe; +$fa-var-portrait: \f3e0; +$fa-var-pound-sign: \f154; +$fa-var-power-off: \f011; +$fa-var-prescription: \f5b1; +$fa-var-prescription-bottle: \f485; +$fa-var-prescription-bottle-alt: \f486; +$fa-var-print: \f02f; +$fa-var-procedures: \f487; +$fa-var-product-hunt: \f288; +$fa-var-project-diagram: \f542; +$fa-var-pushed: \f3e1; +$fa-var-puzzle-piece: \f12e; +$fa-var-python: \f3e2; +$fa-var-qq: \f1d6; +$fa-var-qrcode: \f029; +$fa-var-question: \f128; +$fa-var-question-circle: \f059; +$fa-var-quidditch: \f458; +$fa-var-quinscape: \f459; +$fa-var-quora: \f2c4; +$fa-var-quote-left: \f10d; +$fa-var-quote-right: \f10e; +$fa-var-r-project: \f4f7; +$fa-var-random: \f074; +$fa-var-ravelry: \f2d9; +$fa-var-react: \f41b; +$fa-var-readme: \f4d5; +$fa-var-rebel: \f1d0; +$fa-var-receipt: \f543; +$fa-var-recycle: \f1b8; +$fa-var-red-river: \f3e3; +$fa-var-reddit: \f1a1; +$fa-var-reddit-alien: \f281; +$fa-var-reddit-square: \f1a2; +$fa-var-redo: \f01e; +$fa-var-redo-alt: \f2f9; +$fa-var-registered: \f25d; +$fa-var-rendact: \f3e4; +$fa-var-renren: \f18b; +$fa-var-reply: \f3e5; +$fa-var-reply-all: \f122; +$fa-var-replyd: \f3e6; +$fa-var-researchgate: \f4f8; +$fa-var-resolving: \f3e7; +$fa-var-retweet: \f079; +$fa-var-rev: \f5b2; +$fa-var-ribbon: \f4d6; +$fa-var-road: \f018; +$fa-var-robot: \f544; +$fa-var-rocket: \f135; +$fa-var-rocketchat: \f3e8; +$fa-var-rockrms: \f3e9; +$fa-var-rss: \f09e; +$fa-var-rss-square: \f143; +$fa-var-ruble-sign: \f158; +$fa-var-ruler: \f545; +$fa-var-ruler-combined: \f546; +$fa-var-ruler-horizontal: \f547; +$fa-var-ruler-vertical: \f548; +$fa-var-rupee-sign: \f156; +$fa-var-sad-cry: \f5b3; +$fa-var-sad-tear: \f5b4; +$fa-var-safari: \f267; +$fa-var-sass: \f41e; +$fa-var-save: \f0c7; +$fa-var-schlix: \f3ea; +$fa-var-school: \f549; +$fa-var-screwdriver: \f54a; +$fa-var-scribd: \f28a; +$fa-var-search: \f002; +$fa-var-search-minus: \f010; +$fa-var-search-plus: \f00e; +$fa-var-searchengin: \f3eb; +$fa-var-seedling: \f4d8; +$fa-var-sellcast: \f2da; +$fa-var-sellsy: \f213; +$fa-var-server: \f233; +$fa-var-servicestack: \f3ec; +$fa-var-share: \f064; +$fa-var-share-alt: \f1e0; +$fa-var-share-alt-square: \f1e1; +$fa-var-share-square: \f14d; +$fa-var-shekel-sign: \f20b; +$fa-var-shield-alt: \f3ed; +$fa-var-ship: \f21a; +$fa-var-shipping-fast: \f48b; +$fa-var-shirtsinbulk: \f214; +$fa-var-shoe-prints: \f54b; +$fa-var-shopping-bag: \f290; +$fa-var-shopping-basket: \f291; +$fa-var-shopping-cart: \f07a; +$fa-var-shopware: \f5b5; +$fa-var-shower: \f2cc; +$fa-var-shuttle-van: \f5b6; +$fa-var-sign: \f4d9; +$fa-var-sign-in-alt: \f2f6; +$fa-var-sign-language: \f2a7; +$fa-var-sign-out-alt: \f2f5; +$fa-var-signal: \f012; +$fa-var-signature: \f5b7; +$fa-var-simplybuilt: \f215; +$fa-var-sistrix: \f3ee; +$fa-var-sitemap: \f0e8; +$fa-var-sith: \f512; +$fa-var-skull: \f54c; +$fa-var-skyatlas: \f216; +$fa-var-skype: \f17e; +$fa-var-slack: \f198; +$fa-var-slack-hash: \f3ef; +$fa-var-sliders-h: \f1de; +$fa-var-slideshare: \f1e7; +$fa-var-smile: \f118; +$fa-var-smile-beam: \f5b8; +$fa-var-smile-wink: \f4da; +$fa-var-smoking: \f48d; +$fa-var-smoking-ban: \f54d; +$fa-var-snapchat: \f2ab; +$fa-var-snapchat-ghost: \f2ac; +$fa-var-snapchat-square: \f2ad; +$fa-var-snowflake: \f2dc; +$fa-var-solar-panel: \f5ba; +$fa-var-sort: \f0dc; +$fa-var-sort-alpha-down: \f15d; +$fa-var-sort-alpha-up: \f15e; +$fa-var-sort-amount-down: \f160; +$fa-var-sort-amount-up: \f161; +$fa-var-sort-down: \f0dd; +$fa-var-sort-numeric-down: \f162; +$fa-var-sort-numeric-up: \f163; +$fa-var-sort-up: \f0de; +$fa-var-soundcloud: \f1be; +$fa-var-spa: \f5bb; +$fa-var-space-shuttle: \f197; +$fa-var-speakap: \f3f3; +$fa-var-spinner: \f110; +$fa-var-splotch: \f5bc; +$fa-var-spotify: \f1bc; +$fa-var-spray-can: \f5bd; +$fa-var-square: \f0c8; +$fa-var-square-full: \f45c; +$fa-var-squarespace: \f5be; +$fa-var-stack-exchange: \f18d; +$fa-var-stack-overflow: \f16c; +$fa-var-stamp: \f5bf; +$fa-var-star: \f005; +$fa-var-star-half: \f089; +$fa-var-star-half-alt: \f5c0; +$fa-var-staylinked: \f3f5; +$fa-var-steam: \f1b6; +$fa-var-steam-square: \f1b7; +$fa-var-steam-symbol: \f3f6; +$fa-var-step-backward: \f048; +$fa-var-step-forward: \f051; +$fa-var-stethoscope: \f0f1; +$fa-var-sticker-mule: \f3f7; +$fa-var-sticky-note: \f249; +$fa-var-stop: \f04d; +$fa-var-stop-circle: \f28d; +$fa-var-stopwatch: \f2f2; +$fa-var-store: \f54e; +$fa-var-store-alt: \f54f; +$fa-var-strava: \f428; +$fa-var-stream: \f550; +$fa-var-street-view: \f21d; +$fa-var-strikethrough: \f0cc; +$fa-var-stripe: \f429; +$fa-var-stripe-s: \f42a; +$fa-var-stroopwafel: \f551; +$fa-var-studiovinari: \f3f8; +$fa-var-stumbleupon: \f1a4; +$fa-var-stumbleupon-circle: \f1a3; +$fa-var-subscript: \f12c; +$fa-var-subway: \f239; +$fa-var-suitcase: \f0f2; +$fa-var-suitcase-rolling: \f5c1; +$fa-var-sun: \f185; +$fa-var-superpowers: \f2dd; +$fa-var-superscript: \f12b; +$fa-var-supple: \f3f9; +$fa-var-surprise: \f5c2; +$fa-var-swatchbook: \f5c3; +$fa-var-swimmer: \f5c4; +$fa-var-swimming-pool: \f5c5; +$fa-var-sync: \f021; +$fa-var-sync-alt: \f2f1; +$fa-var-syringe: \f48e; +$fa-var-table: \f0ce; +$fa-var-table-tennis: \f45d; +$fa-var-tablet: \f10a; +$fa-var-tablet-alt: \f3fa; +$fa-var-tablets: \f490; +$fa-var-tachometer-alt: \f3fd; +$fa-var-tag: \f02b; +$fa-var-tags: \f02c; +$fa-var-tape: \f4db; +$fa-var-tasks: \f0ae; +$fa-var-taxi: \f1ba; +$fa-var-teamspeak: \f4f9; +$fa-var-telegram: \f2c6; +$fa-var-telegram-plane: \f3fe; +$fa-var-tencent-weibo: \f1d5; +$fa-var-terminal: \f120; +$fa-var-text-height: \f034; +$fa-var-text-width: \f035; +$fa-var-th: \f00a; +$fa-var-th-large: \f009; +$fa-var-th-list: \f00b; +$fa-var-themeco: \f5c6; +$fa-var-themeisle: \f2b2; +$fa-var-thermometer: \f491; +$fa-var-thermometer-empty: \f2cb; +$fa-var-thermometer-full: \f2c7; +$fa-var-thermometer-half: \f2c9; +$fa-var-thermometer-quarter: \f2ca; +$fa-var-thermometer-three-quarters: \f2c8; +$fa-var-thumbs-down: \f165; +$fa-var-thumbs-up: \f164; +$fa-var-thumbtack: \f08d; +$fa-var-ticket-alt: \f3ff; +$fa-var-times: \f00d; +$fa-var-times-circle: \f057; +$fa-var-tint: \f043; +$fa-var-tint-slash: \f5c7; +$fa-var-tired: \f5c8; +$fa-var-toggle-off: \f204; +$fa-var-toggle-on: \f205; +$fa-var-toolbox: \f552; +$fa-var-tooth: \f5c9; +$fa-var-trade-federation: \f513; +$fa-var-trademark: \f25c; +$fa-var-train: \f238; +$fa-var-transgender: \f224; +$fa-var-transgender-alt: \f225; +$fa-var-trash: \f1f8; +$fa-var-trash-alt: \f2ed; +$fa-var-tree: \f1bb; +$fa-var-trello: \f181; +$fa-var-tripadvisor: \f262; +$fa-var-trophy: \f091; +$fa-var-truck: \f0d1; +$fa-var-truck-loading: \f4de; +$fa-var-truck-moving: \f4df; +$fa-var-tshirt: \f553; +$fa-var-tty: \f1e4; +$fa-var-tumblr: \f173; +$fa-var-tumblr-square: \f174; +$fa-var-tv: \f26c; +$fa-var-twitch: \f1e8; +$fa-var-twitter: \f099; +$fa-var-twitter-square: \f081; +$fa-var-typo3: \f42b; +$fa-var-uber: \f402; +$fa-var-uikit: \f403; +$fa-var-umbrella: \f0e9; +$fa-var-umbrella-beach: \f5ca; +$fa-var-underline: \f0cd; +$fa-var-undo: \f0e2; +$fa-var-undo-alt: \f2ea; +$fa-var-uniregistry: \f404; +$fa-var-universal-access: \f29a; +$fa-var-university: \f19c; +$fa-var-unlink: \f127; +$fa-var-unlock: \f09c; +$fa-var-unlock-alt: \f13e; +$fa-var-untappd: \f405; +$fa-var-upload: \f093; +$fa-var-usb: \f287; +$fa-var-user: \f007; +$fa-var-user-alt: \f406; +$fa-var-user-alt-slash: \f4fa; +$fa-var-user-astronaut: \f4fb; +$fa-var-user-check: \f4fc; +$fa-var-user-circle: \f2bd; +$fa-var-user-clock: \f4fd; +$fa-var-user-cog: \f4fe; +$fa-var-user-edit: \f4ff; +$fa-var-user-friends: \f500; +$fa-var-user-graduate: \f501; +$fa-var-user-lock: \f502; +$fa-var-user-md: \f0f0; +$fa-var-user-minus: \f503; +$fa-var-user-ninja: \f504; +$fa-var-user-plus: \f234; +$fa-var-user-secret: \f21b; +$fa-var-user-shield: \f505; +$fa-var-user-slash: \f506; +$fa-var-user-tag: \f507; +$fa-var-user-tie: \f508; +$fa-var-user-times: \f235; +$fa-var-users: \f0c0; +$fa-var-users-cog: \f509; +$fa-var-ussunnah: \f407; +$fa-var-utensil-spoon: \f2e5; +$fa-var-utensils: \f2e7; +$fa-var-vaadin: \f408; +$fa-var-vector-square: \f5cb; +$fa-var-venus: \f221; +$fa-var-venus-double: \f226; +$fa-var-venus-mars: \f228; +$fa-var-viacoin: \f237; +$fa-var-viadeo: \f2a9; +$fa-var-viadeo-square: \f2aa; +$fa-var-vial: \f492; +$fa-var-vials: \f493; +$fa-var-viber: \f409; +$fa-var-video: \f03d; +$fa-var-video-slash: \f4e2; +$fa-var-vimeo: \f40a; +$fa-var-vimeo-square: \f194; +$fa-var-vimeo-v: \f27d; +$fa-var-vine: \f1ca; +$fa-var-vk: \f189; +$fa-var-vnv: \f40b; +$fa-var-volleyball-ball: \f45f; +$fa-var-volume-down: \f027; +$fa-var-volume-off: \f026; +$fa-var-volume-up: \f028; +$fa-var-vuejs: \f41f; +$fa-var-walking: \f554; +$fa-var-wallet: \f555; +$fa-var-warehouse: \f494; +$fa-var-weebly: \f5cc; +$fa-var-weibo: \f18a; +$fa-var-weight: \f496; +$fa-var-weight-hanging: \f5cd; +$fa-var-weixin: \f1d7; +$fa-var-whatsapp: \f232; +$fa-var-whatsapp-square: \f40c; +$fa-var-wheelchair: \f193; +$fa-var-whmcs: \f40d; +$fa-var-wifi: \f1eb; +$fa-var-wikipedia-w: \f266; +$fa-var-window-close: \f410; +$fa-var-window-maximize: \f2d0; +$fa-var-window-minimize: \f2d1; +$fa-var-window-restore: \f2d2; +$fa-var-windows: \f17a; +$fa-var-wine-glass: \f4e3; +$fa-var-wine-glass-alt: \f5ce; +$fa-var-wix: \f5cf; +$fa-var-wolf-pack-battalion: \f514; +$fa-var-won-sign: \f159; +$fa-var-wordpress: \f19a; +$fa-var-wordpress-simple: \f411; +$fa-var-wpbeginner: \f297; +$fa-var-wpexplorer: \f2de; +$fa-var-wpforms: \f298; +$fa-var-wrench: \f0ad; +$fa-var-x-ray: \f497; +$fa-var-xbox: \f412; +$fa-var-xing: \f168; +$fa-var-xing-square: \f169; +$fa-var-y-combinator: \f23b; +$fa-var-yahoo: \f19e; +$fa-var-yandex: \f413; +$fa-var-yandex-international: \f414; +$fa-var-yelp: \f1e9; +$fa-var-yen-sign: \f157; +$fa-var-yoast: \f2b1; +$fa-var-youtube: \f167; +$fa-var-youtube-square: \f431; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/brands.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/brands.scss new file mode 100644 index 0000000000..4aba5c760f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/brands.scss @@ -0,0 +1,21 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import 'variables'; + +@font-face { + font-family: 'Font Awesome 5 Brands'; + font-style: normal; + font-weight: normal; + src: url('#{$fa-font-path}/fa-brands-400.eot'); + src: url('#{$fa-font-path}/fa-brands-400.eot?#iefix') format('embedded-opentype'), + url('#{$fa-font-path}/fa-brands-400.woff2') format('woff2'), + url('#{$fa-font-path}/fa-brands-400.woff') format('woff'), + url('#{$fa-font-path}/fa-brands-400.ttf') format('truetype'), + url('#{$fa-font-path}/fa-brands-400.svg#fontawesome') format('svg'); +} + +.fab { + font-family: 'Font Awesome 5 Brands'; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/fa-brands.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/fa-brands.scss new file mode 100644 index 0000000000..1b3ae50191 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/fa-brands.scss @@ -0,0 +1,17 @@ +@import 'variables'; + +@font-face { + font-family: 'Font Awesome 5 Brands'; + font-style: normal; + font-weight: normal; + src: url('#{$fa-font-path}/fa-brands-400.eot'); + src: url('#{$fa-font-path}/fa-brands-400.eot?#iefix') format('embedded-opentype'), + url('#{$fa-font-path}/fa-brands-400.woff2') format('woff2'), + url('#{$fa-font-path}/fa-brands-400.woff') format('woff'), + url('#{$fa-font-path}/fa-brands-400.ttf') format('truetype'), + url('#{$fa-font-path}/fa-brands-400.svg#fontawesome') format('svg'); +} + +.fab { + font-family: 'Font Awesome 5 Brands'; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/fa-regular.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/fa-regular.scss new file mode 100644 index 0000000000..3123f39cbf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/fa-regular.scss @@ -0,0 +1,18 @@ +@import 'variables'; + +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 400; + src: url('#{$fa-font-path}/fa-regular-400.eot'); + src: url('#{$fa-font-path}/fa-regular-400.eot?#iefix') format('embedded-opentype'), + url('#{$fa-font-path}/fa-regular-400.woff2') format('woff2'), + url('#{$fa-font-path}/fa-regular-400.woff') format('woff'), + url('#{$fa-font-path}/fa-regular-400.ttf') format('truetype'), + url('#{$fa-font-path}/fa-regular-400.svg#fontawesome') format('svg'); +} + +.far { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/fa-solid.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/fa-solid.scss new file mode 100644 index 0000000000..d63b2dac18 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/fa-solid.scss @@ -0,0 +1,19 @@ +@import 'variables'; + +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 900; + src: url('#{$fa-font-path}/fa-solid-900.eot'); + src: url('#{$fa-font-path}/fa-solid-900.eot?#iefix') format('embedded-opentype'), + url('#{$fa-font-path}/fa-solid-900.woff2') format('woff2'), + url('#{$fa-font-path}/fa-solid-900.woff') format('woff'), + url('#{$fa-font-path}/fa-solid-900.ttf') format('truetype'), + url('#{$fa-font-path}/fa-solid-900.svg#fontawesome') format('svg'); +} + +.fa, +.fas { + font-family: 'Font Awesome 5 Free'; + font-weight: 900; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/fontawesome.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/fontawesome.scss new file mode 100644 index 0000000000..7b0b5dd872 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/fontawesome.scss @@ -0,0 +1,16 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import 'variables'; +@import 'mixins'; +@import 'core'; +@import 'larger'; +@import 'fixed-width'; +@import 'list'; +@import 'bordered-pulled'; +@import 'animated'; +@import 'rotated-flipped'; +@import 'stacked'; +@import 'icons'; +@import 'screen-reader'; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/regular.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/regular.scss new file mode 100644 index 0000000000..83d6598bc9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/regular.scss @@ -0,0 +1,22 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import 'variables'; + +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 400; + src: url('#{$fa-font-path}/fa-regular-400.eot'); + src: url('#{$fa-font-path}/fa-regular-400.eot?#iefix') format('embedded-opentype'), + url('#{$fa-font-path}/fa-regular-400.woff2') format('woff2'), + url('#{$fa-font-path}/fa-regular-400.woff') format('woff'), + url('#{$fa-font-path}/fa-regular-400.ttf') format('truetype'), + url('#{$fa-font-path}/fa-regular-400.svg#fontawesome') format('svg'); +} + +.far { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/solid.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/solid.scss new file mode 100644 index 0000000000..afe8e3a167 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/solid.scss @@ -0,0 +1,23 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import 'variables'; + +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 900; + src: url('#{$fa-font-path}/fa-solid-900.eot'); + src: url('#{$fa-font-path}/fa-solid-900.eot?#iefix') format('embedded-opentype'), + url('#{$fa-font-path}/fa-solid-900.woff2') format('woff2'), + url('#{$fa-font-path}/fa-solid-900.woff') format('woff'), + url('#{$fa-font-path}/fa-solid-900.ttf') format('truetype'), + url('#{$fa-font-path}/fa-solid-900.svg#fontawesome') format('svg'); +} + +.fa, +.fas { + font-family: 'Font Awesome 5 Free'; + font-weight: 900; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/v4-shims.scss b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/v4-shims.scss new file mode 100644 index 0000000000..79a387a1d8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/scss/v4-shims.scss @@ -0,0 +1,6 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import 'variables'; +@import 'shims'; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/sprites/brands.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/sprites/brands.svg new file mode 100644 index 0000000000..cc0e070fe2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/sprites/brands.svg @@ -0,0 +1,1499 @@ + + + + + 500px + + + + Accessible Icon + + + + Accusoft + + + + App.net + + + + Adversal + + + + affiliatetheme + + + + Algolia + + + + Amazon + + + + Amazon Pay + + + + Amilia + + + + Android + + + + AngelList + + + + Angry Creative + + + + Angular + + + + App Store + + + + iOS App Store + + + + Apper Systems AB + + + + Apple + + + + Apple Pay + + + + Asymmetrik, Ltd. + + + + Audible + + + + Autoprefixer + + + + avianex + + + + Aviato + + + + Amazon Web Services (AWS) + + + + Bandcamp + + + + Behance + + + + Behance Square + + + + BIMobject + + + + Bitbucket + + + + Bitcoin + + + + Bity + + + + Font Awesome Black Tie + + + + BlackBerry + + + + Blogger + + + + Blogger B + + + + Bluetooth + + + + Bluetooth + + + + BTC + + + + Büromöbel-Experte GmbH & Co. KG. + + + + BuySellAds + + + + Amazon Pay Credit Card + + + + American Express Credit Card + + + + Apple Pay Credit Card + + + + Diner's Club Credit Card + + + + Discover Credit Card + + + + JCB Credit Card + + + + MasterCard Credit Card + + + + Paypal Credit Card + + + + Stripe Credit Card + + + + Visa Credit Card + + + + Centercode + + + + Chrome + + + + cloudscale.ch + + + + Cloudsmith + + + + cloudversify + + + + Codepen + + + + Codie Pie + + + + Connect Develop + + + + Contao + + + + cPanel + + + + Creative Commons + + + + Creative Commons Attribution + + + + Creative Commons Noncommercial + + + + Creative Commons Noncommercial (Euro Sign) + + + + Creative Commons Noncommercial (Yen Sign) + + + + Creative Commons No Derivative Works + + + + Creative Commons Public Domain + + + + Creative Commons Public Domain Alternate + + + + Creative Commons Remix + + + + Creative Commons Share Alike + + + + Creative Commons Sampling + + + + Creative Commons Sampling + + + + + Creative Commons Share + + + + CSS 3 Logo + + + + Alternate CSS3 Logo + + + + Cuttlefish + + + + Dungeons & Dragons + + + + DashCube + + + + Delicious Logo + + + + deploy.dog + + + + Deskpro + + + + deviantART + + + + Digg Logo + + + + Digital Ocean + + + + Discord + + + + Discourse + + + + DocHub + + + + Docker + + + + Draft2digital + + + + Dribbble + + + + Dribbble Square + + + + Dropbox + + + + Drupal Logo + + + + Dyalog + + + + Earlybirds + + + + eBay + + + + Edge Browser + + + + Elementor + + + + Ember + + + + Galactic Empire + + + + Envira Gallery + + + + Erlang + + + + Ethereum + + + + Etsy + + + + ExpeditedSSL + + + + Facebook + + + + Facebook F + + + + Facebook Messenger + + + + Facebook Square + + + + Firefox + + + + First Order + + + + Alternate First Order + + + + firstdraft + + + + Flickr + + + + Flipboard + + + + Fly + + + + Font Awesome + + + + Alternate Font Awesome + + + + Font Awesome Flag + + + + Font Awesome Full Logo + + + + Fonticons + + + + Fonticons Fi + + + + Fort Awesome + + + + Alternate Fort Awesome + + + + Forumbee + + + + Foursquare + + + + Free Code Camp + + + + FreeBSD + + + + Fulcrum + + + + Galactic Republic + + + + Galactic Senate + + + + Get Pocket + + + + GG Currency + + + + GG Currency Circle + + + + Git + + + + Git Square + + + + GitHub + + + + Alternate GitHub + + + + GitHub Square + + + + GitKraken + + + + GitLab + + + + Gitter + + + + Glide + + + + Glide G + + + + Gofore + + + + Goodreads + + + + Goodreads G + + + + Google Logo + + + + Google Drive + + + + Google Play + + + + Google Plus + + + + Google Plus G + + + + Google Plus Square + + + + Google Wallet + + + + Gratipay (Gittip) + + + + Grav + + + + Gripfire, Inc. + + + + Grunt + + + + Gulp + + + + Hacker News + + + + Hacker News Square + + + + Hips + + + + HireAHelper + + + + Hooli + + + + Hornbill + + + + Hotjar + + + + Houzz + + + + HTML 5 Logo + + + + HubSpot + + + + IMDB + + + + Instagram + + + + Internet-explorer + + + + ioxhost + + + + iTunes + + + + Itunes Note + + + + Java + + + + Jedi Order + + + + Jenkis + + + + Joget + + + + Joomla Logo + + + + JavaScript (JS) + + + + JavaScript (JS) Square + + + + jsFiddle + + + + Keybase + + + + KeyCDN + + + + Kickstarter + + + + Kickstarter K + + + + KORVUE + + + + Laravel + + + + last.fm + + + + last.fm Square + + + + Leanpub + + + + Less + + + + Line + + + + LinkedIn + + + + LinkedIn In + + + + Linode + + + + Linux + + + + lyft + + + + Magento + + + + Mailchimp + + + + Mandalorian + + + + Mastodon + + + + MaxCDN + + + + MedApps + + + + Medium + + + + Medium M + + + + MRT + + + + Meetup + + + + Megaport + + + + Microsoft + + + + Mix + + + + Mixcloud + + + + Mizuni + + + + MODX + + + + Monero + + + + Napster + + + + Nimblr + + + + Nintendo Switch + + + + Node.js + + + + Node.js JS + + + + npm + + + + NS8 + + + + Nutritionix + + + + Odnoklassniki + + + + Odnoklassniki Square + + + + Old Republic + + + + OpenCart + + + + OpenID + + + + Opera + + + + Optin Monster + + + + Open Source Initiative + + + + page4 Corporation + + + + Pagelines + + + + Palfed + + + + Patreon + + + + Paypal + + + + Periscope + + + + Phabricator + + + + Phoenix Framework + + + + Phoenix Squadron + + + + PHP + + + + Pied Piper Logo + + + + Alternate Pied Piper Logo + + + + Pied Piper-hat + + + + Pied Piper PP Logo (Old) + + + + Pinterest + + + + Pinterest P + + + + Pinterest Square + + + + PlayStation + + + + Product Hunt + + + + Pushed + + + + Python + + + + QQ + + + + QuinScape + + + + Quora + + + + R Project + + + + Ravelry + + + + React + + + + ReadMe + + + + Rebel Alliance + + + + red river + + + + reddit Logo + + + + reddit Alien + + + + reddit Square + + + + Rendact + + + + Renren + + + + replyd + + + + Researchgate + + + + Resolving + + + + Rev.io + + + + Rocket.Chat + + + + Rockrms + + + + Safari + + + + Sass + + + + SCHLIX + + + + Scribd + + + + Searchengin + + + + Sellcast + + + + Sellsy + + + + Servicestack + + + + Shirts in Bulk + + + + Shopware + + + + SimplyBuilt + + + + SISTRIX + + + + Sith + + + + skyatlas + + + + Skype + + + + Slack Logo + + + + Slack Hashtag + + + + Slideshare + + + + Snapchat + + + + Snapchat Ghost + + + + Snapchat Square + + + + SoundCloud + + + + Speakap + + + + Spotify + + + + Squarespace + + + + Stack Exchange + + + + Stack Overflow + + + + StayLinked + + + + Steam + + + + Steam Square + + + + Steam Symbol + + + + Sticker Mule + + + + Strava + + + + Stripe + + + + Stripe S + + + + Studio Vinari + + + + StumbleUpon Logo + + + + StumbleUpon Circle + + + + Superpowers + + + + Supple + + + + TeamSpeak + + + + Telegram + + + + Telegram Plane + + + + Tencent Weibo + + + + Themeco + + + + ThemeIsle + + + + Trade Federation + + + + Trello + + + + TripAdvisor + + + + Tumblr + + + + Tumblr Square + + + + Twitch + + + + Twitter + + + + Twitter Square + + + + Typo3 + + + + Uber + + + + UIkit + + + + Uniregistry + + + + Untappd + + + + USB + + + + us-Sunnah Foundation + + + + Vaadin + + + + Viacoin + + + + Viadeo + + + + Viadeo Square + + + + Viber + + + + Vimeo + + + + Vimeo Square + + + + Vimeo + + + + Vine + + + + VK + + + + VNV + + + + Vue.js + + + + Weebly + + + + Weibo + + + + Weixin (WeChat) + + + + What's App + + + + What's App Square + + + + WHMCS + + + + Wikipedia W + + + + Windows + + + + Wix + + + + Wolf Pack-battalion + + + + WordPress Logo + + + + Wordpress Simple + + + + WPBeginner + + + + WPExplorer + + + + WPForms + + + + Xbox + + + + Xing + + + + Xing Square + + + + Y Combinator + + + + Yahoo Logo + + + + Yandex + + + + Yandex International + + + + Yelp + + + + Yoast + + + + YouTube + + + + YouTube Square + + + diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/sprites/regular.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/sprites/regular.svg new file mode 100644 index 0000000000..54634aab6e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/sprites/regular.svg @@ -0,0 +1,615 @@ + + + + + Address Book + + + + Address Card + + + + Angry Face + + + + Alternate Arrow Circle Down + + + + Alternate Arrow Circle Left + + + + Alternate Arrow Circle Right + + + + Alternate Arrow Circle Up + + + + bell + + + + Bell Slash + + + + bookmark + + + + Building + + + + Calendar + + + + Alternate Calendar + + + + Calendar Check + + + + Calendar Minus + + + + Calendar Plus + + + + Calendar Times + + + + Caret Square Down + + + + Caret Square Left + + + + Caret Square Right + + + + Caret Square Up + + + + Bar Chart + + + + Check Circle + + + + Check Square + + + + Circle + + + + Clipboard + + + + Clock + + + + Clone + + + + Closed Captioning + + + + comment + + + + Alternate Comment + + + + Comment Dots + + + + comments + + + + Compass + + + + Copy + + + + Copyright + + + + Credit Card + + + + Dizzy Face + + + + Dot Circle + + + + Edit + + + + Envelope + + + + Envelope Open + + + + Eye + + + + Eye Slash + + + + File + + + + Alternate File + + + + Archive File + + + + Audio File + + + + Code File + + + + Excel File + + + + Image File + + + + PDF File + + + + Powerpoint File + + + + Video File + + + + Word File + + + + flag + + + + Flushed Face + + + + Folder + + + + Folder Open + + + + Font Awesome Full Logo + + + + Frowning Face + + + + Frowning Face With Open Mouth + + + + Futbol + + + + Gem + + + + Grimacing Face + + + + Grinning Face + + + + Alternate Grinning Face + + + + Grinning Face With Smiling Eyes + + + + Grinning Face With Sweat + + + + Smiling Face With Heart-Eyes + + + + Grinning Squinting Face + + + + Rolling on the Floor Laughing + + + + Star-Struck + + + + Face With Tears of Joy + + + + Face With Tongue + + + + Squinting Face With Tongue + + + + Winking Face With Tongue + + + + Grinning Winking Face + + + + Lizard (Hand) + + + + Paper (Hand) + + + + Peace (Hand) + + + + Hand Pointing Down + + + + Hand Pointing Left + + + + Hand Pointing Right + + + + Hand Pointing Up + + + + Pointer (Hand) + + + + Rock (Hand) + + + + Scissors (Hand) + + + + Spock (Hand) + + + + Handshake + + + + HDD + + + + Heart + + + + hospital + + + + Hourglass + + + + Identification Badge + + + + Identification Card + + + + Image + + + + Images + + + + Keyboard + + + + Kissing Face + + + + Kissing Face With Smiling Eyes + + + + Face Blowing a Kiss + + + + Grinning Face With Big Eyes + + + + Laugh Face with Beaming Eyes + + + + Laughing Squinting Face + + + + Laughing Winking Face + + + + Lemon + + + + Life Ring + + + + Lightbulb + + + + Alternate List + + + + Map + + + + Neutral Face + + + + Face Without Mouth + + + + Face With Rolling Eyes + + + + Minus Square + + + + Alternate Money Bill + + + + Moon + + + + Newspaper + + + + Object Group + + + + Object Ungroup + + + + Paper Plane + + + + Pause Circle + + + + Play Circle + + + + Plus Square + + + + Question Circle + + + + Registered Trademark + + + + Crying Face + + + + Loudly Crying Face + + + + Save + + + + Share Square + + + + Smiling Face + + + + Beaming Face With Smiling Eyes + + + + Winking Face + + + + Snowflake + + + + Square + + + + Star + + + + star-half + + + + Sticky Note + + + + Stop Circle + + + + Sun + + + + Hushed Face + + + + thumbs-down + + + + thumbs-up + + + + Times Circle + + + + Tired Face + + + + Alternate Trash + + + + User + + + + User Circle + + + + Window Close + + + + Window Maximize + + + + Window Minimize + + + + Window Restore + + + diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/sprites/solid.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/sprites/solid.svg new file mode 100644 index 0000000000..eeee6065c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/sprites/solid.svg @@ -0,0 +1,2967 @@ + + + + + Address Book + + + + Address Card + + + + adjust + + + + align-center + + + + align-justify + + + + align-left + + + + align-right + + + + Allergies + + + + ambulance + + + + American Sign Language Interpreting + + + + Anchor + + + + Angle Double Down + + + + Angle Double Left + + + + Angle Double Right + + + + Angle Double Up + + + + angle-down + + + + angle-left + + + + angle-right + + + + angle-up + + + + Angry Face + + + + Archive + + + + Archway + + + + Alternate Arrow Circle Down + + + + Alternate Arrow Circle Left + + + + Alternate Arrow Circle Right + + + + Alternate Arrow Circle Up + + + + Arrow Circle Down + + + + Arrow Circle Left + + + + Arrow Circle Right + + + + Arrow Circle Up + + + + arrow-down + + + + arrow-left + + + + arrow-right + + + + arrow-up + + + + Alternate Arrows + + + + Alternate Arrows Horizontal + + + + Alternate Arrows Vertical + + + + Assistive Listening Systems + + + + asterisk + + + + At + + + + Atlas + + + + Audio Description + + + + Award + + + + Backspace + + + + backward + + + + Balance Scale + + + + ban + + + + Band-Aid + + + + barcode + + + + Bars + + + + Baseball Ball + + + + Basketball Ball + + + + Bath + + + + Battery Empty + + + + Battery Full + + + + Battery 1/2 Full + + + + Battery 1/4 Full + + + + Battery 3/4 Full + + + + Bed + + + + beer + + + + bell + + + + Bell Slash + + + + Bezier Curve + + + + Bicycle + + + + Binoculars + + + + Birthday Cake + + + + Blender + + + + Blind + + + + bold + + + + Lightning Bolt + + + + Bomb + + + + Bong + + + + book + + + + Book Open + + + + bookmark + + + + Bowling Ball + + + + Box + + + + Box Open + + + + Boxes + + + + Braille + + + + Briefcase + + + + Medical Briefcase + + + + Broadcast Tower + + + + Broom + + + + Brush + + + + Bug + + + + Building + + + + bullhorn + + + + Bullseye + + + + Burn + + + + Bus + + + + Bus Alt + + + + Calculator + + + + Calendar + + + + Alternate Calendar + + + + Calendar Check + + + + Calendar Minus + + + + Calendar Plus + + + + Calendar Times + + + + camera + + + + Retro Camera + + + + Cannabis + + + + Capsules + + + + Car + + + + Caret Down + + + + Caret Left + + + + Caret Right + + + + Caret Square Down + + + + Caret Square Left + + + + Caret Square Right + + + + Caret Square Up + + + + Caret Up + + + + Shopping Cart Arrow Down + + + + Add to Shopping Cart + + + + certificate + + + + Chalkboard + + + + Chalkboard Teacher + + + + Area Chart + + + + Bar Chart + + + + Line Chart + + + + Pie Chart + + + + Check + + + + Check Circle + + + + Check Double + + + + Check Square + + + + Chess + + + + Chess Bishop + + + + Chess Board + + + + Chess King + + + + Chess Knight + + + + Chess Pawn + + + + Chess Queen + + + + Chess Rook + + + + Chevron Circle Down + + + + Chevron Circle Left + + + + Chevron Circle Right + + + + Chevron Circle Up + + + + chevron-down + + + + chevron-left + + + + chevron-right + + + + chevron-up + + + + Child + + + + Church + + + + Circle + + + + Circle Notched + + + + Clipboard + + + + Clipboard Check + + + + Clipboard List + + + + Clock + + + + Clone + + + + Closed Captioning + + + + Cloud + + + + Alternate Cloud Download + + + + Alternate Cloud Upload + + + + Cocktail + + + + Code + + + + Code Branch + + + + Coffee + + + + cog + + + + cogs + + + + Coins + + + + Columns + + + + comment + + + + Alternate Comment + + + + Comment Dots + + + + Comment Slash + + + + comments + + + + Compact Disc + + + + Compass + + + + Compress + + + + Concierge Bell + + + + Cookie + + + + Cookie Bite + + + + Copy + + + + Copyright + + + + Couch + + + + Credit Card + + + + crop + + + + Alternate Crop + + + + Crosshairs + + + + Crow + + + + Crown + + + + Cube + + + + Cubes + + + + Cut + + + + Database + + + + Deaf + + + + Desktop + + + + Diagnoses + + + + Dice + + + + Dice Five + + + + Dice Four + + + + Dice One + + + + Dice Six + + + + Dice Three + + + + Dice Two + + + + Digital Tachograph + + + + Divide + + + + Dizzy Face + + + + DNA + + + + Dollar Sign + + + + Dolly + + + + Dolly Flatbed + + + + + Door Closed + + + + Door Open + + + + Dot Circle + + + + Dove + + + + Download + + + + Drafting Compass + + + + Drum + + + + Drum Steelpan + + + + Dumbbell + + + + Edit + + + + eject + + + + Horizontal Ellipsis + + + + Vertical Ellipsis + + + + Envelope + + + + Envelope Open + + + + Envelope Square + + + + Equals + + + + eraser + + + + Euro Sign + + + + Alternate Exchange + + + + exclamation + + + + Exclamation Circle + + + + Exclamation Triangle + + + + Expand + + + + Alternate Expand Arrows + + + + Alternate External Link + + + + Alternate External Link Square + + + + Eye + + + + Eye Dropper + + + + Eye Slash + + + + fast-backward + + + + fast-forward + + + + Fax + + + + Feather + + + + Feather Alt + + + + Female + + + + fighter-jet + + + + File + + + + Alternate File + + + + Archive File + + + + Audio File + + + + Code File + + + + File Contract + + + + File Download + + + + Excel File + + + + File Export + + + + Image File + + + + File Import + + + + File Invoice + + + + File Invoice with US Dollar + + + + Medical File + + + + Alternate Medical File + + + + PDF File + + + + Powerpoint File + + + + File Prescription + + + + File Signature + + + + File Upload + + + + Video File + + + + Word File + + + + Fill + + + + Fill Drip + + + + Film + + + + Filter + + + + Fingerprint + + + + fire + + + + fire-extinguisher + + + + First Aid + + + + Fish + + + + flag + + + + flag-checkered + + + + Flask + + + + Flushed Face + + + + Folder + + + + Folder Open + + + + font + + + + Font Awesome Full Logo + + + + Football Ball + + + + forward + + + + Frog + + + + Frowning Face + + + + Frowning Face With Open Mouth + + + + Futbol + + + + Gamepad + + + + Gas Pump + + + + Gavel + + + + Gem + + + + Genderless + + + + gift + + + + Martini Glass + + + + Glass Martini-alt + + + + Glasses + + + + Globe + + + + Globe with Africa shown + + + + Globe with Americas shown + + + + Globe with Asia shown + + + + Golf Ball + + + + Graduation Cap + + + + Greater Than + + + + Greater Than Equal To + + + + Grimacing Face + + + + Grinning Face + + + + Alternate Grinning Face + + + + Grinning Face With Smiling Eyes + + + + Grinning Face With Sweat + + + + Smiling Face With Heart-Eyes + + + + Grinning Squinting Face + + + + Rolling on the Floor Laughing + + + + Star-Struck + + + + Face With Tears of Joy + + + + Face With Tongue + + + + Squinting Face With Tongue + + + + Winking Face With Tongue + + + + Grinning Winking Face + + + + Grip Horizontal + + + + Grip Vertical + + + + H Square + + + + Hand Holding + + + + Hand Holding Heart + + + + Hand Holding US Dollar + + + + Lizard (Hand) + + + + Paper (Hand) + + + + Peace (Hand) + + + + Hand Pointing Down + + + + Hand Pointing Left + + + + Hand Pointing Right + + + + Hand Pointing Up + + + + Pointer (Hand) + + + + Rock (Hand) + + + + Scissors (Hand) + + + + Spock (Hand) + + + + Hands + + + + Helping Hands + + + + Handshake + + + + Hashtag + + + + HDD + + + + heading + + + + headphones + + + + Headphones Alt + + + + Headset + + + + Heart + + + + Heartbeat + + + + Helicopter + + + + Highlighter + + + + History + + + + Hockey Puck + + + + home + + + + hospital + + + + Alternate Hospital + + + + Hospital Symbol + + + + Hot Tub + + + + Hotel + + + + Hourglass + + + + Hourglass End + + + + Hourglass Half + + + + Hourglass Start + + + + I Beam Cursor + + + + Identification Badge + + + + Identification Card + + + + Alternate Identification Card + + + + Image + + + + Images + + + + inbox + + + + Indent + + + + Industry + + + + Infinity + + + + Info + + + + Info Circle + + + + italic + + + + Joint + + + + key + + + + Keyboard + + + + Kissing Face + + + + Kissing Face With Smiling Eyes + + + + Face Blowing a Kiss + + + + Kiwi Bird + + + + Language + + + + Laptop + + + + Grinning Face With Big Eyes + + + + Laugh Face with Beaming Eyes + + + + Laughing Squinting Face + + + + Laughing Winking Face + + + + leaf + + + + Lemon + + + + Less Than + + + + Less Than Equal To + + + + Alternate Level Down + + + + Alternate Level Up + + + + Life Ring + + + + Lightbulb + + + + Link + + + + Turkish Lira Sign + + + + List + + + + Alternate List + + + + list-ol + + + + list-ul + + + + location-arrow + + + + lock + + + + Lock Open + + + + Alternate Long Arrow Down + + + + Alternate Long Arrow Left + + + + Alternate Long Arrow Right + + + + Alternate Long Arrow Up + + + + Low Vision + + + + Luggage Cart + + + + magic + + + + magnet + + + + Male + + + + Map + + + + Map Marked + + + + Map Marked-alt + + + + map-marker + + + + Alternate Map Marker + + + + Map Pin + + + + Map Signs + + + + Marker + + + + Mars + + + + Mars Double + + + + Mars Stroke + + + + Mars Stroke Horizontal + + + + Mars Stroke Vertical + + + + Medal + + + + medkit + + + + Neutral Face + + + + Face Without Mouth + + + + Face With Rolling Eyes + + + + Memory + + + + Mercury + + + + Microchip + + + + microphone + + + + Alternate Microphone + + + + Alternate Microphone Slash + + + + Microphone Slash + + + + minus + + + + Minus Circle + + + + Minus Square + + + + Mobile Phone + + + + Alternate Mobile + + + + Money Bill + + + + Alternate Money Bill + + + + Wavy Money Bill + + + + Alternate Wavy Money Bill + + + + Money Check + + + + Alternate Money Check + + + + Monument + + + + Moon + + + + Mortar Pestle + + + + Motorcycle + + + + Mouse Pointer + + + + Music + + + + Neuter + + + + Newspaper + + + + Not Equal + + + + Medical Notes + + + + Object Group + + + + Object Ungroup + + + + Outdent + + + + Paint Brush + + + + Paint Roller + + + + Palette + + + + Pallet + + + + Paper Plane + + + + Paperclip + + + + Parachute Box + + + + paragraph + + + + Parking + + + + Passport + + + + Paste + + + + pause + + + + Pause Circle + + + + Paw + + + + Pen + + + + Alternate Pen + + + + Pen Fancy + + + + Pen Nib + + + + Pen Square + + + + Alternate Pencil + + + + Pencil Ruler + + + + People Carry + + + + Percent + + + + Percentage + + + + Phone + + + + Phone Slash + + + + Phone Square + + + + Phone Volume + + + + Piggy Bank + + + + Pills + + + + plane + + + + Plane Arrival + + + + Plane Departure + + + + play + + + + Play Circle + + + + Plug + + + + plus + + + + Plus Circle + + + + Plus Square + + + + Podcast + + + + Poo + + + + Portrait + + + + Pound Sign + + + + Power Off + + + + Prescription + + + + Prescription Bottle + + + + Alternate Prescription Bottle + + + + print + + + + Procedures + + + + Project Diagram + + + + Puzzle Piece + + + + qrcode + + + + Question + + + + Question Circle + + + + Quidditch + + + + quote-left + + + + quote-right + + + + random + + + + Receipt + + + + Recycle + + + + Redo + + + + Alternate Redo + + + + Registered Trademark + + + + Reply + + + + reply-all + + + + Retweet + + + + Ribbon + + + + road + + + + Robot + + + + rocket + + + + rss + + + + RSS Square + + + + Ruble Sign + + + + Ruler + + + + Ruler Combined + + + + Ruler Horizontal + + + + Ruler Vertical + + + + Indian Rupee Sign + + + + Crying Face + + + + Loudly Crying Face + + + + Save + + + + School + + + + Screwdriver + + + + Search + + + + Search Minus + + + + Search Plus + + + + Seedling + + + + Server + + + + Share + + + + Alternate Share + + + + Alternate Share Square + + + + Share Square + + + + Shekel Sign + + + + Alternate Shield + + + + Ship + + + + Shipping Fast + + + + Shoe Prints + + + + Shopping Bag + + + + Shopping Basket + + + + shopping-cart + + + + Shower + + + + Shuttle Van + + + + Sign + + + + Alternate Sign In + + + + Sign Language + + + + Alternate Sign Out + + + + signal + + + + Signature + + + + Sitemap + + + + Skull + + + + Horizontal Sliders + + + + Smiling Face + + + + Beaming Face With Smiling Eyes + + + + Winking Face + + + + Smoking + + + + Smoking Ban + + + + Snowflake + + + + Solar Panel + + + + Sort + + + + Sort Alpha Down + + + + Sort Alpha Up + + + + Sort Amount Down + + + + Sort Amount Up + + + + Sort Down (Descending) + + + + Sort Numeric Down + + + + Sort Numeric Up + + + + Sort Up (Ascending) + + + + Spa + + + + Space Shuttle + + + + Spinner + + + + Splotch + + + + Spray Can + + + + Square + + + + Square Full + + + + Stamp + + + + Star + + + + star-half + + + + Alternate Star Half + + + + step-backward + + + + step-forward + + + + Stethoscope + + + + Sticky Note + + + + stop + + + + Stop Circle + + + + Stopwatch + + + + Store + + + + Alternate Store + + + + Stream + + + + Street View + + + + Strikethrough + + + + Stroopwafel + + + + subscript + + + + Subway + + + + Suitcase + + + + Suitcase Rolling + + + + Sun + + + + superscript + + + + Hushed Face + + + + Swatchbook + + + + Swimmer + + + + Swimming Pool + + + + Sync + + + + Alternate Sync + + + + Syringe + + + + table + + + + Table Tennis + + + + tablet + + + + Alternate Tablet + + + + Tablets + + + + Alternate Tachometer + + + + tag + + + + tags + + + + Tape + + + + Tasks + + + + Taxi + + + + Terminal + + + + text-height + + + + text-width + + + + th + + + + th-large + + + + th-list + + + + Thermometer + + + + Thermometer Empty + + + + Thermometer Full + + + + Thermometer 1/2 Full + + + + Thermometer 1/4 Full + + + + Thermometer 3/4 Full + + + + thumbs-down + + + + thumbs-up + + + + Thumbtack + + + + Alternate Ticket + + + + Times + + + + Times Circle + + + + tint + + + + Tint Slash + + + + Tired Face + + + + Toggle Off + + + + Toggle On + + + + Toolbox + + + + Tooth + + + + Trademark + + + + Train + + + + Transgender + + + + Alternate Transgender + + + + Trash + + + + Alternate Trash + + + + Tree + + + + trophy + + + + truck + + + + Truck Loading + + + + Truck Moving + + + + T-Shirt + + + + TTY + + + + Television + + + + Umbrella + + + + Umbrella Beach + + + + Underline + + + + Undo + + + + Alternate Undo + + + + Universal Access + + + + University + + + + unlink + + + + unlock + + + + Alternate Unlock + + + + Upload + + + + User + + + + Alternate User + + + + Alternate User Slash + + + + User Astronaut + + + + User Check + + + + User Circle + + + + User Clock + + + + User Cog + + + + User Edit + + + + User Friends + + + + User Graduate + + + + User Lock + + + + user-md + + + + User Minus + + + + User Ninja + + + + Add User + + + + User Secret + + + + User Shield + + + + User Slash + + + + User Tag + + + + User Tie + + + + Remove User + + + + Users + + + + Users Cog + + + + Utensil Spoon + + + + Utensils + + + + Vector Square + + + + Venus + + + + Venus Double + + + + Venus Mars + + + + Vial + + + + Vials + + + + Video + + + + Video Slash + + + + Volleyball Ball + + + + volume-down + + + + volume-off + + + + volume-up + + + + Walking + + + + Wallet + + + + Warehouse + + + + Weight + + + + Hanging Weight + + + + Wheelchair + + + + WiFi + + + + Window Close + + + + Window Maximize + + + + Window Minimize + + + + Window Restore + + + + Wine Glass + + + + Wine Glass-alt + + + + Won Sign + + + + Wrench + + + + X-Ray + + + + Yen Sign + + + diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/500px.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/500px.svg new file mode 100644 index 0000000000..d7c092246d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/500px.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/accessible-icon.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/accessible-icon.svg new file mode 100644 index 0000000000..3ece345909 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/accessible-icon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/accusoft.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/accusoft.svg new file mode 100644 index 0000000000..856cd6ef08 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/accusoft.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/adn.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/adn.svg new file mode 100644 index 0000000000..3e26a45051 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/adn.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/adversal.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/adversal.svg new file mode 100644 index 0000000000..167ec39a20 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/adversal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/affiliatetheme.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/affiliatetheme.svg new file mode 100644 index 0000000000..952b8ebaab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/affiliatetheme.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/algolia.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/algolia.svg new file mode 100644 index 0000000000..bc168b612f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/algolia.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/amazon-pay.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/amazon-pay.svg new file mode 100644 index 0000000000..bb2ddb2078 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/amazon-pay.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/amazon.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/amazon.svg new file mode 100644 index 0000000000..53cb0ec2a6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/amazon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/amilia.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/amilia.svg new file mode 100644 index 0000000000..28ef32aae4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/amilia.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/android.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/android.svg new file mode 100644 index 0000000000..8ad7acf20c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/android.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/angellist.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/angellist.svg new file mode 100644 index 0000000000..7920106e77 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/angellist.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/angrycreative.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/angrycreative.svg new file mode 100644 index 0000000000..616fdd6edb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/angrycreative.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/angular.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/angular.svg new file mode 100644 index 0000000000..9075340964 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/angular.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/app-store-ios.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/app-store-ios.svg new file mode 100644 index 0000000000..7029338c45 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/app-store-ios.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/app-store.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/app-store.svg new file mode 100644 index 0000000000..eec8eaff3b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/app-store.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/apper.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/apper.svg new file mode 100644 index 0000000000..72e0c2221e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/apper.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/apple-pay.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/apple-pay.svg new file mode 100644 index 0000000000..5b83ed6ff7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/apple-pay.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/apple.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/apple.svg new file mode 100644 index 0000000000..634e4168ee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/apple.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/asymmetrik.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/asymmetrik.svg new file mode 100644 index 0000000000..a5628e98a1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/asymmetrik.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/audible.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/audible.svg new file mode 100644 index 0000000000..0687fc67a8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/audible.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/autoprefixer.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/autoprefixer.svg new file mode 100644 index 0000000000..23fee0a1f5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/autoprefixer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/avianex.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/avianex.svg new file mode 100644 index 0000000000..7aed8ee2ac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/avianex.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/aviato.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/aviato.svg new file mode 100644 index 0000000000..40c902f620 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/aviato.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/aws.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/aws.svg new file mode 100644 index 0000000000..d2950667c5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/aws.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bandcamp.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bandcamp.svg new file mode 100644 index 0000000000..088ecf552a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bandcamp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/behance-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/behance-square.svg new file mode 100644 index 0000000000..03b3596c8d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/behance-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/behance.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/behance.svg new file mode 100644 index 0000000000..5205d2e703 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/behance.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bimobject.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bimobject.svg new file mode 100644 index 0000000000..43e9aa47f9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bimobject.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bitbucket.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bitbucket.svg new file mode 100644 index 0000000000..256ad18fb3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bitbucket.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bitcoin.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bitcoin.svg new file mode 100644 index 0000000000..ebe8adea30 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bitcoin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bity.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bity.svg new file mode 100644 index 0000000000..4ec71c47ed --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bity.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/black-tie.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/black-tie.svg new file mode 100644 index 0000000000..c1923a8bc2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/black-tie.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/blackberry.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/blackberry.svg new file mode 100644 index 0000000000..eef9c85889 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/blackberry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/blogger-b.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/blogger-b.svg new file mode 100644 index 0000000000..20a0a4687a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/blogger-b.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/blogger.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/blogger.svg new file mode 100644 index 0000000000..9e7f4380a0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/blogger.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bluetooth-b.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bluetooth-b.svg new file mode 100644 index 0000000000..87a9376429 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bluetooth-b.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bluetooth.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bluetooth.svg new file mode 100644 index 0000000000..ee4208f8c5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/bluetooth.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/btc.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/btc.svg new file mode 100644 index 0000000000..ed48e52cb4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/btc.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/buromobelexperte.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/buromobelexperte.svg new file mode 100644 index 0000000000..d702d9da37 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/buromobelexperte.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/buysellads.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/buysellads.svg new file mode 100644 index 0000000000..30717b3414 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/buysellads.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-amazon-pay.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-amazon-pay.svg new file mode 100644 index 0000000000..f31828fabd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-amazon-pay.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-amex.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-amex.svg new file mode 100644 index 0000000000..2001d00d2d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-amex.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-apple-pay.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-apple-pay.svg new file mode 100644 index 0000000000..1caa0ea897 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-apple-pay.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-diners-club.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-diners-club.svg new file mode 100644 index 0000000000..1be72861b9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-diners-club.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-discover.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-discover.svg new file mode 100644 index 0000000000..2cdd19bfb9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-discover.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-jcb.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-jcb.svg new file mode 100644 index 0000000000..81d442c479 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-jcb.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-mastercard.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-mastercard.svg new file mode 100644 index 0000000000..df6fcfce11 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-mastercard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-paypal.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-paypal.svg new file mode 100644 index 0000000000..3ba8a76b8f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-paypal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-stripe.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-stripe.svg new file mode 100644 index 0000000000..836020a207 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-stripe.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-visa.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-visa.svg new file mode 100644 index 0000000000..5fc8e4070a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cc-visa.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/centercode.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/centercode.svg new file mode 100644 index 0000000000..e3f5b2ad89 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/centercode.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/chrome.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/chrome.svg new file mode 100644 index 0000000000..ac45ec85d5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/chrome.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cloudscale.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cloudscale.svg new file mode 100644 index 0000000000..38d6795e18 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cloudscale.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cloudsmith.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cloudsmith.svg new file mode 100644 index 0000000000..c730eddaff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cloudsmith.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cloudversify.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cloudversify.svg new file mode 100644 index 0000000000..4345e1c68e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cloudversify.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/codepen.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/codepen.svg new file mode 100644 index 0000000000..f1239f17e2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/codepen.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/codiepie.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/codiepie.svg new file mode 100644 index 0000000000..5c49d07f02 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/codiepie.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/connectdevelop.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/connectdevelop.svg new file mode 100644 index 0000000000..38c11582bb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/connectdevelop.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/contao.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/contao.svg new file mode 100644 index 0000000000..acfa61f334 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/contao.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cpanel.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cpanel.svg new file mode 100644 index 0000000000..6439c9b33c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cpanel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-by.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-by.svg new file mode 100644 index 0000000000..81616eee6e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-by.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-nc-eu.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-nc-eu.svg new file mode 100644 index 0000000000..128695248f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-nc-eu.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-nc-jp.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-nc-jp.svg new file mode 100644 index 0000000000..56426ecab4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-nc-jp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-nc.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-nc.svg new file mode 100644 index 0000000000..ee983ab36d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-nc.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-nd.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-nd.svg new file mode 100644 index 0000000000..97094a09b5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-nd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-pd-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-pd-alt.svg new file mode 100644 index 0000000000..0b2a92d408 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-pd-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-pd.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-pd.svg new file mode 100644 index 0000000000..3b296b9c0c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-pd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-remix.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-remix.svg new file mode 100644 index 0000000000..c3d8c4d4ce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-remix.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-sa.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-sa.svg new file mode 100644 index 0000000000..f4b3e1977e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-sa.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-sampling-plus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-sampling-plus.svg new file mode 100644 index 0000000000..1868d9e9a7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-sampling-plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-sampling.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-sampling.svg new file mode 100644 index 0000000000..187ecff6cd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-sampling.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-share.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-share.svg new file mode 100644 index 0000000000..767791c106 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons-share.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons.svg new file mode 100644 index 0000000000..3ca621018a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/creative-commons.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/css3-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/css3-alt.svg new file mode 100644 index 0000000000..4dc7bcfa18 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/css3-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/css3.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/css3.svg new file mode 100644 index 0000000000..b11e462656 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/css3.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cuttlefish.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cuttlefish.svg new file mode 100644 index 0000000000..39a1de4b41 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/cuttlefish.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/d-and-d.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/d-and-d.svg new file mode 100644 index 0000000000..2c154b54b6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/d-and-d.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/dashcube.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/dashcube.svg new file mode 100644 index 0000000000..0e0f4fe9a0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/dashcube.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/delicious.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/delicious.svg new file mode 100644 index 0000000000..fa2f850f0f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/delicious.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/deploydog.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/deploydog.svg new file mode 100644 index 0000000000..3a2872f7dd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/deploydog.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/deskpro.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/deskpro.svg new file mode 100644 index 0000000000..35aba42302 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/deskpro.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/deviantart.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/deviantart.svg new file mode 100644 index 0000000000..fe2c4fcbc9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/deviantart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/digg.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/digg.svg new file mode 100644 index 0000000000..07e62f7630 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/digg.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/digital-ocean.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/digital-ocean.svg new file mode 100644 index 0000000000..fa26f4d44d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/digital-ocean.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/discord.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/discord.svg new file mode 100644 index 0000000000..3b697e0f01 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/discord.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/discourse.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/discourse.svg new file mode 100644 index 0000000000..9a4f345b52 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/discourse.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/dochub.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/dochub.svg new file mode 100644 index 0000000000..1de590649e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/dochub.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/docker.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/docker.svg new file mode 100644 index 0000000000..2e32bb602b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/docker.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/draft2digital.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/draft2digital.svg new file mode 100644 index 0000000000..be0b07a206 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/draft2digital.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/dribbble-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/dribbble-square.svg new file mode 100644 index 0000000000..fc9e90956d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/dribbble-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/dribbble.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/dribbble.svg new file mode 100644 index 0000000000..aa6f3262c3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/dribbble.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/dropbox.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/dropbox.svg new file mode 100644 index 0000000000..8c19aa5d99 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/dropbox.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/drupal.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/drupal.svg new file mode 100644 index 0000000000..7acb58bd47 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/drupal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/dyalog.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/dyalog.svg new file mode 100644 index 0000000000..a5c0c5c04f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/dyalog.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/earlybirds.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/earlybirds.svg new file mode 100644 index 0000000000..fa40c2a7f5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/earlybirds.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ebay.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ebay.svg new file mode 100644 index 0000000000..16c94b0a33 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ebay.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/edge.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/edge.svg new file mode 100644 index 0000000000..9e964fb270 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/edge.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/elementor.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/elementor.svg new file mode 100644 index 0000000000..f808cfe48c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/elementor.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ember.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ember.svg new file mode 100644 index 0000000000..8ca41e7afe --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ember.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/empire.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/empire.svg new file mode 100644 index 0000000000..e13de1970c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/empire.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/envira.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/envira.svg new file mode 100644 index 0000000000..82fec1f28e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/envira.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/erlang.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/erlang.svg new file mode 100644 index 0000000000..e9de710834 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/erlang.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ethereum.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ethereum.svg new file mode 100644 index 0000000000..0bd9db3344 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ethereum.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/etsy.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/etsy.svg new file mode 100644 index 0000000000..042cf394fd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/etsy.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/expeditedssl.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/expeditedssl.svg new file mode 100644 index 0000000000..e02afc058c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/expeditedssl.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/facebook-f.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/facebook-f.svg new file mode 100644 index 0000000000..56bfbc4366 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/facebook-f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/facebook-messenger.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/facebook-messenger.svg new file mode 100644 index 0000000000..1ab970792e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/facebook-messenger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/facebook-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/facebook-square.svg new file mode 100644 index 0000000000..c78d21d871 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/facebook-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/facebook.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/facebook.svg new file mode 100644 index 0000000000..f6931b6b54 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/facebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/firefox.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/firefox.svg new file mode 100644 index 0000000000..4c39ae26ed --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/firefox.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/first-order-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/first-order-alt.svg new file mode 100644 index 0000000000..c8c6064ca5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/first-order-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/first-order.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/first-order.svg new file mode 100644 index 0000000000..80c09b80c7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/first-order.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/firstdraft.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/firstdraft.svg new file mode 100644 index 0000000000..15a3700fec --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/firstdraft.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/flickr.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/flickr.svg new file mode 100644 index 0000000000..304df8cb37 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/flickr.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/flipboard.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/flipboard.svg new file mode 100644 index 0000000000..c440b720fb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/flipboard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/fly.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/fly.svg new file mode 100644 index 0000000000..fa11ac1ae2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/fly.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/font-awesome-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/font-awesome-alt.svg new file mode 100644 index 0000000000..92b9f8289b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/font-awesome-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/font-awesome-flag.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/font-awesome-flag.svg new file mode 100644 index 0000000000..7221691482 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/font-awesome-flag.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/font-awesome-logo-full.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/font-awesome-logo-full.svg new file mode 100644 index 0000000000..3d8ca619b2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/font-awesome-logo-full.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/font-awesome.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/font-awesome.svg new file mode 100644 index 0000000000..7a73fac6bd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/font-awesome.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/fonticons-fi.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/fonticons-fi.svg new file mode 100644 index 0000000000..fac9ac72ee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/fonticons-fi.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/fonticons.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/fonticons.svg new file mode 100644 index 0000000000..5a800d0449 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/fonticons.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/fort-awesome-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/fort-awesome-alt.svg new file mode 100644 index 0000000000..e63d7b1b1e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/fort-awesome-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/fort-awesome.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/fort-awesome.svg new file mode 100644 index 0000000000..9043e8c1b6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/fort-awesome.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/forumbee.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/forumbee.svg new file mode 100644 index 0000000000..3465be9ad0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/forumbee.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/foursquare.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/foursquare.svg new file mode 100644 index 0000000000..5b4ea28f7e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/foursquare.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/free-code-camp.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/free-code-camp.svg new file mode 100644 index 0000000000..37eacf3666 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/free-code-camp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/freebsd.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/freebsd.svg new file mode 100644 index 0000000000..f0f000b608 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/freebsd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/fulcrum.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/fulcrum.svg new file mode 100644 index 0000000000..4c09bb15d7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/fulcrum.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/galactic-republic.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/galactic-republic.svg new file mode 100644 index 0000000000..fb891b02f2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/galactic-republic.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/galactic-senate.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/galactic-senate.svg new file mode 100644 index 0000000000..10784bad77 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/galactic-senate.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/get-pocket.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/get-pocket.svg new file mode 100644 index 0000000000..db121a3ce9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/get-pocket.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gg-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gg-circle.svg new file mode 100644 index 0000000000..69179a1ec8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gg-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gg.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gg.svg new file mode 100644 index 0000000000..5000946e67 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gg.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/git-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/git-square.svg new file mode 100644 index 0000000000..f0abe23d5c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/git-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/git.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/git.svg new file mode 100644 index 0000000000..ea602905c6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/git.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/github-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/github-alt.svg new file mode 100644 index 0000000000..3fd66128e7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/github-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/github-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/github-square.svg new file mode 100644 index 0000000000..45de19979c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/github-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/github.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/github.svg new file mode 100644 index 0000000000..d2ebf6c633 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/github.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gitkraken.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gitkraken.svg new file mode 100644 index 0000000000..b1b3ffa227 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gitkraken.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gitlab.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gitlab.svg new file mode 100644 index 0000000000..cee4f94f3e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gitlab.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gitter.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gitter.svg new file mode 100644 index 0000000000..e16b207dad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gitter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/glide-g.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/glide-g.svg new file mode 100644 index 0000000000..813a0ebde0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/glide-g.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/glide.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/glide.svg new file mode 100644 index 0000000000..6a90870af6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/glide.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gofore.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gofore.svg new file mode 100644 index 0000000000..34e761246e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gofore.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/goodreads-g.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/goodreads-g.svg new file mode 100644 index 0000000000..e6ac2f8c31 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/goodreads-g.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/goodreads.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/goodreads.svg new file mode 100644 index 0000000000..ef0bf7583a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/goodreads.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google-drive.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google-drive.svg new file mode 100644 index 0000000000..f370549e2c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google-drive.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google-play.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google-play.svg new file mode 100644 index 0000000000..6a2f8a5fd4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google-play.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google-plus-g.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google-plus-g.svg new file mode 100644 index 0000000000..2c40449194 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google-plus-g.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google-plus-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google-plus-square.svg new file mode 100644 index 0000000000..45aacb94ab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google-plus-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google-plus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google-plus.svg new file mode 100644 index 0000000000..5f214a7850 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google-plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google-wallet.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google-wallet.svg new file mode 100644 index 0000000000..d8e9dd1966 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google-wallet.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google.svg new file mode 100644 index 0000000000..54d1e1032c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/google.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gratipay.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gratipay.svg new file mode 100644 index 0000000000..d1650773bb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gratipay.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/grav.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/grav.svg new file mode 100644 index 0000000000..d042c40b67 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/grav.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gripfire.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gripfire.svg new file mode 100644 index 0000000000..7bbe6a9db3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gripfire.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/grunt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/grunt.svg new file mode 100644 index 0000000000..17e5c41fe8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/grunt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gulp.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gulp.svg new file mode 100644 index 0000000000..e1d6a705dd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/gulp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hacker-news-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hacker-news-square.svg new file mode 100644 index 0000000000..3a4c58193c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hacker-news-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hacker-news.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hacker-news.svg new file mode 100644 index 0000000000..81c4877da1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hacker-news.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hips.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hips.svg new file mode 100644 index 0000000000..610ee20753 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hips.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hire-a-helper.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hire-a-helper.svg new file mode 100644 index 0000000000..ebf7d174e3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hire-a-helper.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hooli.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hooli.svg new file mode 100644 index 0000000000..77fa442f31 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hooli.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hornbill.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hornbill.svg new file mode 100644 index 0000000000..ce8eab2028 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hornbill.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hotjar.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hotjar.svg new file mode 100644 index 0000000000..ee8b9e6f03 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hotjar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/houzz.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/houzz.svg new file mode 100644 index 0000000000..9cce481ca2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/houzz.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/html5.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/html5.svg new file mode 100644 index 0000000000..3d56044039 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/html5.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hubspot.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hubspot.svg new file mode 100644 index 0000000000..3533d9ff1f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/hubspot.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/imdb.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/imdb.svg new file mode 100644 index 0000000000..b8a63abc72 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/imdb.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/instagram.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/instagram.svg new file mode 100644 index 0000000000..42d6742070 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/instagram.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/internet-explorer.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/internet-explorer.svg new file mode 100644 index 0000000000..fb668dd7fd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/internet-explorer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ioxhost.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ioxhost.svg new file mode 100644 index 0000000000..559844587d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ioxhost.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/itunes-note.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/itunes-note.svg new file mode 100644 index 0000000000..e027fc6f93 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/itunes-note.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/itunes.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/itunes.svg new file mode 100644 index 0000000000..f016e919fa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/itunes.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/java.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/java.svg new file mode 100644 index 0000000000..063d7323e8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/java.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/jedi-order.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/jedi-order.svg new file mode 100644 index 0000000000..96e07660f0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/jedi-order.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/jenkins.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/jenkins.svg new file mode 100644 index 0000000000..de9a217ff0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/jenkins.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/joget.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/joget.svg new file mode 100644 index 0000000000..e0656ffcfb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/joget.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/joomla.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/joomla.svg new file mode 100644 index 0000000000..fb1f5d1878 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/joomla.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/js-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/js-square.svg new file mode 100644 index 0000000000..b999d97a26 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/js-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/js.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/js.svg new file mode 100644 index 0000000000..1cc211e43f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/js.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/jsfiddle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/jsfiddle.svg new file mode 100644 index 0000000000..d7a46d2e8f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/jsfiddle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/keybase.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/keybase.svg new file mode 100644 index 0000000000..b896e537ef --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/keybase.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/keycdn.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/keycdn.svg new file mode 100644 index 0000000000..ba4ad25031 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/keycdn.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/kickstarter-k.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/kickstarter-k.svg new file mode 100644 index 0000000000..ad9abe13f6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/kickstarter-k.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/kickstarter.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/kickstarter.svg new file mode 100644 index 0000000000..7add0f02d8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/kickstarter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/korvue.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/korvue.svg new file mode 100644 index 0000000000..eca2cf7d20 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/korvue.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/laravel.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/laravel.svg new file mode 100644 index 0000000000..fc7949830d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/laravel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/lastfm-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/lastfm-square.svg new file mode 100644 index 0000000000..b51fb2dcdf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/lastfm-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/lastfm.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/lastfm.svg new file mode 100644 index 0000000000..a799e1f5d1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/lastfm.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/leanpub.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/leanpub.svg new file mode 100644 index 0000000000..5765436373 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/leanpub.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/less.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/less.svg new file mode 100644 index 0000000000..75bc30f99a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/less.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/line.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/line.svg new file mode 100644 index 0000000000..169c17da66 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/line.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/linkedin-in.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/linkedin-in.svg new file mode 100644 index 0000000000..1db7d6f618 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/linkedin-in.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/linkedin.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/linkedin.svg new file mode 100644 index 0000000000..1664e048c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/linkedin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/linode.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/linode.svg new file mode 100644 index 0000000000..19ac896a84 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/linode.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/linux.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/linux.svg new file mode 100644 index 0000000000..abf7c02a32 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/linux.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/lyft.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/lyft.svg new file mode 100644 index 0000000000..cfd4544a6a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/lyft.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/magento.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/magento.svg new file mode 100644 index 0000000000..f22c2524b0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/magento.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/mailchimp.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/mailchimp.svg new file mode 100644 index 0000000000..2fd2573dff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/mailchimp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/mandalorian.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/mandalorian.svg new file mode 100644 index 0000000000..0470e3a9b3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/mandalorian.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/mastodon.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/mastodon.svg new file mode 100644 index 0000000000..fc44af79c3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/mastodon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/maxcdn.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/maxcdn.svg new file mode 100644 index 0000000000..c16ef79e70 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/maxcdn.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/medapps.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/medapps.svg new file mode 100644 index 0000000000..8ca00ce408 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/medapps.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/medium-m.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/medium-m.svg new file mode 100644 index 0000000000..5ee89047d6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/medium-m.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/medium.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/medium.svg new file mode 100644 index 0000000000..0ba5245e09 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/medium.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/medrt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/medrt.svg new file mode 100644 index 0000000000..1b76153403 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/medrt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/meetup.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/meetup.svg new file mode 100644 index 0000000000..7c4070b461 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/meetup.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/megaport.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/megaport.svg new file mode 100644 index 0000000000..23eef564dc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/megaport.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/microsoft.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/microsoft.svg new file mode 100644 index 0000000000..90b7c64c22 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/microsoft.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/mix.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/mix.svg new file mode 100644 index 0000000000..4c93f6c34d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/mix.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/mixcloud.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/mixcloud.svg new file mode 100644 index 0000000000..c1b5bba9ae --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/mixcloud.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/mizuni.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/mizuni.svg new file mode 100644 index 0000000000..e5ad587c22 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/mizuni.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/modx.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/modx.svg new file mode 100644 index 0000000000..5131a81df8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/modx.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/monero.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/monero.svg new file mode 100644 index 0000000000..4241789762 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/monero.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/napster.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/napster.svg new file mode 100644 index 0000000000..8d38700f97 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/napster.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/nimblr.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/nimblr.svg new file mode 100644 index 0000000000..73fef34f1d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/nimblr.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/nintendo-switch.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/nintendo-switch.svg new file mode 100644 index 0000000000..ed7e39cbcd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/nintendo-switch.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/node-js.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/node-js.svg new file mode 100644 index 0000000000..a10876ee44 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/node-js.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/node.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/node.svg new file mode 100644 index 0000000000..a5d7852461 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/node.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/npm.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/npm.svg new file mode 100644 index 0000000000..75da69b2cc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/npm.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ns8.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ns8.svg new file mode 100644 index 0000000000..4061495051 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ns8.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/nutritionix.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/nutritionix.svg new file mode 100644 index 0000000000..fcfca242b6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/nutritionix.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/odnoklassniki-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/odnoklassniki-square.svg new file mode 100644 index 0000000000..e88392e926 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/odnoklassniki-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/odnoklassniki.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/odnoklassniki.svg new file mode 100644 index 0000000000..881af95e0e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/odnoklassniki.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/old-republic.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/old-republic.svg new file mode 100644 index 0000000000..52ffb91aef --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/old-republic.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/opencart.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/opencart.svg new file mode 100644 index 0000000000..33e118de65 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/opencart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/openid.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/openid.svg new file mode 100644 index 0000000000..94b17ce3a0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/openid.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/opera.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/opera.svg new file mode 100644 index 0000000000..80d948189d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/opera.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/optin-monster.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/optin-monster.svg new file mode 100644 index 0000000000..a43e79857e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/optin-monster.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/osi.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/osi.svg new file mode 100644 index 0000000000..db1e1d3f67 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/osi.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/page4.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/page4.svg new file mode 100644 index 0000000000..6f674ac870 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/page4.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pagelines.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pagelines.svg new file mode 100644 index 0000000000..ed44e98d66 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pagelines.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/palfed.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/palfed.svg new file mode 100644 index 0000000000..3bf85653f9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/palfed.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/patreon.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/patreon.svg new file mode 100644 index 0000000000..d29bca0c6a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/patreon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/paypal.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/paypal.svg new file mode 100644 index 0000000000..0e5214af88 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/paypal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/periscope.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/periscope.svg new file mode 100644 index 0000000000..684afce02d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/periscope.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/phabricator.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/phabricator.svg new file mode 100644 index 0000000000..1e008a102e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/phabricator.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/phoenix-framework.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/phoenix-framework.svg new file mode 100644 index 0000000000..7c16f93f60 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/phoenix-framework.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/phoenix-squadron.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/phoenix-squadron.svg new file mode 100644 index 0000000000..d4ca91bab8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/phoenix-squadron.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/php.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/php.svg new file mode 100644 index 0000000000..df04df8ec2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/php.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pied-piper-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pied-piper-alt.svg new file mode 100644 index 0000000000..6e906a9054 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pied-piper-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pied-piper-hat.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pied-piper-hat.svg new file mode 100644 index 0000000000..d79408a858 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pied-piper-hat.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pied-piper-pp.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pied-piper-pp.svg new file mode 100644 index 0000000000..b832c9bb15 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pied-piper-pp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pied-piper.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pied-piper.svg new file mode 100644 index 0000000000..6b85eb77a5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pied-piper.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pinterest-p.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pinterest-p.svg new file mode 100644 index 0000000000..7f8c8347ee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pinterest-p.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pinterest-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pinterest-square.svg new file mode 100644 index 0000000000..b15a0b9e6f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pinterest-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pinterest.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pinterest.svg new file mode 100644 index 0000000000..03247ff4d5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pinterest.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/playstation.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/playstation.svg new file mode 100644 index 0000000000..c87e0655fa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/playstation.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/product-hunt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/product-hunt.svg new file mode 100644 index 0000000000..e635ee0c3c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/product-hunt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pushed.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pushed.svg new file mode 100644 index 0000000000..58c8c197d0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/pushed.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/python.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/python.svg new file mode 100644 index 0000000000..9e52337bf5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/python.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/qq.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/qq.svg new file mode 100644 index 0000000000..f311244ac0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/qq.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/quinscape.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/quinscape.svg new file mode 100644 index 0000000000..f5d62d377e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/quinscape.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/quora.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/quora.svg new file mode 100644 index 0000000000..b4c8c98e48 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/quora.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/r-project.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/r-project.svg new file mode 100644 index 0000000000..8f2845c5b5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/r-project.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ravelry.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ravelry.svg new file mode 100644 index 0000000000..b96f1bb9e2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ravelry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/react.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/react.svg new file mode 100644 index 0000000000..4ee994aee0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/react.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/readme.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/readme.svg new file mode 100644 index 0000000000..840cdb74b0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/readme.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/rebel.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/rebel.svg new file mode 100644 index 0000000000..665c942b44 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/rebel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/red-river.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/red-river.svg new file mode 100644 index 0000000000..bbe3515e56 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/red-river.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/reddit-alien.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/reddit-alien.svg new file mode 100644 index 0000000000..bdc278a166 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/reddit-alien.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/reddit-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/reddit-square.svg new file mode 100644 index 0000000000..5446b746ab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/reddit-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/reddit.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/reddit.svg new file mode 100644 index 0000000000..185a479236 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/reddit.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/rendact.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/rendact.svg new file mode 100644 index 0000000000..2cd78edd2e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/rendact.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/renren.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/renren.svg new file mode 100644 index 0000000000..2f4be45170 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/renren.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/replyd.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/replyd.svg new file mode 100644 index 0000000000..8975ae64e6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/replyd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/researchgate.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/researchgate.svg new file mode 100644 index 0000000000..e1edb006d6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/researchgate.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/resolving.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/resolving.svg new file mode 100644 index 0000000000..be0dbd460b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/resolving.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/rev.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/rev.svg new file mode 100644 index 0000000000..d199706e53 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/rev.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/rocketchat.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/rocketchat.svg new file mode 100644 index 0000000000..31df65f08e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/rocketchat.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/rockrms.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/rockrms.svg new file mode 100644 index 0000000000..52be1d1429 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/rockrms.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/safari.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/safari.svg new file mode 100644 index 0000000000..5bab664a47 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/safari.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/sass.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/sass.svg new file mode 100644 index 0000000000..920a9803af --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/sass.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/schlix.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/schlix.svg new file mode 100644 index 0000000000..6d729e3f66 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/schlix.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/scribd.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/scribd.svg new file mode 100644 index 0000000000..6a3ab455b5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/scribd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/searchengin.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/searchengin.svg new file mode 100644 index 0000000000..3067f005b1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/searchengin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/sellcast.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/sellcast.svg new file mode 100644 index 0000000000..8566c1a03e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/sellcast.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/sellsy.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/sellsy.svg new file mode 100644 index 0000000000..2eeb021a25 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/sellsy.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/servicestack.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/servicestack.svg new file mode 100644 index 0000000000..b5d642a42c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/servicestack.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/shirtsinbulk.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/shirtsinbulk.svg new file mode 100644 index 0000000000..717a4c284f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/shirtsinbulk.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/shopware.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/shopware.svg new file mode 100644 index 0000000000..3513ffb9a8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/shopware.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/simplybuilt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/simplybuilt.svg new file mode 100644 index 0000000000..deb1d11716 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/simplybuilt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/sistrix.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/sistrix.svg new file mode 100644 index 0000000000..a878bcba5b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/sistrix.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/sith.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/sith.svg new file mode 100644 index 0000000000..92b5827161 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/sith.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/skyatlas.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/skyatlas.svg new file mode 100644 index 0000000000..459bf3153a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/skyatlas.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/skype.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/skype.svg new file mode 100644 index 0000000000..9a150868a8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/skype.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/slack-hash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/slack-hash.svg new file mode 100644 index 0000000000..6659e09a60 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/slack-hash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/slack.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/slack.svg new file mode 100644 index 0000000000..e3e3b3395a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/slack.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/slideshare.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/slideshare.svg new file mode 100644 index 0000000000..d2af9c7b2f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/slideshare.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/snapchat-ghost.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/snapchat-ghost.svg new file mode 100644 index 0000000000..fe9b6ea8ec --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/snapchat-ghost.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/snapchat-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/snapchat-square.svg new file mode 100644 index 0000000000..4686c093f7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/snapchat-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/snapchat.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/snapchat.svg new file mode 100644 index 0000000000..3e63fadab3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/snapchat.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/soundcloud.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/soundcloud.svg new file mode 100644 index 0000000000..1af4372f06 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/soundcloud.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/speakap.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/speakap.svg new file mode 100644 index 0000000000..5212c3ca97 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/speakap.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/spotify.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/spotify.svg new file mode 100644 index 0000000000..9d690b2c81 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/spotify.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/squarespace.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/squarespace.svg new file mode 100644 index 0000000000..fdc1715993 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/squarespace.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/stack-exchange.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/stack-exchange.svg new file mode 100644 index 0000000000..571e37f161 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/stack-exchange.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/stack-overflow.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/stack-overflow.svg new file mode 100644 index 0000000000..45192d1226 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/stack-overflow.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/staylinked.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/staylinked.svg new file mode 100644 index 0000000000..d80ee4ffa8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/staylinked.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/steam-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/steam-square.svg new file mode 100644 index 0000000000..34490eecb2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/steam-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/steam-symbol.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/steam-symbol.svg new file mode 100644 index 0000000000..c40ef15260 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/steam-symbol.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/steam.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/steam.svg new file mode 100644 index 0000000000..15dfecb939 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/steam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/sticker-mule.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/sticker-mule.svg new file mode 100644 index 0000000000..ae7ea88351 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/sticker-mule.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/strava.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/strava.svg new file mode 100644 index 0000000000..8198be6745 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/strava.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/stripe-s.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/stripe-s.svg new file mode 100644 index 0000000000..1972bf8c2a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/stripe-s.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/stripe.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/stripe.svg new file mode 100644 index 0000000000..1efc4c3913 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/stripe.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/studiovinari.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/studiovinari.svg new file mode 100644 index 0000000000..70ec16a477 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/studiovinari.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/stumbleupon-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/stumbleupon-circle.svg new file mode 100644 index 0000000000..85a1f5fc28 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/stumbleupon-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/stumbleupon.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/stumbleupon.svg new file mode 100644 index 0000000000..6839ef87f2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/stumbleupon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/superpowers.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/superpowers.svg new file mode 100644 index 0000000000..6dcbe3e64c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/superpowers.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/supple.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/supple.svg new file mode 100644 index 0000000000..6d7fc45ebc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/supple.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/teamspeak.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/teamspeak.svg new file mode 100644 index 0000000000..39ec828b59 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/teamspeak.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/telegram-plane.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/telegram-plane.svg new file mode 100644 index 0000000000..10b9846465 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/telegram-plane.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/telegram.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/telegram.svg new file mode 100644 index 0000000000..58d184a6b9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/telegram.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/tencent-weibo.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/tencent-weibo.svg new file mode 100644 index 0000000000..d879cf974f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/tencent-weibo.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/themeco.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/themeco.svg new file mode 100644 index 0000000000..87c850fa56 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/themeco.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/themeisle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/themeisle.svg new file mode 100644 index 0000000000..b5bc22eae6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/themeisle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/trade-federation.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/trade-federation.svg new file mode 100644 index 0000000000..d75bf5f9fb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/trade-federation.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/trello.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/trello.svg new file mode 100644 index 0000000000..0734fd8a6d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/trello.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/tripadvisor.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/tripadvisor.svg new file mode 100644 index 0000000000..e1c7b64d56 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/tripadvisor.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/tumblr-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/tumblr-square.svg new file mode 100644 index 0000000000..6bbcd6e52c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/tumblr-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/tumblr.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/tumblr.svg new file mode 100644 index 0000000000..d29077e522 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/tumblr.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/twitch.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/twitch.svg new file mode 100644 index 0000000000..9d2ce3e302 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/twitch.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/twitter-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/twitter-square.svg new file mode 100644 index 0000000000..6de1fcfed7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/twitter-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/twitter.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/twitter.svg new file mode 100644 index 0000000000..6b31afdf70 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/twitter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/typo3.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/typo3.svg new file mode 100644 index 0000000000..be2b1b1876 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/typo3.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/uber.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/uber.svg new file mode 100644 index 0000000000..066eb846bf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/uber.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/uikit.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/uikit.svg new file mode 100644 index 0000000000..b1b5b97879 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/uikit.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/uniregistry.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/uniregistry.svg new file mode 100644 index 0000000000..99d0f56d14 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/uniregistry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/untappd.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/untappd.svg new file mode 100644 index 0000000000..502294f7a8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/untappd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/usb.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/usb.svg new file mode 100644 index 0000000000..0e393c26de --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/usb.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ussunnah.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ussunnah.svg new file mode 100644 index 0000000000..64ad2edb78 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/ussunnah.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vaadin.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vaadin.svg new file mode 100644 index 0000000000..c1dc6f47ed --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vaadin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/viacoin.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/viacoin.svg new file mode 100644 index 0000000000..d6b145f0f8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/viacoin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/viadeo-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/viadeo-square.svg new file mode 100644 index 0000000000..b4c32c3b80 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/viadeo-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/viadeo.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/viadeo.svg new file mode 100644 index 0000000000..68d0fe2a45 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/viadeo.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/viber.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/viber.svg new file mode 100644 index 0000000000..7480953a3a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/viber.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vimeo-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vimeo-square.svg new file mode 100644 index 0000000000..b258d7ef53 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vimeo-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vimeo-v.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vimeo-v.svg new file mode 100644 index 0000000000..05e87b52f5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vimeo-v.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vimeo.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vimeo.svg new file mode 100644 index 0000000000..aa4bb3774a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vimeo.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vine.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vine.svg new file mode 100644 index 0000000000..cb7674d6be --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vine.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vk.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vk.svg new file mode 100644 index 0000000000..ea0e4977d1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vk.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vnv.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vnv.svg new file mode 100644 index 0000000000..ee335482e9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vnv.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vuejs.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vuejs.svg new file mode 100644 index 0000000000..bb05d1ab35 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/vuejs.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/weebly.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/weebly.svg new file mode 100644 index 0000000000..73cca7f25b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/weebly.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/weibo.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/weibo.svg new file mode 100644 index 0000000000..cdad1f9b27 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/weibo.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/weixin.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/weixin.svg new file mode 100644 index 0000000000..502aa29e61 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/weixin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/whatsapp-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/whatsapp-square.svg new file mode 100644 index 0000000000..b2398347d7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/whatsapp-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/whatsapp.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/whatsapp.svg new file mode 100644 index 0000000000..0d06499193 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/whatsapp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/whmcs.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/whmcs.svg new file mode 100644 index 0000000000..d56d1f24fb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/whmcs.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wikipedia-w.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wikipedia-w.svg new file mode 100644 index 0000000000..7fd2155dc5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wikipedia-w.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/windows.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/windows.svg new file mode 100644 index 0000000000..8f9b5d0dfc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/windows.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wix.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wix.svg new file mode 100644 index 0000000000..f6b8acf07b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wix.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wolf-pack-battalion.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wolf-pack-battalion.svg new file mode 100644 index 0000000000..2c07379360 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wolf-pack-battalion.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wordpress-simple.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wordpress-simple.svg new file mode 100644 index 0000000000..a45b3b455a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wordpress-simple.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wordpress.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wordpress.svg new file mode 100644 index 0000000000..1dba955bcb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wordpress.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wpbeginner.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wpbeginner.svg new file mode 100644 index 0000000000..4338f8013b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wpbeginner.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wpexplorer.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wpexplorer.svg new file mode 100644 index 0000000000..b5b6c86ff0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wpexplorer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wpforms.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wpforms.svg new file mode 100644 index 0000000000..2d59f281d7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/wpforms.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/xbox.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/xbox.svg new file mode 100644 index 0000000000..62c792e763 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/xbox.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/xing-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/xing-square.svg new file mode 100644 index 0000000000..8fea82831a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/xing-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/xing.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/xing.svg new file mode 100644 index 0000000000..a31567494f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/xing.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/y-combinator.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/y-combinator.svg new file mode 100644 index 0000000000..d9f1987fea --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/y-combinator.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/yahoo.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/yahoo.svg new file mode 100644 index 0000000000..f2129ce912 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/yahoo.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/yandex-international.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/yandex-international.svg new file mode 100644 index 0000000000..1787967cc3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/yandex-international.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/yandex.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/yandex.svg new file mode 100644 index 0000000000..21d1b3f3db --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/yandex.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/yelp.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/yelp.svg new file mode 100644 index 0000000000..c627d982c6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/yelp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/yoast.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/yoast.svg new file mode 100644 index 0000000000..28e1125bef --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/yoast.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/youtube-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/youtube-square.svg new file mode 100644 index 0000000000..cdd34a3548 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/youtube-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/youtube.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/youtube.svg new file mode 100644 index 0000000000..8e43944a6c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/brands/youtube.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/address-book.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/address-book.svg new file mode 100644 index 0000000000..e0566a9e9f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/address-book.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/address-card.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/address-card.svg new file mode 100644 index 0000000000..90a1f142c3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/address-card.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/angry.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/angry.svg new file mode 100644 index 0000000000..c78e43806d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/angry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/arrow-alt-circle-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/arrow-alt-circle-down.svg new file mode 100644 index 0000000000..2fe52bdd30 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/arrow-alt-circle-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/arrow-alt-circle-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/arrow-alt-circle-left.svg new file mode 100644 index 0000000000..a78a536738 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/arrow-alt-circle-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/arrow-alt-circle-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/arrow-alt-circle-right.svg new file mode 100644 index 0000000000..20fd2b1ef8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/arrow-alt-circle-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/arrow-alt-circle-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/arrow-alt-circle-up.svg new file mode 100644 index 0000000000..517a2c2830 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/arrow-alt-circle-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/bell-slash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/bell-slash.svg new file mode 100644 index 0000000000..1314019205 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/bell-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/bell.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/bell.svg new file mode 100644 index 0000000000..0a820bcfab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/bell.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/bookmark.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/bookmark.svg new file mode 100644 index 0000000000..b8c829d262 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/bookmark.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/building.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/building.svg new file mode 100644 index 0000000000..bab96f0bec --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/building.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/calendar-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/calendar-alt.svg new file mode 100644 index 0000000000..21c71fa754 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/calendar-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/calendar-check.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/calendar-check.svg new file mode 100644 index 0000000000..bcf7a8fa26 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/calendar-check.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/calendar-minus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/calendar-minus.svg new file mode 100644 index 0000000000..c6f37c9cda --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/calendar-minus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/calendar-plus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/calendar-plus.svg new file mode 100644 index 0000000000..f634918027 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/calendar-plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/calendar-times.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/calendar-times.svg new file mode 100644 index 0000000000..c6c8dff692 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/calendar-times.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/calendar.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/calendar.svg new file mode 100644 index 0000000000..5a1c42dfa8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/calendar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/caret-square-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/caret-square-down.svg new file mode 100644 index 0000000000..ba7201627d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/caret-square-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/caret-square-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/caret-square-left.svg new file mode 100644 index 0000000000..7a5c8ce11c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/caret-square-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/caret-square-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/caret-square-right.svg new file mode 100644 index 0000000000..96ae5c63fb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/caret-square-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/caret-square-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/caret-square-up.svg new file mode 100644 index 0000000000..7f724e42ff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/caret-square-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/chart-bar.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/chart-bar.svg new file mode 100644 index 0000000000..f5f9e054eb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/chart-bar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/check-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/check-circle.svg new file mode 100644 index 0000000000..41736caad2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/check-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/check-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/check-square.svg new file mode 100644 index 0000000000..00cde53568 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/check-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/circle.svg new file mode 100644 index 0000000000..b3938f0530 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/clipboard.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/clipboard.svg new file mode 100644 index 0000000000..ae27d66369 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/clipboard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/clock.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/clock.svg new file mode 100644 index 0000000000..107a3e7353 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/clock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/clone.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/clone.svg new file mode 100644 index 0000000000..00c4e37653 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/clone.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/closed-captioning.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/closed-captioning.svg new file mode 100644 index 0000000000..f705a5ef62 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/closed-captioning.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/comment-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/comment-alt.svg new file mode 100644 index 0000000000..da57425a99 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/comment-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/comment-dots.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/comment-dots.svg new file mode 100644 index 0000000000..e8b7616a18 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/comment-dots.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/comment.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/comment.svg new file mode 100644 index 0000000000..417d055468 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/comment.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/comments.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/comments.svg new file mode 100644 index 0000000000..f45afeabca --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/comments.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/compass.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/compass.svg new file mode 100644 index 0000000000..496e132818 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/compass.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/copy.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/copy.svg new file mode 100644 index 0000000000..fbc5962989 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/copy.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/copyright.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/copyright.svg new file mode 100644 index 0000000000..ba4c4b0cab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/copyright.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/credit-card.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/credit-card.svg new file mode 100644 index 0000000000..87671867e1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/credit-card.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/dizzy.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/dizzy.svg new file mode 100644 index 0000000000..61dd47a71f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/dizzy.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/dot-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/dot-circle.svg new file mode 100644 index 0000000000..9adb0bc5c8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/dot-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/edit.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/edit.svg new file mode 100644 index 0000000000..8027438b6e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/edit.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/envelope-open.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/envelope-open.svg new file mode 100644 index 0000000000..f9010fd772 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/envelope-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/envelope.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/envelope.svg new file mode 100644 index 0000000000..4a40003ea7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/envelope.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/eye-slash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/eye-slash.svg new file mode 100644 index 0000000000..890fbb158f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/eye-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/eye.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/eye.svg new file mode 100644 index 0000000000..bfbefe958b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/eye.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-alt.svg new file mode 100644 index 0000000000..79360cf998 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-archive.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-archive.svg new file mode 100644 index 0000000000..d9528faf68 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-archive.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-audio.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-audio.svg new file mode 100644 index 0000000000..3aece5edca --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-audio.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-code.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-code.svg new file mode 100644 index 0000000000..7574176f02 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-code.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-excel.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-excel.svg new file mode 100644 index 0000000000..a79cd5c09f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-excel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-image.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-image.svg new file mode 100644 index 0000000000..49d21c7f22 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-image.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-pdf.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-pdf.svg new file mode 100644 index 0000000000..1362c358ac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-pdf.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-powerpoint.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-powerpoint.svg new file mode 100644 index 0000000000..756b96c09d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-powerpoint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-video.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-video.svg new file mode 100644 index 0000000000..422f648c51 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-video.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-word.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-word.svg new file mode 100644 index 0000000000..a09f8b3f19 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file-word.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file.svg new file mode 100644 index 0000000000..6fa1b83c05 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/file.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/flag.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/flag.svg new file mode 100644 index 0000000000..879c2b68c1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/flag.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/flushed.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/flushed.svg new file mode 100644 index 0000000000..304f14374e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/flushed.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/folder-open.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/folder-open.svg new file mode 100644 index 0000000000..c857c44032 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/folder-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/folder.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/folder.svg new file mode 100644 index 0000000000..5ff25e794f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/folder.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/font-awesome-logo-full.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/font-awesome-logo-full.svg new file mode 100644 index 0000000000..3d8ca619b2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/font-awesome-logo-full.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/frown-open.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/frown-open.svg new file mode 100644 index 0000000000..e8874f13cf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/frown-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/frown.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/frown.svg new file mode 100644 index 0000000000..7f7119394b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/frown.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/futbol.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/futbol.svg new file mode 100644 index 0000000000..cbe6c2de07 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/futbol.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/gem.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/gem.svg new file mode 100644 index 0000000000..adbad486ec --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/gem.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grimace.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grimace.svg new file mode 100644 index 0000000000..3b54789f68 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grimace.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-alt.svg new file mode 100644 index 0000000000..0728d96e02 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-beam-sweat.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-beam-sweat.svg new file mode 100644 index 0000000000..98353de965 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-beam-sweat.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-beam.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-beam.svg new file mode 100644 index 0000000000..7faf265b80 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-beam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-hearts.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-hearts.svg new file mode 100644 index 0000000000..a65b3d55a0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-hearts.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-squint-tears.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-squint-tears.svg new file mode 100644 index 0000000000..7504ea5098 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-squint-tears.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-squint.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-squint.svg new file mode 100644 index 0000000000..b493e79740 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-squint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-stars.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-stars.svg new file mode 100644 index 0000000000..d306e482c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-stars.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-tears.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-tears.svg new file mode 100644 index 0000000000..bee7d6e3b8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-tears.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-tongue-squint.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-tongue-squint.svg new file mode 100644 index 0000000000..0288919c7a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-tongue-squint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-tongue-wink.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-tongue-wink.svg new file mode 100644 index 0000000000..156324a6e7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-tongue-wink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-tongue.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-tongue.svg new file mode 100644 index 0000000000..8e250eb127 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-tongue.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-wink.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-wink.svg new file mode 100644 index 0000000000..f0c6506a6f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin-wink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin.svg new file mode 100644 index 0000000000..e9815b3d44 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/grin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-lizard.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-lizard.svg new file mode 100644 index 0000000000..daf680f8a2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-lizard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-paper.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-paper.svg new file mode 100644 index 0000000000..faf755aa6a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-paper.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-peace.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-peace.svg new file mode 100644 index 0000000000..175e6ded0b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-peace.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-point-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-point-down.svg new file mode 100644 index 0000000000..bbaee190b9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-point-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-point-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-point-left.svg new file mode 100644 index 0000000000..e10d1238e8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-point-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-point-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-point-right.svg new file mode 100644 index 0000000000..37035f0671 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-point-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-point-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-point-up.svg new file mode 100644 index 0000000000..86279343a5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-point-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-pointer.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-pointer.svg new file mode 100644 index 0000000000..88daaba0b3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-pointer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-rock.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-rock.svg new file mode 100644 index 0000000000..0394cc0301 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-rock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-scissors.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-scissors.svg new file mode 100644 index 0000000000..2f2e6e23e0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-scissors.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-spock.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-spock.svg new file mode 100644 index 0000000000..0935b0dd08 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hand-spock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/handshake.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/handshake.svg new file mode 100644 index 0000000000..f054e95104 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/handshake.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hdd.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hdd.svg new file mode 100644 index 0000000000..d95aad680a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hdd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/heart.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/heart.svg new file mode 100644 index 0000000000..083b779b66 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/heart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hospital.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hospital.svg new file mode 100644 index 0000000000..159a7192ca --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hospital.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hourglass.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hourglass.svg new file mode 100644 index 0000000000..9e1fc34fba --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/hourglass.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/id-badge.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/id-badge.svg new file mode 100644 index 0000000000..fefa60be58 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/id-badge.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/id-card.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/id-card.svg new file mode 100644 index 0000000000..a39ea2d9eb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/id-card.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/image.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/image.svg new file mode 100644 index 0000000000..18ce61dacb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/image.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/images.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/images.svg new file mode 100644 index 0000000000..f6199f86c1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/images.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/keyboard.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/keyboard.svg new file mode 100644 index 0000000000..2a6ebc157d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/keyboard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/kiss-beam.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/kiss-beam.svg new file mode 100644 index 0000000000..34a1ec427d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/kiss-beam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/kiss-wink-heart.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/kiss-wink-heart.svg new file mode 100644 index 0000000000..a1e95e070f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/kiss-wink-heart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/kiss.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/kiss.svg new file mode 100644 index 0000000000..9510435606 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/kiss.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/laugh-beam.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/laugh-beam.svg new file mode 100644 index 0000000000..8dbf8d8055 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/laugh-beam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/laugh-squint.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/laugh-squint.svg new file mode 100644 index 0000000000..f150666f83 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/laugh-squint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/laugh-wink.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/laugh-wink.svg new file mode 100644 index 0000000000..764ca9f87b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/laugh-wink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/laugh.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/laugh.svg new file mode 100644 index 0000000000..7b3645408f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/laugh.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/lemon.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/lemon.svg new file mode 100644 index 0000000000..0c6c95cb2e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/lemon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/life-ring.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/life-ring.svg new file mode 100644 index 0000000000..51a42ce0ca --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/life-ring.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/lightbulb.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/lightbulb.svg new file mode 100644 index 0000000000..1c18de5687 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/lightbulb.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/list-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/list-alt.svg new file mode 100644 index 0000000000..56a199d9e9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/list-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/map.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/map.svg new file mode 100644 index 0000000000..6c769aa54f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/map.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/meh-blank.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/meh-blank.svg new file mode 100644 index 0000000000..7234c34d25 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/meh-blank.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/meh-rolling-eyes.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/meh-rolling-eyes.svg new file mode 100644 index 0000000000..5c431f9ab2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/meh-rolling-eyes.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/meh.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/meh.svg new file mode 100644 index 0000000000..912d6d8ad1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/meh.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/minus-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/minus-square.svg new file mode 100644 index 0000000000..32f4c88f0d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/minus-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/money-bill-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/money-bill-alt.svg new file mode 100644 index 0000000000..b14c0cca14 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/money-bill-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/moon.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/moon.svg new file mode 100644 index 0000000000..1a1304da56 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/moon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/newspaper.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/newspaper.svg new file mode 100644 index 0000000000..56f017c02e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/newspaper.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/object-group.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/object-group.svg new file mode 100644 index 0000000000..91c07aea8a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/object-group.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/object-ungroup.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/object-ungroup.svg new file mode 100644 index 0000000000..f21d322dd0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/object-ungroup.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/paper-plane.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/paper-plane.svg new file mode 100644 index 0000000000..c8d1a8e103 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/paper-plane.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/pause-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/pause-circle.svg new file mode 100644 index 0000000000..e28119c606 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/pause-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/play-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/play-circle.svg new file mode 100644 index 0000000000..f112aa7e9d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/play-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/plus-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/plus-square.svg new file mode 100644 index 0000000000..b3fa1105e6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/plus-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/question-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/question-circle.svg new file mode 100644 index 0000000000..23c095426f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/question-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/registered.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/registered.svg new file mode 100644 index 0000000000..80ca392516 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/registered.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/sad-cry.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/sad-cry.svg new file mode 100644 index 0000000000..f3f7b862a8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/sad-cry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/sad-tear.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/sad-tear.svg new file mode 100644 index 0000000000..e5ca8acec6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/sad-tear.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/save.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/save.svg new file mode 100644 index 0000000000..fcd3782431 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/save.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/share-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/share-square.svg new file mode 100644 index 0000000000..06e94cca79 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/share-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/smile-beam.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/smile-beam.svg new file mode 100644 index 0000000000..e57e5ae5e3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/smile-beam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/smile-wink.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/smile-wink.svg new file mode 100644 index 0000000000..421bd6487f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/smile-wink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/smile.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/smile.svg new file mode 100644 index 0000000000..a6cce37568 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/smile.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/snowflake.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/snowflake.svg new file mode 100644 index 0000000000..f6e3879ad3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/snowflake.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/square.svg new file mode 100644 index 0000000000..d1e72c07d4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/star-half.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/star-half.svg new file mode 100644 index 0000000000..4dc7f232d3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/star-half.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/star.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/star.svg new file mode 100644 index 0000000000..787d65b962 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/star.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/sticky-note.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/sticky-note.svg new file mode 100644 index 0000000000..c131560a26 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/sticky-note.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/stop-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/stop-circle.svg new file mode 100644 index 0000000000..1b6159f5f5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/stop-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/sun.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/sun.svg new file mode 100644 index 0000000000..410f290780 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/sun.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/surprise.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/surprise.svg new file mode 100644 index 0000000000..318788899f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/surprise.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/thumbs-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/thumbs-down.svg new file mode 100644 index 0000000000..384e69e96f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/thumbs-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/thumbs-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/thumbs-up.svg new file mode 100644 index 0000000000..0ce91518c3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/thumbs-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/times-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/times-circle.svg new file mode 100644 index 0000000000..0820daf745 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/times-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/tired.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/tired.svg new file mode 100644 index 0000000000..b78a5e557a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/tired.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/trash-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/trash-alt.svg new file mode 100644 index 0000000000..76d36d8063 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/trash-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/user-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/user-circle.svg new file mode 100644 index 0000000000..7c450a1c64 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/user-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/user.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/user.svg new file mode 100644 index 0000000000..84262baa2b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/user.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/window-close.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/window-close.svg new file mode 100644 index 0000000000..c5c2969516 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/window-close.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/window-maximize.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/window-maximize.svg new file mode 100644 index 0000000000..5e8c0991f2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/window-maximize.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/window-minimize.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/window-minimize.svg new file mode 100644 index 0000000000..d393fe7c3d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/window-minimize.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/window-restore.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/window-restore.svg new file mode 100644 index 0000000000..5e93e0e82b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/regular/window-restore.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/address-book.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/address-book.svg new file mode 100644 index 0000000000..2a86f7e0d2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/address-book.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/address-card.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/address-card.svg new file mode 100644 index 0000000000..2b131d273a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/address-card.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/adjust.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/adjust.svg new file mode 100644 index 0000000000..6ffd6cb9f0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/adjust.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/align-center.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/align-center.svg new file mode 100644 index 0000000000..f2f3bbc6b4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/align-center.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/align-justify.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/align-justify.svg new file mode 100644 index 0000000000..66f8c4bcb8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/align-justify.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/align-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/align-left.svg new file mode 100644 index 0000000000..56af522618 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/align-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/align-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/align-right.svg new file mode 100644 index 0000000000..f4c2dd3eb3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/align-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/allergies.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/allergies.svg new file mode 100644 index 0000000000..bfa4cf22cf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/allergies.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ambulance.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ambulance.svg new file mode 100644 index 0000000000..5e8a6f6f26 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ambulance.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/american-sign-language-interpreting.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/american-sign-language-interpreting.svg new file mode 100644 index 0000000000..c2af39ab59 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/american-sign-language-interpreting.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/anchor.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/anchor.svg new file mode 100644 index 0000000000..6ea63a6f52 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/anchor.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-double-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-double-down.svg new file mode 100644 index 0000000000..8801717418 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-double-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-double-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-double-left.svg new file mode 100644 index 0000000000..a5e1c4c68b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-double-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-double-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-double-right.svg new file mode 100644 index 0000000000..07e9b0fbbb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-double-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-double-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-double-up.svg new file mode 100644 index 0000000000..9fa803c4ed --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-double-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-down.svg new file mode 100644 index 0000000000..7e37c74ec6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-left.svg new file mode 100644 index 0000000000..a7fbc128b0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-right.svg new file mode 100644 index 0000000000..02b02a8345 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-up.svg new file mode 100644 index 0000000000..344bb72747 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angle-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angry.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angry.svg new file mode 100644 index 0000000000..c3e1d8f75b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/angry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/archive.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/archive.svg new file mode 100644 index 0000000000..e401eff04d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/archive.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/archway.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/archway.svg new file mode 100644 index 0000000000..58f1c09a1f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/archway.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-alt-circle-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-alt-circle-down.svg new file mode 100644 index 0000000000..546914cc3b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-alt-circle-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-alt-circle-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-alt-circle-left.svg new file mode 100644 index 0000000000..727114b744 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-alt-circle-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-alt-circle-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-alt-circle-right.svg new file mode 100644 index 0000000000..a9dfc1b456 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-alt-circle-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-alt-circle-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-alt-circle-up.svg new file mode 100644 index 0000000000..331d490cbc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-alt-circle-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-circle-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-circle-down.svg new file mode 100644 index 0000000000..8a23a46c1e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-circle-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-circle-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-circle-left.svg new file mode 100644 index 0000000000..10557aeeef --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-circle-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-circle-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-circle-right.svg new file mode 100644 index 0000000000..2a9115de8c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-circle-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-circle-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-circle-up.svg new file mode 100644 index 0000000000..a91aa983b5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-circle-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-down.svg new file mode 100644 index 0000000000..3a120be3de --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-left.svg new file mode 100644 index 0000000000..964b892456 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-right.svg new file mode 100644 index 0000000000..6fb413ad02 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-up.svg new file mode 100644 index 0000000000..e2f6ecc5d1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrow-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrows-alt-h.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrows-alt-h.svg new file mode 100644 index 0000000000..0121ddec91 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrows-alt-h.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrows-alt-v.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrows-alt-v.svg new file mode 100644 index 0000000000..c23421e059 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrows-alt-v.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrows-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrows-alt.svg new file mode 100644 index 0000000000..dc40ba5827 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/arrows-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/assistive-listening-systems.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/assistive-listening-systems.svg new file mode 100644 index 0000000000..a979fe87e5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/assistive-listening-systems.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/asterisk.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/asterisk.svg new file mode 100644 index 0000000000..49875af930 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/asterisk.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/at.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/at.svg new file mode 100644 index 0000000000..42cad11f51 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/at.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/atlas.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/atlas.svg new file mode 100644 index 0000000000..32b1b45311 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/atlas.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/audio-description.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/audio-description.svg new file mode 100644 index 0000000000..82da6dad8b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/audio-description.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/award.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/award.svg new file mode 100644 index 0000000000..890e8001e9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/award.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/backspace.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/backspace.svg new file mode 100644 index 0000000000..3e9cd19b97 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/backspace.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/backward.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/backward.svg new file mode 100644 index 0000000000..b3d289732d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/backward.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/balance-scale.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/balance-scale.svg new file mode 100644 index 0000000000..d3120471c4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/balance-scale.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ban.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ban.svg new file mode 100644 index 0000000000..a8597ed62a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ban.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/band-aid.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/band-aid.svg new file mode 100644 index 0000000000..24c565e400 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/band-aid.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/barcode.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/barcode.svg new file mode 100644 index 0000000000..6a3a8f6f83 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/barcode.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bars.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bars.svg new file mode 100644 index 0000000000..4a5a352808 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bars.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/baseball-ball.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/baseball-ball.svg new file mode 100644 index 0000000000..41ca618d59 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/baseball-ball.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/basketball-ball.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/basketball-ball.svg new file mode 100644 index 0000000000..c16fc27a21 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/basketball-ball.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bath.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bath.svg new file mode 100644 index 0000000000..bc8b3dae95 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bath.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/battery-empty.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/battery-empty.svg new file mode 100644 index 0000000000..49d7b162a3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/battery-empty.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/battery-full.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/battery-full.svg new file mode 100644 index 0000000000..54390ec9d5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/battery-full.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/battery-half.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/battery-half.svg new file mode 100644 index 0000000000..4f6514b5b0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/battery-half.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/battery-quarter.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/battery-quarter.svg new file mode 100644 index 0000000000..e494721b35 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/battery-quarter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/battery-three-quarters.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/battery-three-quarters.svg new file mode 100644 index 0000000000..e187b281de --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/battery-three-quarters.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bed.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bed.svg new file mode 100644 index 0000000000..33d8735b12 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bed.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/beer.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/beer.svg new file mode 100644 index 0000000000..4952d24b57 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/beer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bell-slash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bell-slash.svg new file mode 100644 index 0000000000..685f3c5c5b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bell-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bell.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bell.svg new file mode 100644 index 0000000000..18115033b3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bell.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bezier-curve.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bezier-curve.svg new file mode 100644 index 0000000000..f5d7cd5b96 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bezier-curve.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bicycle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bicycle.svg new file mode 100644 index 0000000000..1c47c6a9f2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bicycle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/binoculars.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/binoculars.svg new file mode 100644 index 0000000000..a131ca4913 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/binoculars.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/birthday-cake.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/birthday-cake.svg new file mode 100644 index 0000000000..f2876717c1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/birthday-cake.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/blender.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/blender.svg new file mode 100644 index 0000000000..436fa6192e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/blender.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/blind.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/blind.svg new file mode 100644 index 0000000000..8cfb5544b3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/blind.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bold.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bold.svg new file mode 100644 index 0000000000..aa15db61bb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bold.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bolt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bolt.svg new file mode 100644 index 0000000000..b26d9050cb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bolt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bomb.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bomb.svg new file mode 100644 index 0000000000..f29d49605d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bomb.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bong.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bong.svg new file mode 100644 index 0000000000..90cab535c3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bong.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/book-open.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/book-open.svg new file mode 100644 index 0000000000..2ca9d3e6af --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/book-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/book.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/book.svg new file mode 100644 index 0000000000..de411184d6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/book.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bookmark.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bookmark.svg new file mode 100644 index 0000000000..9b37b4e0b0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bookmark.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bowling-ball.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bowling-ball.svg new file mode 100644 index 0000000000..d50252c407 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bowling-ball.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/box-open.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/box-open.svg new file mode 100644 index 0000000000..0a5030fbaf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/box-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/box.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/box.svg new file mode 100644 index 0000000000..e86674386c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/box.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/boxes.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/boxes.svg new file mode 100644 index 0000000000..efc626f968 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/boxes.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/braille.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/braille.svg new file mode 100644 index 0000000000..fbe640b0b8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/braille.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/briefcase-medical.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/briefcase-medical.svg new file mode 100644 index 0000000000..e34a42d0c7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/briefcase-medical.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/briefcase.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/briefcase.svg new file mode 100644 index 0000000000..4ba2d0c2fc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/briefcase.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/broadcast-tower.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/broadcast-tower.svg new file mode 100644 index 0000000000..58177c852f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/broadcast-tower.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/broom.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/broom.svg new file mode 100644 index 0000000000..e06a976e7e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/broom.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/brush.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/brush.svg new file mode 100644 index 0000000000..6f7b04d1a6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/brush.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bug.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bug.svg new file mode 100644 index 0000000000..aeb51d91e6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bug.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/building.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/building.svg new file mode 100644 index 0000000000..d9e3cff4f2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/building.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bullhorn.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bullhorn.svg new file mode 100644 index 0000000000..9dbb259387 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bullhorn.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bullseye.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bullseye.svg new file mode 100644 index 0000000000..7665a6be80 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bullseye.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/burn.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/burn.svg new file mode 100644 index 0000000000..d84ea7e7c8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/burn.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bus-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bus-alt.svg new file mode 100644 index 0000000000..e99742aa14 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bus-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bus.svg new file mode 100644 index 0000000000..d1c81570c9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/bus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calculator.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calculator.svg new file mode 100644 index 0000000000..9f01a83ee2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calculator.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calendar-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calendar-alt.svg new file mode 100644 index 0000000000..98840eba9f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calendar-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calendar-check.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calendar-check.svg new file mode 100644 index 0000000000..92802982b8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calendar-check.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calendar-minus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calendar-minus.svg new file mode 100644 index 0000000000..8eccdcab83 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calendar-minus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calendar-plus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calendar-plus.svg new file mode 100644 index 0000000000..54fe74da33 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calendar-plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calendar-times.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calendar-times.svg new file mode 100644 index 0000000000..fa030b0ccf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calendar-times.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calendar.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calendar.svg new file mode 100644 index 0000000000..4c1d92e0c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/calendar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/camera-retro.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/camera-retro.svg new file mode 100644 index 0000000000..eb4d4121b6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/camera-retro.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/camera.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/camera.svg new file mode 100644 index 0000000000..83f1b2345f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/camera.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cannabis.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cannabis.svg new file mode 100644 index 0000000000..542ec7f7c2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cannabis.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/capsules.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/capsules.svg new file mode 100644 index 0000000000..c3440d67b7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/capsules.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/car.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/car.svg new file mode 100644 index 0000000000..95f09461a1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/car.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-down.svg new file mode 100644 index 0000000000..b2387da8ca --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-left.svg new file mode 100644 index 0000000000..12fbefd785 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-right.svg new file mode 100644 index 0000000000..50fdb87788 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-square-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-square-down.svg new file mode 100644 index 0000000000..ecf8aa24fc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-square-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-square-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-square-left.svg new file mode 100644 index 0000000000..25ebf4093b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-square-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-square-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-square-right.svg new file mode 100644 index 0000000000..49c73ca2cc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-square-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-square-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-square-up.svg new file mode 100644 index 0000000000..ac68265728 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-square-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-up.svg new file mode 100644 index 0000000000..17e6b15c2d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/caret-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cart-arrow-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cart-arrow-down.svg new file mode 100644 index 0000000000..097c459183 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cart-arrow-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cart-plus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cart-plus.svg new file mode 100644 index 0000000000..339fafc95e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cart-plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/certificate.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/certificate.svg new file mode 100644 index 0000000000..c334e93dc8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/certificate.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chalkboard-teacher.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chalkboard-teacher.svg new file mode 100644 index 0000000000..55301e802d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chalkboard-teacher.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chalkboard.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chalkboard.svg new file mode 100644 index 0000000000..38d3954552 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chalkboard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chart-area.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chart-area.svg new file mode 100644 index 0000000000..1f71438f70 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chart-area.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chart-bar.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chart-bar.svg new file mode 100644 index 0000000000..4bba0eebff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chart-bar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chart-line.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chart-line.svg new file mode 100644 index 0000000000..7d808de854 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chart-line.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chart-pie.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chart-pie.svg new file mode 100644 index 0000000000..1771c7f0be --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chart-pie.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/check-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/check-circle.svg new file mode 100644 index 0000000000..59d49d5152 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/check-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/check-double.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/check-double.svg new file mode 100644 index 0000000000..5478214d46 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/check-double.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/check-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/check-square.svg new file mode 100644 index 0000000000..e2ac6152b4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/check-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/check.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/check.svg new file mode 100644 index 0000000000..734fef3cd5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/check.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-bishop.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-bishop.svg new file mode 100644 index 0000000000..f29d0823b9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-bishop.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-board.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-board.svg new file mode 100644 index 0000000000..e99a20e3ff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-board.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-king.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-king.svg new file mode 100644 index 0000000000..b238194b41 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-king.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-knight.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-knight.svg new file mode 100644 index 0000000000..70b9cdd418 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-knight.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-pawn.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-pawn.svg new file mode 100644 index 0000000000..606674119e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-pawn.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-queen.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-queen.svg new file mode 100644 index 0000000000..41cd28527e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-queen.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-rook.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-rook.svg new file mode 100644 index 0000000000..96720694d5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess-rook.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess.svg new file mode 100644 index 0000000000..67f7d6a4f0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chess.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-circle-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-circle-down.svg new file mode 100644 index 0000000000..a55e447dd8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-circle-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-circle-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-circle-left.svg new file mode 100644 index 0000000000..040388e58c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-circle-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-circle-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-circle-right.svg new file mode 100644 index 0000000000..617aa2d8cb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-circle-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-circle-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-circle-up.svg new file mode 100644 index 0000000000..bf8e26de36 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-circle-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-down.svg new file mode 100644 index 0000000000..a4a9dbb10e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-left.svg new file mode 100644 index 0000000000..4a1ca8e124 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-right.svg new file mode 100644 index 0000000000..74a8dbe1e2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-up.svg new file mode 100644 index 0000000000..e70465200f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/chevron-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/child.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/child.svg new file mode 100644 index 0000000000..feb2ebc719 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/child.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/church.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/church.svg new file mode 100644 index 0000000000..1a8e4bb59a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/church.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/circle-notch.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/circle-notch.svg new file mode 100644 index 0000000000..677f38a48d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/circle-notch.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/circle.svg new file mode 100644 index 0000000000..b7c8bbf209 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/clipboard-check.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/clipboard-check.svg new file mode 100644 index 0000000000..6d474fc3e0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/clipboard-check.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/clipboard-list.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/clipboard-list.svg new file mode 100644 index 0000000000..bb74ebda81 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/clipboard-list.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/clipboard.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/clipboard.svg new file mode 100644 index 0000000000..069083d42d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/clipboard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/clock.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/clock.svg new file mode 100644 index 0000000000..025d6e66b0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/clock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/clone.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/clone.svg new file mode 100644 index 0000000000..0f58097483 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/clone.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/closed-captioning.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/closed-captioning.svg new file mode 100644 index 0000000000..2bb6271bfb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/closed-captioning.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cloud-download-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cloud-download-alt.svg new file mode 100644 index 0000000000..c82462c8f3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cloud-download-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cloud-upload-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cloud-upload-alt.svg new file mode 100644 index 0000000000..7911baa330 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cloud-upload-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cloud.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cloud.svg new file mode 100644 index 0000000000..534073c83c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cloud.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cocktail.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cocktail.svg new file mode 100644 index 0000000000..dd88c33d3f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cocktail.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/code-branch.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/code-branch.svg new file mode 100644 index 0000000000..12d622a020 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/code-branch.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/code.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/code.svg new file mode 100644 index 0000000000..91d2101053 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/code.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/coffee.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/coffee.svg new file mode 100644 index 0000000000..07f32bd7f3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/coffee.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cog.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cog.svg new file mode 100644 index 0000000000..03ef768aa2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cog.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cogs.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cogs.svg new file mode 100644 index 0000000000..6d7e7639d2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cogs.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/coins.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/coins.svg new file mode 100644 index 0000000000..870f5c1418 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/coins.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/columns.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/columns.svg new file mode 100644 index 0000000000..56cec35459 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/columns.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/comment-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/comment-alt.svg new file mode 100644 index 0000000000..54122f82f8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/comment-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/comment-dots.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/comment-dots.svg new file mode 100644 index 0000000000..54859bda02 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/comment-dots.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/comment-slash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/comment-slash.svg new file mode 100644 index 0000000000..c405b40f9d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/comment-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/comment.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/comment.svg new file mode 100644 index 0000000000..8f11291651 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/comment.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/comments.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/comments.svg new file mode 100644 index 0000000000..a7b1ac1797 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/comments.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/compact-disc.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/compact-disc.svg new file mode 100644 index 0000000000..848953cacc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/compact-disc.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/compass.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/compass.svg new file mode 100644 index 0000000000..0e871465ab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/compass.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/compress.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/compress.svg new file mode 100644 index 0000000000..c5f5bbd346 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/compress.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/concierge-bell.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/concierge-bell.svg new file mode 100644 index 0000000000..03c95171d4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/concierge-bell.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cookie-bite.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cookie-bite.svg new file mode 100644 index 0000000000..1d2e71f39b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cookie-bite.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cookie.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cookie.svg new file mode 100644 index 0000000000..4248a5efbd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cookie.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/copy.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/copy.svg new file mode 100644 index 0000000000..019ff0290e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/copy.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/copyright.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/copyright.svg new file mode 100644 index 0000000000..f57dda8614 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/copyright.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/couch.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/couch.svg new file mode 100644 index 0000000000..4dcb45fec8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/couch.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/credit-card.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/credit-card.svg new file mode 100644 index 0000000000..03536347dd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/credit-card.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/crop-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/crop-alt.svg new file mode 100644 index 0000000000..067ab5b5f9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/crop-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/crop.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/crop.svg new file mode 100644 index 0000000000..cf68df204f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/crop.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/crosshairs.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/crosshairs.svg new file mode 100644 index 0000000000..b22294f6d4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/crosshairs.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/crow.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/crow.svg new file mode 100644 index 0000000000..f47ba08dd9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/crow.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/crown.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/crown.svg new file mode 100644 index 0000000000..600e9754b7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/crown.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cube.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cube.svg new file mode 100644 index 0000000000..fdf4667765 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cube.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cubes.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cubes.svg new file mode 100644 index 0000000000..b9440f8265 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cubes.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cut.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cut.svg new file mode 100644 index 0000000000..ec9593d922 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/cut.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/database.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/database.svg new file mode 100644 index 0000000000..b19745a306 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/database.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/deaf.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/deaf.svg new file mode 100644 index 0000000000..5364f2576e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/deaf.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/desktop.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/desktop.svg new file mode 100644 index 0000000000..b659bbaa24 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/desktop.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/diagnoses.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/diagnoses.svg new file mode 100644 index 0000000000..9f54a045a8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/diagnoses.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice-five.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice-five.svg new file mode 100644 index 0000000000..5691f50c95 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice-five.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice-four.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice-four.svg new file mode 100644 index 0000000000..78da7617c2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice-four.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice-one.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice-one.svg new file mode 100644 index 0000000000..fc535b4db7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice-one.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice-six.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice-six.svg new file mode 100644 index 0000000000..21c0281488 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice-six.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice-three.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice-three.svg new file mode 100644 index 0000000000..b10976209b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice-three.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice-two.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice-two.svg new file mode 100644 index 0000000000..db7f87a169 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice-two.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice.svg new file mode 100644 index 0000000000..1d9030d420 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dice.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/digital-tachograph.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/digital-tachograph.svg new file mode 100644 index 0000000000..afaa2d8cd4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/digital-tachograph.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/divide.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/divide.svg new file mode 100644 index 0000000000..6c21fafcac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/divide.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dizzy.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dizzy.svg new file mode 100644 index 0000000000..ef5faf1df4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dizzy.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dna.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dna.svg new file mode 100644 index 0000000000..03792f1609 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dna.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dollar-sign.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dollar-sign.svg new file mode 100644 index 0000000000..f38c1cd6d5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dollar-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dolly-flatbed.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dolly-flatbed.svg new file mode 100644 index 0000000000..c187bc5fe3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dolly-flatbed.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dolly.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dolly.svg new file mode 100644 index 0000000000..4fa6ecf822 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dolly.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/donate.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/donate.svg new file mode 100644 index 0000000000..d6fd9323aa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/donate.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/door-closed.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/door-closed.svg new file mode 100644 index 0000000000..6813e79461 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/door-closed.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/door-open.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/door-open.svg new file mode 100644 index 0000000000..ae4d7ab4b4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/door-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dot-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dot-circle.svg new file mode 100644 index 0000000000..de7e61c969 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dot-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dove.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dove.svg new file mode 100644 index 0000000000..fb69f6b079 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dove.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/download.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/download.svg new file mode 100644 index 0000000000..8359104de6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/download.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/drafting-compass.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/drafting-compass.svg new file mode 100644 index 0000000000..f728f0de3c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/drafting-compass.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/drum-steelpan.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/drum-steelpan.svg new file mode 100644 index 0000000000..0992c01ea2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/drum-steelpan.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/drum.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/drum.svg new file mode 100644 index 0000000000..6d098dd93d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/drum.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dumbbell.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dumbbell.svg new file mode 100644 index 0000000000..3d71f1629a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/dumbbell.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/edit.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/edit.svg new file mode 100644 index 0000000000..08d38e8ce3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/edit.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/eject.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/eject.svg new file mode 100644 index 0000000000..aec4bdf960 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/eject.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ellipsis-h.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ellipsis-h.svg new file mode 100644 index 0000000000..30975fdbf9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ellipsis-h.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ellipsis-v.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ellipsis-v.svg new file mode 100644 index 0000000000..4cc8c2aeea --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ellipsis-v.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/envelope-open.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/envelope-open.svg new file mode 100644 index 0000000000..93f097cb33 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/envelope-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/envelope-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/envelope-square.svg new file mode 100644 index 0000000000..1c94300a0c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/envelope-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/envelope.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/envelope.svg new file mode 100644 index 0000000000..05fbf39528 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/envelope.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/equals.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/equals.svg new file mode 100644 index 0000000000..e0345ec004 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/equals.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/eraser.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/eraser.svg new file mode 100644 index 0000000000..f07e4bff3b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/eraser.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/euro-sign.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/euro-sign.svg new file mode 100644 index 0000000000..46dee86c69 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/euro-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/exchange-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/exchange-alt.svg new file mode 100644 index 0000000000..144013977b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/exchange-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/exclamation-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/exclamation-circle.svg new file mode 100644 index 0000000000..edd26093da --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/exclamation-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/exclamation-triangle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/exclamation-triangle.svg new file mode 100644 index 0000000000..4fd929429c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/exclamation-triangle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/exclamation.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/exclamation.svg new file mode 100644 index 0000000000..6cc3c00e03 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/exclamation.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/expand-arrows-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/expand-arrows-alt.svg new file mode 100644 index 0000000000..c2cfcc94da --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/expand-arrows-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/expand.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/expand.svg new file mode 100644 index 0000000000..84a5bddad0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/expand.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/external-link-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/external-link-alt.svg new file mode 100644 index 0000000000..feb5052471 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/external-link-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/external-link-square-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/external-link-square-alt.svg new file mode 100644 index 0000000000..19bf7bed47 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/external-link-square-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/eye-dropper.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/eye-dropper.svg new file mode 100644 index 0000000000..03d6d89c4c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/eye-dropper.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/eye-slash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/eye-slash.svg new file mode 100644 index 0000000000..88825dacda --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/eye-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/eye.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/eye.svg new file mode 100644 index 0000000000..1397767856 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/eye.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fast-backward.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fast-backward.svg new file mode 100644 index 0000000000..dfe10e5c53 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fast-backward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fast-forward.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fast-forward.svg new file mode 100644 index 0000000000..57c072ae12 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fast-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fax.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fax.svg new file mode 100644 index 0000000000..cbc63f3d93 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fax.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/feather-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/feather-alt.svg new file mode 100644 index 0000000000..7a7d8d09a0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/feather-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/feather.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/feather.svg new file mode 100644 index 0000000000..04f2068214 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/feather.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/female.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/female.svg new file mode 100644 index 0000000000..65d046c22b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/female.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fighter-jet.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fighter-jet.svg new file mode 100644 index 0000000000..45ae0d1bb1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fighter-jet.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-alt.svg new file mode 100644 index 0000000000..b5020b0ba4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-archive.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-archive.svg new file mode 100644 index 0000000000..47039f0556 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-archive.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-audio.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-audio.svg new file mode 100644 index 0000000000..a8017cb3dd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-audio.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-code.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-code.svg new file mode 100644 index 0000000000..85bcdc5614 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-code.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-contract.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-contract.svg new file mode 100644 index 0000000000..39f8c28200 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-contract.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-download.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-download.svg new file mode 100644 index 0000000000..c719e52ca4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-download.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-excel.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-excel.svg new file mode 100644 index 0000000000..abb073e1f9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-excel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-export.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-export.svg new file mode 100644 index 0000000000..b2a452a63f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-export.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-image.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-image.svg new file mode 100644 index 0000000000..f48641d982 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-image.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-import.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-import.svg new file mode 100644 index 0000000000..da72257a9c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-import.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-invoice-dollar.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-invoice-dollar.svg new file mode 100644 index 0000000000..6313da4958 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-invoice-dollar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-invoice.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-invoice.svg new file mode 100644 index 0000000000..37fb5722c4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-invoice.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-medical-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-medical-alt.svg new file mode 100644 index 0000000000..45c110542c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-medical-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-medical.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-medical.svg new file mode 100644 index 0000000000..94ee678139 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-medical.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-pdf.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-pdf.svg new file mode 100644 index 0000000000..a6c596ea3b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-pdf.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-powerpoint.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-powerpoint.svg new file mode 100644 index 0000000000..d6a2e15598 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-powerpoint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-prescription.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-prescription.svg new file mode 100644 index 0000000000..8a70ce1aeb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-prescription.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-signature.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-signature.svg new file mode 100644 index 0000000000..3f43875e43 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-signature.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-upload.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-upload.svg new file mode 100644 index 0000000000..db73284676 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-upload.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-video.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-video.svg new file mode 100644 index 0000000000..77201ebe30 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-video.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-word.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-word.svg new file mode 100644 index 0000000000..f71c1792fd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file-word.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file.svg new file mode 100644 index 0000000000..fcec2837b7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/file.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fill-drip.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fill-drip.svg new file mode 100644 index 0000000000..22db93f190 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fill-drip.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fill.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fill.svg new file mode 100644 index 0000000000..061d2aacff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fill.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/film.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/film.svg new file mode 100644 index 0000000000..20bf10bb91 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/film.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/filter.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/filter.svg new file mode 100644 index 0000000000..67a32073d2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/filter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fingerprint.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fingerprint.svg new file mode 100644 index 0000000000..816acd014d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fingerprint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fire-extinguisher.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fire-extinguisher.svg new file mode 100644 index 0000000000..e651d98606 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fire-extinguisher.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fire.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fire.svg new file mode 100644 index 0000000000..e6278796c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fire.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/first-aid.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/first-aid.svg new file mode 100644 index 0000000000..f19305b455 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/first-aid.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fish.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fish.svg new file mode 100644 index 0000000000..62f476c00e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/fish.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/flag-checkered.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/flag-checkered.svg new file mode 100644 index 0000000000..5dfd4799b6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/flag-checkered.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/flag.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/flag.svg new file mode 100644 index 0000000000..c45fb7ecb5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/flag.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/flask.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/flask.svg new file mode 100644 index 0000000000..b2a6f4149d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/flask.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/flushed.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/flushed.svg new file mode 100644 index 0000000000..233c668c9f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/flushed.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/folder-open.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/folder-open.svg new file mode 100644 index 0000000000..2a9d6ac17d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/folder-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/folder.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/folder.svg new file mode 100644 index 0000000000..22b8e7851d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/folder.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/font-awesome-logo-full.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/font-awesome-logo-full.svg new file mode 100644 index 0000000000..3d8ca619b2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/font-awesome-logo-full.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/font.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/font.svg new file mode 100644 index 0000000000..0be9256bbd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/font.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/football-ball.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/football-ball.svg new file mode 100644 index 0000000000..5fff0067b8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/football-ball.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/forward.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/forward.svg new file mode 100644 index 0000000000..c9c3674d56 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/forward.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/frog.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/frog.svg new file mode 100644 index 0000000000..a41984f7e7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/frog.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/frown-open.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/frown-open.svg new file mode 100644 index 0000000000..5992148f02 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/frown-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/frown.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/frown.svg new file mode 100644 index 0000000000..46d891a94e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/frown.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/futbol.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/futbol.svg new file mode 100644 index 0000000000..7cd4bc3842 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/futbol.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/gamepad.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/gamepad.svg new file mode 100644 index 0000000000..7f018d7332 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/gamepad.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/gas-pump.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/gas-pump.svg new file mode 100644 index 0000000000..71aee2d4dc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/gas-pump.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/gavel.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/gavel.svg new file mode 100644 index 0000000000..79f964c489 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/gavel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/gem.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/gem.svg new file mode 100644 index 0000000000..6a7e1da2d9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/gem.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/genderless.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/genderless.svg new file mode 100644 index 0000000000..aeb7838eea --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/genderless.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/gift.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/gift.svg new file mode 100644 index 0000000000..7c3507ced5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/gift.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/glass-martini-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/glass-martini-alt.svg new file mode 100644 index 0000000000..631818037c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/glass-martini-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/glass-martini.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/glass-martini.svg new file mode 100644 index 0000000000..14f1ac334c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/glass-martini.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/glasses.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/glasses.svg new file mode 100644 index 0000000000..9a63313381 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/glasses.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/globe-africa.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/globe-africa.svg new file mode 100644 index 0000000000..861e5045c5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/globe-africa.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/globe-americas.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/globe-americas.svg new file mode 100644 index 0000000000..0c2e63f2e5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/globe-americas.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/globe-asia.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/globe-asia.svg new file mode 100644 index 0000000000..33d9b9678e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/globe-asia.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/globe.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/globe.svg new file mode 100644 index 0000000000..082eb500c1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/globe.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/golf-ball.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/golf-ball.svg new file mode 100644 index 0000000000..ac26838582 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/golf-ball.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/graduation-cap.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/graduation-cap.svg new file mode 100644 index 0000000000..f4dd062b68 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/graduation-cap.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/greater-than-equal.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/greater-than-equal.svg new file mode 100644 index 0000000000..a5b35fedaa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/greater-than-equal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/greater-than.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/greater-than.svg new file mode 100644 index 0000000000..94b0d9e3e3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/greater-than.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grimace.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grimace.svg new file mode 100644 index 0000000000..67031ac66e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grimace.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-alt.svg new file mode 100644 index 0000000000..23fba0d156 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-beam-sweat.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-beam-sweat.svg new file mode 100644 index 0000000000..fc7ad7ce47 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-beam-sweat.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-beam.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-beam.svg new file mode 100644 index 0000000000..3f1e3b1b13 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-beam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-hearts.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-hearts.svg new file mode 100644 index 0000000000..8b019c4782 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-hearts.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-squint-tears.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-squint-tears.svg new file mode 100644 index 0000000000..6e05629a95 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-squint-tears.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-squint.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-squint.svg new file mode 100644 index 0000000000..e3d7773f05 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-squint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-stars.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-stars.svg new file mode 100644 index 0000000000..970d6cae87 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-stars.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-tears.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-tears.svg new file mode 100644 index 0000000000..08c272a019 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-tears.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-tongue-squint.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-tongue-squint.svg new file mode 100644 index 0000000000..bea42a4963 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-tongue-squint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-tongue-wink.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-tongue-wink.svg new file mode 100644 index 0000000000..fb71304b79 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-tongue-wink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-tongue.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-tongue.svg new file mode 100644 index 0000000000..6663ebc211 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-tongue.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-wink.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-wink.svg new file mode 100644 index 0000000000..d4bbdde6f2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin-wink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin.svg new file mode 100644 index 0000000000..e876d7271e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grip-horizontal.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grip-horizontal.svg new file mode 100644 index 0000000000..d06d500dd1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grip-horizontal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grip-vertical.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grip-vertical.svg new file mode 100644 index 0000000000..c48c3eabb0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/grip-vertical.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/h-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/h-square.svg new file mode 100644 index 0000000000..aa03b66f0f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/h-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-holding-heart.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-holding-heart.svg new file mode 100644 index 0000000000..f5564d6977 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-holding-heart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-holding-usd.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-holding-usd.svg new file mode 100644 index 0000000000..3b61dbda66 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-holding-usd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-holding.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-holding.svg new file mode 100644 index 0000000000..293850a25d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-holding.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-lizard.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-lizard.svg new file mode 100644 index 0000000000..5b40ffe320 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-lizard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-paper.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-paper.svg new file mode 100644 index 0000000000..7a004db113 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-paper.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-peace.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-peace.svg new file mode 100644 index 0000000000..d4a1a4ed21 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-peace.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-point-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-point-down.svg new file mode 100644 index 0000000000..6b8be52b61 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-point-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-point-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-point-left.svg new file mode 100644 index 0000000000..f48fc6d9c3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-point-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-point-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-point-right.svg new file mode 100644 index 0000000000..9b44885a85 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-point-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-point-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-point-up.svg new file mode 100644 index 0000000000..c48ef6625d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-point-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-pointer.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-pointer.svg new file mode 100644 index 0000000000..97a1496407 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-pointer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-rock.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-rock.svg new file mode 100644 index 0000000000..80d42f6f2a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-rock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-scissors.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-scissors.svg new file mode 100644 index 0000000000..4f55428f27 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-scissors.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-spock.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-spock.svg new file mode 100644 index 0000000000..73c6654fab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hand-spock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hands-helping.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hands-helping.svg new file mode 100644 index 0000000000..7e4339ca23 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hands-helping.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hands.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hands.svg new file mode 100644 index 0000000000..cbc9f2770a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hands.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/handshake.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/handshake.svg new file mode 100644 index 0000000000..5878e90109 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/handshake.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hashtag.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hashtag.svg new file mode 100644 index 0000000000..ced5f6a993 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hashtag.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hdd.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hdd.svg new file mode 100644 index 0000000000..45a15c5ec4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hdd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/heading.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/heading.svg new file mode 100644 index 0000000000..37dd73072f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/heading.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/headphones-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/headphones-alt.svg new file mode 100644 index 0000000000..07f33b5aed --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/headphones-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/headphones.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/headphones.svg new file mode 100644 index 0000000000..eb649073f5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/headphones.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/headset.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/headset.svg new file mode 100644 index 0000000000..16d3f4a464 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/headset.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/heart.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/heart.svg new file mode 100644 index 0000000000..0f78d2bc8b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/heart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/heartbeat.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/heartbeat.svg new file mode 100644 index 0000000000..bcadf3e88e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/heartbeat.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/helicopter.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/helicopter.svg new file mode 100644 index 0000000000..9b586bed0b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/helicopter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/highlighter.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/highlighter.svg new file mode 100644 index 0000000000..ae4a985d34 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/highlighter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/history.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/history.svg new file mode 100644 index 0000000000..415f458d07 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/history.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hockey-puck.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hockey-puck.svg new file mode 100644 index 0000000000..ced1559a76 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hockey-puck.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/home.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/home.svg new file mode 100644 index 0000000000..7ebaf38518 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/home.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hospital-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hospital-alt.svg new file mode 100644 index 0000000000..882fc1f404 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hospital-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hospital-symbol.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hospital-symbol.svg new file mode 100644 index 0000000000..6b3578a3cd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hospital-symbol.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hospital.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hospital.svg new file mode 100644 index 0000000000..18e4b7270a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hospital.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hot-tub.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hot-tub.svg new file mode 100644 index 0000000000..ac4abf1aa2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hot-tub.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hotel.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hotel.svg new file mode 100644 index 0000000000..6da3821790 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hotel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hourglass-end.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hourglass-end.svg new file mode 100644 index 0000000000..300e5e1219 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hourglass-end.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hourglass-half.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hourglass-half.svg new file mode 100644 index 0000000000..b21c50cf11 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hourglass-half.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hourglass-start.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hourglass-start.svg new file mode 100644 index 0000000000..cb28752454 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hourglass-start.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hourglass.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hourglass.svg new file mode 100644 index 0000000000..c66dd129aa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/hourglass.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/i-cursor.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/i-cursor.svg new file mode 100644 index 0000000000..8029dab7ea --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/i-cursor.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/id-badge.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/id-badge.svg new file mode 100644 index 0000000000..2a6c3680e1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/id-badge.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/id-card-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/id-card-alt.svg new file mode 100644 index 0000000000..6b12be8e82 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/id-card-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/id-card.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/id-card.svg new file mode 100644 index 0000000000..b332a2237b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/id-card.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/image.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/image.svg new file mode 100644 index 0000000000..03bc823fe9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/image.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/images.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/images.svg new file mode 100644 index 0000000000..fee1817595 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/images.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/inbox.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/inbox.svg new file mode 100644 index 0000000000..becf532af2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/inbox.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/indent.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/indent.svg new file mode 100644 index 0000000000..6efd7b1628 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/indent.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/industry.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/industry.svg new file mode 100644 index 0000000000..6768e4845f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/industry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/infinity.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/infinity.svg new file mode 100644 index 0000000000..365c84a4f6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/infinity.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/info-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/info-circle.svg new file mode 100644 index 0000000000..0e15440da5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/info-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/info.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/info.svg new file mode 100644 index 0000000000..11ca96396b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/info.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/italic.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/italic.svg new file mode 100644 index 0000000000..c29be8e2b0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/italic.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/joint.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/joint.svg new file mode 100644 index 0000000000..dd839a34c7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/joint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/key.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/key.svg new file mode 100644 index 0000000000..fe6fa8d309 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/key.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/keyboard.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/keyboard.svg new file mode 100644 index 0000000000..0321af6ca4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/keyboard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/kiss-beam.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/kiss-beam.svg new file mode 100644 index 0000000000..fcc2462ca9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/kiss-beam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/kiss-wink-heart.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/kiss-wink-heart.svg new file mode 100644 index 0000000000..6d0a1e06d2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/kiss-wink-heart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/kiss.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/kiss.svg new file mode 100644 index 0000000000..25c3c76e5e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/kiss.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/kiwi-bird.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/kiwi-bird.svg new file mode 100644 index 0000000000..1b0f8db3ab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/kiwi-bird.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/language.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/language.svg new file mode 100644 index 0000000000..c40045a7e4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/language.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/laptop.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/laptop.svg new file mode 100644 index 0000000000..98692944ba --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/laptop.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/laugh-beam.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/laugh-beam.svg new file mode 100644 index 0000000000..47392abe00 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/laugh-beam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/laugh-squint.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/laugh-squint.svg new file mode 100644 index 0000000000..7c035364bc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/laugh-squint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/laugh-wink.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/laugh-wink.svg new file mode 100644 index 0000000000..be64801f71 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/laugh-wink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/laugh.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/laugh.svg new file mode 100644 index 0000000000..5f0c4da9ac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/laugh.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/leaf.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/leaf.svg new file mode 100644 index 0000000000..f50d1347d5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/leaf.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/lemon.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/lemon.svg new file mode 100644 index 0000000000..cbbb5832bb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/lemon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/less-than-equal.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/less-than-equal.svg new file mode 100644 index 0000000000..e20d9d3f40 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/less-than-equal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/less-than.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/less-than.svg new file mode 100644 index 0000000000..9010489001 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/less-than.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/level-down-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/level-down-alt.svg new file mode 100644 index 0000000000..f24d2c90c8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/level-down-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/level-up-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/level-up-alt.svg new file mode 100644 index 0000000000..8b6678d670 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/level-up-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/life-ring.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/life-ring.svg new file mode 100644 index 0000000000..cc9e186b03 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/life-ring.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/lightbulb.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/lightbulb.svg new file mode 100644 index 0000000000..8dfdf09f6b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/lightbulb.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/link.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/link.svg new file mode 100644 index 0000000000..4d81ccc16f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/link.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/lira-sign.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/lira-sign.svg new file mode 100644 index 0000000000..09cd6b0651 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/lira-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/list-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/list-alt.svg new file mode 100644 index 0000000000..43cdcb07c3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/list-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/list-ol.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/list-ol.svg new file mode 100644 index 0000000000..0adc6a8984 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/list-ol.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/list-ul.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/list-ul.svg new file mode 100644 index 0000000000..f3d4e9a412 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/list-ul.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/list.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/list.svg new file mode 100644 index 0000000000..128302b0b8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/list.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/location-arrow.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/location-arrow.svg new file mode 100644 index 0000000000..d398d4fd6a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/location-arrow.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/lock-open.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/lock-open.svg new file mode 100644 index 0000000000..7d6f8a114e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/lock-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/lock.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/lock.svg new file mode 100644 index 0000000000..c96f6491bc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/lock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/long-arrow-alt-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/long-arrow-alt-down.svg new file mode 100644 index 0000000000..eac4bea59d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/long-arrow-alt-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/long-arrow-alt-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/long-arrow-alt-left.svg new file mode 100644 index 0000000000..ad59f38f5f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/long-arrow-alt-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/long-arrow-alt-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/long-arrow-alt-right.svg new file mode 100644 index 0000000000..c88fbb0491 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/long-arrow-alt-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/long-arrow-alt-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/long-arrow-alt-up.svg new file mode 100644 index 0000000000..9f7e01ff0f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/long-arrow-alt-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/low-vision.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/low-vision.svg new file mode 100644 index 0000000000..f1ba5a56ef --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/low-vision.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/luggage-cart.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/luggage-cart.svg new file mode 100644 index 0000000000..d1ea6d0fe8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/luggage-cart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/magic.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/magic.svg new file mode 100644 index 0000000000..eade1843f6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/magic.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/magnet.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/magnet.svg new file mode 100644 index 0000000000..772b460374 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/magnet.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/male.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/male.svg new file mode 100644 index 0000000000..5c263f8fae --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/male.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map-marked-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map-marked-alt.svg new file mode 100644 index 0000000000..26f12bff6e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map-marked-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map-marked.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map-marked.svg new file mode 100644 index 0000000000..cebc780bea --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map-marked.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map-marker-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map-marker-alt.svg new file mode 100644 index 0000000000..509ce1df9b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map-marker-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map-marker.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map-marker.svg new file mode 100644 index 0000000000..759d7bb980 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map-marker.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map-pin.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map-pin.svg new file mode 100644 index 0000000000..8e9d35a8a3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map-pin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map-signs.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map-signs.svg new file mode 100644 index 0000000000..e01f16fcc2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map-signs.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map.svg new file mode 100644 index 0000000000..addfc1b9d6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/map.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/marker.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/marker.svg new file mode 100644 index 0000000000..4a2307c49a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/marker.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mars-double.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mars-double.svg new file mode 100644 index 0000000000..3f7acdfd8c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mars-double.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mars-stroke-h.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mars-stroke-h.svg new file mode 100644 index 0000000000..f704d68aa7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mars-stroke-h.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mars-stroke-v.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mars-stroke-v.svg new file mode 100644 index 0000000000..f36f686d93 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mars-stroke-v.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mars-stroke.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mars-stroke.svg new file mode 100644 index 0000000000..91c339fa45 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mars-stroke.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mars.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mars.svg new file mode 100644 index 0000000000..cdf8422135 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mars.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/medal.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/medal.svg new file mode 100644 index 0000000000..e566656013 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/medal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/medkit.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/medkit.svg new file mode 100644 index 0000000000..7732f19e6b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/medkit.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/meh-blank.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/meh-blank.svg new file mode 100644 index 0000000000..70e98b8341 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/meh-blank.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/meh-rolling-eyes.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/meh-rolling-eyes.svg new file mode 100644 index 0000000000..492960fd39 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/meh-rolling-eyes.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/meh.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/meh.svg new file mode 100644 index 0000000000..0ca1f47223 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/meh.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/memory.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/memory.svg new file mode 100644 index 0000000000..ddeb9d86cd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/memory.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mercury.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mercury.svg new file mode 100644 index 0000000000..8310ff92ba --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mercury.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/microchip.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/microchip.svg new file mode 100644 index 0000000000..c68992c9b5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/microchip.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/microphone-alt-slash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/microphone-alt-slash.svg new file mode 100644 index 0000000000..ee9a96a637 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/microphone-alt-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/microphone-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/microphone-alt.svg new file mode 100644 index 0000000000..75ad92d930 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/microphone-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/microphone-slash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/microphone-slash.svg new file mode 100644 index 0000000000..1d99ccc16f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/microphone-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/microphone.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/microphone.svg new file mode 100644 index 0000000000..b71dff6293 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/microphone.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/minus-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/minus-circle.svg new file mode 100644 index 0000000000..eecbf15176 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/minus-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/minus-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/minus-square.svg new file mode 100644 index 0000000000..5f7277cbc5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/minus-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/minus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/minus.svg new file mode 100644 index 0000000000..9a002df742 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/minus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mobile-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mobile-alt.svg new file mode 100644 index 0000000000..2ab7a301ff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mobile-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mobile.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mobile.svg new file mode 100644 index 0000000000..b4826b1759 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mobile.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/money-bill-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/money-bill-alt.svg new file mode 100644 index 0000000000..ad867c446b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/money-bill-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/money-bill-wave-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/money-bill-wave-alt.svg new file mode 100644 index 0000000000..e409e3d32a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/money-bill-wave-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/money-bill-wave.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/money-bill-wave.svg new file mode 100644 index 0000000000..adf4f50181 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/money-bill-wave.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/money-bill.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/money-bill.svg new file mode 100644 index 0000000000..aa9181398c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/money-bill.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/money-check-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/money-check-alt.svg new file mode 100644 index 0000000000..7f574b7ffb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/money-check-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/money-check.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/money-check.svg new file mode 100644 index 0000000000..5b043fafb2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/money-check.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/monument.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/monument.svg new file mode 100644 index 0000000000..1dc7d5bf3b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/monument.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/moon.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/moon.svg new file mode 100644 index 0000000000..10a54617e1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/moon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mortar-pestle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mortar-pestle.svg new file mode 100644 index 0000000000..f7e86471e7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mortar-pestle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/motorcycle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/motorcycle.svg new file mode 100644 index 0000000000..f8908a8c7b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/motorcycle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mouse-pointer.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mouse-pointer.svg new file mode 100644 index 0000000000..aac81f0fcd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/mouse-pointer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/music.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/music.svg new file mode 100644 index 0000000000..7679daa83a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/music.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/neuter.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/neuter.svg new file mode 100644 index 0000000000..e18a300f2c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/neuter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/newspaper.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/newspaper.svg new file mode 100644 index 0000000000..0cebf3dee3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/newspaper.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/not-equal.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/not-equal.svg new file mode 100644 index 0000000000..b1240761aa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/not-equal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/notes-medical.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/notes-medical.svg new file mode 100644 index 0000000000..64820d93c9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/notes-medical.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/object-group.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/object-group.svg new file mode 100644 index 0000000000..4521c3e707 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/object-group.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/object-ungroup.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/object-ungroup.svg new file mode 100644 index 0000000000..abcf92ab84 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/object-ungroup.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/outdent.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/outdent.svg new file mode 100644 index 0000000000..ed5d0c16a8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/outdent.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paint-brush.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paint-brush.svg new file mode 100644 index 0000000000..a4283aeab4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paint-brush.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paint-roller.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paint-roller.svg new file mode 100644 index 0000000000..1da19ed265 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paint-roller.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/palette.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/palette.svg new file mode 100644 index 0000000000..d3ff1fd109 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/palette.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pallet.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pallet.svg new file mode 100644 index 0000000000..524e4f53d3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pallet.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paper-plane.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paper-plane.svg new file mode 100644 index 0000000000..070b9b29c4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paper-plane.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paperclip.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paperclip.svg new file mode 100644 index 0000000000..1e55ba5cf4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paperclip.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/parachute-box.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/parachute-box.svg new file mode 100644 index 0000000000..d47ff983ad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/parachute-box.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paragraph.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paragraph.svg new file mode 100644 index 0000000000..2b811064f5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paragraph.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/parking.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/parking.svg new file mode 100644 index 0000000000..61c4e2cdcf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/parking.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/passport.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/passport.svg new file mode 100644 index 0000000000..4b30a40535 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/passport.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paste.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paste.svg new file mode 100644 index 0000000000..b585d6d796 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paste.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pause-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pause-circle.svg new file mode 100644 index 0000000000..0825581359 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pause-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pause.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pause.svg new file mode 100644 index 0000000000..d49f6f409c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pause.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paw.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paw.svg new file mode 100644 index 0000000000..527dc4ae02 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/paw.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pen-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pen-alt.svg new file mode 100644 index 0000000000..1d869a72c3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pen-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pen-fancy.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pen-fancy.svg new file mode 100644 index 0000000000..c5e90c70be --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pen-fancy.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pen-nib.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pen-nib.svg new file mode 100644 index 0000000000..cb0be4c611 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pen-nib.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pen-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pen-square.svg new file mode 100644 index 0000000000..4704942b20 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pen-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pen.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pen.svg new file mode 100644 index 0000000000..23abb54fb4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pen.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pencil-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pencil-alt.svg new file mode 100644 index 0000000000..28955aa907 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pencil-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pencil-ruler.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pencil-ruler.svg new file mode 100644 index 0000000000..d7b5ecfb1e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pencil-ruler.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/people-carry.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/people-carry.svg new file mode 100644 index 0000000000..33ea2476bf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/people-carry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/percent.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/percent.svg new file mode 100644 index 0000000000..18636a5aff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/percent.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/percentage.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/percentage.svg new file mode 100644 index 0000000000..cd5a461779 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/percentage.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/phone-slash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/phone-slash.svg new file mode 100644 index 0000000000..5dfb95e168 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/phone-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/phone-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/phone-square.svg new file mode 100644 index 0000000000..c79dbcf020 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/phone-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/phone-volume.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/phone-volume.svg new file mode 100644 index 0000000000..b019e42f7c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/phone-volume.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/phone.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/phone.svg new file mode 100644 index 0000000000..e9c6320bf4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/phone.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/piggy-bank.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/piggy-bank.svg new file mode 100644 index 0000000000..7e6faf2075 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/piggy-bank.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pills.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pills.svg new file mode 100644 index 0000000000..299e6fbfa3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pills.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plane-arrival.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plane-arrival.svg new file mode 100644 index 0000000000..14465de078 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plane-arrival.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plane-departure.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plane-departure.svg new file mode 100644 index 0000000000..33e09847ee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plane-departure.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plane.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plane.svg new file mode 100644 index 0000000000..d9d9e5e613 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plane.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/play-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/play-circle.svg new file mode 100644 index 0000000000..c9647d7889 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/play-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/play.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/play.svg new file mode 100644 index 0000000000..15d0e756b6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/play.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plug.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plug.svg new file mode 100644 index 0000000000..a25c12d164 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plug.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plus-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plus-circle.svg new file mode 100644 index 0000000000..b9ebec25ae --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plus-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plus-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plus-square.svg new file mode 100644 index 0000000000..a83e67871c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plus-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plus.svg new file mode 100644 index 0000000000..a95f217697 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/podcast.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/podcast.svg new file mode 100644 index 0000000000..51499f53d0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/podcast.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/poo.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/poo.svg new file mode 100644 index 0000000000..885c54407f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/poo.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/portrait.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/portrait.svg new file mode 100644 index 0000000000..426ae78f9e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/portrait.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pound-sign.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pound-sign.svg new file mode 100644 index 0000000000..e13b166151 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/pound-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/power-off.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/power-off.svg new file mode 100644 index 0000000000..637e9e0ba9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/power-off.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/prescription-bottle-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/prescription-bottle-alt.svg new file mode 100644 index 0000000000..ded3b0a2d1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/prescription-bottle-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/prescription-bottle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/prescription-bottle.svg new file mode 100644 index 0000000000..73f1dec7cf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/prescription-bottle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/prescription.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/prescription.svg new file mode 100644 index 0000000000..4080f0c95b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/prescription.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/print.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/print.svg new file mode 100644 index 0000000000..6cbe8d4ebc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/print.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/procedures.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/procedures.svg new file mode 100644 index 0000000000..9c9018d001 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/procedures.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/project-diagram.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/project-diagram.svg new file mode 100644 index 0000000000..aeed9e041e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/project-diagram.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/puzzle-piece.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/puzzle-piece.svg new file mode 100644 index 0000000000..3475b75b5f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/puzzle-piece.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/qrcode.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/qrcode.svg new file mode 100644 index 0000000000..5ae17bc23c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/qrcode.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/question-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/question-circle.svg new file mode 100644 index 0000000000..a1aa3873df --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/question-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/question.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/question.svg new file mode 100644 index 0000000000..4664b88c82 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/question.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/quidditch.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/quidditch.svg new file mode 100644 index 0000000000..6b797b0906 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/quidditch.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/quote-left.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/quote-left.svg new file mode 100644 index 0000000000..bb84f7cd33 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/quote-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/quote-right.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/quote-right.svg new file mode 100644 index 0000000000..351efa3303 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/quote-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/random.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/random.svg new file mode 100644 index 0000000000..82e0e26abc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/random.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/receipt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/receipt.svg new file mode 100644 index 0000000000..9f949fa17b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/receipt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/recycle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/recycle.svg new file mode 100644 index 0000000000..a54e0afcaf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/recycle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/redo-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/redo-alt.svg new file mode 100644 index 0000000000..159b351e98 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/redo-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/redo.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/redo.svg new file mode 100644 index 0000000000..9296196072 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/redo.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/registered.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/registered.svg new file mode 100644 index 0000000000..242d0015e6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/registered.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/reply-all.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/reply-all.svg new file mode 100644 index 0000000000..f42db99f0e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/reply-all.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/reply.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/reply.svg new file mode 100644 index 0000000000..9959932774 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/reply.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/retweet.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/retweet.svg new file mode 100644 index 0000000000..485ca7b485 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/retweet.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ribbon.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ribbon.svg new file mode 100644 index 0000000000..c0cff63102 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ribbon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/road.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/road.svg new file mode 100644 index 0000000000..7ff146cbdd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/road.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/robot.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/robot.svg new file mode 100644 index 0000000000..55a4106ba9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/robot.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/rocket.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/rocket.svg new file mode 100644 index 0000000000..c78d70614d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/rocket.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/rss-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/rss-square.svg new file mode 100644 index 0000000000..3fbb60ea71 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/rss-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/rss.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/rss.svg new file mode 100644 index 0000000000..ff86780997 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/rss.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ruble-sign.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ruble-sign.svg new file mode 100644 index 0000000000..9c0fbf3769 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ruble-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ruler-combined.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ruler-combined.svg new file mode 100644 index 0000000000..3b1b525bd5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ruler-combined.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ruler-horizontal.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ruler-horizontal.svg new file mode 100644 index 0000000000..f7baa61130 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ruler-horizontal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ruler-vertical.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ruler-vertical.svg new file mode 100644 index 0000000000..5a66f5c4e5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ruler-vertical.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ruler.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ruler.svg new file mode 100644 index 0000000000..fbc5d2b13b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ruler.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/rupee-sign.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/rupee-sign.svg new file mode 100644 index 0000000000..7e7b9c2a47 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/rupee-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sad-cry.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sad-cry.svg new file mode 100644 index 0000000000..bf5fa2d4cc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sad-cry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sad-tear.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sad-tear.svg new file mode 100644 index 0000000000..dd99965515 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sad-tear.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/save.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/save.svg new file mode 100644 index 0000000000..8a58a4b31a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/save.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/school.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/school.svg new file mode 100644 index 0000000000..5baec6bd0a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/school.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/screwdriver.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/screwdriver.svg new file mode 100644 index 0000000000..be2db02ece --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/screwdriver.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/search-minus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/search-minus.svg new file mode 100644 index 0000000000..aac9dc75c7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/search-minus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/search-plus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/search-plus.svg new file mode 100644 index 0000000000..46c64a4018 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/search-plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/search.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/search.svg new file mode 100644 index 0000000000..527bd053aa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/search.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/seedling.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/seedling.svg new file mode 100644 index 0000000000..a3ac622b07 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/seedling.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/server.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/server.svg new file mode 100644 index 0000000000..86cbfdd852 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/server.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/share-alt-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/share-alt-square.svg new file mode 100644 index 0000000000..e69d469eff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/share-alt-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/share-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/share-alt.svg new file mode 100644 index 0000000000..daafa29385 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/share-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/share-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/share-square.svg new file mode 100644 index 0000000000..45644fbc33 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/share-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/share.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/share.svg new file mode 100644 index 0000000000..4c27178a37 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/share.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shekel-sign.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shekel-sign.svg new file mode 100644 index 0000000000..5eb0d82dcb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shekel-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shield-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shield-alt.svg new file mode 100644 index 0000000000..9727a0bc11 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shield-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ship.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ship.svg new file mode 100644 index 0000000000..587bb53685 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ship.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shipping-fast.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shipping-fast.svg new file mode 100644 index 0000000000..1360aa4632 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shipping-fast.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shoe-prints.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shoe-prints.svg new file mode 100644 index 0000000000..3c2cc50bf7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shoe-prints.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shopping-bag.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shopping-bag.svg new file mode 100644 index 0000000000..7fd9dde895 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shopping-bag.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shopping-basket.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shopping-basket.svg new file mode 100644 index 0000000000..4828c8e345 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shopping-basket.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shopping-cart.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shopping-cart.svg new file mode 100644 index 0000000000..41b08131bb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shopping-cart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shower.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shower.svg new file mode 100644 index 0000000000..cc41854e35 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shower.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shuttle-van.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shuttle-van.svg new file mode 100644 index 0000000000..341fb2470e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/shuttle-van.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sign-in-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sign-in-alt.svg new file mode 100644 index 0000000000..5058dde0cc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sign-in-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sign-language.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sign-language.svg new file mode 100644 index 0000000000..3ab9a0fc5c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sign-language.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sign-out-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sign-out-alt.svg new file mode 100644 index 0000000000..1901d6c9b1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sign-out-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sign.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sign.svg new file mode 100644 index 0000000000..ebc1c55e33 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/signal.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/signal.svg new file mode 100644 index 0000000000..c691056d54 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/signal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/signature.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/signature.svg new file mode 100644 index 0000000000..9468990945 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/signature.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sitemap.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sitemap.svg new file mode 100644 index 0000000000..1a797268b7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sitemap.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/skull.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/skull.svg new file mode 100644 index 0000000000..cf75955476 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/skull.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sliders-h.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sliders-h.svg new file mode 100644 index 0000000000..f9cf65e4c2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sliders-h.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/smile-beam.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/smile-beam.svg new file mode 100644 index 0000000000..c802e063c2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/smile-beam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/smile-wink.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/smile-wink.svg new file mode 100644 index 0000000000..8c8c739a87 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/smile-wink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/smile.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/smile.svg new file mode 100644 index 0000000000..5c91d80611 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/smile.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/smoking-ban.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/smoking-ban.svg new file mode 100644 index 0000000000..94a19d5cdd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/smoking-ban.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/smoking.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/smoking.svg new file mode 100644 index 0000000000..a784ab8b95 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/smoking.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/snowflake.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/snowflake.svg new file mode 100644 index 0000000000..394ef16052 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/snowflake.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/solar-panel.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/solar-panel.svg new file mode 100644 index 0000000000..d66fb244ca --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/solar-panel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-alpha-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-alpha-down.svg new file mode 100644 index 0000000000..e39a04652a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-alpha-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-alpha-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-alpha-up.svg new file mode 100644 index 0000000000..7c9fb10abc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-alpha-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-amount-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-amount-down.svg new file mode 100644 index 0000000000..edc0b31eb7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-amount-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-amount-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-amount-up.svg new file mode 100644 index 0000000000..49137a1a37 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-amount-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-down.svg new file mode 100644 index 0000000000..e0f93baf55 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-numeric-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-numeric-down.svg new file mode 100644 index 0000000000..43aebdaf0a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-numeric-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-numeric-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-numeric-up.svg new file mode 100644 index 0000000000..692a65a6d2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-numeric-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-up.svg new file mode 100644 index 0000000000..8a0b73c20b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort.svg new file mode 100644 index 0000000000..d7f73506c7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sort.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/spa.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/spa.svg new file mode 100644 index 0000000000..375af415b5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/spa.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/space-shuttle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/space-shuttle.svg new file mode 100644 index 0000000000..31064c2d40 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/space-shuttle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/spinner.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/spinner.svg new file mode 100644 index 0000000000..c5ee86abdd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/spinner.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/splotch.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/splotch.svg new file mode 100644 index 0000000000..14318ae917 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/splotch.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/spray-can.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/spray-can.svg new file mode 100644 index 0000000000..b0bbf8df59 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/spray-can.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/square-full.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/square-full.svg new file mode 100644 index 0000000000..767f4e09fb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/square-full.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/square.svg new file mode 100644 index 0000000000..b9c6ff6614 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stamp.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stamp.svg new file mode 100644 index 0000000000..fa5d15b66c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stamp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/star-half-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/star-half-alt.svg new file mode 100644 index 0000000000..e6cdab527c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/star-half-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/star-half.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/star-half.svg new file mode 100644 index 0000000000..4dddfa46a8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/star-half.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/star.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/star.svg new file mode 100644 index 0000000000..b200f9c6e9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/star.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/step-backward.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/step-backward.svg new file mode 100644 index 0000000000..56fe9c752d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/step-backward.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/step-forward.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/step-forward.svg new file mode 100644 index 0000000000..b652b875dd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/step-forward.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stethoscope.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stethoscope.svg new file mode 100644 index 0000000000..35db3b2f5a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stethoscope.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sticky-note.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sticky-note.svg new file mode 100644 index 0000000000..19c999d96a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sticky-note.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stop-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stop-circle.svg new file mode 100644 index 0000000000..ce4ed3ebf0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stop-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stop.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stop.svg new file mode 100644 index 0000000000..b9c6ff6614 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stop.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stopwatch.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stopwatch.svg new file mode 100644 index 0000000000..086ef09473 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stopwatch.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/store-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/store-alt.svg new file mode 100644 index 0000000000..5e5e500feb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/store-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/store.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/store.svg new file mode 100644 index 0000000000..bcda13a786 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/store.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stream.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stream.svg new file mode 100644 index 0000000000..c4ec32b004 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stream.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/street-view.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/street-view.svg new file mode 100644 index 0000000000..cb6c9c2a73 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/street-view.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/strikethrough.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/strikethrough.svg new file mode 100644 index 0000000000..4b6241dc10 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/strikethrough.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stroopwafel.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stroopwafel.svg new file mode 100644 index 0000000000..11f430d816 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/stroopwafel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/subscript.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/subscript.svg new file mode 100644 index 0000000000..f908655fc9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/subscript.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/subway.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/subway.svg new file mode 100644 index 0000000000..3df0a08117 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/subway.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/suitcase-rolling.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/suitcase-rolling.svg new file mode 100644 index 0000000000..7c02c4d4df --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/suitcase-rolling.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/suitcase.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/suitcase.svg new file mode 100644 index 0000000000..8d48714be1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/suitcase.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sun.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sun.svg new file mode 100644 index 0000000000..38318e3f47 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sun.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/superscript.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/superscript.svg new file mode 100644 index 0000000000..8dd385e4dd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/superscript.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/surprise.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/surprise.svg new file mode 100644 index 0000000000..2b783a6b4a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/surprise.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/swatchbook.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/swatchbook.svg new file mode 100644 index 0000000000..327c1a33f3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/swatchbook.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/swimmer.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/swimmer.svg new file mode 100644 index 0000000000..6f53ecc6a0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/swimmer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/swimming-pool.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/swimming-pool.svg new file mode 100644 index 0000000000..171f66ff21 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/swimming-pool.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sync-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sync-alt.svg new file mode 100644 index 0000000000..c2186024a4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sync-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sync.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sync.svg new file mode 100644 index 0000000000..03b32e1e14 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/sync.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/syringe.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/syringe.svg new file mode 100644 index 0000000000..92ea7c4f92 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/syringe.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/table-tennis.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/table-tennis.svg new file mode 100644 index 0000000000..7fe4d66f0a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/table-tennis.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/table.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/table.svg new file mode 100644 index 0000000000..89397bd9fb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/table.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tablet-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tablet-alt.svg new file mode 100644 index 0000000000..4d6c156692 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tablet-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tablet.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tablet.svg new file mode 100644 index 0000000000..1608c73986 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tablet.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tablets.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tablets.svg new file mode 100644 index 0000000000..7b997502e2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tablets.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tachometer-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tachometer-alt.svg new file mode 100644 index 0000000000..751cf382d2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tachometer-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tag.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tag.svg new file mode 100644 index 0000000000..d5e376c863 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tag.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tags.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tags.svg new file mode 100644 index 0000000000..0a237f3d8d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tags.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tape.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tape.svg new file mode 100644 index 0000000000..52a14dd0a9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tape.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tasks.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tasks.svg new file mode 100644 index 0000000000..2e3b0f9c4b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tasks.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/taxi.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/taxi.svg new file mode 100644 index 0000000000..6186547394 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/taxi.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/terminal.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/terminal.svg new file mode 100644 index 0000000000..e39e639205 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/terminal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/text-height.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/text-height.svg new file mode 100644 index 0000000000..d1045edc69 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/text-height.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/text-width.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/text-width.svg new file mode 100644 index 0000000000..906378227c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/text-width.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/th-large.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/th-large.svg new file mode 100644 index 0000000000..f37e56ba82 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/th-large.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/th-list.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/th-list.svg new file mode 100644 index 0000000000..e209229fbd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/th-list.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/th.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/th.svg new file mode 100644 index 0000000000..876d322e50 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/th.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thermometer-empty.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thermometer-empty.svg new file mode 100644 index 0000000000..ba00ea386b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thermometer-empty.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thermometer-full.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thermometer-full.svg new file mode 100644 index 0000000000..428297fb15 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thermometer-full.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thermometer-half.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thermometer-half.svg new file mode 100644 index 0000000000..db18b01b51 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thermometer-half.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thermometer-quarter.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thermometer-quarter.svg new file mode 100644 index 0000000000..a091c7e0ad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thermometer-quarter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thermometer-three-quarters.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thermometer-three-quarters.svg new file mode 100644 index 0000000000..f2a498557b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thermometer-three-quarters.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thermometer.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thermometer.svg new file mode 100644 index 0000000000..f89e7af2bc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thermometer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thumbs-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thumbs-down.svg new file mode 100644 index 0000000000..1c314cef25 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thumbs-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thumbs-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thumbs-up.svg new file mode 100644 index 0000000000..0ef43469ec --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thumbs-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thumbtack.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thumbtack.svg new file mode 100644 index 0000000000..016f2a4ea1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/thumbtack.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ticket-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ticket-alt.svg new file mode 100644 index 0000000000..4d418cdf2f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/ticket-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/times-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/times-circle.svg new file mode 100644 index 0000000000..020d4f5a28 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/times-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/times.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/times.svg new file mode 100644 index 0000000000..5ab889b004 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/times.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tint-slash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tint-slash.svg new file mode 100644 index 0000000000..df9a3457b0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tint-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tint.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tint.svg new file mode 100644 index 0000000000..ea25d7460d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tired.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tired.svg new file mode 100644 index 0000000000..3898e187c3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tired.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/toggle-off.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/toggle-off.svg new file mode 100644 index 0000000000..945d8eb4b9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/toggle-off.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/toggle-on.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/toggle-on.svg new file mode 100644 index 0000000000..5bba0b19ef --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/toggle-on.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/toolbox.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/toolbox.svg new file mode 100644 index 0000000000..af6526650d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/toolbox.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tooth.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tooth.svg new file mode 100644 index 0000000000..c20ffeb34b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tooth.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/trademark.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/trademark.svg new file mode 100644 index 0000000000..1a12c23a2a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/trademark.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/train.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/train.svg new file mode 100644 index 0000000000..a064c5e768 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/train.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/transgender-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/transgender-alt.svg new file mode 100644 index 0000000000..7fedf0108b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/transgender-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/transgender.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/transgender.svg new file mode 100644 index 0000000000..c768f85003 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/transgender.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/trash-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/trash-alt.svg new file mode 100644 index 0000000000..b05874f8b9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/trash-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/trash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/trash.svg new file mode 100644 index 0000000000..156a07e613 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/trash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tree.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tree.svg new file mode 100644 index 0000000000..6b153006ec --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tree.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/trophy.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/trophy.svg new file mode 100644 index 0000000000..5690a20e60 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/trophy.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/truck-loading.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/truck-loading.svg new file mode 100644 index 0000000000..a65fb79eb6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/truck-loading.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/truck-moving.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/truck-moving.svg new file mode 100644 index 0000000000..d696115218 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/truck-moving.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/truck.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/truck.svg new file mode 100644 index 0000000000..76468be384 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/truck.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tshirt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tshirt.svg new file mode 100644 index 0000000000..ac5f2bca4b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tshirt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tty.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tty.svg new file mode 100644 index 0000000000..981ec01208 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tty.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tv.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tv.svg new file mode 100644 index 0000000000..b3ca416e25 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/tv.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/umbrella-beach.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/umbrella-beach.svg new file mode 100644 index 0000000000..fc6f653001 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/umbrella-beach.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/umbrella.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/umbrella.svg new file mode 100644 index 0000000000..d7c66a314b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/umbrella.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/underline.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/underline.svg new file mode 100644 index 0000000000..b89fc4d4cb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/underline.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/undo-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/undo-alt.svg new file mode 100644 index 0000000000..f3c8f73d9c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/undo-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/undo.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/undo.svg new file mode 100644 index 0000000000..6f762d0e12 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/undo.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/universal-access.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/universal-access.svg new file mode 100644 index 0000000000..d9b6a6e021 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/universal-access.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/university.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/university.svg new file mode 100644 index 0000000000..a892f1700a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/university.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/unlink.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/unlink.svg new file mode 100644 index 0000000000..60beec891a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/unlink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/unlock-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/unlock-alt.svg new file mode 100644 index 0000000000..6d8c2aca7f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/unlock-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/unlock.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/unlock.svg new file mode 100644 index 0000000000..67364e71b2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/unlock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/upload.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/upload.svg new file mode 100644 index 0000000000..e620f97406 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/upload.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-alt-slash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-alt-slash.svg new file mode 100644 index 0000000000..87b55d2066 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-alt-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-alt.svg new file mode 100644 index 0000000000..881be75154 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-astronaut.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-astronaut.svg new file mode 100644 index 0000000000..8d49caad18 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-astronaut.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-check.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-check.svg new file mode 100644 index 0000000000..dd0825515d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-check.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-circle.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-circle.svg new file mode 100644 index 0000000000..a2eef2d12b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-clock.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-clock.svg new file mode 100644 index 0000000000..2a0b81f2c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-clock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-cog.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-cog.svg new file mode 100644 index 0000000000..3fe5250f6d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-cog.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-edit.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-edit.svg new file mode 100644 index 0000000000..d1950e9113 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-edit.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-friends.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-friends.svg new file mode 100644 index 0000000000..0dc17d4c1d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-friends.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-graduate.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-graduate.svg new file mode 100644 index 0000000000..e2f9f81db7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-graduate.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-lock.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-lock.svg new file mode 100644 index 0000000000..56c5c2edd2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-lock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-md.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-md.svg new file mode 100644 index 0000000000..1d3bf0ec48 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-md.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-minus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-minus.svg new file mode 100644 index 0000000000..8dadbd2a64 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-minus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-ninja.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-ninja.svg new file mode 100644 index 0000000000..475e5d8a10 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-ninja.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-plus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-plus.svg new file mode 100644 index 0000000000..c7e2a74291 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-secret.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-secret.svg new file mode 100644 index 0000000000..fc60dfeb91 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-secret.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-shield.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-shield.svg new file mode 100644 index 0000000000..3066f0c1dd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-shield.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-slash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-slash.svg new file mode 100644 index 0000000000..1295439872 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-tag.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-tag.svg new file mode 100644 index 0000000000..0518556042 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-tag.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-tie.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-tie.svg new file mode 100644 index 0000000000..349d857287 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-tie.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-times.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-times.svg new file mode 100644 index 0000000000..de98460003 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user-times.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user.svg new file mode 100644 index 0000000000..8d8bb3d51e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/user.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/users-cog.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/users-cog.svg new file mode 100644 index 0000000000..015f7dec23 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/users-cog.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/users.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/users.svg new file mode 100644 index 0000000000..b29e44046c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/users.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/utensil-spoon.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/utensil-spoon.svg new file mode 100644 index 0000000000..a67fba6835 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/utensil-spoon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/utensils.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/utensils.svg new file mode 100644 index 0000000000..d2cba8cd4b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/utensils.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/vector-square.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/vector-square.svg new file mode 100644 index 0000000000..8ab04f38df --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/vector-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/venus-double.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/venus-double.svg new file mode 100644 index 0000000000..a24bd4eb81 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/venus-double.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/venus-mars.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/venus-mars.svg new file mode 100644 index 0000000000..b331dd2f4d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/venus-mars.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/venus.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/venus.svg new file mode 100644 index 0000000000..93f27b85e2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/venus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/vial.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/vial.svg new file mode 100644 index 0000000000..1ccef049c9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/vial.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/vials.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/vials.svg new file mode 100644 index 0000000000..35a8d5e168 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/vials.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/video-slash.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/video-slash.svg new file mode 100644 index 0000000000..bafebe438a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/video-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/video.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/video.svg new file mode 100644 index 0000000000..1bf3872bb7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/video.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/volleyball-ball.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/volleyball-ball.svg new file mode 100644 index 0000000000..225c08c197 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/volleyball-ball.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/volume-down.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/volume-down.svg new file mode 100644 index 0000000000..ec0ed0b106 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/volume-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/volume-off.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/volume-off.svg new file mode 100644 index 0000000000..9a8d9a0bfc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/volume-off.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/volume-up.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/volume-up.svg new file mode 100644 index 0000000000..c148430900 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/volume-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/walking.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/walking.svg new file mode 100644 index 0000000000..d1aeb87f5d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/walking.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/wallet.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/wallet.svg new file mode 100644 index 0000000000..ac258bb29b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/wallet.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/warehouse.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/warehouse.svg new file mode 100644 index 0000000000..3537e309d0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/warehouse.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/weight-hanging.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/weight-hanging.svg new file mode 100644 index 0000000000..80f96966a0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/weight-hanging.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/weight.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/weight.svg new file mode 100644 index 0000000000..7fcbd8bfd1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/weight.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/wheelchair.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/wheelchair.svg new file mode 100644 index 0000000000..7828de3ec0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/wheelchair.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/wifi.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/wifi.svg new file mode 100644 index 0000000000..c9ef1a61ec --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/wifi.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/window-close.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/window-close.svg new file mode 100644 index 0000000000..9cd5cc71b8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/window-close.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/window-maximize.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/window-maximize.svg new file mode 100644 index 0000000000..9d368503a4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/window-maximize.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/window-minimize.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/window-minimize.svg new file mode 100644 index 0000000000..d85cdd9069 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/window-minimize.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/window-restore.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/window-restore.svg new file mode 100644 index 0000000000..687d3e7e9b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/window-restore.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/wine-glass-alt.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/wine-glass-alt.svg new file mode 100644 index 0000000000..c66afb12a9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/wine-glass-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/wine-glass.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/wine-glass.svg new file mode 100644 index 0000000000..41dd2cf1e6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/wine-glass.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/won-sign.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/won-sign.svg new file mode 100644 index 0000000000..2b7350c7ea --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/won-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/wrench.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/wrench.svg new file mode 100644 index 0000000000..f22613d931 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/wrench.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/x-ray.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/x-ray.svg new file mode 100644 index 0000000000..c05bb7d947 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/x-ray.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/yen-sign.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/yen-sign.svg new file mode 100644 index 0000000000..e6a3dc51c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/svgs/solid/yen-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-brands-400.eot b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-brands-400.eot new file mode 100644 index 0000000000000000000000000000000000000000..e48acd6bd4dce13475bdc4f922094c7b54740b41 GIT binary patch literal 115208 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

    p{F~0&T-Y+czhx#`PEx8x2(D4;aelO?!5K0 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

    HgQ{Xg2>DsN9O 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%0AJbTpwfqGm(FZu^-ovAH)|J!*u`W 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 E4b8hV>Hq)$ literal 0 HcmV?d00001 diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-brands-400.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-brands-400.svg new file mode 100644 index 0000000000..59645e6870 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-brands-400.svg @@ -0,0 +1,1130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-brands-400.ttf b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-brands-400.ttf new file mode 100644 index 0000000000000000000000000000000000000000..c0633ae46a372c28617ed2e5723666a4676f0e6f GIT binary patch literal 114972 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%0AJbTpwfqGm(FZu^-ovAH)|J!*u`G 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

    uzs|ph3%)FYmHCk#^k$z|>F8-*bL)Q78fUX= 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≠4rHa&-)OV6X{(+lW@ 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 U(`Wg)*SQb&GB-6d0fznm03=j_u>b%7 literal 0 HcmV?d00001 diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-regular-400.svg b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-regular-400.svg new file mode 100644 index 0000000000..de18ef1508 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-regular-400.svg @@ -0,0 +1,467 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-regular-400.ttf b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-regular-400.ttf new file mode 100644 index 0000000000000000000000000000000000000000..d8e1efb292e041342f656346b61063f83ed7f3b0 GIT binary patch literal 40564 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 literal 0 HcmV?d00001 diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-regular-400.woff2 b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-regular-400.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..0b80b62c4850d7ac52b5c34ceca2d0239a3a9545 GIT binary patch literal 14948 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 literal 0 HcmV?d00001 diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-solid-900.eot b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-solid-900.eot new file mode 100644 index 0000000000000000000000000000000000000000..e994c7974793305344902d4efe288320f7262a09 GIT binary patch literal 160768 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

    Pbv!k3rxZws~#C!#IRBEw(9NGOI&(7PNl+ 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 B>HPoz literal 0 HcmV?d00001 diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-solid-900.woff b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-solid-900.woff new file mode 100644 index 0000000000000000000000000000000000000000..c9b2b6ea55c6141ebc60012316ad04e6fed76d6f GIT binary patch literal 76632 zcmZ6Rb8sfl*SC{R@{Mh7aL2aIJGO1xwzILd(Z;rI+qP}J`8|KWQ}vmdb5);4^_lAK z>2{M769WMS0RaJ}RtJIodH!+&{Ga{v`u|_zN-9D>388*C_m7kbqewmFl<1j$n8=SU z{3BKV7DYZI8w2|v77hY}z6Jt9-x0#GKV@d^VG06*X$%5#-v#pP*8yplnUA@NfiVau zEa1oQCl3%dq@W8|^B?%b)PHQE9|6DxAaKoXoZWwz_fO?!K|o-mvn0P{t?i6{(jmx$ zfI$9~0~_~iOIzB;z}+4M6n*8#@Ar=g!QnxF*&5iG{IHjw`e^+4zkS5!j@#QgIfH;= zDuaNa{rV{)BxdyL(>=>b-&kLN$B;q4#z^1M;U3yxXB)6#ff@j2l7%MmPcjk^=%9aEx%kz=F7wzQzbgXZm`2271OO z{L#S+TmLa|c27~jAHpANR?~5kn1VJ^0_xZ`=a?N5TcJT@F=32A+m~nYl zf|RImj<6nJBw|cekCZ`CC=yhwFcy~-CrODT0t6#U5MhzPMu8`XKi+zG+lHt5T=wj$ zy1&Y5{$?Nc@zFd!!S;RLva0NSazXGH0^wAeM*|U0@?Y^2!fxzN&hMViQ=Z+%Oxi*i z;dme4!%8(*Ov6jZOTMa2e=1bhwlgPhmZ&42f0(-*?Nh3x!Y;mS=%Yw+1r`lWZz0(`d`%_+ZMGA)|%v% zsce$C#hCvl=P)eF8(h}tF5_IK+Y2}6`A*SK{hjT(Sn%WjNQ)O6%|oAVo*p~|Jmfj6 za?$$`>7;bUS4pZBTg|(irabIBd$lotGHvE2Py91+swb}xSsh=cUX8RiY2sT?vUz>C zBNSAOLz5d@Lr9`t3m5~|7s|}dy8hK;nsC+M+r>{a;AS9C&*e#`0jiQ~C0;gxy(e5J z0A6Vc@sP(t@0!4pg%<5?OYqOaV1<;{1Df)DPOv;fd<}$Jn5DTpz?}LF*8_?SMAh-x zFfV(mYS{5=@Ly<&F$NTCwRsp-|1=r}t*|u3W?Mss4$q2mGc=k*9u2)Z7G93UiY}K2dI3zKw7RNuzVnL&#b%t?Y`_;JY`r9P&mCj zeQ{2>>`8LAe7o7jSC6ma=>W@&a@7}aBi~FVm>4r*t{bk0Sk1TAXyWlA@#0>Ovw6aQ z+0OkQ<~PhXPuL(u9JTg3Lg(c+j>VH-Q4%~~nLoLiAILdcQ}nXb!!Kw){e0s2i+IkX zQ&{d&Sv8M%v0A2g-s~xW8sj;W!~ZB>WqtLcU8J3?9iu(jKfT(@^|Ua~I^{CrLgU$X z^mh2)8Z!+$v73~w^i|VF;YQX*Vk<=JVJmuT<$U%s6J0bl+D=W{ z#3WBIxm2%vF1a+QPbu%pm-_eTAekS3uaF5h79u2%GRgc&8Mn^nU$D7jw>*{cWM0e9 z{s<6MM5sIv>r}B5X5_fmS|boCNP)ZrEHQgf;djmLBNU)Rd{is;b}FyB%9+u`FC znvUN;f2*`GZ>&(~uH%NUYp5S`wak0JmA* zEMeg+#_A(}HE7NGU-iD|sww9R^zkTKtKR#m5|=c=Z0j9HRWE~f)cH+e(_++v;l*5W z5enVhe{Y4>sa_APmsLSC;P-{UCC8kg%xN$sdyqL$z6G%HLJAz<#`b7iWyD8dCM^P* zhFLlVs7CG;6>L)qoZ*fvEj*CM8N_o{;*nRX)lNY!;)Uy^Q}!e|g<|_QTOgnJ=#rL> zXTZ2`S_x?RN6TAeT&-Mq!iZWxm-nS!A#fkTH;aeQQWf!LsY*i@6{&41Z60hpVIwA% zdh2k8cOBsd!`{+2ic|HA>5?)WseOgmc?fg&Su1AtS~SJa3*3bX2X8W=5Qt-yVd6(O z)2OtHQk~;tD-FvnR2oteA01c{{YKl{z9aXYkmKSZrq@U8pkh*-b6r zqkHUmg}0L$Jwu$AW9sB}8*p+j?t6P*KP7aTn4&LnlaXR_O* zbm#spg)N=`$}SRaNOh^cZwM}A66tEFdJ2(F#a=o$-Lv8eR#HGelqVqH5%G??uEC7m zQ7ENx)8x;haym5ekkL)8CY@*UY(rR%_pI*vn_Iwkwu7<}!OeiN&p?36fShp$lRpQ{zXbYMyaSXl~P|A2A9a_Dl46YX&li(X*WWpL5XV|U)C^!KF=xu{>ZDfxi-8{?nBTMm4)H5zZCwH>C1KK+fz;TkOZ9S@p8 zPwO7>7x3TvW*>oix7=SndM`@Kj*5h&MZrn&b&eHT0F^_QQljE<&N=m|i0`-(CRZ8xZ9?ZBfIz_=TD%-Vr9G^+mbQI4+Iw#4@B%UUv*(Am~ zMb4!7BB9e!z&9?)Ge4)Wv7sxcda@zgbw;YO-gP#>vr)HT`OHPsY}?sKXnRr4g}npi z`?)y!yI_p^gT8IM*ebyiBg8mcl(f>i*1s@wP-t$P27_G3s1`h8GcO^buvv>nlxxY* zqV66Qh#lxRiCmaSO90dyHPo0>q9G8yD<3QvozeviBM~&a_Yp=lN_fLhku=n)XC8<}xk%VGs;63$ z2`a`~a|tTuespEA5WeKF1G<&SV;)>ndaSs#CL z8VEB(;u-)e**q4)Y`=+G)2tPR=2CXf7ycZWMWx1F)U4!Ks|wBq3^?VH?21QaOYlx} zC(7tbv?1|8wxL`#yJJV7%R6#LEUM1MSgQ)pWit#JA}Ut5<`^g9CFp{GZ*_rhuls^m zhkSugPlEo48d{eG49I)^U%X7H#DAz58Xb`U&5jIfTMy?0Et&W%huYQie?~Vv?y?P+v>-`##`6qruRNeemS8@BBvhZ0wON?uM4{mM{ z<2P}-z605)8^&*4WT{WFOxvOqayI@_;TQO zZA<9DvI}kR@(n(U-?NMHGaTR?`ipy;^j5bmU}5`^m#XYG2K?IZI`O5;hWPgF(|_UI znz^+497A#XuoBQ^w=UsR-ITcL9Oo@|gR>@hbN!jM^Y{SKdu~C#3yf-)=nT6gd*odc zKJ#i$-O+20U3m83k9ZEdhWhIK20Z3`@|J#AfdRf&{RnUIWF_?Ku_SnhiA$doczWO6 zByV^=V+NLQ+yZm+Ab~vHUxY8yUx_=%{dxdQO&$?fum^f-LpMQiqIPs*iq%gfB5}Ui z;9qszBtk^1m&kcotGp z@*iS#dZfv)=C=Mk+=;^!f+;uGxt3heemt@Gj)QmVt{ z6JoAw=M!=YTr@BjJZqgzI3SP0jPJ0lrR}}X!;e@rHkUg)UkljjZYJrS8k~u+4;q{T z=f)Jq>`TRHPxvsrWeR*OwdX87mSR^dzn{r|P>Dy{wozmpP9lQ8t*-T+!UiM2!xc>1*bG{UYW z>?iDF^qED{WNSD%CkPvTaZD3dG=7`Lukm0Kkg6lXJ4swx!#V+Z%rFyI@Q`xIUv#?# zZdiTe_3N$Fh4wt^lJq|rXh__Db4dG4>XEN}pluO0Y5+QbXSoinz2BcWcd8gm3EL9= z+~DVV2KW)nN1lO?GdFa-Z+0sJHD9<}B)2)u@o^d((tB3jAq0?Kl*qIea_Q0|uS;XTXj?9I78@k?QOM+e}d%hp=0^U2d`2y&@f1|wn#^hxpmgz9n= zZsh8EQ_qC|y8%|k>5L_wB%s&F6%bt%Gi&N0+yV1y9c} z!qUg^552-A*gL<(wT^5Il15HSS}98>1aIN+Rh~6bS8_^mZpcZPypE=iHIa*i3+D<9%gq7DMSE5?obXW4m4=Jz2x8*0I z#;#OdK}*(@CvtU!VlXJx*i-$$@2PU=RLzc1eO}tm6n)MlUGW+xa(tm0Z`m*un%sE< z@N>#j`@qL2XYk%PA+7}dPhx!08XrkJBK4S}pSaP@+LASN^7Dj@=-yUG`R>>Uez?gH z)~<4Ai`;b%{&ZQ+e7l78ljJp7Z7Wr_^qCc3$injzsABtjp%U=&0$3dXHk~7TcFh{J zu>DLlCr864-L|<$qnOD(?*YzDJ&y^s)IMhdUf%2s(d+5*#?|X-_4Z${r+Hh#z)^%V zdc@?fp;|7rb9oP4AW@6Fn>A0(oTA z&9rum{%gDnx%%~#EXhmz0^!O>dbVs0x2)@by?12XiTWOiivacC(^JGNpA_7g1KaO- zD1Na{z>nu;;@fK8*a1H=8x-#KIxfJHRb3l^t>5HPqT;Cj4X|Wa{~thAO+y%^yr2R( zVp4eZ6`(4mVT7Vr4lCikof)^nlcXcDcfFo8V98@8X6TW{N?waMsTt=<&U{B(ST6FFjruEX={Q0rJwX#lNlT37uW9-&)4O4oRhwny%G z`LOnGKjQ>mKQ@BouJFG&XT&u7r zxL4x*gri1&n|#FI&>vEqmOEXa99z2jqs}-aALi zz_~kK#PXy&O7$r;KzA4w*wIBE?=G_q+;j29j97l&1nAB`$Nd1Qy+*I!KfoAe`t=>y z@vk_}9iLxduknU3;`mM(WqR8Jkdw(Q!Bb2?e4CX4+hV=vSQ1q5t0bln7&$8r~TL_utqk*RQa^j%j-0 zTY|2%0n^zF4;1e1dQ6Fnt>jJ#Lnn_Xl!(p7I#K|?x_A1()U`Es>GOx01n+iAq9SJcA$s-)tznO&miwx-OPj}?6B@~5U^^{Jag=f9sNtxPrf zW5$-i8RsKG>G7~0`oja$CU2(c`PJzxn`LE62<>>2aTKY$eKc)PS}&8n5tvbmzALF~5A+T< z8O>2B5+oEOl07c@Kx^!CesIS?YaAhpkau?n;7G_Z+h6PYd%Cnt*HkP8w6yqafwTDR z;`{ZPL?Y0>OPGKJ-ypMw0uLFyuBIiErA(=CwIn5qlodIK{9H7;0+O;*-i8QUO=@u{ zA6Kndq7-H}iW}&dr=ll8HiC&Jne0xtbvfYF%3&cKH+XZtD&4qNqPmSg*Znull5;TK zIY~PPt%Rv+hSR&CJ#d*5WAO0 zs({p+<#se%*;vTg+F5MS@sSfxRJ?5f>lvPQ`}Jl6=Qh3G51K#3l(L002u)Z5awU2>gM6M|LbBqxZee4~s?i6h24Qi);^;GQRGUu8# zO`kh?9s$)t`5B*hwwCbpr%RNz!ePMKHr~RkPUfWx#@v%R@zCLUYa zmDzqz9|iKq!@)j%u)+I%^w8`u)yTG(SD}1nDmTS$kF7bD%mZWv06BZxYoZEllt2`4 zN>=_ITYOY-O<(_tFubOO?1@k>NqSTCeHj)5Uy_96y2yJPma$OR+x4f(oH;Od#|dbB zF$xF25eK1XqZ4E}UX+2)8Z5=E{7>wD2@zdfIX*ncHnUq9Exq05#(?5q-HniQe`C=% z_y^hzzDuB;Dq^cKgC$#6(@2B7Mr5%Z{QF&e519p_Jt5k;LD)@xAF*)mU=u;*WfMBJ zYPbz9hWiBJ=RUEgj?C2-vA$&XTkwD~?ze8}L^cc%9-%aGLGeu}xn-w!85|yQc!ylG z-lX3a6*+v&TLheyr&;hkPu!f-toS4p=je2TE)Bh2z1oG_k?LXK^a<|9^m*y~P9n9% zIVW0r5CLrzs}vexcB>nJ^d9dXaw0z76VNr3t3|w&isu< z7C==uX$n+QT8k)69%USMqXe6_h!^X=zhe2s!_oGE0BaJm@sxiW2M?j_5ANT%Z~Ba_ zsrrn1cY3Lv*T@l(l5FUb#lp6-^kb24LO2Og;{WKz6&N!L6^2zrxUta(e}3>@?FGR4d?jgE*-KJDi2TgAfq1AZfZ>6hd4moKRwAE2fn& z$T>*7$!D3Qg))mk{JkIx#HR!O)IIl#dT9|Y(N`Uo-SoDsu*6_d;UvVK0~K8yds4Qk z3NV)=VPE2E@}U|2ePpTR+L{_`Y+zxEXJ*o+S=DF92S*u)RAr+5XaxtR7#%XZmeAtk z?c6J`KC!IKu5{0w@T)7=0eore{y3M&Yn0a?Us}M+YVp6Gst|>=0DIt2-X3Wh3;b3% zjuj9O1%uBXv4}2aJ{i5GC231|UxT2is{(T|fIp)!4c68n{B152Yd}Gtl}AK(=)7lq zIA2GXFKP3yts^MPUjjjsg_qW-m$zKI3T0QL#jx|4{Eih~z)75O2Rcjc9bXTOjx@gS zbN-uUzdHCNB2|5hJZvNaSE1%xXO!i>Xbc3WAHiFm%n)`{%c}K?@s1kXE5cLp4chti zqh3= z7$o*tl!iKgQ~@Vy*ocLS-}Xdf<&spiQF^2}R9Y|&s}m3h385pgZ(Z>&qB#5Lrrm|f z9_BC^h)QhbPt~wo>Ig%Gr7e-Sj=<^P2#Rt|XekJjYLF0`+U+dVLOS0X*ME}yrv=kK zBp*aXycUmE4ALT0RMlBPP(rvU$|=4IsdpMQ5Gs?m{ro{gOeh>e1X-=^-1>Rxw7(^h zKbpuLfKQJ>S3w{bXSRZs3Zezd1RYueDx6A=9(=p?b_@mg5G0v%`sn%0ooZg@i39Rv zp|VJqC#jX^BeM8mV{q62$X4xZ7JLsIR}2jND-StSSO)3zvsr-L^tPf{jbaQ(?NGj< z7qMH{q39l=h|k7=_)j3$bCXXw#j_l+Syor~cD!mzYx+K}?@{^JK)!GeZ$$~!TfPyt z`ER|7&41$=csTVn{L&H32?e7HmO@B;fnx!|G?tz&uTnj>BxPp*$EVbndZENv_Ld$3{?^jT+n`Fh&4rSady zea1`X5stY^Z6N*6+<&#NpVfiAMM8oZG)bom2xdEd{& zrUD(oQ}hg@?hf0~@Fo*UCU<|TdTku&^q|#HC2+xzHn+duzcCF7iuaT3neV``fBo{J z5>|*yoc*Ot)=OdEWg1{E^v1-9IFH4}prI#VSsVhGC067`Bgrc+7yLVCJ{8_b1&2A| znd&1|s_;B2LB-T=hf(FaAv>uPktbxOSFS(DXnB;V3NVbJiI!h=d_1{Gw#u6D_}v|E z7r$DLF$vB(@std{b@4S+J6Fp;;1*e5FWN$G^PX6*HdULZnm0rB55L}eXl|6}AoSWY z)Ub6n-htxfd;eh?r~5OHf_BqcLz*oCn)5XSjLCaf>BfdHm+L@Jzax`jixmX5UZ6e< z)V)627|j(0y_xPWB*(EC;sYv}bv?)mQg(Slx7YW(i>O0V%M(Gwis@oQ!~+2>0%K&C z%Uq>+EY%;~IrPVuVd-@?ephXkomqvZ@aNZ#={S1mR4DQ|x51m)w?H+EvXstjiii~o z`D%eI$A=G^Xc!wRsaP>Pbwwbs#S*)%NFaOQ7E<1!k==yB5mBolNaJu><6-hO?Ie5Eyv0X|#Dx1vwjC@PI*mltpWF2`h{y_Vu z@4Yzdd!zM&ckq#*fhcWKnK9q9}rXeC)sv}2|O;Rdt}Wu~%wpk9hU5!cUr zJ@OYb2*W07h$4qt@1_(jj)^*Wws_5kkzjp24F^gZHX<3B93WgaytiCL3if2Z^^N-~ zF9OM7YMT?sY1&z5FQpr-sq=AFh1DeH-_f+&tZKERZ&&S!<5>U7(-4s_7!-k_YiyAa zw*-W&Mmo}2GoLxcTXB5hy$j`-Y?=h5#8Tesyfr^W(|x}|a@OO|zFjg;@=qU=#GlVQou0QHuUJtazTOIFJjGd3IPz8F zE?bu?9TJ7G#Z_^AU%XbwH^*1Q{*g!BqUeaZ6ai5SIFVV>vIh3@s9Lt1^d!Rz+6!n0?+Z^7#dbfk1zqF(<;m|ndDsM5RskDDe*Wj|{`@zErbLQH5W z+V~_U5+@mFRz1g@S(W0Kh#J%HD7L~9O^cJE?8yI4B-Im0Cl}C=b%S8RiHPB#ktBQI zeW9Ur8Hx=LXn2dXS`nN7H0`(vk&2|ms7zv%mlalGd#S-|kcr4(S!EQeioUzRbm8@; z($WkC|Hd#9LIcQ`tHD)pq|6V%2)0F_*OjEAj-`~8DW28~;Noj(?(q<}RK&N3PzVVL zaCBs^r)JE;A3TT+1*}|k(eHapEb|{2kDOW;)s;~INegM{`$-S%Xe?ea;&;Ez|)}n>y-oWL_g&}p0KMnvu`C00q8WGJQ z42sxnj^GBxwsfF1#a4m(WFRU2EGl~3SMU9&cJPdxEC=?%7dGmcnl*&#mmDoPVP+`* zLYnG#&Vn$9>CBURf`R_gkDfRwO6a1st6}YSeTjB=r?`sf4@)KZQ*_WwjP5l=r5d$_ z4cDb2J4k>KOja%;XZu}LVj`;7Fuo|^NRy8DzL!2iRy#V9&TLiq?+{-MEv#Uc0hYs~ z@}1phpswc?g0CwV>8=-HfRmVxsn)=NjPyWOSPf3T#tSB0zRau3dvbAm7>Nk!te8nx zujMU+iKtZm-#b2>>$EV^*a7&_rZI%;FL8V92R$TL7@?$D%$1O2#|85AsM&m63AaxH z8)0eI`nrVDNShATc6OBAjvI!*wGKVTua_AC+>3DF?f7$i5zr1^CiS?g zoG3jO&};fI2CDBg`jsaBUP=t*XF{-RwcFiL9_e3pt%~Gp-=*!v)6Bw6g=Cz8HN9DW3 zv190$I8iv2=+TO;ESAwKaC=Z9%p!hPz_d2p@Y<23`1C637fYF8p8N^M$h;0{JRWjYhb5iDli7&?>K)sc|3AXL1j{;&Y!O?Gan zD?af@r%oSbv=!Rz6aBNURo0b(X(qxEfn7YK1h>1G4)P!lae^S1R18TFH#fnkaomMk z&6bS6MgD%Q3VgDhaP0ctiJbz)q9Mq;NDnD%iH~Y=Y)U$XyonXEG7u#V zID%i$b=1g19&j)jn5YhzrA+{c=)IC`nF>`5>cK0Izb!Ox>rDX(&m~e%MASE{x$^P1 z;C3;z(Io=M<%^pp6POW{>!t20Eh%6$EboZxV$6*DCZUxjk+|7SJEV8wmfHP2@T15A zrwZBz=4VY{jUkFtwSBb^7|Nyu<5gwbd|MvQ-W8+%+Vahkf+BaM%l7`6mA*ac=5~ucbY*;j7LGZJ@R1wz!yUXIsFtl+D>UEuvRo z==vUm(+<>%-TvZbYu(hIp~7~dlOTH*`haFtn#Gv7OdRg$=sa-o9UfPtf&Pq(E~-w$ zwc$wFOcfy>T`^d9#3^u6E7WMZn(tIbRO6psI&tlRqC>4hu@&h^T6!DNTGlIzCYgF6 zbg0r*5XYu=6h(?aHw#a29#3Kf#n2u)ss)zAr3r6lBWpz?i1sDcN-D<}CW>2>#6

  • _WV`Dqavo7Qe`u5{VwVA!E1D; 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 AB>(^b literal 0 HcmV?d00001 diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-solid-900.woff2 b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-solid-900.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..0e3d1947c23fcaca7dbc91aa8d2c96121026519b GIT binary patch literal 59612 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 literal 0 HcmV?d00001 diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/LICENSE.txt b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/LICENSE.txt new file mode 100644 index 0000000000..28c1c4bc73 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/LICENSE.txt @@ -0,0 +1,34 @@ +Font Awesome Free License +------------------------- + +Font Awesome Free is free, open source, and GPL friendly. You can use it for +commercial projects, open source projects, or really almost whatever you want. +Full Font Awesome Free license: https://fontawesome.com/license. + +# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) +In the Font Awesome Free download, the CC BY 4.0 license applies to all icons +packaged as SVG and JS file types. + +# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL) +In the Font Awesome Free download, the SIL OLF license applies to all icons +packaged as web and desktop font files. + +# Code: MIT License (https://opensource.org/licenses/MIT) +In the Font Awesome Free download, the MIT license applies to all non-font and +non-icon files. + +# Attribution +Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font +Awesome Free files already contain embedded comments with sufficient +attribution, so you shouldn't need to do anything additional when using these +files normally. + +We've kept attribution comments terse, so we ask that you do not actively work +to remove them from files, especially code. They're a great way for folks to +learn about Font Awesome. + +# Brand Icons +All brand icons are trademarks of their respective owners. The use of these +trademarks does not indicate endorsement of the trademark holder by Font +Awesome, nor vice versa. **Please do not use brand logos for any purpose except +to represent the company, product, or service to which they refer.** diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/README.md b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/README.md new file mode 100644 index 0000000000..f23a86cf04 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/README.md @@ -0,0 +1,27 @@ +# @fortawesome/fontawesome-svg-core - SVG with JavaScript version + +> "I came here to chew bubblegum and install Font Awesome 5 - and I'm all out of bubblegum" + +[![npm](https://img.shields.io/npm/v/@fortawesome/fontawesome-svg-core.svg?style=flat-square)](https://www.npmjs.com/package/@fortawesome/fontawesome-svg-core) + +## Installation + +``` +$ npm i --save @fortawesome/fontawesome-svg-core +``` + +Or + +``` +$ yarn add @fortawesome/fontawesome-svg-core +``` + +## Documentation + +Get started [here](https://fontawesome.com/get-started/svg-with-js). Continue your journey [here](https://fontawesome.com/how-to-use/svg-with-js). + +Or go straight to the [API documentation](https://fontawesome.com/how-to-use/font-awesome-api). + +## Issues and support + +Start with [GitHub issues](https://github.com/FortAwesome/Font-Awesome/issues) and ping us on [Twitter](https://twitter.com/fontawesome) if you need to. diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/index.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/index.d.ts new file mode 100644 index 0000000000..93d909288a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/index.d.ts @@ -0,0 +1,113 @@ +import {IconDefinition, IconLookup, IconName, IconPrefix, IconPack } from '@fortawesome/fontawesome-common-types'; +export {IconDefinition, IconLookup, IconName, IconPrefix, IconPack } from '@fortawesome/fontawesome-common-types'; +export const dom: DOM; +export const library: Library; +export const parse: { transform(transformString: string): Transform }; +export const config: Config; +export function noAuto():void; +export function findIconDefinition(iconLookup: IconLookup): IconDefinition; +export function text(content: string, params?: TextParams): Text; +export function counter(content: string | number, params?: CounterParams): Counter; +export function toHtml(content: any): string; +export function toHtml(abstractNodes: AbstractElement): string; +export function layer( + assembler: ( + addLayerCallback: (layerToAdd: IconOrText | IconOrText[]) => void + ) => void +): Layer; +export function icon(icon: IconName | IconLookup, params?: IconParams): Icon; +export type IconProp = IconName | [IconPrefix, IconName] | IconLookup; +export type FlipProp = "horizontal" | "vertical" | "both"; +export type SizeProp = + | "xs" + | "lg" + | "sm" + | "1x" + | "2x" + | "3x" + | "4x" + | "5x" + | "6x" + | "7x" + | "8x" + | "9x" + | "10x"; +export type PullProp = "left" | "right"; +export type RotateProp = 90 | 180 | 270; +export type FaSymbol = string | boolean; +export interface Config { + familyPrefix: IconPrefix; + replacementClass: string; + autoReplaceSvg: boolean | 'nest'; + autoAddCss: boolean; + autoA11y: boolean; + searchPseudoElements: boolean; + observeMutations: boolean; + keepOriginalSource: boolean; + measurePerformance: boolean; + showMissingIcons: boolean; +} +export interface AbstractElement { + tag: string; + attributes: any; + children?: AbstractElement[]; +} +export interface FontawesomeObject { + readonly abstract: AbstractElement[]; + readonly html: string[]; + readonly node: HTMLCollection; +} +export interface Icon extends FontawesomeObject, IconDefinition { + readonly type: "icon"; +} +export interface Text extends FontawesomeObject { + readonly type: "text"; +} +export interface Counter extends FontawesomeObject { + readonly type: "counter"; +} +export interface Layer extends FontawesomeObject { + readonly type: "layer"; +} +type IconOrText = Icon | Text; +export interface Attributes { + [key: string]: number | string; +} +export interface Styles { + [key: string]: string; +} +export interface Transform { + size?: number; + x?: number; + y?: number; + rotate?: number; + flipX?: boolean; + flipY?: boolean; +} +export interface Params { + title?: string; + classes?: string | string[]; + attributes?: Attributes; + styles?: Styles; +} +export interface CounterParams extends Params { +} +export interface TextParams extends Params { + transform?: Transform; +} +export interface IconParams extends Params { + transform?: Transform; + symbol?: FaSymbol; + mask?: IconLookup; +} +export interface DOM { + i2svg(params?: { node: Node; callback: () => void }): void; + css(): string; + insertCss(): string; + watch(): void; +} +type IconDefinitionOrPack = IconDefinition | IconPack; +export interface Library { + add(...definitions: IconDefinitionOrPack[]): void; + reset(): void; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/index.es.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/index.es.js new file mode 100644 index 0000000000..e21af70cf8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/index.es.js @@ -0,0 +1,1928 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +var noop = function noop() {}; + +var _WINDOW = {}; +var _DOCUMENT = {}; +var _MUTATION_OBSERVER$1 = null; +var _PERFORMANCE = { mark: noop, measure: noop }; + +try { + if (typeof window !== 'undefined') _WINDOW = window; + if (typeof document !== 'undefined') _DOCUMENT = document; + if (typeof MutationObserver !== 'undefined') _MUTATION_OBSERVER$1 = MutationObserver; + if (typeof performance !== 'undefined') _PERFORMANCE = performance; +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; +var DOCUMENT = _DOCUMENT; +var MUTATION_OBSERVER = _MUTATION_OBSERVER$1; +var PERFORMANCE = _PERFORMANCE; + +var IS_DOM = !!DOCUMENT.documentElement && !!DOCUMENT.head && typeof DOCUMENT.addEventListener === 'function' && typeof DOCUMENT.createElement === 'function'; +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; +var UNITS_IN_GRID = 16; +var DEFAULT_FAMILY_PREFIX = 'fa'; +var DEFAULT_REPLACEMENT_CLASS = 'svg-inline--fa'; +var DATA_FA_I2SVG = 'data-fa-i2svg'; +var DATA_FA_PSEUDO_ELEMENT = 'data-fa-pseudo-element'; +var DATA_PREFIX = 'data-prefix'; +var DATA_ICON = 'data-icon'; +var HTML_CLASS_I2SVG_BASE_CLASS = 'fontawesome-i2svg'; +var TAGNAMES_TO_SKIP_FOR_PSEUDOELEMENTS = ['HTML', 'HEAD', 'STYLE', 'SCRIPT']; +var PRODUCTION = function () { + try { + return process.env.NODE_ENV === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + +var ATTRIBUTES_WATCHED_FOR_MUTATION = ['class', 'data-prefix', 'data-icon', 'data-fa-transform', 'data-fa-mask']; + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +var classCallCheck = function (instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function"); + } +}; + +var createClass = function () { + function defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } + } + + return function (Constructor, protoProps, staticProps) { + if (protoProps) defineProperties(Constructor.prototype, protoProps); + if (staticProps) defineProperties(Constructor, staticProps); + return Constructor; + }; +}(); + + + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + + + +var slicedToArray = function () { + function sliceIterator(arr, i) { + var _arr = []; + var _n = true; + var _d = false; + var _e = undefined; + + try { + for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { + _arr.push(_s.value); + + if (i && _arr.length === i) break; + } + } catch (err) { + _d = true; + _e = err; + } finally { + try { + if (!_n && _i["return"]) _i["return"](); + } finally { + if (_d) throw _e; + } + } + + return _arr; + } + + return function (arr, i) { + if (Array.isArray(arr)) { + return arr; + } else if (Symbol.iterator in Object(arr)) { + return sliceIterator(arr, i); + } else { + throw new TypeError("Invalid attempt to destructure non-iterable instance"); + } + }; +}(); + +var toConsumableArray = function (arr) { + if (Array.isArray(arr)) { + for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) arr2[i] = arr[i]; + + return arr2; + } else { + return Array.from(arr); + } +}; + +var initial = WINDOW.FontAwesomeConfig || {}; + +function getAttrConfig(attr) { + var element = DOCUMENT.querySelector('script[' + attr + ']'); + + if (element) { + return element.getAttribute(attr); + } +} + +function coerce(val) { + // Getting an empty string will occur if the attribute is set on the HTML tag but without a value + // We'll assume that this is an indication that it should be toggled to true + // For example + if (val === '') return true; + if (val === 'false') return false; + if (val === 'true') return true; + return val; +} + +if (DOCUMENT && typeof DOCUMENT.querySelector === 'function') { + var attrs = [['data-family-prefix', 'familyPrefix'], ['data-replacement-class', 'replacementClass'], ['data-auto-replace-svg', 'autoReplaceSvg'], ['data-auto-add-css', 'autoAddCss'], ['data-auto-a11y', 'autoA11y'], ['data-search-pseudo-elements', 'searchPseudoElements'], ['data-observe-mutations', 'observeMutations'], ['data-keep-original-source', 'keepOriginalSource'], ['data-measure-performance', 'measurePerformance'], ['data-show-missing-icons', 'showMissingIcons']]; + + attrs.forEach(function (_ref) { + var _ref2 = slicedToArray(_ref, 2), + attr = _ref2[0], + key = _ref2[1]; + + var val = coerce(getAttrConfig(attr)); + + if (val !== undefined && val !== null) { + initial[key] = val; + } + }); +} + +var _default = _extends({ + familyPrefix: DEFAULT_FAMILY_PREFIX, + replacementClass: DEFAULT_REPLACEMENT_CLASS, + autoReplaceSvg: true, + autoAddCss: true, + autoA11y: true, + searchPseudoElements: false, + observeMutations: true, + keepOriginalSource: true, + measurePerformance: false, + showMissingIcons: true +}, initial); + +if (!_default.autoReplaceSvg) _default.observeMutations = false; + +var config = _extends({}, _default); + +WINDOW.FontAwesomeConfig = config; + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var functions = []; +var listener = function listener() { + DOCUMENT.removeEventListener('DOMContentLoaded', listener); + loaded = 1; + functions.map(function (fn) { + return fn(); + }); +}; + +var loaded = false; + +if (IS_DOM) { + loaded = (DOCUMENT.documentElement.doScroll ? /^loaded|^c/ : /^loaded|^i|^c/).test(DOCUMENT.readyState); + + if (!loaded) DOCUMENT.addEventListener('DOMContentLoaded', listener); +} + +var domready = function (fn) { + if (!IS_DOM) return; + loaded ? setTimeout(fn, 0) : functions.push(fn); +}; + +var d = UNITS_IN_GRID; + +var meaninglessTransform = { + size: 16, + x: 0, + y: 0, + rotate: 0, + flipX: false, + flipY: false +}; + +function isReserved(name) { + return ~RESERVED_CLASSES.indexOf(name); +} + + + +function insertCss(css) { + if (!css || !IS_DOM) { + return; + } + + var style = DOCUMENT.createElement('style'); + style.setAttribute('type', 'text/css'); + style.innerHTML = css; + + var headChildren = DOCUMENT.head.childNodes; + var beforeChild = null; + + for (var i = headChildren.length - 1; i > -1; i--) { + var child = headChildren[i]; + var tagName = (child.tagName || '').toUpperCase(); + if (['STYLE', 'LINK'].indexOf(tagName) > -1) { + beforeChild = child; + } + } + + DOCUMENT.head.insertBefore(style, beforeChild); + + return css; +} + +var _uniqueId = 0; + +function nextUniqueId() { + _uniqueId++; + + return _uniqueId; +} + +function toArray(obj) { + var array = []; + + for (var i = (obj || []).length >>> 0; i--;) { + array[i] = obj[i]; + } + + return array; +} + +function classArray(node) { + if (node.classList) { + return toArray(node.classList); + } else { + return (node.getAttribute('class') || '').split(' ').filter(function (i) { + return i; + }); + } +} + +function getIconName(familyPrefix, cls) { + var parts = cls.split('-'); + var prefix = parts[0]; + var iconName = parts.slice(1).join('-'); + + if (prefix === familyPrefix && iconName !== '' && !isReserved(iconName)) { + return iconName; + } else { + return null; + } +} + +function htmlEscape(str) { + return ('' + str).replace(/&/g, '&').replace(/"/g, '"').replace(/'/g, ''').replace(//g, '>'); +} + +function joinAttributes(attributes) { + return Object.keys(attributes || {}).reduce(function (acc, attributeName) { + return acc + (attributeName + '="' + htmlEscape(attributes[attributeName]) + '" '); + }, '').trim(); +} + +function joinStyles(styles) { + return Object.keys(styles || {}).reduce(function (acc, styleName) { + return acc + (styleName + ': ' + styles[styleName] + ';'); + }, ''); +} + +function transformIsMeaningful(transform) { + return transform.size !== meaninglessTransform.size || transform.x !== meaninglessTransform.x || transform.y !== meaninglessTransform.y || transform.rotate !== meaninglessTransform.rotate || transform.flipX || transform.flipY; +} + +function transformForSvg(_ref) { + var transform = _ref.transform, + containerWidth = _ref.containerWidth, + iconWidth = _ref.iconWidth; + + var outer = { + transform: 'translate(' + containerWidth / 2 + ' 256)' + }; + var innerTranslate = 'translate(' + transform.x * 32 + ', ' + transform.y * 32 + ') '; + var innerScale = 'scale(' + transform.size / 16 * (transform.flipX ? -1 : 1) + ', ' + transform.size / 16 * (transform.flipY ? -1 : 1) + ') '; + var innerRotate = 'rotate(' + transform.rotate + ' 0 0)'; + var inner = { + transform: innerTranslate + ' ' + innerScale + ' ' + innerRotate + }; + var path = { + transform: 'translate(' + iconWidth / 2 * -1 + ' -256)' + }; + return { + outer: outer, + inner: inner, + path: path + }; +} + +function transformForCss(_ref2) { + var transform = _ref2.transform, + _ref2$width = _ref2.width, + width = _ref2$width === undefined ? UNITS_IN_GRID : _ref2$width, + _ref2$height = _ref2.height, + height = _ref2$height === undefined ? UNITS_IN_GRID : _ref2$height, + _ref2$startCentered = _ref2.startCentered, + startCentered = _ref2$startCentered === undefined ? false : _ref2$startCentered; + + var val = ''; + + if (startCentered && IS_IE) { + val += 'translate(' + (transform.x / d - width / 2) + 'em, ' + (transform.y / d - height / 2) + 'em) '; + } else if (startCentered) { + val += 'translate(calc(-50% + ' + transform.x / d + 'em), calc(-50% + ' + transform.y / d + 'em)) '; + } else { + val += 'translate(' + transform.x / d + 'em, ' + transform.y / d + 'em) '; + } + + val += 'scale(' + transform.size / d * (transform.flipX ? -1 : 1) + ', ' + transform.size / d * (transform.flipY ? -1 : 1) + ') '; + val += 'rotate(' + transform.rotate + 'deg) '; + + return val; +} + +var ALL_SPACE = { + x: 0, + y: 0, + width: '100%', + height: '100%' +}; + +var makeIconMasking = function (_ref) { + var children = _ref.children, + attributes = _ref.attributes, + main = _ref.main, + mask = _ref.mask, + transform = _ref.transform; + var mainWidth = main.width, + mainPath = main.icon; + var maskWidth = mask.width, + maskPath = mask.icon; + + + var trans = transformForSvg({ transform: transform, containerWidth: maskWidth, iconWidth: mainWidth }); + + var maskRect = { + tag: 'rect', + attributes: _extends({}, ALL_SPACE, { + fill: 'white' + }) + }; + var maskInnerGroup = { + tag: 'g', + attributes: _extends({}, trans.inner), + children: [{ tag: 'path', attributes: _extends({}, mainPath.attributes, trans.path, { fill: 'black' }) }] + }; + var maskOuterGroup = { + tag: 'g', + attributes: _extends({}, trans.outer), + children: [maskInnerGroup] + }; + var maskId = 'mask-' + nextUniqueId(); + var clipId = 'clip-' + nextUniqueId(); + var maskTag = { + tag: 'mask', + attributes: _extends({}, ALL_SPACE, { + id: maskId, + maskUnits: 'userSpaceOnUse', + maskContentUnits: 'userSpaceOnUse' + }), + children: [maskRect, maskOuterGroup] + }; + var defs = { + tag: 'defs', + children: [{ tag: 'clipPath', attributes: { id: clipId }, children: [maskPath] }, maskTag] + }; + + children.push(defs, { tag: 'rect', attributes: _extends({ fill: 'currentColor', 'clip-path': 'url(#' + clipId + ')', mask: 'url(#' + maskId + ')' }, ALL_SPACE) }); + + return { + children: children, + attributes: attributes + }; +}; + +var makeIconStandard = function (_ref) { + var children = _ref.children, + attributes = _ref.attributes, + main = _ref.main, + transform = _ref.transform, + styles = _ref.styles; + + var styleString = joinStyles(styles); + + if (styleString.length > 0) { + attributes['style'] = styleString; + } + + if (transformIsMeaningful(transform)) { + var trans = transformForSvg({ transform: transform, containerWidth: main.width, iconWidth: main.width }); + children.push({ + tag: 'g', + attributes: _extends({}, trans.outer), + children: [{ + tag: 'g', + attributes: _extends({}, trans.inner), + children: [{ + tag: main.icon.tag, + children: main.icon.children, + attributes: _extends({}, main.icon.attributes, trans.path) + }] + }] + }); + } else { + children.push(main.icon); + } + + return { + children: children, + attributes: attributes + }; +}; + +var asIcon = function (_ref) { + var children = _ref.children, + main = _ref.main, + mask = _ref.mask, + attributes = _ref.attributes, + styles = _ref.styles, + transform = _ref.transform; + + if (transformIsMeaningful(transform) && main.found && !mask.found) { + var width = main.width, + height = main.height; + + var offset = { + x: width / height / 2, + y: 0.5 + }; + attributes['style'] = joinStyles(_extends({}, styles, { + 'transform-origin': offset.x + transform.x / 16 + 'em ' + (offset.y + transform.y / 16) + 'em' + })); + } + + return [{ + tag: 'svg', + attributes: attributes, + children: children + }]; +}; + +var asSymbol = function (_ref) { + var prefix = _ref.prefix, + iconName = _ref.iconName, + children = _ref.children, + attributes = _ref.attributes, + symbol = _ref.symbol; + + var id = symbol === true ? prefix + '-' + config.familyPrefix + '-' + iconName : symbol; + + return [{ + tag: 'svg', + attributes: { + style: 'display: none;' + }, + children: [{ + tag: 'symbol', + attributes: _extends({}, attributes, { id: id }), + children: children + }] + }]; +}; + +function makeInlineSvgAbstract(params) { + var _params$icons = params.icons, + main = _params$icons.main, + mask = _params$icons.mask, + prefix = params.prefix, + iconName = params.iconName, + transform = params.transform, + symbol = params.symbol, + title = params.title, + extra = params.extra, + _params$watchable = params.watchable, + watchable = _params$watchable === undefined ? false : _params$watchable; + + var _ref = mask.found ? mask : main, + width = _ref.width, + height = _ref.height; + + var widthClass = 'fa-w-' + Math.ceil(width / height * 16); + var attrClass = [config.replacementClass, iconName ? config.familyPrefix + '-' + iconName : '', widthClass].filter(function (c) { + return extra.classes.indexOf(c) === -1; + }).concat(extra.classes).join(' '); + + var content = { + children: [], + attributes: _extends({}, extra.attributes, { + 'data-prefix': prefix, + 'data-icon': iconName, + 'class': attrClass, + 'role': 'img', + 'xmlns': 'http://www.w3.org/2000/svg', + 'viewBox': '0 0 ' + width + ' ' + height + }) + }; + + if (watchable) { + content.attributes[DATA_FA_I2SVG] = ''; + } + + if (title) content.children.push({ tag: 'title', attributes: { id: content.attributes['aria-labelledby'] || 'title-' + nextUniqueId() }, children: [title] }); + + var args = _extends({}, content, { + prefix: prefix, + iconName: iconName, + main: main, + mask: mask, + transform: transform, + symbol: symbol, + styles: extra.styles + }); + + var _ref2 = mask.found && main.found ? makeIconMasking(args) : makeIconStandard(args), + children = _ref2.children, + attributes = _ref2.attributes; + + args.children = children; + args.attributes = attributes; + + if (symbol) { + return asSymbol(args); + } else { + return asIcon(args); + } +} + +function makeLayersTextAbstract(params) { + var content = params.content, + width = params.width, + height = params.height, + transform = params.transform, + title = params.title, + extra = params.extra, + _params$watchable2 = params.watchable, + watchable = _params$watchable2 === undefined ? false : _params$watchable2; + + + var attributes = _extends({}, extra.attributes, title ? { 'title': title } : {}, { + 'class': extra.classes.join(' ') + }); + + if (watchable) { + attributes[DATA_FA_I2SVG] = ''; + } + + var styles = _extends({}, extra.styles); + + if (transformIsMeaningful(transform)) { + styles['transform'] = transformForCss({ transform: transform, startCentered: true, width: width, height: height }); + styles['-webkit-transform'] = styles['transform']; + } + + var styleString = joinStyles(styles); + + if (styleString.length > 0) { + attributes['style'] = styleString; + } + + var val = []; + + val.push({ + tag: 'span', + attributes: attributes, + children: [content] + }); + + if (title) { + val.push({ tag: 'span', attributes: { class: 'sr-only' }, children: [title] }); + } + + return val; +} + +function makeLayersCounterAbstract(params) { + var content = params.content, + title = params.title, + extra = params.extra; + + + var attributes = _extends({}, extra.attributes, title ? { 'title': title } : {}, { + 'class': extra.classes.join(' ') + }); + + var styleString = joinStyles(extra.styles); + + if (styleString.length > 0) { + attributes['style'] = styleString; + } + + var val = []; + + val.push({ + tag: 'span', + attributes: attributes, + children: [content] + }); + + if (title) { + val.push({ tag: 'span', attributes: { class: 'sr-only' }, children: [title] }); + } + + return val; +} + +var noop$2 = function noop() {}; +var p = config.measurePerformance && PERFORMANCE && PERFORMANCE.mark && PERFORMANCE.measure ? PERFORMANCE : { mark: noop$2, measure: noop$2 }; +var preamble = 'FA "5.1.1"'; + +var begin = function begin(name) { + p.mark(preamble + ' ' + name + ' begins'); + return function () { + return end(name); + }; +}; + +var end = function end(name) { + p.mark(preamble + ' ' + name + ' ends'); + p.measure(preamble + ' ' + name, preamble + ' ' + name + ' begins', preamble + ' ' + name + ' ends'); +}; + +var perf = { begin: begin, end: end }; + +'use strict'; + +/** + * Internal helper to bind a function known to have 4 arguments + * to a given context. + */ +var bindInternal4 = function bindInternal4 (func, thisContext) { + return function (a, b, c, d) { + return func.call(thisContext, a, b, c, d); + }; +}; + +'use strict'; + + + +/** + * # Reduce + * + * A fast object `.reduce()` implementation. + * + * @param {Object} subject The object to reduce over. + * @param {Function} fn The reducer function. + * @param {mixed} initialValue The initial value for the reducer, defaults to subject[0]. + * @param {Object} thisContext The context for the reducer. + * @return {mixed} The final result. + */ +var reduce = function fastReduceObject (subject, fn, initialValue, thisContext) { + var keys = Object.keys(subject), + length = keys.length, + iterator = thisContext !== undefined ? bindInternal4(fn, thisContext) : fn, + i, key, result; + + if (initialValue === undefined) { + i = 1; + result = subject[keys[0]]; + } + else { + i = 0; + result = initialValue; + } + + for (; i < length; i++) { + key = keys[i]; + result = iterator(result, subject[key], key, subject); + } + + return result; +}; + +var styles$2 = namespace.styles; +var shims = namespace.shims; + + +var _byUnicode = {}; +var _byLigature = {}; +var _byOldName = {}; + +var build = function build() { + var lookup = function lookup(reducer) { + return reduce(styles$2, function (o, style, prefix) { + o[prefix] = reduce(style, reducer, {}); + return o; + }, {}); + }; + + _byUnicode = lookup(function (acc, icon, iconName) { + acc[icon[3]] = iconName; + + return acc; + }); + + _byLigature = lookup(function (acc, icon, iconName) { + var ligatures = icon[2]; + + acc[iconName] = iconName; + + ligatures.forEach(function (ligature) { + acc[ligature] = iconName; + }); + + return acc; + }); + + var hasRegular = 'far' in styles$2; + + _byOldName = reduce(shims, function (acc, shim) { + var oldName = shim[0]; + var prefix = shim[1]; + var iconName = shim[2]; + + if (prefix === 'far' && !hasRegular) { + prefix = 'fas'; + } + + acc[oldName] = { prefix: prefix, iconName: iconName }; + + return acc; + }, {}); +}; + +build(); + +function byUnicode(prefix, unicode) { + return _byUnicode[prefix][unicode]; +} + +function byLigature(prefix, ligature) { + return _byLigature[prefix][ligature]; +} + +function byOldName(name) { + return _byOldName[name] || { prefix: null, iconName: null }; +} + +var styles$1 = namespace.styles; + + +var emptyCanonicalIcon = function emptyCanonicalIcon() { + return { prefix: null, iconName: null, rest: [] }; +}; + +function getCanonicalIcon(values) { + return values.reduce(function (acc, cls) { + var iconName = getIconName(config.familyPrefix, cls); + + if (styles$1[cls]) { + acc.prefix = cls; + } else if (iconName) { + var shim = acc.prefix === 'fa' ? byOldName(iconName) : {}; + + acc.iconName = shim.iconName || iconName; + acc.prefix = shim.prefix || acc.prefix; + } else if (cls !== config.replacementClass && cls.indexOf('fa-w-') !== 0) { + acc.rest.push(cls); + } + + return acc; + }, emptyCanonicalIcon()); +} + +function iconFromMapping(mapping, prefix, iconName) { + if (mapping && mapping[prefix] && mapping[prefix][iconName]) { + return { + prefix: prefix, + iconName: iconName, + icon: mapping[prefix][iconName] + }; + } +} + +function toHtml(abstractNodes) { + var tag = abstractNodes.tag, + _abstractNodes$attrib = abstractNodes.attributes, + attributes = _abstractNodes$attrib === undefined ? {} : _abstractNodes$attrib, + _abstractNodes$childr = abstractNodes.children, + children = _abstractNodes$childr === undefined ? [] : _abstractNodes$childr; + + + if (typeof abstractNodes === 'string') { + return htmlEscape(abstractNodes); + } else { + return '<' + tag + ' ' + joinAttributes(attributes) + '>' + children.map(toHtml).join('') + ''; + } +} + +var noop$1 = function noop() {}; + +function isWatched(node) { + var i2svg = node.getAttribute ? node.getAttribute(DATA_FA_I2SVG) : null; + + return typeof i2svg === 'string'; +} + +function getMutator() { + if (config.autoReplaceSvg === true) { + return mutators.replace; + } + + var mutator = mutators[config.autoReplaceSvg]; + + return mutator || mutators.replace; +} + +var mutators = { + replace: function replace(mutation) { + var node = mutation[0]; + var abstract = mutation[1]; + var newOuterHTML = abstract.map(function (a) { + return toHtml(a); + }).join('\n'); + + if (node.parentNode && node.outerHTML) { + node.outerHTML = newOuterHTML + (config.keepOriginalSource && node.tagName.toLowerCase() !== 'svg' ? '' : ''); + } else if (node.parentNode) { + var newNode = document.createElement('span'); + node.parentNode.replaceChild(newNode, node); + newNode.outerHTML = newOuterHTML; + } + }, + nest: function nest(mutation) { + var node = mutation[0]; + var abstract = mutation[1]; + + // If we already have a replaced node we do not want to continue nesting within it. + // Short-circuit to the standard replacement + if (~classArray(node).indexOf(config.replacementClass)) { + return mutators.replace(mutation); + } + + var forSvg = new RegExp(config.familyPrefix + '-.*'); + + delete abstract[0].attributes.style; + + var splitClasses = abstract[0].attributes.class.split(' ').reduce(function (acc, cls) { + if (cls === config.replacementClass || cls.match(forSvg)) { + acc.toSvg.push(cls); + } else { + acc.toNode.push(cls); + } + + return acc; + }, { toNode: [], toSvg: [] }); + + abstract[0].attributes.class = splitClasses.toSvg.join(' '); + + var newInnerHTML = abstract.map(function (a) { + return toHtml(a); + }).join('\n'); + node.setAttribute('class', splitClasses.toNode.join(' ')); + node.setAttribute(DATA_FA_I2SVG, ''); + node.innerHTML = newInnerHTML; + } +}; + +function perform(mutations, callback) { + var callbackFunction = typeof callback === 'function' ? callback : noop$1; + + if (mutations.length === 0) { + callbackFunction(); + } else { + var frame = WINDOW.requestAnimationFrame || function (op) { + return op(); + }; + + frame(function () { + var mutator = getMutator(); + var mark = perf.begin('mutate'); + + mutations.map(mutator); + + mark(); + + callbackFunction(); + }); + } +} + +var disabled = false; + +function disableObservation(operation) { + disabled = true; + operation(); + disabled = false; +} + +var mo = null; + +function observe(options) { + if (!MUTATION_OBSERVER) { + return; + } + + if (!config.observeMutations) { + return; + } + + var treeCallback = options.treeCallback, + nodeCallback = options.nodeCallback, + pseudoElementsCallback = options.pseudoElementsCallback, + _options$observeMutat = options.observeMutationsRoot, + observeMutationsRoot = _options$observeMutat === undefined ? DOCUMENT.body : _options$observeMutat; + + + mo = new MUTATION_OBSERVER(function (objects) { + if (disabled) return; + + toArray(objects).forEach(function (mutationRecord) { + if (mutationRecord.type === 'childList' && mutationRecord.addedNodes.length > 0 && !isWatched(mutationRecord.addedNodes[0])) { + if (config.searchPseudoElements) { + pseudoElementsCallback(mutationRecord.target); + } + + treeCallback(mutationRecord.target); + } + + if (mutationRecord.type === 'attributes' && mutationRecord.target.parentNode && config.searchPseudoElements) { + pseudoElementsCallback(mutationRecord.target.parentNode); + } + + if (mutationRecord.type === 'attributes' && isWatched(mutationRecord.target) && ~ATTRIBUTES_WATCHED_FOR_MUTATION.indexOf(mutationRecord.attributeName)) { + if (mutationRecord.attributeName === 'class') { + var _getCanonicalIcon = getCanonicalIcon(classArray(mutationRecord.target)), + prefix = _getCanonicalIcon.prefix, + iconName = _getCanonicalIcon.iconName; + + if (prefix) mutationRecord.target.setAttribute('data-prefix', prefix); + if (iconName) mutationRecord.target.setAttribute('data-icon', iconName); + } else { + nodeCallback(mutationRecord.target); + } + } + }); + }); + + if (!IS_DOM) return; + + mo.observe(observeMutationsRoot, { + childList: true, attributes: true, characterData: true, subtree: true + }); +} + +function disconnect() { + if (!mo) return; + + mo.disconnect(); +} + +var styleParser = function (node) { + var style = node.getAttribute('style'); + + var val = []; + + if (style) { + val = style.split(';').reduce(function (acc, style) { + var styles = style.split(':'); + var prop = styles[0]; + var value = styles.slice(1); + + if (prop && value.length > 0) { + acc[prop] = value.join(':').trim(); + } + + return acc; + }, {}); + } + + return val; +}; + +function toHex(unicode) { + var result = ''; + + for (var i = 0; i < unicode.length; i++) { + var hex = unicode.charCodeAt(i).toString(16); + result += ('000' + hex).slice(-4); + } + + return result; +} + +var classParser = function (node) { + var existingPrefix = node.getAttribute('data-prefix'); + var existingIconName = node.getAttribute('data-icon'); + var innerText = node.innerText !== undefined ? node.innerText.trim() : ''; + + var val = getCanonicalIcon(classArray(node)); + + if (existingPrefix && existingIconName) { + val.prefix = existingPrefix; + val.iconName = existingIconName; + } + + if (val.prefix && innerText.length > 1) { + val.iconName = byLigature(val.prefix, node.innerText); + } else if (val.prefix && innerText.length === 1) { + val.iconName = byUnicode(val.prefix, toHex(node.innerText)); + } + + return val; +}; + +var parseTransformString = function parseTransformString(transformString) { + var transform = { + size: 16, + x: 0, + y: 0, + flipX: false, + flipY: false, + rotate: 0 + }; + + if (!transformString) { + return transform; + } else { + return transformString.toLowerCase().split(' ').reduce(function (acc, n) { + var parts = n.toLowerCase().split('-'); + var first = parts[0]; + var rest = parts.slice(1).join('-'); + + if (first && rest === 'h') { + acc.flipX = true; + return acc; + } + + if (first && rest === 'v') { + acc.flipY = true; + return acc; + } + + rest = parseFloat(rest); + + if (isNaN(rest)) { + return acc; + } + + switch (first) { + case 'grow': + acc.size = acc.size + rest; + break; + case 'shrink': + acc.size = acc.size - rest; + break; + case 'left': + acc.x = acc.x - rest; + break; + case 'right': + acc.x = acc.x + rest; + break; + case 'up': + acc.y = acc.y - rest; + break; + case 'down': + acc.y = acc.y + rest; + break; + case 'rotate': + acc.rotate = acc.rotate + rest; + break; + } + + return acc; + }, transform); + } +}; + +var transformParser = function (node) { + return parseTransformString(node.getAttribute('data-fa-transform')); +}; + +var symbolParser = function (node) { + var symbol = node.getAttribute('data-fa-symbol'); + + return symbol === null ? false : symbol === '' ? true : symbol; +}; + +var attributesParser = function (node) { + var extraAttributes = toArray(node.attributes).reduce(function (acc, attr) { + if (acc.name !== 'class' && acc.name !== 'style') { + acc[attr.name] = attr.value; + } + return acc; + }, {}); + + var title = node.getAttribute('title'); + + if (config.autoA11y) { + if (title) { + extraAttributes['aria-labelledby'] = config.replacementClass + '-title-' + nextUniqueId(); + } else { + extraAttributes['aria-hidden'] = 'true'; + } + } + + return extraAttributes; +}; + +var maskParser = function (node) { + var mask = node.getAttribute('data-fa-mask'); + + if (!mask) { + return emptyCanonicalIcon(); + } else { + return getCanonicalIcon(mask.split(' ').map(function (i) { + return i.trim(); + })); + } +}; + +var blankMeta = { + iconName: null, + title: null, + prefix: null, + transform: meaninglessTransform, + symbol: false, + mask: null, + extra: { classes: [], styles: {}, attributes: {} } +}; + +function parseMeta(node) { + var _classParser = classParser(node), + iconName = _classParser.iconName, + prefix = _classParser.prefix, + extraClasses = _classParser.rest; + + var extraStyles = styleParser(node); + var transform = transformParser(node); + var symbol = symbolParser(node); + var extraAttributes = attributesParser(node); + var mask = maskParser(node); + + return { + iconName: iconName, + title: node.getAttribute('title'), + prefix: prefix, + transform: transform, + symbol: symbol, + mask: mask, + extra: { + classes: extraClasses, + styles: extraStyles, + attributes: extraAttributes + } + }; +} + +function MissingIcon(error) { + this.name = 'MissingIcon'; + this.message = error || 'Icon unavailable'; + this.stack = new Error().stack; +} + +MissingIcon.prototype = Object.create(Error.prototype); +MissingIcon.prototype.constructor = MissingIcon; + +var FILL = { fill: 'currentColor' }; +var ANIMATION_BASE = { + attributeType: 'XML', + repeatCount: 'indefinite', + dur: '2s' +}; +var RING = { + tag: 'path', + attributes: _extends({}, FILL, { + d: 'M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z' + }) +}; +var OPACITY_ANIMATE = _extends({}, ANIMATION_BASE, { + attributeName: 'opacity' +}); +var DOT = { + tag: 'circle', + attributes: _extends({}, FILL, { + cx: '256', + cy: '364', + r: '28' + }), + children: [{ tag: 'animate', attributes: _extends({}, ANIMATION_BASE, { attributeName: 'r', values: '28;14;28;28;14;28;' }) }, { tag: 'animate', attributes: _extends({}, OPACITY_ANIMATE, { values: '1;0;1;1;0;1;' }) }] +}; +var QUESTION = { + tag: 'path', + attributes: _extends({}, FILL, { + opacity: '1', + d: 'M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z' + }), + children: [{ tag: 'animate', attributes: _extends({}, OPACITY_ANIMATE, { values: '1;0;0;0;0;1;' }) }] +}; +var EXCLAMATION = { + tag: 'path', + attributes: _extends({}, FILL, { + opacity: '0', + d: 'M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z' + }), + children: [{ tag: 'animate', attributes: _extends({}, OPACITY_ANIMATE, { values: '0;0;1;1;0;0;' }) }] +}; + +var missing = { tag: 'g', children: [RING, DOT, QUESTION, EXCLAMATION] }; + +var styles = namespace.styles; + +var LAYERS_TEXT_CLASSNAME = 'fa-layers-text'; +var FONT_FAMILY_PATTERN = /Font Awesome 5 (Solid|Regular|Light|Brands|Free|Pro)/; +var STYLE_TO_PREFIX = { + 'Solid': 'fas', + 'Regular': 'far', + 'Light': 'fal', + 'Brands': 'fab' +}; +var FONT_WEIGHT_TO_PREFIX = { + '900': 'fas', + '400': 'far', + '300': 'fal' +}; + +function findIcon(iconName, prefix) { + var val = { + found: false, + width: 512, + height: 512, + icon: missing + }; + + if (iconName && prefix && styles[prefix] && styles[prefix][iconName]) { + var icon = styles[prefix][iconName]; + var width = icon[0]; + var height = icon[1]; + var vectorData = icon.slice(4); + + val = { + found: true, + width: width, + height: height, + icon: { tag: 'path', attributes: { fill: 'currentColor', d: vectorData[0] } } + }; + } else if (iconName && prefix && !config.showMissingIcons) { + throw new MissingIcon('Icon is missing for prefix ' + prefix + ' with icon name ' + iconName); + } + + return val; +} + +function generateSvgReplacementMutation(node, nodeMeta) { + var iconName = nodeMeta.iconName, + title = nodeMeta.title, + prefix = nodeMeta.prefix, + transform = nodeMeta.transform, + symbol = nodeMeta.symbol, + mask = nodeMeta.mask, + extra = nodeMeta.extra; + + + return [node, makeInlineSvgAbstract({ + icons: { + main: findIcon(iconName, prefix), + mask: findIcon(mask.iconName, mask.prefix) + }, + prefix: prefix, + iconName: iconName, + transform: transform, + symbol: symbol, + mask: mask, + title: title, + extra: extra, + watchable: true + })]; +} + +function generateLayersText(node, nodeMeta) { + var title = nodeMeta.title, + transform = nodeMeta.transform, + extra = nodeMeta.extra; + + + var width = null; + var height = null; + + if (IS_IE) { + var computedFontSize = parseInt(getComputedStyle(node).fontSize, 10); + var boundingClientRect = node.getBoundingClientRect(); + width = boundingClientRect.width / computedFontSize; + height = boundingClientRect.height / computedFontSize; + } + + if (config.autoA11y && !title) { + extra.attributes['aria-hidden'] = 'true'; + } + + return [node, makeLayersTextAbstract({ + content: node.innerHTML, + width: width, + height: height, + transform: transform, + title: title, + extra: extra, + watchable: true + })]; +} + +function generateMutation(node) { + var nodeMeta = parseMeta(node); + + if (~nodeMeta.extra.classes.indexOf(LAYERS_TEXT_CLASSNAME)) { + return generateLayersText(node, nodeMeta); + } else { + return generateSvgReplacementMutation(node, nodeMeta); + } +} + +function searchPseudoElements(root) { + if (!IS_DOM) return; + + var end = perf.begin('searchPseudoElements'); + + disableObservation(function () { + toArray(root.querySelectorAll('*')).filter(function (n) { + return n.parentNode !== document.head && !~TAGNAMES_TO_SKIP_FOR_PSEUDOELEMENTS.indexOf(n.tagName.toUpperCase()) && !n.getAttribute(DATA_FA_PSEUDO_ELEMENT) && (!n.parentNode || n.parentNode.tagName !== 'svg'); + }).forEach(function (node) { + [':before', ':after'].forEach(function (pos) { + var children = toArray(node.children); + var alreadyProcessedPseudoElement = children.filter(function (c) { + return c.getAttribute(DATA_FA_PSEUDO_ELEMENT) === pos; + })[0]; + + var styles = WINDOW.getComputedStyle(node, pos); + var fontFamily = styles.getPropertyValue('font-family').match(FONT_FAMILY_PATTERN); + var fontWeight = styles.getPropertyValue('font-weight'); + + if (alreadyProcessedPseudoElement && !fontFamily) { + // If we've already processed it but the current computed style does not result in a font-family, + // that probably means that a class name that was previously present to make the icon has been + // removed. So we now should delete the icon. + node.removeChild(alreadyProcessedPseudoElement); + } else if (fontFamily) { + var content = styles.getPropertyValue('content'); + var prefix = ~['Light', 'Regular', 'Solid', 'Brands'].indexOf(fontFamily[1]) ? STYLE_TO_PREFIX[fontFamily[1]] : FONT_WEIGHT_TO_PREFIX[fontWeight]; + var iconName = byUnicode(prefix, toHex(content.length === 3 ? content.substr(1, 1) : content)); + // Only convert the pseudo element in this :before/:after position into an icon if we haven't + // already done so with the same prefix and iconName + if (!alreadyProcessedPseudoElement || alreadyProcessedPseudoElement.getAttribute(DATA_PREFIX) !== prefix || alreadyProcessedPseudoElement.getAttribute(DATA_ICON) !== iconName) { + if (alreadyProcessedPseudoElement) { + // Delete the old one, since we're replacing it with a new one + node.removeChild(alreadyProcessedPseudoElement); + } + + var extra = blankMeta.extra; + + extra.attributes[DATA_FA_PSEUDO_ELEMENT] = pos; + var abstract = makeInlineSvgAbstract(_extends({}, blankMeta, { + icons: { + main: findIcon(iconName, prefix), + mask: emptyCanonicalIcon() + }, + prefix: prefix, + iconName: iconName, + extra: extra, + watchable: true + })); + + var element = DOCUMENT.createElement('svg'); + + if (pos === ':before') { + node.insertBefore(element, node.firstChild); + } else { + node.appendChild(element); + } + + element.outerHTML = abstract.map(function (a) { + return toHtml(a); + }).join('\n'); + } + } + }); + }); + }); + + end(); +} + +function onTree(root) { + var callback = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + + if (!IS_DOM) return; + + var htmlClassList = DOCUMENT.documentElement.classList; + var hclAdd = function hclAdd(suffix) { + return htmlClassList.add(HTML_CLASS_I2SVG_BASE_CLASS + '-' + suffix); + }; + var hclRemove = function hclRemove(suffix) { + return htmlClassList.remove(HTML_CLASS_I2SVG_BASE_CLASS + '-' + suffix); + }; + var prefixes = Object.keys(styles); + var prefixesDomQuery = ['.' + LAYERS_TEXT_CLASSNAME + ':not([' + DATA_FA_I2SVG + '])'].concat(prefixes.map(function (p) { + return '.' + p + ':not([' + DATA_FA_I2SVG + '])'; + })).join(', '); + + if (prefixesDomQuery.length === 0) { + return; + } + + var candidates = toArray(root.querySelectorAll(prefixesDomQuery)); + + if (candidates.length > 0) { + hclAdd('pending'); + hclRemove('complete'); + } else { + return; + } + + var mark = perf.begin('onTree'); + + var mutations = candidates.reduce(function (acc, node) { + try { + var mutation = generateMutation(node); + + if (mutation) { + acc.push(mutation); + } + } catch (e) { + if (!PRODUCTION) { + if (e instanceof MissingIcon) { + console.error(e); + } + } + } + + return acc; + }, []); + + mark(); + + perform(mutations, function () { + hclAdd('active'); + hclAdd('complete'); + hclRemove('pending'); + + if (typeof callback === 'function') callback(); + }); +} + +function onNode(node) { + var callback = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + + var mutation = generateMutation(node); + + if (mutation) { + perform([mutation], callback); + } +} + +var baseStyles = "svg:not(:root).svg-inline--fa {\n overflow: visible; }\n\n.svg-inline--fa {\n display: inline-block;\n font-size: inherit;\n height: 1em;\n overflow: visible;\n vertical-align: -.125em; }\n .svg-inline--fa.fa-lg {\n vertical-align: -.225em; }\n .svg-inline--fa.fa-w-1 {\n width: 0.0625em; }\n .svg-inline--fa.fa-w-2 {\n width: 0.125em; }\n .svg-inline--fa.fa-w-3 {\n width: 0.1875em; }\n .svg-inline--fa.fa-w-4 {\n width: 0.25em; }\n .svg-inline--fa.fa-w-5 {\n width: 0.3125em; }\n .svg-inline--fa.fa-w-6 {\n width: 0.375em; }\n .svg-inline--fa.fa-w-7 {\n width: 0.4375em; }\n .svg-inline--fa.fa-w-8 {\n width: 0.5em; }\n .svg-inline--fa.fa-w-9 {\n width: 0.5625em; }\n .svg-inline--fa.fa-w-10 {\n width: 0.625em; }\n .svg-inline--fa.fa-w-11 {\n width: 0.6875em; }\n .svg-inline--fa.fa-w-12 {\n width: 0.75em; }\n .svg-inline--fa.fa-w-13 {\n width: 0.8125em; }\n .svg-inline--fa.fa-w-14 {\n width: 0.875em; }\n .svg-inline--fa.fa-w-15 {\n width: 0.9375em; }\n .svg-inline--fa.fa-w-16 {\n width: 1em; }\n .svg-inline--fa.fa-w-17 {\n width: 1.0625em; }\n .svg-inline--fa.fa-w-18 {\n width: 1.125em; }\n .svg-inline--fa.fa-w-19 {\n width: 1.1875em; }\n .svg-inline--fa.fa-w-20 {\n width: 1.25em; }\n .svg-inline--fa.fa-pull-left {\n margin-right: .3em;\n width: auto; }\n .svg-inline--fa.fa-pull-right {\n margin-left: .3em;\n width: auto; }\n .svg-inline--fa.fa-border {\n height: 1.5em; }\n .svg-inline--fa.fa-li {\n width: 2em; }\n .svg-inline--fa.fa-fw {\n width: 1.25em; }\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0; }\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -.125em;\n width: 1em; }\n .fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center; }\n\n.fa-layers-text, .fa-layers-counter {\n display: inline-block;\n position: absolute;\n text-align: center; }\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center; }\n\n.fa-layers-counter {\n background-color: #ff253a;\n border-radius: 1em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #fff;\n height: 1.5em;\n line-height: 1;\n max-width: 5em;\n min-width: 1.5em;\n overflow: hidden;\n padding: .25em;\n right: 0;\n text-overflow: ellipsis;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right; }\n\n.fa-layers-bottom-right {\n bottom: 0;\n right: 0;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right; }\n\n.fa-layers-bottom-left {\n bottom: 0;\n left: 0;\n right: auto;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left; }\n\n.fa-layers-top-right {\n right: 0;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right; }\n\n.fa-layers-top-left {\n left: 0;\n right: auto;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top left;\n transform-origin: top left; }\n\n.fa-lg {\n font-size: 1.33333em;\n line-height: 0.75em;\n vertical-align: -.0667em; }\n\n.fa-xs {\n font-size: .75em; }\n\n.fa-sm {\n font-size: .875em; }\n\n.fa-1x {\n font-size: 1em; }\n\n.fa-2x {\n font-size: 2em; }\n\n.fa-3x {\n font-size: 3em; }\n\n.fa-4x {\n font-size: 4em; }\n\n.fa-5x {\n font-size: 5em; }\n\n.fa-6x {\n font-size: 6em; }\n\n.fa-7x {\n font-size: 7em; }\n\n.fa-8x {\n font-size: 8em; }\n\n.fa-9x {\n font-size: 9em; }\n\n.fa-10x {\n font-size: 10em; }\n\n.fa-fw {\n text-align: center;\n width: 1.25em; }\n\n.fa-ul {\n list-style-type: none;\n margin-left: 2.5em;\n padding-left: 0; }\n .fa-ul > li {\n position: relative; }\n\n.fa-li {\n left: -2em;\n position: absolute;\n text-align: center;\n width: 2em;\n line-height: inherit; }\n\n.fa-border {\n border: solid 0.08em #eee;\n border-radius: .1em;\n padding: .2em .25em .15em; }\n\n.fa-pull-left {\n float: left; }\n\n.fa-pull-right {\n float: right; }\n\n.fa.fa-pull-left,\n.fas.fa-pull-left,\n.far.fa-pull-left,\n.fal.fa-pull-left,\n.fab.fa-pull-left {\n margin-right: .3em; }\n\n.fa.fa-pull-right,\n.fas.fa-pull-right,\n.far.fa-pull-right,\n.fal.fa-pull-right,\n.fab.fa-pull-right {\n margin-left: .3em; }\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear; }\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8); }\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n.fa-rotate-90 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg); }\n\n.fa-rotate-180 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg); }\n\n.fa-rotate-270 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg); }\n\n.fa-flip-horizontal {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1); }\n\n.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1); }\n\n.fa-flip-horizontal.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1); }\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n -webkit-filter: none;\n filter: none; }\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n position: relative;\n width: 2em; }\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0; }\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1em; }\n\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2em; }\n\n.fa-inverse {\n color: #fff; }\n\n.sr-only {\n border: 0;\n clip: rect(0, 0, 0, 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px; }\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n clip: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n position: static;\n width: auto; }\n"; + +var css = function () { + var dfp = DEFAULT_FAMILY_PREFIX; + var drc = DEFAULT_REPLACEMENT_CLASS; + var fp = config.familyPrefix; + var rc = config.replacementClass; + var s = baseStyles; + + if (fp !== dfp || rc !== drc) { + var dPatt = new RegExp('\\.' + dfp + '\\-', 'g'); + var rPatt = new RegExp('\\.' + drc, 'g'); + + s = s.replace(dPatt, '.' + fp + '-').replace(rPatt, '.' + rc); + } + + return s; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var Library = function () { + function Library() { + classCallCheck(this, Library); + + this.definitions = {}; + } + + createClass(Library, [{ + key: 'add', + value: function add() { + var _this = this; + + for (var _len = arguments.length, definitions = Array(_len), _key = 0; _key < _len; _key++) { + definitions[_key] = arguments[_key]; + } + + var additions = definitions.reduce(this._pullDefinitions, {}); + + Object.keys(additions).forEach(function (key) { + _this.definitions[key] = _extends({}, _this.definitions[key] || {}, additions[key]); + define(key, additions[key]); + build(); + }); + } + }, { + key: 'reset', + value: function reset() { + this.definitions = {}; + } + }, { + key: '_pullDefinitions', + value: function _pullDefinitions(additions, definition) { + var normalized = definition.prefix && definition.iconName && definition.icon ? { 0: definition } : definition; + + Object.keys(normalized).map(function (key) { + var _normalized$key = normalized[key], + prefix = _normalized$key.prefix, + iconName = _normalized$key.iconName, + icon = _normalized$key.icon; + + + if (!additions[prefix]) additions[prefix] = {}; + + additions[prefix][iconName] = icon; + }); + + return additions; + } + }]); + return Library; +}(); + +function prepIcon(icon) { + var width = icon[0]; + var height = icon[1]; + var vectorData = icon.slice(4); + + return { + found: true, + width: width, + height: height, + icon: { tag: 'path', attributes: { fill: 'currentColor', d: vectorData[0] } } + }; +} + +function ensureCss() { + if (config.autoAddCss && !_cssInserted) { + insertCss(css()); + _cssInserted = true; + } +} + +function apiObject(val, abstractCreator) { + Object.defineProperty(val, 'abstract', { + get: abstractCreator + }); + + Object.defineProperty(val, 'html', { + get: function get() { + return val.abstract.map(function (a) { + return toHtml(a); + }); + } + }); + + Object.defineProperty(val, 'node', { + get: function get() { + if (!IS_DOM) return; + + var container = DOCUMENT.createElement('div'); + container.innerHTML = val.html; + return container.children; + } + }); + + return val; +} + +function findIconDefinition(params) { + var _params$prefix = params.prefix, + prefix = _params$prefix === undefined ? 'fa' : _params$prefix, + iconName = params.iconName; + + + if (!iconName) return; + + return iconFromMapping(library.definitions, prefix, iconName) || iconFromMapping(namespace.styles, prefix, iconName); +} + +function resolveIcons(next) { + return function (maybeIconDefinition) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + + var iconDefinition = (maybeIconDefinition || {}).icon ? maybeIconDefinition : findIconDefinition(maybeIconDefinition || {}); + + var mask = params.mask; + + + if (mask) { + mask = (mask || {}).icon ? mask : findIconDefinition(mask || {}); + } + + return next(iconDefinition, _extends({}, params, { mask: mask })); + }; +} + +var library = new Library(); + +var noAuto = function noAuto() { + config.autoReplaceSvg = false; + config.observeMutations = false; + + disconnect(); +}; + +var _cssInserted = false; + +var dom = { + i2svg: function i2svg() { + var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + + if (IS_DOM) { + ensureCss(); + + var _params$node = params.node, + node = _params$node === undefined ? DOCUMENT : _params$node, + _params$callback = params.callback, + callback = _params$callback === undefined ? function () {} : _params$callback; + + + if (config.searchPseudoElements) { + searchPseudoElements(node); + } + + onTree(node, callback); + } + }, + + css: css, + + insertCss: function insertCss$$1() { + if (!_cssInserted) { + insertCss(css()); + _cssInserted = true; + } + }, + + watch: function watch() { + var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var autoReplaceSvgRoot = params.autoReplaceSvgRoot, + observeMutationsRoot = params.observeMutationsRoot; + + + if (config.autoReplaceSvg === false) { + config.autoReplaceSvg = true; + } + + config.observeMutations = true; + + domready(function () { + autoReplace({ + autoReplaceSvgRoot: autoReplaceSvgRoot + }); + + observe({ + treeCallback: onTree, + nodeCallback: onNode, + pseudoElementsCallback: searchPseudoElements, + observeMutationsRoot: observeMutationsRoot + }); + }); + } +}; + +var parse = { + transform: function transform(transformString) { + return parseTransformString(transformString); + } +}; + +var icon = resolveIcons(function (iconDefinition) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _params$transform = params.transform, + transform = _params$transform === undefined ? meaninglessTransform : _params$transform, + _params$symbol = params.symbol, + symbol = _params$symbol === undefined ? false : _params$symbol, + _params$mask = params.mask, + mask = _params$mask === undefined ? null : _params$mask, + _params$title = params.title, + title = _params$title === undefined ? null : _params$title, + _params$classes = params.classes, + classes = _params$classes === undefined ? [] : _params$classes, + _params$attributes = params.attributes, + attributes = _params$attributes === undefined ? {} : _params$attributes, + _params$styles = params.styles, + styles = _params$styles === undefined ? {} : _params$styles; + + + if (!iconDefinition) return; + + var prefix = iconDefinition.prefix, + iconName = iconDefinition.iconName, + icon = iconDefinition.icon; + + + return apiObject(_extends({ type: 'icon' }, iconDefinition), function () { + ensureCss(); + + if (config.autoA11y) { + if (title) { + attributes['aria-labelledby'] = config.replacementClass + '-title-' + nextUniqueId(); + } else { + attributes['aria-hidden'] = 'true'; + } + } + + return makeInlineSvgAbstract({ + icons: { + main: prepIcon(icon), + mask: mask ? prepIcon(mask.icon) : { found: false, width: null, height: null, icon: {} } + }, + prefix: prefix, + iconName: iconName, + transform: _extends({}, meaninglessTransform, transform), + symbol: symbol, + title: title, + extra: { + attributes: attributes, + styles: styles, + classes: classes + } + }); + }); +}); + +var text = function text(content) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _params$transform2 = params.transform, + transform = _params$transform2 === undefined ? meaninglessTransform : _params$transform2, + _params$title2 = params.title, + title = _params$title2 === undefined ? null : _params$title2, + _params$classes2 = params.classes, + classes = _params$classes2 === undefined ? [] : _params$classes2, + _params$attributes2 = params.attributes, + attributes = _params$attributes2 === undefined ? {} : _params$attributes2, + _params$styles2 = params.styles, + styles = _params$styles2 === undefined ? {} : _params$styles2; + + + return apiObject({ type: 'text', content: content }, function () { + ensureCss(); + + return makeLayersTextAbstract({ + content: content, + transform: _extends({}, meaninglessTransform, transform), + title: title, + extra: { + attributes: attributes, + styles: styles, + classes: [config.familyPrefix + '-layers-text'].concat(toConsumableArray(classes)) + } + }); + }); +}; + +var counter = function counter(content) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _params$title3 = params.title, + title = _params$title3 === undefined ? null : _params$title3, + _params$classes3 = params.classes, + classes = _params$classes3 === undefined ? [] : _params$classes3, + _params$attributes3 = params.attributes, + attributes = _params$attributes3 === undefined ? {} : _params$attributes3, + _params$styles3 = params.styles, + styles = _params$styles3 === undefined ? {} : _params$styles3; + + + return apiObject({ type: 'counter', content: content }, function () { + ensureCss(); + + return makeLayersCounterAbstract({ + content: content.toString(), + title: title, + extra: { + attributes: attributes, + styles: styles, + classes: [config.familyPrefix + '-layers-counter'].concat(toConsumableArray(classes)) + } + }); + }); +}; + +var layer = function layer(assembler) { + return apiObject({ type: 'layer' }, function () { + ensureCss(); + + var children = []; + + assembler(function (args) { + Array.isArray(args) ? args.map(function (a) { + children = children.concat(a.abstract); + }) : children = children.concat(args.abstract); + }); + + return [{ + tag: 'span', + attributes: { class: config.familyPrefix + '-layers' }, + children: children + }]; + }); +}; + +var api = { + noAuto: noAuto, + config: config, + dom: dom, + library: library, + parse: parse, + findIconDefinition: findIconDefinition, + icon: icon, + text: text, + counter: counter, + layer: layer, + toHtml: toHtml +}; + +var autoReplace = function autoReplace() { + var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var _params$autoReplaceSv = params.autoReplaceSvgRoot, + autoReplaceSvgRoot = _params$autoReplaceSv === undefined ? DOCUMENT : _params$autoReplaceSv; + + + if (Object.keys(namespace.styles).length > 0 && IS_DOM && config.autoReplaceSvg) api.dom.i2svg({ node: autoReplaceSvgRoot }); +}; + +export { icon, noAuto, config, toHtml, layer, text, counter, library, dom, parse, findIconDefinition }; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/index.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/index.js new file mode 100644 index 0000000000..c3ac763f6b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/index.js @@ -0,0 +1,1948 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : + typeof define === 'function' && define.amd ? define(['exports'], factory) : + (factory((global['fontawesome-svg-core'] = {}))); +}(this, (function (exports) { 'use strict'; + +var noop = function noop() {}; + +var _WINDOW = {}; +var _DOCUMENT = {}; +var _MUTATION_OBSERVER$1 = null; +var _PERFORMANCE = { mark: noop, measure: noop }; + +try { + if (typeof window !== 'undefined') _WINDOW = window; + if (typeof document !== 'undefined') _DOCUMENT = document; + if (typeof MutationObserver !== 'undefined') _MUTATION_OBSERVER$1 = MutationObserver; + if (typeof performance !== 'undefined') _PERFORMANCE = performance; +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; +var DOCUMENT = _DOCUMENT; +var MUTATION_OBSERVER = _MUTATION_OBSERVER$1; +var PERFORMANCE = _PERFORMANCE; + +var IS_DOM = !!DOCUMENT.documentElement && !!DOCUMENT.head && typeof DOCUMENT.addEventListener === 'function' && typeof DOCUMENT.createElement === 'function'; +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; +var UNITS_IN_GRID = 16; +var DEFAULT_FAMILY_PREFIX = 'fa'; +var DEFAULT_REPLACEMENT_CLASS = 'svg-inline--fa'; +var DATA_FA_I2SVG = 'data-fa-i2svg'; +var DATA_FA_PSEUDO_ELEMENT = 'data-fa-pseudo-element'; +var DATA_PREFIX = 'data-prefix'; +var DATA_ICON = 'data-icon'; +var HTML_CLASS_I2SVG_BASE_CLASS = 'fontawesome-i2svg'; +var TAGNAMES_TO_SKIP_FOR_PSEUDOELEMENTS = ['HTML', 'HEAD', 'STYLE', 'SCRIPT']; +var PRODUCTION = function () { + try { + return process.env.NODE_ENV === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + +var ATTRIBUTES_WATCHED_FOR_MUTATION = ['class', 'data-prefix', 'data-icon', 'data-fa-transform', 'data-fa-mask']; + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +var classCallCheck = function (instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function"); + } +}; + +var createClass = function () { + function defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } + } + + return function (Constructor, protoProps, staticProps) { + if (protoProps) defineProperties(Constructor.prototype, protoProps); + if (staticProps) defineProperties(Constructor, staticProps); + return Constructor; + }; +}(); + + + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + + + +var slicedToArray = function () { + function sliceIterator(arr, i) { + var _arr = []; + var _n = true; + var _d = false; + var _e = undefined; + + try { + for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { + _arr.push(_s.value); + + if (i && _arr.length === i) break; + } + } catch (err) { + _d = true; + _e = err; + } finally { + try { + if (!_n && _i["return"]) _i["return"](); + } finally { + if (_d) throw _e; + } + } + + return _arr; + } + + return function (arr, i) { + if (Array.isArray(arr)) { + return arr; + } else if (Symbol.iterator in Object(arr)) { + return sliceIterator(arr, i); + } else { + throw new TypeError("Invalid attempt to destructure non-iterable instance"); + } + }; +}(); + +var toConsumableArray = function (arr) { + if (Array.isArray(arr)) { + for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) arr2[i] = arr[i]; + + return arr2; + } else { + return Array.from(arr); + } +}; + +var initial = WINDOW.FontAwesomeConfig || {}; + +function getAttrConfig(attr) { + var element = DOCUMENT.querySelector('script[' + attr + ']'); + + if (element) { + return element.getAttribute(attr); + } +} + +function coerce(val) { + // Getting an empty string will occur if the attribute is set on the HTML tag but without a value + // We'll assume that this is an indication that it should be toggled to true + // For example + if (val === '') return true; + if (val === 'false') return false; + if (val === 'true') return true; + return val; +} + +if (DOCUMENT && typeof DOCUMENT.querySelector === 'function') { + var attrs = [['data-family-prefix', 'familyPrefix'], ['data-replacement-class', 'replacementClass'], ['data-auto-replace-svg', 'autoReplaceSvg'], ['data-auto-add-css', 'autoAddCss'], ['data-auto-a11y', 'autoA11y'], ['data-search-pseudo-elements', 'searchPseudoElements'], ['data-observe-mutations', 'observeMutations'], ['data-keep-original-source', 'keepOriginalSource'], ['data-measure-performance', 'measurePerformance'], ['data-show-missing-icons', 'showMissingIcons']]; + + attrs.forEach(function (_ref) { + var _ref2 = slicedToArray(_ref, 2), + attr = _ref2[0], + key = _ref2[1]; + + var val = coerce(getAttrConfig(attr)); + + if (val !== undefined && val !== null) { + initial[key] = val; + } + }); +} + +var _default = _extends({ + familyPrefix: DEFAULT_FAMILY_PREFIX, + replacementClass: DEFAULT_REPLACEMENT_CLASS, + autoReplaceSvg: true, + autoAddCss: true, + autoA11y: true, + searchPseudoElements: false, + observeMutations: true, + keepOriginalSource: true, + measurePerformance: false, + showMissingIcons: true +}, initial); + +if (!_default.autoReplaceSvg) _default.observeMutations = false; + +var config = _extends({}, _default); + +WINDOW.FontAwesomeConfig = config; + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var functions = []; +var listener = function listener() { + DOCUMENT.removeEventListener('DOMContentLoaded', listener); + loaded = 1; + functions.map(function (fn) { + return fn(); + }); +}; + +var loaded = false; + +if (IS_DOM) { + loaded = (DOCUMENT.documentElement.doScroll ? /^loaded|^c/ : /^loaded|^i|^c/).test(DOCUMENT.readyState); + + if (!loaded) DOCUMENT.addEventListener('DOMContentLoaded', listener); +} + +var domready = function (fn) { + if (!IS_DOM) return; + loaded ? setTimeout(fn, 0) : functions.push(fn); +}; + +var d = UNITS_IN_GRID; + +var meaninglessTransform = { + size: 16, + x: 0, + y: 0, + rotate: 0, + flipX: false, + flipY: false +}; + +function isReserved(name) { + return ~RESERVED_CLASSES.indexOf(name); +} + + + +function insertCss(css) { + if (!css || !IS_DOM) { + return; + } + + var style = DOCUMENT.createElement('style'); + style.setAttribute('type', 'text/css'); + style.innerHTML = css; + + var headChildren = DOCUMENT.head.childNodes; + var beforeChild = null; + + for (var i = headChildren.length - 1; i > -1; i--) { + var child = headChildren[i]; + var tagName = (child.tagName || '').toUpperCase(); + if (['STYLE', 'LINK'].indexOf(tagName) > -1) { + beforeChild = child; + } + } + + DOCUMENT.head.insertBefore(style, beforeChild); + + return css; +} + +var _uniqueId = 0; + +function nextUniqueId() { + _uniqueId++; + + return _uniqueId; +} + +function toArray(obj) { + var array = []; + + for (var i = (obj || []).length >>> 0; i--;) { + array[i] = obj[i]; + } + + return array; +} + +function classArray(node) { + if (node.classList) { + return toArray(node.classList); + } else { + return (node.getAttribute('class') || '').split(' ').filter(function (i) { + return i; + }); + } +} + +function getIconName(familyPrefix, cls) { + var parts = cls.split('-'); + var prefix = parts[0]; + var iconName = parts.slice(1).join('-'); + + if (prefix === familyPrefix && iconName !== '' && !isReserved(iconName)) { + return iconName; + } else { + return null; + } +} + +function htmlEscape(str) { + return ('' + str).replace(/&/g, '&').replace(/"/g, '"').replace(/'/g, ''').replace(//g, '>'); +} + +function joinAttributes(attributes) { + return Object.keys(attributes || {}).reduce(function (acc, attributeName) { + return acc + (attributeName + '="' + htmlEscape(attributes[attributeName]) + '" '); + }, '').trim(); +} + +function joinStyles(styles) { + return Object.keys(styles || {}).reduce(function (acc, styleName) { + return acc + (styleName + ': ' + styles[styleName] + ';'); + }, ''); +} + +function transformIsMeaningful(transform) { + return transform.size !== meaninglessTransform.size || transform.x !== meaninglessTransform.x || transform.y !== meaninglessTransform.y || transform.rotate !== meaninglessTransform.rotate || transform.flipX || transform.flipY; +} + +function transformForSvg(_ref) { + var transform = _ref.transform, + containerWidth = _ref.containerWidth, + iconWidth = _ref.iconWidth; + + var outer = { + transform: 'translate(' + containerWidth / 2 + ' 256)' + }; + var innerTranslate = 'translate(' + transform.x * 32 + ', ' + transform.y * 32 + ') '; + var innerScale = 'scale(' + transform.size / 16 * (transform.flipX ? -1 : 1) + ', ' + transform.size / 16 * (transform.flipY ? -1 : 1) + ') '; + var innerRotate = 'rotate(' + transform.rotate + ' 0 0)'; + var inner = { + transform: innerTranslate + ' ' + innerScale + ' ' + innerRotate + }; + var path = { + transform: 'translate(' + iconWidth / 2 * -1 + ' -256)' + }; + return { + outer: outer, + inner: inner, + path: path + }; +} + +function transformForCss(_ref2) { + var transform = _ref2.transform, + _ref2$width = _ref2.width, + width = _ref2$width === undefined ? UNITS_IN_GRID : _ref2$width, + _ref2$height = _ref2.height, + height = _ref2$height === undefined ? UNITS_IN_GRID : _ref2$height, + _ref2$startCentered = _ref2.startCentered, + startCentered = _ref2$startCentered === undefined ? false : _ref2$startCentered; + + var val = ''; + + if (startCentered && IS_IE) { + val += 'translate(' + (transform.x / d - width / 2) + 'em, ' + (transform.y / d - height / 2) + 'em) '; + } else if (startCentered) { + val += 'translate(calc(-50% + ' + transform.x / d + 'em), calc(-50% + ' + transform.y / d + 'em)) '; + } else { + val += 'translate(' + transform.x / d + 'em, ' + transform.y / d + 'em) '; + } + + val += 'scale(' + transform.size / d * (transform.flipX ? -1 : 1) + ', ' + transform.size / d * (transform.flipY ? -1 : 1) + ') '; + val += 'rotate(' + transform.rotate + 'deg) '; + + return val; +} + +var ALL_SPACE = { + x: 0, + y: 0, + width: '100%', + height: '100%' +}; + +var makeIconMasking = function (_ref) { + var children = _ref.children, + attributes = _ref.attributes, + main = _ref.main, + mask = _ref.mask, + transform = _ref.transform; + var mainWidth = main.width, + mainPath = main.icon; + var maskWidth = mask.width, + maskPath = mask.icon; + + + var trans = transformForSvg({ transform: transform, containerWidth: maskWidth, iconWidth: mainWidth }); + + var maskRect = { + tag: 'rect', + attributes: _extends({}, ALL_SPACE, { + fill: 'white' + }) + }; + var maskInnerGroup = { + tag: 'g', + attributes: _extends({}, trans.inner), + children: [{ tag: 'path', attributes: _extends({}, mainPath.attributes, trans.path, { fill: 'black' }) }] + }; + var maskOuterGroup = { + tag: 'g', + attributes: _extends({}, trans.outer), + children: [maskInnerGroup] + }; + var maskId = 'mask-' + nextUniqueId(); + var clipId = 'clip-' + nextUniqueId(); + var maskTag = { + tag: 'mask', + attributes: _extends({}, ALL_SPACE, { + id: maskId, + maskUnits: 'userSpaceOnUse', + maskContentUnits: 'userSpaceOnUse' + }), + children: [maskRect, maskOuterGroup] + }; + var defs = { + tag: 'defs', + children: [{ tag: 'clipPath', attributes: { id: clipId }, children: [maskPath] }, maskTag] + }; + + children.push(defs, { tag: 'rect', attributes: _extends({ fill: 'currentColor', 'clip-path': 'url(#' + clipId + ')', mask: 'url(#' + maskId + ')' }, ALL_SPACE) }); + + return { + children: children, + attributes: attributes + }; +}; + +var makeIconStandard = function (_ref) { + var children = _ref.children, + attributes = _ref.attributes, + main = _ref.main, + transform = _ref.transform, + styles = _ref.styles; + + var styleString = joinStyles(styles); + + if (styleString.length > 0) { + attributes['style'] = styleString; + } + + if (transformIsMeaningful(transform)) { + var trans = transformForSvg({ transform: transform, containerWidth: main.width, iconWidth: main.width }); + children.push({ + tag: 'g', + attributes: _extends({}, trans.outer), + children: [{ + tag: 'g', + attributes: _extends({}, trans.inner), + children: [{ + tag: main.icon.tag, + children: main.icon.children, + attributes: _extends({}, main.icon.attributes, trans.path) + }] + }] + }); + } else { + children.push(main.icon); + } + + return { + children: children, + attributes: attributes + }; +}; + +var asIcon = function (_ref) { + var children = _ref.children, + main = _ref.main, + mask = _ref.mask, + attributes = _ref.attributes, + styles = _ref.styles, + transform = _ref.transform; + + if (transformIsMeaningful(transform) && main.found && !mask.found) { + var width = main.width, + height = main.height; + + var offset = { + x: width / height / 2, + y: 0.5 + }; + attributes['style'] = joinStyles(_extends({}, styles, { + 'transform-origin': offset.x + transform.x / 16 + 'em ' + (offset.y + transform.y / 16) + 'em' + })); + } + + return [{ + tag: 'svg', + attributes: attributes, + children: children + }]; +}; + +var asSymbol = function (_ref) { + var prefix = _ref.prefix, + iconName = _ref.iconName, + children = _ref.children, + attributes = _ref.attributes, + symbol = _ref.symbol; + + var id = symbol === true ? prefix + '-' + config.familyPrefix + '-' + iconName : symbol; + + return [{ + tag: 'svg', + attributes: { + style: 'display: none;' + }, + children: [{ + tag: 'symbol', + attributes: _extends({}, attributes, { id: id }), + children: children + }] + }]; +}; + +function makeInlineSvgAbstract(params) { + var _params$icons = params.icons, + main = _params$icons.main, + mask = _params$icons.mask, + prefix = params.prefix, + iconName = params.iconName, + transform = params.transform, + symbol = params.symbol, + title = params.title, + extra = params.extra, + _params$watchable = params.watchable, + watchable = _params$watchable === undefined ? false : _params$watchable; + + var _ref = mask.found ? mask : main, + width = _ref.width, + height = _ref.height; + + var widthClass = 'fa-w-' + Math.ceil(width / height * 16); + var attrClass = [config.replacementClass, iconName ? config.familyPrefix + '-' + iconName : '', widthClass].filter(function (c) { + return extra.classes.indexOf(c) === -1; + }).concat(extra.classes).join(' '); + + var content = { + children: [], + attributes: _extends({}, extra.attributes, { + 'data-prefix': prefix, + 'data-icon': iconName, + 'class': attrClass, + 'role': 'img', + 'xmlns': 'http://www.w3.org/2000/svg', + 'viewBox': '0 0 ' + width + ' ' + height + }) + }; + + if (watchable) { + content.attributes[DATA_FA_I2SVG] = ''; + } + + if (title) content.children.push({ tag: 'title', attributes: { id: content.attributes['aria-labelledby'] || 'title-' + nextUniqueId() }, children: [title] }); + + var args = _extends({}, content, { + prefix: prefix, + iconName: iconName, + main: main, + mask: mask, + transform: transform, + symbol: symbol, + styles: extra.styles + }); + + var _ref2 = mask.found && main.found ? makeIconMasking(args) : makeIconStandard(args), + children = _ref2.children, + attributes = _ref2.attributes; + + args.children = children; + args.attributes = attributes; + + if (symbol) { + return asSymbol(args); + } else { + return asIcon(args); + } +} + +function makeLayersTextAbstract(params) { + var content = params.content, + width = params.width, + height = params.height, + transform = params.transform, + title = params.title, + extra = params.extra, + _params$watchable2 = params.watchable, + watchable = _params$watchable2 === undefined ? false : _params$watchable2; + + + var attributes = _extends({}, extra.attributes, title ? { 'title': title } : {}, { + 'class': extra.classes.join(' ') + }); + + if (watchable) { + attributes[DATA_FA_I2SVG] = ''; + } + + var styles = _extends({}, extra.styles); + + if (transformIsMeaningful(transform)) { + styles['transform'] = transformForCss({ transform: transform, startCentered: true, width: width, height: height }); + styles['-webkit-transform'] = styles['transform']; + } + + var styleString = joinStyles(styles); + + if (styleString.length > 0) { + attributes['style'] = styleString; + } + + var val = []; + + val.push({ + tag: 'span', + attributes: attributes, + children: [content] + }); + + if (title) { + val.push({ tag: 'span', attributes: { class: 'sr-only' }, children: [title] }); + } + + return val; +} + +function makeLayersCounterAbstract(params) { + var content = params.content, + title = params.title, + extra = params.extra; + + + var attributes = _extends({}, extra.attributes, title ? { 'title': title } : {}, { + 'class': extra.classes.join(' ') + }); + + var styleString = joinStyles(extra.styles); + + if (styleString.length > 0) { + attributes['style'] = styleString; + } + + var val = []; + + val.push({ + tag: 'span', + attributes: attributes, + children: [content] + }); + + if (title) { + val.push({ tag: 'span', attributes: { class: 'sr-only' }, children: [title] }); + } + + return val; +} + +var noop$2 = function noop() {}; +var p = config.measurePerformance && PERFORMANCE && PERFORMANCE.mark && PERFORMANCE.measure ? PERFORMANCE : { mark: noop$2, measure: noop$2 }; +var preamble = 'FA "5.1.1"'; + +var begin = function begin(name) { + p.mark(preamble + ' ' + name + ' begins'); + return function () { + return end(name); + }; +}; + +var end = function end(name) { + p.mark(preamble + ' ' + name + ' ends'); + p.measure(preamble + ' ' + name, preamble + ' ' + name + ' begins', preamble + ' ' + name + ' ends'); +}; + +var perf = { begin: begin, end: end }; + +'use strict'; + +/** + * Internal helper to bind a function known to have 4 arguments + * to a given context. + */ +var bindInternal4 = function bindInternal4 (func, thisContext) { + return function (a, b, c, d) { + return func.call(thisContext, a, b, c, d); + }; +}; + +'use strict'; + + + +/** + * # Reduce + * + * A fast object `.reduce()` implementation. + * + * @param {Object} subject The object to reduce over. + * @param {Function} fn The reducer function. + * @param {mixed} initialValue The initial value for the reducer, defaults to subject[0]. + * @param {Object} thisContext The context for the reducer. + * @return {mixed} The final result. + */ +var reduce = function fastReduceObject (subject, fn, initialValue, thisContext) { + var keys = Object.keys(subject), + length = keys.length, + iterator = thisContext !== undefined ? bindInternal4(fn, thisContext) : fn, + i, key, result; + + if (initialValue === undefined) { + i = 1; + result = subject[keys[0]]; + } + else { + i = 0; + result = initialValue; + } + + for (; i < length; i++) { + key = keys[i]; + result = iterator(result, subject[key], key, subject); + } + + return result; +}; + +var styles$2 = namespace.styles; +var shims = namespace.shims; + + +var _byUnicode = {}; +var _byLigature = {}; +var _byOldName = {}; + +var build = function build() { + var lookup = function lookup(reducer) { + return reduce(styles$2, function (o, style, prefix) { + o[prefix] = reduce(style, reducer, {}); + return o; + }, {}); + }; + + _byUnicode = lookup(function (acc, icon, iconName) { + acc[icon[3]] = iconName; + + return acc; + }); + + _byLigature = lookup(function (acc, icon, iconName) { + var ligatures = icon[2]; + + acc[iconName] = iconName; + + ligatures.forEach(function (ligature) { + acc[ligature] = iconName; + }); + + return acc; + }); + + var hasRegular = 'far' in styles$2; + + _byOldName = reduce(shims, function (acc, shim) { + var oldName = shim[0]; + var prefix = shim[1]; + var iconName = shim[2]; + + if (prefix === 'far' && !hasRegular) { + prefix = 'fas'; + } + + acc[oldName] = { prefix: prefix, iconName: iconName }; + + return acc; + }, {}); +}; + +build(); + +function byUnicode(prefix, unicode) { + return _byUnicode[prefix][unicode]; +} + +function byLigature(prefix, ligature) { + return _byLigature[prefix][ligature]; +} + +function byOldName(name) { + return _byOldName[name] || { prefix: null, iconName: null }; +} + +var styles$1 = namespace.styles; + + +var emptyCanonicalIcon = function emptyCanonicalIcon() { + return { prefix: null, iconName: null, rest: [] }; +}; + +function getCanonicalIcon(values) { + return values.reduce(function (acc, cls) { + var iconName = getIconName(config.familyPrefix, cls); + + if (styles$1[cls]) { + acc.prefix = cls; + } else if (iconName) { + var shim = acc.prefix === 'fa' ? byOldName(iconName) : {}; + + acc.iconName = shim.iconName || iconName; + acc.prefix = shim.prefix || acc.prefix; + } else if (cls !== config.replacementClass && cls.indexOf('fa-w-') !== 0) { + acc.rest.push(cls); + } + + return acc; + }, emptyCanonicalIcon()); +} + +function iconFromMapping(mapping, prefix, iconName) { + if (mapping && mapping[prefix] && mapping[prefix][iconName]) { + return { + prefix: prefix, + iconName: iconName, + icon: mapping[prefix][iconName] + }; + } +} + +function toHtml(abstractNodes) { + var tag = abstractNodes.tag, + _abstractNodes$attrib = abstractNodes.attributes, + attributes = _abstractNodes$attrib === undefined ? {} : _abstractNodes$attrib, + _abstractNodes$childr = abstractNodes.children, + children = _abstractNodes$childr === undefined ? [] : _abstractNodes$childr; + + + if (typeof abstractNodes === 'string') { + return htmlEscape(abstractNodes); + } else { + return '<' + tag + ' ' + joinAttributes(attributes) + '>' + children.map(toHtml).join('') + ''; + } +} + +var noop$1 = function noop() {}; + +function isWatched(node) { + var i2svg = node.getAttribute ? node.getAttribute(DATA_FA_I2SVG) : null; + + return typeof i2svg === 'string'; +} + +function getMutator() { + if (config.autoReplaceSvg === true) { + return mutators.replace; + } + + var mutator = mutators[config.autoReplaceSvg]; + + return mutator || mutators.replace; +} + +var mutators = { + replace: function replace(mutation) { + var node = mutation[0]; + var abstract = mutation[1]; + var newOuterHTML = abstract.map(function (a) { + return toHtml(a); + }).join('\n'); + + if (node.parentNode && node.outerHTML) { + node.outerHTML = newOuterHTML + (config.keepOriginalSource && node.tagName.toLowerCase() !== 'svg' ? '' : ''); + } else if (node.parentNode) { + var newNode = document.createElement('span'); + node.parentNode.replaceChild(newNode, node); + newNode.outerHTML = newOuterHTML; + } + }, + nest: function nest(mutation) { + var node = mutation[0]; + var abstract = mutation[1]; + + // If we already have a replaced node we do not want to continue nesting within it. + // Short-circuit to the standard replacement + if (~classArray(node).indexOf(config.replacementClass)) { + return mutators.replace(mutation); + } + + var forSvg = new RegExp(config.familyPrefix + '-.*'); + + delete abstract[0].attributes.style; + + var splitClasses = abstract[0].attributes.class.split(' ').reduce(function (acc, cls) { + if (cls === config.replacementClass || cls.match(forSvg)) { + acc.toSvg.push(cls); + } else { + acc.toNode.push(cls); + } + + return acc; + }, { toNode: [], toSvg: [] }); + + abstract[0].attributes.class = splitClasses.toSvg.join(' '); + + var newInnerHTML = abstract.map(function (a) { + return toHtml(a); + }).join('\n'); + node.setAttribute('class', splitClasses.toNode.join(' ')); + node.setAttribute(DATA_FA_I2SVG, ''); + node.innerHTML = newInnerHTML; + } +}; + +function perform(mutations, callback) { + var callbackFunction = typeof callback === 'function' ? callback : noop$1; + + if (mutations.length === 0) { + callbackFunction(); + } else { + var frame = WINDOW.requestAnimationFrame || function (op) { + return op(); + }; + + frame(function () { + var mutator = getMutator(); + var mark = perf.begin('mutate'); + + mutations.map(mutator); + + mark(); + + callbackFunction(); + }); + } +} + +var disabled = false; + +function disableObservation(operation) { + disabled = true; + operation(); + disabled = false; +} + +var mo = null; + +function observe(options) { + if (!MUTATION_OBSERVER) { + return; + } + + if (!config.observeMutations) { + return; + } + + var treeCallback = options.treeCallback, + nodeCallback = options.nodeCallback, + pseudoElementsCallback = options.pseudoElementsCallback, + _options$observeMutat = options.observeMutationsRoot, + observeMutationsRoot = _options$observeMutat === undefined ? DOCUMENT.body : _options$observeMutat; + + + mo = new MUTATION_OBSERVER(function (objects) { + if (disabled) return; + + toArray(objects).forEach(function (mutationRecord) { + if (mutationRecord.type === 'childList' && mutationRecord.addedNodes.length > 0 && !isWatched(mutationRecord.addedNodes[0])) { + if (config.searchPseudoElements) { + pseudoElementsCallback(mutationRecord.target); + } + + treeCallback(mutationRecord.target); + } + + if (mutationRecord.type === 'attributes' && mutationRecord.target.parentNode && config.searchPseudoElements) { + pseudoElementsCallback(mutationRecord.target.parentNode); + } + + if (mutationRecord.type === 'attributes' && isWatched(mutationRecord.target) && ~ATTRIBUTES_WATCHED_FOR_MUTATION.indexOf(mutationRecord.attributeName)) { + if (mutationRecord.attributeName === 'class') { + var _getCanonicalIcon = getCanonicalIcon(classArray(mutationRecord.target)), + prefix = _getCanonicalIcon.prefix, + iconName = _getCanonicalIcon.iconName; + + if (prefix) mutationRecord.target.setAttribute('data-prefix', prefix); + if (iconName) mutationRecord.target.setAttribute('data-icon', iconName); + } else { + nodeCallback(mutationRecord.target); + } + } + }); + }); + + if (!IS_DOM) return; + + mo.observe(observeMutationsRoot, { + childList: true, attributes: true, characterData: true, subtree: true + }); +} + +function disconnect() { + if (!mo) return; + + mo.disconnect(); +} + +var styleParser = function (node) { + var style = node.getAttribute('style'); + + var val = []; + + if (style) { + val = style.split(';').reduce(function (acc, style) { + var styles = style.split(':'); + var prop = styles[0]; + var value = styles.slice(1); + + if (prop && value.length > 0) { + acc[prop] = value.join(':').trim(); + } + + return acc; + }, {}); + } + + return val; +}; + +function toHex(unicode) { + var result = ''; + + for (var i = 0; i < unicode.length; i++) { + var hex = unicode.charCodeAt(i).toString(16); + result += ('000' + hex).slice(-4); + } + + return result; +} + +var classParser = function (node) { + var existingPrefix = node.getAttribute('data-prefix'); + var existingIconName = node.getAttribute('data-icon'); + var innerText = node.innerText !== undefined ? node.innerText.trim() : ''; + + var val = getCanonicalIcon(classArray(node)); + + if (existingPrefix && existingIconName) { + val.prefix = existingPrefix; + val.iconName = existingIconName; + } + + if (val.prefix && innerText.length > 1) { + val.iconName = byLigature(val.prefix, node.innerText); + } else if (val.prefix && innerText.length === 1) { + val.iconName = byUnicode(val.prefix, toHex(node.innerText)); + } + + return val; +}; + +var parseTransformString = function parseTransformString(transformString) { + var transform = { + size: 16, + x: 0, + y: 0, + flipX: false, + flipY: false, + rotate: 0 + }; + + if (!transformString) { + return transform; + } else { + return transformString.toLowerCase().split(' ').reduce(function (acc, n) { + var parts = n.toLowerCase().split('-'); + var first = parts[0]; + var rest = parts.slice(1).join('-'); + + if (first && rest === 'h') { + acc.flipX = true; + return acc; + } + + if (first && rest === 'v') { + acc.flipY = true; + return acc; + } + + rest = parseFloat(rest); + + if (isNaN(rest)) { + return acc; + } + + switch (first) { + case 'grow': + acc.size = acc.size + rest; + break; + case 'shrink': + acc.size = acc.size - rest; + break; + case 'left': + acc.x = acc.x - rest; + break; + case 'right': + acc.x = acc.x + rest; + break; + case 'up': + acc.y = acc.y - rest; + break; + case 'down': + acc.y = acc.y + rest; + break; + case 'rotate': + acc.rotate = acc.rotate + rest; + break; + } + + return acc; + }, transform); + } +}; + +var transformParser = function (node) { + return parseTransformString(node.getAttribute('data-fa-transform')); +}; + +var symbolParser = function (node) { + var symbol = node.getAttribute('data-fa-symbol'); + + return symbol === null ? false : symbol === '' ? true : symbol; +}; + +var attributesParser = function (node) { + var extraAttributes = toArray(node.attributes).reduce(function (acc, attr) { + if (acc.name !== 'class' && acc.name !== 'style') { + acc[attr.name] = attr.value; + } + return acc; + }, {}); + + var title = node.getAttribute('title'); + + if (config.autoA11y) { + if (title) { + extraAttributes['aria-labelledby'] = config.replacementClass + '-title-' + nextUniqueId(); + } else { + extraAttributes['aria-hidden'] = 'true'; + } + } + + return extraAttributes; +}; + +var maskParser = function (node) { + var mask = node.getAttribute('data-fa-mask'); + + if (!mask) { + return emptyCanonicalIcon(); + } else { + return getCanonicalIcon(mask.split(' ').map(function (i) { + return i.trim(); + })); + } +}; + +var blankMeta = { + iconName: null, + title: null, + prefix: null, + transform: meaninglessTransform, + symbol: false, + mask: null, + extra: { classes: [], styles: {}, attributes: {} } +}; + +function parseMeta(node) { + var _classParser = classParser(node), + iconName = _classParser.iconName, + prefix = _classParser.prefix, + extraClasses = _classParser.rest; + + var extraStyles = styleParser(node); + var transform = transformParser(node); + var symbol = symbolParser(node); + var extraAttributes = attributesParser(node); + var mask = maskParser(node); + + return { + iconName: iconName, + title: node.getAttribute('title'), + prefix: prefix, + transform: transform, + symbol: symbol, + mask: mask, + extra: { + classes: extraClasses, + styles: extraStyles, + attributes: extraAttributes + } + }; +} + +function MissingIcon(error) { + this.name = 'MissingIcon'; + this.message = error || 'Icon unavailable'; + this.stack = new Error().stack; +} + +MissingIcon.prototype = Object.create(Error.prototype); +MissingIcon.prototype.constructor = MissingIcon; + +var FILL = { fill: 'currentColor' }; +var ANIMATION_BASE = { + attributeType: 'XML', + repeatCount: 'indefinite', + dur: '2s' +}; +var RING = { + tag: 'path', + attributes: _extends({}, FILL, { + d: 'M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z' + }) +}; +var OPACITY_ANIMATE = _extends({}, ANIMATION_BASE, { + attributeName: 'opacity' +}); +var DOT = { + tag: 'circle', + attributes: _extends({}, FILL, { + cx: '256', + cy: '364', + r: '28' + }), + children: [{ tag: 'animate', attributes: _extends({}, ANIMATION_BASE, { attributeName: 'r', values: '28;14;28;28;14;28;' }) }, { tag: 'animate', attributes: _extends({}, OPACITY_ANIMATE, { values: '1;0;1;1;0;1;' }) }] +}; +var QUESTION = { + tag: 'path', + attributes: _extends({}, FILL, { + opacity: '1', + d: 'M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z' + }), + children: [{ tag: 'animate', attributes: _extends({}, OPACITY_ANIMATE, { values: '1;0;0;0;0;1;' }) }] +}; +var EXCLAMATION = { + tag: 'path', + attributes: _extends({}, FILL, { + opacity: '0', + d: 'M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z' + }), + children: [{ tag: 'animate', attributes: _extends({}, OPACITY_ANIMATE, { values: '0;0;1;1;0;0;' }) }] +}; + +var missing = { tag: 'g', children: [RING, DOT, QUESTION, EXCLAMATION] }; + +var styles = namespace.styles; + +var LAYERS_TEXT_CLASSNAME = 'fa-layers-text'; +var FONT_FAMILY_PATTERN = /Font Awesome 5 (Solid|Regular|Light|Brands|Free|Pro)/; +var STYLE_TO_PREFIX = { + 'Solid': 'fas', + 'Regular': 'far', + 'Light': 'fal', + 'Brands': 'fab' +}; +var FONT_WEIGHT_TO_PREFIX = { + '900': 'fas', + '400': 'far', + '300': 'fal' +}; + +function findIcon(iconName, prefix) { + var val = { + found: false, + width: 512, + height: 512, + icon: missing + }; + + if (iconName && prefix && styles[prefix] && styles[prefix][iconName]) { + var icon = styles[prefix][iconName]; + var width = icon[0]; + var height = icon[1]; + var vectorData = icon.slice(4); + + val = { + found: true, + width: width, + height: height, + icon: { tag: 'path', attributes: { fill: 'currentColor', d: vectorData[0] } } + }; + } else if (iconName && prefix && !config.showMissingIcons) { + throw new MissingIcon('Icon is missing for prefix ' + prefix + ' with icon name ' + iconName); + } + + return val; +} + +function generateSvgReplacementMutation(node, nodeMeta) { + var iconName = nodeMeta.iconName, + title = nodeMeta.title, + prefix = nodeMeta.prefix, + transform = nodeMeta.transform, + symbol = nodeMeta.symbol, + mask = nodeMeta.mask, + extra = nodeMeta.extra; + + + return [node, makeInlineSvgAbstract({ + icons: { + main: findIcon(iconName, prefix), + mask: findIcon(mask.iconName, mask.prefix) + }, + prefix: prefix, + iconName: iconName, + transform: transform, + symbol: symbol, + mask: mask, + title: title, + extra: extra, + watchable: true + })]; +} + +function generateLayersText(node, nodeMeta) { + var title = nodeMeta.title, + transform = nodeMeta.transform, + extra = nodeMeta.extra; + + + var width = null; + var height = null; + + if (IS_IE) { + var computedFontSize = parseInt(getComputedStyle(node).fontSize, 10); + var boundingClientRect = node.getBoundingClientRect(); + width = boundingClientRect.width / computedFontSize; + height = boundingClientRect.height / computedFontSize; + } + + if (config.autoA11y && !title) { + extra.attributes['aria-hidden'] = 'true'; + } + + return [node, makeLayersTextAbstract({ + content: node.innerHTML, + width: width, + height: height, + transform: transform, + title: title, + extra: extra, + watchable: true + })]; +} + +function generateMutation(node) { + var nodeMeta = parseMeta(node); + + if (~nodeMeta.extra.classes.indexOf(LAYERS_TEXT_CLASSNAME)) { + return generateLayersText(node, nodeMeta); + } else { + return generateSvgReplacementMutation(node, nodeMeta); + } +} + +function searchPseudoElements(root) { + if (!IS_DOM) return; + + var end = perf.begin('searchPseudoElements'); + + disableObservation(function () { + toArray(root.querySelectorAll('*')).filter(function (n) { + return n.parentNode !== document.head && !~TAGNAMES_TO_SKIP_FOR_PSEUDOELEMENTS.indexOf(n.tagName.toUpperCase()) && !n.getAttribute(DATA_FA_PSEUDO_ELEMENT) && (!n.parentNode || n.parentNode.tagName !== 'svg'); + }).forEach(function (node) { + [':before', ':after'].forEach(function (pos) { + var children = toArray(node.children); + var alreadyProcessedPseudoElement = children.filter(function (c) { + return c.getAttribute(DATA_FA_PSEUDO_ELEMENT) === pos; + })[0]; + + var styles = WINDOW.getComputedStyle(node, pos); + var fontFamily = styles.getPropertyValue('font-family').match(FONT_FAMILY_PATTERN); + var fontWeight = styles.getPropertyValue('font-weight'); + + if (alreadyProcessedPseudoElement && !fontFamily) { + // If we've already processed it but the current computed style does not result in a font-family, + // that probably means that a class name that was previously present to make the icon has been + // removed. So we now should delete the icon. + node.removeChild(alreadyProcessedPseudoElement); + } else if (fontFamily) { + var content = styles.getPropertyValue('content'); + var prefix = ~['Light', 'Regular', 'Solid', 'Brands'].indexOf(fontFamily[1]) ? STYLE_TO_PREFIX[fontFamily[1]] : FONT_WEIGHT_TO_PREFIX[fontWeight]; + var iconName = byUnicode(prefix, toHex(content.length === 3 ? content.substr(1, 1) : content)); + // Only convert the pseudo element in this :before/:after position into an icon if we haven't + // already done so with the same prefix and iconName + if (!alreadyProcessedPseudoElement || alreadyProcessedPseudoElement.getAttribute(DATA_PREFIX) !== prefix || alreadyProcessedPseudoElement.getAttribute(DATA_ICON) !== iconName) { + if (alreadyProcessedPseudoElement) { + // Delete the old one, since we're replacing it with a new one + node.removeChild(alreadyProcessedPseudoElement); + } + + var extra = blankMeta.extra; + + extra.attributes[DATA_FA_PSEUDO_ELEMENT] = pos; + var abstract = makeInlineSvgAbstract(_extends({}, blankMeta, { + icons: { + main: findIcon(iconName, prefix), + mask: emptyCanonicalIcon() + }, + prefix: prefix, + iconName: iconName, + extra: extra, + watchable: true + })); + + var element = DOCUMENT.createElement('svg'); + + if (pos === ':before') { + node.insertBefore(element, node.firstChild); + } else { + node.appendChild(element); + } + + element.outerHTML = abstract.map(function (a) { + return toHtml(a); + }).join('\n'); + } + } + }); + }); + }); + + end(); +} + +function onTree(root) { + var callback = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + + if (!IS_DOM) return; + + var htmlClassList = DOCUMENT.documentElement.classList; + var hclAdd = function hclAdd(suffix) { + return htmlClassList.add(HTML_CLASS_I2SVG_BASE_CLASS + '-' + suffix); + }; + var hclRemove = function hclRemove(suffix) { + return htmlClassList.remove(HTML_CLASS_I2SVG_BASE_CLASS + '-' + suffix); + }; + var prefixes = Object.keys(styles); + var prefixesDomQuery = ['.' + LAYERS_TEXT_CLASSNAME + ':not([' + DATA_FA_I2SVG + '])'].concat(prefixes.map(function (p) { + return '.' + p + ':not([' + DATA_FA_I2SVG + '])'; + })).join(', '); + + if (prefixesDomQuery.length === 0) { + return; + } + + var candidates = toArray(root.querySelectorAll(prefixesDomQuery)); + + if (candidates.length > 0) { + hclAdd('pending'); + hclRemove('complete'); + } else { + return; + } + + var mark = perf.begin('onTree'); + + var mutations = candidates.reduce(function (acc, node) { + try { + var mutation = generateMutation(node); + + if (mutation) { + acc.push(mutation); + } + } catch (e) { + if (!PRODUCTION) { + if (e instanceof MissingIcon) { + console.error(e); + } + } + } + + return acc; + }, []); + + mark(); + + perform(mutations, function () { + hclAdd('active'); + hclAdd('complete'); + hclRemove('pending'); + + if (typeof callback === 'function') callback(); + }); +} + +function onNode(node) { + var callback = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + + var mutation = generateMutation(node); + + if (mutation) { + perform([mutation], callback); + } +} + +var baseStyles = "svg:not(:root).svg-inline--fa {\n overflow: visible; }\n\n.svg-inline--fa {\n display: inline-block;\n font-size: inherit;\n height: 1em;\n overflow: visible;\n vertical-align: -.125em; }\n .svg-inline--fa.fa-lg {\n vertical-align: -.225em; }\n .svg-inline--fa.fa-w-1 {\n width: 0.0625em; }\n .svg-inline--fa.fa-w-2 {\n width: 0.125em; }\n .svg-inline--fa.fa-w-3 {\n width: 0.1875em; }\n .svg-inline--fa.fa-w-4 {\n width: 0.25em; }\n .svg-inline--fa.fa-w-5 {\n width: 0.3125em; }\n .svg-inline--fa.fa-w-6 {\n width: 0.375em; }\n .svg-inline--fa.fa-w-7 {\n width: 0.4375em; }\n .svg-inline--fa.fa-w-8 {\n width: 0.5em; }\n .svg-inline--fa.fa-w-9 {\n width: 0.5625em; }\n .svg-inline--fa.fa-w-10 {\n width: 0.625em; }\n .svg-inline--fa.fa-w-11 {\n width: 0.6875em; }\n .svg-inline--fa.fa-w-12 {\n width: 0.75em; }\n .svg-inline--fa.fa-w-13 {\n width: 0.8125em; }\n .svg-inline--fa.fa-w-14 {\n width: 0.875em; }\n .svg-inline--fa.fa-w-15 {\n width: 0.9375em; }\n .svg-inline--fa.fa-w-16 {\n width: 1em; }\n .svg-inline--fa.fa-w-17 {\n width: 1.0625em; }\n .svg-inline--fa.fa-w-18 {\n width: 1.125em; }\n .svg-inline--fa.fa-w-19 {\n width: 1.1875em; }\n .svg-inline--fa.fa-w-20 {\n width: 1.25em; }\n .svg-inline--fa.fa-pull-left {\n margin-right: .3em;\n width: auto; }\n .svg-inline--fa.fa-pull-right {\n margin-left: .3em;\n width: auto; }\n .svg-inline--fa.fa-border {\n height: 1.5em; }\n .svg-inline--fa.fa-li {\n width: 2em; }\n .svg-inline--fa.fa-fw {\n width: 1.25em; }\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0; }\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -.125em;\n width: 1em; }\n .fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center; }\n\n.fa-layers-text, .fa-layers-counter {\n display: inline-block;\n position: absolute;\n text-align: center; }\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center; }\n\n.fa-layers-counter {\n background-color: #ff253a;\n border-radius: 1em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #fff;\n height: 1.5em;\n line-height: 1;\n max-width: 5em;\n min-width: 1.5em;\n overflow: hidden;\n padding: .25em;\n right: 0;\n text-overflow: ellipsis;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right; }\n\n.fa-layers-bottom-right {\n bottom: 0;\n right: 0;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right; }\n\n.fa-layers-bottom-left {\n bottom: 0;\n left: 0;\n right: auto;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left; }\n\n.fa-layers-top-right {\n right: 0;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right; }\n\n.fa-layers-top-left {\n left: 0;\n right: auto;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top left;\n transform-origin: top left; }\n\n.fa-lg {\n font-size: 1.33333em;\n line-height: 0.75em;\n vertical-align: -.0667em; }\n\n.fa-xs {\n font-size: .75em; }\n\n.fa-sm {\n font-size: .875em; }\n\n.fa-1x {\n font-size: 1em; }\n\n.fa-2x {\n font-size: 2em; }\n\n.fa-3x {\n font-size: 3em; }\n\n.fa-4x {\n font-size: 4em; }\n\n.fa-5x {\n font-size: 5em; }\n\n.fa-6x {\n font-size: 6em; }\n\n.fa-7x {\n font-size: 7em; }\n\n.fa-8x {\n font-size: 8em; }\n\n.fa-9x {\n font-size: 9em; }\n\n.fa-10x {\n font-size: 10em; }\n\n.fa-fw {\n text-align: center;\n width: 1.25em; }\n\n.fa-ul {\n list-style-type: none;\n margin-left: 2.5em;\n padding-left: 0; }\n .fa-ul > li {\n position: relative; }\n\n.fa-li {\n left: -2em;\n position: absolute;\n text-align: center;\n width: 2em;\n line-height: inherit; }\n\n.fa-border {\n border: solid 0.08em #eee;\n border-radius: .1em;\n padding: .2em .25em .15em; }\n\n.fa-pull-left {\n float: left; }\n\n.fa-pull-right {\n float: right; }\n\n.fa.fa-pull-left,\n.fas.fa-pull-left,\n.far.fa-pull-left,\n.fal.fa-pull-left,\n.fab.fa-pull-left {\n margin-right: .3em; }\n\n.fa.fa-pull-right,\n.fas.fa-pull-right,\n.far.fa-pull-right,\n.fal.fa-pull-right,\n.fab.fa-pull-right {\n margin-left: .3em; }\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear; }\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8); }\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n.fa-rotate-90 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg); }\n\n.fa-rotate-180 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg); }\n\n.fa-rotate-270 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg); }\n\n.fa-flip-horizontal {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1); }\n\n.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1); }\n\n.fa-flip-horizontal.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1); }\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n -webkit-filter: none;\n filter: none; }\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n position: relative;\n width: 2em; }\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0; }\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1em; }\n\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2em; }\n\n.fa-inverse {\n color: #fff; }\n\n.sr-only {\n border: 0;\n clip: rect(0, 0, 0, 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px; }\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n clip: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n position: static;\n width: auto; }\n"; + +var css = function () { + var dfp = DEFAULT_FAMILY_PREFIX; + var drc = DEFAULT_REPLACEMENT_CLASS; + var fp = config.familyPrefix; + var rc = config.replacementClass; + var s = baseStyles; + + if (fp !== dfp || rc !== drc) { + var dPatt = new RegExp('\\.' + dfp + '\\-', 'g'); + var rPatt = new RegExp('\\.' + drc, 'g'); + + s = s.replace(dPatt, '.' + fp + '-').replace(rPatt, '.' + rc); + } + + return s; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var Library = function () { + function Library() { + classCallCheck(this, Library); + + this.definitions = {}; + } + + createClass(Library, [{ + key: 'add', + value: function add() { + var _this = this; + + for (var _len = arguments.length, definitions = Array(_len), _key = 0; _key < _len; _key++) { + definitions[_key] = arguments[_key]; + } + + var additions = definitions.reduce(this._pullDefinitions, {}); + + Object.keys(additions).forEach(function (key) { + _this.definitions[key] = _extends({}, _this.definitions[key] || {}, additions[key]); + define(key, additions[key]); + build(); + }); + } + }, { + key: 'reset', + value: function reset() { + this.definitions = {}; + } + }, { + key: '_pullDefinitions', + value: function _pullDefinitions(additions, definition) { + var normalized = definition.prefix && definition.iconName && definition.icon ? { 0: definition } : definition; + + Object.keys(normalized).map(function (key) { + var _normalized$key = normalized[key], + prefix = _normalized$key.prefix, + iconName = _normalized$key.iconName, + icon = _normalized$key.icon; + + + if (!additions[prefix]) additions[prefix] = {}; + + additions[prefix][iconName] = icon; + }); + + return additions; + } + }]); + return Library; +}(); + +function prepIcon(icon) { + var width = icon[0]; + var height = icon[1]; + var vectorData = icon.slice(4); + + return { + found: true, + width: width, + height: height, + icon: { tag: 'path', attributes: { fill: 'currentColor', d: vectorData[0] } } + }; +} + +function ensureCss() { + if (config.autoAddCss && !_cssInserted) { + insertCss(css()); + _cssInserted = true; + } +} + +function apiObject(val, abstractCreator) { + Object.defineProperty(val, 'abstract', { + get: abstractCreator + }); + + Object.defineProperty(val, 'html', { + get: function get() { + return val.abstract.map(function (a) { + return toHtml(a); + }); + } + }); + + Object.defineProperty(val, 'node', { + get: function get() { + if (!IS_DOM) return; + + var container = DOCUMENT.createElement('div'); + container.innerHTML = val.html; + return container.children; + } + }); + + return val; +} + +function findIconDefinition(params) { + var _params$prefix = params.prefix, + prefix = _params$prefix === undefined ? 'fa' : _params$prefix, + iconName = params.iconName; + + + if (!iconName) return; + + return iconFromMapping(library.definitions, prefix, iconName) || iconFromMapping(namespace.styles, prefix, iconName); +} + +function resolveIcons(next) { + return function (maybeIconDefinition) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + + var iconDefinition = (maybeIconDefinition || {}).icon ? maybeIconDefinition : findIconDefinition(maybeIconDefinition || {}); + + var mask = params.mask; + + + if (mask) { + mask = (mask || {}).icon ? mask : findIconDefinition(mask || {}); + } + + return next(iconDefinition, _extends({}, params, { mask: mask })); + }; +} + +var library = new Library(); + +var noAuto = function noAuto() { + config.autoReplaceSvg = false; + config.observeMutations = false; + + disconnect(); +}; + +var _cssInserted = false; + +var dom = { + i2svg: function i2svg() { + var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + + if (IS_DOM) { + ensureCss(); + + var _params$node = params.node, + node = _params$node === undefined ? DOCUMENT : _params$node, + _params$callback = params.callback, + callback = _params$callback === undefined ? function () {} : _params$callback; + + + if (config.searchPseudoElements) { + searchPseudoElements(node); + } + + onTree(node, callback); + } + }, + + css: css, + + insertCss: function insertCss$$1() { + if (!_cssInserted) { + insertCss(css()); + _cssInserted = true; + } + }, + + watch: function watch() { + var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var autoReplaceSvgRoot = params.autoReplaceSvgRoot, + observeMutationsRoot = params.observeMutationsRoot; + + + if (config.autoReplaceSvg === false) { + config.autoReplaceSvg = true; + } + + config.observeMutations = true; + + domready(function () { + autoReplace({ + autoReplaceSvgRoot: autoReplaceSvgRoot + }); + + observe({ + treeCallback: onTree, + nodeCallback: onNode, + pseudoElementsCallback: searchPseudoElements, + observeMutationsRoot: observeMutationsRoot + }); + }); + } +}; + +var parse = { + transform: function transform(transformString) { + return parseTransformString(transformString); + } +}; + +var icon = resolveIcons(function (iconDefinition) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _params$transform = params.transform, + transform = _params$transform === undefined ? meaninglessTransform : _params$transform, + _params$symbol = params.symbol, + symbol = _params$symbol === undefined ? false : _params$symbol, + _params$mask = params.mask, + mask = _params$mask === undefined ? null : _params$mask, + _params$title = params.title, + title = _params$title === undefined ? null : _params$title, + _params$classes = params.classes, + classes = _params$classes === undefined ? [] : _params$classes, + _params$attributes = params.attributes, + attributes = _params$attributes === undefined ? {} : _params$attributes, + _params$styles = params.styles, + styles = _params$styles === undefined ? {} : _params$styles; + + + if (!iconDefinition) return; + + var prefix = iconDefinition.prefix, + iconName = iconDefinition.iconName, + icon = iconDefinition.icon; + + + return apiObject(_extends({ type: 'icon' }, iconDefinition), function () { + ensureCss(); + + if (config.autoA11y) { + if (title) { + attributes['aria-labelledby'] = config.replacementClass + '-title-' + nextUniqueId(); + } else { + attributes['aria-hidden'] = 'true'; + } + } + + return makeInlineSvgAbstract({ + icons: { + main: prepIcon(icon), + mask: mask ? prepIcon(mask.icon) : { found: false, width: null, height: null, icon: {} } + }, + prefix: prefix, + iconName: iconName, + transform: _extends({}, meaninglessTransform, transform), + symbol: symbol, + title: title, + extra: { + attributes: attributes, + styles: styles, + classes: classes + } + }); + }); +}); + +var text = function text(content) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _params$transform2 = params.transform, + transform = _params$transform2 === undefined ? meaninglessTransform : _params$transform2, + _params$title2 = params.title, + title = _params$title2 === undefined ? null : _params$title2, + _params$classes2 = params.classes, + classes = _params$classes2 === undefined ? [] : _params$classes2, + _params$attributes2 = params.attributes, + attributes = _params$attributes2 === undefined ? {} : _params$attributes2, + _params$styles2 = params.styles, + styles = _params$styles2 === undefined ? {} : _params$styles2; + + + return apiObject({ type: 'text', content: content }, function () { + ensureCss(); + + return makeLayersTextAbstract({ + content: content, + transform: _extends({}, meaninglessTransform, transform), + title: title, + extra: { + attributes: attributes, + styles: styles, + classes: [config.familyPrefix + '-layers-text'].concat(toConsumableArray(classes)) + } + }); + }); +}; + +var counter = function counter(content) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _params$title3 = params.title, + title = _params$title3 === undefined ? null : _params$title3, + _params$classes3 = params.classes, + classes = _params$classes3 === undefined ? [] : _params$classes3, + _params$attributes3 = params.attributes, + attributes = _params$attributes3 === undefined ? {} : _params$attributes3, + _params$styles3 = params.styles, + styles = _params$styles3 === undefined ? {} : _params$styles3; + + + return apiObject({ type: 'counter', content: content }, function () { + ensureCss(); + + return makeLayersCounterAbstract({ + content: content.toString(), + title: title, + extra: { + attributes: attributes, + styles: styles, + classes: [config.familyPrefix + '-layers-counter'].concat(toConsumableArray(classes)) + } + }); + }); +}; + +var layer = function layer(assembler) { + return apiObject({ type: 'layer' }, function () { + ensureCss(); + + var children = []; + + assembler(function (args) { + Array.isArray(args) ? args.map(function (a) { + children = children.concat(a.abstract); + }) : children = children.concat(args.abstract); + }); + + return [{ + tag: 'span', + attributes: { class: config.familyPrefix + '-layers' }, + children: children + }]; + }); +}; + +var api = { + noAuto: noAuto, + config: config, + dom: dom, + library: library, + parse: parse, + findIconDefinition: findIconDefinition, + icon: icon, + text: text, + counter: counter, + layer: layer, + toHtml: toHtml +}; + +var autoReplace = function autoReplace() { + var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var _params$autoReplaceSv = params.autoReplaceSvgRoot, + autoReplaceSvgRoot = _params$autoReplaceSv === undefined ? DOCUMENT : _params$autoReplaceSv; + + + if (Object.keys(namespace.styles).length > 0 && IS_DOM && config.autoReplaceSvg) api.dom.i2svg({ node: autoReplaceSvgRoot }); +}; + +exports.icon = icon; +exports.noAuto = noAuto; +exports.config = config; +exports.toHtml = toHtml; +exports.layer = layer; +exports.text = text; +exports.counter = counter; +exports.library = library; +exports.dom = dom; +exports.parse = parse; +exports.findIconDefinition = findIconDefinition; + +Object.defineProperty(exports, '__esModule', { value: true }); + +}))); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/package.json b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/package.json new file mode 100644 index 0000000000..d21f361864 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/package.json @@ -0,0 +1,60 @@ +{ + "description": "The iconic font, CSS, and SVG framework", + "keywords": [ + "font", + "awesome", + "fontawesome", + "icon", + "svg", + "bootstrap" + ], + "homepage": "https://fontawesome.com", + "bugs": { + "url": "http://github.com/FortAwesome/Font-Awesome/issues" + }, + "author": { + "name": "Dave Gandy", + "email": "dave@fontawesome.com", + "web": "http://twitter.com/davegandy" + }, + "contributors": [ + { + "name": "Brian Talbot", + "web": "http://twitter.com/talbs" + }, + { + "name": "Travis Chase", + "web": "http://twitter.com/supercodepoet" + }, + { + "name": "Rob Madole", + "web": "http://twitter.com/robmadole" + }, + { + "name": "Geremia Taglialatela", + "web": "http://twitter.com/gtagliala" + }, + { + "name": "Mike Wilkerson", + "web": "http://twitter.com/mw77" + } + ], + "repository": { + "type": "git", + "url": "https://github.com/FortAwesome/Font-Awesome" + }, + "engines": { + "node": ">=6" + }, + "dependencies": { + "@fortawesome/fontawesome-common-types": "^0.2.1" + }, + "version": "1.2.1", + "name": "@fortawesome/fontawesome-svg-core", + "main": "index.js", + "module": "index.es.js", + "jsnext:main": "index.es.js", + "style": "styles.css", + "license": "MIT", + "types": "./index.d.ts" +} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/styles.css b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/styles.css new file mode 100644 index 0000000000..bf3b6789a6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-svg-core/styles.css @@ -0,0 +1,345 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +svg:not(:root).svg-inline--fa { + overflow: visible; } + +.svg-inline--fa { + display: inline-block; + font-size: inherit; + height: 1em; + overflow: visible; + vertical-align: -.125em; } + .svg-inline--fa.fa-lg { + vertical-align: -.225em; } + .svg-inline--fa.fa-w-1 { + width: 0.0625em; } + .svg-inline--fa.fa-w-2 { + width: 0.125em; } + .svg-inline--fa.fa-w-3 { + width: 0.1875em; } + .svg-inline--fa.fa-w-4 { + width: 0.25em; } + .svg-inline--fa.fa-w-5 { + width: 0.3125em; } + .svg-inline--fa.fa-w-6 { + width: 0.375em; } + .svg-inline--fa.fa-w-7 { + width: 0.4375em; } + .svg-inline--fa.fa-w-8 { + width: 0.5em; } + .svg-inline--fa.fa-w-9 { + width: 0.5625em; } + .svg-inline--fa.fa-w-10 { + width: 0.625em; } + .svg-inline--fa.fa-w-11 { + width: 0.6875em; } + .svg-inline--fa.fa-w-12 { + width: 0.75em; } + .svg-inline--fa.fa-w-13 { + width: 0.8125em; } + .svg-inline--fa.fa-w-14 { + width: 0.875em; } + .svg-inline--fa.fa-w-15 { + width: 0.9375em; } + .svg-inline--fa.fa-w-16 { + width: 1em; } + .svg-inline--fa.fa-w-17 { + width: 1.0625em; } + .svg-inline--fa.fa-w-18 { + width: 1.125em; } + .svg-inline--fa.fa-w-19 { + width: 1.1875em; } + .svg-inline--fa.fa-w-20 { + width: 1.25em; } + .svg-inline--fa.fa-pull-left { + margin-right: .3em; + width: auto; } + .svg-inline--fa.fa-pull-right { + margin-left: .3em; + width: auto; } + .svg-inline--fa.fa-border { + height: 1.5em; } + .svg-inline--fa.fa-li { + width: 2em; } + .svg-inline--fa.fa-fw { + width: 1.25em; } + +.fa-layers svg.svg-inline--fa { + bottom: 0; + left: 0; + margin: auto; + position: absolute; + right: 0; + top: 0; } + +.fa-layers { + display: inline-block; + height: 1em; + position: relative; + text-align: center; + vertical-align: -.125em; + width: 1em; } + .fa-layers svg.svg-inline--fa { + -webkit-transform-origin: center center; + transform-origin: center center; } + +.fa-layers-text, .fa-layers-counter { + display: inline-block; + position: absolute; + text-align: center; } + +.fa-layers-text { + left: 50%; + top: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + -webkit-transform-origin: center center; + transform-origin: center center; } + +.fa-layers-counter { + background-color: #ff253a; + border-radius: 1em; + -webkit-box-sizing: border-box; + box-sizing: border-box; + color: #fff; + height: 1.5em; + line-height: 1; + max-width: 5em; + min-width: 1.5em; + overflow: hidden; + padding: .25em; + right: 0; + text-overflow: ellipsis; + top: 0; + -webkit-transform: scale(0.25); + transform: scale(0.25); + -webkit-transform-origin: top right; + transform-origin: top right; } + +.fa-layers-bottom-right { + bottom: 0; + right: 0; + top: auto; + -webkit-transform: scale(0.25); + transform: scale(0.25); + -webkit-transform-origin: bottom right; + transform-origin: bottom right; } + +.fa-layers-bottom-left { + bottom: 0; + left: 0; + right: auto; + top: auto; + -webkit-transform: scale(0.25); + transform: scale(0.25); + -webkit-transform-origin: bottom left; + transform-origin: bottom left; } + +.fa-layers-top-right { + right: 0; + top: 0; + -webkit-transform: scale(0.25); + transform: scale(0.25); + -webkit-transform-origin: top right; + transform-origin: top right; } + +.fa-layers-top-left { + left: 0; + right: auto; + top: 0; + -webkit-transform: scale(0.25); + transform: scale(0.25); + -webkit-transform-origin: top left; + transform-origin: top left; } + +.fa-lg { + font-size: 1.33333em; + line-height: 0.75em; + vertical-align: -.0667em; } + +.fa-xs { + font-size: .75em; } + +.fa-sm { + font-size: .875em; } + +.fa-1x { + font-size: 1em; } + +.fa-2x { + font-size: 2em; } + +.fa-3x { + font-size: 3em; } + +.fa-4x { + font-size: 4em; } + +.fa-5x { + font-size: 5em; } + +.fa-6x { + font-size: 6em; } + +.fa-7x { + font-size: 7em; } + +.fa-8x { + font-size: 8em; } + +.fa-9x { + font-size: 9em; } + +.fa-10x { + font-size: 10em; } + +.fa-fw { + text-align: center; + width: 1.25em; } + +.fa-ul { + list-style-type: none; + margin-left: 2.5em; + padding-left: 0; } + .fa-ul > li { + position: relative; } + +.fa-li { + left: -2em; + position: absolute; + text-align: center; + width: 2em; + line-height: inherit; } + +.fa-border { + border: solid 0.08em #eee; + border-radius: .1em; + padding: .2em .25em .15em; } + +.fa-pull-left { + float: left; } + +.fa-pull-right { + float: right; } + +.fa.fa-pull-left, +.fas.fa-pull-left, +.far.fa-pull-left, +.fal.fa-pull-left, +.fab.fa-pull-left { + margin-right: .3em; } + +.fa.fa-pull-right, +.fas.fa-pull-right, +.far.fa-pull-right, +.fal.fa-pull-right, +.fab.fa-pull-right { + margin-left: .3em; } + +.fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; } + +.fa-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); } + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +.fa-rotate-90 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); } + +.fa-rotate-180 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + transform: rotate(180deg); } + +.fa-rotate-270 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + transform: rotate(270deg); } + +.fa-flip-horizontal { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + -webkit-transform: scale(-1, 1); + transform: scale(-1, 1); } + +.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(1, -1); + transform: scale(1, -1); } + +.fa-flip-horizontal.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(-1, -1); + transform: scale(-1, -1); } + +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270, +:root .fa-flip-horizontal, +:root .fa-flip-vertical { + -webkit-filter: none; + filter: none; } + +.fa-stack { + display: inline-block; + height: 2em; + position: relative; + width: 2em; } + +.fa-stack-1x, +.fa-stack-2x { + bottom: 0; + left: 0; + margin: auto; + position: absolute; + right: 0; + top: 0; } + +.svg-inline--fa.fa-stack-1x { + height: 1em; + width: 1em; } + +.svg-inline--fa.fa-stack-2x { + height: 2em; + width: 2em; } + +.fa-inverse { + color: #fff; } + +.sr-only { + border: 0; + clip: rect(0, 0, 0, 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; } + +.sr-only-focusable:active, .sr-only-focusable:focus { + clip: auto; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/LICENSE.txt b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/LICENSE.txt new file mode 100644 index 0000000000..28c1c4bc73 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/LICENSE.txt @@ -0,0 +1,34 @@ +Font Awesome Free License +------------------------- + +Font Awesome Free is free, open source, and GPL friendly. You can use it for +commercial projects, open source projects, or really almost whatever you want. +Full Font Awesome Free license: https://fontawesome.com/license. + +# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) +In the Font Awesome Free download, the CC BY 4.0 license applies to all icons +packaged as SVG and JS file types. + +# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL) +In the Font Awesome Free download, the SIL OLF license applies to all icons +packaged as web and desktop font files. + +# Code: MIT License (https://opensource.org/licenses/MIT) +In the Font Awesome Free download, the MIT license applies to all non-font and +non-icon files. + +# Attribution +Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font +Awesome Free files already contain embedded comments with sufficient +attribution, so you shouldn't need to do anything additional when using these +files normally. + +We've kept attribution comments terse, so we ask that you do not actively work +to remove them from files, especially code. They're a great way for folks to +learn about Font Awesome. + +# Brand Icons +All brand icons are trademarks of their respective owners. The use of these +trademarks does not indicate endorsement of the trademark holder by Font +Awesome, nor vice versa. **Please do not use brand logos for any purpose except +to represent the company, product, or service to which they refer.** diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/README.md b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/README.md new file mode 100644 index 0000000000..5f10f8b225 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/README.md @@ -0,0 +1,27 @@ +# @fortawesome/fontawesome - SVG with JavaScript version + +> "I came here to chew bubblegum and install Font Awesome 5 - and I'm all out of bubblegum" + +[![npm](https://img.shields.io/npm/v/@fortawesome/fontawesome.svg?style=flat-square)](https://www.npmjs.com/package/@fortawesome/fontawesome) + +## Installation + +``` +$ npm i --save @fortawesome/fontawesome +``` + +Or + +``` +$ yarn add @fortawesome/fontawesome +``` + +## Documentation + +Get started [here](https://fontawesome.com/get-started/svg-with-js). Continue your journey [here](https://fontawesome.com/how-to-use/svg-with-js). + +Or go straight to the [API documentation](https://fontawesome.com/how-to-use/font-awesome-api). + +## Issues and support + +Start with [GitHub issues](https://github.com/FortAwesome/Font-Awesome/issues) and ping us on [Twitter](https://twitter.com/fontawesome) if you need to. diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/index.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/index.d.ts new file mode 100644 index 0000000000..4f01c7828b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/index.d.ts @@ -0,0 +1,120 @@ +export as namespace fontawesome; +import {IconDefinition, IconLookup, IconName, IconPrefix, IconPack } from '@fortawesome/fontawesome-common-types'; +export {IconDefinition, IconLookup, IconName, IconPrefix, IconPack } from '@fortawesome/fontawesome-common-types'; +export const dom: DOM; +export const library: Library; +export const parse: { transform(transformString: string): Transform }; +export const config: Config; +export function noAuto():void; +export function findIconDefinition(iconLookup: IconLookup): IconDefinition; +export function text(content: string, params?: Params): Text; +export function layer( + assembler: ( + addLayerCallback: (layerToAdd: IconOrText | IconOrText[]) => void + ) => void +): Layer; +export function icon(icon: IconName | IconLookup, params?: IconParams): Icon; + +declare const api: { + dom: DOM; + library: Library; + parse: { transform(transformString: string): Transform }; + config: Config; + noAuto():void; + findIconDefinition(iconLookup: IconLookup): IconDefinition; + text(content: string, params?: Params): Text; + layer( + assembler: ( + addLayerCallback: (layerToAdd: IconOrText | IconOrText[]) => void + ) => void + ): Layer; + icon(icon: IconName | IconLookup, params?: IconParams): Icon; +} +export default api; + +export type IconProp = IconName | [IconPrefix, IconName] | IconLookup; +export type FlipProp = "horizontal" | "vertical" | "both"; +export type SizeProp = + | "xs" + | "lg" + | "sm" + | "1x" + | "2x" + | "3x" + | "4x" + | "5x" + | "6x" + | "7x" + | "8x" + | "9x" + | "10x"; +export type PullProp = "left" | "right"; +export type RotateProp = 90 | 180 | 270; +export type FaSymbol = string | boolean; +export interface Config { + familyPrefix: IconPrefix; + replacementClass: string; + autoReplaceSvg: boolean | 'nest'; + autoAddCss: boolean; + autoA11y: boolean; + searchPseudoElements: boolean; + observeMutations: boolean; + keepOriginalSource: boolean; + measurePerformance: boolean; + showMissingIcons: boolean; +} +export interface AbstractElement { + tag: string; + attributes: any; + children?: AbstractElement[]; +} +export interface FontawesomeObject { + readonly abstract: AbstractElement[]; + readonly html: string[]; + readonly node: HTMLCollection; +} +export interface Icon extends FontawesomeObject, IconDefinition { + readonly type: "icon"; +} +export interface Text extends FontawesomeObject { + readonly type: "text"; +} +export interface Layer extends FontawesomeObject { + readonly type: "layer"; +} +type IconOrText = Icon | Text; +export interface Attributes { + [key: string]: number | string; +} +export interface Styles { + [key: string]: string; +} +export interface Transform { + size?: number; + x?: number; + y?: number; + rotate?: number; + flipX?: boolean; + flipY?: boolean; +} +export interface Params { + transform?: Transform; + title?: string; + classes?: string | string[]; + attributes?: Attributes; + styles?: Styles; +} +export interface IconParams extends Params { + symbol?: FaSymbol; + mask?: IconLookup; +} +export interface DOM { + i2svg(params: { node: Node; callback: () => void }): void; + css(): string; + insertCss(): string; +} +type IconDefinitionOrPack = IconDefinition | IconPack; +export interface Library { + add(...definitions: IconDefinitionOrPack[]): void; + reset(): void; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/index.es.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/index.es.js new file mode 100644 index 0000000000..01b10b8128 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/index.es.js @@ -0,0 +1,1805 @@ +/*! + * Font Awesome Free 5.0.13 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +var noop = function noop() {}; + +var _WINDOW = {}; +var _DOCUMENT = {}; +var _MUTATION_OBSERVER$1 = null; +var _PERFORMANCE = { mark: noop, measure: noop }; + +try { + if (typeof window !== 'undefined') _WINDOW = window; + if (typeof document !== 'undefined') _DOCUMENT = document; + if (typeof MutationObserver !== 'undefined') _MUTATION_OBSERVER$1 = MutationObserver; + if (typeof performance !== 'undefined') _PERFORMANCE = performance; +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; +var DOCUMENT = _DOCUMENT; +var MUTATION_OBSERVER = _MUTATION_OBSERVER$1; +var PERFORMANCE = _PERFORMANCE; +var IS_BROWSER = !!WINDOW.document; +var IS_DOM = !!DOCUMENT.documentElement && !!DOCUMENT.head && typeof DOCUMENT.addEventListener === 'function' && typeof DOCUMENT.createElement === 'function'; +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; +var UNITS_IN_GRID = 16; +var DEFAULT_FAMILY_PREFIX = 'fa'; +var DEFAULT_REPLACEMENT_CLASS = 'svg-inline--fa'; +var DATA_FA_I2SVG = 'data-fa-i2svg'; +var DATA_FA_PSEUDO_ELEMENT = 'data-fa-pseudo-element'; +var HTML_CLASS_I2SVG_BASE_CLASS = 'fontawesome-i2svg'; + +var PRODUCTION = function () { + try { + return process.env.NODE_ENV === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + +var ATTRIBUTES_WATCHED_FOR_MUTATION = ['class', 'data-prefix', 'data-icon', 'data-fa-transform', 'data-fa-mask']; + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +var classCallCheck = function (instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function"); + } +}; + +var createClass = function () { + function defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } + } + + return function (Constructor, protoProps, staticProps) { + if (protoProps) defineProperties(Constructor.prototype, protoProps); + if (staticProps) defineProperties(Constructor, staticProps); + return Constructor; + }; +}(); + + + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + + + +var toConsumableArray = function (arr) { + if (Array.isArray(arr)) { + for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) arr2[i] = arr[i]; + + return arr2; + } else { + return Array.from(arr); + } +}; + +var initial = WINDOW.FontAwesomeConfig || {}; +var initialKeys = Object.keys(initial); + +var _default = _extends({ + familyPrefix: DEFAULT_FAMILY_PREFIX, + replacementClass: DEFAULT_REPLACEMENT_CLASS, + autoReplaceSvg: true, + autoAddCss: true, + autoA11y: true, + searchPseudoElements: false, + observeMutations: true, + keepOriginalSource: true, + measurePerformance: false, + showMissingIcons: true +}, initial); + +if (!_default.autoReplaceSvg) _default.observeMutations = false; + +var config$1 = _extends({}, _default); + +WINDOW.FontAwesomeConfig = config$1; + +function update(newConfig) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _params$asNewDefault = params.asNewDefault, + asNewDefault = _params$asNewDefault === undefined ? false : _params$asNewDefault; + + var validKeys = Object.keys(config$1); + var ok = asNewDefault ? function (k) { + return ~validKeys.indexOf(k) && !~initialKeys.indexOf(k); + } : function (k) { + return ~validKeys.indexOf(k); + }; + + Object.keys(newConfig).forEach(function (configKey) { + if (ok(configKey)) config$1[configKey] = newConfig[configKey]; + }); +} + +function auto(value) { + update({ + autoReplaceSvg: value, + observeMutations: value + }); +} + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var functions = []; +var listener = function listener() { + DOCUMENT.removeEventListener('DOMContentLoaded', listener); + loaded = 1; + functions.map(function (fn) { + return fn(); + }); +}; + +var loaded = false; + +if (IS_DOM) { + loaded = (DOCUMENT.documentElement.doScroll ? /^loaded|^c/ : /^loaded|^i|^c/).test(DOCUMENT.readyState); + + if (!loaded) DOCUMENT.addEventListener('DOMContentLoaded', listener); +} + +var domready = function (fn) { + if (!IS_DOM) return; + loaded ? setTimeout(fn, 0) : functions.push(fn); +}; + +var d = UNITS_IN_GRID; + +var meaninglessTransform = { + size: 16, + x: 0, + y: 0, + rotate: 0, + flipX: false, + flipY: false +}; + +function isReserved(name) { + return ~RESERVED_CLASSES.indexOf(name); +} + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +function insertCss(css) { + if (!css || !IS_DOM) { + return; + } + + var style = DOCUMENT.createElement('style'); + style.setAttribute('type', 'text/css'); + style.innerHTML = css; + + var headChildren = DOCUMENT.head.childNodes; + var beforeChild = null; + + for (var i = headChildren.length - 1; i > -1; i--) { + var child = headChildren[i]; + var tagName = (child.tagName || '').toUpperCase(); + if (['STYLE', 'LINK'].indexOf(tagName) > -1) { + beforeChild = child; + } + } + + DOCUMENT.head.insertBefore(style, beforeChild); + + return css; +} + +var _uniqueId = 0; + +function nextUniqueId() { + _uniqueId++; + + return _uniqueId; +} + +function toArray(obj) { + var array = []; + + for (var i = (obj || []).length >>> 0; i--;) { + array[i] = obj[i]; + } + + return array; +} + +function classArray(node) { + if (node.classList) { + return toArray(node.classList); + } else { + return (node.getAttribute('class') || '').split(' ').filter(function (i) { + return i; + }); + } +} + +function getIconName(familyPrefix, cls) { + var parts = cls.split('-'); + var prefix = parts[0]; + var iconName = parts.slice(1).join('-'); + + if (prefix === familyPrefix && iconName !== '' && !isReserved(iconName)) { + return iconName; + } else { + return null; + } +} + +function htmlEscape(str) { + return ('' + str).replace(/&/g, '&').replace(/"/g, '"').replace(/'/g, ''').replace(//g, '>'); +} + +function joinAttributes(attributes) { + return Object.keys(attributes || {}).reduce(function (acc, attributeName) { + return acc + (attributeName + '="' + htmlEscape(attributes[attributeName]) + '" '); + }, '').trim(); +} + +function joinStyles(styles) { + return Object.keys(styles || {}).reduce(function (acc, styleName) { + return acc + (styleName + ': ' + styles[styleName] + ';'); + }, ''); +} + +function transformIsMeaningful(transform) { + return transform.size !== meaninglessTransform.size || transform.x !== meaninglessTransform.x || transform.y !== meaninglessTransform.y || transform.rotate !== meaninglessTransform.rotate || transform.flipX || transform.flipY; +} + +function transformForSvg(_ref) { + var transform = _ref.transform, + containerWidth = _ref.containerWidth, + iconWidth = _ref.iconWidth; + + var outer = { + transform: 'translate(' + containerWidth / 2 + ' 256)' + }; + var innerTranslate = 'translate(' + transform.x * 32 + ', ' + transform.y * 32 + ') '; + var innerScale = 'scale(' + transform.size / 16 * (transform.flipX ? -1 : 1) + ', ' + transform.size / 16 * (transform.flipY ? -1 : 1) + ') '; + var innerRotate = 'rotate(' + transform.rotate + ' 0 0)'; + var inner = { + transform: innerTranslate + ' ' + innerScale + ' ' + innerRotate + }; + var path = { + transform: 'translate(' + iconWidth / 2 * -1 + ' -256)' + }; + return { + outer: outer, + inner: inner, + path: path + }; +} + +function transformForCss(_ref2) { + var transform = _ref2.transform, + _ref2$width = _ref2.width, + width = _ref2$width === undefined ? UNITS_IN_GRID : _ref2$width, + _ref2$height = _ref2.height, + height = _ref2$height === undefined ? UNITS_IN_GRID : _ref2$height, + _ref2$startCentered = _ref2.startCentered, + startCentered = _ref2$startCentered === undefined ? false : _ref2$startCentered; + + var val = ''; + + if (startCentered && IS_IE) { + val += 'translate(' + (transform.x / d - width / 2) + 'em, ' + (transform.y / d - height / 2) + 'em) '; + } else if (startCentered) { + val += 'translate(calc(-50% + ' + transform.x / d + 'em), calc(-50% + ' + transform.y / d + 'em)) '; + } else { + val += 'translate(' + transform.x / d + 'em, ' + transform.y / d + 'em) '; + } + + val += 'scale(' + transform.size / d * (transform.flipX ? -1 : 1) + ', ' + transform.size / d * (transform.flipY ? -1 : 1) + ') '; + val += 'rotate(' + transform.rotate + 'deg) '; + + return val; +} + +var ALL_SPACE = { + x: 0, + y: 0, + width: '100%', + height: '100%' +}; + +var makeIconMasking = function (_ref) { + var children = _ref.children, + attributes = _ref.attributes, + main = _ref.main, + mask = _ref.mask, + transform = _ref.transform; + var mainWidth = main.width, + mainPath = main.icon; + var maskWidth = mask.width, + maskPath = mask.icon; + + + var trans = transformForSvg({ transform: transform, containerWidth: maskWidth, iconWidth: mainWidth }); + + var maskRect = { + tag: 'rect', + attributes: _extends({}, ALL_SPACE, { + fill: 'white' + }) + }; + var maskInnerGroup = { + tag: 'g', + attributes: _extends({}, trans.inner), + children: [{ tag: 'path', attributes: _extends({}, mainPath.attributes, trans.path, { fill: 'black' }) }] + }; + var maskOuterGroup = { + tag: 'g', + attributes: _extends({}, trans.outer), + children: [maskInnerGroup] + }; + var maskId = 'mask-' + nextUniqueId(); + var clipId = 'clip-' + nextUniqueId(); + var maskTag = { + tag: 'mask', + attributes: _extends({}, ALL_SPACE, { + id: maskId, + maskUnits: 'userSpaceOnUse', + maskContentUnits: 'userSpaceOnUse' + }), + children: [maskRect, maskOuterGroup] + }; + var defs = { + tag: 'defs', + children: [{ tag: 'clipPath', attributes: { id: clipId }, children: [maskPath] }, maskTag] + }; + + children.push(defs, { tag: 'rect', attributes: _extends({ fill: 'currentColor', 'clip-path': 'url(#' + clipId + ')', mask: 'url(#' + maskId + ')' }, ALL_SPACE) }); + + return { + children: children, + attributes: attributes + }; +}; + +var makeIconStandard = function (_ref) { + var children = _ref.children, + attributes = _ref.attributes, + main = _ref.main, + transform = _ref.transform, + styles = _ref.styles; + + var styleString = joinStyles(styles); + + if (styleString.length > 0) { + attributes['style'] = styleString; + } + + if (transformIsMeaningful(transform)) { + var trans = transformForSvg({ transform: transform, containerWidth: main.width, iconWidth: main.width }); + children.push({ + tag: 'g', + attributes: _extends({}, trans.outer), + children: [{ + tag: 'g', + attributes: _extends({}, trans.inner), + children: [{ + tag: main.icon.tag, + children: main.icon.children, + attributes: _extends({}, main.icon.attributes, trans.path) + }] + }] + }); + } else { + children.push(main.icon); + } + + return { + children: children, + attributes: attributes + }; +}; + +var asIcon = function (_ref) { + var children = _ref.children, + main = _ref.main, + mask = _ref.mask, + attributes = _ref.attributes, + styles = _ref.styles, + transform = _ref.transform; + + if (transformIsMeaningful(transform) && main.found && !mask.found) { + var width = main.width, + height = main.height; + + var offset = { + x: width / height / 2, + y: 0.5 + }; + attributes['style'] = joinStyles(_extends({}, styles, { + 'transform-origin': offset.x + transform.x / 16 + 'em ' + (offset.y + transform.y / 16) + 'em' + })); + } + + return [{ + tag: 'svg', + attributes: attributes, + children: children + }]; +}; + +var asSymbol = function (_ref) { + var prefix = _ref.prefix, + iconName = _ref.iconName, + children = _ref.children, + attributes = _ref.attributes, + symbol = _ref.symbol; + + var id = symbol === true ? prefix + '-' + config$1.familyPrefix + '-' + iconName : symbol; + + return [{ + tag: 'svg', + attributes: { + style: 'display: none;' + }, + children: [{ + tag: 'symbol', + attributes: _extends({}, attributes, { id: id }), + children: children + }] + }]; +}; + +function makeInlineSvgAbstract(params) { + var _params$icons = params.icons, + main = _params$icons.main, + mask = _params$icons.mask, + prefix = params.prefix, + iconName = params.iconName, + transform = params.transform, + symbol = params.symbol, + title = params.title, + extra = params.extra, + _params$watchable = params.watchable, + watchable = _params$watchable === undefined ? false : _params$watchable; + + var _ref = mask.found ? mask : main, + width = _ref.width, + height = _ref.height; + + var widthClass = 'fa-w-' + Math.ceil(width / height * 16); + var attrClass = [config$1.replacementClass, iconName ? config$1.familyPrefix + '-' + iconName : '', widthClass].concat(extra.classes).join(' '); + + var content = { + children: [], + attributes: _extends({}, extra.attributes, { + 'data-prefix': prefix, + 'data-icon': iconName, + 'class': attrClass, + 'role': 'img', + 'xmlns': 'http://www.w3.org/2000/svg', + 'viewBox': '0 0 ' + width + ' ' + height + }) + }; + + if (watchable) { + content.attributes[DATA_FA_I2SVG] = ''; + } + + if (title) content.children.push({ tag: 'title', attributes: { id: content.attributes['aria-labelledby'] || 'title-' + nextUniqueId() }, children: [title] }); + + var args = _extends({}, content, { + prefix: prefix, + iconName: iconName, + main: main, + mask: mask, + transform: transform, + symbol: symbol, + styles: extra.styles + }); + + var _ref2 = mask.found && main.found ? makeIconMasking(args) : makeIconStandard(args), + children = _ref2.children, + attributes = _ref2.attributes; + + args.children = children; + args.attributes = attributes; + + if (symbol) { + return asSymbol(args); + } else { + return asIcon(args); + } +} + +function makeLayersTextAbstract(params) { + var content = params.content, + width = params.width, + height = params.height, + transform = params.transform, + title = params.title, + extra = params.extra, + _params$watchable2 = params.watchable, + watchable = _params$watchable2 === undefined ? false : _params$watchable2; + + + var attributes = _extends({}, extra.attributes, title ? { 'title': title } : {}, { + 'class': extra.classes.join(' ') + }); + + if (watchable) { + attributes[DATA_FA_I2SVG] = ''; + } + + var styles = _extends({}, extra.styles); + + if (transformIsMeaningful(transform)) { + styles['transform'] = transformForCss({ transform: transform, startCentered: true, width: width, height: height }); + styles['-webkit-transform'] = styles['transform']; + } + + var styleString = joinStyles(styles); + + if (styleString.length > 0) { + attributes['style'] = styleString; + } + + var val = []; + + val.push({ + tag: 'span', + attributes: attributes, + children: [content] + }); + + if (title) { + val.push({ tag: 'span', attributes: { class: 'sr-only' }, children: [title] }); + } + + return val; +} + +var noop$2 = function noop() {}; +var p = config$1.measurePerformance && PERFORMANCE && PERFORMANCE.mark && PERFORMANCE.measure ? PERFORMANCE : { mark: noop$2, measure: noop$2 }; +var preamble = 'FA "5.0.13"'; + +var begin = function begin(name) { + p.mark(preamble + ' ' + name + ' begins'); + return function () { + return end(name); + }; +}; + +var end = function end(name) { + p.mark(preamble + ' ' + name + ' ends'); + p.measure(preamble + ' ' + name, preamble + ' ' + name + ' begins', preamble + ' ' + name + ' ends'); +}; + +var perf = { begin: begin, end: end }; + +'use strict'; + +/** + * Internal helper to bind a function known to have 4 arguments + * to a given context. + */ +var bindInternal4 = function bindInternal4 (func, thisContext) { + return function (a, b, c, d) { + return func.call(thisContext, a, b, c, d); + }; +}; + +'use strict'; + + + +/** + * # Reduce + * + * A fast object `.reduce()` implementation. + * + * @param {Object} subject The object to reduce over. + * @param {Function} fn The reducer function. + * @param {mixed} initialValue The initial value for the reducer, defaults to subject[0]. + * @param {Object} thisContext The context for the reducer. + * @return {mixed} The final result. + */ +var reduce = function fastReduceObject (subject, fn, initialValue, thisContext) { + var keys = Object.keys(subject), + length = keys.length, + iterator = thisContext !== undefined ? bindInternal4(fn, thisContext) : fn, + i, key, result; + + if (initialValue === undefined) { + i = 1; + result = subject[keys[0]]; + } + else { + i = 0; + result = initialValue; + } + + for (; i < length; i++) { + key = keys[i]; + result = iterator(result, subject[key], key, subject); + } + + return result; +}; + +var styles$2 = namespace.styles; +var shims = namespace.shims; + + +var _byUnicode = {}; +var _byLigature = {}; +var _byOldName = {}; + +var build = function build() { + var lookup = function lookup(reducer) { + return reduce(styles$2, function (o, style, prefix) { + o[prefix] = reduce(style, reducer, {}); + return o; + }, {}); + }; + + _byUnicode = lookup(function (acc, icon, iconName) { + acc[icon[3]] = iconName; + + return acc; + }); + + _byLigature = lookup(function (acc, icon, iconName) { + var ligatures = icon[2]; + + acc[iconName] = iconName; + + ligatures.forEach(function (ligature) { + acc[ligature] = iconName; + }); + + return acc; + }); + + var hasRegular = 'far' in styles$2; + + _byOldName = reduce(shims, function (acc, shim) { + var oldName = shim[0]; + var prefix = shim[1]; + var iconName = shim[2]; + + if (prefix === 'far' && !hasRegular) { + prefix = 'fas'; + } + + acc[oldName] = { prefix: prefix, iconName: iconName }; + + return acc; + }, {}); +}; + +build(); + +function byUnicode(prefix, unicode) { + return _byUnicode[prefix][unicode]; +} + +function byLigature(prefix, ligature) { + return _byLigature[prefix][ligature]; +} + +function byOldName(name) { + return _byOldName[name] || { prefix: null, iconName: null }; +} + +var styles$1 = namespace.styles; + + +var emptyCanonicalIcon = function emptyCanonicalIcon() { + return { prefix: null, iconName: null, rest: [] }; +}; + +function getCanonicalIcon(values) { + return values.reduce(function (acc, cls) { + var iconName = getIconName(config$1.familyPrefix, cls); + + if (styles$1[cls]) { + acc.prefix = cls; + } else if (iconName) { + var shim = acc.prefix === 'fa' ? byOldName(iconName) : {}; + + acc.iconName = shim.iconName || iconName; + acc.prefix = shim.prefix || acc.prefix; + } else if (cls !== config$1.replacementClass && cls.indexOf('fa-w-') !== 0) { + acc.rest.push(cls); + } + + return acc; + }, emptyCanonicalIcon()); +} + +function iconFromMapping(mapping, prefix, iconName) { + if (mapping && mapping[prefix] && mapping[prefix][iconName]) { + return { + prefix: prefix, + iconName: iconName, + icon: mapping[prefix][iconName] + }; + } +} + +function toHtml(abstractNodes) { + var tag = abstractNodes.tag, + _abstractNodes$attrib = abstractNodes.attributes, + attributes = _abstractNodes$attrib === undefined ? {} : _abstractNodes$attrib, + _abstractNodes$childr = abstractNodes.children, + children = _abstractNodes$childr === undefined ? [] : _abstractNodes$childr; + + + if (typeof abstractNodes === 'string') { + return htmlEscape(abstractNodes); + } else { + return '<' + tag + ' ' + joinAttributes(attributes) + '>' + children.map(toHtml).join('') + ''; + } +} + +var noop$1 = function noop() {}; + +function isWatched(node) { + var i2svg = node.getAttribute ? node.getAttribute(DATA_FA_I2SVG) : null; + + return typeof i2svg === 'string'; +} + +function getMutator() { + if (config$1.autoReplaceSvg === true) { + return mutators.replace; + } + + var mutator = mutators[config$1.autoReplaceSvg]; + + return mutator || mutators.replace; +} + +var mutators = { + replace: function replace(mutation) { + var node = mutation[0]; + var abstract = mutation[1]; + var newOuterHTML = abstract.map(function (a) { + return toHtml(a); + }).join('\n'); + + if (node.parentNode && node.outerHTML) { + node.outerHTML = newOuterHTML + (config$1.keepOriginalSource && node.tagName.toLowerCase() !== 'svg' ? '' : ''); + } else if (node.parentNode) { + var newNode = document.createElement('span'); + node.parentNode.replaceChild(newNode, node); + newNode.outerHTML = newOuterHTML; + } + }, + nest: function nest(mutation) { + var node = mutation[0]; + var abstract = mutation[1]; + + // If we already have a replaced node we do not want to continue nesting within it. + // Short-circuit to the standard replacement + if (~classArray(node).indexOf(config$1.replacementClass)) { + return mutators.replace(mutation); + } + + var forSvg = new RegExp(config$1.familyPrefix + '-.*'); + + delete abstract[0].attributes.style; + + var splitClasses = abstract[0].attributes.class.split(' ').reduce(function (acc, cls) { + if (cls === config$1.replacementClass || cls.match(forSvg)) { + acc.toSvg.push(cls); + } else { + acc.toNode.push(cls); + } + + return acc; + }, { toNode: [], toSvg: [] }); + + abstract[0].attributes.class = splitClasses.toSvg.join(' '); + + var newInnerHTML = abstract.map(function (a) { + return toHtml(a); + }).join('\n'); + node.setAttribute('class', splitClasses.toNode.join(' ')); + node.setAttribute(DATA_FA_I2SVG, ''); + node.innerHTML = newInnerHTML; + } +}; + +function perform(mutations, callback) { + var callbackFunction = typeof callback === 'function' ? callback : noop$1; + + if (mutations.length === 0) { + callbackFunction(); + } else { + var frame = WINDOW.requestAnimationFrame || function (op) { + return op(); + }; + + frame(function () { + var mutator = getMutator(); + var mark = perf.begin('mutate'); + + mutations.map(mutator); + + mark(); + + callbackFunction(); + }); + } +} + +var disabled = false; + +function disableObservation(operation) { + disabled = true; + operation(); + disabled = false; +} + +var mo = null; + +function observe(options) { + if (!MUTATION_OBSERVER) return; + + var treeCallback = options.treeCallback, + nodeCallback = options.nodeCallback, + pseudoElementsCallback = options.pseudoElementsCallback; + + + mo = new MUTATION_OBSERVER(function (objects) { + if (disabled) return; + + toArray(objects).forEach(function (mutationRecord) { + if (mutationRecord.type === 'childList' && mutationRecord.addedNodes.length > 0 && !isWatched(mutationRecord.addedNodes[0])) { + if (config$1.searchPseudoElements) { + pseudoElementsCallback(mutationRecord.target); + } + + treeCallback(mutationRecord.target); + } + + if (mutationRecord.type === 'attributes' && mutationRecord.target.parentNode && config$1.searchPseudoElements) { + pseudoElementsCallback(mutationRecord.target.parentNode); + } + + if (mutationRecord.type === 'attributes' && isWatched(mutationRecord.target) && ~ATTRIBUTES_WATCHED_FOR_MUTATION.indexOf(mutationRecord.attributeName)) { + if (mutationRecord.attributeName === 'class') { + var _getCanonicalIcon = getCanonicalIcon(classArray(mutationRecord.target)), + prefix = _getCanonicalIcon.prefix, + iconName = _getCanonicalIcon.iconName; + + if (prefix) mutationRecord.target.setAttribute('data-prefix', prefix); + if (iconName) mutationRecord.target.setAttribute('data-icon', iconName); + } else { + nodeCallback(mutationRecord.target); + } + } + }); + }); + + if (!IS_DOM) return; + + mo.observe(DOCUMENT.getElementsByTagName('body')[0], { + childList: true, attributes: true, characterData: true, subtree: true + }); +} + +function disconnect() { + if (!mo) return; + + mo.disconnect(); +} + +var styleParser = function (node) { + var style = node.getAttribute('style'); + + var val = []; + + if (style) { + val = style.split(';').reduce(function (acc, style) { + var styles = style.split(':'); + var prop = styles[0]; + var value = styles.slice(1); + + if (prop && value.length > 0) { + acc[prop] = value.join(':').trim(); + } + + return acc; + }, {}); + } + + return val; +}; + +function toHex(unicode) { + var result = ''; + + for (var i = 0; i < unicode.length; i++) { + var hex = unicode.charCodeAt(i).toString(16); + result += ('000' + hex).slice(-4); + } + + return result; +} + +var classParser = function (node) { + var existingPrefix = node.getAttribute('data-prefix'); + var existingIconName = node.getAttribute('data-icon'); + var innerText = node.innerText !== undefined ? node.innerText.trim() : ''; + + var val = getCanonicalIcon(classArray(node)); + + if (existingPrefix && existingIconName) { + val.prefix = existingPrefix; + val.iconName = existingIconName; + } + + if (val.prefix && innerText.length > 1) { + val.iconName = byLigature(val.prefix, node.innerText); + } else if (val.prefix && innerText.length === 1) { + val.iconName = byUnicode(val.prefix, toHex(node.innerText)); + } + + return val; +}; + +var parseTransformString = function parseTransformString(transformString) { + var transform = { + size: 16, + x: 0, + y: 0, + flipX: false, + flipY: false, + rotate: 0 + }; + + if (!transformString) { + return transform; + } else { + return transformString.toLowerCase().split(' ').reduce(function (acc, n) { + var parts = n.toLowerCase().split('-'); + var first = parts[0]; + var rest = parts.slice(1).join('-'); + + if (first && rest === 'h') { + acc.flipX = true; + return acc; + } + + if (first && rest === 'v') { + acc.flipY = true; + return acc; + } + + rest = parseFloat(rest); + + if (isNaN(rest)) { + return acc; + } + + switch (first) { + case 'grow': + acc.size = acc.size + rest; + break; + case 'shrink': + acc.size = acc.size - rest; + break; + case 'left': + acc.x = acc.x - rest; + break; + case 'right': + acc.x = acc.x + rest; + break; + case 'up': + acc.y = acc.y - rest; + break; + case 'down': + acc.y = acc.y + rest; + break; + case 'rotate': + acc.rotate = acc.rotate + rest; + break; + } + + return acc; + }, transform); + } +}; + +var transformParser = function (node) { + return parseTransformString(node.getAttribute('data-fa-transform')); +}; + +var symbolParser = function (node) { + var symbol = node.getAttribute('data-fa-symbol'); + + return symbol === null ? false : symbol === '' ? true : symbol; +}; + +var attributesParser = function (node) { + var extraAttributes = toArray(node.attributes).reduce(function (acc, attr) { + if (acc.name !== 'class' && acc.name !== 'style') { + acc[attr.name] = attr.value; + } + return acc; + }, {}); + + var title = node.getAttribute('title'); + + if (config$1.autoA11y) { + if (title) { + extraAttributes['aria-labelledby'] = config$1.replacementClass + '-title-' + nextUniqueId(); + } else { + extraAttributes['aria-hidden'] = 'true'; + } + } + + return extraAttributes; +}; + +var maskParser = function (node) { + var mask = node.getAttribute('data-fa-mask'); + + if (!mask) { + return emptyCanonicalIcon(); + } else { + return getCanonicalIcon(mask.split(' ').map(function (i) { + return i.trim(); + })); + } +}; + +function parseMeta(node) { + var _classParser = classParser(node), + iconName = _classParser.iconName, + prefix = _classParser.prefix, + extraClasses = _classParser.rest; + + var extraStyles = styleParser(node); + var transform = transformParser(node); + var symbol = symbolParser(node); + var extraAttributes = attributesParser(node); + var mask = maskParser(node); + + return { + iconName: iconName, + title: node.getAttribute('title'), + prefix: prefix, + transform: transform, + symbol: symbol, + mask: mask, + extra: { + classes: extraClasses, + styles: extraStyles, + attributes: extraAttributes + } + }; +} + +function MissingIcon(error) { + this.name = 'MissingIcon'; + this.message = error || 'Icon unavailable'; + this.stack = new Error().stack; +} + +MissingIcon.prototype = Object.create(Error.prototype); +MissingIcon.prototype.constructor = MissingIcon; + +var FILL = { fill: 'currentColor' }; +var ANIMATION_BASE = { + attributeType: 'XML', + repeatCount: 'indefinite', + dur: '2s' +}; +var RING = { + tag: 'path', + attributes: _extends({}, FILL, { + d: 'M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z' + }) +}; +var OPACITY_ANIMATE = _extends({}, ANIMATION_BASE, { + attributeName: 'opacity' +}); +var DOT = { + tag: 'circle', + attributes: _extends({}, FILL, { + cx: '256', + cy: '364', + r: '28' + }), + children: [{ tag: 'animate', attributes: _extends({}, ANIMATION_BASE, { attributeName: 'r', values: '28;14;28;28;14;28;' }) }, { tag: 'animate', attributes: _extends({}, OPACITY_ANIMATE, { values: '1;0;1;1;0;1;' }) }] +}; +var QUESTION = { + tag: 'path', + attributes: _extends({}, FILL, { + opacity: '1', + d: 'M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z' + }), + children: [{ tag: 'animate', attributes: _extends({}, OPACITY_ANIMATE, { values: '1;0;0;0;0;1;' }) }] +}; +var EXCLAMATION = { + tag: 'path', + attributes: _extends({}, FILL, { + opacity: '0', + d: 'M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z' + }), + children: [{ tag: 'animate', attributes: _extends({}, OPACITY_ANIMATE, { values: '0;0;1;1;0;0;' }) }] +}; + +var missing = { tag: 'g', children: [RING, DOT, QUESTION, EXCLAMATION] }; + +var styles = namespace.styles; + +var LAYERS_TEXT_CLASSNAME = 'fa-layers-text'; +var FONT_FAMILY_PATTERN = /Font Awesome 5 (Solid|Regular|Light|Brands)/; +var STYLE_TO_PREFIX = { + 'Solid': 'fas', + 'Regular': 'far', + 'Light': 'fal', + 'Brands': 'fab' +}; + +function findIcon(iconName, prefix) { + var val = { + found: false, + width: 512, + height: 512, + icon: missing + }; + + if (iconName && prefix && styles[prefix] && styles[prefix][iconName]) { + var icon = styles[prefix][iconName]; + var width = icon[0]; + var height = icon[1]; + var vectorData = icon.slice(4); + + val = { + found: true, + width: width, + height: height, + icon: { tag: 'path', attributes: { fill: 'currentColor', d: vectorData[0] } } + }; + } else if (iconName && prefix && !config$1.showMissingIcons) { + throw new MissingIcon('Icon is missing for prefix ' + prefix + ' with icon name ' + iconName); + } + + return val; +} + +function generateSvgReplacementMutation(node, nodeMeta) { + var iconName = nodeMeta.iconName, + title = nodeMeta.title, + prefix = nodeMeta.prefix, + transform = nodeMeta.transform, + symbol = nodeMeta.symbol, + mask = nodeMeta.mask, + extra = nodeMeta.extra; + + + return [node, makeInlineSvgAbstract({ + icons: { + main: findIcon(iconName, prefix), + mask: findIcon(mask.iconName, mask.prefix) + }, + prefix: prefix, + iconName: iconName, + transform: transform, + symbol: symbol, + mask: mask, + title: title, + extra: extra, + watchable: true + })]; +} + +function generateLayersText(node, nodeMeta) { + var title = nodeMeta.title, + transform = nodeMeta.transform, + extra = nodeMeta.extra; + + + var width = null; + var height = null; + + if (IS_IE) { + var computedFontSize = parseInt(getComputedStyle(node).fontSize, 10); + var boundingClientRect = node.getBoundingClientRect(); + width = boundingClientRect.width / computedFontSize; + height = boundingClientRect.height / computedFontSize; + } + + if (config$1.autoA11y && !title) { + extra.attributes['aria-hidden'] = 'true'; + } + + return [node, makeLayersTextAbstract({ + content: node.innerHTML, + width: width, + height: height, + transform: transform, + title: title, + extra: extra, + watchable: true + })]; +} + +function generateMutation(node) { + var nodeMeta = parseMeta(node); + + if (~nodeMeta.extra.classes.indexOf(LAYERS_TEXT_CLASSNAME)) { + return generateLayersText(node, nodeMeta); + } else { + return generateSvgReplacementMutation(node, nodeMeta); + } +} + +function remove(node) { + if (typeof node.remove === 'function') { + node.remove(); + } else if (node && node.parentNode) { + node.parentNode.removeChild(node); + } +} + +function searchPseudoElements(root) { + if (!IS_DOM) return; + + var end = perf.begin('searchPseudoElements'); + + disableObservation(function () { + toArray(root.querySelectorAll('*')).forEach(function (node) { + [':before', ':after'].forEach(function (pos) { + var styles = WINDOW.getComputedStyle(node, pos); + var fontFamily = styles.getPropertyValue('font-family').match(FONT_FAMILY_PATTERN); + var children = toArray(node.children); + var pseudoElement = children.filter(function (c) { + return c.getAttribute(DATA_FA_PSEUDO_ELEMENT) === pos; + })[0]; + + if (pseudoElement) { + if (pseudoElement.nextSibling && pseudoElement.nextSibling.textContent.indexOf(DATA_FA_PSEUDO_ELEMENT) > -1) { + remove(pseudoElement.nextSibling); + } + remove(pseudoElement); + pseudoElement = null; + } + + if (fontFamily && !pseudoElement) { + var content = styles.getPropertyValue('content'); + var i = DOCUMENT.createElement('i'); + i.setAttribute('class', '' + STYLE_TO_PREFIX[fontFamily[1]]); + i.setAttribute(DATA_FA_PSEUDO_ELEMENT, pos); + i.innerText = content.length === 3 ? content.substr(1, 1) : content; + if (pos === ':before') { + node.insertBefore(i, node.firstChild); + } else { + node.appendChild(i); + } + } + }); + }); + }); + + end(); +} + +function onTree(root) { + var callback = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + + if (!IS_DOM) return; + + var htmlClassList = DOCUMENT.documentElement.classList; + var hclAdd = function hclAdd(suffix) { + return htmlClassList.add(HTML_CLASS_I2SVG_BASE_CLASS + '-' + suffix); + }; + var hclRemove = function hclRemove(suffix) { + return htmlClassList.remove(HTML_CLASS_I2SVG_BASE_CLASS + '-' + suffix); + }; + var prefixes = Object.keys(styles); + var prefixesDomQuery = ['.' + LAYERS_TEXT_CLASSNAME + ':not([' + DATA_FA_I2SVG + '])'].concat(prefixes.map(function (p) { + return '.' + p + ':not([' + DATA_FA_I2SVG + '])'; + })).join(', '); + + if (prefixesDomQuery.length === 0) { + return; + } + + var candidates = toArray(root.querySelectorAll(prefixesDomQuery)); + + if (candidates.length > 0) { + hclAdd('pending'); + hclRemove('complete'); + } else { + return; + } + + var mark = perf.begin('onTree'); + + var mutations = candidates.reduce(function (acc, node) { + try { + var mutation = generateMutation(node); + + if (mutation) { + acc.push(mutation); + } + } catch (e) { + if (!PRODUCTION) { + if (e instanceof MissingIcon) { + console.error(e); + } + } + } + + return acc; + }, []); + + mark(); + + perform(mutations, function () { + hclAdd('active'); + hclAdd('complete'); + hclRemove('pending'); + + if (typeof callback === 'function') callback(); + }); +} + +function onNode(node) { + var callback = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + + var mutation = generateMutation(node); + + if (mutation) { + perform([mutation], callback); + } +} + +var baseStyles = "svg:not(:root).svg-inline--fa {\n overflow: visible; }\n\n.svg-inline--fa {\n display: inline-block;\n font-size: inherit;\n height: 1em;\n overflow: visible;\n vertical-align: -.125em; }\n .svg-inline--fa.fa-lg {\n vertical-align: -.225em; }\n .svg-inline--fa.fa-w-1 {\n width: 0.0625em; }\n .svg-inline--fa.fa-w-2 {\n width: 0.125em; }\n .svg-inline--fa.fa-w-3 {\n width: 0.1875em; }\n .svg-inline--fa.fa-w-4 {\n width: 0.25em; }\n .svg-inline--fa.fa-w-5 {\n width: 0.3125em; }\n .svg-inline--fa.fa-w-6 {\n width: 0.375em; }\n .svg-inline--fa.fa-w-7 {\n width: 0.4375em; }\n .svg-inline--fa.fa-w-8 {\n width: 0.5em; }\n .svg-inline--fa.fa-w-9 {\n width: 0.5625em; }\n .svg-inline--fa.fa-w-10 {\n width: 0.625em; }\n .svg-inline--fa.fa-w-11 {\n width: 0.6875em; }\n .svg-inline--fa.fa-w-12 {\n width: 0.75em; }\n .svg-inline--fa.fa-w-13 {\n width: 0.8125em; }\n .svg-inline--fa.fa-w-14 {\n width: 0.875em; }\n .svg-inline--fa.fa-w-15 {\n width: 0.9375em; }\n .svg-inline--fa.fa-w-16 {\n width: 1em; }\n .svg-inline--fa.fa-w-17 {\n width: 1.0625em; }\n .svg-inline--fa.fa-w-18 {\n width: 1.125em; }\n .svg-inline--fa.fa-w-19 {\n width: 1.1875em; }\n .svg-inline--fa.fa-w-20 {\n width: 1.25em; }\n .svg-inline--fa.fa-pull-left {\n margin-right: .3em;\n width: auto; }\n .svg-inline--fa.fa-pull-right {\n margin-left: .3em;\n width: auto; }\n .svg-inline--fa.fa-border {\n height: 1.5em; }\n .svg-inline--fa.fa-li {\n width: 2em; }\n .svg-inline--fa.fa-fw {\n width: 1.25em; }\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0; }\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -.125em;\n width: 1em; }\n .fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center; }\n\n.fa-layers-text, .fa-layers-counter {\n display: inline-block;\n position: absolute;\n text-align: center; }\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center; }\n\n.fa-layers-counter {\n background-color: #ff253a;\n border-radius: 1em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #fff;\n height: 1.5em;\n line-height: 1;\n max-width: 5em;\n min-width: 1.5em;\n overflow: hidden;\n padding: .25em;\n right: 0;\n text-overflow: ellipsis;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right; }\n\n.fa-layers-bottom-right {\n bottom: 0;\n right: 0;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right; }\n\n.fa-layers-bottom-left {\n bottom: 0;\n left: 0;\n right: auto;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left; }\n\n.fa-layers-top-right {\n right: 0;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right; }\n\n.fa-layers-top-left {\n left: 0;\n right: auto;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top left;\n transform-origin: top left; }\n\n.fa-lg {\n font-size: 1.33333em;\n line-height: 0.75em;\n vertical-align: -.0667em; }\n\n.fa-xs {\n font-size: .75em; }\n\n.fa-sm {\n font-size: .875em; }\n\n.fa-1x {\n font-size: 1em; }\n\n.fa-2x {\n font-size: 2em; }\n\n.fa-3x {\n font-size: 3em; }\n\n.fa-4x {\n font-size: 4em; }\n\n.fa-5x {\n font-size: 5em; }\n\n.fa-6x {\n font-size: 6em; }\n\n.fa-7x {\n font-size: 7em; }\n\n.fa-8x {\n font-size: 8em; }\n\n.fa-9x {\n font-size: 9em; }\n\n.fa-10x {\n font-size: 10em; }\n\n.fa-fw {\n text-align: center;\n width: 1.25em; }\n\n.fa-ul {\n list-style-type: none;\n margin-left: 2.5em;\n padding-left: 0; }\n .fa-ul > li {\n position: relative; }\n\n.fa-li {\n left: -2em;\n position: absolute;\n text-align: center;\n width: 2em;\n line-height: inherit; }\n\n.fa-border {\n border: solid 0.08em #eee;\n border-radius: .1em;\n padding: .2em .25em .15em; }\n\n.fa-pull-left {\n float: left; }\n\n.fa-pull-right {\n float: right; }\n\n.fa.fa-pull-left,\n.fas.fa-pull-left,\n.far.fa-pull-left,\n.fal.fa-pull-left,\n.fab.fa-pull-left {\n margin-right: .3em; }\n\n.fa.fa-pull-right,\n.fas.fa-pull-right,\n.far.fa-pull-right,\n.fal.fa-pull-right,\n.fab.fa-pull-right {\n margin-left: .3em; }\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear; }\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8); }\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n.fa-rotate-90 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg); }\n\n.fa-rotate-180 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg); }\n\n.fa-rotate-270 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg); }\n\n.fa-flip-horizontal {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1); }\n\n.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1); }\n\n.fa-flip-horizontal.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1); }\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n -webkit-filter: none;\n filter: none; }\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n position: relative;\n width: 2em; }\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0; }\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1em; }\n\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2em; }\n\n.fa-inverse {\n color: #fff; }\n\n.sr-only {\n border: 0;\n clip: rect(0, 0, 0, 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px; }\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n clip: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n position: static;\n width: auto; }\n"; + +var css = function () { + var dfp = DEFAULT_FAMILY_PREFIX; + var drc = DEFAULT_REPLACEMENT_CLASS; + var fp = config$1.familyPrefix; + var rc = config$1.replacementClass; + var s = baseStyles; + + if (fp !== dfp || rc !== drc) { + var dPatt = new RegExp('\\.' + dfp + '\\-', 'g'); + var rPatt = new RegExp('\\.' + drc, 'g'); + + s = s.replace(dPatt, '.' + fp + '-').replace(rPatt, '.' + rc); + } + + return s; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var Library = function () { + function Library() { + classCallCheck(this, Library); + + this.definitions = {}; + } + + createClass(Library, [{ + key: 'add', + value: function add() { + var _this = this; + + for (var _len = arguments.length, definitions = Array(_len), _key = 0; _key < _len; _key++) { + definitions[_key] = arguments[_key]; + } + + var additions = definitions.reduce(this._pullDefinitions, {}); + + Object.keys(additions).forEach(function (key) { + _this.definitions[key] = _extends({}, _this.definitions[key] || {}, additions[key]); + define(key, additions[key]); + }); + } + }, { + key: 'reset', + value: function reset() { + this.definitions = {}; + } + }, { + key: '_pullDefinitions', + value: function _pullDefinitions(additions, definition) { + var normalized = definition.prefix && definition.iconName && definition.icon ? { 0: definition } : definition; + + Object.keys(normalized).map(function (key) { + var _normalized$key = normalized[key], + prefix = _normalized$key.prefix, + iconName = _normalized$key.iconName, + icon = _normalized$key.icon; + + + if (!additions[prefix]) additions[prefix] = {}; + + additions[prefix][iconName] = icon; + }); + + return additions; + } + }]); + return Library; +}(); + +function prepIcon(icon) { + var width = icon[0]; + var height = icon[1]; + var vectorData = icon.slice(4); + + return { + found: true, + width: width, + height: height, + icon: { tag: 'path', attributes: { fill: 'currentColor', d: vectorData[0] } } + }; +} + +var _cssInserted = false; + +function ensureCss() { + if (!config$1.autoAddCss) { + return; + } + + if (!_cssInserted) { + insertCss(css()); + } + + _cssInserted = true; +} + +function apiObject(val, abstractCreator) { + Object.defineProperty(val, 'abstract', { + get: abstractCreator + }); + + Object.defineProperty(val, 'html', { + get: function get() { + return val.abstract.map(function (a) { + return toHtml(a); + }); + } + }); + + Object.defineProperty(val, 'node', { + get: function get() { + if (!IS_DOM) return; + + var container = DOCUMENT.createElement('div'); + container.innerHTML = val.html; + return container.children; + } + }); + + return val; +} + +function findIconDefinition(params) { + var _params$prefix = params.prefix, + prefix = _params$prefix === undefined ? 'fa' : _params$prefix, + iconName = params.iconName; + + + if (!iconName) return; + + return iconFromMapping(library.definitions, prefix, iconName) || iconFromMapping(namespace.styles, prefix, iconName); +} + +function resolveIcons(next) { + return function (maybeIconDefinition) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + + var iconDefinition = (maybeIconDefinition || {}).icon ? maybeIconDefinition : findIconDefinition(maybeIconDefinition || {}); + + var mask = params.mask; + + + if (mask) { + mask = (mask || {}).icon ? mask : findIconDefinition(mask || {}); + } + + return next(iconDefinition, _extends({}, params, { mask: mask })); + }; +} + +var library = new Library(); + +var noAuto = function noAuto() { + auto(false); + disconnect(); +}; + +var dom = { + i2svg: function i2svg() { + var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + + if (IS_DOM) { + ensureCss(); + + var _params$node = params.node, + node = _params$node === undefined ? DOCUMENT : _params$node, + _params$callback = params.callback, + callback = _params$callback === undefined ? function () {} : _params$callback; + + + if (config$1.searchPseudoElements) { + searchPseudoElements(node); + } + + onTree(node, callback); + } + }, + + css: css, + + insertCss: function insertCss$$1() { + insertCss(css()); + } +}; + +var parse = { + transform: function transform(transformString) { + return parseTransformString(transformString); + } +}; + +var icon = resolveIcons(function (iconDefinition) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _params$transform = params.transform, + transform = _params$transform === undefined ? meaninglessTransform : _params$transform, + _params$symbol = params.symbol, + symbol = _params$symbol === undefined ? false : _params$symbol, + _params$mask = params.mask, + mask = _params$mask === undefined ? null : _params$mask, + _params$title = params.title, + title = _params$title === undefined ? null : _params$title, + _params$classes = params.classes, + classes = _params$classes === undefined ? [] : _params$classes, + _params$attributes = params.attributes, + attributes = _params$attributes === undefined ? {} : _params$attributes, + _params$styles = params.styles, + styles = _params$styles === undefined ? {} : _params$styles; + + + if (!iconDefinition) return; + + var prefix = iconDefinition.prefix, + iconName = iconDefinition.iconName, + icon = iconDefinition.icon; + + + return apiObject(_extends({ type: 'icon' }, iconDefinition), function () { + ensureCss(); + + if (config$1.autoA11y) { + if (title) { + attributes['aria-labelledby'] = config$1.replacementClass + '-title-' + nextUniqueId(); + } else { + attributes['aria-hidden'] = 'true'; + } + } + + return makeInlineSvgAbstract({ + icons: { + main: prepIcon(icon), + mask: mask ? prepIcon(mask.icon) : { found: false, width: null, height: null, icon: {} } + }, + prefix: prefix, + iconName: iconName, + transform: _extends({}, meaninglessTransform, transform), + symbol: symbol, + title: title, + extra: { + attributes: attributes, + styles: styles, + classes: classes + } + }); + }); +}); + +var text = function text(content) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _params$transform2 = params.transform, + transform = _params$transform2 === undefined ? meaninglessTransform : _params$transform2, + _params$title2 = params.title, + title = _params$title2 === undefined ? null : _params$title2, + _params$classes2 = params.classes, + classes = _params$classes2 === undefined ? [] : _params$classes2, + _params$attributes2 = params.attributes, + attributes = _params$attributes2 === undefined ? {} : _params$attributes2, + _params$styles2 = params.styles, + styles = _params$styles2 === undefined ? {} : _params$styles2; + + + return apiObject({ type: 'text', content: content }, function () { + ensureCss(); + + return makeLayersTextAbstract({ + content: content, + transform: _extends({}, meaninglessTransform, transform), + title: title, + extra: { + attributes: attributes, + styles: styles, + classes: [config$1.familyPrefix + '-layers-text'].concat(toConsumableArray(classes)) + } + }); + }); +}; + +var layer = function layer(assembler) { + return apiObject({ type: 'layer' }, function () { + ensureCss(); + + var children = []; + + assembler(function (args) { + Array.isArray(args) ? args.map(function (a) { + children = children.concat(a.abstract); + }) : children = children.concat(args.abstract); + }); + + return [{ + tag: 'span', + attributes: { class: config$1.familyPrefix + '-layers' }, + children: children + }]; + }); +}; + +var api$1 = { + noAuto: noAuto, + dom: dom, + library: library, + parse: parse, + findIconDefinition: findIconDefinition, + icon: icon, + text: text, + layer: layer +}; + +var autoReplace = function autoReplace() { + if (IS_DOM && config$1.autoReplaceSvg) api$1.dom.i2svg({ node: DOCUMENT }); +}; + +function bootstrap() { + if (IS_BROWSER) { + if (!WINDOW.FontAwesome) { + WINDOW.FontAwesome = api$1; + } + + domready(function () { + if (Object.keys(namespace.styles).length > 0) { + autoReplace(); + } + + if (config$1.observeMutations && typeof MutationObserver === 'function') { + observe({ + treeCallback: onTree, + nodeCallback: onNode, + pseudoElementsCallback: searchPseudoElements + }); + } + }); + } + + namespace.hooks = _extends({}, namespace.hooks, { + + addPack: function addPack(prefix, icons) { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, icons); + + build(); + autoReplace(); + }, + + addShims: function addShims(shims) { + var _namespace$shims; + + (_namespace$shims = namespace.shims).push.apply(_namespace$shims, toConsumableArray(shims)); + + build(); + autoReplace(); + } + }); +} + +Object.defineProperty(api$1, 'config', { + get: function get() { + return config$1; + }, + + set: function set(newConfig) { + update(newConfig); + } +}); + +if (IS_DOM) bunker(bootstrap); + +var config = api$1.config; + +export { config, icon, noAuto, layer, text, library, dom, parse, findIconDefinition }; +export default api$1; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/index.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/index.js new file mode 100644 index 0000000000..8b962e6e8d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/index.js @@ -0,0 +1,1823 @@ +/*! + * Font Awesome Free 5.0.13 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : + typeof define === 'function' && define.amd ? define(['exports'], factory) : + (factory((global.fontawesome = {}))); +}(this, (function (exports) { 'use strict'; + +var noop = function noop() {}; + +var _WINDOW = {}; +var _DOCUMENT = {}; +var _MUTATION_OBSERVER$1 = null; +var _PERFORMANCE = { mark: noop, measure: noop }; + +try { + if (typeof window !== 'undefined') _WINDOW = window; + if (typeof document !== 'undefined') _DOCUMENT = document; + if (typeof MutationObserver !== 'undefined') _MUTATION_OBSERVER$1 = MutationObserver; + if (typeof performance !== 'undefined') _PERFORMANCE = performance; +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; +var DOCUMENT = _DOCUMENT; +var MUTATION_OBSERVER = _MUTATION_OBSERVER$1; +var PERFORMANCE = _PERFORMANCE; +var IS_BROWSER = !!WINDOW.document; +var IS_DOM = !!DOCUMENT.documentElement && !!DOCUMENT.head && typeof DOCUMENT.addEventListener === 'function' && typeof DOCUMENT.createElement === 'function'; +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; +var UNITS_IN_GRID = 16; +var DEFAULT_FAMILY_PREFIX = 'fa'; +var DEFAULT_REPLACEMENT_CLASS = 'svg-inline--fa'; +var DATA_FA_I2SVG = 'data-fa-i2svg'; +var DATA_FA_PSEUDO_ELEMENT = 'data-fa-pseudo-element'; +var HTML_CLASS_I2SVG_BASE_CLASS = 'fontawesome-i2svg'; + +var PRODUCTION = function () { + try { + return process.env.NODE_ENV === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + +var ATTRIBUTES_WATCHED_FOR_MUTATION = ['class', 'data-prefix', 'data-icon', 'data-fa-transform', 'data-fa-mask']; + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +var classCallCheck = function (instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function"); + } +}; + +var createClass = function () { + function defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } + } + + return function (Constructor, protoProps, staticProps) { + if (protoProps) defineProperties(Constructor.prototype, protoProps); + if (staticProps) defineProperties(Constructor, staticProps); + return Constructor; + }; +}(); + + + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + + + +var toConsumableArray = function (arr) { + if (Array.isArray(arr)) { + for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) arr2[i] = arr[i]; + + return arr2; + } else { + return Array.from(arr); + } +}; + +var initial = WINDOW.FontAwesomeConfig || {}; +var initialKeys = Object.keys(initial); + +var _default = _extends({ + familyPrefix: DEFAULT_FAMILY_PREFIX, + replacementClass: DEFAULT_REPLACEMENT_CLASS, + autoReplaceSvg: true, + autoAddCss: true, + autoA11y: true, + searchPseudoElements: false, + observeMutations: true, + keepOriginalSource: true, + measurePerformance: false, + showMissingIcons: true +}, initial); + +if (!_default.autoReplaceSvg) _default.observeMutations = false; + +var config$1 = _extends({}, _default); + +WINDOW.FontAwesomeConfig = config$1; + +function update(newConfig) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _params$asNewDefault = params.asNewDefault, + asNewDefault = _params$asNewDefault === undefined ? false : _params$asNewDefault; + + var validKeys = Object.keys(config$1); + var ok = asNewDefault ? function (k) { + return ~validKeys.indexOf(k) && !~initialKeys.indexOf(k); + } : function (k) { + return ~validKeys.indexOf(k); + }; + + Object.keys(newConfig).forEach(function (configKey) { + if (ok(configKey)) config$1[configKey] = newConfig[configKey]; + }); +} + +function auto(value) { + update({ + autoReplaceSvg: value, + observeMutations: value + }); +} + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var functions = []; +var listener = function listener() { + DOCUMENT.removeEventListener('DOMContentLoaded', listener); + loaded = 1; + functions.map(function (fn) { + return fn(); + }); +}; + +var loaded = false; + +if (IS_DOM) { + loaded = (DOCUMENT.documentElement.doScroll ? /^loaded|^c/ : /^loaded|^i|^c/).test(DOCUMENT.readyState); + + if (!loaded) DOCUMENT.addEventListener('DOMContentLoaded', listener); +} + +var domready = function (fn) { + if (!IS_DOM) return; + loaded ? setTimeout(fn, 0) : functions.push(fn); +}; + +var d = UNITS_IN_GRID; + +var meaninglessTransform = { + size: 16, + x: 0, + y: 0, + rotate: 0, + flipX: false, + flipY: false +}; + +function isReserved(name) { + return ~RESERVED_CLASSES.indexOf(name); +} + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +function insertCss(css) { + if (!css || !IS_DOM) { + return; + } + + var style = DOCUMENT.createElement('style'); + style.setAttribute('type', 'text/css'); + style.innerHTML = css; + + var headChildren = DOCUMENT.head.childNodes; + var beforeChild = null; + + for (var i = headChildren.length - 1; i > -1; i--) { + var child = headChildren[i]; + var tagName = (child.tagName || '').toUpperCase(); + if (['STYLE', 'LINK'].indexOf(tagName) > -1) { + beforeChild = child; + } + } + + DOCUMENT.head.insertBefore(style, beforeChild); + + return css; +} + +var _uniqueId = 0; + +function nextUniqueId() { + _uniqueId++; + + return _uniqueId; +} + +function toArray(obj) { + var array = []; + + for (var i = (obj || []).length >>> 0; i--;) { + array[i] = obj[i]; + } + + return array; +} + +function classArray(node) { + if (node.classList) { + return toArray(node.classList); + } else { + return (node.getAttribute('class') || '').split(' ').filter(function (i) { + return i; + }); + } +} + +function getIconName(familyPrefix, cls) { + var parts = cls.split('-'); + var prefix = parts[0]; + var iconName = parts.slice(1).join('-'); + + if (prefix === familyPrefix && iconName !== '' && !isReserved(iconName)) { + return iconName; + } else { + return null; + } +} + +function htmlEscape(str) { + return ('' + str).replace(/&/g, '&').replace(/"/g, '"').replace(/'/g, ''').replace(//g, '>'); +} + +function joinAttributes(attributes) { + return Object.keys(attributes || {}).reduce(function (acc, attributeName) { + return acc + (attributeName + '="' + htmlEscape(attributes[attributeName]) + '" '); + }, '').trim(); +} + +function joinStyles(styles) { + return Object.keys(styles || {}).reduce(function (acc, styleName) { + return acc + (styleName + ': ' + styles[styleName] + ';'); + }, ''); +} + +function transformIsMeaningful(transform) { + return transform.size !== meaninglessTransform.size || transform.x !== meaninglessTransform.x || transform.y !== meaninglessTransform.y || transform.rotate !== meaninglessTransform.rotate || transform.flipX || transform.flipY; +} + +function transformForSvg(_ref) { + var transform = _ref.transform, + containerWidth = _ref.containerWidth, + iconWidth = _ref.iconWidth; + + var outer = { + transform: 'translate(' + containerWidth / 2 + ' 256)' + }; + var innerTranslate = 'translate(' + transform.x * 32 + ', ' + transform.y * 32 + ') '; + var innerScale = 'scale(' + transform.size / 16 * (transform.flipX ? -1 : 1) + ', ' + transform.size / 16 * (transform.flipY ? -1 : 1) + ') '; + var innerRotate = 'rotate(' + transform.rotate + ' 0 0)'; + var inner = { + transform: innerTranslate + ' ' + innerScale + ' ' + innerRotate + }; + var path = { + transform: 'translate(' + iconWidth / 2 * -1 + ' -256)' + }; + return { + outer: outer, + inner: inner, + path: path + }; +} + +function transformForCss(_ref2) { + var transform = _ref2.transform, + _ref2$width = _ref2.width, + width = _ref2$width === undefined ? UNITS_IN_GRID : _ref2$width, + _ref2$height = _ref2.height, + height = _ref2$height === undefined ? UNITS_IN_GRID : _ref2$height, + _ref2$startCentered = _ref2.startCentered, + startCentered = _ref2$startCentered === undefined ? false : _ref2$startCentered; + + var val = ''; + + if (startCentered && IS_IE) { + val += 'translate(' + (transform.x / d - width / 2) + 'em, ' + (transform.y / d - height / 2) + 'em) '; + } else if (startCentered) { + val += 'translate(calc(-50% + ' + transform.x / d + 'em), calc(-50% + ' + transform.y / d + 'em)) '; + } else { + val += 'translate(' + transform.x / d + 'em, ' + transform.y / d + 'em) '; + } + + val += 'scale(' + transform.size / d * (transform.flipX ? -1 : 1) + ', ' + transform.size / d * (transform.flipY ? -1 : 1) + ') '; + val += 'rotate(' + transform.rotate + 'deg) '; + + return val; +} + +var ALL_SPACE = { + x: 0, + y: 0, + width: '100%', + height: '100%' +}; + +var makeIconMasking = function (_ref) { + var children = _ref.children, + attributes = _ref.attributes, + main = _ref.main, + mask = _ref.mask, + transform = _ref.transform; + var mainWidth = main.width, + mainPath = main.icon; + var maskWidth = mask.width, + maskPath = mask.icon; + + + var trans = transformForSvg({ transform: transform, containerWidth: maskWidth, iconWidth: mainWidth }); + + var maskRect = { + tag: 'rect', + attributes: _extends({}, ALL_SPACE, { + fill: 'white' + }) + }; + var maskInnerGroup = { + tag: 'g', + attributes: _extends({}, trans.inner), + children: [{ tag: 'path', attributes: _extends({}, mainPath.attributes, trans.path, { fill: 'black' }) }] + }; + var maskOuterGroup = { + tag: 'g', + attributes: _extends({}, trans.outer), + children: [maskInnerGroup] + }; + var maskId = 'mask-' + nextUniqueId(); + var clipId = 'clip-' + nextUniqueId(); + var maskTag = { + tag: 'mask', + attributes: _extends({}, ALL_SPACE, { + id: maskId, + maskUnits: 'userSpaceOnUse', + maskContentUnits: 'userSpaceOnUse' + }), + children: [maskRect, maskOuterGroup] + }; + var defs = { + tag: 'defs', + children: [{ tag: 'clipPath', attributes: { id: clipId }, children: [maskPath] }, maskTag] + }; + + children.push(defs, { tag: 'rect', attributes: _extends({ fill: 'currentColor', 'clip-path': 'url(#' + clipId + ')', mask: 'url(#' + maskId + ')' }, ALL_SPACE) }); + + return { + children: children, + attributes: attributes + }; +}; + +var makeIconStandard = function (_ref) { + var children = _ref.children, + attributes = _ref.attributes, + main = _ref.main, + transform = _ref.transform, + styles = _ref.styles; + + var styleString = joinStyles(styles); + + if (styleString.length > 0) { + attributes['style'] = styleString; + } + + if (transformIsMeaningful(transform)) { + var trans = transformForSvg({ transform: transform, containerWidth: main.width, iconWidth: main.width }); + children.push({ + tag: 'g', + attributes: _extends({}, trans.outer), + children: [{ + tag: 'g', + attributes: _extends({}, trans.inner), + children: [{ + tag: main.icon.tag, + children: main.icon.children, + attributes: _extends({}, main.icon.attributes, trans.path) + }] + }] + }); + } else { + children.push(main.icon); + } + + return { + children: children, + attributes: attributes + }; +}; + +var asIcon = function (_ref) { + var children = _ref.children, + main = _ref.main, + mask = _ref.mask, + attributes = _ref.attributes, + styles = _ref.styles, + transform = _ref.transform; + + if (transformIsMeaningful(transform) && main.found && !mask.found) { + var width = main.width, + height = main.height; + + var offset = { + x: width / height / 2, + y: 0.5 + }; + attributes['style'] = joinStyles(_extends({}, styles, { + 'transform-origin': offset.x + transform.x / 16 + 'em ' + (offset.y + transform.y / 16) + 'em' + })); + } + + return [{ + tag: 'svg', + attributes: attributes, + children: children + }]; +}; + +var asSymbol = function (_ref) { + var prefix = _ref.prefix, + iconName = _ref.iconName, + children = _ref.children, + attributes = _ref.attributes, + symbol = _ref.symbol; + + var id = symbol === true ? prefix + '-' + config$1.familyPrefix + '-' + iconName : symbol; + + return [{ + tag: 'svg', + attributes: { + style: 'display: none;' + }, + children: [{ + tag: 'symbol', + attributes: _extends({}, attributes, { id: id }), + children: children + }] + }]; +}; + +function makeInlineSvgAbstract(params) { + var _params$icons = params.icons, + main = _params$icons.main, + mask = _params$icons.mask, + prefix = params.prefix, + iconName = params.iconName, + transform = params.transform, + symbol = params.symbol, + title = params.title, + extra = params.extra, + _params$watchable = params.watchable, + watchable = _params$watchable === undefined ? false : _params$watchable; + + var _ref = mask.found ? mask : main, + width = _ref.width, + height = _ref.height; + + var widthClass = 'fa-w-' + Math.ceil(width / height * 16); + var attrClass = [config$1.replacementClass, iconName ? config$1.familyPrefix + '-' + iconName : '', widthClass].concat(extra.classes).join(' '); + + var content = { + children: [], + attributes: _extends({}, extra.attributes, { + 'data-prefix': prefix, + 'data-icon': iconName, + 'class': attrClass, + 'role': 'img', + 'xmlns': 'http://www.w3.org/2000/svg', + 'viewBox': '0 0 ' + width + ' ' + height + }) + }; + + if (watchable) { + content.attributes[DATA_FA_I2SVG] = ''; + } + + if (title) content.children.push({ tag: 'title', attributes: { id: content.attributes['aria-labelledby'] || 'title-' + nextUniqueId() }, children: [title] }); + + var args = _extends({}, content, { + prefix: prefix, + iconName: iconName, + main: main, + mask: mask, + transform: transform, + symbol: symbol, + styles: extra.styles + }); + + var _ref2 = mask.found && main.found ? makeIconMasking(args) : makeIconStandard(args), + children = _ref2.children, + attributes = _ref2.attributes; + + args.children = children; + args.attributes = attributes; + + if (symbol) { + return asSymbol(args); + } else { + return asIcon(args); + } +} + +function makeLayersTextAbstract(params) { + var content = params.content, + width = params.width, + height = params.height, + transform = params.transform, + title = params.title, + extra = params.extra, + _params$watchable2 = params.watchable, + watchable = _params$watchable2 === undefined ? false : _params$watchable2; + + + var attributes = _extends({}, extra.attributes, title ? { 'title': title } : {}, { + 'class': extra.classes.join(' ') + }); + + if (watchable) { + attributes[DATA_FA_I2SVG] = ''; + } + + var styles = _extends({}, extra.styles); + + if (transformIsMeaningful(transform)) { + styles['transform'] = transformForCss({ transform: transform, startCentered: true, width: width, height: height }); + styles['-webkit-transform'] = styles['transform']; + } + + var styleString = joinStyles(styles); + + if (styleString.length > 0) { + attributes['style'] = styleString; + } + + var val = []; + + val.push({ + tag: 'span', + attributes: attributes, + children: [content] + }); + + if (title) { + val.push({ tag: 'span', attributes: { class: 'sr-only' }, children: [title] }); + } + + return val; +} + +var noop$2 = function noop() {}; +var p = config$1.measurePerformance && PERFORMANCE && PERFORMANCE.mark && PERFORMANCE.measure ? PERFORMANCE : { mark: noop$2, measure: noop$2 }; +var preamble = 'FA "5.0.13"'; + +var begin = function begin(name) { + p.mark(preamble + ' ' + name + ' begins'); + return function () { + return end(name); + }; +}; + +var end = function end(name) { + p.mark(preamble + ' ' + name + ' ends'); + p.measure(preamble + ' ' + name, preamble + ' ' + name + ' begins', preamble + ' ' + name + ' ends'); +}; + +var perf = { begin: begin, end: end }; + +'use strict'; + +/** + * Internal helper to bind a function known to have 4 arguments + * to a given context. + */ +var bindInternal4 = function bindInternal4 (func, thisContext) { + return function (a, b, c, d) { + return func.call(thisContext, a, b, c, d); + }; +}; + +'use strict'; + + + +/** + * # Reduce + * + * A fast object `.reduce()` implementation. + * + * @param {Object} subject The object to reduce over. + * @param {Function} fn The reducer function. + * @param {mixed} initialValue The initial value for the reducer, defaults to subject[0]. + * @param {Object} thisContext The context for the reducer. + * @return {mixed} The final result. + */ +var reduce = function fastReduceObject (subject, fn, initialValue, thisContext) { + var keys = Object.keys(subject), + length = keys.length, + iterator = thisContext !== undefined ? bindInternal4(fn, thisContext) : fn, + i, key, result; + + if (initialValue === undefined) { + i = 1; + result = subject[keys[0]]; + } + else { + i = 0; + result = initialValue; + } + + for (; i < length; i++) { + key = keys[i]; + result = iterator(result, subject[key], key, subject); + } + + return result; +}; + +var styles$2 = namespace.styles; +var shims = namespace.shims; + + +var _byUnicode = {}; +var _byLigature = {}; +var _byOldName = {}; + +var build = function build() { + var lookup = function lookup(reducer) { + return reduce(styles$2, function (o, style, prefix) { + o[prefix] = reduce(style, reducer, {}); + return o; + }, {}); + }; + + _byUnicode = lookup(function (acc, icon, iconName) { + acc[icon[3]] = iconName; + + return acc; + }); + + _byLigature = lookup(function (acc, icon, iconName) { + var ligatures = icon[2]; + + acc[iconName] = iconName; + + ligatures.forEach(function (ligature) { + acc[ligature] = iconName; + }); + + return acc; + }); + + var hasRegular = 'far' in styles$2; + + _byOldName = reduce(shims, function (acc, shim) { + var oldName = shim[0]; + var prefix = shim[1]; + var iconName = shim[2]; + + if (prefix === 'far' && !hasRegular) { + prefix = 'fas'; + } + + acc[oldName] = { prefix: prefix, iconName: iconName }; + + return acc; + }, {}); +}; + +build(); + +function byUnicode(prefix, unicode) { + return _byUnicode[prefix][unicode]; +} + +function byLigature(prefix, ligature) { + return _byLigature[prefix][ligature]; +} + +function byOldName(name) { + return _byOldName[name] || { prefix: null, iconName: null }; +} + +var styles$1 = namespace.styles; + + +var emptyCanonicalIcon = function emptyCanonicalIcon() { + return { prefix: null, iconName: null, rest: [] }; +}; + +function getCanonicalIcon(values) { + return values.reduce(function (acc, cls) { + var iconName = getIconName(config$1.familyPrefix, cls); + + if (styles$1[cls]) { + acc.prefix = cls; + } else if (iconName) { + var shim = acc.prefix === 'fa' ? byOldName(iconName) : {}; + + acc.iconName = shim.iconName || iconName; + acc.prefix = shim.prefix || acc.prefix; + } else if (cls !== config$1.replacementClass && cls.indexOf('fa-w-') !== 0) { + acc.rest.push(cls); + } + + return acc; + }, emptyCanonicalIcon()); +} + +function iconFromMapping(mapping, prefix, iconName) { + if (mapping && mapping[prefix] && mapping[prefix][iconName]) { + return { + prefix: prefix, + iconName: iconName, + icon: mapping[prefix][iconName] + }; + } +} + +function toHtml(abstractNodes) { + var tag = abstractNodes.tag, + _abstractNodes$attrib = abstractNodes.attributes, + attributes = _abstractNodes$attrib === undefined ? {} : _abstractNodes$attrib, + _abstractNodes$childr = abstractNodes.children, + children = _abstractNodes$childr === undefined ? [] : _abstractNodes$childr; + + + if (typeof abstractNodes === 'string') { + return htmlEscape(abstractNodes); + } else { + return '<' + tag + ' ' + joinAttributes(attributes) + '>' + children.map(toHtml).join('') + ''; + } +} + +var noop$1 = function noop() {}; + +function isWatched(node) { + var i2svg = node.getAttribute ? node.getAttribute(DATA_FA_I2SVG) : null; + + return typeof i2svg === 'string'; +} + +function getMutator() { + if (config$1.autoReplaceSvg === true) { + return mutators.replace; + } + + var mutator = mutators[config$1.autoReplaceSvg]; + + return mutator || mutators.replace; +} + +var mutators = { + replace: function replace(mutation) { + var node = mutation[0]; + var abstract = mutation[1]; + var newOuterHTML = abstract.map(function (a) { + return toHtml(a); + }).join('\n'); + + if (node.parentNode && node.outerHTML) { + node.outerHTML = newOuterHTML + (config$1.keepOriginalSource && node.tagName.toLowerCase() !== 'svg' ? '' : ''); + } else if (node.parentNode) { + var newNode = document.createElement('span'); + node.parentNode.replaceChild(newNode, node); + newNode.outerHTML = newOuterHTML; + } + }, + nest: function nest(mutation) { + var node = mutation[0]; + var abstract = mutation[1]; + + // If we already have a replaced node we do not want to continue nesting within it. + // Short-circuit to the standard replacement + if (~classArray(node).indexOf(config$1.replacementClass)) { + return mutators.replace(mutation); + } + + var forSvg = new RegExp(config$1.familyPrefix + '-.*'); + + delete abstract[0].attributes.style; + + var splitClasses = abstract[0].attributes.class.split(' ').reduce(function (acc, cls) { + if (cls === config$1.replacementClass || cls.match(forSvg)) { + acc.toSvg.push(cls); + } else { + acc.toNode.push(cls); + } + + return acc; + }, { toNode: [], toSvg: [] }); + + abstract[0].attributes.class = splitClasses.toSvg.join(' '); + + var newInnerHTML = abstract.map(function (a) { + return toHtml(a); + }).join('\n'); + node.setAttribute('class', splitClasses.toNode.join(' ')); + node.setAttribute(DATA_FA_I2SVG, ''); + node.innerHTML = newInnerHTML; + } +}; + +function perform(mutations, callback) { + var callbackFunction = typeof callback === 'function' ? callback : noop$1; + + if (mutations.length === 0) { + callbackFunction(); + } else { + var frame = WINDOW.requestAnimationFrame || function (op) { + return op(); + }; + + frame(function () { + var mutator = getMutator(); + var mark = perf.begin('mutate'); + + mutations.map(mutator); + + mark(); + + callbackFunction(); + }); + } +} + +var disabled = false; + +function disableObservation(operation) { + disabled = true; + operation(); + disabled = false; +} + +var mo = null; + +function observe(options) { + if (!MUTATION_OBSERVER) return; + + var treeCallback = options.treeCallback, + nodeCallback = options.nodeCallback, + pseudoElementsCallback = options.pseudoElementsCallback; + + + mo = new MUTATION_OBSERVER(function (objects) { + if (disabled) return; + + toArray(objects).forEach(function (mutationRecord) { + if (mutationRecord.type === 'childList' && mutationRecord.addedNodes.length > 0 && !isWatched(mutationRecord.addedNodes[0])) { + if (config$1.searchPseudoElements) { + pseudoElementsCallback(mutationRecord.target); + } + + treeCallback(mutationRecord.target); + } + + if (mutationRecord.type === 'attributes' && mutationRecord.target.parentNode && config$1.searchPseudoElements) { + pseudoElementsCallback(mutationRecord.target.parentNode); + } + + if (mutationRecord.type === 'attributes' && isWatched(mutationRecord.target) && ~ATTRIBUTES_WATCHED_FOR_MUTATION.indexOf(mutationRecord.attributeName)) { + if (mutationRecord.attributeName === 'class') { + var _getCanonicalIcon = getCanonicalIcon(classArray(mutationRecord.target)), + prefix = _getCanonicalIcon.prefix, + iconName = _getCanonicalIcon.iconName; + + if (prefix) mutationRecord.target.setAttribute('data-prefix', prefix); + if (iconName) mutationRecord.target.setAttribute('data-icon', iconName); + } else { + nodeCallback(mutationRecord.target); + } + } + }); + }); + + if (!IS_DOM) return; + + mo.observe(DOCUMENT.getElementsByTagName('body')[0], { + childList: true, attributes: true, characterData: true, subtree: true + }); +} + +function disconnect() { + if (!mo) return; + + mo.disconnect(); +} + +var styleParser = function (node) { + var style = node.getAttribute('style'); + + var val = []; + + if (style) { + val = style.split(';').reduce(function (acc, style) { + var styles = style.split(':'); + var prop = styles[0]; + var value = styles.slice(1); + + if (prop && value.length > 0) { + acc[prop] = value.join(':').trim(); + } + + return acc; + }, {}); + } + + return val; +}; + +function toHex(unicode) { + var result = ''; + + for (var i = 0; i < unicode.length; i++) { + var hex = unicode.charCodeAt(i).toString(16); + result += ('000' + hex).slice(-4); + } + + return result; +} + +var classParser = function (node) { + var existingPrefix = node.getAttribute('data-prefix'); + var existingIconName = node.getAttribute('data-icon'); + var innerText = node.innerText !== undefined ? node.innerText.trim() : ''; + + var val = getCanonicalIcon(classArray(node)); + + if (existingPrefix && existingIconName) { + val.prefix = existingPrefix; + val.iconName = existingIconName; + } + + if (val.prefix && innerText.length > 1) { + val.iconName = byLigature(val.prefix, node.innerText); + } else if (val.prefix && innerText.length === 1) { + val.iconName = byUnicode(val.prefix, toHex(node.innerText)); + } + + return val; +}; + +var parseTransformString = function parseTransformString(transformString) { + var transform = { + size: 16, + x: 0, + y: 0, + flipX: false, + flipY: false, + rotate: 0 + }; + + if (!transformString) { + return transform; + } else { + return transformString.toLowerCase().split(' ').reduce(function (acc, n) { + var parts = n.toLowerCase().split('-'); + var first = parts[0]; + var rest = parts.slice(1).join('-'); + + if (first && rest === 'h') { + acc.flipX = true; + return acc; + } + + if (first && rest === 'v') { + acc.flipY = true; + return acc; + } + + rest = parseFloat(rest); + + if (isNaN(rest)) { + return acc; + } + + switch (first) { + case 'grow': + acc.size = acc.size + rest; + break; + case 'shrink': + acc.size = acc.size - rest; + break; + case 'left': + acc.x = acc.x - rest; + break; + case 'right': + acc.x = acc.x + rest; + break; + case 'up': + acc.y = acc.y - rest; + break; + case 'down': + acc.y = acc.y + rest; + break; + case 'rotate': + acc.rotate = acc.rotate + rest; + break; + } + + return acc; + }, transform); + } +}; + +var transformParser = function (node) { + return parseTransformString(node.getAttribute('data-fa-transform')); +}; + +var symbolParser = function (node) { + var symbol = node.getAttribute('data-fa-symbol'); + + return symbol === null ? false : symbol === '' ? true : symbol; +}; + +var attributesParser = function (node) { + var extraAttributes = toArray(node.attributes).reduce(function (acc, attr) { + if (acc.name !== 'class' && acc.name !== 'style') { + acc[attr.name] = attr.value; + } + return acc; + }, {}); + + var title = node.getAttribute('title'); + + if (config$1.autoA11y) { + if (title) { + extraAttributes['aria-labelledby'] = config$1.replacementClass + '-title-' + nextUniqueId(); + } else { + extraAttributes['aria-hidden'] = 'true'; + } + } + + return extraAttributes; +}; + +var maskParser = function (node) { + var mask = node.getAttribute('data-fa-mask'); + + if (!mask) { + return emptyCanonicalIcon(); + } else { + return getCanonicalIcon(mask.split(' ').map(function (i) { + return i.trim(); + })); + } +}; + +function parseMeta(node) { + var _classParser = classParser(node), + iconName = _classParser.iconName, + prefix = _classParser.prefix, + extraClasses = _classParser.rest; + + var extraStyles = styleParser(node); + var transform = transformParser(node); + var symbol = symbolParser(node); + var extraAttributes = attributesParser(node); + var mask = maskParser(node); + + return { + iconName: iconName, + title: node.getAttribute('title'), + prefix: prefix, + transform: transform, + symbol: symbol, + mask: mask, + extra: { + classes: extraClasses, + styles: extraStyles, + attributes: extraAttributes + } + }; +} + +function MissingIcon(error) { + this.name = 'MissingIcon'; + this.message = error || 'Icon unavailable'; + this.stack = new Error().stack; +} + +MissingIcon.prototype = Object.create(Error.prototype); +MissingIcon.prototype.constructor = MissingIcon; + +var FILL = { fill: 'currentColor' }; +var ANIMATION_BASE = { + attributeType: 'XML', + repeatCount: 'indefinite', + dur: '2s' +}; +var RING = { + tag: 'path', + attributes: _extends({}, FILL, { + d: 'M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z' + }) +}; +var OPACITY_ANIMATE = _extends({}, ANIMATION_BASE, { + attributeName: 'opacity' +}); +var DOT = { + tag: 'circle', + attributes: _extends({}, FILL, { + cx: '256', + cy: '364', + r: '28' + }), + children: [{ tag: 'animate', attributes: _extends({}, ANIMATION_BASE, { attributeName: 'r', values: '28;14;28;28;14;28;' }) }, { tag: 'animate', attributes: _extends({}, OPACITY_ANIMATE, { values: '1;0;1;1;0;1;' }) }] +}; +var QUESTION = { + tag: 'path', + attributes: _extends({}, FILL, { + opacity: '1', + d: 'M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z' + }), + children: [{ tag: 'animate', attributes: _extends({}, OPACITY_ANIMATE, { values: '1;0;0;0;0;1;' }) }] +}; +var EXCLAMATION = { + tag: 'path', + attributes: _extends({}, FILL, { + opacity: '0', + d: 'M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z' + }), + children: [{ tag: 'animate', attributes: _extends({}, OPACITY_ANIMATE, { values: '0;0;1;1;0;0;' }) }] +}; + +var missing = { tag: 'g', children: [RING, DOT, QUESTION, EXCLAMATION] }; + +var styles = namespace.styles; + +var LAYERS_TEXT_CLASSNAME = 'fa-layers-text'; +var FONT_FAMILY_PATTERN = /Font Awesome 5 (Solid|Regular|Light|Brands)/; +var STYLE_TO_PREFIX = { + 'Solid': 'fas', + 'Regular': 'far', + 'Light': 'fal', + 'Brands': 'fab' +}; + +function findIcon(iconName, prefix) { + var val = { + found: false, + width: 512, + height: 512, + icon: missing + }; + + if (iconName && prefix && styles[prefix] && styles[prefix][iconName]) { + var icon = styles[prefix][iconName]; + var width = icon[0]; + var height = icon[1]; + var vectorData = icon.slice(4); + + val = { + found: true, + width: width, + height: height, + icon: { tag: 'path', attributes: { fill: 'currentColor', d: vectorData[0] } } + }; + } else if (iconName && prefix && !config$1.showMissingIcons) { + throw new MissingIcon('Icon is missing for prefix ' + prefix + ' with icon name ' + iconName); + } + + return val; +} + +function generateSvgReplacementMutation(node, nodeMeta) { + var iconName = nodeMeta.iconName, + title = nodeMeta.title, + prefix = nodeMeta.prefix, + transform = nodeMeta.transform, + symbol = nodeMeta.symbol, + mask = nodeMeta.mask, + extra = nodeMeta.extra; + + + return [node, makeInlineSvgAbstract({ + icons: { + main: findIcon(iconName, prefix), + mask: findIcon(mask.iconName, mask.prefix) + }, + prefix: prefix, + iconName: iconName, + transform: transform, + symbol: symbol, + mask: mask, + title: title, + extra: extra, + watchable: true + })]; +} + +function generateLayersText(node, nodeMeta) { + var title = nodeMeta.title, + transform = nodeMeta.transform, + extra = nodeMeta.extra; + + + var width = null; + var height = null; + + if (IS_IE) { + var computedFontSize = parseInt(getComputedStyle(node).fontSize, 10); + var boundingClientRect = node.getBoundingClientRect(); + width = boundingClientRect.width / computedFontSize; + height = boundingClientRect.height / computedFontSize; + } + + if (config$1.autoA11y && !title) { + extra.attributes['aria-hidden'] = 'true'; + } + + return [node, makeLayersTextAbstract({ + content: node.innerHTML, + width: width, + height: height, + transform: transform, + title: title, + extra: extra, + watchable: true + })]; +} + +function generateMutation(node) { + var nodeMeta = parseMeta(node); + + if (~nodeMeta.extra.classes.indexOf(LAYERS_TEXT_CLASSNAME)) { + return generateLayersText(node, nodeMeta); + } else { + return generateSvgReplacementMutation(node, nodeMeta); + } +} + +function remove(node) { + if (typeof node.remove === 'function') { + node.remove(); + } else if (node && node.parentNode) { + node.parentNode.removeChild(node); + } +} + +function searchPseudoElements(root) { + if (!IS_DOM) return; + + var end = perf.begin('searchPseudoElements'); + + disableObservation(function () { + toArray(root.querySelectorAll('*')).forEach(function (node) { + [':before', ':after'].forEach(function (pos) { + var styles = WINDOW.getComputedStyle(node, pos); + var fontFamily = styles.getPropertyValue('font-family').match(FONT_FAMILY_PATTERN); + var children = toArray(node.children); + var pseudoElement = children.filter(function (c) { + return c.getAttribute(DATA_FA_PSEUDO_ELEMENT) === pos; + })[0]; + + if (pseudoElement) { + if (pseudoElement.nextSibling && pseudoElement.nextSibling.textContent.indexOf(DATA_FA_PSEUDO_ELEMENT) > -1) { + remove(pseudoElement.nextSibling); + } + remove(pseudoElement); + pseudoElement = null; + } + + if (fontFamily && !pseudoElement) { + var content = styles.getPropertyValue('content'); + var i = DOCUMENT.createElement('i'); + i.setAttribute('class', '' + STYLE_TO_PREFIX[fontFamily[1]]); + i.setAttribute(DATA_FA_PSEUDO_ELEMENT, pos); + i.innerText = content.length === 3 ? content.substr(1, 1) : content; + if (pos === ':before') { + node.insertBefore(i, node.firstChild); + } else { + node.appendChild(i); + } + } + }); + }); + }); + + end(); +} + +function onTree(root) { + var callback = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + + if (!IS_DOM) return; + + var htmlClassList = DOCUMENT.documentElement.classList; + var hclAdd = function hclAdd(suffix) { + return htmlClassList.add(HTML_CLASS_I2SVG_BASE_CLASS + '-' + suffix); + }; + var hclRemove = function hclRemove(suffix) { + return htmlClassList.remove(HTML_CLASS_I2SVG_BASE_CLASS + '-' + suffix); + }; + var prefixes = Object.keys(styles); + var prefixesDomQuery = ['.' + LAYERS_TEXT_CLASSNAME + ':not([' + DATA_FA_I2SVG + '])'].concat(prefixes.map(function (p) { + return '.' + p + ':not([' + DATA_FA_I2SVG + '])'; + })).join(', '); + + if (prefixesDomQuery.length === 0) { + return; + } + + var candidates = toArray(root.querySelectorAll(prefixesDomQuery)); + + if (candidates.length > 0) { + hclAdd('pending'); + hclRemove('complete'); + } else { + return; + } + + var mark = perf.begin('onTree'); + + var mutations = candidates.reduce(function (acc, node) { + try { + var mutation = generateMutation(node); + + if (mutation) { + acc.push(mutation); + } + } catch (e) { + if (!PRODUCTION) { + if (e instanceof MissingIcon) { + console.error(e); + } + } + } + + return acc; + }, []); + + mark(); + + perform(mutations, function () { + hclAdd('active'); + hclAdd('complete'); + hclRemove('pending'); + + if (typeof callback === 'function') callback(); + }); +} + +function onNode(node) { + var callback = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + + var mutation = generateMutation(node); + + if (mutation) { + perform([mutation], callback); + } +} + +var baseStyles = "svg:not(:root).svg-inline--fa {\n overflow: visible; }\n\n.svg-inline--fa {\n display: inline-block;\n font-size: inherit;\n height: 1em;\n overflow: visible;\n vertical-align: -.125em; }\n .svg-inline--fa.fa-lg {\n vertical-align: -.225em; }\n .svg-inline--fa.fa-w-1 {\n width: 0.0625em; }\n .svg-inline--fa.fa-w-2 {\n width: 0.125em; }\n .svg-inline--fa.fa-w-3 {\n width: 0.1875em; }\n .svg-inline--fa.fa-w-4 {\n width: 0.25em; }\n .svg-inline--fa.fa-w-5 {\n width: 0.3125em; }\n .svg-inline--fa.fa-w-6 {\n width: 0.375em; }\n .svg-inline--fa.fa-w-7 {\n width: 0.4375em; }\n .svg-inline--fa.fa-w-8 {\n width: 0.5em; }\n .svg-inline--fa.fa-w-9 {\n width: 0.5625em; }\n .svg-inline--fa.fa-w-10 {\n width: 0.625em; }\n .svg-inline--fa.fa-w-11 {\n width: 0.6875em; }\n .svg-inline--fa.fa-w-12 {\n width: 0.75em; }\n .svg-inline--fa.fa-w-13 {\n width: 0.8125em; }\n .svg-inline--fa.fa-w-14 {\n width: 0.875em; }\n .svg-inline--fa.fa-w-15 {\n width: 0.9375em; }\n .svg-inline--fa.fa-w-16 {\n width: 1em; }\n .svg-inline--fa.fa-w-17 {\n width: 1.0625em; }\n .svg-inline--fa.fa-w-18 {\n width: 1.125em; }\n .svg-inline--fa.fa-w-19 {\n width: 1.1875em; }\n .svg-inline--fa.fa-w-20 {\n width: 1.25em; }\n .svg-inline--fa.fa-pull-left {\n margin-right: .3em;\n width: auto; }\n .svg-inline--fa.fa-pull-right {\n margin-left: .3em;\n width: auto; }\n .svg-inline--fa.fa-border {\n height: 1.5em; }\n .svg-inline--fa.fa-li {\n width: 2em; }\n .svg-inline--fa.fa-fw {\n width: 1.25em; }\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0; }\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -.125em;\n width: 1em; }\n .fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center; }\n\n.fa-layers-text, .fa-layers-counter {\n display: inline-block;\n position: absolute;\n text-align: center; }\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center; }\n\n.fa-layers-counter {\n background-color: #ff253a;\n border-radius: 1em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #fff;\n height: 1.5em;\n line-height: 1;\n max-width: 5em;\n min-width: 1.5em;\n overflow: hidden;\n padding: .25em;\n right: 0;\n text-overflow: ellipsis;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right; }\n\n.fa-layers-bottom-right {\n bottom: 0;\n right: 0;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right; }\n\n.fa-layers-bottom-left {\n bottom: 0;\n left: 0;\n right: auto;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left; }\n\n.fa-layers-top-right {\n right: 0;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right; }\n\n.fa-layers-top-left {\n left: 0;\n right: auto;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top left;\n transform-origin: top left; }\n\n.fa-lg {\n font-size: 1.33333em;\n line-height: 0.75em;\n vertical-align: -.0667em; }\n\n.fa-xs {\n font-size: .75em; }\n\n.fa-sm {\n font-size: .875em; }\n\n.fa-1x {\n font-size: 1em; }\n\n.fa-2x {\n font-size: 2em; }\n\n.fa-3x {\n font-size: 3em; }\n\n.fa-4x {\n font-size: 4em; }\n\n.fa-5x {\n font-size: 5em; }\n\n.fa-6x {\n font-size: 6em; }\n\n.fa-7x {\n font-size: 7em; }\n\n.fa-8x {\n font-size: 8em; }\n\n.fa-9x {\n font-size: 9em; }\n\n.fa-10x {\n font-size: 10em; }\n\n.fa-fw {\n text-align: center;\n width: 1.25em; }\n\n.fa-ul {\n list-style-type: none;\n margin-left: 2.5em;\n padding-left: 0; }\n .fa-ul > li {\n position: relative; }\n\n.fa-li {\n left: -2em;\n position: absolute;\n text-align: center;\n width: 2em;\n line-height: inherit; }\n\n.fa-border {\n border: solid 0.08em #eee;\n border-radius: .1em;\n padding: .2em .25em .15em; }\n\n.fa-pull-left {\n float: left; }\n\n.fa-pull-right {\n float: right; }\n\n.fa.fa-pull-left,\n.fas.fa-pull-left,\n.far.fa-pull-left,\n.fal.fa-pull-left,\n.fab.fa-pull-left {\n margin-right: .3em; }\n\n.fa.fa-pull-right,\n.fas.fa-pull-right,\n.far.fa-pull-right,\n.fal.fa-pull-right,\n.fab.fa-pull-right {\n margin-left: .3em; }\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear; }\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8); }\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n.fa-rotate-90 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg); }\n\n.fa-rotate-180 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg); }\n\n.fa-rotate-270 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg); }\n\n.fa-flip-horizontal {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1); }\n\n.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1); }\n\n.fa-flip-horizontal.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1); }\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n -webkit-filter: none;\n filter: none; }\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n position: relative;\n width: 2em; }\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0; }\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1em; }\n\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2em; }\n\n.fa-inverse {\n color: #fff; }\n\n.sr-only {\n border: 0;\n clip: rect(0, 0, 0, 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px; }\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n clip: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n position: static;\n width: auto; }\n"; + +var css = function () { + var dfp = DEFAULT_FAMILY_PREFIX; + var drc = DEFAULT_REPLACEMENT_CLASS; + var fp = config$1.familyPrefix; + var rc = config$1.replacementClass; + var s = baseStyles; + + if (fp !== dfp || rc !== drc) { + var dPatt = new RegExp('\\.' + dfp + '\\-', 'g'); + var rPatt = new RegExp('\\.' + drc, 'g'); + + s = s.replace(dPatt, '.' + fp + '-').replace(rPatt, '.' + rc); + } + + return s; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var Library = function () { + function Library() { + classCallCheck(this, Library); + + this.definitions = {}; + } + + createClass(Library, [{ + key: 'add', + value: function add() { + var _this = this; + + for (var _len = arguments.length, definitions = Array(_len), _key = 0; _key < _len; _key++) { + definitions[_key] = arguments[_key]; + } + + var additions = definitions.reduce(this._pullDefinitions, {}); + + Object.keys(additions).forEach(function (key) { + _this.definitions[key] = _extends({}, _this.definitions[key] || {}, additions[key]); + define(key, additions[key]); + }); + } + }, { + key: 'reset', + value: function reset() { + this.definitions = {}; + } + }, { + key: '_pullDefinitions', + value: function _pullDefinitions(additions, definition) { + var normalized = definition.prefix && definition.iconName && definition.icon ? { 0: definition } : definition; + + Object.keys(normalized).map(function (key) { + var _normalized$key = normalized[key], + prefix = _normalized$key.prefix, + iconName = _normalized$key.iconName, + icon = _normalized$key.icon; + + + if (!additions[prefix]) additions[prefix] = {}; + + additions[prefix][iconName] = icon; + }); + + return additions; + } + }]); + return Library; +}(); + +function prepIcon(icon) { + var width = icon[0]; + var height = icon[1]; + var vectorData = icon.slice(4); + + return { + found: true, + width: width, + height: height, + icon: { tag: 'path', attributes: { fill: 'currentColor', d: vectorData[0] } } + }; +} + +var _cssInserted = false; + +function ensureCss() { + if (!config$1.autoAddCss) { + return; + } + + if (!_cssInserted) { + insertCss(css()); + } + + _cssInserted = true; +} + +function apiObject(val, abstractCreator) { + Object.defineProperty(val, 'abstract', { + get: abstractCreator + }); + + Object.defineProperty(val, 'html', { + get: function get() { + return val.abstract.map(function (a) { + return toHtml(a); + }); + } + }); + + Object.defineProperty(val, 'node', { + get: function get() { + if (!IS_DOM) return; + + var container = DOCUMENT.createElement('div'); + container.innerHTML = val.html; + return container.children; + } + }); + + return val; +} + +function findIconDefinition(params) { + var _params$prefix = params.prefix, + prefix = _params$prefix === undefined ? 'fa' : _params$prefix, + iconName = params.iconName; + + + if (!iconName) return; + + return iconFromMapping(library.definitions, prefix, iconName) || iconFromMapping(namespace.styles, prefix, iconName); +} + +function resolveIcons(next) { + return function (maybeIconDefinition) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + + var iconDefinition = (maybeIconDefinition || {}).icon ? maybeIconDefinition : findIconDefinition(maybeIconDefinition || {}); + + var mask = params.mask; + + + if (mask) { + mask = (mask || {}).icon ? mask : findIconDefinition(mask || {}); + } + + return next(iconDefinition, _extends({}, params, { mask: mask })); + }; +} + +var library = new Library(); + +var noAuto = function noAuto() { + auto(false); + disconnect(); +}; + +var dom = { + i2svg: function i2svg() { + var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + + if (IS_DOM) { + ensureCss(); + + var _params$node = params.node, + node = _params$node === undefined ? DOCUMENT : _params$node, + _params$callback = params.callback, + callback = _params$callback === undefined ? function () {} : _params$callback; + + + if (config$1.searchPseudoElements) { + searchPseudoElements(node); + } + + onTree(node, callback); + } + }, + + css: css, + + insertCss: function insertCss$$1() { + insertCss(css()); + } +}; + +var parse = { + transform: function transform(transformString) { + return parseTransformString(transformString); + } +}; + +var icon = resolveIcons(function (iconDefinition) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _params$transform = params.transform, + transform = _params$transform === undefined ? meaninglessTransform : _params$transform, + _params$symbol = params.symbol, + symbol = _params$symbol === undefined ? false : _params$symbol, + _params$mask = params.mask, + mask = _params$mask === undefined ? null : _params$mask, + _params$title = params.title, + title = _params$title === undefined ? null : _params$title, + _params$classes = params.classes, + classes = _params$classes === undefined ? [] : _params$classes, + _params$attributes = params.attributes, + attributes = _params$attributes === undefined ? {} : _params$attributes, + _params$styles = params.styles, + styles = _params$styles === undefined ? {} : _params$styles; + + + if (!iconDefinition) return; + + var prefix = iconDefinition.prefix, + iconName = iconDefinition.iconName, + icon = iconDefinition.icon; + + + return apiObject(_extends({ type: 'icon' }, iconDefinition), function () { + ensureCss(); + + if (config$1.autoA11y) { + if (title) { + attributes['aria-labelledby'] = config$1.replacementClass + '-title-' + nextUniqueId(); + } else { + attributes['aria-hidden'] = 'true'; + } + } + + return makeInlineSvgAbstract({ + icons: { + main: prepIcon(icon), + mask: mask ? prepIcon(mask.icon) : { found: false, width: null, height: null, icon: {} } + }, + prefix: prefix, + iconName: iconName, + transform: _extends({}, meaninglessTransform, transform), + symbol: symbol, + title: title, + extra: { + attributes: attributes, + styles: styles, + classes: classes + } + }); + }); +}); + +var text = function text(content) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _params$transform2 = params.transform, + transform = _params$transform2 === undefined ? meaninglessTransform : _params$transform2, + _params$title2 = params.title, + title = _params$title2 === undefined ? null : _params$title2, + _params$classes2 = params.classes, + classes = _params$classes2 === undefined ? [] : _params$classes2, + _params$attributes2 = params.attributes, + attributes = _params$attributes2 === undefined ? {} : _params$attributes2, + _params$styles2 = params.styles, + styles = _params$styles2 === undefined ? {} : _params$styles2; + + + return apiObject({ type: 'text', content: content }, function () { + ensureCss(); + + return makeLayersTextAbstract({ + content: content, + transform: _extends({}, meaninglessTransform, transform), + title: title, + extra: { + attributes: attributes, + styles: styles, + classes: [config$1.familyPrefix + '-layers-text'].concat(toConsumableArray(classes)) + } + }); + }); +}; + +var layer = function layer(assembler) { + return apiObject({ type: 'layer' }, function () { + ensureCss(); + + var children = []; + + assembler(function (args) { + Array.isArray(args) ? args.map(function (a) { + children = children.concat(a.abstract); + }) : children = children.concat(args.abstract); + }); + + return [{ + tag: 'span', + attributes: { class: config$1.familyPrefix + '-layers' }, + children: children + }]; + }); +}; + +var api$1 = { + noAuto: noAuto, + dom: dom, + library: library, + parse: parse, + findIconDefinition: findIconDefinition, + icon: icon, + text: text, + layer: layer +}; + +var autoReplace = function autoReplace() { + if (IS_DOM && config$1.autoReplaceSvg) api$1.dom.i2svg({ node: DOCUMENT }); +}; + +function bootstrap() { + if (IS_BROWSER) { + if (!WINDOW.FontAwesome) { + WINDOW.FontAwesome = api$1; + } + + domready(function () { + if (Object.keys(namespace.styles).length > 0) { + autoReplace(); + } + + if (config$1.observeMutations && typeof MutationObserver === 'function') { + observe({ + treeCallback: onTree, + nodeCallback: onNode, + pseudoElementsCallback: searchPseudoElements + }); + } + }); + } + + namespace.hooks = _extends({}, namespace.hooks, { + + addPack: function addPack(prefix, icons) { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, icons); + + build(); + autoReplace(); + }, + + addShims: function addShims(shims) { + var _namespace$shims; + + (_namespace$shims = namespace.shims).push.apply(_namespace$shims, toConsumableArray(shims)); + + build(); + autoReplace(); + } + }); +} + +Object.defineProperty(api$1, 'config', { + get: function get() { + return config$1; + }, + + set: function set(newConfig) { + update(newConfig); + } +}); + +if (IS_DOM) bunker(bootstrap); + +var config = api$1.config; + +exports.config = config; +exports['default'] = api$1; +exports.icon = icon; +exports.noAuto = noAuto; +exports.layer = layer; +exports.text = text; +exports.library = library; +exports.dom = dom; +exports.parse = parse; +exports.findIconDefinition = findIconDefinition; + +Object.defineProperty(exports, '__esModule', { value: true }); + +}))); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/package.json b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/package.json new file mode 100644 index 0000000000..d50c2a07e8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/package.json @@ -0,0 +1,60 @@ +{ + "description": "The iconic font, CSS, and SVG framework", + "keywords": [ + "font", + "awesome", + "fontawesome", + "icon", + "svg", + "bootstrap" + ], + "homepage": "https://fontawesome.com", + "bugs": { + "url": "http://github.com/FortAwesome/Font-Awesome/issues" + }, + "author": { + "name": "Dave Gandy", + "email": "dave@fontawesome.com", + "web": "http://twitter.com/davegandy" + }, + "contributors": [ + { + "name": "Brian Talbot", + "web": "http://twitter.com/talbs" + }, + { + "name": "Travis Chase", + "web": "http://twitter.com/supercodepoet" + }, + { + "name": "Rob Madole", + "web": "http://twitter.com/robmadole" + }, + { + "name": "Geremia Taglialatela", + "web": "http://twitter.com/gtagliala" + }, + { + "name": "Mike Wilkerson", + "web": "http://twitter.com/mw77" + } + ], + "repository": { + "type": "git", + "url": "https://github.com/FortAwesome/Font-Awesome" + }, + "engines": { + "node": ">=6" + }, + "dependencies": { + "@fortawesome/fontawesome-common-types": "^0.1.7" + }, + "version": "1.1.8", + "name": "@fortawesome/fontawesome", + "main": "index.js", + "module": "index.es.js", + "jsnext:main": "index.es.js", + "style": "styles.css", + "license": "MIT", + "types": "./index.d.ts" +} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/styles.css b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/styles.css new file mode 100644 index 0000000000..264ae48144 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome/styles.css @@ -0,0 +1,345 @@ +/*! + * Font Awesome Free 5.0.13 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +svg:not(:root).svg-inline--fa { + overflow: visible; } + +.svg-inline--fa { + display: inline-block; + font-size: inherit; + height: 1em; + overflow: visible; + vertical-align: -.125em; } + .svg-inline--fa.fa-lg { + vertical-align: -.225em; } + .svg-inline--fa.fa-w-1 { + width: 0.0625em; } + .svg-inline--fa.fa-w-2 { + width: 0.125em; } + .svg-inline--fa.fa-w-3 { + width: 0.1875em; } + .svg-inline--fa.fa-w-4 { + width: 0.25em; } + .svg-inline--fa.fa-w-5 { + width: 0.3125em; } + .svg-inline--fa.fa-w-6 { + width: 0.375em; } + .svg-inline--fa.fa-w-7 { + width: 0.4375em; } + .svg-inline--fa.fa-w-8 { + width: 0.5em; } + .svg-inline--fa.fa-w-9 { + width: 0.5625em; } + .svg-inline--fa.fa-w-10 { + width: 0.625em; } + .svg-inline--fa.fa-w-11 { + width: 0.6875em; } + .svg-inline--fa.fa-w-12 { + width: 0.75em; } + .svg-inline--fa.fa-w-13 { + width: 0.8125em; } + .svg-inline--fa.fa-w-14 { + width: 0.875em; } + .svg-inline--fa.fa-w-15 { + width: 0.9375em; } + .svg-inline--fa.fa-w-16 { + width: 1em; } + .svg-inline--fa.fa-w-17 { + width: 1.0625em; } + .svg-inline--fa.fa-w-18 { + width: 1.125em; } + .svg-inline--fa.fa-w-19 { + width: 1.1875em; } + .svg-inline--fa.fa-w-20 { + width: 1.25em; } + .svg-inline--fa.fa-pull-left { + margin-right: .3em; + width: auto; } + .svg-inline--fa.fa-pull-right { + margin-left: .3em; + width: auto; } + .svg-inline--fa.fa-border { + height: 1.5em; } + .svg-inline--fa.fa-li { + width: 2em; } + .svg-inline--fa.fa-fw { + width: 1.25em; } + +.fa-layers svg.svg-inline--fa { + bottom: 0; + left: 0; + margin: auto; + position: absolute; + right: 0; + top: 0; } + +.fa-layers { + display: inline-block; + height: 1em; + position: relative; + text-align: center; + vertical-align: -.125em; + width: 1em; } + .fa-layers svg.svg-inline--fa { + -webkit-transform-origin: center center; + transform-origin: center center; } + +.fa-layers-text, .fa-layers-counter { + display: inline-block; + position: absolute; + text-align: center; } + +.fa-layers-text { + left: 50%; + top: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + -webkit-transform-origin: center center; + transform-origin: center center; } + +.fa-layers-counter { + background-color: #ff253a; + border-radius: 1em; + -webkit-box-sizing: border-box; + box-sizing: border-box; + color: #fff; + height: 1.5em; + line-height: 1; + max-width: 5em; + min-width: 1.5em; + overflow: hidden; + padding: .25em; + right: 0; + text-overflow: ellipsis; + top: 0; + -webkit-transform: scale(0.25); + transform: scale(0.25); + -webkit-transform-origin: top right; + transform-origin: top right; } + +.fa-layers-bottom-right { + bottom: 0; + right: 0; + top: auto; + -webkit-transform: scale(0.25); + transform: scale(0.25); + -webkit-transform-origin: bottom right; + transform-origin: bottom right; } + +.fa-layers-bottom-left { + bottom: 0; + left: 0; + right: auto; + top: auto; + -webkit-transform: scale(0.25); + transform: scale(0.25); + -webkit-transform-origin: bottom left; + transform-origin: bottom left; } + +.fa-layers-top-right { + right: 0; + top: 0; + -webkit-transform: scale(0.25); + transform: scale(0.25); + -webkit-transform-origin: top right; + transform-origin: top right; } + +.fa-layers-top-left { + left: 0; + right: auto; + top: 0; + -webkit-transform: scale(0.25); + transform: scale(0.25); + -webkit-transform-origin: top left; + transform-origin: top left; } + +.fa-lg { + font-size: 1.33333em; + line-height: 0.75em; + vertical-align: -.0667em; } + +.fa-xs { + font-size: .75em; } + +.fa-sm { + font-size: .875em; } + +.fa-1x { + font-size: 1em; } + +.fa-2x { + font-size: 2em; } + +.fa-3x { + font-size: 3em; } + +.fa-4x { + font-size: 4em; } + +.fa-5x { + font-size: 5em; } + +.fa-6x { + font-size: 6em; } + +.fa-7x { + font-size: 7em; } + +.fa-8x { + font-size: 8em; } + +.fa-9x { + font-size: 9em; } + +.fa-10x { + font-size: 10em; } + +.fa-fw { + text-align: center; + width: 1.25em; } + +.fa-ul { + list-style-type: none; + margin-left: 2.5em; + padding-left: 0; } + .fa-ul > li { + position: relative; } + +.fa-li { + left: -2em; + position: absolute; + text-align: center; + width: 2em; + line-height: inherit; } + +.fa-border { + border: solid 0.08em #eee; + border-radius: .1em; + padding: .2em .25em .15em; } + +.fa-pull-left { + float: left; } + +.fa-pull-right { + float: right; } + +.fa.fa-pull-left, +.fas.fa-pull-left, +.far.fa-pull-left, +.fal.fa-pull-left, +.fab.fa-pull-left { + margin-right: .3em; } + +.fa.fa-pull-right, +.fas.fa-pull-right, +.far.fa-pull-right, +.fal.fa-pull-right, +.fab.fa-pull-right { + margin-left: .3em; } + +.fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; } + +.fa-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); } + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +.fa-rotate-90 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); } + +.fa-rotate-180 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + transform: rotate(180deg); } + +.fa-rotate-270 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + transform: rotate(270deg); } + +.fa-flip-horizontal { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + -webkit-transform: scale(-1, 1); + transform: scale(-1, 1); } + +.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(1, -1); + transform: scale(1, -1); } + +.fa-flip-horizontal.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(-1, -1); + transform: scale(-1, -1); } + +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270, +:root .fa-flip-horizontal, +:root .fa-flip-vertical { + -webkit-filter: none; + filter: none; } + +.fa-stack { + display: inline-block; + height: 2em; + position: relative; + width: 2em; } + +.fa-stack-1x, +.fa-stack-2x { + bottom: 0; + left: 0; + margin: auto; + position: absolute; + right: 0; + top: 0; } + +.svg-inline--fa.fa-stack-1x { + height: 1em; + width: 1em; } + +.svg-inline--fa.fa-stack-2x { + height: 2em; + width: 2em; } + +.fa-inverse { + color: #fff; } + +.sr-only { + border: 0; + clip: rect(0, 0, 0, 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; } + +.sr-only-focusable:active, .sr-only-focusable:focus { + clip: auto; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/LICENSE.txt b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/LICENSE.txt new file mode 100644 index 0000000000..28c1c4bc73 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/LICENSE.txt @@ -0,0 +1,34 @@ +Font Awesome Free License +------------------------- + +Font Awesome Free is free, open source, and GPL friendly. You can use it for +commercial projects, open source projects, or really almost whatever you want. +Full Font Awesome Free license: https://fontawesome.com/license. + +# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) +In the Font Awesome Free download, the CC BY 4.0 license applies to all icons +packaged as SVG and JS file types. + +# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL) +In the Font Awesome Free download, the SIL OLF license applies to all icons +packaged as web and desktop font files. + +# Code: MIT License (https://opensource.org/licenses/MIT) +In the Font Awesome Free download, the MIT license applies to all non-font and +non-icon files. + +# Attribution +Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font +Awesome Free files already contain embedded comments with sufficient +attribution, so you shouldn't need to do anything additional when using these +files normally. + +We've kept attribution comments terse, so we ask that you do not actively work +to remove them from files, especially code. They're a great way for folks to +learn about Font Awesome. + +# Brand Icons +All brand icons are trademarks of their respective owners. The use of these +trademarks does not indicate endorsement of the trademark holder by Font +Awesome, nor vice versa. **Please do not use brand logos for any purpose except +to represent the company, product, or service to which they refer.** diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/README.md b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/README.md new file mode 100644 index 0000000000..a475750622 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/README.md @@ -0,0 +1,27 @@ +# @fortawesome/free-brands-svg-icons - SVG with JavaScript version + +> "I came here to chew bubblegum and install Font Awesome 5 - and I'm all out of bubblegum" + +[![npm](https://img.shields.io/npm/v/@fortawesome/free-brands-svg-icons.svg?style=flat-square)](https://www.npmjs.com/package/@fortawesome/free-brands-svg-icons) + +## Installation + +``` +$ npm i --save @fortawesome/free-brands-svg-icons +``` + +Or + +``` +$ yarn add @fortawesome/free-brands-svg-icons +``` + +## Documentation + +Get started [here](https://fontawesome.com/get-started/svg-with-js). Continue your journey [here](https://fontawesome.com/how-to-use/svg-with-js). + +Or go straight to the [API documentation](https://fontawesome.com/how-to-use/font-awesome-api). + +## Issues and support + +Start with [GitHub issues](https://github.com/FortAwesome/Font-Awesome/issues) and ping us on [Twitter](https://twitter.com/fontawesome) if you need to. diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/fa500px.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/fa500px.d.ts new file mode 100644 index 0000000000..f1310baa77 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/fa500px.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const fa500px: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/fa500px.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/fa500px.js new file mode 100644 index 0000000000..3f1b25ebab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/fa500px.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = '500px'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f26e'; +var svgPathData = 'M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3.3-16 16.5-21.2 23.9l-.5.6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8zm63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2zM393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4zM213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6.2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.fa500px = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAccessibleIcon.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAccessibleIcon.d.ts new file mode 100644 index 0000000000..c9a0233493 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAccessibleIcon.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAccessibleIcon: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAccessibleIcon.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAccessibleIcon.js new file mode 100644 index 0000000000..ed52ec15b9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAccessibleIcon.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'accessible-icon'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f368'; +var svgPathData = 'M423.9 255.8L411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7zm-64.9-154c28.1 0 50.9-22.8 50.9-50.9C409.9 22.8 387.1 0 359 0c-28.1 0-50.9 22.8-50.9 50.9 0 28.1 22.8 50.9 50.9 50.9zM179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAccessibleIcon = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAccusoft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAccusoft.d.ts new file mode 100644 index 0000000000..48fc49ce5d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAccusoft.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAccusoft: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAccusoft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAccusoft.js new file mode 100644 index 0000000000..1631517815 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAccusoft.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'accusoft'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f369'; +var svgPathData = 'M482.2 372.1C476.5 365.2 250 75 242.3 65.5c-13.7-17.2 0-16.8 19.2-16.9 9.7-.1 106.3-.6 116.5-.6 24.1-.1 28.7.6 38.4 12.8 2.1 2.7 205.1 245.8 207.2 248.3 5.5 6.7 15.2 19.1 7.2 23.4-2.4 1.3-114.6 47.7-117.8 48.9-10.1 4-17.5 6.8-30.8-9.3m114.7-5.6s-115 50.4-117.5 51.6c-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2-2.3-.3-24.6-4.7-38-7.2m-326-181.3s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3v-1l-51.2-65.8'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAccusoft = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAdn.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAdn.d.ts new file mode 100644 index 0000000000..6c417e703d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAdn.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAdn: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAdn.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAdn.js new file mode 100644 index 0000000000..6ea6064136 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAdn.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'adn'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f170'; +var svgPathData = 'M248 167.5l64.9 98.8H183.1l64.9-98.8zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7h30.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAdn = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAdversal.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAdversal.d.ts new file mode 100644 index 0000000000..ea0d9c9f70 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAdversal.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAdversal: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAdversal.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAdversal.js new file mode 100644 index 0000000000..3ab5a04851 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAdversal.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'adversal'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f36a'; +var svgPathData = 'M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2zM178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4.4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3zm286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7.4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9zm3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6.4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1.2-.1.3-.1.5zm-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2.4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1zm-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAdversal = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAffiliatetheme.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAffiliatetheme.d.ts new file mode 100644 index 0000000000..d2c50a2217 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAffiliatetheme.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAffiliatetheme: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAffiliatetheme.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAffiliatetheme.js new file mode 100644 index 0000000000..98ca1c4365 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAffiliatetheme.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'affiliatetheme'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f36b'; +var svgPathData = 'M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2 29.1 21.6 11.1 96.6-40.2 167.5zm351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9.1-8.5-.3-16.8-1-25z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAffiliatetheme = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAlgolia.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAlgolia.d.ts new file mode 100644 index 0000000000..928d0f0a91 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAlgolia.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAlgolia: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAlgolia.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAlgolia.js new file mode 100644 index 0000000000..4106c70f04 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAlgolia.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'algolia'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f36c'; +var svgPathData = 'M229.3 182.6c-49.3 0-89.2 39.9-89.2 89.2 0 49.3 39.9 89.2 89.2 89.2s89.2-39.9 89.2-89.2c0-49.3-40-89.2-89.2-89.2zm62.7 56.6l-58.9 30.6c-1.8.9-3.8-.4-3.8-2.3V201c0-1.5 1.3-2.7 2.7-2.6 26.2 1 48.9 15.7 61.1 37.1.7 1.3.2 3-1.1 3.7zM389.1 32H58.9C26.4 32 0 58.4 0 90.9V421c0 32.6 26.4 59 58.9 59H389c32.6 0 58.9-26.4 58.9-58.9V90.9C448 58.4 421.6 32 389.1 32zm-202.6 84.7c0-10.8 8.7-19.5 19.5-19.5h45.3c10.8 0 19.5 8.7 19.5 19.5v15.4c0 1.8-1.7 3-3.3 2.5-12.3-3.4-25.1-5.1-38.1-5.1-13.5 0-26.7 1.8-39.4 5.5-1.7.5-3.4-.8-3.4-2.5v-15.8zm-84.4 37l9.2-9.2c7.6-7.6 19.9-7.6 27.5 0l7.7 7.7c1.1 1.1 1 3-.3 4-6.2 4.5-12.1 9.4-17.6 14.9-5.4 5.4-10.4 11.3-14.8 17.4-1 1.3-2.9 1.5-4 .3l-7.7-7.7c-7.6-7.5-7.6-19.8 0-27.4zm127.2 244.8c-70 0-126.6-56.7-126.6-126.6s56.7-126.6 126.6-126.6c70 0 126.6 56.6 126.6 126.6 0 69.8-56.7 126.6-126.6 126.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAlgolia = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAmazon.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAmazon.d.ts new file mode 100644 index 0000000000..1c1d3add8f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAmazon.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAmazon: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAmazon.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAmazon.js new file mode 100644 index 0000000000..7cdb7bbd25 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAmazon.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'amazon'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f270'; +var svgPathData = 'M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAmazon = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAmazonPay.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAmazonPay.d.ts new file mode 100644 index 0000000000..e264c70817 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAmazonPay.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAmazonPay: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAmazonPay.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAmazonPay.js new file mode 100644 index 0000000000..b1fa698c89 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAmazonPay.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'amazon-pay'; +var width = 611; +var height = 512; +var ligatures = []; +var unicode = 'f42c'; +var svgPathData = 'M0 325.2c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7 40.7 20.4 83.2 35.6 127.4 46.3 20.9 5 41.9 9 63.2 11.8 31.5 4.2 63.2 6 95 5.2 17.4-.4 34.8-1.8 52.1-3.8 56.4-6.7 110.9-20.8 163.3-42.8 2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9-2.8 2.8-6.3 5.1-9.6 7.4-30.7 21.1-64.2 36.4-99.6 47.9-24.6 7.9-49.6 13.8-75.1 17.6-17.6 2.6-35.4 4.4-53.2 4.8-.8 0-1.7.2-2.5.3H294c-.8-.1-1.7-.3-2.5-.3-3.6-.2-7.2-.3-10.7-.4-16.9-.7-33.7-2.6-50.4-5.3-27.4-4.5-54.2-11.4-80.4-20.9-54.1-19.6-102.6-48.6-145.6-87-1.8-1.6-3-3.8-4.4-5.7v-2zM158 65c-1.4.2-2.9.4-4.3.6-14 1.7-26.6 6.9-38 15.1-2.4 1.7-4.6 3.5-7.1 5.4-.2-.5-.4-1-.4-1.4-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6H87.8c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3V215c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zm-47.4 41.9c0-1.5.4-2.4 1.7-3.3 13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9-1.2-.9-1.7-1.7-1.7-3.3.1-14.1 0-28.1 0-42.2 0-14 .1-28 0-42.1zM316.3 65c-1 .1-2 .3-2.9.4-9.8.5-19.4 1.7-28.9 4.1-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9 0 .4-.1.9-.2 1.4-.5-.1-.9 0-1.3-.1-10.5-2.5-21.1-4.3-32-4.9-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4.4-.4.9-.7 1.6-1.1.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0 2.7-.1 4.5-1.9 4.8-4.7.1-.9.1-1.9.1-2.8v-106c0-4.3-.2-8.6-.9-12.9-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1zm35 127.7c0 1.3-.4 2.2-1.5 3-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8-6.3-2.5-10.4-6.9-12.4-13.3s-2-13-.1-19.4c2.5-8.3 8.4-13 16.4-15.6 8.1-2.6 16.5-3 24.8-2.2 8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3-.1 4.7-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3-6.8-2.3-13.9-3.3-21-3.9-13.1-1.1-26.2-.5-39.2 1.9-14.3 2.7-27.9 7.3-40 15.6-1.4 1-2.8 2.1-3.7 3.5-.7 1.1-.9 2.8-.5 4 .4 1.5 2.1 1.9 3.6 1.8.7 0 1.5 0 2.2-.1 7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9 4.8.3 9.7 1.4 14.4 2.7 5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1-.4 1-.8 2-1 3-.5 2.9 1.2 4.8 4.1 4.1 1.7-.4 3.6-1.3 4.8-2.5 4.4-4.3 8.9-8.6 12.7-13.4 12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9v-17.3zM479.1 198.9c-12.9-35.7-25.8-71.5-38.7-107.2-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5.5 2.1 1.1 4.1 1.9 6.1 19.6 48.5 39.3 97.1 59.1 145.5 1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3-5.1 1.4-10.2 1.6-15.4 1.1-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8-.1 3.3-.1 6.6 0 9.9.1 5.5 2 8 7.4 8.9 5.6 1 11.3 1.9 16.9 2 17.1.4 30.7-6.5 39.5-21.4 3.5-5.9 6.7-12.1 9.2-18.4 23.7-59.8 47.1-119.7 70.6-179.6.7-1.8 1.3-3.6 1.6-5.5.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0-3.7 0-6.3 1.6-7.7 5.2-.5 1.4-1.1 2.7-1.6 4.1-11.6 33.3-23.2 66.6-34.8 100-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAmazonPay = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAmilia.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAmilia.d.ts new file mode 100644 index 0000000000..f1d9dad03b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAmilia.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAmilia: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAmilia.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAmilia.js new file mode 100644 index 0000000000..fe83d0e150 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAmilia.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'amilia'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f36d'; +var svgPathData = 'M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm-87.9 327.7c0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5V380c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAmilia = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAndroid.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAndroid.d.ts new file mode 100644 index 0000000000..bf44729cdf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAndroid.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAndroid: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAndroid.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAndroid.js new file mode 100644 index 0000000000..bda0d7da05 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAndroid.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'android'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f17b'; +var svgPathData = 'M89.6 204.5v115.8c0 15.4-12.1 27.7-27.5 27.7-15.3 0-30.1-12.4-30.1-27.7V204.5c0-15.1 14.8-27.5 30.1-27.5 15.1 0 27.5 12.4 27.5 27.5zm10.8 157c0 16.4 13.2 29.6 29.6 29.6h19.9l.3 61.1c0 36.9 55.2 36.6 55.2 0v-61.1h37.2v61.1c0 36.7 55.5 36.8 55.5 0v-61.1h20.2c16.2 0 29.4-13.2 29.4-29.6V182.1H100.4v179.4zm248-189.1H99.3c0-42.8 25.6-80 63.6-99.4l-19.1-35.3c-2.8-4.9 4.3-8 6.7-3.8l19.4 35.6c34.9-15.5 75-14.7 108.3 0L297.5 34c2.5-4.3 9.5-1.1 6.7 3.8L285.1 73c37.7 19.4 63.3 56.6 63.3 99.4zm-170.7-55.5c0-5.7-4.6-10.5-10.5-10.5-5.7 0-10.2 4.8-10.2 10.5s4.6 10.5 10.2 10.5c5.9 0 10.5-4.8 10.5-10.5zm113.4 0c0-5.7-4.6-10.5-10.2-10.5-5.9 0-10.5 4.8-10.5 10.5s4.6 10.5 10.5 10.5c5.6 0 10.2-4.8 10.2-10.5zm94.8 60.1c-15.1 0-27.5 12.1-27.5 27.5v115.8c0 15.4 12.4 27.7 27.5 27.7 15.4 0 30.1-12.4 30.1-27.7V204.5c0-15.4-14.8-27.5-30.1-27.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAndroid = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAngellist.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAngellist.d.ts new file mode 100644 index 0000000000..3eecb2ccc3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAngellist.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAngellist: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAngellist.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAngellist.js new file mode 100644 index 0000000000..9ef2304c4a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAngellist.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'angellist'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f209'; +var svgPathData = 'M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7zM311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6 33.1-93.7zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8zM140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7.1-7.7 12.7-21.1 20.4-21.1zm184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3.3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7.1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7zm-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAngellist = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAngrycreative.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAngrycreative.d.ts new file mode 100644 index 0000000000..98517901bf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAngrycreative.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAngrycreative: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAngrycreative.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAngrycreative.js new file mode 100644 index 0000000000..166f0495d0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAngrycreative.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'angrycreative'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f36e'; +var svgPathData = 'M640 238.2l-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4 93.1-6.2zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9-12.8 120zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3-126.2 7.7zm-44.3-70.2l-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7 2.7-29.8zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1zm21.1 70.8l5.8-60c-5 13.5-14.7 21.1-27.9 26.6l22.1 33.4zm135.4-45l-7.9-37.8-15.8 39.3 23.7-1.5zm-170.1-74.6l-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8.3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2-56.8 3.7zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1.6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2l-2.9 28.8zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3zm-201.3 8.2l23.8-1.6-8.3-37.6-15.5 39.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAngrycreative = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAngular.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAngular.d.ts new file mode 100644 index 0000000000..f43b9b3d73 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAngular.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAngular: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAngular.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAngular.js new file mode 100644 index 0000000000..8844a0ed6a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAngular.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'angular'; +var width = 415; +var height = 512; +var ligatures = []; +var unicode = 'f420'; +var svgPathData = 'M169.7 268.1h76.2l-38.1-91.6-38.1 91.6zM207.8 32L0 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7L207.8 32zM338 373.8h-48.6l-26.2-65.4H152.6l-26.2 65.4H77.7L207.8 81.5 338 373.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAngular = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAppStore.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAppStore.d.ts new file mode 100644 index 0000000000..5263d0c13e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAppStore.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAppStore: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAppStore.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAppStore.js new file mode 100644 index 0000000000..a9fca4a645 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAppStore.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'app-store'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f36f'; +var svgPathData = 'M255.9 120.9l9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5 9.8 5.6 13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4 0-11.3 9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5l8.9 15.7zm-78.7 218l-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5-9.8-5.6-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6zm168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4 0 11.3-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAppStore = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAppStoreIos.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAppStoreIos.d.ts new file mode 100644 index 0000000000..eef54446d1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAppStoreIos.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAppStoreIos: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAppStoreIos.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAppStoreIos.js new file mode 100644 index 0000000000..0e8f9367a4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAppStoreIos.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'app-store-ios'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f370'; +var svgPathData = 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7c16.1-4.9 29.3-1.1 39.6 11.4L127 384.5zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40zm98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAppStoreIos = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faApper.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faApper.d.ts new file mode 100644 index 0000000000..677ab23779 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faApper.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faApper: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faApper.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faApper.js new file mode 100644 index 0000000000..191a7f3589 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faApper.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'apper'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f371'; +var svgPathData = 'M42.1 239.1c22.2 0 29 2.8 33.5 14.6h.8v-22.9c0-11.3-4.8-15.4-17.9-15.4-11.3 0-14.4 2.5-15.1 12.8H4.8c.3-13.9 1.5-19.1 5.8-24.4C17.9 195 29.5 192 56.7 192c33 0 47.1 5 53.9 18.9 2 4.3 4 15.6 4 23.7v76.3H76.3l1.3-19.1h-1c-5.3 15.6-13.6 20.4-35.5 20.4-30.3 0-41.1-10.1-41.1-37.3 0-25.2 12.3-35.8 42.1-35.8zm17.1 48.1c13.1 0 16.9-3 16.9-13.4 0-9.1-4.3-11.6-19.6-11.6-13.1 0-17.9 3-17.9 12.1-.1 10.4 3.7 12.9 20.6 12.9zm77.8-94.9h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.2 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3H137v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm57.9-60.7h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.3 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3h-39.5v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm53.8-3.8c0-25.4 3.3-37.8 12.3-45.8 8.8-8.1 22.2-11.3 45.1-11.3 42.8 0 55.7 12.8 55.7 55.7v11.1h-75.3c-.3 2-.3 4-.3 4.8 0 16.9 4.5 21.9 20.1 21.9 13.9 0 17.9-3 17.9-13.9h37.5v2.3c0 9.8-2.5 18.9-6.8 24.7-7.3 9.8-19.6 13.6-44.3 13.6-27.5 0-41.6-3.3-50.6-12.3-8.5-8.5-11.3-21.3-11.3-50.8zm76.4-11.6c-.3-1.8-.3-3.3-.3-3.8 0-12.3-3.3-14.6-19.6-14.6-14.4 0-17.1 3-18.1 15.1l-.3 3.3h38.3zm55.6-45.3h38.3l-1.8 19.9h.7c6.8-14.9 14.4-20.2 29.7-20.2 10.8 0 19.1 3.3 23.4 9.3 5.3 7.3 6.8 14.4 6.8 34 0 1.5 0 5 .2 9.3h-35c.3-1.8.3-3.3.3-4 0-15.4-2-19.4-10.3-19.4-6.3 0-10.8 3.3-13.1 9.3-1 3-1 4.3-1 12.3v68h-38.3V192.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faApper = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faApple.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faApple.d.ts new file mode 100644 index 0000000000..030bbd3518 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faApple.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faApple: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faApple.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faApple.js new file mode 100644 index 0000000000..da9b386105 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faApple.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'apple'; +var width = 376; +var height = 512; +var ligatures = []; +var unicode = 'f179'; +var svgPathData = 'M314.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C59.3 141.2 0 184.8 0 273.5c0 26.2 4.8 53.3 14.4 81.2 12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faApple = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faApplePay.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faApplePay.d.ts new file mode 100644 index 0000000000..e8273adf45 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faApplePay.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faApplePay: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faApplePay.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faApplePay.js new file mode 100644 index 0000000000..79ff0bd6b0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faApplePay.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'apple-pay'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f415'; +var svgPathData = 'M116.9 158.5c-7.5 8.9-19.5 15.9-31.5 14.9-1.5-12 4.4-24.8 11.3-32.6 7.5-9.1 20.6-15.6 31.3-16.1 1.2 12.4-3.7 24.7-11.1 33.8m10.9 17.2c-17.4-1-32.3 9.9-40.5 9.9-8.4 0-21-9.4-34.8-9.1-17.9.3-34.5 10.4-43.6 26.5-18.8 32.3-4.9 80 13.3 106.3 8.9 13 19.5 27.3 33.5 26.8 13.3-.5 18.5-8.6 34.5-8.6 16.1 0 20.8 8.6 34.8 8.4 14.5-.3 23.6-13 32.5-26 10.1-14.8 14.3-29.1 14.5-29.9-.3-.3-28-10.9-28.3-42.9-.3-26.8 21.9-39.5 22.9-40.3-12.5-18.6-32-20.6-38.8-21.1m100.4-36.2v194.9h30.3v-66.6h41.9c38.3 0 65.1-26.3 65.1-64.3s-26.4-64-64.1-64h-73.2zm30.3 25.5h34.9c26.3 0 41.3 14 41.3 38.6s-15 38.8-41.4 38.8h-34.8V165zm162.2 170.9c19 0 36.6-9.6 44.6-24.9h.6v23.4h28v-97c0-28.1-22.5-46.3-57.1-46.3-32.1 0-55.9 18.4-56.8 43.6h27.3c2.3-12 13.4-19.9 28.6-19.9 18.5 0 28.9 8.6 28.9 24.5v10.8l-37.8 2.3c-35.1 2.1-54.1 16.5-54.1 41.5.1 25.2 19.7 42 47.8 42zm8.2-23.1c-16.1 0-26.4-7.8-26.4-19.6 0-12.3 9.9-19.4 28.8-20.5l33.6-2.1v11c0 18.2-15.5 31.2-36 31.2zm102.5 74.6c29.5 0 43.4-11.3 55.5-45.4L640 193h-30.8l-35.6 115.1h-.6L537.4 193h-31.6L557 334.9l-2.8 8.6c-4.6 14.6-12.1 20.3-25.5 20.3-2.4 0-7-.3-8.9-.5v23.4c1.8.4 9.3.7 11.6.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faApplePay = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAsymmetrik.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAsymmetrik.d.ts new file mode 100644 index 0000000000..e43ac0a31a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAsymmetrik.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAsymmetrik: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAsymmetrik.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAsymmetrik.js new file mode 100644 index 0000000000..601a194b36 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAsymmetrik.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'asymmetrik'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f372'; +var svgPathData = 'M517.5 309.2c38.8-40 58.1-80 58.5-116.1.8-65.5-59.4-118.2-169.4-135C277.9 38.4 118.1 73.6 0 140.5 52 114 110.6 92.3 170.7 82.3c74.5-20.5 153-25.4 221.3-14.8C544.5 91.3 588.8 195 490.8 299.2c-10.2 10.8-22 21.1-35 30.6L304.9 103.4 114.7 388.9c-65.6-29.4-76.5-90.2-19.1-151.2 20.8-22.2 48.3-41.9 79.5-58.1 20-12.2 39.7-22.6 62-30.7-65.1 20.3-122.7 52.9-161.6 92.9-27.7 28.6-41.4 57.1-41.7 82.9-.5 35.1 23.4 65.1 68.4 83l-34.5 51.7h101.6l22-34.4c22.2 1 45.3 0 68.6-2.7l-22.8 37.1h135.5L340 406.3c18.6-5.3 36.9-11.5 54.5-18.7l45.9 71.8H542L468.6 349c18.5-12.1 35-25.5 48.9-39.8zm-187.6 80.5l-25-40.6-32.7 53.3c-23.4 3.5-46.7 5.1-69.2 4.4l101.9-159.3 78.7 123c-17.2 7.4-35.3 13.9-53.7 19.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAsymmetrik = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAudible.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAudible.d.ts new file mode 100644 index 0000000000..db4ac845b0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAudible.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAudible: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAudible.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAudible.js new file mode 100644 index 0000000000..c166488bec --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAudible.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'audible'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f373'; +var svgPathData = 'M640 199.9v54l-320 200L0 254v-54l320 200 320-200.1zm-194.5 72l47.1-29.4c-37.2-55.8-100.7-92.6-172.7-92.6-72 0-135.5 36.7-172.6 92.4h.3c2.5-2.3 5.1-4.5 7.7-6.7 89.7-74.4 219.4-58.1 290.2 36.3zm-220.1 18.8c16.9-11.9 36.5-18.7 57.4-18.7 34.4 0 65.2 18.4 86.4 47.6l45.4-28.4c-20.9-29.9-55.6-49.5-94.8-49.5-38.9 0-73.4 19.4-94.4 49zM103.6 161.1c131.8-104.3 318.2-76.4 417.5 62.1l.7 1 48.8-30.4C517.1 112.1 424.8 58.1 319.9 58.1c-103.5 0-196.6 53.5-250.5 135.6 9.9-10.5 22.7-23.5 34.2-32.6zm467 32.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAudible = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAutoprefixer.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAutoprefixer.d.ts new file mode 100644 index 0000000000..3c2fc29938 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAutoprefixer.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAutoprefixer: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAutoprefixer.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAutoprefixer.js new file mode 100644 index 0000000000..c53db4a8be --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAutoprefixer.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'autoprefixer'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f41c'; +var svgPathData = 'M318.4 16l-161 480h77.5l25.4-81.4h119.5L405 496h77.5L318.4 16zm-40.3 341.9l41.2-130.4h1.5l40.9 130.4h-83.6zM640 405l-10-31.4L462.1 358l19.4 56.5L640 405zm-462.1-47L10 373.7 0 405l158.5 9.4 19.4-56.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAutoprefixer = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAvianex.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAvianex.d.ts new file mode 100644 index 0000000000..e1f0e186b3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAvianex.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAvianex: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAvianex.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAvianex.js new file mode 100644 index 0000000000..81adaa450c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAvianex.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'avianex'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f374'; +var svgPathData = 'M453.1 32h-312c-38.9 0-76.2 31.2-83.3 69.7L1.2 410.3C-5.9 448.8 19.9 480 58.9 480h312c38.9 0 76.2-31.2 83.3-69.7l56.7-308.5c7-38.6-18.8-69.8-57.8-69.8zm-58.2 347.3l-32 13.5-115.4-110c-14.7 10-29.2 19.5-41.7 27.1l22.1 64.2-17.9 12.7-40.6-61-52.4-48.1 15.7-15.4 58 31.1c9.3-10.5 20.8-22.6 32.8-34.9L203 228.9l-68.8-99.8 18.8-28.9 8.9-4.8L265 207.8l4.9 4.5c19.4-18.8 33.8-32.4 33.8-32.4 7.7-6.5 21.5-2.9 30.7 7.9 9 10.5 10.6 24.7 2.7 31.3-1.8 1.3-15.5 11.4-35.3 25.6l4.5 7.3 94.9 119.4-6.3 7.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAvianex = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAviato.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAviato.d.ts new file mode 100644 index 0000000000..0ec5c0fe7a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAviato.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAviato: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAviato.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAviato.js new file mode 100644 index 0000000000..2117ce1ad0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAviato.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'aviato'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f421'; +var svgPathData = 'M107.2 283.5l-19-41.8H36.1l-19 41.8H0l62.2-131.4 62.2 131.4h-17.2zm-45-98.1l-19.6 42.5h39.2l-19.6-42.5zm112.7 102.4l-62.2-131.4h17.1l45.1 96 45.1-96h17l-62.1 131.4zm80.6-4.3V156.4H271v127.1h-15.5zm209.1-115.6v115.6h-17.3V167.9h-41.2v-11.5h99.6v11.5h-41.1zM640 218.8c0 9.2-1.7 17.8-5.1 25.8-3.4 8-8.2 15.1-14.2 21.1-6 6-13.1 10.8-21.1 14.2-8 3.4-16.6 5.1-25.8 5.1s-17.8-1.7-25.8-5.1c-8-3.4-15.1-8.2-21.1-14.2-6-6-10.8-13-14.2-21.1-3.4-8-5.1-16.6-5.1-25.8s1.7-17.8 5.1-25.8c3.4-8 8.2-15.1 14.2-21.1 6-6 13-8.4 21.1-11.9 8-3.4 16.6-5.1 25.8-5.1s17.8 1.7 25.8 5.1c8 3.4 15.1 5.8 21.1 11.9 6 6 10.7 13.1 14.2 21.1 3.4 8 5.1 16.6 5.1 25.8zm-15.5 0c0-7.3-1.3-14-3.9-20.3-2.6-6.3-6.2-11.7-10.8-16.3-4.6-4.6-10-8.2-16.2-10.9-6.2-2.7-12.8-4-19.8-4s-13.6 1.3-19.8 4c-6.2 2.7-11.6 6.3-16.2 10.9-4.6 4.6-8.2 10-10.8 16.3-2.6 6.3-3.9 13.1-3.9 20.3 0 7.3 1.3 14 3.9 20.3 2.6 6.3 6.2 11.7 10.8 16.3 4.6 4.6 10 8.2 16.2 10.9 6.2 2.7 12.8 4 19.8 4s13.6-1.3 19.8-4c6.2-2.7 11.6-6.3 16.2-10.9 4.6-4.6 8.2-10 10.8-16.3 2.6-6.3 3.9-13.1 3.9-20.3zm-94.8 96.7v-6.3l88.9-10-242.9 13.4c.6-2.2 1.1-4.6 1.4-7.2.3-2 .5-4.2.6-6.5l64.8-8.1-64.9 1.9c0-.4-.1-.7-.1-1.1-2.8-17.2-25.5-23.7-25.5-23.7l-1.1-26.3h23.8l19 41.8h17.1L348.6 152l-62.2 131.4h17.1l19-41.8h23.6L345 268s-22.7 6.5-25.5 23.7c-.1.3-.1.7-.1 1.1l-64.9-1.9 64.8 8.1c.1 2.3.3 4.4.6 6.5.3 2.6.8 5 1.4 7.2L78.4 299.2l88.9 10v6.3c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4 0-6.2-4.6-11.3-10.5-12.2v-5.8l80.3 9v5.4c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-4.9l28.4 3.2v23.7h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9V323l38.3 4.3c8.1 11.4 19 13.6 19 13.6l-.1 6.7-5.1.2-.1 12.1h4.1l.1-5h5.2l.1 5h4.1l-.1-12.1-5.1-.2-.1-6.7s10.9-2.1 19-13.6l38.3-4.3v23.2h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9v-23.7l28.4-3.2v4.9c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-5.4l80.3-9v5.8c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4-.2-6.3-4.7-11.4-10.7-12.3zm-200.8-87.6l19.6-42.5 19.6 42.5h-17.9l-1.7-40.3-1.7 40.3h-17.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAviato = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAws.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAws.d.ts new file mode 100644 index 0000000000..90ff2e3f02 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAws.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAws: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAws.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAws.js new file mode 100644 index 0000000000..d20aee6369 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faAws.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'aws'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f375'; +var svgPathData = 'M180.41 203.01c-.72 22.65 10.6 32.68 10.88 39.05a8.164 8.164 0 0 1-4.1 6.27l-12.8 8.96a10.66 10.66 0 0 1-5.63 1.92c-.43-.02-8.19 1.83-20.48-25.61a78.608 78.608 0 0 1-62.61 29.45c-16.28.89-60.4-9.24-58.13-56.21-1.59-38.28 34.06-62.06 70.93-60.05 7.1.02 21.6.37 46.99 6.27v-15.62c2.69-26.46-14.7-46.99-44.81-43.91-2.4.01-19.4-.5-45.84 10.11-7.36 3.38-8.3 2.82-10.75 2.82-7.41 0-4.36-21.48-2.94-24.2 5.21-6.4 35.86-18.35 65.94-18.18a76.857 76.857 0 0 1 55.69 17.28 70.285 70.285 0 0 1 17.67 52.36l-.01 69.29zM93.99 235.4c32.43-.47 46.16-19.97 49.29-30.47 2.46-10.05 2.05-16.41 2.05-27.4-9.67-2.32-23.59-4.85-39.56-4.87-15.15-1.14-42.82 5.63-41.74 32.26-1.24 16.79 11.12 31.4 29.96 30.48zm170.92 23.05c-7.86.72-11.52-4.86-12.68-10.37l-49.8-164.65c-.97-2.78-1.61-5.65-1.92-8.58a4.61 4.61 0 0 1 3.86-5.25c.24-.04-2.13 0 22.25 0 8.78-.88 11.64 6.03 12.55 10.37l35.72 140.83 33.16-140.83c.53-3.22 2.94-11.07 12.8-10.24h17.16c2.17-.18 11.11-.5 12.68 10.37l33.42 142.63L420.98 80.1c.48-2.18 2.72-11.37 12.68-10.37h19.72c.85-.13 6.15-.81 5.25 8.58-.43 1.85 3.41-10.66-52.75 169.9-1.15 5.51-4.82 11.09-12.68 10.37h-18.69c-10.94 1.15-12.51-9.66-12.68-10.75L328.67 110.7l-32.78 136.99c-.16 1.09-1.73 11.9-12.68 10.75h-18.3zm273.48 5.63c-5.88.01-33.92-.3-57.36-12.29a12.802 12.802 0 0 1-7.81-11.91v-10.75c0-8.45 6.2-6.9 8.83-5.89 10.04 4.06 16.48 7.14 28.81 9.6 36.65 7.53 52.77-2.3 56.72-4.48 13.15-7.81 14.19-25.68 5.25-34.95-10.48-8.79-15.48-9.12-53.13-21-4.64-1.29-43.7-13.61-43.79-52.36-.61-28.24 25.05-56.18 69.52-55.95 12.67-.01 46.43 4.13 55.57 15.62 1.35 2.09 2.02 4.55 1.92 7.04v10.11c0 4.44-1.62 6.66-4.87 6.66-7.71-.86-21.39-11.17-49.16-10.75-6.89-.36-39.89.91-38.41 24.97-.43 18.96 26.61 26.07 29.7 26.89 36.46 10.97 48.65 12.79 63.12 29.58 17.14 22.25 7.9 48.3 4.35 55.44-19.08 37.49-68.42 34.44-69.26 34.42zm40.2 104.86c-70.03 51.72-171.69 79.25-258.49 79.25A469.127 469.127 0 0 1 2.83 327.46c-6.53-5.89-.77-13.96 7.17-9.47a637.37 637.37 0 0 0 316.88 84.12 630.22 630.22 0 0 0 241.59-49.55c11.78-5 21.77 7.8 10.12 16.38zm29.19-33.29c-8.96-11.52-59.28-5.38-81.81-2.69-6.79.77-7.94-5.12-1.79-9.47 40.07-28.17 105.88-20.1 113.44-10.63 7.55 9.47-2.05 75.41-39.56 106.91-5.76 4.87-11.27 2.3-8.71-4.1 8.44-21.25 27.39-68.49 18.43-80.02z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAws = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBandcamp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBandcamp.d.ts new file mode 100644 index 0000000000..36aa47b38f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBandcamp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBandcamp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBandcamp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBandcamp.js new file mode 100644 index 0000000000..619dc68a74 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBandcamp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'bandcamp'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f2d5'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm48.2 326.1h-181L199.9 178h181l-84.7 156.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBandcamp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBehance.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBehance.d.ts new file mode 100644 index 0000000000..99a8313db7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBehance.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBehance: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBehance.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBehance.js new file mode 100644 index 0000000000..3e79a4a0b7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBehance.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'behance'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f1b4'; +var svgPathData = 'M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBehance = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBehanceSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBehanceSquare.d.ts new file mode 100644 index 0000000000..7d7a0b8877 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBehanceSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBehanceSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBehanceSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBehanceSquare.js new file mode 100644 index 0000000000..bf42bb6c63 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBehanceSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'behance-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f1b5'; +var svgPathData = 'M186.5 293c0 19.3-14 25.4-31.2 25.4h-45.1v-52.9h46c18.6.1 30.3 7.8 30.3 27.5zm-7.7-82.3c0-17.7-13.7-21.9-28.9-21.9h-39.6v44.8H153c15.1 0 25.8-6.6 25.8-22.9zm132.3 23.2c-18.3 0-30.5 11.4-31.7 29.7h62.2c-1.7-18.5-11.3-29.7-30.5-29.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM271.7 185h77.8v-18.9h-77.8V185zm-43 110.3c0-24.1-11.4-44.9-35-51.6 17.2-8.2 26.2-17.7 26.2-37 0-38.2-28.5-47.5-61.4-47.5H68v192h93.1c34.9-.2 67.6-16.9 67.6-55.9zM380 280.5c0-41.1-24.1-75.4-67.6-75.4-42.4 0-71.1 31.8-71.1 73.6 0 43.3 27.3 73 71.1 73 33.2 0 54.7-14.9 65.1-46.8h-33.7c-3.7 11.9-18.6 18.1-30.2 18.1-22.4 0-34.1-13.1-34.1-35.3h100.2c.1-2.3.3-4.8.3-7.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBehanceSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBimobject.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBimobject.d.ts new file mode 100644 index 0000000000..a00b15a2a7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBimobject.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBimobject: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBimobject.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBimobject.js new file mode 100644 index 0000000000..042bec5433 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBimobject.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'bimobject'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f378'; +var svgPathData = 'M416 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm-64 257.4c0 49.4-11.4 82.6-103.8 82.6h-16.9c-44.1 0-62.4-14.9-70.4-38.8h-.9V368H96V136h64v74.7h1.1c4.6-30.5 39.7-38.8 69.7-38.8h17.3c92.4 0 103.8 33.1 103.8 82.5v35zm-64-28.9v22.9c0 21.7-3.4 33.8-38.4 33.8h-45.3c-28.9 0-44.1-6.5-44.1-35.7v-19c0-29.3 15.2-35.7 44.1-35.7h45.3c35-.2 38.4 12 38.4 33.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBimobject = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBitbucket.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBitbucket.d.ts new file mode 100644 index 0000000000..7044b923c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBitbucket.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBitbucket: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBitbucket.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBitbucket.js new file mode 100644 index 0000000000..9689a5a35e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBitbucket.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'bitbucket'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f171'; +var svgPathData = 'M23.1 32C14.2 31.9 7 38.9 6.9 47.8c0 .9.1 1.8.2 2.8L74.9 462c1.7 10.4 10.7 18 21.2 18.1h325.1c7.9.1 14.7-5.6 16-13.4l67.8-416c1.4-8.7-4.5-16.9-13.2-18.3-.9-.1-1.8-.2-2.8-.2L23.1 32zm285.3 297.3H204.6l-28.1-146.8h157l-25.1 146.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBitbucket = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBitcoin.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBitcoin.d.ts new file mode 100644 index 0000000000..c608d4d4d7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBitcoin.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBitcoin: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBitcoin.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBitcoin.js new file mode 100644 index 0000000000..d80c45c76f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBitcoin.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'bitcoin'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f379'; +var svgPathData = 'M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBitcoin = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBity.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBity.d.ts new file mode 100644 index 0000000000..bc8b7b40d7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBity.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBity: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBity.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBity.js new file mode 100644 index 0000000000..54949ee396 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBity.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'bity'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f37a'; +var svgPathData = 'M78.4 67.2C173.8-22 324.5-24 421.5 71c14.3 14.1-6.4 37.1-22.4 21.5-84.8-82.4-215.8-80.3-298.9-3.2-16.3 15.1-36.5-8.3-21.8-22.1zm98.9 418.6c19.3 5.7 29.3-23.6 7.9-30C73 421.9 9.4 306.1 37.7 194.8c5-19.6-24.9-28.1-30.2-7.1-32.1 127.4 41.1 259.8 169.8 298.1zm148.1-2c121.9-40.2 192.9-166.9 164.4-291-4.5-19.7-34.9-13.8-30 7.9 24.2 107.7-37.1 217.9-143.2 253.4-21.2 7-10.4 36 8.8 29.7zm-62.9-79l.2-71.8c0-8.2-6.6-14.8-14.8-14.8-8.2 0-14.8 6.7-14.8 14.8l-.2 71.8c0 8.2 6.6 14.8 14.8 14.8s14.8-6.6 14.8-14.8zm71-269c2.1 90.9 4.7 131.9-85.5 132.5-92.5-.7-86.9-44.3-85.5-132.5 0-21.8-32.5-19.6-32.5 0v71.6c0 69.3 60.7 90.9 118 90.1 57.3.8 118-20.8 118-90.1v-71.6c0-19.6-32.5-21.8-32.5 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBity = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBlackTie.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBlackTie.d.ts new file mode 100644 index 0000000000..cdf8c4d23b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBlackTie.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBlackTie: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBlackTie.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBlackTie.js new file mode 100644 index 0000000000..d435e61655 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBlackTie.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'black-tie'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f27e'; +var svgPathData = 'M0 32v448h448V32H0zm316.5 325.2L224 445.9l-92.5-88.7 64.5-184-64.5-86.6h184.9L252 173.2l64.5 184z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBlackTie = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBlackberry.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBlackberry.d.ts new file mode 100644 index 0000000000..3add89cc77 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBlackberry.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBlackberry: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBlackberry.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBlackberry.js new file mode 100644 index 0000000000..58b3ca4fd5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBlackberry.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'blackberry'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f37b'; +var svgPathData = 'M166 116.9c0 23.4-16.4 49.1-72.5 49.1H23.4l21-88.8h67.8c42.1 0 53.8 23.3 53.8 39.7zm126.2-39.7h-67.8L205.7 166h70.1c53.8 0 70.1-25.7 70.1-49.1.1-16.4-11.6-39.7-53.7-39.7zM88.8 208.1H21L0 296.9h70.1c56.1 0 72.5-23.4 72.5-49.1 0-16.3-11.7-39.7-53.8-39.7zm180.1 0h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 0-16.3-11.7-39.7-53.7-39.7zm189.3-53.8h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7zm-28 137.9h-67.8L343.7 381h70.1c56.1 0 70.1-23.4 70.1-49.1 0-16.3-11.6-39.7-53.7-39.7zM240.8 346H173l-18.7 88.8h70.1c56.1 0 70.1-25.7 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBlackberry = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBlogger.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBlogger.d.ts new file mode 100644 index 0000000000..cbaaf5a627 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBlogger.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBlogger: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBlogger.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBlogger.js new file mode 100644 index 0000000000..bb207f4807 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBlogger.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'blogger'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f37c'; +var svgPathData = 'M162.4 196c4.8-4.9 6.2-5.1 36.4-5.1 27.2 0 28.1.1 32.1 2.1 5.8 2.9 8.3 7 8.3 13.6 0 5.9-2.4 10-7.6 13.4-2.8 1.8-4.5 1.9-31.1 2.1-16.4.1-29.5-.2-31.5-.8-10.3-2.9-14.1-17.7-6.6-25.3zm61.4 94.5c-53.9 0-55.8.2-60.2 4.1-3.5 3.1-5.7 9.4-5.1 13.9.7 4.7 4.8 10.1 9.2 12 2.2 1 14.1 1.7 56.3 1.2l47.9-.6 9.2-1.5c9-5.1 10.5-17.4 3.1-24.4-5.3-4.7-5-4.7-60.4-4.7zm223.4 130.1c-3.5 28.4-23 50.4-51.1 57.5-7.2 1.8-9.7 1.9-172.9 1.8-157.8 0-165.9-.1-172-1.8-8.4-2.2-15.6-5.5-22.3-10-5.6-3.8-13.9-11.8-17-16.4-3.8-5.6-8.2-15.3-10-22C.1 423 0 420.3 0 256.3 0 93.2 0 89.7 1.8 82.6 8.1 57.9 27.7 39 53 33.4c7.3-1.6 332.1-1.9 340-.3 21.2 4.3 37.9 17.1 47.6 36.4 7.7 15.3 7-1.5 7.3 180.6.2 115.8 0 164.5-.7 170.5zm-85.4-185.2c-1.1-5-4.2-9.6-7.7-11.5-1.1-.6-8-1.3-15.5-1.7-12.4-.6-13.8-.8-17.8-3.1-6.2-3.6-7.9-7.6-8-18.3 0-20.4-8.5-39.4-25.3-56.5-12-12.2-25.3-20.5-40.6-25.1-3.6-1.1-11.8-1.5-39.2-1.8-42.9-.5-52.5.4-67.1 6.2-27 10.7-46.3 33.4-53.4 62.4-1.3 5.4-1.6 14.2-1.9 64.3-.4 62.8 0 72.1 4 84.5 9.7 30.7 37.1 53.4 64.6 58.4 9.2 1.7 122.2 2.1 133.7.5 20.1-2.7 35.9-10.8 50.7-25.9 10.7-10.9 17.4-22.8 21.8-38.5 3.2-10.9 2.9-88.4 1.7-93.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBlogger = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBloggerB.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBloggerB.d.ts new file mode 100644 index 0000000000..793c57053d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBloggerB.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBloggerB: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBloggerB.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBloggerB.js new file mode 100644 index 0000000000..1f0613f77a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBloggerB.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'blogger-b'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f37d'; +var svgPathData = 'M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBloggerB = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBluetooth.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBluetooth.d.ts new file mode 100644 index 0000000000..6538a8c6fa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBluetooth.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBluetooth: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBluetooth.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBluetooth.js new file mode 100644 index 0000000000..b0e94a72fd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBluetooth.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'bluetooth'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f293'; +var svgPathData = 'M292.6 171.1L249.7 214l-.3-86 43.2 43.1m-43.2 219.8l43.1-43.1-42.9-42.9-.2 86zM416 259.4C416 465 344.1 512 230.9 512S32 465 32 259.4 115.4 0 228.6 0 416 53.9 416 259.4zm-158.5 0l79.4-88.6L211.8 36.5v176.9L138 139.6l-27 26.9 92.7 93-92.7 93 26.9 26.9 73.8-73.8 2.3 170 127.4-127.5-83.9-88.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBluetooth = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBluetoothB.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBluetoothB.d.ts new file mode 100644 index 0000000000..d93d1be685 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBluetoothB.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBluetoothB: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBluetoothB.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBluetoothB.js new file mode 100644 index 0000000000..6a0dbfbe43 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBluetoothB.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'bluetooth-b'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f294'; +var svgPathData = 'M196.48 260.023l92.626-103.333L143.125 0v206.33l-86.111-86.111-31.406 31.405 108.061 108.399L25.608 368.422l31.406 31.405 86.111-86.111L145.84 512l148.552-148.644-97.912-103.333zm40.86-102.996l-49.977 49.978-.338-100.295 50.315 50.317zM187.363 313.04l49.977 49.978-50.315 50.316.338-100.294z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBluetoothB = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBtc.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBtc.d.ts new file mode 100644 index 0000000000..9d28b83e25 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBtc.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBtc: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBtc.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBtc.js new file mode 100644 index 0000000000..5b8c0258aa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBtc.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'btc'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f15a'; +var svgPathData = 'M310.204 242.638c27.73-14.18 45.377-39.39 41.28-81.3-5.358-57.351-52.458-76.573-114.85-81.929V0h-48.528v77.203c-12.605 0-25.525.315-38.444.63V0h-48.528v79.409c-17.842.539-38.622.276-97.37 0v51.678c38.314-.678 58.417-3.14 63.023 21.427v217.429c-2.925 19.492-18.524 16.685-53.255 16.071L3.765 443.68c88.481 0 97.37.315 97.37.315V512h48.528v-67.06c13.234.315 26.154.315 38.444.315V512h48.528v-68.005c81.299-4.412 135.647-24.894 142.895-101.467 5.671-61.446-23.32-88.862-69.326-99.89zM150.608 134.553c27.415 0 113.126-8.507 113.126 48.528 0 54.515-85.71 48.212-113.126 48.212v-96.74zm0 251.776V279.821c32.772 0 133.127-9.138 133.127 53.255-.001 60.186-100.355 53.253-133.127 53.253z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBtc = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBuromobelexperte.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBuromobelexperte.d.ts new file mode 100644 index 0000000000..9ade11ad5b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBuromobelexperte.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBuromobelexperte: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBuromobelexperte.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBuromobelexperte.js new file mode 100644 index 0000000000..225d922447 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBuromobelexperte.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'buromobelexperte'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f37f'; +var svgPathData = 'M0 32v128h128V32H0zm120 120H8V40h112v112zm40-120v128h128V32H160zm120 120H168V40h112v112zm40-120v128h128V32H320zm120 120H328V40h112v112zM0 192v128h128V192H0zm120 120H8V200h112v112zm40-120v128h128V192H160zm120 120H168V200h112v112zm40-120v128h128V192H320zm120 120H328V200h112v112zM0 352v128h128V352H0zm120 120H8V360h112v112zm40-120v128h128V352H160zm120 120H168V360h112v112zm40-120v128h128V352H320z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBuromobelexperte = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBuysellads.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBuysellads.d.ts new file mode 100644 index 0000000000..e5db4d7b04 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBuysellads.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBuysellads: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBuysellads.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBuysellads.js new file mode 100644 index 0000000000..84e0a4bb31 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faBuysellads.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'buysellads'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f20d'; +var svgPathData = 'M224 150.7l42.9 160.7h-85.8L224 150.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-65.3 325.3l-94.5-298.7H159.8L65.3 405.3H156l111.7-91.6 24.2 91.6h90.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBuysellads = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcAmazonPay.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcAmazonPay.d.ts new file mode 100644 index 0000000000..04ddab9d71 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcAmazonPay.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCcAmazonPay: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcAmazonPay.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcAmazonPay.js new file mode 100644 index 0000000000..0eaa80e7e3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcAmazonPay.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'cc-amazon-pay'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f42d'; +var svgPathData = 'M124.7 201.8c.1-11.8 0-23.5 0-35.3v-35.3c0-1.3.4-2 1.4-2.7 11.5-8 24.1-12.1 38.2-11.1 12.5.9 22.7 7 28.1 21.7 3.3 8.9 4.1 18.2 4.1 27.7 0 8.7-.7 17.3-3.4 25.6-5.7 17.8-18.7 24.7-35.7 23.9-11.7-.5-21.9-5-31.4-11.7-.9-.8-1.4-1.6-1.3-2.8zm154.9 14.6c4.6 1.8 9.3 2 14.1 1.5 11.6-1.2 21.9-5.7 31.3-12.5.9-.6 1.3-1.3 1.3-2.5-.1-3.9 0-7.9 0-11.8 0-4-.1-8 0-12 0-1.4-.4-2-1.8-2.2-7-.9-13.9-2.2-20.9-2.9-7-.6-14-.3-20.8 1.9-6.7 2.2-11.7 6.2-13.7 13.1-1.6 5.4-1.6 10.8.1 16.2 1.6 5.5 5.2 9.2 10.4 11.2zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zm-207.5 23.9c.4 1.7.9 3.4 1.6 5.1 16.5 40.6 32.9 81.3 49.5 121.9 1.4 3.5 1.7 6.4.2 9.9-2.8 6.2-4.9 12.6-7.8 18.7-2.6 5.5-6.7 9.5-12.7 11.2-4.2 1.1-8.5 1.3-12.9.9-2.1-.2-4.2-.7-6.3-.8-2.8-.2-4.2 1.1-4.3 4-.1 2.8-.1 5.6 0 8.3.1 4.6 1.6 6.7 6.2 7.5 4.7.8 9.4 1.6 14.2 1.7 14.3.3 25.7-5.4 33.1-17.9 2.9-4.9 5.6-10.1 7.7-15.4 19.8-50.1 39.5-100.3 59.2-150.5.6-1.5 1.1-3 1.3-4.6.4-2.4-.7-3.6-3.1-3.7-5.6-.1-11.1 0-16.7 0-3.1 0-5.3 1.4-6.4 4.3-.4 1.1-.9 2.3-1.3 3.4l-29.1 83.7c-2.1 6.1-4.2 12.1-6.5 18.6-.4-.9-.6-1.4-.8-1.9-10.8-29.9-21.6-59.9-32.4-89.8-1.7-4.7-3.5-9.5-5.3-14.2-.9-2.5-2.7-4-5.4-4-6.4-.1-12.8-.2-19.2-.1-2.2 0-3.3 1.6-2.8 3.7zM242.4 206c1.7 11.7 7.6 20.8 18 26.6 9.9 5.5 20.7 6.2 31.7 4.6 12.7-1.9 23.9-7.3 33.8-15.5.4-.3.8-.6 1.4-1 .5 3.2.9 6.2 1.5 9.2.5 2.6 2.1 4.3 4.5 4.4 4.6.1 9.1.1 13.7 0 2.3-.1 3.8-1.6 4-3.9.1-.8.1-1.6.1-2.3v-88.8c0-3.6-.2-7.2-.7-10.8-1.6-10.8-6.2-19.7-15.9-25.4-5.6-3.3-11.8-5-18.2-5.9-3-.4-6-.7-9.1-1.1h-10c-.8.1-1.6.3-2.5.3-8.2.4-16.3 1.4-24.2 3.5-5.1 1.3-10 3.2-15 4.9-3 1-4.5 3.2-4.4 6.5.1 2.8-.1 5.6 0 8.3.1 4.1 1.8 5.2 5.7 4.1 6.5-1.7 13.1-3.5 19.7-4.8 10.3-1.9 20.7-2.7 31.1-1.2 5.4.8 10.5 2.4 14.1 7 3.1 4 4.2 8.8 4.4 13.7.3 6.9.2 13.9.3 20.8 0 .4-.1.7-.2 1.2-.4 0-.8 0-1.1-.1-8.8-2.1-17.7-3.6-26.8-4.1-9.5-.5-18.9.1-27.9 3.2-10.8 3.8-19.5 10.3-24.6 20.8-4.1 8.3-4.6 17-3.4 25.8zM98.7 106.9v175.3c0 .8 0 1.7.1 2.5.2 2.5 1.7 4.1 4.1 4.2 5.9.1 11.8.1 17.7 0 2.5 0 4-1.7 4.1-4.1.1-.8.1-1.7.1-2.5v-60.7c.9.7 1.4 1.2 1.9 1.6 15 12.5 32.2 16.6 51.1 12.9 17.1-3.4 28.9-13.9 36.7-29.2 5.8-11.6 8.3-24.1 8.7-37 .5-14.3-1-28.4-6.8-41.7-7.1-16.4-18.9-27.3-36.7-30.9-2.7-.6-5.5-.8-8.2-1.2h-7c-1.2.2-2.4.3-3.6.5-11.7 1.4-22.3 5.8-31.8 12.7-2 1.4-3.9 3-5.9 4.5-.1-.5-.3-.8-.4-1.2-.4-2.3-.7-4.6-1.1-6.9-.6-3.9-2.5-5.5-6.4-5.6h-9.7c-5.9-.1-6.9 1-6.9 6.8zM493.6 339c-2.7-.7-5.1 0-7.6 1-43.9 18.4-89.5 30.2-136.8 35.8-14.5 1.7-29.1 2.8-43.7 3.2-26.6.7-53.2-.8-79.6-4.3-17.8-2.4-35.5-5.7-53-9.9-37-8.9-72.7-21.7-106.7-38.8-8.8-4.4-17.4-9.3-26.1-14-3.8-2.1-6.2-1.5-8.2 2.1v1.7c1.2 1.6 2.2 3.4 3.7 4.8 36 32.2 76.6 56.5 122 72.9 21.9 7.9 44.4 13.7 67.3 17.5 14 2.3 28 3.8 42.2 4.5 3 .1 6 .2 9 .4.7 0 1.4.2 2.1.3h17.7c.7-.1 1.4-.3 2.1-.3 14.9-.4 29.8-1.8 44.6-4 21.4-3.2 42.4-8.1 62.9-14.7 29.6-9.6 57.7-22.4 83.4-40.1 2.8-1.9 5.7-3.8 8-6.2 4.3-4.4 2.3-10.4-3.3-11.9zm50.4-27.7c-.8-4.2-4-5.8-7.6-7-5.7-1.9-11.6-2.8-17.6-3.3-11-.9-22-.4-32.8 1.6-12 2.2-23.4 6.1-33.5 13.1-1.2.8-2.4 1.8-3.1 3-.6.9-.7 2.3-.5 3.4.3 1.3 1.7 1.6 3 1.5.6 0 1.2 0 1.8-.1l19.5-2.1c9.6-.9 19.2-1.5 28.8-.8 4.1.3 8.1 1.2 12 2.2 4.3 1.1 6.2 4.4 6.4 8.7.3 6.7-1.2 13.1-2.9 19.5-3.5 12.9-8.3 25.4-13.3 37.8-.3.8-.7 1.7-.8 2.5-.4 2.5 1 4 3.4 3.5 1.4-.3 3-1.1 4-2.1 3.7-3.6 7.5-7.2 10.6-11.2 10.7-13.8 17-29.6 20.7-46.6.7-3 1.2-6.1 1.7-9.1.2-4.7.2-9.6.2-14.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCcAmazonPay = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcAmex.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcAmex.d.ts new file mode 100644 index 0000000000..55522ad0fd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcAmex.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCcAmex: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcAmex.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcAmex.js new file mode 100644 index 0000000000..b8f32db5cf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcAmex.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'cc-amex'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f1f3'; +var svgPathData = 'M576 255.4c-37.9-.2-44.2-.9-54.5 5v-5c-45.3 0-53.5-1.7-64.9 5.2v-5.2h-78.2v5.1c-11.4-6.5-21.4-5.1-75.7-5.1v5.6c-6.3-3.7-14.5-5.6-24.3-5.6h-58c-3.5 3.8-12.5 13.7-15.7 17.2-12.7-14.1-10.5-11.6-15.5-17.2h-83.1v92.3h82c3.3-3.5 12.9-13.9 16.1-17.4 12.7 14.3 10.3 11.7 15.4 17.4h48.9c0-14.7.1-8.3.1-23 11.5.2 24.3-.2 34.3-6.2 0 13.9-.1 17.1-.1 29.2h39.6c0-18.5.1-7.4.1-25.3 6.2 0 7.7 0 9.4.1.1 1.3 0 0 0 25.2 152.8 0 145.9 1.1 156.7-4.5v4.5c34.8 0 54.8 2.2 67.5-6.1V432c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V228.3h26.6c4.2-10.1 2.2-5.3 6.4-15.3h19.2c4.2 10 2.2 5.2 6.4 15.3h52.9v-11.4c2.2 5 1.1 2.5 5.1 11.4h29.5c2.4-5.5 2.6-5.8 5.1-11.4v11.4h135.5v-25.1c6.4 0 8-.1 9.8.2 0 0-.2 10.9.1 24.8h66.5v-8.9c7.4 5.9 17.4 8.9 29.7 8.9h26.8c4.2-10.1 2.2-5.3 6.4-15.3h19c6.5 15 .2.5 6.6 15.3h52.8v-21.9c11.8 19.7 7.8 12.9 13.2 21.9h41.6v-92h-39.9v18.4c-12.2-20.2-6.3-10.4-11.2-18.4h-43.3v20.6c-6.2-14.6-4.6-10.8-8.8-20.6h-32.4c-.4 0-2.3.2-2.3-.3h-27.6c-12.8 0-23.1 3.2-30.7 9.3v-9.3h-39.9v5.3c-10.8-6.1-20.7-5.1-64.4-5.3-.1 0-11.6-.1-11.6 0h-103c-2.5 6.1-6.8 16.4-12.6 30-2.8-6-11-23.8-13.9-30h-46V157c-7.4-17.4-4.7-11-9-21.1H22.9c-3.4 7.9-13.7 32-23.1 53.9V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48v175.4zm-186.6-80.6c-.3.2-1.4 2.2-1.4 7.6 0 6 .9 7.7 1.1 7.9.2.1 1.1.5 3.4.5l7.3-16.9c-1.1 0-2.1-.1-3.1-.1-5.6 0-7 .7-7.3 1zm-19.9 130.9c9.2 3.3 11 9.5 11 18.4l-.1 13.8h-16.6l.1-11.5c0-11.8-3.8-13.8-14.8-13.8h-17.6l-.1 25.3h-16.6l.1-69.3h39.4c13 0 27.1 2.3 27.1 18.7-.1 7.6-4.2 15.3-11.9 18.4zm-6.3-15.4c0-6.4-5.6-7.4-10.7-7.4h-21v15.6h20.7c5.6 0 11-1.3 11-8.2zm181.7-7.1H575v-14.6h-32.9c-12.8 0-23.8 6.6-23.8 20.7 0 33 42.7 12.8 42.7 27.4 0 5.1-4.3 6.4-8.4 6.4h-32l-.1 14.8h32c8.4 0 17.6-1.8 22.5-8.9v-25.8c-10.5-13.8-39.3-1.3-39.3-13.5 0-5.8 4.6-6.5 9.2-6.5zm-99.2-.3v-14.3h-55.2l-.1 69.3h55.2l.1-14.3-38.6-.3v-13.8H445v-14.1h-37.8v-12.5h38.5zm42.2 40.1h-32.2l-.1 14.8h32.2c14.8 0 26.2-5.6 26.2-22 0-33.2-42.9-11.2-42.9-26.3 0-5.6 4.9-6.4 9.2-6.4h30.4v-14.6h-33.2c-12.8 0-23.5 6.6-23.5 20.7 0 33 42.7 12.5 42.7 27.4-.1 5.4-4.7 6.4-8.8 6.4zm-78.1-158.7c-17.4-.3-33.2-4.1-33.2 19.7 0 11.8 2.8 19.9 16.1 19.9h7.4l23.5-54.5h24.8l27.9 65.4v-65.4h25.3l29.1 48.1v-48.1h16.9v69H524l-31.2-51.9v51.9h-33.7l-6.6-15.3h-34.3l-6.4 15.3h-19.2c-22.8 0-33-11.8-33-34 0-23.3 10.5-35.3 34-35.3h16.1v15.2zm14.3 24.5h22.8l-11.2-27.6-11.6 27.6zm-72.6-39.6h-16.9v69.3h16.9v-69.3zm-38.1 37.3c9.5 3.3 11 9.2 11 18.4v13.5h-16.6c-.3-14.8 3.6-25.1-14.8-25.1h-18v25.1h-16.4v-69.3l39.1.3c13.3 0 27.4 2 27.4 18.4.1 8-4.3 15.7-11.7 18.7zm-6.7-15.3c0-6.4-5.6-7.4-10.7-7.4h-21v15.3h20.7c5.7 0 11-1.3 11-7.9zm-59.5-7.4v-14.6h-55.5v69.3h55.5v-14.3h-38.9v-13.8h37.8v-14.1h-37.8v-12.5h38.9zm-84.6 54.7v-54.2l-24 54.2H124l-24-54.2v54.2H66.2l-6.4-15.3H25.3l-6.4 15.3H1l29.7-69.3h24.5l28.1 65.7v-65.7h27.1l21.7 47 19.7-47h27.6v69.3h-16.8zM53.9 188.8l-11.5-27.6-11.2 27.6h22.7zm253 102.5c0 27.9-30.4 23.3-49.3 23.3l-.1 23.3h-32.2l-20.4-23-21.3 23h-65.4l.1-69.3h66.5l20.5 22.8 21-22.8H279c15.6 0 27.9 5.4 27.9 22.7zm-112.7 11.8l-17.9-20.2h-41.7v12.5h36.3v14.1h-36.3v13.8h40.6l19-20.2zM241 276l-25.3 27.4 25.3 28.1V276zm48.3 15.3c0-6.1-4.6-8.4-10.2-8.4h-21.5v17.6h21.2c5.9 0 10.5-2.8 10.5-9.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCcAmex = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcApplePay.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcApplePay.d.ts new file mode 100644 index 0000000000..9e0c2227f4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcApplePay.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCcApplePay: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcApplePay.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcApplePay.js new file mode 100644 index 0000000000..ffbe37b219 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcApplePay.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'cc-apple-pay'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f416'; +var svgPathData = 'M302.2 218.4c0 17.2-10.5 27.1-29 27.1h-24.3v-54.2h24.4c18.4 0 28.9 9.8 28.9 27.1zm47.5 62.6c0 8.3 7.2 13.7 18.5 13.7 14.4 0 25.2-9.1 25.2-21.9v-7.7l-23.5 1.5c-13.3.9-20.2 5.8-20.2 14.4zM576 79v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM127.8 197.2c8.4.7 16.8-4.2 22.1-10.4 5.2-6.4 8.6-15 7.7-23.7-7.4.3-16.6 4.9-21.9 11.3-4.8 5.5-8.9 14.4-7.9 22.8zm60.6 74.5c-.2-.2-19.6-7.6-19.8-30-.2-18.7 15.3-27.7 16-28.2-8.8-13-22.4-14.4-27.1-14.7-12.2-.7-22.6 6.9-28.4 6.9-5.9 0-14.7-6.6-24.3-6.4-12.5.2-24.2 7.3-30.5 18.6-13.1 22.6-3.4 56 9.3 74.4 6.2 9.1 13.7 19.1 23.5 18.7 9.3-.4 13-6 24.2-6 11.3 0 14.5 6 24.3 5.9 10.2-.2 16.5-9.1 22.8-18.2 6.9-10.4 9.8-20.4 10-21zm135.4-53.4c0-26.6-18.5-44.8-44.9-44.8h-51.2v136.4h21.2v-46.6h29.3c26.8 0 45.6-18.4 45.6-45zm90 23.7c0-19.7-15.8-32.4-40-32.4-22.5 0-39.1 12.9-39.7 30.5h19.1c1.6-8.4 9.4-13.9 20-13.9 13 0 20.2 6 20.2 17.2v7.5l-26.4 1.6c-24.6 1.5-37.9 11.6-37.9 29.1 0 17.7 13.7 29.4 33.4 29.4 13.3 0 25.6-6.7 31.2-17.4h.4V310h19.6v-68zM516 210.9h-21.5l-24.9 80.6h-.4l-24.9-80.6H422l35.9 99.3-1.9 6c-3.2 10.2-8.5 14.2-17.9 14.2-1.7 0-4.9-.2-6.2-.3v16.4c1.2.4 6.5.5 8.1.5 20.7 0 30.4-7.9 38.9-31.8L516 210.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCcApplePay = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcDinersClub.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcDinersClub.d.ts new file mode 100644 index 0000000000..14900b33cc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcDinersClub.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCcDinersClub: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcDinersClub.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcDinersClub.js new file mode 100644 index 0000000000..434d2a2e74 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcDinersClub.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'cc-diners-club'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f24c'; +var svgPathData = 'M239.7 79.9c-96.9 0-175.8 78.6-175.8 175.8 0 96.9 78.9 175.8 175.8 175.8 97.2 0 175.8-78.9 175.8-175.8 0-97.2-78.6-175.8-175.8-175.8zm-39.9 279.6c-41.7-15.9-71.4-56.4-71.4-103.8s29.7-87.9 71.4-104.1v207.9zm79.8.3V151.6c41.7 16.2 71.4 56.7 71.4 104.1s-29.7 87.9-71.4 104.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM329.7 448h-90.3c-106.2 0-193.8-85.5-193.8-190.2C45.6 143.2 133.2 64 239.4 64h90.3c105 0 200.7 79.2 200.7 193.8 0 104.7-95.7 190.2-200.7 190.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCcDinersClub = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcDiscover.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcDiscover.d.ts new file mode 100644 index 0000000000..6f611d99df --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcDiscover.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCcDiscover: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcDiscover.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcDiscover.js new file mode 100644 index 0000000000..2e3fa9ab0d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcDiscover.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'cc-discover'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f1f2'; +var svgPathData = 'M83 212.1c0 7.9-3.2 15.5-8.9 20.7-4.9 4.4-11.6 6.4-21.9 6.4H48V185h4.2c10.3 0 16.7 1.7 21.9 6.6 5.7 5 8.9 12.6 8.9 20.5zM504.8 184h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8 0-7.9-5.5-12.1-15.6-12.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM428 253h45.3v-13.8H444V217h28.3v-13.8H444V185h29.3v-14H428v82zm-86.2-82l35 84.2h8.6l35.5-84.2h-17.5l-22.2 55.2-21.9-55.2h-17.5zm-83 41.6c0 24.6 19.9 44.6 44.6 44.6 24.6 0 44.6-19.9 44.6-44.6 0-24.6-19.9-44.6-44.6-44.6-24.6 0-44.6 19.9-44.6 44.6zm-68-.5c0 32.5 33.6 52.5 63.3 38.2v-19c-19.3 19.3-46.8 5.8-46.8-19.2 0-23.7 26.7-39.1 46.8-19v-19c-30.2-15-63.3 6.8-63.3 38zm-33.9 28.3c-7.6 0-13.8-3.7-17.5-10.8l-10.3 9.9c17.8 26.1 56.6 18.2 56.6-11.3 0-13.1-5.4-19-23.6-25.6-9.6-3.4-12.3-5.9-12.3-10.3 0-8.7 14.5-14.1 24.9-2.5l8.4-10.8c-19.1-17.1-49.7-8.9-49.7 14.3 0 11.3 5.2 17.2 20.2 22.7 25.7 9.1 14.7 24.4 3.3 24.4zm-57.4-28.3c0-24.1-18-41.1-44.1-41.1H32v82h23.4c30.9 0 44.1-22.4 44.1-40.9zm23.4-41.1h-16v82h16v-82zM544 288c-33.3 20.8-226.4 124.4-416 160h401c8.2 0 15-6.8 15-15V288zm0-35l-25.9-34.5c12.1-2.5 18.7-10.6 18.7-23.2 0-28.5-30.3-24.4-52.9-24.4v82h16v-32.8h2.2l22.2 32.8H544z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCcDiscover = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcJcb.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcJcb.d.ts new file mode 100644 index 0000000000..673b73cb20 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcJcb.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCcJcb: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcJcb.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcJcb.js new file mode 100644 index 0000000000..92bb87fddc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcJcb.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'cc-jcb'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f24b'; +var svgPathData = 'M431.5 244.3V212c41.2 0 38.5.2 38.5.2 7.3 1.3 13.3 7.3 13.3 16 0 8.8-6 14.5-13.3 15.8-1.2.4-3.3.3-38.5.3zm42.8 20.2c-2.8-.7-3.3-.5-42.8-.5v35c39.6 0 40 .2 42.8-.5 7.5-1.5 13.5-8 13.5-17 0-8.7-6-15.5-13.5-17zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM182 192.3h-57c0 67.1 10.7 109.7-35.8 109.7-19.5 0-38.8-5.7-57.2-14.8v28c30 8.3 68 8.3 68 8.3 97.9 0 82-47.7 82-131.2zm178.5 4.5c-63.4-16-165-14.9-165 59.3 0 77.1 108.2 73.6 165 59.2V287C312.9 311.7 253 309 253 256s59.8-55.6 107.5-31.2v-28zM544 286.5c0-18.5-16.5-30.5-38-32v-.8c19.5-2.7 30.3-15.5 30.3-30.2 0-19-15.7-30-37-31 0 0 6.3-.3-120.3-.3v127.5h122.7c24.3.1 42.3-12.9 42.3-33.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCcJcb = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcMastercard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcMastercard.d.ts new file mode 100644 index 0000000000..78c9c692a2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcMastercard.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCcMastercard: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcMastercard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcMastercard.js new file mode 100644 index 0000000000..13cae4c16b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcMastercard.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'cc-mastercard'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f1f1'; +var svgPathData = 'M482.9 410.3c0 6.8-4.6 11.7-11.2 11.7-6.8 0-11.2-5.2-11.2-11.7 0-6.5 4.4-11.7 11.2-11.7 6.6 0 11.2 5.2 11.2 11.7zm-310.8-11.7c-7.1 0-11.2 5.2-11.2 11.7 0 6.5 4.1 11.7 11.2 11.7 6.5 0 10.9-4.9 10.9-11.7-.1-6.5-4.4-11.7-10.9-11.7zm117.5-.3c-5.4 0-8.7 3.5-9.5 8.7h19.1c-.9-5.7-4.4-8.7-9.6-8.7zm107.8.3c-6.8 0-10.9 5.2-10.9 11.7 0 6.5 4.1 11.7 10.9 11.7 6.8 0 11.2-4.9 11.2-11.7 0-6.5-4.4-11.7-11.2-11.7zm105.9 26.1c0 .3.3.5.3 1.1 0 .3-.3.5-.3 1.1-.3.3-.3.5-.5.8-.3.3-.5.5-1.1.5-.3.3-.5.3-1.1.3-.3 0-.5 0-1.1-.3-.3 0-.5-.3-.8-.5-.3-.3-.5-.5-.5-.8-.3-.5-.3-.8-.3-1.1 0-.5 0-.8.3-1.1 0-.5.3-.8.5-1.1.3-.3.5-.3.8-.5.5-.3.8-.3 1.1-.3.5 0 .8 0 1.1.3.5.3.8.3 1.1.5s.2.6.5 1.1zm-2.2 1.4c.5 0 .5-.3.8-.3.3-.3.3-.5.3-.8 0-.3 0-.5-.3-.8-.3 0-.5-.3-1.1-.3h-1.6v3.5h.8V426h.3l1.1 1.4h.8l-1.1-1.3zM576 81v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V81c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM64 220.6c0 76.5 62.1 138.5 138.5 138.5 27.2 0 53.9-8.2 76.5-23.1-72.9-59.3-72.4-171.2 0-230.5-22.6-15-49.3-23.1-76.5-23.1-76.4-.1-138.5 62-138.5 138.2zm224 108.8c70.5-55 70.2-162.2 0-217.5-70.2 55.3-70.5 162.6 0 217.5zm-142.3 76.3c0-8.7-5.7-14.4-14.7-14.7-4.6 0-9.5 1.4-12.8 6.5-2.4-4.1-6.5-6.5-12.2-6.5-3.8 0-7.6 1.4-10.6 5.4V392h-8.2v36.7h8.2c0-18.9-2.5-30.2 9-30.2 10.2 0 8.2 10.2 8.2 30.2h7.9c0-18.3-2.5-30.2 9-30.2 10.2 0 8.2 10 8.2 30.2h8.2v-23zm44.9-13.7h-7.9v4.4c-2.7-3.3-6.5-5.4-11.7-5.4-10.3 0-18.2 8.2-18.2 19.3 0 11.2 7.9 19.3 18.2 19.3 5.2 0 9-1.9 11.7-5.4v4.6h7.9V392zm40.5 25.6c0-15-22.9-8.2-22.9-15.2 0-5.7 11.9-4.8 18.5-1.1l3.3-6.5c-9.4-6.1-30.2-6-30.2 8.2 0 14.3 22.9 8.3 22.9 15 0 6.3-13.5 5.8-20.7.8l-3.5 6.3c11.2 7.6 32.6 6 32.6-7.5zm35.4 9.3l-2.2-6.8c-3.8 2.1-12.2 4.4-12.2-4.1v-16.6h13.1V392h-13.1v-11.2h-8.2V392h-7.6v7.3h7.6V416c0 17.6 17.3 14.4 22.6 10.9zm13.3-13.4h27.5c0-16.2-7.4-22.6-17.4-22.6-10.6 0-18.2 7.9-18.2 19.3 0 20.5 22.6 23.9 33.8 14.2l-3.8-6c-7.8 6.4-19.6 5.8-21.9-4.9zm59.1-21.5c-4.6-2-11.6-1.8-15.2 4.4V392h-8.2v36.7h8.2V408c0-11.6 9.5-10.1 12.8-8.4l2.4-7.6zm10.6 18.3c0-11.4 11.6-15.1 20.7-8.4l3.8-6.5c-11.6-9.1-32.7-4.1-32.7 15 0 19.8 22.4 23.8 32.7 15l-3.8-6.5c-9.2 6.5-20.7 2.6-20.7-8.6zm66.7-18.3H408v4.4c-8.3-11-29.9-4.8-29.9 13.9 0 19.2 22.4 24.7 29.9 13.9v4.6h8.2V392zm33.7 0c-2.4-1.2-11-2.9-15.2 4.4V392h-7.9v36.7h7.9V408c0-11 9-10.3 12.8-8.4l2.4-7.6zm40.3-14.9h-7.9v19.3c-8.2-10.9-29.9-5.1-29.9 13.9 0 19.4 22.5 24.6 29.9 13.9v4.6h7.9v-51.7zm7.6-75.1v4.6h.8V302h1.9v-.8h-4.6v.8h1.9zm6.6 123.8c0-.5 0-1.1-.3-1.6-.3-.3-.5-.8-.8-1.1-.3-.3-.8-.5-1.1-.8-.5 0-1.1-.3-1.6-.3-.3 0-.8.3-1.4.3-.5.3-.8.5-1.1.8-.5.3-.8.8-.8 1.1-.3.5-.3 1.1-.3 1.6 0 .3 0 .8.3 1.4 0 .3.3.8.8 1.1.3.3.5.5 1.1.8.5.3 1.1.3 1.4.3.5 0 1.1 0 1.6-.3.3-.3.8-.5 1.1-.8.3-.3.5-.8.8-1.1.3-.6.3-1.1.3-1.4zm3.2-124.7h-1.4l-1.6 3.5-1.6-3.5h-1.4v5.4h.8v-4.1l1.6 3.5h1.1l1.4-3.5v4.1h1.1v-5.4zm4.4-80.5c0-76.2-62.1-138.3-138.5-138.3-27.2 0-53.9 8.2-76.5 23.1 72.1 59.3 73.2 171.5 0 230.5 22.6 15 49.5 23.1 76.5 23.1 76.4.1 138.5-61.9 138.5-138.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCcMastercard = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcPaypal.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcPaypal.d.ts new file mode 100644 index 0000000000..b8132b25db --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcPaypal.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCcPaypal: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcPaypal.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcPaypal.js new file mode 100644 index 0000000000..3726182da6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcPaypal.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'cc-paypal'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f1f4'; +var svgPathData = 'M186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCcPaypal = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcStripe.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcStripe.d.ts new file mode 100644 index 0000000000..472c3d6dec --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcStripe.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCcStripe: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcStripe.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcStripe.js new file mode 100644 index 0000000000..1f28388d98 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcStripe.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'cc-stripe'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f1f5'; +var svgPathData = 'M396.9 256.5c0 19.1-8.8 33.4-21.9 33.4-8.3 0-13.3-3-16.8-6.7l-.2-52.8c3.7-4.1 8.8-7 17-7 12.9-.1 21.9 14.5 21.9 33.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM122.2 281.1c0-42.3-54.3-34.7-54.3-50.7 0-5.5 4.6-7.7 12.1-7.7 10.8 0 24.5 3.3 35.3 9.1v-33.4c-11.8-4.7-23.5-6.5-35.3-6.5-28.8 0-48 15-48 40.2 0 39.3 54 32.9 54 49.9 0 6.6-5.7 8.7-13.6 8.7-11.8 0-26.9-4.9-38.9-11.3v33.9c13.2 5.7 26.6 8.1 38.8 8.1 29.6-.2 49.9-14.7 49.9-40.3zm68.9-86.9h-27v-30.8l-34.7 7.4-.2 113.9c0 21 15.8 36.5 36.9 36.5 11.6 0 20.2-2.1 24.9-4.7v-28.9c-4.5 1.8-27 8.3-27-12.6v-50.5h27v-30.3zm73.8 0c-4.7-1.7-21.3-4.8-29.6 10.5l-2.2-10.5h-30.7v124.5h35.5v-84.4c8.4-11 22.6-8.9 27.1-7.4v-32.7zm44.2 0h-35.7v124.5h35.7V194.2zm0-47.3l-35.7 7.6v28.9l35.7-7.6v-28.9zm122.7 108.8c0-41.3-23.5-63.8-48.4-63.8-13.9 0-22.9 6.6-27.8 11.1l-1.8-8.8h-31.3V360l35.5-7.5.1-40.2c5.1 3.7 12.7 9 25.1 9 25.4-.1 48.6-20.5 48.6-65.6zm112.2 1.2c0-36.4-17.6-65.1-51.3-65.1-33.8 0-54.3 28.7-54.3 64.9 0 42.8 24.2 64.5 58.8 64.5 17 0 29.7-3.9 39.4-9.2v-28.6c-9.7 4.9-20.8 7.9-34.9 7.9-13.8 0-26-4.9-27.6-21.5h69.5c.1-2 .4-9.4.4-12.9zm-51.6-36.1c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCcStripe = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcVisa.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcVisa.d.ts new file mode 100644 index 0000000000..2a99cfb3b8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcVisa.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCcVisa: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcVisa.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcVisa.js new file mode 100644 index 0000000000..03e7085d96 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCcVisa.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'cc-visa'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f1f0'; +var svgPathData = 'M470.1 231.3s7.6 37.2 9.3 45H446c3.3-8.9 16-43.5 16-43.5-.2.3 3.3-9.1 5.3-14.9l2.8 13.4zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM152.5 331.2L215.7 176h-42.5l-39.3 106-4.3-21.5-14-71.4c-2.3-9.9-9.4-12.7-18.2-13.1H32.7l-.7 3.1c15.8 4 29.9 9.8 42.2 17.1l35.8 135h42.5zm94.4.2L272.1 176h-40.2l-25.1 155.4h40.1zm139.9-50.8c.2-17.7-10.6-31.2-33.7-42.3-14.1-7.1-22.7-11.9-22.7-19.2.2-6.6 7.3-13.4 23.1-13.4 13.1-.3 22.7 2.8 29.9 5.9l3.6 1.7 5.5-33.6c-7.9-3.1-20.5-6.6-36-6.6-39.7 0-67.6 21.2-67.8 51.4-.3 22.3 20 34.7 35.2 42.2 15.5 7.6 20.8 12.6 20.8 19.3-.2 10.4-12.6 15.2-24.1 15.2-16 0-24.6-2.5-37.7-8.3l-5.3-2.5-5.6 34.9c9.4 4.3 26.8 8.1 44.8 8.3 42.2.1 69.7-20.8 70-53zM528 331.4L495.6 176h-31.1c-9.6 0-16.9 2.8-21 12.9l-59.7 142.5H426s6.9-19.2 8.4-23.3H486c1.2 5.5 4.8 23.3 4.8 23.3H528z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCcVisa = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCentercode.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCentercode.d.ts new file mode 100644 index 0000000000..98ad0c1503 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCentercode.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCentercode: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCentercode.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCentercode.js new file mode 100644 index 0000000000..4628057a3e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCentercode.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'centercode'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f380'; +var svgPathData = 'M329.2 268.6c-3.8 35.2-35.4 60.6-70.6 56.8-35.2-3.8-60.6-35.4-56.8-70.6 3.8-35.2 35.4-60.6 70.6-56.8 35.1 3.8 60.6 35.4 56.8 70.6zm-85.8 235.1C96.7 496-8.2 365.5 10.1 224.3c11.2-86.6 65.8-156.9 139.1-192 161-77.1 349.7 37.4 354.7 216.6 4.1 147-118.4 262.2-260.5 254.8zm179.9-180c27.9-118-160.5-205.9-237.2-234.2-57.5 56.3-69.1 188.6-33.8 344.4 68.8 15.8 169.1-26.4 271-110.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCentercode = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faChrome.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faChrome.d.ts new file mode 100644 index 0000000000..18ff853669 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faChrome.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChrome: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faChrome.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faChrome.js new file mode 100644 index 0000000000..e72872e481 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faChrome.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'chrome'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f268'; +var svgPathData = 'M131.5 217.5L55.1 100.1c47.6-59.2 119-91.8 192-92.1 42.3-.3 85.5 10.5 124.8 33.2 43.4 25.2 76.4 61.4 97.4 103L264 133.4c-58.1-3.4-113.4 29.3-132.5 84.1zm32.9 38.5c0 46.2 37.4 83.6 83.6 83.6s83.6-37.4 83.6-83.6-37.4-83.6-83.6-83.6-83.6 37.3-83.6 83.6zm314.9-89.2L339.6 174c37.9 44.3 38.5 108.2 6.6 157.2L234.1 503.6c46.5 2.5 94.4-7.7 137.8-32.9 107.4-62 150.9-192 107.4-303.9zM133.7 303.6L40.4 120.1C14.9 159.1 0 205.9 0 256c0 124 90.8 226.7 209.5 244.9l63.7-124.8c-57.6 10.8-113.2-20.8-139.5-72.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChrome = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCloudscale.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCloudscale.d.ts new file mode 100644 index 0000000000..687781ecc1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCloudscale.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCloudscale: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCloudscale.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCloudscale.js new file mode 100644 index 0000000000..3ca0c403ed --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCloudscale.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'cloudscale'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f383'; +var svgPathData = 'M318.1 154l-9.4 7.6c-22.5-19.3-51.5-33.6-83.3-33.6C153.8 128 96 188.8 96 260.3c0 6.6.4 13.1 1.4 19.4-2-56 41.8-97.4 92.6-97.4 24.2 0 46.2 9.4 62.6 24.7l-25.2 20.4c-8.3-.9-16.8 1.8-23.1 8.1-11.1 11-11.1 28.9 0 40 11.1 11 28.9 11 40 0 6.3-6.3 9-14.9 8.1-23.1l75.2-88.8c6.3-6.5-3.3-15.9-9.5-9.6zm-83.8 111.5c-5.6 5.5-14.6 5.5-20.2 0-5.6-5.6-5.6-14.6 0-20.2s14.6-5.6 20.2 0 5.6 14.7 0 20.2zM224 32C100.5 32 0 132.5 0 256s100.5 224 224 224 224-100.5 224-224S347.5 32 224 32zm0 384c-88.2 0-160-71.8-160-160S135.8 96 224 96s160 71.8 160 160-71.8 160-160 160z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCloudscale = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCloudsmith.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCloudsmith.d.ts new file mode 100644 index 0000000000..3e10300d24 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCloudsmith.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCloudsmith: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCloudsmith.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCloudsmith.js new file mode 100644 index 0000000000..67c6de9544 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCloudsmith.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'cloudsmith'; +var width = 332; +var height = 512; +var ligatures = []; +var unicode = 'f384'; +var svgPathData = 'M332.5 419.9c0 46.4-37.6 84.1-84 84.1s-84-37.7-84-84.1 37.6-84 84-84 84 37.6 84 84zm-84-243.9c46.4 0 80-37.6 80-84s-33.6-84-80-84-88 37.6-88 84-29.6 76-76 76-84 41.6-84 88 37.6 80 84 80 84-33.6 84-80 33.6-80 80-80z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCloudsmith = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCloudversify.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCloudversify.d.ts new file mode 100644 index 0000000000..aee10a5460 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCloudversify.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCloudversify: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCloudversify.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCloudversify.js new file mode 100644 index 0000000000..23f1793402 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCloudversify.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'cloudversify'; +var width = 616; +var height = 512; +var ligatures = []; +var unicode = 'f385'; +var svgPathData = 'M148.6 304c8.2 68.5 67.4 115.5 146 111.3 51.2 43.3 136.8 45.8 186.4-5.6 69.2 1.1 118.5-44.6 131.5-99.5 14.8-62.5-18.2-132.5-92.1-155.1-33-88.1-131.4-101.5-186.5-85-57.3 17.3-84.3 53.2-99.3 109.7-7.8 2.7-26.5 8.9-45 24.1 11.7 0 15.2 8.9 15.2 19.5v20.4c0 10.7-8.7 19.5-19.5 19.5h-20.2c-10.7 0-19.5-6-19.5-16.7V240H98.8C95 240 88 244.3 88 251.9v40.4c0 6.4 5.3 11.8 11.7 11.8h48.9zm227.4 8c-10.7 46.3 21.7 72.4 55.3 86.8C324.1 432.6 259.7 348 296 288c-33.2 21.6-33.7 71.2-29.2 92.9-17.9-12.4-53.8-32.4-57.4-79.8-3-39.9 21.5-75.7 57-93.9C297 191.4 369.9 198.7 400 248c-14.1-48-53.8-70.1-101.8-74.8 30.9-30.7 64.4-50.3 114.2-43.7 69.8 9.3 133.2 82.8 67.7 150.5 35-16.3 48.7-54.4 47.5-76.9l10.5 19.6c11.8 22 15.2 47.6 9.4 72-9.2 39-40.6 68.8-79.7 76.5-32.1 6.3-83.1-5.1-91.8-59.2zM128 208H88.2c-8.9 0-16.2-7.3-16.2-16.2v-39.6c0-8.9 7.3-16.2 16.2-16.2H128c8.9 0 16.2 7.3 16.2 16.2v39.6c0 8.9-7.3 16.2-16.2 16.2zM10.1 168C4.5 168 0 163.5 0 157.9v-27.8c0-5.6 4.5-10.1 10.1-10.1h27.7c5.5 0 10.1 4.5 10.1 10.1v27.8c0 5.6-4.5 10.1-10.1 10.1H10.1zM168 142.7v-21.4c0-5.1 4.2-9.3 9.3-9.3h21.4c5.1 0 9.3 4.2 9.3 9.3v21.4c0 5.1-4.2 9.3-9.3 9.3h-21.4c-5.1 0-9.3-4.2-9.3-9.3zM56 235.5v25c0 6.3-5.1 11.5-11.4 11.5H19.4C13.1 272 8 266.8 8 260.5v-25c0-6.3 5.1-11.5 11.4-11.5h25.1c6.4 0 11.5 5.2 11.5 11.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCloudversify = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCodepen.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCodepen.d.ts new file mode 100644 index 0000000000..d962203acf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCodepen.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCodepen: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCodepen.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCodepen.js new file mode 100644 index 0000000000..03fef25621 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCodepen.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'codepen'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1cb'; +var svgPathData = 'M502.285 159.704l-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285zM278 63.131l172.286 114.858-76.857 51.429L278 165.703V63.131zm-44 0v102.572l-95.429 63.715-76.857-51.429L234 63.131zM44 219.132l55.143 36.857L44 292.846v-73.714zm190 229.715L61.714 333.989l76.857-51.429L234 346.275v102.572zm22-140.858l-77.715-52 77.715-52 77.715 52-77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429L278 448.847zm190-156.001l-55.143-36.857L468 219.132v73.714z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCodepen = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCodiepie.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCodiepie.d.ts new file mode 100644 index 0000000000..b33697d6db --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCodiepie.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCodiepie: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCodiepie.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCodiepie.js new file mode 100644 index 0000000000..159745fdce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCodiepie.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'codiepie'; +var width = 472; +var height = 512; +var ligatures = []; +var unicode = 'f284'; +var svgPathData = 'M422.5 202.9c30.7 0 33.5 53.1-.3 53.1h-10.8v44.3h-26.6v-97.4h37.7zM472 352.6C429.9 444.5 350.4 504 248 504 111 504 0 393 0 256S111 8 248 8c97.4 0 172.8 53.7 218.2 138.4l-186 108.8L472 352.6zm-38.5 12.5l-60.3-30.7c-27.1 44.3-70.4 71.4-122.4 71.4-82.5 0-149.2-66.7-149.2-148.9 0-82.5 66.7-149.2 149.2-149.2 48.4 0 88.9 23.5 116.9 63.4l59.5-34.6c-40.7-62.6-104.7-100-179.2-100-121.2 0-219.5 98.3-219.5 219.5S126.8 475.5 248 475.5c78.6 0 146.5-42.1 185.5-110.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCodiepie = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faConnectdevelop.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faConnectdevelop.d.ts new file mode 100644 index 0000000000..05d696ce6d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faConnectdevelop.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faConnectdevelop: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faConnectdevelop.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faConnectdevelop.js new file mode 100644 index 0000000000..c6d94bcdb6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faConnectdevelop.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'connectdevelop'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f20e'; +var svgPathData = 'M550.5 241l-50.089-86.786c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.733-14.732-15.001l-55.447-95.893c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.268-15.268-15.268-4.821 0-8.839 2.143-11.786 5.625H299.518C296.839 18.143 292.821 16 288 16s-8.839 2.143-11.518 5.625H170.411C167.464 18.143 163.447 16 158.625 16c-8.303 0-15.268 6.696-15.268 15.268 0 1.607.536 3.482 1.072 4.821l-55.983 97.233c-5.356 2.41-9.107 7.5-9.107 13.661 0 .535.268 1.071.268 1.607l-53.304 92.143c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.393 12.054 15l55.179 95.358c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.393 12.054 14.732l51.697 89.732c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.268 15.268 15.268 4.821 0 8.839-2.143 11.518-5.357h106.875C279.161 493.857 283.447 496 288 496s8.839-2.143 11.518-5.357h107.143c2.678 2.946 6.696 4.821 10.982 4.821 8.571 0 15.268-6.964 15.268-15.268 0-1.607-.267-2.946-.803-4.285l51.697-90.268c6.964-1.339 12.054-7.5 12.054-14.732 0-1.607-.268-3.214-.804-4.821l54.911-95.358c6.964-1.339 12.322-7.5 12.322-15-.002-7.232-5.092-13.393-11.788-14.732zM153.535 450.732l-43.66-75.803h43.66v75.803zm0-83.839h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.999-47.41v50.624zm0-62.411l-50.357 53.304c-1.339-.536-2.679-1.34-4.018-1.607L43.447 259.75c.535-1.339.535-2.679.535-4.018s0-2.41-.268-3.482l51.965-90c2.679-.268 5.357-1.072 7.768-2.679l50.089 51.965v92.946zm0-102.322l-45.803-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.928-15.804v72.053zm0-80.625l-43.66 15.804 43.66-75.536v59.732zm326.519 39.108l.804 1.339L445.5 329.125l-63.75-67.232 98.036-101.518.268.268zM291.75 355.107l11.518 11.786H280.5l11.25-11.786zm-.268-11.25l-83.303-85.446 79.553-84.375 83.036 87.589-79.286 82.232zm5.357 5.893l79.286-82.232 67.5 71.25-5.892 28.125H313.714l-16.875-17.143zM410.411 44.393c1.071.536 2.142 1.072 3.482 1.34l57.857 100.714v.536c0 2.946.803 5.624 2.143 7.767L376.393 256l-83.035-87.589L410.411 44.393zm-9.107-2.143L287.732 162.518l-57.054-60.268 166.339-60h4.287zm-123.483 0c2.678 2.678 6.16 4.285 10.179 4.285s7.5-1.607 10.179-4.285h75L224.786 95.821 173.893 42.25h103.928zm-116.249 5.625l1.071-2.142a33.834 33.834 0 0 0 2.679-.804l51.161 53.84-54.911 19.821V47.875zm0 79.286l60.803-21.964 59.732 63.214-79.553 84.107-40.982-42.053v-83.304zm0 92.678L198 257.607l-36.428 38.304v-76.072zm0 87.858l42.053-44.464 82.768 85.982-17.143 17.678H161.572v-59.196zm6.964 162.053c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.732h99.91l-91.607 94.821h-1.339zm129.911 0c-2.679-2.41-6.428-4.285-10.447-4.285s-7.767 1.875-10.447 4.285h-96.429l91.607-94.821h38.304l91.607 94.821H298.447zm120-11.786l-4.286 7.5c-1.339.268-2.41.803-3.482 1.339l-89.196-91.875h114.376l-17.412 83.036zm12.856-22.232l12.858-60.803h21.964l-34.822 60.803zm34.822-68.839h-20.357l4.553-21.16 17.143 18.214c-.535.803-1.071 1.874-1.339 2.946zm66.161-107.411l-55.447 96.697c-1.339.535-2.679 1.071-4.018 1.874l-20.625-21.964 34.554-163.928 45.803 79.286c-.267 1.339-.803 2.678-.803 4.285 0 1.339.268 2.411.536 3.75z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faConnectdevelop = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faContao.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faContao.d.ts new file mode 100644 index 0000000000..299b172f38 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faContao.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faContao: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faContao.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faContao.js new file mode 100644 index 0000000000..56374bcba5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faContao.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'contao'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f26d'; +var svgPathData = 'M45.4 305c14.4 67.1 26.4 129 68.2 175H34c-18.7 0-34-15.2-34-34V66c0-18.7 15.2-34 34-34h57.7C77.9 44.6 65.6 59.2 54.8 75.6c-45.4 70-27 146.8-9.4 229.4zM478 32h-90.2c21.4 21.4 39.2 49.5 52.7 84.1l-137.1 29.3c-14.9-29-37.8-53.3-82.6-43.9-24.6 5.3-41 19.3-48.3 34.6-8.8 18.7-13.2 39.8 8.2 140.3 21.1 100.2 33.7 117.7 49.5 131.2 12.9 11.1 33.4 17 58.3 11.7 44.5-9.4 55.7-40.7 57.4-73.2l137.4-29.6c3.2 71.5-18.7 125.2-57.4 163.6H478c18.7 0 34-15.2 34-34V66c0-18.8-15.2-34-34-34z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faContao = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCpanel.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCpanel.d.ts new file mode 100644 index 0000000000..3c07c9380d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCpanel.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCpanel: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCpanel.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCpanel.js new file mode 100644 index 0000000000..87ef018428 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCpanel.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'cpanel'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f388'; +var svgPathData = 'M52.9 213.7h40l-6.2 23.6c-1.9 6.5-7.4 10.9-14.3 10.9H53.8c-24.9 0-24.7 37.4 0 37.4h11.3c4.2 0 7.6 3.9 6.4 8.3L64.4 320H52c-33.5 0-59-31.4-50.3-65.2 7.3-27 28.3-41.1 51.2-41.1M73.1 320L108 189.9c1.8-6.4 7.2-10.9 14.3-10.9h37c24.1 0 45.4 16.4 51 41.2 6.6 29.1-14.5 65.3-51.7 65.3h-32l6.4-23.8c1.8-6.2 7.3-10.8 14.3-10.8h10.3c12.4 0 20.8-11.7 18.3-22.6-2.1-9.2-9.9-14.8-18.3-14.8h-19.8L112 309.2c-1.9 6.2-7.4 10.7-14.2 10.7l-24.7.1m220.6-69.4c.3-1 1.9-5.3-2.1-5.3h-57.5c-9.7 0-16.6-8.9-14.2-18.5l3.5-13.4h77.9c18.8 0 33.3 17.6 28.5 36.8l-14 51.8c-2.8 10.6-12.2 17.8-23.4 17.8l-57.5-.2c-42.9 0-38.5-63.8.7-63.8H284l-3.5 13.2c-1.9 6.2-7.4 10.8-14.2 10.8h-21.6c-5.3 0-5.3 7.9 0 7.9h34.9c4.6 0 5.1-3.9 5.5-5.3l8.6-31.8m103.1-36.9c34.4 0 59.3 32.3 50.3 65.4l-8.8 33.1c-1.2 4.9-5.7 7.8-10.3 7.8h-19.1c-4.5 0-7.6-4-6.4-8.3l10.6-40c3.3-11.6-5.6-23.4-18.1-23.4h-19.8l-17.2 64c-1.2 4.8-5.6 7.8-10.4 7.8h-18.9c-4.2 0-7.6-3.9-6.4-8.3l26.2-98h48.3M498 251.6l-8 30c-.9 3.3 1.5 6.7 5.1 6.7h73.3l-5.7 21c-1.9 6.2-7.4 10.7-14.2 10.7h-66.7c-20 0-33.3-19-28.3-36.7l10.8-40c4.8-17.6 20.7-29.6 38.6-29.6h47.3c19 0 33.2 17.7 28.3 36.8l-3.2 12c-2.9 11-12.7 17.6-23.2 17.6h-53.4l3.5-13c1.6-6.2 7.2-10.8 14.2-10.8H538c2 0 3.3-1 3.9-3l.7-2.6c.7-2.7-1.3-5.1-3.9-5.1h-32.9c-4.1 0-6.9 2.1-7.8 6zm70.2 68.4l35.6-133.1c1.2-4.7 5.5-7.9 10.4-7.9h18.9c4.5 0 7.7 4 6.5 8.3l-26.5 98.2c-5.1 20.7-24.2 34.5-44.9 34.5'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCpanel = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommons.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommons.d.ts new file mode 100644 index 0000000000..306eee4f9b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommons.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCreativeCommons: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommons.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommons.js new file mode 100644 index 0000000000..7132de4458 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommons.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'creative-commons'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f25e'; +var svgPathData = 'M245.83 214.87l-33.22 17.28c-9.43-19.58-25.24-19.93-27.46-19.93-22.13 0-33.22 14.61-33.22 43.84 0 23.57 9.21 43.84 33.22 43.84 14.47 0 24.65-7.09 30.57-21.26l30.55 15.5c-6.17 11.51-25.69 38.98-65.1 38.98-22.6 0-73.96-10.32-73.96-77.05 0-58.69 43-77.06 72.63-77.06 30.72-.01 52.7 11.95 65.99 35.86zm143.05 0l-32.78 17.28c-9.5-19.77-25.72-19.93-27.9-19.93-22.14 0-33.22 14.61-33.22 43.84 0 23.55 9.23 43.84 33.22 43.84 14.45 0 24.65-7.09 30.54-21.26l31 15.5c-2.1 3.75-21.39 38.98-65.09 38.98-22.69 0-73.96-9.87-73.96-77.05 0-58.67 42.97-77.06 72.63-77.06 30.71-.01 52.58 11.95 65.56 35.86zM247.56 8.05C104.74 8.05 0 123.11 0 256.05c0 138.49 113.6 248 247.56 248 129.93 0 248.44-100.87 248.44-248 0-137.87-106.62-248-248.44-248zm.87 450.81c-112.54 0-203.7-93.04-203.7-202.81 0-105.42 85.43-203.27 203.72-203.27 112.53 0 202.82 89.46 202.82 203.26-.01 121.69-99.68 202.82-202.84 202.82z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCreativeCommons = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsBy.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsBy.d.ts new file mode 100644 index 0000000000..1913a494b7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsBy.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCreativeCommonsBy: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsBy.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsBy.js new file mode 100644 index 0000000000..05e99ff023 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsBy.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'creative-commons-by'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f4e7'; +var svgPathData = 'M314.9 194.4v101.4h-28.3v120.5h-77.1V295.9h-28.3V194.4c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7H299c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3zm-101.5-63.7c0-23.3 11.5-35 34.5-35s34.5 11.7 34.5 35c0 23-11.5 34.5-34.5 34.5s-34.5-11.5-34.5-34.5zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCreativeCommonsBy = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNc.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNc.d.ts new file mode 100644 index 0000000000..765a53b651 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNc.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCreativeCommonsNc: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNc.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNc.js new file mode 100644 index 0000000000..e50f9afb62 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNc.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'creative-commons-nc'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f4e8'; +var svgPathData = 'M247.6 8C387.4 8 496 115.9 496 256c0 147.2-118.5 248-248.4 248C113.1 504 0 393.2 0 256 0 123.1 104.7 8 247.6 8zM55.8 189.1c-7.4 20.4-11.1 42.7-11.1 66.9 0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4v38.1h-28.8V368c-27.5-.3-52.6-10.2-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4zM248.4 52.3c-38.4 0-112.4 8.7-170.5 93l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3v-38.1h28.8v38.1c22.7 1.2 43.4 8.9 62 23L295 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCreativeCommonsNc = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNcEu.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNcEu.d.ts new file mode 100644 index 0000000000..28c75eb5a0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNcEu.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCreativeCommonsNcEu: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNcEu.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNcEu.js new file mode 100644 index 0000000000..4c339a0f91 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNcEu.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'creative-commons-nc-eu'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f4e9'; +var svgPathData = 'M247.7 8C103.6 8 0 124.8 0 256c0 136.3 111.7 248 247.7 248C377.9 504 496 403.1 496 256 496 117 388.4 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-23.2 3.7-45.2 10.9-66l65.7 29.1h-4.7v29.5h23.3c0 6.2-.4 3.2-.4 19.5h-22.8v29.5h27c11.4 67 67.2 101.3 124.6 101.3 26.6 0 50.6-7.9 64.8-15.8l-10-46.1c-8.7 4.6-28.2 10.8-47.3 10.8-28.2 0-58.1-10.9-67.3-50.2h90.3l128.3 56.8c-1.5 2.1-56.2 104.3-178.8 104.3zm-16.7-190.6l-.5-.4.9.4h-.4zm77.2-19.5h3.7v-29.5h-70.3l-28.6-12.6c2.5-5.5 5.4-10.5 8.8-14.3 12.9-15.8 31.1-22.4 51.1-22.4 18.3 0 35.3 5.4 46.1 10l11.6-47.3c-15-6.6-37-12.4-62.3-12.4-39 0-72.2 15.8-95.9 42.3-5.3 6.1-9.8 12.9-13.9 20.1l-81.6-36.1c64.6-96.8 157.7-93.6 170.7-93.6 113 0 203 90.2 203 203.4 0 18.7-2.1 36.3-6.3 52.9l-136.1-60.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCreativeCommonsNcEu = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNcJp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNcJp.d.ts new file mode 100644 index 0000000000..ce71821aa8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNcJp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCreativeCommonsNcJp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNcJp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNcJp.js new file mode 100644 index 0000000000..0d4fab0d10 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNcJp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'creative-commons-nc-jp'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f4ea'; +var svgPathData = 'M247.7 8C103.6 8 0 124.8 0 256c0 136.4 111.8 248 247.7 248C377.9 504 496 403.2 496 256 496 117.2 388.5 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-21.1 3-41.2 9-60.3l127 56.5h-27.9v38.6h58.1l5.7 11.8v18.7h-63.8V360h63.8v56h61.7v-56h64.2v-35.7l81 36.1c-1.5 2.2-57.1 98.3-175.2 98.3zm87.6-137.3h-57.6v-18.7l2.9-5.6 54.7 24.3zm6.5-51.4v-17.8h-38.6l63-116H301l-43.4 96-23-10.2-39.6-85.7h-65.8l27.3 51-81.9-36.5c27.8-44.1 82.6-98.1 173.7-98.1 112.8 0 203 90 203 203.4 0 21-2.7 40.6-7.9 59l-101-45.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCreativeCommonsNcJp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNd.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNd.d.ts new file mode 100644 index 0000000000..6a29c8f45c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNd.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCreativeCommonsNd: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNd.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNd.js new file mode 100644 index 0000000000..308953167b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsNd.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'creative-commons-nd'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f4eb'; +var svgPathData = 'M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm94 144.3v42.5H162.1V197h180.3zm0 79.8v42.5H162.1v-42.5h180.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCreativeCommonsNd = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsPd.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsPd.d.ts new file mode 100644 index 0000000000..5e90644c3d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsPd.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCreativeCommonsPd: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsPd.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsPd.js new file mode 100644 index 0000000000..c5062b5b61 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsPd.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'creative-commons-pd'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f4ec'; +var svgPathData = 'M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm0 449.5c-139.2 0-235.8-138-190.2-267.9l78.8 35.1c-2.1 10.5-3.3 21.5-3.3 32.9 0 99 73.9 126.9 120.4 126.9 22.9 0 53.5-6.7 79.4-29.5L297 311.1c-5.5 6.3-17.6 16.7-36.3 16.7-37.8 0-53.7-39.9-53.9-71.9 230.4 102.6 216.5 96.5 217.9 96.8-34.3 62.4-100.6 104.8-176.7 104.8zm194.2-150l-224-100c18.8-34 54.9-30.7 74.7-11l40.4-41.6c-27.1-23.3-58-27.5-78.1-27.5-47.4 0-80.9 20.5-100.7 51.6l-74.9-33.4c36.1-54.9 98.1-91.2 168.5-91.2 111.1 0 201.5 90.4 201.5 201.5 0 18-2.4 35.4-6.8 52-.3-.1-.4-.2-.6-.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCreativeCommonsPd = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsPdAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsPdAlt.d.ts new file mode 100644 index 0000000000..ee55ab36cf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsPdAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCreativeCommonsPdAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsPdAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsPdAlt.js new file mode 100644 index 0000000000..8b46156acc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsPdAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'creative-commons-pd-alt'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f4ed'; +var svgPathData = 'M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM135.5 323.3V186h68.2c33.7 0 50.5 15.5 50.5 46.5 0 9-3 46.5-57.1 46.5h-27v44.3h-34.6zm34.1-111.6v41.6h29.2c27.9 0 30-41.6-.9-41.6h-28.3zm93.9 111.6V186h53.2c21.4 0 70 5.2 70 68.6 0 63.5-48.6 68.6-70 68.6h-53.2zm34.1-108.5v79.7h19.9c24 0 34.5-15.3 34.5-39.9 0-42-31.2-39.9-35-39.9l-19.4.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCreativeCommonsPdAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsRemix.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsRemix.d.ts new file mode 100644 index 0000000000..644fbce154 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsRemix.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCreativeCommonsRemix: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsRemix.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsRemix.js new file mode 100644 index 0000000000..84d5a6ed42 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsRemix.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'creative-commons-remix'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f4ee'; +var svgPathData = 'M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm161.7 207.7l4.9 2.2v70c-7.2 3.6-63.4 27.5-67.3 28.8-6.5-1.8-113.7-46.8-137.3-56.2l-64.2 26.6-63.3-27.5v-63.8l59.3-24.8c-.7-.7-.4 5-.4-70.4l67.3-29.7L361 178.5v61.6l49.1 20.3zm-70.4 81.5v-43.8h-.4v-1.8l-113.8-46.5V295l113.8 46.9v-.4l.4.4zm7.5-57.6l39.9-16.4-36.8-15.5-39 16.4 35.9 15.5zm52.3 38.1v-43L355.2 298v43.4l44.3-19z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCreativeCommonsRemix = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsSa.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsSa.d.ts new file mode 100644 index 0000000000..846b3f5a11 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsSa.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCreativeCommonsSa: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsSa.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsSa.js new file mode 100644 index 0000000000..6534cb23da --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsSa.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'creative-commons-sa'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f4ef'; +var svgPathData = 'M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM137.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97h62.5c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6-33.1 0-51.7 14.6-55.8 43.8h18.2l-49.2 49.2-49-49.2h19.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCreativeCommonsSa = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsSampling.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsSampling.d.ts new file mode 100644 index 0000000000..5ac458f04c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsSampling.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCreativeCommonsSampling: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsSampling.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsSampling.js new file mode 100644 index 0000000000..a61414c0c7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsSampling.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'creative-commons-sampling'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f4f0'; +var svgPathData = 'M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm3.6 53.2c2.8-.3 11.5 1 11.5 11.5l6.6 107.2 4.9-59.3c0-6 4.7-10.6 10.6-10.6 5.9 0 10.6 4.7 10.6 10.6 0 2.5-.5-5.7 5.7 81.5l5.8-64.2c.3-2.9 2.9-9.3 10.2-9.3 3.8 0 9.9 2.3 10.6 8.9l11.5 96.5 5.3-12.8c1.8-4.4 5.2-6.6 10.2-6.6h58v21.3h-50.9l-18.2 44.3c-3.9 9.9-19.5 9.1-20.8-3.1l-4-31.9-7.5 92.6c-.3 3-3 9.3-10.2 9.3-3 0-9.8-2.1-10.6-9.3 0-1.9.6 5.8-6.2-77.9l-5.3 72.2c-1.1 4.8-4.8 9.3-10.6 9.3-2.9 0-9.8-2-10.6-9.3 0-1.9.5 6.7-5.8-87.7l-5.8 94.8c0 6.3-3.6 12.4-10.6 12.4-5.2 0-10.6-4.1-10.6-12l-5.8-87.7c-5.8 92.5-5.3 84-5.3 85.9-1.1 4.8-4.8 9.3-10.6 9.3-3 0-9.8-2.1-10.6-9.3 0-.7-.4-1.1-.4-2.6l-6.2-88.6L182 348c-.7 6.5-6.7 9.3-10.6 9.3-5.8 0-9.6-4.1-10.6-8.9L149.7 272c-2 4-3.5 8.4-11.1 8.4H87.2v-21.3H132l13.7-27.9c4.4-9.9 18.2-7.2 19.9 2.7l3.1 20.4 8.4-97.9c0-6 4.8-10.6 10.6-10.6.5 0 10.6-.2 10.6 12.4l4.9 69.1 6.6-92.6c0-10.1 9.5-10.6 10.2-10.6.6 0 10.6.7 10.6 10.6l5.3 80.6 6.2-97.9c.1-1.1-.6-10.3 9.9-11.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCreativeCommonsSampling = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsSamplingPlus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsSamplingPlus.d.ts new file mode 100644 index 0000000000..3292377b9c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsSamplingPlus.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCreativeCommonsSamplingPlus: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsSamplingPlus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsSamplingPlus.js new file mode 100644 index 0000000000..beb7dc9a17 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsSamplingPlus.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'creative-commons-sampling-plus'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f4f1'; +var svgPathData = 'M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm107 205.6c-4.7 0-9 2.8-10.7 7.2l-4 9.5-11-92.8c-1.7-13.9-22-13.4-23.1.4l-4.3 51.4-5.2-68.8c-1.1-14.3-22.1-14.2-23.2 0l-3.5 44.9-5.9-94.3c-.9-14.5-22.3-14.4-23.2 0l-5.1 83.7-4.3-66.3c-.9-14.4-22.2-14.4-23.2 0l-5.3 80.2-4.1-57c-1.1-14.3-22-14.3-23.2-.2l-7.7 89.8-1.8-12.2c-1.7-11.4-17.1-13.6-22-3.3l-13.2 27.7H87.5v23.2h51.3c4.4 0 8.4-2.5 10.4-6.4l10.7 73.1c2 13.5 21.9 13 23.1-.7l3.8-43.6 5.7 78.3c1.1 14.4 22.3 14.2 23.2-.1l4.6-70.4 4.8 73.3c.9 14.4 22.3 14.4 23.2-.1l4.9-80.5 4.5 71.8c.9 14.3 22.1 14.5 23.2.2l4.6-58.6 4.9 64.4c1.1 14.3 22 14.2 23.1.1l6.8-83 2.7 22.3c1.4 11.8 17.7 14.1 22.3 3.1l18-43.4h50.5V258l-58.4.3zm-78 5.2h-21.9v21.9c0 4.1-3.3 7.5-7.5 7.5-4.1 0-7.5-3.3-7.5-7.5v-21.9h-21.9c-4.1 0-7.5-3.3-7.5-7.5 0-4.1 3.4-7.5 7.5-7.5h21.9v-21.9c0-4.1 3.4-7.5 7.5-7.5s7.5 3.3 7.5 7.5v21.9h21.9c4.1 0 7.5 3.3 7.5 7.5 0 4.1-3.4 7.5-7.5 7.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCreativeCommonsSamplingPlus = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsShare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsShare.d.ts new file mode 100644 index 0000000000..3ccde2682e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsShare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCreativeCommonsShare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsShare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsShare.js new file mode 100644 index 0000000000..39fde65301 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCreativeCommonsShare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'creative-commons-share'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f4f2'; +var svgPathData = 'M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm101 132.4c7.8 0 13.7 6.1 13.7 13.7v182.5c0 7.7-6.1 13.7-13.7 13.7H214.3c-7.7 0-13.7-6-13.7-13.7v-54h-54c-7.8 0-13.7-6-13.7-13.7V131.1c0-8.2 6.6-12.7 12.4-13.7h136.4c7.7 0 13.7 6 13.7 13.7v54h54zM159.9 300.3h40.7V198.9c0-7.4 5.8-12.6 12-13.7h55.8v-40.3H159.9v155.4zm176.2-88.1H227.6v155.4h108.5V212.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCreativeCommonsShare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCss3.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCss3.d.ts new file mode 100644 index 0000000000..ad4c0a7a90 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCss3.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCss3: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCss3.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCss3.js new file mode 100644 index 0000000000..4b3d11aa03 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCss3.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'css3'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f13c'; +var svgPathData = 'M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCss3 = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCss3Alt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCss3Alt.d.ts new file mode 100644 index 0000000000..1124050f52 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCss3Alt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCss3Alt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCss3Alt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCss3Alt.js new file mode 100644 index 0000000000..fe86f431fa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCss3Alt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'css3-alt'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f38b'; +var svgPathData = 'M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCss3Alt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCuttlefish.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCuttlefish.d.ts new file mode 100644 index 0000000000..029f2da070 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCuttlefish.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCuttlefish: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCuttlefish.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCuttlefish.js new file mode 100644 index 0000000000..32708fb4c3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faCuttlefish.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'cuttlefish'; +var width = 440; +var height = 512; +var ligatures = []; +var unicode = 'f38c'; +var svgPathData = 'M344 305.5c-17.5 31.6-57.4 54.5-96 54.5-56.6 0-104-47.4-104-104s47.4-104 104-104c38.6 0 78.5 22.9 96 54.5 13.7-50.9 41.7-93.3 87-117.8C385.7 39.1 320.5 8 248 8 111 8 0 119 0 256s111 248 248 248c72.5 0 137.7-31.1 183-80.7-45.3-24.5-73.3-66.9-87-117.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCuttlefish = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDAndD.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDAndD.d.ts new file mode 100644 index 0000000000..fdd4baf551 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDAndD.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDAndD: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDAndD.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDAndD.js new file mode 100644 index 0000000000..0fefb84095 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDAndD.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'd-and-d'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f38d'; +var svgPathData = 'M82.5 98.9c-.6-17.2 2-33.8 12.7-48.2.3 7.4 1.2 14.5 4.2 21.6 5.9-27.5 19.7-49.3 42.3-65.5-1.9 5.9-3.5 11.8-3 17.7 8.7-7.4 18.8-17.8 44.4-22.7 14.7-2.8 29.7-2 42.1 1 38.5 9.3 61 34.3 69.7 72.3 5.3 23.1.7 45-8.3 66.4-5.2 12.4-12 24.4-20.7 35.1-2-1.9-3.9-3.8-5.8-5.6-42.8-40.8-26.8-25.2-37.4-37.4-1.1-1.2-1-2.2-.1-3.6 8.3-13.5 11.8-28.2 10-44-1.1-9.8-4.3-18.9-11.3-26.2-14.5-15.3-39.2-15-53.5.6-11.4 12.5-14.1 27.4-10.9 43.6.2 1.3.4 2.7 0 3.9-3.4 13.7-4.6 27.6-2.5 41.6.1.5.1 1.1.1 1.6 0 .3-.1.5-.2 1.1-21.8-11-36-28.3-43.2-52.2-8.3 17.8-11.1 35.5-6.6 54.1-15.6-15.2-21.3-34.3-22-55.2zm469.6 123.2c-11.6-11.6-25-20.4-40.1-26.6-12.8-5.2-26-7.9-39.9-7.1-10 .6-19.6 3.1-29 6.4-2.5.9-5.1 1.6-7.7 2.2-4.9 1.2-7.3-3.1-4.7-6.8 3.2-4.6 3.4-4.2 15-12 .6-.4 1.2-.8 2.2-1.5h-2.5c-.6 0-1.2.2-1.9.3-19.3 3.3-30.7 15.5-48.9 29.6-10.4 8.1-13.8 3.8-12-.5 1.4-3.5 3.3-6.7 5.1-10 1-1.8 2.3-3.4 3.5-5.1-.2-.2-.5-.3-.7-.5-27 18.3-46.7 42.4-57.7 73.3.3.3.7.6 1 .9.3-.6.5-1.2.9-1.7 10.4-12.1 22.8-21.8 36.6-29.8 18.2-10.6 37.5-18.3 58.7-20.2 4.3-.4 8.7-.1 13.1-.1-1.8.7-3.5.9-5.3 1.1-18.5 2.4-35.5 9-51.5 18.5-30.2 17.9-54.5 42.2-75.1 70.4-.3.4-.4.9-.7 1.3 14.5 5.3 24 17.3 36.1 25.6.2-.1.3-.2.4-.4l1.2-2.7c12.2-26.9 27-52.3 46.7-74.5 16.7-18.8 38-25.3 62.5-20 5.9 1.3 11.4 4.4 17.2 6.8 2.3-1.4 5.1-3.2 8-4.7 8.4-4.3 17.4-7 26.7-9 14.7-3.1 29.5-4.9 44.5-1.3v-.5c-.5-.4-1.2-.8-1.7-1.4zM316.7 397.6c-39.4-33-22.8-19.5-42.7-35.6-.8.9 0-.2-1.9 3-11.2 19.1-25.5 35.3-44 47.6-10.3 6.8-21.5 11.8-34.1 11.8-21.6 0-38.2-9.5-49.4-27.8-12-19.5-13.3-40.7-8.2-62.6 7.8-33.8 30.1-55.2 38.6-64.3-18.7-6.2-33 1.7-46.4 13.9.8-13.9 4.3-26.2 11.8-37.3-24.3 10.6-45.9 25-64.8 43.9-.3-5.8 5.4-43.7 5.6-44.7.3-2.7-.6-5.3-3-7.4-24.2 24.7-44.5 51.8-56.1 84.6 7.4-5.9 14.9-11.4 23.6-16.2-8.3 22.3-19.6 52.8-7.8 101.1 4.6 19 11.9 36.8 24.1 52.3 2.9 3.7 6.3 6.9 9.5 10.3.2-.2.4-.3.6-.5-1.4-7-2.2-14.1-1.5-21.9 2.2 3.2 3.9 6 5.9 8.6 12.6 16 28.7 27.4 47.2 35.6 25 11.3 51.1 13.3 77.9 8.6 54.9-9.7 90.7-48.6 116-98.8 1-1.8.6-2.9-.9-4.2zm172-46.4c-9.5-3.1-22.2-4.2-28.7-2.9 9.9 4 14.1 6.6 18.8 12 12.6 14.4 10.4 34.7-5.4 45.6-11.7 8.1-24.9 10.5-38.9 9.1-1.2-.1-2.3-.4-3-.6 2.8-3.7 6-7 8.1-10.8 9.4-16.8 5.4-42.1-8.7-56.1-2.1-2.1-4.6-3.9-7-5.9-.3 1.3-.1 2.1.1 2.8 4.2 16.6-8.1 32.4-24.8 31.8-7.6-.3-13.9-3.8-19.6-8.5-19.5-16.1-39.1-32.1-58.5-48.3-5.9-4.9-12.5-8.1-20.1-8.7-4.6-.4-9.3-.6-13.9-.9-5.9-.4-8.8-2.8-10.4-8.4-.9-3.4-1.5-6.8-2.2-10.2-1.5-8.1-6.2-13-14.3-14.2-4.4-.7-8.9-1-13.3-1.5-13-1.4-19.8-7.4-22.6-20.3-5 11-1.6 22.4 7.3 29.9 4.5 3.8 9.3 7.3 13.8 11.2 4.6 3.8 7.4 8.7 7.9 14.8.4 4.7.8 9.5 1.8 14.1 2.2 10.6 8.9 18.4 17 25.1 16.5 13.7 33 27.3 49.5 41.1 17.9 15 13.9 32.8 13 56-.9 22.9 12.2 42.9 33.5 51.2 1 .4 2 .6 3.6 1.1-15.7-18.2-10.1-44.1.7-52.3.3 2.2.4 4.3.9 6.4 9.4 44.1 45.4 64.2 85 56.9 16-2.9 30.6-8.9 42.9-19.8 2-1.8 3.7-4.1 5.9-6.5-19.3 4.6-35.8.1-50.9-10.6.7-.3 1.3-.3 1.9-.3 21.3 1.8 40.6-3.4 57-17.4 19.5-16.6 26.6-42.9 17.4-66-8.3-20.1-23.6-32.3-43.8-38.9zM99.4 179.3c-5.3-9.2-13.2-15.6-22.1-21.3 13.7-.5 26.6.2 39.6 3.7-7-12.2-8.5-24.7-5-38.7 5.3 11.9 13.7 20.1 23.6 26.8 19.7 13.2 35.7 19.6 46.7 30.2 3.4 3.3 6.3 7.1 9.6 10.9-.8-2.1-1.4-4.1-2.2-6-5-10.6-13-18.6-22.6-25-1.8-1.2-2.8-2.5-3.4-4.5-3.3-12.5-3-25.1-.7-37.6 1-5.5 2.8-10.9 4.5-16.3.8-2.4 2.3-4.6 4-6.6.6 6.9 0 25.5 19.6 46 10.8 11.3 22.4 21.9 33.9 32.7 9 8.5 18.3 16.7 25.5 26.8 1.1 1.6 2.2 3.3 3.8 4.7-5-13-14.2-24.1-24.2-33.8-9.6-9.3-19.4-18.4-29.2-27.4-3.3-3-4.6-6.7-5.1-10.9-1.2-10.4 0-20.6 4.3-30.2.5-1 1.1-2 1.9-3.3.5 4.2.6 7.9 1.4 11.6 4.8 23.1 20.4 36.3 49.3 63.5 10 9.4 19.3 19.2 25.6 31.6 4.8 9.3 7.3 19 5.7 29.6-.1.6.5 1.7 1.1 2 6.2 2.6 10 6.9 9.7 14.3 7.7-2.6 12.5-8 16.4-14.5 4.2 20.2-9.1 50.3-27.2 58.7.4-4.5 5-23.4-16.5-27.7-6.8-1.3-12.8-1.3-22.9-2.1 4.7-9 10.4-20.6.5-22.4-24.9-4.6-52.8 1.9-57.8 4.6 8.2.4 16.3 1 23.5 3.3-2 6.5-4 12.7-5.8 18.9-1.9 6.5 2.1 14.6 9.3 9.6 1.2-.9 2.3-1.9 3.3-2.7-3.1 17.9-2.9 15.9-2.8 18.3.3 10.2 9.5 7.8 15.7 7.3-2.5 11.8-29.5 27.3-45.4 25.8 7-4.7 12.7-10.3 15.9-17.9-6.5.8-12.9 1.6-19.2 2.4l-.3-.9c4.7-3.4 8-7.8 10.2-13.1 8.7-21.1-3.6-38-25-39.9-9.1-.8-17.8.8-25.9 5.5 6.2-15.6 17.2-26.6 32.6-34.5-15.2-4.3-8.9-2.7-24.6-6.3 14.6-9.3 30.2-13.2 46.5-14.6-5.2-3.2-48.1-3.6-70.2 20.9 7.9 1.4 15.5 2.8 23.2 4.2-23.8 7-44 19.7-62.4 35.6 1.1-4.8 2.7-9.5 3.3-14.3.6-4.5.8-9.2.1-13.6-1.5-9.4-8.9-15.1-19.7-16.3-7.9-.9-15.6.1-23.3 1.3-.9.1-1.7.3-2.9 0 15.8-14.8 36-21.7 53.1-33.5 6-4.5 6.8-8.2 3-14.9zm128.4 26.8c3.3 16 12.6 25.5 23.8 24.3-4.6-11.3-12.1-19.5-23.8-24.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDAndD = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDashcube.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDashcube.d.ts new file mode 100644 index 0000000000..30a47522e9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDashcube.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDashcube: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDashcube.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDashcube.js new file mode 100644 index 0000000000..2669c435a1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDashcube.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'dashcube'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f210'; +var svgPathData = 'M326.6 104H110.4c-51.1 0-91.2 43.3-91.2 93.5V427c0 50.5 40.1 85 91.2 85h227.2c51.1 0 91.2-34.5 91.2-85V0L326.6 104zM153.9 416.5c-17.7 0-32.4-15.1-32.4-32.8V240.8c0-17.7 14.7-32.5 32.4-32.5h140.7c17.7 0 32 14.8 32 32.5v123.5l51.1 52.3H153.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDashcube = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDelicious.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDelicious.d.ts new file mode 100644 index 0000000000..9c355a00ab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDelicious.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDelicious: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDelicious.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDelicious.js new file mode 100644 index 0000000000..8649a08f0a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDelicious.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'delicious'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f1a5'; +var svgPathData = 'M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1.5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3 1 1.1 2.1 2.2 3.3 3.3 5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12zM416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192v176z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDelicious = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDeploydog.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDeploydog.d.ts new file mode 100644 index 0000000000..2ea947d369 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDeploydog.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDeploydog: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDeploydog.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDeploydog.js new file mode 100644 index 0000000000..24c64644ac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDeploydog.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'deploydog'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f38e'; +var svgPathData = 'M382.2 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.6 0-33.2 16.4-33.2 32.6zM188.5 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.7 0-33.2 16.4-33.2 32.6zM448 96c17.5 0 32 14.4 32 32v256c0 17.5-14.4 32-32 32H64c-17.5 0-32-14.4-32-32V128c0-17.5 14.4-32 32-32h384m0-32H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h384c35.2 0 64-28.8 64-64V128c0-35.2-28.8-64-64-64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDeploydog = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDeskpro.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDeskpro.d.ts new file mode 100644 index 0000000000..d00260e858 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDeskpro.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDeskpro: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDeskpro.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDeskpro.js new file mode 100644 index 0000000000..9e79745560 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDeskpro.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'deskpro'; +var width = 480; +var height = 512; +var ligatures = []; +var unicode = 'f38f'; +var svgPathData = 'M205.9 512l31.1-38.4c12.3-.2 25.6-1.4 36.5-6.6 38.9-18.6 38.4-61.9 38.3-63.8-.1-5-.8-4.4-28.9-37.4H362c-.2 50.1-7.3 68.5-10.2 75.7-9.4 23.7-43.9 62.8-95.2 69.4-8.7 1.1-32.8 1.2-50.7 1.1zm200.4-167.7c38.6 0 58.5-13.6 73.7-30.9l-175.5-.3-17.4 31.3 119.2-.1zm-43.6-223.9v168.3h-73.5l-32.7 55.5H250c-52.3 0-58.1-56.5-58.3-58.9-1.2-13.2-21.3-11.6-20.1 1.8 1.4 15.8 8.8 40 26.4 57.1h-91c-25.5 0-110.8-26.8-107-114V16.9C0 .9 9.7.3 15 .1h82c.2 0 .3.1.5.1 4.3-.4 50.1-2.1 50.1 43.7 0 13.3 20.2 13.4 20.2 0 0-18.2-5.5-32.8-15.8-43.7h84.2c108.7-.4 126.5 79.4 126.5 120.2zm-132.5 56l64 29.3c13.3-45.5-42.2-71.7-64-29.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDeskpro = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDeviantart.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDeviantart.d.ts new file mode 100644 index 0000000000..6f5ba3a5e7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDeviantart.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDeviantart: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDeviantart.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDeviantart.js new file mode 100644 index 0000000000..6f34847e4d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDeviantart.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'deviantart'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f1bd'; +var svgPathData = 'M320 93.2l-98.2 179.1 7.4 9.5H320v127.7H159.1l-13.5 9.2-43.7 84c-.3 0-8.6 8.6-9.2 9.2H0v-93.2l93.2-179.4-7.4-9.2H0V102.5h156l13.5-9.2 43.7-84c.3 0 8.6-8.6 9.2-9.2H320v93.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDeviantart = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDigg.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDigg.d.ts new file mode 100644 index 0000000000..ef3bab67d1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDigg.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDigg: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDigg.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDigg.js new file mode 100644 index 0000000000..d6b2e36fe2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDigg.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'digg'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1a6'; +var svgPathData = 'M81.7 172.3H0v174.4h132.7V96h-51v76.3zm0 133.4H50.9v-92.3h30.8v92.3zm297.2-133.4v174.4h81.8v28.5h-81.8V416H512V172.3H378.9zm81.8 133.4h-30.8v-92.3h30.8v92.3zm-235.6 41h82.1v28.5h-82.1V416h133.3V172.3H225.1v174.4zm51.2-133.3h30.8v92.3h-30.8v-92.3zM153.3 96h51.3v51h-51.3V96zm0 76.3h51.3v174.4h-51.3V172.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDigg = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDigitalOcean.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDigitalOcean.d.ts new file mode 100644 index 0000000000..e70fd1a6fc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDigitalOcean.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDigitalOcean: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDigitalOcean.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDigitalOcean.js new file mode 100644 index 0000000000..b7de631915 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDigitalOcean.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'digital-ocean'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f391'; +var svgPathData = 'M256 504v-96.1c101.8 0 180.8-100.9 141.7-208-14.3-39.6-46.1-71.4-85.8-85.7-107.1-38.8-208.1 39.9-208.1 141.7H8C8 93.7 164.9-32.8 335 20.3c74.2 23.3 133.6 82.4 156.6 156.6C544.8 347.2 418.6 504 256 504zm.3-191.4h-95.6v95.6h95.6v-95.6zm-95.6 95.6H87v73.6h73.7v-73.6zM87 346.6H25.4v61.6H87v-61.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDigitalOcean = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDiscord.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDiscord.d.ts new file mode 100644 index 0000000000..045eff46ad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDiscord.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDiscord: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDiscord.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDiscord.js new file mode 100644 index 0000000000..c350d902b7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDiscord.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'discord'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f392'; +var svgPathData = 'M297.216 243.2c0 15.616-11.52 28.416-26.112 28.416-14.336 0-26.112-12.8-26.112-28.416s11.52-28.416 26.112-28.416c14.592 0 26.112 12.8 26.112 28.416zm-119.552-28.416c-14.592 0-26.112 12.8-26.112 28.416s11.776 28.416 26.112 28.416c14.592 0 26.112-12.8 26.112-28.416.256-15.616-11.52-28.416-26.112-28.416zM448 52.736V512c-64.494-56.994-43.868-38.128-118.784-107.776l13.568 47.36H52.48C23.552 451.584 0 428.032 0 398.848V52.736C0 23.552 23.552 0 52.48 0h343.04C424.448 0 448 23.552 448 52.736zm-72.96 242.688c0-82.432-36.864-149.248-36.864-149.248-36.864-27.648-71.936-26.88-71.936-26.88l-3.584 4.096c43.52 13.312 63.744 32.512 63.744 32.512-60.811-33.329-132.244-33.335-191.232-7.424-9.472 4.352-15.104 7.424-15.104 7.424s21.248-20.224 67.328-33.536l-2.56-3.072s-35.072-.768-71.936 26.88c0 0-36.864 66.816-36.864 149.248 0 0 21.504 37.12 78.08 38.912 0 0 9.472-11.52 17.152-21.248-32.512-9.728-44.8-30.208-44.8-30.208 3.766 2.636 9.976 6.053 10.496 6.4 43.21 24.198 104.588 32.126 159.744 8.96 8.96-3.328 18.944-8.192 29.44-15.104 0 0-12.8 20.992-46.336 30.464 7.68 9.728 16.896 20.736 16.896 20.736 56.576-1.792 78.336-38.912 78.336-38.912z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDiscord = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDiscourse.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDiscourse.d.ts new file mode 100644 index 0000000000..635d848409 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDiscourse.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDiscourse: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDiscourse.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDiscourse.js new file mode 100644 index 0000000000..572451593d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDiscourse.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'discourse'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f393'; +var svgPathData = 'M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDiscourse = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDochub.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDochub.d.ts new file mode 100644 index 0000000000..a16c787011 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDochub.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDochub: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDochub.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDochub.js new file mode 100644 index 0000000000..3e5f8fa8ae --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDochub.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'dochub'; +var width = 416; +var height = 512; +var ligatures = []; +var unicode = 'f394'; +var svgPathData = 'M397.9 160H256V19.6L397.9 160zM304 192v130c0 66.8-36.5 100.1-113.3 100.1H96V84.8h94.7c12 0 23.1.8 33.1 2.5v-84C212.9 1.1 201.4 0 189.2 0H0v512h189.2C329.7 512 400 447.4 400 318.1V192h-96z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDochub = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDocker.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDocker.d.ts new file mode 100644 index 0000000000..2e4e9e40de --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDocker.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDocker: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDocker.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDocker.js new file mode 100644 index 0000000000..c3a05d0397 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDocker.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'docker'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f395'; +var svgPathData = 'M349.9 236.3h-66.1v-59.4h66.1v59.4zm0-204.3h-66.1v60.7h66.1V32zm78.2 144.8H362v59.4h66.1v-59.4zm-156.3-72.1h-66.1v60.1h66.1v-60.1zm78.1 0h-66.1v60.1h66.1v-60.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4.4 67.6.1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1l-13.3-8.9zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm-78.1-72.1h-66.1v60.1h66.1v-60.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDocker = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDraft2digital.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDraft2digital.d.ts new file mode 100644 index 0000000000..8c797028b6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDraft2digital.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDraft2digital: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDraft2digital.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDraft2digital.js new file mode 100644 index 0000000000..236ce7d01a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDraft2digital.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'draft2digital'; +var width = 480; +var height = 512; +var ligatures = []; +var unicode = 'f396'; +var svgPathData = 'M369.9 425.4V371l47.1 27.2-47.1 27.2zM82.4 380.6c25.5-27.3 97.7-104.7 150.9-170 35.1-43.1 40.3-82.4 28.4-112.7-7.4-18.8-17.5-30.2-24.3-35.7 45.3 2.1 68 23.4 82.2 38.3 0 0 42.4 48.2 5.8 113.3-37 65.9-110.9 147.5-128.5 166.7H82.4zm51.8-219.2c0 12.4-10 22.4-22.4 22.4-12.4 0-22.4-10-22.4-22.4 0-12.4 10-22.4 22.4-22.4 12.4 0 22.4 10.1 22.4 22.4M336 315.9v64.7h-91.3c30.8-35 81.8-95.9 111.8-149.3 35.2-62.6 16.1-123.4-12.8-153.3-4.4-4.6-62.2-62.9-166-41.2-59.1 12.4-89.4 43.4-104.3 67.3-13.1 20.9-17 39.8-18.2 47.7-5.5 33 19.4 67.1 56.7 67.1 31.7 0 57.3-25.7 57.3-57.4 0-27.1-19.7-52.1-48-56.8 1.8-7.3 17.7-21.1 26.3-24.7 41.1-17.3 78 5.2 83.3 33.5 8.3 44.3-37.1 90.4-69.7 127.6C84.5 328.1 18.3 396.8 0 415.9l336-.1V480l144-81.9-144-82.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDraft2digital = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDribbble.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDribbble.d.ts new file mode 100644 index 0000000000..21fffbbe9e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDribbble.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDribbble: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDribbble.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDribbble.js new file mode 100644 index 0000000000..0e3b9cf8b1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDribbble.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'dribbble'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f17d'; +var svgPathData = 'M256 8C119.252 8 8 119.252 8 256s111.252 248 248 248 248-111.252 248-248S392.748 8 256 8zm163.97 114.366c29.503 36.046 47.369 81.957 47.835 131.955-6.984-1.477-77.018-15.682-147.502-6.818-5.752-14.041-11.181-26.393-18.617-41.614 78.321-31.977 113.818-77.482 118.284-83.523zM396.421 97.87c-3.81 5.427-35.697 48.286-111.021 76.519-34.712-63.776-73.185-116.168-79.04-124.008 67.176-16.193 137.966 1.27 190.061 47.489zm-230.48-33.25c5.585 7.659 43.438 60.116 78.537 122.509-99.087 26.313-186.36 25.934-195.834 25.809C62.38 147.205 106.678 92.573 165.941 64.62zM44.17 256.323c0-2.166.043-4.322.108-6.473 9.268.19 111.92 1.513 217.706-30.146 6.064 11.868 11.857 23.915 17.174 35.949-76.599 21.575-146.194 83.527-180.531 142.306C64.794 360.405 44.17 310.73 44.17 256.323zm81.807 167.113c22.127-45.233 82.178-103.622 167.579-132.756 29.74 77.283 42.039 142.053 45.189 160.638-68.112 29.013-150.015 21.053-212.768-27.882zm248.38 8.489c-2.171-12.886-13.446-74.897-41.152-151.033 66.38-10.626 124.7 6.768 131.947 9.055-9.442 58.941-43.273 109.844-90.795 141.978z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDribbble = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDribbbleSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDribbbleSquare.d.ts new file mode 100644 index 0000000000..16056be5cc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDribbbleSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDribbbleSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDribbbleSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDribbbleSquare.js new file mode 100644 index 0000000000..c97a62103c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDribbbleSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'dribbble-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f397'; +var svgPathData = 'M90.2 228.2c8.9-42.4 37.4-77.7 75.7-95.7 3.6 4.9 28 38.8 50.7 79-64 17-120.3 16.8-126.4 16.7zM314.6 154c-33.6-29.8-79.3-41.1-122.6-30.6 3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4zM140.1 364c40.5 31.6 93.3 36.7 137.3 18-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6zm98.8-108.2c-3.4-7.8-7.2-15.5-11.1-23.2C159.6 253 93.4 252.2 87.4 252c0 1.4-.1 2.8-.1 4.2 0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8zm34.9 16.3c17.9 49.1 25.1 89.1 26.5 97.4 30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8zm-20.3-48.4c4.8 9.8 8.3 17.8 12 26.8 45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 176c0-88.2-71.8-160-160-160S64 167.8 64 256s71.8 160 160 160 160-71.8 160-160z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDribbbleSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDropbox.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDropbox.d.ts new file mode 100644 index 0000000000..c922970704 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDropbox.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDropbox: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDropbox.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDropbox.js new file mode 100644 index 0000000000..ed4058c534 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDropbox.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'dropbox'; +var width = 528; +var height = 512; +var ligatures = []; +var unicode = 'f16b'; +var svgPathData = 'M264.4 116.3l-132 84.3 132 84.3-132 84.3L0 284.1l132.3-84.3L0 116.3 132.3 32l132.1 84.3zM131.6 395.7l132-84.3 132 84.3-132 84.3-132-84.3zm132.8-111.6l132-84.3-132-83.6L395.7 32 528 116.3l-132.3 84.3L528 284.8l-132.3 84.3-131.3-85z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDropbox = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDrupal.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDrupal.d.ts new file mode 100644 index 0000000000..5e2f062c44 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDrupal.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDrupal: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDrupal.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDrupal.js new file mode 100644 index 0000000000..16d27ab4aa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDrupal.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'drupal'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f1a9'; +var svgPathData = 'M319.5 114.7c-22.2-14-43.5-19.5-64.7-33.5-13-8.8-31.3-30-46.5-48.3-2.7 29.3-11.5 41.2-22 49.5-21.3 17-34.8 22.2-53.5 32.3C117 123 32 181.5 32 290.5 32 399.7 123.8 480 225.8 480 327.5 480 416 406 416 294c0-112.3-83-171-96.5-179.3zm2.5 325.6c-20.1 20.1-90.1 28.7-116.7 4.2-4.8-4.8.3-12 6.5-12 0 0 17 13.3 51.5 13.3 27 0 46-7.7 54.5-14 6.1-4.6 8.4 4.3 4.2 8.5zm-54.5-52.6c8.7-3.6 29-3.8 36.8 1.3 4.1 2.8 16.1 18.8 6.2 23.7-8.4 4.2-1.2-15.7-26.5-15.7-14.7 0-19.5 5.2-26.7 11-7 6-9.8 8-12.2 4.7-6-8.2 15.9-22.3 22.4-25zM360 405c-15.2-1-45.5-48.8-65-49.5-30.9-.9-104.1 80.7-161.3 42-38.8-26.6-14.6-104.8 51.8-105.2 49.5-.5 83.8 49 108.5 48.5 21.3-.3 61.8-41.8 81.8-41.8 48.7 0 23.3 109.3-15.8 106z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDrupal = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDyalog.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDyalog.d.ts new file mode 100644 index 0000000000..727c381595 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDyalog.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDyalog: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDyalog.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDyalog.js new file mode 100644 index 0000000000..2ae8055290 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faDyalog.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'dyalog'; +var width = 416; +var height = 512; +var ligatures = []; +var unicode = 'f399'; +var svgPathData = 'M0 32v119.2h64V96h107.2C284.6 96 352 176.2 352 255.9 352 332 293.4 416 171.2 416H0v64h171.2C331.9 480 416 367.3 416 255.9c0-58.7-22.1-113.4-62.3-154.3C308.9 56 245.7 32 171.2 32H0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDyalog = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEarlybirds.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEarlybirds.d.ts new file mode 100644 index 0000000000..acb1013c34 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEarlybirds.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEarlybirds: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEarlybirds.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEarlybirds.js new file mode 100644 index 0000000000..fe3056e423 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEarlybirds.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'earlybirds'; +var width = 480; +var height = 512; +var ligatures = []; +var unicode = 'f39a'; +var svgPathData = 'M313.2 47.5c1.2-13 21.3-14 36.6-8.7.9.3 26.2 9.7 19 15.2-27.9-7.4-56.4 18.2-55.6-6.5zm-201 6.9c30.7-8.1 62 20 61.1-7.1-1.3-14.2-23.4-15.3-40.2-9.6-1 .3-28.7 10.5-20.9 16.7zM319.4 160c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-159.7 0c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm318.5 163.2c-9.9 24-40.7 11-63.9-1.2-13.5 69.1-58.1 111.4-126.3 124.2.3.9-2-.1 24 1 33.6 1.4 63.8-3.1 97.4-8-19.8-13.8-11.4-37.1-9.8-38.1 1.4-.9 14.7 1.7 21.6 11.5 8.6-12.5 28.4-14.8 30.2-13.6 1.6 1.1 6.6 20.9-6.9 34.6 4.7-.9 8.2-1.6 9.8-2.1 2.6-.8 17.7 11.3 3.1 13.3-14.3 2.3-22.6 5.1-47.1 10.8-45.9 10.7-85.9 11.8-117.7 12.8l1 11.6c3.8 18.1-23.4 24.3-27.6 6.2.8 17.9-27.1 21.8-28.4-1l-.5 5.3c-.7 18.4-28.4 17.9-28.3-.6-7.5 13.5-28.1 6.8-26.4-8.5l1.2-12.4c-36.7.9-59.7 3.1-61.8 3.1-20.9 0-20.9-31.6 0-31.6 2.4 0 27.7 1.3 63.2 2.8-61.1-15.5-103.7-55-114.9-118.2-25 12.8-57.5 26.8-68.2.8-10.5-25.4 21.5-42.6 66.8-73.4.7-6.6 1.6-13.3 2.7-19.8-14.4-19.6-11.6-36.3-16.1-60.4-16.8 2.4-23.2-9.1-23.6-23.1.3-7.3 2.1-14.9 2.4-15.4 1.1-1.8 10.1-2 12.7-2.6 6-31.7 50.6-33.2 90.9-34.5 19.7-21.8 45.2-41.5 80.9-48.3C203.3 29 215.2 8.5 216.2 8c1.7-.8 21.2 4.3 26.3 23.2 5.2-8.8 18.3-11.4 19.6-10.7 1.1.6 6.4 15-4.9 25.9 40.3 3.5 72.2 24.7 96 50.7 36.1 1.5 71.8 5.9 77.1 34 2.7.6 11.6.8 12.7 2.6.3.5 2.1 8.1 2.4 15.4-.5 13.9-6.8 25.4-23.6 23.1-3.2 17.3-2.7 32.9-8.7 47.7 2.4 11.7 4 23.8 4.8 36.4 37 25.4 70.3 42.5 60.3 66.9zM207.4 159.9c.9-44-37.9-42.2-78.6-40.3-21.7 1-38.9 1.9-45.5 13.9-11.4 20.9 5.9 92.9 23.2 101.2 9.8 4.7 73.4 7.9 86.3-7.1 8.2-9.4 15-49.4 14.6-67.7zm52 58.3c-4.3-12.4-6-30.1-15.3-32.7-2-.5-9-.5-11 0-10 2.8-10.8 22.1-17 37.2 15.4 0 19.3 9.7 23.7 9.7 4.3 0 6.3-11.3 19.6-14.2zm135.7-84.7c-6.6-12.1-24.8-12.9-46.5-13.9-40.2-1.9-78.2-3.8-77.3 40.3-.5 18.3 5 58.3 13.2 67.8 13 14.9 76.6 11.8 86.3 7.1 15.8-7.6 36.5-78.9 24.3-101.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEarlybirds = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEbay.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEbay.d.ts new file mode 100644 index 0000000000..3f60765402 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEbay.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEbay: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEbay.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEbay.js new file mode 100644 index 0000000000..b861dd5aa1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEbay.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'ebay'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f4f4'; +var svgPathData = 'M405.2 263.8c-29.1.9-47.2 6.2-47.2 25.3 0 12.4 9.9 25.8 35 25.8 33.7 0 51.6-18.4 51.6-48.4v-3.3c-11.8 0-26.3.1-39.4.6m71.5 39.7c0 9.3.3 18.6 1 26.8h-29.8c-.8-6.9-1.1-13.6-1.1-20.2-16.1 19.8-35.3 25.5-61.9 25.5-39.5 0-60.6-20.9-60.6-45 0-35 28.8-47.3 78.6-48.4 13.7-.3 29-.4 41.7-.4v-3.4c0-23.4-15-33-41-33-19.3 0-33.6 8-35 21.8h-33.7c3.6-34.4 39.7-43.1 71.5-43.1 38.1 0 70.3 13.5 70.3 53.8v65.6zm-349-56.8c-2.3-54.7-87.5-56.6-94.4 0h94.4zm-95 21.4c3.5 58.3 79.2 57.4 91.2 21.6H157c-6.4 34.4-43 46.1-74.4 46.1-57.2 0-82.5-31.5-82.5-74 0-46.8 26.2-77.6 83-77.6 45.3 0 78.4 23.7 78.4 75.4v8.5H32.7zm211 45.7c29.8 0 50.2-21.5 50.2-53.8 0-32.4-20.4-53.8-50.2-53.8-29.6 0-50.2 21.4-50.2 53.8 0 32.3 20.6 53.8 50.2 53.8m-82.2-186h32.1v80.6c15.7-18.7 37.4-24.2 58.7-24.2 35.7 0 75.4 24.1 75.4 76.2 0 43.6-31.5 75.4-76 75.4-23.3 0-45.1-8.3-58.7-24.9 0 6.6-.4 13.2-1.1 19.5h-31.5c.5-10.2 1.1-22.8 1.1-33.1V127.8zM640 189.5l-99.2 194.8h-35.9l28.5-54.1-74.6-140.7h37.5l54.9 109.9L606 189.5h34z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEbay = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEdge.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEdge.d.ts new file mode 100644 index 0000000000..d301c7038f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEdge.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEdge: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEdge.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEdge.js new file mode 100644 index 0000000000..026cdcfab7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEdge.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'edge'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f282'; +var svgPathData = 'M25.714 228.163c.111-.162.23-.323.342-.485-.021.162-.045.323-.065.485h-.277zm460.572 15.508c0-44.032-7.754-84.465-28.801-122.405C416.498 47.879 343.912 8.001 258.893 8.001 118.962 7.724 40.617 113.214 26.056 227.679c42.429-61.312 117.073-121.376 220.375-124.966 0 0 109.666 0 99.419 104.957H169.997c6.369-37.386 18.554-58.986 34.339-78.926-75.048 34.893-121.85 96.096-120.742 188.315.83 71.448 50.124 144.836 120.743 171.976 83.357 31.847 192.776 7.2 240.132-21.324V363.307c-80.864 56.494-270.871 60.925-272.255-67.572h314.073v-52.064z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEdge = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faElementor.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faElementor.d.ts new file mode 100644 index 0000000000..c8bf948a67 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faElementor.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faElementor: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faElementor.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faElementor.js new file mode 100644 index 0000000000..2f92784547 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faElementor.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'elementor'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f430'; +var svgPathData = 'M425.6 32H22.4C10 32 0 42 0 54.4v403.2C0 470 10 480 22.4 480h403.2c12.4 0 22.4-10 22.4-22.4V54.4C448 42 438 32 425.6 32M164.3 355.5h-39.8v-199h39.8v199zm159.3 0H204.1v-39.8h119.5v39.8zm0-79.6H204.1v-39.8h119.5v39.8zm0-79.7H204.1v-39.8h119.5v39.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faElementor = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEmber.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEmber.d.ts new file mode 100644 index 0000000000..41085b5502 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEmber.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEmber: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEmber.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEmber.js new file mode 100644 index 0000000000..f0b359a9b2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEmber.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'ember'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f423'; +var svgPathData = 'M639.9 254.6c-1.1-10.7-10.7-6.8-10.7-6.8s-15.6 12.1-29.3 10.7c-13.7-1.3-9.4-32-9.4-32s3-28.1-5.1-30.4c-8.1-2.4-18 7.3-18 7.3s-12.4 13.7-18.3 31.2l-1.6.5s1.9-30.6-.3-37.6c-1.6-3.5-16.4-3.2-18.8 3s-14.2 49.2-15 67.2c0 0-23.1 19.6-43.3 22.8s-25-9.4-25-9.4 54.8-15.3 52.9-59.1c-1.9-43.8-44.2-27.6-49-24-4.6 3.5-29.4 18.4-36.6 59.7-.2 1.4-.7 7.5-.7 7.5s-21.2 14.2-33 18c0 0 33-55.6-7.3-80.9-18.3-11-32.8 12.1-32.8 12.1s54.5-60.7 42.5-112c-5.8-24.4-18-27.1-29.2-23.1-17 6.7-23.5 16.7-23.5 16.7s-22 32-27.1 79.5-12.6 105.1-12.6 105.1-10.5 10.2-20.2 10.7-5.4-28.7-5.4-28.7 7.5-44.6 7-52.1-1.1-11.6-9.9-14.2c-8.9-2.7-18.5 8.6-18.5 8.6s-25.5 38.7-27.7 44.6l-1.3 2.4-1.3-1.6s18-52.7.8-53.5c-17.2-.8-28.5 18.8-28.5 18.8s-19.6 32.8-20.4 36.5l-1.3-1.6s8.1-38.2 6.4-47.6c-1.6-9.4-10.5-7.5-10.5-7.5s-11.3-1.3-14.2 5.9-13.7 55.3-15 70.7c0 0-28.2 20.2-46.8 20.4-18.5.3-16.7-11.8-16.7-11.8s68-23.3 49.4-69.2c-8.3-11.8-18-15.5-31.7-15.3-13.7.3-30.3 8.6-41.3 33.3-5.3 11.8-6.8 23-7.8 31.5 0 0-12.3 2.4-18.8-2.9s-10 0-10 0-11.2 14-.1 18.3 28.1 6.1 28.1 6.1c1.6 7.5 6.2 19.5 19.6 29.7 20.2 15.3 58.8-1.3 58.8-1.3l15.9-8.8s.5 14.6 12.1 16.7c11.6 2.1 16.4 1 36.5-47.9 11.8-25 12.6-23.6 12.6-23.6l1.3-.3s-9.1 46.8-5.6 59.7C187.7 319.4 203 318 203 318s8.3 2.4 15-21.2c6.7-23.6 19.6-49.9 19.6-49.9h1.6s-5.6 48.1 3 63.7c8.6 15.6 30.9 5.3 30.9 5.3s15.6-7.8 18-10.2c0 0 18.5 15.8 44.6 12.9 58.3-11.5 79.1-25.9 79.1-25.9s10 24.4 41.1 26.7c35.5 2.7 54.8-18.6 54.8-18.6s-.3 13.5 12.1 18.6c12.4 5.1 20.7-22.8 20.7-22.8l20.7-57.2h1.9s1.1 37.3 21.5 43.2 47-13.7 47-13.7 6.4-3.5 5.3-14.3zm-578 5.3c.8-32 21.8-45.9 29-39 7.3 7 4.6 22-9.1 31.4-13.7 9.5-19.9 7.6-19.9 7.6zm272.8-123.8s19.1-49.7 23.6-25.5-40 96.2-40 96.2c.5-16.2 16.4-70.7 16.4-70.7zm22.8 138.4c-12.6 33-43.3 19.6-43.3 19.6s-3.5-11.8 6.4-44.9 33.3-20.2 33.3-20.2 16.2 12.4 3.6 45.5zm84.6-14.6s-3-10.5 8.1-30.6c11-20.2 19.6-9.1 19.6-9.1s9.4 10.2-1.3 25.5-26.4 14.2-26.4 14.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEmber = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEmpire.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEmpire.d.ts new file mode 100644 index 0000000000..625f54f81d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEmpire.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEmpire: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEmpire.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEmpire.js new file mode 100644 index 0000000000..4b2fef4669 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEmpire.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'empire'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f1d1'; +var svgPathData = 'M287.6 54.2c-10.8-2.2-22.1-3.3-33.5-3.6V32.4c78.1 2.2 146.1 44 184.6 106.6l-15.8 9.1c-6.1-9.7-12.7-18.8-20.2-27.1l-18 15.5c-26-29.6-61.4-50.7-101.9-58.4l4.8-23.9zM53.4 322.4l23-7.7c-6.4-18.3-10-38.2-10-58.7s3.3-40.4 9.7-58.7l-22.7-7.7c3.6-10.8 8.3-21.3 13.6-31l-15.8-9.1C34 181 24.1 217.5 24.1 256s10 75 27.1 106.6l15.8-9.1c-5.3-10-9.7-20.3-13.6-31.1zM213.1 434c-40.4-8-75.8-29.1-101.9-58.7l-18 15.8c-7.5-8.6-14.4-17.7-20.2-27.4l-16 9.4c38.5 62.3 106.8 104.3 184.9 106.6v-18.3c-11.3-.3-22.7-1.7-33.5-3.6l4.7-23.8zM93.3 120.9l18 15.5c26-29.6 61.4-50.7 101.9-58.4l-4.7-23.8c10.8-2.2 22.1-3.3 33.5-3.6V32.4C163.9 34.6 95.9 76.4 57.4 139l15.8 9.1c6-9.7 12.6-18.9 20.1-27.2zm309.4 270.2l-18-15.8c-26 29.6-61.4 50.7-101.9 58.7l4.7 23.8c-10.8 1.9-22.1 3.3-33.5 3.6v18.3c78.1-2.2 146.4-44.3 184.9-106.6l-16.1-9.4c-5.7 9.7-12.6 18.8-20.1 27.4zM496 256c0 137-111 248-248 248S0 393 0 256 111 8 248 8s248 111 248 248zm-12.2 0c0-130.1-105.7-235.8-235.8-235.8S12.2 125.9 12.2 256 117.9 491.8 248 491.8 483.8 386.1 483.8 256zm-39-106.6l-15.8 9.1c5.3 9.7 10 20.2 13.6 31l-22.7 7.7c6.4 18.3 9.7 38.2 9.7 58.7s-3.6 40.4-10 58.7l23 7.7c-3.9 10.8-8.3 21-13.6 31l15.8 9.1C462 331 471.9 294.5 471.9 256s-9.9-75-27.1-106.6zm-183 177.7c16.3-3.3 30.4-11.6 40.7-23.5l51.2 44.8c11.9-13.6 21.3-29.3 27.1-46.8l-64.2-22.1c2.5-7.5 3.9-15.2 3.9-23.5s-1.4-16.1-3.9-23.5l64.5-22.1c-6.1-17.4-15.5-33.2-27.4-46.8l-51.2 44.8c-10.2-11.9-24.4-20.5-40.7-23.8l13.3-66.4c-8.6-1.9-17.7-2.8-27.1-2.8-9.4 0-18.5.8-27.1 2.8l13.3 66.4c-16.3 3.3-30.4 11.9-40.7 23.8l-51.2-44.8c-11.9 13.6-21.3 29.3-27.4 46.8l64.5 22.1c-2.5 7.5-3.9 15.2-3.9 23.5s1.4 16.1 3.9 23.5l-64.2 22.1c5.8 17.4 15.2 33.2 27.1 46.8l51.2-44.8c10.2 11.9 24.4 20.2 40.7 23.5l-13.3 66.7c8.6 1.7 17.7 2.8 27.1 2.8 9.4 0 18.5-1.1 27.1-2.8l-13.3-66.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEmpire = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEnvira.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEnvira.d.ts new file mode 100644 index 0000000000..4d3de38c26 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEnvira.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEnvira: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEnvira.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEnvira.js new file mode 100644 index 0000000000..dd488f1e51 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEnvira.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'envira'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f299'; +var svgPathData = 'M0 32c477.6 0 366.6 317.3 367.1 366.3L448 480h-26l-70.4-71.2c-39 4.2-124.4 34.5-214.4-37C47 300.3 52 214.7 0 32zm79.7 46c-49.7-23.5-5.2 9.2-5.2 9.2 45.2 31.2 66 73.7 90.2 119.9 31.5 60.2 79 139.7 144.2 167.7 65 28 34.2 12.5 6-8.5-28.2-21.2-68.2-87-91-130.2-31.7-60-61-118.6-144.2-158.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEnvira = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faErlang.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faErlang.d.ts new file mode 100644 index 0000000000..dc439c5e7b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faErlang.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faErlang: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faErlang.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faErlang.js new file mode 100644 index 0000000000..cd2bf95ca3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faErlang.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'erlang'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f39d'; +var svgPathData = 'M21.7 246.4c-.1 86.8 29 159.5 78.7 212.1H0v-405h87.2c-41.5 50.2-65.6 116.2-65.5 192.9zM640 53.6h-83.6c31.4 42.7 48.7 97.5 46.2 162.7.5 6 .5 11.7 0 24.1H230.2c-.2 109.7 38.9 194.9 138.6 195.3 68.5-.3 118-51 151.9-106.1l96.4 48.2c-17.4 30.9-36.5 57.8-57.9 80.8H640v-405zm-80.8 405s0-.1 0 0h-.2.2zm-3.1-405h.3l-.1-.1-.2.1zm-230.7 9.6c-45.9.1-85.1 33.5-89.2 83.2h169.9c-1.1-49.7-34.5-83.1-80.7-83.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faErlang = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEthereum.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEthereum.d.ts new file mode 100644 index 0000000000..17347b14cf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEthereum.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEthereum: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEthereum.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEthereum.js new file mode 100644 index 0000000000..cf874a95d6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEthereum.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'ethereum'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f42e'; +var svgPathData = 'M311.9 260.8L160 353.6 8 260.8 160 0l151.9 260.8zM160 383.4L8 290.6 160 512l152-221.4-152 92.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEthereum = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEtsy.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEtsy.d.ts new file mode 100644 index 0000000000..f63eb9c2d8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEtsy.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEtsy: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEtsy.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEtsy.js new file mode 100644 index 0000000000..e960e049ce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faEtsy.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'etsy'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f2d7'; +var svgPathData = 'M384 348c-1.75 10.75-13.75 110-15.5 132-117.879-4.299-219.895-4.743-368.5 0v-25.5c45.457-8.948 60.627-8.019 61-35.25 1.793-72.322 3.524-244.143 0-322-1.029-28.46-12.13-26.765-61-36v-25.5c73.886 2.358 255.933 8.551 362.999-3.75-3.5 38.25-7.75 126.5-7.75 126.5H332C320.947 115.665 313.241 68 277.25 68h-137c-10.25 0-10.75 3.5-10.75 9.75V241.5c58 .5 88.5-2.5 88.5-2.5 29.77-.951 27.56-8.502 40.75-65.251h25.75c-4.407 101.351-3.91 61.829-1.75 160.25H257c-9.155-40.086-9.065-61.045-39.501-61.5 0 0-21.5-2-88-2v139c0 26 14.25 38.25 44.25 38.25H263c63.636 0 66.564-24.996 98.751-99.75H384z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEtsy = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faExpeditedssl.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faExpeditedssl.d.ts new file mode 100644 index 0000000000..40cc8a410a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faExpeditedssl.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faExpeditedssl: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faExpeditedssl.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faExpeditedssl.js new file mode 100644 index 0000000000..eaf726897b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faExpeditedssl.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'expeditedssl'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f23e'; +var svgPathData = 'M248 43.4C130.6 43.4 35.4 138.6 35.4 256S130.6 468.6 248 468.6 460.6 373.4 460.6 256 365.4 43.4 248 43.4zm-97.4 132.9c0-53.7 43.7-97.4 97.4-97.4s97.4 43.7 97.4 97.4v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6c0-82.1-124-82.1-124 0v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6zM389.7 380c0 9.7-8 17.7-17.7 17.7H124c-9.7 0-17.7-8-17.7-17.7V238.3c0-9.7 8-17.7 17.7-17.7h248c9.7 0 17.7 8 17.7 17.7V380zm-248-137.3v132.9c0 2.5-1.9 4.4-4.4 4.4h-8.9c-2.5 0-4.4-1.9-4.4-4.4V242.7c0-2.5 1.9-4.4 4.4-4.4h8.9c2.5 0 4.4 1.9 4.4 4.4zm141.7 48.7c0 13-7.2 24.4-17.7 30.4v31.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-31.6c-10.5-6.1-17.7-17.4-17.7-30.4 0-19.7 15.8-35.4 35.4-35.4s35.5 15.8 35.5 35.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 478.3C121 486.3 17.7 383 17.7 256S121 25.7 248 25.7 478.3 129 478.3 256 375 486.3 248 486.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faExpeditedssl = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebook.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebook.d.ts new file mode 100644 index 0000000000..616b34dfe8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebook.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFacebook: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebook.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebook.js new file mode 100644 index 0000000000..caa217c3dd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebook.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'facebook'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f09a'; +var svgPathData = 'M448 56.7v398.5c0 13.7-11.1 24.7-24.7 24.7H309.1V306.5h58.2l8.7-67.6h-67v-43.2c0-19.6 5.4-32.9 33.5-32.9h35.8v-60.5c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9h-58.4v67.6h58.4V480H24.7C11.1 480 0 468.9 0 455.3V56.7C0 43.1 11.1 32 24.7 32h398.5c13.7 0 24.8 11.1 24.8 24.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFacebook = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebookF.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebookF.d.ts new file mode 100644 index 0000000000..8b1a3bc4a3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebookF.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFacebookF: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebookF.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebookF.js new file mode 100644 index 0000000000..e46cbc6c6a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebookF.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'facebook-f'; +var width = 264; +var height = 512; +var ligatures = []; +var unicode = 'f39e'; +var svgPathData = 'M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFacebookF = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebookMessenger.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebookMessenger.d.ts new file mode 100644 index 0000000000..74ef291e2f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebookMessenger.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFacebookMessenger: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebookMessenger.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebookMessenger.js new file mode 100644 index 0000000000..f43278dc70 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebookMessenger.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'facebook-messenger'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f39f'; +var svgPathData = 'M224 32C15.9 32-77.5 278 84.6 400.6V480l75.7-42c142.2 39.8 285.4-59.9 285.4-198.7C445.8 124.8 346.5 32 224 32zm23.4 278.1L190 250.5 79.6 311.6l121.1-128.5 57.4 59.6 110.4-61.1-121.1 128.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFacebookMessenger = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebookSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebookSquare.d.ts new file mode 100644 index 0000000000..2b21d4b67a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebookSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFacebookSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebookSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebookSquare.js new file mode 100644 index 0000000000..883d21cbb0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFacebookSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'facebook-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f082'; +var svgPathData = 'M448 80v352c0 26.5-21.5 48-48 48h-85.3V302.8h60.6l8.7-67.6h-69.3V192c0-19.6 5.4-32.9 33.5-32.9H384V98.7c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9H184v67.6h60.9V480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFacebookSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirefox.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirefox.d.ts new file mode 100644 index 0000000000..7d4fcecbde --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirefox.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFirefox: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirefox.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirefox.js new file mode 100644 index 0000000000..550dab2ae3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirefox.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'firefox'; +var width = 480; +var height = 512; +var ligatures = []; +var unicode = 'f269'; +var svgPathData = 'M478.1 235.3c-.7-4.5-1.4-7.1-1.4-7.1s-1.8 2-4.7 5.9c-.9-10.7-2.8-21.2-5.8-31.6-3.7-12.9-8.5-25.4-14.5-37.4-3.8-8-8.2-15.6-13.3-22.8-1.8-2.7-3.7-5.4-5.6-7.9-8.8-14.4-19-23.3-30.7-40-7.6-12.8-12.9-26.9-15.4-41.6-3.2 8.9-5.7 18-7.4 27.3-12.1-12.2-22.5-20.8-28.9-26.7C319.4 24.2 323 9.1 323 9.1S264.7 74.2 289.9 142c8.7 23 23.8 43.1 43.4 57.9 24.4 20.2 50.8 36 64.7 76.6-11.2-21.3-28.1-39.2-48.8-51.5 6.2 14.7 9.4 30.6 9.3 46.5 0 61-49.6 110.5-110.6 110.4-8.3 0-16.5-.9-24.5-2.8-9.5-1.8-18.7-4.9-27.4-9.3-12.9-7.8-24-18.1-32.8-30.3l-.2-.3 2 .7c4.6 1.6 9.2 2.8 14 3.7 18.7 4 38.3 1.7 55.6-6.6 17.5-9.7 28-16.9 36.6-14h.2c8.4 2.7 15-5.5 9-14-10.4-13.4-27.4-20-44.2-17-17.5 2.5-33.5 15-56.4 2.9-1.5-.8-2.9-1.6-4.3-2.5-1.6-.9 4.9 1.3 3.4.3-5-2.5-9.8-5.4-14.4-8.6-.3-.3 3.5 1.1 3.1.8-5.9-4-11-9.2-15-15.2-4.1-7.4-4.5-16.4-1-24.1 2.1-3.8 5.4-6.9 9.3-8.7 3 1.5 4.8 2.6 4.8 2.6s-1.3-2.5-2.1-3.8c.3-.1.5 0 .8-.2 2.6 1.1 8.3 4 11.4 5.8 2.1 1.1 3.8 2.7 5.2 4.7 0 0 1-.5.3-2.7-1.1-2.7-2.9-5-5.4-6.6h.2c2.3 1.2 4.5 2.6 6.6 4.1 1.9-4.4 2.8-9.2 2.6-14 .2-2.6-.2-5.3-1.1-7.8-.8-1.6.5-2.2 1.9-.5-.2-1.3-.7-2.5-1.2-3.7v-.1s.8-1.1 1.2-1.5c1-1 2.1-1.9 3.4-2.7 7.2-4.5 14.8-8.4 22.7-11.6 6.4-2.8 11.7-4.9 12.8-5.6 1.6-1 3.1-2.2 4.5-3.5 5.3-4.5 9-10.8 10.2-17.7.1-.9.2-1.8.3-2.8v-1.5c-.9-3.5-6.9-6.1-38.4-9.1-11.1-1.8-20-10.1-22.5-21.1v.1c-.4 1.1-.9 2.3-1.3 3.5.4-1.2.8-2.3 1.3-3.5v-.2c6-15.7 16.8-29.1 30.8-38.3.8-.7-3.2.2-2.4-.5 2.7-1.3 5.4-2.5 8.2-3.5 1.4-.6-6-3.4-12.6-2.7-4 .2-8 1.2-11.7 2.8 1.6-1.3 6.2-3.1 5.1-3.1-8.4 1.6-16.5 4.7-23.9 9 0-.8.1-1.5.5-2.2-5.9 2.5-11 6.5-15 11.5.1-.9.2-1.8.2-2.7-2.7 2-5.2 4.3-7.3 6.9l-.1.1c-17.4-6.7-36.3-8.3-54.6-4.7l-.2-.1h.2c-3.8-3.1-7.1-6.7-9.7-10.9l-.2.1-.4-.2c-1.2-1.8-2.4-3.8-3.7-6-.9-1.6-1.8-3.4-2.7-5.2 0-.1-.1-.2-.2-.2-.4 0-.6 1.7-.9 1.3v-.1c-3.2-8.3-4.7-17.2-4.4-26.2l-.2.1c-5.1 3.5-9 8.6-11.1 14.5-.9 2.1-1.6 3.3-2.2 4.5v-.5c.1-1.1.6-3.3.5-3.1-.1.2-.2.3-.3.4-1.5 1.7-2.9 3.7-3.9 5.8-.9 1.9-1.7 3.9-2.3 5.9-.1.3 0-.3 0-1s.1-2 0-1.7l-.3.7c-6.7 14.9-10.9 30.8-12.4 47.1-.4 2.8-.6 5.6-.5 8.3v.2c-4.8 5.2-9 11-12.7 17.1-12.1 20.4-21.1 42.5-26.8 65.6 4-8.8 8.8-17.2 14.3-25.1C5.5 228.5 0 257.4 0 286.6c1.8-8.6 4.2-17 7-25.3-1.7 34.5 4.9 68.9 19.4 100.3 19.4 43.5 51.6 80 92.3 104.7 16.6 11.2 34.7 19.9 53.8 25.8 2.5.9 5.1 1.8 7.7 2.7-.8-.3-1.6-.7-2.4-1 22.6 6.8 46.2 10.3 69.8 10.3 83.7 0 111.3-31.9 113.8-35 4.1-3.7 7.5-8.2 9.9-13.3 1.6-.7 3.2-1.4 4.9-2.1l1-.5 1.9-.9c12.6-5.9 24.5-13.4 35.3-22.1 16.3-11.7 27.9-28.7 32.9-48.1 3-7.1 3.1-15 .4-22.2.9-1.4 1.7-2.8 2.7-4.3 18-28.9 28.2-61.9 29.6-95.9v-2.8c0-7.3-.6-14.5-1.9-21.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFirefox = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirstOrder.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirstOrder.d.ts new file mode 100644 index 0000000000..4ce2dedc59 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirstOrder.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFirstOrder: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirstOrder.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirstOrder.js new file mode 100644 index 0000000000..f367356048 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirstOrder.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'first-order'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f2b0'; +var svgPathData = 'M12.9 229.2c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4h-.2zM224 96.6c-7.1 0-14.6.6-21.4 1.7l3.7 67.4-22-64c-14.3 3.7-27.7 9.4-40 16.6l29.4 61.4-45.1-50.9c-11.4 8.9-21.7 19.1-30.6 30.9l50.6 45.4-61.1-29.7c-7.1 12.3-12.9 25.7-16.6 40l64.3 22.6-68-4c-.9 7.1-1.4 14.6-1.4 22s.6 14.6 1.4 21.7l67.7-4-64 22.6c3.7 14.3 9.4 27.7 16.6 40.3l61.1-29.7L97.7 352c8.9 11.7 19.1 22.3 30.9 30.9l44.9-50.9-29.5 61.4c12.3 7.4 25.7 13.1 40 16.9l22.3-64.6-4 68c7.1 1.1 14.6 1.7 21.7 1.7 7.4 0 14.6-.6 21.7-1.7l-4-68.6 22.6 65.1c14.3-4 27.7-9.4 40-16.9L274.9 332l44.9 50.9c11.7-8.9 22-19.1 30.6-30.9l-50.6-45.1 61.1 29.4c7.1-12.3 12.9-25.7 16.6-40.3l-64-22.3 67.4 4c1.1-7.1 1.4-14.3 1.4-21.7s-.3-14.9-1.4-22l-67.7 4 64-22.3c-3.7-14.3-9.1-28-16.6-40.3l-60.9 29.7 50.6-45.4c-8.9-11.7-19.1-22-30.6-30.9l-45.1 50.9 29.4-61.1c-12.3-7.4-25.7-13.1-40-16.9L241.7 166l4-67.7c-7.1-1.2-14.3-1.7-21.7-1.7zM443.4 128v256L224 512 4.6 384V128L224 0l219.4 128zm-17.1 10.3L224 20.9 21.7 138.3v235.1L224 491.1l202.3-117.7V138.3zM224 37.1l187.7 109.4v218.9L224 474.9 36.3 365.4V146.6L224 37.1zm0 50.9c-92.3 0-166.9 75.1-166.9 168 0 92.6 74.6 167.7 166.9 167.7 92 0 166.9-75.1 166.9-167.7 0-92.9-74.9-168-166.9-168z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFirstOrder = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirstOrderAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirstOrderAlt.d.ts new file mode 100644 index 0000000000..20763f6b02 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirstOrderAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFirstOrderAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirstOrderAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirstOrderAlt.js new file mode 100644 index 0000000000..4d3862db5a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirstOrderAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'first-order-alt'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f50a'; +var svgPathData = 'M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 488.21C115.34 496.21 7.79 388.66 7.79 256S115.34 15.79 248 15.79 488.21 123.34 488.21 256 380.66 496.21 248 496.21zm0-459.92C126.66 36.29 28.29 134.66 28.29 256S126.66 475.71 248 475.71 467.71 377.34 467.71 256 369.34 36.29 248 36.29zm0 431.22c-116.81 0-211.51-94.69-211.51-211.51S131.19 44.49 248 44.49 459.51 139.19 459.51 256 364.81 467.51 248 467.51zm186.23-162.98a191.613 191.613 0 0 1-20.13 48.69l-74.13-35.88 61.48 54.82a193.515 193.515 0 0 1-37.2 37.29l-54.8-61.57 35.88 74.27a190.944 190.944 0 0 1-48.63 20.23l-27.29-78.47 4.79 82.93c-8.61 1.18-17.4 1.8-26.33 1.8s-17.72-.62-26.33-1.8l4.76-82.46-27.15 78.03a191.365 191.365 0 0 1-48.65-20.2l35.93-74.34-54.87 61.64a193.85 193.85 0 0 1-37.22-37.28l61.59-54.9-74.26 35.93a191.638 191.638 0 0 1-20.14-48.69l77.84-27.11-82.23 4.76c-1.16-8.57-1.78-17.32-1.78-26.21 0-9 .63-17.84 1.82-26.51l82.38 4.77-77.94-27.16a191.726 191.726 0 0 1 20.23-48.67l74.22 35.92-61.52-54.86a193.85 193.85 0 0 1 37.28-37.22l54.76 61.53-35.83-74.17a191.49 191.49 0 0 1 48.65-20.13l26.87 77.25-4.71-81.61c8.61-1.18 17.39-1.8 26.32-1.8s17.71.62 26.32 1.8l-4.74 82.16 27.05-77.76c17.27 4.5 33.6 11.35 48.63 20.17l-35.82 74.12 54.72-61.47a193.13 193.13 0 0 1 37.24 37.23l-61.45 54.77 74.12-35.86a191.515 191.515 0 0 1 20.2 48.65l-77.81 27.1 82.24-4.75c1.19 8.66 1.82 17.5 1.82 26.49 0 8.88-.61 17.63-1.78 26.19l-82.12-4.75 77.72 27.09z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFirstOrderAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirstdraft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirstdraft.d.ts new file mode 100644 index 0000000000..988fc1d308 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirstdraft.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFirstdraft: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirstdraft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirstdraft.js new file mode 100644 index 0000000000..32614cc3f7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFirstdraft.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'firstdraft'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f3a1'; +var svgPathData = 'M384 192h-64v128H192v128H0v-25.6h166.4v-128h128v-128H384V192zm-25.6 38.4v128h-128v128H64V512h192V384h128V230.4h-25.6zm25.6 192h-89.6V512H320v-64h64v-25.6zM0 0v384h128V256h128V128h128V0H0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFirstdraft = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFlickr.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFlickr.d.ts new file mode 100644 index 0000000000..f36efa4d34 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFlickr.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFlickr: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFlickr.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFlickr.js new file mode 100644 index 0000000000..30d0c6f502 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFlickr.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'flickr'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f16e'; +var svgPathData = 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5zm159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFlickr = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFlipboard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFlipboard.d.ts new file mode 100644 index 0000000000..0ad4415986 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFlipboard.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFlipboard: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFlipboard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFlipboard.js new file mode 100644 index 0000000000..e434475fbb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFlipboard.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'flipboard'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f44d'; +var svgPathData = 'M0 32v448h448V32H0zm358.4 179.2h-89.6v89.6h-89.6v89.6H89.6V121.6h268.8v89.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFlipboard = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFly.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFly.d.ts new file mode 100644 index 0000000000..4b131f7970 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFly.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFly: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFly.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFly.js new file mode 100644 index 0000000000..4f8c6a5749 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFly.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'fly'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f417'; +var svgPathData = 'M197.8 427.8c12.9 11.7 33.7 33.3 33.2 50.7 0 .8-.1 1.6-.1 2.5-1.8 19.8-18.8 31.1-39.1 31-25-.1-39.9-16.8-38.7-35.8 1-16.2 20.5-36.7 32.4-47.6 2.3-2.1 2.7-2.7 5.6-3.6 3.4 0 3.9.3 6.7 2.8zM331.9 67.3c-16.3-25.7-38.6-40.6-63.3-52.1C243.1 4.5 214-.2 192 0c-44.1 0-71.2 13.2-81.1 17.3C57.3 45.2 26.5 87.2 28 158.6c7.1 82.2 97 176 155.8 233.8 1.7 1.6 4.5 4.5 6.2 5.1l3.3.1c2.1-.7 1.8-.5 3.5-2.1 52.3-49.2 140.7-145.8 155.9-215.7 7-39.2 3.1-72.5-20.8-112.5zM186.8 351.9c-28-51.1-65.2-130.7-69.3-189-3.4-47.5 11.4-131.2 69.3-136.7v325.7zM328.7 180c-16.4 56.8-77.3 128-118.9 170.3C237.6 298.4 275 217 277 158.4c1.6-45.9-9.8-105.8-48-131.4 88.8 18.3 115.5 98.1 99.7 153z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFly = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesome.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesome.d.ts new file mode 100644 index 0000000000..ffe9b76450 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesome.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFontAwesome: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesome.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesome.js new file mode 100644 index 0000000000..a464452e56 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesome.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'font-awesome'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f2b4'; +var svgPathData = 'M397.8 32H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-45.4 284.3c0 4.2-3.6 6-7.8 7.8-16.7 7.2-34.6 13.7-53.8 13.7-26.9 0-39.4-16.7-71.7-16.7-23.3 0-47.8 8.4-67.5 17.3-1.2.6-2.4.6-3.6 1.2V385c0 1.8 0 3.6-.6 4.8v1.2c-2.4 8.4-10.2 14.3-19.1 14.3-11.3 0-20.3-9-20.3-20.3V166.4c-7.8-6-13.1-15.5-13.1-26.3 0-18.5 14.9-33.5 33.5-33.5 18.5 0 33.5 14.9 33.5 33.5 0 10.8-4.8 20.3-13.1 26.3v18.5c1.8-.6 3.6-1.2 5.4-2.4 18.5-7.8 40.6-14.3 61.5-14.3 22.7 0 40.6 6 60.9 13.7 4.2 1.8 8.4 2.4 13.1 2.4 22.7 0 47.8-16.1 53.8-16.1 4.8 0 9 3.6 9 7.8v140.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFontAwesome = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesomeAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesomeAlt.d.ts new file mode 100644 index 0000000000..4f996485fd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesomeAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFontAwesomeAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesomeAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesomeAlt.js new file mode 100644 index 0000000000..54dd9548e6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesomeAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'font-awesome-alt'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f35c'; +var svgPathData = 'M397.8 67.8c7.8 0 14.3 6.6 14.3 14.3v347.6c0 7.8-6.6 14.3-14.3 14.3H50.2c-7.8 0-14.3-6.6-14.3-14.3V82.2c0-7.8 6.6-14.3 14.3-14.3h347.6m0-35.9H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-58.5 139.2c-6 0-29.9 15.5-52.6 15.5-4.2 0-8.4-.6-12.5-2.4-19.7-7.8-37-13.7-59.1-13.7-20.3 0-41.8 6.6-59.7 13.7-1.8.6-3.6 1.2-4.8 1.8v-17.9c7.8-6 12.5-14.9 12.5-25.7 0-17.9-14.3-32.3-32.3-32.3s-32.3 14.3-32.3 32.3c0 10.2 4.8 19.7 12.5 25.7v212.1c0 10.8 9 19.7 19.7 19.7 9 0 16.1-6 18.5-13.7V385c.6-1.8.6-3 .6-4.8V336c1.2 0 2.4-.6 3-1.2 19.7-8.4 43-16.7 65.7-16.7 31.1 0 43 16.1 69.3 16.1 18.5 0 36.4-6.6 52-13.7 4.2-1.8 7.2-3.6 7.2-7.8V178.3c1.8-4.1-2.3-7.1-7.7-7.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFontAwesomeAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesomeFlag.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesomeFlag.d.ts new file mode 100644 index 0000000000..a6d908c92a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesomeFlag.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFontAwesomeFlag: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesomeFlag.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesomeFlag.js new file mode 100644 index 0000000000..cab8c17bde --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesomeFlag.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'font-awesome-flag'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f425'; +var svgPathData = 'M444.373 359.424c0 7.168-6.144 10.24-13.312 13.312-28.672 12.288-59.392 23.552-92.16 23.552-46.08 0-67.584-28.672-122.88-28.672-39.936 0-81.92 14.336-115.712 29.696-2.048 1.024-4.096 1.024-6.144 2.048v77.824c0 21.405-16.122 34.816-33.792 34.816-19.456 0-34.816-15.36-34.816-34.816V102.4C12.245 92.16 3.029 75.776 3.029 57.344 3.029 25.6 28.629 0 60.373 0s57.344 25.6 57.344 57.344c0 18.432-8.192 34.816-22.528 45.056v31.744c4.124-1.374 58.768-28.672 114.688-28.672 65.27 0 97.676 27.648 126.976 27.648 38.912 0 81.92-27.648 92.16-27.648 8.192 0 15.36 6.144 15.36 13.312v240.64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFontAwesomeFlag = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesomeLogoFull.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesomeLogoFull.d.ts new file mode 100644 index 0000000000..fd1e83f87d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesomeLogoFull.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFontAwesomeLogoFull: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesomeLogoFull.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesomeLogoFull.js new file mode 100644 index 0000000000..f95b7a73fa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFontAwesomeLogoFull.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'font-awesome-logo-full'; +var width = 3992; +var height = 512; +var ligatures = ['Font Awesome']; +var unicode = 'f4e6'; +var svgPathData = 'M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFontAwesomeLogoFull = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFonticons.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFonticons.d.ts new file mode 100644 index 0000000000..09477f48a8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFonticons.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFonticons: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFonticons.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFonticons.js new file mode 100644 index 0000000000..c7bd1d3cbb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFonticons.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'fonticons'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f280'; +var svgPathData = 'M0 32v448h448V32H0zm167.4 196h67.4l-11.1 37.3H168v112.9c0 5.8-2 6.7 3.2 7.3l43.5 4.1v25.1H84V389l21.3-2c5.2-.6 6.7-2.3 6.7-7.9V267.7c0-2.3-2.9-2.3-5.8-2.3H84V228h28v-21c0-49.6 26.5-70 77.3-70 34.1 0 64.7 8.2 64.7 52.8l-50.7 6.1c.3-18.7-4.4-23-16.3-23-18.4 0-19 9.9-19 27.4v23.3c0 2.4-3.5 4.4-.6 4.4zM364 414.7H261.3v-25.1l20.4-2.6c5.2-.6 7.6-1.7 7.6-7.3V271.8c0-4.1-2.9-6.7-6.7-7.9l-24.2-6.4 6.7-29.5h80.2v151.7c0 5.8-2.6 6.4 2.9 7.3l15.7 2.6v25.1zm-21.9-255.5l9 33.2-7.3 7.3-31.2-16.6-31.2 16.6-7.3-7.3 9-33.2-21.8-24.2 3.5-9.6h27.7l15.5-28h9.3l15.5 28h27.7l3.5 9.6-21.9 24.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFonticons = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFonticonsFi.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFonticonsFi.d.ts new file mode 100644 index 0000000000..54e4a7820b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFonticonsFi.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFonticonsFi: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFonticonsFi.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFonticonsFi.js new file mode 100644 index 0000000000..a5dc90c124 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFonticonsFi.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'fonticons-fi'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f3a2'; +var svgPathData = 'M114.4 224h92.4l-15.2 51.2h-76.4V433c0 8-2.8 9.2 4.4 10l59.6 5.6V483H0v-35.2l29.2-2.8c7.2-.8 9.2-3.2 9.2-10.8V278.4c0-3.2-4-3.2-8-3.2H0V224h38.4v-28.8c0-68 36.4-96 106-96 46.8 0 88.8 11.2 88.8 72.4l-69.6 8.4c.4-25.6-6-31.6-22.4-31.6-25.2 0-26 13.6-26 37.6v32c0 3.2-4.8 6-.8 6zM384 483H243.2v-34.4l28-3.6c7.2-.8 10.4-2.4 10.4-10V287c0-5.6-4-9.2-9.2-10.8l-33.2-8.8 9.2-40.4h110v208c0 8-3.6 8.8 4 10l21.6 3.6V483zm-30-347.2l12.4 45.6-10 10-42.8-22.8-42.8 22.8-10-10 12.4-45.6-30-36.4 4.8-10h38L307.2 51H320l21.2 38.4h38l4.8 13.2-30 33.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFonticonsFi = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFortAwesome.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFortAwesome.d.ts new file mode 100644 index 0000000000..7c6ef9089f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFortAwesome.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFortAwesome: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFortAwesome.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFortAwesome.js new file mode 100644 index 0000000000..6ed6d66c49 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFortAwesome.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'fort-awesome'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f286'; +var svgPathData = 'M489.2 287.9h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6V146.2c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-6-8-4.6-11.7-4.6v-38c8.3-2 17.1-3.4 25.7-3.4 10.9 0 20.9 4.3 31.4 4.3 4.6 0 27.7-1.1 27.7-8v-60c0-2.6-2-4.6-4.6-4.6-5.1 0-15.1 4.3-24 4.3-9.7 0-20.9-4.3-32.6-4.3-8 0-16 1.1-23.7 2.9v-4.9c5.4-2.6 9.1-8.3 9.1-14.3 0-20.7-31.4-20.8-31.4 0 0 6 3.7 11.7 9.1 14.3v111.7c-3.7 0-11.7-1.4-11.7 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32H128v-32c0-2.6-2-4.6-4.6-4.6H96c-2.6 0-4.6 2-4.6 4.6v178.3H54.8v-32c0-2.6-2-4.6-4.6-4.6H22.8c-2.6 0-4.6 2-4.6 4.6V512h182.9v-96c0-72.6 109.7-72.6 109.7 0v96h182.9V292.5c.1-2.6-1.9-4.6-4.5-4.6zm-288.1-4.5c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64zm146.4 0c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFortAwesome = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFortAwesomeAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFortAwesomeAlt.d.ts new file mode 100644 index 0000000000..b0c8d99dca --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFortAwesomeAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFortAwesomeAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFortAwesomeAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFortAwesomeAlt.js new file mode 100644 index 0000000000..2f05c4c154 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFortAwesomeAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'fort-awesome-alt'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f3a3'; +var svgPathData = 'M211.7 241.1v51.7c0 2.1-1.6 3.7-3.7 3.7h-22.2c-2.1 0-3.7-1.6-3.7-3.7v-51.7c0-2.1 1.6-3.7 3.7-3.7H208c2.1 0 3.7 1.6 3.7 3.7zm114.5-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7h22.2c2.1 0 3.7-1.6 3.7-3.7v-51.7c-.1-2.1-1.7-3.7-3.7-3.7zm-29.1 263.2c-.9.1-1.7.3-2.6.4-1 .2-2.1.3-3.1.5-.9.1-1.8.3-2.8.4-1 .1-2 .3-3 .4-1 .1-2 .2-2.9.3-1 .1-1.9.2-2.9.3-1 .1-2.1.2-3.1.3-.9.1-1.8.2-2.7.2-1.1.1-2.3.1-3.4.2-.8 0-1.7.1-2.5.1-1.3.1-2.6.1-3.9.1-.7 0-1.4.1-2.1.1-2 0-4 .1-6 .1s-4 0-6-.1c-.7 0-1.4 0-2.1-.1-1.3 0-2.6-.1-3.9-.1-.8 0-1.7-.1-2.5-.1-1.1-.1-2.3-.1-3.4-.2-.9-.1-1.8-.1-2.7-.2-1-.1-2.1-.2-3.1-.3-1-.1-1.9-.2-2.9-.3-1-.1-2-.2-2.9-.3-1-.1-2-.2-3-.4-.9-.1-1.8-.3-2.8-.4-1-.1-2.1-.3-3.1-.5-.9-.1-1.7-.3-2.6-.4-65.6-10.9-122.5-47.7-160-99.4-.2-.2-.3-.5-.5-.7-.8-1.1-1.6-2.2-2.3-3.3-.3-.4-.6-.8-.8-1.2-.7-1.1-1.4-2.1-2.1-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.4-2.1-2-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.3-2.2-2-3.3-.2-.4-.5-.8-.7-1.2-2.4-4-4.6-8.1-6.8-12.2-.1-.2-.2-.3-.3-.5-.6-1.1-1.1-2.2-1.7-3.3-.3-.6-.6-1.1-.8-1.7-.5-1-1-2.1-1.5-3.1-.3-.7-.6-1.3-.9-2-.5-1-.9-2-1.4-3l-.9-2.1c-.4-1-.9-2-1.3-3-.3-.7-.6-1.5-.9-2.2l-1.2-3c-.3-.8-.6-1.5-.9-2.3-.4-1-.8-2-1.1-3-.3-.9-.6-1.8-1-2.8-.6-1.6-1.1-3.3-1.7-4.9-.3-.9-.6-1.8-.9-2.8-.3-.9-.5-1.8-.8-2.7-.3-.9-.6-1.9-.8-2.8-.3-.9-.5-1.8-.8-2.7-.3-1-.5-1.9-.8-2.9-.2-.9-.5-1.8-.7-2.7-.3-1-.5-2-.7-3-.2-.9-.4-1.7-.6-2.6-.2-1.1-.5-2.2-.7-3.2-.2-.8-.3-1.6-.5-2.4-.3-1.3-.5-2.7-.8-4-.1-.6-.2-1.1-.3-1.7l-.9-5.7c-.1-.6-.2-1.3-.3-1.9-.2-1.3-.4-2.6-.5-3.9-.1-.8-.2-1.5-.3-2.3-.1-1.2-.3-2.4-.4-3.6-.1-.8-.2-1.6-.2-2.4-.1-1.2-.2-2.4-.3-3.5-.1-.8-.1-1.6-.2-2.4-.1-1.2-.2-2.4-.2-3.7 0-.8-.1-1.5-.1-2.3-.1-1.3-.1-2.7-.2-4 0-.7 0-1.3-.1-2 0-2-.1-4-.1-6 0-53.5 16.9-103 45.8-143.6 2.3-3.2 4.7-6.4 7.1-9.5 4.9-6.2 10.1-12.3 15.6-18 2.7-2.9 5.5-5.7 8.4-8.4 2.9-2.7 5.8-5.4 8.8-8 4.5-3.9 9.1-7.6 13.9-11.2 1.6-1.2 3.2-2.4 4.8-3.5C140 34.2 171.7 20.1 206 13c16.1-3.3 32.9-5 50-5s33.8 1.7 50 5c34.3 7 66 21.1 93.6 40.7 1.6 1.2 3.2 2.3 4.8 3.5 4.8 3.6 9.4 7.3 13.9 11.2 12 10.4 23 21.9 32.8 34.4 2.5 3.1 4.8 6.3 7.1 9.5C487.1 153 504 202.5 504 256c0 2 0 4-.1 6 0 .7 0 1.3-.1 2 0 1.3-.1 2.7-.2 4 0 .8-.1 1.5-.1 2.3-.1 1.2-.1 2.4-.2.7-.1.8-.1 1.6-.2 2.4-.1 1.2-.2 2.4-.3 3.5-.1.8-.2 1.6-.2 2.4-.1 1.2-.3 2.4-.4 3.6-.1.8-.2 1.5-.3 2.3-.2 1.3-.4 2.6-.5 3.9-.1.6-.2 1.3-.3 1.9l-.9 5.7c-.1.6-.2 1.1-.3 1.7-.2 1.3-.5 2.7-.8 4-.2.8-.3 1.6-.5 2.4-.2 1.1-.5 2.2-.7 3.2-.2.9-.4 1.7-.6 2.6-.2 1-.5 2-.7 3-.2.9-.5 1.8-.7 2.7-.3 1-.5 1.9-.8 2.9-.2.9-.5 1.8-.8 2.7-.3.9-.6 1.9-.8 2.8-.3.9-.5 1.8-.8 2.7-.3.9-.6 1.8-.9 2.8-.5 1.6-1.1 3.3-1.7 4.9-.3.9-.6 1.8-1 2.8-.4 1-.7 2-1.1 3-.3.8-.6 1.5-.9 2.3l-1.2 3c-.3.7-.6 1.5-.9 2.2-.4 1-.8 2-1.3 3l-.9 2.1c-.4 1-.9 2-1.4 3-.3.7-.6 1.3-.9 2-.5 1-1 2.1-1.5 3.1-.3.6-.6 1.1-.8 1.7-.6 1.1-1.1 2.2-1.7 3.3-.1.2-.2.3-.3.5-2.2 4.1-4.4 8.2-6.8 12.2-.2.4-.5.8-.7 1.2-.7 1.1-1.3 2.2-2 3.3-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2 3.2-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2.1 3.2-.3.4-.6.8-.8 1.2-.8 1.1-1.5 2.2-2.3 3.3-.2.2-.3.5-.5.7-37.6 54.7-94.5 91.4-160.1 102.4zm117.3-86.2c13-13 24.2-27.4 33.6-42.9v-71.3c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7V326h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-4.8-6.5-3.7-9.5-3.7v-30.7c6.7-1.6 13.8-2.8 20.8-2.8 8.8 0 16.8 3.5 25.4 3.5 3.7 0 22.4-.9 22.4-6.5V93.4c0-2.1-1.6-3.7-3.7-3.7-4.2 0-12.2 3.5-19.4 3.5-7.9 0-16.9-3.5-26.3-3.5-6.5 0-12.9.9-19.2 2.3v-3.9c4.4-2.1 7.4-6.7 7.4-11.5 0-16.8-25.4-16.8-25.4 0 0 4.8 3 9.5 7.4 11.5v90.2c-3 0-9.5-1.1-9.5 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v144H93.5v-25.8c0-2.1-1.6-3.7-3.7-3.7H67.7c-2.1 0-3.7 1.6-3.7 3.7v71.3c9.4 15.5 20.6 29.9 33.6 42.9 20.6 20.6 44.5 36.7 71.2 48 13.9 5.9 28.2 10.3 42.9 13.2v-75.8c0-58.6 88.6-58.6 88.6 0v75.8c14.7-2.9 29-7.4 42.9-13.2 26.7-11.3 50.6-27.4 71.2-48'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFortAwesomeAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faForumbee.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faForumbee.d.ts new file mode 100644 index 0000000000..2f43b2d01c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faForumbee.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faForumbee: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faForumbee.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faForumbee.js new file mode 100644 index 0000000000..a152ba265a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faForumbee.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'forumbee'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f211'; +var svgPathData = 'M5.8 309.7C2 292.7 0 275.5 0 258.3 0 135 99.8 35 223.1 35c16.6 0 33.3 2 49.3 5.5C149 87.5 51.9 186 5.8 309.7zm392.9-189.2C385 103 369 87.8 350.9 75.2c-149.6 44.3-266.3 162.1-309.7 312 12.5 18.1 28 35.6 45.2 49 43.1-151.3 161.2-271.7 312.3-315.7zm15.8 252.7c15.2-25.1 25.4-53.7 29.5-82.8-79.4 42.9-145 110.6-187.6 190.3 30-4.4 58.9-15.3 84.6-31.3 35 13.1 70.9 24.3 107 33.6-9.3-36.5-20.4-74.5-33.5-109.8zm29.7-145.5c-2.6-19.5-7.9-38.7-15.8-56.8C290.5 216.7 182 327.5 137.1 466c18.1 7.6 37 12.5 56.6 15.2C240 367.1 330.5 274.4 444.2 227.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faForumbee = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFoursquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFoursquare.d.ts new file mode 100644 index 0000000000..a17887f82a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFoursquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFoursquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFoursquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFoursquare.js new file mode 100644 index 0000000000..a649e4bb99 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFoursquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'foursquare'; +var width = 368; +var height = 512; +var ligatures = []; +var unicode = 'f180'; +var svgPathData = 'M323.1 3H49.9C12.4 3 0 31.3 0 49.1v433.8c0 20.3 12.1 27.7 18.2 30.1 6.2 2.5 22.8 4.6 32.9-7.1C180 356.5 182.2 354 182.2 354c3.1-3.4 3.4-3.1 6.8-3.1h83.4c35.1 0 40.6-25.2 44.3-39.7l48.6-243C373.8 25.8 363.1 3 323.1 3zm-16.3 73.8l-11.4 59.7c-1.2 6.5-9.5 13.2-16.9 13.2H172.1c-12 0-20.6 8.3-20.6 20.3v13c0 12 8.6 20.6 20.6 20.6h90.4c8.3 0 16.6 9.2 14.8 18.2-1.8 8.9-10.5 53.8-11.4 58.8-.9 4.9-6.8 13.5-16.9 13.5h-73.5c-13.5 0-17.2 1.8-26.5 12.6 0 0-8.9 11.4-89.5 108.3-.9.9-1.8.6-1.8-.3V75.9c0-7.7 6.8-16.6 16.6-16.6h219c8.2 0 15.6 7.7 13.5 17.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFoursquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFreeCodeCamp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFreeCodeCamp.d.ts new file mode 100644 index 0000000000..7a08ab3090 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFreeCodeCamp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFreeCodeCamp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFreeCodeCamp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFreeCodeCamp.js new file mode 100644 index 0000000000..f28cade556 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFreeCodeCamp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'free-code-camp'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f2c5'; +var svgPathData = 'M69.3 144.5c-41 68.5-36.4 163 1 227C92.5 409.7 120 423.9 120 438c0 6.8-6 13-12.8 13C87.7 451 8 375.5 8 253.2c0-111.5 78-186 97.1-186 6 0 14.9 4.8 14.9 11.1 0 12.7-28.3 28.6-50.7 66.2zm195.8 213.8c4.5 1.8 12.3 5.2 12.3-1.2 0-2.7-2.2-2.9-4.3-3.6-8.5-3.4-14-7.7-19.1-15.2-8.2-12.1-10.1-24.2-10.1-38.6 0-32.1 44.2-37.9 44.2-70 0-12.3-7.7-15.9-7.7-19.3 0-2.2.7-2.2 2.9-2.2 8 0 19.1 13.3 22.5 19.8 2.2 4.6 2.4 6 2.4 11.1 0 7-.7 14.2-.7 21.3 0 27 31.9 19.8 31.9 6.8 0-6-3.6-11.6-3.6-17.4 0-.7 0-1.2.7-1.2 3.4 0 9.4 7.7 11.1 10.1 5.8 8.9 8.5 20.8 8.5 31.4 0 32.4-29.5 49-29.5 56 0 1 2.9 7.7 12.1 1.9 29.7-15.1 53.1-47.6 53.1-89.8 0-33.6-8.7-57.7-32.1-82.6-3.9-4.1-16.4-16.9-22.5-16.9-8.2 0 7.2 18.6 7.2 31.2 0 7.2-4.8 12.3-12.3 12.3-11.6 0-14.5-25.4-15.9-33.3-5.8-33.8-12.8-58.2-46.4-74.1-10.4-5-36.5-11.8-36.5-2.2 0 2.4 2.7 4.1 4.6 5.1 9.2 5.6 19.6 21.4 19.6 38.2 0 46.1-57.7 88.2-57.7 136.2-.2 40.3 28.1 72.6 65.3 86.2zM470.4 67c-6 0-14.4 6.5-14.4 12.6 0 8.7 12.1 19.6 17.6 25.4 81.6 85.1 78.6 214.3 17.6 291-7 8.9-35.3 35.3-35.3 43.5 0 5.1 8.2 11.4 13.2 11.4 25.4 0 98.8-80.8 98.8-185.7C568 145.9 491.8 67 470.4 67zm-42.3 323.1H167c-9.4 0-15.5 7.5-15.5 16.4 0 8.5 7 15.5 15.5 15.5h261.1c9.4 0 11.9-7.5 11.9-16.4 0-8.5-3.5-15.5-11.9-15.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFreeCodeCamp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFreebsd.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFreebsd.d.ts new file mode 100644 index 0000000000..d7e347f114 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFreebsd.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFreebsd: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFreebsd.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFreebsd.js new file mode 100644 index 0000000000..ba0e2b3cf6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFreebsd.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'freebsd'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f3a4'; +var svgPathData = 'M303.7 96.2c11.1-11.1 115.5-77 139.2-53.2 23.7 23.7-42.1 128.1-53.2 139.2-11.1 11.1-39.4.9-63.1-22.9-23.8-23.7-34.1-52-22.9-63.1zM109.9 68.1C73.6 47.5 22 24.6 5.6 41.1c-16.6 16.6 7.1 69.4 27.9 105.7 18.5-32.2 44.8-59.3 76.4-78.7zM406.7 174c3.3 11.3 2.7 20.7-2.7 26.1-20.3 20.3-87.5-27-109.3-70.1-18-32.3-11.1-53.4 14.9-48.7 5.7-3.6 12.3-7.6 19.6-11.6-29.8-15.5-63.6-24.3-99.5-24.3-119.1 0-215.6 96.5-215.6 215.6 0 119 96.5 215.6 215.6 215.6S445.3 380.1 445.3 261c0-38.4-10.1-74.5-27.7-105.8-3.9 7-7.6 13.3-10.9 18.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFreebsd = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFulcrum.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFulcrum.d.ts new file mode 100644 index 0000000000..7e83ea7178 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFulcrum.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFulcrum: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFulcrum.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFulcrum.js new file mode 100644 index 0000000000..c39ed12b04 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faFulcrum.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'fulcrum'; +var width = 269; +var height = 512; +var ligatures = []; +var unicode = 'f50b'; +var svgPathData = 'M70.75 164.14l-35.38 43.55L0 164.14l35.38-43.55 35.37 43.55zM119.23 0L98.69 198.18 47.72 256l50.98 57.82L119.23 512V300.89L78.15 256l41.08-44.89V0zm79.67 164.14l35.38 43.55 35.38-43.55-35.38-43.55-35.38 43.55zm-48.48 46.97L191.5 256l-41.08 44.89V512l20.54-198.18L221.94 256l-50.98-57.82L150.42 0v211.11z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFulcrum = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGalacticRepublic.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGalacticRepublic.d.ts new file mode 100644 index 0000000000..a01d6d63be --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGalacticRepublic.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGalacticRepublic: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGalacticRepublic.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGalacticRepublic.js new file mode 100644 index 0000000000..41a06ac02a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGalacticRepublic.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'galactic-republic'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f50c'; +var svgPathData = 'M248 504C111.25 504 0 392.75 0 256S111.25 8 248 8s248 111.25 248 248-111.25 248-248 248zm0-479.47C120.37 24.53 16.53 128.37 16.53 256S120.37 487.47 248 487.47 479.47 383.63 479.47 256 375.63 24.53 248 24.53zm27.62 21.81v24.62a185.933 185.933 0 0 1 83.57 34.54l17.39-17.36c-28.75-22.06-63.3-36.89-100.96-41.8zm-55.37.07c-37.64 4.94-72.16 19.8-100.88 41.85l17.28 17.36h.08c24.07-17.84 52.55-30.06 83.52-34.67V46.41zm12.25 50.17v82.87c-10.04 2.03-19.42 5.94-27.67 11.42l-58.62-58.59-21.93 21.93 58.67 58.67c-5.47 8.23-9.45 17.59-11.47 27.62h-82.9v31h82.9c2.02 10.02 6.01 19.31 11.47 27.54l-58.67 58.69 21.93 21.93 58.62-58.62a77.873 77.873 0 0 0 27.67 11.47v82.9h31v-82.9c10.05-2.03 19.37-6.06 27.62-11.55l58.67 58.69 21.93-21.93-58.67-58.69c5.46-8.23 9.47-17.52 11.5-27.54h82.87v-31h-82.87c-2.02-10.02-6.03-19.38-11.5-27.62l58.67-58.67-21.93-21.93-58.67 58.67c-8.25-5.49-17.57-9.47-27.62-11.5V96.58h-31zm183.24 30.72l-17.36 17.36a186.337 186.337 0 0 1 34.67 83.67h24.62c-4.95-37.69-19.83-72.29-41.93-101.03zm-335.55.13c-22.06 28.72-36.91 63.26-41.85 100.91h24.65c4.6-30.96 16.76-59.45 34.59-83.52l-17.39-17.39zM38.34 283.67c4.92 37.64 19.75 72.18 41.8 100.9l17.36-17.39c-17.81-24.07-29.92-52.57-34.51-83.52H38.34zm394.7 0c-4.61 30.99-16.8 59.5-34.67 83.6l17.36 17.36c22.08-28.74 36.98-63.29 41.93-100.96h-24.62zM136.66 406.38l-17.36 17.36c28.73 22.09 63.3 36.98 100.96 41.93v-24.64c-30.99-4.63-59.53-16.79-83.6-34.65zm222.53.05c-24.09 17.84-52.58 30.08-83.57 34.67v24.57c37.67-4.92 72.21-19.79 100.96-41.85l-17.31-17.39h-.08z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGalacticRepublic = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGalacticSenate.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGalacticSenate.d.ts new file mode 100644 index 0000000000..d7c3eb710f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGalacticSenate.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGalacticSenate: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGalacticSenate.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGalacticSenate.js new file mode 100644 index 0000000000..6c013c2b20 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGalacticSenate.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'galactic-senate'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f50d'; +var svgPathData = 'M249.86 33.48v26.07C236.28 80.17 226 168.14 225.39 274.9c11.74-15.62 19.13-33.33 19.13-48.24v-16.88c-.03-5.32.75-10.53 2.19-15.65.65-2.14 1.39-4.08 2.62-5.82 1.23-1.75 3.43-3.79 6.68-3.79 3.24 0 5.45 2.05 6.68 3.79 1.23 1.75 1.97 3.68 2.62 5.82 1.44 5.12 2.22 10.33 2.19 15.65v16.88c0 14.91 7.39 32.62 19.13 48.24-.63-106.76-10.91-194.73-24.49-215.35V33.48h-12.28zm-26.34 147.77c-9.52 2.15-18.7 5.19-27.46 9.08 8.9 16.12 9.76 32.64 1.71 37.29-8 4.62-21.85-4.23-31.36-19.82-11.58 8.79-21.88 19.32-30.56 31.09 14.73 9.62 22.89 22.92 18.32 30.66-4.54 7.7-20.03 7.14-35.47-.96-5.78 13.25-9.75 27.51-11.65 42.42 9.68.18 18.67 2.38 26.18 6.04 17.78-.3 32.77-1.96 40.49-4.22 5.55-26.35 23.02-48.23 46.32-59.51.73-25.55 1.88-49.67 3.48-72.07zm64.96 0c1.59 22.4 2.75 46.52 3.47 72.07 23.29 11.28 40.77 33.16 46.32 59.51 7.72 2.26 22.71 3.92 40.49 4.22 7.51-3.66 16.5-5.85 26.18-6.04-1.9-14.91-5.86-29.17-11.65-42.42-15.44 8.1-30.93 8.66-35.47.96-4.57-7.74 3.6-21.05 18.32-30.66-8.68-11.77-18.98-22.3-30.56-31.09-9.51 15.59-23.36 24.44-31.36 19.82-8.05-4.65-7.19-21.16 1.71-37.29a147.49 147.49 0 0 0-27.45-9.08zm-32.48 8.6c-3.23 0-5.86 8.81-6.09 19.93h-.05v16.88c0 41.42-49.01 95.04-93.49 95.04-52 0-122.75-1.45-156.37 29.17v2.51c9.42 17.12 20.58 33.17 33.18 47.97C45.7 380.26 84.77 360.4 141.2 360c45.68 1.02 79.03 20.33 90.76 40.87.01.01-.01.04 0 .05 7.67 2.14 15.85 3.23 24.04 3.21 8.19.02 16.37-1.07 24.04-3.21.01-.01-.01-.04 0-.05 11.74-20.54 45.08-39.85 90.76-40.87 56.43.39 95.49 20.26 108.02 41.35 12.6-14.8 23.76-30.86 33.18-47.97v-2.51c-33.61-30.62-104.37-29.17-156.37-29.17-44.48 0-93.49-53.62-93.49-95.04v-16.88h-.05c-.23-11.12-2.86-19.93-6.09-19.93zm0 96.59c22.42 0 40.6 18.18 40.6 40.6s-18.18 40.65-40.6 40.65-40.6-18.23-40.6-40.65c0-22.42 18.18-40.6 40.6-40.6zm0 7.64c-18.19 0-32.96 14.77-32.96 32.96S237.81 360 256 360s32.96-14.77 32.96-32.96-14.77-32.96-32.96-32.96zm0 6.14c14.81 0 26.82 12.01 26.82 26.82s-12.01 26.82-26.82 26.82-26.82-12.01-26.82-26.82 12.01-26.82 26.82-26.82zm-114.8 66.67c-10.19.07-21.6.36-30.5 1.66.43 4.42 1.51 18.63 7.11 29.76 9.11-2.56 18.36-3.9 27.62-3.9 41.28.94 71.48 34.35 78.26 74.47l.11 4.7c10.4 1.91 21.19 2.94 32.21 2.94 11.03 0 21.81-1.02 32.21-2.94l.11-4.7c6.78-40.12 36.98-73.53 78.26-74.47 9.26 0 18.51 1.34 27.62 3.9 5.6-11.13 6.68-25.34 7.11-29.76-8.9-1.3-20.32-1.58-30.5-1.66-18.76.42-35.19 4.17-48.61 9.67-12.54 16.03-29.16 30.03-49.58 33.07-.09.02-.17.04-.27.05-.05.01-.11.04-.16.05-5.24 1.07-10.63 1.6-16.19 1.6-5.55 0-10.95-.53-16.19-1.6-.05-.01-.11-.04-.16-.05-.1-.02-.17-.04-.27-.05-20.42-3.03-37.03-17.04-49.58-33.07-13.42-5.49-29.86-9.25-48.61-9.67z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGalacticSenate = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGetPocket.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGetPocket.d.ts new file mode 100644 index 0000000000..82d4b8b702 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGetPocket.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGetPocket: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGetPocket.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGetPocket.js new file mode 100644 index 0000000000..8f68726872 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGetPocket.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'get-pocket'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f265'; +var svgPathData = 'M407.6 64h-367C18.5 64 0 82.5 0 104.6v135.2C0 364.5 99.7 464 224.2 464c124 0 223.8-99.5 223.8-224.2V104.6c0-22.4-17.7-40.6-40.4-40.6zm-162 268.5c-12.4 11.8-31.4 11.1-42.4 0C89.5 223.6 88.3 227.4 88.3 209.3c0-16.9 13.8-30.7 30.7-30.7 17 0 16.1 3.8 105.2 89.3 90.6-86.9 88.6-89.3 105.5-89.3 16.9 0 30.7 13.8 30.7 30.7 0 17.8-2.9 15.7-114.8 123.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGetPocket = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGg.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGg.d.ts new file mode 100644 index 0000000000..c8459a0e7a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGg.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGg: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGg.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGg.js new file mode 100644 index 0000000000..897339fe26 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGg.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'gg'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f260'; +var svgPathData = 'M179.2 230.4l102.4 102.4-102.4 102.4L0 256 179.2 76.8l44.8 44.8-25.6 25.6-19.2-19.2-128 128 128 128 51.5-51.5-77.1-76.5 25.6-25.6zM332.8 76.8L230.4 179.2l102.4 102.4 25.6-25.6-77.1-76.5 51.5-51.5 128 128-128 128-19.2-19.2-25.6 25.6 44.8 44.8L512 256 332.8 76.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGg = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGgCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGgCircle.d.ts new file mode 100644 index 0000000000..a52e39e340 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGgCircle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGgCircle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGgCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGgCircle.js new file mode 100644 index 0000000000..0d51756ed3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGgCircle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'gg-circle'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f261'; +var svgPathData = 'M257 8C120 8 9 119 9 256s111 248 248 248 248-111 248-248S394 8 257 8zm-49.5 374.8L81.8 257.1l125.7-125.7 35.2 35.4-24.2 24.2-11.1-11.1-77.2 77.2 77.2 77.2 26.6-26.6-53.1-52.9 24.4-24.4 77.2 77.2-75 75.2zm99-2.2l-35.2-35.2 24.1-24.4 11.1 11.1 77.2-77.2-77.2-77.2-26.5 26.5 53.1 52.9-24.4 24.4-77.2-77.2 75-75L432.2 255 306.5 380.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGgCircle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGit.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGit.d.ts new file mode 100644 index 0000000000..cf4c7809d4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGit.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGit: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGit.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGit.js new file mode 100644 index 0000000000..6348f2372a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGit.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'git'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f1d3'; +var svgPathData = 'M18.8 221.7c0 25.3 16.2 60 41.5 68.5v1c-18.8 8.3-24 50.6 1 65.8v1C34 367 16 384.3 16 414.2c0 51.5 48.8 65.8 91.5 65.8 52 0 90.7-18.7 90.7-76 0-70.5-101-44.5-101-82.8 0-13.5 7.2-18.7 19.7-21.3 41.5-7.7 67.5-40 67.5-82.2 0-7.3-1.5-14.2-4-21 6.7-1.5 13.2-3.3 19.7-5.5v-50.5c-17.2 6.8-35.7 11.8-54.5 11.8-53.8-31-126.8 1.3-126.8 69.2zm87.7 163.8c17 0 41.2 3 41.2 25 0 21.8-19.5 26.3-37.7 26.3-17.3 0-43.3-2.7-43.3-25.2.1-22.3 22.1-26.1 39.8-26.1zM103.3 256c-22 0-31.3-13-31.3-33.8 0-49.3 61-48.8 61-.5 0 20.3-8 34.3-29.7 34.3zM432 305.5v49c-13.3 7.3-30.5 9.8-45.5 9.8-53.5 0-59.8-42.2-59.8-85.7v-87.7h.5v-1c-7 0-7.3-1.6-24 1v-47.5h24c0-22.3.3-31-1.5-41.2h56.7c-2 13.8-1.5 27.5-1.5 41.2h51v47.5s-19.3-1-51-1V281c0 14.8 3.3 32.8 21.8 32.8 9.8 0 21.3-2.8 29.3-8.3zM286 68.7c0 18.7-14.5 36.2-33.8 36.2-19.8 0-34.5-17.2-34.5-36.2 0-19.3 14.5-36.7 34.5-36.7C272 32 286 50 286 68.7zm-6.2 74.5c-1.8 14.6-1.6 199.8 0 217.8h-55.5c1.6-18.1 1.8-203 0-217.8h55.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGit = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitSquare.d.ts new file mode 100644 index 0000000000..6d01df006d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGitSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitSquare.js new file mode 100644 index 0000000000..da7de68f3b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'git-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f1d2'; +var svgPathData = 'M140.1 348.5c12.1 0 29.5 2.1 29.5 17.9 0 15.5-13.9 18.8-27 18.8-12.3 0-30.9-2-30.9-18s15.7-18.7 28.4-18.7zm-24.7-116.6c0 14.8 6.6 24.1 22.3 24.1 15.5 0 21.2-10 21.2-24.5.1-34.4-43.5-34.8-43.5.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-241 93.7c-12.3 4.8-25.5 8.4-38.9 8.4-38.5-22.1-90.7.9-90.7 49.5 0 18 11.6 42.9 29.6 48.9v.7c-13.4 5.9-17.1 36.1.7 47v.7c-19.5 6.4-32.3 18.8-32.3 40.2 0 36.8 34.8 47 65.4 47 37.1 0 64.8-13.4 64.8-54.3 0-50.4-72.1-31.8-72.1-59.1 0-9.6 5.2-13.4 14.1-15.2 29.6-5.5 48.2-28.6 48.2-58.7 0-5.2-1.1-10.2-2.9-15 4.8-1.1 9.5-2.3 14.1-3.9v-36.2zm56.8 1.8h-39.6c1.3 10.6 1.1 142.6 0 155.5h39.6c-1.1-12.8-1.2-145.1 0-155.5zm4.5-53.3c0-13.4-10-26.2-24.1-26.2-14.3 0-24.6 12.5-24.6 26.2 0 13.6 10.5 25.9 24.6 25.9 13.7 0 24.1-12.5 24.1-25.9zm104.3 53.3h-36.4c0-9.8-.4-19.6 1.1-29.5h-40.5c1.3 7.3 1.1 13.6 1.1 29.5h-17.1v33.9c11.9-1.9 12.1-.7 17.1-.7v.7h-.4v62.7c0 31.1 4.5 61.2 42.7 61.2 10.7 0 23-1.8 32.5-7v-35c-5.7 3.9-13.9 5.9-20.9 5.9-13.2 0-15.5-12.9-15.5-23.4v-65.2c22.7 0 36.4.7 36.4.7v-33.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGitSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGithub.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGithub.d.ts new file mode 100644 index 0000000000..475fc3bb3b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGithub.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGithub: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGithub.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGithub.js new file mode 100644 index 0000000000..9cb143c63b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGithub.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'github'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f09b'; +var svgPathData = 'M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGithub = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGithubAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGithubAlt.d.ts new file mode 100644 index 0000000000..234904b7ae --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGithubAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGithubAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGithubAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGithubAlt.js new file mode 100644 index 0000000000..c3266e0319 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGithubAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'github-alt'; +var width = 480; +var height = 512; +var ligatures = []; +var unicode = 'f113'; +var svgPathData = 'M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1zM480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2zm-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3zm-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGithubAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGithubSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGithubSquare.d.ts new file mode 100644 index 0000000000..c25383efda --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGithubSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGithubSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGithubSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGithubSquare.js new file mode 100644 index 0000000000..1937c137f7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGithubSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'github-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f092'; +var svgPathData = 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGithubSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitkraken.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitkraken.d.ts new file mode 100644 index 0000000000..5156a878c8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitkraken.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGitkraken: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitkraken.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitkraken.js new file mode 100644 index 0000000000..ed56f73c86 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitkraken.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'gitkraken'; +var width = 592; +var height = 512; +var ligatures = []; +var unicode = 'f3a6'; +var svgPathData = 'M565.7 118.1c-2.3-6.1-9.3-9.2-15.3-6.6-5.7 2.4-8.5 8.9-6.3 14.6 10.9 29 16.9 60.5 16.9 93.3 0 134.6-100.3 245.7-230.2 262.7V358.4c7.9-1.5 15.5-3.6 23-6.2v104c106.7-25.9 185.9-122.1 185.9-236.8 0-91.8-50.8-171.8-125.8-213.3-5.7-3.2-13-.9-15.9 5-2.7 5.5-.6 12.2 4.7 15.1 67.9 37.6 113.9 110 113.9 193.2 0 93.3-57.9 173.1-139.8 205.4v-92.2c14.2-4.5 24.9-17.7 24.9-33.5 0-13.1-6.8-24.4-17.3-30.5 8.3-79.5 44.5-58.6 44.5-83.9V170c0-38-87.9-161.8-129-164.7-2.5-.2-5-.2-7.6 0C251.1 8.3 163.2 132 163.2 170v14.8c0 25.3 36.3 4.3 44.5 83.9-10.6 6.1-17.3 17.4-17.3 30.5 0 15.8 10.6 29 24.8 33.5v92.2c-81.9-32.2-139.8-112-139.8-205.4 0-83.1 46-155.5 113.9-193.2 5.4-3 7.4-9.6 4.7-15.1-2.9-5.9-10.1-8.2-15.9-5-75 41.5-125.8 121.5-125.8 213.3 0 114.7 79.2 210.8 185.9 236.8v-104c7.6 2.5 15.1 4.6 23 6.2v123.7C131.4 465.2 31 354.1 31 219.5c0-32.8 6-64.3 16.9-93.3 2.2-5.8-.6-12.2-6.3-14.6-6-2.6-13 .4-15.3 6.6C14.5 149.7 8 183.8 8 219.5c0 155.1 122.6 281.6 276.3 287.8V361.4c6.8.4 15 .5 23.4 0v145.8C461.4 501.1 584 374.6 584 219.5c0-35.7-6.5-69.8-18.3-101.4zM365.9 275.5c13 0 23.7 10.5 23.7 23.7 0 13.1-10.6 23.7-23.7 23.7-13 0-23.7-10.5-23.7-23.7 0-13.1 10.6-23.7 23.7-23.7zm-139.8 47.3c-13.2 0-23.7-10.7-23.7-23.7s10.5-23.7 23.7-23.7c13.1 0 23.7 10.6 23.7 23.7 0 13-10.5 23.7-23.7 23.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGitkraken = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitlab.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitlab.d.ts new file mode 100644 index 0000000000..230f3cc897 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitlab.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGitlab: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitlab.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitlab.js new file mode 100644 index 0000000000..3fd93f1dc8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitlab.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'gitlab'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f296'; +var svgPathData = 'M29.782 199.732L256 493.714 8.074 309.699c-6.856-5.142-9.712-13.996-7.141-21.993l28.849-87.974zm75.405-174.806c-3.142-8.854-15.709-8.854-18.851 0L29.782 199.732h131.961L105.187 24.926zm56.556 174.806L256 493.714l94.257-293.982H161.743zm349.324 87.974l-28.849-87.974L256 493.714l247.926-184.015c6.855-5.142 9.711-13.996 7.141-21.993zm-85.404-262.78c-3.142-8.854-15.709-8.854-18.851 0l-56.555 174.806h131.961L425.663 24.926z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGitlab = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitter.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitter.d.ts new file mode 100644 index 0000000000..4222e381e0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitter.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGitter: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitter.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitter.js new file mode 100644 index 0000000000..c468668fce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGitter.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'gitter'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f426'; +var svgPathData = 'M66.4 322.5H16V0h50.4v322.5zM166.9 76.1h-50.4V512h50.4V76.1zm100.6 0h-50.4V512h50.4V76.1zM368 76h-50.4v247H368V76z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGitter = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGlide.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGlide.d.ts new file mode 100644 index 0000000000..bab973537a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGlide.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGlide: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGlide.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGlide.js new file mode 100644 index 0000000000..4990b0c9b2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGlide.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'glide'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f2a5'; +var svgPathData = 'M252.8 148.6c0 8.8-1.6 17.7-3.4 26.4-5.8 27.8-11.6 55.8-17.3 83.6-1.4 6.3-8.3 4.9-13.7 4.9-23.8 0-30.5-26-30.5-45.5 0-29.3 11.2-68.1 38.5-83.1 4.3-2.5 9.2-4.2 14.1-4.2 11.4 0 12.3 8.3 12.3 17.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 187c0-5.1-20.8-37.7-25.5-39.5-2.2-.9-7.2-2.3-9.6-2.3-23.1 0-38.7 10.5-58.2 21.5l-.5-.5c4.3-29.4 14.6-57.2 14.6-87.4 0-44.6-23.8-62.7-67.5-62.7-71.7 0-108 70.8-108 123.5 0 54.7 32 85 86.3 85 7.5 0 6.9-.6 6.9 2.3-10.5 80.3-56.5 82.9-56.5 58.9 0-24.4 28-36.5 28.3-38-.2-7.6-29.3-17.2-36.7-17.2-21.1 0-32.7 33-32.7 50.6 0 32.3 20.4 54.7 53.3 54.7 48.2 0 83.4-49.7 94.3-91.7 9.4-37.7 7-39.4 12.3-42.1 20-10.1 35.8-16.8 58.4-16.8 11.1 0 19 2.3 36.7 5.2 1.8.1 4.1-1.7 4.1-3.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGlide = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGlideG.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGlideG.d.ts new file mode 100644 index 0000000000..1a6b90a3f1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGlideG.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGlideG: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGlideG.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGlideG.js new file mode 100644 index 0000000000..ea6aa2c319 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGlideG.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'glide-g'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f2a6'; +var svgPathData = 'M407.1 211.2c-3.5-1.4-11.6-3.8-15.4-3.8-37.1 0-62.2 16.8-93.5 34.5l-.9-.9c7-47.3 23.5-91.9 23.5-140.4C320.8 29.1 282.6 0 212.4 0 97.3 0 39 113.7 39 198.4 39 286.3 90.3 335 177.6 335c12 0 11-1 11 3.8-16.9 128.9-90.8 133.1-90.8 94.6 0-39.2 45-58.6 45.5-61-.3-12.2-47-27.6-58.9-27.6-33.9.1-52.4 51.2-52.4 79.3C32 476 64.8 512 117.5 512c77.4 0 134-77.8 151.4-145.4 15.1-60.5 11.2-63.3 19.7-67.6 32.2-16.2 57.5-27 93.8-27 17.8 0 30.5 3.7 58.9 8.4 2.9 0 6.7-2.9 6.7-5.8 0-8-33.4-60.5-40.9-63.4zm-175.3-84.4c-9.3 44.7-18.6 89.6-27.8 134.3-2.3 10.2-13.3 7.8-22 7.8-38.3 0-49-41.8-49-73.1 0-47 18-109.3 61.8-133.4 7-4.1 14.8-6.7 22.6-6.7 18.6 0 20 13.3 20 28.7-.1 14.3-2.7 28.5-5.6 42.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGlideG = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGofore.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGofore.d.ts new file mode 100644 index 0000000000..76e18daa52 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGofore.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGofore: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGofore.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGofore.js new file mode 100644 index 0000000000..f167766855 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGofore.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'gofore'; +var width = 400; +var height = 512; +var ligatures = []; +var unicode = 'f3a7'; +var svgPathData = 'M324 319.8h-13.2v34.7c-24.5 23.1-56.3 35.8-89.9 35.8-73.2 0-132.4-60.2-132.4-134.4 0-74.1 59.2-134.4 132.4-134.4 35.3 0 68.6 14 93.6 39.4l62.3-63.3C335 55.3 279.7 32 220.7 32 98 32 0 132.6 0 256c0 122.5 97 224 220.7 224 63.2 0 124.5-26.2 171-82.5-2-27.6-13.4-77.7-67.7-77.7zm-12.1-112.5H205.6v89H324c33.5 0 60.5 15.1 76 41.8v-30.6c0-65.2-40.4-100.2-88.1-100.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGofore = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoodreads.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoodreads.d.ts new file mode 100644 index 0000000000..48e0655754 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoodreads.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGoodreads: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoodreads.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoodreads.js new file mode 100644 index 0000000000..c4ca645e1c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoodreads.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'goodreads'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f3a8'; +var svgPathData = 'M299.9 191.2c5.1 37.3-4.7 79-35.9 100.7-22.3 15.5-52.8 14.1-70.8 5.7-37.1-17.3-49.5-58.6-46.8-97.2 4.3-60.9 40.9-87.9 75.3-87.5 46.9-.2 71.8 31.8 78.2 78.3zM448 88v336c0 30.9-25.1 56-56 56H56c-30.9 0-56-25.1-56-56V88c0-30.9 25.1-56 56-56h336c30.9 0 56 25.1 56 56zM330 313.2s-.1-34-.1-217.3h-29v40.3c-.8.3-1.2-.5-1.6-1.2-9.6-20.7-35.9-46.3-76-46-51.9.4-87.2 31.2-100.6 77.8-4.3 14.9-5.8 30.1-5.5 45.6 1.7 77.9 45.1 117.8 112.4 115.2 28.9-1.1 54.5-17 69-45.2.5-1 1.1-1.9 1.7-2.9.2.1.4.1.6.2.3 3.8.2 30.7.1 34.5-.2 14.8-2 29.5-7.2 43.5-7.8 21-22.3 34.7-44.5 39.5-17.8 3.9-35.6 3.8-53.2-1.2-21.5-6.1-36.5-19-41.1-41.8-.3-1.6-1.3-1.3-2.3-1.3h-26.8c.8 10.6 3.2 20.3 8.5 29.2 24.2 40.5 82.7 48.5 128.2 37.4 49.9-12.3 67.3-54.9 67.4-106.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGoodreads = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoodreadsG.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoodreadsG.d.ts new file mode 100644 index 0000000000..30b917a8a9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoodreadsG.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGoodreadsG: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoodreadsG.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoodreadsG.js new file mode 100644 index 0000000000..36b2ff426b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoodreadsG.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'goodreads-g'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f3a9'; +var svgPathData = 'M42.6 403.3h2.8c12.7 0 25.5 0 38.2.1 1.6 0 3.1-.4 3.6 2.1 7.1 34.9 30 54.6 62.9 63.9 26.9 7.6 54.1 7.8 81.3 1.8 33.8-7.4 56-28.3 68-60.4 8-21.5 10.7-43.8 11-66.5.1-5.8.3-47-.2-52.8l-.9-.3c-.8 1.5-1.7 2.9-2.5 4.4-22.1 43.1-61.3 67.4-105.4 69.1-103 4-169.4-57-172-176.2-.5-23.7 1.8-46.9 8.3-69.7C58.3 47.7 112.3.6 191.6 0c61.3-.4 101.5 38.7 116.2 70.3.5 1.1 1.3 2.3 2.4 1.9V10.6h44.3c0 280.3.1 332.2.1 332.2-.1 78.5-26.7 143.7-103 162.2-69.5 16.9-159 4.8-196-57.2-8-13.5-11.8-28.3-13-44.5zM188.9 36.5c-52.5-.5-108.5 40.7-115 133.8-4.1 59 14.8 122.2 71.5 148.6 27.6 12.9 74.3 15 108.3-8.7 47.6-33.2 62.7-97 54.8-154-9.7-71.1-47.8-120-119.6-119.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGoodreadsG = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoogle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoogle.d.ts new file mode 100644 index 0000000000..967bda1da6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoogle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGoogle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoogle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoogle.js new file mode 100644 index 0000000000..c0a349633e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoogle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'google'; +var width = 488; +var height = 512; +var ligatures = []; +var unicode = 'f1a0'; +var svgPathData = 'M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGoogle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoogleDrive.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoogleDrive.d.ts new file mode 100644 index 0000000000..5f7ed60ccd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoogleDrive.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGoogleDrive: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoogleDrive.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoogleDrive.js new file mode 100644 index 0000000000..052a63dd52 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoogleDrive.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'google-drive'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f3aa'; +var svgPathData = 'M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGoogleDrive = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlay.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlay.d.ts new file mode 100644 index 0000000000..49d1981bc6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlay.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGooglePlay: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlay.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlay.js new file mode 100644 index 0000000000..6145f1c9c8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlay.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'google-play'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f3ab'; +var svgPathData = 'M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGooglePlay = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlus.d.ts new file mode 100644 index 0000000000..cc0ed57441 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlus.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGooglePlus: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlus.js new file mode 100644 index 0000000000..c296bde148 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlus.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'google-plus'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f2b3'; +var svgPathData = 'M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm-70.7 372c-68.8 0-124-55.5-124-124s55.2-124 124-124c31.3 0 60.1 11 83 32.3l-33.6 32.6c-13.2-12.9-31.3-19.1-49.4-19.1-42.9 0-77.2 35.5-77.2 78.1s34.2 78.1 77.2 78.1c32.6 0 64.9-19.1 70.1-53.3h-70.1v-42.6h116.9c1.3 6.8 1.9 13.6 1.9 20.7 0 70.8-47.5 121.2-118.8 121.2zm230.2-106.2v35.5H372v-35.5h-35.5v-35.5H372v-35.5h35.5v35.5h35.2v35.5h-35.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGooglePlus = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlusG.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlusG.d.ts new file mode 100644 index 0000000000..890201f8df --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlusG.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGooglePlusG: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlusG.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlusG.js new file mode 100644 index 0000000000..d05b788b66 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlusG.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'google-plus-g'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f0d5'; +var svgPathData = 'M386.061 228.496c1.834 9.692 3.143 19.384 3.143 31.956C389.204 370.205 315.599 448 204.8 448c-106.084 0-192-85.915-192-192s85.916-192 192-192c51.864 0 95.083 18.859 128.611 50.292l-52.126 50.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484 0-118.92 54.221-118.92 121.277 0 67.056 53.436 121.277 118.92 121.277 75.961 0 104.513-54.745 108.965-82.773H204.8v-66.009h181.261zm185.406 6.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001h-55.733z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGooglePlusG = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlusSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlusSquare.d.ts new file mode 100644 index 0000000000..fa74c528b7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlusSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGooglePlusSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlusSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlusSquare.js new file mode 100644 index 0000000000..3031019c3e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGooglePlusSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'google-plus-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0d4'; +var svgPathData = 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM164 356c-55.3 0-100-44.7-100-100s44.7-100 100-100c27 0 49.5 9.8 67 26.2l-27.1 26.1c-7.4-7.1-20.3-15.4-39.8-15.4-34.1 0-61.9 28.2-61.9 63.2 0 34.9 27.8 63.2 61.9 63.2 39.6 0 54.4-28.5 56.8-43.1H164v-34.4h94.4c1 5 1.6 10.1 1.6 16.6 0 57.1-38.3 97.6-96 97.6zm220-81.8h-29v29h-29.2v-29h-29V245h29v-29H355v29h29v29.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGooglePlusSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoogleWallet.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoogleWallet.d.ts new file mode 100644 index 0000000000..7560735f91 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoogleWallet.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGoogleWallet: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoogleWallet.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoogleWallet.js new file mode 100644 index 0000000000..c31de85811 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGoogleWallet.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'google-wallet'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f1ee'; +var svgPathData = 'M156.8 126.8c37.6 60.6 64.2 113.1 84.3 162.5-8.3 33.8-18.8 66.5-31.3 98.3-13.2-52.3-26.5-101.3-56-148.5 6.5-36.4 2.3-73.6 3-112.3zM109.3 200H16.1c-6.5 0-10.5 7.5-6.5 12.7C51.8 267 81.3 330.5 101.3 400h103.5c-16.2-69.7-38.7-133.7-82.5-193.5-3-4-8-6.5-13-6.5zm47.8-88c68.5 108 130 234.5 138.2 368H409c-12-138-68.4-265-143.2-368H157.1zm251.8-68.5c-1.8-6.8-8.2-11.5-15.2-11.5h-88.3c-5.3 0-9 5-7.8 10.3 13.2 46.5 22.3 95.5 26.5 146 48.2 86.2 79.7 178.3 90.6 270.8 15.8-60.5 25.3-133.5 25.3-203 0-73.6-12.1-145.1-31.1-212.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGoogleWallet = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGratipay.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGratipay.d.ts new file mode 100644 index 0000000000..13de5b85ba --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGratipay.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGratipay: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGratipay.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGratipay.js new file mode 100644 index 0000000000..14de71a7e1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGratipay.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'gratipay'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f184'; +var svgPathData = 'M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm114.6 226.4l-113 152.7-112.7-152.7c-8.7-11.9-19.1-50.4 13.6-72 28.1-18.1 54.6-4.2 68.5 11.9 15.9 17.9 46.6 16.9 61.7 0 13.9-16.1 40.4-30 68.1-11.9 32.9 21.6 22.6 60 13.8 72z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGratipay = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGrav.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGrav.d.ts new file mode 100644 index 0000000000..04763b557c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGrav.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrav: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGrav.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGrav.js new file mode 100644 index 0000000000..752cf038d3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGrav.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'grav'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2d6'; +var svgPathData = 'M301.1 212c4.4 4.4 4.4 11.9 0 16.3l-9.7 9.7c-4.4 4.7-11.9 4.7-16.6 0l-10.5-10.5c-4.4-4.7-4.4-11.9 0-16.6l9.7-9.7c4.4-4.4 11.9-4.4 16.6 0l10.5 10.8zm-30.2-19.7c3-3 3-7.8 0-10.5-2.8-3-7.5-3-10.5 0-2.8 2.8-2.8 7.5 0 10.5 3.1 2.8 7.8 2.8 10.5 0zm-26 5.3c-3 2.8-3 7.5 0 10.2 2.8 3 7.5 3 10.5 0 2.8-2.8 2.8-7.5 0-10.2-3-3-7.7-3-10.5 0zm72.5-13.3c-19.9-14.4-33.8-43.2-11.9-68.1 21.6-24.9 40.7-17.2 59.8.8 11.9 11.3 29.3 24.9 17.2 48.2-12.5 23.5-45.1 33.2-65.1 19.1zm47.7-44.5c-8.9-10-23.3 6.9-15.5 16.1 7.4 9 32.1 2.4 15.5-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-66.2 42.6c2.5-16.1-20.2-16.6-25.2-25.7-13.6-24.1-27.7-36.8-54.5-30.4 11.6-8 23.5-6.1 23.5-6.1.3-6.4 0-13-9.4-24.9 3.9-12.5.3-22.4.3-22.4 15.5-8.6 26.8-24.4 29.1-43.2 3.6-31-18.8-59.2-49.8-62.8-22.1-2.5-43.7 7.7-54.3 25.7-23.2 40.1 1.4 70.9 22.4 81.4-14.4-1.4-34.3-11.9-40.1-34.3-6.6-25.7 2.8-49.8 8.9-61.4 0 0-4.4-5.8-8-8.9 0 0-13.8 0-24.6 5.3 11.9-15.2 25.2-14.4 25.2-14.4 0-6.4-.6-14.9-3.6-21.6-5.4-11-23.8-12.9-31.7 2.8.1-.2.3-.4.4-.5-5 11.9-1.1 55.9 16.9 87.2-2.5 1.4-9.1 6.1-13 10-21.6 9.7-56.2 60.3-56.2 60.3-28.2 10.8-77.2 50.9-70.6 79.7.3 3 1.4 5.5 3 7.5-2.8 2.2-5.5 5-8.3 8.3-11.9 13.8-5.3 35.2 17.7 24.4 15.8-7.2 29.6-20.2 36.3-30.4 0 0-5.5-5-16.3-4.4 27.7-6.6 34.3-9.4 46.2-9.1 8 3.9 8-34.3 8-34.3 0-14.7-2.2-31-11.1-41.5 12.5 12.2 29.1 32.7 28 60.6-.8 18.3-15.2 23-15.2 23-9.1 16.6-43.2 65.9-30.4 106 0 0-9.7-14.9-10.2-22.1-17.4 19.4-46.5 52.3-24.6 64.5 26.6 14.7 108.8-88.6 126.2-142.3 34.6-20.8 55.4-47.3 63.9-65 22 43.5 95.3 94.5 101.1 59z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrav = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGripfire.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGripfire.d.ts new file mode 100644 index 0000000000..d7523781b8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGripfire.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGripfire: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGripfire.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGripfire.js new file mode 100644 index 0000000000..e8828a3f58 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGripfire.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'gripfire'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f3ac'; +var svgPathData = 'M171.8 503.8c0-5.3 4.8-12.2 4.8-22.3 0-15.2-13-39.9-78.1-86.6C64.2 365.8 32 336.4 32 286.6 32 171.9 179.1 110.1 179.1 18c0-3.3-.2-6.7-.6-10 5.1 2.4 39.1 43.3 39.1 90.4 0 80.5-105.1 129.2-105.1 203 0 26.9 16.6 47.2 32.6 69.5 22.5 30.2 44.2 56.9 44.2 86.5-.1 14.5-4.4 29.7-17.5 46.4zm146-241.4c1.5 8.4 2.2 16.6 2.2 24.6 0 51.8-29.4 97.5-67.3 136.8-1 1-2.2 2.4-3.2 2.4-3.6 0-35.5-41.6-35.5-53.2 0 0 41.8-55.7 41.8-96.9 0-10.8-2.7-21.7-9.1-33.4-1.5 32.3-55.7 87.7-58.1 87.7-2.7 0-17.9-22-17.9-42.1 0-5.3 1-10.7 3.2-15.8 2.4-5.5 56.6-72 56.6-116.7 0-6.2-1-12-3.4-17.1l-4-7.2c16.7 6.5 82.6 64.1 94.7 130.9'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGripfire = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGrunt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGrunt.d.ts new file mode 100644 index 0000000000..627ef5d3c9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGrunt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrunt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGrunt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGrunt.js new file mode 100644 index 0000000000..f035fb56eb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGrunt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'grunt'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f3ad'; +var svgPathData = 'M61.3 189.3c-1.1 10 5.2 19.1 5.2 19.1.7-7.5 2.2-12.8 4-16.6.4 10.3 3.2 23.5 12.8 34.1 6.9 7.6 35.6 23.3 54.9 6.1 1 2.4 2.1 5.3 3 8.5 2.9 10.3-2.7 25.3-2.7 25.3s15.1-17.1 13.9-32.5c10.8-.5 21.4-8.4 21.1-19.5 0 0-18.9 10.4-35.5-8.8-9.7-11.2-40.9-42-83.1-31.8 4.3 1 8.9 2.4 13.5 4.1h-.1c-4.2 2-6.5 7.1-7 12zm28.3-1.8c19.5 11 37.4 25.7 44.9 37-5.7 3.3-21.7 10.4-38-1.7-10.3-7.6-9.8-26.2-6.9-35.3zm79.2 233.7c2.2 2.3 1.5 5.3.9 6.8-1.1 2.7-5.5 11.6-13 19.8-2.7 2.9-6.6 4.6-11 4.6-4.3 0-8.7-1.6-11.8-4.3-2.3-2.1-10.2-9.5-13.7-18.6-1.3-3.4-1-6.1.9-8.1 1.3-1.3 4-2.9 9.5-2.9H160c4.1 0 7 .9 8.8 2.7zm62.9-187.9c-1.2 15.5 13.9 32.5 13.9 32.5s-5.6-15-2.7-25.3c.9-3.2 2-6 3-8.5 19.3 17.3 48 1.5 54.8-6.1 9.6-10.6 12.3-23.8 12.8-34.1 1.8 3.8 3.4 9.1 4 16.6 0 0 6.4-9.1 5.2-19.1-.6-5-2.9-10-7-11.8h-.1c4.6-1.8 9.2-3.2 13.5-4.1-42.3-10.2-73.4 20.6-83.1 31.8-16.7 19.2-35.5 8.8-35.5 8.8-.2 10.9 10.4 18.9 21.2 19.3zm17.8-8.8c7.5-11.4 25.4-26 44.9-37 3 9.1 3.4 27.7-7 35.4-16.3 12.1-32.2 5-37.9 1.6-.1.1 0 0 0 0zM263 421.4c1.9 1.9 2.2 4.6.9 7.9-3.5 8.9-11.4 16.1-13.7 18.1-3.1 2.6-7.4 4.2-11.8 4.2s-8.3-1.6-11-4.5c-7.5-8-12-16.7-13-19.3-.6-1.5-1.3-4.4.9-6.7 1.7-1.8 4.7-2.7 8.9-2.7h29.4c5.4.1 8.1 1.7 9.4 3zm-98.3-251.5c9.9 6 18.8 8.1 27.3 8.3 8.5-.2 17.4-2.3 27.3-8.3 0 0-14.5 17.7-27.2 17.8h-.2c-12.7-.2-27.2-17.8-27.2-17.8zm184.5 147.4c-2.4 17.9-13 33.8-24.6 43.7-3.1-22.7-3.7-55.5-3.7-62.4 0-14.7 9.5-24.5 12.2-26.1 2.5-1.5 5.4-3 8.3-4.6 18-9.6 40.4-21.6 40.4-43.7 0-16.2-9.3-23.2-15.4-27.8-.8-.6-1.5-1.1-2.2-1.7-2.1-1.7-3.7-3-4.3-4.4-4.4-9.8-3.6-34.2-1.7-37.6.6-.6 16.7-20.9 11.8-39.2-2-7.4-6.9-13.3-14.1-17-5.3-2.7-11.9-4.2-19.5-4.5-.1-2-.5-3.9-.9-5.9-.6-2.6-1.1-5.3-.9-8.1.4-4.7.8-9 2.2-11.3 8.4-13.3 28.8-17.6 29-17.6l12.3-2.4-8.1-9.5c-.1-.2-17.3-17.5-46.3-17.5-7.9 0-16 1.3-24.1 3.9-24.2 7.8-42.9 30.5-49.4 39.3-3.1-1-6.3-1.9-9.6-2.7-4.2-15.8 9-38.5 9-38.5s-13.6-3-33.7 15.2c-2.6-6.5-8.1-20.5-1.8-37.2C184.6 10.1 177.2 26 175 40.4c-7.6-5.4-6.7-23.1-7.2-27.6-7.5.9-29.2 21.9-28.2 48.3-2 .5-3.9 1.1-5.9 1.7-6.5-8.8-25.1-31.5-49.4-39.3-7.9-2.2-16-3.5-23.9-3.5-29 0-46.1 17.3-46.3 17.5L6 46.9l12.3 2.4c.2 0 20.6 4.3 29 17.6 1.4 2.2 1.8 6.6 2.2 11.3.2 2.8-.4 5.5-.9 8.1-.4 1.9-.8 3.9-.9 5.9-7.7.3-14.2 1.8-19.5 4.5-7.2 3.7-12.1 9.6-14.1 17-5 18.2 11.2 38.5 11.8 39.2 1.9 3.4 2.7 27.8-1.7 37.6-.6 1.4-2.2 2.7-4.3 4.4-.7.5-1.4 1.1-2.2 1.7-6.1 4.6-15.4 11.7-15.4 27.8 0 22.1 22.4 34.1 40.4 43.7 3 1.6 5.8 3.1 8.3 4.6 2.7 1.6 12.2 11.4 12.2 26.1 0 6.9-.6 39.7-3.7 62.4-11.6-9.9-22.2-25.9-24.6-43.8 0 0-29.2 22.6-20.6 70.8 5.2 29.5 23.2 46.1 47 54.7 8.8 19.1 29.4 45.7 67.3 49.6C143 504.3 163 512 192.2 512h.2c29.1 0 49.1-7.7 63.6-19.5 37.9-3.9 58.5-30.5 67.3-49.6 23.8-8.7 41.7-25.2 47-54.7 8.2-48.4-21.1-70.9-21.1-70.9zM305.7 37.7c5.6-1.8 11.6-2.7 17.7-2.7 11 0 19.9 3 24.7 5-3.1 1.4-6.4 3.2-9.7 5.3-2.4-.4-5.6-.8-9.2-.8-10.5 0-20.5 3.1-28.7 8.9-12.3 8.7-18 16.9-20.7 22.4-2.2-1.3-4.5-2.5-7.1-3.7-1.6-.8-3.1-1.5-4.7-2.2 6.1-9.1 19.9-26.5 37.7-32.2zm21 18.2c-.8 1-1.6 2.1-2.3 3.2-3.3 5.2-3.9 11.6-4.4 17.8-.5 6.4-1.1 12.5-4.4 17-4.2.8-8.1 1.7-11.5 2.7-2.3-3.1-5.6-7-10.5-11.2 1.4-4.8 5.5-16.1 13.5-22.5 5.6-4.3 12.2-6.7 19.6-7zM45.6 45.3c-3.3-2.2-6.6-4-9.7-5.3 4.8-2 13.7-5 24.7-5 6.1 0 12 .9 17.7 2.7 17.8 5.8 31.6 23.2 37.7 32.1-1.6.7-3.2 1.4-4.8 2.2-2.5 1.2-4.9 2.5-7.1 3.7-2.6-5.4-8.3-13.7-20.7-22.4-8.3-5.8-18.2-8.9-28.8-8.9-3.4.1-6.6.5-9 .9zm44.7 40.1c-4.9 4.2-8.3 8-10.5 11.2-3.4-.9-7.3-1.9-11.5-2.7C65 89.5 64.5 83.4 64 77c-.5-6.2-1.1-12.6-4.4-17.8-.7-1.1-1.5-2.2-2.3-3.2 7.4.3 14 2.6 19.5 7 8 6.3 12.1 17.6 13.5 22.4zM58.1 259.9c-2.7-1.6-5.6-3.1-8.4-4.6-14.9-8-30.2-16.3-30.2-30.5 0-11.1 4.3-14.6 8.9-18.2l.5-.4c.7-.6 1.4-1.2 2.2-1.8-.9 7.2-1.9 13.3-2.7 14.9 0 0 12.1-15 15.7-44.3 1.4-11.5-1.1-34.3-5.1-43 .2 4.9 0 9.8-.3 14.4-.4-.8-.8-1.6-1.3-2.2-3.2-4-11.8-17.5-9.4-26.6.9-3.5 3.1-6 6.7-7.8 3.8-1.9 8.8-2.9 15.1-2.9 12.3 0 25.9 3.7 32.9 6 25.1 8 55.4 30.9 64.1 37.7.2.2.4.3.4.3l5.6 3.9-3.5-5.8c-.2-.3-19.1-31.4-53.2-46.5 2-2.9 7.4-8.1 21.6-15.1 21.4-10.5 46.5-15.8 74.3-15.8 27.9 0 52.9 5.3 74.3 15.8 14.2 6.9 19.6 12.2 21.6 15.1-34 15.1-52.9 46.2-53.1 46.5l-3.5 5.8 5.6-3.9s.2-.1.4-.3c8.7-6.8 39-29.8 64.1-37.7 7-2.2 20.6-6 32.9-6 6.3 0 11.3 1 15.1 2.9 3.5 1.8 5.7 4.4 6.7 7.8 2.5 9.1-6.1 22.6-9.4 26.6-.5.6-.9 1.3-1.3 2.2-.3-4.6-.5-9.5-.3-14.4-4 8.8-6.5 31.5-5.1 43 3.6 29.3 15.7 44.3 15.7 44.3-.8-1.6-1.8-7.7-2.7-14.9.7.6 1.5 1.2 2.2 1.8l.5.4c4.6 3.7 8.9 7.1 8.9 18.2 0 14.2-15.4 22.5-30.2 30.5-2.9 1.5-5.7 3.1-8.4 4.6-8.7 5-18 16.7-19.1 34.2-.9 14.6.9 49.9 3.4 75.9-12.4 4.8-26.7 6.4-39.7 6.8-2-4.1-3.9-8.5-5.5-13.1-.7-2-19.6-51.1-26.4-62.2 5.5 39 17.5 73.7 23.5 89.6-3.5-.5-7.3-.7-11.7-.7h-117c-4.4 0-8.3.3-11.7.7 6-15.9 18.1-50.6 23.5-89.6-6.8 11.2-25.7 60.3-26.4 62.2-1.6 4.6-3.5 9-5.5 13.1-13-.4-27.2-2-39.7-6.8 2.5-26 4.3-61.2 3.4-75.9-.9-17.4-10.3-29.2-19-34.2zM34.8 404.6c-12.1-20-8.7-54.1-3.7-59.1 10.9 34.4 47.2 44.3 74.4 45.4-2.7 4.2-5.2 7.6-7 10l-1.4 1.4c-7.2 7.8-8.6 18.5-4.1 31.8-22.7-.1-46.3-9.8-58.2-29.5zm45.7 43.5c6 1.1 12.2 1.9 18.6 2.4 3.5 8 7.4 15.9 12.3 23.1-14.4-5.9-24.4-16-30.9-25.5zM192 498.2c-60.6-.1-78.3-45.8-84.9-64.7-3.7-10.5-3.4-18.2.9-23.1 2.9-3.3 9.5-7.2 24.6-7.2h118.8c15.1 0 21.8 3.9 24.6 7.2 4.2 4.8 4.5 12.6.9 23.1-6.6 18.8-24.3 64.6-84.9 64.7zm80.6-24.6c4.9-7.2 8.8-15.1 12.3-23.1 6.4-.5 12.6-1.3 18.6-2.4-6.5 9.5-16.5 19.6-30.9 25.5zm76.6-69c-12 19.7-35.6 29.3-58.1 29.7 4.5-13.3 3.1-24.1-4.1-31.8-.4-.5-.9-1-1.4-1.5-1.8-2.4-4.3-5.8-7-10 27.2-1.2 63.5-11 74.4-45.4 5 5 8.4 39.1-3.8 59z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrunt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGulp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGulp.d.ts new file mode 100644 index 0000000000..42655b7978 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGulp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGulp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGulp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGulp.js new file mode 100644 index 0000000000..ba80f1f368 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faGulp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'gulp'; +var width = 256; +var height = 512; +var ligatures = []; +var unicode = 'f3ae'; +var svgPathData = 'M209.8 391.1l-14.1 24.6-4.6 80.2c0 8.9-28.3 16.1-63.1 16.1s-63.1-7.2-63.1-16.1l-5.8-79.4-14.9-25.4c41.2 17.3 126 16.7 165.6 0zm-196-253.3l13.6 125.5c5.9-20 20.8-47 40-55.2 6.3-2.7 12.7-2.7 18.7.9 5.2 3 9.6 9.3 10.1 11.8 1.2 6.5-2 9.1-4.5 9.1-3 0-5.3-4.6-6.8-7.3-4.1-7.3-10.3-7.6-16.9-2.8-6.9 5-12.9 13.4-17.1 20.7-5.1 8.8-9.4 18.5-12 28.2-1.5 5.6-2.9 14.6-.6 19.9 1 2.2 2.5 3.6 4.9 3.6 5 0 12.3-6.6 15.8-10.1 4.5-4.5 10.3-11.5 12.5-16l5.2-15.5c2.6-6.8 9.9-5.6 9.9 0 0 10.2-3.7 13.6-10 34.7-5.8 19.5-7.6 25.8-7.6 25.8-.7 2.8-3.4 7.5-6.3 7.5-1.2 0-2.1-.4-2.6-1.2-1-1.4-.9-5.3-.8-6.3.2-3.2 6.3-22.2 7.3-25.2-2 2.2-4.1 4.4-6.4 6.6-5.4 5.1-14.1 11.8-21.5 11.8-3.4 0-5.6-.9-7.7-2.4l7.6 79.6c2 5 39.2 17.1 88.2 17.1 49.1 0 86.3-12.2 88.2-17.1l10.9-94.6c-5.7 5.2-12.3 11.6-19.6 14.8-5.4 2.3-17.4 3.8-17.4-5.7 0-5.2 9.1-14.8 14.4-21.5 1.4-1.7 4.7-5.9 4.7-8.1 0-2.9-6-2.2-11.7 2.5-3.2 2.7-6.2 6.3-8.7 9.7-4.3 6-6.6 11.2-8.5 15.5-6.2 14.2-4.1 8.6-9.1 22-5 13.3-4.2 11.8-5.2 14-.9 1.9-2.2 3.5-4 4.5-1.9 1-4.5.9-6.1-.3-.9-.6-1.3-1.9-1.3-3.7 0-.9.1-1.8.3-2.7 1.5-6.1 7.8-18.1 15-34.3 1.6-3.7 1-2.6.8-2.3-6.2 6-10.9 8.9-14.4 10.5-5.8 2.6-13 2.6-14.5-4.1-.1-.4-.1-.8-.2-1.2-11.8 9.2-24.3 11.7-20-8.1-4.6 8.2-12.6 14.9-22.4 14.9-4.1 0-7.1-1.4-8.6-5.1-2.3-5.5 1.3-14.9 4.6-23.8 1.7-4.5 4-9.9 7.1-16.2 1.6-3.4 4.2-5.4 7.6-4.5.6.2 1.1.4 1.6.7 2.6 1.8 1.6 4.5.3 7.2-3.8 7.5-7.1 13-9.3 20.8-.9 3.3-2 9 1.5 9 2.4 0 4.7-.8 6.9-2.4 4.6-3.4 8.3-8.5 11.1-13.5 2-3.6 4.4-8.3 5.6-12.3.5-1.7 1.1-3.3 1.8-4.8 1.1-2.5 2.6-5.1 5.2-5.1 1.3 0 2.4.5 3.2 1.5 1.7 2.2 1.3 4.5.4 6.9-2 5.6-4.7 10.6-6.9 16.7-1.3 3.5-2.7 8-2.7 11.7 0 3.4 3.7 2.6 6.8 1.2 2.4-1.1 4.8-2.8 6.8-4.5 1.2-4.9.9-3.8 26.4-68.2 1.3-3.3 3.7-4.7 6.1-4.7 1.2 0 2.2.4 3.2 1.1 1.7 1.3 1.7 4.1 1 6.2-.7 1.9-.6 1.3-4.5 10.5-5.2 12.1-8.6 20.8-13.2 31.9-1.9 4.6-7.7 18.9-8.7 22.3-.6 2.2-1.3 5.8 1 5.8 5.4 0 19.3-13.1 23.1-17 .2-.3.5-.4.9-.6.6-1.9 1.2-3.7 1.7-5.5 1.4-3.8 2.7-8.2 5.3-11.3.8-1 1.7-1.6 2.7-1.6 2.8 0 4.2 1.2 4.2 4 0 1.1-.7 5.1-1.1 6.2 1.4-1.5 2.9-3 4.5-4.5 15-13.9 25.7-6.8 25.7.2 0 7.4-8.9 17.7-13.8 23.4-1.6 1.9-4.9 5.4-5 6.4 0 1.3.9 1.8 2.2 1.8 2 0 6.4-3.5 8-4.7 5-3.9 11.8-9.9 16.6-14.1l14.8-136.8c-30.5 17.1-197.6 17.2-228.3.2zm229.7-8.5c0 21-231.2 21-231.2 0 0-8.8 51.8-15.9 115.6-15.9 9 0 17.8.1 26.3.4l12.6-48.7L228.1.6c1.4-1.4 5.8-.2 9.9 3.5s6.6 7.9 5.3 9.3l-.1.1L185.9 74l-10 40.7c39.9 2.6 67.6 8.1 67.6 14.6zm-69.4 4.6c0-.8-.9-1.5-2.5-2.1l-.2.8c0 1.3-5 2.4-11.1 2.4s-11.1-1.1-11.1-2.4c0-.1 0-.2.1-.3l.2-.7c-1.8.6-3 1.4-3 2.3 0 2.1 6.2 3.7 13.7 3.7 7.7.1 13.9-1.6 13.9-3.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGulp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHackerNews.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHackerNews.d.ts new file mode 100644 index 0000000000..c87653c881 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHackerNews.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHackerNews: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHackerNews.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHackerNews.js new file mode 100644 index 0000000000..2cb7654b48 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHackerNews.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'hacker-news'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f1d4'; +var svgPathData = 'M0 32v448h448V32H0zm21.2 197.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHackerNews = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHackerNewsSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHackerNewsSquare.d.ts new file mode 100644 index 0000000000..d11034696a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHackerNewsSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHackerNewsSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHackerNewsSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHackerNewsSquare.js new file mode 100644 index 0000000000..7062876b55 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHackerNewsSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'hacker-news-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f3af'; +var svgPathData = 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM21.2 229.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHackerNewsSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHips.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHips.d.ts new file mode 100644 index 0000000000..9a1a370b20 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHips.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHips: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHips.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHips.js new file mode 100644 index 0000000000..d3dd24f80d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHips.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'hips'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f452'; +var svgPathData = 'M0 80.2c0-1.8.9-2.7 2.7-2.7h40.9c1.9 0 2.8.9 2.8 2.7v81.2c15.2-7.7 31.7-11.5 49.8-11.4 24 .1 44.2 6.2 60.3 18 18.7 13.5 28 31.9 28 55.3v136.1c0 1.9-.9 2.8-2.7 2.8h-27.3c-9.1 0-16.4-7.3-16.4-16.3V223.3c0-.9 2.7-27-45.8-27-48.6 0-45.8 26.2-45.8 27v136.1c0 1.9-.9 2.8-2.8 2.8h-41c-1.8 0-2.7-.9-2.7-2.8V80.2zm497.7 221.5c13.7 10.2 34.1 19.1 58.4 19.1 23.3 0 32.8-4.5 36.5-13.6 3-7.9-.6-16.1-12.2-21.2l-53.6-23.5c-21.4-9.4-33.8-24-37.2-43.6-5.7-33.7 22.2-53.3 22.7-53.7 13.2-9.6 32-15.4 58.5-15.4 19 0 37.4 3.3 55.1 9.9 1.3.5 1.9 1.3 1.9 2.6V207c0 2.1-2.3 3.4-4 2.4-39.7-20.7-76.6-12.3-84-6.8-6.6 4.9-6 12.5 2.6 16.1L600 244c16.5 7.1 28.1 18.4 34.9 34.1 5.5 12.6 6.6 25.6 3.1 39.1-9.6 36.9-44.9 45.5-45.6 45.8-10.5 3.1-23.6 4.3-36.3 4.3-16.6 0-32.6-2.7-48.2-8.2-9.7-3.4-14.6-10.3-14.6-20.7V304c0-2.1 2.3-3.7 4.4-2.3zM376.2 149.8c-31.7 0-104.2 20.1-104.2 103.5v183.5c0 .8.6 2.7 2.7 2.7h40.9c1.9 0 2.8-.9 2.8-2.7V348c16.5 12.7 35.8 19.1 57.7 19.1 60.5 0 108.7-48.5 108.7-108.7.1-60.3-48.2-108.6-108.6-108.6zm0 170.9c-17.2 0-31.9-6.1-44-18.2-12.2-12.2-18.2-26.8-18.2-44 0-34.5 27.6-62.2 62.2-62.2 34.5 0 62.2 27.6 62.2 62.2.1 34.3-27.3 62.2-62.2 62.2zm-124.6 38.7c0 1.9-.9 2.8-2.8 2.8h-40.9c-1.6 0-2.7-1.4-2.7-2.8V157.6c0-1.4 1.1-2.8 2.7-2.8h40.9c1.9 0 2.8.9 2.8 2.8v201.8M228.3 72.5c15.9 0 28.9 12.7 28.9 28.9 0 15.8-12.7 28.9-28.9 28.9s-28.9-13.3-28.9-28.9c.1-16 13-28.9 28.9-28.9'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHips = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHireAHelper.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHireAHelper.d.ts new file mode 100644 index 0000000000..34c3b4b504 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHireAHelper.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHireAHelper: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHireAHelper.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHireAHelper.js new file mode 100644 index 0000000000..a4e94e3b0c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHireAHelper.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'hire-a-helper'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f3b0'; +var svgPathData = 'M443.1 0H71.9C67.9 37.3 37.4 67.8 0 71.7v371.5c37.4 4.9 66 32.4 71.9 68.8h372.2c3-36.4 32.5-65.8 67.9-69.8V71.7c-36.4-5.9-65-35.3-68.9-71.7zm-37 404.9c-36.3 0-18.8-2-55.1-2-35.8 0-21 2-56.1 2-5.9 0-4.9-8.2 0-9.8 22.8-7.6 22.9-10.2 24.6-12.8 10.4-15.6 5.9-83 5.9-113 0-5.3-6.4-12.8-13.8-12.8H200.4c-7.4 0-13.8 7.5-13.8 12.8 0 30-4.5 97.4 5.9 113 1.7 2.5 1.8 5.2 24.6 12.8 4.9 1.6 6 9.8 0 9.8-35.1 0-20.3-2-56.1-2-36.3 0-18.8 2-55.1 2-7.9 0-5.8-10.8 0-10.8 10.2-3.4 13.5-3.5 21.7-13.8 7.7-12.9 7.9-44.4 7.9-127.8V151.3c0-22.2-12.2-28.3-28.6-32.4-8.8-2.2-4-11.8 1-11.8 36.5 0 20.6 2 57.1 2 32.7 0 16.5-2 49.2-2 3.3 0 8.5 8.3 1 10.8-4.9 1.6-27.6 3.7-27.6 39.3 0 45.6-.2 55.8 1 68.8 0 1.3 2.3 12.8 12.8 12.8h109.2c10.5 0 12.8-11.5 12.8-12.8 1.2-13 1-23.2 1-68.8 0-35.6-22.7-37.7-27.6-39.3-7.5-2.5-2.3-10.8 1-10.8 32.7 0 16.5 2 49.2 2 36.5 0 20.6-2 57.1-2 4.9 0 9.9 9.6 1 11.8-16.4 4.1-28.6 10.3-28.6 32.4v101.2c0 83.4.1 114.9 7.9 127.8 8.2 10.2 11.4 10.4 21.7 13.8 5.8 0 7.8 10.8 0 10.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHireAHelper = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHooli.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHooli.d.ts new file mode 100644 index 0000000000..9f823bcb5c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHooli.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHooli: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHooli.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHooli.js new file mode 100644 index 0000000000..2ddbdb05b6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHooli.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'hooli'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f427'; +var svgPathData = 'M508.4 352h57.9V156.7L508.4 184v168zm73.7-110.5V352H640V241.5h-57.9zm-250.7-8.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.2-1.1-50.4 17.1c-1.9 1.9-3.7 3.9-5.3 6-38.2-29.6-72.5-46.5-102.1-61.1v-20.7l-22.5 10.6c-54.4-22.1-89-18.2-97.3.1 0 0-24.9 32.8 61.9 110.9v-31c-48.8-54.6-39-76.1-35.3-79.2 13.5-11.4 37.5-8 64.4 2.1L65.2 184v63.3c13.1 14.7 30.5 31.5 53.5 50.4l4.5 3.6v-29.8c0-6.9 1.7-18.2 10.8-18.2s10.6 6.9 10.6 15V317c18 12.2 37.3 22.1 57.7 29.6v-93.9c0-18.7-13.4-37.4-40.6-37.4-15.8-.1-30.5 8.2-38.5 21.9v-54.3c41.9 20.9 83.9 46.5 99.9 58.3-10.2 14.6-9.3 28.1-9.3 43.7 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.7-33.8 16.7-52.5 0-18.5 1.5-34.2-16.7-52.3zm-39.7 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm185.7-71.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.3-1.1-50.4 17.1c-18.2 18.2-16.8 33.9-16.8 52.6 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.8-33.8 16.8-52.5-.1-18.8 1.3-34.5-16.8-52.6zm-39.8 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm173.5-73c15.9 0 28.9-12.9 28.9-28.9s-12.9-24.5-28.9-24.5c-15.9 0-28.9 8.6-28.9 24.5s12.9 28.9 28.9 28.9zM144.5 352l38.3.8c-13.2-4.6-26-10.2-38.3-16.8v16zm-21.4 0v-28.6c-6.5-4.2-13-8.7-19.4-13.6-14.8-11.2-27.5-21.7-38.5-31.5V352h57.9zm59.7.8c36.5 12.5 69.9 14.2 94.7 7.2-19.9.2-45.8-2.6-75.3-13.3v5.3l-19.4.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHooli = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHornbill.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHornbill.d.ts new file mode 100644 index 0000000000..0da91df928 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHornbill.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHornbill: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHornbill.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHornbill.js new file mode 100644 index 0000000000..77ce5c7b9b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHornbill.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'hornbill'; +var width = 509; +var height = 512; +var ligatures = []; +var unicode = 'f592'; +var svgPathData = 'M75.37 370.3c2.14 15.83-5.77 31.98-20.94 39.29-18.85 9.1-41.55 1.17-50.68-17.68-9.08-18.83-1.13-41.58 17.7-50.65 7.05-3.4 14.63-4.42 21.85-3.38-78.28-111.35 52-190.53 52-190.53-5.86 43.04-8.24 91.16-8.24 91.16-67.31 41.45.92 64.06 39.81 72.87 19.77 53.62 71.18 91.94 131.66 91.94 1.92 0 3.77-.21 5.67-.28l.11 18.86c-99.22 1.39-158.7-29.14-188.94-51.6zM183.38 42.6c.89-7-.1-14.33-3.39-21.15-9.1-18.84-31.82-26.78-50.66-17.69-18.86 9.1-26.8 31.83-17.69 50.68 6.98 14.47 22.02 22.42 37.18 21.23-22.55 29.91-53.83 89.57-52.42 190.03l21.84-.15c-.02-.9-.14-1.77-.14-2.68 0-58.95 36.37-109.33 87.85-130.16 8.01-37.75 30.74-114.3 73.84-44.29 0 0 48.14 2.38 91.18 8.24 0-.01-77.84-128.03-187.59-54.06zm304.18 134.17c18.84-9.09 26.81-31.81 17.7-50.65-9.1-18.85-31.83-26.77-50.67-17.69-15.27 7.37-23.19 23.69-20.87 39.64-31.71-21.94-89.84-49.05-183.45-47.74l.14 22.5c2.7-.15 5.39-.41 8.14-.41 59.3 0 109.9 36.8 130.49 88.76 39.1 9.02 105.06 31.58 38.46 72.54 0 0-2.34 48.13-8.21 91.16 0 0 133.45-81.16 48.96-194.61 6.43.5 13.07-.49 19.31-3.5zM373.05 436.24c21.43-32.46 46.42-89.69 45.14-179.66l-19.52.14c.08 2.06.3 4.07.3 6.15 0 60.27-38.05 111.55-91.39 131.45-8.85 38.95-31.44 106.66-72.77 39.49 0 0-48.12-2.34-91.19-8.22 0 0 79.92 131.34 191.9 50.97.31 4.72 1.45 9.45 3.64 13.97 9.06 18.89 31.8 26.78 50.64 17.71 18.86-9.1 26.79-31.83 17.7-50.65-6.56-13.62-20.26-21.43-34.45-21.35z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHornbill = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHotjar.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHotjar.d.ts new file mode 100644 index 0000000000..be9eb4b832 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHotjar.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHotjar: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHotjar.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHotjar.js new file mode 100644 index 0000000000..81a3a8a3a5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHotjar.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'hotjar'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f3b1'; +var svgPathData = 'M414.9 161.5C340.2 29 121.1 0 121.1 0S222.2 110.4 93 197.7C11.3 252.8-21 324.4 14 402.6c26.8 59.9 83.5 84.3 144.6 93.4-29.2-55.1-6.6-122.4-4.1-129.6 57.1 86.4 165 0 110.8-93.9 71 15.4 81.6 138.6 27.1 215.5 80.5-25.3 134.1-88.9 148.8-145.6 15.5-59.3 3.7-127.9-26.3-180.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHotjar = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHouzz.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHouzz.d.ts new file mode 100644 index 0000000000..2ccf2829e8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHouzz.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHouzz: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHouzz.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHouzz.js new file mode 100644 index 0000000000..929b693c1c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHouzz.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'houzz'; +var width = 414; +var height = 512; +var ligatures = []; +var unicode = 'f27c'; +var svgPathData = 'M258.9 330.7H154.3V480H0V32h109.5v104.5l305.1 85.6V480H258.9V330.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHouzz = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHtml5.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHtml5.d.ts new file mode 100644 index 0000000000..e5ed910bfa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHtml5.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHtml5: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHtml5.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHtml5.js new file mode 100644 index 0000000000..e78e6d3605 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHtml5.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'html5'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f13b'; +var svgPathData = 'M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHtml5 = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHubspot.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHubspot.d.ts new file mode 100644 index 0000000000..8c5f633698 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHubspot.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHubspot: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHubspot.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHubspot.js new file mode 100644 index 0000000000..4e6e000e4d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faHubspot.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'hubspot'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f3b2'; +var svgPathData = 'M267.4 211.6c-25.1 23.7-40.8 57.3-40.8 94.6 0 29.3 9.7 56.3 26 78L203.1 434c-4.4-1.6-9.1-2.5-14-2.5-10.8 0-20.9 4.2-28.5 11.8-7.6 7.6-11.8 17.8-11.8 28.6s4.2 20.9 11.8 28.5c7.6 7.6 17.8 11.6 28.5 11.6 10.8 0 20.9-3.9 28.6-11.6 7.6-7.6 11.8-17.8 11.8-28.5 0-4.2-.6-8.2-1.9-12.1l50-50.2c22 16.9 49.4 26.9 79.3 26.9 71.9 0 130-58.3 130-130.2 0-65.2-47.7-119.2-110.2-128.7V116c17.5-7.4 28.2-23.8 28.2-42.9 0-26.1-20.9-47.9-47-47.9S311.2 47 311.2 73.1c0 19.1 10.7 35.5 28.2 42.9v61.2c-15.2 2.1-29.6 6.7-42.7 13.6-27.6-20.9-117.5-85.7-168.9-124.8 1.2-4.4 2-9 2-13.8C129.8 23.4 106.3 0 77.4 0 48.6 0 25.2 23.4 25.2 52.2c0 28.9 23.4 52.3 52.2 52.3 9.8 0 18.9-2.9 26.8-7.6l163.2 114.7zm89.5 163.6c-38.1 0-69-30.9-69-69s30.9-69 69-69 69 30.9 69 69-30.9 69-69 69z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHubspot = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faImdb.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faImdb.d.ts new file mode 100644 index 0000000000..ec1fb54afe --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faImdb.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faImdb: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faImdb.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faImdb.js new file mode 100644 index 0000000000..6bc260dd7e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faImdb.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'imdb'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f2d8'; +var svgPathData = 'M350.5 288.7c0 5.4 1.6 14.4-6.2 14.4-1.6 0-3-.8-3.8-2.4-2.2-5.1-1.1-44.1-1.1-44.7 0-3.8-1.1-12.7 4.9-12.7 7.3 0 6.2 7.3 6.2 12.7v32.7zM265 229.9c0-9.7 1.6-16-10.3-16v83.7c12.2.3 10.3-8.7 10.3-18.4v-49.3zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM21.3 228.8c-.1.1-.2.3-.3.4h.3v-.4zM97 192H64v127.8h33V192zm113.3 0h-43.1l-7.6 59.9c-2.7-20-5.4-40.1-8.7-59.9h-42.8v127.8h29v-84.5l12.2 84.5h20.6l11.6-86.4v86.4h28.7V192zm86.3 45.3c0-8.1.3-16.8-1.4-24.4-4.3-22.5-31.4-20.9-49-20.9h-24.6v127.8c86.1.1 75 6 75-82.5zm85.9 17.3c0-17.3-.8-30.1-22.2-30.1-8.9 0-14.9 2.7-20.9 9.2V192h-31.7v127.8h29.8l1.9-8.1c5.7 6.8 11.9 9.8 20.9 9.8 19.8 0 22.2-15.2 22.2-30.9v-36z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faImdb = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faInstagram.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faInstagram.d.ts new file mode 100644 index 0000000000..1353ed3e6f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faInstagram.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faInstagram: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faInstagram.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faInstagram.js new file mode 100644 index 0000000000..dfc0876b91 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faInstagram.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'instagram'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f16d'; +var svgPathData = 'M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faInstagram = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faInternetExplorer.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faInternetExplorer.d.ts new file mode 100644 index 0000000000..f762a4e443 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faInternetExplorer.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faInternetExplorer: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faInternetExplorer.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faInternetExplorer.js new file mode 100644 index 0000000000..091f1aa113 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faInternetExplorer.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'internet-explorer'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f26b'; +var svgPathData = 'M483.049 159.706c10.855-24.575 21.424-60.438 21.424-87.871 0-72.722-79.641-98.371-209.673-38.577-107.632-7.181-211.221 73.67-237.098 186.457 30.852-34.862 78.271-82.298 121.977-101.158C125.404 166.85 79.128 228.002 43.992 291.725 23.246 329.651 0 390.94 0 436.747c0 98.575 92.854 86.5 180.251 42.006 31.423 15.43 66.559 15.573 101.695 15.573 97.124 0 184.249-54.294 216.814-146.022H377.927c-52.509 88.593-196.819 52.996-196.819-47.436H509.9c6.407-43.581-1.655-95.715-26.851-141.162zM64.559 346.877c17.711 51.15 53.703 95.871 100.266 123.304-88.741 48.94-173.267 29.096-100.266-123.304zm115.977-108.873c2-55.151 50.276-94.871 103.98-94.871 53.418 0 101.981 39.72 103.981 94.871H180.536zm184.536-187.6c21.425-10.287 48.563-22.003 72.558-22.003 31.422 0 54.274 21.717 54.274 53.722 0 20.003-7.427 49.007-14.569 67.867-26.28-42.292-65.986-81.584-112.263-99.586z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faInternetExplorer = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faIoxhost.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faIoxhost.d.ts new file mode 100644 index 0000000000..b4c6d6e547 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faIoxhost.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faIoxhost: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faIoxhost.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faIoxhost.js new file mode 100644 index 0000000000..f539843823 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faIoxhost.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'ioxhost'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f208'; +var svgPathData = 'M616 160h-67.3C511.2 70.7 422.9 8 320 8 183 8 72 119 72 256c0 16.4 1.6 32.5 4.7 48H24c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h67.3c37.5 89.3 125.8 152 228.7 152 137 0 248-111 248-248 0-16.4-1.6-32.5-4.7-48H616c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24zm-96 96c0 110.5-89.5 200-200 200-75.7 0-141.6-42-175.5-104H424c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24H125.8c-3.8-15.4-5.8-31.4-5.8-48 0-110.5 89.5-200 200-200 75.7 0 141.6 42 175.5 104H216c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h298.2c3.8 15.4 5.8 31.4 5.8 48zm-304-24h208c13.3 0 24 10.7 24 24 0 13.2-10.7 24-24 24H216c-13.3 0-24-10.7-24-24 0-13.2 10.7-24 24-24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faIoxhost = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faItunes.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faItunes.d.ts new file mode 100644 index 0000000000..d1598e1f2a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faItunes.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faItunes: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faItunes.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faItunes.js new file mode 100644 index 0000000000..190a88c07f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faItunes.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'itunes'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f3b4'; +var svgPathData = 'M223.6 80.3C129 80.3 52.5 157 52.5 251.5S129 422.8 223.6 422.8s171.2-76.7 171.2-171.2c0-94.6-76.7-171.3-171.2-171.3zm79.4 240c-3.2 13.6-13.5 21.2-27.3 23.8-12.1 2.2-22.2 2.8-31.9-5-11.8-10-12-26.4-1.4-36.8 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 3.2-3.6 2.2-2 2.2-80.8 0-5.6-2.7-7.1-8.4-6.1-4 .7-91.9 17.1-91.9 17.1-5 1.1-6.7 2.6-6.7 8.3 0 116.1.5 110.8-1.2 118.5-2.1 9-7.6 15.8-14.9 19.6-8.3 4.6-23.4 6.6-31.4 5.2-21.4-4-28.9-28.7-14.4-42.9 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 5-5.7.9-127 2.6-133.7.4-2.6 1.5-4.8 3.5-6.4 2.1-1.7 5.8-2.7 6.7-2.7 101-19 113.3-21.4 115.1-21.4 5.7-.4 9 3 9 8.7-.1 170.6.4 161.4-1 167.6zM345.2 32H102.8C45.9 32 0 77.9 0 134.8v242.4C0 434.1 45.9 480 102.8 480h242.4c57 0 102.8-45.9 102.8-102.8V134.8C448 77.9 402.1 32 345.2 32zM223.6 444c-106.3 0-192.5-86.2-192.5-192.5S117.3 59 223.6 59s192.5 86.2 192.5 192.5S329.9 444 223.6 444z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faItunes = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faItunesNote.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faItunesNote.d.ts new file mode 100644 index 0000000000..e43c7d7f2e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faItunesNote.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faItunesNote: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faItunesNote.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faItunesNote.js new file mode 100644 index 0000000000..0f2ec07e92 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faItunesNote.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'itunes-note'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f3b5'; +var svgPathData = 'M381.9 388.2c-6.4 27.4-27.2 42.8-55.1 48-24.5 4.5-44.9 5.6-64.5-10.2-23.9-20.1-24.2-53.4-2.7-74.4 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 6.4-7.2 4.4-4.1 4.4-163.2 0-11.2-5.5-14.3-17-12.3-8.2 1.4-185.7 34.6-185.7 34.6-10.2 2.2-13.4 5.2-13.4 16.7 0 234.7 1.1 223.9-2.5 239.5-4.2 18.2-15.4 31.9-30.2 39.5-16.8 9.3-47.2 13.4-63.4 10.4-43.2-8.1-58.4-58-29.1-86.6 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 10.1-11.5 1.8-256.6 5.2-270.2.8-5.2 3-9.6 7.1-12.9 4.2-3.5 11.8-5.5 13.4-5.5 204-38.2 228.9-43.1 232.4-43.1 11.5-.8 18.1 6 18.1 17.6.2 344.5 1.1 326-1.8 338.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faItunesNote = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJava.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJava.d.ts new file mode 100644 index 0000000000..df2e929983 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJava.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faJava: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJava.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJava.js new file mode 100644 index 0000000000..aedd563316 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJava.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'java'; +var width = 377; +var height = 512; +var ligatures = []; +var unicode = 'f4e4'; +var svgPathData = 'M121.6 396s-19.6 11.4 13.9 15.2c40.6 4.6 61.3 4 106-4.5 0 0 11.8 7.4 28.2 13.8C169.5 463.4 42.9 418 121.6 396m-12.2-56.1s-21.9 16.2 11.6 19.7c43.3 4.5 77.6 4.8 136.8-6.6 0 0 8.2 8.3 21.1 12.8-121.3 35.5-256.3 2.9-169.5-25.9m103.2-95.1c24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3.1 0-175.2 43.8-91.5 140.2m132.6 192.6s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6.7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2 204.2 33.2 372.4-14.9 319.4-38.8M131 281.8s-93.1 22.1-33 30.1c25.4 3.4 76 2.6 123.1-1.3 38.5-3.2 77.2-10.2 77.2-10.2s-13.6 5.8-23.4 12.5c-94.5 24.9-277 13.3-224.5-12.1 44.5-21.4 80.6-19 80.6-19m167 93.3c96.1-49.9 51.6-97.9 20.6-91.4-7.6 1.6-11 3-11 3s2.8-4.4 8.2-6.3c61.3-21.6 108.5 63.6-19.8 97.3 0-.1 1.5-1.4 2-2.6M240 0s53.2 53.2-50.5 135c-83.1 65.6-19 103.1 0 145.8-48.5-43.8-84.1-82.3-60.2-118.2C164.4 110.1 261.5 84.5 240 0m-99.5 510.4c92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faJava = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJediOrder.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJediOrder.d.ts new file mode 100644 index 0000000000..4a683cf6c5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJediOrder.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faJediOrder: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJediOrder.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJediOrder.js new file mode 100644 index 0000000000..d630633fd3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJediOrder.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'jedi-order'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f50e'; +var svgPathData = 'M231.89 335.72l31.44-45.89-20.18 55.5 62.56 9.09-62.56 9.08 24.22 47.43s-30.22-31.77-34.49-36.25c1.76 68.78 2.19 85.7 2.19 85.7s154.4-71.65 68.62-230.09c0 0 106.97-118.07 10.09-190.73 0 0 165.5 99.91 60.55 271.46 0 0 86.78-84.77 41.37-170.54 0 0 78.71 111.01-17.16 233.11 0 0 26.24-16.15 49.45-77.71 0 0-16.93 183.26-221.96 185.66v.02h-4.08v-.02C16.93 479.14 0 295.88 0 295.88c23.21 61.56 49.44 77.71 49.44 77.71-95.87-122.11-17.15-233.11-17.15-233.11-45.41 85.78 41.38 170.54 41.38 170.54-104.95-171.56 60.54-271.46 60.54-271.46-96.88 72.66 10.09 190.73 10.09 190.73-85.78 158.44 68.62 230.09 68.62 230.09s.43-16.93 2.19-85.7l-34.48 36.25 24.22-47.43-62.56-9.08 62.56-9.09-20.18-55.5 31.44 45.89c2.25-87.85 7.82-305.82 7.85-306.85l.01-2.43.02 1 .03-1 .01 2.43c.05 1.72 5.61 219.2 7.86 306.85z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faJediOrder = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJenkins.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJenkins.d.ts new file mode 100644 index 0000000000..11c57b8928 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJenkins.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faJenkins: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJenkins.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJenkins.js new file mode 100644 index 0000000000..e6efb28db2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJenkins.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'jenkins'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f3b6'; +var svgPathData = 'M487.1 425c-1.4-11.2-19-23.1-28.2-31.9-5.1-5-29-23.1-30.4-29.9-1.4-6.6 9.7-21.5 13.3-28.9 5.1-10.7 8.8-23.7 11.3-32.6 18.8-66.1 20.7-156.9-6.2-211.2-10.2-20.6-38.6-49-56.4-62.5-42-31.7-119.6-35.3-170.1-16.6-14.1 5.2-27.8 9.8-40.1 17.1-33.1 19.4-68.3 32.5-78.1 71.6-24.2 10.8-31.5 41.8-30.3 77.8.2 7 4.1 15.8 2.7 22.4-.7 3.3-5.2 7.6-6.1 9.8-11.6 27.7-2.3 64 11.1 83.7 8.1 11.9 21.5 22.4 39.2 25.2.7 10.6 3.3 19.7 8.2 30.4 3.1 6.8 14.7 19 10.4 27.7-2.2 4.4-21 13.8-27.3 17.6C89 407.2 73.7 415 54.2 429c-12.6 9-32.3 10.2-29.2 31.1 2.1 14.1 10.1 31.6 14.7 45.8.7 2 1.4 4.1 2.1 6h422c4.9-15.3 9.7-30.9 14.6-47.2 3.4-11.4 10.2-27.8 8.7-39.7zM205.9 33.7c1.8-.5 3.4.7 4.9 2.4-.2 5.2-5.4 5.1-8.9 6.8-5.4 6.7-13.4 9.8-20 17.2-6.8 7.5-14.4 27.7-23.4 30-4.5 1.1-9.7-.8-13.6-.5-10.4.7-17.7 6-28.3 7.5 13.6-29.9 56.1-54 89.3-63.4zm-104.8 93.6c13.5-14.9 32.1-24.1 54.8-25.9 11.7 29.7-8.4 65-.9 97.6 2.3 9.9 10.2 25.4-2.4 25.7.3-28.3-34.8-46.3-61.3-29.6-1.8-21.5-4.9-51.7 9.8-67.8zm36.7 200.2c-1-4.1-2.7-12.9-2.3-15.1 1.6-8.7 17.1-12.5 11-24.7-11.3-.1-13.8 10.2-24.1 11.3-26.7 2.6-45.6-35.4-44.4-58.4 1-19.5 17.6-38.2 40.1-35.8 16 1.8 21.4 19.2 24.5 34.7 9.2.5 22.5-.4 26.9-7.6-.6-17.5-8.8-31.6-8.2-47.7 1-30.3 17.5-57.6 4.8-87.4 13.6-30.9 53.5-55.3 83.1-70 36.6-18.3 94.9-3.7 129.3 15.8 19.7 11.1 34.4 32.7 48.3 50.7-19.5-5.8-36.1 4.2-33.1 20.3 16.3-14.9 44.2-.2 52.5 16.4 7.9 15.8 7.8 39.3 9 62.8 2.9 57-10.4 115.9-39.1 157.1-7.7 11-14.1 23-24.9 30.6-26 18.2-65.4 34.7-99.2 23.4-44.7-15-65-44.8-89.5-78.8.7 18.7 13.8 34.1 26.8 48.4 11.3 12.5 25 26.6 39.7 32.4-12.3-2.9-31.1-3.8-36.2 7.2-28.6-1.9-55.1-4.8-68.7-24.2-10.6-15.4-21.4-41.4-26.3-61.4zm222 124.1c4.1-3 11.1-2.9 17.4-3.6-5.4-2.7-13-3.7-19.3-2.2-.1-4.2-2-6.8-3.2-10.2 10.6-3.8 35.5-28.5 49.6-20.3 6.7 3.9 9.5 26.2 10.1 37 .4 9-.8 18-4.5 22.8-18.8-.6-35.8-2.8-50.7-7 .9-6.1-1-12.1.6-16.5zm-17.2-20c-16.8.8-26-1.2-38.3-10.8.2-.8 1.4-.5 1.5-1.4 18 8 40.8-3.3 59-4.9-7.9 5.1-14.6 11.6-22.2 17.1zm-12.1 33.2c-1.6-9.4-3.5-12-2.8-20.2 25-16.6 29.7 28.6 2.8 20.2zM226 438.6c-11.6-.7-48.1-14-38.5-23.7 9.4 6.5 27.5 4.9 41.3 7.3.8 4.4-2.8 10.2-2.8 16.4zM57.7 497.1c-4.3-12.7-9.2-25.1-14.8-36.9 30.8-23.8 65.3-48.9 102.2-63.5 2.8-1.1 23.2 25.4 26.2 27.6 16.5 11.7 37 21 56.2 30.2 1.2 8.8 3.9 20.2 8.7 35.5.7 2.3 1.4 4.7 2.2 7.2H57.7zm240.6 5.7h-.8c.3-.2.5-.4.8-.5v.5zm7.5-5.7c2.1-1.4 4.3-2.8 6.4-4.3 1.1 1.4 2.2 2.8 3.2 4.3h-9.6zm15.1-24.7c-10.8 7.3-20.6 18.3-33.3 25.2-6 3.3-27 11.7-33.4 10.2-3.6-.8-3.9-5.3-5.4-9.5-3.1-9-10.1-23.4-10.8-37-.8-17.2-2.5-46 16-42.4 14.9 2.9 32.3 9.7 43.9 16.1 7.1 3.9 11.1 8.6 21.9 9.5-.1 1.4-.1 2.8-.2 4.3-5.9 3.9-15.3 3.8-21.8 7.1 9.5.4 17 2.7 23.5 5.9-.1 3.4-.3 7-.4 10.6zm53.4 24.7h-14c-.1-3.2-2.8-5.8-6.1-5.8s-5.9 2.6-6.1 5.8h-17.4c-2.8-4.4-5.7-8.6-8.9-12.5 2.1-2.2 4-4.7 6-6.9 9 3.7 14.8-4.9 21.7-4.2 7.9.8 14.2 11.7 25.4 11l-.6 12.6zm8.7 0c.2-4 .4-7.8.6-11.5 15.6-7.3 29 1.3 35.7 11.5H383zm83.4-37c-2.3 11.2-5.8 24-9.9 37.1-.2-.1-.4-.1-.6-.1H428c.6-1.1 1.2-2.2 1.9-3.3-2.6-6.1-9-8.7-10.9-15.5 12.1-22.7 6.5-93.4-24.2-78.5 4.3-6.3 15.6-11.5 20.8-19.3 13 10.4 20.8 20.3 33.2 31.4 6.8 6 20 13.3 21.4 23.1.8 5.5-2.6 18.9-3.8 25.1zM222.2 130.5c5.4-14.9 27.2-34.7 45-32 7.7 1.2 18 8.2 12.2 17.7-30.2-7-45.2 12.6-54.4 33.1-8.1-2-4.9-13.1-2.8-18.8zm184.1 63.1c8.2-3.6 22.4-.7 29.6-5.3-4.2-11.5-10.3-21.4-9.3-37.7.5 0 1 0 1.4.1 6.8 14.2 12.7 29.2 21.4 41.7-5.7 13.5-43.6 25.4-43.1 1.2zm20.4-43zm-117.2 45.7c-6.8-10.9-19-32.5-14.5-45.3 6.5 11.9 8.6 24.4 17.8 33.3 4.1 4 12.2 9 8.2 20.2-.9 2.7-7.8 8.6-11.7 9.7-14.4 4.3-47.9.9-36.6-17.1 11.9.7 27.9 7.8 36.8-.8zm27.3 70c3.8 6.6 1.4 18.7 12.1 20.6 20.2 3.4 43.6-12.3 58.1-17.8 9-15.2-.8-20.7-8.9-30.5-16.6-20-38.8-44.8-38-74.7 6.7-4.9 7.3 7.4 8.2 9.7 8.7 20.3 30.4 46.2 46.3 63.5 3.9 4.3 10.3 8.4 11 11.2 2.1 8.2-5.4 18-4.5 23.5-21.7 13.9-45.8 29.1-81.4 25.6-7.4-6.7-10.3-21.4-2.9-31.1zm-201.3-9.2c-6.8-3.9-8.4-21-16.4-21.4-11.4-.7-9.3 22.2-9.3 35.5-7.8-7.1-9.2-29.1-3.5-40.3-6.6-3.2-9.5 3.6-13.1 5.9 4.7-34.1 49.8-15.8 42.3 20.3zm299.6 28.8c-10.1 19.2-24.4 40.4-54 41-.6-6.2-1.1-15.6 0-19.4 22.7-2.2 36.6-13.7 54-21.6zm-141.9 12.4c18.9 9.9 53.6 11 79.3 10.2 1.4 5.6 1.3 12.6 1.4 19.4-33 1.8-72-6.4-80.7-29.6zm92.2 46.7c-1.7 4.3-5.3 9.3-9.8 11.1-12.1 4.9-45.6 8.7-62.4-.3-10.7-5.7-17.5-18.5-23.4-26-2.8-3.6-16.9-12.9-.2-12.9 13.1 32.7 58 29 95.8 28.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faJenkins = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJoget.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJoget.d.ts new file mode 100644 index 0000000000..0417364c25 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJoget.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faJoget: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJoget.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJoget.js new file mode 100644 index 0000000000..9cf6fcf883 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJoget.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'joget'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f3b7'; +var svgPathData = 'M227.5 468.7c-9-13.6-19.9-33.3-23.7-42.4-5.7-13.7-27.2-45.6 31.2-67.1 51.7-19.1 176.7-16.5 208.8-17.6-4 9-8.6 17.9-13.9 26.6-40.4 65.5-110.4 101.5-182 101.5-6.8 0-13.6-.4-20.4-1M66.1 143.9C128 43.4 259.6 12.2 360.1 74.1c74.8 46.1 111.2 130.9 99.3 212.7-24.9-.5-179.3-3.6-230.3-4.9-55.5-1.4-81.7-20.8-58.5-48.2 23.2-27.4 51.1-40.7 68.9-51.2 17.9-10.5 27.3-33.7-23.6-29.7C87.3 161.5 48.6 252.1 37.6 293c-8.8-49.7-.1-102.7 28.5-149.1m-29.2-18c-71.9 116.6-35.6 269.3 81 341.2 116.6 71.9 269.3 35.6 341.2-80.9 71.9-116.6 35.6-269.4-81-341.2-40.5-25.1-85.5-37-129.9-37C165 8 83.8 49.9 36.9 125.9m244.4 110.4c-31.5 20.5-65.3 31.3-65.3 31.3l169.5-1.6 46.5-23.4s3.6-9.5-19.1-15.5c-22.7-6-57 11.3-86.7 27.2-29.7 15.8-31.1 8.2-31.1 8.2s40.2-28.1 50.7-34.5c10.5-6.4 31.9-14 13.4-24.6-3.2-1.8-6.7-2.7-10.4-2.7-17.8 0-41.5 18.7-67.5 35.6'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faJoget = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJoomla.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJoomla.d.ts new file mode 100644 index 0000000000..3ab6e69647 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJoomla.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faJoomla: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJoomla.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJoomla.js new file mode 100644 index 0000000000..056dbf7a58 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJoomla.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'joomla'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f1aa'; +var svgPathData = 'M.6 92.1C.6 58.8 27.4 32 60.4 32c30 0 54.5 21.9 59.2 50.2 32.6-7.6 67.1.6 96.5 30l-44.3 44.3c-20.5-20.5-42.6-16.3-55.4-3.5-14.3 14.3-14.3 37.9 0 52.2l99.5 99.5-44 44.3c-87.7-87.2-49.7-49.7-99.8-99.7-26.8-26.5-35-64.8-24.8-98.9C20.4 144.6.6 120.7.6 92.1zm129.5 116.4l44.3 44.3c10-10 89.7-89.7 99.7-99.8 14.3-14.3 37.6-14.3 51.9 0 12.8 12.8 17 35-3.5 55.4l44 44.3c31.2-31.2 38.5-67.6 28.9-101.2 29.2-4.1 51.9-29.2 51.9-59.5 0-33.2-26.8-60.1-59.8-60.1-30.3 0-55.4 22.5-59.5 51.6-33.8-9.9-71.7-1.5-98.3 25.1-18.3 19.1-71.1 71.5-99.6 99.9zm266.3 152.2c8.2-32.7-.9-68.5-26.3-93.9-11.8-12.2 5 4.7-99.5-99.7l-44.3 44.3 99.7 99.7c14.3 14.3 14.3 37.6 0 51.9-12.8 12.8-35 17-55.4-3.5l-44 44.3c27.6 30.2 68 38.8 102.7 28 5.5 27.4 29.7 48.1 58.9 48.1 33 0 59.8-26.8 59.8-60.1 0-30.2-22.5-55-51.6-59.1zm-84.3-53.1l-44-44.3c-87 86.4-50.4 50.4-99.7 99.8-14.3 14.3-37.6 14.3-51.9 0-13.1-13.4-16.9-35.3 3.2-55.4l-44-44.3c-30.2 30.2-38 65.2-29.5 98.3-26.7 6-46.2 29.9-46.2 58.2C0 453.2 26.8 480 59.8 480c28.6 0 52.5-19.8 58.6-46.7 32.7 8.2 68.5-.6 94.2-26 32.1-32 12.2-12.4 99.5-99.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faJoomla = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJs.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJs.d.ts new file mode 100644 index 0000000000..3b810fbc55 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJs.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faJs: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJs.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJs.js new file mode 100644 index 0000000000..1dd4a7f55d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJs.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'js'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f3b8'; +var svgPathData = 'M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faJs = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJsSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJsSquare.d.ts new file mode 100644 index 0000000000..206ff8edd3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJsSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faJsSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJsSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJsSquare.js new file mode 100644 index 0000000000..0d97b2c541 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJsSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'js-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f3b9'; +var svgPathData = 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM243.8 381.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faJsSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJsfiddle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJsfiddle.d.ts new file mode 100644 index 0000000000..7e877bbfe9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJsfiddle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faJsfiddle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJsfiddle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJsfiddle.js new file mode 100644 index 0000000000..beea2b1392 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faJsfiddle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'jsfiddle'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f1cc'; +var svgPathData = 'M510.634 237.462c-4.727-2.621-5.664-5.748-6.381-10.776-2.352-16.488-3.539-33.619-9.097-49.095-35.895-99.957-153.99-143.386-246.849-91.646-27.37 15.25-48.971 36.369-65.493 63.903-3.184-1.508-5.458-2.71-7.824-3.686-30.102-12.421-59.049-10.121-85.331 9.167-25.531 18.737-36.422 44.548-32.676 76.408.355 3.025-1.967 7.621-4.514 9.545-39.712 29.992-56.031 78.065-41.902 124.615 13.831 45.569 57.514 79.796 105.608 81.433 30.291 1.031 60.637.546 90.959.539 84.041-.021 168.09.531 252.12-.48 52.664-.634 96.108-36.873 108.212-87.293 11.54-48.074-11.144-97.3-56.832-122.634zm21.107 156.88c-18.23 22.432-42.343 35.253-71.28 35.65-56.874.781-113.767.23-170.652.23 0 .7-163.028.159-163.728.154-43.861-.332-76.739-19.766-95.175-59.995-18.902-41.245-4.004-90.848 34.186-116.106 9.182-6.073 12.505-11.566 10.096-23.136-5.49-26.361 4.453-47.956 26.42-62.981 22.987-15.723 47.422-16.146 72.034-3.083 10.269 5.45 14.607 11.564 22.198-2.527 14.222-26.399 34.557-46.727 60.671-61.294 97.46-54.366 228.37 7.568 230.24 132.697.122 8.15 2.412 12.428 9.848 15.894 57.56 26.829 74.456 96.122 35.142 144.497zm-87.789-80.499c-5.848 31.157-34.622 55.096-66.666 55.095-16.953-.001-32.058-6.545-44.079-17.705-27.697-25.713-71.141-74.98-95.937-93.387-20.056-14.888-41.99-12.333-60.272 3.782-49.996 44.071 15.859 121.775 67.063 77.188 4.548-3.96 7.84-9.543 12.744-12.844 8.184-5.509 20.766-.884 13.168 10.622-17.358 26.284-49.33 38.197-78.863 29.301-28.897-8.704-48.84-35.968-48.626-70.179 1.225-22.485 12.364-43.06 35.414-55.965 22.575-12.638 46.369-13.146 66.991 2.474C295.68 280.7 320.467 323.97 352.185 343.47c24.558 15.099 54.254 7.363 68.823-17.506 28.83-49.209-34.592-105.016-78.868-63.46-3.989 3.744-6.917 8.932-11.41 11.72-10.975 6.811-17.333-4.113-12.809-10.353 20.703-28.554 50.464-40.44 83.271-28.214 31.429 11.714 49.108 44.366 42.76 78.186z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faJsfiddle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKeybase.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKeybase.d.ts new file mode 100644 index 0000000000..4375b7a68e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKeybase.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faKeybase: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKeybase.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKeybase.js new file mode 100644 index 0000000000..4d68f95b42 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKeybase.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'keybase'; +var width = 412; +var height = 512; +var ligatures = []; +var unicode = 'f4f5'; +var svgPathData = 'M177.2 430.9c0 9.8-8 17.8-17.8 17.8s-17.8-8-17.8-17.8 8-17.8 17.8-17.8c9.8-.1 17.8 7.9 17.8 17.8zM270 413c-9.8 0-17.8 8-17.8 17.8s8 17.8 17.8 17.8 17.8-8 17.8-17.8-8-17.8-17.8-17.8zm142.3-36c0 38.9-7.6 73.9-22.2 103h-27.3c23.5-38.7 30.5-94.8 22.4-134.3-16.1 29.5-52.1 38.6-85.9 28.8-127.8-37.5-192.5 19.7-234.6 50.3l18.9-59.3-39.9 42.3c4.8 26.7 15.7 51.3 31.2 72.3H46.1c-9.7-15.8-17.2-33-22.2-51.3L.1 454c0-74.9-5.5-147.6 61.5-215.2 20.2-20.4 43.7-36.2 69.1-46.7-6.8-13.5-9.5-29.2-7.8-46l-19.9-1.2c-17.9-1.1-31.6-16.5-30.6-34.4v-.1L74 84.2c1.1-17.1 15.4-30.6 32.5-30.6 1.3 0-.3-.1 28.2 1.7 13.9.8 21.5 9.8 22.8 11.4 7.1-10.4 14.5-20.5 24.6-34.5l20.6 12.1c-13.6 29-9.1 36.2-9 36.3 3.9 0 13.9-.5 32.4 5.7C246 92.9 262 107 271 126c.4.9 15.5 29 1.2 62.6 19 6.1 51.3 19.9 82.4 51.8 36.6 37.6 57.7 87.4 57.7 136.6zM128 122.3c3.2-10 7.7-19.7 13.1-29.4.1-2 2.2-13.1-7.8-13.8-28.5-1.8-26.3-1.6-26.7-1.6-4.6 0-8.3 3.5-8.6 8.1l-1.6 26.2c-.3 4.7 3.4 8.8 8.1 9.1l23.5 1.4zm25.8 61.8c5.6 9.4 14.1 16.1 22.3 20 0-21.2 28.5-41.9 52.8-17.5l8.4 10.3c20.8-18.8 19.4-45.3 12.1-60.9-13.8-29.1-46.9-32-54.3-31.7-10.3.4-19.7-5.4-23.7-15.3-13.7 21.2-37.2 62.5-17.6 95.1zm82.9 68.4L217 268.6c-1.9 1.6-2.2 4.4-.6 6.3l8.9 10.9c1 1.2 3.8 2.7 6.3.6l19.6-16 5.5 6.8c4.9 6 13.8-1.4 9-7.3-63.6-78.3-41.5-51.1-55.3-68.1-4.7-6-13.9 1.4-9 7.3 1.9 2.3 18.4 22.6 19.8 24.3l-9.6 7.9c-4.6 3.8 2.6 13.3 7.4 9.4l9.7-8 8 9.8zm118.4 25.7c-16.9-23.7-42.6-46.7-73.4-60.4-7.9-3.5-15-6.1-22.9-8.6-2 2.2-4.1 4.3-6.4 6.2l31.9 39.2c10.4 12.7 8.5 31.5-4.2 41.9-1.3 1.1-13.1 10.7-29 4.9-2.9 2.3-10.1 9.9-22.2 9.9-8.6 0-16.6-3.8-22.1-10.5l-8.9-10.9c-6.3-7.8-7.9-17.9-5-26.8-8.2-9.9-8.3-21.3-4.6-30-7.2-1.3-26.7-6.2-42.7-21.4-55.8 20.7-88 64.4-101.3 91.2-14.9 30.2-18.8 60.9-19.9 90.2 8.2-8.7-3.9 4.1 114-120.9l-29.9 93.6c57.8-31.1 124-36 197.4-14.4 23.6 6.9 45.1 1.6 56-13.9 11.1-15.6 8.5-37.7-6.8-59.3zM110.6 107.3l15.6 1 1-15.6-15.6-1-1 15.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faKeybase = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKeycdn.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKeycdn.d.ts new file mode 100644 index 0000000000..c63052cbb9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKeycdn.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faKeycdn: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKeycdn.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKeycdn.js new file mode 100644 index 0000000000..037b8ae5f9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKeycdn.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'keycdn'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f3ba'; +var svgPathData = 'M63.8 409.3l60.5-59c32.1 42.8 71.1 66 126.6 67.4 30.5.7 60.3-7 86.4-22.4 5.1 5.3 18.5 19.5 20.9 22-32.2 20.7-69.6 31.1-108.1 30.2-43.3-1.1-84.6-16.7-117.7-44.4.3-.6-38.2 37.5-38.6 37.9 9.5 29.8-13.1 62.4-46.3 62.4C20.7 503.3 0 481.7 0 454.9c0-34.3 33.1-56.6 63.8-45.6zm354.9-252.4c19.1 31.3 29.6 67.4 28.7 104-1.1 44.8-19 87.5-48.6 121 .3.3 23.8 25.2 24.1 25.5 9.6-1.3 19.2 2 25.9 9.1 11.3 12 10.9 30.9-1.1 42.4-12 11.3-30.9 10.9-42.4-1.1-6.7-7-9.4-16.8-7.6-26.3-24.9-26.6-44.4-47.2-44.4-47.2 42.7-34.1 63.3-79.6 64.4-124.2.7-28.9-7.2-57.2-21.1-82.2l22.1-21zM104 53.1c6.7 7 9.4 16.8 7.6 26.3l45.9 48.1c-4.7 3.8-13.3 10.4-22.8 21.3-25.4 28.5-39.6 64.8-40.7 102.9-.7 28.9 6.1 57.2 20 82.4l-22 21.5C72.7 324 63.1 287.9 64.2 250.9c1-44.6 18.3-87.6 47.5-121.1l-25.3-26.4c-9.6 1.3-19.2-2-25.9-9.1-11.3-12-10.9-30.9 1.1-42.4C73.5 40.7 92.2 41 104 53.1zM464.9 8c26 0 47.1 22.4 47.1 48.3S490.9 104 464.9 104c-6.3.1-14-1.1-15.9-1.8l-62.9 59.7c-32.7-43.6-76.7-65.9-126.9-67.2-30.5-.7-60.3 6.8-86.2 22.4l-21.1-22C184.1 74.3 221.5 64 260 64.9c43.3 1.1 84.6 16.7 117.7 44.6l41.1-38.6c-1.5-4.7-2.2-9.6-2.2-14.5C416.5 29.7 438.9 8 464.9 8zM256.7 113.4c5.5 0 10.9.4 16.4 1.1 78.1 9.8 133.4 81.1 123.8 159.1-9.8 78.1-81.1 133.4-159.1 123.8-78.1-9.8-133.4-81.1-123.8-159.2 9.3-72.4 70.1-124.6 142.7-124.8zm-59 119.4c.6 22.7 12.2 41.8 32.4 52.2l-11 51.7h73.7l-11-51.7c20.1-10.9 32.1-29 32.4-52.2-.4-32.8-25.8-57.5-58.3-58.3-32.1.8-57.3 24.8-58.2 58.3zM256 160'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faKeycdn = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKickstarter.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKickstarter.d.ts new file mode 100644 index 0000000000..bcef31979d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKickstarter.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faKickstarter: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKickstarter.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKickstarter.js new file mode 100644 index 0000000000..4f59161990 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKickstarter.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'kickstarter'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f3bb'; +var svgPathData = 'M400 480H48c-26.4 0-48-21.6-48-48V80c0-26.4 21.6-48 48-48h352c26.4 0 48 21.6 48 48v352c0 26.4-21.6 48-48 48zM199.6 178.5c0-30.7-17.6-45.1-39.7-45.1-25.8 0-40 19.8-40 44.5v154.8c0 25.8 13.7 45.6 40.5 45.6 21.5 0 39.2-14 39.2-45.6v-41.8l60.6 75.7c12.3 14.9 39 16.8 55.8 0 14.6-15.1 14.8-36.8 4-50.4l-49.1-62.8 40.5-58.7c9.4-13.5 9.5-34.5-5.6-49.1-16.4-15.9-44.6-17.3-61.4 7l-44.8 64.7v-38.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faKickstarter = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKickstarterK.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKickstarterK.d.ts new file mode 100644 index 0000000000..74351fbc12 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKickstarterK.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faKickstarterK: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKickstarterK.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKickstarterK.js new file mode 100644 index 0000000000..4c8ca52bb0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKickstarterK.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'kickstarter-k'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f3bc'; +var svgPathData = 'M147.3 114.4c0-56.2-32.5-82.4-73.4-82.4C26.2 32 0 68.2 0 113.4v283c0 47.3 25.3 83.4 74.9 83.4 39.8 0 72.4-25.6 72.4-83.4v-76.5l112.1 138.3c22.7 27.2 72.1 30.7 103.2 0 27-27.6 27.3-67.4 7.4-92.2l-90.8-114.8 74.9-107.4c17.4-24.7 17.5-63.1-10.4-89.8-30.3-29-82.4-31.6-113.6 12.8L147.3 185v-70.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faKickstarterK = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKorvue.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKorvue.d.ts new file mode 100644 index 0000000000..e7a4591706 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKorvue.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faKorvue: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKorvue.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKorvue.js new file mode 100644 index 0000000000..7edbe99bb5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faKorvue.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'korvue'; +var width = 446; +var height = 512; +var ligatures = []; +var unicode = 'f42f'; +var svgPathData = 'M386.5 34h-327C26.8 34 0 60.8 0 93.5v327.1C0 453.2 26.8 480 59.5 480h327.1c33 0 59.5-26.8 59.5-59.5v-327C446 60.8 419.2 34 386.5 34zM87.1 120.8h96v116l61.8-116h110.9l-81.2 132H87.1v-132zm161.8 272.1l-65.7-113.6v113.6h-96V262.1h191.5l88.6 130.8H248.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faKorvue = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLaravel.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLaravel.d.ts new file mode 100644 index 0000000000..69c156b576 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLaravel.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLaravel: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLaravel.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLaravel.js new file mode 100644 index 0000000000..38367ce141 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLaravel.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'laravel'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f3bd'; +var svgPathData = 'M637.5 241.6c-4.2-4.8-62.8-78.1-73.1-90.5-10.3-12.4-15.4-10.2-21.7-9.3-6.4.9-80.5 13.4-89.1 14.8-8.6 1.5-14 4.9-8.7 12.3 4.7 6.6 53.4 75.7 64.2 90.9l-193.7 46.4L161.2 48.7c-6.1-9.1-7.4-12.3-21.4-11.6-14 .6-120.9 9.5-128.5 10.2-7.6.6-16 4-8.4 22s129 279.6 132.4 287.2c3.4 7.6 12.2 20 32.8 15 21.1-5.1 94.3-24.2 134.3-34.7 21.1 38.3 64.2 115.9 72.2 127 10.6 14.9 18 12.4 34.3 7.4 12.8-3.9 199.6-71.1 208-74.5 8.4-3.5 13.6-5.9 7.9-14.4-4.2-6.2-53.5-72.2-79.3-106.8 17.7-4.7 80.6-21.4 87.3-23.3 7.9-2 9-5.8 4.7-10.6zm-352.2 72c-2.3.5-110.8 26.5-116.6 27.8-5.8 1.3-5.8.7-6.5-1.3-.7-2-129-266.7-130.8-270-1.8-3.3-1.7-5.9 0-5.9s102.5-9 106-9.2c3.6-.2 3.2.6 4.5 2.8 0 0 142.2 245.4 144.6 249.7 2.6 4.3 1.1 5.6-1.2 6.1zm306 57.4c1.7 2.7 3.5 4.5-2 6.4-5.4 2-183.7 62.1-187.1 63.6-3.5 1.5-6.2 2-10.6-4.5s-62.4-106.8-62.4-106.8L518 280.6c4.7-1.5 6.2-2.5 9.2 2.2 2.9 4.8 62.4 85.5 64.1 88.2zm12.1-134.1c-4.2.9-73.6 18.1-73.6 18.1l-56.7-77.8c-1.6-2.3-2.9-4.5 1.1-5s68.4-12.2 71.3-12.8c2.9-.7 5.4-1.5 9 3.4 3.6 4.9 52.6 67 54.5 69.4 1.8 2.3-1.4 3.7-5.6 4.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLaravel = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLastfm.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLastfm.d.ts new file mode 100644 index 0000000000..2d518fd4a7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLastfm.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLastfm: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLastfm.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLastfm.js new file mode 100644 index 0000000000..0689367def --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLastfm.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'lastfm'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f202'; +var svgPathData = 'M225.8 367.1l-18.8-51s-30.5 34-76.2 34c-40.5 0-69.2-35.2-69.2-91.5 0-72.1 36.4-97.9 72.1-97.9 66.5 0 74.8 53.3 100.9 134.9 18.8 56.9 54 102.6 155.4 102.6 72.7 0 122-22.3 122-80.9 0-72.9-62.7-80.6-115-92.1-25.8-5.9-33.4-16.4-33.4-34 0-19.9 15.8-31.7 41.6-31.7 28.2 0 43.4 10.6 45.7 35.8l58.6-7c-4.7-52.8-41.1-74.5-100.9-74.5-52.8 0-104.4 19.9-104.4 83.9 0 39.9 19.4 65.1 68 76.8 44.9 10.6 79.8 13.8 79.8 45.7 0 21.7-21.1 30.5-61 30.5-59.2 0-83.9-31.1-97.9-73.9-32-96.8-43.6-163-161.3-163C45.7 113.8 0 168.3 0 261c0 89.1 45.7 137.2 127.9 137.2 66.2 0 97.9-31.1 97.9-31.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLastfm = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLastfmSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLastfmSquare.d.ts new file mode 100644 index 0000000000..ddb8cd53f0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLastfmSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLastfmSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLastfmSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLastfmSquare.js new file mode 100644 index 0000000000..a2a14dfaa1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLastfmSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'lastfm-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f203'; +var svgPathData = 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-92.2 312.9c-63.4 0-85.4-28.6-97.1-64.1-16.3-51-21.5-84.3-63-84.3-22.4 0-45.1 16.1-45.1 61.2 0 35.2 18 57.2 43.3 57.2 28.6 0 47.6-21.3 47.6-21.3l11.7 31.9s-19.8 19.4-61.2 19.4c-51.3 0-79.9-30.1-79.9-85.8 0-57.9 28.6-92 82.5-92 73.5 0 80.8 41.4 100.8 101.9 8.8 26.8 24.2 46.2 61.2 46.2 24.9 0 38.1-5.5 38.1-19.1 0-19.9-21.8-22-49.9-28.6-30.4-7.3-42.5-23.1-42.5-48 0-40 32.3-52.4 65.2-52.4 37.4 0 60.1 13.6 63 46.6l-36.7 4.4c-1.5-15.8-11-22.4-28.6-22.4-16.1 0-26 7.3-26 19.8 0 11 4.8 17.6 20.9 21.3 32.7 7.1 71.8 12 71.8 57.5.1 36.7-30.7 50.6-76.1 50.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLastfmSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLeanpub.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLeanpub.d.ts new file mode 100644 index 0000000000..383a28be61 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLeanpub.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLeanpub: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLeanpub.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLeanpub.js new file mode 100644 index 0000000000..7d5517d7e5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLeanpub.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'leanpub'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f212'; +var svgPathData = 'M386.539 111.485l15.096 248.955-10.979-.275c-36.232-.824-71.64 8.783-102.657 27.997-31.016-19.214-66.424-27.997-102.657-27.997-45.564 0-82.07 10.705-123.516 27.723L93.117 129.6c28.546-11.803 61.484-18.115 92.226-18.115 41.173 0 73.836 13.175 102.657 42.544 27.723-28.271 59.013-41.721 98.539-42.544zM569.07 448c-25.526 0-47.485-5.215-70.542-15.645-34.31-15.645-69.993-24.978-107.871-24.978-38.977 0-74.934 12.901-102.657 40.623-27.723-27.723-63.68-40.623-102.657-40.623-37.878 0-73.561 9.333-107.871 24.978C55.239 442.236 32.731 448 8.303 448H6.93L49.475 98.859C88.726 76.626 136.486 64 181.775 64 218.83 64 256.984 71.685 288 93.095 319.016 71.685 357.17 64 394.225 64c45.289 0 93.049 12.626 132.3 34.859L569.07 448zm-43.368-44.741l-34.036-280.246c-30.742-13.999-67.248-21.41-101.009-21.41-38.428 0-74.385 12.077-102.657 38.702-28.272-26.625-64.228-38.702-102.657-38.702-33.761 0-70.267 7.411-101.009 21.41L50.298 403.259c47.211-19.487 82.894-33.486 135.045-33.486 37.604 0 70.817 9.606 102.657 29.644 31.84-20.038 65.052-29.644 102.657-29.644 52.151 0 87.834 13.999 135.045 33.486z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLeanpub = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLess.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLess.d.ts new file mode 100644 index 0000000000..e0f1c7a141 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLess.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLess: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLess.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLess.js new file mode 100644 index 0000000000..8285f9893f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLess.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'less'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f41d'; +var svgPathData = 'M612.7 219c0-20.5 3.2-32.6 3.2-54.6 0-34.2-12.6-45.2-40.5-45.2h-20.5v24.2h6.3c14.2 0 17.3 4.7 17.3 22.1 0 16.3-1.6 32.6-1.6 51.5 0 24.2 7.9 33.6 23.6 37.3v1.6c-15.8 3.7-23.6 13.1-23.6 37.3 0 18.9 1.6 34.2 1.6 51.5 0 17.9-3.7 22.6-17.3 22.6v.5h-6.3V393h20.5c27.8 0 40.5-11 40.5-45.2 0-22.6-3.2-34.2-3.2-54.6 0-11 6.8-22.6 27.3-23.6v-27.3c-20.5-.7-27.3-12.3-27.3-23.3zm-105.6 32c-15.8-6.3-30.5-10-30.5-20.5 0-7.9 6.3-12.6 17.9-12.6s22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-21 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51s-22.5-41-43-47.8zm-358.9 59.4c-3.7 0-8.4-3.2-8.4-13.1V119.1H65.2c-28.4 0-41 11-41 45.2 0 22.6 3.2 35.2 3.2 54.6 0 11-6.8 22.6-27.3 23.6v27.3c20.5.5 27.3 12.1 27.3 23.1 0 19.4-3.2 31-3.2 53.6 0 34.2 12.6 45.2 40.5 45.2h20.5v-24.2h-6.3c-13.1 0-17.3-5.3-17.3-22.6s1.6-32.1 1.6-51.5c0-24.2-7.9-33.6-23.6-37.3v-1.6c15.8-3.7 23.6-13.1 23.6-37.3 0-18.9-1.6-34.2-1.6-51.5s3.7-22.1 17.3-22.1H93v150.8c0 32.1 11 53.1 43.1 53.1 10 0 17.9-1.6 23.6-3.7l-5.3-34.2c-3.1.8-4.6.8-6.2.8zM379.9 251c-16.3-6.3-31-10-31-20.5 0-7.9 6.3-12.6 17.9-12.6 11.6 0 22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-20.5 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51 .1-28.9-22.5-41-43-47.8zm-155-68.8c-38.4 0-75.1 32.1-74.1 82.5 0 52 34.2 82.5 79.3 82.5 18.9 0 39.9-6.8 56.2-17.9l-15.8-27.8c-11.6 6.8-22.6 10-34.2 10-21 0-37.3-10-41.5-34.2H290c.5-3.7 1.6-11 1.6-19.4.6-42.6-22.6-75.7-66.7-75.7zm-30 66.2c3.2-21 15.8-31 30.5-31 18.9 0 26.3 13.1 26.3 31h-56.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLess = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLine.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLine.d.ts new file mode 100644 index 0000000000..98318111e3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLine.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLine: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLine.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLine.js new file mode 100644 index 0000000000..517135a04b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLine.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'line'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f3c0'; +var svgPathData = 'M272.1 204.2v71.1c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.1 0-2.1-.6-2.6-1.3l-32.6-44v42.2c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.8 0-3.2-1.4-3.2-3.2v-71.1c0-1.8 1.4-3.2 3.2-3.2H219c1 0 2.1.5 2.6 1.4l32.6 44v-42.2c0-1.8 1.4-3.2 3.2-3.2h11.4c1.8-.1 3.3 1.4 3.3 3.1zm-82-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 1.8 1.4 3.2 3.2 3.2h11.4c1.8 0 3.2-1.4 3.2-3.2v-71.1c0-1.7-1.4-3.2-3.2-3.2zm-27.5 59.6h-31.1v-56.4c0-1.8-1.4-3.2-3.2-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 .9.3 1.6.9 2.2.6.5 1.3.9 2.2.9h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.7-1.4-3.2-3.1-3.2zM332.1 201h-45.7c-1.7 0-3.2 1.4-3.2 3.2v71.1c0 1.7 1.4 3.2 3.2 3.2h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2V234c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2v-11.4c-.1-1.7-1.5-3.2-3.2-3.2zM448 113.7V399c-.1 44.8-36.8 81.1-81.7 81H81c-44.8-.1-81.1-36.9-81-81.7V113c.1-44.8 36.9-81.1 81.7-81H367c44.8.1 81.1 36.8 81 81.7zm-61.6 122.6c0-73-73.2-132.4-163.1-132.4-89.9 0-163.1 59.4-163.1 132.4 0 65.4 58 120.2 136.4 130.6 19.1 4.1 16.9 11.1 12.6 36.8-.7 4.1-3.3 16.1 14.1 8.8 17.4-7.3 93.9-55.3 128.2-94.7 23.6-26 34.9-52.3 34.9-81.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLine = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinkedin.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinkedin.d.ts new file mode 100644 index 0000000000..e5b3ab01c7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinkedin.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLinkedin: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinkedin.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinkedin.js new file mode 100644 index 0000000000..ac1aedc1ca --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinkedin.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'linkedin'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f08c'; +var svgPathData = 'M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLinkedin = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinkedinIn.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinkedinIn.d.ts new file mode 100644 index 0000000000..02293ca01b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinkedinIn.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLinkedinIn: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinkedinIn.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinkedinIn.js new file mode 100644 index 0000000000..f1ff64a522 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinkedinIn.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'linkedin-in'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0e1'; +var svgPathData = 'M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLinkedinIn = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinode.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinode.d.ts new file mode 100644 index 0000000000..2300348286 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinode.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLinode: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinode.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinode.js new file mode 100644 index 0000000000..37ad47cf48 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinode.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'linode'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f2b8'; +var svgPathData = 'M437.4 226.3c-.3-.9-.9-1.4-1.4-2l-70-38.6c-.9-.6-2-.6-3.1 0l-58.9 36c-.9.6-1.4 1.7-1.4 2.6l-.9 31.4-24-16c-.9-.6-2.3-.6-3.1 0L240 260.9l-1.4-35.1c0-.9-.6-2-1.4-2.3l-36-24.3 33.7-17.4c1.1-.6 1.7-1.7 1.7-2.9l-5.7-132.3c0-.9-.9-2-1.7-2.6L138.6.3c-.9-.3-1.7-.3-2.3-.3L12.6 38.6c-1.4.6-2.3 2-2 3.7L38 175.4c.9 3.4 34 27.4 38.6 30.9l-26.9 12.9c-1.4.9-2 2.3-1.7 3.4l20.6 100.3c.6 2.9 23.7 23.1 27.1 26.3l-17.4 10.6c-.9.6-1.7 2-1.4 3.1 1.4 7.1 15.4 77.7 16.9 79.1l65.1 69.1c.6.6 1.4.6 2.3.9.6 0 1.1-.3 1.7-.6l83.7-66.9c.9-.6 1.1-1.4 1.1-2.3l-2-46 28 23.7c1.1.9 2.9.9 4 0l66.9-53.4c.9-.6 1.1-1.4 1.1-2.3l2.3-33.4 20.3 14c1.1.9 2.6.9 3.7 0l54.6-43.7c.6-.3 1.1-1.1 1.1-2 .9-6.5 10.3-70.8 9.7-72.8zm-204.8 4.8l4 92.6-90.6 61.2-14-96.6 100.6-57.2zm-7.7-180l5.4 126-106.6 55.4L104 97.7l120.9-46.6zM44 173.1L18 48l79.7 49.4 19.4 132.9L44 173.1zm30.6 147.8L55.7 230l70 58.3 13.7 93.4-64.8-60.8zm24.3 117.7l-13.7-67.1 61.7 60.9 9.7 67.4-57.7-61.2zm64.5 64.5l-10.6-70.9 85.7-61.4 3.1 70-78.2 62.3zm82-115.1c0-3.4.9-22.9-2-25.1l-24.3-20 22.3-14.9c2.3-1.7 1.1-5.7 1.1-8l29.4 22.6.6 68.3-27.1-22.9zm94.3-25.4l-60.9 48.6-.6-68.6 65.7-46.9-4.2 66.9zm27.7-25.7l-19.1-13.4 2-34c.3-.9-.3-2-1.1-2.6L308 259.7l.6-30 64.6 40.6-5.8 66.6zm54.6-39.8l-48.3 38.3 5.7-65.1 51.1-36.6-8.5 63.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLinode = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinux.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinux.d.ts new file mode 100644 index 0000000000..02a116bd61 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinux.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLinux: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinux.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinux.js new file mode 100644 index 0000000000..a9dfeedb1e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLinux.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'linux'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f17c'; +var svgPathData = 'M196.1 123.6c-.2-1.4 1.9-2.3 3.2-2.9 1.7-.7 3.9-1 5.5-.1.4.2.8.7.6 1.1-.4 1.2-2.4 1-3.5 1.6-1 .5-1.8 1.7-3 1.7-1 .1-2.7-.4-2.8-1.4zm24.7-.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm214.7 310.2c-.5 8.2-6.5 13.8-13.9 18.3-14.9 9-37.3 15.8-50.9 32.2l-2.6-2.2 2.6 2.2c-14.2 16.9-31.7 26.6-48.3 27.9-16.5 1.3-32-6.3-40.3-23v-.1c-1.1-2.1-1.9-4.4-2.5-6.7-21.5 1.2-40.2-5.3-55.1-4.1-22 1.2-35.8 6.5-48.3 6.6-4.8 10.6-14.3 17.6-25.9 20.2-16 3.7-36.1 0-55.9-10.4l1.6-3-1.6 3c-18.5-9.8-42-8.9-59.3-12.5-8.7-1.8-16.3-5-20.1-12.3-3.7-7.3-3-17.3 2.2-31.7 1.7-5.1.4-12.7-.8-20.8-.6-3.9-1.2-7.9-1.2-11.8 0-4.3.7-8.5 2.8-12.4 4.5-8.5 11.8-12.1 18.5-14.5 6.7-2.4 12.8-4 17-8.3 5.2-5.5 10.1-14.4 16.6-20.2-2.6-17.2.2-35.4 6.2-53.3 12.6-37.9 39.2-74.2 58.1-96.7 16.1-22.9 20.8-41.3 22.5-64.7C158 103.4 132.4-.2 234.8 0c80.9.1 76.3 85.4 75.8 131.3-.3 30.1 16.3 50.5 33.4 72 15.2 18 35.1 44.3 46.5 74.4 9.3 24.6 12.9 51.8 3.7 79.1 1.4.5 2.8 1.2 4.1 2 1.4.8 2.7 1.8 4 2.9 6.6 5.6 8.7 14.3 10.5 22.4 1.9 8.1 3.6 15.7 7.2 19.7 11.1 12.4 15.9 21.5 15.5 29.7zM220.8 109.1c3.6.9 8.9 2.4 13 4.4-2.1-12.2 4.5-23.5 11.8-23 8.9.3 13.9 15.5 9.1 27.3-.8 1.9-2.8 3.4-3.9 4.6 6.7 2.3 11 4.1 12.6 4.9 7.9-9.5 10.8-26.2 4.3-40.4-9.8-21.4-34.2-21.8-44 .4-3.2 7.2-3.9 14.9-2.9 21.8zm-46.2 18.8c7.8-5.7 6.9-4.7 5.9-5.5-8-6.9-6.6-27.4 1.8-28.1 6.3-.5 10.8 10.7 9.6 19.6 3.1-2.1 6.7-3.6 10.2-4.6 1.7-19.3-9-33.5-19.1-33.5-18.9 0-24 37.5-8.4 52.1zm-9.4 20.9c1.5 4.9 6.1 10.5 14.7 15.3 7.8 4.6 12 11.5 20 15 2.6 1.1 5.7 1.9 9.6 2.1 18.4 1.1 27.1-11.3 38.2-14.9 11.7-3.7 20.1-11 22.7-18.1 3.2-8.5-2.1-14.7-10.5-18.2-11.3-4.9-16.3-5.2-22.6-9.3-10.3-6.6-18.8-8.9-25.9-8.9-14.4 0-23.2 9.8-27.9 14.2-.5.5-7.9 5.9-14.1 10.5-4.2 3.3-5.6 7.4-4.2 12.3zm-33.5 252.8L112.1 366c-6.8-9.2-13.8-14.8-21.9-16-7.7-1.2-12.6 1.4-17.7 6.9-4.8 5.1-8.8 12.3-14.3 18-7.8 6.5-9.3 6.2-19.6 9.9-6.3 2.2-11.3 4.6-14.8 11.3-2.7 5-2.1 12.2-.9 20 1.2 7.9 3 16.3.6 23.9v.2c-5 13.7-5 21.7-2.6 26.4 7.9 15.4 46.6 6.1 76.5 21.9 31.4 16.4 72.6 17.1 75.3-18 2.1-20.5-31.5-49-41-68.9zm153.9 35.8c3.2-11 6.3-21.3 6.8-29 .8-15.2 1.6-28.7 4.4-39.9 3.1-12.6 9.3-23.1 21.4-27.3 2.3-21.1 18.7-21.1 38.3-12.5 18.9 8.5 26 16 22.8 26.1 1 0 2-.1 4.2 0 5.2-16.9-14.3-28-30.7-34.8 2.9-12 2.4-24.1-.4-35.7-6-25.3-22.6-47.8-35.2-59-2.3-.1-2.1 1.9 2.6 6.5 11.6 10.7 37.1 49.2 23.3 84.9-3.9-1-7.6-1.5-10.9-1.4-5.3-29.1-17.5-53.2-23.6-64.6-11.5-21.4-29.5-65.3-37.2-95.7-4.5 6.4-12.4 11.9-22.3 15-4.7 1.5-9.7 5.5-15.9 9-13.9 8-30 8.8-42.4-1.2-4.5-3.6-8-7.6-12.6-10.3-1.6-.9-5.1-3.3-6.2-4.1-2 37.8-27.3 85.3-39.3 112.7-8.3 19.7-13.2 40.8-13.8 61.5-21.8-29.1-5.9-66.3 2.6-82.4 9.5-17.6 11-22.5 8.7-20.8-8.6 14-22 36.3-27.2 59.2-2.7 11.9-3.2 24 .3 35.2 3.5 11.2 11.1 21.5 24.6 29.9 0 0 24.8 14.3 38.3 32.5 7.4 10 9.7 18.7 7.4 24.9-2.5 6.7-9.6 8.9-16.7 8.9 4.8 6 10.3 13 14.4 19.6 37.6 25.7 82.2 15.7 114.3-7.2zM415 408.5c-10-11.3-7.2-33.1-17.1-41.6-6.9-6-13.6-5.4-22.6-5.1-7.7 8.8-25.8 19.6-38.4 16.3-11.5-2.9-18-16.3-18.8-29.5-.3.2-.7.3-1 .5-7.1 3.9-11.1 10.8-13.7 21.1-2.5 10.2-3.4 23.5-4.2 38.7-.7 11.8-6.2 26.4-9.9 40.6-3.5 13.2-5.8 25.2-1.1 36.3 7.2 14.5 19.5 20.4 33.7 19.3 14.2-1.1 30.4-9.8 43.6-25.5 22-26.6 62.3-29.7 63.2-46.5.3-5.1-3.1-13-13.7-24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4 3.9-3.4 5.9-6.3 3.1-6.6-2.8-.3-2.6 2.6-6 5.1-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2-10.4 0-18.7-4.8-24.9-9.7-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLinux = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLyft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLyft.d.ts new file mode 100644 index 0000000000..715384afc4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLyft.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLyft: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLyft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLyft.js new file mode 100644 index 0000000000..8cad0a78e2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faLyft.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'lyft'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f3c3'; +var svgPathData = 'M0 81.1h77.8v208.7c0 33.1 15 52.8 27.2 61-12.7 11.1-51.2 20.9-80.2-2.8C7.8 334 0 310.7 0 289V81.1zm485.9 173.5v-22h23.8v-76.8h-26.1c-10.1-46.3-51.2-80.7-100.3-80.7-56.6 0-102.7 46-102.7 102.7V357c16 2.3 35.4-.3 51.7-14 17.1-14 24.8-37.2 24.8-59v-6.7h38.8v-76.8h-38.8v-23.3c0-34.6 52.2-34.6 52.2 0v77.1c0 56.6 46 102.7 102.7 102.7v-76.5c-14.5 0-26.1-11.7-26.1-25.9zm-294.3-99v113c0 15.4-23.8 15.4-23.8 0v-113H91v132.7c0 23.8 8 54 45 63.9 37 9.8 58.2-10.6 58.2-10.6-2.1 13.4-14.5 23.3-34.9 25.3-15.5 1.6-35.2-3.6-45-7.8v70.3c25.1 7.5 51.5 9.8 77.6 4.7 47.1-9.1 76.8-48.4 76.8-100.8V155.1h-77.1v.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLyft = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMagento.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMagento.d.ts new file mode 100644 index 0000000000..371d88e88b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMagento.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMagento: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMagento.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMagento.js new file mode 100644 index 0000000000..0bab1d2592 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMagento.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'magento'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f3c4'; +var svgPathData = 'M445.7 127.9V384l-63.4 36.5V164.7L223.8 73.1 65.2 164.7l.4 255.9L2.3 384V128.1L224.2 0l221.5 127.9zM255.6 420.5L224 438.9l-31.8-18.2v-256l-63.3 36.6.1 255.9 94.9 54.9 95.1-54.9v-256l-63.4-36.6v255.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMagento = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMailchimp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMailchimp.d.ts new file mode 100644 index 0000000000..857b217a46 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMailchimp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMailchimp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMailchimp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMailchimp.js new file mode 100644 index 0000000000..326fb3d26c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMailchimp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'mailchimp'; +var width = 428; +var height = 512; +var ligatures = []; +var unicode = 'f59e'; +var svgPathData = 'M426.56 323.72c-3.09-6.59-8.97-11.13-16.35-12.88-2.47-11.27-5.88-16.8-6.19-17.63 1.3-1.48 2.56-2.97 2.84-3.32 10.42-12.93 3.62-31.86-14.19-36.33-10.02-9.64-19.09-14.17-26.54-17.9-7.14-3.57-4.29-2.17-10.99-5.19-1.78-8.71-2.37-28.97-5.2-43.19-2.54-12.79-7.66-22.06-15.56-28.15-3.16-6.84-7.59-13.74-12.93-18.81 24.84-38.08 31.38-75.69 13.19-95.39-8.1-8.77-20.13-12.93-34.52-12.93-20.26 0-45.18 8.26-70.34 23.54 0 0-16.38-13.18-16.73-13.46-70.08-55.19-268.28 188.7-198.32 242l18.06 13.8c-11.34 31.54 4.43 69.14 37.29 81.21 7.26 2.67 15.14 3.97 23.31 3.51 0 0 53.09 97.36 165.1 97.39 129.58.04 162.55-126.72 162.9-127.86 0 .01 10.5-15.51 5.17-28.41zM20.12 267.95c-14.2-23.96 10.51-73.19 28.09-101.17C91.66 97.63 163.98 43.06 196.82 50.85l9.03-3.46c.03.03 24.67 20.85 24.7 20.87 16.97-10.19 38.58-20.57 58.8-22.64-12.3 2.77-27.29 9.15-45.05 20.01-.43.25-42.02 28.32-67.43 53.52-13.85 13.73-69.45 80.41-69.4 80.35 10.16-19.23 16.86-28.67 32.94-48.9 9.1-11.44 18.81-22.57 28.74-32.84 4.61-4.77 9.28-9.36 13.95-13.71 3.21-2.99 6.44-5.87 9.65-8.62 1.48-1.27 2.96-2.5 4.43-3.71l.01-.01L164.6 64.8l1.72 12.06 23.69 20.87s-20.96 14.11-31.39 23.01c-41.79 35.66-82.8 90.4-98.06 143.69l.73-.03c-7.6 4.19-15.14 10.91-21.73 20.05-.16-.04-17.04-12.43-19.44-16.5zm69.11 100.09c-25.03 0-45.33-21.37-45.33-47.72 0-26.36 20.29-47.72 45.33-47.72 6.49 0 12.66 1.44 18.24 4.02 0 0 9.63 4.86 12.34 27.81 2.82-7.17 4.24-13.06 4.24-13.06 3.23 9.88 4.88 20.26 4.23 30.76 2.68-3.56 5.55-10.27 5.55-10.27 5 29.33-16.4 56.18-44.6 56.18zm55.8-168.53s19.49-37.06 62.33-61.57c-3.19-.51-10.99.48-12.36.64 7.78-6.69 22.24-11.16 32.23-13.19-2.92-1.86-9.89-2.33-13.34-2.42-1.02-.03-1.01-.02-2.22.03 9.4-5.25 26.82-8.34 42.65-5.55-1.99-2.64-6.5-4.57-9.67-5.51-.28-.08-1.52-.39-1.52-.39l1.19-.28c9.54-1.84 20.69.15 29.5 3.69-1-2.32-3.45-5.03-5.29-6.74-.19-.18-1.29-.97-1.29-.97 9.22 1.91 18.06 5.94 24.71 10.5-.9-1.75-3.14-4.69-4.69-6.29 8.81 2.52 18.71 8.81 22.95 17.82.1.2.37.94.4 1.03-16.7-12.84-65.44-9.2-114.24 22.42-22.33 14.48-38.71 30.32-51.34 46.78zm263.32 146.34c-.59 1.15-6.73 34.4-41.86 62.01-44.37 34.86-102.66 31.33-124.67 11.8-11.76-11-16.85-26.73-16.85-26.73s-1.33 8.87-1.56 12.35c-8.87-15.09-8.12-33.52-8.12-33.52s-4.73 8.83-6.9 13.77c-6.53-16.62-3.16-33.78-3.16-33.78l-5.16 7.7s-2.42-18.81 3.52-34.47c6.36-16.74 18.68-28.9 21.11-30.42-9.35-2.97-20.12-11.49-20.14-11.51 0 0 4.28.28 7.26-.4 0 0-18.9-13.54-22.22-34.26 2.74 3.38 8.49 7.21 8.49 7.21-1.86-5.42-2.99-17.49-1.25-29.36l.01-.01c3.58-22.68 22.27-37.45 43.44-37.27 22.54.2 37.65 4.93 56.55-12.5 4-3.69 7.19-6.87 12.81-8.11.59-.13 2.06-.75 5.07-.75 3.05 0 5.98.69 8.67 2.29 10.25 6.1 12.46 22.01 13.56 33.68 4.07 43.28 2.43 35.57 19.94 44.49 8.36 4.25 17.74 8.29 28.43 19.72.03.03.08.09.08.09h.13c9.01.22 13.65 7.31 9.5 12.47-30.23 36.1-72.46 53.39-119.51 54.84-1.94.05-6.32.15-6.34.15-19.01.58-25.19 25.16-13.27 39.95 7.54 9.35 22.03 12.42 33.97 12.46l.17-.06c51.45 1.04 103.14-35.37 112.07-55.44.06-.15.61-1.42.61-1.42-2.07 2.43-52.18 49.61-113.08 47.9 0 0-6.66-.14-12.93-1.6-8.27-1.92-14.55-5.56-16.95-13.8 5.05 1.01 11.45 1.66 18.87 1.66 43.96 0 75.63-19.98 72.33-20.25-.13 0-.26.03-.48.08-5.13 1.19-57.97 21.66-91.37 11.16.08-1.02.24-2.01.48-2.9 2.97-9.95 8.25-8.56 16.79-8.93 30.48-1.01 55.07-8.68 73.5-17.43 19.65-9.33 34.63-21.35 40.03-27.42 7 11.79 6.96 26.92 6.96 26.92s2.74-.96 6.38-.96c11.38.01 13.73 10.23 5.09 20.6zm-149.29 13.7c0-.05-.01-.1-.01-.15.01.05.01.1.01.15zm-.01-.21c-.01-.13-.01-.26-.02-.39-.02-.65-.03-1.33 0-2.02-.02.74-.02 1.42 0 2.02.01.13.01.27.02.39zm.12 1.46c0 .02 0 .04.01.06 0-.02 0-.04-.01-.06zm.02.12c.2 1.58.51 2.31.55 2.4-.23-.49-.42-1.34-.55-2.4zM193.96 59.68l2.87-8.83 4.88 17.72-6.03-1.95-1.72-6.94zm22.38 17.72l-3.62-12.59 9.97 8.36c-2.24 1.44-4.36 2.86-6.35 4.23zm42.71 281.94c-.01-.13-.01-.26-.02-.39.01.13.01.27.02.39zm-.01-.39c-.02-.65-.03-1.33 0-2.02-.03.75-.03 1.42 0 2.02zm.02.6c0-.05-.01-.1-.01-.15m.13 1.46c0-.02 0-.04-.01-.06m.02.12c.2 1.58.51 2.31.55 2.4-.23-.49-.42-1.34-.55-2.4zm52.1-138.61c-.07-3.36.47-8.92 3.63-9.95h.01c5.41-1.88 12.58 11.98 12.91 24.28-4.28-2.14-9.3-3.05-14.47-2.6-1.3-3.97-1.92-7.7-2.08-11.73zM205.38 85.27l-13.59-11.38 20.57 6.28c-2.65 1.88-5 3.6-6.98 5.1zm27.7 166.94c-3.41 1.3-5.83 2.31-7 2.14-1.89-.28-.06-3.75 4.08-7.11 8.33-6.64 19.76-8.7 29.53-5.07 4.28 1.57 9.08 4.72 11.6 8.39.95 1.39 1.21 2.44.82 2.88-.77.9-3.51-.31-7.55-1.89-10.35-3.86-17.98-4.45-31.48.66zm14.55 14.53c-2.31.94-3.81 1.66-4.42 1.17-.62-.48-.01-2.42 2.15-4.51 1.88-1.81 3.83-2.83 6.07-3.77.35-.15.72-.28 1.1-.38 1.04-.28 2.09-.63 3.23-.8 9.12-1.55 15.8 3.51 14.93 4.98-.39.69-2.08.53-4.6.36-5.23-.36-10.71-.27-18.46 2.95zM60.86 323.12zm24.3-25.78c-1.85.39-.81.17-2.64.68a7 7 0 0 0-.77.25c-.58.27-1.11.45-1.62.73-.43.24-4.07 1.86-7.03 5.48-3.99 4.95-5.44 11.43-5.19 17.67.24 6.06 2.02 9.41 2.35 10.23 1.38 2.96-1.85 3.57-4.79.39l-.01-.01c-2.35-2.49-3.86-6.29-4.6-9.66-2.98-13.95 3.24-27.97 17.61-33.57.8-.32 1.74-.51 2.5-.73h-.01c1.47-.44 6.72-1.5 12.07-.67 5.87.91 11.04 3.85 14.33 7.67l.01.01c2.53 2.87 4.43 6.92 4.09 10.53v.01c-.13 1.5-.79 3.65-2.14 4.21-.5.21-1.01.1-1.36-.25-.98-.96-.22-2.93-2.6-6.3-3.17-4.47-10.31-8.76-20.2-6.67zm30.28 31.17c1.88 10.82-6 20.5-15.52 20.7-6.67.15-10.31-4.02-9.66-4.93.3-.43 1.32-.24 2.88-.01 8.5 1.32 13.66-3.86 14.9-9.29.02-.09.35-1.54.34-2.54.07-.88-.03-1.76-.16-2.56-1-5.62-7.45-6.68-11.6-11.15-3.72-4.04-2.99-9.22-.65-11.71 2.81-2.77 6.83-1.76 6.78-.78 0 .52-.97.91-2.17 1.74-1.56 1.1-1.77 2.16-1.37 3.98.26 1 .71 1.65 1.68 2.42 3.48 2.76 12.85 4.7 14.55 14.13zm212.87-81.47c2.58.4 4.22 3.59 3.67 7.13-.55 3.54-3.09 6.08-5.67 5.67-2.58-.4-4.22-3.59-3.67-7.13.56-3.53 3.09-6.07 5.67-5.67zm-28.33 10.31c1.42-2.59 5.44-3.11 8.99-1.16 3.55 1.94 5.27 5.62 3.86 8.2-1.42 2.59-5.44 3.11-8.99 1.16-3.55-1.94-5.28-5.61-3.86-8.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMailchimp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMandalorian.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMandalorian.d.ts new file mode 100644 index 0000000000..87d3a9d5a4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMandalorian.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMandalorian: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMandalorian.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMandalorian.js new file mode 100644 index 0000000000..202f5eea8a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMandalorian.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'mandalorian'; +var width = 390; +var height = 512; +var ligatures = []; +var unicode = 'f50f'; +var svgPathData = 'M203.28 511.89c-.98-3.26-1.69-15.83-1.39-24.58.55-15.89.98-24.72 1.4-28.76.64-6.2 2.87-20.72 3.28-21.38.6-.96.4-27.87-.24-33.13-.31-2.58-.63-11.9-.69-20.73-.13-16.47-.53-20.12-2.73-24.76-1.1-2.32-1.23-3.84-.99-11.43.16-4.81 0-10.53-.34-12.71-2.05-12.97-3.46-27.7-3.25-33.9.21-6.12.43-7.15 2.06-9.67 3.05-4.71 6.51-14.04 8.62-23.27 2.26-9.86 3.88-17.18 4.59-20.74.89-4.42 2.43-9.72 4.36-15.05 2.27-6.25 2.49-15.39.37-15.39-.3 0-1.38 1.22-2.41 2.71-1.03 1.49-4.76 4.8-8.29 7.36-8.37 6.08-11.7 9.39-12.66 12.58-.93 3.11-1.02 7.23-.16 7.76.34.21 1.29 2.4 2.11 4.88 1.62 4.88 1.87 10.12.72 15.36-.39 1.77-1.05 5.47-1.46 8.23-.41 2.76-.98 6.46-1.25 8.22-.28 1.76-.97 3.68-1.55 4.26-.96.96-1.14.91-2.05-.53-.55-.87-1.2-3.01-1.44-4.75-.25-1.74-1.63-7.11-3.08-11.93-3.28-10.9-3.52-16.15-.96-20.96.92-1.73 1.67-3.81 1.67-4.61 0-2.39-2.2-5.32-7.41-9.89-7.05-6.18-8.63-7.92-10.23-11.3-1.71-3.6-3.06-4.06-4.54-1.54-1.78 3.01-2.6 9.11-2.97 22.02l-.35 12.13 1.95 2.25c3.21 3.7 12.07 16.45 13.78 19.83 3.41 6.74 4.34 11.69 4.41 23.56.07 11.84.95 22.75 2 24.71.36.66.51 1.35.34 1.52-.17.17.41 2.09 1.29 4.27.88 2.18 1.81 6.22 2.06 8.98.25 2.76 1.02 7.43 1.71 10.37 2.23 9.56 2.77 14.08 2.39 20.14-.2 3.27-.53 11.07-.73 17.32-1.31 41.76-1.85 57.98-2.04 61.21-.12 2.02-.39 11.51-.6 21.07-.36 16.3-1.3 27.37-2.42 28.65-.64.73-8.07-4.91-12.52-9.49-3.75-3.87-4.02-4.79-2.83-9.95.7-3.01 2.26-18.29 3.33-32.62.36-4.78.81-10.5 1.01-12.71.83-9.37 1.66-20.35 2.61-34.78.56-8.46 1.33-16.44 1.72-17.73.38-1.29.89-9.89 1.13-19.11l.43-16.77-2.26-4.3c-1.72-3.28-4.87-6.94-13.22-15.34-6.03-6.07-11.84-12.3-12.91-13.85l-1.95-2.81.75-10.9c1.09-15.71 1.1-48.57.02-59.06l-.89-8.7-3.28-4.52c-5.86-8.08-5.8-7.75-6.22-33.27-.1-6.07-.38-11.5-.63-12.06-.83-1.87-3.05-2.66-8.54-3.05-8.86-.62-10.96-1.9-23.85-14.55-6.15-6.04-12.34-11.97-13.75-13.19-2.81-2.42-2.79-1.99-.56-9.63l1.35-4.65-1.69-3.04c-.93-1.67-2.09-3.51-2.59-4.07-1.33-1.51-5.5-10.89-5.99-13.49-.31-1.66-.09-2.67.87-3.9 2.23-2.86 3.4-5.68 4.45-10.73 2.33-11.19 7.74-26.09 10.6-29.22 3.18-3.47 7.7-1.05 9.41 5.03 1.34 4.79 1.37 9.79.1 18.55-.53 3.68-.98 8.68-.99 11.11-.02 4.01.19 4.69 2.25 7.39 3.33 4.37 7.73 7.41 15.2 10.52 1.7.71 3.82 1.99 4.72 2.85 11.17 10.72 18.62 16.18 22.95 16.85 5.18.8 7.98 4.54 10.04 13.39 1.31 5.65 4 11.14 5.46 11.14.59 0 2.09-.63 3.33-1.39 1.98-1.22 2.25-1.73 2.25-4.18-.01-3.71-1.17-14.08-2-17.84-.37-1.66-.78-4.06-.93-5.35-.14-1.29-.61-3.85-1.03-5.69-2.55-11.16-3.65-15.46-4.1-16.05-1.55-2.02-4.08-10.2-4.93-15.92-1.64-11.11-3.96-14.23-12.91-17.39-4.64-1.64-8.89-4.12-13.32-7.78-1.15-.95-4.01-3.22-6.35-5.06-2.35-1.83-4.41-3.53-4.6-3.76-.18-.23-1.39-1.14-2.69-2.02-6.24-4.22-8.84-6.98-11.26-11.96l-2.44-5.02-.22-12.98-.22-12.98 6.91-6.55c3.95-3.75 8.48-7.35 10.59-8.43 3.31-1.69 4.45-1.89 11.37-2.05 8.53-.19 10.12.02 11.66 1.56 1.53 1.53 1.36 6.4-.29 8.5-.74.94-1.34 1.98-1.34 2.32 0 .58-2.61 4.91-5.42 8.99-.68.99-2.13 5.35-2.37 6.82 20.44 13.39 21.55 3.77 14.07 28.98l11.4 2.54c3.11-8.66 6.47-17.26 8.61-26.22.29-7.63-11.98-4.19-15.4-8.68-2.33-5.93 3.13-14.18 6.06-19.2 1.6-2.34 6.62-4.7 8.82-4.15.88.22 4.16-.35 7.37-1.28 3.18-.92 6.58-1.68 7.55-1.68.97 0 3.66-.58 5.98-1.29 3.65-1.11 4.5-1.17 6.35-.4 1.17.48 3.79 1.09 5.82 1.36 2.02.26 4.72 1.12 6 1.91 1.28.79 3.53 1.77 5.02 2.17 2.51.68 3 .57 7.05-1.67l4.35-2.4 10.7-.41c10.44-.4 10.81-.47 15.26-2.68l4.58-2.3 2.46 1.43c1.76 1.02 3.14 2.73 4.85 5.98 2.36 4.51 2.38 4.58 1.37 7.37-.88 2.44-.89 3.3-.1 6.39.5 1.96 1.45 4.62 2.1 5.91.65 1.29 1.24 3.09 1.31 4.01.31 4.33-.03 5.3-2.41 6.92-2.17 1.47-6.98 7.91-6.98 9.34 0 .32-.48 1.69-1.07 3.03-5.04 11.51-6.76 13.56-14.26 16.98-9.2 4.2-12.3 5.19-16.21 5.19-3.1 0-4 .25-4.54 1.26-.37.69-2.21 2.37-4.09 3.71-2.04 1.47-3.8 3.38-4.38 4.78-.54 1.28-1.66 2.59-2.49 2.91-.83.32-1.94 1.08-2.45 1.71-.52.62-3.66 3.04-7 5.38-3.33 2.34-6.87 5.02-7.87 5.96-1 .94-2.07 1.71-2.39 1.71s-1.28.74-2.13 1.65c-1.31 1.39-1.49 2.11-1.14 4.6.22 1.63.86 4.27 1.42 5.88 1.32 3.8 1.31 7.86-.05 10.57-1.43 2.86-.89 6.65 1.35 9.59 2.01 2.63 2.16 4.56.71 8.84-.61 1.8-1.05 5.45-1.06 8.91-.02 4.88.22 6.28 1.46 8.38 1.2 2.04 1.82 2.48 3.24 2.32 1.98-.23 2.3-1.05 4.71-12.12 2.18-10.03 3.71-11.92 13.76-17.08 2.94-1.51 7.46-3.96 10.03-5.44 2.58-1.48 6.79-3.69 9.37-4.91 6.67-3.16 11.05-6.52 15.22-11.67 7.11-8.79 9.98-16.22 12.85-33.3.55-3.28 1.43-5.65 2.86-7.73 1.29-1.87 2.37-4.62 2.89-7.31 1.02-5.3 2.85-9.08 5.58-11.51 4.7-4.18 6-1.09 4.59 10.87-.46 3.86-1.1 10.33-1.44 14.38l-.61 7.36 4.45 4.09 4.45 4.09.11 8.42c.06 4.63.47 9.53.92 10.89l.82 2.47-6.43 6.28c-8.54 8.33-12.88 13.93-16.76 21.61-1.77 3.49-3.74 7.11-4.38 8.03-2.18 3.11-6.46 13.01-8.76 20.26l-2.29 7.22-6.97 6.49c-3.83 3.57-7.96 7.25-9.17 8.17-3.05 2.32-4.26 5.15-4.26 9.99 0 2.98.43 4.96 1.59 7.26.87 1.74 1.81 3.91 2.09 4.83.28.92.98 2.22 1.57 2.89 1.4 1.59 1.92 16.12.83 23.22-.68 4.48-3.63 12.02-4.7 12.02-1.79 0-4.06 9.27-5.07 20.74-.18 2.02-.62 5.94-.98 8.7-.36 2.76-.96 9.98-1.35 16.05-.77 12.22-.19 18.77 2.05 23.15 3.41 6.69.52 12.69-11.03 22.84l-3.97 3.49.07 5.19c.04 2.86.55 6.85 1.14 8.87 4.61 15.98 4.73 16.92 4.38 37.13-.46 26.4-.26 40.27.63 44.15.42 1.84.91 5 1.08 7.02.17 2.02.66 5.33 1.08 7.36.47 2.26.78 11.02.79 22.74l.02 19.06-1.81 2.63c-2.71 3.91-15.11 13.54-15.49 12.29zm29.53-45.11c-.18-.3-.33-6.87-.33-14.59 0-14.06-.89-27.54-2.26-34.45-.4-2.02-.81-9.7-.9-17.06-.15-11.93-1.4-24.37-2.64-26.38-.66-1.07-3.02-17.66-3.03-21.3-.01-4.23 1.02-6 5.28-9.13 4.14-3.04 4.86-3.14 5.48-.72.28 1.1 1.45 5.62 2.6 10.03 3.93 15.12 4.14 16.27 4.05 21.74-.1 5.78-.13 6.13-1.74 17.73-.98 7.07-1.17 12.39-1.04 28.43.17 19.4-.64 35.73-2.04 41.27-.71 2.78-2.8 5.48-3.43 4.43zm-70.99-37.58c-.24-.38-1.01-5.24-1.73-10.79-.72-5.56-1.49-10.41-1.73-10.79-.23-.38-.68-3.3-.99-6.49-.31-3.19-.91-7.46-1.33-9.48-.99-4.79-3.35-19.35-3.42-21.07-.03-.74-.34-4.05-.7-7.36-.67-6.21-.84-27.67-.22-28.29.96-.96 6.63 2.76 11.33 7.43l5.28 5.25-.45 6.47c-.25 3.56-.6 10.23-.78 14.83-.18 4.6-.49 9.87-.67 11.71-.18 1.84-.61 9.36-.94 16.72-.79 17.41-1.94 31.29-2.65 32-.32.3-.76.24-1-.14zM74.63 162.61c21.07 12.79 17.84 14.15 28.49 17.66 13.01 4.29 18.87 7.13 23.15 16.87-43.66 36.14-69.01 57.9-76.71 70.82-31.02 52.01-5.99 101.59 62.75 87.21-14.18 29.23-77.97 28.63-98.68-4.9-24.68-39.95-22.09-118.3 61-187.66zm210.79 179.02c56.66 6.88 82.32-37.74 46.54-89.23 0 0-26.87-29.34-64.28-67.96 2.98-15.45 9.49-32.12 30.57-53.82 89.2 63.51 92 141.61 92.46 149.36 4.27 70.58-78.66 91.12-105.29 61.65z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMandalorian = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMastodon.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMastodon.d.ts new file mode 100644 index 0000000000..f9057683cf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMastodon.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMastodon: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMastodon.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMastodon.js new file mode 100644 index 0000000000..eb179bbf6b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMastodon.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'mastodon'; +var width = 417; +var height = 512; +var ligatures = []; +var unicode = 'f4f6'; +var svgPathData = 'M417.8 179.1c0-97.2-63.7-125.7-63.7-125.7-62.5-28.7-228.5-28.4-290.4 0 0 0-63.7 28.5-63.7 125.7 0 115.7-6.6 259.4 105.6 289.1 40.5 10.7 75.3 13 103.3 11.4 50.8-2.8 79.3-18.1 79.3-18.1l-1.7-36.9s-36.3 11.4-77.1 10.1c-40.4-1.4-83-4.4-89.6-54-.6-4.4-.9-9-.9-13.9 85.6 20.9 158.6 9.1 178.7 6.7 56.1-6.7 105-41.3 111.2-72.9 9.8-49.8 9-121.5 9-121.5zm-75.1 125.2h-46.6V190.1c0-49.7-64-51.6-64 6.9v62.5h-46.3V197c0-58.5-64-56.6-64-6.9v114.2H75.1c0-122.1-5.2-147.9 18.4-175 25.9-28.9 79.8-30.8 103.8 6.1l11.6 19.5 11.6-19.5c24.1-37.1 78.1-34.8 103.8-6.1 23.7 27.3 18.4 53 18.4 175z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMastodon = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMaxcdn.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMaxcdn.d.ts new file mode 100644 index 0000000000..f0aded6535 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMaxcdn.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMaxcdn: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMaxcdn.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMaxcdn.js new file mode 100644 index 0000000000..a1c5da5407 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMaxcdn.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'maxcdn'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f136'; +var svgPathData = 'M461.1 442.7h-97.4L415.6 200c2.3-10.2.9-19.5-4.4-25.7-5-6.1-13.7-9.6-24.2-9.6h-49.3l-59.5 278h-97.4l59.5-278h-83.4l-59.5 278H0l59.5-278-44.6-95.4H387c39.4 0 75.3 16.3 98.3 44.9 23.3 28.6 31.8 67.4 23.6 105.9l-47.8 222.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMaxcdn = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMedapps.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMedapps.d.ts new file mode 100644 index 0000000000..d609130396 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMedapps.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMedapps: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMedapps.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMedapps.js new file mode 100644 index 0000000000..d5e3de3d79 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMedapps.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'medapps'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f3c6'; +var svgPathData = 'M118.3 238.4c3.5-12.5 6.9-33.6 13.2-33.6 8.3 1.8 9.6 23.4 18.6 36.6 4.6-23.5 5.3-85.1 14.1-86.7 9-.7 19.7 66.5 22 77.5 9.9 4.1 48.9 6.6 48.9 6.6 1.9 7.3-24 7.6-40 7.8-4.6 14.8-5.4 27.7-11.4 28-4.7.2-8.2-28.8-17.5-49.6l-9.4 65.5c-4.4 13-15.5-22.5-21.9-39.3-3.3-.1-62.4-1.6-47.6-7.8l31-5zM228 448c21.2 0 21.2-32 0-32H92c-21.2 0-21.2 32 0 32h136zm-24 64c21.2 0 21.2-32 0-32h-88c-21.2 0-21.2 32 0 32h88zm34.2-141.5c3.2-18.9 5.2-36.4 11.9-48.8 7.9-14.7 16.1-28.1 24-41 24.6-40.4 45.9-75.2 45.9-125.5C320 69.6 248.2 0 160 0S0 69.6 0 155.2c0 50.2 21.3 85.1 45.9 125.5 7.9 12.9 16 26.3 24 41 6.7 12.5 8.7 29.8 11.9 48.9 3.5 21 36.1 15.7 32.6-5.1-3.6-21.7-5.6-40.7-15.3-58.6C66.5 246.5 33 211.3 33 155.2 33 87.3 90 32 160 32s127 55.3 127 123.2c0 56.1-33.5 91.3-66.1 151.6-9.7 18-11.7 37.4-15.3 58.6-3.4 20.6 29 26.4 32.6 5.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMedapps = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMedium.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMedium.d.ts new file mode 100644 index 0000000000..64dec10e28 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMedium.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMedium: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMedium.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMedium.js new file mode 100644 index 0000000000..86ee6619e4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMedium.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'medium'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f23a'; +var svgPathData = 'M0 32v448h448V32H0zm372.2 106.1l-24 23c-2.1 1.6-3.1 4.2-2.7 6.7v169.3c-.4 2.6.6 5.2 2.7 6.7l23.5 23v5.1h-118V367l24.3-23.6c2.4-2.4 2.4-3.1 2.4-6.7V199.8l-67.6 171.6h-9.1L125 199.8v115c-.7 4.8 1 9.7 4.4 13.2l31.6 38.3v5.1H71.2v-5.1l31.6-38.3c3.4-3.5 4.9-8.4 4.1-13.2v-133c.4-3.7-1-7.3-3.8-9.8L75 138.1V133h87.3l67.4 148L289 133.1h83.2v5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMedium = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMediumM.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMediumM.d.ts new file mode 100644 index 0000000000..a4fdbc95a2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMediumM.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMediumM: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMediumM.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMediumM.js new file mode 100644 index 0000000000..2039042f28 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMediumM.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'medium-m'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f3c7'; +var svgPathData = 'M71.5 142.3c.6-5.9-1.7-11.8-6.1-15.8L20.3 72.1V64h140.2l108.4 237.7L364.2 64h133.7v8.1l-38.6 37c-3.3 2.5-5 6.7-4.3 10.8v272c-.7 4.1 1 8.3 4.3 10.8l37.7 37v8.1H307.3v-8.1l39.1-37.9c3.8-3.8 3.8-5 3.8-10.8V171.2L241.5 447.1h-14.7L100.4 171.2v184.9c-1.1 7.8 1.5 15.6 7 21.2l50.8 61.6v8.1h-144v-8L65 377.3c5.4-5.6 7.9-13.5 6.5-21.2V142.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMediumM = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMedrt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMedrt.d.ts new file mode 100644 index 0000000000..2c1be8937c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMedrt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMedrt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMedrt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMedrt.js new file mode 100644 index 0000000000..e47fcc3bab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMedrt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'medrt'; +var width = 544; +var height = 512; +var ligatures = []; +var unicode = 'f3c8'; +var svgPathData = 'M113.7 256c0 121.8 83.9 222.8 193.5 241.1-18.7 4.5-38.2 6.9-58.2 6.9C111.4 504 0 393 0 256S111.4 8 248.9 8c20.1 0 39.6 2.4 58.2 6.9C197.5 33.2 113.7 134.2 113.7 256m297.4 100.3c-77.7 55.4-179.6 47.5-240.4-14.6 5.5 14.1 12.7 27.7 21.7 40.5 61.6 88.2 182.4 109.3 269.7 47 87.3-62.3 108.1-184.3 46.5-272.6-9-12.9-19.3-24.3-30.5-34.2 37.4 78.8 10.7 178.5-67 233.9m-218.8-244c-1.4 1-2.7 2.1-4 3.1 64.3-17.8 135.9 4 178.9 60.5 35.7 47 42.9 106.6 24.4 158 56.7-56.2 67.6-142.1 22.3-201.8-50-65.5-149.1-74.4-221.6-19.8M296 224c-4.4 0-8-3.6-8-8v-40c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v40c0 4.4-3.6 8-8 8h-40c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h40c4.4 0 8 3.6 8 8v40c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-40c0-4.4 3.6-8 8-8h40c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-40z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMedrt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMeetup.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMeetup.d.ts new file mode 100644 index 0000000000..5cf3f2321e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMeetup.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMeetup: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMeetup.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMeetup.js new file mode 100644 index 0000000000..3d71e8fc22 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMeetup.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'meetup'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2e0'; +var svgPathData = 'M99 414.3c1.1 5.7-2.3 11.1-8 12.3-5.4 1.1-10.9-2.3-12-8-1.1-5.4 2.3-11.1 7.7-12.3 5.4-1.2 11.1 2.3 12.3 8zm143.1 71.4c-6.3 4.6-8 13.4-3.7 20 4.6 6.6 13.4 8.3 20 3.7 6.3-4.6 8-13.4 3.4-20-4.2-6.5-13.1-8.3-19.7-3.7zm-86-462.3c6.3-1.4 10.3-7.7 8.9-14-1.1-6.6-7.4-10.6-13.7-9.1-6.3 1.4-10.3 7.7-9.1 14 1.4 6.6 7.6 10.6 13.9 9.1zM34.4 226.3c-10-6.9-23.7-4.3-30.6 6-6.9 10-4.3 24 5.7 30.9 10 7.1 23.7 4.6 30.6-5.7 6.9-10.4 4.3-24.1-5.7-31.2zm272-170.9c10.6-6.3 13.7-20 7.7-30.3-6.3-10.6-19.7-14-30-7.7s-13.7 20-7.4 30.6c6 10.3 19.4 13.7 29.7 7.4zm-191.1 58c7.7-5.4 9.4-16 4.3-23.7s-15.7-9.4-23.1-4.3c-7.7 5.4-9.4 16-4.3 23.7 5.1 7.8 15.6 9.5 23.1 4.3zm372.3 156c-7.4 1.7-12.3 9.1-10.6 16.9 1.4 7.4 8.9 12.3 16.3 10.6 7.4-1.4 12.3-8.9 10.6-16.6-1.5-7.4-8.9-12.3-16.3-10.9zm39.7-56.8c-1.1-5.7-6.6-9.1-12-8-5.7 1.1-9.1 6.9-8 12.6 1.1 5.4 6.6 9.1 12.3 8 5.4-1.5 9.1-6.9 7.7-12.6zM447 138.9c-8.6 6-10.6 17.7-4.9 26.3 5.7 8.6 17.4 10.6 26 4.9 8.3-6 10.3-17.7 4.6-26.3-5.7-8.7-17.4-10.9-25.7-4.9zm-6.3 139.4c26.3 43.1 15.1 100-26.3 129.1-17.4 12.3-37.1 17.7-56.9 17.1-12 47.1-69.4 64.6-105.1 32.6-1.1.9-2.6 1.7-3.7 2.9-39.1 27.1-92.3 17.4-119.4-22.3-9.7-14.3-14.6-30.6-15.1-46.9-65.4-10.9-90-94-41.1-139.7-28.3-46.9.6-107.4 53.4-114.9C151.6 70 234.1 38.6 290.1 82c67.4-22.3 136.3 29.4 130.9 101.1 41.1 12.6 52.8 66.9 19.7 95.2zm-70 74.3c-3.1-20.6-40.9-4.6-43.1-27.1-3.1-32 43.7-101.1 40-128-3.4-24-19.4-29.1-33.4-29.4-13.4-.3-16.9 2-21.4 4.6-2.9 1.7-6.6 4.9-11.7-.3-6.3-6-11.1-11.7-19.4-12.9-12.3-2-17.7 2-26.6 9.7-3.4 2.9-12 12.9-20 9.1-3.4-1.7-15.4-7.7-24-11.4-16.3-7.1-40 4.6-48.6 20-12.9 22.9-38 113.1-41.7 125.1-8.6 26.6 10.9 48.6 36.9 47.1 11.1-.6 18.3-4.6 25.4-17.4 4-7.4 41.7-107.7 44.6-112.6 2-3.4 8.9-8 14.6-5.1 5.7 3.1 6.9 9.4 6 15.1-1.1 9.7-28 70.9-28.9 77.7-3.4 22.9 26.9 26.6 38.6 4 3.7-7.1 45.7-92.6 49.4-98.3 4.3-6.3 7.4-8.3 11.7-8 3.1 0 8.3.9 7.1 10.9-1.4 9.4-35.1 72.3-38.9 87.7-4.6 20.6 6.6 41.4 24.9 50.6 11.4 5.7 62.5 15.7 58.5-11.1zm5.7 92.3c-10.3 7.4-12.9 22-5.7 32.6 7.1 10.6 21.4 13.1 32 6 10.6-7.4 13.1-22 6-32.6-7.4-10.6-21.7-13.5-32.3-6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMeetup = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMegaport.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMegaport.d.ts new file mode 100644 index 0000000000..9c9cdc5e95 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMegaport.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMegaport: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMegaport.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMegaport.js new file mode 100644 index 0000000000..225807c6d8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMegaport.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'megaport'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f5a3'; +var svgPathData = 'M248 8C111.04 8 0 119.04 0 256c0 136.97 111.04 248 248 248 136.96 0 248-111.03 248-248C496 119.04 384.96 8 248 8zm85.46 267.67l59.66 59.67v87.05l-26.07 19.23L341 422.39v-65.46l-33.44-33.44-33.44 33.44v65.46L248 441.62l-26.12-19.23v-65.46l-33.44-33.44L155 356.92v65.46l-26.07 19.23-26.06-19.23v-87.05l59.47-59.47V188l59.5-59.5V52.88l26.06-19.23 26.06 19.23v75.64l59.5 59.5m-85.56-11.86l33.44 33.44V276L248 309.33l-33.54-33.54v-66.2l33.44-33.43z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMegaport = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMicrosoft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMicrosoft.d.ts new file mode 100644 index 0000000000..83182883a3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMicrosoft.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMicrosoft: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMicrosoft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMicrosoft.js new file mode 100644 index 0000000000..2f498b21be --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMicrosoft.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'microsoft'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f3ca'; +var svgPathData = 'M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMicrosoft = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMix.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMix.d.ts new file mode 100644 index 0000000000..f313e78977 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMix.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMix: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMix.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMix.js new file mode 100644 index 0000000000..54b44e0acd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMix.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'mix'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f3cb'; +var svgPathData = 'M0 64v348.9c0 56.2 88 58.1 88 0V174.3c7.9-52.9 88-50.4 88 6.5v175.3c0 57.9 96 58 96 0V240c5.3-54.7 88-52.5 88 4.3v23.8c0 59.9 88 56.6 88 0V64H0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMix = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMixcloud.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMixcloud.d.ts new file mode 100644 index 0000000000..0f6ca1c189 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMixcloud.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMixcloud: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMixcloud.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMixcloud.js new file mode 100644 index 0000000000..0e7b24b123 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMixcloud.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'mixcloud'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f289'; +var svgPathData = 'M424.43 219.729C416.124 134.727 344.135 68 256.919 68c-72.266 0-136.224 46.516-159.205 114.074-54.545 8.029-96.63 54.822-96.63 111.582 0 62.298 50.668 112.966 113.243 112.966h289.614c52.329 0 94.969-42.362 94.969-94.693 0-45.131-32.118-83.063-74.48-92.2zm-20.489 144.53H114.327c-39.04 0-70.881-31.564-70.881-70.604s31.841-70.604 70.881-70.604c18.827 0 36.548 7.475 49.838 20.766 19.963 19.963 50.133-10.227 30.18-30.18-14.675-14.398-32.672-24.365-52.053-29.349 19.935-44.3 64.79-73.926 114.628-73.926 69.496 0 125.979 56.483 125.979 125.702 0 13.568-2.215 26.857-6.369 39.594-8.943 27.517 32.133 38.939 40.147 13.29 2.769-8.306 4.984-16.889 6.369-25.472 19.381 7.476 33.502 26.303 33.502 48.453 0 28.795-23.535 52.33-52.607 52.33zm235.069-52.33c0 44.024-12.737 86.386-37.102 122.657-4.153 6.092-10.798 9.414-17.72 9.414-16.317 0-27.127-18.826-17.443-32.949 19.381-29.349 29.903-63.682 29.903-99.122s-10.521-69.773-29.903-98.845c-15.655-22.831 19.361-47.24 35.163-23.534 24.366 35.993 37.102 78.356 37.102 122.379zm-70.88 0c0 31.565-9.137 62.021-26.857 88.325-4.153 6.091-10.798 9.136-17.72 9.136-17.201 0-27.022-18.979-17.443-32.948 13.013-19.104 19.658-41.255 19.658-64.513 0-22.981-6.645-45.408-19.658-64.512-15.761-22.986 19.008-47.095 35.163-23.535 17.719 26.026 26.857 56.483 26.857 88.047z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMixcloud = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMizuni.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMizuni.d.ts new file mode 100644 index 0000000000..a0cb8d06d7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMizuni.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMizuni: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMizuni.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMizuni.js new file mode 100644 index 0000000000..86c8f44bdb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMizuni.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'mizuni'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f3cc'; +var svgPathData = 'M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm-80 351.9c-31.4 10.6-58.8 27.3-80 48.2V136c0-22.1 17.9-40 40-40s40 17.9 40 40v223.9zm120-9.9c-12.9-2-26.2-3.1-39.8-3.1-13.8 0-27.2 1.1-40.2 3.1V136c0-22.1 17.9-40 40-40s40 17.9 40 40v214zm120 57.7c-21.2-20.8-48.6-37.4-80-48V136c0-22.1 17.9-40 40-40s40 17.9 40 40v271.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMizuni = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faModx.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faModx.d.ts new file mode 100644 index 0000000000..6b850a0c2b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faModx.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faModx: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faModx.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faModx.js new file mode 100644 index 0000000000..4c865fee87 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faModx.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'modx'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f285'; +var svgPathData = 'M356 241.8l36.7 23.7V480l-133-83.8L356 241.8zM440 75H226.3l-23 37.8 153.5 96.5L440 75zm-89 142.8L55.2 32v214.5l46 29L351 217.8zM97 294.2L8 437h213.7l125-200.5L97 294.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faModx = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMonero.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMonero.d.ts new file mode 100644 index 0000000000..fa8ed03029 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMonero.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMonero: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMonero.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMonero.js new file mode 100644 index 0000000000..2d6f397ce8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faMonero.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'monero'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f3d0'; +var svgPathData = 'M352 384h108.4C417 455.9 338.1 504 248 504S79 455.9 35.6 384H144V256.2L248 361l104-105v128zM88 336V128l159.4 159.4L408 128v208h74.8c8.5-25.1 13.2-52 13.2-80C496 119 385 8 248 8S0 119 0 256c0 28 4.6 54.9 13.2 80H88z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMonero = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNapster.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNapster.d.ts new file mode 100644 index 0000000000..fc5c323d46 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNapster.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faNapster: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNapster.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNapster.js new file mode 100644 index 0000000000..2ea152587a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNapster.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'napster'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f3d2'; +var svgPathData = 'M298.3 373.6c-14.2 13.6-31.3 24.1-50.4 30.5-19-6.4-36.2-16.9-50.3-30.5h100.7zm44-199.6c20-16.9 43.6-29.2 69.6-36.2V299c0 219.4-328 217.6-328 .3V137.7c25.9 6.9 49.6 19.6 69.5 36.4 56.8-40 132.5-39.9 188.9-.1zm-208.8-58.5c64.4-60 164.3-60.1 228.9-.2-7.1 3.5-13.9 7.3-20.6 11.5-58.7-30.5-129.2-30.4-187.9.1-6.3-4-13.9-8.2-20.4-11.4zM43.8 93.2v69.3c-58.4 36.5-58.4 121.1.1 158.3 26.4 245.1 381.7 240.3 407.6 1.5l.3-1.7c58.7-36.3 58.9-121.7.2-158.2V93.2c-17.3.5-34 3-50.1 7.4-82-91.5-225.5-91.5-307.5.1-16.3-4.4-33.1-7-50.6-7.5zM259.2 352s36-.3 61.3-1.5c10.2-.5 21.1-4 25.5-6.5 26.3-15.1 25.4-39.2 26.2-47.4-79.5-.6-99.9-3.9-113 55.4zm-135.5-55.3c.8 8.2-.1 32.3 26.2 47.4 4.4 2.5 15.2 6 25.5 6.5 25.3 1.1 61.3 1.5 61.3 1.5-13.2-59.4-33.7-56.1-113-55.4zm169.1 123.4c-3.2-5.3-6.9-7.3-6.9-7.3-24.8 7.3-52.2 6.9-75.9 0 0 0-2.9 1.5-6.4 6.6-2.8 4.1-3.7 9.6-3.7 9.6 29.1 17.6 67.1 17.6 96.2 0-.1-.1-.3-4-3.3-8.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faNapster = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNimblr.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNimblr.d.ts new file mode 100644 index 0000000000..0b1623dfbf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNimblr.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faNimblr: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNimblr.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNimblr.js new file mode 100644 index 0000000000..d05b7fcc5f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNimblr.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'nimblr'; +var width = 355; +var height = 512; +var ligatures = []; +var unicode = 'f5a8'; +var svgPathData = 'M232.6 299.29c15.57 0 27.15 11.46 27.15 26.96 0 15.55-11.62 26.96-27.15 26.96-15.7 0-27.15-11.57-27.15-26.96 0-15.51 11.58-26.96 27.15-26.96zM99.01 326.25c0-15.61 11.68-26.96 27.15-26.96 15.57 0 27.15 11.46 27.15 26.96 0 15.41-11.47 26.96-27.15 26.96-15.44 0-27.15-11.31-27.15-26.96m78.75-167.3C143 158.95 75.45 178.77 45.25 227L0 0v335.48C0 433.13 79.61 512 177.76 512c98.24 0 177.76-78.95 177.76-176.52 0-97.46-79.39-176.53-177.76-176.53zm0 308.12c-73.27 0-132.51-58.9-132.51-131.59 0-72.68 59.24-131.59 132.51-131.59 73.27 0 132.51 58.91 132.51 131.59s-59.25 131.59-132.51 131.59z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faNimblr = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNintendoSwitch.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNintendoSwitch.d.ts new file mode 100644 index 0000000000..b7ae9c6fa9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNintendoSwitch.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faNintendoSwitch: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNintendoSwitch.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNintendoSwitch.js new file mode 100644 index 0000000000..fcacd9b4f6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNintendoSwitch.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'nintendo-switch'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f418'; +var svgPathData = 'M95.9 33.5c-44.6 8-80.5 41-91.8 84.4C0 133.6-.3 142.8.2 264.4.4 376 .5 378.6 2.4 387.3c10.3 46.5 43.3 79.6 90.3 90.5 6.1 1.4 13.9 1.7 64.1 1.9 51.9.4 57.3.3 58.7-1.1 1.4-1.4 1.5-19.3 1.5-222.2 0-150.5-.3-221.3-.9-222.6-.9-1.7-2.5-1.8-56.9-1.7-44.2.1-57.5.4-63.3 1.4zm83.9 222.6V444l-37.8-.5c-34.8-.4-38.5-.6-45.5-2.3-29.9-7.7-52-30.7-58.3-60.7-2-9.4-2-240.1-.1-249.3 5.6-26.1 23.7-47.7 48-57.4 12.2-4.9 17.9-5.5 57.6-5.6l35.9-.1v188zm-75.9-131.2c-5.8 1.1-14.7 5.6-19.5 9.7-9.7 8.4-14.6 20.4-13.8 34.5.4 7.3.8 9.3 3.8 15.2 4.4 9 10.9 15.6 19.9 20 6.2 3.1 7.8 3.4 15.9 3.7 7.3.3 9.9 0 14.8-1.7 20.1-6.8 32.3-26.3 28.8-46.4-3.9-23.7-26.6-39.7-49.9-35zm158.2-92.3c-.4.3-.6 100.8-.6 223.5 0 202.3.1 222.8 1.5 223.4 2.5.9 74.5.6 83.4-.4 37.7-4.3 71-27.2 89-61.2 2.3-4.4 5.4-11.7 7-16.2 5.8-17.4 5.7-12.8 5.7-146.1 0-106.4-.2-122.3-1.5-129-9.2-48.3-46.1-84.8-94.5-93.1-6.5-1.1-16.5-1.4-48.8-1.4-22.4-.1-40.9.2-41.2.5zm99.1 202.1c14.5 3.8 26.3 14.8 31.2 28.9 3.1 8.7 3 21.5-.1 29.5-5.7 14.7-16.8 25-31.1 28.8-23.2 6-47.9-8-54.6-31-2-7-1.9-18.9.4-26.2 6.9-22.7 31-36.1 54.2-30z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faNintendoSwitch = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNode.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNode.d.ts new file mode 100644 index 0000000000..db8c355e84 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNode.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faNode: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNode.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNode.js new file mode 100644 index 0000000000..babc00bb01 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNode.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'node'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f419'; +var svgPathData = 'M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4.1l14.8 8.8c.5.3 1.3.3 1.8 0L375 408c.5-.3.9-.9.9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6.3-.9 1-.9 1.6v66.7c0 .6.4 1.2.9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9.7-1.7 1.7-1.7h7.3c.9 0 1.7.7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7zm46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6.2.8.8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5.3-.4.5-.8.4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7.7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8zm54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1zm-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3 0 5.2 4.2 9.4 9.3 9.4 5.2-.1 9.4-4.3 9.4-9.4zm-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7.1 1.8 1.2 2.1 2.8.1 1 .3 2.7.6 3.3zm-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8zM137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3.4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3.7 2.5 1.8 3.2 1.1.7 2.5.7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1 1.3 0 2.6.3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1.7 2.6.7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2l.2-95zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4zm-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6.3-.9.9-.9 1.6v24.3c0 .7.4 1.3.9 1.6l21 12.1c.6.3 1.3.3 1.8 0l21-12.1c.6-.3.9-.9.9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3.7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1.7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2l36.7-21.3zM559 219c-.4.3-.7.7-.7 1.2v13.6c0 .5.3 1 .7 1.2l11.8 6.8c.4.3 1 .3 1.4 0L584 235c.4-.3.7-.7.7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0L559 219zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7.1-.5.2-1.1.2-1.7zm-74.3-124.9l-.8.5h1.1l-.3-.5zm76.2 130.2l-.4-.7v.9l.4-.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faNode = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNodeJs.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNodeJs.d.ts new file mode 100644 index 0000000000..01deb5a0c5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNodeJs.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faNodeJs: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNodeJs.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNodeJs.js new file mode 100644 index 0000000000..6b37e61578 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNodeJs.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'node-js'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f3d3'; +var svgPathData = 'M224 508c-6.7 0-13.5-1.8-19.4-5.2l-61.7-36.5c-9.2-5.2-4.7-7-1.7-8 12.3-4.3 14.8-5.2 27.9-12.7 1.4-.8 3.2-.5 4.6.4l47.4 28.1c1.7 1 4.1 1 5.7 0l184.7-106.6c1.7-1 2.8-3 2.8-5V149.3c0-2.1-1.1-4-2.9-5.1L226.8 37.7c-1.7-1-4-1-5.7 0L36.6 144.3c-1.8 1-2.9 3-2.9 5.1v213.1c0 2 1.1 4 2.9 4.9l50.6 29.2c27.5 13.7 44.3-2.4 44.3-18.7V167.5c0-3 2.4-5.3 5.4-5.3h23.4c2.9 0 5.4 2.3 5.4 5.3V378c0 36.6-20 57.6-54.7 57.6-10.7 0-19.1 0-42.5-11.6l-48.4-27.9C8.1 389.2.7 376.3.7 362.4V149.3c0-13.8 7.4-26.8 19.4-33.7L204.6 9c11.7-6.6 27.2-6.6 38.8 0l184.7 106.7c12 6.9 19.4 19.8 19.4 33.7v213.1c0 13.8-7.4 26.7-19.4 33.7L243.4 502.8c-5.9 3.4-12.6 5.2-19.4 5.2zm149.1-210.1c0-39.9-27-50.5-83.7-58-57.4-7.6-63.2-11.5-63.2-24.9 0-11.1 4.9-25.9 47.4-25.9 37.9 0 51.9 8.2 57.7 33.8.5 2.4 2.7 4.2 5.2 4.2h24c1.5 0 2.9-.6 3.9-1.7s1.5-2.6 1.4-4.1c-3.7-44.1-33-64.6-92.2-64.6-52.7 0-84.1 22.2-84.1 59.5 0 40.4 31.3 51.6 81.8 56.6 60.5 5.9 65.2 14.8 65.2 26.7 0 20.6-16.6 29.4-55.5 29.4-48.9 0-59.6-12.3-63.2-36.6-.4-2.6-2.6-4.5-5.3-4.5h-23.9c-3 0-5.3 2.4-5.3 5.3 0 31.1 16.9 68.2 97.8 68.2 58.4-.1 92-23.2 92-63.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faNodeJs = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNpm.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNpm.d.ts new file mode 100644 index 0000000000..552024bb22 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNpm.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faNpm: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNpm.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNpm.js new file mode 100644 index 0000000000..f0b498ecec --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNpm.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'npm'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f3d4'; +var svgPathData = 'M288 288h-32v-64h32v64zm288-128v192H288v32H160v-32H0V160h576zm-416 32H32v128h64v-96h32v96h32V192zm160 0H192v160h64v-32h64V192zm224 0H352v128h64v-96h32v96h32v-96h32v96h32V192z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faNpm = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNs8.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNs8.d.ts new file mode 100644 index 0000000000..b2df289b55 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNs8.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faNs8: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNs8.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNs8.js new file mode 100644 index 0000000000..a30b6a67d9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNs8.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'ns8'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f3d5'; +var svgPathData = 'M187.1 159.9l-34.2 113.7-54.5-113.7H49L0 320h44.9L76 213.5 126.6 320h56.9L232 159.9h-44.9zm452.5-.9c-2.9-18-23.9-28.1-42.1-31.3-44.6-7.8-101.9 16.3-88.5 58.8v.1c-43.8 8.7-74.3 26.8-94.2 48.2-3-9.8-13.6-16.6-34-16.6h-87.6c-9.3 0-12.9-2.3-11.5-7.4 1.6-5.5 1.9-6.8 3.7-12.2 2.1-6.4 7.8-7.1 13.3-7.1h133.5l9.7-31.5c-139.7 0-144.5-.5-160.1 1.2-12.3 1.3-23.5 4.8-30.6 15-6.8 9.9-14.4 35.6-17.6 47.1-5.4 19.4-.6 28.6 32.8 28.6h87.3c7.8 0 8.8 2.7 7.7 6.6-1.1 4.4-2.8 10-4.5 14.6-1.6 4.2-4.7 7.4-13.8 7.4H216.3L204.7 320c139.9 0 145.3-.6 160.9-2.3 6.6-.7 13-2.1 18.5-4.9.2 3.7.5 7.3 1.2 10.8 5.4 30.5 27.4 52.3 56.8 59.5 48.6 11.9 108.7-16.8 135.1-68 18.7-36.2 14.1-76.2-3.4-105.5h.1c29.6-5.9 70.3-22 65.7-50.6zM530.7 263.7c-5.9 29.5-36.6 47.8-61.6 43.9-30.9-4.8-38.5-39.5-14.1-64.8 16.2-16.8 45.2-24 68.5-26.9 6.7 14.1 10.3 32 7.2 47.8zm21.8-83.1c-4.2-6-9.8-18.5-2.5-26.3 6.7-7.2 20.9-10.1 31.8-7.7 15.3 3.4 19.7 15.9 4.9 24.4-10.7 6.1-23.6 8.1-34.2 9.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faNs8 = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNutritionix.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNutritionix.d.ts new file mode 100644 index 0000000000..8850fac238 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNutritionix.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faNutritionix: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNutritionix.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNutritionix.js new file mode 100644 index 0000000000..028703cbb1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faNutritionix.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'nutritionix'; +var width = 400; +var height = 512; +var ligatures = []; +var unicode = 'f3d6'; +var svgPathData = 'M88 8.1S221.4-.1 209 112.5c0 0 19.1-74.9 103-40.6 0 0-17.7 74-88 56 0 0 14.6-54.6 66.1-56.6 0 0-39.9-10.3-82.1 48.8 0 0-19.8-94.5-93.6-99.7 0 0 75.2 19.4 77.6 107.5 0 .1-106.4 7-104-119.8zm312 315.6c0 48.5-9.7 95.3-32 132.3-42.2 30.9-105 48-168 48-62.9 0-125.8-17.1-168-48C9.7 419 0 372.2 0 323.7 0 275.3 17.7 229 40 192c42.2-30.9 97.1-48.6 160-48.6 63 0 117.8 17.6 160 48.6 22.3 37 40 83.3 40 131.7zM120 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM192 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM264 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM336 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm24-39.6c-4.8-22.3-7.4-36.9-16-56-38.8-19.9-90.5-32-144-32S94.8 180.1 56 200c-8.8 19.5-11.2 33.9-16 56 42.2-7.9 98.7-14.8 160-14.8s117.8 6.9 160 14.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faNutritionix = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOdnoklassniki.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOdnoklassniki.d.ts new file mode 100644 index 0000000000..9122f2736f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOdnoklassniki.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faOdnoklassniki: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOdnoklassniki.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOdnoklassniki.js new file mode 100644 index 0000000000..3a243a4074 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOdnoklassniki.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'odnoklassniki'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f263'; +var svgPathData = 'M275.1 334c-27.4 17.4-65.1 24.3-90 26.9l20.9 20.6 76.3 76.3c27.9 28.6-17.5 73.3-45.7 45.7-19.1-19.4-47.1-47.4-76.3-76.6L84 503.4c-28.2 27.5-73.6-17.6-45.4-45.7 19.4-19.4 47.1-47.4 76.3-76.3l20.6-20.6c-24.6-2.6-62.9-9.1-90.6-26.9-32.6-21-46.9-33.3-34.3-59 7.4-14.6 27.7-26.9 54.6-5.7 0 0 36.3 28.9 94.9 28.9s94.9-28.9 94.9-28.9c26.9-21.1 47.1-8.9 54.6 5.7 12.4 25.7-1.9 38-34.5 59.1zM30.3 129.7C30.3 58 88.6 0 160 0s129.7 58 129.7 129.7c0 71.4-58.3 129.4-129.7 129.4s-129.7-58-129.7-129.4zm66 0c0 35.1 28.6 63.7 63.7 63.7s63.7-28.6 63.7-63.7c0-35.4-28.6-64-63.7-64s-63.7 28.6-63.7 64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faOdnoklassniki = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOdnoklassnikiSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOdnoklassnikiSquare.d.ts new file mode 100644 index 0000000000..6cce29a1b0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOdnoklassnikiSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faOdnoklassnikiSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOdnoklassnikiSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOdnoklassnikiSquare.js new file mode 100644 index 0000000000..a407aba89d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOdnoklassnikiSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'odnoklassniki-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f264'; +var svgPathData = 'M184.2 177.1c0-22.1 17.9-40 39.8-40s39.8 17.9 39.8 40c0 22-17.9 39.8-39.8 39.8s-39.8-17.9-39.8-39.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-305.1 97.1c0 44.6 36.4 80.9 81.1 80.9s81.1-36.2 81.1-80.9c0-44.8-36.4-81.1-81.1-81.1s-81.1 36.2-81.1 81.1zm174.5 90.7c-4.6-9.1-17.3-16.8-34.1-3.6 0 0-22.7 18-59.3 18s-59.3-18-59.3-18c-16.8-13.2-29.5-5.5-34.1 3.6-7.9 16.1 1.1 23.7 21.4 37 17.3 11.1 41.2 15.2 56.6 16.8l-12.9 12.9c-18.2 18-35.5 35.5-47.7 47.7-17.6 17.6 10.7 45.8 28.4 28.6l47.7-47.9c18.2 18.2 35.7 35.7 47.7 47.9 17.6 17.2 46-10.7 28.6-28.6l-47.7-47.7-13-12.9c15.5-1.6 39.1-5.9 56.2-16.8 20.4-13.3 29.3-21 21.5-37z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faOdnoklassnikiSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOldRepublic.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOldRepublic.d.ts new file mode 100644 index 0000000000..96d121cc90 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOldRepublic.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faOldRepublic: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOldRepublic.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOldRepublic.js new file mode 100644 index 0000000000..77b89312c5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOldRepublic.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'old-republic'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f510'; +var svgPathData = 'M235.76 10.23c7.5-.31 15-.28 22.5-.09 3.61.14 7.2.4 10.79.73 4.92.27 9.79 1.03 14.67 1.62 2.93.43 5.83.98 8.75 1.46 7.9 1.33 15.67 3.28 23.39 5.4 12.24 3.47 24.19 7.92 35.76 13.21 26.56 12.24 50.94 29.21 71.63 49.88 20.03 20.09 36.72 43.55 48.89 69.19 1.13 2.59 2.44 5.1 3.47 7.74 2.81 6.43 5.39 12.97 7.58 19.63 4.14 12.33 7.34 24.99 9.42 37.83.57 3.14 1.04 6.3 1.4 9.47.55 3.83.94 7.69 1.18 11.56.83 8.34.84 16.73.77 25.1-.07 4.97-.26 9.94-.75 14.89-.24 3.38-.51 6.76-.98 10.12-.39 2.72-.63 5.46-1.11 8.17-.9 5.15-1.7 10.31-2.87 15.41-4.1 18.5-10.3 36.55-18.51 53.63-15.77 32.83-38.83 62.17-67.12 85.12a246.503 246.503 0 0 1-56.91 34.86c-6.21 2.68-12.46 5.25-18.87 7.41-3.51 1.16-7.01 2.38-10.57 3.39-6.62 1.88-13.29 3.64-20.04 5-4.66.91-9.34 1.73-14.03 2.48-5.25.66-10.5 1.44-15.79 1.74-6.69.66-13.41.84-20.12.81-6.82.03-13.65-.12-20.45-.79-3.29-.23-6.57-.5-9.83-.95-2.72-.39-5.46-.63-8.17-1.11-4.12-.72-8.25-1.37-12.35-2.22-4.25-.94-8.49-1.89-12.69-3.02-8.63-2.17-17.08-5.01-25.41-8.13-10.49-4.12-20.79-8.75-30.64-14.25-2.14-1.15-4.28-2.29-6.35-3.57-11.22-6.58-21.86-14.1-31.92-22.34-34.68-28.41-61.41-66.43-76.35-108.7-3.09-8.74-5.71-17.65-7.8-26.68-1.48-6.16-2.52-12.42-3.58-18.66-.4-2.35-.61-4.73-.95-7.09-.6-3.96-.75-7.96-1.17-11.94-.8-9.47-.71-18.99-.51-28.49.14-3.51.34-7.01.7-10.51.31-3.17.46-6.37.92-9.52.41-2.81.65-5.65 1.16-8.44.7-3.94 1.3-7.9 2.12-11.82 3.43-16.52 8.47-32.73 15.26-48.18 1.15-2.92 2.59-5.72 3.86-8.59 8.05-16.71 17.9-32.56 29.49-47.06 20-25.38 45.1-46.68 73.27-62.47 7.5-4.15 15.16-8.05 23.07-11.37 15.82-6.88 32.41-11.95 49.31-15.38 3.51-.67 7.04-1.24 10.56-1.85 2.62-.47 5.28-.7 7.91-1.08 3.53-.53 7.1-.68 10.65-1.04 2.46-.24 4.91-.36 7.36-.51m8.64 24.41c-9.23.1-18.43.99-27.57 2.23-7.3 1.08-14.53 2.6-21.71 4.3-13.91 3.5-27.48 8.34-40.46 14.42-10.46 4.99-20.59 10.7-30.18 17.22-4.18 2.92-8.4 5.8-12.34 9.03-5.08 3.97-9.98 8.17-14.68 12.59-2.51 2.24-4.81 4.7-7.22 7.06-28.22 28.79-48.44 65.39-57.5 104.69-2.04 8.44-3.54 17.02-4.44 25.65-1.1 8.89-1.44 17.85-1.41 26.8.11 7.14.38 14.28 1.22 21.37.62 7.12 1.87 14.16 3.2 21.18 1.07 4.65 2.03 9.32 3.33 13.91 6.29 23.38 16.5 45.7 30.07 65.75 8.64 12.98 18.78 24.93 29.98 35.77 16.28 15.82 35.05 29.04 55.34 39.22 7.28 3.52 14.66 6.87 22.27 9.63 5.04 1.76 10.06 3.57 15.22 4.98 11.26 3.23 22.77 5.6 34.39 7.06 2.91.29 5.81.61 8.72.9 13.82 1.08 27.74 1 41.54-.43 4.45-.6 8.92-.99 13.35-1.78 3.63-.67 7.28-1.25 10.87-2.1 4.13-.98 8.28-1.91 12.36-3.07 26.5-7.34 51.58-19.71 73.58-36.2 15.78-11.82 29.96-25.76 42.12-41.28 3.26-4.02 6.17-8.31 9.13-12.55 3.39-5.06 6.58-10.25 9.6-15.54 2.4-4.44 4.74-8.91 6.95-13.45 5.69-12.05 10.28-24.62 13.75-37.49 2.59-10.01 4.75-20.16 5.9-30.45 1.77-13.47 1.94-27.1 1.29-40.65-.29-3.89-.67-7.77-1-11.66-2.23-19.08-6.79-37.91-13.82-55.8-5.95-15.13-13.53-29.63-22.61-43.13-12.69-18.8-28.24-35.68-45.97-49.83-25.05-20-54.47-34.55-85.65-42.08-7.78-1.93-15.69-3.34-23.63-4.45-3.91-.59-7.85-.82-11.77-1.24-7.39-.57-14.81-.72-22.22-.58zM139.26 83.53c13.3-8.89 28.08-15.38 43.3-20.18-3.17 1.77-6.44 3.38-9.53 5.29-11.21 6.68-21.52 14.9-30.38 24.49-6.8 7.43-12.76 15.73-17.01 24.89-3.29 6.86-5.64 14.19-6.86 21.71-.93 4.85-1.3 9.81-1.17 14.75.13 13.66 4.44 27.08 11.29 38.82 5.92 10.22 13.63 19.33 22.36 27.26 4.85 4.36 10.24 8.09 14.95 12.6 2.26 2.19 4.49 4.42 6.43 6.91 2.62 3.31 4.89 6.99 5.99 11.1.9 3.02.66 6.2.69 9.31.02 4.1-.04 8.2.03 12.3.14 3.54-.02 7.09.11 10.63.08 2.38.02 4.76.05 7.14.16 5.77.06 11.53.15 17.3.11 2.91.02 5.82.13 8.74.03 1.63.13 3.28-.03 4.91-.91.12-1.82.18-2.73.16-10.99 0-21.88-2.63-31.95-6.93-6-2.7-11.81-5.89-17.09-9.83-5.75-4.19-11.09-8.96-15.79-14.31-6.53-7.24-11.98-15.39-16.62-23.95-1.07-2.03-2.24-4.02-3.18-6.12-1.16-2.64-2.62-5.14-3.67-7.82-4.05-9.68-6.57-19.94-8.08-30.31-.49-4.44-1.09-8.88-1.2-13.35-.7-15.73.84-31.55 4.67-46.82 2.12-8.15 4.77-16.18 8.31-23.83 6.32-14.2 15.34-27.18 26.3-38.19 6.28-6.2 13.13-11.84 20.53-16.67zm175.37-20.12c2.74.74 5.41 1.74 8.09 2.68 6.36 2.33 12.68 4.84 18.71 7.96 13.11 6.44 25.31 14.81 35.82 24.97 10.2 9.95 18.74 21.6 25.14 34.34 1.28 2.75 2.64 5.46 3.81 8.26 6.31 15.1 10 31.26 11.23 47.57.41 4.54.44 9.09.45 13.64.07 11.64-1.49 23.25-4.3 34.53-1.97 7.27-4.35 14.49-7.86 21.18-3.18 6.64-6.68 13.16-10.84 19.24-6.94 10.47-15.6 19.87-25.82 27.22-10.48 7.64-22.64 13.02-35.4 15.38-3.51.69-7.08 1.08-10.66 1.21-1.85.06-3.72.16-5.56-.1-.28-2.15 0-4.31-.01-6.46-.03-3.73.14-7.45.1-11.17.19-7.02.02-14.05.21-21.07.03-2.38-.03-4.76.03-7.14.17-5.07-.04-10.14.14-15.21.1-2.99-.24-6.04.51-8.96.66-2.5 1.78-4.86 3.09-7.08 4.46-7.31 11.06-12.96 17.68-18.26 5.38-4.18 10.47-8.77 15.02-13.84 7.68-8.37 14.17-17.88 18.78-28.27 2.5-5.93 4.52-12.1 5.55-18.46.86-4.37 1.06-8.83 1.01-13.27-.02-7.85-1.4-15.65-3.64-23.17-1.75-5.73-4.27-11.18-7.09-16.45-3.87-6.93-8.65-13.31-13.96-19.2-9.94-10.85-21.75-19.94-34.6-27.1-1.85-1.02-3.84-1.82-5.63-2.97zm-100.8 58.45c.98-1.18 1.99-2.33 3.12-3.38-.61.93-1.27 1.81-1.95 2.68-3.1 3.88-5.54 8.31-7.03 13.06-.87 3.27-1.68 6.6-1.73 10-.07 2.52-.08 5.07.32 7.57 1.13 7.63 4.33 14.85 8.77 21.12 2 2.7 4.25 5.27 6.92 7.33 1.62 1.27 3.53 2.09 5.34 3.05 3.11 1.68 6.32 3.23 9.07 5.48 2.67 2.09 4.55 5.33 4.4 8.79-.01 73.67 0 147.34-.01 221.02 0 1.35-.08 2.7.04 4.04.13 1.48.82 2.83 1.47 4.15.86 1.66 1.78 3.34 3.18 4.62.85.77 1.97 1.4 3.15 1.24 1.5-.2 2.66-1.35 3.45-2.57.96-1.51 1.68-3.16 2.28-4.85.76-2.13.44-4.42.54-6.63.14-4.03-.02-8.06.14-12.09.03-5.89.03-11.77.06-17.66.14-3.62.03-7.24.11-10.86.15-4.03-.02-8.06.14-12.09.03-5.99.03-11.98.07-17.97.14-3.62.02-7.24.11-10.86.14-3.93-.02-7.86.14-11.78.03-5.99.03-11.98.06-17.97.16-3.94-.01-7.88.19-11.82.29 1.44.13 2.92.22 4.38.19 3.61.42 7.23.76 10.84.32 3.44.44 6.89.86 10.32.37 3.1.51 6.22.95 9.31.57 4.09.87 8.21 1.54 12.29 1.46 9.04 2.83 18.11 5.09 26.99 1.13 4.82 2.4 9.61 4 14.3 2.54 7.9 5.72 15.67 10.31 22.62 1.73 2.64 3.87 4.98 6.1 7.21.27.25.55.51.88.71.6.25 1.31-.07 1.7-.57.71-.88 1.17-1.94 1.7-2.93 4.05-7.8 8.18-15.56 12.34-23.31.7-1.31 1.44-2.62 2.56-3.61 1.75-1.57 3.84-2.69 5.98-3.63 2.88-1.22 5.9-2.19 9.03-2.42 6.58-.62 13.11.75 19.56 1.85 3.69.58 7.4 1.17 11.13 1.41 3.74.1 7.48.05 11.21-.28 8.55-.92 16.99-2.96 24.94-6.25 5.3-2.24 10.46-4.83 15.31-7.93 11.46-7.21 21.46-16.57 30.04-27.01 1.17-1.42 2.25-2.9 3.46-4.28-1.2 3.24-2.67 6.37-4.16 9.48-1.25 2.9-2.84 5.61-4.27 8.42-5.16 9.63-11.02 18.91-17.75 27.52-4.03 5.21-8.53 10.05-13.33 14.57-6.64 6.05-14.07 11.37-22.43 14.76-8.21 3.37-17.31 4.63-26.09 3.29-3.56-.58-7.01-1.69-10.41-2.88-2.79-.97-5.39-2.38-8.03-3.69-3.43-1.71-6.64-3.81-9.71-6.08 2.71 3.06 5.69 5.86 8.7 8.61 4.27 3.76 8.74 7.31 13.63 10.23 3.98 2.45 8.29 4.4 12.84 5.51 1.46.37 2.96.46 4.45.6-1.25 1.1-2.63 2.04-3.99 2.98-9.61 6.54-20.01 11.86-30.69 16.43-20.86 8.7-43.17 13.97-65.74 15.34-4.66.24-9.32.36-13.98.36-4.98-.11-9.97-.13-14.92-.65-11.2-.76-22.29-2.73-33.17-5.43-10.35-2.71-20.55-6.12-30.3-10.55-8.71-3.86-17.12-8.42-24.99-13.79-1.83-1.31-3.74-2.53-5.37-4.08 6.6-1.19 13.03-3.39 18.99-6.48 5.74-2.86 10.99-6.66 15.63-11.07 2.24-2.19 4.29-4.59 6.19-7.09-3.43 2.13-6.93 4.15-10.62 5.78-4.41 2.16-9.07 3.77-13.81 5.02-5.73 1.52-11.74 1.73-17.61 1.14-8.13-.95-15.86-4.27-22.51-8.98-4.32-2.94-8.22-6.43-11.96-10.06-9.93-10.16-18.2-21.81-25.66-33.86-3.94-6.27-7.53-12.75-11.12-19.22-1.05-2.04-2.15-4.05-3.18-6.1 2.85 2.92 5.57 5.97 8.43 8.88 8.99 8.97 18.56 17.44 29.16 24.48 7.55 4.9 15.67 9.23 24.56 11.03 3.11.73 6.32.47 9.47.81 2.77.28 5.56.2 8.34.3 5.05.06 10.11.04 15.16-.16 3.65-.16 7.27-.66 10.89-1.09 2.07-.25 4.11-.71 6.14-1.2 3.88-.95 8.11-.96 11.83.61 4.76 1.85 8.44 5.64 11.38 9.71 2.16 3.02 4.06 6.22 5.66 9.58 1.16 2.43 2.46 4.79 3.55 7.26 1 2.24 2.15 4.42 3.42 6.52.67 1.02 1.4 2.15 2.62 2.55 1.06-.75 1.71-1.91 2.28-3.03 2.1-4.16 3.42-8.65 4.89-13.05 2.02-6.59 3.78-13.27 5.19-20.02 2.21-9.25 3.25-18.72 4.54-28.13.56-3.98.83-7.99 1.31-11.97.87-10.64 1.9-21.27 2.24-31.94.08-1.86.24-3.71.25-5.57.01-4.35.25-8.69.22-13.03-.01-2.38-.01-4.76 0-7.13.05-5.07-.2-10.14-.22-15.21-.2-6.61-.71-13.2-1.29-19.78-.73-5.88-1.55-11.78-3.12-17.51-2.05-7.75-5.59-15.03-9.8-21.82-3.16-5.07-6.79-9.88-11.09-14.03-3.88-3.86-8.58-7.08-13.94-8.45-1.5-.41-3.06-.45-4.59-.64.07-2.99.7-5.93 1.26-8.85 1.59-7.71 3.8-15.3 6.76-22.6 1.52-4.03 3.41-7.9 5.39-11.72 3.45-6.56 7.62-12.79 12.46-18.46zm31.27 1.7c.35-.06.71-.12 1.07-.19.19 1.79.09 3.58.1 5.37v38.13c-.01 1.74.13 3.49-.15 5.22-.36-.03-.71-.05-1.06-.05-.95-3.75-1.72-7.55-2.62-11.31-.38-1.53-.58-3.09-1.07-4.59-1.7-.24-3.43-.17-5.15-.2-5.06-.01-10.13 0-15.19-.01-1.66-.01-3.32.09-4.98-.03-.03-.39-.26-.91.16-1.18 1.28-.65 2.72-.88 4.06-1.35 3.43-1.14 6.88-2.16 10.31-3.31 1.39-.48 2.9-.72 4.16-1.54.04-.56.02-1.13-.05-1.68-1.23-.55-2.53-.87-3.81-1.28-3.13-1.03-6.29-1.96-9.41-3.02-1.79-.62-3.67-1-5.41-1.79-.03-.37-.07-.73-.11-1.09 5.09-.19 10.2.06 15.3-.12 3.36-.13 6.73.08 10.09-.07.12-.39.26-.77.37-1.16 1.08-4.94 2.33-9.83 3.39-14.75zm5.97-.2c.36.05.72.12 1.08.2.98 3.85 1.73 7.76 2.71 11.61.36 1.42.56 2.88 1.03 4.27 2.53.18 5.07-.01 7.61.05 5.16.12 10.33.12 15.49.07.76-.01 1.52.03 2.28.08-.04.36-.07.72-.1 1.08-1.82.83-3.78 1.25-5.67 1.89-3.73 1.23-7.48 2.39-11.22 3.57-.57.17-1.12.42-1.67.64-.15.55-.18 1.12-.12 1.69.87.48 1.82.81 2.77 1.09 4.88 1.52 9.73 3.14 14.63 4.6.38.13.78.27 1.13.49.4.27.23.79.15 1.18-1.66.13-3.31.03-4.97.04-5.17.01-10.33-.01-15.5.01-1.61.03-3.22-.02-4.82.21-.52 1.67-.72 3.42-1.17 5.11-.94 3.57-1.52 7.24-2.54 10.78-.36.01-.71.02-1.06.06-.29-1.73-.15-3.48-.15-5.22v-38.13c.02-1.78-.08-3.58.11-5.37zM65.05 168.33c1.12-2.15 2.08-4.4 3.37-6.46-1.82 7.56-2.91 15.27-3.62 23-.8 7.71-.85 15.49-.54 23.23 1.05 19.94 5.54 39.83 14.23 57.88 2.99 5.99 6.35 11.83 10.5 17.11 6.12 7.47 12.53 14.76 19.84 21.09 4.8 4.1 9.99 7.78 15.54 10.8 3.27 1.65 6.51 3.39 9.94 4.68 5.01 2.03 10.19 3.61 15.42 4.94 3.83.96 7.78 1.41 11.52 2.71 5 1.57 9.47 4.61 13.03 8.43 4.93 5.23 8.09 11.87 10.2 18.67.99 2.9 1.59 5.91 2.17 8.92.15.75.22 1.52.16 2.29-6.5 2.78-13.26 5.06-20.26 6.18-4.11.78-8.29.99-12.46 1.08-10.25.24-20.47-1.76-30.12-5.12-3.74-1.42-7.49-2.85-11.03-4.72-8.06-3.84-15.64-8.7-22.46-14.46-2.92-2.55-5.83-5.13-8.4-8.03-9.16-9.83-16.3-21.41-21.79-33.65-2.39-5.55-4.61-11.18-6.37-16.96-1.17-3.94-2.36-7.89-3.26-11.91-.75-2.94-1.22-5.95-1.87-8.92-.46-2.14-.69-4.32-1.03-6.48-.85-5.43-1.28-10.93-1.33-16.43.11-6.18.25-12.37 1.07-18.5.4-2.86.67-5.74 1.15-8.6.98-5.7 2.14-11.37 3.71-16.93 3.09-11.65 7.48-22.95 12.69-33.84zm363.73-6.44c1.1 1.66 1.91 3.48 2.78 5.26 2.1 4.45 4.24 8.9 6.02 13.49 7.61 18.76 12.3 38.79 13.04 59.05.02 1.76.07 3.52.11 5.29.13 9.57-1.27 19.09-3.18 28.45-.73 3.59-1.54 7.17-2.58 10.69-4.04 14.72-10 29-18.41 41.78-8.21 12.57-19.01 23.55-31.84 31.41-5.73 3.59-11.79 6.64-18.05 9.19-5.78 2.19-11.71 4.03-17.8 5.11-6.4 1.05-12.91 1.52-19.4 1.23-7.92-.48-15.78-2.07-23.21-4.85-1.94-.8-3.94-1.46-5.84-2.33-.21-1.51.25-2.99.53-4.46 1.16-5.74 3.03-11.36 5.7-16.58 2.37-4.51 5.52-8.65 9.46-11.9 2.43-2.05 5.24-3.61 8.16-4.83 3.58-1.5 7.47-1.97 11.24-2.83 7.23-1.71 14.37-3.93 21.15-7 10.35-4.65 19.71-11.38 27.65-19.46 1.59-1.61 3.23-3.18 4.74-4.87 3.37-3.76 6.71-7.57 9.85-11.53 7.48-10.07 12.82-21.59 16.71-33.48 1.58-5.3 3.21-10.6 4.21-16.05.63-2.87 1.04-5.78 1.52-8.68.87-6.09 1.59-12.22 1.68-18.38.12-6.65.14-13.32-.53-19.94-.73-7.99-1.87-15.96-3.71-23.78z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faOldRepublic = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOpencart.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOpencart.d.ts new file mode 100644 index 0000000000..5cc41ea9e7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOpencart.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faOpencart: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOpencart.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOpencart.js new file mode 100644 index 0000000000..0ac9a7dfd5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOpencart.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'opencart'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f23d'; +var svgPathData = 'M423.3 440.7c0 25.3-20.3 45.6-45.6 45.6s-45.8-20.3-45.8-45.6 20.6-45.8 45.8-45.8c25.4 0 45.6 20.5 45.6 45.8zm-253.9-45.8c-25.3 0-45.6 20.6-45.6 45.8s20.3 45.6 45.6 45.6 45.8-20.3 45.8-45.6-20.5-45.8-45.8-45.8zm291.7-270C158.9 124.9 81.9 112.1 0 25.7c34.4 51.7 53.3 148.9 373.1 144.2 333.3-5 130 86.1 70.8 188.9 186.7-166.7 319.4-233.9 17.2-233.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faOpencart = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOpenid.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOpenid.d.ts new file mode 100644 index 0000000000..7826d9d092 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOpenid.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faOpenid: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOpenid.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOpenid.js new file mode 100644 index 0000000000..aaead3af1e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOpenid.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'openid'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f19b'; +var svgPathData = 'M271.5 432l-68 32C88.5 453.7 0 392.5 0 318.2c0-71.5 82.5-131 191.7-144.3v43c-71.5 12.5-124 53-124 101.3 0 51 58.5 93.3 135.7 103v-340l68-33.2v384zM448 291l-131.3-28.5 36.8-20.7c-19.5-11.5-43.5-20-70-24.8v-43c46.2 5.5 87.7 19.5 120.3 39.3l35-19.8L448 291z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faOpenid = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOpera.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOpera.d.ts new file mode 100644 index 0000000000..7367809cd1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOpera.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faOpera: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOpera.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOpera.js new file mode 100644 index 0000000000..2ab839208d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOpera.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'opera'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f26a'; +var svgPathData = 'M313.9 32.7c-170.2 0-252.6 223.8-147.5 355.1 36.5 45.4 88.6 75.6 147.5 75.6 36.3 0 70.3-11.1 99.4-30.4-43.8 39.2-101.9 63-165.3 63-3.9 0-8 0-11.9-.3C104.6 489.6 0 381.1 0 248 0 111 111 0 248 0h.8c63.1.3 120.7 24.1 164.4 63.1-29-19.4-63.1-30.4-99.3-30.4zm101.8 397.7c-40.9 24.7-90.7 23.6-132-5.8 56.2-20.5 97.7-91.6 97.7-176.6 0-84.7-41.2-155.8-97.4-176.6 41.8-29.2 91.2-30.3 132.9-5 105.9 98.7 105.5 265.7-1.2 364z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faOpera = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOptinMonster.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOptinMonster.d.ts new file mode 100644 index 0000000000..655c23be40 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOptinMonster.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faOptinMonster: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOptinMonster.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOptinMonster.js new file mode 100644 index 0000000000..43e2800bbe --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOptinMonster.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'optin-monster'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f23c'; +var svgPathData = 'M550.671 450.303c0 11.62-15.673 19.457-32.158 14.863-12.16-3.243-31.346-17.565-36.211-27.294-5.674-11.62 4.054-32.698 18.916-30.806 15.674 1.621 49.453 25.401 49.453 43.237zM372.86 75.223c-3.783-72.151-100.796-79.718-125.928-23.51 44.588-24.321 90.257-15.673 125.928 23.51zM74.795 407.066c-15.673 1.621-49.452 25.401-49.452 43.237 0 11.62 15.673 19.457 32.157 14.863 12.16-3.243 31.076-17.565 35.94-27.294 5.946-11.62-3.782-32.698-18.645-30.806zm497.765 14.322c1.081 3.513 1.892 7.026 1.892 10.809.81 31.616-44.317 64.045-73.503 65.125-17.295.81-34.59-8.377-42.696-23.51-113.497 4.053-226.994 4.864-340.22 0-8.377 15.133-25.672 24.05-42.967 23.51-28.915-1.081-74.043-33.509-73.503-65.125.27-3.783.811-7.296 1.892-10.809-5.566-9.463-4.845-15.282 5.405-11.62 3.243-5.134 7.026-9.458 11.08-13.782-2.57-10.917 1.27-14.094 11.079-9.188 4.594-3.243 9.998-6.485 15.944-9.188 0-15.757 11.839-11.131 17.295-5.675 12.467-1.78 20.129.709 26.753 5.675v-19.726c-12.987 0-40.641-11.375-45.94-36.212-4.974-20.725 2.607-38.075 25.132-47.56.81-5.945 8.107-14.052 14.862-15.944 7.567-1.892 12.431 4.594 14.052 10.269 7.425 0 17.757 1.465 21.078 8.107 5.405-.541 11.079-1.352 16.484-1.892-2.432-1.892-5.134-3.513-8.107-4.594-5.134-8.917-13.782-11.079-24.591-11.62 0-.81 0-1.621.27-2.702-19.727-.541-44.048-5.675-54.857-17.835-21.321-23.638-15.935-83.577 12.16-103.498 8.377-5.675 21.618-.811 22.699 9.728 2.425 20.598.399 26.833 26.212 25.942 8.107-7.836 16.755-14.592 26.483-19.997-14.862-1.352-28.914 1.621-43.778 3.783 12.752-12.48 23.953-25.442 56.748-42.427 23.511-11.89 49.993-20.808 76.205-23.239-18.646-7.837-39.993-11.891-59.721-16.484 76.475-16.214 174.569-22.159 244.289 37.562 18.105 15.403 32.427 36.211 42.696 59.992 39.799 4.853 36.47-5.581 38.643-25.132 1.081-10.269 14.322-15.403 22.699-9.458 14.862 10.539 22.159 30.806 24.59 48.101 2.162 17.835.27 41.345-12.43 55.127-10.809 12.16-34.32 17.565-53.776 18.105v2.703c-11.08.27-20.268 2.432-25.673 11.62-2.972 1.081-5.674 2.703-8.377 4.594 5.675.54 11.35 1.351 16.755 1.891 1.869-5.619 12.535-8.377 21.077-8.377 1.621-5.405 6.756-11.89 14.052-10.269s14.052 9.998 14.863 15.944c10.809 4.324 22.159 12.16 25.131 25.672 1.892 8.107 1.621 15.133.27 21.888-5.726 25.262-33.361 36.212-45.939 36.212 0 6.756 0 13.241-.27 19.726 8.01-6.006 16.367-7.158 26.752-5.675 5.919-5.919 17.565-9.41 17.565 5.675 5.675 2.703 11.349 5.945 15.944 9.188 10.1-5.051 13.669-.539 10.809 9.188 4.053 4.323 8.107 8.917 11.079 13.782 10.136-3.62 11.021 2.078 5.409 11.62zm-73.773-254.016c17.295 6.756 26.212 22.159 30.265 35.67 1.081-10.539-2.702-39.453-13.782-51.073-7.296-7.296-14.052-5.134-14.052.81.001 6.216-1.35 11.62-2.431 14.593zm-18.646 12.43c12.971 15.673 17.024 41.615 12.7 62.963 10.809-2.162 20.537-6.215 26.212-12.16 1.892-2.162 3.783-4.864 4.864-7.566-1.081-21.348-10.269-42.697-29.725-48.912-3.242 3.243-9.187 4.864-14.051 5.675zm-21.889.811c7.567 20.537 12.431 42.696 14.322 64.585 3.513 0 7.567-.27 11.62-.811 5.945-24.321-.27-51.614-14.052-63.504-3.783 0-8.107 0-11.89-.27zM77.768 167.372c-1.081-2.973-2.432-8.377-2.432-14.593 0-5.945-7.026-8.107-14.052-.81-11.35 11.62-14.863 40.534-13.782 51.073 4.053-13.512 12.971-28.915 30.266-35.67zm5.675 75.394c-4.324-21.348-.27-47.291 12.701-62.963-4.865-.811-10.809-2.432-14.052-5.675-19.457 6.215-28.375 27.563-29.726 48.912 1.351 2.702 2.972 5.404 4.864 7.566 5.675 6.215 15.403 9.998 26.213 12.16zm41.345-61.073c-5.134 1.081-9.998 2.973-14.862 4.865l-12.16 5.134v-.27c-7.296 14.052-9.999 34.319-5.405 52.965 4.594.541 8.647.811 12.7.811 2.432-22.159 9.188-43.778 19.727-63.505zm88.095-23.239c0 42.155 34.319 76.205 76.205 76.205s76.205-34.05 76.205-76.205c0-41.886-34.319-75.935-76.205-75.935s-76.205 34.049-76.205 75.935zm152.41 97.283c9.969 50.608 3.299 64.692 16.484 58.099 15.944-8.107 22.699-39.183 22.97-57.019-12.971-.81-26.213-.81-39.454-1.08zm-71.611-.541v-.27c-.27 5.134.27 38.103 4.324 41.075 11.079 5.405 39.453 4.594 51.073 1.081 5.405-1.621 2.432-37.022 1.621-41.886-18.916-.27-38.102-.27-57.018 0zm-14.053 0v-.27c-19.456.27-38.642.27-57.829.811-1.892 9.187-4.594 48.911 1.892 51.614 12.971 5.675 41.616 5.134 54.586 1.621 4.595-2.432 2.433-45.399 1.351-53.776zm-85.662 57.56c5.405 2.432 8.647 2.432 9.728-4.324 1.892-8.647 2.432-36.752 4.865-52.155-12.16.27-24.591.811-36.752 1.621-5.405 19.727.27 45.129 22.159 54.858zm-65.666-11.08c43.778 47.02 92.689 85.663 155.923 106.47 67.558-19.186 115.659-59.991 163.219-107.011-11.095-4.315-7.715-10.363-7.296-11.62-8.918-.81-17.835-1.892-26.483-2.702-9.458 32.968-35.94 52.965-46.75 31.616-2.702-5.134-3.513-11.62-4.594-16.754-3.783 8.377-13.242 8.107-24.591 8.918-13.241 1.081-31.617 1.351-44.048-2.972-2.972 12.971-11.079 12.971-26.752 14.322-14.052 1.352-48.642 4.054-54.857-10.809-1.081 28.644-35.13 9.998-45.129-7.026-3.243-5.675-5.405-11.35-7.026-17.565-7.837.81-15.673 1.621-23.511 2.702 2.443 3.663 1.549 9.052-8.105 12.431zM115.6 453.545c-5.674-23.239-18.646-49.722-33.508-54.046-22.429-6.756-68.909 23.51-66.207 54.586 12.701 19.457 39.994 35.67 59.181 36.481 17.835.81 35.94-11.08 39.724-28.914.539-2.432.81-5.134.81-8.107zm7.296-5.944c33.509-19.457 69.179-35.671 105.931-47.02-38.643-20.537-68.098-47.831-97.283-77.016-2.162 1.352-5.134 2.432-7.836 3.513-1.637 4.91 8.718 5.33 5.405 12.431-2.162 4.054-8.648 7.567-15.133 9.188-2.161 2.702-5.134 4.864-7.836 6.485h-.27c-.27 13.511-.27 27.024.27 40.535 8.939 15.964 15.426 33.314 16.752 51.884zm320.764 12.7c-36.752-21.348-74.044-41.345-115.659-52.965-13.782 6.215-27.833 11.349-42.155 15.403-2.162.811-2.162.811-4.324 0-11.89-3.783-23.239-8.107-34.859-13.241-40.265 11.62-77.286 29.185-112.416 50.803h-.27v.27c.27 0 .27 0 .27-.27 103.227 4.054 206.455 3.513 309.413 0zm27.023-64.045l-.27.27c.541-13.782.811-27.563.811-41.345-2.973-1.621-5.675-4.054-8.107-6.756-6.485-1.351-12.971-5.134-15.133-8.918-1.892-4.053 1.351-7.566 5.945-10.269-.27-.541-.541-1.621-.541-2.432-2.972-.811-5.405-1.892-7.567-3.243-31.616 29.455-65.396 56.749-103.498 76.746 38.914 11.62 75.935 28.104 111.875 47.561 1.05-14.692 7.231-35.749 16.485-51.614zm23.24 3.244c-14.593 4.323-27.834 30.806-33.509 54.046 0 23.826 21.278 37.897 40.534 37.022 19.186-.811 46.48-17.024 59.181-36.481 2.973-31.077-43.507-61.344-66.206-54.587zM290.709 134.133c.045 0 .089.003.134.003.046 0 .09-.003.136-.003h-.27zm0 96.743c28.645 0 51.884-21.618 51.884-48.371 0-36.092-40.507-58.079-72.151-44.318 9.458 2.972 16.484 11.62 16.484 21.618 0 23.257-33.291 31.955-46.48 11.35-7.297 34.067 19.368 59.721 50.263 59.721zM68.039 474.083c.54 6.486 12.16 12.701 21.618 9.458 6.756-2.703 14.593-10.539 17.295-16.214 2.973-7.026-1.081-19.997-9.728-18.375-8.917 1.621-29.725 16.754-29.185 25.131zm410.75-25.131c-8.377-1.621-12.431 11.349-9.458 18.375 2.432 5.675 10.269 13.511 17.295 16.214 9.187 3.243 21.078-2.972 21.348-9.458.811-8.377-20.267-23.51-29.185-25.131z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faOptinMonster = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOsi.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOsi.d.ts new file mode 100644 index 0000000000..4480fa1010 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOsi.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faOsi: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOsi.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOsi.js new file mode 100644 index 0000000000..86a4ac4b3f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faOsi.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'osi'; +var width = 495; +var height = 512; +var ligatures = []; +var unicode = 'f41a'; +var svgPathData = 'M0 259.2C2.3 123.4 97.4 26.8 213.8 11.1c138.8-18.6 255.6 75.8 278 201.1 21.3 118.8-44 230-151.6 274-9.3 3.8-14.4 1.7-18-7.7-17.8-46.3-35.6-92.7-53.4-139-3.1-8.1-1-13.2 7-16.8 24.2-11 39.3-29.4 43.3-55.8 6.4-42.4-24.5-78.7-64.5-82.2-39-3.4-71.8 23.7-77.5 59.7-5.2 33 11.1 63.7 41.9 77.7 9.6 4.4 11.5 8.6 7.8 18.4-17.9 46.6-35.8 93.2-53.7 139.9-2.6 6.9-8.3 9.3-15.5 6.5-52.6-20.3-101.4-61-130.8-119C1.9 318.7 1.6 280.2 0 259.2zm20.9-1.9c.4 6.6.6 14.3 1.3 22.1 6.3 71.9 49.6 143.5 131 183.1 3.2 1.5 4.4.8 5.6-2.3 14.9-39.1 29.9-78.2 45-117.3 1.3-3.3.6-4.8-2.4-6.7-31.6-19.9-47.3-48.5-45.6-86 1-21.6 9.3-40.5 23.8-56.3 30-32.7 77-39.8 115.5-17.6 31.9 18.4 49.5 53.8 45.2 90.4-3.6 30.6-19.3 53.9-45.7 69.8-2.7 1.6-3.5 2.9-2.3 6 15.2 39.2 30.2 78.4 45.2 117.7 1.2 3.1 2.4 3.8 5.6 2.3 35.5-16.6 65.2-40.3 88.1-72 34.8-48.2 49.1-101.9 42.3-161C459.8 112 354.1 14.7 218 31.5 111.9 44.5 22.7 134 20.9 257.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faOsi = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPage4.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPage4.d.ts new file mode 100644 index 0000000000..6fd75d91ab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPage4.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPage4: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPage4.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPage4.js new file mode 100644 index 0000000000..90115d2e9a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPage4.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'page4'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f3d7'; +var svgPathData = 'M248 504C111 504 0 393 0 256S111 8 248 8c20.9 0 41.3 2.6 60.7 7.5L42.3 392H248v112zm0-143.6V146.8L98.6 360.4H248zm96 31.6v92.7c45.7-19.2 84.5-51.7 111.4-92.7H344zm57.4-138.2l-21.2 8.4 21.2 8.3v-16.7zm-20.3 54.5c-6.7 0-8 6.3-8 12.9v7.7h16.2v-10c0-5.9-2.3-10.6-8.2-10.6zM496 256c0 37.3-8.2 72.7-23 104.4H344V27.3C433.3 64.8 496 153.1 496 256zM360.4 143.6h68.2V96h-13.9v32.6h-13.9V99h-13.9v29.6h-12.7V96h-13.9v47.6zm68.1 185.3H402v-11c0-15.4-5.6-25.2-20.9-25.2-15.4 0-20.7 10.6-20.7 25.9v25.3h68.2v-15zm0-103l-68.2 29.7V268l68.2 29.5v-16.6l-14.4-5.7v-26.5l14.4-5.9v-16.9zm-4.8-68.5h-35.6V184H402v-12.2h11c8.6 15.8 1.3 35.3-18.6 35.3-22.5 0-28.3-25.3-15.5-37.7l-11.6-10.6c-16.2 17.5-12.2 63.9 27.1 63.9 34 0 44.7-35.9 29.3-65.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPage4 = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPagelines.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPagelines.d.ts new file mode 100644 index 0000000000..d434bbad2b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPagelines.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPagelines: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPagelines.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPagelines.js new file mode 100644 index 0000000000..e58958ca68 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPagelines.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'pagelines'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f18c'; +var svgPathData = 'M384 312.7c-55.1 136.7-187.1 54-187.1 54-40.5 81.8-107.4 134.4-184.6 134.7-16.1 0-16.6-24.4 0-24.4 64.4-.3 120.5-42.7 157.2-110.1-41.1 15.9-118.6 27.9-161.6-82.2 109-44.9 159.1 11.2 178.3 45.5 9.9-24.4 17-50.9 21.6-79.7 0 0-139.7 21.9-149.5-98.1 119.1-47.9 152.6 76.7 152.6 76.7 1.6-16.7 3.3-52.6 3.3-53.4 0 0-106.3-73.7-38.1-165.2 124.6 43 61.4 162.4 61.4 162.4.5 1.6.5 23.8 0 33.4 0 0 45.2-89 136.4-57.5-4.2 134-141.9 106.4-141.9 106.4-4.4 27.4-11.2 53.4-20 77.5 0 0 83-91.8 172-20z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPagelines = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPalfed.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPalfed.d.ts new file mode 100644 index 0000000000..5f09a5cfb6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPalfed.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPalfed: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPalfed.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPalfed.js new file mode 100644 index 0000000000..c292a847c3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPalfed.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'palfed'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f3d8'; +var svgPathData = 'M384.9 193.9c0-47.4-55.2-44.2-95.4-29.8-1.3 39.4-2.5 80.7-3 119.8.7 2.8 2.6 6.2 15.1 6.2 36.8 0 83.4-42.8 83.3-96.2zm-194.5 72.2c.2 0 6.5-2.7 11.2-2.7 26.6 0 20.7 44.1-14.4 44.1-21.5 0-37.1-18.1-37.1-43 0-42 42.9-95.6 100.7-126.5 1-12.4 3-22 10.5-28.2 11.2-9 26.6-3.5 29.5 11.1 72.2-22.2 135.2 1 135.2 72 0 77.9-79.3 152.6-140.1 138.2-.1 39.4.9 74.4 2.7 100v.2c.2 3.4.6 12.5-5.3 19.1-9.6 10.6-33.4 10-36.4-22.3-4.1-44.4.2-206.1 1.4-242.5-21.5 15-58.5 50.3-58.5 75.9.2 2.5.4 4 .6 4.6zM8 181.1s-.1 37.4 38.4 37.4h30l22.4 217.2s0 44.3 44.7 44.3h288.9s44.7-.4 44.7-44.3l22.4-217.2h30s38.4 1.2 38.4-37.4c0 0 .1-37.4-38.4-37.4h-30.1c-7.3-25.6-30.2-74.3-119.4-74.3h-28V50.3s-2.7-18.4-21.1-18.4h-85.8s-21.1 0-21.1 18.4v19.1h-28.1s-105 4.2-120.5 74.3h-29S8 142.5 8 181.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPalfed = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPatreon.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPatreon.d.ts new file mode 100644 index 0000000000..90bf3a142b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPatreon.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPatreon: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPatreon.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPatreon.js new file mode 100644 index 0000000000..8739bc8714 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPatreon.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'patreon'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f3d9'; +var svgPathData = 'M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPatreon = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPaypal.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPaypal.d.ts new file mode 100644 index 0000000000..d605d714c7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPaypal.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPaypal: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPaypal.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPaypal.js new file mode 100644 index 0000000000..d4904dbc5e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPaypal.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'paypal'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f1ed'; +var svgPathData = 'M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPaypal = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPeriscope.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPeriscope.d.ts new file mode 100644 index 0000000000..d894d3b46d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPeriscope.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPeriscope: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPeriscope.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPeriscope.js new file mode 100644 index 0000000000..97c6169e77 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPeriscope.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'periscope'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f3da'; +var svgPathData = 'M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPeriscope = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhabricator.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhabricator.d.ts new file mode 100644 index 0000000000..177e2f3c54 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhabricator.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPhabricator: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhabricator.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhabricator.js new file mode 100644 index 0000000000..a083edbbf8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhabricator.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'phabricator'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f3db'; +var svgPathData = 'M323 262.1l-.1-13s21.7-19.8 21.1-21.2l-9.5-20c-.6-1.4-29.5-.5-29.5-.5l-9.4-9.3s.2-28.5-1.2-29.1l-20.1-9.2c-1.4-.6-20.7 21-20.7 21l-13.1-.2s-20.5-21.4-21.9-20.8l-20 8.3c-1.4.5.2 28.9.2 28.9l-9.1 9.1s-29.2-.9-29.7.4l-8.1 19.8c-.6 1.4 21 21 21 21l.1 12.9s-21.7 19.8-21.1 21.2l9.5 20c.6 1.4 29.5.5 29.5.5l9.4 9.3s-.2 31.8 1.2 32.3l20.1 8.3c1.4.6 20.7-23.5 20.7-23.5l13.1.2s20.5 23.8 21.8 23.3l20-7.5c1.4-.6-.2-32.1-.2-32.1l9.1-9.1s29.2.9 29.7-.5l8.1-19.8c.7-1.1-20.9-20.7-20.9-20.7zm-44.9-8.7c.7 17.1-12.8 31.6-30.1 32.4-17.3.8-32.1-12.5-32.8-29.6-.7-17.1 12.8-31.6 30.1-32.3 17.3-.8 32.1 12.5 32.8 29.5zm201.2-37.9l-97-97-.1.1c-75.1-73.3-195.4-72.8-269.8 1.6-50.9 51-27.8 27.9-95.7 95.3-22.3 22.3-22.3 58.7 0 81 69.9 69.4 46.4 46 97.4 97l.1-.1c75.1 73.3 195.4 72.9 269.8-1.6 51-50.9 27.9-27.9 95.3-95.3 22.3-22.3 22.3-58.7 0-81zM140.4 363.8c-59.6-59.5-59.6-156 0-215.5 59.5-59.6 156-59.5 215.6 0 59.5 59.5 59.6 156 0 215.6-59.6 59.5-156 59.4-215.6-.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPhabricator = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhoenixFramework.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhoenixFramework.d.ts new file mode 100644 index 0000000000..926f6be87f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhoenixFramework.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPhoenixFramework: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhoenixFramework.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhoenixFramework.js new file mode 100644 index 0000000000..ca181c1b5a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhoenixFramework.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'phoenix-framework'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f3dc'; +var svgPathData = 'M212.9 344.3c3.8-.1 22.8-1.4 25.6-2.2-2.4-2.6-43.6-1-68-49.6-4.3-8.6-7.5-17.6-6.4-27.6 2.9-25.5 32.9-30 52-18.5 36 21.6 63.3 91.3 113.7 97.5 37 4.5 84.6-17 108.2-45.4-.6-.1-.8-.2-1-.1-.4.1-.8.2-1.1.3-33.3 12.1-94.3 9.7-134.7-14.8-37.6-22.8-53.1-58.7-51.8-74.6 1.8-21.3 22.9-23.2 35.9-19.6 14.4 3.9 24.4 17.6 38.9 27.4 15.6 10.4 32.9 13.7 51.3 10.3 14.9-2.7 34.4-12.3 36.5-14.5-1.1-.1-1.8-.1-2.5-.2-6.2-.6-12.4-.8-18.5-1.7C279.8 194.5 262.1 47.4 138.5 37.9 94.2 34.5 39.1 46 2.2 72.9c-.8.6-1.5 1.2-2.2 1.8.1.2.1.3.2.5.8 0 1.6-.1 2.4-.2 6.3-1 12.5-.8 18.7.3 23.8 4.3 47.7 23.1 55.9 76.5 5.3 34.3-.7 50.8 8 86.1 19 77.1 91 107.6 127.7 106.4zM75.3 64.9c-.9-1-.9-1.2-1.3-2 12.1-2.6 24.2-4.1 36.6-4.8-1.1 14.7-22.2 21.3-35.3 6.8zm196.9 350.5c-42.8 1.2-92-26.7-123.5-61.4-4.6-5-16.8-20.2-18.6-23.4l.4-.4c6.6 4.1 25.7 18.6 54.8 27 24.2 7 48.1 6.3 71.6-3.3 22.7-9.3 41-.5 43.1 2.9-18.5 3.8-20.1 4.4-24 7.9-5.1 4.4-4.6 11.7 7 17.2 26.2 12.4 63-2.8 97.2 25.4 2.4 2 8.1 7.8 10.1 10.7-.1.2-.3.3-.4.5-4.8-1.5-16.4-7.5-40.2-9.3-24.7-2-46.3 5.3-77.5 6.2zm174.8-252c16.4-5.2 41.3-13.4 66.5-3.3 16.1 6.5 26.2 18.7 32.1 34.6 3.5 9.4 5.1 19.7 5.1 28.7-.2 0-.4 0-.6.1-.2-.4-.4-.9-.5-1.3-5-22-29.9-43.8-67.6-29.9-50.2 18.6-130.4 9.7-176.9-48-.7-.9-2.4-1.7-1.3-3.2.1-.2 2.1.6 3 1.3 18.1 13.4 38.3 21.9 60.3 26.2 30.5 6.1 54.6 2.9 79.9-5.2zm102.7 117.5c-32.4.2-33.8 50.1-103.6 64.4-18.2 3.7-38.7 4.6-44.9 4.2v-.4c2.8-1.5 14.7-2.6 29.7-16.6 7.9-7.3 15.3-15.1 22.8-22.9 19.5-20.2 41.4-42.2 81.9-39 23.1 1.8 29.3 8.2 36.1 12.7.3.2.4.5.7.9-.5 0-.7.1-.9 0-7-2.7-14.3-3.3-21.8-3.3zm-12.3-24.1c-.1.2-.1.4-.2.6-28.9-4.4-48-7.9-68.5 4-17 9.9-31.4 20.5-62 24.4-27.1 3.4-45.1 2.4-66.1-8-.3-.2-.6-.4-1-.6 0-.2.1-.3.1-.5 24.9 3.8 36.4 5.1 55.5-5.8 22.3-12.9 40.1-26.6 71.3-31 29.6-4.1 51.3 2.5 70.9 16.9zM268.6 97.3c-.6-.6-1.1-1.2-2.1-2.3 7.6 0 29.7-1.2 53.4 8.4 19.7 8 32.2 21 50.2 32.9 11.1 7.3 23.4 9.3 36.4 8.1 4.3-.4 8.5-1.2 12.8-1.7.4-.1.9 0 1.5.3-.6.4-1.2.9-1.8 1.2-8.1 4-16.7 6.3-25.6 7.1-26.1 2.6-50.3-3.7-73.4-15.4-19.3-9.9-36.4-22.9-51.4-38.6zM640 335.7c-3.5 3.1-22.7 11.6-42.7 5.3-12.3-3.9-19.5-14.9-31.6-24.1-10-7.6-20.9-7.9-28.1-8.4.6-.8.9-1.2 1.2-1.4 14.8-9.2 30.5-12.2 47.3-6.5 12.5 4.2 19.2 13.5 30.4 24.2 10.8 10.4 21 9.9 23.1 10.5.1-.1.2 0 .4.4zm-212.5 137c2.2 1.2 1.6 1.5 1.5 2-18.5-1.4-33.9-7.6-46.8-22.2-21.8-24.7-41.7-27.9-48.6-29.7.5-.2.8-.4 1.1-.4 13.1.1 26.1.7 38.9 3.9 25.3 6.4 35 25.4 41.6 35.3 3.2 4.8 7.3 8.3 12.3 11.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPhoenixFramework = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhoenixSquadron.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhoenixSquadron.d.ts new file mode 100644 index 0000000000..6607b67901 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhoenixSquadron.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPhoenixSquadron: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhoenixSquadron.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhoenixSquadron.js new file mode 100644 index 0000000000..3ba8526d91 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhoenixSquadron.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'phoenix-squadron'; +var width = 513; +var height = 512; +var ligatures = []; +var unicode = 'f511'; +var svgPathData = 'M96.24 62.81C142.91 26.57 202.15 6.57 261.28 8.08c29.67-.38 59.29 5.38 87.17 15.37-24.2-4.64-49.18-6.35-73.6-2.45-43 5.35-83.26 27.23-112.16 59.35 5.69-.99 10.81-3.68 16.07-5.88 18.19-7.89 37.6-13.29 57.4-14.87 19.8-2.14 39.75-.43 59.45 1.93-14.46 2.79-29.2 4.58-43.11 9.61-34.53 11.11-65.46 33.26-86.55 62.82-13.84 19.77-23.7 42.99-24.74 67.33-.35 16.54 5.23 34.91 19.89 44.17 11.13 6.66 24.85 9.39 37.63 6.76 15.49-2.47 30.16-8.67 43.73-16.38 11.55-6.84 22.73-14.59 32.05-24.32 3.8-3.23 2.54-8.48 2.63-12.83-2.13-.34-4.4-1.11-6.32.3a203.975 203.975 0 0 1-35.93 15.42c-20.07 6.19-42.28 8.48-62.28.78 12.83 1.73 26.14.31 37.85-5.46 20.29-9.75 36.92-25.27 54.6-38.88 27.84-21.29 57.64-40.11 89.17-55.47 25.78-12.01 53.09-22.85 81.81-24.2-15.68 13.76-32.25 26.6-46.92 41.51-14.55 14.04-27.54 29.58-40.23 45.31-3.53 4.61-8.98 6.96-13.62 10.19-22.24 15.03-40.6 35.96-52.04 60.28-9.36 19.74-14.55 41.97-11.81 63.84 1.95 13.73 8.74 27.67 20.96 35.01 12.94 7.99 29.14 8.09 43.61 5.11 32.9-7.47 61.61-28.97 81.28-56 20.5-27.6 30.61-62.38 29.25-96.64-.52-7.52-1.58-15-1.67-22.55 8.02 19.54 14.87 39.83 16.7 61.01 2.01 14.32.75 28.84-1.62 43.02-1.92 11.02-5.69 21.58-7.81 32.53 20.36-22.73 34.17-51.24 39.46-81.31 5.72-35.37.58-72.36-14.25-104.95 20.84 32.12 32.43 69.79 35.81 107.8.5 12.77.5 25.58 0 38.34-2.91 34.26-12.97 67.95-29.76 98-26.2 47.48-68.2 85.89-117.54 108.32-78.52 36.34-175.2 31.41-248.72-14.72-38.84-23.78-71.06-58.32-91.68-98.96C10.72 337.43 2.04 305.5 0 273.13V241.7c3.94-69.97 40.99-136.32 96.24-178.89m222.65 80.57c5.51-.8 10.82-2.57 16.02-4.5 4.99-1.77 9.27-5.95 10.35-11.25-8.91 5-17.95 9.95-26.37 15.75z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPhoenixSquadron = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhp.d.ts new file mode 100644 index 0000000000..8b2db266c1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPhp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhp.js new file mode 100644 index 0000000000..82a43f0c74 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPhp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'php'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f457'; +var svgPathData = 'M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPhp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiper.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiper.d.ts new file mode 100644 index 0000000000..b5ae793b9f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiper.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPiedPiper: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiper.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiper.js new file mode 100644 index 0000000000..36ee3ee75f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiper.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'pied-piper'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f2ae'; +var svgPathData = 'M32 419L0 479.2l.8-328C.8 85.3 54 32 120 32h327.2c-93 28.9-189.9 94.2-253.9 168.6C122.7 282 82.6 338 32 419M448 32S305.2 98.8 261.6 199.1c-23.2 53.6-28.9 118.1-71 158.6-28.9 27.8-69.8 38.2-105.3 56.3-23.2 12-66.4 40.5-84.9 66h328.4c66 0 119.3-53.3 119.3-119.2-.1 0-.1-328.8-.1-328.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPiedPiper = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiperAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiperAlt.d.ts new file mode 100644 index 0000000000..baafd1c31d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiperAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPiedPiperAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiperAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiperAlt.js new file mode 100644 index 0000000000..cced203923 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiperAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'pied-piper-alt'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f1a8'; +var svgPathData = 'M242 187c6.3-11.8 13.2-17 25.9-21.8 27.3-10.3 40.2-30.5 58.9-51.1 11.9 8.4 12 24.6 31.6 23v21.8l6.3.3c37.4-14.4 74.7-30.2 106.6-54.6 48.3-36.8 52.9-50 81.3-100l2-2.6c-.6 14.1-6.3 27.3-12.4 39.9-30.5 63.8-78.7 100.3-146.8 116.7-12.4 2.9-26.4 3.2-37.6 8.9 1.4 9.8 13.2 18.1 13.2 23 0 3.4-5.5 7.2-7.5 8.6-11.2-12.9-16.1-19.3-22.7-22.1-7.6-3.5-63.9-6.4-98.8 10zm137.9 256.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9L244 246zm-12.6 31.8l24.1 61.2 21-13.8-31.3-50.9-13.8 3.5zM555.5 0l-.6 1.1-.3.9.6-.6.3-1.4zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46v27.3l11.8-3.4-2.9-23.8h-8.9zm76.1 2.9c0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3l2 12.4c9-1.5 58.4-6.6 58.4-14.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPiedPiperAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiperHat.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiperHat.d.ts new file mode 100644 index 0000000000..fcf5feecd4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiperHat.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPiedPiperHat: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiperHat.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiperHat.js new file mode 100644 index 0000000000..1afd0e7730 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiperHat.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'pied-piper-hat'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f4e5'; +var svgPathData = 'M640 24.9c-80.8 53.6-89.4 92.5-96.4 104.4-6.7 12.2-11.7 60.3-23.3 83.6-11.7 23.6-54.2 42.2-66.1 50-11.7 7.8-28.3 38.1-41.9 64.2-108.1-4.4-167.4 38.8-259.2 93.6 29.4-9.7 43.3-16.7 43.3-16.7 94.2-36 139.3-68.3 281.1-49.2 1.1 0 1.9.6 2.8.8 3.9 2.2 5.3 6.9 3.1 10.8l-53.9 95.8c-2.5 4.7-7.8 7.2-13.1 6.1-126.8-23.8-226.9 17.3-318.9 18.6C24.1 488 0 453.4 0 451.8c0-1.1.6-1.7 1.7-1.7 0 0 38.3 0 103.1-15.3C178.4 294.5 244 245.4 315.4 245.4c0 0 71.7 0 90.6 61.9 22.8-39.7 28.3-49.2 28.3-49.2 5.3-9.4 35-77.2 86.4-141.4 51.5-64 90.4-79.9 119.3-91.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPiedPiperHat = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiperPp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiperPp.d.ts new file mode 100644 index 0000000000..e651fb98c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiperPp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPiedPiperPp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiperPp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiperPp.js new file mode 100644 index 0000000000..c5c4d937be --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPiedPiperPp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'pied-piper-pp'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f1a7'; +var svgPathData = 'M205.3 174.6c0 21.1-14.2 38.1-31.7 38.1-7.1 0-12.8-1.2-17.2-3.7v-68c4.4-2.7 10.1-4.2 17.2-4.2 17.5 0 31.7 16.9 31.7 37.8zm52.6 67c-7.1 0-12.8 1.5-17.2 4.2v68c4.4 2.5 10.1 3.7 17.2 3.7 17.4 0 31.7-16.9 31.7-37.8 0-21.1-14.3-38.1-31.7-38.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM185 255.1c41 0 74.2-35.6 74.2-79.6 0-44-33.2-79.6-74.2-79.6-12 0-24.1 3.2-34.6 8.8h-45.7V311l51.8-10.1v-50.6c8.6 3.1 18.1 4.8 28.5 4.8zm158.4 25.3c0-44-33.2-79.6-73.9-79.6-3.2 0-6.4.2-9.6.7-3.7 12.5-10.1 23.8-19.2 33.4-13.8 15-32.2 23.8-51.8 24.8V416l51.8-10.1v-50.6c8.6 3.2 18.2 4.7 28.7 4.7 40.8 0 74-35.6 74-79.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPiedPiperPp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPinterest.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPinterest.d.ts new file mode 100644 index 0000000000..e209e1f2f0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPinterest.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPinterest: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPinterest.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPinterest.js new file mode 100644 index 0000000000..e553467f41 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPinterest.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'pinterest'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f0d2'; +var svgPathData = 'M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3.8-3.4 5-20.3 6.9-28.1.6-2.5.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPinterest = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPinterestP.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPinterestP.d.ts new file mode 100644 index 0000000000..df39cc52bf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPinterestP.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPinterestP: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPinterestP.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPinterestP.js new file mode 100644 index 0000000000..d899397b87 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPinterestP.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'pinterest-p'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f231'; +var svgPathData = 'M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPinterestP = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPinterestSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPinterestSquare.d.ts new file mode 100644 index 0000000000..4578f00ac8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPinterestSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPinterestSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPinterestSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPinterestSquare.js new file mode 100644 index 0000000000..36adb3a8b7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPinterestSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'pinterest-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0d3'; +var svgPathData = 'M448 80v352c0 26.5-21.5 48-48 48H154.4c9.8-16.4 22.4-40 27.4-59.3 3-11.5 15.3-58.4 15.3-58.4 8 15.3 31.4 28.2 56.3 28.2 74.1 0 127.4-68.1 127.4-152.7 0-81.1-66.2-141.8-151.4-141.8-106 0-162.2 71.1-162.2 148.6 0 36 19.2 80.8 49.8 95.1 4.7 2.2 7.1 1.2 8.2-3.3.8-3.4 5-20.1 6.8-27.8.6-2.5.3-4.6-1.7-7-10.1-12.3-18.3-34.9-18.3-56 0-54.2 41-106.6 110.9-106.6 60.3 0 102.6 41.1 102.6 99.9 0 66.4-33.5 112.4-77.2 112.4-24.1 0-42.1-19.9-36.4-44.4 6.9-29.2 20.3-60.7 20.3-81.8 0-53-75.5-45.7-75.5 25 0 21.7 7.3 36.5 7.3 36.5-31.4 132.8-36.1 134.5-29.6 192.6l2.2.8H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPinterestSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPlaystation.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPlaystation.d.ts new file mode 100644 index 0000000000..ec1dfba996 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPlaystation.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPlaystation: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPlaystation.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPlaystation.js new file mode 100644 index 0000000000..b4b9b5042d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPlaystation.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'playstation'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f3df'; +var svgPathData = 'M570.9 372.3c-11.3 14.2-38.8 24.3-38.8 24.3L327 470.2v-54.3l150.9-53.8c17.1-6.1 19.8-14.8 5.8-19.4-13.9-4.6-39.1-3.3-56.2 2.9L327 381.1v-56.4c23.2-7.8 47.1-13.6 75.7-16.8 40.9-4.5 90.9.6 130.2 15.5 44.2 14 49.2 34.7 38 48.9zm-224.4-92.5v-139c0-16.3-3-31.3-18.3-35.6-11.7-3.8-19 7.1-19 23.4v347.9l-93.8-29.8V32c39.9 7.4 98 24.9 129.2 35.4C424.1 94.7 451 128.7 451 205.2c0 74.5-46 102.8-104.5 74.6zM43.2 410.2c-45.4-12.8-53-39.5-32.3-54.8 19.1-14.2 51.7-24.9 51.7-24.9l134.5-47.8v54.5l-96.8 34.6c-17.1 6.1-19.7 14.8-5.8 19.4 13.9 4.6 39.1 3.3 56.2-2.9l46.4-16.9v48.8c-51.6 9.3-101.4 7.3-153.9-10z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPlaystation = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faProductHunt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faProductHunt.d.ts new file mode 100644 index 0000000000..ba94bf742b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faProductHunt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faProductHunt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faProductHunt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faProductHunt.js new file mode 100644 index 0000000000..375480aaad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faProductHunt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'product-hunt'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f288'; +var svgPathData = 'M326.3 218.8c0 20.5-16.7 37.2-37.2 37.2h-70.3v-74.4h70.3c20.5 0 37.2 16.7 37.2 37.2zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-128.1-37.2c0-47.9-38.9-86.8-86.8-86.8H169.2v248h49.6v-74.4h70.3c47.9 0 86.8-38.9 86.8-86.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faProductHunt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPushed.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPushed.d.ts new file mode 100644 index 0000000000..eefe319a0a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPushed.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPushed: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPushed.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPushed.js new file mode 100644 index 0000000000..3edfcb35ea --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPushed.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'pushed'; +var width = 432; +var height = 512; +var ligatures = []; +var unicode = 'f3e1'; +var svgPathData = 'M407 111.9l-98.5-9 14-33.4c10.4-23.5-10.8-40.4-28.7-37L22.5 76.9c-15.1 2.7-26 18.3-21.4 36.6l105.1 348.3c6.5 21.3 36.7 24.2 47.7 7l35.3-80.8 235.2-231.3c16.4-16.8 4.3-42.9-17.4-44.8zM297.6 53.6c5.1-.7 7.5 2.5 5.2 7.4L286 100.9 108.6 84.6l189-31zM22.7 107.9c-3.1-5.1 1-10 6.1-9.1l248.7 22.7-96.9 230.7L22.7 107.9zM136 456.4c-2.6 4-7.9 3.1-9.4-1.2L43.5 179.7l127.7 197.6c-7 15-35.2 79.1-35.2 79.1zm272.8-314.5L210.1 337.3l89.7-213.7 106.4 9.7c4 1.1 5.7 5.3 2.6 8.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPushed = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPython.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPython.d.ts new file mode 100644 index 0000000000..a99e1ed216 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPython.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPython: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPython.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPython.js new file mode 100644 index 0000000000..c55c937b63 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faPython.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'python'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f3e2'; +var svgPathData = 'M167.8 36.4c-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1zm-6.7 28.4c11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4zm185.2 81.4v47.5c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6-7.7-30.9-22.3-54.2-53.4-54.2h-40.1zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPython = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faQq.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faQq.d.ts new file mode 100644 index 0000000000..5df2566b83 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faQq.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faQq: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faQq.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faQq.js new file mode 100644 index 0000000000..245a5feecb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faQq.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'qq'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f1d6'; +var svgPathData = 'M433.754 420.445c-11.526 1.393-44.86-52.741-44.86-52.741 0 31.345-16.136 72.247-51.051 101.786 16.842 5.192 54.843 19.167 45.803 34.421-7.316 12.343-125.51 7.881-159.632 4.037-34.122 3.844-152.316 8.306-159.632-4.037-9.045-15.25 28.918-29.214 45.783-34.415-34.92-29.539-51.059-70.445-51.059-101.792 0 0-33.334 54.134-44.859 52.741-5.37-.65-12.424-29.644 9.347-99.704 10.261-33.024 21.995-60.478 40.144-105.779C60.683 98.063 108.982.006 224 0c113.737.006 163.156 96.133 160.264 214.963 18.118 45.223 29.912 72.85 40.144 105.778 21.768 70.06 14.716 99.053 9.346 99.704z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faQq = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faQuinscape.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faQuinscape.d.ts new file mode 100644 index 0000000000..2958f69886 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faQuinscape.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faQuinscape: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faQuinscape.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faQuinscape.js new file mode 100644 index 0000000000..084c79a2eb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faQuinscape.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'quinscape'; +var width = 489; +var height = 512; +var ligatures = []; +var unicode = 'f459'; +var svgPathData = 'M301.9 474.6h-1.3c-87.3 0-158.1-70.8-158.1-158.1s70.8-158.1 158.1-158.1c94.9 0 168.2 83.1 157 176.6 4 5.1 8.2 9.6 11.2 15.3 13.4-30.3 20.3-62.4 20.3-97.7C489.1 117.5 379.6 8 244.5 8 109.5 8 0 117.5 0 252.6s109.5 244.6 244.5 244.6c24.8 0 47.8-3.2 70.4-10.1-5.2-3.5-9-8.2-13.4-12.6l.4.1zm-21.2-69.8c0-54.8 44.4-99.2 99.2-99.2 54.8 0 99.2 44.4 99.2 99.2 0 54.8-44.4 99.2-99.2 99.2-54.8 0-99.2-44.4-99.2-99.2'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faQuinscape = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faQuora.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faQuora.d.ts new file mode 100644 index 0000000000..91586cb49b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faQuora.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faQuora: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faQuora.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faQuora.js new file mode 100644 index 0000000000..2af0a3e6ab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faQuora.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'quora'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f2c4'; +var svgPathData = 'M440.5 386.7h-29.3c-1.5 13.5-10.5 30.8-33 30.8-20.5 0-35.3-14.2-49.5-35.8 44.2-34.2 74.7-87.5 74.7-153C403.5 111.2 306.8 32 205 32 105.3 32 7.3 111.7 7.3 228.7c0 134.1 131.3 221.6 249 189C276 451.3 302 480 351.5 480c81.8 0 90.8-75.3 89-93.3zM297 329.2C277.5 300 253.3 277 205.5 277c-30.5 0-54.3 10-69 22.8l12.2 24.3c6.2-3 13-4 19.8-4 35.5 0 53.7 30.8 69.2 61.3-10 3-20.7 4.2-32.7 4.2-75 0-107.5-53-107.5-156.7C97.5 124.5 130 71 205 71c76.2 0 108.7 53.5 108.7 157.7.1 41.8-5.4 75.6-16.7 100.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faQuora = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRProject.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRProject.d.ts new file mode 100644 index 0000000000..3f26ad452d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRProject.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRProject: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRProject.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRProject.js new file mode 100644 index 0000000000..90aab34f6b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRProject.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'r-project'; +var width = 581; +var height = 512; +var ligatures = []; +var unicode = 'f4f7'; +var svgPathData = 'M581 226.6C581 119.1 450.9 32 290.5 32S0 119.1 0 226.6C0 322.4 103.3 402 239.4 418.1V480h99.1v-61.5c24.3-2.7 47.6-7.4 69.4-13.9L448 480h112l-67.4-113.7c54.5-35.4 88.4-84.9 88.4-139.7zm-466.8 14.5c0-73.5 98.9-133 220.8-133s211.9 40.7 211.9 133c0 50.1-26.5 85-70.3 106.4-2.4-1.6-4.7-2.9-6.4-3.7-10.2-5.2-27.8-10.5-27.8-10.5s86.6-6.4 86.6-92.7-90.6-87.9-90.6-87.9h-199V361c-74.1-21.5-125.2-67.1-125.2-119.9zm225.1 38.3v-55.6c57.8 0 87.8-6.8 87.8 27.3 0 36.5-38.2 28.3-87.8 28.3zm-.9 72.5H365c10.8 0 18.9 11.7 24 19.2-16.1 1.9-33 2.8-50.6 2.9v-22.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRProject = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRavelry.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRavelry.d.ts new file mode 100644 index 0000000000..76fded8a52 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRavelry.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRavelry: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRavelry.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRavelry.js new file mode 100644 index 0000000000..b6b1bffa9b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRavelry.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'ravelry'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2d9'; +var svgPathData = 'M407.4 61.5C331.6 22.1 257.8 31 182.9 66c-11.3 5.2-15.5 10.6-19.9 19-10.3 19.2-16.2 37.4-19.9 52.7-21.2 25.6-36.4 56.1-43.3 89.9-10.6 18-20.9 41.4-23.1 71.4 0 0-.7 7.6-.5 7.9-35.3-4.6-76.2-27-76.2-27 9.1 14.5 61.3 32.3 76.3 37.9 0 0 1.7 98 64.5 131.2-11.3-17.2-13.3-20.2-13.3-20.2S94.8 369 100.4 324.7c.7 0 1.5.2 2.2.2 23.9 87.4 103.2 151.4 196.9 151.4 6.2 0 12.1-.2 18-.7 14 1.5 27.6.5 40.1-3.9 6.9-2.2 13.8-6.4 20.2-10.8 70.2-39.1 100.9-82 123.1-147.7 5.4-16 8.1-35.5 9.8-52.2 8.7-82.3-30.6-161.6-103.3-199.5zM138.8 163.2s-1.2 12.3-.7 19.7c-3.4 2.5-10.1 8.1-18.2 16.7 5.2-12.8 11.3-25.1 18.9-36.4zm-31.2 121.9c4.4-17.2 13.3-39.1 29.8-55.1 0 0 1.7 48 15.8 90.1l-41.4-6.9c-2.2-9.2-3.5-18.5-4.2-28.1zm7.9 42.8c14.8 3.2 34 7.6 43.1 9.1 27.3 76.8 108.3 124.3 108.3 124.3 1 .5 1.7.7 2.7 1-73.1-11.6-132.7-64.7-154.1-134.4zM386 444.1c-14.5 4.7-36.2 8.4-64.7 3.7 0 0-91.1-23.1-127.5-107.8 38.2.7 52.4-.2 78-3.9 39.4-5.7 79-16.2 115-33 11.8-5.4 11.1-19.4 9.6-29.8-2-12.8-11.1-12.1-21.4-4.7 0 0-82 58.6-189.8 53.7-18.7-32-26.8-110.8-26.8-110.8 41.4-35.2 83.2-59.6 168.4-52.4.2-6.4 3-27.1-20.4-28.1 0 0-93.5-11.1-146 33.5 2.5-16.5 5.9-29.3 11.1-39.4 34.2-30.8 79-49.5 128.3-49.5 106.4 0 193 87.1 193 194.5-.2 76-43.8 142-106.8 174z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRavelry = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReact.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReact.d.ts new file mode 100644 index 0000000000..2a2dfa1d1e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReact.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faReact: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReact.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReact.js new file mode 100644 index 0000000000..cd127ed1cc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReact.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'react'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f41b'; +var svgPathData = 'M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zm-130 189.1c4.6 8.8 9.3 17.5 14.3 26.1 5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5zm0-50.6c-6.3-14.9-11.6-29.5-16-43.6 14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26zm11.4 25.3c6.6-13.8 13.8-27.3 21.4-40.6 7.6-13.3 15.8-26.2 24.4-38.9 15-1.1 30.3-1.7 45.9-1.7 15.6 0 31 .6 45.9 1.7 8.5 12.6 16.6 25.5 24.3 38.7 7.7 13.2 14.9 26.7 21.7 40.4-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6-15.7 0-30.9-.5-45.6-1.4-8.7-12.7-16.9-25.7-24.6-39-7.7-13.3-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zM256 210.2c25.3 0 45.8 20.5 45.8 45.8 0 25.3-20.5 45.8-45.8 45.8-25.3 0-45.8-20.5-45.8-45.8 0-25.3 20.5-45.8 45.8-45.8'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faReact = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReadme.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReadme.d.ts new file mode 100644 index 0000000000..c226098d77 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReadme.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faReadme: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReadme.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReadme.js new file mode 100644 index 0000000000..09910562c9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReadme.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'readme'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f4d5'; +var svgPathData = 'M528.3 46.5H388.5c-48.1 0-89.9 33.3-100.4 80.3-10.6-47-52.3-80.3-100.4-80.3H48c-26.5 0-48 21.5-48 48v245.8c0 26.5 21.5 48 48 48h89.7c102.2 0 132.7 24.4 147.3 75 .7 2.8 5.2 2.8 6 0 14.7-50.6 45.2-75 147.3-75H528c26.5 0 48-21.5 48-48V94.6c0-26.4-21.3-47.9-47.7-48.1zM242 311.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5V289c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V251zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm259.3 121.7c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5V228c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.8c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V190z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faReadme = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRebel.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRebel.d.ts new file mode 100644 index 0000000000..14ffd9bef6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRebel.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRebel: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRebel.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRebel.js new file mode 100644 index 0000000000..1d252583ed --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRebel.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'rebel'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1d0'; +var svgPathData = 'M256.5 504C117.2 504 9 387.8 13.2 249.9 16 170.7 56.4 97.7 129.7 49.5c.3 0 1.9-.6 1.1.8-5.8 5.5-111.3 129.8-14.1 226.4 49.8 49.5 90 2.5 90 2.5 38.5-50.1-.6-125.9-.6-125.9-10-24.9-45.7-40.1-45.7-40.1l28.8-31.8c24.4 10.5 43.2 38.7 43.2 38.7.8-29.6-21.9-61.4-21.9-61.4L255.1 8l44.3 50.1c-20.5 28.8-21.9 62.6-21.9 62.6 13.8-23 43.5-39.3 43.5-39.3l28.5 31.8c-27.4 8.9-45.4 39.9-45.4 39.9-15.8 28.5-27.1 89.4.6 127.3 32.4 44.6 87.7-2.8 87.7-2.8 102.7-91.9-10.5-225-10.5-225-6.1-5.5.8-2.8.8-2.8 50.1 36.5 114.6 84.4 116.2 204.8C500.9 400.2 399 504 256.5 504z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRebel = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRedRiver.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRedRiver.d.ts new file mode 100644 index 0000000000..d02e646d98 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRedRiver.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRedRiver: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRedRiver.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRedRiver.js new file mode 100644 index 0000000000..520dad6bab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRedRiver.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'red-river'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f3e3'; +var svgPathData = 'M353.2 32H94.8C42.4 32 0 74.4 0 126.8v258.4C0 437.6 42.4 480 94.8 480h258.4c52.4 0 94.8-42.4 94.8-94.8V126.8c0-52.4-42.4-94.8-94.8-94.8zM144.9 200.9v56.3c0 27-21.9 48.9-48.9 48.9V151.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9h-56.3c-12.3-.6-24.6 11.6-24 24zm176.3 72h-56.3c-12.3-.6-24.6 11.6-24 24v56.3c0 27-21.9 48.9-48.9 48.9V247.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRedRiver = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReddit.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReddit.d.ts new file mode 100644 index 0000000000..fceff36e48 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReddit.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faReddit: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReddit.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReddit.js new file mode 100644 index 0000000000..15b7245268 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReddit.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'reddit'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1a1'; +var svgPathData = 'M201.5 305.5c-13.8 0-24.9-11.1-24.9-24.6 0-13.8 11.1-24.9 24.9-24.9 13.6 0 24.6 11.1 24.6 24.9 0 13.6-11.1 24.6-24.6 24.6zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-132.3-41.2c-9.4 0-17.7 3.9-23.8 10-22.4-15.5-52.6-25.5-86.1-26.6l17.4-78.3 55.4 12.5c0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.3 24.9-24.9s-11.1-24.9-24.9-24.9c-9.7 0-18 5.8-22.1 13.8l-61.2-13.6c-3-.8-6.1 1.4-6.9 4.4l-19.1 86.4c-33.2 1.4-63.1 11.3-85.5 26.8-6.1-6.4-14.7-10.2-24.1-10.2-34.9 0-46.3 46.9-14.4 62.8-1.1 5-1.7 10.2-1.7 15.5 0 52.6 59.2 95.2 132 95.2 73.1 0 132.3-42.6 132.3-95.2 0-5.3-.6-10.8-1.9-15.8 31.3-16 19.8-62.5-14.9-62.5zM302.8 331c-18.2 18.2-76.1 17.9-93.6 0-2.2-2.2-6.1-2.2-8.3 0-2.5 2.5-2.5 6.4 0 8.6 22.8 22.8 87.3 22.8 110.2 0 2.5-2.2 2.5-6.1 0-8.6-2.2-2.2-6.1-2.2-8.3 0zm7.7-75c-13.6 0-24.6 11.1-24.6 24.9 0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.1 24.9-24.6 0-13.8-11-24.9-24.9-24.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faReddit = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRedditAlien.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRedditAlien.d.ts new file mode 100644 index 0000000000..8549f2321a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRedditAlien.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRedditAlien: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRedditAlien.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRedditAlien.js new file mode 100644 index 0000000000..d66a3959c9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRedditAlien.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'reddit-alien'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f281'; +var svgPathData = 'M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2.1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRedditAlien = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRedditSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRedditSquare.d.ts new file mode 100644 index 0000000000..c76f9cad6a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRedditSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRedditSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRedditSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRedditSquare.js new file mode 100644 index 0000000000..e364dc6f06 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRedditSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'reddit-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f1a2'; +var svgPathData = 'M283.2 345.5c2.7 2.7 2.7 6.8 0 9.2-24.5 24.5-93.8 24.6-118.4 0-2.7-2.4-2.7-6.5 0-9.2 2.4-2.4 6.5-2.4 8.9 0 18.7 19.2 81 19.6 100.5 0 2.4-2.3 6.6-2.3 9 0zm-91.3-53.8c0-14.9-11.9-26.8-26.5-26.8-14.9 0-26.8 11.9-26.8 26.8 0 14.6 11.9 26.5 26.8 26.5 14.6 0 26.5-11.9 26.5-26.5zm90.7-26.8c-14.6 0-26.5 11.9-26.5 26.8 0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-11.9 26.8-26.5 0-14.9-11.9-26.8-26.8-26.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-99.7 140.6c-10.1 0-19 4.2-25.6 10.7-24.1-16.7-56.5-27.4-92.5-28.6l18.7-84.2 59.5 13.4c0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-12.2 26.8-26.8 0-14.6-11.9-26.8-26.8-26.8-10.4 0-19.3 6.2-23.8 14.9l-65.7-14.6c-3.3-.9-6.5 1.5-7.4 4.8l-20.5 92.8c-35.7 1.5-67.8 12.2-91.9 28.9-6.5-6.8-15.8-11-25.9-11-37.5 0-49.8 50.4-15.5 67.5-1.2 5.4-1.8 11-1.8 16.7 0 56.5 63.7 102.3 141.9 102.3 78.5 0 142.2-45.8 142.2-102.3 0-5.7-.6-11.6-2.1-17 33.6-17.2 21.2-67.2-16.1-67.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRedditSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRendact.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRendact.d.ts new file mode 100644 index 0000000000..cdb94d594c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRendact.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRendact: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRendact.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRendact.js new file mode 100644 index 0000000000..1db6afeef3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRendact.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'rendact'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f3e4'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248c18.6 0 36.7-2.1 54.1-5.9-5.6-7.4-10.8-14.4-15.9-21.3-12.4 2.1-25.2 3.3-38.3 3.3C124.3 480 24 379.7 24 256S124.3 32 248 32s224 100.3 224 224c0 71-33 134.2-84.5 175.3-25.9 18.8-39.1 21.4-83.5-44.2-78.7-112.9-48-71.1-73.7-108.3 72.8 8.9 228.5-72 168.6-168.6C314-26.8 15 93.8 59.7 226.4c3.2 9.8 14.4 38.6 45.6 38.6 2 0 2.6-.6 2-1.7-4.4-8.7-20.1-9.8-20.1-37.4 0-40.5 40.5-89.6 100.3-120 66.1-32.3 131.9-30.2 158.2 5.4 27.2 38.3-20.9 119.2-120.4 136.9 7.5-9.4 57-75.2 62.8-84 22.7-34.6 23.6-49 14-59.2-15.5-16.9-29.5-10.3-50.7-11.7-10.8-.9-113.7 181.2-136.4 216.9-5.9 9-21.2 34.1-21.2 50.9 0 21.3 2.8 51.4 20.6 51.4 10.6 0 8-18.7 8-26.6 0-12.9 27.4-49.4 74.8-104.6 20.4 36.1 57.7 114.3 130.2 209.7 98-33.1 168.5-125.8 168.5-235C496 119 385 8 248 8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRendact = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRenren.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRenren.d.ts new file mode 100644 index 0000000000..420b44ce91 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRenren.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRenren: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRenren.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRenren.js new file mode 100644 index 0000000000..eb4f9b8228 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRenren.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'renren'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f18b'; +var svgPathData = 'M214 169.1c0 110.4-61 205.4-147.6 247.4C30 373.2 8 317.7 8 256.6 8 133.9 97.1 32.2 214 12.5v156.6zM255 504c-42.9 0-83.3-11-118.5-30.4C193.7 437.5 239.9 382.9 255 319c15.5 63.9 61.7 118.5 118.8 154.7C338.7 493 298.3 504 255 504zm190.6-87.5C359 374.5 298 279.6 298 169.1V12.5c116.9 19.7 206 121.4 206 244.1 0 61.1-22 116.6-58.4 159.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRenren = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReplyd.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReplyd.d.ts new file mode 100644 index 0000000000..0302503c22 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReplyd.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faReplyd: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReplyd.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReplyd.js new file mode 100644 index 0000000000..34dd6075fb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faReplyd.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'replyd'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f3e6'; +var svgPathData = 'M320 480H128C57.6 480 0 422.4 0 352V160C0 89.6 57.6 32 128 32h192c70.4 0 128 57.6 128 128v192c0 70.4-57.6 128-128 128zM193.4 273.2c-6.1-2-11.6-3.1-16.4-3.1-7.2 0-13.5 1.9-18.9 5.6-5.4 3.7-9.6 9-12.8 15.8h-1.1l-4.2-18.3h-28v138.9h36.1v-89.7c1.5-5.4 4.4-9.8 8.7-13.2 4.3-3.4 9.8-5.1 16.2-5.1 4.6 0 9.8 1 15.6 3.1l4.8-34zm115.2 103.4c-3.2 2.4-7.7 4.8-13.7 7.1-6 2.3-12.8 3.5-20.4 3.5-12.2 0-21.1-3-26.5-8.9-5.5-5.9-8.5-14.7-9-26.4h83.3c.9-4.8 1.6-9.4 2.1-13.9.5-4.4.7-8.6.7-12.5 0-10.7-1.6-19.7-4.7-26.9-3.2-7.2-7.3-13-12.5-17.2-5.2-4.3-11.1-7.3-17.8-9.2-6.7-1.8-13.5-2.8-20.6-2.8-21.1 0-37.5 6.1-49.2 18.3s-17.5 30.5-17.5 55c0 22.8 5.2 40.7 15.6 53.7 10.4 13.1 26.8 19.6 49.2 19.6 10.7 0 20.9-1.5 30.4-4.6 9.5-3.1 17.1-6.8 22.6-11.2l-12-23.6zm-21.8-70.3c3.8 5.4 5.3 13.1 4.6 23.1h-51.7c.9-9.4 3.7-17 8.2-22.6 4.5-5.6 11.5-8.5 21-8.5 8.2-.1 14.1 2.6 17.9 8zm79.9 2.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4s2 11.7 6.1 15.6zm0 100.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4 0 6.6 2 11.7 6.1 15.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faReplyd = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faResearchgate.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faResearchgate.d.ts new file mode 100644 index 0000000000..de69a59048 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faResearchgate.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faResearchgate: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faResearchgate.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faResearchgate.js new file mode 100644 index 0000000000..159ee017b0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faResearchgate.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'researchgate'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f4f8'; +var svgPathData = 'M0 32v448h448V32H0zm262.2 334.4c-6.6 3-33.2 6-50-14.2-9.2-10.6-25.3-33.3-42.2-63.6-8.9 0-14.7 0-21.4-.6v46.4c0 23.5 6 21.2 25.8 23.9v8.1c-6.9-.3-23.1-.8-35.6-.8-13.1 0-26.1.6-33.6.8v-8.1c15.5-2.9 22-1.3 22-23.9V225c0-22.6-6.4-21-22-23.9V193c25.8 1 53.1-.6 70.9-.6 31.7 0 55.9 14.4 55.9 45.6 0 21.1-16.7 42.2-39.2 47.5 13.6 24.2 30 45.6 42.2 58.9 7.2 7.8 17.2 14.7 27.2 14.7v7.3zm22.9-135c-23.3 0-32.2-15.7-32.2-32.2V167c0-12.2 8.8-30.4 34-30.4s30.4 17.9 30.4 17.9l-10.7 7.2s-5.5-12.5-19.7-12.5c-7.9 0-19.7 7.3-19.7 19.7v26.8c0 13.4 6.6 23.3 17.9 23.3 14.1 0 21.5-10.9 21.5-26.8h-17.9v-10.7h30.4c0 20.5 4.7 49.9-34 49.9zm-116.5 44.7c-9.4 0-13.6-.3-20-.8v-69.7c6.4-.6 15-.6 22.5-.6 23.3 0 37.2 12.2 37.2 34.5 0 21.9-15 36.6-39.7 36.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faResearchgate = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faResolving.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faResolving.d.ts new file mode 100644 index 0000000000..f3fa9374d7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faResolving.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faResolving: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faResolving.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faResolving.js new file mode 100644 index 0000000000..2a87e4c207 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faResolving.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'resolving'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f3e7'; +var svgPathData = 'M281.2 278.2c46-13.3 49.6-23.5 44-43.4L314 195.5c-6.1-20.9-18.4-28.1-71.1-12.8L54.7 236.8l28.6 98.6 197.9-57.2zM248.5 8C131.4 8 33.2 88.7 7.2 197.5l221.9-63.9c34.8-10.2 54.2-11.7 79.3-8.2 36.3 6.1 52.7 25 61.4 55.2l10.7 37.8c8.2 28.1 1 50.6-23.5 73.6-19.4 17.4-31.2 24.5-61.4 33.2L203 351.8l220.4 27.1 9.7 34.2-48.1 13.3-286.8-37.3 23 80.2c36.8 22 80.3 34.7 126.3 34.7 137 0 248.5-111.4 248.5-248.3C497 119.4 385.5 8 248.5 8zM38.3 388.6L0 256.8c0 48.5 14.3 93.4 38.3 131.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faResolving = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRev.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRev.d.ts new file mode 100644 index 0000000000..3e05d5f2cb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRev.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRev: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRev.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRev.js new file mode 100644 index 0000000000..88a5216bb1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRev.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'rev'; +var width = 410; +var height = 512; +var ligatures = []; +var unicode = 'f5b2'; +var svgPathData = 'M270.67 274.89c0 36.16-29.41 65.57-65.56 65.57s-65.57-29.41-65.57-65.57 29.41-65.56 65.57-65.56 65.56 29.4 65.56 65.56zm139.55-5.05h-.13c-1.49-61.55-30.1-116.35-74.32-152.98l-45.38 26.2c43.17 28.03 71.81 76.63 71.81 131.82 0 86.62-70.47 157.09-157.09 157.09S48.02 361.5 48.02 274.88c0-81.86 62.96-149.27 142.99-156.43v39.12l108.76-62.79L191.01 32v38.32C84.31 77.57 0 166.36 0 274.89c0 111.59 89.12 202.29 200.06 204.98v.13h210.16V269.84z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRev = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRocketchat.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRocketchat.d.ts new file mode 100644 index 0000000000..31f70e313e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRocketchat.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRocketchat: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRocketchat.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRocketchat.js new file mode 100644 index 0000000000..6c24bcbe54 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRocketchat.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'rocketchat'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f3e8'; +var svgPathData = 'M448 256.2c0-87.2-99.6-153.3-219.8-153.3-18.8 0-37.3 1.6-55.3 4.8-11.1-10.5-24.2-20-38-27.4C61.2 44.2 0 79.4 0 79.4s56.9 47.1 47.6 88.3c-52.3 52.3-52.5 124.1 0 176.6C56.9 385.6 0 432.6 0 432.6s61.2 35.2 134.9-.8c13.8-7.5 26.9-16.9 38-27.4 18 3.2 36.5 4.8 55.3 4.8 120.3-.1 219.8-65.8 219.8-153zm-219.7 124c-23.7 0-46.3-2.8-67.3-7.8-21.3 25.8-68.1 61.7-113.6 50.1 14.8-16 36.7-43.1 32-87.6-27.3-21.4-43.6-48.7-43.6-78.5 0-68.4 86.2-123.9 192.5-123.9S420.8 188 420.8 256.4c0 68.3-86.2 123.8-192.5 123.8zm25.6-123.9c0 14.2-11.5 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.5-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm88.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm-177.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.2 0 25.6 11.6 25.6 25.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRocketchat = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRockrms.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRockrms.d.ts new file mode 100644 index 0000000000..a6b010cb54 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRockrms.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRockrms: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRockrms.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRockrms.js new file mode 100644 index 0000000000..3888e91168 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faRockrms.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'rockrms'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f3e9'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm157.4 419.5h-90l-112-131.3c-17.9-20.4-3.9-56.1 26.6-56.1h75.3l-84.6-99.3-84.3 98.9h-90L193.5 67.2c14.4-18.4 41.3-17.3 54.5 0l157.7 185.1c19 22.8 2 57.2-27.6 56.1-.6 0-74.2.2-74.2.2l101.5 118.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRockrms = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSafari.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSafari.d.ts new file mode 100644 index 0000000000..99c73ebec0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSafari.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSafari: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSafari.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSafari.js new file mode 100644 index 0000000000..cbc47ecbce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSafari.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'safari'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f267'; +var svgPathData = 'M236.9 256.8c0-9.1 6.6-17.7 16.3-17.7 8.9 0 17.4 6.4 17.4 16.1 0 9.1-6.4 17.7-16.1 17.7-9 0-17.6-6.7-17.6-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-26.6 0c0-122.3-99.1-221.4-221.4-221.4S34.6 133.7 34.6 256 133.7 477.4 256 477.4 477.4 378.3 477.4 256zm-72.5 96.6c0 3.6 13 10.2 16.3 12.2-27.4 41.5-69.8 71.4-117.9 83.3l-4.4-18.5c-.3-2.5-1.9-2.8-4.2-2.8-1.9 0-3 2.8-2.8 4.2l4.4 18.8c-13.3 2.8-26.8 4.2-40.4 4.2-36.3 0-72-10.2-103-29.1 1.7-2.8 12.2-18 12.2-20.2 0-1.9-1.7-3.6-3.6-3.6-3.9 0-12.2 16.6-14.7 19.9-41.8-27.7-72-70.6-83.6-119.6l19.1-4.2c2.2-.6 2.8-2.2 2.8-4.2 0-1.9-2.8-3-4.4-2.8L62 294.5c-2.5-12.7-3.9-25.5-3.9-38.5 0-37.1 10.5-73.6 30.2-104.9 2.8 1.7 16.1 10.8 18.3 10.8 1.9 0 3.6-1.4 3.6-3.3 0-3.9-14.7-11.3-18-13.6 28.2-41.2 71.1-70.9 119.8-81.9l4.2 18.5c.6 2.2 2.2 2.8 4.2 2.8s3-2.8 2.8-4.4L219 61.7c12.2-2.2 24.6-3.6 37.1-3.6 37.1 0 73.3 10.5 104.9 30.2-1.9 2.8-10.8 15.8-10.8 18 0 1.9 1.4 3.6 3.3 3.6 3.9 0 11.3-14.4 13.3-17.7 41 27.7 70.3 70 81.7 118.2l-15.5 3.3c-2.5.6-2.8 2.2-2.8 4.4 0 1.9 2.8 3 4.2 2.8l15.8-3.6c2.5 12.7 3.9 25.7 3.9 38.7 0 36.3-10 72-28.8 102.7-2.8-1.4-14.4-9.7-16.6-9.7-2.1 0-3.8 1.7-3.8 3.6zm-33.2-242.2c-13 12.2-134.2 123.7-137.6 129.5l-96.6 160.5c12.7-11.9 134.2-124 137.3-129.3l96.9-160.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSafari = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSass.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSass.d.ts new file mode 100644 index 0000000000..bed6b0e8e8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSass.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSass: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSass.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSass.js new file mode 100644 index 0000000000..6e41d66489 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSass.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'sass'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f41e'; +var svgPathData = 'M551.1 291.9c-22.4.1-41.8 5.5-58 13.5-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-3.8 11.1-5.3 19.1-2.3 11.7-25.8 53.5-39.1 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-2.7 11.4-5.3 19.1-2.6 7.7-33.9 77.3-42.1 95.4-4.2 9.2-7.8 16.6-10.4 21.6s-.2.3-.4.9c-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4.3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2-.8 0-1.4 2-1.4 2s10.1-42.4-19.4-42.4c-18.4 0-44 20.2-56.6 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.8-38.2-101.9-65.2-99.1-116.5 1-18.7 7.5-67.8 127.1-127.4 98-48.8 176.4-35.4 189.9-5.6 19.4 42.5-41.9 121.6-143.7 133-38.8 4.3-59.2-10.7-64.3-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.8 28.9 18.7 6.1 64.2 9.5 119.2-11.8C367 196.5 415.1 130.2 401 74.7 386.6 18.3 293.1-.2 204.6 31.2 151.9 49.9 94.9 79.3 53.9 117.6 5.2 163.2-2.6 202.9.6 219.5c11.4 58.9 92.6 97.3 125.1 125.7-1.6.9-3.1 1.7-4.5 2.5-16.3 8.1-78.2 40.5-93.7 74.7-17.5 38.8 2.9 66.6 16.3 70.4 41.8 11.6 84.6-9.3 107.6-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.3-4.9 16.4-9.4 23.5-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.5 5 15.4 5 13.8 0 20-11.4 26.9-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.4 0 18.8-12.1 23-18.3v.1s.2-.4.7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.6-46 16.2-31.8 31.7-71.5 31.7-71.5s1.4 9.7 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2s0 .1.1.2c-3 4-6.4 8.3-9.9 12.5-12.8 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.7 2.5 11.5-.8 19.6-3.6 23.5-5.4 6.2-2.2 13.4-5.7 20.2-10.6 12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5 19.8-28.9 35.1-60.6 35.1-60.6s1.4 9.7 6.2 25.8c2.4 8.1 7.1 17 11.4 25.7-18.6 15.1-30.1 32.6-34.1 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5 6.5-2.2 14.3-5.7 21.6-11.1 12.5-9.2 24.6-22.1 23.8-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.1-10.2 62.1-7.2 55.7 6.5 66.6 41.3 64.5 55.8-2.1 14.6-13.8 22.6-17.7 25-3.9 2.4-5.1 3.3-4.8 5.1.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.2-11.8 30.3-38.7 1.6-34-31.1-71.4-89-71.1zM121.8 436.6c-18.4 20.1-44.2 27.7-55.3 21.3C54.6 451 59.3 421.4 82 400c13.8-13 31.6-25 43.4-32.4 2.7-1.6 6.6-4 11.4-6.9.8-.5 1.2-.7 1.2-.7.9-.6 1.9-1.1 2.9-1.7 8.3 30.4.3 57.2-19.1 78.3zm134.4-91.4c-6.4 15.7-19.9 55.7-28.1 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.1-11.3 21.2-14.9 23.8-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.9-13.9 0 .5.1 1 .1 1.6-.1 17.9-17.3 30-25.1 34.8zm85.6-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.6-15.3 19-24.5 1.2 3.8 1.9 7.4 1.9 10.8-.1 22.5-16.2 30.9-25.9 34.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSass = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSchlix.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSchlix.d.ts new file mode 100644 index 0000000000..c960adefe4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSchlix.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSchlix: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSchlix.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSchlix.js new file mode 100644 index 0000000000..f372b26f3d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSchlix.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'schlix'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f3ea'; +var svgPathData = 'M350.5 157.7l-54.2-46.1 73.4-39 78.3 44.2-97.5 40.9zM192 122.1l45.7-28.2 34.7 34.6-55.4 29-25-35.4zm-65.1 6.6l31.9-22.1L176 135l-36.7 22.5-12.4-28.8zm-23.3 88.2l-8.8-34.8 29.6-18.3 13.1 35.3-33.9 17.8zm-21.2-83.7l23.9-18.1 8.9 24-26.7 18.3-6.1-24.2zM59 206.5l-3.6-28.4 22.3-15.5 6.1 28.7L59 206.5zm-30.6 16.6l20.8-12.8 3.3 33.4-22.9 12-1.2-32.6zM1.4 268l19.2-10.2.4 38.2-21 8.8L1.4 268zm59.1 59.3l-28.3 8.3-1.6-46.8 25.1-10.7 4.8 49.2zM99 263.2l-31.1 13-5.2-40.8L90.1 221l8.9 42.2zM123.2 377l-41.6 5.9-8.1-63.5 35.2-10.8 14.5 68.4zm28.5-139.9l21.2 57.1-46.2 13.6-13.7-54.1 38.7-16.6zm85.7 230.5l-70.9-3.3-24.3-95.8 55.2-8.6 40 107.7zm-84.9-279.7l42.2-22.4 28 45.9-50.8 21.3-19.4-44.8zm41 94.9l61.3-18.7 52.8 86.6-79.8 11.3-34.3-79.2zm51.4-85.6l67.3-28.8 65.5 65.4-88.6 26.2-44.2-62.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSchlix = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faScribd.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faScribd.d.ts new file mode 100644 index 0000000000..026d24b9b7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faScribd.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faScribd: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faScribd.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faScribd.js new file mode 100644 index 0000000000..21a5d80537 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faScribd.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'scribd'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f28a'; +var svgPathData = 'M42.3 252.7c-16.1-19-24.7-45.9-24.8-79.9 0-100.4 75.2-153.1 167.2-153.1 98.6-1.6 156.8 49 184.3 70.6l-50.5 72.1-37.3-24.6 26.9-38.6c-36.5-24-79.4-36.5-123-35.8-50.7-.8-111.7 27.2-111.7 76.2 0 18.7 11.2 20.7 28.6 15.6 23.3-5.3 41.9.6 55.8 14 26.4 24.3 23.2 67.6-.7 91.9-29.2 29.5-85.2 27.3-114.8-8.4zm317.7 5.9c-15.5-18.8-38.9-29.4-63.2-28.6-38.1-2-71.1 28-70.5 67.2-.7 16.8 6 33 18.4 44.3 14.1 13.9 33 19.7 56.3 14.4 17.4-5.1 28.6-3.1 28.6 15.6 0 4.3-.5 8.5-1.4 12.7-16.7 40.9-59.5 64.4-121.4 64.4-51.9.2-102.4-16.4-144.1-47.3l33.7-39.4-35.6-27.4L0 406.3l15.4 13.8c52.5 46.8 120.4 72.5 190.7 72.2 51.4 0 94.4-10.5 133.6-44.1 57.1-51.4 54.2-149.2 20.3-189.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faScribd = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSearchengin.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSearchengin.d.ts new file mode 100644 index 0000000000..7eae083363 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSearchengin.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSearchengin: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSearchengin.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSearchengin.js new file mode 100644 index 0000000000..2e672f130f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSearchengin.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'searchengin'; +var width = 460; +var height = 512; +var ligatures = []; +var unicode = 'f3eb'; +var svgPathData = 'M220.6 130.3l-67.2 28.2V43.2L98.7 233.5l54.7-24.2v130.3l67.2-209.3zm-83.2-96.7l-1.3 4.7-15.2 52.9C80.6 106.7 52 145.8 52 191.5c0 52.3 34.3 95.9 83.4 105.5v53.6C57.5 340.1 0 272.4 0 191.6c0-80.5 59.8-147.2 137.4-158zm311.4 447.2c-11.2 11.2-23.1 12.3-28.6 10.5-5.4-1.8-27.1-19.9-60.4-44.4-33.3-24.6-33.6-35.7-43-56.7-9.4-20.9-30.4-42.6-57.5-52.4l-9.7-14.7c-24.7 16.9-53 26.9-81.3 28.7l2.1-6.6 15.9-49.5c46.5-11.9 80.9-54 80.9-104.2 0-54.5-38.4-102.1-96-107.1V32.3C254.4 37.4 320 106.8 320 191.6c0 33.6-11.2 64.7-29 90.4l14.6 9.6c9.8 27.1 31.5 48 52.4 57.4s32.2 9.7 56.8 43c24.6 33.2 42.7 54.9 44.5 60.3s.7 17.3-10.5 28.5zm-9.9-17.9c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSearchengin = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSellcast.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSellcast.d.ts new file mode 100644 index 0000000000..1c0a20c566 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSellcast.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSellcast: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSellcast.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSellcast.js new file mode 100644 index 0000000000..487ba0060f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSellcast.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'sellcast'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f2da'; +var svgPathData = 'M353.4 32H94.7C42.6 32 0 74.6 0 126.6v258.7C0 437.4 42.6 480 94.7 480h258.7c52.1 0 94.7-42.6 94.7-94.6V126.6c0-52-42.6-94.6-94.7-94.6zm-50 316.4c-27.9 48.2-89.9 64.9-138.2 37.2-22.9 39.8-54.9 8.6-42.3-13.2l15.7-27.2c5.9-10.3 19.2-13.9 29.5-7.9 18.6 10.8-.1-.1 18.5 10.7 27.6 15.9 63.4 6.3 79.4-21.3 15.9-27.6 6.3-63.4-21.3-79.4-17.8-10.2-.6-.4-18.6-10.6-24.6-14.2-3.4-51.9 21.6-37.5 18.6 10.8-.1-.1 18.5 10.7 48.4 28 65.1 90.3 37.2 138.5zm21.8-208.8c-17 29.5-16.3 28.8-19 31.5-6.5 6.5-16.3 8.7-26.5 3.6-18.6-10.8.1.1-18.5-10.7-27.6-15.9-63.4-6.3-79.4 21.3s-6.3 63.4 21.3 79.4c0 0 18.5 10.6 18.6 10.6 24.6 14.2 3.4 51.9-21.6 37.5-18.6-10.8.1.1-18.5-10.7-48.2-27.8-64.9-90.1-37.1-138.4 27.9-48.2 89.9-64.9 138.2-37.2l4.8-8.4c14.3-24.9 52-3.3 37.7 21.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSellcast = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSellsy.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSellsy.d.ts new file mode 100644 index 0000000000..c24d2de73e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSellsy.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSellsy: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSellsy.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSellsy.js new file mode 100644 index 0000000000..a3fce53eca --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSellsy.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'sellsy'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f213'; +var svgPathData = 'M539.71 237.308c3.064-12.257 4.29-24.821 4.29-37.384C544 107.382 468.618 32 376.076 32c-77.22 0-144.634 53.012-163.02 127.781-15.322-13.176-34.934-20.53-55.157-20.53-46.271 0-83.962 37.69-83.962 83.961 0 7.354.92 15.015 3.065 22.369-42.9 20.225-70.785 63.738-70.785 111.234C6.216 424.843 61.68 480 129.401 480h381.198c67.72 0 123.184-55.157 123.184-123.184.001-56.384-38.916-106.025-94.073-119.508zM199.88 401.554c0 8.274-7.048 15.321-15.321 15.321H153.61c-8.274 0-15.321-7.048-15.321-15.321V290.626c0-8.273 7.048-15.321 15.321-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v110.928zm89.477 0c0 8.274-7.048 15.321-15.322 15.321h-30.949c-8.274 0-15.321-7.048-15.321-15.321V270.096c0-8.274 7.048-15.321 15.321-15.321h30.949c8.274 0 15.322 7.048 15.322 15.321v131.458zm89.477 0c0 8.274-7.047 15.321-15.321 15.321h-30.949c-8.274 0-15.322-7.048-15.322-15.321V238.84c0-8.274 7.048-15.321 15.322-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v162.714zm87.027 0c0 8.274-7.048 15.321-15.322 15.321h-28.497c-8.274 0-15.321-7.048-15.321-15.321V176.941c0-8.579 7.047-15.628 15.321-15.628h28.497c8.274 0 15.322 7.048 15.322 15.628v224.613z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSellsy = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faServicestack.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faServicestack.d.ts new file mode 100644 index 0000000000..08c1cbbfaf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faServicestack.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faServicestack: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faServicestack.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faServicestack.js new file mode 100644 index 0000000000..5b70f2c434 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faServicestack.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'servicestack'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f3ec'; +var svgPathData = 'M88 216c81.7 10.2 273.7 102.3 304 232H0c99.5-8.1 184.5-137 88-232zm32-152c32.3 35.6 47.7 83.9 46.4 133.6C249.3 231.3 373.7 321.3 400 448h96C455.3 231.9 222.8 79.5 120 64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faServicestack = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faShirtsinbulk.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faShirtsinbulk.d.ts new file mode 100644 index 0000000000..a77e4b8532 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faShirtsinbulk.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faShirtsinbulk: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faShirtsinbulk.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faShirtsinbulk.js new file mode 100644 index 0000000000..caa3b0061b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faShirtsinbulk.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'shirtsinbulk'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f214'; +var svgPathData = 'M395.208 221.583H406v33.542h-10.792v-33.542zm0-9.625H406v-33.542h-10.792v33.542zm0 86.333H406V264.75h-10.792v33.541zM358.75 135.25h-33.542v10.5h33.542v-10.5zm36.458 206.208H406v-33.542h-10.792v33.542zM311.5 135.25h-33.542v10.5H311.5v-10.5zm-47.25 0H231v10.5h33.25v-10.5zm-47.25 0h-33.25v10.5H217v-10.5zm178.208 33.542H406V135.25h-33.542v10.5h22.75v23.042zm-255.792 259l30.625 13.417 4.375-9.917-30.625-13.417-4.375 9.917zM179.083 445l30.334 13.708 4.374-9.916-30.333-13.417-4.375 9.625zm216.125-60.375H406v-33.542h-10.792v33.542zm-334.833 8.167L91 406.208l4.375-9.624-30.625-13.709-4.375 9.917zm39.666 17.499l30.625 13.417 4.375-9.917-30.625-13.416-4.375 9.916zm132.417 38.501l4.375 9.916L267.459 445l-4.375-9.625-30.626 13.417zm118.417-52.208l4.375 9.624 30.624-13.416-4.374-9.917-30.625 13.709zM311.5 413.791l4.375 9.917 30.625-13.417-4.374-9.916-30.626 13.416zm-39.667 17.501l4.375 9.917 30.625-13.417-4.375-9.917-30.625 13.417zM311.5 46.583h-33.542v10.5H311.5v-10.5zm94.209 0h-33.251v10.5h33.251v-10.5zm-188.709 0h-33.25v10.5H217v-10.5zm141.75 0h-33.542v10.5h33.542v-10.5zm-94.5 0H231v10.5h33.25v-10.5zM448 3.708v406l-226.334 98.584L0 409.708v-406h448zm-29.166 116.958H29.166V390.75l192.792 85.75 196.875-85.75V120.666zm0-87.791H29.166V91.5h389.667V32.875zM75.542 46.583H42.291v10.5h33.251v-10.5zm94.5 0H136.5v10.5h33.542v-10.5zm-47.251 0H89.25v10.5h33.542v-10.5zm7.584 236.542c0-50.167 41.125-91.292 91.292-91.292 50.458 0 91.292 41.125 91.292 91.292 0 50.458-40.833 91.292-91.292 91.292-50.167-.001-91.292-40.834-91.292-91.292zm120.75 18.084c0 13.125-23.917 14.291-32.666 14.291-12.25 0-29.75-2.625-35.875-14.875h-.875L172.666 319c14.876 9.333 29.167 12.25 47.25 12.25 19.542 0 51.042-5.833 51.042-31.209 0-48.125-78.458-16.333-78.458-37.916 0-13.125 20.708-14.875 29.75-14.875 10.791 0 29.166 3.208 35.583 13.124h.875l8.751-16.916c-15.167-6.125-27.417-11.959-44.334-11.959-20.125 0-49.583 6.417-49.583 31.792 0 44.334 77.583 11.959 77.583 37.918zM122.791 135.25H89.25v10.5h33.542v-10.5zm-69.999 10.5h22.75v-10.5H42v33.542h10.792V145.75zm0 32.666H42v33.542h10.792v-33.542zm117.25-43.166H136.5v10.5h33.542v-10.5zm-117.25 86.333H42v33.542h10.792v-33.542zm0 86.334H42v33.542h10.792v-33.542zm0-43.167H42v33.542h10.792V264.75zm0 86.333H42v33.542h10.792v-33.542z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faShirtsinbulk = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faShopware.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faShopware.d.ts new file mode 100644 index 0000000000..ba172d7188 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faShopware.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faShopware: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faShopware.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faShopware.js new file mode 100644 index 0000000000..5836f423ca --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faShopware.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'shopware'; +var width = 495; +var height = 512; +var ligatures = []; +var unicode = 'f5b5'; +var svgPathData = 'M395.5 455.27c-42.95 31.79-93.95 48.59-147.48 48.59-137.21 0-248.02-111-248.02-248 0-137.19 111.04-248 248.02-248 61.3 0 120.14 22.55 165.68 63.5 2.62 2.36.58 6.64-2.86 6.18-17.67-2.43-36.75-3.66-56.71-3.66-129.36 0-222.4 53.47-222.4 155.35 0 109.04 92.13 145.88 176.83 178.73 33.64 13.04 65.4 25.36 86.96 41.59 1.9 1.44 1.89 4.31-.02 5.72zm99.46-222.32c-.08-.94-.55-1.83-1.27-2.44-51.76-42.96-93.62-60.48-144.48-60.48-84.13 0-80.25 52.17-80.25 53.63 0 42.6 52.06 62.01 112.34 84.49 31.07 11.59 63.19 23.57 92.68 39.93 1.88 1.05 4.26.19 5.05-1.82 18.89-48.39 17.94-90.23 15.93-113.31z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faShopware = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSimplybuilt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSimplybuilt.d.ts new file mode 100644 index 0000000000..31e0453291 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSimplybuilt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSimplybuilt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSimplybuilt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSimplybuilt.js new file mode 100644 index 0000000000..61e1a20f99 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSimplybuilt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'simplybuilt'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f215'; +var svgPathData = 'M481.2 64h-106c-14.5 0-26.6 11.8-26.6 26.3v39.6H163.3V90.3c0-14.5-12-26.3-26.6-26.3h-106C16.1 64 4.3 75.8 4.3 90.3v331.4c0 14.5 11.8 26.3 26.6 26.3h450.4c14.8 0 26.6-11.8 26.6-26.3V90.3c-.2-14.5-12-26.3-26.7-26.3zM149.8 355.8c-36.6 0-66.4-29.7-66.4-66.4 0-36.9 29.7-66.6 66.4-66.6 36.9 0 66.6 29.7 66.6 66.6 0 36.7-29.7 66.4-66.6 66.4zm212.4 0c-36.9 0-66.6-29.7-66.6-66.6 0-36.6 29.7-66.4 66.6-66.4 36.6 0 66.4 29.7 66.4 66.4 0 36.9-29.8 66.6-66.4 66.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSimplybuilt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSistrix.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSistrix.d.ts new file mode 100644 index 0000000000..9ea3f4c146 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSistrix.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSistrix: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSistrix.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSistrix.js new file mode 100644 index 0000000000..d78bf9498b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSistrix.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'sistrix'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f3ee'; +var svgPathData = 'M448 449L301.2 300.2c20-27.9 31.9-62.2 31.9-99.2 0-93.1-74.7-168.9-166.5-168.9C74.7 32 0 107.8 0 200.9s74.7 168.9 166.5 168.9c39.8 0 76.3-14.2 105-37.9l146 148.1 30.5-31zM166.5 330.8c-70.6 0-128.1-58.3-128.1-129.9S95.9 71 166.5 71s128.1 58.3 128.1 129.9-57.4 129.9-128.1 129.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSistrix = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSith.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSith.d.ts new file mode 100644 index 0000000000..0079471312 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSith.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSith: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSith.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSith.js new file mode 100644 index 0000000000..e43388905f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSith.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'sith'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f512'; +var svgPathData = 'M0 32l69.71 118.75-58.86-11.52 69.84 91.03a146.741 146.741 0 0 0 0 51.45l-69.84 91.03 58.86-11.52L0 480l118.75-69.71-11.52 58.86 91.03-69.84c17.02 3.04 34.47 3.04 51.48 0l91.03 69.84-11.52-58.86L448 480l-69.71-118.78 58.86 11.52-69.84-91.03c3.03-17.01 3.04-34.44 0-51.45l69.84-91.03-58.86 11.52L448 32l-118.75 69.71 11.52-58.9-91.06 69.87c-8.5-1.52-17.1-2.29-25.71-2.29s-17.21.78-25.71 2.29l-91.06-69.87 11.52 58.9L0 32zm224 99.78c31.8 0 63.6 12.12 87.85 36.37 48.5 48.5 48.49 127.21 0 175.7s-127.2 48.46-175.7-.03c-48.5-48.5-48.49-127.21 0-175.7 24.24-24.25 56.05-36.34 87.85-36.34zm0 36.66c-22.42 0-44.83 8.52-61.92 25.61-34.18 34.18-34.19 89.68 0 123.87s89.65 34.18 123.84 0c34.18-34.18 34.19-89.68 0-123.87-17.09-17.09-39.5-25.61-61.92-25.61z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSith = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSkyatlas.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSkyatlas.d.ts new file mode 100644 index 0000000000..cc4415574c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSkyatlas.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSkyatlas: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSkyatlas.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSkyatlas.js new file mode 100644 index 0000000000..188ed90d0f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSkyatlas.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'skyatlas'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f216'; +var svgPathData = 'M640 329.3c0 65.9-52.5 114.4-117.5 114.4-165.9 0-196.6-249.7-359.7-249.7-146.9 0-147.1 212.2 5.6 212.2 42.5 0 90.9-17.8 125.3-42.5 5.6-4.1 16.9-16.3 22.8-16.3s10.9 5 10.9 10.9c0 7.8-13.1 19.1-18.7 24.1-40.9 35.6-100.3 61.2-154.7 61.2-83.4.1-154-59-154-144.9s67.5-149.1 152.8-149.1c185.3 0 222.5 245.9 361.9 245.9 99.9 0 94.8-139.7 3.4-139.7-17.5 0-35 11.6-46.9 11.6-8.4 0-15.9-7.2-15.9-15.6 0-11.6 5.3-23.7 5.3-36.3 0-66.6-50.9-114.7-116.9-114.7-53.1 0-80 36.9-88.8 36.9-6.2 0-11.2-5-11.2-11.2 0-5.6 4.1-10.3 7.8-14.4 25.3-28.8 64.7-43.7 102.8-43.7 79.4 0 139.1 58.4 139.1 137.8 0 6.9-.3 13.7-1.2 20.6 11.9-3.1 24.1-4.7 35.9-4.7 60.7 0 111.9 45.3 111.9 107.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSkyatlas = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSkype.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSkype.d.ts new file mode 100644 index 0000000000..a63ced81b0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSkype.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSkype: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSkype.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSkype.js new file mode 100644 index 0000000000..be805396ce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSkype.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'skype'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f17e'; +var svgPathData = 'M424.7 299.8c2.9-14 4.7-28.9 4.7-43.8 0-113.5-91.9-205.3-205.3-205.3-14.9 0-29.7 1.7-43.8 4.7C161.3 40.7 137.7 32 112 32 50.2 32 0 82.2 0 144c0 25.7 8.7 49.3 23.3 68.2-2.9 14-4.7 28.9-4.7 43.8 0 113.5 91.9 205.3 205.3 205.3 14.9 0 29.7-1.7 43.8-4.7 19 14.6 42.6 23.3 68.2 23.3 61.8 0 112-50.2 112-112 .1-25.6-8.6-49.2-23.2-68.1zm-194.6 91.5c-65.6 0-120.5-29.2-120.5-65 0-16 9-30.6 29.5-30.6 31.2 0 34.1 44.9 88.1 44.9 25.7 0 42.3-11.4 42.3-26.3 0-18.7-16-21.6-42-28-62.5-15.4-117.8-22-117.8-87.2 0-59.2 58.6-81.1 109.1-81.1 55.1 0 110.8 21.9 110.8 55.4 0 16.9-11.4 31.8-30.3 31.8-28.3 0-29.2-33.5-75-33.5-25.7 0-42 7-42 22.5 0 19.8 20.8 21.8 69.1 33 41.4 9.3 90.7 26.8 90.7 77.6 0 59.1-57.1 86.5-112 86.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSkype = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSlack.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSlack.d.ts new file mode 100644 index 0000000000..6a93a464ab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSlack.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSlack: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSlack.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSlack.js new file mode 100644 index 0000000000..421dfb0b89 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSlack.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'slack'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f198'; +var svgPathData = 'M244.2 217.5l19.3 57.7-59.8 20-19.3-57.7 59.8-20zm41.4 243.7C131.6 507.4 65 471.6 18.8 317.6S8.4 97 162.4 50.8C316.4 4.6 383 40.4 429.2 194.4c46.2 154 10.4 220.6-143.6 266.8zM366.2 265c-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-19.3-57.7 29-9.7c12.2-3.9 18.6-17.2 14.7-29.4-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-59.8 20.1-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l19.3 57.7-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 59.8-20.1 10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 29-9.7c12.2-4.2 18.6-17.5 14.7-29.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSlack = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSlackHash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSlackHash.d.ts new file mode 100644 index 0000000000..0e9b4b0849 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSlackHash.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSlackHash: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSlackHash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSlackHash.js new file mode 100644 index 0000000000..9ec025f981 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSlackHash.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'slack-hash'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f3ef'; +var svgPathData = 'M446.2 270.4c-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-30.3-90 45.4-15.1c19.1-6.2 29.1-26.8 23-45.9-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-93.4 31.2-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-45.3 15c-19.1 6.2-29.1 26.8-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l30.3 90L78 354.8c-19 6.2-29.1 26.9-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 93.6-31.3 15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 45.4-15.1c19-6 29.1-26.7 22.9-45.7zm-254.1 47.2l-30.3-90.2 93.5-31.3 30.3 90.2-93.5 31.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSlackHash = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSlideshare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSlideshare.d.ts new file mode 100644 index 0000000000..5f87c38e31 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSlideshare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSlideshare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSlideshare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSlideshare.js new file mode 100644 index 0000000000..dd169c7f62 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSlideshare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'slideshare'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1e7'; +var svgPathData = 'M249.429 211.436c0 31.716-27.715 57.717-61.717 57.717-34.001 0-61.716-26.001-61.716-57.717 0-32.001 27.715-57.716 61.716-57.716 34.001 0 61.717 25.715 61.717 57.716zm254.294 50.002c-18.286 22.573-53.144 50.288-106.289 72.003C453.722 525.163 260 555.735 263.143 457.446c0 1.714-.286-52.859-.286-93.432-4.285-.858-8.571-2-13.714-3.143 0 40.858-.286 98.289-.286 96.575C252 555.735 58.278 525.163 114.566 333.441c-53.145-21.715-88.003-49.43-106.29-72.003-9.143-13.714.858-28.287 16.001-17.715 2 1.428 4.285 2.857 6.285 4.285V49.716C30.563 22.287 51.135 0 76.565 0h359.157c25.429 0 46.002 22.287 46.002 49.716v198.293l6-4.285c15.143-10.573 25.143 4 15.999 17.714zm-46.572-189.15c0-32.858-10.572-45.716-40.859-45.716H98.566c-31.716 0-40.573 10.858-40.573 45.716v192.293c67.717 35.43 125.72 29.144 157.435 28.001 13.429-.286 22.001 2.286 27.144 7.715 1.689 1.687 10.023 9.446 20.287 17.143 1.143-15.715 10.001-25.715 33.716-24.858 32.287 1.428 91.718 7.715 160.577-29.716V72.288zM331.146 153.72c-34.002 0-61.716 25.715-61.716 57.716 0 31.716 27.715 57.717 61.716 57.717 34.287 0 61.716-26.001 61.716-57.717 0-32.001-27.429-57.716-61.716-57.716z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSlideshare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSnapchat.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSnapchat.d.ts new file mode 100644 index 0000000000..bf90495546 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSnapchat.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSnapchat: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSnapchat.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSnapchat.js new file mode 100644 index 0000000000..eaf787cbc1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSnapchat.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'snapchat'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f2ab'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm169.5 338.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C183.1 100 230.7 96 244.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSnapchat = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSnapchatGhost.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSnapchatGhost.d.ts new file mode 100644 index 0000000000..9730fdae88 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSnapchatGhost.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSnapchatGhost: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSnapchatGhost.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSnapchatGhost.js new file mode 100644 index 0000000000..978a6a66de --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSnapchatGhost.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'snapchat-ghost'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2ac'; +var svgPathData = 'M510.846 392.673c-5.211 12.157-27.239 21.089-67.36 27.318-2.064 2.786-3.775 14.686-6.507 23.956-1.625 5.566-5.623 8.869-12.128 8.869l-.297-.005c-9.395 0-19.203-4.323-38.852-4.323-26.521 0-35.662 6.043-56.254 20.588-21.832 15.438-42.771 28.764-74.027 27.399-31.646 2.334-58.025-16.908-72.871-27.404-20.714-14.643-29.828-20.582-56.241-20.582-18.864 0-30.736 4.72-38.852 4.72-8.073 0-11.213-4.922-12.422-9.04-2.703-9.189-4.404-21.263-6.523-24.13-20.679-3.209-67.31-11.344-68.498-32.15a10.627 10.627 0 0 1 8.877-11.069c69.583-11.455 100.924-82.901 102.227-85.934.074-.176.155-.344.237-.515 3.713-7.537 4.544-13.849 2.463-18.753-5.05-11.896-26.872-16.164-36.053-19.796-23.715-9.366-27.015-20.128-25.612-27.504 2.437-12.836 21.725-20.735 33.002-15.453 8.919 4.181 16.843 6.297 23.547 6.297 5.022 0 8.212-1.204 9.96-2.171-2.043-35.936-7.101-87.29 5.687-115.969C158.122 21.304 229.705 15.42 250.826 15.42c.944 0 9.141-.089 10.11-.089 52.148 0 102.254 26.78 126.723 81.643 12.777 28.65 7.749 79.792 5.695 116.009 1.582.872 4.357 1.942 8.599 2.139 6.397-.286 13.815-2.389 22.069-6.257 6.085-2.846 14.406-2.461 20.48.058l.029.01c9.476 3.385 15.439 10.215 15.589 17.87.184 9.747-8.522 18.165-25.878 25.018-2.118.835-4.694 1.655-7.434 2.525-9.797 3.106-24.6 7.805-28.616 17.271-2.079 4.904-1.256 11.211 2.46 18.748.087.168.166.342.239.515 1.301 3.03 32.615 74.46 102.23 85.934 6.427 1.058 11.163 7.877 7.725 15.859z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSnapchatGhost = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSnapchatSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSnapchatSquare.d.ts new file mode 100644 index 0000000000..b086da7e0f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSnapchatSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSnapchatSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSnapchatSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSnapchatSquare.js new file mode 100644 index 0000000000..1433dd5cc4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSnapchatSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'snapchat-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f2ad'; +var svgPathData = 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6.5 314.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C159.1 100 206.7 96 220.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSnapchatSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSoundcloud.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSoundcloud.d.ts new file mode 100644 index 0000000000..a9c9e41af2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSoundcloud.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSoundcloud: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSoundcloud.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSoundcloud.js new file mode 100644 index 0000000000..5a6aa3c84c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSoundcloud.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'soundcloud'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f1be'; +var svgPathData = 'M111.4 256.3l5.8 65-5.8 68.3c-.3 2.5-2.2 4.4-4.4 4.4s-4.2-1.9-4.2-4.4l-5.6-68.3 5.6-65c0-2.2 1.9-4.2 4.2-4.2 2.2 0 4.1 2 4.4 4.2zm21.4-45.6c-2.8 0-4.7 2.2-5 5l-5 105.6 5 68.3c.3 2.8 2.2 5 5 5 2.5 0 4.7-2.2 4.7-5l5.8-68.3-5.8-105.6c0-2.8-2.2-5-4.7-5zm25.5-24.1c-3.1 0-5.3 2.2-5.6 5.3l-4.4 130 4.4 67.8c.3 3.1 2.5 5.3 5.6 5.3 2.8 0 5.3-2.2 5.3-5.3l5.3-67.8-5.3-130c0-3.1-2.5-5.3-5.3-5.3zM7.2 283.2c-1.4 0-2.2 1.1-2.5 2.5L0 321.3l4.7 35c.3 1.4 1.1 2.5 2.5 2.5s2.2-1.1 2.5-2.5l5.6-35-5.6-35.6c-.3-1.4-1.1-2.5-2.5-2.5zm23.6-21.9c-1.4 0-2.5 1.1-2.5 2.5l-6.4 57.5 6.4 56.1c0 1.7 1.1 2.8 2.5 2.8s2.5-1.1 2.8-2.5l7.2-56.4-7.2-57.5c-.3-1.4-1.4-2.5-2.8-2.5zm25.3-11.4c-1.7 0-3.1 1.4-3.3 3.3L47 321.3l5.8 65.8c.3 1.7 1.7 3.1 3.3 3.1 1.7 0 3.1-1.4 3.1-3.1l6.9-65.8-6.9-68.1c0-1.9-1.4-3.3-3.1-3.3zm25.3-2.2c-1.9 0-3.6 1.4-3.6 3.6l-5.8 70 5.8 67.8c0 2.2 1.7 3.6 3.6 3.6s3.6-1.4 3.9-3.6l6.4-67.8-6.4-70c-.3-2.2-2-3.6-3.9-3.6zm241.4-110.9c-1.1-.8-2.8-1.4-4.2-1.4-2.2 0-4.2.8-5.6 1.9-1.9 1.7-3.1 4.2-3.3 6.7v.8l-3.3 176.7 1.7 32.5 1.7 31.7c.3 4.7 4.2 8.6 8.9 8.6s8.6-3.9 8.6-8.6l3.9-64.2-3.9-177.5c-.4-3-2-5.8-4.5-7.2zm-26.7 15.3c-1.4-.8-2.8-1.4-4.4-1.4s-3.1.6-4.4 1.4c-2.2 1.4-3.6 3.9-3.6 6.7l-.3 1.7-2.8 160.8s0 .3 3.1 65.6v.3c0 1.7.6 3.3 1.7 4.7 1.7 1.9 3.9 3.1 6.4 3.1 2.2 0 4.2-1.1 5.6-2.5 1.7-1.4 2.5-3.3 2.5-5.6l.3-6.7 3.1-58.6-3.3-162.8c-.3-2.8-1.7-5.3-3.9-6.7zm-111.4 22.5c-3.1 0-5.8 2.8-5.8 6.1l-4.4 140.6 4.4 67.2c.3 3.3 2.8 5.8 5.8 5.8 3.3 0 5.8-2.5 6.1-5.8l5-67.2-5-140.6c-.2-3.3-2.7-6.1-6.1-6.1zm376.7 62.8c-10.8 0-21.1 2.2-30.6 6.1-6.4-70.8-65.8-126.4-138.3-126.4-17.8 0-35 3.3-50.3 9.4-6.1 2.2-7.8 4.4-7.8 9.2v249.7c0 5 3.9 8.6 8.6 9.2h218.3c43.3 0 78.6-35 78.6-78.3.1-43.6-35.2-78.9-78.5-78.9zm-296.7-60.3c-4.2 0-7.5 3.3-7.8 7.8l-3.3 136.7 3.3 65.6c.3 4.2 3.6 7.5 7.8 7.5 4.2 0 7.5-3.3 7.5-7.5l3.9-65.6-3.9-136.7c-.3-4.5-3.3-7.8-7.5-7.8zm-53.6-7.8c-3.3 0-6.4 3.1-6.4 6.7l-3.9 145.3 3.9 66.9c.3 3.6 3.1 6.4 6.4 6.4 3.6 0 6.4-2.8 6.7-6.4l4.4-66.9-4.4-145.3c-.3-3.6-3.1-6.7-6.7-6.7zm26.7 3.4c-3.9 0-6.9 3.1-6.9 6.9L227 321.3l3.9 66.4c.3 3.9 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9l4.2-66.4-4.2-141.7c0-3.9-3-6.9-6.9-6.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSoundcloud = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSpeakap.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSpeakap.d.ts new file mode 100644 index 0000000000..915912f2e0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSpeakap.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSpeakap: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSpeakap.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSpeakap.js new file mode 100644 index 0000000000..f97fce7f0b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSpeakap.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'speakap'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f3f3'; +var svgPathData = 'M352 32H96C43.2 32 0 75.2 0 128v256c0 52.8 43.2 96 96 96h256c52.8 0 96-43.2 96-96V128c0-52.8-43.2-96-96-96zM221 382.9c-39.6 0-81.9-17.8-81.9-53.7V302H179v17.8c0 15.1 19.5 24.5 41.9 24.5 24.2 0 41.3-10.4 41.3-29.5 0-23.8-27.2-31.9-54.7-42.6-31.9-12.4-63.1-26.2-63.1-69.1 0-48 38.6-66.4 79.9-66.4 37.6 0 75.5 14.1 75.5 41.9v31.2h-39.9v-16.1c0-12.1-17.8-18.5-35.6-18.5-19.5 0-35.6 8.1-35.6 26.2 0 22.1 22.5 29.2 47 38.9 35.9 12.4 71.1 27.2 71.1 71.5.1 48.6-40.8 71.1-85.8 71.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSpeakap = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSpotify.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSpotify.d.ts new file mode 100644 index 0000000000..2ad60a7b2b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSpotify.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSpotify: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSpotify.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSpotify.js new file mode 100644 index 0000000000..5d863c6d21 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSpotify.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'spotify'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f1bc'; +var svgPathData = 'M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm100.7 364.9c-4.2 0-6.8-1.3-10.7-3.6-62.4-37.6-135-39.2-206.7-24.5-3.9 1-9 2.6-11.9 2.6-9.7 0-15.8-7.7-15.8-15.8 0-10.3 6.1-15.2 13.6-16.8 81.9-18.1 165.6-16.5 237 26.2 6.1 3.9 9.7 7.4 9.7 16.5s-7.1 15.4-15.2 15.4zm26.9-65.6c-5.2 0-8.7-2.3-12.3-4.2-62.5-37-155.7-51.9-238.6-29.4-4.8 1.3-7.4 2.6-11.9 2.6-10.7 0-19.4-8.7-19.4-19.4s5.2-17.8 15.5-20.7c27.8-7.8 56.2-13.6 97.8-13.6 64.9 0 127.6 16.1 177 45.5 8.1 4.8 11.3 11 11.3 19.7-.1 10.8-8.5 19.5-19.4 19.5zm31-76.2c-5.2 0-8.4-1.3-12.9-3.9-71.2-42.5-198.5-52.7-280.9-29.7-3.6 1-8.1 2.6-12.9 2.6-13.2 0-23.3-10.3-23.3-23.6 0-13.6 8.4-21.3 17.4-23.9 35.2-10.3 74.6-15.2 117.5-15.2 73 0 149.5 15.2 205.4 47.8 7.8 4.5 12.9 10.7 12.9 22.6 0 13.6-11 23.3-23.2 23.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSpotify = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSquarespace.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSquarespace.d.ts new file mode 100644 index 0000000000..33fb02dff2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSquarespace.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSquarespace: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSquarespace.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSquarespace.js new file mode 100644 index 0000000000..7b55f48069 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSquarespace.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'squarespace'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f5be'; +var svgPathData = 'M186.12 343.34c-9.65 9.65-9.65 25.29 0 34.94 9.65 9.65 25.29 9.65 34.94 0L378.24 221.1c19.29-19.29 50.57-19.29 69.86 0s19.29 50.57 0 69.86L293.95 445.1c19.27 19.29 50.53 19.31 69.82.04l.04-.04 119.25-119.24c38.59-38.59 38.59-101.14 0-139.72-38.59-38.59-101.15-38.59-139.72 0l-157.22 157.2zm244.53-104.8c-9.65-9.65-25.29-9.65-34.93 0l-157.2 157.18c-19.27 19.29-50.53 19.31-69.82.05l-.05-.05c-9.64-9.64-25.27-9.65-34.92-.01l-.01.01c-9.65 9.64-9.66 25.28-.02 34.93l.02.02c38.58 38.57 101.14 38.57 139.72 0l157.2-157.2c9.65-9.65 9.65-25.29.01-34.93zm-261.99 87.33l157.18-157.18c9.64-9.65 9.64-25.29 0-34.94-9.64-9.64-25.27-9.64-34.91 0L133.72 290.93c-19.28 19.29-50.56 19.3-69.85.01l-.01-.01c-19.29-19.28-19.31-50.54-.03-69.84l.03-.03L218.03 66.89c-19.28-19.29-50.55-19.3-69.85-.02l-.02.02L28.93 186.14c-38.58 38.59-38.58 101.14 0 139.72 38.6 38.59 101.13 38.59 139.73.01zm-87.33-52.4c9.64 9.64 25.27 9.64 34.91 0l157.21-157.19c19.28-19.29 50.55-19.3 69.84-.02l.02.02c9.65 9.65 25.29 9.65 34.93 0 9.65-9.65 9.65-25.29 0-34.93-38.59-38.59-101.13-38.59-139.72 0L81.33 238.54c-9.65 9.64-9.65 25.28-.01 34.93h.01z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSquarespace = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStackExchange.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStackExchange.d.ts new file mode 100644 index 0000000000..f87b91c63f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStackExchange.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStackExchange: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStackExchange.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStackExchange.js new file mode 100644 index 0000000000..fada6c8483 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStackExchange.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'stack-exchange'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f18d'; +var svgPathData = 'M17.7 332.3h412.7v22c0 37.7-29.3 68-65.3 68h-19L259.3 512v-89.7H83c-36 0-65.3-30.3-65.3-68v-22zm0-23.6h412.7v-85H17.7v85zm0-109.4h412.7v-85H17.7v85zM365 0H83C47 0 17.7 30.3 17.7 67.7V90h412.7V67.7C430.3 30.3 401 0 365 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStackExchange = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStackOverflow.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStackOverflow.d.ts new file mode 100644 index 0000000000..5706138f3e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStackOverflow.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStackOverflow: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStackOverflow.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStackOverflow.js new file mode 100644 index 0000000000..58a272ad9b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStackOverflow.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'stack-overflow'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f16c'; +var svgPathData = 'M293.7 300l-181.2-84.5 16.7-36.5 181.3 84.7-16.8 36.3zm48-76L188.2 95.7l-25.5 30.8 153.5 128.3 25.5-30.8zm39.6-31.7L262 32l-32 24 119.3 160.3 32-24zM290.7 311L95 269.7 86.8 309l195.7 41 8.2-39zm31.6 129H42.7V320h-40v160h359.5V320h-40v120zm-39.8-80h-200v39.7h200V360z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStackOverflow = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStaylinked.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStaylinked.d.ts new file mode 100644 index 0000000000..4cb1a54f3f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStaylinked.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStaylinked: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStaylinked.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStaylinked.js new file mode 100644 index 0000000000..bf11fd0845 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStaylinked.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'staylinked'; +var width = 440; +var height = 512; +var ligatures = []; +var unicode = 'f3f5'; +var svgPathData = 'M201.6 127.4c4.1-3.2 10.3-3 13.8.5l170 167.3-2.7-2.7 44.3 41.3c3.7 3.5 3.3 9-.7 12.2l-198 163.9c-9.9 7.6-17.3.8-17.3.8L2.3 314.6c-3.5-3.5-3-9 1.2-12.2l45.8-34.9c4.2-3.2 10.4-3 13.9.5l151.9 147.5c3.7 3.5 10 3.7 14.2.4l93.2-74c4.1-3.2 4.5-8.7.9-12.2l-84-81.3c-3.6-3.5-9.9-3.7-14-.5l-.1.1c-4.1 3.2-10.4 3-14-.5l-68.1-64.3c-3.5-3.5-3.1-9 1.1-12.2l57.3-43.6m14.8 257.3c3.7 3.5 10.1 3.7 14.3.4l50.2-38.8-.3-.3 7.7-6c4.2-3.2 4.6-8.7.9-12.2l-57.1-54.4c-3.6-3.5-10-3.7-14.2-.5l-.1.1c-4.2 3.2-10.5 3.1-14.2-.4L109 180.8c-3.6-3.5-3.1-8.9 1.1-12.2l92.2-71.5c4.1-3.2 10.3-3 13.9.5l160.4 159c3.7 3.5 10 3.7 14.1.5l45.8-35.8c4.1-3.2 4.4-8.7.7-12.2L226.7 2.5c-1.5-1.2-8-5.5-16.3 1.1L3.6 165.7c-4.2 3.2-4.8 8.7-1.2 12.2l42.3 41.7'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStaylinked = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSteam.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSteam.d.ts new file mode 100644 index 0000000000..f686a418be --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSteam.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSteam: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSteam.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSteam.js new file mode 100644 index 0000000000..de729b8014 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSteam.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'steam'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f1b6'; +var svgPathData = 'M496 256c0 137-111.2 248-248.4 248-113.8 0-209.6-76.3-239-180.4l95.2 39.3c6.4 32.1 34.9 56.4 68.9 56.4 39.2 0 71.9-32.4 70.2-73.5l84.5-60.2c52.1 1.3 95.8-40.9 95.8-93.5 0-51.6-42-93.5-93.7-93.5s-93.7 42-93.7 93.5v1.2L176.6 279c-15.5-.9-30.7 3.4-43.5 12.1L0 236.1C10.2 108.4 117.1 8 247.6 8 384.8 8 496 119 496 256zM155.7 384.3l-30.5-12.6a52.79 52.79 0 0 0 27.2 25.8c26.9 11.2 57.8-1.6 69-28.4 5.4-13 5.5-27.3.1-40.3-5.4-13-15.5-23.2-28.5-28.6-12.9-5.4-26.7-5.2-38.9-.6l31.5 13c19.8 8.2 29.2 30.9 20.9 50.7-8.3 19.9-31 29.2-50.8 21zm173.8-129.9c-34.4 0-62.4-28-62.4-62.3s28-62.3 62.4-62.3 62.4 28 62.4 62.3-27.9 62.3-62.4 62.3zm.1-15.6c25.9 0 46.9-21 46.9-46.8 0-25.9-21-46.8-46.9-46.8s-46.9 21-46.9 46.8c.1 25.8 21.1 46.8 46.9 46.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSteam = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSteamSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSteamSquare.d.ts new file mode 100644 index 0000000000..6b6db57920 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSteamSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSteamSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSteamSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSteamSquare.js new file mode 100644 index 0000000000..1e72d8a3c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSteamSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'steam-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f1b7'; +var svgPathData = 'M185.2 356.5c7.7-18.5-1-39.7-19.6-47.4l-29.5-12.2c11.4-4.3 24.3-4.5 36.4.5 12.2 5.1 21.6 14.6 26.7 26.7 5 12.2 5 25.6-.1 37.7-10.5 25.1-39.4 37-64.6 26.5-11.6-4.8-20.4-13.6-25.4-24.2l28.5 11.8c18.6 7.8 39.9-.9 47.6-19.4zM400 32H48C21.5 32 0 53.5 0 80v160.7l116.6 48.1c12-8.2 26.2-12.1 40.7-11.3l55.4-80.2v-1.1c0-48.2 39.3-87.5 87.6-87.5s87.6 39.3 87.6 87.5c0 49.2-40.9 88.7-89.6 87.5l-79 56.3c1.6 38.5-29.1 68.8-65.7 68.8-31.8 0-58.5-22.7-64.5-52.7L0 319.2V432c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-99.7 222.5c-32.2 0-58.4-26.1-58.4-58.3s26.2-58.3 58.4-58.3 58.4 26.2 58.4 58.3-26.2 58.3-58.4 58.3zm.1-14.6c24.2 0 43.9-19.6 43.9-43.8 0-24.2-19.6-43.8-43.9-43.8-24.2 0-43.9 19.6-43.9 43.8 0 24.2 19.7 43.8 43.9 43.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSteamSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSteamSymbol.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSteamSymbol.d.ts new file mode 100644 index 0000000000..95bc750e17 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSteamSymbol.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSteamSymbol: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSteamSymbol.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSteamSymbol.js new file mode 100644 index 0000000000..216ac3d4b7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSteamSymbol.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'steam-symbol'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f3f6'; +var svgPathData = 'M395.5 177.5c0 33.8-27.5 61-61 61-33.8 0-61-27.3-61-61s27.3-61 61-61c33.5 0 61 27.2 61 61zm52.5.2c0 63-51 113.8-113.7 113.8L225 371.3c-4 43-40.5 76.8-84.5 76.8-40.5 0-74.7-28.8-83-67L0 358V250.7L97.2 290c15.1-9.2 32.2-13.3 52-11.5l71-101.7c.5-62.3 51.5-112.8 114-112.8C397 64 448 115 448 177.7zM203 363c0-34.7-27.8-62.5-62.5-62.5-4.5 0-9 .5-13.5 1.5l26 10.5c25.5 10.2 38 39 27.7 64.5-10.2 25.5-39.2 38-64.7 27.5-10.2-4-20.5-8.3-30.7-12.2 10.5 19.7 31.2 33.2 55.2 33.2 34.7 0 62.5-27.8 62.5-62.5zm207.5-185.3c0-42-34.3-76.2-76.2-76.2-42.3 0-76.5 34.2-76.5 76.2 0 42.2 34.3 76.2 76.5 76.2 41.9.1 76.2-33.9 76.2-76.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSteamSymbol = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStickerMule.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStickerMule.d.ts new file mode 100644 index 0000000000..d590fe015c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStickerMule.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStickerMule: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStickerMule.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStickerMule.js new file mode 100644 index 0000000000..9fa966812d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStickerMule.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'sticker-mule'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f3f7'; +var svgPathData = 'M353.1 509.8c-5.9 2.9-32.1 3.2-36.5-.5-4.1-3-2.2-11.9-1.5-15 2.2-15-2.5-7.9-9.8-11.5-3.1-1.5-4.1-5.5-4.6-10-.5-1.5-1-2.5-1.5-3.5-1.7-10.7 6.8-33.6 8.2-43.4 4.9-23.7-.7-37.2 1.5-46.9 3.7-16.2 4.1-3.5 4.1-29.9-1.4-25.9 3.3-36.9.5-38.9-14.8 0-64.3 10.7-112.2 2-46.1-8.9-59.4-29-65.4-30.9-10.3-4.5-23.2.5-27.3 7-.1.1-35 70.6-39.6 87.8-6.2 20.5-.5 47.4 4.1 66.8 0 .1 4.5 14.6 10.3 19.5 2.1 1.5 5.1 2.5 7.2 4.5 2.8 2.7 9.4 15.2 9.8 16 2.6 4.5 3.6 8-1.5 10.5-3.6 2-9.3 2.5-14.4 2.5-2.6.5-1.5 3.5-3.1 5-2.9 2.8-20.7 6.1-29.9 2.5-2.6-1-5.7-3-6.2-5-1.5-4 2.1-9-1-12.5-4.5-2.9-13.1-2-17-12-2.2-5.4-2.6-7.6-2.6-49.4 0-9.7-5.9-38.7-8.2-46.9-1.5-5.5-1.5-11.5 0-16 .3-.9 4.1-4.6 4.1-13-1-1.5-4.6-.5-5.1-1.5-10.4-80.6-5.9-79-7.7-98.3-1.5-16-10.9-43.9-6.7-64.3.5-2.4 3.4-21 24.2-38.9 31-26.7 48.4-38.3 159-11.5 1.1.4 66.3 21.1 110.7-9 15.5-11.3 28.8-11.3 35.5-16 .1-.1 61.7-52.1 87-65.3 47.2-29.4 69.9-16.7 75.1-18 4.7-1 13.4-25.8 17-25.8 5.5 0 1.6 20.2 3.6 25.9.5 2 3.6 5 6.2 5 2.3 0 1.7-.8 10.3-5 8.4-5.4 14.9-17.6 20.6-17 11.7 1.6-19 41.6-19 46.9 0 2 .2.8 4.6 9.5 2.6 5.5 4.6 13.5 6.2 20 8.3 29.7 5.7 14.6 13.4 36.9 20.2 50.1 20.6 45.2 20.6 52.9 0 7.5-4.1 11-7.2 16.5-1.5 3-4.6 7.5-7.2 8-2.7.7 7-1.5-13.4 2.5-7.2 1-13.4-4.5-14.9-9.5-1.6-4.7 2.8-10.1-11.8-22.9-10.3-10-21.1-11.3-31.9-17-9.8-5.7-11.9 1-18 8-18 22.9-34 46.9-52 69.8-11.8 15-24.2 30.4-33.5 47.4-3.9 6.8-9.5 28.1-10.3 29.9-6.2 17.7-5.5 25.8-16.5 68.3-3.1 10-5.7 21.4-8.7 32.4-2.2 6.8-7.4 49.3-.5 59.4 2.1 3.5 8.7 4.5 11.3 8 .1.1 9.6 18.2 9.3 20 0 6.1-9.4 5.6-11.3 6.5-4.8 2.9-3.8 5.9-6.4 7.4'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStickerMule = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStrava.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStrava.d.ts new file mode 100644 index 0000000000..425615f910 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStrava.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStrava: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStrava.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStrava.js new file mode 100644 index 0000000000..64c3834b97 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStrava.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'strava'; +var width = 369; +var height = 512; +var ligatures = []; +var unicode = 'f428'; +var svgPathData = 'M301.6 292l-43.9 88.2-44.6-88.2h-67.6l112.2 220 111.5-220h-67.6zM151.4 0L0 292h89.2l62.2-116.1L213.1 292h88.5L151.4 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStrava = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStripe.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStripe.d.ts new file mode 100644 index 0000000000..5f9f853d9b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStripe.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStripe: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStripe.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStripe.js new file mode 100644 index 0000000000..9b15a6c074 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStripe.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'stripe'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f429'; +var svgPathData = 'M640 261.6c0-45.5-22-81.4-64.2-81.4s-67.9 35.9-67.9 81.1c0 53.5 30.3 78.2 73.5 78.2 21.2 0 37.1-4.8 49.2-11.5v-33.4c-12.1 6.1-26 9.8-43.6 9.8-17.3 0-32.5-6.1-34.5-26.9h86.9c.2-2.3.6-11.6.6-15.9m-87.9-16.8c0-20 12.3-28.4 23.4-28.4 10.9 0 22.5 8.4 22.5 28.4h-45.9zm-112.9-64.6c-17.4 0-28.6 8.2-34.8 13.9l-2.3-11H363v204.8l44.4-9.4.1-50.2c6.4 4.7 15.9 11.2 31.4 11.2 31.8 0 60.8-23.2 60.8-79.6.1-51.6-29.3-79.7-60.5-79.7m-10.6 122.5c-10.4 0-16.6-3.8-20.9-8.4l-.3-66c4.6-5.1 11-8.8 21.2-8.8 16.2 0 27.4 18.2 27.4 41.4.1 23.9-10.9 41.8-27.4 41.8M346.4 124v36.2l-44.6 9.5v-36.2l44.6-9.5m-44.5 59.2h44.6v153.2h-44.6V183.2zm-47.8 13.1c10.4-19.1 31.1-15.2 37.1-13.1V224c-5.7-1.8-23.4-4.5-33.9 9.3v103.1H213V183.2h38.4l2.7 13.1m-89-13.1h33.7V221h-33.7v63.2c0 26.2 28 18 33.7 15.7v33.8c-5.9 3.2-16.6 5.9-31.2 5.9-26.3 0-46.1-17-46.1-43.3l.2-142.4 43.3-9.2.1 38.5zM44.9 228.3c0 20 67.9 10.5 67.9 63.4 0 32-25.4 47.8-62.3 47.8-15.3 0-32-3-48.5-10.1v-40c14.9 8.1 33.9 14.2 48.6 14.2 9.9 0 17-2.7 17-10.9 0-21.2-67.5-13.2-67.5-62.4 0-31.4 24-50.2 60-50.2 14.7 0 29.4 2.3 44.1 8.1V230c-13.5-7.3-30.7-11.4-44.2-11.4-9.3.1-15.1 2.8-15.1 9.7'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStripe = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStripeS.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStripeS.d.ts new file mode 100644 index 0000000000..c92929f1fa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStripeS.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStripeS: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStripeS.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStripeS.js new file mode 100644 index 0000000000..7374baf195 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStripeS.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'stripe-s'; +var width = 362; +var height = 512; +var ligatures = []; +var unicode = 'f42a'; +var svgPathData = 'M144.3 154.6c0-22.3 18.6-30.9 48.4-30.9 43.4 0 98.5 13.3 141.9 36.7V26.1C287.3 7.2 240.1 0 192.8 0 77.1 0 0 60.4 0 161.4c0 157.9 216.8 132.3 216.8 200.4 0 26.4-22.9 34.9-54.7 34.9-47.2 0-108.2-19.5-156.1-45.5v128.5c53 22.8 106.8 32.4 156 32.4 118.6 0 200.3-51 200.3-153.6 0-170.2-218-139.7-218-203.9'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStripeS = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStudiovinari.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStudiovinari.d.ts new file mode 100644 index 0000000000..afb9c6c83c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStudiovinari.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStudiovinari: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStudiovinari.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStudiovinari.js new file mode 100644 index 0000000000..cceae8ce9e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStudiovinari.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'studiovinari'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f3f8'; +var svgPathData = 'M480.3 187.7l4.2 28v28l-25.1 44.1-39.8 78.4-56.1 67.5-79.1 37.8-17.7 24.5-7.7 12-9.6 4s17.3-63.6 19.4-63.6c2.1 0 20.3.7 20.3.7l66.7-38.6-92.5 26.1-55.9 36.8-22.8 28-6.6 1.4 20.8-73.6 6.9-5.5 20.7 12.9 88.3-45.2 56.8-51.5 14.8-68.4-125.4 23.3 15.2-18.2-173.4-53.3 81.9-10.5-166-122.9L133.5 108 32.2 0l252.9 126.6-31.5-38L378 163 234.7 64l18.7 38.4-49.6-18.1L158.3 0l194.6 122L310 66.2l108 96.4 12-8.9-21-16.4 4.2-37.8L451 89.1l29.2 24.7 11.5 4.2-7 6.2 8.5 12-13.1 7.4-10.3 20.2 10.5 23.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStudiovinari = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStumbleupon.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStumbleupon.d.ts new file mode 100644 index 0000000000..ef44ce5296 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStumbleupon.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStumbleupon: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStumbleupon.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStumbleupon.js new file mode 100644 index 0000000000..d8ba314dae --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStumbleupon.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'stumbleupon'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1a4'; +var svgPathData = 'M502.9 266v69.7c0 62.1-50.3 112.4-112.4 112.4-61.8 0-112.4-49.8-112.4-111.3v-70.2l34.3 16 51.1-15.2V338c0 14.7 12 26.5 26.7 26.5S417 352.7 417 338v-72h85.9zm-224.7-58.2l34.3 16 51.1-15.2V173c0-60.5-51.1-109-112.1-109-60.8 0-112.1 48.2-112.1 108.2v162.4c0 14.9-12 26.7-26.7 26.7S86 349.5 86 334.6V266H0v69.7C0 397.7 50.3 448 112.4 448c61.6 0 112.4-49.5 112.4-110.8V176.9c0-14.7 12-26.7 26.7-26.7s26.7 12 26.7 26.7v30.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStumbleupon = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStumbleuponCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStumbleuponCircle.d.ts new file mode 100644 index 0000000000..038ba72f6f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStumbleuponCircle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStumbleuponCircle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStumbleuponCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStumbleuponCircle.js new file mode 100644 index 0000000000..043ac36070 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faStumbleuponCircle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'stumbleupon-circle'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f1a3'; +var svgPathData = 'M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 177.5c-9.8 0-17.8 8-17.8 17.8v106.9c0 40.9-33.9 73.9-74.9 73.9-41.4 0-74.9-33.5-74.9-74.9v-46.5h57.3v45.8c0 10 8 17.8 17.8 17.8s17.8-7.9 17.8-17.8V200.1c0-40 34.2-72.1 74.7-72.1 40.7 0 74.7 32.3 74.7 72.6v23.7l-34.1 10.1-22.9-10.7v-20.6c.1-9.6-7.9-17.6-17.7-17.6zm167.6 123.6c0 41.4-33.5 74.9-74.9 74.9-41.2 0-74.9-33.2-74.9-74.2V263l22.9 10.7 34.1-10.1v47.1c0 9.8 8 17.6 17.8 17.6s17.8-7.9 17.8-17.6v-48h57.3c-.1 45.9-.1 46.4-.1 46.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStumbleuponCircle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSuperpowers.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSuperpowers.d.ts new file mode 100644 index 0000000000..acf676def7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSuperpowers.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSuperpowers: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSuperpowers.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSuperpowers.js new file mode 100644 index 0000000000..d513d5abbb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSuperpowers.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'superpowers'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f2dd'; +var svgPathData = 'M448 32c-83.3 11-166.8 22-250 33-92 12.5-163.3 86.7-169 180-3.3 55.5 18 109.5 57.8 148.2L0 480c83.3-11 166.5-22 249.8-33 91.8-12.5 163.3-86.8 168.7-179.8 3.5-55.5-18-109.5-57.7-148.2L448 32zm-79.7 232.3c-4.2 79.5-74 139.2-152.8 134.5-79.5-4.7-140.7-71-136.3-151 4.5-79.2 74.3-139.3 153-134.5 79.3 4.7 140.5 71 136.1 151z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSuperpowers = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSupple.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSupple.d.ts new file mode 100644 index 0000000000..7665df8e57 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSupple.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSupple: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSupple.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSupple.js new file mode 100644 index 0000000000..f1b0cba2bc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faSupple.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'supple'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f3f9'; +var svgPathData = 'M640 262.5c0 64.1-109 116.1-243.5 116.1-24.8 0-48.6-1.8-71.1-5 7.7.4 15.5.6 23.4.6 134.5 0 243.5-56.9 243.5-127.1 0-29.4-19.1-56.4-51.2-78 60 21.1 98.9 55.1 98.9 93.4zM47.7 227.9c-.1-70.2 108.8-127.3 243.3-127.6 7.9 0 15.6.2 23.3.5-22.5-3.2-46.3-4.9-71-4.9C108.8 96.3-.1 148.5 0 212.6c.1 38.3 39.1 72.3 99.3 93.3-32.3-21.5-51.5-48.6-51.6-78zm60.2 39.9s10.5 13.2 29.3 13.2c17.9 0 28.4-11.5 28.4-25.1 0-28-40.2-25.1-40.2-39.7 0-5.4 5.3-9.1 12.5-9.1 5.7 0 11.3 2.6 11.3 6.6v3.9h14.2v-7.9c0-12.1-15.4-16.8-25.4-16.8-16.5 0-28.5 10.2-28.5 24.1 0 26.6 40.2 25.4 40.2 39.9 0 6.6-5.8 10.1-12.3 10.1-11.9 0-20.7-10.1-20.7-10.1l-8.8 10.9zm120.8-73.6v54.4c0 11.3-7.1 17.8-17.8 17.8-10.7 0-17.8-6.5-17.8-17.7v-54.5h-15.8v55c0 18.9 13.4 31.9 33.7 31.9 20.1 0 33.4-13 33.4-31.9v-55h-15.7zm34.4 85.4h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.8-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5.1 14.7-14 14.7h-12.6zm57 43h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.7-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5 14.7-14 14.7h-12.6zm57.1 34.8c0 5.8 2.4 8.2 8.2 8.2h37.6c5.8 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-18.6c-1.7 0-2.6-1-2.6-2.6v-61.2c0-5.7-2.4-8.2-8.2-8.2H401v13.4h5.2c1.7 0 2.6 1 2.6 2.6v61.2zm63.4 0c0 5.8 2.4 8.2 8.2 8.2H519c5.7 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-19.7c-1.7 0-2.6-1-2.6-2.6v-20.3h27.7v-13.4H488v-22.4h19.2c1.7 0 2.6 1 2.6 2.6v5.2H524v-13c0-5.7-2.5-8.2-8.2-8.2h-51.6v13.4h7.8v63.9zm58.9-76v5.9h1.6v-5.9h2.7v-1.2h-7v1.2h2.7zm5.7-1.2v7.1h1.5v-5.7l2.3 5.7h1.3l2.3-5.7v5.7h1.5v-7.1h-2.3l-2.1 5.1-2.1-5.1h-2.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSupple = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTeamspeak.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTeamspeak.d.ts new file mode 100644 index 0000000000..59c9e55cc4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTeamspeak.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTeamspeak: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTeamspeak.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTeamspeak.js new file mode 100644 index 0000000000..24095210d1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTeamspeak.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'teamspeak'; +var width = 511; +var height = 512; +var ligatures = []; +var unicode = 'f4f9'; +var svgPathData = 'M.82 237.82c2.36-15.52 10.69-27.04 24.88-34.03 3.5-1.85 5.65-3.5 6.37-7.81 6.17-33.41 19.53-63.94 39.37-91.59 2.36-3.19 4.01-5.35 1.03-9.35-3.7-5.35-1.03-10.18 2.98-14.49 28.06-31.87 61.88-55.1 101.98-67.44 95.81-29.4 180.1-9.35 252.37 60.45 6.68 6.37 15.52 12.85 6.99 24.36-1.34 1.85 1.03 3.5 2.16 5.04 20.66 28.06 34.23 59.42 40.4 93.65.82 3.7 2.98 5.04 5.86 6.37 17.37 8.84 25.7 23.34 26.01 42.25 0 17.17 1.85 34.54-1.03 51.71-4.01 24.67-29.19 41.74-53.25 36.7-7.2-1.64-9.35-7.2-9.35-14.19 0-28.06.82-56.44 0-84.6-1.85-75.76-36.18-132.81-102.28-169.41C234.28 4.98 92.11 72.42 67.54 196.91c-6.06 30.42-1.74 48.27-3.7 125.82-.31 7.2-4.32 11.2-12.03 11.51C20.97 335.58 0 316.05 0 285.21v-20.87m221.74 106.81c11.82-4.32 20.05-11.82 22.51-24.36 2.36-12.34-12.03-30.02-32.38-48.73-20.87-19.22-48.22-39.06-63.43-46.57-21.69-12.03-41.74-1.85-46.26 22.72-5.04 26.21 0 51.4 14.49 73.91 10.18 15.52 25.39 22.72 43.38 24.05 11.62.62 52.54 2.16 61.69-1.02m129.83 5.55c36.5 2.81 59.33-28.55 58.39-60.45-2.14-45.17-66.17-16.48-87.79-8.02-73.16 28.14-45.05 54.92-22.2 60.75m149.26-1.33c-2.98-2.36-7.2-1.03-8.33 2.36-8.02 25.39-44.72 112.46-172.08 121.51-149.67 10.49 80.29 43.59 145.36-6.37 22.72-17.37 47.6-35.05 46.57-85.43-.32-10.07-4.84-26.72-11.52-32.07'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTeamspeak = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTelegram.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTelegram.d.ts new file mode 100644 index 0000000000..1811206b2b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTelegram.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTelegram: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTelegram.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTelegram.js new file mode 100644 index 0000000000..fa7f9a2b9f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTelegram.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'telegram'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f2c6'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm121.8 169.9l-40.7 191.8c-3 13.6-11.1 16.9-22.4 10.5l-62-45.7-29.9 28.8c-3.3 3.3-6.1 6.1-12.5 6.1l4.4-63.1 114.9-103.8c5-4.4-1.1-6.9-7.7-2.5l-142 89.4-61.2-19.1c-13.3-4.2-13.6-13.3 2.8-19.7l239.1-92.2c11.1-4 20.8 2.7 17.2 19.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTelegram = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTelegramPlane.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTelegramPlane.d.ts new file mode 100644 index 0000000000..efb25dcab6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTelegramPlane.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTelegramPlane: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTelegramPlane.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTelegramPlane.js new file mode 100644 index 0000000000..fa4a424ff0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTelegramPlane.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'telegram-plane'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f3fe'; +var svgPathData = 'M446.7 98.6l-67.6 318.8c-5.1 22.5-18.4 28.1-37.3 17.5l-103-75.9-49.7 47.8c-5.5 5.5-10.1 10.1-20.7 10.1l7.4-104.9 190.9-172.5c8.3-7.4-1.8-11.5-12.9-4.1L117.8 284 16.2 252.2c-22.1-6.9-22.5-22.1 4.6-32.7L418.2 66.4c18.4-6.9 34.5 4.1 28.5 32.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTelegramPlane = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTencentWeibo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTencentWeibo.d.ts new file mode 100644 index 0000000000..5132a3ab9d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTencentWeibo.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTencentWeibo: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTencentWeibo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTencentWeibo.js new file mode 100644 index 0000000000..0892c76e65 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTencentWeibo.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'tencent-weibo'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f1d5'; +var svgPathData = 'M72.3 495.8c1.4 19.9-27.6 22.2-29.7 2.9C31 368.8 73.7 259.2 144 185.5c-15.6-34 9.2-77.1 50.6-77.1 30.3 0 55.1 24.6 55.1 55.1 0 44-49.5 70.8-86.9 45.1-65.7 71.3-101.4 169.8-90.5 287.2zM192 .1C66.1.1-12.3 134.3 43.7 242.4 52.4 259.8 79 246.9 70 229 23.7 136.4 91 29.8 192 29.8c75.4 0 136.9 61.4 136.9 136.9 0 90.8-86.9 153.9-167.7 133.1-19.1-4.1-25.6 24.4-6.6 29.1 110.7 23.2 204-60 204-162.3C358.6 74.7 284 .1 192 .1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTencentWeibo = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faThemeco.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faThemeco.d.ts new file mode 100644 index 0000000000..23a79d0c59 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faThemeco.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faThemeco: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faThemeco.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faThemeco.js new file mode 100644 index 0000000000..4bf7ca85b1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faThemeco.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'themeco'; +var width = 441; +var height = 512; +var ligatures = []; +var unicode = 'f5c6'; +var svgPathData = 'M199.74 12.29c9.74-5.64 25.59-5.73 35.39-.21l188.13 105.95c9.81 5.52 17.76 19.14 17.76 30.38v213.87c0 11.26-7.93 24.89-17.71 30.46L235.09 499.88c-9.78 5.57-25.58 5.48-35.29-.21L17.58 392.95C7.87 387.26 0 373.52 0 362.27V148.41c0-11.26 7.9-24.96 17.63-30.59L199.74 12.29zM123.54 209c-15.69 0-31.39.14-47.08.14v99.87h18.83v-29.39h28.25c48.94 0 48.79-70.62 0-70.62zm137.96 98.73l-30.25-34.1c36.4-7.39 34.26-64.21-10.7-64.49-15.84 0-31.67-.14-47.51-.14v100.01h18.83v-33.38H210l29.1 33.38h22.4v-1.28zm-40.94-81.04c22.98 0 22.9 31.96 0 31.96h-28.68v-31.96h28.68zm-94.07-1.57c20.85 0 20.78 38.24 0 38.24H94.68v-38.23l31.81-.01zm189.65-17.97c-67.4 0-69.86 104.15 0 104.15 68.39-.01 68.33-104.15 0-104.15zm0 17.12c43.43 0 44.1 69.76 0 69.76-44.12 0-43.74-69.76 0-69.76z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faThemeco = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faThemeisle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faThemeisle.d.ts new file mode 100644 index 0000000000..7a13d5e5fa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faThemeisle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faThemeisle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faThemeisle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faThemeisle.js new file mode 100644 index 0000000000..82472a7540 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faThemeisle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'themeisle'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2b2'; +var svgPathData = 'M208 88.286c0-10 6.286-21.714 17.715-21.714 11.142 0 17.714 11.714 17.714 21.714 0 10.285-6.572 21.714-17.714 21.714C214.286 110 208 98.571 208 88.286zm304 160c0 36.001-11.429 102.286-36.286 129.714-22.858 24.858-87.428 61.143-120.857 70.572l-1.143.286v32.571c0 16.286-12.572 30.571-29.143 30.571-10 0-19.429-5.714-24.572-14.286-5.427 8.572-14.856 14.286-24.856 14.286-10 0-19.429-5.714-24.858-14.286-5.142 8.572-14.571 14.286-24.57 14.286-10.286 0-19.429-5.714-24.858-14.286-5.143 8.572-14.571 14.286-24.571 14.286-18.857 0-29.429-15.714-29.429-32.857-16.286 12.285-35.715 19.428-56.571 19.428-22 0-43.429-8.285-60.286-22.857 10.285-.286 20.571-2.286 30.285-5.714-20.857-5.714-39.428-18.857-52-36.286 21.37 4.645 46.209 1.673 67.143-11.143-22-22-56.571-58.857-68.572-87.428C1.143 321.714 0 303.714 0 289.429c0-49.714 20.286-160 86.286-160 10.571 0 18.857 4.858 23.143 14.857a158.792 158.792 0 0 1 12-15.428c2-2.572 5.714-5.429 7.143-8.286 7.999-12.571 11.714-21.142 21.714-34C182.571 45.428 232 17.143 285.143 17.143c6 0 12 .285 17.714 1.143C313.714 6.571 328.857 0 344.572 0c14.571 0 29.714 6 40 16.286.857.858 1.428 2.286 1.428 3.428 0 3.714-10.285 13.429-12.857 16.286 4.286 1.429 15.714 6.858 15.714 12 0 2.857-2.857 5.143-4.571 7.143 31.429 27.714 49.429 67.143 56.286 108 4.286-5.143 10.285-8.572 17.143-8.572 10.571 0 20.857 7.144 28.571 14.001C507.143 187.143 512 221.714 512 248.286zM188 89.428c0 18.286 12.571 37.143 32.286 37.143 19.714 0 32.285-18.857 32.285-37.143 0-18-12.571-36.857-32.285-36.857-19.715 0-32.286 18.858-32.286 36.857zM237.714 194c0-19.714 3.714-39.143 8.571-58.286-52.039 79.534-13.531 184.571 68.858 184.571 21.428 0 42.571-7.714 60-20 2-7.429 3.714-14.857 3.714-22.572 0-14.286-6.286-21.428-20.572-21.428-4.571 0-9.143.857-13.429 1.714-63.343 12.668-107.142 3.669-107.142-63.999zm-41.142 254.858c0-11.143-8.858-20.857-20.286-20.857-11.429 0-20 9.715-20 20.857v32.571c0 11.143 8.571 21.142 20 21.142 11.428 0 20.286-9.715 20.286-21.142v-32.571zm49.143 0c0-11.143-8.572-20.857-20-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20-10 20-21.142v-32.571zm49.713 0c0-11.143-8.857-20.857-20.285-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20.285-9.715 20.285-21.142v-32.571zm49.715 0c0-11.143-8.857-20.857-20.286-20.857-11.428 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.858 21.142 20.286 21.142 11.429 0 20.286-10 20.286-21.142v-32.571zM421.714 286c-30.857 59.142-90.285 102.572-158.571 102.572-96.571 0-160.571-84.572-160.571-176.572 0-16.857 2-33.429 6-49.714-20 33.715-29.714 72.572-29.714 111.429 0 60.286 24.857 121.715 71.429 160.857 5.143-9.714 14.857-16.286 26-16.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.571-14.286 24.858-14.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.857-14.286 24.858-14.286 10 0 19.428 5.714 24.857 14.286 5.143-8.571 14.571-14.286 24.572-14.286 10.857 0 20.857 6.572 25.714 16 43.427-36.286 68.569-92 71.426-148.286zm10.572-99.714c0-53.714-34.571-105.714-92.572-105.714-30.285 0-58.571 15.143-78.857 36.857C240.862 183.812 233.41 254 302.286 254c28.805 0 97.357-28.538 84.286 36.857 28.857-26 45.714-65.714 45.714-104.571z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faThemeisle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTradeFederation.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTradeFederation.d.ts new file mode 100644 index 0000000000..6e45853874 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTradeFederation.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTradeFederation: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTradeFederation.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTradeFederation.js new file mode 100644 index 0000000000..323b7d1fb2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTradeFederation.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'trade-federation'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f513'; +var svgPathData = 'M202.45 108.42v81.61H38.94l48.22 61.91h114.73v196.75h64.61V252.96h83.27v-62.69h-83.18V171.1h145.62v-62.68H202.45zm4.86 6h197.77v50.68H259.44v30.93h83.18v50.93h-83.26v195.73h-52.73V245.94H89.86l-39.95-49.91h157.4v-81.61zM247.99 8.8C111.03 8.8 0 119.83 0 256.8s111.03 248 247.99 248S496 393.76 496 256.8 384.96 8.8 247.99 8.8zm.02 13.24c129.66 0 234.76 105.12 234.76 234.78s-105.1 234.76-234.76 234.76S13.23 386.47 13.23 256.81 118.35 22.04 248.01 22.04zm0 7.89c-125.3 0-226.89 101.57-226.89 226.87s101.59 226.89 226.89 226.89S474.88 382.1 474.88 256.8 373.31 29.93 248.01 29.93zm-.02 13.3c117.95 0 213.56 95.62 213.56 213.56s-95.62 213.56-213.56 213.56S34.43 374.75 34.43 256.8 130.04 43.23 247.99 43.23zm-73.32 104.8l15.66 18.05-22.16-9.45-12.33 20.47 2.15-23.99-23.28-5.4 23.48-5.37-2.06-23.81 12.37 20.67 22.01-9.32-15.84 18.15zm-47.14-46.54l8.01 12.4 12.69-5.86-9.32 11.45 9.5 10.25-13.77-5.32-6.82 12.2.81-14.74-13.71-2.71 14.27-3.78-1.66-13.89zm250.77 75.59l11.99 19.56 20.88-9.11-14.9 17.45 15.11 17.04-21.2-8.78-11.54 19.64 1.8-22.87-22.24-4.9 22.31-5.36-2.21-22.67zm-107.05 98.45l13.86-3.22-1.28-14.17 7.35 12.18 13.08-5.59-9.31 10.75 9.36 10.71-13.1-5.54-7.29 12.21 1.22-14.17-13.89-3.16zm-125.43 6.5l23.73-3.87-1.73-24.53 11.01 21.38 22.79-9.22-16.93 17.08 15.81 18.83-21.47-10.82-13.02 20.86 3.66-23.77-23.85-5.94zm63.44-165.66v81.61H54.16l36.72 46.01h117.7v196.75h48.82V245.01h83.27v-47.03H257.4v-34.83h145.73v-46.78H209.26zm10.86 11.2h171.8v24.36H246.88v56.23h82.93v23.94h-82.93v197.42h-26.76V232.1H96.31l-20.09-23.94h143.9v-80.59z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTradeFederation = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTrello.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTrello.d.ts new file mode 100644 index 0000000000..680c69c526 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTrello.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTrello: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTrello.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTrello.js new file mode 100644 index 0000000000..c62612c2ff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTrello.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'trello'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f181'; +var svgPathData = 'M392 32H56C25.1 32 0 57.1 0 88v336c0 30.9 25.1 56 56 56h336c30.9 0 56-25.1 56-56V88c0-30.9-25.1-56-56-56zM194.9 371.4c0 14.8-12 26.9-26.9 26.9H85.1c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9H168c14.8 0 26.9 12 26.9 26.9v254.3zm194.9-112c0 14.8-12 26.9-26.9 26.9H280c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9h82.9c14.8 0 26.9 12 26.9 26.9v142.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTrello = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTripadvisor.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTripadvisor.d.ts new file mode 100644 index 0000000000..deb69d2081 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTripadvisor.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTripadvisor: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTripadvisor.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTripadvisor.js new file mode 100644 index 0000000000..4b29f39c78 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTripadvisor.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'tripadvisor'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f262'; +var svgPathData = 'M166.4 280.521c0 13.236-10.73 23.966-23.966 23.966s-23.966-10.73-23.966-23.966 10.73-23.966 23.966-23.966 23.966 10.729 23.966 23.966zm264.962-23.956c-13.23 0-23.956 10.725-23.956 23.956 0 13.23 10.725 23.956 23.956 23.956 13.23 0 23.956-10.725 23.956-23.956-.001-13.231-10.726-23.956-23.956-23.956zm89.388 139.49c-62.667 49.104-153.276 38.109-202.379-24.559l-30.979 46.325-30.683-45.939c-48.277 60.39-135.622 71.891-197.885 26.055-64.058-47.158-77.759-137.316-30.601-201.374A186.762 186.762 0 0 0 0 139.416l90.286-.05a358.48 358.48 0 0 1 197.065-54.03 350.382 350.382 0 0 1 192.181 53.349l96.218.074a185.713 185.713 0 0 0-28.352 57.649c46.793 62.747 34.964 151.37-26.648 199.647zM259.366 281.761c-.007-63.557-51.535-115.075-115.092-115.068C80.717 166.7 29.2 218.228 29.206 281.785c.007 63.557 51.535 115.075 115.092 115.068 63.513-.075 114.984-51.539 115.068-115.052v-.04zm28.591-10.455c5.433-73.44 65.51-130.884 139.12-133.022a339.146 339.146 0 0 0-139.727-27.812 356.31 356.31 0 0 0-140.164 27.253c74.344 1.582 135.299 59.424 140.771 133.581zm251.706-28.767c-21.992-59.634-88.162-90.148-147.795-68.157-59.634 21.992-90.148 88.162-68.157 147.795v.032c22.038 59.607 88.198 90.091 147.827 68.113 59.615-22.004 90.113-88.162 68.125-147.783zm-326.039 37.975v.115c-.057 39.328-31.986 71.163-71.314 71.106-39.328-.057-71.163-31.986-71.106-71.314.057-39.328 31.986-71.163 71.314-71.106 39.259.116 71.042 31.94 71.106 71.199zm-24.512 0v-.084c-.051-25.784-20.994-46.645-46.778-46.594-25.784.051-46.645 20.994-46.594 46.777.051 25.784 20.994 46.645 46.777 46.594 25.726-.113 46.537-20.968 46.595-46.693zm313.423 0v.048c-.02 39.328-31.918 71.194-71.247 71.173s-71.194-31.918-71.173-71.247c.02-39.328 31.918-71.194 71.247-71.173 39.29.066 71.121 31.909 71.173 71.199zm-24.504-.008c-.009-25.784-20.918-46.679-46.702-46.67-25.784.009-46.679 20.918-46.67 46.702.009 25.784 20.918 46.678 46.702 46.67 25.765-.046 46.636-20.928 46.67-46.693v-.009z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTripadvisor = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTumblr.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTumblr.d.ts new file mode 100644 index 0000000000..bb79a69c92 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTumblr.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTumblr: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTumblr.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTumblr.js new file mode 100644 index 0000000000..da2f6f5722 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTumblr.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'tumblr'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f173'; +var svgPathData = 'M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTumblr = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTumblrSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTumblrSquare.d.ts new file mode 100644 index 0000000000..80b388a252 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTumblrSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTumblrSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTumblrSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTumblrSquare.js new file mode 100644 index 0000000000..6968b7406a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTumblrSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'tumblr-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f174'; +var svgPathData = 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-82.3 364.2c-8.5 9.1-31.2 19.8-60.9 19.8-75.5 0-91.9-55.5-91.9-87.9v-90h-29.7c-3.4 0-6.2-2.8-6.2-6.2v-42.5c0-4.5 2.8-8.5 7.1-10 38.8-13.7 50.9-47.5 52.7-73.2.5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2h-52.1V321c0 21.4 14.8 33.5 42.5 22.4 3-1.2 5.6-2 8-1.4 2.2.5 3.6 2.1 4.6 4.9l13.8 40.2c1 3.2 2 6.7-.3 9.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTumblrSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTwitch.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTwitch.d.ts new file mode 100644 index 0000000000..41a02e85a3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTwitch.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTwitch: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTwitch.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTwitch.js new file mode 100644 index 0000000000..16d0252a11 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTwitch.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'twitch'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f1e8'; +var svgPathData = 'M40.1 32L10 108.9v314.3h107V480h60.2l56.8-56.8h87l117-117V32H40.1zm357.8 254.1L331 353H224l-56.8 56.8V353H76.9V72.1h321v214zM331 149v116.9h-40.1V149H331zm-107 0v116.9h-40.1V149H224z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTwitch = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTwitter.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTwitter.d.ts new file mode 100644 index 0000000000..0e28c0326f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTwitter.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTwitter: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTwitter.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTwitter.js new file mode 100644 index 0000000000..a5677a636d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTwitter.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'twitter'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f099'; +var svgPathData = 'M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTwitter = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTwitterSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTwitterSquare.d.ts new file mode 100644 index 0000000000..637427befe --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTwitterSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTwitterSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTwitterSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTwitterSquare.js new file mode 100644 index 0000000000..9c7b85eeec --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTwitterSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'twitter-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f081'; +var svgPathData = 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTwitterSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTypo3.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTypo3.d.ts new file mode 100644 index 0000000000..2f0c78d677 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTypo3.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTypo3: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTypo3.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTypo3.js new file mode 100644 index 0000000000..a968e26616 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faTypo3.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'typo3'; +var width = 433; +var height = 512; +var ligatures = []; +var unicode = 'f42b'; +var svgPathData = 'M330.8 341c-7 2.3-11.6 2.3-18.5 2.3-57.2 0-140.6-198.5-140.6-264.9 0-24.7 5.4-32.4 13.9-39.4-69.5 8.5-149.3 34-176.3 66.4-5.4 7.7-9.3 20.8-9.3 37.1C0 246 106.8 480 184.1 480c36.3 0 97.3-59.5 146.7-139M294.5 32c71.8 0 138.8 11.6 138.8 52.5 0 82.6-52.5 182.3-78.8 182.3-47.9 0-101.7-132.1-101.7-198.5 0-30.9 11.6-36.3 41.7-36.3'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTypo3 = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUber.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUber.d.ts new file mode 100644 index 0000000000..51616042d1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUber.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUber: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUber.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUber.js new file mode 100644 index 0000000000..e1265b9ecc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUber.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'uber'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f402'; +var svgPathData = 'M414.1 32H33.9C15.2 32 0 47.2 0 65.9V446c0 18.8 15.2 34 33.9 34H414c18.7 0 33.9-15.2 33.9-33.9V65.9C448 47.2 432.8 32 414.1 32zM237.6 391.1C163 398.6 96.4 344.2 88.9 269.6h94.4V290c0 3.7 3 6.8 6.8 6.8H258c3.7 0 6.8-3 6.8-6.8v-67.9c0-3.7-3-6.8-6.8-6.8h-67.9c-3.7 0-6.8 3-6.8 6.8v20.4H88.9c7-69.4 65.4-122.2 135.1-122.2 69.7 0 128.1 52.8 135.1 122.2 7.5 74.5-46.9 141.1-121.5 148.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUber = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUikit.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUikit.d.ts new file mode 100644 index 0000000000..90dcc254f2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUikit.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUikit: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUikit.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUikit.js new file mode 100644 index 0000000000..4990ce05f4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUikit.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'uikit'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f403'; +var svgPathData = 'M443.9 128v256L218 512 0 384V169.7l87.6 45.1v117l133.5 75.5 135.8-75.5v-151l-101.1-57.6 87.6-53.1L443.9 128zM308.6 49.1L223.8 0l-88.6 54.8 86 47.3 87.4-53z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUikit = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUniregistry.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUniregistry.d.ts new file mode 100644 index 0000000000..767a0eadc6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUniregistry.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUniregistry: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUniregistry.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUniregistry.js new file mode 100644 index 0000000000..252ed412e9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUniregistry.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'uniregistry'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f404'; +var svgPathData = 'M281.1 220.1H384v-14.8H281.1v14.8zm0-37.1H384v-12.4H281.1V183zm0 74.2H384v-17.3H281.1v17.3zm-157.7 86.7H8.5c2.6 8.5 5.8 16.8 9.6 24.8h138.3c-12.9-5.7-24.1-14.2-33-24.8m145.7-12.4h109.7c1.8-7.3 3.1-14.7 3.9-22.3H278.3c-2.1 7.9-5.2 15.4-9.2 22.3m-41.5 37.1H367c3.7-8 5.8-16.2 8.5-24.8h-115c-8.8 10.7-20.1 19.2-32.9 24.8M384 32H281.1v2.5H384V32zM192 480c39.5 0 76.2-11.8 106.8-32.2H85.3C115.8 468.2 152.5 480 192 480m89.1-334.2H384V136H281.1v9.8zm0-37.1H384v-7.4H281.1v7.4zm0-37.1H384v-4.9H281.1v4.9zm-178.2 99H0V183h102.9v-12.4zM38.8 405.7h305.3c6.7-8.5 12.6-17.6 17.8-27.2H23c5.2 9.6 9.2 18.7 15.8 27.2m64.1-118.8v-12.4H0v12.4c0 2.5 0 5 .1 7.4h103.1c-.2-2.4-.3-4.9-.3-7.4m178.2 0c0 2.5-.1 5-.4 7.4h103.1c.1-2.5.2-4.9.2-7.4v-12.4H281.1v12.4zm-203 156h227.7c11.8-8.7 22.7-18.6 32.2-29.7H44.9c9.6 11 21.4 21 33.2 29.7m24.8-376.2H0v4.9h102.9v-4.9zm0-34.7H0v2.5h102.9V32zm0 173.3H0v14.8h102.9v-14.8zm0 34.6H0v17.3h102.9v-17.3zm0-103.9H0v9.9h102.9V136zm0-34.7H0v7.4h102.9v-7.4zm2.8 207.9H1.3c.9 7.6 2.2 15 3.9 22.3h109.7c-4-6.9-7.2-14.4-9.2-22.3'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUniregistry = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUntappd.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUntappd.d.ts new file mode 100644 index 0000000000..f96fd14789 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUntappd.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUntappd: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUntappd.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUntappd.js new file mode 100644 index 0000000000..5734f8a65c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUntappd.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'untappd'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f405'; +var svgPathData = 'M401.3 49.9c-79.8 160.1-84.6 152.5-87.9 173.2l-5.2 32.8c-1.9 12-6.6 23.5-13.7 33.4L145.6 497.1c-7.6 10.6-20.4 16.2-33.4 14.6-40.3-5-77.8-32.2-95.3-68.5-5.7-11.8-4.5-25.8 3.1-36.4l148.9-207.9c7.1-9.9 16.4-18 27.2-23.7l29.3-15.5c18.5-9.8 9.7-11.9 135.6-138.9 1-4.8 1-7.3 3.6-8 3-.7 6.6-1 6.3-4.6l-.4-4.6c-.2-1.9 1.3-3.6 3.2-3.6 4.5-.1 13.2 1.2 25.6 10 12.3 8.9 16.4 16.8 17.7 21.1.6 1.8-.6 3.7-2.4 4.2l-4.5 1.1c-3.4.9-2.5 4.4-2.3 7.4.1 2.8-2.3 3.6-6.5 6.1zM230.1 36.4c3.4.9 2.5 4.4 2.3 7.4-.2 2.7 2.1 3.5 6.4 6 7.9 15.9 15.3 30.5 22.2 44 .7 1.3 2.3 1.5 3.3.5 11.2-12 24.6-26.2 40.5-42.6 1.3-1.4 1.4-3.5.1-4.9-8-8.2-16.5-16.9-25.6-26.1-1-4.7-1-7.3-3.6-8-3-.8-6.6-1-6.3-4.6.3-3.3 1.4-8.1-2.8-8.2-4.5-.1-13.2 1.1-25.6 10-12.3 8.9-16.4 16.8-17.7 21.1-1.4 4.2 3.6 4.6 6.8 5.4zM620 406.7L471.2 198.8c-13.2-18.5-26.6-23.4-56.4-39.1-11.2-5.9-14.2-10.9-30.5-28.9-1-1.1-2.9-.9-3.6.5-46.3 88.8-47.1 82.8-49 94.8-1.7 10.7-1.3 20 .3 29.8 1.9 12 6.6 23.5 13.7 33.4l148.9 207.9c7.6 10.6 20.2 16.2 33.1 14.7 40.3-4.9 78-32 95.7-68.6 5.4-11.9 4.3-25.9-3.4-36.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUntappd = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUsb.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUsb.d.ts new file mode 100644 index 0000000000..a590d45a86 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUsb.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUsb: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUsb.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUsb.js new file mode 100644 index 0000000000..ba513c1b3d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUsb.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'usb'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f287'; +var svgPathData = 'M641.5 256c0 3.1-1.7 6.1-4.5 7.5L547.9 317c-1.4.8-2.8 1.4-4.5 1.4-1.4 0-3.1-.3-4.5-1.1-2.8-1.7-4.5-4.5-4.5-7.8v-35.6H295.7c25.3 39.6 40.5 106.9 69.6 106.9H392V354c0-5 3.9-8.9 8.9-8.9H490c5 0 8.9 3.9 8.9 8.9v89.1c0 5-3.9 8.9-8.9 8.9h-89.1c-5 0-8.9-3.9-8.9-8.9v-26.7h-26.7c-75.4 0-81.1-142.5-124.7-142.5H140.3c-8.1 30.6-35.9 53.5-69 53.5C32 327.3 0 295.3 0 256s32-71.3 71.3-71.3c33.1 0 61 22.8 69 53.5 39.1 0 43.9 9.5 74.6-60.4C255 88.7 273 95.7 323.8 95.7c7.5-20.9 27-35.6 50.4-35.6 29.5 0 53.5 23.9 53.5 53.5s-23.9 53.5-53.5 53.5c-23.4 0-42.9-14.8-50.4-35.6H294c-29.1 0-44.3 67.4-69.6 106.9h310.1v-35.6c0-3.3 1.7-6.1 4.5-7.8 2.8-1.7 6.4-1.4 8.9.3l89.1 53.5c2.8 1.1 4.5 4.1 4.5 7.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUsb = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUssunnah.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUssunnah.d.ts new file mode 100644 index 0000000000..dfeeda8730 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUssunnah.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUssunnah: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUssunnah.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUssunnah.js new file mode 100644 index 0000000000..3cf77601c7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faUssunnah.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'ussunnah'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f407'; +var svgPathData = 'M156.8 285.1l5.7 14.4h-8.2c-1.3-3.2-3.1-7.7-3.8-9.5-2.5-6.3-1.1-8.4 0-10 1.9-2.7 3.2-4.4 3.6-5.2 0 2.2.8 5.7 2.7 10.3zm297.3 18.8c-2.1 13.8-5.7 27.1-10.5 39.7l43 23.4-44.8-18.8c-5.3 13.2-12 25.6-19.9 37.2l34.2 30.2-36.8-26.4c-8.4 11.8-18 22.6-28.7 32.3l24.9 34.7-28.1-31.8c-11 9.6-23.1 18-36.1 25.1l15.7 37.2-19.3-35.3c-13.1 6.8-27 12.1-41.6 15.9l6.7 38.4-10.5-37.4c-14.3 3.4-29.2 5.3-44.5 5.4L256 512l-1.9-38.4c-15.3-.1-30.2-2-44.5-5.3L199 505.6l6.7-38.2c-14.6-3.7-28.6-9.1-41.7-15.8l-19.2 35.1 15.6-37c-13-7-25.2-15.4-36.2-25.1l-27.9 31.6 24.7-34.4c-10.7-9.7-20.4-20.5-28.8-32.3l-36.5 26.2 33.9-29.9c-7.9-11.6-14.6-24.1-20-37.3l-44.4 18.7L67.8 344c-4.8-12.7-8.4-26.1-10.5-39.9l-51 9 50.3-14.2c-1.1-8.5-1.7-17.1-1.7-25.9 0-4.7.2-9.4.5-14.1L0 256l56-2.8c1.3-13.1 3.8-25.8 7.5-38.1L6.4 199l58.9 10.4c4-12 9.1-23.5 15.2-34.4l-55.1-30 58.3 24.6C90 159 97.2 149.2 105.3 140L55.8 96.4l53.9 38.7c8.1-8.6 17-16.5 26.6-23.6l-40-55.6 45.6 51.6c9.5-6.6 19.7-12.3 30.3-17.2l-27.3-64.9 33.8 62.1c10.5-4.4 21.4-7.9 32.7-10.4L199 6.4l19.5 69.2c11-2.1 22.3-3.2 33.8-3.4L256 0l3.6 72.2c11.5.2 22.8 1.4 33.8 3.5L313 6.4l-12.4 70.7c11.3 2.6 22.2 6.1 32.6 10.5l33.9-62.2-27.4 65.1c10.6 4.9 20.7 10.7 30.2 17.2l45.8-51.8-40.1 55.9c9.5 7.1 18.4 15 26.5 23.6l54.2-38.9-49.7 43.9c8 9.1 15.2 18.9 21.5 29.4l58.7-24.7-55.5 30.2c6.1 10.9 11.1 22.3 15.1 34.3l59.3-10.4-57.5 16.2c3.7 12.2 6.2 24.9 7.5 37.9L512 256l-56 2.8c.3 4.6.5 9.3.5 14.1 0 8.7-.6 17.3-1.6 25.8l50.7 14.3-51.5-9.1zm-21.8-31c0-97.5-79-176.5-176.5-176.5s-176.5 79-176.5 176.5 79 176.5 176.5 176.5 176.5-79 176.5-176.5zm-24 0c0 84.3-68.3 152.6-152.6 152.6s-152.6-68.3-152.6-152.6 68.3-152.6 152.6-152.6 152.6 68.3 152.6 152.6zM195 241c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-40.7-19c0 2.1 1.3 3.8 3.6 5.1 3.5 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-19 0c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.4 6.8-9.6 10.9-9.6 12.6zm204.9 87.9c-8.4-3-8.7-6.8-8.7-15.6V182c-8.2 12.5-14.2 18.6-18 18.6 6.3 14.4 9.5 23.9 9.5 28.3v64.3c0 2.2-2.2 6.5-4.7 6.5h-18c-2.8-7.5-10.2-26.9-15.3-40.3-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3 2.6 6.7 6.4 16.5 7.9 20.2h-9.2c-3.9-10.4-9.6-25.4-11.8-31.1-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3.8 2 2.8 7.3 4.3 10.9H256c-1.5-4.1-5.6-14.6-8.4-22-2 2.5-7.2 9.2-10.7 13.7 2.5 1.6 4.3 3.6 5.2 6.3.2.6.5 1.4.6 1.7H225c-4.6-13.9-11.4-27.7-11.4-34.1 0-2.2.3-5.1 1.1-8.2-8.8 10.8-14 15.9-14 25 0 7.5 10.4 28.3 10.4 33.3 0 1.7-.5 3.3-1.4 4.9-9.6-12.7-15.5-20.7-18.8-20.7h-12l-11.2-28c-3.8-9.6-5.7-16-5.7-18.8 0-3.8.5-7.7 1.7-12.2-1 1.3-3.7 4.7-5.5 7.1-.8-2.1-3.1-7.7-4.6-11.5-2.1 2.5-7.5 9.1-11.2 13.6.9 2.3 3.3 8.1 4.9 12.2-2.5 3.3-9.1 11.8-13.6 17.7-4 5.3-5.8 13.3-2.7 21.8 2.5 6.7 2 7.9-1.7 14.1H191c5.5 0 14.3 14 15.5 22 13.2-16 15.4-19.6 16.8-21.6h107c3.9 0 7.2-1.9 9.9-5.8zm20.1-26.6V181.7c-9 12.5-15.9 18.6-20.7 18.6 7.1 14.4 10.7 23.9 10.7 28.3v66.3c0 17.5 8.6 20.4 24 20.4 8.1 0 12.5-.8 13.7-2.7-4.3-1.6-7.6-2.5-9.9-3.3-8.1-3.2-17.8-7.4-17.8-26z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUssunnah = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVaadin.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVaadin.d.ts new file mode 100644 index 0000000000..cd7510e6a2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVaadin.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faVaadin: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVaadin.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVaadin.js new file mode 100644 index 0000000000..9d22207844 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVaadin.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'vaadin'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f408'; +var svgPathData = 'M224.5 140.7c1.5-17.6 4.9-52.7 49.8-52.7h98.6c20.7 0 32.1-7.8 32.1-21.6V54.1c0-12.2 9.3-22.1 21.5-22.1S448 41.9 448 54.1v36.5c0 42.9-21.5 62-66.8 62H280.7c-30.1 0-33 14.7-33 27.1 0 1.3-.1 2.5-.2 3.7-.7 12.3-10.9 22.2-23.4 22.2s-22.7-9.8-23.4-22.2c-.1-1.2-.2-2.4-.2-3.7 0-12.3-3-27.1-33-27.1H66.8c-45.3 0-66.8-19.1-66.8-62V54.1C0 41.9 9.4 32 21.6 32s21.5 9.9 21.5 22.1v12.3C43.1 80.2 54.5 88 75.2 88h98.6c44.8 0 48.3 35.1 49.8 52.7h.9zM224 456c11.5 0 21.4-7 25.7-16.3 1.1-1.8 97.1-169.6 98.2-171.4 11.9-19.6-3.2-44.3-27.2-44.3-13.9 0-23.3 6.4-29.8 20.3L224 362l-66.9-117.7c-6.4-13.9-15.9-20.3-29.8-20.3-24 0-39.1 24.6-27.2 44.3 1.1 1.9 97.1 169.6 98.2 171.4 4.3 9.3 14.2 16.3 25.7 16.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faVaadin = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViacoin.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViacoin.d.ts new file mode 100644 index 0000000000..d56c370c4d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViacoin.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faViacoin: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViacoin.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViacoin.js new file mode 100644 index 0000000000..3cde8ae6bf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViacoin.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'viacoin'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f237'; +var svgPathData = 'M384 32h-64l-80.7 192h-94.5L64 32H0l48 112H0v48h68.5l13.8 32H0v48h102.8L192 480l89.2-208H384v-48h-82.3l13.8-32H384v-48h-48l48-112zM192 336l-27-64h54l-27 64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faViacoin = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViadeo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViadeo.d.ts new file mode 100644 index 0000000000..844aa00b5a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViadeo.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faViadeo: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViadeo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViadeo.js new file mode 100644 index 0000000000..09cbebbd00 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViadeo.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'viadeo'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f2a9'; +var svgPathData = 'M276.2 150.5v.7C258.3 98.6 233.6 47.8 205.4 0c43.3 29.2 67 100 70.8 150.5zm32.7 121.7c7.6 18.2 11 37.5 11 57 0 77.7-57.8 141-137.8 139.4l3.8-.3c74.2-46.7 109.3-118.6 109.3-205.1 0-38.1-6.5-75.9-18.9-112 1 11.7 1 23.7 1 35.4 0 91.8-18.1 241.6-116.6 280C95 455.2 49.4 398 49.4 329.2c0-75.6 57.4-142.3 135.4-142.3 16.8 0 33.7 3.1 49.1 9.6 1.7-15.1 6.5-29.9 13.4-43.3-19.9-7.2-41.2-10.7-62.5-10.7-161.5 0-238.7 195.9-129.9 313.7 67.9 74.6 192 73.9 259.8 0 56.6-61.3 60.9-142.4 36.4-201-12.7 8-27.1 13.9-42.2 17zM418.1 11.7c-31 66.5-81.3 47.2-115.8 80.1-12.4 12-20.6 34-20.6 50.5 0 14.1 4.5 27.1 12 38.8 47.4-11 98.3-46 118.2-90.7-.7 5.5-4.8 14.4-7.2 19.2-20.3 35.7-64.6 65.6-99.7 84.9 14.8 14.4 33.7 25.8 55 25.8 79 0 110.1-134.6 58.1-208.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faViadeo = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViadeoSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViadeoSquare.d.ts new file mode 100644 index 0000000000..c0b0e58d2c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViadeoSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faViadeoSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViadeoSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViadeoSquare.js new file mode 100644 index 0000000000..dc6ec1ced6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViadeoSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'viadeo-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f2aa'; +var svgPathData = 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM280.7 381.2c-42.4 46.2-120 46.6-162.4 0-68-73.6-19.8-196.1 81.2-196.1 13.3 0 26.6 2.1 39.1 6.7-4.3 8.4-7.3 17.6-8.4 27.1-9.7-4.1-20.2-6-30.7-6-48.8 0-84.6 41.7-84.6 88.9 0 43 28.5 78.7 69.5 85.9 61.5-24 72.9-117.6 72.9-175 0-7.3 0-14.8-.6-22.1-11.2-32.9-26.6-64.6-44.2-94.5 27.1 18.3 41.9 62.5 44.2 94.1v.4c7.7 22.5 11.8 46.2 11.8 70 0 54.1-21.9 99-68.3 128.2l-2.4.2c50 1 86.2-38.6 86.2-87.2 0-12.2-2.1-24.3-6.9-35.7 9.5-1.9 18.5-5.6 26.4-10.5 15.3 36.6 12.6 87.3-22.8 125.6zM309 233.7c-13.3 0-25.1-7.1-34.4-16.1 21.9-12 49.6-30.7 62.3-53 1.5-3 4.1-8.6 4.5-12-12.5 27.9-44.2 49.8-73.9 56.7-4.7-7.3-7.5-15.5-7.5-24.3 0-10.3 5.2-24.1 12.9-31.6 21.6-20.5 53-8.5 72.4-50 32.5 46.2 13.1 130.3-36.3 130.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faViadeoSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViber.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViber.d.ts new file mode 100644 index 0000000000..e197ef085f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViber.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faViber: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViber.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViber.js new file mode 100644 index 0000000000..bd4ce227ae --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faViber.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'viber'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f409'; +var svgPathData = 'M444 49.9C431.3 38.2 379.9.9 265.3.4c0 0-135.1-8.1-200.9 52.3C27.8 89.3 14.9 143 13.5 209.5c-1.4 66.5-3.1 191.1 117 224.9h.1l-.1 51.6s-.8 20.9 13 25.1c16.6 5.2 26.4-10.7 42.3-27.8 8.7-9.4 20.7-23.2 29.8-33.7 82.2 6.9 145.3-8.9 152.5-11.2 16.6-5.4 110.5-17.4 125.7-142 15.8-128.6-7.6-209.8-49.8-246.5zM457.9 287c-12.9 104-89 110.6-103 115.1-6 1.9-61.5 15.7-131.2 11.2 0 0-52 62.7-68.2 79-5.3 5.3-11.1 4.8-11-5.7 0-6.9.4-85.7.4-85.7-.1 0-.1 0 0 0-101.8-28.2-95.8-134.3-94.7-189.8 1.1-55.5 11.6-101 42.6-131.6 55.7-50.5 170.4-43 170.4-43 96.9.4 143.3 29.6 154.1 39.4 35.7 30.6 53.9 103.8 40.6 211.1zm-139-80.8c.4 8.6-12.5 9.2-12.9.6-1.1-22-11.4-32.7-32.6-33.9-8.6-.5-7.8-13.4.7-12.9 27.9 1.5 43.4 17.5 44.8 46.2zm20.3 11.3c1-42.4-25.5-75.6-75.8-79.3-8.5-.6-7.6-13.5.9-12.9 58 4.2 88.9 44.1 87.8 92.5-.1 8.6-13.1 8.2-12.9-.3zm47 13.4c.1 8.6-12.9 8.7-12.9.1-.6-81.5-54.9-125.9-120.8-126.4-8.5-.1-8.5-12.9 0-12.9 73.7.5 133 51.4 133.7 139.2zM374.9 329v.2c-10.8 19-31 40-51.8 33.3l-.2-.3c-21.1-5.9-70.8-31.5-102.2-56.5-16.2-12.8-31-27.9-42.4-42.4-10.3-12.9-20.7-28.2-30.8-46.6-21.3-38.5-26-55.7-26-55.7-6.7-20.8 14.2-41 33.3-51.8h.2c9.2-4.8 18-3.2 23.9 3.9 0 0 12.4 14.8 17.7 22.1 5 6.8 11.7 17.7 15.2 23.8 6.1 10.9 2.3 22-3.7 26.6l-12 9.6c-6.1 4.9-5.3 14-5.3 14s17.8 67.3 84.3 84.3c0 0 9.1.8 14-5.3l9.6-12c4.6-6 15.7-9.8 26.6-3.7 14.7 8.3 33.4 21.2 45.8 32.9 7 5.7 8.6 14.4 3.8 23.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faViber = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVimeo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVimeo.d.ts new file mode 100644 index 0000000000..11402c30fa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVimeo.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faVimeo: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVimeo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVimeo.js new file mode 100644 index 0000000000..fa9779968f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVimeo.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'vimeo'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f40a'; +var svgPathData = 'M403.2 32H44.8C20.1 32 0 52.1 0 76.8v358.4C0 459.9 20.1 480 44.8 480h358.4c24.7 0 44.8-20.1 44.8-44.8V76.8c0-24.7-20.1-44.8-44.8-44.8zM377 180.8c-1.4 31.5-23.4 74.7-66 129.4-44 57.2-81.3 85.8-111.7 85.8-18.9 0-34.8-17.4-47.9-52.3-25.5-93.3-36.4-148-57.4-148-2.4 0-10.9 5.1-25.4 15.2l-15.2-19.6c37.3-32.8 72.9-69.2 95.2-71.2 25.2-2.4 40.7 14.8 46.5 51.7 20.7 131.2 29.9 151 67.6 91.6 13.5-21.4 20.8-37.7 21.8-48.9 3.5-33.2-25.9-30.9-45.8-22.4 15.9-52.1 46.3-77.4 91.2-76 33.3.9 49 22.5 47.1 64.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faVimeo = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVimeoSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVimeoSquare.d.ts new file mode 100644 index 0000000000..0d22d71521 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVimeoSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faVimeoSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVimeoSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVimeoSquare.js new file mode 100644 index 0000000000..73c47c94a3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVimeoSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'vimeo-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f194'; +var svgPathData = 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16.2 149.6c-1.4 31.1-23.2 73.8-65.3 127.9-43.5 56.5-80.3 84.8-110.4 84.8-18.7 0-34.4-17.2-47.3-51.6-25.2-92.3-35.9-146.4-56.7-146.4-2.4 0-10.8 5-25.1 15.1L64 192c36.9-32.4 72.1-68.4 94.1-70.4 24.9-2.4 40.2 14.6 46 51.1 20.5 129.6 29.6 149.2 66.8 90.5 13.4-21.2 20.6-37.2 21.5-48.3 3.4-32.8-25.6-30.6-45.2-22.2 15.7-51.5 45.8-76.5 90.1-75.1 32.9 1 48.4 22.4 46.5 64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faVimeoSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVimeoV.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVimeoV.d.ts new file mode 100644 index 0000000000..8b6a026850 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVimeoV.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faVimeoV: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVimeoV.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVimeoV.js new file mode 100644 index 0000000000..bd036aa15b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVimeoV.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'vimeo-v'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f27d'; +var svgPathData = 'M447.8 153.6c-2 43.6-32.4 103.3-91.4 179.1-60.9 79.2-112.4 118.8-154.6 118.8-26.1 0-48.2-24.1-66.3-72.3C100.3 250 85.3 174.3 56.2 174.3c-3.4 0-15.1 7.1-35.2 21.1L0 168.2c51.6-45.3 100.9-95.7 131.8-98.5 34.9-3.4 56.3 20.5 64.4 71.5 28.7 181.5 41.4 208.9 93.6 126.7 18.7-29.6 28.8-52.1 30.2-67.6 4.8-45.9-35.8-42.8-63.3-31 22-72.1 64.1-107.1 126.2-105.1 45.8 1.2 67.5 31.1 64.9 89.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faVimeoV = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVine.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVine.d.ts new file mode 100644 index 0000000000..462a609d94 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVine.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faVine: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVine.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVine.js new file mode 100644 index 0000000000..f466ae18ce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVine.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'vine'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f1ca'; +var svgPathData = 'M384 254.7v52.1c-18.4 4.2-36.9 6.1-52.1 6.1-36.9 77.4-103 143.8-125.1 156.2-14 7.9-27.1 8.4-42.7-.8C137 452 34.2 367.7 0 102.7h74.5C93.2 261.8 139 343.4 189.3 404.5c27.9-27.9 54.8-65.1 75.6-106.9-49.8-25.3-80.1-80.9-80.1-145.6 0-65.6 37.7-115.1 102.2-115.1 114.9 0 106.2 127.9 81.6 181.5 0 0-46.4 9.2-63.5-20.5 3.4-11.3 8.2-30.8 8.2-48.5 0-31.3-11.3-46.6-28.4-46.6-18.2 0-30.8 17.1-30.8 50 .1 79.2 59.4 118.7 129.9 101.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faVine = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVk.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVk.d.ts new file mode 100644 index 0000000000..0a68b39566 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVk.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faVk: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVk.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVk.js new file mode 100644 index 0000000000..7098ccbbed --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVk.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'vk'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f189'; +var svgPathData = 'M545 117.7c3.7-12.5 0-21.7-17.8-21.7h-58.9c-15 0-21.9 7.9-25.6 16.7 0 0-30 73.1-72.4 120.5-13.7 13.7-20 18.1-27.5 18.1-3.7 0-9.4-4.4-9.4-16.9V117.7c0-15-4.2-21.7-16.6-21.7h-92.6c-9.4 0-15 7-15 13.5 0 14.2 21.2 17.5 23.4 57.5v86.8c0 19-3.4 22.5-10.9 22.5-20 0-68.6-73.4-97.4-157.4-5.8-16.3-11.5-22.9-26.6-22.9H38.8c-16.8 0-20.2 7.9-20.2 16.7 0 15.6 20 93.1 93.1 195.5C160.4 378.1 229 416 291.4 416c37.5 0 42.1-8.4 42.1-22.9 0-66.8-3.4-73.1 15.4-73.1 8.7 0 23.7 4.4 58.7 38.1 40 40 46.6 57.9 69 57.9h58.9c16.8 0 25.3-8.4 20.4-25-11.2-34.9-86.9-106.7-90.3-111.5-8.7-11.2-6.2-16.2 0-26.2.1-.1 72-101.3 79.4-135.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faVk = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVnv.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVnv.d.ts new file mode 100644 index 0000000000..c6086159c5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVnv.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faVnv: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVnv.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVnv.js new file mode 100644 index 0000000000..5de0192c68 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVnv.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'vnv'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f40b'; +var svgPathData = 'M104.9 352c-34.1 0-46.4-30.4-46.4-30.4L2.6 210.1S-7.8 192 13 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.7-74.5c5.6-9.5 8.4-18.1 18.8-18.1h32.8c20.8 0 10.4 18.1 10.4 18.1l-55.8 111.5S174.2 352 140 352h-35.1zm395 0c-34.1 0-46.4-30.4-46.4-30.4l-55.9-111.5S387.2 192 408 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.8-74.5c5.6-9.5 8.4-18.1 18.8-18.1H627c20.8 0 10.4 18.1 10.4 18.1l-55.9 111.5S569.3 352 535.1 352h-35.2zM337.6 192c34.1 0 46.4 30.4 46.4 30.4l55.9 111.5s10.4 18.1-10.4 18.1h-32.8c-10.4 0-13.2-8.7-18.8-18.1l-36.7-74.5s-5.2-13.1-21.1-13.1c-15.9 0-21.1 13.1-21.1 13.1l-36.7 74.5c-5.6 9.4-8.4 18.1-18.8 18.1h-32.9c-20.8 0-10.4-18.1-10.4-18.1l55.9-111.5s12.2-30.4 46.4-30.4h35.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faVnv = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVuejs.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVuejs.d.ts new file mode 100644 index 0000000000..4158e8eeb4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVuejs.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faVuejs: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVuejs.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVuejs.js new file mode 100644 index 0000000000..e3af7fef85 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faVuejs.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'vuejs'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f41f'; +var svgPathData = 'M356.9 64.3H280l-56 88.6-48-88.6H0L224 448 448 64.3h-91.1zm-301.2 32h53.8L224 294.5 338.4 96.3h53.8L224 384.5 55.7 96.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faVuejs = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWeebly.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWeebly.d.ts new file mode 100644 index 0000000000..4f6a8bffa3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWeebly.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWeebly: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWeebly.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWeebly.js new file mode 100644 index 0000000000..2f5a371635 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWeebly.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'weebly'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f5cc'; +var svgPathData = 'M425.09 65.83c-39.88 0-73.28 25.73-83.66 64.33-18.16-58.06-65.5-64.33-84.95-64.33-19.78 0-66.8 6.28-85.28 64.33-10.38-38.6-43.45-64.33-83.66-64.33C38.59 65.83 0 99.72 0 143.03c0 28.96 4.18 33.27 77.17 233.48 22.37 60.57 67.77 69.35 92.74 69.35 39.23 0 70.04-19.46 85.93-53.98 15.89 34.83 46.69 54.29 85.93 54.29 24.97 0 70.36-9.1 92.74-69.67 76.55-208.65 77.5-205.58 77.5-227.2.63-48.32-36.01-83.47-86.92-83.47zm26.34 114.81l-65.57 176.44c-7.92 21.49-21.22 37.22-46.24 37.22-23.44 0-37.38-12.41-44.03-33.9l-39.28-117.42h-.95L216.08 360.4c-6.96 21.5-20.9 33.6-44.02 33.6-25.02 0-38.33-15.74-46.24-37.22L60.88 181.55c-5.38-14.83-7.92-23.91-7.92-34.5 0-16.34 15.84-29.36 38.33-29.36 18.69 0 31.99 11.8 36.11 29.05l44.03 139.82h.95l44.66-136.79c6.02-19.67 16.47-32.08 38.96-32.08s32.94 12.11 38.96 32.08l44.66 136.79h.95l44.03-139.82c4.12-17.25 17.42-29.05 36.11-29.05 22.17 0 38.33 13.32 38.33 35.71-.32 7.87-4.12 16.04-7.61 27.24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWeebly = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWeibo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWeibo.d.ts new file mode 100644 index 0000000000..251f1ecf46 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWeibo.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWeibo: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWeibo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWeibo.js new file mode 100644 index 0000000000..18ef5f0fe2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWeibo.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'weibo'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f18a'; +var svgPathData = 'M407 177.6c7.6-24-13.4-46.8-37.4-41.7-22 4.8-28.8-28.1-7.1-32.8 50.1-10.9 92.3 37.1 76.5 84.8-6.8 21.2-38.8 10.8-32-10.3zM214.8 446.7C108.5 446.7 0 395.3 0 310.4c0-44.3 28-95.4 76.3-143.7C176 67 279.5 65.8 249.9 161c-4 13.1 12.3 5.7 12.3 6 79.5-33.6 140.5-16.8 114 51.4-3.7 9.4 1.1 10.9 8.3 13.1 135.7 42.3 34.8 215.2-169.7 215.2zm143.7-146.3c-5.4-55.7-78.5-94-163.4-85.7-84.8 8.6-148.8 60.3-143.4 116s78.5 94 163.4 85.7c84.8-8.6 148.8-60.3 143.4-116zM347.9 35.1c-25.9 5.6-16.8 43.7 8.3 38.3 72.3-15.2 134.8 52.8 111.7 124-7.4 24.2 29.1 37 37.4 12 31.9-99.8-55.1-195.9-157.4-174.3zm-78.5 311c-17.1 38.8-66.8 60-109.1 46.3-40.8-13.1-58-53.4-40.3-89.7 17.7-35.4 63.1-55.4 103.4-45.1 42 10.8 63.1 50.2 46 88.5zm-86.3-30c-12.9-5.4-30 .3-38 12.9-8.3 12.9-4.3 28 8.6 34 13.1 6 30.8.3 39.1-12.9 8-13.1 3.7-28.3-9.7-34zm32.6-13.4c-5.1-1.7-11.4.6-14.3 5.4-2.9 5.1-1.4 10.6 3.7 12.9 5.1 2 11.7-.3 14.6-5.4 2.8-5.2 1.1-10.9-4-12.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWeibo = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWeixin.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWeixin.d.ts new file mode 100644 index 0000000000..5321dfa637 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWeixin.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWeixin: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWeixin.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWeixin.js new file mode 100644 index 0000000000..567e93f472 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWeixin.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'weixin'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f1d7'; +var svgPathData = 'M385.2 167.6c6.4 0 12.6.3 18.8 1.1C387.4 90.3 303.3 32 207.7 32 100.5 32 13 104.8 13 197.4c0 53.4 29.3 97.5 77.9 131.6l-19.3 58.6 68-34.1c24.4 4.8 43.8 9.7 68.2 9.7 6.2 0 12.1-.3 18.3-.8-4-12.9-6.2-26.6-6.2-40.8-.1-84.9 72.9-154 165.3-154zm-104.5-52.9c14.5 0 24.2 9.7 24.2 24.4 0 14.5-9.7 24.2-24.2 24.2-14.8 0-29.3-9.7-29.3-24.2.1-14.7 14.6-24.4 29.3-24.4zm-136.4 48.6c-14.5 0-29.3-9.7-29.3-24.2 0-14.8 14.8-24.4 29.3-24.4 14.8 0 24.4 9.7 24.4 24.4 0 14.6-9.6 24.2-24.4 24.2zM563 319.4c0-77.9-77.9-141.3-165.4-141.3-92.7 0-165.4 63.4-165.4 141.3S305 460.7 397.6 460.7c19.3 0 38.9-5.1 58.6-9.9l53.4 29.3-14.8-48.6C534 402.1 563 363.2 563 319.4zm-219.1-24.5c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.8 0 24.4 9.7 24.4 19.3 0 10-9.7 19.6-24.4 19.6zm107.1 0c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.5 0 24.4 9.7 24.4 19.3.1 10-9.9 19.6-24.4 19.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWeixin = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWhatsapp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWhatsapp.d.ts new file mode 100644 index 0000000000..f1106c26d2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWhatsapp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWhatsapp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWhatsapp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWhatsapp.js new file mode 100644 index 0000000000..d7decc6741 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWhatsapp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'whatsapp'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f232'; +var svgPathData = 'M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWhatsapp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWhatsappSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWhatsappSquare.d.ts new file mode 100644 index 0000000000..5e517556b9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWhatsappSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWhatsappSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWhatsappSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWhatsappSquare.js new file mode 100644 index 0000000000..672651443a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWhatsappSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'whatsapp-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f40c'; +var svgPathData = 'M224 122.8c-72.7 0-131.8 59.1-131.9 131.8 0 24.9 7 49.2 20.2 70.1l3.1 5-13.3 48.6 49.9-13.1 4.8 2.9c20.2 12 43.4 18.4 67.1 18.4h.1c72.6 0 133.3-59.1 133.3-131.8 0-35.2-15.2-68.3-40.1-93.2-25-25-58-38.7-93.2-38.7zm77.5 188.4c-3.3 9.3-19.1 17.7-26.7 18.8-12.6 1.9-22.4.9-47.5-9.9-39.7-17.2-65.7-57.2-67.7-59.8-2-2.6-16.2-21.5-16.2-41s10.2-29.1 13.9-33.1c3.6-4 7.9-5 10.6-5 2.6 0 5.3 0 7.6.1 2.4.1 5.7-.9 8.9 6.8 3.3 7.9 11.2 27.4 12.2 29.4s1.7 4.3.3 6.9c-7.6 15.2-15.7 14.6-11.6 21.6 15.3 26.3 30.6 35.4 53.9 47.1 4 2 6.3 1.7 8.6-1 2.3-2.6 9.9-11.6 12.5-15.5 2.6-4 5.3-3.3 8.9-2 3.6 1.3 23.1 10.9 27.1 12.9s6.6 3 7.6 4.6c.9 1.9.9 9.9-2.4 19.1zM400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM223.9 413.2c-26.6 0-52.7-6.7-75.8-19.3L64 416l22.5-82.2c-13.9-24-21.2-51.3-21.2-79.3C65.4 167.1 136.5 96 223.9 96c42.4 0 82.2 16.5 112.2 46.5 29.9 30 47.9 69.8 47.9 112.2 0 87.4-72.7 158.5-160.1 158.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWhatsappSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWhmcs.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWhmcs.d.ts new file mode 100644 index 0000000000..9e7ec616cf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWhmcs.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWhmcs: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWhmcs.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWhmcs.js new file mode 100644 index 0000000000..b143ea1769 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWhmcs.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'whmcs'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f40d'; +var svgPathData = 'M448 161v-21.3l-28.5-8.8-2.2-10.4 20.1-20.7L427 80.4l-29 7.5-7.2-7.5 7.5-28.2-19.1-11.6-21.3 21-10.7-3.2-7-26.4h-22.6l-6.2 26.4-12.1 3.2-19.7-21-19.4 11 8.1 27.7-8.1 8.4-28.5-7.5-11 19.1 20.7 21-2.9 10.4-28.5 7.8-.3 21.7 28.8 7.5 2.4 12.1-20.1 19.9 10.4 18.5 29.6-7.5 7.2 8.6-8.1 26.9 19.9 11.6 19.4-20.4 11.6 2.9 6.7 28.5 22.6.3 6.7-28.8 11.6-3.5 20.7 21.6 20.4-12.1-8.8-28 7.8-8.1 28.8 8.8 10.3-20.1-20.9-18.8 2.2-12.1 29.1-7zm-119.2 45.2c-31.3 0-56.8-25.4-56.8-56.8s25.4-56.8 56.8-56.8 56.8 25.4 56.8 56.8c0 31.5-25.4 56.8-56.8 56.8zm72.3 16.4l46.9 14.5V277l-55.1 13.4-4.1 22.7 38.9 35.3-19.2 37.9-54-16.7-14.6 15.2 16.7 52.5-38.3 22.7-38.9-40.5-21.7 6.6-12.6 54-42.4-.5-12.6-53.6-21.7-5.6-36.4 38.4-37.4-21.7 15.2-50.5-13.7-16.1-55.5 14.1-19.7-34.8 37.9-37.4-4.8-22.8-54-14.1.5-40.9L54 219.9l5.7-19.7-38.9-39.4L41.5 125l53.6 14.1 15.2-15.7-15.2-52 36.4-20.7 36.8 39.4L191 84l11.6-52H245l11.6 45.9L234 72l-6.3-1.7-3.3 5.7-11 19.1-3.3 5.6 4.6 4.6 17.2 17.4-.3 1-23.8 6.5-6.2 1.7-.1 6.4-.2 12.9C153.8 161.6 118 204 118 254.7c0 58.3 47.3 105.7 105.7 105.7 50.5 0 92.7-35.4 103.2-82.8l13.2.2 6.9.1 1.6-6.7 5.6-24 1.9-.6 17.1 17.8 4.7 4.9 5.8-3.4 20.4-12.1 5.8-3.5-2-6.5-6.8-21.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWhmcs = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWikipediaW.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWikipediaW.d.ts new file mode 100644 index 0000000000..47bd06241c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWikipediaW.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWikipediaW: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWikipediaW.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWikipediaW.js new file mode 100644 index 0000000000..b4687a0742 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWikipediaW.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'wikipedia-w'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f266'; +var svgPathData = 'M640 51.2l-.3 12.2c-28.1.8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3.3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4.2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5.3v13.1c-19.4.6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4.3-3.6 0-10.3.3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5.8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1.2.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWikipediaW = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWindows.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWindows.d.ts new file mode 100644 index 0000000000..c04df690e2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWindows.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWindows: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWindows.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWindows.js new file mode 100644 index 0000000000..13f1bc7764 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWindows.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'windows'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f17a'; +var svgPathData = 'M0 93.7l183.6-25.3v177.4H0V93.7zm0 324.6l183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWindows = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWix.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWix.d.ts new file mode 100644 index 0000000000..fdb3323e98 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWix.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWix: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWix.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWix.js new file mode 100644 index 0000000000..6dc5c64dea --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWix.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'wix'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f5cf'; +var svgPathData = 'M393.38 131.69c0 13.03 2.08 32.69-28.68 43.83-9.52 3.45-15.95 9.66-15.95 9.66 0-31 4.72-42.22 17.4-48.86 9.75-5.11 27.23-4.63 27.23-4.63zm-115.8 35.54l-34.24 132.66-28.48-108.57c-7.69-31.99-20.81-48.53-48.43-48.53-27.37 0-40.66 16.18-48.43 48.53L89.52 299.89 55.28 167.23C49.73 140.51 23.86 128.96 0 131.96l65.57 247.93s21.63 1.56 32.46-3.96c14.22-7.25 20.98-12.84 29.59-46.57 7.67-30.07 29.11-118.41 31.12-124.7 4.76-14.94 11.09-13.81 15.4 0 1.97 6.3 23.45 94.63 31.12 124.7 8.6 33.73 15.37 39.32 29.59 46.57 10.82 5.52 32.46 3.96 32.46 3.96l65.57-247.93c-24.42-3.07-49.82 8.93-55.3 35.27zm115.78 5.21s-4.1 6.34-13.46 11.57c-6.01 3.36-11.78 5.64-17.97 8.61-15.14 7.26-13.18 13.95-13.18 35.2v152.07s16.55 2.09 27.37-3.43c13.93-7.1 17.13-13.95 17.26-44.78V181.41l-.02.01v-8.98zm163.44 84.08L640 132.78s-35.11-5.98-52.5 9.85c-13.3 12.1-24.41 29.55-54.18 72.47-.47.73-6.25 10.54-13.07 0-29.29-42.23-40.8-60.29-54.18-72.47-17.39-15.83-52.5-9.85-52.5-9.85l83.2 123.74-82.97 123.36s36.57 4.62 53.95-11.21c11.49-10.46 17.58-20.37 52.51-70.72 6.81-10.52 12.57-.77 13.07 0 29.4 42.38 39.23 58.06 53.14 70.72 17.39 15.83 53.32 11.21 53.32 11.21L556.8 256.52z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWix = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWolfPackBattalion.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWolfPackBattalion.d.ts new file mode 100644 index 0000000000..067817a699 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWolfPackBattalion.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWolfPackBattalion: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWolfPackBattalion.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWolfPackBattalion.js new file mode 100644 index 0000000000..5cff2c0f80 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWolfPackBattalion.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'wolf-pack-battalion'; +var width = 456; +var height = 512; +var ligatures = []; +var unicode = 'f514'; +var svgPathData = 'M239.73 471.53l10.56 15.84 5.28-12.32 5.28 7.04V512c21.06-7.92 21.11-66.86 25.51-97.21 4.62-31.89-.88-92.81 81.37-149.11-8.88-23.61-12-49.43-2.64-80.05 27.87 3.34 53.94 10.58 63.34 54.1l-30.35 8.36c11.15 23.04 17.01 46.76 13.2 72.14L384 313.18l-6.16 33.43-18.47-7.04-8.8 33.43-19.35-7.04 26.39 21.11 8.8-28.15 24.63 5.28 7.04-35.63 26.39 14.52c.25-20.02 6.97-58.06-8.8-84.45l26.39 5.28c3.99-22.07-2.38-39.21-7.92-56.74l22.43 9.68c-.44-25.07-29.94-56.79-61.58-58.5-20.22-1.09-56.74-25.17-54.1-51.9 1.96-19.87 17.45-42.62 43.11-49.7-43.99 36.51-9.68 67.3 5.28 73.46 4.4-11.44 17.54-69.08 0-130.2-40.47 22.87-89.73 65.1-93.25 147.79l-58.06 38.71-3.52 93.25 107.33-59.82 7.04 7.04-17.59 3.52-43.99 38.71-15.84-5.28-28.15 49.26-3.52 119.64 21.11 15.84-32.55 15.84-32.55-15.84 21.11-15.84-3.52-119.64-28.15-49.26-15.84 5.28-43.99-38.71-17.59-3.52 7.04-7.04 107.33 59.82-3.52-93.25-58.06-38.71C157.03 65.1 107.77 22.87 67.3 0c-17.54 61.12-4.4 118.76 0 130.2 14.96-6.16 49.26-36.95 5.28-73.46 25.66 7.08 41.15 29.83 43.11 49.7 2.63 26.74-33.88 50.81-54.1 51.9C29.94 160.06.44 191.78 0 216.85l22.43-9.68c-5.54 17.53-11.91 34.67-7.92 56.74l26.39-5.28c-15.76 26.39-9.05 64.43-8.8 84.45l26.39-14.52 7.04 35.63 24.63-5.28 8.8 28.15 26.39-21.11-19.34 7.05-8.8-33.43-18.47 7.04-6.16-33.43-27.27 7.04c-3.82-25.38 2.05-49.1 13.2-72.14l-30.35-8.36c9.4-43.52 35.47-50.77 63.34-54.1 9.36 30.62 6.24 56.45-2.64 80.05 82.25 56.3 76.75 117.23 81.37 149.11 4.4 30.35 4.45 89.29 25.51 97.21v-29.91l5.28-7.04 5.28 12.32 10.56-15.84 11.44 21.11 11.43-21.1zm79.17-95.01l-15.84-10.56c7.47-4.36 13.76-8.42 19.35-12.32-.6 7.26-.27 13.88-3.51 22.88zm28.15-49.26c-.4 10.94-.9 21.66-1.76 31.67-7.85-1.86-15.57-3.8-21.11-7.04 8.24-7.9 15.55-16.27 22.87-24.63zm24.63 5.28c-.02-13.43-2.05-24.21-5.28-33.43-5.38 9.09-11.23 18.18-18.47 27.27l23.75 6.16zm3.52-80.94c19.44 12.81 27.8 33.66 29.91 56.3-12.32-4.53-24.63-9.31-36.95-10.56 5.06-11.99 6.65-28.14 7.04-45.74zm-1.76-45.74c.81 14.3 1.84 28.82 1.76 42.23 19.22-8.11 29.78-9.72 43.99-14.08-10.6-18.95-27.22-25.52-45.75-28.15zM137.68 376.52l15.84-10.56c-7.47-4.36-13.76-8.42-19.35-12.32.6 7.26.27 13.88 3.51 22.88zm-28.15-49.26c.4 10.94.9 21.66 1.76 31.67 7.85-1.86 15.57-3.8 21.11-7.04-8.24-7.9-15.55-16.27-22.87-24.63zm-24.64 5.28c.02-13.43 2.05-24.21 5.28-33.43 5.38 9.09 11.23 18.18 18.47 27.27l-23.75 6.16zm-3.52-80.94c-19.44 12.81-27.8 33.66-29.91 56.3 12.32-4.53 24.63-9.31 36.95-10.56-5.05-11.99-6.65-28.14-7.04-45.74zm1.76-45.74c-.81 14.3-1.84 28.82-1.76 42.23-19.22-8.11-29.78-9.72-43.99-14.08 10.61-18.95 27.22-25.52 45.75-28.15z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWolfPackBattalion = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWordpress.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWordpress.d.ts new file mode 100644 index 0000000000..f5c8043457 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWordpress.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWordpress: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWordpress.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWordpress.js new file mode 100644 index 0000000000..81e1ae683e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWordpress.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'wordpress'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f19a'; +var svgPathData = 'M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWordpress = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWordpressSimple.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWordpressSimple.d.ts new file mode 100644 index 0000000000..770e1c5f01 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWordpressSimple.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWordpressSimple: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWordpressSimple.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWordpressSimple.js new file mode 100644 index 0000000000..c9c44c7cb3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWordpressSimple.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'wordpress-simple'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f411'; +var svgPathData = 'M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8zM33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256zm223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6zm30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3-80.7-239.6zm81.4 297.2l68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWordpressSimple = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWpbeginner.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWpbeginner.d.ts new file mode 100644 index 0000000000..35cad8871d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWpbeginner.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWpbeginner: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWpbeginner.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWpbeginner.js new file mode 100644 index 0000000000..243a06aece --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWpbeginner.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'wpbeginner'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f297'; +var svgPathData = 'M462.799 322.374C519.01 386.682 466.961 480 370.944 480c-39.602 0-78.824-17.687-100.142-50.04-6.887.356-22.702.356-29.59 0C219.848 462.381 180.588 480 141.069 480c-95.49 0-148.348-92.996-91.855-157.626C-29.925 190.523 80.479 32 256.006 32c175.632 0 285.87 158.626 206.793 290.374zm-339.647-82.972h41.529v-58.075h-41.529v58.075zm217.18 86.072v-23.839c-60.506 20.915-132.355 9.198-187.589-33.971l.246 24.897c51.101 46.367 131.746 57.875 187.343 32.913zm-150.753-86.072h166.058v-58.075H189.579v58.075z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWpbeginner = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWpexplorer.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWpexplorer.d.ts new file mode 100644 index 0000000000..812b1dc25d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWpexplorer.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWpexplorer: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWpexplorer.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWpexplorer.js new file mode 100644 index 0000000000..e799db9485 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWpexplorer.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'wpexplorer'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2de'; +var svgPathData = 'M512 256c0 141.2-114.7 256-256 256C114.8 512 0 397.3 0 256S114.7 0 256 0s256 114.7 256 256zm-32 0c0-123.2-100.3-224-224-224C132.5 32 32 132.5 32 256s100.5 224 224 224 224-100.5 224-224zM160.9 124.6l86.9 37.1-37.1 86.9-86.9-37.1 37.1-86.9zm110 169.1l46.6 94h-14.6l-50-100-48.9 100h-14l51.1-106.9-22.3-9.4 6-14 68.6 29.1-6 14.3-16.5-7.1zm-11.8-116.3l68.6 29.4-29.4 68.3L230 246l29.1-68.6zm80.3 42.9l54.6 23.1-23.4 54.3-54.3-23.1 23.1-54.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWpexplorer = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWpforms.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWpforms.d.ts new file mode 100644 index 0000000000..86f53fc765 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWpforms.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWpforms: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWpforms.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWpforms.js new file mode 100644 index 0000000000..7a20c15b50 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faWpforms.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'wpforms'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f298'; +var svgPathData = 'M448 75.2v361.7c0 24.3-19 43.2-43.2 43.2H43.2C19.3 480 0 461.4 0 436.8V75.2C0 51.1 18.8 32 43.2 32h361.7c24 0 43.1 18.8 43.1 43.2zm-37.3 361.6V75.2c0-3-2.6-5.8-5.8-5.8h-9.3L285.3 144 224 94.1 162.8 144 52.5 69.3h-9.3c-3.2 0-5.8 2.8-5.8 5.8v361.7c0 3 2.6 5.8 5.8 5.8h361.7c3.2.1 5.8-2.7 5.8-5.8zM150.2 186v37H76.7v-37h73.5zm0 74.4v37.3H76.7v-37.3h73.5zm11.1-147.3l54-43.7H96.8l64.5 43.7zm210 72.9v37h-196v-37h196zm0 74.4v37.3h-196v-37.3h196zm-84.6-147.3l64.5-43.7H232.8l53.9 43.7zM371.3 335v37.3h-99.4V335h99.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWpforms = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faXbox.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faXbox.d.ts new file mode 100644 index 0000000000..ba68a4daa0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faXbox.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faXbox: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faXbox.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faXbox.js new file mode 100644 index 0000000000..31e75a53c8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faXbox.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'xbox'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f412'; +var svgPathData = 'M369.9 318.2c44.3 54.3 64.7 98.8 54.4 118.7-7.9 15.1-56.7 44.6-92.6 55.9-29.6 9.3-68.4 13.3-100.4 10.2-38.2-3.7-76.9-17.4-110.1-39C93.3 445.8 87 438.3 87 423.4c0-29.9 32.9-82.3 89.2-142.1 32-33.9 76.5-73.7 81.4-72.6 9.4 2.1 84.3 75.1 112.3 109.5zM188.6 143.8c-29.7-26.9-58.1-53.9-86.4-63.4-15.2-5.1-16.3-4.8-28.7 8.1-29.2 30.4-53.5 79.7-60.3 122.4-5.4 34.2-6.1 43.8-4.2 60.5 5.6 50.5 17.3 85.4 40.5 120.9 9.5 14.6 12.1 17.3 9.3 9.9-4.2-11-.3-37.5 9.5-64 14.3-39 53.9-112.9 120.3-194.4zm311.6 63.5C483.3 127.3 432.7 77 425.6 77c-7.3 0-24.2 6.5-36 13.9-23.3 14.5-41 31.4-64.3 52.8C367.7 197 427.5 283.1 448.2 346c6.8 20.7 9.7 41.1 7.4 52.3-1.7 8.5-1.7 8.5 1.4 4.6 6.1-7.7 19.9-31.3 25.4-43.5 7.4-16.2 15-40.2 18.6-58.7 4.3-22.5 3.9-70.8-.8-93.4zM141.3 43C189 40.5 251 77.5 255.6 78.4c.7.1 10.4-4.2 21.6-9.7 63.9-31.1 94-25.8 107.4-25.2-63.9-39.3-152.7-50-233.9-11.7-23.4 11.1-24 11.9-9.4 11.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faXbox = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faXing.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faXing.d.ts new file mode 100644 index 0000000000..ab23417723 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faXing.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faXing: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faXing.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faXing.js new file mode 100644 index 0000000000..d9c8e3979b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faXing.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'xing'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f168'; +var svgPathData = 'M162.7 210c-1.8 3.3-25.2 44.4-70.1 123.5-4.9 8.3-10.8 12.5-17.7 12.5H9.8c-7.7 0-12.1-7.5-8.5-14.4l69-121.3c.2 0 .2-.1 0-.3l-43.9-75.6c-4.3-7.8.3-14.1 8.5-14.1H100c7.3 0 13.3 4.1 18 12.2l44.7 77.5zM382.6 46.1l-144 253v.3L330.2 466c3.9 7.1.2 14.1-8.5 14.1h-65.2c-7.6 0-13.6-4-18-12.2l-92.4-168.5c3.3-5.8 51.5-90.8 144.8-255.2 4.6-8.1 10.4-12.2 17.5-12.2h65.7c8 0 12.3 6.7 8.5 14.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faXing = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faXingSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faXingSquare.d.ts new file mode 100644 index 0000000000..ff6244a793 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faXingSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faXingSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faXingSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faXingSquare.js new file mode 100644 index 0000000000..cad5a73396 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faXingSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'xing-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f169'; +var svgPathData = 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM140.4 320.2H93.8c-5.5 0-8.7-5.3-6-10.3l49.3-86.7c.1 0 .1-.1 0-.2l-31.4-54c-3-5.6.2-10.1 6-10.1h46.6c5.2 0 9.5 2.9 12.9 8.7l31.9 55.3c-1.3 2.3-18 31.7-50.1 88.2-3.5 6.2-7.7 9.1-12.6 9.1zm219.7-214.1L257.3 286.8v.2l65.5 119c2.8 5.1.1 10.1-6 10.1h-46.6c-5.5 0-9.7-2.9-12.9-8.7l-66-120.3c2.3-4.1 36.8-64.9 103.4-182.3 3.3-5.8 7.4-8.7 12.5-8.7h46.9c5.7-.1 8.8 4.7 6 10z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faXingSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYCombinator.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYCombinator.d.ts new file mode 100644 index 0000000000..e04904211d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYCombinator.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faYCombinator: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYCombinator.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYCombinator.js new file mode 100644 index 0000000000..0d912cda10 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYCombinator.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'y-combinator'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f23b'; +var svgPathData = 'M448 32v448H0V32h448zM236 287.5L313.5 142h-32.7L235 233c-4.7 9.3-9 18.3-12.8 26.8L210 233l-45.2-91h-35l76.7 143.8v94.5H236v-92.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faYCombinator = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYahoo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYahoo.d.ts new file mode 100644 index 0000000000..b4a50e3c41 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYahoo.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faYahoo: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYahoo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYahoo.js new file mode 100644 index 0000000000..2449192c2a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYahoo.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'yahoo'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f19e'; +var svgPathData = 'M252 292l4 220c-12.7-2.2-23.5-3.9-32.3-3.9-8.4 0-19.2 1.7-32.3 3.9l4-220C140.4 197.2 85 95.2 21.4 0c11.9 3.1 23 3.9 33.2 3.9 9 0 20.4-.8 34.1-3.9 40.9 72.2 82.1 138.7 135 225.5C261 163.9 314.8 81.4 358.6 0c11.1 2.9 22 3.9 32.9 3.9 11.5 0 23.2-1 35-3.9C392.1 47.9 294.9 216.9 252 292z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faYahoo = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYandex.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYandex.d.ts new file mode 100644 index 0000000000..1ad623ddf8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYandex.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faYandex: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYandex.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYandex.js new file mode 100644 index 0000000000..6d74a60c0b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYandex.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'yandex'; +var width = 256; +var height = 512; +var ligatures = []; +var unicode = 'f413'; +var svgPathData = 'M153.1 315.8L65.7 512H2l96-209.8c-45.1-22.9-75.2-64.4-75.2-141.1C22.7 53.7 90.8 0 171.7 0H254v512h-55.1V315.8h-45.8zm45.8-269.3h-29.4c-44.4 0-87.4 29.4-87.4 114.6 0 82.3 39.4 108.8 87.4 108.8h29.4V46.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faYandex = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYandexInternational.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYandexInternational.d.ts new file mode 100644 index 0000000000..6f8de88a87 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYandexInternational.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faYandexInternational: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYandexInternational.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYandexInternational.js new file mode 100644 index 0000000000..8657edf24f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYandexInternational.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'yandex-international'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f414'; +var svgPathData = 'M129.5 512V345.9L18.5 48h55.8l81.8 229.7L250.2 0h51.3L180.8 347.8V512h-51.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faYandexInternational = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYelp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYelp.d.ts new file mode 100644 index 0000000000..1f73f652c6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYelp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faYelp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYelp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYelp.js new file mode 100644 index 0000000000..50f97cdd97 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYelp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'yelp'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f1e9'; +var svgPathData = 'M136.9 328c-1 .3-109.2 35.7-115.8 35.7-15.2-.9-18.5-16.2-19.9-31.2-1.5-14.2-1.4-29.8.3-46.8 1.9-18.8 5.5-45.1 24.2-44 4.8 0 67.1 25.9 112.7 44.4 17.1 6.8 18.6 35.8-1.5 41.9zm57.9-113.9c1.8 38.2-25.5 48.5-47.2 14.3L41.3 60.4c-1.5-6.6.3-12.4 5.3-17.4C62.2 26.5 146 3.2 168.1 8.9c7.5 1.9 12.1 6.1 13.8 12.6 1.3 8.3 11.5 167.4 12.9 192.6zm-1.4 164.8c0 4.6.2 116.4-1.7 121.5-2.3 6-7 9.7-14.3 11.2-10.1 1.7-27.1-1.9-51-10.7-22-8.1-56.7-21.5-49.3-42.5 2.8-6.9 51.4-62.8 77.3-93.6 12-15.2 39.8-5.5 39 14.1zm180.2-117.8c-5.6 3.7-110.8 28.2-118.1 30.6l.3-.6c-18.1 4.7-35.4-18.5-23.3-34.6 3.7-3.7 65.9-92.4 72.8-97 5.2-3.6 11.3-3.8 18.3-.6 18.4 8.8 55.1 63.1 57.4 84.6-.1 2.9 1.2 11.7-7.4 17.6zm10.1 130.7c-2.7 20.6-44.5 73.4-63.8 81-6.9 2.6-12.9 2-17.7-2-5-3.5-61.8-97.1-64.9-102.3-10.9-16.2 6.8-39.8 25.6-33.2 0 0 110.5 35.7 114.7 39.4 5.2 4.1 7.2 9.8 6.1 17.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faYelp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYoast.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYoast.d.ts new file mode 100644 index 0000000000..7d243b56f0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYoast.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faYoast: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYoast.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYoast.js new file mode 100644 index 0000000000..61d827e29f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYoast.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'yoast'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f2b1'; +var svgPathData = 'M91.3 76h186l-7 18.9h-179c-39.7 0-71.9 31.6-71.9 70.3v205.4c0 35.4 24.9 70.3 84 70.3V460H91.3C41.2 460 0 419.8 0 370.5V165.2C0 115.9 40.7 76 91.3 76zm229.1-56h66.5C243.1 398.1 241.2 418.9 202.2 459.3c-20.8 21.6-49.3 31.7-78.3 32.7v-51.1c49.2-7.7 64.6-49.9 64.6-75.3 0-20.1.6-12.6-82.1-223.2h61.4L218.2 299 320.4 20zM448 161.5V460H234c6.6-9.6 10.7-16.3 12.1-19.4h182.5V161.5c0-32.5-17.1-51.9-48.2-62.9l6.7-17.6c41.7 13.6 60.9 43.1 60.9 80.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faYoast = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYoutube.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYoutube.d.ts new file mode 100644 index 0000000000..0c3d2dfdcf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYoutube.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faYoutube: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYoutube.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYoutube.js new file mode 100644 index 0000000000..0cdfcfa972 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYoutube.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'youtube'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f167'; +var svgPathData = 'M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faYoutube = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYoutubeSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYoutubeSquare.d.ts new file mode 100644 index 0000000000..6847e33895 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYoutubeSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faYoutubeSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYoutubeSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYoutubeSquare.js new file mode 100644 index 0000000000..e306d8b0d6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/faYoutubeSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fab'; +var iconName = 'youtube-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f431'; +var svgPathData = 'M186.8 202.1l95.2 54.1-95.2 54.1V202.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-42 176.3s0-59.6-7.6-88.2c-4.2-15.8-16.5-28.2-32.2-32.4C337.9 128 224 128 224 128s-113.9 0-142.2 7.7c-15.7 4.2-28 16.6-32.2 32.4-7.6 28.5-7.6 88.2-7.6 88.2s0 59.6 7.6 88.2c4.2 15.8 16.5 27.7 32.2 31.9C110.1 384 224 384 224 384s113.9 0 142.2-7.7c15.7-4.2 28-16.1 32.2-31.9 7.6-28.5 7.6-88.1 7.6-88.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faYoutubeSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/index.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/index.d.ts new file mode 100644 index 0000000000..51c0ec964a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/index.d.ts @@ -0,0 +1,377 @@ +import { IconDefinition, IconLookup, IconName, IconPrefix, IconPack } from '@fortawesome/fontawesome-common-types'; +export { IconDefinition, IconLookup, IconName, IconPrefix, IconPack } from '@fortawesome/fontawesome-common-types'; +export const prefix: IconPrefix; +export const fab: IconPack; +export const fa500px: IconDefinition; +export const faAccessibleIcon: IconDefinition; +export const faAccusoft: IconDefinition; +export const faAdn: IconDefinition; +export const faAdversal: IconDefinition; +export const faAffiliatetheme: IconDefinition; +export const faAlgolia: IconDefinition; +export const faAmazon: IconDefinition; +export const faAmazonPay: IconDefinition; +export const faAmilia: IconDefinition; +export const faAndroid: IconDefinition; +export const faAngellist: IconDefinition; +export const faAngrycreative: IconDefinition; +export const faAngular: IconDefinition; +export const faAppStore: IconDefinition; +export const faAppStoreIos: IconDefinition; +export const faApper: IconDefinition; +export const faApple: IconDefinition; +export const faApplePay: IconDefinition; +export const faAsymmetrik: IconDefinition; +export const faAudible: IconDefinition; +export const faAutoprefixer: IconDefinition; +export const faAvianex: IconDefinition; +export const faAviato: IconDefinition; +export const faAws: IconDefinition; +export const faBandcamp: IconDefinition; +export const faBehance: IconDefinition; +export const faBehanceSquare: IconDefinition; +export const faBimobject: IconDefinition; +export const faBitbucket: IconDefinition; +export const faBitcoin: IconDefinition; +export const faBity: IconDefinition; +export const faBlackTie: IconDefinition; +export const faBlackberry: IconDefinition; +export const faBlogger: IconDefinition; +export const faBloggerB: IconDefinition; +export const faBluetooth: IconDefinition; +export const faBluetoothB: IconDefinition; +export const faBtc: IconDefinition; +export const faBuromobelexperte: IconDefinition; +export const faBuysellads: IconDefinition; +export const faCcAmazonPay: IconDefinition; +export const faCcAmex: IconDefinition; +export const faCcApplePay: IconDefinition; +export const faCcDinersClub: IconDefinition; +export const faCcDiscover: IconDefinition; +export const faCcJcb: IconDefinition; +export const faCcMastercard: IconDefinition; +export const faCcPaypal: IconDefinition; +export const faCcStripe: IconDefinition; +export const faCcVisa: IconDefinition; +export const faCentercode: IconDefinition; +export const faChrome: IconDefinition; +export const faCloudscale: IconDefinition; +export const faCloudsmith: IconDefinition; +export const faCloudversify: IconDefinition; +export const faCodepen: IconDefinition; +export const faCodiepie: IconDefinition; +export const faConnectdevelop: IconDefinition; +export const faContao: IconDefinition; +export const faCpanel: IconDefinition; +export const faCreativeCommons: IconDefinition; +export const faCreativeCommonsBy: IconDefinition; +export const faCreativeCommonsNc: IconDefinition; +export const faCreativeCommonsNcEu: IconDefinition; +export const faCreativeCommonsNcJp: IconDefinition; +export const faCreativeCommonsNd: IconDefinition; +export const faCreativeCommonsPd: IconDefinition; +export const faCreativeCommonsPdAlt: IconDefinition; +export const faCreativeCommonsRemix: IconDefinition; +export const faCreativeCommonsSa: IconDefinition; +export const faCreativeCommonsSampling: IconDefinition; +export const faCreativeCommonsSamplingPlus: IconDefinition; +export const faCreativeCommonsShare: IconDefinition; +export const faCss3: IconDefinition; +export const faCss3Alt: IconDefinition; +export const faCuttlefish: IconDefinition; +export const faDAndD: IconDefinition; +export const faDashcube: IconDefinition; +export const faDelicious: IconDefinition; +export const faDeploydog: IconDefinition; +export const faDeskpro: IconDefinition; +export const faDeviantart: IconDefinition; +export const faDigg: IconDefinition; +export const faDigitalOcean: IconDefinition; +export const faDiscord: IconDefinition; +export const faDiscourse: IconDefinition; +export const faDochub: IconDefinition; +export const faDocker: IconDefinition; +export const faDraft2digital: IconDefinition; +export const faDribbble: IconDefinition; +export const faDribbbleSquare: IconDefinition; +export const faDropbox: IconDefinition; +export const faDrupal: IconDefinition; +export const faDyalog: IconDefinition; +export const faEarlybirds: IconDefinition; +export const faEbay: IconDefinition; +export const faEdge: IconDefinition; +export const faElementor: IconDefinition; +export const faEmber: IconDefinition; +export const faEmpire: IconDefinition; +export const faEnvira: IconDefinition; +export const faErlang: IconDefinition; +export const faEthereum: IconDefinition; +export const faEtsy: IconDefinition; +export const faExpeditedssl: IconDefinition; +export const faFacebook: IconDefinition; +export const faFacebookF: IconDefinition; +export const faFacebookMessenger: IconDefinition; +export const faFacebookSquare: IconDefinition; +export const faFirefox: IconDefinition; +export const faFirstOrder: IconDefinition; +export const faFirstOrderAlt: IconDefinition; +export const faFirstdraft: IconDefinition; +export const faFlickr: IconDefinition; +export const faFlipboard: IconDefinition; +export const faFly: IconDefinition; +export const faFontAwesome: IconDefinition; +export const faFontAwesomeAlt: IconDefinition; +export const faFontAwesomeFlag: IconDefinition; +export const faFontAwesomeLogoFull: IconDefinition; +export const faFonticons: IconDefinition; +export const faFonticonsFi: IconDefinition; +export const faFortAwesome: IconDefinition; +export const faFortAwesomeAlt: IconDefinition; +export const faForumbee: IconDefinition; +export const faFoursquare: IconDefinition; +export const faFreeCodeCamp: IconDefinition; +export const faFreebsd: IconDefinition; +export const faFulcrum: IconDefinition; +export const faGalacticRepublic: IconDefinition; +export const faGalacticSenate: IconDefinition; +export const faGetPocket: IconDefinition; +export const faGg: IconDefinition; +export const faGgCircle: IconDefinition; +export const faGit: IconDefinition; +export const faGitSquare: IconDefinition; +export const faGithub: IconDefinition; +export const faGithubAlt: IconDefinition; +export const faGithubSquare: IconDefinition; +export const faGitkraken: IconDefinition; +export const faGitlab: IconDefinition; +export const faGitter: IconDefinition; +export const faGlide: IconDefinition; +export const faGlideG: IconDefinition; +export const faGofore: IconDefinition; +export const faGoodreads: IconDefinition; +export const faGoodreadsG: IconDefinition; +export const faGoogle: IconDefinition; +export const faGoogleDrive: IconDefinition; +export const faGooglePlay: IconDefinition; +export const faGooglePlus: IconDefinition; +export const faGooglePlusG: IconDefinition; +export const faGooglePlusSquare: IconDefinition; +export const faGoogleWallet: IconDefinition; +export const faGratipay: IconDefinition; +export const faGrav: IconDefinition; +export const faGripfire: IconDefinition; +export const faGrunt: IconDefinition; +export const faGulp: IconDefinition; +export const faHackerNews: IconDefinition; +export const faHackerNewsSquare: IconDefinition; +export const faHips: IconDefinition; +export const faHireAHelper: IconDefinition; +export const faHooli: IconDefinition; +export const faHornbill: IconDefinition; +export const faHotjar: IconDefinition; +export const faHouzz: IconDefinition; +export const faHtml5: IconDefinition; +export const faHubspot: IconDefinition; +export const faImdb: IconDefinition; +export const faInstagram: IconDefinition; +export const faInternetExplorer: IconDefinition; +export const faIoxhost: IconDefinition; +export const faItunes: IconDefinition; +export const faItunesNote: IconDefinition; +export const faJava: IconDefinition; +export const faJediOrder: IconDefinition; +export const faJenkins: IconDefinition; +export const faJoget: IconDefinition; +export const faJoomla: IconDefinition; +export const faJs: IconDefinition; +export const faJsSquare: IconDefinition; +export const faJsfiddle: IconDefinition; +export const faKeybase: IconDefinition; +export const faKeycdn: IconDefinition; +export const faKickstarter: IconDefinition; +export const faKickstarterK: IconDefinition; +export const faKorvue: IconDefinition; +export const faLaravel: IconDefinition; +export const faLastfm: IconDefinition; +export const faLastfmSquare: IconDefinition; +export const faLeanpub: IconDefinition; +export const faLess: IconDefinition; +export const faLine: IconDefinition; +export const faLinkedin: IconDefinition; +export const faLinkedinIn: IconDefinition; +export const faLinode: IconDefinition; +export const faLinux: IconDefinition; +export const faLyft: IconDefinition; +export const faMagento: IconDefinition; +export const faMailchimp: IconDefinition; +export const faMandalorian: IconDefinition; +export const faMastodon: IconDefinition; +export const faMaxcdn: IconDefinition; +export const faMedapps: IconDefinition; +export const faMedium: IconDefinition; +export const faMediumM: IconDefinition; +export const faMedrt: IconDefinition; +export const faMeetup: IconDefinition; +export const faMegaport: IconDefinition; +export const faMicrosoft: IconDefinition; +export const faMix: IconDefinition; +export const faMixcloud: IconDefinition; +export const faMizuni: IconDefinition; +export const faModx: IconDefinition; +export const faMonero: IconDefinition; +export const faNapster: IconDefinition; +export const faNimblr: IconDefinition; +export const faNintendoSwitch: IconDefinition; +export const faNode: IconDefinition; +export const faNodeJs: IconDefinition; +export const faNpm: IconDefinition; +export const faNs8: IconDefinition; +export const faNutritionix: IconDefinition; +export const faOdnoklassniki: IconDefinition; +export const faOdnoklassnikiSquare: IconDefinition; +export const faOldRepublic: IconDefinition; +export const faOpencart: IconDefinition; +export const faOpenid: IconDefinition; +export const faOpera: IconDefinition; +export const faOptinMonster: IconDefinition; +export const faOsi: IconDefinition; +export const faPage4: IconDefinition; +export const faPagelines: IconDefinition; +export const faPalfed: IconDefinition; +export const faPatreon: IconDefinition; +export const faPaypal: IconDefinition; +export const faPeriscope: IconDefinition; +export const faPhabricator: IconDefinition; +export const faPhoenixFramework: IconDefinition; +export const faPhoenixSquadron: IconDefinition; +export const faPhp: IconDefinition; +export const faPiedPiper: IconDefinition; +export const faPiedPiperAlt: IconDefinition; +export const faPiedPiperHat: IconDefinition; +export const faPiedPiperPp: IconDefinition; +export const faPinterest: IconDefinition; +export const faPinterestP: IconDefinition; +export const faPinterestSquare: IconDefinition; +export const faPlaystation: IconDefinition; +export const faProductHunt: IconDefinition; +export const faPushed: IconDefinition; +export const faPython: IconDefinition; +export const faQq: IconDefinition; +export const faQuinscape: IconDefinition; +export const faQuora: IconDefinition; +export const faRProject: IconDefinition; +export const faRavelry: IconDefinition; +export const faReact: IconDefinition; +export const faReadme: IconDefinition; +export const faRebel: IconDefinition; +export const faRedRiver: IconDefinition; +export const faReddit: IconDefinition; +export const faRedditAlien: IconDefinition; +export const faRedditSquare: IconDefinition; +export const faRendact: IconDefinition; +export const faRenren: IconDefinition; +export const faReplyd: IconDefinition; +export const faResearchgate: IconDefinition; +export const faResolving: IconDefinition; +export const faRev: IconDefinition; +export const faRocketchat: IconDefinition; +export const faRockrms: IconDefinition; +export const faSafari: IconDefinition; +export const faSass: IconDefinition; +export const faSchlix: IconDefinition; +export const faScribd: IconDefinition; +export const faSearchengin: IconDefinition; +export const faSellcast: IconDefinition; +export const faSellsy: IconDefinition; +export const faServicestack: IconDefinition; +export const faShirtsinbulk: IconDefinition; +export const faShopware: IconDefinition; +export const faSimplybuilt: IconDefinition; +export const faSistrix: IconDefinition; +export const faSith: IconDefinition; +export const faSkyatlas: IconDefinition; +export const faSkype: IconDefinition; +export const faSlack: IconDefinition; +export const faSlackHash: IconDefinition; +export const faSlideshare: IconDefinition; +export const faSnapchat: IconDefinition; +export const faSnapchatGhost: IconDefinition; +export const faSnapchatSquare: IconDefinition; +export const faSoundcloud: IconDefinition; +export const faSpeakap: IconDefinition; +export const faSpotify: IconDefinition; +export const faSquarespace: IconDefinition; +export const faStackExchange: IconDefinition; +export const faStackOverflow: IconDefinition; +export const faStaylinked: IconDefinition; +export const faSteam: IconDefinition; +export const faSteamSquare: IconDefinition; +export const faSteamSymbol: IconDefinition; +export const faStickerMule: IconDefinition; +export const faStrava: IconDefinition; +export const faStripe: IconDefinition; +export const faStripeS: IconDefinition; +export const faStudiovinari: IconDefinition; +export const faStumbleupon: IconDefinition; +export const faStumbleuponCircle: IconDefinition; +export const faSuperpowers: IconDefinition; +export const faSupple: IconDefinition; +export const faTeamspeak: IconDefinition; +export const faTelegram: IconDefinition; +export const faTelegramPlane: IconDefinition; +export const faTencentWeibo: IconDefinition; +export const faThemeco: IconDefinition; +export const faThemeisle: IconDefinition; +export const faTradeFederation: IconDefinition; +export const faTrello: IconDefinition; +export const faTripadvisor: IconDefinition; +export const faTumblr: IconDefinition; +export const faTumblrSquare: IconDefinition; +export const faTwitch: IconDefinition; +export const faTwitter: IconDefinition; +export const faTwitterSquare: IconDefinition; +export const faTypo3: IconDefinition; +export const faUber: IconDefinition; +export const faUikit: IconDefinition; +export const faUniregistry: IconDefinition; +export const faUntappd: IconDefinition; +export const faUsb: IconDefinition; +export const faUssunnah: IconDefinition; +export const faVaadin: IconDefinition; +export const faViacoin: IconDefinition; +export const faViadeo: IconDefinition; +export const faViadeoSquare: IconDefinition; +export const faViber: IconDefinition; +export const faVimeo: IconDefinition; +export const faVimeoSquare: IconDefinition; +export const faVimeoV: IconDefinition; +export const faVine: IconDefinition; +export const faVk: IconDefinition; +export const faVnv: IconDefinition; +export const faVuejs: IconDefinition; +export const faWeebly: IconDefinition; +export const faWeibo: IconDefinition; +export const faWeixin: IconDefinition; +export const faWhatsapp: IconDefinition; +export const faWhatsappSquare: IconDefinition; +export const faWhmcs: IconDefinition; +export const faWikipediaW: IconDefinition; +export const faWindows: IconDefinition; +export const faWix: IconDefinition; +export const faWolfPackBattalion: IconDefinition; +export const faWordpress: IconDefinition; +export const faWordpressSimple: IconDefinition; +export const faWpbeginner: IconDefinition; +export const faWpexplorer: IconDefinition; +export const faWpforms: IconDefinition; +export const faXbox: IconDefinition; +export const faXing: IconDefinition; +export const faXingSquare: IconDefinition; +export const faYCombinator: IconDefinition; +export const faYahoo: IconDefinition; +export const faYandex: IconDefinition; +export const faYandexInternational: IconDefinition; +export const faYelp: IconDefinition; +export const faYoast: IconDefinition; +export const faYoutube: IconDefinition; +export const faYoutubeSquare: IconDefinition; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/index.es.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/index.es.js new file mode 100644 index 0000000000..9082f20dff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/index.es.js @@ -0,0 +1,755 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +var prefix = "fab"; +var fa500px = { prefix: 'fab', iconName: '500px', icon: [448, 512, [], "f26e", "M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3.3-16 16.5-21.2 23.9l-.5.6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8zm63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2zM393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4zM213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6.2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6z"] }; +var faAccessibleIcon = { prefix: 'fab', iconName: 'accessible-icon', icon: [448, 512, [], "f368", "M423.9 255.8L411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7zm-64.9-154c28.1 0 50.9-22.8 50.9-50.9C409.9 22.8 387.1 0 359 0c-28.1 0-50.9 22.8-50.9 50.9 0 28.1 22.8 50.9 50.9 50.9zM179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3z"] }; +var faAccusoft = { prefix: 'fab', iconName: 'accusoft', icon: [640, 512, [], "f369", "M482.2 372.1C476.5 365.2 250 75 242.3 65.5c-13.7-17.2 0-16.8 19.2-16.9 9.7-.1 106.3-.6 116.5-.6 24.1-.1 28.7.6 38.4 12.8 2.1 2.7 205.1 245.8 207.2 248.3 5.5 6.7 15.2 19.1 7.2 23.4-2.4 1.3-114.6 47.7-117.8 48.9-10.1 4-17.5 6.8-30.8-9.3m114.7-5.6s-115 50.4-117.5 51.6c-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2-2.3-.3-24.6-4.7-38-7.2m-326-181.3s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3v-1l-51.2-65.8"] }; +var faAdn = { prefix: 'fab', iconName: 'adn', icon: [496, 512, [], "f170", "M248 167.5l64.9 98.8H183.1l64.9-98.8zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7h30.2z"] }; +var faAdversal = { prefix: 'fab', iconName: 'adversal', icon: [512, 512, [], "f36a", "M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2zM178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4.4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3zm286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7.4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9zm3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6.4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1.2-.1.3-.1.5zm-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2.4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1zm-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8z"] }; +var faAffiliatetheme = { prefix: 'fab', iconName: 'affiliatetheme', icon: [512, 512, [], "f36b", "M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2 29.1 21.6 11.1 96.6-40.2 167.5zm351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9.1-8.5-.3-16.8-1-25z"] }; +var faAlgolia = { prefix: 'fab', iconName: 'algolia', icon: [448, 512, [], "f36c", "M229.3 182.6c-49.3 0-89.2 39.9-89.2 89.2 0 49.3 39.9 89.2 89.2 89.2s89.2-39.9 89.2-89.2c0-49.3-40-89.2-89.2-89.2zm62.7 56.6l-58.9 30.6c-1.8.9-3.8-.4-3.8-2.3V201c0-1.5 1.3-2.7 2.7-2.6 26.2 1 48.9 15.7 61.1 37.1.7 1.3.2 3-1.1 3.7zM389.1 32H58.9C26.4 32 0 58.4 0 90.9V421c0 32.6 26.4 59 58.9 59H389c32.6 0 58.9-26.4 58.9-58.9V90.9C448 58.4 421.6 32 389.1 32zm-202.6 84.7c0-10.8 8.7-19.5 19.5-19.5h45.3c10.8 0 19.5 8.7 19.5 19.5v15.4c0 1.8-1.7 3-3.3 2.5-12.3-3.4-25.1-5.1-38.1-5.1-13.5 0-26.7 1.8-39.4 5.5-1.7.5-3.4-.8-3.4-2.5v-15.8zm-84.4 37l9.2-9.2c7.6-7.6 19.9-7.6 27.5 0l7.7 7.7c1.1 1.1 1 3-.3 4-6.2 4.5-12.1 9.4-17.6 14.9-5.4 5.4-10.4 11.3-14.8 17.4-1 1.3-2.9 1.5-4 .3l-7.7-7.7c-7.6-7.5-7.6-19.8 0-27.4zm127.2 244.8c-70 0-126.6-56.7-126.6-126.6s56.7-126.6 126.6-126.6c70 0 126.6 56.6 126.6 126.6 0 69.8-56.7 126.6-126.6 126.6z"] }; +var faAmazon = { prefix: 'fab', iconName: 'amazon', icon: [448, 512, [], "f270", "M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z"] }; +var faAmazonPay = { prefix: 'fab', iconName: 'amazon-pay', icon: [611, 512, [], "f42c", "M0 325.2c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7 40.7 20.4 83.2 35.6 127.4 46.3 20.9 5 41.9 9 63.2 11.8 31.5 4.2 63.2 6 95 5.2 17.4-.4 34.8-1.8 52.1-3.8 56.4-6.7 110.9-20.8 163.3-42.8 2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9-2.8 2.8-6.3 5.1-9.6 7.4-30.7 21.1-64.2 36.4-99.6 47.9-24.6 7.9-49.6 13.8-75.1 17.6-17.6 2.6-35.4 4.4-53.2 4.8-.8 0-1.7.2-2.5.3H294c-.8-.1-1.7-.3-2.5-.3-3.6-.2-7.2-.3-10.7-.4-16.9-.7-33.7-2.6-50.4-5.3-27.4-4.5-54.2-11.4-80.4-20.9-54.1-19.6-102.6-48.6-145.6-87-1.8-1.6-3-3.8-4.4-5.7v-2zM158 65c-1.4.2-2.9.4-4.3.6-14 1.7-26.6 6.9-38 15.1-2.4 1.7-4.6 3.5-7.1 5.4-.2-.5-.4-1-.4-1.4-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6H87.8c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3V215c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zm-47.4 41.9c0-1.5.4-2.4 1.7-3.3 13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9-1.2-.9-1.7-1.7-1.7-3.3.1-14.1 0-28.1 0-42.2 0-14 .1-28 0-42.1zM316.3 65c-1 .1-2 .3-2.9.4-9.8.5-19.4 1.7-28.9 4.1-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9 0 .4-.1.9-.2 1.4-.5-.1-.9 0-1.3-.1-10.5-2.5-21.1-4.3-32-4.9-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4.4-.4.9-.7 1.6-1.1.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0 2.7-.1 4.5-1.9 4.8-4.7.1-.9.1-1.9.1-2.8v-106c0-4.3-.2-8.6-.9-12.9-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1zm35 127.7c0 1.3-.4 2.2-1.5 3-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8-6.3-2.5-10.4-6.9-12.4-13.3s-2-13-.1-19.4c2.5-8.3 8.4-13 16.4-15.6 8.1-2.6 16.5-3 24.8-2.2 8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3-.1 4.7-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3-6.8-2.3-13.9-3.3-21-3.9-13.1-1.1-26.2-.5-39.2 1.9-14.3 2.7-27.9 7.3-40 15.6-1.4 1-2.8 2.1-3.7 3.5-.7 1.1-.9 2.8-.5 4 .4 1.5 2.1 1.9 3.6 1.8.7 0 1.5 0 2.2-.1 7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9 4.8.3 9.7 1.4 14.4 2.7 5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1-.4 1-.8 2-1 3-.5 2.9 1.2 4.8 4.1 4.1 1.7-.4 3.6-1.3 4.8-2.5 4.4-4.3 8.9-8.6 12.7-13.4 12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9v-17.3zM479.1 198.9c-12.9-35.7-25.8-71.5-38.7-107.2-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5.5 2.1 1.1 4.1 1.9 6.1 19.6 48.5 39.3 97.1 59.1 145.5 1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3-5.1 1.4-10.2 1.6-15.4 1.1-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8-.1 3.3-.1 6.6 0 9.9.1 5.5 2 8 7.4 8.9 5.6 1 11.3 1.9 16.9 2 17.1.4 30.7-6.5 39.5-21.4 3.5-5.9 6.7-12.1 9.2-18.4 23.7-59.8 47.1-119.7 70.6-179.6.7-1.8 1.3-3.6 1.6-5.5.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0-3.7 0-6.3 1.6-7.7 5.2-.5 1.4-1.1 2.7-1.6 4.1-11.6 33.3-23.2 66.6-34.8 100-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z"] }; +var faAmilia = { prefix: 'fab', iconName: 'amilia', icon: [448, 512, [], "f36d", "M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm-87.9 327.7c0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5V380c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7"] }; +var faAndroid = { prefix: 'fab', iconName: 'android', icon: [448, 512, [], "f17b", "M89.6 204.5v115.8c0 15.4-12.1 27.7-27.5 27.7-15.3 0-30.1-12.4-30.1-27.7V204.5c0-15.1 14.8-27.5 30.1-27.5 15.1 0 27.5 12.4 27.5 27.5zm10.8 157c0 16.4 13.2 29.6 29.6 29.6h19.9l.3 61.1c0 36.9 55.2 36.6 55.2 0v-61.1h37.2v61.1c0 36.7 55.5 36.8 55.5 0v-61.1h20.2c16.2 0 29.4-13.2 29.4-29.6V182.1H100.4v179.4zm248-189.1H99.3c0-42.8 25.6-80 63.6-99.4l-19.1-35.3c-2.8-4.9 4.3-8 6.7-3.8l19.4 35.6c34.9-15.5 75-14.7 108.3 0L297.5 34c2.5-4.3 9.5-1.1 6.7 3.8L285.1 73c37.7 19.4 63.3 56.6 63.3 99.4zm-170.7-55.5c0-5.7-4.6-10.5-10.5-10.5-5.7 0-10.2 4.8-10.2 10.5s4.6 10.5 10.2 10.5c5.9 0 10.5-4.8 10.5-10.5zm113.4 0c0-5.7-4.6-10.5-10.2-10.5-5.9 0-10.5 4.8-10.5 10.5s4.6 10.5 10.5 10.5c5.6 0 10.2-4.8 10.2-10.5zm94.8 60.1c-15.1 0-27.5 12.1-27.5 27.5v115.8c0 15.4 12.4 27.7 27.5 27.7 15.4 0 30.1-12.4 30.1-27.7V204.5c0-15.4-14.8-27.5-30.1-27.5z"] }; +var faAngellist = { prefix: 'fab', iconName: 'angellist', icon: [448, 512, [], "f209", "M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7zM311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6 33.1-93.7zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8zM140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7.1-7.7 12.7-21.1 20.4-21.1zm184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3.3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7.1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7zm-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1z"] }; +var faAngrycreative = { prefix: 'fab', iconName: 'angrycreative', icon: [640, 512, [], "f36e", "M640 238.2l-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4 93.1-6.2zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9-12.8 120zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3-126.2 7.7zm-44.3-70.2l-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7 2.7-29.8zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1zm21.1 70.8l5.8-60c-5 13.5-14.7 21.1-27.9 26.6l22.1 33.4zm135.4-45l-7.9-37.8-15.8 39.3 23.7-1.5zm-170.1-74.6l-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8.3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2-56.8 3.7zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1.6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2l-2.9 28.8zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3zm-201.3 8.2l23.8-1.6-8.3-37.6-15.5 39.2z"] }; +var faAngular = { prefix: 'fab', iconName: 'angular', icon: [415, 512, [], "f420", "M169.7 268.1h76.2l-38.1-91.6-38.1 91.6zM207.8 32L0 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7L207.8 32zM338 373.8h-48.6l-26.2-65.4H152.6l-26.2 65.4H77.7L207.8 81.5 338 373.8z"] }; +var faAppStore = { prefix: 'fab', iconName: 'app-store', icon: [512, 512, [], "f36f", "M255.9 120.9l9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5 9.8 5.6 13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4 0-11.3 9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5l8.9 15.7zm-78.7 218l-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5-9.8-5.6-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6zm168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4 0 11.3-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216z"] }; +var faAppStoreIos = { prefix: 'fab', iconName: 'app-store-ios', icon: [448, 512, [], "f370", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7c16.1-4.9 29.3-1.1 39.6 11.4L127 384.5zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40zm98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20z"] }; +var faApper = { prefix: 'fab', iconName: 'apper', icon: [640, 512, [], "f371", "M42.1 239.1c22.2 0 29 2.8 33.5 14.6h.8v-22.9c0-11.3-4.8-15.4-17.9-15.4-11.3 0-14.4 2.5-15.1 12.8H4.8c.3-13.9 1.5-19.1 5.8-24.4C17.9 195 29.5 192 56.7 192c33 0 47.1 5 53.9 18.9 2 4.3 4 15.6 4 23.7v76.3H76.3l1.3-19.1h-1c-5.3 15.6-13.6 20.4-35.5 20.4-30.3 0-41.1-10.1-41.1-37.3 0-25.2 12.3-35.8 42.1-35.8zm17.1 48.1c13.1 0 16.9-3 16.9-13.4 0-9.1-4.3-11.6-19.6-11.6-13.1 0-17.9 3-17.9 12.1-.1 10.4 3.7 12.9 20.6 12.9zm77.8-94.9h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.2 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3H137v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm57.9-60.7h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.3 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3h-39.5v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm53.8-3.8c0-25.4 3.3-37.8 12.3-45.8 8.8-8.1 22.2-11.3 45.1-11.3 42.8 0 55.7 12.8 55.7 55.7v11.1h-75.3c-.3 2-.3 4-.3 4.8 0 16.9 4.5 21.9 20.1 21.9 13.9 0 17.9-3 17.9-13.9h37.5v2.3c0 9.8-2.5 18.9-6.8 24.7-7.3 9.8-19.6 13.6-44.3 13.6-27.5 0-41.6-3.3-50.6-12.3-8.5-8.5-11.3-21.3-11.3-50.8zm76.4-11.6c-.3-1.8-.3-3.3-.3-3.8 0-12.3-3.3-14.6-19.6-14.6-14.4 0-17.1 3-18.1 15.1l-.3 3.3h38.3zm55.6-45.3h38.3l-1.8 19.9h.7c6.8-14.9 14.4-20.2 29.7-20.2 10.8 0 19.1 3.3 23.4 9.3 5.3 7.3 6.8 14.4 6.8 34 0 1.5 0 5 .2 9.3h-35c.3-1.8.3-3.3.3-4 0-15.4-2-19.4-10.3-19.4-6.3 0-10.8 3.3-13.1 9.3-1 3-1 4.3-1 12.3v68h-38.3V192.3z"] }; +var faApple = { prefix: 'fab', iconName: 'apple', icon: [376, 512, [], "f179", "M314.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C59.3 141.2 0 184.8 0 273.5c0 26.2 4.8 53.3 14.4 81.2 12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z"] }; +var faApplePay = { prefix: 'fab', iconName: 'apple-pay', icon: [640, 512, [], "f415", "M116.9 158.5c-7.5 8.9-19.5 15.9-31.5 14.9-1.5-12 4.4-24.8 11.3-32.6 7.5-9.1 20.6-15.6 31.3-16.1 1.2 12.4-3.7 24.7-11.1 33.8m10.9 17.2c-17.4-1-32.3 9.9-40.5 9.9-8.4 0-21-9.4-34.8-9.1-17.9.3-34.5 10.4-43.6 26.5-18.8 32.3-4.9 80 13.3 106.3 8.9 13 19.5 27.3 33.5 26.8 13.3-.5 18.5-8.6 34.5-8.6 16.1 0 20.8 8.6 34.8 8.4 14.5-.3 23.6-13 32.5-26 10.1-14.8 14.3-29.1 14.5-29.9-.3-.3-28-10.9-28.3-42.9-.3-26.8 21.9-39.5 22.9-40.3-12.5-18.6-32-20.6-38.8-21.1m100.4-36.2v194.9h30.3v-66.6h41.9c38.3 0 65.1-26.3 65.1-64.3s-26.4-64-64.1-64h-73.2zm30.3 25.5h34.9c26.3 0 41.3 14 41.3 38.6s-15 38.8-41.4 38.8h-34.8V165zm162.2 170.9c19 0 36.6-9.6 44.6-24.9h.6v23.4h28v-97c0-28.1-22.5-46.3-57.1-46.3-32.1 0-55.9 18.4-56.8 43.6h27.3c2.3-12 13.4-19.9 28.6-19.9 18.5 0 28.9 8.6 28.9 24.5v10.8l-37.8 2.3c-35.1 2.1-54.1 16.5-54.1 41.5.1 25.2 19.7 42 47.8 42zm8.2-23.1c-16.1 0-26.4-7.8-26.4-19.6 0-12.3 9.9-19.4 28.8-20.5l33.6-2.1v11c0 18.2-15.5 31.2-36 31.2zm102.5 74.6c29.5 0 43.4-11.3 55.5-45.4L640 193h-30.8l-35.6 115.1h-.6L537.4 193h-31.6L557 334.9l-2.8 8.6c-4.6 14.6-12.1 20.3-25.5 20.3-2.4 0-7-.3-8.9-.5v23.4c1.8.4 9.3.7 11.6.7z"] }; +var faAsymmetrik = { prefix: 'fab', iconName: 'asymmetrik', icon: [576, 512, [], "f372", "M517.5 309.2c38.8-40 58.1-80 58.5-116.1.8-65.5-59.4-118.2-169.4-135C277.9 38.4 118.1 73.6 0 140.5 52 114 110.6 92.3 170.7 82.3c74.5-20.5 153-25.4 221.3-14.8C544.5 91.3 588.8 195 490.8 299.2c-10.2 10.8-22 21.1-35 30.6L304.9 103.4 114.7 388.9c-65.6-29.4-76.5-90.2-19.1-151.2 20.8-22.2 48.3-41.9 79.5-58.1 20-12.2 39.7-22.6 62-30.7-65.1 20.3-122.7 52.9-161.6 92.9-27.7 28.6-41.4 57.1-41.7 82.9-.5 35.1 23.4 65.1 68.4 83l-34.5 51.7h101.6l22-34.4c22.2 1 45.3 0 68.6-2.7l-22.8 37.1h135.5L340 406.3c18.6-5.3 36.9-11.5 54.5-18.7l45.9 71.8H542L468.6 349c18.5-12.1 35-25.5 48.9-39.8zm-187.6 80.5l-25-40.6-32.7 53.3c-23.4 3.5-46.7 5.1-69.2 4.4l101.9-159.3 78.7 123c-17.2 7.4-35.3 13.9-53.7 19.2z"] }; +var faAudible = { prefix: 'fab', iconName: 'audible', icon: [640, 512, [], "f373", "M640 199.9v54l-320 200L0 254v-54l320 200 320-200.1zm-194.5 72l47.1-29.4c-37.2-55.8-100.7-92.6-172.7-92.6-72 0-135.5 36.7-172.6 92.4h.3c2.5-2.3 5.1-4.5 7.7-6.7 89.7-74.4 219.4-58.1 290.2 36.3zm-220.1 18.8c16.9-11.9 36.5-18.7 57.4-18.7 34.4 0 65.2 18.4 86.4 47.6l45.4-28.4c-20.9-29.9-55.6-49.5-94.8-49.5-38.9 0-73.4 19.4-94.4 49zM103.6 161.1c131.8-104.3 318.2-76.4 417.5 62.1l.7 1 48.8-30.4C517.1 112.1 424.8 58.1 319.9 58.1c-103.5 0-196.6 53.5-250.5 135.6 9.9-10.5 22.7-23.5 34.2-32.6zm467 32.7z"] }; +var faAutoprefixer = { prefix: 'fab', iconName: 'autoprefixer', icon: [640, 512, [], "f41c", "M318.4 16l-161 480h77.5l25.4-81.4h119.5L405 496h77.5L318.4 16zm-40.3 341.9l41.2-130.4h1.5l40.9 130.4h-83.6zM640 405l-10-31.4L462.1 358l19.4 56.5L640 405zm-462.1-47L10 373.7 0 405l158.5 9.4 19.4-56.4z"] }; +var faAvianex = { prefix: 'fab', iconName: 'avianex', icon: [512, 512, [], "f374", "M453.1 32h-312c-38.9 0-76.2 31.2-83.3 69.7L1.2 410.3C-5.9 448.8 19.9 480 58.9 480h312c38.9 0 76.2-31.2 83.3-69.7l56.7-308.5c7-38.6-18.8-69.8-57.8-69.8zm-58.2 347.3l-32 13.5-115.4-110c-14.7 10-29.2 19.5-41.7 27.1l22.1 64.2-17.9 12.7-40.6-61-52.4-48.1 15.7-15.4 58 31.1c9.3-10.5 20.8-22.6 32.8-34.9L203 228.9l-68.8-99.8 18.8-28.9 8.9-4.8L265 207.8l4.9 4.5c19.4-18.8 33.8-32.4 33.8-32.4 7.7-6.5 21.5-2.9 30.7 7.9 9 10.5 10.6 24.7 2.7 31.3-1.8 1.3-15.5 11.4-35.3 25.6l4.5 7.3 94.9 119.4-6.3 7.9z"] }; +var faAviato = { prefix: 'fab', iconName: 'aviato', icon: [640, 512, [], "f421", "M107.2 283.5l-19-41.8H36.1l-19 41.8H0l62.2-131.4 62.2 131.4h-17.2zm-45-98.1l-19.6 42.5h39.2l-19.6-42.5zm112.7 102.4l-62.2-131.4h17.1l45.1 96 45.1-96h17l-62.1 131.4zm80.6-4.3V156.4H271v127.1h-15.5zm209.1-115.6v115.6h-17.3V167.9h-41.2v-11.5h99.6v11.5h-41.1zM640 218.8c0 9.2-1.7 17.8-5.1 25.8-3.4 8-8.2 15.1-14.2 21.1-6 6-13.1 10.8-21.1 14.2-8 3.4-16.6 5.1-25.8 5.1s-17.8-1.7-25.8-5.1c-8-3.4-15.1-8.2-21.1-14.2-6-6-10.8-13-14.2-21.1-3.4-8-5.1-16.6-5.1-25.8s1.7-17.8 5.1-25.8c3.4-8 8.2-15.1 14.2-21.1 6-6 13-8.4 21.1-11.9 8-3.4 16.6-5.1 25.8-5.1s17.8 1.7 25.8 5.1c8 3.4 15.1 5.8 21.1 11.9 6 6 10.7 13.1 14.2 21.1 3.4 8 5.1 16.6 5.1 25.8zm-15.5 0c0-7.3-1.3-14-3.9-20.3-2.6-6.3-6.2-11.7-10.8-16.3-4.6-4.6-10-8.2-16.2-10.9-6.2-2.7-12.8-4-19.8-4s-13.6 1.3-19.8 4c-6.2 2.7-11.6 6.3-16.2 10.9-4.6 4.6-8.2 10-10.8 16.3-2.6 6.3-3.9 13.1-3.9 20.3 0 7.3 1.3 14 3.9 20.3 2.6 6.3 6.2 11.7 10.8 16.3 4.6 4.6 10 8.2 16.2 10.9 6.2 2.7 12.8 4 19.8 4s13.6-1.3 19.8-4c6.2-2.7 11.6-6.3 16.2-10.9 4.6-4.6 8.2-10 10.8-16.3 2.6-6.3 3.9-13.1 3.9-20.3zm-94.8 96.7v-6.3l88.9-10-242.9 13.4c.6-2.2 1.1-4.6 1.4-7.2.3-2 .5-4.2.6-6.5l64.8-8.1-64.9 1.9c0-.4-.1-.7-.1-1.1-2.8-17.2-25.5-23.7-25.5-23.7l-1.1-26.3h23.8l19 41.8h17.1L348.6 152l-62.2 131.4h17.1l19-41.8h23.6L345 268s-22.7 6.5-25.5 23.7c-.1.3-.1.7-.1 1.1l-64.9-1.9 64.8 8.1c.1 2.3.3 4.4.6 6.5.3 2.6.8 5 1.4 7.2L78.4 299.2l88.9 10v6.3c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4 0-6.2-4.6-11.3-10.5-12.2v-5.8l80.3 9v5.4c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-4.9l28.4 3.2v23.7h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9V323l38.3 4.3c8.1 11.4 19 13.6 19 13.6l-.1 6.7-5.1.2-.1 12.1h4.1l.1-5h5.2l.1 5h4.1l-.1-12.1-5.1-.2-.1-6.7s10.9-2.1 19-13.6l38.3-4.3v23.2h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9v-23.7l28.4-3.2v4.9c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-5.4l80.3-9v5.8c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4-.2-6.3-4.7-11.4-10.7-12.3zm-200.8-87.6l19.6-42.5 19.6 42.5h-17.9l-1.7-40.3-1.7 40.3h-17.9z"] }; +var faAws = { prefix: 'fab', iconName: 'aws', icon: [640, 512, [], "f375", "M180.41 203.01c-.72 22.65 10.6 32.68 10.88 39.05a8.164 8.164 0 0 1-4.1 6.27l-12.8 8.96a10.66 10.66 0 0 1-5.63 1.92c-.43-.02-8.19 1.83-20.48-25.61a78.608 78.608 0 0 1-62.61 29.45c-16.28.89-60.4-9.24-58.13-56.21-1.59-38.28 34.06-62.06 70.93-60.05 7.1.02 21.6.37 46.99 6.27v-15.62c2.69-26.46-14.7-46.99-44.81-43.91-2.4.01-19.4-.5-45.84 10.11-7.36 3.38-8.3 2.82-10.75 2.82-7.41 0-4.36-21.48-2.94-24.2 5.21-6.4 35.86-18.35 65.94-18.18a76.857 76.857 0 0 1 55.69 17.28 70.285 70.285 0 0 1 17.67 52.36l-.01 69.29zM93.99 235.4c32.43-.47 46.16-19.97 49.29-30.47 2.46-10.05 2.05-16.41 2.05-27.4-9.67-2.32-23.59-4.85-39.56-4.87-15.15-1.14-42.82 5.63-41.74 32.26-1.24 16.79 11.12 31.4 29.96 30.48zm170.92 23.05c-7.86.72-11.52-4.86-12.68-10.37l-49.8-164.65c-.97-2.78-1.61-5.65-1.92-8.58a4.61 4.61 0 0 1 3.86-5.25c.24-.04-2.13 0 22.25 0 8.78-.88 11.64 6.03 12.55 10.37l35.72 140.83 33.16-140.83c.53-3.22 2.94-11.07 12.8-10.24h17.16c2.17-.18 11.11-.5 12.68 10.37l33.42 142.63L420.98 80.1c.48-2.18 2.72-11.37 12.68-10.37h19.72c.85-.13 6.15-.81 5.25 8.58-.43 1.85 3.41-10.66-52.75 169.9-1.15 5.51-4.82 11.09-12.68 10.37h-18.69c-10.94 1.15-12.51-9.66-12.68-10.75L328.67 110.7l-32.78 136.99c-.16 1.09-1.73 11.9-12.68 10.75h-18.3zm273.48 5.63c-5.88.01-33.92-.3-57.36-12.29a12.802 12.802 0 0 1-7.81-11.91v-10.75c0-8.45 6.2-6.9 8.83-5.89 10.04 4.06 16.48 7.14 28.81 9.6 36.65 7.53 52.77-2.3 56.72-4.48 13.15-7.81 14.19-25.68 5.25-34.95-10.48-8.79-15.48-9.12-53.13-21-4.64-1.29-43.7-13.61-43.79-52.36-.61-28.24 25.05-56.18 69.52-55.95 12.67-.01 46.43 4.13 55.57 15.62 1.35 2.09 2.02 4.55 1.92 7.04v10.11c0 4.44-1.62 6.66-4.87 6.66-7.71-.86-21.39-11.17-49.16-10.75-6.89-.36-39.89.91-38.41 24.97-.43 18.96 26.61 26.07 29.7 26.89 36.46 10.97 48.65 12.79 63.12 29.58 17.14 22.25 7.9 48.3 4.35 55.44-19.08 37.49-68.42 34.44-69.26 34.42zm40.2 104.86c-70.03 51.72-171.69 79.25-258.49 79.25A469.127 469.127 0 0 1 2.83 327.46c-6.53-5.89-.77-13.96 7.17-9.47a637.37 637.37 0 0 0 316.88 84.12 630.22 630.22 0 0 0 241.59-49.55c11.78-5 21.77 7.8 10.12 16.38zm29.19-33.29c-8.96-11.52-59.28-5.38-81.81-2.69-6.79.77-7.94-5.12-1.79-9.47 40.07-28.17 105.88-20.1 113.44-10.63 7.55 9.47-2.05 75.41-39.56 106.91-5.76 4.87-11.27 2.3-8.71-4.1 8.44-21.25 27.39-68.49 18.43-80.02z"] }; +var faBandcamp = { prefix: 'fab', iconName: 'bandcamp', icon: [496, 512, [], "f2d5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm48.2 326.1h-181L199.9 178h181l-84.7 156.1z"] }; +var faBehance = { prefix: 'fab', iconName: 'behance', icon: [576, 512, [], "f1b4", "M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z"] }; +var faBehanceSquare = { prefix: 'fab', iconName: 'behance-square', icon: [448, 512, [], "f1b5", "M186.5 293c0 19.3-14 25.4-31.2 25.4h-45.1v-52.9h46c18.6.1 30.3 7.8 30.3 27.5zm-7.7-82.3c0-17.7-13.7-21.9-28.9-21.9h-39.6v44.8H153c15.1 0 25.8-6.6 25.8-22.9zm132.3 23.2c-18.3 0-30.5 11.4-31.7 29.7h62.2c-1.7-18.5-11.3-29.7-30.5-29.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM271.7 185h77.8v-18.9h-77.8V185zm-43 110.3c0-24.1-11.4-44.9-35-51.6 17.2-8.2 26.2-17.7 26.2-37 0-38.2-28.5-47.5-61.4-47.5H68v192h93.1c34.9-.2 67.6-16.9 67.6-55.9zM380 280.5c0-41.1-24.1-75.4-67.6-75.4-42.4 0-71.1 31.8-71.1 73.6 0 43.3 27.3 73 71.1 73 33.2 0 54.7-14.9 65.1-46.8h-33.7c-3.7 11.9-18.6 18.1-30.2 18.1-22.4 0-34.1-13.1-34.1-35.3h100.2c.1-2.3.3-4.8.3-7.2z"] }; +var faBimobject = { prefix: 'fab', iconName: 'bimobject', icon: [448, 512, [], "f378", "M416 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm-64 257.4c0 49.4-11.4 82.6-103.8 82.6h-16.9c-44.1 0-62.4-14.9-70.4-38.8h-.9V368H96V136h64v74.7h1.1c4.6-30.5 39.7-38.8 69.7-38.8h17.3c92.4 0 103.8 33.1 103.8 82.5v35zm-64-28.9v22.9c0 21.7-3.4 33.8-38.4 33.8h-45.3c-28.9 0-44.1-6.5-44.1-35.7v-19c0-29.3 15.2-35.7 44.1-35.7h45.3c35-.2 38.4 12 38.4 33.7z"] }; +var faBitbucket = { prefix: 'fab', iconName: 'bitbucket', icon: [512, 512, [], "f171", "M23.1 32C14.2 31.9 7 38.9 6.9 47.8c0 .9.1 1.8.2 2.8L74.9 462c1.7 10.4 10.7 18 21.2 18.1h325.1c7.9.1 14.7-5.6 16-13.4l67.8-416c1.4-8.7-4.5-16.9-13.2-18.3-.9-.1-1.8-.2-2.8-.2L23.1 32zm285.3 297.3H204.6l-28.1-146.8h157l-25.1 146.8z"] }; +var faBitcoin = { prefix: 'fab', iconName: 'bitcoin', icon: [512, 512, [], "f379", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z"] }; +var faBity = { prefix: 'fab', iconName: 'bity', icon: [496, 512, [], "f37a", "M78.4 67.2C173.8-22 324.5-24 421.5 71c14.3 14.1-6.4 37.1-22.4 21.5-84.8-82.4-215.8-80.3-298.9-3.2-16.3 15.1-36.5-8.3-21.8-22.1zm98.9 418.6c19.3 5.7 29.3-23.6 7.9-30C73 421.9 9.4 306.1 37.7 194.8c5-19.6-24.9-28.1-30.2-7.1-32.1 127.4 41.1 259.8 169.8 298.1zm148.1-2c121.9-40.2 192.9-166.9 164.4-291-4.5-19.7-34.9-13.8-30 7.9 24.2 107.7-37.1 217.9-143.2 253.4-21.2 7-10.4 36 8.8 29.7zm-62.9-79l.2-71.8c0-8.2-6.6-14.8-14.8-14.8-8.2 0-14.8 6.7-14.8 14.8l-.2 71.8c0 8.2 6.6 14.8 14.8 14.8s14.8-6.6 14.8-14.8zm71-269c2.1 90.9 4.7 131.9-85.5 132.5-92.5-.7-86.9-44.3-85.5-132.5 0-21.8-32.5-19.6-32.5 0v71.6c0 69.3 60.7 90.9 118 90.1 57.3.8 118-20.8 118-90.1v-71.6c0-19.6-32.5-21.8-32.5 0z"] }; +var faBlackTie = { prefix: 'fab', iconName: 'black-tie', icon: [448, 512, [], "f27e", "M0 32v448h448V32H0zm316.5 325.2L224 445.9l-92.5-88.7 64.5-184-64.5-86.6h184.9L252 173.2l64.5 184z"] }; +var faBlackberry = { prefix: 'fab', iconName: 'blackberry', icon: [512, 512, [], "f37b", "M166 116.9c0 23.4-16.4 49.1-72.5 49.1H23.4l21-88.8h67.8c42.1 0 53.8 23.3 53.8 39.7zm126.2-39.7h-67.8L205.7 166h70.1c53.8 0 70.1-25.7 70.1-49.1.1-16.4-11.6-39.7-53.7-39.7zM88.8 208.1H21L0 296.9h70.1c56.1 0 72.5-23.4 72.5-49.1 0-16.3-11.7-39.7-53.8-39.7zm180.1 0h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 0-16.3-11.7-39.7-53.7-39.7zm189.3-53.8h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7zm-28 137.9h-67.8L343.7 381h70.1c56.1 0 70.1-23.4 70.1-49.1 0-16.3-11.6-39.7-53.7-39.7zM240.8 346H173l-18.7 88.8h70.1c56.1 0 70.1-25.7 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7z"] }; +var faBlogger = { prefix: 'fab', iconName: 'blogger', icon: [448, 512, [], "f37c", "M162.4 196c4.8-4.9 6.2-5.1 36.4-5.1 27.2 0 28.1.1 32.1 2.1 5.8 2.9 8.3 7 8.3 13.6 0 5.9-2.4 10-7.6 13.4-2.8 1.8-4.5 1.9-31.1 2.1-16.4.1-29.5-.2-31.5-.8-10.3-2.9-14.1-17.7-6.6-25.3zm61.4 94.5c-53.9 0-55.8.2-60.2 4.1-3.5 3.1-5.7 9.4-5.1 13.9.7 4.7 4.8 10.1 9.2 12 2.2 1 14.1 1.7 56.3 1.2l47.9-.6 9.2-1.5c9-5.1 10.5-17.4 3.1-24.4-5.3-4.7-5-4.7-60.4-4.7zm223.4 130.1c-3.5 28.4-23 50.4-51.1 57.5-7.2 1.8-9.7 1.9-172.9 1.8-157.8 0-165.9-.1-172-1.8-8.4-2.2-15.6-5.5-22.3-10-5.6-3.8-13.9-11.8-17-16.4-3.8-5.6-8.2-15.3-10-22C.1 423 0 420.3 0 256.3 0 93.2 0 89.7 1.8 82.6 8.1 57.9 27.7 39 53 33.4c7.3-1.6 332.1-1.9 340-.3 21.2 4.3 37.9 17.1 47.6 36.4 7.7 15.3 7-1.5 7.3 180.6.2 115.8 0 164.5-.7 170.5zm-85.4-185.2c-1.1-5-4.2-9.6-7.7-11.5-1.1-.6-8-1.3-15.5-1.7-12.4-.6-13.8-.8-17.8-3.1-6.2-3.6-7.9-7.6-8-18.3 0-20.4-8.5-39.4-25.3-56.5-12-12.2-25.3-20.5-40.6-25.1-3.6-1.1-11.8-1.5-39.2-1.8-42.9-.5-52.5.4-67.1 6.2-27 10.7-46.3 33.4-53.4 62.4-1.3 5.4-1.6 14.2-1.9 64.3-.4 62.8 0 72.1 4 84.5 9.7 30.7 37.1 53.4 64.6 58.4 9.2 1.7 122.2 2.1 133.7.5 20.1-2.7 35.9-10.8 50.7-25.9 10.7-10.9 17.4-22.8 21.8-38.5 3.2-10.9 2.9-88.4 1.7-93.9z"] }; +var faBloggerB = { prefix: 'fab', iconName: 'blogger-b', icon: [448, 512, [], "f37d", "M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z"] }; +var faBluetooth = { prefix: 'fab', iconName: 'bluetooth', icon: [448, 512, [], "f293", "M292.6 171.1L249.7 214l-.3-86 43.2 43.1m-43.2 219.8l43.1-43.1-42.9-42.9-.2 86zM416 259.4C416 465 344.1 512 230.9 512S32 465 32 259.4 115.4 0 228.6 0 416 53.9 416 259.4zm-158.5 0l79.4-88.6L211.8 36.5v176.9L138 139.6l-27 26.9 92.7 93-92.7 93 26.9 26.9 73.8-73.8 2.3 170 127.4-127.5-83.9-88.7z"] }; +var faBluetoothB = { prefix: 'fab', iconName: 'bluetooth-b', icon: [320, 512, [], "f294", "M196.48 260.023l92.626-103.333L143.125 0v206.33l-86.111-86.111-31.406 31.405 108.061 108.399L25.608 368.422l31.406 31.405 86.111-86.111L145.84 512l148.552-148.644-97.912-103.333zm40.86-102.996l-49.977 49.978-.338-100.295 50.315 50.317zM187.363 313.04l49.977 49.978-50.315 50.316.338-100.294z"] }; +var faBtc = { prefix: 'fab', iconName: 'btc', icon: [384, 512, [], "f15a", "M310.204 242.638c27.73-14.18 45.377-39.39 41.28-81.3-5.358-57.351-52.458-76.573-114.85-81.929V0h-48.528v77.203c-12.605 0-25.525.315-38.444.63V0h-48.528v79.409c-17.842.539-38.622.276-97.37 0v51.678c38.314-.678 58.417-3.14 63.023 21.427v217.429c-2.925 19.492-18.524 16.685-53.255 16.071L3.765 443.68c88.481 0 97.37.315 97.37.315V512h48.528v-67.06c13.234.315 26.154.315 38.444.315V512h48.528v-68.005c81.299-4.412 135.647-24.894 142.895-101.467 5.671-61.446-23.32-88.862-69.326-99.89zM150.608 134.553c27.415 0 113.126-8.507 113.126 48.528 0 54.515-85.71 48.212-113.126 48.212v-96.74zm0 251.776V279.821c32.772 0 133.127-9.138 133.127 53.255-.001 60.186-100.355 53.253-133.127 53.253z"] }; +var faBuromobelexperte = { prefix: 'fab', iconName: 'buromobelexperte', icon: [448, 512, [], "f37f", "M0 32v128h128V32H0zm120 120H8V40h112v112zm40-120v128h128V32H160zm120 120H168V40h112v112zm40-120v128h128V32H320zm120 120H328V40h112v112zM0 192v128h128V192H0zm120 120H8V200h112v112zm40-120v128h128V192H160zm120 120H168V200h112v112zm40-120v128h128V192H320zm120 120H328V200h112v112zM0 352v128h128V352H0zm120 120H8V360h112v112zm40-120v128h128V352H160zm120 120H168V360h112v112zm40-120v128h128V352H320z"] }; +var faBuysellads = { prefix: 'fab', iconName: 'buysellads', icon: [448, 512, [], "f20d", "M224 150.7l42.9 160.7h-85.8L224 150.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-65.3 325.3l-94.5-298.7H159.8L65.3 405.3H156l111.7-91.6 24.2 91.6h90.8z"] }; +var faCcAmazonPay = { prefix: 'fab', iconName: 'cc-amazon-pay', icon: [576, 512, [], "f42d", "M124.7 201.8c.1-11.8 0-23.5 0-35.3v-35.3c0-1.3.4-2 1.4-2.7 11.5-8 24.1-12.1 38.2-11.1 12.5.9 22.7 7 28.1 21.7 3.3 8.9 4.1 18.2 4.1 27.7 0 8.7-.7 17.3-3.4 25.6-5.7 17.8-18.7 24.7-35.7 23.9-11.7-.5-21.9-5-31.4-11.7-.9-.8-1.4-1.6-1.3-2.8zm154.9 14.6c4.6 1.8 9.3 2 14.1 1.5 11.6-1.2 21.9-5.7 31.3-12.5.9-.6 1.3-1.3 1.3-2.5-.1-3.9 0-7.9 0-11.8 0-4-.1-8 0-12 0-1.4-.4-2-1.8-2.2-7-.9-13.9-2.2-20.9-2.9-7-.6-14-.3-20.8 1.9-6.7 2.2-11.7 6.2-13.7 13.1-1.6 5.4-1.6 10.8.1 16.2 1.6 5.5 5.2 9.2 10.4 11.2zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zm-207.5 23.9c.4 1.7.9 3.4 1.6 5.1 16.5 40.6 32.9 81.3 49.5 121.9 1.4 3.5 1.7 6.4.2 9.9-2.8 6.2-4.9 12.6-7.8 18.7-2.6 5.5-6.7 9.5-12.7 11.2-4.2 1.1-8.5 1.3-12.9.9-2.1-.2-4.2-.7-6.3-.8-2.8-.2-4.2 1.1-4.3 4-.1 2.8-.1 5.6 0 8.3.1 4.6 1.6 6.7 6.2 7.5 4.7.8 9.4 1.6 14.2 1.7 14.3.3 25.7-5.4 33.1-17.9 2.9-4.9 5.6-10.1 7.7-15.4 19.8-50.1 39.5-100.3 59.2-150.5.6-1.5 1.1-3 1.3-4.6.4-2.4-.7-3.6-3.1-3.7-5.6-.1-11.1 0-16.7 0-3.1 0-5.3 1.4-6.4 4.3-.4 1.1-.9 2.3-1.3 3.4l-29.1 83.7c-2.1 6.1-4.2 12.1-6.5 18.6-.4-.9-.6-1.4-.8-1.9-10.8-29.9-21.6-59.9-32.4-89.8-1.7-4.7-3.5-9.5-5.3-14.2-.9-2.5-2.7-4-5.4-4-6.4-.1-12.8-.2-19.2-.1-2.2 0-3.3 1.6-2.8 3.7zM242.4 206c1.7 11.7 7.6 20.8 18 26.6 9.9 5.5 20.7 6.2 31.7 4.6 12.7-1.9 23.9-7.3 33.8-15.5.4-.3.8-.6 1.4-1 .5 3.2.9 6.2 1.5 9.2.5 2.6 2.1 4.3 4.5 4.4 4.6.1 9.1.1 13.7 0 2.3-.1 3.8-1.6 4-3.9.1-.8.1-1.6.1-2.3v-88.8c0-3.6-.2-7.2-.7-10.8-1.6-10.8-6.2-19.7-15.9-25.4-5.6-3.3-11.8-5-18.2-5.9-3-.4-6-.7-9.1-1.1h-10c-.8.1-1.6.3-2.5.3-8.2.4-16.3 1.4-24.2 3.5-5.1 1.3-10 3.2-15 4.9-3 1-4.5 3.2-4.4 6.5.1 2.8-.1 5.6 0 8.3.1 4.1 1.8 5.2 5.7 4.1 6.5-1.7 13.1-3.5 19.7-4.8 10.3-1.9 20.7-2.7 31.1-1.2 5.4.8 10.5 2.4 14.1 7 3.1 4 4.2 8.8 4.4 13.7.3 6.9.2 13.9.3 20.8 0 .4-.1.7-.2 1.2-.4 0-.8 0-1.1-.1-8.8-2.1-17.7-3.6-26.8-4.1-9.5-.5-18.9.1-27.9 3.2-10.8 3.8-19.5 10.3-24.6 20.8-4.1 8.3-4.6 17-3.4 25.8zM98.7 106.9v175.3c0 .8 0 1.7.1 2.5.2 2.5 1.7 4.1 4.1 4.2 5.9.1 11.8.1 17.7 0 2.5 0 4-1.7 4.1-4.1.1-.8.1-1.7.1-2.5v-60.7c.9.7 1.4 1.2 1.9 1.6 15 12.5 32.2 16.6 51.1 12.9 17.1-3.4 28.9-13.9 36.7-29.2 5.8-11.6 8.3-24.1 8.7-37 .5-14.3-1-28.4-6.8-41.7-7.1-16.4-18.9-27.3-36.7-30.9-2.7-.6-5.5-.8-8.2-1.2h-7c-1.2.2-2.4.3-3.6.5-11.7 1.4-22.3 5.8-31.8 12.7-2 1.4-3.9 3-5.9 4.5-.1-.5-.3-.8-.4-1.2-.4-2.3-.7-4.6-1.1-6.9-.6-3.9-2.5-5.5-6.4-5.6h-9.7c-5.9-.1-6.9 1-6.9 6.8zM493.6 339c-2.7-.7-5.1 0-7.6 1-43.9 18.4-89.5 30.2-136.8 35.8-14.5 1.7-29.1 2.8-43.7 3.2-26.6.7-53.2-.8-79.6-4.3-17.8-2.4-35.5-5.7-53-9.9-37-8.9-72.7-21.7-106.7-38.8-8.8-4.4-17.4-9.3-26.1-14-3.8-2.1-6.2-1.5-8.2 2.1v1.7c1.2 1.6 2.2 3.4 3.7 4.8 36 32.2 76.6 56.5 122 72.9 21.9 7.9 44.4 13.7 67.3 17.5 14 2.3 28 3.8 42.2 4.5 3 .1 6 .2 9 .4.7 0 1.4.2 2.1.3h17.7c.7-.1 1.4-.3 2.1-.3 14.9-.4 29.8-1.8 44.6-4 21.4-3.2 42.4-8.1 62.9-14.7 29.6-9.6 57.7-22.4 83.4-40.1 2.8-1.9 5.7-3.8 8-6.2 4.3-4.4 2.3-10.4-3.3-11.9zm50.4-27.7c-.8-4.2-4-5.8-7.6-7-5.7-1.9-11.6-2.8-17.6-3.3-11-.9-22-.4-32.8 1.6-12 2.2-23.4 6.1-33.5 13.1-1.2.8-2.4 1.8-3.1 3-.6.9-.7 2.3-.5 3.4.3 1.3 1.7 1.6 3 1.5.6 0 1.2 0 1.8-.1l19.5-2.1c9.6-.9 19.2-1.5 28.8-.8 4.1.3 8.1 1.2 12 2.2 4.3 1.1 6.2 4.4 6.4 8.7.3 6.7-1.2 13.1-2.9 19.5-3.5 12.9-8.3 25.4-13.3 37.8-.3.8-.7 1.7-.8 2.5-.4 2.5 1 4 3.4 3.5 1.4-.3 3-1.1 4-2.1 3.7-3.6 7.5-7.2 10.6-11.2 10.7-13.8 17-29.6 20.7-46.6.7-3 1.2-6.1 1.7-9.1.2-4.7.2-9.6.2-14.5z"] }; +var faCcAmex = { prefix: 'fab', iconName: 'cc-amex', icon: [576, 512, [], "f1f3", "M576 255.4c-37.9-.2-44.2-.9-54.5 5v-5c-45.3 0-53.5-1.7-64.9 5.2v-5.2h-78.2v5.1c-11.4-6.5-21.4-5.1-75.7-5.1v5.6c-6.3-3.7-14.5-5.6-24.3-5.6h-58c-3.5 3.8-12.5 13.7-15.7 17.2-12.7-14.1-10.5-11.6-15.5-17.2h-83.1v92.3h82c3.3-3.5 12.9-13.9 16.1-17.4 12.7 14.3 10.3 11.7 15.4 17.4h48.9c0-14.7.1-8.3.1-23 11.5.2 24.3-.2 34.3-6.2 0 13.9-.1 17.1-.1 29.2h39.6c0-18.5.1-7.4.1-25.3 6.2 0 7.7 0 9.4.1.1 1.3 0 0 0 25.2 152.8 0 145.9 1.1 156.7-4.5v4.5c34.8 0 54.8 2.2 67.5-6.1V432c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V228.3h26.6c4.2-10.1 2.2-5.3 6.4-15.3h19.2c4.2 10 2.2 5.2 6.4 15.3h52.9v-11.4c2.2 5 1.1 2.5 5.1 11.4h29.5c2.4-5.5 2.6-5.8 5.1-11.4v11.4h135.5v-25.1c6.4 0 8-.1 9.8.2 0 0-.2 10.9.1 24.8h66.5v-8.9c7.4 5.9 17.4 8.9 29.7 8.9h26.8c4.2-10.1 2.2-5.3 6.4-15.3h19c6.5 15 .2.5 6.6 15.3h52.8v-21.9c11.8 19.7 7.8 12.9 13.2 21.9h41.6v-92h-39.9v18.4c-12.2-20.2-6.3-10.4-11.2-18.4h-43.3v20.6c-6.2-14.6-4.6-10.8-8.8-20.6h-32.4c-.4 0-2.3.2-2.3-.3h-27.6c-12.8 0-23.1 3.2-30.7 9.3v-9.3h-39.9v5.3c-10.8-6.1-20.7-5.1-64.4-5.3-.1 0-11.6-.1-11.6 0h-103c-2.5 6.1-6.8 16.4-12.6 30-2.8-6-11-23.8-13.9-30h-46V157c-7.4-17.4-4.7-11-9-21.1H22.9c-3.4 7.9-13.7 32-23.1 53.9V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48v175.4zm-186.6-80.6c-.3.2-1.4 2.2-1.4 7.6 0 6 .9 7.7 1.1 7.9.2.1 1.1.5 3.4.5l7.3-16.9c-1.1 0-2.1-.1-3.1-.1-5.6 0-7 .7-7.3 1zm-19.9 130.9c9.2 3.3 11 9.5 11 18.4l-.1 13.8h-16.6l.1-11.5c0-11.8-3.8-13.8-14.8-13.8h-17.6l-.1 25.3h-16.6l.1-69.3h39.4c13 0 27.1 2.3 27.1 18.7-.1 7.6-4.2 15.3-11.9 18.4zm-6.3-15.4c0-6.4-5.6-7.4-10.7-7.4h-21v15.6h20.7c5.6 0 11-1.3 11-8.2zm181.7-7.1H575v-14.6h-32.9c-12.8 0-23.8 6.6-23.8 20.7 0 33 42.7 12.8 42.7 27.4 0 5.1-4.3 6.4-8.4 6.4h-32l-.1 14.8h32c8.4 0 17.6-1.8 22.5-8.9v-25.8c-10.5-13.8-39.3-1.3-39.3-13.5 0-5.8 4.6-6.5 9.2-6.5zm-99.2-.3v-14.3h-55.2l-.1 69.3h55.2l.1-14.3-38.6-.3v-13.8H445v-14.1h-37.8v-12.5h38.5zm42.2 40.1h-32.2l-.1 14.8h32.2c14.8 0 26.2-5.6 26.2-22 0-33.2-42.9-11.2-42.9-26.3 0-5.6 4.9-6.4 9.2-6.4h30.4v-14.6h-33.2c-12.8 0-23.5 6.6-23.5 20.7 0 33 42.7 12.5 42.7 27.4-.1 5.4-4.7 6.4-8.8 6.4zm-78.1-158.7c-17.4-.3-33.2-4.1-33.2 19.7 0 11.8 2.8 19.9 16.1 19.9h7.4l23.5-54.5h24.8l27.9 65.4v-65.4h25.3l29.1 48.1v-48.1h16.9v69H524l-31.2-51.9v51.9h-33.7l-6.6-15.3h-34.3l-6.4 15.3h-19.2c-22.8 0-33-11.8-33-34 0-23.3 10.5-35.3 34-35.3h16.1v15.2zm14.3 24.5h22.8l-11.2-27.6-11.6 27.6zm-72.6-39.6h-16.9v69.3h16.9v-69.3zm-38.1 37.3c9.5 3.3 11 9.2 11 18.4v13.5h-16.6c-.3-14.8 3.6-25.1-14.8-25.1h-18v25.1h-16.4v-69.3l39.1.3c13.3 0 27.4 2 27.4 18.4.1 8-4.3 15.7-11.7 18.7zm-6.7-15.3c0-6.4-5.6-7.4-10.7-7.4h-21v15.3h20.7c5.7 0 11-1.3 11-7.9zm-59.5-7.4v-14.6h-55.5v69.3h55.5v-14.3h-38.9v-13.8h37.8v-14.1h-37.8v-12.5h38.9zm-84.6 54.7v-54.2l-24 54.2H124l-24-54.2v54.2H66.2l-6.4-15.3H25.3l-6.4 15.3H1l29.7-69.3h24.5l28.1 65.7v-65.7h27.1l21.7 47 19.7-47h27.6v69.3h-16.8zM53.9 188.8l-11.5-27.6-11.2 27.6h22.7zm253 102.5c0 27.9-30.4 23.3-49.3 23.3l-.1 23.3h-32.2l-20.4-23-21.3 23h-65.4l.1-69.3h66.5l20.5 22.8 21-22.8H279c15.6 0 27.9 5.4 27.9 22.7zm-112.7 11.8l-17.9-20.2h-41.7v12.5h36.3v14.1h-36.3v13.8h40.6l19-20.2zM241 276l-25.3 27.4 25.3 28.1V276zm48.3 15.3c0-6.1-4.6-8.4-10.2-8.4h-21.5v17.6h21.2c5.9 0 10.5-2.8 10.5-9.2z"] }; +var faCcApplePay = { prefix: 'fab', iconName: 'cc-apple-pay', icon: [576, 512, [], "f416", "M302.2 218.4c0 17.2-10.5 27.1-29 27.1h-24.3v-54.2h24.4c18.4 0 28.9 9.8 28.9 27.1zm47.5 62.6c0 8.3 7.2 13.7 18.5 13.7 14.4 0 25.2-9.1 25.2-21.9v-7.7l-23.5 1.5c-13.3.9-20.2 5.8-20.2 14.4zM576 79v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM127.8 197.2c8.4.7 16.8-4.2 22.1-10.4 5.2-6.4 8.6-15 7.7-23.7-7.4.3-16.6 4.9-21.9 11.3-4.8 5.5-8.9 14.4-7.9 22.8zm60.6 74.5c-.2-.2-19.6-7.6-19.8-30-.2-18.7 15.3-27.7 16-28.2-8.8-13-22.4-14.4-27.1-14.7-12.2-.7-22.6 6.9-28.4 6.9-5.9 0-14.7-6.6-24.3-6.4-12.5.2-24.2 7.3-30.5 18.6-13.1 22.6-3.4 56 9.3 74.4 6.2 9.1 13.7 19.1 23.5 18.7 9.3-.4 13-6 24.2-6 11.3 0 14.5 6 24.3 5.9 10.2-.2 16.5-9.1 22.8-18.2 6.9-10.4 9.8-20.4 10-21zm135.4-53.4c0-26.6-18.5-44.8-44.9-44.8h-51.2v136.4h21.2v-46.6h29.3c26.8 0 45.6-18.4 45.6-45zm90 23.7c0-19.7-15.8-32.4-40-32.4-22.5 0-39.1 12.9-39.7 30.5h19.1c1.6-8.4 9.4-13.9 20-13.9 13 0 20.2 6 20.2 17.2v7.5l-26.4 1.6c-24.6 1.5-37.9 11.6-37.9 29.1 0 17.7 13.7 29.4 33.4 29.4 13.3 0 25.6-6.7 31.2-17.4h.4V310h19.6v-68zM516 210.9h-21.5l-24.9 80.6h-.4l-24.9-80.6H422l35.9 99.3-1.9 6c-3.2 10.2-8.5 14.2-17.9 14.2-1.7 0-4.9-.2-6.2-.3v16.4c1.2.4 6.5.5 8.1.5 20.7 0 30.4-7.9 38.9-31.8L516 210.9z"] }; +var faCcDinersClub = { prefix: 'fab', iconName: 'cc-diners-club', icon: [576, 512, [], "f24c", "M239.7 79.9c-96.9 0-175.8 78.6-175.8 175.8 0 96.9 78.9 175.8 175.8 175.8 97.2 0 175.8-78.9 175.8-175.8 0-97.2-78.6-175.8-175.8-175.8zm-39.9 279.6c-41.7-15.9-71.4-56.4-71.4-103.8s29.7-87.9 71.4-104.1v207.9zm79.8.3V151.6c41.7 16.2 71.4 56.7 71.4 104.1s-29.7 87.9-71.4 104.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM329.7 448h-90.3c-106.2 0-193.8-85.5-193.8-190.2C45.6 143.2 133.2 64 239.4 64h90.3c105 0 200.7 79.2 200.7 193.8 0 104.7-95.7 190.2-200.7 190.2z"] }; +var faCcDiscover = { prefix: 'fab', iconName: 'cc-discover', icon: [576, 512, [], "f1f2", "M83 212.1c0 7.9-3.2 15.5-8.9 20.7-4.9 4.4-11.6 6.4-21.9 6.4H48V185h4.2c10.3 0 16.7 1.7 21.9 6.6 5.7 5 8.9 12.6 8.9 20.5zM504.8 184h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8 0-7.9-5.5-12.1-15.6-12.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM428 253h45.3v-13.8H444V217h28.3v-13.8H444V185h29.3v-14H428v82zm-86.2-82l35 84.2h8.6l35.5-84.2h-17.5l-22.2 55.2-21.9-55.2h-17.5zm-83 41.6c0 24.6 19.9 44.6 44.6 44.6 24.6 0 44.6-19.9 44.6-44.6 0-24.6-19.9-44.6-44.6-44.6-24.6 0-44.6 19.9-44.6 44.6zm-68-.5c0 32.5 33.6 52.5 63.3 38.2v-19c-19.3 19.3-46.8 5.8-46.8-19.2 0-23.7 26.7-39.1 46.8-19v-19c-30.2-15-63.3 6.8-63.3 38zm-33.9 28.3c-7.6 0-13.8-3.7-17.5-10.8l-10.3 9.9c17.8 26.1 56.6 18.2 56.6-11.3 0-13.1-5.4-19-23.6-25.6-9.6-3.4-12.3-5.9-12.3-10.3 0-8.7 14.5-14.1 24.9-2.5l8.4-10.8c-19.1-17.1-49.7-8.9-49.7 14.3 0 11.3 5.2 17.2 20.2 22.7 25.7 9.1 14.7 24.4 3.3 24.4zm-57.4-28.3c0-24.1-18-41.1-44.1-41.1H32v82h23.4c30.9 0 44.1-22.4 44.1-40.9zm23.4-41.1h-16v82h16v-82zM544 288c-33.3 20.8-226.4 124.4-416 160h401c8.2 0 15-6.8 15-15V288zm0-35l-25.9-34.5c12.1-2.5 18.7-10.6 18.7-23.2 0-28.5-30.3-24.4-52.9-24.4v82h16v-32.8h2.2l22.2 32.8H544z"] }; +var faCcJcb = { prefix: 'fab', iconName: 'cc-jcb', icon: [576, 512, [], "f24b", "M431.5 244.3V212c41.2 0 38.5.2 38.5.2 7.3 1.3 13.3 7.3 13.3 16 0 8.8-6 14.5-13.3 15.8-1.2.4-3.3.3-38.5.3zm42.8 20.2c-2.8-.7-3.3-.5-42.8-.5v35c39.6 0 40 .2 42.8-.5 7.5-1.5 13.5-8 13.5-17 0-8.7-6-15.5-13.5-17zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM182 192.3h-57c0 67.1 10.7 109.7-35.8 109.7-19.5 0-38.8-5.7-57.2-14.8v28c30 8.3 68 8.3 68 8.3 97.9 0 82-47.7 82-131.2zm178.5 4.5c-63.4-16-165-14.9-165 59.3 0 77.1 108.2 73.6 165 59.2V287C312.9 311.7 253 309 253 256s59.8-55.6 107.5-31.2v-28zM544 286.5c0-18.5-16.5-30.5-38-32v-.8c19.5-2.7 30.3-15.5 30.3-30.2 0-19-15.7-30-37-31 0 0 6.3-.3-120.3-.3v127.5h122.7c24.3.1 42.3-12.9 42.3-33.2z"] }; +var faCcMastercard = { prefix: 'fab', iconName: 'cc-mastercard', icon: [576, 512, [], "f1f1", "M482.9 410.3c0 6.8-4.6 11.7-11.2 11.7-6.8 0-11.2-5.2-11.2-11.7 0-6.5 4.4-11.7 11.2-11.7 6.6 0 11.2 5.2 11.2 11.7zm-310.8-11.7c-7.1 0-11.2 5.2-11.2 11.7 0 6.5 4.1 11.7 11.2 11.7 6.5 0 10.9-4.9 10.9-11.7-.1-6.5-4.4-11.7-10.9-11.7zm117.5-.3c-5.4 0-8.7 3.5-9.5 8.7h19.1c-.9-5.7-4.4-8.7-9.6-8.7zm107.8.3c-6.8 0-10.9 5.2-10.9 11.7 0 6.5 4.1 11.7 10.9 11.7 6.8 0 11.2-4.9 11.2-11.7 0-6.5-4.4-11.7-11.2-11.7zm105.9 26.1c0 .3.3.5.3 1.1 0 .3-.3.5-.3 1.1-.3.3-.3.5-.5.8-.3.3-.5.5-1.1.5-.3.3-.5.3-1.1.3-.3 0-.5 0-1.1-.3-.3 0-.5-.3-.8-.5-.3-.3-.5-.5-.5-.8-.3-.5-.3-.8-.3-1.1 0-.5 0-.8.3-1.1 0-.5.3-.8.5-1.1.3-.3.5-.3.8-.5.5-.3.8-.3 1.1-.3.5 0 .8 0 1.1.3.5.3.8.3 1.1.5s.2.6.5 1.1zm-2.2 1.4c.5 0 .5-.3.8-.3.3-.3.3-.5.3-.8 0-.3 0-.5-.3-.8-.3 0-.5-.3-1.1-.3h-1.6v3.5h.8V426h.3l1.1 1.4h.8l-1.1-1.3zM576 81v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V81c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM64 220.6c0 76.5 62.1 138.5 138.5 138.5 27.2 0 53.9-8.2 76.5-23.1-72.9-59.3-72.4-171.2 0-230.5-22.6-15-49.3-23.1-76.5-23.1-76.4-.1-138.5 62-138.5 138.2zm224 108.8c70.5-55 70.2-162.2 0-217.5-70.2 55.3-70.5 162.6 0 217.5zm-142.3 76.3c0-8.7-5.7-14.4-14.7-14.7-4.6 0-9.5 1.4-12.8 6.5-2.4-4.1-6.5-6.5-12.2-6.5-3.8 0-7.6 1.4-10.6 5.4V392h-8.2v36.7h8.2c0-18.9-2.5-30.2 9-30.2 10.2 0 8.2 10.2 8.2 30.2h7.9c0-18.3-2.5-30.2 9-30.2 10.2 0 8.2 10 8.2 30.2h8.2v-23zm44.9-13.7h-7.9v4.4c-2.7-3.3-6.5-5.4-11.7-5.4-10.3 0-18.2 8.2-18.2 19.3 0 11.2 7.9 19.3 18.2 19.3 5.2 0 9-1.9 11.7-5.4v4.6h7.9V392zm40.5 25.6c0-15-22.9-8.2-22.9-15.2 0-5.7 11.9-4.8 18.5-1.1l3.3-6.5c-9.4-6.1-30.2-6-30.2 8.2 0 14.3 22.9 8.3 22.9 15 0 6.3-13.5 5.8-20.7.8l-3.5 6.3c11.2 7.6 32.6 6 32.6-7.5zm35.4 9.3l-2.2-6.8c-3.8 2.1-12.2 4.4-12.2-4.1v-16.6h13.1V392h-13.1v-11.2h-8.2V392h-7.6v7.3h7.6V416c0 17.6 17.3 14.4 22.6 10.9zm13.3-13.4h27.5c0-16.2-7.4-22.6-17.4-22.6-10.6 0-18.2 7.9-18.2 19.3 0 20.5 22.6 23.9 33.8 14.2l-3.8-6c-7.8 6.4-19.6 5.8-21.9-4.9zm59.1-21.5c-4.6-2-11.6-1.8-15.2 4.4V392h-8.2v36.7h8.2V408c0-11.6 9.5-10.1 12.8-8.4l2.4-7.6zm10.6 18.3c0-11.4 11.6-15.1 20.7-8.4l3.8-6.5c-11.6-9.1-32.7-4.1-32.7 15 0 19.8 22.4 23.8 32.7 15l-3.8-6.5c-9.2 6.5-20.7 2.6-20.7-8.6zm66.7-18.3H408v4.4c-8.3-11-29.9-4.8-29.9 13.9 0 19.2 22.4 24.7 29.9 13.9v4.6h8.2V392zm33.7 0c-2.4-1.2-11-2.9-15.2 4.4V392h-7.9v36.7h7.9V408c0-11 9-10.3 12.8-8.4l2.4-7.6zm40.3-14.9h-7.9v19.3c-8.2-10.9-29.9-5.1-29.9 13.9 0 19.4 22.5 24.6 29.9 13.9v4.6h7.9v-51.7zm7.6-75.1v4.6h.8V302h1.9v-.8h-4.6v.8h1.9zm6.6 123.8c0-.5 0-1.1-.3-1.6-.3-.3-.5-.8-.8-1.1-.3-.3-.8-.5-1.1-.8-.5 0-1.1-.3-1.6-.3-.3 0-.8.3-1.4.3-.5.3-.8.5-1.1.8-.5.3-.8.8-.8 1.1-.3.5-.3 1.1-.3 1.6 0 .3 0 .8.3 1.4 0 .3.3.8.8 1.1.3.3.5.5 1.1.8.5.3 1.1.3 1.4.3.5 0 1.1 0 1.6-.3.3-.3.8-.5 1.1-.8.3-.3.5-.8.8-1.1.3-.6.3-1.1.3-1.4zm3.2-124.7h-1.4l-1.6 3.5-1.6-3.5h-1.4v5.4h.8v-4.1l1.6 3.5h1.1l1.4-3.5v4.1h1.1v-5.4zm4.4-80.5c0-76.2-62.1-138.3-138.5-138.3-27.2 0-53.9 8.2-76.5 23.1 72.1 59.3 73.2 171.5 0 230.5 22.6 15 49.5 23.1 76.5 23.1 76.4.1 138.5-61.9 138.5-138.4z"] }; +var faCcPaypal = { prefix: 'fab', iconName: 'cc-paypal', icon: [576, 512, [], "f1f4", "M186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5z"] }; +var faCcStripe = { prefix: 'fab', iconName: 'cc-stripe', icon: [576, 512, [], "f1f5", "M396.9 256.5c0 19.1-8.8 33.4-21.9 33.4-8.3 0-13.3-3-16.8-6.7l-.2-52.8c3.7-4.1 8.8-7 17-7 12.9-.1 21.9 14.5 21.9 33.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM122.2 281.1c0-42.3-54.3-34.7-54.3-50.7 0-5.5 4.6-7.7 12.1-7.7 10.8 0 24.5 3.3 35.3 9.1v-33.4c-11.8-4.7-23.5-6.5-35.3-6.5-28.8 0-48 15-48 40.2 0 39.3 54 32.9 54 49.9 0 6.6-5.7 8.7-13.6 8.7-11.8 0-26.9-4.9-38.9-11.3v33.9c13.2 5.7 26.6 8.1 38.8 8.1 29.6-.2 49.9-14.7 49.9-40.3zm68.9-86.9h-27v-30.8l-34.7 7.4-.2 113.9c0 21 15.8 36.5 36.9 36.5 11.6 0 20.2-2.1 24.9-4.7v-28.9c-4.5 1.8-27 8.3-27-12.6v-50.5h27v-30.3zm73.8 0c-4.7-1.7-21.3-4.8-29.6 10.5l-2.2-10.5h-30.7v124.5h35.5v-84.4c8.4-11 22.6-8.9 27.1-7.4v-32.7zm44.2 0h-35.7v124.5h35.7V194.2zm0-47.3l-35.7 7.6v28.9l35.7-7.6v-28.9zm122.7 108.8c0-41.3-23.5-63.8-48.4-63.8-13.9 0-22.9 6.6-27.8 11.1l-1.8-8.8h-31.3V360l35.5-7.5.1-40.2c5.1 3.7 12.7 9 25.1 9 25.4-.1 48.6-20.5 48.6-65.6zm112.2 1.2c0-36.4-17.6-65.1-51.3-65.1-33.8 0-54.3 28.7-54.3 64.9 0 42.8 24.2 64.5 58.8 64.5 17 0 29.7-3.9 39.4-9.2v-28.6c-9.7 4.9-20.8 7.9-34.9 7.9-13.8 0-26-4.9-27.6-21.5h69.5c.1-2 .4-9.4.4-12.9zm-51.6-36.1c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7z"] }; +var faCcVisa = { prefix: 'fab', iconName: 'cc-visa', icon: [576, 512, [], "f1f0", "M470.1 231.3s7.6 37.2 9.3 45H446c3.3-8.9 16-43.5 16-43.5-.2.3 3.3-9.1 5.3-14.9l2.8 13.4zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM152.5 331.2L215.7 176h-42.5l-39.3 106-4.3-21.5-14-71.4c-2.3-9.9-9.4-12.7-18.2-13.1H32.7l-.7 3.1c15.8 4 29.9 9.8 42.2 17.1l35.8 135h42.5zm94.4.2L272.1 176h-40.2l-25.1 155.4h40.1zm139.9-50.8c.2-17.7-10.6-31.2-33.7-42.3-14.1-7.1-22.7-11.9-22.7-19.2.2-6.6 7.3-13.4 23.1-13.4 13.1-.3 22.7 2.8 29.9 5.9l3.6 1.7 5.5-33.6c-7.9-3.1-20.5-6.6-36-6.6-39.7 0-67.6 21.2-67.8 51.4-.3 22.3 20 34.7 35.2 42.2 15.5 7.6 20.8 12.6 20.8 19.3-.2 10.4-12.6 15.2-24.1 15.2-16 0-24.6-2.5-37.7-8.3l-5.3-2.5-5.6 34.9c9.4 4.3 26.8 8.1 44.8 8.3 42.2.1 69.7-20.8 70-53zM528 331.4L495.6 176h-31.1c-9.6 0-16.9 2.8-21 12.9l-59.7 142.5H426s6.9-19.2 8.4-23.3H486c1.2 5.5 4.8 23.3 4.8 23.3H528z"] }; +var faCentercode = { prefix: 'fab', iconName: 'centercode', icon: [512, 512, [], "f380", "M329.2 268.6c-3.8 35.2-35.4 60.6-70.6 56.8-35.2-3.8-60.6-35.4-56.8-70.6 3.8-35.2 35.4-60.6 70.6-56.8 35.1 3.8 60.6 35.4 56.8 70.6zm-85.8 235.1C96.7 496-8.2 365.5 10.1 224.3c11.2-86.6 65.8-156.9 139.1-192 161-77.1 349.7 37.4 354.7 216.6 4.1 147-118.4 262.2-260.5 254.8zm179.9-180c27.9-118-160.5-205.9-237.2-234.2-57.5 56.3-69.1 188.6-33.8 344.4 68.8 15.8 169.1-26.4 271-110.2z"] }; +var faChrome = { prefix: 'fab', iconName: 'chrome', icon: [496, 512, [], "f268", "M131.5 217.5L55.1 100.1c47.6-59.2 119-91.8 192-92.1 42.3-.3 85.5 10.5 124.8 33.2 43.4 25.2 76.4 61.4 97.4 103L264 133.4c-58.1-3.4-113.4 29.3-132.5 84.1zm32.9 38.5c0 46.2 37.4 83.6 83.6 83.6s83.6-37.4 83.6-83.6-37.4-83.6-83.6-83.6-83.6 37.3-83.6 83.6zm314.9-89.2L339.6 174c37.9 44.3 38.5 108.2 6.6 157.2L234.1 503.6c46.5 2.5 94.4-7.7 137.8-32.9 107.4-62 150.9-192 107.4-303.9zM133.7 303.6L40.4 120.1C14.9 159.1 0 205.9 0 256c0 124 90.8 226.7 209.5 244.9l63.7-124.8c-57.6 10.8-113.2-20.8-139.5-72.5z"] }; +var faCloudscale = { prefix: 'fab', iconName: 'cloudscale', icon: [448, 512, [], "f383", "M318.1 154l-9.4 7.6c-22.5-19.3-51.5-33.6-83.3-33.6C153.8 128 96 188.8 96 260.3c0 6.6.4 13.1 1.4 19.4-2-56 41.8-97.4 92.6-97.4 24.2 0 46.2 9.4 62.6 24.7l-25.2 20.4c-8.3-.9-16.8 1.8-23.1 8.1-11.1 11-11.1 28.9 0 40 11.1 11 28.9 11 40 0 6.3-6.3 9-14.9 8.1-23.1l75.2-88.8c6.3-6.5-3.3-15.9-9.5-9.6zm-83.8 111.5c-5.6 5.5-14.6 5.5-20.2 0-5.6-5.6-5.6-14.6 0-20.2s14.6-5.6 20.2 0 5.6 14.7 0 20.2zM224 32C100.5 32 0 132.5 0 256s100.5 224 224 224 224-100.5 224-224S347.5 32 224 32zm0 384c-88.2 0-160-71.8-160-160S135.8 96 224 96s160 71.8 160 160-71.8 160-160 160z"] }; +var faCloudsmith = { prefix: 'fab', iconName: 'cloudsmith', icon: [332, 512, [], "f384", "M332.5 419.9c0 46.4-37.6 84.1-84 84.1s-84-37.7-84-84.1 37.6-84 84-84 84 37.6 84 84zm-84-243.9c46.4 0 80-37.6 80-84s-33.6-84-80-84-88 37.6-88 84-29.6 76-76 76-84 41.6-84 88 37.6 80 84 80 84-33.6 84-80 33.6-80 80-80z"] }; +var faCloudversify = { prefix: 'fab', iconName: 'cloudversify', icon: [616, 512, [], "f385", "M148.6 304c8.2 68.5 67.4 115.5 146 111.3 51.2 43.3 136.8 45.8 186.4-5.6 69.2 1.1 118.5-44.6 131.5-99.5 14.8-62.5-18.2-132.5-92.1-155.1-33-88.1-131.4-101.5-186.5-85-57.3 17.3-84.3 53.2-99.3 109.7-7.8 2.7-26.5 8.9-45 24.1 11.7 0 15.2 8.9 15.2 19.5v20.4c0 10.7-8.7 19.5-19.5 19.5h-20.2c-10.7 0-19.5-6-19.5-16.7V240H98.8C95 240 88 244.3 88 251.9v40.4c0 6.4 5.3 11.8 11.7 11.8h48.9zm227.4 8c-10.7 46.3 21.7 72.4 55.3 86.8C324.1 432.6 259.7 348 296 288c-33.2 21.6-33.7 71.2-29.2 92.9-17.9-12.4-53.8-32.4-57.4-79.8-3-39.9 21.5-75.7 57-93.9C297 191.4 369.9 198.7 400 248c-14.1-48-53.8-70.1-101.8-74.8 30.9-30.7 64.4-50.3 114.2-43.7 69.8 9.3 133.2 82.8 67.7 150.5 35-16.3 48.7-54.4 47.5-76.9l10.5 19.6c11.8 22 15.2 47.6 9.4 72-9.2 39-40.6 68.8-79.7 76.5-32.1 6.3-83.1-5.1-91.8-59.2zM128 208H88.2c-8.9 0-16.2-7.3-16.2-16.2v-39.6c0-8.9 7.3-16.2 16.2-16.2H128c8.9 0 16.2 7.3 16.2 16.2v39.6c0 8.9-7.3 16.2-16.2 16.2zM10.1 168C4.5 168 0 163.5 0 157.9v-27.8c0-5.6 4.5-10.1 10.1-10.1h27.7c5.5 0 10.1 4.5 10.1 10.1v27.8c0 5.6-4.5 10.1-10.1 10.1H10.1zM168 142.7v-21.4c0-5.1 4.2-9.3 9.3-9.3h21.4c5.1 0 9.3 4.2 9.3 9.3v21.4c0 5.1-4.2 9.3-9.3 9.3h-21.4c-5.1 0-9.3-4.2-9.3-9.3zM56 235.5v25c0 6.3-5.1 11.5-11.4 11.5H19.4C13.1 272 8 266.8 8 260.5v-25c0-6.3 5.1-11.5 11.4-11.5h25.1c6.4 0 11.5 5.2 11.5 11.5z"] }; +var faCodepen = { prefix: 'fab', iconName: 'codepen', icon: [512, 512, [], "f1cb", "M502.285 159.704l-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285zM278 63.131l172.286 114.858-76.857 51.429L278 165.703V63.131zm-44 0v102.572l-95.429 63.715-76.857-51.429L234 63.131zM44 219.132l55.143 36.857L44 292.846v-73.714zm190 229.715L61.714 333.989l76.857-51.429L234 346.275v102.572zm22-140.858l-77.715-52 77.715-52 77.715 52-77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429L278 448.847zm190-156.001l-55.143-36.857L468 219.132v73.714z"] }; +var faCodiepie = { prefix: 'fab', iconName: 'codiepie', icon: [472, 512, [], "f284", "M422.5 202.9c30.7 0 33.5 53.1-.3 53.1h-10.8v44.3h-26.6v-97.4h37.7zM472 352.6C429.9 444.5 350.4 504 248 504 111 504 0 393 0 256S111 8 248 8c97.4 0 172.8 53.7 218.2 138.4l-186 108.8L472 352.6zm-38.5 12.5l-60.3-30.7c-27.1 44.3-70.4 71.4-122.4 71.4-82.5 0-149.2-66.7-149.2-148.9 0-82.5 66.7-149.2 149.2-149.2 48.4 0 88.9 23.5 116.9 63.4l59.5-34.6c-40.7-62.6-104.7-100-179.2-100-121.2 0-219.5 98.3-219.5 219.5S126.8 475.5 248 475.5c78.6 0 146.5-42.1 185.5-110.4z"] }; +var faConnectdevelop = { prefix: 'fab', iconName: 'connectdevelop', icon: [576, 512, [], "f20e", "M550.5 241l-50.089-86.786c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.733-14.732-15.001l-55.447-95.893c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.268-15.268-15.268-4.821 0-8.839 2.143-11.786 5.625H299.518C296.839 18.143 292.821 16 288 16s-8.839 2.143-11.518 5.625H170.411C167.464 18.143 163.447 16 158.625 16c-8.303 0-15.268 6.696-15.268 15.268 0 1.607.536 3.482 1.072 4.821l-55.983 97.233c-5.356 2.41-9.107 7.5-9.107 13.661 0 .535.268 1.071.268 1.607l-53.304 92.143c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.393 12.054 15l55.179 95.358c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.393 12.054 14.732l51.697 89.732c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.268 15.268 15.268 4.821 0 8.839-2.143 11.518-5.357h106.875C279.161 493.857 283.447 496 288 496s8.839-2.143 11.518-5.357h107.143c2.678 2.946 6.696 4.821 10.982 4.821 8.571 0 15.268-6.964 15.268-15.268 0-1.607-.267-2.946-.803-4.285l51.697-90.268c6.964-1.339 12.054-7.5 12.054-14.732 0-1.607-.268-3.214-.804-4.821l54.911-95.358c6.964-1.339 12.322-7.5 12.322-15-.002-7.232-5.092-13.393-11.788-14.732zM153.535 450.732l-43.66-75.803h43.66v75.803zm0-83.839h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.999-47.41v50.624zm0-62.411l-50.357 53.304c-1.339-.536-2.679-1.34-4.018-1.607L43.447 259.75c.535-1.339.535-2.679.535-4.018s0-2.41-.268-3.482l51.965-90c2.679-.268 5.357-1.072 7.768-2.679l50.089 51.965v92.946zm0-102.322l-45.803-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.928-15.804v72.053zm0-80.625l-43.66 15.804 43.66-75.536v59.732zm326.519 39.108l.804 1.339L445.5 329.125l-63.75-67.232 98.036-101.518.268.268zM291.75 355.107l11.518 11.786H280.5l11.25-11.786zm-.268-11.25l-83.303-85.446 79.553-84.375 83.036 87.589-79.286 82.232zm5.357 5.893l79.286-82.232 67.5 71.25-5.892 28.125H313.714l-16.875-17.143zM410.411 44.393c1.071.536 2.142 1.072 3.482 1.34l57.857 100.714v.536c0 2.946.803 5.624 2.143 7.767L376.393 256l-83.035-87.589L410.411 44.393zm-9.107-2.143L287.732 162.518l-57.054-60.268 166.339-60h4.287zm-123.483 0c2.678 2.678 6.16 4.285 10.179 4.285s7.5-1.607 10.179-4.285h75L224.786 95.821 173.893 42.25h103.928zm-116.249 5.625l1.071-2.142a33.834 33.834 0 0 0 2.679-.804l51.161 53.84-54.911 19.821V47.875zm0 79.286l60.803-21.964 59.732 63.214-79.553 84.107-40.982-42.053v-83.304zm0 92.678L198 257.607l-36.428 38.304v-76.072zm0 87.858l42.053-44.464 82.768 85.982-17.143 17.678H161.572v-59.196zm6.964 162.053c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.732h99.91l-91.607 94.821h-1.339zm129.911 0c-2.679-2.41-6.428-4.285-10.447-4.285s-7.767 1.875-10.447 4.285h-96.429l91.607-94.821h38.304l91.607 94.821H298.447zm120-11.786l-4.286 7.5c-1.339.268-2.41.803-3.482 1.339l-89.196-91.875h114.376l-17.412 83.036zm12.856-22.232l12.858-60.803h21.964l-34.822 60.803zm34.822-68.839h-20.357l4.553-21.16 17.143 18.214c-.535.803-1.071 1.874-1.339 2.946zm66.161-107.411l-55.447 96.697c-1.339.535-2.679 1.071-4.018 1.874l-20.625-21.964 34.554-163.928 45.803 79.286c-.267 1.339-.803 2.678-.803 4.285 0 1.339.268 2.411.536 3.75z"] }; +var faContao = { prefix: 'fab', iconName: 'contao', icon: [512, 512, [], "f26d", "M45.4 305c14.4 67.1 26.4 129 68.2 175H34c-18.7 0-34-15.2-34-34V66c0-18.7 15.2-34 34-34h57.7C77.9 44.6 65.6 59.2 54.8 75.6c-45.4 70-27 146.8-9.4 229.4zM478 32h-90.2c21.4 21.4 39.2 49.5 52.7 84.1l-137.1 29.3c-14.9-29-37.8-53.3-82.6-43.9-24.6 5.3-41 19.3-48.3 34.6-8.8 18.7-13.2 39.8 8.2 140.3 21.1 100.2 33.7 117.7 49.5 131.2 12.9 11.1 33.4 17 58.3 11.7 44.5-9.4 55.7-40.7 57.4-73.2l137.4-29.6c3.2 71.5-18.7 125.2-57.4 163.6H478c18.7 0 34-15.2 34-34V66c0-18.8-15.2-34-34-34z"] }; +var faCpanel = { prefix: 'fab', iconName: 'cpanel', icon: [640, 512, [], "f388", "M52.9 213.7h40l-6.2 23.6c-1.9 6.5-7.4 10.9-14.3 10.9H53.8c-24.9 0-24.7 37.4 0 37.4h11.3c4.2 0 7.6 3.9 6.4 8.3L64.4 320H52c-33.5 0-59-31.4-50.3-65.2 7.3-27 28.3-41.1 51.2-41.1M73.1 320L108 189.9c1.8-6.4 7.2-10.9 14.3-10.9h37c24.1 0 45.4 16.4 51 41.2 6.6 29.1-14.5 65.3-51.7 65.3h-32l6.4-23.8c1.8-6.2 7.3-10.8 14.3-10.8h10.3c12.4 0 20.8-11.7 18.3-22.6-2.1-9.2-9.9-14.8-18.3-14.8h-19.8L112 309.2c-1.9 6.2-7.4 10.7-14.2 10.7l-24.7.1m220.6-69.4c.3-1 1.9-5.3-2.1-5.3h-57.5c-9.7 0-16.6-8.9-14.2-18.5l3.5-13.4h77.9c18.8 0 33.3 17.6 28.5 36.8l-14 51.8c-2.8 10.6-12.2 17.8-23.4 17.8l-57.5-.2c-42.9 0-38.5-63.8.7-63.8H284l-3.5 13.2c-1.9 6.2-7.4 10.8-14.2 10.8h-21.6c-5.3 0-5.3 7.9 0 7.9h34.9c4.6 0 5.1-3.9 5.5-5.3l8.6-31.8m103.1-36.9c34.4 0 59.3 32.3 50.3 65.4l-8.8 33.1c-1.2 4.9-5.7 7.8-10.3 7.8h-19.1c-4.5 0-7.6-4-6.4-8.3l10.6-40c3.3-11.6-5.6-23.4-18.1-23.4h-19.8l-17.2 64c-1.2 4.8-5.6 7.8-10.4 7.8h-18.9c-4.2 0-7.6-3.9-6.4-8.3l26.2-98h48.3M498 251.6l-8 30c-.9 3.3 1.5 6.7 5.1 6.7h73.3l-5.7 21c-1.9 6.2-7.4 10.7-14.2 10.7h-66.7c-20 0-33.3-19-28.3-36.7l10.8-40c4.8-17.6 20.7-29.6 38.6-29.6h47.3c19 0 33.2 17.7 28.3 36.8l-3.2 12c-2.9 11-12.7 17.6-23.2 17.6h-53.4l3.5-13c1.6-6.2 7.2-10.8 14.2-10.8H538c2 0 3.3-1 3.9-3l.7-2.6c.7-2.7-1.3-5.1-3.9-5.1h-32.9c-4.1 0-6.9 2.1-7.8 6zm70.2 68.4l35.6-133.1c1.2-4.7 5.5-7.9 10.4-7.9h18.9c4.5 0 7.7 4 6.5 8.3l-26.5 98.2c-5.1 20.7-24.2 34.5-44.9 34.5"] }; +var faCreativeCommons = { prefix: 'fab', iconName: 'creative-commons', icon: [496, 512, [], "f25e", "M245.83 214.87l-33.22 17.28c-9.43-19.58-25.24-19.93-27.46-19.93-22.13 0-33.22 14.61-33.22 43.84 0 23.57 9.21 43.84 33.22 43.84 14.47 0 24.65-7.09 30.57-21.26l30.55 15.5c-6.17 11.51-25.69 38.98-65.1 38.98-22.6 0-73.96-10.32-73.96-77.05 0-58.69 43-77.06 72.63-77.06 30.72-.01 52.7 11.95 65.99 35.86zm143.05 0l-32.78 17.28c-9.5-19.77-25.72-19.93-27.9-19.93-22.14 0-33.22 14.61-33.22 43.84 0 23.55 9.23 43.84 33.22 43.84 14.45 0 24.65-7.09 30.54-21.26l31 15.5c-2.1 3.75-21.39 38.98-65.09 38.98-22.69 0-73.96-9.87-73.96-77.05 0-58.67 42.97-77.06 72.63-77.06 30.71-.01 52.58 11.95 65.56 35.86zM247.56 8.05C104.74 8.05 0 123.11 0 256.05c0 138.49 113.6 248 247.56 248 129.93 0 248.44-100.87 248.44-248 0-137.87-106.62-248-248.44-248zm.87 450.81c-112.54 0-203.7-93.04-203.7-202.81 0-105.42 85.43-203.27 203.72-203.27 112.53 0 202.82 89.46 202.82 203.26-.01 121.69-99.68 202.82-202.84 202.82z"] }; +var faCreativeCommonsBy = { prefix: 'fab', iconName: 'creative-commons-by', icon: [496, 512, [], "f4e7", "M314.9 194.4v101.4h-28.3v120.5h-77.1V295.9h-28.3V194.4c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7H299c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3zm-101.5-63.7c0-23.3 11.5-35 34.5-35s34.5 11.7 34.5 35c0 23-11.5 34.5-34.5 34.5s-34.5-11.5-34.5-34.5zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z"] }; +var faCreativeCommonsNc = { prefix: 'fab', iconName: 'creative-commons-nc', icon: [496, 512, [], "f4e8", "M247.6 8C387.4 8 496 115.9 496 256c0 147.2-118.5 248-248.4 248C113.1 504 0 393.2 0 256 0 123.1 104.7 8 247.6 8zM55.8 189.1c-7.4 20.4-11.1 42.7-11.1 66.9 0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4v38.1h-28.8V368c-27.5-.3-52.6-10.2-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4zM248.4 52.3c-38.4 0-112.4 8.7-170.5 93l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3v-38.1h28.8v38.1c22.7 1.2 43.4 8.9 62 23L295 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8z"] }; +var faCreativeCommonsNcEu = { prefix: 'fab', iconName: 'creative-commons-nc-eu', icon: [496, 512, [], "f4e9", "M247.7 8C103.6 8 0 124.8 0 256c0 136.3 111.7 248 247.7 248C377.9 504 496 403.1 496 256 496 117 388.4 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-23.2 3.7-45.2 10.9-66l65.7 29.1h-4.7v29.5h23.3c0 6.2-.4 3.2-.4 19.5h-22.8v29.5h27c11.4 67 67.2 101.3 124.6 101.3 26.6 0 50.6-7.9 64.8-15.8l-10-46.1c-8.7 4.6-28.2 10.8-47.3 10.8-28.2 0-58.1-10.9-67.3-50.2h90.3l128.3 56.8c-1.5 2.1-56.2 104.3-178.8 104.3zm-16.7-190.6l-.5-.4.9.4h-.4zm77.2-19.5h3.7v-29.5h-70.3l-28.6-12.6c2.5-5.5 5.4-10.5 8.8-14.3 12.9-15.8 31.1-22.4 51.1-22.4 18.3 0 35.3 5.4 46.1 10l11.6-47.3c-15-6.6-37-12.4-62.3-12.4-39 0-72.2 15.8-95.9 42.3-5.3 6.1-9.8 12.9-13.9 20.1l-81.6-36.1c64.6-96.8 157.7-93.6 170.7-93.6 113 0 203 90.2 203 203.4 0 18.7-2.1 36.3-6.3 52.9l-136.1-60.5z"] }; +var faCreativeCommonsNcJp = { prefix: 'fab', iconName: 'creative-commons-nc-jp', icon: [496, 512, [], "f4ea", "M247.7 8C103.6 8 0 124.8 0 256c0 136.4 111.8 248 247.7 248C377.9 504 496 403.2 496 256 496 117.2 388.5 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-21.1 3-41.2 9-60.3l127 56.5h-27.9v38.6h58.1l5.7 11.8v18.7h-63.8V360h63.8v56h61.7v-56h64.2v-35.7l81 36.1c-1.5 2.2-57.1 98.3-175.2 98.3zm87.6-137.3h-57.6v-18.7l2.9-5.6 54.7 24.3zm6.5-51.4v-17.8h-38.6l63-116H301l-43.4 96-23-10.2-39.6-85.7h-65.8l27.3 51-81.9-36.5c27.8-44.1 82.6-98.1 173.7-98.1 112.8 0 203 90 203 203.4 0 21-2.7 40.6-7.9 59l-101-45.1z"] }; +var faCreativeCommonsNd = { prefix: 'fab', iconName: 'creative-commons-nd', icon: [496, 512, [], "f4eb", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm94 144.3v42.5H162.1V197h180.3zm0 79.8v42.5H162.1v-42.5h180.3z"] }; +var faCreativeCommonsPd = { prefix: 'fab', iconName: 'creative-commons-pd', icon: [496, 512, [], "f4ec", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm0 449.5c-139.2 0-235.8-138-190.2-267.9l78.8 35.1c-2.1 10.5-3.3 21.5-3.3 32.9 0 99 73.9 126.9 120.4 126.9 22.9 0 53.5-6.7 79.4-29.5L297 311.1c-5.5 6.3-17.6 16.7-36.3 16.7-37.8 0-53.7-39.9-53.9-71.9 230.4 102.6 216.5 96.5 217.9 96.8-34.3 62.4-100.6 104.8-176.7 104.8zm194.2-150l-224-100c18.8-34 54.9-30.7 74.7-11l40.4-41.6c-27.1-23.3-58-27.5-78.1-27.5-47.4 0-80.9 20.5-100.7 51.6l-74.9-33.4c36.1-54.9 98.1-91.2 168.5-91.2 111.1 0 201.5 90.4 201.5 201.5 0 18-2.4 35.4-6.8 52-.3-.1-.4-.2-.6-.4z"] }; +var faCreativeCommonsPdAlt = { prefix: 'fab', iconName: 'creative-commons-pd-alt', icon: [496, 512, [], "f4ed", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM135.5 323.3V186h68.2c33.7 0 50.5 15.5 50.5 46.5 0 9-3 46.5-57.1 46.5h-27v44.3h-34.6zm34.1-111.6v41.6h29.2c27.9 0 30-41.6-.9-41.6h-28.3zm93.9 111.6V186h53.2c21.4 0 70 5.2 70 68.6 0 63.5-48.6 68.6-70 68.6h-53.2zm34.1-108.5v79.7h19.9c24 0 34.5-15.3 34.5-39.9 0-42-31.2-39.9-35-39.9l-19.4.1z"] }; +var faCreativeCommonsRemix = { prefix: 'fab', iconName: 'creative-commons-remix', icon: [496, 512, [], "f4ee", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm161.7 207.7l4.9 2.2v70c-7.2 3.6-63.4 27.5-67.3 28.8-6.5-1.8-113.7-46.8-137.3-56.2l-64.2 26.6-63.3-27.5v-63.8l59.3-24.8c-.7-.7-.4 5-.4-70.4l67.3-29.7L361 178.5v61.6l49.1 20.3zm-70.4 81.5v-43.8h-.4v-1.8l-113.8-46.5V295l113.8 46.9v-.4l.4.4zm7.5-57.6l39.9-16.4-36.8-15.5-39 16.4 35.9 15.5zm52.3 38.1v-43L355.2 298v43.4l44.3-19z"] }; +var faCreativeCommonsSa = { prefix: 'fab', iconName: 'creative-commons-sa', icon: [496, 512, [], "f4ef", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM137.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97h62.5c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6-33.1 0-51.7 14.6-55.8 43.8h18.2l-49.2 49.2-49-49.2h19.4z"] }; +var faCreativeCommonsSampling = { prefix: 'fab', iconName: 'creative-commons-sampling', icon: [496, 512, [], "f4f0", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm3.6 53.2c2.8-.3 11.5 1 11.5 11.5l6.6 107.2 4.9-59.3c0-6 4.7-10.6 10.6-10.6 5.9 0 10.6 4.7 10.6 10.6 0 2.5-.5-5.7 5.7 81.5l5.8-64.2c.3-2.9 2.9-9.3 10.2-9.3 3.8 0 9.9 2.3 10.6 8.9l11.5 96.5 5.3-12.8c1.8-4.4 5.2-6.6 10.2-6.6h58v21.3h-50.9l-18.2 44.3c-3.9 9.9-19.5 9.1-20.8-3.1l-4-31.9-7.5 92.6c-.3 3-3 9.3-10.2 9.3-3 0-9.8-2.1-10.6-9.3 0-1.9.6 5.8-6.2-77.9l-5.3 72.2c-1.1 4.8-4.8 9.3-10.6 9.3-2.9 0-9.8-2-10.6-9.3 0-1.9.5 6.7-5.8-87.7l-5.8 94.8c0 6.3-3.6 12.4-10.6 12.4-5.2 0-10.6-4.1-10.6-12l-5.8-87.7c-5.8 92.5-5.3 84-5.3 85.9-1.1 4.8-4.8 9.3-10.6 9.3-3 0-9.8-2.1-10.6-9.3 0-.7-.4-1.1-.4-2.6l-6.2-88.6L182 348c-.7 6.5-6.7 9.3-10.6 9.3-5.8 0-9.6-4.1-10.6-8.9L149.7 272c-2 4-3.5 8.4-11.1 8.4H87.2v-21.3H132l13.7-27.9c4.4-9.9 18.2-7.2 19.9 2.7l3.1 20.4 8.4-97.9c0-6 4.8-10.6 10.6-10.6.5 0 10.6-.2 10.6 12.4l4.9 69.1 6.6-92.6c0-10.1 9.5-10.6 10.2-10.6.6 0 10.6.7 10.6 10.6l5.3 80.6 6.2-97.9c.1-1.1-.6-10.3 9.9-11.5z"] }; +var faCreativeCommonsSamplingPlus = { prefix: 'fab', iconName: 'creative-commons-sampling-plus', icon: [496, 512, [], "f4f1", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm107 205.6c-4.7 0-9 2.8-10.7 7.2l-4 9.5-11-92.8c-1.7-13.9-22-13.4-23.1.4l-4.3 51.4-5.2-68.8c-1.1-14.3-22.1-14.2-23.2 0l-3.5 44.9-5.9-94.3c-.9-14.5-22.3-14.4-23.2 0l-5.1 83.7-4.3-66.3c-.9-14.4-22.2-14.4-23.2 0l-5.3 80.2-4.1-57c-1.1-14.3-22-14.3-23.2-.2l-7.7 89.8-1.8-12.2c-1.7-11.4-17.1-13.6-22-3.3l-13.2 27.7H87.5v23.2h51.3c4.4 0 8.4-2.5 10.4-6.4l10.7 73.1c2 13.5 21.9 13 23.1-.7l3.8-43.6 5.7 78.3c1.1 14.4 22.3 14.2 23.2-.1l4.6-70.4 4.8 73.3c.9 14.4 22.3 14.4 23.2-.1l4.9-80.5 4.5 71.8c.9 14.3 22.1 14.5 23.2.2l4.6-58.6 4.9 64.4c1.1 14.3 22 14.2 23.1.1l6.8-83 2.7 22.3c1.4 11.8 17.7 14.1 22.3 3.1l18-43.4h50.5V258l-58.4.3zm-78 5.2h-21.9v21.9c0 4.1-3.3 7.5-7.5 7.5-4.1 0-7.5-3.3-7.5-7.5v-21.9h-21.9c-4.1 0-7.5-3.3-7.5-7.5 0-4.1 3.4-7.5 7.5-7.5h21.9v-21.9c0-4.1 3.4-7.5 7.5-7.5s7.5 3.3 7.5 7.5v21.9h21.9c4.1 0 7.5 3.3 7.5 7.5 0 4.1-3.4 7.5-7.5 7.5z"] }; +var faCreativeCommonsShare = { prefix: 'fab', iconName: 'creative-commons-share', icon: [496, 512, [], "f4f2", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm101 132.4c7.8 0 13.7 6.1 13.7 13.7v182.5c0 7.7-6.1 13.7-13.7 13.7H214.3c-7.7 0-13.7-6-13.7-13.7v-54h-54c-7.8 0-13.7-6-13.7-13.7V131.1c0-8.2 6.6-12.7 12.4-13.7h136.4c7.7 0 13.7 6 13.7 13.7v54h54zM159.9 300.3h40.7V198.9c0-7.4 5.8-12.6 12-13.7h55.8v-40.3H159.9v155.4zm176.2-88.1H227.6v155.4h108.5V212.2z"] }; +var faCss3 = { prefix: 'fab', iconName: 'css3', icon: [512, 512, [], "f13c", "M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z"] }; +var faCss3Alt = { prefix: 'fab', iconName: 'css3-alt', icon: [384, 512, [], "f38b", "M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z"] }; +var faCuttlefish = { prefix: 'fab', iconName: 'cuttlefish', icon: [440, 512, [], "f38c", "M344 305.5c-17.5 31.6-57.4 54.5-96 54.5-56.6 0-104-47.4-104-104s47.4-104 104-104c38.6 0 78.5 22.9 96 54.5 13.7-50.9 41.7-93.3 87-117.8C385.7 39.1 320.5 8 248 8 111 8 0 119 0 256s111 248 248 248c72.5 0 137.7-31.1 183-80.7-45.3-24.5-73.3-66.9-87-117.8z"] }; +var faDAndD = { prefix: 'fab', iconName: 'd-and-d', icon: [576, 512, [], "f38d", "M82.5 98.9c-.6-17.2 2-33.8 12.7-48.2.3 7.4 1.2 14.5 4.2 21.6 5.9-27.5 19.7-49.3 42.3-65.5-1.9 5.9-3.5 11.8-3 17.7 8.7-7.4 18.8-17.8 44.4-22.7 14.7-2.8 29.7-2 42.1 1 38.5 9.3 61 34.3 69.7 72.3 5.3 23.1.7 45-8.3 66.4-5.2 12.4-12 24.4-20.7 35.1-2-1.9-3.9-3.8-5.8-5.6-42.8-40.8-26.8-25.2-37.4-37.4-1.1-1.2-1-2.2-.1-3.6 8.3-13.5 11.8-28.2 10-44-1.1-9.8-4.3-18.9-11.3-26.2-14.5-15.3-39.2-15-53.5.6-11.4 12.5-14.1 27.4-10.9 43.6.2 1.3.4 2.7 0 3.9-3.4 13.7-4.6 27.6-2.5 41.6.1.5.1 1.1.1 1.6 0 .3-.1.5-.2 1.1-21.8-11-36-28.3-43.2-52.2-8.3 17.8-11.1 35.5-6.6 54.1-15.6-15.2-21.3-34.3-22-55.2zm469.6 123.2c-11.6-11.6-25-20.4-40.1-26.6-12.8-5.2-26-7.9-39.9-7.1-10 .6-19.6 3.1-29 6.4-2.5.9-5.1 1.6-7.7 2.2-4.9 1.2-7.3-3.1-4.7-6.8 3.2-4.6 3.4-4.2 15-12 .6-.4 1.2-.8 2.2-1.5h-2.5c-.6 0-1.2.2-1.9.3-19.3 3.3-30.7 15.5-48.9 29.6-10.4 8.1-13.8 3.8-12-.5 1.4-3.5 3.3-6.7 5.1-10 1-1.8 2.3-3.4 3.5-5.1-.2-.2-.5-.3-.7-.5-27 18.3-46.7 42.4-57.7 73.3.3.3.7.6 1 .9.3-.6.5-1.2.9-1.7 10.4-12.1 22.8-21.8 36.6-29.8 18.2-10.6 37.5-18.3 58.7-20.2 4.3-.4 8.7-.1 13.1-.1-1.8.7-3.5.9-5.3 1.1-18.5 2.4-35.5 9-51.5 18.5-30.2 17.9-54.5 42.2-75.1 70.4-.3.4-.4.9-.7 1.3 14.5 5.3 24 17.3 36.1 25.6.2-.1.3-.2.4-.4l1.2-2.7c12.2-26.9 27-52.3 46.7-74.5 16.7-18.8 38-25.3 62.5-20 5.9 1.3 11.4 4.4 17.2 6.8 2.3-1.4 5.1-3.2 8-4.7 8.4-4.3 17.4-7 26.7-9 14.7-3.1 29.5-4.9 44.5-1.3v-.5c-.5-.4-1.2-.8-1.7-1.4zM316.7 397.6c-39.4-33-22.8-19.5-42.7-35.6-.8.9 0-.2-1.9 3-11.2 19.1-25.5 35.3-44 47.6-10.3 6.8-21.5 11.8-34.1 11.8-21.6 0-38.2-9.5-49.4-27.8-12-19.5-13.3-40.7-8.2-62.6 7.8-33.8 30.1-55.2 38.6-64.3-18.7-6.2-33 1.7-46.4 13.9.8-13.9 4.3-26.2 11.8-37.3-24.3 10.6-45.9 25-64.8 43.9-.3-5.8 5.4-43.7 5.6-44.7.3-2.7-.6-5.3-3-7.4-24.2 24.7-44.5 51.8-56.1 84.6 7.4-5.9 14.9-11.4 23.6-16.2-8.3 22.3-19.6 52.8-7.8 101.1 4.6 19 11.9 36.8 24.1 52.3 2.9 3.7 6.3 6.9 9.5 10.3.2-.2.4-.3.6-.5-1.4-7-2.2-14.1-1.5-21.9 2.2 3.2 3.9 6 5.9 8.6 12.6 16 28.7 27.4 47.2 35.6 25 11.3 51.1 13.3 77.9 8.6 54.9-9.7 90.7-48.6 116-98.8 1-1.8.6-2.9-.9-4.2zm172-46.4c-9.5-3.1-22.2-4.2-28.7-2.9 9.9 4 14.1 6.6 18.8 12 12.6 14.4 10.4 34.7-5.4 45.6-11.7 8.1-24.9 10.5-38.9 9.1-1.2-.1-2.3-.4-3-.6 2.8-3.7 6-7 8.1-10.8 9.4-16.8 5.4-42.1-8.7-56.1-2.1-2.1-4.6-3.9-7-5.9-.3 1.3-.1 2.1.1 2.8 4.2 16.6-8.1 32.4-24.8 31.8-7.6-.3-13.9-3.8-19.6-8.5-19.5-16.1-39.1-32.1-58.5-48.3-5.9-4.9-12.5-8.1-20.1-8.7-4.6-.4-9.3-.6-13.9-.9-5.9-.4-8.8-2.8-10.4-8.4-.9-3.4-1.5-6.8-2.2-10.2-1.5-8.1-6.2-13-14.3-14.2-4.4-.7-8.9-1-13.3-1.5-13-1.4-19.8-7.4-22.6-20.3-5 11-1.6 22.4 7.3 29.9 4.5 3.8 9.3 7.3 13.8 11.2 4.6 3.8 7.4 8.7 7.9 14.8.4 4.7.8 9.5 1.8 14.1 2.2 10.6 8.9 18.4 17 25.1 16.5 13.7 33 27.3 49.5 41.1 17.9 15 13.9 32.8 13 56-.9 22.9 12.2 42.9 33.5 51.2 1 .4 2 .6 3.6 1.1-15.7-18.2-10.1-44.1.7-52.3.3 2.2.4 4.3.9 6.4 9.4 44.1 45.4 64.2 85 56.9 16-2.9 30.6-8.9 42.9-19.8 2-1.8 3.7-4.1 5.9-6.5-19.3 4.6-35.8.1-50.9-10.6.7-.3 1.3-.3 1.9-.3 21.3 1.8 40.6-3.4 57-17.4 19.5-16.6 26.6-42.9 17.4-66-8.3-20.1-23.6-32.3-43.8-38.9zM99.4 179.3c-5.3-9.2-13.2-15.6-22.1-21.3 13.7-.5 26.6.2 39.6 3.7-7-12.2-8.5-24.7-5-38.7 5.3 11.9 13.7 20.1 23.6 26.8 19.7 13.2 35.7 19.6 46.7 30.2 3.4 3.3 6.3 7.1 9.6 10.9-.8-2.1-1.4-4.1-2.2-6-5-10.6-13-18.6-22.6-25-1.8-1.2-2.8-2.5-3.4-4.5-3.3-12.5-3-25.1-.7-37.6 1-5.5 2.8-10.9 4.5-16.3.8-2.4 2.3-4.6 4-6.6.6 6.9 0 25.5 19.6 46 10.8 11.3 22.4 21.9 33.9 32.7 9 8.5 18.3 16.7 25.5 26.8 1.1 1.6 2.2 3.3 3.8 4.7-5-13-14.2-24.1-24.2-33.8-9.6-9.3-19.4-18.4-29.2-27.4-3.3-3-4.6-6.7-5.1-10.9-1.2-10.4 0-20.6 4.3-30.2.5-1 1.1-2 1.9-3.3.5 4.2.6 7.9 1.4 11.6 4.8 23.1 20.4 36.3 49.3 63.5 10 9.4 19.3 19.2 25.6 31.6 4.8 9.3 7.3 19 5.7 29.6-.1.6.5 1.7 1.1 2 6.2 2.6 10 6.9 9.7 14.3 7.7-2.6 12.5-8 16.4-14.5 4.2 20.2-9.1 50.3-27.2 58.7.4-4.5 5-23.4-16.5-27.7-6.8-1.3-12.8-1.3-22.9-2.1 4.7-9 10.4-20.6.5-22.4-24.9-4.6-52.8 1.9-57.8 4.6 8.2.4 16.3 1 23.5 3.3-2 6.5-4 12.7-5.8 18.9-1.9 6.5 2.1 14.6 9.3 9.6 1.2-.9 2.3-1.9 3.3-2.7-3.1 17.9-2.9 15.9-2.8 18.3.3 10.2 9.5 7.8 15.7 7.3-2.5 11.8-29.5 27.3-45.4 25.8 7-4.7 12.7-10.3 15.9-17.9-6.5.8-12.9 1.6-19.2 2.4l-.3-.9c4.7-3.4 8-7.8 10.2-13.1 8.7-21.1-3.6-38-25-39.9-9.1-.8-17.8.8-25.9 5.5 6.2-15.6 17.2-26.6 32.6-34.5-15.2-4.3-8.9-2.7-24.6-6.3 14.6-9.3 30.2-13.2 46.5-14.6-5.2-3.2-48.1-3.6-70.2 20.9 7.9 1.4 15.5 2.8 23.2 4.2-23.8 7-44 19.7-62.4 35.6 1.1-4.8 2.7-9.5 3.3-14.3.6-4.5.8-9.2.1-13.6-1.5-9.4-8.9-15.1-19.7-16.3-7.9-.9-15.6.1-23.3 1.3-.9.1-1.7.3-2.9 0 15.8-14.8 36-21.7 53.1-33.5 6-4.5 6.8-8.2 3-14.9zm128.4 26.8c3.3 16 12.6 25.5 23.8 24.3-4.6-11.3-12.1-19.5-23.8-24.3z"] }; +var faDashcube = { prefix: 'fab', iconName: 'dashcube', icon: [448, 512, [], "f210", "M326.6 104H110.4c-51.1 0-91.2 43.3-91.2 93.5V427c0 50.5 40.1 85 91.2 85h227.2c51.1 0 91.2-34.5 91.2-85V0L326.6 104zM153.9 416.5c-17.7 0-32.4-15.1-32.4-32.8V240.8c0-17.7 14.7-32.5 32.4-32.5h140.7c17.7 0 32 14.8 32 32.5v123.5l51.1 52.3H153.9z"] }; +var faDelicious = { prefix: 'fab', iconName: 'delicious', icon: [448, 512, [], "f1a5", "M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1.5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3 1 1.1 2.1 2.2 3.3 3.3 5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12zM416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192v176z"] }; +var faDeploydog = { prefix: 'fab', iconName: 'deploydog', icon: [512, 512, [], "f38e", "M382.2 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.6 0-33.2 16.4-33.2 32.6zM188.5 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.7 0-33.2 16.4-33.2 32.6zM448 96c17.5 0 32 14.4 32 32v256c0 17.5-14.4 32-32 32H64c-17.5 0-32-14.4-32-32V128c0-17.5 14.4-32 32-32h384m0-32H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h384c35.2 0 64-28.8 64-64V128c0-35.2-28.8-64-64-64z"] }; +var faDeskpro = { prefix: 'fab', iconName: 'deskpro', icon: [480, 512, [], "f38f", "M205.9 512l31.1-38.4c12.3-.2 25.6-1.4 36.5-6.6 38.9-18.6 38.4-61.9 38.3-63.8-.1-5-.8-4.4-28.9-37.4H362c-.2 50.1-7.3 68.5-10.2 75.7-9.4 23.7-43.9 62.8-95.2 69.4-8.7 1.1-32.8 1.2-50.7 1.1zm200.4-167.7c38.6 0 58.5-13.6 73.7-30.9l-175.5-.3-17.4 31.3 119.2-.1zm-43.6-223.9v168.3h-73.5l-32.7 55.5H250c-52.3 0-58.1-56.5-58.3-58.9-1.2-13.2-21.3-11.6-20.1 1.8 1.4 15.8 8.8 40 26.4 57.1h-91c-25.5 0-110.8-26.8-107-114V16.9C0 .9 9.7.3 15 .1h82c.2 0 .3.1.5.1 4.3-.4 50.1-2.1 50.1 43.7 0 13.3 20.2 13.4 20.2 0 0-18.2-5.5-32.8-15.8-43.7h84.2c108.7-.4 126.5 79.4 126.5 120.2zm-132.5 56l64 29.3c13.3-45.5-42.2-71.7-64-29.3z"] }; +var faDeviantart = { prefix: 'fab', iconName: 'deviantart', icon: [320, 512, [], "f1bd", "M320 93.2l-98.2 179.1 7.4 9.5H320v127.7H159.1l-13.5 9.2-43.7 84c-.3 0-8.6 8.6-9.2 9.2H0v-93.2l93.2-179.4-7.4-9.2H0V102.5h156l13.5-9.2 43.7-84c.3 0 8.6-8.6 9.2-9.2H320v93.1z"] }; +var faDigg = { prefix: 'fab', iconName: 'digg', icon: [512, 512, [], "f1a6", "M81.7 172.3H0v174.4h132.7V96h-51v76.3zm0 133.4H50.9v-92.3h30.8v92.3zm297.2-133.4v174.4h81.8v28.5h-81.8V416H512V172.3H378.9zm81.8 133.4h-30.8v-92.3h30.8v92.3zm-235.6 41h82.1v28.5h-82.1V416h133.3V172.3H225.1v174.4zm51.2-133.3h30.8v92.3h-30.8v-92.3zM153.3 96h51.3v51h-51.3V96zm0 76.3h51.3v174.4h-51.3V172.3z"] }; +var faDigitalOcean = { prefix: 'fab', iconName: 'digital-ocean', icon: [512, 512, [], "f391", "M256 504v-96.1c101.8 0 180.8-100.9 141.7-208-14.3-39.6-46.1-71.4-85.8-85.7-107.1-38.8-208.1 39.9-208.1 141.7H8C8 93.7 164.9-32.8 335 20.3c74.2 23.3 133.6 82.4 156.6 156.6C544.8 347.2 418.6 504 256 504zm.3-191.4h-95.6v95.6h95.6v-95.6zm-95.6 95.6H87v73.6h73.7v-73.6zM87 346.6H25.4v61.6H87v-61.6z"] }; +var faDiscord = { prefix: 'fab', iconName: 'discord', icon: [448, 512, [], "f392", "M297.216 243.2c0 15.616-11.52 28.416-26.112 28.416-14.336 0-26.112-12.8-26.112-28.416s11.52-28.416 26.112-28.416c14.592 0 26.112 12.8 26.112 28.416zm-119.552-28.416c-14.592 0-26.112 12.8-26.112 28.416s11.776 28.416 26.112 28.416c14.592 0 26.112-12.8 26.112-28.416.256-15.616-11.52-28.416-26.112-28.416zM448 52.736V512c-64.494-56.994-43.868-38.128-118.784-107.776l13.568 47.36H52.48C23.552 451.584 0 428.032 0 398.848V52.736C0 23.552 23.552 0 52.48 0h343.04C424.448 0 448 23.552 448 52.736zm-72.96 242.688c0-82.432-36.864-149.248-36.864-149.248-36.864-27.648-71.936-26.88-71.936-26.88l-3.584 4.096c43.52 13.312 63.744 32.512 63.744 32.512-60.811-33.329-132.244-33.335-191.232-7.424-9.472 4.352-15.104 7.424-15.104 7.424s21.248-20.224 67.328-33.536l-2.56-3.072s-35.072-.768-71.936 26.88c0 0-36.864 66.816-36.864 149.248 0 0 21.504 37.12 78.08 38.912 0 0 9.472-11.52 17.152-21.248-32.512-9.728-44.8-30.208-44.8-30.208 3.766 2.636 9.976 6.053 10.496 6.4 43.21 24.198 104.588 32.126 159.744 8.96 8.96-3.328 18.944-8.192 29.44-15.104 0 0-12.8 20.992-46.336 30.464 7.68 9.728 16.896 20.736 16.896 20.736 56.576-1.792 78.336-38.912 78.336-38.912z"] }; +var faDiscourse = { prefix: 'fab', iconName: 'discourse', icon: [448, 512, [], "f393", "M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z"] }; +var faDochub = { prefix: 'fab', iconName: 'dochub', icon: [416, 512, [], "f394", "M397.9 160H256V19.6L397.9 160zM304 192v130c0 66.8-36.5 100.1-113.3 100.1H96V84.8h94.7c12 0 23.1.8 33.1 2.5v-84C212.9 1.1 201.4 0 189.2 0H0v512h189.2C329.7 512 400 447.4 400 318.1V192h-96z"] }; +var faDocker = { prefix: 'fab', iconName: 'docker', icon: [640, 512, [], "f395", "M349.9 236.3h-66.1v-59.4h66.1v59.4zm0-204.3h-66.1v60.7h66.1V32zm78.2 144.8H362v59.4h66.1v-59.4zm-156.3-72.1h-66.1v60.1h66.1v-60.1zm78.1 0h-66.1v60.1h66.1v-60.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4.4 67.6.1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1l-13.3-8.9zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm-78.1-72.1h-66.1v60.1h66.1v-60.1z"] }; +var faDraft2digital = { prefix: 'fab', iconName: 'draft2digital', icon: [480, 512, [], "f396", "M369.9 425.4V371l47.1 27.2-47.1 27.2zM82.4 380.6c25.5-27.3 97.7-104.7 150.9-170 35.1-43.1 40.3-82.4 28.4-112.7-7.4-18.8-17.5-30.2-24.3-35.7 45.3 2.1 68 23.4 82.2 38.3 0 0 42.4 48.2 5.8 113.3-37 65.9-110.9 147.5-128.5 166.7H82.4zm51.8-219.2c0 12.4-10 22.4-22.4 22.4-12.4 0-22.4-10-22.4-22.4 0-12.4 10-22.4 22.4-22.4 12.4 0 22.4 10.1 22.4 22.4M336 315.9v64.7h-91.3c30.8-35 81.8-95.9 111.8-149.3 35.2-62.6 16.1-123.4-12.8-153.3-4.4-4.6-62.2-62.9-166-41.2-59.1 12.4-89.4 43.4-104.3 67.3-13.1 20.9-17 39.8-18.2 47.7-5.5 33 19.4 67.1 56.7 67.1 31.7 0 57.3-25.7 57.3-57.4 0-27.1-19.7-52.1-48-56.8 1.8-7.3 17.7-21.1 26.3-24.7 41.1-17.3 78 5.2 83.3 33.5 8.3 44.3-37.1 90.4-69.7 127.6C84.5 328.1 18.3 396.8 0 415.9l336-.1V480l144-81.9-144-82.2z"] }; +var faDribbble = { prefix: 'fab', iconName: 'dribbble', icon: [512, 512, [], "f17d", "M256 8C119.252 8 8 119.252 8 256s111.252 248 248 248 248-111.252 248-248S392.748 8 256 8zm163.97 114.366c29.503 36.046 47.369 81.957 47.835 131.955-6.984-1.477-77.018-15.682-147.502-6.818-5.752-14.041-11.181-26.393-18.617-41.614 78.321-31.977 113.818-77.482 118.284-83.523zM396.421 97.87c-3.81 5.427-35.697 48.286-111.021 76.519-34.712-63.776-73.185-116.168-79.04-124.008 67.176-16.193 137.966 1.27 190.061 47.489zm-230.48-33.25c5.585 7.659 43.438 60.116 78.537 122.509-99.087 26.313-186.36 25.934-195.834 25.809C62.38 147.205 106.678 92.573 165.941 64.62zM44.17 256.323c0-2.166.043-4.322.108-6.473 9.268.19 111.92 1.513 217.706-30.146 6.064 11.868 11.857 23.915 17.174 35.949-76.599 21.575-146.194 83.527-180.531 142.306C64.794 360.405 44.17 310.73 44.17 256.323zm81.807 167.113c22.127-45.233 82.178-103.622 167.579-132.756 29.74 77.283 42.039 142.053 45.189 160.638-68.112 29.013-150.015 21.053-212.768-27.882zm248.38 8.489c-2.171-12.886-13.446-74.897-41.152-151.033 66.38-10.626 124.7 6.768 131.947 9.055-9.442 58.941-43.273 109.844-90.795 141.978z"] }; +var faDribbbleSquare = { prefix: 'fab', iconName: 'dribbble-square', icon: [448, 512, [], "f397", "M90.2 228.2c8.9-42.4 37.4-77.7 75.7-95.7 3.6 4.9 28 38.8 50.7 79-64 17-120.3 16.8-126.4 16.7zM314.6 154c-33.6-29.8-79.3-41.1-122.6-30.6 3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4zM140.1 364c40.5 31.6 93.3 36.7 137.3 18-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6zm98.8-108.2c-3.4-7.8-7.2-15.5-11.1-23.2C159.6 253 93.4 252.2 87.4 252c0 1.4-.1 2.8-.1 4.2 0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8zm34.9 16.3c17.9 49.1 25.1 89.1 26.5 97.4 30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8zm-20.3-48.4c4.8 9.8 8.3 17.8 12 26.8 45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 176c0-88.2-71.8-160-160-160S64 167.8 64 256s71.8 160 160 160 160-71.8 160-160z"] }; +var faDropbox = { prefix: 'fab', iconName: 'dropbox', icon: [528, 512, [], "f16b", "M264.4 116.3l-132 84.3 132 84.3-132 84.3L0 284.1l132.3-84.3L0 116.3 132.3 32l132.1 84.3zM131.6 395.7l132-84.3 132 84.3-132 84.3-132-84.3zm132.8-111.6l132-84.3-132-83.6L395.7 32 528 116.3l-132.3 84.3L528 284.8l-132.3 84.3-131.3-85z"] }; +var faDrupal = { prefix: 'fab', iconName: 'drupal', icon: [448, 512, [], "f1a9", "M319.5 114.7c-22.2-14-43.5-19.5-64.7-33.5-13-8.8-31.3-30-46.5-48.3-2.7 29.3-11.5 41.2-22 49.5-21.3 17-34.8 22.2-53.5 32.3C117 123 32 181.5 32 290.5 32 399.7 123.8 480 225.8 480 327.5 480 416 406 416 294c0-112.3-83-171-96.5-179.3zm2.5 325.6c-20.1 20.1-90.1 28.7-116.7 4.2-4.8-4.8.3-12 6.5-12 0 0 17 13.3 51.5 13.3 27 0 46-7.7 54.5-14 6.1-4.6 8.4 4.3 4.2 8.5zm-54.5-52.6c8.7-3.6 29-3.8 36.8 1.3 4.1 2.8 16.1 18.8 6.2 23.7-8.4 4.2-1.2-15.7-26.5-15.7-14.7 0-19.5 5.2-26.7 11-7 6-9.8 8-12.2 4.7-6-8.2 15.9-22.3 22.4-25zM360 405c-15.2-1-45.5-48.8-65-49.5-30.9-.9-104.1 80.7-161.3 42-38.8-26.6-14.6-104.8 51.8-105.2 49.5-.5 83.8 49 108.5 48.5 21.3-.3 61.8-41.8 81.8-41.8 48.7 0 23.3 109.3-15.8 106z"] }; +var faDyalog = { prefix: 'fab', iconName: 'dyalog', icon: [416, 512, [], "f399", "M0 32v119.2h64V96h107.2C284.6 96 352 176.2 352 255.9 352 332 293.4 416 171.2 416H0v64h171.2C331.9 480 416 367.3 416 255.9c0-58.7-22.1-113.4-62.3-154.3C308.9 56 245.7 32 171.2 32H0z"] }; +var faEarlybirds = { prefix: 'fab', iconName: 'earlybirds', icon: [480, 512, [], "f39a", "M313.2 47.5c1.2-13 21.3-14 36.6-8.7.9.3 26.2 9.7 19 15.2-27.9-7.4-56.4 18.2-55.6-6.5zm-201 6.9c30.7-8.1 62 20 61.1-7.1-1.3-14.2-23.4-15.3-40.2-9.6-1 .3-28.7 10.5-20.9 16.7zM319.4 160c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-159.7 0c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm318.5 163.2c-9.9 24-40.7 11-63.9-1.2-13.5 69.1-58.1 111.4-126.3 124.2.3.9-2-.1 24 1 33.6 1.4 63.8-3.1 97.4-8-19.8-13.8-11.4-37.1-9.8-38.1 1.4-.9 14.7 1.7 21.6 11.5 8.6-12.5 28.4-14.8 30.2-13.6 1.6 1.1 6.6 20.9-6.9 34.6 4.7-.9 8.2-1.6 9.8-2.1 2.6-.8 17.7 11.3 3.1 13.3-14.3 2.3-22.6 5.1-47.1 10.8-45.9 10.7-85.9 11.8-117.7 12.8l1 11.6c3.8 18.1-23.4 24.3-27.6 6.2.8 17.9-27.1 21.8-28.4-1l-.5 5.3c-.7 18.4-28.4 17.9-28.3-.6-7.5 13.5-28.1 6.8-26.4-8.5l1.2-12.4c-36.7.9-59.7 3.1-61.8 3.1-20.9 0-20.9-31.6 0-31.6 2.4 0 27.7 1.3 63.2 2.8-61.1-15.5-103.7-55-114.9-118.2-25 12.8-57.5 26.8-68.2.8-10.5-25.4 21.5-42.6 66.8-73.4.7-6.6 1.6-13.3 2.7-19.8-14.4-19.6-11.6-36.3-16.1-60.4-16.8 2.4-23.2-9.1-23.6-23.1.3-7.3 2.1-14.9 2.4-15.4 1.1-1.8 10.1-2 12.7-2.6 6-31.7 50.6-33.2 90.9-34.5 19.7-21.8 45.2-41.5 80.9-48.3C203.3 29 215.2 8.5 216.2 8c1.7-.8 21.2 4.3 26.3 23.2 5.2-8.8 18.3-11.4 19.6-10.7 1.1.6 6.4 15-4.9 25.9 40.3 3.5 72.2 24.7 96 50.7 36.1 1.5 71.8 5.9 77.1 34 2.7.6 11.6.8 12.7 2.6.3.5 2.1 8.1 2.4 15.4-.5 13.9-6.8 25.4-23.6 23.1-3.2 17.3-2.7 32.9-8.7 47.7 2.4 11.7 4 23.8 4.8 36.4 37 25.4 70.3 42.5 60.3 66.9zM207.4 159.9c.9-44-37.9-42.2-78.6-40.3-21.7 1-38.9 1.9-45.5 13.9-11.4 20.9 5.9 92.9 23.2 101.2 9.8 4.7 73.4 7.9 86.3-7.1 8.2-9.4 15-49.4 14.6-67.7zm52 58.3c-4.3-12.4-6-30.1-15.3-32.7-2-.5-9-.5-11 0-10 2.8-10.8 22.1-17 37.2 15.4 0 19.3 9.7 23.7 9.7 4.3 0 6.3-11.3 19.6-14.2zm135.7-84.7c-6.6-12.1-24.8-12.9-46.5-13.9-40.2-1.9-78.2-3.8-77.3 40.3-.5 18.3 5 58.3 13.2 67.8 13 14.9 76.6 11.8 86.3 7.1 15.8-7.6 36.5-78.9 24.3-101.3z"] }; +var faEbay = { prefix: 'fab', iconName: 'ebay', icon: [640, 512, [], "f4f4", "M405.2 263.8c-29.1.9-47.2 6.2-47.2 25.3 0 12.4 9.9 25.8 35 25.8 33.7 0 51.6-18.4 51.6-48.4v-3.3c-11.8 0-26.3.1-39.4.6m71.5 39.7c0 9.3.3 18.6 1 26.8h-29.8c-.8-6.9-1.1-13.6-1.1-20.2-16.1 19.8-35.3 25.5-61.9 25.5-39.5 0-60.6-20.9-60.6-45 0-35 28.8-47.3 78.6-48.4 13.7-.3 29-.4 41.7-.4v-3.4c0-23.4-15-33-41-33-19.3 0-33.6 8-35 21.8h-33.7c3.6-34.4 39.7-43.1 71.5-43.1 38.1 0 70.3 13.5 70.3 53.8v65.6zm-349-56.8c-2.3-54.7-87.5-56.6-94.4 0h94.4zm-95 21.4c3.5 58.3 79.2 57.4 91.2 21.6H157c-6.4 34.4-43 46.1-74.4 46.1-57.2 0-82.5-31.5-82.5-74 0-46.8 26.2-77.6 83-77.6 45.3 0 78.4 23.7 78.4 75.4v8.5H32.7zm211 45.7c29.8 0 50.2-21.5 50.2-53.8 0-32.4-20.4-53.8-50.2-53.8-29.6 0-50.2 21.4-50.2 53.8 0 32.3 20.6 53.8 50.2 53.8m-82.2-186h32.1v80.6c15.7-18.7 37.4-24.2 58.7-24.2 35.7 0 75.4 24.1 75.4 76.2 0 43.6-31.5 75.4-76 75.4-23.3 0-45.1-8.3-58.7-24.9 0 6.6-.4 13.2-1.1 19.5h-31.5c.5-10.2 1.1-22.8 1.1-33.1V127.8zM640 189.5l-99.2 194.8h-35.9l28.5-54.1-74.6-140.7h37.5l54.9 109.9L606 189.5h34z"] }; +var faEdge = { prefix: 'fab', iconName: 'edge', icon: [512, 512, [], "f282", "M25.714 228.163c.111-.162.23-.323.342-.485-.021.162-.045.323-.065.485h-.277zm460.572 15.508c0-44.032-7.754-84.465-28.801-122.405C416.498 47.879 343.912 8.001 258.893 8.001 118.962 7.724 40.617 113.214 26.056 227.679c42.429-61.312 117.073-121.376 220.375-124.966 0 0 109.666 0 99.419 104.957H169.997c6.369-37.386 18.554-58.986 34.339-78.926-75.048 34.893-121.85 96.096-120.742 188.315.83 71.448 50.124 144.836 120.743 171.976 83.357 31.847 192.776 7.2 240.132-21.324V363.307c-80.864 56.494-270.871 60.925-272.255-67.572h314.073v-52.064z"] }; +var faElementor = { prefix: 'fab', iconName: 'elementor', icon: [448, 512, [], "f430", "M425.6 32H22.4C10 32 0 42 0 54.4v403.2C0 470 10 480 22.4 480h403.2c12.4 0 22.4-10 22.4-22.4V54.4C448 42 438 32 425.6 32M164.3 355.5h-39.8v-199h39.8v199zm159.3 0H204.1v-39.8h119.5v39.8zm0-79.6H204.1v-39.8h119.5v39.8zm0-79.7H204.1v-39.8h119.5v39.8z"] }; +var faEmber = { prefix: 'fab', iconName: 'ember', icon: [640, 512, [], "f423", "M639.9 254.6c-1.1-10.7-10.7-6.8-10.7-6.8s-15.6 12.1-29.3 10.7c-13.7-1.3-9.4-32-9.4-32s3-28.1-5.1-30.4c-8.1-2.4-18 7.3-18 7.3s-12.4 13.7-18.3 31.2l-1.6.5s1.9-30.6-.3-37.6c-1.6-3.5-16.4-3.2-18.8 3s-14.2 49.2-15 67.2c0 0-23.1 19.6-43.3 22.8s-25-9.4-25-9.4 54.8-15.3 52.9-59.1c-1.9-43.8-44.2-27.6-49-24-4.6 3.5-29.4 18.4-36.6 59.7-.2 1.4-.7 7.5-.7 7.5s-21.2 14.2-33 18c0 0 33-55.6-7.3-80.9-18.3-11-32.8 12.1-32.8 12.1s54.5-60.7 42.5-112c-5.8-24.4-18-27.1-29.2-23.1-17 6.7-23.5 16.7-23.5 16.7s-22 32-27.1 79.5-12.6 105.1-12.6 105.1-10.5 10.2-20.2 10.7-5.4-28.7-5.4-28.7 7.5-44.6 7-52.1-1.1-11.6-9.9-14.2c-8.9-2.7-18.5 8.6-18.5 8.6s-25.5 38.7-27.7 44.6l-1.3 2.4-1.3-1.6s18-52.7.8-53.5c-17.2-.8-28.5 18.8-28.5 18.8s-19.6 32.8-20.4 36.5l-1.3-1.6s8.1-38.2 6.4-47.6c-1.6-9.4-10.5-7.5-10.5-7.5s-11.3-1.3-14.2 5.9-13.7 55.3-15 70.7c0 0-28.2 20.2-46.8 20.4-18.5.3-16.7-11.8-16.7-11.8s68-23.3 49.4-69.2c-8.3-11.8-18-15.5-31.7-15.3-13.7.3-30.3 8.6-41.3 33.3-5.3 11.8-6.8 23-7.8 31.5 0 0-12.3 2.4-18.8-2.9s-10 0-10 0-11.2 14-.1 18.3 28.1 6.1 28.1 6.1c1.6 7.5 6.2 19.5 19.6 29.7 20.2 15.3 58.8-1.3 58.8-1.3l15.9-8.8s.5 14.6 12.1 16.7c11.6 2.1 16.4 1 36.5-47.9 11.8-25 12.6-23.6 12.6-23.6l1.3-.3s-9.1 46.8-5.6 59.7C187.7 319.4 203 318 203 318s8.3 2.4 15-21.2c6.7-23.6 19.6-49.9 19.6-49.9h1.6s-5.6 48.1 3 63.7c8.6 15.6 30.9 5.3 30.9 5.3s15.6-7.8 18-10.2c0 0 18.5 15.8 44.6 12.9 58.3-11.5 79.1-25.9 79.1-25.9s10 24.4 41.1 26.7c35.5 2.7 54.8-18.6 54.8-18.6s-.3 13.5 12.1 18.6c12.4 5.1 20.7-22.8 20.7-22.8l20.7-57.2h1.9s1.1 37.3 21.5 43.2 47-13.7 47-13.7 6.4-3.5 5.3-14.3zm-578 5.3c.8-32 21.8-45.9 29-39 7.3 7 4.6 22-9.1 31.4-13.7 9.5-19.9 7.6-19.9 7.6zm272.8-123.8s19.1-49.7 23.6-25.5-40 96.2-40 96.2c.5-16.2 16.4-70.7 16.4-70.7zm22.8 138.4c-12.6 33-43.3 19.6-43.3 19.6s-3.5-11.8 6.4-44.9 33.3-20.2 33.3-20.2 16.2 12.4 3.6 45.5zm84.6-14.6s-3-10.5 8.1-30.6c11-20.2 19.6-9.1 19.6-9.1s9.4 10.2-1.3 25.5-26.4 14.2-26.4 14.2z"] }; +var faEmpire = { prefix: 'fab', iconName: 'empire', icon: [496, 512, [], "f1d1", "M287.6 54.2c-10.8-2.2-22.1-3.3-33.5-3.6V32.4c78.1 2.2 146.1 44 184.6 106.6l-15.8 9.1c-6.1-9.7-12.7-18.8-20.2-27.1l-18 15.5c-26-29.6-61.4-50.7-101.9-58.4l4.8-23.9zM53.4 322.4l23-7.7c-6.4-18.3-10-38.2-10-58.7s3.3-40.4 9.7-58.7l-22.7-7.7c3.6-10.8 8.3-21.3 13.6-31l-15.8-9.1C34 181 24.1 217.5 24.1 256s10 75 27.1 106.6l15.8-9.1c-5.3-10-9.7-20.3-13.6-31.1zM213.1 434c-40.4-8-75.8-29.1-101.9-58.7l-18 15.8c-7.5-8.6-14.4-17.7-20.2-27.4l-16 9.4c38.5 62.3 106.8 104.3 184.9 106.6v-18.3c-11.3-.3-22.7-1.7-33.5-3.6l4.7-23.8zM93.3 120.9l18 15.5c26-29.6 61.4-50.7 101.9-58.4l-4.7-23.8c10.8-2.2 22.1-3.3 33.5-3.6V32.4C163.9 34.6 95.9 76.4 57.4 139l15.8 9.1c6-9.7 12.6-18.9 20.1-27.2zm309.4 270.2l-18-15.8c-26 29.6-61.4 50.7-101.9 58.7l4.7 23.8c-10.8 1.9-22.1 3.3-33.5 3.6v18.3c78.1-2.2 146.4-44.3 184.9-106.6l-16.1-9.4c-5.7 9.7-12.6 18.8-20.1 27.4zM496 256c0 137-111 248-248 248S0 393 0 256 111 8 248 8s248 111 248 248zm-12.2 0c0-130.1-105.7-235.8-235.8-235.8S12.2 125.9 12.2 256 117.9 491.8 248 491.8 483.8 386.1 483.8 256zm-39-106.6l-15.8 9.1c5.3 9.7 10 20.2 13.6 31l-22.7 7.7c6.4 18.3 9.7 38.2 9.7 58.7s-3.6 40.4-10 58.7l23 7.7c-3.9 10.8-8.3 21-13.6 31l15.8 9.1C462 331 471.9 294.5 471.9 256s-9.9-75-27.1-106.6zm-183 177.7c16.3-3.3 30.4-11.6 40.7-23.5l51.2 44.8c11.9-13.6 21.3-29.3 27.1-46.8l-64.2-22.1c2.5-7.5 3.9-15.2 3.9-23.5s-1.4-16.1-3.9-23.5l64.5-22.1c-6.1-17.4-15.5-33.2-27.4-46.8l-51.2 44.8c-10.2-11.9-24.4-20.5-40.7-23.8l13.3-66.4c-8.6-1.9-17.7-2.8-27.1-2.8-9.4 0-18.5.8-27.1 2.8l13.3 66.4c-16.3 3.3-30.4 11.9-40.7 23.8l-51.2-44.8c-11.9 13.6-21.3 29.3-27.4 46.8l64.5 22.1c-2.5 7.5-3.9 15.2-3.9 23.5s1.4 16.1 3.9 23.5l-64.2 22.1c5.8 17.4 15.2 33.2 27.1 46.8l51.2-44.8c10.2 11.9 24.4 20.2 40.7 23.5l-13.3 66.7c8.6 1.7 17.7 2.8 27.1 2.8 9.4 0 18.5-1.1 27.1-2.8l-13.3-66.7z"] }; +var faEnvira = { prefix: 'fab', iconName: 'envira', icon: [448, 512, [], "f299", "M0 32c477.6 0 366.6 317.3 367.1 366.3L448 480h-26l-70.4-71.2c-39 4.2-124.4 34.5-214.4-37C47 300.3 52 214.7 0 32zm79.7 46c-49.7-23.5-5.2 9.2-5.2 9.2 45.2 31.2 66 73.7 90.2 119.9 31.5 60.2 79 139.7 144.2 167.7 65 28 34.2 12.5 6-8.5-28.2-21.2-68.2-87-91-130.2-31.7-60-61-118.6-144.2-158.1z"] }; +var faErlang = { prefix: 'fab', iconName: 'erlang', icon: [640, 512, [], "f39d", "M21.7 246.4c-.1 86.8 29 159.5 78.7 212.1H0v-405h87.2c-41.5 50.2-65.6 116.2-65.5 192.9zM640 53.6h-83.6c31.4 42.7 48.7 97.5 46.2 162.7.5 6 .5 11.7 0 24.1H230.2c-.2 109.7 38.9 194.9 138.6 195.3 68.5-.3 118-51 151.9-106.1l96.4 48.2c-17.4 30.9-36.5 57.8-57.9 80.8H640v-405zm-80.8 405s0-.1 0 0h-.2.2zm-3.1-405h.3l-.1-.1-.2.1zm-230.7 9.6c-45.9.1-85.1 33.5-89.2 83.2h169.9c-1.1-49.7-34.5-83.1-80.7-83.2z"] }; +var faEthereum = { prefix: 'fab', iconName: 'ethereum', icon: [320, 512, [], "f42e", "M311.9 260.8L160 353.6 8 260.8 160 0l151.9 260.8zM160 383.4L8 290.6 160 512l152-221.4-152 92.8z"] }; +var faEtsy = { prefix: 'fab', iconName: 'etsy', icon: [384, 512, [], "f2d7", "M384 348c-1.75 10.75-13.75 110-15.5 132-117.879-4.299-219.895-4.743-368.5 0v-25.5c45.457-8.948 60.627-8.019 61-35.25 1.793-72.322 3.524-244.143 0-322-1.029-28.46-12.13-26.765-61-36v-25.5c73.886 2.358 255.933 8.551 362.999-3.75-3.5 38.25-7.75 126.5-7.75 126.5H332C320.947 115.665 313.241 68 277.25 68h-137c-10.25 0-10.75 3.5-10.75 9.75V241.5c58 .5 88.5-2.5 88.5-2.5 29.77-.951 27.56-8.502 40.75-65.251h25.75c-4.407 101.351-3.91 61.829-1.75 160.25H257c-9.155-40.086-9.065-61.045-39.501-61.5 0 0-21.5-2-88-2v139c0 26 14.25 38.25 44.25 38.25H263c63.636 0 66.564-24.996 98.751-99.75H384z"] }; +var faExpeditedssl = { prefix: 'fab', iconName: 'expeditedssl', icon: [496, 512, [], "f23e", "M248 43.4C130.6 43.4 35.4 138.6 35.4 256S130.6 468.6 248 468.6 460.6 373.4 460.6 256 365.4 43.4 248 43.4zm-97.4 132.9c0-53.7 43.7-97.4 97.4-97.4s97.4 43.7 97.4 97.4v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6c0-82.1-124-82.1-124 0v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6zM389.7 380c0 9.7-8 17.7-17.7 17.7H124c-9.7 0-17.7-8-17.7-17.7V238.3c0-9.7 8-17.7 17.7-17.7h248c9.7 0 17.7 8 17.7 17.7V380zm-248-137.3v132.9c0 2.5-1.9 4.4-4.4 4.4h-8.9c-2.5 0-4.4-1.9-4.4-4.4V242.7c0-2.5 1.9-4.4 4.4-4.4h8.9c2.5 0 4.4 1.9 4.4 4.4zm141.7 48.7c0 13-7.2 24.4-17.7 30.4v31.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-31.6c-10.5-6.1-17.7-17.4-17.7-30.4 0-19.7 15.8-35.4 35.4-35.4s35.5 15.8 35.5 35.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 478.3C121 486.3 17.7 383 17.7 256S121 25.7 248 25.7 478.3 129 478.3 256 375 486.3 248 486.3z"] }; +var faFacebook = { prefix: 'fab', iconName: 'facebook', icon: [448, 512, [], "f09a", "M448 56.7v398.5c0 13.7-11.1 24.7-24.7 24.7H309.1V306.5h58.2l8.7-67.6h-67v-43.2c0-19.6 5.4-32.9 33.5-32.9h35.8v-60.5c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9h-58.4v67.6h58.4V480H24.7C11.1 480 0 468.9 0 455.3V56.7C0 43.1 11.1 32 24.7 32h398.5c13.7 0 24.8 11.1 24.8 24.7z"] }; +var faFacebookF = { prefix: 'fab', iconName: 'facebook-f', icon: [264, 512, [], "f39e", "M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"] }; +var faFacebookMessenger = { prefix: 'fab', iconName: 'facebook-messenger', icon: [448, 512, [], "f39f", "M224 32C15.9 32-77.5 278 84.6 400.6V480l75.7-42c142.2 39.8 285.4-59.9 285.4-198.7C445.8 124.8 346.5 32 224 32zm23.4 278.1L190 250.5 79.6 311.6l121.1-128.5 57.4 59.6 110.4-61.1-121.1 128.5z"] }; +var faFacebookSquare = { prefix: 'fab', iconName: 'facebook-square', icon: [448, 512, [], "f082", "M448 80v352c0 26.5-21.5 48-48 48h-85.3V302.8h60.6l8.7-67.6h-69.3V192c0-19.6 5.4-32.9 33.5-32.9H384V98.7c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9H184v67.6h60.9V480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z"] }; +var faFirefox = { prefix: 'fab', iconName: 'firefox', icon: [480, 512, [], "f269", "M478.1 235.3c-.7-4.5-1.4-7.1-1.4-7.1s-1.8 2-4.7 5.9c-.9-10.7-2.8-21.2-5.8-31.6-3.7-12.9-8.5-25.4-14.5-37.4-3.8-8-8.2-15.6-13.3-22.8-1.8-2.7-3.7-5.4-5.6-7.9-8.8-14.4-19-23.3-30.7-40-7.6-12.8-12.9-26.9-15.4-41.6-3.2 8.9-5.7 18-7.4 27.3-12.1-12.2-22.5-20.8-28.9-26.7C319.4 24.2 323 9.1 323 9.1S264.7 74.2 289.9 142c8.7 23 23.8 43.1 43.4 57.9 24.4 20.2 50.8 36 64.7 76.6-11.2-21.3-28.1-39.2-48.8-51.5 6.2 14.7 9.4 30.6 9.3 46.5 0 61-49.6 110.5-110.6 110.4-8.3 0-16.5-.9-24.5-2.8-9.5-1.8-18.7-4.9-27.4-9.3-12.9-7.8-24-18.1-32.8-30.3l-.2-.3 2 .7c4.6 1.6 9.2 2.8 14 3.7 18.7 4 38.3 1.7 55.6-6.6 17.5-9.7 28-16.9 36.6-14h.2c8.4 2.7 15-5.5 9-14-10.4-13.4-27.4-20-44.2-17-17.5 2.5-33.5 15-56.4 2.9-1.5-.8-2.9-1.6-4.3-2.5-1.6-.9 4.9 1.3 3.4.3-5-2.5-9.8-5.4-14.4-8.6-.3-.3 3.5 1.1 3.1.8-5.9-4-11-9.2-15-15.2-4.1-7.4-4.5-16.4-1-24.1 2.1-3.8 5.4-6.9 9.3-8.7 3 1.5 4.8 2.6 4.8 2.6s-1.3-2.5-2.1-3.8c.3-.1.5 0 .8-.2 2.6 1.1 8.3 4 11.4 5.8 2.1 1.1 3.8 2.7 5.2 4.7 0 0 1-.5.3-2.7-1.1-2.7-2.9-5-5.4-6.6h.2c2.3 1.2 4.5 2.6 6.6 4.1 1.9-4.4 2.8-9.2 2.6-14 .2-2.6-.2-5.3-1.1-7.8-.8-1.6.5-2.2 1.9-.5-.2-1.3-.7-2.5-1.2-3.7v-.1s.8-1.1 1.2-1.5c1-1 2.1-1.9 3.4-2.7 7.2-4.5 14.8-8.4 22.7-11.6 6.4-2.8 11.7-4.9 12.8-5.6 1.6-1 3.1-2.2 4.5-3.5 5.3-4.5 9-10.8 10.2-17.7.1-.9.2-1.8.3-2.8v-1.5c-.9-3.5-6.9-6.1-38.4-9.1-11.1-1.8-20-10.1-22.5-21.1v.1c-.4 1.1-.9 2.3-1.3 3.5.4-1.2.8-2.3 1.3-3.5v-.2c6-15.7 16.8-29.1 30.8-38.3.8-.7-3.2.2-2.4-.5 2.7-1.3 5.4-2.5 8.2-3.5 1.4-.6-6-3.4-12.6-2.7-4 .2-8 1.2-11.7 2.8 1.6-1.3 6.2-3.1 5.1-3.1-8.4 1.6-16.5 4.7-23.9 9 0-.8.1-1.5.5-2.2-5.9 2.5-11 6.5-15 11.5.1-.9.2-1.8.2-2.7-2.7 2-5.2 4.3-7.3 6.9l-.1.1c-17.4-6.7-36.3-8.3-54.6-4.7l-.2-.1h.2c-3.8-3.1-7.1-6.7-9.7-10.9l-.2.1-.4-.2c-1.2-1.8-2.4-3.8-3.7-6-.9-1.6-1.8-3.4-2.7-5.2 0-.1-.1-.2-.2-.2-.4 0-.6 1.7-.9 1.3v-.1c-3.2-8.3-4.7-17.2-4.4-26.2l-.2.1c-5.1 3.5-9 8.6-11.1 14.5-.9 2.1-1.6 3.3-2.2 4.5v-.5c.1-1.1.6-3.3.5-3.1-.1.2-.2.3-.3.4-1.5 1.7-2.9 3.7-3.9 5.8-.9 1.9-1.7 3.9-2.3 5.9-.1.3 0-.3 0-1s.1-2 0-1.7l-.3.7c-6.7 14.9-10.9 30.8-12.4 47.1-.4 2.8-.6 5.6-.5 8.3v.2c-4.8 5.2-9 11-12.7 17.1-12.1 20.4-21.1 42.5-26.8 65.6 4-8.8 8.8-17.2 14.3-25.1C5.5 228.5 0 257.4 0 286.6c1.8-8.6 4.2-17 7-25.3-1.7 34.5 4.9 68.9 19.4 100.3 19.4 43.5 51.6 80 92.3 104.7 16.6 11.2 34.7 19.9 53.8 25.8 2.5.9 5.1 1.8 7.7 2.7-.8-.3-1.6-.7-2.4-1 22.6 6.8 46.2 10.3 69.8 10.3 83.7 0 111.3-31.9 113.8-35 4.1-3.7 7.5-8.2 9.9-13.3 1.6-.7 3.2-1.4 4.9-2.1l1-.5 1.9-.9c12.6-5.9 24.5-13.4 35.3-22.1 16.3-11.7 27.9-28.7 32.9-48.1 3-7.1 3.1-15 .4-22.2.9-1.4 1.7-2.8 2.7-4.3 18-28.9 28.2-61.9 29.6-95.9v-2.8c0-7.3-.6-14.5-1.9-21.6z"] }; +var faFirstOrder = { prefix: 'fab', iconName: 'first-order', icon: [448, 512, [], "f2b0", "M12.9 229.2c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4h-.2zM224 96.6c-7.1 0-14.6.6-21.4 1.7l3.7 67.4-22-64c-14.3 3.7-27.7 9.4-40 16.6l29.4 61.4-45.1-50.9c-11.4 8.9-21.7 19.1-30.6 30.9l50.6 45.4-61.1-29.7c-7.1 12.3-12.9 25.7-16.6 40l64.3 22.6-68-4c-.9 7.1-1.4 14.6-1.4 22s.6 14.6 1.4 21.7l67.7-4-64 22.6c3.7 14.3 9.4 27.7 16.6 40.3l61.1-29.7L97.7 352c8.9 11.7 19.1 22.3 30.9 30.9l44.9-50.9-29.5 61.4c12.3 7.4 25.7 13.1 40 16.9l22.3-64.6-4 68c7.1 1.1 14.6 1.7 21.7 1.7 7.4 0 14.6-.6 21.7-1.7l-4-68.6 22.6 65.1c14.3-4 27.7-9.4 40-16.9L274.9 332l44.9 50.9c11.7-8.9 22-19.1 30.6-30.9l-50.6-45.1 61.1 29.4c7.1-12.3 12.9-25.7 16.6-40.3l-64-22.3 67.4 4c1.1-7.1 1.4-14.3 1.4-21.7s-.3-14.9-1.4-22l-67.7 4 64-22.3c-3.7-14.3-9.1-28-16.6-40.3l-60.9 29.7 50.6-45.4c-8.9-11.7-19.1-22-30.6-30.9l-45.1 50.9 29.4-61.1c-12.3-7.4-25.7-13.1-40-16.9L241.7 166l4-67.7c-7.1-1.2-14.3-1.7-21.7-1.7zM443.4 128v256L224 512 4.6 384V128L224 0l219.4 128zm-17.1 10.3L224 20.9 21.7 138.3v235.1L224 491.1l202.3-117.7V138.3zM224 37.1l187.7 109.4v218.9L224 474.9 36.3 365.4V146.6L224 37.1zm0 50.9c-92.3 0-166.9 75.1-166.9 168 0 92.6 74.6 167.7 166.9 167.7 92 0 166.9-75.1 166.9-167.7 0-92.9-74.9-168-166.9-168z"] }; +var faFirstOrderAlt = { prefix: 'fab', iconName: 'first-order-alt', icon: [496, 512, [], "f50a", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 488.21C115.34 496.21 7.79 388.66 7.79 256S115.34 15.79 248 15.79 488.21 123.34 488.21 256 380.66 496.21 248 496.21zm0-459.92C126.66 36.29 28.29 134.66 28.29 256S126.66 475.71 248 475.71 467.71 377.34 467.71 256 369.34 36.29 248 36.29zm0 431.22c-116.81 0-211.51-94.69-211.51-211.51S131.19 44.49 248 44.49 459.51 139.19 459.51 256 364.81 467.51 248 467.51zm186.23-162.98a191.613 191.613 0 0 1-20.13 48.69l-74.13-35.88 61.48 54.82a193.515 193.515 0 0 1-37.2 37.29l-54.8-61.57 35.88 74.27a190.944 190.944 0 0 1-48.63 20.23l-27.29-78.47 4.79 82.93c-8.61 1.18-17.4 1.8-26.33 1.8s-17.72-.62-26.33-1.8l4.76-82.46-27.15 78.03a191.365 191.365 0 0 1-48.65-20.2l35.93-74.34-54.87 61.64a193.85 193.85 0 0 1-37.22-37.28l61.59-54.9-74.26 35.93a191.638 191.638 0 0 1-20.14-48.69l77.84-27.11-82.23 4.76c-1.16-8.57-1.78-17.32-1.78-26.21 0-9 .63-17.84 1.82-26.51l82.38 4.77-77.94-27.16a191.726 191.726 0 0 1 20.23-48.67l74.22 35.92-61.52-54.86a193.85 193.85 0 0 1 37.28-37.22l54.76 61.53-35.83-74.17a191.49 191.49 0 0 1 48.65-20.13l26.87 77.25-4.71-81.61c8.61-1.18 17.39-1.8 26.32-1.8s17.71.62 26.32 1.8l-4.74 82.16 27.05-77.76c17.27 4.5 33.6 11.35 48.63 20.17l-35.82 74.12 54.72-61.47a193.13 193.13 0 0 1 37.24 37.23l-61.45 54.77 74.12-35.86a191.515 191.515 0 0 1 20.2 48.65l-77.81 27.1 82.24-4.75c1.19 8.66 1.82 17.5 1.82 26.49 0 8.88-.61 17.63-1.78 26.19l-82.12-4.75 77.72 27.09z"] }; +var faFirstdraft = { prefix: 'fab', iconName: 'firstdraft', icon: [384, 512, [], "f3a1", "M384 192h-64v128H192v128H0v-25.6h166.4v-128h128v-128H384V192zm-25.6 38.4v128h-128v128H64V512h192V384h128V230.4h-25.6zm25.6 192h-89.6V512H320v-64h64v-25.6zM0 0v384h128V256h128V128h128V0H0z"] }; +var faFlickr = { prefix: 'fab', iconName: 'flickr', icon: [448, 512, [], "f16e", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5zm159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5z"] }; +var faFlipboard = { prefix: 'fab', iconName: 'flipboard', icon: [448, 512, [], "f44d", "M0 32v448h448V32H0zm358.4 179.2h-89.6v89.6h-89.6v89.6H89.6V121.6h268.8v89.6z"] }; +var faFly = { prefix: 'fab', iconName: 'fly', icon: [384, 512, [], "f417", "M197.8 427.8c12.9 11.7 33.7 33.3 33.2 50.7 0 .8-.1 1.6-.1 2.5-1.8 19.8-18.8 31.1-39.1 31-25-.1-39.9-16.8-38.7-35.8 1-16.2 20.5-36.7 32.4-47.6 2.3-2.1 2.7-2.7 5.6-3.6 3.4 0 3.9.3 6.7 2.8zM331.9 67.3c-16.3-25.7-38.6-40.6-63.3-52.1C243.1 4.5 214-.2 192 0c-44.1 0-71.2 13.2-81.1 17.3C57.3 45.2 26.5 87.2 28 158.6c7.1 82.2 97 176 155.8 233.8 1.7 1.6 4.5 4.5 6.2 5.1l3.3.1c2.1-.7 1.8-.5 3.5-2.1 52.3-49.2 140.7-145.8 155.9-215.7 7-39.2 3.1-72.5-20.8-112.5zM186.8 351.9c-28-51.1-65.2-130.7-69.3-189-3.4-47.5 11.4-131.2 69.3-136.7v325.7zM328.7 180c-16.4 56.8-77.3 128-118.9 170.3C237.6 298.4 275 217 277 158.4c1.6-45.9-9.8-105.8-48-131.4 88.8 18.3 115.5 98.1 99.7 153z"] }; +var faFontAwesome = { prefix: 'fab', iconName: 'font-awesome', icon: [448, 512, [], "f2b4", "M397.8 32H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-45.4 284.3c0 4.2-3.6 6-7.8 7.8-16.7 7.2-34.6 13.7-53.8 13.7-26.9 0-39.4-16.7-71.7-16.7-23.3 0-47.8 8.4-67.5 17.3-1.2.6-2.4.6-3.6 1.2V385c0 1.8 0 3.6-.6 4.8v1.2c-2.4 8.4-10.2 14.3-19.1 14.3-11.3 0-20.3-9-20.3-20.3V166.4c-7.8-6-13.1-15.5-13.1-26.3 0-18.5 14.9-33.5 33.5-33.5 18.5 0 33.5 14.9 33.5 33.5 0 10.8-4.8 20.3-13.1 26.3v18.5c1.8-.6 3.6-1.2 5.4-2.4 18.5-7.8 40.6-14.3 61.5-14.3 22.7 0 40.6 6 60.9 13.7 4.2 1.8 8.4 2.4 13.1 2.4 22.7 0 47.8-16.1 53.8-16.1 4.8 0 9 3.6 9 7.8v140.3z"] }; +var faFontAwesomeAlt = { prefix: 'fab', iconName: 'font-awesome-alt', icon: [448, 512, [], "f35c", "M397.8 67.8c7.8 0 14.3 6.6 14.3 14.3v347.6c0 7.8-6.6 14.3-14.3 14.3H50.2c-7.8 0-14.3-6.6-14.3-14.3V82.2c0-7.8 6.6-14.3 14.3-14.3h347.6m0-35.9H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-58.5 139.2c-6 0-29.9 15.5-52.6 15.5-4.2 0-8.4-.6-12.5-2.4-19.7-7.8-37-13.7-59.1-13.7-20.3 0-41.8 6.6-59.7 13.7-1.8.6-3.6 1.2-4.8 1.8v-17.9c7.8-6 12.5-14.9 12.5-25.7 0-17.9-14.3-32.3-32.3-32.3s-32.3 14.3-32.3 32.3c0 10.2 4.8 19.7 12.5 25.7v212.1c0 10.8 9 19.7 19.7 19.7 9 0 16.1-6 18.5-13.7V385c.6-1.8.6-3 .6-4.8V336c1.2 0 2.4-.6 3-1.2 19.7-8.4 43-16.7 65.7-16.7 31.1 0 43 16.1 69.3 16.1 18.5 0 36.4-6.6 52-13.7 4.2-1.8 7.2-3.6 7.2-7.8V178.3c1.8-4.1-2.3-7.1-7.7-7.1z"] }; +var faFontAwesomeFlag = { prefix: 'fab', iconName: 'font-awesome-flag', icon: [448, 512, [], "f425", "M444.373 359.424c0 7.168-6.144 10.24-13.312 13.312-28.672 12.288-59.392 23.552-92.16 23.552-46.08 0-67.584-28.672-122.88-28.672-39.936 0-81.92 14.336-115.712 29.696-2.048 1.024-4.096 1.024-6.144 2.048v77.824c0 21.405-16.122 34.816-33.792 34.816-19.456 0-34.816-15.36-34.816-34.816V102.4C12.245 92.16 3.029 75.776 3.029 57.344 3.029 25.6 28.629 0 60.373 0s57.344 25.6 57.344 57.344c0 18.432-8.192 34.816-22.528 45.056v31.744c4.124-1.374 58.768-28.672 114.688-28.672 65.27 0 97.676 27.648 126.976 27.648 38.912 0 81.92-27.648 92.16-27.648 8.192 0 15.36 6.144 15.36 13.312v240.64z"] }; +var faFontAwesomeLogoFull = { prefix: 'fab', iconName: 'font-awesome-logo-full', icon: [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"] }; +var faFonticons = { prefix: 'fab', iconName: 'fonticons', icon: [448, 512, [], "f280", "M0 32v448h448V32H0zm167.4 196h67.4l-11.1 37.3H168v112.9c0 5.8-2 6.7 3.2 7.3l43.5 4.1v25.1H84V389l21.3-2c5.2-.6 6.7-2.3 6.7-7.9V267.7c0-2.3-2.9-2.3-5.8-2.3H84V228h28v-21c0-49.6 26.5-70 77.3-70 34.1 0 64.7 8.2 64.7 52.8l-50.7 6.1c.3-18.7-4.4-23-16.3-23-18.4 0-19 9.9-19 27.4v23.3c0 2.4-3.5 4.4-.6 4.4zM364 414.7H261.3v-25.1l20.4-2.6c5.2-.6 7.6-1.7 7.6-7.3V271.8c0-4.1-2.9-6.7-6.7-7.9l-24.2-6.4 6.7-29.5h80.2v151.7c0 5.8-2.6 6.4 2.9 7.3l15.7 2.6v25.1zm-21.9-255.5l9 33.2-7.3 7.3-31.2-16.6-31.2 16.6-7.3-7.3 9-33.2-21.8-24.2 3.5-9.6h27.7l15.5-28h9.3l15.5 28h27.7l3.5 9.6-21.9 24.2z"] }; +var faFonticonsFi = { prefix: 'fab', iconName: 'fonticons-fi', icon: [384, 512, [], "f3a2", "M114.4 224h92.4l-15.2 51.2h-76.4V433c0 8-2.8 9.2 4.4 10l59.6 5.6V483H0v-35.2l29.2-2.8c7.2-.8 9.2-3.2 9.2-10.8V278.4c0-3.2-4-3.2-8-3.2H0V224h38.4v-28.8c0-68 36.4-96 106-96 46.8 0 88.8 11.2 88.8 72.4l-69.6 8.4c.4-25.6-6-31.6-22.4-31.6-25.2 0-26 13.6-26 37.6v32c0 3.2-4.8 6-.8 6zM384 483H243.2v-34.4l28-3.6c7.2-.8 10.4-2.4 10.4-10V287c0-5.6-4-9.2-9.2-10.8l-33.2-8.8 9.2-40.4h110v208c0 8-3.6 8.8 4 10l21.6 3.6V483zm-30-347.2l12.4 45.6-10 10-42.8-22.8-42.8 22.8-10-10 12.4-45.6-30-36.4 4.8-10h38L307.2 51H320l21.2 38.4h38l4.8 13.2-30 33.2z"] }; +var faFortAwesome = { prefix: 'fab', iconName: 'fort-awesome', icon: [512, 512, [], "f286", "M489.2 287.9h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6V146.2c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-6-8-4.6-11.7-4.6v-38c8.3-2 17.1-3.4 25.7-3.4 10.9 0 20.9 4.3 31.4 4.3 4.6 0 27.7-1.1 27.7-8v-60c0-2.6-2-4.6-4.6-4.6-5.1 0-15.1 4.3-24 4.3-9.7 0-20.9-4.3-32.6-4.3-8 0-16 1.1-23.7 2.9v-4.9c5.4-2.6 9.1-8.3 9.1-14.3 0-20.7-31.4-20.8-31.4 0 0 6 3.7 11.7 9.1 14.3v111.7c-3.7 0-11.7-1.4-11.7 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32H128v-32c0-2.6-2-4.6-4.6-4.6H96c-2.6 0-4.6 2-4.6 4.6v178.3H54.8v-32c0-2.6-2-4.6-4.6-4.6H22.8c-2.6 0-4.6 2-4.6 4.6V512h182.9v-96c0-72.6 109.7-72.6 109.7 0v96h182.9V292.5c.1-2.6-1.9-4.6-4.5-4.6zm-288.1-4.5c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64zm146.4 0c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64z"] }; +var faFortAwesomeAlt = { prefix: 'fab', iconName: 'fort-awesome-alt', icon: [512, 512, [], "f3a3", "M211.7 241.1v51.7c0 2.1-1.6 3.7-3.7 3.7h-22.2c-2.1 0-3.7-1.6-3.7-3.7v-51.7c0-2.1 1.6-3.7 3.7-3.7H208c2.1 0 3.7 1.6 3.7 3.7zm114.5-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7h22.2c2.1 0 3.7-1.6 3.7-3.7v-51.7c-.1-2.1-1.7-3.7-3.7-3.7zm-29.1 263.2c-.9.1-1.7.3-2.6.4-1 .2-2.1.3-3.1.5-.9.1-1.8.3-2.8.4-1 .1-2 .3-3 .4-1 .1-2 .2-2.9.3-1 .1-1.9.2-2.9.3-1 .1-2.1.2-3.1.3-.9.1-1.8.2-2.7.2-1.1.1-2.3.1-3.4.2-.8 0-1.7.1-2.5.1-1.3.1-2.6.1-3.9.1-.7 0-1.4.1-2.1.1-2 0-4 .1-6 .1s-4 0-6-.1c-.7 0-1.4 0-2.1-.1-1.3 0-2.6-.1-3.9-.1-.8 0-1.7-.1-2.5-.1-1.1-.1-2.3-.1-3.4-.2-.9-.1-1.8-.1-2.7-.2-1-.1-2.1-.2-3.1-.3-1-.1-1.9-.2-2.9-.3-1-.1-2-.2-2.9-.3-1-.1-2-.2-3-.4-.9-.1-1.8-.3-2.8-.4-1-.1-2.1-.3-3.1-.5-.9-.1-1.7-.3-2.6-.4-65.6-10.9-122.5-47.7-160-99.4-.2-.2-.3-.5-.5-.7-.8-1.1-1.6-2.2-2.3-3.3-.3-.4-.6-.8-.8-1.2-.7-1.1-1.4-2.1-2.1-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.4-2.1-2-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.3-2.2-2-3.3-.2-.4-.5-.8-.7-1.2-2.4-4-4.6-8.1-6.8-12.2-.1-.2-.2-.3-.3-.5-.6-1.1-1.1-2.2-1.7-3.3-.3-.6-.6-1.1-.8-1.7-.5-1-1-2.1-1.5-3.1-.3-.7-.6-1.3-.9-2-.5-1-.9-2-1.4-3l-.9-2.1c-.4-1-.9-2-1.3-3-.3-.7-.6-1.5-.9-2.2l-1.2-3c-.3-.8-.6-1.5-.9-2.3-.4-1-.8-2-1.1-3-.3-.9-.6-1.8-1-2.8-.6-1.6-1.1-3.3-1.7-4.9-.3-.9-.6-1.8-.9-2.8-.3-.9-.5-1.8-.8-2.7-.3-.9-.6-1.9-.8-2.8-.3-.9-.5-1.8-.8-2.7-.3-1-.5-1.9-.8-2.9-.2-.9-.5-1.8-.7-2.7-.3-1-.5-2-.7-3-.2-.9-.4-1.7-.6-2.6-.2-1.1-.5-2.2-.7-3.2-.2-.8-.3-1.6-.5-2.4-.3-1.3-.5-2.7-.8-4-.1-.6-.2-1.1-.3-1.7l-.9-5.7c-.1-.6-.2-1.3-.3-1.9-.2-1.3-.4-2.6-.5-3.9-.1-.8-.2-1.5-.3-2.3-.1-1.2-.3-2.4-.4-3.6-.1-.8-.2-1.6-.2-2.4-.1-1.2-.2-2.4-.3-3.5-.1-.8-.1-1.6-.2-2.4-.1-1.2-.2-2.4-.2-3.7 0-.8-.1-1.5-.1-2.3-.1-1.3-.1-2.7-.2-4 0-.7 0-1.3-.1-2 0-2-.1-4-.1-6 0-53.5 16.9-103 45.8-143.6 2.3-3.2 4.7-6.4 7.1-9.5 4.9-6.2 10.1-12.3 15.6-18 2.7-2.9 5.5-5.7 8.4-8.4 2.9-2.7 5.8-5.4 8.8-8 4.5-3.9 9.1-7.6 13.9-11.2 1.6-1.2 3.2-2.4 4.8-3.5C140 34.2 171.7 20.1 206 13c16.1-3.3 32.9-5 50-5s33.8 1.7 50 5c34.3 7 66 21.1 93.6 40.7 1.6 1.2 3.2 2.3 4.8 3.5 4.8 3.6 9.4 7.3 13.9 11.2 12 10.4 23 21.9 32.8 34.4 2.5 3.1 4.8 6.3 7.1 9.5C487.1 153 504 202.5 504 256c0 2 0 4-.1 6 0 .7 0 1.3-.1 2 0 1.3-.1 2.7-.2 4 0 .8-.1 1.5-.1 2.3-.1 1.2-.1 2.4-.2.7-.1.8-.1 1.6-.2 2.4-.1 1.2-.2 2.4-.3 3.5-.1.8-.2 1.6-.2 2.4-.1 1.2-.3 2.4-.4 3.6-.1.8-.2 1.5-.3 2.3-.2 1.3-.4 2.6-.5 3.9-.1.6-.2 1.3-.3 1.9l-.9 5.7c-.1.6-.2 1.1-.3 1.7-.2 1.3-.5 2.7-.8 4-.2.8-.3 1.6-.5 2.4-.2 1.1-.5 2.2-.7 3.2-.2.9-.4 1.7-.6 2.6-.2 1-.5 2-.7 3-.2.9-.5 1.8-.7 2.7-.3 1-.5 1.9-.8 2.9-.2.9-.5 1.8-.8 2.7-.3.9-.6 1.9-.8 2.8-.3.9-.5 1.8-.8 2.7-.3.9-.6 1.8-.9 2.8-.5 1.6-1.1 3.3-1.7 4.9-.3.9-.6 1.8-1 2.8-.4 1-.7 2-1.1 3-.3.8-.6 1.5-.9 2.3l-1.2 3c-.3.7-.6 1.5-.9 2.2-.4 1-.8 2-1.3 3l-.9 2.1c-.4 1-.9 2-1.4 3-.3.7-.6 1.3-.9 2-.5 1-1 2.1-1.5 3.1-.3.6-.6 1.1-.8 1.7-.6 1.1-1.1 2.2-1.7 3.3-.1.2-.2.3-.3.5-2.2 4.1-4.4 8.2-6.8 12.2-.2.4-.5.8-.7 1.2-.7 1.1-1.3 2.2-2 3.3-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2 3.2-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2.1 3.2-.3.4-.6.8-.8 1.2-.8 1.1-1.5 2.2-2.3 3.3-.2.2-.3.5-.5.7-37.6 54.7-94.5 91.4-160.1 102.4zm117.3-86.2c13-13 24.2-27.4 33.6-42.9v-71.3c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7V326h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-4.8-6.5-3.7-9.5-3.7v-30.7c6.7-1.6 13.8-2.8 20.8-2.8 8.8 0 16.8 3.5 25.4 3.5 3.7 0 22.4-.9 22.4-6.5V93.4c0-2.1-1.6-3.7-3.7-3.7-4.2 0-12.2 3.5-19.4 3.5-7.9 0-16.9-3.5-26.3-3.5-6.5 0-12.9.9-19.2 2.3v-3.9c4.4-2.1 7.4-6.7 7.4-11.5 0-16.8-25.4-16.8-25.4 0 0 4.8 3 9.5 7.4 11.5v90.2c-3 0-9.5-1.1-9.5 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v144H93.5v-25.8c0-2.1-1.6-3.7-3.7-3.7H67.7c-2.1 0-3.7 1.6-3.7 3.7v71.3c9.4 15.5 20.6 29.9 33.6 42.9 20.6 20.6 44.5 36.7 71.2 48 13.9 5.9 28.2 10.3 42.9 13.2v-75.8c0-58.6 88.6-58.6 88.6 0v75.8c14.7-2.9 29-7.4 42.9-13.2 26.7-11.3 50.6-27.4 71.2-48"] }; +var faForumbee = { prefix: 'fab', iconName: 'forumbee', icon: [448, 512, [], "f211", "M5.8 309.7C2 292.7 0 275.5 0 258.3 0 135 99.8 35 223.1 35c16.6 0 33.3 2 49.3 5.5C149 87.5 51.9 186 5.8 309.7zm392.9-189.2C385 103 369 87.8 350.9 75.2c-149.6 44.3-266.3 162.1-309.7 312 12.5 18.1 28 35.6 45.2 49 43.1-151.3 161.2-271.7 312.3-315.7zm15.8 252.7c15.2-25.1 25.4-53.7 29.5-82.8-79.4 42.9-145 110.6-187.6 190.3 30-4.4 58.9-15.3 84.6-31.3 35 13.1 70.9 24.3 107 33.6-9.3-36.5-20.4-74.5-33.5-109.8zm29.7-145.5c-2.6-19.5-7.9-38.7-15.8-56.8C290.5 216.7 182 327.5 137.1 466c18.1 7.6 37 12.5 56.6 15.2C240 367.1 330.5 274.4 444.2 227.7z"] }; +var faFoursquare = { prefix: 'fab', iconName: 'foursquare', icon: [368, 512, [], "f180", "M323.1 3H49.9C12.4 3 0 31.3 0 49.1v433.8c0 20.3 12.1 27.7 18.2 30.1 6.2 2.5 22.8 4.6 32.9-7.1C180 356.5 182.2 354 182.2 354c3.1-3.4 3.4-3.1 6.8-3.1h83.4c35.1 0 40.6-25.2 44.3-39.7l48.6-243C373.8 25.8 363.1 3 323.1 3zm-16.3 73.8l-11.4 59.7c-1.2 6.5-9.5 13.2-16.9 13.2H172.1c-12 0-20.6 8.3-20.6 20.3v13c0 12 8.6 20.6 20.6 20.6h90.4c8.3 0 16.6 9.2 14.8 18.2-1.8 8.9-10.5 53.8-11.4 58.8-.9 4.9-6.8 13.5-16.9 13.5h-73.5c-13.5 0-17.2 1.8-26.5 12.6 0 0-8.9 11.4-89.5 108.3-.9.9-1.8.6-1.8-.3V75.9c0-7.7 6.8-16.6 16.6-16.6h219c8.2 0 15.6 7.7 13.5 17.5z"] }; +var faFreeCodeCamp = { prefix: 'fab', iconName: 'free-code-camp', icon: [576, 512, [], "f2c5", "M69.3 144.5c-41 68.5-36.4 163 1 227C92.5 409.7 120 423.9 120 438c0 6.8-6 13-12.8 13C87.7 451 8 375.5 8 253.2c0-111.5 78-186 97.1-186 6 0 14.9 4.8 14.9 11.1 0 12.7-28.3 28.6-50.7 66.2zm195.8 213.8c4.5 1.8 12.3 5.2 12.3-1.2 0-2.7-2.2-2.9-4.3-3.6-8.5-3.4-14-7.7-19.1-15.2-8.2-12.1-10.1-24.2-10.1-38.6 0-32.1 44.2-37.9 44.2-70 0-12.3-7.7-15.9-7.7-19.3 0-2.2.7-2.2 2.9-2.2 8 0 19.1 13.3 22.5 19.8 2.2 4.6 2.4 6 2.4 11.1 0 7-.7 14.2-.7 21.3 0 27 31.9 19.8 31.9 6.8 0-6-3.6-11.6-3.6-17.4 0-.7 0-1.2.7-1.2 3.4 0 9.4 7.7 11.1 10.1 5.8 8.9 8.5 20.8 8.5 31.4 0 32.4-29.5 49-29.5 56 0 1 2.9 7.7 12.1 1.9 29.7-15.1 53.1-47.6 53.1-89.8 0-33.6-8.7-57.7-32.1-82.6-3.9-4.1-16.4-16.9-22.5-16.9-8.2 0 7.2 18.6 7.2 31.2 0 7.2-4.8 12.3-12.3 12.3-11.6 0-14.5-25.4-15.9-33.3-5.8-33.8-12.8-58.2-46.4-74.1-10.4-5-36.5-11.8-36.5-2.2 0 2.4 2.7 4.1 4.6 5.1 9.2 5.6 19.6 21.4 19.6 38.2 0 46.1-57.7 88.2-57.7 136.2-.2 40.3 28.1 72.6 65.3 86.2zM470.4 67c-6 0-14.4 6.5-14.4 12.6 0 8.7 12.1 19.6 17.6 25.4 81.6 85.1 78.6 214.3 17.6 291-7 8.9-35.3 35.3-35.3 43.5 0 5.1 8.2 11.4 13.2 11.4 25.4 0 98.8-80.8 98.8-185.7C568 145.9 491.8 67 470.4 67zm-42.3 323.1H167c-9.4 0-15.5 7.5-15.5 16.4 0 8.5 7 15.5 15.5 15.5h261.1c9.4 0 11.9-7.5 11.9-16.4 0-8.5-3.5-15.5-11.9-15.5z"] }; +var faFreebsd = { prefix: 'fab', iconName: 'freebsd', icon: [448, 512, [], "f3a4", "M303.7 96.2c11.1-11.1 115.5-77 139.2-53.2 23.7 23.7-42.1 128.1-53.2 139.2-11.1 11.1-39.4.9-63.1-22.9-23.8-23.7-34.1-52-22.9-63.1zM109.9 68.1C73.6 47.5 22 24.6 5.6 41.1c-16.6 16.6 7.1 69.4 27.9 105.7 18.5-32.2 44.8-59.3 76.4-78.7zM406.7 174c3.3 11.3 2.7 20.7-2.7 26.1-20.3 20.3-87.5-27-109.3-70.1-18-32.3-11.1-53.4 14.9-48.7 5.7-3.6 12.3-7.6 19.6-11.6-29.8-15.5-63.6-24.3-99.5-24.3-119.1 0-215.6 96.5-215.6 215.6 0 119 96.5 215.6 215.6 215.6S445.3 380.1 445.3 261c0-38.4-10.1-74.5-27.7-105.8-3.9 7-7.6 13.3-10.9 18.8z"] }; +var faFulcrum = { prefix: 'fab', iconName: 'fulcrum', icon: [269, 512, [], "f50b", "M70.75 164.14l-35.38 43.55L0 164.14l35.38-43.55 35.37 43.55zM119.23 0L98.69 198.18 47.72 256l50.98 57.82L119.23 512V300.89L78.15 256l41.08-44.89V0zm79.67 164.14l35.38 43.55 35.38-43.55-35.38-43.55-35.38 43.55zm-48.48 46.97L191.5 256l-41.08 44.89V512l20.54-198.18L221.94 256l-50.98-57.82L150.42 0v211.11z"] }; +var faGalacticRepublic = { prefix: 'fab', iconName: 'galactic-republic', icon: [496, 512, [], "f50c", "M248 504C111.25 504 0 392.75 0 256S111.25 8 248 8s248 111.25 248 248-111.25 248-248 248zm0-479.47C120.37 24.53 16.53 128.37 16.53 256S120.37 487.47 248 487.47 479.47 383.63 479.47 256 375.63 24.53 248 24.53zm27.62 21.81v24.62a185.933 185.933 0 0 1 83.57 34.54l17.39-17.36c-28.75-22.06-63.3-36.89-100.96-41.8zm-55.37.07c-37.64 4.94-72.16 19.8-100.88 41.85l17.28 17.36h.08c24.07-17.84 52.55-30.06 83.52-34.67V46.41zm12.25 50.17v82.87c-10.04 2.03-19.42 5.94-27.67 11.42l-58.62-58.59-21.93 21.93 58.67 58.67c-5.47 8.23-9.45 17.59-11.47 27.62h-82.9v31h82.9c2.02 10.02 6.01 19.31 11.47 27.54l-58.67 58.69 21.93 21.93 58.62-58.62a77.873 77.873 0 0 0 27.67 11.47v82.9h31v-82.9c10.05-2.03 19.37-6.06 27.62-11.55l58.67 58.69 21.93-21.93-58.67-58.69c5.46-8.23 9.47-17.52 11.5-27.54h82.87v-31h-82.87c-2.02-10.02-6.03-19.38-11.5-27.62l58.67-58.67-21.93-21.93-58.67 58.67c-8.25-5.49-17.57-9.47-27.62-11.5V96.58h-31zm183.24 30.72l-17.36 17.36a186.337 186.337 0 0 1 34.67 83.67h24.62c-4.95-37.69-19.83-72.29-41.93-101.03zm-335.55.13c-22.06 28.72-36.91 63.26-41.85 100.91h24.65c4.6-30.96 16.76-59.45 34.59-83.52l-17.39-17.39zM38.34 283.67c4.92 37.64 19.75 72.18 41.8 100.9l17.36-17.39c-17.81-24.07-29.92-52.57-34.51-83.52H38.34zm394.7 0c-4.61 30.99-16.8 59.5-34.67 83.6l17.36 17.36c22.08-28.74 36.98-63.29 41.93-100.96h-24.62zM136.66 406.38l-17.36 17.36c28.73 22.09 63.3 36.98 100.96 41.93v-24.64c-30.99-4.63-59.53-16.79-83.6-34.65zm222.53.05c-24.09 17.84-52.58 30.08-83.57 34.67v24.57c37.67-4.92 72.21-19.79 100.96-41.85l-17.31-17.39h-.08z"] }; +var faGalacticSenate = { prefix: 'fab', iconName: 'galactic-senate', icon: [512, 512, [], "f50d", "M249.86 33.48v26.07C236.28 80.17 226 168.14 225.39 274.9c11.74-15.62 19.13-33.33 19.13-48.24v-16.88c-.03-5.32.75-10.53 2.19-15.65.65-2.14 1.39-4.08 2.62-5.82 1.23-1.75 3.43-3.79 6.68-3.79 3.24 0 5.45 2.05 6.68 3.79 1.23 1.75 1.97 3.68 2.62 5.82 1.44 5.12 2.22 10.33 2.19 15.65v16.88c0 14.91 7.39 32.62 19.13 48.24-.63-106.76-10.91-194.73-24.49-215.35V33.48h-12.28zm-26.34 147.77c-9.52 2.15-18.7 5.19-27.46 9.08 8.9 16.12 9.76 32.64 1.71 37.29-8 4.62-21.85-4.23-31.36-19.82-11.58 8.79-21.88 19.32-30.56 31.09 14.73 9.62 22.89 22.92 18.32 30.66-4.54 7.7-20.03 7.14-35.47-.96-5.78 13.25-9.75 27.51-11.65 42.42 9.68.18 18.67 2.38 26.18 6.04 17.78-.3 32.77-1.96 40.49-4.22 5.55-26.35 23.02-48.23 46.32-59.51.73-25.55 1.88-49.67 3.48-72.07zm64.96 0c1.59 22.4 2.75 46.52 3.47 72.07 23.29 11.28 40.77 33.16 46.32 59.51 7.72 2.26 22.71 3.92 40.49 4.22 7.51-3.66 16.5-5.85 26.18-6.04-1.9-14.91-5.86-29.17-11.65-42.42-15.44 8.1-30.93 8.66-35.47.96-4.57-7.74 3.6-21.05 18.32-30.66-8.68-11.77-18.98-22.3-30.56-31.09-9.51 15.59-23.36 24.44-31.36 19.82-8.05-4.65-7.19-21.16 1.71-37.29a147.49 147.49 0 0 0-27.45-9.08zm-32.48 8.6c-3.23 0-5.86 8.81-6.09 19.93h-.05v16.88c0 41.42-49.01 95.04-93.49 95.04-52 0-122.75-1.45-156.37 29.17v2.51c9.42 17.12 20.58 33.17 33.18 47.97C45.7 380.26 84.77 360.4 141.2 360c45.68 1.02 79.03 20.33 90.76 40.87.01.01-.01.04 0 .05 7.67 2.14 15.85 3.23 24.04 3.21 8.19.02 16.37-1.07 24.04-3.21.01-.01-.01-.04 0-.05 11.74-20.54 45.08-39.85 90.76-40.87 56.43.39 95.49 20.26 108.02 41.35 12.6-14.8 23.76-30.86 33.18-47.97v-2.51c-33.61-30.62-104.37-29.17-156.37-29.17-44.48 0-93.49-53.62-93.49-95.04v-16.88h-.05c-.23-11.12-2.86-19.93-6.09-19.93zm0 96.59c22.42 0 40.6 18.18 40.6 40.6s-18.18 40.65-40.6 40.65-40.6-18.23-40.6-40.65c0-22.42 18.18-40.6 40.6-40.6zm0 7.64c-18.19 0-32.96 14.77-32.96 32.96S237.81 360 256 360s32.96-14.77 32.96-32.96-14.77-32.96-32.96-32.96zm0 6.14c14.81 0 26.82 12.01 26.82 26.82s-12.01 26.82-26.82 26.82-26.82-12.01-26.82-26.82 12.01-26.82 26.82-26.82zm-114.8 66.67c-10.19.07-21.6.36-30.5 1.66.43 4.42 1.51 18.63 7.11 29.76 9.11-2.56 18.36-3.9 27.62-3.9 41.28.94 71.48 34.35 78.26 74.47l.11 4.7c10.4 1.91 21.19 2.94 32.21 2.94 11.03 0 21.81-1.02 32.21-2.94l.11-4.7c6.78-40.12 36.98-73.53 78.26-74.47 9.26 0 18.51 1.34 27.62 3.9 5.6-11.13 6.68-25.34 7.11-29.76-8.9-1.3-20.32-1.58-30.5-1.66-18.76.42-35.19 4.17-48.61 9.67-12.54 16.03-29.16 30.03-49.58 33.07-.09.02-.17.04-.27.05-.05.01-.11.04-.16.05-5.24 1.07-10.63 1.6-16.19 1.6-5.55 0-10.95-.53-16.19-1.6-.05-.01-.11-.04-.16-.05-.1-.02-.17-.04-.27-.05-20.42-3.03-37.03-17.04-49.58-33.07-13.42-5.49-29.86-9.25-48.61-9.67z"] }; +var faGetPocket = { prefix: 'fab', iconName: 'get-pocket', icon: [448, 512, [], "f265", "M407.6 64h-367C18.5 64 0 82.5 0 104.6v135.2C0 364.5 99.7 464 224.2 464c124 0 223.8-99.5 223.8-224.2V104.6c0-22.4-17.7-40.6-40.4-40.6zm-162 268.5c-12.4 11.8-31.4 11.1-42.4 0C89.5 223.6 88.3 227.4 88.3 209.3c0-16.9 13.8-30.7 30.7-30.7 17 0 16.1 3.8 105.2 89.3 90.6-86.9 88.6-89.3 105.5-89.3 16.9 0 30.7 13.8 30.7 30.7 0 17.8-2.9 15.7-114.8 123.2z"] }; +var faGg = { prefix: 'fab', iconName: 'gg', icon: [512, 512, [], "f260", "M179.2 230.4l102.4 102.4-102.4 102.4L0 256 179.2 76.8l44.8 44.8-25.6 25.6-19.2-19.2-128 128 128 128 51.5-51.5-77.1-76.5 25.6-25.6zM332.8 76.8L230.4 179.2l102.4 102.4 25.6-25.6-77.1-76.5 51.5-51.5 128 128-128 128-19.2-19.2-25.6 25.6 44.8 44.8L512 256 332.8 76.8z"] }; +var faGgCircle = { prefix: 'fab', iconName: 'gg-circle', icon: [512, 512, [], "f261", "M257 8C120 8 9 119 9 256s111 248 248 248 248-111 248-248S394 8 257 8zm-49.5 374.8L81.8 257.1l125.7-125.7 35.2 35.4-24.2 24.2-11.1-11.1-77.2 77.2 77.2 77.2 26.6-26.6-53.1-52.9 24.4-24.4 77.2 77.2-75 75.2zm99-2.2l-35.2-35.2 24.1-24.4 11.1 11.1 77.2-77.2-77.2-77.2-26.5 26.5 53.1 52.9-24.4 24.4-77.2-77.2 75-75L432.2 255 306.5 380.6z"] }; +var faGit = { prefix: 'fab', iconName: 'git', icon: [448, 512, [], "f1d3", "M18.8 221.7c0 25.3 16.2 60 41.5 68.5v1c-18.8 8.3-24 50.6 1 65.8v1C34 367 16 384.3 16 414.2c0 51.5 48.8 65.8 91.5 65.8 52 0 90.7-18.7 90.7-76 0-70.5-101-44.5-101-82.8 0-13.5 7.2-18.7 19.7-21.3 41.5-7.7 67.5-40 67.5-82.2 0-7.3-1.5-14.2-4-21 6.7-1.5 13.2-3.3 19.7-5.5v-50.5c-17.2 6.8-35.7 11.8-54.5 11.8-53.8-31-126.8 1.3-126.8 69.2zm87.7 163.8c17 0 41.2 3 41.2 25 0 21.8-19.5 26.3-37.7 26.3-17.3 0-43.3-2.7-43.3-25.2.1-22.3 22.1-26.1 39.8-26.1zM103.3 256c-22 0-31.3-13-31.3-33.8 0-49.3 61-48.8 61-.5 0 20.3-8 34.3-29.7 34.3zM432 305.5v49c-13.3 7.3-30.5 9.8-45.5 9.8-53.5 0-59.8-42.2-59.8-85.7v-87.7h.5v-1c-7 0-7.3-1.6-24 1v-47.5h24c0-22.3.3-31-1.5-41.2h56.7c-2 13.8-1.5 27.5-1.5 41.2h51v47.5s-19.3-1-51-1V281c0 14.8 3.3 32.8 21.8 32.8 9.8 0 21.3-2.8 29.3-8.3zM286 68.7c0 18.7-14.5 36.2-33.8 36.2-19.8 0-34.5-17.2-34.5-36.2 0-19.3 14.5-36.7 34.5-36.7C272 32 286 50 286 68.7zm-6.2 74.5c-1.8 14.6-1.6 199.8 0 217.8h-55.5c1.6-18.1 1.8-203 0-217.8h55.5z"] }; +var faGitSquare = { prefix: 'fab', iconName: 'git-square', icon: [448, 512, [], "f1d2", "M140.1 348.5c12.1 0 29.5 2.1 29.5 17.9 0 15.5-13.9 18.8-27 18.8-12.3 0-30.9-2-30.9-18s15.7-18.7 28.4-18.7zm-24.7-116.6c0 14.8 6.6 24.1 22.3 24.1 15.5 0 21.2-10 21.2-24.5.1-34.4-43.5-34.8-43.5.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-241 93.7c-12.3 4.8-25.5 8.4-38.9 8.4-38.5-22.1-90.7.9-90.7 49.5 0 18 11.6 42.9 29.6 48.9v.7c-13.4 5.9-17.1 36.1.7 47v.7c-19.5 6.4-32.3 18.8-32.3 40.2 0 36.8 34.8 47 65.4 47 37.1 0 64.8-13.4 64.8-54.3 0-50.4-72.1-31.8-72.1-59.1 0-9.6 5.2-13.4 14.1-15.2 29.6-5.5 48.2-28.6 48.2-58.7 0-5.2-1.1-10.2-2.9-15 4.8-1.1 9.5-2.3 14.1-3.9v-36.2zm56.8 1.8h-39.6c1.3 10.6 1.1 142.6 0 155.5h39.6c-1.1-12.8-1.2-145.1 0-155.5zm4.5-53.3c0-13.4-10-26.2-24.1-26.2-14.3 0-24.6 12.5-24.6 26.2 0 13.6 10.5 25.9 24.6 25.9 13.7 0 24.1-12.5 24.1-25.9zm104.3 53.3h-36.4c0-9.8-.4-19.6 1.1-29.5h-40.5c1.3 7.3 1.1 13.6 1.1 29.5h-17.1v33.9c11.9-1.9 12.1-.7 17.1-.7v.7h-.4v62.7c0 31.1 4.5 61.2 42.7 61.2 10.7 0 23-1.8 32.5-7v-35c-5.7 3.9-13.9 5.9-20.9 5.9-13.2 0-15.5-12.9-15.5-23.4v-65.2c22.7 0 36.4.7 36.4.7v-33.8z"] }; +var faGithub = { prefix: 'fab', iconName: 'github', icon: [496, 512, [], "f09b", "M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"] }; +var faGithubAlt = { prefix: 'fab', iconName: 'github-alt', icon: [480, 512, [], "f113", "M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1zM480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2zm-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3zm-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1z"] }; +var faGithubSquare = { prefix: 'fab', iconName: 'github-square', icon: [448, 512, [], "f092", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z"] }; +var faGitkraken = { prefix: 'fab', iconName: 'gitkraken', icon: [592, 512, [], "f3a6", "M565.7 118.1c-2.3-6.1-9.3-9.2-15.3-6.6-5.7 2.4-8.5 8.9-6.3 14.6 10.9 29 16.9 60.5 16.9 93.3 0 134.6-100.3 245.7-230.2 262.7V358.4c7.9-1.5 15.5-3.6 23-6.2v104c106.7-25.9 185.9-122.1 185.9-236.8 0-91.8-50.8-171.8-125.8-213.3-5.7-3.2-13-.9-15.9 5-2.7 5.5-.6 12.2 4.7 15.1 67.9 37.6 113.9 110 113.9 193.2 0 93.3-57.9 173.1-139.8 205.4v-92.2c14.2-4.5 24.9-17.7 24.9-33.5 0-13.1-6.8-24.4-17.3-30.5 8.3-79.5 44.5-58.6 44.5-83.9V170c0-38-87.9-161.8-129-164.7-2.5-.2-5-.2-7.6 0C251.1 8.3 163.2 132 163.2 170v14.8c0 25.3 36.3 4.3 44.5 83.9-10.6 6.1-17.3 17.4-17.3 30.5 0 15.8 10.6 29 24.8 33.5v92.2c-81.9-32.2-139.8-112-139.8-205.4 0-83.1 46-155.5 113.9-193.2 5.4-3 7.4-9.6 4.7-15.1-2.9-5.9-10.1-8.2-15.9-5-75 41.5-125.8 121.5-125.8 213.3 0 114.7 79.2 210.8 185.9 236.8v-104c7.6 2.5 15.1 4.6 23 6.2v123.7C131.4 465.2 31 354.1 31 219.5c0-32.8 6-64.3 16.9-93.3 2.2-5.8-.6-12.2-6.3-14.6-6-2.6-13 .4-15.3 6.6C14.5 149.7 8 183.8 8 219.5c0 155.1 122.6 281.6 276.3 287.8V361.4c6.8.4 15 .5 23.4 0v145.8C461.4 501.1 584 374.6 584 219.5c0-35.7-6.5-69.8-18.3-101.4zM365.9 275.5c13 0 23.7 10.5 23.7 23.7 0 13.1-10.6 23.7-23.7 23.7-13 0-23.7-10.5-23.7-23.7 0-13.1 10.6-23.7 23.7-23.7zm-139.8 47.3c-13.2 0-23.7-10.7-23.7-23.7s10.5-23.7 23.7-23.7c13.1 0 23.7 10.6 23.7 23.7 0 13-10.5 23.7-23.7 23.7z"] }; +var faGitlab = { prefix: 'fab', iconName: 'gitlab', icon: [512, 512, [], "f296", "M29.782 199.732L256 493.714 8.074 309.699c-6.856-5.142-9.712-13.996-7.141-21.993l28.849-87.974zm75.405-174.806c-3.142-8.854-15.709-8.854-18.851 0L29.782 199.732h131.961L105.187 24.926zm56.556 174.806L256 493.714l94.257-293.982H161.743zm349.324 87.974l-28.849-87.974L256 493.714l247.926-184.015c6.855-5.142 9.711-13.996 7.141-21.993zm-85.404-262.78c-3.142-8.854-15.709-8.854-18.851 0l-56.555 174.806h131.961L425.663 24.926z"] }; +var faGitter = { prefix: 'fab', iconName: 'gitter', icon: [384, 512, [], "f426", "M66.4 322.5H16V0h50.4v322.5zM166.9 76.1h-50.4V512h50.4V76.1zm100.6 0h-50.4V512h50.4V76.1zM368 76h-50.4v247H368V76z"] }; +var faGlide = { prefix: 'fab', iconName: 'glide', icon: [448, 512, [], "f2a5", "M252.8 148.6c0 8.8-1.6 17.7-3.4 26.4-5.8 27.8-11.6 55.8-17.3 83.6-1.4 6.3-8.3 4.9-13.7 4.9-23.8 0-30.5-26-30.5-45.5 0-29.3 11.2-68.1 38.5-83.1 4.3-2.5 9.2-4.2 14.1-4.2 11.4 0 12.3 8.3 12.3 17.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 187c0-5.1-20.8-37.7-25.5-39.5-2.2-.9-7.2-2.3-9.6-2.3-23.1 0-38.7 10.5-58.2 21.5l-.5-.5c4.3-29.4 14.6-57.2 14.6-87.4 0-44.6-23.8-62.7-67.5-62.7-71.7 0-108 70.8-108 123.5 0 54.7 32 85 86.3 85 7.5 0 6.9-.6 6.9 2.3-10.5 80.3-56.5 82.9-56.5 58.9 0-24.4 28-36.5 28.3-38-.2-7.6-29.3-17.2-36.7-17.2-21.1 0-32.7 33-32.7 50.6 0 32.3 20.4 54.7 53.3 54.7 48.2 0 83.4-49.7 94.3-91.7 9.4-37.7 7-39.4 12.3-42.1 20-10.1 35.8-16.8 58.4-16.8 11.1 0 19 2.3 36.7 5.2 1.8.1 4.1-1.7 4.1-3.5z"] }; +var faGlideG = { prefix: 'fab', iconName: 'glide-g', icon: [448, 512, [], "f2a6", "M407.1 211.2c-3.5-1.4-11.6-3.8-15.4-3.8-37.1 0-62.2 16.8-93.5 34.5l-.9-.9c7-47.3 23.5-91.9 23.5-140.4C320.8 29.1 282.6 0 212.4 0 97.3 0 39 113.7 39 198.4 39 286.3 90.3 335 177.6 335c12 0 11-1 11 3.8-16.9 128.9-90.8 133.1-90.8 94.6 0-39.2 45-58.6 45.5-61-.3-12.2-47-27.6-58.9-27.6-33.9.1-52.4 51.2-52.4 79.3C32 476 64.8 512 117.5 512c77.4 0 134-77.8 151.4-145.4 15.1-60.5 11.2-63.3 19.7-67.6 32.2-16.2 57.5-27 93.8-27 17.8 0 30.5 3.7 58.9 8.4 2.9 0 6.7-2.9 6.7-5.8 0-8-33.4-60.5-40.9-63.4zm-175.3-84.4c-9.3 44.7-18.6 89.6-27.8 134.3-2.3 10.2-13.3 7.8-22 7.8-38.3 0-49-41.8-49-73.1 0-47 18-109.3 61.8-133.4 7-4.1 14.8-6.7 22.6-6.7 18.6 0 20 13.3 20 28.7-.1 14.3-2.7 28.5-5.6 42.4z"] }; +var faGofore = { prefix: 'fab', iconName: 'gofore', icon: [400, 512, [], "f3a7", "M324 319.8h-13.2v34.7c-24.5 23.1-56.3 35.8-89.9 35.8-73.2 0-132.4-60.2-132.4-134.4 0-74.1 59.2-134.4 132.4-134.4 35.3 0 68.6 14 93.6 39.4l62.3-63.3C335 55.3 279.7 32 220.7 32 98 32 0 132.6 0 256c0 122.5 97 224 220.7 224 63.2 0 124.5-26.2 171-82.5-2-27.6-13.4-77.7-67.7-77.7zm-12.1-112.5H205.6v89H324c33.5 0 60.5 15.1 76 41.8v-30.6c0-65.2-40.4-100.2-88.1-100.2z"] }; +var faGoodreads = { prefix: 'fab', iconName: 'goodreads', icon: [448, 512, [], "f3a8", "M299.9 191.2c5.1 37.3-4.7 79-35.9 100.7-22.3 15.5-52.8 14.1-70.8 5.7-37.1-17.3-49.5-58.6-46.8-97.2 4.3-60.9 40.9-87.9 75.3-87.5 46.9-.2 71.8 31.8 78.2 78.3zM448 88v336c0 30.9-25.1 56-56 56H56c-30.9 0-56-25.1-56-56V88c0-30.9 25.1-56 56-56h336c30.9 0 56 25.1 56 56zM330 313.2s-.1-34-.1-217.3h-29v40.3c-.8.3-1.2-.5-1.6-1.2-9.6-20.7-35.9-46.3-76-46-51.9.4-87.2 31.2-100.6 77.8-4.3 14.9-5.8 30.1-5.5 45.6 1.7 77.9 45.1 117.8 112.4 115.2 28.9-1.1 54.5-17 69-45.2.5-1 1.1-1.9 1.7-2.9.2.1.4.1.6.2.3 3.8.2 30.7.1 34.5-.2 14.8-2 29.5-7.2 43.5-7.8 21-22.3 34.7-44.5 39.5-17.8 3.9-35.6 3.8-53.2-1.2-21.5-6.1-36.5-19-41.1-41.8-.3-1.6-1.3-1.3-2.3-1.3h-26.8c.8 10.6 3.2 20.3 8.5 29.2 24.2 40.5 82.7 48.5 128.2 37.4 49.9-12.3 67.3-54.9 67.4-106.3z"] }; +var faGoodreadsG = { prefix: 'fab', iconName: 'goodreads-g', icon: [384, 512, [], "f3a9", "M42.6 403.3h2.8c12.7 0 25.5 0 38.2.1 1.6 0 3.1-.4 3.6 2.1 7.1 34.9 30 54.6 62.9 63.9 26.9 7.6 54.1 7.8 81.3 1.8 33.8-7.4 56-28.3 68-60.4 8-21.5 10.7-43.8 11-66.5.1-5.8.3-47-.2-52.8l-.9-.3c-.8 1.5-1.7 2.9-2.5 4.4-22.1 43.1-61.3 67.4-105.4 69.1-103 4-169.4-57-172-176.2-.5-23.7 1.8-46.9 8.3-69.7C58.3 47.7 112.3.6 191.6 0c61.3-.4 101.5 38.7 116.2 70.3.5 1.1 1.3 2.3 2.4 1.9V10.6h44.3c0 280.3.1 332.2.1 332.2-.1 78.5-26.7 143.7-103 162.2-69.5 16.9-159 4.8-196-57.2-8-13.5-11.8-28.3-13-44.5zM188.9 36.5c-52.5-.5-108.5 40.7-115 133.8-4.1 59 14.8 122.2 71.5 148.6 27.6 12.9 74.3 15 108.3-8.7 47.6-33.2 62.7-97 54.8-154-9.7-71.1-47.8-120-119.6-119.7z"] }; +var faGoogle = { prefix: 'fab', iconName: 'google', icon: [488, 512, [], "f1a0", "M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z"] }; +var faGoogleDrive = { prefix: 'fab', iconName: 'google-drive', icon: [512, 512, [], "f3aa", "M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z"] }; +var faGooglePlay = { prefix: 'fab', iconName: 'google-play', icon: [512, 512, [], "f3ab", "M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z"] }; +var faGooglePlus = { prefix: 'fab', iconName: 'google-plus', icon: [496, 512, [], "f2b3", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm-70.7 372c-68.8 0-124-55.5-124-124s55.2-124 124-124c31.3 0 60.1 11 83 32.3l-33.6 32.6c-13.2-12.9-31.3-19.1-49.4-19.1-42.9 0-77.2 35.5-77.2 78.1s34.2 78.1 77.2 78.1c32.6 0 64.9-19.1 70.1-53.3h-70.1v-42.6h116.9c1.3 6.8 1.9 13.6 1.9 20.7 0 70.8-47.5 121.2-118.8 121.2zm230.2-106.2v35.5H372v-35.5h-35.5v-35.5H372v-35.5h35.5v35.5h35.2v35.5h-35.2z"] }; +var faGooglePlusG = { prefix: 'fab', iconName: 'google-plus-g', icon: [640, 512, [], "f0d5", "M386.061 228.496c1.834 9.692 3.143 19.384 3.143 31.956C389.204 370.205 315.599 448 204.8 448c-106.084 0-192-85.915-192-192s85.916-192 192-192c51.864 0 95.083 18.859 128.611 50.292l-52.126 50.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484 0-118.92 54.221-118.92 121.277 0 67.056 53.436 121.277 118.92 121.277 75.961 0 104.513-54.745 108.965-82.773H204.8v-66.009h181.261zm185.406 6.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001h-55.733z"] }; +var faGooglePlusSquare = { prefix: 'fab', iconName: 'google-plus-square', icon: [448, 512, [], "f0d4", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM164 356c-55.3 0-100-44.7-100-100s44.7-100 100-100c27 0 49.5 9.8 67 26.2l-27.1 26.1c-7.4-7.1-20.3-15.4-39.8-15.4-34.1 0-61.9 28.2-61.9 63.2 0 34.9 27.8 63.2 61.9 63.2 39.6 0 54.4-28.5 56.8-43.1H164v-34.4h94.4c1 5 1.6 10.1 1.6 16.6 0 57.1-38.3 97.6-96 97.6zm220-81.8h-29v29h-29.2v-29h-29V245h29v-29H355v29h29v29.2z"] }; +var faGoogleWallet = { prefix: 'fab', iconName: 'google-wallet', icon: [448, 512, [], "f1ee", "M156.8 126.8c37.6 60.6 64.2 113.1 84.3 162.5-8.3 33.8-18.8 66.5-31.3 98.3-13.2-52.3-26.5-101.3-56-148.5 6.5-36.4 2.3-73.6 3-112.3zM109.3 200H16.1c-6.5 0-10.5 7.5-6.5 12.7C51.8 267 81.3 330.5 101.3 400h103.5c-16.2-69.7-38.7-133.7-82.5-193.5-3-4-8-6.5-13-6.5zm47.8-88c68.5 108 130 234.5 138.2 368H409c-12-138-68.4-265-143.2-368H157.1zm251.8-68.5c-1.8-6.8-8.2-11.5-15.2-11.5h-88.3c-5.3 0-9 5-7.8 10.3 13.2 46.5 22.3 95.5 26.5 146 48.2 86.2 79.7 178.3 90.6 270.8 15.8-60.5 25.3-133.5 25.3-203 0-73.6-12.1-145.1-31.1-212.6z"] }; +var faGratipay = { prefix: 'fab', iconName: 'gratipay', icon: [496, 512, [], "f184", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm114.6 226.4l-113 152.7-112.7-152.7c-8.7-11.9-19.1-50.4 13.6-72 28.1-18.1 54.6-4.2 68.5 11.9 15.9 17.9 46.6 16.9 61.7 0 13.9-16.1 40.4-30 68.1-11.9 32.9 21.6 22.6 60 13.8 72z"] }; +var faGrav = { prefix: 'fab', iconName: 'grav', icon: [512, 512, [], "f2d6", "M301.1 212c4.4 4.4 4.4 11.9 0 16.3l-9.7 9.7c-4.4 4.7-11.9 4.7-16.6 0l-10.5-10.5c-4.4-4.7-4.4-11.9 0-16.6l9.7-9.7c4.4-4.4 11.9-4.4 16.6 0l10.5 10.8zm-30.2-19.7c3-3 3-7.8 0-10.5-2.8-3-7.5-3-10.5 0-2.8 2.8-2.8 7.5 0 10.5 3.1 2.8 7.8 2.8 10.5 0zm-26 5.3c-3 2.8-3 7.5 0 10.2 2.8 3 7.5 3 10.5 0 2.8-2.8 2.8-7.5 0-10.2-3-3-7.7-3-10.5 0zm72.5-13.3c-19.9-14.4-33.8-43.2-11.9-68.1 21.6-24.9 40.7-17.2 59.8.8 11.9 11.3 29.3 24.9 17.2 48.2-12.5 23.5-45.1 33.2-65.1 19.1zm47.7-44.5c-8.9-10-23.3 6.9-15.5 16.1 7.4 9 32.1 2.4 15.5-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-66.2 42.6c2.5-16.1-20.2-16.6-25.2-25.7-13.6-24.1-27.7-36.8-54.5-30.4 11.6-8 23.5-6.1 23.5-6.1.3-6.4 0-13-9.4-24.9 3.9-12.5.3-22.4.3-22.4 15.5-8.6 26.8-24.4 29.1-43.2 3.6-31-18.8-59.2-49.8-62.8-22.1-2.5-43.7 7.7-54.3 25.7-23.2 40.1 1.4 70.9 22.4 81.4-14.4-1.4-34.3-11.9-40.1-34.3-6.6-25.7 2.8-49.8 8.9-61.4 0 0-4.4-5.8-8-8.9 0 0-13.8 0-24.6 5.3 11.9-15.2 25.2-14.4 25.2-14.4 0-6.4-.6-14.9-3.6-21.6-5.4-11-23.8-12.9-31.7 2.8.1-.2.3-.4.4-.5-5 11.9-1.1 55.9 16.9 87.2-2.5 1.4-9.1 6.1-13 10-21.6 9.7-56.2 60.3-56.2 60.3-28.2 10.8-77.2 50.9-70.6 79.7.3 3 1.4 5.5 3 7.5-2.8 2.2-5.5 5-8.3 8.3-11.9 13.8-5.3 35.2 17.7 24.4 15.8-7.2 29.6-20.2 36.3-30.4 0 0-5.5-5-16.3-4.4 27.7-6.6 34.3-9.4 46.2-9.1 8 3.9 8-34.3 8-34.3 0-14.7-2.2-31-11.1-41.5 12.5 12.2 29.1 32.7 28 60.6-.8 18.3-15.2 23-15.2 23-9.1 16.6-43.2 65.9-30.4 106 0 0-9.7-14.9-10.2-22.1-17.4 19.4-46.5 52.3-24.6 64.5 26.6 14.7 108.8-88.6 126.2-142.3 34.6-20.8 55.4-47.3 63.9-65 22 43.5 95.3 94.5 101.1 59z"] }; +var faGripfire = { prefix: 'fab', iconName: 'gripfire', icon: [384, 512, [], "f3ac", "M171.8 503.8c0-5.3 4.8-12.2 4.8-22.3 0-15.2-13-39.9-78.1-86.6C64.2 365.8 32 336.4 32 286.6 32 171.9 179.1 110.1 179.1 18c0-3.3-.2-6.7-.6-10 5.1 2.4 39.1 43.3 39.1 90.4 0 80.5-105.1 129.2-105.1 203 0 26.9 16.6 47.2 32.6 69.5 22.5 30.2 44.2 56.9 44.2 86.5-.1 14.5-4.4 29.7-17.5 46.4zm146-241.4c1.5 8.4 2.2 16.6 2.2 24.6 0 51.8-29.4 97.5-67.3 136.8-1 1-2.2 2.4-3.2 2.4-3.6 0-35.5-41.6-35.5-53.2 0 0 41.8-55.7 41.8-96.9 0-10.8-2.7-21.7-9.1-33.4-1.5 32.3-55.7 87.7-58.1 87.7-2.7 0-17.9-22-17.9-42.1 0-5.3 1-10.7 3.2-15.8 2.4-5.5 56.6-72 56.6-116.7 0-6.2-1-12-3.4-17.1l-4-7.2c16.7 6.5 82.6 64.1 94.7 130.9"] }; +var faGrunt = { prefix: 'fab', iconName: 'grunt', icon: [384, 512, [], "f3ad", "M61.3 189.3c-1.1 10 5.2 19.1 5.2 19.1.7-7.5 2.2-12.8 4-16.6.4 10.3 3.2 23.5 12.8 34.1 6.9 7.6 35.6 23.3 54.9 6.1 1 2.4 2.1 5.3 3 8.5 2.9 10.3-2.7 25.3-2.7 25.3s15.1-17.1 13.9-32.5c10.8-.5 21.4-8.4 21.1-19.5 0 0-18.9 10.4-35.5-8.8-9.7-11.2-40.9-42-83.1-31.8 4.3 1 8.9 2.4 13.5 4.1h-.1c-4.2 2-6.5 7.1-7 12zm28.3-1.8c19.5 11 37.4 25.7 44.9 37-5.7 3.3-21.7 10.4-38-1.7-10.3-7.6-9.8-26.2-6.9-35.3zm79.2 233.7c2.2 2.3 1.5 5.3.9 6.8-1.1 2.7-5.5 11.6-13 19.8-2.7 2.9-6.6 4.6-11 4.6-4.3 0-8.7-1.6-11.8-4.3-2.3-2.1-10.2-9.5-13.7-18.6-1.3-3.4-1-6.1.9-8.1 1.3-1.3 4-2.9 9.5-2.9H160c4.1 0 7 .9 8.8 2.7zm62.9-187.9c-1.2 15.5 13.9 32.5 13.9 32.5s-5.6-15-2.7-25.3c.9-3.2 2-6 3-8.5 19.3 17.3 48 1.5 54.8-6.1 9.6-10.6 12.3-23.8 12.8-34.1 1.8 3.8 3.4 9.1 4 16.6 0 0 6.4-9.1 5.2-19.1-.6-5-2.9-10-7-11.8h-.1c4.6-1.8 9.2-3.2 13.5-4.1-42.3-10.2-73.4 20.6-83.1 31.8-16.7 19.2-35.5 8.8-35.5 8.8-.2 10.9 10.4 18.9 21.2 19.3zm17.8-8.8c7.5-11.4 25.4-26 44.9-37 3 9.1 3.4 27.7-7 35.4-16.3 12.1-32.2 5-37.9 1.6-.1.1 0 0 0 0zM263 421.4c1.9 1.9 2.2 4.6.9 7.9-3.5 8.9-11.4 16.1-13.7 18.1-3.1 2.6-7.4 4.2-11.8 4.2s-8.3-1.6-11-4.5c-7.5-8-12-16.7-13-19.3-.6-1.5-1.3-4.4.9-6.7 1.7-1.8 4.7-2.7 8.9-2.7h29.4c5.4.1 8.1 1.7 9.4 3zm-98.3-251.5c9.9 6 18.8 8.1 27.3 8.3 8.5-.2 17.4-2.3 27.3-8.3 0 0-14.5 17.7-27.2 17.8h-.2c-12.7-.2-27.2-17.8-27.2-17.8zm184.5 147.4c-2.4 17.9-13 33.8-24.6 43.7-3.1-22.7-3.7-55.5-3.7-62.4 0-14.7 9.5-24.5 12.2-26.1 2.5-1.5 5.4-3 8.3-4.6 18-9.6 40.4-21.6 40.4-43.7 0-16.2-9.3-23.2-15.4-27.8-.8-.6-1.5-1.1-2.2-1.7-2.1-1.7-3.7-3-4.3-4.4-4.4-9.8-3.6-34.2-1.7-37.6.6-.6 16.7-20.9 11.8-39.2-2-7.4-6.9-13.3-14.1-17-5.3-2.7-11.9-4.2-19.5-4.5-.1-2-.5-3.9-.9-5.9-.6-2.6-1.1-5.3-.9-8.1.4-4.7.8-9 2.2-11.3 8.4-13.3 28.8-17.6 29-17.6l12.3-2.4-8.1-9.5c-.1-.2-17.3-17.5-46.3-17.5-7.9 0-16 1.3-24.1 3.9-24.2 7.8-42.9 30.5-49.4 39.3-3.1-1-6.3-1.9-9.6-2.7-4.2-15.8 9-38.5 9-38.5s-13.6-3-33.7 15.2c-2.6-6.5-8.1-20.5-1.8-37.2C184.6 10.1 177.2 26 175 40.4c-7.6-5.4-6.7-23.1-7.2-27.6-7.5.9-29.2 21.9-28.2 48.3-2 .5-3.9 1.1-5.9 1.7-6.5-8.8-25.1-31.5-49.4-39.3-7.9-2.2-16-3.5-23.9-3.5-29 0-46.1 17.3-46.3 17.5L6 46.9l12.3 2.4c.2 0 20.6 4.3 29 17.6 1.4 2.2 1.8 6.6 2.2 11.3.2 2.8-.4 5.5-.9 8.1-.4 1.9-.8 3.9-.9 5.9-7.7.3-14.2 1.8-19.5 4.5-7.2 3.7-12.1 9.6-14.1 17-5 18.2 11.2 38.5 11.8 39.2 1.9 3.4 2.7 27.8-1.7 37.6-.6 1.4-2.2 2.7-4.3 4.4-.7.5-1.4 1.1-2.2 1.7-6.1 4.6-15.4 11.7-15.4 27.8 0 22.1 22.4 34.1 40.4 43.7 3 1.6 5.8 3.1 8.3 4.6 2.7 1.6 12.2 11.4 12.2 26.1 0 6.9-.6 39.7-3.7 62.4-11.6-9.9-22.2-25.9-24.6-43.8 0 0-29.2 22.6-20.6 70.8 5.2 29.5 23.2 46.1 47 54.7 8.8 19.1 29.4 45.7 67.3 49.6C143 504.3 163 512 192.2 512h.2c29.1 0 49.1-7.7 63.6-19.5 37.9-3.9 58.5-30.5 67.3-49.6 23.8-8.7 41.7-25.2 47-54.7 8.2-48.4-21.1-70.9-21.1-70.9zM305.7 37.7c5.6-1.8 11.6-2.7 17.7-2.7 11 0 19.9 3 24.7 5-3.1 1.4-6.4 3.2-9.7 5.3-2.4-.4-5.6-.8-9.2-.8-10.5 0-20.5 3.1-28.7 8.9-12.3 8.7-18 16.9-20.7 22.4-2.2-1.3-4.5-2.5-7.1-3.7-1.6-.8-3.1-1.5-4.7-2.2 6.1-9.1 19.9-26.5 37.7-32.2zm21 18.2c-.8 1-1.6 2.1-2.3 3.2-3.3 5.2-3.9 11.6-4.4 17.8-.5 6.4-1.1 12.5-4.4 17-4.2.8-8.1 1.7-11.5 2.7-2.3-3.1-5.6-7-10.5-11.2 1.4-4.8 5.5-16.1 13.5-22.5 5.6-4.3 12.2-6.7 19.6-7zM45.6 45.3c-3.3-2.2-6.6-4-9.7-5.3 4.8-2 13.7-5 24.7-5 6.1 0 12 .9 17.7 2.7 17.8 5.8 31.6 23.2 37.7 32.1-1.6.7-3.2 1.4-4.8 2.2-2.5 1.2-4.9 2.5-7.1 3.7-2.6-5.4-8.3-13.7-20.7-22.4-8.3-5.8-18.2-8.9-28.8-8.9-3.4.1-6.6.5-9 .9zm44.7 40.1c-4.9 4.2-8.3 8-10.5 11.2-3.4-.9-7.3-1.9-11.5-2.7C65 89.5 64.5 83.4 64 77c-.5-6.2-1.1-12.6-4.4-17.8-.7-1.1-1.5-2.2-2.3-3.2 7.4.3 14 2.6 19.5 7 8 6.3 12.1 17.6 13.5 22.4zM58.1 259.9c-2.7-1.6-5.6-3.1-8.4-4.6-14.9-8-30.2-16.3-30.2-30.5 0-11.1 4.3-14.6 8.9-18.2l.5-.4c.7-.6 1.4-1.2 2.2-1.8-.9 7.2-1.9 13.3-2.7 14.9 0 0 12.1-15 15.7-44.3 1.4-11.5-1.1-34.3-5.1-43 .2 4.9 0 9.8-.3 14.4-.4-.8-.8-1.6-1.3-2.2-3.2-4-11.8-17.5-9.4-26.6.9-3.5 3.1-6 6.7-7.8 3.8-1.9 8.8-2.9 15.1-2.9 12.3 0 25.9 3.7 32.9 6 25.1 8 55.4 30.9 64.1 37.7.2.2.4.3.4.3l5.6 3.9-3.5-5.8c-.2-.3-19.1-31.4-53.2-46.5 2-2.9 7.4-8.1 21.6-15.1 21.4-10.5 46.5-15.8 74.3-15.8 27.9 0 52.9 5.3 74.3 15.8 14.2 6.9 19.6 12.2 21.6 15.1-34 15.1-52.9 46.2-53.1 46.5l-3.5 5.8 5.6-3.9s.2-.1.4-.3c8.7-6.8 39-29.8 64.1-37.7 7-2.2 20.6-6 32.9-6 6.3 0 11.3 1 15.1 2.9 3.5 1.8 5.7 4.4 6.7 7.8 2.5 9.1-6.1 22.6-9.4 26.6-.5.6-.9 1.3-1.3 2.2-.3-4.6-.5-9.5-.3-14.4-4 8.8-6.5 31.5-5.1 43 3.6 29.3 15.7 44.3 15.7 44.3-.8-1.6-1.8-7.7-2.7-14.9.7.6 1.5 1.2 2.2 1.8l.5.4c4.6 3.7 8.9 7.1 8.9 18.2 0 14.2-15.4 22.5-30.2 30.5-2.9 1.5-5.7 3.1-8.4 4.6-8.7 5-18 16.7-19.1 34.2-.9 14.6.9 49.9 3.4 75.9-12.4 4.8-26.7 6.4-39.7 6.8-2-4.1-3.9-8.5-5.5-13.1-.7-2-19.6-51.1-26.4-62.2 5.5 39 17.5 73.7 23.5 89.6-3.5-.5-7.3-.7-11.7-.7h-117c-4.4 0-8.3.3-11.7.7 6-15.9 18.1-50.6 23.5-89.6-6.8 11.2-25.7 60.3-26.4 62.2-1.6 4.6-3.5 9-5.5 13.1-13-.4-27.2-2-39.7-6.8 2.5-26 4.3-61.2 3.4-75.9-.9-17.4-10.3-29.2-19-34.2zM34.8 404.6c-12.1-20-8.7-54.1-3.7-59.1 10.9 34.4 47.2 44.3 74.4 45.4-2.7 4.2-5.2 7.6-7 10l-1.4 1.4c-7.2 7.8-8.6 18.5-4.1 31.8-22.7-.1-46.3-9.8-58.2-29.5zm45.7 43.5c6 1.1 12.2 1.9 18.6 2.4 3.5 8 7.4 15.9 12.3 23.1-14.4-5.9-24.4-16-30.9-25.5zM192 498.2c-60.6-.1-78.3-45.8-84.9-64.7-3.7-10.5-3.4-18.2.9-23.1 2.9-3.3 9.5-7.2 24.6-7.2h118.8c15.1 0 21.8 3.9 24.6 7.2 4.2 4.8 4.5 12.6.9 23.1-6.6 18.8-24.3 64.6-84.9 64.7zm80.6-24.6c4.9-7.2 8.8-15.1 12.3-23.1 6.4-.5 12.6-1.3 18.6-2.4-6.5 9.5-16.5 19.6-30.9 25.5zm76.6-69c-12 19.7-35.6 29.3-58.1 29.7 4.5-13.3 3.1-24.1-4.1-31.8-.4-.5-.9-1-1.4-1.5-1.8-2.4-4.3-5.8-7-10 27.2-1.2 63.5-11 74.4-45.4 5 5 8.4 39.1-3.8 59z"] }; +var faGulp = { prefix: 'fab', iconName: 'gulp', icon: [256, 512, [], "f3ae", "M209.8 391.1l-14.1 24.6-4.6 80.2c0 8.9-28.3 16.1-63.1 16.1s-63.1-7.2-63.1-16.1l-5.8-79.4-14.9-25.4c41.2 17.3 126 16.7 165.6 0zm-196-253.3l13.6 125.5c5.9-20 20.8-47 40-55.2 6.3-2.7 12.7-2.7 18.7.9 5.2 3 9.6 9.3 10.1 11.8 1.2 6.5-2 9.1-4.5 9.1-3 0-5.3-4.6-6.8-7.3-4.1-7.3-10.3-7.6-16.9-2.8-6.9 5-12.9 13.4-17.1 20.7-5.1 8.8-9.4 18.5-12 28.2-1.5 5.6-2.9 14.6-.6 19.9 1 2.2 2.5 3.6 4.9 3.6 5 0 12.3-6.6 15.8-10.1 4.5-4.5 10.3-11.5 12.5-16l5.2-15.5c2.6-6.8 9.9-5.6 9.9 0 0 10.2-3.7 13.6-10 34.7-5.8 19.5-7.6 25.8-7.6 25.8-.7 2.8-3.4 7.5-6.3 7.5-1.2 0-2.1-.4-2.6-1.2-1-1.4-.9-5.3-.8-6.3.2-3.2 6.3-22.2 7.3-25.2-2 2.2-4.1 4.4-6.4 6.6-5.4 5.1-14.1 11.8-21.5 11.8-3.4 0-5.6-.9-7.7-2.4l7.6 79.6c2 5 39.2 17.1 88.2 17.1 49.1 0 86.3-12.2 88.2-17.1l10.9-94.6c-5.7 5.2-12.3 11.6-19.6 14.8-5.4 2.3-17.4 3.8-17.4-5.7 0-5.2 9.1-14.8 14.4-21.5 1.4-1.7 4.7-5.9 4.7-8.1 0-2.9-6-2.2-11.7 2.5-3.2 2.7-6.2 6.3-8.7 9.7-4.3 6-6.6 11.2-8.5 15.5-6.2 14.2-4.1 8.6-9.1 22-5 13.3-4.2 11.8-5.2 14-.9 1.9-2.2 3.5-4 4.5-1.9 1-4.5.9-6.1-.3-.9-.6-1.3-1.9-1.3-3.7 0-.9.1-1.8.3-2.7 1.5-6.1 7.8-18.1 15-34.3 1.6-3.7 1-2.6.8-2.3-6.2 6-10.9 8.9-14.4 10.5-5.8 2.6-13 2.6-14.5-4.1-.1-.4-.1-.8-.2-1.2-11.8 9.2-24.3 11.7-20-8.1-4.6 8.2-12.6 14.9-22.4 14.9-4.1 0-7.1-1.4-8.6-5.1-2.3-5.5 1.3-14.9 4.6-23.8 1.7-4.5 4-9.9 7.1-16.2 1.6-3.4 4.2-5.4 7.6-4.5.6.2 1.1.4 1.6.7 2.6 1.8 1.6 4.5.3 7.2-3.8 7.5-7.1 13-9.3 20.8-.9 3.3-2 9 1.5 9 2.4 0 4.7-.8 6.9-2.4 4.6-3.4 8.3-8.5 11.1-13.5 2-3.6 4.4-8.3 5.6-12.3.5-1.7 1.1-3.3 1.8-4.8 1.1-2.5 2.6-5.1 5.2-5.1 1.3 0 2.4.5 3.2 1.5 1.7 2.2 1.3 4.5.4 6.9-2 5.6-4.7 10.6-6.9 16.7-1.3 3.5-2.7 8-2.7 11.7 0 3.4 3.7 2.6 6.8 1.2 2.4-1.1 4.8-2.8 6.8-4.5 1.2-4.9.9-3.8 26.4-68.2 1.3-3.3 3.7-4.7 6.1-4.7 1.2 0 2.2.4 3.2 1.1 1.7 1.3 1.7 4.1 1 6.2-.7 1.9-.6 1.3-4.5 10.5-5.2 12.1-8.6 20.8-13.2 31.9-1.9 4.6-7.7 18.9-8.7 22.3-.6 2.2-1.3 5.8 1 5.8 5.4 0 19.3-13.1 23.1-17 .2-.3.5-.4.9-.6.6-1.9 1.2-3.7 1.7-5.5 1.4-3.8 2.7-8.2 5.3-11.3.8-1 1.7-1.6 2.7-1.6 2.8 0 4.2 1.2 4.2 4 0 1.1-.7 5.1-1.1 6.2 1.4-1.5 2.9-3 4.5-4.5 15-13.9 25.7-6.8 25.7.2 0 7.4-8.9 17.7-13.8 23.4-1.6 1.9-4.9 5.4-5 6.4 0 1.3.9 1.8 2.2 1.8 2 0 6.4-3.5 8-4.7 5-3.9 11.8-9.9 16.6-14.1l14.8-136.8c-30.5 17.1-197.6 17.2-228.3.2zm229.7-8.5c0 21-231.2 21-231.2 0 0-8.8 51.8-15.9 115.6-15.9 9 0 17.8.1 26.3.4l12.6-48.7L228.1.6c1.4-1.4 5.8-.2 9.9 3.5s6.6 7.9 5.3 9.3l-.1.1L185.9 74l-10 40.7c39.9 2.6 67.6 8.1 67.6 14.6zm-69.4 4.6c0-.8-.9-1.5-2.5-2.1l-.2.8c0 1.3-5 2.4-11.1 2.4s-11.1-1.1-11.1-2.4c0-.1 0-.2.1-.3l.2-.7c-1.8.6-3 1.4-3 2.3 0 2.1 6.2 3.7 13.7 3.7 7.7.1 13.9-1.6 13.9-3.7z"] }; +var faHackerNews = { prefix: 'fab', iconName: 'hacker-news', icon: [448, 512, [], "f1d4", "M0 32v448h448V32H0zm21.2 197.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z"] }; +var faHackerNewsSquare = { prefix: 'fab', iconName: 'hacker-news-square', icon: [448, 512, [], "f3af", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM21.2 229.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z"] }; +var faHips = { prefix: 'fab', iconName: 'hips', icon: [640, 512, [], "f452", "M0 80.2c0-1.8.9-2.7 2.7-2.7h40.9c1.9 0 2.8.9 2.8 2.7v81.2c15.2-7.7 31.7-11.5 49.8-11.4 24 .1 44.2 6.2 60.3 18 18.7 13.5 28 31.9 28 55.3v136.1c0 1.9-.9 2.8-2.7 2.8h-27.3c-9.1 0-16.4-7.3-16.4-16.3V223.3c0-.9 2.7-27-45.8-27-48.6 0-45.8 26.2-45.8 27v136.1c0 1.9-.9 2.8-2.8 2.8h-41c-1.8 0-2.7-.9-2.7-2.8V80.2zm497.7 221.5c13.7 10.2 34.1 19.1 58.4 19.1 23.3 0 32.8-4.5 36.5-13.6 3-7.9-.6-16.1-12.2-21.2l-53.6-23.5c-21.4-9.4-33.8-24-37.2-43.6-5.7-33.7 22.2-53.3 22.7-53.7 13.2-9.6 32-15.4 58.5-15.4 19 0 37.4 3.3 55.1 9.9 1.3.5 1.9 1.3 1.9 2.6V207c0 2.1-2.3 3.4-4 2.4-39.7-20.7-76.6-12.3-84-6.8-6.6 4.9-6 12.5 2.6 16.1L600 244c16.5 7.1 28.1 18.4 34.9 34.1 5.5 12.6 6.6 25.6 3.1 39.1-9.6 36.9-44.9 45.5-45.6 45.8-10.5 3.1-23.6 4.3-36.3 4.3-16.6 0-32.6-2.7-48.2-8.2-9.7-3.4-14.6-10.3-14.6-20.7V304c0-2.1 2.3-3.7 4.4-2.3zM376.2 149.8c-31.7 0-104.2 20.1-104.2 103.5v183.5c0 .8.6 2.7 2.7 2.7h40.9c1.9 0 2.8-.9 2.8-2.7V348c16.5 12.7 35.8 19.1 57.7 19.1 60.5 0 108.7-48.5 108.7-108.7.1-60.3-48.2-108.6-108.6-108.6zm0 170.9c-17.2 0-31.9-6.1-44-18.2-12.2-12.2-18.2-26.8-18.2-44 0-34.5 27.6-62.2 62.2-62.2 34.5 0 62.2 27.6 62.2 62.2.1 34.3-27.3 62.2-62.2 62.2zm-124.6 38.7c0 1.9-.9 2.8-2.8 2.8h-40.9c-1.6 0-2.7-1.4-2.7-2.8V157.6c0-1.4 1.1-2.8 2.7-2.8h40.9c1.9 0 2.8.9 2.8 2.8v201.8M228.3 72.5c15.9 0 28.9 12.7 28.9 28.9 0 15.8-12.7 28.9-28.9 28.9s-28.9-13.3-28.9-28.9c.1-16 13-28.9 28.9-28.9"] }; +var faHireAHelper = { prefix: 'fab', iconName: 'hire-a-helper', icon: [512, 512, [], "f3b0", "M443.1 0H71.9C67.9 37.3 37.4 67.8 0 71.7v371.5c37.4 4.9 66 32.4 71.9 68.8h372.2c3-36.4 32.5-65.8 67.9-69.8V71.7c-36.4-5.9-65-35.3-68.9-71.7zm-37 404.9c-36.3 0-18.8-2-55.1-2-35.8 0-21 2-56.1 2-5.9 0-4.9-8.2 0-9.8 22.8-7.6 22.9-10.2 24.6-12.8 10.4-15.6 5.9-83 5.9-113 0-5.3-6.4-12.8-13.8-12.8H200.4c-7.4 0-13.8 7.5-13.8 12.8 0 30-4.5 97.4 5.9 113 1.7 2.5 1.8 5.2 24.6 12.8 4.9 1.6 6 9.8 0 9.8-35.1 0-20.3-2-56.1-2-36.3 0-18.8 2-55.1 2-7.9 0-5.8-10.8 0-10.8 10.2-3.4 13.5-3.5 21.7-13.8 7.7-12.9 7.9-44.4 7.9-127.8V151.3c0-22.2-12.2-28.3-28.6-32.4-8.8-2.2-4-11.8 1-11.8 36.5 0 20.6 2 57.1 2 32.7 0 16.5-2 49.2-2 3.3 0 8.5 8.3 1 10.8-4.9 1.6-27.6 3.7-27.6 39.3 0 45.6-.2 55.8 1 68.8 0 1.3 2.3 12.8 12.8 12.8h109.2c10.5 0 12.8-11.5 12.8-12.8 1.2-13 1-23.2 1-68.8 0-35.6-22.7-37.7-27.6-39.3-7.5-2.5-2.3-10.8 1-10.8 32.7 0 16.5 2 49.2 2 36.5 0 20.6-2 57.1-2 4.9 0 9.9 9.6 1 11.8-16.4 4.1-28.6 10.3-28.6 32.4v101.2c0 83.4.1 114.9 7.9 127.8 8.2 10.2 11.4 10.4 21.7 13.8 5.8 0 7.8 10.8 0 10.8z"] }; +var faHooli = { prefix: 'fab', iconName: 'hooli', icon: [640, 512, [], "f427", "M508.4 352h57.9V156.7L508.4 184v168zm73.7-110.5V352H640V241.5h-57.9zm-250.7-8.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.2-1.1-50.4 17.1c-1.9 1.9-3.7 3.9-5.3 6-38.2-29.6-72.5-46.5-102.1-61.1v-20.7l-22.5 10.6c-54.4-22.1-89-18.2-97.3.1 0 0-24.9 32.8 61.9 110.9v-31c-48.8-54.6-39-76.1-35.3-79.2 13.5-11.4 37.5-8 64.4 2.1L65.2 184v63.3c13.1 14.7 30.5 31.5 53.5 50.4l4.5 3.6v-29.8c0-6.9 1.7-18.2 10.8-18.2s10.6 6.9 10.6 15V317c18 12.2 37.3 22.1 57.7 29.6v-93.9c0-18.7-13.4-37.4-40.6-37.4-15.8-.1-30.5 8.2-38.5 21.9v-54.3c41.9 20.9 83.9 46.5 99.9 58.3-10.2 14.6-9.3 28.1-9.3 43.7 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.7-33.8 16.7-52.5 0-18.5 1.5-34.2-16.7-52.3zm-39.7 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm185.7-71.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.3-1.1-50.4 17.1c-18.2 18.2-16.8 33.9-16.8 52.6 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.8-33.8 16.8-52.5-.1-18.8 1.3-34.5-16.8-52.6zm-39.8 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm173.5-73c15.9 0 28.9-12.9 28.9-28.9s-12.9-24.5-28.9-24.5c-15.9 0-28.9 8.6-28.9 24.5s12.9 28.9 28.9 28.9zM144.5 352l38.3.8c-13.2-4.6-26-10.2-38.3-16.8v16zm-21.4 0v-28.6c-6.5-4.2-13-8.7-19.4-13.6-14.8-11.2-27.5-21.7-38.5-31.5V352h57.9zm59.7.8c36.5 12.5 69.9 14.2 94.7 7.2-19.9.2-45.8-2.6-75.3-13.3v5.3l-19.4.8z"] }; +var faHornbill = { prefix: 'fab', iconName: 'hornbill', icon: [509, 512, [], "f592", "M75.37 370.3c2.14 15.83-5.77 31.98-20.94 39.29-18.85 9.1-41.55 1.17-50.68-17.68-9.08-18.83-1.13-41.58 17.7-50.65 7.05-3.4 14.63-4.42 21.85-3.38-78.28-111.35 52-190.53 52-190.53-5.86 43.04-8.24 91.16-8.24 91.16-67.31 41.45.92 64.06 39.81 72.87 19.77 53.62 71.18 91.94 131.66 91.94 1.92 0 3.77-.21 5.67-.28l.11 18.86c-99.22 1.39-158.7-29.14-188.94-51.6zM183.38 42.6c.89-7-.1-14.33-3.39-21.15-9.1-18.84-31.82-26.78-50.66-17.69-18.86 9.1-26.8 31.83-17.69 50.68 6.98 14.47 22.02 22.42 37.18 21.23-22.55 29.91-53.83 89.57-52.42 190.03l21.84-.15c-.02-.9-.14-1.77-.14-2.68 0-58.95 36.37-109.33 87.85-130.16 8.01-37.75 30.74-114.3 73.84-44.29 0 0 48.14 2.38 91.18 8.24 0-.01-77.84-128.03-187.59-54.06zm304.18 134.17c18.84-9.09 26.81-31.81 17.7-50.65-9.1-18.85-31.83-26.77-50.67-17.69-15.27 7.37-23.19 23.69-20.87 39.64-31.71-21.94-89.84-49.05-183.45-47.74l.14 22.5c2.7-.15 5.39-.41 8.14-.41 59.3 0 109.9 36.8 130.49 88.76 39.1 9.02 105.06 31.58 38.46 72.54 0 0-2.34 48.13-8.21 91.16 0 0 133.45-81.16 48.96-194.61 6.43.5 13.07-.49 19.31-3.5zM373.05 436.24c21.43-32.46 46.42-89.69 45.14-179.66l-19.52.14c.08 2.06.3 4.07.3 6.15 0 60.27-38.05 111.55-91.39 131.45-8.85 38.95-31.44 106.66-72.77 39.49 0 0-48.12-2.34-91.19-8.22 0 0 79.92 131.34 191.9 50.97.31 4.72 1.45 9.45 3.64 13.97 9.06 18.89 31.8 26.78 50.64 17.71 18.86-9.1 26.79-31.83 17.7-50.65-6.56-13.62-20.26-21.43-34.45-21.35z"] }; +var faHotjar = { prefix: 'fab', iconName: 'hotjar', icon: [448, 512, [], "f3b1", "M414.9 161.5C340.2 29 121.1 0 121.1 0S222.2 110.4 93 197.7C11.3 252.8-21 324.4 14 402.6c26.8 59.9 83.5 84.3 144.6 93.4-29.2-55.1-6.6-122.4-4.1-129.6 57.1 86.4 165 0 110.8-93.9 71 15.4 81.6 138.6 27.1 215.5 80.5-25.3 134.1-88.9 148.8-145.6 15.5-59.3 3.7-127.9-26.3-180.9z"] }; +var faHouzz = { prefix: 'fab', iconName: 'houzz', icon: [414, 512, [], "f27c", "M258.9 330.7H154.3V480H0V32h109.5v104.5l305.1 85.6V480H258.9V330.7z"] }; +var faHtml5 = { prefix: 'fab', iconName: 'html5', icon: [384, 512, [], "f13b", "M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z"] }; +var faHubspot = { prefix: 'fab', iconName: 'hubspot', icon: [512, 512, [], "f3b2", "M267.4 211.6c-25.1 23.7-40.8 57.3-40.8 94.6 0 29.3 9.7 56.3 26 78L203.1 434c-4.4-1.6-9.1-2.5-14-2.5-10.8 0-20.9 4.2-28.5 11.8-7.6 7.6-11.8 17.8-11.8 28.6s4.2 20.9 11.8 28.5c7.6 7.6 17.8 11.6 28.5 11.6 10.8 0 20.9-3.9 28.6-11.6 7.6-7.6 11.8-17.8 11.8-28.5 0-4.2-.6-8.2-1.9-12.1l50-50.2c22 16.9 49.4 26.9 79.3 26.9 71.9 0 130-58.3 130-130.2 0-65.2-47.7-119.2-110.2-128.7V116c17.5-7.4 28.2-23.8 28.2-42.9 0-26.1-20.9-47.9-47-47.9S311.2 47 311.2 73.1c0 19.1 10.7 35.5 28.2 42.9v61.2c-15.2 2.1-29.6 6.7-42.7 13.6-27.6-20.9-117.5-85.7-168.9-124.8 1.2-4.4 2-9 2-13.8C129.8 23.4 106.3 0 77.4 0 48.6 0 25.2 23.4 25.2 52.2c0 28.9 23.4 52.3 52.2 52.3 9.8 0 18.9-2.9 26.8-7.6l163.2 114.7zm89.5 163.6c-38.1 0-69-30.9-69-69s30.9-69 69-69 69 30.9 69 69-30.9 69-69 69z"] }; +var faImdb = { prefix: 'fab', iconName: 'imdb', icon: [448, 512, [], "f2d8", "M350.5 288.7c0 5.4 1.6 14.4-6.2 14.4-1.6 0-3-.8-3.8-2.4-2.2-5.1-1.1-44.1-1.1-44.7 0-3.8-1.1-12.7 4.9-12.7 7.3 0 6.2 7.3 6.2 12.7v32.7zM265 229.9c0-9.7 1.6-16-10.3-16v83.7c12.2.3 10.3-8.7 10.3-18.4v-49.3zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM21.3 228.8c-.1.1-.2.3-.3.4h.3v-.4zM97 192H64v127.8h33V192zm113.3 0h-43.1l-7.6 59.9c-2.7-20-5.4-40.1-8.7-59.9h-42.8v127.8h29v-84.5l12.2 84.5h20.6l11.6-86.4v86.4h28.7V192zm86.3 45.3c0-8.1.3-16.8-1.4-24.4-4.3-22.5-31.4-20.9-49-20.9h-24.6v127.8c86.1.1 75 6 75-82.5zm85.9 17.3c0-17.3-.8-30.1-22.2-30.1-8.9 0-14.9 2.7-20.9 9.2V192h-31.7v127.8h29.8l1.9-8.1c5.7 6.8 11.9 9.8 20.9 9.8 19.8 0 22.2-15.2 22.2-30.9v-36z"] }; +var faInstagram = { prefix: 'fab', iconName: 'instagram', icon: [448, 512, [], "f16d", "M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"] }; +var faInternetExplorer = { prefix: 'fab', iconName: 'internet-explorer', icon: [512, 512, [], "f26b", "M483.049 159.706c10.855-24.575 21.424-60.438 21.424-87.871 0-72.722-79.641-98.371-209.673-38.577-107.632-7.181-211.221 73.67-237.098 186.457 30.852-34.862 78.271-82.298 121.977-101.158C125.404 166.85 79.128 228.002 43.992 291.725 23.246 329.651 0 390.94 0 436.747c0 98.575 92.854 86.5 180.251 42.006 31.423 15.43 66.559 15.573 101.695 15.573 97.124 0 184.249-54.294 216.814-146.022H377.927c-52.509 88.593-196.819 52.996-196.819-47.436H509.9c6.407-43.581-1.655-95.715-26.851-141.162zM64.559 346.877c17.711 51.15 53.703 95.871 100.266 123.304-88.741 48.94-173.267 29.096-100.266-123.304zm115.977-108.873c2-55.151 50.276-94.871 103.98-94.871 53.418 0 101.981 39.72 103.981 94.871H180.536zm184.536-187.6c21.425-10.287 48.563-22.003 72.558-22.003 31.422 0 54.274 21.717 54.274 53.722 0 20.003-7.427 49.007-14.569 67.867-26.28-42.292-65.986-81.584-112.263-99.586z"] }; +var faIoxhost = { prefix: 'fab', iconName: 'ioxhost', icon: [640, 512, [], "f208", "M616 160h-67.3C511.2 70.7 422.9 8 320 8 183 8 72 119 72 256c0 16.4 1.6 32.5 4.7 48H24c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h67.3c37.5 89.3 125.8 152 228.7 152 137 0 248-111 248-248 0-16.4-1.6-32.5-4.7-48H616c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24zm-96 96c0 110.5-89.5 200-200 200-75.7 0-141.6-42-175.5-104H424c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24H125.8c-3.8-15.4-5.8-31.4-5.8-48 0-110.5 89.5-200 200-200 75.7 0 141.6 42 175.5 104H216c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h298.2c3.8 15.4 5.8 31.4 5.8 48zm-304-24h208c13.3 0 24 10.7 24 24 0 13.2-10.7 24-24 24H216c-13.3 0-24-10.7-24-24 0-13.2 10.7-24 24-24z"] }; +var faItunes = { prefix: 'fab', iconName: 'itunes', icon: [448, 512, [], "f3b4", "M223.6 80.3C129 80.3 52.5 157 52.5 251.5S129 422.8 223.6 422.8s171.2-76.7 171.2-171.2c0-94.6-76.7-171.3-171.2-171.3zm79.4 240c-3.2 13.6-13.5 21.2-27.3 23.8-12.1 2.2-22.2 2.8-31.9-5-11.8-10-12-26.4-1.4-36.8 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 3.2-3.6 2.2-2 2.2-80.8 0-5.6-2.7-7.1-8.4-6.1-4 .7-91.9 17.1-91.9 17.1-5 1.1-6.7 2.6-6.7 8.3 0 116.1.5 110.8-1.2 118.5-2.1 9-7.6 15.8-14.9 19.6-8.3 4.6-23.4 6.6-31.4 5.2-21.4-4-28.9-28.7-14.4-42.9 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 5-5.7.9-127 2.6-133.7.4-2.6 1.5-4.8 3.5-6.4 2.1-1.7 5.8-2.7 6.7-2.7 101-19 113.3-21.4 115.1-21.4 5.7-.4 9 3 9 8.7-.1 170.6.4 161.4-1 167.6zM345.2 32H102.8C45.9 32 0 77.9 0 134.8v242.4C0 434.1 45.9 480 102.8 480h242.4c57 0 102.8-45.9 102.8-102.8V134.8C448 77.9 402.1 32 345.2 32zM223.6 444c-106.3 0-192.5-86.2-192.5-192.5S117.3 59 223.6 59s192.5 86.2 192.5 192.5S329.9 444 223.6 444z"] }; +var faItunesNote = { prefix: 'fab', iconName: 'itunes-note', icon: [384, 512, [], "f3b5", "M381.9 388.2c-6.4 27.4-27.2 42.8-55.1 48-24.5 4.5-44.9 5.6-64.5-10.2-23.9-20.1-24.2-53.4-2.7-74.4 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 6.4-7.2 4.4-4.1 4.4-163.2 0-11.2-5.5-14.3-17-12.3-8.2 1.4-185.7 34.6-185.7 34.6-10.2 2.2-13.4 5.2-13.4 16.7 0 234.7 1.1 223.9-2.5 239.5-4.2 18.2-15.4 31.9-30.2 39.5-16.8 9.3-47.2 13.4-63.4 10.4-43.2-8.1-58.4-58-29.1-86.6 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 10.1-11.5 1.8-256.6 5.2-270.2.8-5.2 3-9.6 7.1-12.9 4.2-3.5 11.8-5.5 13.4-5.5 204-38.2 228.9-43.1 232.4-43.1 11.5-.8 18.1 6 18.1 17.6.2 344.5 1.1 326-1.8 338.5z"] }; +var faJava = { prefix: 'fab', iconName: 'java', icon: [377, 512, [], "f4e4", "M121.6 396s-19.6 11.4 13.9 15.2c40.6 4.6 61.3 4 106-4.5 0 0 11.8 7.4 28.2 13.8C169.5 463.4 42.9 418 121.6 396m-12.2-56.1s-21.9 16.2 11.6 19.7c43.3 4.5 77.6 4.8 136.8-6.6 0 0 8.2 8.3 21.1 12.8-121.3 35.5-256.3 2.9-169.5-25.9m103.2-95.1c24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3.1 0-175.2 43.8-91.5 140.2m132.6 192.6s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6.7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2 204.2 33.2 372.4-14.9 319.4-38.8M131 281.8s-93.1 22.1-33 30.1c25.4 3.4 76 2.6 123.1-1.3 38.5-3.2 77.2-10.2 77.2-10.2s-13.6 5.8-23.4 12.5c-94.5 24.9-277 13.3-224.5-12.1 44.5-21.4 80.6-19 80.6-19m167 93.3c96.1-49.9 51.6-97.9 20.6-91.4-7.6 1.6-11 3-11 3s2.8-4.4 8.2-6.3c61.3-21.6 108.5 63.6-19.8 97.3 0-.1 1.5-1.4 2-2.6M240 0s53.2 53.2-50.5 135c-83.1 65.6-19 103.1 0 145.8-48.5-43.8-84.1-82.3-60.2-118.2C164.4 110.1 261.5 84.5 240 0m-99.5 510.4c92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6"] }; +var faJediOrder = { prefix: 'fab', iconName: 'jedi-order', icon: [448, 512, [], "f50e", "M231.89 335.72l31.44-45.89-20.18 55.5 62.56 9.09-62.56 9.08 24.22 47.43s-30.22-31.77-34.49-36.25c1.76 68.78 2.19 85.7 2.19 85.7s154.4-71.65 68.62-230.09c0 0 106.97-118.07 10.09-190.73 0 0 165.5 99.91 60.55 271.46 0 0 86.78-84.77 41.37-170.54 0 0 78.71 111.01-17.16 233.11 0 0 26.24-16.15 49.45-77.71 0 0-16.93 183.26-221.96 185.66v.02h-4.08v-.02C16.93 479.14 0 295.88 0 295.88c23.21 61.56 49.44 77.71 49.44 77.71-95.87-122.11-17.15-233.11-17.15-233.11-45.41 85.78 41.38 170.54 41.38 170.54-104.95-171.56 60.54-271.46 60.54-271.46-96.88 72.66 10.09 190.73 10.09 190.73-85.78 158.44 68.62 230.09 68.62 230.09s.43-16.93 2.19-85.7l-34.48 36.25 24.22-47.43-62.56-9.08 62.56-9.09-20.18-55.5 31.44 45.89c2.25-87.85 7.82-305.82 7.85-306.85l.01-2.43.02 1 .03-1 .01 2.43c.05 1.72 5.61 219.2 7.86 306.85z"] }; +var faJenkins = { prefix: 'fab', iconName: 'jenkins', icon: [512, 512, [], "f3b6", "M487.1 425c-1.4-11.2-19-23.1-28.2-31.9-5.1-5-29-23.1-30.4-29.9-1.4-6.6 9.7-21.5 13.3-28.9 5.1-10.7 8.8-23.7 11.3-32.6 18.8-66.1 20.7-156.9-6.2-211.2-10.2-20.6-38.6-49-56.4-62.5-42-31.7-119.6-35.3-170.1-16.6-14.1 5.2-27.8 9.8-40.1 17.1-33.1 19.4-68.3 32.5-78.1 71.6-24.2 10.8-31.5 41.8-30.3 77.8.2 7 4.1 15.8 2.7 22.4-.7 3.3-5.2 7.6-6.1 9.8-11.6 27.7-2.3 64 11.1 83.7 8.1 11.9 21.5 22.4 39.2 25.2.7 10.6 3.3 19.7 8.2 30.4 3.1 6.8 14.7 19 10.4 27.7-2.2 4.4-21 13.8-27.3 17.6C89 407.2 73.7 415 54.2 429c-12.6 9-32.3 10.2-29.2 31.1 2.1 14.1 10.1 31.6 14.7 45.8.7 2 1.4 4.1 2.1 6h422c4.9-15.3 9.7-30.9 14.6-47.2 3.4-11.4 10.2-27.8 8.7-39.7zM205.9 33.7c1.8-.5 3.4.7 4.9 2.4-.2 5.2-5.4 5.1-8.9 6.8-5.4 6.7-13.4 9.8-20 17.2-6.8 7.5-14.4 27.7-23.4 30-4.5 1.1-9.7-.8-13.6-.5-10.4.7-17.7 6-28.3 7.5 13.6-29.9 56.1-54 89.3-63.4zm-104.8 93.6c13.5-14.9 32.1-24.1 54.8-25.9 11.7 29.7-8.4 65-.9 97.6 2.3 9.9 10.2 25.4-2.4 25.7.3-28.3-34.8-46.3-61.3-29.6-1.8-21.5-4.9-51.7 9.8-67.8zm36.7 200.2c-1-4.1-2.7-12.9-2.3-15.1 1.6-8.7 17.1-12.5 11-24.7-11.3-.1-13.8 10.2-24.1 11.3-26.7 2.6-45.6-35.4-44.4-58.4 1-19.5 17.6-38.2 40.1-35.8 16 1.8 21.4 19.2 24.5 34.7 9.2.5 22.5-.4 26.9-7.6-.6-17.5-8.8-31.6-8.2-47.7 1-30.3 17.5-57.6 4.8-87.4 13.6-30.9 53.5-55.3 83.1-70 36.6-18.3 94.9-3.7 129.3 15.8 19.7 11.1 34.4 32.7 48.3 50.7-19.5-5.8-36.1 4.2-33.1 20.3 16.3-14.9 44.2-.2 52.5 16.4 7.9 15.8 7.8 39.3 9 62.8 2.9 57-10.4 115.9-39.1 157.1-7.7 11-14.1 23-24.9 30.6-26 18.2-65.4 34.7-99.2 23.4-44.7-15-65-44.8-89.5-78.8.7 18.7 13.8 34.1 26.8 48.4 11.3 12.5 25 26.6 39.7 32.4-12.3-2.9-31.1-3.8-36.2 7.2-28.6-1.9-55.1-4.8-68.7-24.2-10.6-15.4-21.4-41.4-26.3-61.4zm222 124.1c4.1-3 11.1-2.9 17.4-3.6-5.4-2.7-13-3.7-19.3-2.2-.1-4.2-2-6.8-3.2-10.2 10.6-3.8 35.5-28.5 49.6-20.3 6.7 3.9 9.5 26.2 10.1 37 .4 9-.8 18-4.5 22.8-18.8-.6-35.8-2.8-50.7-7 .9-6.1-1-12.1.6-16.5zm-17.2-20c-16.8.8-26-1.2-38.3-10.8.2-.8 1.4-.5 1.5-1.4 18 8 40.8-3.3 59-4.9-7.9 5.1-14.6 11.6-22.2 17.1zm-12.1 33.2c-1.6-9.4-3.5-12-2.8-20.2 25-16.6 29.7 28.6 2.8 20.2zM226 438.6c-11.6-.7-48.1-14-38.5-23.7 9.4 6.5 27.5 4.9 41.3 7.3.8 4.4-2.8 10.2-2.8 16.4zM57.7 497.1c-4.3-12.7-9.2-25.1-14.8-36.9 30.8-23.8 65.3-48.9 102.2-63.5 2.8-1.1 23.2 25.4 26.2 27.6 16.5 11.7 37 21 56.2 30.2 1.2 8.8 3.9 20.2 8.7 35.5.7 2.3 1.4 4.7 2.2 7.2H57.7zm240.6 5.7h-.8c.3-.2.5-.4.8-.5v.5zm7.5-5.7c2.1-1.4 4.3-2.8 6.4-4.3 1.1 1.4 2.2 2.8 3.2 4.3h-9.6zm15.1-24.7c-10.8 7.3-20.6 18.3-33.3 25.2-6 3.3-27 11.7-33.4 10.2-3.6-.8-3.9-5.3-5.4-9.5-3.1-9-10.1-23.4-10.8-37-.8-17.2-2.5-46 16-42.4 14.9 2.9 32.3 9.7 43.9 16.1 7.1 3.9 11.1 8.6 21.9 9.5-.1 1.4-.1 2.8-.2 4.3-5.9 3.9-15.3 3.8-21.8 7.1 9.5.4 17 2.7 23.5 5.9-.1 3.4-.3 7-.4 10.6zm53.4 24.7h-14c-.1-3.2-2.8-5.8-6.1-5.8s-5.9 2.6-6.1 5.8h-17.4c-2.8-4.4-5.7-8.6-8.9-12.5 2.1-2.2 4-4.7 6-6.9 9 3.7 14.8-4.9 21.7-4.2 7.9.8 14.2 11.7 25.4 11l-.6 12.6zm8.7 0c.2-4 .4-7.8.6-11.5 15.6-7.3 29 1.3 35.7 11.5H383zm83.4-37c-2.3 11.2-5.8 24-9.9 37.1-.2-.1-.4-.1-.6-.1H428c.6-1.1 1.2-2.2 1.9-3.3-2.6-6.1-9-8.7-10.9-15.5 12.1-22.7 6.5-93.4-24.2-78.5 4.3-6.3 15.6-11.5 20.8-19.3 13 10.4 20.8 20.3 33.2 31.4 6.8 6 20 13.3 21.4 23.1.8 5.5-2.6 18.9-3.8 25.1zM222.2 130.5c5.4-14.9 27.2-34.7 45-32 7.7 1.2 18 8.2 12.2 17.7-30.2-7-45.2 12.6-54.4 33.1-8.1-2-4.9-13.1-2.8-18.8zm184.1 63.1c8.2-3.6 22.4-.7 29.6-5.3-4.2-11.5-10.3-21.4-9.3-37.7.5 0 1 0 1.4.1 6.8 14.2 12.7 29.2 21.4 41.7-5.7 13.5-43.6 25.4-43.1 1.2zm20.4-43zm-117.2 45.7c-6.8-10.9-19-32.5-14.5-45.3 6.5 11.9 8.6 24.4 17.8 33.3 4.1 4 12.2 9 8.2 20.2-.9 2.7-7.8 8.6-11.7 9.7-14.4 4.3-47.9.9-36.6-17.1 11.9.7 27.9 7.8 36.8-.8zm27.3 70c3.8 6.6 1.4 18.7 12.1 20.6 20.2 3.4 43.6-12.3 58.1-17.8 9-15.2-.8-20.7-8.9-30.5-16.6-20-38.8-44.8-38-74.7 6.7-4.9 7.3 7.4 8.2 9.7 8.7 20.3 30.4 46.2 46.3 63.5 3.9 4.3 10.3 8.4 11 11.2 2.1 8.2-5.4 18-4.5 23.5-21.7 13.9-45.8 29.1-81.4 25.6-7.4-6.7-10.3-21.4-2.9-31.1zm-201.3-9.2c-6.8-3.9-8.4-21-16.4-21.4-11.4-.7-9.3 22.2-9.3 35.5-7.8-7.1-9.2-29.1-3.5-40.3-6.6-3.2-9.5 3.6-13.1 5.9 4.7-34.1 49.8-15.8 42.3 20.3zm299.6 28.8c-10.1 19.2-24.4 40.4-54 41-.6-6.2-1.1-15.6 0-19.4 22.7-2.2 36.6-13.7 54-21.6zm-141.9 12.4c18.9 9.9 53.6 11 79.3 10.2 1.4 5.6 1.3 12.6 1.4 19.4-33 1.8-72-6.4-80.7-29.6zm92.2 46.7c-1.7 4.3-5.3 9.3-9.8 11.1-12.1 4.9-45.6 8.7-62.4-.3-10.7-5.7-17.5-18.5-23.4-26-2.8-3.6-16.9-12.9-.2-12.9 13.1 32.7 58 29 95.8 28.1z"] }; +var faJoget = { prefix: 'fab', iconName: 'joget', icon: [496, 512, [], "f3b7", "M227.5 468.7c-9-13.6-19.9-33.3-23.7-42.4-5.7-13.7-27.2-45.6 31.2-67.1 51.7-19.1 176.7-16.5 208.8-17.6-4 9-8.6 17.9-13.9 26.6-40.4 65.5-110.4 101.5-182 101.5-6.8 0-13.6-.4-20.4-1M66.1 143.9C128 43.4 259.6 12.2 360.1 74.1c74.8 46.1 111.2 130.9 99.3 212.7-24.9-.5-179.3-3.6-230.3-4.9-55.5-1.4-81.7-20.8-58.5-48.2 23.2-27.4 51.1-40.7 68.9-51.2 17.9-10.5 27.3-33.7-23.6-29.7C87.3 161.5 48.6 252.1 37.6 293c-8.8-49.7-.1-102.7 28.5-149.1m-29.2-18c-71.9 116.6-35.6 269.3 81 341.2 116.6 71.9 269.3 35.6 341.2-80.9 71.9-116.6 35.6-269.4-81-341.2-40.5-25.1-85.5-37-129.9-37C165 8 83.8 49.9 36.9 125.9m244.4 110.4c-31.5 20.5-65.3 31.3-65.3 31.3l169.5-1.6 46.5-23.4s3.6-9.5-19.1-15.5c-22.7-6-57 11.3-86.7 27.2-29.7 15.8-31.1 8.2-31.1 8.2s40.2-28.1 50.7-34.5c10.5-6.4 31.9-14 13.4-24.6-3.2-1.8-6.7-2.7-10.4-2.7-17.8 0-41.5 18.7-67.5 35.6"] }; +var faJoomla = { prefix: 'fab', iconName: 'joomla', icon: [448, 512, [], "f1aa", "M.6 92.1C.6 58.8 27.4 32 60.4 32c30 0 54.5 21.9 59.2 50.2 32.6-7.6 67.1.6 96.5 30l-44.3 44.3c-20.5-20.5-42.6-16.3-55.4-3.5-14.3 14.3-14.3 37.9 0 52.2l99.5 99.5-44 44.3c-87.7-87.2-49.7-49.7-99.8-99.7-26.8-26.5-35-64.8-24.8-98.9C20.4 144.6.6 120.7.6 92.1zm129.5 116.4l44.3 44.3c10-10 89.7-89.7 99.7-99.8 14.3-14.3 37.6-14.3 51.9 0 12.8 12.8 17 35-3.5 55.4l44 44.3c31.2-31.2 38.5-67.6 28.9-101.2 29.2-4.1 51.9-29.2 51.9-59.5 0-33.2-26.8-60.1-59.8-60.1-30.3 0-55.4 22.5-59.5 51.6-33.8-9.9-71.7-1.5-98.3 25.1-18.3 19.1-71.1 71.5-99.6 99.9zm266.3 152.2c8.2-32.7-.9-68.5-26.3-93.9-11.8-12.2 5 4.7-99.5-99.7l-44.3 44.3 99.7 99.7c14.3 14.3 14.3 37.6 0 51.9-12.8 12.8-35 17-55.4-3.5l-44 44.3c27.6 30.2 68 38.8 102.7 28 5.5 27.4 29.7 48.1 58.9 48.1 33 0 59.8-26.8 59.8-60.1 0-30.2-22.5-55-51.6-59.1zm-84.3-53.1l-44-44.3c-87 86.4-50.4 50.4-99.7 99.8-14.3 14.3-37.6 14.3-51.9 0-13.1-13.4-16.9-35.3 3.2-55.4l-44-44.3c-30.2 30.2-38 65.2-29.5 98.3-26.7 6-46.2 29.9-46.2 58.2C0 453.2 26.8 480 59.8 480c28.6 0 52.5-19.8 58.6-46.7 32.7 8.2 68.5-.6 94.2-26 32.1-32 12.2-12.4 99.5-99.7z"] }; +var faJs = { prefix: 'fab', iconName: 'js', icon: [448, 512, [], "f3b8", "M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"] }; +var faJsSquare = { prefix: 'fab', iconName: 'js-square', icon: [448, 512, [], "f3b9", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM243.8 381.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"] }; +var faJsfiddle = { prefix: 'fab', iconName: 'jsfiddle', icon: [576, 512, [], "f1cc", "M510.634 237.462c-4.727-2.621-5.664-5.748-6.381-10.776-2.352-16.488-3.539-33.619-9.097-49.095-35.895-99.957-153.99-143.386-246.849-91.646-27.37 15.25-48.971 36.369-65.493 63.903-3.184-1.508-5.458-2.71-7.824-3.686-30.102-12.421-59.049-10.121-85.331 9.167-25.531 18.737-36.422 44.548-32.676 76.408.355 3.025-1.967 7.621-4.514 9.545-39.712 29.992-56.031 78.065-41.902 124.615 13.831 45.569 57.514 79.796 105.608 81.433 30.291 1.031 60.637.546 90.959.539 84.041-.021 168.09.531 252.12-.48 52.664-.634 96.108-36.873 108.212-87.293 11.54-48.074-11.144-97.3-56.832-122.634zm21.107 156.88c-18.23 22.432-42.343 35.253-71.28 35.65-56.874.781-113.767.23-170.652.23 0 .7-163.028.159-163.728.154-43.861-.332-76.739-19.766-95.175-59.995-18.902-41.245-4.004-90.848 34.186-116.106 9.182-6.073 12.505-11.566 10.096-23.136-5.49-26.361 4.453-47.956 26.42-62.981 22.987-15.723 47.422-16.146 72.034-3.083 10.269 5.45 14.607 11.564 22.198-2.527 14.222-26.399 34.557-46.727 60.671-61.294 97.46-54.366 228.37 7.568 230.24 132.697.122 8.15 2.412 12.428 9.848 15.894 57.56 26.829 74.456 96.122 35.142 144.497zm-87.789-80.499c-5.848 31.157-34.622 55.096-66.666 55.095-16.953-.001-32.058-6.545-44.079-17.705-27.697-25.713-71.141-74.98-95.937-93.387-20.056-14.888-41.99-12.333-60.272 3.782-49.996 44.071 15.859 121.775 67.063 77.188 4.548-3.96 7.84-9.543 12.744-12.844 8.184-5.509 20.766-.884 13.168 10.622-17.358 26.284-49.33 38.197-78.863 29.301-28.897-8.704-48.84-35.968-48.626-70.179 1.225-22.485 12.364-43.06 35.414-55.965 22.575-12.638 46.369-13.146 66.991 2.474C295.68 280.7 320.467 323.97 352.185 343.47c24.558 15.099 54.254 7.363 68.823-17.506 28.83-49.209-34.592-105.016-78.868-63.46-3.989 3.744-6.917 8.932-11.41 11.72-10.975 6.811-17.333-4.113-12.809-10.353 20.703-28.554 50.464-40.44 83.271-28.214 31.429 11.714 49.108 44.366 42.76 78.186z"] }; +var faKeybase = { prefix: 'fab', iconName: 'keybase', icon: [412, 512, [], "f4f5", "M177.2 430.9c0 9.8-8 17.8-17.8 17.8s-17.8-8-17.8-17.8 8-17.8 17.8-17.8c9.8-.1 17.8 7.9 17.8 17.8zM270 413c-9.8 0-17.8 8-17.8 17.8s8 17.8 17.8 17.8 17.8-8 17.8-17.8-8-17.8-17.8-17.8zm142.3-36c0 38.9-7.6 73.9-22.2 103h-27.3c23.5-38.7 30.5-94.8 22.4-134.3-16.1 29.5-52.1 38.6-85.9 28.8-127.8-37.5-192.5 19.7-234.6 50.3l18.9-59.3-39.9 42.3c4.8 26.7 15.7 51.3 31.2 72.3H46.1c-9.7-15.8-17.2-33-22.2-51.3L.1 454c0-74.9-5.5-147.6 61.5-215.2 20.2-20.4 43.7-36.2 69.1-46.7-6.8-13.5-9.5-29.2-7.8-46l-19.9-1.2c-17.9-1.1-31.6-16.5-30.6-34.4v-.1L74 84.2c1.1-17.1 15.4-30.6 32.5-30.6 1.3 0-.3-.1 28.2 1.7 13.9.8 21.5 9.8 22.8 11.4 7.1-10.4 14.5-20.5 24.6-34.5l20.6 12.1c-13.6 29-9.1 36.2-9 36.3 3.9 0 13.9-.5 32.4 5.7C246 92.9 262 107 271 126c.4.9 15.5 29 1.2 62.6 19 6.1 51.3 19.9 82.4 51.8 36.6 37.6 57.7 87.4 57.7 136.6zM128 122.3c3.2-10 7.7-19.7 13.1-29.4.1-2 2.2-13.1-7.8-13.8-28.5-1.8-26.3-1.6-26.7-1.6-4.6 0-8.3 3.5-8.6 8.1l-1.6 26.2c-.3 4.7 3.4 8.8 8.1 9.1l23.5 1.4zm25.8 61.8c5.6 9.4 14.1 16.1 22.3 20 0-21.2 28.5-41.9 52.8-17.5l8.4 10.3c20.8-18.8 19.4-45.3 12.1-60.9-13.8-29.1-46.9-32-54.3-31.7-10.3.4-19.7-5.4-23.7-15.3-13.7 21.2-37.2 62.5-17.6 95.1zm82.9 68.4L217 268.6c-1.9 1.6-2.2 4.4-.6 6.3l8.9 10.9c1 1.2 3.8 2.7 6.3.6l19.6-16 5.5 6.8c4.9 6 13.8-1.4 9-7.3-63.6-78.3-41.5-51.1-55.3-68.1-4.7-6-13.9 1.4-9 7.3 1.9 2.3 18.4 22.6 19.8 24.3l-9.6 7.9c-4.6 3.8 2.6 13.3 7.4 9.4l9.7-8 8 9.8zm118.4 25.7c-16.9-23.7-42.6-46.7-73.4-60.4-7.9-3.5-15-6.1-22.9-8.6-2 2.2-4.1 4.3-6.4 6.2l31.9 39.2c10.4 12.7 8.5 31.5-4.2 41.9-1.3 1.1-13.1 10.7-29 4.9-2.9 2.3-10.1 9.9-22.2 9.9-8.6 0-16.6-3.8-22.1-10.5l-8.9-10.9c-6.3-7.8-7.9-17.9-5-26.8-8.2-9.9-8.3-21.3-4.6-30-7.2-1.3-26.7-6.2-42.7-21.4-55.8 20.7-88 64.4-101.3 91.2-14.9 30.2-18.8 60.9-19.9 90.2 8.2-8.7-3.9 4.1 114-120.9l-29.9 93.6c57.8-31.1 124-36 197.4-14.4 23.6 6.9 45.1 1.6 56-13.9 11.1-15.6 8.5-37.7-6.8-59.3zM110.6 107.3l15.6 1 1-15.6-15.6-1-1 15.6z"] }; +var faKeycdn = { prefix: 'fab', iconName: 'keycdn', icon: [512, 512, [], "f3ba", "M63.8 409.3l60.5-59c32.1 42.8 71.1 66 126.6 67.4 30.5.7 60.3-7 86.4-22.4 5.1 5.3 18.5 19.5 20.9 22-32.2 20.7-69.6 31.1-108.1 30.2-43.3-1.1-84.6-16.7-117.7-44.4.3-.6-38.2 37.5-38.6 37.9 9.5 29.8-13.1 62.4-46.3 62.4C20.7 503.3 0 481.7 0 454.9c0-34.3 33.1-56.6 63.8-45.6zm354.9-252.4c19.1 31.3 29.6 67.4 28.7 104-1.1 44.8-19 87.5-48.6 121 .3.3 23.8 25.2 24.1 25.5 9.6-1.3 19.2 2 25.9 9.1 11.3 12 10.9 30.9-1.1 42.4-12 11.3-30.9 10.9-42.4-1.1-6.7-7-9.4-16.8-7.6-26.3-24.9-26.6-44.4-47.2-44.4-47.2 42.7-34.1 63.3-79.6 64.4-124.2.7-28.9-7.2-57.2-21.1-82.2l22.1-21zM104 53.1c6.7 7 9.4 16.8 7.6 26.3l45.9 48.1c-4.7 3.8-13.3 10.4-22.8 21.3-25.4 28.5-39.6 64.8-40.7 102.9-.7 28.9 6.1 57.2 20 82.4l-22 21.5C72.7 324 63.1 287.9 64.2 250.9c1-44.6 18.3-87.6 47.5-121.1l-25.3-26.4c-9.6 1.3-19.2-2-25.9-9.1-11.3-12-10.9-30.9 1.1-42.4C73.5 40.7 92.2 41 104 53.1zM464.9 8c26 0 47.1 22.4 47.1 48.3S490.9 104 464.9 104c-6.3.1-14-1.1-15.9-1.8l-62.9 59.7c-32.7-43.6-76.7-65.9-126.9-67.2-30.5-.7-60.3 6.8-86.2 22.4l-21.1-22C184.1 74.3 221.5 64 260 64.9c43.3 1.1 84.6 16.7 117.7 44.6l41.1-38.6c-1.5-4.7-2.2-9.6-2.2-14.5C416.5 29.7 438.9 8 464.9 8zM256.7 113.4c5.5 0 10.9.4 16.4 1.1 78.1 9.8 133.4 81.1 123.8 159.1-9.8 78.1-81.1 133.4-159.1 123.8-78.1-9.8-133.4-81.1-123.8-159.2 9.3-72.4 70.1-124.6 142.7-124.8zm-59 119.4c.6 22.7 12.2 41.8 32.4 52.2l-11 51.7h73.7l-11-51.7c20.1-10.9 32.1-29 32.4-52.2-.4-32.8-25.8-57.5-58.3-58.3-32.1.8-57.3 24.8-58.2 58.3zM256 160"] }; +var faKickstarter = { prefix: 'fab', iconName: 'kickstarter', icon: [448, 512, [], "f3bb", "M400 480H48c-26.4 0-48-21.6-48-48V80c0-26.4 21.6-48 48-48h352c26.4 0 48 21.6 48 48v352c0 26.4-21.6 48-48 48zM199.6 178.5c0-30.7-17.6-45.1-39.7-45.1-25.8 0-40 19.8-40 44.5v154.8c0 25.8 13.7 45.6 40.5 45.6 21.5 0 39.2-14 39.2-45.6v-41.8l60.6 75.7c12.3 14.9 39 16.8 55.8 0 14.6-15.1 14.8-36.8 4-50.4l-49.1-62.8 40.5-58.7c9.4-13.5 9.5-34.5-5.6-49.1-16.4-15.9-44.6-17.3-61.4 7l-44.8 64.7v-38.8z"] }; +var faKickstarterK = { prefix: 'fab', iconName: 'kickstarter-k', icon: [384, 512, [], "f3bc", "M147.3 114.4c0-56.2-32.5-82.4-73.4-82.4C26.2 32 0 68.2 0 113.4v283c0 47.3 25.3 83.4 74.9 83.4 39.8 0 72.4-25.6 72.4-83.4v-76.5l112.1 138.3c22.7 27.2 72.1 30.7 103.2 0 27-27.6 27.3-67.4 7.4-92.2l-90.8-114.8 74.9-107.4c17.4-24.7 17.5-63.1-10.4-89.8-30.3-29-82.4-31.6-113.6 12.8L147.3 185v-70.6z"] }; +var faKorvue = { prefix: 'fab', iconName: 'korvue', icon: [446, 512, [], "f42f", "M386.5 34h-327C26.8 34 0 60.8 0 93.5v327.1C0 453.2 26.8 480 59.5 480h327.1c33 0 59.5-26.8 59.5-59.5v-327C446 60.8 419.2 34 386.5 34zM87.1 120.8h96v116l61.8-116h110.9l-81.2 132H87.1v-132zm161.8 272.1l-65.7-113.6v113.6h-96V262.1h191.5l88.6 130.8H248.9z"] }; +var faLaravel = { prefix: 'fab', iconName: 'laravel', icon: [640, 512, [], "f3bd", "M637.5 241.6c-4.2-4.8-62.8-78.1-73.1-90.5-10.3-12.4-15.4-10.2-21.7-9.3-6.4.9-80.5 13.4-89.1 14.8-8.6 1.5-14 4.9-8.7 12.3 4.7 6.6 53.4 75.7 64.2 90.9l-193.7 46.4L161.2 48.7c-6.1-9.1-7.4-12.3-21.4-11.6-14 .6-120.9 9.5-128.5 10.2-7.6.6-16 4-8.4 22s129 279.6 132.4 287.2c3.4 7.6 12.2 20 32.8 15 21.1-5.1 94.3-24.2 134.3-34.7 21.1 38.3 64.2 115.9 72.2 127 10.6 14.9 18 12.4 34.3 7.4 12.8-3.9 199.6-71.1 208-74.5 8.4-3.5 13.6-5.9 7.9-14.4-4.2-6.2-53.5-72.2-79.3-106.8 17.7-4.7 80.6-21.4 87.3-23.3 7.9-2 9-5.8 4.7-10.6zm-352.2 72c-2.3.5-110.8 26.5-116.6 27.8-5.8 1.3-5.8.7-6.5-1.3-.7-2-129-266.7-130.8-270-1.8-3.3-1.7-5.9 0-5.9s102.5-9 106-9.2c3.6-.2 3.2.6 4.5 2.8 0 0 142.2 245.4 144.6 249.7 2.6 4.3 1.1 5.6-1.2 6.1zm306 57.4c1.7 2.7 3.5 4.5-2 6.4-5.4 2-183.7 62.1-187.1 63.6-3.5 1.5-6.2 2-10.6-4.5s-62.4-106.8-62.4-106.8L518 280.6c4.7-1.5 6.2-2.5 9.2 2.2 2.9 4.8 62.4 85.5 64.1 88.2zm12.1-134.1c-4.2.9-73.6 18.1-73.6 18.1l-56.7-77.8c-1.6-2.3-2.9-4.5 1.1-5s68.4-12.2 71.3-12.8c2.9-.7 5.4-1.5 9 3.4 3.6 4.9 52.6 67 54.5 69.4 1.8 2.3-1.4 3.7-5.6 4.7z"] }; +var faLastfm = { prefix: 'fab', iconName: 'lastfm', icon: [512, 512, [], "f202", "M225.8 367.1l-18.8-51s-30.5 34-76.2 34c-40.5 0-69.2-35.2-69.2-91.5 0-72.1 36.4-97.9 72.1-97.9 66.5 0 74.8 53.3 100.9 134.9 18.8 56.9 54 102.6 155.4 102.6 72.7 0 122-22.3 122-80.9 0-72.9-62.7-80.6-115-92.1-25.8-5.9-33.4-16.4-33.4-34 0-19.9 15.8-31.7 41.6-31.7 28.2 0 43.4 10.6 45.7 35.8l58.6-7c-4.7-52.8-41.1-74.5-100.9-74.5-52.8 0-104.4 19.9-104.4 83.9 0 39.9 19.4 65.1 68 76.8 44.9 10.6 79.8 13.8 79.8 45.7 0 21.7-21.1 30.5-61 30.5-59.2 0-83.9-31.1-97.9-73.9-32-96.8-43.6-163-161.3-163C45.7 113.8 0 168.3 0 261c0 89.1 45.7 137.2 127.9 137.2 66.2 0 97.9-31.1 97.9-31.1z"] }; +var faLastfmSquare = { prefix: 'fab', iconName: 'lastfm-square', icon: [448, 512, [], "f203", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-92.2 312.9c-63.4 0-85.4-28.6-97.1-64.1-16.3-51-21.5-84.3-63-84.3-22.4 0-45.1 16.1-45.1 61.2 0 35.2 18 57.2 43.3 57.2 28.6 0 47.6-21.3 47.6-21.3l11.7 31.9s-19.8 19.4-61.2 19.4c-51.3 0-79.9-30.1-79.9-85.8 0-57.9 28.6-92 82.5-92 73.5 0 80.8 41.4 100.8 101.9 8.8 26.8 24.2 46.2 61.2 46.2 24.9 0 38.1-5.5 38.1-19.1 0-19.9-21.8-22-49.9-28.6-30.4-7.3-42.5-23.1-42.5-48 0-40 32.3-52.4 65.2-52.4 37.4 0 60.1 13.6 63 46.6l-36.7 4.4c-1.5-15.8-11-22.4-28.6-22.4-16.1 0-26 7.3-26 19.8 0 11 4.8 17.6 20.9 21.3 32.7 7.1 71.8 12 71.8 57.5.1 36.7-30.7 50.6-76.1 50.6z"] }; +var faLeanpub = { prefix: 'fab', iconName: 'leanpub', icon: [576, 512, [], "f212", "M386.539 111.485l15.096 248.955-10.979-.275c-36.232-.824-71.64 8.783-102.657 27.997-31.016-19.214-66.424-27.997-102.657-27.997-45.564 0-82.07 10.705-123.516 27.723L93.117 129.6c28.546-11.803 61.484-18.115 92.226-18.115 41.173 0 73.836 13.175 102.657 42.544 27.723-28.271 59.013-41.721 98.539-42.544zM569.07 448c-25.526 0-47.485-5.215-70.542-15.645-34.31-15.645-69.993-24.978-107.871-24.978-38.977 0-74.934 12.901-102.657 40.623-27.723-27.723-63.68-40.623-102.657-40.623-37.878 0-73.561 9.333-107.871 24.978C55.239 442.236 32.731 448 8.303 448H6.93L49.475 98.859C88.726 76.626 136.486 64 181.775 64 218.83 64 256.984 71.685 288 93.095 319.016 71.685 357.17 64 394.225 64c45.289 0 93.049 12.626 132.3 34.859L569.07 448zm-43.368-44.741l-34.036-280.246c-30.742-13.999-67.248-21.41-101.009-21.41-38.428 0-74.385 12.077-102.657 38.702-28.272-26.625-64.228-38.702-102.657-38.702-33.761 0-70.267 7.411-101.009 21.41L50.298 403.259c47.211-19.487 82.894-33.486 135.045-33.486 37.604 0 70.817 9.606 102.657 29.644 31.84-20.038 65.052-29.644 102.657-29.644 52.151 0 87.834 13.999 135.045 33.486z"] }; +var faLess = { prefix: 'fab', iconName: 'less', icon: [640, 512, [], "f41d", "M612.7 219c0-20.5 3.2-32.6 3.2-54.6 0-34.2-12.6-45.2-40.5-45.2h-20.5v24.2h6.3c14.2 0 17.3 4.7 17.3 22.1 0 16.3-1.6 32.6-1.6 51.5 0 24.2 7.9 33.6 23.6 37.3v1.6c-15.8 3.7-23.6 13.1-23.6 37.3 0 18.9 1.6 34.2 1.6 51.5 0 17.9-3.7 22.6-17.3 22.6v.5h-6.3V393h20.5c27.8 0 40.5-11 40.5-45.2 0-22.6-3.2-34.2-3.2-54.6 0-11 6.8-22.6 27.3-23.6v-27.3c-20.5-.7-27.3-12.3-27.3-23.3zm-105.6 32c-15.8-6.3-30.5-10-30.5-20.5 0-7.9 6.3-12.6 17.9-12.6s22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-21 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51s-22.5-41-43-47.8zm-358.9 59.4c-3.7 0-8.4-3.2-8.4-13.1V119.1H65.2c-28.4 0-41 11-41 45.2 0 22.6 3.2 35.2 3.2 54.6 0 11-6.8 22.6-27.3 23.6v27.3c20.5.5 27.3 12.1 27.3 23.1 0 19.4-3.2 31-3.2 53.6 0 34.2 12.6 45.2 40.5 45.2h20.5v-24.2h-6.3c-13.1 0-17.3-5.3-17.3-22.6s1.6-32.1 1.6-51.5c0-24.2-7.9-33.6-23.6-37.3v-1.6c15.8-3.7 23.6-13.1 23.6-37.3 0-18.9-1.6-34.2-1.6-51.5s3.7-22.1 17.3-22.1H93v150.8c0 32.1 11 53.1 43.1 53.1 10 0 17.9-1.6 23.6-3.7l-5.3-34.2c-3.1.8-4.6.8-6.2.8zM379.9 251c-16.3-6.3-31-10-31-20.5 0-7.9 6.3-12.6 17.9-12.6 11.6 0 22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-20.5 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51 .1-28.9-22.5-41-43-47.8zm-155-68.8c-38.4 0-75.1 32.1-74.1 82.5 0 52 34.2 82.5 79.3 82.5 18.9 0 39.9-6.8 56.2-17.9l-15.8-27.8c-11.6 6.8-22.6 10-34.2 10-21 0-37.3-10-41.5-34.2H290c.5-3.7 1.6-11 1.6-19.4.6-42.6-22.6-75.7-66.7-75.7zm-30 66.2c3.2-21 15.8-31 30.5-31 18.9 0 26.3 13.1 26.3 31h-56.8z"] }; +var faLine = { prefix: 'fab', iconName: 'line', icon: [448, 512, [], "f3c0", "M272.1 204.2v71.1c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.1 0-2.1-.6-2.6-1.3l-32.6-44v42.2c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.8 0-3.2-1.4-3.2-3.2v-71.1c0-1.8 1.4-3.2 3.2-3.2H219c1 0 2.1.5 2.6 1.4l32.6 44v-42.2c0-1.8 1.4-3.2 3.2-3.2h11.4c1.8-.1 3.3 1.4 3.3 3.1zm-82-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 1.8 1.4 3.2 3.2 3.2h11.4c1.8 0 3.2-1.4 3.2-3.2v-71.1c0-1.7-1.4-3.2-3.2-3.2zm-27.5 59.6h-31.1v-56.4c0-1.8-1.4-3.2-3.2-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 .9.3 1.6.9 2.2.6.5 1.3.9 2.2.9h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.7-1.4-3.2-3.1-3.2zM332.1 201h-45.7c-1.7 0-3.2 1.4-3.2 3.2v71.1c0 1.7 1.4 3.2 3.2 3.2h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2V234c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2v-11.4c-.1-1.7-1.5-3.2-3.2-3.2zM448 113.7V399c-.1 44.8-36.8 81.1-81.7 81H81c-44.8-.1-81.1-36.9-81-81.7V113c.1-44.8 36.9-81.1 81.7-81H367c44.8.1 81.1 36.8 81 81.7zm-61.6 122.6c0-73-73.2-132.4-163.1-132.4-89.9 0-163.1 59.4-163.1 132.4 0 65.4 58 120.2 136.4 130.6 19.1 4.1 16.9 11.1 12.6 36.8-.7 4.1-3.3 16.1 14.1 8.8 17.4-7.3 93.9-55.3 128.2-94.7 23.6-26 34.9-52.3 34.9-81.5z"] }; +var faLinkedin = { prefix: 'fab', iconName: 'linkedin', icon: [448, 512, [], "f08c", "M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"] }; +var faLinkedinIn = { prefix: 'fab', iconName: 'linkedin-in', icon: [448, 512, [], "f0e1", "M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"] }; +var faLinode = { prefix: 'fab', iconName: 'linode', icon: [448, 512, [], "f2b8", "M437.4 226.3c-.3-.9-.9-1.4-1.4-2l-70-38.6c-.9-.6-2-.6-3.1 0l-58.9 36c-.9.6-1.4 1.7-1.4 2.6l-.9 31.4-24-16c-.9-.6-2.3-.6-3.1 0L240 260.9l-1.4-35.1c0-.9-.6-2-1.4-2.3l-36-24.3 33.7-17.4c1.1-.6 1.7-1.7 1.7-2.9l-5.7-132.3c0-.9-.9-2-1.7-2.6L138.6.3c-.9-.3-1.7-.3-2.3-.3L12.6 38.6c-1.4.6-2.3 2-2 3.7L38 175.4c.9 3.4 34 27.4 38.6 30.9l-26.9 12.9c-1.4.9-2 2.3-1.7 3.4l20.6 100.3c.6 2.9 23.7 23.1 27.1 26.3l-17.4 10.6c-.9.6-1.7 2-1.4 3.1 1.4 7.1 15.4 77.7 16.9 79.1l65.1 69.1c.6.6 1.4.6 2.3.9.6 0 1.1-.3 1.7-.6l83.7-66.9c.9-.6 1.1-1.4 1.1-2.3l-2-46 28 23.7c1.1.9 2.9.9 4 0l66.9-53.4c.9-.6 1.1-1.4 1.1-2.3l2.3-33.4 20.3 14c1.1.9 2.6.9 3.7 0l54.6-43.7c.6-.3 1.1-1.1 1.1-2 .9-6.5 10.3-70.8 9.7-72.8zm-204.8 4.8l4 92.6-90.6 61.2-14-96.6 100.6-57.2zm-7.7-180l5.4 126-106.6 55.4L104 97.7l120.9-46.6zM44 173.1L18 48l79.7 49.4 19.4 132.9L44 173.1zm30.6 147.8L55.7 230l70 58.3 13.7 93.4-64.8-60.8zm24.3 117.7l-13.7-67.1 61.7 60.9 9.7 67.4-57.7-61.2zm64.5 64.5l-10.6-70.9 85.7-61.4 3.1 70-78.2 62.3zm82-115.1c0-3.4.9-22.9-2-25.1l-24.3-20 22.3-14.9c2.3-1.7 1.1-5.7 1.1-8l29.4 22.6.6 68.3-27.1-22.9zm94.3-25.4l-60.9 48.6-.6-68.6 65.7-46.9-4.2 66.9zm27.7-25.7l-19.1-13.4 2-34c.3-.9-.3-2-1.1-2.6L308 259.7l.6-30 64.6 40.6-5.8 66.6zm54.6-39.8l-48.3 38.3 5.7-65.1 51.1-36.6-8.5 63.4z"] }; +var faLinux = { prefix: 'fab', iconName: 'linux', icon: [448, 512, [], "f17c", "M196.1 123.6c-.2-1.4 1.9-2.3 3.2-2.9 1.7-.7 3.9-1 5.5-.1.4.2.8.7.6 1.1-.4 1.2-2.4 1-3.5 1.6-1 .5-1.8 1.7-3 1.7-1 .1-2.7-.4-2.8-1.4zm24.7-.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm214.7 310.2c-.5 8.2-6.5 13.8-13.9 18.3-14.9 9-37.3 15.8-50.9 32.2l-2.6-2.2 2.6 2.2c-14.2 16.9-31.7 26.6-48.3 27.9-16.5 1.3-32-6.3-40.3-23v-.1c-1.1-2.1-1.9-4.4-2.5-6.7-21.5 1.2-40.2-5.3-55.1-4.1-22 1.2-35.8 6.5-48.3 6.6-4.8 10.6-14.3 17.6-25.9 20.2-16 3.7-36.1 0-55.9-10.4l1.6-3-1.6 3c-18.5-9.8-42-8.9-59.3-12.5-8.7-1.8-16.3-5-20.1-12.3-3.7-7.3-3-17.3 2.2-31.7 1.7-5.1.4-12.7-.8-20.8-.6-3.9-1.2-7.9-1.2-11.8 0-4.3.7-8.5 2.8-12.4 4.5-8.5 11.8-12.1 18.5-14.5 6.7-2.4 12.8-4 17-8.3 5.2-5.5 10.1-14.4 16.6-20.2-2.6-17.2.2-35.4 6.2-53.3 12.6-37.9 39.2-74.2 58.1-96.7 16.1-22.9 20.8-41.3 22.5-64.7C158 103.4 132.4-.2 234.8 0c80.9.1 76.3 85.4 75.8 131.3-.3 30.1 16.3 50.5 33.4 72 15.2 18 35.1 44.3 46.5 74.4 9.3 24.6 12.9 51.8 3.7 79.1 1.4.5 2.8 1.2 4.1 2 1.4.8 2.7 1.8 4 2.9 6.6 5.6 8.7 14.3 10.5 22.4 1.9 8.1 3.6 15.7 7.2 19.7 11.1 12.4 15.9 21.5 15.5 29.7zM220.8 109.1c3.6.9 8.9 2.4 13 4.4-2.1-12.2 4.5-23.5 11.8-23 8.9.3 13.9 15.5 9.1 27.3-.8 1.9-2.8 3.4-3.9 4.6 6.7 2.3 11 4.1 12.6 4.9 7.9-9.5 10.8-26.2 4.3-40.4-9.8-21.4-34.2-21.8-44 .4-3.2 7.2-3.9 14.9-2.9 21.8zm-46.2 18.8c7.8-5.7 6.9-4.7 5.9-5.5-8-6.9-6.6-27.4 1.8-28.1 6.3-.5 10.8 10.7 9.6 19.6 3.1-2.1 6.7-3.6 10.2-4.6 1.7-19.3-9-33.5-19.1-33.5-18.9 0-24 37.5-8.4 52.1zm-9.4 20.9c1.5 4.9 6.1 10.5 14.7 15.3 7.8 4.6 12 11.5 20 15 2.6 1.1 5.7 1.9 9.6 2.1 18.4 1.1 27.1-11.3 38.2-14.9 11.7-3.7 20.1-11 22.7-18.1 3.2-8.5-2.1-14.7-10.5-18.2-11.3-4.9-16.3-5.2-22.6-9.3-10.3-6.6-18.8-8.9-25.9-8.9-14.4 0-23.2 9.8-27.9 14.2-.5.5-7.9 5.9-14.1 10.5-4.2 3.3-5.6 7.4-4.2 12.3zm-33.5 252.8L112.1 366c-6.8-9.2-13.8-14.8-21.9-16-7.7-1.2-12.6 1.4-17.7 6.9-4.8 5.1-8.8 12.3-14.3 18-7.8 6.5-9.3 6.2-19.6 9.9-6.3 2.2-11.3 4.6-14.8 11.3-2.7 5-2.1 12.2-.9 20 1.2 7.9 3 16.3.6 23.9v.2c-5 13.7-5 21.7-2.6 26.4 7.9 15.4 46.6 6.1 76.5 21.9 31.4 16.4 72.6 17.1 75.3-18 2.1-20.5-31.5-49-41-68.9zm153.9 35.8c3.2-11 6.3-21.3 6.8-29 .8-15.2 1.6-28.7 4.4-39.9 3.1-12.6 9.3-23.1 21.4-27.3 2.3-21.1 18.7-21.1 38.3-12.5 18.9 8.5 26 16 22.8 26.1 1 0 2-.1 4.2 0 5.2-16.9-14.3-28-30.7-34.8 2.9-12 2.4-24.1-.4-35.7-6-25.3-22.6-47.8-35.2-59-2.3-.1-2.1 1.9 2.6 6.5 11.6 10.7 37.1 49.2 23.3 84.9-3.9-1-7.6-1.5-10.9-1.4-5.3-29.1-17.5-53.2-23.6-64.6-11.5-21.4-29.5-65.3-37.2-95.7-4.5 6.4-12.4 11.9-22.3 15-4.7 1.5-9.7 5.5-15.9 9-13.9 8-30 8.8-42.4-1.2-4.5-3.6-8-7.6-12.6-10.3-1.6-.9-5.1-3.3-6.2-4.1-2 37.8-27.3 85.3-39.3 112.7-8.3 19.7-13.2 40.8-13.8 61.5-21.8-29.1-5.9-66.3 2.6-82.4 9.5-17.6 11-22.5 8.7-20.8-8.6 14-22 36.3-27.2 59.2-2.7 11.9-3.2 24 .3 35.2 3.5 11.2 11.1 21.5 24.6 29.9 0 0 24.8 14.3 38.3 32.5 7.4 10 9.7 18.7 7.4 24.9-2.5 6.7-9.6 8.9-16.7 8.9 4.8 6 10.3 13 14.4 19.6 37.6 25.7 82.2 15.7 114.3-7.2zM415 408.5c-10-11.3-7.2-33.1-17.1-41.6-6.9-6-13.6-5.4-22.6-5.1-7.7 8.8-25.8 19.6-38.4 16.3-11.5-2.9-18-16.3-18.8-29.5-.3.2-.7.3-1 .5-7.1 3.9-11.1 10.8-13.7 21.1-2.5 10.2-3.4 23.5-4.2 38.7-.7 11.8-6.2 26.4-9.9 40.6-3.5 13.2-5.8 25.2-1.1 36.3 7.2 14.5 19.5 20.4 33.7 19.3 14.2-1.1 30.4-9.8 43.6-25.5 22-26.6 62.3-29.7 63.2-46.5.3-5.1-3.1-13-13.7-24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4 3.9-3.4 5.9-6.3 3.1-6.6-2.8-.3-2.6 2.6-6 5.1-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2-10.4 0-18.7-4.8-24.9-9.7-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z"] }; +var faLyft = { prefix: 'fab', iconName: 'lyft', icon: [512, 512, [], "f3c3", "M0 81.1h77.8v208.7c0 33.1 15 52.8 27.2 61-12.7 11.1-51.2 20.9-80.2-2.8C7.8 334 0 310.7 0 289V81.1zm485.9 173.5v-22h23.8v-76.8h-26.1c-10.1-46.3-51.2-80.7-100.3-80.7-56.6 0-102.7 46-102.7 102.7V357c16 2.3 35.4-.3 51.7-14 17.1-14 24.8-37.2 24.8-59v-6.7h38.8v-76.8h-38.8v-23.3c0-34.6 52.2-34.6 52.2 0v77.1c0 56.6 46 102.7 102.7 102.7v-76.5c-14.5 0-26.1-11.7-26.1-25.9zm-294.3-99v113c0 15.4-23.8 15.4-23.8 0v-113H91v132.7c0 23.8 8 54 45 63.9 37 9.8 58.2-10.6 58.2-10.6-2.1 13.4-14.5 23.3-34.9 25.3-15.5 1.6-35.2-3.6-45-7.8v70.3c25.1 7.5 51.5 9.8 77.6 4.7 47.1-9.1 76.8-48.4 76.8-100.8V155.1h-77.1v.5z"] }; +var faMagento = { prefix: 'fab', iconName: 'magento', icon: [448, 512, [], "f3c4", "M445.7 127.9V384l-63.4 36.5V164.7L223.8 73.1 65.2 164.7l.4 255.9L2.3 384V128.1L224.2 0l221.5 127.9zM255.6 420.5L224 438.9l-31.8-18.2v-256l-63.3 36.6.1 255.9 94.9 54.9 95.1-54.9v-256l-63.4-36.6v255.9z"] }; +var faMailchimp = { prefix: 'fab', iconName: 'mailchimp', icon: [428, 512, [], "f59e", "M426.56 323.72c-3.09-6.59-8.97-11.13-16.35-12.88-2.47-11.27-5.88-16.8-6.19-17.63 1.3-1.48 2.56-2.97 2.84-3.32 10.42-12.93 3.62-31.86-14.19-36.33-10.02-9.64-19.09-14.17-26.54-17.9-7.14-3.57-4.29-2.17-10.99-5.19-1.78-8.71-2.37-28.97-5.2-43.19-2.54-12.79-7.66-22.06-15.56-28.15-3.16-6.84-7.59-13.74-12.93-18.81 24.84-38.08 31.38-75.69 13.19-95.39-8.1-8.77-20.13-12.93-34.52-12.93-20.26 0-45.18 8.26-70.34 23.54 0 0-16.38-13.18-16.73-13.46-70.08-55.19-268.28 188.7-198.32 242l18.06 13.8c-11.34 31.54 4.43 69.14 37.29 81.21 7.26 2.67 15.14 3.97 23.31 3.51 0 0 53.09 97.36 165.1 97.39 129.58.04 162.55-126.72 162.9-127.86 0 .01 10.5-15.51 5.17-28.41zM20.12 267.95c-14.2-23.96 10.51-73.19 28.09-101.17C91.66 97.63 163.98 43.06 196.82 50.85l9.03-3.46c.03.03 24.67 20.85 24.7 20.87 16.97-10.19 38.58-20.57 58.8-22.64-12.3 2.77-27.29 9.15-45.05 20.01-.43.25-42.02 28.32-67.43 53.52-13.85 13.73-69.45 80.41-69.4 80.35 10.16-19.23 16.86-28.67 32.94-48.9 9.1-11.44 18.81-22.57 28.74-32.84 4.61-4.77 9.28-9.36 13.95-13.71 3.21-2.99 6.44-5.87 9.65-8.62 1.48-1.27 2.96-2.5 4.43-3.71l.01-.01L164.6 64.8l1.72 12.06 23.69 20.87s-20.96 14.11-31.39 23.01c-41.79 35.66-82.8 90.4-98.06 143.69l.73-.03c-7.6 4.19-15.14 10.91-21.73 20.05-.16-.04-17.04-12.43-19.44-16.5zm69.11 100.09c-25.03 0-45.33-21.37-45.33-47.72 0-26.36 20.29-47.72 45.33-47.72 6.49 0 12.66 1.44 18.24 4.02 0 0 9.63 4.86 12.34 27.81 2.82-7.17 4.24-13.06 4.24-13.06 3.23 9.88 4.88 20.26 4.23 30.76 2.68-3.56 5.55-10.27 5.55-10.27 5 29.33-16.4 56.18-44.6 56.18zm55.8-168.53s19.49-37.06 62.33-61.57c-3.19-.51-10.99.48-12.36.64 7.78-6.69 22.24-11.16 32.23-13.19-2.92-1.86-9.89-2.33-13.34-2.42-1.02-.03-1.01-.02-2.22.03 9.4-5.25 26.82-8.34 42.65-5.55-1.99-2.64-6.5-4.57-9.67-5.51-.28-.08-1.52-.39-1.52-.39l1.19-.28c9.54-1.84 20.69.15 29.5 3.69-1-2.32-3.45-5.03-5.29-6.74-.19-.18-1.29-.97-1.29-.97 9.22 1.91 18.06 5.94 24.71 10.5-.9-1.75-3.14-4.69-4.69-6.29 8.81 2.52 18.71 8.81 22.95 17.82.1.2.37.94.4 1.03-16.7-12.84-65.44-9.2-114.24 22.42-22.33 14.48-38.71 30.32-51.34 46.78zm263.32 146.34c-.59 1.15-6.73 34.4-41.86 62.01-44.37 34.86-102.66 31.33-124.67 11.8-11.76-11-16.85-26.73-16.85-26.73s-1.33 8.87-1.56 12.35c-8.87-15.09-8.12-33.52-8.12-33.52s-4.73 8.83-6.9 13.77c-6.53-16.62-3.16-33.78-3.16-33.78l-5.16 7.7s-2.42-18.81 3.52-34.47c6.36-16.74 18.68-28.9 21.11-30.42-9.35-2.97-20.12-11.49-20.14-11.51 0 0 4.28.28 7.26-.4 0 0-18.9-13.54-22.22-34.26 2.74 3.38 8.49 7.21 8.49 7.21-1.86-5.42-2.99-17.49-1.25-29.36l.01-.01c3.58-22.68 22.27-37.45 43.44-37.27 22.54.2 37.65 4.93 56.55-12.5 4-3.69 7.19-6.87 12.81-8.11.59-.13 2.06-.75 5.07-.75 3.05 0 5.98.69 8.67 2.29 10.25 6.1 12.46 22.01 13.56 33.68 4.07 43.28 2.43 35.57 19.94 44.49 8.36 4.25 17.74 8.29 28.43 19.72.03.03.08.09.08.09h.13c9.01.22 13.65 7.31 9.5 12.47-30.23 36.1-72.46 53.39-119.51 54.84-1.94.05-6.32.15-6.34.15-19.01.58-25.19 25.16-13.27 39.95 7.54 9.35 22.03 12.42 33.97 12.46l.17-.06c51.45 1.04 103.14-35.37 112.07-55.44.06-.15.61-1.42.61-1.42-2.07 2.43-52.18 49.61-113.08 47.9 0 0-6.66-.14-12.93-1.6-8.27-1.92-14.55-5.56-16.95-13.8 5.05 1.01 11.45 1.66 18.87 1.66 43.96 0 75.63-19.98 72.33-20.25-.13 0-.26.03-.48.08-5.13 1.19-57.97 21.66-91.37 11.16.08-1.02.24-2.01.48-2.9 2.97-9.95 8.25-8.56 16.79-8.93 30.48-1.01 55.07-8.68 73.5-17.43 19.65-9.33 34.63-21.35 40.03-27.42 7 11.79 6.96 26.92 6.96 26.92s2.74-.96 6.38-.96c11.38.01 13.73 10.23 5.09 20.6zm-149.29 13.7c0-.05-.01-.1-.01-.15.01.05.01.1.01.15zm-.01-.21c-.01-.13-.01-.26-.02-.39-.02-.65-.03-1.33 0-2.02-.02.74-.02 1.42 0 2.02.01.13.01.27.02.39zm.12 1.46c0 .02 0 .04.01.06 0-.02 0-.04-.01-.06zm.02.12c.2 1.58.51 2.31.55 2.4-.23-.49-.42-1.34-.55-2.4zM193.96 59.68l2.87-8.83 4.88 17.72-6.03-1.95-1.72-6.94zm22.38 17.72l-3.62-12.59 9.97 8.36c-2.24 1.44-4.36 2.86-6.35 4.23zm42.71 281.94c-.01-.13-.01-.26-.02-.39.01.13.01.27.02.39zm-.01-.39c-.02-.65-.03-1.33 0-2.02-.03.75-.03 1.42 0 2.02zm.02.6c0-.05-.01-.1-.01-.15m.13 1.46c0-.02 0-.04-.01-.06m.02.12c.2 1.58.51 2.31.55 2.4-.23-.49-.42-1.34-.55-2.4zm52.1-138.61c-.07-3.36.47-8.92 3.63-9.95h.01c5.41-1.88 12.58 11.98 12.91 24.28-4.28-2.14-9.3-3.05-14.47-2.6-1.3-3.97-1.92-7.7-2.08-11.73zM205.38 85.27l-13.59-11.38 20.57 6.28c-2.65 1.88-5 3.6-6.98 5.1zm27.7 166.94c-3.41 1.3-5.83 2.31-7 2.14-1.89-.28-.06-3.75 4.08-7.11 8.33-6.64 19.76-8.7 29.53-5.07 4.28 1.57 9.08 4.72 11.6 8.39.95 1.39 1.21 2.44.82 2.88-.77.9-3.51-.31-7.55-1.89-10.35-3.86-17.98-4.45-31.48.66zm14.55 14.53c-2.31.94-3.81 1.66-4.42 1.17-.62-.48-.01-2.42 2.15-4.51 1.88-1.81 3.83-2.83 6.07-3.77.35-.15.72-.28 1.1-.38 1.04-.28 2.09-.63 3.23-.8 9.12-1.55 15.8 3.51 14.93 4.98-.39.69-2.08.53-4.6.36-5.23-.36-10.71-.27-18.46 2.95zM60.86 323.12zm24.3-25.78c-1.85.39-.81.17-2.64.68a7 7 0 0 0-.77.25c-.58.27-1.11.45-1.62.73-.43.24-4.07 1.86-7.03 5.48-3.99 4.95-5.44 11.43-5.19 17.67.24 6.06 2.02 9.41 2.35 10.23 1.38 2.96-1.85 3.57-4.79.39l-.01-.01c-2.35-2.49-3.86-6.29-4.6-9.66-2.98-13.95 3.24-27.97 17.61-33.57.8-.32 1.74-.51 2.5-.73h-.01c1.47-.44 6.72-1.5 12.07-.67 5.87.91 11.04 3.85 14.33 7.67l.01.01c2.53 2.87 4.43 6.92 4.09 10.53v.01c-.13 1.5-.79 3.65-2.14 4.21-.5.21-1.01.1-1.36-.25-.98-.96-.22-2.93-2.6-6.3-3.17-4.47-10.31-8.76-20.2-6.67zm30.28 31.17c1.88 10.82-6 20.5-15.52 20.7-6.67.15-10.31-4.02-9.66-4.93.3-.43 1.32-.24 2.88-.01 8.5 1.32 13.66-3.86 14.9-9.29.02-.09.35-1.54.34-2.54.07-.88-.03-1.76-.16-2.56-1-5.62-7.45-6.68-11.6-11.15-3.72-4.04-2.99-9.22-.65-11.71 2.81-2.77 6.83-1.76 6.78-.78 0 .52-.97.91-2.17 1.74-1.56 1.1-1.77 2.16-1.37 3.98.26 1 .71 1.65 1.68 2.42 3.48 2.76 12.85 4.7 14.55 14.13zm212.87-81.47c2.58.4 4.22 3.59 3.67 7.13-.55 3.54-3.09 6.08-5.67 5.67-2.58-.4-4.22-3.59-3.67-7.13.56-3.53 3.09-6.07 5.67-5.67zm-28.33 10.31c1.42-2.59 5.44-3.11 8.99-1.16 3.55 1.94 5.27 5.62 3.86 8.2-1.42 2.59-5.44 3.11-8.99 1.16-3.55-1.94-5.28-5.61-3.86-8.2z"] }; +var faMandalorian = { prefix: 'fab', iconName: 'mandalorian', icon: [390, 512, [], "f50f", "M203.28 511.89c-.98-3.26-1.69-15.83-1.39-24.58.55-15.89.98-24.72 1.4-28.76.64-6.2 2.87-20.72 3.28-21.38.6-.96.4-27.87-.24-33.13-.31-2.58-.63-11.9-.69-20.73-.13-16.47-.53-20.12-2.73-24.76-1.1-2.32-1.23-3.84-.99-11.43.16-4.81 0-10.53-.34-12.71-2.05-12.97-3.46-27.7-3.25-33.9.21-6.12.43-7.15 2.06-9.67 3.05-4.71 6.51-14.04 8.62-23.27 2.26-9.86 3.88-17.18 4.59-20.74.89-4.42 2.43-9.72 4.36-15.05 2.27-6.25 2.49-15.39.37-15.39-.3 0-1.38 1.22-2.41 2.71-1.03 1.49-4.76 4.8-8.29 7.36-8.37 6.08-11.7 9.39-12.66 12.58-.93 3.11-1.02 7.23-.16 7.76.34.21 1.29 2.4 2.11 4.88 1.62 4.88 1.87 10.12.72 15.36-.39 1.77-1.05 5.47-1.46 8.23-.41 2.76-.98 6.46-1.25 8.22-.28 1.76-.97 3.68-1.55 4.26-.96.96-1.14.91-2.05-.53-.55-.87-1.2-3.01-1.44-4.75-.25-1.74-1.63-7.11-3.08-11.93-3.28-10.9-3.52-16.15-.96-20.96.92-1.73 1.67-3.81 1.67-4.61 0-2.39-2.2-5.32-7.41-9.89-7.05-6.18-8.63-7.92-10.23-11.3-1.71-3.6-3.06-4.06-4.54-1.54-1.78 3.01-2.6 9.11-2.97 22.02l-.35 12.13 1.95 2.25c3.21 3.7 12.07 16.45 13.78 19.83 3.41 6.74 4.34 11.69 4.41 23.56.07 11.84.95 22.75 2 24.71.36.66.51 1.35.34 1.52-.17.17.41 2.09 1.29 4.27.88 2.18 1.81 6.22 2.06 8.98.25 2.76 1.02 7.43 1.71 10.37 2.23 9.56 2.77 14.08 2.39 20.14-.2 3.27-.53 11.07-.73 17.32-1.31 41.76-1.85 57.98-2.04 61.21-.12 2.02-.39 11.51-.6 21.07-.36 16.3-1.3 27.37-2.42 28.65-.64.73-8.07-4.91-12.52-9.49-3.75-3.87-4.02-4.79-2.83-9.95.7-3.01 2.26-18.29 3.33-32.62.36-4.78.81-10.5 1.01-12.71.83-9.37 1.66-20.35 2.61-34.78.56-8.46 1.33-16.44 1.72-17.73.38-1.29.89-9.89 1.13-19.11l.43-16.77-2.26-4.3c-1.72-3.28-4.87-6.94-13.22-15.34-6.03-6.07-11.84-12.3-12.91-13.85l-1.95-2.81.75-10.9c1.09-15.71 1.1-48.57.02-59.06l-.89-8.7-3.28-4.52c-5.86-8.08-5.8-7.75-6.22-33.27-.1-6.07-.38-11.5-.63-12.06-.83-1.87-3.05-2.66-8.54-3.05-8.86-.62-10.96-1.9-23.85-14.55-6.15-6.04-12.34-11.97-13.75-13.19-2.81-2.42-2.79-1.99-.56-9.63l1.35-4.65-1.69-3.04c-.93-1.67-2.09-3.51-2.59-4.07-1.33-1.51-5.5-10.89-5.99-13.49-.31-1.66-.09-2.67.87-3.9 2.23-2.86 3.4-5.68 4.45-10.73 2.33-11.19 7.74-26.09 10.6-29.22 3.18-3.47 7.7-1.05 9.41 5.03 1.34 4.79 1.37 9.79.1 18.55-.53 3.68-.98 8.68-.99 11.11-.02 4.01.19 4.69 2.25 7.39 3.33 4.37 7.73 7.41 15.2 10.52 1.7.71 3.82 1.99 4.72 2.85 11.17 10.72 18.62 16.18 22.95 16.85 5.18.8 7.98 4.54 10.04 13.39 1.31 5.65 4 11.14 5.46 11.14.59 0 2.09-.63 3.33-1.39 1.98-1.22 2.25-1.73 2.25-4.18-.01-3.71-1.17-14.08-2-17.84-.37-1.66-.78-4.06-.93-5.35-.14-1.29-.61-3.85-1.03-5.69-2.55-11.16-3.65-15.46-4.1-16.05-1.55-2.02-4.08-10.2-4.93-15.92-1.64-11.11-3.96-14.23-12.91-17.39-4.64-1.64-8.89-4.12-13.32-7.78-1.15-.95-4.01-3.22-6.35-5.06-2.35-1.83-4.41-3.53-4.6-3.76-.18-.23-1.39-1.14-2.69-2.02-6.24-4.22-8.84-6.98-11.26-11.96l-2.44-5.02-.22-12.98-.22-12.98 6.91-6.55c3.95-3.75 8.48-7.35 10.59-8.43 3.31-1.69 4.45-1.89 11.37-2.05 8.53-.19 10.12.02 11.66 1.56 1.53 1.53 1.36 6.4-.29 8.5-.74.94-1.34 1.98-1.34 2.32 0 .58-2.61 4.91-5.42 8.99-.68.99-2.13 5.35-2.37 6.82 20.44 13.39 21.55 3.77 14.07 28.98l11.4 2.54c3.11-8.66 6.47-17.26 8.61-26.22.29-7.63-11.98-4.19-15.4-8.68-2.33-5.93 3.13-14.18 6.06-19.2 1.6-2.34 6.62-4.7 8.82-4.15.88.22 4.16-.35 7.37-1.28 3.18-.92 6.58-1.68 7.55-1.68.97 0 3.66-.58 5.98-1.29 3.65-1.11 4.5-1.17 6.35-.4 1.17.48 3.79 1.09 5.82 1.36 2.02.26 4.72 1.12 6 1.91 1.28.79 3.53 1.77 5.02 2.17 2.51.68 3 .57 7.05-1.67l4.35-2.4 10.7-.41c10.44-.4 10.81-.47 15.26-2.68l4.58-2.3 2.46 1.43c1.76 1.02 3.14 2.73 4.85 5.98 2.36 4.51 2.38 4.58 1.37 7.37-.88 2.44-.89 3.3-.1 6.39.5 1.96 1.45 4.62 2.1 5.91.65 1.29 1.24 3.09 1.31 4.01.31 4.33-.03 5.3-2.41 6.92-2.17 1.47-6.98 7.91-6.98 9.34 0 .32-.48 1.69-1.07 3.03-5.04 11.51-6.76 13.56-14.26 16.98-9.2 4.2-12.3 5.19-16.21 5.19-3.1 0-4 .25-4.54 1.26-.37.69-2.21 2.37-4.09 3.71-2.04 1.47-3.8 3.38-4.38 4.78-.54 1.28-1.66 2.59-2.49 2.91-.83.32-1.94 1.08-2.45 1.71-.52.62-3.66 3.04-7 5.38-3.33 2.34-6.87 5.02-7.87 5.96-1 .94-2.07 1.71-2.39 1.71s-1.28.74-2.13 1.65c-1.31 1.39-1.49 2.11-1.14 4.6.22 1.63.86 4.27 1.42 5.88 1.32 3.8 1.31 7.86-.05 10.57-1.43 2.86-.89 6.65 1.35 9.59 2.01 2.63 2.16 4.56.71 8.84-.61 1.8-1.05 5.45-1.06 8.91-.02 4.88.22 6.28 1.46 8.38 1.2 2.04 1.82 2.48 3.24 2.32 1.98-.23 2.3-1.05 4.71-12.12 2.18-10.03 3.71-11.92 13.76-17.08 2.94-1.51 7.46-3.96 10.03-5.44 2.58-1.48 6.79-3.69 9.37-4.91 6.67-3.16 11.05-6.52 15.22-11.67 7.11-8.79 9.98-16.22 12.85-33.3.55-3.28 1.43-5.65 2.86-7.73 1.29-1.87 2.37-4.62 2.89-7.31 1.02-5.3 2.85-9.08 5.58-11.51 4.7-4.18 6-1.09 4.59 10.87-.46 3.86-1.1 10.33-1.44 14.38l-.61 7.36 4.45 4.09 4.45 4.09.11 8.42c.06 4.63.47 9.53.92 10.89l.82 2.47-6.43 6.28c-8.54 8.33-12.88 13.93-16.76 21.61-1.77 3.49-3.74 7.11-4.38 8.03-2.18 3.11-6.46 13.01-8.76 20.26l-2.29 7.22-6.97 6.49c-3.83 3.57-7.96 7.25-9.17 8.17-3.05 2.32-4.26 5.15-4.26 9.99 0 2.98.43 4.96 1.59 7.26.87 1.74 1.81 3.91 2.09 4.83.28.92.98 2.22 1.57 2.89 1.4 1.59 1.92 16.12.83 23.22-.68 4.48-3.63 12.02-4.7 12.02-1.79 0-4.06 9.27-5.07 20.74-.18 2.02-.62 5.94-.98 8.7-.36 2.76-.96 9.98-1.35 16.05-.77 12.22-.19 18.77 2.05 23.15 3.41 6.69.52 12.69-11.03 22.84l-3.97 3.49.07 5.19c.04 2.86.55 6.85 1.14 8.87 4.61 15.98 4.73 16.92 4.38 37.13-.46 26.4-.26 40.27.63 44.15.42 1.84.91 5 1.08 7.02.17 2.02.66 5.33 1.08 7.36.47 2.26.78 11.02.79 22.74l.02 19.06-1.81 2.63c-2.71 3.91-15.11 13.54-15.49 12.29zm29.53-45.11c-.18-.3-.33-6.87-.33-14.59 0-14.06-.89-27.54-2.26-34.45-.4-2.02-.81-9.7-.9-17.06-.15-11.93-1.4-24.37-2.64-26.38-.66-1.07-3.02-17.66-3.03-21.3-.01-4.23 1.02-6 5.28-9.13 4.14-3.04 4.86-3.14 5.48-.72.28 1.1 1.45 5.62 2.6 10.03 3.93 15.12 4.14 16.27 4.05 21.74-.1 5.78-.13 6.13-1.74 17.73-.98 7.07-1.17 12.39-1.04 28.43.17 19.4-.64 35.73-2.04 41.27-.71 2.78-2.8 5.48-3.43 4.43zm-70.99-37.58c-.24-.38-1.01-5.24-1.73-10.79-.72-5.56-1.49-10.41-1.73-10.79-.23-.38-.68-3.3-.99-6.49-.31-3.19-.91-7.46-1.33-9.48-.99-4.79-3.35-19.35-3.42-21.07-.03-.74-.34-4.05-.7-7.36-.67-6.21-.84-27.67-.22-28.29.96-.96 6.63 2.76 11.33 7.43l5.28 5.25-.45 6.47c-.25 3.56-.6 10.23-.78 14.83-.18 4.6-.49 9.87-.67 11.71-.18 1.84-.61 9.36-.94 16.72-.79 17.41-1.94 31.29-2.65 32-.32.3-.76.24-1-.14zM74.63 162.61c21.07 12.79 17.84 14.15 28.49 17.66 13.01 4.29 18.87 7.13 23.15 16.87-43.66 36.14-69.01 57.9-76.71 70.82-31.02 52.01-5.99 101.59 62.75 87.21-14.18 29.23-77.97 28.63-98.68-4.9-24.68-39.95-22.09-118.3 61-187.66zm210.79 179.02c56.66 6.88 82.32-37.74 46.54-89.23 0 0-26.87-29.34-64.28-67.96 2.98-15.45 9.49-32.12 30.57-53.82 89.2 63.51 92 141.61 92.46 149.36 4.27 70.58-78.66 91.12-105.29 61.65z"] }; +var faMastodon = { prefix: 'fab', iconName: 'mastodon', icon: [417, 512, [], "f4f6", "M417.8 179.1c0-97.2-63.7-125.7-63.7-125.7-62.5-28.7-228.5-28.4-290.4 0 0 0-63.7 28.5-63.7 125.7 0 115.7-6.6 259.4 105.6 289.1 40.5 10.7 75.3 13 103.3 11.4 50.8-2.8 79.3-18.1 79.3-18.1l-1.7-36.9s-36.3 11.4-77.1 10.1c-40.4-1.4-83-4.4-89.6-54-.6-4.4-.9-9-.9-13.9 85.6 20.9 158.6 9.1 178.7 6.7 56.1-6.7 105-41.3 111.2-72.9 9.8-49.8 9-121.5 9-121.5zm-75.1 125.2h-46.6V190.1c0-49.7-64-51.6-64 6.9v62.5h-46.3V197c0-58.5-64-56.6-64-6.9v114.2H75.1c0-122.1-5.2-147.9 18.4-175 25.9-28.9 79.8-30.8 103.8 6.1l11.6 19.5 11.6-19.5c24.1-37.1 78.1-34.8 103.8-6.1 23.7 27.3 18.4 53 18.4 175z"] }; +var faMaxcdn = { prefix: 'fab', iconName: 'maxcdn', icon: [512, 512, [], "f136", "M461.1 442.7h-97.4L415.6 200c2.3-10.2.9-19.5-4.4-25.7-5-6.1-13.7-9.6-24.2-9.6h-49.3l-59.5 278h-97.4l59.5-278h-83.4l-59.5 278H0l59.5-278-44.6-95.4H387c39.4 0 75.3 16.3 98.3 44.9 23.3 28.6 31.8 67.4 23.6 105.9l-47.8 222.6z"] }; +var faMedapps = { prefix: 'fab', iconName: 'medapps', icon: [320, 512, [], "f3c6", "M118.3 238.4c3.5-12.5 6.9-33.6 13.2-33.6 8.3 1.8 9.6 23.4 18.6 36.6 4.6-23.5 5.3-85.1 14.1-86.7 9-.7 19.7 66.5 22 77.5 9.9 4.1 48.9 6.6 48.9 6.6 1.9 7.3-24 7.6-40 7.8-4.6 14.8-5.4 27.7-11.4 28-4.7.2-8.2-28.8-17.5-49.6l-9.4 65.5c-4.4 13-15.5-22.5-21.9-39.3-3.3-.1-62.4-1.6-47.6-7.8l31-5zM228 448c21.2 0 21.2-32 0-32H92c-21.2 0-21.2 32 0 32h136zm-24 64c21.2 0 21.2-32 0-32h-88c-21.2 0-21.2 32 0 32h88zm34.2-141.5c3.2-18.9 5.2-36.4 11.9-48.8 7.9-14.7 16.1-28.1 24-41 24.6-40.4 45.9-75.2 45.9-125.5C320 69.6 248.2 0 160 0S0 69.6 0 155.2c0 50.2 21.3 85.1 45.9 125.5 7.9 12.9 16 26.3 24 41 6.7 12.5 8.7 29.8 11.9 48.9 3.5 21 36.1 15.7 32.6-5.1-3.6-21.7-5.6-40.7-15.3-58.6C66.5 246.5 33 211.3 33 155.2 33 87.3 90 32 160 32s127 55.3 127 123.2c0 56.1-33.5 91.3-66.1 151.6-9.7 18-11.7 37.4-15.3 58.6-3.4 20.6 29 26.4 32.6 5.1z"] }; +var faMedium = { prefix: 'fab', iconName: 'medium', icon: [448, 512, [], "f23a", "M0 32v448h448V32H0zm372.2 106.1l-24 23c-2.1 1.6-3.1 4.2-2.7 6.7v169.3c-.4 2.6.6 5.2 2.7 6.7l23.5 23v5.1h-118V367l24.3-23.6c2.4-2.4 2.4-3.1 2.4-6.7V199.8l-67.6 171.6h-9.1L125 199.8v115c-.7 4.8 1 9.7 4.4 13.2l31.6 38.3v5.1H71.2v-5.1l31.6-38.3c3.4-3.5 4.9-8.4 4.1-13.2v-133c.4-3.7-1-7.3-3.8-9.8L75 138.1V133h87.3l67.4 148L289 133.1h83.2v5z"] }; +var faMediumM = { prefix: 'fab', iconName: 'medium-m', icon: [512, 512, [], "f3c7", "M71.5 142.3c.6-5.9-1.7-11.8-6.1-15.8L20.3 72.1V64h140.2l108.4 237.7L364.2 64h133.7v8.1l-38.6 37c-3.3 2.5-5 6.7-4.3 10.8v272c-.7 4.1 1 8.3 4.3 10.8l37.7 37v8.1H307.3v-8.1l39.1-37.9c3.8-3.8 3.8-5 3.8-10.8V171.2L241.5 447.1h-14.7L100.4 171.2v184.9c-1.1 7.8 1.5 15.6 7 21.2l50.8 61.6v8.1h-144v-8L65 377.3c5.4-5.6 7.9-13.5 6.5-21.2V142.3z"] }; +var faMedrt = { prefix: 'fab', iconName: 'medrt', icon: [544, 512, [], "f3c8", "M113.7 256c0 121.8 83.9 222.8 193.5 241.1-18.7 4.5-38.2 6.9-58.2 6.9C111.4 504 0 393 0 256S111.4 8 248.9 8c20.1 0 39.6 2.4 58.2 6.9C197.5 33.2 113.7 134.2 113.7 256m297.4 100.3c-77.7 55.4-179.6 47.5-240.4-14.6 5.5 14.1 12.7 27.7 21.7 40.5 61.6 88.2 182.4 109.3 269.7 47 87.3-62.3 108.1-184.3 46.5-272.6-9-12.9-19.3-24.3-30.5-34.2 37.4 78.8 10.7 178.5-67 233.9m-218.8-244c-1.4 1-2.7 2.1-4 3.1 64.3-17.8 135.9 4 178.9 60.5 35.7 47 42.9 106.6 24.4 158 56.7-56.2 67.6-142.1 22.3-201.8-50-65.5-149.1-74.4-221.6-19.8M296 224c-4.4 0-8-3.6-8-8v-40c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v40c0 4.4-3.6 8-8 8h-40c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h40c4.4 0 8 3.6 8 8v40c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-40c0-4.4 3.6-8 8-8h40c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-40z"] }; +var faMeetup = { prefix: 'fab', iconName: 'meetup', icon: [512, 512, [], "f2e0", "M99 414.3c1.1 5.7-2.3 11.1-8 12.3-5.4 1.1-10.9-2.3-12-8-1.1-5.4 2.3-11.1 7.7-12.3 5.4-1.2 11.1 2.3 12.3 8zm143.1 71.4c-6.3 4.6-8 13.4-3.7 20 4.6 6.6 13.4 8.3 20 3.7 6.3-4.6 8-13.4 3.4-20-4.2-6.5-13.1-8.3-19.7-3.7zm-86-462.3c6.3-1.4 10.3-7.7 8.9-14-1.1-6.6-7.4-10.6-13.7-9.1-6.3 1.4-10.3 7.7-9.1 14 1.4 6.6 7.6 10.6 13.9 9.1zM34.4 226.3c-10-6.9-23.7-4.3-30.6 6-6.9 10-4.3 24 5.7 30.9 10 7.1 23.7 4.6 30.6-5.7 6.9-10.4 4.3-24.1-5.7-31.2zm272-170.9c10.6-6.3 13.7-20 7.7-30.3-6.3-10.6-19.7-14-30-7.7s-13.7 20-7.4 30.6c6 10.3 19.4 13.7 29.7 7.4zm-191.1 58c7.7-5.4 9.4-16 4.3-23.7s-15.7-9.4-23.1-4.3c-7.7 5.4-9.4 16-4.3 23.7 5.1 7.8 15.6 9.5 23.1 4.3zm372.3 156c-7.4 1.7-12.3 9.1-10.6 16.9 1.4 7.4 8.9 12.3 16.3 10.6 7.4-1.4 12.3-8.9 10.6-16.6-1.5-7.4-8.9-12.3-16.3-10.9zm39.7-56.8c-1.1-5.7-6.6-9.1-12-8-5.7 1.1-9.1 6.9-8 12.6 1.1 5.4 6.6 9.1 12.3 8 5.4-1.5 9.1-6.9 7.7-12.6zM447 138.9c-8.6 6-10.6 17.7-4.9 26.3 5.7 8.6 17.4 10.6 26 4.9 8.3-6 10.3-17.7 4.6-26.3-5.7-8.7-17.4-10.9-25.7-4.9zm-6.3 139.4c26.3 43.1 15.1 100-26.3 129.1-17.4 12.3-37.1 17.7-56.9 17.1-12 47.1-69.4 64.6-105.1 32.6-1.1.9-2.6 1.7-3.7 2.9-39.1 27.1-92.3 17.4-119.4-22.3-9.7-14.3-14.6-30.6-15.1-46.9-65.4-10.9-90-94-41.1-139.7-28.3-46.9.6-107.4 53.4-114.9C151.6 70 234.1 38.6 290.1 82c67.4-22.3 136.3 29.4 130.9 101.1 41.1 12.6 52.8 66.9 19.7 95.2zm-70 74.3c-3.1-20.6-40.9-4.6-43.1-27.1-3.1-32 43.7-101.1 40-128-3.4-24-19.4-29.1-33.4-29.4-13.4-.3-16.9 2-21.4 4.6-2.9 1.7-6.6 4.9-11.7-.3-6.3-6-11.1-11.7-19.4-12.9-12.3-2-17.7 2-26.6 9.7-3.4 2.9-12 12.9-20 9.1-3.4-1.7-15.4-7.7-24-11.4-16.3-7.1-40 4.6-48.6 20-12.9 22.9-38 113.1-41.7 125.1-8.6 26.6 10.9 48.6 36.9 47.1 11.1-.6 18.3-4.6 25.4-17.4 4-7.4 41.7-107.7 44.6-112.6 2-3.4 8.9-8 14.6-5.1 5.7 3.1 6.9 9.4 6 15.1-1.1 9.7-28 70.9-28.9 77.7-3.4 22.9 26.9 26.6 38.6 4 3.7-7.1 45.7-92.6 49.4-98.3 4.3-6.3 7.4-8.3 11.7-8 3.1 0 8.3.9 7.1 10.9-1.4 9.4-35.1 72.3-38.9 87.7-4.6 20.6 6.6 41.4 24.9 50.6 11.4 5.7 62.5 15.7 58.5-11.1zm5.7 92.3c-10.3 7.4-12.9 22-5.7 32.6 7.1 10.6 21.4 13.1 32 6 10.6-7.4 13.1-22 6-32.6-7.4-10.6-21.7-13.5-32.3-6z"] }; +var faMegaport = { prefix: 'fab', iconName: 'megaport', icon: [496, 512, [], "f5a3", "M248 8C111.04 8 0 119.04 0 256c0 136.97 111.04 248 248 248 136.96 0 248-111.03 248-248C496 119.04 384.96 8 248 8zm85.46 267.67l59.66 59.67v87.05l-26.07 19.23L341 422.39v-65.46l-33.44-33.44-33.44 33.44v65.46L248 441.62l-26.12-19.23v-65.46l-33.44-33.44L155 356.92v65.46l-26.07 19.23-26.06-19.23v-87.05l59.47-59.47V188l59.5-59.5V52.88l26.06-19.23 26.06 19.23v75.64l59.5 59.5m-85.56-11.86l33.44 33.44V276L248 309.33l-33.54-33.54v-66.2l33.44-33.43z"] }; +var faMicrosoft = { prefix: 'fab', iconName: 'microsoft', icon: [448, 512, [], "f3ca", "M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z"] }; +var faMix = { prefix: 'fab', iconName: 'mix', icon: [448, 512, [], "f3cb", "M0 64v348.9c0 56.2 88 58.1 88 0V174.3c7.9-52.9 88-50.4 88 6.5v175.3c0 57.9 96 58 96 0V240c5.3-54.7 88-52.5 88 4.3v23.8c0 59.9 88 56.6 88 0V64H0z"] }; +var faMixcloud = { prefix: 'fab', iconName: 'mixcloud', icon: [640, 512, [], "f289", "M424.43 219.729C416.124 134.727 344.135 68 256.919 68c-72.266 0-136.224 46.516-159.205 114.074-54.545 8.029-96.63 54.822-96.63 111.582 0 62.298 50.668 112.966 113.243 112.966h289.614c52.329 0 94.969-42.362 94.969-94.693 0-45.131-32.118-83.063-74.48-92.2zm-20.489 144.53H114.327c-39.04 0-70.881-31.564-70.881-70.604s31.841-70.604 70.881-70.604c18.827 0 36.548 7.475 49.838 20.766 19.963 19.963 50.133-10.227 30.18-30.18-14.675-14.398-32.672-24.365-52.053-29.349 19.935-44.3 64.79-73.926 114.628-73.926 69.496 0 125.979 56.483 125.979 125.702 0 13.568-2.215 26.857-6.369 39.594-8.943 27.517 32.133 38.939 40.147 13.29 2.769-8.306 4.984-16.889 6.369-25.472 19.381 7.476 33.502 26.303 33.502 48.453 0 28.795-23.535 52.33-52.607 52.33zm235.069-52.33c0 44.024-12.737 86.386-37.102 122.657-4.153 6.092-10.798 9.414-17.72 9.414-16.317 0-27.127-18.826-17.443-32.949 19.381-29.349 29.903-63.682 29.903-99.122s-10.521-69.773-29.903-98.845c-15.655-22.831 19.361-47.24 35.163-23.534 24.366 35.993 37.102 78.356 37.102 122.379zm-70.88 0c0 31.565-9.137 62.021-26.857 88.325-4.153 6.091-10.798 9.136-17.72 9.136-17.201 0-27.022-18.979-17.443-32.948 13.013-19.104 19.658-41.255 19.658-64.513 0-22.981-6.645-45.408-19.658-64.512-15.761-22.986 19.008-47.095 35.163-23.535 17.719 26.026 26.857 56.483 26.857 88.047z"] }; +var faMizuni = { prefix: 'fab', iconName: 'mizuni', icon: [496, 512, [], "f3cc", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm-80 351.9c-31.4 10.6-58.8 27.3-80 48.2V136c0-22.1 17.9-40 40-40s40 17.9 40 40v223.9zm120-9.9c-12.9-2-26.2-3.1-39.8-3.1-13.8 0-27.2 1.1-40.2 3.1V136c0-22.1 17.9-40 40-40s40 17.9 40 40v214zm120 57.7c-21.2-20.8-48.6-37.4-80-48V136c0-22.1 17.9-40 40-40s40 17.9 40 40v271.7z"] }; +var faModx = { prefix: 'fab', iconName: 'modx', icon: [448, 512, [], "f285", "M356 241.8l36.7 23.7V480l-133-83.8L356 241.8zM440 75H226.3l-23 37.8 153.5 96.5L440 75zm-89 142.8L55.2 32v214.5l46 29L351 217.8zM97 294.2L8 437h213.7l125-200.5L97 294.2z"] }; +var faMonero = { prefix: 'fab', iconName: 'monero', icon: [496, 512, [], "f3d0", "M352 384h108.4C417 455.9 338.1 504 248 504S79 455.9 35.6 384H144V256.2L248 361l104-105v128zM88 336V128l159.4 159.4L408 128v208h74.8c8.5-25.1 13.2-52 13.2-80C496 119 385 8 248 8S0 119 0 256c0 28 4.6 54.9 13.2 80H88z"] }; +var faNapster = { prefix: 'fab', iconName: 'napster', icon: [496, 512, [], "f3d2", "M298.3 373.6c-14.2 13.6-31.3 24.1-50.4 30.5-19-6.4-36.2-16.9-50.3-30.5h100.7zm44-199.6c20-16.9 43.6-29.2 69.6-36.2V299c0 219.4-328 217.6-328 .3V137.7c25.9 6.9 49.6 19.6 69.5 36.4 56.8-40 132.5-39.9 188.9-.1zm-208.8-58.5c64.4-60 164.3-60.1 228.9-.2-7.1 3.5-13.9 7.3-20.6 11.5-58.7-30.5-129.2-30.4-187.9.1-6.3-4-13.9-8.2-20.4-11.4zM43.8 93.2v69.3c-58.4 36.5-58.4 121.1.1 158.3 26.4 245.1 381.7 240.3 407.6 1.5l.3-1.7c58.7-36.3 58.9-121.7.2-158.2V93.2c-17.3.5-34 3-50.1 7.4-82-91.5-225.5-91.5-307.5.1-16.3-4.4-33.1-7-50.6-7.5zM259.2 352s36-.3 61.3-1.5c10.2-.5 21.1-4 25.5-6.5 26.3-15.1 25.4-39.2 26.2-47.4-79.5-.6-99.9-3.9-113 55.4zm-135.5-55.3c.8 8.2-.1 32.3 26.2 47.4 4.4 2.5 15.2 6 25.5 6.5 25.3 1.1 61.3 1.5 61.3 1.5-13.2-59.4-33.7-56.1-113-55.4zm169.1 123.4c-3.2-5.3-6.9-7.3-6.9-7.3-24.8 7.3-52.2 6.9-75.9 0 0 0-2.9 1.5-6.4 6.6-2.8 4.1-3.7 9.6-3.7 9.6 29.1 17.6 67.1 17.6 96.2 0-.1-.1-.3-4-3.3-8.9z"] }; +var faNimblr = { prefix: 'fab', iconName: 'nimblr', icon: [355, 512, [], "f5a8", "M232.6 299.29c15.57 0 27.15 11.46 27.15 26.96 0 15.55-11.62 26.96-27.15 26.96-15.7 0-27.15-11.57-27.15-26.96 0-15.51 11.58-26.96 27.15-26.96zM99.01 326.25c0-15.61 11.68-26.96 27.15-26.96 15.57 0 27.15 11.46 27.15 26.96 0 15.41-11.47 26.96-27.15 26.96-15.44 0-27.15-11.31-27.15-26.96m78.75-167.3C143 158.95 75.45 178.77 45.25 227L0 0v335.48C0 433.13 79.61 512 177.76 512c98.24 0 177.76-78.95 177.76-176.52 0-97.46-79.39-176.53-177.76-176.53zm0 308.12c-73.27 0-132.51-58.9-132.51-131.59 0-72.68 59.24-131.59 132.51-131.59 73.27 0 132.51 58.91 132.51 131.59s-59.25 131.59-132.51 131.59z"] }; +var faNintendoSwitch = { prefix: 'fab', iconName: 'nintendo-switch', icon: [448, 512, [], "f418", "M95.9 33.5c-44.6 8-80.5 41-91.8 84.4C0 133.6-.3 142.8.2 264.4.4 376 .5 378.6 2.4 387.3c10.3 46.5 43.3 79.6 90.3 90.5 6.1 1.4 13.9 1.7 64.1 1.9 51.9.4 57.3.3 58.7-1.1 1.4-1.4 1.5-19.3 1.5-222.2 0-150.5-.3-221.3-.9-222.6-.9-1.7-2.5-1.8-56.9-1.7-44.2.1-57.5.4-63.3 1.4zm83.9 222.6V444l-37.8-.5c-34.8-.4-38.5-.6-45.5-2.3-29.9-7.7-52-30.7-58.3-60.7-2-9.4-2-240.1-.1-249.3 5.6-26.1 23.7-47.7 48-57.4 12.2-4.9 17.9-5.5 57.6-5.6l35.9-.1v188zm-75.9-131.2c-5.8 1.1-14.7 5.6-19.5 9.7-9.7 8.4-14.6 20.4-13.8 34.5.4 7.3.8 9.3 3.8 15.2 4.4 9 10.9 15.6 19.9 20 6.2 3.1 7.8 3.4 15.9 3.7 7.3.3 9.9 0 14.8-1.7 20.1-6.8 32.3-26.3 28.8-46.4-3.9-23.7-26.6-39.7-49.9-35zm158.2-92.3c-.4.3-.6 100.8-.6 223.5 0 202.3.1 222.8 1.5 223.4 2.5.9 74.5.6 83.4-.4 37.7-4.3 71-27.2 89-61.2 2.3-4.4 5.4-11.7 7-16.2 5.8-17.4 5.7-12.8 5.7-146.1 0-106.4-.2-122.3-1.5-129-9.2-48.3-46.1-84.8-94.5-93.1-6.5-1.1-16.5-1.4-48.8-1.4-22.4-.1-40.9.2-41.2.5zm99.1 202.1c14.5 3.8 26.3 14.8 31.2 28.9 3.1 8.7 3 21.5-.1 29.5-5.7 14.7-16.8 25-31.1 28.8-23.2 6-47.9-8-54.6-31-2-7-1.9-18.9.4-26.2 6.9-22.7 31-36.1 54.2-30z"] }; +var faNode = { prefix: 'fab', iconName: 'node', icon: [640, 512, [], "f419", "M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4.1l14.8 8.8c.5.3 1.3.3 1.8 0L375 408c.5-.3.9-.9.9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6.3-.9 1-.9 1.6v66.7c0 .6.4 1.2.9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9.7-1.7 1.7-1.7h7.3c.9 0 1.7.7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7zm46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6.2.8.8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5.3-.4.5-.8.4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7.7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8zm54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1zm-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3 0 5.2 4.2 9.4 9.3 9.4 5.2-.1 9.4-4.3 9.4-9.4zm-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7.1 1.8 1.2 2.1 2.8.1 1 .3 2.7.6 3.3zm-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8zM137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3.4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3.7 2.5 1.8 3.2 1.1.7 2.5.7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1 1.3 0 2.6.3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1.7 2.6.7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2l.2-95zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4zm-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6.3-.9.9-.9 1.6v24.3c0 .7.4 1.3.9 1.6l21 12.1c.6.3 1.3.3 1.8 0l21-12.1c.6-.3.9-.9.9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3.7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1.7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2l36.7-21.3zM559 219c-.4.3-.7.7-.7 1.2v13.6c0 .5.3 1 .7 1.2l11.8 6.8c.4.3 1 .3 1.4 0L584 235c.4-.3.7-.7.7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0L559 219zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7.1-.5.2-1.1.2-1.7zm-74.3-124.9l-.8.5h1.1l-.3-.5zm76.2 130.2l-.4-.7v.9l.4-.2z"] }; +var faNodeJs = { prefix: 'fab', iconName: 'node-js', icon: [448, 512, [], "f3d3", "M224 508c-6.7 0-13.5-1.8-19.4-5.2l-61.7-36.5c-9.2-5.2-4.7-7-1.7-8 12.3-4.3 14.8-5.2 27.9-12.7 1.4-.8 3.2-.5 4.6.4l47.4 28.1c1.7 1 4.1 1 5.7 0l184.7-106.6c1.7-1 2.8-3 2.8-5V149.3c0-2.1-1.1-4-2.9-5.1L226.8 37.7c-1.7-1-4-1-5.7 0L36.6 144.3c-1.8 1-2.9 3-2.9 5.1v213.1c0 2 1.1 4 2.9 4.9l50.6 29.2c27.5 13.7 44.3-2.4 44.3-18.7V167.5c0-3 2.4-5.3 5.4-5.3h23.4c2.9 0 5.4 2.3 5.4 5.3V378c0 36.6-20 57.6-54.7 57.6-10.7 0-19.1 0-42.5-11.6l-48.4-27.9C8.1 389.2.7 376.3.7 362.4V149.3c0-13.8 7.4-26.8 19.4-33.7L204.6 9c11.7-6.6 27.2-6.6 38.8 0l184.7 106.7c12 6.9 19.4 19.8 19.4 33.7v213.1c0 13.8-7.4 26.7-19.4 33.7L243.4 502.8c-5.9 3.4-12.6 5.2-19.4 5.2zm149.1-210.1c0-39.9-27-50.5-83.7-58-57.4-7.6-63.2-11.5-63.2-24.9 0-11.1 4.9-25.9 47.4-25.9 37.9 0 51.9 8.2 57.7 33.8.5 2.4 2.7 4.2 5.2 4.2h24c1.5 0 2.9-.6 3.9-1.7s1.5-2.6 1.4-4.1c-3.7-44.1-33-64.6-92.2-64.6-52.7 0-84.1 22.2-84.1 59.5 0 40.4 31.3 51.6 81.8 56.6 60.5 5.9 65.2 14.8 65.2 26.7 0 20.6-16.6 29.4-55.5 29.4-48.9 0-59.6-12.3-63.2-36.6-.4-2.6-2.6-4.5-5.3-4.5h-23.9c-3 0-5.3 2.4-5.3 5.3 0 31.1 16.9 68.2 97.8 68.2 58.4-.1 92-23.2 92-63.4z"] }; +var faNpm = { prefix: 'fab', iconName: 'npm', icon: [576, 512, [], "f3d4", "M288 288h-32v-64h32v64zm288-128v192H288v32H160v-32H0V160h576zm-416 32H32v128h64v-96h32v96h32V192zm160 0H192v160h64v-32h64V192zm224 0H352v128h64v-96h32v96h32v-96h32v96h32V192z"] }; +var faNs8 = { prefix: 'fab', iconName: 'ns8', icon: [640, 512, [], "f3d5", "M187.1 159.9l-34.2 113.7-54.5-113.7H49L0 320h44.9L76 213.5 126.6 320h56.9L232 159.9h-44.9zm452.5-.9c-2.9-18-23.9-28.1-42.1-31.3-44.6-7.8-101.9 16.3-88.5 58.8v.1c-43.8 8.7-74.3 26.8-94.2 48.2-3-9.8-13.6-16.6-34-16.6h-87.6c-9.3 0-12.9-2.3-11.5-7.4 1.6-5.5 1.9-6.8 3.7-12.2 2.1-6.4 7.8-7.1 13.3-7.1h133.5l9.7-31.5c-139.7 0-144.5-.5-160.1 1.2-12.3 1.3-23.5 4.8-30.6 15-6.8 9.9-14.4 35.6-17.6 47.1-5.4 19.4-.6 28.6 32.8 28.6h87.3c7.8 0 8.8 2.7 7.7 6.6-1.1 4.4-2.8 10-4.5 14.6-1.6 4.2-4.7 7.4-13.8 7.4H216.3L204.7 320c139.9 0 145.3-.6 160.9-2.3 6.6-.7 13-2.1 18.5-4.9.2 3.7.5 7.3 1.2 10.8 5.4 30.5 27.4 52.3 56.8 59.5 48.6 11.9 108.7-16.8 135.1-68 18.7-36.2 14.1-76.2-3.4-105.5h.1c29.6-5.9 70.3-22 65.7-50.6zM530.7 263.7c-5.9 29.5-36.6 47.8-61.6 43.9-30.9-4.8-38.5-39.5-14.1-64.8 16.2-16.8 45.2-24 68.5-26.9 6.7 14.1 10.3 32 7.2 47.8zm21.8-83.1c-4.2-6-9.8-18.5-2.5-26.3 6.7-7.2 20.9-10.1 31.8-7.7 15.3 3.4 19.7 15.9 4.9 24.4-10.7 6.1-23.6 8.1-34.2 9.6z"] }; +var faNutritionix = { prefix: 'fab', iconName: 'nutritionix', icon: [400, 512, [], "f3d6", "M88 8.1S221.4-.1 209 112.5c0 0 19.1-74.9 103-40.6 0 0-17.7 74-88 56 0 0 14.6-54.6 66.1-56.6 0 0-39.9-10.3-82.1 48.8 0 0-19.8-94.5-93.6-99.7 0 0 75.2 19.4 77.6 107.5 0 .1-106.4 7-104-119.8zm312 315.6c0 48.5-9.7 95.3-32 132.3-42.2 30.9-105 48-168 48-62.9 0-125.8-17.1-168-48C9.7 419 0 372.2 0 323.7 0 275.3 17.7 229 40 192c42.2-30.9 97.1-48.6 160-48.6 63 0 117.8 17.6 160 48.6 22.3 37 40 83.3 40 131.7zM120 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM192 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM264 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM336 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm24-39.6c-4.8-22.3-7.4-36.9-16-56-38.8-19.9-90.5-32-144-32S94.8 180.1 56 200c-8.8 19.5-11.2 33.9-16 56 42.2-7.9 98.7-14.8 160-14.8s117.8 6.9 160 14.8z"] }; +var faOdnoklassniki = { prefix: 'fab', iconName: 'odnoklassniki', icon: [320, 512, [], "f263", "M275.1 334c-27.4 17.4-65.1 24.3-90 26.9l20.9 20.6 76.3 76.3c27.9 28.6-17.5 73.3-45.7 45.7-19.1-19.4-47.1-47.4-76.3-76.6L84 503.4c-28.2 27.5-73.6-17.6-45.4-45.7 19.4-19.4 47.1-47.4 76.3-76.3l20.6-20.6c-24.6-2.6-62.9-9.1-90.6-26.9-32.6-21-46.9-33.3-34.3-59 7.4-14.6 27.7-26.9 54.6-5.7 0 0 36.3 28.9 94.9 28.9s94.9-28.9 94.9-28.9c26.9-21.1 47.1-8.9 54.6 5.7 12.4 25.7-1.9 38-34.5 59.1zM30.3 129.7C30.3 58 88.6 0 160 0s129.7 58 129.7 129.7c0 71.4-58.3 129.4-129.7 129.4s-129.7-58-129.7-129.4zm66 0c0 35.1 28.6 63.7 63.7 63.7s63.7-28.6 63.7-63.7c0-35.4-28.6-64-63.7-64s-63.7 28.6-63.7 64z"] }; +var faOdnoklassnikiSquare = { prefix: 'fab', iconName: 'odnoklassniki-square', icon: [448, 512, [], "f264", "M184.2 177.1c0-22.1 17.9-40 39.8-40s39.8 17.9 39.8 40c0 22-17.9 39.8-39.8 39.8s-39.8-17.9-39.8-39.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-305.1 97.1c0 44.6 36.4 80.9 81.1 80.9s81.1-36.2 81.1-80.9c0-44.8-36.4-81.1-81.1-81.1s-81.1 36.2-81.1 81.1zm174.5 90.7c-4.6-9.1-17.3-16.8-34.1-3.6 0 0-22.7 18-59.3 18s-59.3-18-59.3-18c-16.8-13.2-29.5-5.5-34.1 3.6-7.9 16.1 1.1 23.7 21.4 37 17.3 11.1 41.2 15.2 56.6 16.8l-12.9 12.9c-18.2 18-35.5 35.5-47.7 47.7-17.6 17.6 10.7 45.8 28.4 28.6l47.7-47.9c18.2 18.2 35.7 35.7 47.7 47.9 17.6 17.2 46-10.7 28.6-28.6l-47.7-47.7-13-12.9c15.5-1.6 39.1-5.9 56.2-16.8 20.4-13.3 29.3-21 21.5-37z"] }; +var faOldRepublic = { prefix: 'fab', iconName: 'old-republic', icon: [496, 512, [], "f510", "M235.76 10.23c7.5-.31 15-.28 22.5-.09 3.61.14 7.2.4 10.79.73 4.92.27 9.79 1.03 14.67 1.62 2.93.43 5.83.98 8.75 1.46 7.9 1.33 15.67 3.28 23.39 5.4 12.24 3.47 24.19 7.92 35.76 13.21 26.56 12.24 50.94 29.21 71.63 49.88 20.03 20.09 36.72 43.55 48.89 69.19 1.13 2.59 2.44 5.1 3.47 7.74 2.81 6.43 5.39 12.97 7.58 19.63 4.14 12.33 7.34 24.99 9.42 37.83.57 3.14 1.04 6.3 1.4 9.47.55 3.83.94 7.69 1.18 11.56.83 8.34.84 16.73.77 25.1-.07 4.97-.26 9.94-.75 14.89-.24 3.38-.51 6.76-.98 10.12-.39 2.72-.63 5.46-1.11 8.17-.9 5.15-1.7 10.31-2.87 15.41-4.1 18.5-10.3 36.55-18.51 53.63-15.77 32.83-38.83 62.17-67.12 85.12a246.503 246.503 0 0 1-56.91 34.86c-6.21 2.68-12.46 5.25-18.87 7.41-3.51 1.16-7.01 2.38-10.57 3.39-6.62 1.88-13.29 3.64-20.04 5-4.66.91-9.34 1.73-14.03 2.48-5.25.66-10.5 1.44-15.79 1.74-6.69.66-13.41.84-20.12.81-6.82.03-13.65-.12-20.45-.79-3.29-.23-6.57-.5-9.83-.95-2.72-.39-5.46-.63-8.17-1.11-4.12-.72-8.25-1.37-12.35-2.22-4.25-.94-8.49-1.89-12.69-3.02-8.63-2.17-17.08-5.01-25.41-8.13-10.49-4.12-20.79-8.75-30.64-14.25-2.14-1.15-4.28-2.29-6.35-3.57-11.22-6.58-21.86-14.1-31.92-22.34-34.68-28.41-61.41-66.43-76.35-108.7-3.09-8.74-5.71-17.65-7.8-26.68-1.48-6.16-2.52-12.42-3.58-18.66-.4-2.35-.61-4.73-.95-7.09-.6-3.96-.75-7.96-1.17-11.94-.8-9.47-.71-18.99-.51-28.49.14-3.51.34-7.01.7-10.51.31-3.17.46-6.37.92-9.52.41-2.81.65-5.65 1.16-8.44.7-3.94 1.3-7.9 2.12-11.82 3.43-16.52 8.47-32.73 15.26-48.18 1.15-2.92 2.59-5.72 3.86-8.59 8.05-16.71 17.9-32.56 29.49-47.06 20-25.38 45.1-46.68 73.27-62.47 7.5-4.15 15.16-8.05 23.07-11.37 15.82-6.88 32.41-11.95 49.31-15.38 3.51-.67 7.04-1.24 10.56-1.85 2.62-.47 5.28-.7 7.91-1.08 3.53-.53 7.1-.68 10.65-1.04 2.46-.24 4.91-.36 7.36-.51m8.64 24.41c-9.23.1-18.43.99-27.57 2.23-7.3 1.08-14.53 2.6-21.71 4.3-13.91 3.5-27.48 8.34-40.46 14.42-10.46 4.99-20.59 10.7-30.18 17.22-4.18 2.92-8.4 5.8-12.34 9.03-5.08 3.97-9.98 8.17-14.68 12.59-2.51 2.24-4.81 4.7-7.22 7.06-28.22 28.79-48.44 65.39-57.5 104.69-2.04 8.44-3.54 17.02-4.44 25.65-1.1 8.89-1.44 17.85-1.41 26.8.11 7.14.38 14.28 1.22 21.37.62 7.12 1.87 14.16 3.2 21.18 1.07 4.65 2.03 9.32 3.33 13.91 6.29 23.38 16.5 45.7 30.07 65.75 8.64 12.98 18.78 24.93 29.98 35.77 16.28 15.82 35.05 29.04 55.34 39.22 7.28 3.52 14.66 6.87 22.27 9.63 5.04 1.76 10.06 3.57 15.22 4.98 11.26 3.23 22.77 5.6 34.39 7.06 2.91.29 5.81.61 8.72.9 13.82 1.08 27.74 1 41.54-.43 4.45-.6 8.92-.99 13.35-1.78 3.63-.67 7.28-1.25 10.87-2.1 4.13-.98 8.28-1.91 12.36-3.07 26.5-7.34 51.58-19.71 73.58-36.2 15.78-11.82 29.96-25.76 42.12-41.28 3.26-4.02 6.17-8.31 9.13-12.55 3.39-5.06 6.58-10.25 9.6-15.54 2.4-4.44 4.74-8.91 6.95-13.45 5.69-12.05 10.28-24.62 13.75-37.49 2.59-10.01 4.75-20.16 5.9-30.45 1.77-13.47 1.94-27.1 1.29-40.65-.29-3.89-.67-7.77-1-11.66-2.23-19.08-6.79-37.91-13.82-55.8-5.95-15.13-13.53-29.63-22.61-43.13-12.69-18.8-28.24-35.68-45.97-49.83-25.05-20-54.47-34.55-85.65-42.08-7.78-1.93-15.69-3.34-23.63-4.45-3.91-.59-7.85-.82-11.77-1.24-7.39-.57-14.81-.72-22.22-.58zM139.26 83.53c13.3-8.89 28.08-15.38 43.3-20.18-3.17 1.77-6.44 3.38-9.53 5.29-11.21 6.68-21.52 14.9-30.38 24.49-6.8 7.43-12.76 15.73-17.01 24.89-3.29 6.86-5.64 14.19-6.86 21.71-.93 4.85-1.3 9.81-1.17 14.75.13 13.66 4.44 27.08 11.29 38.82 5.92 10.22 13.63 19.33 22.36 27.26 4.85 4.36 10.24 8.09 14.95 12.6 2.26 2.19 4.49 4.42 6.43 6.91 2.62 3.31 4.89 6.99 5.99 11.1.9 3.02.66 6.2.69 9.31.02 4.1-.04 8.2.03 12.3.14 3.54-.02 7.09.11 10.63.08 2.38.02 4.76.05 7.14.16 5.77.06 11.53.15 17.3.11 2.91.02 5.82.13 8.74.03 1.63.13 3.28-.03 4.91-.91.12-1.82.18-2.73.16-10.99 0-21.88-2.63-31.95-6.93-6-2.7-11.81-5.89-17.09-9.83-5.75-4.19-11.09-8.96-15.79-14.31-6.53-7.24-11.98-15.39-16.62-23.95-1.07-2.03-2.24-4.02-3.18-6.12-1.16-2.64-2.62-5.14-3.67-7.82-4.05-9.68-6.57-19.94-8.08-30.31-.49-4.44-1.09-8.88-1.2-13.35-.7-15.73.84-31.55 4.67-46.82 2.12-8.15 4.77-16.18 8.31-23.83 6.32-14.2 15.34-27.18 26.3-38.19 6.28-6.2 13.13-11.84 20.53-16.67zm175.37-20.12c2.74.74 5.41 1.74 8.09 2.68 6.36 2.33 12.68 4.84 18.71 7.96 13.11 6.44 25.31 14.81 35.82 24.97 10.2 9.95 18.74 21.6 25.14 34.34 1.28 2.75 2.64 5.46 3.81 8.26 6.31 15.1 10 31.26 11.23 47.57.41 4.54.44 9.09.45 13.64.07 11.64-1.49 23.25-4.3 34.53-1.97 7.27-4.35 14.49-7.86 21.18-3.18 6.64-6.68 13.16-10.84 19.24-6.94 10.47-15.6 19.87-25.82 27.22-10.48 7.64-22.64 13.02-35.4 15.38-3.51.69-7.08 1.08-10.66 1.21-1.85.06-3.72.16-5.56-.1-.28-2.15 0-4.31-.01-6.46-.03-3.73.14-7.45.1-11.17.19-7.02.02-14.05.21-21.07.03-2.38-.03-4.76.03-7.14.17-5.07-.04-10.14.14-15.21.1-2.99-.24-6.04.51-8.96.66-2.5 1.78-4.86 3.09-7.08 4.46-7.31 11.06-12.96 17.68-18.26 5.38-4.18 10.47-8.77 15.02-13.84 7.68-8.37 14.17-17.88 18.78-28.27 2.5-5.93 4.52-12.1 5.55-18.46.86-4.37 1.06-8.83 1.01-13.27-.02-7.85-1.4-15.65-3.64-23.17-1.75-5.73-4.27-11.18-7.09-16.45-3.87-6.93-8.65-13.31-13.96-19.2-9.94-10.85-21.75-19.94-34.6-27.1-1.85-1.02-3.84-1.82-5.63-2.97zm-100.8 58.45c.98-1.18 1.99-2.33 3.12-3.38-.61.93-1.27 1.81-1.95 2.68-3.1 3.88-5.54 8.31-7.03 13.06-.87 3.27-1.68 6.6-1.73 10-.07 2.52-.08 5.07.32 7.57 1.13 7.63 4.33 14.85 8.77 21.12 2 2.7 4.25 5.27 6.92 7.33 1.62 1.27 3.53 2.09 5.34 3.05 3.11 1.68 6.32 3.23 9.07 5.48 2.67 2.09 4.55 5.33 4.4 8.79-.01 73.67 0 147.34-.01 221.02 0 1.35-.08 2.7.04 4.04.13 1.48.82 2.83 1.47 4.15.86 1.66 1.78 3.34 3.18 4.62.85.77 1.97 1.4 3.15 1.24 1.5-.2 2.66-1.35 3.45-2.57.96-1.51 1.68-3.16 2.28-4.85.76-2.13.44-4.42.54-6.63.14-4.03-.02-8.06.14-12.09.03-5.89.03-11.77.06-17.66.14-3.62.03-7.24.11-10.86.15-4.03-.02-8.06.14-12.09.03-5.99.03-11.98.07-17.97.14-3.62.02-7.24.11-10.86.14-3.93-.02-7.86.14-11.78.03-5.99.03-11.98.06-17.97.16-3.94-.01-7.88.19-11.82.29 1.44.13 2.92.22 4.38.19 3.61.42 7.23.76 10.84.32 3.44.44 6.89.86 10.32.37 3.1.51 6.22.95 9.31.57 4.09.87 8.21 1.54 12.29 1.46 9.04 2.83 18.11 5.09 26.99 1.13 4.82 2.4 9.61 4 14.3 2.54 7.9 5.72 15.67 10.31 22.62 1.73 2.64 3.87 4.98 6.1 7.21.27.25.55.51.88.71.6.25 1.31-.07 1.7-.57.71-.88 1.17-1.94 1.7-2.93 4.05-7.8 8.18-15.56 12.34-23.31.7-1.31 1.44-2.62 2.56-3.61 1.75-1.57 3.84-2.69 5.98-3.63 2.88-1.22 5.9-2.19 9.03-2.42 6.58-.62 13.11.75 19.56 1.85 3.69.58 7.4 1.17 11.13 1.41 3.74.1 7.48.05 11.21-.28 8.55-.92 16.99-2.96 24.94-6.25 5.3-2.24 10.46-4.83 15.31-7.93 11.46-7.21 21.46-16.57 30.04-27.01 1.17-1.42 2.25-2.9 3.46-4.28-1.2 3.24-2.67 6.37-4.16 9.48-1.25 2.9-2.84 5.61-4.27 8.42-5.16 9.63-11.02 18.91-17.75 27.52-4.03 5.21-8.53 10.05-13.33 14.57-6.64 6.05-14.07 11.37-22.43 14.76-8.21 3.37-17.31 4.63-26.09 3.29-3.56-.58-7.01-1.69-10.41-2.88-2.79-.97-5.39-2.38-8.03-3.69-3.43-1.71-6.64-3.81-9.71-6.08 2.71 3.06 5.69 5.86 8.7 8.61 4.27 3.76 8.74 7.31 13.63 10.23 3.98 2.45 8.29 4.4 12.84 5.51 1.46.37 2.96.46 4.45.6-1.25 1.1-2.63 2.04-3.99 2.98-9.61 6.54-20.01 11.86-30.69 16.43-20.86 8.7-43.17 13.97-65.74 15.34-4.66.24-9.32.36-13.98.36-4.98-.11-9.97-.13-14.92-.65-11.2-.76-22.29-2.73-33.17-5.43-10.35-2.71-20.55-6.12-30.3-10.55-8.71-3.86-17.12-8.42-24.99-13.79-1.83-1.31-3.74-2.53-5.37-4.08 6.6-1.19 13.03-3.39 18.99-6.48 5.74-2.86 10.99-6.66 15.63-11.07 2.24-2.19 4.29-4.59 6.19-7.09-3.43 2.13-6.93 4.15-10.62 5.78-4.41 2.16-9.07 3.77-13.81 5.02-5.73 1.52-11.74 1.73-17.61 1.14-8.13-.95-15.86-4.27-22.51-8.98-4.32-2.94-8.22-6.43-11.96-10.06-9.93-10.16-18.2-21.81-25.66-33.86-3.94-6.27-7.53-12.75-11.12-19.22-1.05-2.04-2.15-4.05-3.18-6.1 2.85 2.92 5.57 5.97 8.43 8.88 8.99 8.97 18.56 17.44 29.16 24.48 7.55 4.9 15.67 9.23 24.56 11.03 3.11.73 6.32.47 9.47.81 2.77.28 5.56.2 8.34.3 5.05.06 10.11.04 15.16-.16 3.65-.16 7.27-.66 10.89-1.09 2.07-.25 4.11-.71 6.14-1.2 3.88-.95 8.11-.96 11.83.61 4.76 1.85 8.44 5.64 11.38 9.71 2.16 3.02 4.06 6.22 5.66 9.58 1.16 2.43 2.46 4.79 3.55 7.26 1 2.24 2.15 4.42 3.42 6.52.67 1.02 1.4 2.15 2.62 2.55 1.06-.75 1.71-1.91 2.28-3.03 2.1-4.16 3.42-8.65 4.89-13.05 2.02-6.59 3.78-13.27 5.19-20.02 2.21-9.25 3.25-18.72 4.54-28.13.56-3.98.83-7.99 1.31-11.97.87-10.64 1.9-21.27 2.24-31.94.08-1.86.24-3.71.25-5.57.01-4.35.25-8.69.22-13.03-.01-2.38-.01-4.76 0-7.13.05-5.07-.2-10.14-.22-15.21-.2-6.61-.71-13.2-1.29-19.78-.73-5.88-1.55-11.78-3.12-17.51-2.05-7.75-5.59-15.03-9.8-21.82-3.16-5.07-6.79-9.88-11.09-14.03-3.88-3.86-8.58-7.08-13.94-8.45-1.5-.41-3.06-.45-4.59-.64.07-2.99.7-5.93 1.26-8.85 1.59-7.71 3.8-15.3 6.76-22.6 1.52-4.03 3.41-7.9 5.39-11.72 3.45-6.56 7.62-12.79 12.46-18.46zm31.27 1.7c.35-.06.71-.12 1.07-.19.19 1.79.09 3.58.1 5.37v38.13c-.01 1.74.13 3.49-.15 5.22-.36-.03-.71-.05-1.06-.05-.95-3.75-1.72-7.55-2.62-11.31-.38-1.53-.58-3.09-1.07-4.59-1.7-.24-3.43-.17-5.15-.2-5.06-.01-10.13 0-15.19-.01-1.66-.01-3.32.09-4.98-.03-.03-.39-.26-.91.16-1.18 1.28-.65 2.72-.88 4.06-1.35 3.43-1.14 6.88-2.16 10.31-3.31 1.39-.48 2.9-.72 4.16-1.54.04-.56.02-1.13-.05-1.68-1.23-.55-2.53-.87-3.81-1.28-3.13-1.03-6.29-1.96-9.41-3.02-1.79-.62-3.67-1-5.41-1.79-.03-.37-.07-.73-.11-1.09 5.09-.19 10.2.06 15.3-.12 3.36-.13 6.73.08 10.09-.07.12-.39.26-.77.37-1.16 1.08-4.94 2.33-9.83 3.39-14.75zm5.97-.2c.36.05.72.12 1.08.2.98 3.85 1.73 7.76 2.71 11.61.36 1.42.56 2.88 1.03 4.27 2.53.18 5.07-.01 7.61.05 5.16.12 10.33.12 15.49.07.76-.01 1.52.03 2.28.08-.04.36-.07.72-.1 1.08-1.82.83-3.78 1.25-5.67 1.89-3.73 1.23-7.48 2.39-11.22 3.57-.57.17-1.12.42-1.67.64-.15.55-.18 1.12-.12 1.69.87.48 1.82.81 2.77 1.09 4.88 1.52 9.73 3.14 14.63 4.6.38.13.78.27 1.13.49.4.27.23.79.15 1.18-1.66.13-3.31.03-4.97.04-5.17.01-10.33-.01-15.5.01-1.61.03-3.22-.02-4.82.21-.52 1.67-.72 3.42-1.17 5.11-.94 3.57-1.52 7.24-2.54 10.78-.36.01-.71.02-1.06.06-.29-1.73-.15-3.48-.15-5.22v-38.13c.02-1.78-.08-3.58.11-5.37zM65.05 168.33c1.12-2.15 2.08-4.4 3.37-6.46-1.82 7.56-2.91 15.27-3.62 23-.8 7.71-.85 15.49-.54 23.23 1.05 19.94 5.54 39.83 14.23 57.88 2.99 5.99 6.35 11.83 10.5 17.11 6.12 7.47 12.53 14.76 19.84 21.09 4.8 4.1 9.99 7.78 15.54 10.8 3.27 1.65 6.51 3.39 9.94 4.68 5.01 2.03 10.19 3.61 15.42 4.94 3.83.96 7.78 1.41 11.52 2.71 5 1.57 9.47 4.61 13.03 8.43 4.93 5.23 8.09 11.87 10.2 18.67.99 2.9 1.59 5.91 2.17 8.92.15.75.22 1.52.16 2.29-6.5 2.78-13.26 5.06-20.26 6.18-4.11.78-8.29.99-12.46 1.08-10.25.24-20.47-1.76-30.12-5.12-3.74-1.42-7.49-2.85-11.03-4.72-8.06-3.84-15.64-8.7-22.46-14.46-2.92-2.55-5.83-5.13-8.4-8.03-9.16-9.83-16.3-21.41-21.79-33.65-2.39-5.55-4.61-11.18-6.37-16.96-1.17-3.94-2.36-7.89-3.26-11.91-.75-2.94-1.22-5.95-1.87-8.92-.46-2.14-.69-4.32-1.03-6.48-.85-5.43-1.28-10.93-1.33-16.43.11-6.18.25-12.37 1.07-18.5.4-2.86.67-5.74 1.15-8.6.98-5.7 2.14-11.37 3.71-16.93 3.09-11.65 7.48-22.95 12.69-33.84zm363.73-6.44c1.1 1.66 1.91 3.48 2.78 5.26 2.1 4.45 4.24 8.9 6.02 13.49 7.61 18.76 12.3 38.79 13.04 59.05.02 1.76.07 3.52.11 5.29.13 9.57-1.27 19.09-3.18 28.45-.73 3.59-1.54 7.17-2.58 10.69-4.04 14.72-10 29-18.41 41.78-8.21 12.57-19.01 23.55-31.84 31.41-5.73 3.59-11.79 6.64-18.05 9.19-5.78 2.19-11.71 4.03-17.8 5.11-6.4 1.05-12.91 1.52-19.4 1.23-7.92-.48-15.78-2.07-23.21-4.85-1.94-.8-3.94-1.46-5.84-2.33-.21-1.51.25-2.99.53-4.46 1.16-5.74 3.03-11.36 5.7-16.58 2.37-4.51 5.52-8.65 9.46-11.9 2.43-2.05 5.24-3.61 8.16-4.83 3.58-1.5 7.47-1.97 11.24-2.83 7.23-1.71 14.37-3.93 21.15-7 10.35-4.65 19.71-11.38 27.65-19.46 1.59-1.61 3.23-3.18 4.74-4.87 3.37-3.76 6.71-7.57 9.85-11.53 7.48-10.07 12.82-21.59 16.71-33.48 1.58-5.3 3.21-10.6 4.21-16.05.63-2.87 1.04-5.78 1.52-8.68.87-6.09 1.59-12.22 1.68-18.38.12-6.65.14-13.32-.53-19.94-.73-7.99-1.87-15.96-3.71-23.78z"] }; +var faOpencart = { prefix: 'fab', iconName: 'opencart', icon: [640, 512, [], "f23d", "M423.3 440.7c0 25.3-20.3 45.6-45.6 45.6s-45.8-20.3-45.8-45.6 20.6-45.8 45.8-45.8c25.4 0 45.6 20.5 45.6 45.8zm-253.9-45.8c-25.3 0-45.6 20.6-45.6 45.8s20.3 45.6 45.6 45.6 45.8-20.3 45.8-45.6-20.5-45.8-45.8-45.8zm291.7-270C158.9 124.9 81.9 112.1 0 25.7c34.4 51.7 53.3 148.9 373.1 144.2 333.3-5 130 86.1 70.8 188.9 186.7-166.7 319.4-233.9 17.2-233.9z"] }; +var faOpenid = { prefix: 'fab', iconName: 'openid', icon: [448, 512, [], "f19b", "M271.5 432l-68 32C88.5 453.7 0 392.5 0 318.2c0-71.5 82.5-131 191.7-144.3v43c-71.5 12.5-124 53-124 101.3 0 51 58.5 93.3 135.7 103v-340l68-33.2v384zM448 291l-131.3-28.5 36.8-20.7c-19.5-11.5-43.5-20-70-24.8v-43c46.2 5.5 87.7 19.5 120.3 39.3l35-19.8L448 291z"] }; +var faOpera = { prefix: 'fab', iconName: 'opera', icon: [496, 512, [], "f26a", "M313.9 32.7c-170.2 0-252.6 223.8-147.5 355.1 36.5 45.4 88.6 75.6 147.5 75.6 36.3 0 70.3-11.1 99.4-30.4-43.8 39.2-101.9 63-165.3 63-3.9 0-8 0-11.9-.3C104.6 489.6 0 381.1 0 248 0 111 111 0 248 0h.8c63.1.3 120.7 24.1 164.4 63.1-29-19.4-63.1-30.4-99.3-30.4zm101.8 397.7c-40.9 24.7-90.7 23.6-132-5.8 56.2-20.5 97.7-91.6 97.7-176.6 0-84.7-41.2-155.8-97.4-176.6 41.8-29.2 91.2-30.3 132.9-5 105.9 98.7 105.5 265.7-1.2 364z"] }; +var faOptinMonster = { prefix: 'fab', iconName: 'optin-monster', icon: [576, 512, [], "f23c", "M550.671 450.303c0 11.62-15.673 19.457-32.158 14.863-12.16-3.243-31.346-17.565-36.211-27.294-5.674-11.62 4.054-32.698 18.916-30.806 15.674 1.621 49.453 25.401 49.453 43.237zM372.86 75.223c-3.783-72.151-100.796-79.718-125.928-23.51 44.588-24.321 90.257-15.673 125.928 23.51zM74.795 407.066c-15.673 1.621-49.452 25.401-49.452 43.237 0 11.62 15.673 19.457 32.157 14.863 12.16-3.243 31.076-17.565 35.94-27.294 5.946-11.62-3.782-32.698-18.645-30.806zm497.765 14.322c1.081 3.513 1.892 7.026 1.892 10.809.81 31.616-44.317 64.045-73.503 65.125-17.295.81-34.59-8.377-42.696-23.51-113.497 4.053-226.994 4.864-340.22 0-8.377 15.133-25.672 24.05-42.967 23.51-28.915-1.081-74.043-33.509-73.503-65.125.27-3.783.811-7.296 1.892-10.809-5.566-9.463-4.845-15.282 5.405-11.62 3.243-5.134 7.026-9.458 11.08-13.782-2.57-10.917 1.27-14.094 11.079-9.188 4.594-3.243 9.998-6.485 15.944-9.188 0-15.757 11.839-11.131 17.295-5.675 12.467-1.78 20.129.709 26.753 5.675v-19.726c-12.987 0-40.641-11.375-45.94-36.212-4.974-20.725 2.607-38.075 25.132-47.56.81-5.945 8.107-14.052 14.862-15.944 7.567-1.892 12.431 4.594 14.052 10.269 7.425 0 17.757 1.465 21.078 8.107 5.405-.541 11.079-1.352 16.484-1.892-2.432-1.892-5.134-3.513-8.107-4.594-5.134-8.917-13.782-11.079-24.591-11.62 0-.81 0-1.621.27-2.702-19.727-.541-44.048-5.675-54.857-17.835-21.321-23.638-15.935-83.577 12.16-103.498 8.377-5.675 21.618-.811 22.699 9.728 2.425 20.598.399 26.833 26.212 25.942 8.107-7.836 16.755-14.592 26.483-19.997-14.862-1.352-28.914 1.621-43.778 3.783 12.752-12.48 23.953-25.442 56.748-42.427 23.511-11.89 49.993-20.808 76.205-23.239-18.646-7.837-39.993-11.891-59.721-16.484 76.475-16.214 174.569-22.159 244.289 37.562 18.105 15.403 32.427 36.211 42.696 59.992 39.799 4.853 36.47-5.581 38.643-25.132 1.081-10.269 14.322-15.403 22.699-9.458 14.862 10.539 22.159 30.806 24.59 48.101 2.162 17.835.27 41.345-12.43 55.127-10.809 12.16-34.32 17.565-53.776 18.105v2.703c-11.08.27-20.268 2.432-25.673 11.62-2.972 1.081-5.674 2.703-8.377 4.594 5.675.54 11.35 1.351 16.755 1.891 1.869-5.619 12.535-8.377 21.077-8.377 1.621-5.405 6.756-11.89 14.052-10.269s14.052 9.998 14.863 15.944c10.809 4.324 22.159 12.16 25.131 25.672 1.892 8.107 1.621 15.133.27 21.888-5.726 25.262-33.361 36.212-45.939 36.212 0 6.756 0 13.241-.27 19.726 8.01-6.006 16.367-7.158 26.752-5.675 5.919-5.919 17.565-9.41 17.565 5.675 5.675 2.703 11.349 5.945 15.944 9.188 10.1-5.051 13.669-.539 10.809 9.188 4.053 4.323 8.107 8.917 11.079 13.782 10.136-3.62 11.021 2.078 5.409 11.62zm-73.773-254.016c17.295 6.756 26.212 22.159 30.265 35.67 1.081-10.539-2.702-39.453-13.782-51.073-7.296-7.296-14.052-5.134-14.052.81.001 6.216-1.35 11.62-2.431 14.593zm-18.646 12.43c12.971 15.673 17.024 41.615 12.7 62.963 10.809-2.162 20.537-6.215 26.212-12.16 1.892-2.162 3.783-4.864 4.864-7.566-1.081-21.348-10.269-42.697-29.725-48.912-3.242 3.243-9.187 4.864-14.051 5.675zm-21.889.811c7.567 20.537 12.431 42.696 14.322 64.585 3.513 0 7.567-.27 11.62-.811 5.945-24.321-.27-51.614-14.052-63.504-3.783 0-8.107 0-11.89-.27zM77.768 167.372c-1.081-2.973-2.432-8.377-2.432-14.593 0-5.945-7.026-8.107-14.052-.81-11.35 11.62-14.863 40.534-13.782 51.073 4.053-13.512 12.971-28.915 30.266-35.67zm5.675 75.394c-4.324-21.348-.27-47.291 12.701-62.963-4.865-.811-10.809-2.432-14.052-5.675-19.457 6.215-28.375 27.563-29.726 48.912 1.351 2.702 2.972 5.404 4.864 7.566 5.675 6.215 15.403 9.998 26.213 12.16zm41.345-61.073c-5.134 1.081-9.998 2.973-14.862 4.865l-12.16 5.134v-.27c-7.296 14.052-9.999 34.319-5.405 52.965 4.594.541 8.647.811 12.7.811 2.432-22.159 9.188-43.778 19.727-63.505zm88.095-23.239c0 42.155 34.319 76.205 76.205 76.205s76.205-34.05 76.205-76.205c0-41.886-34.319-75.935-76.205-75.935s-76.205 34.049-76.205 75.935zm152.41 97.283c9.969 50.608 3.299 64.692 16.484 58.099 15.944-8.107 22.699-39.183 22.97-57.019-12.971-.81-26.213-.81-39.454-1.08zm-71.611-.541v-.27c-.27 5.134.27 38.103 4.324 41.075 11.079 5.405 39.453 4.594 51.073 1.081 5.405-1.621 2.432-37.022 1.621-41.886-18.916-.27-38.102-.27-57.018 0zm-14.053 0v-.27c-19.456.27-38.642.27-57.829.811-1.892 9.187-4.594 48.911 1.892 51.614 12.971 5.675 41.616 5.134 54.586 1.621 4.595-2.432 2.433-45.399 1.351-53.776zm-85.662 57.56c5.405 2.432 8.647 2.432 9.728-4.324 1.892-8.647 2.432-36.752 4.865-52.155-12.16.27-24.591.811-36.752 1.621-5.405 19.727.27 45.129 22.159 54.858zm-65.666-11.08c43.778 47.02 92.689 85.663 155.923 106.47 67.558-19.186 115.659-59.991 163.219-107.011-11.095-4.315-7.715-10.363-7.296-11.62-8.918-.81-17.835-1.892-26.483-2.702-9.458 32.968-35.94 52.965-46.75 31.616-2.702-5.134-3.513-11.62-4.594-16.754-3.783 8.377-13.242 8.107-24.591 8.918-13.241 1.081-31.617 1.351-44.048-2.972-2.972 12.971-11.079 12.971-26.752 14.322-14.052 1.352-48.642 4.054-54.857-10.809-1.081 28.644-35.13 9.998-45.129-7.026-3.243-5.675-5.405-11.35-7.026-17.565-7.837.81-15.673 1.621-23.511 2.702 2.443 3.663 1.549 9.052-8.105 12.431zM115.6 453.545c-5.674-23.239-18.646-49.722-33.508-54.046-22.429-6.756-68.909 23.51-66.207 54.586 12.701 19.457 39.994 35.67 59.181 36.481 17.835.81 35.94-11.08 39.724-28.914.539-2.432.81-5.134.81-8.107zm7.296-5.944c33.509-19.457 69.179-35.671 105.931-47.02-38.643-20.537-68.098-47.831-97.283-77.016-2.162 1.352-5.134 2.432-7.836 3.513-1.637 4.91 8.718 5.33 5.405 12.431-2.162 4.054-8.648 7.567-15.133 9.188-2.161 2.702-5.134 4.864-7.836 6.485h-.27c-.27 13.511-.27 27.024.27 40.535 8.939 15.964 15.426 33.314 16.752 51.884zm320.764 12.7c-36.752-21.348-74.044-41.345-115.659-52.965-13.782 6.215-27.833 11.349-42.155 15.403-2.162.811-2.162.811-4.324 0-11.89-3.783-23.239-8.107-34.859-13.241-40.265 11.62-77.286 29.185-112.416 50.803h-.27v.27c.27 0 .27 0 .27-.27 103.227 4.054 206.455 3.513 309.413 0zm27.023-64.045l-.27.27c.541-13.782.811-27.563.811-41.345-2.973-1.621-5.675-4.054-8.107-6.756-6.485-1.351-12.971-5.134-15.133-8.918-1.892-4.053 1.351-7.566 5.945-10.269-.27-.541-.541-1.621-.541-2.432-2.972-.811-5.405-1.892-7.567-3.243-31.616 29.455-65.396 56.749-103.498 76.746 38.914 11.62 75.935 28.104 111.875 47.561 1.05-14.692 7.231-35.749 16.485-51.614zm23.24 3.244c-14.593 4.323-27.834 30.806-33.509 54.046 0 23.826 21.278 37.897 40.534 37.022 19.186-.811 46.48-17.024 59.181-36.481 2.973-31.077-43.507-61.344-66.206-54.587zM290.709 134.133c.045 0 .089.003.134.003.046 0 .09-.003.136-.003h-.27zm0 96.743c28.645 0 51.884-21.618 51.884-48.371 0-36.092-40.507-58.079-72.151-44.318 9.458 2.972 16.484 11.62 16.484 21.618 0 23.257-33.291 31.955-46.48 11.35-7.297 34.067 19.368 59.721 50.263 59.721zM68.039 474.083c.54 6.486 12.16 12.701 21.618 9.458 6.756-2.703 14.593-10.539 17.295-16.214 2.973-7.026-1.081-19.997-9.728-18.375-8.917 1.621-29.725 16.754-29.185 25.131zm410.75-25.131c-8.377-1.621-12.431 11.349-9.458 18.375 2.432 5.675 10.269 13.511 17.295 16.214 9.187 3.243 21.078-2.972 21.348-9.458.811-8.377-20.267-23.51-29.185-25.131z"] }; +var faOsi = { prefix: 'fab', iconName: 'osi', icon: [495, 512, [], "f41a", "M0 259.2C2.3 123.4 97.4 26.8 213.8 11.1c138.8-18.6 255.6 75.8 278 201.1 21.3 118.8-44 230-151.6 274-9.3 3.8-14.4 1.7-18-7.7-17.8-46.3-35.6-92.7-53.4-139-3.1-8.1-1-13.2 7-16.8 24.2-11 39.3-29.4 43.3-55.8 6.4-42.4-24.5-78.7-64.5-82.2-39-3.4-71.8 23.7-77.5 59.7-5.2 33 11.1 63.7 41.9 77.7 9.6 4.4 11.5 8.6 7.8 18.4-17.9 46.6-35.8 93.2-53.7 139.9-2.6 6.9-8.3 9.3-15.5 6.5-52.6-20.3-101.4-61-130.8-119C1.9 318.7 1.6 280.2 0 259.2zm20.9-1.9c.4 6.6.6 14.3 1.3 22.1 6.3 71.9 49.6 143.5 131 183.1 3.2 1.5 4.4.8 5.6-2.3 14.9-39.1 29.9-78.2 45-117.3 1.3-3.3.6-4.8-2.4-6.7-31.6-19.9-47.3-48.5-45.6-86 1-21.6 9.3-40.5 23.8-56.3 30-32.7 77-39.8 115.5-17.6 31.9 18.4 49.5 53.8 45.2 90.4-3.6 30.6-19.3 53.9-45.7 69.8-2.7 1.6-3.5 2.9-2.3 6 15.2 39.2 30.2 78.4 45.2 117.7 1.2 3.1 2.4 3.8 5.6 2.3 35.5-16.6 65.2-40.3 88.1-72 34.8-48.2 49.1-101.9 42.3-161C459.8 112 354.1 14.7 218 31.5 111.9 44.5 22.7 134 20.9 257.3z"] }; +var faPage4 = { prefix: 'fab', iconName: 'page4', icon: [496, 512, [], "f3d7", "M248 504C111 504 0 393 0 256S111 8 248 8c20.9 0 41.3 2.6 60.7 7.5L42.3 392H248v112zm0-143.6V146.8L98.6 360.4H248zm96 31.6v92.7c45.7-19.2 84.5-51.7 111.4-92.7H344zm57.4-138.2l-21.2 8.4 21.2 8.3v-16.7zm-20.3 54.5c-6.7 0-8 6.3-8 12.9v7.7h16.2v-10c0-5.9-2.3-10.6-8.2-10.6zM496 256c0 37.3-8.2 72.7-23 104.4H344V27.3C433.3 64.8 496 153.1 496 256zM360.4 143.6h68.2V96h-13.9v32.6h-13.9V99h-13.9v29.6h-12.7V96h-13.9v47.6zm68.1 185.3H402v-11c0-15.4-5.6-25.2-20.9-25.2-15.4 0-20.7 10.6-20.7 25.9v25.3h68.2v-15zm0-103l-68.2 29.7V268l68.2 29.5v-16.6l-14.4-5.7v-26.5l14.4-5.9v-16.9zm-4.8-68.5h-35.6V184H402v-12.2h11c8.6 15.8 1.3 35.3-18.6 35.3-22.5 0-28.3-25.3-15.5-37.7l-11.6-10.6c-16.2 17.5-12.2 63.9 27.1 63.9 34 0 44.7-35.9 29.3-65.3z"] }; +var faPagelines = { prefix: 'fab', iconName: 'pagelines', icon: [384, 512, [], "f18c", "M384 312.7c-55.1 136.7-187.1 54-187.1 54-40.5 81.8-107.4 134.4-184.6 134.7-16.1 0-16.6-24.4 0-24.4 64.4-.3 120.5-42.7 157.2-110.1-41.1 15.9-118.6 27.9-161.6-82.2 109-44.9 159.1 11.2 178.3 45.5 9.9-24.4 17-50.9 21.6-79.7 0 0-139.7 21.9-149.5-98.1 119.1-47.9 152.6 76.7 152.6 76.7 1.6-16.7 3.3-52.6 3.3-53.4 0 0-106.3-73.7-38.1-165.2 124.6 43 61.4 162.4 61.4 162.4.5 1.6.5 23.8 0 33.4 0 0 45.2-89 136.4-57.5-4.2 134-141.9 106.4-141.9 106.4-4.4 27.4-11.2 53.4-20 77.5 0 0 83-91.8 172-20z"] }; +var faPalfed = { prefix: 'fab', iconName: 'palfed', icon: [576, 512, [], "f3d8", "M384.9 193.9c0-47.4-55.2-44.2-95.4-29.8-1.3 39.4-2.5 80.7-3 119.8.7 2.8 2.6 6.2 15.1 6.2 36.8 0 83.4-42.8 83.3-96.2zm-194.5 72.2c.2 0 6.5-2.7 11.2-2.7 26.6 0 20.7 44.1-14.4 44.1-21.5 0-37.1-18.1-37.1-43 0-42 42.9-95.6 100.7-126.5 1-12.4 3-22 10.5-28.2 11.2-9 26.6-3.5 29.5 11.1 72.2-22.2 135.2 1 135.2 72 0 77.9-79.3 152.6-140.1 138.2-.1 39.4.9 74.4 2.7 100v.2c.2 3.4.6 12.5-5.3 19.1-9.6 10.6-33.4 10-36.4-22.3-4.1-44.4.2-206.1 1.4-242.5-21.5 15-58.5 50.3-58.5 75.9.2 2.5.4 4 .6 4.6zM8 181.1s-.1 37.4 38.4 37.4h30l22.4 217.2s0 44.3 44.7 44.3h288.9s44.7-.4 44.7-44.3l22.4-217.2h30s38.4 1.2 38.4-37.4c0 0 .1-37.4-38.4-37.4h-30.1c-7.3-25.6-30.2-74.3-119.4-74.3h-28V50.3s-2.7-18.4-21.1-18.4h-85.8s-21.1 0-21.1 18.4v19.1h-28.1s-105 4.2-120.5 74.3h-29S8 142.5 8 181.1z"] }; +var faPatreon = { prefix: 'fab', iconName: 'patreon', icon: [512, 512, [], "f3d9", "M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z"] }; +var faPaypal = { prefix: 'fab', iconName: 'paypal', icon: [384, 512, [], "f1ed", "M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z"] }; +var faPeriscope = { prefix: 'fab', iconName: 'periscope', icon: [448, 512, [], "f3da", "M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z"] }; +var faPhabricator = { prefix: 'fab', iconName: 'phabricator', icon: [496, 512, [], "f3db", "M323 262.1l-.1-13s21.7-19.8 21.1-21.2l-9.5-20c-.6-1.4-29.5-.5-29.5-.5l-9.4-9.3s.2-28.5-1.2-29.1l-20.1-9.2c-1.4-.6-20.7 21-20.7 21l-13.1-.2s-20.5-21.4-21.9-20.8l-20 8.3c-1.4.5.2 28.9.2 28.9l-9.1 9.1s-29.2-.9-29.7.4l-8.1 19.8c-.6 1.4 21 21 21 21l.1 12.9s-21.7 19.8-21.1 21.2l9.5 20c.6 1.4 29.5.5 29.5.5l9.4 9.3s-.2 31.8 1.2 32.3l20.1 8.3c1.4.6 20.7-23.5 20.7-23.5l13.1.2s20.5 23.8 21.8 23.3l20-7.5c1.4-.6-.2-32.1-.2-32.1l9.1-9.1s29.2.9 29.7-.5l8.1-19.8c.7-1.1-20.9-20.7-20.9-20.7zm-44.9-8.7c.7 17.1-12.8 31.6-30.1 32.4-17.3.8-32.1-12.5-32.8-29.6-.7-17.1 12.8-31.6 30.1-32.3 17.3-.8 32.1 12.5 32.8 29.5zm201.2-37.9l-97-97-.1.1c-75.1-73.3-195.4-72.8-269.8 1.6-50.9 51-27.8 27.9-95.7 95.3-22.3 22.3-22.3 58.7 0 81 69.9 69.4 46.4 46 97.4 97l.1-.1c75.1 73.3 195.4 72.9 269.8-1.6 51-50.9 27.9-27.9 95.3-95.3 22.3-22.3 22.3-58.7 0-81zM140.4 363.8c-59.6-59.5-59.6-156 0-215.5 59.5-59.6 156-59.5 215.6 0 59.5 59.5 59.6 156 0 215.6-59.6 59.5-156 59.4-215.6-.1z"] }; +var faPhoenixFramework = { prefix: 'fab', iconName: 'phoenix-framework', icon: [640, 512, [], "f3dc", "M212.9 344.3c3.8-.1 22.8-1.4 25.6-2.2-2.4-2.6-43.6-1-68-49.6-4.3-8.6-7.5-17.6-6.4-27.6 2.9-25.5 32.9-30 52-18.5 36 21.6 63.3 91.3 113.7 97.5 37 4.5 84.6-17 108.2-45.4-.6-.1-.8-.2-1-.1-.4.1-.8.2-1.1.3-33.3 12.1-94.3 9.7-134.7-14.8-37.6-22.8-53.1-58.7-51.8-74.6 1.8-21.3 22.9-23.2 35.9-19.6 14.4 3.9 24.4 17.6 38.9 27.4 15.6 10.4 32.9 13.7 51.3 10.3 14.9-2.7 34.4-12.3 36.5-14.5-1.1-.1-1.8-.1-2.5-.2-6.2-.6-12.4-.8-18.5-1.7C279.8 194.5 262.1 47.4 138.5 37.9 94.2 34.5 39.1 46 2.2 72.9c-.8.6-1.5 1.2-2.2 1.8.1.2.1.3.2.5.8 0 1.6-.1 2.4-.2 6.3-1 12.5-.8 18.7.3 23.8 4.3 47.7 23.1 55.9 76.5 5.3 34.3-.7 50.8 8 86.1 19 77.1 91 107.6 127.7 106.4zM75.3 64.9c-.9-1-.9-1.2-1.3-2 12.1-2.6 24.2-4.1 36.6-4.8-1.1 14.7-22.2 21.3-35.3 6.8zm196.9 350.5c-42.8 1.2-92-26.7-123.5-61.4-4.6-5-16.8-20.2-18.6-23.4l.4-.4c6.6 4.1 25.7 18.6 54.8 27 24.2 7 48.1 6.3 71.6-3.3 22.7-9.3 41-.5 43.1 2.9-18.5 3.8-20.1 4.4-24 7.9-5.1 4.4-4.6 11.7 7 17.2 26.2 12.4 63-2.8 97.2 25.4 2.4 2 8.1 7.8 10.1 10.7-.1.2-.3.3-.4.5-4.8-1.5-16.4-7.5-40.2-9.3-24.7-2-46.3 5.3-77.5 6.2zm174.8-252c16.4-5.2 41.3-13.4 66.5-3.3 16.1 6.5 26.2 18.7 32.1 34.6 3.5 9.4 5.1 19.7 5.1 28.7-.2 0-.4 0-.6.1-.2-.4-.4-.9-.5-1.3-5-22-29.9-43.8-67.6-29.9-50.2 18.6-130.4 9.7-176.9-48-.7-.9-2.4-1.7-1.3-3.2.1-.2 2.1.6 3 1.3 18.1 13.4 38.3 21.9 60.3 26.2 30.5 6.1 54.6 2.9 79.9-5.2zm102.7 117.5c-32.4.2-33.8 50.1-103.6 64.4-18.2 3.7-38.7 4.6-44.9 4.2v-.4c2.8-1.5 14.7-2.6 29.7-16.6 7.9-7.3 15.3-15.1 22.8-22.9 19.5-20.2 41.4-42.2 81.9-39 23.1 1.8 29.3 8.2 36.1 12.7.3.2.4.5.7.9-.5 0-.7.1-.9 0-7-2.7-14.3-3.3-21.8-3.3zm-12.3-24.1c-.1.2-.1.4-.2.6-28.9-4.4-48-7.9-68.5 4-17 9.9-31.4 20.5-62 24.4-27.1 3.4-45.1 2.4-66.1-8-.3-.2-.6-.4-1-.6 0-.2.1-.3.1-.5 24.9 3.8 36.4 5.1 55.5-5.8 22.3-12.9 40.1-26.6 71.3-31 29.6-4.1 51.3 2.5 70.9 16.9zM268.6 97.3c-.6-.6-1.1-1.2-2.1-2.3 7.6 0 29.7-1.2 53.4 8.4 19.7 8 32.2 21 50.2 32.9 11.1 7.3 23.4 9.3 36.4 8.1 4.3-.4 8.5-1.2 12.8-1.7.4-.1.9 0 1.5.3-.6.4-1.2.9-1.8 1.2-8.1 4-16.7 6.3-25.6 7.1-26.1 2.6-50.3-3.7-73.4-15.4-19.3-9.9-36.4-22.9-51.4-38.6zM640 335.7c-3.5 3.1-22.7 11.6-42.7 5.3-12.3-3.9-19.5-14.9-31.6-24.1-10-7.6-20.9-7.9-28.1-8.4.6-.8.9-1.2 1.2-1.4 14.8-9.2 30.5-12.2 47.3-6.5 12.5 4.2 19.2 13.5 30.4 24.2 10.8 10.4 21 9.9 23.1 10.5.1-.1.2 0 .4.4zm-212.5 137c2.2 1.2 1.6 1.5 1.5 2-18.5-1.4-33.9-7.6-46.8-22.2-21.8-24.7-41.7-27.9-48.6-29.7.5-.2.8-.4 1.1-.4 13.1.1 26.1.7 38.9 3.9 25.3 6.4 35 25.4 41.6 35.3 3.2 4.8 7.3 8.3 12.3 11.1z"] }; +var faPhoenixSquadron = { prefix: 'fab', iconName: 'phoenix-squadron', icon: [513, 512, [], "f511", "M96.24 62.81C142.91 26.57 202.15 6.57 261.28 8.08c29.67-.38 59.29 5.38 87.17 15.37-24.2-4.64-49.18-6.35-73.6-2.45-43 5.35-83.26 27.23-112.16 59.35 5.69-.99 10.81-3.68 16.07-5.88 18.19-7.89 37.6-13.29 57.4-14.87 19.8-2.14 39.75-.43 59.45 1.93-14.46 2.79-29.2 4.58-43.11 9.61-34.53 11.11-65.46 33.26-86.55 62.82-13.84 19.77-23.7 42.99-24.74 67.33-.35 16.54 5.23 34.91 19.89 44.17 11.13 6.66 24.85 9.39 37.63 6.76 15.49-2.47 30.16-8.67 43.73-16.38 11.55-6.84 22.73-14.59 32.05-24.32 3.8-3.23 2.54-8.48 2.63-12.83-2.13-.34-4.4-1.11-6.32.3a203.975 203.975 0 0 1-35.93 15.42c-20.07 6.19-42.28 8.48-62.28.78 12.83 1.73 26.14.31 37.85-5.46 20.29-9.75 36.92-25.27 54.6-38.88 27.84-21.29 57.64-40.11 89.17-55.47 25.78-12.01 53.09-22.85 81.81-24.2-15.68 13.76-32.25 26.6-46.92 41.51-14.55 14.04-27.54 29.58-40.23 45.31-3.53 4.61-8.98 6.96-13.62 10.19-22.24 15.03-40.6 35.96-52.04 60.28-9.36 19.74-14.55 41.97-11.81 63.84 1.95 13.73 8.74 27.67 20.96 35.01 12.94 7.99 29.14 8.09 43.61 5.11 32.9-7.47 61.61-28.97 81.28-56 20.5-27.6 30.61-62.38 29.25-96.64-.52-7.52-1.58-15-1.67-22.55 8.02 19.54 14.87 39.83 16.7 61.01 2.01 14.32.75 28.84-1.62 43.02-1.92 11.02-5.69 21.58-7.81 32.53 20.36-22.73 34.17-51.24 39.46-81.31 5.72-35.37.58-72.36-14.25-104.95 20.84 32.12 32.43 69.79 35.81 107.8.5 12.77.5 25.58 0 38.34-2.91 34.26-12.97 67.95-29.76 98-26.2 47.48-68.2 85.89-117.54 108.32-78.52 36.34-175.2 31.41-248.72-14.72-38.84-23.78-71.06-58.32-91.68-98.96C10.72 337.43 2.04 305.5 0 273.13V241.7c3.94-69.97 40.99-136.32 96.24-178.89m222.65 80.57c5.51-.8 10.82-2.57 16.02-4.5 4.99-1.77 9.27-5.95 10.35-11.25-8.91 5-17.95 9.95-26.37 15.75z"] }; +var faPhp = { prefix: 'fab', iconName: 'php', icon: [640, 512, [], "f457", "M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z"] }; +var faPiedPiper = { prefix: 'fab', iconName: 'pied-piper', icon: [448, 512, [], "f2ae", "M32 419L0 479.2l.8-328C.8 85.3 54 32 120 32h327.2c-93 28.9-189.9 94.2-253.9 168.6C122.7 282 82.6 338 32 419M448 32S305.2 98.8 261.6 199.1c-23.2 53.6-28.9 118.1-71 158.6-28.9 27.8-69.8 38.2-105.3 56.3-23.2 12-66.4 40.5-84.9 66h328.4c66 0 119.3-53.3 119.3-119.2-.1 0-.1-328.8-.1-328.8z"] }; +var faPiedPiperAlt = { prefix: 'fab', iconName: 'pied-piper-alt', icon: [576, 512, [], "f1a8", "M242 187c6.3-11.8 13.2-17 25.9-21.8 27.3-10.3 40.2-30.5 58.9-51.1 11.9 8.4 12 24.6 31.6 23v21.8l6.3.3c37.4-14.4 74.7-30.2 106.6-54.6 48.3-36.8 52.9-50 81.3-100l2-2.6c-.6 14.1-6.3 27.3-12.4 39.9-30.5 63.8-78.7 100.3-146.8 116.7-12.4 2.9-26.4 3.2-37.6 8.9 1.4 9.8 13.2 18.1 13.2 23 0 3.4-5.5 7.2-7.5 8.6-11.2-12.9-16.1-19.3-22.7-22.1-7.6-3.5-63.9-6.4-98.8 10zm137.9 256.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9L244 246zm-12.6 31.8l24.1 61.2 21-13.8-31.3-50.9-13.8 3.5zM555.5 0l-.6 1.1-.3.9.6-.6.3-1.4zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46v27.3l11.8-3.4-2.9-23.8h-8.9zm76.1 2.9c0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3l2 12.4c9-1.5 58.4-6.6 58.4-14.1z"] }; +var faPiedPiperHat = { prefix: 'fab', iconName: 'pied-piper-hat', icon: [640, 512, [], "f4e5", "M640 24.9c-80.8 53.6-89.4 92.5-96.4 104.4-6.7 12.2-11.7 60.3-23.3 83.6-11.7 23.6-54.2 42.2-66.1 50-11.7 7.8-28.3 38.1-41.9 64.2-108.1-4.4-167.4 38.8-259.2 93.6 29.4-9.7 43.3-16.7 43.3-16.7 94.2-36 139.3-68.3 281.1-49.2 1.1 0 1.9.6 2.8.8 3.9 2.2 5.3 6.9 3.1 10.8l-53.9 95.8c-2.5 4.7-7.8 7.2-13.1 6.1-126.8-23.8-226.9 17.3-318.9 18.6C24.1 488 0 453.4 0 451.8c0-1.1.6-1.7 1.7-1.7 0 0 38.3 0 103.1-15.3C178.4 294.5 244 245.4 315.4 245.4c0 0 71.7 0 90.6 61.9 22.8-39.7 28.3-49.2 28.3-49.2 5.3-9.4 35-77.2 86.4-141.4 51.5-64 90.4-79.9 119.3-91.8z"] }; +var faPiedPiperPp = { prefix: 'fab', iconName: 'pied-piper-pp', icon: [448, 512, [], "f1a7", "M205.3 174.6c0 21.1-14.2 38.1-31.7 38.1-7.1 0-12.8-1.2-17.2-3.7v-68c4.4-2.7 10.1-4.2 17.2-4.2 17.5 0 31.7 16.9 31.7 37.8zm52.6 67c-7.1 0-12.8 1.5-17.2 4.2v68c4.4 2.5 10.1 3.7 17.2 3.7 17.4 0 31.7-16.9 31.7-37.8 0-21.1-14.3-38.1-31.7-38.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM185 255.1c41 0 74.2-35.6 74.2-79.6 0-44-33.2-79.6-74.2-79.6-12 0-24.1 3.2-34.6 8.8h-45.7V311l51.8-10.1v-50.6c8.6 3.1 18.1 4.8 28.5 4.8zm158.4 25.3c0-44-33.2-79.6-73.9-79.6-3.2 0-6.4.2-9.6.7-3.7 12.5-10.1 23.8-19.2 33.4-13.8 15-32.2 23.8-51.8 24.8V416l51.8-10.1v-50.6c8.6 3.2 18.2 4.7 28.7 4.7 40.8 0 74-35.6 74-79.6z"] }; +var faPinterest = { prefix: 'fab', iconName: 'pinterest', icon: [496, 512, [], "f0d2", "M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3.8-3.4 5-20.3 6.9-28.1.6-2.5.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z"] }; +var faPinterestP = { prefix: 'fab', iconName: 'pinterest-p', icon: [384, 512, [], "f231", "M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z"] }; +var faPinterestSquare = { prefix: 'fab', iconName: 'pinterest-square', icon: [448, 512, [], "f0d3", "M448 80v352c0 26.5-21.5 48-48 48H154.4c9.8-16.4 22.4-40 27.4-59.3 3-11.5 15.3-58.4 15.3-58.4 8 15.3 31.4 28.2 56.3 28.2 74.1 0 127.4-68.1 127.4-152.7 0-81.1-66.2-141.8-151.4-141.8-106 0-162.2 71.1-162.2 148.6 0 36 19.2 80.8 49.8 95.1 4.7 2.2 7.1 1.2 8.2-3.3.8-3.4 5-20.1 6.8-27.8.6-2.5.3-4.6-1.7-7-10.1-12.3-18.3-34.9-18.3-56 0-54.2 41-106.6 110.9-106.6 60.3 0 102.6 41.1 102.6 99.9 0 66.4-33.5 112.4-77.2 112.4-24.1 0-42.1-19.9-36.4-44.4 6.9-29.2 20.3-60.7 20.3-81.8 0-53-75.5-45.7-75.5 25 0 21.7 7.3 36.5 7.3 36.5-31.4 132.8-36.1 134.5-29.6 192.6l2.2.8H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z"] }; +var faPlaystation = { prefix: 'fab', iconName: 'playstation', icon: [576, 512, [], "f3df", "M570.9 372.3c-11.3 14.2-38.8 24.3-38.8 24.3L327 470.2v-54.3l150.9-53.8c17.1-6.1 19.8-14.8 5.8-19.4-13.9-4.6-39.1-3.3-56.2 2.9L327 381.1v-56.4c23.2-7.8 47.1-13.6 75.7-16.8 40.9-4.5 90.9.6 130.2 15.5 44.2 14 49.2 34.7 38 48.9zm-224.4-92.5v-139c0-16.3-3-31.3-18.3-35.6-11.7-3.8-19 7.1-19 23.4v347.9l-93.8-29.8V32c39.9 7.4 98 24.9 129.2 35.4C424.1 94.7 451 128.7 451 205.2c0 74.5-46 102.8-104.5 74.6zM43.2 410.2c-45.4-12.8-53-39.5-32.3-54.8 19.1-14.2 51.7-24.9 51.7-24.9l134.5-47.8v54.5l-96.8 34.6c-17.1 6.1-19.7 14.8-5.8 19.4 13.9 4.6 39.1 3.3 56.2-2.9l46.4-16.9v48.8c-51.6 9.3-101.4 7.3-153.9-10z"] }; +var faProductHunt = { prefix: 'fab', iconName: 'product-hunt', icon: [512, 512, [], "f288", "M326.3 218.8c0 20.5-16.7 37.2-37.2 37.2h-70.3v-74.4h70.3c20.5 0 37.2 16.7 37.2 37.2zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-128.1-37.2c0-47.9-38.9-86.8-86.8-86.8H169.2v248h49.6v-74.4h70.3c47.9 0 86.8-38.9 86.8-86.8z"] }; +var faPushed = { prefix: 'fab', iconName: 'pushed', icon: [432, 512, [], "f3e1", "M407 111.9l-98.5-9 14-33.4c10.4-23.5-10.8-40.4-28.7-37L22.5 76.9c-15.1 2.7-26 18.3-21.4 36.6l105.1 348.3c6.5 21.3 36.7 24.2 47.7 7l35.3-80.8 235.2-231.3c16.4-16.8 4.3-42.9-17.4-44.8zM297.6 53.6c5.1-.7 7.5 2.5 5.2 7.4L286 100.9 108.6 84.6l189-31zM22.7 107.9c-3.1-5.1 1-10 6.1-9.1l248.7 22.7-96.9 230.7L22.7 107.9zM136 456.4c-2.6 4-7.9 3.1-9.4-1.2L43.5 179.7l127.7 197.6c-7 15-35.2 79.1-35.2 79.1zm272.8-314.5L210.1 337.3l89.7-213.7 106.4 9.7c4 1.1 5.7 5.3 2.6 8.6z"] }; +var faPython = { prefix: 'fab', iconName: 'python', icon: [448, 512, [], "f3e2", "M167.8 36.4c-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1zm-6.7 28.4c11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4zm185.2 81.4v47.5c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6-7.7-30.9-22.3-54.2-53.4-54.2h-40.1zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3z"] }; +var faQq = { prefix: 'fab', iconName: 'qq', icon: [448, 512, [], "f1d6", "M433.754 420.445c-11.526 1.393-44.86-52.741-44.86-52.741 0 31.345-16.136 72.247-51.051 101.786 16.842 5.192 54.843 19.167 45.803 34.421-7.316 12.343-125.51 7.881-159.632 4.037-34.122 3.844-152.316 8.306-159.632-4.037-9.045-15.25 28.918-29.214 45.783-34.415-34.92-29.539-51.059-70.445-51.059-101.792 0 0-33.334 54.134-44.859 52.741-5.37-.65-12.424-29.644 9.347-99.704 10.261-33.024 21.995-60.478 40.144-105.779C60.683 98.063 108.982.006 224 0c113.737.006 163.156 96.133 160.264 214.963 18.118 45.223 29.912 72.85 40.144 105.778 21.768 70.06 14.716 99.053 9.346 99.704z"] }; +var faQuinscape = { prefix: 'fab', iconName: 'quinscape', icon: [489, 512, [], "f459", "M301.9 474.6h-1.3c-87.3 0-158.1-70.8-158.1-158.1s70.8-158.1 158.1-158.1c94.9 0 168.2 83.1 157 176.6 4 5.1 8.2 9.6 11.2 15.3 13.4-30.3 20.3-62.4 20.3-97.7C489.1 117.5 379.6 8 244.5 8 109.5 8 0 117.5 0 252.6s109.5 244.6 244.5 244.6c24.8 0 47.8-3.2 70.4-10.1-5.2-3.5-9-8.2-13.4-12.6l.4.1zm-21.2-69.8c0-54.8 44.4-99.2 99.2-99.2 54.8 0 99.2 44.4 99.2 99.2 0 54.8-44.4 99.2-99.2 99.2-54.8 0-99.2-44.4-99.2-99.2"] }; +var faQuora = { prefix: 'fab', iconName: 'quora', icon: [448, 512, [], "f2c4", "M440.5 386.7h-29.3c-1.5 13.5-10.5 30.8-33 30.8-20.5 0-35.3-14.2-49.5-35.8 44.2-34.2 74.7-87.5 74.7-153C403.5 111.2 306.8 32 205 32 105.3 32 7.3 111.7 7.3 228.7c0 134.1 131.3 221.6 249 189C276 451.3 302 480 351.5 480c81.8 0 90.8-75.3 89-93.3zM297 329.2C277.5 300 253.3 277 205.5 277c-30.5 0-54.3 10-69 22.8l12.2 24.3c6.2-3 13-4 19.8-4 35.5 0 53.7 30.8 69.2 61.3-10 3-20.7 4.2-32.7 4.2-75 0-107.5-53-107.5-156.7C97.5 124.5 130 71 205 71c76.2 0 108.7 53.5 108.7 157.7.1 41.8-5.4 75.6-16.7 100.5z"] }; +var faRProject = { prefix: 'fab', iconName: 'r-project', icon: [581, 512, [], "f4f7", "M581 226.6C581 119.1 450.9 32 290.5 32S0 119.1 0 226.6C0 322.4 103.3 402 239.4 418.1V480h99.1v-61.5c24.3-2.7 47.6-7.4 69.4-13.9L448 480h112l-67.4-113.7c54.5-35.4 88.4-84.9 88.4-139.7zm-466.8 14.5c0-73.5 98.9-133 220.8-133s211.9 40.7 211.9 133c0 50.1-26.5 85-70.3 106.4-2.4-1.6-4.7-2.9-6.4-3.7-10.2-5.2-27.8-10.5-27.8-10.5s86.6-6.4 86.6-92.7-90.6-87.9-90.6-87.9h-199V361c-74.1-21.5-125.2-67.1-125.2-119.9zm225.1 38.3v-55.6c57.8 0 87.8-6.8 87.8 27.3 0 36.5-38.2 28.3-87.8 28.3zm-.9 72.5H365c10.8 0 18.9 11.7 24 19.2-16.1 1.9-33 2.8-50.6 2.9v-22.1z"] }; +var faRavelry = { prefix: 'fab', iconName: 'ravelry', icon: [512, 512, [], "f2d9", "M407.4 61.5C331.6 22.1 257.8 31 182.9 66c-11.3 5.2-15.5 10.6-19.9 19-10.3 19.2-16.2 37.4-19.9 52.7-21.2 25.6-36.4 56.1-43.3 89.9-10.6 18-20.9 41.4-23.1 71.4 0 0-.7 7.6-.5 7.9-35.3-4.6-76.2-27-76.2-27 9.1 14.5 61.3 32.3 76.3 37.9 0 0 1.7 98 64.5 131.2-11.3-17.2-13.3-20.2-13.3-20.2S94.8 369 100.4 324.7c.7 0 1.5.2 2.2.2 23.9 87.4 103.2 151.4 196.9 151.4 6.2 0 12.1-.2 18-.7 14 1.5 27.6.5 40.1-3.9 6.9-2.2 13.8-6.4 20.2-10.8 70.2-39.1 100.9-82 123.1-147.7 5.4-16 8.1-35.5 9.8-52.2 8.7-82.3-30.6-161.6-103.3-199.5zM138.8 163.2s-1.2 12.3-.7 19.7c-3.4 2.5-10.1 8.1-18.2 16.7 5.2-12.8 11.3-25.1 18.9-36.4zm-31.2 121.9c4.4-17.2 13.3-39.1 29.8-55.1 0 0 1.7 48 15.8 90.1l-41.4-6.9c-2.2-9.2-3.5-18.5-4.2-28.1zm7.9 42.8c14.8 3.2 34 7.6 43.1 9.1 27.3 76.8 108.3 124.3 108.3 124.3 1 .5 1.7.7 2.7 1-73.1-11.6-132.7-64.7-154.1-134.4zM386 444.1c-14.5 4.7-36.2 8.4-64.7 3.7 0 0-91.1-23.1-127.5-107.8 38.2.7 52.4-.2 78-3.9 39.4-5.7 79-16.2 115-33 11.8-5.4 11.1-19.4 9.6-29.8-2-12.8-11.1-12.1-21.4-4.7 0 0-82 58.6-189.8 53.7-18.7-32-26.8-110.8-26.8-110.8 41.4-35.2 83.2-59.6 168.4-52.4.2-6.4 3-27.1-20.4-28.1 0 0-93.5-11.1-146 33.5 2.5-16.5 5.9-29.3 11.1-39.4 34.2-30.8 79-49.5 128.3-49.5 106.4 0 193 87.1 193 194.5-.2 76-43.8 142-106.8 174z"] }; +var faReact = { prefix: 'fab', iconName: 'react', icon: [512, 512, [], "f41b", "M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zm-130 189.1c4.6 8.8 9.3 17.5 14.3 26.1 5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5zm0-50.6c-6.3-14.9-11.6-29.5-16-43.6 14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26zm11.4 25.3c6.6-13.8 13.8-27.3 21.4-40.6 7.6-13.3 15.8-26.2 24.4-38.9 15-1.1 30.3-1.7 45.9-1.7 15.6 0 31 .6 45.9 1.7 8.5 12.6 16.6 25.5 24.3 38.7 7.7 13.2 14.9 26.7 21.7 40.4-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6-15.7 0-30.9-.5-45.6-1.4-8.7-12.7-16.9-25.7-24.6-39-7.7-13.3-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zM256 210.2c25.3 0 45.8 20.5 45.8 45.8 0 25.3-20.5 45.8-45.8 45.8-25.3 0-45.8-20.5-45.8-45.8 0-25.3 20.5-45.8 45.8-45.8"] }; +var faReadme = { prefix: 'fab', iconName: 'readme', icon: [576, 512, [], "f4d5", "M528.3 46.5H388.5c-48.1 0-89.9 33.3-100.4 80.3-10.6-47-52.3-80.3-100.4-80.3H48c-26.5 0-48 21.5-48 48v245.8c0 26.5 21.5 48 48 48h89.7c102.2 0 132.7 24.4 147.3 75 .7 2.8 5.2 2.8 6 0 14.7-50.6 45.2-75 147.3-75H528c26.5 0 48-21.5 48-48V94.6c0-26.4-21.3-47.9-47.7-48.1zM242 311.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5V289c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V251zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm259.3 121.7c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5V228c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.8c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V190z"] }; +var faRebel = { prefix: 'fab', iconName: 'rebel', icon: [512, 512, [], "f1d0", "M256.5 504C117.2 504 9 387.8 13.2 249.9 16 170.7 56.4 97.7 129.7 49.5c.3 0 1.9-.6 1.1.8-5.8 5.5-111.3 129.8-14.1 226.4 49.8 49.5 90 2.5 90 2.5 38.5-50.1-.6-125.9-.6-125.9-10-24.9-45.7-40.1-45.7-40.1l28.8-31.8c24.4 10.5 43.2 38.7 43.2 38.7.8-29.6-21.9-61.4-21.9-61.4L255.1 8l44.3 50.1c-20.5 28.8-21.9 62.6-21.9 62.6 13.8-23 43.5-39.3 43.5-39.3l28.5 31.8c-27.4 8.9-45.4 39.9-45.4 39.9-15.8 28.5-27.1 89.4.6 127.3 32.4 44.6 87.7-2.8 87.7-2.8 102.7-91.9-10.5-225-10.5-225-6.1-5.5.8-2.8.8-2.8 50.1 36.5 114.6 84.4 116.2 204.8C500.9 400.2 399 504 256.5 504z"] }; +var faRedRiver = { prefix: 'fab', iconName: 'red-river', icon: [448, 512, [], "f3e3", "M353.2 32H94.8C42.4 32 0 74.4 0 126.8v258.4C0 437.6 42.4 480 94.8 480h258.4c52.4 0 94.8-42.4 94.8-94.8V126.8c0-52.4-42.4-94.8-94.8-94.8zM144.9 200.9v56.3c0 27-21.9 48.9-48.9 48.9V151.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9h-56.3c-12.3-.6-24.6 11.6-24 24zm176.3 72h-56.3c-12.3-.6-24.6 11.6-24 24v56.3c0 27-21.9 48.9-48.9 48.9V247.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9z"] }; +var faReddit = { prefix: 'fab', iconName: 'reddit', icon: [512, 512, [], "f1a1", "M201.5 305.5c-13.8 0-24.9-11.1-24.9-24.6 0-13.8 11.1-24.9 24.9-24.9 13.6 0 24.6 11.1 24.6 24.9 0 13.6-11.1 24.6-24.6 24.6zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-132.3-41.2c-9.4 0-17.7 3.9-23.8 10-22.4-15.5-52.6-25.5-86.1-26.6l17.4-78.3 55.4 12.5c0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.3 24.9-24.9s-11.1-24.9-24.9-24.9c-9.7 0-18 5.8-22.1 13.8l-61.2-13.6c-3-.8-6.1 1.4-6.9 4.4l-19.1 86.4c-33.2 1.4-63.1 11.3-85.5 26.8-6.1-6.4-14.7-10.2-24.1-10.2-34.9 0-46.3 46.9-14.4 62.8-1.1 5-1.7 10.2-1.7 15.5 0 52.6 59.2 95.2 132 95.2 73.1 0 132.3-42.6 132.3-95.2 0-5.3-.6-10.8-1.9-15.8 31.3-16 19.8-62.5-14.9-62.5zM302.8 331c-18.2 18.2-76.1 17.9-93.6 0-2.2-2.2-6.1-2.2-8.3 0-2.5 2.5-2.5 6.4 0 8.6 22.8 22.8 87.3 22.8 110.2 0 2.5-2.2 2.5-6.1 0-8.6-2.2-2.2-6.1-2.2-8.3 0zm7.7-75c-13.6 0-24.6 11.1-24.6 24.9 0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.1 24.9-24.6 0-13.8-11-24.9-24.9-24.9z"] }; +var faRedditAlien = { prefix: 'fab', iconName: 'reddit-alien', icon: [512, 512, [], "f281", "M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2.1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z"] }; +var faRedditSquare = { prefix: 'fab', iconName: 'reddit-square', icon: [448, 512, [], "f1a2", "M283.2 345.5c2.7 2.7 2.7 6.8 0 9.2-24.5 24.5-93.8 24.6-118.4 0-2.7-2.4-2.7-6.5 0-9.2 2.4-2.4 6.5-2.4 8.9 0 18.7 19.2 81 19.6 100.5 0 2.4-2.3 6.6-2.3 9 0zm-91.3-53.8c0-14.9-11.9-26.8-26.5-26.8-14.9 0-26.8 11.9-26.8 26.8 0 14.6 11.9 26.5 26.8 26.5 14.6 0 26.5-11.9 26.5-26.5zm90.7-26.8c-14.6 0-26.5 11.9-26.5 26.8 0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-11.9 26.8-26.5 0-14.9-11.9-26.8-26.8-26.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-99.7 140.6c-10.1 0-19 4.2-25.6 10.7-24.1-16.7-56.5-27.4-92.5-28.6l18.7-84.2 59.5 13.4c0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-12.2 26.8-26.8 0-14.6-11.9-26.8-26.8-26.8-10.4 0-19.3 6.2-23.8 14.9l-65.7-14.6c-3.3-.9-6.5 1.5-7.4 4.8l-20.5 92.8c-35.7 1.5-67.8 12.2-91.9 28.9-6.5-6.8-15.8-11-25.9-11-37.5 0-49.8 50.4-15.5 67.5-1.2 5.4-1.8 11-1.8 16.7 0 56.5 63.7 102.3 141.9 102.3 78.5 0 142.2-45.8 142.2-102.3 0-5.7-.6-11.6-2.1-17 33.6-17.2 21.2-67.2-16.1-67.2z"] }; +var faRendact = { prefix: 'fab', iconName: 'rendact', icon: [496, 512, [], "f3e4", "M248 8C111 8 0 119 0 256s111 248 248 248c18.6 0 36.7-2.1 54.1-5.9-5.6-7.4-10.8-14.4-15.9-21.3-12.4 2.1-25.2 3.3-38.3 3.3C124.3 480 24 379.7 24 256S124.3 32 248 32s224 100.3 224 224c0 71-33 134.2-84.5 175.3-25.9 18.8-39.1 21.4-83.5-44.2-78.7-112.9-48-71.1-73.7-108.3 72.8 8.9 228.5-72 168.6-168.6C314-26.8 15 93.8 59.7 226.4c3.2 9.8 14.4 38.6 45.6 38.6 2 0 2.6-.6 2-1.7-4.4-8.7-20.1-9.8-20.1-37.4 0-40.5 40.5-89.6 100.3-120 66.1-32.3 131.9-30.2 158.2 5.4 27.2 38.3-20.9 119.2-120.4 136.9 7.5-9.4 57-75.2 62.8-84 22.7-34.6 23.6-49 14-59.2-15.5-16.9-29.5-10.3-50.7-11.7-10.8-.9-113.7 181.2-136.4 216.9-5.9 9-21.2 34.1-21.2 50.9 0 21.3 2.8 51.4 20.6 51.4 10.6 0 8-18.7 8-26.6 0-12.9 27.4-49.4 74.8-104.6 20.4 36.1 57.7 114.3 130.2 209.7 98-33.1 168.5-125.8 168.5-235C496 119 385 8 248 8z"] }; +var faRenren = { prefix: 'fab', iconName: 'renren', icon: [512, 512, [], "f18b", "M214 169.1c0 110.4-61 205.4-147.6 247.4C30 373.2 8 317.7 8 256.6 8 133.9 97.1 32.2 214 12.5v156.6zM255 504c-42.9 0-83.3-11-118.5-30.4C193.7 437.5 239.9 382.9 255 319c15.5 63.9 61.7 118.5 118.8 154.7C338.7 493 298.3 504 255 504zm190.6-87.5C359 374.5 298 279.6 298 169.1V12.5c116.9 19.7 206 121.4 206 244.1 0 61.1-22 116.6-58.4 159.9z"] }; +var faReplyd = { prefix: 'fab', iconName: 'replyd', icon: [448, 512, [], "f3e6", "M320 480H128C57.6 480 0 422.4 0 352V160C0 89.6 57.6 32 128 32h192c70.4 0 128 57.6 128 128v192c0 70.4-57.6 128-128 128zM193.4 273.2c-6.1-2-11.6-3.1-16.4-3.1-7.2 0-13.5 1.9-18.9 5.6-5.4 3.7-9.6 9-12.8 15.8h-1.1l-4.2-18.3h-28v138.9h36.1v-89.7c1.5-5.4 4.4-9.8 8.7-13.2 4.3-3.4 9.8-5.1 16.2-5.1 4.6 0 9.8 1 15.6 3.1l4.8-34zm115.2 103.4c-3.2 2.4-7.7 4.8-13.7 7.1-6 2.3-12.8 3.5-20.4 3.5-12.2 0-21.1-3-26.5-8.9-5.5-5.9-8.5-14.7-9-26.4h83.3c.9-4.8 1.6-9.4 2.1-13.9.5-4.4.7-8.6.7-12.5 0-10.7-1.6-19.7-4.7-26.9-3.2-7.2-7.3-13-12.5-17.2-5.2-4.3-11.1-7.3-17.8-9.2-6.7-1.8-13.5-2.8-20.6-2.8-21.1 0-37.5 6.1-49.2 18.3s-17.5 30.5-17.5 55c0 22.8 5.2 40.7 15.6 53.7 10.4 13.1 26.8 19.6 49.2 19.6 10.7 0 20.9-1.5 30.4-4.6 9.5-3.1 17.1-6.8 22.6-11.2l-12-23.6zm-21.8-70.3c3.8 5.4 5.3 13.1 4.6 23.1h-51.7c.9-9.4 3.7-17 8.2-22.6 4.5-5.6 11.5-8.5 21-8.5 8.2-.1 14.1 2.6 17.9 8zm79.9 2.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4s2 11.7 6.1 15.6zm0 100.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4 0 6.6 2 11.7 6.1 15.6z"] }; +var faResearchgate = { prefix: 'fab', iconName: 'researchgate', icon: [448, 512, [], "f4f8", "M0 32v448h448V32H0zm262.2 334.4c-6.6 3-33.2 6-50-14.2-9.2-10.6-25.3-33.3-42.2-63.6-8.9 0-14.7 0-21.4-.6v46.4c0 23.5 6 21.2 25.8 23.9v8.1c-6.9-.3-23.1-.8-35.6-.8-13.1 0-26.1.6-33.6.8v-8.1c15.5-2.9 22-1.3 22-23.9V225c0-22.6-6.4-21-22-23.9V193c25.8 1 53.1-.6 70.9-.6 31.7 0 55.9 14.4 55.9 45.6 0 21.1-16.7 42.2-39.2 47.5 13.6 24.2 30 45.6 42.2 58.9 7.2 7.8 17.2 14.7 27.2 14.7v7.3zm22.9-135c-23.3 0-32.2-15.7-32.2-32.2V167c0-12.2 8.8-30.4 34-30.4s30.4 17.9 30.4 17.9l-10.7 7.2s-5.5-12.5-19.7-12.5c-7.9 0-19.7 7.3-19.7 19.7v26.8c0 13.4 6.6 23.3 17.9 23.3 14.1 0 21.5-10.9 21.5-26.8h-17.9v-10.7h30.4c0 20.5 4.7 49.9-34 49.9zm-116.5 44.7c-9.4 0-13.6-.3-20-.8v-69.7c6.4-.6 15-.6 22.5-.6 23.3 0 37.2 12.2 37.2 34.5 0 21.9-15 36.6-39.7 36.6z"] }; +var faResolving = { prefix: 'fab', iconName: 'resolving', icon: [496, 512, [], "f3e7", "M281.2 278.2c46-13.3 49.6-23.5 44-43.4L314 195.5c-6.1-20.9-18.4-28.1-71.1-12.8L54.7 236.8l28.6 98.6 197.9-57.2zM248.5 8C131.4 8 33.2 88.7 7.2 197.5l221.9-63.9c34.8-10.2 54.2-11.7 79.3-8.2 36.3 6.1 52.7 25 61.4 55.2l10.7 37.8c8.2 28.1 1 50.6-23.5 73.6-19.4 17.4-31.2 24.5-61.4 33.2L203 351.8l220.4 27.1 9.7 34.2-48.1 13.3-286.8-37.3 23 80.2c36.8 22 80.3 34.7 126.3 34.7 137 0 248.5-111.4 248.5-248.3C497 119.4 385.5 8 248.5 8zM38.3 388.6L0 256.8c0 48.5 14.3 93.4 38.3 131.8z"] }; +var faRev = { prefix: 'fab', iconName: 'rev', icon: [410, 512, [], "f5b2", "M270.67 274.89c0 36.16-29.41 65.57-65.56 65.57s-65.57-29.41-65.57-65.57 29.41-65.56 65.57-65.56 65.56 29.4 65.56 65.56zm139.55-5.05h-.13c-1.49-61.55-30.1-116.35-74.32-152.98l-45.38 26.2c43.17 28.03 71.81 76.63 71.81 131.82 0 86.62-70.47 157.09-157.09 157.09S48.02 361.5 48.02 274.88c0-81.86 62.96-149.27 142.99-156.43v39.12l108.76-62.79L191.01 32v38.32C84.31 77.57 0 166.36 0 274.89c0 111.59 89.12 202.29 200.06 204.98v.13h210.16V269.84z"] }; +var faRocketchat = { prefix: 'fab', iconName: 'rocketchat', icon: [448, 512, [], "f3e8", "M448 256.2c0-87.2-99.6-153.3-219.8-153.3-18.8 0-37.3 1.6-55.3 4.8-11.1-10.5-24.2-20-38-27.4C61.2 44.2 0 79.4 0 79.4s56.9 47.1 47.6 88.3c-52.3 52.3-52.5 124.1 0 176.6C56.9 385.6 0 432.6 0 432.6s61.2 35.2 134.9-.8c13.8-7.5 26.9-16.9 38-27.4 18 3.2 36.5 4.8 55.3 4.8 120.3-.1 219.8-65.8 219.8-153zm-219.7 124c-23.7 0-46.3-2.8-67.3-7.8-21.3 25.8-68.1 61.7-113.6 50.1 14.8-16 36.7-43.1 32-87.6-27.3-21.4-43.6-48.7-43.6-78.5 0-68.4 86.2-123.9 192.5-123.9S420.8 188 420.8 256.4c0 68.3-86.2 123.8-192.5 123.8zm25.6-123.9c0 14.2-11.5 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.5-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm88.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm-177.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.2 0 25.6 11.6 25.6 25.8z"] }; +var faRockrms = { prefix: 'fab', iconName: 'rockrms', icon: [496, 512, [], "f3e9", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm157.4 419.5h-90l-112-131.3c-17.9-20.4-3.9-56.1 26.6-56.1h75.3l-84.6-99.3-84.3 98.9h-90L193.5 67.2c14.4-18.4 41.3-17.3 54.5 0l157.7 185.1c19 22.8 2 57.2-27.6 56.1-.6 0-74.2.2-74.2.2l101.5 118.9z"] }; +var faSafari = { prefix: 'fab', iconName: 'safari', icon: [512, 512, [], "f267", "M236.9 256.8c0-9.1 6.6-17.7 16.3-17.7 8.9 0 17.4 6.4 17.4 16.1 0 9.1-6.4 17.7-16.1 17.7-9 0-17.6-6.7-17.6-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-26.6 0c0-122.3-99.1-221.4-221.4-221.4S34.6 133.7 34.6 256 133.7 477.4 256 477.4 477.4 378.3 477.4 256zm-72.5 96.6c0 3.6 13 10.2 16.3 12.2-27.4 41.5-69.8 71.4-117.9 83.3l-4.4-18.5c-.3-2.5-1.9-2.8-4.2-2.8-1.9 0-3 2.8-2.8 4.2l4.4 18.8c-13.3 2.8-26.8 4.2-40.4 4.2-36.3 0-72-10.2-103-29.1 1.7-2.8 12.2-18 12.2-20.2 0-1.9-1.7-3.6-3.6-3.6-3.9 0-12.2 16.6-14.7 19.9-41.8-27.7-72-70.6-83.6-119.6l19.1-4.2c2.2-.6 2.8-2.2 2.8-4.2 0-1.9-2.8-3-4.4-2.8L62 294.5c-2.5-12.7-3.9-25.5-3.9-38.5 0-37.1 10.5-73.6 30.2-104.9 2.8 1.7 16.1 10.8 18.3 10.8 1.9 0 3.6-1.4 3.6-3.3 0-3.9-14.7-11.3-18-13.6 28.2-41.2 71.1-70.9 119.8-81.9l4.2 18.5c.6 2.2 2.2 2.8 4.2 2.8s3-2.8 2.8-4.4L219 61.7c12.2-2.2 24.6-3.6 37.1-3.6 37.1 0 73.3 10.5 104.9 30.2-1.9 2.8-10.8 15.8-10.8 18 0 1.9 1.4 3.6 3.3 3.6 3.9 0 11.3-14.4 13.3-17.7 41 27.7 70.3 70 81.7 118.2l-15.5 3.3c-2.5.6-2.8 2.2-2.8 4.4 0 1.9 2.8 3 4.2 2.8l15.8-3.6c2.5 12.7 3.9 25.7 3.9 38.7 0 36.3-10 72-28.8 102.7-2.8-1.4-14.4-9.7-16.6-9.7-2.1 0-3.8 1.7-3.8 3.6zm-33.2-242.2c-13 12.2-134.2 123.7-137.6 129.5l-96.6 160.5c12.7-11.9 134.2-124 137.3-129.3l96.9-160.7z"] }; +var faSass = { prefix: 'fab', iconName: 'sass', icon: [640, 512, [], "f41e", "M551.1 291.9c-22.4.1-41.8 5.5-58 13.5-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-3.8 11.1-5.3 19.1-2.3 11.7-25.8 53.5-39.1 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-2.7 11.4-5.3 19.1-2.6 7.7-33.9 77.3-42.1 95.4-4.2 9.2-7.8 16.6-10.4 21.6s-.2.3-.4.9c-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4.3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2-.8 0-1.4 2-1.4 2s10.1-42.4-19.4-42.4c-18.4 0-44 20.2-56.6 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.8-38.2-101.9-65.2-99.1-116.5 1-18.7 7.5-67.8 127.1-127.4 98-48.8 176.4-35.4 189.9-5.6 19.4 42.5-41.9 121.6-143.7 133-38.8 4.3-59.2-10.7-64.3-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.8 28.9 18.7 6.1 64.2 9.5 119.2-11.8C367 196.5 415.1 130.2 401 74.7 386.6 18.3 293.1-.2 204.6 31.2 151.9 49.9 94.9 79.3 53.9 117.6 5.2 163.2-2.6 202.9.6 219.5c11.4 58.9 92.6 97.3 125.1 125.7-1.6.9-3.1 1.7-4.5 2.5-16.3 8.1-78.2 40.5-93.7 74.7-17.5 38.8 2.9 66.6 16.3 70.4 41.8 11.6 84.6-9.3 107.6-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.3-4.9 16.4-9.4 23.5-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.5 5 15.4 5 13.8 0 20-11.4 26.9-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.4 0 18.8-12.1 23-18.3v.1s.2-.4.7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.6-46 16.2-31.8 31.7-71.5 31.7-71.5s1.4 9.7 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2s0 .1.1.2c-3 4-6.4 8.3-9.9 12.5-12.8 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.7 2.5 11.5-.8 19.6-3.6 23.5-5.4 6.2-2.2 13.4-5.7 20.2-10.6 12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5 19.8-28.9 35.1-60.6 35.1-60.6s1.4 9.7 6.2 25.8c2.4 8.1 7.1 17 11.4 25.7-18.6 15.1-30.1 32.6-34.1 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5 6.5-2.2 14.3-5.7 21.6-11.1 12.5-9.2 24.6-22.1 23.8-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.1-10.2 62.1-7.2 55.7 6.5 66.6 41.3 64.5 55.8-2.1 14.6-13.8 22.6-17.7 25-3.9 2.4-5.1 3.3-4.8 5.1.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.2-11.8 30.3-38.7 1.6-34-31.1-71.4-89-71.1zM121.8 436.6c-18.4 20.1-44.2 27.7-55.3 21.3C54.6 451 59.3 421.4 82 400c13.8-13 31.6-25 43.4-32.4 2.7-1.6 6.6-4 11.4-6.9.8-.5 1.2-.7 1.2-.7.9-.6 1.9-1.1 2.9-1.7 8.3 30.4.3 57.2-19.1 78.3zm134.4-91.4c-6.4 15.7-19.9 55.7-28.1 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.1-11.3 21.2-14.9 23.8-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.9-13.9 0 .5.1 1 .1 1.6-.1 17.9-17.3 30-25.1 34.8zm85.6-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.6-15.3 19-24.5 1.2 3.8 1.9 7.4 1.9 10.8-.1 22.5-16.2 30.9-25.9 34.4z"] }; +var faSchlix = { prefix: 'fab', iconName: 'schlix', icon: [448, 512, [], "f3ea", "M350.5 157.7l-54.2-46.1 73.4-39 78.3 44.2-97.5 40.9zM192 122.1l45.7-28.2 34.7 34.6-55.4 29-25-35.4zm-65.1 6.6l31.9-22.1L176 135l-36.7 22.5-12.4-28.8zm-23.3 88.2l-8.8-34.8 29.6-18.3 13.1 35.3-33.9 17.8zm-21.2-83.7l23.9-18.1 8.9 24-26.7 18.3-6.1-24.2zM59 206.5l-3.6-28.4 22.3-15.5 6.1 28.7L59 206.5zm-30.6 16.6l20.8-12.8 3.3 33.4-22.9 12-1.2-32.6zM1.4 268l19.2-10.2.4 38.2-21 8.8L1.4 268zm59.1 59.3l-28.3 8.3-1.6-46.8 25.1-10.7 4.8 49.2zM99 263.2l-31.1 13-5.2-40.8L90.1 221l8.9 42.2zM123.2 377l-41.6 5.9-8.1-63.5 35.2-10.8 14.5 68.4zm28.5-139.9l21.2 57.1-46.2 13.6-13.7-54.1 38.7-16.6zm85.7 230.5l-70.9-3.3-24.3-95.8 55.2-8.6 40 107.7zm-84.9-279.7l42.2-22.4 28 45.9-50.8 21.3-19.4-44.8zm41 94.9l61.3-18.7 52.8 86.6-79.8 11.3-34.3-79.2zm51.4-85.6l67.3-28.8 65.5 65.4-88.6 26.2-44.2-62.8z"] }; +var faScribd = { prefix: 'fab', iconName: 'scribd', icon: [384, 512, [], "f28a", "M42.3 252.7c-16.1-19-24.7-45.9-24.8-79.9 0-100.4 75.2-153.1 167.2-153.1 98.6-1.6 156.8 49 184.3 70.6l-50.5 72.1-37.3-24.6 26.9-38.6c-36.5-24-79.4-36.5-123-35.8-50.7-.8-111.7 27.2-111.7 76.2 0 18.7 11.2 20.7 28.6 15.6 23.3-5.3 41.9.6 55.8 14 26.4 24.3 23.2 67.6-.7 91.9-29.2 29.5-85.2 27.3-114.8-8.4zm317.7 5.9c-15.5-18.8-38.9-29.4-63.2-28.6-38.1-2-71.1 28-70.5 67.2-.7 16.8 6 33 18.4 44.3 14.1 13.9 33 19.7 56.3 14.4 17.4-5.1 28.6-3.1 28.6 15.6 0 4.3-.5 8.5-1.4 12.7-16.7 40.9-59.5 64.4-121.4 64.4-51.9.2-102.4-16.4-144.1-47.3l33.7-39.4-35.6-27.4L0 406.3l15.4 13.8c52.5 46.8 120.4 72.5 190.7 72.2 51.4 0 94.4-10.5 133.6-44.1 57.1-51.4 54.2-149.2 20.3-189.6z"] }; +var faSearchengin = { prefix: 'fab', iconName: 'searchengin', icon: [460, 512, [], "f3eb", "M220.6 130.3l-67.2 28.2V43.2L98.7 233.5l54.7-24.2v130.3l67.2-209.3zm-83.2-96.7l-1.3 4.7-15.2 52.9C80.6 106.7 52 145.8 52 191.5c0 52.3 34.3 95.9 83.4 105.5v53.6C57.5 340.1 0 272.4 0 191.6c0-80.5 59.8-147.2 137.4-158zm311.4 447.2c-11.2 11.2-23.1 12.3-28.6 10.5-5.4-1.8-27.1-19.9-60.4-44.4-33.3-24.6-33.6-35.7-43-56.7-9.4-20.9-30.4-42.6-57.5-52.4l-9.7-14.7c-24.7 16.9-53 26.9-81.3 28.7l2.1-6.6 15.9-49.5c46.5-11.9 80.9-54 80.9-104.2 0-54.5-38.4-102.1-96-107.1V32.3C254.4 37.4 320 106.8 320 191.6c0 33.6-11.2 64.7-29 90.4l14.6 9.6c9.8 27.1 31.5 48 52.4 57.4s32.2 9.7 56.8 43c24.6 33.2 42.7 54.9 44.5 60.3s.7 17.3-10.5 28.5zm-9.9-17.9c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8z"] }; +var faSellcast = { prefix: 'fab', iconName: 'sellcast', icon: [448, 512, [], "f2da", "M353.4 32H94.7C42.6 32 0 74.6 0 126.6v258.7C0 437.4 42.6 480 94.7 480h258.7c52.1 0 94.7-42.6 94.7-94.6V126.6c0-52-42.6-94.6-94.7-94.6zm-50 316.4c-27.9 48.2-89.9 64.9-138.2 37.2-22.9 39.8-54.9 8.6-42.3-13.2l15.7-27.2c5.9-10.3 19.2-13.9 29.5-7.9 18.6 10.8-.1-.1 18.5 10.7 27.6 15.9 63.4 6.3 79.4-21.3 15.9-27.6 6.3-63.4-21.3-79.4-17.8-10.2-.6-.4-18.6-10.6-24.6-14.2-3.4-51.9 21.6-37.5 18.6 10.8-.1-.1 18.5 10.7 48.4 28 65.1 90.3 37.2 138.5zm21.8-208.8c-17 29.5-16.3 28.8-19 31.5-6.5 6.5-16.3 8.7-26.5 3.6-18.6-10.8.1.1-18.5-10.7-27.6-15.9-63.4-6.3-79.4 21.3s-6.3 63.4 21.3 79.4c0 0 18.5 10.6 18.6 10.6 24.6 14.2 3.4 51.9-21.6 37.5-18.6-10.8.1.1-18.5-10.7-48.2-27.8-64.9-90.1-37.1-138.4 27.9-48.2 89.9-64.9 138.2-37.2l4.8-8.4c14.3-24.9 52-3.3 37.7 21.5z"] }; +var faSellsy = { prefix: 'fab', iconName: 'sellsy', icon: [640, 512, [], "f213", "M539.71 237.308c3.064-12.257 4.29-24.821 4.29-37.384C544 107.382 468.618 32 376.076 32c-77.22 0-144.634 53.012-163.02 127.781-15.322-13.176-34.934-20.53-55.157-20.53-46.271 0-83.962 37.69-83.962 83.961 0 7.354.92 15.015 3.065 22.369-42.9 20.225-70.785 63.738-70.785 111.234C6.216 424.843 61.68 480 129.401 480h381.198c67.72 0 123.184-55.157 123.184-123.184.001-56.384-38.916-106.025-94.073-119.508zM199.88 401.554c0 8.274-7.048 15.321-15.321 15.321H153.61c-8.274 0-15.321-7.048-15.321-15.321V290.626c0-8.273 7.048-15.321 15.321-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v110.928zm89.477 0c0 8.274-7.048 15.321-15.322 15.321h-30.949c-8.274 0-15.321-7.048-15.321-15.321V270.096c0-8.274 7.048-15.321 15.321-15.321h30.949c8.274 0 15.322 7.048 15.322 15.321v131.458zm89.477 0c0 8.274-7.047 15.321-15.321 15.321h-30.949c-8.274 0-15.322-7.048-15.322-15.321V238.84c0-8.274 7.048-15.321 15.322-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v162.714zm87.027 0c0 8.274-7.048 15.321-15.322 15.321h-28.497c-8.274 0-15.321-7.048-15.321-15.321V176.941c0-8.579 7.047-15.628 15.321-15.628h28.497c8.274 0 15.322 7.048 15.322 15.628v224.613z"] }; +var faServicestack = { prefix: 'fab', iconName: 'servicestack', icon: [496, 512, [], "f3ec", "M88 216c81.7 10.2 273.7 102.3 304 232H0c99.5-8.1 184.5-137 88-232zm32-152c32.3 35.6 47.7 83.9 46.4 133.6C249.3 231.3 373.7 321.3 400 448h96C455.3 231.9 222.8 79.5 120 64z"] }; +var faShirtsinbulk = { prefix: 'fab', iconName: 'shirtsinbulk', icon: [448, 512, [], "f214", "M395.208 221.583H406v33.542h-10.792v-33.542zm0-9.625H406v-33.542h-10.792v33.542zm0 86.333H406V264.75h-10.792v33.541zM358.75 135.25h-33.542v10.5h33.542v-10.5zm36.458 206.208H406v-33.542h-10.792v33.542zM311.5 135.25h-33.542v10.5H311.5v-10.5zm-47.25 0H231v10.5h33.25v-10.5zm-47.25 0h-33.25v10.5H217v-10.5zm178.208 33.542H406V135.25h-33.542v10.5h22.75v23.042zm-255.792 259l30.625 13.417 4.375-9.917-30.625-13.417-4.375 9.917zM179.083 445l30.334 13.708 4.374-9.916-30.333-13.417-4.375 9.625zm216.125-60.375H406v-33.542h-10.792v33.542zm-334.833 8.167L91 406.208l4.375-9.624-30.625-13.709-4.375 9.917zm39.666 17.499l30.625 13.417 4.375-9.917-30.625-13.416-4.375 9.916zm132.417 38.501l4.375 9.916L267.459 445l-4.375-9.625-30.626 13.417zm118.417-52.208l4.375 9.624 30.624-13.416-4.374-9.917-30.625 13.709zM311.5 413.791l4.375 9.917 30.625-13.417-4.374-9.916-30.626 13.416zm-39.667 17.501l4.375 9.917 30.625-13.417-4.375-9.917-30.625 13.417zM311.5 46.583h-33.542v10.5H311.5v-10.5zm94.209 0h-33.251v10.5h33.251v-10.5zm-188.709 0h-33.25v10.5H217v-10.5zm141.75 0h-33.542v10.5h33.542v-10.5zm-94.5 0H231v10.5h33.25v-10.5zM448 3.708v406l-226.334 98.584L0 409.708v-406h448zm-29.166 116.958H29.166V390.75l192.792 85.75 196.875-85.75V120.666zm0-87.791H29.166V91.5h389.667V32.875zM75.542 46.583H42.291v10.5h33.251v-10.5zm94.5 0H136.5v10.5h33.542v-10.5zm-47.251 0H89.25v10.5h33.542v-10.5zm7.584 236.542c0-50.167 41.125-91.292 91.292-91.292 50.458 0 91.292 41.125 91.292 91.292 0 50.458-40.833 91.292-91.292 91.292-50.167-.001-91.292-40.834-91.292-91.292zm120.75 18.084c0 13.125-23.917 14.291-32.666 14.291-12.25 0-29.75-2.625-35.875-14.875h-.875L172.666 319c14.876 9.333 29.167 12.25 47.25 12.25 19.542 0 51.042-5.833 51.042-31.209 0-48.125-78.458-16.333-78.458-37.916 0-13.125 20.708-14.875 29.75-14.875 10.791 0 29.166 3.208 35.583 13.124h.875l8.751-16.916c-15.167-6.125-27.417-11.959-44.334-11.959-20.125 0-49.583 6.417-49.583 31.792 0 44.334 77.583 11.959 77.583 37.918zM122.791 135.25H89.25v10.5h33.542v-10.5zm-69.999 10.5h22.75v-10.5H42v33.542h10.792V145.75zm0 32.666H42v33.542h10.792v-33.542zm117.25-43.166H136.5v10.5h33.542v-10.5zm-117.25 86.333H42v33.542h10.792v-33.542zm0 86.334H42v33.542h10.792v-33.542zm0-43.167H42v33.542h10.792V264.75zm0 86.333H42v33.542h10.792v-33.542z"] }; +var faShopware = { prefix: 'fab', iconName: 'shopware', icon: [495, 512, [], "f5b5", "M395.5 455.27c-42.95 31.79-93.95 48.59-147.48 48.59-137.21 0-248.02-111-248.02-248 0-137.19 111.04-248 248.02-248 61.3 0 120.14 22.55 165.68 63.5 2.62 2.36.58 6.64-2.86 6.18-17.67-2.43-36.75-3.66-56.71-3.66-129.36 0-222.4 53.47-222.4 155.35 0 109.04 92.13 145.88 176.83 178.73 33.64 13.04 65.4 25.36 86.96 41.59 1.9 1.44 1.89 4.31-.02 5.72zm99.46-222.32c-.08-.94-.55-1.83-1.27-2.44-51.76-42.96-93.62-60.48-144.48-60.48-84.13 0-80.25 52.17-80.25 53.63 0 42.6 52.06 62.01 112.34 84.49 31.07 11.59 63.19 23.57 92.68 39.93 1.88 1.05 4.26.19 5.05-1.82 18.89-48.39 17.94-90.23 15.93-113.31z"] }; +var faSimplybuilt = { prefix: 'fab', iconName: 'simplybuilt', icon: [512, 512, [], "f215", "M481.2 64h-106c-14.5 0-26.6 11.8-26.6 26.3v39.6H163.3V90.3c0-14.5-12-26.3-26.6-26.3h-106C16.1 64 4.3 75.8 4.3 90.3v331.4c0 14.5 11.8 26.3 26.6 26.3h450.4c14.8 0 26.6-11.8 26.6-26.3V90.3c-.2-14.5-12-26.3-26.7-26.3zM149.8 355.8c-36.6 0-66.4-29.7-66.4-66.4 0-36.9 29.7-66.6 66.4-66.6 36.9 0 66.6 29.7 66.6 66.6 0 36.7-29.7 66.4-66.6 66.4zm212.4 0c-36.9 0-66.6-29.7-66.6-66.6 0-36.6 29.7-66.4 66.6-66.4 36.6 0 66.4 29.7 66.4 66.4 0 36.9-29.8 66.6-66.4 66.6z"] }; +var faSistrix = { prefix: 'fab', iconName: 'sistrix', icon: [448, 512, [], "f3ee", "M448 449L301.2 300.2c20-27.9 31.9-62.2 31.9-99.2 0-93.1-74.7-168.9-166.5-168.9C74.7 32 0 107.8 0 200.9s74.7 168.9 166.5 168.9c39.8 0 76.3-14.2 105-37.9l146 148.1 30.5-31zM166.5 330.8c-70.6 0-128.1-58.3-128.1-129.9S95.9 71 166.5 71s128.1 58.3 128.1 129.9-57.4 129.9-128.1 129.9z"] }; +var faSith = { prefix: 'fab', iconName: 'sith', icon: [448, 512, [], "f512", "M0 32l69.71 118.75-58.86-11.52 69.84 91.03a146.741 146.741 0 0 0 0 51.45l-69.84 91.03 58.86-11.52L0 480l118.75-69.71-11.52 58.86 91.03-69.84c17.02 3.04 34.47 3.04 51.48 0l91.03 69.84-11.52-58.86L448 480l-69.71-118.78 58.86 11.52-69.84-91.03c3.03-17.01 3.04-34.44 0-51.45l69.84-91.03-58.86 11.52L448 32l-118.75 69.71 11.52-58.9-91.06 69.87c-8.5-1.52-17.1-2.29-25.71-2.29s-17.21.78-25.71 2.29l-91.06-69.87 11.52 58.9L0 32zm224 99.78c31.8 0 63.6 12.12 87.85 36.37 48.5 48.5 48.49 127.21 0 175.7s-127.2 48.46-175.7-.03c-48.5-48.5-48.49-127.21 0-175.7 24.24-24.25 56.05-36.34 87.85-36.34zm0 36.66c-22.42 0-44.83 8.52-61.92 25.61-34.18 34.18-34.19 89.68 0 123.87s89.65 34.18 123.84 0c34.18-34.18 34.19-89.68 0-123.87-17.09-17.09-39.5-25.61-61.92-25.61z"] }; +var faSkyatlas = { prefix: 'fab', iconName: 'skyatlas', icon: [640, 512, [], "f216", "M640 329.3c0 65.9-52.5 114.4-117.5 114.4-165.9 0-196.6-249.7-359.7-249.7-146.9 0-147.1 212.2 5.6 212.2 42.5 0 90.9-17.8 125.3-42.5 5.6-4.1 16.9-16.3 22.8-16.3s10.9 5 10.9 10.9c0 7.8-13.1 19.1-18.7 24.1-40.9 35.6-100.3 61.2-154.7 61.2-83.4.1-154-59-154-144.9s67.5-149.1 152.8-149.1c185.3 0 222.5 245.9 361.9 245.9 99.9 0 94.8-139.7 3.4-139.7-17.5 0-35 11.6-46.9 11.6-8.4 0-15.9-7.2-15.9-15.6 0-11.6 5.3-23.7 5.3-36.3 0-66.6-50.9-114.7-116.9-114.7-53.1 0-80 36.9-88.8 36.9-6.2 0-11.2-5-11.2-11.2 0-5.6 4.1-10.3 7.8-14.4 25.3-28.8 64.7-43.7 102.8-43.7 79.4 0 139.1 58.4 139.1 137.8 0 6.9-.3 13.7-1.2 20.6 11.9-3.1 24.1-4.7 35.9-4.7 60.7 0 111.9 45.3 111.9 107.2z"] }; +var faSkype = { prefix: 'fab', iconName: 'skype', icon: [448, 512, [], "f17e", "M424.7 299.8c2.9-14 4.7-28.9 4.7-43.8 0-113.5-91.9-205.3-205.3-205.3-14.9 0-29.7 1.7-43.8 4.7C161.3 40.7 137.7 32 112 32 50.2 32 0 82.2 0 144c0 25.7 8.7 49.3 23.3 68.2-2.9 14-4.7 28.9-4.7 43.8 0 113.5 91.9 205.3 205.3 205.3 14.9 0 29.7-1.7 43.8-4.7 19 14.6 42.6 23.3 68.2 23.3 61.8 0 112-50.2 112-112 .1-25.6-8.6-49.2-23.2-68.1zm-194.6 91.5c-65.6 0-120.5-29.2-120.5-65 0-16 9-30.6 29.5-30.6 31.2 0 34.1 44.9 88.1 44.9 25.7 0 42.3-11.4 42.3-26.3 0-18.7-16-21.6-42-28-62.5-15.4-117.8-22-117.8-87.2 0-59.2 58.6-81.1 109.1-81.1 55.1 0 110.8 21.9 110.8 55.4 0 16.9-11.4 31.8-30.3 31.8-28.3 0-29.2-33.5-75-33.5-25.7 0-42 7-42 22.5 0 19.8 20.8 21.8 69.1 33 41.4 9.3 90.7 26.8 90.7 77.6 0 59.1-57.1 86.5-112 86.5z"] }; +var faSlack = { prefix: 'fab', iconName: 'slack', icon: [448, 512, [], "f198", "M244.2 217.5l19.3 57.7-59.8 20-19.3-57.7 59.8-20zm41.4 243.7C131.6 507.4 65 471.6 18.8 317.6S8.4 97 162.4 50.8C316.4 4.6 383 40.4 429.2 194.4c46.2 154 10.4 220.6-143.6 266.8zM366.2 265c-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-19.3-57.7 29-9.7c12.2-3.9 18.6-17.2 14.7-29.4-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-59.8 20.1-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l19.3 57.7-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 59.8-20.1 10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 29-9.7c12.2-4.2 18.6-17.5 14.7-29.6z"] }; +var faSlackHash = { prefix: 'fab', iconName: 'slack-hash', icon: [448, 512, [], "f3ef", "M446.2 270.4c-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-30.3-90 45.4-15.1c19.1-6.2 29.1-26.8 23-45.9-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-93.4 31.2-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-45.3 15c-19.1 6.2-29.1 26.8-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l30.3 90L78 354.8c-19 6.2-29.1 26.9-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 93.6-31.3 15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 45.4-15.1c19-6 29.1-26.7 22.9-45.7zm-254.1 47.2l-30.3-90.2 93.5-31.3 30.3 90.2-93.5 31.3z"] }; +var faSlideshare = { prefix: 'fab', iconName: 'slideshare', icon: [512, 512, [], "f1e7", "M249.429 211.436c0 31.716-27.715 57.717-61.717 57.717-34.001 0-61.716-26.001-61.716-57.717 0-32.001 27.715-57.716 61.716-57.716 34.001 0 61.717 25.715 61.717 57.716zm254.294 50.002c-18.286 22.573-53.144 50.288-106.289 72.003C453.722 525.163 260 555.735 263.143 457.446c0 1.714-.286-52.859-.286-93.432-4.285-.858-8.571-2-13.714-3.143 0 40.858-.286 98.289-.286 96.575C252 555.735 58.278 525.163 114.566 333.441c-53.145-21.715-88.003-49.43-106.29-72.003-9.143-13.714.858-28.287 16.001-17.715 2 1.428 4.285 2.857 6.285 4.285V49.716C30.563 22.287 51.135 0 76.565 0h359.157c25.429 0 46.002 22.287 46.002 49.716v198.293l6-4.285c15.143-10.573 25.143 4 15.999 17.714zm-46.572-189.15c0-32.858-10.572-45.716-40.859-45.716H98.566c-31.716 0-40.573 10.858-40.573 45.716v192.293c67.717 35.43 125.72 29.144 157.435 28.001 13.429-.286 22.001 2.286 27.144 7.715 1.689 1.687 10.023 9.446 20.287 17.143 1.143-15.715 10.001-25.715 33.716-24.858 32.287 1.428 91.718 7.715 160.577-29.716V72.288zM331.146 153.72c-34.002 0-61.716 25.715-61.716 57.716 0 31.716 27.715 57.717 61.716 57.717 34.287 0 61.716-26.001 61.716-57.717 0-32.001-27.429-57.716-61.716-57.716z"] }; +var faSnapchat = { prefix: 'fab', iconName: 'snapchat', icon: [496, 512, [], "f2ab", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm169.5 338.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C183.1 100 230.7 96 244.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z"] }; +var faSnapchatGhost = { prefix: 'fab', iconName: 'snapchat-ghost', icon: [512, 512, [], "f2ac", "M510.846 392.673c-5.211 12.157-27.239 21.089-67.36 27.318-2.064 2.786-3.775 14.686-6.507 23.956-1.625 5.566-5.623 8.869-12.128 8.869l-.297-.005c-9.395 0-19.203-4.323-38.852-4.323-26.521 0-35.662 6.043-56.254 20.588-21.832 15.438-42.771 28.764-74.027 27.399-31.646 2.334-58.025-16.908-72.871-27.404-20.714-14.643-29.828-20.582-56.241-20.582-18.864 0-30.736 4.72-38.852 4.72-8.073 0-11.213-4.922-12.422-9.04-2.703-9.189-4.404-21.263-6.523-24.13-20.679-3.209-67.31-11.344-68.498-32.15a10.627 10.627 0 0 1 8.877-11.069c69.583-11.455 100.924-82.901 102.227-85.934.074-.176.155-.344.237-.515 3.713-7.537 4.544-13.849 2.463-18.753-5.05-11.896-26.872-16.164-36.053-19.796-23.715-9.366-27.015-20.128-25.612-27.504 2.437-12.836 21.725-20.735 33.002-15.453 8.919 4.181 16.843 6.297 23.547 6.297 5.022 0 8.212-1.204 9.96-2.171-2.043-35.936-7.101-87.29 5.687-115.969C158.122 21.304 229.705 15.42 250.826 15.42c.944 0 9.141-.089 10.11-.089 52.148 0 102.254 26.78 126.723 81.643 12.777 28.65 7.749 79.792 5.695 116.009 1.582.872 4.357 1.942 8.599 2.139 6.397-.286 13.815-2.389 22.069-6.257 6.085-2.846 14.406-2.461 20.48.058l.029.01c9.476 3.385 15.439 10.215 15.589 17.87.184 9.747-8.522 18.165-25.878 25.018-2.118.835-4.694 1.655-7.434 2.525-9.797 3.106-24.6 7.805-28.616 17.271-2.079 4.904-1.256 11.211 2.46 18.748.087.168.166.342.239.515 1.301 3.03 32.615 74.46 102.23 85.934 6.427 1.058 11.163 7.877 7.725 15.859z"] }; +var faSnapchatSquare = { prefix: 'fab', iconName: 'snapchat-square', icon: [448, 512, [], "f2ad", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6.5 314.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C159.1 100 206.7 96 220.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z"] }; +var faSoundcloud = { prefix: 'fab', iconName: 'soundcloud', icon: [640, 512, [], "f1be", "M111.4 256.3l5.8 65-5.8 68.3c-.3 2.5-2.2 4.4-4.4 4.4s-4.2-1.9-4.2-4.4l-5.6-68.3 5.6-65c0-2.2 1.9-4.2 4.2-4.2 2.2 0 4.1 2 4.4 4.2zm21.4-45.6c-2.8 0-4.7 2.2-5 5l-5 105.6 5 68.3c.3 2.8 2.2 5 5 5 2.5 0 4.7-2.2 4.7-5l5.8-68.3-5.8-105.6c0-2.8-2.2-5-4.7-5zm25.5-24.1c-3.1 0-5.3 2.2-5.6 5.3l-4.4 130 4.4 67.8c.3 3.1 2.5 5.3 5.6 5.3 2.8 0 5.3-2.2 5.3-5.3l5.3-67.8-5.3-130c0-3.1-2.5-5.3-5.3-5.3zM7.2 283.2c-1.4 0-2.2 1.1-2.5 2.5L0 321.3l4.7 35c.3 1.4 1.1 2.5 2.5 2.5s2.2-1.1 2.5-2.5l5.6-35-5.6-35.6c-.3-1.4-1.1-2.5-2.5-2.5zm23.6-21.9c-1.4 0-2.5 1.1-2.5 2.5l-6.4 57.5 6.4 56.1c0 1.7 1.1 2.8 2.5 2.8s2.5-1.1 2.8-2.5l7.2-56.4-7.2-57.5c-.3-1.4-1.4-2.5-2.8-2.5zm25.3-11.4c-1.7 0-3.1 1.4-3.3 3.3L47 321.3l5.8 65.8c.3 1.7 1.7 3.1 3.3 3.1 1.7 0 3.1-1.4 3.1-3.1l6.9-65.8-6.9-68.1c0-1.9-1.4-3.3-3.1-3.3zm25.3-2.2c-1.9 0-3.6 1.4-3.6 3.6l-5.8 70 5.8 67.8c0 2.2 1.7 3.6 3.6 3.6s3.6-1.4 3.9-3.6l6.4-67.8-6.4-70c-.3-2.2-2-3.6-3.9-3.6zm241.4-110.9c-1.1-.8-2.8-1.4-4.2-1.4-2.2 0-4.2.8-5.6 1.9-1.9 1.7-3.1 4.2-3.3 6.7v.8l-3.3 176.7 1.7 32.5 1.7 31.7c.3 4.7 4.2 8.6 8.9 8.6s8.6-3.9 8.6-8.6l3.9-64.2-3.9-177.5c-.4-3-2-5.8-4.5-7.2zm-26.7 15.3c-1.4-.8-2.8-1.4-4.4-1.4s-3.1.6-4.4 1.4c-2.2 1.4-3.6 3.9-3.6 6.7l-.3 1.7-2.8 160.8s0 .3 3.1 65.6v.3c0 1.7.6 3.3 1.7 4.7 1.7 1.9 3.9 3.1 6.4 3.1 2.2 0 4.2-1.1 5.6-2.5 1.7-1.4 2.5-3.3 2.5-5.6l.3-6.7 3.1-58.6-3.3-162.8c-.3-2.8-1.7-5.3-3.9-6.7zm-111.4 22.5c-3.1 0-5.8 2.8-5.8 6.1l-4.4 140.6 4.4 67.2c.3 3.3 2.8 5.8 5.8 5.8 3.3 0 5.8-2.5 6.1-5.8l5-67.2-5-140.6c-.2-3.3-2.7-6.1-6.1-6.1zm376.7 62.8c-10.8 0-21.1 2.2-30.6 6.1-6.4-70.8-65.8-126.4-138.3-126.4-17.8 0-35 3.3-50.3 9.4-6.1 2.2-7.8 4.4-7.8 9.2v249.7c0 5 3.9 8.6 8.6 9.2h218.3c43.3 0 78.6-35 78.6-78.3.1-43.6-35.2-78.9-78.5-78.9zm-296.7-60.3c-4.2 0-7.5 3.3-7.8 7.8l-3.3 136.7 3.3 65.6c.3 4.2 3.6 7.5 7.8 7.5 4.2 0 7.5-3.3 7.5-7.5l3.9-65.6-3.9-136.7c-.3-4.5-3.3-7.8-7.5-7.8zm-53.6-7.8c-3.3 0-6.4 3.1-6.4 6.7l-3.9 145.3 3.9 66.9c.3 3.6 3.1 6.4 6.4 6.4 3.6 0 6.4-2.8 6.7-6.4l4.4-66.9-4.4-145.3c-.3-3.6-3.1-6.7-6.7-6.7zm26.7 3.4c-3.9 0-6.9 3.1-6.9 6.9L227 321.3l3.9 66.4c.3 3.9 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9l4.2-66.4-4.2-141.7c0-3.9-3-6.9-6.9-6.9z"] }; +var faSpeakap = { prefix: 'fab', iconName: 'speakap', icon: [448, 512, [], "f3f3", "M352 32H96C43.2 32 0 75.2 0 128v256c0 52.8 43.2 96 96 96h256c52.8 0 96-43.2 96-96V128c0-52.8-43.2-96-96-96zM221 382.9c-39.6 0-81.9-17.8-81.9-53.7V302H179v17.8c0 15.1 19.5 24.5 41.9 24.5 24.2 0 41.3-10.4 41.3-29.5 0-23.8-27.2-31.9-54.7-42.6-31.9-12.4-63.1-26.2-63.1-69.1 0-48 38.6-66.4 79.9-66.4 37.6 0 75.5 14.1 75.5 41.9v31.2h-39.9v-16.1c0-12.1-17.8-18.5-35.6-18.5-19.5 0-35.6 8.1-35.6 26.2 0 22.1 22.5 29.2 47 38.9 35.9 12.4 71.1 27.2 71.1 71.5.1 48.6-40.8 71.1-85.8 71.1z"] }; +var faSpotify = { prefix: 'fab', iconName: 'spotify', icon: [496, 512, [], "f1bc", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm100.7 364.9c-4.2 0-6.8-1.3-10.7-3.6-62.4-37.6-135-39.2-206.7-24.5-3.9 1-9 2.6-11.9 2.6-9.7 0-15.8-7.7-15.8-15.8 0-10.3 6.1-15.2 13.6-16.8 81.9-18.1 165.6-16.5 237 26.2 6.1 3.9 9.7 7.4 9.7 16.5s-7.1 15.4-15.2 15.4zm26.9-65.6c-5.2 0-8.7-2.3-12.3-4.2-62.5-37-155.7-51.9-238.6-29.4-4.8 1.3-7.4 2.6-11.9 2.6-10.7 0-19.4-8.7-19.4-19.4s5.2-17.8 15.5-20.7c27.8-7.8 56.2-13.6 97.8-13.6 64.9 0 127.6 16.1 177 45.5 8.1 4.8 11.3 11 11.3 19.7-.1 10.8-8.5 19.5-19.4 19.5zm31-76.2c-5.2 0-8.4-1.3-12.9-3.9-71.2-42.5-198.5-52.7-280.9-29.7-3.6 1-8.1 2.6-12.9 2.6-13.2 0-23.3-10.3-23.3-23.6 0-13.6 8.4-21.3 17.4-23.9 35.2-10.3 74.6-15.2 117.5-15.2 73 0 149.5 15.2 205.4 47.8 7.8 4.5 12.9 10.7 12.9 22.6 0 13.6-11 23.3-23.2 23.3z"] }; +var faSquarespace = { prefix: 'fab', iconName: 'squarespace', icon: [512, 512, [], "f5be", "M186.12 343.34c-9.65 9.65-9.65 25.29 0 34.94 9.65 9.65 25.29 9.65 34.94 0L378.24 221.1c19.29-19.29 50.57-19.29 69.86 0s19.29 50.57 0 69.86L293.95 445.1c19.27 19.29 50.53 19.31 69.82.04l.04-.04 119.25-119.24c38.59-38.59 38.59-101.14 0-139.72-38.59-38.59-101.15-38.59-139.72 0l-157.22 157.2zm244.53-104.8c-9.65-9.65-25.29-9.65-34.93 0l-157.2 157.18c-19.27 19.29-50.53 19.31-69.82.05l-.05-.05c-9.64-9.64-25.27-9.65-34.92-.01l-.01.01c-9.65 9.64-9.66 25.28-.02 34.93l.02.02c38.58 38.57 101.14 38.57 139.72 0l157.2-157.2c9.65-9.65 9.65-25.29.01-34.93zm-261.99 87.33l157.18-157.18c9.64-9.65 9.64-25.29 0-34.94-9.64-9.64-25.27-9.64-34.91 0L133.72 290.93c-19.28 19.29-50.56 19.3-69.85.01l-.01-.01c-19.29-19.28-19.31-50.54-.03-69.84l.03-.03L218.03 66.89c-19.28-19.29-50.55-19.3-69.85-.02l-.02.02L28.93 186.14c-38.58 38.59-38.58 101.14 0 139.72 38.6 38.59 101.13 38.59 139.73.01zm-87.33-52.4c9.64 9.64 25.27 9.64 34.91 0l157.21-157.19c19.28-19.29 50.55-19.3 69.84-.02l.02.02c9.65 9.65 25.29 9.65 34.93 0 9.65-9.65 9.65-25.29 0-34.93-38.59-38.59-101.13-38.59-139.72 0L81.33 238.54c-9.65 9.64-9.65 25.28-.01 34.93h.01z"] }; +var faStackExchange = { prefix: 'fab', iconName: 'stack-exchange', icon: [448, 512, [], "f18d", "M17.7 332.3h412.7v22c0 37.7-29.3 68-65.3 68h-19L259.3 512v-89.7H83c-36 0-65.3-30.3-65.3-68v-22zm0-23.6h412.7v-85H17.7v85zm0-109.4h412.7v-85H17.7v85zM365 0H83C47 0 17.7 30.3 17.7 67.7V90h412.7V67.7C430.3 30.3 401 0 365 0z"] }; +var faStackOverflow = { prefix: 'fab', iconName: 'stack-overflow', icon: [384, 512, [], "f16c", "M293.7 300l-181.2-84.5 16.7-36.5 181.3 84.7-16.8 36.3zm48-76L188.2 95.7l-25.5 30.8 153.5 128.3 25.5-30.8zm39.6-31.7L262 32l-32 24 119.3 160.3 32-24zM290.7 311L95 269.7 86.8 309l195.7 41 8.2-39zm31.6 129H42.7V320h-40v160h359.5V320h-40v120zm-39.8-80h-200v39.7h200V360z"] }; +var faStaylinked = { prefix: 'fab', iconName: 'staylinked', icon: [440, 512, [], "f3f5", "M201.6 127.4c4.1-3.2 10.3-3 13.8.5l170 167.3-2.7-2.7 44.3 41.3c3.7 3.5 3.3 9-.7 12.2l-198 163.9c-9.9 7.6-17.3.8-17.3.8L2.3 314.6c-3.5-3.5-3-9 1.2-12.2l45.8-34.9c4.2-3.2 10.4-3 13.9.5l151.9 147.5c3.7 3.5 10 3.7 14.2.4l93.2-74c4.1-3.2 4.5-8.7.9-12.2l-84-81.3c-3.6-3.5-9.9-3.7-14-.5l-.1.1c-4.1 3.2-10.4 3-14-.5l-68.1-64.3c-3.5-3.5-3.1-9 1.1-12.2l57.3-43.6m14.8 257.3c3.7 3.5 10.1 3.7 14.3.4l50.2-38.8-.3-.3 7.7-6c4.2-3.2 4.6-8.7.9-12.2l-57.1-54.4c-3.6-3.5-10-3.7-14.2-.5l-.1.1c-4.2 3.2-10.5 3.1-14.2-.4L109 180.8c-3.6-3.5-3.1-8.9 1.1-12.2l92.2-71.5c4.1-3.2 10.3-3 13.9.5l160.4 159c3.7 3.5 10 3.7 14.1.5l45.8-35.8c4.1-3.2 4.4-8.7.7-12.2L226.7 2.5c-1.5-1.2-8-5.5-16.3 1.1L3.6 165.7c-4.2 3.2-4.8 8.7-1.2 12.2l42.3 41.7"] }; +var faSteam = { prefix: 'fab', iconName: 'steam', icon: [496, 512, [], "f1b6", "M496 256c0 137-111.2 248-248.4 248-113.8 0-209.6-76.3-239-180.4l95.2 39.3c6.4 32.1 34.9 56.4 68.9 56.4 39.2 0 71.9-32.4 70.2-73.5l84.5-60.2c52.1 1.3 95.8-40.9 95.8-93.5 0-51.6-42-93.5-93.7-93.5s-93.7 42-93.7 93.5v1.2L176.6 279c-15.5-.9-30.7 3.4-43.5 12.1L0 236.1C10.2 108.4 117.1 8 247.6 8 384.8 8 496 119 496 256zM155.7 384.3l-30.5-12.6a52.79 52.79 0 0 0 27.2 25.8c26.9 11.2 57.8-1.6 69-28.4 5.4-13 5.5-27.3.1-40.3-5.4-13-15.5-23.2-28.5-28.6-12.9-5.4-26.7-5.2-38.9-.6l31.5 13c19.8 8.2 29.2 30.9 20.9 50.7-8.3 19.9-31 29.2-50.8 21zm173.8-129.9c-34.4 0-62.4-28-62.4-62.3s28-62.3 62.4-62.3 62.4 28 62.4 62.3-27.9 62.3-62.4 62.3zm.1-15.6c25.9 0 46.9-21 46.9-46.8 0-25.9-21-46.8-46.9-46.8s-46.9 21-46.9 46.8c.1 25.8 21.1 46.8 46.9 46.8z"] }; +var faSteamSquare = { prefix: 'fab', iconName: 'steam-square', icon: [448, 512, [], "f1b7", "M185.2 356.5c7.7-18.5-1-39.7-19.6-47.4l-29.5-12.2c11.4-4.3 24.3-4.5 36.4.5 12.2 5.1 21.6 14.6 26.7 26.7 5 12.2 5 25.6-.1 37.7-10.5 25.1-39.4 37-64.6 26.5-11.6-4.8-20.4-13.6-25.4-24.2l28.5 11.8c18.6 7.8 39.9-.9 47.6-19.4zM400 32H48C21.5 32 0 53.5 0 80v160.7l116.6 48.1c12-8.2 26.2-12.1 40.7-11.3l55.4-80.2v-1.1c0-48.2 39.3-87.5 87.6-87.5s87.6 39.3 87.6 87.5c0 49.2-40.9 88.7-89.6 87.5l-79 56.3c1.6 38.5-29.1 68.8-65.7 68.8-31.8 0-58.5-22.7-64.5-52.7L0 319.2V432c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-99.7 222.5c-32.2 0-58.4-26.1-58.4-58.3s26.2-58.3 58.4-58.3 58.4 26.2 58.4 58.3-26.2 58.3-58.4 58.3zm.1-14.6c24.2 0 43.9-19.6 43.9-43.8 0-24.2-19.6-43.8-43.9-43.8-24.2 0-43.9 19.6-43.9 43.8 0 24.2 19.7 43.8 43.9 43.8z"] }; +var faSteamSymbol = { prefix: 'fab', iconName: 'steam-symbol', icon: [448, 512, [], "f3f6", "M395.5 177.5c0 33.8-27.5 61-61 61-33.8 0-61-27.3-61-61s27.3-61 61-61c33.5 0 61 27.2 61 61zm52.5.2c0 63-51 113.8-113.7 113.8L225 371.3c-4 43-40.5 76.8-84.5 76.8-40.5 0-74.7-28.8-83-67L0 358V250.7L97.2 290c15.1-9.2 32.2-13.3 52-11.5l71-101.7c.5-62.3 51.5-112.8 114-112.8C397 64 448 115 448 177.7zM203 363c0-34.7-27.8-62.5-62.5-62.5-4.5 0-9 .5-13.5 1.5l26 10.5c25.5 10.2 38 39 27.7 64.5-10.2 25.5-39.2 38-64.7 27.5-10.2-4-20.5-8.3-30.7-12.2 10.5 19.7 31.2 33.2 55.2 33.2 34.7 0 62.5-27.8 62.5-62.5zm207.5-185.3c0-42-34.3-76.2-76.2-76.2-42.3 0-76.5 34.2-76.5 76.2 0 42.2 34.3 76.2 76.5 76.2 41.9.1 76.2-33.9 76.2-76.2z"] }; +var faStickerMule = { prefix: 'fab', iconName: 'sticker-mule', icon: [576, 512, [], "f3f7", "M353.1 509.8c-5.9 2.9-32.1 3.2-36.5-.5-4.1-3-2.2-11.9-1.5-15 2.2-15-2.5-7.9-9.8-11.5-3.1-1.5-4.1-5.5-4.6-10-.5-1.5-1-2.5-1.5-3.5-1.7-10.7 6.8-33.6 8.2-43.4 4.9-23.7-.7-37.2 1.5-46.9 3.7-16.2 4.1-3.5 4.1-29.9-1.4-25.9 3.3-36.9.5-38.9-14.8 0-64.3 10.7-112.2 2-46.1-8.9-59.4-29-65.4-30.9-10.3-4.5-23.2.5-27.3 7-.1.1-35 70.6-39.6 87.8-6.2 20.5-.5 47.4 4.1 66.8 0 .1 4.5 14.6 10.3 19.5 2.1 1.5 5.1 2.5 7.2 4.5 2.8 2.7 9.4 15.2 9.8 16 2.6 4.5 3.6 8-1.5 10.5-3.6 2-9.3 2.5-14.4 2.5-2.6.5-1.5 3.5-3.1 5-2.9 2.8-20.7 6.1-29.9 2.5-2.6-1-5.7-3-6.2-5-1.5-4 2.1-9-1-12.5-4.5-2.9-13.1-2-17-12-2.2-5.4-2.6-7.6-2.6-49.4 0-9.7-5.9-38.7-8.2-46.9-1.5-5.5-1.5-11.5 0-16 .3-.9 4.1-4.6 4.1-13-1-1.5-4.6-.5-5.1-1.5-10.4-80.6-5.9-79-7.7-98.3-1.5-16-10.9-43.9-6.7-64.3.5-2.4 3.4-21 24.2-38.9 31-26.7 48.4-38.3 159-11.5 1.1.4 66.3 21.1 110.7-9 15.5-11.3 28.8-11.3 35.5-16 .1-.1 61.7-52.1 87-65.3 47.2-29.4 69.9-16.7 75.1-18 4.7-1 13.4-25.8 17-25.8 5.5 0 1.6 20.2 3.6 25.9.5 2 3.6 5 6.2 5 2.3 0 1.7-.8 10.3-5 8.4-5.4 14.9-17.6 20.6-17 11.7 1.6-19 41.6-19 46.9 0 2 .2.8 4.6 9.5 2.6 5.5 4.6 13.5 6.2 20 8.3 29.7 5.7 14.6 13.4 36.9 20.2 50.1 20.6 45.2 20.6 52.9 0 7.5-4.1 11-7.2 16.5-1.5 3-4.6 7.5-7.2 8-2.7.7 7-1.5-13.4 2.5-7.2 1-13.4-4.5-14.9-9.5-1.6-4.7 2.8-10.1-11.8-22.9-10.3-10-21.1-11.3-31.9-17-9.8-5.7-11.9 1-18 8-18 22.9-34 46.9-52 69.8-11.8 15-24.2 30.4-33.5 47.4-3.9 6.8-9.5 28.1-10.3 29.9-6.2 17.7-5.5 25.8-16.5 68.3-3.1 10-5.7 21.4-8.7 32.4-2.2 6.8-7.4 49.3-.5 59.4 2.1 3.5 8.7 4.5 11.3 8 .1.1 9.6 18.2 9.3 20 0 6.1-9.4 5.6-11.3 6.5-4.8 2.9-3.8 5.9-6.4 7.4"] }; +var faStrava = { prefix: 'fab', iconName: 'strava', icon: [369, 512, [], "f428", "M301.6 292l-43.9 88.2-44.6-88.2h-67.6l112.2 220 111.5-220h-67.6zM151.4 0L0 292h89.2l62.2-116.1L213.1 292h88.5L151.4 0z"] }; +var faStripe = { prefix: 'fab', iconName: 'stripe', icon: [640, 512, [], "f429", "M640 261.6c0-45.5-22-81.4-64.2-81.4s-67.9 35.9-67.9 81.1c0 53.5 30.3 78.2 73.5 78.2 21.2 0 37.1-4.8 49.2-11.5v-33.4c-12.1 6.1-26 9.8-43.6 9.8-17.3 0-32.5-6.1-34.5-26.9h86.9c.2-2.3.6-11.6.6-15.9m-87.9-16.8c0-20 12.3-28.4 23.4-28.4 10.9 0 22.5 8.4 22.5 28.4h-45.9zm-112.9-64.6c-17.4 0-28.6 8.2-34.8 13.9l-2.3-11H363v204.8l44.4-9.4.1-50.2c6.4 4.7 15.9 11.2 31.4 11.2 31.8 0 60.8-23.2 60.8-79.6.1-51.6-29.3-79.7-60.5-79.7m-10.6 122.5c-10.4 0-16.6-3.8-20.9-8.4l-.3-66c4.6-5.1 11-8.8 21.2-8.8 16.2 0 27.4 18.2 27.4 41.4.1 23.9-10.9 41.8-27.4 41.8M346.4 124v36.2l-44.6 9.5v-36.2l44.6-9.5m-44.5 59.2h44.6v153.2h-44.6V183.2zm-47.8 13.1c10.4-19.1 31.1-15.2 37.1-13.1V224c-5.7-1.8-23.4-4.5-33.9 9.3v103.1H213V183.2h38.4l2.7 13.1m-89-13.1h33.7V221h-33.7v63.2c0 26.2 28 18 33.7 15.7v33.8c-5.9 3.2-16.6 5.9-31.2 5.9-26.3 0-46.1-17-46.1-43.3l.2-142.4 43.3-9.2.1 38.5zM44.9 228.3c0 20 67.9 10.5 67.9 63.4 0 32-25.4 47.8-62.3 47.8-15.3 0-32-3-48.5-10.1v-40c14.9 8.1 33.9 14.2 48.6 14.2 9.9 0 17-2.7 17-10.9 0-21.2-67.5-13.2-67.5-62.4 0-31.4 24-50.2 60-50.2 14.7 0 29.4 2.3 44.1 8.1V230c-13.5-7.3-30.7-11.4-44.2-11.4-9.3.1-15.1 2.8-15.1 9.7"] }; +var faStripeS = { prefix: 'fab', iconName: 'stripe-s', icon: [362, 512, [], "f42a", "M144.3 154.6c0-22.3 18.6-30.9 48.4-30.9 43.4 0 98.5 13.3 141.9 36.7V26.1C287.3 7.2 240.1 0 192.8 0 77.1 0 0 60.4 0 161.4c0 157.9 216.8 132.3 216.8 200.4 0 26.4-22.9 34.9-54.7 34.9-47.2 0-108.2-19.5-156.1-45.5v128.5c53 22.8 106.8 32.4 156 32.4 118.6 0 200.3-51 200.3-153.6 0-170.2-218-139.7-218-203.9"] }; +var faStudiovinari = { prefix: 'fab', iconName: 'studiovinari', icon: [512, 512, [], "f3f8", "M480.3 187.7l4.2 28v28l-25.1 44.1-39.8 78.4-56.1 67.5-79.1 37.8-17.7 24.5-7.7 12-9.6 4s17.3-63.6 19.4-63.6c2.1 0 20.3.7 20.3.7l66.7-38.6-92.5 26.1-55.9 36.8-22.8 28-6.6 1.4 20.8-73.6 6.9-5.5 20.7 12.9 88.3-45.2 56.8-51.5 14.8-68.4-125.4 23.3 15.2-18.2-173.4-53.3 81.9-10.5-166-122.9L133.5 108 32.2 0l252.9 126.6-31.5-38L378 163 234.7 64l18.7 38.4-49.6-18.1L158.3 0l194.6 122L310 66.2l108 96.4 12-8.9-21-16.4 4.2-37.8L451 89.1l29.2 24.7 11.5 4.2-7 6.2 8.5 12-13.1 7.4-10.3 20.2 10.5 23.9z"] }; +var faStumbleupon = { prefix: 'fab', iconName: 'stumbleupon', icon: [512, 512, [], "f1a4", "M502.9 266v69.7c0 62.1-50.3 112.4-112.4 112.4-61.8 0-112.4-49.8-112.4-111.3v-70.2l34.3 16 51.1-15.2V338c0 14.7 12 26.5 26.7 26.5S417 352.7 417 338v-72h85.9zm-224.7-58.2l34.3 16 51.1-15.2V173c0-60.5-51.1-109-112.1-109-60.8 0-112.1 48.2-112.1 108.2v162.4c0 14.9-12 26.7-26.7 26.7S86 349.5 86 334.6V266H0v69.7C0 397.7 50.3 448 112.4 448c61.6 0 112.4-49.5 112.4-110.8V176.9c0-14.7 12-26.7 26.7-26.7s26.7 12 26.7 26.7v30.9z"] }; +var faStumbleuponCircle = { prefix: 'fab', iconName: 'stumbleupon-circle', icon: [496, 512, [], "f1a3", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 177.5c-9.8 0-17.8 8-17.8 17.8v106.9c0 40.9-33.9 73.9-74.9 73.9-41.4 0-74.9-33.5-74.9-74.9v-46.5h57.3v45.8c0 10 8 17.8 17.8 17.8s17.8-7.9 17.8-17.8V200.1c0-40 34.2-72.1 74.7-72.1 40.7 0 74.7 32.3 74.7 72.6v23.7l-34.1 10.1-22.9-10.7v-20.6c.1-9.6-7.9-17.6-17.7-17.6zm167.6 123.6c0 41.4-33.5 74.9-74.9 74.9-41.2 0-74.9-33.2-74.9-74.2V263l22.9 10.7 34.1-10.1v47.1c0 9.8 8 17.6 17.8 17.6s17.8-7.9 17.8-17.6v-48h57.3c-.1 45.9-.1 46.4-.1 46.4z"] }; +var faSuperpowers = { prefix: 'fab', iconName: 'superpowers', icon: [448, 512, [], "f2dd", "M448 32c-83.3 11-166.8 22-250 33-92 12.5-163.3 86.7-169 180-3.3 55.5 18 109.5 57.8 148.2L0 480c83.3-11 166.5-22 249.8-33 91.8-12.5 163.3-86.8 168.7-179.8 3.5-55.5-18-109.5-57.7-148.2L448 32zm-79.7 232.3c-4.2 79.5-74 139.2-152.8 134.5-79.5-4.7-140.7-71-136.3-151 4.5-79.2 74.3-139.3 153-134.5 79.3 4.7 140.5 71 136.1 151z"] }; +var faSupple = { prefix: 'fab', iconName: 'supple', icon: [640, 512, [], "f3f9", "M640 262.5c0 64.1-109 116.1-243.5 116.1-24.8 0-48.6-1.8-71.1-5 7.7.4 15.5.6 23.4.6 134.5 0 243.5-56.9 243.5-127.1 0-29.4-19.1-56.4-51.2-78 60 21.1 98.9 55.1 98.9 93.4zM47.7 227.9c-.1-70.2 108.8-127.3 243.3-127.6 7.9 0 15.6.2 23.3.5-22.5-3.2-46.3-4.9-71-4.9C108.8 96.3-.1 148.5 0 212.6c.1 38.3 39.1 72.3 99.3 93.3-32.3-21.5-51.5-48.6-51.6-78zm60.2 39.9s10.5 13.2 29.3 13.2c17.9 0 28.4-11.5 28.4-25.1 0-28-40.2-25.1-40.2-39.7 0-5.4 5.3-9.1 12.5-9.1 5.7 0 11.3 2.6 11.3 6.6v3.9h14.2v-7.9c0-12.1-15.4-16.8-25.4-16.8-16.5 0-28.5 10.2-28.5 24.1 0 26.6 40.2 25.4 40.2 39.9 0 6.6-5.8 10.1-12.3 10.1-11.9 0-20.7-10.1-20.7-10.1l-8.8 10.9zm120.8-73.6v54.4c0 11.3-7.1 17.8-17.8 17.8-10.7 0-17.8-6.5-17.8-17.7v-54.5h-15.8v55c0 18.9 13.4 31.9 33.7 31.9 20.1 0 33.4-13 33.4-31.9v-55h-15.7zm34.4 85.4h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.8-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5.1 14.7-14 14.7h-12.6zm57 43h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.7-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5 14.7-14 14.7h-12.6zm57.1 34.8c0 5.8 2.4 8.2 8.2 8.2h37.6c5.8 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-18.6c-1.7 0-2.6-1-2.6-2.6v-61.2c0-5.7-2.4-8.2-8.2-8.2H401v13.4h5.2c1.7 0 2.6 1 2.6 2.6v61.2zm63.4 0c0 5.8 2.4 8.2 8.2 8.2H519c5.7 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-19.7c-1.7 0-2.6-1-2.6-2.6v-20.3h27.7v-13.4H488v-22.4h19.2c1.7 0 2.6 1 2.6 2.6v5.2H524v-13c0-5.7-2.5-8.2-8.2-8.2h-51.6v13.4h7.8v63.9zm58.9-76v5.9h1.6v-5.9h2.7v-1.2h-7v1.2h2.7zm5.7-1.2v7.1h1.5v-5.7l2.3 5.7h1.3l2.3-5.7v5.7h1.5v-7.1h-2.3l-2.1 5.1-2.1-5.1h-2.4z"] }; +var faTeamspeak = { prefix: 'fab', iconName: 'teamspeak', icon: [511, 512, [], "f4f9", "M.82 237.82c2.36-15.52 10.69-27.04 24.88-34.03 3.5-1.85 5.65-3.5 6.37-7.81 6.17-33.41 19.53-63.94 39.37-91.59 2.36-3.19 4.01-5.35 1.03-9.35-3.7-5.35-1.03-10.18 2.98-14.49 28.06-31.87 61.88-55.1 101.98-67.44 95.81-29.4 180.1-9.35 252.37 60.45 6.68 6.37 15.52 12.85 6.99 24.36-1.34 1.85 1.03 3.5 2.16 5.04 20.66 28.06 34.23 59.42 40.4 93.65.82 3.7 2.98 5.04 5.86 6.37 17.37 8.84 25.7 23.34 26.01 42.25 0 17.17 1.85 34.54-1.03 51.71-4.01 24.67-29.19 41.74-53.25 36.7-7.2-1.64-9.35-7.2-9.35-14.19 0-28.06.82-56.44 0-84.6-1.85-75.76-36.18-132.81-102.28-169.41C234.28 4.98 92.11 72.42 67.54 196.91c-6.06 30.42-1.74 48.27-3.7 125.82-.31 7.2-4.32 11.2-12.03 11.51C20.97 335.58 0 316.05 0 285.21v-20.87m221.74 106.81c11.82-4.32 20.05-11.82 22.51-24.36 2.36-12.34-12.03-30.02-32.38-48.73-20.87-19.22-48.22-39.06-63.43-46.57-21.69-12.03-41.74-1.85-46.26 22.72-5.04 26.21 0 51.4 14.49 73.91 10.18 15.52 25.39 22.72 43.38 24.05 11.62.62 52.54 2.16 61.69-1.02m129.83 5.55c36.5 2.81 59.33-28.55 58.39-60.45-2.14-45.17-66.17-16.48-87.79-8.02-73.16 28.14-45.05 54.92-22.2 60.75m149.26-1.33c-2.98-2.36-7.2-1.03-8.33 2.36-8.02 25.39-44.72 112.46-172.08 121.51-149.67 10.49 80.29 43.59 145.36-6.37 22.72-17.37 47.6-35.05 46.57-85.43-.32-10.07-4.84-26.72-11.52-32.07"] }; +var faTelegram = { prefix: 'fab', iconName: 'telegram', icon: [496, 512, [], "f2c6", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm121.8 169.9l-40.7 191.8c-3 13.6-11.1 16.9-22.4 10.5l-62-45.7-29.9 28.8c-3.3 3.3-6.1 6.1-12.5 6.1l4.4-63.1 114.9-103.8c5-4.4-1.1-6.9-7.7-2.5l-142 89.4-61.2-19.1c-13.3-4.2-13.6-13.3 2.8-19.7l239.1-92.2c11.1-4 20.8 2.7 17.2 19.5z"] }; +var faTelegramPlane = { prefix: 'fab', iconName: 'telegram-plane', icon: [448, 512, [], "f3fe", "M446.7 98.6l-67.6 318.8c-5.1 22.5-18.4 28.1-37.3 17.5l-103-75.9-49.7 47.8c-5.5 5.5-10.1 10.1-20.7 10.1l7.4-104.9 190.9-172.5c8.3-7.4-1.8-11.5-12.9-4.1L117.8 284 16.2 252.2c-22.1-6.9-22.5-22.1 4.6-32.7L418.2 66.4c18.4-6.9 34.5 4.1 28.5 32.2z"] }; +var faTencentWeibo = { prefix: 'fab', iconName: 'tencent-weibo', icon: [384, 512, [], "f1d5", "M72.3 495.8c1.4 19.9-27.6 22.2-29.7 2.9C31 368.8 73.7 259.2 144 185.5c-15.6-34 9.2-77.1 50.6-77.1 30.3 0 55.1 24.6 55.1 55.1 0 44-49.5 70.8-86.9 45.1-65.7 71.3-101.4 169.8-90.5 287.2zM192 .1C66.1.1-12.3 134.3 43.7 242.4 52.4 259.8 79 246.9 70 229 23.7 136.4 91 29.8 192 29.8c75.4 0 136.9 61.4 136.9 136.9 0 90.8-86.9 153.9-167.7 133.1-19.1-4.1-25.6 24.4-6.6 29.1 110.7 23.2 204-60 204-162.3C358.6 74.7 284 .1 192 .1z"] }; +var faThemeco = { prefix: 'fab', iconName: 'themeco', icon: [441, 512, [], "f5c6", "M199.74 12.29c9.74-5.64 25.59-5.73 35.39-.21l188.13 105.95c9.81 5.52 17.76 19.14 17.76 30.38v213.87c0 11.26-7.93 24.89-17.71 30.46L235.09 499.88c-9.78 5.57-25.58 5.48-35.29-.21L17.58 392.95C7.87 387.26 0 373.52 0 362.27V148.41c0-11.26 7.9-24.96 17.63-30.59L199.74 12.29zM123.54 209c-15.69 0-31.39.14-47.08.14v99.87h18.83v-29.39h28.25c48.94 0 48.79-70.62 0-70.62zm137.96 98.73l-30.25-34.1c36.4-7.39 34.26-64.21-10.7-64.49-15.84 0-31.67-.14-47.51-.14v100.01h18.83v-33.38H210l29.1 33.38h22.4v-1.28zm-40.94-81.04c22.98 0 22.9 31.96 0 31.96h-28.68v-31.96h28.68zm-94.07-1.57c20.85 0 20.78 38.24 0 38.24H94.68v-38.23l31.81-.01zm189.65-17.97c-67.4 0-69.86 104.15 0 104.15 68.39-.01 68.33-104.15 0-104.15zm0 17.12c43.43 0 44.1 69.76 0 69.76-44.12 0-43.74-69.76 0-69.76z"] }; +var faThemeisle = { prefix: 'fab', iconName: 'themeisle', icon: [512, 512, [], "f2b2", "M208 88.286c0-10 6.286-21.714 17.715-21.714 11.142 0 17.714 11.714 17.714 21.714 0 10.285-6.572 21.714-17.714 21.714C214.286 110 208 98.571 208 88.286zm304 160c0 36.001-11.429 102.286-36.286 129.714-22.858 24.858-87.428 61.143-120.857 70.572l-1.143.286v32.571c0 16.286-12.572 30.571-29.143 30.571-10 0-19.429-5.714-24.572-14.286-5.427 8.572-14.856 14.286-24.856 14.286-10 0-19.429-5.714-24.858-14.286-5.142 8.572-14.571 14.286-24.57 14.286-10.286 0-19.429-5.714-24.858-14.286-5.143 8.572-14.571 14.286-24.571 14.286-18.857 0-29.429-15.714-29.429-32.857-16.286 12.285-35.715 19.428-56.571 19.428-22 0-43.429-8.285-60.286-22.857 10.285-.286 20.571-2.286 30.285-5.714-20.857-5.714-39.428-18.857-52-36.286 21.37 4.645 46.209 1.673 67.143-11.143-22-22-56.571-58.857-68.572-87.428C1.143 321.714 0 303.714 0 289.429c0-49.714 20.286-160 86.286-160 10.571 0 18.857 4.858 23.143 14.857a158.792 158.792 0 0 1 12-15.428c2-2.572 5.714-5.429 7.143-8.286 7.999-12.571 11.714-21.142 21.714-34C182.571 45.428 232 17.143 285.143 17.143c6 0 12 .285 17.714 1.143C313.714 6.571 328.857 0 344.572 0c14.571 0 29.714 6 40 16.286.857.858 1.428 2.286 1.428 3.428 0 3.714-10.285 13.429-12.857 16.286 4.286 1.429 15.714 6.858 15.714 12 0 2.857-2.857 5.143-4.571 7.143 31.429 27.714 49.429 67.143 56.286 108 4.286-5.143 10.285-8.572 17.143-8.572 10.571 0 20.857 7.144 28.571 14.001C507.143 187.143 512 221.714 512 248.286zM188 89.428c0 18.286 12.571 37.143 32.286 37.143 19.714 0 32.285-18.857 32.285-37.143 0-18-12.571-36.857-32.285-36.857-19.715 0-32.286 18.858-32.286 36.857zM237.714 194c0-19.714 3.714-39.143 8.571-58.286-52.039 79.534-13.531 184.571 68.858 184.571 21.428 0 42.571-7.714 60-20 2-7.429 3.714-14.857 3.714-22.572 0-14.286-6.286-21.428-20.572-21.428-4.571 0-9.143.857-13.429 1.714-63.343 12.668-107.142 3.669-107.142-63.999zm-41.142 254.858c0-11.143-8.858-20.857-20.286-20.857-11.429 0-20 9.715-20 20.857v32.571c0 11.143 8.571 21.142 20 21.142 11.428 0 20.286-9.715 20.286-21.142v-32.571zm49.143 0c0-11.143-8.572-20.857-20-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20-10 20-21.142v-32.571zm49.713 0c0-11.143-8.857-20.857-20.285-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20.285-9.715 20.285-21.142v-32.571zm49.715 0c0-11.143-8.857-20.857-20.286-20.857-11.428 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.858 21.142 20.286 21.142 11.429 0 20.286-10 20.286-21.142v-32.571zM421.714 286c-30.857 59.142-90.285 102.572-158.571 102.572-96.571 0-160.571-84.572-160.571-176.572 0-16.857 2-33.429 6-49.714-20 33.715-29.714 72.572-29.714 111.429 0 60.286 24.857 121.715 71.429 160.857 5.143-9.714 14.857-16.286 26-16.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.571-14.286 24.858-14.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.857-14.286 24.858-14.286 10 0 19.428 5.714 24.857 14.286 5.143-8.571 14.571-14.286 24.572-14.286 10.857 0 20.857 6.572 25.714 16 43.427-36.286 68.569-92 71.426-148.286zm10.572-99.714c0-53.714-34.571-105.714-92.572-105.714-30.285 0-58.571 15.143-78.857 36.857C240.862 183.812 233.41 254 302.286 254c28.805 0 97.357-28.538 84.286 36.857 28.857-26 45.714-65.714 45.714-104.571z"] }; +var faTradeFederation = { prefix: 'fab', iconName: 'trade-federation', icon: [496, 512, [], "f513", "M202.45 108.42v81.61H38.94l48.22 61.91h114.73v196.75h64.61V252.96h83.27v-62.69h-83.18V171.1h145.62v-62.68H202.45zm4.86 6h197.77v50.68H259.44v30.93h83.18v50.93h-83.26v195.73h-52.73V245.94H89.86l-39.95-49.91h157.4v-81.61zM247.99 8.8C111.03 8.8 0 119.83 0 256.8s111.03 248 247.99 248S496 393.76 496 256.8 384.96 8.8 247.99 8.8zm.02 13.24c129.66 0 234.76 105.12 234.76 234.78s-105.1 234.76-234.76 234.76S13.23 386.47 13.23 256.81 118.35 22.04 248.01 22.04zm0 7.89c-125.3 0-226.89 101.57-226.89 226.87s101.59 226.89 226.89 226.89S474.88 382.1 474.88 256.8 373.31 29.93 248.01 29.93zm-.02 13.3c117.95 0 213.56 95.62 213.56 213.56s-95.62 213.56-213.56 213.56S34.43 374.75 34.43 256.8 130.04 43.23 247.99 43.23zm-73.32 104.8l15.66 18.05-22.16-9.45-12.33 20.47 2.15-23.99-23.28-5.4 23.48-5.37-2.06-23.81 12.37 20.67 22.01-9.32-15.84 18.15zm-47.14-46.54l8.01 12.4 12.69-5.86-9.32 11.45 9.5 10.25-13.77-5.32-6.82 12.2.81-14.74-13.71-2.71 14.27-3.78-1.66-13.89zm250.77 75.59l11.99 19.56 20.88-9.11-14.9 17.45 15.11 17.04-21.2-8.78-11.54 19.64 1.8-22.87-22.24-4.9 22.31-5.36-2.21-22.67zm-107.05 98.45l13.86-3.22-1.28-14.17 7.35 12.18 13.08-5.59-9.31 10.75 9.36 10.71-13.1-5.54-7.29 12.21 1.22-14.17-13.89-3.16zm-125.43 6.5l23.73-3.87-1.73-24.53 11.01 21.38 22.79-9.22-16.93 17.08 15.81 18.83-21.47-10.82-13.02 20.86 3.66-23.77-23.85-5.94zm63.44-165.66v81.61H54.16l36.72 46.01h117.7v196.75h48.82V245.01h83.27v-47.03H257.4v-34.83h145.73v-46.78H209.26zm10.86 11.2h171.8v24.36H246.88v56.23h82.93v23.94h-82.93v197.42h-26.76V232.1H96.31l-20.09-23.94h143.9v-80.59z"] }; +var faTrello = { prefix: 'fab', iconName: 'trello', icon: [448, 512, [], "f181", "M392 32H56C25.1 32 0 57.1 0 88v336c0 30.9 25.1 56 56 56h336c30.9 0 56-25.1 56-56V88c0-30.9-25.1-56-56-56zM194.9 371.4c0 14.8-12 26.9-26.9 26.9H85.1c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9H168c14.8 0 26.9 12 26.9 26.9v254.3zm194.9-112c0 14.8-12 26.9-26.9 26.9H280c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9h82.9c14.8 0 26.9 12 26.9 26.9v142.3z"] }; +var faTripadvisor = { prefix: 'fab', iconName: 'tripadvisor', icon: [576, 512, [], "f262", "M166.4 280.521c0 13.236-10.73 23.966-23.966 23.966s-23.966-10.73-23.966-23.966 10.73-23.966 23.966-23.966 23.966 10.729 23.966 23.966zm264.962-23.956c-13.23 0-23.956 10.725-23.956 23.956 0 13.23 10.725 23.956 23.956 23.956 13.23 0 23.956-10.725 23.956-23.956-.001-13.231-10.726-23.956-23.956-23.956zm89.388 139.49c-62.667 49.104-153.276 38.109-202.379-24.559l-30.979 46.325-30.683-45.939c-48.277 60.39-135.622 71.891-197.885 26.055-64.058-47.158-77.759-137.316-30.601-201.374A186.762 186.762 0 0 0 0 139.416l90.286-.05a358.48 358.48 0 0 1 197.065-54.03 350.382 350.382 0 0 1 192.181 53.349l96.218.074a185.713 185.713 0 0 0-28.352 57.649c46.793 62.747 34.964 151.37-26.648 199.647zM259.366 281.761c-.007-63.557-51.535-115.075-115.092-115.068C80.717 166.7 29.2 218.228 29.206 281.785c.007 63.557 51.535 115.075 115.092 115.068 63.513-.075 114.984-51.539 115.068-115.052v-.04zm28.591-10.455c5.433-73.44 65.51-130.884 139.12-133.022a339.146 339.146 0 0 0-139.727-27.812 356.31 356.31 0 0 0-140.164 27.253c74.344 1.582 135.299 59.424 140.771 133.581zm251.706-28.767c-21.992-59.634-88.162-90.148-147.795-68.157-59.634 21.992-90.148 88.162-68.157 147.795v.032c22.038 59.607 88.198 90.091 147.827 68.113 59.615-22.004 90.113-88.162 68.125-147.783zm-326.039 37.975v.115c-.057 39.328-31.986 71.163-71.314 71.106-39.328-.057-71.163-31.986-71.106-71.314.057-39.328 31.986-71.163 71.314-71.106 39.259.116 71.042 31.94 71.106 71.199zm-24.512 0v-.084c-.051-25.784-20.994-46.645-46.778-46.594-25.784.051-46.645 20.994-46.594 46.777.051 25.784 20.994 46.645 46.777 46.594 25.726-.113 46.537-20.968 46.595-46.693zm313.423 0v.048c-.02 39.328-31.918 71.194-71.247 71.173s-71.194-31.918-71.173-71.247c.02-39.328 31.918-71.194 71.247-71.173 39.29.066 71.121 31.909 71.173 71.199zm-24.504-.008c-.009-25.784-20.918-46.679-46.702-46.67-25.784.009-46.679 20.918-46.67 46.702.009 25.784 20.918 46.678 46.702 46.67 25.765-.046 46.636-20.928 46.67-46.693v-.009z"] }; +var faTumblr = { prefix: 'fab', iconName: 'tumblr', icon: [320, 512, [], "f173", "M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z"] }; +var faTumblrSquare = { prefix: 'fab', iconName: 'tumblr-square', icon: [448, 512, [], "f174", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-82.3 364.2c-8.5 9.1-31.2 19.8-60.9 19.8-75.5 0-91.9-55.5-91.9-87.9v-90h-29.7c-3.4 0-6.2-2.8-6.2-6.2v-42.5c0-4.5 2.8-8.5 7.1-10 38.8-13.7 50.9-47.5 52.7-73.2.5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2h-52.1V321c0 21.4 14.8 33.5 42.5 22.4 3-1.2 5.6-2 8-1.4 2.2.5 3.6 2.1 4.6 4.9l13.8 40.2c1 3.2 2 6.7-.3 9.1z"] }; +var faTwitch = { prefix: 'fab', iconName: 'twitch', icon: [448, 512, [], "f1e8", "M40.1 32L10 108.9v314.3h107V480h60.2l56.8-56.8h87l117-117V32H40.1zm357.8 254.1L331 353H224l-56.8 56.8V353H76.9V72.1h321v214zM331 149v116.9h-40.1V149H331zm-107 0v116.9h-40.1V149H224z"] }; +var faTwitter = { prefix: 'fab', iconName: 'twitter', icon: [512, 512, [], "f099", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"] }; +var faTwitterSquare = { prefix: 'fab', iconName: 'twitter-square', icon: [448, 512, [], "f081", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z"] }; +var faTypo3 = { prefix: 'fab', iconName: 'typo3', icon: [433, 512, [], "f42b", "M330.8 341c-7 2.3-11.6 2.3-18.5 2.3-57.2 0-140.6-198.5-140.6-264.9 0-24.7 5.4-32.4 13.9-39.4-69.5 8.5-149.3 34-176.3 66.4-5.4 7.7-9.3 20.8-9.3 37.1C0 246 106.8 480 184.1 480c36.3 0 97.3-59.5 146.7-139M294.5 32c71.8 0 138.8 11.6 138.8 52.5 0 82.6-52.5 182.3-78.8 182.3-47.9 0-101.7-132.1-101.7-198.5 0-30.9 11.6-36.3 41.7-36.3"] }; +var faUber = { prefix: 'fab', iconName: 'uber', icon: [448, 512, [], "f402", "M414.1 32H33.9C15.2 32 0 47.2 0 65.9V446c0 18.8 15.2 34 33.9 34H414c18.7 0 33.9-15.2 33.9-33.9V65.9C448 47.2 432.8 32 414.1 32zM237.6 391.1C163 398.6 96.4 344.2 88.9 269.6h94.4V290c0 3.7 3 6.8 6.8 6.8H258c3.7 0 6.8-3 6.8-6.8v-67.9c0-3.7-3-6.8-6.8-6.8h-67.9c-3.7 0-6.8 3-6.8 6.8v20.4H88.9c7-69.4 65.4-122.2 135.1-122.2 69.7 0 128.1 52.8 135.1 122.2 7.5 74.5-46.9 141.1-121.5 148.6z"] }; +var faUikit = { prefix: 'fab', iconName: 'uikit', icon: [448, 512, [], "f403", "M443.9 128v256L218 512 0 384V169.7l87.6 45.1v117l133.5 75.5 135.8-75.5v-151l-101.1-57.6 87.6-53.1L443.9 128zM308.6 49.1L223.8 0l-88.6 54.8 86 47.3 87.4-53z"] }; +var faUniregistry = { prefix: 'fab', iconName: 'uniregistry', icon: [384, 512, [], "f404", "M281.1 220.1H384v-14.8H281.1v14.8zm0-37.1H384v-12.4H281.1V183zm0 74.2H384v-17.3H281.1v17.3zm-157.7 86.7H8.5c2.6 8.5 5.8 16.8 9.6 24.8h138.3c-12.9-5.7-24.1-14.2-33-24.8m145.7-12.4h109.7c1.8-7.3 3.1-14.7 3.9-22.3H278.3c-2.1 7.9-5.2 15.4-9.2 22.3m-41.5 37.1H367c3.7-8 5.8-16.2 8.5-24.8h-115c-8.8 10.7-20.1 19.2-32.9 24.8M384 32H281.1v2.5H384V32zM192 480c39.5 0 76.2-11.8 106.8-32.2H85.3C115.8 468.2 152.5 480 192 480m89.1-334.2H384V136H281.1v9.8zm0-37.1H384v-7.4H281.1v7.4zm0-37.1H384v-4.9H281.1v4.9zm-178.2 99H0V183h102.9v-12.4zM38.8 405.7h305.3c6.7-8.5 12.6-17.6 17.8-27.2H23c5.2 9.6 9.2 18.7 15.8 27.2m64.1-118.8v-12.4H0v12.4c0 2.5 0 5 .1 7.4h103.1c-.2-2.4-.3-4.9-.3-7.4m178.2 0c0 2.5-.1 5-.4 7.4h103.1c.1-2.5.2-4.9.2-7.4v-12.4H281.1v12.4zm-203 156h227.7c11.8-8.7 22.7-18.6 32.2-29.7H44.9c9.6 11 21.4 21 33.2 29.7m24.8-376.2H0v4.9h102.9v-4.9zm0-34.7H0v2.5h102.9V32zm0 173.3H0v14.8h102.9v-14.8zm0 34.6H0v17.3h102.9v-17.3zm0-103.9H0v9.9h102.9V136zm0-34.7H0v7.4h102.9v-7.4zm2.8 207.9H1.3c.9 7.6 2.2 15 3.9 22.3h109.7c-4-6.9-7.2-14.4-9.2-22.3"] }; +var faUntappd = { prefix: 'fab', iconName: 'untappd', icon: [640, 512, [], "f405", "M401.3 49.9c-79.8 160.1-84.6 152.5-87.9 173.2l-5.2 32.8c-1.9 12-6.6 23.5-13.7 33.4L145.6 497.1c-7.6 10.6-20.4 16.2-33.4 14.6-40.3-5-77.8-32.2-95.3-68.5-5.7-11.8-4.5-25.8 3.1-36.4l148.9-207.9c7.1-9.9 16.4-18 27.2-23.7l29.3-15.5c18.5-9.8 9.7-11.9 135.6-138.9 1-4.8 1-7.3 3.6-8 3-.7 6.6-1 6.3-4.6l-.4-4.6c-.2-1.9 1.3-3.6 3.2-3.6 4.5-.1 13.2 1.2 25.6 10 12.3 8.9 16.4 16.8 17.7 21.1.6 1.8-.6 3.7-2.4 4.2l-4.5 1.1c-3.4.9-2.5 4.4-2.3 7.4.1 2.8-2.3 3.6-6.5 6.1zM230.1 36.4c3.4.9 2.5 4.4 2.3 7.4-.2 2.7 2.1 3.5 6.4 6 7.9 15.9 15.3 30.5 22.2 44 .7 1.3 2.3 1.5 3.3.5 11.2-12 24.6-26.2 40.5-42.6 1.3-1.4 1.4-3.5.1-4.9-8-8.2-16.5-16.9-25.6-26.1-1-4.7-1-7.3-3.6-8-3-.8-6.6-1-6.3-4.6.3-3.3 1.4-8.1-2.8-8.2-4.5-.1-13.2 1.1-25.6 10-12.3 8.9-16.4 16.8-17.7 21.1-1.4 4.2 3.6 4.6 6.8 5.4zM620 406.7L471.2 198.8c-13.2-18.5-26.6-23.4-56.4-39.1-11.2-5.9-14.2-10.9-30.5-28.9-1-1.1-2.9-.9-3.6.5-46.3 88.8-47.1 82.8-49 94.8-1.7 10.7-1.3 20 .3 29.8 1.9 12 6.6 23.5 13.7 33.4l148.9 207.9c7.6 10.6 20.2 16.2 33.1 14.7 40.3-4.9 78-32 95.7-68.6 5.4-11.9 4.3-25.9-3.4-36.6z"] }; +var faUsb = { prefix: 'fab', iconName: 'usb', icon: [640, 512, [], "f287", "M641.5 256c0 3.1-1.7 6.1-4.5 7.5L547.9 317c-1.4.8-2.8 1.4-4.5 1.4-1.4 0-3.1-.3-4.5-1.1-2.8-1.7-4.5-4.5-4.5-7.8v-35.6H295.7c25.3 39.6 40.5 106.9 69.6 106.9H392V354c0-5 3.9-8.9 8.9-8.9H490c5 0 8.9 3.9 8.9 8.9v89.1c0 5-3.9 8.9-8.9 8.9h-89.1c-5 0-8.9-3.9-8.9-8.9v-26.7h-26.7c-75.4 0-81.1-142.5-124.7-142.5H140.3c-8.1 30.6-35.9 53.5-69 53.5C32 327.3 0 295.3 0 256s32-71.3 71.3-71.3c33.1 0 61 22.8 69 53.5 39.1 0 43.9 9.5 74.6-60.4C255 88.7 273 95.7 323.8 95.7c7.5-20.9 27-35.6 50.4-35.6 29.5 0 53.5 23.9 53.5 53.5s-23.9 53.5-53.5 53.5c-23.4 0-42.9-14.8-50.4-35.6H294c-29.1 0-44.3 67.4-69.6 106.9h310.1v-35.6c0-3.3 1.7-6.1 4.5-7.8 2.8-1.7 6.4-1.4 8.9.3l89.1 53.5c2.8 1.1 4.5 4.1 4.5 7.2z"] }; +var faUssunnah = { prefix: 'fab', iconName: 'ussunnah', icon: [512, 512, [], "f407", "M156.8 285.1l5.7 14.4h-8.2c-1.3-3.2-3.1-7.7-3.8-9.5-2.5-6.3-1.1-8.4 0-10 1.9-2.7 3.2-4.4 3.6-5.2 0 2.2.8 5.7 2.7 10.3zm297.3 18.8c-2.1 13.8-5.7 27.1-10.5 39.7l43 23.4-44.8-18.8c-5.3 13.2-12 25.6-19.9 37.2l34.2 30.2-36.8-26.4c-8.4 11.8-18 22.6-28.7 32.3l24.9 34.7-28.1-31.8c-11 9.6-23.1 18-36.1 25.1l15.7 37.2-19.3-35.3c-13.1 6.8-27 12.1-41.6 15.9l6.7 38.4-10.5-37.4c-14.3 3.4-29.2 5.3-44.5 5.4L256 512l-1.9-38.4c-15.3-.1-30.2-2-44.5-5.3L199 505.6l6.7-38.2c-14.6-3.7-28.6-9.1-41.7-15.8l-19.2 35.1 15.6-37c-13-7-25.2-15.4-36.2-25.1l-27.9 31.6 24.7-34.4c-10.7-9.7-20.4-20.5-28.8-32.3l-36.5 26.2 33.9-29.9c-7.9-11.6-14.6-24.1-20-37.3l-44.4 18.7L67.8 344c-4.8-12.7-8.4-26.1-10.5-39.9l-51 9 50.3-14.2c-1.1-8.5-1.7-17.1-1.7-25.9 0-4.7.2-9.4.5-14.1L0 256l56-2.8c1.3-13.1 3.8-25.8 7.5-38.1L6.4 199l58.9 10.4c4-12 9.1-23.5 15.2-34.4l-55.1-30 58.3 24.6C90 159 97.2 149.2 105.3 140L55.8 96.4l53.9 38.7c8.1-8.6 17-16.5 26.6-23.6l-40-55.6 45.6 51.6c9.5-6.6 19.7-12.3 30.3-17.2l-27.3-64.9 33.8 62.1c10.5-4.4 21.4-7.9 32.7-10.4L199 6.4l19.5 69.2c11-2.1 22.3-3.2 33.8-3.4L256 0l3.6 72.2c11.5.2 22.8 1.4 33.8 3.5L313 6.4l-12.4 70.7c11.3 2.6 22.2 6.1 32.6 10.5l33.9-62.2-27.4 65.1c10.6 4.9 20.7 10.7 30.2 17.2l45.8-51.8-40.1 55.9c9.5 7.1 18.4 15 26.5 23.6l54.2-38.9-49.7 43.9c8 9.1 15.2 18.9 21.5 29.4l58.7-24.7-55.5 30.2c6.1 10.9 11.1 22.3 15.1 34.3l59.3-10.4-57.5 16.2c3.7 12.2 6.2 24.9 7.5 37.9L512 256l-56 2.8c.3 4.6.5 9.3.5 14.1 0 8.7-.6 17.3-1.6 25.8l50.7 14.3-51.5-9.1zm-21.8-31c0-97.5-79-176.5-176.5-176.5s-176.5 79-176.5 176.5 79 176.5 176.5 176.5 176.5-79 176.5-176.5zm-24 0c0 84.3-68.3 152.6-152.6 152.6s-152.6-68.3-152.6-152.6 68.3-152.6 152.6-152.6 152.6 68.3 152.6 152.6zM195 241c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-40.7-19c0 2.1 1.3 3.8 3.6 5.1 3.5 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-19 0c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.4 6.8-9.6 10.9-9.6 12.6zm204.9 87.9c-8.4-3-8.7-6.8-8.7-15.6V182c-8.2 12.5-14.2 18.6-18 18.6 6.3 14.4 9.5 23.9 9.5 28.3v64.3c0 2.2-2.2 6.5-4.7 6.5h-18c-2.8-7.5-10.2-26.9-15.3-40.3-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3 2.6 6.7 6.4 16.5 7.9 20.2h-9.2c-3.9-10.4-9.6-25.4-11.8-31.1-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3.8 2 2.8 7.3 4.3 10.9H256c-1.5-4.1-5.6-14.6-8.4-22-2 2.5-7.2 9.2-10.7 13.7 2.5 1.6 4.3 3.6 5.2 6.3.2.6.5 1.4.6 1.7H225c-4.6-13.9-11.4-27.7-11.4-34.1 0-2.2.3-5.1 1.1-8.2-8.8 10.8-14 15.9-14 25 0 7.5 10.4 28.3 10.4 33.3 0 1.7-.5 3.3-1.4 4.9-9.6-12.7-15.5-20.7-18.8-20.7h-12l-11.2-28c-3.8-9.6-5.7-16-5.7-18.8 0-3.8.5-7.7 1.7-12.2-1 1.3-3.7 4.7-5.5 7.1-.8-2.1-3.1-7.7-4.6-11.5-2.1 2.5-7.5 9.1-11.2 13.6.9 2.3 3.3 8.1 4.9 12.2-2.5 3.3-9.1 11.8-13.6 17.7-4 5.3-5.8 13.3-2.7 21.8 2.5 6.7 2 7.9-1.7 14.1H191c5.5 0 14.3 14 15.5 22 13.2-16 15.4-19.6 16.8-21.6h107c3.9 0 7.2-1.9 9.9-5.8zm20.1-26.6V181.7c-9 12.5-15.9 18.6-20.7 18.6 7.1 14.4 10.7 23.9 10.7 28.3v66.3c0 17.5 8.6 20.4 24 20.4 8.1 0 12.5-.8 13.7-2.7-4.3-1.6-7.6-2.5-9.9-3.3-8.1-3.2-17.8-7.4-17.8-26z"] }; +var faVaadin = { prefix: 'fab', iconName: 'vaadin', icon: [448, 512, [], "f408", "M224.5 140.7c1.5-17.6 4.9-52.7 49.8-52.7h98.6c20.7 0 32.1-7.8 32.1-21.6V54.1c0-12.2 9.3-22.1 21.5-22.1S448 41.9 448 54.1v36.5c0 42.9-21.5 62-66.8 62H280.7c-30.1 0-33 14.7-33 27.1 0 1.3-.1 2.5-.2 3.7-.7 12.3-10.9 22.2-23.4 22.2s-22.7-9.8-23.4-22.2c-.1-1.2-.2-2.4-.2-3.7 0-12.3-3-27.1-33-27.1H66.8c-45.3 0-66.8-19.1-66.8-62V54.1C0 41.9 9.4 32 21.6 32s21.5 9.9 21.5 22.1v12.3C43.1 80.2 54.5 88 75.2 88h98.6c44.8 0 48.3 35.1 49.8 52.7h.9zM224 456c11.5 0 21.4-7 25.7-16.3 1.1-1.8 97.1-169.6 98.2-171.4 11.9-19.6-3.2-44.3-27.2-44.3-13.9 0-23.3 6.4-29.8 20.3L224 362l-66.9-117.7c-6.4-13.9-15.9-20.3-29.8-20.3-24 0-39.1 24.6-27.2 44.3 1.1 1.9 97.1 169.6 98.2 171.4 4.3 9.3 14.2 16.3 25.7 16.3z"] }; +var faViacoin = { prefix: 'fab', iconName: 'viacoin', icon: [384, 512, [], "f237", "M384 32h-64l-80.7 192h-94.5L64 32H0l48 112H0v48h68.5l13.8 32H0v48h102.8L192 480l89.2-208H384v-48h-82.3l13.8-32H384v-48h-48l48-112zM192 336l-27-64h54l-27 64z"] }; +var faViadeo = { prefix: 'fab', iconName: 'viadeo', icon: [448, 512, [], "f2a9", "M276.2 150.5v.7C258.3 98.6 233.6 47.8 205.4 0c43.3 29.2 67 100 70.8 150.5zm32.7 121.7c7.6 18.2 11 37.5 11 57 0 77.7-57.8 141-137.8 139.4l3.8-.3c74.2-46.7 109.3-118.6 109.3-205.1 0-38.1-6.5-75.9-18.9-112 1 11.7 1 23.7 1 35.4 0 91.8-18.1 241.6-116.6 280C95 455.2 49.4 398 49.4 329.2c0-75.6 57.4-142.3 135.4-142.3 16.8 0 33.7 3.1 49.1 9.6 1.7-15.1 6.5-29.9 13.4-43.3-19.9-7.2-41.2-10.7-62.5-10.7-161.5 0-238.7 195.9-129.9 313.7 67.9 74.6 192 73.9 259.8 0 56.6-61.3 60.9-142.4 36.4-201-12.7 8-27.1 13.9-42.2 17zM418.1 11.7c-31 66.5-81.3 47.2-115.8 80.1-12.4 12-20.6 34-20.6 50.5 0 14.1 4.5 27.1 12 38.8 47.4-11 98.3-46 118.2-90.7-.7 5.5-4.8 14.4-7.2 19.2-20.3 35.7-64.6 65.6-99.7 84.9 14.8 14.4 33.7 25.8 55 25.8 79 0 110.1-134.6 58.1-208.6z"] }; +var faViadeoSquare = { prefix: 'fab', iconName: 'viadeo-square', icon: [448, 512, [], "f2aa", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM280.7 381.2c-42.4 46.2-120 46.6-162.4 0-68-73.6-19.8-196.1 81.2-196.1 13.3 0 26.6 2.1 39.1 6.7-4.3 8.4-7.3 17.6-8.4 27.1-9.7-4.1-20.2-6-30.7-6-48.8 0-84.6 41.7-84.6 88.9 0 43 28.5 78.7 69.5 85.9 61.5-24 72.9-117.6 72.9-175 0-7.3 0-14.8-.6-22.1-11.2-32.9-26.6-64.6-44.2-94.5 27.1 18.3 41.9 62.5 44.2 94.1v.4c7.7 22.5 11.8 46.2 11.8 70 0 54.1-21.9 99-68.3 128.2l-2.4.2c50 1 86.2-38.6 86.2-87.2 0-12.2-2.1-24.3-6.9-35.7 9.5-1.9 18.5-5.6 26.4-10.5 15.3 36.6 12.6 87.3-22.8 125.6zM309 233.7c-13.3 0-25.1-7.1-34.4-16.1 21.9-12 49.6-30.7 62.3-53 1.5-3 4.1-8.6 4.5-12-12.5 27.9-44.2 49.8-73.9 56.7-4.7-7.3-7.5-15.5-7.5-24.3 0-10.3 5.2-24.1 12.9-31.6 21.6-20.5 53-8.5 72.4-50 32.5 46.2 13.1 130.3-36.3 130.3z"] }; +var faViber = { prefix: 'fab', iconName: 'viber', icon: [512, 512, [], "f409", "M444 49.9C431.3 38.2 379.9.9 265.3.4c0 0-135.1-8.1-200.9 52.3C27.8 89.3 14.9 143 13.5 209.5c-1.4 66.5-3.1 191.1 117 224.9h.1l-.1 51.6s-.8 20.9 13 25.1c16.6 5.2 26.4-10.7 42.3-27.8 8.7-9.4 20.7-23.2 29.8-33.7 82.2 6.9 145.3-8.9 152.5-11.2 16.6-5.4 110.5-17.4 125.7-142 15.8-128.6-7.6-209.8-49.8-246.5zM457.9 287c-12.9 104-89 110.6-103 115.1-6 1.9-61.5 15.7-131.2 11.2 0 0-52 62.7-68.2 79-5.3 5.3-11.1 4.8-11-5.7 0-6.9.4-85.7.4-85.7-.1 0-.1 0 0 0-101.8-28.2-95.8-134.3-94.7-189.8 1.1-55.5 11.6-101 42.6-131.6 55.7-50.5 170.4-43 170.4-43 96.9.4 143.3 29.6 154.1 39.4 35.7 30.6 53.9 103.8 40.6 211.1zm-139-80.8c.4 8.6-12.5 9.2-12.9.6-1.1-22-11.4-32.7-32.6-33.9-8.6-.5-7.8-13.4.7-12.9 27.9 1.5 43.4 17.5 44.8 46.2zm20.3 11.3c1-42.4-25.5-75.6-75.8-79.3-8.5-.6-7.6-13.5.9-12.9 58 4.2 88.9 44.1 87.8 92.5-.1 8.6-13.1 8.2-12.9-.3zm47 13.4c.1 8.6-12.9 8.7-12.9.1-.6-81.5-54.9-125.9-120.8-126.4-8.5-.1-8.5-12.9 0-12.9 73.7.5 133 51.4 133.7 139.2zM374.9 329v.2c-10.8 19-31 40-51.8 33.3l-.2-.3c-21.1-5.9-70.8-31.5-102.2-56.5-16.2-12.8-31-27.9-42.4-42.4-10.3-12.9-20.7-28.2-30.8-46.6-21.3-38.5-26-55.7-26-55.7-6.7-20.8 14.2-41 33.3-51.8h.2c9.2-4.8 18-3.2 23.9 3.9 0 0 12.4 14.8 17.7 22.1 5 6.8 11.7 17.7 15.2 23.8 6.1 10.9 2.3 22-3.7 26.6l-12 9.6c-6.1 4.9-5.3 14-5.3 14s17.8 67.3 84.3 84.3c0 0 9.1.8 14-5.3l9.6-12c4.6-6 15.7-9.8 26.6-3.7 14.7 8.3 33.4 21.2 45.8 32.9 7 5.7 8.6 14.4 3.8 23.6z"] }; +var faVimeo = { prefix: 'fab', iconName: 'vimeo', icon: [448, 512, [], "f40a", "M403.2 32H44.8C20.1 32 0 52.1 0 76.8v358.4C0 459.9 20.1 480 44.8 480h358.4c24.7 0 44.8-20.1 44.8-44.8V76.8c0-24.7-20.1-44.8-44.8-44.8zM377 180.8c-1.4 31.5-23.4 74.7-66 129.4-44 57.2-81.3 85.8-111.7 85.8-18.9 0-34.8-17.4-47.9-52.3-25.5-93.3-36.4-148-57.4-148-2.4 0-10.9 5.1-25.4 15.2l-15.2-19.6c37.3-32.8 72.9-69.2 95.2-71.2 25.2-2.4 40.7 14.8 46.5 51.7 20.7 131.2 29.9 151 67.6 91.6 13.5-21.4 20.8-37.7 21.8-48.9 3.5-33.2-25.9-30.9-45.8-22.4 15.9-52.1 46.3-77.4 91.2-76 33.3.9 49 22.5 47.1 64.7z"] }; +var faVimeoSquare = { prefix: 'fab', iconName: 'vimeo-square', icon: [448, 512, [], "f194", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16.2 149.6c-1.4 31.1-23.2 73.8-65.3 127.9-43.5 56.5-80.3 84.8-110.4 84.8-18.7 0-34.4-17.2-47.3-51.6-25.2-92.3-35.9-146.4-56.7-146.4-2.4 0-10.8 5-25.1 15.1L64 192c36.9-32.4 72.1-68.4 94.1-70.4 24.9-2.4 40.2 14.6 46 51.1 20.5 129.6 29.6 149.2 66.8 90.5 13.4-21.2 20.6-37.2 21.5-48.3 3.4-32.8-25.6-30.6-45.2-22.2 15.7-51.5 45.8-76.5 90.1-75.1 32.9 1 48.4 22.4 46.5 64z"] }; +var faVimeoV = { prefix: 'fab', iconName: 'vimeo-v', icon: [448, 512, [], "f27d", "M447.8 153.6c-2 43.6-32.4 103.3-91.4 179.1-60.9 79.2-112.4 118.8-154.6 118.8-26.1 0-48.2-24.1-66.3-72.3C100.3 250 85.3 174.3 56.2 174.3c-3.4 0-15.1 7.1-35.2 21.1L0 168.2c51.6-45.3 100.9-95.7 131.8-98.5 34.9-3.4 56.3 20.5 64.4 71.5 28.7 181.5 41.4 208.9 93.6 126.7 18.7-29.6 28.8-52.1 30.2-67.6 4.8-45.9-35.8-42.8-63.3-31 22-72.1 64.1-107.1 126.2-105.1 45.8 1.2 67.5 31.1 64.9 89.4z"] }; +var faVine = { prefix: 'fab', iconName: 'vine', icon: [384, 512, [], "f1ca", "M384 254.7v52.1c-18.4 4.2-36.9 6.1-52.1 6.1-36.9 77.4-103 143.8-125.1 156.2-14 7.9-27.1 8.4-42.7-.8C137 452 34.2 367.7 0 102.7h74.5C93.2 261.8 139 343.4 189.3 404.5c27.9-27.9 54.8-65.1 75.6-106.9-49.8-25.3-80.1-80.9-80.1-145.6 0-65.6 37.7-115.1 102.2-115.1 114.9 0 106.2 127.9 81.6 181.5 0 0-46.4 9.2-63.5-20.5 3.4-11.3 8.2-30.8 8.2-48.5 0-31.3-11.3-46.6-28.4-46.6-18.2 0-30.8 17.1-30.8 50 .1 79.2 59.4 118.7 129.9 101.9z"] }; +var faVk = { prefix: 'fab', iconName: 'vk', icon: [576, 512, [], "f189", "M545 117.7c3.7-12.5 0-21.7-17.8-21.7h-58.9c-15 0-21.9 7.9-25.6 16.7 0 0-30 73.1-72.4 120.5-13.7 13.7-20 18.1-27.5 18.1-3.7 0-9.4-4.4-9.4-16.9V117.7c0-15-4.2-21.7-16.6-21.7h-92.6c-9.4 0-15 7-15 13.5 0 14.2 21.2 17.5 23.4 57.5v86.8c0 19-3.4 22.5-10.9 22.5-20 0-68.6-73.4-97.4-157.4-5.8-16.3-11.5-22.9-26.6-22.9H38.8c-16.8 0-20.2 7.9-20.2 16.7 0 15.6 20 93.1 93.1 195.5C160.4 378.1 229 416 291.4 416c37.5 0 42.1-8.4 42.1-22.9 0-66.8-3.4-73.1 15.4-73.1 8.7 0 23.7 4.4 58.7 38.1 40 40 46.6 57.9 69 57.9h58.9c16.8 0 25.3-8.4 20.4-25-11.2-34.9-86.9-106.7-90.3-111.5-8.7-11.2-6.2-16.2 0-26.2.1-.1 72-101.3 79.4-135.6z"] }; +var faVnv = { prefix: 'fab', iconName: 'vnv', icon: [640, 512, [], "f40b", "M104.9 352c-34.1 0-46.4-30.4-46.4-30.4L2.6 210.1S-7.8 192 13 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.7-74.5c5.6-9.5 8.4-18.1 18.8-18.1h32.8c20.8 0 10.4 18.1 10.4 18.1l-55.8 111.5S174.2 352 140 352h-35.1zm395 0c-34.1 0-46.4-30.4-46.4-30.4l-55.9-111.5S387.2 192 408 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.8-74.5c5.6-9.5 8.4-18.1 18.8-18.1H627c20.8 0 10.4 18.1 10.4 18.1l-55.9 111.5S569.3 352 535.1 352h-35.2zM337.6 192c34.1 0 46.4 30.4 46.4 30.4l55.9 111.5s10.4 18.1-10.4 18.1h-32.8c-10.4 0-13.2-8.7-18.8-18.1l-36.7-74.5s-5.2-13.1-21.1-13.1c-15.9 0-21.1 13.1-21.1 13.1l-36.7 74.5c-5.6 9.4-8.4 18.1-18.8 18.1h-32.9c-20.8 0-10.4-18.1-10.4-18.1l55.9-111.5s12.2-30.4 46.4-30.4h35.1z"] }; +var faVuejs = { prefix: 'fab', iconName: 'vuejs', icon: [448, 512, [], "f41f", "M356.9 64.3H280l-56 88.6-48-88.6H0L224 448 448 64.3h-91.1zm-301.2 32h53.8L224 294.5 338.4 96.3h53.8L224 384.5 55.7 96.3z"] }; +var faWeebly = { prefix: 'fab', iconName: 'weebly', icon: [512, 512, [], "f5cc", "M425.09 65.83c-39.88 0-73.28 25.73-83.66 64.33-18.16-58.06-65.5-64.33-84.95-64.33-19.78 0-66.8 6.28-85.28 64.33-10.38-38.6-43.45-64.33-83.66-64.33C38.59 65.83 0 99.72 0 143.03c0 28.96 4.18 33.27 77.17 233.48 22.37 60.57 67.77 69.35 92.74 69.35 39.23 0 70.04-19.46 85.93-53.98 15.89 34.83 46.69 54.29 85.93 54.29 24.97 0 70.36-9.1 92.74-69.67 76.55-208.65 77.5-205.58 77.5-227.2.63-48.32-36.01-83.47-86.92-83.47zm26.34 114.81l-65.57 176.44c-7.92 21.49-21.22 37.22-46.24 37.22-23.44 0-37.38-12.41-44.03-33.9l-39.28-117.42h-.95L216.08 360.4c-6.96 21.5-20.9 33.6-44.02 33.6-25.02 0-38.33-15.74-46.24-37.22L60.88 181.55c-5.38-14.83-7.92-23.91-7.92-34.5 0-16.34 15.84-29.36 38.33-29.36 18.69 0 31.99 11.8 36.11 29.05l44.03 139.82h.95l44.66-136.79c6.02-19.67 16.47-32.08 38.96-32.08s32.94 12.11 38.96 32.08l44.66 136.79h.95l44.03-139.82c4.12-17.25 17.42-29.05 36.11-29.05 22.17 0 38.33 13.32 38.33 35.71-.32 7.87-4.12 16.04-7.61 27.24z"] }; +var faWeibo = { prefix: 'fab', iconName: 'weibo', icon: [512, 512, [], "f18a", "M407 177.6c7.6-24-13.4-46.8-37.4-41.7-22 4.8-28.8-28.1-7.1-32.8 50.1-10.9 92.3 37.1 76.5 84.8-6.8 21.2-38.8 10.8-32-10.3zM214.8 446.7C108.5 446.7 0 395.3 0 310.4c0-44.3 28-95.4 76.3-143.7C176 67 279.5 65.8 249.9 161c-4 13.1 12.3 5.7 12.3 6 79.5-33.6 140.5-16.8 114 51.4-3.7 9.4 1.1 10.9 8.3 13.1 135.7 42.3 34.8 215.2-169.7 215.2zm143.7-146.3c-5.4-55.7-78.5-94-163.4-85.7-84.8 8.6-148.8 60.3-143.4 116s78.5 94 163.4 85.7c84.8-8.6 148.8-60.3 143.4-116zM347.9 35.1c-25.9 5.6-16.8 43.7 8.3 38.3 72.3-15.2 134.8 52.8 111.7 124-7.4 24.2 29.1 37 37.4 12 31.9-99.8-55.1-195.9-157.4-174.3zm-78.5 311c-17.1 38.8-66.8 60-109.1 46.3-40.8-13.1-58-53.4-40.3-89.7 17.7-35.4 63.1-55.4 103.4-45.1 42 10.8 63.1 50.2 46 88.5zm-86.3-30c-12.9-5.4-30 .3-38 12.9-8.3 12.9-4.3 28 8.6 34 13.1 6 30.8.3 39.1-12.9 8-13.1 3.7-28.3-9.7-34zm32.6-13.4c-5.1-1.7-11.4.6-14.3 5.4-2.9 5.1-1.4 10.6 3.7 12.9 5.1 2 11.7-.3 14.6-5.4 2.8-5.2 1.1-10.9-4-12.9z"] }; +var faWeixin = { prefix: 'fab', iconName: 'weixin', icon: [576, 512, [], "f1d7", "M385.2 167.6c6.4 0 12.6.3 18.8 1.1C387.4 90.3 303.3 32 207.7 32 100.5 32 13 104.8 13 197.4c0 53.4 29.3 97.5 77.9 131.6l-19.3 58.6 68-34.1c24.4 4.8 43.8 9.7 68.2 9.7 6.2 0 12.1-.3 18.3-.8-4-12.9-6.2-26.6-6.2-40.8-.1-84.9 72.9-154 165.3-154zm-104.5-52.9c14.5 0 24.2 9.7 24.2 24.4 0 14.5-9.7 24.2-24.2 24.2-14.8 0-29.3-9.7-29.3-24.2.1-14.7 14.6-24.4 29.3-24.4zm-136.4 48.6c-14.5 0-29.3-9.7-29.3-24.2 0-14.8 14.8-24.4 29.3-24.4 14.8 0 24.4 9.7 24.4 24.4 0 14.6-9.6 24.2-24.4 24.2zM563 319.4c0-77.9-77.9-141.3-165.4-141.3-92.7 0-165.4 63.4-165.4 141.3S305 460.7 397.6 460.7c19.3 0 38.9-5.1 58.6-9.9l53.4 29.3-14.8-48.6C534 402.1 563 363.2 563 319.4zm-219.1-24.5c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.8 0 24.4 9.7 24.4 19.3 0 10-9.7 19.6-24.4 19.6zm107.1 0c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.5 0 24.4 9.7 24.4 19.3.1 10-9.9 19.6-24.4 19.6z"] }; +var faWhatsapp = { prefix: 'fab', iconName: 'whatsapp', icon: [448, 512, [], "f232", "M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"] }; +var faWhatsappSquare = { prefix: 'fab', iconName: 'whatsapp-square', icon: [448, 512, [], "f40c", "M224 122.8c-72.7 0-131.8 59.1-131.9 131.8 0 24.9 7 49.2 20.2 70.1l3.1 5-13.3 48.6 49.9-13.1 4.8 2.9c20.2 12 43.4 18.4 67.1 18.4h.1c72.6 0 133.3-59.1 133.3-131.8 0-35.2-15.2-68.3-40.1-93.2-25-25-58-38.7-93.2-38.7zm77.5 188.4c-3.3 9.3-19.1 17.7-26.7 18.8-12.6 1.9-22.4.9-47.5-9.9-39.7-17.2-65.7-57.2-67.7-59.8-2-2.6-16.2-21.5-16.2-41s10.2-29.1 13.9-33.1c3.6-4 7.9-5 10.6-5 2.6 0 5.3 0 7.6.1 2.4.1 5.7-.9 8.9 6.8 3.3 7.9 11.2 27.4 12.2 29.4s1.7 4.3.3 6.9c-7.6 15.2-15.7 14.6-11.6 21.6 15.3 26.3 30.6 35.4 53.9 47.1 4 2 6.3 1.7 8.6-1 2.3-2.6 9.9-11.6 12.5-15.5 2.6-4 5.3-3.3 8.9-2 3.6 1.3 23.1 10.9 27.1 12.9s6.6 3 7.6 4.6c.9 1.9.9 9.9-2.4 19.1zM400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM223.9 413.2c-26.6 0-52.7-6.7-75.8-19.3L64 416l22.5-82.2c-13.9-24-21.2-51.3-21.2-79.3C65.4 167.1 136.5 96 223.9 96c42.4 0 82.2 16.5 112.2 46.5 29.9 30 47.9 69.8 47.9 112.2 0 87.4-72.7 158.5-160.1 158.5z"] }; +var faWhmcs = { prefix: 'fab', iconName: 'whmcs', icon: [448, 512, [], "f40d", "M448 161v-21.3l-28.5-8.8-2.2-10.4 20.1-20.7L427 80.4l-29 7.5-7.2-7.5 7.5-28.2-19.1-11.6-21.3 21-10.7-3.2-7-26.4h-22.6l-6.2 26.4-12.1 3.2-19.7-21-19.4 11 8.1 27.7-8.1 8.4-28.5-7.5-11 19.1 20.7 21-2.9 10.4-28.5 7.8-.3 21.7 28.8 7.5 2.4 12.1-20.1 19.9 10.4 18.5 29.6-7.5 7.2 8.6-8.1 26.9 19.9 11.6 19.4-20.4 11.6 2.9 6.7 28.5 22.6.3 6.7-28.8 11.6-3.5 20.7 21.6 20.4-12.1-8.8-28 7.8-8.1 28.8 8.8 10.3-20.1-20.9-18.8 2.2-12.1 29.1-7zm-119.2 45.2c-31.3 0-56.8-25.4-56.8-56.8s25.4-56.8 56.8-56.8 56.8 25.4 56.8 56.8c0 31.5-25.4 56.8-56.8 56.8zm72.3 16.4l46.9 14.5V277l-55.1 13.4-4.1 22.7 38.9 35.3-19.2 37.9-54-16.7-14.6 15.2 16.7 52.5-38.3 22.7-38.9-40.5-21.7 6.6-12.6 54-42.4-.5-12.6-53.6-21.7-5.6-36.4 38.4-37.4-21.7 15.2-50.5-13.7-16.1-55.5 14.1-19.7-34.8 37.9-37.4-4.8-22.8-54-14.1.5-40.9L54 219.9l5.7-19.7-38.9-39.4L41.5 125l53.6 14.1 15.2-15.7-15.2-52 36.4-20.7 36.8 39.4L191 84l11.6-52H245l11.6 45.9L234 72l-6.3-1.7-3.3 5.7-11 19.1-3.3 5.6 4.6 4.6 17.2 17.4-.3 1-23.8 6.5-6.2 1.7-.1 6.4-.2 12.9C153.8 161.6 118 204 118 254.7c0 58.3 47.3 105.7 105.7 105.7 50.5 0 92.7-35.4 103.2-82.8l13.2.2 6.9.1 1.6-6.7 5.6-24 1.9-.6 17.1 17.8 4.7 4.9 5.8-3.4 20.4-12.1 5.8-3.5-2-6.5-6.8-21.2z"] }; +var faWikipediaW = { prefix: 'fab', iconName: 'wikipedia-w', icon: [640, 512, [], "f266", "M640 51.2l-.3 12.2c-28.1.8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3.3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4.2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5.3v13.1c-19.4.6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4.3-3.6 0-10.3.3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5.8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1.2.5z"] }; +var faWindows = { prefix: 'fab', iconName: 'windows', icon: [448, 512, [], "f17a", "M0 93.7l183.6-25.3v177.4H0V93.7zm0 324.6l183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z"] }; +var faWix = { prefix: 'fab', iconName: 'wix', icon: [640, 512, [], "f5cf", "M393.38 131.69c0 13.03 2.08 32.69-28.68 43.83-9.52 3.45-15.95 9.66-15.95 9.66 0-31 4.72-42.22 17.4-48.86 9.75-5.11 27.23-4.63 27.23-4.63zm-115.8 35.54l-34.24 132.66-28.48-108.57c-7.69-31.99-20.81-48.53-48.43-48.53-27.37 0-40.66 16.18-48.43 48.53L89.52 299.89 55.28 167.23C49.73 140.51 23.86 128.96 0 131.96l65.57 247.93s21.63 1.56 32.46-3.96c14.22-7.25 20.98-12.84 29.59-46.57 7.67-30.07 29.11-118.41 31.12-124.7 4.76-14.94 11.09-13.81 15.4 0 1.97 6.3 23.45 94.63 31.12 124.7 8.6 33.73 15.37 39.32 29.59 46.57 10.82 5.52 32.46 3.96 32.46 3.96l65.57-247.93c-24.42-3.07-49.82 8.93-55.3 35.27zm115.78 5.21s-4.1 6.34-13.46 11.57c-6.01 3.36-11.78 5.64-17.97 8.61-15.14 7.26-13.18 13.95-13.18 35.2v152.07s16.55 2.09 27.37-3.43c13.93-7.1 17.13-13.95 17.26-44.78V181.41l-.02.01v-8.98zm163.44 84.08L640 132.78s-35.11-5.98-52.5 9.85c-13.3 12.1-24.41 29.55-54.18 72.47-.47.73-6.25 10.54-13.07 0-29.29-42.23-40.8-60.29-54.18-72.47-17.39-15.83-52.5-9.85-52.5-9.85l83.2 123.74-82.97 123.36s36.57 4.62 53.95-11.21c11.49-10.46 17.58-20.37 52.51-70.72 6.81-10.52 12.57-.77 13.07 0 29.4 42.38 39.23 58.06 53.14 70.72 17.39 15.83 53.32 11.21 53.32 11.21L556.8 256.52z"] }; +var faWolfPackBattalion = { prefix: 'fab', iconName: 'wolf-pack-battalion', icon: [456, 512, [], "f514", "M239.73 471.53l10.56 15.84 5.28-12.32 5.28 7.04V512c21.06-7.92 21.11-66.86 25.51-97.21 4.62-31.89-.88-92.81 81.37-149.11-8.88-23.61-12-49.43-2.64-80.05 27.87 3.34 53.94 10.58 63.34 54.1l-30.35 8.36c11.15 23.04 17.01 46.76 13.2 72.14L384 313.18l-6.16 33.43-18.47-7.04-8.8 33.43-19.35-7.04 26.39 21.11 8.8-28.15 24.63 5.28 7.04-35.63 26.39 14.52c.25-20.02 6.97-58.06-8.8-84.45l26.39 5.28c3.99-22.07-2.38-39.21-7.92-56.74l22.43 9.68c-.44-25.07-29.94-56.79-61.58-58.5-20.22-1.09-56.74-25.17-54.1-51.9 1.96-19.87 17.45-42.62 43.11-49.7-43.99 36.51-9.68 67.3 5.28 73.46 4.4-11.44 17.54-69.08 0-130.2-40.47 22.87-89.73 65.1-93.25 147.79l-58.06 38.71-3.52 93.25 107.33-59.82 7.04 7.04-17.59 3.52-43.99 38.71-15.84-5.28-28.15 49.26-3.52 119.64 21.11 15.84-32.55 15.84-32.55-15.84 21.11-15.84-3.52-119.64-28.15-49.26-15.84 5.28-43.99-38.71-17.59-3.52 7.04-7.04 107.33 59.82-3.52-93.25-58.06-38.71C157.03 65.1 107.77 22.87 67.3 0c-17.54 61.12-4.4 118.76 0 130.2 14.96-6.16 49.26-36.95 5.28-73.46 25.66 7.08 41.15 29.83 43.11 49.7 2.63 26.74-33.88 50.81-54.1 51.9C29.94 160.06.44 191.78 0 216.85l22.43-9.68c-5.54 17.53-11.91 34.67-7.92 56.74l26.39-5.28c-15.76 26.39-9.05 64.43-8.8 84.45l26.39-14.52 7.04 35.63 24.63-5.28 8.8 28.15 26.39-21.11-19.34 7.05-8.8-33.43-18.47 7.04-6.16-33.43-27.27 7.04c-3.82-25.38 2.05-49.1 13.2-72.14l-30.35-8.36c9.4-43.52 35.47-50.77 63.34-54.1 9.36 30.62 6.24 56.45-2.64 80.05 82.25 56.3 76.75 117.23 81.37 149.11 4.4 30.35 4.45 89.29 25.51 97.21v-29.91l5.28-7.04 5.28 12.32 10.56-15.84 11.44 21.11 11.43-21.1zm79.17-95.01l-15.84-10.56c7.47-4.36 13.76-8.42 19.35-12.32-.6 7.26-.27 13.88-3.51 22.88zm28.15-49.26c-.4 10.94-.9 21.66-1.76 31.67-7.85-1.86-15.57-3.8-21.11-7.04 8.24-7.9 15.55-16.27 22.87-24.63zm24.63 5.28c-.02-13.43-2.05-24.21-5.28-33.43-5.38 9.09-11.23 18.18-18.47 27.27l23.75 6.16zm3.52-80.94c19.44 12.81 27.8 33.66 29.91 56.3-12.32-4.53-24.63-9.31-36.95-10.56 5.06-11.99 6.65-28.14 7.04-45.74zm-1.76-45.74c.81 14.3 1.84 28.82 1.76 42.23 19.22-8.11 29.78-9.72 43.99-14.08-10.6-18.95-27.22-25.52-45.75-28.15zM137.68 376.52l15.84-10.56c-7.47-4.36-13.76-8.42-19.35-12.32.6 7.26.27 13.88 3.51 22.88zm-28.15-49.26c.4 10.94.9 21.66 1.76 31.67 7.85-1.86 15.57-3.8 21.11-7.04-8.24-7.9-15.55-16.27-22.87-24.63zm-24.64 5.28c.02-13.43 2.05-24.21 5.28-33.43 5.38 9.09 11.23 18.18 18.47 27.27l-23.75 6.16zm-3.52-80.94c-19.44 12.81-27.8 33.66-29.91 56.3 12.32-4.53 24.63-9.31 36.95-10.56-5.05-11.99-6.65-28.14-7.04-45.74zm1.76-45.74c-.81 14.3-1.84 28.82-1.76 42.23-19.22-8.11-29.78-9.72-43.99-14.08 10.61-18.95 27.22-25.52 45.75-28.15z"] }; +var faWordpress = { prefix: 'fab', iconName: 'wordpress', icon: [512, 512, [], "f19a", "M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z"] }; +var faWordpressSimple = { prefix: 'fab', iconName: 'wordpress-simple', icon: [512, 512, [], "f411", "M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8zM33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256zm223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6zm30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3-80.7-239.6zm81.4 297.2l68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7z"] }; +var faWpbeginner = { prefix: 'fab', iconName: 'wpbeginner', icon: [512, 512, [], "f297", "M462.799 322.374C519.01 386.682 466.961 480 370.944 480c-39.602 0-78.824-17.687-100.142-50.04-6.887.356-22.702.356-29.59 0C219.848 462.381 180.588 480 141.069 480c-95.49 0-148.348-92.996-91.855-157.626C-29.925 190.523 80.479 32 256.006 32c175.632 0 285.87 158.626 206.793 290.374zm-339.647-82.972h41.529v-58.075h-41.529v58.075zm217.18 86.072v-23.839c-60.506 20.915-132.355 9.198-187.589-33.971l.246 24.897c51.101 46.367 131.746 57.875 187.343 32.913zm-150.753-86.072h166.058v-58.075H189.579v58.075z"] }; +var faWpexplorer = { prefix: 'fab', iconName: 'wpexplorer', icon: [512, 512, [], "f2de", "M512 256c0 141.2-114.7 256-256 256C114.8 512 0 397.3 0 256S114.7 0 256 0s256 114.7 256 256zm-32 0c0-123.2-100.3-224-224-224C132.5 32 32 132.5 32 256s100.5 224 224 224 224-100.5 224-224zM160.9 124.6l86.9 37.1-37.1 86.9-86.9-37.1 37.1-86.9zm110 169.1l46.6 94h-14.6l-50-100-48.9 100h-14l51.1-106.9-22.3-9.4 6-14 68.6 29.1-6 14.3-16.5-7.1zm-11.8-116.3l68.6 29.4-29.4 68.3L230 246l29.1-68.6zm80.3 42.9l54.6 23.1-23.4 54.3-54.3-23.1 23.1-54.3z"] }; +var faWpforms = { prefix: 'fab', iconName: 'wpforms', icon: [448, 512, [], "f298", "M448 75.2v361.7c0 24.3-19 43.2-43.2 43.2H43.2C19.3 480 0 461.4 0 436.8V75.2C0 51.1 18.8 32 43.2 32h361.7c24 0 43.1 18.8 43.1 43.2zm-37.3 361.6V75.2c0-3-2.6-5.8-5.8-5.8h-9.3L285.3 144 224 94.1 162.8 144 52.5 69.3h-9.3c-3.2 0-5.8 2.8-5.8 5.8v361.7c0 3 2.6 5.8 5.8 5.8h361.7c3.2.1 5.8-2.7 5.8-5.8zM150.2 186v37H76.7v-37h73.5zm0 74.4v37.3H76.7v-37.3h73.5zm11.1-147.3l54-43.7H96.8l64.5 43.7zm210 72.9v37h-196v-37h196zm0 74.4v37.3h-196v-37.3h196zm-84.6-147.3l64.5-43.7H232.8l53.9 43.7zM371.3 335v37.3h-99.4V335h99.4z"] }; +var faXbox = { prefix: 'fab', iconName: 'xbox', icon: [512, 512, [], "f412", "M369.9 318.2c44.3 54.3 64.7 98.8 54.4 118.7-7.9 15.1-56.7 44.6-92.6 55.9-29.6 9.3-68.4 13.3-100.4 10.2-38.2-3.7-76.9-17.4-110.1-39C93.3 445.8 87 438.3 87 423.4c0-29.9 32.9-82.3 89.2-142.1 32-33.9 76.5-73.7 81.4-72.6 9.4 2.1 84.3 75.1 112.3 109.5zM188.6 143.8c-29.7-26.9-58.1-53.9-86.4-63.4-15.2-5.1-16.3-4.8-28.7 8.1-29.2 30.4-53.5 79.7-60.3 122.4-5.4 34.2-6.1 43.8-4.2 60.5 5.6 50.5 17.3 85.4 40.5 120.9 9.5 14.6 12.1 17.3 9.3 9.9-4.2-11-.3-37.5 9.5-64 14.3-39 53.9-112.9 120.3-194.4zm311.6 63.5C483.3 127.3 432.7 77 425.6 77c-7.3 0-24.2 6.5-36 13.9-23.3 14.5-41 31.4-64.3 52.8C367.7 197 427.5 283.1 448.2 346c6.8 20.7 9.7 41.1 7.4 52.3-1.7 8.5-1.7 8.5 1.4 4.6 6.1-7.7 19.9-31.3 25.4-43.5 7.4-16.2 15-40.2 18.6-58.7 4.3-22.5 3.9-70.8-.8-93.4zM141.3 43C189 40.5 251 77.5 255.6 78.4c.7.1 10.4-4.2 21.6-9.7 63.9-31.1 94-25.8 107.4-25.2-63.9-39.3-152.7-50-233.9-11.7-23.4 11.1-24 11.9-9.4 11.2z"] }; +var faXing = { prefix: 'fab', iconName: 'xing', icon: [384, 512, [], "f168", "M162.7 210c-1.8 3.3-25.2 44.4-70.1 123.5-4.9 8.3-10.8 12.5-17.7 12.5H9.8c-7.7 0-12.1-7.5-8.5-14.4l69-121.3c.2 0 .2-.1 0-.3l-43.9-75.6c-4.3-7.8.3-14.1 8.5-14.1H100c7.3 0 13.3 4.1 18 12.2l44.7 77.5zM382.6 46.1l-144 253v.3L330.2 466c3.9 7.1.2 14.1-8.5 14.1h-65.2c-7.6 0-13.6-4-18-12.2l-92.4-168.5c3.3-5.8 51.5-90.8 144.8-255.2 4.6-8.1 10.4-12.2 17.5-12.2h65.7c8 0 12.3 6.7 8.5 14.1z"] }; +var faXingSquare = { prefix: 'fab', iconName: 'xing-square', icon: [448, 512, [], "f169", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM140.4 320.2H93.8c-5.5 0-8.7-5.3-6-10.3l49.3-86.7c.1 0 .1-.1 0-.2l-31.4-54c-3-5.6.2-10.1 6-10.1h46.6c5.2 0 9.5 2.9 12.9 8.7l31.9 55.3c-1.3 2.3-18 31.7-50.1 88.2-3.5 6.2-7.7 9.1-12.6 9.1zm219.7-214.1L257.3 286.8v.2l65.5 119c2.8 5.1.1 10.1-6 10.1h-46.6c-5.5 0-9.7-2.9-12.9-8.7l-66-120.3c2.3-4.1 36.8-64.9 103.4-182.3 3.3-5.8 7.4-8.7 12.5-8.7h46.9c5.7-.1 8.8 4.7 6 10z"] }; +var faYCombinator = { prefix: 'fab', iconName: 'y-combinator', icon: [448, 512, [], "f23b", "M448 32v448H0V32h448zM236 287.5L313.5 142h-32.7L235 233c-4.7 9.3-9 18.3-12.8 26.8L210 233l-45.2-91h-35l76.7 143.8v94.5H236v-92.8z"] }; +var faYahoo = { prefix: 'fab', iconName: 'yahoo', icon: [448, 512, [], "f19e", "M252 292l4 220c-12.7-2.2-23.5-3.9-32.3-3.9-8.4 0-19.2 1.7-32.3 3.9l4-220C140.4 197.2 85 95.2 21.4 0c11.9 3.1 23 3.9 33.2 3.9 9 0 20.4-.8 34.1-3.9 40.9 72.2 82.1 138.7 135 225.5C261 163.9 314.8 81.4 358.6 0c11.1 2.9 22 3.9 32.9 3.9 11.5 0 23.2-1 35-3.9C392.1 47.9 294.9 216.9 252 292z"] }; +var faYandex = { prefix: 'fab', iconName: 'yandex', icon: [256, 512, [], "f413", "M153.1 315.8L65.7 512H2l96-209.8c-45.1-22.9-75.2-64.4-75.2-141.1C22.7 53.7 90.8 0 171.7 0H254v512h-55.1V315.8h-45.8zm45.8-269.3h-29.4c-44.4 0-87.4 29.4-87.4 114.6 0 82.3 39.4 108.8 87.4 108.8h29.4V46.5z"] }; +var faYandexInternational = { prefix: 'fab', iconName: 'yandex-international', icon: [320, 512, [], "f414", "M129.5 512V345.9L18.5 48h55.8l81.8 229.7L250.2 0h51.3L180.8 347.8V512h-51.3z"] }; +var faYelp = { prefix: 'fab', iconName: 'yelp', icon: [384, 512, [], "f1e9", "M136.9 328c-1 .3-109.2 35.7-115.8 35.7-15.2-.9-18.5-16.2-19.9-31.2-1.5-14.2-1.4-29.8.3-46.8 1.9-18.8 5.5-45.1 24.2-44 4.8 0 67.1 25.9 112.7 44.4 17.1 6.8 18.6 35.8-1.5 41.9zm57.9-113.9c1.8 38.2-25.5 48.5-47.2 14.3L41.3 60.4c-1.5-6.6.3-12.4 5.3-17.4C62.2 26.5 146 3.2 168.1 8.9c7.5 1.9 12.1 6.1 13.8 12.6 1.3 8.3 11.5 167.4 12.9 192.6zm-1.4 164.8c0 4.6.2 116.4-1.7 121.5-2.3 6-7 9.7-14.3 11.2-10.1 1.7-27.1-1.9-51-10.7-22-8.1-56.7-21.5-49.3-42.5 2.8-6.9 51.4-62.8 77.3-93.6 12-15.2 39.8-5.5 39 14.1zm180.2-117.8c-5.6 3.7-110.8 28.2-118.1 30.6l.3-.6c-18.1 4.7-35.4-18.5-23.3-34.6 3.7-3.7 65.9-92.4 72.8-97 5.2-3.6 11.3-3.8 18.3-.6 18.4 8.8 55.1 63.1 57.4 84.6-.1 2.9 1.2 11.7-7.4 17.6zm10.1 130.7c-2.7 20.6-44.5 73.4-63.8 81-6.9 2.6-12.9 2-17.7-2-5-3.5-61.8-97.1-64.9-102.3-10.9-16.2 6.8-39.8 25.6-33.2 0 0 110.5 35.7 114.7 39.4 5.2 4.1 7.2 9.8 6.1 17.1z"] }; +var faYoast = { prefix: 'fab', iconName: 'yoast', icon: [448, 512, [], "f2b1", "M91.3 76h186l-7 18.9h-179c-39.7 0-71.9 31.6-71.9 70.3v205.4c0 35.4 24.9 70.3 84 70.3V460H91.3C41.2 460 0 419.8 0 370.5V165.2C0 115.9 40.7 76 91.3 76zm229.1-56h66.5C243.1 398.1 241.2 418.9 202.2 459.3c-20.8 21.6-49.3 31.7-78.3 32.7v-51.1c49.2-7.7 64.6-49.9 64.6-75.3 0-20.1.6-12.6-82.1-223.2h61.4L218.2 299 320.4 20zM448 161.5V460H234c6.6-9.6 10.7-16.3 12.1-19.4h182.5V161.5c0-32.5-17.1-51.9-48.2-62.9l6.7-17.6c41.7 13.6 60.9 43.1 60.9 80.5z"] }; +var faYoutube = { prefix: 'fab', iconName: 'youtube', icon: [576, 512, [], "f167", "M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"] }; +var faYoutubeSquare = { prefix: 'fab', iconName: 'youtube-square', icon: [448, 512, [], "f431", "M186.8 202.1l95.2 54.1-95.2 54.1V202.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-42 176.3s0-59.6-7.6-88.2c-4.2-15.8-16.5-28.2-32.2-32.4C337.9 128 224 128 224 128s-113.9 0-142.2 7.7c-15.7 4.2-28 16.6-32.2 32.4-7.6 28.5-7.6 88.2-7.6 88.2s0 59.6 7.6 88.2c4.2 15.8 16.5 27.7 32.2 31.9C110.1 384 224 384 224 384s113.9 0 142.2-7.7c15.7-4.2 28-16.1 32.2-31.9 7.6-28.5 7.6-88.1 7.6-88.1z"] }; +var _iconsCache = { + fa500px: fa500px, + faAccessibleIcon: faAccessibleIcon, + faAccusoft: faAccusoft, + faAdn: faAdn, + faAdversal: faAdversal, + faAffiliatetheme: faAffiliatetheme, + faAlgolia: faAlgolia, + faAmazon: faAmazon, + faAmazonPay: faAmazonPay, + faAmilia: faAmilia, + faAndroid: faAndroid, + faAngellist: faAngellist, + faAngrycreative: faAngrycreative, + faAngular: faAngular, + faAppStore: faAppStore, + faAppStoreIos: faAppStoreIos, + faApper: faApper, + faApple: faApple, + faApplePay: faApplePay, + faAsymmetrik: faAsymmetrik, + faAudible: faAudible, + faAutoprefixer: faAutoprefixer, + faAvianex: faAvianex, + faAviato: faAviato, + faAws: faAws, + faBandcamp: faBandcamp, + faBehance: faBehance, + faBehanceSquare: faBehanceSquare, + faBimobject: faBimobject, + faBitbucket: faBitbucket, + faBitcoin: faBitcoin, + faBity: faBity, + faBlackTie: faBlackTie, + faBlackberry: faBlackberry, + faBlogger: faBlogger, + faBloggerB: faBloggerB, + faBluetooth: faBluetooth, + faBluetoothB: faBluetoothB, + faBtc: faBtc, + faBuromobelexperte: faBuromobelexperte, + faBuysellads: faBuysellads, + faCcAmazonPay: faCcAmazonPay, + faCcAmex: faCcAmex, + faCcApplePay: faCcApplePay, + faCcDinersClub: faCcDinersClub, + faCcDiscover: faCcDiscover, + faCcJcb: faCcJcb, + faCcMastercard: faCcMastercard, + faCcPaypal: faCcPaypal, + faCcStripe: faCcStripe, + faCcVisa: faCcVisa, + faCentercode: faCentercode, + faChrome: faChrome, + faCloudscale: faCloudscale, + faCloudsmith: faCloudsmith, + faCloudversify: faCloudversify, + faCodepen: faCodepen, + faCodiepie: faCodiepie, + faConnectdevelop: faConnectdevelop, + faContao: faContao, + faCpanel: faCpanel, + faCreativeCommons: faCreativeCommons, + faCreativeCommonsBy: faCreativeCommonsBy, + faCreativeCommonsNc: faCreativeCommonsNc, + faCreativeCommonsNcEu: faCreativeCommonsNcEu, + faCreativeCommonsNcJp: faCreativeCommonsNcJp, + faCreativeCommonsNd: faCreativeCommonsNd, + faCreativeCommonsPd: faCreativeCommonsPd, + faCreativeCommonsPdAlt: faCreativeCommonsPdAlt, + faCreativeCommonsRemix: faCreativeCommonsRemix, + faCreativeCommonsSa: faCreativeCommonsSa, + faCreativeCommonsSampling: faCreativeCommonsSampling, + faCreativeCommonsSamplingPlus: faCreativeCommonsSamplingPlus, + faCreativeCommonsShare: faCreativeCommonsShare, + faCss3: faCss3, + faCss3Alt: faCss3Alt, + faCuttlefish: faCuttlefish, + faDAndD: faDAndD, + faDashcube: faDashcube, + faDelicious: faDelicious, + faDeploydog: faDeploydog, + faDeskpro: faDeskpro, + faDeviantart: faDeviantart, + faDigg: faDigg, + faDigitalOcean: faDigitalOcean, + faDiscord: faDiscord, + faDiscourse: faDiscourse, + faDochub: faDochub, + faDocker: faDocker, + faDraft2digital: faDraft2digital, + faDribbble: faDribbble, + faDribbbleSquare: faDribbbleSquare, + faDropbox: faDropbox, + faDrupal: faDrupal, + faDyalog: faDyalog, + faEarlybirds: faEarlybirds, + faEbay: faEbay, + faEdge: faEdge, + faElementor: faElementor, + faEmber: faEmber, + faEmpire: faEmpire, + faEnvira: faEnvira, + faErlang: faErlang, + faEthereum: faEthereum, + faEtsy: faEtsy, + faExpeditedssl: faExpeditedssl, + faFacebook: faFacebook, + faFacebookF: faFacebookF, + faFacebookMessenger: faFacebookMessenger, + faFacebookSquare: faFacebookSquare, + faFirefox: faFirefox, + faFirstOrder: faFirstOrder, + faFirstOrderAlt: faFirstOrderAlt, + faFirstdraft: faFirstdraft, + faFlickr: faFlickr, + faFlipboard: faFlipboard, + faFly: faFly, + faFontAwesome: faFontAwesome, + faFontAwesomeAlt: faFontAwesomeAlt, + faFontAwesomeFlag: faFontAwesomeFlag, + faFontAwesomeLogoFull: faFontAwesomeLogoFull, + faFonticons: faFonticons, + faFonticonsFi: faFonticonsFi, + faFortAwesome: faFortAwesome, + faFortAwesomeAlt: faFortAwesomeAlt, + faForumbee: faForumbee, + faFoursquare: faFoursquare, + faFreeCodeCamp: faFreeCodeCamp, + faFreebsd: faFreebsd, + faFulcrum: faFulcrum, + faGalacticRepublic: faGalacticRepublic, + faGalacticSenate: faGalacticSenate, + faGetPocket: faGetPocket, + faGg: faGg, + faGgCircle: faGgCircle, + faGit: faGit, + faGitSquare: faGitSquare, + faGithub: faGithub, + faGithubAlt: faGithubAlt, + faGithubSquare: faGithubSquare, + faGitkraken: faGitkraken, + faGitlab: faGitlab, + faGitter: faGitter, + faGlide: faGlide, + faGlideG: faGlideG, + faGofore: faGofore, + faGoodreads: faGoodreads, + faGoodreadsG: faGoodreadsG, + faGoogle: faGoogle, + faGoogleDrive: faGoogleDrive, + faGooglePlay: faGooglePlay, + faGooglePlus: faGooglePlus, + faGooglePlusG: faGooglePlusG, + faGooglePlusSquare: faGooglePlusSquare, + faGoogleWallet: faGoogleWallet, + faGratipay: faGratipay, + faGrav: faGrav, + faGripfire: faGripfire, + faGrunt: faGrunt, + faGulp: faGulp, + faHackerNews: faHackerNews, + faHackerNewsSquare: faHackerNewsSquare, + faHips: faHips, + faHireAHelper: faHireAHelper, + faHooli: faHooli, + faHornbill: faHornbill, + faHotjar: faHotjar, + faHouzz: faHouzz, + faHtml5: faHtml5, + faHubspot: faHubspot, + faImdb: faImdb, + faInstagram: faInstagram, + faInternetExplorer: faInternetExplorer, + faIoxhost: faIoxhost, + faItunes: faItunes, + faItunesNote: faItunesNote, + faJava: faJava, + faJediOrder: faJediOrder, + faJenkins: faJenkins, + faJoget: faJoget, + faJoomla: faJoomla, + faJs: faJs, + faJsSquare: faJsSquare, + faJsfiddle: faJsfiddle, + faKeybase: faKeybase, + faKeycdn: faKeycdn, + faKickstarter: faKickstarter, + faKickstarterK: faKickstarterK, + faKorvue: faKorvue, + faLaravel: faLaravel, + faLastfm: faLastfm, + faLastfmSquare: faLastfmSquare, + faLeanpub: faLeanpub, + faLess: faLess, + faLine: faLine, + faLinkedin: faLinkedin, + faLinkedinIn: faLinkedinIn, + faLinode: faLinode, + faLinux: faLinux, + faLyft: faLyft, + faMagento: faMagento, + faMailchimp: faMailchimp, + faMandalorian: faMandalorian, + faMastodon: faMastodon, + faMaxcdn: faMaxcdn, + faMedapps: faMedapps, + faMedium: faMedium, + faMediumM: faMediumM, + faMedrt: faMedrt, + faMeetup: faMeetup, + faMegaport: faMegaport, + faMicrosoft: faMicrosoft, + faMix: faMix, + faMixcloud: faMixcloud, + faMizuni: faMizuni, + faModx: faModx, + faMonero: faMonero, + faNapster: faNapster, + faNimblr: faNimblr, + faNintendoSwitch: faNintendoSwitch, + faNode: faNode, + faNodeJs: faNodeJs, + faNpm: faNpm, + faNs8: faNs8, + faNutritionix: faNutritionix, + faOdnoklassniki: faOdnoklassniki, + faOdnoklassnikiSquare: faOdnoklassnikiSquare, + faOldRepublic: faOldRepublic, + faOpencart: faOpencart, + faOpenid: faOpenid, + faOpera: faOpera, + faOptinMonster: faOptinMonster, + faOsi: faOsi, + faPage4: faPage4, + faPagelines: faPagelines, + faPalfed: faPalfed, + faPatreon: faPatreon, + faPaypal: faPaypal, + faPeriscope: faPeriscope, + faPhabricator: faPhabricator, + faPhoenixFramework: faPhoenixFramework, + faPhoenixSquadron: faPhoenixSquadron, + faPhp: faPhp, + faPiedPiper: faPiedPiper, + faPiedPiperAlt: faPiedPiperAlt, + faPiedPiperHat: faPiedPiperHat, + faPiedPiperPp: faPiedPiperPp, + faPinterest: faPinterest, + faPinterestP: faPinterestP, + faPinterestSquare: faPinterestSquare, + faPlaystation: faPlaystation, + faProductHunt: faProductHunt, + faPushed: faPushed, + faPython: faPython, + faQq: faQq, + faQuinscape: faQuinscape, + faQuora: faQuora, + faRProject: faRProject, + faRavelry: faRavelry, + faReact: faReact, + faReadme: faReadme, + faRebel: faRebel, + faRedRiver: faRedRiver, + faReddit: faReddit, + faRedditAlien: faRedditAlien, + faRedditSquare: faRedditSquare, + faRendact: faRendact, + faRenren: faRenren, + faReplyd: faReplyd, + faResearchgate: faResearchgate, + faResolving: faResolving, + faRev: faRev, + faRocketchat: faRocketchat, + faRockrms: faRockrms, + faSafari: faSafari, + faSass: faSass, + faSchlix: faSchlix, + faScribd: faScribd, + faSearchengin: faSearchengin, + faSellcast: faSellcast, + faSellsy: faSellsy, + faServicestack: faServicestack, + faShirtsinbulk: faShirtsinbulk, + faShopware: faShopware, + faSimplybuilt: faSimplybuilt, + faSistrix: faSistrix, + faSith: faSith, + faSkyatlas: faSkyatlas, + faSkype: faSkype, + faSlack: faSlack, + faSlackHash: faSlackHash, + faSlideshare: faSlideshare, + faSnapchat: faSnapchat, + faSnapchatGhost: faSnapchatGhost, + faSnapchatSquare: faSnapchatSquare, + faSoundcloud: faSoundcloud, + faSpeakap: faSpeakap, + faSpotify: faSpotify, + faSquarespace: faSquarespace, + faStackExchange: faStackExchange, + faStackOverflow: faStackOverflow, + faStaylinked: faStaylinked, + faSteam: faSteam, + faSteamSquare: faSteamSquare, + faSteamSymbol: faSteamSymbol, + faStickerMule: faStickerMule, + faStrava: faStrava, + faStripe: faStripe, + faStripeS: faStripeS, + faStudiovinari: faStudiovinari, + faStumbleupon: faStumbleupon, + faStumbleuponCircle: faStumbleuponCircle, + faSuperpowers: faSuperpowers, + faSupple: faSupple, + faTeamspeak: faTeamspeak, + faTelegram: faTelegram, + faTelegramPlane: faTelegramPlane, + faTencentWeibo: faTencentWeibo, + faThemeco: faThemeco, + faThemeisle: faThemeisle, + faTradeFederation: faTradeFederation, + faTrello: faTrello, + faTripadvisor: faTripadvisor, + faTumblr: faTumblr, + faTumblrSquare: faTumblrSquare, + faTwitch: faTwitch, + faTwitter: faTwitter, + faTwitterSquare: faTwitterSquare, + faTypo3: faTypo3, + faUber: faUber, + faUikit: faUikit, + faUniregistry: faUniregistry, + faUntappd: faUntappd, + faUsb: faUsb, + faUssunnah: faUssunnah, + faVaadin: faVaadin, + faViacoin: faViacoin, + faViadeo: faViadeo, + faViadeoSquare: faViadeoSquare, + faViber: faViber, + faVimeo: faVimeo, + faVimeoSquare: faVimeoSquare, + faVimeoV: faVimeoV, + faVine: faVine, + faVk: faVk, + faVnv: faVnv, + faVuejs: faVuejs, + faWeebly: faWeebly, + faWeibo: faWeibo, + faWeixin: faWeixin, + faWhatsapp: faWhatsapp, + faWhatsappSquare: faWhatsappSquare, + faWhmcs: faWhmcs, + faWikipediaW: faWikipediaW, + faWindows: faWindows, + faWix: faWix, + faWolfPackBattalion: faWolfPackBattalion, + faWordpress: faWordpress, + faWordpressSimple: faWordpressSimple, + faWpbeginner: faWpbeginner, + faWpexplorer: faWpexplorer, + faWpforms: faWpforms, + faXbox: faXbox, + faXing: faXing, + faXingSquare: faXingSquare, + faYCombinator: faYCombinator, + faYahoo: faYahoo, + faYandex: faYandex, + faYandexInternational: faYandexInternational, + faYelp: faYelp, + faYoast: faYoast, + faYoutube: faYoutube, + faYoutubeSquare: faYoutubeSquare +}; + +export { _iconsCache as fab, prefix, fa500px, faAccessibleIcon, faAccusoft, faAdn, faAdversal, faAffiliatetheme, faAlgolia, faAmazon, faAmazonPay, faAmilia, faAndroid, faAngellist, faAngrycreative, faAngular, faAppStore, faAppStoreIos, faApper, faApple, faApplePay, faAsymmetrik, faAudible, faAutoprefixer, faAvianex, faAviato, faAws, faBandcamp, faBehance, faBehanceSquare, faBimobject, faBitbucket, faBitcoin, faBity, faBlackTie, faBlackberry, faBlogger, faBloggerB, faBluetooth, faBluetoothB, faBtc, faBuromobelexperte, faBuysellads, faCcAmazonPay, faCcAmex, faCcApplePay, faCcDinersClub, faCcDiscover, faCcJcb, faCcMastercard, faCcPaypal, faCcStripe, faCcVisa, faCentercode, faChrome, faCloudscale, faCloudsmith, faCloudversify, faCodepen, faCodiepie, faConnectdevelop, faContao, faCpanel, faCreativeCommons, faCreativeCommonsBy, faCreativeCommonsNc, faCreativeCommonsNcEu, faCreativeCommonsNcJp, faCreativeCommonsNd, faCreativeCommonsPd, faCreativeCommonsPdAlt, faCreativeCommonsRemix, faCreativeCommonsSa, faCreativeCommonsSampling, faCreativeCommonsSamplingPlus, faCreativeCommonsShare, faCss3, faCss3Alt, faCuttlefish, faDAndD, faDashcube, faDelicious, faDeploydog, faDeskpro, faDeviantart, faDigg, faDigitalOcean, faDiscord, faDiscourse, faDochub, faDocker, faDraft2digital, faDribbble, faDribbbleSquare, faDropbox, faDrupal, faDyalog, faEarlybirds, faEbay, faEdge, faElementor, faEmber, faEmpire, faEnvira, faErlang, faEthereum, faEtsy, faExpeditedssl, faFacebook, faFacebookF, faFacebookMessenger, faFacebookSquare, faFirefox, faFirstOrder, faFirstOrderAlt, faFirstdraft, faFlickr, faFlipboard, faFly, faFontAwesome, faFontAwesomeAlt, faFontAwesomeFlag, faFontAwesomeLogoFull, faFonticons, faFonticonsFi, faFortAwesome, faFortAwesomeAlt, faForumbee, faFoursquare, faFreeCodeCamp, faFreebsd, faFulcrum, faGalacticRepublic, faGalacticSenate, faGetPocket, faGg, faGgCircle, faGit, faGitSquare, faGithub, faGithubAlt, faGithubSquare, faGitkraken, faGitlab, faGitter, faGlide, faGlideG, faGofore, faGoodreads, faGoodreadsG, faGoogle, faGoogleDrive, faGooglePlay, faGooglePlus, faGooglePlusG, faGooglePlusSquare, faGoogleWallet, faGratipay, faGrav, faGripfire, faGrunt, faGulp, faHackerNews, faHackerNewsSquare, faHips, faHireAHelper, faHooli, faHornbill, faHotjar, faHouzz, faHtml5, faHubspot, faImdb, faInstagram, faInternetExplorer, faIoxhost, faItunes, faItunesNote, faJava, faJediOrder, faJenkins, faJoget, faJoomla, faJs, faJsSquare, faJsfiddle, faKeybase, faKeycdn, faKickstarter, faKickstarterK, faKorvue, faLaravel, faLastfm, faLastfmSquare, faLeanpub, faLess, faLine, faLinkedin, faLinkedinIn, faLinode, faLinux, faLyft, faMagento, faMailchimp, faMandalorian, faMastodon, faMaxcdn, faMedapps, faMedium, faMediumM, faMedrt, faMeetup, faMegaport, faMicrosoft, faMix, faMixcloud, faMizuni, faModx, faMonero, faNapster, faNimblr, faNintendoSwitch, faNode, faNodeJs, faNpm, faNs8, faNutritionix, faOdnoklassniki, faOdnoklassnikiSquare, faOldRepublic, faOpencart, faOpenid, faOpera, faOptinMonster, faOsi, faPage4, faPagelines, faPalfed, faPatreon, faPaypal, faPeriscope, faPhabricator, faPhoenixFramework, faPhoenixSquadron, faPhp, faPiedPiper, faPiedPiperAlt, faPiedPiperHat, faPiedPiperPp, faPinterest, faPinterestP, faPinterestSquare, faPlaystation, faProductHunt, faPushed, faPython, faQq, faQuinscape, faQuora, faRProject, faRavelry, faReact, faReadme, faRebel, faRedRiver, faReddit, faRedditAlien, faRedditSquare, faRendact, faRenren, faReplyd, faResearchgate, faResolving, faRev, faRocketchat, faRockrms, faSafari, faSass, faSchlix, faScribd, faSearchengin, faSellcast, faSellsy, faServicestack, faShirtsinbulk, faShopware, faSimplybuilt, faSistrix, faSith, faSkyatlas, faSkype, faSlack, faSlackHash, faSlideshare, faSnapchat, faSnapchatGhost, faSnapchatSquare, faSoundcloud, faSpeakap, faSpotify, faSquarespace, faStackExchange, faStackOverflow, faStaylinked, faSteam, faSteamSquare, faSteamSymbol, faStickerMule, faStrava, faStripe, faStripeS, faStudiovinari, faStumbleupon, faStumbleuponCircle, faSuperpowers, faSupple, faTeamspeak, faTelegram, faTelegramPlane, faTencentWeibo, faThemeco, faThemeisle, faTradeFederation, faTrello, faTripadvisor, faTumblr, faTumblrSquare, faTwitch, faTwitter, faTwitterSquare, faTypo3, faUber, faUikit, faUniregistry, faUntappd, faUsb, faUssunnah, faVaadin, faViacoin, faViadeo, faViadeoSquare, faViber, faVimeo, faVimeoSquare, faVimeoV, faVine, faVk, faVnv, faVuejs, faWeebly, faWeibo, faWeixin, faWhatsapp, faWhatsappSquare, faWhmcs, faWikipediaW, faWindows, faWix, faWolfPackBattalion, faWordpress, faWordpressSimple, faWpbeginner, faWpexplorer, faWpforms, faXbox, faXing, faXingSquare, faYCombinator, faYahoo, faYandex, faYandexInternational, faYelp, faYoast, faYoutube, faYoutubeSquare }; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/index.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/index.js new file mode 100644 index 0000000000..1c37bd8dab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/index.js @@ -0,0 +1,1139 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : + typeof define === 'function' && define.amd ? define(['exports'], factory) : + (factory((global['free-brands-svg-icons'] = {}))); +}(this, (function (exports) { 'use strict'; + +var prefix = "fab"; +var fa500px = { prefix: 'fab', iconName: '500px', icon: [448, 512, [], "f26e", "M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3.3-16 16.5-21.2 23.9l-.5.6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8zm63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2zM393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4zM213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6.2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6z"] }; +var faAccessibleIcon = { prefix: 'fab', iconName: 'accessible-icon', icon: [448, 512, [], "f368", "M423.9 255.8L411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7zm-64.9-154c28.1 0 50.9-22.8 50.9-50.9C409.9 22.8 387.1 0 359 0c-28.1 0-50.9 22.8-50.9 50.9 0 28.1 22.8 50.9 50.9 50.9zM179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3z"] }; +var faAccusoft = { prefix: 'fab', iconName: 'accusoft', icon: [640, 512, [], "f369", "M482.2 372.1C476.5 365.2 250 75 242.3 65.5c-13.7-17.2 0-16.8 19.2-16.9 9.7-.1 106.3-.6 116.5-.6 24.1-.1 28.7.6 38.4 12.8 2.1 2.7 205.1 245.8 207.2 248.3 5.5 6.7 15.2 19.1 7.2 23.4-2.4 1.3-114.6 47.7-117.8 48.9-10.1 4-17.5 6.8-30.8-9.3m114.7-5.6s-115 50.4-117.5 51.6c-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2-2.3-.3-24.6-4.7-38-7.2m-326-181.3s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3v-1l-51.2-65.8"] }; +var faAdn = { prefix: 'fab', iconName: 'adn', icon: [496, 512, [], "f170", "M248 167.5l64.9 98.8H183.1l64.9-98.8zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7h30.2z"] }; +var faAdversal = { prefix: 'fab', iconName: 'adversal', icon: [512, 512, [], "f36a", "M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2zM178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4.4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3zm286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7.4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9zm3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6.4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1.2-.1.3-.1.5zm-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2.4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1zm-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8z"] }; +var faAffiliatetheme = { prefix: 'fab', iconName: 'affiliatetheme', icon: [512, 512, [], "f36b", "M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2 29.1 21.6 11.1 96.6-40.2 167.5zm351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9.1-8.5-.3-16.8-1-25z"] }; +var faAlgolia = { prefix: 'fab', iconName: 'algolia', icon: [448, 512, [], "f36c", "M229.3 182.6c-49.3 0-89.2 39.9-89.2 89.2 0 49.3 39.9 89.2 89.2 89.2s89.2-39.9 89.2-89.2c0-49.3-40-89.2-89.2-89.2zm62.7 56.6l-58.9 30.6c-1.8.9-3.8-.4-3.8-2.3V201c0-1.5 1.3-2.7 2.7-2.6 26.2 1 48.9 15.7 61.1 37.1.7 1.3.2 3-1.1 3.7zM389.1 32H58.9C26.4 32 0 58.4 0 90.9V421c0 32.6 26.4 59 58.9 59H389c32.6 0 58.9-26.4 58.9-58.9V90.9C448 58.4 421.6 32 389.1 32zm-202.6 84.7c0-10.8 8.7-19.5 19.5-19.5h45.3c10.8 0 19.5 8.7 19.5 19.5v15.4c0 1.8-1.7 3-3.3 2.5-12.3-3.4-25.1-5.1-38.1-5.1-13.5 0-26.7 1.8-39.4 5.5-1.7.5-3.4-.8-3.4-2.5v-15.8zm-84.4 37l9.2-9.2c7.6-7.6 19.9-7.6 27.5 0l7.7 7.7c1.1 1.1 1 3-.3 4-6.2 4.5-12.1 9.4-17.6 14.9-5.4 5.4-10.4 11.3-14.8 17.4-1 1.3-2.9 1.5-4 .3l-7.7-7.7c-7.6-7.5-7.6-19.8 0-27.4zm127.2 244.8c-70 0-126.6-56.7-126.6-126.6s56.7-126.6 126.6-126.6c70 0 126.6 56.6 126.6 126.6 0 69.8-56.7 126.6-126.6 126.6z"] }; +var faAmazon = { prefix: 'fab', iconName: 'amazon', icon: [448, 512, [], "f270", "M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z"] }; +var faAmazonPay = { prefix: 'fab', iconName: 'amazon-pay', icon: [611, 512, [], "f42c", "M0 325.2c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7 40.7 20.4 83.2 35.6 127.4 46.3 20.9 5 41.9 9 63.2 11.8 31.5 4.2 63.2 6 95 5.2 17.4-.4 34.8-1.8 52.1-3.8 56.4-6.7 110.9-20.8 163.3-42.8 2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9-2.8 2.8-6.3 5.1-9.6 7.4-30.7 21.1-64.2 36.4-99.6 47.9-24.6 7.9-49.6 13.8-75.1 17.6-17.6 2.6-35.4 4.4-53.2 4.8-.8 0-1.7.2-2.5.3H294c-.8-.1-1.7-.3-2.5-.3-3.6-.2-7.2-.3-10.7-.4-16.9-.7-33.7-2.6-50.4-5.3-27.4-4.5-54.2-11.4-80.4-20.9-54.1-19.6-102.6-48.6-145.6-87-1.8-1.6-3-3.8-4.4-5.7v-2zM158 65c-1.4.2-2.9.4-4.3.6-14 1.7-26.6 6.9-38 15.1-2.4 1.7-4.6 3.5-7.1 5.4-.2-.5-.4-1-.4-1.4-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6H87.8c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3V215c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zm-47.4 41.9c0-1.5.4-2.4 1.7-3.3 13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9-1.2-.9-1.7-1.7-1.7-3.3.1-14.1 0-28.1 0-42.2 0-14 .1-28 0-42.1zM316.3 65c-1 .1-2 .3-2.9.4-9.8.5-19.4 1.7-28.9 4.1-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9 0 .4-.1.9-.2 1.4-.5-.1-.9 0-1.3-.1-10.5-2.5-21.1-4.3-32-4.9-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4.4-.4.9-.7 1.6-1.1.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0 2.7-.1 4.5-1.9 4.8-4.7.1-.9.1-1.9.1-2.8v-106c0-4.3-.2-8.6-.9-12.9-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1zm35 127.7c0 1.3-.4 2.2-1.5 3-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8-6.3-2.5-10.4-6.9-12.4-13.3s-2-13-.1-19.4c2.5-8.3 8.4-13 16.4-15.6 8.1-2.6 16.5-3 24.8-2.2 8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3-.1 4.7-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3-6.8-2.3-13.9-3.3-21-3.9-13.1-1.1-26.2-.5-39.2 1.9-14.3 2.7-27.9 7.3-40 15.6-1.4 1-2.8 2.1-3.7 3.5-.7 1.1-.9 2.8-.5 4 .4 1.5 2.1 1.9 3.6 1.8.7 0 1.5 0 2.2-.1 7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9 4.8.3 9.7 1.4 14.4 2.7 5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1-.4 1-.8 2-1 3-.5 2.9 1.2 4.8 4.1 4.1 1.7-.4 3.6-1.3 4.8-2.5 4.4-4.3 8.9-8.6 12.7-13.4 12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9v-17.3zM479.1 198.9c-12.9-35.7-25.8-71.5-38.7-107.2-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5.5 2.1 1.1 4.1 1.9 6.1 19.6 48.5 39.3 97.1 59.1 145.5 1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3-5.1 1.4-10.2 1.6-15.4 1.1-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8-.1 3.3-.1 6.6 0 9.9.1 5.5 2 8 7.4 8.9 5.6 1 11.3 1.9 16.9 2 17.1.4 30.7-6.5 39.5-21.4 3.5-5.9 6.7-12.1 9.2-18.4 23.7-59.8 47.1-119.7 70.6-179.6.7-1.8 1.3-3.6 1.6-5.5.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0-3.7 0-6.3 1.6-7.7 5.2-.5 1.4-1.1 2.7-1.6 4.1-11.6 33.3-23.2 66.6-34.8 100-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z"] }; +var faAmilia = { prefix: 'fab', iconName: 'amilia', icon: [448, 512, [], "f36d", "M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm-87.9 327.7c0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5V380c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7"] }; +var faAndroid = { prefix: 'fab', iconName: 'android', icon: [448, 512, [], "f17b", "M89.6 204.5v115.8c0 15.4-12.1 27.7-27.5 27.7-15.3 0-30.1-12.4-30.1-27.7V204.5c0-15.1 14.8-27.5 30.1-27.5 15.1 0 27.5 12.4 27.5 27.5zm10.8 157c0 16.4 13.2 29.6 29.6 29.6h19.9l.3 61.1c0 36.9 55.2 36.6 55.2 0v-61.1h37.2v61.1c0 36.7 55.5 36.8 55.5 0v-61.1h20.2c16.2 0 29.4-13.2 29.4-29.6V182.1H100.4v179.4zm248-189.1H99.3c0-42.8 25.6-80 63.6-99.4l-19.1-35.3c-2.8-4.9 4.3-8 6.7-3.8l19.4 35.6c34.9-15.5 75-14.7 108.3 0L297.5 34c2.5-4.3 9.5-1.1 6.7 3.8L285.1 73c37.7 19.4 63.3 56.6 63.3 99.4zm-170.7-55.5c0-5.7-4.6-10.5-10.5-10.5-5.7 0-10.2 4.8-10.2 10.5s4.6 10.5 10.2 10.5c5.9 0 10.5-4.8 10.5-10.5zm113.4 0c0-5.7-4.6-10.5-10.2-10.5-5.9 0-10.5 4.8-10.5 10.5s4.6 10.5 10.5 10.5c5.6 0 10.2-4.8 10.2-10.5zm94.8 60.1c-15.1 0-27.5 12.1-27.5 27.5v115.8c0 15.4 12.4 27.7 27.5 27.7 15.4 0 30.1-12.4 30.1-27.7V204.5c0-15.4-14.8-27.5-30.1-27.5z"] }; +var faAngellist = { prefix: 'fab', iconName: 'angellist', icon: [448, 512, [], "f209", "M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7zM311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6 33.1-93.7zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8zM140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7.1-7.7 12.7-21.1 20.4-21.1zm184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3.3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7.1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7zm-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1z"] }; +var faAngrycreative = { prefix: 'fab', iconName: 'angrycreative', icon: [640, 512, [], "f36e", "M640 238.2l-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4 93.1-6.2zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9-12.8 120zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3-126.2 7.7zm-44.3-70.2l-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7 2.7-29.8zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1zm21.1 70.8l5.8-60c-5 13.5-14.7 21.1-27.9 26.6l22.1 33.4zm135.4-45l-7.9-37.8-15.8 39.3 23.7-1.5zm-170.1-74.6l-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8.3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2-56.8 3.7zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1.6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2l-2.9 28.8zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3zm-201.3 8.2l23.8-1.6-8.3-37.6-15.5 39.2z"] }; +var faAngular = { prefix: 'fab', iconName: 'angular', icon: [415, 512, [], "f420", "M169.7 268.1h76.2l-38.1-91.6-38.1 91.6zM207.8 32L0 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7L207.8 32zM338 373.8h-48.6l-26.2-65.4H152.6l-26.2 65.4H77.7L207.8 81.5 338 373.8z"] }; +var faAppStore = { prefix: 'fab', iconName: 'app-store', icon: [512, 512, [], "f36f", "M255.9 120.9l9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5 9.8 5.6 13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4 0-11.3 9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5l8.9 15.7zm-78.7 218l-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5-9.8-5.6-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6zm168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4 0 11.3-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216z"] }; +var faAppStoreIos = { prefix: 'fab', iconName: 'app-store-ios', icon: [448, 512, [], "f370", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7c16.1-4.9 29.3-1.1 39.6 11.4L127 384.5zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40zm98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20z"] }; +var faApper = { prefix: 'fab', iconName: 'apper', icon: [640, 512, [], "f371", "M42.1 239.1c22.2 0 29 2.8 33.5 14.6h.8v-22.9c0-11.3-4.8-15.4-17.9-15.4-11.3 0-14.4 2.5-15.1 12.8H4.8c.3-13.9 1.5-19.1 5.8-24.4C17.9 195 29.5 192 56.7 192c33 0 47.1 5 53.9 18.9 2 4.3 4 15.6 4 23.7v76.3H76.3l1.3-19.1h-1c-5.3 15.6-13.6 20.4-35.5 20.4-30.3 0-41.1-10.1-41.1-37.3 0-25.2 12.3-35.8 42.1-35.8zm17.1 48.1c13.1 0 16.9-3 16.9-13.4 0-9.1-4.3-11.6-19.6-11.6-13.1 0-17.9 3-17.9 12.1-.1 10.4 3.7 12.9 20.6 12.9zm77.8-94.9h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.2 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3H137v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm57.9-60.7h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.3 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3h-39.5v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm53.8-3.8c0-25.4 3.3-37.8 12.3-45.8 8.8-8.1 22.2-11.3 45.1-11.3 42.8 0 55.7 12.8 55.7 55.7v11.1h-75.3c-.3 2-.3 4-.3 4.8 0 16.9 4.5 21.9 20.1 21.9 13.9 0 17.9-3 17.9-13.9h37.5v2.3c0 9.8-2.5 18.9-6.8 24.7-7.3 9.8-19.6 13.6-44.3 13.6-27.5 0-41.6-3.3-50.6-12.3-8.5-8.5-11.3-21.3-11.3-50.8zm76.4-11.6c-.3-1.8-.3-3.3-.3-3.8 0-12.3-3.3-14.6-19.6-14.6-14.4 0-17.1 3-18.1 15.1l-.3 3.3h38.3zm55.6-45.3h38.3l-1.8 19.9h.7c6.8-14.9 14.4-20.2 29.7-20.2 10.8 0 19.1 3.3 23.4 9.3 5.3 7.3 6.8 14.4 6.8 34 0 1.5 0 5 .2 9.3h-35c.3-1.8.3-3.3.3-4 0-15.4-2-19.4-10.3-19.4-6.3 0-10.8 3.3-13.1 9.3-1 3-1 4.3-1 12.3v68h-38.3V192.3z"] }; +var faApple = { prefix: 'fab', iconName: 'apple', icon: [376, 512, [], "f179", "M314.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C59.3 141.2 0 184.8 0 273.5c0 26.2 4.8 53.3 14.4 81.2 12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z"] }; +var faApplePay = { prefix: 'fab', iconName: 'apple-pay', icon: [640, 512, [], "f415", "M116.9 158.5c-7.5 8.9-19.5 15.9-31.5 14.9-1.5-12 4.4-24.8 11.3-32.6 7.5-9.1 20.6-15.6 31.3-16.1 1.2 12.4-3.7 24.7-11.1 33.8m10.9 17.2c-17.4-1-32.3 9.9-40.5 9.9-8.4 0-21-9.4-34.8-9.1-17.9.3-34.5 10.4-43.6 26.5-18.8 32.3-4.9 80 13.3 106.3 8.9 13 19.5 27.3 33.5 26.8 13.3-.5 18.5-8.6 34.5-8.6 16.1 0 20.8 8.6 34.8 8.4 14.5-.3 23.6-13 32.5-26 10.1-14.8 14.3-29.1 14.5-29.9-.3-.3-28-10.9-28.3-42.9-.3-26.8 21.9-39.5 22.9-40.3-12.5-18.6-32-20.6-38.8-21.1m100.4-36.2v194.9h30.3v-66.6h41.9c38.3 0 65.1-26.3 65.1-64.3s-26.4-64-64.1-64h-73.2zm30.3 25.5h34.9c26.3 0 41.3 14 41.3 38.6s-15 38.8-41.4 38.8h-34.8V165zm162.2 170.9c19 0 36.6-9.6 44.6-24.9h.6v23.4h28v-97c0-28.1-22.5-46.3-57.1-46.3-32.1 0-55.9 18.4-56.8 43.6h27.3c2.3-12 13.4-19.9 28.6-19.9 18.5 0 28.9 8.6 28.9 24.5v10.8l-37.8 2.3c-35.1 2.1-54.1 16.5-54.1 41.5.1 25.2 19.7 42 47.8 42zm8.2-23.1c-16.1 0-26.4-7.8-26.4-19.6 0-12.3 9.9-19.4 28.8-20.5l33.6-2.1v11c0 18.2-15.5 31.2-36 31.2zm102.5 74.6c29.5 0 43.4-11.3 55.5-45.4L640 193h-30.8l-35.6 115.1h-.6L537.4 193h-31.6L557 334.9l-2.8 8.6c-4.6 14.6-12.1 20.3-25.5 20.3-2.4 0-7-.3-8.9-.5v23.4c1.8.4 9.3.7 11.6.7z"] }; +var faAsymmetrik = { prefix: 'fab', iconName: 'asymmetrik', icon: [576, 512, [], "f372", "M517.5 309.2c38.8-40 58.1-80 58.5-116.1.8-65.5-59.4-118.2-169.4-135C277.9 38.4 118.1 73.6 0 140.5 52 114 110.6 92.3 170.7 82.3c74.5-20.5 153-25.4 221.3-14.8C544.5 91.3 588.8 195 490.8 299.2c-10.2 10.8-22 21.1-35 30.6L304.9 103.4 114.7 388.9c-65.6-29.4-76.5-90.2-19.1-151.2 20.8-22.2 48.3-41.9 79.5-58.1 20-12.2 39.7-22.6 62-30.7-65.1 20.3-122.7 52.9-161.6 92.9-27.7 28.6-41.4 57.1-41.7 82.9-.5 35.1 23.4 65.1 68.4 83l-34.5 51.7h101.6l22-34.4c22.2 1 45.3 0 68.6-2.7l-22.8 37.1h135.5L340 406.3c18.6-5.3 36.9-11.5 54.5-18.7l45.9 71.8H542L468.6 349c18.5-12.1 35-25.5 48.9-39.8zm-187.6 80.5l-25-40.6-32.7 53.3c-23.4 3.5-46.7 5.1-69.2 4.4l101.9-159.3 78.7 123c-17.2 7.4-35.3 13.9-53.7 19.2z"] }; +var faAudible = { prefix: 'fab', iconName: 'audible', icon: [640, 512, [], "f373", "M640 199.9v54l-320 200L0 254v-54l320 200 320-200.1zm-194.5 72l47.1-29.4c-37.2-55.8-100.7-92.6-172.7-92.6-72 0-135.5 36.7-172.6 92.4h.3c2.5-2.3 5.1-4.5 7.7-6.7 89.7-74.4 219.4-58.1 290.2 36.3zm-220.1 18.8c16.9-11.9 36.5-18.7 57.4-18.7 34.4 0 65.2 18.4 86.4 47.6l45.4-28.4c-20.9-29.9-55.6-49.5-94.8-49.5-38.9 0-73.4 19.4-94.4 49zM103.6 161.1c131.8-104.3 318.2-76.4 417.5 62.1l.7 1 48.8-30.4C517.1 112.1 424.8 58.1 319.9 58.1c-103.5 0-196.6 53.5-250.5 135.6 9.9-10.5 22.7-23.5 34.2-32.6zm467 32.7z"] }; +var faAutoprefixer = { prefix: 'fab', iconName: 'autoprefixer', icon: [640, 512, [], "f41c", "M318.4 16l-161 480h77.5l25.4-81.4h119.5L405 496h77.5L318.4 16zm-40.3 341.9l41.2-130.4h1.5l40.9 130.4h-83.6zM640 405l-10-31.4L462.1 358l19.4 56.5L640 405zm-462.1-47L10 373.7 0 405l158.5 9.4 19.4-56.4z"] }; +var faAvianex = { prefix: 'fab', iconName: 'avianex', icon: [512, 512, [], "f374", "M453.1 32h-312c-38.9 0-76.2 31.2-83.3 69.7L1.2 410.3C-5.9 448.8 19.9 480 58.9 480h312c38.9 0 76.2-31.2 83.3-69.7l56.7-308.5c7-38.6-18.8-69.8-57.8-69.8zm-58.2 347.3l-32 13.5-115.4-110c-14.7 10-29.2 19.5-41.7 27.1l22.1 64.2-17.9 12.7-40.6-61-52.4-48.1 15.7-15.4 58 31.1c9.3-10.5 20.8-22.6 32.8-34.9L203 228.9l-68.8-99.8 18.8-28.9 8.9-4.8L265 207.8l4.9 4.5c19.4-18.8 33.8-32.4 33.8-32.4 7.7-6.5 21.5-2.9 30.7 7.9 9 10.5 10.6 24.7 2.7 31.3-1.8 1.3-15.5 11.4-35.3 25.6l4.5 7.3 94.9 119.4-6.3 7.9z"] }; +var faAviato = { prefix: 'fab', iconName: 'aviato', icon: [640, 512, [], "f421", "M107.2 283.5l-19-41.8H36.1l-19 41.8H0l62.2-131.4 62.2 131.4h-17.2zm-45-98.1l-19.6 42.5h39.2l-19.6-42.5zm112.7 102.4l-62.2-131.4h17.1l45.1 96 45.1-96h17l-62.1 131.4zm80.6-4.3V156.4H271v127.1h-15.5zm209.1-115.6v115.6h-17.3V167.9h-41.2v-11.5h99.6v11.5h-41.1zM640 218.8c0 9.2-1.7 17.8-5.1 25.8-3.4 8-8.2 15.1-14.2 21.1-6 6-13.1 10.8-21.1 14.2-8 3.4-16.6 5.1-25.8 5.1s-17.8-1.7-25.8-5.1c-8-3.4-15.1-8.2-21.1-14.2-6-6-10.8-13-14.2-21.1-3.4-8-5.1-16.6-5.1-25.8s1.7-17.8 5.1-25.8c3.4-8 8.2-15.1 14.2-21.1 6-6 13-8.4 21.1-11.9 8-3.4 16.6-5.1 25.8-5.1s17.8 1.7 25.8 5.1c8 3.4 15.1 5.8 21.1 11.9 6 6 10.7 13.1 14.2 21.1 3.4 8 5.1 16.6 5.1 25.8zm-15.5 0c0-7.3-1.3-14-3.9-20.3-2.6-6.3-6.2-11.7-10.8-16.3-4.6-4.6-10-8.2-16.2-10.9-6.2-2.7-12.8-4-19.8-4s-13.6 1.3-19.8 4c-6.2 2.7-11.6 6.3-16.2 10.9-4.6 4.6-8.2 10-10.8 16.3-2.6 6.3-3.9 13.1-3.9 20.3 0 7.3 1.3 14 3.9 20.3 2.6 6.3 6.2 11.7 10.8 16.3 4.6 4.6 10 8.2 16.2 10.9 6.2 2.7 12.8 4 19.8 4s13.6-1.3 19.8-4c6.2-2.7 11.6-6.3 16.2-10.9 4.6-4.6 8.2-10 10.8-16.3 2.6-6.3 3.9-13.1 3.9-20.3zm-94.8 96.7v-6.3l88.9-10-242.9 13.4c.6-2.2 1.1-4.6 1.4-7.2.3-2 .5-4.2.6-6.5l64.8-8.1-64.9 1.9c0-.4-.1-.7-.1-1.1-2.8-17.2-25.5-23.7-25.5-23.7l-1.1-26.3h23.8l19 41.8h17.1L348.6 152l-62.2 131.4h17.1l19-41.8h23.6L345 268s-22.7 6.5-25.5 23.7c-.1.3-.1.7-.1 1.1l-64.9-1.9 64.8 8.1c.1 2.3.3 4.4.6 6.5.3 2.6.8 5 1.4 7.2L78.4 299.2l88.9 10v6.3c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4 0-6.2-4.6-11.3-10.5-12.2v-5.8l80.3 9v5.4c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-4.9l28.4 3.2v23.7h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9V323l38.3 4.3c8.1 11.4 19 13.6 19 13.6l-.1 6.7-5.1.2-.1 12.1h4.1l.1-5h5.2l.1 5h4.1l-.1-12.1-5.1-.2-.1-6.7s10.9-2.1 19-13.6l38.3-4.3v23.2h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9v-23.7l28.4-3.2v4.9c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-5.4l80.3-9v5.8c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4-.2-6.3-4.7-11.4-10.7-12.3zm-200.8-87.6l19.6-42.5 19.6 42.5h-17.9l-1.7-40.3-1.7 40.3h-17.9z"] }; +var faAws = { prefix: 'fab', iconName: 'aws', icon: [640, 512, [], "f375", "M180.41 203.01c-.72 22.65 10.6 32.68 10.88 39.05a8.164 8.164 0 0 1-4.1 6.27l-12.8 8.96a10.66 10.66 0 0 1-5.63 1.92c-.43-.02-8.19 1.83-20.48-25.61a78.608 78.608 0 0 1-62.61 29.45c-16.28.89-60.4-9.24-58.13-56.21-1.59-38.28 34.06-62.06 70.93-60.05 7.1.02 21.6.37 46.99 6.27v-15.62c2.69-26.46-14.7-46.99-44.81-43.91-2.4.01-19.4-.5-45.84 10.11-7.36 3.38-8.3 2.82-10.75 2.82-7.41 0-4.36-21.48-2.94-24.2 5.21-6.4 35.86-18.35 65.94-18.18a76.857 76.857 0 0 1 55.69 17.28 70.285 70.285 0 0 1 17.67 52.36l-.01 69.29zM93.99 235.4c32.43-.47 46.16-19.97 49.29-30.47 2.46-10.05 2.05-16.41 2.05-27.4-9.67-2.32-23.59-4.85-39.56-4.87-15.15-1.14-42.82 5.63-41.74 32.26-1.24 16.79 11.12 31.4 29.96 30.48zm170.92 23.05c-7.86.72-11.52-4.86-12.68-10.37l-49.8-164.65c-.97-2.78-1.61-5.65-1.92-8.58a4.61 4.61 0 0 1 3.86-5.25c.24-.04-2.13 0 22.25 0 8.78-.88 11.64 6.03 12.55 10.37l35.72 140.83 33.16-140.83c.53-3.22 2.94-11.07 12.8-10.24h17.16c2.17-.18 11.11-.5 12.68 10.37l33.42 142.63L420.98 80.1c.48-2.18 2.72-11.37 12.68-10.37h19.72c.85-.13 6.15-.81 5.25 8.58-.43 1.85 3.41-10.66-52.75 169.9-1.15 5.51-4.82 11.09-12.68 10.37h-18.69c-10.94 1.15-12.51-9.66-12.68-10.75L328.67 110.7l-32.78 136.99c-.16 1.09-1.73 11.9-12.68 10.75h-18.3zm273.48 5.63c-5.88.01-33.92-.3-57.36-12.29a12.802 12.802 0 0 1-7.81-11.91v-10.75c0-8.45 6.2-6.9 8.83-5.89 10.04 4.06 16.48 7.14 28.81 9.6 36.65 7.53 52.77-2.3 56.72-4.48 13.15-7.81 14.19-25.68 5.25-34.95-10.48-8.79-15.48-9.12-53.13-21-4.64-1.29-43.7-13.61-43.79-52.36-.61-28.24 25.05-56.18 69.52-55.95 12.67-.01 46.43 4.13 55.57 15.62 1.35 2.09 2.02 4.55 1.92 7.04v10.11c0 4.44-1.62 6.66-4.87 6.66-7.71-.86-21.39-11.17-49.16-10.75-6.89-.36-39.89.91-38.41 24.97-.43 18.96 26.61 26.07 29.7 26.89 36.46 10.97 48.65 12.79 63.12 29.58 17.14 22.25 7.9 48.3 4.35 55.44-19.08 37.49-68.42 34.44-69.26 34.42zm40.2 104.86c-70.03 51.72-171.69 79.25-258.49 79.25A469.127 469.127 0 0 1 2.83 327.46c-6.53-5.89-.77-13.96 7.17-9.47a637.37 637.37 0 0 0 316.88 84.12 630.22 630.22 0 0 0 241.59-49.55c11.78-5 21.77 7.8 10.12 16.38zm29.19-33.29c-8.96-11.52-59.28-5.38-81.81-2.69-6.79.77-7.94-5.12-1.79-9.47 40.07-28.17 105.88-20.1 113.44-10.63 7.55 9.47-2.05 75.41-39.56 106.91-5.76 4.87-11.27 2.3-8.71-4.1 8.44-21.25 27.39-68.49 18.43-80.02z"] }; +var faBandcamp = { prefix: 'fab', iconName: 'bandcamp', icon: [496, 512, [], "f2d5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm48.2 326.1h-181L199.9 178h181l-84.7 156.1z"] }; +var faBehance = { prefix: 'fab', iconName: 'behance', icon: [576, 512, [], "f1b4", "M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z"] }; +var faBehanceSquare = { prefix: 'fab', iconName: 'behance-square', icon: [448, 512, [], "f1b5", "M186.5 293c0 19.3-14 25.4-31.2 25.4h-45.1v-52.9h46c18.6.1 30.3 7.8 30.3 27.5zm-7.7-82.3c0-17.7-13.7-21.9-28.9-21.9h-39.6v44.8H153c15.1 0 25.8-6.6 25.8-22.9zm132.3 23.2c-18.3 0-30.5 11.4-31.7 29.7h62.2c-1.7-18.5-11.3-29.7-30.5-29.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM271.7 185h77.8v-18.9h-77.8V185zm-43 110.3c0-24.1-11.4-44.9-35-51.6 17.2-8.2 26.2-17.7 26.2-37 0-38.2-28.5-47.5-61.4-47.5H68v192h93.1c34.9-.2 67.6-16.9 67.6-55.9zM380 280.5c0-41.1-24.1-75.4-67.6-75.4-42.4 0-71.1 31.8-71.1 73.6 0 43.3 27.3 73 71.1 73 33.2 0 54.7-14.9 65.1-46.8h-33.7c-3.7 11.9-18.6 18.1-30.2 18.1-22.4 0-34.1-13.1-34.1-35.3h100.2c.1-2.3.3-4.8.3-7.2z"] }; +var faBimobject = { prefix: 'fab', iconName: 'bimobject', icon: [448, 512, [], "f378", "M416 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm-64 257.4c0 49.4-11.4 82.6-103.8 82.6h-16.9c-44.1 0-62.4-14.9-70.4-38.8h-.9V368H96V136h64v74.7h1.1c4.6-30.5 39.7-38.8 69.7-38.8h17.3c92.4 0 103.8 33.1 103.8 82.5v35zm-64-28.9v22.9c0 21.7-3.4 33.8-38.4 33.8h-45.3c-28.9 0-44.1-6.5-44.1-35.7v-19c0-29.3 15.2-35.7 44.1-35.7h45.3c35-.2 38.4 12 38.4 33.7z"] }; +var faBitbucket = { prefix: 'fab', iconName: 'bitbucket', icon: [512, 512, [], "f171", "M23.1 32C14.2 31.9 7 38.9 6.9 47.8c0 .9.1 1.8.2 2.8L74.9 462c1.7 10.4 10.7 18 21.2 18.1h325.1c7.9.1 14.7-5.6 16-13.4l67.8-416c1.4-8.7-4.5-16.9-13.2-18.3-.9-.1-1.8-.2-2.8-.2L23.1 32zm285.3 297.3H204.6l-28.1-146.8h157l-25.1 146.8z"] }; +var faBitcoin = { prefix: 'fab', iconName: 'bitcoin', icon: [512, 512, [], "f379", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z"] }; +var faBity = { prefix: 'fab', iconName: 'bity', icon: [496, 512, [], "f37a", "M78.4 67.2C173.8-22 324.5-24 421.5 71c14.3 14.1-6.4 37.1-22.4 21.5-84.8-82.4-215.8-80.3-298.9-3.2-16.3 15.1-36.5-8.3-21.8-22.1zm98.9 418.6c19.3 5.7 29.3-23.6 7.9-30C73 421.9 9.4 306.1 37.7 194.8c5-19.6-24.9-28.1-30.2-7.1-32.1 127.4 41.1 259.8 169.8 298.1zm148.1-2c121.9-40.2 192.9-166.9 164.4-291-4.5-19.7-34.9-13.8-30 7.9 24.2 107.7-37.1 217.9-143.2 253.4-21.2 7-10.4 36 8.8 29.7zm-62.9-79l.2-71.8c0-8.2-6.6-14.8-14.8-14.8-8.2 0-14.8 6.7-14.8 14.8l-.2 71.8c0 8.2 6.6 14.8 14.8 14.8s14.8-6.6 14.8-14.8zm71-269c2.1 90.9 4.7 131.9-85.5 132.5-92.5-.7-86.9-44.3-85.5-132.5 0-21.8-32.5-19.6-32.5 0v71.6c0 69.3 60.7 90.9 118 90.1 57.3.8 118-20.8 118-90.1v-71.6c0-19.6-32.5-21.8-32.5 0z"] }; +var faBlackTie = { prefix: 'fab', iconName: 'black-tie', icon: [448, 512, [], "f27e", "M0 32v448h448V32H0zm316.5 325.2L224 445.9l-92.5-88.7 64.5-184-64.5-86.6h184.9L252 173.2l64.5 184z"] }; +var faBlackberry = { prefix: 'fab', iconName: 'blackberry', icon: [512, 512, [], "f37b", "M166 116.9c0 23.4-16.4 49.1-72.5 49.1H23.4l21-88.8h67.8c42.1 0 53.8 23.3 53.8 39.7zm126.2-39.7h-67.8L205.7 166h70.1c53.8 0 70.1-25.7 70.1-49.1.1-16.4-11.6-39.7-53.7-39.7zM88.8 208.1H21L0 296.9h70.1c56.1 0 72.5-23.4 72.5-49.1 0-16.3-11.7-39.7-53.8-39.7zm180.1 0h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 0-16.3-11.7-39.7-53.7-39.7zm189.3-53.8h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7zm-28 137.9h-67.8L343.7 381h70.1c56.1 0 70.1-23.4 70.1-49.1 0-16.3-11.6-39.7-53.7-39.7zM240.8 346H173l-18.7 88.8h70.1c56.1 0 70.1-25.7 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7z"] }; +var faBlogger = { prefix: 'fab', iconName: 'blogger', icon: [448, 512, [], "f37c", "M162.4 196c4.8-4.9 6.2-5.1 36.4-5.1 27.2 0 28.1.1 32.1 2.1 5.8 2.9 8.3 7 8.3 13.6 0 5.9-2.4 10-7.6 13.4-2.8 1.8-4.5 1.9-31.1 2.1-16.4.1-29.5-.2-31.5-.8-10.3-2.9-14.1-17.7-6.6-25.3zm61.4 94.5c-53.9 0-55.8.2-60.2 4.1-3.5 3.1-5.7 9.4-5.1 13.9.7 4.7 4.8 10.1 9.2 12 2.2 1 14.1 1.7 56.3 1.2l47.9-.6 9.2-1.5c9-5.1 10.5-17.4 3.1-24.4-5.3-4.7-5-4.7-60.4-4.7zm223.4 130.1c-3.5 28.4-23 50.4-51.1 57.5-7.2 1.8-9.7 1.9-172.9 1.8-157.8 0-165.9-.1-172-1.8-8.4-2.2-15.6-5.5-22.3-10-5.6-3.8-13.9-11.8-17-16.4-3.8-5.6-8.2-15.3-10-22C.1 423 0 420.3 0 256.3 0 93.2 0 89.7 1.8 82.6 8.1 57.9 27.7 39 53 33.4c7.3-1.6 332.1-1.9 340-.3 21.2 4.3 37.9 17.1 47.6 36.4 7.7 15.3 7-1.5 7.3 180.6.2 115.8 0 164.5-.7 170.5zm-85.4-185.2c-1.1-5-4.2-9.6-7.7-11.5-1.1-.6-8-1.3-15.5-1.7-12.4-.6-13.8-.8-17.8-3.1-6.2-3.6-7.9-7.6-8-18.3 0-20.4-8.5-39.4-25.3-56.5-12-12.2-25.3-20.5-40.6-25.1-3.6-1.1-11.8-1.5-39.2-1.8-42.9-.5-52.5.4-67.1 6.2-27 10.7-46.3 33.4-53.4 62.4-1.3 5.4-1.6 14.2-1.9 64.3-.4 62.8 0 72.1 4 84.5 9.7 30.7 37.1 53.4 64.6 58.4 9.2 1.7 122.2 2.1 133.7.5 20.1-2.7 35.9-10.8 50.7-25.9 10.7-10.9 17.4-22.8 21.8-38.5 3.2-10.9 2.9-88.4 1.7-93.9z"] }; +var faBloggerB = { prefix: 'fab', iconName: 'blogger-b', icon: [448, 512, [], "f37d", "M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z"] }; +var faBluetooth = { prefix: 'fab', iconName: 'bluetooth', icon: [448, 512, [], "f293", "M292.6 171.1L249.7 214l-.3-86 43.2 43.1m-43.2 219.8l43.1-43.1-42.9-42.9-.2 86zM416 259.4C416 465 344.1 512 230.9 512S32 465 32 259.4 115.4 0 228.6 0 416 53.9 416 259.4zm-158.5 0l79.4-88.6L211.8 36.5v176.9L138 139.6l-27 26.9 92.7 93-92.7 93 26.9 26.9 73.8-73.8 2.3 170 127.4-127.5-83.9-88.7z"] }; +var faBluetoothB = { prefix: 'fab', iconName: 'bluetooth-b', icon: [320, 512, [], "f294", "M196.48 260.023l92.626-103.333L143.125 0v206.33l-86.111-86.111-31.406 31.405 108.061 108.399L25.608 368.422l31.406 31.405 86.111-86.111L145.84 512l148.552-148.644-97.912-103.333zm40.86-102.996l-49.977 49.978-.338-100.295 50.315 50.317zM187.363 313.04l49.977 49.978-50.315 50.316.338-100.294z"] }; +var faBtc = { prefix: 'fab', iconName: 'btc', icon: [384, 512, [], "f15a", "M310.204 242.638c27.73-14.18 45.377-39.39 41.28-81.3-5.358-57.351-52.458-76.573-114.85-81.929V0h-48.528v77.203c-12.605 0-25.525.315-38.444.63V0h-48.528v79.409c-17.842.539-38.622.276-97.37 0v51.678c38.314-.678 58.417-3.14 63.023 21.427v217.429c-2.925 19.492-18.524 16.685-53.255 16.071L3.765 443.68c88.481 0 97.37.315 97.37.315V512h48.528v-67.06c13.234.315 26.154.315 38.444.315V512h48.528v-68.005c81.299-4.412 135.647-24.894 142.895-101.467 5.671-61.446-23.32-88.862-69.326-99.89zM150.608 134.553c27.415 0 113.126-8.507 113.126 48.528 0 54.515-85.71 48.212-113.126 48.212v-96.74zm0 251.776V279.821c32.772 0 133.127-9.138 133.127 53.255-.001 60.186-100.355 53.253-133.127 53.253z"] }; +var faBuromobelexperte = { prefix: 'fab', iconName: 'buromobelexperte', icon: [448, 512, [], "f37f", "M0 32v128h128V32H0zm120 120H8V40h112v112zm40-120v128h128V32H160zm120 120H168V40h112v112zm40-120v128h128V32H320zm120 120H328V40h112v112zM0 192v128h128V192H0zm120 120H8V200h112v112zm40-120v128h128V192H160zm120 120H168V200h112v112zm40-120v128h128V192H320zm120 120H328V200h112v112zM0 352v128h128V352H0zm120 120H8V360h112v112zm40-120v128h128V352H160zm120 120H168V360h112v112zm40-120v128h128V352H320z"] }; +var faBuysellads = { prefix: 'fab', iconName: 'buysellads', icon: [448, 512, [], "f20d", "M224 150.7l42.9 160.7h-85.8L224 150.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-65.3 325.3l-94.5-298.7H159.8L65.3 405.3H156l111.7-91.6 24.2 91.6h90.8z"] }; +var faCcAmazonPay = { prefix: 'fab', iconName: 'cc-amazon-pay', icon: [576, 512, [], "f42d", "M124.7 201.8c.1-11.8 0-23.5 0-35.3v-35.3c0-1.3.4-2 1.4-2.7 11.5-8 24.1-12.1 38.2-11.1 12.5.9 22.7 7 28.1 21.7 3.3 8.9 4.1 18.2 4.1 27.7 0 8.7-.7 17.3-3.4 25.6-5.7 17.8-18.7 24.7-35.7 23.9-11.7-.5-21.9-5-31.4-11.7-.9-.8-1.4-1.6-1.3-2.8zm154.9 14.6c4.6 1.8 9.3 2 14.1 1.5 11.6-1.2 21.9-5.7 31.3-12.5.9-.6 1.3-1.3 1.3-2.5-.1-3.9 0-7.9 0-11.8 0-4-.1-8 0-12 0-1.4-.4-2-1.8-2.2-7-.9-13.9-2.2-20.9-2.9-7-.6-14-.3-20.8 1.9-6.7 2.2-11.7 6.2-13.7 13.1-1.6 5.4-1.6 10.8.1 16.2 1.6 5.5 5.2 9.2 10.4 11.2zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zm-207.5 23.9c.4 1.7.9 3.4 1.6 5.1 16.5 40.6 32.9 81.3 49.5 121.9 1.4 3.5 1.7 6.4.2 9.9-2.8 6.2-4.9 12.6-7.8 18.7-2.6 5.5-6.7 9.5-12.7 11.2-4.2 1.1-8.5 1.3-12.9.9-2.1-.2-4.2-.7-6.3-.8-2.8-.2-4.2 1.1-4.3 4-.1 2.8-.1 5.6 0 8.3.1 4.6 1.6 6.7 6.2 7.5 4.7.8 9.4 1.6 14.2 1.7 14.3.3 25.7-5.4 33.1-17.9 2.9-4.9 5.6-10.1 7.7-15.4 19.8-50.1 39.5-100.3 59.2-150.5.6-1.5 1.1-3 1.3-4.6.4-2.4-.7-3.6-3.1-3.7-5.6-.1-11.1 0-16.7 0-3.1 0-5.3 1.4-6.4 4.3-.4 1.1-.9 2.3-1.3 3.4l-29.1 83.7c-2.1 6.1-4.2 12.1-6.5 18.6-.4-.9-.6-1.4-.8-1.9-10.8-29.9-21.6-59.9-32.4-89.8-1.7-4.7-3.5-9.5-5.3-14.2-.9-2.5-2.7-4-5.4-4-6.4-.1-12.8-.2-19.2-.1-2.2 0-3.3 1.6-2.8 3.7zM242.4 206c1.7 11.7 7.6 20.8 18 26.6 9.9 5.5 20.7 6.2 31.7 4.6 12.7-1.9 23.9-7.3 33.8-15.5.4-.3.8-.6 1.4-1 .5 3.2.9 6.2 1.5 9.2.5 2.6 2.1 4.3 4.5 4.4 4.6.1 9.1.1 13.7 0 2.3-.1 3.8-1.6 4-3.9.1-.8.1-1.6.1-2.3v-88.8c0-3.6-.2-7.2-.7-10.8-1.6-10.8-6.2-19.7-15.9-25.4-5.6-3.3-11.8-5-18.2-5.9-3-.4-6-.7-9.1-1.1h-10c-.8.1-1.6.3-2.5.3-8.2.4-16.3 1.4-24.2 3.5-5.1 1.3-10 3.2-15 4.9-3 1-4.5 3.2-4.4 6.5.1 2.8-.1 5.6 0 8.3.1 4.1 1.8 5.2 5.7 4.1 6.5-1.7 13.1-3.5 19.7-4.8 10.3-1.9 20.7-2.7 31.1-1.2 5.4.8 10.5 2.4 14.1 7 3.1 4 4.2 8.8 4.4 13.7.3 6.9.2 13.9.3 20.8 0 .4-.1.7-.2 1.2-.4 0-.8 0-1.1-.1-8.8-2.1-17.7-3.6-26.8-4.1-9.5-.5-18.9.1-27.9 3.2-10.8 3.8-19.5 10.3-24.6 20.8-4.1 8.3-4.6 17-3.4 25.8zM98.7 106.9v175.3c0 .8 0 1.7.1 2.5.2 2.5 1.7 4.1 4.1 4.2 5.9.1 11.8.1 17.7 0 2.5 0 4-1.7 4.1-4.1.1-.8.1-1.7.1-2.5v-60.7c.9.7 1.4 1.2 1.9 1.6 15 12.5 32.2 16.6 51.1 12.9 17.1-3.4 28.9-13.9 36.7-29.2 5.8-11.6 8.3-24.1 8.7-37 .5-14.3-1-28.4-6.8-41.7-7.1-16.4-18.9-27.3-36.7-30.9-2.7-.6-5.5-.8-8.2-1.2h-7c-1.2.2-2.4.3-3.6.5-11.7 1.4-22.3 5.8-31.8 12.7-2 1.4-3.9 3-5.9 4.5-.1-.5-.3-.8-.4-1.2-.4-2.3-.7-4.6-1.1-6.9-.6-3.9-2.5-5.5-6.4-5.6h-9.7c-5.9-.1-6.9 1-6.9 6.8zM493.6 339c-2.7-.7-5.1 0-7.6 1-43.9 18.4-89.5 30.2-136.8 35.8-14.5 1.7-29.1 2.8-43.7 3.2-26.6.7-53.2-.8-79.6-4.3-17.8-2.4-35.5-5.7-53-9.9-37-8.9-72.7-21.7-106.7-38.8-8.8-4.4-17.4-9.3-26.1-14-3.8-2.1-6.2-1.5-8.2 2.1v1.7c1.2 1.6 2.2 3.4 3.7 4.8 36 32.2 76.6 56.5 122 72.9 21.9 7.9 44.4 13.7 67.3 17.5 14 2.3 28 3.8 42.2 4.5 3 .1 6 .2 9 .4.7 0 1.4.2 2.1.3h17.7c.7-.1 1.4-.3 2.1-.3 14.9-.4 29.8-1.8 44.6-4 21.4-3.2 42.4-8.1 62.9-14.7 29.6-9.6 57.7-22.4 83.4-40.1 2.8-1.9 5.7-3.8 8-6.2 4.3-4.4 2.3-10.4-3.3-11.9zm50.4-27.7c-.8-4.2-4-5.8-7.6-7-5.7-1.9-11.6-2.8-17.6-3.3-11-.9-22-.4-32.8 1.6-12 2.2-23.4 6.1-33.5 13.1-1.2.8-2.4 1.8-3.1 3-.6.9-.7 2.3-.5 3.4.3 1.3 1.7 1.6 3 1.5.6 0 1.2 0 1.8-.1l19.5-2.1c9.6-.9 19.2-1.5 28.8-.8 4.1.3 8.1 1.2 12 2.2 4.3 1.1 6.2 4.4 6.4 8.7.3 6.7-1.2 13.1-2.9 19.5-3.5 12.9-8.3 25.4-13.3 37.8-.3.8-.7 1.7-.8 2.5-.4 2.5 1 4 3.4 3.5 1.4-.3 3-1.1 4-2.1 3.7-3.6 7.5-7.2 10.6-11.2 10.7-13.8 17-29.6 20.7-46.6.7-3 1.2-6.1 1.7-9.1.2-4.7.2-9.6.2-14.5z"] }; +var faCcAmex = { prefix: 'fab', iconName: 'cc-amex', icon: [576, 512, [], "f1f3", "M576 255.4c-37.9-.2-44.2-.9-54.5 5v-5c-45.3 0-53.5-1.7-64.9 5.2v-5.2h-78.2v5.1c-11.4-6.5-21.4-5.1-75.7-5.1v5.6c-6.3-3.7-14.5-5.6-24.3-5.6h-58c-3.5 3.8-12.5 13.7-15.7 17.2-12.7-14.1-10.5-11.6-15.5-17.2h-83.1v92.3h82c3.3-3.5 12.9-13.9 16.1-17.4 12.7 14.3 10.3 11.7 15.4 17.4h48.9c0-14.7.1-8.3.1-23 11.5.2 24.3-.2 34.3-6.2 0 13.9-.1 17.1-.1 29.2h39.6c0-18.5.1-7.4.1-25.3 6.2 0 7.7 0 9.4.1.1 1.3 0 0 0 25.2 152.8 0 145.9 1.1 156.7-4.5v4.5c34.8 0 54.8 2.2 67.5-6.1V432c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V228.3h26.6c4.2-10.1 2.2-5.3 6.4-15.3h19.2c4.2 10 2.2 5.2 6.4 15.3h52.9v-11.4c2.2 5 1.1 2.5 5.1 11.4h29.5c2.4-5.5 2.6-5.8 5.1-11.4v11.4h135.5v-25.1c6.4 0 8-.1 9.8.2 0 0-.2 10.9.1 24.8h66.5v-8.9c7.4 5.9 17.4 8.9 29.7 8.9h26.8c4.2-10.1 2.2-5.3 6.4-15.3h19c6.5 15 .2.5 6.6 15.3h52.8v-21.9c11.8 19.7 7.8 12.9 13.2 21.9h41.6v-92h-39.9v18.4c-12.2-20.2-6.3-10.4-11.2-18.4h-43.3v20.6c-6.2-14.6-4.6-10.8-8.8-20.6h-32.4c-.4 0-2.3.2-2.3-.3h-27.6c-12.8 0-23.1 3.2-30.7 9.3v-9.3h-39.9v5.3c-10.8-6.1-20.7-5.1-64.4-5.3-.1 0-11.6-.1-11.6 0h-103c-2.5 6.1-6.8 16.4-12.6 30-2.8-6-11-23.8-13.9-30h-46V157c-7.4-17.4-4.7-11-9-21.1H22.9c-3.4 7.9-13.7 32-23.1 53.9V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48v175.4zm-186.6-80.6c-.3.2-1.4 2.2-1.4 7.6 0 6 .9 7.7 1.1 7.9.2.1 1.1.5 3.4.5l7.3-16.9c-1.1 0-2.1-.1-3.1-.1-5.6 0-7 .7-7.3 1zm-19.9 130.9c9.2 3.3 11 9.5 11 18.4l-.1 13.8h-16.6l.1-11.5c0-11.8-3.8-13.8-14.8-13.8h-17.6l-.1 25.3h-16.6l.1-69.3h39.4c13 0 27.1 2.3 27.1 18.7-.1 7.6-4.2 15.3-11.9 18.4zm-6.3-15.4c0-6.4-5.6-7.4-10.7-7.4h-21v15.6h20.7c5.6 0 11-1.3 11-8.2zm181.7-7.1H575v-14.6h-32.9c-12.8 0-23.8 6.6-23.8 20.7 0 33 42.7 12.8 42.7 27.4 0 5.1-4.3 6.4-8.4 6.4h-32l-.1 14.8h32c8.4 0 17.6-1.8 22.5-8.9v-25.8c-10.5-13.8-39.3-1.3-39.3-13.5 0-5.8 4.6-6.5 9.2-6.5zm-99.2-.3v-14.3h-55.2l-.1 69.3h55.2l.1-14.3-38.6-.3v-13.8H445v-14.1h-37.8v-12.5h38.5zm42.2 40.1h-32.2l-.1 14.8h32.2c14.8 0 26.2-5.6 26.2-22 0-33.2-42.9-11.2-42.9-26.3 0-5.6 4.9-6.4 9.2-6.4h30.4v-14.6h-33.2c-12.8 0-23.5 6.6-23.5 20.7 0 33 42.7 12.5 42.7 27.4-.1 5.4-4.7 6.4-8.8 6.4zm-78.1-158.7c-17.4-.3-33.2-4.1-33.2 19.7 0 11.8 2.8 19.9 16.1 19.9h7.4l23.5-54.5h24.8l27.9 65.4v-65.4h25.3l29.1 48.1v-48.1h16.9v69H524l-31.2-51.9v51.9h-33.7l-6.6-15.3h-34.3l-6.4 15.3h-19.2c-22.8 0-33-11.8-33-34 0-23.3 10.5-35.3 34-35.3h16.1v15.2zm14.3 24.5h22.8l-11.2-27.6-11.6 27.6zm-72.6-39.6h-16.9v69.3h16.9v-69.3zm-38.1 37.3c9.5 3.3 11 9.2 11 18.4v13.5h-16.6c-.3-14.8 3.6-25.1-14.8-25.1h-18v25.1h-16.4v-69.3l39.1.3c13.3 0 27.4 2 27.4 18.4.1 8-4.3 15.7-11.7 18.7zm-6.7-15.3c0-6.4-5.6-7.4-10.7-7.4h-21v15.3h20.7c5.7 0 11-1.3 11-7.9zm-59.5-7.4v-14.6h-55.5v69.3h55.5v-14.3h-38.9v-13.8h37.8v-14.1h-37.8v-12.5h38.9zm-84.6 54.7v-54.2l-24 54.2H124l-24-54.2v54.2H66.2l-6.4-15.3H25.3l-6.4 15.3H1l29.7-69.3h24.5l28.1 65.7v-65.7h27.1l21.7 47 19.7-47h27.6v69.3h-16.8zM53.9 188.8l-11.5-27.6-11.2 27.6h22.7zm253 102.5c0 27.9-30.4 23.3-49.3 23.3l-.1 23.3h-32.2l-20.4-23-21.3 23h-65.4l.1-69.3h66.5l20.5 22.8 21-22.8H279c15.6 0 27.9 5.4 27.9 22.7zm-112.7 11.8l-17.9-20.2h-41.7v12.5h36.3v14.1h-36.3v13.8h40.6l19-20.2zM241 276l-25.3 27.4 25.3 28.1V276zm48.3 15.3c0-6.1-4.6-8.4-10.2-8.4h-21.5v17.6h21.2c5.9 0 10.5-2.8 10.5-9.2z"] }; +var faCcApplePay = { prefix: 'fab', iconName: 'cc-apple-pay', icon: [576, 512, [], "f416", "M302.2 218.4c0 17.2-10.5 27.1-29 27.1h-24.3v-54.2h24.4c18.4 0 28.9 9.8 28.9 27.1zm47.5 62.6c0 8.3 7.2 13.7 18.5 13.7 14.4 0 25.2-9.1 25.2-21.9v-7.7l-23.5 1.5c-13.3.9-20.2 5.8-20.2 14.4zM576 79v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM127.8 197.2c8.4.7 16.8-4.2 22.1-10.4 5.2-6.4 8.6-15 7.7-23.7-7.4.3-16.6 4.9-21.9 11.3-4.8 5.5-8.9 14.4-7.9 22.8zm60.6 74.5c-.2-.2-19.6-7.6-19.8-30-.2-18.7 15.3-27.7 16-28.2-8.8-13-22.4-14.4-27.1-14.7-12.2-.7-22.6 6.9-28.4 6.9-5.9 0-14.7-6.6-24.3-6.4-12.5.2-24.2 7.3-30.5 18.6-13.1 22.6-3.4 56 9.3 74.4 6.2 9.1 13.7 19.1 23.5 18.7 9.3-.4 13-6 24.2-6 11.3 0 14.5 6 24.3 5.9 10.2-.2 16.5-9.1 22.8-18.2 6.9-10.4 9.8-20.4 10-21zm135.4-53.4c0-26.6-18.5-44.8-44.9-44.8h-51.2v136.4h21.2v-46.6h29.3c26.8 0 45.6-18.4 45.6-45zm90 23.7c0-19.7-15.8-32.4-40-32.4-22.5 0-39.1 12.9-39.7 30.5h19.1c1.6-8.4 9.4-13.9 20-13.9 13 0 20.2 6 20.2 17.2v7.5l-26.4 1.6c-24.6 1.5-37.9 11.6-37.9 29.1 0 17.7 13.7 29.4 33.4 29.4 13.3 0 25.6-6.7 31.2-17.4h.4V310h19.6v-68zM516 210.9h-21.5l-24.9 80.6h-.4l-24.9-80.6H422l35.9 99.3-1.9 6c-3.2 10.2-8.5 14.2-17.9 14.2-1.7 0-4.9-.2-6.2-.3v16.4c1.2.4 6.5.5 8.1.5 20.7 0 30.4-7.9 38.9-31.8L516 210.9z"] }; +var faCcDinersClub = { prefix: 'fab', iconName: 'cc-diners-club', icon: [576, 512, [], "f24c", "M239.7 79.9c-96.9 0-175.8 78.6-175.8 175.8 0 96.9 78.9 175.8 175.8 175.8 97.2 0 175.8-78.9 175.8-175.8 0-97.2-78.6-175.8-175.8-175.8zm-39.9 279.6c-41.7-15.9-71.4-56.4-71.4-103.8s29.7-87.9 71.4-104.1v207.9zm79.8.3V151.6c41.7 16.2 71.4 56.7 71.4 104.1s-29.7 87.9-71.4 104.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM329.7 448h-90.3c-106.2 0-193.8-85.5-193.8-190.2C45.6 143.2 133.2 64 239.4 64h90.3c105 0 200.7 79.2 200.7 193.8 0 104.7-95.7 190.2-200.7 190.2z"] }; +var faCcDiscover = { prefix: 'fab', iconName: 'cc-discover', icon: [576, 512, [], "f1f2", "M83 212.1c0 7.9-3.2 15.5-8.9 20.7-4.9 4.4-11.6 6.4-21.9 6.4H48V185h4.2c10.3 0 16.7 1.7 21.9 6.6 5.7 5 8.9 12.6 8.9 20.5zM504.8 184h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8 0-7.9-5.5-12.1-15.6-12.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM428 253h45.3v-13.8H444V217h28.3v-13.8H444V185h29.3v-14H428v82zm-86.2-82l35 84.2h8.6l35.5-84.2h-17.5l-22.2 55.2-21.9-55.2h-17.5zm-83 41.6c0 24.6 19.9 44.6 44.6 44.6 24.6 0 44.6-19.9 44.6-44.6 0-24.6-19.9-44.6-44.6-44.6-24.6 0-44.6 19.9-44.6 44.6zm-68-.5c0 32.5 33.6 52.5 63.3 38.2v-19c-19.3 19.3-46.8 5.8-46.8-19.2 0-23.7 26.7-39.1 46.8-19v-19c-30.2-15-63.3 6.8-63.3 38zm-33.9 28.3c-7.6 0-13.8-3.7-17.5-10.8l-10.3 9.9c17.8 26.1 56.6 18.2 56.6-11.3 0-13.1-5.4-19-23.6-25.6-9.6-3.4-12.3-5.9-12.3-10.3 0-8.7 14.5-14.1 24.9-2.5l8.4-10.8c-19.1-17.1-49.7-8.9-49.7 14.3 0 11.3 5.2 17.2 20.2 22.7 25.7 9.1 14.7 24.4 3.3 24.4zm-57.4-28.3c0-24.1-18-41.1-44.1-41.1H32v82h23.4c30.9 0 44.1-22.4 44.1-40.9zm23.4-41.1h-16v82h16v-82zM544 288c-33.3 20.8-226.4 124.4-416 160h401c8.2 0 15-6.8 15-15V288zm0-35l-25.9-34.5c12.1-2.5 18.7-10.6 18.7-23.2 0-28.5-30.3-24.4-52.9-24.4v82h16v-32.8h2.2l22.2 32.8H544z"] }; +var faCcJcb = { prefix: 'fab', iconName: 'cc-jcb', icon: [576, 512, [], "f24b", "M431.5 244.3V212c41.2 0 38.5.2 38.5.2 7.3 1.3 13.3 7.3 13.3 16 0 8.8-6 14.5-13.3 15.8-1.2.4-3.3.3-38.5.3zm42.8 20.2c-2.8-.7-3.3-.5-42.8-.5v35c39.6 0 40 .2 42.8-.5 7.5-1.5 13.5-8 13.5-17 0-8.7-6-15.5-13.5-17zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM182 192.3h-57c0 67.1 10.7 109.7-35.8 109.7-19.5 0-38.8-5.7-57.2-14.8v28c30 8.3 68 8.3 68 8.3 97.9 0 82-47.7 82-131.2zm178.5 4.5c-63.4-16-165-14.9-165 59.3 0 77.1 108.2 73.6 165 59.2V287C312.9 311.7 253 309 253 256s59.8-55.6 107.5-31.2v-28zM544 286.5c0-18.5-16.5-30.5-38-32v-.8c19.5-2.7 30.3-15.5 30.3-30.2 0-19-15.7-30-37-31 0 0 6.3-.3-120.3-.3v127.5h122.7c24.3.1 42.3-12.9 42.3-33.2z"] }; +var faCcMastercard = { prefix: 'fab', iconName: 'cc-mastercard', icon: [576, 512, [], "f1f1", "M482.9 410.3c0 6.8-4.6 11.7-11.2 11.7-6.8 0-11.2-5.2-11.2-11.7 0-6.5 4.4-11.7 11.2-11.7 6.6 0 11.2 5.2 11.2 11.7zm-310.8-11.7c-7.1 0-11.2 5.2-11.2 11.7 0 6.5 4.1 11.7 11.2 11.7 6.5 0 10.9-4.9 10.9-11.7-.1-6.5-4.4-11.7-10.9-11.7zm117.5-.3c-5.4 0-8.7 3.5-9.5 8.7h19.1c-.9-5.7-4.4-8.7-9.6-8.7zm107.8.3c-6.8 0-10.9 5.2-10.9 11.7 0 6.5 4.1 11.7 10.9 11.7 6.8 0 11.2-4.9 11.2-11.7 0-6.5-4.4-11.7-11.2-11.7zm105.9 26.1c0 .3.3.5.3 1.1 0 .3-.3.5-.3 1.1-.3.3-.3.5-.5.8-.3.3-.5.5-1.1.5-.3.3-.5.3-1.1.3-.3 0-.5 0-1.1-.3-.3 0-.5-.3-.8-.5-.3-.3-.5-.5-.5-.8-.3-.5-.3-.8-.3-1.1 0-.5 0-.8.3-1.1 0-.5.3-.8.5-1.1.3-.3.5-.3.8-.5.5-.3.8-.3 1.1-.3.5 0 .8 0 1.1.3.5.3.8.3 1.1.5s.2.6.5 1.1zm-2.2 1.4c.5 0 .5-.3.8-.3.3-.3.3-.5.3-.8 0-.3 0-.5-.3-.8-.3 0-.5-.3-1.1-.3h-1.6v3.5h.8V426h.3l1.1 1.4h.8l-1.1-1.3zM576 81v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V81c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM64 220.6c0 76.5 62.1 138.5 138.5 138.5 27.2 0 53.9-8.2 76.5-23.1-72.9-59.3-72.4-171.2 0-230.5-22.6-15-49.3-23.1-76.5-23.1-76.4-.1-138.5 62-138.5 138.2zm224 108.8c70.5-55 70.2-162.2 0-217.5-70.2 55.3-70.5 162.6 0 217.5zm-142.3 76.3c0-8.7-5.7-14.4-14.7-14.7-4.6 0-9.5 1.4-12.8 6.5-2.4-4.1-6.5-6.5-12.2-6.5-3.8 0-7.6 1.4-10.6 5.4V392h-8.2v36.7h8.2c0-18.9-2.5-30.2 9-30.2 10.2 0 8.2 10.2 8.2 30.2h7.9c0-18.3-2.5-30.2 9-30.2 10.2 0 8.2 10 8.2 30.2h8.2v-23zm44.9-13.7h-7.9v4.4c-2.7-3.3-6.5-5.4-11.7-5.4-10.3 0-18.2 8.2-18.2 19.3 0 11.2 7.9 19.3 18.2 19.3 5.2 0 9-1.9 11.7-5.4v4.6h7.9V392zm40.5 25.6c0-15-22.9-8.2-22.9-15.2 0-5.7 11.9-4.8 18.5-1.1l3.3-6.5c-9.4-6.1-30.2-6-30.2 8.2 0 14.3 22.9 8.3 22.9 15 0 6.3-13.5 5.8-20.7.8l-3.5 6.3c11.2 7.6 32.6 6 32.6-7.5zm35.4 9.3l-2.2-6.8c-3.8 2.1-12.2 4.4-12.2-4.1v-16.6h13.1V392h-13.1v-11.2h-8.2V392h-7.6v7.3h7.6V416c0 17.6 17.3 14.4 22.6 10.9zm13.3-13.4h27.5c0-16.2-7.4-22.6-17.4-22.6-10.6 0-18.2 7.9-18.2 19.3 0 20.5 22.6 23.9 33.8 14.2l-3.8-6c-7.8 6.4-19.6 5.8-21.9-4.9zm59.1-21.5c-4.6-2-11.6-1.8-15.2 4.4V392h-8.2v36.7h8.2V408c0-11.6 9.5-10.1 12.8-8.4l2.4-7.6zm10.6 18.3c0-11.4 11.6-15.1 20.7-8.4l3.8-6.5c-11.6-9.1-32.7-4.1-32.7 15 0 19.8 22.4 23.8 32.7 15l-3.8-6.5c-9.2 6.5-20.7 2.6-20.7-8.6zm66.7-18.3H408v4.4c-8.3-11-29.9-4.8-29.9 13.9 0 19.2 22.4 24.7 29.9 13.9v4.6h8.2V392zm33.7 0c-2.4-1.2-11-2.9-15.2 4.4V392h-7.9v36.7h7.9V408c0-11 9-10.3 12.8-8.4l2.4-7.6zm40.3-14.9h-7.9v19.3c-8.2-10.9-29.9-5.1-29.9 13.9 0 19.4 22.5 24.6 29.9 13.9v4.6h7.9v-51.7zm7.6-75.1v4.6h.8V302h1.9v-.8h-4.6v.8h1.9zm6.6 123.8c0-.5 0-1.1-.3-1.6-.3-.3-.5-.8-.8-1.1-.3-.3-.8-.5-1.1-.8-.5 0-1.1-.3-1.6-.3-.3 0-.8.3-1.4.3-.5.3-.8.5-1.1.8-.5.3-.8.8-.8 1.1-.3.5-.3 1.1-.3 1.6 0 .3 0 .8.3 1.4 0 .3.3.8.8 1.1.3.3.5.5 1.1.8.5.3 1.1.3 1.4.3.5 0 1.1 0 1.6-.3.3-.3.8-.5 1.1-.8.3-.3.5-.8.8-1.1.3-.6.3-1.1.3-1.4zm3.2-124.7h-1.4l-1.6 3.5-1.6-3.5h-1.4v5.4h.8v-4.1l1.6 3.5h1.1l1.4-3.5v4.1h1.1v-5.4zm4.4-80.5c0-76.2-62.1-138.3-138.5-138.3-27.2 0-53.9 8.2-76.5 23.1 72.1 59.3 73.2 171.5 0 230.5 22.6 15 49.5 23.1 76.5 23.1 76.4.1 138.5-61.9 138.5-138.4z"] }; +var faCcPaypal = { prefix: 'fab', iconName: 'cc-paypal', icon: [576, 512, [], "f1f4", "M186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5z"] }; +var faCcStripe = { prefix: 'fab', iconName: 'cc-stripe', icon: [576, 512, [], "f1f5", "M396.9 256.5c0 19.1-8.8 33.4-21.9 33.4-8.3 0-13.3-3-16.8-6.7l-.2-52.8c3.7-4.1 8.8-7 17-7 12.9-.1 21.9 14.5 21.9 33.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM122.2 281.1c0-42.3-54.3-34.7-54.3-50.7 0-5.5 4.6-7.7 12.1-7.7 10.8 0 24.5 3.3 35.3 9.1v-33.4c-11.8-4.7-23.5-6.5-35.3-6.5-28.8 0-48 15-48 40.2 0 39.3 54 32.9 54 49.9 0 6.6-5.7 8.7-13.6 8.7-11.8 0-26.9-4.9-38.9-11.3v33.9c13.2 5.7 26.6 8.1 38.8 8.1 29.6-.2 49.9-14.7 49.9-40.3zm68.9-86.9h-27v-30.8l-34.7 7.4-.2 113.9c0 21 15.8 36.5 36.9 36.5 11.6 0 20.2-2.1 24.9-4.7v-28.9c-4.5 1.8-27 8.3-27-12.6v-50.5h27v-30.3zm73.8 0c-4.7-1.7-21.3-4.8-29.6 10.5l-2.2-10.5h-30.7v124.5h35.5v-84.4c8.4-11 22.6-8.9 27.1-7.4v-32.7zm44.2 0h-35.7v124.5h35.7V194.2zm0-47.3l-35.7 7.6v28.9l35.7-7.6v-28.9zm122.7 108.8c0-41.3-23.5-63.8-48.4-63.8-13.9 0-22.9 6.6-27.8 11.1l-1.8-8.8h-31.3V360l35.5-7.5.1-40.2c5.1 3.7 12.7 9 25.1 9 25.4-.1 48.6-20.5 48.6-65.6zm112.2 1.2c0-36.4-17.6-65.1-51.3-65.1-33.8 0-54.3 28.7-54.3 64.9 0 42.8 24.2 64.5 58.8 64.5 17 0 29.7-3.9 39.4-9.2v-28.6c-9.7 4.9-20.8 7.9-34.9 7.9-13.8 0-26-4.9-27.6-21.5h69.5c.1-2 .4-9.4.4-12.9zm-51.6-36.1c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7z"] }; +var faCcVisa = { prefix: 'fab', iconName: 'cc-visa', icon: [576, 512, [], "f1f0", "M470.1 231.3s7.6 37.2 9.3 45H446c3.3-8.9 16-43.5 16-43.5-.2.3 3.3-9.1 5.3-14.9l2.8 13.4zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM152.5 331.2L215.7 176h-42.5l-39.3 106-4.3-21.5-14-71.4c-2.3-9.9-9.4-12.7-18.2-13.1H32.7l-.7 3.1c15.8 4 29.9 9.8 42.2 17.1l35.8 135h42.5zm94.4.2L272.1 176h-40.2l-25.1 155.4h40.1zm139.9-50.8c.2-17.7-10.6-31.2-33.7-42.3-14.1-7.1-22.7-11.9-22.7-19.2.2-6.6 7.3-13.4 23.1-13.4 13.1-.3 22.7 2.8 29.9 5.9l3.6 1.7 5.5-33.6c-7.9-3.1-20.5-6.6-36-6.6-39.7 0-67.6 21.2-67.8 51.4-.3 22.3 20 34.7 35.2 42.2 15.5 7.6 20.8 12.6 20.8 19.3-.2 10.4-12.6 15.2-24.1 15.2-16 0-24.6-2.5-37.7-8.3l-5.3-2.5-5.6 34.9c9.4 4.3 26.8 8.1 44.8 8.3 42.2.1 69.7-20.8 70-53zM528 331.4L495.6 176h-31.1c-9.6 0-16.9 2.8-21 12.9l-59.7 142.5H426s6.9-19.2 8.4-23.3H486c1.2 5.5 4.8 23.3 4.8 23.3H528z"] }; +var faCentercode = { prefix: 'fab', iconName: 'centercode', icon: [512, 512, [], "f380", "M329.2 268.6c-3.8 35.2-35.4 60.6-70.6 56.8-35.2-3.8-60.6-35.4-56.8-70.6 3.8-35.2 35.4-60.6 70.6-56.8 35.1 3.8 60.6 35.4 56.8 70.6zm-85.8 235.1C96.7 496-8.2 365.5 10.1 224.3c11.2-86.6 65.8-156.9 139.1-192 161-77.1 349.7 37.4 354.7 216.6 4.1 147-118.4 262.2-260.5 254.8zm179.9-180c27.9-118-160.5-205.9-237.2-234.2-57.5 56.3-69.1 188.6-33.8 344.4 68.8 15.8 169.1-26.4 271-110.2z"] }; +var faChrome = { prefix: 'fab', iconName: 'chrome', icon: [496, 512, [], "f268", "M131.5 217.5L55.1 100.1c47.6-59.2 119-91.8 192-92.1 42.3-.3 85.5 10.5 124.8 33.2 43.4 25.2 76.4 61.4 97.4 103L264 133.4c-58.1-3.4-113.4 29.3-132.5 84.1zm32.9 38.5c0 46.2 37.4 83.6 83.6 83.6s83.6-37.4 83.6-83.6-37.4-83.6-83.6-83.6-83.6 37.3-83.6 83.6zm314.9-89.2L339.6 174c37.9 44.3 38.5 108.2 6.6 157.2L234.1 503.6c46.5 2.5 94.4-7.7 137.8-32.9 107.4-62 150.9-192 107.4-303.9zM133.7 303.6L40.4 120.1C14.9 159.1 0 205.9 0 256c0 124 90.8 226.7 209.5 244.9l63.7-124.8c-57.6 10.8-113.2-20.8-139.5-72.5z"] }; +var faCloudscale = { prefix: 'fab', iconName: 'cloudscale', icon: [448, 512, [], "f383", "M318.1 154l-9.4 7.6c-22.5-19.3-51.5-33.6-83.3-33.6C153.8 128 96 188.8 96 260.3c0 6.6.4 13.1 1.4 19.4-2-56 41.8-97.4 92.6-97.4 24.2 0 46.2 9.4 62.6 24.7l-25.2 20.4c-8.3-.9-16.8 1.8-23.1 8.1-11.1 11-11.1 28.9 0 40 11.1 11 28.9 11 40 0 6.3-6.3 9-14.9 8.1-23.1l75.2-88.8c6.3-6.5-3.3-15.9-9.5-9.6zm-83.8 111.5c-5.6 5.5-14.6 5.5-20.2 0-5.6-5.6-5.6-14.6 0-20.2s14.6-5.6 20.2 0 5.6 14.7 0 20.2zM224 32C100.5 32 0 132.5 0 256s100.5 224 224 224 224-100.5 224-224S347.5 32 224 32zm0 384c-88.2 0-160-71.8-160-160S135.8 96 224 96s160 71.8 160 160-71.8 160-160 160z"] }; +var faCloudsmith = { prefix: 'fab', iconName: 'cloudsmith', icon: [332, 512, [], "f384", "M332.5 419.9c0 46.4-37.6 84.1-84 84.1s-84-37.7-84-84.1 37.6-84 84-84 84 37.6 84 84zm-84-243.9c46.4 0 80-37.6 80-84s-33.6-84-80-84-88 37.6-88 84-29.6 76-76 76-84 41.6-84 88 37.6 80 84 80 84-33.6 84-80 33.6-80 80-80z"] }; +var faCloudversify = { prefix: 'fab', iconName: 'cloudversify', icon: [616, 512, [], "f385", "M148.6 304c8.2 68.5 67.4 115.5 146 111.3 51.2 43.3 136.8 45.8 186.4-5.6 69.2 1.1 118.5-44.6 131.5-99.5 14.8-62.5-18.2-132.5-92.1-155.1-33-88.1-131.4-101.5-186.5-85-57.3 17.3-84.3 53.2-99.3 109.7-7.8 2.7-26.5 8.9-45 24.1 11.7 0 15.2 8.9 15.2 19.5v20.4c0 10.7-8.7 19.5-19.5 19.5h-20.2c-10.7 0-19.5-6-19.5-16.7V240H98.8C95 240 88 244.3 88 251.9v40.4c0 6.4 5.3 11.8 11.7 11.8h48.9zm227.4 8c-10.7 46.3 21.7 72.4 55.3 86.8C324.1 432.6 259.7 348 296 288c-33.2 21.6-33.7 71.2-29.2 92.9-17.9-12.4-53.8-32.4-57.4-79.8-3-39.9 21.5-75.7 57-93.9C297 191.4 369.9 198.7 400 248c-14.1-48-53.8-70.1-101.8-74.8 30.9-30.7 64.4-50.3 114.2-43.7 69.8 9.3 133.2 82.8 67.7 150.5 35-16.3 48.7-54.4 47.5-76.9l10.5 19.6c11.8 22 15.2 47.6 9.4 72-9.2 39-40.6 68.8-79.7 76.5-32.1 6.3-83.1-5.1-91.8-59.2zM128 208H88.2c-8.9 0-16.2-7.3-16.2-16.2v-39.6c0-8.9 7.3-16.2 16.2-16.2H128c8.9 0 16.2 7.3 16.2 16.2v39.6c0 8.9-7.3 16.2-16.2 16.2zM10.1 168C4.5 168 0 163.5 0 157.9v-27.8c0-5.6 4.5-10.1 10.1-10.1h27.7c5.5 0 10.1 4.5 10.1 10.1v27.8c0 5.6-4.5 10.1-10.1 10.1H10.1zM168 142.7v-21.4c0-5.1 4.2-9.3 9.3-9.3h21.4c5.1 0 9.3 4.2 9.3 9.3v21.4c0 5.1-4.2 9.3-9.3 9.3h-21.4c-5.1 0-9.3-4.2-9.3-9.3zM56 235.5v25c0 6.3-5.1 11.5-11.4 11.5H19.4C13.1 272 8 266.8 8 260.5v-25c0-6.3 5.1-11.5 11.4-11.5h25.1c6.4 0 11.5 5.2 11.5 11.5z"] }; +var faCodepen = { prefix: 'fab', iconName: 'codepen', icon: [512, 512, [], "f1cb", "M502.285 159.704l-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285zM278 63.131l172.286 114.858-76.857 51.429L278 165.703V63.131zm-44 0v102.572l-95.429 63.715-76.857-51.429L234 63.131zM44 219.132l55.143 36.857L44 292.846v-73.714zm190 229.715L61.714 333.989l76.857-51.429L234 346.275v102.572zm22-140.858l-77.715-52 77.715-52 77.715 52-77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429L278 448.847zm190-156.001l-55.143-36.857L468 219.132v73.714z"] }; +var faCodiepie = { prefix: 'fab', iconName: 'codiepie', icon: [472, 512, [], "f284", "M422.5 202.9c30.7 0 33.5 53.1-.3 53.1h-10.8v44.3h-26.6v-97.4h37.7zM472 352.6C429.9 444.5 350.4 504 248 504 111 504 0 393 0 256S111 8 248 8c97.4 0 172.8 53.7 218.2 138.4l-186 108.8L472 352.6zm-38.5 12.5l-60.3-30.7c-27.1 44.3-70.4 71.4-122.4 71.4-82.5 0-149.2-66.7-149.2-148.9 0-82.5 66.7-149.2 149.2-149.2 48.4 0 88.9 23.5 116.9 63.4l59.5-34.6c-40.7-62.6-104.7-100-179.2-100-121.2 0-219.5 98.3-219.5 219.5S126.8 475.5 248 475.5c78.6 0 146.5-42.1 185.5-110.4z"] }; +var faConnectdevelop = { prefix: 'fab', iconName: 'connectdevelop', icon: [576, 512, [], "f20e", "M550.5 241l-50.089-86.786c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.733-14.732-15.001l-55.447-95.893c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.268-15.268-15.268-4.821 0-8.839 2.143-11.786 5.625H299.518C296.839 18.143 292.821 16 288 16s-8.839 2.143-11.518 5.625H170.411C167.464 18.143 163.447 16 158.625 16c-8.303 0-15.268 6.696-15.268 15.268 0 1.607.536 3.482 1.072 4.821l-55.983 97.233c-5.356 2.41-9.107 7.5-9.107 13.661 0 .535.268 1.071.268 1.607l-53.304 92.143c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.393 12.054 15l55.179 95.358c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.393 12.054 14.732l51.697 89.732c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.268 15.268 15.268 4.821 0 8.839-2.143 11.518-5.357h106.875C279.161 493.857 283.447 496 288 496s8.839-2.143 11.518-5.357h107.143c2.678 2.946 6.696 4.821 10.982 4.821 8.571 0 15.268-6.964 15.268-15.268 0-1.607-.267-2.946-.803-4.285l51.697-90.268c6.964-1.339 12.054-7.5 12.054-14.732 0-1.607-.268-3.214-.804-4.821l54.911-95.358c6.964-1.339 12.322-7.5 12.322-15-.002-7.232-5.092-13.393-11.788-14.732zM153.535 450.732l-43.66-75.803h43.66v75.803zm0-83.839h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.999-47.41v50.624zm0-62.411l-50.357 53.304c-1.339-.536-2.679-1.34-4.018-1.607L43.447 259.75c.535-1.339.535-2.679.535-4.018s0-2.41-.268-3.482l51.965-90c2.679-.268 5.357-1.072 7.768-2.679l50.089 51.965v92.946zm0-102.322l-45.803-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.928-15.804v72.053zm0-80.625l-43.66 15.804 43.66-75.536v59.732zm326.519 39.108l.804 1.339L445.5 329.125l-63.75-67.232 98.036-101.518.268.268zM291.75 355.107l11.518 11.786H280.5l11.25-11.786zm-.268-11.25l-83.303-85.446 79.553-84.375 83.036 87.589-79.286 82.232zm5.357 5.893l79.286-82.232 67.5 71.25-5.892 28.125H313.714l-16.875-17.143zM410.411 44.393c1.071.536 2.142 1.072 3.482 1.34l57.857 100.714v.536c0 2.946.803 5.624 2.143 7.767L376.393 256l-83.035-87.589L410.411 44.393zm-9.107-2.143L287.732 162.518l-57.054-60.268 166.339-60h4.287zm-123.483 0c2.678 2.678 6.16 4.285 10.179 4.285s7.5-1.607 10.179-4.285h75L224.786 95.821 173.893 42.25h103.928zm-116.249 5.625l1.071-2.142a33.834 33.834 0 0 0 2.679-.804l51.161 53.84-54.911 19.821V47.875zm0 79.286l60.803-21.964 59.732 63.214-79.553 84.107-40.982-42.053v-83.304zm0 92.678L198 257.607l-36.428 38.304v-76.072zm0 87.858l42.053-44.464 82.768 85.982-17.143 17.678H161.572v-59.196zm6.964 162.053c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.732h99.91l-91.607 94.821h-1.339zm129.911 0c-2.679-2.41-6.428-4.285-10.447-4.285s-7.767 1.875-10.447 4.285h-96.429l91.607-94.821h38.304l91.607 94.821H298.447zm120-11.786l-4.286 7.5c-1.339.268-2.41.803-3.482 1.339l-89.196-91.875h114.376l-17.412 83.036zm12.856-22.232l12.858-60.803h21.964l-34.822 60.803zm34.822-68.839h-20.357l4.553-21.16 17.143 18.214c-.535.803-1.071 1.874-1.339 2.946zm66.161-107.411l-55.447 96.697c-1.339.535-2.679 1.071-4.018 1.874l-20.625-21.964 34.554-163.928 45.803 79.286c-.267 1.339-.803 2.678-.803 4.285 0 1.339.268 2.411.536 3.75z"] }; +var faContao = { prefix: 'fab', iconName: 'contao', icon: [512, 512, [], "f26d", "M45.4 305c14.4 67.1 26.4 129 68.2 175H34c-18.7 0-34-15.2-34-34V66c0-18.7 15.2-34 34-34h57.7C77.9 44.6 65.6 59.2 54.8 75.6c-45.4 70-27 146.8-9.4 229.4zM478 32h-90.2c21.4 21.4 39.2 49.5 52.7 84.1l-137.1 29.3c-14.9-29-37.8-53.3-82.6-43.9-24.6 5.3-41 19.3-48.3 34.6-8.8 18.7-13.2 39.8 8.2 140.3 21.1 100.2 33.7 117.7 49.5 131.2 12.9 11.1 33.4 17 58.3 11.7 44.5-9.4 55.7-40.7 57.4-73.2l137.4-29.6c3.2 71.5-18.7 125.2-57.4 163.6H478c18.7 0 34-15.2 34-34V66c0-18.8-15.2-34-34-34z"] }; +var faCpanel = { prefix: 'fab', iconName: 'cpanel', icon: [640, 512, [], "f388", "M52.9 213.7h40l-6.2 23.6c-1.9 6.5-7.4 10.9-14.3 10.9H53.8c-24.9 0-24.7 37.4 0 37.4h11.3c4.2 0 7.6 3.9 6.4 8.3L64.4 320H52c-33.5 0-59-31.4-50.3-65.2 7.3-27 28.3-41.1 51.2-41.1M73.1 320L108 189.9c1.8-6.4 7.2-10.9 14.3-10.9h37c24.1 0 45.4 16.4 51 41.2 6.6 29.1-14.5 65.3-51.7 65.3h-32l6.4-23.8c1.8-6.2 7.3-10.8 14.3-10.8h10.3c12.4 0 20.8-11.7 18.3-22.6-2.1-9.2-9.9-14.8-18.3-14.8h-19.8L112 309.2c-1.9 6.2-7.4 10.7-14.2 10.7l-24.7.1m220.6-69.4c.3-1 1.9-5.3-2.1-5.3h-57.5c-9.7 0-16.6-8.9-14.2-18.5l3.5-13.4h77.9c18.8 0 33.3 17.6 28.5 36.8l-14 51.8c-2.8 10.6-12.2 17.8-23.4 17.8l-57.5-.2c-42.9 0-38.5-63.8.7-63.8H284l-3.5 13.2c-1.9 6.2-7.4 10.8-14.2 10.8h-21.6c-5.3 0-5.3 7.9 0 7.9h34.9c4.6 0 5.1-3.9 5.5-5.3l8.6-31.8m103.1-36.9c34.4 0 59.3 32.3 50.3 65.4l-8.8 33.1c-1.2 4.9-5.7 7.8-10.3 7.8h-19.1c-4.5 0-7.6-4-6.4-8.3l10.6-40c3.3-11.6-5.6-23.4-18.1-23.4h-19.8l-17.2 64c-1.2 4.8-5.6 7.8-10.4 7.8h-18.9c-4.2 0-7.6-3.9-6.4-8.3l26.2-98h48.3M498 251.6l-8 30c-.9 3.3 1.5 6.7 5.1 6.7h73.3l-5.7 21c-1.9 6.2-7.4 10.7-14.2 10.7h-66.7c-20 0-33.3-19-28.3-36.7l10.8-40c4.8-17.6 20.7-29.6 38.6-29.6h47.3c19 0 33.2 17.7 28.3 36.8l-3.2 12c-2.9 11-12.7 17.6-23.2 17.6h-53.4l3.5-13c1.6-6.2 7.2-10.8 14.2-10.8H538c2 0 3.3-1 3.9-3l.7-2.6c.7-2.7-1.3-5.1-3.9-5.1h-32.9c-4.1 0-6.9 2.1-7.8 6zm70.2 68.4l35.6-133.1c1.2-4.7 5.5-7.9 10.4-7.9h18.9c4.5 0 7.7 4 6.5 8.3l-26.5 98.2c-5.1 20.7-24.2 34.5-44.9 34.5"] }; +var faCreativeCommons = { prefix: 'fab', iconName: 'creative-commons', icon: [496, 512, [], "f25e", "M245.83 214.87l-33.22 17.28c-9.43-19.58-25.24-19.93-27.46-19.93-22.13 0-33.22 14.61-33.22 43.84 0 23.57 9.21 43.84 33.22 43.84 14.47 0 24.65-7.09 30.57-21.26l30.55 15.5c-6.17 11.51-25.69 38.98-65.1 38.98-22.6 0-73.96-10.32-73.96-77.05 0-58.69 43-77.06 72.63-77.06 30.72-.01 52.7 11.95 65.99 35.86zm143.05 0l-32.78 17.28c-9.5-19.77-25.72-19.93-27.9-19.93-22.14 0-33.22 14.61-33.22 43.84 0 23.55 9.23 43.84 33.22 43.84 14.45 0 24.65-7.09 30.54-21.26l31 15.5c-2.1 3.75-21.39 38.98-65.09 38.98-22.69 0-73.96-9.87-73.96-77.05 0-58.67 42.97-77.06 72.63-77.06 30.71-.01 52.58 11.95 65.56 35.86zM247.56 8.05C104.74 8.05 0 123.11 0 256.05c0 138.49 113.6 248 247.56 248 129.93 0 248.44-100.87 248.44-248 0-137.87-106.62-248-248.44-248zm.87 450.81c-112.54 0-203.7-93.04-203.7-202.81 0-105.42 85.43-203.27 203.72-203.27 112.53 0 202.82 89.46 202.82 203.26-.01 121.69-99.68 202.82-202.84 202.82z"] }; +var faCreativeCommonsBy = { prefix: 'fab', iconName: 'creative-commons-by', icon: [496, 512, [], "f4e7", "M314.9 194.4v101.4h-28.3v120.5h-77.1V295.9h-28.3V194.4c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7H299c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3zm-101.5-63.7c0-23.3 11.5-35 34.5-35s34.5 11.7 34.5 35c0 23-11.5 34.5-34.5 34.5s-34.5-11.5-34.5-34.5zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z"] }; +var faCreativeCommonsNc = { prefix: 'fab', iconName: 'creative-commons-nc', icon: [496, 512, [], "f4e8", "M247.6 8C387.4 8 496 115.9 496 256c0 147.2-118.5 248-248.4 248C113.1 504 0 393.2 0 256 0 123.1 104.7 8 247.6 8zM55.8 189.1c-7.4 20.4-11.1 42.7-11.1 66.9 0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4v38.1h-28.8V368c-27.5-.3-52.6-10.2-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4zM248.4 52.3c-38.4 0-112.4 8.7-170.5 93l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3v-38.1h28.8v38.1c22.7 1.2 43.4 8.9 62 23L295 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8z"] }; +var faCreativeCommonsNcEu = { prefix: 'fab', iconName: 'creative-commons-nc-eu', icon: [496, 512, [], "f4e9", "M247.7 8C103.6 8 0 124.8 0 256c0 136.3 111.7 248 247.7 248C377.9 504 496 403.1 496 256 496 117 388.4 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-23.2 3.7-45.2 10.9-66l65.7 29.1h-4.7v29.5h23.3c0 6.2-.4 3.2-.4 19.5h-22.8v29.5h27c11.4 67 67.2 101.3 124.6 101.3 26.6 0 50.6-7.9 64.8-15.8l-10-46.1c-8.7 4.6-28.2 10.8-47.3 10.8-28.2 0-58.1-10.9-67.3-50.2h90.3l128.3 56.8c-1.5 2.1-56.2 104.3-178.8 104.3zm-16.7-190.6l-.5-.4.9.4h-.4zm77.2-19.5h3.7v-29.5h-70.3l-28.6-12.6c2.5-5.5 5.4-10.5 8.8-14.3 12.9-15.8 31.1-22.4 51.1-22.4 18.3 0 35.3 5.4 46.1 10l11.6-47.3c-15-6.6-37-12.4-62.3-12.4-39 0-72.2 15.8-95.9 42.3-5.3 6.1-9.8 12.9-13.9 20.1l-81.6-36.1c64.6-96.8 157.7-93.6 170.7-93.6 113 0 203 90.2 203 203.4 0 18.7-2.1 36.3-6.3 52.9l-136.1-60.5z"] }; +var faCreativeCommonsNcJp = { prefix: 'fab', iconName: 'creative-commons-nc-jp', icon: [496, 512, [], "f4ea", "M247.7 8C103.6 8 0 124.8 0 256c0 136.4 111.8 248 247.7 248C377.9 504 496 403.2 496 256 496 117.2 388.5 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-21.1 3-41.2 9-60.3l127 56.5h-27.9v38.6h58.1l5.7 11.8v18.7h-63.8V360h63.8v56h61.7v-56h64.2v-35.7l81 36.1c-1.5 2.2-57.1 98.3-175.2 98.3zm87.6-137.3h-57.6v-18.7l2.9-5.6 54.7 24.3zm6.5-51.4v-17.8h-38.6l63-116H301l-43.4 96-23-10.2-39.6-85.7h-65.8l27.3 51-81.9-36.5c27.8-44.1 82.6-98.1 173.7-98.1 112.8 0 203 90 203 203.4 0 21-2.7 40.6-7.9 59l-101-45.1z"] }; +var faCreativeCommonsNd = { prefix: 'fab', iconName: 'creative-commons-nd', icon: [496, 512, [], "f4eb", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm94 144.3v42.5H162.1V197h180.3zm0 79.8v42.5H162.1v-42.5h180.3z"] }; +var faCreativeCommonsPd = { prefix: 'fab', iconName: 'creative-commons-pd', icon: [496, 512, [], "f4ec", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm0 449.5c-139.2 0-235.8-138-190.2-267.9l78.8 35.1c-2.1 10.5-3.3 21.5-3.3 32.9 0 99 73.9 126.9 120.4 126.9 22.9 0 53.5-6.7 79.4-29.5L297 311.1c-5.5 6.3-17.6 16.7-36.3 16.7-37.8 0-53.7-39.9-53.9-71.9 230.4 102.6 216.5 96.5 217.9 96.8-34.3 62.4-100.6 104.8-176.7 104.8zm194.2-150l-224-100c18.8-34 54.9-30.7 74.7-11l40.4-41.6c-27.1-23.3-58-27.5-78.1-27.5-47.4 0-80.9 20.5-100.7 51.6l-74.9-33.4c36.1-54.9 98.1-91.2 168.5-91.2 111.1 0 201.5 90.4 201.5 201.5 0 18-2.4 35.4-6.8 52-.3-.1-.4-.2-.6-.4z"] }; +var faCreativeCommonsPdAlt = { prefix: 'fab', iconName: 'creative-commons-pd-alt', icon: [496, 512, [], "f4ed", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM135.5 323.3V186h68.2c33.7 0 50.5 15.5 50.5 46.5 0 9-3 46.5-57.1 46.5h-27v44.3h-34.6zm34.1-111.6v41.6h29.2c27.9 0 30-41.6-.9-41.6h-28.3zm93.9 111.6V186h53.2c21.4 0 70 5.2 70 68.6 0 63.5-48.6 68.6-70 68.6h-53.2zm34.1-108.5v79.7h19.9c24 0 34.5-15.3 34.5-39.9 0-42-31.2-39.9-35-39.9l-19.4.1z"] }; +var faCreativeCommonsRemix = { prefix: 'fab', iconName: 'creative-commons-remix', icon: [496, 512, [], "f4ee", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm161.7 207.7l4.9 2.2v70c-7.2 3.6-63.4 27.5-67.3 28.8-6.5-1.8-113.7-46.8-137.3-56.2l-64.2 26.6-63.3-27.5v-63.8l59.3-24.8c-.7-.7-.4 5-.4-70.4l67.3-29.7L361 178.5v61.6l49.1 20.3zm-70.4 81.5v-43.8h-.4v-1.8l-113.8-46.5V295l113.8 46.9v-.4l.4.4zm7.5-57.6l39.9-16.4-36.8-15.5-39 16.4 35.9 15.5zm52.3 38.1v-43L355.2 298v43.4l44.3-19z"] }; +var faCreativeCommonsSa = { prefix: 'fab', iconName: 'creative-commons-sa', icon: [496, 512, [], "f4ef", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM137.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97h62.5c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6-33.1 0-51.7 14.6-55.8 43.8h18.2l-49.2 49.2-49-49.2h19.4z"] }; +var faCreativeCommonsSampling = { prefix: 'fab', iconName: 'creative-commons-sampling', icon: [496, 512, [], "f4f0", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm3.6 53.2c2.8-.3 11.5 1 11.5 11.5l6.6 107.2 4.9-59.3c0-6 4.7-10.6 10.6-10.6 5.9 0 10.6 4.7 10.6 10.6 0 2.5-.5-5.7 5.7 81.5l5.8-64.2c.3-2.9 2.9-9.3 10.2-9.3 3.8 0 9.9 2.3 10.6 8.9l11.5 96.5 5.3-12.8c1.8-4.4 5.2-6.6 10.2-6.6h58v21.3h-50.9l-18.2 44.3c-3.9 9.9-19.5 9.1-20.8-3.1l-4-31.9-7.5 92.6c-.3 3-3 9.3-10.2 9.3-3 0-9.8-2.1-10.6-9.3 0-1.9.6 5.8-6.2-77.9l-5.3 72.2c-1.1 4.8-4.8 9.3-10.6 9.3-2.9 0-9.8-2-10.6-9.3 0-1.9.5 6.7-5.8-87.7l-5.8 94.8c0 6.3-3.6 12.4-10.6 12.4-5.2 0-10.6-4.1-10.6-12l-5.8-87.7c-5.8 92.5-5.3 84-5.3 85.9-1.1 4.8-4.8 9.3-10.6 9.3-3 0-9.8-2.1-10.6-9.3 0-.7-.4-1.1-.4-2.6l-6.2-88.6L182 348c-.7 6.5-6.7 9.3-10.6 9.3-5.8 0-9.6-4.1-10.6-8.9L149.7 272c-2 4-3.5 8.4-11.1 8.4H87.2v-21.3H132l13.7-27.9c4.4-9.9 18.2-7.2 19.9 2.7l3.1 20.4 8.4-97.9c0-6 4.8-10.6 10.6-10.6.5 0 10.6-.2 10.6 12.4l4.9 69.1 6.6-92.6c0-10.1 9.5-10.6 10.2-10.6.6 0 10.6.7 10.6 10.6l5.3 80.6 6.2-97.9c.1-1.1-.6-10.3 9.9-11.5z"] }; +var faCreativeCommonsSamplingPlus = { prefix: 'fab', iconName: 'creative-commons-sampling-plus', icon: [496, 512, [], "f4f1", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm107 205.6c-4.7 0-9 2.8-10.7 7.2l-4 9.5-11-92.8c-1.7-13.9-22-13.4-23.1.4l-4.3 51.4-5.2-68.8c-1.1-14.3-22.1-14.2-23.2 0l-3.5 44.9-5.9-94.3c-.9-14.5-22.3-14.4-23.2 0l-5.1 83.7-4.3-66.3c-.9-14.4-22.2-14.4-23.2 0l-5.3 80.2-4.1-57c-1.1-14.3-22-14.3-23.2-.2l-7.7 89.8-1.8-12.2c-1.7-11.4-17.1-13.6-22-3.3l-13.2 27.7H87.5v23.2h51.3c4.4 0 8.4-2.5 10.4-6.4l10.7 73.1c2 13.5 21.9 13 23.1-.7l3.8-43.6 5.7 78.3c1.1 14.4 22.3 14.2 23.2-.1l4.6-70.4 4.8 73.3c.9 14.4 22.3 14.4 23.2-.1l4.9-80.5 4.5 71.8c.9 14.3 22.1 14.5 23.2.2l4.6-58.6 4.9 64.4c1.1 14.3 22 14.2 23.1.1l6.8-83 2.7 22.3c1.4 11.8 17.7 14.1 22.3 3.1l18-43.4h50.5V258l-58.4.3zm-78 5.2h-21.9v21.9c0 4.1-3.3 7.5-7.5 7.5-4.1 0-7.5-3.3-7.5-7.5v-21.9h-21.9c-4.1 0-7.5-3.3-7.5-7.5 0-4.1 3.4-7.5 7.5-7.5h21.9v-21.9c0-4.1 3.4-7.5 7.5-7.5s7.5 3.3 7.5 7.5v21.9h21.9c4.1 0 7.5 3.3 7.5 7.5 0 4.1-3.4 7.5-7.5 7.5z"] }; +var faCreativeCommonsShare = { prefix: 'fab', iconName: 'creative-commons-share', icon: [496, 512, [], "f4f2", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm101 132.4c7.8 0 13.7 6.1 13.7 13.7v182.5c0 7.7-6.1 13.7-13.7 13.7H214.3c-7.7 0-13.7-6-13.7-13.7v-54h-54c-7.8 0-13.7-6-13.7-13.7V131.1c0-8.2 6.6-12.7 12.4-13.7h136.4c7.7 0 13.7 6 13.7 13.7v54h54zM159.9 300.3h40.7V198.9c0-7.4 5.8-12.6 12-13.7h55.8v-40.3H159.9v155.4zm176.2-88.1H227.6v155.4h108.5V212.2z"] }; +var faCss3 = { prefix: 'fab', iconName: 'css3', icon: [512, 512, [], "f13c", "M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z"] }; +var faCss3Alt = { prefix: 'fab', iconName: 'css3-alt', icon: [384, 512, [], "f38b", "M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z"] }; +var faCuttlefish = { prefix: 'fab', iconName: 'cuttlefish', icon: [440, 512, [], "f38c", "M344 305.5c-17.5 31.6-57.4 54.5-96 54.5-56.6 0-104-47.4-104-104s47.4-104 104-104c38.6 0 78.5 22.9 96 54.5 13.7-50.9 41.7-93.3 87-117.8C385.7 39.1 320.5 8 248 8 111 8 0 119 0 256s111 248 248 248c72.5 0 137.7-31.1 183-80.7-45.3-24.5-73.3-66.9-87-117.8z"] }; +var faDAndD = { prefix: 'fab', iconName: 'd-and-d', icon: [576, 512, [], "f38d", "M82.5 98.9c-.6-17.2 2-33.8 12.7-48.2.3 7.4 1.2 14.5 4.2 21.6 5.9-27.5 19.7-49.3 42.3-65.5-1.9 5.9-3.5 11.8-3 17.7 8.7-7.4 18.8-17.8 44.4-22.7 14.7-2.8 29.7-2 42.1 1 38.5 9.3 61 34.3 69.7 72.3 5.3 23.1.7 45-8.3 66.4-5.2 12.4-12 24.4-20.7 35.1-2-1.9-3.9-3.8-5.8-5.6-42.8-40.8-26.8-25.2-37.4-37.4-1.1-1.2-1-2.2-.1-3.6 8.3-13.5 11.8-28.2 10-44-1.1-9.8-4.3-18.9-11.3-26.2-14.5-15.3-39.2-15-53.5.6-11.4 12.5-14.1 27.4-10.9 43.6.2 1.3.4 2.7 0 3.9-3.4 13.7-4.6 27.6-2.5 41.6.1.5.1 1.1.1 1.6 0 .3-.1.5-.2 1.1-21.8-11-36-28.3-43.2-52.2-8.3 17.8-11.1 35.5-6.6 54.1-15.6-15.2-21.3-34.3-22-55.2zm469.6 123.2c-11.6-11.6-25-20.4-40.1-26.6-12.8-5.2-26-7.9-39.9-7.1-10 .6-19.6 3.1-29 6.4-2.5.9-5.1 1.6-7.7 2.2-4.9 1.2-7.3-3.1-4.7-6.8 3.2-4.6 3.4-4.2 15-12 .6-.4 1.2-.8 2.2-1.5h-2.5c-.6 0-1.2.2-1.9.3-19.3 3.3-30.7 15.5-48.9 29.6-10.4 8.1-13.8 3.8-12-.5 1.4-3.5 3.3-6.7 5.1-10 1-1.8 2.3-3.4 3.5-5.1-.2-.2-.5-.3-.7-.5-27 18.3-46.7 42.4-57.7 73.3.3.3.7.6 1 .9.3-.6.5-1.2.9-1.7 10.4-12.1 22.8-21.8 36.6-29.8 18.2-10.6 37.5-18.3 58.7-20.2 4.3-.4 8.7-.1 13.1-.1-1.8.7-3.5.9-5.3 1.1-18.5 2.4-35.5 9-51.5 18.5-30.2 17.9-54.5 42.2-75.1 70.4-.3.4-.4.9-.7 1.3 14.5 5.3 24 17.3 36.1 25.6.2-.1.3-.2.4-.4l1.2-2.7c12.2-26.9 27-52.3 46.7-74.5 16.7-18.8 38-25.3 62.5-20 5.9 1.3 11.4 4.4 17.2 6.8 2.3-1.4 5.1-3.2 8-4.7 8.4-4.3 17.4-7 26.7-9 14.7-3.1 29.5-4.9 44.5-1.3v-.5c-.5-.4-1.2-.8-1.7-1.4zM316.7 397.6c-39.4-33-22.8-19.5-42.7-35.6-.8.9 0-.2-1.9 3-11.2 19.1-25.5 35.3-44 47.6-10.3 6.8-21.5 11.8-34.1 11.8-21.6 0-38.2-9.5-49.4-27.8-12-19.5-13.3-40.7-8.2-62.6 7.8-33.8 30.1-55.2 38.6-64.3-18.7-6.2-33 1.7-46.4 13.9.8-13.9 4.3-26.2 11.8-37.3-24.3 10.6-45.9 25-64.8 43.9-.3-5.8 5.4-43.7 5.6-44.7.3-2.7-.6-5.3-3-7.4-24.2 24.7-44.5 51.8-56.1 84.6 7.4-5.9 14.9-11.4 23.6-16.2-8.3 22.3-19.6 52.8-7.8 101.1 4.6 19 11.9 36.8 24.1 52.3 2.9 3.7 6.3 6.9 9.5 10.3.2-.2.4-.3.6-.5-1.4-7-2.2-14.1-1.5-21.9 2.2 3.2 3.9 6 5.9 8.6 12.6 16 28.7 27.4 47.2 35.6 25 11.3 51.1 13.3 77.9 8.6 54.9-9.7 90.7-48.6 116-98.8 1-1.8.6-2.9-.9-4.2zm172-46.4c-9.5-3.1-22.2-4.2-28.7-2.9 9.9 4 14.1 6.6 18.8 12 12.6 14.4 10.4 34.7-5.4 45.6-11.7 8.1-24.9 10.5-38.9 9.1-1.2-.1-2.3-.4-3-.6 2.8-3.7 6-7 8.1-10.8 9.4-16.8 5.4-42.1-8.7-56.1-2.1-2.1-4.6-3.9-7-5.9-.3 1.3-.1 2.1.1 2.8 4.2 16.6-8.1 32.4-24.8 31.8-7.6-.3-13.9-3.8-19.6-8.5-19.5-16.1-39.1-32.1-58.5-48.3-5.9-4.9-12.5-8.1-20.1-8.7-4.6-.4-9.3-.6-13.9-.9-5.9-.4-8.8-2.8-10.4-8.4-.9-3.4-1.5-6.8-2.2-10.2-1.5-8.1-6.2-13-14.3-14.2-4.4-.7-8.9-1-13.3-1.5-13-1.4-19.8-7.4-22.6-20.3-5 11-1.6 22.4 7.3 29.9 4.5 3.8 9.3 7.3 13.8 11.2 4.6 3.8 7.4 8.7 7.9 14.8.4 4.7.8 9.5 1.8 14.1 2.2 10.6 8.9 18.4 17 25.1 16.5 13.7 33 27.3 49.5 41.1 17.9 15 13.9 32.8 13 56-.9 22.9 12.2 42.9 33.5 51.2 1 .4 2 .6 3.6 1.1-15.7-18.2-10.1-44.1.7-52.3.3 2.2.4 4.3.9 6.4 9.4 44.1 45.4 64.2 85 56.9 16-2.9 30.6-8.9 42.9-19.8 2-1.8 3.7-4.1 5.9-6.5-19.3 4.6-35.8.1-50.9-10.6.7-.3 1.3-.3 1.9-.3 21.3 1.8 40.6-3.4 57-17.4 19.5-16.6 26.6-42.9 17.4-66-8.3-20.1-23.6-32.3-43.8-38.9zM99.4 179.3c-5.3-9.2-13.2-15.6-22.1-21.3 13.7-.5 26.6.2 39.6 3.7-7-12.2-8.5-24.7-5-38.7 5.3 11.9 13.7 20.1 23.6 26.8 19.7 13.2 35.7 19.6 46.7 30.2 3.4 3.3 6.3 7.1 9.6 10.9-.8-2.1-1.4-4.1-2.2-6-5-10.6-13-18.6-22.6-25-1.8-1.2-2.8-2.5-3.4-4.5-3.3-12.5-3-25.1-.7-37.6 1-5.5 2.8-10.9 4.5-16.3.8-2.4 2.3-4.6 4-6.6.6 6.9 0 25.5 19.6 46 10.8 11.3 22.4 21.9 33.9 32.7 9 8.5 18.3 16.7 25.5 26.8 1.1 1.6 2.2 3.3 3.8 4.7-5-13-14.2-24.1-24.2-33.8-9.6-9.3-19.4-18.4-29.2-27.4-3.3-3-4.6-6.7-5.1-10.9-1.2-10.4 0-20.6 4.3-30.2.5-1 1.1-2 1.9-3.3.5 4.2.6 7.9 1.4 11.6 4.8 23.1 20.4 36.3 49.3 63.5 10 9.4 19.3 19.2 25.6 31.6 4.8 9.3 7.3 19 5.7 29.6-.1.6.5 1.7 1.1 2 6.2 2.6 10 6.9 9.7 14.3 7.7-2.6 12.5-8 16.4-14.5 4.2 20.2-9.1 50.3-27.2 58.7.4-4.5 5-23.4-16.5-27.7-6.8-1.3-12.8-1.3-22.9-2.1 4.7-9 10.4-20.6.5-22.4-24.9-4.6-52.8 1.9-57.8 4.6 8.2.4 16.3 1 23.5 3.3-2 6.5-4 12.7-5.8 18.9-1.9 6.5 2.1 14.6 9.3 9.6 1.2-.9 2.3-1.9 3.3-2.7-3.1 17.9-2.9 15.9-2.8 18.3.3 10.2 9.5 7.8 15.7 7.3-2.5 11.8-29.5 27.3-45.4 25.8 7-4.7 12.7-10.3 15.9-17.9-6.5.8-12.9 1.6-19.2 2.4l-.3-.9c4.7-3.4 8-7.8 10.2-13.1 8.7-21.1-3.6-38-25-39.9-9.1-.8-17.8.8-25.9 5.5 6.2-15.6 17.2-26.6 32.6-34.5-15.2-4.3-8.9-2.7-24.6-6.3 14.6-9.3 30.2-13.2 46.5-14.6-5.2-3.2-48.1-3.6-70.2 20.9 7.9 1.4 15.5 2.8 23.2 4.2-23.8 7-44 19.7-62.4 35.6 1.1-4.8 2.7-9.5 3.3-14.3.6-4.5.8-9.2.1-13.6-1.5-9.4-8.9-15.1-19.7-16.3-7.9-.9-15.6.1-23.3 1.3-.9.1-1.7.3-2.9 0 15.8-14.8 36-21.7 53.1-33.5 6-4.5 6.8-8.2 3-14.9zm128.4 26.8c3.3 16 12.6 25.5 23.8 24.3-4.6-11.3-12.1-19.5-23.8-24.3z"] }; +var faDashcube = { prefix: 'fab', iconName: 'dashcube', icon: [448, 512, [], "f210", "M326.6 104H110.4c-51.1 0-91.2 43.3-91.2 93.5V427c0 50.5 40.1 85 91.2 85h227.2c51.1 0 91.2-34.5 91.2-85V0L326.6 104zM153.9 416.5c-17.7 0-32.4-15.1-32.4-32.8V240.8c0-17.7 14.7-32.5 32.4-32.5h140.7c17.7 0 32 14.8 32 32.5v123.5l51.1 52.3H153.9z"] }; +var faDelicious = { prefix: 'fab', iconName: 'delicious', icon: [448, 512, [], "f1a5", "M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1.5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3 1 1.1 2.1 2.2 3.3 3.3 5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12zM416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192v176z"] }; +var faDeploydog = { prefix: 'fab', iconName: 'deploydog', icon: [512, 512, [], "f38e", "M382.2 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.6 0-33.2 16.4-33.2 32.6zM188.5 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.7 0-33.2 16.4-33.2 32.6zM448 96c17.5 0 32 14.4 32 32v256c0 17.5-14.4 32-32 32H64c-17.5 0-32-14.4-32-32V128c0-17.5 14.4-32 32-32h384m0-32H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h384c35.2 0 64-28.8 64-64V128c0-35.2-28.8-64-64-64z"] }; +var faDeskpro = { prefix: 'fab', iconName: 'deskpro', icon: [480, 512, [], "f38f", "M205.9 512l31.1-38.4c12.3-.2 25.6-1.4 36.5-6.6 38.9-18.6 38.4-61.9 38.3-63.8-.1-5-.8-4.4-28.9-37.4H362c-.2 50.1-7.3 68.5-10.2 75.7-9.4 23.7-43.9 62.8-95.2 69.4-8.7 1.1-32.8 1.2-50.7 1.1zm200.4-167.7c38.6 0 58.5-13.6 73.7-30.9l-175.5-.3-17.4 31.3 119.2-.1zm-43.6-223.9v168.3h-73.5l-32.7 55.5H250c-52.3 0-58.1-56.5-58.3-58.9-1.2-13.2-21.3-11.6-20.1 1.8 1.4 15.8 8.8 40 26.4 57.1h-91c-25.5 0-110.8-26.8-107-114V16.9C0 .9 9.7.3 15 .1h82c.2 0 .3.1.5.1 4.3-.4 50.1-2.1 50.1 43.7 0 13.3 20.2 13.4 20.2 0 0-18.2-5.5-32.8-15.8-43.7h84.2c108.7-.4 126.5 79.4 126.5 120.2zm-132.5 56l64 29.3c13.3-45.5-42.2-71.7-64-29.3z"] }; +var faDeviantart = { prefix: 'fab', iconName: 'deviantart', icon: [320, 512, [], "f1bd", "M320 93.2l-98.2 179.1 7.4 9.5H320v127.7H159.1l-13.5 9.2-43.7 84c-.3 0-8.6 8.6-9.2 9.2H0v-93.2l93.2-179.4-7.4-9.2H0V102.5h156l13.5-9.2 43.7-84c.3 0 8.6-8.6 9.2-9.2H320v93.1z"] }; +var faDigg = { prefix: 'fab', iconName: 'digg', icon: [512, 512, [], "f1a6", "M81.7 172.3H0v174.4h132.7V96h-51v76.3zm0 133.4H50.9v-92.3h30.8v92.3zm297.2-133.4v174.4h81.8v28.5h-81.8V416H512V172.3H378.9zm81.8 133.4h-30.8v-92.3h30.8v92.3zm-235.6 41h82.1v28.5h-82.1V416h133.3V172.3H225.1v174.4zm51.2-133.3h30.8v92.3h-30.8v-92.3zM153.3 96h51.3v51h-51.3V96zm0 76.3h51.3v174.4h-51.3V172.3z"] }; +var faDigitalOcean = { prefix: 'fab', iconName: 'digital-ocean', icon: [512, 512, [], "f391", "M256 504v-96.1c101.8 0 180.8-100.9 141.7-208-14.3-39.6-46.1-71.4-85.8-85.7-107.1-38.8-208.1 39.9-208.1 141.7H8C8 93.7 164.9-32.8 335 20.3c74.2 23.3 133.6 82.4 156.6 156.6C544.8 347.2 418.6 504 256 504zm.3-191.4h-95.6v95.6h95.6v-95.6zm-95.6 95.6H87v73.6h73.7v-73.6zM87 346.6H25.4v61.6H87v-61.6z"] }; +var faDiscord = { prefix: 'fab', iconName: 'discord', icon: [448, 512, [], "f392", "M297.216 243.2c0 15.616-11.52 28.416-26.112 28.416-14.336 0-26.112-12.8-26.112-28.416s11.52-28.416 26.112-28.416c14.592 0 26.112 12.8 26.112 28.416zm-119.552-28.416c-14.592 0-26.112 12.8-26.112 28.416s11.776 28.416 26.112 28.416c14.592 0 26.112-12.8 26.112-28.416.256-15.616-11.52-28.416-26.112-28.416zM448 52.736V512c-64.494-56.994-43.868-38.128-118.784-107.776l13.568 47.36H52.48C23.552 451.584 0 428.032 0 398.848V52.736C0 23.552 23.552 0 52.48 0h343.04C424.448 0 448 23.552 448 52.736zm-72.96 242.688c0-82.432-36.864-149.248-36.864-149.248-36.864-27.648-71.936-26.88-71.936-26.88l-3.584 4.096c43.52 13.312 63.744 32.512 63.744 32.512-60.811-33.329-132.244-33.335-191.232-7.424-9.472 4.352-15.104 7.424-15.104 7.424s21.248-20.224 67.328-33.536l-2.56-3.072s-35.072-.768-71.936 26.88c0 0-36.864 66.816-36.864 149.248 0 0 21.504 37.12 78.08 38.912 0 0 9.472-11.52 17.152-21.248-32.512-9.728-44.8-30.208-44.8-30.208 3.766 2.636 9.976 6.053 10.496 6.4 43.21 24.198 104.588 32.126 159.744 8.96 8.96-3.328 18.944-8.192 29.44-15.104 0 0-12.8 20.992-46.336 30.464 7.68 9.728 16.896 20.736 16.896 20.736 56.576-1.792 78.336-38.912 78.336-38.912z"] }; +var faDiscourse = { prefix: 'fab', iconName: 'discourse', icon: [448, 512, [], "f393", "M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z"] }; +var faDochub = { prefix: 'fab', iconName: 'dochub', icon: [416, 512, [], "f394", "M397.9 160H256V19.6L397.9 160zM304 192v130c0 66.8-36.5 100.1-113.3 100.1H96V84.8h94.7c12 0 23.1.8 33.1 2.5v-84C212.9 1.1 201.4 0 189.2 0H0v512h189.2C329.7 512 400 447.4 400 318.1V192h-96z"] }; +var faDocker = { prefix: 'fab', iconName: 'docker', icon: [640, 512, [], "f395", "M349.9 236.3h-66.1v-59.4h66.1v59.4zm0-204.3h-66.1v60.7h66.1V32zm78.2 144.8H362v59.4h66.1v-59.4zm-156.3-72.1h-66.1v60.1h66.1v-60.1zm78.1 0h-66.1v60.1h66.1v-60.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4.4 67.6.1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1l-13.3-8.9zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm-78.1-72.1h-66.1v60.1h66.1v-60.1z"] }; +var faDraft2digital = { prefix: 'fab', iconName: 'draft2digital', icon: [480, 512, [], "f396", "M369.9 425.4V371l47.1 27.2-47.1 27.2zM82.4 380.6c25.5-27.3 97.7-104.7 150.9-170 35.1-43.1 40.3-82.4 28.4-112.7-7.4-18.8-17.5-30.2-24.3-35.7 45.3 2.1 68 23.4 82.2 38.3 0 0 42.4 48.2 5.8 113.3-37 65.9-110.9 147.5-128.5 166.7H82.4zm51.8-219.2c0 12.4-10 22.4-22.4 22.4-12.4 0-22.4-10-22.4-22.4 0-12.4 10-22.4 22.4-22.4 12.4 0 22.4 10.1 22.4 22.4M336 315.9v64.7h-91.3c30.8-35 81.8-95.9 111.8-149.3 35.2-62.6 16.1-123.4-12.8-153.3-4.4-4.6-62.2-62.9-166-41.2-59.1 12.4-89.4 43.4-104.3 67.3-13.1 20.9-17 39.8-18.2 47.7-5.5 33 19.4 67.1 56.7 67.1 31.7 0 57.3-25.7 57.3-57.4 0-27.1-19.7-52.1-48-56.8 1.8-7.3 17.7-21.1 26.3-24.7 41.1-17.3 78 5.2 83.3 33.5 8.3 44.3-37.1 90.4-69.7 127.6C84.5 328.1 18.3 396.8 0 415.9l336-.1V480l144-81.9-144-82.2z"] }; +var faDribbble = { prefix: 'fab', iconName: 'dribbble', icon: [512, 512, [], "f17d", "M256 8C119.252 8 8 119.252 8 256s111.252 248 248 248 248-111.252 248-248S392.748 8 256 8zm163.97 114.366c29.503 36.046 47.369 81.957 47.835 131.955-6.984-1.477-77.018-15.682-147.502-6.818-5.752-14.041-11.181-26.393-18.617-41.614 78.321-31.977 113.818-77.482 118.284-83.523zM396.421 97.87c-3.81 5.427-35.697 48.286-111.021 76.519-34.712-63.776-73.185-116.168-79.04-124.008 67.176-16.193 137.966 1.27 190.061 47.489zm-230.48-33.25c5.585 7.659 43.438 60.116 78.537 122.509-99.087 26.313-186.36 25.934-195.834 25.809C62.38 147.205 106.678 92.573 165.941 64.62zM44.17 256.323c0-2.166.043-4.322.108-6.473 9.268.19 111.92 1.513 217.706-30.146 6.064 11.868 11.857 23.915 17.174 35.949-76.599 21.575-146.194 83.527-180.531 142.306C64.794 360.405 44.17 310.73 44.17 256.323zm81.807 167.113c22.127-45.233 82.178-103.622 167.579-132.756 29.74 77.283 42.039 142.053 45.189 160.638-68.112 29.013-150.015 21.053-212.768-27.882zm248.38 8.489c-2.171-12.886-13.446-74.897-41.152-151.033 66.38-10.626 124.7 6.768 131.947 9.055-9.442 58.941-43.273 109.844-90.795 141.978z"] }; +var faDribbbleSquare = { prefix: 'fab', iconName: 'dribbble-square', icon: [448, 512, [], "f397", "M90.2 228.2c8.9-42.4 37.4-77.7 75.7-95.7 3.6 4.9 28 38.8 50.7 79-64 17-120.3 16.8-126.4 16.7zM314.6 154c-33.6-29.8-79.3-41.1-122.6-30.6 3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4zM140.1 364c40.5 31.6 93.3 36.7 137.3 18-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6zm98.8-108.2c-3.4-7.8-7.2-15.5-11.1-23.2C159.6 253 93.4 252.2 87.4 252c0 1.4-.1 2.8-.1 4.2 0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8zm34.9 16.3c17.9 49.1 25.1 89.1 26.5 97.4 30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8zm-20.3-48.4c4.8 9.8 8.3 17.8 12 26.8 45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 176c0-88.2-71.8-160-160-160S64 167.8 64 256s71.8 160 160 160 160-71.8 160-160z"] }; +var faDropbox = { prefix: 'fab', iconName: 'dropbox', icon: [528, 512, [], "f16b", "M264.4 116.3l-132 84.3 132 84.3-132 84.3L0 284.1l132.3-84.3L0 116.3 132.3 32l132.1 84.3zM131.6 395.7l132-84.3 132 84.3-132 84.3-132-84.3zm132.8-111.6l132-84.3-132-83.6L395.7 32 528 116.3l-132.3 84.3L528 284.8l-132.3 84.3-131.3-85z"] }; +var faDrupal = { prefix: 'fab', iconName: 'drupal', icon: [448, 512, [], "f1a9", "M319.5 114.7c-22.2-14-43.5-19.5-64.7-33.5-13-8.8-31.3-30-46.5-48.3-2.7 29.3-11.5 41.2-22 49.5-21.3 17-34.8 22.2-53.5 32.3C117 123 32 181.5 32 290.5 32 399.7 123.8 480 225.8 480 327.5 480 416 406 416 294c0-112.3-83-171-96.5-179.3zm2.5 325.6c-20.1 20.1-90.1 28.7-116.7 4.2-4.8-4.8.3-12 6.5-12 0 0 17 13.3 51.5 13.3 27 0 46-7.7 54.5-14 6.1-4.6 8.4 4.3 4.2 8.5zm-54.5-52.6c8.7-3.6 29-3.8 36.8 1.3 4.1 2.8 16.1 18.8 6.2 23.7-8.4 4.2-1.2-15.7-26.5-15.7-14.7 0-19.5 5.2-26.7 11-7 6-9.8 8-12.2 4.7-6-8.2 15.9-22.3 22.4-25zM360 405c-15.2-1-45.5-48.8-65-49.5-30.9-.9-104.1 80.7-161.3 42-38.8-26.6-14.6-104.8 51.8-105.2 49.5-.5 83.8 49 108.5 48.5 21.3-.3 61.8-41.8 81.8-41.8 48.7 0 23.3 109.3-15.8 106z"] }; +var faDyalog = { prefix: 'fab', iconName: 'dyalog', icon: [416, 512, [], "f399", "M0 32v119.2h64V96h107.2C284.6 96 352 176.2 352 255.9 352 332 293.4 416 171.2 416H0v64h171.2C331.9 480 416 367.3 416 255.9c0-58.7-22.1-113.4-62.3-154.3C308.9 56 245.7 32 171.2 32H0z"] }; +var faEarlybirds = { prefix: 'fab', iconName: 'earlybirds', icon: [480, 512, [], "f39a", "M313.2 47.5c1.2-13 21.3-14 36.6-8.7.9.3 26.2 9.7 19 15.2-27.9-7.4-56.4 18.2-55.6-6.5zm-201 6.9c30.7-8.1 62 20 61.1-7.1-1.3-14.2-23.4-15.3-40.2-9.6-1 .3-28.7 10.5-20.9 16.7zM319.4 160c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-159.7 0c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm318.5 163.2c-9.9 24-40.7 11-63.9-1.2-13.5 69.1-58.1 111.4-126.3 124.2.3.9-2-.1 24 1 33.6 1.4 63.8-3.1 97.4-8-19.8-13.8-11.4-37.1-9.8-38.1 1.4-.9 14.7 1.7 21.6 11.5 8.6-12.5 28.4-14.8 30.2-13.6 1.6 1.1 6.6 20.9-6.9 34.6 4.7-.9 8.2-1.6 9.8-2.1 2.6-.8 17.7 11.3 3.1 13.3-14.3 2.3-22.6 5.1-47.1 10.8-45.9 10.7-85.9 11.8-117.7 12.8l1 11.6c3.8 18.1-23.4 24.3-27.6 6.2.8 17.9-27.1 21.8-28.4-1l-.5 5.3c-.7 18.4-28.4 17.9-28.3-.6-7.5 13.5-28.1 6.8-26.4-8.5l1.2-12.4c-36.7.9-59.7 3.1-61.8 3.1-20.9 0-20.9-31.6 0-31.6 2.4 0 27.7 1.3 63.2 2.8-61.1-15.5-103.7-55-114.9-118.2-25 12.8-57.5 26.8-68.2.8-10.5-25.4 21.5-42.6 66.8-73.4.7-6.6 1.6-13.3 2.7-19.8-14.4-19.6-11.6-36.3-16.1-60.4-16.8 2.4-23.2-9.1-23.6-23.1.3-7.3 2.1-14.9 2.4-15.4 1.1-1.8 10.1-2 12.7-2.6 6-31.7 50.6-33.2 90.9-34.5 19.7-21.8 45.2-41.5 80.9-48.3C203.3 29 215.2 8.5 216.2 8c1.7-.8 21.2 4.3 26.3 23.2 5.2-8.8 18.3-11.4 19.6-10.7 1.1.6 6.4 15-4.9 25.9 40.3 3.5 72.2 24.7 96 50.7 36.1 1.5 71.8 5.9 77.1 34 2.7.6 11.6.8 12.7 2.6.3.5 2.1 8.1 2.4 15.4-.5 13.9-6.8 25.4-23.6 23.1-3.2 17.3-2.7 32.9-8.7 47.7 2.4 11.7 4 23.8 4.8 36.4 37 25.4 70.3 42.5 60.3 66.9zM207.4 159.9c.9-44-37.9-42.2-78.6-40.3-21.7 1-38.9 1.9-45.5 13.9-11.4 20.9 5.9 92.9 23.2 101.2 9.8 4.7 73.4 7.9 86.3-7.1 8.2-9.4 15-49.4 14.6-67.7zm52 58.3c-4.3-12.4-6-30.1-15.3-32.7-2-.5-9-.5-11 0-10 2.8-10.8 22.1-17 37.2 15.4 0 19.3 9.7 23.7 9.7 4.3 0 6.3-11.3 19.6-14.2zm135.7-84.7c-6.6-12.1-24.8-12.9-46.5-13.9-40.2-1.9-78.2-3.8-77.3 40.3-.5 18.3 5 58.3 13.2 67.8 13 14.9 76.6 11.8 86.3 7.1 15.8-7.6 36.5-78.9 24.3-101.3z"] }; +var faEbay = { prefix: 'fab', iconName: 'ebay', icon: [640, 512, [], "f4f4", "M405.2 263.8c-29.1.9-47.2 6.2-47.2 25.3 0 12.4 9.9 25.8 35 25.8 33.7 0 51.6-18.4 51.6-48.4v-3.3c-11.8 0-26.3.1-39.4.6m71.5 39.7c0 9.3.3 18.6 1 26.8h-29.8c-.8-6.9-1.1-13.6-1.1-20.2-16.1 19.8-35.3 25.5-61.9 25.5-39.5 0-60.6-20.9-60.6-45 0-35 28.8-47.3 78.6-48.4 13.7-.3 29-.4 41.7-.4v-3.4c0-23.4-15-33-41-33-19.3 0-33.6 8-35 21.8h-33.7c3.6-34.4 39.7-43.1 71.5-43.1 38.1 0 70.3 13.5 70.3 53.8v65.6zm-349-56.8c-2.3-54.7-87.5-56.6-94.4 0h94.4zm-95 21.4c3.5 58.3 79.2 57.4 91.2 21.6H157c-6.4 34.4-43 46.1-74.4 46.1-57.2 0-82.5-31.5-82.5-74 0-46.8 26.2-77.6 83-77.6 45.3 0 78.4 23.7 78.4 75.4v8.5H32.7zm211 45.7c29.8 0 50.2-21.5 50.2-53.8 0-32.4-20.4-53.8-50.2-53.8-29.6 0-50.2 21.4-50.2 53.8 0 32.3 20.6 53.8 50.2 53.8m-82.2-186h32.1v80.6c15.7-18.7 37.4-24.2 58.7-24.2 35.7 0 75.4 24.1 75.4 76.2 0 43.6-31.5 75.4-76 75.4-23.3 0-45.1-8.3-58.7-24.9 0 6.6-.4 13.2-1.1 19.5h-31.5c.5-10.2 1.1-22.8 1.1-33.1V127.8zM640 189.5l-99.2 194.8h-35.9l28.5-54.1-74.6-140.7h37.5l54.9 109.9L606 189.5h34z"] }; +var faEdge = { prefix: 'fab', iconName: 'edge', icon: [512, 512, [], "f282", "M25.714 228.163c.111-.162.23-.323.342-.485-.021.162-.045.323-.065.485h-.277zm460.572 15.508c0-44.032-7.754-84.465-28.801-122.405C416.498 47.879 343.912 8.001 258.893 8.001 118.962 7.724 40.617 113.214 26.056 227.679c42.429-61.312 117.073-121.376 220.375-124.966 0 0 109.666 0 99.419 104.957H169.997c6.369-37.386 18.554-58.986 34.339-78.926-75.048 34.893-121.85 96.096-120.742 188.315.83 71.448 50.124 144.836 120.743 171.976 83.357 31.847 192.776 7.2 240.132-21.324V363.307c-80.864 56.494-270.871 60.925-272.255-67.572h314.073v-52.064z"] }; +var faElementor = { prefix: 'fab', iconName: 'elementor', icon: [448, 512, [], "f430", "M425.6 32H22.4C10 32 0 42 0 54.4v403.2C0 470 10 480 22.4 480h403.2c12.4 0 22.4-10 22.4-22.4V54.4C448 42 438 32 425.6 32M164.3 355.5h-39.8v-199h39.8v199zm159.3 0H204.1v-39.8h119.5v39.8zm0-79.6H204.1v-39.8h119.5v39.8zm0-79.7H204.1v-39.8h119.5v39.8z"] }; +var faEmber = { prefix: 'fab', iconName: 'ember', icon: [640, 512, [], "f423", "M639.9 254.6c-1.1-10.7-10.7-6.8-10.7-6.8s-15.6 12.1-29.3 10.7c-13.7-1.3-9.4-32-9.4-32s3-28.1-5.1-30.4c-8.1-2.4-18 7.3-18 7.3s-12.4 13.7-18.3 31.2l-1.6.5s1.9-30.6-.3-37.6c-1.6-3.5-16.4-3.2-18.8 3s-14.2 49.2-15 67.2c0 0-23.1 19.6-43.3 22.8s-25-9.4-25-9.4 54.8-15.3 52.9-59.1c-1.9-43.8-44.2-27.6-49-24-4.6 3.5-29.4 18.4-36.6 59.7-.2 1.4-.7 7.5-.7 7.5s-21.2 14.2-33 18c0 0 33-55.6-7.3-80.9-18.3-11-32.8 12.1-32.8 12.1s54.5-60.7 42.5-112c-5.8-24.4-18-27.1-29.2-23.1-17 6.7-23.5 16.7-23.5 16.7s-22 32-27.1 79.5-12.6 105.1-12.6 105.1-10.5 10.2-20.2 10.7-5.4-28.7-5.4-28.7 7.5-44.6 7-52.1-1.1-11.6-9.9-14.2c-8.9-2.7-18.5 8.6-18.5 8.6s-25.5 38.7-27.7 44.6l-1.3 2.4-1.3-1.6s18-52.7.8-53.5c-17.2-.8-28.5 18.8-28.5 18.8s-19.6 32.8-20.4 36.5l-1.3-1.6s8.1-38.2 6.4-47.6c-1.6-9.4-10.5-7.5-10.5-7.5s-11.3-1.3-14.2 5.9-13.7 55.3-15 70.7c0 0-28.2 20.2-46.8 20.4-18.5.3-16.7-11.8-16.7-11.8s68-23.3 49.4-69.2c-8.3-11.8-18-15.5-31.7-15.3-13.7.3-30.3 8.6-41.3 33.3-5.3 11.8-6.8 23-7.8 31.5 0 0-12.3 2.4-18.8-2.9s-10 0-10 0-11.2 14-.1 18.3 28.1 6.1 28.1 6.1c1.6 7.5 6.2 19.5 19.6 29.7 20.2 15.3 58.8-1.3 58.8-1.3l15.9-8.8s.5 14.6 12.1 16.7c11.6 2.1 16.4 1 36.5-47.9 11.8-25 12.6-23.6 12.6-23.6l1.3-.3s-9.1 46.8-5.6 59.7C187.7 319.4 203 318 203 318s8.3 2.4 15-21.2c6.7-23.6 19.6-49.9 19.6-49.9h1.6s-5.6 48.1 3 63.7c8.6 15.6 30.9 5.3 30.9 5.3s15.6-7.8 18-10.2c0 0 18.5 15.8 44.6 12.9 58.3-11.5 79.1-25.9 79.1-25.9s10 24.4 41.1 26.7c35.5 2.7 54.8-18.6 54.8-18.6s-.3 13.5 12.1 18.6c12.4 5.1 20.7-22.8 20.7-22.8l20.7-57.2h1.9s1.1 37.3 21.5 43.2 47-13.7 47-13.7 6.4-3.5 5.3-14.3zm-578 5.3c.8-32 21.8-45.9 29-39 7.3 7 4.6 22-9.1 31.4-13.7 9.5-19.9 7.6-19.9 7.6zm272.8-123.8s19.1-49.7 23.6-25.5-40 96.2-40 96.2c.5-16.2 16.4-70.7 16.4-70.7zm22.8 138.4c-12.6 33-43.3 19.6-43.3 19.6s-3.5-11.8 6.4-44.9 33.3-20.2 33.3-20.2 16.2 12.4 3.6 45.5zm84.6-14.6s-3-10.5 8.1-30.6c11-20.2 19.6-9.1 19.6-9.1s9.4 10.2-1.3 25.5-26.4 14.2-26.4 14.2z"] }; +var faEmpire = { prefix: 'fab', iconName: 'empire', icon: [496, 512, [], "f1d1", "M287.6 54.2c-10.8-2.2-22.1-3.3-33.5-3.6V32.4c78.1 2.2 146.1 44 184.6 106.6l-15.8 9.1c-6.1-9.7-12.7-18.8-20.2-27.1l-18 15.5c-26-29.6-61.4-50.7-101.9-58.4l4.8-23.9zM53.4 322.4l23-7.7c-6.4-18.3-10-38.2-10-58.7s3.3-40.4 9.7-58.7l-22.7-7.7c3.6-10.8 8.3-21.3 13.6-31l-15.8-9.1C34 181 24.1 217.5 24.1 256s10 75 27.1 106.6l15.8-9.1c-5.3-10-9.7-20.3-13.6-31.1zM213.1 434c-40.4-8-75.8-29.1-101.9-58.7l-18 15.8c-7.5-8.6-14.4-17.7-20.2-27.4l-16 9.4c38.5 62.3 106.8 104.3 184.9 106.6v-18.3c-11.3-.3-22.7-1.7-33.5-3.6l4.7-23.8zM93.3 120.9l18 15.5c26-29.6 61.4-50.7 101.9-58.4l-4.7-23.8c10.8-2.2 22.1-3.3 33.5-3.6V32.4C163.9 34.6 95.9 76.4 57.4 139l15.8 9.1c6-9.7 12.6-18.9 20.1-27.2zm309.4 270.2l-18-15.8c-26 29.6-61.4 50.7-101.9 58.7l4.7 23.8c-10.8 1.9-22.1 3.3-33.5 3.6v18.3c78.1-2.2 146.4-44.3 184.9-106.6l-16.1-9.4c-5.7 9.7-12.6 18.8-20.1 27.4zM496 256c0 137-111 248-248 248S0 393 0 256 111 8 248 8s248 111 248 248zm-12.2 0c0-130.1-105.7-235.8-235.8-235.8S12.2 125.9 12.2 256 117.9 491.8 248 491.8 483.8 386.1 483.8 256zm-39-106.6l-15.8 9.1c5.3 9.7 10 20.2 13.6 31l-22.7 7.7c6.4 18.3 9.7 38.2 9.7 58.7s-3.6 40.4-10 58.7l23 7.7c-3.9 10.8-8.3 21-13.6 31l15.8 9.1C462 331 471.9 294.5 471.9 256s-9.9-75-27.1-106.6zm-183 177.7c16.3-3.3 30.4-11.6 40.7-23.5l51.2 44.8c11.9-13.6 21.3-29.3 27.1-46.8l-64.2-22.1c2.5-7.5 3.9-15.2 3.9-23.5s-1.4-16.1-3.9-23.5l64.5-22.1c-6.1-17.4-15.5-33.2-27.4-46.8l-51.2 44.8c-10.2-11.9-24.4-20.5-40.7-23.8l13.3-66.4c-8.6-1.9-17.7-2.8-27.1-2.8-9.4 0-18.5.8-27.1 2.8l13.3 66.4c-16.3 3.3-30.4 11.9-40.7 23.8l-51.2-44.8c-11.9 13.6-21.3 29.3-27.4 46.8l64.5 22.1c-2.5 7.5-3.9 15.2-3.9 23.5s1.4 16.1 3.9 23.5l-64.2 22.1c5.8 17.4 15.2 33.2 27.1 46.8l51.2-44.8c10.2 11.9 24.4 20.2 40.7 23.5l-13.3 66.7c8.6 1.7 17.7 2.8 27.1 2.8 9.4 0 18.5-1.1 27.1-2.8l-13.3-66.7z"] }; +var faEnvira = { prefix: 'fab', iconName: 'envira', icon: [448, 512, [], "f299", "M0 32c477.6 0 366.6 317.3 367.1 366.3L448 480h-26l-70.4-71.2c-39 4.2-124.4 34.5-214.4-37C47 300.3 52 214.7 0 32zm79.7 46c-49.7-23.5-5.2 9.2-5.2 9.2 45.2 31.2 66 73.7 90.2 119.9 31.5 60.2 79 139.7 144.2 167.7 65 28 34.2 12.5 6-8.5-28.2-21.2-68.2-87-91-130.2-31.7-60-61-118.6-144.2-158.1z"] }; +var faErlang = { prefix: 'fab', iconName: 'erlang', icon: [640, 512, [], "f39d", "M21.7 246.4c-.1 86.8 29 159.5 78.7 212.1H0v-405h87.2c-41.5 50.2-65.6 116.2-65.5 192.9zM640 53.6h-83.6c31.4 42.7 48.7 97.5 46.2 162.7.5 6 .5 11.7 0 24.1H230.2c-.2 109.7 38.9 194.9 138.6 195.3 68.5-.3 118-51 151.9-106.1l96.4 48.2c-17.4 30.9-36.5 57.8-57.9 80.8H640v-405zm-80.8 405s0-.1 0 0h-.2.2zm-3.1-405h.3l-.1-.1-.2.1zm-230.7 9.6c-45.9.1-85.1 33.5-89.2 83.2h169.9c-1.1-49.7-34.5-83.1-80.7-83.2z"] }; +var faEthereum = { prefix: 'fab', iconName: 'ethereum', icon: [320, 512, [], "f42e", "M311.9 260.8L160 353.6 8 260.8 160 0l151.9 260.8zM160 383.4L8 290.6 160 512l152-221.4-152 92.8z"] }; +var faEtsy = { prefix: 'fab', iconName: 'etsy', icon: [384, 512, [], "f2d7", "M384 348c-1.75 10.75-13.75 110-15.5 132-117.879-4.299-219.895-4.743-368.5 0v-25.5c45.457-8.948 60.627-8.019 61-35.25 1.793-72.322 3.524-244.143 0-322-1.029-28.46-12.13-26.765-61-36v-25.5c73.886 2.358 255.933 8.551 362.999-3.75-3.5 38.25-7.75 126.5-7.75 126.5H332C320.947 115.665 313.241 68 277.25 68h-137c-10.25 0-10.75 3.5-10.75 9.75V241.5c58 .5 88.5-2.5 88.5-2.5 29.77-.951 27.56-8.502 40.75-65.251h25.75c-4.407 101.351-3.91 61.829-1.75 160.25H257c-9.155-40.086-9.065-61.045-39.501-61.5 0 0-21.5-2-88-2v139c0 26 14.25 38.25 44.25 38.25H263c63.636 0 66.564-24.996 98.751-99.75H384z"] }; +var faExpeditedssl = { prefix: 'fab', iconName: 'expeditedssl', icon: [496, 512, [], "f23e", "M248 43.4C130.6 43.4 35.4 138.6 35.4 256S130.6 468.6 248 468.6 460.6 373.4 460.6 256 365.4 43.4 248 43.4zm-97.4 132.9c0-53.7 43.7-97.4 97.4-97.4s97.4 43.7 97.4 97.4v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6c0-82.1-124-82.1-124 0v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6zM389.7 380c0 9.7-8 17.7-17.7 17.7H124c-9.7 0-17.7-8-17.7-17.7V238.3c0-9.7 8-17.7 17.7-17.7h248c9.7 0 17.7 8 17.7 17.7V380zm-248-137.3v132.9c0 2.5-1.9 4.4-4.4 4.4h-8.9c-2.5 0-4.4-1.9-4.4-4.4V242.7c0-2.5 1.9-4.4 4.4-4.4h8.9c2.5 0 4.4 1.9 4.4 4.4zm141.7 48.7c0 13-7.2 24.4-17.7 30.4v31.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-31.6c-10.5-6.1-17.7-17.4-17.7-30.4 0-19.7 15.8-35.4 35.4-35.4s35.5 15.8 35.5 35.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 478.3C121 486.3 17.7 383 17.7 256S121 25.7 248 25.7 478.3 129 478.3 256 375 486.3 248 486.3z"] }; +var faFacebook = { prefix: 'fab', iconName: 'facebook', icon: [448, 512, [], "f09a", "M448 56.7v398.5c0 13.7-11.1 24.7-24.7 24.7H309.1V306.5h58.2l8.7-67.6h-67v-43.2c0-19.6 5.4-32.9 33.5-32.9h35.8v-60.5c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9h-58.4v67.6h58.4V480H24.7C11.1 480 0 468.9 0 455.3V56.7C0 43.1 11.1 32 24.7 32h398.5c13.7 0 24.8 11.1 24.8 24.7z"] }; +var faFacebookF = { prefix: 'fab', iconName: 'facebook-f', icon: [264, 512, [], "f39e", "M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"] }; +var faFacebookMessenger = { prefix: 'fab', iconName: 'facebook-messenger', icon: [448, 512, [], "f39f", "M224 32C15.9 32-77.5 278 84.6 400.6V480l75.7-42c142.2 39.8 285.4-59.9 285.4-198.7C445.8 124.8 346.5 32 224 32zm23.4 278.1L190 250.5 79.6 311.6l121.1-128.5 57.4 59.6 110.4-61.1-121.1 128.5z"] }; +var faFacebookSquare = { prefix: 'fab', iconName: 'facebook-square', icon: [448, 512, [], "f082", "M448 80v352c0 26.5-21.5 48-48 48h-85.3V302.8h60.6l8.7-67.6h-69.3V192c0-19.6 5.4-32.9 33.5-32.9H384V98.7c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9H184v67.6h60.9V480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z"] }; +var faFirefox = { prefix: 'fab', iconName: 'firefox', icon: [480, 512, [], "f269", "M478.1 235.3c-.7-4.5-1.4-7.1-1.4-7.1s-1.8 2-4.7 5.9c-.9-10.7-2.8-21.2-5.8-31.6-3.7-12.9-8.5-25.4-14.5-37.4-3.8-8-8.2-15.6-13.3-22.8-1.8-2.7-3.7-5.4-5.6-7.9-8.8-14.4-19-23.3-30.7-40-7.6-12.8-12.9-26.9-15.4-41.6-3.2 8.9-5.7 18-7.4 27.3-12.1-12.2-22.5-20.8-28.9-26.7C319.4 24.2 323 9.1 323 9.1S264.7 74.2 289.9 142c8.7 23 23.8 43.1 43.4 57.9 24.4 20.2 50.8 36 64.7 76.6-11.2-21.3-28.1-39.2-48.8-51.5 6.2 14.7 9.4 30.6 9.3 46.5 0 61-49.6 110.5-110.6 110.4-8.3 0-16.5-.9-24.5-2.8-9.5-1.8-18.7-4.9-27.4-9.3-12.9-7.8-24-18.1-32.8-30.3l-.2-.3 2 .7c4.6 1.6 9.2 2.8 14 3.7 18.7 4 38.3 1.7 55.6-6.6 17.5-9.7 28-16.9 36.6-14h.2c8.4 2.7 15-5.5 9-14-10.4-13.4-27.4-20-44.2-17-17.5 2.5-33.5 15-56.4 2.9-1.5-.8-2.9-1.6-4.3-2.5-1.6-.9 4.9 1.3 3.4.3-5-2.5-9.8-5.4-14.4-8.6-.3-.3 3.5 1.1 3.1.8-5.9-4-11-9.2-15-15.2-4.1-7.4-4.5-16.4-1-24.1 2.1-3.8 5.4-6.9 9.3-8.7 3 1.5 4.8 2.6 4.8 2.6s-1.3-2.5-2.1-3.8c.3-.1.5 0 .8-.2 2.6 1.1 8.3 4 11.4 5.8 2.1 1.1 3.8 2.7 5.2 4.7 0 0 1-.5.3-2.7-1.1-2.7-2.9-5-5.4-6.6h.2c2.3 1.2 4.5 2.6 6.6 4.1 1.9-4.4 2.8-9.2 2.6-14 .2-2.6-.2-5.3-1.1-7.8-.8-1.6.5-2.2 1.9-.5-.2-1.3-.7-2.5-1.2-3.7v-.1s.8-1.1 1.2-1.5c1-1 2.1-1.9 3.4-2.7 7.2-4.5 14.8-8.4 22.7-11.6 6.4-2.8 11.7-4.9 12.8-5.6 1.6-1 3.1-2.2 4.5-3.5 5.3-4.5 9-10.8 10.2-17.7.1-.9.2-1.8.3-2.8v-1.5c-.9-3.5-6.9-6.1-38.4-9.1-11.1-1.8-20-10.1-22.5-21.1v.1c-.4 1.1-.9 2.3-1.3 3.5.4-1.2.8-2.3 1.3-3.5v-.2c6-15.7 16.8-29.1 30.8-38.3.8-.7-3.2.2-2.4-.5 2.7-1.3 5.4-2.5 8.2-3.5 1.4-.6-6-3.4-12.6-2.7-4 .2-8 1.2-11.7 2.8 1.6-1.3 6.2-3.1 5.1-3.1-8.4 1.6-16.5 4.7-23.9 9 0-.8.1-1.5.5-2.2-5.9 2.5-11 6.5-15 11.5.1-.9.2-1.8.2-2.7-2.7 2-5.2 4.3-7.3 6.9l-.1.1c-17.4-6.7-36.3-8.3-54.6-4.7l-.2-.1h.2c-3.8-3.1-7.1-6.7-9.7-10.9l-.2.1-.4-.2c-1.2-1.8-2.4-3.8-3.7-6-.9-1.6-1.8-3.4-2.7-5.2 0-.1-.1-.2-.2-.2-.4 0-.6 1.7-.9 1.3v-.1c-3.2-8.3-4.7-17.2-4.4-26.2l-.2.1c-5.1 3.5-9 8.6-11.1 14.5-.9 2.1-1.6 3.3-2.2 4.5v-.5c.1-1.1.6-3.3.5-3.1-.1.2-.2.3-.3.4-1.5 1.7-2.9 3.7-3.9 5.8-.9 1.9-1.7 3.9-2.3 5.9-.1.3 0-.3 0-1s.1-2 0-1.7l-.3.7c-6.7 14.9-10.9 30.8-12.4 47.1-.4 2.8-.6 5.6-.5 8.3v.2c-4.8 5.2-9 11-12.7 17.1-12.1 20.4-21.1 42.5-26.8 65.6 4-8.8 8.8-17.2 14.3-25.1C5.5 228.5 0 257.4 0 286.6c1.8-8.6 4.2-17 7-25.3-1.7 34.5 4.9 68.9 19.4 100.3 19.4 43.5 51.6 80 92.3 104.7 16.6 11.2 34.7 19.9 53.8 25.8 2.5.9 5.1 1.8 7.7 2.7-.8-.3-1.6-.7-2.4-1 22.6 6.8 46.2 10.3 69.8 10.3 83.7 0 111.3-31.9 113.8-35 4.1-3.7 7.5-8.2 9.9-13.3 1.6-.7 3.2-1.4 4.9-2.1l1-.5 1.9-.9c12.6-5.9 24.5-13.4 35.3-22.1 16.3-11.7 27.9-28.7 32.9-48.1 3-7.1 3.1-15 .4-22.2.9-1.4 1.7-2.8 2.7-4.3 18-28.9 28.2-61.9 29.6-95.9v-2.8c0-7.3-.6-14.5-1.9-21.6z"] }; +var faFirstOrder = { prefix: 'fab', iconName: 'first-order', icon: [448, 512, [], "f2b0", "M12.9 229.2c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4h-.2zM224 96.6c-7.1 0-14.6.6-21.4 1.7l3.7 67.4-22-64c-14.3 3.7-27.7 9.4-40 16.6l29.4 61.4-45.1-50.9c-11.4 8.9-21.7 19.1-30.6 30.9l50.6 45.4-61.1-29.7c-7.1 12.3-12.9 25.7-16.6 40l64.3 22.6-68-4c-.9 7.1-1.4 14.6-1.4 22s.6 14.6 1.4 21.7l67.7-4-64 22.6c3.7 14.3 9.4 27.7 16.6 40.3l61.1-29.7L97.7 352c8.9 11.7 19.1 22.3 30.9 30.9l44.9-50.9-29.5 61.4c12.3 7.4 25.7 13.1 40 16.9l22.3-64.6-4 68c7.1 1.1 14.6 1.7 21.7 1.7 7.4 0 14.6-.6 21.7-1.7l-4-68.6 22.6 65.1c14.3-4 27.7-9.4 40-16.9L274.9 332l44.9 50.9c11.7-8.9 22-19.1 30.6-30.9l-50.6-45.1 61.1 29.4c7.1-12.3 12.9-25.7 16.6-40.3l-64-22.3 67.4 4c1.1-7.1 1.4-14.3 1.4-21.7s-.3-14.9-1.4-22l-67.7 4 64-22.3c-3.7-14.3-9.1-28-16.6-40.3l-60.9 29.7 50.6-45.4c-8.9-11.7-19.1-22-30.6-30.9l-45.1 50.9 29.4-61.1c-12.3-7.4-25.7-13.1-40-16.9L241.7 166l4-67.7c-7.1-1.2-14.3-1.7-21.7-1.7zM443.4 128v256L224 512 4.6 384V128L224 0l219.4 128zm-17.1 10.3L224 20.9 21.7 138.3v235.1L224 491.1l202.3-117.7V138.3zM224 37.1l187.7 109.4v218.9L224 474.9 36.3 365.4V146.6L224 37.1zm0 50.9c-92.3 0-166.9 75.1-166.9 168 0 92.6 74.6 167.7 166.9 167.7 92 0 166.9-75.1 166.9-167.7 0-92.9-74.9-168-166.9-168z"] }; +var faFirstOrderAlt = { prefix: 'fab', iconName: 'first-order-alt', icon: [496, 512, [], "f50a", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 488.21C115.34 496.21 7.79 388.66 7.79 256S115.34 15.79 248 15.79 488.21 123.34 488.21 256 380.66 496.21 248 496.21zm0-459.92C126.66 36.29 28.29 134.66 28.29 256S126.66 475.71 248 475.71 467.71 377.34 467.71 256 369.34 36.29 248 36.29zm0 431.22c-116.81 0-211.51-94.69-211.51-211.51S131.19 44.49 248 44.49 459.51 139.19 459.51 256 364.81 467.51 248 467.51zm186.23-162.98a191.613 191.613 0 0 1-20.13 48.69l-74.13-35.88 61.48 54.82a193.515 193.515 0 0 1-37.2 37.29l-54.8-61.57 35.88 74.27a190.944 190.944 0 0 1-48.63 20.23l-27.29-78.47 4.79 82.93c-8.61 1.18-17.4 1.8-26.33 1.8s-17.72-.62-26.33-1.8l4.76-82.46-27.15 78.03a191.365 191.365 0 0 1-48.65-20.2l35.93-74.34-54.87 61.64a193.85 193.85 0 0 1-37.22-37.28l61.59-54.9-74.26 35.93a191.638 191.638 0 0 1-20.14-48.69l77.84-27.11-82.23 4.76c-1.16-8.57-1.78-17.32-1.78-26.21 0-9 .63-17.84 1.82-26.51l82.38 4.77-77.94-27.16a191.726 191.726 0 0 1 20.23-48.67l74.22 35.92-61.52-54.86a193.85 193.85 0 0 1 37.28-37.22l54.76 61.53-35.83-74.17a191.49 191.49 0 0 1 48.65-20.13l26.87 77.25-4.71-81.61c8.61-1.18 17.39-1.8 26.32-1.8s17.71.62 26.32 1.8l-4.74 82.16 27.05-77.76c17.27 4.5 33.6 11.35 48.63 20.17l-35.82 74.12 54.72-61.47a193.13 193.13 0 0 1 37.24 37.23l-61.45 54.77 74.12-35.86a191.515 191.515 0 0 1 20.2 48.65l-77.81 27.1 82.24-4.75c1.19 8.66 1.82 17.5 1.82 26.49 0 8.88-.61 17.63-1.78 26.19l-82.12-4.75 77.72 27.09z"] }; +var faFirstdraft = { prefix: 'fab', iconName: 'firstdraft', icon: [384, 512, [], "f3a1", "M384 192h-64v128H192v128H0v-25.6h166.4v-128h128v-128H384V192zm-25.6 38.4v128h-128v128H64V512h192V384h128V230.4h-25.6zm25.6 192h-89.6V512H320v-64h64v-25.6zM0 0v384h128V256h128V128h128V0H0z"] }; +var faFlickr = { prefix: 'fab', iconName: 'flickr', icon: [448, 512, [], "f16e", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5zm159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5z"] }; +var faFlipboard = { prefix: 'fab', iconName: 'flipboard', icon: [448, 512, [], "f44d", "M0 32v448h448V32H0zm358.4 179.2h-89.6v89.6h-89.6v89.6H89.6V121.6h268.8v89.6z"] }; +var faFly = { prefix: 'fab', iconName: 'fly', icon: [384, 512, [], "f417", "M197.8 427.8c12.9 11.7 33.7 33.3 33.2 50.7 0 .8-.1 1.6-.1 2.5-1.8 19.8-18.8 31.1-39.1 31-25-.1-39.9-16.8-38.7-35.8 1-16.2 20.5-36.7 32.4-47.6 2.3-2.1 2.7-2.7 5.6-3.6 3.4 0 3.9.3 6.7 2.8zM331.9 67.3c-16.3-25.7-38.6-40.6-63.3-52.1C243.1 4.5 214-.2 192 0c-44.1 0-71.2 13.2-81.1 17.3C57.3 45.2 26.5 87.2 28 158.6c7.1 82.2 97 176 155.8 233.8 1.7 1.6 4.5 4.5 6.2 5.1l3.3.1c2.1-.7 1.8-.5 3.5-2.1 52.3-49.2 140.7-145.8 155.9-215.7 7-39.2 3.1-72.5-20.8-112.5zM186.8 351.9c-28-51.1-65.2-130.7-69.3-189-3.4-47.5 11.4-131.2 69.3-136.7v325.7zM328.7 180c-16.4 56.8-77.3 128-118.9 170.3C237.6 298.4 275 217 277 158.4c1.6-45.9-9.8-105.8-48-131.4 88.8 18.3 115.5 98.1 99.7 153z"] }; +var faFontAwesome = { prefix: 'fab', iconName: 'font-awesome', icon: [448, 512, [], "f2b4", "M397.8 32H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-45.4 284.3c0 4.2-3.6 6-7.8 7.8-16.7 7.2-34.6 13.7-53.8 13.7-26.9 0-39.4-16.7-71.7-16.7-23.3 0-47.8 8.4-67.5 17.3-1.2.6-2.4.6-3.6 1.2V385c0 1.8 0 3.6-.6 4.8v1.2c-2.4 8.4-10.2 14.3-19.1 14.3-11.3 0-20.3-9-20.3-20.3V166.4c-7.8-6-13.1-15.5-13.1-26.3 0-18.5 14.9-33.5 33.5-33.5 18.5 0 33.5 14.9 33.5 33.5 0 10.8-4.8 20.3-13.1 26.3v18.5c1.8-.6 3.6-1.2 5.4-2.4 18.5-7.8 40.6-14.3 61.5-14.3 22.7 0 40.6 6 60.9 13.7 4.2 1.8 8.4 2.4 13.1 2.4 22.7 0 47.8-16.1 53.8-16.1 4.8 0 9 3.6 9 7.8v140.3z"] }; +var faFontAwesomeAlt = { prefix: 'fab', iconName: 'font-awesome-alt', icon: [448, 512, [], "f35c", "M397.8 67.8c7.8 0 14.3 6.6 14.3 14.3v347.6c0 7.8-6.6 14.3-14.3 14.3H50.2c-7.8 0-14.3-6.6-14.3-14.3V82.2c0-7.8 6.6-14.3 14.3-14.3h347.6m0-35.9H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-58.5 139.2c-6 0-29.9 15.5-52.6 15.5-4.2 0-8.4-.6-12.5-2.4-19.7-7.8-37-13.7-59.1-13.7-20.3 0-41.8 6.6-59.7 13.7-1.8.6-3.6 1.2-4.8 1.8v-17.9c7.8-6 12.5-14.9 12.5-25.7 0-17.9-14.3-32.3-32.3-32.3s-32.3 14.3-32.3 32.3c0 10.2 4.8 19.7 12.5 25.7v212.1c0 10.8 9 19.7 19.7 19.7 9 0 16.1-6 18.5-13.7V385c.6-1.8.6-3 .6-4.8V336c1.2 0 2.4-.6 3-1.2 19.7-8.4 43-16.7 65.7-16.7 31.1 0 43 16.1 69.3 16.1 18.5 0 36.4-6.6 52-13.7 4.2-1.8 7.2-3.6 7.2-7.8V178.3c1.8-4.1-2.3-7.1-7.7-7.1z"] }; +var faFontAwesomeFlag = { prefix: 'fab', iconName: 'font-awesome-flag', icon: [448, 512, [], "f425", "M444.373 359.424c0 7.168-6.144 10.24-13.312 13.312-28.672 12.288-59.392 23.552-92.16 23.552-46.08 0-67.584-28.672-122.88-28.672-39.936 0-81.92 14.336-115.712 29.696-2.048 1.024-4.096 1.024-6.144 2.048v77.824c0 21.405-16.122 34.816-33.792 34.816-19.456 0-34.816-15.36-34.816-34.816V102.4C12.245 92.16 3.029 75.776 3.029 57.344 3.029 25.6 28.629 0 60.373 0s57.344 25.6 57.344 57.344c0 18.432-8.192 34.816-22.528 45.056v31.744c4.124-1.374 58.768-28.672 114.688-28.672 65.27 0 97.676 27.648 126.976 27.648 38.912 0 81.92-27.648 92.16-27.648 8.192 0 15.36 6.144 15.36 13.312v240.64z"] }; +var faFontAwesomeLogoFull = { prefix: 'fab', iconName: 'font-awesome-logo-full', icon: [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"] }; +var faFonticons = { prefix: 'fab', iconName: 'fonticons', icon: [448, 512, [], "f280", "M0 32v448h448V32H0zm167.4 196h67.4l-11.1 37.3H168v112.9c0 5.8-2 6.7 3.2 7.3l43.5 4.1v25.1H84V389l21.3-2c5.2-.6 6.7-2.3 6.7-7.9V267.7c0-2.3-2.9-2.3-5.8-2.3H84V228h28v-21c0-49.6 26.5-70 77.3-70 34.1 0 64.7 8.2 64.7 52.8l-50.7 6.1c.3-18.7-4.4-23-16.3-23-18.4 0-19 9.9-19 27.4v23.3c0 2.4-3.5 4.4-.6 4.4zM364 414.7H261.3v-25.1l20.4-2.6c5.2-.6 7.6-1.7 7.6-7.3V271.8c0-4.1-2.9-6.7-6.7-7.9l-24.2-6.4 6.7-29.5h80.2v151.7c0 5.8-2.6 6.4 2.9 7.3l15.7 2.6v25.1zm-21.9-255.5l9 33.2-7.3 7.3-31.2-16.6-31.2 16.6-7.3-7.3 9-33.2-21.8-24.2 3.5-9.6h27.7l15.5-28h9.3l15.5 28h27.7l3.5 9.6-21.9 24.2z"] }; +var faFonticonsFi = { prefix: 'fab', iconName: 'fonticons-fi', icon: [384, 512, [], "f3a2", "M114.4 224h92.4l-15.2 51.2h-76.4V433c0 8-2.8 9.2 4.4 10l59.6 5.6V483H0v-35.2l29.2-2.8c7.2-.8 9.2-3.2 9.2-10.8V278.4c0-3.2-4-3.2-8-3.2H0V224h38.4v-28.8c0-68 36.4-96 106-96 46.8 0 88.8 11.2 88.8 72.4l-69.6 8.4c.4-25.6-6-31.6-22.4-31.6-25.2 0-26 13.6-26 37.6v32c0 3.2-4.8 6-.8 6zM384 483H243.2v-34.4l28-3.6c7.2-.8 10.4-2.4 10.4-10V287c0-5.6-4-9.2-9.2-10.8l-33.2-8.8 9.2-40.4h110v208c0 8-3.6 8.8 4 10l21.6 3.6V483zm-30-347.2l12.4 45.6-10 10-42.8-22.8-42.8 22.8-10-10 12.4-45.6-30-36.4 4.8-10h38L307.2 51H320l21.2 38.4h38l4.8 13.2-30 33.2z"] }; +var faFortAwesome = { prefix: 'fab', iconName: 'fort-awesome', icon: [512, 512, [], "f286", "M489.2 287.9h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6V146.2c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-6-8-4.6-11.7-4.6v-38c8.3-2 17.1-3.4 25.7-3.4 10.9 0 20.9 4.3 31.4 4.3 4.6 0 27.7-1.1 27.7-8v-60c0-2.6-2-4.6-4.6-4.6-5.1 0-15.1 4.3-24 4.3-9.7 0-20.9-4.3-32.6-4.3-8 0-16 1.1-23.7 2.9v-4.9c5.4-2.6 9.1-8.3 9.1-14.3 0-20.7-31.4-20.8-31.4 0 0 6 3.7 11.7 9.1 14.3v111.7c-3.7 0-11.7-1.4-11.7 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32H128v-32c0-2.6-2-4.6-4.6-4.6H96c-2.6 0-4.6 2-4.6 4.6v178.3H54.8v-32c0-2.6-2-4.6-4.6-4.6H22.8c-2.6 0-4.6 2-4.6 4.6V512h182.9v-96c0-72.6 109.7-72.6 109.7 0v96h182.9V292.5c.1-2.6-1.9-4.6-4.5-4.6zm-288.1-4.5c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64zm146.4 0c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64z"] }; +var faFortAwesomeAlt = { prefix: 'fab', iconName: 'fort-awesome-alt', icon: [512, 512, [], "f3a3", "M211.7 241.1v51.7c0 2.1-1.6 3.7-3.7 3.7h-22.2c-2.1 0-3.7-1.6-3.7-3.7v-51.7c0-2.1 1.6-3.7 3.7-3.7H208c2.1 0 3.7 1.6 3.7 3.7zm114.5-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7h22.2c2.1 0 3.7-1.6 3.7-3.7v-51.7c-.1-2.1-1.7-3.7-3.7-3.7zm-29.1 263.2c-.9.1-1.7.3-2.6.4-1 .2-2.1.3-3.1.5-.9.1-1.8.3-2.8.4-1 .1-2 .3-3 .4-1 .1-2 .2-2.9.3-1 .1-1.9.2-2.9.3-1 .1-2.1.2-3.1.3-.9.1-1.8.2-2.7.2-1.1.1-2.3.1-3.4.2-.8 0-1.7.1-2.5.1-1.3.1-2.6.1-3.9.1-.7 0-1.4.1-2.1.1-2 0-4 .1-6 .1s-4 0-6-.1c-.7 0-1.4 0-2.1-.1-1.3 0-2.6-.1-3.9-.1-.8 0-1.7-.1-2.5-.1-1.1-.1-2.3-.1-3.4-.2-.9-.1-1.8-.1-2.7-.2-1-.1-2.1-.2-3.1-.3-1-.1-1.9-.2-2.9-.3-1-.1-2-.2-2.9-.3-1-.1-2-.2-3-.4-.9-.1-1.8-.3-2.8-.4-1-.1-2.1-.3-3.1-.5-.9-.1-1.7-.3-2.6-.4-65.6-10.9-122.5-47.7-160-99.4-.2-.2-.3-.5-.5-.7-.8-1.1-1.6-2.2-2.3-3.3-.3-.4-.6-.8-.8-1.2-.7-1.1-1.4-2.1-2.1-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.4-2.1-2-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.3-2.2-2-3.3-.2-.4-.5-.8-.7-1.2-2.4-4-4.6-8.1-6.8-12.2-.1-.2-.2-.3-.3-.5-.6-1.1-1.1-2.2-1.7-3.3-.3-.6-.6-1.1-.8-1.7-.5-1-1-2.1-1.5-3.1-.3-.7-.6-1.3-.9-2-.5-1-.9-2-1.4-3l-.9-2.1c-.4-1-.9-2-1.3-3-.3-.7-.6-1.5-.9-2.2l-1.2-3c-.3-.8-.6-1.5-.9-2.3-.4-1-.8-2-1.1-3-.3-.9-.6-1.8-1-2.8-.6-1.6-1.1-3.3-1.7-4.9-.3-.9-.6-1.8-.9-2.8-.3-.9-.5-1.8-.8-2.7-.3-.9-.6-1.9-.8-2.8-.3-.9-.5-1.8-.8-2.7-.3-1-.5-1.9-.8-2.9-.2-.9-.5-1.8-.7-2.7-.3-1-.5-2-.7-3-.2-.9-.4-1.7-.6-2.6-.2-1.1-.5-2.2-.7-3.2-.2-.8-.3-1.6-.5-2.4-.3-1.3-.5-2.7-.8-4-.1-.6-.2-1.1-.3-1.7l-.9-5.7c-.1-.6-.2-1.3-.3-1.9-.2-1.3-.4-2.6-.5-3.9-.1-.8-.2-1.5-.3-2.3-.1-1.2-.3-2.4-.4-3.6-.1-.8-.2-1.6-.2-2.4-.1-1.2-.2-2.4-.3-3.5-.1-.8-.1-1.6-.2-2.4-.1-1.2-.2-2.4-.2-3.7 0-.8-.1-1.5-.1-2.3-.1-1.3-.1-2.7-.2-4 0-.7 0-1.3-.1-2 0-2-.1-4-.1-6 0-53.5 16.9-103 45.8-143.6 2.3-3.2 4.7-6.4 7.1-9.5 4.9-6.2 10.1-12.3 15.6-18 2.7-2.9 5.5-5.7 8.4-8.4 2.9-2.7 5.8-5.4 8.8-8 4.5-3.9 9.1-7.6 13.9-11.2 1.6-1.2 3.2-2.4 4.8-3.5C140 34.2 171.7 20.1 206 13c16.1-3.3 32.9-5 50-5s33.8 1.7 50 5c34.3 7 66 21.1 93.6 40.7 1.6 1.2 3.2 2.3 4.8 3.5 4.8 3.6 9.4 7.3 13.9 11.2 12 10.4 23 21.9 32.8 34.4 2.5 3.1 4.8 6.3 7.1 9.5C487.1 153 504 202.5 504 256c0 2 0 4-.1 6 0 .7 0 1.3-.1 2 0 1.3-.1 2.7-.2 4 0 .8-.1 1.5-.1 2.3-.1 1.2-.1 2.4-.2.7-.1.8-.1 1.6-.2 2.4-.1 1.2-.2 2.4-.3 3.5-.1.8-.2 1.6-.2 2.4-.1 1.2-.3 2.4-.4 3.6-.1.8-.2 1.5-.3 2.3-.2 1.3-.4 2.6-.5 3.9-.1.6-.2 1.3-.3 1.9l-.9 5.7c-.1.6-.2 1.1-.3 1.7-.2 1.3-.5 2.7-.8 4-.2.8-.3 1.6-.5 2.4-.2 1.1-.5 2.2-.7 3.2-.2.9-.4 1.7-.6 2.6-.2 1-.5 2-.7 3-.2.9-.5 1.8-.7 2.7-.3 1-.5 1.9-.8 2.9-.2.9-.5 1.8-.8 2.7-.3.9-.6 1.9-.8 2.8-.3.9-.5 1.8-.8 2.7-.3.9-.6 1.8-.9 2.8-.5 1.6-1.1 3.3-1.7 4.9-.3.9-.6 1.8-1 2.8-.4 1-.7 2-1.1 3-.3.8-.6 1.5-.9 2.3l-1.2 3c-.3.7-.6 1.5-.9 2.2-.4 1-.8 2-1.3 3l-.9 2.1c-.4 1-.9 2-1.4 3-.3.7-.6 1.3-.9 2-.5 1-1 2.1-1.5 3.1-.3.6-.6 1.1-.8 1.7-.6 1.1-1.1 2.2-1.7 3.3-.1.2-.2.3-.3.5-2.2 4.1-4.4 8.2-6.8 12.2-.2.4-.5.8-.7 1.2-.7 1.1-1.3 2.2-2 3.3-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2 3.2-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2.1 3.2-.3.4-.6.8-.8 1.2-.8 1.1-1.5 2.2-2.3 3.3-.2.2-.3.5-.5.7-37.6 54.7-94.5 91.4-160.1 102.4zm117.3-86.2c13-13 24.2-27.4 33.6-42.9v-71.3c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7V326h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-4.8-6.5-3.7-9.5-3.7v-30.7c6.7-1.6 13.8-2.8 20.8-2.8 8.8 0 16.8 3.5 25.4 3.5 3.7 0 22.4-.9 22.4-6.5V93.4c0-2.1-1.6-3.7-3.7-3.7-4.2 0-12.2 3.5-19.4 3.5-7.9 0-16.9-3.5-26.3-3.5-6.5 0-12.9.9-19.2 2.3v-3.9c4.4-2.1 7.4-6.7 7.4-11.5 0-16.8-25.4-16.8-25.4 0 0 4.8 3 9.5 7.4 11.5v90.2c-3 0-9.5-1.1-9.5 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v144H93.5v-25.8c0-2.1-1.6-3.7-3.7-3.7H67.7c-2.1 0-3.7 1.6-3.7 3.7v71.3c9.4 15.5 20.6 29.9 33.6 42.9 20.6 20.6 44.5 36.7 71.2 48 13.9 5.9 28.2 10.3 42.9 13.2v-75.8c0-58.6 88.6-58.6 88.6 0v75.8c14.7-2.9 29-7.4 42.9-13.2 26.7-11.3 50.6-27.4 71.2-48"] }; +var faForumbee = { prefix: 'fab', iconName: 'forumbee', icon: [448, 512, [], "f211", "M5.8 309.7C2 292.7 0 275.5 0 258.3 0 135 99.8 35 223.1 35c16.6 0 33.3 2 49.3 5.5C149 87.5 51.9 186 5.8 309.7zm392.9-189.2C385 103 369 87.8 350.9 75.2c-149.6 44.3-266.3 162.1-309.7 312 12.5 18.1 28 35.6 45.2 49 43.1-151.3 161.2-271.7 312.3-315.7zm15.8 252.7c15.2-25.1 25.4-53.7 29.5-82.8-79.4 42.9-145 110.6-187.6 190.3 30-4.4 58.9-15.3 84.6-31.3 35 13.1 70.9 24.3 107 33.6-9.3-36.5-20.4-74.5-33.5-109.8zm29.7-145.5c-2.6-19.5-7.9-38.7-15.8-56.8C290.5 216.7 182 327.5 137.1 466c18.1 7.6 37 12.5 56.6 15.2C240 367.1 330.5 274.4 444.2 227.7z"] }; +var faFoursquare = { prefix: 'fab', iconName: 'foursquare', icon: [368, 512, [], "f180", "M323.1 3H49.9C12.4 3 0 31.3 0 49.1v433.8c0 20.3 12.1 27.7 18.2 30.1 6.2 2.5 22.8 4.6 32.9-7.1C180 356.5 182.2 354 182.2 354c3.1-3.4 3.4-3.1 6.8-3.1h83.4c35.1 0 40.6-25.2 44.3-39.7l48.6-243C373.8 25.8 363.1 3 323.1 3zm-16.3 73.8l-11.4 59.7c-1.2 6.5-9.5 13.2-16.9 13.2H172.1c-12 0-20.6 8.3-20.6 20.3v13c0 12 8.6 20.6 20.6 20.6h90.4c8.3 0 16.6 9.2 14.8 18.2-1.8 8.9-10.5 53.8-11.4 58.8-.9 4.9-6.8 13.5-16.9 13.5h-73.5c-13.5 0-17.2 1.8-26.5 12.6 0 0-8.9 11.4-89.5 108.3-.9.9-1.8.6-1.8-.3V75.9c0-7.7 6.8-16.6 16.6-16.6h219c8.2 0 15.6 7.7 13.5 17.5z"] }; +var faFreeCodeCamp = { prefix: 'fab', iconName: 'free-code-camp', icon: [576, 512, [], "f2c5", "M69.3 144.5c-41 68.5-36.4 163 1 227C92.5 409.7 120 423.9 120 438c0 6.8-6 13-12.8 13C87.7 451 8 375.5 8 253.2c0-111.5 78-186 97.1-186 6 0 14.9 4.8 14.9 11.1 0 12.7-28.3 28.6-50.7 66.2zm195.8 213.8c4.5 1.8 12.3 5.2 12.3-1.2 0-2.7-2.2-2.9-4.3-3.6-8.5-3.4-14-7.7-19.1-15.2-8.2-12.1-10.1-24.2-10.1-38.6 0-32.1 44.2-37.9 44.2-70 0-12.3-7.7-15.9-7.7-19.3 0-2.2.7-2.2 2.9-2.2 8 0 19.1 13.3 22.5 19.8 2.2 4.6 2.4 6 2.4 11.1 0 7-.7 14.2-.7 21.3 0 27 31.9 19.8 31.9 6.8 0-6-3.6-11.6-3.6-17.4 0-.7 0-1.2.7-1.2 3.4 0 9.4 7.7 11.1 10.1 5.8 8.9 8.5 20.8 8.5 31.4 0 32.4-29.5 49-29.5 56 0 1 2.9 7.7 12.1 1.9 29.7-15.1 53.1-47.6 53.1-89.8 0-33.6-8.7-57.7-32.1-82.6-3.9-4.1-16.4-16.9-22.5-16.9-8.2 0 7.2 18.6 7.2 31.2 0 7.2-4.8 12.3-12.3 12.3-11.6 0-14.5-25.4-15.9-33.3-5.8-33.8-12.8-58.2-46.4-74.1-10.4-5-36.5-11.8-36.5-2.2 0 2.4 2.7 4.1 4.6 5.1 9.2 5.6 19.6 21.4 19.6 38.2 0 46.1-57.7 88.2-57.7 136.2-.2 40.3 28.1 72.6 65.3 86.2zM470.4 67c-6 0-14.4 6.5-14.4 12.6 0 8.7 12.1 19.6 17.6 25.4 81.6 85.1 78.6 214.3 17.6 291-7 8.9-35.3 35.3-35.3 43.5 0 5.1 8.2 11.4 13.2 11.4 25.4 0 98.8-80.8 98.8-185.7C568 145.9 491.8 67 470.4 67zm-42.3 323.1H167c-9.4 0-15.5 7.5-15.5 16.4 0 8.5 7 15.5 15.5 15.5h261.1c9.4 0 11.9-7.5 11.9-16.4 0-8.5-3.5-15.5-11.9-15.5z"] }; +var faFreebsd = { prefix: 'fab', iconName: 'freebsd', icon: [448, 512, [], "f3a4", "M303.7 96.2c11.1-11.1 115.5-77 139.2-53.2 23.7 23.7-42.1 128.1-53.2 139.2-11.1 11.1-39.4.9-63.1-22.9-23.8-23.7-34.1-52-22.9-63.1zM109.9 68.1C73.6 47.5 22 24.6 5.6 41.1c-16.6 16.6 7.1 69.4 27.9 105.7 18.5-32.2 44.8-59.3 76.4-78.7zM406.7 174c3.3 11.3 2.7 20.7-2.7 26.1-20.3 20.3-87.5-27-109.3-70.1-18-32.3-11.1-53.4 14.9-48.7 5.7-3.6 12.3-7.6 19.6-11.6-29.8-15.5-63.6-24.3-99.5-24.3-119.1 0-215.6 96.5-215.6 215.6 0 119 96.5 215.6 215.6 215.6S445.3 380.1 445.3 261c0-38.4-10.1-74.5-27.7-105.8-3.9 7-7.6 13.3-10.9 18.8z"] }; +var faFulcrum = { prefix: 'fab', iconName: 'fulcrum', icon: [269, 512, [], "f50b", "M70.75 164.14l-35.38 43.55L0 164.14l35.38-43.55 35.37 43.55zM119.23 0L98.69 198.18 47.72 256l50.98 57.82L119.23 512V300.89L78.15 256l41.08-44.89V0zm79.67 164.14l35.38 43.55 35.38-43.55-35.38-43.55-35.38 43.55zm-48.48 46.97L191.5 256l-41.08 44.89V512l20.54-198.18L221.94 256l-50.98-57.82L150.42 0v211.11z"] }; +var faGalacticRepublic = { prefix: 'fab', iconName: 'galactic-republic', icon: [496, 512, [], "f50c", "M248 504C111.25 504 0 392.75 0 256S111.25 8 248 8s248 111.25 248 248-111.25 248-248 248zm0-479.47C120.37 24.53 16.53 128.37 16.53 256S120.37 487.47 248 487.47 479.47 383.63 479.47 256 375.63 24.53 248 24.53zm27.62 21.81v24.62a185.933 185.933 0 0 1 83.57 34.54l17.39-17.36c-28.75-22.06-63.3-36.89-100.96-41.8zm-55.37.07c-37.64 4.94-72.16 19.8-100.88 41.85l17.28 17.36h.08c24.07-17.84 52.55-30.06 83.52-34.67V46.41zm12.25 50.17v82.87c-10.04 2.03-19.42 5.94-27.67 11.42l-58.62-58.59-21.93 21.93 58.67 58.67c-5.47 8.23-9.45 17.59-11.47 27.62h-82.9v31h82.9c2.02 10.02 6.01 19.31 11.47 27.54l-58.67 58.69 21.93 21.93 58.62-58.62a77.873 77.873 0 0 0 27.67 11.47v82.9h31v-82.9c10.05-2.03 19.37-6.06 27.62-11.55l58.67 58.69 21.93-21.93-58.67-58.69c5.46-8.23 9.47-17.52 11.5-27.54h82.87v-31h-82.87c-2.02-10.02-6.03-19.38-11.5-27.62l58.67-58.67-21.93-21.93-58.67 58.67c-8.25-5.49-17.57-9.47-27.62-11.5V96.58h-31zm183.24 30.72l-17.36 17.36a186.337 186.337 0 0 1 34.67 83.67h24.62c-4.95-37.69-19.83-72.29-41.93-101.03zm-335.55.13c-22.06 28.72-36.91 63.26-41.85 100.91h24.65c4.6-30.96 16.76-59.45 34.59-83.52l-17.39-17.39zM38.34 283.67c4.92 37.64 19.75 72.18 41.8 100.9l17.36-17.39c-17.81-24.07-29.92-52.57-34.51-83.52H38.34zm394.7 0c-4.61 30.99-16.8 59.5-34.67 83.6l17.36 17.36c22.08-28.74 36.98-63.29 41.93-100.96h-24.62zM136.66 406.38l-17.36 17.36c28.73 22.09 63.3 36.98 100.96 41.93v-24.64c-30.99-4.63-59.53-16.79-83.6-34.65zm222.53.05c-24.09 17.84-52.58 30.08-83.57 34.67v24.57c37.67-4.92 72.21-19.79 100.96-41.85l-17.31-17.39h-.08z"] }; +var faGalacticSenate = { prefix: 'fab', iconName: 'galactic-senate', icon: [512, 512, [], "f50d", "M249.86 33.48v26.07C236.28 80.17 226 168.14 225.39 274.9c11.74-15.62 19.13-33.33 19.13-48.24v-16.88c-.03-5.32.75-10.53 2.19-15.65.65-2.14 1.39-4.08 2.62-5.82 1.23-1.75 3.43-3.79 6.68-3.79 3.24 0 5.45 2.05 6.68 3.79 1.23 1.75 1.97 3.68 2.62 5.82 1.44 5.12 2.22 10.33 2.19 15.65v16.88c0 14.91 7.39 32.62 19.13 48.24-.63-106.76-10.91-194.73-24.49-215.35V33.48h-12.28zm-26.34 147.77c-9.52 2.15-18.7 5.19-27.46 9.08 8.9 16.12 9.76 32.64 1.71 37.29-8 4.62-21.85-4.23-31.36-19.82-11.58 8.79-21.88 19.32-30.56 31.09 14.73 9.62 22.89 22.92 18.32 30.66-4.54 7.7-20.03 7.14-35.47-.96-5.78 13.25-9.75 27.51-11.65 42.42 9.68.18 18.67 2.38 26.18 6.04 17.78-.3 32.77-1.96 40.49-4.22 5.55-26.35 23.02-48.23 46.32-59.51.73-25.55 1.88-49.67 3.48-72.07zm64.96 0c1.59 22.4 2.75 46.52 3.47 72.07 23.29 11.28 40.77 33.16 46.32 59.51 7.72 2.26 22.71 3.92 40.49 4.22 7.51-3.66 16.5-5.85 26.18-6.04-1.9-14.91-5.86-29.17-11.65-42.42-15.44 8.1-30.93 8.66-35.47.96-4.57-7.74 3.6-21.05 18.32-30.66-8.68-11.77-18.98-22.3-30.56-31.09-9.51 15.59-23.36 24.44-31.36 19.82-8.05-4.65-7.19-21.16 1.71-37.29a147.49 147.49 0 0 0-27.45-9.08zm-32.48 8.6c-3.23 0-5.86 8.81-6.09 19.93h-.05v16.88c0 41.42-49.01 95.04-93.49 95.04-52 0-122.75-1.45-156.37 29.17v2.51c9.42 17.12 20.58 33.17 33.18 47.97C45.7 380.26 84.77 360.4 141.2 360c45.68 1.02 79.03 20.33 90.76 40.87.01.01-.01.04 0 .05 7.67 2.14 15.85 3.23 24.04 3.21 8.19.02 16.37-1.07 24.04-3.21.01-.01-.01-.04 0-.05 11.74-20.54 45.08-39.85 90.76-40.87 56.43.39 95.49 20.26 108.02 41.35 12.6-14.8 23.76-30.86 33.18-47.97v-2.51c-33.61-30.62-104.37-29.17-156.37-29.17-44.48 0-93.49-53.62-93.49-95.04v-16.88h-.05c-.23-11.12-2.86-19.93-6.09-19.93zm0 96.59c22.42 0 40.6 18.18 40.6 40.6s-18.18 40.65-40.6 40.65-40.6-18.23-40.6-40.65c0-22.42 18.18-40.6 40.6-40.6zm0 7.64c-18.19 0-32.96 14.77-32.96 32.96S237.81 360 256 360s32.96-14.77 32.96-32.96-14.77-32.96-32.96-32.96zm0 6.14c14.81 0 26.82 12.01 26.82 26.82s-12.01 26.82-26.82 26.82-26.82-12.01-26.82-26.82 12.01-26.82 26.82-26.82zm-114.8 66.67c-10.19.07-21.6.36-30.5 1.66.43 4.42 1.51 18.63 7.11 29.76 9.11-2.56 18.36-3.9 27.62-3.9 41.28.94 71.48 34.35 78.26 74.47l.11 4.7c10.4 1.91 21.19 2.94 32.21 2.94 11.03 0 21.81-1.02 32.21-2.94l.11-4.7c6.78-40.12 36.98-73.53 78.26-74.47 9.26 0 18.51 1.34 27.62 3.9 5.6-11.13 6.68-25.34 7.11-29.76-8.9-1.3-20.32-1.58-30.5-1.66-18.76.42-35.19 4.17-48.61 9.67-12.54 16.03-29.16 30.03-49.58 33.07-.09.02-.17.04-.27.05-.05.01-.11.04-.16.05-5.24 1.07-10.63 1.6-16.19 1.6-5.55 0-10.95-.53-16.19-1.6-.05-.01-.11-.04-.16-.05-.1-.02-.17-.04-.27-.05-20.42-3.03-37.03-17.04-49.58-33.07-13.42-5.49-29.86-9.25-48.61-9.67z"] }; +var faGetPocket = { prefix: 'fab', iconName: 'get-pocket', icon: [448, 512, [], "f265", "M407.6 64h-367C18.5 64 0 82.5 0 104.6v135.2C0 364.5 99.7 464 224.2 464c124 0 223.8-99.5 223.8-224.2V104.6c0-22.4-17.7-40.6-40.4-40.6zm-162 268.5c-12.4 11.8-31.4 11.1-42.4 0C89.5 223.6 88.3 227.4 88.3 209.3c0-16.9 13.8-30.7 30.7-30.7 17 0 16.1 3.8 105.2 89.3 90.6-86.9 88.6-89.3 105.5-89.3 16.9 0 30.7 13.8 30.7 30.7 0 17.8-2.9 15.7-114.8 123.2z"] }; +var faGg = { prefix: 'fab', iconName: 'gg', icon: [512, 512, [], "f260", "M179.2 230.4l102.4 102.4-102.4 102.4L0 256 179.2 76.8l44.8 44.8-25.6 25.6-19.2-19.2-128 128 128 128 51.5-51.5-77.1-76.5 25.6-25.6zM332.8 76.8L230.4 179.2l102.4 102.4 25.6-25.6-77.1-76.5 51.5-51.5 128 128-128 128-19.2-19.2-25.6 25.6 44.8 44.8L512 256 332.8 76.8z"] }; +var faGgCircle = { prefix: 'fab', iconName: 'gg-circle', icon: [512, 512, [], "f261", "M257 8C120 8 9 119 9 256s111 248 248 248 248-111 248-248S394 8 257 8zm-49.5 374.8L81.8 257.1l125.7-125.7 35.2 35.4-24.2 24.2-11.1-11.1-77.2 77.2 77.2 77.2 26.6-26.6-53.1-52.9 24.4-24.4 77.2 77.2-75 75.2zm99-2.2l-35.2-35.2 24.1-24.4 11.1 11.1 77.2-77.2-77.2-77.2-26.5 26.5 53.1 52.9-24.4 24.4-77.2-77.2 75-75L432.2 255 306.5 380.6z"] }; +var faGit = { prefix: 'fab', iconName: 'git', icon: [448, 512, [], "f1d3", "M18.8 221.7c0 25.3 16.2 60 41.5 68.5v1c-18.8 8.3-24 50.6 1 65.8v1C34 367 16 384.3 16 414.2c0 51.5 48.8 65.8 91.5 65.8 52 0 90.7-18.7 90.7-76 0-70.5-101-44.5-101-82.8 0-13.5 7.2-18.7 19.7-21.3 41.5-7.7 67.5-40 67.5-82.2 0-7.3-1.5-14.2-4-21 6.7-1.5 13.2-3.3 19.7-5.5v-50.5c-17.2 6.8-35.7 11.8-54.5 11.8-53.8-31-126.8 1.3-126.8 69.2zm87.7 163.8c17 0 41.2 3 41.2 25 0 21.8-19.5 26.3-37.7 26.3-17.3 0-43.3-2.7-43.3-25.2.1-22.3 22.1-26.1 39.8-26.1zM103.3 256c-22 0-31.3-13-31.3-33.8 0-49.3 61-48.8 61-.5 0 20.3-8 34.3-29.7 34.3zM432 305.5v49c-13.3 7.3-30.5 9.8-45.5 9.8-53.5 0-59.8-42.2-59.8-85.7v-87.7h.5v-1c-7 0-7.3-1.6-24 1v-47.5h24c0-22.3.3-31-1.5-41.2h56.7c-2 13.8-1.5 27.5-1.5 41.2h51v47.5s-19.3-1-51-1V281c0 14.8 3.3 32.8 21.8 32.8 9.8 0 21.3-2.8 29.3-8.3zM286 68.7c0 18.7-14.5 36.2-33.8 36.2-19.8 0-34.5-17.2-34.5-36.2 0-19.3 14.5-36.7 34.5-36.7C272 32 286 50 286 68.7zm-6.2 74.5c-1.8 14.6-1.6 199.8 0 217.8h-55.5c1.6-18.1 1.8-203 0-217.8h55.5z"] }; +var faGitSquare = { prefix: 'fab', iconName: 'git-square', icon: [448, 512, [], "f1d2", "M140.1 348.5c12.1 0 29.5 2.1 29.5 17.9 0 15.5-13.9 18.8-27 18.8-12.3 0-30.9-2-30.9-18s15.7-18.7 28.4-18.7zm-24.7-116.6c0 14.8 6.6 24.1 22.3 24.1 15.5 0 21.2-10 21.2-24.5.1-34.4-43.5-34.8-43.5.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-241 93.7c-12.3 4.8-25.5 8.4-38.9 8.4-38.5-22.1-90.7.9-90.7 49.5 0 18 11.6 42.9 29.6 48.9v.7c-13.4 5.9-17.1 36.1.7 47v.7c-19.5 6.4-32.3 18.8-32.3 40.2 0 36.8 34.8 47 65.4 47 37.1 0 64.8-13.4 64.8-54.3 0-50.4-72.1-31.8-72.1-59.1 0-9.6 5.2-13.4 14.1-15.2 29.6-5.5 48.2-28.6 48.2-58.7 0-5.2-1.1-10.2-2.9-15 4.8-1.1 9.5-2.3 14.1-3.9v-36.2zm56.8 1.8h-39.6c1.3 10.6 1.1 142.6 0 155.5h39.6c-1.1-12.8-1.2-145.1 0-155.5zm4.5-53.3c0-13.4-10-26.2-24.1-26.2-14.3 0-24.6 12.5-24.6 26.2 0 13.6 10.5 25.9 24.6 25.9 13.7 0 24.1-12.5 24.1-25.9zm104.3 53.3h-36.4c0-9.8-.4-19.6 1.1-29.5h-40.5c1.3 7.3 1.1 13.6 1.1 29.5h-17.1v33.9c11.9-1.9 12.1-.7 17.1-.7v.7h-.4v62.7c0 31.1 4.5 61.2 42.7 61.2 10.7 0 23-1.8 32.5-7v-35c-5.7 3.9-13.9 5.9-20.9 5.9-13.2 0-15.5-12.9-15.5-23.4v-65.2c22.7 0 36.4.7 36.4.7v-33.8z"] }; +var faGithub = { prefix: 'fab', iconName: 'github', icon: [496, 512, [], "f09b", "M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"] }; +var faGithubAlt = { prefix: 'fab', iconName: 'github-alt', icon: [480, 512, [], "f113", "M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1zM480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2zm-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3zm-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1z"] }; +var faGithubSquare = { prefix: 'fab', iconName: 'github-square', icon: [448, 512, [], "f092", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z"] }; +var faGitkraken = { prefix: 'fab', iconName: 'gitkraken', icon: [592, 512, [], "f3a6", "M565.7 118.1c-2.3-6.1-9.3-9.2-15.3-6.6-5.7 2.4-8.5 8.9-6.3 14.6 10.9 29 16.9 60.5 16.9 93.3 0 134.6-100.3 245.7-230.2 262.7V358.4c7.9-1.5 15.5-3.6 23-6.2v104c106.7-25.9 185.9-122.1 185.9-236.8 0-91.8-50.8-171.8-125.8-213.3-5.7-3.2-13-.9-15.9 5-2.7 5.5-.6 12.2 4.7 15.1 67.9 37.6 113.9 110 113.9 193.2 0 93.3-57.9 173.1-139.8 205.4v-92.2c14.2-4.5 24.9-17.7 24.9-33.5 0-13.1-6.8-24.4-17.3-30.5 8.3-79.5 44.5-58.6 44.5-83.9V170c0-38-87.9-161.8-129-164.7-2.5-.2-5-.2-7.6 0C251.1 8.3 163.2 132 163.2 170v14.8c0 25.3 36.3 4.3 44.5 83.9-10.6 6.1-17.3 17.4-17.3 30.5 0 15.8 10.6 29 24.8 33.5v92.2c-81.9-32.2-139.8-112-139.8-205.4 0-83.1 46-155.5 113.9-193.2 5.4-3 7.4-9.6 4.7-15.1-2.9-5.9-10.1-8.2-15.9-5-75 41.5-125.8 121.5-125.8 213.3 0 114.7 79.2 210.8 185.9 236.8v-104c7.6 2.5 15.1 4.6 23 6.2v123.7C131.4 465.2 31 354.1 31 219.5c0-32.8 6-64.3 16.9-93.3 2.2-5.8-.6-12.2-6.3-14.6-6-2.6-13 .4-15.3 6.6C14.5 149.7 8 183.8 8 219.5c0 155.1 122.6 281.6 276.3 287.8V361.4c6.8.4 15 .5 23.4 0v145.8C461.4 501.1 584 374.6 584 219.5c0-35.7-6.5-69.8-18.3-101.4zM365.9 275.5c13 0 23.7 10.5 23.7 23.7 0 13.1-10.6 23.7-23.7 23.7-13 0-23.7-10.5-23.7-23.7 0-13.1 10.6-23.7 23.7-23.7zm-139.8 47.3c-13.2 0-23.7-10.7-23.7-23.7s10.5-23.7 23.7-23.7c13.1 0 23.7 10.6 23.7 23.7 0 13-10.5 23.7-23.7 23.7z"] }; +var faGitlab = { prefix: 'fab', iconName: 'gitlab', icon: [512, 512, [], "f296", "M29.782 199.732L256 493.714 8.074 309.699c-6.856-5.142-9.712-13.996-7.141-21.993l28.849-87.974zm75.405-174.806c-3.142-8.854-15.709-8.854-18.851 0L29.782 199.732h131.961L105.187 24.926zm56.556 174.806L256 493.714l94.257-293.982H161.743zm349.324 87.974l-28.849-87.974L256 493.714l247.926-184.015c6.855-5.142 9.711-13.996 7.141-21.993zm-85.404-262.78c-3.142-8.854-15.709-8.854-18.851 0l-56.555 174.806h131.961L425.663 24.926z"] }; +var faGitter = { prefix: 'fab', iconName: 'gitter', icon: [384, 512, [], "f426", "M66.4 322.5H16V0h50.4v322.5zM166.9 76.1h-50.4V512h50.4V76.1zm100.6 0h-50.4V512h50.4V76.1zM368 76h-50.4v247H368V76z"] }; +var faGlide = { prefix: 'fab', iconName: 'glide', icon: [448, 512, [], "f2a5", "M252.8 148.6c0 8.8-1.6 17.7-3.4 26.4-5.8 27.8-11.6 55.8-17.3 83.6-1.4 6.3-8.3 4.9-13.7 4.9-23.8 0-30.5-26-30.5-45.5 0-29.3 11.2-68.1 38.5-83.1 4.3-2.5 9.2-4.2 14.1-4.2 11.4 0 12.3 8.3 12.3 17.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 187c0-5.1-20.8-37.7-25.5-39.5-2.2-.9-7.2-2.3-9.6-2.3-23.1 0-38.7 10.5-58.2 21.5l-.5-.5c4.3-29.4 14.6-57.2 14.6-87.4 0-44.6-23.8-62.7-67.5-62.7-71.7 0-108 70.8-108 123.5 0 54.7 32 85 86.3 85 7.5 0 6.9-.6 6.9 2.3-10.5 80.3-56.5 82.9-56.5 58.9 0-24.4 28-36.5 28.3-38-.2-7.6-29.3-17.2-36.7-17.2-21.1 0-32.7 33-32.7 50.6 0 32.3 20.4 54.7 53.3 54.7 48.2 0 83.4-49.7 94.3-91.7 9.4-37.7 7-39.4 12.3-42.1 20-10.1 35.8-16.8 58.4-16.8 11.1 0 19 2.3 36.7 5.2 1.8.1 4.1-1.7 4.1-3.5z"] }; +var faGlideG = { prefix: 'fab', iconName: 'glide-g', icon: [448, 512, [], "f2a6", "M407.1 211.2c-3.5-1.4-11.6-3.8-15.4-3.8-37.1 0-62.2 16.8-93.5 34.5l-.9-.9c7-47.3 23.5-91.9 23.5-140.4C320.8 29.1 282.6 0 212.4 0 97.3 0 39 113.7 39 198.4 39 286.3 90.3 335 177.6 335c12 0 11-1 11 3.8-16.9 128.9-90.8 133.1-90.8 94.6 0-39.2 45-58.6 45.5-61-.3-12.2-47-27.6-58.9-27.6-33.9.1-52.4 51.2-52.4 79.3C32 476 64.8 512 117.5 512c77.4 0 134-77.8 151.4-145.4 15.1-60.5 11.2-63.3 19.7-67.6 32.2-16.2 57.5-27 93.8-27 17.8 0 30.5 3.7 58.9 8.4 2.9 0 6.7-2.9 6.7-5.8 0-8-33.4-60.5-40.9-63.4zm-175.3-84.4c-9.3 44.7-18.6 89.6-27.8 134.3-2.3 10.2-13.3 7.8-22 7.8-38.3 0-49-41.8-49-73.1 0-47 18-109.3 61.8-133.4 7-4.1 14.8-6.7 22.6-6.7 18.6 0 20 13.3 20 28.7-.1 14.3-2.7 28.5-5.6 42.4z"] }; +var faGofore = { prefix: 'fab', iconName: 'gofore', icon: [400, 512, [], "f3a7", "M324 319.8h-13.2v34.7c-24.5 23.1-56.3 35.8-89.9 35.8-73.2 0-132.4-60.2-132.4-134.4 0-74.1 59.2-134.4 132.4-134.4 35.3 0 68.6 14 93.6 39.4l62.3-63.3C335 55.3 279.7 32 220.7 32 98 32 0 132.6 0 256c0 122.5 97 224 220.7 224 63.2 0 124.5-26.2 171-82.5-2-27.6-13.4-77.7-67.7-77.7zm-12.1-112.5H205.6v89H324c33.5 0 60.5 15.1 76 41.8v-30.6c0-65.2-40.4-100.2-88.1-100.2z"] }; +var faGoodreads = { prefix: 'fab', iconName: 'goodreads', icon: [448, 512, [], "f3a8", "M299.9 191.2c5.1 37.3-4.7 79-35.9 100.7-22.3 15.5-52.8 14.1-70.8 5.7-37.1-17.3-49.5-58.6-46.8-97.2 4.3-60.9 40.9-87.9 75.3-87.5 46.9-.2 71.8 31.8 78.2 78.3zM448 88v336c0 30.9-25.1 56-56 56H56c-30.9 0-56-25.1-56-56V88c0-30.9 25.1-56 56-56h336c30.9 0 56 25.1 56 56zM330 313.2s-.1-34-.1-217.3h-29v40.3c-.8.3-1.2-.5-1.6-1.2-9.6-20.7-35.9-46.3-76-46-51.9.4-87.2 31.2-100.6 77.8-4.3 14.9-5.8 30.1-5.5 45.6 1.7 77.9 45.1 117.8 112.4 115.2 28.9-1.1 54.5-17 69-45.2.5-1 1.1-1.9 1.7-2.9.2.1.4.1.6.2.3 3.8.2 30.7.1 34.5-.2 14.8-2 29.5-7.2 43.5-7.8 21-22.3 34.7-44.5 39.5-17.8 3.9-35.6 3.8-53.2-1.2-21.5-6.1-36.5-19-41.1-41.8-.3-1.6-1.3-1.3-2.3-1.3h-26.8c.8 10.6 3.2 20.3 8.5 29.2 24.2 40.5 82.7 48.5 128.2 37.4 49.9-12.3 67.3-54.9 67.4-106.3z"] }; +var faGoodreadsG = { prefix: 'fab', iconName: 'goodreads-g', icon: [384, 512, [], "f3a9", "M42.6 403.3h2.8c12.7 0 25.5 0 38.2.1 1.6 0 3.1-.4 3.6 2.1 7.1 34.9 30 54.6 62.9 63.9 26.9 7.6 54.1 7.8 81.3 1.8 33.8-7.4 56-28.3 68-60.4 8-21.5 10.7-43.8 11-66.5.1-5.8.3-47-.2-52.8l-.9-.3c-.8 1.5-1.7 2.9-2.5 4.4-22.1 43.1-61.3 67.4-105.4 69.1-103 4-169.4-57-172-176.2-.5-23.7 1.8-46.9 8.3-69.7C58.3 47.7 112.3.6 191.6 0c61.3-.4 101.5 38.7 116.2 70.3.5 1.1 1.3 2.3 2.4 1.9V10.6h44.3c0 280.3.1 332.2.1 332.2-.1 78.5-26.7 143.7-103 162.2-69.5 16.9-159 4.8-196-57.2-8-13.5-11.8-28.3-13-44.5zM188.9 36.5c-52.5-.5-108.5 40.7-115 133.8-4.1 59 14.8 122.2 71.5 148.6 27.6 12.9 74.3 15 108.3-8.7 47.6-33.2 62.7-97 54.8-154-9.7-71.1-47.8-120-119.6-119.7z"] }; +var faGoogle = { prefix: 'fab', iconName: 'google', icon: [488, 512, [], "f1a0", "M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z"] }; +var faGoogleDrive = { prefix: 'fab', iconName: 'google-drive', icon: [512, 512, [], "f3aa", "M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z"] }; +var faGooglePlay = { prefix: 'fab', iconName: 'google-play', icon: [512, 512, [], "f3ab", "M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z"] }; +var faGooglePlus = { prefix: 'fab', iconName: 'google-plus', icon: [496, 512, [], "f2b3", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm-70.7 372c-68.8 0-124-55.5-124-124s55.2-124 124-124c31.3 0 60.1 11 83 32.3l-33.6 32.6c-13.2-12.9-31.3-19.1-49.4-19.1-42.9 0-77.2 35.5-77.2 78.1s34.2 78.1 77.2 78.1c32.6 0 64.9-19.1 70.1-53.3h-70.1v-42.6h116.9c1.3 6.8 1.9 13.6 1.9 20.7 0 70.8-47.5 121.2-118.8 121.2zm230.2-106.2v35.5H372v-35.5h-35.5v-35.5H372v-35.5h35.5v35.5h35.2v35.5h-35.2z"] }; +var faGooglePlusG = { prefix: 'fab', iconName: 'google-plus-g', icon: [640, 512, [], "f0d5", "M386.061 228.496c1.834 9.692 3.143 19.384 3.143 31.956C389.204 370.205 315.599 448 204.8 448c-106.084 0-192-85.915-192-192s85.916-192 192-192c51.864 0 95.083 18.859 128.611 50.292l-52.126 50.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484 0-118.92 54.221-118.92 121.277 0 67.056 53.436 121.277 118.92 121.277 75.961 0 104.513-54.745 108.965-82.773H204.8v-66.009h181.261zm185.406 6.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001h-55.733z"] }; +var faGooglePlusSquare = { prefix: 'fab', iconName: 'google-plus-square', icon: [448, 512, [], "f0d4", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM164 356c-55.3 0-100-44.7-100-100s44.7-100 100-100c27 0 49.5 9.8 67 26.2l-27.1 26.1c-7.4-7.1-20.3-15.4-39.8-15.4-34.1 0-61.9 28.2-61.9 63.2 0 34.9 27.8 63.2 61.9 63.2 39.6 0 54.4-28.5 56.8-43.1H164v-34.4h94.4c1 5 1.6 10.1 1.6 16.6 0 57.1-38.3 97.6-96 97.6zm220-81.8h-29v29h-29.2v-29h-29V245h29v-29H355v29h29v29.2z"] }; +var faGoogleWallet = { prefix: 'fab', iconName: 'google-wallet', icon: [448, 512, [], "f1ee", "M156.8 126.8c37.6 60.6 64.2 113.1 84.3 162.5-8.3 33.8-18.8 66.5-31.3 98.3-13.2-52.3-26.5-101.3-56-148.5 6.5-36.4 2.3-73.6 3-112.3zM109.3 200H16.1c-6.5 0-10.5 7.5-6.5 12.7C51.8 267 81.3 330.5 101.3 400h103.5c-16.2-69.7-38.7-133.7-82.5-193.5-3-4-8-6.5-13-6.5zm47.8-88c68.5 108 130 234.5 138.2 368H409c-12-138-68.4-265-143.2-368H157.1zm251.8-68.5c-1.8-6.8-8.2-11.5-15.2-11.5h-88.3c-5.3 0-9 5-7.8 10.3 13.2 46.5 22.3 95.5 26.5 146 48.2 86.2 79.7 178.3 90.6 270.8 15.8-60.5 25.3-133.5 25.3-203 0-73.6-12.1-145.1-31.1-212.6z"] }; +var faGratipay = { prefix: 'fab', iconName: 'gratipay', icon: [496, 512, [], "f184", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm114.6 226.4l-113 152.7-112.7-152.7c-8.7-11.9-19.1-50.4 13.6-72 28.1-18.1 54.6-4.2 68.5 11.9 15.9 17.9 46.6 16.9 61.7 0 13.9-16.1 40.4-30 68.1-11.9 32.9 21.6 22.6 60 13.8 72z"] }; +var faGrav = { prefix: 'fab', iconName: 'grav', icon: [512, 512, [], "f2d6", "M301.1 212c4.4 4.4 4.4 11.9 0 16.3l-9.7 9.7c-4.4 4.7-11.9 4.7-16.6 0l-10.5-10.5c-4.4-4.7-4.4-11.9 0-16.6l9.7-9.7c4.4-4.4 11.9-4.4 16.6 0l10.5 10.8zm-30.2-19.7c3-3 3-7.8 0-10.5-2.8-3-7.5-3-10.5 0-2.8 2.8-2.8 7.5 0 10.5 3.1 2.8 7.8 2.8 10.5 0zm-26 5.3c-3 2.8-3 7.5 0 10.2 2.8 3 7.5 3 10.5 0 2.8-2.8 2.8-7.5 0-10.2-3-3-7.7-3-10.5 0zm72.5-13.3c-19.9-14.4-33.8-43.2-11.9-68.1 21.6-24.9 40.7-17.2 59.8.8 11.9 11.3 29.3 24.9 17.2 48.2-12.5 23.5-45.1 33.2-65.1 19.1zm47.7-44.5c-8.9-10-23.3 6.9-15.5 16.1 7.4 9 32.1 2.4 15.5-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-66.2 42.6c2.5-16.1-20.2-16.6-25.2-25.7-13.6-24.1-27.7-36.8-54.5-30.4 11.6-8 23.5-6.1 23.5-6.1.3-6.4 0-13-9.4-24.9 3.9-12.5.3-22.4.3-22.4 15.5-8.6 26.8-24.4 29.1-43.2 3.6-31-18.8-59.2-49.8-62.8-22.1-2.5-43.7 7.7-54.3 25.7-23.2 40.1 1.4 70.9 22.4 81.4-14.4-1.4-34.3-11.9-40.1-34.3-6.6-25.7 2.8-49.8 8.9-61.4 0 0-4.4-5.8-8-8.9 0 0-13.8 0-24.6 5.3 11.9-15.2 25.2-14.4 25.2-14.4 0-6.4-.6-14.9-3.6-21.6-5.4-11-23.8-12.9-31.7 2.8.1-.2.3-.4.4-.5-5 11.9-1.1 55.9 16.9 87.2-2.5 1.4-9.1 6.1-13 10-21.6 9.7-56.2 60.3-56.2 60.3-28.2 10.8-77.2 50.9-70.6 79.7.3 3 1.4 5.5 3 7.5-2.8 2.2-5.5 5-8.3 8.3-11.9 13.8-5.3 35.2 17.7 24.4 15.8-7.2 29.6-20.2 36.3-30.4 0 0-5.5-5-16.3-4.4 27.7-6.6 34.3-9.4 46.2-9.1 8 3.9 8-34.3 8-34.3 0-14.7-2.2-31-11.1-41.5 12.5 12.2 29.1 32.7 28 60.6-.8 18.3-15.2 23-15.2 23-9.1 16.6-43.2 65.9-30.4 106 0 0-9.7-14.9-10.2-22.1-17.4 19.4-46.5 52.3-24.6 64.5 26.6 14.7 108.8-88.6 126.2-142.3 34.6-20.8 55.4-47.3 63.9-65 22 43.5 95.3 94.5 101.1 59z"] }; +var faGripfire = { prefix: 'fab', iconName: 'gripfire', icon: [384, 512, [], "f3ac", "M171.8 503.8c0-5.3 4.8-12.2 4.8-22.3 0-15.2-13-39.9-78.1-86.6C64.2 365.8 32 336.4 32 286.6 32 171.9 179.1 110.1 179.1 18c0-3.3-.2-6.7-.6-10 5.1 2.4 39.1 43.3 39.1 90.4 0 80.5-105.1 129.2-105.1 203 0 26.9 16.6 47.2 32.6 69.5 22.5 30.2 44.2 56.9 44.2 86.5-.1 14.5-4.4 29.7-17.5 46.4zm146-241.4c1.5 8.4 2.2 16.6 2.2 24.6 0 51.8-29.4 97.5-67.3 136.8-1 1-2.2 2.4-3.2 2.4-3.6 0-35.5-41.6-35.5-53.2 0 0 41.8-55.7 41.8-96.9 0-10.8-2.7-21.7-9.1-33.4-1.5 32.3-55.7 87.7-58.1 87.7-2.7 0-17.9-22-17.9-42.1 0-5.3 1-10.7 3.2-15.8 2.4-5.5 56.6-72 56.6-116.7 0-6.2-1-12-3.4-17.1l-4-7.2c16.7 6.5 82.6 64.1 94.7 130.9"] }; +var faGrunt = { prefix: 'fab', iconName: 'grunt', icon: [384, 512, [], "f3ad", "M61.3 189.3c-1.1 10 5.2 19.1 5.2 19.1.7-7.5 2.2-12.8 4-16.6.4 10.3 3.2 23.5 12.8 34.1 6.9 7.6 35.6 23.3 54.9 6.1 1 2.4 2.1 5.3 3 8.5 2.9 10.3-2.7 25.3-2.7 25.3s15.1-17.1 13.9-32.5c10.8-.5 21.4-8.4 21.1-19.5 0 0-18.9 10.4-35.5-8.8-9.7-11.2-40.9-42-83.1-31.8 4.3 1 8.9 2.4 13.5 4.1h-.1c-4.2 2-6.5 7.1-7 12zm28.3-1.8c19.5 11 37.4 25.7 44.9 37-5.7 3.3-21.7 10.4-38-1.7-10.3-7.6-9.8-26.2-6.9-35.3zm79.2 233.7c2.2 2.3 1.5 5.3.9 6.8-1.1 2.7-5.5 11.6-13 19.8-2.7 2.9-6.6 4.6-11 4.6-4.3 0-8.7-1.6-11.8-4.3-2.3-2.1-10.2-9.5-13.7-18.6-1.3-3.4-1-6.1.9-8.1 1.3-1.3 4-2.9 9.5-2.9H160c4.1 0 7 .9 8.8 2.7zm62.9-187.9c-1.2 15.5 13.9 32.5 13.9 32.5s-5.6-15-2.7-25.3c.9-3.2 2-6 3-8.5 19.3 17.3 48 1.5 54.8-6.1 9.6-10.6 12.3-23.8 12.8-34.1 1.8 3.8 3.4 9.1 4 16.6 0 0 6.4-9.1 5.2-19.1-.6-5-2.9-10-7-11.8h-.1c4.6-1.8 9.2-3.2 13.5-4.1-42.3-10.2-73.4 20.6-83.1 31.8-16.7 19.2-35.5 8.8-35.5 8.8-.2 10.9 10.4 18.9 21.2 19.3zm17.8-8.8c7.5-11.4 25.4-26 44.9-37 3 9.1 3.4 27.7-7 35.4-16.3 12.1-32.2 5-37.9 1.6-.1.1 0 0 0 0zM263 421.4c1.9 1.9 2.2 4.6.9 7.9-3.5 8.9-11.4 16.1-13.7 18.1-3.1 2.6-7.4 4.2-11.8 4.2s-8.3-1.6-11-4.5c-7.5-8-12-16.7-13-19.3-.6-1.5-1.3-4.4.9-6.7 1.7-1.8 4.7-2.7 8.9-2.7h29.4c5.4.1 8.1 1.7 9.4 3zm-98.3-251.5c9.9 6 18.8 8.1 27.3 8.3 8.5-.2 17.4-2.3 27.3-8.3 0 0-14.5 17.7-27.2 17.8h-.2c-12.7-.2-27.2-17.8-27.2-17.8zm184.5 147.4c-2.4 17.9-13 33.8-24.6 43.7-3.1-22.7-3.7-55.5-3.7-62.4 0-14.7 9.5-24.5 12.2-26.1 2.5-1.5 5.4-3 8.3-4.6 18-9.6 40.4-21.6 40.4-43.7 0-16.2-9.3-23.2-15.4-27.8-.8-.6-1.5-1.1-2.2-1.7-2.1-1.7-3.7-3-4.3-4.4-4.4-9.8-3.6-34.2-1.7-37.6.6-.6 16.7-20.9 11.8-39.2-2-7.4-6.9-13.3-14.1-17-5.3-2.7-11.9-4.2-19.5-4.5-.1-2-.5-3.9-.9-5.9-.6-2.6-1.1-5.3-.9-8.1.4-4.7.8-9 2.2-11.3 8.4-13.3 28.8-17.6 29-17.6l12.3-2.4-8.1-9.5c-.1-.2-17.3-17.5-46.3-17.5-7.9 0-16 1.3-24.1 3.9-24.2 7.8-42.9 30.5-49.4 39.3-3.1-1-6.3-1.9-9.6-2.7-4.2-15.8 9-38.5 9-38.5s-13.6-3-33.7 15.2c-2.6-6.5-8.1-20.5-1.8-37.2C184.6 10.1 177.2 26 175 40.4c-7.6-5.4-6.7-23.1-7.2-27.6-7.5.9-29.2 21.9-28.2 48.3-2 .5-3.9 1.1-5.9 1.7-6.5-8.8-25.1-31.5-49.4-39.3-7.9-2.2-16-3.5-23.9-3.5-29 0-46.1 17.3-46.3 17.5L6 46.9l12.3 2.4c.2 0 20.6 4.3 29 17.6 1.4 2.2 1.8 6.6 2.2 11.3.2 2.8-.4 5.5-.9 8.1-.4 1.9-.8 3.9-.9 5.9-7.7.3-14.2 1.8-19.5 4.5-7.2 3.7-12.1 9.6-14.1 17-5 18.2 11.2 38.5 11.8 39.2 1.9 3.4 2.7 27.8-1.7 37.6-.6 1.4-2.2 2.7-4.3 4.4-.7.5-1.4 1.1-2.2 1.7-6.1 4.6-15.4 11.7-15.4 27.8 0 22.1 22.4 34.1 40.4 43.7 3 1.6 5.8 3.1 8.3 4.6 2.7 1.6 12.2 11.4 12.2 26.1 0 6.9-.6 39.7-3.7 62.4-11.6-9.9-22.2-25.9-24.6-43.8 0 0-29.2 22.6-20.6 70.8 5.2 29.5 23.2 46.1 47 54.7 8.8 19.1 29.4 45.7 67.3 49.6C143 504.3 163 512 192.2 512h.2c29.1 0 49.1-7.7 63.6-19.5 37.9-3.9 58.5-30.5 67.3-49.6 23.8-8.7 41.7-25.2 47-54.7 8.2-48.4-21.1-70.9-21.1-70.9zM305.7 37.7c5.6-1.8 11.6-2.7 17.7-2.7 11 0 19.9 3 24.7 5-3.1 1.4-6.4 3.2-9.7 5.3-2.4-.4-5.6-.8-9.2-.8-10.5 0-20.5 3.1-28.7 8.9-12.3 8.7-18 16.9-20.7 22.4-2.2-1.3-4.5-2.5-7.1-3.7-1.6-.8-3.1-1.5-4.7-2.2 6.1-9.1 19.9-26.5 37.7-32.2zm21 18.2c-.8 1-1.6 2.1-2.3 3.2-3.3 5.2-3.9 11.6-4.4 17.8-.5 6.4-1.1 12.5-4.4 17-4.2.8-8.1 1.7-11.5 2.7-2.3-3.1-5.6-7-10.5-11.2 1.4-4.8 5.5-16.1 13.5-22.5 5.6-4.3 12.2-6.7 19.6-7zM45.6 45.3c-3.3-2.2-6.6-4-9.7-5.3 4.8-2 13.7-5 24.7-5 6.1 0 12 .9 17.7 2.7 17.8 5.8 31.6 23.2 37.7 32.1-1.6.7-3.2 1.4-4.8 2.2-2.5 1.2-4.9 2.5-7.1 3.7-2.6-5.4-8.3-13.7-20.7-22.4-8.3-5.8-18.2-8.9-28.8-8.9-3.4.1-6.6.5-9 .9zm44.7 40.1c-4.9 4.2-8.3 8-10.5 11.2-3.4-.9-7.3-1.9-11.5-2.7C65 89.5 64.5 83.4 64 77c-.5-6.2-1.1-12.6-4.4-17.8-.7-1.1-1.5-2.2-2.3-3.2 7.4.3 14 2.6 19.5 7 8 6.3 12.1 17.6 13.5 22.4zM58.1 259.9c-2.7-1.6-5.6-3.1-8.4-4.6-14.9-8-30.2-16.3-30.2-30.5 0-11.1 4.3-14.6 8.9-18.2l.5-.4c.7-.6 1.4-1.2 2.2-1.8-.9 7.2-1.9 13.3-2.7 14.9 0 0 12.1-15 15.7-44.3 1.4-11.5-1.1-34.3-5.1-43 .2 4.9 0 9.8-.3 14.4-.4-.8-.8-1.6-1.3-2.2-3.2-4-11.8-17.5-9.4-26.6.9-3.5 3.1-6 6.7-7.8 3.8-1.9 8.8-2.9 15.1-2.9 12.3 0 25.9 3.7 32.9 6 25.1 8 55.4 30.9 64.1 37.7.2.2.4.3.4.3l5.6 3.9-3.5-5.8c-.2-.3-19.1-31.4-53.2-46.5 2-2.9 7.4-8.1 21.6-15.1 21.4-10.5 46.5-15.8 74.3-15.8 27.9 0 52.9 5.3 74.3 15.8 14.2 6.9 19.6 12.2 21.6 15.1-34 15.1-52.9 46.2-53.1 46.5l-3.5 5.8 5.6-3.9s.2-.1.4-.3c8.7-6.8 39-29.8 64.1-37.7 7-2.2 20.6-6 32.9-6 6.3 0 11.3 1 15.1 2.9 3.5 1.8 5.7 4.4 6.7 7.8 2.5 9.1-6.1 22.6-9.4 26.6-.5.6-.9 1.3-1.3 2.2-.3-4.6-.5-9.5-.3-14.4-4 8.8-6.5 31.5-5.1 43 3.6 29.3 15.7 44.3 15.7 44.3-.8-1.6-1.8-7.7-2.7-14.9.7.6 1.5 1.2 2.2 1.8l.5.4c4.6 3.7 8.9 7.1 8.9 18.2 0 14.2-15.4 22.5-30.2 30.5-2.9 1.5-5.7 3.1-8.4 4.6-8.7 5-18 16.7-19.1 34.2-.9 14.6.9 49.9 3.4 75.9-12.4 4.8-26.7 6.4-39.7 6.8-2-4.1-3.9-8.5-5.5-13.1-.7-2-19.6-51.1-26.4-62.2 5.5 39 17.5 73.7 23.5 89.6-3.5-.5-7.3-.7-11.7-.7h-117c-4.4 0-8.3.3-11.7.7 6-15.9 18.1-50.6 23.5-89.6-6.8 11.2-25.7 60.3-26.4 62.2-1.6 4.6-3.5 9-5.5 13.1-13-.4-27.2-2-39.7-6.8 2.5-26 4.3-61.2 3.4-75.9-.9-17.4-10.3-29.2-19-34.2zM34.8 404.6c-12.1-20-8.7-54.1-3.7-59.1 10.9 34.4 47.2 44.3 74.4 45.4-2.7 4.2-5.2 7.6-7 10l-1.4 1.4c-7.2 7.8-8.6 18.5-4.1 31.8-22.7-.1-46.3-9.8-58.2-29.5zm45.7 43.5c6 1.1 12.2 1.9 18.6 2.4 3.5 8 7.4 15.9 12.3 23.1-14.4-5.9-24.4-16-30.9-25.5zM192 498.2c-60.6-.1-78.3-45.8-84.9-64.7-3.7-10.5-3.4-18.2.9-23.1 2.9-3.3 9.5-7.2 24.6-7.2h118.8c15.1 0 21.8 3.9 24.6 7.2 4.2 4.8 4.5 12.6.9 23.1-6.6 18.8-24.3 64.6-84.9 64.7zm80.6-24.6c4.9-7.2 8.8-15.1 12.3-23.1 6.4-.5 12.6-1.3 18.6-2.4-6.5 9.5-16.5 19.6-30.9 25.5zm76.6-69c-12 19.7-35.6 29.3-58.1 29.7 4.5-13.3 3.1-24.1-4.1-31.8-.4-.5-.9-1-1.4-1.5-1.8-2.4-4.3-5.8-7-10 27.2-1.2 63.5-11 74.4-45.4 5 5 8.4 39.1-3.8 59z"] }; +var faGulp = { prefix: 'fab', iconName: 'gulp', icon: [256, 512, [], "f3ae", "M209.8 391.1l-14.1 24.6-4.6 80.2c0 8.9-28.3 16.1-63.1 16.1s-63.1-7.2-63.1-16.1l-5.8-79.4-14.9-25.4c41.2 17.3 126 16.7 165.6 0zm-196-253.3l13.6 125.5c5.9-20 20.8-47 40-55.2 6.3-2.7 12.7-2.7 18.7.9 5.2 3 9.6 9.3 10.1 11.8 1.2 6.5-2 9.1-4.5 9.1-3 0-5.3-4.6-6.8-7.3-4.1-7.3-10.3-7.6-16.9-2.8-6.9 5-12.9 13.4-17.1 20.7-5.1 8.8-9.4 18.5-12 28.2-1.5 5.6-2.9 14.6-.6 19.9 1 2.2 2.5 3.6 4.9 3.6 5 0 12.3-6.6 15.8-10.1 4.5-4.5 10.3-11.5 12.5-16l5.2-15.5c2.6-6.8 9.9-5.6 9.9 0 0 10.2-3.7 13.6-10 34.7-5.8 19.5-7.6 25.8-7.6 25.8-.7 2.8-3.4 7.5-6.3 7.5-1.2 0-2.1-.4-2.6-1.2-1-1.4-.9-5.3-.8-6.3.2-3.2 6.3-22.2 7.3-25.2-2 2.2-4.1 4.4-6.4 6.6-5.4 5.1-14.1 11.8-21.5 11.8-3.4 0-5.6-.9-7.7-2.4l7.6 79.6c2 5 39.2 17.1 88.2 17.1 49.1 0 86.3-12.2 88.2-17.1l10.9-94.6c-5.7 5.2-12.3 11.6-19.6 14.8-5.4 2.3-17.4 3.8-17.4-5.7 0-5.2 9.1-14.8 14.4-21.5 1.4-1.7 4.7-5.9 4.7-8.1 0-2.9-6-2.2-11.7 2.5-3.2 2.7-6.2 6.3-8.7 9.7-4.3 6-6.6 11.2-8.5 15.5-6.2 14.2-4.1 8.6-9.1 22-5 13.3-4.2 11.8-5.2 14-.9 1.9-2.2 3.5-4 4.5-1.9 1-4.5.9-6.1-.3-.9-.6-1.3-1.9-1.3-3.7 0-.9.1-1.8.3-2.7 1.5-6.1 7.8-18.1 15-34.3 1.6-3.7 1-2.6.8-2.3-6.2 6-10.9 8.9-14.4 10.5-5.8 2.6-13 2.6-14.5-4.1-.1-.4-.1-.8-.2-1.2-11.8 9.2-24.3 11.7-20-8.1-4.6 8.2-12.6 14.9-22.4 14.9-4.1 0-7.1-1.4-8.6-5.1-2.3-5.5 1.3-14.9 4.6-23.8 1.7-4.5 4-9.9 7.1-16.2 1.6-3.4 4.2-5.4 7.6-4.5.6.2 1.1.4 1.6.7 2.6 1.8 1.6 4.5.3 7.2-3.8 7.5-7.1 13-9.3 20.8-.9 3.3-2 9 1.5 9 2.4 0 4.7-.8 6.9-2.4 4.6-3.4 8.3-8.5 11.1-13.5 2-3.6 4.4-8.3 5.6-12.3.5-1.7 1.1-3.3 1.8-4.8 1.1-2.5 2.6-5.1 5.2-5.1 1.3 0 2.4.5 3.2 1.5 1.7 2.2 1.3 4.5.4 6.9-2 5.6-4.7 10.6-6.9 16.7-1.3 3.5-2.7 8-2.7 11.7 0 3.4 3.7 2.6 6.8 1.2 2.4-1.1 4.8-2.8 6.8-4.5 1.2-4.9.9-3.8 26.4-68.2 1.3-3.3 3.7-4.7 6.1-4.7 1.2 0 2.2.4 3.2 1.1 1.7 1.3 1.7 4.1 1 6.2-.7 1.9-.6 1.3-4.5 10.5-5.2 12.1-8.6 20.8-13.2 31.9-1.9 4.6-7.7 18.9-8.7 22.3-.6 2.2-1.3 5.8 1 5.8 5.4 0 19.3-13.1 23.1-17 .2-.3.5-.4.9-.6.6-1.9 1.2-3.7 1.7-5.5 1.4-3.8 2.7-8.2 5.3-11.3.8-1 1.7-1.6 2.7-1.6 2.8 0 4.2 1.2 4.2 4 0 1.1-.7 5.1-1.1 6.2 1.4-1.5 2.9-3 4.5-4.5 15-13.9 25.7-6.8 25.7.2 0 7.4-8.9 17.7-13.8 23.4-1.6 1.9-4.9 5.4-5 6.4 0 1.3.9 1.8 2.2 1.8 2 0 6.4-3.5 8-4.7 5-3.9 11.8-9.9 16.6-14.1l14.8-136.8c-30.5 17.1-197.6 17.2-228.3.2zm229.7-8.5c0 21-231.2 21-231.2 0 0-8.8 51.8-15.9 115.6-15.9 9 0 17.8.1 26.3.4l12.6-48.7L228.1.6c1.4-1.4 5.8-.2 9.9 3.5s6.6 7.9 5.3 9.3l-.1.1L185.9 74l-10 40.7c39.9 2.6 67.6 8.1 67.6 14.6zm-69.4 4.6c0-.8-.9-1.5-2.5-2.1l-.2.8c0 1.3-5 2.4-11.1 2.4s-11.1-1.1-11.1-2.4c0-.1 0-.2.1-.3l.2-.7c-1.8.6-3 1.4-3 2.3 0 2.1 6.2 3.7 13.7 3.7 7.7.1 13.9-1.6 13.9-3.7z"] }; +var faHackerNews = { prefix: 'fab', iconName: 'hacker-news', icon: [448, 512, [], "f1d4", "M0 32v448h448V32H0zm21.2 197.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z"] }; +var faHackerNewsSquare = { prefix: 'fab', iconName: 'hacker-news-square', icon: [448, 512, [], "f3af", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM21.2 229.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z"] }; +var faHips = { prefix: 'fab', iconName: 'hips', icon: [640, 512, [], "f452", "M0 80.2c0-1.8.9-2.7 2.7-2.7h40.9c1.9 0 2.8.9 2.8 2.7v81.2c15.2-7.7 31.7-11.5 49.8-11.4 24 .1 44.2 6.2 60.3 18 18.7 13.5 28 31.9 28 55.3v136.1c0 1.9-.9 2.8-2.7 2.8h-27.3c-9.1 0-16.4-7.3-16.4-16.3V223.3c0-.9 2.7-27-45.8-27-48.6 0-45.8 26.2-45.8 27v136.1c0 1.9-.9 2.8-2.8 2.8h-41c-1.8 0-2.7-.9-2.7-2.8V80.2zm497.7 221.5c13.7 10.2 34.1 19.1 58.4 19.1 23.3 0 32.8-4.5 36.5-13.6 3-7.9-.6-16.1-12.2-21.2l-53.6-23.5c-21.4-9.4-33.8-24-37.2-43.6-5.7-33.7 22.2-53.3 22.7-53.7 13.2-9.6 32-15.4 58.5-15.4 19 0 37.4 3.3 55.1 9.9 1.3.5 1.9 1.3 1.9 2.6V207c0 2.1-2.3 3.4-4 2.4-39.7-20.7-76.6-12.3-84-6.8-6.6 4.9-6 12.5 2.6 16.1L600 244c16.5 7.1 28.1 18.4 34.9 34.1 5.5 12.6 6.6 25.6 3.1 39.1-9.6 36.9-44.9 45.5-45.6 45.8-10.5 3.1-23.6 4.3-36.3 4.3-16.6 0-32.6-2.7-48.2-8.2-9.7-3.4-14.6-10.3-14.6-20.7V304c0-2.1 2.3-3.7 4.4-2.3zM376.2 149.8c-31.7 0-104.2 20.1-104.2 103.5v183.5c0 .8.6 2.7 2.7 2.7h40.9c1.9 0 2.8-.9 2.8-2.7V348c16.5 12.7 35.8 19.1 57.7 19.1 60.5 0 108.7-48.5 108.7-108.7.1-60.3-48.2-108.6-108.6-108.6zm0 170.9c-17.2 0-31.9-6.1-44-18.2-12.2-12.2-18.2-26.8-18.2-44 0-34.5 27.6-62.2 62.2-62.2 34.5 0 62.2 27.6 62.2 62.2.1 34.3-27.3 62.2-62.2 62.2zm-124.6 38.7c0 1.9-.9 2.8-2.8 2.8h-40.9c-1.6 0-2.7-1.4-2.7-2.8V157.6c0-1.4 1.1-2.8 2.7-2.8h40.9c1.9 0 2.8.9 2.8 2.8v201.8M228.3 72.5c15.9 0 28.9 12.7 28.9 28.9 0 15.8-12.7 28.9-28.9 28.9s-28.9-13.3-28.9-28.9c.1-16 13-28.9 28.9-28.9"] }; +var faHireAHelper = { prefix: 'fab', iconName: 'hire-a-helper', icon: [512, 512, [], "f3b0", "M443.1 0H71.9C67.9 37.3 37.4 67.8 0 71.7v371.5c37.4 4.9 66 32.4 71.9 68.8h372.2c3-36.4 32.5-65.8 67.9-69.8V71.7c-36.4-5.9-65-35.3-68.9-71.7zm-37 404.9c-36.3 0-18.8-2-55.1-2-35.8 0-21 2-56.1 2-5.9 0-4.9-8.2 0-9.8 22.8-7.6 22.9-10.2 24.6-12.8 10.4-15.6 5.9-83 5.9-113 0-5.3-6.4-12.8-13.8-12.8H200.4c-7.4 0-13.8 7.5-13.8 12.8 0 30-4.5 97.4 5.9 113 1.7 2.5 1.8 5.2 24.6 12.8 4.9 1.6 6 9.8 0 9.8-35.1 0-20.3-2-56.1-2-36.3 0-18.8 2-55.1 2-7.9 0-5.8-10.8 0-10.8 10.2-3.4 13.5-3.5 21.7-13.8 7.7-12.9 7.9-44.4 7.9-127.8V151.3c0-22.2-12.2-28.3-28.6-32.4-8.8-2.2-4-11.8 1-11.8 36.5 0 20.6 2 57.1 2 32.7 0 16.5-2 49.2-2 3.3 0 8.5 8.3 1 10.8-4.9 1.6-27.6 3.7-27.6 39.3 0 45.6-.2 55.8 1 68.8 0 1.3 2.3 12.8 12.8 12.8h109.2c10.5 0 12.8-11.5 12.8-12.8 1.2-13 1-23.2 1-68.8 0-35.6-22.7-37.7-27.6-39.3-7.5-2.5-2.3-10.8 1-10.8 32.7 0 16.5 2 49.2 2 36.5 0 20.6-2 57.1-2 4.9 0 9.9 9.6 1 11.8-16.4 4.1-28.6 10.3-28.6 32.4v101.2c0 83.4.1 114.9 7.9 127.8 8.2 10.2 11.4 10.4 21.7 13.8 5.8 0 7.8 10.8 0 10.8z"] }; +var faHooli = { prefix: 'fab', iconName: 'hooli', icon: [640, 512, [], "f427", "M508.4 352h57.9V156.7L508.4 184v168zm73.7-110.5V352H640V241.5h-57.9zm-250.7-8.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.2-1.1-50.4 17.1c-1.9 1.9-3.7 3.9-5.3 6-38.2-29.6-72.5-46.5-102.1-61.1v-20.7l-22.5 10.6c-54.4-22.1-89-18.2-97.3.1 0 0-24.9 32.8 61.9 110.9v-31c-48.8-54.6-39-76.1-35.3-79.2 13.5-11.4 37.5-8 64.4 2.1L65.2 184v63.3c13.1 14.7 30.5 31.5 53.5 50.4l4.5 3.6v-29.8c0-6.9 1.7-18.2 10.8-18.2s10.6 6.9 10.6 15V317c18 12.2 37.3 22.1 57.7 29.6v-93.9c0-18.7-13.4-37.4-40.6-37.4-15.8-.1-30.5 8.2-38.5 21.9v-54.3c41.9 20.9 83.9 46.5 99.9 58.3-10.2 14.6-9.3 28.1-9.3 43.7 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.7-33.8 16.7-52.5 0-18.5 1.5-34.2-16.7-52.3zm-39.7 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm185.7-71.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.3-1.1-50.4 17.1c-18.2 18.2-16.8 33.9-16.8 52.6 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.8-33.8 16.8-52.5-.1-18.8 1.3-34.5-16.8-52.6zm-39.8 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm173.5-73c15.9 0 28.9-12.9 28.9-28.9s-12.9-24.5-28.9-24.5c-15.9 0-28.9 8.6-28.9 24.5s12.9 28.9 28.9 28.9zM144.5 352l38.3.8c-13.2-4.6-26-10.2-38.3-16.8v16zm-21.4 0v-28.6c-6.5-4.2-13-8.7-19.4-13.6-14.8-11.2-27.5-21.7-38.5-31.5V352h57.9zm59.7.8c36.5 12.5 69.9 14.2 94.7 7.2-19.9.2-45.8-2.6-75.3-13.3v5.3l-19.4.8z"] }; +var faHornbill = { prefix: 'fab', iconName: 'hornbill', icon: [509, 512, [], "f592", "M75.37 370.3c2.14 15.83-5.77 31.98-20.94 39.29-18.85 9.1-41.55 1.17-50.68-17.68-9.08-18.83-1.13-41.58 17.7-50.65 7.05-3.4 14.63-4.42 21.85-3.38-78.28-111.35 52-190.53 52-190.53-5.86 43.04-8.24 91.16-8.24 91.16-67.31 41.45.92 64.06 39.81 72.87 19.77 53.62 71.18 91.94 131.66 91.94 1.92 0 3.77-.21 5.67-.28l.11 18.86c-99.22 1.39-158.7-29.14-188.94-51.6zM183.38 42.6c.89-7-.1-14.33-3.39-21.15-9.1-18.84-31.82-26.78-50.66-17.69-18.86 9.1-26.8 31.83-17.69 50.68 6.98 14.47 22.02 22.42 37.18 21.23-22.55 29.91-53.83 89.57-52.42 190.03l21.84-.15c-.02-.9-.14-1.77-.14-2.68 0-58.95 36.37-109.33 87.85-130.16 8.01-37.75 30.74-114.3 73.84-44.29 0 0 48.14 2.38 91.18 8.24 0-.01-77.84-128.03-187.59-54.06zm304.18 134.17c18.84-9.09 26.81-31.81 17.7-50.65-9.1-18.85-31.83-26.77-50.67-17.69-15.27 7.37-23.19 23.69-20.87 39.64-31.71-21.94-89.84-49.05-183.45-47.74l.14 22.5c2.7-.15 5.39-.41 8.14-.41 59.3 0 109.9 36.8 130.49 88.76 39.1 9.02 105.06 31.58 38.46 72.54 0 0-2.34 48.13-8.21 91.16 0 0 133.45-81.16 48.96-194.61 6.43.5 13.07-.49 19.31-3.5zM373.05 436.24c21.43-32.46 46.42-89.69 45.14-179.66l-19.52.14c.08 2.06.3 4.07.3 6.15 0 60.27-38.05 111.55-91.39 131.45-8.85 38.95-31.44 106.66-72.77 39.49 0 0-48.12-2.34-91.19-8.22 0 0 79.92 131.34 191.9 50.97.31 4.72 1.45 9.45 3.64 13.97 9.06 18.89 31.8 26.78 50.64 17.71 18.86-9.1 26.79-31.83 17.7-50.65-6.56-13.62-20.26-21.43-34.45-21.35z"] }; +var faHotjar = { prefix: 'fab', iconName: 'hotjar', icon: [448, 512, [], "f3b1", "M414.9 161.5C340.2 29 121.1 0 121.1 0S222.2 110.4 93 197.7C11.3 252.8-21 324.4 14 402.6c26.8 59.9 83.5 84.3 144.6 93.4-29.2-55.1-6.6-122.4-4.1-129.6 57.1 86.4 165 0 110.8-93.9 71 15.4 81.6 138.6 27.1 215.5 80.5-25.3 134.1-88.9 148.8-145.6 15.5-59.3 3.7-127.9-26.3-180.9z"] }; +var faHouzz = { prefix: 'fab', iconName: 'houzz', icon: [414, 512, [], "f27c", "M258.9 330.7H154.3V480H0V32h109.5v104.5l305.1 85.6V480H258.9V330.7z"] }; +var faHtml5 = { prefix: 'fab', iconName: 'html5', icon: [384, 512, [], "f13b", "M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z"] }; +var faHubspot = { prefix: 'fab', iconName: 'hubspot', icon: [512, 512, [], "f3b2", "M267.4 211.6c-25.1 23.7-40.8 57.3-40.8 94.6 0 29.3 9.7 56.3 26 78L203.1 434c-4.4-1.6-9.1-2.5-14-2.5-10.8 0-20.9 4.2-28.5 11.8-7.6 7.6-11.8 17.8-11.8 28.6s4.2 20.9 11.8 28.5c7.6 7.6 17.8 11.6 28.5 11.6 10.8 0 20.9-3.9 28.6-11.6 7.6-7.6 11.8-17.8 11.8-28.5 0-4.2-.6-8.2-1.9-12.1l50-50.2c22 16.9 49.4 26.9 79.3 26.9 71.9 0 130-58.3 130-130.2 0-65.2-47.7-119.2-110.2-128.7V116c17.5-7.4 28.2-23.8 28.2-42.9 0-26.1-20.9-47.9-47-47.9S311.2 47 311.2 73.1c0 19.1 10.7 35.5 28.2 42.9v61.2c-15.2 2.1-29.6 6.7-42.7 13.6-27.6-20.9-117.5-85.7-168.9-124.8 1.2-4.4 2-9 2-13.8C129.8 23.4 106.3 0 77.4 0 48.6 0 25.2 23.4 25.2 52.2c0 28.9 23.4 52.3 52.2 52.3 9.8 0 18.9-2.9 26.8-7.6l163.2 114.7zm89.5 163.6c-38.1 0-69-30.9-69-69s30.9-69 69-69 69 30.9 69 69-30.9 69-69 69z"] }; +var faImdb = { prefix: 'fab', iconName: 'imdb', icon: [448, 512, [], "f2d8", "M350.5 288.7c0 5.4 1.6 14.4-6.2 14.4-1.6 0-3-.8-3.8-2.4-2.2-5.1-1.1-44.1-1.1-44.7 0-3.8-1.1-12.7 4.9-12.7 7.3 0 6.2 7.3 6.2 12.7v32.7zM265 229.9c0-9.7 1.6-16-10.3-16v83.7c12.2.3 10.3-8.7 10.3-18.4v-49.3zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM21.3 228.8c-.1.1-.2.3-.3.4h.3v-.4zM97 192H64v127.8h33V192zm113.3 0h-43.1l-7.6 59.9c-2.7-20-5.4-40.1-8.7-59.9h-42.8v127.8h29v-84.5l12.2 84.5h20.6l11.6-86.4v86.4h28.7V192zm86.3 45.3c0-8.1.3-16.8-1.4-24.4-4.3-22.5-31.4-20.9-49-20.9h-24.6v127.8c86.1.1 75 6 75-82.5zm85.9 17.3c0-17.3-.8-30.1-22.2-30.1-8.9 0-14.9 2.7-20.9 9.2V192h-31.7v127.8h29.8l1.9-8.1c5.7 6.8 11.9 9.8 20.9 9.8 19.8 0 22.2-15.2 22.2-30.9v-36z"] }; +var faInstagram = { prefix: 'fab', iconName: 'instagram', icon: [448, 512, [], "f16d", "M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"] }; +var faInternetExplorer = { prefix: 'fab', iconName: 'internet-explorer', icon: [512, 512, [], "f26b", "M483.049 159.706c10.855-24.575 21.424-60.438 21.424-87.871 0-72.722-79.641-98.371-209.673-38.577-107.632-7.181-211.221 73.67-237.098 186.457 30.852-34.862 78.271-82.298 121.977-101.158C125.404 166.85 79.128 228.002 43.992 291.725 23.246 329.651 0 390.94 0 436.747c0 98.575 92.854 86.5 180.251 42.006 31.423 15.43 66.559 15.573 101.695 15.573 97.124 0 184.249-54.294 216.814-146.022H377.927c-52.509 88.593-196.819 52.996-196.819-47.436H509.9c6.407-43.581-1.655-95.715-26.851-141.162zM64.559 346.877c17.711 51.15 53.703 95.871 100.266 123.304-88.741 48.94-173.267 29.096-100.266-123.304zm115.977-108.873c2-55.151 50.276-94.871 103.98-94.871 53.418 0 101.981 39.72 103.981 94.871H180.536zm184.536-187.6c21.425-10.287 48.563-22.003 72.558-22.003 31.422 0 54.274 21.717 54.274 53.722 0 20.003-7.427 49.007-14.569 67.867-26.28-42.292-65.986-81.584-112.263-99.586z"] }; +var faIoxhost = { prefix: 'fab', iconName: 'ioxhost', icon: [640, 512, [], "f208", "M616 160h-67.3C511.2 70.7 422.9 8 320 8 183 8 72 119 72 256c0 16.4 1.6 32.5 4.7 48H24c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h67.3c37.5 89.3 125.8 152 228.7 152 137 0 248-111 248-248 0-16.4-1.6-32.5-4.7-48H616c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24zm-96 96c0 110.5-89.5 200-200 200-75.7 0-141.6-42-175.5-104H424c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24H125.8c-3.8-15.4-5.8-31.4-5.8-48 0-110.5 89.5-200 200-200 75.7 0 141.6 42 175.5 104H216c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h298.2c3.8 15.4 5.8 31.4 5.8 48zm-304-24h208c13.3 0 24 10.7 24 24 0 13.2-10.7 24-24 24H216c-13.3 0-24-10.7-24-24 0-13.2 10.7-24 24-24z"] }; +var faItunes = { prefix: 'fab', iconName: 'itunes', icon: [448, 512, [], "f3b4", "M223.6 80.3C129 80.3 52.5 157 52.5 251.5S129 422.8 223.6 422.8s171.2-76.7 171.2-171.2c0-94.6-76.7-171.3-171.2-171.3zm79.4 240c-3.2 13.6-13.5 21.2-27.3 23.8-12.1 2.2-22.2 2.8-31.9-5-11.8-10-12-26.4-1.4-36.8 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 3.2-3.6 2.2-2 2.2-80.8 0-5.6-2.7-7.1-8.4-6.1-4 .7-91.9 17.1-91.9 17.1-5 1.1-6.7 2.6-6.7 8.3 0 116.1.5 110.8-1.2 118.5-2.1 9-7.6 15.8-14.9 19.6-8.3 4.6-23.4 6.6-31.4 5.2-21.4-4-28.9-28.7-14.4-42.9 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 5-5.7.9-127 2.6-133.7.4-2.6 1.5-4.8 3.5-6.4 2.1-1.7 5.8-2.7 6.7-2.7 101-19 113.3-21.4 115.1-21.4 5.7-.4 9 3 9 8.7-.1 170.6.4 161.4-1 167.6zM345.2 32H102.8C45.9 32 0 77.9 0 134.8v242.4C0 434.1 45.9 480 102.8 480h242.4c57 0 102.8-45.9 102.8-102.8V134.8C448 77.9 402.1 32 345.2 32zM223.6 444c-106.3 0-192.5-86.2-192.5-192.5S117.3 59 223.6 59s192.5 86.2 192.5 192.5S329.9 444 223.6 444z"] }; +var faItunesNote = { prefix: 'fab', iconName: 'itunes-note', icon: [384, 512, [], "f3b5", "M381.9 388.2c-6.4 27.4-27.2 42.8-55.1 48-24.5 4.5-44.9 5.6-64.5-10.2-23.9-20.1-24.2-53.4-2.7-74.4 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 6.4-7.2 4.4-4.1 4.4-163.2 0-11.2-5.5-14.3-17-12.3-8.2 1.4-185.7 34.6-185.7 34.6-10.2 2.2-13.4 5.2-13.4 16.7 0 234.7 1.1 223.9-2.5 239.5-4.2 18.2-15.4 31.9-30.2 39.5-16.8 9.3-47.2 13.4-63.4 10.4-43.2-8.1-58.4-58-29.1-86.6 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 10.1-11.5 1.8-256.6 5.2-270.2.8-5.2 3-9.6 7.1-12.9 4.2-3.5 11.8-5.5 13.4-5.5 204-38.2 228.9-43.1 232.4-43.1 11.5-.8 18.1 6 18.1 17.6.2 344.5 1.1 326-1.8 338.5z"] }; +var faJava = { prefix: 'fab', iconName: 'java', icon: [377, 512, [], "f4e4", "M121.6 396s-19.6 11.4 13.9 15.2c40.6 4.6 61.3 4 106-4.5 0 0 11.8 7.4 28.2 13.8C169.5 463.4 42.9 418 121.6 396m-12.2-56.1s-21.9 16.2 11.6 19.7c43.3 4.5 77.6 4.8 136.8-6.6 0 0 8.2 8.3 21.1 12.8-121.3 35.5-256.3 2.9-169.5-25.9m103.2-95.1c24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3.1 0-175.2 43.8-91.5 140.2m132.6 192.6s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6.7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2 204.2 33.2 372.4-14.9 319.4-38.8M131 281.8s-93.1 22.1-33 30.1c25.4 3.4 76 2.6 123.1-1.3 38.5-3.2 77.2-10.2 77.2-10.2s-13.6 5.8-23.4 12.5c-94.5 24.9-277 13.3-224.5-12.1 44.5-21.4 80.6-19 80.6-19m167 93.3c96.1-49.9 51.6-97.9 20.6-91.4-7.6 1.6-11 3-11 3s2.8-4.4 8.2-6.3c61.3-21.6 108.5 63.6-19.8 97.3 0-.1 1.5-1.4 2-2.6M240 0s53.2 53.2-50.5 135c-83.1 65.6-19 103.1 0 145.8-48.5-43.8-84.1-82.3-60.2-118.2C164.4 110.1 261.5 84.5 240 0m-99.5 510.4c92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6"] }; +var faJediOrder = { prefix: 'fab', iconName: 'jedi-order', icon: [448, 512, [], "f50e", "M231.89 335.72l31.44-45.89-20.18 55.5 62.56 9.09-62.56 9.08 24.22 47.43s-30.22-31.77-34.49-36.25c1.76 68.78 2.19 85.7 2.19 85.7s154.4-71.65 68.62-230.09c0 0 106.97-118.07 10.09-190.73 0 0 165.5 99.91 60.55 271.46 0 0 86.78-84.77 41.37-170.54 0 0 78.71 111.01-17.16 233.11 0 0 26.24-16.15 49.45-77.71 0 0-16.93 183.26-221.96 185.66v.02h-4.08v-.02C16.93 479.14 0 295.88 0 295.88c23.21 61.56 49.44 77.71 49.44 77.71-95.87-122.11-17.15-233.11-17.15-233.11-45.41 85.78 41.38 170.54 41.38 170.54-104.95-171.56 60.54-271.46 60.54-271.46-96.88 72.66 10.09 190.73 10.09 190.73-85.78 158.44 68.62 230.09 68.62 230.09s.43-16.93 2.19-85.7l-34.48 36.25 24.22-47.43-62.56-9.08 62.56-9.09-20.18-55.5 31.44 45.89c2.25-87.85 7.82-305.82 7.85-306.85l.01-2.43.02 1 .03-1 .01 2.43c.05 1.72 5.61 219.2 7.86 306.85z"] }; +var faJenkins = { prefix: 'fab', iconName: 'jenkins', icon: [512, 512, [], "f3b6", "M487.1 425c-1.4-11.2-19-23.1-28.2-31.9-5.1-5-29-23.1-30.4-29.9-1.4-6.6 9.7-21.5 13.3-28.9 5.1-10.7 8.8-23.7 11.3-32.6 18.8-66.1 20.7-156.9-6.2-211.2-10.2-20.6-38.6-49-56.4-62.5-42-31.7-119.6-35.3-170.1-16.6-14.1 5.2-27.8 9.8-40.1 17.1-33.1 19.4-68.3 32.5-78.1 71.6-24.2 10.8-31.5 41.8-30.3 77.8.2 7 4.1 15.8 2.7 22.4-.7 3.3-5.2 7.6-6.1 9.8-11.6 27.7-2.3 64 11.1 83.7 8.1 11.9 21.5 22.4 39.2 25.2.7 10.6 3.3 19.7 8.2 30.4 3.1 6.8 14.7 19 10.4 27.7-2.2 4.4-21 13.8-27.3 17.6C89 407.2 73.7 415 54.2 429c-12.6 9-32.3 10.2-29.2 31.1 2.1 14.1 10.1 31.6 14.7 45.8.7 2 1.4 4.1 2.1 6h422c4.9-15.3 9.7-30.9 14.6-47.2 3.4-11.4 10.2-27.8 8.7-39.7zM205.9 33.7c1.8-.5 3.4.7 4.9 2.4-.2 5.2-5.4 5.1-8.9 6.8-5.4 6.7-13.4 9.8-20 17.2-6.8 7.5-14.4 27.7-23.4 30-4.5 1.1-9.7-.8-13.6-.5-10.4.7-17.7 6-28.3 7.5 13.6-29.9 56.1-54 89.3-63.4zm-104.8 93.6c13.5-14.9 32.1-24.1 54.8-25.9 11.7 29.7-8.4 65-.9 97.6 2.3 9.9 10.2 25.4-2.4 25.7.3-28.3-34.8-46.3-61.3-29.6-1.8-21.5-4.9-51.7 9.8-67.8zm36.7 200.2c-1-4.1-2.7-12.9-2.3-15.1 1.6-8.7 17.1-12.5 11-24.7-11.3-.1-13.8 10.2-24.1 11.3-26.7 2.6-45.6-35.4-44.4-58.4 1-19.5 17.6-38.2 40.1-35.8 16 1.8 21.4 19.2 24.5 34.7 9.2.5 22.5-.4 26.9-7.6-.6-17.5-8.8-31.6-8.2-47.7 1-30.3 17.5-57.6 4.8-87.4 13.6-30.9 53.5-55.3 83.1-70 36.6-18.3 94.9-3.7 129.3 15.8 19.7 11.1 34.4 32.7 48.3 50.7-19.5-5.8-36.1 4.2-33.1 20.3 16.3-14.9 44.2-.2 52.5 16.4 7.9 15.8 7.8 39.3 9 62.8 2.9 57-10.4 115.9-39.1 157.1-7.7 11-14.1 23-24.9 30.6-26 18.2-65.4 34.7-99.2 23.4-44.7-15-65-44.8-89.5-78.8.7 18.7 13.8 34.1 26.8 48.4 11.3 12.5 25 26.6 39.7 32.4-12.3-2.9-31.1-3.8-36.2 7.2-28.6-1.9-55.1-4.8-68.7-24.2-10.6-15.4-21.4-41.4-26.3-61.4zm222 124.1c4.1-3 11.1-2.9 17.4-3.6-5.4-2.7-13-3.7-19.3-2.2-.1-4.2-2-6.8-3.2-10.2 10.6-3.8 35.5-28.5 49.6-20.3 6.7 3.9 9.5 26.2 10.1 37 .4 9-.8 18-4.5 22.8-18.8-.6-35.8-2.8-50.7-7 .9-6.1-1-12.1.6-16.5zm-17.2-20c-16.8.8-26-1.2-38.3-10.8.2-.8 1.4-.5 1.5-1.4 18 8 40.8-3.3 59-4.9-7.9 5.1-14.6 11.6-22.2 17.1zm-12.1 33.2c-1.6-9.4-3.5-12-2.8-20.2 25-16.6 29.7 28.6 2.8 20.2zM226 438.6c-11.6-.7-48.1-14-38.5-23.7 9.4 6.5 27.5 4.9 41.3 7.3.8 4.4-2.8 10.2-2.8 16.4zM57.7 497.1c-4.3-12.7-9.2-25.1-14.8-36.9 30.8-23.8 65.3-48.9 102.2-63.5 2.8-1.1 23.2 25.4 26.2 27.6 16.5 11.7 37 21 56.2 30.2 1.2 8.8 3.9 20.2 8.7 35.5.7 2.3 1.4 4.7 2.2 7.2H57.7zm240.6 5.7h-.8c.3-.2.5-.4.8-.5v.5zm7.5-5.7c2.1-1.4 4.3-2.8 6.4-4.3 1.1 1.4 2.2 2.8 3.2 4.3h-9.6zm15.1-24.7c-10.8 7.3-20.6 18.3-33.3 25.2-6 3.3-27 11.7-33.4 10.2-3.6-.8-3.9-5.3-5.4-9.5-3.1-9-10.1-23.4-10.8-37-.8-17.2-2.5-46 16-42.4 14.9 2.9 32.3 9.7 43.9 16.1 7.1 3.9 11.1 8.6 21.9 9.5-.1 1.4-.1 2.8-.2 4.3-5.9 3.9-15.3 3.8-21.8 7.1 9.5.4 17 2.7 23.5 5.9-.1 3.4-.3 7-.4 10.6zm53.4 24.7h-14c-.1-3.2-2.8-5.8-6.1-5.8s-5.9 2.6-6.1 5.8h-17.4c-2.8-4.4-5.7-8.6-8.9-12.5 2.1-2.2 4-4.7 6-6.9 9 3.7 14.8-4.9 21.7-4.2 7.9.8 14.2 11.7 25.4 11l-.6 12.6zm8.7 0c.2-4 .4-7.8.6-11.5 15.6-7.3 29 1.3 35.7 11.5H383zm83.4-37c-2.3 11.2-5.8 24-9.9 37.1-.2-.1-.4-.1-.6-.1H428c.6-1.1 1.2-2.2 1.9-3.3-2.6-6.1-9-8.7-10.9-15.5 12.1-22.7 6.5-93.4-24.2-78.5 4.3-6.3 15.6-11.5 20.8-19.3 13 10.4 20.8 20.3 33.2 31.4 6.8 6 20 13.3 21.4 23.1.8 5.5-2.6 18.9-3.8 25.1zM222.2 130.5c5.4-14.9 27.2-34.7 45-32 7.7 1.2 18 8.2 12.2 17.7-30.2-7-45.2 12.6-54.4 33.1-8.1-2-4.9-13.1-2.8-18.8zm184.1 63.1c8.2-3.6 22.4-.7 29.6-5.3-4.2-11.5-10.3-21.4-9.3-37.7.5 0 1 0 1.4.1 6.8 14.2 12.7 29.2 21.4 41.7-5.7 13.5-43.6 25.4-43.1 1.2zm20.4-43zm-117.2 45.7c-6.8-10.9-19-32.5-14.5-45.3 6.5 11.9 8.6 24.4 17.8 33.3 4.1 4 12.2 9 8.2 20.2-.9 2.7-7.8 8.6-11.7 9.7-14.4 4.3-47.9.9-36.6-17.1 11.9.7 27.9 7.8 36.8-.8zm27.3 70c3.8 6.6 1.4 18.7 12.1 20.6 20.2 3.4 43.6-12.3 58.1-17.8 9-15.2-.8-20.7-8.9-30.5-16.6-20-38.8-44.8-38-74.7 6.7-4.9 7.3 7.4 8.2 9.7 8.7 20.3 30.4 46.2 46.3 63.5 3.9 4.3 10.3 8.4 11 11.2 2.1 8.2-5.4 18-4.5 23.5-21.7 13.9-45.8 29.1-81.4 25.6-7.4-6.7-10.3-21.4-2.9-31.1zm-201.3-9.2c-6.8-3.9-8.4-21-16.4-21.4-11.4-.7-9.3 22.2-9.3 35.5-7.8-7.1-9.2-29.1-3.5-40.3-6.6-3.2-9.5 3.6-13.1 5.9 4.7-34.1 49.8-15.8 42.3 20.3zm299.6 28.8c-10.1 19.2-24.4 40.4-54 41-.6-6.2-1.1-15.6 0-19.4 22.7-2.2 36.6-13.7 54-21.6zm-141.9 12.4c18.9 9.9 53.6 11 79.3 10.2 1.4 5.6 1.3 12.6 1.4 19.4-33 1.8-72-6.4-80.7-29.6zm92.2 46.7c-1.7 4.3-5.3 9.3-9.8 11.1-12.1 4.9-45.6 8.7-62.4-.3-10.7-5.7-17.5-18.5-23.4-26-2.8-3.6-16.9-12.9-.2-12.9 13.1 32.7 58 29 95.8 28.1z"] }; +var faJoget = { prefix: 'fab', iconName: 'joget', icon: [496, 512, [], "f3b7", "M227.5 468.7c-9-13.6-19.9-33.3-23.7-42.4-5.7-13.7-27.2-45.6 31.2-67.1 51.7-19.1 176.7-16.5 208.8-17.6-4 9-8.6 17.9-13.9 26.6-40.4 65.5-110.4 101.5-182 101.5-6.8 0-13.6-.4-20.4-1M66.1 143.9C128 43.4 259.6 12.2 360.1 74.1c74.8 46.1 111.2 130.9 99.3 212.7-24.9-.5-179.3-3.6-230.3-4.9-55.5-1.4-81.7-20.8-58.5-48.2 23.2-27.4 51.1-40.7 68.9-51.2 17.9-10.5 27.3-33.7-23.6-29.7C87.3 161.5 48.6 252.1 37.6 293c-8.8-49.7-.1-102.7 28.5-149.1m-29.2-18c-71.9 116.6-35.6 269.3 81 341.2 116.6 71.9 269.3 35.6 341.2-80.9 71.9-116.6 35.6-269.4-81-341.2-40.5-25.1-85.5-37-129.9-37C165 8 83.8 49.9 36.9 125.9m244.4 110.4c-31.5 20.5-65.3 31.3-65.3 31.3l169.5-1.6 46.5-23.4s3.6-9.5-19.1-15.5c-22.7-6-57 11.3-86.7 27.2-29.7 15.8-31.1 8.2-31.1 8.2s40.2-28.1 50.7-34.5c10.5-6.4 31.9-14 13.4-24.6-3.2-1.8-6.7-2.7-10.4-2.7-17.8 0-41.5 18.7-67.5 35.6"] }; +var faJoomla = { prefix: 'fab', iconName: 'joomla', icon: [448, 512, [], "f1aa", "M.6 92.1C.6 58.8 27.4 32 60.4 32c30 0 54.5 21.9 59.2 50.2 32.6-7.6 67.1.6 96.5 30l-44.3 44.3c-20.5-20.5-42.6-16.3-55.4-3.5-14.3 14.3-14.3 37.9 0 52.2l99.5 99.5-44 44.3c-87.7-87.2-49.7-49.7-99.8-99.7-26.8-26.5-35-64.8-24.8-98.9C20.4 144.6.6 120.7.6 92.1zm129.5 116.4l44.3 44.3c10-10 89.7-89.7 99.7-99.8 14.3-14.3 37.6-14.3 51.9 0 12.8 12.8 17 35-3.5 55.4l44 44.3c31.2-31.2 38.5-67.6 28.9-101.2 29.2-4.1 51.9-29.2 51.9-59.5 0-33.2-26.8-60.1-59.8-60.1-30.3 0-55.4 22.5-59.5 51.6-33.8-9.9-71.7-1.5-98.3 25.1-18.3 19.1-71.1 71.5-99.6 99.9zm266.3 152.2c8.2-32.7-.9-68.5-26.3-93.9-11.8-12.2 5 4.7-99.5-99.7l-44.3 44.3 99.7 99.7c14.3 14.3 14.3 37.6 0 51.9-12.8 12.8-35 17-55.4-3.5l-44 44.3c27.6 30.2 68 38.8 102.7 28 5.5 27.4 29.7 48.1 58.9 48.1 33 0 59.8-26.8 59.8-60.1 0-30.2-22.5-55-51.6-59.1zm-84.3-53.1l-44-44.3c-87 86.4-50.4 50.4-99.7 99.8-14.3 14.3-37.6 14.3-51.9 0-13.1-13.4-16.9-35.3 3.2-55.4l-44-44.3c-30.2 30.2-38 65.2-29.5 98.3-26.7 6-46.2 29.9-46.2 58.2C0 453.2 26.8 480 59.8 480c28.6 0 52.5-19.8 58.6-46.7 32.7 8.2 68.5-.6 94.2-26 32.1-32 12.2-12.4 99.5-99.7z"] }; +var faJs = { prefix: 'fab', iconName: 'js', icon: [448, 512, [], "f3b8", "M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"] }; +var faJsSquare = { prefix: 'fab', iconName: 'js-square', icon: [448, 512, [], "f3b9", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM243.8 381.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"] }; +var faJsfiddle = { prefix: 'fab', iconName: 'jsfiddle', icon: [576, 512, [], "f1cc", "M510.634 237.462c-4.727-2.621-5.664-5.748-6.381-10.776-2.352-16.488-3.539-33.619-9.097-49.095-35.895-99.957-153.99-143.386-246.849-91.646-27.37 15.25-48.971 36.369-65.493 63.903-3.184-1.508-5.458-2.71-7.824-3.686-30.102-12.421-59.049-10.121-85.331 9.167-25.531 18.737-36.422 44.548-32.676 76.408.355 3.025-1.967 7.621-4.514 9.545-39.712 29.992-56.031 78.065-41.902 124.615 13.831 45.569 57.514 79.796 105.608 81.433 30.291 1.031 60.637.546 90.959.539 84.041-.021 168.09.531 252.12-.48 52.664-.634 96.108-36.873 108.212-87.293 11.54-48.074-11.144-97.3-56.832-122.634zm21.107 156.88c-18.23 22.432-42.343 35.253-71.28 35.65-56.874.781-113.767.23-170.652.23 0 .7-163.028.159-163.728.154-43.861-.332-76.739-19.766-95.175-59.995-18.902-41.245-4.004-90.848 34.186-116.106 9.182-6.073 12.505-11.566 10.096-23.136-5.49-26.361 4.453-47.956 26.42-62.981 22.987-15.723 47.422-16.146 72.034-3.083 10.269 5.45 14.607 11.564 22.198-2.527 14.222-26.399 34.557-46.727 60.671-61.294 97.46-54.366 228.37 7.568 230.24 132.697.122 8.15 2.412 12.428 9.848 15.894 57.56 26.829 74.456 96.122 35.142 144.497zm-87.789-80.499c-5.848 31.157-34.622 55.096-66.666 55.095-16.953-.001-32.058-6.545-44.079-17.705-27.697-25.713-71.141-74.98-95.937-93.387-20.056-14.888-41.99-12.333-60.272 3.782-49.996 44.071 15.859 121.775 67.063 77.188 4.548-3.96 7.84-9.543 12.744-12.844 8.184-5.509 20.766-.884 13.168 10.622-17.358 26.284-49.33 38.197-78.863 29.301-28.897-8.704-48.84-35.968-48.626-70.179 1.225-22.485 12.364-43.06 35.414-55.965 22.575-12.638 46.369-13.146 66.991 2.474C295.68 280.7 320.467 323.97 352.185 343.47c24.558 15.099 54.254 7.363 68.823-17.506 28.83-49.209-34.592-105.016-78.868-63.46-3.989 3.744-6.917 8.932-11.41 11.72-10.975 6.811-17.333-4.113-12.809-10.353 20.703-28.554 50.464-40.44 83.271-28.214 31.429 11.714 49.108 44.366 42.76 78.186z"] }; +var faKeybase = { prefix: 'fab', iconName: 'keybase', icon: [412, 512, [], "f4f5", "M177.2 430.9c0 9.8-8 17.8-17.8 17.8s-17.8-8-17.8-17.8 8-17.8 17.8-17.8c9.8-.1 17.8 7.9 17.8 17.8zM270 413c-9.8 0-17.8 8-17.8 17.8s8 17.8 17.8 17.8 17.8-8 17.8-17.8-8-17.8-17.8-17.8zm142.3-36c0 38.9-7.6 73.9-22.2 103h-27.3c23.5-38.7 30.5-94.8 22.4-134.3-16.1 29.5-52.1 38.6-85.9 28.8-127.8-37.5-192.5 19.7-234.6 50.3l18.9-59.3-39.9 42.3c4.8 26.7 15.7 51.3 31.2 72.3H46.1c-9.7-15.8-17.2-33-22.2-51.3L.1 454c0-74.9-5.5-147.6 61.5-215.2 20.2-20.4 43.7-36.2 69.1-46.7-6.8-13.5-9.5-29.2-7.8-46l-19.9-1.2c-17.9-1.1-31.6-16.5-30.6-34.4v-.1L74 84.2c1.1-17.1 15.4-30.6 32.5-30.6 1.3 0-.3-.1 28.2 1.7 13.9.8 21.5 9.8 22.8 11.4 7.1-10.4 14.5-20.5 24.6-34.5l20.6 12.1c-13.6 29-9.1 36.2-9 36.3 3.9 0 13.9-.5 32.4 5.7C246 92.9 262 107 271 126c.4.9 15.5 29 1.2 62.6 19 6.1 51.3 19.9 82.4 51.8 36.6 37.6 57.7 87.4 57.7 136.6zM128 122.3c3.2-10 7.7-19.7 13.1-29.4.1-2 2.2-13.1-7.8-13.8-28.5-1.8-26.3-1.6-26.7-1.6-4.6 0-8.3 3.5-8.6 8.1l-1.6 26.2c-.3 4.7 3.4 8.8 8.1 9.1l23.5 1.4zm25.8 61.8c5.6 9.4 14.1 16.1 22.3 20 0-21.2 28.5-41.9 52.8-17.5l8.4 10.3c20.8-18.8 19.4-45.3 12.1-60.9-13.8-29.1-46.9-32-54.3-31.7-10.3.4-19.7-5.4-23.7-15.3-13.7 21.2-37.2 62.5-17.6 95.1zm82.9 68.4L217 268.6c-1.9 1.6-2.2 4.4-.6 6.3l8.9 10.9c1 1.2 3.8 2.7 6.3.6l19.6-16 5.5 6.8c4.9 6 13.8-1.4 9-7.3-63.6-78.3-41.5-51.1-55.3-68.1-4.7-6-13.9 1.4-9 7.3 1.9 2.3 18.4 22.6 19.8 24.3l-9.6 7.9c-4.6 3.8 2.6 13.3 7.4 9.4l9.7-8 8 9.8zm118.4 25.7c-16.9-23.7-42.6-46.7-73.4-60.4-7.9-3.5-15-6.1-22.9-8.6-2 2.2-4.1 4.3-6.4 6.2l31.9 39.2c10.4 12.7 8.5 31.5-4.2 41.9-1.3 1.1-13.1 10.7-29 4.9-2.9 2.3-10.1 9.9-22.2 9.9-8.6 0-16.6-3.8-22.1-10.5l-8.9-10.9c-6.3-7.8-7.9-17.9-5-26.8-8.2-9.9-8.3-21.3-4.6-30-7.2-1.3-26.7-6.2-42.7-21.4-55.8 20.7-88 64.4-101.3 91.2-14.9 30.2-18.8 60.9-19.9 90.2 8.2-8.7-3.9 4.1 114-120.9l-29.9 93.6c57.8-31.1 124-36 197.4-14.4 23.6 6.9 45.1 1.6 56-13.9 11.1-15.6 8.5-37.7-6.8-59.3zM110.6 107.3l15.6 1 1-15.6-15.6-1-1 15.6z"] }; +var faKeycdn = { prefix: 'fab', iconName: 'keycdn', icon: [512, 512, [], "f3ba", "M63.8 409.3l60.5-59c32.1 42.8 71.1 66 126.6 67.4 30.5.7 60.3-7 86.4-22.4 5.1 5.3 18.5 19.5 20.9 22-32.2 20.7-69.6 31.1-108.1 30.2-43.3-1.1-84.6-16.7-117.7-44.4.3-.6-38.2 37.5-38.6 37.9 9.5 29.8-13.1 62.4-46.3 62.4C20.7 503.3 0 481.7 0 454.9c0-34.3 33.1-56.6 63.8-45.6zm354.9-252.4c19.1 31.3 29.6 67.4 28.7 104-1.1 44.8-19 87.5-48.6 121 .3.3 23.8 25.2 24.1 25.5 9.6-1.3 19.2 2 25.9 9.1 11.3 12 10.9 30.9-1.1 42.4-12 11.3-30.9 10.9-42.4-1.1-6.7-7-9.4-16.8-7.6-26.3-24.9-26.6-44.4-47.2-44.4-47.2 42.7-34.1 63.3-79.6 64.4-124.2.7-28.9-7.2-57.2-21.1-82.2l22.1-21zM104 53.1c6.7 7 9.4 16.8 7.6 26.3l45.9 48.1c-4.7 3.8-13.3 10.4-22.8 21.3-25.4 28.5-39.6 64.8-40.7 102.9-.7 28.9 6.1 57.2 20 82.4l-22 21.5C72.7 324 63.1 287.9 64.2 250.9c1-44.6 18.3-87.6 47.5-121.1l-25.3-26.4c-9.6 1.3-19.2-2-25.9-9.1-11.3-12-10.9-30.9 1.1-42.4C73.5 40.7 92.2 41 104 53.1zM464.9 8c26 0 47.1 22.4 47.1 48.3S490.9 104 464.9 104c-6.3.1-14-1.1-15.9-1.8l-62.9 59.7c-32.7-43.6-76.7-65.9-126.9-67.2-30.5-.7-60.3 6.8-86.2 22.4l-21.1-22C184.1 74.3 221.5 64 260 64.9c43.3 1.1 84.6 16.7 117.7 44.6l41.1-38.6c-1.5-4.7-2.2-9.6-2.2-14.5C416.5 29.7 438.9 8 464.9 8zM256.7 113.4c5.5 0 10.9.4 16.4 1.1 78.1 9.8 133.4 81.1 123.8 159.1-9.8 78.1-81.1 133.4-159.1 123.8-78.1-9.8-133.4-81.1-123.8-159.2 9.3-72.4 70.1-124.6 142.7-124.8zm-59 119.4c.6 22.7 12.2 41.8 32.4 52.2l-11 51.7h73.7l-11-51.7c20.1-10.9 32.1-29 32.4-52.2-.4-32.8-25.8-57.5-58.3-58.3-32.1.8-57.3 24.8-58.2 58.3zM256 160"] }; +var faKickstarter = { prefix: 'fab', iconName: 'kickstarter', icon: [448, 512, [], "f3bb", "M400 480H48c-26.4 0-48-21.6-48-48V80c0-26.4 21.6-48 48-48h352c26.4 0 48 21.6 48 48v352c0 26.4-21.6 48-48 48zM199.6 178.5c0-30.7-17.6-45.1-39.7-45.1-25.8 0-40 19.8-40 44.5v154.8c0 25.8 13.7 45.6 40.5 45.6 21.5 0 39.2-14 39.2-45.6v-41.8l60.6 75.7c12.3 14.9 39 16.8 55.8 0 14.6-15.1 14.8-36.8 4-50.4l-49.1-62.8 40.5-58.7c9.4-13.5 9.5-34.5-5.6-49.1-16.4-15.9-44.6-17.3-61.4 7l-44.8 64.7v-38.8z"] }; +var faKickstarterK = { prefix: 'fab', iconName: 'kickstarter-k', icon: [384, 512, [], "f3bc", "M147.3 114.4c0-56.2-32.5-82.4-73.4-82.4C26.2 32 0 68.2 0 113.4v283c0 47.3 25.3 83.4 74.9 83.4 39.8 0 72.4-25.6 72.4-83.4v-76.5l112.1 138.3c22.7 27.2 72.1 30.7 103.2 0 27-27.6 27.3-67.4 7.4-92.2l-90.8-114.8 74.9-107.4c17.4-24.7 17.5-63.1-10.4-89.8-30.3-29-82.4-31.6-113.6 12.8L147.3 185v-70.6z"] }; +var faKorvue = { prefix: 'fab', iconName: 'korvue', icon: [446, 512, [], "f42f", "M386.5 34h-327C26.8 34 0 60.8 0 93.5v327.1C0 453.2 26.8 480 59.5 480h327.1c33 0 59.5-26.8 59.5-59.5v-327C446 60.8 419.2 34 386.5 34zM87.1 120.8h96v116l61.8-116h110.9l-81.2 132H87.1v-132zm161.8 272.1l-65.7-113.6v113.6h-96V262.1h191.5l88.6 130.8H248.9z"] }; +var faLaravel = { prefix: 'fab', iconName: 'laravel', icon: [640, 512, [], "f3bd", "M637.5 241.6c-4.2-4.8-62.8-78.1-73.1-90.5-10.3-12.4-15.4-10.2-21.7-9.3-6.4.9-80.5 13.4-89.1 14.8-8.6 1.5-14 4.9-8.7 12.3 4.7 6.6 53.4 75.7 64.2 90.9l-193.7 46.4L161.2 48.7c-6.1-9.1-7.4-12.3-21.4-11.6-14 .6-120.9 9.5-128.5 10.2-7.6.6-16 4-8.4 22s129 279.6 132.4 287.2c3.4 7.6 12.2 20 32.8 15 21.1-5.1 94.3-24.2 134.3-34.7 21.1 38.3 64.2 115.9 72.2 127 10.6 14.9 18 12.4 34.3 7.4 12.8-3.9 199.6-71.1 208-74.5 8.4-3.5 13.6-5.9 7.9-14.4-4.2-6.2-53.5-72.2-79.3-106.8 17.7-4.7 80.6-21.4 87.3-23.3 7.9-2 9-5.8 4.7-10.6zm-352.2 72c-2.3.5-110.8 26.5-116.6 27.8-5.8 1.3-5.8.7-6.5-1.3-.7-2-129-266.7-130.8-270-1.8-3.3-1.7-5.9 0-5.9s102.5-9 106-9.2c3.6-.2 3.2.6 4.5 2.8 0 0 142.2 245.4 144.6 249.7 2.6 4.3 1.1 5.6-1.2 6.1zm306 57.4c1.7 2.7 3.5 4.5-2 6.4-5.4 2-183.7 62.1-187.1 63.6-3.5 1.5-6.2 2-10.6-4.5s-62.4-106.8-62.4-106.8L518 280.6c4.7-1.5 6.2-2.5 9.2 2.2 2.9 4.8 62.4 85.5 64.1 88.2zm12.1-134.1c-4.2.9-73.6 18.1-73.6 18.1l-56.7-77.8c-1.6-2.3-2.9-4.5 1.1-5s68.4-12.2 71.3-12.8c2.9-.7 5.4-1.5 9 3.4 3.6 4.9 52.6 67 54.5 69.4 1.8 2.3-1.4 3.7-5.6 4.7z"] }; +var faLastfm = { prefix: 'fab', iconName: 'lastfm', icon: [512, 512, [], "f202", "M225.8 367.1l-18.8-51s-30.5 34-76.2 34c-40.5 0-69.2-35.2-69.2-91.5 0-72.1 36.4-97.9 72.1-97.9 66.5 0 74.8 53.3 100.9 134.9 18.8 56.9 54 102.6 155.4 102.6 72.7 0 122-22.3 122-80.9 0-72.9-62.7-80.6-115-92.1-25.8-5.9-33.4-16.4-33.4-34 0-19.9 15.8-31.7 41.6-31.7 28.2 0 43.4 10.6 45.7 35.8l58.6-7c-4.7-52.8-41.1-74.5-100.9-74.5-52.8 0-104.4 19.9-104.4 83.9 0 39.9 19.4 65.1 68 76.8 44.9 10.6 79.8 13.8 79.8 45.7 0 21.7-21.1 30.5-61 30.5-59.2 0-83.9-31.1-97.9-73.9-32-96.8-43.6-163-161.3-163C45.7 113.8 0 168.3 0 261c0 89.1 45.7 137.2 127.9 137.2 66.2 0 97.9-31.1 97.9-31.1z"] }; +var faLastfmSquare = { prefix: 'fab', iconName: 'lastfm-square', icon: [448, 512, [], "f203", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-92.2 312.9c-63.4 0-85.4-28.6-97.1-64.1-16.3-51-21.5-84.3-63-84.3-22.4 0-45.1 16.1-45.1 61.2 0 35.2 18 57.2 43.3 57.2 28.6 0 47.6-21.3 47.6-21.3l11.7 31.9s-19.8 19.4-61.2 19.4c-51.3 0-79.9-30.1-79.9-85.8 0-57.9 28.6-92 82.5-92 73.5 0 80.8 41.4 100.8 101.9 8.8 26.8 24.2 46.2 61.2 46.2 24.9 0 38.1-5.5 38.1-19.1 0-19.9-21.8-22-49.9-28.6-30.4-7.3-42.5-23.1-42.5-48 0-40 32.3-52.4 65.2-52.4 37.4 0 60.1 13.6 63 46.6l-36.7 4.4c-1.5-15.8-11-22.4-28.6-22.4-16.1 0-26 7.3-26 19.8 0 11 4.8 17.6 20.9 21.3 32.7 7.1 71.8 12 71.8 57.5.1 36.7-30.7 50.6-76.1 50.6z"] }; +var faLeanpub = { prefix: 'fab', iconName: 'leanpub', icon: [576, 512, [], "f212", "M386.539 111.485l15.096 248.955-10.979-.275c-36.232-.824-71.64 8.783-102.657 27.997-31.016-19.214-66.424-27.997-102.657-27.997-45.564 0-82.07 10.705-123.516 27.723L93.117 129.6c28.546-11.803 61.484-18.115 92.226-18.115 41.173 0 73.836 13.175 102.657 42.544 27.723-28.271 59.013-41.721 98.539-42.544zM569.07 448c-25.526 0-47.485-5.215-70.542-15.645-34.31-15.645-69.993-24.978-107.871-24.978-38.977 0-74.934 12.901-102.657 40.623-27.723-27.723-63.68-40.623-102.657-40.623-37.878 0-73.561 9.333-107.871 24.978C55.239 442.236 32.731 448 8.303 448H6.93L49.475 98.859C88.726 76.626 136.486 64 181.775 64 218.83 64 256.984 71.685 288 93.095 319.016 71.685 357.17 64 394.225 64c45.289 0 93.049 12.626 132.3 34.859L569.07 448zm-43.368-44.741l-34.036-280.246c-30.742-13.999-67.248-21.41-101.009-21.41-38.428 0-74.385 12.077-102.657 38.702-28.272-26.625-64.228-38.702-102.657-38.702-33.761 0-70.267 7.411-101.009 21.41L50.298 403.259c47.211-19.487 82.894-33.486 135.045-33.486 37.604 0 70.817 9.606 102.657 29.644 31.84-20.038 65.052-29.644 102.657-29.644 52.151 0 87.834 13.999 135.045 33.486z"] }; +var faLess = { prefix: 'fab', iconName: 'less', icon: [640, 512, [], "f41d", "M612.7 219c0-20.5 3.2-32.6 3.2-54.6 0-34.2-12.6-45.2-40.5-45.2h-20.5v24.2h6.3c14.2 0 17.3 4.7 17.3 22.1 0 16.3-1.6 32.6-1.6 51.5 0 24.2 7.9 33.6 23.6 37.3v1.6c-15.8 3.7-23.6 13.1-23.6 37.3 0 18.9 1.6 34.2 1.6 51.5 0 17.9-3.7 22.6-17.3 22.6v.5h-6.3V393h20.5c27.8 0 40.5-11 40.5-45.2 0-22.6-3.2-34.2-3.2-54.6 0-11 6.8-22.6 27.3-23.6v-27.3c-20.5-.7-27.3-12.3-27.3-23.3zm-105.6 32c-15.8-6.3-30.5-10-30.5-20.5 0-7.9 6.3-12.6 17.9-12.6s22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-21 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51s-22.5-41-43-47.8zm-358.9 59.4c-3.7 0-8.4-3.2-8.4-13.1V119.1H65.2c-28.4 0-41 11-41 45.2 0 22.6 3.2 35.2 3.2 54.6 0 11-6.8 22.6-27.3 23.6v27.3c20.5.5 27.3 12.1 27.3 23.1 0 19.4-3.2 31-3.2 53.6 0 34.2 12.6 45.2 40.5 45.2h20.5v-24.2h-6.3c-13.1 0-17.3-5.3-17.3-22.6s1.6-32.1 1.6-51.5c0-24.2-7.9-33.6-23.6-37.3v-1.6c15.8-3.7 23.6-13.1 23.6-37.3 0-18.9-1.6-34.2-1.6-51.5s3.7-22.1 17.3-22.1H93v150.8c0 32.1 11 53.1 43.1 53.1 10 0 17.9-1.6 23.6-3.7l-5.3-34.2c-3.1.8-4.6.8-6.2.8zM379.9 251c-16.3-6.3-31-10-31-20.5 0-7.9 6.3-12.6 17.9-12.6 11.6 0 22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-20.5 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51 .1-28.9-22.5-41-43-47.8zm-155-68.8c-38.4 0-75.1 32.1-74.1 82.5 0 52 34.2 82.5 79.3 82.5 18.9 0 39.9-6.8 56.2-17.9l-15.8-27.8c-11.6 6.8-22.6 10-34.2 10-21 0-37.3-10-41.5-34.2H290c.5-3.7 1.6-11 1.6-19.4.6-42.6-22.6-75.7-66.7-75.7zm-30 66.2c3.2-21 15.8-31 30.5-31 18.9 0 26.3 13.1 26.3 31h-56.8z"] }; +var faLine = { prefix: 'fab', iconName: 'line', icon: [448, 512, [], "f3c0", "M272.1 204.2v71.1c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.1 0-2.1-.6-2.6-1.3l-32.6-44v42.2c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.8 0-3.2-1.4-3.2-3.2v-71.1c0-1.8 1.4-3.2 3.2-3.2H219c1 0 2.1.5 2.6 1.4l32.6 44v-42.2c0-1.8 1.4-3.2 3.2-3.2h11.4c1.8-.1 3.3 1.4 3.3 3.1zm-82-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 1.8 1.4 3.2 3.2 3.2h11.4c1.8 0 3.2-1.4 3.2-3.2v-71.1c0-1.7-1.4-3.2-3.2-3.2zm-27.5 59.6h-31.1v-56.4c0-1.8-1.4-3.2-3.2-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 .9.3 1.6.9 2.2.6.5 1.3.9 2.2.9h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.7-1.4-3.2-3.1-3.2zM332.1 201h-45.7c-1.7 0-3.2 1.4-3.2 3.2v71.1c0 1.7 1.4 3.2 3.2 3.2h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2V234c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2v-11.4c-.1-1.7-1.5-3.2-3.2-3.2zM448 113.7V399c-.1 44.8-36.8 81.1-81.7 81H81c-44.8-.1-81.1-36.9-81-81.7V113c.1-44.8 36.9-81.1 81.7-81H367c44.8.1 81.1 36.8 81 81.7zm-61.6 122.6c0-73-73.2-132.4-163.1-132.4-89.9 0-163.1 59.4-163.1 132.4 0 65.4 58 120.2 136.4 130.6 19.1 4.1 16.9 11.1 12.6 36.8-.7 4.1-3.3 16.1 14.1 8.8 17.4-7.3 93.9-55.3 128.2-94.7 23.6-26 34.9-52.3 34.9-81.5z"] }; +var faLinkedin = { prefix: 'fab', iconName: 'linkedin', icon: [448, 512, [], "f08c", "M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"] }; +var faLinkedinIn = { prefix: 'fab', iconName: 'linkedin-in', icon: [448, 512, [], "f0e1", "M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"] }; +var faLinode = { prefix: 'fab', iconName: 'linode', icon: [448, 512, [], "f2b8", "M437.4 226.3c-.3-.9-.9-1.4-1.4-2l-70-38.6c-.9-.6-2-.6-3.1 0l-58.9 36c-.9.6-1.4 1.7-1.4 2.6l-.9 31.4-24-16c-.9-.6-2.3-.6-3.1 0L240 260.9l-1.4-35.1c0-.9-.6-2-1.4-2.3l-36-24.3 33.7-17.4c1.1-.6 1.7-1.7 1.7-2.9l-5.7-132.3c0-.9-.9-2-1.7-2.6L138.6.3c-.9-.3-1.7-.3-2.3-.3L12.6 38.6c-1.4.6-2.3 2-2 3.7L38 175.4c.9 3.4 34 27.4 38.6 30.9l-26.9 12.9c-1.4.9-2 2.3-1.7 3.4l20.6 100.3c.6 2.9 23.7 23.1 27.1 26.3l-17.4 10.6c-.9.6-1.7 2-1.4 3.1 1.4 7.1 15.4 77.7 16.9 79.1l65.1 69.1c.6.6 1.4.6 2.3.9.6 0 1.1-.3 1.7-.6l83.7-66.9c.9-.6 1.1-1.4 1.1-2.3l-2-46 28 23.7c1.1.9 2.9.9 4 0l66.9-53.4c.9-.6 1.1-1.4 1.1-2.3l2.3-33.4 20.3 14c1.1.9 2.6.9 3.7 0l54.6-43.7c.6-.3 1.1-1.1 1.1-2 .9-6.5 10.3-70.8 9.7-72.8zm-204.8 4.8l4 92.6-90.6 61.2-14-96.6 100.6-57.2zm-7.7-180l5.4 126-106.6 55.4L104 97.7l120.9-46.6zM44 173.1L18 48l79.7 49.4 19.4 132.9L44 173.1zm30.6 147.8L55.7 230l70 58.3 13.7 93.4-64.8-60.8zm24.3 117.7l-13.7-67.1 61.7 60.9 9.7 67.4-57.7-61.2zm64.5 64.5l-10.6-70.9 85.7-61.4 3.1 70-78.2 62.3zm82-115.1c0-3.4.9-22.9-2-25.1l-24.3-20 22.3-14.9c2.3-1.7 1.1-5.7 1.1-8l29.4 22.6.6 68.3-27.1-22.9zm94.3-25.4l-60.9 48.6-.6-68.6 65.7-46.9-4.2 66.9zm27.7-25.7l-19.1-13.4 2-34c.3-.9-.3-2-1.1-2.6L308 259.7l.6-30 64.6 40.6-5.8 66.6zm54.6-39.8l-48.3 38.3 5.7-65.1 51.1-36.6-8.5 63.4z"] }; +var faLinux = { prefix: 'fab', iconName: 'linux', icon: [448, 512, [], "f17c", "M196.1 123.6c-.2-1.4 1.9-2.3 3.2-2.9 1.7-.7 3.9-1 5.5-.1.4.2.8.7.6 1.1-.4 1.2-2.4 1-3.5 1.6-1 .5-1.8 1.7-3 1.7-1 .1-2.7-.4-2.8-1.4zm24.7-.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm214.7 310.2c-.5 8.2-6.5 13.8-13.9 18.3-14.9 9-37.3 15.8-50.9 32.2l-2.6-2.2 2.6 2.2c-14.2 16.9-31.7 26.6-48.3 27.9-16.5 1.3-32-6.3-40.3-23v-.1c-1.1-2.1-1.9-4.4-2.5-6.7-21.5 1.2-40.2-5.3-55.1-4.1-22 1.2-35.8 6.5-48.3 6.6-4.8 10.6-14.3 17.6-25.9 20.2-16 3.7-36.1 0-55.9-10.4l1.6-3-1.6 3c-18.5-9.8-42-8.9-59.3-12.5-8.7-1.8-16.3-5-20.1-12.3-3.7-7.3-3-17.3 2.2-31.7 1.7-5.1.4-12.7-.8-20.8-.6-3.9-1.2-7.9-1.2-11.8 0-4.3.7-8.5 2.8-12.4 4.5-8.5 11.8-12.1 18.5-14.5 6.7-2.4 12.8-4 17-8.3 5.2-5.5 10.1-14.4 16.6-20.2-2.6-17.2.2-35.4 6.2-53.3 12.6-37.9 39.2-74.2 58.1-96.7 16.1-22.9 20.8-41.3 22.5-64.7C158 103.4 132.4-.2 234.8 0c80.9.1 76.3 85.4 75.8 131.3-.3 30.1 16.3 50.5 33.4 72 15.2 18 35.1 44.3 46.5 74.4 9.3 24.6 12.9 51.8 3.7 79.1 1.4.5 2.8 1.2 4.1 2 1.4.8 2.7 1.8 4 2.9 6.6 5.6 8.7 14.3 10.5 22.4 1.9 8.1 3.6 15.7 7.2 19.7 11.1 12.4 15.9 21.5 15.5 29.7zM220.8 109.1c3.6.9 8.9 2.4 13 4.4-2.1-12.2 4.5-23.5 11.8-23 8.9.3 13.9 15.5 9.1 27.3-.8 1.9-2.8 3.4-3.9 4.6 6.7 2.3 11 4.1 12.6 4.9 7.9-9.5 10.8-26.2 4.3-40.4-9.8-21.4-34.2-21.8-44 .4-3.2 7.2-3.9 14.9-2.9 21.8zm-46.2 18.8c7.8-5.7 6.9-4.7 5.9-5.5-8-6.9-6.6-27.4 1.8-28.1 6.3-.5 10.8 10.7 9.6 19.6 3.1-2.1 6.7-3.6 10.2-4.6 1.7-19.3-9-33.5-19.1-33.5-18.9 0-24 37.5-8.4 52.1zm-9.4 20.9c1.5 4.9 6.1 10.5 14.7 15.3 7.8 4.6 12 11.5 20 15 2.6 1.1 5.7 1.9 9.6 2.1 18.4 1.1 27.1-11.3 38.2-14.9 11.7-3.7 20.1-11 22.7-18.1 3.2-8.5-2.1-14.7-10.5-18.2-11.3-4.9-16.3-5.2-22.6-9.3-10.3-6.6-18.8-8.9-25.9-8.9-14.4 0-23.2 9.8-27.9 14.2-.5.5-7.9 5.9-14.1 10.5-4.2 3.3-5.6 7.4-4.2 12.3zm-33.5 252.8L112.1 366c-6.8-9.2-13.8-14.8-21.9-16-7.7-1.2-12.6 1.4-17.7 6.9-4.8 5.1-8.8 12.3-14.3 18-7.8 6.5-9.3 6.2-19.6 9.9-6.3 2.2-11.3 4.6-14.8 11.3-2.7 5-2.1 12.2-.9 20 1.2 7.9 3 16.3.6 23.9v.2c-5 13.7-5 21.7-2.6 26.4 7.9 15.4 46.6 6.1 76.5 21.9 31.4 16.4 72.6 17.1 75.3-18 2.1-20.5-31.5-49-41-68.9zm153.9 35.8c3.2-11 6.3-21.3 6.8-29 .8-15.2 1.6-28.7 4.4-39.9 3.1-12.6 9.3-23.1 21.4-27.3 2.3-21.1 18.7-21.1 38.3-12.5 18.9 8.5 26 16 22.8 26.1 1 0 2-.1 4.2 0 5.2-16.9-14.3-28-30.7-34.8 2.9-12 2.4-24.1-.4-35.7-6-25.3-22.6-47.8-35.2-59-2.3-.1-2.1 1.9 2.6 6.5 11.6 10.7 37.1 49.2 23.3 84.9-3.9-1-7.6-1.5-10.9-1.4-5.3-29.1-17.5-53.2-23.6-64.6-11.5-21.4-29.5-65.3-37.2-95.7-4.5 6.4-12.4 11.9-22.3 15-4.7 1.5-9.7 5.5-15.9 9-13.9 8-30 8.8-42.4-1.2-4.5-3.6-8-7.6-12.6-10.3-1.6-.9-5.1-3.3-6.2-4.1-2 37.8-27.3 85.3-39.3 112.7-8.3 19.7-13.2 40.8-13.8 61.5-21.8-29.1-5.9-66.3 2.6-82.4 9.5-17.6 11-22.5 8.7-20.8-8.6 14-22 36.3-27.2 59.2-2.7 11.9-3.2 24 .3 35.2 3.5 11.2 11.1 21.5 24.6 29.9 0 0 24.8 14.3 38.3 32.5 7.4 10 9.7 18.7 7.4 24.9-2.5 6.7-9.6 8.9-16.7 8.9 4.8 6 10.3 13 14.4 19.6 37.6 25.7 82.2 15.7 114.3-7.2zM415 408.5c-10-11.3-7.2-33.1-17.1-41.6-6.9-6-13.6-5.4-22.6-5.1-7.7 8.8-25.8 19.6-38.4 16.3-11.5-2.9-18-16.3-18.8-29.5-.3.2-.7.3-1 .5-7.1 3.9-11.1 10.8-13.7 21.1-2.5 10.2-3.4 23.5-4.2 38.7-.7 11.8-6.2 26.4-9.9 40.6-3.5 13.2-5.8 25.2-1.1 36.3 7.2 14.5 19.5 20.4 33.7 19.3 14.2-1.1 30.4-9.8 43.6-25.5 22-26.6 62.3-29.7 63.2-46.5.3-5.1-3.1-13-13.7-24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4 3.9-3.4 5.9-6.3 3.1-6.6-2.8-.3-2.6 2.6-6 5.1-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2-10.4 0-18.7-4.8-24.9-9.7-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z"] }; +var faLyft = { prefix: 'fab', iconName: 'lyft', icon: [512, 512, [], "f3c3", "M0 81.1h77.8v208.7c0 33.1 15 52.8 27.2 61-12.7 11.1-51.2 20.9-80.2-2.8C7.8 334 0 310.7 0 289V81.1zm485.9 173.5v-22h23.8v-76.8h-26.1c-10.1-46.3-51.2-80.7-100.3-80.7-56.6 0-102.7 46-102.7 102.7V357c16 2.3 35.4-.3 51.7-14 17.1-14 24.8-37.2 24.8-59v-6.7h38.8v-76.8h-38.8v-23.3c0-34.6 52.2-34.6 52.2 0v77.1c0 56.6 46 102.7 102.7 102.7v-76.5c-14.5 0-26.1-11.7-26.1-25.9zm-294.3-99v113c0 15.4-23.8 15.4-23.8 0v-113H91v132.7c0 23.8 8 54 45 63.9 37 9.8 58.2-10.6 58.2-10.6-2.1 13.4-14.5 23.3-34.9 25.3-15.5 1.6-35.2-3.6-45-7.8v70.3c25.1 7.5 51.5 9.8 77.6 4.7 47.1-9.1 76.8-48.4 76.8-100.8V155.1h-77.1v.5z"] }; +var faMagento = { prefix: 'fab', iconName: 'magento', icon: [448, 512, [], "f3c4", "M445.7 127.9V384l-63.4 36.5V164.7L223.8 73.1 65.2 164.7l.4 255.9L2.3 384V128.1L224.2 0l221.5 127.9zM255.6 420.5L224 438.9l-31.8-18.2v-256l-63.3 36.6.1 255.9 94.9 54.9 95.1-54.9v-256l-63.4-36.6v255.9z"] }; +var faMailchimp = { prefix: 'fab', iconName: 'mailchimp', icon: [428, 512, [], "f59e", "M426.56 323.72c-3.09-6.59-8.97-11.13-16.35-12.88-2.47-11.27-5.88-16.8-6.19-17.63 1.3-1.48 2.56-2.97 2.84-3.32 10.42-12.93 3.62-31.86-14.19-36.33-10.02-9.64-19.09-14.17-26.54-17.9-7.14-3.57-4.29-2.17-10.99-5.19-1.78-8.71-2.37-28.97-5.2-43.19-2.54-12.79-7.66-22.06-15.56-28.15-3.16-6.84-7.59-13.74-12.93-18.81 24.84-38.08 31.38-75.69 13.19-95.39-8.1-8.77-20.13-12.93-34.52-12.93-20.26 0-45.18 8.26-70.34 23.54 0 0-16.38-13.18-16.73-13.46-70.08-55.19-268.28 188.7-198.32 242l18.06 13.8c-11.34 31.54 4.43 69.14 37.29 81.21 7.26 2.67 15.14 3.97 23.31 3.51 0 0 53.09 97.36 165.1 97.39 129.58.04 162.55-126.72 162.9-127.86 0 .01 10.5-15.51 5.17-28.41zM20.12 267.95c-14.2-23.96 10.51-73.19 28.09-101.17C91.66 97.63 163.98 43.06 196.82 50.85l9.03-3.46c.03.03 24.67 20.85 24.7 20.87 16.97-10.19 38.58-20.57 58.8-22.64-12.3 2.77-27.29 9.15-45.05 20.01-.43.25-42.02 28.32-67.43 53.52-13.85 13.73-69.45 80.41-69.4 80.35 10.16-19.23 16.86-28.67 32.94-48.9 9.1-11.44 18.81-22.57 28.74-32.84 4.61-4.77 9.28-9.36 13.95-13.71 3.21-2.99 6.44-5.87 9.65-8.62 1.48-1.27 2.96-2.5 4.43-3.71l.01-.01L164.6 64.8l1.72 12.06 23.69 20.87s-20.96 14.11-31.39 23.01c-41.79 35.66-82.8 90.4-98.06 143.69l.73-.03c-7.6 4.19-15.14 10.91-21.73 20.05-.16-.04-17.04-12.43-19.44-16.5zm69.11 100.09c-25.03 0-45.33-21.37-45.33-47.72 0-26.36 20.29-47.72 45.33-47.72 6.49 0 12.66 1.44 18.24 4.02 0 0 9.63 4.86 12.34 27.81 2.82-7.17 4.24-13.06 4.24-13.06 3.23 9.88 4.88 20.26 4.23 30.76 2.68-3.56 5.55-10.27 5.55-10.27 5 29.33-16.4 56.18-44.6 56.18zm55.8-168.53s19.49-37.06 62.33-61.57c-3.19-.51-10.99.48-12.36.64 7.78-6.69 22.24-11.16 32.23-13.19-2.92-1.86-9.89-2.33-13.34-2.42-1.02-.03-1.01-.02-2.22.03 9.4-5.25 26.82-8.34 42.65-5.55-1.99-2.64-6.5-4.57-9.67-5.51-.28-.08-1.52-.39-1.52-.39l1.19-.28c9.54-1.84 20.69.15 29.5 3.69-1-2.32-3.45-5.03-5.29-6.74-.19-.18-1.29-.97-1.29-.97 9.22 1.91 18.06 5.94 24.71 10.5-.9-1.75-3.14-4.69-4.69-6.29 8.81 2.52 18.71 8.81 22.95 17.82.1.2.37.94.4 1.03-16.7-12.84-65.44-9.2-114.24 22.42-22.33 14.48-38.71 30.32-51.34 46.78zm263.32 146.34c-.59 1.15-6.73 34.4-41.86 62.01-44.37 34.86-102.66 31.33-124.67 11.8-11.76-11-16.85-26.73-16.85-26.73s-1.33 8.87-1.56 12.35c-8.87-15.09-8.12-33.52-8.12-33.52s-4.73 8.83-6.9 13.77c-6.53-16.62-3.16-33.78-3.16-33.78l-5.16 7.7s-2.42-18.81 3.52-34.47c6.36-16.74 18.68-28.9 21.11-30.42-9.35-2.97-20.12-11.49-20.14-11.51 0 0 4.28.28 7.26-.4 0 0-18.9-13.54-22.22-34.26 2.74 3.38 8.49 7.21 8.49 7.21-1.86-5.42-2.99-17.49-1.25-29.36l.01-.01c3.58-22.68 22.27-37.45 43.44-37.27 22.54.2 37.65 4.93 56.55-12.5 4-3.69 7.19-6.87 12.81-8.11.59-.13 2.06-.75 5.07-.75 3.05 0 5.98.69 8.67 2.29 10.25 6.1 12.46 22.01 13.56 33.68 4.07 43.28 2.43 35.57 19.94 44.49 8.36 4.25 17.74 8.29 28.43 19.72.03.03.08.09.08.09h.13c9.01.22 13.65 7.31 9.5 12.47-30.23 36.1-72.46 53.39-119.51 54.84-1.94.05-6.32.15-6.34.15-19.01.58-25.19 25.16-13.27 39.95 7.54 9.35 22.03 12.42 33.97 12.46l.17-.06c51.45 1.04 103.14-35.37 112.07-55.44.06-.15.61-1.42.61-1.42-2.07 2.43-52.18 49.61-113.08 47.9 0 0-6.66-.14-12.93-1.6-8.27-1.92-14.55-5.56-16.95-13.8 5.05 1.01 11.45 1.66 18.87 1.66 43.96 0 75.63-19.98 72.33-20.25-.13 0-.26.03-.48.08-5.13 1.19-57.97 21.66-91.37 11.16.08-1.02.24-2.01.48-2.9 2.97-9.95 8.25-8.56 16.79-8.93 30.48-1.01 55.07-8.68 73.5-17.43 19.65-9.33 34.63-21.35 40.03-27.42 7 11.79 6.96 26.92 6.96 26.92s2.74-.96 6.38-.96c11.38.01 13.73 10.23 5.09 20.6zm-149.29 13.7c0-.05-.01-.1-.01-.15.01.05.01.1.01.15zm-.01-.21c-.01-.13-.01-.26-.02-.39-.02-.65-.03-1.33 0-2.02-.02.74-.02 1.42 0 2.02.01.13.01.27.02.39zm.12 1.46c0 .02 0 .04.01.06 0-.02 0-.04-.01-.06zm.02.12c.2 1.58.51 2.31.55 2.4-.23-.49-.42-1.34-.55-2.4zM193.96 59.68l2.87-8.83 4.88 17.72-6.03-1.95-1.72-6.94zm22.38 17.72l-3.62-12.59 9.97 8.36c-2.24 1.44-4.36 2.86-6.35 4.23zm42.71 281.94c-.01-.13-.01-.26-.02-.39.01.13.01.27.02.39zm-.01-.39c-.02-.65-.03-1.33 0-2.02-.03.75-.03 1.42 0 2.02zm.02.6c0-.05-.01-.1-.01-.15m.13 1.46c0-.02 0-.04-.01-.06m.02.12c.2 1.58.51 2.31.55 2.4-.23-.49-.42-1.34-.55-2.4zm52.1-138.61c-.07-3.36.47-8.92 3.63-9.95h.01c5.41-1.88 12.58 11.98 12.91 24.28-4.28-2.14-9.3-3.05-14.47-2.6-1.3-3.97-1.92-7.7-2.08-11.73zM205.38 85.27l-13.59-11.38 20.57 6.28c-2.65 1.88-5 3.6-6.98 5.1zm27.7 166.94c-3.41 1.3-5.83 2.31-7 2.14-1.89-.28-.06-3.75 4.08-7.11 8.33-6.64 19.76-8.7 29.53-5.07 4.28 1.57 9.08 4.72 11.6 8.39.95 1.39 1.21 2.44.82 2.88-.77.9-3.51-.31-7.55-1.89-10.35-3.86-17.98-4.45-31.48.66zm14.55 14.53c-2.31.94-3.81 1.66-4.42 1.17-.62-.48-.01-2.42 2.15-4.51 1.88-1.81 3.83-2.83 6.07-3.77.35-.15.72-.28 1.1-.38 1.04-.28 2.09-.63 3.23-.8 9.12-1.55 15.8 3.51 14.93 4.98-.39.69-2.08.53-4.6.36-5.23-.36-10.71-.27-18.46 2.95zM60.86 323.12zm24.3-25.78c-1.85.39-.81.17-2.64.68a7 7 0 0 0-.77.25c-.58.27-1.11.45-1.62.73-.43.24-4.07 1.86-7.03 5.48-3.99 4.95-5.44 11.43-5.19 17.67.24 6.06 2.02 9.41 2.35 10.23 1.38 2.96-1.85 3.57-4.79.39l-.01-.01c-2.35-2.49-3.86-6.29-4.6-9.66-2.98-13.95 3.24-27.97 17.61-33.57.8-.32 1.74-.51 2.5-.73h-.01c1.47-.44 6.72-1.5 12.07-.67 5.87.91 11.04 3.85 14.33 7.67l.01.01c2.53 2.87 4.43 6.92 4.09 10.53v.01c-.13 1.5-.79 3.65-2.14 4.21-.5.21-1.01.1-1.36-.25-.98-.96-.22-2.93-2.6-6.3-3.17-4.47-10.31-8.76-20.2-6.67zm30.28 31.17c1.88 10.82-6 20.5-15.52 20.7-6.67.15-10.31-4.02-9.66-4.93.3-.43 1.32-.24 2.88-.01 8.5 1.32 13.66-3.86 14.9-9.29.02-.09.35-1.54.34-2.54.07-.88-.03-1.76-.16-2.56-1-5.62-7.45-6.68-11.6-11.15-3.72-4.04-2.99-9.22-.65-11.71 2.81-2.77 6.83-1.76 6.78-.78 0 .52-.97.91-2.17 1.74-1.56 1.1-1.77 2.16-1.37 3.98.26 1 .71 1.65 1.68 2.42 3.48 2.76 12.85 4.7 14.55 14.13zm212.87-81.47c2.58.4 4.22 3.59 3.67 7.13-.55 3.54-3.09 6.08-5.67 5.67-2.58-.4-4.22-3.59-3.67-7.13.56-3.53 3.09-6.07 5.67-5.67zm-28.33 10.31c1.42-2.59 5.44-3.11 8.99-1.16 3.55 1.94 5.27 5.62 3.86 8.2-1.42 2.59-5.44 3.11-8.99 1.16-3.55-1.94-5.28-5.61-3.86-8.2z"] }; +var faMandalorian = { prefix: 'fab', iconName: 'mandalorian', icon: [390, 512, [], "f50f", "M203.28 511.89c-.98-3.26-1.69-15.83-1.39-24.58.55-15.89.98-24.72 1.4-28.76.64-6.2 2.87-20.72 3.28-21.38.6-.96.4-27.87-.24-33.13-.31-2.58-.63-11.9-.69-20.73-.13-16.47-.53-20.12-2.73-24.76-1.1-2.32-1.23-3.84-.99-11.43.16-4.81 0-10.53-.34-12.71-2.05-12.97-3.46-27.7-3.25-33.9.21-6.12.43-7.15 2.06-9.67 3.05-4.71 6.51-14.04 8.62-23.27 2.26-9.86 3.88-17.18 4.59-20.74.89-4.42 2.43-9.72 4.36-15.05 2.27-6.25 2.49-15.39.37-15.39-.3 0-1.38 1.22-2.41 2.71-1.03 1.49-4.76 4.8-8.29 7.36-8.37 6.08-11.7 9.39-12.66 12.58-.93 3.11-1.02 7.23-.16 7.76.34.21 1.29 2.4 2.11 4.88 1.62 4.88 1.87 10.12.72 15.36-.39 1.77-1.05 5.47-1.46 8.23-.41 2.76-.98 6.46-1.25 8.22-.28 1.76-.97 3.68-1.55 4.26-.96.96-1.14.91-2.05-.53-.55-.87-1.2-3.01-1.44-4.75-.25-1.74-1.63-7.11-3.08-11.93-3.28-10.9-3.52-16.15-.96-20.96.92-1.73 1.67-3.81 1.67-4.61 0-2.39-2.2-5.32-7.41-9.89-7.05-6.18-8.63-7.92-10.23-11.3-1.71-3.6-3.06-4.06-4.54-1.54-1.78 3.01-2.6 9.11-2.97 22.02l-.35 12.13 1.95 2.25c3.21 3.7 12.07 16.45 13.78 19.83 3.41 6.74 4.34 11.69 4.41 23.56.07 11.84.95 22.75 2 24.71.36.66.51 1.35.34 1.52-.17.17.41 2.09 1.29 4.27.88 2.18 1.81 6.22 2.06 8.98.25 2.76 1.02 7.43 1.71 10.37 2.23 9.56 2.77 14.08 2.39 20.14-.2 3.27-.53 11.07-.73 17.32-1.31 41.76-1.85 57.98-2.04 61.21-.12 2.02-.39 11.51-.6 21.07-.36 16.3-1.3 27.37-2.42 28.65-.64.73-8.07-4.91-12.52-9.49-3.75-3.87-4.02-4.79-2.83-9.95.7-3.01 2.26-18.29 3.33-32.62.36-4.78.81-10.5 1.01-12.71.83-9.37 1.66-20.35 2.61-34.78.56-8.46 1.33-16.44 1.72-17.73.38-1.29.89-9.89 1.13-19.11l.43-16.77-2.26-4.3c-1.72-3.28-4.87-6.94-13.22-15.34-6.03-6.07-11.84-12.3-12.91-13.85l-1.95-2.81.75-10.9c1.09-15.71 1.1-48.57.02-59.06l-.89-8.7-3.28-4.52c-5.86-8.08-5.8-7.75-6.22-33.27-.1-6.07-.38-11.5-.63-12.06-.83-1.87-3.05-2.66-8.54-3.05-8.86-.62-10.96-1.9-23.85-14.55-6.15-6.04-12.34-11.97-13.75-13.19-2.81-2.42-2.79-1.99-.56-9.63l1.35-4.65-1.69-3.04c-.93-1.67-2.09-3.51-2.59-4.07-1.33-1.51-5.5-10.89-5.99-13.49-.31-1.66-.09-2.67.87-3.9 2.23-2.86 3.4-5.68 4.45-10.73 2.33-11.19 7.74-26.09 10.6-29.22 3.18-3.47 7.7-1.05 9.41 5.03 1.34 4.79 1.37 9.79.1 18.55-.53 3.68-.98 8.68-.99 11.11-.02 4.01.19 4.69 2.25 7.39 3.33 4.37 7.73 7.41 15.2 10.52 1.7.71 3.82 1.99 4.72 2.85 11.17 10.72 18.62 16.18 22.95 16.85 5.18.8 7.98 4.54 10.04 13.39 1.31 5.65 4 11.14 5.46 11.14.59 0 2.09-.63 3.33-1.39 1.98-1.22 2.25-1.73 2.25-4.18-.01-3.71-1.17-14.08-2-17.84-.37-1.66-.78-4.06-.93-5.35-.14-1.29-.61-3.85-1.03-5.69-2.55-11.16-3.65-15.46-4.1-16.05-1.55-2.02-4.08-10.2-4.93-15.92-1.64-11.11-3.96-14.23-12.91-17.39-4.64-1.64-8.89-4.12-13.32-7.78-1.15-.95-4.01-3.22-6.35-5.06-2.35-1.83-4.41-3.53-4.6-3.76-.18-.23-1.39-1.14-2.69-2.02-6.24-4.22-8.84-6.98-11.26-11.96l-2.44-5.02-.22-12.98-.22-12.98 6.91-6.55c3.95-3.75 8.48-7.35 10.59-8.43 3.31-1.69 4.45-1.89 11.37-2.05 8.53-.19 10.12.02 11.66 1.56 1.53 1.53 1.36 6.4-.29 8.5-.74.94-1.34 1.98-1.34 2.32 0 .58-2.61 4.91-5.42 8.99-.68.99-2.13 5.35-2.37 6.82 20.44 13.39 21.55 3.77 14.07 28.98l11.4 2.54c3.11-8.66 6.47-17.26 8.61-26.22.29-7.63-11.98-4.19-15.4-8.68-2.33-5.93 3.13-14.18 6.06-19.2 1.6-2.34 6.62-4.7 8.82-4.15.88.22 4.16-.35 7.37-1.28 3.18-.92 6.58-1.68 7.55-1.68.97 0 3.66-.58 5.98-1.29 3.65-1.11 4.5-1.17 6.35-.4 1.17.48 3.79 1.09 5.82 1.36 2.02.26 4.72 1.12 6 1.91 1.28.79 3.53 1.77 5.02 2.17 2.51.68 3 .57 7.05-1.67l4.35-2.4 10.7-.41c10.44-.4 10.81-.47 15.26-2.68l4.58-2.3 2.46 1.43c1.76 1.02 3.14 2.73 4.85 5.98 2.36 4.51 2.38 4.58 1.37 7.37-.88 2.44-.89 3.3-.1 6.39.5 1.96 1.45 4.62 2.1 5.91.65 1.29 1.24 3.09 1.31 4.01.31 4.33-.03 5.3-2.41 6.92-2.17 1.47-6.98 7.91-6.98 9.34 0 .32-.48 1.69-1.07 3.03-5.04 11.51-6.76 13.56-14.26 16.98-9.2 4.2-12.3 5.19-16.21 5.19-3.1 0-4 .25-4.54 1.26-.37.69-2.21 2.37-4.09 3.71-2.04 1.47-3.8 3.38-4.38 4.78-.54 1.28-1.66 2.59-2.49 2.91-.83.32-1.94 1.08-2.45 1.71-.52.62-3.66 3.04-7 5.38-3.33 2.34-6.87 5.02-7.87 5.96-1 .94-2.07 1.71-2.39 1.71s-1.28.74-2.13 1.65c-1.31 1.39-1.49 2.11-1.14 4.6.22 1.63.86 4.27 1.42 5.88 1.32 3.8 1.31 7.86-.05 10.57-1.43 2.86-.89 6.65 1.35 9.59 2.01 2.63 2.16 4.56.71 8.84-.61 1.8-1.05 5.45-1.06 8.91-.02 4.88.22 6.28 1.46 8.38 1.2 2.04 1.82 2.48 3.24 2.32 1.98-.23 2.3-1.05 4.71-12.12 2.18-10.03 3.71-11.92 13.76-17.08 2.94-1.51 7.46-3.96 10.03-5.44 2.58-1.48 6.79-3.69 9.37-4.91 6.67-3.16 11.05-6.52 15.22-11.67 7.11-8.79 9.98-16.22 12.85-33.3.55-3.28 1.43-5.65 2.86-7.73 1.29-1.87 2.37-4.62 2.89-7.31 1.02-5.3 2.85-9.08 5.58-11.51 4.7-4.18 6-1.09 4.59 10.87-.46 3.86-1.1 10.33-1.44 14.38l-.61 7.36 4.45 4.09 4.45 4.09.11 8.42c.06 4.63.47 9.53.92 10.89l.82 2.47-6.43 6.28c-8.54 8.33-12.88 13.93-16.76 21.61-1.77 3.49-3.74 7.11-4.38 8.03-2.18 3.11-6.46 13.01-8.76 20.26l-2.29 7.22-6.97 6.49c-3.83 3.57-7.96 7.25-9.17 8.17-3.05 2.32-4.26 5.15-4.26 9.99 0 2.98.43 4.96 1.59 7.26.87 1.74 1.81 3.91 2.09 4.83.28.92.98 2.22 1.57 2.89 1.4 1.59 1.92 16.12.83 23.22-.68 4.48-3.63 12.02-4.7 12.02-1.79 0-4.06 9.27-5.07 20.74-.18 2.02-.62 5.94-.98 8.7-.36 2.76-.96 9.98-1.35 16.05-.77 12.22-.19 18.77 2.05 23.15 3.41 6.69.52 12.69-11.03 22.84l-3.97 3.49.07 5.19c.04 2.86.55 6.85 1.14 8.87 4.61 15.98 4.73 16.92 4.38 37.13-.46 26.4-.26 40.27.63 44.15.42 1.84.91 5 1.08 7.02.17 2.02.66 5.33 1.08 7.36.47 2.26.78 11.02.79 22.74l.02 19.06-1.81 2.63c-2.71 3.91-15.11 13.54-15.49 12.29zm29.53-45.11c-.18-.3-.33-6.87-.33-14.59 0-14.06-.89-27.54-2.26-34.45-.4-2.02-.81-9.7-.9-17.06-.15-11.93-1.4-24.37-2.64-26.38-.66-1.07-3.02-17.66-3.03-21.3-.01-4.23 1.02-6 5.28-9.13 4.14-3.04 4.86-3.14 5.48-.72.28 1.1 1.45 5.62 2.6 10.03 3.93 15.12 4.14 16.27 4.05 21.74-.1 5.78-.13 6.13-1.74 17.73-.98 7.07-1.17 12.39-1.04 28.43.17 19.4-.64 35.73-2.04 41.27-.71 2.78-2.8 5.48-3.43 4.43zm-70.99-37.58c-.24-.38-1.01-5.24-1.73-10.79-.72-5.56-1.49-10.41-1.73-10.79-.23-.38-.68-3.3-.99-6.49-.31-3.19-.91-7.46-1.33-9.48-.99-4.79-3.35-19.35-3.42-21.07-.03-.74-.34-4.05-.7-7.36-.67-6.21-.84-27.67-.22-28.29.96-.96 6.63 2.76 11.33 7.43l5.28 5.25-.45 6.47c-.25 3.56-.6 10.23-.78 14.83-.18 4.6-.49 9.87-.67 11.71-.18 1.84-.61 9.36-.94 16.72-.79 17.41-1.94 31.29-2.65 32-.32.3-.76.24-1-.14zM74.63 162.61c21.07 12.79 17.84 14.15 28.49 17.66 13.01 4.29 18.87 7.13 23.15 16.87-43.66 36.14-69.01 57.9-76.71 70.82-31.02 52.01-5.99 101.59 62.75 87.21-14.18 29.23-77.97 28.63-98.68-4.9-24.68-39.95-22.09-118.3 61-187.66zm210.79 179.02c56.66 6.88 82.32-37.74 46.54-89.23 0 0-26.87-29.34-64.28-67.96 2.98-15.45 9.49-32.12 30.57-53.82 89.2 63.51 92 141.61 92.46 149.36 4.27 70.58-78.66 91.12-105.29 61.65z"] }; +var faMastodon = { prefix: 'fab', iconName: 'mastodon', icon: [417, 512, [], "f4f6", "M417.8 179.1c0-97.2-63.7-125.7-63.7-125.7-62.5-28.7-228.5-28.4-290.4 0 0 0-63.7 28.5-63.7 125.7 0 115.7-6.6 259.4 105.6 289.1 40.5 10.7 75.3 13 103.3 11.4 50.8-2.8 79.3-18.1 79.3-18.1l-1.7-36.9s-36.3 11.4-77.1 10.1c-40.4-1.4-83-4.4-89.6-54-.6-4.4-.9-9-.9-13.9 85.6 20.9 158.6 9.1 178.7 6.7 56.1-6.7 105-41.3 111.2-72.9 9.8-49.8 9-121.5 9-121.5zm-75.1 125.2h-46.6V190.1c0-49.7-64-51.6-64 6.9v62.5h-46.3V197c0-58.5-64-56.6-64-6.9v114.2H75.1c0-122.1-5.2-147.9 18.4-175 25.9-28.9 79.8-30.8 103.8 6.1l11.6 19.5 11.6-19.5c24.1-37.1 78.1-34.8 103.8-6.1 23.7 27.3 18.4 53 18.4 175z"] }; +var faMaxcdn = { prefix: 'fab', iconName: 'maxcdn', icon: [512, 512, [], "f136", "M461.1 442.7h-97.4L415.6 200c2.3-10.2.9-19.5-4.4-25.7-5-6.1-13.7-9.6-24.2-9.6h-49.3l-59.5 278h-97.4l59.5-278h-83.4l-59.5 278H0l59.5-278-44.6-95.4H387c39.4 0 75.3 16.3 98.3 44.9 23.3 28.6 31.8 67.4 23.6 105.9l-47.8 222.6z"] }; +var faMedapps = { prefix: 'fab', iconName: 'medapps', icon: [320, 512, [], "f3c6", "M118.3 238.4c3.5-12.5 6.9-33.6 13.2-33.6 8.3 1.8 9.6 23.4 18.6 36.6 4.6-23.5 5.3-85.1 14.1-86.7 9-.7 19.7 66.5 22 77.5 9.9 4.1 48.9 6.6 48.9 6.6 1.9 7.3-24 7.6-40 7.8-4.6 14.8-5.4 27.7-11.4 28-4.7.2-8.2-28.8-17.5-49.6l-9.4 65.5c-4.4 13-15.5-22.5-21.9-39.3-3.3-.1-62.4-1.6-47.6-7.8l31-5zM228 448c21.2 0 21.2-32 0-32H92c-21.2 0-21.2 32 0 32h136zm-24 64c21.2 0 21.2-32 0-32h-88c-21.2 0-21.2 32 0 32h88zm34.2-141.5c3.2-18.9 5.2-36.4 11.9-48.8 7.9-14.7 16.1-28.1 24-41 24.6-40.4 45.9-75.2 45.9-125.5C320 69.6 248.2 0 160 0S0 69.6 0 155.2c0 50.2 21.3 85.1 45.9 125.5 7.9 12.9 16 26.3 24 41 6.7 12.5 8.7 29.8 11.9 48.9 3.5 21 36.1 15.7 32.6-5.1-3.6-21.7-5.6-40.7-15.3-58.6C66.5 246.5 33 211.3 33 155.2 33 87.3 90 32 160 32s127 55.3 127 123.2c0 56.1-33.5 91.3-66.1 151.6-9.7 18-11.7 37.4-15.3 58.6-3.4 20.6 29 26.4 32.6 5.1z"] }; +var faMedium = { prefix: 'fab', iconName: 'medium', icon: [448, 512, [], "f23a", "M0 32v448h448V32H0zm372.2 106.1l-24 23c-2.1 1.6-3.1 4.2-2.7 6.7v169.3c-.4 2.6.6 5.2 2.7 6.7l23.5 23v5.1h-118V367l24.3-23.6c2.4-2.4 2.4-3.1 2.4-6.7V199.8l-67.6 171.6h-9.1L125 199.8v115c-.7 4.8 1 9.7 4.4 13.2l31.6 38.3v5.1H71.2v-5.1l31.6-38.3c3.4-3.5 4.9-8.4 4.1-13.2v-133c.4-3.7-1-7.3-3.8-9.8L75 138.1V133h87.3l67.4 148L289 133.1h83.2v5z"] }; +var faMediumM = { prefix: 'fab', iconName: 'medium-m', icon: [512, 512, [], "f3c7", "M71.5 142.3c.6-5.9-1.7-11.8-6.1-15.8L20.3 72.1V64h140.2l108.4 237.7L364.2 64h133.7v8.1l-38.6 37c-3.3 2.5-5 6.7-4.3 10.8v272c-.7 4.1 1 8.3 4.3 10.8l37.7 37v8.1H307.3v-8.1l39.1-37.9c3.8-3.8 3.8-5 3.8-10.8V171.2L241.5 447.1h-14.7L100.4 171.2v184.9c-1.1 7.8 1.5 15.6 7 21.2l50.8 61.6v8.1h-144v-8L65 377.3c5.4-5.6 7.9-13.5 6.5-21.2V142.3z"] }; +var faMedrt = { prefix: 'fab', iconName: 'medrt', icon: [544, 512, [], "f3c8", "M113.7 256c0 121.8 83.9 222.8 193.5 241.1-18.7 4.5-38.2 6.9-58.2 6.9C111.4 504 0 393 0 256S111.4 8 248.9 8c20.1 0 39.6 2.4 58.2 6.9C197.5 33.2 113.7 134.2 113.7 256m297.4 100.3c-77.7 55.4-179.6 47.5-240.4-14.6 5.5 14.1 12.7 27.7 21.7 40.5 61.6 88.2 182.4 109.3 269.7 47 87.3-62.3 108.1-184.3 46.5-272.6-9-12.9-19.3-24.3-30.5-34.2 37.4 78.8 10.7 178.5-67 233.9m-218.8-244c-1.4 1-2.7 2.1-4 3.1 64.3-17.8 135.9 4 178.9 60.5 35.7 47 42.9 106.6 24.4 158 56.7-56.2 67.6-142.1 22.3-201.8-50-65.5-149.1-74.4-221.6-19.8M296 224c-4.4 0-8-3.6-8-8v-40c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v40c0 4.4-3.6 8-8 8h-40c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h40c4.4 0 8 3.6 8 8v40c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-40c0-4.4 3.6-8 8-8h40c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-40z"] }; +var faMeetup = { prefix: 'fab', iconName: 'meetup', icon: [512, 512, [], "f2e0", "M99 414.3c1.1 5.7-2.3 11.1-8 12.3-5.4 1.1-10.9-2.3-12-8-1.1-5.4 2.3-11.1 7.7-12.3 5.4-1.2 11.1 2.3 12.3 8zm143.1 71.4c-6.3 4.6-8 13.4-3.7 20 4.6 6.6 13.4 8.3 20 3.7 6.3-4.6 8-13.4 3.4-20-4.2-6.5-13.1-8.3-19.7-3.7zm-86-462.3c6.3-1.4 10.3-7.7 8.9-14-1.1-6.6-7.4-10.6-13.7-9.1-6.3 1.4-10.3 7.7-9.1 14 1.4 6.6 7.6 10.6 13.9 9.1zM34.4 226.3c-10-6.9-23.7-4.3-30.6 6-6.9 10-4.3 24 5.7 30.9 10 7.1 23.7 4.6 30.6-5.7 6.9-10.4 4.3-24.1-5.7-31.2zm272-170.9c10.6-6.3 13.7-20 7.7-30.3-6.3-10.6-19.7-14-30-7.7s-13.7 20-7.4 30.6c6 10.3 19.4 13.7 29.7 7.4zm-191.1 58c7.7-5.4 9.4-16 4.3-23.7s-15.7-9.4-23.1-4.3c-7.7 5.4-9.4 16-4.3 23.7 5.1 7.8 15.6 9.5 23.1 4.3zm372.3 156c-7.4 1.7-12.3 9.1-10.6 16.9 1.4 7.4 8.9 12.3 16.3 10.6 7.4-1.4 12.3-8.9 10.6-16.6-1.5-7.4-8.9-12.3-16.3-10.9zm39.7-56.8c-1.1-5.7-6.6-9.1-12-8-5.7 1.1-9.1 6.9-8 12.6 1.1 5.4 6.6 9.1 12.3 8 5.4-1.5 9.1-6.9 7.7-12.6zM447 138.9c-8.6 6-10.6 17.7-4.9 26.3 5.7 8.6 17.4 10.6 26 4.9 8.3-6 10.3-17.7 4.6-26.3-5.7-8.7-17.4-10.9-25.7-4.9zm-6.3 139.4c26.3 43.1 15.1 100-26.3 129.1-17.4 12.3-37.1 17.7-56.9 17.1-12 47.1-69.4 64.6-105.1 32.6-1.1.9-2.6 1.7-3.7 2.9-39.1 27.1-92.3 17.4-119.4-22.3-9.7-14.3-14.6-30.6-15.1-46.9-65.4-10.9-90-94-41.1-139.7-28.3-46.9.6-107.4 53.4-114.9C151.6 70 234.1 38.6 290.1 82c67.4-22.3 136.3 29.4 130.9 101.1 41.1 12.6 52.8 66.9 19.7 95.2zm-70 74.3c-3.1-20.6-40.9-4.6-43.1-27.1-3.1-32 43.7-101.1 40-128-3.4-24-19.4-29.1-33.4-29.4-13.4-.3-16.9 2-21.4 4.6-2.9 1.7-6.6 4.9-11.7-.3-6.3-6-11.1-11.7-19.4-12.9-12.3-2-17.7 2-26.6 9.7-3.4 2.9-12 12.9-20 9.1-3.4-1.7-15.4-7.7-24-11.4-16.3-7.1-40 4.6-48.6 20-12.9 22.9-38 113.1-41.7 125.1-8.6 26.6 10.9 48.6 36.9 47.1 11.1-.6 18.3-4.6 25.4-17.4 4-7.4 41.7-107.7 44.6-112.6 2-3.4 8.9-8 14.6-5.1 5.7 3.1 6.9 9.4 6 15.1-1.1 9.7-28 70.9-28.9 77.7-3.4 22.9 26.9 26.6 38.6 4 3.7-7.1 45.7-92.6 49.4-98.3 4.3-6.3 7.4-8.3 11.7-8 3.1 0 8.3.9 7.1 10.9-1.4 9.4-35.1 72.3-38.9 87.7-4.6 20.6 6.6 41.4 24.9 50.6 11.4 5.7 62.5 15.7 58.5-11.1zm5.7 92.3c-10.3 7.4-12.9 22-5.7 32.6 7.1 10.6 21.4 13.1 32 6 10.6-7.4 13.1-22 6-32.6-7.4-10.6-21.7-13.5-32.3-6z"] }; +var faMegaport = { prefix: 'fab', iconName: 'megaport', icon: [496, 512, [], "f5a3", "M248 8C111.04 8 0 119.04 0 256c0 136.97 111.04 248 248 248 136.96 0 248-111.03 248-248C496 119.04 384.96 8 248 8zm85.46 267.67l59.66 59.67v87.05l-26.07 19.23L341 422.39v-65.46l-33.44-33.44-33.44 33.44v65.46L248 441.62l-26.12-19.23v-65.46l-33.44-33.44L155 356.92v65.46l-26.07 19.23-26.06-19.23v-87.05l59.47-59.47V188l59.5-59.5V52.88l26.06-19.23 26.06 19.23v75.64l59.5 59.5m-85.56-11.86l33.44 33.44V276L248 309.33l-33.54-33.54v-66.2l33.44-33.43z"] }; +var faMicrosoft = { prefix: 'fab', iconName: 'microsoft', icon: [448, 512, [], "f3ca", "M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z"] }; +var faMix = { prefix: 'fab', iconName: 'mix', icon: [448, 512, [], "f3cb", "M0 64v348.9c0 56.2 88 58.1 88 0V174.3c7.9-52.9 88-50.4 88 6.5v175.3c0 57.9 96 58 96 0V240c5.3-54.7 88-52.5 88 4.3v23.8c0 59.9 88 56.6 88 0V64H0z"] }; +var faMixcloud = { prefix: 'fab', iconName: 'mixcloud', icon: [640, 512, [], "f289", "M424.43 219.729C416.124 134.727 344.135 68 256.919 68c-72.266 0-136.224 46.516-159.205 114.074-54.545 8.029-96.63 54.822-96.63 111.582 0 62.298 50.668 112.966 113.243 112.966h289.614c52.329 0 94.969-42.362 94.969-94.693 0-45.131-32.118-83.063-74.48-92.2zm-20.489 144.53H114.327c-39.04 0-70.881-31.564-70.881-70.604s31.841-70.604 70.881-70.604c18.827 0 36.548 7.475 49.838 20.766 19.963 19.963 50.133-10.227 30.18-30.18-14.675-14.398-32.672-24.365-52.053-29.349 19.935-44.3 64.79-73.926 114.628-73.926 69.496 0 125.979 56.483 125.979 125.702 0 13.568-2.215 26.857-6.369 39.594-8.943 27.517 32.133 38.939 40.147 13.29 2.769-8.306 4.984-16.889 6.369-25.472 19.381 7.476 33.502 26.303 33.502 48.453 0 28.795-23.535 52.33-52.607 52.33zm235.069-52.33c0 44.024-12.737 86.386-37.102 122.657-4.153 6.092-10.798 9.414-17.72 9.414-16.317 0-27.127-18.826-17.443-32.949 19.381-29.349 29.903-63.682 29.903-99.122s-10.521-69.773-29.903-98.845c-15.655-22.831 19.361-47.24 35.163-23.534 24.366 35.993 37.102 78.356 37.102 122.379zm-70.88 0c0 31.565-9.137 62.021-26.857 88.325-4.153 6.091-10.798 9.136-17.72 9.136-17.201 0-27.022-18.979-17.443-32.948 13.013-19.104 19.658-41.255 19.658-64.513 0-22.981-6.645-45.408-19.658-64.512-15.761-22.986 19.008-47.095 35.163-23.535 17.719 26.026 26.857 56.483 26.857 88.047z"] }; +var faMizuni = { prefix: 'fab', iconName: 'mizuni', icon: [496, 512, [], "f3cc", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm-80 351.9c-31.4 10.6-58.8 27.3-80 48.2V136c0-22.1 17.9-40 40-40s40 17.9 40 40v223.9zm120-9.9c-12.9-2-26.2-3.1-39.8-3.1-13.8 0-27.2 1.1-40.2 3.1V136c0-22.1 17.9-40 40-40s40 17.9 40 40v214zm120 57.7c-21.2-20.8-48.6-37.4-80-48V136c0-22.1 17.9-40 40-40s40 17.9 40 40v271.7z"] }; +var faModx = { prefix: 'fab', iconName: 'modx', icon: [448, 512, [], "f285", "M356 241.8l36.7 23.7V480l-133-83.8L356 241.8zM440 75H226.3l-23 37.8 153.5 96.5L440 75zm-89 142.8L55.2 32v214.5l46 29L351 217.8zM97 294.2L8 437h213.7l125-200.5L97 294.2z"] }; +var faMonero = { prefix: 'fab', iconName: 'monero', icon: [496, 512, [], "f3d0", "M352 384h108.4C417 455.9 338.1 504 248 504S79 455.9 35.6 384H144V256.2L248 361l104-105v128zM88 336V128l159.4 159.4L408 128v208h74.8c8.5-25.1 13.2-52 13.2-80C496 119 385 8 248 8S0 119 0 256c0 28 4.6 54.9 13.2 80H88z"] }; +var faNapster = { prefix: 'fab', iconName: 'napster', icon: [496, 512, [], "f3d2", "M298.3 373.6c-14.2 13.6-31.3 24.1-50.4 30.5-19-6.4-36.2-16.9-50.3-30.5h100.7zm44-199.6c20-16.9 43.6-29.2 69.6-36.2V299c0 219.4-328 217.6-328 .3V137.7c25.9 6.9 49.6 19.6 69.5 36.4 56.8-40 132.5-39.9 188.9-.1zm-208.8-58.5c64.4-60 164.3-60.1 228.9-.2-7.1 3.5-13.9 7.3-20.6 11.5-58.7-30.5-129.2-30.4-187.9.1-6.3-4-13.9-8.2-20.4-11.4zM43.8 93.2v69.3c-58.4 36.5-58.4 121.1.1 158.3 26.4 245.1 381.7 240.3 407.6 1.5l.3-1.7c58.7-36.3 58.9-121.7.2-158.2V93.2c-17.3.5-34 3-50.1 7.4-82-91.5-225.5-91.5-307.5.1-16.3-4.4-33.1-7-50.6-7.5zM259.2 352s36-.3 61.3-1.5c10.2-.5 21.1-4 25.5-6.5 26.3-15.1 25.4-39.2 26.2-47.4-79.5-.6-99.9-3.9-113 55.4zm-135.5-55.3c.8 8.2-.1 32.3 26.2 47.4 4.4 2.5 15.2 6 25.5 6.5 25.3 1.1 61.3 1.5 61.3 1.5-13.2-59.4-33.7-56.1-113-55.4zm169.1 123.4c-3.2-5.3-6.9-7.3-6.9-7.3-24.8 7.3-52.2 6.9-75.9 0 0 0-2.9 1.5-6.4 6.6-2.8 4.1-3.7 9.6-3.7 9.6 29.1 17.6 67.1 17.6 96.2 0-.1-.1-.3-4-3.3-8.9z"] }; +var faNimblr = { prefix: 'fab', iconName: 'nimblr', icon: [355, 512, [], "f5a8", "M232.6 299.29c15.57 0 27.15 11.46 27.15 26.96 0 15.55-11.62 26.96-27.15 26.96-15.7 0-27.15-11.57-27.15-26.96 0-15.51 11.58-26.96 27.15-26.96zM99.01 326.25c0-15.61 11.68-26.96 27.15-26.96 15.57 0 27.15 11.46 27.15 26.96 0 15.41-11.47 26.96-27.15 26.96-15.44 0-27.15-11.31-27.15-26.96m78.75-167.3C143 158.95 75.45 178.77 45.25 227L0 0v335.48C0 433.13 79.61 512 177.76 512c98.24 0 177.76-78.95 177.76-176.52 0-97.46-79.39-176.53-177.76-176.53zm0 308.12c-73.27 0-132.51-58.9-132.51-131.59 0-72.68 59.24-131.59 132.51-131.59 73.27 0 132.51 58.91 132.51 131.59s-59.25 131.59-132.51 131.59z"] }; +var faNintendoSwitch = { prefix: 'fab', iconName: 'nintendo-switch', icon: [448, 512, [], "f418", "M95.9 33.5c-44.6 8-80.5 41-91.8 84.4C0 133.6-.3 142.8.2 264.4.4 376 .5 378.6 2.4 387.3c10.3 46.5 43.3 79.6 90.3 90.5 6.1 1.4 13.9 1.7 64.1 1.9 51.9.4 57.3.3 58.7-1.1 1.4-1.4 1.5-19.3 1.5-222.2 0-150.5-.3-221.3-.9-222.6-.9-1.7-2.5-1.8-56.9-1.7-44.2.1-57.5.4-63.3 1.4zm83.9 222.6V444l-37.8-.5c-34.8-.4-38.5-.6-45.5-2.3-29.9-7.7-52-30.7-58.3-60.7-2-9.4-2-240.1-.1-249.3 5.6-26.1 23.7-47.7 48-57.4 12.2-4.9 17.9-5.5 57.6-5.6l35.9-.1v188zm-75.9-131.2c-5.8 1.1-14.7 5.6-19.5 9.7-9.7 8.4-14.6 20.4-13.8 34.5.4 7.3.8 9.3 3.8 15.2 4.4 9 10.9 15.6 19.9 20 6.2 3.1 7.8 3.4 15.9 3.7 7.3.3 9.9 0 14.8-1.7 20.1-6.8 32.3-26.3 28.8-46.4-3.9-23.7-26.6-39.7-49.9-35zm158.2-92.3c-.4.3-.6 100.8-.6 223.5 0 202.3.1 222.8 1.5 223.4 2.5.9 74.5.6 83.4-.4 37.7-4.3 71-27.2 89-61.2 2.3-4.4 5.4-11.7 7-16.2 5.8-17.4 5.7-12.8 5.7-146.1 0-106.4-.2-122.3-1.5-129-9.2-48.3-46.1-84.8-94.5-93.1-6.5-1.1-16.5-1.4-48.8-1.4-22.4-.1-40.9.2-41.2.5zm99.1 202.1c14.5 3.8 26.3 14.8 31.2 28.9 3.1 8.7 3 21.5-.1 29.5-5.7 14.7-16.8 25-31.1 28.8-23.2 6-47.9-8-54.6-31-2-7-1.9-18.9.4-26.2 6.9-22.7 31-36.1 54.2-30z"] }; +var faNode = { prefix: 'fab', iconName: 'node', icon: [640, 512, [], "f419", "M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4.1l14.8 8.8c.5.3 1.3.3 1.8 0L375 408c.5-.3.9-.9.9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6.3-.9 1-.9 1.6v66.7c0 .6.4 1.2.9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9.7-1.7 1.7-1.7h7.3c.9 0 1.7.7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7zm46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6.2.8.8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5.3-.4.5-.8.4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7.7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8zm54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1zm-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3 0 5.2 4.2 9.4 9.3 9.4 5.2-.1 9.4-4.3 9.4-9.4zm-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7.1 1.8 1.2 2.1 2.8.1 1 .3 2.7.6 3.3zm-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8zM137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3.4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3.7 2.5 1.8 3.2 1.1.7 2.5.7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1 1.3 0 2.6.3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1.7 2.6.7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2l.2-95zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4zm-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6.3-.9.9-.9 1.6v24.3c0 .7.4 1.3.9 1.6l21 12.1c.6.3 1.3.3 1.8 0l21-12.1c.6-.3.9-.9.9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3.7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1.7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2l36.7-21.3zM559 219c-.4.3-.7.7-.7 1.2v13.6c0 .5.3 1 .7 1.2l11.8 6.8c.4.3 1 .3 1.4 0L584 235c.4-.3.7-.7.7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0L559 219zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7.1-.5.2-1.1.2-1.7zm-74.3-124.9l-.8.5h1.1l-.3-.5zm76.2 130.2l-.4-.7v.9l.4-.2z"] }; +var faNodeJs = { prefix: 'fab', iconName: 'node-js', icon: [448, 512, [], "f3d3", "M224 508c-6.7 0-13.5-1.8-19.4-5.2l-61.7-36.5c-9.2-5.2-4.7-7-1.7-8 12.3-4.3 14.8-5.2 27.9-12.7 1.4-.8 3.2-.5 4.6.4l47.4 28.1c1.7 1 4.1 1 5.7 0l184.7-106.6c1.7-1 2.8-3 2.8-5V149.3c0-2.1-1.1-4-2.9-5.1L226.8 37.7c-1.7-1-4-1-5.7 0L36.6 144.3c-1.8 1-2.9 3-2.9 5.1v213.1c0 2 1.1 4 2.9 4.9l50.6 29.2c27.5 13.7 44.3-2.4 44.3-18.7V167.5c0-3 2.4-5.3 5.4-5.3h23.4c2.9 0 5.4 2.3 5.4 5.3V378c0 36.6-20 57.6-54.7 57.6-10.7 0-19.1 0-42.5-11.6l-48.4-27.9C8.1 389.2.7 376.3.7 362.4V149.3c0-13.8 7.4-26.8 19.4-33.7L204.6 9c11.7-6.6 27.2-6.6 38.8 0l184.7 106.7c12 6.9 19.4 19.8 19.4 33.7v213.1c0 13.8-7.4 26.7-19.4 33.7L243.4 502.8c-5.9 3.4-12.6 5.2-19.4 5.2zm149.1-210.1c0-39.9-27-50.5-83.7-58-57.4-7.6-63.2-11.5-63.2-24.9 0-11.1 4.9-25.9 47.4-25.9 37.9 0 51.9 8.2 57.7 33.8.5 2.4 2.7 4.2 5.2 4.2h24c1.5 0 2.9-.6 3.9-1.7s1.5-2.6 1.4-4.1c-3.7-44.1-33-64.6-92.2-64.6-52.7 0-84.1 22.2-84.1 59.5 0 40.4 31.3 51.6 81.8 56.6 60.5 5.9 65.2 14.8 65.2 26.7 0 20.6-16.6 29.4-55.5 29.4-48.9 0-59.6-12.3-63.2-36.6-.4-2.6-2.6-4.5-5.3-4.5h-23.9c-3 0-5.3 2.4-5.3 5.3 0 31.1 16.9 68.2 97.8 68.2 58.4-.1 92-23.2 92-63.4z"] }; +var faNpm = { prefix: 'fab', iconName: 'npm', icon: [576, 512, [], "f3d4", "M288 288h-32v-64h32v64zm288-128v192H288v32H160v-32H0V160h576zm-416 32H32v128h64v-96h32v96h32V192zm160 0H192v160h64v-32h64V192zm224 0H352v128h64v-96h32v96h32v-96h32v96h32V192z"] }; +var faNs8 = { prefix: 'fab', iconName: 'ns8', icon: [640, 512, [], "f3d5", "M187.1 159.9l-34.2 113.7-54.5-113.7H49L0 320h44.9L76 213.5 126.6 320h56.9L232 159.9h-44.9zm452.5-.9c-2.9-18-23.9-28.1-42.1-31.3-44.6-7.8-101.9 16.3-88.5 58.8v.1c-43.8 8.7-74.3 26.8-94.2 48.2-3-9.8-13.6-16.6-34-16.6h-87.6c-9.3 0-12.9-2.3-11.5-7.4 1.6-5.5 1.9-6.8 3.7-12.2 2.1-6.4 7.8-7.1 13.3-7.1h133.5l9.7-31.5c-139.7 0-144.5-.5-160.1 1.2-12.3 1.3-23.5 4.8-30.6 15-6.8 9.9-14.4 35.6-17.6 47.1-5.4 19.4-.6 28.6 32.8 28.6h87.3c7.8 0 8.8 2.7 7.7 6.6-1.1 4.4-2.8 10-4.5 14.6-1.6 4.2-4.7 7.4-13.8 7.4H216.3L204.7 320c139.9 0 145.3-.6 160.9-2.3 6.6-.7 13-2.1 18.5-4.9.2 3.7.5 7.3 1.2 10.8 5.4 30.5 27.4 52.3 56.8 59.5 48.6 11.9 108.7-16.8 135.1-68 18.7-36.2 14.1-76.2-3.4-105.5h.1c29.6-5.9 70.3-22 65.7-50.6zM530.7 263.7c-5.9 29.5-36.6 47.8-61.6 43.9-30.9-4.8-38.5-39.5-14.1-64.8 16.2-16.8 45.2-24 68.5-26.9 6.7 14.1 10.3 32 7.2 47.8zm21.8-83.1c-4.2-6-9.8-18.5-2.5-26.3 6.7-7.2 20.9-10.1 31.8-7.7 15.3 3.4 19.7 15.9 4.9 24.4-10.7 6.1-23.6 8.1-34.2 9.6z"] }; +var faNutritionix = { prefix: 'fab', iconName: 'nutritionix', icon: [400, 512, [], "f3d6", "M88 8.1S221.4-.1 209 112.5c0 0 19.1-74.9 103-40.6 0 0-17.7 74-88 56 0 0 14.6-54.6 66.1-56.6 0 0-39.9-10.3-82.1 48.8 0 0-19.8-94.5-93.6-99.7 0 0 75.2 19.4 77.6 107.5 0 .1-106.4 7-104-119.8zm312 315.6c0 48.5-9.7 95.3-32 132.3-42.2 30.9-105 48-168 48-62.9 0-125.8-17.1-168-48C9.7 419 0 372.2 0 323.7 0 275.3 17.7 229 40 192c42.2-30.9 97.1-48.6 160-48.6 63 0 117.8 17.6 160 48.6 22.3 37 40 83.3 40 131.7zM120 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM192 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM264 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM336 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm24-39.6c-4.8-22.3-7.4-36.9-16-56-38.8-19.9-90.5-32-144-32S94.8 180.1 56 200c-8.8 19.5-11.2 33.9-16 56 42.2-7.9 98.7-14.8 160-14.8s117.8 6.9 160 14.8z"] }; +var faOdnoklassniki = { prefix: 'fab', iconName: 'odnoklassniki', icon: [320, 512, [], "f263", "M275.1 334c-27.4 17.4-65.1 24.3-90 26.9l20.9 20.6 76.3 76.3c27.9 28.6-17.5 73.3-45.7 45.7-19.1-19.4-47.1-47.4-76.3-76.6L84 503.4c-28.2 27.5-73.6-17.6-45.4-45.7 19.4-19.4 47.1-47.4 76.3-76.3l20.6-20.6c-24.6-2.6-62.9-9.1-90.6-26.9-32.6-21-46.9-33.3-34.3-59 7.4-14.6 27.7-26.9 54.6-5.7 0 0 36.3 28.9 94.9 28.9s94.9-28.9 94.9-28.9c26.9-21.1 47.1-8.9 54.6 5.7 12.4 25.7-1.9 38-34.5 59.1zM30.3 129.7C30.3 58 88.6 0 160 0s129.7 58 129.7 129.7c0 71.4-58.3 129.4-129.7 129.4s-129.7-58-129.7-129.4zm66 0c0 35.1 28.6 63.7 63.7 63.7s63.7-28.6 63.7-63.7c0-35.4-28.6-64-63.7-64s-63.7 28.6-63.7 64z"] }; +var faOdnoklassnikiSquare = { prefix: 'fab', iconName: 'odnoklassniki-square', icon: [448, 512, [], "f264", "M184.2 177.1c0-22.1 17.9-40 39.8-40s39.8 17.9 39.8 40c0 22-17.9 39.8-39.8 39.8s-39.8-17.9-39.8-39.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-305.1 97.1c0 44.6 36.4 80.9 81.1 80.9s81.1-36.2 81.1-80.9c0-44.8-36.4-81.1-81.1-81.1s-81.1 36.2-81.1 81.1zm174.5 90.7c-4.6-9.1-17.3-16.8-34.1-3.6 0 0-22.7 18-59.3 18s-59.3-18-59.3-18c-16.8-13.2-29.5-5.5-34.1 3.6-7.9 16.1 1.1 23.7 21.4 37 17.3 11.1 41.2 15.2 56.6 16.8l-12.9 12.9c-18.2 18-35.5 35.5-47.7 47.7-17.6 17.6 10.7 45.8 28.4 28.6l47.7-47.9c18.2 18.2 35.7 35.7 47.7 47.9 17.6 17.2 46-10.7 28.6-28.6l-47.7-47.7-13-12.9c15.5-1.6 39.1-5.9 56.2-16.8 20.4-13.3 29.3-21 21.5-37z"] }; +var faOldRepublic = { prefix: 'fab', iconName: 'old-republic', icon: [496, 512, [], "f510", "M235.76 10.23c7.5-.31 15-.28 22.5-.09 3.61.14 7.2.4 10.79.73 4.92.27 9.79 1.03 14.67 1.62 2.93.43 5.83.98 8.75 1.46 7.9 1.33 15.67 3.28 23.39 5.4 12.24 3.47 24.19 7.92 35.76 13.21 26.56 12.24 50.94 29.21 71.63 49.88 20.03 20.09 36.72 43.55 48.89 69.19 1.13 2.59 2.44 5.1 3.47 7.74 2.81 6.43 5.39 12.97 7.58 19.63 4.14 12.33 7.34 24.99 9.42 37.83.57 3.14 1.04 6.3 1.4 9.47.55 3.83.94 7.69 1.18 11.56.83 8.34.84 16.73.77 25.1-.07 4.97-.26 9.94-.75 14.89-.24 3.38-.51 6.76-.98 10.12-.39 2.72-.63 5.46-1.11 8.17-.9 5.15-1.7 10.31-2.87 15.41-4.1 18.5-10.3 36.55-18.51 53.63-15.77 32.83-38.83 62.17-67.12 85.12a246.503 246.503 0 0 1-56.91 34.86c-6.21 2.68-12.46 5.25-18.87 7.41-3.51 1.16-7.01 2.38-10.57 3.39-6.62 1.88-13.29 3.64-20.04 5-4.66.91-9.34 1.73-14.03 2.48-5.25.66-10.5 1.44-15.79 1.74-6.69.66-13.41.84-20.12.81-6.82.03-13.65-.12-20.45-.79-3.29-.23-6.57-.5-9.83-.95-2.72-.39-5.46-.63-8.17-1.11-4.12-.72-8.25-1.37-12.35-2.22-4.25-.94-8.49-1.89-12.69-3.02-8.63-2.17-17.08-5.01-25.41-8.13-10.49-4.12-20.79-8.75-30.64-14.25-2.14-1.15-4.28-2.29-6.35-3.57-11.22-6.58-21.86-14.1-31.92-22.34-34.68-28.41-61.41-66.43-76.35-108.7-3.09-8.74-5.71-17.65-7.8-26.68-1.48-6.16-2.52-12.42-3.58-18.66-.4-2.35-.61-4.73-.95-7.09-.6-3.96-.75-7.96-1.17-11.94-.8-9.47-.71-18.99-.51-28.49.14-3.51.34-7.01.7-10.51.31-3.17.46-6.37.92-9.52.41-2.81.65-5.65 1.16-8.44.7-3.94 1.3-7.9 2.12-11.82 3.43-16.52 8.47-32.73 15.26-48.18 1.15-2.92 2.59-5.72 3.86-8.59 8.05-16.71 17.9-32.56 29.49-47.06 20-25.38 45.1-46.68 73.27-62.47 7.5-4.15 15.16-8.05 23.07-11.37 15.82-6.88 32.41-11.95 49.31-15.38 3.51-.67 7.04-1.24 10.56-1.85 2.62-.47 5.28-.7 7.91-1.08 3.53-.53 7.1-.68 10.65-1.04 2.46-.24 4.91-.36 7.36-.51m8.64 24.41c-9.23.1-18.43.99-27.57 2.23-7.3 1.08-14.53 2.6-21.71 4.3-13.91 3.5-27.48 8.34-40.46 14.42-10.46 4.99-20.59 10.7-30.18 17.22-4.18 2.92-8.4 5.8-12.34 9.03-5.08 3.97-9.98 8.17-14.68 12.59-2.51 2.24-4.81 4.7-7.22 7.06-28.22 28.79-48.44 65.39-57.5 104.69-2.04 8.44-3.54 17.02-4.44 25.65-1.1 8.89-1.44 17.85-1.41 26.8.11 7.14.38 14.28 1.22 21.37.62 7.12 1.87 14.16 3.2 21.18 1.07 4.65 2.03 9.32 3.33 13.91 6.29 23.38 16.5 45.7 30.07 65.75 8.64 12.98 18.78 24.93 29.98 35.77 16.28 15.82 35.05 29.04 55.34 39.22 7.28 3.52 14.66 6.87 22.27 9.63 5.04 1.76 10.06 3.57 15.22 4.98 11.26 3.23 22.77 5.6 34.39 7.06 2.91.29 5.81.61 8.72.9 13.82 1.08 27.74 1 41.54-.43 4.45-.6 8.92-.99 13.35-1.78 3.63-.67 7.28-1.25 10.87-2.1 4.13-.98 8.28-1.91 12.36-3.07 26.5-7.34 51.58-19.71 73.58-36.2 15.78-11.82 29.96-25.76 42.12-41.28 3.26-4.02 6.17-8.31 9.13-12.55 3.39-5.06 6.58-10.25 9.6-15.54 2.4-4.44 4.74-8.91 6.95-13.45 5.69-12.05 10.28-24.62 13.75-37.49 2.59-10.01 4.75-20.16 5.9-30.45 1.77-13.47 1.94-27.1 1.29-40.65-.29-3.89-.67-7.77-1-11.66-2.23-19.08-6.79-37.91-13.82-55.8-5.95-15.13-13.53-29.63-22.61-43.13-12.69-18.8-28.24-35.68-45.97-49.83-25.05-20-54.47-34.55-85.65-42.08-7.78-1.93-15.69-3.34-23.63-4.45-3.91-.59-7.85-.82-11.77-1.24-7.39-.57-14.81-.72-22.22-.58zM139.26 83.53c13.3-8.89 28.08-15.38 43.3-20.18-3.17 1.77-6.44 3.38-9.53 5.29-11.21 6.68-21.52 14.9-30.38 24.49-6.8 7.43-12.76 15.73-17.01 24.89-3.29 6.86-5.64 14.19-6.86 21.71-.93 4.85-1.3 9.81-1.17 14.75.13 13.66 4.44 27.08 11.29 38.82 5.92 10.22 13.63 19.33 22.36 27.26 4.85 4.36 10.24 8.09 14.95 12.6 2.26 2.19 4.49 4.42 6.43 6.91 2.62 3.31 4.89 6.99 5.99 11.1.9 3.02.66 6.2.69 9.31.02 4.1-.04 8.2.03 12.3.14 3.54-.02 7.09.11 10.63.08 2.38.02 4.76.05 7.14.16 5.77.06 11.53.15 17.3.11 2.91.02 5.82.13 8.74.03 1.63.13 3.28-.03 4.91-.91.12-1.82.18-2.73.16-10.99 0-21.88-2.63-31.95-6.93-6-2.7-11.81-5.89-17.09-9.83-5.75-4.19-11.09-8.96-15.79-14.31-6.53-7.24-11.98-15.39-16.62-23.95-1.07-2.03-2.24-4.02-3.18-6.12-1.16-2.64-2.62-5.14-3.67-7.82-4.05-9.68-6.57-19.94-8.08-30.31-.49-4.44-1.09-8.88-1.2-13.35-.7-15.73.84-31.55 4.67-46.82 2.12-8.15 4.77-16.18 8.31-23.83 6.32-14.2 15.34-27.18 26.3-38.19 6.28-6.2 13.13-11.84 20.53-16.67zm175.37-20.12c2.74.74 5.41 1.74 8.09 2.68 6.36 2.33 12.68 4.84 18.71 7.96 13.11 6.44 25.31 14.81 35.82 24.97 10.2 9.95 18.74 21.6 25.14 34.34 1.28 2.75 2.64 5.46 3.81 8.26 6.31 15.1 10 31.26 11.23 47.57.41 4.54.44 9.09.45 13.64.07 11.64-1.49 23.25-4.3 34.53-1.97 7.27-4.35 14.49-7.86 21.18-3.18 6.64-6.68 13.16-10.84 19.24-6.94 10.47-15.6 19.87-25.82 27.22-10.48 7.64-22.64 13.02-35.4 15.38-3.51.69-7.08 1.08-10.66 1.21-1.85.06-3.72.16-5.56-.1-.28-2.15 0-4.31-.01-6.46-.03-3.73.14-7.45.1-11.17.19-7.02.02-14.05.21-21.07.03-2.38-.03-4.76.03-7.14.17-5.07-.04-10.14.14-15.21.1-2.99-.24-6.04.51-8.96.66-2.5 1.78-4.86 3.09-7.08 4.46-7.31 11.06-12.96 17.68-18.26 5.38-4.18 10.47-8.77 15.02-13.84 7.68-8.37 14.17-17.88 18.78-28.27 2.5-5.93 4.52-12.1 5.55-18.46.86-4.37 1.06-8.83 1.01-13.27-.02-7.85-1.4-15.65-3.64-23.17-1.75-5.73-4.27-11.18-7.09-16.45-3.87-6.93-8.65-13.31-13.96-19.2-9.94-10.85-21.75-19.94-34.6-27.1-1.85-1.02-3.84-1.82-5.63-2.97zm-100.8 58.45c.98-1.18 1.99-2.33 3.12-3.38-.61.93-1.27 1.81-1.95 2.68-3.1 3.88-5.54 8.31-7.03 13.06-.87 3.27-1.68 6.6-1.73 10-.07 2.52-.08 5.07.32 7.57 1.13 7.63 4.33 14.85 8.77 21.12 2 2.7 4.25 5.27 6.92 7.33 1.62 1.27 3.53 2.09 5.34 3.05 3.11 1.68 6.32 3.23 9.07 5.48 2.67 2.09 4.55 5.33 4.4 8.79-.01 73.67 0 147.34-.01 221.02 0 1.35-.08 2.7.04 4.04.13 1.48.82 2.83 1.47 4.15.86 1.66 1.78 3.34 3.18 4.62.85.77 1.97 1.4 3.15 1.24 1.5-.2 2.66-1.35 3.45-2.57.96-1.51 1.68-3.16 2.28-4.85.76-2.13.44-4.42.54-6.63.14-4.03-.02-8.06.14-12.09.03-5.89.03-11.77.06-17.66.14-3.62.03-7.24.11-10.86.15-4.03-.02-8.06.14-12.09.03-5.99.03-11.98.07-17.97.14-3.62.02-7.24.11-10.86.14-3.93-.02-7.86.14-11.78.03-5.99.03-11.98.06-17.97.16-3.94-.01-7.88.19-11.82.29 1.44.13 2.92.22 4.38.19 3.61.42 7.23.76 10.84.32 3.44.44 6.89.86 10.32.37 3.1.51 6.22.95 9.31.57 4.09.87 8.21 1.54 12.29 1.46 9.04 2.83 18.11 5.09 26.99 1.13 4.82 2.4 9.61 4 14.3 2.54 7.9 5.72 15.67 10.31 22.62 1.73 2.64 3.87 4.98 6.1 7.21.27.25.55.51.88.71.6.25 1.31-.07 1.7-.57.71-.88 1.17-1.94 1.7-2.93 4.05-7.8 8.18-15.56 12.34-23.31.7-1.31 1.44-2.62 2.56-3.61 1.75-1.57 3.84-2.69 5.98-3.63 2.88-1.22 5.9-2.19 9.03-2.42 6.58-.62 13.11.75 19.56 1.85 3.69.58 7.4 1.17 11.13 1.41 3.74.1 7.48.05 11.21-.28 8.55-.92 16.99-2.96 24.94-6.25 5.3-2.24 10.46-4.83 15.31-7.93 11.46-7.21 21.46-16.57 30.04-27.01 1.17-1.42 2.25-2.9 3.46-4.28-1.2 3.24-2.67 6.37-4.16 9.48-1.25 2.9-2.84 5.61-4.27 8.42-5.16 9.63-11.02 18.91-17.75 27.52-4.03 5.21-8.53 10.05-13.33 14.57-6.64 6.05-14.07 11.37-22.43 14.76-8.21 3.37-17.31 4.63-26.09 3.29-3.56-.58-7.01-1.69-10.41-2.88-2.79-.97-5.39-2.38-8.03-3.69-3.43-1.71-6.64-3.81-9.71-6.08 2.71 3.06 5.69 5.86 8.7 8.61 4.27 3.76 8.74 7.31 13.63 10.23 3.98 2.45 8.29 4.4 12.84 5.51 1.46.37 2.96.46 4.45.6-1.25 1.1-2.63 2.04-3.99 2.98-9.61 6.54-20.01 11.86-30.69 16.43-20.86 8.7-43.17 13.97-65.74 15.34-4.66.24-9.32.36-13.98.36-4.98-.11-9.97-.13-14.92-.65-11.2-.76-22.29-2.73-33.17-5.43-10.35-2.71-20.55-6.12-30.3-10.55-8.71-3.86-17.12-8.42-24.99-13.79-1.83-1.31-3.74-2.53-5.37-4.08 6.6-1.19 13.03-3.39 18.99-6.48 5.74-2.86 10.99-6.66 15.63-11.07 2.24-2.19 4.29-4.59 6.19-7.09-3.43 2.13-6.93 4.15-10.62 5.78-4.41 2.16-9.07 3.77-13.81 5.02-5.73 1.52-11.74 1.73-17.61 1.14-8.13-.95-15.86-4.27-22.51-8.98-4.32-2.94-8.22-6.43-11.96-10.06-9.93-10.16-18.2-21.81-25.66-33.86-3.94-6.27-7.53-12.75-11.12-19.22-1.05-2.04-2.15-4.05-3.18-6.1 2.85 2.92 5.57 5.97 8.43 8.88 8.99 8.97 18.56 17.44 29.16 24.48 7.55 4.9 15.67 9.23 24.56 11.03 3.11.73 6.32.47 9.47.81 2.77.28 5.56.2 8.34.3 5.05.06 10.11.04 15.16-.16 3.65-.16 7.27-.66 10.89-1.09 2.07-.25 4.11-.71 6.14-1.2 3.88-.95 8.11-.96 11.83.61 4.76 1.85 8.44 5.64 11.38 9.71 2.16 3.02 4.06 6.22 5.66 9.58 1.16 2.43 2.46 4.79 3.55 7.26 1 2.24 2.15 4.42 3.42 6.52.67 1.02 1.4 2.15 2.62 2.55 1.06-.75 1.71-1.91 2.28-3.03 2.1-4.16 3.42-8.65 4.89-13.05 2.02-6.59 3.78-13.27 5.19-20.02 2.21-9.25 3.25-18.72 4.54-28.13.56-3.98.83-7.99 1.31-11.97.87-10.64 1.9-21.27 2.24-31.94.08-1.86.24-3.71.25-5.57.01-4.35.25-8.69.22-13.03-.01-2.38-.01-4.76 0-7.13.05-5.07-.2-10.14-.22-15.21-.2-6.61-.71-13.2-1.29-19.78-.73-5.88-1.55-11.78-3.12-17.51-2.05-7.75-5.59-15.03-9.8-21.82-3.16-5.07-6.79-9.88-11.09-14.03-3.88-3.86-8.58-7.08-13.94-8.45-1.5-.41-3.06-.45-4.59-.64.07-2.99.7-5.93 1.26-8.85 1.59-7.71 3.8-15.3 6.76-22.6 1.52-4.03 3.41-7.9 5.39-11.72 3.45-6.56 7.62-12.79 12.46-18.46zm31.27 1.7c.35-.06.71-.12 1.07-.19.19 1.79.09 3.58.1 5.37v38.13c-.01 1.74.13 3.49-.15 5.22-.36-.03-.71-.05-1.06-.05-.95-3.75-1.72-7.55-2.62-11.31-.38-1.53-.58-3.09-1.07-4.59-1.7-.24-3.43-.17-5.15-.2-5.06-.01-10.13 0-15.19-.01-1.66-.01-3.32.09-4.98-.03-.03-.39-.26-.91.16-1.18 1.28-.65 2.72-.88 4.06-1.35 3.43-1.14 6.88-2.16 10.31-3.31 1.39-.48 2.9-.72 4.16-1.54.04-.56.02-1.13-.05-1.68-1.23-.55-2.53-.87-3.81-1.28-3.13-1.03-6.29-1.96-9.41-3.02-1.79-.62-3.67-1-5.41-1.79-.03-.37-.07-.73-.11-1.09 5.09-.19 10.2.06 15.3-.12 3.36-.13 6.73.08 10.09-.07.12-.39.26-.77.37-1.16 1.08-4.94 2.33-9.83 3.39-14.75zm5.97-.2c.36.05.72.12 1.08.2.98 3.85 1.73 7.76 2.71 11.61.36 1.42.56 2.88 1.03 4.27 2.53.18 5.07-.01 7.61.05 5.16.12 10.33.12 15.49.07.76-.01 1.52.03 2.28.08-.04.36-.07.72-.1 1.08-1.82.83-3.78 1.25-5.67 1.89-3.73 1.23-7.48 2.39-11.22 3.57-.57.17-1.12.42-1.67.64-.15.55-.18 1.12-.12 1.69.87.48 1.82.81 2.77 1.09 4.88 1.52 9.73 3.14 14.63 4.6.38.13.78.27 1.13.49.4.27.23.79.15 1.18-1.66.13-3.31.03-4.97.04-5.17.01-10.33-.01-15.5.01-1.61.03-3.22-.02-4.82.21-.52 1.67-.72 3.42-1.17 5.11-.94 3.57-1.52 7.24-2.54 10.78-.36.01-.71.02-1.06.06-.29-1.73-.15-3.48-.15-5.22v-38.13c.02-1.78-.08-3.58.11-5.37zM65.05 168.33c1.12-2.15 2.08-4.4 3.37-6.46-1.82 7.56-2.91 15.27-3.62 23-.8 7.71-.85 15.49-.54 23.23 1.05 19.94 5.54 39.83 14.23 57.88 2.99 5.99 6.35 11.83 10.5 17.11 6.12 7.47 12.53 14.76 19.84 21.09 4.8 4.1 9.99 7.78 15.54 10.8 3.27 1.65 6.51 3.39 9.94 4.68 5.01 2.03 10.19 3.61 15.42 4.94 3.83.96 7.78 1.41 11.52 2.71 5 1.57 9.47 4.61 13.03 8.43 4.93 5.23 8.09 11.87 10.2 18.67.99 2.9 1.59 5.91 2.17 8.92.15.75.22 1.52.16 2.29-6.5 2.78-13.26 5.06-20.26 6.18-4.11.78-8.29.99-12.46 1.08-10.25.24-20.47-1.76-30.12-5.12-3.74-1.42-7.49-2.85-11.03-4.72-8.06-3.84-15.64-8.7-22.46-14.46-2.92-2.55-5.83-5.13-8.4-8.03-9.16-9.83-16.3-21.41-21.79-33.65-2.39-5.55-4.61-11.18-6.37-16.96-1.17-3.94-2.36-7.89-3.26-11.91-.75-2.94-1.22-5.95-1.87-8.92-.46-2.14-.69-4.32-1.03-6.48-.85-5.43-1.28-10.93-1.33-16.43.11-6.18.25-12.37 1.07-18.5.4-2.86.67-5.74 1.15-8.6.98-5.7 2.14-11.37 3.71-16.93 3.09-11.65 7.48-22.95 12.69-33.84zm363.73-6.44c1.1 1.66 1.91 3.48 2.78 5.26 2.1 4.45 4.24 8.9 6.02 13.49 7.61 18.76 12.3 38.79 13.04 59.05.02 1.76.07 3.52.11 5.29.13 9.57-1.27 19.09-3.18 28.45-.73 3.59-1.54 7.17-2.58 10.69-4.04 14.72-10 29-18.41 41.78-8.21 12.57-19.01 23.55-31.84 31.41-5.73 3.59-11.79 6.64-18.05 9.19-5.78 2.19-11.71 4.03-17.8 5.11-6.4 1.05-12.91 1.52-19.4 1.23-7.92-.48-15.78-2.07-23.21-4.85-1.94-.8-3.94-1.46-5.84-2.33-.21-1.51.25-2.99.53-4.46 1.16-5.74 3.03-11.36 5.7-16.58 2.37-4.51 5.52-8.65 9.46-11.9 2.43-2.05 5.24-3.61 8.16-4.83 3.58-1.5 7.47-1.97 11.24-2.83 7.23-1.71 14.37-3.93 21.15-7 10.35-4.65 19.71-11.38 27.65-19.46 1.59-1.61 3.23-3.18 4.74-4.87 3.37-3.76 6.71-7.57 9.85-11.53 7.48-10.07 12.82-21.59 16.71-33.48 1.58-5.3 3.21-10.6 4.21-16.05.63-2.87 1.04-5.78 1.52-8.68.87-6.09 1.59-12.22 1.68-18.38.12-6.65.14-13.32-.53-19.94-.73-7.99-1.87-15.96-3.71-23.78z"] }; +var faOpencart = { prefix: 'fab', iconName: 'opencart', icon: [640, 512, [], "f23d", "M423.3 440.7c0 25.3-20.3 45.6-45.6 45.6s-45.8-20.3-45.8-45.6 20.6-45.8 45.8-45.8c25.4 0 45.6 20.5 45.6 45.8zm-253.9-45.8c-25.3 0-45.6 20.6-45.6 45.8s20.3 45.6 45.6 45.6 45.8-20.3 45.8-45.6-20.5-45.8-45.8-45.8zm291.7-270C158.9 124.9 81.9 112.1 0 25.7c34.4 51.7 53.3 148.9 373.1 144.2 333.3-5 130 86.1 70.8 188.9 186.7-166.7 319.4-233.9 17.2-233.9z"] }; +var faOpenid = { prefix: 'fab', iconName: 'openid', icon: [448, 512, [], "f19b", "M271.5 432l-68 32C88.5 453.7 0 392.5 0 318.2c0-71.5 82.5-131 191.7-144.3v43c-71.5 12.5-124 53-124 101.3 0 51 58.5 93.3 135.7 103v-340l68-33.2v384zM448 291l-131.3-28.5 36.8-20.7c-19.5-11.5-43.5-20-70-24.8v-43c46.2 5.5 87.7 19.5 120.3 39.3l35-19.8L448 291z"] }; +var faOpera = { prefix: 'fab', iconName: 'opera', icon: [496, 512, [], "f26a", "M313.9 32.7c-170.2 0-252.6 223.8-147.5 355.1 36.5 45.4 88.6 75.6 147.5 75.6 36.3 0 70.3-11.1 99.4-30.4-43.8 39.2-101.9 63-165.3 63-3.9 0-8 0-11.9-.3C104.6 489.6 0 381.1 0 248 0 111 111 0 248 0h.8c63.1.3 120.7 24.1 164.4 63.1-29-19.4-63.1-30.4-99.3-30.4zm101.8 397.7c-40.9 24.7-90.7 23.6-132-5.8 56.2-20.5 97.7-91.6 97.7-176.6 0-84.7-41.2-155.8-97.4-176.6 41.8-29.2 91.2-30.3 132.9-5 105.9 98.7 105.5 265.7-1.2 364z"] }; +var faOptinMonster = { prefix: 'fab', iconName: 'optin-monster', icon: [576, 512, [], "f23c", "M550.671 450.303c0 11.62-15.673 19.457-32.158 14.863-12.16-3.243-31.346-17.565-36.211-27.294-5.674-11.62 4.054-32.698 18.916-30.806 15.674 1.621 49.453 25.401 49.453 43.237zM372.86 75.223c-3.783-72.151-100.796-79.718-125.928-23.51 44.588-24.321 90.257-15.673 125.928 23.51zM74.795 407.066c-15.673 1.621-49.452 25.401-49.452 43.237 0 11.62 15.673 19.457 32.157 14.863 12.16-3.243 31.076-17.565 35.94-27.294 5.946-11.62-3.782-32.698-18.645-30.806zm497.765 14.322c1.081 3.513 1.892 7.026 1.892 10.809.81 31.616-44.317 64.045-73.503 65.125-17.295.81-34.59-8.377-42.696-23.51-113.497 4.053-226.994 4.864-340.22 0-8.377 15.133-25.672 24.05-42.967 23.51-28.915-1.081-74.043-33.509-73.503-65.125.27-3.783.811-7.296 1.892-10.809-5.566-9.463-4.845-15.282 5.405-11.62 3.243-5.134 7.026-9.458 11.08-13.782-2.57-10.917 1.27-14.094 11.079-9.188 4.594-3.243 9.998-6.485 15.944-9.188 0-15.757 11.839-11.131 17.295-5.675 12.467-1.78 20.129.709 26.753 5.675v-19.726c-12.987 0-40.641-11.375-45.94-36.212-4.974-20.725 2.607-38.075 25.132-47.56.81-5.945 8.107-14.052 14.862-15.944 7.567-1.892 12.431 4.594 14.052 10.269 7.425 0 17.757 1.465 21.078 8.107 5.405-.541 11.079-1.352 16.484-1.892-2.432-1.892-5.134-3.513-8.107-4.594-5.134-8.917-13.782-11.079-24.591-11.62 0-.81 0-1.621.27-2.702-19.727-.541-44.048-5.675-54.857-17.835-21.321-23.638-15.935-83.577 12.16-103.498 8.377-5.675 21.618-.811 22.699 9.728 2.425 20.598.399 26.833 26.212 25.942 8.107-7.836 16.755-14.592 26.483-19.997-14.862-1.352-28.914 1.621-43.778 3.783 12.752-12.48 23.953-25.442 56.748-42.427 23.511-11.89 49.993-20.808 76.205-23.239-18.646-7.837-39.993-11.891-59.721-16.484 76.475-16.214 174.569-22.159 244.289 37.562 18.105 15.403 32.427 36.211 42.696 59.992 39.799 4.853 36.47-5.581 38.643-25.132 1.081-10.269 14.322-15.403 22.699-9.458 14.862 10.539 22.159 30.806 24.59 48.101 2.162 17.835.27 41.345-12.43 55.127-10.809 12.16-34.32 17.565-53.776 18.105v2.703c-11.08.27-20.268 2.432-25.673 11.62-2.972 1.081-5.674 2.703-8.377 4.594 5.675.54 11.35 1.351 16.755 1.891 1.869-5.619 12.535-8.377 21.077-8.377 1.621-5.405 6.756-11.89 14.052-10.269s14.052 9.998 14.863 15.944c10.809 4.324 22.159 12.16 25.131 25.672 1.892 8.107 1.621 15.133.27 21.888-5.726 25.262-33.361 36.212-45.939 36.212 0 6.756 0 13.241-.27 19.726 8.01-6.006 16.367-7.158 26.752-5.675 5.919-5.919 17.565-9.41 17.565 5.675 5.675 2.703 11.349 5.945 15.944 9.188 10.1-5.051 13.669-.539 10.809 9.188 4.053 4.323 8.107 8.917 11.079 13.782 10.136-3.62 11.021 2.078 5.409 11.62zm-73.773-254.016c17.295 6.756 26.212 22.159 30.265 35.67 1.081-10.539-2.702-39.453-13.782-51.073-7.296-7.296-14.052-5.134-14.052.81.001 6.216-1.35 11.62-2.431 14.593zm-18.646 12.43c12.971 15.673 17.024 41.615 12.7 62.963 10.809-2.162 20.537-6.215 26.212-12.16 1.892-2.162 3.783-4.864 4.864-7.566-1.081-21.348-10.269-42.697-29.725-48.912-3.242 3.243-9.187 4.864-14.051 5.675zm-21.889.811c7.567 20.537 12.431 42.696 14.322 64.585 3.513 0 7.567-.27 11.62-.811 5.945-24.321-.27-51.614-14.052-63.504-3.783 0-8.107 0-11.89-.27zM77.768 167.372c-1.081-2.973-2.432-8.377-2.432-14.593 0-5.945-7.026-8.107-14.052-.81-11.35 11.62-14.863 40.534-13.782 51.073 4.053-13.512 12.971-28.915 30.266-35.67zm5.675 75.394c-4.324-21.348-.27-47.291 12.701-62.963-4.865-.811-10.809-2.432-14.052-5.675-19.457 6.215-28.375 27.563-29.726 48.912 1.351 2.702 2.972 5.404 4.864 7.566 5.675 6.215 15.403 9.998 26.213 12.16zm41.345-61.073c-5.134 1.081-9.998 2.973-14.862 4.865l-12.16 5.134v-.27c-7.296 14.052-9.999 34.319-5.405 52.965 4.594.541 8.647.811 12.7.811 2.432-22.159 9.188-43.778 19.727-63.505zm88.095-23.239c0 42.155 34.319 76.205 76.205 76.205s76.205-34.05 76.205-76.205c0-41.886-34.319-75.935-76.205-75.935s-76.205 34.049-76.205 75.935zm152.41 97.283c9.969 50.608 3.299 64.692 16.484 58.099 15.944-8.107 22.699-39.183 22.97-57.019-12.971-.81-26.213-.81-39.454-1.08zm-71.611-.541v-.27c-.27 5.134.27 38.103 4.324 41.075 11.079 5.405 39.453 4.594 51.073 1.081 5.405-1.621 2.432-37.022 1.621-41.886-18.916-.27-38.102-.27-57.018 0zm-14.053 0v-.27c-19.456.27-38.642.27-57.829.811-1.892 9.187-4.594 48.911 1.892 51.614 12.971 5.675 41.616 5.134 54.586 1.621 4.595-2.432 2.433-45.399 1.351-53.776zm-85.662 57.56c5.405 2.432 8.647 2.432 9.728-4.324 1.892-8.647 2.432-36.752 4.865-52.155-12.16.27-24.591.811-36.752 1.621-5.405 19.727.27 45.129 22.159 54.858zm-65.666-11.08c43.778 47.02 92.689 85.663 155.923 106.47 67.558-19.186 115.659-59.991 163.219-107.011-11.095-4.315-7.715-10.363-7.296-11.62-8.918-.81-17.835-1.892-26.483-2.702-9.458 32.968-35.94 52.965-46.75 31.616-2.702-5.134-3.513-11.62-4.594-16.754-3.783 8.377-13.242 8.107-24.591 8.918-13.241 1.081-31.617 1.351-44.048-2.972-2.972 12.971-11.079 12.971-26.752 14.322-14.052 1.352-48.642 4.054-54.857-10.809-1.081 28.644-35.13 9.998-45.129-7.026-3.243-5.675-5.405-11.35-7.026-17.565-7.837.81-15.673 1.621-23.511 2.702 2.443 3.663 1.549 9.052-8.105 12.431zM115.6 453.545c-5.674-23.239-18.646-49.722-33.508-54.046-22.429-6.756-68.909 23.51-66.207 54.586 12.701 19.457 39.994 35.67 59.181 36.481 17.835.81 35.94-11.08 39.724-28.914.539-2.432.81-5.134.81-8.107zm7.296-5.944c33.509-19.457 69.179-35.671 105.931-47.02-38.643-20.537-68.098-47.831-97.283-77.016-2.162 1.352-5.134 2.432-7.836 3.513-1.637 4.91 8.718 5.33 5.405 12.431-2.162 4.054-8.648 7.567-15.133 9.188-2.161 2.702-5.134 4.864-7.836 6.485h-.27c-.27 13.511-.27 27.024.27 40.535 8.939 15.964 15.426 33.314 16.752 51.884zm320.764 12.7c-36.752-21.348-74.044-41.345-115.659-52.965-13.782 6.215-27.833 11.349-42.155 15.403-2.162.811-2.162.811-4.324 0-11.89-3.783-23.239-8.107-34.859-13.241-40.265 11.62-77.286 29.185-112.416 50.803h-.27v.27c.27 0 .27 0 .27-.27 103.227 4.054 206.455 3.513 309.413 0zm27.023-64.045l-.27.27c.541-13.782.811-27.563.811-41.345-2.973-1.621-5.675-4.054-8.107-6.756-6.485-1.351-12.971-5.134-15.133-8.918-1.892-4.053 1.351-7.566 5.945-10.269-.27-.541-.541-1.621-.541-2.432-2.972-.811-5.405-1.892-7.567-3.243-31.616 29.455-65.396 56.749-103.498 76.746 38.914 11.62 75.935 28.104 111.875 47.561 1.05-14.692 7.231-35.749 16.485-51.614zm23.24 3.244c-14.593 4.323-27.834 30.806-33.509 54.046 0 23.826 21.278 37.897 40.534 37.022 19.186-.811 46.48-17.024 59.181-36.481 2.973-31.077-43.507-61.344-66.206-54.587zM290.709 134.133c.045 0 .089.003.134.003.046 0 .09-.003.136-.003h-.27zm0 96.743c28.645 0 51.884-21.618 51.884-48.371 0-36.092-40.507-58.079-72.151-44.318 9.458 2.972 16.484 11.62 16.484 21.618 0 23.257-33.291 31.955-46.48 11.35-7.297 34.067 19.368 59.721 50.263 59.721zM68.039 474.083c.54 6.486 12.16 12.701 21.618 9.458 6.756-2.703 14.593-10.539 17.295-16.214 2.973-7.026-1.081-19.997-9.728-18.375-8.917 1.621-29.725 16.754-29.185 25.131zm410.75-25.131c-8.377-1.621-12.431 11.349-9.458 18.375 2.432 5.675 10.269 13.511 17.295 16.214 9.187 3.243 21.078-2.972 21.348-9.458.811-8.377-20.267-23.51-29.185-25.131z"] }; +var faOsi = { prefix: 'fab', iconName: 'osi', icon: [495, 512, [], "f41a", "M0 259.2C2.3 123.4 97.4 26.8 213.8 11.1c138.8-18.6 255.6 75.8 278 201.1 21.3 118.8-44 230-151.6 274-9.3 3.8-14.4 1.7-18-7.7-17.8-46.3-35.6-92.7-53.4-139-3.1-8.1-1-13.2 7-16.8 24.2-11 39.3-29.4 43.3-55.8 6.4-42.4-24.5-78.7-64.5-82.2-39-3.4-71.8 23.7-77.5 59.7-5.2 33 11.1 63.7 41.9 77.7 9.6 4.4 11.5 8.6 7.8 18.4-17.9 46.6-35.8 93.2-53.7 139.9-2.6 6.9-8.3 9.3-15.5 6.5-52.6-20.3-101.4-61-130.8-119C1.9 318.7 1.6 280.2 0 259.2zm20.9-1.9c.4 6.6.6 14.3 1.3 22.1 6.3 71.9 49.6 143.5 131 183.1 3.2 1.5 4.4.8 5.6-2.3 14.9-39.1 29.9-78.2 45-117.3 1.3-3.3.6-4.8-2.4-6.7-31.6-19.9-47.3-48.5-45.6-86 1-21.6 9.3-40.5 23.8-56.3 30-32.7 77-39.8 115.5-17.6 31.9 18.4 49.5 53.8 45.2 90.4-3.6 30.6-19.3 53.9-45.7 69.8-2.7 1.6-3.5 2.9-2.3 6 15.2 39.2 30.2 78.4 45.2 117.7 1.2 3.1 2.4 3.8 5.6 2.3 35.5-16.6 65.2-40.3 88.1-72 34.8-48.2 49.1-101.9 42.3-161C459.8 112 354.1 14.7 218 31.5 111.9 44.5 22.7 134 20.9 257.3z"] }; +var faPage4 = { prefix: 'fab', iconName: 'page4', icon: [496, 512, [], "f3d7", "M248 504C111 504 0 393 0 256S111 8 248 8c20.9 0 41.3 2.6 60.7 7.5L42.3 392H248v112zm0-143.6V146.8L98.6 360.4H248zm96 31.6v92.7c45.7-19.2 84.5-51.7 111.4-92.7H344zm57.4-138.2l-21.2 8.4 21.2 8.3v-16.7zm-20.3 54.5c-6.7 0-8 6.3-8 12.9v7.7h16.2v-10c0-5.9-2.3-10.6-8.2-10.6zM496 256c0 37.3-8.2 72.7-23 104.4H344V27.3C433.3 64.8 496 153.1 496 256zM360.4 143.6h68.2V96h-13.9v32.6h-13.9V99h-13.9v29.6h-12.7V96h-13.9v47.6zm68.1 185.3H402v-11c0-15.4-5.6-25.2-20.9-25.2-15.4 0-20.7 10.6-20.7 25.9v25.3h68.2v-15zm0-103l-68.2 29.7V268l68.2 29.5v-16.6l-14.4-5.7v-26.5l14.4-5.9v-16.9zm-4.8-68.5h-35.6V184H402v-12.2h11c8.6 15.8 1.3 35.3-18.6 35.3-22.5 0-28.3-25.3-15.5-37.7l-11.6-10.6c-16.2 17.5-12.2 63.9 27.1 63.9 34 0 44.7-35.9 29.3-65.3z"] }; +var faPagelines = { prefix: 'fab', iconName: 'pagelines', icon: [384, 512, [], "f18c", "M384 312.7c-55.1 136.7-187.1 54-187.1 54-40.5 81.8-107.4 134.4-184.6 134.7-16.1 0-16.6-24.4 0-24.4 64.4-.3 120.5-42.7 157.2-110.1-41.1 15.9-118.6 27.9-161.6-82.2 109-44.9 159.1 11.2 178.3 45.5 9.9-24.4 17-50.9 21.6-79.7 0 0-139.7 21.9-149.5-98.1 119.1-47.9 152.6 76.7 152.6 76.7 1.6-16.7 3.3-52.6 3.3-53.4 0 0-106.3-73.7-38.1-165.2 124.6 43 61.4 162.4 61.4 162.4.5 1.6.5 23.8 0 33.4 0 0 45.2-89 136.4-57.5-4.2 134-141.9 106.4-141.9 106.4-4.4 27.4-11.2 53.4-20 77.5 0 0 83-91.8 172-20z"] }; +var faPalfed = { prefix: 'fab', iconName: 'palfed', icon: [576, 512, [], "f3d8", "M384.9 193.9c0-47.4-55.2-44.2-95.4-29.8-1.3 39.4-2.5 80.7-3 119.8.7 2.8 2.6 6.2 15.1 6.2 36.8 0 83.4-42.8 83.3-96.2zm-194.5 72.2c.2 0 6.5-2.7 11.2-2.7 26.6 0 20.7 44.1-14.4 44.1-21.5 0-37.1-18.1-37.1-43 0-42 42.9-95.6 100.7-126.5 1-12.4 3-22 10.5-28.2 11.2-9 26.6-3.5 29.5 11.1 72.2-22.2 135.2 1 135.2 72 0 77.9-79.3 152.6-140.1 138.2-.1 39.4.9 74.4 2.7 100v.2c.2 3.4.6 12.5-5.3 19.1-9.6 10.6-33.4 10-36.4-22.3-4.1-44.4.2-206.1 1.4-242.5-21.5 15-58.5 50.3-58.5 75.9.2 2.5.4 4 .6 4.6zM8 181.1s-.1 37.4 38.4 37.4h30l22.4 217.2s0 44.3 44.7 44.3h288.9s44.7-.4 44.7-44.3l22.4-217.2h30s38.4 1.2 38.4-37.4c0 0 .1-37.4-38.4-37.4h-30.1c-7.3-25.6-30.2-74.3-119.4-74.3h-28V50.3s-2.7-18.4-21.1-18.4h-85.8s-21.1 0-21.1 18.4v19.1h-28.1s-105 4.2-120.5 74.3h-29S8 142.5 8 181.1z"] }; +var faPatreon = { prefix: 'fab', iconName: 'patreon', icon: [512, 512, [], "f3d9", "M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z"] }; +var faPaypal = { prefix: 'fab', iconName: 'paypal', icon: [384, 512, [], "f1ed", "M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z"] }; +var faPeriscope = { prefix: 'fab', iconName: 'periscope', icon: [448, 512, [], "f3da", "M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z"] }; +var faPhabricator = { prefix: 'fab', iconName: 'phabricator', icon: [496, 512, [], "f3db", "M323 262.1l-.1-13s21.7-19.8 21.1-21.2l-9.5-20c-.6-1.4-29.5-.5-29.5-.5l-9.4-9.3s.2-28.5-1.2-29.1l-20.1-9.2c-1.4-.6-20.7 21-20.7 21l-13.1-.2s-20.5-21.4-21.9-20.8l-20 8.3c-1.4.5.2 28.9.2 28.9l-9.1 9.1s-29.2-.9-29.7.4l-8.1 19.8c-.6 1.4 21 21 21 21l.1 12.9s-21.7 19.8-21.1 21.2l9.5 20c.6 1.4 29.5.5 29.5.5l9.4 9.3s-.2 31.8 1.2 32.3l20.1 8.3c1.4.6 20.7-23.5 20.7-23.5l13.1.2s20.5 23.8 21.8 23.3l20-7.5c1.4-.6-.2-32.1-.2-32.1l9.1-9.1s29.2.9 29.7-.5l8.1-19.8c.7-1.1-20.9-20.7-20.9-20.7zm-44.9-8.7c.7 17.1-12.8 31.6-30.1 32.4-17.3.8-32.1-12.5-32.8-29.6-.7-17.1 12.8-31.6 30.1-32.3 17.3-.8 32.1 12.5 32.8 29.5zm201.2-37.9l-97-97-.1.1c-75.1-73.3-195.4-72.8-269.8 1.6-50.9 51-27.8 27.9-95.7 95.3-22.3 22.3-22.3 58.7 0 81 69.9 69.4 46.4 46 97.4 97l.1-.1c75.1 73.3 195.4 72.9 269.8-1.6 51-50.9 27.9-27.9 95.3-95.3 22.3-22.3 22.3-58.7 0-81zM140.4 363.8c-59.6-59.5-59.6-156 0-215.5 59.5-59.6 156-59.5 215.6 0 59.5 59.5 59.6 156 0 215.6-59.6 59.5-156 59.4-215.6-.1z"] }; +var faPhoenixFramework = { prefix: 'fab', iconName: 'phoenix-framework', icon: [640, 512, [], "f3dc", "M212.9 344.3c3.8-.1 22.8-1.4 25.6-2.2-2.4-2.6-43.6-1-68-49.6-4.3-8.6-7.5-17.6-6.4-27.6 2.9-25.5 32.9-30 52-18.5 36 21.6 63.3 91.3 113.7 97.5 37 4.5 84.6-17 108.2-45.4-.6-.1-.8-.2-1-.1-.4.1-.8.2-1.1.3-33.3 12.1-94.3 9.7-134.7-14.8-37.6-22.8-53.1-58.7-51.8-74.6 1.8-21.3 22.9-23.2 35.9-19.6 14.4 3.9 24.4 17.6 38.9 27.4 15.6 10.4 32.9 13.7 51.3 10.3 14.9-2.7 34.4-12.3 36.5-14.5-1.1-.1-1.8-.1-2.5-.2-6.2-.6-12.4-.8-18.5-1.7C279.8 194.5 262.1 47.4 138.5 37.9 94.2 34.5 39.1 46 2.2 72.9c-.8.6-1.5 1.2-2.2 1.8.1.2.1.3.2.5.8 0 1.6-.1 2.4-.2 6.3-1 12.5-.8 18.7.3 23.8 4.3 47.7 23.1 55.9 76.5 5.3 34.3-.7 50.8 8 86.1 19 77.1 91 107.6 127.7 106.4zM75.3 64.9c-.9-1-.9-1.2-1.3-2 12.1-2.6 24.2-4.1 36.6-4.8-1.1 14.7-22.2 21.3-35.3 6.8zm196.9 350.5c-42.8 1.2-92-26.7-123.5-61.4-4.6-5-16.8-20.2-18.6-23.4l.4-.4c6.6 4.1 25.7 18.6 54.8 27 24.2 7 48.1 6.3 71.6-3.3 22.7-9.3 41-.5 43.1 2.9-18.5 3.8-20.1 4.4-24 7.9-5.1 4.4-4.6 11.7 7 17.2 26.2 12.4 63-2.8 97.2 25.4 2.4 2 8.1 7.8 10.1 10.7-.1.2-.3.3-.4.5-4.8-1.5-16.4-7.5-40.2-9.3-24.7-2-46.3 5.3-77.5 6.2zm174.8-252c16.4-5.2 41.3-13.4 66.5-3.3 16.1 6.5 26.2 18.7 32.1 34.6 3.5 9.4 5.1 19.7 5.1 28.7-.2 0-.4 0-.6.1-.2-.4-.4-.9-.5-1.3-5-22-29.9-43.8-67.6-29.9-50.2 18.6-130.4 9.7-176.9-48-.7-.9-2.4-1.7-1.3-3.2.1-.2 2.1.6 3 1.3 18.1 13.4 38.3 21.9 60.3 26.2 30.5 6.1 54.6 2.9 79.9-5.2zm102.7 117.5c-32.4.2-33.8 50.1-103.6 64.4-18.2 3.7-38.7 4.6-44.9 4.2v-.4c2.8-1.5 14.7-2.6 29.7-16.6 7.9-7.3 15.3-15.1 22.8-22.9 19.5-20.2 41.4-42.2 81.9-39 23.1 1.8 29.3 8.2 36.1 12.7.3.2.4.5.7.9-.5 0-.7.1-.9 0-7-2.7-14.3-3.3-21.8-3.3zm-12.3-24.1c-.1.2-.1.4-.2.6-28.9-4.4-48-7.9-68.5 4-17 9.9-31.4 20.5-62 24.4-27.1 3.4-45.1 2.4-66.1-8-.3-.2-.6-.4-1-.6 0-.2.1-.3.1-.5 24.9 3.8 36.4 5.1 55.5-5.8 22.3-12.9 40.1-26.6 71.3-31 29.6-4.1 51.3 2.5 70.9 16.9zM268.6 97.3c-.6-.6-1.1-1.2-2.1-2.3 7.6 0 29.7-1.2 53.4 8.4 19.7 8 32.2 21 50.2 32.9 11.1 7.3 23.4 9.3 36.4 8.1 4.3-.4 8.5-1.2 12.8-1.7.4-.1.9 0 1.5.3-.6.4-1.2.9-1.8 1.2-8.1 4-16.7 6.3-25.6 7.1-26.1 2.6-50.3-3.7-73.4-15.4-19.3-9.9-36.4-22.9-51.4-38.6zM640 335.7c-3.5 3.1-22.7 11.6-42.7 5.3-12.3-3.9-19.5-14.9-31.6-24.1-10-7.6-20.9-7.9-28.1-8.4.6-.8.9-1.2 1.2-1.4 14.8-9.2 30.5-12.2 47.3-6.5 12.5 4.2 19.2 13.5 30.4 24.2 10.8 10.4 21 9.9 23.1 10.5.1-.1.2 0 .4.4zm-212.5 137c2.2 1.2 1.6 1.5 1.5 2-18.5-1.4-33.9-7.6-46.8-22.2-21.8-24.7-41.7-27.9-48.6-29.7.5-.2.8-.4 1.1-.4 13.1.1 26.1.7 38.9 3.9 25.3 6.4 35 25.4 41.6 35.3 3.2 4.8 7.3 8.3 12.3 11.1z"] }; +var faPhoenixSquadron = { prefix: 'fab', iconName: 'phoenix-squadron', icon: [513, 512, [], "f511", "M96.24 62.81C142.91 26.57 202.15 6.57 261.28 8.08c29.67-.38 59.29 5.38 87.17 15.37-24.2-4.64-49.18-6.35-73.6-2.45-43 5.35-83.26 27.23-112.16 59.35 5.69-.99 10.81-3.68 16.07-5.88 18.19-7.89 37.6-13.29 57.4-14.87 19.8-2.14 39.75-.43 59.45 1.93-14.46 2.79-29.2 4.58-43.11 9.61-34.53 11.11-65.46 33.26-86.55 62.82-13.84 19.77-23.7 42.99-24.74 67.33-.35 16.54 5.23 34.91 19.89 44.17 11.13 6.66 24.85 9.39 37.63 6.76 15.49-2.47 30.16-8.67 43.73-16.38 11.55-6.84 22.73-14.59 32.05-24.32 3.8-3.23 2.54-8.48 2.63-12.83-2.13-.34-4.4-1.11-6.32.3a203.975 203.975 0 0 1-35.93 15.42c-20.07 6.19-42.28 8.48-62.28.78 12.83 1.73 26.14.31 37.85-5.46 20.29-9.75 36.92-25.27 54.6-38.88 27.84-21.29 57.64-40.11 89.17-55.47 25.78-12.01 53.09-22.85 81.81-24.2-15.68 13.76-32.25 26.6-46.92 41.51-14.55 14.04-27.54 29.58-40.23 45.31-3.53 4.61-8.98 6.96-13.62 10.19-22.24 15.03-40.6 35.96-52.04 60.28-9.36 19.74-14.55 41.97-11.81 63.84 1.95 13.73 8.74 27.67 20.96 35.01 12.94 7.99 29.14 8.09 43.61 5.11 32.9-7.47 61.61-28.97 81.28-56 20.5-27.6 30.61-62.38 29.25-96.64-.52-7.52-1.58-15-1.67-22.55 8.02 19.54 14.87 39.83 16.7 61.01 2.01 14.32.75 28.84-1.62 43.02-1.92 11.02-5.69 21.58-7.81 32.53 20.36-22.73 34.17-51.24 39.46-81.31 5.72-35.37.58-72.36-14.25-104.95 20.84 32.12 32.43 69.79 35.81 107.8.5 12.77.5 25.58 0 38.34-2.91 34.26-12.97 67.95-29.76 98-26.2 47.48-68.2 85.89-117.54 108.32-78.52 36.34-175.2 31.41-248.72-14.72-38.84-23.78-71.06-58.32-91.68-98.96C10.72 337.43 2.04 305.5 0 273.13V241.7c3.94-69.97 40.99-136.32 96.24-178.89m222.65 80.57c5.51-.8 10.82-2.57 16.02-4.5 4.99-1.77 9.27-5.95 10.35-11.25-8.91 5-17.95 9.95-26.37 15.75z"] }; +var faPhp = { prefix: 'fab', iconName: 'php', icon: [640, 512, [], "f457", "M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z"] }; +var faPiedPiper = { prefix: 'fab', iconName: 'pied-piper', icon: [448, 512, [], "f2ae", "M32 419L0 479.2l.8-328C.8 85.3 54 32 120 32h327.2c-93 28.9-189.9 94.2-253.9 168.6C122.7 282 82.6 338 32 419M448 32S305.2 98.8 261.6 199.1c-23.2 53.6-28.9 118.1-71 158.6-28.9 27.8-69.8 38.2-105.3 56.3-23.2 12-66.4 40.5-84.9 66h328.4c66 0 119.3-53.3 119.3-119.2-.1 0-.1-328.8-.1-328.8z"] }; +var faPiedPiperAlt = { prefix: 'fab', iconName: 'pied-piper-alt', icon: [576, 512, [], "f1a8", "M242 187c6.3-11.8 13.2-17 25.9-21.8 27.3-10.3 40.2-30.5 58.9-51.1 11.9 8.4 12 24.6 31.6 23v21.8l6.3.3c37.4-14.4 74.7-30.2 106.6-54.6 48.3-36.8 52.9-50 81.3-100l2-2.6c-.6 14.1-6.3 27.3-12.4 39.9-30.5 63.8-78.7 100.3-146.8 116.7-12.4 2.9-26.4 3.2-37.6 8.9 1.4 9.8 13.2 18.1 13.2 23 0 3.4-5.5 7.2-7.5 8.6-11.2-12.9-16.1-19.3-22.7-22.1-7.6-3.5-63.9-6.4-98.8 10zm137.9 256.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9L244 246zm-12.6 31.8l24.1 61.2 21-13.8-31.3-50.9-13.8 3.5zM555.5 0l-.6 1.1-.3.9.6-.6.3-1.4zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46v27.3l11.8-3.4-2.9-23.8h-8.9zm76.1 2.9c0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3l2 12.4c9-1.5 58.4-6.6 58.4-14.1z"] }; +var faPiedPiperHat = { prefix: 'fab', iconName: 'pied-piper-hat', icon: [640, 512, [], "f4e5", "M640 24.9c-80.8 53.6-89.4 92.5-96.4 104.4-6.7 12.2-11.7 60.3-23.3 83.6-11.7 23.6-54.2 42.2-66.1 50-11.7 7.8-28.3 38.1-41.9 64.2-108.1-4.4-167.4 38.8-259.2 93.6 29.4-9.7 43.3-16.7 43.3-16.7 94.2-36 139.3-68.3 281.1-49.2 1.1 0 1.9.6 2.8.8 3.9 2.2 5.3 6.9 3.1 10.8l-53.9 95.8c-2.5 4.7-7.8 7.2-13.1 6.1-126.8-23.8-226.9 17.3-318.9 18.6C24.1 488 0 453.4 0 451.8c0-1.1.6-1.7 1.7-1.7 0 0 38.3 0 103.1-15.3C178.4 294.5 244 245.4 315.4 245.4c0 0 71.7 0 90.6 61.9 22.8-39.7 28.3-49.2 28.3-49.2 5.3-9.4 35-77.2 86.4-141.4 51.5-64 90.4-79.9 119.3-91.8z"] }; +var faPiedPiperPp = { prefix: 'fab', iconName: 'pied-piper-pp', icon: [448, 512, [], "f1a7", "M205.3 174.6c0 21.1-14.2 38.1-31.7 38.1-7.1 0-12.8-1.2-17.2-3.7v-68c4.4-2.7 10.1-4.2 17.2-4.2 17.5 0 31.7 16.9 31.7 37.8zm52.6 67c-7.1 0-12.8 1.5-17.2 4.2v68c4.4 2.5 10.1 3.7 17.2 3.7 17.4 0 31.7-16.9 31.7-37.8 0-21.1-14.3-38.1-31.7-38.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM185 255.1c41 0 74.2-35.6 74.2-79.6 0-44-33.2-79.6-74.2-79.6-12 0-24.1 3.2-34.6 8.8h-45.7V311l51.8-10.1v-50.6c8.6 3.1 18.1 4.8 28.5 4.8zm158.4 25.3c0-44-33.2-79.6-73.9-79.6-3.2 0-6.4.2-9.6.7-3.7 12.5-10.1 23.8-19.2 33.4-13.8 15-32.2 23.8-51.8 24.8V416l51.8-10.1v-50.6c8.6 3.2 18.2 4.7 28.7 4.7 40.8 0 74-35.6 74-79.6z"] }; +var faPinterest = { prefix: 'fab', iconName: 'pinterest', icon: [496, 512, [], "f0d2", "M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3.8-3.4 5-20.3 6.9-28.1.6-2.5.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z"] }; +var faPinterestP = { prefix: 'fab', iconName: 'pinterest-p', icon: [384, 512, [], "f231", "M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z"] }; +var faPinterestSquare = { prefix: 'fab', iconName: 'pinterest-square', icon: [448, 512, [], "f0d3", "M448 80v352c0 26.5-21.5 48-48 48H154.4c9.8-16.4 22.4-40 27.4-59.3 3-11.5 15.3-58.4 15.3-58.4 8 15.3 31.4 28.2 56.3 28.2 74.1 0 127.4-68.1 127.4-152.7 0-81.1-66.2-141.8-151.4-141.8-106 0-162.2 71.1-162.2 148.6 0 36 19.2 80.8 49.8 95.1 4.7 2.2 7.1 1.2 8.2-3.3.8-3.4 5-20.1 6.8-27.8.6-2.5.3-4.6-1.7-7-10.1-12.3-18.3-34.9-18.3-56 0-54.2 41-106.6 110.9-106.6 60.3 0 102.6 41.1 102.6 99.9 0 66.4-33.5 112.4-77.2 112.4-24.1 0-42.1-19.9-36.4-44.4 6.9-29.2 20.3-60.7 20.3-81.8 0-53-75.5-45.7-75.5 25 0 21.7 7.3 36.5 7.3 36.5-31.4 132.8-36.1 134.5-29.6 192.6l2.2.8H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z"] }; +var faPlaystation = { prefix: 'fab', iconName: 'playstation', icon: [576, 512, [], "f3df", "M570.9 372.3c-11.3 14.2-38.8 24.3-38.8 24.3L327 470.2v-54.3l150.9-53.8c17.1-6.1 19.8-14.8 5.8-19.4-13.9-4.6-39.1-3.3-56.2 2.9L327 381.1v-56.4c23.2-7.8 47.1-13.6 75.7-16.8 40.9-4.5 90.9.6 130.2 15.5 44.2 14 49.2 34.7 38 48.9zm-224.4-92.5v-139c0-16.3-3-31.3-18.3-35.6-11.7-3.8-19 7.1-19 23.4v347.9l-93.8-29.8V32c39.9 7.4 98 24.9 129.2 35.4C424.1 94.7 451 128.7 451 205.2c0 74.5-46 102.8-104.5 74.6zM43.2 410.2c-45.4-12.8-53-39.5-32.3-54.8 19.1-14.2 51.7-24.9 51.7-24.9l134.5-47.8v54.5l-96.8 34.6c-17.1 6.1-19.7 14.8-5.8 19.4 13.9 4.6 39.1 3.3 56.2-2.9l46.4-16.9v48.8c-51.6 9.3-101.4 7.3-153.9-10z"] }; +var faProductHunt = { prefix: 'fab', iconName: 'product-hunt', icon: [512, 512, [], "f288", "M326.3 218.8c0 20.5-16.7 37.2-37.2 37.2h-70.3v-74.4h70.3c20.5 0 37.2 16.7 37.2 37.2zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-128.1-37.2c0-47.9-38.9-86.8-86.8-86.8H169.2v248h49.6v-74.4h70.3c47.9 0 86.8-38.9 86.8-86.8z"] }; +var faPushed = { prefix: 'fab', iconName: 'pushed', icon: [432, 512, [], "f3e1", "M407 111.9l-98.5-9 14-33.4c10.4-23.5-10.8-40.4-28.7-37L22.5 76.9c-15.1 2.7-26 18.3-21.4 36.6l105.1 348.3c6.5 21.3 36.7 24.2 47.7 7l35.3-80.8 235.2-231.3c16.4-16.8 4.3-42.9-17.4-44.8zM297.6 53.6c5.1-.7 7.5 2.5 5.2 7.4L286 100.9 108.6 84.6l189-31zM22.7 107.9c-3.1-5.1 1-10 6.1-9.1l248.7 22.7-96.9 230.7L22.7 107.9zM136 456.4c-2.6 4-7.9 3.1-9.4-1.2L43.5 179.7l127.7 197.6c-7 15-35.2 79.1-35.2 79.1zm272.8-314.5L210.1 337.3l89.7-213.7 106.4 9.7c4 1.1 5.7 5.3 2.6 8.6z"] }; +var faPython = { prefix: 'fab', iconName: 'python', icon: [448, 512, [], "f3e2", "M167.8 36.4c-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1zm-6.7 28.4c11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4zm185.2 81.4v47.5c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6-7.7-30.9-22.3-54.2-53.4-54.2h-40.1zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3z"] }; +var faQq = { prefix: 'fab', iconName: 'qq', icon: [448, 512, [], "f1d6", "M433.754 420.445c-11.526 1.393-44.86-52.741-44.86-52.741 0 31.345-16.136 72.247-51.051 101.786 16.842 5.192 54.843 19.167 45.803 34.421-7.316 12.343-125.51 7.881-159.632 4.037-34.122 3.844-152.316 8.306-159.632-4.037-9.045-15.25 28.918-29.214 45.783-34.415-34.92-29.539-51.059-70.445-51.059-101.792 0 0-33.334 54.134-44.859 52.741-5.37-.65-12.424-29.644 9.347-99.704 10.261-33.024 21.995-60.478 40.144-105.779C60.683 98.063 108.982.006 224 0c113.737.006 163.156 96.133 160.264 214.963 18.118 45.223 29.912 72.85 40.144 105.778 21.768 70.06 14.716 99.053 9.346 99.704z"] }; +var faQuinscape = { prefix: 'fab', iconName: 'quinscape', icon: [489, 512, [], "f459", "M301.9 474.6h-1.3c-87.3 0-158.1-70.8-158.1-158.1s70.8-158.1 158.1-158.1c94.9 0 168.2 83.1 157 176.6 4 5.1 8.2 9.6 11.2 15.3 13.4-30.3 20.3-62.4 20.3-97.7C489.1 117.5 379.6 8 244.5 8 109.5 8 0 117.5 0 252.6s109.5 244.6 244.5 244.6c24.8 0 47.8-3.2 70.4-10.1-5.2-3.5-9-8.2-13.4-12.6l.4.1zm-21.2-69.8c0-54.8 44.4-99.2 99.2-99.2 54.8 0 99.2 44.4 99.2 99.2 0 54.8-44.4 99.2-99.2 99.2-54.8 0-99.2-44.4-99.2-99.2"] }; +var faQuora = { prefix: 'fab', iconName: 'quora', icon: [448, 512, [], "f2c4", "M440.5 386.7h-29.3c-1.5 13.5-10.5 30.8-33 30.8-20.5 0-35.3-14.2-49.5-35.8 44.2-34.2 74.7-87.5 74.7-153C403.5 111.2 306.8 32 205 32 105.3 32 7.3 111.7 7.3 228.7c0 134.1 131.3 221.6 249 189C276 451.3 302 480 351.5 480c81.8 0 90.8-75.3 89-93.3zM297 329.2C277.5 300 253.3 277 205.5 277c-30.5 0-54.3 10-69 22.8l12.2 24.3c6.2-3 13-4 19.8-4 35.5 0 53.7 30.8 69.2 61.3-10 3-20.7 4.2-32.7 4.2-75 0-107.5-53-107.5-156.7C97.5 124.5 130 71 205 71c76.2 0 108.7 53.5 108.7 157.7.1 41.8-5.4 75.6-16.7 100.5z"] }; +var faRProject = { prefix: 'fab', iconName: 'r-project', icon: [581, 512, [], "f4f7", "M581 226.6C581 119.1 450.9 32 290.5 32S0 119.1 0 226.6C0 322.4 103.3 402 239.4 418.1V480h99.1v-61.5c24.3-2.7 47.6-7.4 69.4-13.9L448 480h112l-67.4-113.7c54.5-35.4 88.4-84.9 88.4-139.7zm-466.8 14.5c0-73.5 98.9-133 220.8-133s211.9 40.7 211.9 133c0 50.1-26.5 85-70.3 106.4-2.4-1.6-4.7-2.9-6.4-3.7-10.2-5.2-27.8-10.5-27.8-10.5s86.6-6.4 86.6-92.7-90.6-87.9-90.6-87.9h-199V361c-74.1-21.5-125.2-67.1-125.2-119.9zm225.1 38.3v-55.6c57.8 0 87.8-6.8 87.8 27.3 0 36.5-38.2 28.3-87.8 28.3zm-.9 72.5H365c10.8 0 18.9 11.7 24 19.2-16.1 1.9-33 2.8-50.6 2.9v-22.1z"] }; +var faRavelry = { prefix: 'fab', iconName: 'ravelry', icon: [512, 512, [], "f2d9", "M407.4 61.5C331.6 22.1 257.8 31 182.9 66c-11.3 5.2-15.5 10.6-19.9 19-10.3 19.2-16.2 37.4-19.9 52.7-21.2 25.6-36.4 56.1-43.3 89.9-10.6 18-20.9 41.4-23.1 71.4 0 0-.7 7.6-.5 7.9-35.3-4.6-76.2-27-76.2-27 9.1 14.5 61.3 32.3 76.3 37.9 0 0 1.7 98 64.5 131.2-11.3-17.2-13.3-20.2-13.3-20.2S94.8 369 100.4 324.7c.7 0 1.5.2 2.2.2 23.9 87.4 103.2 151.4 196.9 151.4 6.2 0 12.1-.2 18-.7 14 1.5 27.6.5 40.1-3.9 6.9-2.2 13.8-6.4 20.2-10.8 70.2-39.1 100.9-82 123.1-147.7 5.4-16 8.1-35.5 9.8-52.2 8.7-82.3-30.6-161.6-103.3-199.5zM138.8 163.2s-1.2 12.3-.7 19.7c-3.4 2.5-10.1 8.1-18.2 16.7 5.2-12.8 11.3-25.1 18.9-36.4zm-31.2 121.9c4.4-17.2 13.3-39.1 29.8-55.1 0 0 1.7 48 15.8 90.1l-41.4-6.9c-2.2-9.2-3.5-18.5-4.2-28.1zm7.9 42.8c14.8 3.2 34 7.6 43.1 9.1 27.3 76.8 108.3 124.3 108.3 124.3 1 .5 1.7.7 2.7 1-73.1-11.6-132.7-64.7-154.1-134.4zM386 444.1c-14.5 4.7-36.2 8.4-64.7 3.7 0 0-91.1-23.1-127.5-107.8 38.2.7 52.4-.2 78-3.9 39.4-5.7 79-16.2 115-33 11.8-5.4 11.1-19.4 9.6-29.8-2-12.8-11.1-12.1-21.4-4.7 0 0-82 58.6-189.8 53.7-18.7-32-26.8-110.8-26.8-110.8 41.4-35.2 83.2-59.6 168.4-52.4.2-6.4 3-27.1-20.4-28.1 0 0-93.5-11.1-146 33.5 2.5-16.5 5.9-29.3 11.1-39.4 34.2-30.8 79-49.5 128.3-49.5 106.4 0 193 87.1 193 194.5-.2 76-43.8 142-106.8 174z"] }; +var faReact = { prefix: 'fab', iconName: 'react', icon: [512, 512, [], "f41b", "M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zm-130 189.1c4.6 8.8 9.3 17.5 14.3 26.1 5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5zm0-50.6c-6.3-14.9-11.6-29.5-16-43.6 14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26zm11.4 25.3c6.6-13.8 13.8-27.3 21.4-40.6 7.6-13.3 15.8-26.2 24.4-38.9 15-1.1 30.3-1.7 45.9-1.7 15.6 0 31 .6 45.9 1.7 8.5 12.6 16.6 25.5 24.3 38.7 7.7 13.2 14.9 26.7 21.7 40.4-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6-15.7 0-30.9-.5-45.6-1.4-8.7-12.7-16.9-25.7-24.6-39-7.7-13.3-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zM256 210.2c25.3 0 45.8 20.5 45.8 45.8 0 25.3-20.5 45.8-45.8 45.8-25.3 0-45.8-20.5-45.8-45.8 0-25.3 20.5-45.8 45.8-45.8"] }; +var faReadme = { prefix: 'fab', iconName: 'readme', icon: [576, 512, [], "f4d5", "M528.3 46.5H388.5c-48.1 0-89.9 33.3-100.4 80.3-10.6-47-52.3-80.3-100.4-80.3H48c-26.5 0-48 21.5-48 48v245.8c0 26.5 21.5 48 48 48h89.7c102.2 0 132.7 24.4 147.3 75 .7 2.8 5.2 2.8 6 0 14.7-50.6 45.2-75 147.3-75H528c26.5 0 48-21.5 48-48V94.6c0-26.4-21.3-47.9-47.7-48.1zM242 311.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5V289c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V251zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm259.3 121.7c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5V228c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.8c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V190z"] }; +var faRebel = { prefix: 'fab', iconName: 'rebel', icon: [512, 512, [], "f1d0", "M256.5 504C117.2 504 9 387.8 13.2 249.9 16 170.7 56.4 97.7 129.7 49.5c.3 0 1.9-.6 1.1.8-5.8 5.5-111.3 129.8-14.1 226.4 49.8 49.5 90 2.5 90 2.5 38.5-50.1-.6-125.9-.6-125.9-10-24.9-45.7-40.1-45.7-40.1l28.8-31.8c24.4 10.5 43.2 38.7 43.2 38.7.8-29.6-21.9-61.4-21.9-61.4L255.1 8l44.3 50.1c-20.5 28.8-21.9 62.6-21.9 62.6 13.8-23 43.5-39.3 43.5-39.3l28.5 31.8c-27.4 8.9-45.4 39.9-45.4 39.9-15.8 28.5-27.1 89.4.6 127.3 32.4 44.6 87.7-2.8 87.7-2.8 102.7-91.9-10.5-225-10.5-225-6.1-5.5.8-2.8.8-2.8 50.1 36.5 114.6 84.4 116.2 204.8C500.9 400.2 399 504 256.5 504z"] }; +var faRedRiver = { prefix: 'fab', iconName: 'red-river', icon: [448, 512, [], "f3e3", "M353.2 32H94.8C42.4 32 0 74.4 0 126.8v258.4C0 437.6 42.4 480 94.8 480h258.4c52.4 0 94.8-42.4 94.8-94.8V126.8c0-52.4-42.4-94.8-94.8-94.8zM144.9 200.9v56.3c0 27-21.9 48.9-48.9 48.9V151.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9h-56.3c-12.3-.6-24.6 11.6-24 24zm176.3 72h-56.3c-12.3-.6-24.6 11.6-24 24v56.3c0 27-21.9 48.9-48.9 48.9V247.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9z"] }; +var faReddit = { prefix: 'fab', iconName: 'reddit', icon: [512, 512, [], "f1a1", "M201.5 305.5c-13.8 0-24.9-11.1-24.9-24.6 0-13.8 11.1-24.9 24.9-24.9 13.6 0 24.6 11.1 24.6 24.9 0 13.6-11.1 24.6-24.6 24.6zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-132.3-41.2c-9.4 0-17.7 3.9-23.8 10-22.4-15.5-52.6-25.5-86.1-26.6l17.4-78.3 55.4 12.5c0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.3 24.9-24.9s-11.1-24.9-24.9-24.9c-9.7 0-18 5.8-22.1 13.8l-61.2-13.6c-3-.8-6.1 1.4-6.9 4.4l-19.1 86.4c-33.2 1.4-63.1 11.3-85.5 26.8-6.1-6.4-14.7-10.2-24.1-10.2-34.9 0-46.3 46.9-14.4 62.8-1.1 5-1.7 10.2-1.7 15.5 0 52.6 59.2 95.2 132 95.2 73.1 0 132.3-42.6 132.3-95.2 0-5.3-.6-10.8-1.9-15.8 31.3-16 19.8-62.5-14.9-62.5zM302.8 331c-18.2 18.2-76.1 17.9-93.6 0-2.2-2.2-6.1-2.2-8.3 0-2.5 2.5-2.5 6.4 0 8.6 22.8 22.8 87.3 22.8 110.2 0 2.5-2.2 2.5-6.1 0-8.6-2.2-2.2-6.1-2.2-8.3 0zm7.7-75c-13.6 0-24.6 11.1-24.6 24.9 0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.1 24.9-24.6 0-13.8-11-24.9-24.9-24.9z"] }; +var faRedditAlien = { prefix: 'fab', iconName: 'reddit-alien', icon: [512, 512, [], "f281", "M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2.1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z"] }; +var faRedditSquare = { prefix: 'fab', iconName: 'reddit-square', icon: [448, 512, [], "f1a2", "M283.2 345.5c2.7 2.7 2.7 6.8 0 9.2-24.5 24.5-93.8 24.6-118.4 0-2.7-2.4-2.7-6.5 0-9.2 2.4-2.4 6.5-2.4 8.9 0 18.7 19.2 81 19.6 100.5 0 2.4-2.3 6.6-2.3 9 0zm-91.3-53.8c0-14.9-11.9-26.8-26.5-26.8-14.9 0-26.8 11.9-26.8 26.8 0 14.6 11.9 26.5 26.8 26.5 14.6 0 26.5-11.9 26.5-26.5zm90.7-26.8c-14.6 0-26.5 11.9-26.5 26.8 0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-11.9 26.8-26.5 0-14.9-11.9-26.8-26.8-26.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-99.7 140.6c-10.1 0-19 4.2-25.6 10.7-24.1-16.7-56.5-27.4-92.5-28.6l18.7-84.2 59.5 13.4c0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-12.2 26.8-26.8 0-14.6-11.9-26.8-26.8-26.8-10.4 0-19.3 6.2-23.8 14.9l-65.7-14.6c-3.3-.9-6.5 1.5-7.4 4.8l-20.5 92.8c-35.7 1.5-67.8 12.2-91.9 28.9-6.5-6.8-15.8-11-25.9-11-37.5 0-49.8 50.4-15.5 67.5-1.2 5.4-1.8 11-1.8 16.7 0 56.5 63.7 102.3 141.9 102.3 78.5 0 142.2-45.8 142.2-102.3 0-5.7-.6-11.6-2.1-17 33.6-17.2 21.2-67.2-16.1-67.2z"] }; +var faRendact = { prefix: 'fab', iconName: 'rendact', icon: [496, 512, [], "f3e4", "M248 8C111 8 0 119 0 256s111 248 248 248c18.6 0 36.7-2.1 54.1-5.9-5.6-7.4-10.8-14.4-15.9-21.3-12.4 2.1-25.2 3.3-38.3 3.3C124.3 480 24 379.7 24 256S124.3 32 248 32s224 100.3 224 224c0 71-33 134.2-84.5 175.3-25.9 18.8-39.1 21.4-83.5-44.2-78.7-112.9-48-71.1-73.7-108.3 72.8 8.9 228.5-72 168.6-168.6C314-26.8 15 93.8 59.7 226.4c3.2 9.8 14.4 38.6 45.6 38.6 2 0 2.6-.6 2-1.7-4.4-8.7-20.1-9.8-20.1-37.4 0-40.5 40.5-89.6 100.3-120 66.1-32.3 131.9-30.2 158.2 5.4 27.2 38.3-20.9 119.2-120.4 136.9 7.5-9.4 57-75.2 62.8-84 22.7-34.6 23.6-49 14-59.2-15.5-16.9-29.5-10.3-50.7-11.7-10.8-.9-113.7 181.2-136.4 216.9-5.9 9-21.2 34.1-21.2 50.9 0 21.3 2.8 51.4 20.6 51.4 10.6 0 8-18.7 8-26.6 0-12.9 27.4-49.4 74.8-104.6 20.4 36.1 57.7 114.3 130.2 209.7 98-33.1 168.5-125.8 168.5-235C496 119 385 8 248 8z"] }; +var faRenren = { prefix: 'fab', iconName: 'renren', icon: [512, 512, [], "f18b", "M214 169.1c0 110.4-61 205.4-147.6 247.4C30 373.2 8 317.7 8 256.6 8 133.9 97.1 32.2 214 12.5v156.6zM255 504c-42.9 0-83.3-11-118.5-30.4C193.7 437.5 239.9 382.9 255 319c15.5 63.9 61.7 118.5 118.8 154.7C338.7 493 298.3 504 255 504zm190.6-87.5C359 374.5 298 279.6 298 169.1V12.5c116.9 19.7 206 121.4 206 244.1 0 61.1-22 116.6-58.4 159.9z"] }; +var faReplyd = { prefix: 'fab', iconName: 'replyd', icon: [448, 512, [], "f3e6", "M320 480H128C57.6 480 0 422.4 0 352V160C0 89.6 57.6 32 128 32h192c70.4 0 128 57.6 128 128v192c0 70.4-57.6 128-128 128zM193.4 273.2c-6.1-2-11.6-3.1-16.4-3.1-7.2 0-13.5 1.9-18.9 5.6-5.4 3.7-9.6 9-12.8 15.8h-1.1l-4.2-18.3h-28v138.9h36.1v-89.7c1.5-5.4 4.4-9.8 8.7-13.2 4.3-3.4 9.8-5.1 16.2-5.1 4.6 0 9.8 1 15.6 3.1l4.8-34zm115.2 103.4c-3.2 2.4-7.7 4.8-13.7 7.1-6 2.3-12.8 3.5-20.4 3.5-12.2 0-21.1-3-26.5-8.9-5.5-5.9-8.5-14.7-9-26.4h83.3c.9-4.8 1.6-9.4 2.1-13.9.5-4.4.7-8.6.7-12.5 0-10.7-1.6-19.7-4.7-26.9-3.2-7.2-7.3-13-12.5-17.2-5.2-4.3-11.1-7.3-17.8-9.2-6.7-1.8-13.5-2.8-20.6-2.8-21.1 0-37.5 6.1-49.2 18.3s-17.5 30.5-17.5 55c0 22.8 5.2 40.7 15.6 53.7 10.4 13.1 26.8 19.6 49.2 19.6 10.7 0 20.9-1.5 30.4-4.6 9.5-3.1 17.1-6.8 22.6-11.2l-12-23.6zm-21.8-70.3c3.8 5.4 5.3 13.1 4.6 23.1h-51.7c.9-9.4 3.7-17 8.2-22.6 4.5-5.6 11.5-8.5 21-8.5 8.2-.1 14.1 2.6 17.9 8zm79.9 2.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4s2 11.7 6.1 15.6zm0 100.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4 0 6.6 2 11.7 6.1 15.6z"] }; +var faResearchgate = { prefix: 'fab', iconName: 'researchgate', icon: [448, 512, [], "f4f8", "M0 32v448h448V32H0zm262.2 334.4c-6.6 3-33.2 6-50-14.2-9.2-10.6-25.3-33.3-42.2-63.6-8.9 0-14.7 0-21.4-.6v46.4c0 23.5 6 21.2 25.8 23.9v8.1c-6.9-.3-23.1-.8-35.6-.8-13.1 0-26.1.6-33.6.8v-8.1c15.5-2.9 22-1.3 22-23.9V225c0-22.6-6.4-21-22-23.9V193c25.8 1 53.1-.6 70.9-.6 31.7 0 55.9 14.4 55.9 45.6 0 21.1-16.7 42.2-39.2 47.5 13.6 24.2 30 45.6 42.2 58.9 7.2 7.8 17.2 14.7 27.2 14.7v7.3zm22.9-135c-23.3 0-32.2-15.7-32.2-32.2V167c0-12.2 8.8-30.4 34-30.4s30.4 17.9 30.4 17.9l-10.7 7.2s-5.5-12.5-19.7-12.5c-7.9 0-19.7 7.3-19.7 19.7v26.8c0 13.4 6.6 23.3 17.9 23.3 14.1 0 21.5-10.9 21.5-26.8h-17.9v-10.7h30.4c0 20.5 4.7 49.9-34 49.9zm-116.5 44.7c-9.4 0-13.6-.3-20-.8v-69.7c6.4-.6 15-.6 22.5-.6 23.3 0 37.2 12.2 37.2 34.5 0 21.9-15 36.6-39.7 36.6z"] }; +var faResolving = { prefix: 'fab', iconName: 'resolving', icon: [496, 512, [], "f3e7", "M281.2 278.2c46-13.3 49.6-23.5 44-43.4L314 195.5c-6.1-20.9-18.4-28.1-71.1-12.8L54.7 236.8l28.6 98.6 197.9-57.2zM248.5 8C131.4 8 33.2 88.7 7.2 197.5l221.9-63.9c34.8-10.2 54.2-11.7 79.3-8.2 36.3 6.1 52.7 25 61.4 55.2l10.7 37.8c8.2 28.1 1 50.6-23.5 73.6-19.4 17.4-31.2 24.5-61.4 33.2L203 351.8l220.4 27.1 9.7 34.2-48.1 13.3-286.8-37.3 23 80.2c36.8 22 80.3 34.7 126.3 34.7 137 0 248.5-111.4 248.5-248.3C497 119.4 385.5 8 248.5 8zM38.3 388.6L0 256.8c0 48.5 14.3 93.4 38.3 131.8z"] }; +var faRev = { prefix: 'fab', iconName: 'rev', icon: [410, 512, [], "f5b2", "M270.67 274.89c0 36.16-29.41 65.57-65.56 65.57s-65.57-29.41-65.57-65.57 29.41-65.56 65.57-65.56 65.56 29.4 65.56 65.56zm139.55-5.05h-.13c-1.49-61.55-30.1-116.35-74.32-152.98l-45.38 26.2c43.17 28.03 71.81 76.63 71.81 131.82 0 86.62-70.47 157.09-157.09 157.09S48.02 361.5 48.02 274.88c0-81.86 62.96-149.27 142.99-156.43v39.12l108.76-62.79L191.01 32v38.32C84.31 77.57 0 166.36 0 274.89c0 111.59 89.12 202.29 200.06 204.98v.13h210.16V269.84z"] }; +var faRocketchat = { prefix: 'fab', iconName: 'rocketchat', icon: [448, 512, [], "f3e8", "M448 256.2c0-87.2-99.6-153.3-219.8-153.3-18.8 0-37.3 1.6-55.3 4.8-11.1-10.5-24.2-20-38-27.4C61.2 44.2 0 79.4 0 79.4s56.9 47.1 47.6 88.3c-52.3 52.3-52.5 124.1 0 176.6C56.9 385.6 0 432.6 0 432.6s61.2 35.2 134.9-.8c13.8-7.5 26.9-16.9 38-27.4 18 3.2 36.5 4.8 55.3 4.8 120.3-.1 219.8-65.8 219.8-153zm-219.7 124c-23.7 0-46.3-2.8-67.3-7.8-21.3 25.8-68.1 61.7-113.6 50.1 14.8-16 36.7-43.1 32-87.6-27.3-21.4-43.6-48.7-43.6-78.5 0-68.4 86.2-123.9 192.5-123.9S420.8 188 420.8 256.4c0 68.3-86.2 123.8-192.5 123.8zm25.6-123.9c0 14.2-11.5 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.5-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm88.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm-177.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.2 0 25.6 11.6 25.6 25.8z"] }; +var faRockrms = { prefix: 'fab', iconName: 'rockrms', icon: [496, 512, [], "f3e9", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm157.4 419.5h-90l-112-131.3c-17.9-20.4-3.9-56.1 26.6-56.1h75.3l-84.6-99.3-84.3 98.9h-90L193.5 67.2c14.4-18.4 41.3-17.3 54.5 0l157.7 185.1c19 22.8 2 57.2-27.6 56.1-.6 0-74.2.2-74.2.2l101.5 118.9z"] }; +var faSafari = { prefix: 'fab', iconName: 'safari', icon: [512, 512, [], "f267", "M236.9 256.8c0-9.1 6.6-17.7 16.3-17.7 8.9 0 17.4 6.4 17.4 16.1 0 9.1-6.4 17.7-16.1 17.7-9 0-17.6-6.7-17.6-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-26.6 0c0-122.3-99.1-221.4-221.4-221.4S34.6 133.7 34.6 256 133.7 477.4 256 477.4 477.4 378.3 477.4 256zm-72.5 96.6c0 3.6 13 10.2 16.3 12.2-27.4 41.5-69.8 71.4-117.9 83.3l-4.4-18.5c-.3-2.5-1.9-2.8-4.2-2.8-1.9 0-3 2.8-2.8 4.2l4.4 18.8c-13.3 2.8-26.8 4.2-40.4 4.2-36.3 0-72-10.2-103-29.1 1.7-2.8 12.2-18 12.2-20.2 0-1.9-1.7-3.6-3.6-3.6-3.9 0-12.2 16.6-14.7 19.9-41.8-27.7-72-70.6-83.6-119.6l19.1-4.2c2.2-.6 2.8-2.2 2.8-4.2 0-1.9-2.8-3-4.4-2.8L62 294.5c-2.5-12.7-3.9-25.5-3.9-38.5 0-37.1 10.5-73.6 30.2-104.9 2.8 1.7 16.1 10.8 18.3 10.8 1.9 0 3.6-1.4 3.6-3.3 0-3.9-14.7-11.3-18-13.6 28.2-41.2 71.1-70.9 119.8-81.9l4.2 18.5c.6 2.2 2.2 2.8 4.2 2.8s3-2.8 2.8-4.4L219 61.7c12.2-2.2 24.6-3.6 37.1-3.6 37.1 0 73.3 10.5 104.9 30.2-1.9 2.8-10.8 15.8-10.8 18 0 1.9 1.4 3.6 3.3 3.6 3.9 0 11.3-14.4 13.3-17.7 41 27.7 70.3 70 81.7 118.2l-15.5 3.3c-2.5.6-2.8 2.2-2.8 4.4 0 1.9 2.8 3 4.2 2.8l15.8-3.6c2.5 12.7 3.9 25.7 3.9 38.7 0 36.3-10 72-28.8 102.7-2.8-1.4-14.4-9.7-16.6-9.7-2.1 0-3.8 1.7-3.8 3.6zm-33.2-242.2c-13 12.2-134.2 123.7-137.6 129.5l-96.6 160.5c12.7-11.9 134.2-124 137.3-129.3l96.9-160.7z"] }; +var faSass = { prefix: 'fab', iconName: 'sass', icon: [640, 512, [], "f41e", "M551.1 291.9c-22.4.1-41.8 5.5-58 13.5-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-3.8 11.1-5.3 19.1-2.3 11.7-25.8 53.5-39.1 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-2.7 11.4-5.3 19.1-2.6 7.7-33.9 77.3-42.1 95.4-4.2 9.2-7.8 16.6-10.4 21.6s-.2.3-.4.9c-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4.3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2-.8 0-1.4 2-1.4 2s10.1-42.4-19.4-42.4c-18.4 0-44 20.2-56.6 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.8-38.2-101.9-65.2-99.1-116.5 1-18.7 7.5-67.8 127.1-127.4 98-48.8 176.4-35.4 189.9-5.6 19.4 42.5-41.9 121.6-143.7 133-38.8 4.3-59.2-10.7-64.3-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.8 28.9 18.7 6.1 64.2 9.5 119.2-11.8C367 196.5 415.1 130.2 401 74.7 386.6 18.3 293.1-.2 204.6 31.2 151.9 49.9 94.9 79.3 53.9 117.6 5.2 163.2-2.6 202.9.6 219.5c11.4 58.9 92.6 97.3 125.1 125.7-1.6.9-3.1 1.7-4.5 2.5-16.3 8.1-78.2 40.5-93.7 74.7-17.5 38.8 2.9 66.6 16.3 70.4 41.8 11.6 84.6-9.3 107.6-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.3-4.9 16.4-9.4 23.5-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.5 5 15.4 5 13.8 0 20-11.4 26.9-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.4 0 18.8-12.1 23-18.3v.1s.2-.4.7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.6-46 16.2-31.8 31.7-71.5 31.7-71.5s1.4 9.7 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2s0 .1.1.2c-3 4-6.4 8.3-9.9 12.5-12.8 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.7 2.5 11.5-.8 19.6-3.6 23.5-5.4 6.2-2.2 13.4-5.7 20.2-10.6 12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5 19.8-28.9 35.1-60.6 35.1-60.6s1.4 9.7 6.2 25.8c2.4 8.1 7.1 17 11.4 25.7-18.6 15.1-30.1 32.6-34.1 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5 6.5-2.2 14.3-5.7 21.6-11.1 12.5-9.2 24.6-22.1 23.8-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.1-10.2 62.1-7.2 55.7 6.5 66.6 41.3 64.5 55.8-2.1 14.6-13.8 22.6-17.7 25-3.9 2.4-5.1 3.3-4.8 5.1.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.2-11.8 30.3-38.7 1.6-34-31.1-71.4-89-71.1zM121.8 436.6c-18.4 20.1-44.2 27.7-55.3 21.3C54.6 451 59.3 421.4 82 400c13.8-13 31.6-25 43.4-32.4 2.7-1.6 6.6-4 11.4-6.9.8-.5 1.2-.7 1.2-.7.9-.6 1.9-1.1 2.9-1.7 8.3 30.4.3 57.2-19.1 78.3zm134.4-91.4c-6.4 15.7-19.9 55.7-28.1 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.1-11.3 21.2-14.9 23.8-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.9-13.9 0 .5.1 1 .1 1.6-.1 17.9-17.3 30-25.1 34.8zm85.6-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.6-15.3 19-24.5 1.2 3.8 1.9 7.4 1.9 10.8-.1 22.5-16.2 30.9-25.9 34.4z"] }; +var faSchlix = { prefix: 'fab', iconName: 'schlix', icon: [448, 512, [], "f3ea", "M350.5 157.7l-54.2-46.1 73.4-39 78.3 44.2-97.5 40.9zM192 122.1l45.7-28.2 34.7 34.6-55.4 29-25-35.4zm-65.1 6.6l31.9-22.1L176 135l-36.7 22.5-12.4-28.8zm-23.3 88.2l-8.8-34.8 29.6-18.3 13.1 35.3-33.9 17.8zm-21.2-83.7l23.9-18.1 8.9 24-26.7 18.3-6.1-24.2zM59 206.5l-3.6-28.4 22.3-15.5 6.1 28.7L59 206.5zm-30.6 16.6l20.8-12.8 3.3 33.4-22.9 12-1.2-32.6zM1.4 268l19.2-10.2.4 38.2-21 8.8L1.4 268zm59.1 59.3l-28.3 8.3-1.6-46.8 25.1-10.7 4.8 49.2zM99 263.2l-31.1 13-5.2-40.8L90.1 221l8.9 42.2zM123.2 377l-41.6 5.9-8.1-63.5 35.2-10.8 14.5 68.4zm28.5-139.9l21.2 57.1-46.2 13.6-13.7-54.1 38.7-16.6zm85.7 230.5l-70.9-3.3-24.3-95.8 55.2-8.6 40 107.7zm-84.9-279.7l42.2-22.4 28 45.9-50.8 21.3-19.4-44.8zm41 94.9l61.3-18.7 52.8 86.6-79.8 11.3-34.3-79.2zm51.4-85.6l67.3-28.8 65.5 65.4-88.6 26.2-44.2-62.8z"] }; +var faScribd = { prefix: 'fab', iconName: 'scribd', icon: [384, 512, [], "f28a", "M42.3 252.7c-16.1-19-24.7-45.9-24.8-79.9 0-100.4 75.2-153.1 167.2-153.1 98.6-1.6 156.8 49 184.3 70.6l-50.5 72.1-37.3-24.6 26.9-38.6c-36.5-24-79.4-36.5-123-35.8-50.7-.8-111.7 27.2-111.7 76.2 0 18.7 11.2 20.7 28.6 15.6 23.3-5.3 41.9.6 55.8 14 26.4 24.3 23.2 67.6-.7 91.9-29.2 29.5-85.2 27.3-114.8-8.4zm317.7 5.9c-15.5-18.8-38.9-29.4-63.2-28.6-38.1-2-71.1 28-70.5 67.2-.7 16.8 6 33 18.4 44.3 14.1 13.9 33 19.7 56.3 14.4 17.4-5.1 28.6-3.1 28.6 15.6 0 4.3-.5 8.5-1.4 12.7-16.7 40.9-59.5 64.4-121.4 64.4-51.9.2-102.4-16.4-144.1-47.3l33.7-39.4-35.6-27.4L0 406.3l15.4 13.8c52.5 46.8 120.4 72.5 190.7 72.2 51.4 0 94.4-10.5 133.6-44.1 57.1-51.4 54.2-149.2 20.3-189.6z"] }; +var faSearchengin = { prefix: 'fab', iconName: 'searchengin', icon: [460, 512, [], "f3eb", "M220.6 130.3l-67.2 28.2V43.2L98.7 233.5l54.7-24.2v130.3l67.2-209.3zm-83.2-96.7l-1.3 4.7-15.2 52.9C80.6 106.7 52 145.8 52 191.5c0 52.3 34.3 95.9 83.4 105.5v53.6C57.5 340.1 0 272.4 0 191.6c0-80.5 59.8-147.2 137.4-158zm311.4 447.2c-11.2 11.2-23.1 12.3-28.6 10.5-5.4-1.8-27.1-19.9-60.4-44.4-33.3-24.6-33.6-35.7-43-56.7-9.4-20.9-30.4-42.6-57.5-52.4l-9.7-14.7c-24.7 16.9-53 26.9-81.3 28.7l2.1-6.6 15.9-49.5c46.5-11.9 80.9-54 80.9-104.2 0-54.5-38.4-102.1-96-107.1V32.3C254.4 37.4 320 106.8 320 191.6c0 33.6-11.2 64.7-29 90.4l14.6 9.6c9.8 27.1 31.5 48 52.4 57.4s32.2 9.7 56.8 43c24.6 33.2 42.7 54.9 44.5 60.3s.7 17.3-10.5 28.5zm-9.9-17.9c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8z"] }; +var faSellcast = { prefix: 'fab', iconName: 'sellcast', icon: [448, 512, [], "f2da", "M353.4 32H94.7C42.6 32 0 74.6 0 126.6v258.7C0 437.4 42.6 480 94.7 480h258.7c52.1 0 94.7-42.6 94.7-94.6V126.6c0-52-42.6-94.6-94.7-94.6zm-50 316.4c-27.9 48.2-89.9 64.9-138.2 37.2-22.9 39.8-54.9 8.6-42.3-13.2l15.7-27.2c5.9-10.3 19.2-13.9 29.5-7.9 18.6 10.8-.1-.1 18.5 10.7 27.6 15.9 63.4 6.3 79.4-21.3 15.9-27.6 6.3-63.4-21.3-79.4-17.8-10.2-.6-.4-18.6-10.6-24.6-14.2-3.4-51.9 21.6-37.5 18.6 10.8-.1-.1 18.5 10.7 48.4 28 65.1 90.3 37.2 138.5zm21.8-208.8c-17 29.5-16.3 28.8-19 31.5-6.5 6.5-16.3 8.7-26.5 3.6-18.6-10.8.1.1-18.5-10.7-27.6-15.9-63.4-6.3-79.4 21.3s-6.3 63.4 21.3 79.4c0 0 18.5 10.6 18.6 10.6 24.6 14.2 3.4 51.9-21.6 37.5-18.6-10.8.1.1-18.5-10.7-48.2-27.8-64.9-90.1-37.1-138.4 27.9-48.2 89.9-64.9 138.2-37.2l4.8-8.4c14.3-24.9 52-3.3 37.7 21.5z"] }; +var faSellsy = { prefix: 'fab', iconName: 'sellsy', icon: [640, 512, [], "f213", "M539.71 237.308c3.064-12.257 4.29-24.821 4.29-37.384C544 107.382 468.618 32 376.076 32c-77.22 0-144.634 53.012-163.02 127.781-15.322-13.176-34.934-20.53-55.157-20.53-46.271 0-83.962 37.69-83.962 83.961 0 7.354.92 15.015 3.065 22.369-42.9 20.225-70.785 63.738-70.785 111.234C6.216 424.843 61.68 480 129.401 480h381.198c67.72 0 123.184-55.157 123.184-123.184.001-56.384-38.916-106.025-94.073-119.508zM199.88 401.554c0 8.274-7.048 15.321-15.321 15.321H153.61c-8.274 0-15.321-7.048-15.321-15.321V290.626c0-8.273 7.048-15.321 15.321-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v110.928zm89.477 0c0 8.274-7.048 15.321-15.322 15.321h-30.949c-8.274 0-15.321-7.048-15.321-15.321V270.096c0-8.274 7.048-15.321 15.321-15.321h30.949c8.274 0 15.322 7.048 15.322 15.321v131.458zm89.477 0c0 8.274-7.047 15.321-15.321 15.321h-30.949c-8.274 0-15.322-7.048-15.322-15.321V238.84c0-8.274 7.048-15.321 15.322-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v162.714zm87.027 0c0 8.274-7.048 15.321-15.322 15.321h-28.497c-8.274 0-15.321-7.048-15.321-15.321V176.941c0-8.579 7.047-15.628 15.321-15.628h28.497c8.274 0 15.322 7.048 15.322 15.628v224.613z"] }; +var faServicestack = { prefix: 'fab', iconName: 'servicestack', icon: [496, 512, [], "f3ec", "M88 216c81.7 10.2 273.7 102.3 304 232H0c99.5-8.1 184.5-137 88-232zm32-152c32.3 35.6 47.7 83.9 46.4 133.6C249.3 231.3 373.7 321.3 400 448h96C455.3 231.9 222.8 79.5 120 64z"] }; +var faShirtsinbulk = { prefix: 'fab', iconName: 'shirtsinbulk', icon: [448, 512, [], "f214", "M395.208 221.583H406v33.542h-10.792v-33.542zm0-9.625H406v-33.542h-10.792v33.542zm0 86.333H406V264.75h-10.792v33.541zM358.75 135.25h-33.542v10.5h33.542v-10.5zm36.458 206.208H406v-33.542h-10.792v33.542zM311.5 135.25h-33.542v10.5H311.5v-10.5zm-47.25 0H231v10.5h33.25v-10.5zm-47.25 0h-33.25v10.5H217v-10.5zm178.208 33.542H406V135.25h-33.542v10.5h22.75v23.042zm-255.792 259l30.625 13.417 4.375-9.917-30.625-13.417-4.375 9.917zM179.083 445l30.334 13.708 4.374-9.916-30.333-13.417-4.375 9.625zm216.125-60.375H406v-33.542h-10.792v33.542zm-334.833 8.167L91 406.208l4.375-9.624-30.625-13.709-4.375 9.917zm39.666 17.499l30.625 13.417 4.375-9.917-30.625-13.416-4.375 9.916zm132.417 38.501l4.375 9.916L267.459 445l-4.375-9.625-30.626 13.417zm118.417-52.208l4.375 9.624 30.624-13.416-4.374-9.917-30.625 13.709zM311.5 413.791l4.375 9.917 30.625-13.417-4.374-9.916-30.626 13.416zm-39.667 17.501l4.375 9.917 30.625-13.417-4.375-9.917-30.625 13.417zM311.5 46.583h-33.542v10.5H311.5v-10.5zm94.209 0h-33.251v10.5h33.251v-10.5zm-188.709 0h-33.25v10.5H217v-10.5zm141.75 0h-33.542v10.5h33.542v-10.5zm-94.5 0H231v10.5h33.25v-10.5zM448 3.708v406l-226.334 98.584L0 409.708v-406h448zm-29.166 116.958H29.166V390.75l192.792 85.75 196.875-85.75V120.666zm0-87.791H29.166V91.5h389.667V32.875zM75.542 46.583H42.291v10.5h33.251v-10.5zm94.5 0H136.5v10.5h33.542v-10.5zm-47.251 0H89.25v10.5h33.542v-10.5zm7.584 236.542c0-50.167 41.125-91.292 91.292-91.292 50.458 0 91.292 41.125 91.292 91.292 0 50.458-40.833 91.292-91.292 91.292-50.167-.001-91.292-40.834-91.292-91.292zm120.75 18.084c0 13.125-23.917 14.291-32.666 14.291-12.25 0-29.75-2.625-35.875-14.875h-.875L172.666 319c14.876 9.333 29.167 12.25 47.25 12.25 19.542 0 51.042-5.833 51.042-31.209 0-48.125-78.458-16.333-78.458-37.916 0-13.125 20.708-14.875 29.75-14.875 10.791 0 29.166 3.208 35.583 13.124h.875l8.751-16.916c-15.167-6.125-27.417-11.959-44.334-11.959-20.125 0-49.583 6.417-49.583 31.792 0 44.334 77.583 11.959 77.583 37.918zM122.791 135.25H89.25v10.5h33.542v-10.5zm-69.999 10.5h22.75v-10.5H42v33.542h10.792V145.75zm0 32.666H42v33.542h10.792v-33.542zm117.25-43.166H136.5v10.5h33.542v-10.5zm-117.25 86.333H42v33.542h10.792v-33.542zm0 86.334H42v33.542h10.792v-33.542zm0-43.167H42v33.542h10.792V264.75zm0 86.333H42v33.542h10.792v-33.542z"] }; +var faShopware = { prefix: 'fab', iconName: 'shopware', icon: [495, 512, [], "f5b5", "M395.5 455.27c-42.95 31.79-93.95 48.59-147.48 48.59-137.21 0-248.02-111-248.02-248 0-137.19 111.04-248 248.02-248 61.3 0 120.14 22.55 165.68 63.5 2.62 2.36.58 6.64-2.86 6.18-17.67-2.43-36.75-3.66-56.71-3.66-129.36 0-222.4 53.47-222.4 155.35 0 109.04 92.13 145.88 176.83 178.73 33.64 13.04 65.4 25.36 86.96 41.59 1.9 1.44 1.89 4.31-.02 5.72zm99.46-222.32c-.08-.94-.55-1.83-1.27-2.44-51.76-42.96-93.62-60.48-144.48-60.48-84.13 0-80.25 52.17-80.25 53.63 0 42.6 52.06 62.01 112.34 84.49 31.07 11.59 63.19 23.57 92.68 39.93 1.88 1.05 4.26.19 5.05-1.82 18.89-48.39 17.94-90.23 15.93-113.31z"] }; +var faSimplybuilt = { prefix: 'fab', iconName: 'simplybuilt', icon: [512, 512, [], "f215", "M481.2 64h-106c-14.5 0-26.6 11.8-26.6 26.3v39.6H163.3V90.3c0-14.5-12-26.3-26.6-26.3h-106C16.1 64 4.3 75.8 4.3 90.3v331.4c0 14.5 11.8 26.3 26.6 26.3h450.4c14.8 0 26.6-11.8 26.6-26.3V90.3c-.2-14.5-12-26.3-26.7-26.3zM149.8 355.8c-36.6 0-66.4-29.7-66.4-66.4 0-36.9 29.7-66.6 66.4-66.6 36.9 0 66.6 29.7 66.6 66.6 0 36.7-29.7 66.4-66.6 66.4zm212.4 0c-36.9 0-66.6-29.7-66.6-66.6 0-36.6 29.7-66.4 66.6-66.4 36.6 0 66.4 29.7 66.4 66.4 0 36.9-29.8 66.6-66.4 66.6z"] }; +var faSistrix = { prefix: 'fab', iconName: 'sistrix', icon: [448, 512, [], "f3ee", "M448 449L301.2 300.2c20-27.9 31.9-62.2 31.9-99.2 0-93.1-74.7-168.9-166.5-168.9C74.7 32 0 107.8 0 200.9s74.7 168.9 166.5 168.9c39.8 0 76.3-14.2 105-37.9l146 148.1 30.5-31zM166.5 330.8c-70.6 0-128.1-58.3-128.1-129.9S95.9 71 166.5 71s128.1 58.3 128.1 129.9-57.4 129.9-128.1 129.9z"] }; +var faSith = { prefix: 'fab', iconName: 'sith', icon: [448, 512, [], "f512", "M0 32l69.71 118.75-58.86-11.52 69.84 91.03a146.741 146.741 0 0 0 0 51.45l-69.84 91.03 58.86-11.52L0 480l118.75-69.71-11.52 58.86 91.03-69.84c17.02 3.04 34.47 3.04 51.48 0l91.03 69.84-11.52-58.86L448 480l-69.71-118.78 58.86 11.52-69.84-91.03c3.03-17.01 3.04-34.44 0-51.45l69.84-91.03-58.86 11.52L448 32l-118.75 69.71 11.52-58.9-91.06 69.87c-8.5-1.52-17.1-2.29-25.71-2.29s-17.21.78-25.71 2.29l-91.06-69.87 11.52 58.9L0 32zm224 99.78c31.8 0 63.6 12.12 87.85 36.37 48.5 48.5 48.49 127.21 0 175.7s-127.2 48.46-175.7-.03c-48.5-48.5-48.49-127.21 0-175.7 24.24-24.25 56.05-36.34 87.85-36.34zm0 36.66c-22.42 0-44.83 8.52-61.92 25.61-34.18 34.18-34.19 89.68 0 123.87s89.65 34.18 123.84 0c34.18-34.18 34.19-89.68 0-123.87-17.09-17.09-39.5-25.61-61.92-25.61z"] }; +var faSkyatlas = { prefix: 'fab', iconName: 'skyatlas', icon: [640, 512, [], "f216", "M640 329.3c0 65.9-52.5 114.4-117.5 114.4-165.9 0-196.6-249.7-359.7-249.7-146.9 0-147.1 212.2 5.6 212.2 42.5 0 90.9-17.8 125.3-42.5 5.6-4.1 16.9-16.3 22.8-16.3s10.9 5 10.9 10.9c0 7.8-13.1 19.1-18.7 24.1-40.9 35.6-100.3 61.2-154.7 61.2-83.4.1-154-59-154-144.9s67.5-149.1 152.8-149.1c185.3 0 222.5 245.9 361.9 245.9 99.9 0 94.8-139.7 3.4-139.7-17.5 0-35 11.6-46.9 11.6-8.4 0-15.9-7.2-15.9-15.6 0-11.6 5.3-23.7 5.3-36.3 0-66.6-50.9-114.7-116.9-114.7-53.1 0-80 36.9-88.8 36.9-6.2 0-11.2-5-11.2-11.2 0-5.6 4.1-10.3 7.8-14.4 25.3-28.8 64.7-43.7 102.8-43.7 79.4 0 139.1 58.4 139.1 137.8 0 6.9-.3 13.7-1.2 20.6 11.9-3.1 24.1-4.7 35.9-4.7 60.7 0 111.9 45.3 111.9 107.2z"] }; +var faSkype = { prefix: 'fab', iconName: 'skype', icon: [448, 512, [], "f17e", "M424.7 299.8c2.9-14 4.7-28.9 4.7-43.8 0-113.5-91.9-205.3-205.3-205.3-14.9 0-29.7 1.7-43.8 4.7C161.3 40.7 137.7 32 112 32 50.2 32 0 82.2 0 144c0 25.7 8.7 49.3 23.3 68.2-2.9 14-4.7 28.9-4.7 43.8 0 113.5 91.9 205.3 205.3 205.3 14.9 0 29.7-1.7 43.8-4.7 19 14.6 42.6 23.3 68.2 23.3 61.8 0 112-50.2 112-112 .1-25.6-8.6-49.2-23.2-68.1zm-194.6 91.5c-65.6 0-120.5-29.2-120.5-65 0-16 9-30.6 29.5-30.6 31.2 0 34.1 44.9 88.1 44.9 25.7 0 42.3-11.4 42.3-26.3 0-18.7-16-21.6-42-28-62.5-15.4-117.8-22-117.8-87.2 0-59.2 58.6-81.1 109.1-81.1 55.1 0 110.8 21.9 110.8 55.4 0 16.9-11.4 31.8-30.3 31.8-28.3 0-29.2-33.5-75-33.5-25.7 0-42 7-42 22.5 0 19.8 20.8 21.8 69.1 33 41.4 9.3 90.7 26.8 90.7 77.6 0 59.1-57.1 86.5-112 86.5z"] }; +var faSlack = { prefix: 'fab', iconName: 'slack', icon: [448, 512, [], "f198", "M244.2 217.5l19.3 57.7-59.8 20-19.3-57.7 59.8-20zm41.4 243.7C131.6 507.4 65 471.6 18.8 317.6S8.4 97 162.4 50.8C316.4 4.6 383 40.4 429.2 194.4c46.2 154 10.4 220.6-143.6 266.8zM366.2 265c-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-19.3-57.7 29-9.7c12.2-3.9 18.6-17.2 14.7-29.4-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-59.8 20.1-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l19.3 57.7-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 59.8-20.1 10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 29-9.7c12.2-4.2 18.6-17.5 14.7-29.6z"] }; +var faSlackHash = { prefix: 'fab', iconName: 'slack-hash', icon: [448, 512, [], "f3ef", "M446.2 270.4c-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-30.3-90 45.4-15.1c19.1-6.2 29.1-26.8 23-45.9-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-93.4 31.2-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-45.3 15c-19.1 6.2-29.1 26.8-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l30.3 90L78 354.8c-19 6.2-29.1 26.9-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 93.6-31.3 15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 45.4-15.1c19-6 29.1-26.7 22.9-45.7zm-254.1 47.2l-30.3-90.2 93.5-31.3 30.3 90.2-93.5 31.3z"] }; +var faSlideshare = { prefix: 'fab', iconName: 'slideshare', icon: [512, 512, [], "f1e7", "M249.429 211.436c0 31.716-27.715 57.717-61.717 57.717-34.001 0-61.716-26.001-61.716-57.717 0-32.001 27.715-57.716 61.716-57.716 34.001 0 61.717 25.715 61.717 57.716zm254.294 50.002c-18.286 22.573-53.144 50.288-106.289 72.003C453.722 525.163 260 555.735 263.143 457.446c0 1.714-.286-52.859-.286-93.432-4.285-.858-8.571-2-13.714-3.143 0 40.858-.286 98.289-.286 96.575C252 555.735 58.278 525.163 114.566 333.441c-53.145-21.715-88.003-49.43-106.29-72.003-9.143-13.714.858-28.287 16.001-17.715 2 1.428 4.285 2.857 6.285 4.285V49.716C30.563 22.287 51.135 0 76.565 0h359.157c25.429 0 46.002 22.287 46.002 49.716v198.293l6-4.285c15.143-10.573 25.143 4 15.999 17.714zm-46.572-189.15c0-32.858-10.572-45.716-40.859-45.716H98.566c-31.716 0-40.573 10.858-40.573 45.716v192.293c67.717 35.43 125.72 29.144 157.435 28.001 13.429-.286 22.001 2.286 27.144 7.715 1.689 1.687 10.023 9.446 20.287 17.143 1.143-15.715 10.001-25.715 33.716-24.858 32.287 1.428 91.718 7.715 160.577-29.716V72.288zM331.146 153.72c-34.002 0-61.716 25.715-61.716 57.716 0 31.716 27.715 57.717 61.716 57.717 34.287 0 61.716-26.001 61.716-57.717 0-32.001-27.429-57.716-61.716-57.716z"] }; +var faSnapchat = { prefix: 'fab', iconName: 'snapchat', icon: [496, 512, [], "f2ab", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm169.5 338.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C183.1 100 230.7 96 244.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z"] }; +var faSnapchatGhost = { prefix: 'fab', iconName: 'snapchat-ghost', icon: [512, 512, [], "f2ac", "M510.846 392.673c-5.211 12.157-27.239 21.089-67.36 27.318-2.064 2.786-3.775 14.686-6.507 23.956-1.625 5.566-5.623 8.869-12.128 8.869l-.297-.005c-9.395 0-19.203-4.323-38.852-4.323-26.521 0-35.662 6.043-56.254 20.588-21.832 15.438-42.771 28.764-74.027 27.399-31.646 2.334-58.025-16.908-72.871-27.404-20.714-14.643-29.828-20.582-56.241-20.582-18.864 0-30.736 4.72-38.852 4.72-8.073 0-11.213-4.922-12.422-9.04-2.703-9.189-4.404-21.263-6.523-24.13-20.679-3.209-67.31-11.344-68.498-32.15a10.627 10.627 0 0 1 8.877-11.069c69.583-11.455 100.924-82.901 102.227-85.934.074-.176.155-.344.237-.515 3.713-7.537 4.544-13.849 2.463-18.753-5.05-11.896-26.872-16.164-36.053-19.796-23.715-9.366-27.015-20.128-25.612-27.504 2.437-12.836 21.725-20.735 33.002-15.453 8.919 4.181 16.843 6.297 23.547 6.297 5.022 0 8.212-1.204 9.96-2.171-2.043-35.936-7.101-87.29 5.687-115.969C158.122 21.304 229.705 15.42 250.826 15.42c.944 0 9.141-.089 10.11-.089 52.148 0 102.254 26.78 126.723 81.643 12.777 28.65 7.749 79.792 5.695 116.009 1.582.872 4.357 1.942 8.599 2.139 6.397-.286 13.815-2.389 22.069-6.257 6.085-2.846 14.406-2.461 20.48.058l.029.01c9.476 3.385 15.439 10.215 15.589 17.87.184 9.747-8.522 18.165-25.878 25.018-2.118.835-4.694 1.655-7.434 2.525-9.797 3.106-24.6 7.805-28.616 17.271-2.079 4.904-1.256 11.211 2.46 18.748.087.168.166.342.239.515 1.301 3.03 32.615 74.46 102.23 85.934 6.427 1.058 11.163 7.877 7.725 15.859z"] }; +var faSnapchatSquare = { prefix: 'fab', iconName: 'snapchat-square', icon: [448, 512, [], "f2ad", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6.5 314.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C159.1 100 206.7 96 220.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z"] }; +var faSoundcloud = { prefix: 'fab', iconName: 'soundcloud', icon: [640, 512, [], "f1be", "M111.4 256.3l5.8 65-5.8 68.3c-.3 2.5-2.2 4.4-4.4 4.4s-4.2-1.9-4.2-4.4l-5.6-68.3 5.6-65c0-2.2 1.9-4.2 4.2-4.2 2.2 0 4.1 2 4.4 4.2zm21.4-45.6c-2.8 0-4.7 2.2-5 5l-5 105.6 5 68.3c.3 2.8 2.2 5 5 5 2.5 0 4.7-2.2 4.7-5l5.8-68.3-5.8-105.6c0-2.8-2.2-5-4.7-5zm25.5-24.1c-3.1 0-5.3 2.2-5.6 5.3l-4.4 130 4.4 67.8c.3 3.1 2.5 5.3 5.6 5.3 2.8 0 5.3-2.2 5.3-5.3l5.3-67.8-5.3-130c0-3.1-2.5-5.3-5.3-5.3zM7.2 283.2c-1.4 0-2.2 1.1-2.5 2.5L0 321.3l4.7 35c.3 1.4 1.1 2.5 2.5 2.5s2.2-1.1 2.5-2.5l5.6-35-5.6-35.6c-.3-1.4-1.1-2.5-2.5-2.5zm23.6-21.9c-1.4 0-2.5 1.1-2.5 2.5l-6.4 57.5 6.4 56.1c0 1.7 1.1 2.8 2.5 2.8s2.5-1.1 2.8-2.5l7.2-56.4-7.2-57.5c-.3-1.4-1.4-2.5-2.8-2.5zm25.3-11.4c-1.7 0-3.1 1.4-3.3 3.3L47 321.3l5.8 65.8c.3 1.7 1.7 3.1 3.3 3.1 1.7 0 3.1-1.4 3.1-3.1l6.9-65.8-6.9-68.1c0-1.9-1.4-3.3-3.1-3.3zm25.3-2.2c-1.9 0-3.6 1.4-3.6 3.6l-5.8 70 5.8 67.8c0 2.2 1.7 3.6 3.6 3.6s3.6-1.4 3.9-3.6l6.4-67.8-6.4-70c-.3-2.2-2-3.6-3.9-3.6zm241.4-110.9c-1.1-.8-2.8-1.4-4.2-1.4-2.2 0-4.2.8-5.6 1.9-1.9 1.7-3.1 4.2-3.3 6.7v.8l-3.3 176.7 1.7 32.5 1.7 31.7c.3 4.7 4.2 8.6 8.9 8.6s8.6-3.9 8.6-8.6l3.9-64.2-3.9-177.5c-.4-3-2-5.8-4.5-7.2zm-26.7 15.3c-1.4-.8-2.8-1.4-4.4-1.4s-3.1.6-4.4 1.4c-2.2 1.4-3.6 3.9-3.6 6.7l-.3 1.7-2.8 160.8s0 .3 3.1 65.6v.3c0 1.7.6 3.3 1.7 4.7 1.7 1.9 3.9 3.1 6.4 3.1 2.2 0 4.2-1.1 5.6-2.5 1.7-1.4 2.5-3.3 2.5-5.6l.3-6.7 3.1-58.6-3.3-162.8c-.3-2.8-1.7-5.3-3.9-6.7zm-111.4 22.5c-3.1 0-5.8 2.8-5.8 6.1l-4.4 140.6 4.4 67.2c.3 3.3 2.8 5.8 5.8 5.8 3.3 0 5.8-2.5 6.1-5.8l5-67.2-5-140.6c-.2-3.3-2.7-6.1-6.1-6.1zm376.7 62.8c-10.8 0-21.1 2.2-30.6 6.1-6.4-70.8-65.8-126.4-138.3-126.4-17.8 0-35 3.3-50.3 9.4-6.1 2.2-7.8 4.4-7.8 9.2v249.7c0 5 3.9 8.6 8.6 9.2h218.3c43.3 0 78.6-35 78.6-78.3.1-43.6-35.2-78.9-78.5-78.9zm-296.7-60.3c-4.2 0-7.5 3.3-7.8 7.8l-3.3 136.7 3.3 65.6c.3 4.2 3.6 7.5 7.8 7.5 4.2 0 7.5-3.3 7.5-7.5l3.9-65.6-3.9-136.7c-.3-4.5-3.3-7.8-7.5-7.8zm-53.6-7.8c-3.3 0-6.4 3.1-6.4 6.7l-3.9 145.3 3.9 66.9c.3 3.6 3.1 6.4 6.4 6.4 3.6 0 6.4-2.8 6.7-6.4l4.4-66.9-4.4-145.3c-.3-3.6-3.1-6.7-6.7-6.7zm26.7 3.4c-3.9 0-6.9 3.1-6.9 6.9L227 321.3l3.9 66.4c.3 3.9 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9l4.2-66.4-4.2-141.7c0-3.9-3-6.9-6.9-6.9z"] }; +var faSpeakap = { prefix: 'fab', iconName: 'speakap', icon: [448, 512, [], "f3f3", "M352 32H96C43.2 32 0 75.2 0 128v256c0 52.8 43.2 96 96 96h256c52.8 0 96-43.2 96-96V128c0-52.8-43.2-96-96-96zM221 382.9c-39.6 0-81.9-17.8-81.9-53.7V302H179v17.8c0 15.1 19.5 24.5 41.9 24.5 24.2 0 41.3-10.4 41.3-29.5 0-23.8-27.2-31.9-54.7-42.6-31.9-12.4-63.1-26.2-63.1-69.1 0-48 38.6-66.4 79.9-66.4 37.6 0 75.5 14.1 75.5 41.9v31.2h-39.9v-16.1c0-12.1-17.8-18.5-35.6-18.5-19.5 0-35.6 8.1-35.6 26.2 0 22.1 22.5 29.2 47 38.9 35.9 12.4 71.1 27.2 71.1 71.5.1 48.6-40.8 71.1-85.8 71.1z"] }; +var faSpotify = { prefix: 'fab', iconName: 'spotify', icon: [496, 512, [], "f1bc", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm100.7 364.9c-4.2 0-6.8-1.3-10.7-3.6-62.4-37.6-135-39.2-206.7-24.5-3.9 1-9 2.6-11.9 2.6-9.7 0-15.8-7.7-15.8-15.8 0-10.3 6.1-15.2 13.6-16.8 81.9-18.1 165.6-16.5 237 26.2 6.1 3.9 9.7 7.4 9.7 16.5s-7.1 15.4-15.2 15.4zm26.9-65.6c-5.2 0-8.7-2.3-12.3-4.2-62.5-37-155.7-51.9-238.6-29.4-4.8 1.3-7.4 2.6-11.9 2.6-10.7 0-19.4-8.7-19.4-19.4s5.2-17.8 15.5-20.7c27.8-7.8 56.2-13.6 97.8-13.6 64.9 0 127.6 16.1 177 45.5 8.1 4.8 11.3 11 11.3 19.7-.1 10.8-8.5 19.5-19.4 19.5zm31-76.2c-5.2 0-8.4-1.3-12.9-3.9-71.2-42.5-198.5-52.7-280.9-29.7-3.6 1-8.1 2.6-12.9 2.6-13.2 0-23.3-10.3-23.3-23.6 0-13.6 8.4-21.3 17.4-23.9 35.2-10.3 74.6-15.2 117.5-15.2 73 0 149.5 15.2 205.4 47.8 7.8 4.5 12.9 10.7 12.9 22.6 0 13.6-11 23.3-23.2 23.3z"] }; +var faSquarespace = { prefix: 'fab', iconName: 'squarespace', icon: [512, 512, [], "f5be", "M186.12 343.34c-9.65 9.65-9.65 25.29 0 34.94 9.65 9.65 25.29 9.65 34.94 0L378.24 221.1c19.29-19.29 50.57-19.29 69.86 0s19.29 50.57 0 69.86L293.95 445.1c19.27 19.29 50.53 19.31 69.82.04l.04-.04 119.25-119.24c38.59-38.59 38.59-101.14 0-139.72-38.59-38.59-101.15-38.59-139.72 0l-157.22 157.2zm244.53-104.8c-9.65-9.65-25.29-9.65-34.93 0l-157.2 157.18c-19.27 19.29-50.53 19.31-69.82.05l-.05-.05c-9.64-9.64-25.27-9.65-34.92-.01l-.01.01c-9.65 9.64-9.66 25.28-.02 34.93l.02.02c38.58 38.57 101.14 38.57 139.72 0l157.2-157.2c9.65-9.65 9.65-25.29.01-34.93zm-261.99 87.33l157.18-157.18c9.64-9.65 9.64-25.29 0-34.94-9.64-9.64-25.27-9.64-34.91 0L133.72 290.93c-19.28 19.29-50.56 19.3-69.85.01l-.01-.01c-19.29-19.28-19.31-50.54-.03-69.84l.03-.03L218.03 66.89c-19.28-19.29-50.55-19.3-69.85-.02l-.02.02L28.93 186.14c-38.58 38.59-38.58 101.14 0 139.72 38.6 38.59 101.13 38.59 139.73.01zm-87.33-52.4c9.64 9.64 25.27 9.64 34.91 0l157.21-157.19c19.28-19.29 50.55-19.3 69.84-.02l.02.02c9.65 9.65 25.29 9.65 34.93 0 9.65-9.65 9.65-25.29 0-34.93-38.59-38.59-101.13-38.59-139.72 0L81.33 238.54c-9.65 9.64-9.65 25.28-.01 34.93h.01z"] }; +var faStackExchange = { prefix: 'fab', iconName: 'stack-exchange', icon: [448, 512, [], "f18d", "M17.7 332.3h412.7v22c0 37.7-29.3 68-65.3 68h-19L259.3 512v-89.7H83c-36 0-65.3-30.3-65.3-68v-22zm0-23.6h412.7v-85H17.7v85zm0-109.4h412.7v-85H17.7v85zM365 0H83C47 0 17.7 30.3 17.7 67.7V90h412.7V67.7C430.3 30.3 401 0 365 0z"] }; +var faStackOverflow = { prefix: 'fab', iconName: 'stack-overflow', icon: [384, 512, [], "f16c", "M293.7 300l-181.2-84.5 16.7-36.5 181.3 84.7-16.8 36.3zm48-76L188.2 95.7l-25.5 30.8 153.5 128.3 25.5-30.8zm39.6-31.7L262 32l-32 24 119.3 160.3 32-24zM290.7 311L95 269.7 86.8 309l195.7 41 8.2-39zm31.6 129H42.7V320h-40v160h359.5V320h-40v120zm-39.8-80h-200v39.7h200V360z"] }; +var faStaylinked = { prefix: 'fab', iconName: 'staylinked', icon: [440, 512, [], "f3f5", "M201.6 127.4c4.1-3.2 10.3-3 13.8.5l170 167.3-2.7-2.7 44.3 41.3c3.7 3.5 3.3 9-.7 12.2l-198 163.9c-9.9 7.6-17.3.8-17.3.8L2.3 314.6c-3.5-3.5-3-9 1.2-12.2l45.8-34.9c4.2-3.2 10.4-3 13.9.5l151.9 147.5c3.7 3.5 10 3.7 14.2.4l93.2-74c4.1-3.2 4.5-8.7.9-12.2l-84-81.3c-3.6-3.5-9.9-3.7-14-.5l-.1.1c-4.1 3.2-10.4 3-14-.5l-68.1-64.3c-3.5-3.5-3.1-9 1.1-12.2l57.3-43.6m14.8 257.3c3.7 3.5 10.1 3.7 14.3.4l50.2-38.8-.3-.3 7.7-6c4.2-3.2 4.6-8.7.9-12.2l-57.1-54.4c-3.6-3.5-10-3.7-14.2-.5l-.1.1c-4.2 3.2-10.5 3.1-14.2-.4L109 180.8c-3.6-3.5-3.1-8.9 1.1-12.2l92.2-71.5c4.1-3.2 10.3-3 13.9.5l160.4 159c3.7 3.5 10 3.7 14.1.5l45.8-35.8c4.1-3.2 4.4-8.7.7-12.2L226.7 2.5c-1.5-1.2-8-5.5-16.3 1.1L3.6 165.7c-4.2 3.2-4.8 8.7-1.2 12.2l42.3 41.7"] }; +var faSteam = { prefix: 'fab', iconName: 'steam', icon: [496, 512, [], "f1b6", "M496 256c0 137-111.2 248-248.4 248-113.8 0-209.6-76.3-239-180.4l95.2 39.3c6.4 32.1 34.9 56.4 68.9 56.4 39.2 0 71.9-32.4 70.2-73.5l84.5-60.2c52.1 1.3 95.8-40.9 95.8-93.5 0-51.6-42-93.5-93.7-93.5s-93.7 42-93.7 93.5v1.2L176.6 279c-15.5-.9-30.7 3.4-43.5 12.1L0 236.1C10.2 108.4 117.1 8 247.6 8 384.8 8 496 119 496 256zM155.7 384.3l-30.5-12.6a52.79 52.79 0 0 0 27.2 25.8c26.9 11.2 57.8-1.6 69-28.4 5.4-13 5.5-27.3.1-40.3-5.4-13-15.5-23.2-28.5-28.6-12.9-5.4-26.7-5.2-38.9-.6l31.5 13c19.8 8.2 29.2 30.9 20.9 50.7-8.3 19.9-31 29.2-50.8 21zm173.8-129.9c-34.4 0-62.4-28-62.4-62.3s28-62.3 62.4-62.3 62.4 28 62.4 62.3-27.9 62.3-62.4 62.3zm.1-15.6c25.9 0 46.9-21 46.9-46.8 0-25.9-21-46.8-46.9-46.8s-46.9 21-46.9 46.8c.1 25.8 21.1 46.8 46.9 46.8z"] }; +var faSteamSquare = { prefix: 'fab', iconName: 'steam-square', icon: [448, 512, [], "f1b7", "M185.2 356.5c7.7-18.5-1-39.7-19.6-47.4l-29.5-12.2c11.4-4.3 24.3-4.5 36.4.5 12.2 5.1 21.6 14.6 26.7 26.7 5 12.2 5 25.6-.1 37.7-10.5 25.1-39.4 37-64.6 26.5-11.6-4.8-20.4-13.6-25.4-24.2l28.5 11.8c18.6 7.8 39.9-.9 47.6-19.4zM400 32H48C21.5 32 0 53.5 0 80v160.7l116.6 48.1c12-8.2 26.2-12.1 40.7-11.3l55.4-80.2v-1.1c0-48.2 39.3-87.5 87.6-87.5s87.6 39.3 87.6 87.5c0 49.2-40.9 88.7-89.6 87.5l-79 56.3c1.6 38.5-29.1 68.8-65.7 68.8-31.8 0-58.5-22.7-64.5-52.7L0 319.2V432c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-99.7 222.5c-32.2 0-58.4-26.1-58.4-58.3s26.2-58.3 58.4-58.3 58.4 26.2 58.4 58.3-26.2 58.3-58.4 58.3zm.1-14.6c24.2 0 43.9-19.6 43.9-43.8 0-24.2-19.6-43.8-43.9-43.8-24.2 0-43.9 19.6-43.9 43.8 0 24.2 19.7 43.8 43.9 43.8z"] }; +var faSteamSymbol = { prefix: 'fab', iconName: 'steam-symbol', icon: [448, 512, [], "f3f6", "M395.5 177.5c0 33.8-27.5 61-61 61-33.8 0-61-27.3-61-61s27.3-61 61-61c33.5 0 61 27.2 61 61zm52.5.2c0 63-51 113.8-113.7 113.8L225 371.3c-4 43-40.5 76.8-84.5 76.8-40.5 0-74.7-28.8-83-67L0 358V250.7L97.2 290c15.1-9.2 32.2-13.3 52-11.5l71-101.7c.5-62.3 51.5-112.8 114-112.8C397 64 448 115 448 177.7zM203 363c0-34.7-27.8-62.5-62.5-62.5-4.5 0-9 .5-13.5 1.5l26 10.5c25.5 10.2 38 39 27.7 64.5-10.2 25.5-39.2 38-64.7 27.5-10.2-4-20.5-8.3-30.7-12.2 10.5 19.7 31.2 33.2 55.2 33.2 34.7 0 62.5-27.8 62.5-62.5zm207.5-185.3c0-42-34.3-76.2-76.2-76.2-42.3 0-76.5 34.2-76.5 76.2 0 42.2 34.3 76.2 76.5 76.2 41.9.1 76.2-33.9 76.2-76.2z"] }; +var faStickerMule = { prefix: 'fab', iconName: 'sticker-mule', icon: [576, 512, [], "f3f7", "M353.1 509.8c-5.9 2.9-32.1 3.2-36.5-.5-4.1-3-2.2-11.9-1.5-15 2.2-15-2.5-7.9-9.8-11.5-3.1-1.5-4.1-5.5-4.6-10-.5-1.5-1-2.5-1.5-3.5-1.7-10.7 6.8-33.6 8.2-43.4 4.9-23.7-.7-37.2 1.5-46.9 3.7-16.2 4.1-3.5 4.1-29.9-1.4-25.9 3.3-36.9.5-38.9-14.8 0-64.3 10.7-112.2 2-46.1-8.9-59.4-29-65.4-30.9-10.3-4.5-23.2.5-27.3 7-.1.1-35 70.6-39.6 87.8-6.2 20.5-.5 47.4 4.1 66.8 0 .1 4.5 14.6 10.3 19.5 2.1 1.5 5.1 2.5 7.2 4.5 2.8 2.7 9.4 15.2 9.8 16 2.6 4.5 3.6 8-1.5 10.5-3.6 2-9.3 2.5-14.4 2.5-2.6.5-1.5 3.5-3.1 5-2.9 2.8-20.7 6.1-29.9 2.5-2.6-1-5.7-3-6.2-5-1.5-4 2.1-9-1-12.5-4.5-2.9-13.1-2-17-12-2.2-5.4-2.6-7.6-2.6-49.4 0-9.7-5.9-38.7-8.2-46.9-1.5-5.5-1.5-11.5 0-16 .3-.9 4.1-4.6 4.1-13-1-1.5-4.6-.5-5.1-1.5-10.4-80.6-5.9-79-7.7-98.3-1.5-16-10.9-43.9-6.7-64.3.5-2.4 3.4-21 24.2-38.9 31-26.7 48.4-38.3 159-11.5 1.1.4 66.3 21.1 110.7-9 15.5-11.3 28.8-11.3 35.5-16 .1-.1 61.7-52.1 87-65.3 47.2-29.4 69.9-16.7 75.1-18 4.7-1 13.4-25.8 17-25.8 5.5 0 1.6 20.2 3.6 25.9.5 2 3.6 5 6.2 5 2.3 0 1.7-.8 10.3-5 8.4-5.4 14.9-17.6 20.6-17 11.7 1.6-19 41.6-19 46.9 0 2 .2.8 4.6 9.5 2.6 5.5 4.6 13.5 6.2 20 8.3 29.7 5.7 14.6 13.4 36.9 20.2 50.1 20.6 45.2 20.6 52.9 0 7.5-4.1 11-7.2 16.5-1.5 3-4.6 7.5-7.2 8-2.7.7 7-1.5-13.4 2.5-7.2 1-13.4-4.5-14.9-9.5-1.6-4.7 2.8-10.1-11.8-22.9-10.3-10-21.1-11.3-31.9-17-9.8-5.7-11.9 1-18 8-18 22.9-34 46.9-52 69.8-11.8 15-24.2 30.4-33.5 47.4-3.9 6.8-9.5 28.1-10.3 29.9-6.2 17.7-5.5 25.8-16.5 68.3-3.1 10-5.7 21.4-8.7 32.4-2.2 6.8-7.4 49.3-.5 59.4 2.1 3.5 8.7 4.5 11.3 8 .1.1 9.6 18.2 9.3 20 0 6.1-9.4 5.6-11.3 6.5-4.8 2.9-3.8 5.9-6.4 7.4"] }; +var faStrava = { prefix: 'fab', iconName: 'strava', icon: [369, 512, [], "f428", "M301.6 292l-43.9 88.2-44.6-88.2h-67.6l112.2 220 111.5-220h-67.6zM151.4 0L0 292h89.2l62.2-116.1L213.1 292h88.5L151.4 0z"] }; +var faStripe = { prefix: 'fab', iconName: 'stripe', icon: [640, 512, [], "f429", "M640 261.6c0-45.5-22-81.4-64.2-81.4s-67.9 35.9-67.9 81.1c0 53.5 30.3 78.2 73.5 78.2 21.2 0 37.1-4.8 49.2-11.5v-33.4c-12.1 6.1-26 9.8-43.6 9.8-17.3 0-32.5-6.1-34.5-26.9h86.9c.2-2.3.6-11.6.6-15.9m-87.9-16.8c0-20 12.3-28.4 23.4-28.4 10.9 0 22.5 8.4 22.5 28.4h-45.9zm-112.9-64.6c-17.4 0-28.6 8.2-34.8 13.9l-2.3-11H363v204.8l44.4-9.4.1-50.2c6.4 4.7 15.9 11.2 31.4 11.2 31.8 0 60.8-23.2 60.8-79.6.1-51.6-29.3-79.7-60.5-79.7m-10.6 122.5c-10.4 0-16.6-3.8-20.9-8.4l-.3-66c4.6-5.1 11-8.8 21.2-8.8 16.2 0 27.4 18.2 27.4 41.4.1 23.9-10.9 41.8-27.4 41.8M346.4 124v36.2l-44.6 9.5v-36.2l44.6-9.5m-44.5 59.2h44.6v153.2h-44.6V183.2zm-47.8 13.1c10.4-19.1 31.1-15.2 37.1-13.1V224c-5.7-1.8-23.4-4.5-33.9 9.3v103.1H213V183.2h38.4l2.7 13.1m-89-13.1h33.7V221h-33.7v63.2c0 26.2 28 18 33.7 15.7v33.8c-5.9 3.2-16.6 5.9-31.2 5.9-26.3 0-46.1-17-46.1-43.3l.2-142.4 43.3-9.2.1 38.5zM44.9 228.3c0 20 67.9 10.5 67.9 63.4 0 32-25.4 47.8-62.3 47.8-15.3 0-32-3-48.5-10.1v-40c14.9 8.1 33.9 14.2 48.6 14.2 9.9 0 17-2.7 17-10.9 0-21.2-67.5-13.2-67.5-62.4 0-31.4 24-50.2 60-50.2 14.7 0 29.4 2.3 44.1 8.1V230c-13.5-7.3-30.7-11.4-44.2-11.4-9.3.1-15.1 2.8-15.1 9.7"] }; +var faStripeS = { prefix: 'fab', iconName: 'stripe-s', icon: [362, 512, [], "f42a", "M144.3 154.6c0-22.3 18.6-30.9 48.4-30.9 43.4 0 98.5 13.3 141.9 36.7V26.1C287.3 7.2 240.1 0 192.8 0 77.1 0 0 60.4 0 161.4c0 157.9 216.8 132.3 216.8 200.4 0 26.4-22.9 34.9-54.7 34.9-47.2 0-108.2-19.5-156.1-45.5v128.5c53 22.8 106.8 32.4 156 32.4 118.6 0 200.3-51 200.3-153.6 0-170.2-218-139.7-218-203.9"] }; +var faStudiovinari = { prefix: 'fab', iconName: 'studiovinari', icon: [512, 512, [], "f3f8", "M480.3 187.7l4.2 28v28l-25.1 44.1-39.8 78.4-56.1 67.5-79.1 37.8-17.7 24.5-7.7 12-9.6 4s17.3-63.6 19.4-63.6c2.1 0 20.3.7 20.3.7l66.7-38.6-92.5 26.1-55.9 36.8-22.8 28-6.6 1.4 20.8-73.6 6.9-5.5 20.7 12.9 88.3-45.2 56.8-51.5 14.8-68.4-125.4 23.3 15.2-18.2-173.4-53.3 81.9-10.5-166-122.9L133.5 108 32.2 0l252.9 126.6-31.5-38L378 163 234.7 64l18.7 38.4-49.6-18.1L158.3 0l194.6 122L310 66.2l108 96.4 12-8.9-21-16.4 4.2-37.8L451 89.1l29.2 24.7 11.5 4.2-7 6.2 8.5 12-13.1 7.4-10.3 20.2 10.5 23.9z"] }; +var faStumbleupon = { prefix: 'fab', iconName: 'stumbleupon', icon: [512, 512, [], "f1a4", "M502.9 266v69.7c0 62.1-50.3 112.4-112.4 112.4-61.8 0-112.4-49.8-112.4-111.3v-70.2l34.3 16 51.1-15.2V338c0 14.7 12 26.5 26.7 26.5S417 352.7 417 338v-72h85.9zm-224.7-58.2l34.3 16 51.1-15.2V173c0-60.5-51.1-109-112.1-109-60.8 0-112.1 48.2-112.1 108.2v162.4c0 14.9-12 26.7-26.7 26.7S86 349.5 86 334.6V266H0v69.7C0 397.7 50.3 448 112.4 448c61.6 0 112.4-49.5 112.4-110.8V176.9c0-14.7 12-26.7 26.7-26.7s26.7 12 26.7 26.7v30.9z"] }; +var faStumbleuponCircle = { prefix: 'fab', iconName: 'stumbleupon-circle', icon: [496, 512, [], "f1a3", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 177.5c-9.8 0-17.8 8-17.8 17.8v106.9c0 40.9-33.9 73.9-74.9 73.9-41.4 0-74.9-33.5-74.9-74.9v-46.5h57.3v45.8c0 10 8 17.8 17.8 17.8s17.8-7.9 17.8-17.8V200.1c0-40 34.2-72.1 74.7-72.1 40.7 0 74.7 32.3 74.7 72.6v23.7l-34.1 10.1-22.9-10.7v-20.6c.1-9.6-7.9-17.6-17.7-17.6zm167.6 123.6c0 41.4-33.5 74.9-74.9 74.9-41.2 0-74.9-33.2-74.9-74.2V263l22.9 10.7 34.1-10.1v47.1c0 9.8 8 17.6 17.8 17.6s17.8-7.9 17.8-17.6v-48h57.3c-.1 45.9-.1 46.4-.1 46.4z"] }; +var faSuperpowers = { prefix: 'fab', iconName: 'superpowers', icon: [448, 512, [], "f2dd", "M448 32c-83.3 11-166.8 22-250 33-92 12.5-163.3 86.7-169 180-3.3 55.5 18 109.5 57.8 148.2L0 480c83.3-11 166.5-22 249.8-33 91.8-12.5 163.3-86.8 168.7-179.8 3.5-55.5-18-109.5-57.7-148.2L448 32zm-79.7 232.3c-4.2 79.5-74 139.2-152.8 134.5-79.5-4.7-140.7-71-136.3-151 4.5-79.2 74.3-139.3 153-134.5 79.3 4.7 140.5 71 136.1 151z"] }; +var faSupple = { prefix: 'fab', iconName: 'supple', icon: [640, 512, [], "f3f9", "M640 262.5c0 64.1-109 116.1-243.5 116.1-24.8 0-48.6-1.8-71.1-5 7.7.4 15.5.6 23.4.6 134.5 0 243.5-56.9 243.5-127.1 0-29.4-19.1-56.4-51.2-78 60 21.1 98.9 55.1 98.9 93.4zM47.7 227.9c-.1-70.2 108.8-127.3 243.3-127.6 7.9 0 15.6.2 23.3.5-22.5-3.2-46.3-4.9-71-4.9C108.8 96.3-.1 148.5 0 212.6c.1 38.3 39.1 72.3 99.3 93.3-32.3-21.5-51.5-48.6-51.6-78zm60.2 39.9s10.5 13.2 29.3 13.2c17.9 0 28.4-11.5 28.4-25.1 0-28-40.2-25.1-40.2-39.7 0-5.4 5.3-9.1 12.5-9.1 5.7 0 11.3 2.6 11.3 6.6v3.9h14.2v-7.9c0-12.1-15.4-16.8-25.4-16.8-16.5 0-28.5 10.2-28.5 24.1 0 26.6 40.2 25.4 40.2 39.9 0 6.6-5.8 10.1-12.3 10.1-11.9 0-20.7-10.1-20.7-10.1l-8.8 10.9zm120.8-73.6v54.4c0 11.3-7.1 17.8-17.8 17.8-10.7 0-17.8-6.5-17.8-17.7v-54.5h-15.8v55c0 18.9 13.4 31.9 33.7 31.9 20.1 0 33.4-13 33.4-31.9v-55h-15.7zm34.4 85.4h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.8-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5.1 14.7-14 14.7h-12.6zm57 43h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.7-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5 14.7-14 14.7h-12.6zm57.1 34.8c0 5.8 2.4 8.2 8.2 8.2h37.6c5.8 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-18.6c-1.7 0-2.6-1-2.6-2.6v-61.2c0-5.7-2.4-8.2-8.2-8.2H401v13.4h5.2c1.7 0 2.6 1 2.6 2.6v61.2zm63.4 0c0 5.8 2.4 8.2 8.2 8.2H519c5.7 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-19.7c-1.7 0-2.6-1-2.6-2.6v-20.3h27.7v-13.4H488v-22.4h19.2c1.7 0 2.6 1 2.6 2.6v5.2H524v-13c0-5.7-2.5-8.2-8.2-8.2h-51.6v13.4h7.8v63.9zm58.9-76v5.9h1.6v-5.9h2.7v-1.2h-7v1.2h2.7zm5.7-1.2v7.1h1.5v-5.7l2.3 5.7h1.3l2.3-5.7v5.7h1.5v-7.1h-2.3l-2.1 5.1-2.1-5.1h-2.4z"] }; +var faTeamspeak = { prefix: 'fab', iconName: 'teamspeak', icon: [511, 512, [], "f4f9", "M.82 237.82c2.36-15.52 10.69-27.04 24.88-34.03 3.5-1.85 5.65-3.5 6.37-7.81 6.17-33.41 19.53-63.94 39.37-91.59 2.36-3.19 4.01-5.35 1.03-9.35-3.7-5.35-1.03-10.18 2.98-14.49 28.06-31.87 61.88-55.1 101.98-67.44 95.81-29.4 180.1-9.35 252.37 60.45 6.68 6.37 15.52 12.85 6.99 24.36-1.34 1.85 1.03 3.5 2.16 5.04 20.66 28.06 34.23 59.42 40.4 93.65.82 3.7 2.98 5.04 5.86 6.37 17.37 8.84 25.7 23.34 26.01 42.25 0 17.17 1.85 34.54-1.03 51.71-4.01 24.67-29.19 41.74-53.25 36.7-7.2-1.64-9.35-7.2-9.35-14.19 0-28.06.82-56.44 0-84.6-1.85-75.76-36.18-132.81-102.28-169.41C234.28 4.98 92.11 72.42 67.54 196.91c-6.06 30.42-1.74 48.27-3.7 125.82-.31 7.2-4.32 11.2-12.03 11.51C20.97 335.58 0 316.05 0 285.21v-20.87m221.74 106.81c11.82-4.32 20.05-11.82 22.51-24.36 2.36-12.34-12.03-30.02-32.38-48.73-20.87-19.22-48.22-39.06-63.43-46.57-21.69-12.03-41.74-1.85-46.26 22.72-5.04 26.21 0 51.4 14.49 73.91 10.18 15.52 25.39 22.72 43.38 24.05 11.62.62 52.54 2.16 61.69-1.02m129.83 5.55c36.5 2.81 59.33-28.55 58.39-60.45-2.14-45.17-66.17-16.48-87.79-8.02-73.16 28.14-45.05 54.92-22.2 60.75m149.26-1.33c-2.98-2.36-7.2-1.03-8.33 2.36-8.02 25.39-44.72 112.46-172.08 121.51-149.67 10.49 80.29 43.59 145.36-6.37 22.72-17.37 47.6-35.05 46.57-85.43-.32-10.07-4.84-26.72-11.52-32.07"] }; +var faTelegram = { prefix: 'fab', iconName: 'telegram', icon: [496, 512, [], "f2c6", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm121.8 169.9l-40.7 191.8c-3 13.6-11.1 16.9-22.4 10.5l-62-45.7-29.9 28.8c-3.3 3.3-6.1 6.1-12.5 6.1l4.4-63.1 114.9-103.8c5-4.4-1.1-6.9-7.7-2.5l-142 89.4-61.2-19.1c-13.3-4.2-13.6-13.3 2.8-19.7l239.1-92.2c11.1-4 20.8 2.7 17.2 19.5z"] }; +var faTelegramPlane = { prefix: 'fab', iconName: 'telegram-plane', icon: [448, 512, [], "f3fe", "M446.7 98.6l-67.6 318.8c-5.1 22.5-18.4 28.1-37.3 17.5l-103-75.9-49.7 47.8c-5.5 5.5-10.1 10.1-20.7 10.1l7.4-104.9 190.9-172.5c8.3-7.4-1.8-11.5-12.9-4.1L117.8 284 16.2 252.2c-22.1-6.9-22.5-22.1 4.6-32.7L418.2 66.4c18.4-6.9 34.5 4.1 28.5 32.2z"] }; +var faTencentWeibo = { prefix: 'fab', iconName: 'tencent-weibo', icon: [384, 512, [], "f1d5", "M72.3 495.8c1.4 19.9-27.6 22.2-29.7 2.9C31 368.8 73.7 259.2 144 185.5c-15.6-34 9.2-77.1 50.6-77.1 30.3 0 55.1 24.6 55.1 55.1 0 44-49.5 70.8-86.9 45.1-65.7 71.3-101.4 169.8-90.5 287.2zM192 .1C66.1.1-12.3 134.3 43.7 242.4 52.4 259.8 79 246.9 70 229 23.7 136.4 91 29.8 192 29.8c75.4 0 136.9 61.4 136.9 136.9 0 90.8-86.9 153.9-167.7 133.1-19.1-4.1-25.6 24.4-6.6 29.1 110.7 23.2 204-60 204-162.3C358.6 74.7 284 .1 192 .1z"] }; +var faThemeco = { prefix: 'fab', iconName: 'themeco', icon: [441, 512, [], "f5c6", "M199.74 12.29c9.74-5.64 25.59-5.73 35.39-.21l188.13 105.95c9.81 5.52 17.76 19.14 17.76 30.38v213.87c0 11.26-7.93 24.89-17.71 30.46L235.09 499.88c-9.78 5.57-25.58 5.48-35.29-.21L17.58 392.95C7.87 387.26 0 373.52 0 362.27V148.41c0-11.26 7.9-24.96 17.63-30.59L199.74 12.29zM123.54 209c-15.69 0-31.39.14-47.08.14v99.87h18.83v-29.39h28.25c48.94 0 48.79-70.62 0-70.62zm137.96 98.73l-30.25-34.1c36.4-7.39 34.26-64.21-10.7-64.49-15.84 0-31.67-.14-47.51-.14v100.01h18.83v-33.38H210l29.1 33.38h22.4v-1.28zm-40.94-81.04c22.98 0 22.9 31.96 0 31.96h-28.68v-31.96h28.68zm-94.07-1.57c20.85 0 20.78 38.24 0 38.24H94.68v-38.23l31.81-.01zm189.65-17.97c-67.4 0-69.86 104.15 0 104.15 68.39-.01 68.33-104.15 0-104.15zm0 17.12c43.43 0 44.1 69.76 0 69.76-44.12 0-43.74-69.76 0-69.76z"] }; +var faThemeisle = { prefix: 'fab', iconName: 'themeisle', icon: [512, 512, [], "f2b2", "M208 88.286c0-10 6.286-21.714 17.715-21.714 11.142 0 17.714 11.714 17.714 21.714 0 10.285-6.572 21.714-17.714 21.714C214.286 110 208 98.571 208 88.286zm304 160c0 36.001-11.429 102.286-36.286 129.714-22.858 24.858-87.428 61.143-120.857 70.572l-1.143.286v32.571c0 16.286-12.572 30.571-29.143 30.571-10 0-19.429-5.714-24.572-14.286-5.427 8.572-14.856 14.286-24.856 14.286-10 0-19.429-5.714-24.858-14.286-5.142 8.572-14.571 14.286-24.57 14.286-10.286 0-19.429-5.714-24.858-14.286-5.143 8.572-14.571 14.286-24.571 14.286-18.857 0-29.429-15.714-29.429-32.857-16.286 12.285-35.715 19.428-56.571 19.428-22 0-43.429-8.285-60.286-22.857 10.285-.286 20.571-2.286 30.285-5.714-20.857-5.714-39.428-18.857-52-36.286 21.37 4.645 46.209 1.673 67.143-11.143-22-22-56.571-58.857-68.572-87.428C1.143 321.714 0 303.714 0 289.429c0-49.714 20.286-160 86.286-160 10.571 0 18.857 4.858 23.143 14.857a158.792 158.792 0 0 1 12-15.428c2-2.572 5.714-5.429 7.143-8.286 7.999-12.571 11.714-21.142 21.714-34C182.571 45.428 232 17.143 285.143 17.143c6 0 12 .285 17.714 1.143C313.714 6.571 328.857 0 344.572 0c14.571 0 29.714 6 40 16.286.857.858 1.428 2.286 1.428 3.428 0 3.714-10.285 13.429-12.857 16.286 4.286 1.429 15.714 6.858 15.714 12 0 2.857-2.857 5.143-4.571 7.143 31.429 27.714 49.429 67.143 56.286 108 4.286-5.143 10.285-8.572 17.143-8.572 10.571 0 20.857 7.144 28.571 14.001C507.143 187.143 512 221.714 512 248.286zM188 89.428c0 18.286 12.571 37.143 32.286 37.143 19.714 0 32.285-18.857 32.285-37.143 0-18-12.571-36.857-32.285-36.857-19.715 0-32.286 18.858-32.286 36.857zM237.714 194c0-19.714 3.714-39.143 8.571-58.286-52.039 79.534-13.531 184.571 68.858 184.571 21.428 0 42.571-7.714 60-20 2-7.429 3.714-14.857 3.714-22.572 0-14.286-6.286-21.428-20.572-21.428-4.571 0-9.143.857-13.429 1.714-63.343 12.668-107.142 3.669-107.142-63.999zm-41.142 254.858c0-11.143-8.858-20.857-20.286-20.857-11.429 0-20 9.715-20 20.857v32.571c0 11.143 8.571 21.142 20 21.142 11.428 0 20.286-9.715 20.286-21.142v-32.571zm49.143 0c0-11.143-8.572-20.857-20-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20-10 20-21.142v-32.571zm49.713 0c0-11.143-8.857-20.857-20.285-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20.285-9.715 20.285-21.142v-32.571zm49.715 0c0-11.143-8.857-20.857-20.286-20.857-11.428 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.858 21.142 20.286 21.142 11.429 0 20.286-10 20.286-21.142v-32.571zM421.714 286c-30.857 59.142-90.285 102.572-158.571 102.572-96.571 0-160.571-84.572-160.571-176.572 0-16.857 2-33.429 6-49.714-20 33.715-29.714 72.572-29.714 111.429 0 60.286 24.857 121.715 71.429 160.857 5.143-9.714 14.857-16.286 26-16.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.571-14.286 24.858-14.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.857-14.286 24.858-14.286 10 0 19.428 5.714 24.857 14.286 5.143-8.571 14.571-14.286 24.572-14.286 10.857 0 20.857 6.572 25.714 16 43.427-36.286 68.569-92 71.426-148.286zm10.572-99.714c0-53.714-34.571-105.714-92.572-105.714-30.285 0-58.571 15.143-78.857 36.857C240.862 183.812 233.41 254 302.286 254c28.805 0 97.357-28.538 84.286 36.857 28.857-26 45.714-65.714 45.714-104.571z"] }; +var faTradeFederation = { prefix: 'fab', iconName: 'trade-federation', icon: [496, 512, [], "f513", "M202.45 108.42v81.61H38.94l48.22 61.91h114.73v196.75h64.61V252.96h83.27v-62.69h-83.18V171.1h145.62v-62.68H202.45zm4.86 6h197.77v50.68H259.44v30.93h83.18v50.93h-83.26v195.73h-52.73V245.94H89.86l-39.95-49.91h157.4v-81.61zM247.99 8.8C111.03 8.8 0 119.83 0 256.8s111.03 248 247.99 248S496 393.76 496 256.8 384.96 8.8 247.99 8.8zm.02 13.24c129.66 0 234.76 105.12 234.76 234.78s-105.1 234.76-234.76 234.76S13.23 386.47 13.23 256.81 118.35 22.04 248.01 22.04zm0 7.89c-125.3 0-226.89 101.57-226.89 226.87s101.59 226.89 226.89 226.89S474.88 382.1 474.88 256.8 373.31 29.93 248.01 29.93zm-.02 13.3c117.95 0 213.56 95.62 213.56 213.56s-95.62 213.56-213.56 213.56S34.43 374.75 34.43 256.8 130.04 43.23 247.99 43.23zm-73.32 104.8l15.66 18.05-22.16-9.45-12.33 20.47 2.15-23.99-23.28-5.4 23.48-5.37-2.06-23.81 12.37 20.67 22.01-9.32-15.84 18.15zm-47.14-46.54l8.01 12.4 12.69-5.86-9.32 11.45 9.5 10.25-13.77-5.32-6.82 12.2.81-14.74-13.71-2.71 14.27-3.78-1.66-13.89zm250.77 75.59l11.99 19.56 20.88-9.11-14.9 17.45 15.11 17.04-21.2-8.78-11.54 19.64 1.8-22.87-22.24-4.9 22.31-5.36-2.21-22.67zm-107.05 98.45l13.86-3.22-1.28-14.17 7.35 12.18 13.08-5.59-9.31 10.75 9.36 10.71-13.1-5.54-7.29 12.21 1.22-14.17-13.89-3.16zm-125.43 6.5l23.73-3.87-1.73-24.53 11.01 21.38 22.79-9.22-16.93 17.08 15.81 18.83-21.47-10.82-13.02 20.86 3.66-23.77-23.85-5.94zm63.44-165.66v81.61H54.16l36.72 46.01h117.7v196.75h48.82V245.01h83.27v-47.03H257.4v-34.83h145.73v-46.78H209.26zm10.86 11.2h171.8v24.36H246.88v56.23h82.93v23.94h-82.93v197.42h-26.76V232.1H96.31l-20.09-23.94h143.9v-80.59z"] }; +var faTrello = { prefix: 'fab', iconName: 'trello', icon: [448, 512, [], "f181", "M392 32H56C25.1 32 0 57.1 0 88v336c0 30.9 25.1 56 56 56h336c30.9 0 56-25.1 56-56V88c0-30.9-25.1-56-56-56zM194.9 371.4c0 14.8-12 26.9-26.9 26.9H85.1c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9H168c14.8 0 26.9 12 26.9 26.9v254.3zm194.9-112c0 14.8-12 26.9-26.9 26.9H280c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9h82.9c14.8 0 26.9 12 26.9 26.9v142.3z"] }; +var faTripadvisor = { prefix: 'fab', iconName: 'tripadvisor', icon: [576, 512, [], "f262", "M166.4 280.521c0 13.236-10.73 23.966-23.966 23.966s-23.966-10.73-23.966-23.966 10.73-23.966 23.966-23.966 23.966 10.729 23.966 23.966zm264.962-23.956c-13.23 0-23.956 10.725-23.956 23.956 0 13.23 10.725 23.956 23.956 23.956 13.23 0 23.956-10.725 23.956-23.956-.001-13.231-10.726-23.956-23.956-23.956zm89.388 139.49c-62.667 49.104-153.276 38.109-202.379-24.559l-30.979 46.325-30.683-45.939c-48.277 60.39-135.622 71.891-197.885 26.055-64.058-47.158-77.759-137.316-30.601-201.374A186.762 186.762 0 0 0 0 139.416l90.286-.05a358.48 358.48 0 0 1 197.065-54.03 350.382 350.382 0 0 1 192.181 53.349l96.218.074a185.713 185.713 0 0 0-28.352 57.649c46.793 62.747 34.964 151.37-26.648 199.647zM259.366 281.761c-.007-63.557-51.535-115.075-115.092-115.068C80.717 166.7 29.2 218.228 29.206 281.785c.007 63.557 51.535 115.075 115.092 115.068 63.513-.075 114.984-51.539 115.068-115.052v-.04zm28.591-10.455c5.433-73.44 65.51-130.884 139.12-133.022a339.146 339.146 0 0 0-139.727-27.812 356.31 356.31 0 0 0-140.164 27.253c74.344 1.582 135.299 59.424 140.771 133.581zm251.706-28.767c-21.992-59.634-88.162-90.148-147.795-68.157-59.634 21.992-90.148 88.162-68.157 147.795v.032c22.038 59.607 88.198 90.091 147.827 68.113 59.615-22.004 90.113-88.162 68.125-147.783zm-326.039 37.975v.115c-.057 39.328-31.986 71.163-71.314 71.106-39.328-.057-71.163-31.986-71.106-71.314.057-39.328 31.986-71.163 71.314-71.106 39.259.116 71.042 31.94 71.106 71.199zm-24.512 0v-.084c-.051-25.784-20.994-46.645-46.778-46.594-25.784.051-46.645 20.994-46.594 46.777.051 25.784 20.994 46.645 46.777 46.594 25.726-.113 46.537-20.968 46.595-46.693zm313.423 0v.048c-.02 39.328-31.918 71.194-71.247 71.173s-71.194-31.918-71.173-71.247c.02-39.328 31.918-71.194 71.247-71.173 39.29.066 71.121 31.909 71.173 71.199zm-24.504-.008c-.009-25.784-20.918-46.679-46.702-46.67-25.784.009-46.679 20.918-46.67 46.702.009 25.784 20.918 46.678 46.702 46.67 25.765-.046 46.636-20.928 46.67-46.693v-.009z"] }; +var faTumblr = { prefix: 'fab', iconName: 'tumblr', icon: [320, 512, [], "f173", "M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z"] }; +var faTumblrSquare = { prefix: 'fab', iconName: 'tumblr-square', icon: [448, 512, [], "f174", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-82.3 364.2c-8.5 9.1-31.2 19.8-60.9 19.8-75.5 0-91.9-55.5-91.9-87.9v-90h-29.7c-3.4 0-6.2-2.8-6.2-6.2v-42.5c0-4.5 2.8-8.5 7.1-10 38.8-13.7 50.9-47.5 52.7-73.2.5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2h-52.1V321c0 21.4 14.8 33.5 42.5 22.4 3-1.2 5.6-2 8-1.4 2.2.5 3.6 2.1 4.6 4.9l13.8 40.2c1 3.2 2 6.7-.3 9.1z"] }; +var faTwitch = { prefix: 'fab', iconName: 'twitch', icon: [448, 512, [], "f1e8", "M40.1 32L10 108.9v314.3h107V480h60.2l56.8-56.8h87l117-117V32H40.1zm357.8 254.1L331 353H224l-56.8 56.8V353H76.9V72.1h321v214zM331 149v116.9h-40.1V149H331zm-107 0v116.9h-40.1V149H224z"] }; +var faTwitter = { prefix: 'fab', iconName: 'twitter', icon: [512, 512, [], "f099", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"] }; +var faTwitterSquare = { prefix: 'fab', iconName: 'twitter-square', icon: [448, 512, [], "f081", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z"] }; +var faTypo3 = { prefix: 'fab', iconName: 'typo3', icon: [433, 512, [], "f42b", "M330.8 341c-7 2.3-11.6 2.3-18.5 2.3-57.2 0-140.6-198.5-140.6-264.9 0-24.7 5.4-32.4 13.9-39.4-69.5 8.5-149.3 34-176.3 66.4-5.4 7.7-9.3 20.8-9.3 37.1C0 246 106.8 480 184.1 480c36.3 0 97.3-59.5 146.7-139M294.5 32c71.8 0 138.8 11.6 138.8 52.5 0 82.6-52.5 182.3-78.8 182.3-47.9 0-101.7-132.1-101.7-198.5 0-30.9 11.6-36.3 41.7-36.3"] }; +var faUber = { prefix: 'fab', iconName: 'uber', icon: [448, 512, [], "f402", "M414.1 32H33.9C15.2 32 0 47.2 0 65.9V446c0 18.8 15.2 34 33.9 34H414c18.7 0 33.9-15.2 33.9-33.9V65.9C448 47.2 432.8 32 414.1 32zM237.6 391.1C163 398.6 96.4 344.2 88.9 269.6h94.4V290c0 3.7 3 6.8 6.8 6.8H258c3.7 0 6.8-3 6.8-6.8v-67.9c0-3.7-3-6.8-6.8-6.8h-67.9c-3.7 0-6.8 3-6.8 6.8v20.4H88.9c7-69.4 65.4-122.2 135.1-122.2 69.7 0 128.1 52.8 135.1 122.2 7.5 74.5-46.9 141.1-121.5 148.6z"] }; +var faUikit = { prefix: 'fab', iconName: 'uikit', icon: [448, 512, [], "f403", "M443.9 128v256L218 512 0 384V169.7l87.6 45.1v117l133.5 75.5 135.8-75.5v-151l-101.1-57.6 87.6-53.1L443.9 128zM308.6 49.1L223.8 0l-88.6 54.8 86 47.3 87.4-53z"] }; +var faUniregistry = { prefix: 'fab', iconName: 'uniregistry', icon: [384, 512, [], "f404", "M281.1 220.1H384v-14.8H281.1v14.8zm0-37.1H384v-12.4H281.1V183zm0 74.2H384v-17.3H281.1v17.3zm-157.7 86.7H8.5c2.6 8.5 5.8 16.8 9.6 24.8h138.3c-12.9-5.7-24.1-14.2-33-24.8m145.7-12.4h109.7c1.8-7.3 3.1-14.7 3.9-22.3H278.3c-2.1 7.9-5.2 15.4-9.2 22.3m-41.5 37.1H367c3.7-8 5.8-16.2 8.5-24.8h-115c-8.8 10.7-20.1 19.2-32.9 24.8M384 32H281.1v2.5H384V32zM192 480c39.5 0 76.2-11.8 106.8-32.2H85.3C115.8 468.2 152.5 480 192 480m89.1-334.2H384V136H281.1v9.8zm0-37.1H384v-7.4H281.1v7.4zm0-37.1H384v-4.9H281.1v4.9zm-178.2 99H0V183h102.9v-12.4zM38.8 405.7h305.3c6.7-8.5 12.6-17.6 17.8-27.2H23c5.2 9.6 9.2 18.7 15.8 27.2m64.1-118.8v-12.4H0v12.4c0 2.5 0 5 .1 7.4h103.1c-.2-2.4-.3-4.9-.3-7.4m178.2 0c0 2.5-.1 5-.4 7.4h103.1c.1-2.5.2-4.9.2-7.4v-12.4H281.1v12.4zm-203 156h227.7c11.8-8.7 22.7-18.6 32.2-29.7H44.9c9.6 11 21.4 21 33.2 29.7m24.8-376.2H0v4.9h102.9v-4.9zm0-34.7H0v2.5h102.9V32zm0 173.3H0v14.8h102.9v-14.8zm0 34.6H0v17.3h102.9v-17.3zm0-103.9H0v9.9h102.9V136zm0-34.7H0v7.4h102.9v-7.4zm2.8 207.9H1.3c.9 7.6 2.2 15 3.9 22.3h109.7c-4-6.9-7.2-14.4-9.2-22.3"] }; +var faUntappd = { prefix: 'fab', iconName: 'untappd', icon: [640, 512, [], "f405", "M401.3 49.9c-79.8 160.1-84.6 152.5-87.9 173.2l-5.2 32.8c-1.9 12-6.6 23.5-13.7 33.4L145.6 497.1c-7.6 10.6-20.4 16.2-33.4 14.6-40.3-5-77.8-32.2-95.3-68.5-5.7-11.8-4.5-25.8 3.1-36.4l148.9-207.9c7.1-9.9 16.4-18 27.2-23.7l29.3-15.5c18.5-9.8 9.7-11.9 135.6-138.9 1-4.8 1-7.3 3.6-8 3-.7 6.6-1 6.3-4.6l-.4-4.6c-.2-1.9 1.3-3.6 3.2-3.6 4.5-.1 13.2 1.2 25.6 10 12.3 8.9 16.4 16.8 17.7 21.1.6 1.8-.6 3.7-2.4 4.2l-4.5 1.1c-3.4.9-2.5 4.4-2.3 7.4.1 2.8-2.3 3.6-6.5 6.1zM230.1 36.4c3.4.9 2.5 4.4 2.3 7.4-.2 2.7 2.1 3.5 6.4 6 7.9 15.9 15.3 30.5 22.2 44 .7 1.3 2.3 1.5 3.3.5 11.2-12 24.6-26.2 40.5-42.6 1.3-1.4 1.4-3.5.1-4.9-8-8.2-16.5-16.9-25.6-26.1-1-4.7-1-7.3-3.6-8-3-.8-6.6-1-6.3-4.6.3-3.3 1.4-8.1-2.8-8.2-4.5-.1-13.2 1.1-25.6 10-12.3 8.9-16.4 16.8-17.7 21.1-1.4 4.2 3.6 4.6 6.8 5.4zM620 406.7L471.2 198.8c-13.2-18.5-26.6-23.4-56.4-39.1-11.2-5.9-14.2-10.9-30.5-28.9-1-1.1-2.9-.9-3.6.5-46.3 88.8-47.1 82.8-49 94.8-1.7 10.7-1.3 20 .3 29.8 1.9 12 6.6 23.5 13.7 33.4l148.9 207.9c7.6 10.6 20.2 16.2 33.1 14.7 40.3-4.9 78-32 95.7-68.6 5.4-11.9 4.3-25.9-3.4-36.6z"] }; +var faUsb = { prefix: 'fab', iconName: 'usb', icon: [640, 512, [], "f287", "M641.5 256c0 3.1-1.7 6.1-4.5 7.5L547.9 317c-1.4.8-2.8 1.4-4.5 1.4-1.4 0-3.1-.3-4.5-1.1-2.8-1.7-4.5-4.5-4.5-7.8v-35.6H295.7c25.3 39.6 40.5 106.9 69.6 106.9H392V354c0-5 3.9-8.9 8.9-8.9H490c5 0 8.9 3.9 8.9 8.9v89.1c0 5-3.9 8.9-8.9 8.9h-89.1c-5 0-8.9-3.9-8.9-8.9v-26.7h-26.7c-75.4 0-81.1-142.5-124.7-142.5H140.3c-8.1 30.6-35.9 53.5-69 53.5C32 327.3 0 295.3 0 256s32-71.3 71.3-71.3c33.1 0 61 22.8 69 53.5 39.1 0 43.9 9.5 74.6-60.4C255 88.7 273 95.7 323.8 95.7c7.5-20.9 27-35.6 50.4-35.6 29.5 0 53.5 23.9 53.5 53.5s-23.9 53.5-53.5 53.5c-23.4 0-42.9-14.8-50.4-35.6H294c-29.1 0-44.3 67.4-69.6 106.9h310.1v-35.6c0-3.3 1.7-6.1 4.5-7.8 2.8-1.7 6.4-1.4 8.9.3l89.1 53.5c2.8 1.1 4.5 4.1 4.5 7.2z"] }; +var faUssunnah = { prefix: 'fab', iconName: 'ussunnah', icon: [512, 512, [], "f407", "M156.8 285.1l5.7 14.4h-8.2c-1.3-3.2-3.1-7.7-3.8-9.5-2.5-6.3-1.1-8.4 0-10 1.9-2.7 3.2-4.4 3.6-5.2 0 2.2.8 5.7 2.7 10.3zm297.3 18.8c-2.1 13.8-5.7 27.1-10.5 39.7l43 23.4-44.8-18.8c-5.3 13.2-12 25.6-19.9 37.2l34.2 30.2-36.8-26.4c-8.4 11.8-18 22.6-28.7 32.3l24.9 34.7-28.1-31.8c-11 9.6-23.1 18-36.1 25.1l15.7 37.2-19.3-35.3c-13.1 6.8-27 12.1-41.6 15.9l6.7 38.4-10.5-37.4c-14.3 3.4-29.2 5.3-44.5 5.4L256 512l-1.9-38.4c-15.3-.1-30.2-2-44.5-5.3L199 505.6l6.7-38.2c-14.6-3.7-28.6-9.1-41.7-15.8l-19.2 35.1 15.6-37c-13-7-25.2-15.4-36.2-25.1l-27.9 31.6 24.7-34.4c-10.7-9.7-20.4-20.5-28.8-32.3l-36.5 26.2 33.9-29.9c-7.9-11.6-14.6-24.1-20-37.3l-44.4 18.7L67.8 344c-4.8-12.7-8.4-26.1-10.5-39.9l-51 9 50.3-14.2c-1.1-8.5-1.7-17.1-1.7-25.9 0-4.7.2-9.4.5-14.1L0 256l56-2.8c1.3-13.1 3.8-25.8 7.5-38.1L6.4 199l58.9 10.4c4-12 9.1-23.5 15.2-34.4l-55.1-30 58.3 24.6C90 159 97.2 149.2 105.3 140L55.8 96.4l53.9 38.7c8.1-8.6 17-16.5 26.6-23.6l-40-55.6 45.6 51.6c9.5-6.6 19.7-12.3 30.3-17.2l-27.3-64.9 33.8 62.1c10.5-4.4 21.4-7.9 32.7-10.4L199 6.4l19.5 69.2c11-2.1 22.3-3.2 33.8-3.4L256 0l3.6 72.2c11.5.2 22.8 1.4 33.8 3.5L313 6.4l-12.4 70.7c11.3 2.6 22.2 6.1 32.6 10.5l33.9-62.2-27.4 65.1c10.6 4.9 20.7 10.7 30.2 17.2l45.8-51.8-40.1 55.9c9.5 7.1 18.4 15 26.5 23.6l54.2-38.9-49.7 43.9c8 9.1 15.2 18.9 21.5 29.4l58.7-24.7-55.5 30.2c6.1 10.9 11.1 22.3 15.1 34.3l59.3-10.4-57.5 16.2c3.7 12.2 6.2 24.9 7.5 37.9L512 256l-56 2.8c.3 4.6.5 9.3.5 14.1 0 8.7-.6 17.3-1.6 25.8l50.7 14.3-51.5-9.1zm-21.8-31c0-97.5-79-176.5-176.5-176.5s-176.5 79-176.5 176.5 79 176.5 176.5 176.5 176.5-79 176.5-176.5zm-24 0c0 84.3-68.3 152.6-152.6 152.6s-152.6-68.3-152.6-152.6 68.3-152.6 152.6-152.6 152.6 68.3 152.6 152.6zM195 241c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-40.7-19c0 2.1 1.3 3.8 3.6 5.1 3.5 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-19 0c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.4 6.8-9.6 10.9-9.6 12.6zm204.9 87.9c-8.4-3-8.7-6.8-8.7-15.6V182c-8.2 12.5-14.2 18.6-18 18.6 6.3 14.4 9.5 23.9 9.5 28.3v64.3c0 2.2-2.2 6.5-4.7 6.5h-18c-2.8-7.5-10.2-26.9-15.3-40.3-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3 2.6 6.7 6.4 16.5 7.9 20.2h-9.2c-3.9-10.4-9.6-25.4-11.8-31.1-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3.8 2 2.8 7.3 4.3 10.9H256c-1.5-4.1-5.6-14.6-8.4-22-2 2.5-7.2 9.2-10.7 13.7 2.5 1.6 4.3 3.6 5.2 6.3.2.6.5 1.4.6 1.7H225c-4.6-13.9-11.4-27.7-11.4-34.1 0-2.2.3-5.1 1.1-8.2-8.8 10.8-14 15.9-14 25 0 7.5 10.4 28.3 10.4 33.3 0 1.7-.5 3.3-1.4 4.9-9.6-12.7-15.5-20.7-18.8-20.7h-12l-11.2-28c-3.8-9.6-5.7-16-5.7-18.8 0-3.8.5-7.7 1.7-12.2-1 1.3-3.7 4.7-5.5 7.1-.8-2.1-3.1-7.7-4.6-11.5-2.1 2.5-7.5 9.1-11.2 13.6.9 2.3 3.3 8.1 4.9 12.2-2.5 3.3-9.1 11.8-13.6 17.7-4 5.3-5.8 13.3-2.7 21.8 2.5 6.7 2 7.9-1.7 14.1H191c5.5 0 14.3 14 15.5 22 13.2-16 15.4-19.6 16.8-21.6h107c3.9 0 7.2-1.9 9.9-5.8zm20.1-26.6V181.7c-9 12.5-15.9 18.6-20.7 18.6 7.1 14.4 10.7 23.9 10.7 28.3v66.3c0 17.5 8.6 20.4 24 20.4 8.1 0 12.5-.8 13.7-2.7-4.3-1.6-7.6-2.5-9.9-3.3-8.1-3.2-17.8-7.4-17.8-26z"] }; +var faVaadin = { prefix: 'fab', iconName: 'vaadin', icon: [448, 512, [], "f408", "M224.5 140.7c1.5-17.6 4.9-52.7 49.8-52.7h98.6c20.7 0 32.1-7.8 32.1-21.6V54.1c0-12.2 9.3-22.1 21.5-22.1S448 41.9 448 54.1v36.5c0 42.9-21.5 62-66.8 62H280.7c-30.1 0-33 14.7-33 27.1 0 1.3-.1 2.5-.2 3.7-.7 12.3-10.9 22.2-23.4 22.2s-22.7-9.8-23.4-22.2c-.1-1.2-.2-2.4-.2-3.7 0-12.3-3-27.1-33-27.1H66.8c-45.3 0-66.8-19.1-66.8-62V54.1C0 41.9 9.4 32 21.6 32s21.5 9.9 21.5 22.1v12.3C43.1 80.2 54.5 88 75.2 88h98.6c44.8 0 48.3 35.1 49.8 52.7h.9zM224 456c11.5 0 21.4-7 25.7-16.3 1.1-1.8 97.1-169.6 98.2-171.4 11.9-19.6-3.2-44.3-27.2-44.3-13.9 0-23.3 6.4-29.8 20.3L224 362l-66.9-117.7c-6.4-13.9-15.9-20.3-29.8-20.3-24 0-39.1 24.6-27.2 44.3 1.1 1.9 97.1 169.6 98.2 171.4 4.3 9.3 14.2 16.3 25.7 16.3z"] }; +var faViacoin = { prefix: 'fab', iconName: 'viacoin', icon: [384, 512, [], "f237", "M384 32h-64l-80.7 192h-94.5L64 32H0l48 112H0v48h68.5l13.8 32H0v48h102.8L192 480l89.2-208H384v-48h-82.3l13.8-32H384v-48h-48l48-112zM192 336l-27-64h54l-27 64z"] }; +var faViadeo = { prefix: 'fab', iconName: 'viadeo', icon: [448, 512, [], "f2a9", "M276.2 150.5v.7C258.3 98.6 233.6 47.8 205.4 0c43.3 29.2 67 100 70.8 150.5zm32.7 121.7c7.6 18.2 11 37.5 11 57 0 77.7-57.8 141-137.8 139.4l3.8-.3c74.2-46.7 109.3-118.6 109.3-205.1 0-38.1-6.5-75.9-18.9-112 1 11.7 1 23.7 1 35.4 0 91.8-18.1 241.6-116.6 280C95 455.2 49.4 398 49.4 329.2c0-75.6 57.4-142.3 135.4-142.3 16.8 0 33.7 3.1 49.1 9.6 1.7-15.1 6.5-29.9 13.4-43.3-19.9-7.2-41.2-10.7-62.5-10.7-161.5 0-238.7 195.9-129.9 313.7 67.9 74.6 192 73.9 259.8 0 56.6-61.3 60.9-142.4 36.4-201-12.7 8-27.1 13.9-42.2 17zM418.1 11.7c-31 66.5-81.3 47.2-115.8 80.1-12.4 12-20.6 34-20.6 50.5 0 14.1 4.5 27.1 12 38.8 47.4-11 98.3-46 118.2-90.7-.7 5.5-4.8 14.4-7.2 19.2-20.3 35.7-64.6 65.6-99.7 84.9 14.8 14.4 33.7 25.8 55 25.8 79 0 110.1-134.6 58.1-208.6z"] }; +var faViadeoSquare = { prefix: 'fab', iconName: 'viadeo-square', icon: [448, 512, [], "f2aa", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM280.7 381.2c-42.4 46.2-120 46.6-162.4 0-68-73.6-19.8-196.1 81.2-196.1 13.3 0 26.6 2.1 39.1 6.7-4.3 8.4-7.3 17.6-8.4 27.1-9.7-4.1-20.2-6-30.7-6-48.8 0-84.6 41.7-84.6 88.9 0 43 28.5 78.7 69.5 85.9 61.5-24 72.9-117.6 72.9-175 0-7.3 0-14.8-.6-22.1-11.2-32.9-26.6-64.6-44.2-94.5 27.1 18.3 41.9 62.5 44.2 94.1v.4c7.7 22.5 11.8 46.2 11.8 70 0 54.1-21.9 99-68.3 128.2l-2.4.2c50 1 86.2-38.6 86.2-87.2 0-12.2-2.1-24.3-6.9-35.7 9.5-1.9 18.5-5.6 26.4-10.5 15.3 36.6 12.6 87.3-22.8 125.6zM309 233.7c-13.3 0-25.1-7.1-34.4-16.1 21.9-12 49.6-30.7 62.3-53 1.5-3 4.1-8.6 4.5-12-12.5 27.9-44.2 49.8-73.9 56.7-4.7-7.3-7.5-15.5-7.5-24.3 0-10.3 5.2-24.1 12.9-31.6 21.6-20.5 53-8.5 72.4-50 32.5 46.2 13.1 130.3-36.3 130.3z"] }; +var faViber = { prefix: 'fab', iconName: 'viber', icon: [512, 512, [], "f409", "M444 49.9C431.3 38.2 379.9.9 265.3.4c0 0-135.1-8.1-200.9 52.3C27.8 89.3 14.9 143 13.5 209.5c-1.4 66.5-3.1 191.1 117 224.9h.1l-.1 51.6s-.8 20.9 13 25.1c16.6 5.2 26.4-10.7 42.3-27.8 8.7-9.4 20.7-23.2 29.8-33.7 82.2 6.9 145.3-8.9 152.5-11.2 16.6-5.4 110.5-17.4 125.7-142 15.8-128.6-7.6-209.8-49.8-246.5zM457.9 287c-12.9 104-89 110.6-103 115.1-6 1.9-61.5 15.7-131.2 11.2 0 0-52 62.7-68.2 79-5.3 5.3-11.1 4.8-11-5.7 0-6.9.4-85.7.4-85.7-.1 0-.1 0 0 0-101.8-28.2-95.8-134.3-94.7-189.8 1.1-55.5 11.6-101 42.6-131.6 55.7-50.5 170.4-43 170.4-43 96.9.4 143.3 29.6 154.1 39.4 35.7 30.6 53.9 103.8 40.6 211.1zm-139-80.8c.4 8.6-12.5 9.2-12.9.6-1.1-22-11.4-32.7-32.6-33.9-8.6-.5-7.8-13.4.7-12.9 27.9 1.5 43.4 17.5 44.8 46.2zm20.3 11.3c1-42.4-25.5-75.6-75.8-79.3-8.5-.6-7.6-13.5.9-12.9 58 4.2 88.9 44.1 87.8 92.5-.1 8.6-13.1 8.2-12.9-.3zm47 13.4c.1 8.6-12.9 8.7-12.9.1-.6-81.5-54.9-125.9-120.8-126.4-8.5-.1-8.5-12.9 0-12.9 73.7.5 133 51.4 133.7 139.2zM374.9 329v.2c-10.8 19-31 40-51.8 33.3l-.2-.3c-21.1-5.9-70.8-31.5-102.2-56.5-16.2-12.8-31-27.9-42.4-42.4-10.3-12.9-20.7-28.2-30.8-46.6-21.3-38.5-26-55.7-26-55.7-6.7-20.8 14.2-41 33.3-51.8h.2c9.2-4.8 18-3.2 23.9 3.9 0 0 12.4 14.8 17.7 22.1 5 6.8 11.7 17.7 15.2 23.8 6.1 10.9 2.3 22-3.7 26.6l-12 9.6c-6.1 4.9-5.3 14-5.3 14s17.8 67.3 84.3 84.3c0 0 9.1.8 14-5.3l9.6-12c4.6-6 15.7-9.8 26.6-3.7 14.7 8.3 33.4 21.2 45.8 32.9 7 5.7 8.6 14.4 3.8 23.6z"] }; +var faVimeo = { prefix: 'fab', iconName: 'vimeo', icon: [448, 512, [], "f40a", "M403.2 32H44.8C20.1 32 0 52.1 0 76.8v358.4C0 459.9 20.1 480 44.8 480h358.4c24.7 0 44.8-20.1 44.8-44.8V76.8c0-24.7-20.1-44.8-44.8-44.8zM377 180.8c-1.4 31.5-23.4 74.7-66 129.4-44 57.2-81.3 85.8-111.7 85.8-18.9 0-34.8-17.4-47.9-52.3-25.5-93.3-36.4-148-57.4-148-2.4 0-10.9 5.1-25.4 15.2l-15.2-19.6c37.3-32.8 72.9-69.2 95.2-71.2 25.2-2.4 40.7 14.8 46.5 51.7 20.7 131.2 29.9 151 67.6 91.6 13.5-21.4 20.8-37.7 21.8-48.9 3.5-33.2-25.9-30.9-45.8-22.4 15.9-52.1 46.3-77.4 91.2-76 33.3.9 49 22.5 47.1 64.7z"] }; +var faVimeoSquare = { prefix: 'fab', iconName: 'vimeo-square', icon: [448, 512, [], "f194", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16.2 149.6c-1.4 31.1-23.2 73.8-65.3 127.9-43.5 56.5-80.3 84.8-110.4 84.8-18.7 0-34.4-17.2-47.3-51.6-25.2-92.3-35.9-146.4-56.7-146.4-2.4 0-10.8 5-25.1 15.1L64 192c36.9-32.4 72.1-68.4 94.1-70.4 24.9-2.4 40.2 14.6 46 51.1 20.5 129.6 29.6 149.2 66.8 90.5 13.4-21.2 20.6-37.2 21.5-48.3 3.4-32.8-25.6-30.6-45.2-22.2 15.7-51.5 45.8-76.5 90.1-75.1 32.9 1 48.4 22.4 46.5 64z"] }; +var faVimeoV = { prefix: 'fab', iconName: 'vimeo-v', icon: [448, 512, [], "f27d", "M447.8 153.6c-2 43.6-32.4 103.3-91.4 179.1-60.9 79.2-112.4 118.8-154.6 118.8-26.1 0-48.2-24.1-66.3-72.3C100.3 250 85.3 174.3 56.2 174.3c-3.4 0-15.1 7.1-35.2 21.1L0 168.2c51.6-45.3 100.9-95.7 131.8-98.5 34.9-3.4 56.3 20.5 64.4 71.5 28.7 181.5 41.4 208.9 93.6 126.7 18.7-29.6 28.8-52.1 30.2-67.6 4.8-45.9-35.8-42.8-63.3-31 22-72.1 64.1-107.1 126.2-105.1 45.8 1.2 67.5 31.1 64.9 89.4z"] }; +var faVine = { prefix: 'fab', iconName: 'vine', icon: [384, 512, [], "f1ca", "M384 254.7v52.1c-18.4 4.2-36.9 6.1-52.1 6.1-36.9 77.4-103 143.8-125.1 156.2-14 7.9-27.1 8.4-42.7-.8C137 452 34.2 367.7 0 102.7h74.5C93.2 261.8 139 343.4 189.3 404.5c27.9-27.9 54.8-65.1 75.6-106.9-49.8-25.3-80.1-80.9-80.1-145.6 0-65.6 37.7-115.1 102.2-115.1 114.9 0 106.2 127.9 81.6 181.5 0 0-46.4 9.2-63.5-20.5 3.4-11.3 8.2-30.8 8.2-48.5 0-31.3-11.3-46.6-28.4-46.6-18.2 0-30.8 17.1-30.8 50 .1 79.2 59.4 118.7 129.9 101.9z"] }; +var faVk = { prefix: 'fab', iconName: 'vk', icon: [576, 512, [], "f189", "M545 117.7c3.7-12.5 0-21.7-17.8-21.7h-58.9c-15 0-21.9 7.9-25.6 16.7 0 0-30 73.1-72.4 120.5-13.7 13.7-20 18.1-27.5 18.1-3.7 0-9.4-4.4-9.4-16.9V117.7c0-15-4.2-21.7-16.6-21.7h-92.6c-9.4 0-15 7-15 13.5 0 14.2 21.2 17.5 23.4 57.5v86.8c0 19-3.4 22.5-10.9 22.5-20 0-68.6-73.4-97.4-157.4-5.8-16.3-11.5-22.9-26.6-22.9H38.8c-16.8 0-20.2 7.9-20.2 16.7 0 15.6 20 93.1 93.1 195.5C160.4 378.1 229 416 291.4 416c37.5 0 42.1-8.4 42.1-22.9 0-66.8-3.4-73.1 15.4-73.1 8.7 0 23.7 4.4 58.7 38.1 40 40 46.6 57.9 69 57.9h58.9c16.8 0 25.3-8.4 20.4-25-11.2-34.9-86.9-106.7-90.3-111.5-8.7-11.2-6.2-16.2 0-26.2.1-.1 72-101.3 79.4-135.6z"] }; +var faVnv = { prefix: 'fab', iconName: 'vnv', icon: [640, 512, [], "f40b", "M104.9 352c-34.1 0-46.4-30.4-46.4-30.4L2.6 210.1S-7.8 192 13 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.7-74.5c5.6-9.5 8.4-18.1 18.8-18.1h32.8c20.8 0 10.4 18.1 10.4 18.1l-55.8 111.5S174.2 352 140 352h-35.1zm395 0c-34.1 0-46.4-30.4-46.4-30.4l-55.9-111.5S387.2 192 408 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.8-74.5c5.6-9.5 8.4-18.1 18.8-18.1H627c20.8 0 10.4 18.1 10.4 18.1l-55.9 111.5S569.3 352 535.1 352h-35.2zM337.6 192c34.1 0 46.4 30.4 46.4 30.4l55.9 111.5s10.4 18.1-10.4 18.1h-32.8c-10.4 0-13.2-8.7-18.8-18.1l-36.7-74.5s-5.2-13.1-21.1-13.1c-15.9 0-21.1 13.1-21.1 13.1l-36.7 74.5c-5.6 9.4-8.4 18.1-18.8 18.1h-32.9c-20.8 0-10.4-18.1-10.4-18.1l55.9-111.5s12.2-30.4 46.4-30.4h35.1z"] }; +var faVuejs = { prefix: 'fab', iconName: 'vuejs', icon: [448, 512, [], "f41f", "M356.9 64.3H280l-56 88.6-48-88.6H0L224 448 448 64.3h-91.1zm-301.2 32h53.8L224 294.5 338.4 96.3h53.8L224 384.5 55.7 96.3z"] }; +var faWeebly = { prefix: 'fab', iconName: 'weebly', icon: [512, 512, [], "f5cc", "M425.09 65.83c-39.88 0-73.28 25.73-83.66 64.33-18.16-58.06-65.5-64.33-84.95-64.33-19.78 0-66.8 6.28-85.28 64.33-10.38-38.6-43.45-64.33-83.66-64.33C38.59 65.83 0 99.72 0 143.03c0 28.96 4.18 33.27 77.17 233.48 22.37 60.57 67.77 69.35 92.74 69.35 39.23 0 70.04-19.46 85.93-53.98 15.89 34.83 46.69 54.29 85.93 54.29 24.97 0 70.36-9.1 92.74-69.67 76.55-208.65 77.5-205.58 77.5-227.2.63-48.32-36.01-83.47-86.92-83.47zm26.34 114.81l-65.57 176.44c-7.92 21.49-21.22 37.22-46.24 37.22-23.44 0-37.38-12.41-44.03-33.9l-39.28-117.42h-.95L216.08 360.4c-6.96 21.5-20.9 33.6-44.02 33.6-25.02 0-38.33-15.74-46.24-37.22L60.88 181.55c-5.38-14.83-7.92-23.91-7.92-34.5 0-16.34 15.84-29.36 38.33-29.36 18.69 0 31.99 11.8 36.11 29.05l44.03 139.82h.95l44.66-136.79c6.02-19.67 16.47-32.08 38.96-32.08s32.94 12.11 38.96 32.08l44.66 136.79h.95l44.03-139.82c4.12-17.25 17.42-29.05 36.11-29.05 22.17 0 38.33 13.32 38.33 35.71-.32 7.87-4.12 16.04-7.61 27.24z"] }; +var faWeibo = { prefix: 'fab', iconName: 'weibo', icon: [512, 512, [], "f18a", "M407 177.6c7.6-24-13.4-46.8-37.4-41.7-22 4.8-28.8-28.1-7.1-32.8 50.1-10.9 92.3 37.1 76.5 84.8-6.8 21.2-38.8 10.8-32-10.3zM214.8 446.7C108.5 446.7 0 395.3 0 310.4c0-44.3 28-95.4 76.3-143.7C176 67 279.5 65.8 249.9 161c-4 13.1 12.3 5.7 12.3 6 79.5-33.6 140.5-16.8 114 51.4-3.7 9.4 1.1 10.9 8.3 13.1 135.7 42.3 34.8 215.2-169.7 215.2zm143.7-146.3c-5.4-55.7-78.5-94-163.4-85.7-84.8 8.6-148.8 60.3-143.4 116s78.5 94 163.4 85.7c84.8-8.6 148.8-60.3 143.4-116zM347.9 35.1c-25.9 5.6-16.8 43.7 8.3 38.3 72.3-15.2 134.8 52.8 111.7 124-7.4 24.2 29.1 37 37.4 12 31.9-99.8-55.1-195.9-157.4-174.3zm-78.5 311c-17.1 38.8-66.8 60-109.1 46.3-40.8-13.1-58-53.4-40.3-89.7 17.7-35.4 63.1-55.4 103.4-45.1 42 10.8 63.1 50.2 46 88.5zm-86.3-30c-12.9-5.4-30 .3-38 12.9-8.3 12.9-4.3 28 8.6 34 13.1 6 30.8.3 39.1-12.9 8-13.1 3.7-28.3-9.7-34zm32.6-13.4c-5.1-1.7-11.4.6-14.3 5.4-2.9 5.1-1.4 10.6 3.7 12.9 5.1 2 11.7-.3 14.6-5.4 2.8-5.2 1.1-10.9-4-12.9z"] }; +var faWeixin = { prefix: 'fab', iconName: 'weixin', icon: [576, 512, [], "f1d7", "M385.2 167.6c6.4 0 12.6.3 18.8 1.1C387.4 90.3 303.3 32 207.7 32 100.5 32 13 104.8 13 197.4c0 53.4 29.3 97.5 77.9 131.6l-19.3 58.6 68-34.1c24.4 4.8 43.8 9.7 68.2 9.7 6.2 0 12.1-.3 18.3-.8-4-12.9-6.2-26.6-6.2-40.8-.1-84.9 72.9-154 165.3-154zm-104.5-52.9c14.5 0 24.2 9.7 24.2 24.4 0 14.5-9.7 24.2-24.2 24.2-14.8 0-29.3-9.7-29.3-24.2.1-14.7 14.6-24.4 29.3-24.4zm-136.4 48.6c-14.5 0-29.3-9.7-29.3-24.2 0-14.8 14.8-24.4 29.3-24.4 14.8 0 24.4 9.7 24.4 24.4 0 14.6-9.6 24.2-24.4 24.2zM563 319.4c0-77.9-77.9-141.3-165.4-141.3-92.7 0-165.4 63.4-165.4 141.3S305 460.7 397.6 460.7c19.3 0 38.9-5.1 58.6-9.9l53.4 29.3-14.8-48.6C534 402.1 563 363.2 563 319.4zm-219.1-24.5c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.8 0 24.4 9.7 24.4 19.3 0 10-9.7 19.6-24.4 19.6zm107.1 0c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.5 0 24.4 9.7 24.4 19.3.1 10-9.9 19.6-24.4 19.6z"] }; +var faWhatsapp = { prefix: 'fab', iconName: 'whatsapp', icon: [448, 512, [], "f232", "M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"] }; +var faWhatsappSquare = { prefix: 'fab', iconName: 'whatsapp-square', icon: [448, 512, [], "f40c", "M224 122.8c-72.7 0-131.8 59.1-131.9 131.8 0 24.9 7 49.2 20.2 70.1l3.1 5-13.3 48.6 49.9-13.1 4.8 2.9c20.2 12 43.4 18.4 67.1 18.4h.1c72.6 0 133.3-59.1 133.3-131.8 0-35.2-15.2-68.3-40.1-93.2-25-25-58-38.7-93.2-38.7zm77.5 188.4c-3.3 9.3-19.1 17.7-26.7 18.8-12.6 1.9-22.4.9-47.5-9.9-39.7-17.2-65.7-57.2-67.7-59.8-2-2.6-16.2-21.5-16.2-41s10.2-29.1 13.9-33.1c3.6-4 7.9-5 10.6-5 2.6 0 5.3 0 7.6.1 2.4.1 5.7-.9 8.9 6.8 3.3 7.9 11.2 27.4 12.2 29.4s1.7 4.3.3 6.9c-7.6 15.2-15.7 14.6-11.6 21.6 15.3 26.3 30.6 35.4 53.9 47.1 4 2 6.3 1.7 8.6-1 2.3-2.6 9.9-11.6 12.5-15.5 2.6-4 5.3-3.3 8.9-2 3.6 1.3 23.1 10.9 27.1 12.9s6.6 3 7.6 4.6c.9 1.9.9 9.9-2.4 19.1zM400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM223.9 413.2c-26.6 0-52.7-6.7-75.8-19.3L64 416l22.5-82.2c-13.9-24-21.2-51.3-21.2-79.3C65.4 167.1 136.5 96 223.9 96c42.4 0 82.2 16.5 112.2 46.5 29.9 30 47.9 69.8 47.9 112.2 0 87.4-72.7 158.5-160.1 158.5z"] }; +var faWhmcs = { prefix: 'fab', iconName: 'whmcs', icon: [448, 512, [], "f40d", "M448 161v-21.3l-28.5-8.8-2.2-10.4 20.1-20.7L427 80.4l-29 7.5-7.2-7.5 7.5-28.2-19.1-11.6-21.3 21-10.7-3.2-7-26.4h-22.6l-6.2 26.4-12.1 3.2-19.7-21-19.4 11 8.1 27.7-8.1 8.4-28.5-7.5-11 19.1 20.7 21-2.9 10.4-28.5 7.8-.3 21.7 28.8 7.5 2.4 12.1-20.1 19.9 10.4 18.5 29.6-7.5 7.2 8.6-8.1 26.9 19.9 11.6 19.4-20.4 11.6 2.9 6.7 28.5 22.6.3 6.7-28.8 11.6-3.5 20.7 21.6 20.4-12.1-8.8-28 7.8-8.1 28.8 8.8 10.3-20.1-20.9-18.8 2.2-12.1 29.1-7zm-119.2 45.2c-31.3 0-56.8-25.4-56.8-56.8s25.4-56.8 56.8-56.8 56.8 25.4 56.8 56.8c0 31.5-25.4 56.8-56.8 56.8zm72.3 16.4l46.9 14.5V277l-55.1 13.4-4.1 22.7 38.9 35.3-19.2 37.9-54-16.7-14.6 15.2 16.7 52.5-38.3 22.7-38.9-40.5-21.7 6.6-12.6 54-42.4-.5-12.6-53.6-21.7-5.6-36.4 38.4-37.4-21.7 15.2-50.5-13.7-16.1-55.5 14.1-19.7-34.8 37.9-37.4-4.8-22.8-54-14.1.5-40.9L54 219.9l5.7-19.7-38.9-39.4L41.5 125l53.6 14.1 15.2-15.7-15.2-52 36.4-20.7 36.8 39.4L191 84l11.6-52H245l11.6 45.9L234 72l-6.3-1.7-3.3 5.7-11 19.1-3.3 5.6 4.6 4.6 17.2 17.4-.3 1-23.8 6.5-6.2 1.7-.1 6.4-.2 12.9C153.8 161.6 118 204 118 254.7c0 58.3 47.3 105.7 105.7 105.7 50.5 0 92.7-35.4 103.2-82.8l13.2.2 6.9.1 1.6-6.7 5.6-24 1.9-.6 17.1 17.8 4.7 4.9 5.8-3.4 20.4-12.1 5.8-3.5-2-6.5-6.8-21.2z"] }; +var faWikipediaW = { prefix: 'fab', iconName: 'wikipedia-w', icon: [640, 512, [], "f266", "M640 51.2l-.3 12.2c-28.1.8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3.3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4.2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5.3v13.1c-19.4.6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4.3-3.6 0-10.3.3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5.8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1.2.5z"] }; +var faWindows = { prefix: 'fab', iconName: 'windows', icon: [448, 512, [], "f17a", "M0 93.7l183.6-25.3v177.4H0V93.7zm0 324.6l183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z"] }; +var faWix = { prefix: 'fab', iconName: 'wix', icon: [640, 512, [], "f5cf", "M393.38 131.69c0 13.03 2.08 32.69-28.68 43.83-9.52 3.45-15.95 9.66-15.95 9.66 0-31 4.72-42.22 17.4-48.86 9.75-5.11 27.23-4.63 27.23-4.63zm-115.8 35.54l-34.24 132.66-28.48-108.57c-7.69-31.99-20.81-48.53-48.43-48.53-27.37 0-40.66 16.18-48.43 48.53L89.52 299.89 55.28 167.23C49.73 140.51 23.86 128.96 0 131.96l65.57 247.93s21.63 1.56 32.46-3.96c14.22-7.25 20.98-12.84 29.59-46.57 7.67-30.07 29.11-118.41 31.12-124.7 4.76-14.94 11.09-13.81 15.4 0 1.97 6.3 23.45 94.63 31.12 124.7 8.6 33.73 15.37 39.32 29.59 46.57 10.82 5.52 32.46 3.96 32.46 3.96l65.57-247.93c-24.42-3.07-49.82 8.93-55.3 35.27zm115.78 5.21s-4.1 6.34-13.46 11.57c-6.01 3.36-11.78 5.64-17.97 8.61-15.14 7.26-13.18 13.95-13.18 35.2v152.07s16.55 2.09 27.37-3.43c13.93-7.1 17.13-13.95 17.26-44.78V181.41l-.02.01v-8.98zm163.44 84.08L640 132.78s-35.11-5.98-52.5 9.85c-13.3 12.1-24.41 29.55-54.18 72.47-.47.73-6.25 10.54-13.07 0-29.29-42.23-40.8-60.29-54.18-72.47-17.39-15.83-52.5-9.85-52.5-9.85l83.2 123.74-82.97 123.36s36.57 4.62 53.95-11.21c11.49-10.46 17.58-20.37 52.51-70.72 6.81-10.52 12.57-.77 13.07 0 29.4 42.38 39.23 58.06 53.14 70.72 17.39 15.83 53.32 11.21 53.32 11.21L556.8 256.52z"] }; +var faWolfPackBattalion = { prefix: 'fab', iconName: 'wolf-pack-battalion', icon: [456, 512, [], "f514", "M239.73 471.53l10.56 15.84 5.28-12.32 5.28 7.04V512c21.06-7.92 21.11-66.86 25.51-97.21 4.62-31.89-.88-92.81 81.37-149.11-8.88-23.61-12-49.43-2.64-80.05 27.87 3.34 53.94 10.58 63.34 54.1l-30.35 8.36c11.15 23.04 17.01 46.76 13.2 72.14L384 313.18l-6.16 33.43-18.47-7.04-8.8 33.43-19.35-7.04 26.39 21.11 8.8-28.15 24.63 5.28 7.04-35.63 26.39 14.52c.25-20.02 6.97-58.06-8.8-84.45l26.39 5.28c3.99-22.07-2.38-39.21-7.92-56.74l22.43 9.68c-.44-25.07-29.94-56.79-61.58-58.5-20.22-1.09-56.74-25.17-54.1-51.9 1.96-19.87 17.45-42.62 43.11-49.7-43.99 36.51-9.68 67.3 5.28 73.46 4.4-11.44 17.54-69.08 0-130.2-40.47 22.87-89.73 65.1-93.25 147.79l-58.06 38.71-3.52 93.25 107.33-59.82 7.04 7.04-17.59 3.52-43.99 38.71-15.84-5.28-28.15 49.26-3.52 119.64 21.11 15.84-32.55 15.84-32.55-15.84 21.11-15.84-3.52-119.64-28.15-49.26-15.84 5.28-43.99-38.71-17.59-3.52 7.04-7.04 107.33 59.82-3.52-93.25-58.06-38.71C157.03 65.1 107.77 22.87 67.3 0c-17.54 61.12-4.4 118.76 0 130.2 14.96-6.16 49.26-36.95 5.28-73.46 25.66 7.08 41.15 29.83 43.11 49.7 2.63 26.74-33.88 50.81-54.1 51.9C29.94 160.06.44 191.78 0 216.85l22.43-9.68c-5.54 17.53-11.91 34.67-7.92 56.74l26.39-5.28c-15.76 26.39-9.05 64.43-8.8 84.45l26.39-14.52 7.04 35.63 24.63-5.28 8.8 28.15 26.39-21.11-19.34 7.05-8.8-33.43-18.47 7.04-6.16-33.43-27.27 7.04c-3.82-25.38 2.05-49.1 13.2-72.14l-30.35-8.36c9.4-43.52 35.47-50.77 63.34-54.1 9.36 30.62 6.24 56.45-2.64 80.05 82.25 56.3 76.75 117.23 81.37 149.11 4.4 30.35 4.45 89.29 25.51 97.21v-29.91l5.28-7.04 5.28 12.32 10.56-15.84 11.44 21.11 11.43-21.1zm79.17-95.01l-15.84-10.56c7.47-4.36 13.76-8.42 19.35-12.32-.6 7.26-.27 13.88-3.51 22.88zm28.15-49.26c-.4 10.94-.9 21.66-1.76 31.67-7.85-1.86-15.57-3.8-21.11-7.04 8.24-7.9 15.55-16.27 22.87-24.63zm24.63 5.28c-.02-13.43-2.05-24.21-5.28-33.43-5.38 9.09-11.23 18.18-18.47 27.27l23.75 6.16zm3.52-80.94c19.44 12.81 27.8 33.66 29.91 56.3-12.32-4.53-24.63-9.31-36.95-10.56 5.06-11.99 6.65-28.14 7.04-45.74zm-1.76-45.74c.81 14.3 1.84 28.82 1.76 42.23 19.22-8.11 29.78-9.72 43.99-14.08-10.6-18.95-27.22-25.52-45.75-28.15zM137.68 376.52l15.84-10.56c-7.47-4.36-13.76-8.42-19.35-12.32.6 7.26.27 13.88 3.51 22.88zm-28.15-49.26c.4 10.94.9 21.66 1.76 31.67 7.85-1.86 15.57-3.8 21.11-7.04-8.24-7.9-15.55-16.27-22.87-24.63zm-24.64 5.28c.02-13.43 2.05-24.21 5.28-33.43 5.38 9.09 11.23 18.18 18.47 27.27l-23.75 6.16zm-3.52-80.94c-19.44 12.81-27.8 33.66-29.91 56.3 12.32-4.53 24.63-9.31 36.95-10.56-5.05-11.99-6.65-28.14-7.04-45.74zm1.76-45.74c-.81 14.3-1.84 28.82-1.76 42.23-19.22-8.11-29.78-9.72-43.99-14.08 10.61-18.95 27.22-25.52 45.75-28.15z"] }; +var faWordpress = { prefix: 'fab', iconName: 'wordpress', icon: [512, 512, [], "f19a", "M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z"] }; +var faWordpressSimple = { prefix: 'fab', iconName: 'wordpress-simple', icon: [512, 512, [], "f411", "M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8zM33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256zm223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6zm30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3-80.7-239.6zm81.4 297.2l68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7z"] }; +var faWpbeginner = { prefix: 'fab', iconName: 'wpbeginner', icon: [512, 512, [], "f297", "M462.799 322.374C519.01 386.682 466.961 480 370.944 480c-39.602 0-78.824-17.687-100.142-50.04-6.887.356-22.702.356-29.59 0C219.848 462.381 180.588 480 141.069 480c-95.49 0-148.348-92.996-91.855-157.626C-29.925 190.523 80.479 32 256.006 32c175.632 0 285.87 158.626 206.793 290.374zm-339.647-82.972h41.529v-58.075h-41.529v58.075zm217.18 86.072v-23.839c-60.506 20.915-132.355 9.198-187.589-33.971l.246 24.897c51.101 46.367 131.746 57.875 187.343 32.913zm-150.753-86.072h166.058v-58.075H189.579v58.075z"] }; +var faWpexplorer = { prefix: 'fab', iconName: 'wpexplorer', icon: [512, 512, [], "f2de", "M512 256c0 141.2-114.7 256-256 256C114.8 512 0 397.3 0 256S114.7 0 256 0s256 114.7 256 256zm-32 0c0-123.2-100.3-224-224-224C132.5 32 32 132.5 32 256s100.5 224 224 224 224-100.5 224-224zM160.9 124.6l86.9 37.1-37.1 86.9-86.9-37.1 37.1-86.9zm110 169.1l46.6 94h-14.6l-50-100-48.9 100h-14l51.1-106.9-22.3-9.4 6-14 68.6 29.1-6 14.3-16.5-7.1zm-11.8-116.3l68.6 29.4-29.4 68.3L230 246l29.1-68.6zm80.3 42.9l54.6 23.1-23.4 54.3-54.3-23.1 23.1-54.3z"] }; +var faWpforms = { prefix: 'fab', iconName: 'wpforms', icon: [448, 512, [], "f298", "M448 75.2v361.7c0 24.3-19 43.2-43.2 43.2H43.2C19.3 480 0 461.4 0 436.8V75.2C0 51.1 18.8 32 43.2 32h361.7c24 0 43.1 18.8 43.1 43.2zm-37.3 361.6V75.2c0-3-2.6-5.8-5.8-5.8h-9.3L285.3 144 224 94.1 162.8 144 52.5 69.3h-9.3c-3.2 0-5.8 2.8-5.8 5.8v361.7c0 3 2.6 5.8 5.8 5.8h361.7c3.2.1 5.8-2.7 5.8-5.8zM150.2 186v37H76.7v-37h73.5zm0 74.4v37.3H76.7v-37.3h73.5zm11.1-147.3l54-43.7H96.8l64.5 43.7zm210 72.9v37h-196v-37h196zm0 74.4v37.3h-196v-37.3h196zm-84.6-147.3l64.5-43.7H232.8l53.9 43.7zM371.3 335v37.3h-99.4V335h99.4z"] }; +var faXbox = { prefix: 'fab', iconName: 'xbox', icon: [512, 512, [], "f412", "M369.9 318.2c44.3 54.3 64.7 98.8 54.4 118.7-7.9 15.1-56.7 44.6-92.6 55.9-29.6 9.3-68.4 13.3-100.4 10.2-38.2-3.7-76.9-17.4-110.1-39C93.3 445.8 87 438.3 87 423.4c0-29.9 32.9-82.3 89.2-142.1 32-33.9 76.5-73.7 81.4-72.6 9.4 2.1 84.3 75.1 112.3 109.5zM188.6 143.8c-29.7-26.9-58.1-53.9-86.4-63.4-15.2-5.1-16.3-4.8-28.7 8.1-29.2 30.4-53.5 79.7-60.3 122.4-5.4 34.2-6.1 43.8-4.2 60.5 5.6 50.5 17.3 85.4 40.5 120.9 9.5 14.6 12.1 17.3 9.3 9.9-4.2-11-.3-37.5 9.5-64 14.3-39 53.9-112.9 120.3-194.4zm311.6 63.5C483.3 127.3 432.7 77 425.6 77c-7.3 0-24.2 6.5-36 13.9-23.3 14.5-41 31.4-64.3 52.8C367.7 197 427.5 283.1 448.2 346c6.8 20.7 9.7 41.1 7.4 52.3-1.7 8.5-1.7 8.5 1.4 4.6 6.1-7.7 19.9-31.3 25.4-43.5 7.4-16.2 15-40.2 18.6-58.7 4.3-22.5 3.9-70.8-.8-93.4zM141.3 43C189 40.5 251 77.5 255.6 78.4c.7.1 10.4-4.2 21.6-9.7 63.9-31.1 94-25.8 107.4-25.2-63.9-39.3-152.7-50-233.9-11.7-23.4 11.1-24 11.9-9.4 11.2z"] }; +var faXing = { prefix: 'fab', iconName: 'xing', icon: [384, 512, [], "f168", "M162.7 210c-1.8 3.3-25.2 44.4-70.1 123.5-4.9 8.3-10.8 12.5-17.7 12.5H9.8c-7.7 0-12.1-7.5-8.5-14.4l69-121.3c.2 0 .2-.1 0-.3l-43.9-75.6c-4.3-7.8.3-14.1 8.5-14.1H100c7.3 0 13.3 4.1 18 12.2l44.7 77.5zM382.6 46.1l-144 253v.3L330.2 466c3.9 7.1.2 14.1-8.5 14.1h-65.2c-7.6 0-13.6-4-18-12.2l-92.4-168.5c3.3-5.8 51.5-90.8 144.8-255.2 4.6-8.1 10.4-12.2 17.5-12.2h65.7c8 0 12.3 6.7 8.5 14.1z"] }; +var faXingSquare = { prefix: 'fab', iconName: 'xing-square', icon: [448, 512, [], "f169", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM140.4 320.2H93.8c-5.5 0-8.7-5.3-6-10.3l49.3-86.7c.1 0 .1-.1 0-.2l-31.4-54c-3-5.6.2-10.1 6-10.1h46.6c5.2 0 9.5 2.9 12.9 8.7l31.9 55.3c-1.3 2.3-18 31.7-50.1 88.2-3.5 6.2-7.7 9.1-12.6 9.1zm219.7-214.1L257.3 286.8v.2l65.5 119c2.8 5.1.1 10.1-6 10.1h-46.6c-5.5 0-9.7-2.9-12.9-8.7l-66-120.3c2.3-4.1 36.8-64.9 103.4-182.3 3.3-5.8 7.4-8.7 12.5-8.7h46.9c5.7-.1 8.8 4.7 6 10z"] }; +var faYCombinator = { prefix: 'fab', iconName: 'y-combinator', icon: [448, 512, [], "f23b", "M448 32v448H0V32h448zM236 287.5L313.5 142h-32.7L235 233c-4.7 9.3-9 18.3-12.8 26.8L210 233l-45.2-91h-35l76.7 143.8v94.5H236v-92.8z"] }; +var faYahoo = { prefix: 'fab', iconName: 'yahoo', icon: [448, 512, [], "f19e", "M252 292l4 220c-12.7-2.2-23.5-3.9-32.3-3.9-8.4 0-19.2 1.7-32.3 3.9l4-220C140.4 197.2 85 95.2 21.4 0c11.9 3.1 23 3.9 33.2 3.9 9 0 20.4-.8 34.1-3.9 40.9 72.2 82.1 138.7 135 225.5C261 163.9 314.8 81.4 358.6 0c11.1 2.9 22 3.9 32.9 3.9 11.5 0 23.2-1 35-3.9C392.1 47.9 294.9 216.9 252 292z"] }; +var faYandex = { prefix: 'fab', iconName: 'yandex', icon: [256, 512, [], "f413", "M153.1 315.8L65.7 512H2l96-209.8c-45.1-22.9-75.2-64.4-75.2-141.1C22.7 53.7 90.8 0 171.7 0H254v512h-55.1V315.8h-45.8zm45.8-269.3h-29.4c-44.4 0-87.4 29.4-87.4 114.6 0 82.3 39.4 108.8 87.4 108.8h29.4V46.5z"] }; +var faYandexInternational = { prefix: 'fab', iconName: 'yandex-international', icon: [320, 512, [], "f414", "M129.5 512V345.9L18.5 48h55.8l81.8 229.7L250.2 0h51.3L180.8 347.8V512h-51.3z"] }; +var faYelp = { prefix: 'fab', iconName: 'yelp', icon: [384, 512, [], "f1e9", "M136.9 328c-1 .3-109.2 35.7-115.8 35.7-15.2-.9-18.5-16.2-19.9-31.2-1.5-14.2-1.4-29.8.3-46.8 1.9-18.8 5.5-45.1 24.2-44 4.8 0 67.1 25.9 112.7 44.4 17.1 6.8 18.6 35.8-1.5 41.9zm57.9-113.9c1.8 38.2-25.5 48.5-47.2 14.3L41.3 60.4c-1.5-6.6.3-12.4 5.3-17.4C62.2 26.5 146 3.2 168.1 8.9c7.5 1.9 12.1 6.1 13.8 12.6 1.3 8.3 11.5 167.4 12.9 192.6zm-1.4 164.8c0 4.6.2 116.4-1.7 121.5-2.3 6-7 9.7-14.3 11.2-10.1 1.7-27.1-1.9-51-10.7-22-8.1-56.7-21.5-49.3-42.5 2.8-6.9 51.4-62.8 77.3-93.6 12-15.2 39.8-5.5 39 14.1zm180.2-117.8c-5.6 3.7-110.8 28.2-118.1 30.6l.3-.6c-18.1 4.7-35.4-18.5-23.3-34.6 3.7-3.7 65.9-92.4 72.8-97 5.2-3.6 11.3-3.8 18.3-.6 18.4 8.8 55.1 63.1 57.4 84.6-.1 2.9 1.2 11.7-7.4 17.6zm10.1 130.7c-2.7 20.6-44.5 73.4-63.8 81-6.9 2.6-12.9 2-17.7-2-5-3.5-61.8-97.1-64.9-102.3-10.9-16.2 6.8-39.8 25.6-33.2 0 0 110.5 35.7 114.7 39.4 5.2 4.1 7.2 9.8 6.1 17.1z"] }; +var faYoast = { prefix: 'fab', iconName: 'yoast', icon: [448, 512, [], "f2b1", "M91.3 76h186l-7 18.9h-179c-39.7 0-71.9 31.6-71.9 70.3v205.4c0 35.4 24.9 70.3 84 70.3V460H91.3C41.2 460 0 419.8 0 370.5V165.2C0 115.9 40.7 76 91.3 76zm229.1-56h66.5C243.1 398.1 241.2 418.9 202.2 459.3c-20.8 21.6-49.3 31.7-78.3 32.7v-51.1c49.2-7.7 64.6-49.9 64.6-75.3 0-20.1.6-12.6-82.1-223.2h61.4L218.2 299 320.4 20zM448 161.5V460H234c6.6-9.6 10.7-16.3 12.1-19.4h182.5V161.5c0-32.5-17.1-51.9-48.2-62.9l6.7-17.6c41.7 13.6 60.9 43.1 60.9 80.5z"] }; +var faYoutube = { prefix: 'fab', iconName: 'youtube', icon: [576, 512, [], "f167", "M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"] }; +var faYoutubeSquare = { prefix: 'fab', iconName: 'youtube-square', icon: [448, 512, [], "f431", "M186.8 202.1l95.2 54.1-95.2 54.1V202.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-42 176.3s0-59.6-7.6-88.2c-4.2-15.8-16.5-28.2-32.2-32.4C337.9 128 224 128 224 128s-113.9 0-142.2 7.7c-15.7 4.2-28 16.6-32.2 32.4-7.6 28.5-7.6 88.2-7.6 88.2s0 59.6 7.6 88.2c4.2 15.8 16.5 27.7 32.2 31.9C110.1 384 224 384 224 384s113.9 0 142.2-7.7c15.7-4.2 28-16.1 32.2-31.9 7.6-28.5 7.6-88.1 7.6-88.1z"] }; +var _iconsCache = { + fa500px: fa500px, + faAccessibleIcon: faAccessibleIcon, + faAccusoft: faAccusoft, + faAdn: faAdn, + faAdversal: faAdversal, + faAffiliatetheme: faAffiliatetheme, + faAlgolia: faAlgolia, + faAmazon: faAmazon, + faAmazonPay: faAmazonPay, + faAmilia: faAmilia, + faAndroid: faAndroid, + faAngellist: faAngellist, + faAngrycreative: faAngrycreative, + faAngular: faAngular, + faAppStore: faAppStore, + faAppStoreIos: faAppStoreIos, + faApper: faApper, + faApple: faApple, + faApplePay: faApplePay, + faAsymmetrik: faAsymmetrik, + faAudible: faAudible, + faAutoprefixer: faAutoprefixer, + faAvianex: faAvianex, + faAviato: faAviato, + faAws: faAws, + faBandcamp: faBandcamp, + faBehance: faBehance, + faBehanceSquare: faBehanceSquare, + faBimobject: faBimobject, + faBitbucket: faBitbucket, + faBitcoin: faBitcoin, + faBity: faBity, + faBlackTie: faBlackTie, + faBlackberry: faBlackberry, + faBlogger: faBlogger, + faBloggerB: faBloggerB, + faBluetooth: faBluetooth, + faBluetoothB: faBluetoothB, + faBtc: faBtc, + faBuromobelexperte: faBuromobelexperte, + faBuysellads: faBuysellads, + faCcAmazonPay: faCcAmazonPay, + faCcAmex: faCcAmex, + faCcApplePay: faCcApplePay, + faCcDinersClub: faCcDinersClub, + faCcDiscover: faCcDiscover, + faCcJcb: faCcJcb, + faCcMastercard: faCcMastercard, + faCcPaypal: faCcPaypal, + faCcStripe: faCcStripe, + faCcVisa: faCcVisa, + faCentercode: faCentercode, + faChrome: faChrome, + faCloudscale: faCloudscale, + faCloudsmith: faCloudsmith, + faCloudversify: faCloudversify, + faCodepen: faCodepen, + faCodiepie: faCodiepie, + faConnectdevelop: faConnectdevelop, + faContao: faContao, + faCpanel: faCpanel, + faCreativeCommons: faCreativeCommons, + faCreativeCommonsBy: faCreativeCommonsBy, + faCreativeCommonsNc: faCreativeCommonsNc, + faCreativeCommonsNcEu: faCreativeCommonsNcEu, + faCreativeCommonsNcJp: faCreativeCommonsNcJp, + faCreativeCommonsNd: faCreativeCommonsNd, + faCreativeCommonsPd: faCreativeCommonsPd, + faCreativeCommonsPdAlt: faCreativeCommonsPdAlt, + faCreativeCommonsRemix: faCreativeCommonsRemix, + faCreativeCommonsSa: faCreativeCommonsSa, + faCreativeCommonsSampling: faCreativeCommonsSampling, + faCreativeCommonsSamplingPlus: faCreativeCommonsSamplingPlus, + faCreativeCommonsShare: faCreativeCommonsShare, + faCss3: faCss3, + faCss3Alt: faCss3Alt, + faCuttlefish: faCuttlefish, + faDAndD: faDAndD, + faDashcube: faDashcube, + faDelicious: faDelicious, + faDeploydog: faDeploydog, + faDeskpro: faDeskpro, + faDeviantart: faDeviantart, + faDigg: faDigg, + faDigitalOcean: faDigitalOcean, + faDiscord: faDiscord, + faDiscourse: faDiscourse, + faDochub: faDochub, + faDocker: faDocker, + faDraft2digital: faDraft2digital, + faDribbble: faDribbble, + faDribbbleSquare: faDribbbleSquare, + faDropbox: faDropbox, + faDrupal: faDrupal, + faDyalog: faDyalog, + faEarlybirds: faEarlybirds, + faEbay: faEbay, + faEdge: faEdge, + faElementor: faElementor, + faEmber: faEmber, + faEmpire: faEmpire, + faEnvira: faEnvira, + faErlang: faErlang, + faEthereum: faEthereum, + faEtsy: faEtsy, + faExpeditedssl: faExpeditedssl, + faFacebook: faFacebook, + faFacebookF: faFacebookF, + faFacebookMessenger: faFacebookMessenger, + faFacebookSquare: faFacebookSquare, + faFirefox: faFirefox, + faFirstOrder: faFirstOrder, + faFirstOrderAlt: faFirstOrderAlt, + faFirstdraft: faFirstdraft, + faFlickr: faFlickr, + faFlipboard: faFlipboard, + faFly: faFly, + faFontAwesome: faFontAwesome, + faFontAwesomeAlt: faFontAwesomeAlt, + faFontAwesomeFlag: faFontAwesomeFlag, + faFontAwesomeLogoFull: faFontAwesomeLogoFull, + faFonticons: faFonticons, + faFonticonsFi: faFonticonsFi, + faFortAwesome: faFortAwesome, + faFortAwesomeAlt: faFortAwesomeAlt, + faForumbee: faForumbee, + faFoursquare: faFoursquare, + faFreeCodeCamp: faFreeCodeCamp, + faFreebsd: faFreebsd, + faFulcrum: faFulcrum, + faGalacticRepublic: faGalacticRepublic, + faGalacticSenate: faGalacticSenate, + faGetPocket: faGetPocket, + faGg: faGg, + faGgCircle: faGgCircle, + faGit: faGit, + faGitSquare: faGitSquare, + faGithub: faGithub, + faGithubAlt: faGithubAlt, + faGithubSquare: faGithubSquare, + faGitkraken: faGitkraken, + faGitlab: faGitlab, + faGitter: faGitter, + faGlide: faGlide, + faGlideG: faGlideG, + faGofore: faGofore, + faGoodreads: faGoodreads, + faGoodreadsG: faGoodreadsG, + faGoogle: faGoogle, + faGoogleDrive: faGoogleDrive, + faGooglePlay: faGooglePlay, + faGooglePlus: faGooglePlus, + faGooglePlusG: faGooglePlusG, + faGooglePlusSquare: faGooglePlusSquare, + faGoogleWallet: faGoogleWallet, + faGratipay: faGratipay, + faGrav: faGrav, + faGripfire: faGripfire, + faGrunt: faGrunt, + faGulp: faGulp, + faHackerNews: faHackerNews, + faHackerNewsSquare: faHackerNewsSquare, + faHips: faHips, + faHireAHelper: faHireAHelper, + faHooli: faHooli, + faHornbill: faHornbill, + faHotjar: faHotjar, + faHouzz: faHouzz, + faHtml5: faHtml5, + faHubspot: faHubspot, + faImdb: faImdb, + faInstagram: faInstagram, + faInternetExplorer: faInternetExplorer, + faIoxhost: faIoxhost, + faItunes: faItunes, + faItunesNote: faItunesNote, + faJava: faJava, + faJediOrder: faJediOrder, + faJenkins: faJenkins, + faJoget: faJoget, + faJoomla: faJoomla, + faJs: faJs, + faJsSquare: faJsSquare, + faJsfiddle: faJsfiddle, + faKeybase: faKeybase, + faKeycdn: faKeycdn, + faKickstarter: faKickstarter, + faKickstarterK: faKickstarterK, + faKorvue: faKorvue, + faLaravel: faLaravel, + faLastfm: faLastfm, + faLastfmSquare: faLastfmSquare, + faLeanpub: faLeanpub, + faLess: faLess, + faLine: faLine, + faLinkedin: faLinkedin, + faLinkedinIn: faLinkedinIn, + faLinode: faLinode, + faLinux: faLinux, + faLyft: faLyft, + faMagento: faMagento, + faMailchimp: faMailchimp, + faMandalorian: faMandalorian, + faMastodon: faMastodon, + faMaxcdn: faMaxcdn, + faMedapps: faMedapps, + faMedium: faMedium, + faMediumM: faMediumM, + faMedrt: faMedrt, + faMeetup: faMeetup, + faMegaport: faMegaport, + faMicrosoft: faMicrosoft, + faMix: faMix, + faMixcloud: faMixcloud, + faMizuni: faMizuni, + faModx: faModx, + faMonero: faMonero, + faNapster: faNapster, + faNimblr: faNimblr, + faNintendoSwitch: faNintendoSwitch, + faNode: faNode, + faNodeJs: faNodeJs, + faNpm: faNpm, + faNs8: faNs8, + faNutritionix: faNutritionix, + faOdnoklassniki: faOdnoklassniki, + faOdnoklassnikiSquare: faOdnoklassnikiSquare, + faOldRepublic: faOldRepublic, + faOpencart: faOpencart, + faOpenid: faOpenid, + faOpera: faOpera, + faOptinMonster: faOptinMonster, + faOsi: faOsi, + faPage4: faPage4, + faPagelines: faPagelines, + faPalfed: faPalfed, + faPatreon: faPatreon, + faPaypal: faPaypal, + faPeriscope: faPeriscope, + faPhabricator: faPhabricator, + faPhoenixFramework: faPhoenixFramework, + faPhoenixSquadron: faPhoenixSquadron, + faPhp: faPhp, + faPiedPiper: faPiedPiper, + faPiedPiperAlt: faPiedPiperAlt, + faPiedPiperHat: faPiedPiperHat, + faPiedPiperPp: faPiedPiperPp, + faPinterest: faPinterest, + faPinterestP: faPinterestP, + faPinterestSquare: faPinterestSquare, + faPlaystation: faPlaystation, + faProductHunt: faProductHunt, + faPushed: faPushed, + faPython: faPython, + faQq: faQq, + faQuinscape: faQuinscape, + faQuora: faQuora, + faRProject: faRProject, + faRavelry: faRavelry, + faReact: faReact, + faReadme: faReadme, + faRebel: faRebel, + faRedRiver: faRedRiver, + faReddit: faReddit, + faRedditAlien: faRedditAlien, + faRedditSquare: faRedditSquare, + faRendact: faRendact, + faRenren: faRenren, + faReplyd: faReplyd, + faResearchgate: faResearchgate, + faResolving: faResolving, + faRev: faRev, + faRocketchat: faRocketchat, + faRockrms: faRockrms, + faSafari: faSafari, + faSass: faSass, + faSchlix: faSchlix, + faScribd: faScribd, + faSearchengin: faSearchengin, + faSellcast: faSellcast, + faSellsy: faSellsy, + faServicestack: faServicestack, + faShirtsinbulk: faShirtsinbulk, + faShopware: faShopware, + faSimplybuilt: faSimplybuilt, + faSistrix: faSistrix, + faSith: faSith, + faSkyatlas: faSkyatlas, + faSkype: faSkype, + faSlack: faSlack, + faSlackHash: faSlackHash, + faSlideshare: faSlideshare, + faSnapchat: faSnapchat, + faSnapchatGhost: faSnapchatGhost, + faSnapchatSquare: faSnapchatSquare, + faSoundcloud: faSoundcloud, + faSpeakap: faSpeakap, + faSpotify: faSpotify, + faSquarespace: faSquarespace, + faStackExchange: faStackExchange, + faStackOverflow: faStackOverflow, + faStaylinked: faStaylinked, + faSteam: faSteam, + faSteamSquare: faSteamSquare, + faSteamSymbol: faSteamSymbol, + faStickerMule: faStickerMule, + faStrava: faStrava, + faStripe: faStripe, + faStripeS: faStripeS, + faStudiovinari: faStudiovinari, + faStumbleupon: faStumbleupon, + faStumbleuponCircle: faStumbleuponCircle, + faSuperpowers: faSuperpowers, + faSupple: faSupple, + faTeamspeak: faTeamspeak, + faTelegram: faTelegram, + faTelegramPlane: faTelegramPlane, + faTencentWeibo: faTencentWeibo, + faThemeco: faThemeco, + faThemeisle: faThemeisle, + faTradeFederation: faTradeFederation, + faTrello: faTrello, + faTripadvisor: faTripadvisor, + faTumblr: faTumblr, + faTumblrSquare: faTumblrSquare, + faTwitch: faTwitch, + faTwitter: faTwitter, + faTwitterSquare: faTwitterSquare, + faTypo3: faTypo3, + faUber: faUber, + faUikit: faUikit, + faUniregistry: faUniregistry, + faUntappd: faUntappd, + faUsb: faUsb, + faUssunnah: faUssunnah, + faVaadin: faVaadin, + faViacoin: faViacoin, + faViadeo: faViadeo, + faViadeoSquare: faViadeoSquare, + faViber: faViber, + faVimeo: faVimeo, + faVimeoSquare: faVimeoSquare, + faVimeoV: faVimeoV, + faVine: faVine, + faVk: faVk, + faVnv: faVnv, + faVuejs: faVuejs, + faWeebly: faWeebly, + faWeibo: faWeibo, + faWeixin: faWeixin, + faWhatsapp: faWhatsapp, + faWhatsappSquare: faWhatsappSquare, + faWhmcs: faWhmcs, + faWikipediaW: faWikipediaW, + faWindows: faWindows, + faWix: faWix, + faWolfPackBattalion: faWolfPackBattalion, + faWordpress: faWordpress, + faWordpressSimple: faWordpressSimple, + faWpbeginner: faWpbeginner, + faWpexplorer: faWpexplorer, + faWpforms: faWpforms, + faXbox: faXbox, + faXing: faXing, + faXingSquare: faXingSquare, + faYCombinator: faYCombinator, + faYahoo: faYahoo, + faYandex: faYandex, + faYandexInternational: faYandexInternational, + faYelp: faYelp, + faYoast: faYoast, + faYoutube: faYoutube, + faYoutubeSquare: faYoutubeSquare +}; + +exports.fab = _iconsCache; +exports.prefix = prefix; +exports.fa500px = fa500px; +exports.faAccessibleIcon = faAccessibleIcon; +exports.faAccusoft = faAccusoft; +exports.faAdn = faAdn; +exports.faAdversal = faAdversal; +exports.faAffiliatetheme = faAffiliatetheme; +exports.faAlgolia = faAlgolia; +exports.faAmazon = faAmazon; +exports.faAmazonPay = faAmazonPay; +exports.faAmilia = faAmilia; +exports.faAndroid = faAndroid; +exports.faAngellist = faAngellist; +exports.faAngrycreative = faAngrycreative; +exports.faAngular = faAngular; +exports.faAppStore = faAppStore; +exports.faAppStoreIos = faAppStoreIos; +exports.faApper = faApper; +exports.faApple = faApple; +exports.faApplePay = faApplePay; +exports.faAsymmetrik = faAsymmetrik; +exports.faAudible = faAudible; +exports.faAutoprefixer = faAutoprefixer; +exports.faAvianex = faAvianex; +exports.faAviato = faAviato; +exports.faAws = faAws; +exports.faBandcamp = faBandcamp; +exports.faBehance = faBehance; +exports.faBehanceSquare = faBehanceSquare; +exports.faBimobject = faBimobject; +exports.faBitbucket = faBitbucket; +exports.faBitcoin = faBitcoin; +exports.faBity = faBity; +exports.faBlackTie = faBlackTie; +exports.faBlackberry = faBlackberry; +exports.faBlogger = faBlogger; +exports.faBloggerB = faBloggerB; +exports.faBluetooth = faBluetooth; +exports.faBluetoothB = faBluetoothB; +exports.faBtc = faBtc; +exports.faBuromobelexperte = faBuromobelexperte; +exports.faBuysellads = faBuysellads; +exports.faCcAmazonPay = faCcAmazonPay; +exports.faCcAmex = faCcAmex; +exports.faCcApplePay = faCcApplePay; +exports.faCcDinersClub = faCcDinersClub; +exports.faCcDiscover = faCcDiscover; +exports.faCcJcb = faCcJcb; +exports.faCcMastercard = faCcMastercard; +exports.faCcPaypal = faCcPaypal; +exports.faCcStripe = faCcStripe; +exports.faCcVisa = faCcVisa; +exports.faCentercode = faCentercode; +exports.faChrome = faChrome; +exports.faCloudscale = faCloudscale; +exports.faCloudsmith = faCloudsmith; +exports.faCloudversify = faCloudversify; +exports.faCodepen = faCodepen; +exports.faCodiepie = faCodiepie; +exports.faConnectdevelop = faConnectdevelop; +exports.faContao = faContao; +exports.faCpanel = faCpanel; +exports.faCreativeCommons = faCreativeCommons; +exports.faCreativeCommonsBy = faCreativeCommonsBy; +exports.faCreativeCommonsNc = faCreativeCommonsNc; +exports.faCreativeCommonsNcEu = faCreativeCommonsNcEu; +exports.faCreativeCommonsNcJp = faCreativeCommonsNcJp; +exports.faCreativeCommonsNd = faCreativeCommonsNd; +exports.faCreativeCommonsPd = faCreativeCommonsPd; +exports.faCreativeCommonsPdAlt = faCreativeCommonsPdAlt; +exports.faCreativeCommonsRemix = faCreativeCommonsRemix; +exports.faCreativeCommonsSa = faCreativeCommonsSa; +exports.faCreativeCommonsSampling = faCreativeCommonsSampling; +exports.faCreativeCommonsSamplingPlus = faCreativeCommonsSamplingPlus; +exports.faCreativeCommonsShare = faCreativeCommonsShare; +exports.faCss3 = faCss3; +exports.faCss3Alt = faCss3Alt; +exports.faCuttlefish = faCuttlefish; +exports.faDAndD = faDAndD; +exports.faDashcube = faDashcube; +exports.faDelicious = faDelicious; +exports.faDeploydog = faDeploydog; +exports.faDeskpro = faDeskpro; +exports.faDeviantart = faDeviantart; +exports.faDigg = faDigg; +exports.faDigitalOcean = faDigitalOcean; +exports.faDiscord = faDiscord; +exports.faDiscourse = faDiscourse; +exports.faDochub = faDochub; +exports.faDocker = faDocker; +exports.faDraft2digital = faDraft2digital; +exports.faDribbble = faDribbble; +exports.faDribbbleSquare = faDribbbleSquare; +exports.faDropbox = faDropbox; +exports.faDrupal = faDrupal; +exports.faDyalog = faDyalog; +exports.faEarlybirds = faEarlybirds; +exports.faEbay = faEbay; +exports.faEdge = faEdge; +exports.faElementor = faElementor; +exports.faEmber = faEmber; +exports.faEmpire = faEmpire; +exports.faEnvira = faEnvira; +exports.faErlang = faErlang; +exports.faEthereum = faEthereum; +exports.faEtsy = faEtsy; +exports.faExpeditedssl = faExpeditedssl; +exports.faFacebook = faFacebook; +exports.faFacebookF = faFacebookF; +exports.faFacebookMessenger = faFacebookMessenger; +exports.faFacebookSquare = faFacebookSquare; +exports.faFirefox = faFirefox; +exports.faFirstOrder = faFirstOrder; +exports.faFirstOrderAlt = faFirstOrderAlt; +exports.faFirstdraft = faFirstdraft; +exports.faFlickr = faFlickr; +exports.faFlipboard = faFlipboard; +exports.faFly = faFly; +exports.faFontAwesome = faFontAwesome; +exports.faFontAwesomeAlt = faFontAwesomeAlt; +exports.faFontAwesomeFlag = faFontAwesomeFlag; +exports.faFontAwesomeLogoFull = faFontAwesomeLogoFull; +exports.faFonticons = faFonticons; +exports.faFonticonsFi = faFonticonsFi; +exports.faFortAwesome = faFortAwesome; +exports.faFortAwesomeAlt = faFortAwesomeAlt; +exports.faForumbee = faForumbee; +exports.faFoursquare = faFoursquare; +exports.faFreeCodeCamp = faFreeCodeCamp; +exports.faFreebsd = faFreebsd; +exports.faFulcrum = faFulcrum; +exports.faGalacticRepublic = faGalacticRepublic; +exports.faGalacticSenate = faGalacticSenate; +exports.faGetPocket = faGetPocket; +exports.faGg = faGg; +exports.faGgCircle = faGgCircle; +exports.faGit = faGit; +exports.faGitSquare = faGitSquare; +exports.faGithub = faGithub; +exports.faGithubAlt = faGithubAlt; +exports.faGithubSquare = faGithubSquare; +exports.faGitkraken = faGitkraken; +exports.faGitlab = faGitlab; +exports.faGitter = faGitter; +exports.faGlide = faGlide; +exports.faGlideG = faGlideG; +exports.faGofore = faGofore; +exports.faGoodreads = faGoodreads; +exports.faGoodreadsG = faGoodreadsG; +exports.faGoogle = faGoogle; +exports.faGoogleDrive = faGoogleDrive; +exports.faGooglePlay = faGooglePlay; +exports.faGooglePlus = faGooglePlus; +exports.faGooglePlusG = faGooglePlusG; +exports.faGooglePlusSquare = faGooglePlusSquare; +exports.faGoogleWallet = faGoogleWallet; +exports.faGratipay = faGratipay; +exports.faGrav = faGrav; +exports.faGripfire = faGripfire; +exports.faGrunt = faGrunt; +exports.faGulp = faGulp; +exports.faHackerNews = faHackerNews; +exports.faHackerNewsSquare = faHackerNewsSquare; +exports.faHips = faHips; +exports.faHireAHelper = faHireAHelper; +exports.faHooli = faHooli; +exports.faHornbill = faHornbill; +exports.faHotjar = faHotjar; +exports.faHouzz = faHouzz; +exports.faHtml5 = faHtml5; +exports.faHubspot = faHubspot; +exports.faImdb = faImdb; +exports.faInstagram = faInstagram; +exports.faInternetExplorer = faInternetExplorer; +exports.faIoxhost = faIoxhost; +exports.faItunes = faItunes; +exports.faItunesNote = faItunesNote; +exports.faJava = faJava; +exports.faJediOrder = faJediOrder; +exports.faJenkins = faJenkins; +exports.faJoget = faJoget; +exports.faJoomla = faJoomla; +exports.faJs = faJs; +exports.faJsSquare = faJsSquare; +exports.faJsfiddle = faJsfiddle; +exports.faKeybase = faKeybase; +exports.faKeycdn = faKeycdn; +exports.faKickstarter = faKickstarter; +exports.faKickstarterK = faKickstarterK; +exports.faKorvue = faKorvue; +exports.faLaravel = faLaravel; +exports.faLastfm = faLastfm; +exports.faLastfmSquare = faLastfmSquare; +exports.faLeanpub = faLeanpub; +exports.faLess = faLess; +exports.faLine = faLine; +exports.faLinkedin = faLinkedin; +exports.faLinkedinIn = faLinkedinIn; +exports.faLinode = faLinode; +exports.faLinux = faLinux; +exports.faLyft = faLyft; +exports.faMagento = faMagento; +exports.faMailchimp = faMailchimp; +exports.faMandalorian = faMandalorian; +exports.faMastodon = faMastodon; +exports.faMaxcdn = faMaxcdn; +exports.faMedapps = faMedapps; +exports.faMedium = faMedium; +exports.faMediumM = faMediumM; +exports.faMedrt = faMedrt; +exports.faMeetup = faMeetup; +exports.faMegaport = faMegaport; +exports.faMicrosoft = faMicrosoft; +exports.faMix = faMix; +exports.faMixcloud = faMixcloud; +exports.faMizuni = faMizuni; +exports.faModx = faModx; +exports.faMonero = faMonero; +exports.faNapster = faNapster; +exports.faNimblr = faNimblr; +exports.faNintendoSwitch = faNintendoSwitch; +exports.faNode = faNode; +exports.faNodeJs = faNodeJs; +exports.faNpm = faNpm; +exports.faNs8 = faNs8; +exports.faNutritionix = faNutritionix; +exports.faOdnoklassniki = faOdnoklassniki; +exports.faOdnoklassnikiSquare = faOdnoklassnikiSquare; +exports.faOldRepublic = faOldRepublic; +exports.faOpencart = faOpencart; +exports.faOpenid = faOpenid; +exports.faOpera = faOpera; +exports.faOptinMonster = faOptinMonster; +exports.faOsi = faOsi; +exports.faPage4 = faPage4; +exports.faPagelines = faPagelines; +exports.faPalfed = faPalfed; +exports.faPatreon = faPatreon; +exports.faPaypal = faPaypal; +exports.faPeriscope = faPeriscope; +exports.faPhabricator = faPhabricator; +exports.faPhoenixFramework = faPhoenixFramework; +exports.faPhoenixSquadron = faPhoenixSquadron; +exports.faPhp = faPhp; +exports.faPiedPiper = faPiedPiper; +exports.faPiedPiperAlt = faPiedPiperAlt; +exports.faPiedPiperHat = faPiedPiperHat; +exports.faPiedPiperPp = faPiedPiperPp; +exports.faPinterest = faPinterest; +exports.faPinterestP = faPinterestP; +exports.faPinterestSquare = faPinterestSquare; +exports.faPlaystation = faPlaystation; +exports.faProductHunt = faProductHunt; +exports.faPushed = faPushed; +exports.faPython = faPython; +exports.faQq = faQq; +exports.faQuinscape = faQuinscape; +exports.faQuora = faQuora; +exports.faRProject = faRProject; +exports.faRavelry = faRavelry; +exports.faReact = faReact; +exports.faReadme = faReadme; +exports.faRebel = faRebel; +exports.faRedRiver = faRedRiver; +exports.faReddit = faReddit; +exports.faRedditAlien = faRedditAlien; +exports.faRedditSquare = faRedditSquare; +exports.faRendact = faRendact; +exports.faRenren = faRenren; +exports.faReplyd = faReplyd; +exports.faResearchgate = faResearchgate; +exports.faResolving = faResolving; +exports.faRev = faRev; +exports.faRocketchat = faRocketchat; +exports.faRockrms = faRockrms; +exports.faSafari = faSafari; +exports.faSass = faSass; +exports.faSchlix = faSchlix; +exports.faScribd = faScribd; +exports.faSearchengin = faSearchengin; +exports.faSellcast = faSellcast; +exports.faSellsy = faSellsy; +exports.faServicestack = faServicestack; +exports.faShirtsinbulk = faShirtsinbulk; +exports.faShopware = faShopware; +exports.faSimplybuilt = faSimplybuilt; +exports.faSistrix = faSistrix; +exports.faSith = faSith; +exports.faSkyatlas = faSkyatlas; +exports.faSkype = faSkype; +exports.faSlack = faSlack; +exports.faSlackHash = faSlackHash; +exports.faSlideshare = faSlideshare; +exports.faSnapchat = faSnapchat; +exports.faSnapchatGhost = faSnapchatGhost; +exports.faSnapchatSquare = faSnapchatSquare; +exports.faSoundcloud = faSoundcloud; +exports.faSpeakap = faSpeakap; +exports.faSpotify = faSpotify; +exports.faSquarespace = faSquarespace; +exports.faStackExchange = faStackExchange; +exports.faStackOverflow = faStackOverflow; +exports.faStaylinked = faStaylinked; +exports.faSteam = faSteam; +exports.faSteamSquare = faSteamSquare; +exports.faSteamSymbol = faSteamSymbol; +exports.faStickerMule = faStickerMule; +exports.faStrava = faStrava; +exports.faStripe = faStripe; +exports.faStripeS = faStripeS; +exports.faStudiovinari = faStudiovinari; +exports.faStumbleupon = faStumbleupon; +exports.faStumbleuponCircle = faStumbleuponCircle; +exports.faSuperpowers = faSuperpowers; +exports.faSupple = faSupple; +exports.faTeamspeak = faTeamspeak; +exports.faTelegram = faTelegram; +exports.faTelegramPlane = faTelegramPlane; +exports.faTencentWeibo = faTencentWeibo; +exports.faThemeco = faThemeco; +exports.faThemeisle = faThemeisle; +exports.faTradeFederation = faTradeFederation; +exports.faTrello = faTrello; +exports.faTripadvisor = faTripadvisor; +exports.faTumblr = faTumblr; +exports.faTumblrSquare = faTumblrSquare; +exports.faTwitch = faTwitch; +exports.faTwitter = faTwitter; +exports.faTwitterSquare = faTwitterSquare; +exports.faTypo3 = faTypo3; +exports.faUber = faUber; +exports.faUikit = faUikit; +exports.faUniregistry = faUniregistry; +exports.faUntappd = faUntappd; +exports.faUsb = faUsb; +exports.faUssunnah = faUssunnah; +exports.faVaadin = faVaadin; +exports.faViacoin = faViacoin; +exports.faViadeo = faViadeo; +exports.faViadeoSquare = faViadeoSquare; +exports.faViber = faViber; +exports.faVimeo = faVimeo; +exports.faVimeoSquare = faVimeoSquare; +exports.faVimeoV = faVimeoV; +exports.faVine = faVine; +exports.faVk = faVk; +exports.faVnv = faVnv; +exports.faVuejs = faVuejs; +exports.faWeebly = faWeebly; +exports.faWeibo = faWeibo; +exports.faWeixin = faWeixin; +exports.faWhatsapp = faWhatsapp; +exports.faWhatsappSquare = faWhatsappSquare; +exports.faWhmcs = faWhmcs; +exports.faWikipediaW = faWikipediaW; +exports.faWindows = faWindows; +exports.faWix = faWix; +exports.faWolfPackBattalion = faWolfPackBattalion; +exports.faWordpress = faWordpress; +exports.faWordpressSimple = faWordpressSimple; +exports.faWpbeginner = faWpbeginner; +exports.faWpexplorer = faWpexplorer; +exports.faWpforms = faWpforms; +exports.faXbox = faXbox; +exports.faXing = faXing; +exports.faXingSquare = faXingSquare; +exports.faYCombinator = faYCombinator; +exports.faYahoo = faYahoo; +exports.faYandex = faYandex; +exports.faYandexInternational = faYandexInternational; +exports.faYelp = faYelp; +exports.faYoast = faYoast; +exports.faYoutube = faYoutube; +exports.faYoutubeSquare = faYoutubeSquare; + +Object.defineProperty(exports, '__esModule', { value: true }); + +}))); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/package.json b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/package.json new file mode 100644 index 0000000000..b60a5c0c63 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-brands-svg-icons/package.json @@ -0,0 +1,58 @@ +{ + "description": "The iconic font, CSS, and SVG framework", + "keywords": [ + "font", + "awesome", + "fontawesome", + "icon", + "svg", + "bootstrap" + ], + "homepage": "https://fontawesome.com", + "bugs": { + "url": "http://github.com/FortAwesome/Font-Awesome/issues" + }, + "author": { + "name": "Dave Gandy", + "email": "dave@fontawesome.com", + "web": "http://twitter.com/davegandy" + }, + "contributors": [ + { + "name": "Brian Talbot", + "web": "http://twitter.com/talbs" + }, + { + "name": "Travis Chase", + "web": "http://twitter.com/supercodepoet" + }, + { + "name": "Rob Madole", + "web": "http://twitter.com/robmadole" + }, + { + "name": "Geremia Taglialatela", + "web": "http://twitter.com/gtagliala" + }, + { + "name": "Mike Wilkerson", + "web": "http://twitter.com/mw77" + } + ], + "repository": { + "type": "git", + "url": "https://github.com/FortAwesome/Font-Awesome" + }, + "engines": { + "node": ">=6" + }, + "dependencies": { + "@fortawesome/fontawesome-common-types": "^0.2.1" + }, + "version": "5.1.1", + "name": "@fortawesome/free-brands-svg-icons", + "main": "index.js", + "module": "index.es.js", + "jsnext:main": "index.es.js", + "types": "./index.d.ts" +} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/LICENSE.txt b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/LICENSE.txt new file mode 100644 index 0000000000..28c1c4bc73 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/LICENSE.txt @@ -0,0 +1,34 @@ +Font Awesome Free License +------------------------- + +Font Awesome Free is free, open source, and GPL friendly. You can use it for +commercial projects, open source projects, or really almost whatever you want. +Full Font Awesome Free license: https://fontawesome.com/license. + +# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) +In the Font Awesome Free download, the CC BY 4.0 license applies to all icons +packaged as SVG and JS file types. + +# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL) +In the Font Awesome Free download, the SIL OLF license applies to all icons +packaged as web and desktop font files. + +# Code: MIT License (https://opensource.org/licenses/MIT) +In the Font Awesome Free download, the MIT license applies to all non-font and +non-icon files. + +# Attribution +Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font +Awesome Free files already contain embedded comments with sufficient +attribution, so you shouldn't need to do anything additional when using these +files normally. + +We've kept attribution comments terse, so we ask that you do not actively work +to remove them from files, especially code. They're a great way for folks to +learn about Font Awesome. + +# Brand Icons +All brand icons are trademarks of their respective owners. The use of these +trademarks does not indicate endorsement of the trademark holder by Font +Awesome, nor vice versa. **Please do not use brand logos for any purpose except +to represent the company, product, or service to which they refer.** diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/README.md b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/README.md new file mode 100644 index 0000000000..6320e9d052 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/README.md @@ -0,0 +1,27 @@ +# @fortawesome/free-regular-svg-icons - SVG with JavaScript version + +> "I came here to chew bubblegum and install Font Awesome 5 - and I'm all out of bubblegum" + +[![npm](https://img.shields.io/npm/v/@fortawesome/free-regular-svg-icons.svg?style=flat-square)](https://www.npmjs.com/package/@fortawesome/free-regular-svg-icons) + +## Installation + +``` +$ npm i --save @fortawesome/free-regular-svg-icons +``` + +Or + +``` +$ yarn add @fortawesome/free-regular-svg-icons +``` + +## Documentation + +Get started [here](https://fontawesome.com/get-started/svg-with-js). Continue your journey [here](https://fontawesome.com/how-to-use/svg-with-js). + +Or go straight to the [API documentation](https://fontawesome.com/how-to-use/font-awesome-api). + +## Issues and support + +Start with [GitHub issues](https://github.com/FortAwesome/Font-Awesome/issues) and ping us on [Twitter](https://twitter.com/fontawesome) if you need to. diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faAddressBook.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faAddressBook.d.ts new file mode 100644 index 0000000000..8120fc39e1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faAddressBook.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAddressBook: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faAddressBook.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faAddressBook.js new file mode 100644 index 0000000000..9a73453166 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faAddressBook.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'address-book'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f2b9'; +var svgPathData = 'M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-68 304H48V48h320v416zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAddressBook = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faAddressCard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faAddressCard.d.ts new file mode 100644 index 0000000000..59cfe9fcf7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faAddressCard.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAddressCard: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faAddressCard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faAddressCard.js new file mode 100644 index 0000000000..923f189386 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faAddressCard.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'address-card'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f2bb'; +var svgPathData = 'M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H48V80h480v352zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2zM360 320h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAddressCard = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faAngry.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faAngry.d.ts new file mode 100644 index 0000000000..b65041ce29 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faAngry.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAngry: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faAngry.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faAngry.js new file mode 100644 index 0000000000..a8421743ea --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faAngry.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'angry'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f556'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-144c-33.6 0-65.2 14.8-86.8 40.6-8.5 10.2-7.1 25.3 3.1 33.8s25.3 7.2 33.8-3c24.8-29.7 75-29.7 99.8 0 8.1 9.7 23.2 11.9 33.8 3 10.2-8.5 11.5-23.6 3.1-33.8-21.6-25.8-53.2-40.6-86.8-40.6zm-48-72c10.3 0 19.9-6.7 23-17.1 3.8-12.7-3.4-26.1-16.1-29.9l-80-24c-12.8-3.9-26.1 3.4-29.9 16.1-3.8 12.7 3.4 26.1 16.1 29.9l28.2 8.5c-3.1 4.9-5.3 10.4-5.3 16.6 0 17.7 14.3 32 32 32s32-14.4 32-32.1zm199-54.9c-3.8-12.7-17.1-19.9-29.9-16.1l-80 24c-12.7 3.8-19.9 17.2-16.1 29.9 3.1 10.4 12.7 17.1 23 17.1 0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.2-2.2-11.7-5.3-16.6l28.2-8.5c12.7-3.7 19.9-17.1 16.1-29.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAngry = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleDown.d.ts new file mode 100644 index 0000000000..241e144ef0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleDown.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faArrowAltCircleDown: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleDown.js new file mode 100644 index 0000000000..22aa23023a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleDown.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'arrow-alt-circle-down'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f358'; +var svgPathData = 'M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm-32-316v116h-67c-10.7 0-16 12.9-8.5 20.5l99 99c4.7 4.7 12.3 4.7 17 0l99-99c7.6-7.6 2.2-20.5-8.5-20.5h-67V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faArrowAltCircleDown = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleLeft.d.ts new file mode 100644 index 0000000000..2df7d46b94 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleLeft.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faArrowAltCircleLeft: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleLeft.js new file mode 100644 index 0000000000..2f99f8ba7e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleLeft.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'arrow-alt-circle-left'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f359'; +var svgPathData = 'M8 256c0 137 111 248 248 248s248-111 248-248S393 8 256 8 8 119 8 256zm448 0c0 110.5-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56s200 89.5 200 200zm-72-20v40c0 6.6-5.4 12-12 12H256v67c0 10.7-12.9 16-20.5 8.5l-99-99c-4.7-4.7-4.7-12.3 0-17l99-99c7.6-7.6 20.5-2.2 20.5 8.5v67h116c6.6 0 12 5.4 12 12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faArrowAltCircleLeft = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleRight.d.ts new file mode 100644 index 0000000000..540e32dc61 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleRight.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faArrowAltCircleRight: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleRight.js new file mode 100644 index 0000000000..ee2f0f7f4b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleRight.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'arrow-alt-circle-right'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f35a'; +var svgPathData = 'M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faArrowAltCircleRight = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleUp.d.ts new file mode 100644 index 0000000000..c4e25a2f4e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleUp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faArrowAltCircleUp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleUp.js new file mode 100644 index 0000000000..e94dbe7d9a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faArrowAltCircleUp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'arrow-alt-circle-up'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f35b'; +var svgPathData = 'M256 504c137 0 248-111 248-248S393 8 256 8 8 119 8 256s111 248 248 248zm0-448c110.5 0 200 89.5 200 200s-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56zm20 328h-40c-6.6 0-12-5.4-12-12V256h-67c-10.7 0-16-12.9-8.5-20.5l99-99c4.7-4.7 12.3-4.7 17 0l99 99c7.6 7.6 2.2 20.5-8.5 20.5h-67v116c0 6.6-5.4 12-12 12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faArrowAltCircleUp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBell.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBell.d.ts new file mode 100644 index 0000000000..dc4ecc1a3c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBell.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBell: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBell.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBell.js new file mode 100644 index 0000000000..456a1fafdc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBell.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'bell'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0f3'; +var svgPathData = 'M425.403 330.939c-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.843 31.843 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095C118.101 62.783 57.143 131.831 57.143 214.857c0 81.933-17.551 99.292-34.543 116.078C-25.496 378.441 9.726 448 66.919 448H160c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h93.08c57.19 0 92.415-69.583 44.323-117.061zM224 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm157.092-72H66.9c-16.762 0-25.135-20.39-13.334-32.191 28.585-28.585 51.577-55.724 51.577-152.952C105.143 149.319 158.462 96 224 96s118.857 53.319 118.857 118.857c0 97.65 23.221 124.574 51.568 152.952C406.278 379.661 397.783 400 381.092 400z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBell = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBellSlash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBellSlash.d.ts new file mode 100644 index 0000000000..b90379c9ce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBellSlash.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBellSlash: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBellSlash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBellSlash.js new file mode 100644 index 0000000000..31290a1dde --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBellSlash.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'bell-slash'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f1f6'; +var svgPathData = 'M130.9 400c-16.762 0-25.135-20.39-13.334-32.191 25.226-25.226 46.094-49.338 50.649-121.48l-46.777-41.274a168.48 168.48 0 0 0-.296 9.802c0 81.933-17.551 99.292-34.543 116.078C38.504 378.441 73.726 448 130.919 448H224c0 35.346 28.654 64 64 64s64-28.654 64-64h44.777l-54.4-48H130.9zM288 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm283.867.553l-67.931-59.571c13.104-24.118 11.524-56.318-14.532-82.042-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.848 31.848 0 0 0 320 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095c-41.471 6.618-77.891 28.571-103.249 59.841L36.459 3.037c-5.058-4.436-12.777-3.956-17.24 1.071L3.056 22.313C-1.407 27.34-.925 35.012 4.134 39.447l535.408 469.516c5.058 4.436 12.777 3.956 17.24-1.071l16.163-18.205c4.462-5.027 3.98-12.699-1.078-17.134zM288 96c65.538 0 118.857 53.319 118.857 118.857 0 97.65 23.221 124.574 51.568 152.952 2.908 2.908 4.573 6.328 5.209 9.832L194.482 141.612C216.258 113.867 250.075 96 288 96z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBellSlash = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBookmark.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBookmark.d.ts new file mode 100644 index 0000000000..511bcb9371 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBookmark.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBookmark: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBookmark.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBookmark.js new file mode 100644 index 0000000000..ec884d7fc7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBookmark.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'bookmark'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f02e'; +var svgPathData = 'M336 0H48C21.49 0 0 21.49 0 48v464l192-112 192 112V48c0-26.51-21.49-48-48-48zm0 428.43l-144-84-144 84V54a6 6 0 0 1 6-6h276c3.314 0 6 2.683 6 5.996V428.43z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBookmark = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBuilding.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBuilding.d.ts new file mode 100644 index 0000000000..993ad3ed99 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBuilding.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBuilding: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBuilding.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBuilding.js new file mode 100644 index 0000000000..54ab1c0281 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faBuilding.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'building'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f1ad'; +var svgPathData = 'M128 148v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12zm140 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-128 96h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm128 0h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-76 84v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm76 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm180 124v36H0v-36c0-6.6 5.4-12 12-12h19.5V24c0-13.3 10.7-24 24-24h337c13.3 0 24 10.7 24 24v440H436c6.6 0 12 5.4 12 12zM79.5 463H192v-67c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v67h112.5V49L80 48l-.5 415z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBuilding = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendar.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendar.d.ts new file mode 100644 index 0000000000..13bc62dc39 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendar.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCalendar: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendar.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendar.js new file mode 100644 index 0000000000..363e775c96 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendar.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'calendar'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f133'; +var svgPathData = 'M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCalendar = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarAlt.d.ts new file mode 100644 index 0000000000..54f8efad7f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCalendarAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarAlt.js new file mode 100644 index 0000000000..ec878cf148 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'calendar-alt'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f073'; +var svgPathData = 'M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCalendarAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarCheck.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarCheck.d.ts new file mode 100644 index 0000000000..65ff0d90c2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarCheck.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCalendarCheck: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarCheck.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarCheck.js new file mode 100644 index 0000000000..5148e88513 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarCheck.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'calendar-check'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f274'; +var svgPathData = 'M400 64h-48V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H160V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V160h352v298a6 6 0 0 1-6 6zm-52.849-200.65L198.842 404.519c-4.705 4.667-12.303 4.637-16.971-.068l-75.091-75.699c-4.667-4.705-4.637-12.303.068-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l44.104 44.461 111.072-110.181c4.705-4.667 12.303-4.637 16.971.068l22.536 22.718c4.667 4.705 4.636 12.303-.069 16.97z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCalendarCheck = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarMinus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarMinus.d.ts new file mode 100644 index 0000000000..2794e067cf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarMinus.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCalendarMinus: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarMinus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarMinus.js new file mode 100644 index 0000000000..d4156e9a61 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarMinus.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'calendar-minus'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f272'; +var svgPathData = 'M124 328c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H124zm324-216v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCalendarMinus = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarPlus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarPlus.d.ts new file mode 100644 index 0000000000..0afa476ae5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarPlus.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCalendarPlus: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarPlus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarPlus.js new file mode 100644 index 0000000000..94d0786864 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarPlus.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'calendar-plus'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f271'; +var svgPathData = 'M336 292v24c0 6.6-5.4 12-12 12h-76v76c0 6.6-5.4 12-12 12h-24c-6.6 0-12-5.4-12-12v-76h-76c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h76v-76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v76h76c6.6 0 12 5.4 12 12zm112-180v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCalendarPlus = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarTimes.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarTimes.d.ts new file mode 100644 index 0000000000..1c8caddd3b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarTimes.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCalendarTimes: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarTimes.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarTimes.js new file mode 100644 index 0000000000..45a3ae77be --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCalendarTimes.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'calendar-times'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f273'; +var svgPathData = 'M311.7 374.7l-17 17c-4.7 4.7-12.3 4.7-17 0L224 337.9l-53.7 53.7c-4.7 4.7-12.3 4.7-17 0l-17-17c-4.7-4.7-4.7-12.3 0-17l53.7-53.7-53.7-53.7c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0l53.7 53.7 53.7-53.7c4.7-4.7 12.3-4.7 17 0l17 17c4.7 4.7 4.7 12.3 0 17L257.9 304l53.7 53.7c4.8 4.7 4.8 12.3.1 17zM448 112v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCalendarTimes = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareDown.d.ts new file mode 100644 index 0000000000..ccae43f359 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareDown.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCaretSquareDown: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareDown.js new file mode 100644 index 0000000000..4e33bd2dce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareDown.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'caret-square-down'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f150'; +var svgPathData = 'M125.1 208h197.8c10.7 0 16.1 13 8.5 20.5l-98.9 98.3c-4.7 4.7-12.2 4.7-16.9 0l-98.9-98.3c-7.7-7.5-2.3-20.5 8.4-20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCaretSquareDown = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareLeft.d.ts new file mode 100644 index 0000000000..00c3e7ca6b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareLeft.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCaretSquareLeft: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareLeft.js new file mode 100644 index 0000000000..d85a8ed2e8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareLeft.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'caret-square-left'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f191'; +var svgPathData = 'M272 157.1v197.8c0 10.7-13 16.1-20.5 8.5l-98.3-98.9c-4.7-4.7-4.7-12.2 0-16.9l98.3-98.9c7.5-7.7 20.5-2.3 20.5 8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCaretSquareLeft = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareRight.d.ts new file mode 100644 index 0000000000..3c072c7a59 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareRight.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCaretSquareRight: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareRight.js new file mode 100644 index 0000000000..b55f4c1ac2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareRight.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'caret-square-right'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f152'; +var svgPathData = 'M176 354.9V157.1c0-10.7 13-16.1 20.5-8.5l98.3 98.9c4.7 4.7 4.7 12.2 0 16.9l-98.3 98.9c-7.5 7.7-20.5 2.3-20.5-8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCaretSquareRight = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareUp.d.ts new file mode 100644 index 0000000000..4f065dbcfb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareUp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCaretSquareUp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareUp.js new file mode 100644 index 0000000000..2b3fe4e326 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCaretSquareUp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'caret-square-up'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f151'; +var svgPathData = 'M322.9 304H125.1c-10.7 0-16.1-13-8.5-20.5l98.9-98.3c4.7-4.7 12.2-4.7 16.9 0l98.9 98.3c7.7 7.5 2.3 20.5-8.4 20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCaretSquareUp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faChartBar.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faChartBar.d.ts new file mode 100644 index 0000000000..a7dd341581 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faChartBar.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChartBar: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faChartBar.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faChartBar.js new file mode 100644 index 0000000000..7174463d95 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faChartBar.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'chart-bar'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f080'; +var svgPathData = 'M500 400c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v324h452zm-356-60v-72c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V140c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V204c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V108c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChartBar = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCheckCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCheckCircle.d.ts new file mode 100644 index 0000000000..281ab22c39 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCheckCircle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCheckCircle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCheckCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCheckCircle.js new file mode 100644 index 0000000000..db72922cdc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCheckCircle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'check-circle'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f058'; +var svgPathData = 'M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCheckCircle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCheckSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCheckSquare.d.ts new file mode 100644 index 0000000000..60acd028a3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCheckSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCheckSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCheckSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCheckSquare.js new file mode 100644 index 0000000000..9a27d75423 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCheckSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'check-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f14a'; +var svgPathData = 'M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm0 400H48V80h352v352zm-35.864-241.724L191.547 361.48c-4.705 4.667-12.303 4.637-16.97-.068l-90.781-91.516c-4.667-4.705-4.637-12.303.069-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l59.792 60.277 141.352-140.216c4.705-4.667 12.303-4.637 16.97.068l22.536 22.718c4.667 4.706 4.637 12.304-.068 16.971z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCheckSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCircle.d.ts new file mode 100644 index 0000000000..d93f3e6270 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCircle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCircle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCircle.js new file mode 100644 index 0000000000..57c1ae6ef9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCircle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'circle'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f111'; +var svgPathData = 'M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCircle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClipboard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClipboard.d.ts new file mode 100644 index 0000000000..8b3c413ccb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClipboard.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faClipboard: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClipboard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClipboard.js new file mode 100644 index 0000000000..40653d7655 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClipboard.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'clipboard'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f328'; +var svgPathData = 'M336 64h-80c0-35.29-28.71-64-64-64s-64 28.71-64 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h42v36c0 6.627 5.373 12 12 12h168c6.627 0 12-5.373 12-12v-36h42a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zM192 40c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faClipboard = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClock.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClock.d.ts new file mode 100644 index 0000000000..9ee4727914 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClock.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faClock: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClock.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClock.js new file mode 100644 index 0000000000..0ee2c5e273 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClock.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'clock'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f017'; +var svgPathData = 'M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faClock = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClone.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClone.d.ts new file mode 100644 index 0000000000..3fb6402f84 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClone.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faClone: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClone.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClone.js new file mode 100644 index 0000000000..9f5b719812 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClone.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'clone'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f24d'; +var svgPathData = 'M464 0H144c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h320c26.51 0 48-21.49 48-48v-48h48c26.51 0 48-21.49 48-48V48c0-26.51-21.49-48-48-48zM362 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h42v224c0 26.51 21.49 48 48 48h224v42a6 6 0 0 1-6 6zm96-96H150a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h308a6 6 0 0 1 6 6v308a6 6 0 0 1-6 6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faClone = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClosedCaptioning.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClosedCaptioning.d.ts new file mode 100644 index 0000000000..5e84446105 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClosedCaptioning.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faClosedCaptioning: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClosedCaptioning.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClosedCaptioning.js new file mode 100644 index 0000000000..82dbbd1030 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faClosedCaptioning.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'closed-captioning'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f20a'; +var svgPathData = 'M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 336H54c-3.3 0-6-2.7-6-6V118c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v276c0 3.3-2.7 6-6 6zm-211.1-85.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7zm190.4 0c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.9-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 220.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faClosedCaptioning = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faComment.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faComment.d.ts new file mode 100644 index 0000000000..ecde1186f8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faComment.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faComment: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faComment.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faComment.js new file mode 100644 index 0000000000..0fc76507d7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faComment.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'comment'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f075'; +var svgPathData = 'M256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faComment = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCommentAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCommentAlt.d.ts new file mode 100644 index 0000000000..ba672907a5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCommentAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCommentAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCommentAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCommentAlt.js new file mode 100644 index 0000000000..ee956ea32c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCommentAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'comment-alt'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f27a'; +var svgPathData = 'M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 7.1 5.8 12 12 12 2.4 0 4.9-.7 7.1-2.4L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm16 352c0 8.8-7.2 16-16 16H288l-12.8 9.6L208 428v-60H64c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h384c8.8 0 16 7.2 16 16v288z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCommentAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCommentDots.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCommentDots.d.ts new file mode 100644 index 0000000000..4902c62e15 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCommentDots.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCommentDots: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCommentDots.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCommentDots.js new file mode 100644 index 0000000000..95c37ce74e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCommentDots.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'comment-dots'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f4ad'; +var svgPathData = 'M144 208c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCommentDots = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faComments.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faComments.d.ts new file mode 100644 index 0000000000..b988090f5f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faComments.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faComments: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faComments.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faComments.js new file mode 100644 index 0000000000..a8a73f8624 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faComments.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'comments'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f086'; +var svgPathData = 'M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faComments = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCompass.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCompass.d.ts new file mode 100644 index 0000000000..0918f07212 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCompass.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCompass: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCompass.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCompass.js new file mode 100644 index 0000000000..6530053fcd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCompass.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'compass'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f14e'; +var svgPathData = 'M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm91.326-312.131l-33.359 137.779a24.005 24.005 0 0 1-6.772 11.729l-102.64 97.779c-17.104 16.293-45.56.434-39.88-23.024l33.359-137.779a23.997 23.997 0 0 1 6.772-11.729l102.642-97.779c17.285-16.47 45.494-.175 39.878 23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCompass = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCopy.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCopy.d.ts new file mode 100644 index 0000000000..93254ebba2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCopy.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCopy: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCopy.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCopy.js new file mode 100644 index 0000000000..1242cbbac3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCopy.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'copy'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0c5'; +var svgPathData = 'M433.941 65.941l-51.882-51.882A48 48 0 0 0 348.118 0H176c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48v-48h80c26.51 0 48-21.49 48-48V99.882a48 48 0 0 0-14.059-33.941zM266 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h74v224c0 26.51 21.49 48 48 48h96v42a6 6 0 0 1-6 6zm128-96H182a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h106v88c0 13.255 10.745 24 24 24h88v202a6 6 0 0 1-6 6zm6-256h-64V48h9.632c1.591 0 3.117.632 4.243 1.757l48.368 48.368a6 6 0 0 1 1.757 4.243V112z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCopy = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCopyright.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCopyright.d.ts new file mode 100644 index 0000000000..f39396444a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCopyright.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCopyright: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCopyright.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCopyright.js new file mode 100644 index 0000000000..5eabdcc607 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCopyright.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'copyright'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1f9'; +var svgPathData = 'M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm107.351-101.064c-9.614 9.712-45.53 41.396-104.065 41.396-82.43 0-140.484-61.425-140.484-141.567 0-79.152 60.275-139.401 139.762-139.401 55.531 0 88.738 26.62 97.593 34.779a11.965 11.965 0 0 1 1.936 15.322l-18.155 28.113c-3.841 5.95-11.966 7.282-17.499 2.921-8.595-6.776-31.814-22.538-61.708-22.538-48.303 0-77.916 35.33-77.916 80.082 0 41.589 26.888 83.692 78.277 83.692 32.657 0 56.843-19.039 65.726-27.225 5.27-4.857 13.596-4.039 17.82 1.738l19.865 27.17a11.947 11.947 0 0 1-1.152 15.518z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCopyright = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCreditCard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCreditCard.d.ts new file mode 100644 index 0000000000..19d1f93f89 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCreditCard.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCreditCard: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCreditCard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCreditCard.js new file mode 100644 index 0000000000..4bdb777b8b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faCreditCard.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'credit-card'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f09d'; +var svgPathData = 'M527.9 32H48.1C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48.1 48h479.8c26.6 0 48.1-21.5 48.1-48V80c0-26.5-21.5-48-48.1-48zM54.1 80h467.8c3.3 0 6 2.7 6 6v42H48.1V86c0-3.3 2.7-6 6-6zm467.8 352H54.1c-3.3 0-6-2.7-6-6V256h479.8v170c0 3.3-2.7 6-6 6zM192 332v40c0 6.6-5.4 12-12 12h-72c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12zm192 0v40c0 6.6-5.4 12-12 12H236c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCreditCard = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faDizzy.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faDizzy.d.ts new file mode 100644 index 0000000000..c78b0d3190 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faDizzy.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDizzy: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faDizzy.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faDizzy.js new file mode 100644 index 0000000000..f481bc148b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faDizzy.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'dizzy'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f567'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-33.8-217.9c7.8-7.8 7.8-20.5 0-28.3L196.3 192l17.9-17.9c7.8-7.8 7.8-20.5 0-28.3-7.8-7.8-20.5-7.8-28.3 0L168 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.9 7.7 20.5 7.7 28.4-.2zm160-92.2c-7.8-7.8-20.5-7.8-28.3 0L328 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.8 7.8 20.5 7.8 28.3 0 7.8-7.8 7.8-20.5 0-28.3l-17.8-18 17.9-17.9c7.7-7.8 7.7-20.4 0-28.2zM248 272c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDizzy = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faDotCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faDotCircle.d.ts new file mode 100644 index 0000000000..f4d84dd452 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faDotCircle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDotCircle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faDotCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faDotCircle.js new file mode 100644 index 0000000000..d0a1fc0663 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faDotCircle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'dot-circle'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f192'; +var svgPathData = 'M256 56c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m0-48C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 168c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDotCircle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEdit.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEdit.d.ts new file mode 100644 index 0000000000..86716af27f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEdit.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEdit: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEdit.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEdit.js new file mode 100644 index 0000000000..e46e392fde --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEdit.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'edit'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f044'; +var svgPathData = 'M402.3 344.9l32-32c5-5 13.7-1.5 13.7 5.7V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h273.5c7.1 0 10.7 8.6 5.7 13.7l-32 32c-1.5 1.5-3.5 2.3-5.7 2.3H48v352h352V350.5c0-2.1.8-4.1 2.3-5.6zm156.6-201.8L296.3 405.7l-90.4 10c-26.2 2.9-48.5-19.2-45.6-45.6l10-90.4L432.9 17.1c22.9-22.9 59.9-22.9 82.7 0l43.2 43.2c22.9 22.9 22.9 60 .1 82.8zM460.1 174L402 115.9 216.2 301.8l-7.3 65.3 65.3-7.3L460.1 174zm64.8-79.7l-43.2-43.2c-4.1-4.1-10.8-4.1-14.8 0L436 82l58.1 58.1 30.9-30.9c4-4.2 4-10.8-.1-14.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEdit = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEnvelope.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEnvelope.d.ts new file mode 100644 index 0000000000..77b30531f0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEnvelope.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEnvelope: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEnvelope.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEnvelope.js new file mode 100644 index 0000000000..2bde0a654d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEnvelope.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'envelope'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0e0'; +var svgPathData = 'M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEnvelope = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEnvelopeOpen.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEnvelopeOpen.d.ts new file mode 100644 index 0000000000..cde3384d19 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEnvelopeOpen.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEnvelopeOpen: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEnvelopeOpen.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEnvelopeOpen.js new file mode 100644 index 0000000000..99f7729426 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEnvelopeOpen.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'envelope-open'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2b6'; +var svgPathData = 'M494.586 164.516c-4.697-3.883-111.723-89.95-135.251-108.657C337.231 38.191 299.437 0 256 0c-43.205 0-80.636 37.717-103.335 55.859-24.463 19.45-131.07 105.195-135.15 108.549A48.004 48.004 0 0 0 0 201.485V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V201.509a48 48 0 0 0-17.414-36.993zM464 458a6 6 0 0 1-6 6H54a6 6 0 0 1-6-6V204.347c0-1.813.816-3.526 2.226-4.665 15.87-12.814 108.793-87.554 132.364-106.293C200.755 78.88 232.398 48 256 48c23.693 0 55.857 31.369 73.41 45.389 23.573 18.741 116.503 93.493 132.366 106.316a5.99 5.99 0 0 1 2.224 4.663V458zm-31.991-187.704c4.249 5.159 3.465 12.795-1.745 16.981-28.975 23.283-59.274 47.597-70.929 56.863C336.636 362.283 299.205 400 256 400c-43.452 0-81.287-38.237-103.335-55.86-11.279-8.967-41.744-33.413-70.927-56.865-5.21-4.187-5.993-11.822-1.745-16.981l15.258-18.528c4.178-5.073 11.657-5.843 16.779-1.726 28.618 23.001 58.566 47.035 70.56 56.571C200.143 320.631 232.307 352 256 352c23.602 0 55.246-30.88 73.41-45.389 11.994-9.535 41.944-33.57 70.563-56.568 5.122-4.116 12.601-3.346 16.778 1.727l15.258 18.526z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEnvelopeOpen = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEye.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEye.d.ts new file mode 100644 index 0000000000..cae629c5cd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEye.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEye: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEye.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEye.js new file mode 100644 index 0000000000..c3eb593379 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEye.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'eye'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f06e'; +var svgPathData = 'M569.354 231.631C512.97 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-102.556 0-192.091-54.701-240-136 44.157-74.933 123.677-127.27 216.162-135.007C273.958 131.078 280 144.83 280 160c0 30.928-25.072 56-56 56s-56-25.072-56-56l.001-.042C157.794 179.043 152 200.844 152 224c0 75.111 60.889 136 136 136s136-60.889 136-136c0-31.031-10.4-59.629-27.895-82.515C451.704 164.638 498.009 205.106 528 256c-47.908 81.299-137.444 136-240 136z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEye = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEyeSlash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEyeSlash.d.ts new file mode 100644 index 0000000000..15f9571ccb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEyeSlash.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEyeSlash: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEyeSlash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEyeSlash.js new file mode 100644 index 0000000000..5c430dd62d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faEyeSlash.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'eye-slash'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f070'; +var svgPathData = 'M272.702 359.139c-80.483-9.011-136.212-86.886-116.93-167.042l116.93 167.042zM288 392c-102.556 0-192.092-54.701-240-136 21.755-36.917 52.1-68.342 88.344-91.658l-27.541-39.343C67.001 152.234 31.921 188.741 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.004 376.006 168.14 440 288 440a332.89 332.89 0 0 0 39.648-2.367l-32.021-45.744A284.16 284.16 0 0 1 288 392zm281.354-111.631c-33.232 56.394-83.421 101.742-143.554 129.492l48.116 68.74c3.801 5.429 2.48 12.912-2.949 16.712L450.23 509.83c-5.429 3.801-12.912 2.48-16.712-2.949L102.084 33.399c-3.801-5.429-2.48-12.912 2.949-16.712L125.77 2.17c5.429-3.801 12.912-2.48 16.712 2.949l55.526 79.325C226.612 76.343 256.808 72 288 72c119.86 0 224.996 63.994 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM528 256c-44.157-74.933-123.677-127.27-216.162-135.007C302.042 131.078 296 144.83 296 160c0 30.928 25.072 56 56 56s56-25.072 56-56l-.001-.042c30.632 57.277 16.739 130.26-36.928 171.719l26.695 38.135C452.626 346.551 498.308 306.386 528 256z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEyeSlash = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFile.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFile.d.ts new file mode 100644 index 0000000000..ca6e8eb1ba --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFile.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFile: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFile.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFile.js new file mode 100644 index 0000000000..618e1c15c1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFile.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'file'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f15b'; +var svgPathData = 'M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFile = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileAlt.d.ts new file mode 100644 index 0000000000..ea2981818d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileAlt.js new file mode 100644 index 0000000000..3da9f37635 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'file-alt'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f15c'; +var svgPathData = 'M288 248v28c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-28c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm-12 72H108c-6.6 0-12 5.4-12 12v28c0 6.6 5.4 12 12 12h168c6.6 0 12-5.4 12-12v-28c0-6.6-5.4-12-12-12zm108-188.1V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48C0 21.5 21.5 0 48 0h204.1C264.8 0 277 5.1 286 14.1L369.9 98c9 8.9 14.1 21.2 14.1 33.9zm-128-80V128h76.1L256 51.9zM336 464V176H232c-13.3 0-24-10.7-24-24V48H48v416h288z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileArchive.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileArchive.d.ts new file mode 100644 index 0000000000..9041b09fea --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileArchive.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileArchive: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileArchive.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileArchive.js new file mode 100644 index 0000000000..ba17592a98 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileArchive.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'file-archive'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f1c6'; +var svgPathData = 'M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM256 51.882L332.118 128H256V51.882zM336 464H48V48h79.714v16h32V48H208v104c0 13.255 10.745 24 24 24h104v288zM192.27 96h-32V64h32v32zm-32 0v32h-32V96h32zm0 64v32h-32v-32h32zm32 0h-32v-32h32v32zm1.909 105.678A12 12 0 0 0 182.406 256H160.27v-32h-32v32l-19.69 97.106C101.989 385.611 126.834 416 160 416c33.052 0 57.871-30.192 51.476-62.62l-17.297-87.702zM160.27 390.073c-17.918 0-32.444-12.105-32.444-27.036 0-14.932 14.525-27.036 32.444-27.036s32.444 12.105 32.444 27.036c0 14.931-14.526 27.036-32.444 27.036zm32-166.073h-32v-32h32v32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileArchive = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileAudio.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileAudio.d.ts new file mode 100644 index 0000000000..266c82b0c6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileAudio.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileAudio: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileAudio.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileAudio.js new file mode 100644 index 0000000000..1b3ca4831f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileAudio.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'file-audio'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f1c7'; +var svgPathData = 'M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm144-76.024c0 10.691-12.926 16.045-20.485 8.485L136 360.486h-28c-6.627 0-12-5.373-12-12v-56c0-6.627 5.373-12 12-12h28l35.515-36.947c7.56-7.56 20.485-2.206 20.485 8.485v135.952zm41.201-47.13c9.051-9.297 9.06-24.133.001-33.439-22.149-22.752 12.235-56.246 34.395-33.481 27.198 27.94 27.212 72.444.001 100.401-21.793 22.386-56.947-10.315-34.397-33.481z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileAudio = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileCode.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileCode.d.ts new file mode 100644 index 0000000000..c618e5c6e9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileCode.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileCode: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileCode.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileCode.js new file mode 100644 index 0000000000..85ed4e7917 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileCode.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'file-code'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f1c9'; +var svgPathData = 'M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm101.677-115.115L116.854 320l32.822-28.885a8.793 8.793 0 0 0 .605-12.624l-17.403-18.564c-3.384-3.613-8.964-3.662-12.438-.401L62.78 313.58c-3.703 3.474-3.704 9.367.001 12.84l57.659 54.055a8.738 8.738 0 0 0 6.012 2.381 8.746 8.746 0 0 0 6.427-2.782l17.403-18.563a8.795 8.795 0 0 0-.605-12.626zm84.284-127.85l-24.401-7.084a8.796 8.796 0 0 0-10.905 5.998L144.04 408.061c-1.353 4.66 1.338 9.552 5.998 10.905l24.403 7.084c4.68 1.355 9.557-1.354 10.905-5.998l54.612-188.112c1.354-4.66-1.337-9.552-5.997-10.905zm87.258 92.545l-57.658-54.055c-3.526-3.307-9.099-3.165-12.439.401l-17.403 18.563a8.795 8.795 0 0 0 .605 12.625L267.146 320l-32.822 28.885a8.793 8.793 0 0 0-.605 12.624l17.403 18.564a8.797 8.797 0 0 0 12.439.401h-.001l57.66-54.055c3.703-3.473 3.703-9.366-.001-12.839z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileCode = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileExcel.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileExcel.d.ts new file mode 100644 index 0000000000..14fc5298ba --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileExcel.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileExcel: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileExcel.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileExcel.js new file mode 100644 index 0000000000..229fce18eb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileExcel.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'file-excel'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f1c3'; +var svgPathData = 'M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm212-240h-28.8c-4.4 0-8.4 2.4-10.5 6.3-18 33.1-22.2 42.4-28.6 57.7-13.9-29.1-6.9-17.3-28.6-57.7-2.1-3.9-6.2-6.3-10.6-6.3H124c-9.3 0-15 10-10.4 18l46.3 78-46.3 78c-4.7 8 1.1 18 10.4 18h28.9c4.4 0 8.4-2.4 10.5-6.3 21.7-40 23-45 28.6-57.7 14.9 30.2 5.9 15.9 28.6 57.7 2.1 3.9 6.2 6.3 10.6 6.3H260c9.3 0 15-10 10.4-18L224 320c.7-1.1 30.3-50.5 46.3-78 4.7-8-1.1-18-10.3-18z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileExcel = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileImage.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileImage.d.ts new file mode 100644 index 0000000000..c298749e13 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileImage.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileImage: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileImage.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileImage.js new file mode 100644 index 0000000000..599549160c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileImage.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'file-image'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f1c5'; +var svgPathData = 'M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm32-48h224V288l-23.5-23.5c-4.7-4.7-12.3-4.7-17 0L176 352l-39.5-39.5c-4.7-4.7-12.3-4.7-17 0L80 352v64zm48-240c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileImage = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFilePdf.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFilePdf.d.ts new file mode 100644 index 0000000000..90f8088d36 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFilePdf.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFilePdf: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFilePdf.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFilePdf.js new file mode 100644 index 0000000000..6b492b4a97 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFilePdf.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'file-pdf'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f1c1'; +var svgPathData = 'M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm250.2-143.7c-12.2-12-47-8.7-64.4-6.5-17.2-10.5-28.7-25-36.8-46.3 3.9-16.1 10.1-40.6 5.4-56-4.2-26.2-37.8-23.6-42.6-5.9-4.4 16.1-.4 38.5 7 67.1-10 23.9-24.9 56-35.4 74.4-20 10.3-47 26.2-51 46.2-3.3 15.8 26 55.2 76.1-31.2 22.4-7.4 46.8-16.5 68.4-20.1 18.9 10.2 41 17 55.8 17 25.5 0 28-28.2 17.5-38.7zm-198.1 77.8c5.1-13.7 24.5-29.5 30.4-35-19 30.3-30.4 35.7-30.4 35zm81.6-190.6c7.4 0 6.7 32.1 1.8 40.8-4.4-13.9-4.3-40.8-1.8-40.8zm-24.4 136.6c9.7-16.9 18-37 24.7-54.7 8.3 15.1 18.9 27.2 30.1 35.5-20.8 4.3-38.9 13.1-54.8 19.2zm131.6-5s-5 6-37.3-7.8c35.1-2.6 40.9 5.4 37.3 7.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFilePdf = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFilePowerpoint.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFilePowerpoint.d.ts new file mode 100644 index 0000000000..fbeed93ee2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFilePowerpoint.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFilePowerpoint: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFilePowerpoint.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFilePowerpoint.js new file mode 100644 index 0000000000..5d636ee8a2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFilePowerpoint.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'file-powerpoint'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f1c4'; +var svgPathData = 'M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm72-60V236c0-6.6 5.4-12 12-12h69.2c36.7 0 62.8 27 62.8 66.3 0 74.3-68.7 66.5-95.5 66.5V404c0 6.6-5.4 12-12 12H132c-6.6 0-12-5.4-12-12zm48.5-87.4h23c7.9 0 13.9-2.4 18.1-7.2 8.5-9.8 8.4-28.5.1-37.8-4.1-4.6-9.9-7-17.4-7h-23.9v52z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFilePowerpoint = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileVideo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileVideo.d.ts new file mode 100644 index 0000000000..d11e6723f0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileVideo.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileVideo: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileVideo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileVideo.js new file mode 100644 index 0000000000..020cf9fc11 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileVideo.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'file-video'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f1c8'; +var svgPathData = 'M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm228.687-211.303L224 305.374V268c0-11.046-8.954-20-20-20H100c-11.046 0-20 8.954-20 20v104c0 11.046 8.954 20 20 20h104c11.046 0 20-8.954 20-20v-37.374l52.687 52.674C286.704 397.318 304 390.28 304 375.986V264.011c0-14.311-17.309-21.319-27.313-11.314z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileVideo = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileWord.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileWord.d.ts new file mode 100644 index 0000000000..826a48d9d8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileWord.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileWord: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileWord.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileWord.js new file mode 100644 index 0000000000..2c1f32adee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFileWord.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'file-word'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f1c2'; +var svgPathData = 'M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm220.1-208c-5.7 0-10.6 4-11.7 9.5-20.6 97.7-20.4 95.4-21 103.5-.2-1.2-.4-2.6-.7-4.3-.8-5.1.3.2-23.6-99.5-1.3-5.4-6.1-9.2-11.7-9.2h-13.3c-5.5 0-10.3 3.8-11.7 9.1-24.4 99-24 96.2-24.8 103.7-.1-1.1-.2-2.5-.5-4.2-.7-5.2-14.1-73.3-19.1-99-1.1-5.6-6-9.7-11.8-9.7h-16.8c-7.8 0-13.5 7.3-11.7 14.8 8 32.6 26.7 109.5 33.2 136 1.3 5.4 6.1 9.1 11.7 9.1h25.2c5.5 0 10.3-3.7 11.6-9.1l17.9-71.4c1.5-6.2 2.5-12 3-17.3l2.9 17.3c.1.4 12.6 50.5 17.9 71.4 1.3 5.3 6.1 9.1 11.6 9.1h24.7c5.5 0 10.3-3.7 11.6-9.1 20.8-81.9 30.2-119 34.5-136 1.9-7.6-3.8-14.9-11.6-14.9h-15.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileWord = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFlag.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFlag.d.ts new file mode 100644 index 0000000000..96a6bbe615 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFlag.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFlag: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFlag.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFlag.js new file mode 100644 index 0000000000..ae417173c9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFlag.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'flag'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f024'; +var svgPathData = 'M336.174 80c-49.132 0-93.305-32-161.913-32-31.301 0-58.303 6.482-80.721 15.168a48.04 48.04 0 0 0 2.142-20.727C93.067 19.575 74.167 1.594 51.201.104 23.242-1.71 0 20.431 0 48c0 17.764 9.657 33.262 24 41.562V496c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-83.443C109.869 395.28 143.259 384 199.826 384c49.132 0 93.305 32 161.913 32 58.479 0 101.972-22.617 128.548-39.981C503.846 367.161 512 352.051 512 335.855V95.937c0-34.459-35.264-57.768-66.904-44.117C409.193 67.309 371.641 80 336.174 80zM464 336c-21.783 15.412-60.824 32-102.261 32-59.945 0-102.002-32-161.913-32-43.361 0-96.379 9.403-127.826 24V128c21.784-15.412 60.824-32 102.261-32 59.945 0 102.002 32 161.913 32 43.271 0 96.32-17.366 127.826-32v240z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFlag = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFlushed.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFlushed.d.ts new file mode 100644 index 0000000000..3394430f89 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFlushed.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFlushed: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFlushed.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFlushed.js new file mode 100644 index 0000000000..9e68ecbbca --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFlushed.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'flushed'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f579'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm96-312c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-112 24c0-44.2-35.8-80-80-80s-80 35.8-80 80 35.8 80 80 80 80-35.8 80-80zm-80 48c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm160 144H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFlushed = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFolder.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFolder.d.ts new file mode 100644 index 0000000000..dbd5a42f4d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFolder.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFolder: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFolder.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFolder.js new file mode 100644 index 0000000000..809ab38f00 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFolder.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'folder'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f07b'; +var svgPathData = 'M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48zm-6 272H54c-3.314 0-6-2.678-6-5.992V117.992A5.993 5.993 0 0 1 54 112h134.118l64 64H458a6 6 0 0 1 6 6v212a6 6 0 0 1-6 6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFolder = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFolderOpen.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFolderOpen.d.ts new file mode 100644 index 0000000000..7a6f02b753 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFolderOpen.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFolderOpen: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFolderOpen.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFolderOpen.js new file mode 100644 index 0000000000..490bd4c407 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFolderOpen.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'folder-open'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f07c'; +var svgPathData = 'M527.943 224H480v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h400a48.001 48.001 0 0 0 40.704-22.56l79.942-128c19.948-31.917-3.038-73.44-40.703-73.44zM54 112h134.118l64 64H426a6 6 0 0 1 6 6v42H152a48 48 0 0 0-41.098 23.202L48 351.449V117.993A5.993 5.993 0 0 1 54 112zm394 288H72l77.234-128H528l-80 128z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFolderOpen = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFontAwesomeLogoFull.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFontAwesomeLogoFull.d.ts new file mode 100644 index 0000000000..fd1e83f87d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFontAwesomeLogoFull.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFontAwesomeLogoFull: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFontAwesomeLogoFull.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFontAwesomeLogoFull.js new file mode 100644 index 0000000000..9f34f13c68 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFontAwesomeLogoFull.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'font-awesome-logo-full'; +var width = 3992; +var height = 512; +var ligatures = ['Font Awesome']; +var unicode = 'f4e6'; +var svgPathData = 'M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFontAwesomeLogoFull = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFrown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFrown.d.ts new file mode 100644 index 0000000000..2c64be0174 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFrown.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFrown: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFrown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFrown.js new file mode 100644 index 0000000000..a86f09bdac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFrown.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'frown'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f119'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 128c-40.2 0-78 17.7-103.8 48.6-8.5 10.2-7.1 25.3 3.1 33.8 10.2 8.4 25.3 7.1 33.8-3.1 16.6-19.9 41-31.4 66.9-31.4s50.3 11.4 66.9 31.4c8.1 9.7 23.1 11.9 33.8 3.1 10.2-8.5 11.5-23.6 3.1-33.8C326 321.7 288.2 304 248 304z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFrown = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFrownOpen.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFrownOpen.d.ts new file mode 100644 index 0000000000..e2fea38fcb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFrownOpen.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFrownOpen: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFrownOpen.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFrownOpen.js new file mode 100644 index 0000000000..2a2639884d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFrownOpen.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'frown-open'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f57a'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-48-248c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 112c-35.6 0-88.8 21.3-95.8 61.2-2 11.8 9 21.5 20.5 18.1 31.2-9.6 59.4-15.3 75.3-15.3s44.1 5.7 75.3 15.3c11.4 3.5 22.5-6.3 20.5-18.1-7-39.9-60.2-61.2-95.8-61.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFrownOpen = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFutbol.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFutbol.d.ts new file mode 100644 index 0000000000..116d931c46 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFutbol.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFutbol: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFutbol.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFutbol.js new file mode 100644 index 0000000000..6ba7ee57f9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faFutbol.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'futbol'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f1e3'; +var svgPathData = 'M483.8 179.4C449.8 74.6 352.6 8 248.1 8c-25.4 0-51.2 3.9-76.7 12.2C41.2 62.5-30.1 202.4 12.2 332.6 46.2 437.4 143.4 504 247.9 504c25.4 0 51.2-3.9 76.7-12.2 130.2-42.3 201.5-182.2 159.2-312.4zm-74.5 193.7l-52.2 6.4-43.7-60.9 24.4-75.2 71.1-22.1 38.9 36.4c-.2 30.7-7.4 61.1-21.7 89.2-4.7 9.3-10.7 17.8-16.8 26.2zm0-235.4l-10.4 53.1-70.7 22-64.2-46.5V92.5l47.4-26.2c39.2 13 73.4 38 97.9 71.4zM184.9 66.4L232 92.5v73.8l-64.2 46.5-70.6-22-10.1-52.5c24.3-33.4 57.9-58.6 97.8-71.9zM139 379.5L85.9 373c-14.4-20.1-37.3-59.6-37.8-115.3l39-36.4 71.1 22.2 24.3 74.3-43.5 61.7zm48.2 67l-22.4-48.1 43.6-61.7H287l44.3 61.7-22.4 48.1c-6.2 1.8-57.6 20.4-121.7 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFutbol = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGem.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGem.d.ts new file mode 100644 index 0000000000..a138c0a65e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGem.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGem: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGem.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGem.js new file mode 100644 index 0000000000..ff00ff35b5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGem.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'gem'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f3a5'; +var svgPathData = 'M464 0H112c-4 0-7.8 2-10 5.4L2 152.6c-2.9 4.4-2.6 10.2.7 14.2l276 340.8c4.8 5.9 13.8 5.9 18.6 0l276-340.8c3.3-4.1 3.6-9.8.7-14.2L474.1 5.4C471.8 2 468.1 0 464 0zm-19.3 48l63.3 96h-68.4l-51.7-96h56.8zm-202.1 0h90.7l51.7 96H191l51.6-96zm-111.3 0h56.8l-51.7 96H68l63.3-96zm-43 144h51.4L208 352 88.3 192zm102.9 0h193.6L288 435.3 191.2 192zM368 352l68.2-160h51.4L368 352z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGem = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrimace.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrimace.d.ts new file mode 100644 index 0000000000..d1b1e124d6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrimace.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrimace: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrimace.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrimace.js new file mode 100644 index 0000000000..a49bcabd3d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrimace.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'grimace'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f57f'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm16 16H152c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h192c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48zm-168 96h-24c-8.8 0-16-7.2-16-16v-8h40v24zm0-40h-40v-8c0-8.8 7.2-16 16-16h24v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm56 24c0 8.8-7.2 16-16 16h-24v-24h40v8zm0-24h-40v-24h24c8.8 0 16 7.2 16 16v8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrimace = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrin.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrin.d.ts new file mode 100644 index 0000000000..2db97f2346 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrin.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrin: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrin.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrin.js new file mode 100644 index 0000000000..9a11514322 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrin.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'grin'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f580'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrin = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinAlt.d.ts new file mode 100644 index 0000000000..96aa883419 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrinAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinAlt.js new file mode 100644 index 0000000000..6b69731e94 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'grin-alt'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f581'; +var svgPathData = 'M200.3 248c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zm128 0c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrinAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinBeam.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinBeam.d.ts new file mode 100644 index 0000000000..aa16a68040 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinBeam.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrinBeam: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinBeam.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinBeam.js new file mode 100644 index 0000000000..5880eba302 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinBeam.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'grin-beam'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f582'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-235.9-72.9c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3zm160 0c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrinBeam = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinBeamSweat.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinBeamSweat.d.ts new file mode 100644 index 0000000000..dd871d4882 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinBeamSweat.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrinBeamSweat: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinBeamSweat.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinBeamSweat.js new file mode 100644 index 0000000000..725049504a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinBeamSweat.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'grin-beam-sweat'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f583'; +var svgPathData = 'M440 160c29.5 0 53.3-26.3 53.3-58.7 0-25-31.7-75.5-46.2-97.3-3.6-5.3-10.7-5.3-14.2 0-14.5 21.8-46.2 72.3-46.2 97.3 0 32.4 23.8 58.7 53.3 58.7zM248 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zm105.3-52.9c-24.6 15.7-46 12.9-46.4 12.9 6.9 20.2 10.8 41.8 10.8 64.3 0 110.3-89.7 200-200 200S48 366.3 48 256 137.7 56 248 56c39.8 0 76.8 11.8 108 31.9 1.7-9.5 6.3-24.1 17.2-45.7C336.4 20.6 293.7 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-27-4.4-52.9-12.4-77.2zM168 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrinBeamSweat = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinHearts.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinHearts.d.ts new file mode 100644 index 0000000000..e8079eaf0a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinHearts.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrinHearts: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinHearts.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinHearts.js new file mode 100644 index 0000000000..55dd62e823 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinHearts.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'grin-hearts'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f584'; +var svgPathData = 'M353.6 304.6c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-152.8-48.9c4.5 1.2 9.2-1.5 10.5-6l19.4-69.9c5.6-20.3-7.4-41.1-28.8-44.5-18.6-3-36.4 9.8-41.5 27.9l-2 7.1-7.1-1.9c-18.2-4.7-38.2 4.3-44.9 22-7.7 20.2 3.8 41.9 24.2 47.2l70.2 18.1zm188.8-65.3c-6.7-17.6-26.7-26.7-44.9-22l-7.1 1.9-2-7.1c-5-18.1-22.8-30.9-41.5-27.9-21.4 3.4-34.4 24.2-28.8 44.5l19.4 69.9c1.2 4.5 5.9 7.2 10.5 6l70.2-18.2c20.4-5.3 31.9-26.9 24.2-47.1zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrinHearts = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinSquint.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinSquint.d.ts new file mode 100644 index 0000000000..be7419339b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinSquint.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrinSquint: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinSquint.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinSquint.js new file mode 100644 index 0000000000..22b664fa5d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinSquint.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'grin-squint'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f585'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-234.7-40.8c3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3l-80-48c-5.1-3-11.4-1.9-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11.1.1 15.5zm242.9 2.5c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11-.1-15.5-3.8-4.4-10.2-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrinSquint = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinSquintTears.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinSquintTears.d.ts new file mode 100644 index 0000000000..7ab9e2eac2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinSquintTears.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrinSquintTears: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinSquintTears.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinSquintTears.js new file mode 100644 index 0000000000..99d69212ab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinSquintTears.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'grin-squint-tears'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f586'; +var svgPathData = 'M117.1 384.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 479 124.3 420.8 128 395c.8-6.4-4.6-11.8-10.9-10.9zm-41.2-41.7C40.3 268 53 176.1 114.6 114.6 152.4 76.8 202.6 56 256 56c36.2 0 70.8 9.8 101.2 27.7 3.8-20.3 8-36.1 12-48.3C333.8 17.2 294.9 8 256 8 192.5 8 129.1 32.2 80.6 80.6c-74.1 74.1-91.3 183.4-52 274 12.2-4.1 27.7-8.3 47.3-12.2zm352.3-187.6c45 76.6 34.9 176.9-30.8 242.6-37.8 37.8-88 58.6-141.4 58.6-30.5 0-59.8-7-86.4-19.8-3.9 19.5-8 35-12.2 47.2 31.4 13.6 65 20.6 98.7 20.6 63.5 0 126.9-24.2 175.4-72.6 78.1-78.1 93.1-195.4 45.2-288.6-12.3 4-28.2 8.1-48.5 12zm-33.3-26.9c25.8-3.7 84-13.7 100.9-30.6 21.9-21.9 21.5-57.9-.9-80.3s-58.3-22.8-80.3-.9C397.7 33 387.7 91.2 384 117c-.8 6.4 4.6 11.8 10.9 10.9zm-187 108.3c-3-3-7.2-4.2-11.4-3.2L106 255.7c-5.7 1.4-9.5 6.7-9.1 12.6.5 5.8 5.1 10.5 10.9 11l52.3 4.8 4.8 52.3c.5 5.8 5.2 10.4 11 10.9h.9c5.5 0 10.3-3.7 11.7-9.1l22.6-90.5c1-4.2-.2-8.5-3.2-11.5zm39.7-25.1l90.5-22.6c5.7-1.4 9.5-6.7 9.1-12.6-.5-5.8-5.1-10.5-10.9-11l-52.3-4.8-4.8-52.3c-.5-5.8-5.2-10.4-11-10.9-5.6-.1-11.2 3.4-12.6 9.1L233 196.5c-1 4.1.2 8.4 3.2 11.4 5 5 11.3 3.2 11.4 3.2zm52 88.5c-29.1 29.1-59.7 52.9-83.9 65.4-9.2 4.8-10 17.5-1.7 23.4 38.9 27.7 107 6.2 143.7-30.6S416 253 388.3 214.1c-5.8-8.2-18.5-7.6-23.4 1.7-12.3 24.2-36.2 54.7-65.3 83.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrinSquintTears = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinStars.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinStars.d.ts new file mode 100644 index 0000000000..d3fb0699d0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinStars.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrinStars: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinStars.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinStars.js new file mode 100644 index 0000000000..43f9b6f88a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinStars.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'grin-stars'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f587'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-227.9-57.5c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.5 1.9-12.2-4.3-13.2l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6.1 34.9zm259.7-72.7l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6 34.9c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.6 1.8-12.2-4.4-13.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrinStars = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTears.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTears.d.ts new file mode 100644 index 0000000000..1b284434e3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTears.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrinTears: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTears.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTears.js new file mode 100644 index 0000000000..731686edf5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTears.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'grin-tears'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f588'; +var svgPathData = 'M117.1 256.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 351 124.3 292.8 128 267c.8-6.4-4.6-11.8-10.9-10.9zm506.7 30.6c-16.9-16.9-75.1-26.9-100.9-30.6-6.3-.9-11.7 4.5-10.8 10.8 3.7 25.8 13.7 84 30.6 100.9 21.9 21.9 57.9 21.5 80.3-.9 22.3-22.3 22.7-58.3.8-80.2zm-126.6 61.7C463.8 412.3 396.9 456 320 456c-76.9 0-143.8-43.7-177.2-107.6-12.5 37.4-25.2 43.9-28.3 46.5C159.1 460.7 234.5 504 320 504s160.9-43.3 205.5-109.1c-3.2-2.7-15.9-9.2-28.3-46.5zM122.7 224.5C137.9 129.2 220.5 56 320 56c99.5 0 182.1 73.2 197.3 168.5 2.1-.2 5.2-2.4 49.5 7C554.4 106 448.7 8 320 8S85.6 106 73.2 231.4c44.5-9.4 47.1-7.2 49.5-6.9zM320 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zM240 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrinTears = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTongue.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTongue.d.ts new file mode 100644 index 0000000000..db3493165e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTongue.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrinTongue: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTongue.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTongue.js new file mode 100644 index 0000000000..21e11e9630 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTongue.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'grin-tongue'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f589'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zM168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrinTongue = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTongueSquint.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTongueSquint.d.ts new file mode 100644 index 0000000000..63d2e6c32d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTongueSquint.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrinTongueSquint: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTongueSquint.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTongueSquint.js new file mode 100644 index 0000000000..1532f69081 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTongueSquint.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'grin-tongue-squint'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f58a'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zm36.9-281.1c-3.8-4.4-10.3-5.5-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zm-162.9 45.5l-80-48c-5-3-11.4-2-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrinTongueSquint = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTongueWink.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTongueWink.d.ts new file mode 100644 index 0000000000..e9d3ced790 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTongueWink.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrinTongueWink: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTongueWink.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTongueWink.js new file mode 100644 index 0000000000..9b6aa0ecd4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinTongueWink.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'grin-tongue-wink'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f58b'; +var svgPathData = 'M152 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm176-52c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrinTongueWink = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinWink.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinWink.d.ts new file mode 100644 index 0000000000..be6abb7274 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinWink.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrinWink: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinWink.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinWink.js new file mode 100644 index 0000000000..2b1aa4c7a3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faGrinWink.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'grin-wink'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f58c'; +var svgPathData = 'M328 180c-25.69 0-55.88 16.92-59.86 42.12-1.75 11.22 11.5 18.24 19.83 10.84l9.55-8.48c14.81-13.19 46.16-13.19 60.97 0l9.55 8.48c8.48 7.43 21.56.25 19.83-10.84C383.88 196.92 353.69 180 328 180zm-160 60c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm185.55 64.64c-25.93 8.3-64.4 13.06-105.55 13.06s-79.62-4.75-105.55-13.06c-9.94-3.13-19.4 5.37-17.71 15.34C132.67 367.13 196.06 400 248 400s115.33-32.87 123.26-80.02c1.68-9.89-7.67-18.48-17.71-15.34zM248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 448c-110.28 0-200-89.72-200-200S137.72 56 248 56s200 89.72 200 200-89.72 200-200 200z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrinWink = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandLizard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandLizard.d.ts new file mode 100644 index 0000000000..a1509b6dc1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandLizard.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandLizard: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandLizard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandLizard.js new file mode 100644 index 0000000000..aa5de5ee89 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandLizard.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'hand-lizard'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f258'; +var svgPathData = 'M556.686 290.542L410.328 64.829C397.001 44.272 374.417 32 349.917 32H56C25.121 32 0 57.122 0 88v8c0 44.112 35.888 80 80 80h196.042l-18.333 48H144c-48.523 0-88 39.477-88 88 0 30.879 25.121 56 56 56h131.552c2.987 0 5.914.549 8.697 1.631L352 408.418V480h224V355.829c0-23.225-6.679-45.801-19.314-65.287zM528 432H400v-23.582c0-19.948-12.014-37.508-30.604-44.736l-99.751-38.788A71.733 71.733 0 0 0 243.552 320H112c-4.411 0-8-3.589-8-8 0-22.056 17.944-40 40-40h113.709c19.767 0 37.786-12.407 44.84-30.873l24.552-64.281c8.996-23.553-8.428-48.846-33.63-48.846H80c-17.645 0-32-14.355-32-32v-8c0-4.411 3.589-8 8-8h293.917c8.166 0 15.693 4.09 20.137 10.942l146.358 225.715A71.84 71.84 0 0 1 528 355.829V432z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandLizard = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPaper.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPaper.d.ts new file mode 100644 index 0000000000..b6b4de0d3b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPaper.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandPaper: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPaper.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPaper.js new file mode 100644 index 0000000000..12a462b7d0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPaper.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'hand-paper'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f256'; +var svgPathData = 'M372.57 112.641v-10.825c0-43.612-40.52-76.691-83.039-65.546-25.629-49.5-94.09-47.45-117.982.747C130.269 26.456 89.144 57.945 89.144 102v126.13c-19.953-7.427-43.308-5.068-62.083 8.871-29.355 21.796-35.794 63.333-14.55 93.153L132.48 498.569a32 32 0 0 0 26.062 13.432h222.897c14.904 0 27.835-10.289 31.182-24.813l30.184-130.958A203.637 203.637 0 0 0 448 310.564V179c0-40.62-35.523-71.992-75.43-66.359zm27.427 197.922c0 11.731-1.334 23.469-3.965 34.886L368.707 464h-201.92L51.591 302.303c-14.439-20.27 15.023-42.776 29.394-22.605l27.128 38.079c8.995 12.626 29.031 6.287 29.031-9.283V102c0-25.645 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V67c0-25.663 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V101.125c0-25.672 36.57-24.81 36.57.691V256c0 8.837 7.163 16 16 16h6.857c8.837 0 16-7.163 16-16v-76.309c0-26.242 36.57-25.64 36.57-.691v131.563z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandPaper = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPeace.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPeace.d.ts new file mode 100644 index 0000000000..19191e2275 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPeace.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandPeace: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPeace.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPeace.js new file mode 100644 index 0000000000..f081185f5c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPeace.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'hand-peace'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f25b'; +var svgPathData = 'M362.146 191.976c-13.71-21.649-38.761-34.016-65.006-30.341V74c0-40.804-32.811-74-73.141-74-40.33 0-73.14 33.196-73.14 74L160 168l-18.679-78.85C126.578 50.843 83.85 32.11 46.209 47.208 8.735 62.238-9.571 104.963 5.008 142.85l55.757 144.927c-30.557 24.956-43.994 57.809-24.733 92.218l54.853 97.999C102.625 498.97 124.73 512 148.575 512h205.702c30.744 0 57.558-21.44 64.555-51.797l27.427-118.999a67.801 67.801 0 0 0 1.729-15.203L448 256c0-44.956-43.263-77.343-85.854-64.024zM399.987 326c0 1.488-.169 2.977-.502 4.423l-27.427 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H148.575c-6.486 0-12.542-3.621-15.805-9.449l-54.854-98c-4.557-8.141-2.619-18.668 4.508-24.488l26.647-21.764a16 16 0 0 0 4.812-18.139l-64.09-166.549C37.226 92.956 84.37 74.837 96.51 106.389l59.784 155.357A16 16 0 0 0 171.227 272h11.632c8.837 0 16-7.163 16-16V74c0-34.375 50.281-34.43 50.281 0v182c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16v-28c0-25.122 36.567-25.159 36.567 0v28c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16 0-25.12 36.567-25.16 36.567 0v70z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandPeace = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointDown.d.ts new file mode 100644 index 0000000000..418c7287f1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointDown.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandPointDown: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointDown.js new file mode 100644 index 0000000000..1863ac9d62 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointDown.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'hand-point-down'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0a7'; +var svgPathData = 'M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandPointDown = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointLeft.d.ts new file mode 100644 index 0000000000..8608bc5be6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointLeft.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandPointLeft: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointLeft.js new file mode 100644 index 0000000000..48013821f1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointLeft.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'hand-point-left'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0a5'; +var svgPathData = 'M0 220.8C0 266.416 37.765 304 83.2 304h35.647a93.148 93.148 0 0 0 7.929 22.064c-2.507 22.006 3.503 44.978 15.985 62.791C143.9 441.342 180.159 480 242.701 480H264c60.063 0 98.512-40 127.2-40h2.679c5.747 4.952 13.536 8 22.12 8h64c17.673 0 32-12.894 32-28.8V188.8c0-15.906-14.327-28.8-32-28.8h-64c-8.584 0-16.373 3.048-22.12 8H391.2c-6.964 0-14.862-6.193-30.183-23.668l-.129-.148-.131-.146c-8.856-9.937-18.116-20.841-25.851-33.253C316.202 80.537 304.514 32 259.2 32c-56.928 0-92 35.286-92 83.2 0 8.026.814 15.489 2.176 22.4H83.2C38.101 137.6 0 175.701 0 220.8zm48 0c0-18.7 16.775-35.2 35.2-35.2h158.4c0-17.325-26.4-35.2-26.4-70.4 0-26.4 20.625-35.2 44-35.2 8.794 0 20.445 32.712 34.926 56.1 9.074 14.575 19.524 27.225 30.799 39.875 16.109 18.374 33.836 36.633 59.075 39.596v176.752C341.21 396.087 309.491 432 264 432h-21.299c-40.524 0-57.124-22.197-50.601-61.325-14.612-8.001-24.151-33.979-12.925-53.625-19.365-18.225-17.787-46.381-4.95-61.05H83.2C64.225 256 48 239.775 48 220.8zM448 360c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandPointLeft = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointRight.d.ts new file mode 100644 index 0000000000..f2f9478b8e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointRight.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandPointRight: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointRight.js new file mode 100644 index 0000000000..fa01fbb349 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointRight.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'hand-point-right'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0a4'; +var svgPathData = 'M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandPointRight = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointUp.d.ts new file mode 100644 index 0000000000..b854cb84ed --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointUp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandPointUp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointUp.js new file mode 100644 index 0000000000..ad9fe1f86f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointUp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'hand-point-up'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0a6'; +var svgPathData = 'M105.6 83.2v86.177a115.52 115.52 0 0 0-22.4-2.176c-47.914 0-83.2 35.072-83.2 92 0 45.314 48.537 57.002 78.784 75.707 12.413 7.735 23.317 16.994 33.253 25.851l.146.131.148.129C129.807 376.338 136 384.236 136 391.2v2.679c-4.952 5.747-8 13.536-8 22.12v64c0 17.673 12.894 32 28.8 32h230.4c15.906 0 28.8-14.327 28.8-32v-64c0-8.584-3.048-16.373-8-22.12V391.2c0-28.688 40-67.137 40-127.2v-21.299c0-62.542-38.658-98.8-91.145-99.94-17.813-12.482-40.785-18.491-62.791-15.985A93.148 93.148 0 0 0 272 118.847V83.2C272 37.765 234.416 0 188.8 0c-45.099 0-83.2 38.101-83.2 83.2zm118.4 0v91.026c14.669-12.837 42.825-14.415 61.05 4.95 19.646-11.227 45.624-1.687 53.625 12.925 39.128-6.524 61.325 10.076 61.325 50.6V264c0 45.491-35.913 77.21-39.676 120H183.571c-2.964-25.239-21.222-42.966-39.596-59.075-12.65-11.275-25.3-21.725-39.875-30.799C80.712 279.645 48 267.994 48 259.2c0-23.375 8.8-44 35.2-44 35.2 0 53.075 26.4 70.4 26.4V83.2c0-18.425 16.5-35.2 35.2-35.2 18.975 0 35.2 16.225 35.2 35.2zM352 424c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandPointUp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointer.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointer.d.ts new file mode 100644 index 0000000000..1328b3d1f6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointer.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandPointer: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointer.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointer.js new file mode 100644 index 0000000000..4df863efac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandPointer.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'hand-pointer'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f25a'; +var svgPathData = 'M358.182 179.361c-19.493-24.768-52.679-31.945-79.872-19.098-15.127-15.687-36.182-22.487-56.595-19.629V67c0-36.944-29.736-67-66.286-67S89.143 30.056 89.143 67v161.129c-19.909-7.41-43.272-5.094-62.083 8.872-29.355 21.795-35.793 63.333-14.55 93.152l109.699 154.001C134.632 501.59 154.741 512 176 512h178.286c30.802 0 57.574-21.5 64.557-51.797l27.429-118.999A67.873 67.873 0 0 0 448 326v-84c0-46.844-46.625-79.273-89.818-62.639zM80.985 279.697l27.126 38.079c8.995 12.626 29.031 6.287 29.031-9.283V67c0-25.12 36.571-25.16 36.571 0v175c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16v-35c0-25.12 36.571-25.16 36.571 0v35c0 8.836 7.163 16 16 16H272c8.837 0 16-7.164 16-16v-21c0-25.12 36.571-25.16 36.571 0v21c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16 0-25.121 36.571-25.16 36.571 0v84c0 1.488-.169 2.977-.502 4.423l-27.43 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H176c-5.769 0-11.263-2.878-14.697-7.697l-109.712-154c-14.406-20.223 14.994-42.818 29.394-22.606zM176.143 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.733 0-14-7.163-14-16zm75.428 0v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16zM327 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandPointer = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandRock.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandRock.d.ts new file mode 100644 index 0000000000..0791b11bc2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandRock.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandRock: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandRock.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandRock.js new file mode 100644 index 0000000000..665964943a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandRock.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'hand-rock'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f255'; +var svgPathData = 'M408.864 79.052c-22.401-33.898-66.108-42.273-98.813-23.588-29.474-31.469-79.145-31.093-108.334-.022-47.16-27.02-108.71 5.055-110.671 60.806C44.846 105.407 0 140.001 0 187.429v56.953c0 32.741 14.28 63.954 39.18 85.634l97.71 85.081c4.252 3.702 3.11 5.573 3.11 32.903 0 17.673 14.327 32 32 32h252c17.673 0 32-14.327 32-32 0-23.513-1.015-30.745 3.982-42.37l42.835-99.656c6.094-14.177 9.183-29.172 9.183-44.568V146.963c0-52.839-54.314-88.662-103.136-67.911zM464 261.406a64.505 64.505 0 0 1-5.282 25.613l-42.835 99.655c-5.23 12.171-7.883 25.04-7.883 38.25V432H188v-10.286c0-16.37-7.14-31.977-19.59-42.817l-97.71-85.08C56.274 281.255 48 263.236 48 244.381v-56.953c0-33.208 52-33.537 52 .677v41.228a16 16 0 0 0 5.493 12.067l7 6.095A16 16 0 0 0 139 235.429V118.857c0-33.097 52-33.725 52 .677v26.751c0 8.836 7.164 16 16 16h7c8.836 0 16-7.164 16-16v-41.143c0-33.134 52-33.675 52 .677v40.466c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16v-27.429c0-33.03 52-33.78 52 .677v26.751c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16 0-33.146 52-33.613 52 .677v114.445z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandRock = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandScissors.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandScissors.d.ts new file mode 100644 index 0000000000..381e75b98d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandScissors.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandScissors: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandScissors.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandScissors.js new file mode 100644 index 0000000000..e74389ce7f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandScissors.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'hand-scissors'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f257'; +var svgPathData = 'M256 480l70-.013c5.114 0 10.231-.583 15.203-1.729l118.999-27.427C490.56 443.835 512 417.02 512 386.277V180.575c0-23.845-13.03-45.951-34.005-57.69l-97.999-54.853c-34.409-19.261-67.263-5.824-92.218 24.733L142.85 37.008c-37.887-14.579-80.612 3.727-95.642 41.201-15.098 37.642 3.635 80.37 41.942 95.112L168 192l-94-9.141c-40.804 0-74 32.811-74 73.14 0 40.33 33.196 73.141 74 73.141h87.635c-3.675 26.245 8.692 51.297 30.341 65.006C178.657 436.737 211.044 480 256 480zm0-48.013c-25.16 0-25.12-36.567 0-36.567 8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16h-28c-25.159 0-25.122-36.567 0-36.567h28c8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16H74c-34.43 0-34.375-50.281 0-50.281h182c8.837 0 16-7.163 16-16v-11.632a16 16 0 0 0-10.254-14.933L106.389 128.51c-31.552-12.14-13.432-59.283 19.222-46.717l166.549 64.091a16.001 16.001 0 0 0 18.139-4.812l21.764-26.647c5.82-7.127 16.348-9.064 24.488-4.508l98 54.854c5.828 3.263 9.449 9.318 9.449 15.805v205.701c0 8.491-5.994 15.804-14.576 17.782l-119.001 27.427a19.743 19.743 0 0 1-4.423.502h-70z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandScissors = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandSpock.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandSpock.d.ts new file mode 100644 index 0000000000..01ca8d0d6b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandSpock.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandSpock: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandSpock.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandSpock.js new file mode 100644 index 0000000000..9ecc852fb7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandSpock.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'hand-spock'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f259'; +var svgPathData = 'M21.096 381.79l129.092 121.513a32 32 0 0 0 21.932 8.698h237.6c14.17 0 26.653-9.319 30.68-22.904l31.815-107.313A115.955 115.955 0 0 0 477 348.811v-36.839c0-4.051.476-8.104 1.414-12.045l31.73-133.41c10.099-42.412-22.316-82.738-65.544-82.525-4.144-24.856-22.543-47.165-49.85-53.992-35.803-8.952-72.227 12.655-81.25 48.75L296.599 184 274.924 52.01c-8.286-36.07-44.303-58.572-80.304-50.296-29.616 6.804-50.138 32.389-51.882 61.295-42.637.831-73.455 40.563-64.071 81.844l31.04 136.508c-27.194-22.515-67.284-19.992-91.482 5.722-25.376 26.961-24.098 69.325 2.871 94.707zm32.068-61.811l.002-.001c7.219-7.672 19.241-7.98 26.856-.813l53.012 49.894C143.225 378.649 160 371.4 160 357.406v-69.479c0-1.193-.134-2.383-.397-3.546l-34.13-150.172c-5.596-24.617 31.502-32.86 37.054-8.421l30.399 133.757a16 16 0 0 0 15.603 12.454h8.604c10.276 0 17.894-9.567 15.594-19.583l-41.62-181.153c-5.623-24.469 31.39-33.076 37.035-8.508l45.22 196.828A16 16 0 0 0 288.956 272h13.217a16 16 0 0 0 15.522-12.119l42.372-169.49c6.104-24.422 42.962-15.159 36.865 9.217L358.805 252.12c-2.521 10.088 5.115 19.88 15.522 19.88h9.694a16 16 0 0 0 15.565-12.295L426.509 146.6c5.821-24.448 42.797-15.687 36.966 8.802L431.72 288.81a100.094 100.094 0 0 0-2.72 23.162v36.839c0 6.548-.943 13.051-2.805 19.328L397.775 464h-219.31L53.978 346.836c-7.629-7.18-7.994-19.229-.814-26.857z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandSpock = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandshake.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandshake.d.ts new file mode 100644 index 0000000000..fc43463f60 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandshake.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandshake: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandshake.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandshake.js new file mode 100644 index 0000000000..b8b9ad6afa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHandshake.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'handshake'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f2b5'; +var svgPathData = 'M519.2 127.9l-47.6-47.6A56.252 56.252 0 0 0 432 64H205.2c-14.8 0-29.1 5.9-39.6 16.3L118 127.9H0v255.7h64c17.6 0 31.8-14.2 31.9-31.7h9.1l84.6 76.4c30.9 25.1 73.8 25.7 105.6 3.8 12.5 10.8 26 15.9 41.1 15.9 18.2 0 35.3-7.4 48.8-24 22.1 8.7 48.2 2.6 64-16.8l26.2-32.3c5.6-6.9 9.1-14.8 10.9-23h57.9c.1 17.5 14.4 31.7 31.9 31.7h64V127.9H519.2zM48 351.6c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16zm390-6.9l-26.1 32.2c-2.8 3.4-7.8 4-11.3 1.2l-23.9-19.4-30 36.5c-6 7.3-15 4.8-18 2.4l-36.8-31.5-15.6 19.2c-13.9 17.1-39.2 19.7-55.3 6.6l-97.3-88H96V175.8h41.9l61.7-61.6c2-.8 3.7-1.5 5.7-2.3H262l-38.7 35.5c-29.4 26.9-31.1 72.3-4.4 101.3 14.8 16.2 61.2 41.2 101.5 4.4l8.2-7.5 108.2 87.8c3.4 2.8 3.9 7.9 1.2 11.3zm106-40.8h-69.2c-2.3-2.8-4.9-5.4-7.7-7.7l-102.7-83.4 12.5-11.4c6.5-6 7-16.1 1-22.6L367 167.1c-6-6.5-16.1-6.9-22.6-1l-55.2 50.6c-9.5 8.7-25.7 9.4-34.6 0-9.3-9.9-8.5-25.1 1.2-33.9l65.6-60.1c7.4-6.8 17-10.5 27-10.5l83.7-.2c2.1 0 4.1.8 5.5 2.3l61.7 61.6H544v128zm48 47.7c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandshake = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHdd.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHdd.d.ts new file mode 100644 index 0000000000..922fac4d4a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHdd.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHdd: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHdd.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHdd.js new file mode 100644 index 0000000000..5cddc0a8b5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHdd.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'hdd'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f0a0'; +var svgPathData = 'M567.403 235.642L462.323 84.589A48 48 0 0 0 422.919 64H153.081a48 48 0 0 0-39.404 20.589L8.597 235.642A48.001 48.001 0 0 0 0 263.054V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V263.054c0-9.801-3-19.366-8.597-27.412zM153.081 112h269.838l77.913 112H75.168l77.913-112zM528 400H48V272h480v128zm-32-64c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32zm-96 0c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHdd = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHeart.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHeart.d.ts new file mode 100644 index 0000000000..c109fc37cd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHeart.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHeart: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHeart.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHeart.js new file mode 100644 index 0000000000..a62021208e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHeart.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'heart'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f004'; +var svgPathData = 'M458.4 64.3C400.6 15.7 311.3 23 256 79.3 200.7 23 111.4 15.6 53.6 64.3-21.6 127.6-10.6 230.8 43 285.5l175.4 178.7c10 10.2 23.4 15.9 37.6 15.9 14.3 0 27.6-5.6 37.6-15.8L469 285.6c53.5-54.7 64.7-157.9-10.6-221.3zm-23.6 187.5L259.4 430.5c-2.4 2.4-4.4 2.4-6.8 0L77.2 251.8c-36.5-37.2-43.9-107.6 7.3-150.7 38.9-32.7 98.9-27.8 136.5 10.5l35 35.7 35-35.7c37.8-38.5 97.8-43.2 136.5-10.6 51.1 43.1 43.5 113.9 7.3 150.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHeart = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHospital.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHospital.d.ts new file mode 100644 index 0000000000..95cf60a828 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHospital.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHospital: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHospital.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHospital.js new file mode 100644 index 0000000000..53fcf008f2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHospital.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'hospital'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0f8'; +var svgPathData = 'M128 244v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12zm140 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm-76 84v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm76 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm180 124v36H0v-36c0-6.627 5.373-12 12-12h19.5V85.035C31.5 73.418 42.245 64 55.5 64H144V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v40h88.5c13.255 0 24 9.418 24 21.035V464H436c6.627 0 12 5.373 12 12zM79.5 463H192v-67c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v67h112.5V112H304v24c0 13.255-10.745 24-24 24H168c-13.255 0-24-10.745-24-24v-24H79.5v351zM266 64h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHospital = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHourglass.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHourglass.d.ts new file mode 100644 index 0000000000..71d0090c4b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHourglass.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHourglass: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHourglass.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHourglass.js new file mode 100644 index 0000000000..337bb0bb68 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faHourglass.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'hourglass'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f254'; +var svgPathData = 'M368 48h4c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12H12C5.373 0 0 5.373 0 12v24c0 6.627 5.373 12 12 12h4c0 80.564 32.188 165.807 97.18 208C47.899 298.381 16 383.9 16 464h-4c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12h-4c0-80.564-32.188-165.807-97.18-208C336.102 213.619 368 128.1 368 48zM64 48h256c0 101.62-57.307 184-128 184S64 149.621 64 48zm256 416H64c0-101.62 57.308-184 128-184s128 82.38 128 184z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHourglass = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faIdBadge.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faIdBadge.d.ts new file mode 100644 index 0000000000..3f91d32534 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faIdBadge.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faIdBadge: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faIdBadge.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faIdBadge.js new file mode 100644 index 0000000000..b93efc8b28 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faIdBadge.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'id-badge'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f2c1'; +var svgPathData = 'M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm0 464H48V48h288v416zM144 112h96c8.8 0 16-7.2 16-16s-7.2-16-16-16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16zm48 176c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faIdBadge = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faIdCard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faIdCard.d.ts new file mode 100644 index 0000000000..21863b0d2f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faIdCard.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faIdCard: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faIdCard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faIdCard.js new file mode 100644 index 0000000000..671775f6f0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faIdCard.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'id-card'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f2c2'; +var svgPathData = 'M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H303.2c.9-4.5.8 3.6.8-22.4 0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6 0 26-.2 17.9.8 22.4H48V144h480v288zm-168-80h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm-168 96c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faIdCard = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faImage.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faImage.d.ts new file mode 100644 index 0000000000..3a16318cd2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faImage.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faImage: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faImage.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faImage.js new file mode 100644 index 0000000000..1a54007384 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faImage.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'image'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f03e'; +var svgPathData = 'M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 336H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v276a6 6 0 0 1-6 6zM128 152c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zM96 352h320v-80l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L192 304l-39.515-39.515c-4.686-4.686-12.284-4.686-16.971 0L96 304v48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faImage = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faImages.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faImages.d.ts new file mode 100644 index 0000000000..c03f525e44 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faImages.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faImages: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faImages.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faImages.js new file mode 100644 index 0000000000..50b4f55454 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faImages.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'images'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f302'; +var svgPathData = 'M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v48H54a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6v-10h48zm42-336H150a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6V86a6 6 0 0 0-6-6zm6-48c26.51 0 48 21.49 48 48v256c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h384zM264 144c0 22.091-17.909 40-40 40s-40-17.909-40-40 17.909-40 40-40 40 17.909 40 40zm-72 96l39.515-39.515c4.686-4.686 12.284-4.686 16.971 0L288 240l103.515-103.515c4.686-4.686 12.284-4.686 16.971 0L480 208v80H192v-48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faImages = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKeyboard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKeyboard.d.ts new file mode 100644 index 0000000000..22daac53ea --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKeyboard.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faKeyboard: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKeyboard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKeyboard.js new file mode 100644 index 0000000000..617b706518 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKeyboard.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'keyboard'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f11c'; +var svgPathData = 'M528 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm8 336c0 4.411-3.589 8-8 8H48c-4.411 0-8-3.589-8-8V112c0-4.411 3.589-8 8-8h480c4.411 0 8 3.589 8 8v288zM170 270v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-336 82v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm384 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zM122 188v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-98 158v-16c0-6.627-5.373-12-12-12H180c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h216c6.627 0 12-5.373 12-12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faKeyboard = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKiss.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKiss.d.ts new file mode 100644 index 0000000000..3ffba5c2db --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKiss.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faKiss: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKiss.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKiss.js new file mode 100644 index 0000000000..2a3e695775 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKiss.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'kiss'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f596'; +var svgPathData = 'M168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm136 132c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faKiss = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKissBeam.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKissBeam.d.ts new file mode 100644 index 0000000000..5e6ef58252 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKissBeam.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faKissBeam: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKissBeam.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKissBeam.js new file mode 100644 index 0000000000..b857f00ea4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKissBeam.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'kiss-beam'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f597'; +var svgPathData = 'M168 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm56-148c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zm24-156c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faKissBeam = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKissWinkHeart.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKissWinkHeart.d.ts new file mode 100644 index 0000000000..74104777c9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKissWinkHeart.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faKissWinkHeart: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKissWinkHeart.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKissWinkHeart.js new file mode 100644 index 0000000000..78bae6fe75 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faKissWinkHeart.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'kiss-wink-heart'; +var width = 504; +var height = 512; +var ligatures = []; +var unicode = 'f598'; +var svgPathData = 'M304 308.5c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36 21.7-9.1 35.1-23.4 35.1-36.4zm70.5-83.5l9.5 8.5c3.8 3.3 9.3 4 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 5.8 3.1 11.2.7 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0zM136 208.5c0 17.7 14.3 32 32 32s32-14.3 32-32-14.3-32-32-32-32 14.3-32 32zm365.1 194c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zM334 436.3c-26.1 12.5-55.2 19.7-86 19.7-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200c0 22.1-3.7 43.3-10.4 63.2 9 6.4 17 14.2 22.6 23.9 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-2.5-7.3 4.3 17.2-13.4-46.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faKissWinkHeart = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaugh.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaugh.d.ts new file mode 100644 index 0000000000..ad3bf47d0e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaugh.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLaugh: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaugh.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaugh.js new file mode 100644 index 0000000000..9b0b96ac47 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaugh.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'laugh'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f599'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 224c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm-160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLaugh = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaughBeam.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaughBeam.d.ts new file mode 100644 index 0000000000..1e4d35d66b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaughBeam.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLaughBeam: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaughBeam.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaughBeam.js new file mode 100644 index 0000000000..b31513b62a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaughBeam.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'laugh-beam'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f59a'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 152c-23.8 0-52.7 29.3-56 71.4-.7 8.6 10.8 11.9 14.9 4.5l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.1-42.1-32-71.4-55.8-71.4zm-201 75.9l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.6 8.5 10.9 11.9 15.1 4.5zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLaughBeam = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaughSquint.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaughSquint.d.ts new file mode 100644 index 0000000000..39f55ccf67 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaughSquint.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLaughSquint: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaughSquint.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaughSquint.js new file mode 100644 index 0000000000..2e52532983 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaughSquint.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'laugh-squint'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f59b'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM343.6 196l33.6-40.3c8.6-10.3-3.8-24.8-15.4-18l-80 48c-7.8 4.7-7.8 15.9 0 20.6l80 48c11.5 6.8 24-7.6 15.4-18L343.6 196zm-209.4 58.3l80-48c7.8-4.7 7.8-15.9 0-20.6l-80-48c-11.6-6.9-24 7.7-15.4 18l33.6 40.3-33.6 40.3c-8.7 10.4 3.8 24.8 15.4 18zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLaughSquint = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaughWink.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaughWink.d.ts new file mode 100644 index 0000000000..7376c9309c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaughWink.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLaughWink: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaughWink.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaughWink.js new file mode 100644 index 0000000000..e66d50ceb5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLaughWink.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'laugh-wink'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f59c'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6C68.8 359.6 48 309.4 48 256s20.8-103.6 58.6-141.4C144.4 76.8 194.6 56 248 56s103.6 20.8 141.4 58.6c37.8 37.8 58.6 88 58.6 141.4s-20.8 103.6-58.6 141.4zM328 164c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1zm-160 60c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLaughWink = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLemon.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLemon.d.ts new file mode 100644 index 0000000000..8d9ec0ed46 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLemon.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLemon: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLemon.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLemon.js new file mode 100644 index 0000000000..ee2237a4a8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLemon.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'lemon'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f094'; +var svgPathData = 'M484.112 27.889C455.989-.233 416.108-8.057 387.059 8.865 347.604 31.848 223.504-41.111 91.196 91.197-41.277 223.672 31.923 347.472 8.866 387.058c-16.922 29.051-9.1 68.932 19.022 97.054 28.135 28.135 68.011 35.938 97.057 19.021 39.423-22.97 163.557 49.969 295.858-82.329 132.474-132.477 59.273-256.277 82.331-295.861 16.922-29.05 9.1-68.931-19.022-97.054zm-22.405 72.894c-38.8 66.609 45.6 165.635-74.845 286.08-120.44 120.443-219.475 36.048-286.076 74.843-22.679 13.207-64.035-27.241-50.493-50.488 38.8-66.609-45.6-165.635 74.845-286.08C245.573 4.702 344.616 89.086 411.219 50.292c22.73-13.24 64.005 27.288 50.488 50.491zm-169.861 8.736c1.37 10.96-6.404 20.957-17.365 22.327-54.846 6.855-135.779 87.787-142.635 142.635-1.373 10.989-11.399 18.734-22.326 17.365-10.961-1.37-18.735-11.366-17.365-22.326 9.162-73.286 104.167-168.215 177.365-177.365 10.953-1.368 20.956 6.403 22.326 17.364z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLemon = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLifeRing.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLifeRing.d.ts new file mode 100644 index 0000000000..b3af42c319 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLifeRing.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLifeRing: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLifeRing.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLifeRing.js new file mode 100644 index 0000000000..7b720c7144 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLifeRing.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'life-ring'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1cd'; +var svgPathData = 'M256 504c136.967 0 248-111.033 248-248S392.967 8 256 8 8 119.033 8 256s111.033 248 248 248zm-103.398-76.72l53.411-53.411c31.806 13.506 68.128 13.522 99.974 0l53.411 53.411c-63.217 38.319-143.579 38.319-206.796 0zM336 256c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zm91.28 103.398l-53.411-53.411c13.505-31.806 13.522-68.128 0-99.974l53.411-53.411c38.319 63.217 38.319 143.579 0 206.796zM359.397 84.72l-53.411 53.411c-31.806-13.505-68.128-13.522-99.973 0L152.602 84.72c63.217-38.319 143.579-38.319 206.795 0zM84.72 152.602l53.411 53.411c-13.506 31.806-13.522 68.128 0 99.974L84.72 359.398c-38.319-63.217-38.319-143.579 0-206.796z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLifeRing = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLightbulb.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLightbulb.d.ts new file mode 100644 index 0000000000..33eed2968b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLightbulb.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLightbulb: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLightbulb.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLightbulb.js new file mode 100644 index 0000000000..7129778580 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faLightbulb.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'lightbulb'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f0eb'; +var svgPathData = 'M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zM128 176c0-35.29 28.71-64 64-64 8.837 0 16-7.164 16-16s-7.163-16-16-16c-52.935 0-96 43.065-96 96 0 8.836 7.164 16 16 16s16-7.164 16-16zm64-128c70.734 0 128 57.254 128 128 0 77.602-37.383 60.477-80.98 160h-94.04C101.318 236.33 64 253.869 64 176c0-70.735 57.254-128 128-128m0-48C94.805 0 16 78.803 16 176c0 101.731 51.697 91.541 90.516 192.674 3.55 9.249 12.47 15.326 22.376 15.326h126.215c9.906 0 18.826-6.078 22.376-15.326C316.303 267.541 368 277.731 368 176 368 78.803 289.195 0 192 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLightbulb = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faListAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faListAlt.d.ts new file mode 100644 index 0000000000..7df3e0a3d0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faListAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faListAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faListAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faListAlt.js new file mode 100644 index 0000000000..f5bc6ff89b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faListAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'list-alt'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f022'; +var svgPathData = 'M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zm-42-92v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm-252 12c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faListAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMap.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMap.d.ts new file mode 100644 index 0000000000..a6d53527c3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMap.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMap: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMap.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMap.js new file mode 100644 index 0000000000..01a791a553 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMap.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'map'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f279'; +var svgPathData = 'M560.02 32c-1.96 0-3.98.37-5.96 1.16L384.01 96H384L212 35.28A64.252 64.252 0 0 0 191.76 32c-6.69 0-13.37 1.05-19.81 3.14L20.12 87.95A32.006 32.006 0 0 0 0 117.66v346.32C0 473.17 7.53 480 15.99 480c1.96 0 3.97-.37 5.96-1.16L192 416l172 60.71a63.98 63.98 0 0 0 40.05.15l151.83-52.81A31.996 31.996 0 0 0 576 394.34V48.02c0-9.19-7.53-16.02-15.98-16.02zM224 90.42l128 45.19v285.97l-128-45.19V90.42zM48 418.05V129.07l128-44.53v286.2l-.64.23L48 418.05zm480-35.13l-128 44.53V141.26l.64-.24L528 93.95v288.97z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMap = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMeh.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMeh.d.ts new file mode 100644 index 0000000000..1ecbda3c41 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMeh.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMeh: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMeh.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMeh.js new file mode 100644 index 0000000000..a72777e774 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMeh.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'meh'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f11a'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm8 144H160c-13.2 0-24 10.8-24 24s10.8 24 24 24h176c13.2 0 24-10.8 24-24s-10.8-24-24-24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMeh = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMehBlank.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMehBlank.d.ts new file mode 100644 index 0000000000..d186d80d21 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMehBlank.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMehBlank: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMehBlank.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMehBlank.js new file mode 100644 index 0000000000..4352a92243 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMehBlank.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'meh-blank'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f5a4'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMehBlank = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMehRollingEyes.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMehRollingEyes.d.ts new file mode 100644 index 0000000000..77a268534d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMehRollingEyes.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMehRollingEyes: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMehRollingEyes.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMehRollingEyes.js new file mode 100644 index 0000000000..7e26ebfc5b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMehRollingEyes.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'meh-rolling-eyes'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f5a5'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm88-304c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm0 112c-22.1 0-40-17.9-40-40 0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40zm-104-40c0-39.8-32.2-72-72-72s-72 32.2-72 72 32.2 72 72 72 72-32.2 72-72zm-112 0c0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40s-40-17.9-40-40zm192 128H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMehRollingEyes = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMinusSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMinusSquare.d.ts new file mode 100644 index 0000000000..9f82102add --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMinusSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMinusSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMinusSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMinusSquare.js new file mode 100644 index 0000000000..a89deaff3c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMinusSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'minus-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f146'; +var svgPathData = 'M108 284c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h232c6.6 0 12 5.4 12 12v32c0 6.6-5.4 12-12 12H108zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMinusSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMoneyBillAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMoneyBillAlt.d.ts new file mode 100644 index 0000000000..cb7db1760c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMoneyBillAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMoneyBillAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMoneyBillAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMoneyBillAlt.js new file mode 100644 index 0000000000..45367f2dfa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMoneyBillAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'money-bill-alt'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f3d1'; +var svgPathData = 'M320 144c-53.02 0-96 50.14-96 112 0 61.85 42.98 112 96 112 53 0 96-50.13 96-112 0-61.86-42.98-112-96-112zm40 168c0 4.42-3.58 8-8 8h-64c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h16v-55.44l-.47.31a7.992 7.992 0 0 1-11.09-2.22l-8.88-13.31a7.992 7.992 0 0 1 2.22-11.09l15.33-10.22a23.99 23.99 0 0 1 13.31-4.03H328c4.42 0 8 3.58 8 8v88h16c4.42 0 8 3.58 8 8v16zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zm-16 272c-35.35 0-64 28.65-64 64H112c0-35.35-28.65-64-64-64V176c35.35 0 64-28.65 64-64h416c0 35.35 28.65 64 64 64v160z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMoneyBillAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMoon.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMoon.d.ts new file mode 100644 index 0000000000..fe983f6a58 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMoon.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMoon: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMoon.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMoon.js new file mode 100644 index 0000000000..2d2f322f1f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faMoon.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'moon'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f186'; +var svgPathData = 'M279.135 512c78.756 0 150.982-35.804 198.844-94.775 28.27-34.831-2.558-85.722-46.249-77.401-82.348 15.683-158.272-47.268-158.272-130.792 0-48.424 26.06-92.292 67.434-115.836 38.745-22.05 28.999-80.788-15.022-88.919A257.936 257.936 0 0 0 279.135 0c-141.36 0-256 114.575-256 256 0 141.36 114.576 256 256 256zm0-464c12.985 0 25.689 1.201 38.016 3.478-54.76 31.163-91.693 90.042-91.693 157.554 0 113.848 103.641 199.2 215.252 177.944C402.574 433.964 344.366 464 279.135 464c-114.875 0-208-93.125-208-208s93.125-208 208-208z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMoon = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faNewspaper.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faNewspaper.d.ts new file mode 100644 index 0000000000..2e3a28b0bf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faNewspaper.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faNewspaper: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faNewspaper.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faNewspaper.js new file mode 100644 index 0000000000..e662ae7b1f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faNewspaper.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'newspaper'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f1ea'; +var svgPathData = 'M552 64H112c-20.858 0-38.643 13.377-45.248 32H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h496c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24zM48 392V144h16v248c0 4.411-3.589 8-8 8s-8-3.589-8-8zm480 8H111.422c.374-2.614.578-5.283.578-8V112h416v288zM172 280h136c6.627 0 12-5.373 12-12v-96c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v96c0 6.627 5.373 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H172c-6.627 0-12-5.373-12-12zm192 0v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0-144v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0 72v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faNewspaper = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faObjectGroup.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faObjectGroup.d.ts new file mode 100644 index 0000000000..90fa55f57f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faObjectGroup.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faObjectGroup: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faObjectGroup.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faObjectGroup.js new file mode 100644 index 0000000000..4129a49029 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faObjectGroup.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'object-group'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f247'; +var svgPathData = 'M500 128c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v256H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V128h12zm-52-64h32v32h-32V64zM32 64h32v32H32V64zm32 384H32v-32h32v32zm416 0h-32v-32h32v32zm-40-64h-12c-6.627 0-12 5.373-12 12v12H96v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h12v256zm-36-192h-84v-52c0-6.628-5.373-12-12-12H108c-6.627 0-12 5.372-12 12v168c0 6.628 5.373 12 12 12h84v52c0 6.628 5.373 12 12 12h200c6.627 0 12-5.372 12-12V204c0-6.628-5.373-12-12-12zm-268-24h144v112H136V168zm240 176H232v-24h76c6.627 0 12-5.372 12-12v-76h56v112z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faObjectGroup = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faObjectUngroup.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faObjectUngroup.d.ts new file mode 100644 index 0000000000..63a1a0c150 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faObjectUngroup.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faObjectUngroup: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faObjectUngroup.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faObjectUngroup.js new file mode 100644 index 0000000000..567ebc9ac1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faObjectUngroup.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'object-ungroup'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f248'; +var svgPathData = 'M564 224c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12h-88v-24h12c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v160H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h88v24h-12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V224h12zM352 64h32v32h-32V64zm0 256h32v32h-32v-32zM64 352H32v-32h32v32zm0-256H32V64h32v32zm32 216v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h12v160h-12c-6.627 0-12 5.373-12 12v12H96zm128 136h-32v-32h32v32zm280-64h-12c-6.627 0-12 5.373-12 12v12H256v-12c0-6.627-5.373-12-12-12h-12v-24h88v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12v-88h88v12c0 6.627 5.373 12 12 12h12v160zm40 64h-32v-32h32v32zm0-256h-32v-32h32v32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faObjectUngroup = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPaperPlane.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPaperPlane.d.ts new file mode 100644 index 0000000000..8bedea6076 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPaperPlane.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPaperPlane: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPaperPlane.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPaperPlane.js new file mode 100644 index 0000000000..cfa2e73a8c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPaperPlane.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'paper-plane'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1d8'; +var svgPathData = 'M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPaperPlane = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPauseCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPauseCircle.d.ts new file mode 100644 index 0000000000..cd55dcd9f4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPauseCircle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPauseCircle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPauseCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPauseCircle.js new file mode 100644 index 0000000000..5b7f9200c5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPauseCircle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'pause-circle'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f28b'; +var svgPathData = 'M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm96-280v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16zm-112 0v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPauseCircle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPlayCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPlayCircle.d.ts new file mode 100644 index 0000000000..335f435875 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPlayCircle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPlayCircle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPlayCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPlayCircle.js new file mode 100644 index 0000000000..d826beebea --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPlayCircle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'play-circle'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f144'; +var svgPathData = 'M371.7 238l-176-107c-15.8-8.8-35.7 2.5-35.7 21v208c0 18.4 19.8 29.8 35.7 21l176-101c16.4-9.1 16.4-32.8 0-42zM504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPlayCircle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPlusSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPlusSquare.d.ts new file mode 100644 index 0000000000..75d6ce3b85 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPlusSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPlusSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPlusSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPlusSquare.js new file mode 100644 index 0000000000..8103c61d74 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faPlusSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'plus-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0fe'; +var svgPathData = 'M352 240v32c0 6.6-5.4 12-12 12h-88v88c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-88h-88c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h88v-88c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v88h88c6.6 0 12 5.4 12 12zm96-160v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPlusSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faQuestionCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faQuestionCircle.d.ts new file mode 100644 index 0000000000..daa1155d89 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faQuestionCircle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faQuestionCircle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faQuestionCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faQuestionCircle.js new file mode 100644 index 0000000000..7b1cb52703 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faQuestionCircle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'question-circle'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f059'; +var svgPathData = 'M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 448c-110.532 0-200-89.431-200-200 0-110.495 89.472-200 200-200 110.491 0 200 89.471 200 200 0 110.53-89.431 200-200 200zm107.244-255.2c0 67.052-72.421 68.084-72.421 92.863V300c0 6.627-5.373 12-12 12h-45.647c-6.627 0-12-5.373-12-12v-8.659c0-35.745 27.1-50.034 47.579-61.516 17.561-9.845 28.324-16.541 28.324-29.579 0-17.246-21.999-28.693-39.784-28.693-23.189 0-33.894 10.977-48.942 29.969-4.057 5.12-11.46 6.071-16.666 2.124l-27.824-21.098c-5.107-3.872-6.251-11.066-2.644-16.363C184.846 131.491 214.94 112 261.794 112c49.071 0 101.45 38.304 101.45 88.8zM298 368c0 23.159-18.841 42-42 42s-42-18.841-42-42 18.841-42 42-42 42 18.841 42 42z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faQuestionCircle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faRegistered.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faRegistered.d.ts new file mode 100644 index 0000000000..d68b255449 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faRegistered.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRegistered: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faRegistered.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faRegistered.js new file mode 100644 index 0000000000..c89f7bf640 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faRegistered.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'registered'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f25d'; +var svgPathData = 'M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm110.442-81.791c-53.046-96.284-50.25-91.468-53.271-96.085 24.267-13.879 39.482-41.563 39.482-73.176 0-52.503-30.247-85.252-101.498-85.252h-78.667c-6.617 0-12 5.383-12 12V380c0 6.617 5.383 12 12 12h38.568c6.617 0 12-5.383 12-12v-83.663h31.958l47.515 89.303a11.98 11.98 0 0 0 10.593 6.36h42.81c9.14 0 14.914-9.799 10.51-17.791zM256.933 239.906h-33.875v-64.14h27.377c32.417 0 38.929 12.133 38.929 31.709-.001 20.913-11.518 32.431-32.431 32.431z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRegistered = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSadCry.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSadCry.d.ts new file mode 100644 index 0000000000..50a4a6e1d6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSadCry.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSadCry: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSadCry.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSadCry.js new file mode 100644 index 0000000000..18fb7f69fa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSadCry.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'sad-cry'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f5b3'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm144 386.4V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v151.4C315.5 447 282.8 456 248 456s-67.5-9-96-24.6V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v114.4c-34.6-36-56-84.7-56-138.4 0-110.3 89.7-200 200-200s200 89.7 200 200c0 53.7-21.4 102.5-56 138.4zM205.8 234.5c4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.3 7.9 4.8 13.7 1.6zM344 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.5 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm-96 92c-30.9 0-56 28.7-56 64s25.1 64 56 64 56-28.7 56-64-25.1-64-56-64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSadCry = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSadTear.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSadTear.d.ts new file mode 100644 index 0000000000..4baefdb7c1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSadTear.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSadTear: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSadTear.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSadTear.js new file mode 100644 index 0000000000..ff05573aa9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSadTear.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'sad-tear'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f5b4'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm8-152c-13.2 0-24 10.8-24 24s10.8 24 24 24c23.8 0 46.3 10.5 61.6 28.8 8.1 9.8 23.2 11.9 33.8 3.1 10.2-8.5 11.6-23.6 3.1-33.8C330 320.8 294.1 304 256 304zm-88-64c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-165.6 98.8C151 290.1 126 325.4 126 342.9c0 22.7 18.8 41.1 42 41.1s42-18.4 42-41.1c0-17.5-25-52.8-36.4-68.1-2.8-3.7-8.4-3.7-11.2 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSadTear = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSave.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSave.d.ts new file mode 100644 index 0000000000..d7271164ce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSave.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSave: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSave.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSave.js new file mode 100644 index 0000000000..53e679d071 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSave.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'save'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0c7'; +var svgPathData = 'M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM272 80v80H144V80h128zm122 352H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h42v104c0 13.255 10.745 24 24 24h176c13.255 0 24-10.745 24-24V83.882l78.243 78.243a6 6 0 0 1 1.757 4.243V426a6 6 0 0 1-6 6zM224 232c-48.523 0-88 39.477-88 88s39.477 88 88 88 88-39.477 88-88-39.477-88-88-88zm0 128c-22.056 0-40-17.944-40-40s17.944-40 40-40 40 17.944 40 40-17.944 40-40 40z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSave = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faShareSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faShareSquare.d.ts new file mode 100644 index 0000000000..f228e930d4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faShareSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faShareSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faShareSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faShareSquare.js new file mode 100644 index 0000000000..560c2303a2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faShareSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'share-square'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f14d'; +var svgPathData = 'M561.938 158.06L417.94 14.092C387.926-15.922 336 5.097 336 48.032v57.198c-42.45 1.88-84.03 6.55-120.76 17.99-35.17 10.95-63.07 27.58-82.91 49.42C108.22 199.2 96 232.6 96 271.94c0 61.697 33.178 112.455 84.87 144.76 37.546 23.508 85.248-12.651 71.02-55.74-15.515-47.119-17.156-70.923 84.11-78.76V336c0 42.993 51.968 63.913 81.94 33.94l143.998-144c18.75-18.74 18.75-49.14 0-67.88zM384 336V232.16C255.309 234.082 166.492 255.35 206.31 376 176.79 357.55 144 324.08 144 271.94c0-109.334 129.14-118.947 240-119.85V48l144 144-144 144zm24.74 84.493a82.658 82.658 0 0 0 20.974-9.303c7.976-4.952 18.286.826 18.286 10.214V464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h132c6.627 0 12 5.373 12 12v4.486c0 4.917-2.987 9.369-7.569 11.152-13.702 5.331-26.396 11.537-38.05 18.585a12.138 12.138 0 0 1-6.28 1.777H54a6 6 0 0 0-6 6v340a6 6 0 0 0 6 6h340a6 6 0 0 0 6-6v-25.966c0-5.37 3.579-10.059 8.74-11.541z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faShareSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSmile.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSmile.d.ts new file mode 100644 index 0000000000..5113c06959 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSmile.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSmile: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSmile.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSmile.js new file mode 100644 index 0000000000..f0cdeededc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSmile.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'smile'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f118'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm4 72.6c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.1-8.4-25.3-7.1-33.8 3.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSmile = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSmileBeam.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSmileBeam.d.ts new file mode 100644 index 0000000000..0d82776cf2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSmileBeam.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSmileBeam: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSmileBeam.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSmileBeam.js new file mode 100644 index 0000000000..4a19d6f255 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSmileBeam.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'smile-beam'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f5b8'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm84-143.4c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.6-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.2-8.4-25.3-7.1-33.8 3.1zM136.5 211c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.4 1.1 7.4-.5 9.3-3.7l9.5-17zM328 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSmileBeam = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSmileWink.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSmileWink.d.ts new file mode 100644 index 0000000000..bf4e8574d1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSmileWink.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSmileWink: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSmileWink.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSmileWink.js new file mode 100644 index 0000000000..89d829379c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSmileWink.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'smile-wink'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f4da'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm117.8-146.4c-10.2-8.5-25.3-7.1-33.8 3.1-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-60c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSmileWink = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSnowflake.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSnowflake.d.ts new file mode 100644 index 0000000000..c6ed505076 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSnowflake.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSnowflake: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSnowflake.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSnowflake.js new file mode 100644 index 0000000000..69f31a8107 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSnowflake.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'snowflake'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f2dc'; +var svgPathData = 'M438.237 355.927l-66.574-38.54 59.448-10.327c5.846-1.375 10.609-5.183 13.458-10.13 2.48-4.307 3.506-9.478 2.524-14.651-2.11-11.115-12.686-18.039-23.621-15.467l-85.423 31.115L255.914 256l82.136-41.926 85.423 31.115c10.936 2.572 21.512-4.352 23.621-15.467 2.111-11.115-5.046-22.209-15.981-24.781l-59.448-10.327 66.573-38.54c9.54-5.523 12.615-18.092 6.867-28.074-5.748-9.982-18.14-13.596-27.68-8.074l-66.574 38.54 20.805-56.787c3.246-10.782-2.758-22.542-13.413-26.268-10.654-3.725-21.922 1.997-25.168 12.779l-15.838 89.735-72.423 41.926V136l69.585-58.621c7.689-8.21 6.997-20.856-1.548-28.245-8.545-7.391-21.705-6.723-29.394 1.486l-38.644 46.46V20c0-11.046-9.318-20-20.813-20s-20.813 8.954-20.813 20v77.08l-38.644-46.46c-7.689-8.21-20.849-8.876-29.394-1.486-8.544 7.389-9.236 20.035-1.547 28.245L203.187 136v83.853l-72.423-41.926-15.838-89.736c-3.247-10.782-14.515-16.504-25.169-12.779-10.656 3.725-16.659 15.486-13.413 26.268l20.805 56.787-66.573-38.54c-9.54-5.523-21.933-1.908-27.68 8.074s-2.673 22.551 6.867 28.074l66.574 38.54-59.449 10.328C5.953 207.515-1.202 218.609.907 229.724c2.11 11.114 12.686 18.038 23.622 15.466l85.422-31.115L192.086 256l-82.136 41.926-85.423-31.115c-10.936-2.572-21.511 4.352-23.622 15.466-2.109 11.113 5.046 22.209 15.981 24.781l59.449 10.328-66.574 38.54C.223 361.449-2.852 374.018 2.896 384s18.14 13.597 27.68 8.074l66.574-38.54-20.805 56.786c-1.735 5.764-.828 11.805 2.02 16.751 2.48 4.307 6.433 7.784 11.392 9.517 10.655 3.725 21.923-1.997 25.169-12.779l15.838-89.736 72.423-41.926V376l-69.585 58.621c-7.69 8.21-6.997 20.855 1.547 28.245 8.544 7.388 21.705 6.723 29.394-1.487l38.644-46.46V492c0 11.046 9.318 20 20.813 20s20.813-8.954 20.813-20v-77.081l38.644 46.46c4.111 4.389 9.782 6.621 15.478 6.621 4.96 0 9.939-1.694 13.916-5.134 8.545-7.39 9.237-20.035 1.548-28.245L244.813 376v-83.853l72.423 41.926 15.838 89.736c3.246 10.782 14.514 16.504 25.168 12.779 10.653-3.726 16.659-15.487 13.412-26.268l-20.805-56.787 66.574 38.54c9.54 5.523 21.933 1.908 27.68-8.074 5.749-9.981 2.675-22.55-6.866-28.072z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSnowflake = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSquare.d.ts new file mode 100644 index 0000000000..f1b263baac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSquare.js new file mode 100644 index 0000000000..8eeebe7890 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0c8'; +var svgPathData = 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h340c3.3 0 6 2.7 6 6v340c0 3.3-2.7 6-6 6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStar.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStar.d.ts new file mode 100644 index 0000000000..5da537708e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStar.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStar: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStar.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStar.js new file mode 100644 index 0000000000..f4c8e42562 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStar.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'star'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f005'; +var svgPathData = 'M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStar = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStarHalf.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStarHalf.d.ts new file mode 100644 index 0000000000..3e5c47e153 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStarHalf.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStarHalf: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStarHalf.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStarHalf.js new file mode 100644 index 0000000000..c4174646ea --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStarHalf.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'star-half'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f089'; +var svgPathData = 'M288 385.3l-124.3 65.4 23.7-138.4-100.6-98 139-20.2 62.2-126V0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6v-54.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStarHalf = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStickyNote.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStickyNote.d.ts new file mode 100644 index 0000000000..ccbaeea119 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStickyNote.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStickyNote: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStickyNote.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStickyNote.js new file mode 100644 index 0000000000..e7a8bbcd46 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStickyNote.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'sticky-note'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f249'; +var svgPathData = 'M448 348.106V80c0-26.51-21.49-48-48-48H48C21.49 32 0 53.49 0 80v351.988c0 26.51 21.49 48 48 48h268.118a48 48 0 0 0 33.941-14.059l83.882-83.882A48 48 0 0 0 448 348.106zm-128 80v-76.118h76.118L320 428.106zM400 80v223.988H296c-13.255 0-24 10.745-24 24v104H48V80h352z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStickyNote = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStopCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStopCircle.d.ts new file mode 100644 index 0000000000..0e0be3e3ee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStopCircle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStopCircle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStopCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStopCircle.js new file mode 100644 index 0000000000..a4ce415489 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faStopCircle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'stop-circle'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f28d'; +var svgPathData = 'M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm296-80v160c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStopCircle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSun.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSun.d.ts new file mode 100644 index 0000000000..585b6fb874 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSun.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSun: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSun.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSun.js new file mode 100644 index 0000000000..2f9f88e6a9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSun.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'sun'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f185'; +var svgPathData = 'M220.116 487.936l-20.213-49.425a3.992 3.992 0 0 0-5.808-1.886l-45.404 28.104c-29.466 18.24-66.295-8.519-58.054-42.179l12.699-51.865a3.993 3.993 0 0 0-3.59-4.941l-53.251-3.951c-34.554-2.562-48.632-45.855-22.174-68.247L65.08 259.05a3.992 3.992 0 0 0 0-6.106l-40.76-34.497c-26.45-22.384-12.39-65.682 22.174-68.246l53.251-3.951a3.993 3.993 0 0 0 3.59-4.941L90.637 89.443c-8.239-33.656 28.581-60.42 58.054-42.179l45.403 28.104a3.993 3.993 0 0 0 5.808-1.887l20.213-49.425c13.116-32.071 58.638-32.081 71.758 0l20.212 49.424a3.994 3.994 0 0 0 5.809 1.887l45.403-28.104c29.464-18.236 66.297 8.513 58.054 42.179l-12.699 51.865a3.995 3.995 0 0 0 3.59 4.941l53.251 3.951c34.553 2.563 48.633 45.854 22.175 68.246l-40.76 34.497a3.993 3.993 0 0 0 0 6.107l40.76 34.496c26.511 22.441 12.322 65.689-22.175 68.247l-53.251 3.951a3.993 3.993 0 0 0-3.589 4.942l12.698 51.864c8.241 33.658-28.583 60.421-58.054 42.18l-45.403-28.104a3.994 3.994 0 0 0-5.809 1.887l-20.212 49.424c-13.159 32.178-58.675 31.993-71.757 0zm16.814-64.568l19.064 46.616 19.064-46.615c10.308-25.2 40.778-35.066 63.892-20.759l42.822 26.507-11.976-48.919c-6.475-26.444 12.38-52.339 39.487-54.349l50.226-3.726-38.444-32.536c-20.782-17.591-20.747-49.621.001-67.18l38.442-32.536-50.225-3.727c-27.151-2.015-45.95-27.948-39.488-54.349l11.978-48.919-42.823 26.507c-23.151 14.327-53.603 4.4-63.892-20.76l-19.064-46.615-19.064 46.617c-10.305 25.198-40.778 35.066-63.891 20.76l-42.823-26.508 11.977 48.918c6.474 26.446-12.381 52.338-39.488 54.35l-50.224 3.726 38.443 32.537c20.782 17.588 20.747 49.619 0 67.178L52.48 322.123l50.226 3.726c27.151 2.014 45.95 27.947 39.487 54.349l-11.977 48.919 42.823-26.507c23.188-14.355 53.622-4.352 63.891 20.758zM256 384c-70.58 0-128-57.421-128-128 0-70.58 57.42-128 128-128 70.579 0 128 57.42 128 128 0 70.579-57.421 128-128 128zm0-208c-44.112 0-80 35.888-80 80s35.888 80 80 80 80-35.888 80-80-35.888-80-80-80z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSun = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSurprise.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSurprise.d.ts new file mode 100644 index 0000000000..56c5d7abd9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSurprise.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSurprise: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSurprise.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSurprise.js new file mode 100644 index 0000000000..388bf27378 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faSurprise.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'surprise'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f5c2'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-176c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm-48-72c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSurprise = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faThumbsDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faThumbsDown.d.ts new file mode 100644 index 0000000000..c285ede2cb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faThumbsDown.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faThumbsDown: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faThumbsDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faThumbsDown.js new file mode 100644 index 0000000000..50b0bacf99 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faThumbsDown.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'thumbs-down'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f165'; +var svgPathData = 'M466.27 225.31c4.674-22.647.864-44.538-8.99-62.99 2.958-23.868-4.021-48.565-17.34-66.99C438.986 39.423 404.117 0 327 0c-7 0-15 .01-22.22.01C201.195.01 168.997 40 128 40h-10.845c-5.64-4.975-13.042-8-21.155-8H32C14.327 32 0 46.327 0 64v240c0 17.673 14.327 32 32 32h64c11.842 0 22.175-6.438 27.708-16h7.052c19.146 16.953 46.013 60.653 68.76 83.4 13.667 13.667 10.153 108.6 71.76 108.6 57.58 0 95.27-31.936 95.27-104.73 0-18.41-3.93-33.73-8.85-46.54h36.48c48.602 0 85.82-41.565 85.82-85.58 0-19.15-4.96-34.99-13.73-49.84zM64 296c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm330.18 16.73H290.19c0 37.82 28.36 55.37 28.36 94.54 0 23.75 0 56.73-47.27 56.73-18.91-18.91-9.46-66.18-37.82-94.54C206.9 342.89 167.28 272 138.92 272H128V85.83c53.611 0 100.001-37.82 171.64-37.82h37.82c35.512 0 60.82 17.12 53.12 65.9 15.2 8.16 26.5 36.44 13.94 57.57 21.581 20.384 18.699 51.065 5.21 65.62 9.45 0 22.36 18.91 22.27 37.81-.09 18.91-16.71 37.82-37.82 37.82z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faThumbsDown = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faThumbsUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faThumbsUp.d.ts new file mode 100644 index 0000000000..4d77850fb1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faThumbsUp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faThumbsUp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faThumbsUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faThumbsUp.js new file mode 100644 index 0000000000..4b6d8417da --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faThumbsUp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'thumbs-up'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f164'; +var svgPathData = 'M466.27 286.69C475.04 271.84 480 256 480 236.85c0-44.015-37.218-85.58-85.82-85.58H357.7c4.92-12.81 8.85-28.13 8.85-46.54C366.55 31.936 328.86 0 271.28 0c-61.607 0-58.093 94.933-71.76 108.6-22.747 22.747-49.615 66.447-68.76 83.4H32c-17.673 0-32 14.327-32 32v240c0 17.673 14.327 32 32 32h64c14.893 0 27.408-10.174 30.978-23.95 44.509 1.001 75.06 39.94 177.802 39.94 7.22 0 15.22.01 22.22.01 77.117 0 111.986-39.423 112.94-95.33 13.319-18.425 20.299-43.122 17.34-66.99 9.854-18.452 13.664-40.343 8.99-62.99zm-61.75 53.83c12.56 21.13 1.26 49.41-13.94 57.57 7.7 48.78-17.608 65.9-53.12 65.9h-37.82c-71.639 0-118.029-37.82-171.64-37.82V240h10.92c28.36 0 67.98-70.89 94.54-97.46 28.36-28.36 18.91-75.63 37.82-94.54 47.27 0 47.27 32.98 47.27 56.73 0 39.17-28.36 56.72-28.36 94.54h103.99c21.11 0 37.73 18.91 37.82 37.82.09 18.9-12.82 37.81-22.27 37.81 13.489 14.555 16.371 45.236-5.21 65.62zM88 432c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faThumbsUp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faTimesCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faTimesCircle.d.ts new file mode 100644 index 0000000000..9f12a6eb6a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faTimesCircle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTimesCircle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faTimesCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faTimesCircle.js new file mode 100644 index 0000000000..15e69fdb5d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faTimesCircle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'times-circle'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f057'; +var svgPathData = 'M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm101.8-262.2L295.6 256l62.2 62.2c4.7 4.7 4.7 12.3 0 17l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L256 295.6l-62.2 62.2c-4.7 4.7-12.3 4.7-17 0l-22.6-22.6c-4.7-4.7-4.7-12.3 0-17l62.2-62.2-62.2-62.2c-4.7-4.7-4.7-12.3 0-17l22.6-22.6c4.7-4.7 12.3-4.7 17 0l62.2 62.2 62.2-62.2c4.7-4.7 12.3-4.7 17 0l22.6 22.6c4.7 4.7 4.7 12.3 0 17z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTimesCircle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faTired.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faTired.d.ts new file mode 100644 index 0000000000..020f6bf859 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faTired.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTired: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faTired.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faTired.js new file mode 100644 index 0000000000..749c6b86fd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faTired.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'tired'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f5c8'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm129.1-303.8c-3.8-4.4-10.3-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.8 1.6 15.3-2.5 3.8-4.5 3.9-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zM220 208c0-4.2-2.2-8.1-5.8-10.3l-80-48c-5-3-11.5-1.9-15.3 2.5-3.8 4.5-3.9 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.5 4.1 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3zm28 64c-45.4 0-100.9 38.3-107.8 93.3-1.5 11.8 6.9 21.6 15.5 17.9C178.4 373.5 212 368 248 368s69.6 5.5 92.3 15.2c8.5 3.7 17-6 15.5-17.9-6.9-55-62.4-93.3-107.8-93.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTired = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faTrashAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faTrashAlt.d.ts new file mode 100644 index 0000000000..8fbdcb26ba --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faTrashAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTrashAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faTrashAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faTrashAlt.js new file mode 100644 index 0000000000..bf0749c4af --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faTrashAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'trash-alt'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f2ed'; +var svgPathData = 'M192 188v216c0 6.627-5.373 12-12 12h-24c-6.627 0-12-5.373-12-12V188c0-6.627 5.373-12 12-12h24c6.627 0 12 5.373 12 12zm100-12h-24c-6.627 0-12 5.373-12 12v216c0 6.627 5.373 12 12 12h24c6.627 0 12-5.373 12-12V188c0-6.627-5.373-12-12-12zm132-96c13.255 0 24 10.745 24 24v12c0 6.627-5.373 12-12 12h-20v336c0 26.51-21.49 48-48 48H80c-26.51 0-48-21.49-48-48V128H12c-6.627 0-12-5.373-12-12v-12c0-13.255 10.745-24 24-24h74.411l34.018-56.696A48 48 0 0 1 173.589 0h100.823a48 48 0 0 1 41.16 23.304L349.589 80H424zm-269.611 0h139.223L276.16 50.913A6 6 0 0 0 271.015 48h-94.028a6 6 0 0 0-5.145 2.913L154.389 80zM368 128H80v330a6 6 0 0 0 6 6h276a6 6 0 0 0 6-6V128z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTrashAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faUser.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faUser.d.ts new file mode 100644 index 0000000000..7d5312b1b6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faUser.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUser: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faUser.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faUser.js new file mode 100644 index 0000000000..1008e41268 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faUser.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'user'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f007'; +var svgPathData = 'M313.6 304c-28.7 0-42.5 16-89.6 16-47.1 0-60.8-16-89.6-16C60.2 304 0 364.2 0 438.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-25.6c0-74.2-60.2-134.4-134.4-134.4zM400 464H48v-25.6c0-47.6 38.8-86.4 86.4-86.4 14.6 0 38.3 16 89.6 16 51.7 0 74.9-16 89.6-16 47.6 0 86.4 38.8 86.4 86.4V464zM224 288c79.5 0 144-64.5 144-144S303.5 0 224 0 80 64.5 80 144s64.5 144 144 144zm0-240c52.9 0 96 43.1 96 96s-43.1 96-96 96-96-43.1-96-96 43.1-96 96-96z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUser = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faUserCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faUserCircle.d.ts new file mode 100644 index 0000000000..4079ffc406 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faUserCircle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUserCircle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faUserCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faUserCircle.js new file mode 100644 index 0000000000..2bfdbfdf9d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faUserCircle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'user-circle'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f2bd'; +var svgPathData = 'M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUserCircle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowClose.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowClose.d.ts new file mode 100644 index 0000000000..77f1814950 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowClose.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWindowClose: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowClose.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowClose.js new file mode 100644 index 0000000000..a5032788ed --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowClose.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'window-close'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f410'; +var svgPathData = 'M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v340zM356.5 194.6L295.1 256l61.4 61.4c4.6 4.6 4.6 12.1 0 16.8l-22.3 22.3c-4.6 4.6-12.1 4.6-16.8 0L256 295.1l-61.4 61.4c-4.6 4.6-12.1 4.6-16.8 0l-22.3-22.3c-4.6-4.6-4.6-12.1 0-16.8l61.4-61.4-61.4-61.4c-4.6-4.6-4.6-12.1 0-16.8l22.3-22.3c4.6-4.6 12.1-4.6 16.8 0l61.4 61.4 61.4-61.4c4.6-4.6 12.1-4.6 16.8 0l22.3 22.3c4.7 4.6 4.7 12.1 0 16.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWindowClose = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowMaximize.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowMaximize.d.ts new file mode 100644 index 0000000000..19be5cc5c9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowMaximize.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWindowMaximize: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowMaximize.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowMaximize.js new file mode 100644 index 0000000000..d73bdb6668 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowMaximize.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'window-maximize'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2d0'; +var svgPathData = 'M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V192h416v234z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWindowMaximize = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowMinimize.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowMinimize.d.ts new file mode 100644 index 0000000000..af46bbc2c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowMinimize.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWindowMinimize: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowMinimize.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowMinimize.js new file mode 100644 index 0000000000..bf96a6aa88 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowMinimize.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'window-minimize'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2d1'; +var svgPathData = 'M480 480H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h448c17.7 0 32 14.3 32 32s-14.3 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWindowMinimize = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowRestore.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowRestore.d.ts new file mode 100644 index 0000000000..c79b53ca09 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowRestore.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWindowRestore: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowRestore.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowRestore.js new file mode 100644 index 0000000000..be1f1bcc85 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/faWindowRestore.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'far'; +var iconName = 'window-restore'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2d2'; +var svgPathData = 'M464 0H144c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-96 464H48V256h320v208zm96-96h-48V144c0-26.5-21.5-48-48-48H144V48h320v320z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWindowRestore = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/index.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/index.d.ts new file mode 100644 index 0000000000..6306255fd7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/index.d.ts @@ -0,0 +1,156 @@ +import { IconDefinition, IconLookup, IconName, IconPrefix, IconPack } from '@fortawesome/fontawesome-common-types'; +export { IconDefinition, IconLookup, IconName, IconPrefix, IconPack } from '@fortawesome/fontawesome-common-types'; +export const prefix: IconPrefix; +export const far: IconPack; +export const faAddressBook: IconDefinition; +export const faAddressCard: IconDefinition; +export const faAngry: IconDefinition; +export const faArrowAltCircleDown: IconDefinition; +export const faArrowAltCircleLeft: IconDefinition; +export const faArrowAltCircleRight: IconDefinition; +export const faArrowAltCircleUp: IconDefinition; +export const faBell: IconDefinition; +export const faBellSlash: IconDefinition; +export const faBookmark: IconDefinition; +export const faBuilding: IconDefinition; +export const faCalendar: IconDefinition; +export const faCalendarAlt: IconDefinition; +export const faCalendarCheck: IconDefinition; +export const faCalendarMinus: IconDefinition; +export const faCalendarPlus: IconDefinition; +export const faCalendarTimes: IconDefinition; +export const faCaretSquareDown: IconDefinition; +export const faCaretSquareLeft: IconDefinition; +export const faCaretSquareRight: IconDefinition; +export const faCaretSquareUp: IconDefinition; +export const faChartBar: IconDefinition; +export const faCheckCircle: IconDefinition; +export const faCheckSquare: IconDefinition; +export const faCircle: IconDefinition; +export const faClipboard: IconDefinition; +export const faClock: IconDefinition; +export const faClone: IconDefinition; +export const faClosedCaptioning: IconDefinition; +export const faComment: IconDefinition; +export const faCommentAlt: IconDefinition; +export const faCommentDots: IconDefinition; +export const faComments: IconDefinition; +export const faCompass: IconDefinition; +export const faCopy: IconDefinition; +export const faCopyright: IconDefinition; +export const faCreditCard: IconDefinition; +export const faDizzy: IconDefinition; +export const faDotCircle: IconDefinition; +export const faEdit: IconDefinition; +export const faEnvelope: IconDefinition; +export const faEnvelopeOpen: IconDefinition; +export const faEye: IconDefinition; +export const faEyeSlash: IconDefinition; +export const faFile: IconDefinition; +export const faFileAlt: IconDefinition; +export const faFileArchive: IconDefinition; +export const faFileAudio: IconDefinition; +export const faFileCode: IconDefinition; +export const faFileExcel: IconDefinition; +export const faFileImage: IconDefinition; +export const faFilePdf: IconDefinition; +export const faFilePowerpoint: IconDefinition; +export const faFileVideo: IconDefinition; +export const faFileWord: IconDefinition; +export const faFlag: IconDefinition; +export const faFlushed: IconDefinition; +export const faFolder: IconDefinition; +export const faFolderOpen: IconDefinition; +export const faFontAwesomeLogoFull: IconDefinition; +export const faFrown: IconDefinition; +export const faFrownOpen: IconDefinition; +export const faFutbol: IconDefinition; +export const faGem: IconDefinition; +export const faGrimace: IconDefinition; +export const faGrin: IconDefinition; +export const faGrinAlt: IconDefinition; +export const faGrinBeam: IconDefinition; +export const faGrinBeamSweat: IconDefinition; +export const faGrinHearts: IconDefinition; +export const faGrinSquint: IconDefinition; +export const faGrinSquintTears: IconDefinition; +export const faGrinStars: IconDefinition; +export const faGrinTears: IconDefinition; +export const faGrinTongue: IconDefinition; +export const faGrinTongueSquint: IconDefinition; +export const faGrinTongueWink: IconDefinition; +export const faGrinWink: IconDefinition; +export const faHandLizard: IconDefinition; +export const faHandPaper: IconDefinition; +export const faHandPeace: IconDefinition; +export const faHandPointDown: IconDefinition; +export const faHandPointLeft: IconDefinition; +export const faHandPointRight: IconDefinition; +export const faHandPointUp: IconDefinition; +export const faHandPointer: IconDefinition; +export const faHandRock: IconDefinition; +export const faHandScissors: IconDefinition; +export const faHandSpock: IconDefinition; +export const faHandshake: IconDefinition; +export const faHdd: IconDefinition; +export const faHeart: IconDefinition; +export const faHospital: IconDefinition; +export const faHourglass: IconDefinition; +export const faIdBadge: IconDefinition; +export const faIdCard: IconDefinition; +export const faImage: IconDefinition; +export const faImages: IconDefinition; +export const faKeyboard: IconDefinition; +export const faKiss: IconDefinition; +export const faKissBeam: IconDefinition; +export const faKissWinkHeart: IconDefinition; +export const faLaugh: IconDefinition; +export const faLaughBeam: IconDefinition; +export const faLaughSquint: IconDefinition; +export const faLaughWink: IconDefinition; +export const faLemon: IconDefinition; +export const faLifeRing: IconDefinition; +export const faLightbulb: IconDefinition; +export const faListAlt: IconDefinition; +export const faMap: IconDefinition; +export const faMeh: IconDefinition; +export const faMehBlank: IconDefinition; +export const faMehRollingEyes: IconDefinition; +export const faMinusSquare: IconDefinition; +export const faMoneyBillAlt: IconDefinition; +export const faMoon: IconDefinition; +export const faNewspaper: IconDefinition; +export const faObjectGroup: IconDefinition; +export const faObjectUngroup: IconDefinition; +export const faPaperPlane: IconDefinition; +export const faPauseCircle: IconDefinition; +export const faPlayCircle: IconDefinition; +export const faPlusSquare: IconDefinition; +export const faQuestionCircle: IconDefinition; +export const faRegistered: IconDefinition; +export const faSadCry: IconDefinition; +export const faSadTear: IconDefinition; +export const faSave: IconDefinition; +export const faShareSquare: IconDefinition; +export const faSmile: IconDefinition; +export const faSmileBeam: IconDefinition; +export const faSmileWink: IconDefinition; +export const faSnowflake: IconDefinition; +export const faSquare: IconDefinition; +export const faStar: IconDefinition; +export const faStarHalf: IconDefinition; +export const faStickyNote: IconDefinition; +export const faStopCircle: IconDefinition; +export const faSun: IconDefinition; +export const faSurprise: IconDefinition; +export const faThumbsDown: IconDefinition; +export const faThumbsUp: IconDefinition; +export const faTimesCircle: IconDefinition; +export const faTired: IconDefinition; +export const faTrashAlt: IconDefinition; +export const faUser: IconDefinition; +export const faUserCircle: IconDefinition; +export const faWindowClose: IconDefinition; +export const faWindowMaximize: IconDefinition; +export const faWindowMinimize: IconDefinition; +export const faWindowRestore: IconDefinition; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/index.es.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/index.es.js new file mode 100644 index 0000000000..ead2bc2f63 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/index.es.js @@ -0,0 +1,313 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +var prefix = "far"; +var faAddressBook = { prefix: 'far', iconName: 'address-book', icon: [448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-68 304H48V48h320v416zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"] }; +var faAddressCard = { prefix: 'far', iconName: 'address-card', icon: [576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H48V80h480v352zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2zM360 320h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8z"] }; +var faAngry = { prefix: 'far', iconName: 'angry', icon: [496, 512, [], "f556", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-144c-33.6 0-65.2 14.8-86.8 40.6-8.5 10.2-7.1 25.3 3.1 33.8s25.3 7.2 33.8-3c24.8-29.7 75-29.7 99.8 0 8.1 9.7 23.2 11.9 33.8 3 10.2-8.5 11.5-23.6 3.1-33.8-21.6-25.8-53.2-40.6-86.8-40.6zm-48-72c10.3 0 19.9-6.7 23-17.1 3.8-12.7-3.4-26.1-16.1-29.9l-80-24c-12.8-3.9-26.1 3.4-29.9 16.1-3.8 12.7 3.4 26.1 16.1 29.9l28.2 8.5c-3.1 4.9-5.3 10.4-5.3 16.6 0 17.7 14.3 32 32 32s32-14.4 32-32.1zm199-54.9c-3.8-12.7-17.1-19.9-29.9-16.1l-80 24c-12.7 3.8-19.9 17.2-16.1 29.9 3.1 10.4 12.7 17.1 23 17.1 0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.2-2.2-11.7-5.3-16.6l28.2-8.5c12.7-3.7 19.9-17.1 16.1-29.8z"] }; +var faArrowAltCircleDown = { prefix: 'far', iconName: 'arrow-alt-circle-down', icon: [512, 512, [], "f358", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm-32-316v116h-67c-10.7 0-16 12.9-8.5 20.5l99 99c4.7 4.7 12.3 4.7 17 0l99-99c7.6-7.6 2.2-20.5-8.5-20.5h-67V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12z"] }; +var faArrowAltCircleLeft = { prefix: 'far', iconName: 'arrow-alt-circle-left', icon: [512, 512, [], "f359", "M8 256c0 137 111 248 248 248s248-111 248-248S393 8 256 8 8 119 8 256zm448 0c0 110.5-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56s200 89.5 200 200zm-72-20v40c0 6.6-5.4 12-12 12H256v67c0 10.7-12.9 16-20.5 8.5l-99-99c-4.7-4.7-4.7-12.3 0-17l99-99c7.6-7.6 20.5-2.2 20.5 8.5v67h116c6.6 0 12 5.4 12 12z"] }; +var faArrowAltCircleRight = { prefix: 'far', iconName: 'arrow-alt-circle-right', icon: [512, 512, [], "f35a", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z"] }; +var faArrowAltCircleUp = { prefix: 'far', iconName: 'arrow-alt-circle-up', icon: [512, 512, [], "f35b", "M256 504c137 0 248-111 248-248S393 8 256 8 8 119 8 256s111 248 248 248zm0-448c110.5 0 200 89.5 200 200s-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56zm20 328h-40c-6.6 0-12-5.4-12-12V256h-67c-10.7 0-16-12.9-8.5-20.5l99-99c4.7-4.7 12.3-4.7 17 0l99 99c7.6 7.6 2.2 20.5-8.5 20.5h-67v116c0 6.6-5.4 12-12 12z"] }; +var faBell = { prefix: 'far', iconName: 'bell', icon: [448, 512, [], "f0f3", "M425.403 330.939c-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.843 31.843 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095C118.101 62.783 57.143 131.831 57.143 214.857c0 81.933-17.551 99.292-34.543 116.078C-25.496 378.441 9.726 448 66.919 448H160c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h93.08c57.19 0 92.415-69.583 44.323-117.061zM224 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm157.092-72H66.9c-16.762 0-25.135-20.39-13.334-32.191 28.585-28.585 51.577-55.724 51.577-152.952C105.143 149.319 158.462 96 224 96s118.857 53.319 118.857 118.857c0 97.65 23.221 124.574 51.568 152.952C406.278 379.661 397.783 400 381.092 400z"] }; +var faBellSlash = { prefix: 'far', iconName: 'bell-slash', icon: [576, 512, [], "f1f6", "M130.9 400c-16.762 0-25.135-20.39-13.334-32.191 25.226-25.226 46.094-49.338 50.649-121.48l-46.777-41.274a168.48 168.48 0 0 0-.296 9.802c0 81.933-17.551 99.292-34.543 116.078C38.504 378.441 73.726 448 130.919 448H224c0 35.346 28.654 64 64 64s64-28.654 64-64h44.777l-54.4-48H130.9zM288 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm283.867.553l-67.931-59.571c13.104-24.118 11.524-56.318-14.532-82.042-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.848 31.848 0 0 0 320 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095c-41.471 6.618-77.891 28.571-103.249 59.841L36.459 3.037c-5.058-4.436-12.777-3.956-17.24 1.071L3.056 22.313C-1.407 27.34-.925 35.012 4.134 39.447l535.408 469.516c5.058 4.436 12.777 3.956 17.24-1.071l16.163-18.205c4.462-5.027 3.98-12.699-1.078-17.134zM288 96c65.538 0 118.857 53.319 118.857 118.857 0 97.65 23.221 124.574 51.568 152.952 2.908 2.908 4.573 6.328 5.209 9.832L194.482 141.612C216.258 113.867 250.075 96 288 96z"] }; +var faBookmark = { prefix: 'far', iconName: 'bookmark', icon: [384, 512, [], "f02e", "M336 0H48C21.49 0 0 21.49 0 48v464l192-112 192 112V48c0-26.51-21.49-48-48-48zm0 428.43l-144-84-144 84V54a6 6 0 0 1 6-6h276c3.314 0 6 2.683 6 5.996V428.43z"] }; +var faBuilding = { prefix: 'far', iconName: 'building', icon: [448, 512, [], "f1ad", "M128 148v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12zm140 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-128 96h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm128 0h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-76 84v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm76 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm180 124v36H0v-36c0-6.6 5.4-12 12-12h19.5V24c0-13.3 10.7-24 24-24h337c13.3 0 24 10.7 24 24v440H436c6.6 0 12 5.4 12 12zM79.5 463H192v-67c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v67h112.5V49L80 48l-.5 415z"] }; +var faCalendar = { prefix: 'far', iconName: 'calendar', icon: [448, 512, [], "f133", "M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z"] }; +var faCalendarAlt = { prefix: 'far', iconName: 'calendar-alt', icon: [448, 512, [], "f073", "M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCalendarCheck = { prefix: 'far', iconName: 'calendar-check', icon: [448, 512, [], "f274", "M400 64h-48V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H160V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V160h352v298a6 6 0 0 1-6 6zm-52.849-200.65L198.842 404.519c-4.705 4.667-12.303 4.637-16.971-.068l-75.091-75.699c-4.667-4.705-4.637-12.303.068-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l44.104 44.461 111.072-110.181c4.705-4.667 12.303-4.637 16.971.068l22.536 22.718c4.667 4.705 4.636 12.303-.069 16.97z"] }; +var faCalendarMinus = { prefix: 'far', iconName: 'calendar-minus', icon: [448, 512, [], "f272", "M124 328c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H124zm324-216v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCalendarPlus = { prefix: 'far', iconName: 'calendar-plus', icon: [448, 512, [], "f271", "M336 292v24c0 6.6-5.4 12-12 12h-76v76c0 6.6-5.4 12-12 12h-24c-6.6 0-12-5.4-12-12v-76h-76c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h76v-76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v76h76c6.6 0 12 5.4 12 12zm112-180v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCalendarTimes = { prefix: 'far', iconName: 'calendar-times', icon: [448, 512, [], "f273", "M311.7 374.7l-17 17c-4.7 4.7-12.3 4.7-17 0L224 337.9l-53.7 53.7c-4.7 4.7-12.3 4.7-17 0l-17-17c-4.7-4.7-4.7-12.3 0-17l53.7-53.7-53.7-53.7c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0l53.7 53.7 53.7-53.7c4.7-4.7 12.3-4.7 17 0l17 17c4.7 4.7 4.7 12.3 0 17L257.9 304l53.7 53.7c4.8 4.7 4.8 12.3.1 17zM448 112v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCaretSquareDown = { prefix: 'far', iconName: 'caret-square-down', icon: [448, 512, [], "f150", "M125.1 208h197.8c10.7 0 16.1 13 8.5 20.5l-98.9 98.3c-4.7 4.7-12.2 4.7-16.9 0l-98.9-98.3c-7.7-7.5-2.3-20.5 8.4-20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCaretSquareLeft = { prefix: 'far', iconName: 'caret-square-left', icon: [448, 512, [], "f191", "M272 157.1v197.8c0 10.7-13 16.1-20.5 8.5l-98.3-98.9c-4.7-4.7-4.7-12.2 0-16.9l98.3-98.9c7.5-7.7 20.5-2.3 20.5 8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCaretSquareRight = { prefix: 'far', iconName: 'caret-square-right', icon: [448, 512, [], "f152", "M176 354.9V157.1c0-10.7 13-16.1 20.5-8.5l98.3 98.9c4.7 4.7 4.7 12.2 0 16.9l-98.3 98.9c-7.5 7.7-20.5 2.3-20.5-8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCaretSquareUp = { prefix: 'far', iconName: 'caret-square-up', icon: [448, 512, [], "f151", "M322.9 304H125.1c-10.7 0-16.1-13-8.5-20.5l98.9-98.3c4.7-4.7 12.2-4.7 16.9 0l98.9 98.3c7.7 7.5 2.3 20.5-8.4 20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faChartBar = { prefix: 'far', iconName: 'chart-bar', icon: [512, 512, [], "f080", "M500 400c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v324h452zm-356-60v-72c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V140c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V204c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V108c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12z"] }; +var faCheckCircle = { prefix: 'far', iconName: 'check-circle', icon: [512, 512, [], "f058", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"] }; +var faCheckSquare = { prefix: 'far', iconName: 'check-square', icon: [448, 512, [], "f14a", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm0 400H48V80h352v352zm-35.864-241.724L191.547 361.48c-4.705 4.667-12.303 4.637-16.97-.068l-90.781-91.516c-4.667-4.705-4.637-12.303.069-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l59.792 60.277 141.352-140.216c4.705-4.667 12.303-4.637 16.97.068l22.536 22.718c4.667 4.706 4.637 12.304-.068 16.971z"] }; +var faCircle = { prefix: 'far', iconName: 'circle', icon: [512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z"] }; +var faClipboard = { prefix: 'far', iconName: 'clipboard', icon: [384, 512, [], "f328", "M336 64h-80c0-35.29-28.71-64-64-64s-64 28.71-64 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h42v36c0 6.627 5.373 12 12 12h168c6.627 0 12-5.373 12-12v-36h42a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zM192 40c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24"] }; +var faClock = { prefix: 'far', iconName: 'clock', icon: [512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"] }; +var faClone = { prefix: 'far', iconName: 'clone', icon: [512, 512, [], "f24d", "M464 0H144c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h320c26.51 0 48-21.49 48-48v-48h48c26.51 0 48-21.49 48-48V48c0-26.51-21.49-48-48-48zM362 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h42v224c0 26.51 21.49 48 48 48h224v42a6 6 0 0 1-6 6zm96-96H150a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h308a6 6 0 0 1 6 6v308a6 6 0 0 1-6 6z"] }; +var faClosedCaptioning = { prefix: 'far', iconName: 'closed-captioning', icon: [512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 336H54c-3.3 0-6-2.7-6-6V118c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v276c0 3.3-2.7 6-6 6zm-211.1-85.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7zm190.4 0c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.9-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 220.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7z"] }; +var faComment = { prefix: 'far', iconName: 'comment', icon: [512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"] }; +var faCommentAlt = { prefix: 'far', iconName: 'comment-alt', icon: [512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 7.1 5.8 12 12 12 2.4 0 4.9-.7 7.1-2.4L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm16 352c0 8.8-7.2 16-16 16H288l-12.8 9.6L208 428v-60H64c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h384c8.8 0 16 7.2 16 16v288z"] }; +var faCommentDots = { prefix: 'far', iconName: 'comment-dots', icon: [512, 512, [], "f4ad", "M144 208c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"] }; +var faComments = { prefix: 'far', iconName: 'comments', icon: [576, 512, [], "f086", "M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"] }; +var faCompass = { prefix: 'far', iconName: 'compass', icon: [512, 512, [], "f14e", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm91.326-312.131l-33.359 137.779a24.005 24.005 0 0 1-6.772 11.729l-102.64 97.779c-17.104 16.293-45.56.434-39.88-23.024l33.359-137.779a23.997 23.997 0 0 1 6.772-11.729l102.642-97.779c17.285-16.47 45.494-.175 39.878 23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; +var faCopy = { prefix: 'far', iconName: 'copy', icon: [448, 512, [], "f0c5", "M433.941 65.941l-51.882-51.882A48 48 0 0 0 348.118 0H176c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48v-48h80c26.51 0 48-21.49 48-48V99.882a48 48 0 0 0-14.059-33.941zM266 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h74v224c0 26.51 21.49 48 48 48h96v42a6 6 0 0 1-6 6zm128-96H182a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h106v88c0 13.255 10.745 24 24 24h88v202a6 6 0 0 1-6 6zm6-256h-64V48h9.632c1.591 0 3.117.632 4.243 1.757l48.368 48.368a6 6 0 0 1 1.757 4.243V112z"] }; +var faCopyright = { prefix: 'far', iconName: 'copyright', icon: [512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm107.351-101.064c-9.614 9.712-45.53 41.396-104.065 41.396-82.43 0-140.484-61.425-140.484-141.567 0-79.152 60.275-139.401 139.762-139.401 55.531 0 88.738 26.62 97.593 34.779a11.965 11.965 0 0 1 1.936 15.322l-18.155 28.113c-3.841 5.95-11.966 7.282-17.499 2.921-8.595-6.776-31.814-22.538-61.708-22.538-48.303 0-77.916 35.33-77.916 80.082 0 41.589 26.888 83.692 78.277 83.692 32.657 0 56.843-19.039 65.726-27.225 5.27-4.857 13.596-4.039 17.82 1.738l19.865 27.17a11.947 11.947 0 0 1-1.152 15.518z"] }; +var faCreditCard = { prefix: 'far', iconName: 'credit-card', icon: [576, 512, [], "f09d", "M527.9 32H48.1C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48.1 48h479.8c26.6 0 48.1-21.5 48.1-48V80c0-26.5-21.5-48-48.1-48zM54.1 80h467.8c3.3 0 6 2.7 6 6v42H48.1V86c0-3.3 2.7-6 6-6zm467.8 352H54.1c-3.3 0-6-2.7-6-6V256h479.8v170c0 3.3-2.7 6-6 6zM192 332v40c0 6.6-5.4 12-12 12h-72c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12zm192 0v40c0 6.6-5.4 12-12 12H236c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12z"] }; +var faDizzy = { prefix: 'far', iconName: 'dizzy', icon: [496, 512, [], "f567", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-33.8-217.9c7.8-7.8 7.8-20.5 0-28.3L196.3 192l17.9-17.9c7.8-7.8 7.8-20.5 0-28.3-7.8-7.8-20.5-7.8-28.3 0L168 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.9 7.7 20.5 7.7 28.4-.2zm160-92.2c-7.8-7.8-20.5-7.8-28.3 0L328 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.8 7.8 20.5 7.8 28.3 0 7.8-7.8 7.8-20.5 0-28.3l-17.8-18 17.9-17.9c7.7-7.8 7.7-20.4 0-28.2zM248 272c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64z"] }; +var faDotCircle = { prefix: 'far', iconName: 'dot-circle', icon: [512, 512, [], "f192", "M256 56c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m0-48C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 168c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80z"] }; +var faEdit = { prefix: 'far', iconName: 'edit', icon: [576, 512, [], "f044", "M402.3 344.9l32-32c5-5 13.7-1.5 13.7 5.7V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h273.5c7.1 0 10.7 8.6 5.7 13.7l-32 32c-1.5 1.5-3.5 2.3-5.7 2.3H48v352h352V350.5c0-2.1.8-4.1 2.3-5.6zm156.6-201.8L296.3 405.7l-90.4 10c-26.2 2.9-48.5-19.2-45.6-45.6l10-90.4L432.9 17.1c22.9-22.9 59.9-22.9 82.7 0l43.2 43.2c22.9 22.9 22.9 60 .1 82.8zM460.1 174L402 115.9 216.2 301.8l-7.3 65.3 65.3-7.3L460.1 174zm64.8-79.7l-43.2-43.2c-4.1-4.1-10.8-4.1-14.8 0L436 82l58.1 58.1 30.9-30.9c4-4.2 4-10.8-.1-14.9z"] }; +var faEnvelope = { prefix: 'far', iconName: 'envelope', icon: [512, 512, [], "f0e0", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z"] }; +var faEnvelopeOpen = { prefix: 'far', iconName: 'envelope-open', icon: [512, 512, [], "f2b6", "M494.586 164.516c-4.697-3.883-111.723-89.95-135.251-108.657C337.231 38.191 299.437 0 256 0c-43.205 0-80.636 37.717-103.335 55.859-24.463 19.45-131.07 105.195-135.15 108.549A48.004 48.004 0 0 0 0 201.485V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V201.509a48 48 0 0 0-17.414-36.993zM464 458a6 6 0 0 1-6 6H54a6 6 0 0 1-6-6V204.347c0-1.813.816-3.526 2.226-4.665 15.87-12.814 108.793-87.554 132.364-106.293C200.755 78.88 232.398 48 256 48c23.693 0 55.857 31.369 73.41 45.389 23.573 18.741 116.503 93.493 132.366 106.316a5.99 5.99 0 0 1 2.224 4.663V458zm-31.991-187.704c4.249 5.159 3.465 12.795-1.745 16.981-28.975 23.283-59.274 47.597-70.929 56.863C336.636 362.283 299.205 400 256 400c-43.452 0-81.287-38.237-103.335-55.86-11.279-8.967-41.744-33.413-70.927-56.865-5.21-4.187-5.993-11.822-1.745-16.981l15.258-18.528c4.178-5.073 11.657-5.843 16.779-1.726 28.618 23.001 58.566 47.035 70.56 56.571C200.143 320.631 232.307 352 256 352c23.602 0 55.246-30.88 73.41-45.389 11.994-9.535 41.944-33.57 70.563-56.568 5.122-4.116 12.601-3.346 16.778 1.727l15.258 18.526z"] }; +var faEye = { prefix: 'far', iconName: 'eye', icon: [576, 512, [], "f06e", "M569.354 231.631C512.97 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-102.556 0-192.091-54.701-240-136 44.157-74.933 123.677-127.27 216.162-135.007C273.958 131.078 280 144.83 280 160c0 30.928-25.072 56-56 56s-56-25.072-56-56l.001-.042C157.794 179.043 152 200.844 152 224c0 75.111 60.889 136 136 136s136-60.889 136-136c0-31.031-10.4-59.629-27.895-82.515C451.704 164.638 498.009 205.106 528 256c-47.908 81.299-137.444 136-240 136z"] }; +var faEyeSlash = { prefix: 'far', iconName: 'eye-slash', icon: [576, 512, [], "f070", "M272.702 359.139c-80.483-9.011-136.212-86.886-116.93-167.042l116.93 167.042zM288 392c-102.556 0-192.092-54.701-240-136 21.755-36.917 52.1-68.342 88.344-91.658l-27.541-39.343C67.001 152.234 31.921 188.741 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.004 376.006 168.14 440 288 440a332.89 332.89 0 0 0 39.648-2.367l-32.021-45.744A284.16 284.16 0 0 1 288 392zm281.354-111.631c-33.232 56.394-83.421 101.742-143.554 129.492l48.116 68.74c3.801 5.429 2.48 12.912-2.949 16.712L450.23 509.83c-5.429 3.801-12.912 2.48-16.712-2.949L102.084 33.399c-3.801-5.429-2.48-12.912 2.949-16.712L125.77 2.17c5.429-3.801 12.912-2.48 16.712 2.949l55.526 79.325C226.612 76.343 256.808 72 288 72c119.86 0 224.996 63.994 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM528 256c-44.157-74.933-123.677-127.27-216.162-135.007C302.042 131.078 296 144.83 296 160c0 30.928 25.072 56 56 56s56-25.072 56-56l-.001-.042c30.632 57.277 16.739 130.26-36.928 171.719l26.695 38.135C452.626 346.551 498.308 306.386 528 256z"] }; +var faFile = { prefix: 'far', iconName: 'file', icon: [384, 512, [], "f15b", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48z"] }; +var faFileAlt = { prefix: 'far', iconName: 'file-alt', icon: [384, 512, [], "f15c", "M288 248v28c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-28c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm-12 72H108c-6.6 0-12 5.4-12 12v28c0 6.6 5.4 12 12 12h168c6.6 0 12-5.4 12-12v-28c0-6.6-5.4-12-12-12zm108-188.1V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48C0 21.5 21.5 0 48 0h204.1C264.8 0 277 5.1 286 14.1L369.9 98c9 8.9 14.1 21.2 14.1 33.9zm-128-80V128h76.1L256 51.9zM336 464V176H232c-13.3 0-24-10.7-24-24V48H48v416h288z"] }; +var faFileArchive = { prefix: 'far', iconName: 'file-archive', icon: [384, 512, [], "f1c6", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM256 51.882L332.118 128H256V51.882zM336 464H48V48h79.714v16h32V48H208v104c0 13.255 10.745 24 24 24h104v288zM192.27 96h-32V64h32v32zm-32 0v32h-32V96h32zm0 64v32h-32v-32h32zm32 0h-32v-32h32v32zm1.909 105.678A12 12 0 0 0 182.406 256H160.27v-32h-32v32l-19.69 97.106C101.989 385.611 126.834 416 160 416c33.052 0 57.871-30.192 51.476-62.62l-17.297-87.702zM160.27 390.073c-17.918 0-32.444-12.105-32.444-27.036 0-14.932 14.525-27.036 32.444-27.036s32.444 12.105 32.444 27.036c0 14.931-14.526 27.036-32.444 27.036zm32-166.073h-32v-32h32v32z"] }; +var faFileAudio = { prefix: 'far', iconName: 'file-audio', icon: [384, 512, [], "f1c7", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm144-76.024c0 10.691-12.926 16.045-20.485 8.485L136 360.486h-28c-6.627 0-12-5.373-12-12v-56c0-6.627 5.373-12 12-12h28l35.515-36.947c7.56-7.56 20.485-2.206 20.485 8.485v135.952zm41.201-47.13c9.051-9.297 9.06-24.133.001-33.439-22.149-22.752 12.235-56.246 34.395-33.481 27.198 27.94 27.212 72.444.001 100.401-21.793 22.386-56.947-10.315-34.397-33.481z"] }; +var faFileCode = { prefix: 'far', iconName: 'file-code', icon: [384, 512, [], "f1c9", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm101.677-115.115L116.854 320l32.822-28.885a8.793 8.793 0 0 0 .605-12.624l-17.403-18.564c-3.384-3.613-8.964-3.662-12.438-.401L62.78 313.58c-3.703 3.474-3.704 9.367.001 12.84l57.659 54.055a8.738 8.738 0 0 0 6.012 2.381 8.746 8.746 0 0 0 6.427-2.782l17.403-18.563a8.795 8.795 0 0 0-.605-12.626zm84.284-127.85l-24.401-7.084a8.796 8.796 0 0 0-10.905 5.998L144.04 408.061c-1.353 4.66 1.338 9.552 5.998 10.905l24.403 7.084c4.68 1.355 9.557-1.354 10.905-5.998l54.612-188.112c1.354-4.66-1.337-9.552-5.997-10.905zm87.258 92.545l-57.658-54.055c-3.526-3.307-9.099-3.165-12.439.401l-17.403 18.563a8.795 8.795 0 0 0 .605 12.625L267.146 320l-32.822 28.885a8.793 8.793 0 0 0-.605 12.624l17.403 18.564a8.797 8.797 0 0 0 12.439.401h-.001l57.66-54.055c3.703-3.473 3.703-9.366-.001-12.839z"] }; +var faFileExcel = { prefix: 'far', iconName: 'file-excel', icon: [384, 512, [], "f1c3", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm212-240h-28.8c-4.4 0-8.4 2.4-10.5 6.3-18 33.1-22.2 42.4-28.6 57.7-13.9-29.1-6.9-17.3-28.6-57.7-2.1-3.9-6.2-6.3-10.6-6.3H124c-9.3 0-15 10-10.4 18l46.3 78-46.3 78c-4.7 8 1.1 18 10.4 18h28.9c4.4 0 8.4-2.4 10.5-6.3 21.7-40 23-45 28.6-57.7 14.9 30.2 5.9 15.9 28.6 57.7 2.1 3.9 6.2 6.3 10.6 6.3H260c9.3 0 15-10 10.4-18L224 320c.7-1.1 30.3-50.5 46.3-78 4.7-8-1.1-18-10.3-18z"] }; +var faFileImage = { prefix: 'far', iconName: 'file-image', icon: [384, 512, [], "f1c5", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm32-48h224V288l-23.5-23.5c-4.7-4.7-12.3-4.7-17 0L176 352l-39.5-39.5c-4.7-4.7-12.3-4.7-17 0L80 352v64zm48-240c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z"] }; +var faFilePdf = { prefix: 'far', iconName: 'file-pdf', icon: [384, 512, [], "f1c1", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm250.2-143.7c-12.2-12-47-8.7-64.4-6.5-17.2-10.5-28.7-25-36.8-46.3 3.9-16.1 10.1-40.6 5.4-56-4.2-26.2-37.8-23.6-42.6-5.9-4.4 16.1-.4 38.5 7 67.1-10 23.9-24.9 56-35.4 74.4-20 10.3-47 26.2-51 46.2-3.3 15.8 26 55.2 76.1-31.2 22.4-7.4 46.8-16.5 68.4-20.1 18.9 10.2 41 17 55.8 17 25.5 0 28-28.2 17.5-38.7zm-198.1 77.8c5.1-13.7 24.5-29.5 30.4-35-19 30.3-30.4 35.7-30.4 35zm81.6-190.6c7.4 0 6.7 32.1 1.8 40.8-4.4-13.9-4.3-40.8-1.8-40.8zm-24.4 136.6c9.7-16.9 18-37 24.7-54.7 8.3 15.1 18.9 27.2 30.1 35.5-20.8 4.3-38.9 13.1-54.8 19.2zm131.6-5s-5 6-37.3-7.8c35.1-2.6 40.9 5.4 37.3 7.8z"] }; +var faFilePowerpoint = { prefix: 'far', iconName: 'file-powerpoint', icon: [384, 512, [], "f1c4", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm72-60V236c0-6.6 5.4-12 12-12h69.2c36.7 0 62.8 27 62.8 66.3 0 74.3-68.7 66.5-95.5 66.5V404c0 6.6-5.4 12-12 12H132c-6.6 0-12-5.4-12-12zm48.5-87.4h23c7.9 0 13.9-2.4 18.1-7.2 8.5-9.8 8.4-28.5.1-37.8-4.1-4.6-9.9-7-17.4-7h-23.9v52z"] }; +var faFileVideo = { prefix: 'far', iconName: 'file-video', icon: [384, 512, [], "f1c8", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm228.687-211.303L224 305.374V268c0-11.046-8.954-20-20-20H100c-11.046 0-20 8.954-20 20v104c0 11.046 8.954 20 20 20h104c11.046 0 20-8.954 20-20v-37.374l52.687 52.674C286.704 397.318 304 390.28 304 375.986V264.011c0-14.311-17.309-21.319-27.313-11.314z"] }; +var faFileWord = { prefix: 'far', iconName: 'file-word', icon: [384, 512, [], "f1c2", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm220.1-208c-5.7 0-10.6 4-11.7 9.5-20.6 97.7-20.4 95.4-21 103.5-.2-1.2-.4-2.6-.7-4.3-.8-5.1.3.2-23.6-99.5-1.3-5.4-6.1-9.2-11.7-9.2h-13.3c-5.5 0-10.3 3.8-11.7 9.1-24.4 99-24 96.2-24.8 103.7-.1-1.1-.2-2.5-.5-4.2-.7-5.2-14.1-73.3-19.1-99-1.1-5.6-6-9.7-11.8-9.7h-16.8c-7.8 0-13.5 7.3-11.7 14.8 8 32.6 26.7 109.5 33.2 136 1.3 5.4 6.1 9.1 11.7 9.1h25.2c5.5 0 10.3-3.7 11.6-9.1l17.9-71.4c1.5-6.2 2.5-12 3-17.3l2.9 17.3c.1.4 12.6 50.5 17.9 71.4 1.3 5.3 6.1 9.1 11.6 9.1h24.7c5.5 0 10.3-3.7 11.6-9.1 20.8-81.9 30.2-119 34.5-136 1.9-7.6-3.8-14.9-11.6-14.9h-15.8z"] }; +var faFlag = { prefix: 'far', iconName: 'flag', icon: [512, 512, [], "f024", "M336.174 80c-49.132 0-93.305-32-161.913-32-31.301 0-58.303 6.482-80.721 15.168a48.04 48.04 0 0 0 2.142-20.727C93.067 19.575 74.167 1.594 51.201.104 23.242-1.71 0 20.431 0 48c0 17.764 9.657 33.262 24 41.562V496c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-83.443C109.869 395.28 143.259 384 199.826 384c49.132 0 93.305 32 161.913 32 58.479 0 101.972-22.617 128.548-39.981C503.846 367.161 512 352.051 512 335.855V95.937c0-34.459-35.264-57.768-66.904-44.117C409.193 67.309 371.641 80 336.174 80zM464 336c-21.783 15.412-60.824 32-102.261 32-59.945 0-102.002-32-161.913-32-43.361 0-96.379 9.403-127.826 24V128c21.784-15.412 60.824-32 102.261-32 59.945 0 102.002 32 161.913 32 43.271 0 96.32-17.366 127.826-32v240z"] }; +var faFlushed = { prefix: 'far', iconName: 'flushed', icon: [496, 512, [], "f579", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm96-312c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-112 24c0-44.2-35.8-80-80-80s-80 35.8-80 80 35.8 80 80 80 80-35.8 80-80zm-80 48c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm160 144H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z"] }; +var faFolder = { prefix: 'far', iconName: 'folder', icon: [512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48zm-6 272H54c-3.314 0-6-2.678-6-5.992V117.992A5.993 5.993 0 0 1 54 112h134.118l64 64H458a6 6 0 0 1 6 6v212a6 6 0 0 1-6 6z"] }; +var faFolderOpen = { prefix: 'far', iconName: 'folder-open', icon: [576, 512, [], "f07c", "M527.943 224H480v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h400a48.001 48.001 0 0 0 40.704-22.56l79.942-128c19.948-31.917-3.038-73.44-40.703-73.44zM54 112h134.118l64 64H426a6 6 0 0 1 6 6v42H152a48 48 0 0 0-41.098 23.202L48 351.449V117.993A5.993 5.993 0 0 1 54 112zm394 288H72l77.234-128H528l-80 128z"] }; +var faFontAwesomeLogoFull = { prefix: 'far', iconName: 'font-awesome-logo-full', icon: [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"] }; +var faFrown = { prefix: 'far', iconName: 'frown', icon: [496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 128c-40.2 0-78 17.7-103.8 48.6-8.5 10.2-7.1 25.3 3.1 33.8 10.2 8.4 25.3 7.1 33.8-3.1 16.6-19.9 41-31.4 66.9-31.4s50.3 11.4 66.9 31.4c8.1 9.7 23.1 11.9 33.8 3.1 10.2-8.5 11.5-23.6 3.1-33.8C326 321.7 288.2 304 248 304z"] }; +var faFrownOpen = { prefix: 'far', iconName: 'frown-open', icon: [496, 512, [], "f57a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-48-248c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 112c-35.6 0-88.8 21.3-95.8 61.2-2 11.8 9 21.5 20.5 18.1 31.2-9.6 59.4-15.3 75.3-15.3s44.1 5.7 75.3 15.3c11.4 3.5 22.5-6.3 20.5-18.1-7-39.9-60.2-61.2-95.8-61.2z"] }; +var faFutbol = { prefix: 'far', iconName: 'futbol', icon: [496, 512, [], "f1e3", "M483.8 179.4C449.8 74.6 352.6 8 248.1 8c-25.4 0-51.2 3.9-76.7 12.2C41.2 62.5-30.1 202.4 12.2 332.6 46.2 437.4 143.4 504 247.9 504c25.4 0 51.2-3.9 76.7-12.2 130.2-42.3 201.5-182.2 159.2-312.4zm-74.5 193.7l-52.2 6.4-43.7-60.9 24.4-75.2 71.1-22.1 38.9 36.4c-.2 30.7-7.4 61.1-21.7 89.2-4.7 9.3-10.7 17.8-16.8 26.2zm0-235.4l-10.4 53.1-70.7 22-64.2-46.5V92.5l47.4-26.2c39.2 13 73.4 38 97.9 71.4zM184.9 66.4L232 92.5v73.8l-64.2 46.5-70.6-22-10.1-52.5c24.3-33.4 57.9-58.6 97.8-71.9zM139 379.5L85.9 373c-14.4-20.1-37.3-59.6-37.8-115.3l39-36.4 71.1 22.2 24.3 74.3-43.5 61.7zm48.2 67l-22.4-48.1 43.6-61.7H287l44.3 61.7-22.4 48.1c-6.2 1.8-57.6 20.4-121.7 0z"] }; +var faGem = { prefix: 'far', iconName: 'gem', icon: [576, 512, [], "f3a5", "M464 0H112c-4 0-7.8 2-10 5.4L2 152.6c-2.9 4.4-2.6 10.2.7 14.2l276 340.8c4.8 5.9 13.8 5.9 18.6 0l276-340.8c3.3-4.1 3.6-9.8.7-14.2L474.1 5.4C471.8 2 468.1 0 464 0zm-19.3 48l63.3 96h-68.4l-51.7-96h56.8zm-202.1 0h90.7l51.7 96H191l51.6-96zm-111.3 0h56.8l-51.7 96H68l63.3-96zm-43 144h51.4L208 352 88.3 192zm102.9 0h193.6L288 435.3 191.2 192zM368 352l68.2-160h51.4L368 352z"] }; +var faGrimace = { prefix: 'far', iconName: 'grimace', icon: [496, 512, [], "f57f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm16 16H152c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h192c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48zm-168 96h-24c-8.8 0-16-7.2-16-16v-8h40v24zm0-40h-40v-8c0-8.8 7.2-16 16-16h24v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm56 24c0 8.8-7.2 16-16 16h-24v-24h40v8zm0-24h-40v-24h24c8.8 0 16 7.2 16 16v8z"] }; +var faGrin = { prefix: 'far', iconName: 'grin', icon: [496, 512, [], "f580", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z"] }; +var faGrinAlt = { prefix: 'far', iconName: 'grin-alt', icon: [496, 512, [], "f581", "M200.3 248c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zm128 0c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3z"] }; +var faGrinBeam = { prefix: 'far', iconName: 'grin-beam', icon: [496, 512, [], "f582", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-235.9-72.9c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3zm160 0c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3z"] }; +var faGrinBeamSweat = { prefix: 'far', iconName: 'grin-beam-sweat', icon: [496, 512, [], "f583", "M440 160c29.5 0 53.3-26.3 53.3-58.7 0-25-31.7-75.5-46.2-97.3-3.6-5.3-10.7-5.3-14.2 0-14.5 21.8-46.2 72.3-46.2 97.3 0 32.4 23.8 58.7 53.3 58.7zM248 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zm105.3-52.9c-24.6 15.7-46 12.9-46.4 12.9 6.9 20.2 10.8 41.8 10.8 64.3 0 110.3-89.7 200-200 200S48 366.3 48 256 137.7 56 248 56c39.8 0 76.8 11.8 108 31.9 1.7-9.5 6.3-24.1 17.2-45.7C336.4 20.6 293.7 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-27-4.4-52.9-12.4-77.2zM168 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z"] }; +var faGrinHearts = { prefix: 'far', iconName: 'grin-hearts', icon: [496, 512, [], "f584", "M353.6 304.6c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-152.8-48.9c4.5 1.2 9.2-1.5 10.5-6l19.4-69.9c5.6-20.3-7.4-41.1-28.8-44.5-18.6-3-36.4 9.8-41.5 27.9l-2 7.1-7.1-1.9c-18.2-4.7-38.2 4.3-44.9 22-7.7 20.2 3.8 41.9 24.2 47.2l70.2 18.1zm188.8-65.3c-6.7-17.6-26.7-26.7-44.9-22l-7.1 1.9-2-7.1c-5-18.1-22.8-30.9-41.5-27.9-21.4 3.4-34.4 24.2-28.8 44.5l19.4 69.9c1.2 4.5 5.9 7.2 10.5 6l70.2-18.2c20.4-5.3 31.9-26.9 24.2-47.1zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200z"] }; +var faGrinSquint = { prefix: 'far', iconName: 'grin-squint', icon: [496, 512, [], "f585", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-234.7-40.8c3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3l-80-48c-5.1-3-11.4-1.9-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11.1.1 15.5zm242.9 2.5c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11-.1-15.5-3.8-4.4-10.2-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48z"] }; +var faGrinSquintTears = { prefix: 'far', iconName: 'grin-squint-tears', icon: [512, 512, [], "f586", "M117.1 384.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 479 124.3 420.8 128 395c.8-6.4-4.6-11.8-10.9-10.9zm-41.2-41.7C40.3 268 53 176.1 114.6 114.6 152.4 76.8 202.6 56 256 56c36.2 0 70.8 9.8 101.2 27.7 3.8-20.3 8-36.1 12-48.3C333.8 17.2 294.9 8 256 8 192.5 8 129.1 32.2 80.6 80.6c-74.1 74.1-91.3 183.4-52 274 12.2-4.1 27.7-8.3 47.3-12.2zm352.3-187.6c45 76.6 34.9 176.9-30.8 242.6-37.8 37.8-88 58.6-141.4 58.6-30.5 0-59.8-7-86.4-19.8-3.9 19.5-8 35-12.2 47.2 31.4 13.6 65 20.6 98.7 20.6 63.5 0 126.9-24.2 175.4-72.6 78.1-78.1 93.1-195.4 45.2-288.6-12.3 4-28.2 8.1-48.5 12zm-33.3-26.9c25.8-3.7 84-13.7 100.9-30.6 21.9-21.9 21.5-57.9-.9-80.3s-58.3-22.8-80.3-.9C397.7 33 387.7 91.2 384 117c-.8 6.4 4.6 11.8 10.9 10.9zm-187 108.3c-3-3-7.2-4.2-11.4-3.2L106 255.7c-5.7 1.4-9.5 6.7-9.1 12.6.5 5.8 5.1 10.5 10.9 11l52.3 4.8 4.8 52.3c.5 5.8 5.2 10.4 11 10.9h.9c5.5 0 10.3-3.7 11.7-9.1l22.6-90.5c1-4.2-.2-8.5-3.2-11.5zm39.7-25.1l90.5-22.6c5.7-1.4 9.5-6.7 9.1-12.6-.5-5.8-5.1-10.5-10.9-11l-52.3-4.8-4.8-52.3c-.5-5.8-5.2-10.4-11-10.9-5.6-.1-11.2 3.4-12.6 9.1L233 196.5c-1 4.1.2 8.4 3.2 11.4 5 5 11.3 3.2 11.4 3.2zm52 88.5c-29.1 29.1-59.7 52.9-83.9 65.4-9.2 4.8-10 17.5-1.7 23.4 38.9 27.7 107 6.2 143.7-30.6S416 253 388.3 214.1c-5.8-8.2-18.5-7.6-23.4 1.7-12.3 24.2-36.2 54.7-65.3 83.8z"] }; +var faGrinStars = { prefix: 'far', iconName: 'grin-stars', icon: [496, 512, [], "f587", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-227.9-57.5c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.5 1.9-12.2-4.3-13.2l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6.1 34.9zm259.7-72.7l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6 34.9c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.6 1.8-12.2-4.4-13.2z"] }; +var faGrinTears = { prefix: 'far', iconName: 'grin-tears', icon: [640, 512, [], "f588", "M117.1 256.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 351 124.3 292.8 128 267c.8-6.4-4.6-11.8-10.9-10.9zm506.7 30.6c-16.9-16.9-75.1-26.9-100.9-30.6-6.3-.9-11.7 4.5-10.8 10.8 3.7 25.8 13.7 84 30.6 100.9 21.9 21.9 57.9 21.5 80.3-.9 22.3-22.3 22.7-58.3.8-80.2zm-126.6 61.7C463.8 412.3 396.9 456 320 456c-76.9 0-143.8-43.7-177.2-107.6-12.5 37.4-25.2 43.9-28.3 46.5C159.1 460.7 234.5 504 320 504s160.9-43.3 205.5-109.1c-3.2-2.7-15.9-9.2-28.3-46.5zM122.7 224.5C137.9 129.2 220.5 56 320 56c99.5 0 182.1 73.2 197.3 168.5 2.1-.2 5.2-2.4 49.5 7C554.4 106 448.7 8 320 8S85.6 106 73.2 231.4c44.5-9.4 47.1-7.2 49.5-6.9zM320 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zM240 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z"] }; +var faGrinTongue = { prefix: 'far', iconName: 'grin-tongue', icon: [496, 512, [], "f589", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zM168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"] }; +var faGrinTongueSquint = { prefix: 'far', iconName: 'grin-tongue-squint', icon: [496, 512, [], "f58a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zm36.9-281.1c-3.8-4.4-10.3-5.5-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zm-162.9 45.5l-80-48c-5-3-11.4-2-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3z"] }; +var faGrinTongueWink = { prefix: 'far', iconName: 'grin-tongue-wink', icon: [496, 512, [], "f58b", "M152 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm176-52c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3z"] }; +var faGrinWink = { prefix: 'far', iconName: 'grin-wink', icon: [496, 512, [], "f58c", "M328 180c-25.69 0-55.88 16.92-59.86 42.12-1.75 11.22 11.5 18.24 19.83 10.84l9.55-8.48c14.81-13.19 46.16-13.19 60.97 0l9.55 8.48c8.48 7.43 21.56.25 19.83-10.84C383.88 196.92 353.69 180 328 180zm-160 60c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm185.55 64.64c-25.93 8.3-64.4 13.06-105.55 13.06s-79.62-4.75-105.55-13.06c-9.94-3.13-19.4 5.37-17.71 15.34C132.67 367.13 196.06 400 248 400s115.33-32.87 123.26-80.02c1.68-9.89-7.67-18.48-17.71-15.34zM248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 448c-110.28 0-200-89.72-200-200S137.72 56 248 56s200 89.72 200 200-89.72 200-200 200z"] }; +var faHandLizard = { prefix: 'far', iconName: 'hand-lizard', icon: [576, 512, [], "f258", "M556.686 290.542L410.328 64.829C397.001 44.272 374.417 32 349.917 32H56C25.121 32 0 57.122 0 88v8c0 44.112 35.888 80 80 80h196.042l-18.333 48H144c-48.523 0-88 39.477-88 88 0 30.879 25.121 56 56 56h131.552c2.987 0 5.914.549 8.697 1.631L352 408.418V480h224V355.829c0-23.225-6.679-45.801-19.314-65.287zM528 432H400v-23.582c0-19.948-12.014-37.508-30.604-44.736l-99.751-38.788A71.733 71.733 0 0 0 243.552 320H112c-4.411 0-8-3.589-8-8 0-22.056 17.944-40 40-40h113.709c19.767 0 37.786-12.407 44.84-30.873l24.552-64.281c8.996-23.553-8.428-48.846-33.63-48.846H80c-17.645 0-32-14.355-32-32v-8c0-4.411 3.589-8 8-8h293.917c8.166 0 15.693 4.09 20.137 10.942l146.358 225.715A71.84 71.84 0 0 1 528 355.829V432z"] }; +var faHandPaper = { prefix: 'far', iconName: 'hand-paper', icon: [448, 512, [], "f256", "M372.57 112.641v-10.825c0-43.612-40.52-76.691-83.039-65.546-25.629-49.5-94.09-47.45-117.982.747C130.269 26.456 89.144 57.945 89.144 102v126.13c-19.953-7.427-43.308-5.068-62.083 8.871-29.355 21.796-35.794 63.333-14.55 93.153L132.48 498.569a32 32 0 0 0 26.062 13.432h222.897c14.904 0 27.835-10.289 31.182-24.813l30.184-130.958A203.637 203.637 0 0 0 448 310.564V179c0-40.62-35.523-71.992-75.43-66.359zm27.427 197.922c0 11.731-1.334 23.469-3.965 34.886L368.707 464h-201.92L51.591 302.303c-14.439-20.27 15.023-42.776 29.394-22.605l27.128 38.079c8.995 12.626 29.031 6.287 29.031-9.283V102c0-25.645 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V67c0-25.663 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V101.125c0-25.672 36.57-24.81 36.57.691V256c0 8.837 7.163 16 16 16h6.857c8.837 0 16-7.163 16-16v-76.309c0-26.242 36.57-25.64 36.57-.691v131.563z"] }; +var faHandPeace = { prefix: 'far', iconName: 'hand-peace', icon: [448, 512, [], "f25b", "M362.146 191.976c-13.71-21.649-38.761-34.016-65.006-30.341V74c0-40.804-32.811-74-73.141-74-40.33 0-73.14 33.196-73.14 74L160 168l-18.679-78.85C126.578 50.843 83.85 32.11 46.209 47.208 8.735 62.238-9.571 104.963 5.008 142.85l55.757 144.927c-30.557 24.956-43.994 57.809-24.733 92.218l54.853 97.999C102.625 498.97 124.73 512 148.575 512h205.702c30.744 0 57.558-21.44 64.555-51.797l27.427-118.999a67.801 67.801 0 0 0 1.729-15.203L448 256c0-44.956-43.263-77.343-85.854-64.024zM399.987 326c0 1.488-.169 2.977-.502 4.423l-27.427 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H148.575c-6.486 0-12.542-3.621-15.805-9.449l-54.854-98c-4.557-8.141-2.619-18.668 4.508-24.488l26.647-21.764a16 16 0 0 0 4.812-18.139l-64.09-166.549C37.226 92.956 84.37 74.837 96.51 106.389l59.784 155.357A16 16 0 0 0 171.227 272h11.632c8.837 0 16-7.163 16-16V74c0-34.375 50.281-34.43 50.281 0v182c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16v-28c0-25.122 36.567-25.159 36.567 0v28c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16 0-25.12 36.567-25.16 36.567 0v70z"] }; +var faHandPointDown = { prefix: 'far', iconName: 'hand-point-down', icon: [448, 512, [], "f0a7", "M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z"] }; +var faHandPointLeft = { prefix: 'far', iconName: 'hand-point-left', icon: [512, 512, [], "f0a5", "M0 220.8C0 266.416 37.765 304 83.2 304h35.647a93.148 93.148 0 0 0 7.929 22.064c-2.507 22.006 3.503 44.978 15.985 62.791C143.9 441.342 180.159 480 242.701 480H264c60.063 0 98.512-40 127.2-40h2.679c5.747 4.952 13.536 8 22.12 8h64c17.673 0 32-12.894 32-28.8V188.8c0-15.906-14.327-28.8-32-28.8h-64c-8.584 0-16.373 3.048-22.12 8H391.2c-6.964 0-14.862-6.193-30.183-23.668l-.129-.148-.131-.146c-8.856-9.937-18.116-20.841-25.851-33.253C316.202 80.537 304.514 32 259.2 32c-56.928 0-92 35.286-92 83.2 0 8.026.814 15.489 2.176 22.4H83.2C38.101 137.6 0 175.701 0 220.8zm48 0c0-18.7 16.775-35.2 35.2-35.2h158.4c0-17.325-26.4-35.2-26.4-70.4 0-26.4 20.625-35.2 44-35.2 8.794 0 20.445 32.712 34.926 56.1 9.074 14.575 19.524 27.225 30.799 39.875 16.109 18.374 33.836 36.633 59.075 39.596v176.752C341.21 396.087 309.491 432 264 432h-21.299c-40.524 0-57.124-22.197-50.601-61.325-14.612-8.001-24.151-33.979-12.925-53.625-19.365-18.225-17.787-46.381-4.95-61.05H83.2C64.225 256 48 239.775 48 220.8zM448 360c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z"] }; +var faHandPointRight = { prefix: 'far', iconName: 'hand-point-right', icon: [512, 512, [], "f0a4", "M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"] }; +var faHandPointUp = { prefix: 'far', iconName: 'hand-point-up', icon: [448, 512, [], "f0a6", "M105.6 83.2v86.177a115.52 115.52 0 0 0-22.4-2.176c-47.914 0-83.2 35.072-83.2 92 0 45.314 48.537 57.002 78.784 75.707 12.413 7.735 23.317 16.994 33.253 25.851l.146.131.148.129C129.807 376.338 136 384.236 136 391.2v2.679c-4.952 5.747-8 13.536-8 22.12v64c0 17.673 12.894 32 28.8 32h230.4c15.906 0 28.8-14.327 28.8-32v-64c0-8.584-3.048-16.373-8-22.12V391.2c0-28.688 40-67.137 40-127.2v-21.299c0-62.542-38.658-98.8-91.145-99.94-17.813-12.482-40.785-18.491-62.791-15.985A93.148 93.148 0 0 0 272 118.847V83.2C272 37.765 234.416 0 188.8 0c-45.099 0-83.2 38.101-83.2 83.2zm118.4 0v91.026c14.669-12.837 42.825-14.415 61.05 4.95 19.646-11.227 45.624-1.687 53.625 12.925 39.128-6.524 61.325 10.076 61.325 50.6V264c0 45.491-35.913 77.21-39.676 120H183.571c-2.964-25.239-21.222-42.966-39.596-59.075-12.65-11.275-25.3-21.725-39.875-30.799C80.712 279.645 48 267.994 48 259.2c0-23.375 8.8-44 35.2-44 35.2 0 53.075 26.4 70.4 26.4V83.2c0-18.425 16.5-35.2 35.2-35.2 18.975 0 35.2 16.225 35.2 35.2zM352 424c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z"] }; +var faHandPointer = { prefix: 'far', iconName: 'hand-pointer', icon: [448, 512, [], "f25a", "M358.182 179.361c-19.493-24.768-52.679-31.945-79.872-19.098-15.127-15.687-36.182-22.487-56.595-19.629V67c0-36.944-29.736-67-66.286-67S89.143 30.056 89.143 67v161.129c-19.909-7.41-43.272-5.094-62.083 8.872-29.355 21.795-35.793 63.333-14.55 93.152l109.699 154.001C134.632 501.59 154.741 512 176 512h178.286c30.802 0 57.574-21.5 64.557-51.797l27.429-118.999A67.873 67.873 0 0 0 448 326v-84c0-46.844-46.625-79.273-89.818-62.639zM80.985 279.697l27.126 38.079c8.995 12.626 29.031 6.287 29.031-9.283V67c0-25.12 36.571-25.16 36.571 0v175c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16v-35c0-25.12 36.571-25.16 36.571 0v35c0 8.836 7.163 16 16 16H272c8.837 0 16-7.164 16-16v-21c0-25.12 36.571-25.16 36.571 0v21c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16 0-25.121 36.571-25.16 36.571 0v84c0 1.488-.169 2.977-.502 4.423l-27.43 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H176c-5.769 0-11.263-2.878-14.697-7.697l-109.712-154c-14.406-20.223 14.994-42.818 29.394-22.606zM176.143 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.733 0-14-7.163-14-16zm75.428 0v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16zM327 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16z"] }; +var faHandRock = { prefix: 'far', iconName: 'hand-rock', icon: [512, 512, [], "f255", "M408.864 79.052c-22.401-33.898-66.108-42.273-98.813-23.588-29.474-31.469-79.145-31.093-108.334-.022-47.16-27.02-108.71 5.055-110.671 60.806C44.846 105.407 0 140.001 0 187.429v56.953c0 32.741 14.28 63.954 39.18 85.634l97.71 85.081c4.252 3.702 3.11 5.573 3.11 32.903 0 17.673 14.327 32 32 32h252c17.673 0 32-14.327 32-32 0-23.513-1.015-30.745 3.982-42.37l42.835-99.656c6.094-14.177 9.183-29.172 9.183-44.568V146.963c0-52.839-54.314-88.662-103.136-67.911zM464 261.406a64.505 64.505 0 0 1-5.282 25.613l-42.835 99.655c-5.23 12.171-7.883 25.04-7.883 38.25V432H188v-10.286c0-16.37-7.14-31.977-19.59-42.817l-97.71-85.08C56.274 281.255 48 263.236 48 244.381v-56.953c0-33.208 52-33.537 52 .677v41.228a16 16 0 0 0 5.493 12.067l7 6.095A16 16 0 0 0 139 235.429V118.857c0-33.097 52-33.725 52 .677v26.751c0 8.836 7.164 16 16 16h7c8.836 0 16-7.164 16-16v-41.143c0-33.134 52-33.675 52 .677v40.466c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16v-27.429c0-33.03 52-33.78 52 .677v26.751c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16 0-33.146 52-33.613 52 .677v114.445z"] }; +var faHandScissors = { prefix: 'far', iconName: 'hand-scissors', icon: [512, 512, [], "f257", "M256 480l70-.013c5.114 0 10.231-.583 15.203-1.729l118.999-27.427C490.56 443.835 512 417.02 512 386.277V180.575c0-23.845-13.03-45.951-34.005-57.69l-97.999-54.853c-34.409-19.261-67.263-5.824-92.218 24.733L142.85 37.008c-37.887-14.579-80.612 3.727-95.642 41.201-15.098 37.642 3.635 80.37 41.942 95.112L168 192l-94-9.141c-40.804 0-74 32.811-74 73.14 0 40.33 33.196 73.141 74 73.141h87.635c-3.675 26.245 8.692 51.297 30.341 65.006C178.657 436.737 211.044 480 256 480zm0-48.013c-25.16 0-25.12-36.567 0-36.567 8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16h-28c-25.159 0-25.122-36.567 0-36.567h28c8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16H74c-34.43 0-34.375-50.281 0-50.281h182c8.837 0 16-7.163 16-16v-11.632a16 16 0 0 0-10.254-14.933L106.389 128.51c-31.552-12.14-13.432-59.283 19.222-46.717l166.549 64.091a16.001 16.001 0 0 0 18.139-4.812l21.764-26.647c5.82-7.127 16.348-9.064 24.488-4.508l98 54.854c5.828 3.263 9.449 9.318 9.449 15.805v205.701c0 8.491-5.994 15.804-14.576 17.782l-119.001 27.427a19.743 19.743 0 0 1-4.423.502h-70z"] }; +var faHandSpock = { prefix: 'far', iconName: 'hand-spock', icon: [512, 512, [], "f259", "M21.096 381.79l129.092 121.513a32 32 0 0 0 21.932 8.698h237.6c14.17 0 26.653-9.319 30.68-22.904l31.815-107.313A115.955 115.955 0 0 0 477 348.811v-36.839c0-4.051.476-8.104 1.414-12.045l31.73-133.41c10.099-42.412-22.316-82.738-65.544-82.525-4.144-24.856-22.543-47.165-49.85-53.992-35.803-8.952-72.227 12.655-81.25 48.75L296.599 184 274.924 52.01c-8.286-36.07-44.303-58.572-80.304-50.296-29.616 6.804-50.138 32.389-51.882 61.295-42.637.831-73.455 40.563-64.071 81.844l31.04 136.508c-27.194-22.515-67.284-19.992-91.482 5.722-25.376 26.961-24.098 69.325 2.871 94.707zm32.068-61.811l.002-.001c7.219-7.672 19.241-7.98 26.856-.813l53.012 49.894C143.225 378.649 160 371.4 160 357.406v-69.479c0-1.193-.134-2.383-.397-3.546l-34.13-150.172c-5.596-24.617 31.502-32.86 37.054-8.421l30.399 133.757a16 16 0 0 0 15.603 12.454h8.604c10.276 0 17.894-9.567 15.594-19.583l-41.62-181.153c-5.623-24.469 31.39-33.076 37.035-8.508l45.22 196.828A16 16 0 0 0 288.956 272h13.217a16 16 0 0 0 15.522-12.119l42.372-169.49c6.104-24.422 42.962-15.159 36.865 9.217L358.805 252.12c-2.521 10.088 5.115 19.88 15.522 19.88h9.694a16 16 0 0 0 15.565-12.295L426.509 146.6c5.821-24.448 42.797-15.687 36.966 8.802L431.72 288.81a100.094 100.094 0 0 0-2.72 23.162v36.839c0 6.548-.943 13.051-2.805 19.328L397.775 464h-219.31L53.978 346.836c-7.629-7.18-7.994-19.229-.814-26.857z"] }; +var faHandshake = { prefix: 'far', iconName: 'handshake', icon: [640, 512, [], "f2b5", "M519.2 127.9l-47.6-47.6A56.252 56.252 0 0 0 432 64H205.2c-14.8 0-29.1 5.9-39.6 16.3L118 127.9H0v255.7h64c17.6 0 31.8-14.2 31.9-31.7h9.1l84.6 76.4c30.9 25.1 73.8 25.7 105.6 3.8 12.5 10.8 26 15.9 41.1 15.9 18.2 0 35.3-7.4 48.8-24 22.1 8.7 48.2 2.6 64-16.8l26.2-32.3c5.6-6.9 9.1-14.8 10.9-23h57.9c.1 17.5 14.4 31.7 31.9 31.7h64V127.9H519.2zM48 351.6c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16zm390-6.9l-26.1 32.2c-2.8 3.4-7.8 4-11.3 1.2l-23.9-19.4-30 36.5c-6 7.3-15 4.8-18 2.4l-36.8-31.5-15.6 19.2c-13.9 17.1-39.2 19.7-55.3 6.6l-97.3-88H96V175.8h41.9l61.7-61.6c2-.8 3.7-1.5 5.7-2.3H262l-38.7 35.5c-29.4 26.9-31.1 72.3-4.4 101.3 14.8 16.2 61.2 41.2 101.5 4.4l8.2-7.5 108.2 87.8c3.4 2.8 3.9 7.9 1.2 11.3zm106-40.8h-69.2c-2.3-2.8-4.9-5.4-7.7-7.7l-102.7-83.4 12.5-11.4c6.5-6 7-16.1 1-22.6L367 167.1c-6-6.5-16.1-6.9-22.6-1l-55.2 50.6c-9.5 8.7-25.7 9.4-34.6 0-9.3-9.9-8.5-25.1 1.2-33.9l65.6-60.1c7.4-6.8 17-10.5 27-10.5l83.7-.2c2.1 0 4.1.8 5.5 2.3l61.7 61.6H544v128zm48 47.7c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16z"] }; +var faHdd = { prefix: 'far', iconName: 'hdd', icon: [576, 512, [], "f0a0", "M567.403 235.642L462.323 84.589A48 48 0 0 0 422.919 64H153.081a48 48 0 0 0-39.404 20.589L8.597 235.642A48.001 48.001 0 0 0 0 263.054V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V263.054c0-9.801-3-19.366-8.597-27.412zM153.081 112h269.838l77.913 112H75.168l77.913-112zM528 400H48V272h480v128zm-32-64c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32zm-96 0c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32z"] }; +var faHeart = { prefix: 'far', iconName: 'heart', icon: [512, 512, [], "f004", "M458.4 64.3C400.6 15.7 311.3 23 256 79.3 200.7 23 111.4 15.6 53.6 64.3-21.6 127.6-10.6 230.8 43 285.5l175.4 178.7c10 10.2 23.4 15.9 37.6 15.9 14.3 0 27.6-5.6 37.6-15.8L469 285.6c53.5-54.7 64.7-157.9-10.6-221.3zm-23.6 187.5L259.4 430.5c-2.4 2.4-4.4 2.4-6.8 0L77.2 251.8c-36.5-37.2-43.9-107.6 7.3-150.7 38.9-32.7 98.9-27.8 136.5 10.5l35 35.7 35-35.7c37.8-38.5 97.8-43.2 136.5-10.6 51.1 43.1 43.5 113.9 7.3 150.8z"] }; +var faHospital = { prefix: 'far', iconName: 'hospital', icon: [448, 512, [], "f0f8", "M128 244v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12zm140 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm-76 84v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm76 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm180 124v36H0v-36c0-6.627 5.373-12 12-12h19.5V85.035C31.5 73.418 42.245 64 55.5 64H144V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v40h88.5c13.255 0 24 9.418 24 21.035V464H436c6.627 0 12 5.373 12 12zM79.5 463H192v-67c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v67h112.5V112H304v24c0 13.255-10.745 24-24 24H168c-13.255 0-24-10.745-24-24v-24H79.5v351zM266 64h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6z"] }; +var faHourglass = { prefix: 'far', iconName: 'hourglass', icon: [384, 512, [], "f254", "M368 48h4c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12H12C5.373 0 0 5.373 0 12v24c0 6.627 5.373 12 12 12h4c0 80.564 32.188 165.807 97.18 208C47.899 298.381 16 383.9 16 464h-4c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12h-4c0-80.564-32.188-165.807-97.18-208C336.102 213.619 368 128.1 368 48zM64 48h256c0 101.62-57.307 184-128 184S64 149.621 64 48zm256 416H64c0-101.62 57.308-184 128-184s128 82.38 128 184z"] }; +var faIdBadge = { prefix: 'far', iconName: 'id-badge', icon: [384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm0 464H48V48h288v416zM144 112h96c8.8 0 16-7.2 16-16s-7.2-16-16-16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16zm48 176c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"] }; +var faIdCard = { prefix: 'far', iconName: 'id-card', icon: [576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H303.2c.9-4.5.8 3.6.8-22.4 0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6 0 26-.2 17.9.8 22.4H48V144h480v288zm-168-80h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm-168 96c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z"] }; +var faImage = { prefix: 'far', iconName: 'image', icon: [512, 512, [], "f03e", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 336H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v276a6 6 0 0 1-6 6zM128 152c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zM96 352h320v-80l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L192 304l-39.515-39.515c-4.686-4.686-12.284-4.686-16.971 0L96 304v48z"] }; +var faImages = { prefix: 'far', iconName: 'images', icon: [576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v48H54a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6v-10h48zm42-336H150a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6V86a6 6 0 0 0-6-6zm6-48c26.51 0 48 21.49 48 48v256c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h384zM264 144c0 22.091-17.909 40-40 40s-40-17.909-40-40 17.909-40 40-40 40 17.909 40 40zm-72 96l39.515-39.515c4.686-4.686 12.284-4.686 16.971 0L288 240l103.515-103.515c4.686-4.686 12.284-4.686 16.971 0L480 208v80H192v-48z"] }; +var faKeyboard = { prefix: 'far', iconName: 'keyboard', icon: [576, 512, [], "f11c", "M528 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm8 336c0 4.411-3.589 8-8 8H48c-4.411 0-8-3.589-8-8V112c0-4.411 3.589-8 8-8h480c4.411 0 8 3.589 8 8v288zM170 270v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-336 82v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm384 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zM122 188v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-98 158v-16c0-6.627-5.373-12-12-12H180c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h216c6.627 0 12-5.373 12-12z"] }; +var faKiss = { prefix: 'far', iconName: 'kiss', icon: [496, 512, [], "f596", "M168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm136 132c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"] }; +var faKissBeam = { prefix: 'far', iconName: 'kiss-beam', icon: [496, 512, [], "f597", "M168 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm56-148c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zm24-156c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4z"] }; +var faKissWinkHeart = { prefix: 'far', iconName: 'kiss-wink-heart', icon: [504, 512, [], "f598", "M304 308.5c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36 21.7-9.1 35.1-23.4 35.1-36.4zm70.5-83.5l9.5 8.5c3.8 3.3 9.3 4 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 5.8 3.1 11.2.7 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0zM136 208.5c0 17.7 14.3 32 32 32s32-14.3 32-32-14.3-32-32-32-32 14.3-32 32zm365.1 194c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zM334 436.3c-26.1 12.5-55.2 19.7-86 19.7-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200c0 22.1-3.7 43.3-10.4 63.2 9 6.4 17 14.2 22.6 23.9 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-2.5-7.3 4.3 17.2-13.4-46.8z"] }; +var faLaugh = { prefix: 'far', iconName: 'laugh', icon: [496, 512, [], "f599", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 224c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm-160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"] }; +var faLaughBeam = { prefix: 'far', iconName: 'laugh-beam', icon: [496, 512, [], "f59a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 152c-23.8 0-52.7 29.3-56 71.4-.7 8.6 10.8 11.9 14.9 4.5l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.1-42.1-32-71.4-55.8-71.4zm-201 75.9l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.6 8.5 10.9 11.9 15.1 4.5zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"] }; +var faLaughSquint = { prefix: 'far', iconName: 'laugh-squint', icon: [496, 512, [], "f59b", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM343.6 196l33.6-40.3c8.6-10.3-3.8-24.8-15.4-18l-80 48c-7.8 4.7-7.8 15.9 0 20.6l80 48c11.5 6.8 24-7.6 15.4-18L343.6 196zm-209.4 58.3l80-48c7.8-4.7 7.8-15.9 0-20.6l-80-48c-11.6-6.9-24 7.7-15.4 18l33.6 40.3-33.6 40.3c-8.7 10.4 3.8 24.8 15.4 18zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"] }; +var faLaughWink = { prefix: 'far', iconName: 'laugh-wink', icon: [496, 512, [], "f59c", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6C68.8 359.6 48 309.4 48 256s20.8-103.6 58.6-141.4C144.4 76.8 194.6 56 248 56s103.6 20.8 141.4 58.6c37.8 37.8 58.6 88 58.6 141.4s-20.8 103.6-58.6 141.4zM328 164c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1zm-160 60c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"] }; +var faLemon = { prefix: 'far', iconName: 'lemon', icon: [512, 512, [], "f094", "M484.112 27.889C455.989-.233 416.108-8.057 387.059 8.865 347.604 31.848 223.504-41.111 91.196 91.197-41.277 223.672 31.923 347.472 8.866 387.058c-16.922 29.051-9.1 68.932 19.022 97.054 28.135 28.135 68.011 35.938 97.057 19.021 39.423-22.97 163.557 49.969 295.858-82.329 132.474-132.477 59.273-256.277 82.331-295.861 16.922-29.05 9.1-68.931-19.022-97.054zm-22.405 72.894c-38.8 66.609 45.6 165.635-74.845 286.08-120.44 120.443-219.475 36.048-286.076 74.843-22.679 13.207-64.035-27.241-50.493-50.488 38.8-66.609-45.6-165.635 74.845-286.08C245.573 4.702 344.616 89.086 411.219 50.292c22.73-13.24 64.005 27.288 50.488 50.491zm-169.861 8.736c1.37 10.96-6.404 20.957-17.365 22.327-54.846 6.855-135.779 87.787-142.635 142.635-1.373 10.989-11.399 18.734-22.326 17.365-10.961-1.37-18.735-11.366-17.365-22.326 9.162-73.286 104.167-168.215 177.365-177.365 10.953-1.368 20.956 6.403 22.326 17.364z"] }; +var faLifeRing = { prefix: 'far', iconName: 'life-ring', icon: [512, 512, [], "f1cd", "M256 504c136.967 0 248-111.033 248-248S392.967 8 256 8 8 119.033 8 256s111.033 248 248 248zm-103.398-76.72l53.411-53.411c31.806 13.506 68.128 13.522 99.974 0l53.411 53.411c-63.217 38.319-143.579 38.319-206.796 0zM336 256c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zm91.28 103.398l-53.411-53.411c13.505-31.806 13.522-68.128 0-99.974l53.411-53.411c38.319 63.217 38.319 143.579 0 206.796zM359.397 84.72l-53.411 53.411c-31.806-13.505-68.128-13.522-99.973 0L152.602 84.72c63.217-38.319 143.579-38.319 206.795 0zM84.72 152.602l53.411 53.411c-13.506 31.806-13.522 68.128 0 99.974L84.72 359.398c-38.319-63.217-38.319-143.579 0-206.796z"] }; +var faLightbulb = { prefix: 'far', iconName: 'lightbulb', icon: [384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zM128 176c0-35.29 28.71-64 64-64 8.837 0 16-7.164 16-16s-7.163-16-16-16c-52.935 0-96 43.065-96 96 0 8.836 7.164 16 16 16s16-7.164 16-16zm64-128c70.734 0 128 57.254 128 128 0 77.602-37.383 60.477-80.98 160h-94.04C101.318 236.33 64 253.869 64 176c0-70.735 57.254-128 128-128m0-48C94.805 0 16 78.803 16 176c0 101.731 51.697 91.541 90.516 192.674 3.55 9.249 12.47 15.326 22.376 15.326h126.215c9.906 0 18.826-6.078 22.376-15.326C316.303 267.541 368 277.731 368 176 368 78.803 289.195 0 192 0z"] }; +var faListAlt = { prefix: 'far', iconName: 'list-alt', icon: [512, 512, [], "f022", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zm-42-92v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm-252 12c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36z"] }; +var faMap = { prefix: 'far', iconName: 'map', icon: [576, 512, [], "f279", "M560.02 32c-1.96 0-3.98.37-5.96 1.16L384.01 96H384L212 35.28A64.252 64.252 0 0 0 191.76 32c-6.69 0-13.37 1.05-19.81 3.14L20.12 87.95A32.006 32.006 0 0 0 0 117.66v346.32C0 473.17 7.53 480 15.99 480c1.96 0 3.97-.37 5.96-1.16L192 416l172 60.71a63.98 63.98 0 0 0 40.05.15l151.83-52.81A31.996 31.996 0 0 0 576 394.34V48.02c0-9.19-7.53-16.02-15.98-16.02zM224 90.42l128 45.19v285.97l-128-45.19V90.42zM48 418.05V129.07l128-44.53v286.2l-.64.23L48 418.05zm480-35.13l-128 44.53V141.26l.64-.24L528 93.95v288.97z"] }; +var faMeh = { prefix: 'far', iconName: 'meh', icon: [496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm8 144H160c-13.2 0-24 10.8-24 24s10.8 24 24 24h176c13.2 0 24-10.8 24-24s-10.8-24-24-24z"] }; +var faMehBlank = { prefix: 'far', iconName: 'meh-blank', icon: [496, 512, [], "f5a4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"] }; +var faMehRollingEyes = { prefix: 'far', iconName: 'meh-rolling-eyes', icon: [496, 512, [], "f5a5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm88-304c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm0 112c-22.1 0-40-17.9-40-40 0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40zm-104-40c0-39.8-32.2-72-72-72s-72 32.2-72 72 32.2 72 72 72 72-32.2 72-72zm-112 0c0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40s-40-17.9-40-40zm192 128H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z"] }; +var faMinusSquare = { prefix: 'far', iconName: 'minus-square', icon: [448, 512, [], "f146", "M108 284c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h232c6.6 0 12 5.4 12 12v32c0 6.6-5.4 12-12 12H108zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faMoneyBillAlt = { prefix: 'far', iconName: 'money-bill-alt', icon: [640, 512, [], "f3d1", "M320 144c-53.02 0-96 50.14-96 112 0 61.85 42.98 112 96 112 53 0 96-50.13 96-112 0-61.86-42.98-112-96-112zm40 168c0 4.42-3.58 8-8 8h-64c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h16v-55.44l-.47.31a7.992 7.992 0 0 1-11.09-2.22l-8.88-13.31a7.992 7.992 0 0 1 2.22-11.09l15.33-10.22a23.99 23.99 0 0 1 13.31-4.03H328c4.42 0 8 3.58 8 8v88h16c4.42 0 8 3.58 8 8v16zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zm-16 272c-35.35 0-64 28.65-64 64H112c0-35.35-28.65-64-64-64V176c35.35 0 64-28.65 64-64h416c0 35.35 28.65 64 64 64v160z"] }; +var faMoon = { prefix: 'far', iconName: 'moon', icon: [512, 512, [], "f186", "M279.135 512c78.756 0 150.982-35.804 198.844-94.775 28.27-34.831-2.558-85.722-46.249-77.401-82.348 15.683-158.272-47.268-158.272-130.792 0-48.424 26.06-92.292 67.434-115.836 38.745-22.05 28.999-80.788-15.022-88.919A257.936 257.936 0 0 0 279.135 0c-141.36 0-256 114.575-256 256 0 141.36 114.576 256 256 256zm0-464c12.985 0 25.689 1.201 38.016 3.478-54.76 31.163-91.693 90.042-91.693 157.554 0 113.848 103.641 199.2 215.252 177.944C402.574 433.964 344.366 464 279.135 464c-114.875 0-208-93.125-208-208s93.125-208 208-208z"] }; +var faNewspaper = { prefix: 'far', iconName: 'newspaper', icon: [576, 512, [], "f1ea", "M552 64H112c-20.858 0-38.643 13.377-45.248 32H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h496c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24zM48 392V144h16v248c0 4.411-3.589 8-8 8s-8-3.589-8-8zm480 8H111.422c.374-2.614.578-5.283.578-8V112h416v288zM172 280h136c6.627 0 12-5.373 12-12v-96c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v96c0 6.627 5.373 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H172c-6.627 0-12-5.373-12-12zm192 0v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0-144v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0 72v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12z"] }; +var faObjectGroup = { prefix: 'far', iconName: 'object-group', icon: [512, 512, [], "f247", "M500 128c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v256H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V128h12zm-52-64h32v32h-32V64zM32 64h32v32H32V64zm32 384H32v-32h32v32zm416 0h-32v-32h32v32zm-40-64h-12c-6.627 0-12 5.373-12 12v12H96v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h12v256zm-36-192h-84v-52c0-6.628-5.373-12-12-12H108c-6.627 0-12 5.372-12 12v168c0 6.628 5.373 12 12 12h84v52c0 6.628 5.373 12 12 12h200c6.627 0 12-5.372 12-12V204c0-6.628-5.373-12-12-12zm-268-24h144v112H136V168zm240 176H232v-24h76c6.627 0 12-5.372 12-12v-76h56v112z"] }; +var faObjectUngroup = { prefix: 'far', iconName: 'object-ungroup', icon: [576, 512, [], "f248", "M564 224c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12h-88v-24h12c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v160H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h88v24h-12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V224h12zM352 64h32v32h-32V64zm0 256h32v32h-32v-32zM64 352H32v-32h32v32zm0-256H32V64h32v32zm32 216v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h12v160h-12c-6.627 0-12 5.373-12 12v12H96zm128 136h-32v-32h32v32zm280-64h-12c-6.627 0-12 5.373-12 12v12H256v-12c0-6.627-5.373-12-12-12h-12v-24h88v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12v-88h88v12c0 6.627 5.373 12 12 12h12v160zm40 64h-32v-32h32v32zm0-256h-32v-32h32v32z"] }; +var faPaperPlane = { prefix: 'far', iconName: 'paper-plane', icon: [512, 512, [], "f1d8", "M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z"] }; +var faPauseCircle = { prefix: 'far', iconName: 'pause-circle', icon: [512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm96-280v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16zm-112 0v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16z"] }; +var faPlayCircle = { prefix: 'far', iconName: 'play-circle', icon: [512, 512, [], "f144", "M371.7 238l-176-107c-15.8-8.8-35.7 2.5-35.7 21v208c0 18.4 19.8 29.8 35.7 21l176-101c16.4-9.1 16.4-32.8 0-42zM504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256z"] }; +var faPlusSquare = { prefix: 'far', iconName: 'plus-square', icon: [448, 512, [], "f0fe", "M352 240v32c0 6.6-5.4 12-12 12h-88v88c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-88h-88c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h88v-88c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v88h88c6.6 0 12 5.4 12 12zm96-160v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faQuestionCircle = { prefix: 'far', iconName: 'question-circle', icon: [512, 512, [], "f059", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 448c-110.532 0-200-89.431-200-200 0-110.495 89.472-200 200-200 110.491 0 200 89.471 200 200 0 110.53-89.431 200-200 200zm107.244-255.2c0 67.052-72.421 68.084-72.421 92.863V300c0 6.627-5.373 12-12 12h-45.647c-6.627 0-12-5.373-12-12v-8.659c0-35.745 27.1-50.034 47.579-61.516 17.561-9.845 28.324-16.541 28.324-29.579 0-17.246-21.999-28.693-39.784-28.693-23.189 0-33.894 10.977-48.942 29.969-4.057 5.12-11.46 6.071-16.666 2.124l-27.824-21.098c-5.107-3.872-6.251-11.066-2.644-16.363C184.846 131.491 214.94 112 261.794 112c49.071 0 101.45 38.304 101.45 88.8zM298 368c0 23.159-18.841 42-42 42s-42-18.841-42-42 18.841-42 42-42 42 18.841 42 42z"] }; +var faRegistered = { prefix: 'far', iconName: 'registered', icon: [512, 512, [], "f25d", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm110.442-81.791c-53.046-96.284-50.25-91.468-53.271-96.085 24.267-13.879 39.482-41.563 39.482-73.176 0-52.503-30.247-85.252-101.498-85.252h-78.667c-6.617 0-12 5.383-12 12V380c0 6.617 5.383 12 12 12h38.568c6.617 0 12-5.383 12-12v-83.663h31.958l47.515 89.303a11.98 11.98 0 0 0 10.593 6.36h42.81c9.14 0 14.914-9.799 10.51-17.791zM256.933 239.906h-33.875v-64.14h27.377c32.417 0 38.929 12.133 38.929 31.709-.001 20.913-11.518 32.431-32.431 32.431z"] }; +var faSadCry = { prefix: 'far', iconName: 'sad-cry', icon: [496, 512, [], "f5b3", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm144 386.4V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v151.4C315.5 447 282.8 456 248 456s-67.5-9-96-24.6V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v114.4c-34.6-36-56-84.7-56-138.4 0-110.3 89.7-200 200-200s200 89.7 200 200c0 53.7-21.4 102.5-56 138.4zM205.8 234.5c4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.3 7.9 4.8 13.7 1.6zM344 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.5 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm-96 92c-30.9 0-56 28.7-56 64s25.1 64 56 64 56-28.7 56-64-25.1-64-56-64z"] }; +var faSadTear = { prefix: 'far', iconName: 'sad-tear', icon: [496, 512, [], "f5b4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm8-152c-13.2 0-24 10.8-24 24s10.8 24 24 24c23.8 0 46.3 10.5 61.6 28.8 8.1 9.8 23.2 11.9 33.8 3.1 10.2-8.5 11.6-23.6 3.1-33.8C330 320.8 294.1 304 256 304zm-88-64c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-165.6 98.8C151 290.1 126 325.4 126 342.9c0 22.7 18.8 41.1 42 41.1s42-18.4 42-41.1c0-17.5-25-52.8-36.4-68.1-2.8-3.7-8.4-3.7-11.2 0z"] }; +var faSave = { prefix: 'far', iconName: 'save', icon: [448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM272 80v80H144V80h128zm122 352H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h42v104c0 13.255 10.745 24 24 24h176c13.255 0 24-10.745 24-24V83.882l78.243 78.243a6 6 0 0 1 1.757 4.243V426a6 6 0 0 1-6 6zM224 232c-48.523 0-88 39.477-88 88s39.477 88 88 88 88-39.477 88-88-39.477-88-88-88zm0 128c-22.056 0-40-17.944-40-40s17.944-40 40-40 40 17.944 40 40-17.944 40-40 40z"] }; +var faShareSquare = { prefix: 'far', iconName: 'share-square', icon: [576, 512, [], "f14d", "M561.938 158.06L417.94 14.092C387.926-15.922 336 5.097 336 48.032v57.198c-42.45 1.88-84.03 6.55-120.76 17.99-35.17 10.95-63.07 27.58-82.91 49.42C108.22 199.2 96 232.6 96 271.94c0 61.697 33.178 112.455 84.87 144.76 37.546 23.508 85.248-12.651 71.02-55.74-15.515-47.119-17.156-70.923 84.11-78.76V336c0 42.993 51.968 63.913 81.94 33.94l143.998-144c18.75-18.74 18.75-49.14 0-67.88zM384 336V232.16C255.309 234.082 166.492 255.35 206.31 376 176.79 357.55 144 324.08 144 271.94c0-109.334 129.14-118.947 240-119.85V48l144 144-144 144zm24.74 84.493a82.658 82.658 0 0 0 20.974-9.303c7.976-4.952 18.286.826 18.286 10.214V464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h132c6.627 0 12 5.373 12 12v4.486c0 4.917-2.987 9.369-7.569 11.152-13.702 5.331-26.396 11.537-38.05 18.585a12.138 12.138 0 0 1-6.28 1.777H54a6 6 0 0 0-6 6v340a6 6 0 0 0 6 6h340a6 6 0 0 0 6-6v-25.966c0-5.37 3.579-10.059 8.74-11.541z"] }; +var faSmile = { prefix: 'far', iconName: 'smile', icon: [496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm4 72.6c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.1-8.4-25.3-7.1-33.8 3.1z"] }; +var faSmileBeam = { prefix: 'far', iconName: 'smile-beam', icon: [496, 512, [], "f5b8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm84-143.4c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.6-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.2-8.4-25.3-7.1-33.8 3.1zM136.5 211c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.4 1.1 7.4-.5 9.3-3.7l9.5-17zM328 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4z"] }; +var faSmileWink = { prefix: 'far', iconName: 'smile-wink', icon: [496, 512, [], "f4da", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm117.8-146.4c-10.2-8.5-25.3-7.1-33.8 3.1-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-60c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1z"] }; +var faSnowflake = { prefix: 'far', iconName: 'snowflake', icon: [448, 512, [], "f2dc", "M438.237 355.927l-66.574-38.54 59.448-10.327c5.846-1.375 10.609-5.183 13.458-10.13 2.48-4.307 3.506-9.478 2.524-14.651-2.11-11.115-12.686-18.039-23.621-15.467l-85.423 31.115L255.914 256l82.136-41.926 85.423 31.115c10.936 2.572 21.512-4.352 23.621-15.467 2.111-11.115-5.046-22.209-15.981-24.781l-59.448-10.327 66.573-38.54c9.54-5.523 12.615-18.092 6.867-28.074-5.748-9.982-18.14-13.596-27.68-8.074l-66.574 38.54 20.805-56.787c3.246-10.782-2.758-22.542-13.413-26.268-10.654-3.725-21.922 1.997-25.168 12.779l-15.838 89.735-72.423 41.926V136l69.585-58.621c7.689-8.21 6.997-20.856-1.548-28.245-8.545-7.391-21.705-6.723-29.394 1.486l-38.644 46.46V20c0-11.046-9.318-20-20.813-20s-20.813 8.954-20.813 20v77.08l-38.644-46.46c-7.689-8.21-20.849-8.876-29.394-1.486-8.544 7.389-9.236 20.035-1.547 28.245L203.187 136v83.853l-72.423-41.926-15.838-89.736c-3.247-10.782-14.515-16.504-25.169-12.779-10.656 3.725-16.659 15.486-13.413 26.268l20.805 56.787-66.573-38.54c-9.54-5.523-21.933-1.908-27.68 8.074s-2.673 22.551 6.867 28.074l66.574 38.54-59.449 10.328C5.953 207.515-1.202 218.609.907 229.724c2.11 11.114 12.686 18.038 23.622 15.466l85.422-31.115L192.086 256l-82.136 41.926-85.423-31.115c-10.936-2.572-21.511 4.352-23.622 15.466-2.109 11.113 5.046 22.209 15.981 24.781l59.449 10.328-66.574 38.54C.223 361.449-2.852 374.018 2.896 384s18.14 13.597 27.68 8.074l66.574-38.54-20.805 56.786c-1.735 5.764-.828 11.805 2.02 16.751 2.48 4.307 6.433 7.784 11.392 9.517 10.655 3.725 21.923-1.997 25.169-12.779l15.838-89.736 72.423-41.926V376l-69.585 58.621c-7.69 8.21-6.997 20.855 1.547 28.245 8.544 7.388 21.705 6.723 29.394-1.487l38.644-46.46V492c0 11.046 9.318 20 20.813 20s20.813-8.954 20.813-20v-77.081l38.644 46.46c4.111 4.389 9.782 6.621 15.478 6.621 4.96 0 9.939-1.694 13.916-5.134 8.545-7.39 9.237-20.035 1.548-28.245L244.813 376v-83.853l72.423 41.926 15.838 89.736c3.246 10.782 14.514 16.504 25.168 12.779 10.653-3.726 16.659-15.487 13.412-26.268l-20.805-56.787 66.574 38.54c9.54 5.523 21.933 1.908 27.68-8.074 5.749-9.981 2.675-22.55-6.866-28.072z"] }; +var faSquare = { prefix: 'far', iconName: 'square', icon: [448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h340c3.3 0 6 2.7 6 6v340c0 3.3-2.7 6-6 6z"] }; +var faStar = { prefix: 'far', iconName: 'star', icon: [576, 512, [], "f005", "M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z"] }; +var faStarHalf = { prefix: 'far', iconName: 'star-half', icon: [576, 512, [], "f089", "M288 385.3l-124.3 65.4 23.7-138.4-100.6-98 139-20.2 62.2-126V0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6v-54.3z"] }; +var faStickyNote = { prefix: 'far', iconName: 'sticky-note', icon: [448, 512, [], "f249", "M448 348.106V80c0-26.51-21.49-48-48-48H48C21.49 32 0 53.49 0 80v351.988c0 26.51 21.49 48 48 48h268.118a48 48 0 0 0 33.941-14.059l83.882-83.882A48 48 0 0 0 448 348.106zm-128 80v-76.118h76.118L320 428.106zM400 80v223.988H296c-13.255 0-24 10.745-24 24v104H48V80h352z"] }; +var faStopCircle = { prefix: 'far', iconName: 'stop-circle', icon: [512, 512, [], "f28d", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm296-80v160c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16z"] }; +var faSun = { prefix: 'far', iconName: 'sun', icon: [512, 512, [], "f185", "M220.116 487.936l-20.213-49.425a3.992 3.992 0 0 0-5.808-1.886l-45.404 28.104c-29.466 18.24-66.295-8.519-58.054-42.179l12.699-51.865a3.993 3.993 0 0 0-3.59-4.941l-53.251-3.951c-34.554-2.562-48.632-45.855-22.174-68.247L65.08 259.05a3.992 3.992 0 0 0 0-6.106l-40.76-34.497c-26.45-22.384-12.39-65.682 22.174-68.246l53.251-3.951a3.993 3.993 0 0 0 3.59-4.941L90.637 89.443c-8.239-33.656 28.581-60.42 58.054-42.179l45.403 28.104a3.993 3.993 0 0 0 5.808-1.887l20.213-49.425c13.116-32.071 58.638-32.081 71.758 0l20.212 49.424a3.994 3.994 0 0 0 5.809 1.887l45.403-28.104c29.464-18.236 66.297 8.513 58.054 42.179l-12.699 51.865a3.995 3.995 0 0 0 3.59 4.941l53.251 3.951c34.553 2.563 48.633 45.854 22.175 68.246l-40.76 34.497a3.993 3.993 0 0 0 0 6.107l40.76 34.496c26.511 22.441 12.322 65.689-22.175 68.247l-53.251 3.951a3.993 3.993 0 0 0-3.589 4.942l12.698 51.864c8.241 33.658-28.583 60.421-58.054 42.18l-45.403-28.104a3.994 3.994 0 0 0-5.809 1.887l-20.212 49.424c-13.159 32.178-58.675 31.993-71.757 0zm16.814-64.568l19.064 46.616 19.064-46.615c10.308-25.2 40.778-35.066 63.892-20.759l42.822 26.507-11.976-48.919c-6.475-26.444 12.38-52.339 39.487-54.349l50.226-3.726-38.444-32.536c-20.782-17.591-20.747-49.621.001-67.18l38.442-32.536-50.225-3.727c-27.151-2.015-45.95-27.948-39.488-54.349l11.978-48.919-42.823 26.507c-23.151 14.327-53.603 4.4-63.892-20.76l-19.064-46.615-19.064 46.617c-10.305 25.198-40.778 35.066-63.891 20.76l-42.823-26.508 11.977 48.918c6.474 26.446-12.381 52.338-39.488 54.35l-50.224 3.726 38.443 32.537c20.782 17.588 20.747 49.619 0 67.178L52.48 322.123l50.226 3.726c27.151 2.014 45.95 27.947 39.487 54.349l-11.977 48.919 42.823-26.507c23.188-14.355 53.622-4.352 63.891 20.758zM256 384c-70.58 0-128-57.421-128-128 0-70.58 57.42-128 128-128 70.579 0 128 57.42 128 128 0 70.579-57.421 128-128 128zm0-208c-44.112 0-80 35.888-80 80s35.888 80 80 80 80-35.888 80-80-35.888-80-80-80z"] }; +var faSurprise = { prefix: 'far', iconName: 'surprise', icon: [496, 512, [], "f5c2", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-176c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm-48-72c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"] }; +var faThumbsDown = { prefix: 'far', iconName: 'thumbs-down', icon: [512, 512, [], "f165", "M466.27 225.31c4.674-22.647.864-44.538-8.99-62.99 2.958-23.868-4.021-48.565-17.34-66.99C438.986 39.423 404.117 0 327 0c-7 0-15 .01-22.22.01C201.195.01 168.997 40 128 40h-10.845c-5.64-4.975-13.042-8-21.155-8H32C14.327 32 0 46.327 0 64v240c0 17.673 14.327 32 32 32h64c11.842 0 22.175-6.438 27.708-16h7.052c19.146 16.953 46.013 60.653 68.76 83.4 13.667 13.667 10.153 108.6 71.76 108.6 57.58 0 95.27-31.936 95.27-104.73 0-18.41-3.93-33.73-8.85-46.54h36.48c48.602 0 85.82-41.565 85.82-85.58 0-19.15-4.96-34.99-13.73-49.84zM64 296c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm330.18 16.73H290.19c0 37.82 28.36 55.37 28.36 94.54 0 23.75 0 56.73-47.27 56.73-18.91-18.91-9.46-66.18-37.82-94.54C206.9 342.89 167.28 272 138.92 272H128V85.83c53.611 0 100.001-37.82 171.64-37.82h37.82c35.512 0 60.82 17.12 53.12 65.9 15.2 8.16 26.5 36.44 13.94 57.57 21.581 20.384 18.699 51.065 5.21 65.62 9.45 0 22.36 18.91 22.27 37.81-.09 18.91-16.71 37.82-37.82 37.82z"] }; +var faThumbsUp = { prefix: 'far', iconName: 'thumbs-up', icon: [512, 512, [], "f164", "M466.27 286.69C475.04 271.84 480 256 480 236.85c0-44.015-37.218-85.58-85.82-85.58H357.7c4.92-12.81 8.85-28.13 8.85-46.54C366.55 31.936 328.86 0 271.28 0c-61.607 0-58.093 94.933-71.76 108.6-22.747 22.747-49.615 66.447-68.76 83.4H32c-17.673 0-32 14.327-32 32v240c0 17.673 14.327 32 32 32h64c14.893 0 27.408-10.174 30.978-23.95 44.509 1.001 75.06 39.94 177.802 39.94 7.22 0 15.22.01 22.22.01 77.117 0 111.986-39.423 112.94-95.33 13.319-18.425 20.299-43.122 17.34-66.99 9.854-18.452 13.664-40.343 8.99-62.99zm-61.75 53.83c12.56 21.13 1.26 49.41-13.94 57.57 7.7 48.78-17.608 65.9-53.12 65.9h-37.82c-71.639 0-118.029-37.82-171.64-37.82V240h10.92c28.36 0 67.98-70.89 94.54-97.46 28.36-28.36 18.91-75.63 37.82-94.54 47.27 0 47.27 32.98 47.27 56.73 0 39.17-28.36 56.72-28.36 94.54h103.99c21.11 0 37.73 18.91 37.82 37.82.09 18.9-12.82 37.81-22.27 37.81 13.489 14.555 16.371 45.236-5.21 65.62zM88 432c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"] }; +var faTimesCircle = { prefix: 'far', iconName: 'times-circle', icon: [512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm101.8-262.2L295.6 256l62.2 62.2c4.7 4.7 4.7 12.3 0 17l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L256 295.6l-62.2 62.2c-4.7 4.7-12.3 4.7-17 0l-22.6-22.6c-4.7-4.7-4.7-12.3 0-17l62.2-62.2-62.2-62.2c-4.7-4.7-4.7-12.3 0-17l22.6-22.6c4.7-4.7 12.3-4.7 17 0l62.2 62.2 62.2-62.2c4.7-4.7 12.3-4.7 17 0l22.6 22.6c4.7 4.7 4.7 12.3 0 17z"] }; +var faTired = { prefix: 'far', iconName: 'tired', icon: [496, 512, [], "f5c8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm129.1-303.8c-3.8-4.4-10.3-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.8 1.6 15.3-2.5 3.8-4.5 3.9-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zM220 208c0-4.2-2.2-8.1-5.8-10.3l-80-48c-5-3-11.5-1.9-15.3 2.5-3.8 4.5-3.9 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.5 4.1 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3zm28 64c-45.4 0-100.9 38.3-107.8 93.3-1.5 11.8 6.9 21.6 15.5 17.9C178.4 373.5 212 368 248 368s69.6 5.5 92.3 15.2c8.5 3.7 17-6 15.5-17.9-6.9-55-62.4-93.3-107.8-93.3z"] }; +var faTrashAlt = { prefix: 'far', iconName: 'trash-alt', icon: [448, 512, [], "f2ed", "M192 188v216c0 6.627-5.373 12-12 12h-24c-6.627 0-12-5.373-12-12V188c0-6.627 5.373-12 12-12h24c6.627 0 12 5.373 12 12zm100-12h-24c-6.627 0-12 5.373-12 12v216c0 6.627 5.373 12 12 12h24c6.627 0 12-5.373 12-12V188c0-6.627-5.373-12-12-12zm132-96c13.255 0 24 10.745 24 24v12c0 6.627-5.373 12-12 12h-20v336c0 26.51-21.49 48-48 48H80c-26.51 0-48-21.49-48-48V128H12c-6.627 0-12-5.373-12-12v-12c0-13.255 10.745-24 24-24h74.411l34.018-56.696A48 48 0 0 1 173.589 0h100.823a48 48 0 0 1 41.16 23.304L349.589 80H424zm-269.611 0h139.223L276.16 50.913A6 6 0 0 0 271.015 48h-94.028a6 6 0 0 0-5.145 2.913L154.389 80zM368 128H80v330a6 6 0 0 0 6 6h276a6 6 0 0 0 6-6V128z"] }; +var faUser = { prefix: 'far', iconName: 'user', icon: [448, 512, [], "f007", "M313.6 304c-28.7 0-42.5 16-89.6 16-47.1 0-60.8-16-89.6-16C60.2 304 0 364.2 0 438.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-25.6c0-74.2-60.2-134.4-134.4-134.4zM400 464H48v-25.6c0-47.6 38.8-86.4 86.4-86.4 14.6 0 38.3 16 89.6 16 51.7 0 74.9-16 89.6-16 47.6 0 86.4 38.8 86.4 86.4V464zM224 288c79.5 0 144-64.5 144-144S303.5 0 224 0 80 64.5 80 144s64.5 144 144 144zm0-240c52.9 0 96 43.1 96 96s-43.1 96-96 96-96-43.1-96-96 43.1-96 96-96z"] }; +var faUserCircle = { prefix: 'far', iconName: 'user-circle', icon: [496, 512, [], "f2bd", "M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"] }; +var faWindowClose = { prefix: 'far', iconName: 'window-close', icon: [512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v340zM356.5 194.6L295.1 256l61.4 61.4c4.6 4.6 4.6 12.1 0 16.8l-22.3 22.3c-4.6 4.6-12.1 4.6-16.8 0L256 295.1l-61.4 61.4c-4.6 4.6-12.1 4.6-16.8 0l-22.3-22.3c-4.6-4.6-4.6-12.1 0-16.8l61.4-61.4-61.4-61.4c-4.6-4.6-4.6-12.1 0-16.8l22.3-22.3c4.6-4.6 12.1-4.6 16.8 0l61.4 61.4 61.4-61.4c4.6-4.6 12.1-4.6 16.8 0l22.3 22.3c4.7 4.6 4.7 12.1 0 16.8z"] }; +var faWindowMaximize = { prefix: 'far', iconName: 'window-maximize', icon: [512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V192h416v234z"] }; +var faWindowMinimize = { prefix: 'far', iconName: 'window-minimize', icon: [512, 512, [], "f2d1", "M480 480H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h448c17.7 0 32 14.3 32 32s-14.3 32-32 32z"] }; +var faWindowRestore = { prefix: 'far', iconName: 'window-restore', icon: [512, 512, [], "f2d2", "M464 0H144c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-96 464H48V256h320v208zm96-96h-48V144c0-26.5-21.5-48-48-48H144V48h320v320z"] }; +var _iconsCache = { + faAddressBook: faAddressBook, + faAddressCard: faAddressCard, + faAngry: faAngry, + faArrowAltCircleDown: faArrowAltCircleDown, + faArrowAltCircleLeft: faArrowAltCircleLeft, + faArrowAltCircleRight: faArrowAltCircleRight, + faArrowAltCircleUp: faArrowAltCircleUp, + faBell: faBell, + faBellSlash: faBellSlash, + faBookmark: faBookmark, + faBuilding: faBuilding, + faCalendar: faCalendar, + faCalendarAlt: faCalendarAlt, + faCalendarCheck: faCalendarCheck, + faCalendarMinus: faCalendarMinus, + faCalendarPlus: faCalendarPlus, + faCalendarTimes: faCalendarTimes, + faCaretSquareDown: faCaretSquareDown, + faCaretSquareLeft: faCaretSquareLeft, + faCaretSquareRight: faCaretSquareRight, + faCaretSquareUp: faCaretSquareUp, + faChartBar: faChartBar, + faCheckCircle: faCheckCircle, + faCheckSquare: faCheckSquare, + faCircle: faCircle, + faClipboard: faClipboard, + faClock: faClock, + faClone: faClone, + faClosedCaptioning: faClosedCaptioning, + faComment: faComment, + faCommentAlt: faCommentAlt, + faCommentDots: faCommentDots, + faComments: faComments, + faCompass: faCompass, + faCopy: faCopy, + faCopyright: faCopyright, + faCreditCard: faCreditCard, + faDizzy: faDizzy, + faDotCircle: faDotCircle, + faEdit: faEdit, + faEnvelope: faEnvelope, + faEnvelopeOpen: faEnvelopeOpen, + faEye: faEye, + faEyeSlash: faEyeSlash, + faFile: faFile, + faFileAlt: faFileAlt, + faFileArchive: faFileArchive, + faFileAudio: faFileAudio, + faFileCode: faFileCode, + faFileExcel: faFileExcel, + faFileImage: faFileImage, + faFilePdf: faFilePdf, + faFilePowerpoint: faFilePowerpoint, + faFileVideo: faFileVideo, + faFileWord: faFileWord, + faFlag: faFlag, + faFlushed: faFlushed, + faFolder: faFolder, + faFolderOpen: faFolderOpen, + faFontAwesomeLogoFull: faFontAwesomeLogoFull, + faFrown: faFrown, + faFrownOpen: faFrownOpen, + faFutbol: faFutbol, + faGem: faGem, + faGrimace: faGrimace, + faGrin: faGrin, + faGrinAlt: faGrinAlt, + faGrinBeam: faGrinBeam, + faGrinBeamSweat: faGrinBeamSweat, + faGrinHearts: faGrinHearts, + faGrinSquint: faGrinSquint, + faGrinSquintTears: faGrinSquintTears, + faGrinStars: faGrinStars, + faGrinTears: faGrinTears, + faGrinTongue: faGrinTongue, + faGrinTongueSquint: faGrinTongueSquint, + faGrinTongueWink: faGrinTongueWink, + faGrinWink: faGrinWink, + faHandLizard: faHandLizard, + faHandPaper: faHandPaper, + faHandPeace: faHandPeace, + faHandPointDown: faHandPointDown, + faHandPointLeft: faHandPointLeft, + faHandPointRight: faHandPointRight, + faHandPointUp: faHandPointUp, + faHandPointer: faHandPointer, + faHandRock: faHandRock, + faHandScissors: faHandScissors, + faHandSpock: faHandSpock, + faHandshake: faHandshake, + faHdd: faHdd, + faHeart: faHeart, + faHospital: faHospital, + faHourglass: faHourglass, + faIdBadge: faIdBadge, + faIdCard: faIdCard, + faImage: faImage, + faImages: faImages, + faKeyboard: faKeyboard, + faKiss: faKiss, + faKissBeam: faKissBeam, + faKissWinkHeart: faKissWinkHeart, + faLaugh: faLaugh, + faLaughBeam: faLaughBeam, + faLaughSquint: faLaughSquint, + faLaughWink: faLaughWink, + faLemon: faLemon, + faLifeRing: faLifeRing, + faLightbulb: faLightbulb, + faListAlt: faListAlt, + faMap: faMap, + faMeh: faMeh, + faMehBlank: faMehBlank, + faMehRollingEyes: faMehRollingEyes, + faMinusSquare: faMinusSquare, + faMoneyBillAlt: faMoneyBillAlt, + faMoon: faMoon, + faNewspaper: faNewspaper, + faObjectGroup: faObjectGroup, + faObjectUngroup: faObjectUngroup, + faPaperPlane: faPaperPlane, + faPauseCircle: faPauseCircle, + faPlayCircle: faPlayCircle, + faPlusSquare: faPlusSquare, + faQuestionCircle: faQuestionCircle, + faRegistered: faRegistered, + faSadCry: faSadCry, + faSadTear: faSadTear, + faSave: faSave, + faShareSquare: faShareSquare, + faSmile: faSmile, + faSmileBeam: faSmileBeam, + faSmileWink: faSmileWink, + faSnowflake: faSnowflake, + faSquare: faSquare, + faStar: faStar, + faStarHalf: faStarHalf, + faStickyNote: faStickyNote, + faStopCircle: faStopCircle, + faSun: faSun, + faSurprise: faSurprise, + faThumbsDown: faThumbsDown, + faThumbsUp: faThumbsUp, + faTimesCircle: faTimesCircle, + faTired: faTired, + faTrashAlt: faTrashAlt, + faUser: faUser, + faUserCircle: faUserCircle, + faWindowClose: faWindowClose, + faWindowMaximize: faWindowMaximize, + faWindowMinimize: faWindowMinimize, + faWindowRestore: faWindowRestore +}; + +export { _iconsCache as far, prefix, faAddressBook, faAddressCard, faAngry, faArrowAltCircleDown, faArrowAltCircleLeft, faArrowAltCircleRight, faArrowAltCircleUp, faBell, faBellSlash, faBookmark, faBuilding, faCalendar, faCalendarAlt, faCalendarCheck, faCalendarMinus, faCalendarPlus, faCalendarTimes, faCaretSquareDown, faCaretSquareLeft, faCaretSquareRight, faCaretSquareUp, faChartBar, faCheckCircle, faCheckSquare, faCircle, faClipboard, faClock, faClone, faClosedCaptioning, faComment, faCommentAlt, faCommentDots, faComments, faCompass, faCopy, faCopyright, faCreditCard, faDizzy, faDotCircle, faEdit, faEnvelope, faEnvelopeOpen, faEye, faEyeSlash, faFile, faFileAlt, faFileArchive, faFileAudio, faFileCode, faFileExcel, faFileImage, faFilePdf, faFilePowerpoint, faFileVideo, faFileWord, faFlag, faFlushed, faFolder, faFolderOpen, faFontAwesomeLogoFull, faFrown, faFrownOpen, faFutbol, faGem, faGrimace, faGrin, faGrinAlt, faGrinBeam, faGrinBeamSweat, faGrinHearts, faGrinSquint, faGrinSquintTears, faGrinStars, faGrinTears, faGrinTongue, faGrinTongueSquint, faGrinTongueWink, faGrinWink, faHandLizard, faHandPaper, faHandPeace, faHandPointDown, faHandPointLeft, faHandPointRight, faHandPointUp, faHandPointer, faHandRock, faHandScissors, faHandSpock, faHandshake, faHdd, faHeart, faHospital, faHourglass, faIdBadge, faIdCard, faImage, faImages, faKeyboard, faKiss, faKissBeam, faKissWinkHeart, faLaugh, faLaughBeam, faLaughSquint, faLaughWink, faLemon, faLifeRing, faLightbulb, faListAlt, faMap, faMeh, faMehBlank, faMehRollingEyes, faMinusSquare, faMoneyBillAlt, faMoon, faNewspaper, faObjectGroup, faObjectUngroup, faPaperPlane, faPauseCircle, faPlayCircle, faPlusSquare, faQuestionCircle, faRegistered, faSadCry, faSadTear, faSave, faShareSquare, faSmile, faSmileBeam, faSmileWink, faSnowflake, faSquare, faStar, faStarHalf, faStickyNote, faStopCircle, faSun, faSurprise, faThumbsDown, faThumbsUp, faTimesCircle, faTired, faTrashAlt, faUser, faUserCircle, faWindowClose, faWindowMaximize, faWindowMinimize, faWindowRestore }; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/index.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/index.js new file mode 100644 index 0000000000..39be1e305a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/index.js @@ -0,0 +1,476 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : + typeof define === 'function' && define.amd ? define(['exports'], factory) : + (factory((global['free-regular-svg-icons'] = {}))); +}(this, (function (exports) { 'use strict'; + +var prefix = "far"; +var faAddressBook = { prefix: 'far', iconName: 'address-book', icon: [448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-68 304H48V48h320v416zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"] }; +var faAddressCard = { prefix: 'far', iconName: 'address-card', icon: [576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H48V80h480v352zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2zM360 320h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8z"] }; +var faAngry = { prefix: 'far', iconName: 'angry', icon: [496, 512, [], "f556", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-144c-33.6 0-65.2 14.8-86.8 40.6-8.5 10.2-7.1 25.3 3.1 33.8s25.3 7.2 33.8-3c24.8-29.7 75-29.7 99.8 0 8.1 9.7 23.2 11.9 33.8 3 10.2-8.5 11.5-23.6 3.1-33.8-21.6-25.8-53.2-40.6-86.8-40.6zm-48-72c10.3 0 19.9-6.7 23-17.1 3.8-12.7-3.4-26.1-16.1-29.9l-80-24c-12.8-3.9-26.1 3.4-29.9 16.1-3.8 12.7 3.4 26.1 16.1 29.9l28.2 8.5c-3.1 4.9-5.3 10.4-5.3 16.6 0 17.7 14.3 32 32 32s32-14.4 32-32.1zm199-54.9c-3.8-12.7-17.1-19.9-29.9-16.1l-80 24c-12.7 3.8-19.9 17.2-16.1 29.9 3.1 10.4 12.7 17.1 23 17.1 0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.2-2.2-11.7-5.3-16.6l28.2-8.5c12.7-3.7 19.9-17.1 16.1-29.8z"] }; +var faArrowAltCircleDown = { prefix: 'far', iconName: 'arrow-alt-circle-down', icon: [512, 512, [], "f358", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm-32-316v116h-67c-10.7 0-16 12.9-8.5 20.5l99 99c4.7 4.7 12.3 4.7 17 0l99-99c7.6-7.6 2.2-20.5-8.5-20.5h-67V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12z"] }; +var faArrowAltCircleLeft = { prefix: 'far', iconName: 'arrow-alt-circle-left', icon: [512, 512, [], "f359", "M8 256c0 137 111 248 248 248s248-111 248-248S393 8 256 8 8 119 8 256zm448 0c0 110.5-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56s200 89.5 200 200zm-72-20v40c0 6.6-5.4 12-12 12H256v67c0 10.7-12.9 16-20.5 8.5l-99-99c-4.7-4.7-4.7-12.3 0-17l99-99c7.6-7.6 20.5-2.2 20.5 8.5v67h116c6.6 0 12 5.4 12 12z"] }; +var faArrowAltCircleRight = { prefix: 'far', iconName: 'arrow-alt-circle-right', icon: [512, 512, [], "f35a", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z"] }; +var faArrowAltCircleUp = { prefix: 'far', iconName: 'arrow-alt-circle-up', icon: [512, 512, [], "f35b", "M256 504c137 0 248-111 248-248S393 8 256 8 8 119 8 256s111 248 248 248zm0-448c110.5 0 200 89.5 200 200s-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56zm20 328h-40c-6.6 0-12-5.4-12-12V256h-67c-10.7 0-16-12.9-8.5-20.5l99-99c4.7-4.7 12.3-4.7 17 0l99 99c7.6 7.6 2.2 20.5-8.5 20.5h-67v116c0 6.6-5.4 12-12 12z"] }; +var faBell = { prefix: 'far', iconName: 'bell', icon: [448, 512, [], "f0f3", "M425.403 330.939c-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.843 31.843 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095C118.101 62.783 57.143 131.831 57.143 214.857c0 81.933-17.551 99.292-34.543 116.078C-25.496 378.441 9.726 448 66.919 448H160c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h93.08c57.19 0 92.415-69.583 44.323-117.061zM224 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm157.092-72H66.9c-16.762 0-25.135-20.39-13.334-32.191 28.585-28.585 51.577-55.724 51.577-152.952C105.143 149.319 158.462 96 224 96s118.857 53.319 118.857 118.857c0 97.65 23.221 124.574 51.568 152.952C406.278 379.661 397.783 400 381.092 400z"] }; +var faBellSlash = { prefix: 'far', iconName: 'bell-slash', icon: [576, 512, [], "f1f6", "M130.9 400c-16.762 0-25.135-20.39-13.334-32.191 25.226-25.226 46.094-49.338 50.649-121.48l-46.777-41.274a168.48 168.48 0 0 0-.296 9.802c0 81.933-17.551 99.292-34.543 116.078C38.504 378.441 73.726 448 130.919 448H224c0 35.346 28.654 64 64 64s64-28.654 64-64h44.777l-54.4-48H130.9zM288 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm283.867.553l-67.931-59.571c13.104-24.118 11.524-56.318-14.532-82.042-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.848 31.848 0 0 0 320 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095c-41.471 6.618-77.891 28.571-103.249 59.841L36.459 3.037c-5.058-4.436-12.777-3.956-17.24 1.071L3.056 22.313C-1.407 27.34-.925 35.012 4.134 39.447l535.408 469.516c5.058 4.436 12.777 3.956 17.24-1.071l16.163-18.205c4.462-5.027 3.98-12.699-1.078-17.134zM288 96c65.538 0 118.857 53.319 118.857 118.857 0 97.65 23.221 124.574 51.568 152.952 2.908 2.908 4.573 6.328 5.209 9.832L194.482 141.612C216.258 113.867 250.075 96 288 96z"] }; +var faBookmark = { prefix: 'far', iconName: 'bookmark', icon: [384, 512, [], "f02e", "M336 0H48C21.49 0 0 21.49 0 48v464l192-112 192 112V48c0-26.51-21.49-48-48-48zm0 428.43l-144-84-144 84V54a6 6 0 0 1 6-6h276c3.314 0 6 2.683 6 5.996V428.43z"] }; +var faBuilding = { prefix: 'far', iconName: 'building', icon: [448, 512, [], "f1ad", "M128 148v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12zm140 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-128 96h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm128 0h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-76 84v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm76 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm180 124v36H0v-36c0-6.6 5.4-12 12-12h19.5V24c0-13.3 10.7-24 24-24h337c13.3 0 24 10.7 24 24v440H436c6.6 0 12 5.4 12 12zM79.5 463H192v-67c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v67h112.5V49L80 48l-.5 415z"] }; +var faCalendar = { prefix: 'far', iconName: 'calendar', icon: [448, 512, [], "f133", "M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z"] }; +var faCalendarAlt = { prefix: 'far', iconName: 'calendar-alt', icon: [448, 512, [], "f073", "M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCalendarCheck = { prefix: 'far', iconName: 'calendar-check', icon: [448, 512, [], "f274", "M400 64h-48V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H160V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V160h352v298a6 6 0 0 1-6 6zm-52.849-200.65L198.842 404.519c-4.705 4.667-12.303 4.637-16.971-.068l-75.091-75.699c-4.667-4.705-4.637-12.303.068-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l44.104 44.461 111.072-110.181c4.705-4.667 12.303-4.637 16.971.068l22.536 22.718c4.667 4.705 4.636 12.303-.069 16.97z"] }; +var faCalendarMinus = { prefix: 'far', iconName: 'calendar-minus', icon: [448, 512, [], "f272", "M124 328c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H124zm324-216v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCalendarPlus = { prefix: 'far', iconName: 'calendar-plus', icon: [448, 512, [], "f271", "M336 292v24c0 6.6-5.4 12-12 12h-76v76c0 6.6-5.4 12-12 12h-24c-6.6 0-12-5.4-12-12v-76h-76c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h76v-76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v76h76c6.6 0 12 5.4 12 12zm112-180v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCalendarTimes = { prefix: 'far', iconName: 'calendar-times', icon: [448, 512, [], "f273", "M311.7 374.7l-17 17c-4.7 4.7-12.3 4.7-17 0L224 337.9l-53.7 53.7c-4.7 4.7-12.3 4.7-17 0l-17-17c-4.7-4.7-4.7-12.3 0-17l53.7-53.7-53.7-53.7c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0l53.7 53.7 53.7-53.7c4.7-4.7 12.3-4.7 17 0l17 17c4.7 4.7 4.7 12.3 0 17L257.9 304l53.7 53.7c4.8 4.7 4.8 12.3.1 17zM448 112v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCaretSquareDown = { prefix: 'far', iconName: 'caret-square-down', icon: [448, 512, [], "f150", "M125.1 208h197.8c10.7 0 16.1 13 8.5 20.5l-98.9 98.3c-4.7 4.7-12.2 4.7-16.9 0l-98.9-98.3c-7.7-7.5-2.3-20.5 8.4-20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCaretSquareLeft = { prefix: 'far', iconName: 'caret-square-left', icon: [448, 512, [], "f191", "M272 157.1v197.8c0 10.7-13 16.1-20.5 8.5l-98.3-98.9c-4.7-4.7-4.7-12.2 0-16.9l98.3-98.9c7.5-7.7 20.5-2.3 20.5 8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCaretSquareRight = { prefix: 'far', iconName: 'caret-square-right', icon: [448, 512, [], "f152", "M176 354.9V157.1c0-10.7 13-16.1 20.5-8.5l98.3 98.9c4.7 4.7 4.7 12.2 0 16.9l-98.3 98.9c-7.5 7.7-20.5 2.3-20.5-8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faCaretSquareUp = { prefix: 'far', iconName: 'caret-square-up', icon: [448, 512, [], "f151", "M322.9 304H125.1c-10.7 0-16.1-13-8.5-20.5l98.9-98.3c4.7-4.7 12.2-4.7 16.9 0l98.9 98.3c7.7 7.5 2.3 20.5-8.4 20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faChartBar = { prefix: 'far', iconName: 'chart-bar', icon: [512, 512, [], "f080", "M500 400c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v324h452zm-356-60v-72c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V140c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V204c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V108c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12z"] }; +var faCheckCircle = { prefix: 'far', iconName: 'check-circle', icon: [512, 512, [], "f058", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"] }; +var faCheckSquare = { prefix: 'far', iconName: 'check-square', icon: [448, 512, [], "f14a", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm0 400H48V80h352v352zm-35.864-241.724L191.547 361.48c-4.705 4.667-12.303 4.637-16.97-.068l-90.781-91.516c-4.667-4.705-4.637-12.303.069-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l59.792 60.277 141.352-140.216c4.705-4.667 12.303-4.637 16.97.068l22.536 22.718c4.667 4.706 4.637 12.304-.068 16.971z"] }; +var faCircle = { prefix: 'far', iconName: 'circle', icon: [512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z"] }; +var faClipboard = { prefix: 'far', iconName: 'clipboard', icon: [384, 512, [], "f328", "M336 64h-80c0-35.29-28.71-64-64-64s-64 28.71-64 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h42v36c0 6.627 5.373 12 12 12h168c6.627 0 12-5.373 12-12v-36h42a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zM192 40c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24"] }; +var faClock = { prefix: 'far', iconName: 'clock', icon: [512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"] }; +var faClone = { prefix: 'far', iconName: 'clone', icon: [512, 512, [], "f24d", "M464 0H144c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h320c26.51 0 48-21.49 48-48v-48h48c26.51 0 48-21.49 48-48V48c0-26.51-21.49-48-48-48zM362 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h42v224c0 26.51 21.49 48 48 48h224v42a6 6 0 0 1-6 6zm96-96H150a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h308a6 6 0 0 1 6 6v308a6 6 0 0 1-6 6z"] }; +var faClosedCaptioning = { prefix: 'far', iconName: 'closed-captioning', icon: [512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 336H54c-3.3 0-6-2.7-6-6V118c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v276c0 3.3-2.7 6-6 6zm-211.1-85.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7zm190.4 0c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.9-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 220.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7z"] }; +var faComment = { prefix: 'far', iconName: 'comment', icon: [512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"] }; +var faCommentAlt = { prefix: 'far', iconName: 'comment-alt', icon: [512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 7.1 5.8 12 12 12 2.4 0 4.9-.7 7.1-2.4L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm16 352c0 8.8-7.2 16-16 16H288l-12.8 9.6L208 428v-60H64c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h384c8.8 0 16 7.2 16 16v288z"] }; +var faCommentDots = { prefix: 'far', iconName: 'comment-dots', icon: [512, 512, [], "f4ad", "M144 208c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"] }; +var faComments = { prefix: 'far', iconName: 'comments', icon: [576, 512, [], "f086", "M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"] }; +var faCompass = { prefix: 'far', iconName: 'compass', icon: [512, 512, [], "f14e", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm91.326-312.131l-33.359 137.779a24.005 24.005 0 0 1-6.772 11.729l-102.64 97.779c-17.104 16.293-45.56.434-39.88-23.024l33.359-137.779a23.997 23.997 0 0 1 6.772-11.729l102.642-97.779c17.285-16.47 45.494-.175 39.878 23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; +var faCopy = { prefix: 'far', iconName: 'copy', icon: [448, 512, [], "f0c5", "M433.941 65.941l-51.882-51.882A48 48 0 0 0 348.118 0H176c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48v-48h80c26.51 0 48-21.49 48-48V99.882a48 48 0 0 0-14.059-33.941zM266 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h74v224c0 26.51 21.49 48 48 48h96v42a6 6 0 0 1-6 6zm128-96H182a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h106v88c0 13.255 10.745 24 24 24h88v202a6 6 0 0 1-6 6zm6-256h-64V48h9.632c1.591 0 3.117.632 4.243 1.757l48.368 48.368a6 6 0 0 1 1.757 4.243V112z"] }; +var faCopyright = { prefix: 'far', iconName: 'copyright', icon: [512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm107.351-101.064c-9.614 9.712-45.53 41.396-104.065 41.396-82.43 0-140.484-61.425-140.484-141.567 0-79.152 60.275-139.401 139.762-139.401 55.531 0 88.738 26.62 97.593 34.779a11.965 11.965 0 0 1 1.936 15.322l-18.155 28.113c-3.841 5.95-11.966 7.282-17.499 2.921-8.595-6.776-31.814-22.538-61.708-22.538-48.303 0-77.916 35.33-77.916 80.082 0 41.589 26.888 83.692 78.277 83.692 32.657 0 56.843-19.039 65.726-27.225 5.27-4.857 13.596-4.039 17.82 1.738l19.865 27.17a11.947 11.947 0 0 1-1.152 15.518z"] }; +var faCreditCard = { prefix: 'far', iconName: 'credit-card', icon: [576, 512, [], "f09d", "M527.9 32H48.1C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48.1 48h479.8c26.6 0 48.1-21.5 48.1-48V80c0-26.5-21.5-48-48.1-48zM54.1 80h467.8c3.3 0 6 2.7 6 6v42H48.1V86c0-3.3 2.7-6 6-6zm467.8 352H54.1c-3.3 0-6-2.7-6-6V256h479.8v170c0 3.3-2.7 6-6 6zM192 332v40c0 6.6-5.4 12-12 12h-72c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12zm192 0v40c0 6.6-5.4 12-12 12H236c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12z"] }; +var faDizzy = { prefix: 'far', iconName: 'dizzy', icon: [496, 512, [], "f567", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-33.8-217.9c7.8-7.8 7.8-20.5 0-28.3L196.3 192l17.9-17.9c7.8-7.8 7.8-20.5 0-28.3-7.8-7.8-20.5-7.8-28.3 0L168 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.9 7.7 20.5 7.7 28.4-.2zm160-92.2c-7.8-7.8-20.5-7.8-28.3 0L328 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.8 7.8 20.5 7.8 28.3 0 7.8-7.8 7.8-20.5 0-28.3l-17.8-18 17.9-17.9c7.7-7.8 7.7-20.4 0-28.2zM248 272c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64z"] }; +var faDotCircle = { prefix: 'far', iconName: 'dot-circle', icon: [512, 512, [], "f192", "M256 56c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m0-48C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 168c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80z"] }; +var faEdit = { prefix: 'far', iconName: 'edit', icon: [576, 512, [], "f044", "M402.3 344.9l32-32c5-5 13.7-1.5 13.7 5.7V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h273.5c7.1 0 10.7 8.6 5.7 13.7l-32 32c-1.5 1.5-3.5 2.3-5.7 2.3H48v352h352V350.5c0-2.1.8-4.1 2.3-5.6zm156.6-201.8L296.3 405.7l-90.4 10c-26.2 2.9-48.5-19.2-45.6-45.6l10-90.4L432.9 17.1c22.9-22.9 59.9-22.9 82.7 0l43.2 43.2c22.9 22.9 22.9 60 .1 82.8zM460.1 174L402 115.9 216.2 301.8l-7.3 65.3 65.3-7.3L460.1 174zm64.8-79.7l-43.2-43.2c-4.1-4.1-10.8-4.1-14.8 0L436 82l58.1 58.1 30.9-30.9c4-4.2 4-10.8-.1-14.9z"] }; +var faEnvelope = { prefix: 'far', iconName: 'envelope', icon: [512, 512, [], "f0e0", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z"] }; +var faEnvelopeOpen = { prefix: 'far', iconName: 'envelope-open', icon: [512, 512, [], "f2b6", "M494.586 164.516c-4.697-3.883-111.723-89.95-135.251-108.657C337.231 38.191 299.437 0 256 0c-43.205 0-80.636 37.717-103.335 55.859-24.463 19.45-131.07 105.195-135.15 108.549A48.004 48.004 0 0 0 0 201.485V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V201.509a48 48 0 0 0-17.414-36.993zM464 458a6 6 0 0 1-6 6H54a6 6 0 0 1-6-6V204.347c0-1.813.816-3.526 2.226-4.665 15.87-12.814 108.793-87.554 132.364-106.293C200.755 78.88 232.398 48 256 48c23.693 0 55.857 31.369 73.41 45.389 23.573 18.741 116.503 93.493 132.366 106.316a5.99 5.99 0 0 1 2.224 4.663V458zm-31.991-187.704c4.249 5.159 3.465 12.795-1.745 16.981-28.975 23.283-59.274 47.597-70.929 56.863C336.636 362.283 299.205 400 256 400c-43.452 0-81.287-38.237-103.335-55.86-11.279-8.967-41.744-33.413-70.927-56.865-5.21-4.187-5.993-11.822-1.745-16.981l15.258-18.528c4.178-5.073 11.657-5.843 16.779-1.726 28.618 23.001 58.566 47.035 70.56 56.571C200.143 320.631 232.307 352 256 352c23.602 0 55.246-30.88 73.41-45.389 11.994-9.535 41.944-33.57 70.563-56.568 5.122-4.116 12.601-3.346 16.778 1.727l15.258 18.526z"] }; +var faEye = { prefix: 'far', iconName: 'eye', icon: [576, 512, [], "f06e", "M569.354 231.631C512.97 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-102.556 0-192.091-54.701-240-136 44.157-74.933 123.677-127.27 216.162-135.007C273.958 131.078 280 144.83 280 160c0 30.928-25.072 56-56 56s-56-25.072-56-56l.001-.042C157.794 179.043 152 200.844 152 224c0 75.111 60.889 136 136 136s136-60.889 136-136c0-31.031-10.4-59.629-27.895-82.515C451.704 164.638 498.009 205.106 528 256c-47.908 81.299-137.444 136-240 136z"] }; +var faEyeSlash = { prefix: 'far', iconName: 'eye-slash', icon: [576, 512, [], "f070", "M272.702 359.139c-80.483-9.011-136.212-86.886-116.93-167.042l116.93 167.042zM288 392c-102.556 0-192.092-54.701-240-136 21.755-36.917 52.1-68.342 88.344-91.658l-27.541-39.343C67.001 152.234 31.921 188.741 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.004 376.006 168.14 440 288 440a332.89 332.89 0 0 0 39.648-2.367l-32.021-45.744A284.16 284.16 0 0 1 288 392zm281.354-111.631c-33.232 56.394-83.421 101.742-143.554 129.492l48.116 68.74c3.801 5.429 2.48 12.912-2.949 16.712L450.23 509.83c-5.429 3.801-12.912 2.48-16.712-2.949L102.084 33.399c-3.801-5.429-2.48-12.912 2.949-16.712L125.77 2.17c5.429-3.801 12.912-2.48 16.712 2.949l55.526 79.325C226.612 76.343 256.808 72 288 72c119.86 0 224.996 63.994 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM528 256c-44.157-74.933-123.677-127.27-216.162-135.007C302.042 131.078 296 144.83 296 160c0 30.928 25.072 56 56 56s56-25.072 56-56l-.001-.042c30.632 57.277 16.739 130.26-36.928 171.719l26.695 38.135C452.626 346.551 498.308 306.386 528 256z"] }; +var faFile = { prefix: 'far', iconName: 'file', icon: [384, 512, [], "f15b", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48z"] }; +var faFileAlt = { prefix: 'far', iconName: 'file-alt', icon: [384, 512, [], "f15c", "M288 248v28c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-28c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm-12 72H108c-6.6 0-12 5.4-12 12v28c0 6.6 5.4 12 12 12h168c6.6 0 12-5.4 12-12v-28c0-6.6-5.4-12-12-12zm108-188.1V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48C0 21.5 21.5 0 48 0h204.1C264.8 0 277 5.1 286 14.1L369.9 98c9 8.9 14.1 21.2 14.1 33.9zm-128-80V128h76.1L256 51.9zM336 464V176H232c-13.3 0-24-10.7-24-24V48H48v416h288z"] }; +var faFileArchive = { prefix: 'far', iconName: 'file-archive', icon: [384, 512, [], "f1c6", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM256 51.882L332.118 128H256V51.882zM336 464H48V48h79.714v16h32V48H208v104c0 13.255 10.745 24 24 24h104v288zM192.27 96h-32V64h32v32zm-32 0v32h-32V96h32zm0 64v32h-32v-32h32zm32 0h-32v-32h32v32zm1.909 105.678A12 12 0 0 0 182.406 256H160.27v-32h-32v32l-19.69 97.106C101.989 385.611 126.834 416 160 416c33.052 0 57.871-30.192 51.476-62.62l-17.297-87.702zM160.27 390.073c-17.918 0-32.444-12.105-32.444-27.036 0-14.932 14.525-27.036 32.444-27.036s32.444 12.105 32.444 27.036c0 14.931-14.526 27.036-32.444 27.036zm32-166.073h-32v-32h32v32z"] }; +var faFileAudio = { prefix: 'far', iconName: 'file-audio', icon: [384, 512, [], "f1c7", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm144-76.024c0 10.691-12.926 16.045-20.485 8.485L136 360.486h-28c-6.627 0-12-5.373-12-12v-56c0-6.627 5.373-12 12-12h28l35.515-36.947c7.56-7.56 20.485-2.206 20.485 8.485v135.952zm41.201-47.13c9.051-9.297 9.06-24.133.001-33.439-22.149-22.752 12.235-56.246 34.395-33.481 27.198 27.94 27.212 72.444.001 100.401-21.793 22.386-56.947-10.315-34.397-33.481z"] }; +var faFileCode = { prefix: 'far', iconName: 'file-code', icon: [384, 512, [], "f1c9", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm101.677-115.115L116.854 320l32.822-28.885a8.793 8.793 0 0 0 .605-12.624l-17.403-18.564c-3.384-3.613-8.964-3.662-12.438-.401L62.78 313.58c-3.703 3.474-3.704 9.367.001 12.84l57.659 54.055a8.738 8.738 0 0 0 6.012 2.381 8.746 8.746 0 0 0 6.427-2.782l17.403-18.563a8.795 8.795 0 0 0-.605-12.626zm84.284-127.85l-24.401-7.084a8.796 8.796 0 0 0-10.905 5.998L144.04 408.061c-1.353 4.66 1.338 9.552 5.998 10.905l24.403 7.084c4.68 1.355 9.557-1.354 10.905-5.998l54.612-188.112c1.354-4.66-1.337-9.552-5.997-10.905zm87.258 92.545l-57.658-54.055c-3.526-3.307-9.099-3.165-12.439.401l-17.403 18.563a8.795 8.795 0 0 0 .605 12.625L267.146 320l-32.822 28.885a8.793 8.793 0 0 0-.605 12.624l17.403 18.564a8.797 8.797 0 0 0 12.439.401h-.001l57.66-54.055c3.703-3.473 3.703-9.366-.001-12.839z"] }; +var faFileExcel = { prefix: 'far', iconName: 'file-excel', icon: [384, 512, [], "f1c3", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm212-240h-28.8c-4.4 0-8.4 2.4-10.5 6.3-18 33.1-22.2 42.4-28.6 57.7-13.9-29.1-6.9-17.3-28.6-57.7-2.1-3.9-6.2-6.3-10.6-6.3H124c-9.3 0-15 10-10.4 18l46.3 78-46.3 78c-4.7 8 1.1 18 10.4 18h28.9c4.4 0 8.4-2.4 10.5-6.3 21.7-40 23-45 28.6-57.7 14.9 30.2 5.9 15.9 28.6 57.7 2.1 3.9 6.2 6.3 10.6 6.3H260c9.3 0 15-10 10.4-18L224 320c.7-1.1 30.3-50.5 46.3-78 4.7-8-1.1-18-10.3-18z"] }; +var faFileImage = { prefix: 'far', iconName: 'file-image', icon: [384, 512, [], "f1c5", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm32-48h224V288l-23.5-23.5c-4.7-4.7-12.3-4.7-17 0L176 352l-39.5-39.5c-4.7-4.7-12.3-4.7-17 0L80 352v64zm48-240c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z"] }; +var faFilePdf = { prefix: 'far', iconName: 'file-pdf', icon: [384, 512, [], "f1c1", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm250.2-143.7c-12.2-12-47-8.7-64.4-6.5-17.2-10.5-28.7-25-36.8-46.3 3.9-16.1 10.1-40.6 5.4-56-4.2-26.2-37.8-23.6-42.6-5.9-4.4 16.1-.4 38.5 7 67.1-10 23.9-24.9 56-35.4 74.4-20 10.3-47 26.2-51 46.2-3.3 15.8 26 55.2 76.1-31.2 22.4-7.4 46.8-16.5 68.4-20.1 18.9 10.2 41 17 55.8 17 25.5 0 28-28.2 17.5-38.7zm-198.1 77.8c5.1-13.7 24.5-29.5 30.4-35-19 30.3-30.4 35.7-30.4 35zm81.6-190.6c7.4 0 6.7 32.1 1.8 40.8-4.4-13.9-4.3-40.8-1.8-40.8zm-24.4 136.6c9.7-16.9 18-37 24.7-54.7 8.3 15.1 18.9 27.2 30.1 35.5-20.8 4.3-38.9 13.1-54.8 19.2zm131.6-5s-5 6-37.3-7.8c35.1-2.6 40.9 5.4 37.3 7.8z"] }; +var faFilePowerpoint = { prefix: 'far', iconName: 'file-powerpoint', icon: [384, 512, [], "f1c4", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm72-60V236c0-6.6 5.4-12 12-12h69.2c36.7 0 62.8 27 62.8 66.3 0 74.3-68.7 66.5-95.5 66.5V404c0 6.6-5.4 12-12 12H132c-6.6 0-12-5.4-12-12zm48.5-87.4h23c7.9 0 13.9-2.4 18.1-7.2 8.5-9.8 8.4-28.5.1-37.8-4.1-4.6-9.9-7-17.4-7h-23.9v52z"] }; +var faFileVideo = { prefix: 'far', iconName: 'file-video', icon: [384, 512, [], "f1c8", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm228.687-211.303L224 305.374V268c0-11.046-8.954-20-20-20H100c-11.046 0-20 8.954-20 20v104c0 11.046 8.954 20 20 20h104c11.046 0 20-8.954 20-20v-37.374l52.687 52.674C286.704 397.318 304 390.28 304 375.986V264.011c0-14.311-17.309-21.319-27.313-11.314z"] }; +var faFileWord = { prefix: 'far', iconName: 'file-word', icon: [384, 512, [], "f1c2", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm220.1-208c-5.7 0-10.6 4-11.7 9.5-20.6 97.7-20.4 95.4-21 103.5-.2-1.2-.4-2.6-.7-4.3-.8-5.1.3.2-23.6-99.5-1.3-5.4-6.1-9.2-11.7-9.2h-13.3c-5.5 0-10.3 3.8-11.7 9.1-24.4 99-24 96.2-24.8 103.7-.1-1.1-.2-2.5-.5-4.2-.7-5.2-14.1-73.3-19.1-99-1.1-5.6-6-9.7-11.8-9.7h-16.8c-7.8 0-13.5 7.3-11.7 14.8 8 32.6 26.7 109.5 33.2 136 1.3 5.4 6.1 9.1 11.7 9.1h25.2c5.5 0 10.3-3.7 11.6-9.1l17.9-71.4c1.5-6.2 2.5-12 3-17.3l2.9 17.3c.1.4 12.6 50.5 17.9 71.4 1.3 5.3 6.1 9.1 11.6 9.1h24.7c5.5 0 10.3-3.7 11.6-9.1 20.8-81.9 30.2-119 34.5-136 1.9-7.6-3.8-14.9-11.6-14.9h-15.8z"] }; +var faFlag = { prefix: 'far', iconName: 'flag', icon: [512, 512, [], "f024", "M336.174 80c-49.132 0-93.305-32-161.913-32-31.301 0-58.303 6.482-80.721 15.168a48.04 48.04 0 0 0 2.142-20.727C93.067 19.575 74.167 1.594 51.201.104 23.242-1.71 0 20.431 0 48c0 17.764 9.657 33.262 24 41.562V496c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-83.443C109.869 395.28 143.259 384 199.826 384c49.132 0 93.305 32 161.913 32 58.479 0 101.972-22.617 128.548-39.981C503.846 367.161 512 352.051 512 335.855V95.937c0-34.459-35.264-57.768-66.904-44.117C409.193 67.309 371.641 80 336.174 80zM464 336c-21.783 15.412-60.824 32-102.261 32-59.945 0-102.002-32-161.913-32-43.361 0-96.379 9.403-127.826 24V128c21.784-15.412 60.824-32 102.261-32 59.945 0 102.002 32 161.913 32 43.271 0 96.32-17.366 127.826-32v240z"] }; +var faFlushed = { prefix: 'far', iconName: 'flushed', icon: [496, 512, [], "f579", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm96-312c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-112 24c0-44.2-35.8-80-80-80s-80 35.8-80 80 35.8 80 80 80 80-35.8 80-80zm-80 48c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm160 144H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z"] }; +var faFolder = { prefix: 'far', iconName: 'folder', icon: [512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48zm-6 272H54c-3.314 0-6-2.678-6-5.992V117.992A5.993 5.993 0 0 1 54 112h134.118l64 64H458a6 6 0 0 1 6 6v212a6 6 0 0 1-6 6z"] }; +var faFolderOpen = { prefix: 'far', iconName: 'folder-open', icon: [576, 512, [], "f07c", "M527.943 224H480v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h400a48.001 48.001 0 0 0 40.704-22.56l79.942-128c19.948-31.917-3.038-73.44-40.703-73.44zM54 112h134.118l64 64H426a6 6 0 0 1 6 6v42H152a48 48 0 0 0-41.098 23.202L48 351.449V117.993A5.993 5.993 0 0 1 54 112zm394 288H72l77.234-128H528l-80 128z"] }; +var faFontAwesomeLogoFull = { prefix: 'far', iconName: 'font-awesome-logo-full', icon: [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"] }; +var faFrown = { prefix: 'far', iconName: 'frown', icon: [496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 128c-40.2 0-78 17.7-103.8 48.6-8.5 10.2-7.1 25.3 3.1 33.8 10.2 8.4 25.3 7.1 33.8-3.1 16.6-19.9 41-31.4 66.9-31.4s50.3 11.4 66.9 31.4c8.1 9.7 23.1 11.9 33.8 3.1 10.2-8.5 11.5-23.6 3.1-33.8C326 321.7 288.2 304 248 304z"] }; +var faFrownOpen = { prefix: 'far', iconName: 'frown-open', icon: [496, 512, [], "f57a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-48-248c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 112c-35.6 0-88.8 21.3-95.8 61.2-2 11.8 9 21.5 20.5 18.1 31.2-9.6 59.4-15.3 75.3-15.3s44.1 5.7 75.3 15.3c11.4 3.5 22.5-6.3 20.5-18.1-7-39.9-60.2-61.2-95.8-61.2z"] }; +var faFutbol = { prefix: 'far', iconName: 'futbol', icon: [496, 512, [], "f1e3", "M483.8 179.4C449.8 74.6 352.6 8 248.1 8c-25.4 0-51.2 3.9-76.7 12.2C41.2 62.5-30.1 202.4 12.2 332.6 46.2 437.4 143.4 504 247.9 504c25.4 0 51.2-3.9 76.7-12.2 130.2-42.3 201.5-182.2 159.2-312.4zm-74.5 193.7l-52.2 6.4-43.7-60.9 24.4-75.2 71.1-22.1 38.9 36.4c-.2 30.7-7.4 61.1-21.7 89.2-4.7 9.3-10.7 17.8-16.8 26.2zm0-235.4l-10.4 53.1-70.7 22-64.2-46.5V92.5l47.4-26.2c39.2 13 73.4 38 97.9 71.4zM184.9 66.4L232 92.5v73.8l-64.2 46.5-70.6-22-10.1-52.5c24.3-33.4 57.9-58.6 97.8-71.9zM139 379.5L85.9 373c-14.4-20.1-37.3-59.6-37.8-115.3l39-36.4 71.1 22.2 24.3 74.3-43.5 61.7zm48.2 67l-22.4-48.1 43.6-61.7H287l44.3 61.7-22.4 48.1c-6.2 1.8-57.6 20.4-121.7 0z"] }; +var faGem = { prefix: 'far', iconName: 'gem', icon: [576, 512, [], "f3a5", "M464 0H112c-4 0-7.8 2-10 5.4L2 152.6c-2.9 4.4-2.6 10.2.7 14.2l276 340.8c4.8 5.9 13.8 5.9 18.6 0l276-340.8c3.3-4.1 3.6-9.8.7-14.2L474.1 5.4C471.8 2 468.1 0 464 0zm-19.3 48l63.3 96h-68.4l-51.7-96h56.8zm-202.1 0h90.7l51.7 96H191l51.6-96zm-111.3 0h56.8l-51.7 96H68l63.3-96zm-43 144h51.4L208 352 88.3 192zm102.9 0h193.6L288 435.3 191.2 192zM368 352l68.2-160h51.4L368 352z"] }; +var faGrimace = { prefix: 'far', iconName: 'grimace', icon: [496, 512, [], "f57f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm16 16H152c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h192c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48zm-168 96h-24c-8.8 0-16-7.2-16-16v-8h40v24zm0-40h-40v-8c0-8.8 7.2-16 16-16h24v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm56 24c0 8.8-7.2 16-16 16h-24v-24h40v8zm0-24h-40v-24h24c8.8 0 16 7.2 16 16v8z"] }; +var faGrin = { prefix: 'far', iconName: 'grin', icon: [496, 512, [], "f580", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z"] }; +var faGrinAlt = { prefix: 'far', iconName: 'grin-alt', icon: [496, 512, [], "f581", "M200.3 248c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zm128 0c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3z"] }; +var faGrinBeam = { prefix: 'far', iconName: 'grin-beam', icon: [496, 512, [], "f582", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-235.9-72.9c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3zm160 0c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3z"] }; +var faGrinBeamSweat = { prefix: 'far', iconName: 'grin-beam-sweat', icon: [496, 512, [], "f583", "M440 160c29.5 0 53.3-26.3 53.3-58.7 0-25-31.7-75.5-46.2-97.3-3.6-5.3-10.7-5.3-14.2 0-14.5 21.8-46.2 72.3-46.2 97.3 0 32.4 23.8 58.7 53.3 58.7zM248 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zm105.3-52.9c-24.6 15.7-46 12.9-46.4 12.9 6.9 20.2 10.8 41.8 10.8 64.3 0 110.3-89.7 200-200 200S48 366.3 48 256 137.7 56 248 56c39.8 0 76.8 11.8 108 31.9 1.7-9.5 6.3-24.1 17.2-45.7C336.4 20.6 293.7 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-27-4.4-52.9-12.4-77.2zM168 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z"] }; +var faGrinHearts = { prefix: 'far', iconName: 'grin-hearts', icon: [496, 512, [], "f584", "M353.6 304.6c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-152.8-48.9c4.5 1.2 9.2-1.5 10.5-6l19.4-69.9c5.6-20.3-7.4-41.1-28.8-44.5-18.6-3-36.4 9.8-41.5 27.9l-2 7.1-7.1-1.9c-18.2-4.7-38.2 4.3-44.9 22-7.7 20.2 3.8 41.9 24.2 47.2l70.2 18.1zm188.8-65.3c-6.7-17.6-26.7-26.7-44.9-22l-7.1 1.9-2-7.1c-5-18.1-22.8-30.9-41.5-27.9-21.4 3.4-34.4 24.2-28.8 44.5l19.4 69.9c1.2 4.5 5.9 7.2 10.5 6l70.2-18.2c20.4-5.3 31.9-26.9 24.2-47.1zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200z"] }; +var faGrinSquint = { prefix: 'far', iconName: 'grin-squint', icon: [496, 512, [], "f585", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-234.7-40.8c3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3l-80-48c-5.1-3-11.4-1.9-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11.1.1 15.5zm242.9 2.5c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11-.1-15.5-3.8-4.4-10.2-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48z"] }; +var faGrinSquintTears = { prefix: 'far', iconName: 'grin-squint-tears', icon: [512, 512, [], "f586", "M117.1 384.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 479 124.3 420.8 128 395c.8-6.4-4.6-11.8-10.9-10.9zm-41.2-41.7C40.3 268 53 176.1 114.6 114.6 152.4 76.8 202.6 56 256 56c36.2 0 70.8 9.8 101.2 27.7 3.8-20.3 8-36.1 12-48.3C333.8 17.2 294.9 8 256 8 192.5 8 129.1 32.2 80.6 80.6c-74.1 74.1-91.3 183.4-52 274 12.2-4.1 27.7-8.3 47.3-12.2zm352.3-187.6c45 76.6 34.9 176.9-30.8 242.6-37.8 37.8-88 58.6-141.4 58.6-30.5 0-59.8-7-86.4-19.8-3.9 19.5-8 35-12.2 47.2 31.4 13.6 65 20.6 98.7 20.6 63.5 0 126.9-24.2 175.4-72.6 78.1-78.1 93.1-195.4 45.2-288.6-12.3 4-28.2 8.1-48.5 12zm-33.3-26.9c25.8-3.7 84-13.7 100.9-30.6 21.9-21.9 21.5-57.9-.9-80.3s-58.3-22.8-80.3-.9C397.7 33 387.7 91.2 384 117c-.8 6.4 4.6 11.8 10.9 10.9zm-187 108.3c-3-3-7.2-4.2-11.4-3.2L106 255.7c-5.7 1.4-9.5 6.7-9.1 12.6.5 5.8 5.1 10.5 10.9 11l52.3 4.8 4.8 52.3c.5 5.8 5.2 10.4 11 10.9h.9c5.5 0 10.3-3.7 11.7-9.1l22.6-90.5c1-4.2-.2-8.5-3.2-11.5zm39.7-25.1l90.5-22.6c5.7-1.4 9.5-6.7 9.1-12.6-.5-5.8-5.1-10.5-10.9-11l-52.3-4.8-4.8-52.3c-.5-5.8-5.2-10.4-11-10.9-5.6-.1-11.2 3.4-12.6 9.1L233 196.5c-1 4.1.2 8.4 3.2 11.4 5 5 11.3 3.2 11.4 3.2zm52 88.5c-29.1 29.1-59.7 52.9-83.9 65.4-9.2 4.8-10 17.5-1.7 23.4 38.9 27.7 107 6.2 143.7-30.6S416 253 388.3 214.1c-5.8-8.2-18.5-7.6-23.4 1.7-12.3 24.2-36.2 54.7-65.3 83.8z"] }; +var faGrinStars = { prefix: 'far', iconName: 'grin-stars', icon: [496, 512, [], "f587", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-227.9-57.5c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.5 1.9-12.2-4.3-13.2l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6.1 34.9zm259.7-72.7l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6 34.9c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.6 1.8-12.2-4.4-13.2z"] }; +var faGrinTears = { prefix: 'far', iconName: 'grin-tears', icon: [640, 512, [], "f588", "M117.1 256.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 351 124.3 292.8 128 267c.8-6.4-4.6-11.8-10.9-10.9zm506.7 30.6c-16.9-16.9-75.1-26.9-100.9-30.6-6.3-.9-11.7 4.5-10.8 10.8 3.7 25.8 13.7 84 30.6 100.9 21.9 21.9 57.9 21.5 80.3-.9 22.3-22.3 22.7-58.3.8-80.2zm-126.6 61.7C463.8 412.3 396.9 456 320 456c-76.9 0-143.8-43.7-177.2-107.6-12.5 37.4-25.2 43.9-28.3 46.5C159.1 460.7 234.5 504 320 504s160.9-43.3 205.5-109.1c-3.2-2.7-15.9-9.2-28.3-46.5zM122.7 224.5C137.9 129.2 220.5 56 320 56c99.5 0 182.1 73.2 197.3 168.5 2.1-.2 5.2-2.4 49.5 7C554.4 106 448.7 8 320 8S85.6 106 73.2 231.4c44.5-9.4 47.1-7.2 49.5-6.9zM320 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zM240 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z"] }; +var faGrinTongue = { prefix: 'far', iconName: 'grin-tongue', icon: [496, 512, [], "f589", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zM168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"] }; +var faGrinTongueSquint = { prefix: 'far', iconName: 'grin-tongue-squint', icon: [496, 512, [], "f58a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zm36.9-281.1c-3.8-4.4-10.3-5.5-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zm-162.9 45.5l-80-48c-5-3-11.4-2-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3z"] }; +var faGrinTongueWink = { prefix: 'far', iconName: 'grin-tongue-wink', icon: [496, 512, [], "f58b", "M152 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm176-52c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3z"] }; +var faGrinWink = { prefix: 'far', iconName: 'grin-wink', icon: [496, 512, [], "f58c", "M328 180c-25.69 0-55.88 16.92-59.86 42.12-1.75 11.22 11.5 18.24 19.83 10.84l9.55-8.48c14.81-13.19 46.16-13.19 60.97 0l9.55 8.48c8.48 7.43 21.56.25 19.83-10.84C383.88 196.92 353.69 180 328 180zm-160 60c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm185.55 64.64c-25.93 8.3-64.4 13.06-105.55 13.06s-79.62-4.75-105.55-13.06c-9.94-3.13-19.4 5.37-17.71 15.34C132.67 367.13 196.06 400 248 400s115.33-32.87 123.26-80.02c1.68-9.89-7.67-18.48-17.71-15.34zM248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 448c-110.28 0-200-89.72-200-200S137.72 56 248 56s200 89.72 200 200-89.72 200-200 200z"] }; +var faHandLizard = { prefix: 'far', iconName: 'hand-lizard', icon: [576, 512, [], "f258", "M556.686 290.542L410.328 64.829C397.001 44.272 374.417 32 349.917 32H56C25.121 32 0 57.122 0 88v8c0 44.112 35.888 80 80 80h196.042l-18.333 48H144c-48.523 0-88 39.477-88 88 0 30.879 25.121 56 56 56h131.552c2.987 0 5.914.549 8.697 1.631L352 408.418V480h224V355.829c0-23.225-6.679-45.801-19.314-65.287zM528 432H400v-23.582c0-19.948-12.014-37.508-30.604-44.736l-99.751-38.788A71.733 71.733 0 0 0 243.552 320H112c-4.411 0-8-3.589-8-8 0-22.056 17.944-40 40-40h113.709c19.767 0 37.786-12.407 44.84-30.873l24.552-64.281c8.996-23.553-8.428-48.846-33.63-48.846H80c-17.645 0-32-14.355-32-32v-8c0-4.411 3.589-8 8-8h293.917c8.166 0 15.693 4.09 20.137 10.942l146.358 225.715A71.84 71.84 0 0 1 528 355.829V432z"] }; +var faHandPaper = { prefix: 'far', iconName: 'hand-paper', icon: [448, 512, [], "f256", "M372.57 112.641v-10.825c0-43.612-40.52-76.691-83.039-65.546-25.629-49.5-94.09-47.45-117.982.747C130.269 26.456 89.144 57.945 89.144 102v126.13c-19.953-7.427-43.308-5.068-62.083 8.871-29.355 21.796-35.794 63.333-14.55 93.153L132.48 498.569a32 32 0 0 0 26.062 13.432h222.897c14.904 0 27.835-10.289 31.182-24.813l30.184-130.958A203.637 203.637 0 0 0 448 310.564V179c0-40.62-35.523-71.992-75.43-66.359zm27.427 197.922c0 11.731-1.334 23.469-3.965 34.886L368.707 464h-201.92L51.591 302.303c-14.439-20.27 15.023-42.776 29.394-22.605l27.128 38.079c8.995 12.626 29.031 6.287 29.031-9.283V102c0-25.645 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V67c0-25.663 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V101.125c0-25.672 36.57-24.81 36.57.691V256c0 8.837 7.163 16 16 16h6.857c8.837 0 16-7.163 16-16v-76.309c0-26.242 36.57-25.64 36.57-.691v131.563z"] }; +var faHandPeace = { prefix: 'far', iconName: 'hand-peace', icon: [448, 512, [], "f25b", "M362.146 191.976c-13.71-21.649-38.761-34.016-65.006-30.341V74c0-40.804-32.811-74-73.141-74-40.33 0-73.14 33.196-73.14 74L160 168l-18.679-78.85C126.578 50.843 83.85 32.11 46.209 47.208 8.735 62.238-9.571 104.963 5.008 142.85l55.757 144.927c-30.557 24.956-43.994 57.809-24.733 92.218l54.853 97.999C102.625 498.97 124.73 512 148.575 512h205.702c30.744 0 57.558-21.44 64.555-51.797l27.427-118.999a67.801 67.801 0 0 0 1.729-15.203L448 256c0-44.956-43.263-77.343-85.854-64.024zM399.987 326c0 1.488-.169 2.977-.502 4.423l-27.427 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H148.575c-6.486 0-12.542-3.621-15.805-9.449l-54.854-98c-4.557-8.141-2.619-18.668 4.508-24.488l26.647-21.764a16 16 0 0 0 4.812-18.139l-64.09-166.549C37.226 92.956 84.37 74.837 96.51 106.389l59.784 155.357A16 16 0 0 0 171.227 272h11.632c8.837 0 16-7.163 16-16V74c0-34.375 50.281-34.43 50.281 0v182c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16v-28c0-25.122 36.567-25.159 36.567 0v28c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16 0-25.12 36.567-25.16 36.567 0v70z"] }; +var faHandPointDown = { prefix: 'far', iconName: 'hand-point-down', icon: [448, 512, [], "f0a7", "M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z"] }; +var faHandPointLeft = { prefix: 'far', iconName: 'hand-point-left', icon: [512, 512, [], "f0a5", "M0 220.8C0 266.416 37.765 304 83.2 304h35.647a93.148 93.148 0 0 0 7.929 22.064c-2.507 22.006 3.503 44.978 15.985 62.791C143.9 441.342 180.159 480 242.701 480H264c60.063 0 98.512-40 127.2-40h2.679c5.747 4.952 13.536 8 22.12 8h64c17.673 0 32-12.894 32-28.8V188.8c0-15.906-14.327-28.8-32-28.8h-64c-8.584 0-16.373 3.048-22.12 8H391.2c-6.964 0-14.862-6.193-30.183-23.668l-.129-.148-.131-.146c-8.856-9.937-18.116-20.841-25.851-33.253C316.202 80.537 304.514 32 259.2 32c-56.928 0-92 35.286-92 83.2 0 8.026.814 15.489 2.176 22.4H83.2C38.101 137.6 0 175.701 0 220.8zm48 0c0-18.7 16.775-35.2 35.2-35.2h158.4c0-17.325-26.4-35.2-26.4-70.4 0-26.4 20.625-35.2 44-35.2 8.794 0 20.445 32.712 34.926 56.1 9.074 14.575 19.524 27.225 30.799 39.875 16.109 18.374 33.836 36.633 59.075 39.596v176.752C341.21 396.087 309.491 432 264 432h-21.299c-40.524 0-57.124-22.197-50.601-61.325-14.612-8.001-24.151-33.979-12.925-53.625-19.365-18.225-17.787-46.381-4.95-61.05H83.2C64.225 256 48 239.775 48 220.8zM448 360c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z"] }; +var faHandPointRight = { prefix: 'far', iconName: 'hand-point-right', icon: [512, 512, [], "f0a4", "M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"] }; +var faHandPointUp = { prefix: 'far', iconName: 'hand-point-up', icon: [448, 512, [], "f0a6", "M105.6 83.2v86.177a115.52 115.52 0 0 0-22.4-2.176c-47.914 0-83.2 35.072-83.2 92 0 45.314 48.537 57.002 78.784 75.707 12.413 7.735 23.317 16.994 33.253 25.851l.146.131.148.129C129.807 376.338 136 384.236 136 391.2v2.679c-4.952 5.747-8 13.536-8 22.12v64c0 17.673 12.894 32 28.8 32h230.4c15.906 0 28.8-14.327 28.8-32v-64c0-8.584-3.048-16.373-8-22.12V391.2c0-28.688 40-67.137 40-127.2v-21.299c0-62.542-38.658-98.8-91.145-99.94-17.813-12.482-40.785-18.491-62.791-15.985A93.148 93.148 0 0 0 272 118.847V83.2C272 37.765 234.416 0 188.8 0c-45.099 0-83.2 38.101-83.2 83.2zm118.4 0v91.026c14.669-12.837 42.825-14.415 61.05 4.95 19.646-11.227 45.624-1.687 53.625 12.925 39.128-6.524 61.325 10.076 61.325 50.6V264c0 45.491-35.913 77.21-39.676 120H183.571c-2.964-25.239-21.222-42.966-39.596-59.075-12.65-11.275-25.3-21.725-39.875-30.799C80.712 279.645 48 267.994 48 259.2c0-23.375 8.8-44 35.2-44 35.2 0 53.075 26.4 70.4 26.4V83.2c0-18.425 16.5-35.2 35.2-35.2 18.975 0 35.2 16.225 35.2 35.2zM352 424c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z"] }; +var faHandPointer = { prefix: 'far', iconName: 'hand-pointer', icon: [448, 512, [], "f25a", "M358.182 179.361c-19.493-24.768-52.679-31.945-79.872-19.098-15.127-15.687-36.182-22.487-56.595-19.629V67c0-36.944-29.736-67-66.286-67S89.143 30.056 89.143 67v161.129c-19.909-7.41-43.272-5.094-62.083 8.872-29.355 21.795-35.793 63.333-14.55 93.152l109.699 154.001C134.632 501.59 154.741 512 176 512h178.286c30.802 0 57.574-21.5 64.557-51.797l27.429-118.999A67.873 67.873 0 0 0 448 326v-84c0-46.844-46.625-79.273-89.818-62.639zM80.985 279.697l27.126 38.079c8.995 12.626 29.031 6.287 29.031-9.283V67c0-25.12 36.571-25.16 36.571 0v175c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16v-35c0-25.12 36.571-25.16 36.571 0v35c0 8.836 7.163 16 16 16H272c8.837 0 16-7.164 16-16v-21c0-25.12 36.571-25.16 36.571 0v21c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16 0-25.121 36.571-25.16 36.571 0v84c0 1.488-.169 2.977-.502 4.423l-27.43 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H176c-5.769 0-11.263-2.878-14.697-7.697l-109.712-154c-14.406-20.223 14.994-42.818 29.394-22.606zM176.143 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.733 0-14-7.163-14-16zm75.428 0v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16zM327 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16z"] }; +var faHandRock = { prefix: 'far', iconName: 'hand-rock', icon: [512, 512, [], "f255", "M408.864 79.052c-22.401-33.898-66.108-42.273-98.813-23.588-29.474-31.469-79.145-31.093-108.334-.022-47.16-27.02-108.71 5.055-110.671 60.806C44.846 105.407 0 140.001 0 187.429v56.953c0 32.741 14.28 63.954 39.18 85.634l97.71 85.081c4.252 3.702 3.11 5.573 3.11 32.903 0 17.673 14.327 32 32 32h252c17.673 0 32-14.327 32-32 0-23.513-1.015-30.745 3.982-42.37l42.835-99.656c6.094-14.177 9.183-29.172 9.183-44.568V146.963c0-52.839-54.314-88.662-103.136-67.911zM464 261.406a64.505 64.505 0 0 1-5.282 25.613l-42.835 99.655c-5.23 12.171-7.883 25.04-7.883 38.25V432H188v-10.286c0-16.37-7.14-31.977-19.59-42.817l-97.71-85.08C56.274 281.255 48 263.236 48 244.381v-56.953c0-33.208 52-33.537 52 .677v41.228a16 16 0 0 0 5.493 12.067l7 6.095A16 16 0 0 0 139 235.429V118.857c0-33.097 52-33.725 52 .677v26.751c0 8.836 7.164 16 16 16h7c8.836 0 16-7.164 16-16v-41.143c0-33.134 52-33.675 52 .677v40.466c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16v-27.429c0-33.03 52-33.78 52 .677v26.751c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16 0-33.146 52-33.613 52 .677v114.445z"] }; +var faHandScissors = { prefix: 'far', iconName: 'hand-scissors', icon: [512, 512, [], "f257", "M256 480l70-.013c5.114 0 10.231-.583 15.203-1.729l118.999-27.427C490.56 443.835 512 417.02 512 386.277V180.575c0-23.845-13.03-45.951-34.005-57.69l-97.999-54.853c-34.409-19.261-67.263-5.824-92.218 24.733L142.85 37.008c-37.887-14.579-80.612 3.727-95.642 41.201-15.098 37.642 3.635 80.37 41.942 95.112L168 192l-94-9.141c-40.804 0-74 32.811-74 73.14 0 40.33 33.196 73.141 74 73.141h87.635c-3.675 26.245 8.692 51.297 30.341 65.006C178.657 436.737 211.044 480 256 480zm0-48.013c-25.16 0-25.12-36.567 0-36.567 8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16h-28c-25.159 0-25.122-36.567 0-36.567h28c8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16H74c-34.43 0-34.375-50.281 0-50.281h182c8.837 0 16-7.163 16-16v-11.632a16 16 0 0 0-10.254-14.933L106.389 128.51c-31.552-12.14-13.432-59.283 19.222-46.717l166.549 64.091a16.001 16.001 0 0 0 18.139-4.812l21.764-26.647c5.82-7.127 16.348-9.064 24.488-4.508l98 54.854c5.828 3.263 9.449 9.318 9.449 15.805v205.701c0 8.491-5.994 15.804-14.576 17.782l-119.001 27.427a19.743 19.743 0 0 1-4.423.502h-70z"] }; +var faHandSpock = { prefix: 'far', iconName: 'hand-spock', icon: [512, 512, [], "f259", "M21.096 381.79l129.092 121.513a32 32 0 0 0 21.932 8.698h237.6c14.17 0 26.653-9.319 30.68-22.904l31.815-107.313A115.955 115.955 0 0 0 477 348.811v-36.839c0-4.051.476-8.104 1.414-12.045l31.73-133.41c10.099-42.412-22.316-82.738-65.544-82.525-4.144-24.856-22.543-47.165-49.85-53.992-35.803-8.952-72.227 12.655-81.25 48.75L296.599 184 274.924 52.01c-8.286-36.07-44.303-58.572-80.304-50.296-29.616 6.804-50.138 32.389-51.882 61.295-42.637.831-73.455 40.563-64.071 81.844l31.04 136.508c-27.194-22.515-67.284-19.992-91.482 5.722-25.376 26.961-24.098 69.325 2.871 94.707zm32.068-61.811l.002-.001c7.219-7.672 19.241-7.98 26.856-.813l53.012 49.894C143.225 378.649 160 371.4 160 357.406v-69.479c0-1.193-.134-2.383-.397-3.546l-34.13-150.172c-5.596-24.617 31.502-32.86 37.054-8.421l30.399 133.757a16 16 0 0 0 15.603 12.454h8.604c10.276 0 17.894-9.567 15.594-19.583l-41.62-181.153c-5.623-24.469 31.39-33.076 37.035-8.508l45.22 196.828A16 16 0 0 0 288.956 272h13.217a16 16 0 0 0 15.522-12.119l42.372-169.49c6.104-24.422 42.962-15.159 36.865 9.217L358.805 252.12c-2.521 10.088 5.115 19.88 15.522 19.88h9.694a16 16 0 0 0 15.565-12.295L426.509 146.6c5.821-24.448 42.797-15.687 36.966 8.802L431.72 288.81a100.094 100.094 0 0 0-2.72 23.162v36.839c0 6.548-.943 13.051-2.805 19.328L397.775 464h-219.31L53.978 346.836c-7.629-7.18-7.994-19.229-.814-26.857z"] }; +var faHandshake = { prefix: 'far', iconName: 'handshake', icon: [640, 512, [], "f2b5", "M519.2 127.9l-47.6-47.6A56.252 56.252 0 0 0 432 64H205.2c-14.8 0-29.1 5.9-39.6 16.3L118 127.9H0v255.7h64c17.6 0 31.8-14.2 31.9-31.7h9.1l84.6 76.4c30.9 25.1 73.8 25.7 105.6 3.8 12.5 10.8 26 15.9 41.1 15.9 18.2 0 35.3-7.4 48.8-24 22.1 8.7 48.2 2.6 64-16.8l26.2-32.3c5.6-6.9 9.1-14.8 10.9-23h57.9c.1 17.5 14.4 31.7 31.9 31.7h64V127.9H519.2zM48 351.6c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16zm390-6.9l-26.1 32.2c-2.8 3.4-7.8 4-11.3 1.2l-23.9-19.4-30 36.5c-6 7.3-15 4.8-18 2.4l-36.8-31.5-15.6 19.2c-13.9 17.1-39.2 19.7-55.3 6.6l-97.3-88H96V175.8h41.9l61.7-61.6c2-.8 3.7-1.5 5.7-2.3H262l-38.7 35.5c-29.4 26.9-31.1 72.3-4.4 101.3 14.8 16.2 61.2 41.2 101.5 4.4l8.2-7.5 108.2 87.8c3.4 2.8 3.9 7.9 1.2 11.3zm106-40.8h-69.2c-2.3-2.8-4.9-5.4-7.7-7.7l-102.7-83.4 12.5-11.4c6.5-6 7-16.1 1-22.6L367 167.1c-6-6.5-16.1-6.9-22.6-1l-55.2 50.6c-9.5 8.7-25.7 9.4-34.6 0-9.3-9.9-8.5-25.1 1.2-33.9l65.6-60.1c7.4-6.8 17-10.5 27-10.5l83.7-.2c2.1 0 4.1.8 5.5 2.3l61.7 61.6H544v128zm48 47.7c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16z"] }; +var faHdd = { prefix: 'far', iconName: 'hdd', icon: [576, 512, [], "f0a0", "M567.403 235.642L462.323 84.589A48 48 0 0 0 422.919 64H153.081a48 48 0 0 0-39.404 20.589L8.597 235.642A48.001 48.001 0 0 0 0 263.054V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V263.054c0-9.801-3-19.366-8.597-27.412zM153.081 112h269.838l77.913 112H75.168l77.913-112zM528 400H48V272h480v128zm-32-64c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32zm-96 0c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32z"] }; +var faHeart = { prefix: 'far', iconName: 'heart', icon: [512, 512, [], "f004", "M458.4 64.3C400.6 15.7 311.3 23 256 79.3 200.7 23 111.4 15.6 53.6 64.3-21.6 127.6-10.6 230.8 43 285.5l175.4 178.7c10 10.2 23.4 15.9 37.6 15.9 14.3 0 27.6-5.6 37.6-15.8L469 285.6c53.5-54.7 64.7-157.9-10.6-221.3zm-23.6 187.5L259.4 430.5c-2.4 2.4-4.4 2.4-6.8 0L77.2 251.8c-36.5-37.2-43.9-107.6 7.3-150.7 38.9-32.7 98.9-27.8 136.5 10.5l35 35.7 35-35.7c37.8-38.5 97.8-43.2 136.5-10.6 51.1 43.1 43.5 113.9 7.3 150.8z"] }; +var faHospital = { prefix: 'far', iconName: 'hospital', icon: [448, 512, [], "f0f8", "M128 244v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12zm140 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm-76 84v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm76 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm180 124v36H0v-36c0-6.627 5.373-12 12-12h19.5V85.035C31.5 73.418 42.245 64 55.5 64H144V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v40h88.5c13.255 0 24 9.418 24 21.035V464H436c6.627 0 12 5.373 12 12zM79.5 463H192v-67c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v67h112.5V112H304v24c0 13.255-10.745 24-24 24H168c-13.255 0-24-10.745-24-24v-24H79.5v351zM266 64h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6z"] }; +var faHourglass = { prefix: 'far', iconName: 'hourglass', icon: [384, 512, [], "f254", "M368 48h4c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12H12C5.373 0 0 5.373 0 12v24c0 6.627 5.373 12 12 12h4c0 80.564 32.188 165.807 97.18 208C47.899 298.381 16 383.9 16 464h-4c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12h-4c0-80.564-32.188-165.807-97.18-208C336.102 213.619 368 128.1 368 48zM64 48h256c0 101.62-57.307 184-128 184S64 149.621 64 48zm256 416H64c0-101.62 57.308-184 128-184s128 82.38 128 184z"] }; +var faIdBadge = { prefix: 'far', iconName: 'id-badge', icon: [384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm0 464H48V48h288v416zM144 112h96c8.8 0 16-7.2 16-16s-7.2-16-16-16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16zm48 176c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"] }; +var faIdCard = { prefix: 'far', iconName: 'id-card', icon: [576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H303.2c.9-4.5.8 3.6.8-22.4 0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6 0 26-.2 17.9.8 22.4H48V144h480v288zm-168-80h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm-168 96c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z"] }; +var faImage = { prefix: 'far', iconName: 'image', icon: [512, 512, [], "f03e", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 336H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v276a6 6 0 0 1-6 6zM128 152c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zM96 352h320v-80l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L192 304l-39.515-39.515c-4.686-4.686-12.284-4.686-16.971 0L96 304v48z"] }; +var faImages = { prefix: 'far', iconName: 'images', icon: [576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v48H54a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6v-10h48zm42-336H150a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6V86a6 6 0 0 0-6-6zm6-48c26.51 0 48 21.49 48 48v256c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h384zM264 144c0 22.091-17.909 40-40 40s-40-17.909-40-40 17.909-40 40-40 40 17.909 40 40zm-72 96l39.515-39.515c4.686-4.686 12.284-4.686 16.971 0L288 240l103.515-103.515c4.686-4.686 12.284-4.686 16.971 0L480 208v80H192v-48z"] }; +var faKeyboard = { prefix: 'far', iconName: 'keyboard', icon: [576, 512, [], "f11c", "M528 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm8 336c0 4.411-3.589 8-8 8H48c-4.411 0-8-3.589-8-8V112c0-4.411 3.589-8 8-8h480c4.411 0 8 3.589 8 8v288zM170 270v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-336 82v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm384 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zM122 188v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-98 158v-16c0-6.627-5.373-12-12-12H180c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h216c6.627 0 12-5.373 12-12z"] }; +var faKiss = { prefix: 'far', iconName: 'kiss', icon: [496, 512, [], "f596", "M168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm136 132c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"] }; +var faKissBeam = { prefix: 'far', iconName: 'kiss-beam', icon: [496, 512, [], "f597", "M168 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm56-148c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zm24-156c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4z"] }; +var faKissWinkHeart = { prefix: 'far', iconName: 'kiss-wink-heart', icon: [504, 512, [], "f598", "M304 308.5c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36 21.7-9.1 35.1-23.4 35.1-36.4zm70.5-83.5l9.5 8.5c3.8 3.3 9.3 4 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 5.8 3.1 11.2.7 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0zM136 208.5c0 17.7 14.3 32 32 32s32-14.3 32-32-14.3-32-32-32-32 14.3-32 32zm365.1 194c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zM334 436.3c-26.1 12.5-55.2 19.7-86 19.7-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200c0 22.1-3.7 43.3-10.4 63.2 9 6.4 17 14.2 22.6 23.9 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-2.5-7.3 4.3 17.2-13.4-46.8z"] }; +var faLaugh = { prefix: 'far', iconName: 'laugh', icon: [496, 512, [], "f599", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 224c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm-160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"] }; +var faLaughBeam = { prefix: 'far', iconName: 'laugh-beam', icon: [496, 512, [], "f59a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 152c-23.8 0-52.7 29.3-56 71.4-.7 8.6 10.8 11.9 14.9 4.5l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.1-42.1-32-71.4-55.8-71.4zm-201 75.9l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.6 8.5 10.9 11.9 15.1 4.5zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"] }; +var faLaughSquint = { prefix: 'far', iconName: 'laugh-squint', icon: [496, 512, [], "f59b", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM343.6 196l33.6-40.3c8.6-10.3-3.8-24.8-15.4-18l-80 48c-7.8 4.7-7.8 15.9 0 20.6l80 48c11.5 6.8 24-7.6 15.4-18L343.6 196zm-209.4 58.3l80-48c7.8-4.7 7.8-15.9 0-20.6l-80-48c-11.6-6.9-24 7.7-15.4 18l33.6 40.3-33.6 40.3c-8.7 10.4 3.8 24.8 15.4 18zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"] }; +var faLaughWink = { prefix: 'far', iconName: 'laugh-wink', icon: [496, 512, [], "f59c", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6C68.8 359.6 48 309.4 48 256s20.8-103.6 58.6-141.4C144.4 76.8 194.6 56 248 56s103.6 20.8 141.4 58.6c37.8 37.8 58.6 88 58.6 141.4s-20.8 103.6-58.6 141.4zM328 164c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1zm-160 60c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"] }; +var faLemon = { prefix: 'far', iconName: 'lemon', icon: [512, 512, [], "f094", "M484.112 27.889C455.989-.233 416.108-8.057 387.059 8.865 347.604 31.848 223.504-41.111 91.196 91.197-41.277 223.672 31.923 347.472 8.866 387.058c-16.922 29.051-9.1 68.932 19.022 97.054 28.135 28.135 68.011 35.938 97.057 19.021 39.423-22.97 163.557 49.969 295.858-82.329 132.474-132.477 59.273-256.277 82.331-295.861 16.922-29.05 9.1-68.931-19.022-97.054zm-22.405 72.894c-38.8 66.609 45.6 165.635-74.845 286.08-120.44 120.443-219.475 36.048-286.076 74.843-22.679 13.207-64.035-27.241-50.493-50.488 38.8-66.609-45.6-165.635 74.845-286.08C245.573 4.702 344.616 89.086 411.219 50.292c22.73-13.24 64.005 27.288 50.488 50.491zm-169.861 8.736c1.37 10.96-6.404 20.957-17.365 22.327-54.846 6.855-135.779 87.787-142.635 142.635-1.373 10.989-11.399 18.734-22.326 17.365-10.961-1.37-18.735-11.366-17.365-22.326 9.162-73.286 104.167-168.215 177.365-177.365 10.953-1.368 20.956 6.403 22.326 17.364z"] }; +var faLifeRing = { prefix: 'far', iconName: 'life-ring', icon: [512, 512, [], "f1cd", "M256 504c136.967 0 248-111.033 248-248S392.967 8 256 8 8 119.033 8 256s111.033 248 248 248zm-103.398-76.72l53.411-53.411c31.806 13.506 68.128 13.522 99.974 0l53.411 53.411c-63.217 38.319-143.579 38.319-206.796 0zM336 256c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zm91.28 103.398l-53.411-53.411c13.505-31.806 13.522-68.128 0-99.974l53.411-53.411c38.319 63.217 38.319 143.579 0 206.796zM359.397 84.72l-53.411 53.411c-31.806-13.505-68.128-13.522-99.973 0L152.602 84.72c63.217-38.319 143.579-38.319 206.795 0zM84.72 152.602l53.411 53.411c-13.506 31.806-13.522 68.128 0 99.974L84.72 359.398c-38.319-63.217-38.319-143.579 0-206.796z"] }; +var faLightbulb = { prefix: 'far', iconName: 'lightbulb', icon: [384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zM128 176c0-35.29 28.71-64 64-64 8.837 0 16-7.164 16-16s-7.163-16-16-16c-52.935 0-96 43.065-96 96 0 8.836 7.164 16 16 16s16-7.164 16-16zm64-128c70.734 0 128 57.254 128 128 0 77.602-37.383 60.477-80.98 160h-94.04C101.318 236.33 64 253.869 64 176c0-70.735 57.254-128 128-128m0-48C94.805 0 16 78.803 16 176c0 101.731 51.697 91.541 90.516 192.674 3.55 9.249 12.47 15.326 22.376 15.326h126.215c9.906 0 18.826-6.078 22.376-15.326C316.303 267.541 368 277.731 368 176 368 78.803 289.195 0 192 0z"] }; +var faListAlt = { prefix: 'far', iconName: 'list-alt', icon: [512, 512, [], "f022", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zm-42-92v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm-252 12c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36z"] }; +var faMap = { prefix: 'far', iconName: 'map', icon: [576, 512, [], "f279", "M560.02 32c-1.96 0-3.98.37-5.96 1.16L384.01 96H384L212 35.28A64.252 64.252 0 0 0 191.76 32c-6.69 0-13.37 1.05-19.81 3.14L20.12 87.95A32.006 32.006 0 0 0 0 117.66v346.32C0 473.17 7.53 480 15.99 480c1.96 0 3.97-.37 5.96-1.16L192 416l172 60.71a63.98 63.98 0 0 0 40.05.15l151.83-52.81A31.996 31.996 0 0 0 576 394.34V48.02c0-9.19-7.53-16.02-15.98-16.02zM224 90.42l128 45.19v285.97l-128-45.19V90.42zM48 418.05V129.07l128-44.53v286.2l-.64.23L48 418.05zm480-35.13l-128 44.53V141.26l.64-.24L528 93.95v288.97z"] }; +var faMeh = { prefix: 'far', iconName: 'meh', icon: [496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm8 144H160c-13.2 0-24 10.8-24 24s10.8 24 24 24h176c13.2 0 24-10.8 24-24s-10.8-24-24-24z"] }; +var faMehBlank = { prefix: 'far', iconName: 'meh-blank', icon: [496, 512, [], "f5a4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"] }; +var faMehRollingEyes = { prefix: 'far', iconName: 'meh-rolling-eyes', icon: [496, 512, [], "f5a5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm88-304c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm0 112c-22.1 0-40-17.9-40-40 0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40zm-104-40c0-39.8-32.2-72-72-72s-72 32.2-72 72 32.2 72 72 72 72-32.2 72-72zm-112 0c0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40s-40-17.9-40-40zm192 128H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z"] }; +var faMinusSquare = { prefix: 'far', iconName: 'minus-square', icon: [448, 512, [], "f146", "M108 284c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h232c6.6 0 12 5.4 12 12v32c0 6.6-5.4 12-12 12H108zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faMoneyBillAlt = { prefix: 'far', iconName: 'money-bill-alt', icon: [640, 512, [], "f3d1", "M320 144c-53.02 0-96 50.14-96 112 0 61.85 42.98 112 96 112 53 0 96-50.13 96-112 0-61.86-42.98-112-96-112zm40 168c0 4.42-3.58 8-8 8h-64c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h16v-55.44l-.47.31a7.992 7.992 0 0 1-11.09-2.22l-8.88-13.31a7.992 7.992 0 0 1 2.22-11.09l15.33-10.22a23.99 23.99 0 0 1 13.31-4.03H328c4.42 0 8 3.58 8 8v88h16c4.42 0 8 3.58 8 8v16zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zm-16 272c-35.35 0-64 28.65-64 64H112c0-35.35-28.65-64-64-64V176c35.35 0 64-28.65 64-64h416c0 35.35 28.65 64 64 64v160z"] }; +var faMoon = { prefix: 'far', iconName: 'moon', icon: [512, 512, [], "f186", "M279.135 512c78.756 0 150.982-35.804 198.844-94.775 28.27-34.831-2.558-85.722-46.249-77.401-82.348 15.683-158.272-47.268-158.272-130.792 0-48.424 26.06-92.292 67.434-115.836 38.745-22.05 28.999-80.788-15.022-88.919A257.936 257.936 0 0 0 279.135 0c-141.36 0-256 114.575-256 256 0 141.36 114.576 256 256 256zm0-464c12.985 0 25.689 1.201 38.016 3.478-54.76 31.163-91.693 90.042-91.693 157.554 0 113.848 103.641 199.2 215.252 177.944C402.574 433.964 344.366 464 279.135 464c-114.875 0-208-93.125-208-208s93.125-208 208-208z"] }; +var faNewspaper = { prefix: 'far', iconName: 'newspaper', icon: [576, 512, [], "f1ea", "M552 64H112c-20.858 0-38.643 13.377-45.248 32H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h496c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24zM48 392V144h16v248c0 4.411-3.589 8-8 8s-8-3.589-8-8zm480 8H111.422c.374-2.614.578-5.283.578-8V112h416v288zM172 280h136c6.627 0 12-5.373 12-12v-96c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v96c0 6.627 5.373 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H172c-6.627 0-12-5.373-12-12zm192 0v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0-144v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0 72v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12z"] }; +var faObjectGroup = { prefix: 'far', iconName: 'object-group', icon: [512, 512, [], "f247", "M500 128c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v256H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V128h12zm-52-64h32v32h-32V64zM32 64h32v32H32V64zm32 384H32v-32h32v32zm416 0h-32v-32h32v32zm-40-64h-12c-6.627 0-12 5.373-12 12v12H96v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h12v256zm-36-192h-84v-52c0-6.628-5.373-12-12-12H108c-6.627 0-12 5.372-12 12v168c0 6.628 5.373 12 12 12h84v52c0 6.628 5.373 12 12 12h200c6.627 0 12-5.372 12-12V204c0-6.628-5.373-12-12-12zm-268-24h144v112H136V168zm240 176H232v-24h76c6.627 0 12-5.372 12-12v-76h56v112z"] }; +var faObjectUngroup = { prefix: 'far', iconName: 'object-ungroup', icon: [576, 512, [], "f248", "M564 224c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12h-88v-24h12c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v160H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h88v24h-12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V224h12zM352 64h32v32h-32V64zm0 256h32v32h-32v-32zM64 352H32v-32h32v32zm0-256H32V64h32v32zm32 216v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h12v160h-12c-6.627 0-12 5.373-12 12v12H96zm128 136h-32v-32h32v32zm280-64h-12c-6.627 0-12 5.373-12 12v12H256v-12c0-6.627-5.373-12-12-12h-12v-24h88v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12v-88h88v12c0 6.627 5.373 12 12 12h12v160zm40 64h-32v-32h32v32zm0-256h-32v-32h32v32z"] }; +var faPaperPlane = { prefix: 'far', iconName: 'paper-plane', icon: [512, 512, [], "f1d8", "M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z"] }; +var faPauseCircle = { prefix: 'far', iconName: 'pause-circle', icon: [512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm96-280v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16zm-112 0v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16z"] }; +var faPlayCircle = { prefix: 'far', iconName: 'play-circle', icon: [512, 512, [], "f144", "M371.7 238l-176-107c-15.8-8.8-35.7 2.5-35.7 21v208c0 18.4 19.8 29.8 35.7 21l176-101c16.4-9.1 16.4-32.8 0-42zM504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256z"] }; +var faPlusSquare = { prefix: 'far', iconName: 'plus-square', icon: [448, 512, [], "f0fe", "M352 240v32c0 6.6-5.4 12-12 12h-88v88c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-88h-88c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h88v-88c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v88h88c6.6 0 12 5.4 12 12zm96-160v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"] }; +var faQuestionCircle = { prefix: 'far', iconName: 'question-circle', icon: [512, 512, [], "f059", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 448c-110.532 0-200-89.431-200-200 0-110.495 89.472-200 200-200 110.491 0 200 89.471 200 200 0 110.53-89.431 200-200 200zm107.244-255.2c0 67.052-72.421 68.084-72.421 92.863V300c0 6.627-5.373 12-12 12h-45.647c-6.627 0-12-5.373-12-12v-8.659c0-35.745 27.1-50.034 47.579-61.516 17.561-9.845 28.324-16.541 28.324-29.579 0-17.246-21.999-28.693-39.784-28.693-23.189 0-33.894 10.977-48.942 29.969-4.057 5.12-11.46 6.071-16.666 2.124l-27.824-21.098c-5.107-3.872-6.251-11.066-2.644-16.363C184.846 131.491 214.94 112 261.794 112c49.071 0 101.45 38.304 101.45 88.8zM298 368c0 23.159-18.841 42-42 42s-42-18.841-42-42 18.841-42 42-42 42 18.841 42 42z"] }; +var faRegistered = { prefix: 'far', iconName: 'registered', icon: [512, 512, [], "f25d", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm110.442-81.791c-53.046-96.284-50.25-91.468-53.271-96.085 24.267-13.879 39.482-41.563 39.482-73.176 0-52.503-30.247-85.252-101.498-85.252h-78.667c-6.617 0-12 5.383-12 12V380c0 6.617 5.383 12 12 12h38.568c6.617 0 12-5.383 12-12v-83.663h31.958l47.515 89.303a11.98 11.98 0 0 0 10.593 6.36h42.81c9.14 0 14.914-9.799 10.51-17.791zM256.933 239.906h-33.875v-64.14h27.377c32.417 0 38.929 12.133 38.929 31.709-.001 20.913-11.518 32.431-32.431 32.431z"] }; +var faSadCry = { prefix: 'far', iconName: 'sad-cry', icon: [496, 512, [], "f5b3", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm144 386.4V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v151.4C315.5 447 282.8 456 248 456s-67.5-9-96-24.6V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v114.4c-34.6-36-56-84.7-56-138.4 0-110.3 89.7-200 200-200s200 89.7 200 200c0 53.7-21.4 102.5-56 138.4zM205.8 234.5c4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.3 7.9 4.8 13.7 1.6zM344 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.5 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm-96 92c-30.9 0-56 28.7-56 64s25.1 64 56 64 56-28.7 56-64-25.1-64-56-64z"] }; +var faSadTear = { prefix: 'far', iconName: 'sad-tear', icon: [496, 512, [], "f5b4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm8-152c-13.2 0-24 10.8-24 24s10.8 24 24 24c23.8 0 46.3 10.5 61.6 28.8 8.1 9.8 23.2 11.9 33.8 3.1 10.2-8.5 11.6-23.6 3.1-33.8C330 320.8 294.1 304 256 304zm-88-64c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-165.6 98.8C151 290.1 126 325.4 126 342.9c0 22.7 18.8 41.1 42 41.1s42-18.4 42-41.1c0-17.5-25-52.8-36.4-68.1-2.8-3.7-8.4-3.7-11.2 0z"] }; +var faSave = { prefix: 'far', iconName: 'save', icon: [448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM272 80v80H144V80h128zm122 352H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h42v104c0 13.255 10.745 24 24 24h176c13.255 0 24-10.745 24-24V83.882l78.243 78.243a6 6 0 0 1 1.757 4.243V426a6 6 0 0 1-6 6zM224 232c-48.523 0-88 39.477-88 88s39.477 88 88 88 88-39.477 88-88-39.477-88-88-88zm0 128c-22.056 0-40-17.944-40-40s17.944-40 40-40 40 17.944 40 40-17.944 40-40 40z"] }; +var faShareSquare = { prefix: 'far', iconName: 'share-square', icon: [576, 512, [], "f14d", "M561.938 158.06L417.94 14.092C387.926-15.922 336 5.097 336 48.032v57.198c-42.45 1.88-84.03 6.55-120.76 17.99-35.17 10.95-63.07 27.58-82.91 49.42C108.22 199.2 96 232.6 96 271.94c0 61.697 33.178 112.455 84.87 144.76 37.546 23.508 85.248-12.651 71.02-55.74-15.515-47.119-17.156-70.923 84.11-78.76V336c0 42.993 51.968 63.913 81.94 33.94l143.998-144c18.75-18.74 18.75-49.14 0-67.88zM384 336V232.16C255.309 234.082 166.492 255.35 206.31 376 176.79 357.55 144 324.08 144 271.94c0-109.334 129.14-118.947 240-119.85V48l144 144-144 144zm24.74 84.493a82.658 82.658 0 0 0 20.974-9.303c7.976-4.952 18.286.826 18.286 10.214V464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h132c6.627 0 12 5.373 12 12v4.486c0 4.917-2.987 9.369-7.569 11.152-13.702 5.331-26.396 11.537-38.05 18.585a12.138 12.138 0 0 1-6.28 1.777H54a6 6 0 0 0-6 6v340a6 6 0 0 0 6 6h340a6 6 0 0 0 6-6v-25.966c0-5.37 3.579-10.059 8.74-11.541z"] }; +var faSmile = { prefix: 'far', iconName: 'smile', icon: [496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm4 72.6c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.1-8.4-25.3-7.1-33.8 3.1z"] }; +var faSmileBeam = { prefix: 'far', iconName: 'smile-beam', icon: [496, 512, [], "f5b8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm84-143.4c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.6-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.2-8.4-25.3-7.1-33.8 3.1zM136.5 211c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.4 1.1 7.4-.5 9.3-3.7l9.5-17zM328 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4z"] }; +var faSmileWink = { prefix: 'far', iconName: 'smile-wink', icon: [496, 512, [], "f4da", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm117.8-146.4c-10.2-8.5-25.3-7.1-33.8 3.1-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-60c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1z"] }; +var faSnowflake = { prefix: 'far', iconName: 'snowflake', icon: [448, 512, [], "f2dc", "M438.237 355.927l-66.574-38.54 59.448-10.327c5.846-1.375 10.609-5.183 13.458-10.13 2.48-4.307 3.506-9.478 2.524-14.651-2.11-11.115-12.686-18.039-23.621-15.467l-85.423 31.115L255.914 256l82.136-41.926 85.423 31.115c10.936 2.572 21.512-4.352 23.621-15.467 2.111-11.115-5.046-22.209-15.981-24.781l-59.448-10.327 66.573-38.54c9.54-5.523 12.615-18.092 6.867-28.074-5.748-9.982-18.14-13.596-27.68-8.074l-66.574 38.54 20.805-56.787c3.246-10.782-2.758-22.542-13.413-26.268-10.654-3.725-21.922 1.997-25.168 12.779l-15.838 89.735-72.423 41.926V136l69.585-58.621c7.689-8.21 6.997-20.856-1.548-28.245-8.545-7.391-21.705-6.723-29.394 1.486l-38.644 46.46V20c0-11.046-9.318-20-20.813-20s-20.813 8.954-20.813 20v77.08l-38.644-46.46c-7.689-8.21-20.849-8.876-29.394-1.486-8.544 7.389-9.236 20.035-1.547 28.245L203.187 136v83.853l-72.423-41.926-15.838-89.736c-3.247-10.782-14.515-16.504-25.169-12.779-10.656 3.725-16.659 15.486-13.413 26.268l20.805 56.787-66.573-38.54c-9.54-5.523-21.933-1.908-27.68 8.074s-2.673 22.551 6.867 28.074l66.574 38.54-59.449 10.328C5.953 207.515-1.202 218.609.907 229.724c2.11 11.114 12.686 18.038 23.622 15.466l85.422-31.115L192.086 256l-82.136 41.926-85.423-31.115c-10.936-2.572-21.511 4.352-23.622 15.466-2.109 11.113 5.046 22.209 15.981 24.781l59.449 10.328-66.574 38.54C.223 361.449-2.852 374.018 2.896 384s18.14 13.597 27.68 8.074l66.574-38.54-20.805 56.786c-1.735 5.764-.828 11.805 2.02 16.751 2.48 4.307 6.433 7.784 11.392 9.517 10.655 3.725 21.923-1.997 25.169-12.779l15.838-89.736 72.423-41.926V376l-69.585 58.621c-7.69 8.21-6.997 20.855 1.547 28.245 8.544 7.388 21.705 6.723 29.394-1.487l38.644-46.46V492c0 11.046 9.318 20 20.813 20s20.813-8.954 20.813-20v-77.081l38.644 46.46c4.111 4.389 9.782 6.621 15.478 6.621 4.96 0 9.939-1.694 13.916-5.134 8.545-7.39 9.237-20.035 1.548-28.245L244.813 376v-83.853l72.423 41.926 15.838 89.736c3.246 10.782 14.514 16.504 25.168 12.779 10.653-3.726 16.659-15.487 13.412-26.268l-20.805-56.787 66.574 38.54c9.54 5.523 21.933 1.908 27.68-8.074 5.749-9.981 2.675-22.55-6.866-28.072z"] }; +var faSquare = { prefix: 'far', iconName: 'square', icon: [448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h340c3.3 0 6 2.7 6 6v340c0 3.3-2.7 6-6 6z"] }; +var faStar = { prefix: 'far', iconName: 'star', icon: [576, 512, [], "f005", "M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z"] }; +var faStarHalf = { prefix: 'far', iconName: 'star-half', icon: [576, 512, [], "f089", "M288 385.3l-124.3 65.4 23.7-138.4-100.6-98 139-20.2 62.2-126V0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6v-54.3z"] }; +var faStickyNote = { prefix: 'far', iconName: 'sticky-note', icon: [448, 512, [], "f249", "M448 348.106V80c0-26.51-21.49-48-48-48H48C21.49 32 0 53.49 0 80v351.988c0 26.51 21.49 48 48 48h268.118a48 48 0 0 0 33.941-14.059l83.882-83.882A48 48 0 0 0 448 348.106zm-128 80v-76.118h76.118L320 428.106zM400 80v223.988H296c-13.255 0-24 10.745-24 24v104H48V80h352z"] }; +var faStopCircle = { prefix: 'far', iconName: 'stop-circle', icon: [512, 512, [], "f28d", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm296-80v160c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16z"] }; +var faSun = { prefix: 'far', iconName: 'sun', icon: [512, 512, [], "f185", "M220.116 487.936l-20.213-49.425a3.992 3.992 0 0 0-5.808-1.886l-45.404 28.104c-29.466 18.24-66.295-8.519-58.054-42.179l12.699-51.865a3.993 3.993 0 0 0-3.59-4.941l-53.251-3.951c-34.554-2.562-48.632-45.855-22.174-68.247L65.08 259.05a3.992 3.992 0 0 0 0-6.106l-40.76-34.497c-26.45-22.384-12.39-65.682 22.174-68.246l53.251-3.951a3.993 3.993 0 0 0 3.59-4.941L90.637 89.443c-8.239-33.656 28.581-60.42 58.054-42.179l45.403 28.104a3.993 3.993 0 0 0 5.808-1.887l20.213-49.425c13.116-32.071 58.638-32.081 71.758 0l20.212 49.424a3.994 3.994 0 0 0 5.809 1.887l45.403-28.104c29.464-18.236 66.297 8.513 58.054 42.179l-12.699 51.865a3.995 3.995 0 0 0 3.59 4.941l53.251 3.951c34.553 2.563 48.633 45.854 22.175 68.246l-40.76 34.497a3.993 3.993 0 0 0 0 6.107l40.76 34.496c26.511 22.441 12.322 65.689-22.175 68.247l-53.251 3.951a3.993 3.993 0 0 0-3.589 4.942l12.698 51.864c8.241 33.658-28.583 60.421-58.054 42.18l-45.403-28.104a3.994 3.994 0 0 0-5.809 1.887l-20.212 49.424c-13.159 32.178-58.675 31.993-71.757 0zm16.814-64.568l19.064 46.616 19.064-46.615c10.308-25.2 40.778-35.066 63.892-20.759l42.822 26.507-11.976-48.919c-6.475-26.444 12.38-52.339 39.487-54.349l50.226-3.726-38.444-32.536c-20.782-17.591-20.747-49.621.001-67.18l38.442-32.536-50.225-3.727c-27.151-2.015-45.95-27.948-39.488-54.349l11.978-48.919-42.823 26.507c-23.151 14.327-53.603 4.4-63.892-20.76l-19.064-46.615-19.064 46.617c-10.305 25.198-40.778 35.066-63.891 20.76l-42.823-26.508 11.977 48.918c6.474 26.446-12.381 52.338-39.488 54.35l-50.224 3.726 38.443 32.537c20.782 17.588 20.747 49.619 0 67.178L52.48 322.123l50.226 3.726c27.151 2.014 45.95 27.947 39.487 54.349l-11.977 48.919 42.823-26.507c23.188-14.355 53.622-4.352 63.891 20.758zM256 384c-70.58 0-128-57.421-128-128 0-70.58 57.42-128 128-128 70.579 0 128 57.42 128 128 0 70.579-57.421 128-128 128zm0-208c-44.112 0-80 35.888-80 80s35.888 80 80 80 80-35.888 80-80-35.888-80-80-80z"] }; +var faSurprise = { prefix: 'far', iconName: 'surprise', icon: [496, 512, [], "f5c2", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-176c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm-48-72c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"] }; +var faThumbsDown = { prefix: 'far', iconName: 'thumbs-down', icon: [512, 512, [], "f165", "M466.27 225.31c4.674-22.647.864-44.538-8.99-62.99 2.958-23.868-4.021-48.565-17.34-66.99C438.986 39.423 404.117 0 327 0c-7 0-15 .01-22.22.01C201.195.01 168.997 40 128 40h-10.845c-5.64-4.975-13.042-8-21.155-8H32C14.327 32 0 46.327 0 64v240c0 17.673 14.327 32 32 32h64c11.842 0 22.175-6.438 27.708-16h7.052c19.146 16.953 46.013 60.653 68.76 83.4 13.667 13.667 10.153 108.6 71.76 108.6 57.58 0 95.27-31.936 95.27-104.73 0-18.41-3.93-33.73-8.85-46.54h36.48c48.602 0 85.82-41.565 85.82-85.58 0-19.15-4.96-34.99-13.73-49.84zM64 296c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm330.18 16.73H290.19c0 37.82 28.36 55.37 28.36 94.54 0 23.75 0 56.73-47.27 56.73-18.91-18.91-9.46-66.18-37.82-94.54C206.9 342.89 167.28 272 138.92 272H128V85.83c53.611 0 100.001-37.82 171.64-37.82h37.82c35.512 0 60.82 17.12 53.12 65.9 15.2 8.16 26.5 36.44 13.94 57.57 21.581 20.384 18.699 51.065 5.21 65.62 9.45 0 22.36 18.91 22.27 37.81-.09 18.91-16.71 37.82-37.82 37.82z"] }; +var faThumbsUp = { prefix: 'far', iconName: 'thumbs-up', icon: [512, 512, [], "f164", "M466.27 286.69C475.04 271.84 480 256 480 236.85c0-44.015-37.218-85.58-85.82-85.58H357.7c4.92-12.81 8.85-28.13 8.85-46.54C366.55 31.936 328.86 0 271.28 0c-61.607 0-58.093 94.933-71.76 108.6-22.747 22.747-49.615 66.447-68.76 83.4H32c-17.673 0-32 14.327-32 32v240c0 17.673 14.327 32 32 32h64c14.893 0 27.408-10.174 30.978-23.95 44.509 1.001 75.06 39.94 177.802 39.94 7.22 0 15.22.01 22.22.01 77.117 0 111.986-39.423 112.94-95.33 13.319-18.425 20.299-43.122 17.34-66.99 9.854-18.452 13.664-40.343 8.99-62.99zm-61.75 53.83c12.56 21.13 1.26 49.41-13.94 57.57 7.7 48.78-17.608 65.9-53.12 65.9h-37.82c-71.639 0-118.029-37.82-171.64-37.82V240h10.92c28.36 0 67.98-70.89 94.54-97.46 28.36-28.36 18.91-75.63 37.82-94.54 47.27 0 47.27 32.98 47.27 56.73 0 39.17-28.36 56.72-28.36 94.54h103.99c21.11 0 37.73 18.91 37.82 37.82.09 18.9-12.82 37.81-22.27 37.81 13.489 14.555 16.371 45.236-5.21 65.62zM88 432c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"] }; +var faTimesCircle = { prefix: 'far', iconName: 'times-circle', icon: [512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm101.8-262.2L295.6 256l62.2 62.2c4.7 4.7 4.7 12.3 0 17l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L256 295.6l-62.2 62.2c-4.7 4.7-12.3 4.7-17 0l-22.6-22.6c-4.7-4.7-4.7-12.3 0-17l62.2-62.2-62.2-62.2c-4.7-4.7-4.7-12.3 0-17l22.6-22.6c4.7-4.7 12.3-4.7 17 0l62.2 62.2 62.2-62.2c4.7-4.7 12.3-4.7 17 0l22.6 22.6c4.7 4.7 4.7 12.3 0 17z"] }; +var faTired = { prefix: 'far', iconName: 'tired', icon: [496, 512, [], "f5c8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm129.1-303.8c-3.8-4.4-10.3-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.8 1.6 15.3-2.5 3.8-4.5 3.9-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zM220 208c0-4.2-2.2-8.1-5.8-10.3l-80-48c-5-3-11.5-1.9-15.3 2.5-3.8 4.5-3.9 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.5 4.1 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3zm28 64c-45.4 0-100.9 38.3-107.8 93.3-1.5 11.8 6.9 21.6 15.5 17.9C178.4 373.5 212 368 248 368s69.6 5.5 92.3 15.2c8.5 3.7 17-6 15.5-17.9-6.9-55-62.4-93.3-107.8-93.3z"] }; +var faTrashAlt = { prefix: 'far', iconName: 'trash-alt', icon: [448, 512, [], "f2ed", "M192 188v216c0 6.627-5.373 12-12 12h-24c-6.627 0-12-5.373-12-12V188c0-6.627 5.373-12 12-12h24c6.627 0 12 5.373 12 12zm100-12h-24c-6.627 0-12 5.373-12 12v216c0 6.627 5.373 12 12 12h24c6.627 0 12-5.373 12-12V188c0-6.627-5.373-12-12-12zm132-96c13.255 0 24 10.745 24 24v12c0 6.627-5.373 12-12 12h-20v336c0 26.51-21.49 48-48 48H80c-26.51 0-48-21.49-48-48V128H12c-6.627 0-12-5.373-12-12v-12c0-13.255 10.745-24 24-24h74.411l34.018-56.696A48 48 0 0 1 173.589 0h100.823a48 48 0 0 1 41.16 23.304L349.589 80H424zm-269.611 0h139.223L276.16 50.913A6 6 0 0 0 271.015 48h-94.028a6 6 0 0 0-5.145 2.913L154.389 80zM368 128H80v330a6 6 0 0 0 6 6h276a6 6 0 0 0 6-6V128z"] }; +var faUser = { prefix: 'far', iconName: 'user', icon: [448, 512, [], "f007", "M313.6 304c-28.7 0-42.5 16-89.6 16-47.1 0-60.8-16-89.6-16C60.2 304 0 364.2 0 438.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-25.6c0-74.2-60.2-134.4-134.4-134.4zM400 464H48v-25.6c0-47.6 38.8-86.4 86.4-86.4 14.6 0 38.3 16 89.6 16 51.7 0 74.9-16 89.6-16 47.6 0 86.4 38.8 86.4 86.4V464zM224 288c79.5 0 144-64.5 144-144S303.5 0 224 0 80 64.5 80 144s64.5 144 144 144zm0-240c52.9 0 96 43.1 96 96s-43.1 96-96 96-96-43.1-96-96 43.1-96 96-96z"] }; +var faUserCircle = { prefix: 'far', iconName: 'user-circle', icon: [496, 512, [], "f2bd", "M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"] }; +var faWindowClose = { prefix: 'far', iconName: 'window-close', icon: [512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v340zM356.5 194.6L295.1 256l61.4 61.4c4.6 4.6 4.6 12.1 0 16.8l-22.3 22.3c-4.6 4.6-12.1 4.6-16.8 0L256 295.1l-61.4 61.4c-4.6 4.6-12.1 4.6-16.8 0l-22.3-22.3c-4.6-4.6-4.6-12.1 0-16.8l61.4-61.4-61.4-61.4c-4.6-4.6-4.6-12.1 0-16.8l22.3-22.3c4.6-4.6 12.1-4.6 16.8 0l61.4 61.4 61.4-61.4c4.6-4.6 12.1-4.6 16.8 0l22.3 22.3c4.7 4.6 4.7 12.1 0 16.8z"] }; +var faWindowMaximize = { prefix: 'far', iconName: 'window-maximize', icon: [512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V192h416v234z"] }; +var faWindowMinimize = { prefix: 'far', iconName: 'window-minimize', icon: [512, 512, [], "f2d1", "M480 480H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h448c17.7 0 32 14.3 32 32s-14.3 32-32 32z"] }; +var faWindowRestore = { prefix: 'far', iconName: 'window-restore', icon: [512, 512, [], "f2d2", "M464 0H144c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-96 464H48V256h320v208zm96-96h-48V144c0-26.5-21.5-48-48-48H144V48h320v320z"] }; +var _iconsCache = { + faAddressBook: faAddressBook, + faAddressCard: faAddressCard, + faAngry: faAngry, + faArrowAltCircleDown: faArrowAltCircleDown, + faArrowAltCircleLeft: faArrowAltCircleLeft, + faArrowAltCircleRight: faArrowAltCircleRight, + faArrowAltCircleUp: faArrowAltCircleUp, + faBell: faBell, + faBellSlash: faBellSlash, + faBookmark: faBookmark, + faBuilding: faBuilding, + faCalendar: faCalendar, + faCalendarAlt: faCalendarAlt, + faCalendarCheck: faCalendarCheck, + faCalendarMinus: faCalendarMinus, + faCalendarPlus: faCalendarPlus, + faCalendarTimes: faCalendarTimes, + faCaretSquareDown: faCaretSquareDown, + faCaretSquareLeft: faCaretSquareLeft, + faCaretSquareRight: faCaretSquareRight, + faCaretSquareUp: faCaretSquareUp, + faChartBar: faChartBar, + faCheckCircle: faCheckCircle, + faCheckSquare: faCheckSquare, + faCircle: faCircle, + faClipboard: faClipboard, + faClock: faClock, + faClone: faClone, + faClosedCaptioning: faClosedCaptioning, + faComment: faComment, + faCommentAlt: faCommentAlt, + faCommentDots: faCommentDots, + faComments: faComments, + faCompass: faCompass, + faCopy: faCopy, + faCopyright: faCopyright, + faCreditCard: faCreditCard, + faDizzy: faDizzy, + faDotCircle: faDotCircle, + faEdit: faEdit, + faEnvelope: faEnvelope, + faEnvelopeOpen: faEnvelopeOpen, + faEye: faEye, + faEyeSlash: faEyeSlash, + faFile: faFile, + faFileAlt: faFileAlt, + faFileArchive: faFileArchive, + faFileAudio: faFileAudio, + faFileCode: faFileCode, + faFileExcel: faFileExcel, + faFileImage: faFileImage, + faFilePdf: faFilePdf, + faFilePowerpoint: faFilePowerpoint, + faFileVideo: faFileVideo, + faFileWord: faFileWord, + faFlag: faFlag, + faFlushed: faFlushed, + faFolder: faFolder, + faFolderOpen: faFolderOpen, + faFontAwesomeLogoFull: faFontAwesomeLogoFull, + faFrown: faFrown, + faFrownOpen: faFrownOpen, + faFutbol: faFutbol, + faGem: faGem, + faGrimace: faGrimace, + faGrin: faGrin, + faGrinAlt: faGrinAlt, + faGrinBeam: faGrinBeam, + faGrinBeamSweat: faGrinBeamSweat, + faGrinHearts: faGrinHearts, + faGrinSquint: faGrinSquint, + faGrinSquintTears: faGrinSquintTears, + faGrinStars: faGrinStars, + faGrinTears: faGrinTears, + faGrinTongue: faGrinTongue, + faGrinTongueSquint: faGrinTongueSquint, + faGrinTongueWink: faGrinTongueWink, + faGrinWink: faGrinWink, + faHandLizard: faHandLizard, + faHandPaper: faHandPaper, + faHandPeace: faHandPeace, + faHandPointDown: faHandPointDown, + faHandPointLeft: faHandPointLeft, + faHandPointRight: faHandPointRight, + faHandPointUp: faHandPointUp, + faHandPointer: faHandPointer, + faHandRock: faHandRock, + faHandScissors: faHandScissors, + faHandSpock: faHandSpock, + faHandshake: faHandshake, + faHdd: faHdd, + faHeart: faHeart, + faHospital: faHospital, + faHourglass: faHourglass, + faIdBadge: faIdBadge, + faIdCard: faIdCard, + faImage: faImage, + faImages: faImages, + faKeyboard: faKeyboard, + faKiss: faKiss, + faKissBeam: faKissBeam, + faKissWinkHeart: faKissWinkHeart, + faLaugh: faLaugh, + faLaughBeam: faLaughBeam, + faLaughSquint: faLaughSquint, + faLaughWink: faLaughWink, + faLemon: faLemon, + faLifeRing: faLifeRing, + faLightbulb: faLightbulb, + faListAlt: faListAlt, + faMap: faMap, + faMeh: faMeh, + faMehBlank: faMehBlank, + faMehRollingEyes: faMehRollingEyes, + faMinusSquare: faMinusSquare, + faMoneyBillAlt: faMoneyBillAlt, + faMoon: faMoon, + faNewspaper: faNewspaper, + faObjectGroup: faObjectGroup, + faObjectUngroup: faObjectUngroup, + faPaperPlane: faPaperPlane, + faPauseCircle: faPauseCircle, + faPlayCircle: faPlayCircle, + faPlusSquare: faPlusSquare, + faQuestionCircle: faQuestionCircle, + faRegistered: faRegistered, + faSadCry: faSadCry, + faSadTear: faSadTear, + faSave: faSave, + faShareSquare: faShareSquare, + faSmile: faSmile, + faSmileBeam: faSmileBeam, + faSmileWink: faSmileWink, + faSnowflake: faSnowflake, + faSquare: faSquare, + faStar: faStar, + faStarHalf: faStarHalf, + faStickyNote: faStickyNote, + faStopCircle: faStopCircle, + faSun: faSun, + faSurprise: faSurprise, + faThumbsDown: faThumbsDown, + faThumbsUp: faThumbsUp, + faTimesCircle: faTimesCircle, + faTired: faTired, + faTrashAlt: faTrashAlt, + faUser: faUser, + faUserCircle: faUserCircle, + faWindowClose: faWindowClose, + faWindowMaximize: faWindowMaximize, + faWindowMinimize: faWindowMinimize, + faWindowRestore: faWindowRestore +}; + +exports.far = _iconsCache; +exports.prefix = prefix; +exports.faAddressBook = faAddressBook; +exports.faAddressCard = faAddressCard; +exports.faAngry = faAngry; +exports.faArrowAltCircleDown = faArrowAltCircleDown; +exports.faArrowAltCircleLeft = faArrowAltCircleLeft; +exports.faArrowAltCircleRight = faArrowAltCircleRight; +exports.faArrowAltCircleUp = faArrowAltCircleUp; +exports.faBell = faBell; +exports.faBellSlash = faBellSlash; +exports.faBookmark = faBookmark; +exports.faBuilding = faBuilding; +exports.faCalendar = faCalendar; +exports.faCalendarAlt = faCalendarAlt; +exports.faCalendarCheck = faCalendarCheck; +exports.faCalendarMinus = faCalendarMinus; +exports.faCalendarPlus = faCalendarPlus; +exports.faCalendarTimes = faCalendarTimes; +exports.faCaretSquareDown = faCaretSquareDown; +exports.faCaretSquareLeft = faCaretSquareLeft; +exports.faCaretSquareRight = faCaretSquareRight; +exports.faCaretSquareUp = faCaretSquareUp; +exports.faChartBar = faChartBar; +exports.faCheckCircle = faCheckCircle; +exports.faCheckSquare = faCheckSquare; +exports.faCircle = faCircle; +exports.faClipboard = faClipboard; +exports.faClock = faClock; +exports.faClone = faClone; +exports.faClosedCaptioning = faClosedCaptioning; +exports.faComment = faComment; +exports.faCommentAlt = faCommentAlt; +exports.faCommentDots = faCommentDots; +exports.faComments = faComments; +exports.faCompass = faCompass; +exports.faCopy = faCopy; +exports.faCopyright = faCopyright; +exports.faCreditCard = faCreditCard; +exports.faDizzy = faDizzy; +exports.faDotCircle = faDotCircle; +exports.faEdit = faEdit; +exports.faEnvelope = faEnvelope; +exports.faEnvelopeOpen = faEnvelopeOpen; +exports.faEye = faEye; +exports.faEyeSlash = faEyeSlash; +exports.faFile = faFile; +exports.faFileAlt = faFileAlt; +exports.faFileArchive = faFileArchive; +exports.faFileAudio = faFileAudio; +exports.faFileCode = faFileCode; +exports.faFileExcel = faFileExcel; +exports.faFileImage = faFileImage; +exports.faFilePdf = faFilePdf; +exports.faFilePowerpoint = faFilePowerpoint; +exports.faFileVideo = faFileVideo; +exports.faFileWord = faFileWord; +exports.faFlag = faFlag; +exports.faFlushed = faFlushed; +exports.faFolder = faFolder; +exports.faFolderOpen = faFolderOpen; +exports.faFontAwesomeLogoFull = faFontAwesomeLogoFull; +exports.faFrown = faFrown; +exports.faFrownOpen = faFrownOpen; +exports.faFutbol = faFutbol; +exports.faGem = faGem; +exports.faGrimace = faGrimace; +exports.faGrin = faGrin; +exports.faGrinAlt = faGrinAlt; +exports.faGrinBeam = faGrinBeam; +exports.faGrinBeamSweat = faGrinBeamSweat; +exports.faGrinHearts = faGrinHearts; +exports.faGrinSquint = faGrinSquint; +exports.faGrinSquintTears = faGrinSquintTears; +exports.faGrinStars = faGrinStars; +exports.faGrinTears = faGrinTears; +exports.faGrinTongue = faGrinTongue; +exports.faGrinTongueSquint = faGrinTongueSquint; +exports.faGrinTongueWink = faGrinTongueWink; +exports.faGrinWink = faGrinWink; +exports.faHandLizard = faHandLizard; +exports.faHandPaper = faHandPaper; +exports.faHandPeace = faHandPeace; +exports.faHandPointDown = faHandPointDown; +exports.faHandPointLeft = faHandPointLeft; +exports.faHandPointRight = faHandPointRight; +exports.faHandPointUp = faHandPointUp; +exports.faHandPointer = faHandPointer; +exports.faHandRock = faHandRock; +exports.faHandScissors = faHandScissors; +exports.faHandSpock = faHandSpock; +exports.faHandshake = faHandshake; +exports.faHdd = faHdd; +exports.faHeart = faHeart; +exports.faHospital = faHospital; +exports.faHourglass = faHourglass; +exports.faIdBadge = faIdBadge; +exports.faIdCard = faIdCard; +exports.faImage = faImage; +exports.faImages = faImages; +exports.faKeyboard = faKeyboard; +exports.faKiss = faKiss; +exports.faKissBeam = faKissBeam; +exports.faKissWinkHeart = faKissWinkHeart; +exports.faLaugh = faLaugh; +exports.faLaughBeam = faLaughBeam; +exports.faLaughSquint = faLaughSquint; +exports.faLaughWink = faLaughWink; +exports.faLemon = faLemon; +exports.faLifeRing = faLifeRing; +exports.faLightbulb = faLightbulb; +exports.faListAlt = faListAlt; +exports.faMap = faMap; +exports.faMeh = faMeh; +exports.faMehBlank = faMehBlank; +exports.faMehRollingEyes = faMehRollingEyes; +exports.faMinusSquare = faMinusSquare; +exports.faMoneyBillAlt = faMoneyBillAlt; +exports.faMoon = faMoon; +exports.faNewspaper = faNewspaper; +exports.faObjectGroup = faObjectGroup; +exports.faObjectUngroup = faObjectUngroup; +exports.faPaperPlane = faPaperPlane; +exports.faPauseCircle = faPauseCircle; +exports.faPlayCircle = faPlayCircle; +exports.faPlusSquare = faPlusSquare; +exports.faQuestionCircle = faQuestionCircle; +exports.faRegistered = faRegistered; +exports.faSadCry = faSadCry; +exports.faSadTear = faSadTear; +exports.faSave = faSave; +exports.faShareSquare = faShareSquare; +exports.faSmile = faSmile; +exports.faSmileBeam = faSmileBeam; +exports.faSmileWink = faSmileWink; +exports.faSnowflake = faSnowflake; +exports.faSquare = faSquare; +exports.faStar = faStar; +exports.faStarHalf = faStarHalf; +exports.faStickyNote = faStickyNote; +exports.faStopCircle = faStopCircle; +exports.faSun = faSun; +exports.faSurprise = faSurprise; +exports.faThumbsDown = faThumbsDown; +exports.faThumbsUp = faThumbsUp; +exports.faTimesCircle = faTimesCircle; +exports.faTired = faTired; +exports.faTrashAlt = faTrashAlt; +exports.faUser = faUser; +exports.faUserCircle = faUserCircle; +exports.faWindowClose = faWindowClose; +exports.faWindowMaximize = faWindowMaximize; +exports.faWindowMinimize = faWindowMinimize; +exports.faWindowRestore = faWindowRestore; + +Object.defineProperty(exports, '__esModule', { value: true }); + +}))); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/package.json b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/package.json new file mode 100644 index 0000000000..23bb8db59a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-regular-svg-icons/package.json @@ -0,0 +1,59 @@ +{ + "description": "The iconic font, CSS, and SVG framework", + "keywords": [ + "font", + "awesome", + "fontawesome", + "icon", + "svg", + "bootstrap" + ], + "homepage": "https://fontawesome.com", + "bugs": { + "url": "http://github.com/FortAwesome/Font-Awesome/issues" + }, + "author": { + "name": "Dave Gandy", + "email": "dave@fontawesome.com", + "web": "http://twitter.com/davegandy" + }, + "contributors": [ + { + "name": "Brian Talbot", + "web": "http://twitter.com/talbs" + }, + { + "name": "Travis Chase", + "web": "http://twitter.com/supercodepoet" + }, + { + "name": "Rob Madole", + "web": "http://twitter.com/robmadole" + }, + { + "name": "Geremia Taglialatela", + "web": "http://twitter.com/gtagliala" + }, + { + "name": "Mike Wilkerson", + "web": "http://twitter.com/mw77" + } + ], + "repository": { + "type": "git", + "url": "https://github.com/FortAwesome/Font-Awesome" + }, + "engines": { + "node": ">=6" + }, + "dependencies": { + "@fortawesome/fontawesome-common-types": "^0.2.1" + }, + "version": "5.1.1", + "name": "@fortawesome/free-regular-svg-icons", + "main": "index.js", + "module": "index.es.js", + "jsnext:main": "index.es.js", + "license": "(CC-BY-4.0 AND MIT)", + "types": "./index.d.ts" +} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/LICENSE.txt b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/LICENSE.txt new file mode 100644 index 0000000000..28c1c4bc73 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/LICENSE.txt @@ -0,0 +1,34 @@ +Font Awesome Free License +------------------------- + +Font Awesome Free is free, open source, and GPL friendly. You can use it for +commercial projects, open source projects, or really almost whatever you want. +Full Font Awesome Free license: https://fontawesome.com/license. + +# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) +In the Font Awesome Free download, the CC BY 4.0 license applies to all icons +packaged as SVG and JS file types. + +# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL) +In the Font Awesome Free download, the SIL OLF license applies to all icons +packaged as web and desktop font files. + +# Code: MIT License (https://opensource.org/licenses/MIT) +In the Font Awesome Free download, the MIT license applies to all non-font and +non-icon files. + +# Attribution +Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font +Awesome Free files already contain embedded comments with sufficient +attribution, so you shouldn't need to do anything additional when using these +files normally. + +We've kept attribution comments terse, so we ask that you do not actively work +to remove them from files, especially code. They're a great way for folks to +learn about Font Awesome. + +# Brand Icons +All brand icons are trademarks of their respective owners. The use of these +trademarks does not indicate endorsement of the trademark holder by Font +Awesome, nor vice versa. **Please do not use brand logos for any purpose except +to represent the company, product, or service to which they refer.** diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/README.md b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/README.md new file mode 100644 index 0000000000..1122d85938 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/README.md @@ -0,0 +1,27 @@ +# @fortawesome/free-solid-svg-icons - SVG with JavaScript version + +> "I came here to chew bubblegum and install Font Awesome 5 - and I'm all out of bubblegum" + +[![npm](https://img.shields.io/npm/v/@fortawesome/free-solid-svg-icons.svg?style=flat-square)](https://www.npmjs.com/package/@fortawesome/free-solid-svg-icons) + +## Installation + +``` +$ npm i --save @fortawesome/free-solid-svg-icons +``` + +Or + +``` +$ yarn add @fortawesome/free-solid-svg-icons +``` + +## Documentation + +Get started [here](https://fontawesome.com/get-started/svg-with-js). Continue your journey [here](https://fontawesome.com/how-to-use/svg-with-js). + +Or go straight to the [API documentation](https://fontawesome.com/how-to-use/font-awesome-api). + +## Issues and support + +Start with [GitHub issues](https://github.com/FortAwesome/Font-Awesome/issues) and ping us on [Twitter](https://twitter.com/fontawesome) if you need to. diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAddressBook.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAddressBook.d.ts new file mode 100644 index 0000000000..8120fc39e1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAddressBook.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAddressBook: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAddressBook.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAddressBook.js new file mode 100644 index 0000000000..a3c0720665 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAddressBook.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'address-book'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f2b9'; +var svgPathData = 'M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAddressBook = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAddressCard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAddressCard.d.ts new file mode 100644 index 0000000000..59cfe9fcf7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAddressCard.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAddressCard: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAddressCard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAddressCard.js new file mode 100644 index 0000000000..4ecdc037fa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAddressCard.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'address-card'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f2bb'; +var svgPathData = 'M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-352 96c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H86.4C74 384 64 375.4 64 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2zM512 312c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAddressCard = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAdjust.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAdjust.d.ts new file mode 100644 index 0000000000..aa4c9b8163 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAdjust.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAdjust: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAdjust.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAdjust.js new file mode 100644 index 0000000000..d525e5d7d4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAdjust.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'adjust'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f042'; +var svgPathData = 'M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAdjust = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignCenter.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignCenter.d.ts new file mode 100644 index 0000000000..c36af4c69f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignCenter.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAlignCenter: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignCenter.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignCenter.js new file mode 100644 index 0000000000..9f91fe9c96 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignCenter.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'align-center'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f037'; +var svgPathData = 'M352 44v40c0 8.837-7.163 16-16 16H112c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h224c8.837 0 16 7.163 16 16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm320-200H112c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAlignCenter = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignJustify.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignJustify.d.ts new file mode 100644 index 0000000000..062dfb03a1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignJustify.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAlignJustify: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignJustify.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignJustify.js new file mode 100644 index 0000000000..154d3b1749 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignJustify.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'align-justify'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f039'; +var svgPathData = 'M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm16 144h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0-128h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAlignJustify = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignLeft.d.ts new file mode 100644 index 0000000000..6b69478781 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignLeft.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAlignLeft: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignLeft.js new file mode 100644 index 0000000000..b61596f638 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignLeft.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'align-left'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f036'; +var svgPathData = 'M288 44v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16zM0 172v40c0 8.837 7.163 16 16 16h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16zm16 312h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm256-200H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAlignLeft = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignRight.d.ts new file mode 100644 index 0000000000..47420f01a8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignRight.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAlignRight: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignRight.js new file mode 100644 index 0000000000..9b9e472f67 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAlignRight.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'align-right'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f038'; +var svgPathData = 'M160 84V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H176c-8.837 0-16-7.163-16-16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAlignRight = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAllergies.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAllergies.d.ts new file mode 100644 index 0000000000..55b55bced9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAllergies.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAllergies: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAllergies.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAllergies.js new file mode 100644 index 0000000000..140434e202 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAllergies.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'allergies'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f461'; +var svgPathData = 'M416 112c-17.6 0-32 14.4-32 32v72c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v152c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V32c0-17.6-14.4-32-32-32s-32 14.4-32 32v184c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32S96 46.4 96 64v241l-23.6-32.5c-13-17.9-38-21.8-55.9-8.8s-21.8 38-8.8 55.9l125.6 172.7c9 12.4 23.5 19.8 38.8 19.8h197.6c22.3 0 41.6-15.3 46.7-37l26.5-112.7c3.2-13.7 4.9-28.3 5.1-42.3V144c0-17.6-14.4-32-32-32zM176 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 32c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32-128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAllergies = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAmbulance.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAmbulance.d.ts new file mode 100644 index 0000000000..5c3d97c85b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAmbulance.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAmbulance: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAmbulance.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAmbulance.js new file mode 100644 index 0000000000..c59224c5ca --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAmbulance.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'ambulance'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f0f9'; +var svgPathData = 'M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm144-248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm176 248c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAmbulance = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAmericanSignLanguageInterpreting.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAmericanSignLanguageInterpreting.d.ts new file mode 100644 index 0000000000..8b20d093f2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAmericanSignLanguageInterpreting.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAmericanSignLanguageInterpreting: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAmericanSignLanguageInterpreting.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAmericanSignLanguageInterpreting.js new file mode 100644 index 0000000000..7150fa74f1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAmericanSignLanguageInterpreting.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'american-sign-language-interpreting'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f2a3'; +var svgPathData = 'M290.547 189.039c-20.295-10.149-44.147-11.199-64.739-3.89 42.606 0 71.208 20.475 85.578 50.576 8.576 17.899-5.148 38.071-23.617 38.071 18.429 0 32.211 20.136 23.617 38.071-14.725 30.846-46.123 50.854-80.298 50.854-.557 0-94.471-8.615-94.471-8.615l-66.406 33.347c-9.384 4.693-19.815.379-23.895-7.781L1.86 290.747c-4.167-8.615-1.111-18.897 6.946-23.621l58.072-33.069L108 159.861c6.39-57.245 34.731-109.767 79.743-146.726 11.391-9.448 28.341-7.781 37.51 3.613 9.446 11.394 7.78 28.067-3.612 37.516-12.503 10.559-23.618 22.509-32.509 35.57 21.672-14.729 46.679-24.732 74.186-28.067 14.725-1.945 28.063 8.336 29.73 23.065 1.945 14.728-8.336 28.067-23.062 29.734-16.116 1.945-31.12 7.503-44.178 15.284 26.114-5.713 58.712-3.138 88.079 11.115 13.336 6.669 18.893 22.509 12.224 35.848-6.389 13.06-22.504 18.617-35.564 12.226zm-27.229 69.472c-6.112-12.505-18.338-20.286-32.231-20.286a35.46 35.46 0 0 0-35.565 35.57c0 21.428 17.808 35.57 35.565 35.57 13.893 0 26.119-7.781 32.231-20.286 4.446-9.449 13.614-15.006 23.339-15.284-9.725-.277-18.893-5.835-23.339-15.284zm374.821-37.237c4.168 8.615 1.111 18.897-6.946 23.621l-58.071 33.069L532 352.16c-6.39 57.245-34.731 109.767-79.743 146.726-10.932 9.112-27.799 8.144-37.51-3.613-9.446-11.394-7.78-28.067 3.613-37.516 12.503-10.559 23.617-22.509 32.508-35.57-21.672 14.729-46.679 24.732-74.186 28.067-10.021 2.506-27.552-5.643-29.73-23.065-1.945-14.728 8.336-28.067 23.062-29.734 16.116-1.946 31.12-7.503 44.178-15.284-26.114 5.713-58.712 3.138-88.079-11.115-13.336-6.669-18.893-22.509-12.224-35.848 6.389-13.061 22.505-18.619 35.565-12.227 20.295 10.149 44.147 11.199 64.739 3.89-42.606 0-71.208-20.475-85.578-50.576-8.576-17.899 5.148-38.071 23.617-38.071-18.429 0-32.211-20.136-23.617-38.071 14.033-29.396 44.039-50.887 81.966-50.854l92.803 8.615 66.406-33.347c9.408-4.704 19.828-.354 23.894 7.781l44.455 88.926zm-229.227-18.618c-13.893 0-26.119 7.781-32.231 20.286-4.446 9.449-13.614 15.006-23.339 15.284 9.725.278 18.893 5.836 23.339 15.284 6.112 12.505 18.338 20.286 32.231 20.286a35.46 35.46 0 0 0 35.565-35.57c0-21.429-17.808-35.57-35.565-35.57z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAmericanSignLanguageInterpreting = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAnchor.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAnchor.d.ts new file mode 100644 index 0000000000..f7c805b862 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAnchor.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAnchor: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAnchor.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAnchor.js new file mode 100644 index 0000000000..f2ce876a61 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAnchor.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'anchor'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f13d'; +var svgPathData = 'M12.971 352h32.394C67.172 454.735 181.944 512 288 512c106.229 0 220.853-57.38 242.635-160h32.394c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0l-67.029 67.029c-7.56 7.56-2.206 20.485 8.485 20.485h35.146c-20.29 54.317-84.963 86.588-144.117 94.015V256h52c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-52v-5.47c37.281-13.178 63.995-48.725 64-90.518C384.005 43.772 341.605.738 289.37.01 235.723-.739 192 42.525 192 96c0 41.798 26.716 77.35 64 90.53V192h-52c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v190.015c-58.936-7.399-123.82-39.679-144.117-94.015h35.146c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0L4.485 331.515C-3.074 339.074 2.28 352 12.971 352zM288 64c17.645 0 32 14.355 32 32s-14.355 32-32 32-32-14.355-32-32 14.355-32 32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAnchor = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleDown.d.ts new file mode 100644 index 0000000000..12cd21d845 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleDown.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAngleDoubleDown: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleDown.js new file mode 100644 index 0000000000..8862773489 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleDown.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'angle-double-down'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f103'; +var svgPathData = 'M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAngleDoubleDown = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleLeft.d.ts new file mode 100644 index 0000000000..c480be2e30 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleLeft.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAngleDoubleLeft: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleLeft.js new file mode 100644 index 0000000000..cfb55a5dbd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleLeft.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'angle-double-left'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f100'; +var svgPathData = 'M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAngleDoubleLeft = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleRight.d.ts new file mode 100644 index 0000000000..dc6f266f7c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleRight.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAngleDoubleRight: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleRight.js new file mode 100644 index 0000000000..484fbc4f35 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleRight.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'angle-double-right'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f101'; +var svgPathData = 'M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAngleDoubleRight = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleUp.d.ts new file mode 100644 index 0000000000..eeae70163d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleUp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAngleDoubleUp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleUp.js new file mode 100644 index 0000000000..ea71dbba17 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDoubleUp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'angle-double-up'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f102'; +var svgPathData = 'M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAngleDoubleUp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDown.d.ts new file mode 100644 index 0000000000..f45ac4f6ee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDown.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAngleDown: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDown.js new file mode 100644 index 0000000000..93d9a9e582 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleDown.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'angle-down'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f107'; +var svgPathData = 'M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAngleDown = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleLeft.d.ts new file mode 100644 index 0000000000..515f26a34f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleLeft.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAngleLeft: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleLeft.js new file mode 100644 index 0000000000..e1b0e9edda --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleLeft.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'angle-left'; +var width = 256; +var height = 512; +var ligatures = []; +var unicode = 'f104'; +var svgPathData = 'M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAngleLeft = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleRight.d.ts new file mode 100644 index 0000000000..60e09a6321 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleRight.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAngleRight: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleRight.js new file mode 100644 index 0000000000..e0320c647a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleRight.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'angle-right'; +var width = 256; +var height = 512; +var ligatures = []; +var unicode = 'f105'; +var svgPathData = 'M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAngleRight = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleUp.d.ts new file mode 100644 index 0000000000..6f9af0a4ca --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleUp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAngleUp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleUp.js new file mode 100644 index 0000000000..e29b79055d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngleUp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'angle-up'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f106'; +var svgPathData = 'M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAngleUp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngry.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngry.d.ts new file mode 100644 index 0000000000..b65041ce29 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngry.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAngry: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngry.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngry.js new file mode 100644 index 0000000000..6485524c92 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAngry.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'angry'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f556'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 240c0-9.3 4.1-17.5 10.5-23.4l-31-9.3c-8.5-2.5-13.3-11.5-10.7-19.9 2.5-8.5 11.4-13.2 19.9-10.7l80 24c8.5 2.5 13.3 11.5 10.7 19.9-2.1 6.9-8.4 11.4-15.3 11.4-.5 0-1.1-.2-1.7-.2.7 2.7 1.7 5.3 1.7 8.2 0 17.7-14.3 32-32 32S136 257.7 136 240zm168 154.2c-27.8-33.4-84.2-33.4-112.1 0-13.5 16.3-38.2-4.2-24.6-20.5 20-24 49.4-37.8 80.6-37.8s60.6 13.8 80.6 37.8c13.8 16.5-11.1 36.6-24.5 20.5zm76.6-186.9l-31 9.3c6.3 5.8 10.5 14.1 10.5 23.4 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-2.9.9-5.6 1.7-8.2-.6.1-1.1.2-1.7.2-6.9 0-13.2-4.5-15.3-11.4-2.5-8.5 2.3-17.4 10.7-19.9l80-24c8.4-2.5 17.4 2.3 19.9 10.7 2.5 8.5-2.3 17.4-10.8 19.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAngry = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArchive.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArchive.d.ts new file mode 100644 index 0000000000..d72a7a8b0f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArchive.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faArchive: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArchive.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArchive.js new file mode 100644 index 0000000000..dbb8931604 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArchive.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'archive'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f187'; +var svgPathData = 'M32 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160H32v288zm160-212c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v8c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-8zM480 32H32C14.3 32 0 46.3 0 64v48c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16V64c0-17.7-14.3-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faArchive = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArchway.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArchway.d.ts new file mode 100644 index 0000000000..71e7000338 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArchway.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faArchway: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArchway.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArchway.js new file mode 100644 index 0000000000..2ace256afa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArchway.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'archway'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f557'; +var svgPathData = 'M560 448h-16V96H32v352H16.02c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16H176c8.84 0 16-7.16 16-16V320c0-53.02 42.98-96 96-96s96 42.98 96 96l.02 160v16c0 8.84 7.16 16 16 16H560c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm0-448H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h544c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faArchway = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleDown.d.ts new file mode 100644 index 0000000000..241e144ef0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleDown.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faArrowAltCircleDown: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleDown.js new file mode 100644 index 0000000000..50f632f3c5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleDown.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'arrow-alt-circle-down'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f358'; +var svgPathData = 'M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM212 140v116h-70.9c-10.7 0-16.1 13-8.5 20.5l114.9 114.3c4.7 4.7 12.2 4.7 16.9 0l114.9-114.3c7.6-7.6 2.2-20.5-8.5-20.5H300V140c0-6.6-5.4-12-12-12h-64c-6.6 0-12 5.4-12 12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faArrowAltCircleDown = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleLeft.d.ts new file mode 100644 index 0000000000..2df7d46b94 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleLeft.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faArrowAltCircleLeft: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleLeft.js new file mode 100644 index 0000000000..08645be43d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleLeft.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'arrow-alt-circle-left'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f359'; +var svgPathData = 'M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faArrowAltCircleLeft = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleRight.d.ts new file mode 100644 index 0000000000..540e32dc61 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleRight.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faArrowAltCircleRight: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleRight.js new file mode 100644 index 0000000000..7ba2e0a60d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleRight.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'arrow-alt-circle-right'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f35a'; +var svgPathData = 'M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faArrowAltCircleRight = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleUp.d.ts new file mode 100644 index 0000000000..c4e25a2f4e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleUp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faArrowAltCircleUp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleUp.js new file mode 100644 index 0000000000..cf5c386c69 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowAltCircleUp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'arrow-alt-circle-up'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f35b'; +var svgPathData = 'M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm292 116V256h70.9c10.7 0 16.1-13 8.5-20.5L264.5 121.2c-4.7-4.7-12.2-4.7-16.9 0l-115 114.3c-7.6 7.6-2.2 20.5 8.5 20.5H212v116c0 6.6 5.4 12 12 12h64c6.6 0 12-5.4 12-12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faArrowAltCircleUp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleDown.d.ts new file mode 100644 index 0000000000..753091ece3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleDown.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faArrowCircleDown: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleDown.js new file mode 100644 index 0000000000..012df57882 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleDown.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'arrow-circle-down'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0ab'; +var svgPathData = 'M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-143.6-28.9L288 302.6V120c0-13.3-10.7-24-24-24h-16c-13.3 0-24 10.7-24 24v182.6l-72.4-75.5c-9.3-9.7-24.8-9.9-34.3-.4l-10.9 11c-9.4 9.4-9.4 24.6 0 33.9L239 404.3c9.4 9.4 24.6 9.4 33.9 0l132.7-132.7c9.4-9.4 9.4-24.6 0-33.9l-10.9-11c-9.5-9.5-25-9.3-34.3.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faArrowCircleDown = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleLeft.d.ts new file mode 100644 index 0000000000..e243f2ffba --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleLeft.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faArrowCircleLeft: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleLeft.js new file mode 100644 index 0000000000..e020e7c185 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleLeft.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'arrow-circle-left'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0a8'; +var svgPathData = 'M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm28.9-143.6L209.4 288H392c13.3 0 24-10.7 24-24v-16c0-13.3-10.7-24-24-24H209.4l75.5-72.4c9.7-9.3 9.9-24.8.4-34.3l-11-10.9c-9.4-9.4-24.6-9.4-33.9 0L107.7 239c-9.4 9.4-9.4 24.6 0 33.9l132.7 132.7c9.4 9.4 24.6 9.4 33.9 0l11-10.9c9.5-9.5 9.3-25-.4-34.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faArrowCircleLeft = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleRight.d.ts new file mode 100644 index 0000000000..41d35701cb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleRight.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faArrowCircleRight: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleRight.js new file mode 100644 index 0000000000..683aca284e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleRight.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'arrow-circle-right'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0a9'; +var svgPathData = 'M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28.9 143.6l75.5 72.4H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h182.6l-75.5 72.4c-9.7 9.3-9.9 24.8-.4 34.3l11 10.9c9.4 9.4 24.6 9.4 33.9 0L404.3 273c9.4-9.4 9.4-24.6 0-33.9L271.6 106.3c-9.4-9.4-24.6-9.4-33.9 0l-11 10.9c-9.5 9.6-9.3 25.1.4 34.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faArrowCircleRight = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleUp.d.ts new file mode 100644 index 0000000000..0a59bf14e8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleUp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faArrowCircleUp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleUp.js new file mode 100644 index 0000000000..abea938e07 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowCircleUp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'arrow-circle-up'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0aa'; +var svgPathData = 'M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faArrowCircleUp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowDown.d.ts new file mode 100644 index 0000000000..4bd1ca0191 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowDown.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faArrowDown: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowDown.js new file mode 100644 index 0000000000..3e7fb5b7e2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowDown.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'arrow-down'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f063'; +var svgPathData = 'M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faArrowDown = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowLeft.d.ts new file mode 100644 index 0000000000..e55fecb7e2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowLeft.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faArrowLeft: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowLeft.js new file mode 100644 index 0000000000..fff7e1db2b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowLeft.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'arrow-left'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f060'; +var svgPathData = 'M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faArrowLeft = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowRight.d.ts new file mode 100644 index 0000000000..a0535c100c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowRight.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faArrowRight: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowRight.js new file mode 100644 index 0000000000..b1c8854cca --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowRight.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'arrow-right'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f061'; +var svgPathData = 'M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faArrowRight = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowUp.d.ts new file mode 100644 index 0000000000..f8d86ec3ab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowUp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faArrowUp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowUp.js new file mode 100644 index 0000000000..b6dd88275f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowUp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'arrow-up'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f062'; +var svgPathData = 'M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faArrowUp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowsAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowsAlt.d.ts new file mode 100644 index 0000000000..46735d6f79 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowsAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faArrowsAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowsAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowsAlt.js new file mode 100644 index 0000000000..c658b1b1a9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowsAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'arrows-alt'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0b2'; +var svgPathData = 'M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faArrowsAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowsAltH.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowsAltH.d.ts new file mode 100644 index 0000000000..e425f591de --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowsAltH.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faArrowsAltH: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowsAltH.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowsAltH.js new file mode 100644 index 0000000000..f1d14fb6d7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowsAltH.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'arrows-alt-h'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f337'; +var svgPathData = 'M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faArrowsAltH = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowsAltV.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowsAltV.d.ts new file mode 100644 index 0000000000..2da2dfb272 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowsAltV.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faArrowsAltV: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowsAltV.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowsAltV.js new file mode 100644 index 0000000000..3610de35f2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faArrowsAltV.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'arrows-alt-v'; +var width = 256; +var height = 512; +var ligatures = []; +var unicode = 'f338'; +var svgPathData = 'M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faArrowsAltV = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAssistiveListeningSystems.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAssistiveListeningSystems.d.ts new file mode 100644 index 0000000000..c027dc01e5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAssistiveListeningSystems.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAssistiveListeningSystems: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAssistiveListeningSystems.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAssistiveListeningSystems.js new file mode 100644 index 0000000000..2235724b89 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAssistiveListeningSystems.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'assistive-listening-systems'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2a2'; +var svgPathData = 'M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAssistiveListeningSystems = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAsterisk.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAsterisk.d.ts new file mode 100644 index 0000000000..c8f23c1848 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAsterisk.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAsterisk: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAsterisk.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAsterisk.js new file mode 100644 index 0000000000..17f724db24 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAsterisk.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'asterisk'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f069'; +var svgPathData = 'M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAsterisk = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAt.d.ts new file mode 100644 index 0000000000..faae1efdec --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAt.js new file mode 100644 index 0000000000..3580ec4af3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'at'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1fa'; +var svgPathData = 'M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAtlas.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAtlas.d.ts new file mode 100644 index 0000000000..01d725bb8b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAtlas.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAtlas: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAtlas.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAtlas.js new file mode 100644 index 0000000000..0a80dce59c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAtlas.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'atlas'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f558'; +var svgPathData = 'M318.38 208h-39.09c-1.49 27.03-6.54 51.35-14.21 70.41 27.71-13.24 48.02-39.19 53.3-70.41zm0-32c-5.29-31.22-25.59-57.17-53.3-70.41 7.68 19.06 12.72 43.38 14.21 70.41h39.09zM224 97.31c-7.69 7.45-20.77 34.42-23.43 78.69h46.87c-2.67-44.26-15.75-71.24-23.44-78.69zm-41.08 8.28c-27.71 13.24-48.02 39.19-53.3 70.41h39.09c1.49-27.03 6.53-51.35 14.21-70.41zm0 172.82c-7.68-19.06-12.72-43.38-14.21-70.41h-39.09c5.28 31.22 25.59 57.17 53.3 70.41zM247.43 208h-46.87c2.66 44.26 15.74 71.24 23.43 78.69 7.7-7.45 20.78-34.43 23.44-78.69zM448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM224 64c70.69 0 128 57.31 128 128s-57.31 128-128 128S96 262.69 96 192 153.31 64 224 64zm160 384H96c-19.2 0-32-12.8-32-32s16-32 32-32h288v64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAtlas = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAudioDescription.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAudioDescription.d.ts new file mode 100644 index 0000000000..462e6a52fb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAudioDescription.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAudioDescription: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAudioDescription.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAudioDescription.js new file mode 100644 index 0000000000..c9940ddcf1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAudioDescription.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'audio-description'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f29e'; +var svgPathData = 'M162.925 238.709l8.822 30.655h-25.606l9.041-30.652c1.277-4.421 2.651-9.994 3.872-15.245 1.22 5.251 2.594 10.823 3.871 15.242zm166.474-32.099h-14.523v98.781h14.523c29.776 0 46.175-17.678 46.175-49.776 0-32.239-17.49-49.005-46.175-49.005zM512 112v288c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48zM245.459 336.139l-57.097-168A12.001 12.001 0 0 0 177 160h-35.894a12.001 12.001 0 0 0-11.362 8.139l-57.097 168C70.003 343.922 75.789 352 84.009 352h29.133a12 12 0 0 0 11.535-8.693l8.574-29.906h51.367l8.793 29.977A12 12 0 0 0 204.926 352h29.172c8.22 0 14.006-8.078 11.361-15.861zm184.701-80.525c0-58.977-37.919-95.614-98.96-95.614h-57.366c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12H331.2c61.041 0 98.96-36.933 98.96-96.386z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAudioDescription = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAward.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAward.d.ts new file mode 100644 index 0000000000..adddb5548d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAward.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faAward: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAward.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAward.js new file mode 100644 index 0000000000..3de6415e1d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faAward.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'award'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f559'; +var svgPathData = 'M97.12 362.63l-5.3-5.3a9.004 9.004 0 0 0-4.02-2.32L72 350.77c-9.51-2.55-17.87-7.45-25.43-13.32L1.2 448.7c-4.39 10.77 3.81 22.47 15.43 22.03l52.69-2.01L105.56 507c8 8.44 22.04 5.81 26.43-4.96l52.05-127.62c-10.84 6.04-22.87 9.58-35.31 9.58-19.5 0-37.82-7.59-51.61-21.37zM382.8 448.7l-45.37-111.24c-7.56 5.88-15.92 10.77-25.43 13.32l-15.8 4.23a9.004 9.004 0 0 0-4.02 2.32l-5.3 5.3C273.09 376.41 254.76 384 235.26 384c-12.44 0-24.47-3.55-35.31-9.58L252 502.04c4.39 10.77 18.44 13.4 26.43 4.96l36.25-38.28 52.69 2.01c11.62.44 19.82-11.27 15.43-22.03zM263 340l5.21-5.3c5-5.09 11.22-8.75 18.05-10.61l15.53-4.23c13.89-3.79 24.75-14.84 28.47-28.98l4.16-15.81a41.145 41.145 0 0 1 10.42-18.37l11.37-11.57c10.17-10.35 14.14-25.44 10.42-39.58l-4.16-15.81a41.657 41.657 0 0 1 0-21.21l4.16-15.81c3.72-14.14-.25-29.23-10.42-39.58l-11.37-11.57c-5-5.09-8.59-11.42-10.42-18.37l-4.16-15.8c-3.72-14.14-14.58-25.19-28.47-28.98l-15.53-4.24c-6.83-1.86-13.05-5.52-18.05-10.61L256.84 12c-10.17-10.35-25-14.4-38.89-10.61l-15.53 4.24a39.614 39.614 0 0 1-20.84 0L166.05 1.4c-13.89-3.79-28.72.25-38.89 10.61l-11.37 11.57c-5 5.09-11.22 8.74-18.05 10.61l-15.53 4.24c-13.89 3.79-24.75 14.84-28.47 28.98l-4.16 15.8a41.145 41.145 0 0 1-10.42 18.37l-11.37 11.57c-10.17 10.35-14.15 25.44-10.42 39.58l4.16 15.8a41.657 41.657 0 0 1 0 21.21l-4.16 15.8c-3.72 14.14.25 29.23 10.42 39.59l11.37 11.57c5 5.09 8.59 11.42 10.42 18.37l4.16 15.8c3.72 14.14 14.58 25.19 28.47 28.98l15.53 4.23c6.83 1.86 13.05 5.52 18.05 10.61L121 340c13.23 13.47 33.84 15.88 49.74 5.82a39.676 39.676 0 0 1 42.53 0c15.89 10.06 36.5 7.65 49.73-5.82zM97.66 175.96c0-53.03 42.24-96.02 94.34-96.02s94.34 42.99 94.34 96.02-42.24 96.02-94.34 96.02-94.34-42.99-94.34-96.02z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faAward = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBackspace.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBackspace.d.ts new file mode 100644 index 0000000000..7692408013 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBackspace.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBackspace: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBackspace.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBackspace.js new file mode 100644 index 0000000000..91425cb606 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBackspace.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'backspace'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f55a'; +var svgPathData = 'M576 64H205.26A63.97 63.97 0 0 0 160 82.75L9.37 233.37c-12.5 12.5-12.5 32.76 0 45.25L160 429.25c12 12 28.28 18.75 45.25 18.75H576c35.35 0 64-28.65 64-64V128c0-35.35-28.65-64-64-64zm-84.69 254.06c6.25 6.25 6.25 16.38 0 22.63l-22.62 22.62c-6.25 6.25-16.38 6.25-22.63 0L384 301.25l-62.06 62.06c-6.25 6.25-16.38 6.25-22.63 0l-22.62-22.62c-6.25-6.25-6.25-16.38 0-22.63L338.75 256l-62.06-62.06c-6.25-6.25-6.25-16.38 0-22.63l22.62-22.62c6.25-6.25 16.38-6.25 22.63 0L384 210.75l62.06-62.06c6.25-6.25 16.38-6.25 22.63 0l22.62 22.62c6.25 6.25 6.25 16.38 0 22.63L429.25 256l62.06 62.06z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBackspace = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBackward.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBackward.d.ts new file mode 100644 index 0000000000..ca15ff4b73 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBackward.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBackward: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBackward.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBackward.js new file mode 100644 index 0000000000..0711c7ef39 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBackward.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'backward'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f04a'; +var svgPathData = 'M11.5 280.6l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2zm256 0l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBackward = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBalanceScale.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBalanceScale.d.ts new file mode 100644 index 0000000000..887d0b35e7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBalanceScale.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBalanceScale: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBalanceScale.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBalanceScale.js new file mode 100644 index 0000000000..983d21c6b2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBalanceScale.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'balance-scale'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f24e'; +var svgPathData = 'M256 336h-.02c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0C-2.06 328.75.02 320.33.02 336H0c0 44.18 57.31 80 128 80s128-35.82 128-80zM128 176l72 144H56l72-144zm511.98 160c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 320l72-144 72 144H440zm88 128H352V153.25c23.51-10.29 41.16-31.48 46.39-57.25H528c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H383.64C369.04 12.68 346.09 0 320 0s-49.04 12.68-63.64 32H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h129.61c5.23 25.76 22.87 46.96 46.39 57.25V448H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBalanceScale = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBan.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBan.d.ts new file mode 100644 index 0000000000..075cab57e8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBan.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBan: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBan.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBan.js new file mode 100644 index 0000000000..3d672d47d5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBan.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'ban'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f05e'; +var svgPathData = 'M256 8C119.034 8 8 119.033 8 256s111.034 248 248 248 248-111.034 248-248S392.967 8 256 8zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676zM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBan = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBandAid.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBandAid.d.ts new file mode 100644 index 0000000000..326bfa2396 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBandAid.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBandAid: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBandAid.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBandAid.js new file mode 100644 index 0000000000..4c006b65b4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBandAid.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'band-aid'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f462'; +var svgPathData = 'M0 160v192c0 35.3 28.7 64 64 64h96V96H64c-35.3 0-64 28.7-64 64zm576-64h-96v320h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64zM192 416h256V96H192v320zm176-232c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBandAid = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBarcode.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBarcode.d.ts new file mode 100644 index 0000000000..904480b004 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBarcode.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBarcode: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBarcode.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBarcode.js new file mode 100644 index 0000000000..ec51c160b7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBarcode.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'barcode'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f02a'; +var svgPathData = 'M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBarcode = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBars.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBars.d.ts new file mode 100644 index 0000000000..2c12d5a43e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBars.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBars: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBars.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBars.js new file mode 100644 index 0000000000..337b4231b0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBars.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'bars'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0c9'; +var svgPathData = 'M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBars = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBaseballBall.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBaseballBall.d.ts new file mode 100644 index 0000000000..4b9842d7fd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBaseballBall.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBaseballBall: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBaseballBall.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBaseballBall.js new file mode 100644 index 0000000000..696cb7d32b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBaseballBall.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'baseball-ball'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f433'; +var svgPathData = 'M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBaseballBall = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBasketballBall.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBasketballBall.d.ts new file mode 100644 index 0000000000..5193ba22af --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBasketballBall.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBasketballBall: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBasketballBall.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBasketballBall.js new file mode 100644 index 0000000000..f2ab429a3c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBasketballBall.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'basketball-ball'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f434'; +var svgPathData = 'M212.3 10.3c-43.8 6.3-86.2 24.1-122.2 53.8l77.4 77.4c27.8-35.8 43.3-81.2 44.8-131.2zM248 222L405.9 64.1c-42.4-35-93.6-53.5-145.5-56.1-1.2 63.9-21.5 122.3-58.7 167.7L248 222zM56.1 98.1c-29.7 36-47.5 78.4-53.8 122.2 50-1.5 95.5-17 131.2-44.8L56.1 98.1zm272.2 204.2c45.3-37.1 103.7-57.4 167.7-58.7-2.6-51.9-21.1-103.1-56.1-145.5L282 256l46.3 46.3zM248 290L90.1 447.9c42.4 34.9 93.6 53.5 145.5 56.1 1.3-64 21.6-122.4 58.7-167.7L248 290zm191.9 123.9c29.7-36 47.5-78.4 53.8-122.2-50.1 1.6-95.5 17.1-131.2 44.8l77.4 77.4zM167.7 209.7C122.3 246.9 63.9 267.3 0 268.4c2.6 51.9 21.1 103.1 56.1 145.5L214 256l-46.3-46.3zm116 292c43.8-6.3 86.2-24.1 122.2-53.8l-77.4-77.4c-27.7 35.7-43.2 81.2-44.8 131.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBasketballBall = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBath.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBath.d.ts new file mode 100644 index 0000000000..a613812b20 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBath.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBath: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBath.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBath.js new file mode 100644 index 0000000000..8755463626 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBath.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'bath'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2cd'; +var svgPathData = 'M488 256H80V112c0-17.645 14.355-32 32-32 11.351 0 21.332 5.945 27.015 14.88-16.492 25.207-14.687 59.576 6.838 83.035-4.176 4.713-4.021 11.916.491 16.428l11.314 11.314c4.686 4.686 12.284 4.686 16.971 0l95.03-95.029c4.686-4.686 4.686-12.284 0-16.971l-11.314-11.314c-4.512-4.512-11.715-4.666-16.428-.491-17.949-16.469-42.294-21.429-64.178-15.365C163.281 45.667 139.212 32 112 32c-44.112 0-80 35.888-80 80v144h-8c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h8v32c0 28.43 12.362 53.969 32 71.547V456c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-8h256v8c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-32.453c19.638-17.578 32-43.117 32-71.547v-32h8c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBath = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryEmpty.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryEmpty.d.ts new file mode 100644 index 0000000000..55598811b0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryEmpty.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBatteryEmpty: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryEmpty.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryEmpty.js new file mode 100644 index 0000000000..92071e18bc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryEmpty.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'battery-empty'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f244'; +var svgPathData = 'M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBatteryEmpty = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryFull.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryFull.d.ts new file mode 100644 index 0000000000..b8e2c5e8b1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryFull.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBatteryFull: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryFull.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryFull.js new file mode 100644 index 0000000000..358e71899c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryFull.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'battery-full'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f240'; +var svgPathData = 'M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-48 96H96v128h416V192z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBatteryFull = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryHalf.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryHalf.d.ts new file mode 100644 index 0000000000..f1e3d47433 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryHalf.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBatteryHalf: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryHalf.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryHalf.js new file mode 100644 index 0000000000..9c49ad0d99 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryHalf.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'battery-half'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f242'; +var svgPathData = 'M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-240 96H96v128h224V192z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBatteryHalf = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryQuarter.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryQuarter.d.ts new file mode 100644 index 0000000000..6baa135a25 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryQuarter.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBatteryQuarter: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryQuarter.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryQuarter.js new file mode 100644 index 0000000000..9abf785931 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryQuarter.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'battery-quarter'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f243'; +var svgPathData = 'M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-336 96H96v128h128V192z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBatteryQuarter = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryThreeQuarters.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryThreeQuarters.d.ts new file mode 100644 index 0000000000..077da682d3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryThreeQuarters.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBatteryThreeQuarters: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryThreeQuarters.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryThreeQuarters.js new file mode 100644 index 0000000000..de3bba726a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBatteryThreeQuarters.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'battery-three-quarters'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f241'; +var svgPathData = 'M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-144 96H96v128h320V192z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBatteryThreeQuarters = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBed.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBed.d.ts new file mode 100644 index 0000000000..8e858ba949 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBed.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBed: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBed.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBed.js new file mode 100644 index 0000000000..d9e78275e5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBed.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'bed'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f236'; +var svgPathData = 'M176 256c44.11 0 80-35.89 80-80s-35.89-80-80-80-80 35.89-80 80 35.89 80 80 80zm352-128H304c-8.84 0-16 7.16-16 16v144H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v352c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h512v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V240c0-61.86-50.14-112-112-112z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBed = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBeer.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBeer.d.ts new file mode 100644 index 0000000000..e06dafb0b8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBeer.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBeer: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBeer.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBeer.js new file mode 100644 index 0000000000..eab8889d22 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBeer.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'beer'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0fc'; +var svgPathData = 'M368 96h-48V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24v-42.11l80.606-35.977C429.396 365.063 448 336.388 448 304.86V176c0-44.112-35.888-80-80-80zm16 208.86a16.018 16.018 0 0 1-9.479 14.611L320 343.805V160h48c8.822 0 16 7.178 16 16v128.86zM208 384c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16zm-96 0c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBeer = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBell.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBell.d.ts new file mode 100644 index 0000000000..dc4ecc1a3c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBell.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBell: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBell.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBell.js new file mode 100644 index 0000000000..b782c67701 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBell.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'bell'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0f3'; +var svgPathData = 'M433.884 366.059C411.634 343.809 384 316.118 384 208c0-79.394-57.831-145.269-133.663-157.83A31.845 31.845 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 6.75 2.095 13.008 5.663 18.17C121.831 62.731 64 128.606 64 208c0 108.118-27.643 135.809-49.893 158.059C-16.042 396.208 5.325 448 48.048 448H160c0 35.346 28.654 64 64 64s64-28.654 64-64h111.943c42.638 0 64.151-51.731 33.941-81.941zM224 472a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16c0 13.234 10.766 24 24 24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBell = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBellSlash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBellSlash.d.ts new file mode 100644 index 0000000000..b90379c9ce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBellSlash.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBellSlash: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBellSlash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBellSlash.js new file mode 100644 index 0000000000..3629b265cc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBellSlash.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'bell-slash'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f1f6'; +var svgPathData = 'M78.107 366.059C47.958 396.208 69.325 448 112.048 448H224c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h32.685L127.848 221.379c-2.198 97.078-28.439 123.378-49.741 144.68zM264 448c0 13.234 10.766 24 24 24a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16zm305.896 43.733l-10.762 12.086c-8.915 10.012-24.333 10.967-34.437 2.133L8.256 54.393C-1.848 45.558-2.811 30.28 6.104 20.267L16.865 8.181C25.781-1.831 41.199-2.786 51.303 6.049l113.81 99.512c24.017-28.778 57.946-48.996 96.55-55.39A31.85 31.85 0 0 1 256 32c0-17.673 14.327-32 32-32s32 14.327 32 32c0 6.75-2.095 13.008-5.663 18.17C390.169 62.731 448 128.606 448 208c0 108.118 27.634 135.809 49.884 158.059 12.149 12.149 15.923 27.776 13.33 42.121l56.53 49.427c10.104 8.835 11.067 24.113 2.152 34.126z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBellSlash = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBezierCurve.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBezierCurve.d.ts new file mode 100644 index 0000000000..c104b96811 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBezierCurve.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBezierCurve: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBezierCurve.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBezierCurve.js new file mode 100644 index 0000000000..d7ad1521c9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBezierCurve.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'bezier-curve'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f55b'; +var svgPathData = 'M368 32h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM208 88h-84.75C113.75 64.56 90.84 48 64 48 28.66 48 0 76.65 0 112s28.66 64 64 64c26.84 0 49.75-16.56 59.25-40h79.73c-55.37 32.52-95.86 87.32-109.54 152h49.4c11.3-41.61 36.77-77.21 71.04-101.56-3.7-8.08-5.88-16.99-5.88-26.44V88zm-48 232H64c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zM576 48c-26.84 0-49.75 16.56-59.25 40H432v72c0 9.45-2.19 18.36-5.88 26.44 34.27 24.35 59.74 59.95 71.04 101.56h49.4c-13.68-64.68-54.17-119.48-109.54-152h79.73c9.5 23.44 32.41 40 59.25 40 35.34 0 64-28.65 64-64s-28.66-64-64-64zm0 272h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBezierCurve = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBicycle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBicycle.d.ts new file mode 100644 index 0000000000..c00962d9f4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBicycle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBicycle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBicycle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBicycle.js new file mode 100644 index 0000000000..7fbececdae --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBicycle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'bicycle'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f206'; +var svgPathData = 'M512.509 192.001c-16.373-.064-32.03 2.955-46.436 8.495l-77.68-125.153A24 24 0 0 0 368.001 64h-64c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h50.649l14.896 24H256.002v-16c0-8.837-7.163-16-16-16h-87.459c-13.441 0-24.777 10.999-24.536 24.437.232 13.044 10.876 23.563 23.995 23.563h48.726l-29.417 47.52c-13.433-4.83-27.904-7.483-42.992-7.52C58.094 191.83.412 249.012.002 319.236-.413 390.279 57.055 448 128.002 448c59.642 0 109.758-40.793 123.967-96h52.033a24 24 0 0 0 20.406-11.367L410.37 201.77l14.938 24.067c-25.455 23.448-41.385 57.081-41.307 94.437.145 68.833 57.899 127.051 126.729 127.719 70.606.685 128.181-55.803 129.255-125.996 1.086-70.941-56.526-129.72-127.476-129.996zM186.75 265.772c9.727 10.529 16.673 23.661 19.642 38.228h-43.306l23.664-38.228zM128.002 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c5.869 0 11.586.653 17.099 1.859l-45.505 73.509C89.715 331.327 101.213 352 120.002 352h81.3c-12.37 28.225-40.562 48-73.3 48zm162.63-96h-35.624c-3.96-31.756-19.556-59.894-42.383-80.026L237.371 184h127.547l-74.286 120zm217.057 95.886c-41.036-2.165-74.049-35.692-75.627-76.755-.812-21.121 6.633-40.518 19.335-55.263l44.433 71.586c4.66 7.508 14.524 9.816 22.032 5.156l13.594-8.437c7.508-4.66 9.817-14.524 5.156-22.032l-44.468-71.643a79.901 79.901 0 0 1 19.858-2.497c44.112 0 80 35.888 80 80-.001 45.54-38.252 82.316-84.313 79.885z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBicycle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBinoculars.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBinoculars.d.ts new file mode 100644 index 0000000000..b7da4c6826 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBinoculars.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBinoculars: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBinoculars.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBinoculars.js new file mode 100644 index 0000000000..5cc50937aa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBinoculars.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'binoculars'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1e5'; +var svgPathData = 'M192 104H96V56c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24v48zm224-48c0-13.255-10.745-24-24-24h-48c-13.255 0-24 10.745-24 24v48h96V56zM0 456c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H0v16zm88-328c-13.255 0-24 10.745-24 24C64 256 0 272 0 416h168V312c0-13.255 10.745-24 24-24V128H88zm256 328c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H344v16zM216 128v160h80V128h-80zm128 288h168c0-144-64-160-64-264 0-13.255-10.745-24-24-24H320v160c13.255 0 24 10.745 24 24v104z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBinoculars = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBirthdayCake.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBirthdayCake.d.ts new file mode 100644 index 0000000000..bdfdb30278 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBirthdayCake.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBirthdayCake: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBirthdayCake.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBirthdayCake.js new file mode 100644 index 0000000000..f2a19d2a53 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBirthdayCake.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'birthday-cake'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f1fd'; +var svgPathData = 'M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBirthdayCake = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBlender.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBlender.d.ts new file mode 100644 index 0000000000..020e4f76ed --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBlender.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBlender: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBlender.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBlender.js new file mode 100644 index 0000000000..a625bbfcd0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBlender.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'blender'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f517'; +var svgPathData = 'M416 384H160c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-128 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm40-416h166.54L512 0H48C21.49 0 0 21.49 0 48v160c0 26.51 21.49 48 48 48h103.27l8.73 96h256l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H328c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM64 192V64h69.82l11.64 128H64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBlender = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBlind.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBlind.d.ts new file mode 100644 index 0000000000..f7cc094e58 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBlind.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBlind: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBlind.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBlind.js new file mode 100644 index 0000000000..0877df5e37 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBlind.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'blind'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f29d'; +var svgPathData = 'M380.15 510.837a8 8 0 0 1-10.989-2.687l-125.33-206.427a31.923 31.923 0 0 0 12.958-9.485l126.048 207.608a8 8 0 0 1-2.687 10.991zM142.803 314.338l-32.54 89.485 36.12 88.285c6.693 16.36 25.377 24.192 41.733 17.501 16.357-6.692 24.193-25.376 17.501-41.734l-62.814-153.537zM96 88c24.301 0 44-19.699 44-44S120.301 0 96 0 52 19.699 52 44s19.699 44 44 44zm154.837 169.128l-120-152c-4.733-5.995-11.75-9.108-18.837-9.112V96H80v.026c-7.146.003-14.217 3.161-18.944 9.24L0 183.766v95.694c0 13.455 11.011 24.791 24.464 24.536C37.505 303.748 48 293.1 48 280v-79.766l16-20.571v140.698L9.927 469.055c-6.04 16.609 2.528 34.969 19.138 41.009 16.602 6.039 34.968-2.524 41.009-19.138L136 309.638V202.441l-31.406-39.816a4 4 0 1 1 6.269-4.971l102.3 129.217c9.145 11.584 24.368 11.339 33.708 3.965 10.41-8.216 12.159-23.334 3.966-33.708z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBlind = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBold.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBold.d.ts new file mode 100644 index 0000000000..8325a4a523 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBold.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBold: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBold.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBold.js new file mode 100644 index 0000000000..0e72b0953c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBold.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'bold'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f032'; +var svgPathData = 'M304.793 243.891c33.639-18.537 53.657-54.16 53.657-95.693 0-48.236-26.25-87.626-68.626-104.179C265.138 34.01 240.849 32 209.661 32H24c-8.837 0-16 7.163-16 16v33.049c0 8.837 7.163 16 16 16h33.113v318.53H24c-8.837 0-16 7.163-16 16V464c0 8.837 7.163 16 16 16h195.69c24.203 0 44.834-1.289 66.866-7.584C337.52 457.193 376 410.647 376 350.014c0-52.168-26.573-91.684-71.207-106.123zM142.217 100.809h67.444c16.294 0 27.536 2.019 37.525 6.717 15.828 8.479 24.906 26.502 24.906 49.446 0 35.029-20.32 56.79-53.029 56.79h-76.846V100.809zm112.642 305.475c-10.14 4.056-22.677 4.907-31.409 4.907h-81.233V281.943h84.367c39.645 0 63.057 25.38 63.057 63.057.001 28.425-13.66 52.483-34.782 61.284z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBold = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBolt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBolt.d.ts new file mode 100644 index 0000000000..a6e03fc46d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBolt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBolt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBolt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBolt.js new file mode 100644 index 0000000000..8c436ad57f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBolt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'bolt'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f0e7'; +var svgPathData = 'M295.973 160H180.572L215.19 30.184C219.25 14.956 207.756 0 192 0H56C43.971 0 33.8 8.905 32.211 20.828l-31.996 240C-1.704 275.217 9.504 288 24.004 288h118.701L96.646 482.466C93.05 497.649 104.659 512 119.992 512c8.35 0 16.376-4.374 20.778-11.978l175.973-303.997c9.244-15.967-2.288-36.025-20.77-36.025z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBolt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBomb.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBomb.d.ts new file mode 100644 index 0000000000..9760c68043 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBomb.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBomb: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBomb.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBomb.js new file mode 100644 index 0000000000..056e8ed7fc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBomb.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'bomb'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1e2'; +var svgPathData = 'M440.5 88.5l-52 52L415 167c9.4 9.4 9.4 24.6 0 33.9l-17.4 17.4c11.8 26.1 18.4 55.1 18.4 85.6 0 114.9-93.1 208-208 208S0 418.9 0 304 93.1 96 208 96c30.5 0 59.5 6.6 85.6 18.4L311 97c9.4-9.4 24.6-9.4 33.9 0l26.5 26.5 52-52 17.1 17zM500 60h-24c-6.6 0-12 5.4-12 12s5.4 12 12 12h24c6.6 0 12-5.4 12-12s-5.4-12-12-12zM440 0c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12s12-5.4 12-12V12c0-6.6-5.4-12-12-12zm33.9 55l17-17c4.7-4.7 4.7-12.3 0-17-4.7-4.7-12.3-4.7-17 0l-17 17c-4.7 4.7-4.7 12.3 0 17 4.8 4.7 12.4 4.7 17 0zm-67.8 0c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17zm67.8 34c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17zM112 272c0-35.3 28.7-64 64-64 8.8 0 16-7.2 16-16s-7.2-16-16-16c-52.9 0-96 43.1-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBomb = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBong.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBong.d.ts new file mode 100644 index 0000000000..8aa55c654e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBong.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBong: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBong.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBong.js new file mode 100644 index 0000000000..c2b85b8735 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBong.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'bong'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f55c'; +var svgPathData = 'M302.5 512c23.18 0 44.43-12.58 56-32.66C374.69 451.26 384 418.75 384 384c0-36.12-10.08-69.81-27.44-98.62L400 241.94l9.38 9.38c6.25 6.25 16.38 6.25 22.63 0l11.3-11.32c6.25-6.25 6.25-16.38 0-22.63l-52.69-52.69c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63l9.38 9.38-39.41 39.41c-11.56-11.37-24.53-21.33-38.65-29.51V63.74l15.97-.02c8.82-.01 15.97-7.16 15.98-15.98l.04-31.72C320 7.17 312.82-.01 303.97 0L80.03.26c-8.82.01-15.97 7.16-15.98 15.98l-.04 31.73c-.01 8.85 7.17 16.02 16.02 16.01L96 63.96v153.93C38.67 251.1 0 312.97 0 384c0 34.75 9.31 67.27 25.5 95.34C37.08 499.42 58.33 512 81.5 512h221zM120.06 259.43L144 245.56V63.91l96-.11v181.76l23.94 13.87c24.81 14.37 44.12 35.73 56.56 60.57h-257c12.45-24.84 31.75-46.2 56.56-60.57z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBong = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBook.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBook.d.ts new file mode 100644 index 0000000000..fba56a75c9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBook.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBook: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBook.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBook.js new file mode 100644 index 0000000000..41d684adc0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBook.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'book'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f02d'; +var svgPathData = 'M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBook = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBookOpen.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBookOpen.d.ts new file mode 100644 index 0000000000..38adade797 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBookOpen.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBookOpen: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBookOpen.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBookOpen.js new file mode 100644 index 0000000000..eea98aed91 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBookOpen.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'book-open'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f518'; +var svgPathData = 'M542.22 32.05c-54.8 3.11-163.72 14.43-230.96 55.59-4.64 2.84-7.27 7.89-7.27 13.17v363.87c0 11.55 12.63 18.85 23.28 13.49 69.18-34.82 169.23-44.32 218.7-46.92 16.89-.89 30.02-14.43 30.02-30.66V62.75c.01-17.71-15.35-31.74-33.77-30.7zM264.73 87.64C197.5 46.48 88.58 35.17 33.78 32.05 15.36 31.01 0 45.04 0 62.75V400.6c0 16.24 13.13 29.78 30.02 30.66 49.49 2.6 149.59 12.11 218.77 46.95 10.62 5.35 23.21-1.94 23.21-13.46V100.63c0-5.29-2.62-10.14-7.27-12.99z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBookOpen = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBookmark.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBookmark.d.ts new file mode 100644 index 0000000000..511bcb9371 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBookmark.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBookmark: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBookmark.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBookmark.js new file mode 100644 index 0000000000..c14933ea96 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBookmark.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'bookmark'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f02e'; +var svgPathData = 'M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBookmark = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBowlingBall.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBowlingBall.d.ts new file mode 100644 index 0000000000..b29aef7cd0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBowlingBall.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBowlingBall: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBowlingBall.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBowlingBall.js new file mode 100644 index 0000000000..f1f1faf2c6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBowlingBall.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'bowling-ball'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f436'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM120 192c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64-96c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm48 144c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBowlingBall = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBox.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBox.d.ts new file mode 100644 index 0000000000..ede42e8372 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBox.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBox: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBox.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBox.js new file mode 100644 index 0000000000..2e8c8c9710 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBox.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'box'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f466'; +var svgPathData = 'M509.5 184.6L458.9 32.8C452.4 13.2 434.1 0 413.4 0H272v192h238.7c-.4-2.5-.4-5-1.2-7.4zM240 0H98.6c-20.7 0-39 13.2-45.5 32.8L2.5 184.6c-.8 2.4-.8 4.9-1.2 7.4H240V0zM0 224v240c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V224H0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBox = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBoxOpen.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBoxOpen.d.ts new file mode 100644 index 0000000000..bf18ba462e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBoxOpen.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBoxOpen: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBoxOpen.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBoxOpen.js new file mode 100644 index 0000000000..09d2b09b9e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBoxOpen.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'box-open'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f49e'; +var svgPathData = 'M53.2 41L1.7 143.8c-4.6 9.2.3 20.2 10.1 23l197.9 56.5c7.1 2 14.7-1 18.5-7.3L320 64 69.8 32.1c-6.9-.8-13.5 2.7-16.6 8.9zm585.1 102.8L586.8 41c-3.1-6.2-9.8-9.8-16.7-8.9L320 64l91.7 152.1c3.8 6.3 11.4 9.3 18.5 7.3l197.9-56.5c9.9-2.9 14.7-13.9 10.2-23.1zM425.7 256c-16.9 0-32.8-9-41.4-23.4L320 126l-64.2 106.6c-8.7 14.5-24.6 23.5-41.5 23.5-4.5 0-9-.6-13.3-1.9L64 215v178c0 14.7 10 27.5 24.2 31l216.2 54.1c10.2 2.5 20.9 2.5 31 0L551.8 424c14.2-3.6 24.2-16.4 24.2-31V215l-137 39.1c-4.3 1.3-8.8 1.9-13.3 1.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBoxOpen = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBoxes.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBoxes.d.ts new file mode 100644 index 0000000000..8eef786ddd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBoxes.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBoxes: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBoxes.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBoxes.js new file mode 100644 index 0000000000..20b3ba4ea0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBoxes.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'boxes'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f468'; +var svgPathData = 'M560 288h-80v96l-32-21.3-32 21.3v-96h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16zm-384-64h224c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16h-80v96l-32-21.3L256 96V0h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16zm64 64h-80v96l-32-21.3L96 384v-96H16c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBoxes = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBraille.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBraille.d.ts new file mode 100644 index 0000000000..6ad3e3fc94 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBraille.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBraille: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBraille.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBraille.js new file mode 100644 index 0000000000..67a0d49f1f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBraille.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'braille'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f2a1'; +var svgPathData = 'M128 256c0 35.346-28.654 64-64 64S0 291.346 0 256s28.654-64 64-64 64 28.654 64 64zM64 384c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352C28.654 32 0 60.654 0 96s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm224 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-320c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBraille = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBriefcase.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBriefcase.d.ts new file mode 100644 index 0000000000..38fcf7c909 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBriefcase.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBriefcase: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBriefcase.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBriefcase.js new file mode 100644 index 0000000000..60b1fd70da --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBriefcase.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'briefcase'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0b1'; +var svgPathData = 'M320 288h192v144c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V288h192v20c0 6.627 5.373 12 12 12h104c6.627 0 12-5.373 12-12v-20zm192-112v80H0v-80c0-26.51 21.49-48 48-48h80V80c0-26.51 21.49-48 48-48h160c26.51 0 48 21.49 48 48v48h80c26.51 0 48 21.49 48 48zM320 96H192v32h128V96z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBriefcase = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBriefcaseMedical.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBriefcaseMedical.d.ts new file mode 100644 index 0000000000..4badb77eb4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBriefcaseMedical.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBriefcaseMedical: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBriefcaseMedical.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBriefcaseMedical.js new file mode 100644 index 0000000000..09a3293b5c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBriefcaseMedical.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'briefcase-medical'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f469'; +var svgPathData = 'M464 128h-80V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48zM192 96h128v32H192V96zm160 248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBriefcaseMedical = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBroadcastTower.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBroadcastTower.d.ts new file mode 100644 index 0000000000..60800a0e18 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBroadcastTower.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBroadcastTower: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBroadcastTower.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBroadcastTower.js new file mode 100644 index 0000000000..f9bf5116c7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBroadcastTower.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'broadcast-tower'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f519'; +var svgPathData = 'M150.94 192h33.73c11.01 0 18.61-10.83 14.86-21.18-4.93-13.58-7.55-27.98-7.55-42.82s2.62-29.24 7.55-42.82C203.29 74.83 195.68 64 184.67 64h-33.73c-7.01 0-13.46 4.49-15.41 11.23C130.64 92.21 128 109.88 128 128c0 18.12 2.64 35.79 7.54 52.76 1.94 6.74 8.39 11.24 15.4 11.24zM89.92 23.34C95.56 12.72 87.97 0 75.96 0H40.63c-6.27 0-12.14 3.59-14.74 9.31C9.4 45.54 0 85.65 0 128c0 24.75 3.12 68.33 26.69 118.86 2.62 5.63 8.42 9.14 14.61 9.14h34.84c12.02 0 19.61-12.74 13.95-23.37-49.78-93.32-16.71-178.15-.17-209.29zM614.06 9.29C611.46 3.58 605.6 0 599.33 0h-35.42c-11.98 0-19.66 12.66-14.02 23.25 18.27 34.29 48.42 119.42.28 209.23-5.72 10.68 1.8 23.52 13.91 23.52h35.23c6.27 0 12.13-3.58 14.73-9.29C630.57 210.48 640 170.36 640 128s-9.42-82.48-25.94-118.71zM489.06 64h-33.73c-11.01 0-18.61 10.83-14.86 21.18 4.93 13.58 7.55 27.98 7.55 42.82s-2.62 29.24-7.55 42.82c-3.76 10.35 3.85 21.18 14.86 21.18h33.73c7.02 0 13.46-4.49 15.41-11.24 4.9-16.97 7.53-34.64 7.53-52.76 0-18.12-2.64-35.79-7.54-52.76-1.94-6.75-8.39-11.24-15.4-11.24zm-116.3 100.12c7.05-10.29 11.2-22.71 11.2-36.12 0-35.35-28.63-64-63.96-64-35.32 0-63.96 28.65-63.96 64 0 13.41 4.15 25.83 11.2 36.12l-130.5 313.41c-3.4 8.15.46 17.52 8.61 20.92l29.51 12.31c8.15 3.4 17.52-.46 20.91-8.61L244.96 384h150.07l49.2 118.15c3.4 8.16 12.76 12.01 20.91 8.61l29.51-12.31c8.15-3.4 12-12.77 8.61-20.92l-130.5-313.41zM271.62 320L320 203.81 368.38 320h-96.76z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBroadcastTower = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBroom.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBroom.d.ts new file mode 100644 index 0000000000..5a92cde2c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBroom.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBroom: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBroom.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBroom.js new file mode 100644 index 0000000000..d15900306c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBroom.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'broom'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f51a'; +var svgPathData = 'M10.8 247.2C-.7 251.8-3.7 266.7 5 275.4l54.8 54.8 73.2-24.4-24.4 73.2 128 128c8.8 8.8 23.6 5.7 28.2-5.8l98.1-243.7-108.4-108.4-243.7 98.1zM507.3 27.3L484.7 4.7c-6.2-6.3-16.4-6.3-22.6 0L359.8 106.9l-40.4-40.4c-4.2-4.3-11.4-3-13.9 2.5l-27.2 58.6 106.1 106.1 58.6-27.2c5.4-2.5 6.7-9.7 2.5-13.9l-40.4-40.4L507.3 49.9c6.3-6.2 6.3-16.3 0-22.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBroom = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBrush.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBrush.d.ts new file mode 100644 index 0000000000..0addbe2609 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBrush.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBrush: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBrush.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBrush.js new file mode 100644 index 0000000000..89621b2544 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBrush.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'brush'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f55d'; +var svgPathData = 'M352 0H32C14.33 0 0 14.33 0 32v224h384V32c0-17.67-14.33-32-32-32zM0 320c0 35.35 28.66 64 64 64h64v64c0 35.35 28.66 64 64 64s64-28.65 64-64v-64h64c35.34 0 64-28.65 64-64v-32H0v32zm192 104c13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24s-24-10.75-24-24c0-13.26 10.75-24 24-24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBrush = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBug.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBug.d.ts new file mode 100644 index 0000000000..536ce49d5f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBug.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBug: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBug.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBug.js new file mode 100644 index 0000000000..dc6e4771e9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBug.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'bug'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f188'; +var svgPathData = 'M511.988 288.9c-.478 17.43-15.217 31.1-32.653 31.1H424v16c0 21.864-4.882 42.584-13.6 61.145l60.228 60.228c12.496 12.497 12.496 32.758 0 45.255-12.498 12.497-32.759 12.496-45.256 0l-54.736-54.736C345.886 467.965 314.351 480 280 480V236c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v244c-34.351 0-65.886-12.035-90.636-32.108l-54.736 54.736c-12.498 12.497-32.759 12.496-45.256 0-12.496-12.497-12.496-32.758 0-45.255l60.228-60.228C92.882 378.584 88 357.864 88 336v-16H32.666C15.23 320 .491 306.33.013 288.9-.484 270.816 14.028 256 32 256h56v-58.745l-46.628-46.628c-12.496-12.497-12.496-32.758 0-45.255 12.498-12.497 32.758-12.497 45.256 0L141.255 160h229.489l54.627-54.627c12.498-12.497 32.758-12.497 45.256 0 12.496 12.497 12.496 32.758 0 45.255L424 197.255V256h56c17.972 0 32.484 14.816 31.988 32.9zM257 0c-61.856 0-112 50.144-112 112h224C369 50.144 318.856 0 257 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBug = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBuilding.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBuilding.d.ts new file mode 100644 index 0000000000..993ad3ed99 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBuilding.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBuilding: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBuilding.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBuilding.js new file mode 100644 index 0000000000..3c1a54c5c9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBuilding.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'building'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f1ad'; +var svgPathData = 'M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBuilding = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBullhorn.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBullhorn.d.ts new file mode 100644 index 0000000000..8b51fed9d4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBullhorn.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBullhorn: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBullhorn.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBullhorn.js new file mode 100644 index 0000000000..3c55f80ea7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBullhorn.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'bullhorn'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f0a1'; +var svgPathData = 'M576 224c0-20.896-13.36-38.666-32-45.258V64c0-35.346-28.654-64-64-64-64.985 56-142.031 128-272 128H48c-26.51 0-48 21.49-48 48v96c0 26.51 21.49 48 48 48h43.263c-18.742 64.65 2.479 116.379 18.814 167.44 1.702 5.32 5.203 9.893 9.922 12.88 20.78 13.155 68.355 15.657 93.773 5.151 16.046-6.633 19.96-27.423 7.522-39.537-18.508-18.026-30.136-36.91-19.795-60.858a12.278 12.278 0 0 0-1.045-11.673c-16.309-24.679-3.581-62.107 28.517-72.752C346.403 327.887 418.591 395.081 480 448c35.346 0 64-28.654 64-64V269.258c18.64-6.592 32-24.362 32-45.258zm-96 139.855c-54.609-44.979-125.033-92.94-224-104.982v-69.747c98.967-12.042 169.391-60.002 224-104.982v279.711z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBullhorn = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBullseye.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBullseye.d.ts new file mode 100644 index 0000000000..55136b03e5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBullseye.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBullseye: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBullseye.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBullseye.js new file mode 100644 index 0000000000..e2a0ddc4d8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBullseye.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'bullseye'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f140'; +var svgPathData = 'M256 72c101.689 0 184 82.295 184 184 0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-101.689 82.295-184 184-184m0-64C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 184c35.29 0 64 28.71 64 64s-28.71 64-64 64-64-28.71-64-64 28.71-64 64-64m0-64c-70.692 0-128 57.308-128 128s57.308 128 128 128 128-57.308 128-128-57.308-128-128-128z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBullseye = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBurn.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBurn.d.ts new file mode 100644 index 0000000000..874a43c944 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBurn.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBurn: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBurn.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBurn.js new file mode 100644 index 0000000000..6076bf4cbf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBurn.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'burn'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f46a'; +var svgPathData = 'M192 0C79.7 101.3 0 220.9 0 300.5 0 425 79 512 192 512s192-87 192-211.5c0-79.9-80.2-199.6-192-300.5zm0 448c-56.5 0-96-39-96-94.8 0-13.5 4.6-61.5 96-161.2 91.4 99.7 96 147.7 96 161.2 0 55.8-39.5 94.8-96 94.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBurn = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBus.d.ts new file mode 100644 index 0000000000..39237051de --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBus.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBus: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBus.js new file mode 100644 index 0000000000..609e15098d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBus.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'bus'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f207'; +var svgPathData = 'M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM112 400c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm16-112c-17.67 0-32-14.33-32-32V128c0-17.67 14.33-32 32-32h256c17.67 0 32 14.33 32 32v128c0 17.67-14.33 32-32 32H128zm272 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBus = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBusAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBusAlt.d.ts new file mode 100644 index 0000000000..971bdb4038 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBusAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faBusAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBusAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBusAlt.js new file mode 100644 index 0000000000..0209170f07 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faBusAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'bus-alt'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f55e'; +var svgPathData = 'M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM160 72c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H168c-4.42 0-8-3.58-8-8V72zm-48 328c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm128-112H128c-17.67 0-32-14.33-32-32v-96c0-17.67 14.33-32 32-32h112v160zm32 0V128h112c17.67 0 32 14.33 32 32v96c0 17.67-14.33 32-32 32H272zm128 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faBusAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalculator.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalculator.d.ts new file mode 100644 index 0000000000..6b7954fef1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalculator.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCalculator: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalculator.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalculator.js new file mode 100644 index 0000000000..b57f0f350b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalculator.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'calculator'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f1ec'; +var svgPathData = 'M0 464V48C0 21.49 21.49 0 48 0h352c26.51 0 48 21.49 48 48v416c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm384-284V76c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v104c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12zM128 308v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm256 128V268c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-256 0v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm128-128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm0 128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCalculator = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendar.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendar.d.ts new file mode 100644 index 0000000000..13bc62dc39 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendar.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCalendar: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendar.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendar.js new file mode 100644 index 0000000000..935a71ff33 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendar.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'calendar'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f133'; +var svgPathData = 'M12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm436-44v-36c0-26.5-21.5-48-48-48h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v36c0 6.6 5.4 12 12 12h424c6.6 0 12-5.4 12-12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCalendar = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarAlt.d.ts new file mode 100644 index 0000000000..54f8efad7f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCalendarAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarAlt.js new file mode 100644 index 0000000000..b978e750a0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'calendar-alt'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f073'; +var svgPathData = 'M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm116 204c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCalendarAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarCheck.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarCheck.d.ts new file mode 100644 index 0000000000..65ff0d90c2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarCheck.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCalendarCheck: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarCheck.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarCheck.js new file mode 100644 index 0000000000..9e8cdbd312 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarCheck.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'calendar-check'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f274'; +var svgPathData = 'M436 160H12c-6.627 0-12-5.373-12-12v-36c0-26.51 21.49-48 48-48h48V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h128V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h48c26.51 0 48 21.49 48 48v36c0 6.627-5.373 12-12 12zM12 192h424c6.627 0 12 5.373 12 12v260c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V204c0-6.627 5.373-12 12-12zm333.296 95.947l-28.169-28.398c-4.667-4.705-12.265-4.736-16.97-.068L194.12 364.665l-45.98-46.352c-4.667-4.705-12.266-4.736-16.971-.068l-28.397 28.17c-4.705 4.667-4.736 12.265-.068 16.97l82.601 83.269c4.667 4.705 12.265 4.736 16.97.068l142.953-141.805c4.705-4.667 4.736-12.265.068-16.97z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCalendarCheck = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarMinus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarMinus.d.ts new file mode 100644 index 0000000000..2794e067cf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarMinus.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCalendarMinus: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarMinus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarMinus.js new file mode 100644 index 0000000000..1b092d6159 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarMinus.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'calendar-minus'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f272'; +var svgPathData = 'M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm304 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H132c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h184z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCalendarMinus = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarPlus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarPlus.d.ts new file mode 100644 index 0000000000..0afa476ae5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarPlus.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCalendarPlus: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarPlus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarPlus.js new file mode 100644 index 0000000000..5281ca5380 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarPlus.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'calendar-plus'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f271'; +var svgPathData = 'M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm316 140c0-6.6-5.4-12-12-12h-60v-60c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v60h-60c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h60v60c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-60h60c6.6 0 12-5.4 12-12v-40z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCalendarPlus = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarTimes.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarTimes.d.ts new file mode 100644 index 0000000000..1c8caddd3b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarTimes.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCalendarTimes: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarTimes.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarTimes.js new file mode 100644 index 0000000000..6b6c1e8340 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCalendarTimes.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'calendar-times'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f273'; +var svgPathData = 'M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm257.3 160l48.1-48.1c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0L224 306.7l-48.1-48.1c-4.7-4.7-12.3-4.7-17 0l-28.3 28.3c-4.7 4.7-4.7 12.3 0 17l48.1 48.1-48.1 48.1c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l48.1-48.1 48.1 48.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L269.3 352z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCalendarTimes = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCamera.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCamera.d.ts new file mode 100644 index 0000000000..9eaf5fb377 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCamera.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCamera: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCamera.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCamera.js new file mode 100644 index 0000000000..67ec5f0498 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCamera.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'camera'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f030'; +var svgPathData = 'M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCamera = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCameraRetro.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCameraRetro.d.ts new file mode 100644 index 0000000000..7c56fe2675 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCameraRetro.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCameraRetro: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCameraRetro.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCameraRetro.js new file mode 100644 index 0000000000..3f3a874a32 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCameraRetro.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'camera-retro'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f083'; +var svgPathData = 'M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm0 32h106c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H38c-3.3 0-6-2.7-6-6V80c0-8.8 7.2-16 16-16zm426 96H38c-3.3 0-6-2.7-6-6v-36c0-3.3 2.7-6 6-6h138l30.2-45.3c1.1-1.7 3-2.7 5-2.7H464c8.8 0 16 7.2 16 16v74c0 3.3-2.7 6-6 6zM256 424c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88zm-48 104c-8.8 0-16-7.2-16-16 0-35.3 28.7-64 64-64 8.8 0 16 7.2 16 16s-7.2 16-16 16c-17.6 0-32 14.4-32 32 0 8.8-7.2 16-16 16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCameraRetro = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCannabis.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCannabis.d.ts new file mode 100644 index 0000000000..0fc2b584fa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCannabis.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCannabis: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCannabis.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCannabis.js new file mode 100644 index 0000000000..9f5287fa95 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCannabis.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'cannabis'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f55f'; +var svgPathData = 'M503.47 360.25c-1.56-.82-32.39-16.89-76.78-25.81 64.25-75.12 84.05-161.67 84.93-165.64 1.18-5.33-.44-10.9-4.3-14.77-3.03-3.04-7.12-4.7-11.32-4.7-1.14 0-2.29.12-3.44.38-3.88.85-86.54 19.59-160.58 79.76.01-1.46.01-2.93.01-4.4 0-118.79-59.98-213.72-62.53-217.7A15.973 15.973 0 0 0 256 0c-5.45 0-10.53 2.78-13.47 7.37-2.55 3.98-62.53 98.91-62.53 217.7 0 1.47.01 2.94.01 4.4-74.03-60.16-156.69-78.9-160.58-79.76-1.14-.25-2.29-.38-3.44-.38-4.2 0-8.29 1.66-11.32 4.7A15.986 15.986 0 0 0 .38 168.8c.88 3.97 20.68 90.52 84.93 165.64-44.39 8.92-75.21 24.99-76.78 25.81a16.003 16.003 0 0 0-.02 28.29c2.45 1.29 60.76 31.72 133.49 31.72 6.14 0 11.96-.1 17.5-.31-11.37 22.23-16.52 38.31-16.81 39.22-1.8 5.68-.29 11.89 3.91 16.11a16.019 16.019 0 0 0 16.1 3.99c1.83-.57 37.72-11.99 77.3-39.29V504c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8v-64.01c39.58 27.3 75.47 38.71 77.3 39.29a16.019 16.019 0 0 0 16.1-3.99c4.2-4.22 5.71-10.43 3.91-16.11-.29-.91-5.45-16.99-16.81-39.22 5.54.21 11.37.31 17.5.31 72.72 0 131.04-30.43 133.49-31.72 5.24-2.78 8.52-8.22 8.51-14.15-.01-5.94-3.29-11.39-8.53-14.15z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCannabis = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCapsules.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCapsules.d.ts new file mode 100644 index 0000000000..8f994251fe --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCapsules.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCapsules: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCapsules.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCapsules.js new file mode 100644 index 0000000000..08649f4c0d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCapsules.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'capsules'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f46b'; +var svgPathData = 'M555.3 300.1L424.2 112.8C401.9 81 366.4 64 330.4 64c-22.6 0-45.5 6.7-65.5 20.7-19.7 13.8-33.7 32.8-41.5 53.8C220.5 79.2 172 32 112 32 50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V218.9c3.3 8.6 7.3 17.1 12.8 25L368 431.2c22.2 31.8 57.7 48.8 93.8 48.8 22.7 0 45.5-6.7 65.5-20.7 51.7-36.2 64.2-107.5 28-159.2zM160 256H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm194.8 44.9l-65.6-93.7c-7.7-11-10.7-24.4-8.3-37.6 2.3-13.2 9.7-24.8 20.7-32.5 8.5-6 18.5-9.1 28.8-9.1 16.5 0 31.9 8 41.3 21.5l65.6 93.7-82.5 57.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCapsules = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCar.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCar.d.ts new file mode 100644 index 0000000000..9bc8a1f41a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCar.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCar: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCar.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCar.js new file mode 100644 index 0000000000..f40f62e837 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCar.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'car'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1b9'; +var svgPathData = 'M499.991 168h-54.815l-7.854-20.944c-9.192-24.513-25.425-45.351-46.942-60.263S343.651 64 317.472 64H194.528c-26.18 0-51.391 7.882-72.908 22.793-21.518 14.912-37.75 35.75-46.942 60.263L66.824 168H12.009c-8.191 0-13.974 8.024-11.384 15.795l8 24A12 12 0 0 0 20.009 216h28.815l-.052.14C29.222 227.093 16 247.997 16 272v48c0 16.225 6.049 31.029 16 42.309V424c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-40h256v40c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-61.691c9.951-11.281 16-26.085 16-42.309v-48c0-24.003-13.222-44.907-32.772-55.86l-.052-.14h28.815a12 12 0 0 0 11.384-8.205l8-24c2.59-7.771-3.193-15.795-11.384-15.795zm-365.388 1.528C143.918 144.689 168 128 194.528 128h122.944c26.528 0 50.61 16.689 59.925 41.528L391.824 208H120.176l14.427-38.472zM88 328c-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32s48 30.327 48 48-30.327 16-48 16zm336 0c-17.673 0-48 1.673-48-16 0-17.673 30.327-48 48-48s32 14.327 32 32c0 17.673-14.327 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCar = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretDown.d.ts new file mode 100644 index 0000000000..4ff96ff977 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretDown.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCaretDown: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretDown.js new file mode 100644 index 0000000000..f46860cf3c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretDown.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'caret-down'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f0d7'; +var svgPathData = 'M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCaretDown = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretLeft.d.ts new file mode 100644 index 0000000000..9f83617c96 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretLeft.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCaretLeft: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretLeft.js new file mode 100644 index 0000000000..06eba0463e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretLeft.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'caret-left'; +var width = 192; +var height = 512; +var ligatures = []; +var unicode = 'f0d9'; +var svgPathData = 'M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCaretLeft = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretRight.d.ts new file mode 100644 index 0000000000..8826ecc4bd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretRight.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCaretRight: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretRight.js new file mode 100644 index 0000000000..567a7870b6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretRight.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'caret-right'; +var width = 192; +var height = 512; +var ligatures = []; +var unicode = 'f0da'; +var svgPathData = 'M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCaretRight = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareDown.d.ts new file mode 100644 index 0000000000..ccae43f359 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareDown.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCaretSquareDown: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareDown.js new file mode 100644 index 0000000000..0317dedf9c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareDown.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'caret-square-down'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f150'; +var svgPathData = 'M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM92.5 220.5l123 123c4.7 4.7 12.3 4.7 17 0l123-123c7.6-7.6 2.2-20.5-8.5-20.5H101c-10.7 0-16.1 12.9-8.5 20.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCaretSquareDown = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareLeft.d.ts new file mode 100644 index 0000000000..00c3e7ca6b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareLeft.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCaretSquareLeft: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareLeft.js new file mode 100644 index 0000000000..a500de6fb9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareLeft.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'caret-square-left'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f191'; +var svgPathData = 'M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM259.515 124.485l-123.03 123.03c-4.686 4.686-4.686 12.284 0 16.971l123.029 123.029c7.56 7.56 20.485 2.206 20.485-8.485V132.971c.001-10.691-12.925-16.045-20.484-8.486z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCaretSquareLeft = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareRight.d.ts new file mode 100644 index 0000000000..3c072c7a59 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareRight.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCaretSquareRight: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareRight.js new file mode 100644 index 0000000000..07c061fe1e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareRight.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'caret-square-right'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f152'; +var svgPathData = 'M48 32h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48zm140.485 355.515l123.029-123.029c4.686-4.686 4.686-12.284 0-16.971l-123.029-123.03c-7.56-7.56-20.485-2.206-20.485 8.485v246.059c0 10.691 12.926 16.045 20.485 8.486z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCaretSquareRight = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareUp.d.ts new file mode 100644 index 0000000000..4f065dbcfb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareUp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCaretSquareUp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareUp.js new file mode 100644 index 0000000000..0bad9960be --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretSquareUp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'caret-square-up'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f151'; +var svgPathData = 'M0 432V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm355.515-140.485l-123.03-123.03c-4.686-4.686-12.284-4.686-16.971 0L92.485 291.515c-7.56 7.56-2.206 20.485 8.485 20.485h246.059c10.691 0 16.045-12.926 8.486-20.485z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCaretSquareUp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretUp.d.ts new file mode 100644 index 0000000000..b4bcf33c39 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretUp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCaretUp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretUp.js new file mode 100644 index 0000000000..1943167623 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCaretUp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'caret-up'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f0d8'; +var svgPathData = 'M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCaretUp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCartArrowDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCartArrowDown.d.ts new file mode 100644 index 0000000000..c7f328bef4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCartArrowDown.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCartArrowDown: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCartArrowDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCartArrowDown.js new file mode 100644 index 0000000000..1e8d4172e7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCartArrowDown.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'cart-arrow-down'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f218'; +var svgPathData = 'M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCartArrowDown = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCartPlus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCartPlus.d.ts new file mode 100644 index 0000000000..8c2d11bb31 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCartPlus.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCartPlus: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCartPlus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCartPlus.js new file mode 100644 index 0000000000..e6f71bec2c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCartPlus.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'cart-plus'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f217'; +var svgPathData = 'M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM408 168h-48v-40c0-8.837-7.163-16-16-16h-16c-8.837 0-16 7.163-16 16v40h-48c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h48v40c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-40h48c8.837 0 16-7.163 16-16v-16c0-8.837-7.163-16-16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCartPlus = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCertificate.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCertificate.d.ts new file mode 100644 index 0000000000..43863ec519 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCertificate.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCertificate: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCertificate.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCertificate.js new file mode 100644 index 0000000000..072dee56d0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCertificate.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'certificate'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0a3'; +var svgPathData = 'M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCertificate = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChalkboard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChalkboard.d.ts new file mode 100644 index 0000000000..c4f52777cb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChalkboard.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChalkboard: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChalkboard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChalkboard.js new file mode 100644 index 0000000000..8de4c69fa0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChalkboard.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'chalkboard'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f51b'; +var svgPathData = 'M96 64h448v352h64V40c0-22.06-17.94-40-40-40H72C49.94 0 32 17.94 32 40v376h64V64zm528 384H480v-64H288v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChalkboard = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChalkboardTeacher.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChalkboardTeacher.d.ts new file mode 100644 index 0000000000..cc0a8317c2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChalkboardTeacher.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChalkboardTeacher: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChalkboardTeacher.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChalkboardTeacher.js new file mode 100644 index 0000000000..b2c39d4c5d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChalkboardTeacher.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'chalkboard-teacher'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f51c'; +var svgPathData = 'M208 352c-2.39 0-4.78.35-7.06 1.09C187.98 357.3 174.35 360 160 360c-14.35 0-27.98-2.7-40.95-6.91-2.28-.74-4.66-1.09-7.05-1.09C49.94 352-.33 402.48 0 464.62.14 490.88 21.73 512 48 512h224c26.27 0 47.86-21.12 48-47.38.33-62.14-49.94-112.62-112-112.62zm-48-32c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM592 0H208c-26.47 0-48 22.25-48 49.59V96c23.42 0 45.1 6.78 64 17.8V64h352v288h-64v-64H384v64h-76.24c19.1 16.69 33.12 38.73 39.69 64H592c26.47 0 48-22.25 48-49.59V49.59C640 22.25 618.47 0 592 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChalkboardTeacher = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartArea.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartArea.d.ts new file mode 100644 index 0000000000..39c9065b3e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartArea.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChartArea: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartArea.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartArea.js new file mode 100644 index 0000000000..77923b2fac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartArea.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'chart-area'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1fe'; +var svgPathData = 'M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChartArea = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartBar.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartBar.d.ts new file mode 100644 index 0000000000..a7dd341581 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartBar.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChartBar: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartBar.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartBar.js new file mode 100644 index 0000000000..afc16e3abb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartBar.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'chart-bar'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f080'; +var svgPathData = 'M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zm-308-44v-72c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V204c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V108c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChartBar = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartLine.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartLine.d.ts new file mode 100644 index 0000000000..01e9d3ac08 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartLine.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChartLine: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartLine.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartLine.js new file mode 100644 index 0000000000..60388420af --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartLine.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'chart-line'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f201'; +var svgPathData = 'M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM456 96H344c-21.4 0-32.1 25.9-17 41l32.9 32.9-72 72.9-55.6-55.6c-4.7-4.7-12.2-4.7-16.9 0L96.4 305c-4.7 4.6-4.8 12.2-.2 16.9l28.5 29.4c4.7 4.8 12.4 4.9 17.1.1l82.1-82.1 55.5 55.5c4.7 4.7 12.3 4.7 17 0l109.2-109.2L439 249c15.1 15.1 41 4.4 41-17V120c0-13.3-10.7-24-24-24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChartLine = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartPie.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartPie.d.ts new file mode 100644 index 0000000000..4f91f05520 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartPie.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChartPie: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartPie.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartPie.js new file mode 100644 index 0000000000..85884455f5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChartPie.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'chart-pie'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f200'; +var svgPathData = 'M288 12.3V240h227.7c6.9 0 12.3-5.8 12-12.7-6.4-122.4-104.5-220.6-227-227-6.9-.3-12.7 5.1-12.7 12zM552.7 288c6.9 0 12.3 5.8 12 12.7-2.8 53.2-23.2 105.6-61.2 147.8-4.6 5.1-12.6 5.4-17.5.5L325 288h227.7zM401 433c4.8 4.8 4.7 12.8-.4 17.3-42.6 38.4-99 61.7-160.8 61.7C107.6 511.9-.2 403.8 0 271.5.2 143.4 100.8 38.9 227.3 32.3c6.9-.4 12.7 5.1 12.7 12V272l161 161z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChartPie = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheck.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheck.d.ts new file mode 100644 index 0000000000..0856497146 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheck.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCheck: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheck.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheck.js new file mode 100644 index 0000000000..f4e541b093 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheck.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'check'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f00c'; +var svgPathData = 'M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCheck = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheckCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheckCircle.d.ts new file mode 100644 index 0000000000..281ab22c39 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheckCircle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCheckCircle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheckCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheckCircle.js new file mode 100644 index 0000000000..054b4cbaf8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheckCircle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'check-circle'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f058'; +var svgPathData = 'M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCheckCircle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheckDouble.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheckDouble.d.ts new file mode 100644 index 0000000000..d75cfa8431 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheckDouble.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCheckDouble: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheckDouble.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheckDouble.js new file mode 100644 index 0000000000..1138141960 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheckDouble.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'check-double'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f560'; +var svgPathData = 'M504.5 171.95l-36.2-36.41c-10-10.05-26.21-10.05-36.2 0L192 377.02 79.9 264.28c-10-10.06-26.21-10.06-36.2 0L7.5 300.69c-10 10.05-10 26.36 0 36.41l166.4 167.36c10 10.06 26.21 10.06 36.2 0l294.4-296.09c10-10.06 10-26.36 0-36.42zM166.57 282.71c6.84 7.02 18.18 7.02 25.21.18L403.85 72.62c7.02-6.84 7.02-18.18.18-25.21L362.08 5.29c-6.84-7.02-18.18-7.02-25.21-.18L179.71 161.19l-68.23-68.77c-6.84-7.02-18.18-7.02-25.2-.18l-42.13 41.77c-7.02 6.84-7.02 18.18-.18 25.2l122.6 123.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCheckDouble = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheckSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheckSquare.d.ts new file mode 100644 index 0000000000..60acd028a3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheckSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCheckSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheckSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheckSquare.js new file mode 100644 index 0000000000..0913c0b255 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCheckSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'check-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f14a'; +var svgPathData = 'M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCheckSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChess.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChess.d.ts new file mode 100644 index 0000000000..690956e634 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChess.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChess: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChess.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChess.js new file mode 100644 index 0000000000..a20b02f41a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChess.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'chess'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f439'; +var svgPathData = 'M199.821 217.633a6 6 0 0 1 6 6l-.001 20.766a6 6 0 0 1-6 6h-25.805c0 31.715-2.153 96.201 17.398 153.229H64.597C84.54 345.452 82.02 279.245 82.02 250.399H56.183a6 6 0 0 1-6-6l.002-20.766a6 6 0 0 1 6-6h143.636zM41.554 115.088l34.58 95.071h103.734l34.572-95.072c2.846-7.826-2.95-16.101-11.278-16.101H152v-30.22h21.57a6 6 0 0 0 6-6V40.383a6 6 0 0 0-6-6h-28.367V6a6 6 0 0 0-6-6H116.82a6 6 0 0 0-6 6v28.383H82.421a6 6 0 0 0-6 6v22.383a6 6 0 0 0 6 6H104v30.219H52.831c-8.328.001-14.124 8.276-11.277 16.103zM222.678 445.17v-28.067a6 6 0 0 0-6-6H39.322a6 6 0 0 0-6 6v28.067l-22.148 14.164a6 6 0 0 0-2.767 5.055V506a6 6 0 0 0 6 6h227.187a6 6 0 0 0 6-6v-41.612a6 6 0 0 0-2.767-5.055l-22.149-14.163zm90.578-144.225l24.88 16.963c.09 18.124-.167 63.904-11.905 114.522h147.526c-11.713-50.475-11.969-96.324-11.882-114.537l24.859-16.949a3.856 3.856 0 0 0 1.684-3.187v-69.901a3.857 3.857 0 0 0-3.857-3.857h-27.655a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.858-3.857h-52.918a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.857-3.857H315.43a3.857 3.857 0 0 0-3.857 3.857v69.901a3.855 3.855 0 0 0 1.683 3.188zm71.585 51.906c0-8.372 6.787-15.158 15.159-15.158s15.158 6.787 15.158 15.158v30.318h-30.317v-30.318zM504.62 470.059l-13.664-10.639v-15.552a3.857 3.857 0 0 0-3.857-3.857H312.915a3.857 3.857 0 0 0-3.857 3.857v15.552l-13.677 10.639a3.857 3.857 0 0 0-1.488 3.044v35.039a3.857 3.857 0 0 0 3.857 3.857h204.5a3.857 3.857 0 0 0 3.857-3.857v-35.04a3.859 3.859 0 0 0-1.487-3.043z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChess = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessBishop.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessBishop.d.ts new file mode 100644 index 0000000000..053170d6df --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessBishop.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChessBishop: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessBishop.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessBishop.js new file mode 100644 index 0000000000..a8a7a57abc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessBishop.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'chess-bishop'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f43a'; +var svgPathData = 'M123.158 77.881C107.369 72.53 96 57.597 96 40c0-22.091 17.909-40 40-40h47.796c22.091 0 40 17.909 40 40 0 17.541-11.295 32.434-27.005 37.829 23.993 16.657 48.577 46.839 68.703 82.05L144.929 280.443a6 6 0 0 0 0 8.485l14.142 14.142a6 6 0 0 0 8.485 0L280.9 189.726c17.758 38.297 29.371 79.443 29.371 114.273 0 53.786-22.897 75.788-58.446 86.033V448H68.174v-57.97C32.631 379.784 9.739 357.781 9.739 304c0-78.029 58.281-187.766 113.419-226.119zM320 500v-24c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChessBishop = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessBoard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessBoard.d.ts new file mode 100644 index 0000000000..34d8346787 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessBoard.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChessBoard: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessBoard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessBoard.js new file mode 100644 index 0000000000..595064aa24 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessBoard.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'chess-board'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f43c'; +var svgPathData = 'M256 256v64h-64v-64h64zm0-256h-64v64h64V0zm0 256h64v-64h-64v64zM384 0h-64v64h64V0zm0 512h64v-64h-64v64zm128-64v-64h-64v64h64zm-384 64h64v-64h-64v64zm0-512H64v64h64V0zm384 192v-64h-64v64h64zm0 128v-64h-64v64h64zM0 512h64v-64H0v64zM0 64v64h64V64H0zm0 128v64h64v-64H0zm0 128v64h64v-64H0zm256 192h64v-64h-64v64zm-64-128v64h64v-64h-64zm64-192v-64h-64v64h64zM64 384v64h64v-64H64zm64-128H64v64h64v-64zm256 128h64v-64h-64v64zM512 0h-64v64h64V0zM384 256h64v-64h-64v64zm0-192v64h64V64h-64zm-64 320v64h64v-64h-64zm-192-64v64h64v-64h-64zm128 0v64h64v-64h-64zm-64-128h-64v64h64v-64zm-64-64H64v64h64v-64zm192 192h64v-64h-64v64zM192 128V64h-64v64h64zm128 0V64h-64v64h64zm0 64h64v-64h-64v64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChessBoard = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessKing.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessKing.d.ts new file mode 100644 index 0000000000..77a0b802b3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessKing.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChessKing: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessKing.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessKing.js new file mode 100644 index 0000000000..a68f3c3c5d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessKing.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'chess-king'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f43f'; +var svgPathData = 'M416 476v24c0 6.627-5.373 12-12 12H44c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12zm-8.033-324H248v-48h50a6 6 0 0 0 6-6V62a6 6 0 0 0-6-6h-50V6a6 6 0 0 0-6-6h-36a6 6 0 0 0-6 6v50h-50a6 6 0 0 0-6 6v36a6 6 0 0 0 6 6h50v48H40.033c-27.574 0-46.879 27.244-37.738 53.259L87.582 448h272.836l85.287-242.741C454.846 179.244 435.541 152 407.967 152z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChessKing = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessKnight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessKnight.d.ts new file mode 100644 index 0000000000..9d925a0e80 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessKnight.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChessKnight: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessKnight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessKnight.js new file mode 100644 index 0000000000..9a812a4da5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessKnight.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'chess-knight'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f441'; +var svgPathData = 'M352 224v224H32v-46.557c0-30.302 17.12-58.003 44.223-71.554l57.243-28.622A48 48 0 0 0 160 258.334V208l-22.127 11.063a23.996 23.996 0 0 0-12.55 15.645l-11.835 47.338a12 12 0 0 1-7.185 8.231l-29.601 11.84a11.998 11.998 0 0 1-9.33-.176L7.126 275.167A12 12 0 0 1 0 264.201v-158.26c0-6.365 2.529-12.47 7.03-16.971L16 80 1.789 51.578A16.937 16.937 0 0 1 0 44c0-6.627 5.373-12 12-12h148c106.039 0 192 85.961 192 192zm20 240H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12zM52 128c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChessKnight = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessPawn.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessPawn.d.ts new file mode 100644 index 0000000000..9a4a2fd506 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessPawn.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChessPawn: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessPawn.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessPawn.js new file mode 100644 index 0000000000..62fbcab616 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessPawn.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'chess-pawn'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f443'; +var svgPathData = 'M264 448H56s60-42.743 60-176H84c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h40.209C95.721 210.56 76 181.588 76 148c0-46.392 37.608-84 84-84s84 37.608 84 84c0 33.588-19.721 62.56-48.209 76H236c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12h-32c0 133.257 60 176 60 176zm28 16H28c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h264c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChessPawn = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessQueen.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessQueen.d.ts new file mode 100644 index 0000000000..19d38cc552 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessQueen.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChessQueen: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessQueen.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessQueen.js new file mode 100644 index 0000000000..12dd8570df --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessQueen.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'chess-queen'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f445'; +var svgPathData = 'M436 512H76c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12zM255.579 0c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zm204.568 154.634c-5.768-3.045-12.916-.932-16.082 4.77-8.616 15.516-22.747 37.801-44.065 37.801-28.714 0-30.625-19.804-31.686-57.542-.183-6.492-5.501-11.664-11.995-11.664h-41.006c-5.175 0-9.754 3.328-11.388 8.238-8.89 26.709-26.073 40.992-47.925 40.992s-39.034-14.283-47.925-40.992c-1.634-4.91-6.213-8.238-11.388-8.238h-41.005c-6.495 0-11.813 5.174-11.995 11.667-1.052 37.642-2.934 57.539-31.688 57.539-20.691 0-33.817-20.224-44.425-38.025-3.266-5.48-10.258-7.431-15.899-4.453l-39.179 20.679a12 12 0 0 0-5.51 15.145L112 448h288l105.014-257.448a12 12 0 0 0-5.51-15.145l-39.357-20.773z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChessQueen = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessRook.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessRook.d.ts new file mode 100644 index 0000000000..0de82b61e4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessRook.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChessRook: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessRook.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessRook.js new file mode 100644 index 0000000000..367c343a22 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChessRook.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'chess-rook'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f447'; +var svgPathData = 'M81.241 215.027C80.957 258.92 77.411 348.076 48 448h287.982c-29.4-99.604-32.936-188.912-33.221-232.975l45.418-42.312a11.998 11.998 0 0 0 3.82-8.78V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v44h-48V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v44H96V44c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v119.932c0 3.33 1.384 6.51 3.82 8.78l45.421 42.315zM160 256c0-17.673 14.327-32 32-32 17.673 0 32 14.327 32 32v64.004h-64V256zm224 220v24c0 6.627-5.373 12-12 12H12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChessRook = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleDown.d.ts new file mode 100644 index 0000000000..ed05e2840a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleDown.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChevronCircleDown: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleDown.js new file mode 100644 index 0000000000..030543b837 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleDown.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'chevron-circle-down'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f13a'; +var svgPathData = 'M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM273 369.9l135.5-135.5c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L256 285.1 154.4 183.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L239 369.9c9.4 9.4 24.6 9.4 34 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChevronCircleDown = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleLeft.d.ts new file mode 100644 index 0000000000..fb58172ceb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleLeft.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChevronCircleLeft: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleLeft.js new file mode 100644 index 0000000000..39427b2952 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleLeft.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'chevron-circle-left'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f137'; +var svgPathData = 'M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChevronCircleLeft = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleRight.d.ts new file mode 100644 index 0000000000..b36fba3948 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleRight.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChevronCircleRight: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleRight.js new file mode 100644 index 0000000000..42047d5664 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleRight.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'chevron-circle-right'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f138'; +var svgPathData = 'M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChevronCircleRight = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleUp.d.ts new file mode 100644 index 0000000000..ca00b7fa40 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleUp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChevronCircleUp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleUp.js new file mode 100644 index 0000000000..bffd7dff2f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronCircleUp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'chevron-circle-up'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f139'; +var svgPathData = 'M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm231-113.9L103.5 277.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L256 226.9l101.6 101.6c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L273 142.1c-9.4-9.4-24.6-9.4-34 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChevronCircleUp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronDown.d.ts new file mode 100644 index 0000000000..5e0617061a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronDown.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChevronDown: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronDown.js new file mode 100644 index 0000000000..8eccc7c212 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronDown.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'chevron-down'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f078'; +var svgPathData = 'M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChevronDown = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronLeft.d.ts new file mode 100644 index 0000000000..f4299af72a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronLeft.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChevronLeft: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronLeft.js new file mode 100644 index 0000000000..082df4a1d6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronLeft.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'chevron-left'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f053'; +var svgPathData = 'M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChevronLeft = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronRight.d.ts new file mode 100644 index 0000000000..afda985897 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronRight.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChevronRight: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronRight.js new file mode 100644 index 0000000000..acc1b84d2a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronRight.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'chevron-right'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f054'; +var svgPathData = 'M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChevronRight = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronUp.d.ts new file mode 100644 index 0000000000..29e72715d0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronUp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChevronUp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronUp.js new file mode 100644 index 0000000000..1ad4ff75e0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChevronUp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'chevron-up'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f077'; +var svgPathData = 'M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChevronUp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChild.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChild.d.ts new file mode 100644 index 0000000000..a73065e40e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChild.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChild: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChild.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChild.js new file mode 100644 index 0000000000..1e2bb1541e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChild.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'child'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f1ae'; +var svgPathData = 'M120 72c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.764-32.235 72-72 72s-72-32.236-72-72zm254.627 1.373c-12.496-12.497-32.758-12.497-45.254 0L242.745 160H141.254L54.627 73.373c-12.496-12.497-32.758-12.497-45.254 0-12.497 12.497-12.497 32.758 0 45.255L104 213.254V480c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V368h16v112c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V213.254l94.627-94.627c12.497-12.497 12.497-32.757 0-45.254z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChild = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChurch.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChurch.d.ts new file mode 100644 index 0000000000..ba9017ba78 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChurch.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faChurch: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChurch.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChurch.js new file mode 100644 index 0000000000..9bd5dd8587 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faChurch.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'church'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f51d'; +var svgPathData = 'M464.46 246.68L352 179.2V128h48c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-48V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v48h-48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v51.2l-112.46 67.48A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.65-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.54A32.024 32.024 0 0 0 0 395.96zm620.61-29.42L512 320v192h112c8.84 0 16-7.16 16-16V395.96c0-12.8-7.63-24.37-19.39-29.42z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faChurch = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCircle.d.ts new file mode 100644 index 0000000000..d93f3e6270 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCircle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCircle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCircle.js new file mode 100644 index 0000000000..40c3b9f933 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCircle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'circle'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f111'; +var svgPathData = 'M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCircle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCircleNotch.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCircleNotch.d.ts new file mode 100644 index 0000000000..225a411fce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCircleNotch.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCircleNotch: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCircleNotch.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCircleNotch.js new file mode 100644 index 0000000000..3958ee53c1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCircleNotch.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'circle-notch'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1ce'; +var svgPathData = 'M288 39.056v16.659c0 10.804 7.281 20.159 17.686 23.066C383.204 100.434 440 171.518 440 256c0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-84.47 56.786-155.564 134.312-177.219C216.719 75.874 224 66.517 224 55.712V39.064c0-15.709-14.834-27.153-30.046-23.234C86.603 43.482 7.394 141.206 8.003 257.332c.72 137.052 111.477 246.956 248.531 246.667C393.255 503.711 504 392.788 504 256c0-115.633-79.14-212.779-186.211-240.236C302.678 11.889 288 23.456 288 39.056z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCircleNotch = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClipboard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClipboard.d.ts new file mode 100644 index 0000000000..8b3c413ccb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClipboard.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faClipboard: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClipboard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClipboard.js new file mode 100644 index 0000000000..cae3a55790 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClipboard.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'clipboard'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f328'; +var svgPathData = 'M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faClipboard = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClipboardCheck.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClipboardCheck.d.ts new file mode 100644 index 0000000000..6f8b3ae57e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClipboardCheck.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faClipboardCheck: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClipboardCheck.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClipboardCheck.js new file mode 100644 index 0000000000..d8ce81ebe3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClipboardCheck.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'clipboard-check'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f46c'; +var svgPathData = 'M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm121.2 231.8l-143 141.8c-4.7 4.7-12.3 4.6-17-.1l-82.6-83.3c-4.7-4.7-4.6-12.3.1-17L99.1 285c4.7-4.7 12.3-4.6 17 .1l46 46.4 106-105.2c4.7-4.7 12.3-4.6 17 .1l28.2 28.4c4.7 4.8 4.6 12.3-.1 17z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faClipboardCheck = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClipboardList.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClipboardList.d.ts new file mode 100644 index 0000000000..4745d96376 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClipboardList.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faClipboardList: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClipboardList.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClipboardList.js new file mode 100644 index 0000000000..00288ef5e2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClipboardList.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'clipboard-list'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f46d'; +var svgPathData = 'M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM96 424c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm96-192c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm128 368c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faClipboardList = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClock.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClock.d.ts new file mode 100644 index 0000000000..9ee4727914 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClock.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faClock: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClock.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClock.js new file mode 100644 index 0000000000..a094733bfb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClock.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'clock'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f017'; +var svgPathData = 'M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm57.1 350.1L224.9 294c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v137.7l63.5 46.2c5.4 3.9 6.5 11.4 2.6 16.8l-28.2 38.8c-3.9 5.3-11.4 6.5-16.8 2.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faClock = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClone.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClone.d.ts new file mode 100644 index 0000000000..3fb6402f84 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClone.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faClone: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClone.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClone.js new file mode 100644 index 0000000000..052382d915 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClone.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'clone'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f24d'; +var svgPathData = 'M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faClone = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClosedCaptioning.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClosedCaptioning.d.ts new file mode 100644 index 0000000000..5e84446105 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClosedCaptioning.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faClosedCaptioning: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClosedCaptioning.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClosedCaptioning.js new file mode 100644 index 0000000000..d8f6a569bf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faClosedCaptioning.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'closed-captioning'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f20a'; +var svgPathData = 'M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM218.1 287.7c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2.1 48 51.1 70.5 92.3 32.6zm190.4 0c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.5 56.9-172.7 32.1-172.7-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 222.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faClosedCaptioning = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCloud.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCloud.d.ts new file mode 100644 index 0000000000..d05282ecd0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCloud.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCloud: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCloud.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCloud.js new file mode 100644 index 0000000000..65ac31e787 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCloud.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'cloud'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f0c2'; +var svgPathData = 'M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCloud = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCloudDownloadAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCloudDownloadAlt.d.ts new file mode 100644 index 0000000000..96e27bcda8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCloudDownloadAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCloudDownloadAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCloudDownloadAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCloudDownloadAlt.js new file mode 100644 index 0000000000..32cda04158 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCloudDownloadAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'cloud-download-alt'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f381'; +var svgPathData = 'M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCloudDownloadAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCloudUploadAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCloudUploadAlt.d.ts new file mode 100644 index 0000000000..48b6738338 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCloudUploadAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCloudUploadAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCloudUploadAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCloudUploadAlt.js new file mode 100644 index 0000000000..b4d0ba4112 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCloudUploadAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'cloud-upload-alt'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f382'; +var svgPathData = 'M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCloudUploadAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCocktail.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCocktail.d.ts new file mode 100644 index 0000000000..64d6019cad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCocktail.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCocktail: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCocktail.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCocktail.js new file mode 100644 index 0000000000..cd11ca97df --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCocktail.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'cocktail'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f561'; +var svgPathData = 'M296 464h-56V338.78l168.74-168.73c15.52-15.52 4.53-42.05-17.42-42.05H24.68c-21.95 0-32.94 26.53-17.42 42.05L176 338.78V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM432 0c-62.61 0-115.35 40.2-135.18 96h52.54c16.65-28.55 47.27-48 82.64-48 52.93 0 96 43.06 96 96s-43.07 96-96 96c-14.04 0-27.29-3.2-39.32-8.64l-35.26 35.26C379.23 279.92 404.59 288 432 288c79.53 0 144-64.47 144-144S511.53 0 432 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCocktail = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCode.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCode.d.ts new file mode 100644 index 0000000000..ff69556ec5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCode.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCode: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCode.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCode.js new file mode 100644 index 0000000000..2ed311ae94 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCode.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'code'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f121'; +var svgPathData = 'M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCode = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCodeBranch.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCodeBranch.d.ts new file mode 100644 index 0000000000..0b6764a9de --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCodeBranch.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCodeBranch: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCodeBranch.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCodeBranch.js new file mode 100644 index 0000000000..93af39a5e7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCodeBranch.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'code-branch'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f126'; +var svgPathData = 'M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCodeBranch = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCoffee.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCoffee.d.ts new file mode 100644 index 0000000000..ff0787b20d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCoffee.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCoffee: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCoffee.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCoffee.js new file mode 100644 index 0000000000..872df86a37 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCoffee.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'coffee'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f0f4'; +var svgPathData = 'M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCoffee = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCog.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCog.d.ts new file mode 100644 index 0000000000..546ca28869 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCog.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCog: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCog.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCog.js new file mode 100644 index 0000000000..e50f248d8d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCog.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'cog'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f013'; +var svgPathData = 'M444.788 291.1l42.616 24.599c4.867 2.809 7.126 8.618 5.459 13.985-11.07 35.642-29.97 67.842-54.689 94.586a12.016 12.016 0 0 1-14.832 2.254l-42.584-24.595a191.577 191.577 0 0 1-60.759 35.13v49.182a12.01 12.01 0 0 1-9.377 11.718c-34.956 7.85-72.499 8.256-109.219.007-5.49-1.233-9.403-6.096-9.403-11.723v-49.184a191.555 191.555 0 0 1-60.759-35.13l-42.584 24.595a12.016 12.016 0 0 1-14.832-2.254c-24.718-26.744-43.619-58.944-54.689-94.586-1.667-5.366.592-11.175 5.459-13.985L67.212 291.1a193.48 193.48 0 0 1 0-70.199l-42.616-24.599c-4.867-2.809-7.126-8.618-5.459-13.985 11.07-35.642 29.97-67.842 54.689-94.586a12.016 12.016 0 0 1 14.832-2.254l42.584 24.595a191.577 191.577 0 0 1 60.759-35.13V25.759a12.01 12.01 0 0 1 9.377-11.718c34.956-7.85 72.499-8.256 109.219-.007 5.49 1.233 9.403 6.096 9.403 11.723v49.184a191.555 191.555 0 0 1 60.759 35.13l42.584-24.595a12.016 12.016 0 0 1 14.832 2.254c24.718 26.744 43.619 58.944 54.689 94.586 1.667 5.366-.592 11.175-5.459 13.985L444.788 220.9a193.485 193.485 0 0 1 0 70.2zM336 256c0-44.112-35.888-80-80-80s-80 35.888-80 80 35.888 80 80 80 80-35.888 80-80z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCog = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCogs.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCogs.d.ts new file mode 100644 index 0000000000..cab43c948c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCogs.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCogs: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCogs.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCogs.js new file mode 100644 index 0000000000..c2dba150b8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCogs.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'cogs'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f085'; +var svgPathData = 'M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCogs = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCoins.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCoins.d.ts new file mode 100644 index 0000000000..76f81d7ced --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCoins.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCoins: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCoins.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCoins.js new file mode 100644 index 0000000000..909b003caa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCoins.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'coins'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f51e'; +var svgPathData = 'M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCoins = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faColumns.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faColumns.d.ts new file mode 100644 index 0000000000..180b164b11 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faColumns.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faColumns: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faColumns.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faColumns.js new file mode 100644 index 0000000000..d9ebe5b232 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faColumns.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'columns'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0db'; +var svgPathData = 'M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faColumns = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faComment.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faComment.d.ts new file mode 100644 index 0000000000..ecde1186f8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faComment.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faComment: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faComment.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faComment.js new file mode 100644 index 0000000000..0a8c1bd998 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faComment.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'comment'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f075'; +var svgPathData = 'M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faComment = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCommentAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCommentAlt.d.ts new file mode 100644 index 0000000000..ba672907a5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCommentAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCommentAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCommentAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCommentAlt.js new file mode 100644 index 0000000000..d4b40c75b1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCommentAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'comment-alt'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f27a'; +var svgPathData = 'M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 9.8 11.2 15.5 19.1 9.7L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCommentAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCommentDots.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCommentDots.d.ts new file mode 100644 index 0000000000..4902c62e15 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCommentDots.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCommentDots: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCommentDots.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCommentDots.js new file mode 100644 index 0000000000..b4acaf3b8d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCommentDots.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'comment-dots'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f4ad'; +var svgPathData = 'M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCommentDots = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCommentSlash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCommentSlash.d.ts new file mode 100644 index 0000000000..93dd8c9e85 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCommentSlash.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCommentSlash: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCommentSlash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCommentSlash.js new file mode 100644 index 0000000000..a5907fd8dd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCommentSlash.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'comment-slash'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f4b3'; +var svgPathData = 'M64 240c0 49.6 21.4 95 57 130.7-12.6 50.3-54.3 95.2-54.8 95.8-2.2 2.3-2.8 5.7-1.5 8.7 1.3 2.9 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 27.4 0 53.7-3.6 78.4-10L72.9 186.4c-5.6 17.1-8.9 35-8.9 53.6zm569.8 218.1l-114.4-88.4C554.6 334.1 576 289.2 576 240c0-114.9-114.6-208-256-208-65.1 0-124.2 20.1-169.4 52.7L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCommentSlash = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faComments.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faComments.d.ts new file mode 100644 index 0000000000..b988090f5f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faComments.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faComments: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faComments.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faComments.js new file mode 100644 index 0000000000..9c3478f86d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faComments.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'comments'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f086'; +var svgPathData = 'M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faComments = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCompactDisc.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCompactDisc.d.ts new file mode 100644 index 0000000000..8042054650 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCompactDisc.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCompactDisc: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCompactDisc.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCompactDisc.js new file mode 100644 index 0000000000..0f7415d10d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCompactDisc.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'compact-disc'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f51f'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 256H56c0-105.9 86.1-192 192-192v32c-88.2 0-160 71.8-160 160zm160 96c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCompactDisc = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCompass.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCompass.d.ts new file mode 100644 index 0000000000..0918f07212 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCompass.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCompass: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCompass.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCompass.js new file mode 100644 index 0000000000..940f595325 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCompass.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'compass'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f14e'; +var svgPathData = 'M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM307.446 120.844l-102.642 97.779a23.997 23.997 0 0 0-6.772 11.729l-33.359 137.779c-5.68 23.459 22.777 39.318 39.88 23.024l102.64-97.779a23.99 23.99 0 0 0 6.772-11.729l33.359-137.779c5.618-23.198-22.591-39.493-39.878-23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCompass = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCompress.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCompress.d.ts new file mode 100644 index 0000000000..c0ae50f34f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCompress.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCompress: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCompress.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCompress.js new file mode 100644 index 0000000000..b353b51c51 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCompress.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'compress'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f066'; +var svgPathData = 'M436 192H312c-13.3 0-24-10.7-24-24V44c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-276-24V44c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v84H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 300V344c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-84h84c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H312c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCompress = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faConciergeBell.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faConciergeBell.d.ts new file mode 100644 index 0000000000..1354986859 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faConciergeBell.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faConciergeBell: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faConciergeBell.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faConciergeBell.js new file mode 100644 index 0000000000..3a238c5e7e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faConciergeBell.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'concierge-bell'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f562'; +var svgPathData = 'M288 130.54V112h16c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h16v18.54C115.49 146.11 32 239.18 32 352h448c0-112.82-83.49-205.89-192-221.46zM496 384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faConciergeBell = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCookie.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCookie.d.ts new file mode 100644 index 0000000000..a64ba049b3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCookie.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCookie: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCookie.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCookie.js new file mode 100644 index 0000000000..a86b73bc7f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCookie.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'cookie'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f563'; +var svgPathData = 'M510.37 254.79l-12.08-76.26a132.493 132.493 0 0 0-37.16-72.95l-54.76-54.75c-19.73-19.72-45.18-32.7-72.71-37.05l-76.7-12.15c-27.51-4.36-55.69.11-80.52 12.76L107.32 49.6a132.25 132.25 0 0 0-57.79 57.8l-35.1 68.88a132.602 132.602 0 0 0-12.82 80.94l12.08 76.27a132.493 132.493 0 0 0 37.16 72.95l54.76 54.75a132.087 132.087 0 0 0 72.71 37.05l76.7 12.14c27.51 4.36 55.69-.11 80.52-12.75l69.12-35.21a132.302 132.302 0 0 0 57.79-57.8l35.1-68.87c12.71-24.96 17.2-53.3 12.82-80.96zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCookie = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCookieBite.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCookieBite.d.ts new file mode 100644 index 0000000000..ee7b97a9a4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCookieBite.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCookieBite: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCookieBite.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCookieBite.js new file mode 100644 index 0000000000..b9945a9976 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCookieBite.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'cookie-bite'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f564'; +var svgPathData = 'M510.52 255.82c-69.97-.85-126.47-57.69-126.47-127.86-70.17 0-127-56.49-127.86-126.45-27.26-4.14-55.13.3-79.72 12.82l-69.13 35.22a132.221 132.221 0 0 0-57.79 57.81l-35.1 68.88a132.645 132.645 0 0 0-12.82 80.95l12.08 76.27a132.521 132.521 0 0 0 37.16 72.96l54.77 54.76a132.036 132.036 0 0 0 72.71 37.06l76.71 12.15c27.51 4.36 55.7-.11 80.53-12.76l69.13-35.21a132.273 132.273 0 0 0 57.79-57.81l35.1-68.88c12.56-24.64 17.01-52.58 12.91-79.91zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCookieBite = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCopy.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCopy.d.ts new file mode 100644 index 0000000000..93254ebba2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCopy.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCopy: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCopy.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCopy.js new file mode 100644 index 0000000000..cf50114f79 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCopy.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'copy'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0c5'; +var svgPathData = 'M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCopy = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCopyright.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCopyright.d.ts new file mode 100644 index 0000000000..f39396444a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCopyright.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCopyright: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCopyright.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCopyright.js new file mode 100644 index 0000000000..f05608376b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCopyright.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'copyright'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1f9'; +var svgPathData = 'M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm117.134 346.753c-1.592 1.867-39.776 45.731-109.851 45.731-84.692 0-144.484-63.26-144.484-145.567 0-81.303 62.004-143.401 143.762-143.401 66.957 0 101.965 37.315 103.422 38.904a12 12 0 0 1 1.238 14.623l-22.38 34.655c-4.049 6.267-12.774 7.351-18.234 2.295-.233-.214-26.529-23.88-61.88-23.88-46.116 0-73.916 33.575-73.916 76.082 0 39.602 25.514 79.692 74.277 79.692 38.697 0 65.28-28.338 65.544-28.625 5.132-5.565 14.059-5.033 18.508 1.053l24.547 33.572a12.001 12.001 0 0 1-.553 14.866z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCopyright = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCouch.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCouch.d.ts new file mode 100644 index 0000000000..ee3e6b2938 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCouch.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCouch: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCouch.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCouch.js new file mode 100644 index 0000000000..cee30e3090 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCouch.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'couch'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f4b8'; +var svgPathData = 'M160 224v64h320v-64c0-35.3 28.7-64 64-64h32c0-53-43-96-96-96H160c-53 0-96 43-96 96h32c35.3 0 64 28.7 64 64zm416-32h-32c-17.7 0-32 14.3-32 32v96H128v-96c0-17.7-14.3-32-32-32H64c-35.3 0-64 28.7-64 64 0 23.6 13 44 32 55.1V432c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-16h384v16c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V311.1c19-11.1 32-31.5 32-55.1 0-35.3-28.7-64-64-64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCouch = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCreditCard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCreditCard.d.ts new file mode 100644 index 0000000000..19d1f93f89 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCreditCard.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCreditCard: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCreditCard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCreditCard.js new file mode 100644 index 0000000000..ba8f4c21fe --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCreditCard.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'credit-card'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f09d'; +var svgPathData = 'M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V256H0v176zm192-68c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-40zm-128 0c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM576 80v48H0V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCreditCard = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrop.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrop.d.ts new file mode 100644 index 0000000000..41e5d272ca --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrop.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCrop: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrop.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrop.js new file mode 100644 index 0000000000..7bd5d2e057 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrop.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'crop'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f125'; +var svgPathData = 'M488 352h-40V109.25l59.31-59.31c6.25-6.25 6.25-16.38 0-22.63L484.69 4.69c-6.25-6.25-16.38-6.25-22.63 0L402.75 64H192v96h114.75L160 306.75V24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v264c0 13.25 10.75 24 24 24h232v-96H205.25L352 205.25V488c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCrop = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCropAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCropAlt.d.ts new file mode 100644 index 0000000000..b0d6bb1695 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCropAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCropAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCropAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCropAlt.js new file mode 100644 index 0000000000..b9d74ead77 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCropAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'crop-alt'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f565'; +var svgPathData = 'M488 352h-40V96c0-17.67-14.33-32-32-32H192v96h160v328c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24zM160 24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v256c0 17.67 14.33 32 32 32h224v-96H160V24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCropAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrosshairs.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrosshairs.d.ts new file mode 100644 index 0000000000..2174a17742 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrosshairs.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCrosshairs: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrosshairs.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrosshairs.js new file mode 100644 index 0000000000..5c6fbccd1f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrosshairs.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'crosshairs'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f05b'; +var svgPathData = 'M500 224h-30.364C455.724 130.325 381.675 56.276 288 42.364V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v30.364C130.325 56.276 56.276 130.325 42.364 224H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h30.364C56.276 381.675 130.325 455.724 224 469.636V500c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-30.364C381.675 455.724 455.724 381.675 469.636 288H500c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zM288 404.634V364c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40.634C165.826 392.232 119.783 346.243 107.366 288H148c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40.634C119.768 165.826 165.757 119.783 224 107.366V148c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40.634C346.174 119.768 392.217 165.757 404.634 224H364c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40.634C392.232 346.174 346.243 392.217 288 404.634zM288 256c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCrosshairs = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrow.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrow.d.ts new file mode 100644 index 0000000000..b774610d80 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrow.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCrow: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrow.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrow.js new file mode 100644 index 0000000000..e3cba461df --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrow.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'crow'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f520'; +var svgPathData = 'M544 32h-16.36C513.04 12.68 490.09 0 464 0c-44.18 0-80 35.82-80 80v20.98L12.09 393.57A30.216 30.216 0 0 0 0 417.74c0 22.46 23.64 37.07 43.73 27.03L165.27 384h96.49l44.41 120.1c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38L312.94 384H352c1.91 0 3.76-.23 5.66-.29l44.51 120.38c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38l-41.24-111.53C485.74 352.8 544 279.26 544 192v-80l96-16c0-35.35-42.98-64-96-64zm-80 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCrow = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrown.d.ts new file mode 100644 index 0000000000..e0d779f1a4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrown.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCrown: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrown.js new file mode 100644 index 0000000000..1e6fa1f6be --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCrown.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'crown'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f521'; +var svgPathData = 'M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.4 7.7-.8L128 416h384l72.3-192.8c2.5.4 5.1.8 7.7.8 26.5 0 48-21.5 48-48s-21.5-48-48-48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCrown = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCube.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCube.d.ts new file mode 100644 index 0000000000..9c54bb61e1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCube.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCube: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCube.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCube.js new file mode 100644 index 0000000000..b84c0b91b3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCube.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'cube'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1b2'; +var svgPathData = 'M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCube = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCubes.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCubes.d.ts new file mode 100644 index 0000000000..549d1a235c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCubes.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCubes: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCubes.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCubes.js new file mode 100644 index 0000000000..ac46563d6c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCubes.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'cubes'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1b3'; +var svgPathData = 'M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCubes = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCut.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCut.d.ts new file mode 100644 index 0000000000..57612d6457 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCut.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faCut: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCut.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCut.js new file mode 100644 index 0000000000..2d90f026c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faCut.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'cut'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0c4'; +var svgPathData = 'M278.06 256L444.48 89.57c4.69-4.69 4.69-12.29 0-16.97-32.8-32.8-85.99-32.8-118.79 0L210.18 188.12l-24.86-24.86c4.31-10.92 6.68-22.81 6.68-35.26 0-53.02-42.98-96-96-96S0 74.98 0 128s42.98 96 96 96c4.54 0 8.99-.32 13.36-.93L142.29 256l-32.93 32.93c-4.37-.61-8.83-.93-13.36-.93-53.02 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96c0-12.45-2.37-24.34-6.68-35.26l24.86-24.86L325.69 439.4c32.8 32.8 85.99 32.8 118.79 0 4.69-4.68 4.69-12.28 0-16.97L278.06 256zM96 160c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32zm0 256c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faCut = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDatabase.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDatabase.d.ts new file mode 100644 index 0000000000..c6679316eb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDatabase.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDatabase: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDatabase.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDatabase.js new file mode 100644 index 0000000000..e86aa3972f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDatabase.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'database'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f1c0'; +var svgPathData = 'M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDatabase = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDeaf.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDeaf.d.ts new file mode 100644 index 0000000000..d5f0aff3b5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDeaf.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDeaf: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDeaf.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDeaf.js new file mode 100644 index 0000000000..002a27b926 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDeaf.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'deaf'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2a4'; +var svgPathData = 'M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm268.485-52.201L480.2 3.515c-4.687-4.686-12.284-4.686-16.971 0L376.2 90.544c-4.686 4.686-4.686 12.284 0 16.971l28.285 28.285c4.686 4.686 12.284 4.686 16.97 0l87.03-87.029c4.687-4.688 4.687-12.286 0-16.972zM168.97 314.745c-4.686-4.686-12.284-4.686-16.97 0L3.515 463.23c-4.686 4.686-4.686 12.284 0 16.971L31.8 508.485c4.687 4.686 12.284 4.686 16.971 0L197.256 360c4.686-4.686 4.686-12.284 0-16.971l-28.286-28.284z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDeaf = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDesktop.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDesktop.d.ts new file mode 100644 index 0000000000..894435a6fe --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDesktop.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDesktop: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDesktop.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDesktop.js new file mode 100644 index 0000000000..54787006fe --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDesktop.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'desktop'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f108'; +var svgPathData = 'M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDesktop = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiagnoses.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiagnoses.d.ts new file mode 100644 index 0000000000..f88cea90ab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiagnoses.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDiagnoses: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiagnoses.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiagnoses.js new file mode 100644 index 0000000000..b231651577 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiagnoses.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'diagnoses'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f470'; +var svgPathData = 'M496 256c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm-176-80c48.5 0 88-39.5 88-88S368.5 0 320 0s-88 39.5-88 88 39.5 88 88 88zM59.8 364c10.2 15.3 29.3 17.8 42.9 9.8 16.2-9.6 56.2-31.7 105.3-48.6V416h224v-90.7c49.1 16.8 89.1 39 105.3 48.6 13.6 8 32.7 5.3 42.9-9.8l17.8-26.7c8.8-13.2 7.6-34.6-10-45.1-11.9-7.1-29.7-17-51.1-27.4-28.1 46.1-99.4 17.8-87.7-35.1C409.3 217.2 365.1 208 320 208c-57 0-112.9 14.5-160 32.2-.2 40.2-47.6 63.3-79.2 36-11.2 6-21.3 11.6-28.7 16-17.6 10.5-18.8 31.8-10 45.1L59.8 364zM368 344c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-160 8c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm512 192H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDiagnoses = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDice.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDice.d.ts new file mode 100644 index 0000000000..d2f5927986 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDice.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDice: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDice.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDice.js new file mode 100644 index 0000000000..c2a47ff998 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDice.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'dice'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f522'; +var svgPathData = 'M592 192H473.26c12.69 29.59 7.12 65.2-17 89.32L320 417.58V464c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48V240c0-26.51-21.49-48-48-48zM480 376c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm-46.37-186.7L258.7 14.37c-19.16-19.16-50.23-19.16-69.39 0L14.37 189.3c-19.16 19.16-19.16 50.23 0 69.39L189.3 433.63c19.16 19.16 50.23 19.16 69.39 0L433.63 258.7c19.16-19.17 19.16-50.24 0-69.4zM96 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDice = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceFive.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceFive.d.ts new file mode 100644 index 0000000000..39f8b1a662 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceFive.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDiceFive: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceFive.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceFive.js new file mode 100644 index 0000000000..33402ec075 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceFive.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'dice-five'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f523'; +var svgPathData = 'M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDiceFive = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceFour.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceFour.d.ts new file mode 100644 index 0000000000..f5b430af76 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceFour.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDiceFour: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceFour.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceFour.js new file mode 100644 index 0000000000..d24d071205 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceFour.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'dice-four'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f524'; +var svgPathData = 'M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDiceFour = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceOne.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceOne.d.ts new file mode 100644 index 0000000000..5f58b3bcc3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceOne.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDiceOne: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceOne.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceOne.js new file mode 100644 index 0000000000..0d0f6b3a8a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceOne.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'dice-one'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f525'; +var svgPathData = 'M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM224 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDiceOne = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceSix.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceSix.d.ts new file mode 100644 index 0000000000..09136f474a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceSix.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDiceSix: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceSix.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceSix.js new file mode 100644 index 0000000000..0c7ddd52db --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceSix.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'dice-six'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f526'; +var svgPathData = 'M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDiceSix = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceThree.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceThree.d.ts new file mode 100644 index 0000000000..cd2c86cff9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceThree.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDiceThree: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceThree.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceThree.js new file mode 100644 index 0000000000..b5dc99c275 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceThree.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'dice-three'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f527'; +var svgPathData = 'M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDiceThree = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceTwo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceTwo.d.ts new file mode 100644 index 0000000000..180c74980f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceTwo.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDiceTwo: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceTwo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceTwo.js new file mode 100644 index 0000000000..ce2d70b522 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDiceTwo.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'dice-two'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f528'; +var svgPathData = 'M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDiceTwo = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDigitalTachograph.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDigitalTachograph.d.ts new file mode 100644 index 0000000000..a80f224921 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDigitalTachograph.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDigitalTachograph: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDigitalTachograph.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDigitalTachograph.js new file mode 100644 index 0000000000..6820a30b2f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDigitalTachograph.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'digital-tachograph'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f566'; +var svgPathData = 'M608 96H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128c0-17.67-14.33-32-32-32zM304 352c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8zM72 288v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H80c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm40-64c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-48c0-8.84 7.16-16 16-16h208c8.84 0 16 7.16 16 16v48zm272 128c0 4.42-3.58 8-8 8H344c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDigitalTachograph = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDivide.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDivide.d.ts new file mode 100644 index 0000000000..6cab0ff843 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDivide.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDivide: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDivide.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDivide.js new file mode 100644 index 0000000000..3854a3aec7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDivide.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'divide'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f529'; +var svgPathData = 'M224 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm0-192c35.35 0 64-28.65 64-64s-28.65-64-64-64-64 28.65-64 64 28.65 64 64 64zm192 48H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDivide = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDizzy.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDizzy.d.ts new file mode 100644 index 0000000000..c78b0d3190 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDizzy.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDizzy: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDizzy.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDizzy.js new file mode 100644 index 0000000000..ed7e825367 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDizzy.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'dizzy'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f567'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-96 206.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L174.6 192l28.7 28.7c15.2 15.2-7.9 37.4-22.6 22.6L152 214.6zM248 416c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm147.3-195.3c15.2 15.2-7.9 37.4-22.6 22.6L344 214.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L366.6 192l28.7 28.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDizzy = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDna.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDna.d.ts new file mode 100644 index 0000000000..73d080ec45 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDna.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDna: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDna.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDna.js new file mode 100644 index 0000000000..b804bc05f7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDna.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'dna'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f471'; +var svgPathData = 'M.1 494.1c-1.1 9.5 6.3 17.8 15.9 17.8l32.3.1c8.1 0 14.9-5.9 16-13.9.7-4.9 1.8-11.1 3.4-18.1H380c1.6 6.9 2.9 13.2 3.5 18.1 1.1 8 7.9 14 16 13.9l32.3-.1c9.6 0 17.1-8.3 15.9-17.8-4.6-37.9-25.6-129-118.9-207.7-17.6 12.4-37.1 24.2-58.5 35.4 6.2 4.6 11.4 9.4 17 14.2H159.7c21.3-18.1 47-35.6 78.7-51.4C410.5 199.1 442.1 65.8 447.9 17.9 449 8.4 441.6.1 432 .1L399.6 0c-8.1 0-14.9 5.9-16 13.9-.7 4.9-1.8 11.1-3.4 18.1H67.8c-1.6-7-2.7-13.1-3.4-18.1-1.1-8-7.9-14-16-13.9L16.1.1C6.5.1-1 8.4.1 17.9 5.3 60.8 31.4 171.8 160 256 31.5 340.2 5.3 451.2.1 494.1zM224 219.6c-25.1-13.7-46.4-28.4-64.3-43.6h128.5c-17.8 15.2-39.1 30-64.2 43.6zM355.1 96c-5.8 10.4-12.8 21.1-21 32H114c-8.3-10.9-15.3-21.6-21-32h262.1zM92.9 416c5.8-10.4 12.8-21.1 21-32h219.4c8.3 10.9 15.4 21.6 21.2 32H92.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDna = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDollarSign.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDollarSign.d.ts new file mode 100644 index 0000000000..43db21bd52 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDollarSign.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDollarSign: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDollarSign.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDollarSign.js new file mode 100644 index 0000000000..d653850d46 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDollarSign.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'dollar-sign'; +var width = 288; +var height = 512; +var ligatures = []; +var unicode = 'f155'; +var svgPathData = 'M209.2 233.4l-108-31.6C88.7 198.2 80 186.5 80 173.5c0-16.3 13.2-29.5 29.5-29.5h66.3c12.2 0 24.2 3.7 34.2 10.5 6.1 4.1 14.3 3.1 19.5-2l34.8-34c7.1-6.9 6.1-18.4-1.8-24.5C238 74.8 207.4 64.1 176 64V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C45.8 64-5.4 118.7.5 183.6c4.2 46.1 39.4 83.6 83.8 96.6l102.5 30c12.5 3.7 21.2 15.3 21.2 28.3 0 16.3-13.2 29.5-29.5 29.5h-66.3C100 368 88 364.3 78 357.5c-6.1-4.1-14.3-3.1-19.5 2l-34.8 34c-7.1 6.9-6.1 18.4 1.8 24.5 24.5 19.2 55.1 29.9 86.5 30v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48.2c46.6-.9 90.3-28.6 105.7-72.7 21.5-61.6-14.6-124.8-72.5-141.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDollarSign = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDolly.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDolly.d.ts new file mode 100644 index 0000000000..14f71dc75c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDolly.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDolly: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDolly.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDolly.js new file mode 100644 index 0000000000..a9835a6e01 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDolly.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'dolly'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f472'; +var svgPathData = 'M294.2 277.7c18 5 34.7 13.4 49.5 24.7l161.5-53.8c8.4-2.8 12.9-11.9 10.1-20.2L454.9 47.2c-2.8-8.4-11.9-12.9-20.2-10.1l-61.1 20.4 33.1 99.4L346 177l-33.1-99.4-61.6 20.5c-8.4 2.8-12.9 11.9-10.1 20.2l53 159.4zm281 48.7L565 296c-2.8-8.4-11.9-12.9-20.2-10.1l-213.5 71.2c-17.2-22-43.6-36.4-73.5-37L158.4 21.9C154 8.8 141.8 0 128 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h88.9l92.2 276.7c-26.1 20.4-41.7 53.6-36 90.5 6.1 39.4 37.9 72.3 77.3 79.2 60.2 10.7 112.3-34.8 113.4-92.6l213.3-71.2c8.3-2.8 12.9-11.8 10.1-20.2zM256 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDolly = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDollyFlatbed.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDollyFlatbed.d.ts new file mode 100644 index 0000000000..c3c1ba047d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDollyFlatbed.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDollyFlatbed: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDollyFlatbed.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDollyFlatbed.js new file mode 100644 index 0000000000..a8c4df27de --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDollyFlatbed.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'dolly-flatbed'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f474'; +var svgPathData = 'M208 320h384c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H448v128l-48-32-48 32V32H208c-8.8 0-16 7.2-16 16v256c0 8.8 7.2 16 16 16zm416 64H128V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h82.9c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H451c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H624c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDollyFlatbed = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDonate.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDonate.d.ts new file mode 100644 index 0000000000..759bf0d4ce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDonate.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDonate: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDonate.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDonate.js new file mode 100644 index 0000000000..49cf3a4b59 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDonate.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'donate'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f4b9'; +var svgPathData = 'M256 416c114.9 0 208-93.1 208-208S370.9 0 256 0 48 93.1 48 208s93.1 208 208 208zM233.8 97.4V80.6c0-9.2 7.4-16.6 16.6-16.6h11.1c9.2 0 16.6 7.4 16.6 16.6v17c15.5.8 30.5 6.1 43 15.4 5.6 4.1 6.2 12.3 1.2 17.1L306 145.6c-3.8 3.7-9.5 3.8-14 1-5.4-3.4-11.4-5.1-17.8-5.1h-38.9c-9 0-16.3 8.2-16.3 18.3 0 8.2 5 15.5 12.1 17.6l62.3 18.7c25.7 7.7 43.7 32.4 43.7 60.1 0 34-26.4 61.5-59.1 62.4v16.8c0 9.2-7.4 16.6-16.6 16.6h-11.1c-9.2 0-16.6-7.4-16.6-16.6v-17c-15.5-.8-30.5-6.1-43-15.4-5.6-4.1-6.2-12.3-1.2-17.1l16.3-15.5c3.8-3.7 9.5-3.8 14-1 5.4 3.4 11.4 5.1 17.8 5.1h38.9c9 0 16.3-8.2 16.3-18.3 0-8.2-5-15.5-12.1-17.6l-62.3-18.7c-25.7-7.7-43.7-32.4-43.7-60.1.1-34 26.4-61.5 59.1-62.4zM480 352h-32.5c-19.6 26-44.6 47.7-73 64h63.8c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8h63.8c-28.4-16.3-53.3-38-73-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDonate = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDoorClosed.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDoorClosed.d.ts new file mode 100644 index 0000000000..48377f67e1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDoorClosed.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDoorClosed: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDoorClosed.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDoorClosed.js new file mode 100644 index 0000000000..6a14f784bc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDoorClosed.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'door-closed'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f52a'; +var svgPathData = 'M624 448H512V50.8C512 22.78 490.47 0 464 0H175.99c-26.47 0-48 22.78-48 50.8V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM415.99 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32c.01 17.67-14.32 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDoorClosed = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDoorOpen.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDoorOpen.d.ts new file mode 100644 index 0000000000..2b8a600738 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDoorOpen.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDoorOpen: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDoorOpen.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDoorOpen.js new file mode 100644 index 0000000000..77f2bf8618 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDoorOpen.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'door-open'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f52b'; +var svgPathData = 'M624 448h-80V113.45C544 86.19 522.47 64 496 64H384v64h96v384h144c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM312.24 1.01l-192 49.74C105.99 54.44 96 67.7 96 82.92V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h336V33.18c0-21.58-19.56-37.41-39.76-32.17zM264 288c-13.25 0-24-14.33-24-32s10.75-32 24-32 24 14.33 24 32-10.75 32-24 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDoorOpen = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDotCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDotCircle.d.ts new file mode 100644 index 0000000000..f4d84dd452 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDotCircle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDotCircle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDotCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDotCircle.js new file mode 100644 index 0000000000..0766631b7f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDotCircle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'dot-circle'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f192'; +var svgPathData = 'M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDotCircle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDove.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDove.d.ts new file mode 100644 index 0000000000..d7e62b104b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDove.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDove: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDove.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDove.js new file mode 100644 index 0000000000..019d3fa95b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDove.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'dove'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f4ba'; +var svgPathData = 'M288 167.2v-28.1c-28.2-36.3-47.1-79.3-54.1-125.2-2.1-13.5-19-18.8-27.8-8.3-21.1 24.9-37.7 54.1-48.9 86.5 34.2 38.3 80 64.6 130.8 75.1zM400 64c-44.2 0-80 35.9-80 80.1v59.4C215.6 197.3 127 133 87 41.8c-5.5-12.5-23.2-13.2-29-.9C41.4 76 32 115.2 32 156.6c0 70.8 34.1 136.9 85.1 185.9 13.2 12.7 26.1 23.2 38.9 32.8l-143.9 36C1.4 414-3.4 426.4 2.6 435.7 20 462.6 63 508.2 155.8 512c8 .3 16-2.6 22.1-7.9l65.2-56.1H320c88.4 0 160-71.5 160-159.9V128l32-64H400zm0 96.1c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDove = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDownload.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDownload.d.ts new file mode 100644 index 0000000000..643371bf00 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDownload.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDownload: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDownload.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDownload.js new file mode 100644 index 0000000000..46608034e8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDownload.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'download'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f019'; +var svgPathData = 'M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDownload = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDraftingCompass.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDraftingCompass.d.ts new file mode 100644 index 0000000000..6c91e9aed7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDraftingCompass.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDraftingCompass: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDraftingCompass.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDraftingCompass.js new file mode 100644 index 0000000000..adddb7abd6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDraftingCompass.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'drafting-compass'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f568'; +var svgPathData = 'M457.01 344.42c-25.05 20.33-52.63 37.18-82.54 49.05l54.38 94.19 53.95 23.04c9.81 4.19 20.89-2.21 22.17-12.8l7.02-58.25-54.98-95.23zm42.49-94.56c4.86-7.67 1.89-17.99-6.05-22.39l-28.07-15.57c-7.48-4.15-16.61-1.46-21.26 5.72C403.01 281.15 332.25 320 256 320c-23.93 0-47.23-4.25-69.41-11.53l67.36-116.68c.7.02 1.34.21 2.04.21s1.35-.19 2.04-.21l51.09 88.5c31.23-8.96 59.56-25.75 82.61-48.92l-51.79-89.71C347.39 128.03 352 112.63 352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96c0 16.63 4.61 32.03 12.05 45.66l-68.3 118.31c-12.55-11.61-23.96-24.59-33.68-39-4.79-7.1-13.97-9.62-21.38-5.33l-27.75 16.07c-7.85 4.54-10.63 14.9-5.64 22.47 15.57 23.64 34.69 44.21 55.98 62.02L0 439.66l7.02 58.25c1.28 10.59 12.36 16.99 22.17 12.8l53.95-23.04 70.8-122.63C186.13 377.28 220.62 384 256 384c99.05 0 190.88-51.01 243.5-134.14zM256 64c17.67 0 32 14.33 32 32s-14.33 32-32 32-32-14.33-32-32 14.33-32 32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDraftingCompass = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDrum.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDrum.d.ts new file mode 100644 index 0000000000..78a0a2441b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDrum.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDrum: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDrum.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDrum.js new file mode 100644 index 0000000000..f6c442fba5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDrum.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'drum'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f569'; +var svgPathData = 'M458.08 120.88l102.39-61.43c15.16-9.09 20.06-28.75 10.97-43.91C562.34.39 542.7-4.53 527.53 4.57l-160.69 96.41A629.32 629.32 0 0 0 288 96C128.94 96 0 153.31 0 224v160.83c0 30.46 24.03 58.4 64 80.37v-96.37c0-17.6 14.4-32 32-32s32 14.4 32 32v122.41c37.4 11.13 81 18.44 128 20.75V400.84c0-17.6 14.4-32 32-32s32 14.4 32 32V512c47-2.31 90.6-9.62 128-20.75V368.84c0-17.6 14.4-32 32-32s32 14.4 32 32v96.37c39.97-21.97 64-49.91 64-80.37V224.01c-.01-42.38-46.54-79.84-117.92-103.13zM288 304c-132.55 0-240-35.82-240-80s107.45-80 240-80c2.34 0 4.62.1 6.94.12l-87.41 52.44c-15.16 9.09-20.06 28.75-10.97 43.91 9.56 15.93 29.51 19.61 43.91 10.97l162.71-97.62C477.55 167.41 528 193.74 528 224.01 528 268.19 420.54 304 288 304z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDrum = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDrumSteelpan.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDrumSteelpan.d.ts new file mode 100644 index 0000000000..a04864b2e4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDrumSteelpan.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDrumSteelpan: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDrumSteelpan.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDrumSteelpan.js new file mode 100644 index 0000000000..2a19bb1e3b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDrumSteelpan.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'drum-steelpan'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f56a'; +var svgPathData = 'M288 32C128.94 32 0 89.31 0 160v192c0 70.69 128.94 128 288 128s288-57.31 288-128V160c0-70.69-128.94-128-288-128zm-82.99 158.36c-4.45 16.61-14.54 30.57-28.31 40.48C100.23 217.46 48 190.78 48 160c0-30.16 50.11-56.39 124.04-70.03l25.6 44.34c9.86 17.09 12.48 36.99 7.37 56.05zM288 240c-21.08 0-41.41-1-60.89-2.7 8.06-26.13 32.15-45.3 60.89-45.3s52.83 19.17 60.89 45.3C329.41 239 309.08 240 288 240zm64-144c0 35.29-28.71 64-64 64s-64-28.71-64-64V82.96c20.4-1.88 41.8-2.96 64-2.96s43.6 1.08 64 2.96V96zm46.93 134.9c-13.81-9.91-23.94-23.9-28.4-40.54-5.11-19.06-2.49-38.96 7.38-56.04l25.65-44.42C477.72 103.5 528 129.79 528 160c0 30.83-52.4 57.54-129.07 70.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDrumSteelpan = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDumbbell.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDumbbell.d.ts new file mode 100644 index 0000000000..ad70197df6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDumbbell.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faDumbbell: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDumbbell.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDumbbell.js new file mode 100644 index 0000000000..af6e63be9f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faDumbbell.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'dumbbell'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f44b'; +var svgPathData = 'M104 96H56c-13.3 0-24 10.7-24 24v104H8c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h24v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm528 128h-24V120c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v272c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h24c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM456 32h-48c-13.3 0-24 10.7-24 24v168H256V56c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v400c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h128v168c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faDumbbell = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEdit.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEdit.d.ts new file mode 100644 index 0000000000..86716af27f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEdit.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEdit: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEdit.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEdit.js new file mode 100644 index 0000000000..67c8512eac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEdit.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'edit'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f044'; +var svgPathData = 'M402.6 83.2l90.2 90.2c3.8 3.8 3.8 10 0 13.8L274.4 405.6l-92.8 10.3c-12.4 1.4-22.9-9.1-21.5-21.5l10.3-92.8L388.8 83.2c3.8-3.8 10-3.8 13.8 0zm162-22.9l-48.8-48.8c-15.2-15.2-39.9-15.2-55.2 0l-35.4 35.4c-3.8 3.8-3.8 10 0 13.8l90.2 90.2c3.8 3.8 10 3.8 13.8 0l35.4-35.4c15.2-15.3 15.2-40 0-55.2zM384 346.2V448H64V128h229.8c3.2 0 6.2-1.3 8.5-3.5l40-40c7.6-7.6 2.2-20.5-8.5-20.5H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V306.2c0-10.7-12.9-16-20.5-8.5l-40 40c-2.2 2.3-3.5 5.3-3.5 8.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEdit = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEject.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEject.d.ts new file mode 100644 index 0000000000..de43becb22 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEject.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEject: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEject.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEject.js new file mode 100644 index 0000000000..6e0d46ef40 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEject.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'eject'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f052'; +var svgPathData = 'M448 384v64c0 17.673-14.327 32-32 32H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h384c17.673 0 32 14.327 32 32zM48.053 320h351.886c41.651 0 63.581-49.674 35.383-80.435L259.383 47.558c-19.014-20.743-51.751-20.744-70.767 0L12.67 239.565C-15.475 270.268 6.324 320 48.053 320z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEject = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEllipsisH.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEllipsisH.d.ts new file mode 100644 index 0000000000..b182cf849b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEllipsisH.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEllipsisH: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEllipsisH.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEllipsisH.js new file mode 100644 index 0000000000..15f5e7ec7a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEllipsisH.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'ellipsis-h'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f141'; +var svgPathData = 'M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEllipsisH = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEllipsisV.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEllipsisV.d.ts new file mode 100644 index 0000000000..c0db3c493b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEllipsisV.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEllipsisV: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEllipsisV.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEllipsisV.js new file mode 100644 index 0000000000..0412085a60 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEllipsisV.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'ellipsis-v'; +var width = 192; +var height = 512; +var ligatures = []; +var unicode = 'f142'; +var svgPathData = 'M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEllipsisV = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEnvelope.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEnvelope.d.ts new file mode 100644 index 0000000000..77b30531f0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEnvelope.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEnvelope: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEnvelope.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEnvelope.js new file mode 100644 index 0000000000..6537843eba --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEnvelope.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'envelope'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0e0'; +var svgPathData = 'M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEnvelope = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEnvelopeOpen.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEnvelopeOpen.d.ts new file mode 100644 index 0000000000..cde3384d19 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEnvelopeOpen.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEnvelopeOpen: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEnvelopeOpen.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEnvelopeOpen.js new file mode 100644 index 0000000000..f6dd1a5e3e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEnvelopeOpen.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'envelope-open'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2b6'; +var svgPathData = 'M512 464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V200.724a48 48 0 0 1 18.387-37.776c24.913-19.529 45.501-35.365 164.2-121.511C199.412 29.17 232.797-.347 256 .003c23.198-.354 56.596 29.172 73.413 41.433 118.687 86.137 139.303 101.995 164.2 121.512A48 48 0 0 1 512 200.724V464zm-65.666-196.605c-2.563-3.728-7.7-4.595-11.339-1.907-22.845 16.873-55.462 40.705-105.582 77.079-16.825 12.266-50.21 41.781-73.413 41.43-23.211.344-56.559-29.143-73.413-41.43-50.114-36.37-82.734-60.204-105.582-77.079-3.639-2.688-8.776-1.821-11.339 1.907l-9.072 13.196a7.998 7.998 0 0 0 1.839 10.967c22.887 16.899 55.454 40.69 105.303 76.868 20.274 14.781 56.524 47.813 92.264 47.573 35.724.242 71.961-32.771 92.263-47.573 49.85-36.179 82.418-59.97 105.303-76.868a7.998 7.998 0 0 0 1.839-10.967l-9.071-13.196z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEnvelopeOpen = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEnvelopeSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEnvelopeSquare.d.ts new file mode 100644 index 0000000000..7cff696d67 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEnvelopeSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEnvelopeSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEnvelopeSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEnvelopeSquare.js new file mode 100644 index 0000000000..c1dd872f7f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEnvelopeSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'envelope-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f199'; +var svgPathData = 'M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM178.117 262.104C87.429 196.287 88.353 196.121 64 177.167V152c0-13.255 10.745-24 24-24h272c13.255 0 24 10.745 24 24v25.167c-24.371 18.969-23.434 19.124-114.117 84.938-10.5 7.655-31.392 26.12-45.883 25.894-14.503.218-35.367-18.227-45.883-25.895zM384 217.775V360c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V217.775c13.958 10.794 33.329 25.236 95.303 70.214 14.162 10.341 37.975 32.145 64.694 32.01 26.887.134 51.037-22.041 64.72-32.025 61.958-44.965 81.325-59.406 95.283-70.199z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEnvelopeSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEquals.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEquals.d.ts new file mode 100644 index 0000000000..3ab0740aa7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEquals.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEquals: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEquals.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEquals.js new file mode 100644 index 0000000000..29d484ce90 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEquals.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'equals'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f52c'; +var svgPathData = 'M416 304H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32zm0-192H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEquals = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEraser.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEraser.d.ts new file mode 100644 index 0000000000..cf4f51d6de --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEraser.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEraser: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEraser.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEraser.js new file mode 100644 index 0000000000..cdfe527eb7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEraser.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'eraser'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f12d'; +var svgPathData = 'M497.941 273.941c18.745-18.745 18.745-49.137 0-67.882l-160-160c-18.745-18.745-49.136-18.746-67.883 0l-256 256c-18.745 18.745-18.745 49.137 0 67.882l96 96A48.004 48.004 0 0 0 144 480h356c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H355.883l142.058-142.059zm-302.627-62.627l137.373 137.373L265.373 416H150.628l-80-80 124.686-124.686z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEraser = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEuroSign.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEuroSign.d.ts new file mode 100644 index 0000000000..90a6799d57 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEuroSign.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEuroSign: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEuroSign.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEuroSign.js new file mode 100644 index 0000000000..6538431c86 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEuroSign.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'euro-sign'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f153'; +var svgPathData = 'M310.706 413.765c-1.314-6.63-7.835-10.872-14.424-9.369-10.692 2.439-27.422 5.413-45.426 5.413-56.763 0-101.929-34.79-121.461-85.449h113.689a12 12 0 0 0 11.708-9.369l6.373-28.36c1.686-7.502-4.019-14.631-11.708-14.631H115.22c-1.21-14.328-1.414-28.287.137-42.245H261.95a12 12 0 0 0 11.723-9.434l6.512-29.755c1.638-7.484-4.061-14.566-11.723-14.566H130.184c20.633-44.991 62.69-75.03 117.619-75.03 14.486 0 28.564 2.25 37.851 4.145 6.216 1.268 12.347-2.498 14.002-8.623l11.991-44.368c1.822-6.741-2.465-13.616-9.326-14.917C290.217 34.912 270.71 32 249.635 32 152.451 32 74.03 92.252 45.075 176H12c-6.627 0-12 5.373-12 12v29.755c0 6.627 5.373 12 12 12h21.569c-1.009 13.607-1.181 29.287-.181 42.245H12c-6.627 0-12 5.373-12 12v28.36c0 6.627 5.373 12 12 12h30.114C67.139 414.692 145.264 480 249.635 480c26.301 0 48.562-4.544 61.101-7.788 6.167-1.595 10.027-7.708 8.788-13.957l-8.818-44.49z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEuroSign = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExchangeAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExchangeAlt.d.ts new file mode 100644 index 0000000000..e6e986a610 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExchangeAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faExchangeAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExchangeAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExchangeAlt.js new file mode 100644 index 0000000000..b1c111716c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExchangeAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'exchange-alt'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f362'; +var svgPathData = 'M0 168v-16c0-13.255 10.745-24 24-24h360V80c0-21.367 25.899-32.042 40.971-16.971l80 80c9.372 9.373 9.372 24.569 0 33.941l-80 80C409.956 271.982 384 261.456 384 240v-48H24c-13.255 0-24-10.745-24-24zm488 152H128v-48c0-21.314-25.862-32.08-40.971-16.971l-80 80c-9.372 9.373-9.372 24.569 0 33.941l80 80C102.057 463.997 128 453.437 128 432v-48h360c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faExchangeAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExclamation.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExclamation.d.ts new file mode 100644 index 0000000000..cd9a0d3c48 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExclamation.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faExclamation: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExclamation.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExclamation.js new file mode 100644 index 0000000000..4a136d282a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExclamation.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'exclamation'; +var width = 192; +var height = 512; +var ligatures = []; +var unicode = 'f12a'; +var svgPathData = 'M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faExclamation = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExclamationCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExclamationCircle.d.ts new file mode 100644 index 0000000000..ec4215c3db --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExclamationCircle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faExclamationCircle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExclamationCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExclamationCircle.js new file mode 100644 index 0000000000..313a1a5316 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExclamationCircle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'exclamation-circle'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f06a'; +var svgPathData = 'M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faExclamationCircle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExclamationTriangle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExclamationTriangle.d.ts new file mode 100644 index 0000000000..206f86496e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExclamationTriangle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faExclamationTriangle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExclamationTriangle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExclamationTriangle.js new file mode 100644 index 0000000000..d6aed0869d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExclamationTriangle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'exclamation-triangle'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f071'; +var svgPathData = 'M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faExclamationTriangle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExpand.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExpand.d.ts new file mode 100644 index 0000000000..4cc1734249 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExpand.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faExpand: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExpand.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExpand.js new file mode 100644 index 0000000000..79754ab0e1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExpand.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'expand'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f065'; +var svgPathData = 'M0 180V56c0-13.3 10.7-24 24-24h124c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H64v84c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12zM288 44v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V56c0-13.3-10.7-24-24-24H300c-6.6 0-12 5.4-12 12zm148 276h-40c-6.6 0-12 5.4-12 12v84h-84c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24V332c0-6.6-5.4-12-12-12zM160 468v-40c0-6.6-5.4-12-12-12H64v-84c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v124c0 13.3 10.7 24 24 24h124c6.6 0 12-5.4 12-12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faExpand = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExpandArrowsAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExpandArrowsAlt.d.ts new file mode 100644 index 0000000000..8c7e7c6df7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExpandArrowsAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faExpandArrowsAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExpandArrowsAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExpandArrowsAlt.js new file mode 100644 index 0000000000..388bd2c5dd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExpandArrowsAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'expand-arrows-alt'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f31e'; +var svgPathData = 'M448.1 344v112c0 13.3-10.7 24-24 24h-112c-21.4 0-32.1-25.9-17-41l36.2-36.2L224 295.6 116.8 402.9 153 439c15.1 15.1 4.4 41-17 41H24c-13.3 0-24-10.7-24-24V344c0-21.4 25.9-32.1 41-17l36.2 36.2L184.5 256 77.2 148.7 41 185c-15.1 15.1-41 4.4-41-17V56c0-13.3 10.7-24 24-24h112c21.4 0 32.1 25.9 17 41l-36.2 36.2L224 216.4l107.3-107.3L295.1 73c-15.1-15.1-4.4-41 17-41h112c13.3 0 24 10.7 24 24v112c0 21.4-25.9 32.1-41 17l-36.2-36.2L263.6 256l107.3 107.3 36.2-36.2c15.1-15.2 41-4.5 41 16.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faExpandArrowsAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExternalLinkAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExternalLinkAlt.d.ts new file mode 100644 index 0000000000..7a6a4136a1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExternalLinkAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faExternalLinkAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExternalLinkAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExternalLinkAlt.js new file mode 100644 index 0000000000..ac138f4b42 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExternalLinkAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'external-link-alt'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f35d'; +var svgPathData = 'M576 24v127.984c0 21.461-25.96 31.98-40.971 16.971l-35.707-35.709-243.523 243.523c-9.373 9.373-24.568 9.373-33.941 0l-22.627-22.627c-9.373-9.373-9.373-24.569 0-33.941L442.756 76.676l-35.703-35.705C391.982 25.9 402.656 0 424.024 0H552c13.255 0 24 10.745 24 24zM407.029 270.794l-16 16A23.999 23.999 0 0 0 384 303.765V448H64V128h264a24.003 24.003 0 0 0 16.97-7.029l16-16C376.089 89.851 365.381 64 344 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V287.764c0-21.382-25.852-32.09-40.971-16.97z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faExternalLinkAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExternalLinkSquareAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExternalLinkSquareAlt.d.ts new file mode 100644 index 0000000000..a2f1b39c68 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExternalLinkSquareAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faExternalLinkSquareAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExternalLinkSquareAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExternalLinkSquareAlt.js new file mode 100644 index 0000000000..19a3189be1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faExternalLinkSquareAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'external-link-square-alt'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f360'; +var svgPathData = 'M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-88 16H248.029c-21.313 0-32.08 25.861-16.971 40.971l31.984 31.987L67.515 364.485c-4.686 4.686-4.686 12.284 0 16.971l31.029 31.029c4.687 4.686 12.285 4.686 16.971 0l195.526-195.526 31.988 31.991C358.058 263.977 384 253.425 384 231.979V120c0-13.255-10.745-24-24-24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faExternalLinkSquareAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEye.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEye.d.ts new file mode 100644 index 0000000000..cae629c5cd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEye.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEye: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEye.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEye.js new file mode 100644 index 0000000000..257a975d07 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEye.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'eye'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f06e'; +var svgPathData = 'M569.354 231.631C512.969 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-75.162 0-136-60.827-136-136 0-75.162 60.826-136 136-136 75.162 0 136 60.826 136 136 0 75.162-60.826 136-136 136zm104-136c0 57.438-46.562 104-104 104s-104-46.562-104-104c0-17.708 4.431-34.379 12.236-48.973l-.001.032c0 23.651 19.173 42.823 42.824 42.823s42.824-19.173 42.824-42.823c0-23.651-19.173-42.824-42.824-42.824l-.032.001C253.621 156.431 270.292 152 288 152c57.438 0 104 46.562 104 104z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEye = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEyeDropper.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEyeDropper.d.ts new file mode 100644 index 0000000000..24dcb1f4b8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEyeDropper.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEyeDropper: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEyeDropper.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEyeDropper.js new file mode 100644 index 0000000000..2733c0c67a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEyeDropper.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'eye-dropper'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1fb'; +var svgPathData = 'M50.75 333.25c-12 12-18.75 28.28-18.75 45.26V424L0 480l32 32 56-32h45.49c16.97 0 33.25-6.74 45.25-18.74l126.64-126.62-128-128L50.75 333.25zM483.88 28.12c-37.47-37.5-98.28-37.5-135.75 0l-77.09 77.09-13.1-13.1c-9.44-9.44-24.65-9.31-33.94 0l-40.97 40.97c-9.37 9.37-9.37 24.57 0 33.94l161.94 161.94c9.44 9.44 24.65 9.31 33.94 0L419.88 288c9.37-9.37 9.37-24.57 0-33.94l-13.1-13.1 77.09-77.09c37.51-37.48 37.51-98.26.01-135.75z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEyeDropper = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEyeSlash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEyeSlash.d.ts new file mode 100644 index 0000000000..15f9571ccb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEyeSlash.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faEyeSlash: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEyeSlash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEyeSlash.js new file mode 100644 index 0000000000..019dbe4dc3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faEyeSlash.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'eye-slash'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f070'; +var svgPathData = 'M286.693 391.984l32.579 46.542A333.958 333.958 0 0 1 288 440C168.19 440 63.031 376.051 6.646 280.369a47.999 47.999 0 0 1 0-48.739c24.023-40.766 56.913-75.775 96.024-102.537l57.077 81.539C154.736 224.82 152 240.087 152 256c0 74.736 60.135 135.282 134.693 135.984zm282.661-111.615c-31.667 53.737-78.747 97.46-135.175 125.475l.011.015 41.47 59.2c7.6 10.86 4.96 25.82-5.9 33.42l-13.11 9.18c-10.86 7.6-25.82 4.96-33.42-5.9L100.34 46.94c-7.6-10.86-4.96-25.82 5.9-33.42l13.11-9.18c10.86-7.6 25.82-4.96 33.42 5.9l51.038 72.617C230.68 75.776 258.905 72 288 72c119.81 0 224.969 63.949 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM424 256c0-75.174-60.838-136-136-136-17.939 0-35.056 3.473-50.729 9.772l19.299 27.058c25.869-8.171 55.044-6.163 80.4 7.41h-.03c-23.65 0-42.82 19.17-42.82 42.82 0 23.626 19.147 42.82 42.82 42.82 23.65 0 42.82-19.17 42.82-42.82v-.03c18.462 34.49 16.312 77.914-8.25 110.95v.01l19.314 27.061C411.496 321.2 424 290.074 424 256zM262.014 356.727l-77.53-110.757c-5.014 52.387 29.314 98.354 77.53 110.757z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faEyeSlash = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFastBackward.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFastBackward.d.ts new file mode 100644 index 0000000000..3a61fe682e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFastBackward.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFastBackward: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFastBackward.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFastBackward.js new file mode 100644 index 0000000000..ca10ef2537 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFastBackward.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'fast-backward'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f049'; +var svgPathData = 'M0 436V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v151.9L235.5 71.4C256.1 54.3 288 68.6 288 96v131.9L459.5 71.4C480.1 54.3 512 68.6 512 96v320c0 27.4-31.9 41.7-52.5 24.6L288 285.3V416c0 27.4-31.9 41.7-52.5 24.6L64 285.3V436c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFastBackward = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFastForward.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFastForward.d.ts new file mode 100644 index 0000000000..c93436cb36 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFastForward.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFastForward: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFastForward.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFastForward.js new file mode 100644 index 0000000000..c108525488 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFastForward.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'fast-forward'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f050'; +var svgPathData = 'M512 76v360c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V284.1L276.5 440.6c-20.6 17.2-52.5 2.8-52.5-24.6V284.1L52.5 440.6C31.9 457.8 0 443.4 0 416V96c0-27.4 31.9-41.7 52.5-24.6L224 226.8V96c0-27.4 31.9-41.7 52.5-24.6L448 226.8V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFastForward = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFax.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFax.d.ts new file mode 100644 index 0000000000..c0f9addc78 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFax.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFax: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFax.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFax.js new file mode 100644 index 0000000000..30c52e891d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFax.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'fax'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1ac'; +var svgPathData = 'M128 144v320c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V144c0-26.51 21.49-48 48-48h32c26.51 0 48 21.49 48 48zm384 64v256c0 26.51-21.49 48-48 48H192c-26.51 0-48-21.49-48-48V40c0-22.091 17.909-40 40-40h207.432a39.996 39.996 0 0 1 28.284 11.716l48.569 48.569A39.999 39.999 0 0 1 480 88.568v74.174c18.641 6.591 32 24.36 32 45.258zm-320-16h240V96h-24c-13.203 0-24-10.797-24-24V48H192v144zm96 204c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm128 128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFax = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFeather.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFeather.d.ts new file mode 100644 index 0000000000..b4e65517b0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFeather.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFeather: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFeather.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFeather.js new file mode 100644 index 0000000000..333a67a182 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFeather.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'feather'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f52d'; +var svgPathData = 'M467.14 44.84c-62.55-62.48-161.67-64.78-252.28 25.73-78.61 78.52-60.98 60.92-85.75 85.66-60.46 60.39-70.39 150.83-63.64 211.17l178.44-178.25c6.26-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.6 9.37 33.98 0l66.1-66.03C159.42 454.65 279 457.11 353.95 384h-98.19l147.57-49.14c49.99-49.93 36.38-36.18 46.31-46.86h-97.78l131.54-43.8c45.44-74.46 34.31-148.84-16.26-199.36z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFeather = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFeatherAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFeatherAlt.d.ts new file mode 100644 index 0000000000..a01808bd5d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFeatherAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFeatherAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFeatherAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFeatherAlt.js new file mode 100644 index 0000000000..05fb206d67 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFeatherAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'feather-alt'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f56b'; +var svgPathData = 'M512 0C460.22 3.56 96.44 38.2 71.01 287.61c-3.09 26.66-4.84 53.44-5.99 80.24l178.87-178.69c6.25-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.59 9.37 33.98 0l57.13-57.07c42.09-.14 84.15-2.53 125.96-7.36 53.48-5.44 97.02-26.47 132.58-56.54H255.74l146.79-48.88c11.25-14.89 21.37-30.71 30.45-47.12h-81.14l106.54-53.21C500.29 132.86 510.19 26.26 512 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFeatherAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFemale.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFemale.d.ts new file mode 100644 index 0000000000..de1f49e916 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFemale.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFemale: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFemale.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFemale.js new file mode 100644 index 0000000000..d1f1626af6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFemale.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'female'; +var width = 256; +var height = 512; +var ligatures = []; +var unicode = 'f182'; +var svgPathData = 'M128 0c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64S92.654 0 128 0m119.283 354.179l-48-192A24 24 0 0 0 176 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H80a24 24 0 0 0-23.283 18.179l-48 192C4.935 369.305 16.383 384 32 384h56v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V384h56c15.591 0 27.071-14.671 23.283-29.821z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFemale = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFighterJet.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFighterJet.d.ts new file mode 100644 index 0000000000..2a17ee4a96 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFighterJet.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFighterJet: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFighterJet.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFighterJet.js new file mode 100644 index 0000000000..f4cc202e5b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFighterJet.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'fighter-jet'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f0fb'; +var svgPathData = 'M544 224l-128-16-48-16h-24L227.158 44h39.509C278.333 44 288 41.375 288 38s-9.667-6-21.333-6H152v12h16v164h-48l-66.667-80H18.667L8 138.667V208h8v16h48v2.666l-64 8v42.667l64 8V288H16v16H8v69.333L18.667 384h34.667L120 304h48v164h-16v12h114.667c11.667 0 21.333-2.625 21.333-6s-9.667-6-21.333-6h-39.509L344 320h24l48-16 128-16c96-21.333 96-26.583 96-32 0-5.417 0-10.667-96-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFighterJet = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFile.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFile.d.ts new file mode 100644 index 0000000000..ca6e8eb1ba --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFile.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFile: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFile.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFile.js new file mode 100644 index 0000000000..b72c513b0f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFile.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'file'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f15b'; +var svgPathData = 'M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFile = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileAlt.d.ts new file mode 100644 index 0000000000..ea2981818d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileAlt.js new file mode 100644 index 0000000000..01a26146f6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'file-alt'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f15c'; +var svgPathData = 'M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileArchive.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileArchive.d.ts new file mode 100644 index 0000000000..9041b09fea --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileArchive.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileArchive: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileArchive.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileArchive.js new file mode 100644 index 0000000000..0662aa13eb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileArchive.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'file-archive'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f1c6'; +var svgPathData = 'M224 136V0h-63.6v32h-32V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM95.9 32h32v32h-32V32zm32.3 384c-33.2 0-58-30.4-51.4-62.9L96.4 256v-32h32v-32h-32v-32h32v-32h-32V96h32V64h32v32h-32v32h32v32h-32v32h32v32h-32v32h22.1c5.7 0 10.7 4.1 11.8 9.7l17.3 87.7c6.4 32.4-18.4 62.6-51.4 62.6zm32.7-53c0 14.9-14.5 27-32.4 27S96 378 96 363c0-14.9 14.5-27 32.4-27s32.5 12.1 32.5 27zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileArchive = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileAudio.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileAudio.d.ts new file mode 100644 index 0000000000..266c82b0c6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileAudio.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileAudio: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileAudio.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileAudio.js new file mode 100644 index 0000000000..f140ee699d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileAudio.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'file-audio'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f1c7'; +var svgPathData = 'M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileAudio = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileCode.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileCode.d.ts new file mode 100644 index 0000000000..c618e5c6e9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileCode.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileCode: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileCode.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileCode.js new file mode 100644 index 0000000000..53747c35ce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileCode.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'file-code'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f1c9'; +var svgPathData = 'M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zM123.206 400.505a5.4 5.4 0 0 1-7.633.246l-64.866-60.812a5.4 5.4 0 0 1 0-7.879l64.866-60.812a5.4 5.4 0 0 1 7.633.246l19.579 20.885a5.4 5.4 0 0 1-.372 7.747L101.65 336l40.763 35.874a5.4 5.4 0 0 1 .372 7.747l-19.579 20.884zm51.295 50.479l-27.453-7.97a5.402 5.402 0 0 1-3.681-6.692l61.44-211.626a5.402 5.402 0 0 1 6.692-3.681l27.452 7.97a5.4 5.4 0 0 1 3.68 6.692l-61.44 211.626a5.397 5.397 0 0 1-6.69 3.681zm160.792-111.045l-64.866 60.812a5.4 5.4 0 0 1-7.633-.246l-19.58-20.885a5.4 5.4 0 0 1 .372-7.747L284.35 336l-40.763-35.874a5.4 5.4 0 0 1-.372-7.747l19.58-20.885a5.4 5.4 0 0 1 7.633-.246l64.866 60.812a5.4 5.4 0 0 1-.001 7.879z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileCode = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileContract.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileContract.d.ts new file mode 100644 index 0000000000..a276a22c36 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileContract.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileContract: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileContract.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileContract.js new file mode 100644 index 0000000000..1d5929671c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileContract.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'file-contract'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f56c'; +var svgPathData = 'M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm192.81 248H304c8.84 0 16 7.16 16 16s-7.16 16-16 16h-47.19c-16.45 0-31.27-9.14-38.64-23.86-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34a15.986 15.986 0 0 1-14.31 8.84c-.38 0-.75-.02-1.14-.05-6.45-.45-12-4.75-14.03-10.89L144 354.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.77-16.19 54.05-9.7 66 14.16 2.02 4.06 5.96 6.5 10.16 6.5zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileContract = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileDownload.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileDownload.d.ts new file mode 100644 index 0000000000..0037d4a74c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileDownload.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileDownload: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileDownload.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileDownload.js new file mode 100644 index 0000000000..3e5f00a0c2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileDownload.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'file-download'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f56d'; +var svgPathData = 'M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm76.45 211.36l-96.42 95.7c-6.65 6.61-17.39 6.61-24.04 0l-96.42-95.7C73.42 337.29 80.54 320 94.82 320H160v-80c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v80h65.18c14.28 0 21.4 17.29 11.27 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileDownload = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileExcel.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileExcel.d.ts new file mode 100644 index 0000000000..14fc5298ba --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileExcel.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileExcel: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileExcel.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileExcel.js new file mode 100644 index 0000000000..94a38c59aa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileExcel.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'file-excel'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f1c3'; +var svgPathData = 'M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm60.1 106.5L224 336l60.1 93.5c5.1 8-.6 18.5-10.1 18.5h-34.9c-4.4 0-8.5-2.4-10.6-6.3C208.9 405.5 192 373 192 373c-6.4 14.8-10 20-36.6 68.8-2.1 3.9-6.1 6.3-10.5 6.3H110c-9.5 0-15.2-10.5-10.1-18.5l60.3-93.5-60.3-93.5c-5.2-8 .6-18.5 10.1-18.5h34.8c4.4 0 8.5 2.4 10.6 6.3 26.1 48.8 20 33.6 36.6 68.5 0 0 6.1-11.7 36.6-68.5 2.1-3.9 6.2-6.3 10.6-6.3H274c9.5-.1 15.2 10.4 10.1 18.4zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileExcel = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileExport.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileExport.d.ts new file mode 100644 index 0000000000..b607c06d39 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileExport.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileExport: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileExport.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileExport.js new file mode 100644 index 0000000000..2d0fc91528 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileExport.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'file-export'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f56e'; +var svgPathData = 'M384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zM192 336v-32c0-8.84 7.16-16 16-16h176V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V352H208c-8.84 0-16-7.16-16-16zm379.05-28.02l-95.7-96.43c-10.06-10.14-27.36-3.01-27.36 11.27V288H384v64h63.99v65.18c0 14.28 17.29 21.41 27.36 11.27l95.7-96.42c6.6-6.66 6.6-17.4 0-24.05z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileExport = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileImage.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileImage.d.ts new file mode 100644 index 0000000000..c298749e13 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileImage.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileImage: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileImage.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileImage.js new file mode 100644 index 0000000000..9e0f737167 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileImage.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'file-image'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f1c5'; +var svgPathData = 'M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileImage = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileImport.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileImport.d.ts new file mode 100644 index 0000000000..1bf48b2afd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileImport.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileImport: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileImport.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileImport.js new file mode 100644 index 0000000000..c5042291a0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileImport.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'file-import'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f56f'; +var svgPathData = 'M16 288c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h112v-64H16zm336-152V0H152c-13.3 0-24 10.7-24 24v264h127.99v-65.18c0-14.28 17.29-21.41 27.36-11.27l95.7 96.43c6.6 6.65 6.6 17.39 0 24.04l-95.7 96.42c-10.06 10.14-27.36 3.01-27.36-11.27V352H128v136c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H376c-13.2 0-24-10.8-24-24zm153-31L407.1 7c-4.5-4.5-10.6-7-17-7H384v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileImport = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileInvoice.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileInvoice.d.ts new file mode 100644 index 0000000000..b5642b1d52 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileInvoice.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileInvoice: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileInvoice.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileInvoice.js new file mode 100644 index 0000000000..33606adb99 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileInvoice.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'file-invoice'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f570'; +var svgPathData = 'M288 256H96v64h192v-64zm89-151L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm256 304c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-200v96c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-96c0-8.84 7.16-16 16-16h224c8.84 0 16 7.16 16 16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileInvoice = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileInvoiceDollar.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileInvoiceDollar.d.ts new file mode 100644 index 0000000000..850548701b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileInvoiceDollar.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileInvoiceDollar: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileInvoiceDollar.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileInvoiceDollar.js new file mode 100644 index 0000000000..47c27478d7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileInvoiceDollar.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'file-invoice-dollar'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f571'; +var svgPathData = 'M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 80v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8zm144 263.88V440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-24.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V232c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v24.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileInvoiceDollar = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileMedical.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileMedical.d.ts new file mode 100644 index 0000000000..ece43a5970 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileMedical.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileMedical: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileMedical.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileMedical.js new file mode 100644 index 0000000000..56ccc53ae5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileMedical.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'file-medical'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f477'; +var svgPathData = 'M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 160v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileMedical = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileMedicalAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileMedicalAlt.d.ts new file mode 100644 index 0000000000..abaa0177ff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileMedicalAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileMedicalAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileMedicalAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileMedicalAlt.js new file mode 100644 index 0000000000..d2699a93f8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileMedicalAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'file-medical-alt'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f478'; +var svgPathData = 'M288 136V0H88C74.7 0 64 10.7 64 24v232H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h140.9c3 0 5.8 1.7 7.2 4.4l19.9 39.8 56.8-113.7c2.9-5.9 11.4-5.9 14.3 0l34.7 69.5H352c8.8 0 16 7.2 16 16s-7.2 16-16 16h-89.9L240 275.8l-56.8 113.7c-2.9 5.9-11.4 5.9-14.3 0L134.1 320H64v168c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H312c-13.2 0-24-10.8-24-24zm153-31L343.1 7c-4.5-4.5-10.6-7-17-7H320v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileMedicalAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilePdf.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilePdf.d.ts new file mode 100644 index 0000000000..90f8088d36 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilePdf.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFilePdf: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilePdf.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilePdf.js new file mode 100644 index 0000000000..f183764f71 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilePdf.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'file-pdf'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f1c1'; +var svgPathData = 'M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFilePdf = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilePowerpoint.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilePowerpoint.d.ts new file mode 100644 index 0000000000..fbeed93ee2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilePowerpoint.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFilePowerpoint: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilePowerpoint.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilePowerpoint.js new file mode 100644 index 0000000000..93508e2745 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilePowerpoint.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'file-powerpoint'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f1c4'; +var svgPathData = 'M193.7 271.2c8.8 0 15.5 2.7 20.3 8.1 9.6 10.9 9.8 32.7-.2 44.1-4.9 5.6-11.9 8.5-21.1 8.5h-26.9v-60.7h27.9zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm53 165.2c0 90.3-88.8 77.6-111.1 77.6V436c0 6.6-5.4 12-12 12h-30.8c-6.6 0-12-5.4-12-12V236.2c0-6.6 5.4-12 12-12h81c44.5 0 72.9 32.8 72.9 77z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFilePowerpoint = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilePrescription.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilePrescription.d.ts new file mode 100644 index 0000000000..2793293593 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilePrescription.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFilePrescription: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilePrescription.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilePrescription.js new file mode 100644 index 0000000000..3b367b1254 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilePrescription.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'file-prescription'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f572'; +var svgPathData = 'M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm68.53 179.48l11.31 11.31c6.25 6.25 6.25 16.38 0 22.63l-29.9 29.9L304 409.38c6.25 6.25 6.25 16.38 0 22.63l-11.31 11.31c-6.25 6.25-16.38 6.25-22.63 0L240 413.25l-30.06 30.06c-6.25 6.25-16.38 6.25-22.63 0L176 432c-6.25-6.25-6.25-16.38 0-22.63l30.06-30.06L146.74 320H128v48c0 8.84-7.16 16-16 16H96c-8.84 0-16-7.16-16-16V208c0-8.84 7.16-16 16-16h80c35.35 0 64 28.65 64 64 0 24.22-13.62 45.05-33.46 55.92L240 345.38l29.9-29.9c6.25-6.25 16.38-6.25 22.63 0zM176 272h-48v-32h48c8.82 0 16 7.18 16 16s-7.18 16-16 16zm208-150.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFilePrescription = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileSignature.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileSignature.d.ts new file mode 100644 index 0000000000..041d458b33 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileSignature.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileSignature: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileSignature.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileSignature.js new file mode 100644 index 0000000000..2c158c540b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileSignature.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'file-signature'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f573'; +var svgPathData = 'M218.17 424.14c-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34c-6.37 12.78-25.03 11.37-29.48-2.09L144 386.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.75-16.19 54.06-9.7 66 14.16 1.89 3.78 5.49 5.95 9.36 6.26v-82.12l128-127.09V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24v-40l-128-.11c-16.12-.31-30.58-9.28-37.83-23.75zM384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zm-96 225.06V416h68.99l161.68-162.78-67.88-67.88L288 346.96zm280.54-179.63l-31.87-31.87c-9.94-9.94-26.07-9.94-36.01 0l-27.25 27.25 67.88 67.88 27.25-27.25c9.95-9.94 9.95-26.07 0-36.01z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileSignature = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileUpload.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileUpload.d.ts new file mode 100644 index 0000000000..8948da9181 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileUpload.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileUpload: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileUpload.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileUpload.js new file mode 100644 index 0000000000..6d77f6d8bc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileUpload.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'file-upload'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f574'; +var svgPathData = 'M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm65.18 216.01H224v80c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-80H94.82c-14.28 0-21.41-17.29-11.27-27.36l96.42-95.7c6.65-6.61 17.39-6.61 24.04 0l96.42 95.7c10.15 10.07 3.03 27.36-11.25 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileUpload = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileVideo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileVideo.d.ts new file mode 100644 index 0000000000..d11e6723f0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileVideo.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileVideo: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileVideo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileVideo.js new file mode 100644 index 0000000000..2150f19b8a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileVideo.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'file-video'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f1c8'; +var svgPathData = 'M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileVideo = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileWord.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileWord.d.ts new file mode 100644 index 0000000000..826a48d9d8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileWord.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFileWord: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileWord.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileWord.js new file mode 100644 index 0000000000..f6006b6a50 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFileWord.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'file-word'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f1c2'; +var svgPathData = 'M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm57.1 120H305c7.7 0 13.4 7.1 11.7 14.7l-38 168c-1.2 5.5-6.1 9.3-11.7 9.3h-38c-5.5 0-10.3-3.8-11.6-9.1-25.8-103.5-20.8-81.2-25.6-110.5h-.5c-1.1 14.3-2.4 17.4-25.6 110.5-1.3 5.3-6.1 9.1-11.6 9.1H117c-5.6 0-10.5-3.9-11.7-9.4l-37.8-168c-1.7-7.5 4-14.6 11.7-14.6h24.5c5.7 0 10.7 4 11.8 9.7 15.6 78 20.1 109.5 21 122.2 1.6-10.2 7.3-32.7 29.4-122.7 1.3-5.4 6.1-9.1 11.7-9.1h29.1c5.6 0 10.4 3.8 11.7 9.2 24 100.4 28.8 124 29.6 129.4-.2-11.2-2.6-17.8 21.6-129.2 1-5.6 5.9-9.5 11.5-9.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFileWord = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFill.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFill.d.ts new file mode 100644 index 0000000000..e8bf404dc3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFill.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFill: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFill.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFill.js new file mode 100644 index 0000000000..41677d133b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFill.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'fill'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f575'; +var svgPathData = 'M502.63 217.06L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.77c-6.24-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.63l86.19 86.18-94.76 94.76c-37.49 37.49-37.49 98.26 0 135.75l117.19 117.19c18.75 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.88-28.12l221.57-221.57c12.49-12.5 12.49-32.76 0-45.26zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.61 58.6c12.49 12.49 32.75 12.49 45.24 0 12.49-12.49 12.49-32.75 0-45.24l-58.61-58.6 58.95-58.95 162.45 162.44-48.35 48.34z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFill = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFillDrip.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFillDrip.d.ts new file mode 100644 index 0000000000..fd2e7e20f2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFillDrip.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFillDrip: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFillDrip.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFillDrip.js new file mode 100644 index 0000000000..498163c721 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFillDrip.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'fill-drip'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f576'; +var svgPathData = 'M512 320s-64 92.65-64 128c0 35.35 28.66 64 64 64s64-28.65 64-64-64-128-64-128zm-9.37-102.94L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.76c-6.25-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.62l86.19 86.18-94.76 94.76c-37.49 37.48-37.49 98.26 0 135.75l117.19 117.19c18.74 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.87-28.12l221.57-221.57c12.5-12.5 12.5-32.75.01-45.25zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.6 58.6c12.49 12.49 32.75 12.49 45.24 0s12.49-32.75 0-45.24l-58.6-58.6 58.95-58.95 162.44 162.44-48.34 48.34z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFillDrip = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilm.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilm.d.ts new file mode 100644 index 0000000000..3e91801754 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilm.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFilm: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilm.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilm.js new file mode 100644 index 0000000000..3d4cc95fcd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilm.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'film'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f008'; +var svgPathData = 'M488 64h-8v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V64H96v20c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12V64h-8C10.7 64 0 74.7 0 88v336c0 13.3 10.7 24 24 24h8v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h320v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h8c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM96 372c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm272 208c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm0-168c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm112 152c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFilm = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilter.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilter.d.ts new file mode 100644 index 0000000000..94c0895d0c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilter.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFilter: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilter.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilter.js new file mode 100644 index 0000000000..21a3355e53 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFilter.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'filter'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0b0'; +var svgPathData = 'M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFilter = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFingerprint.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFingerprint.d.ts new file mode 100644 index 0000000000..b483490aa1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFingerprint.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFingerprint: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFingerprint.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFingerprint.js new file mode 100644 index 0000000000..1706ff4ff5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFingerprint.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'fingerprint'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f577'; +var svgPathData = 'M256.12 245.96c-13.25 0-24 10.74-24 24 1.14 72.25-8.14 141.9-27.7 211.55-2.73 9.72 2.15 30.49 23.12 30.49 10.48 0 20.11-6.92 23.09-17.52 13.53-47.91 31.04-125.41 29.48-224.52.01-13.25-10.73-24-23.99-24zm-.86-81.73C194 164.16 151.25 211.3 152.1 265.32c.75 47.94-3.75 95.91-13.37 142.55-2.69 12.98 5.67 25.69 18.64 28.36 13.05 2.67 25.67-5.66 28.36-18.64 10.34-50.09 15.17-101.58 14.37-153.02-.41-25.95 19.92-52.49 54.45-52.34 31.31.47 57.15 25.34 57.62 55.47.77 48.05-2.81 96.33-10.61 143.55-2.17 13.06 6.69 25.42 19.76 27.58 19.97 3.33 26.81-15.1 27.58-19.77 8.28-50.03 12.06-101.21 11.27-152.11-.88-55.8-47.94-101.88-104.91-102.72zm-110.69-19.78c-10.3-8.34-25.37-6.8-33.76 3.48-25.62 31.5-39.39 71.28-38.75 112 .59 37.58-2.47 75.27-9.11 112.05-2.34 13.05 6.31 25.53 19.36 27.89 20.11 3.5 27.07-14.81 27.89-19.36 7.19-39.84 10.5-80.66 9.86-121.33-.47-29.88 9.2-57.88 28-80.97 8.35-10.28 6.79-25.39-3.49-33.76zm109.47-62.33c-15.41-.41-30.87 1.44-45.78 4.97-12.89 3.06-20.87 15.98-17.83 28.89 3.06 12.89 16 20.83 28.89 17.83 11.05-2.61 22.47-3.77 34-3.69 75.43 1.13 137.73 61.5 138.88 134.58.59 37.88-1.28 76.11-5.58 113.63-1.5 13.17 7.95 25.08 21.11 26.58 16.72 1.95 25.51-11.88 26.58-21.11a929.06 929.06 0 0 0 5.89-119.85c-1.56-98.75-85.07-180.33-186.16-181.83zm252.07 121.45c-2.86-12.92-15.51-21.2-28.61-18.27-12.94 2.86-21.12 15.66-18.26 28.61 4.71 21.41 4.91 37.41 4.7 61.6-.11 13.27 10.55 24.09 23.8 24.2h.2c13.17 0 23.89-10.61 24-23.8.18-22.18.4-44.11-5.83-72.34zm-40.12-90.72C417.29 43.46 337.6 1.29 252.81.02 183.02-.82 118.47 24.91 70.46 72.94 24.09 119.37-.9 181.04.14 246.65l-.12 21.47c-.39 13.25 10.03 24.31 23.28 24.69.23.02.48.02.72.02 12.92 0 23.59-10.3 23.97-23.3l.16-23.64c-.83-52.5 19.16-101.86 56.28-139 38.76-38.8 91.34-59.67 147.68-58.86 69.45 1.03 134.73 35.56 174.62 92.39 7.61 10.86 22.56 13.45 33.42 5.86 10.84-7.62 13.46-22.59 5.84-33.43z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFingerprint = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFire.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFire.d.ts new file mode 100644 index 0000000000..b2f37164bb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFire.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFire: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFire.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFire.js new file mode 100644 index 0000000000..b36f7e0288 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFire.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'fire'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f06d'; +var svgPathData = 'M216 23.858c0-23.802-30.653-32.765-44.149-13.038C48 191.851 224 200 224 288c0 35.629-29.114 64.458-64.85 63.994C123.98 351.538 96 322.22 96 287.046v-85.51c0-21.703-26.471-32.225-41.432-16.504C27.801 213.158 0 261.332 0 320c0 105.869 86.131 192 192 192s192-86.131 192-192c0-170.29-168-193.003-168-296.142z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFire = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFireExtinguisher.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFireExtinguisher.d.ts new file mode 100644 index 0000000000..8bba526b5f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFireExtinguisher.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFireExtinguisher: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFireExtinguisher.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFireExtinguisher.js new file mode 100644 index 0000000000..56f4dcd1a5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFireExtinguisher.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'fire-extinguisher'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f134'; +var svgPathData = 'M434.027 26.329l-168 28C254.693 56.218 256 67.8 256 72h-58.332C208.353 36.108 181.446 0 144 0c-39.435 0-66.368 39.676-52.228 76.203-52.039 13.051-75.381 54.213-90.049 90.884-4.923 12.307 1.063 26.274 13.37 31.197 12.317 4.926 26.279-1.075 31.196-13.37C75.058 112.99 106.964 120 168 120v27.076c-41.543 10.862-72 49.235-72 94.129V488c0 13.255 10.745 24 24 24h144c13.255 0 24-10.745 24-24V240c0-44.731-30.596-82.312-72-92.97V120h40c0 2.974-1.703 15.716 10.027 17.671l168 28C441.342 166.89 448 161.25 448 153.834V38.166c0-7.416-6.658-13.056-13.973-11.837zM144 72c-8.822 0-16-7.178-16-16s7.178-16 16-16 16 7.178 16 16-7.178 16-16 16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFireExtinguisher = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFirstAid.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFirstAid.d.ts new file mode 100644 index 0000000000..a0c3b653a0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFirstAid.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFirstAid: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFirstAid.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFirstAid.js new file mode 100644 index 0000000000..a758ae85bd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFirstAid.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'first-aid'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f479'; +var svgPathData = 'M0 80v352c0 26.5 21.5 48 48 48h48V32H48C21.5 32 0 53.5 0 80zm128 400h320V32H128v448zm64-248c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48zM528 32h-48v448h48c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFirstAid = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFish.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFish.d.ts new file mode 100644 index 0000000000..2fb85efaa6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFish.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFish: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFish.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFish.js new file mode 100644 index 0000000000..397296282d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFish.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'fish'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f578'; +var svgPathData = 'M327.1 96c-89.97 0-168.54 54.77-212.27 101.63L27.5 131.58c-12.13-9.18-30.24.6-27.14 14.66L24.54 256 .35 365.77c-3.1 14.06 15.01 23.83 27.14 14.66l87.33-66.05C158.55 361.23 237.13 416 327.1 416 464.56 416 576 288 576 256S464.56 96 327.1 96zm87.43 184c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24 13.26 0 24 10.74 24 24 0 13.25-10.75 24-24 24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFish = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlag.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlag.d.ts new file mode 100644 index 0000000000..96a6bbe615 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlag.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFlag: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlag.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlag.js new file mode 100644 index 0000000000..364ce70d41 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlag.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'flag'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f024'; +var svgPathData = 'M349.565 98.783C295.978 98.783 251.721 64 184.348 64c-24.955 0-47.309 4.384-68.045 12.013a55.947 55.947 0 0 0 3.586-23.562C118.117 24.015 94.806 1.206 66.338.048 34.345-1.254 8 24.296 8 56c0 19.026 9.497 35.825 24 45.945V488c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-94.4c28.311-12.064 63.582-22.122 114.435-22.122 53.588 0 97.844 34.783 165.217 34.783 48.169 0 86.667-16.294 122.505-40.858C506.84 359.452 512 349.571 512 339.045v-243.1c0-23.393-24.269-38.87-45.485-29.016-34.338 15.948-76.454 31.854-116.95 31.854z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFlag = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlagCheckered.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlagCheckered.d.ts new file mode 100644 index 0000000000..90b90a1d6c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlagCheckered.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFlagCheckered: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlagCheckered.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlagCheckered.js new file mode 100644 index 0000000000..e0a099b6fc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlagCheckered.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'flag-checkered'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f11e'; +var svgPathData = 'M466.515 66.928C487.731 57.074 512 72.551 512 95.944v243.1c0 10.526-5.161 20.407-13.843 26.358-35.837 24.564-74.335 40.858-122.505 40.858-67.373 0-111.63-34.783-165.217-34.783-50.853 0-86.124 10.058-114.435 22.122V488c0 13.255-10.745 24-24 24H56c-13.255 0-24-10.745-24-24V101.945C17.497 91.825 8 75.026 8 56 8 24.296 34.345-1.254 66.338.048c28.468 1.158 51.779 23.968 53.551 52.404.52 8.342-.81 16.31-3.586 23.562C137.039 68.384 159.393 64 184.348 64c67.373 0 111.63 34.783 165.217 34.783 40.496 0 82.612-15.906 116.95-31.855zM96 134.63v70.49c29-10.67 51.18-17.83 73.6-20.91v-71.57c-23.5 2.17-40.44 9.79-73.6 21.99zm220.8 9.19c-26.417-4.672-49.886-13.979-73.6-21.34v67.42c24.175 6.706 47.566 16.444 73.6 22.31v-68.39zm-147.2 40.39v70.04c32.796-2.978 53.91-.635 73.6 3.8V189.9c-25.247-7.035-46.581-9.423-73.6-5.69zm73.6 142.23c26.338 4.652 49.732 13.927 73.6 21.34v-67.41c-24.277-6.746-47.54-16.45-73.6-22.32v68.39zM96 342.1c23.62-8.39 47.79-13.84 73.6-16.56v-71.29c-26.11 2.35-47.36 8.04-73.6 17.36v70.49zm368-221.6c-21.3 8.85-46.59 17.64-73.6 22.47v71.91c27.31-4.36 50.03-14.1 73.6-23.89V120.5zm0 209.96v-70.49c-22.19 14.2-48.78 22.61-73.6 26.02v71.58c25.07-2.38 48.49-11.04 73.6-27.11zM316.8 212.21v68.16c25.664 7.134 46.616 9.342 73.6 5.62v-71.11c-25.999 4.187-49.943 2.676-73.6-2.67z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFlagCheckered = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlask.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlask.d.ts new file mode 100644 index 0000000000..f8affffe30 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlask.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFlask: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlask.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlask.js new file mode 100644 index 0000000000..2631271015 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlask.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'flask'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0c3'; +var svgPathData = 'M437.2 403.5L320 215V64h8c13.3 0 24-10.7 24-24V24c0-13.3-10.7-24-24-24H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h8v151L10.8 403.5C-18.5 450.6 15.3 512 70.9 512h306.2c55.7 0 89.4-61.5 60.1-108.5zM137.9 320l48.2-77.6c3.7-5.2 5.8-11.6 5.8-18.4V64h64v160c0 6.9 2.2 13.2 5.8 18.4l48.2 77.6h-172z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFlask = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlushed.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlushed.d.ts new file mode 100644 index 0000000000..3394430f89 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlushed.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFlushed: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlushed.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlushed.js new file mode 100644 index 0000000000..b216c2a4ee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFlushed.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'flushed'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f579'; +var svgPathData = 'M344 200c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-192 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM80 224c0-39.8 32.2-72 72-72s72 32.2 72 72-32.2 72-72 72-72-32.2-72-72zm232 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-104c-39.8 0-72-32.2-72-72s32.2-72 72-72 72 32.2 72 72-32.2 72-72 72z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFlushed = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFolder.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFolder.d.ts new file mode 100644 index 0000000000..dbd5a42f4d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFolder.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFolder: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFolder.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFolder.js new file mode 100644 index 0000000000..10384e227b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFolder.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'folder'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f07b'; +var svgPathData = 'M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFolder = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFolderOpen.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFolderOpen.d.ts new file mode 100644 index 0000000000..7a6f02b753 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFolderOpen.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFolderOpen: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFolderOpen.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFolderOpen.js new file mode 100644 index 0000000000..d7bb913ac0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFolderOpen.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'folder-open'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f07c'; +var svgPathData = 'M572.694 292.093L500.27 416.248A63.997 63.997 0 0 1 444.989 448H45.025c-18.523 0-30.064-20.093-20.731-36.093l72.424-124.155A64 64 0 0 1 152 256h399.964c18.523 0 30.064 20.093 20.73 36.093zM152 224h328v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v278.046l69.077-118.418C86.214 242.25 117.989 224 152 224z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFolderOpen = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFont.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFont.d.ts new file mode 100644 index 0000000000..bc05d60912 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFont.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFont: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFont.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFont.js new file mode 100644 index 0000000000..6fad73f9b2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFont.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'font'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f031'; +var svgPathData = 'M152 416h-24.013l26.586-80.782H292.8L319.386 416H296c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-26.739L275.495 42.746A16 16 0 0 0 260.382 32h-72.766a16 16 0 0 0-15.113 10.746L42.739 416H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm64.353-271.778c4.348-15.216 6.61-28.156 7.586-34.644.839 6.521 2.939 19.476 7.727 34.706l41.335 124.006h-98.619l41.971-124.068z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFont = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFontAwesomeLogoFull.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFontAwesomeLogoFull.d.ts new file mode 100644 index 0000000000..fd1e83f87d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFontAwesomeLogoFull.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFontAwesomeLogoFull: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFontAwesomeLogoFull.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFontAwesomeLogoFull.js new file mode 100644 index 0000000000..f92df755af --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFontAwesomeLogoFull.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'font-awesome-logo-full'; +var width = 3992; +var height = 512; +var ligatures = ['Font Awesome']; +var unicode = 'f4e6'; +var svgPathData = 'M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFontAwesomeLogoFull = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFootballBall.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFootballBall.d.ts new file mode 100644 index 0000000000..95a3b25d08 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFootballBall.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFootballBall: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFootballBall.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFootballBall.js new file mode 100644 index 0000000000..af4e079542 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFootballBall.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'football-ball'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f44e'; +var svgPathData = 'M481.5 60.3c-4.8-18.2-19.1-32.5-37.3-37.4C420.3 16.5 383 8.9 339.4 8L496 164.8c-.8-43.5-8.2-80.6-14.5-104.5zm-467 391.4c4.8 18.2 19.1 32.5 37.3 37.4 23.9 6.4 61.2 14 104.8 14.9L0 347.2c.8 43.5 8.2 80.6 14.5 104.5zM4.2 283.4L220.4 500c132.5-19.4 248.8-118.7 271.5-271.4L275.6 12C143.1 31.4 26.8 130.7 4.2 283.4zm317.3-123.6c3.1-3.1 8.2-3.1 11.3 0l11.3 11.3c3.1 3.1 3.1 8.2 0 11.3l-28.3 28.3 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-22.6 22.7 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L248 278.6l-22.6 22.6 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-28.3 28.3c-3.1 3.1-8.2 3.1-11.3 0l-11.3-11.3c-3.1-3.1-3.1-8.2 0-11.3l28.3-28.3-28.3-28.2c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 28.3-28.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFootballBall = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faForward.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faForward.d.ts new file mode 100644 index 0000000000..a3922a85a7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faForward.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faForward: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faForward.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faForward.js new file mode 100644 index 0000000000..10fa969860 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faForward.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'forward'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f04e'; +var svgPathData = 'M500.5 231.4l-192-160C287.9 54.3 256 68.6 256 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2zm-256 0l-192-160C31.9 54.3 0 68.6 0 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faForward = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFrog.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFrog.d.ts new file mode 100644 index 0000000000..1b649b4973 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFrog.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFrog: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFrog.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFrog.js new file mode 100644 index 0000000000..15744a97e8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFrog.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'frog'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f52e'; +var svgPathData = 'M446.53 97.43C439.67 60.23 407.19 32 368 32c-39.23 0-71.72 28.29-78.54 65.54C126.75 112.96-.5 250.12 0 416.98.11 451.9 29.08 480 64 480h304c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-79.49l35.8-48.33c24.14-36.23 10.35-88.28-33.71-106.6-23.89-9.93-51.55-4.65-72.24 10.88l-32.76 24.59c-7.06 5.31-17.09 3.91-22.41-3.19-5.3-7.08-3.88-17.11 3.19-22.41l34.78-26.09c36.84-27.66 88.28-27.62 125.13 0 10.87 8.15 45.87 39.06 40.8 93.21L469.62 480H560c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-53.63l-98.52-104.68 154.44-86.65A58.16 58.16 0 0 0 576 189.94c0-21.4-11.72-40.95-30.48-51.23-40.56-22.22-98.99-41.28-98.99-41.28zM368 136c-13.26 0-24-10.75-24-24 0-13.26 10.74-24 24-24 13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFrog = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFrown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFrown.d.ts new file mode 100644 index 0000000000..2c64be0174 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFrown.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFrown: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFrown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFrown.js new file mode 100644 index 0000000000..e53b63f583 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFrown.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'frown'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f119'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm170.2 218.2C315.8 367.4 282.9 352 248 352s-67.8 15.4-90.2 42.2c-13.5 16.3-38.1-4.2-24.6-20.5C161.7 339.6 203.6 320 248 320s86.3 19.6 114.7 53.8c13.6 16.2-11 36.7-24.5 20.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFrown = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFrownOpen.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFrownOpen.d.ts new file mode 100644 index 0000000000..e2fea38fcb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFrownOpen.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFrownOpen: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFrownOpen.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFrownOpen.js new file mode 100644 index 0000000000..01f07f9b0d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFrownOpen.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'frown-open'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f57a'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm187.3 183.3c-31.2-9.6-59.4-15.3-75.3-15.3s-44.1 5.7-75.3 15.3c-11.5 3.5-22.5-6.3-20.5-18.1 7-40 60.1-61.2 95.8-61.2s88.8 21.3 95.8 61.2c2 11.9-9.1 21.6-20.5 18.1zM328 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFrownOpen = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFutbol.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFutbol.d.ts new file mode 100644 index 0000000000..116d931c46 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFutbol.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faFutbol: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFutbol.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFutbol.js new file mode 100644 index 0000000000..eb4764e578 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faFutbol.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'futbol'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1e3'; +var svgPathData = 'M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-48 0l-.003-.282-26.064 22.741-62.679-58.5 16.454-84.355 34.303 3.072c-24.889-34.216-60.004-60.089-100.709-73.141l13.651 31.939L256 139l-74.953-41.525 13.651-31.939c-40.631 13.028-75.78 38.87-100.709 73.141l34.565-3.073 16.192 84.355-62.678 58.5-26.064-22.741-.003.282c0 43.015 13.497 83.952 38.472 117.991l7.704-33.897 85.138 10.447 36.301 77.826-29.902 17.786c40.202 13.122 84.29 13.148 124.572 0l-29.902-17.786 36.301-77.826 85.138-10.447 7.704 33.897C442.503 339.952 456 299.015 456 256zm-248.102 69.571l-29.894-91.312L256 177.732l77.996 56.527-29.622 91.312h-96.476z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faFutbol = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGamepad.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGamepad.d.ts new file mode 100644 index 0000000000..c72b8ecab6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGamepad.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGamepad: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGamepad.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGamepad.js new file mode 100644 index 0000000000..d77ac1d60a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGamepad.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'gamepad'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f11b'; +var svgPathData = 'M480 96H160C71.6 96 0 167.6 0 256s71.6 160 160 160c44.8 0 85.2-18.4 114.2-48h91.5c29 29.6 69.5 48 114.2 48 88.4 0 160-71.6 160-160S568.4 96 480 96zM256 276c0 6.6-5.4 12-12 12h-52v52c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-52H76c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h52v-52c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h52c6.6 0 12 5.4 12 12v40zm184 68c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-80c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGamepad = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGasPump.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGasPump.d.ts new file mode 100644 index 0000000000..35def4df6f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGasPump.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGasPump: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGasPump.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGasPump.js new file mode 100644 index 0000000000..4d2ffd9e19 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGasPump.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'gas-pump'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f52f'; +var svgPathData = 'M336 448H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm157.2-340.7l-81-81c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-6.2 6.2-6.2 16.4 0 22.6L416 97.9V160c0 28.1 20.9 51.3 48 55.2V376c0 13.2-10.8 24-24 24s-24-10.8-24-24v-32c0-48.6-39.4-88-88-88h-8V64c0-35.3-28.7-64-64-64H96C60.7 0 32 28.7 32 64v352h288V304h8c22.1 0 40 17.9 40 40v27.8c0 37.7 27 72 64.5 75.9 43 4.3 79.5-29.5 79.5-71.7V152.6c0-17-6.8-33.3-18.8-45.3zM256 192H96V64h160v128z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGasPump = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGavel.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGavel.d.ts new file mode 100644 index 0000000000..aff613b179 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGavel.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGavel: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGavel.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGavel.js new file mode 100644 index 0000000000..809af60d47 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGavel.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'gavel'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0e3'; +var svgPathData = 'M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGavel = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGem.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGem.d.ts new file mode 100644 index 0000000000..a138c0a65e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGem.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGem: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGem.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGem.js new file mode 100644 index 0000000000..a800bfeadb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGem.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'gem'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f3a5'; +var svgPathData = 'M485.5 0L576 160H474.9L405.7 0h79.8zm-128 0l69.2 160H149.3L218.5 0h139zm-267 0h79.8l-69.2 160H0L90.5 0zM0 192h100.7l123 251.7c1.5 3.1-2.7 5.9-5 3.3L0 192zm148.2 0h279.6l-137 318.2c-1 2.4-4.5 2.4-5.5 0L148.2 192zm204.1 251.7l123-251.7H576L357.3 446.9c-2.3 2.7-6.5-.1-5-3.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGem = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGenderless.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGenderless.d.ts new file mode 100644 index 0000000000..b412541c4d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGenderless.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGenderless: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGenderless.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGenderless.js new file mode 100644 index 0000000000..d3412255cf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGenderless.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'genderless'; +var width = 288; +var height = 512; +var ligatures = []; +var unicode = 'f22d'; +var svgPathData = 'M144 176c44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80 35.9-80 80-80m0-64C64.5 112 0 176.5 0 256s64.5 144 144 144 144-64.5 144-144-64.5-144-144-144z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGenderless = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGift.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGift.d.ts new file mode 100644 index 0000000000..a0b98b2b46 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGift.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGift: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGift.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGift.js new file mode 100644 index 0000000000..7657d7052c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGift.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'gift'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f06b'; +var svgPathData = 'M32 448c0 17.7 14.3 32 32 32h160V320H32v128zm448-288h-42.1c6.2-12.1 10.1-25.5 10.1-40 0-48.5-39.5-88-88-88-41.6 0-68.5 21.3-103 68.3-34.5-47-61.4-68.3-103-68.3-48.5 0-88 39.5-88 88 0 14.5 3.8 27.9 10.1 40H32c-17.7 0-32 14.3-32 32v80c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-80c0-17.7-14.3-32-32-32zm-326.1 0c-22.1 0-40-17.9-40-40s17.9-40 40-40c19.9 0 34.6 3.3 86.1 80h-86.1zm206.1 0h-86.1c51.4-76.5 65.7-80 86.1-80 22.1 0 40 17.9 40 40s-17.9 40-40 40zm-72 320h160c17.7 0 32-14.3 32-32V320H288v160z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGift = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlassMartini.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlassMartini.d.ts new file mode 100644 index 0000000000..8f6eebac94 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlassMartini.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGlassMartini: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlassMartini.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlassMartini.js new file mode 100644 index 0000000000..8d4c5c5378 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlassMartini.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'glass-martini'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f000'; +var svgPathData = 'M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGlassMartini = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlassMartiniAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlassMartiniAlt.d.ts new file mode 100644 index 0000000000..794c2e03d7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlassMartiniAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGlassMartiniAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlassMartiniAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlassMartiniAlt.js new file mode 100644 index 0000000000..8d7682a779 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlassMartiniAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'glass-martini-alt'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f57b'; +var svgPathData = 'M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6zM443.77 48l-48 48H116.24l-48-48h375.53z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGlassMartiniAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlasses.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlasses.d.ts new file mode 100644 index 0000000000..7e2c857fad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlasses.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGlasses: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlasses.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlasses.js new file mode 100644 index 0000000000..5d9dff9294 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlasses.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'glasses'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f530'; +var svgPathData = 'M574.1 280.37L528.75 98.66c-5.91-23.7-21.59-44.05-43-55.81-21.44-11.73-46.97-14.11-70.19-6.33l-15.25 5.08c-8.39 2.79-12.92 11.86-10.12 20.24l5.06 15.18c2.79 8.38 11.85 12.91 20.23 10.12l13.18-4.39c10.87-3.62 23-3.57 33.16 1.73 10.29 5.37 17.57 14.56 20.37 25.82l38.46 153.82c-22.19-6.81-49.79-12.46-81.2-12.46-34.77 0-73.98 7.02-114.85 26.74h-73.18c-40.87-19.74-80.08-26.75-114.86-26.75-31.42 0-59.02 5.65-81.21 12.46l38.46-153.83c2.79-11.25 10.09-20.45 20.38-25.81 10.16-5.3 22.28-5.35 33.15-1.73l13.17 4.39c8.38 2.79 17.44-1.74 20.23-10.12l5.06-15.18c2.8-8.38-1.73-17.45-10.12-20.24l-15.25-5.08c-23.22-7.78-48.75-5.41-70.19 6.33-21.41 11.77-37.09 32.11-43 55.8L1.9 280.37A64.218 64.218 0 0 0 0 295.86v70.25C0 429.01 51.58 480 115.2 480h37.12c60.28 0 110.37-45.94 114.88-105.37l2.93-38.63h35.75l2.93 38.63C313.31 434.06 363.4 480 423.68 480h37.12c63.62 0 115.2-50.99 115.2-113.88v-70.25c0-5.23-.64-10.43-1.9-15.5zm-370.72 89.42c-1.97 25.91-24.4 46.21-51.06 46.21H115.2C86.97 416 64 393.62 64 366.11v-37.54c18.12-6.49 43.42-12.92 72.58-12.92 23.86 0 47.26 4.33 69.93 12.92l-3.13 41.22zM512 366.12c0 27.51-22.97 49.88-51.2 49.88h-37.12c-26.67 0-49.1-20.3-51.06-46.21l-3.13-41.22c22.67-8.59 46.08-12.92 69.95-12.92 29.12 0 54.43 6.44 72.55 12.93v37.54z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGlasses = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobe.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobe.d.ts new file mode 100644 index 0000000000..e78c2c3500 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobe.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGlobe: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobe.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobe.js new file mode 100644 index 0000000000..8bac37e801 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobe.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'globe'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f0ac'; +var svgPathData = 'M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGlobe = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobeAfrica.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobeAfrica.d.ts new file mode 100644 index 0000000000..6617dd9211 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobeAfrica.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGlobeAfrica: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobeAfrica.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobeAfrica.js new file mode 100644 index 0000000000..58ae6dddce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobeAfrica.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'globe-africa'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f57c'; +var svgPathData = 'M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm160 215.5v6.93c0 5.87-3.32 11.24-8.57 13.86l-15.39 7.7a15.485 15.485 0 0 1-15.53-.97l-18.21-12.14a15.52 15.52 0 0 0-13.5-1.81l-2.65.88c-9.7 3.23-13.66 14.79-7.99 23.3l13.24 19.86c2.87 4.31 7.71 6.9 12.89 6.9h8.21c8.56 0 15.5 6.94 15.5 15.5v11.34c0 3.35-1.09 6.62-3.1 9.3l-18.74 24.98c-1.42 1.9-2.39 4.1-2.83 6.43l-4.3 22.83c-.62 3.29-2.29 6.29-4.76 8.56a159.608 159.608 0 0 0-25 29.16l-13.03 19.55a27.756 27.756 0 0 1-23.09 12.36c-10.51 0-20.12-5.94-24.82-15.34a78.902 78.902 0 0 1-8.33-35.29V367.5c0-8.56-6.94-15.5-15.5-15.5h-25.88c-14.49 0-28.38-5.76-38.63-16a54.659 54.659 0 0 1-16-38.63v-14.06c0-17.19 8.1-33.38 21.85-43.7l27.58-20.69a54.663 54.663 0 0 1 32.78-10.93h.89c8.48 0 16.85 1.97 24.43 5.77l14.72 7.36c3.68 1.84 7.93 2.14 11.83.84l47.31-15.77c6.33-2.11 10.6-8.03 10.6-14.7 0-8.56-6.94-15.5-15.5-15.5h-10.09c-4.11 0-8.05-1.63-10.96-4.54l-6.92-6.92a15.493 15.493 0 0 0-10.96-4.54H199.5c-8.56 0-15.5-6.94-15.5-15.5v-4.4c0-7.11 4.84-13.31 11.74-15.04l14.45-3.61c3.74-.94 7-3.23 9.14-6.44l8.08-12.11c2.87-4.31 7.71-6.9 12.89-6.9h24.21c8.56 0 15.5-6.94 15.5-15.5v-21.7C359.23 71.63 422.86 131.02 441.93 208H423.5c-8.56 0-15.5 6.94-15.5 15.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGlobeAfrica = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobeAmericas.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobeAmericas.d.ts new file mode 100644 index 0000000000..679a4e110c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobeAmericas.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGlobeAmericas: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobeAmericas.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobeAmericas.js new file mode 100644 index 0000000000..8568c46cf5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobeAmericas.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'globe-americas'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f57d'; +var svgPathData = 'M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm82.29 357.6c-3.9 3.88-7.99 7.95-11.31 11.28-2.99 3-5.1 6.7-6.17 10.71-1.51 5.66-2.73 11.38-4.77 16.87l-17.39 46.85c-13.76 3-28 4.69-42.65 4.69v-27.38c1.69-12.62-7.64-36.26-22.63-51.25-6-6-9.37-14.14-9.37-22.63v-32.01c0-11.64-6.27-22.34-16.46-27.97-14.37-7.95-34.81-19.06-48.81-26.11-11.48-5.78-22.1-13.14-31.65-21.75l-.8-.72a114.792 114.792 0 0 1-18.06-20.74c-9.38-13.77-24.66-36.42-34.59-51.14 20.47-45.5 57.36-82.04 103.2-101.89l24.01 12.01C203.48 89.74 216 82.01 216 70.11v-11.3c7.99-1.29 16.12-2.11 24.39-2.42l28.3 28.3c6.25 6.25 6.25 16.38 0 22.63L264 112l-10.34 10.34c-3.12 3.12-3.12 8.19 0 11.31l4.69 4.69c3.12 3.12 3.12 8.19 0 11.31l-8 8a8.008 8.008 0 0 1-5.66 2.34h-8.99c-2.08 0-4.08.81-5.58 2.27l-9.92 9.65a8.008 8.008 0 0 0-1.58 9.31l15.59 31.19c2.66 5.32-1.21 11.58-7.15 11.58h-5.64c-1.93 0-3.79-.7-5.24-1.96l-9.28-8.06a16.017 16.017 0 0 0-15.55-3.1l-31.17 10.39a11.95 11.95 0 0 0-8.17 11.34c0 4.53 2.56 8.66 6.61 10.69l11.08 5.54c9.41 4.71 19.79 7.16 30.31 7.16s22.59 27.29 32 32h66.75c8.49 0 16.62 3.37 22.63 9.37l13.69 13.69a30.503 30.503 0 0 1 8.93 21.57 46.536 46.536 0 0 1-13.72 32.98zM417 274.25c-5.79-1.45-10.84-5-14.15-9.97l-17.98-26.97a23.97 23.97 0 0 1 0-26.62l19.59-29.38c2.32-3.47 5.5-6.29 9.24-8.15l12.98-6.49C440.2 193.59 448 223.87 448 256c0 8.67-.74 17.16-1.82 25.54L417 274.25z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGlobeAmericas = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobeAsia.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobeAsia.d.ts new file mode 100644 index 0000000000..c9da69e7d4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobeAsia.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGlobeAsia: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobeAsia.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobeAsia.js new file mode 100644 index 0000000000..fd069b3020 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGlobeAsia.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'globe-asia'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f57e'; +var svgPathData = 'M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm-11.34 240.23c-2.89 4.82-8.1 7.77-13.72 7.77h-.31c-4.24 0-8.31 1.69-11.31 4.69l-5.66 5.66c-3.12 3.12-3.12 8.19 0 11.31l5.66 5.66c3 3 4.69 7.07 4.69 11.31V304c0 8.84-7.16 16-16 16h-6.11c-6.06 0-11.6-3.42-14.31-8.85l-22.62-45.23c-2.44-4.88-8.95-5.94-12.81-2.08l-19.47 19.46c-3 3-7.07 4.69-11.31 4.69H50.81C49.12 277.55 48 266.92 48 256c0-110.28 89.72-200 200-200 21.51 0 42.2 3.51 61.63 9.82l-50.16 38.53c-5.11 3.41-4.63 11.06.86 13.81l10.83 5.41c5.42 2.71 8.84 8.25 8.84 14.31V216c0 4.42-3.58 8-8 8h-3.06c-3.03 0-5.8-1.71-7.15-4.42-1.56-3.12-5.96-3.29-7.76-.3l-17.37 28.95zM408 358.43c0 4.24-1.69 8.31-4.69 11.31l-9.57 9.57c-3 3-7.07 4.69-11.31 4.69h-15.16c-4.24 0-8.31-1.69-11.31-4.69l-13.01-13.01a26.767 26.767 0 0 0-25.42-7.04l-21.27 5.32c-1.27.32-2.57.48-3.88.48h-10.34c-4.24 0-8.31-1.69-11.31-4.69l-11.91-11.91a8.008 8.008 0 0 1-2.34-5.66v-10.2c0-3.27 1.99-6.21 5.03-7.43l39.34-15.74c1.98-.79 3.86-1.82 5.59-3.05l23.71-16.89a7.978 7.978 0 0 1 4.64-1.48h12.09c3.23 0 6.15 1.94 7.39 4.93l5.35 12.85a4 4 0 0 0 3.69 2.46h3.8c1.78 0 3.35-1.18 3.84-2.88l4.2-14.47c.5-1.71 2.06-2.88 3.84-2.88h6.06c2.21 0 4 1.79 4 4v12.93c0 2.12.84 4.16 2.34 5.66l11.91 11.91c3 3 4.69 7.07 4.69 11.31v24.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGlobeAsia = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGolfBall.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGolfBall.d.ts new file mode 100644 index 0000000000..945c745081 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGolfBall.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGolfBall: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGolfBall.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGolfBall.js new file mode 100644 index 0000000000..f783dc2e83 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGolfBall.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'golf-ball'; +var width = 416; +var height = 512; +var ligatures = []; +var unicode = 'f450'; +var svgPathData = 'M96 416h224c0 17.7-14.3 32-32 32h-16c-17.7 0-32 14.3-32 32v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-20c0-17.7-14.3-32-32-32h-16c-17.7 0-32-14.3-32-32zm320-208c0 74.2-39 139.2-97.5 176h-221C39 347.2 0 282.2 0 208 0 93.1 93.1 0 208 0s208 93.1 208 208zm-180.1 43.9c18.3 0 33.1-14.8 33.1-33.1 0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1zm49.1 46.9c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1zm64-64c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGolfBall = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGraduationCap.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGraduationCap.d.ts new file mode 100644 index 0000000000..a94c61533c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGraduationCap.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGraduationCap: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGraduationCap.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGraduationCap.js new file mode 100644 index 0000000000..e2b95a784a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGraduationCap.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'graduation-cap'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f19d'; +var svgPathData = 'M622.884 199.005l-275.817 85.1a96 96 0 0 1-54.134 0L92.398 222.232c-8.564 11.438-11.018 23.05-11.918 38.335C89.778 266.165 96 276.355 96 288c0 11.952-6.557 22.366-16.265 27.861l16.197 123.096c.63 4.786-3.1 9.043-7.932 9.043H40c-4.828 0-8.562-4.253-7.932-9.044L48.265 315.86C38.557 310.366 32 299.952 32 288c0-12.034 6.646-22.511 16.465-27.976.947-17.951 3.974-33.231 12.152-47.597l-43.502-13.422c-22.876-6.801-22.766-39.241 0-46.01l275.817-85.1a96 96 0 0 1 54.134 0l275.817 85.1c22.877 6.801 22.767 39.241.001 46.01zM356.503 314.682l-.207.064-.207.061a127.998 127.998 0 0 1-72.177 0l-.207-.061-.207-.064-150.914-46.57L120 352c0 35.346 89.543 64 200 64s200-28.654 200-64l-12.583-83.888-150.914 46.57z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGraduationCap = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGreaterThan.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGreaterThan.d.ts new file mode 100644 index 0000000000..eb0918766e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGreaterThan.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGreaterThan: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGreaterThan.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGreaterThan.js new file mode 100644 index 0000000000..8e16e547c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGreaterThan.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'greater-than'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f531'; +var svgPathData = 'M365.52 209.85L59.22 67.01c-16.06-7.49-35.15-.54-42.64 15.52L3.01 111.61c-7.49 16.06-.54 35.15 15.52 42.64L236.96 256.1 18.49 357.99C2.47 365.46-4.46 384.5 3.01 400.52l13.52 29C24 445.54 43.04 452.47 59.06 445l306.47-142.91a32.003 32.003 0 0 0 18.48-29v-34.23c-.01-12.45-7.21-23.76-18.49-29.01z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGreaterThan = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGreaterThanEqual.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGreaterThanEqual.d.ts new file mode 100644 index 0000000000..5bc0c3d7a9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGreaterThanEqual.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGreaterThanEqual: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGreaterThanEqual.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGreaterThanEqual.js new file mode 100644 index 0000000000..319287e1f6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGreaterThanEqual.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'greater-than-equal'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f532'; +var svgPathData = 'M55.22 107.69l175.56 68.09-175.44 68.05c-18.39 6.03-27.88 24.39-21.2 41l12.09 30.08c6.68 16.61 26.99 25.19 45.38 19.15L393.02 214.2c13.77-4.52 22.98-16.61 22.98-30.17v-15.96c0-13.56-9.21-25.65-22.98-30.17L91.3 17.92c-18.29-6-38.51 2.53-45.15 19.06L34.12 66.9c-6.64 16.53 2.81 34.79 21.1 40.79zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGreaterThanEqual = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrimace.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrimace.d.ts new file mode 100644 index 0000000000..d1b1e124d6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrimace.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrimace: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrimace.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrimace.js new file mode 100644 index 0000000000..fc3103698b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrimace.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'grimace'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f57f'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM144 400h-8c-17.7 0-32-14.3-32-32v-8h40v40zm0-56h-40v-8c0-17.7 14.3-32 32-32h8v40zm-8-136c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm72 192h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm-8-104c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64 128c0 17.7-14.3 32-32 32h-8v-40h40v8zm0-24h-40v-40h8c17.7 0 32 14.3 32 32v8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrimace = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrin.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrin.d.ts new file mode 100644 index 0000000000..2db97f2346 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrin.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrin: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrin.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrin.js new file mode 100644 index 0000000000..f36e8a5bb5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrin.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'grin'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f580'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm80 256c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrin = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinAlt.d.ts new file mode 100644 index 0000000000..96aa883419 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrinAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinAlt.js new file mode 100644 index 0000000000..0e95cd58e8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'grin-alt'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f581'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm63.7 128.7c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zm-160 0c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrinAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinBeam.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinBeam.d.ts new file mode 100644 index 0000000000..aa16a68040 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinBeam.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrinBeam: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinBeam.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinBeam.js new file mode 100644 index 0000000000..9bc5a0ae86 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinBeam.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'grin-beam'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f582'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 144c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrinBeam = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinBeamSweat.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinBeamSweat.d.ts new file mode 100644 index 0000000000..dd871d4882 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinBeamSweat.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrinBeamSweat: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinBeamSweat.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinBeamSweat.js new file mode 100644 index 0000000000..018d6d3949 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinBeamSweat.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'grin-beam-sweat'; +var width = 504; +var height = 512; +var ligatures = []; +var unicode = 'f583'; +var svgPathData = 'M456 128c26.5 0 48-21 48-47 0-20-28.5-60.4-41.6-77.8-3.2-4.3-9.6-4.3-12.8 0C436.5 20.6 408 61 408 81c0 26 21.5 47 48 47zm0 32c-44.1 0-80-35.4-80-79 0-4.4.3-14.2 8.1-32.2C345 23.1 298.3 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-35.1-7.4-68.4-20.5-98.6-6.3 1.5-12.7 2.6-19.5 2.6zm-128-8c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrinBeamSweat = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinHearts.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinHearts.d.ts new file mode 100644 index 0000000000..e8079eaf0a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinHearts.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrinHearts: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinHearts.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinHearts.js new file mode 100644 index 0000000000..89e5f52114 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinHearts.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'grin-hearts'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f584'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM90.4 183.6c6.7-17.6 26.7-26.7 44.9-21.9l7.1 1.9 2-7.1c5-18.1 22.8-30.9 41.5-27.9 21.4 3.4 34.4 24.2 28.8 44.5L195.3 243c-1.2 4.5-5.9 7.2-10.5 6l-70.2-18.2c-20.4-5.4-31.9-27-24.2-47.2zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm133.4-201.3l-70.2 18.2c-4.5 1.2-9.2-1.5-10.5-6L281.3 173c-5.6-20.3 7.4-41.1 28.8-44.5 18.6-3 36.4 9.8 41.5 27.9l2 7.1 7.1-1.9c18.2-4.7 38.2 4.3 44.9 21.9 7.7 20.3-3.8 41.9-24.2 47.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrinHearts = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinSquint.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinSquint.d.ts new file mode 100644 index 0000000000..be7419339b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinSquint.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrinSquint: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinSquint.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinSquint.js new file mode 100644 index 0000000000..673f76a1aa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinSquint.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'grin-squint'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f585'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrinSquint = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinSquintTears.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinSquintTears.d.ts new file mode 100644 index 0000000000..7ab9e2eac2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinSquintTears.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrinSquintTears: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinSquintTears.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinSquintTears.js new file mode 100644 index 0000000000..a25b4ae8f2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinSquintTears.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'grin-squint-tears'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f586'; +var svgPathData = 'M409.6 111.9c22.6-3.2 73.5-12 88.3-26.8 19.2-19.2 18.9-50.6-.7-70.2S446-5 426.9 14.2c-14.8 14.8-23.5 65.7-26.8 88.3-.8 5.5 3.9 10.2 9.5 9.4zM102.4 400.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm311.7-256.5c-33 3.9-48.6-25.1-45.7-45.7 3.4-24 7.4-42.1 11.5-56.5C285.1-13.4 161.8-.5 80.6 80.6-.5 161.7-13.4 285 41.4 379.9c14.4-4.1 32.4-8 56.5-11.5 33.2-3.9 48.6 25.2 45.7 45.7-3.4 24-7.4 42.1-11.5 56.5 94.8 54.8 218.1 41.9 299.3-39.2s94-204.4 39.2-299.3c-14.4 4.1-32.5 8-56.5 11.5zM255.7 106c3.3-13.2 22.4-11.5 23.6 1.8l4.8 52.3 52.3 4.8c13.4 1.2 14.9 20.3 1.8 23.6l-90.5 22.6c-8.9 2.2-16.7-5.9-14.5-14.5l22.5-90.6zm-90.9 230.3L160 284l-52.3-4.8c-13.4-1.2-14.9-20.3-1.8-23.6l90.5-22.6c8.8-2.2 16.7 5.8 14.5 14.5L188.3 338c-3.1 13.2-22.2 11.7-23.5-1.7zm215.7 44.2c-29.3 29.3-75.7 50.4-116.7 50.4-18.9 0-36.6-4.5-51-14.7-9.8-6.9-8.7-21.8 2-27.2 28.3-14.6 63.9-42.4 97.8-76.3s61.7-69.6 76.3-97.8c5.4-10.5 20.2-11.9 27.3-2 32.3 45.3 7.1 124.7-35.7 167.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrinSquintTears = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinStars.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinStars.d.ts new file mode 100644 index 0000000000..d3fb0699d0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinStars.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrinStars: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinStars.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinStars.js new file mode 100644 index 0000000000..91124cfdc3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinStars.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'grin-stars'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f587'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM94.6 168.9l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.2 1 8.9 8.6 4.3 13.2l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L152 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.6-4.7-1.9-12.3 4.3-13.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm157.7-249.9l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L344 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.5-4.6-1.9-12.2 4.3-13.2l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.3.9 9 8.5 4.4 13.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrinStars = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTears.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTears.d.ts new file mode 100644 index 0000000000..1b284434e3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTears.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrinTears: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTears.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTears.js new file mode 100644 index 0000000000..3208c7f7f1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTears.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'grin-tears'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f588'; +var svgPathData = 'M102.4 256.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm523.4 26.8c-14.8-14.8-65.7-23.5-88.3-26.8-5.5-.8-10.3 3.9-9.5 9.5 3.2 22.6 12 73.5 26.8 88.3 19.2 19.2 50.6 18.9 70.2-.7s20-51.2.8-70.3zm-129.4-12.8c-3.8-26.6 19.1-49.5 45.7-45.7 8.9 1.3 16.8 2.7 24.3 4.1C552.7 104.5 447.7 8 320 8S87.3 104.5 73.6 228.5c7.5-1.4 15.4-2.8 24.3-4.1 33.2-3.9 48.6 25.3 45.7 45.7-11.8 82.3-29.9 100.4-35.8 106.4-.9.9-2 1.6-3 2.5 42.7 74.6 123 125 215.2 125s172.5-50.4 215.2-125.1c-1-.9-2.1-1.5-3-2.5-5.9-5.9-24-24-35.8-106.3zM400 152c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.7 9.2-21.6 20.7-17.9C227.1 330.5 272 336 320 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrinTears = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTongue.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTongue.d.ts new file mode 100644 index 0000000000..db3493165e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTongue.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrinTongue: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTongue.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTongue.js new file mode 100644 index 0000000000..42742273b4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTongue.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'grin-tongue'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f589'; +var svgPathData = 'M248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-34.9 134.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrinTongue = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTongueSquint.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTongueSquint.d.ts new file mode 100644 index 0000000000..63d2e6c32d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTongueSquint.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrinTongueSquint: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTongueSquint.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTongueSquint.js new file mode 100644 index 0000000000..c28e1834f7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTongueSquint.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'grin-tongue-squint'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f58a'; +var svgPathData = 'M293.1 374.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-33.8 210.3l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.7 4.7 7.7 15.9 0 20.6zm163 30c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.8-4.7-7.8-15.9 0-20.6l80-48c11.7-6.9 23.9 7.7 15.4 18L343.6 208l33.6 40.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrinTongueSquint = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTongueWink.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTongueWink.d.ts new file mode 100644 index 0000000000..e9d3ced790 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTongueWink.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrinTongueWink: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTongueWink.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTongueWink.js new file mode 100644 index 0000000000..0615504f75 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinTongueWink.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'grin-tongue-wink'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f58b'; +var svgPathData = 'M344 184c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-56 225l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L112 233c-8.5 7.4-21.6.3-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c1.6 11.1-11.6 18.2-20 10.8zm152 39c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm-50.9 102.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrinTongueWink = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinWink.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinWink.d.ts new file mode 100644 index 0000000000..be6abb7274 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinWink.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGrinWink: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinWink.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinWink.js new file mode 100644 index 0000000000..a619bdbd63 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGrinWink.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'grin-wink'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f58c'; +var svgPathData = 'M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm168 25l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.6 11-11.5 18.2-20 10.8zm-243.1 87.8C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6 20.7 17.9-9.2 55-83.2 93.3-143.8 93.3s-134.5-38.3-143.8-93.3c-2-11.9 9.3-21.6 20.7-17.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGrinWink = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGripHorizontal.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGripHorizontal.d.ts new file mode 100644 index 0000000000..3e29218fc7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGripHorizontal.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGripHorizontal: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGripHorizontal.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGripHorizontal.js new file mode 100644 index 0000000000..e2964fbf4d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGripHorizontal.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'grip-horizontal'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f58d'; +var svgPathData = 'M96 288H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM96 96H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGripHorizontal = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGripVertical.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGripVertical.d.ts new file mode 100644 index 0000000000..e12ec66c4b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGripVertical.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faGripVertical: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGripVertical.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGripVertical.js new file mode 100644 index 0000000000..056be0271a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faGripVertical.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'grip-vertical'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f58e'; +var svgPathData = 'M96 32H32C14.33 32 0 46.33 0 64v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM288 32h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faGripVertical = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHSquare.d.ts new file mode 100644 index 0000000000..38aad9470a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHSquare.js new file mode 100644 index 0000000000..f64c1906cd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'h-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0fd'; +var svgPathData = 'M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-112 48h-32c-8.837 0-16 7.163-16 16v80H160v-80c0-8.837-7.163-16-16-16h-32c-8.837 0-16 7.163-16 16v224c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16v-80h128v80c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144c0-8.837-7.163-16-16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandHolding.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandHolding.d.ts new file mode 100644 index 0000000000..55c9f9ce55 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandHolding.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandHolding: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandHolding.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandHolding.js new file mode 100644 index 0000000000..ed02e70507 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandHolding.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hand-holding'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f4bd'; +var svgPathData = 'M565.3 328.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandHolding = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandHoldingHeart.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandHoldingHeart.d.ts new file mode 100644 index 0000000000..58e1db6f66 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandHoldingHeart.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandHoldingHeart: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandHoldingHeart.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandHoldingHeart.js new file mode 100644 index 0000000000..2443f6597a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandHoldingHeart.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hand-holding-heart'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f4be'; +var svgPathData = 'M275.3 250.5c7 7.4 18.4 7.4 25.5 0l108.9-114.2c31.6-33.2 29.8-88.2-5.6-118.8-30.8-26.7-76.7-21.9-104.9 7.7L288 36.9l-11.1-11.6C248.7-4.4 202.8-9.2 172 17.5c-35.3 30.6-37.2 85.6-5.6 118.8l108.9 114.2zm290 77.6c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandHoldingHeart = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandHoldingUsd.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandHoldingUsd.d.ts new file mode 100644 index 0000000000..5d53845ead --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandHoldingUsd.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandHoldingUsd: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandHoldingUsd.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandHoldingUsd.js new file mode 100644 index 0000000000..1e83cae573 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandHoldingUsd.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hand-holding-usd'; +var width = 544; +var height = 512; +var ligatures = []; +var unicode = 'f4c0'; +var svgPathData = 'M257.6 144.3l50 14.3c3.6 1 6.1 4.4 6.1 8.1 0 4.6-3.8 8.4-8.4 8.4h-32.8c-3.6 0-7.1-.8-10.3-2.2-4.8-2.2-10.4-1.7-14.1 2l-17.5 17.5c-5.3 5.3-4.7 14.3 1.5 18.4 9.5 6.3 20.3 10.1 31.8 11.5V240c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16v-17.6c30.3-3.6 53.3-31 49.3-63-2.9-23-20.7-41.3-42.9-47.7l-50-14.3c-3.6-1-6.1-4.4-6.1-8.1 0-4.6 3.8-8.4 8.4-8.4h32.8c3.6 0 7.1.8 10.3 2.2 4.8 2.2 10.4 1.7 14.1-2l17.5-17.5c5.3-5.3 4.7-14.3-1.5-18.4-9.5-6.3-20.3-10.1-31.8-11.5V16c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16v17.6c-30.3 3.6-53.3 31-49.3 63 2.9 23 20.7 41.3 42.9 47.7zm276.3 183.8c-11.2-10.7-28.5-10-40.3 0L406.4 402c-10.7 9.1-24 14-37.8 14H256.9c-8.3 0-15.1-7.2-15.1-16s6.8-16 15.1-16h73.9c15.1 0 29-10.9 31.4-26.6 3.1-20-11.5-37.4-29.8-37.4H181.3c-25.5 0-50.2 9.3-69.9 26.3L67.5 384H15.1C6.8 384 0 391.2 0 400v96c0 8.8 6.8 16 15.1 16H352c13.7 0 27-4.9 37.8-14l142.8-121c14.4-12.1 15.5-35.3 1.3-48.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandHoldingUsd = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandLizard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandLizard.d.ts new file mode 100644 index 0000000000..a1509b6dc1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandLizard.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandLizard: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandLizard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandLizard.js new file mode 100644 index 0000000000..901f5e14e5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandLizard.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hand-lizard'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f258'; +var svgPathData = 'M384 480h192V363.778a95.998 95.998 0 0 0-14.833-51.263L398.127 54.368A48 48 0 0 0 357.544 32H24C10.745 32 0 42.745 0 56v16c0 30.928 25.072 56 56 56h229.981c12.844 0 21.556 13.067 16.615 24.923l-21.41 51.385A32 32 0 0 1 251.648 224H128c-35.346 0-64 28.654-64 64v8c0 13.255 10.745 24 24 24h147.406a47.995 47.995 0 0 1 25.692 7.455l111.748 70.811A24.001 24.001 0 0 1 384 418.539V480z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandLizard = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPaper.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPaper.d.ts new file mode 100644 index 0000000000..b6b4de0d3b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPaper.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandPaper: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPaper.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPaper.js new file mode 100644 index 0000000000..6799e1a712 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPaper.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hand-paper'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f256'; +var svgPathData = 'M408.781 128.007C386.356 127.578 368 146.36 368 168.79V256h-8V79.79c0-22.43-18.356-41.212-40.781-40.783C297.488 39.423 280 57.169 280 79v177h-8V40.79C272 18.36 253.644-.422 231.219.007 209.488.423 192 18.169 192 40v216h-8V80.79c0-22.43-18.356-41.212-40.781-40.783C121.488 40.423 104 58.169 104 80v235.992l-31.648-43.519c-12.993-17.866-38.009-21.817-55.877-8.823-17.865 12.994-21.815 38.01-8.822 55.877l125.601 172.705A48 48 0 0 0 172.073 512h197.59c22.274 0 41.622-15.324 46.724-37.006l26.508-112.66a192.011 192.011 0 0 0 5.104-43.975V168c.001-21.831-17.487-39.577-39.218-39.993z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandPaper = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPeace.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPeace.d.ts new file mode 100644 index 0000000000..19191e2275 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPeace.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandPeace: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPeace.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPeace.js new file mode 100644 index 0000000000..30c0d420fa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPeace.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hand-peace'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f25b'; +var svgPathData = 'M408 216c-22.092 0-40 17.909-40 40h-8v-32c0-22.091-17.908-40-40-40s-40 17.909-40 40v32h-8V48c0-26.51-21.49-48-48-48s-48 21.49-48 48v208h-13.572L92.688 78.449C82.994 53.774 55.134 41.63 30.461 51.324 5.787 61.017-6.356 88.877 3.337 113.551l74.765 190.342-31.09 24.872c-15.381 12.306-19.515 33.978-9.741 51.081l64 112A39.998 39.998 0 0 0 136 512h240c18.562 0 34.686-12.77 38.937-30.838l32-136A39.97 39.97 0 0 0 448 336v-80c0-22.091-17.908-40-40-40z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandPeace = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointDown.d.ts new file mode 100644 index 0000000000..418c7287f1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointDown.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandPointDown: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointDown.js new file mode 100644 index 0000000000..341e4c53d0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointDown.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hand-point-down'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f0a7'; +var svgPathData = 'M91.826 467.2V317.966c-8.248 5.841-16.558 10.57-24.918 14.153C35.098 345.752-.014 322.222 0 288c.008-18.616 10.897-32.203 29.092-40 28.286-12.122 64.329-78.648 77.323-107.534 7.956-17.857 25.479-28.453 43.845-28.464l.001-.002h171.526c11.812 0 21.897 8.596 23.703 20.269 7.25 46.837 38.483 61.76 38.315 123.731-.007 2.724.195 13.254.195 16 0 50.654-22.122 81.574-71.263 72.6-9.297 18.597-39.486 30.738-62.315 16.45-21.177 24.645-53.896 22.639-70.944 6.299V467.2c0 24.15-20.201 44.8-43.826 44.8-23.283 0-43.826-21.35-43.826-44.8zM112 72V24c0-13.255 10.745-24 24-24h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24zm212-24c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandPointDown = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointLeft.d.ts new file mode 100644 index 0000000000..8608bc5be6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointLeft.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandPointLeft: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointLeft.js new file mode 100644 index 0000000000..edb6bc70b6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointLeft.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hand-point-left'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0a5'; +var svgPathData = 'M44.8 155.826h149.234c-5.841-8.248-10.57-16.558-14.153-24.918C166.248 99.098 189.778 63.986 224 64c18.616.008 32.203 10.897 40 29.092 12.122 28.286 78.648 64.329 107.534 77.323 17.857 7.956 28.453 25.479 28.464 43.845l.002.001v171.526c0 11.812-8.596 21.897-20.269 23.703-46.837 7.25-61.76 38.483-123.731 38.315-2.724-.007-13.254.195-16 .195-50.654 0-81.574-22.122-72.6-71.263-18.597-9.297-30.738-39.486-16.45-62.315-24.645-21.177-22.639-53.896-6.299-70.944H44.8c-24.15 0-44.8-20.201-44.8-43.826 0-23.283 21.35-43.826 44.8-43.826zM440 176h48c13.255 0 24 10.745 24 24v192c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24zm24 212c11.046 0 20-8.954 20-20s-8.954-20-20-20-20 8.954-20 20 8.954 20 20 20z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandPointLeft = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointRight.d.ts new file mode 100644 index 0000000000..f2f9478b8e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointRight.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandPointRight: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointRight.js new file mode 100644 index 0000000000..34b2c25cfb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointRight.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hand-point-right'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0a4'; +var svgPathData = 'M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandPointRight = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointUp.d.ts new file mode 100644 index 0000000000..b854cb84ed --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointUp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandPointUp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointUp.js new file mode 100644 index 0000000000..34bc13593d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointUp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hand-point-up'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f0a6'; +var svgPathData = 'M135.652 0c23.625 0 43.826 20.65 43.826 44.8v99.851c17.048-16.34 49.766-18.346 70.944 6.299 22.829-14.288 53.017-2.147 62.315 16.45C361.878 158.426 384 189.346 384 240c0 2.746-.203 13.276-.195 16 .168 61.971-31.065 76.894-38.315 123.731C343.683 391.404 333.599 400 321.786 400H150.261l-.001-.002c-18.366-.011-35.889-10.607-43.845-28.464C93.421 342.648 57.377 276.122 29.092 264 10.897 256.203.008 242.616 0 224c-.014-34.222 35.098-57.752 66.908-44.119 8.359 3.583 16.67 8.312 24.918 14.153V44.8c0-23.45 20.543-44.8 43.826-44.8zM136 416h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24v-48c0-13.255 10.745-24 24-24zm168 28c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandPointUp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointer.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointer.d.ts new file mode 100644 index 0000000000..1328b3d1f6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointer.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandPointer: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointer.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointer.js new file mode 100644 index 0000000000..bfab24d35c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandPointer.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hand-pointer'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f25a'; +var svgPathData = 'M448 240v96c0 3.084-.356 6.159-1.063 9.162l-32 136C410.686 499.23 394.562 512 376 512H168a40.004 40.004 0 0 1-32.35-16.473l-127.997-176c-12.993-17.866-9.043-42.883 8.822-55.876 17.867-12.994 42.884-9.043 55.877 8.823L104 315.992V40c0-22.091 17.908-40 40-40s40 17.909 40 40v200h8v-40c0-22.091 17.908-40 40-40s40 17.909 40 40v40h8v-24c0-22.091 17.908-40 40-40s40 17.909 40 40v24h8c0-22.091 17.908-40 40-40s40 17.909 40 40zm-256 80h-8v96h8v-96zm88 0h-8v96h8v-96zm88 0h-8v96h8v-96z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandPointer = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandRock.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandRock.d.ts new file mode 100644 index 0000000000..0791b11bc2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandRock.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandRock: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandRock.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandRock.js new file mode 100644 index 0000000000..aa1ff7c29a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandRock.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hand-rock'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f255'; +var svgPathData = 'M512 128.79c0-26.322-20.861-48.344-47.18-48.783C437.935 79.558 416 101.217 416 128h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C333.935 47.558 312 69.217 312 96v32h-8V80.79c0-26.322-20.861-48.344-47.18-48.783C229.935 31.558 208 53.217 208 80v48h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C125.935 47.558 104 69.217 104 96v136l-8-7.111V176.79c0-26.322-20.861-48.344-47.18-48.783C21.935 127.558 0 149.217 0 176v66.445a95.998 95.998 0 0 0 32.221 71.751l111.668 99.261A47.999 47.999 0 0 1 160 449.333V456c0 13.255 10.745 24 24 24h240c13.255 0 24-10.745 24-24v-2.921a96.01 96.01 0 0 1 7.523-37.254l48.954-116.265A96.002 96.002 0 0 0 512 262.306V128.79z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandRock = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandScissors.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandScissors.d.ts new file mode 100644 index 0000000000..381e75b98d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandScissors.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandScissors: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandScissors.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandScissors.js new file mode 100644 index 0000000000..d7cee0b923 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandScissors.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hand-scissors'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f257'; +var svgPathData = 'M216 440c0-22.092 17.909-40 40-40v-8h-32c-22.091 0-40-17.908-40-40s17.909-40 40-40h32v-8H48c-26.51 0-48-21.49-48-48s21.49-48 48-48h208v-13.572l-177.551-69.74c-24.674-9.694-36.818-37.555-27.125-62.228 9.693-24.674 37.554-36.817 62.228-27.124l190.342 74.765 24.872-31.09c12.306-15.381 33.978-19.515 51.081-9.741l112 64A40.002 40.002 0 0 1 512 168v240c0 18.562-12.77 34.686-30.838 38.937l-136 32A39.982 39.982 0 0 1 336 480h-80c-22.091 0-40-17.908-40-40z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandScissors = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandSpock.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandSpock.d.ts new file mode 100644 index 0000000000..01ca8d0d6b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandSpock.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandSpock: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandSpock.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandSpock.js new file mode 100644 index 0000000000..d521710fb1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandSpock.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hand-spock'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f259'; +var svgPathData = 'M10.872 316.585c15.139-16.086 40.454-16.854 56.543-1.713L128 371.893v-79.405L88.995 120.865c-4.896-21.542 8.598-42.974 30.14-47.87 21.549-4.894 42.975 8.599 47.87 30.141L201.747 256h9.833L164.016 48.966c-4.946-21.531 8.498-42.994 30.028-47.94 21.532-4.95 42.994 8.498 47.94 30.028L293.664 256h15.105l48.425-193.702c5.357-21.432 27.075-34.462 48.507-29.104 21.432 5.358 34.463 27.075 29.104 48.507L391.231 256h11.08l30.768-129.265c5.117-21.491 26.685-34.768 48.177-29.647 21.491 5.117 34.765 26.686 29.647 48.177l-36.292 152.467A96.024 96.024 0 0 0 472 319.967v42.102a96.002 96.002 0 0 1-3.96 27.287l-26.174 88.287C435.825 498.022 417.101 512 395.846 512H179.172a48.002 48.002 0 0 1-32.898-13.046L12.585 373.128c-16.087-15.141-16.853-40.456-1.713-56.543z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandSpock = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHands.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHands.d.ts new file mode 100644 index 0000000000..eb064b9a32 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHands.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHands: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHands.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHands.js new file mode 100644 index 0000000000..20a9672665 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHands.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hands'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f4c2'; +var svgPathData = 'M204.8 230.4c-10.6-14.1-30.7-17-44.8-6.4-14.1 10.6-17 30.7-6.4 44.8l38.1 50.8c4.8 6.4 4.1 15.3-1.5 20.9l-12.8 12.8c-6.7 6.7-17.6 6.2-23.6-1.1L64 244.4V96c0-17.7-14.3-32-32-32S0 78.3 0 96v218.4c0 10.9 3.7 21.5 10.5 30l104.1 134.3c5 6.5 8.4 13.9 10.4 21.7 1.8 6.9 8.1 11.6 15.3 11.6H272c8.8 0 16-7.2 16-16V384c0-27.7-9-54.6-25.6-76.8l-57.6-76.8zM608 64c-17.7 0-32 14.3-32 32v148.4l-89.8 107.8c-6 7.2-17 7.7-23.6 1.1l-12.8-12.8c-5.6-5.6-6.3-14.5-1.5-20.9l38.1-50.8c10.6-14.1 7.7-34.2-6.4-44.8-14.1-10.6-34.2-7.7-44.8 6.4l-57.6 76.8C361 329.4 352 356.3 352 384v112c0 8.8 7.2 16 16 16h131.7c7.1 0 13.5-4.7 15.3-11.6 2-7.8 5.4-15.2 10.4-21.7l104.1-134.3c6.8-8.5 10.5-19.1 10.5-30V96c0-17.7-14.3-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHands = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandsHelping.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandsHelping.d.ts new file mode 100644 index 0000000000..3587cd4382 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandsHelping.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandsHelping: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandsHelping.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandsHelping.js new file mode 100644 index 0000000000..4ffae0782b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandsHelping.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hands-helping'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f4c4'; +var svgPathData = 'M488 192H336v56c0 39.7-32.3 72-72 72s-72-32.3-72-72V126.4l-64.9 39C107.8 176.9 96 197.8 96 220.2v47.3l-80 46.2C.7 322.5-4.6 342.1 4.3 357.4l80 138.6c8.8 15.3 28.4 20.5 43.7 11.7L231.4 448H368c35.3 0 64-28.7 64-64h16c17.7 0 32-14.3 32-32v-64h8c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zm147.7-37.4L555.7 16C546.9.7 527.3-4.5 512 4.3L408.6 64H306.4c-12 0-23.7 3.4-33.9 9.7L239 94.6c-9.4 5.8-15 16.1-15 27.1V248c0 22.1 17.9 40 40 40s40-17.9 40-40v-88h184c30.9 0 56 25.1 56 56v28.5l80-46.2c15.3-8.9 20.5-28.4 11.7-43.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandsHelping = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandshake.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandshake.d.ts new file mode 100644 index 0000000000..fc43463f60 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandshake.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHandshake: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandshake.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandshake.js new file mode 100644 index 0000000000..51b7d7e5c8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHandshake.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'handshake'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f2b5'; +var svgPathData = 'M434.7 64h-85.9c-8 0-15.7 3-21.6 8.4l-98.3 90c-.1.1-.2.3-.3.4-16.6 15.6-16.3 40.5-2.1 56 12.7 13.9 39.4 17.6 56.1 2.7.1-.1.3-.1.4-.2l79.9-73.2c6.5-5.9 16.7-5.5 22.6 1 6 6.5 5.5 16.6-1 22.6l-26.1 23.9L504 313.8c2.9 2.4 5.5 5 7.9 7.7V128l-54.6-54.6c-5.9-6-14.1-9.4-22.6-9.4zM544 128.2v223.9c0 17.7 14.3 32 32 32h64V128.2h-96zm48 223.9c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM0 384h64c17.7 0 32-14.3 32-32V128.2H0V384zm48-63.9c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16c0-8.9 7.2-16 16-16zm435.9 18.6L334.6 217.5l-30 27.5c-29.7 27.1-75.2 24.5-101.7-4.4-26.9-29.4-24.8-74.9 4.4-101.7L289.1 64h-83.8c-8.5 0-16.6 3.4-22.6 9.4L128 128v223.9h18.3l90.5 81.9c27.4 22.3 67.7 18.1 90-9.3l.2-.2 17.9 15.5c15.9 13 39.4 10.5 52.3-5.4l31.4-38.6 5.4 4.4c13.7 11.1 33.9 9.1 45-4.7l9.5-11.7c11.2-13.8 9.1-33.9-4.6-45.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHandshake = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHashtag.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHashtag.d.ts new file mode 100644 index 0000000000..91554f1f4d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHashtag.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHashtag: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHashtag.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHashtag.js new file mode 100644 index 0000000000..f81b5d27b8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHashtag.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hashtag'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f292'; +var svgPathData = 'M440.667 182.109l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l14.623-81.891C377.123 38.754 371.468 32 363.997 32h-40.632a12 12 0 0 0-11.813 9.891L296.175 128H197.54l14.623-81.891C213.477 38.754 207.822 32 200.35 32h-40.632a12 12 0 0 0-11.813 9.891L132.528 128H53.432a12 12 0 0 0-11.813 9.891l-7.143 40C33.163 185.246 38.818 192 46.289 192h74.81L98.242 320H19.146a12 12 0 0 0-11.813 9.891l-7.143 40C-1.123 377.246 4.532 384 12.003 384h74.81L72.19 465.891C70.877 473.246 76.532 480 84.003 480h40.632a12 12 0 0 0 11.813-9.891L151.826 384h98.634l-14.623 81.891C234.523 473.246 240.178 480 247.65 480h40.632a12 12 0 0 0 11.813-9.891L315.472 384h79.096a12 12 0 0 0 11.813-9.891l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l22.857-128h79.096a12 12 0 0 0 11.813-9.891zM261.889 320h-98.634l22.857-128h98.634l-22.857 128z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHashtag = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHdd.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHdd.d.ts new file mode 100644 index 0000000000..922fac4d4a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHdd.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHdd: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHdd.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHdd.js new file mode 100644 index 0000000000..5b9f573f69 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHdd.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hdd'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f0a0'; +var svgPathData = 'M576 304v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48zm-48-80a79.557 79.557 0 0 1 30.777 6.165L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L17.223 230.165A79.557 79.557 0 0 1 48 224h480zm-48 96c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm-96 0c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHdd = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeading.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeading.d.ts new file mode 100644 index 0000000000..478ef164b7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeading.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHeading: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeading.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeading.js new file mode 100644 index 0000000000..682995c724 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeading.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'heading'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1dc'; +var svgPathData = 'M496 80V48c0-8.837-7.163-16-16-16H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.621v128H154.379V96H192c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.275v320H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.621V288H357.62v128H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.275V96H480c8.837 0 16-7.163 16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHeading = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeadphones.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeadphones.d.ts new file mode 100644 index 0000000000..e8fd36c6aa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeadphones.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHeadphones: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeadphones.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeadphones.js new file mode 100644 index 0000000000..1f92e1742b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeadphones.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'headphones'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f025'; +var svgPathData = 'M256 32C114.52 32 0 146.496 0 288v48a32 32 0 0 0 17.689 28.622l14.383 7.191C34.083 431.903 83.421 480 144 480h24c13.255 0 24-10.745 24-24V280c0-13.255-10.745-24-24-24h-24c-31.342 0-59.671 12.879-80 33.627V288c0-105.869 86.131-192 192-192s192 86.131 192 192v1.627C427.671 268.879 399.342 256 368 256h-24c-13.255 0-24 10.745-24 24v176c0 13.255 10.745 24 24 24h24c60.579 0 109.917-48.098 111.928-108.187l14.382-7.191A32 32 0 0 0 512 336v-48c0-141.479-114.496-256-256-256z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHeadphones = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeadphonesAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeadphonesAlt.d.ts new file mode 100644 index 0000000000..c4fabe6d4d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeadphonesAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHeadphonesAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeadphonesAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeadphonesAlt.js new file mode 100644 index 0000000000..05fe7e0766 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeadphonesAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'headphones-alt'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f58f'; +var svgPathData = 'M160 288h-16c-35.35 0-64 28.7-64 64.12v63.76c0 35.41 28.65 64.12 64 64.12h16c17.67 0 32-14.36 32-32.06V320.06c0-17.71-14.33-32.06-32-32.06zm208 0h-16c-17.67 0-32 14.35-32 32.06v127.88c0 17.7 14.33 32.06 32 32.06h16c35.35 0 64-28.71 64-64.12v-63.76c0-35.41-28.65-64.12-64-64.12zM256 32C112.91 32 4.57 151.13 0 288v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288c0-114.67 93.33-207.8 208-207.82 114.67.02 208 93.15 208 207.82v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288C507.43 151.13 399.09 32 256 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHeadphonesAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeadset.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeadset.d.ts new file mode 100644 index 0000000000..0630644ffe --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeadset.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHeadset: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeadset.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeadset.js new file mode 100644 index 0000000000..1d15858d84 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeadset.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'headset'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f590'; +var svgPathData = 'M192 208c0-17.67-14.33-32-32-32h-16c-35.35 0-64 28.65-64 64v48c0 35.35 28.65 64 64 64h16c17.67 0 32-14.33 32-32V208zm176 144c35.35 0 64-28.65 64-64v-48c0-35.35-28.65-64-64-64h-16c-17.67 0-32 14.33-32 32v112c0 17.67 14.33 32 32 32h16zM256 0C113.18 0 4.58 118.83 0 256v16c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-16c0-114.69 93.31-208 208-208s208 93.31 208 208h-.12c.08 2.43.12 165.72.12 165.72 0 23.35-18.93 42.28-42.28 42.28H320c0-26.51-21.49-48-48-48h-32c-26.51 0-48 21.49-48 48s21.49 48 48 48h181.72c49.86 0 90.28-40.42 90.28-90.28V256C507.42 118.83 398.82 0 256 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHeadset = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeart.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeart.d.ts new file mode 100644 index 0000000000..c109fc37cd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeart.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHeart: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeart.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeart.js new file mode 100644 index 0000000000..c230a6b9a4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeart.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'heart'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f004'; +var svgPathData = 'M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHeart = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeartbeat.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeartbeat.d.ts new file mode 100644 index 0000000000..e69879920d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeartbeat.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHeartbeat: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeartbeat.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeartbeat.js new file mode 100644 index 0000000000..294d3b3f87 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHeartbeat.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'heartbeat'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f21e'; +var svgPathData = 'M320.2 243.8l-49.7 99.4c-6 12.1-23.4 11.7-28.9-.6l-56.9-126.3-30 71.7H60.6l182.5 186.5c7.1 7.3 18.6 7.3 25.7 0L451.4 288H342.3l-22.1-44.2zM473.7 73.9l-2.4-2.5c-51.5-52.6-135.8-52.6-187.4 0L256 100l-27.9-28.5c-51.5-52.7-135.9-52.7-187.4 0l-2.4 2.4C-10.4 123.7-12.5 203 31 256h102.4l35.9-86.2c5.4-12.9 23.6-13.2 29.4-.4l58.2 129.3 49-97.9c5.9-11.8 22.7-11.8 28.6 0l27.6 55.2H481c43.5-53 41.4-132.3-7.3-182.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHeartbeat = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHelicopter.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHelicopter.d.ts new file mode 100644 index 0000000000..17020d7f8f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHelicopter.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHelicopter: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHelicopter.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHelicopter.js new file mode 100644 index 0000000000..defa741e97 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHelicopter.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'helicopter'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f533'; +var svgPathData = 'M304 384h272c17.67 0 32-14.33 32-32 0-123.71-100.29-224-224-224V64h176c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H144c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h176v64H112L68.8 70.4C65.78 66.37 61.03 64 56 64H16.01C5.6 64-2.04 73.78.49 83.88L32 192l160 64 86.4 115.2A31.992 31.992 0 0 0 304 384zm112-188.49C478.55 208.3 528.03 257.44 540.79 320H416V195.51zm219.37 263.3l-22.15-22.2c-6.25-6.26-16.24-6.1-22.64.01-7.09 6.77-13.84 11.25-24.64 11.25H240c-8.84 0-16 7.18-16 16.03v32.06c0 8.85 7.16 16.03 16 16.03h325.94c14.88 0 35.3-.47 68.45-29.52 7.02-6.14 7.57-17.05.98-23.66z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHelicopter = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHighlighter.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHighlighter.d.ts new file mode 100644 index 0000000000..5e9a5b4780 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHighlighter.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHighlighter: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHighlighter.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHighlighter.js new file mode 100644 index 0000000000..30ab952450 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHighlighter.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'highlighter'; +var width = 544; +var height = 512; +var ligatures = []; +var unicode = 'f591'; +var svgPathData = 'M0 479.98L99.92 512l35.45-35.45-67.04-67.04L0 479.98zm124.61-240.01a36.592 36.592 0 0 0-10.79 38.1l13.05 42.83-50.93 50.94 96.23 96.23 50.86-50.86 42.74 13.08c13.73 4.2 28.65-.01 38.15-10.78l35.55-41.64-173.34-173.34-41.52 35.44zm403.31-160.7l-63.2-63.2c-20.49-20.49-53.38-21.52-75.12-2.35L190.55 183.68l169.77 169.78L530.27 154.4c19.18-21.74 18.15-54.63-2.35-75.13z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHighlighter = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHistory.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHistory.d.ts new file mode 100644 index 0000000000..3f95215435 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHistory.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHistory: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHistory.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHistory.js new file mode 100644 index 0000000000..793402c7a1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHistory.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'history'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1da'; +var svgPathData = 'M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHistory = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHockeyPuck.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHockeyPuck.d.ts new file mode 100644 index 0000000000..9760d7a05b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHockeyPuck.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHockeyPuck: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHockeyPuck.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHockeyPuck.js new file mode 100644 index 0000000000..adcabde2b8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHockeyPuck.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hockey-puck'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f453'; +var svgPathData = 'M0 160c0-53 114.6-96 256-96s256 43 256 96-114.6 96-256 96S0 213 0 160zm0 82.2V352c0 53 114.6 96 256 96s256-43 256-96V242.2c-113.4 82.3-398.5 82.4-512 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHockeyPuck = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHome.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHome.d.ts new file mode 100644 index 0000000000..7106505592 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHome.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHome: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHome.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHome.js new file mode 100644 index 0000000000..280940a784 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHome.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'home'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f015'; +var svgPathData = 'M488 312.7V456c0 13.3-10.7 24-24 24H348c-6.6 0-12-5.4-12-12V356c0-6.6-5.4-12-12-12h-72c-6.6 0-12 5.4-12 12v112c0 6.6-5.4 12-12 12H112c-13.3 0-24-10.7-24-24V312.7c0-3.6 1.6-7 4.4-9.3l188-154.8c4.4-3.6 10.8-3.6 15.3 0l188 154.8c2.7 2.3 4.3 5.7 4.3 9.3zm83.6-60.9L488 182.9V44.4c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12V117l-89.5-73.7c-17.7-14.6-43.3-14.6-61 0L4.4 251.8c-5.1 4.2-5.8 11.8-1.6 16.9l25.5 31c4.2 5.1 11.8 5.8 16.9 1.6l235.2-193.7c4.4-3.6 10.8-3.6 15.3 0l235.2 193.7c5.1 4.2 12.7 3.5 16.9-1.6l25.5-31c4.2-5.2 3.4-12.7-1.7-16.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHome = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHospital.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHospital.d.ts new file mode 100644 index 0000000000..95cf60a828 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHospital.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHospital: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHospital.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHospital.js new file mode 100644 index 0000000000..b768989fb1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHospital.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hospital'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0f8'; +var svgPathData = 'M448 492v20H0v-20c0-6.627 5.373-12 12-12h20V120c0-13.255 10.745-24 24-24h88V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v72h88c13.255 0 24 10.745 24 24v360h20c6.627 0 12 5.373 12 12zM308 192h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-168 64h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm104 128h-40c-6.627 0-12 5.373-12 12v84h64v-84c0-6.627-5.373-12-12-12zm64-96h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-116 12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zM182 96h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHospital = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHospitalAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHospitalAlt.d.ts new file mode 100644 index 0000000000..38b8f08044 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHospitalAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHospitalAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHospitalAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHospitalAlt.js new file mode 100644 index 0000000000..90622d8197 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHospitalAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hospital-alt'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f47d'; +var svgPathData = 'M544 96H416V32c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32v368c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16V128c0-17.7-14.3-32-32-32zM160 436c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm160 128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm16-170c0 3.3-2.7 6-6 6h-26v26c0 3.3-2.7 6-6 6h-20c-3.3 0-6-2.7-6-6v-26h-26c-3.3 0-6-2.7-6-6v-20c0-3.3 2.7-6 6-6h26V86c0-3.3 2.7-6 6-6h20c3.3 0 6 2.7 6 6v26h26c3.3 0 6 2.7 6 6v20zm144 298c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHospitalAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHospitalSymbol.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHospitalSymbol.d.ts new file mode 100644 index 0000000000..c09fcd36da --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHospitalSymbol.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHospitalSymbol: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHospitalSymbol.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHospitalSymbol.js new file mode 100644 index 0000000000..9e19f97f27 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHospitalSymbol.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hospital-symbol'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f47e'; +var svgPathData = 'M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm112 376c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-88h-96v88c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V136c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v88h96v-88c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v240z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHospitalSymbol = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHotTub.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHotTub.d.ts new file mode 100644 index 0000000000..546fcea588 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHotTub.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHotTub: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHotTub.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHotTub.js new file mode 100644 index 0000000000..9133792496 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHotTub.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hot-tub'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f593'; +var svgPathData = 'M414.21 177.65c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C378.96 6.14 372.22 0 364.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zm-108 0c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C270.96 6.14 264.22 0 256.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zM480 256H256l-110.93-83.2a63.99 63.99 0 0 0-38.4-12.8H64c-35.35 0-64 28.65-64 64v224c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64V288c0-17.67-14.33-32-32-32zM128 440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zM64 128c35.35 0 64-28.65 64-64S99.35 0 64 0 0 28.65 0 64s28.65 64 64 64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHotTub = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHotel.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHotel.d.ts new file mode 100644 index 0000000000..8fbad0ce35 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHotel.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHotel: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHotel.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHotel.js new file mode 100644 index 0000000000..6ea9f47413 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHotel.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hotel'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f594'; +var svgPathData = 'M560 64c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h15.98v384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h240v-80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v80h240c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-16V64h16zm-304 44.8c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm0 96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm-128-96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zM179.2 256h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8zM192 384c0-53.02 42.98-96 96-96s96 42.98 96 96H192zm256-140.8c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-96c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHotel = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglass.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglass.d.ts new file mode 100644 index 0000000000..71d0090c4b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglass.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHourglass: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglass.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglass.js new file mode 100644 index 0000000000..5d37f4ee9c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglass.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hourglass'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f254'; +var svgPathData = 'M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHourglass = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglassEnd.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglassEnd.d.ts new file mode 100644 index 0000000000..de6b4317ca --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglassEnd.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHourglassEnd: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglassEnd.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglassEnd.js new file mode 100644 index 0000000000..0b70682300 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglassEnd.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hourglass-end'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f253'; +var svgPathData = 'M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64zM192 208c-57.787 0-104-66.518-104-144h208c0 77.945-46.51 144-104 144z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHourglassEnd = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglassHalf.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglassHalf.d.ts new file mode 100644 index 0000000000..7fca241f0c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglassHalf.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHourglassHalf: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglassHalf.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglassHalf.js new file mode 100644 index 0000000000..ad1d8ace8b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglassHalf.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hourglass-half'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f252'; +var svgPathData = 'M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-75.078 384H99.08c17.059-46.797 52.096-80 92.92-80 40.821 0 75.862 33.196 92.922 80zm.019-256H99.078C91.988 108.548 88 86.748 88 64h208c0 22.805-3.987 44.587-11.059 64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHourglassHalf = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglassStart.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglassStart.d.ts new file mode 100644 index 0000000000..24d1b00a07 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglassStart.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faHourglassStart: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglassStart.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglassStart.js new file mode 100644 index 0000000000..b98ef52fec --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faHourglassStart.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'hourglass-start'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f251'; +var svgPathData = 'M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-64 448H88c0-77.458 46.204-144 104-144 57.786 0 104 66.517 104 144z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faHourglassStart = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faICursor.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faICursor.d.ts new file mode 100644 index 0000000000..d568467584 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faICursor.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faICursor: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faICursor.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faICursor.js new file mode 100644 index 0000000000..d8cada255c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faICursor.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'i-cursor'; +var width = 256; +var height = 512; +var ligatures = []; +var unicode = 'f246'; +var svgPathData = 'M256 52.048V12.065C256 5.496 250.726.148 244.158.066 211.621-.344 166.469.011 128 37.959 90.266.736 46.979-.114 11.913.114 5.318.157 0 5.519 0 12.114v39.645c0 6.687 5.458 12.078 12.145 11.998C38.111 63.447 96 67.243 96 112.182V224H60c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h36v112c0 44.932-56.075 48.031-83.95 47.959C5.404 447.942 0 453.306 0 459.952v39.983c0 6.569 5.274 11.917 11.842 11.999 32.537.409 77.689.054 116.158-37.894 37.734 37.223 81.021 38.073 116.087 37.845 6.595-.043 11.913-5.405 11.913-12V460.24c0-6.687-5.458-12.078-12.145-11.998C217.889 448.553 160 444.939 160 400V288h36c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-36V112.182c0-44.932 56.075-48.213 83.95-48.142 6.646.018 12.05-5.346 12.05-11.992z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faICursor = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIdBadge.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIdBadge.d.ts new file mode 100644 index 0000000000..3f91d32534 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIdBadge.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faIdBadge: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIdBadge.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIdBadge.js new file mode 100644 index 0000000000..3482677597 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIdBadge.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'id-badge'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f2c1'; +var svgPathData = 'M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM144 32h96c8.8 0 16 7.2 16 16s-7.2 16-16 16h-96c-8.8 0-16-7.2-16-16s7.2-16 16-16zm48 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 416 80 407.4 80 396.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faIdBadge = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIdCard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIdCard.d.ts new file mode 100644 index 0000000000..21863b0d2f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIdCard.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faIdCard: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIdCard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIdCard.js new file mode 100644 index 0000000000..a057d81851 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIdCard.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'id-card'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f2c2'; +var svgPathData = 'M528 32H48C21.5 32 0 53.5 0 80v16h576V80c0-26.5-21.5-48-48-48zM0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V128H0v304zm352-232c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zM176 192c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zM67.1 396.2C75.5 370.5 99.6 352 128 352h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.9-5.2 19.8-15.6 19.8H82.7c-10.4 0-18.8-10-15.6-19.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faIdCard = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIdCardAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIdCardAlt.d.ts new file mode 100644 index 0000000000..74b1b56827 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIdCardAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faIdCardAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIdCardAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIdCardAlt.js new file mode 100644 index 0000000000..4ad55164d7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIdCardAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'id-card-alt'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f47f'; +var svgPathData = 'M528 64H384v96H192V64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM288 224c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm93.3 224H194.7c-10.4 0-18.8-10-15.6-19.8 8.3-25.6 32.4-44.2 60.9-44.2h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.8-5.2 19.8-15.6 19.8zM352 32c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v96h128V32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faIdCardAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faImage.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faImage.d.ts new file mode 100644 index 0000000000..3a16318cd2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faImage.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faImage: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faImage.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faImage.js new file mode 100644 index 0000000000..28d5378a81 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faImage.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'image'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f03e'; +var svgPathData = 'M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faImage = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faImages.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faImages.d.ts new file mode 100644 index 0000000000..c03f525e44 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faImages.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faImages: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faImages.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faImages.js new file mode 100644 index 0000000000..91d24e06cf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faImages.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'images'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f302'; +var svgPathData = 'M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v208c0 44.112 35.888 80 80 80h336zm96-80V80c0-26.51-21.49-48-48-48H144c-26.51 0-48 21.49-48 48v256c0 26.51 21.49 48 48 48h384c26.51 0 48-21.49 48-48zM256 128c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-96 144l55.515-55.515c4.686-4.686 12.284-4.686 16.971 0L272 256l135.515-135.515c4.686-4.686 12.284-4.686 16.971 0L512 208v112H160v-48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faImages = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInbox.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInbox.d.ts new file mode 100644 index 0000000000..9760916242 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInbox.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faInbox: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInbox.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInbox.js new file mode 100644 index 0000000000..b85d867570 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInbox.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'inbox'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f01c'; +var svgPathData = 'M567.938 243.908L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L8.062 243.908A47.994 47.994 0 0 0 0 270.533V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V270.533a47.994 47.994 0 0 0-8.062-26.625zM162.252 128h251.497l85.333 128H376l-32 64H232l-32-64H76.918l85.334-128z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faInbox = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIndent.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIndent.d.ts new file mode 100644 index 0000000000..61eed61aa4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIndent.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faIndent: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIndent.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIndent.js new file mode 100644 index 0000000000..248a519e97 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIndent.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'indent'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f03c'; +var svgPathData = 'M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm176 144h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm-52.687-111.313l-96-95.984C17.266 138.652 0 145.776 0 160.016v191.975c0 14.329 17.325 21.304 27.313 11.313l96-95.992c6.249-6.247 6.249-16.377 0-22.625z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faIndent = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIndustry.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIndustry.d.ts new file mode 100644 index 0000000000..77892840bd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIndustry.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faIndustry: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIndustry.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIndustry.js new file mode 100644 index 0000000000..6e91074787 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faIndustry.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'industry'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f275'; +var svgPathData = 'M475.115 163.781L336 252.309v-68.28c0-18.916-20.931-30.399-36.885-20.248L160 252.309V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h464c13.255 0 24-10.745 24-24V184.029c0-18.917-20.931-30.399-36.885-20.248z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faIndustry = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInfinity.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInfinity.d.ts new file mode 100644 index 0000000000..224fc365f9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInfinity.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faInfinity: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInfinity.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInfinity.js new file mode 100644 index 0000000000..7e76aaad30 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInfinity.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'infinity'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f534'; +var svgPathData = 'M471.1 96C405 96 353.3 137.3 320 174.6 286.7 137.3 235 96 168.9 96 75.8 96 0 167.8 0 256s75.8 160 168.9 160c66.1 0 117.8-41.3 151.1-78.6 33.3 37.3 85 78.6 151.1 78.6 93.1 0 168.9-71.8 168.9-160S564.2 96 471.1 96zM168.9 320c-40.2 0-72.9-28.7-72.9-64s32.7-64 72.9-64c38.2 0 73.4 36.1 94 64-20.4 27.6-55.9 64-94 64zm302.2 0c-38.2 0-73.4-36.1-94-64 20.4-27.6 55.9-64 94-64 40.2 0 72.9 28.7 72.9 64s-32.7 64-72.9 64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faInfinity = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInfo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInfo.d.ts new file mode 100644 index 0000000000..09a3e26329 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInfo.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faInfo: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInfo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInfo.js new file mode 100644 index 0000000000..5ff6bf518a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInfo.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'info'; +var width = 192; +var height = 512; +var ligatures = []; +var unicode = 'f129'; +var svgPathData = 'M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faInfo = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInfoCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInfoCircle.d.ts new file mode 100644 index 0000000000..5a801bccbb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInfoCircle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faInfoCircle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInfoCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInfoCircle.js new file mode 100644 index 0000000000..c24c8415ab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faInfoCircle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'info-circle'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f05a'; +var svgPathData = 'M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faInfoCircle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faItalic.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faItalic.d.ts new file mode 100644 index 0000000000..a966a7a177 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faItalic.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faItalic: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faItalic.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faItalic.js new file mode 100644 index 0000000000..9a74e68d6b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faItalic.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'italic'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f033'; +var svgPathData = 'M204.758 416h-33.849l62.092-320h40.725a16 16 0 0 0 15.704-12.937l6.242-32C297.599 41.184 290.034 32 279.968 32H120.235a16 16 0 0 0-15.704 12.937l-6.242 32C96.362 86.816 103.927 96 113.993 96h33.846l-62.09 320H46.278a16 16 0 0 0-15.704 12.935l-6.245 32C22.402 470.815 29.967 480 40.034 480h158.479a16 16 0 0 0 15.704-12.935l6.245-32c1.927-9.88-5.638-19.065-15.704-19.065z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faItalic = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faJoint.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faJoint.d.ts new file mode 100644 index 0000000000..5aa2c14bbf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faJoint.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faJoint: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faJoint.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faJoint.js new file mode 100644 index 0000000000..f75b1789ff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faJoint.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'joint'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f595'; +var svgPathData = 'M444.34 181.1c22.38 15.68 35.66 41.16 35.66 68.59V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-43.24-21.01-83.41-56.34-108.06C463.85 125.02 448 99.34 448 70.31V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v66.4c0 43.69 24.56 81.63 60.34 106.7zM194.97 358.98C126.03 370.07 59.69 394.69 0 432c83.65 52.28 180.3 80 278.94 80h88.57L254.79 380.49c-14.74-17.2-37.45-25.11-59.82-21.51zM553.28 87.09c-5.67-3.8-9.28-9.96-9.28-16.78V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v62.31c0 22.02 10.17 43.41 28.64 55.39C550.79 153.04 576 199.54 576 249.69V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-65.44-32.41-126.19-86.72-162.6zM360.89 352.05c-34.4.06-86.81.15-88.21.17l117.8 137.43A63.987 63.987 0 0 0 439.07 512h88.45L409.57 374.4a63.955 63.955 0 0 0-48.68-22.35zM616 352H432l117.99 137.65A63.987 63.987 0 0 0 598.58 512H616c13.25 0 24-10.75 24-24V376c0-13.26-10.75-24-24-24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faJoint = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKey.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKey.d.ts new file mode 100644 index 0000000000..0d1847310e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKey.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faKey: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKey.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKey.js new file mode 100644 index 0000000000..f8d394a298 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKey.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'key'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f084'; +var svgPathData = 'M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faKey = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKeyboard.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKeyboard.d.ts new file mode 100644 index 0000000000..22daac53ea --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKeyboard.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faKeyboard: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKeyboard.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKeyboard.js new file mode 100644 index 0000000000..bf074cee32 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKeyboard.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'keyboard'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f11c'; +var svgPathData = 'M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faKeyboard = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKiss.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKiss.d.ts new file mode 100644 index 0000000000..3ffba5c2db --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKiss.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faKiss: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKiss.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKiss.js new file mode 100644 index 0000000000..9ff4ce3060 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKiss.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'kiss'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f596'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm136 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm24-156c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faKiss = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKissBeam.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKissBeam.d.ts new file mode 100644 index 0000000000..5e6ef58252 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKissBeam.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faKissBeam: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKissBeam.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKissBeam.js new file mode 100644 index 0000000000..7aee90430f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKissBeam.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'kiss-beam'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f597'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-39 219.9l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5zM304 396c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm65-168.1l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faKissBeam = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKissWinkHeart.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKissWinkHeart.d.ts new file mode 100644 index 0000000000..74104777c9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKissWinkHeart.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faKissWinkHeart: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKissWinkHeart.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKissWinkHeart.js new file mode 100644 index 0000000000..a5a1ced080 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKissWinkHeart.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'kiss-wink-heart'; +var width = 504; +var height = 512; +var ligatures = []; +var unicode = 'f598'; +var svgPathData = 'M501.1 402.5c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zm-177.6-4c-5.6-20.3-2.3-42 9-59.7 29.7-46.3 98.7-45.5 127.8 4.3 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-.3-.7-23.9-84.6-23.9-84.6zM168 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm120 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-5.7-12.3 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.8-3.7-4.6-16.6 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C274.6 368.7 288 383 288 396zm16-179c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S400 181 404 206.2c1.7 11.1-11.3 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 217z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faKissWinkHeart = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKiwiBird.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKiwiBird.d.ts new file mode 100644 index 0000000000..fc9c15a267 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKiwiBird.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faKiwiBird: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKiwiBird.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKiwiBird.js new file mode 100644 index 0000000000..ae71d69c40 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faKiwiBird.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'kiwi-bird'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f535'; +var svgPathData = 'M575.81 217.98C572.64 157.41 518.28 112 457.63 112h-9.37c-52.82 0-104.25-16.25-147.74-46.24-41.99-28.96-96.04-41.62-153.21-28.7C129.3 41.12-.08 78.24 0 224c.04 70.95 38.68 132.8 95.99 166.01V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-54.26c15.36 3.96 31.4 6.26 48 6.26 5.44 0 10.68-.73 16-1.18V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-59.43c14.24-5.06 27.88-11.39 40.34-19.51C342.07 355.25 393.86 336 448.46 336c25.48 0 16.01-.31 23.05-.78l74.41 136.44c2.86 5.23 8.3 8.34 14.05 8.34 1.31 0 2.64-.16 3.95-.5 7.09-1.8 12.05-8.19 12.05-15.5 0 0 .14-240.24-.16-246.02zM463.97 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm80 153.25l-39.86-73.08c15.12-5.83 28.73-14.6 39.86-25.98v99.06z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faKiwiBird = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLanguage.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLanguage.d.ts new file mode 100644 index 0000000000..33256a2c3a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLanguage.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLanguage: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLanguage.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLanguage.js new file mode 100644 index 0000000000..536bd88831 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLanguage.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'language'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f1ab'; +var svgPathData = 'M304 416H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h280v320zm-120.676-72.622A12 12 0 0 0 194.839 352h22.863c8.22 0 14.007-8.078 11.362-15.861L171.61 167.085a12 12 0 0 0-11.362-8.139h-32.489a12.001 12.001 0 0 0-11.362 8.139L58.942 336.139C56.297 343.922 62.084 352 70.304 352h22.805a12 12 0 0 0 11.535-8.693l9.118-31.807h60.211l9.351 31.878zm-39.051-140.42s4.32 21.061 7.83 33.21l10.8 37.531h-38.07l11.07-37.531c3.51-12.15 7.83-33.21 7.83-33.21h.54zM616 416H336V96h280c13.255 0 24 10.745 24 24v272c0 13.255-10.745 24-24 24zm-36-228h-64v-16c0-6.627-5.373-12-12-12h-16c-6.627 0-12 5.373-12 12v16h-64c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h114.106c-6.263 14.299-16.518 28.972-30.023 43.206-6.56-6.898-12.397-13.91-17.365-20.933-3.639-5.144-10.585-6.675-15.995-3.446l-7.28 4.346-6.498 3.879c-5.956 3.556-7.693 11.421-3.735 17.117 6.065 8.729 13.098 17.336 20.984 25.726-8.122 6.226-16.841 12.244-26.103 17.964-5.521 3.41-7.381 10.556-4.162 16.19l7.941 13.896c3.362 5.883 10.935 7.826 16.706 4.276 12.732-7.831 24.571-16.175 35.443-24.891 10.917 8.761 22.766 17.102 35.396 24.881 5.774 3.556 13.353 1.618 16.717-4.27l7.944-13.903c3.213-5.623 1.37-12.76-4.135-16.171a312.737 312.737 0 0 1-26.06-18.019c21.024-22.425 35.768-46.289 42.713-69.85H580c6.627 0 12-5.373 12-12v-16c0-6.625-5.373-11.998-12-11.998z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLanguage = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaptop.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaptop.d.ts new file mode 100644 index 0000000000..fb8c3b4efc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaptop.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLaptop: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaptop.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaptop.js new file mode 100644 index 0000000000..35824b8fff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaptop.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'laptop'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f109'; +var svgPathData = 'M512 64v256H128V64h384m16-64H112C85.5 0 64 21.5 64 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm100 416H389.5c-3 0-5.5 2.1-5.9 5.1C381.2 436.3 368 448 352 448h-64c-16 0-29.2-11.7-31.6-26.9-.5-2.9-3-5.1-5.9-5.1H12c-6.6 0-12 5.4-12 12v36c0 26.5 21.5 48 48 48h544c26.5 0 48-21.5 48-48v-36c0-6.6-5.4-12-12-12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLaptop = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaugh.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaugh.d.ts new file mode 100644 index 0000000000..ad3bf47d0e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaugh.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLaugh: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaugh.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaugh.js new file mode 100644 index 0000000000..d06585bd90 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaugh.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'laugh'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f599'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 152c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm88 272h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18-8.9 71-69.5 126-142.9 126z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLaugh = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaughBeam.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaughBeam.d.ts new file mode 100644 index 0000000000..1e4d35d66b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaughBeam.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLaughBeam: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaughBeam.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaughBeam.js new file mode 100644 index 0000000000..5db983d062 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaughBeam.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'laugh-beam'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f59a'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm24 199.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.8 4.1-15.1-4.5zm-160 0c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLaughBeam = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaughSquint.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaughSquint.d.ts new file mode 100644 index 0000000000..39f55ccf67 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaughSquint.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLaughSquint: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaughSquint.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaughSquint.js new file mode 100644 index 0000000000..cf0bab0e1d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaughSquint.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'laugh-squint'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f59b'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 161.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 180l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLaughSquint = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaughWink.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaughWink.d.ts new file mode 100644 index 0000000000..7376c9309c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaughWink.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLaughWink: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaughWink.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaughWink.js new file mode 100644 index 0000000000..03d57dd807 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLaughWink.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'laugh-wink'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f59c'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm20.1 198.1c4-25.2 34.2-42.1 59.9-42.1s55.9 16.9 59.9 42.1c1.7 11.1-11.4 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 217c-8.4 7.4-21.6.3-19.9-10.9zM168 160c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm230.9 146C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLaughWink = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLeaf.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLeaf.d.ts new file mode 100644 index 0000000000..8fbcb63cd7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLeaf.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLeaf: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLeaf.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLeaf.js new file mode 100644 index 0000000000..fec489b663 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLeaf.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'leaf'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f06c'; +var svgPathData = 'M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLeaf = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLemon.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLemon.d.ts new file mode 100644 index 0000000000..8d9ec0ed46 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLemon.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLemon: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLemon.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLemon.js new file mode 100644 index 0000000000..9b1a5a0c8b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLemon.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'lemon'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f094'; +var svgPathData = 'M489.038 22.963C465.944-.13 434.648-5.93 413.947 6.129c-58.906 34.312-181.25-53.077-321.073 86.746S40.441 355.041 6.129 413.945c-12.059 20.702-6.26 51.999 16.833 75.093 23.095 23.095 54.392 28.891 75.095 16.832 58.901-34.31 181.246 53.079 321.068-86.743S471.56 156.96 505.871 98.056c12.059-20.702 6.261-51.999-16.833-75.093zM243.881 95.522c-58.189 14.547-133.808 90.155-148.358 148.358-1.817 7.27-8.342 12.124-15.511 12.124-1.284 0-2.59-.156-3.893-.481-8.572-2.144-13.784-10.83-11.642-19.403C81.901 166.427 166.316 81.93 236.119 64.478c8.575-2.143 17.261 3.069 19.403 11.642s-3.069 17.259-11.641 19.402z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLemon = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLessThan.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLessThan.d.ts new file mode 100644 index 0000000000..61c21ead5e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLessThan.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLessThan: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLessThan.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLessThan.js new file mode 100644 index 0000000000..a2f5d8a5cb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLessThan.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'less-than'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f536'; +var svgPathData = 'M365.46 357.74L147.04 255.89l218.47-101.88c16.02-7.47 22.95-26.51 15.48-42.53l-13.52-29C360 66.46 340.96 59.53 324.94 67L18.48 209.91a32.014 32.014 0 0 0-18.48 29v34.24c0 12.44 7.21 23.75 18.48 29l306.31 142.83c16.06 7.49 35.15.54 42.64-15.52l13.56-29.08c7.49-16.06.54-35.15-15.53-42.64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLessThan = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLessThanEqual.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLessThanEqual.d.ts new file mode 100644 index 0000000000..b5484b723c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLessThanEqual.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLessThanEqual: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLessThanEqual.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLessThanEqual.js new file mode 100644 index 0000000000..9dec0451d2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLessThanEqual.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'less-than-equal'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f537'; +var svgPathData = 'M54.98 214.2l301.41 119.87c18.39 6.03 38.71-2.54 45.38-19.15l12.09-30.08c6.68-16.61-2.82-34.97-21.21-41l-175.44-68.05 175.56-68.09c18.29-6 27.74-24.27 21.1-40.79l-12.03-29.92c-6.64-16.53-26.86-25.06-45.15-19.06L54.98 137.89C41.21 142.41 32 154.5 32 168.07v15.96c0 13.56 9.21 25.65 22.98 30.17zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLessThanEqual = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLevelDownAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLevelDownAlt.d.ts new file mode 100644 index 0000000000..3496f8f14e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLevelDownAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLevelDownAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLevelDownAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLevelDownAlt.js new file mode 100644 index 0000000000..f1c575d260 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLevelDownAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'level-down-alt'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f3be'; +var svgPathData = 'M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLevelDownAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLevelUpAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLevelUpAlt.d.ts new file mode 100644 index 0000000000..7d926135a4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLevelUpAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLevelUpAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLevelUpAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLevelUpAlt.js new file mode 100644 index 0000000000..0927f4f109 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLevelUpAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'level-up-alt'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f3bf'; +var svgPathData = 'M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLevelUpAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLifeRing.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLifeRing.d.ts new file mode 100644 index 0000000000..b3af42c319 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLifeRing.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLifeRing: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLifeRing.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLifeRing.js new file mode 100644 index 0000000000..bfe9dadeda --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLifeRing.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'life-ring'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1cd'; +var svgPathData = 'M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm173.696 119.559l-63.399 63.399c-10.987-18.559-26.67-34.252-45.255-45.255l63.399-63.399a218.396 218.396 0 0 1 45.255 45.255zM256 352c-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96-42.981 96-96 96zM127.559 82.304l63.399 63.399c-18.559 10.987-34.252 26.67-45.255 45.255l-63.399-63.399a218.372 218.372 0 0 1 45.255-45.255zM82.304 384.441l63.399-63.399c10.987 18.559 26.67 34.252 45.255 45.255l-63.399 63.399a218.396 218.396 0 0 1-45.255-45.255zm302.137 45.255l-63.399-63.399c18.559-10.987 34.252-26.67 45.255-45.255l63.399 63.399a218.403 218.403 0 0 1-45.255 45.255z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLifeRing = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLightbulb.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLightbulb.d.ts new file mode 100644 index 0000000000..33eed2968b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLightbulb.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLightbulb: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLightbulb.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLightbulb.js new file mode 100644 index 0000000000..03438d859c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLightbulb.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'lightbulb'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f0eb'; +var svgPathData = 'M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zm-143.107-44c-9.907 0-18.826-6.078-22.376-15.327C67.697 267.541 16 277.731 16 176 16 78.803 94.805 0 192 0s176 78.803 176 176c0 101.731-51.697 91.541-90.516 192.673-3.55 9.249-12.47 15.327-22.376 15.327H128.893zM112 176c0-44.112 35.888-80 80-80 8.837 0 16-7.164 16-16s-7.163-16-16-16c-61.757 0-112 50.243-112 112 0 8.836 7.164 16 16 16s16-7.164 16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLightbulb = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLink.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLink.d.ts new file mode 100644 index 0000000000..3b219cbdbd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLink.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLink: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLink.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLink.js new file mode 100644 index 0000000000..75f0144e72 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLink.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'link'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0c1'; +var svgPathData = 'M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLink = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLiraSign.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLiraSign.d.ts new file mode 100644 index 0000000000..4675f711fc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLiraSign.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLiraSign: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLiraSign.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLiraSign.js new file mode 100644 index 0000000000..81b9d2412b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLiraSign.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'lira-sign'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f195'; +var svgPathData = 'M371.994 256h-48.019C317.64 256 312 260.912 312 267.246 312 368 230.179 416 144 416V256.781l134.603-29.912A12 12 0 0 0 288 215.155v-40.976c0-7.677-7.109-13.38-14.603-11.714L144 191.219V160.78l134.603-29.912A12 12 0 0 0 288 119.154V78.179c0-7.677-7.109-13.38-14.603-11.714L144 95.219V44c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v68.997L9.397 125.131A12 12 0 0 0 0 136.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 178.558v30.439L9.397 221.131A12 12 0 0 0 0 232.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 274.558V468c0 6.627 5.373 12 12 12h79.583c134.091 0 223.255-77.834 228.408-211.592.261-6.782-5.211-12.408-11.997-12.408z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLiraSign = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faList.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faList.d.ts new file mode 100644 index 0000000000..fb4e36b556 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faList.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faList: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faList.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faList.js new file mode 100644 index 0000000000..0880b1912e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faList.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'list'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f03a'; +var svgPathData = 'M128 116V76c0-8.837 7.163-16 16-16h352c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H144c-8.837 0-16-7.163-16-16zm16 176h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 144h64c8.837 0 16-7.163 16-16V64c0-8.837-7.163-16-16-16H16C7.163 48 0 55.163 0 64v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faList = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faListAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faListAlt.d.ts new file mode 100644 index 0000000000..7df3e0a3d0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faListAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faListAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faListAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faListAlt.js new file mode 100644 index 0000000000..d87a9bb58c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faListAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'list-alt'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f022'; +var svgPathData = 'M464 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM128 120c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288-136v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faListAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faListOl.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faListOl.d.ts new file mode 100644 index 0000000000..69c58b577b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faListOl.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faListOl: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faListOl.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faListOl.js new file mode 100644 index 0000000000..cbcd6b7f53 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faListOl.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'list-ol'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0cb'; +var svgPathData = 'M3.263 139.527c0-7.477 3.917-11.572 11.573-11.572h15.131V88.078c0-5.163.534-10.503.534-10.503h-.356s-1.779 2.67-2.848 3.738c-4.451 4.273-10.504 4.451-15.666-1.068l-5.518-6.231c-5.342-5.341-4.984-11.216.534-16.379l21.72-19.938C32.815 33.602 36.732 32 42.785 32H54.89c7.656 0 11.749 3.916 11.749 11.572v84.384h15.488c7.655 0 11.572 4.094 11.572 11.572v8.901c0 7.477-3.917 11.572-11.572 11.572H14.836c-7.656 0-11.573-4.095-11.573-11.572v-8.902zM2.211 304.591c0-47.278 50.955-56.383 50.955-69.165 0-7.18-5.954-8.755-9.28-8.755-3.153 0-6.479 1.051-9.455 3.852-5.079 4.903-10.507 7.004-16.111 2.451l-8.579-6.829c-5.779-4.553-7.18-9.805-2.803-15.409C13.592 201.981 26.025 192 47.387 192c19.437 0 44.476 10.506 44.476 39.573 0 38.347-46.753 46.402-48.679 56.909h39.049c7.529 0 11.557 4.027 11.557 11.382v8.755c0 7.354-4.028 11.382-11.557 11.382h-67.94c-7.005 0-12.083-4.028-12.083-11.382v-4.028zM5.654 454.61l5.603-9.28c3.853-6.654 9.105-7.004 15.584-3.152 4.903 2.101 9.63 3.152 14.359 3.152 10.155 0 14.358-3.502 14.358-8.23 0-6.654-5.604-9.106-15.934-9.106h-4.728c-5.954 0-9.28-2.101-12.258-7.88l-1.05-1.926c-2.451-4.728-1.226-9.806 2.801-14.884l5.604-7.004c6.829-8.405 12.257-13.483 12.257-13.483v-.35s-4.203 1.051-12.608 1.051H16.685c-7.53 0-11.383-4.028-11.383-11.382v-8.755c0-7.53 3.853-11.382 11.383-11.382h58.484c7.529 0 11.382 4.027 11.382 11.382v3.327c0 5.778-1.401 9.806-5.079 14.183l-17.509 20.137c19.611 5.078 28.716 20.487 28.716 34.845 0 21.363-14.358 44.126-48.503 44.126-16.636 0-28.192-4.728-35.896-9.455-5.779-4.202-6.304-9.805-2.626-15.934zM144 132h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faListOl = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faListUl.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faListUl.d.ts new file mode 100644 index 0000000000..7a3fbce006 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faListUl.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faListUl: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faListUl.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faListUl.js new file mode 100644 index 0000000000..422ac67aef --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faListUl.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'list-ul'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0ca'; +var svgPathData = 'M96 96c0 26.51-21.49 48-48 48S0 122.51 0 96s21.49-48 48-48 48 21.49 48 48zM48 208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm0 160c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm96-236h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faListUl = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLocationArrow.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLocationArrow.d.ts new file mode 100644 index 0000000000..936d505f18 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLocationArrow.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLocationArrow: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLocationArrow.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLocationArrow.js new file mode 100644 index 0000000000..e657632bf4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLocationArrow.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'location-arrow'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f124'; +var svgPathData = 'M443.683 4.529L27.818 196.418C-18.702 217.889-3.39 288 47.933 288H224v175.993c0 51.727 70.161 66.526 91.582 20.115L507.38 68.225c18.905-40.961-23.752-82.133-63.697-63.696z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLocationArrow = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLock.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLock.d.ts new file mode 100644 index 0000000000..157db774fc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLock.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLock: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLock.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLock.js new file mode 100644 index 0000000000..1716890c1b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLock.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'lock'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f023'; +var svgPathData = 'M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLock = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLockOpen.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLockOpen.d.ts new file mode 100644 index 0000000000..731a69ddc4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLockOpen.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLockOpen: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLockOpen.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLockOpen.js new file mode 100644 index 0000000000..3308ef363f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLockOpen.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'lock-open'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f3c1'; +var svgPathData = 'M423.5 0C339.5.3 272 69.5 272 153.5V224H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48h-48v-71.1c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v80c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-80C576 68 507.5-.3 423.5 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLockOpen = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltDown.d.ts new file mode 100644 index 0000000000..7f9e372a56 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltDown.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLongArrowAltDown: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltDown.js new file mode 100644 index 0000000000..d5a8aa2597 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltDown.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'long-arrow-alt-down'; +var width = 256; +var height = 512; +var ligatures = []; +var unicode = 'f309'; +var svgPathData = 'M168 345.941V44c0-6.627-5.373-12-12-12h-56c-6.627 0-12 5.373-12 12v301.941H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.569 9.373 33.941 0l86.059-86.059c15.119-15.119 4.411-40.971-16.971-40.971H168z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLongArrowAltDown = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltLeft.d.ts new file mode 100644 index 0000000000..2ac68609ee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltLeft.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLongArrowAltLeft: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltLeft.js new file mode 100644 index 0000000000..5b1585cbbf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltLeft.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'long-arrow-alt-left'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f30a'; +var svgPathData = 'M134.059 296H436c6.627 0 12-5.373 12-12v-56c0-6.627-5.373-12-12-12H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.569 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLongArrowAltLeft = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltRight.d.ts new file mode 100644 index 0000000000..f24c166495 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltRight.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLongArrowAltRight: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltRight.js new file mode 100644 index 0000000000..2a3e42ef14 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltRight.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'long-arrow-alt-right'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f30b'; +var svgPathData = 'M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLongArrowAltRight = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltUp.d.ts new file mode 100644 index 0000000000..8ccc4f31f5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltUp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLongArrowAltUp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltUp.js new file mode 100644 index 0000000000..35bd899f34 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLongArrowAltUp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'long-arrow-alt-up'; +var width = 256; +var height = 512; +var ligatures = []; +var unicode = 'f30c'; +var svgPathData = 'M88 166.059V468c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12V166.059h46.059c21.382 0 32.09-25.851 16.971-40.971l-86.059-86.059c-9.373-9.373-24.569-9.373-33.941 0l-86.059 86.059c-15.119 15.119-4.411 40.971 16.971 40.971H88z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLongArrowAltUp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLowVision.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLowVision.d.ts new file mode 100644 index 0000000000..5a83e3915d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLowVision.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLowVision: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLowVision.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLowVision.js new file mode 100644 index 0000000000..27964df632 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLowVision.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'low-vision'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f2a8'; +var svgPathData = 'M569.344 231.631C512.96 135.949 407.81 72 288 72c-28.468 0-56.102 3.619-82.451 10.409L152.778 10.24c-7.601-10.858-22.564-13.5-33.423-5.9l-13.114 9.178c-10.86 7.601-13.502 22.566-5.9 33.426l43.131 58.395C89.449 131.73 40.228 174.683 6.682 231.581c-.01.017-.023.033-.034.05-8.765 14.875-8.964 33.528 0 48.739 38.5 65.332 99.742 115.862 172.859 141.349L55.316 244.302A272.194 272.194 0 0 1 83.61 208.39l119.4 170.58h.01l40.63 58.04a330.055 330.055 0 0 0 78.94 1.17l-189.98-271.4a277.628 277.628 0 0 1 38.777-21.563l251.836 356.544c7.601 10.858 22.564 13.499 33.423 5.9l13.114-9.178c10.86-7.601 13.502-22.567 5.9-33.426l-43.12-58.377-.007-.009c57.161-27.978 104.835-72.04 136.81-126.301a47.938 47.938 0 0 0 .001-48.739zM390.026 345.94l-19.066-27.23c24.682-32.567 27.711-76.353 8.8-111.68v.03c0 23.65-19.17 42.82-42.82 42.82-23.828 0-42.82-19.349-42.82-42.82 0-23.65 19.17-42.82 42.82-42.82h.03c-24.75-13.249-53.522-15.643-79.51-7.68l-19.068-27.237C253.758 123.306 270.488 120 288 120c75.162 0 136 60.826 136 136 0 34.504-12.833 65.975-33.974 89.94z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLowVision = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLuggageCart.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLuggageCart.d.ts new file mode 100644 index 0000000000..ab05e89083 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLuggageCart.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faLuggageCart: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLuggageCart.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLuggageCart.js new file mode 100644 index 0000000000..5760932292 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faLuggageCart.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'luggage-cart'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f59d'; +var svgPathData = 'M224 320h32V96h-32c-17.67 0-32 14.33-32 32v160c0 17.67 14.33 32 32 32zm352-32V128c0-17.67-14.33-32-32-32h-32v224h32c17.67 0 32-14.33 32-32zm48 96H128V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h48v368c0 8.84 7.16 16 16 16h82.94c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16h197.88c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM480 96V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v272h192V96zm-48 0h-96V48h96v48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faLuggageCart = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMagic.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMagic.d.ts new file mode 100644 index 0000000000..7d23b32f1d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMagic.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMagic: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMagic.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMagic.js new file mode 100644 index 0000000000..a31db880e4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMagic.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'magic'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0d0'; +var svgPathData = 'M224 96l16-32 32-16-32-16-16-32-16 32-32 16 32 16 16 32zM80 160l26.66-53.33L160 80l-53.34-26.67L80 0 53.34 53.33 0 80l53.34 26.67L80 160zm352 128l-26.66 53.33L352 368l53.34 26.67L432 448l26.66-53.33L512 368l-53.34-26.67L432 288zm70.62-193.77L417.77 9.38C411.53 3.12 403.34 0 395.15 0c-8.19 0-16.38 3.12-22.63 9.38L9.38 372.52c-12.5 12.5-12.5 32.76 0 45.25l84.85 84.85c6.25 6.25 14.44 9.37 22.62 9.37 8.19 0 16.38-3.12 22.63-9.37l363.14-363.15c12.5-12.48 12.5-32.75 0-45.24zM359.45 203.46l-50.91-50.91 86.6-86.6 50.91 50.91-86.6 86.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMagic = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMagnet.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMagnet.d.ts new file mode 100644 index 0000000000..f8b3a05f22 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMagnet.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMagnet: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMagnet.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMagnet.js new file mode 100644 index 0000000000..1e99df6ff9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMagnet.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'magnet'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f076'; +var svgPathData = 'M164.1 160H12c-6.6 0-12-5.4-12-12V68c0-19.9 16.1-36 36-36h104c19.9 0 36 16.1 36 36v80c.1 6.6-5.3 12-11.9 12zm348-12V67.9c0-19.9-16.1-36-36-36h-104c-19.9 0-36 16.1-36 36v80c0 6.6 5.4 12 12 12h152c6.6.1 12-5.3 12-11.9zm-164 44c-6.6 0-12 5.4-12 12v52c0 128.1-160 127.9-160 0v-52c0-6.6-5.4-12-12-12h-152c-6.7 0-12 5.4-12 12.1.1 21.4.6 40.3 0 53.3C.1 408 136.3 504 256.9 504 377.5 504 512 408 512 257.3c-.6-12.8-.2-33 0-53.2 0-6.7-5.3-12.1-12-12.1H348.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMagnet = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMale.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMale.d.ts new file mode 100644 index 0000000000..acee1284c6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMale.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMale: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMale.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMale.js new file mode 100644 index 0000000000..e4640ed997 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMale.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'male'; +var width = 192; +var height = 512; +var ligatures = []; +var unicode = 'f183'; +var svgPathData = 'M96 0c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64S60.654 0 96 0m48 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H48c-26.51 0-48 21.49-48 48v136c0 13.255 10.745 24 24 24h16v136c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V352h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMale = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMap.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMap.d.ts new file mode 100644 index 0000000000..a6d53527c3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMap.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMap: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMap.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMap.js new file mode 100644 index 0000000000..d10677a7a5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMap.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'map'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f279'; +var svgPathData = 'M0 117.66v346.32c0 11.32 11.43 19.06 21.94 14.86L160 416V32L20.12 87.95A32.006 32.006 0 0 0 0 117.66zM192 416l192 64V96L192 32v384zM554.06 33.16L416 96v384l139.88-55.95A31.996 31.996 0 0 0 576 394.34V48.02c0-11.32-11.43-19.06-21.94-14.86z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMap = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarked.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarked.d.ts new file mode 100644 index 0000000000..6c4db3a3bd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarked.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMapMarked: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarked.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarked.js new file mode 100644 index 0000000000..8647064ed9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarked.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'map-marked'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f59f'; +var svgPathData = 'M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMapMarked = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarkedAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarkedAlt.d.ts new file mode 100644 index 0000000000..34ffa71a0e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarkedAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMapMarkedAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarkedAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarkedAlt.js new file mode 100644 index 0000000000..b2cc5b2bdd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarkedAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'map-marked-alt'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f5a0'; +var svgPathData = 'M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zm0 168c-23.2 0-42-18.8-42-42s18.8-42 42-42 42 18.8 42 42-18.8 42-42 42zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMapMarkedAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarker.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarker.d.ts new file mode 100644 index 0000000000..3b3b0a6b78 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarker.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMapMarker: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarker.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarker.js new file mode 100644 index 0000000000..c9cef6718f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarker.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'map-marker'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f041'; +var svgPathData = 'M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMapMarker = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarkerAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarkerAlt.d.ts new file mode 100644 index 0000000000..f9d0aef725 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarkerAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMapMarkerAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarkerAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarkerAlt.js new file mode 100644 index 0000000000..45b4ca3ed3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapMarkerAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'map-marker-alt'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f3c5'; +var svgPathData = 'M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMapMarkerAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapPin.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapPin.d.ts new file mode 100644 index 0000000000..052bc9d09f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapPin.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMapPin: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapPin.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapPin.js new file mode 100644 index 0000000000..780aa5ca55 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapPin.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'map-pin'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f276'; +var svgPathData = 'M192 300.813v172.82l-22.015 33.023c-4.75 7.125-15.219 7.125-19.969 0L128 473.633v-172.82a162.221 162.221 0 0 0 64 0zM160 0c79.529 0 144 64.471 144 144s-64.471 144-144 144S16 223.529 16 144 80.471 0 160 0M80 136c0-39.701 32.299-72 72-72a8 8 0 0 0 0-16c-48.523 0-88 39.477-88 88a8 8 0 0 0 16 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMapPin = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapSigns.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapSigns.d.ts new file mode 100644 index 0000000000..67a5db3110 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapSigns.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMapSigns: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapSigns.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapSigns.js new file mode 100644 index 0000000000..f6cb6d4d48 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMapSigns.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'map-signs'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f277'; +var svgPathData = 'M487.515 104.485L439.03 152.97a23.998 23.998 0 0 1-16.97 7.029H56c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h160v-8c0-13.255 10.745-24 24-24h32c13.255 0 24 10.745 24 24v8h126.059a24 24 0 0 1 16.97 7.029l48.485 48.485c4.687 4.687 4.687 12.285.001 16.971zM216 368v120c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V368h-80zm240-144H296v-48h-80v48H89.941a24 24 0 0 0-16.97 7.029l-48.485 48.485c-4.686 4.686-4.686 12.284 0 16.971l48.485 48.485a23.998 23.998 0 0 0 16.97 7.029H456c13.255 0 24-10.745 24-24v-80C480 234.745 469.255 224 456 224z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMapSigns = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarker.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarker.d.ts new file mode 100644 index 0000000000..5a28464311 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarker.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMarker: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarker.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarker.js new file mode 100644 index 0000000000..6191c7f10f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarker.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'marker'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f5a1'; +var svgPathData = 'M93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l75.4-75.4-128.02-128.02-75.4 75.4zM485.49 26.51c-35.35-35.35-92.67-35.35-128.02 0l-21.76 21.76-36.56-36.55c-15.62-15.62-40.95-15.62-56.56 0L138.47 115.84c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0l87.15-87.15 19.59 19.59L191.98 192 320 320.02l165.49-165.49c35.35-35.35 35.35-92.66 0-128.02z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMarker = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMars.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMars.d.ts new file mode 100644 index 0000000000..30b8dc9aa0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMars.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMars: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMars.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMars.js new file mode 100644 index 0000000000..66a6e06df5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMars.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'mars'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f222'; +var svgPathData = 'M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c0-6.6-5.4-12-12-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMars = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsDouble.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsDouble.d.ts new file mode 100644 index 0000000000..3afc30b6db --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsDouble.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMarsDouble: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsDouble.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsDouble.js new file mode 100644 index 0000000000..097db9bc7a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsDouble.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'mars-double'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f227'; +var svgPathData = 'M340 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C198.5 72.1 172.2 64 144 64 64.5 64 0 128.5 0 208s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.5 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 288c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80zm356-128.1h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7c-18.2-11.4-39-18.9-61.5-21.3-2.1 21.8-8.2 43.3-18.4 63.3 1.1 0 2.2-.1 3.2-.1 44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80c0-1.1 0-2.2.1-3.2-20 10.2-41.5 16.4-63.3 18.4C168.4 455.6 229.6 512 304 512c79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12v-79c0-6.7-5.4-12.1-12-12.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMarsDouble = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsStroke.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsStroke.d.ts new file mode 100644 index 0000000000..4e58b9c5a4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsStroke.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMarsStroke: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsStroke.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsStroke.js new file mode 100644 index 0000000000..0d36db7e56 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsStroke.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'mars-stroke'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f229'; +var svgPathData = 'M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-17.5 17.5-14.1-14.1c-4.7-4.7-12.3-4.7-17 0L224.5 133c-4.7 4.7-4.7 12.3 0 17l14.1 14.1-18 18c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l18-18 14.1 14.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L329.2 164l17.5-17.5 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c-.1-6.6-5.5-12-12.1-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMarsStroke = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsStrokeH.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsStrokeH.d.ts new file mode 100644 index 0000000000..fcc2c41a87 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsStrokeH.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMarsStrokeH: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsStrokeH.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsStrokeH.js new file mode 100644 index 0000000000..2e49c609b4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsStrokeH.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'mars-stroke-h'; +var width = 480; +var height = 512; +var ligatures = []; +var unicode = 'f22b'; +var svgPathData = 'M476.2 247.5l-55.9-55.9c-7.6-7.6-20.5-2.2-20.5 8.5V224H376v-20c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v20h-27.6c-5.8-25.6-18.7-49.9-38.6-69.8C189.6 98 98.4 98 42.2 154.2c-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 19.9-19.9 32.8-44.2 38.6-69.8H312v20c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-20h23.9v23.9c0 10.7 12.9 16 20.5 8.5l55.9-55.9c4.6-4.7 4.6-12.3-.1-17zm-275.6 65.1c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMarsStrokeH = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsStrokeV.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsStrokeV.d.ts new file mode 100644 index 0000000000..4026963656 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsStrokeV.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMarsStrokeV: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsStrokeV.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsStrokeV.js new file mode 100644 index 0000000000..848b1b9428 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMarsStrokeV.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'mars-stroke-v'; +var width = 288; +var height = 512; +var ligatures = []; +var unicode = 'f22a'; +var svgPathData = 'M245.8 234.2c-19.9-19.9-44.2-32.8-69.8-38.6v-25.4h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V81.4h23.9c10.7 0 16-12.9 8.5-20.5L152.5 5.1c-4.7-4.7-12.3-4.7-17 0L79.6 61c-7.6 7.6-2.2 20.5 8.5 20.5H112v24.7H92c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h20v25.4c-25.6 5.8-49.9 18.7-69.8 38.6-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 56.3-56.2 56.3-147.4 0-203.6zm-45.2 158.4c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMarsStrokeV = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMedal.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMedal.d.ts new file mode 100644 index 0000000000..013471a7e9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMedal.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMedal: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMedal.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMedal.js new file mode 100644 index 0000000000..c0866e182c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMedal.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'medal'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f5a2'; +var svgPathData = 'M223.75 130.75L154.62 15.54A31.997 31.997 0 0 0 127.18 0H16.03C3.08 0-4.5 14.57 2.92 25.18l111.27 158.96c29.72-27.77 67.52-46.83 109.56-53.39zM495.97 0H384.82c-11.24 0-21.66 5.9-27.44 15.54l-69.13 115.21c42.04 6.56 79.84 25.62 109.56 53.38L509.08 25.18C516.5 14.57 508.92 0 495.97 0zM256 160c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm92.52 157.26l-37.93 36.96 8.97 52.22c1.6 9.36-8.26 16.51-16.65 12.09L256 393.88l-46.9 24.65c-8.4 4.45-18.25-2.74-16.65-12.09l8.97-52.22-37.93-36.96c-6.82-6.64-3.05-18.23 6.35-19.59l52.43-7.64 23.43-47.52c2.11-4.28 6.19-6.39 10.28-6.39 4.11 0 8.22 2.14 10.33 6.39l23.43 47.52 52.43 7.64c9.4 1.36 13.17 12.95 6.35 19.59z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMedal = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMedkit.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMedkit.d.ts new file mode 100644 index 0000000000..47f09f131f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMedkit.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMedkit: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMedkit.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMedkit.js new file mode 100644 index 0000000000..a86f44ce37 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMedkit.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'medkit'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0fa'; +var svgPathData = 'M96 480h320V128h-32V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v48H96v352zm96-384h128v32H192V96zm320 80v256c0 26.51-21.49 48-48 48h-16V128h16c26.51 0 48 21.49 48 48zM64 480H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v352zm288-208v32c0 8.837-7.163 16-16 16h-48v48c0 8.837-7.163 16-16 16h-32c-8.837 0-16-7.163-16-16v-48h-48c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h48v-48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v48h48c8.837 0 16 7.163 16 16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMedkit = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMeh.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMeh.d.ts new file mode 100644 index 0000000000..1ecbda3c41 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMeh.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMeh: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMeh.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMeh.js new file mode 100644 index 0000000000..704c23c293 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMeh.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'meh'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f11a'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm176 192H152c-21.2 0-21.2-32 0-32h192c21.2 0 21.2 32 0 32zm-16-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMeh = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMehBlank.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMehBlank.d.ts new file mode 100644 index 0000000000..d186d80d21 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMehBlank.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMehBlank: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMehBlank.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMehBlank.js new file mode 100644 index 0000000000..efda3c7948 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMehBlank.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'meh-blank'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f5a4'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMehBlank = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMehRollingEyes.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMehRollingEyes.d.ts new file mode 100644 index 0000000000..77a268534d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMehRollingEyes.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMehRollingEyes: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMehRollingEyes.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMehRollingEyes.js new file mode 100644 index 0000000000..e2eb202c8b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMehRollingEyes.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'meh-rolling-eyes'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f5a5'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 224c0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64s-64-28.7-64-64zm224 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-112c-35.3 0-64-28.7-64-64 0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMehRollingEyes = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMemory.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMemory.d.ts new file mode 100644 index 0000000000..2ae0e3f10c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMemory.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMemory: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMemory.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMemory.js new file mode 100644 index 0000000000..7dda56b8ee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMemory.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'memory'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f538'; +var svgPathData = 'M640 130.94V96c0-17.67-14.33-32-32-32H32C14.33 64 0 78.33 0 96v34.94c18.6 6.61 32 24.19 32 45.06s-13.4 38.45-32 45.06V320h640v-98.94c-18.6-6.61-32-24.19-32-45.06s13.4-38.45 32-45.06zM224 256h-64V128h64v128zm128 0h-64V128h64v128zm128 0h-64V128h64v128zM0 448h64v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h64v-96H0v96z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMemory = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMercury.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMercury.d.ts new file mode 100644 index 0000000000..39a84e6e0e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMercury.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMercury: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMercury.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMercury.js new file mode 100644 index 0000000000..c33a94db7f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMercury.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'mercury'; +var width = 288; +var height = 512; +var ligatures = []; +var unicode = 'f223'; +var svgPathData = 'M288 208c0-44.2-19.9-83.7-51.2-110.1 2.5-1.8 4.9-3.8 7.2-5.8 24.7-21.2 39.8-48.8 43.2-78.8.9-7.1-4.7-13.3-11.9-13.3h-40.5C229 0 224.1 4.1 223 9.8c-2.4 12.5-9.6 24.3-20.7 33.8C187 56.8 166.3 64 144 64s-43-7.2-58.4-20.4C74.5 34.1 67.4 22.3 64.9 9.8 63.8 4.1 58.9 0 53.2 0H12.7C5.5 0-.1 6.2.8 13.3 4.2 43.4 19.2 71 44 92.2c2.3 2 4.7 3.9 7.2 5.8C19.9 124.3 0 163.8 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMercury = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrochip.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrochip.d.ts new file mode 100644 index 0000000000..2b0d26ee62 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrochip.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMicrochip: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrochip.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrochip.js new file mode 100644 index 0000000000..46a3a74eb0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrochip.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'microchip'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2db'; +var svgPathData = 'M416 48v416c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h224c26.51 0 48 21.49 48 48zm96 58v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42V88h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zM30 376h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMicrochip = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophone.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophone.d.ts new file mode 100644 index 0000000000..7079314254 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophone.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMicrophone: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophone.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophone.js new file mode 100644 index 0000000000..9a319213c9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophone.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'microphone'; +var width = 352; +var height = 512; +var ligatures = []; +var unicode = 'f130'; +var svgPathData = 'M176 352c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96zm160-160h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMicrophone = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophoneAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophoneAlt.d.ts new file mode 100644 index 0000000000..11d690a211 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophoneAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMicrophoneAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophoneAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophoneAlt.js new file mode 100644 index 0000000000..5e6908e614 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophoneAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'microphone-alt'; +var width = 352; +var height = 512; +var ligatures = []; +var unicode = 'f3c9'; +var svgPathData = 'M336 192h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16zM176 352c53.02 0 96-42.98 96-96h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMicrophoneAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophoneAltSlash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophoneAltSlash.d.ts new file mode 100644 index 0000000000..4634c6b8fc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophoneAltSlash.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMicrophoneAltSlash: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophoneAltSlash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophoneAltSlash.js new file mode 100644 index 0000000000..0658cf4dfe --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophoneAltSlash.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'microphone-alt-slash'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f539'; +var svgPathData = 'M633.82 458.1L476.26 336.33C488.74 312.21 496 284.98 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67h-43.67l-41.4-32H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.78c11.71-1.62 23.1-4.28 33.96-8.08l-50.4-38.96c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMicrophoneAltSlash = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophoneSlash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophoneSlash.d.ts new file mode 100644 index 0000000000..371e66b742 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophoneSlash.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMicrophoneSlash: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophoneSlash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophoneSlash.js new file mode 100644 index 0000000000..528c760cad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMicrophoneSlash.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'microphone-slash'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f131'; +var svgPathData = 'M633.82 458.1l-157.8-121.96C488.61 312.13 496 285.01 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67V96c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.77c11.66-1.6 22.85-4.54 33.67-8.31l-50.11-38.73c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMicrophoneSlash = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMinus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMinus.d.ts new file mode 100644 index 0000000000..d6a48a64d2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMinus.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMinus: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMinus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMinus.js new file mode 100644 index 0000000000..7229fea448 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMinus.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'minus'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f068'; +var svgPathData = 'M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMinus = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMinusCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMinusCircle.d.ts new file mode 100644 index 0000000000..c26bd76c72 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMinusCircle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMinusCircle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMinusCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMinusCircle.js new file mode 100644 index 0000000000..ae9efe1f50 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMinusCircle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'minus-circle'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f056'; +var svgPathData = 'M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM124 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H124z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMinusCircle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMinusSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMinusSquare.d.ts new file mode 100644 index 0000000000..9f82102add --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMinusSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMinusSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMinusSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMinusSquare.js new file mode 100644 index 0000000000..787812ea20 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMinusSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'minus-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f146'; +var svgPathData = 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H92z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMinusSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMobile.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMobile.d.ts new file mode 100644 index 0000000000..c8323d79d1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMobile.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMobile: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMobile.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMobile.js new file mode 100644 index 0000000000..29c5e236d4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMobile.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'mobile'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f10b'; +var svgPathData = 'M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMobile = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMobileAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMobileAlt.d.ts new file mode 100644 index 0000000000..f8da055749 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMobileAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMobileAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMobileAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMobileAlt.js new file mode 100644 index 0000000000..f0220d4879 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMobileAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'mobile-alt'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f3cd'; +var svgPathData = 'M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm112-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v312z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMobileAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBill.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBill.d.ts new file mode 100644 index 0000000000..f53008f639 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBill.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMoneyBill: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBill.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBill.js new file mode 100644 index 0000000000..7c798e8f40 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBill.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'money-bill'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f0d6'; +var svgPathData = 'M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 176c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 48h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMoneyBill = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBillAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBillAlt.d.ts new file mode 100644 index 0000000000..cb7db1760c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBillAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMoneyBillAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBillAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBillAlt.js new file mode 100644 index 0000000000..b58a7cb732 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBillAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'money-bill-alt'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f3d1'; +var svgPathData = 'M352 288h-16v-88c0-4.42-3.58-8-8-8h-13.58c-4.74 0-9.37 1.4-13.31 4.03l-15.33 10.22a7.994 7.994 0 0 0-2.22 11.09l8.88 13.31a7.994 7.994 0 0 0 11.09 2.22l.47-.31V288h-16c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8h64c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 192c-53.02 0-96-50.15-96-112 0-61.86 42.98-112 96-112s96 50.14 96 112c0 61.87-43 112-96 112zm272 32h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMoneyBillAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBillWave.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBillWave.d.ts new file mode 100644 index 0000000000..c528218cbf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBillWave.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMoneyBillWave: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBillWave.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBillWave.js new file mode 100644 index 0000000000..f9b624a9b7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBillWave.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'money-bill-wave'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f53a'; +var svgPathData = 'M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM48 132.22c20.12 5.04 41.12 7.57 62.72 8.93C104.84 170.54 79 192.69 48 192.69v-60.47zm0 285v-47.78c34.37 0 62.18 27.27 63.71 61.4-22.53-1.81-43.59-6.31-63.71-13.62zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 27.78c-17.52-4.39-35.71-6.85-54.32-8.44 5.87-26.08 27.5-45.88 54.32-49.28v57.72zm0-236.11c-30.89-3.91-54.86-29.7-55.81-61.55 19.54 2.17 38.09 6.23 55.81 12.66v48.89z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMoneyBillWave = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBillWaveAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBillWaveAlt.d.ts new file mode 100644 index 0000000000..8a3d3750a2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBillWaveAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMoneyBillWaveAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBillWaveAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBillWaveAlt.js new file mode 100644 index 0000000000..d21be5a1b1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyBillWaveAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'money-bill-wave-alt'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f53b'; +var svgPathData = 'M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMoneyBillWaveAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyCheck.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyCheck.d.ts new file mode 100644 index 0000000000..a8d4a62bb4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyCheck.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMoneyCheck: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyCheck.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyCheck.js new file mode 100644 index 0000000000..02bc512c35 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyCheck.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'money-check'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f53c'; +var svgPathData = 'M0 448c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128H0v320zm448-208c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-32zm0 120c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H456c-4.42 0-8-3.58-8-8v-16zM64 264c0-4.42 3.58-8 8-8h304c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm0 96c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zM624 32H16C7.16 32 0 39.16 0 48v48h640V48c0-8.84-7.16-16-16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMoneyCheck = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyCheckAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyCheckAlt.d.ts new file mode 100644 index 0000000000..ecb933c4b2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyCheckAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMoneyCheckAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyCheckAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyCheckAlt.js new file mode 100644 index 0000000000..fdacc5e35b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoneyCheckAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'money-check-alt'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f53d'; +var svgPathData = 'M608 32H32C14.33 32 0 46.33 0 64v384c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM176 327.88V344c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V152c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07zM416 312c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm160 0c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h272c4.42 0 8 3.58 8 8v16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMoneyCheckAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMonument.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMonument.d.ts new file mode 100644 index 0000000000..dc760241c9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMonument.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMonument: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMonument.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMonument.js new file mode 100644 index 0000000000..be8963334f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMonument.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'monument'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f5a6'; +var svgPathData = 'M368 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h352c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-78.86-347.26a31.97 31.97 0 0 0-9.21-19.44L203.31 4.69c-6.25-6.25-16.38-6.25-22.63 0l-76.6 76.61a31.97 31.97 0 0 0-9.21 19.44L64 416h256l-30.86-315.26zM240 307.2c0 6.4-6.4 12.8-12.8 12.8h-70.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h70.4c6.4 0 12.8 6.4 12.8 12.8v38.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMonument = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoon.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoon.d.ts new file mode 100644 index 0000000000..fe983f6a58 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoon.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMoon: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoon.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoon.js new file mode 100644 index 0000000000..1f044e1314 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMoon.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'moon'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f186'; +var svgPathData = 'M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMoon = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMortarPestle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMortarPestle.d.ts new file mode 100644 index 0000000000..f85694b0cb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMortarPestle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMortarPestle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMortarPestle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMortarPestle.js new file mode 100644 index 0000000000..881a5ecf7f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMortarPestle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'mortar-pestle'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f5a7'; +var svgPathData = 'M501.54 60.91c17.22-17.22 12.51-46.25-9.27-57.14a35.696 35.696 0 0 0-37.37 3.37L251.09 160h151.37l99.08-99.09zM496 192H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c0 80.98 50.2 150.11 121.13 178.32-12.76 16.87-21.72 36.8-24.95 58.69-1.46 9.92 6.04 18.98 16.07 18.98h223.5c10.03 0 17.53-9.06 16.07-18.98-3.22-21.89-12.18-41.82-24.95-58.69C429.8 406.11 480 336.98 480 256h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMortarPestle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMotorcycle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMotorcycle.d.ts new file mode 100644 index 0000000000..7d38b33f58 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMotorcycle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMotorcycle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMotorcycle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMotorcycle.js new file mode 100644 index 0000000000..ef9ebf4aab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMotorcycle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'motorcycle'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f21c'; +var svgPathData = 'M512.949 192.003c-14.862-.108-29.14 2.322-42.434 6.874L437.589 144H520c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24h-45.311a24 24 0 0 0-17.839 7.945l-37.496 41.663-22.774-37.956A24 24 0 0 0 376 64h-80c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h66.411l19.2 32H227.904c-17.727-23.073-44.924-40-99.904-40H72.54c-13.455 0-24.791 11.011-24.536 24.464C48.252 141.505 58.9 152 72 152h56c24.504 0 38.686 10.919 47.787 24.769l-11.291 20.529c-13.006-3.865-26.871-5.736-41.251-5.21C55.857 194.549 1.565 249.605.034 317.021-1.603 389.076 56.317 448 128 448c59.642 0 109.744-40.794 123.953-96h84.236c13.673 0 24.589-11.421 23.976-25.077-2.118-47.12 17.522-93.665 56.185-125.026l12.485 20.808c-27.646 23.654-45.097 58.88-44.831 98.179.47 69.556 57.203 126.452 126.758 127.11 71.629.678 129.839-57.487 129.234-129.099-.588-69.591-57.455-126.386-127.047-126.892zM128 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c4.242 0 8.405.341 12.469.982L98.97 316.434C90.187 332.407 101.762 352 120 352h81.297c-12.37 28.225-40.56 48-73.297 48zm388.351-.116C470.272 402.337 432 365.554 432 320c0-21.363 8.434-40.781 22.125-55.144l49.412 82.352c4.546 7.577 14.375 10.034 21.952 5.488l13.72-8.232c7.577-4.546 10.034-14.375 5.488-21.952l-48.556-80.927A80.005 80.005 0 0 1 512 240c45.554 0 82.338 38.273 79.884 84.352-2.16 40.558-34.974 73.372-75.533 75.532z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMotorcycle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMousePointer.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMousePointer.d.ts new file mode 100644 index 0000000000..84d9006d84 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMousePointer.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMousePointer: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMousePointer.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMousePointer.js new file mode 100644 index 0000000000..c142f9b4a5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMousePointer.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'mouse-pointer'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f245'; +var svgPathData = 'M302.189 329.126H196.105l55.831 135.993c3.889 9.428-.555 19.999-9.444 23.999l-49.165 21.427c-9.165 4-19.443-.571-23.332-9.714l-53.053-129.136-86.664 89.138C18.729 472.71 0 463.554 0 447.977V18.299C0 1.899 19.921-6.096 30.277 5.443l284.412 292.542c11.472 11.179 3.007 31.141-12.5 31.141z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMousePointer = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMusic.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMusic.d.ts new file mode 100644 index 0000000000..749b4b7cb2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMusic.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faMusic: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMusic.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMusic.js new file mode 100644 index 0000000000..5ee83b33d6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faMusic.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'music'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f001'; +var svgPathData = 'M470.4 1.5l-304 96C153.1 101.7 144 114 144 128v264.6c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V220.5l272-85.9v194c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V32c0-21.7-21.1-37-41.6-30.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faMusic = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNeuter.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNeuter.d.ts new file mode 100644 index 0000000000..a255e7f923 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNeuter.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faNeuter: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNeuter.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNeuter.js new file mode 100644 index 0000000000..c0a51b450d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNeuter.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'neuter'; +var width = 288; +var height = 512; +var ligatures = []; +var unicode = 'f22c'; +var svgPathData = 'M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V468c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V316.4c64.1-14.5 112-71.9 112-140.4zm-144 80c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faNeuter = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNewspaper.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNewspaper.d.ts new file mode 100644 index 0000000000..2e3a28b0bf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNewspaper.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faNewspaper: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNewspaper.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNewspaper.js new file mode 100644 index 0000000000..cbdef5366c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNewspaper.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'newspaper'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f1ea'; +var svgPathData = 'M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faNewspaper = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNotEqual.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNotEqual.d.ts new file mode 100644 index 0000000000..65f60d4de2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNotEqual.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faNotEqual: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNotEqual.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNotEqual.js new file mode 100644 index 0000000000..e0ea16f205 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNotEqual.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'not-equal'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f53e'; +var svgPathData = 'M416 208c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32h-23.88l51.87-66.81c5.37-7.02 4.04-17.06-2.97-22.43L415.61 3.3c-7.02-5.38-17.06-4.04-22.44 2.97L311.09 112H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h204.56l-74.53 96H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h55.49l-51.87 66.81c-5.37 7.01-4.04 17.05 2.97 22.43L64 508.7c7.02 5.38 17.06 4.04 22.43-2.97L168.52 400H416c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32H243.05l74.53-96H416z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faNotEqual = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNotesMedical.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNotesMedical.d.ts new file mode 100644 index 0000000000..f0dc610f84 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNotesMedical.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faNotesMedical: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNotesMedical.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNotesMedical.js new file mode 100644 index 0000000000..1945616b7e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faNotesMedical.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'notes-medical'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f481'; +var svgPathData = 'M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm96 304c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm0-192c0 4.4-3.6 8-8 8H104c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faNotesMedical = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faObjectGroup.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faObjectGroup.d.ts new file mode 100644 index 0000000000..90fa55f57f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faObjectGroup.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faObjectGroup: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faObjectGroup.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faObjectGroup.js new file mode 100644 index 0000000000..ccb5ba9354 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faObjectGroup.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'object-group'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f247'; +var svgPathData = 'M480 128V96h20c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v20H64V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v40c0 6.627 5.373 12 12 12h20v320H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-20h384v20c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-20V128zM96 276V140c0-6.627 5.373-12 12-12h168c6.627 0 12 5.373 12 12v136c0 6.627-5.373 12-12 12H108c-6.627 0-12-5.373-12-12zm320 96c0 6.627-5.373 12-12 12H236c-6.627 0-12-5.373-12-12v-52h72c13.255 0 24-10.745 24-24v-72h84c6.627 0 12 5.373 12 12v136z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faObjectGroup = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faObjectUngroup.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faObjectUngroup.d.ts new file mode 100644 index 0000000000..63a1a0c150 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faObjectUngroup.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faObjectUngroup: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faObjectUngroup.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faObjectUngroup.js new file mode 100644 index 0000000000..cd0d36ab50 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faObjectUngroup.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'object-ungroup'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f248'; +var svgPathData = 'M64 320v26a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6v-52a6 6 0 0 1 6-6h26V96H6a6 6 0 0 1-6-6V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v26h288V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-26v192h26a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-52a6 6 0 0 1-6-6v-26H64zm480-64v-32h26a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-52a6 6 0 0 0-6 6v26H408v72h8c13.255 0 24 10.745 24 24v64c0 13.255-10.745 24-24 24h-64c-13.255 0-24-10.745-24-24v-8H192v72h-26a6 6 0 0 0-6 6v52a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-26h288v26a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-26V256z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faObjectUngroup = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faOutdent.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faOutdent.d.ts new file mode 100644 index 0000000000..9448249eb2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faOutdent.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faOutdent: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faOutdent.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faOutdent.js new file mode 100644 index 0000000000..7df374e89f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faOutdent.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'outdent'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f03b'; +var svgPathData = 'M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm208 144h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm192-128h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM4.687 267.313l96 95.984C110.734 373.348 128 366.224 128 351.984V160.008c0-14.329-17.325-21.304-27.313-11.313l-96 95.992c-6.249 6.248-6.249 16.378 0 22.626z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faOutdent = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaintBrush.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaintBrush.d.ts new file mode 100644 index 0000000000..0cf72b5762 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaintBrush.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPaintBrush: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaintBrush.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaintBrush.js new file mode 100644 index 0000000000..abbd972b86 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaintBrush.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'paint-brush'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1fc'; +var svgPathData = 'M167.02 309.34c-40.12 2.58-76.53 17.86-97.19 72.3-2.35 6.21-8 9.98-14.59 9.98-11.11 0-45.46-27.67-55.25-34.35C0 439.62 37.93 512 128 512c75.86 0 128-43.77 128-120.19 0-3.11-.65-6.08-.97-9.13l-88.01-73.34zM457.89 0c-15.16 0-29.37 6.71-40.21 16.45C213.27 199.05 192 203.34 192 257.09c0 13.7 3.25 26.76 8.73 38.7l63.82 53.18c7.21 1.8 14.64 3.03 22.39 3.03 62.11 0 98.11-45.47 211.16-256.46 7.38-14.35 13.9-29.85 13.9-45.99C512 20.64 486 0 457.89 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPaintBrush = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaintRoller.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaintRoller.d.ts new file mode 100644 index 0000000000..5915141fbf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaintRoller.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPaintRoller: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaintRoller.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaintRoller.js new file mode 100644 index 0000000000..a115a6e896 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaintRoller.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'paint-roller'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f5aa'; +var svgPathData = 'M416 128V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32h352c17.67 0 32-14.33 32-32zm32-64v128c0 17.67-14.33 32-32 32H256c-35.35 0-64 28.65-64 64v32c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32v-32h160c53.02 0 96-42.98 96-96v-64c0-35.35-28.65-64-64-64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPaintRoller = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPalette.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPalette.d.ts new file mode 100644 index 0000000000..4ef781a1e6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPalette.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPalette: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPalette.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPalette.js new file mode 100644 index 0000000000..cd21a7dd0a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPalette.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'palette'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f53f'; +var svgPathData = 'M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPalette = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPallet.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPallet.d.ts new file mode 100644 index 0000000000..807d0924e0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPallet.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPallet: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPallet.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPallet.js new file mode 100644 index 0000000000..de96140906 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPallet.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'pallet'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f482'; +var svgPathData = 'M144 256h352c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H384v128l-64-32-64 32V0H144c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16zm480 128c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v64H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-64h48zm-336 64H128v-64h160v64zm224 0H352v-64h160v64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPallet = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaperPlane.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaperPlane.d.ts new file mode 100644 index 0000000000..8bedea6076 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaperPlane.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPaperPlane: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaperPlane.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaperPlane.js new file mode 100644 index 0000000000..b9f68ba2a7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaperPlane.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'paper-plane'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1d8'; +var svgPathData = 'M476 3.2L12.5 270.6c-18.1 10.4-15.8 35.6 2.2 43.2L121 358.4l287.3-253.2c5.5-4.9 13.3 2.6 8.6 8.3L176 407v80.5c0 23.6 28.5 32.9 42.5 15.8L282 426l124.6 52.2c14.2 6 30.4-2.9 33-18.2l72-432C515 7.8 493.3-6.8 476 3.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPaperPlane = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaperclip.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaperclip.d.ts new file mode 100644 index 0000000000..11aceb0106 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaperclip.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPaperclip: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaperclip.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaperclip.js new file mode 100644 index 0000000000..26cf6774eb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaperclip.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'paperclip'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0c6'; +var svgPathData = 'M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPaperclip = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faParachuteBox.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faParachuteBox.d.ts new file mode 100644 index 0000000000..f6669b4bf9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faParachuteBox.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faParachuteBox: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faParachuteBox.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faParachuteBox.js new file mode 100644 index 0000000000..6b03568892 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faParachuteBox.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'parachute-box'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f4cd'; +var svgPathData = 'M511.9 175c-9.1-75.6-78.4-132.4-158.3-158.7C390 55.7 416 116.9 416 192h28.1L327.5 321.5c-2.5-.6-4.8-1.5-7.5-1.5h-48V192h112C384 76.8 315.1 0 256 0S128 76.8 128 192h112v128h-48c-2.7 0-5 .9-7.5 1.5L67.9 192H96c0-75.1 26-136.3 62.4-175.7C78.5 42.7 9.2 99.5.1 175c-1.1 9.1 6.8 17 16 17h8.7l136.7 151.9c-.7 2.6-1.6 5.2-1.6 8.1v128c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32V352c0-2.9-.9-5.4-1.6-8.1L487.1 192h8.7c9.3 0 17.2-7.8 16.1-17z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faParachuteBox = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faParagraph.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faParagraph.d.ts new file mode 100644 index 0000000000..04fc5300e9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faParagraph.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faParagraph: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faParagraph.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faParagraph.js new file mode 100644 index 0000000000..49cfda6f77 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faParagraph.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'paragraph'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f1dd'; +var svgPathData = 'M408 32H177.531C88.948 32 16.045 103.335 16 191.918 15.956 280.321 87.607 352 176 352v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h32v344c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h40c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faParagraph = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faParking.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faParking.d.ts new file mode 100644 index 0000000000..63b5c6aa37 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faParking.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faParking: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faParking.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faParking.js new file mode 100644 index 0000000000..a3700e5cec --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faParking.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'parking'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f540'; +var svgPathData = 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM240 320h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h96c52.9 0 96 43.1 96 96s-43.1 96-96 96zm0-128h-48v64h48c17.6 0 32-14.4 32-32s-14.4-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faParking = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPassport.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPassport.d.ts new file mode 100644 index 0000000000..bd13c1386c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPassport.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPassport: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPassport.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPassport.js new file mode 100644 index 0000000000..c0da78358b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPassport.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'passport'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f5ab'; +var svgPathData = 'M129.62 176h39.09c1.49-27.03 6.54-51.35 14.21-70.41-27.71 13.24-48.02 39.19-53.3 70.41zm0 32c5.29 31.22 25.59 57.17 53.3 70.41-7.68-19.06-12.72-43.38-14.21-70.41h-39.09zM224 286.69c7.69-7.45 20.77-34.42 23.43-78.69h-46.87c2.67 44.26 15.75 71.24 23.44 78.69zM200.57 176h46.87c-2.66-44.26-15.74-71.24-23.43-78.69-7.7 7.45-20.78 34.43-23.44 78.69zm64.51 102.41c27.71-13.24 48.02-39.19 53.3-70.41h-39.09c-1.49 27.03-6.53 51.35-14.21 70.41zM416 0H64C28.65 0 0 28.65 0 64v384c0 35.35 28.65 64 64 64h352c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32zm-80 416H112c-8.8 0-16-7.2-16-16s7.2-16 16-16h224c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-112-96c-70.69 0-128-57.31-128-128S153.31 64 224 64s128 57.31 128 128-57.31 128-128 128zm41.08-214.41c7.68 19.06 12.72 43.38 14.21 70.41h39.09c-5.28-31.22-25.59-57.17-53.3-70.41z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPassport = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaste.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaste.d.ts new file mode 100644 index 0000000000..fc29b76e10 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaste.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPaste: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaste.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaste.js new file mode 100644 index 0000000000..c63bb10436 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaste.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'paste'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0ea'; +var svgPathData = 'M128 184c0-30.879 25.122-56 56-56h136V56c0-13.255-10.745-24-24-24h-80.61C204.306 12.89 183.637 0 160 0s-44.306 12.89-55.39 32H24C10.745 32 0 42.745 0 56v336c0 13.255 10.745 24 24 24h104V184zm32-144c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24zm184 248h104v200c0 13.255-10.745 24-24 24H184c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.059V256h-96v-96h6.059a24 24 0 0 1 16.97 7.029l65.941 65.941a24.002 24.002 0 0 1 7.03 16.971z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPaste = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPause.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPause.d.ts new file mode 100644 index 0000000000..b43a8483a2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPause.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPause: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPause.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPause.js new file mode 100644 index 0000000000..895b4aab1f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPause.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'pause'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f04c'; +var svgPathData = 'M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPause = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPauseCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPauseCircle.d.ts new file mode 100644 index 0000000000..cd55dcd9f4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPauseCircle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPauseCircle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPauseCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPauseCircle.js new file mode 100644 index 0000000000..2b06986ef4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPauseCircle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'pause-circle'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f28b'; +var svgPathData = 'M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-16 328c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160zm112 0c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPauseCircle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaw.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaw.d.ts new file mode 100644 index 0000000000..08c28d2eda --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaw.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPaw: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaw.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaw.js new file mode 100644 index 0000000000..2f385f3d9c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPaw.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'paw'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1b0'; +var svgPathData = 'M85.231 330.958C36 330.958 0 273.792 0 231.5c0-28.292 16-58.042 49.538-58.042 49.231 0 85.231 57.458 85.231 99.75 0 28.292-15.692 57.75-49.538 57.75zm348 106.167c0 37.042-32 42.875-63.385 42.875-41.231 0-74.462-26.25-113.846-26.25-41.231 0-76.308 25.958-120.923 25.958-29.847 0-56.308-9.625-56.308-42.583C78.769 368 180.616 265.333 256 265.333s177.231 102.959 177.231 171.792zM182.462 203.792c-49.847 0-80-59.5-80-100.333C102.462 70.792 120.308 32 160 32c50.154 0 80 59.5 80 100.333 0 32.667-17.846 71.459-57.538 71.459zM272 132.333C272 91.5 301.846 32 352 32c39.692 0 57.539 38.792 57.539 71.458 0 40.833-30.154 100.333-80.001 100.333C289.846 203.792 272 165 272 132.333zM512 231.5c0 42.292-36 99.458-85.231 99.458-33.847 0-49.538-29.458-49.538-57.75 0-42.291 35.999-99.75 85.231-99.75C496 173.458 512 203.208 512 231.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPaw = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPen.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPen.d.ts new file mode 100644 index 0000000000..504f136da8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPen.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPen: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPen.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPen.js new file mode 100644 index 0000000000..2d7e27b2aa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPen.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'pen'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f304'; +var svgPathData = 'M290.74 93.24l128.02 128.02-277.99 277.99-114.14 12.6C11.35 513.54-1.56 500.62.14 485.34l12.7-114.22 277.9-277.88zm207.2-19.06l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.76 18.75-49.16 0-67.91z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPen = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenAlt.d.ts new file mode 100644 index 0000000000..8a90024cf5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPenAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenAlt.js new file mode 100644 index 0000000000..8f24c865cc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'pen-alt'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f305'; +var svgPathData = 'M497.94 74.17l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91zm-246.8-20.53c-15.62-15.62-40.94-15.62-56.56 0L75.8 172.43c-6.25 6.25-6.25 16.38 0 22.62l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l101.82-101.82 22.63 22.62L93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l196.79-196.79-82.77-82.77-84.85-84.85z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPenAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenFancy.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenFancy.d.ts new file mode 100644 index 0000000000..7d948195ac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenFancy.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPenFancy: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenFancy.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenFancy.js new file mode 100644 index 0000000000..c4b5936df3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenFancy.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'pen-fancy'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f5ac'; +var svgPathData = 'M79.18 282.94a32.005 32.005 0 0 0-20.24 20.24L0 480l4.69 4.69 92.89-92.89c-.66-2.56-1.57-5.03-1.57-7.8 0-17.67 14.33-32 32-32s32 14.33 32 32-14.33 32-32 32c-2.77 0-5.24-.91-7.8-1.57l-92.89 92.89L32 512l176.82-58.94a31.983 31.983 0 0 0 20.24-20.24l33.07-84.07-98.88-98.88-84.07 33.07zM369.25 28.32L186.14 227.81l97.85 97.85 199.49-183.11C568.4 67.48 443.73-55.94 369.25 28.32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPenFancy = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenNib.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenNib.d.ts new file mode 100644 index 0000000000..f91c0fdc5d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenNib.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPenNib: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenNib.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenNib.js new file mode 100644 index 0000000000..64475b10bf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenNib.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'pen-nib'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f5ad'; +var svgPathData = 'M136.6 138.79a64.003 64.003 0 0 0-43.31 41.35L0 460l14.69 14.69L164.8 324.58c-2.99-6.26-4.8-13.18-4.8-20.58 0-26.51 21.49-48 48-48s48 21.49 48 48-21.49 48-48 48c-7.4 0-14.32-1.81-20.58-4.8L37.31 497.31 52 512l279.86-93.29a64.003 64.003 0 0 0 41.35-43.31L416 224 288 96l-151.4 42.79zm361.34-64.62l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPenNib = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenSquare.d.ts new file mode 100644 index 0000000000..04172036b0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPenSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenSquare.js new file mode 100644 index 0000000000..35fee59acd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPenSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'pen-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f14b'; +var svgPathData = 'M400 480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zM238.1 177.9L102.4 313.6l-6.3 57.1c-.8 7.6 5.6 14.1 13.3 13.3l57.1-6.3L302.2 242c2.3-2.3 2.3-6.1 0-8.5L246.7 178c-2.5-2.4-6.3-2.4-8.6-.1zM345 165.1L314.9 135c-9.4-9.4-24.6-9.4-33.9 0l-23.1 23.1c-2.3 2.3-2.3 6.1 0 8.5l55.5 55.5c2.3 2.3 6.1 2.3 8.5 0L345 199c9.3-9.3 9.3-24.5 0-33.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPenSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPencilAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPencilAlt.d.ts new file mode 100644 index 0000000000..f1b1c4f0c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPencilAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPencilAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPencilAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPencilAlt.js new file mode 100644 index 0000000000..496d685d49 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPencilAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'pencil-alt'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f303'; +var svgPathData = 'M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPencilAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPencilRuler.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPencilRuler.d.ts new file mode 100644 index 0000000000..89c937557f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPencilRuler.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPencilRuler: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPencilRuler.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPencilRuler.js new file mode 100644 index 0000000000..3b25c625e0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPencilRuler.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'pencil-ruler'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f5ae'; +var svgPathData = 'M109.46 244.04l134.58-134.56-44.12-44.12-61.68 61.68a7.919 7.919 0 0 1-11.21 0l-11.21-11.21c-3.1-3.1-3.1-8.12 0-11.21l61.68-61.68-33.64-33.65C131.47-3.1 111.39-3.1 99 9.29L9.29 99c-12.38 12.39-12.39 32.47 0 44.86l100.17 100.18zm388.47-116.8c18.76-18.76 18.75-49.17 0-67.93l-45.25-45.25c-18.76-18.76-49.18-18.76-67.95 0l-46.02 46.01 113.2 113.2 46.02-46.03zM316.08 82.71l-297 296.96L.32 487.11c-2.53 14.49 10.09 27.11 24.59 24.56l107.45-18.84L429.28 195.9 316.08 82.71zm186.63 285.43l-33.64-33.64-61.68 61.68c-3.1 3.1-8.12 3.1-11.21 0l-11.21-11.21c-3.09-3.1-3.09-8.12 0-11.21l61.68-61.68-44.14-44.14L267.93 402.5l100.21 100.2c12.39 12.39 32.47 12.39 44.86 0l89.71-89.7c12.39-12.39 12.39-32.47 0-44.86z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPencilRuler = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPeopleCarry.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPeopleCarry.d.ts new file mode 100644 index 0000000000..7caebe98eb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPeopleCarry.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPeopleCarry: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPeopleCarry.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPeopleCarry.js new file mode 100644 index 0000000000..6aa24ff51e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPeopleCarry.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'people-carry'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f4ce'; +var svgPathData = 'M128 96c26.5 0 48-21.5 48-48S154.5 0 128 0 80 21.5 80 48s21.5 48 48 48zm384 0c26.5 0 48-21.5 48-48S538.5 0 512 0s-48 21.5-48 48 21.5 48 48 48zm125.7 372.1l-44-110-41.1 46.4-2 18.2 27.7 69.2c5 12.5 17 20.1 29.7 20.1 4 0 8-.7 11.9-2.3 16.4-6.6 24.4-25.2 17.8-41.6zm-34.2-209.8L585 178.1c-4.6-20-18.6-36.8-37.5-44.9-18.5-8-39-6.7-56.1 3.3-22.7 13.4-39.7 34.5-48.1 59.4L432 229.8 416 240v-96c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16v96l-16.1-10.2-11.3-33.9c-8.3-25-25.4-46-48.1-59.4-17.2-10-37.6-11.3-56.1-3.3-18.9 8.1-32.9 24.9-37.5 44.9l-18.4 80.2c-4.6 20 .7 41.2 14.4 56.7l67.2 75.9 10.1 92.6C130 499.8 143.8 512 160 512c1.2 0 2.3-.1 3.5-.2 17.6-1.9 30.2-17.7 28.3-35.3l-10.1-92.8c-1.5-13-6.9-25.1-15.6-35l-43.3-49 17.6-70.3 6.8 20.4c4.1 12.5 11.9 23.4 24.5 32.6l51.1 32.5c4.6 2.9 12.1 4.6 17.2 5h160c5.1-.4 12.6-2.1 17.2-5l51.1-32.5c12.6-9.2 20.4-20 24.5-32.6l6.8-20.4 17.6 70.3-43.3 49c-8.7 9.9-14.1 22-15.6 35l-10.1 92.8c-1.9 17.6 10.8 33.4 28.3 35.3 1.2.1 2.3.2 3.5.2 16.1 0 30-12.1 31.8-28.5l10.1-92.6 67.2-75.9c13.6-15.5 19-36.7 14.4-56.7zM46.3 358.1l-44 110c-6.6 16.4 1.4 35 17.8 41.6 16.8 6.6 35.1-1.7 41.6-17.8l27.7-69.2-2-18.2-41.1-46.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPeopleCarry = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPercent.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPercent.d.ts new file mode 100644 index 0000000000..04c45eb166 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPercent.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPercent: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPercent.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPercent.js new file mode 100644 index 0000000000..ad5ba8f26a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPercent.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'percent'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f295'; +var svgPathData = 'M112 224c61.9 0 112-50.1 112-112S173.9 0 112 0 0 50.1 0 112s50.1 112 112 112zm0-160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm224 224c-61.9 0-112 50.1-112 112s50.1 112 112 112 112-50.1 112-112-50.1-112-112-112zm0 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zM392.3.2l31.6-.1c19.4-.1 30.9 21.8 19.7 37.8L77.4 501.6a23.95 23.95 0 0 1-19.6 10.2l-33.4.1c-19.5 0-30.9-21.9-19.7-37.8l368-463.7C377.2 4 384.5.2 392.3.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPercent = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPercentage.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPercentage.d.ts new file mode 100644 index 0000000000..18c8671457 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPercentage.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPercentage: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPercentage.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPercentage.js new file mode 100644 index 0000000000..6bf13f05f0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPercentage.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'percentage'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f541'; +var svgPathData = 'M109.25 173.25c24.99-24.99 24.99-65.52 0-90.51-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 25 25 65.52 25 90.51 0zm256 165.49c-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 24.99 24.99 65.52 24.99 90.51 0 25-24.99 25-65.51 0-90.51zm-1.94-231.43l-22.62-22.62c-12.5-12.5-32.76-12.5-45.25 0L20.69 359.44c-12.5 12.5-12.5 32.76 0 45.25l22.62 22.62c12.5 12.5 32.76 12.5 45.25 0l274.75-274.75c12.5-12.49 12.5-32.75 0-45.25z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPercentage = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhone.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhone.d.ts new file mode 100644 index 0000000000..ad81cb0853 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhone.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPhone: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhone.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhone.js new file mode 100644 index 0000000000..e4d5248814 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhone.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'phone'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f095'; +var svgPathData = 'M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPhone = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhoneSlash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhoneSlash.d.ts new file mode 100644 index 0000000000..ca14c68319 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhoneSlash.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPhoneSlash: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhoneSlash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhoneSlash.js new file mode 100644 index 0000000000..5d3788bfc3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhoneSlash.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'phone-slash'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f3dd'; +var svgPathData = 'M268.2 381.4l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48c-10.7 4.6-16.5 16.1-13.9 27.5l24 104c2.5 10.8 12.1 18.6 23.4 18.6 100.7 0 193.7-32.4 269.7-86.9l-80-61.8c-10.9 6.5-22.1 12.7-33.6 18.1zm365.6 76.7L475.1 335.5C537.9 256.4 576 156.9 576 48c0-11.2-7.7-20.9-18.6-23.4l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-12.2 26.1-27.9 50.3-46 72.8L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPhoneSlash = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhoneSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhoneSquare.d.ts new file mode 100644 index 0000000000..a2d3410bc8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhoneSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPhoneSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhoneSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhoneSquare.js new file mode 100644 index 0000000000..80b293668b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhoneSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'phone-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f098'; +var svgPathData = 'M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM94 416c-7.033 0-13.057-4.873-14.616-11.627l-14.998-65a15 15 0 0 1 8.707-17.16l69.998-29.999a15 15 0 0 1 17.518 4.289l30.997 37.885c48.944-22.963 88.297-62.858 110.781-110.78l-37.886-30.997a15.001 15.001 0 0 1-4.289-17.518l30-69.998a15 15 0 0 1 17.16-8.707l65 14.998A14.997 14.997 0 0 1 384 126c0 160.292-129.945 290-290 290z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPhoneSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhoneVolume.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhoneVolume.d.ts new file mode 100644 index 0000000000..5a4902829e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhoneVolume.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPhoneVolume: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhoneVolume.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhoneVolume.js new file mode 100644 index 0000000000..944aeb5ed9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPhoneVolume.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'phone-volume'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f2a0'; +var svgPathData = 'M97.333 506.966c-129.874-129.874-129.681-340.252 0-469.933 5.698-5.698 14.527-6.632 21.263-2.422l64.817 40.513a17.187 17.187 0 0 1 6.849 20.958l-32.408 81.021a17.188 17.188 0 0 1-17.669 10.719l-55.81-5.58c-21.051 58.261-20.612 122.471 0 179.515l55.811-5.581a17.188 17.188 0 0 1 17.669 10.719l32.408 81.022a17.188 17.188 0 0 1-6.849 20.958l-64.817 40.513a17.19 17.19 0 0 1-21.264-2.422zM247.126 95.473c11.832 20.047 11.832 45.008 0 65.055-3.95 6.693-13.108 7.959-18.718 2.581l-5.975-5.726c-3.911-3.748-4.793-9.622-2.261-14.41a32.063 32.063 0 0 0 0-29.945c-2.533-4.788-1.65-10.662 2.261-14.41l5.975-5.726c5.61-5.378 14.768-4.112 18.718 2.581zm91.787-91.187c60.14 71.604 60.092 175.882 0 247.428-4.474 5.327-12.53 5.746-17.552.933l-5.798-5.557c-4.56-4.371-4.977-11.529-.93-16.379 49.687-59.538 49.646-145.933 0-205.422-4.047-4.85-3.631-12.008.93-16.379l5.798-5.557c5.022-4.813 13.078-4.394 17.552.933zm-45.972 44.941c36.05 46.322 36.108 111.149 0 157.546-4.39 5.641-12.697 6.251-17.856 1.304l-5.818-5.579c-4.4-4.219-4.998-11.095-1.285-15.931 26.536-34.564 26.534-82.572 0-117.134-3.713-4.836-3.115-11.711 1.285-15.931l5.818-5.579c5.159-4.947 13.466-4.337 17.856 1.304z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPhoneVolume = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPiggyBank.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPiggyBank.d.ts new file mode 100644 index 0000000000..839cd9870f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPiggyBank.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPiggyBank: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPiggyBank.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPiggyBank.js new file mode 100644 index 0000000000..dc1e8c12f2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPiggyBank.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'piggy-bank'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f4d3'; +var svgPathData = 'M560 224h-29.5c-8.8-20-21.6-37.7-37.4-52.5L512 96h-32c-29.4 0-55.4 13.5-73 34.3-7.6-1.1-15.1-2.3-23-2.3H256c-77.4 0-141.9 55-156.8 128H56c-14.8 0-26.5-13.5-23.5-28.8C34.7 215.8 45.4 208 57 208h1c3.3 0 6-2.7 6-6v-20c0-3.3-2.7-6-6-6-28.5 0-53.9 20.4-57.5 48.6C-3.9 258.8 22.7 288 56 288h40c0 52.2 25.4 98.1 64 127.3V496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-48h128v48c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80.7c11.8-8.9 22.3-19.4 31.3-31.3H560c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16zm-128 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM256 96h128c5.4 0 10.7.4 15.9.8 0-.3.1-.5.1-.8 0-53-43-96-96-96s-96 43-96 96c0 2.1.5 4.1.6 6.2 15.2-3.9 31-6.2 47.4-6.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPiggyBank = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPills.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPills.d.ts new file mode 100644 index 0000000000..9c69316ebd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPills.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPills: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPills.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPills.js new file mode 100644 index 0000000000..23acbb75a6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPills.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'pills'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f484'; +var svgPathData = 'M112 32C50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V144c0-61.9-50.1-112-112-112zm48 224H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm139.7-29.7c-3.5-3.5-9.4-3.1-12.3.8-45.3 62.5-40.4 150.1 15.9 206.4 56.3 56.3 143.9 61.2 206.4 15.9 4-2.9 4.3-8.8.8-12.3L299.7 226.3zm229.8-19c-56.3-56.3-143.9-61.2-206.4-15.9-4 2.9-4.3 8.8-.8 12.3l210.8 210.8c3.5 3.5 9.4 3.1 12.3-.8 45.3-62.6 40.5-150.1-15.9-206.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPills = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlane.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlane.d.ts new file mode 100644 index 0000000000..cfd104ace8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlane.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPlane: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlane.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlane.js new file mode 100644 index 0000000000..0826c345e4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlane.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'plane'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f072'; +var svgPathData = 'M480 192H365.71L260.61 8.06A16.014 16.014 0 0 0 246.71 0h-65.5c-10.63 0-18.3 10.17-15.38 20.39L214.86 192H112l-43.2-57.6c-3.02-4.03-7.77-6.4-12.8-6.4H16.01C5.6 128-2.04 137.78.49 147.88L32 256 .49 364.12C-2.04 374.22 5.6 384 16.01 384H56c5.04 0 9.78-2.37 12.8-6.4L112 320h102.86l-49.03 171.6c-2.92 10.22 4.75 20.4 15.38 20.4h65.5c5.74 0 11.04-3.08 13.89-8.06L365.71 320H480c35.35 0 96-28.65 96-64s-60.65-64-96-64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPlane = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlaneArrival.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlaneArrival.d.ts new file mode 100644 index 0000000000..bdd90225ee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlaneArrival.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPlaneArrival: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlaneArrival.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlaneArrival.js new file mode 100644 index 0000000000..c89d883c6a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlaneArrival.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'plane-arrival'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f5af'; +var svgPathData = 'M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM44.81 205.66l88.74 80a62.607 62.607 0 0 0 25.47 13.93l287.6 78.35c26.48 7.21 54.56 8.72 81 1.36 29.67-8.27 43.44-21.21 47.25-35.71 3.83-14.5-1.73-32.71-23.37-54.96-19.28-19.82-44.35-32.79-70.83-40l-97.51-26.56L282.8 30.22c-1.51-5.81-5.95-10.35-11.66-11.91L206.05.58c-10.56-2.88-20.9 5.32-20.71 16.44l47.92 164.21-102.2-27.84-27.59-67.88c-1.93-4.89-6.01-8.57-11.02-9.93L52.72 64.75c-10.34-2.82-20.53 5-20.72 15.88l.23 101.78c.19 8.91 6.03 17.34 12.58 23.25z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPlaneArrival = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlaneDeparture.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlaneDeparture.d.ts new file mode 100644 index 0000000000..93a61b1eac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlaneDeparture.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPlaneDeparture: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlaneDeparture.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlaneDeparture.js new file mode 100644 index 0000000000..b34186d6c7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlaneDeparture.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'plane-departure'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f5b0'; +var svgPathData = 'M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM80.55 341.27c6.28 6.84 15.1 10.72 24.33 10.71l130.54-.18a65.62 65.62 0 0 0 29.64-7.12l290.96-147.65c26.74-13.57 50.71-32.94 67.02-58.31 18.31-28.48 20.3-49.09 13.07-63.65-7.21-14.57-24.74-25.27-58.25-27.45-29.85-1.94-59.54 5.92-86.28 19.48l-98.51 49.99-218.7-82.06a17.799 17.799 0 0 0-18-1.11L90.62 67.29c-10.67 5.41-13.25 19.65-5.17 28.53l156.22 98.1-103.21 52.38-72.35-36.47a17.804 17.804 0 0 0-16.07.02L9.91 230.22c-10.44 5.3-13.19 19.12-5.57 28.08l76.21 82.97z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPlaneDeparture = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlay.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlay.d.ts new file mode 100644 index 0000000000..d3509d7939 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlay.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPlay: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlay.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlay.js new file mode 100644 index 0000000000..7dd8d759fb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlay.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'play'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f04b'; +var svgPathData = 'M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPlay = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlayCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlayCircle.d.ts new file mode 100644 index 0000000000..335f435875 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlayCircle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPlayCircle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlayCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlayCircle.js new file mode 100644 index 0000000000..f36e76ba18 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlayCircle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'play-circle'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f144'; +var svgPathData = 'M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPlayCircle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlug.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlug.d.ts new file mode 100644 index 0000000000..832a9b8184 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlug.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPlug: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlug.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlug.js new file mode 100644 index 0000000000..74b7cbf64f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlug.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'plug'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f1e6'; +var svgPathData = 'M256 144V32c0-17.673 14.327-32 32-32s32 14.327 32 32v112h-64zm112 16H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h16v32c0 77.406 54.969 141.971 128 156.796V512h64v-99.204c73.031-14.825 128-79.39 128-156.796v-32h16c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm-240-16V32c0-17.673-14.327-32-32-32S64 14.327 64 32v112h64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPlug = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlus.d.ts new file mode 100644 index 0000000000..199bfc4189 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlus.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPlus: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlus.js new file mode 100644 index 0000000000..23ca48625d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlus.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'plus'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f067'; +var svgPathData = 'M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPlus = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlusCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlusCircle.d.ts new file mode 100644 index 0000000000..749e66a75b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlusCircle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPlusCircle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlusCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlusCircle.js new file mode 100644 index 0000000000..6f3172af96 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlusCircle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'plus-circle'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f055'; +var svgPathData = 'M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPlusCircle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlusSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlusSquare.d.ts new file mode 100644 index 0000000000..75d6ce3b85 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlusSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPlusSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlusSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlusSquare.js new file mode 100644 index 0000000000..4df2255eb3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPlusSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'plus-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0fe'; +var svgPathData = 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-32 252c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92H92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPlusSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPodcast.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPodcast.d.ts new file mode 100644 index 0000000000..5be986125e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPodcast.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPodcast: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPodcast.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPodcast.js new file mode 100644 index 0000000000..efe98d9bad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPodcast.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'podcast'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f2ce'; +var svgPathData = 'M267.429 488.563C262.286 507.573 242.858 512 224 512c-18.857 0-38.286-4.427-43.428-23.437C172.927 460.134 160 388.898 160 355.75c0-35.156 31.142-43.75 64-43.75s64 8.594 64 43.75c0 32.949-12.871 104.179-20.571 132.813zM156.867 288.554c-18.693-18.308-29.958-44.173-28.784-72.599 2.054-49.724 42.395-89.956 92.124-91.881C274.862 121.958 320 165.807 320 220c0 26.827-11.064 51.116-28.866 68.552-2.675 2.62-2.401 6.986.628 9.187 9.312 6.765 16.46 15.343 21.234 25.363 1.741 3.654 6.497 4.66 9.449 1.891 28.826-27.043 46.553-65.783 45.511-108.565-1.855-76.206-63.595-138.208-139.793-140.369C146.869 73.753 80 139.215 80 220c0 41.361 17.532 78.7 45.55 104.989 2.953 2.771 7.711 1.77 9.453-1.887 4.774-10.021 11.923-18.598 21.235-25.363 3.029-2.2 3.304-6.566.629-9.185zM224 0C100.204 0 0 100.185 0 224c0 89.992 52.602 165.647 125.739 201.408 4.333 2.118 9.267-1.544 8.535-6.31-2.382-15.512-4.342-30.946-5.406-44.339-.146-1.836-1.149-3.486-2.678-4.512-47.4-31.806-78.564-86.016-78.187-147.347.592-96.237 79.29-174.648 175.529-174.899C320.793 47.747 400 126.797 400 224c0 61.932-32.158 116.49-80.65 147.867-.999 14.037-3.069 30.588-5.624 47.23-.732 4.767 4.203 8.429 8.535 6.31C395.227 389.727 448 314.187 448 224 448 100.205 347.815 0 224 0zm0 160c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPodcast = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPoo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPoo.d.ts new file mode 100644 index 0000000000..a3b89a5ec2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPoo.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPoo: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPoo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPoo.js new file mode 100644 index 0000000000..53c0ec9842 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPoo.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'poo'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2fe'; +var svgPathData = 'M451.4 369.1C468.7 356 480 335.4 480 312c0-39.8-32.2-72-72-72h-14.1c13.4-11.7 22.1-28.8 22.1-48 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C250.3 14.6 256 30.6 256 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 19.2 8.7 36.3 22.1 48H104c-39.8 0-72 32.2-72 72 0 23.4 11.3 44 28.6 57.1C26.3 374.6 0 404.1 0 440c0 39.8 32.2 72 72 72h368c39.8 0 72-32.2 72-72 0-35.9-26.3-65.4-60.6-70.9zM192 256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm159.5 139C341 422.9 293 448 256 448s-85-25.1-95.5-53c-2-5.3 2-11 7.8-11h175.4c5.8 0 9.8 5.7 7.8 11zM320 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPoo = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPortrait.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPortrait.d.ts new file mode 100644 index 0000000000..2ce351aed1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPortrait.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPortrait: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPortrait.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPortrait.js new file mode 100644 index 0000000000..aeb74bd0e6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPortrait.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'portrait'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f3e0'; +var svgPathData = 'M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM192 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 384 80 375.4 80 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPortrait = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPoundSign.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPoundSign.d.ts new file mode 100644 index 0000000000..2493f19b8f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPoundSign.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPoundSign: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPoundSign.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPoundSign.js new file mode 100644 index 0000000000..ea565596dc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPoundSign.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'pound-sign'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f154'; +var svgPathData = 'M308 352h-45.495c-6.627 0-12 5.373-12 12v50.848H128V288h84c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-84v-63.556c0-32.266 24.562-57.086 61.792-57.086 23.658 0 45.878 11.505 57.652 18.849 5.151 3.213 11.888 2.051 15.688-2.685l28.493-35.513c4.233-5.276 3.279-13.005-2.119-17.081C273.124 54.56 236.576 32 187.931 32 106.026 32 48 84.742 48 157.961V224H20c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h28v128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12V364c0-6.627-5.373-12-12-12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPoundSign = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPowerOff.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPowerOff.d.ts new file mode 100644 index 0000000000..2039c1513b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPowerOff.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPowerOff: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPowerOff.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPowerOff.js new file mode 100644 index 0000000000..4442807d88 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPowerOff.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'power-off'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f011'; +var svgPathData = 'M400 54.1c63 45 104 118.6 104 201.9 0 136.8-110.8 247.7-247.5 248C120 504.3 8.2 393 8 256.4 7.9 173.1 48.9 99.3 111.8 54.2c11.7-8.3 28-4.8 35 7.7L162.6 90c5.9 10.5 3.1 23.8-6.6 31-41.5 30.8-68 79.6-68 134.9-.1 92.3 74.5 168.1 168 168.1 91.6 0 168.6-74.2 168-169.1-.3-51.8-24.7-101.8-68.1-134-9.7-7.2-12.4-20.5-6.5-30.9l15.8-28.1c7-12.4 23.2-16.1 34.8-7.8zM296 264V24c0-13.3-10.7-24-24-24h-32c-13.3 0-24 10.7-24 24v240c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPowerOff = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrescription.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrescription.d.ts new file mode 100644 index 0000000000..11d96733ee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrescription.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPrescription: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrescription.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrescription.js new file mode 100644 index 0000000000..25c00ebfe6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrescription.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'prescription'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f5b1'; +var svgPathData = 'M301.26 352l78.06-78.06c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0L256 306.74l-83.96-83.96C219.31 216.8 256 176.89 256 128c0-53.02-42.98-96-96-96H16C7.16 32 0 39.16 0 48v256c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-80h18.75l128 128-78.06 78.06c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0L256 397.25l78.06 78.06c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63L301.26 352zM64 96h96c17.64 0 32 14.36 32 32s-14.36 32-32 32H64V96z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPrescription = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrescriptionBottle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrescriptionBottle.d.ts new file mode 100644 index 0000000000..a3b6aa543a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrescriptionBottle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPrescriptionBottle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrescriptionBottle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrescriptionBottle.js new file mode 100644 index 0000000000..cff3b59849 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrescriptionBottle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'prescription-bottle'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f485'; +var svgPathData = 'M32 192h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v64zM360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPrescriptionBottle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrescriptionBottleAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrescriptionBottleAlt.d.ts new file mode 100644 index 0000000000..01983b0a46 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrescriptionBottleAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPrescriptionBottleAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrescriptionBottleAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrescriptionBottleAlt.js new file mode 100644 index 0000000000..329b55830b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrescriptionBottleAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'prescription-bottle-alt'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f486'; +var svgPathData = 'M360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24zM32 480c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v352zm64-184c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPrescriptionBottleAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrint.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrint.d.ts new file mode 100644 index 0000000000..c9e28a3a5f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrint.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPrint: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrint.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrint.js new file mode 100644 index 0000000000..d571b5f761 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPrint.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'print'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f02f'; +var svgPathData = 'M464 192h-16V81.941a24 24 0 0 0-7.029-16.97L383.029 7.029A24 24 0 0 0 366.059 0H88C74.745 0 64 10.745 64 24v168H48c-26.51 0-48 21.49-48 48v132c0 6.627 5.373 12 12 12h52v104c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V384h52c6.627 0 12-5.373 12-12V240c0-26.51-21.49-48-48-48zm-80 256H128v-96h256v96zM128 224V64h192v40c0 13.2 10.8 24 24 24h40v96H128zm304 72c-13.254 0-24-10.746-24-24s10.746-24 24-24 24 10.746 24 24-10.746 24-24 24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPrint = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faProcedures.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faProcedures.d.ts new file mode 100644 index 0000000000..1a216c6f78 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faProcedures.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faProcedures: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faProcedures.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faProcedures.js new file mode 100644 index 0000000000..97e1dc710e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faProcedures.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'procedures'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f487'; +var svgPathData = 'M528 224H272c-8.8 0-16 7.2-16 16v144H64V144c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v352c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h512v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-61.9-50.1-112-112-112zM136 96h126.1l27.6 55.2c5.9 11.8 22.7 11.8 28.6 0L368 51.8 390.1 96H512c8.8 0 16-7.2 16-16s-7.2-16-16-16H409.9L382.3 8.8C376.4-3 359.6-3 353.7 8.8L304 108.2l-19.9-39.8c-1.4-2.7-4.1-4.4-7.2-4.4H136c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm24 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faProcedures = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faProjectDiagram.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faProjectDiagram.d.ts new file mode 100644 index 0000000000..99a6c32e2f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faProjectDiagram.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faProjectDiagram: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faProjectDiagram.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faProjectDiagram.js new file mode 100644 index 0000000000..2c1c3086c6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faProjectDiagram.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'project-diagram'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f542'; +var svgPathData = 'M384 320H256c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM192 32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v128c0 17.67 14.33 32 32 32h95.72l73.16 128.04C211.98 300.98 232.4 288 256 288h.28L192 175.51V128h224V64H192V32zM608 0H480c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faProjectDiagram = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPuzzlePiece.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPuzzlePiece.d.ts new file mode 100644 index 0000000000..803220dcac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPuzzlePiece.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faPuzzlePiece: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPuzzlePiece.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPuzzlePiece.js new file mode 100644 index 0000000000..d0c59b318f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faPuzzlePiece.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'puzzle-piece'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f12e'; +var svgPathData = 'M519.442 288.651c-41.519 0-59.5 31.593-82.058 31.593C377.409 320.244 432 144 432 144s-196.288 80-196.288-3.297c0-35.827 36.288-46.25 36.288-85.985C272 19.216 243.885 0 210.539 0c-34.654 0-66.366 18.891-66.366 56.346 0 41.364 31.711 59.277 31.711 81.75C175.885 207.719 0 166.758 0 166.758v333.237s178.635 41.047 178.635-28.662c0-22.473-40-40.107-40-81.471 0-37.456 29.25-56.346 63.577-56.346 33.673 0 61.788 19.216 61.788 54.717 0 39.735-36.288 50.158-36.288 85.985 0 60.803 129.675 25.73 181.23 25.73 0 0-34.725-120.101 25.827-120.101 35.962 0 46.423 36.152 86.308 36.152C556.712 416 576 387.99 576 354.443c0-34.199-18.962-65.792-56.558-65.792z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faPuzzlePiece = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQrcode.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQrcode.d.ts new file mode 100644 index 0000000000..94655a6777 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQrcode.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faQrcode: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQrcode.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQrcode.js new file mode 100644 index 0000000000..f72ba1bd77 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQrcode.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'qrcode'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f029'; +var svgPathData = 'M0 224h192V32H0v192zM64 96h64v64H64V96zm192-64v192h192V32H256zm128 128h-64V96h64v64zM0 480h192V288H0v192zm64-128h64v64H64v-64zm352-64h32v128h-96v-32h-32v96h-64V288h96v32h64v-32zm0 160h32v32h-32v-32zm-64 0h32v32h-32v-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faQrcode = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuestion.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuestion.d.ts new file mode 100644 index 0000000000..db2d5e8b4a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuestion.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faQuestion: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuestion.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuestion.js new file mode 100644 index 0000000000..14f23c1850 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuestion.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'question'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f128'; +var svgPathData = 'M202.021 0C122.202 0 70.503 32.703 29.914 91.026c-7.363 10.58-5.093 25.086 5.178 32.874l43.138 32.709c10.373 7.865 25.132 6.026 33.253-4.148 25.049-31.381 43.63-49.449 82.757-49.449 30.764 0 68.816 19.799 68.816 49.631 0 22.552-18.617 34.134-48.993 51.164-35.423 19.86-82.299 44.576-82.299 106.405V320c0 13.255 10.745 24 24 24h72.471c13.255 0 24-10.745 24-24v-5.773c0-42.86 125.268-44.645 125.268-160.627C377.504 66.256 286.902 0 202.021 0zM192 373.459c-38.196 0-69.271 31.075-69.271 69.271 0 38.195 31.075 69.27 69.271 69.27s69.271-31.075 69.271-69.271-31.075-69.27-69.271-69.27z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faQuestion = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuestionCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuestionCircle.d.ts new file mode 100644 index 0000000000..daa1155d89 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuestionCircle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faQuestionCircle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuestionCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuestionCircle.js new file mode 100644 index 0000000000..5518e82d35 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuestionCircle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'question-circle'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f059'; +var svgPathData = 'M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faQuestionCircle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuidditch.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuidditch.d.ts new file mode 100644 index 0000000000..d8832cbcb8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuidditch.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faQuidditch: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuidditch.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuidditch.js new file mode 100644 index 0000000000..2b05c11ea2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuidditch.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'quidditch'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f458'; +var svgPathData = 'M256.5 216.8L343.2 326s-16.6 102.4-76.6 150.1C206.7 523.8 0 510.2 0 510.2s3.8-23.1 11-55.4l94.6-112.2c4-4.7-.9-11.6-6.6-9.5l-60.4 22.1c14.4-41.7 32.7-80 54.6-97.5 59.9-47.8 163.3-40.9 163.3-40.9zm238 135c-44 0-79.8 35.8-79.8 79.9 0 44.1 35.7 79.9 79.8 79.9 44.1 0 79.8-35.8 79.8-79.9 0-44.2-35.8-79.9-79.8-79.9zM636.5 31L616.7 6c-5.5-6.9-15.5-8-22.4-2.6L361.8 181.3l-34.1-43c-5.1-6.4-15.1-5.2-18.6 2.2l-25.3 54.6 86.7 109.2 58.8-12.4c8-1.7 11.4-11.2 6.3-17.6l-34.1-42.9L634 53.5c6.9-5.5 8-15.6 2.5-22.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faQuidditch = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuoteLeft.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuoteLeft.d.ts new file mode 100644 index 0000000000..7f95068e89 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuoteLeft.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faQuoteLeft: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuoteLeft.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuoteLeft.js new file mode 100644 index 0000000000..69357691fb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuoteLeft.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'quote-left'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f10d'; +var svgPathData = 'M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faQuoteLeft = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuoteRight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuoteRight.d.ts new file mode 100644 index 0000000000..6c90531dcd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuoteRight.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faQuoteRight: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuoteRight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuoteRight.js new file mode 100644 index 0000000000..60b1ed28cc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faQuoteRight.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'quote-right'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f10e'; +var svgPathData = 'M464 32H336c-26.5 0-48 21.5-48 48v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48zm-288 0H48C21.5 32 0 53.5 0 80v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faQuoteRight = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRandom.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRandom.d.ts new file mode 100644 index 0000000000..cb4a58b5b7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRandom.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRandom: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRandom.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRandom.js new file mode 100644 index 0000000000..e56b9cd230 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRandom.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'random'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f074'; +var svgPathData = 'M504.971 359.029c9.373 9.373 9.373 24.569 0 33.941l-80 79.984c-15.01 15.01-40.971 4.49-40.971-16.971V416h-58.785a12.004 12.004 0 0 1-8.773-3.812l-70.556-75.596 53.333-57.143L352 336h32v-39.981c0-21.438 25.943-31.998 40.971-16.971l80 79.981zM12 176h84l52.781 56.551 53.333-57.143-70.556-75.596A11.999 11.999 0 0 0 122.785 96H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12zm372 0v39.984c0 21.46 25.961 31.98 40.971 16.971l80-79.984c9.373-9.373 9.373-24.569 0-33.941l-80-79.981C409.943 24.021 384 34.582 384 56.019V96h-58.785a12.004 12.004 0 0 0-8.773 3.812L96 336H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h110.785c3.326 0 6.503-1.381 8.773-3.812L352 176h32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRandom = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faReceipt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faReceipt.d.ts new file mode 100644 index 0000000000..152b2ff5a1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faReceipt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faReceipt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faReceipt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faReceipt.js new file mode 100644 index 0000000000..d68625baa6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faReceipt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'receipt'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f543'; +var svgPathData = 'M358.4 3.2L320 48 265.6 3.2a15.9 15.9 0 0 0-19.2 0L192 48 137.6 3.2a15.9 15.9 0 0 0-19.2 0L64 48 25.6 3.2C15-4.7 0 2.8 0 16v480c0 13.2 15 20.7 25.6 12.8L64 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L192 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L320 464l38.4 44.8c10.5 7.9 25.6.4 25.6-12.8V16c0-13.2-15-20.7-25.6-12.8zM320 360c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faReceipt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRecycle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRecycle.d.ts new file mode 100644 index 0000000000..c429981093 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRecycle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRecycle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRecycle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRecycle.js new file mode 100644 index 0000000000..2eff715174 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRecycle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'recycle'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1b8'; +var svgPathData = 'M184.561 261.903c3.232 13.997-12.123 24.635-24.068 17.168l-40.736-25.455-50.867 81.402C55.606 356.273 70.96 384 96.012 384H148c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12H96.115c-75.334 0-121.302-83.048-81.408-146.88l50.822-81.388-40.725-25.448c-12.081-7.547-8.966-25.961 4.879-29.158l110.237-25.45c8.611-1.988 17.201 3.381 19.189 11.99l25.452 110.237zm98.561-182.915l41.289 66.076-40.74 25.457c-12.051 7.528-9 25.953 4.879 29.158l110.237 25.45c8.672 1.999 17.215-3.438 19.189-11.99l25.45-110.237c3.197-13.844-11.99-24.719-24.068-17.168l-40.687 25.424-41.263-66.082c-37.521-60.033-125.209-60.171-162.816 0l-17.963 28.766c-3.51 5.62-1.8 13.021 3.82 16.533l33.919 21.195c5.62 3.512 13.024 1.803 16.536-3.817l17.961-28.743c12.712-20.341 41.973-19.676 54.257-.022zM497.288 301.12l-27.515-44.065c-3.511-5.623-10.916-7.334-16.538-3.821l-33.861 21.159c-5.62 3.512-7.33 10.915-3.818 16.536l27.564 44.112c13.257 21.211-2.057 48.96-27.136 48.96H320V336.02c0-14.213-17.242-21.383-27.313-11.313l-80 79.981c-6.249 6.248-6.249 16.379 0 22.627l80 79.989C302.689 517.308 320 510.3 320 495.989V448h95.88c75.274 0 121.335-82.997 81.408-146.88z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRecycle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRedo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRedo.d.ts new file mode 100644 index 0000000000..3eb0c3ca66 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRedo.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRedo: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRedo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRedo.js new file mode 100644 index 0000000000..e3579707cb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRedo.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'redo'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f01e'; +var svgPathData = 'M500.333 0h-47.411c-6.853 0-12.314 5.729-11.986 12.574l3.966 82.759C399.416 41.899 331.672 8 256.001 8 119.34 8 7.899 119.526 8 256.187 8.101 393.068 119.096 504 256 504c63.926 0 122.202-24.187 166.178-63.908 5.113-4.618 5.354-12.561.482-17.433l-33.971-33.971c-4.466-4.466-11.64-4.717-16.38-.543C341.308 415.448 300.606 432 256 432c-97.267 0-176-78.716-176-176 0-97.267 78.716-176 176-176 60.892 0 114.506 30.858 146.099 77.8l-101.525-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRedo = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRedoAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRedoAlt.d.ts new file mode 100644 index 0000000000..58f1c39c1a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRedoAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRedoAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRedoAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRedoAlt.js new file mode 100644 index 0000000000..62df98e8c8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRedoAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'redo-alt'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2f9'; +var svgPathData = 'M256.455 8c66.269.119 126.437 26.233 170.859 68.685l35.715-35.715C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.75c-30.864-28.899-70.801-44.907-113.23-45.273-92.398-.798-170.283 73.977-169.484 169.442C88.764 348.009 162.184 424 256 424c41.127 0 79.997-14.678 110.629-41.556 4.743-4.161 11.906-3.908 16.368.553l39.662 39.662c4.872 4.872 4.631 12.815-.482 17.433C378.202 479.813 319.926 504 256 504 119.034 504 8.001 392.967 8 256.002 7.999 119.193 119.646 7.755 256.455 8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRedoAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRegistered.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRegistered.d.ts new file mode 100644 index 0000000000..d68b255449 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRegistered.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRegistered: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRegistered.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRegistered.js new file mode 100644 index 0000000000..aae262fe9a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRegistered.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'registered'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f25d'; +var svgPathData = 'M285.363 207.475c0 18.6-9.831 28.431-28.431 28.431h-29.876v-56.14h23.378c28.668 0 34.929 8.773 34.929 27.709zM504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM363.411 360.414c-46.729-84.825-43.299-78.636-44.702-80.98 23.432-15.172 37.945-42.979 37.945-74.486 0-54.244-31.5-89.252-105.498-89.252h-70.667c-13.255 0-24 10.745-24 24V372c0 13.255 10.745 24 24 24h22.567c13.255 0 24-10.745 24-24v-71.663h25.556l44.129 82.937a24.001 24.001 0 0 0 21.188 12.727h24.464c18.261-.001 29.829-19.591 21.018-35.587z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRegistered = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faReply.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faReply.d.ts new file mode 100644 index 0000000000..a699790642 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faReply.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faReply: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faReply.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faReply.js new file mode 100644 index 0000000000..35105d7ded --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faReply.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'reply'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f3e5'; +var svgPathData = 'M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faReply = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faReplyAll.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faReplyAll.d.ts new file mode 100644 index 0000000000..b29a505b9d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faReplyAll.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faReplyAll: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faReplyAll.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faReplyAll.js new file mode 100644 index 0000000000..06d96cfdcf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faReplyAll.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'reply-all'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f122'; +var svgPathData = 'M136.309 189.836L312.313 37.851C327.72 24.546 352 35.348 352 56.015v82.763c129.182 10.231 224 52.212 224 183.548 0 61.441-39.582 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 38.512-123.162-3.922-169.482-112.59-182.015v84.175c0 20.701-24.3 31.453-39.687 18.164L136.309 226.164c-11.071-9.561-11.086-26.753 0-36.328zm-128 36.328L184.313 378.15C199.7 391.439 224 380.687 224 359.986v-15.818l-108.606-93.785A55.96 55.96 0 0 1 96 207.998a55.953 55.953 0 0 1 19.393-42.38L224 71.832V56.015c0-20.667-24.28-31.469-39.687-18.164L8.309 189.836c-11.086 9.575-11.071 26.767 0 36.328z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faReplyAll = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRetweet.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRetweet.d.ts new file mode 100644 index 0000000000..9e55e7348c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRetweet.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRetweet: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRetweet.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRetweet.js new file mode 100644 index 0000000000..51849e5a3e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRetweet.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'retweet'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f079'; +var svgPathData = 'M629.657 343.598L528.971 444.284c-9.373 9.372-24.568 9.372-33.941 0L394.343 343.598c-9.373-9.373-9.373-24.569 0-33.941l10.823-10.823c9.562-9.562 25.133-9.34 34.419.492L480 342.118V160H292.451a24.005 24.005 0 0 1-16.971-7.029l-16-16C244.361 121.851 255.069 96 276.451 96H520c13.255 0 24 10.745 24 24v222.118l40.416-42.792c9.285-9.831 24.856-10.054 34.419-.492l10.823 10.823c9.372 9.372 9.372 24.569-.001 33.941zm-265.138 15.431A23.999 23.999 0 0 0 347.548 352H160V169.881l40.416 42.792c9.286 9.831 24.856 10.054 34.419.491l10.822-10.822c9.373-9.373 9.373-24.569 0-33.941L144.971 67.716c-9.373-9.373-24.569-9.373-33.941 0L10.343 168.402c-9.373 9.373-9.373 24.569 0 33.941l10.822 10.822c9.562 9.562 25.133 9.34 34.419-.491L96 169.881V392c0 13.255 10.745 24 24 24h243.549c21.382 0 32.09-25.851 16.971-40.971l-16.001-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRetweet = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRibbon.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRibbon.d.ts new file mode 100644 index 0000000000..127229273e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRibbon.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRibbon: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRibbon.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRibbon.js new file mode 100644 index 0000000000..eb3778dc2d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRibbon.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'ribbon'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f4d6'; +var svgPathData = 'M6.1 444.3c-9.6 10.8-7.5 27.6 4.5 35.7l68.8 27.9c9.9 6.7 23.3 5 31.3-3.8l91.8-101.9-79.2-87.9-117.2 130zm435.8 0s-292-324.6-295.4-330.1c15.4-8.4 40.2-17.9 77.5-17.9s62.1 9.5 77.5 17.9c-3.3 5.6-56 64.6-56 64.6l79.1 87.7 34.2-38c28.7-31.9 33.3-78.6 11.4-115.5l-43.7-73.5c-4.3-7.2-9.9-13.3-16.8-18-40.7-27.6-127.4-29.7-171.4 0-6.9 4.7-12.5 10.8-16.8 18l-43.6 73.2c-1.5 2.5-37.1 62.2 11.5 116L337.5 504c8 8.9 21.4 10.5 31.3 3.8l68.8-27.9c11.9-8 14-24.8 4.3-35.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRibbon = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRoad.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRoad.d.ts new file mode 100644 index 0000000000..9c27bdf1a8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRoad.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRoad: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRoad.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRoad.js new file mode 100644 index 0000000000..523a9b1316 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRoad.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'road'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f018'; +var svgPathData = 'M567.3 383.6L429.9 78.2C426 69.5 417.4 64 408 64h-96.1l1.9 18.8c.7 7.1-4.8 13.2-11.9 13.2H274c-7.1 0-12.7-6.2-11.9-13.2L264 64h-96c-9.4 0-18 5.5-21.9 14.2L8.7 383.6C3.2 395.8 0 409.6 0 424c0 13.3 10.7 24 24 24h213.6c-7.1 0-12.7-6.2-11.9-13.2l10.8-104c.6-6.1 5.8-10.8 11.9-10.8h79.2c6.1 0 11.3 4.6 11.9 10.8l10.8 104c.7 7.1-4.8 13.2-11.9 13.2H552c13.2 0 24-10.7 24-24 0-13.9-3-27.7-8.7-40.4zM254.7 154.8l3.3-32c.6-6.1 5.8-10.8 11.9-10.8h36.2c6.1 0 11.3 4.6 11.9 10.8l3.3 32c.7 7.1-4.8 13.2-11.9 13.2h-42.8c-7.1 0-12.7-6.2-11.9-13.2zM321.8 288h-67.6c-7.1 0-12.7-6.2-11.9-13.2l7.4-72c.6-6.1 5.8-10.8 11.9-10.8h52.7c6.1 0 11.3 4.6 11.9 10.8l7.4 72c.9 7-4.7 13.2-11.8 13.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRoad = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRobot.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRobot.d.ts new file mode 100644 index 0000000000..edab4e36c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRobot.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRobot: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRobot.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRobot.js new file mode 100644 index 0000000000..5986b8274e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRobot.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'robot'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f544'; +var svgPathData = 'M0 256v128c0 17.7 14.3 32 32 32h32V224H32c-17.7 0-32 14.3-32 32zM464 96H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H176c-44.2 0-80 35.8-80 80v272c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V176c0-44.2-35.8-80-80-80zM256 416h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm128 120h-64v-32h64v32zm96 0h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm192-72h-32v192h32c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRobot = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRocket.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRocket.d.ts new file mode 100644 index 0000000000..0fd19f8eab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRocket.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRocket: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRocket.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRocket.js new file mode 100644 index 0000000000..7f0138b651 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRocket.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'rocket'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f135'; +var svgPathData = 'M505.1 19.1C503.8 13 499 8.2 492.9 6.9 460.7 0 435.5 0 410.4 0 307.2 0 245.3 55.2 199.1 128H94.9c-18.2 0-34.8 10.3-42.9 26.5L2.6 253.3c-8 16 3.6 34.7 21.5 34.7h95.1c-5.9 12.8-11.9 25.5-18 37.7-3.1 6.2-1.9 13.6 3 18.5l63.6 63.6c4.9 4.9 12.3 6.1 18.5 3 12.2-6.1 24.9-12 37.7-17.9V488c0 17.8 18.8 29.4 34.7 21.5l98.7-49.4c16.3-8.1 26.5-24.8 26.5-42.9V312.8c72.6-46.3 128-108.4 128-211.1.1-25.2.1-50.4-6.8-82.6zM400 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRocket = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRss.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRss.d.ts new file mode 100644 index 0000000000..aa9a7a87e1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRss.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRss: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRss.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRss.js new file mode 100644 index 0000000000..7281263cd2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRss.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'rss'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f09e'; +var svgPathData = 'M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRss = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRssSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRssSquare.d.ts new file mode 100644 index 0000000000..5e47d846a3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRssSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRssSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRssSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRssSquare.js new file mode 100644 index 0000000000..88fc3aea73 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRssSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'rss-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f143'; +var svgPathData = 'M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM112 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm157.533 0h-34.335c-6.011 0-11.051-4.636-11.442-10.634-5.214-80.05-69.243-143.92-149.123-149.123-5.997-.39-10.633-5.431-10.633-11.441v-34.335c0-6.535 5.468-11.777 11.994-11.425 110.546 5.974 198.997 94.536 204.964 204.964.352 6.526-4.89 11.994-11.425 11.994zm103.027 0h-34.334c-6.161 0-11.175-4.882-11.427-11.038-5.598-136.535-115.204-246.161-251.76-251.76C68.882 152.949 64 147.935 64 141.774V107.44c0-6.454 5.338-11.664 11.787-11.432 167.83 6.025 302.21 141.191 308.205 308.205.232 6.449-4.978 11.787-11.432 11.787z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRssSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRubleSign.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRubleSign.d.ts new file mode 100644 index 0000000000..e64089629e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRubleSign.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRubleSign: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRubleSign.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRubleSign.js new file mode 100644 index 0000000000..043ddeb50f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRubleSign.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'ruble-sign'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f158'; +var svgPathData = 'M239.36 320C324.48 320 384 260.542 384 175.071S324.48 32 239.36 32H76c-6.627 0-12 5.373-12 12v206.632H12c-6.627 0-12 5.373-12 12V308c0 6.627 5.373 12 12 12h52v32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v52c0 6.627 5.373 12 12 12h58.56c6.627 0 12-5.373 12-12v-52H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H146.56v-32h92.8zm-92.8-219.252h78.72c46.72 0 74.88 29.11 74.88 74.323 0 45.832-28.16 75.561-76.16 75.561h-77.44V100.748z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRubleSign = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRuler.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRuler.d.ts new file mode 100644 index 0000000000..594246268d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRuler.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRuler: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRuler.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRuler.js new file mode 100644 index 0000000000..7833a79df7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRuler.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'ruler'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f545'; +var svgPathData = 'M635.7 167.2L556.1 31.7c-8.8-15-28.3-20.1-43.5-11.5l-69 39.1L503.3 161c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L416 75l-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L333.2 122 278 153.3 337.8 255c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-59.7-101.7-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-27.9-47.5-55.2 31.3 59.7 101.7c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L84.9 262.9l-69 39.1C.7 310.7-4.6 329.8 4.2 344.8l79.6 135.6c8.8 15 28.3 20.1 43.5 11.5L624.1 210c15.2-8.6 20.4-27.8 11.6-42.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRuler = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRulerCombined.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRulerCombined.d.ts new file mode 100644 index 0000000000..3a956b69da --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRulerCombined.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRulerCombined: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRulerCombined.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRulerCombined.js new file mode 100644 index 0000000000..e18a1e2518 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRulerCombined.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'ruler-combined'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f546'; +var svgPathData = 'M160 288h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56v-64h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56V96h-56c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8h56V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 2.77.91 5.24 1.57 7.8L160 329.38V288zm320 64h-32v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-41.37L24.2 510.43c2.56.66 5.04 1.57 7.8 1.57h448c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRulerCombined = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRulerHorizontal.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRulerHorizontal.d.ts new file mode 100644 index 0000000000..8f0328e3f7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRulerHorizontal.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRulerHorizontal: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRulerHorizontal.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRulerHorizontal.js new file mode 100644 index 0000000000..93b9821fab --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRulerHorizontal.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'ruler-horizontal'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f547'; +var svgPathData = 'M544 128h-48v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8H88c-4.42 0-8-3.58-8-8v-88H32c-17.67 0-32 14.33-32 32v192c0 17.67 14.33 32 32 32h512c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRulerHorizontal = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRulerVertical.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRulerVertical.d.ts new file mode 100644 index 0000000000..3a5b473ed2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRulerVertical.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRulerVertical: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRulerVertical.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRulerVertical.js new file mode 100644 index 0000000000..a437d06f18 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRulerVertical.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'ruler-vertical'; +var width = 256; +var height = 512; +var ligatures = []; +var unicode = 'f548'; +var svgPathData = 'M168 416c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 17.67 14.33 32 32 32h192c17.67 0 32-14.33 32-32v-64h-88z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRulerVertical = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRupeeSign.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRupeeSign.d.ts new file mode 100644 index 0000000000..d6b74543f3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRupeeSign.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faRupeeSign: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRupeeSign.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRupeeSign.js new file mode 100644 index 0000000000..cfd3d6764d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faRupeeSign.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'rupee-sign'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f156'; +var svgPathData = 'M308 96c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v44.748c0 6.627 5.373 12 12 12h85.28c27.308 0 48.261 9.958 60.97 27.252H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h158.757c-6.217 36.086-32.961 58.632-74.757 58.632H12c-6.627 0-12 5.373-12 12v53.012c0 3.349 1.4 6.546 3.861 8.818l165.052 152.356a12.001 12.001 0 0 0 8.139 3.182h82.562c10.924 0 16.166-13.408 8.139-20.818L116.871 319.906c76.499-2.34 131.144-53.395 138.318-127.906H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-58.69c-3.486-11.541-8.28-22.246-14.252-32H308z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faRupeeSign = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSadCry.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSadCry.d.ts new file mode 100644 index 0000000000..50a4a6e1d6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSadCry.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSadCry: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSadCry.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSadCry.js new file mode 100644 index 0000000000..e67413a890 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSadCry.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'sad-cry'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f5b3'; +var svgPathData = 'M248 8C111 8 0 119 0 256c0 90.1 48.2 168.7 120 212.1V288c0-8.8 7.2-16 16-16s16 7.2 16 16v196.7c29.5 12.4 62 19.3 96 19.3s66.5-6.9 96-19.3V288c0-8.8 7.2-16 16-16s16 7.2 16 16v180.1C447.8 424.7 496 346 496 256 496 119 385 8 248 8zm-65.5 216.5c-14.8-13.2-46.2-13.2-61 0L112 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c.8 5-1.7 10-6.1 12.4-5.8 3.1-11.2.7-13.7-1.6l-9.7-8.5zM248 416c-26.5 0-48-28.7-48-64s21.5-64 48-64 48 28.7 48 64-21.5 64-48 64zm149.8-181.5c-5.8 3.1-11.2.7-13.7-1.6l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S400 197 404 222.2c.6 4.9-1.8 9.9-6.2 12.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSadCry = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSadTear.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSadTear.d.ts new file mode 100644 index 0000000000..4baefdb7c1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSadTear.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSadTear: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSadTear.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSadTear.js new file mode 100644 index 0000000000..b32c722007 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSadTear.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'sad-tear'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f5b4'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM152 416c-26.5 0-48-21-48-47 0-20 28.5-60.4 41.6-77.8 3.2-4.3 9.6-4.3 12.8 0C171.5 308.6 200 349 200 369c0 26-21.5 47-48 47zm16-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm170.2 154.2C315.8 367.4 282.9 352 248 352c-21.2 0-21.2-32 0-32 44.4 0 86.3 19.6 114.7 53.8 13.8 16.4-11.2 36.5-24.5 20.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSadTear = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSave.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSave.d.ts new file mode 100644 index 0000000000..d7271164ce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSave.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSave: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSave.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSave.js new file mode 100644 index 0000000000..ebf9469680 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSave.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'save'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0c7'; +var svgPathData = 'M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSave = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSchool.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSchool.d.ts new file mode 100644 index 0000000000..176a3e0101 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSchool.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSchool: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSchool.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSchool.js new file mode 100644 index 0000000000..716fed61d9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSchool.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'school'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f549'; +var svgPathData = 'M0 224v272c0 8.84 7.16 16 16 16h80V192H32c-17.67 0-32 14.33-32 32zm360-48h-24v-40c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v64c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zm137.75-63.96l-160-106.67a32.02 32.02 0 0 0-35.5 0l-160 106.67A32.002 32.002 0 0 0 128 138.66V512h128V368c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v144h128V138.67c0-10.7-5.35-20.7-14.25-26.63zM320 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm288-64h-64v320h80c8.84 0 16-7.16 16-16V224c0-17.67-14.33-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSchool = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faScrewdriver.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faScrewdriver.d.ts new file mode 100644 index 0000000000..4e23efb5b6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faScrewdriver.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faScrewdriver: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faScrewdriver.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faScrewdriver.js new file mode 100644 index 0000000000..ec335780a3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faScrewdriver.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'screwdriver'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f54a'; +var svgPathData = 'M448 0L320 96v62.06l-83.03 83.03c6.79 4.25 13.27 9.06 19.07 14.87 5.8 5.8 10.62 12.28 14.87 19.07L353.94 192H416l96-128-64-64zM128 278.59L10.92 395.67c-14.55 14.55-14.55 38.15 0 52.71l52.7 52.7c14.56 14.56 38.15 14.56 52.71 0L233.41 384c29.11-29.11 29.11-76.3 0-105.41s-76.3-29.11-105.41 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faScrewdriver = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSearch.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSearch.d.ts new file mode 100644 index 0000000000..c9a94d74e2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSearch.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSearch: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSearch.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSearch.js new file mode 100644 index 0000000000..6976257eba --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSearch.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'search'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f002'; +var svgPathData = 'M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSearch = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSearchMinus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSearchMinus.d.ts new file mode 100644 index 0000000000..cb86386aae --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSearchMinus.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSearchMinus: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSearchMinus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSearchMinus.js new file mode 100644 index 0000000000..f929ed6da2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSearchMinus.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'search-minus'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f010'; +var svgPathData = 'M304 192v32c0 6.6-5.4 12-12 12H124c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSearchMinus = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSearchPlus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSearchPlus.d.ts new file mode 100644 index 0000000000..8ec8f6260a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSearchPlus.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSearchPlus: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSearchPlus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSearchPlus.js new file mode 100644 index 0000000000..d5258a978a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSearchPlus.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'search-plus'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f00e'; +var svgPathData = 'M304 192v32c0 6.6-5.4 12-12 12h-56v56c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-56h-56c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h56v-56c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v56h56c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSearchPlus = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSeedling.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSeedling.d.ts new file mode 100644 index 0000000000..3bae39e042 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSeedling.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSeedling: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSeedling.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSeedling.js new file mode 100644 index 0000000000..f86c81e7bc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSeedling.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'seedling'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f4d8'; +var svgPathData = 'M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSeedling = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faServer.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faServer.d.ts new file mode 100644 index 0000000000..b84a897e84 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faServer.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faServer: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faServer.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faServer.js new file mode 100644 index 0000000000..fa11843ffd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faServer.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'server'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f233'; +var svgPathData = 'M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faServer = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShare.d.ts new file mode 100644 index 0000000000..01b0e44026 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faShare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShare.js new file mode 100644 index 0000000000..b3b29895ad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'share'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f064'; +var svgPathData = 'M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faShare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShareAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShareAlt.d.ts new file mode 100644 index 0000000000..61cd2cc491 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShareAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faShareAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShareAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShareAlt.js new file mode 100644 index 0000000000..71e2f24ccd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShareAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'share-alt'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f1e0'; +var svgPathData = 'M352 320c-22.608 0-43.387 7.819-59.79 20.895l-102.486-64.054a96.551 96.551 0 0 0 0-41.683l102.486-64.054C308.613 184.181 329.392 192 352 192c53.019 0 96-42.981 96-96S405.019 0 352 0s-96 42.981-96 96c0 7.158.79 14.13 2.276 20.841L155.79 180.895C139.387 167.819 118.608 160 96 160c-53.019 0-96 42.981-96 96s42.981 96 96 96c22.608 0 43.387-7.819 59.79-20.895l102.486 64.054A96.301 96.301 0 0 0 256 416c0 53.019 42.981 96 96 96s96-42.981 96-96-42.981-96-96-96z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faShareAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShareAltSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShareAltSquare.d.ts new file mode 100644 index 0000000000..691675fc1b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShareAltSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faShareAltSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShareAltSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShareAltSquare.js new file mode 100644 index 0000000000..d7e355ce66 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShareAltSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'share-alt-square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f1e1'; +var svgPathData = 'M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zM304 296c-14.562 0-27.823 5.561-37.783 14.671l-67.958-40.775a56.339 56.339 0 0 0 0-27.793l67.958-40.775C276.177 210.439 289.438 216 304 216c30.928 0 56-25.072 56-56s-25.072-56-56-56-56 25.072-56 56c0 4.797.605 9.453 1.74 13.897l-67.958 40.775C171.823 205.561 158.562 200 144 200c-30.928 0-56 25.072-56 56s25.072 56 56 56c14.562 0 27.823-5.561 37.783-14.671l67.958 40.775a56.088 56.088 0 0 0-1.74 13.897c0 30.928 25.072 56 56 56s56-25.072 56-56C360 321.072 334.928 296 304 296z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faShareAltSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShareSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShareSquare.d.ts new file mode 100644 index 0000000000..f228e930d4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShareSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faShareSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShareSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShareSquare.js new file mode 100644 index 0000000000..6c651dbab9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShareSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'share-square'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f14d'; +var svgPathData = 'M568.482 177.448L424.479 313.433C409.3 327.768 384 317.14 384 295.985v-71.963c-144.575.97-205.566 35.113-164.775 171.353 4.483 14.973-12.846 26.567-25.006 17.33C155.252 383.105 120 326.488 120 269.339c0-143.937 117.599-172.5 264-173.312V24.012c0-21.174 25.317-31.768 40.479-17.448l144.003 135.988c10.02 9.463 10.028 25.425 0 34.896zM384 379.128V448H64V128h50.916a11.99 11.99 0 0 0 8.648-3.693c14.953-15.568 32.237-27.89 51.014-37.676C185.708 80.83 181.584 64 169.033 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48v-88.806c0-8.288-8.197-14.066-16.011-11.302a71.83 71.83 0 0 1-34.189 3.377c-7.27-1.046-13.8 4.514-13.8 11.859z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faShareSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShekelSign.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShekelSign.d.ts new file mode 100644 index 0000000000..be44791199 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShekelSign.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faShekelSign: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShekelSign.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShekelSign.js new file mode 100644 index 0000000000..9e7464e431 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShekelSign.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'shekel-sign'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f20b'; +var svgPathData = 'M248 168v168c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V168c0-75.11-60.89-136-136-136H24C10.75 32 0 42.74 0 56v408c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112h112c30.93 0 56 25.07 56 56zM432 32h-48c-8.84 0-16 7.16-16 16v296c0 30.93-25.07 56-56 56H200V176c0-8.84-7.16-16-16-16h-48c-8.84 0-16 7.16-16 16v280c0 13.25 10.75 24 24 24h168c75.11 0 136-60.89 136-136V48c0-8.84-7.16-16-16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faShekelSign = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShieldAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShieldAlt.d.ts new file mode 100644 index 0000000000..992ff5f755 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShieldAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faShieldAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShieldAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShieldAlt.js new file mode 100644 index 0000000000..7c8bd926d7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShieldAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'shield-alt'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f3ed'; +var svgPathData = 'M496 128c0 221.282-135.934 344.645-221.539 380.308a48 48 0 0 1-36.923 0C130.495 463.713 16 326.487 16 128a48 48 0 0 1 29.539-44.308l192-80a48 48 0 0 1 36.923 0l192 80A48 48 0 0 1 496 128zM256 446.313l.066.034c93.735-46.689 172.497-156.308 175.817-307.729L256 65.333v380.98z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faShieldAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShip.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShip.d.ts new file mode 100644 index 0000000000..96302e13a6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShip.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faShip: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShip.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShip.js new file mode 100644 index 0000000000..c62c6d95c4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShip.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'ship'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f21a'; +var svgPathData = 'M496.616 372.639l70.012-70.012c16.899-16.9 9.942-45.771-12.836-53.092L512 236.102V96c0-17.673-14.327-32-32-32h-64V24c0-13.255-10.745-24-24-24H248c-13.255 0-24 10.745-24 24v40h-64c-17.673 0-32 14.327-32 32v140.102l-41.792 13.433c-22.753 7.313-29.754 36.173-12.836 53.092l70.012 70.012C125.828 416.287 85.587 448 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24 61.023 0 107.499-20.61 143.258-59.396C181.677 487.432 216.021 512 256 512h128c39.979 0 74.323-24.568 88.742-59.396C508.495 491.384 554.968 512 616 512c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24-60.817 0-101.542-31.001-119.384-75.361zM192 128h256v87.531l-118.208-37.995a31.995 31.995 0 0 0-19.584 0L192 215.531V128z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faShip = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShippingFast.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShippingFast.d.ts new file mode 100644 index 0000000000..b43836744b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShippingFast.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faShippingFast: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShippingFast.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShippingFast.js new file mode 100644 index 0000000000..d57abb1182 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShippingFast.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'shipping-fast'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f48b'; +var svgPathData = 'M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H112C85.5 0 64 21.5 64 48v48H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h272c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H40c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H64v128c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faShippingFast = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoePrints.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoePrints.d.ts new file mode 100644 index 0000000000..88cbc138dc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoePrints.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faShoePrints: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoePrints.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoePrints.js new file mode 100644 index 0000000000..33810daea7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoePrints.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'shoe-prints'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f54b'; +var svgPathData = 'M192 160h32V32h-32c-35.35 0-64 28.65-64 64s28.65 64 64 64zM0 416c0 35.35 28.65 64 64 64h32V352H64c-35.35 0-64 28.65-64 64zm337.46-128c-34.91 0-76.16 13.12-104.73 32-24.79 16.38-44.52 32-104.73 32v128l57.53 15.97c26.21 7.28 53.01 13.12 80.31 15.05 32.69 2.31 65.6.67 97.58-6.2C472.9 481.3 512 429.22 512 384c0-64-84.18-96-174.54-96zM491.42 7.19C459.44.32 426.53-1.33 393.84.99c-27.3 1.93-54.1 7.77-80.31 15.04L256 32v128c60.2 0 79.94 15.62 104.73 32 28.57 18.88 69.82 32 104.73 32C555.82 224 640 192 640 128c0-45.22-39.1-97.3-148.58-120.81z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faShoePrints = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoppingBag.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoppingBag.d.ts new file mode 100644 index 0000000000..6fbd500820 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoppingBag.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faShoppingBag: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoppingBag.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoppingBag.js new file mode 100644 index 0000000000..7334e0db85 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoppingBag.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'shopping-bag'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f290'; +var svgPathData = 'M352 160v-32C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128v32H0v272c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V160h-96zm-192-32c0-35.29 28.71-64 64-64s64 28.71 64 64v32H160v-32zm160 120c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm-192 0c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faShoppingBag = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoppingBasket.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoppingBasket.d.ts new file mode 100644 index 0000000000..5eff9a0329 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoppingBasket.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faShoppingBasket: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoppingBasket.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoppingBasket.js new file mode 100644 index 0000000000..280a65466e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoppingBasket.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'shopping-basket'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f291'; +var svgPathData = 'M576 216v16c0 13.255-10.745 24-24 24h-8l-26.113 182.788C514.509 462.435 494.257 480 470.37 480H105.63c-23.887 0-44.139-17.565-47.518-41.212L32 256h-8c-13.255 0-24-10.745-24-24v-16c0-13.255 10.745-24 24-24h67.341l106.78-146.821c10.395-14.292 30.407-17.453 44.701-7.058 14.293 10.395 17.453 30.408 7.058 44.701L170.477 192h235.046L326.12 82.821c-10.395-14.292-7.234-34.306 7.059-44.701 14.291-10.395 34.306-7.235 44.701 7.058L484.659 192H552c13.255 0 24 10.745 24 24zM312 392V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm112 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm-224 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faShoppingBasket = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoppingCart.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoppingCart.d.ts new file mode 100644 index 0000000000..fbd3e18ec0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoppingCart.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faShoppingCart: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoppingCart.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoppingCart.js new file mode 100644 index 0000000000..56456ab113 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShoppingCart.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'shopping-cart'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f07a'; +var svgPathData = 'M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faShoppingCart = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShower.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShower.d.ts new file mode 100644 index 0000000000..c815759b8f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShower.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faShower: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShower.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShower.js new file mode 100644 index 0000000000..68ae970ae9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShower.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'shower'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2cc'; +var svgPathData = 'M389.66 135.6L231.6 293.66c-9.37 9.37-24.57 9.37-33.94 0l-11.32-11.32c-9.37-9.37-9.37-24.57 0-33.94l.11-.11c-34.03-40.21-35.16-98.94-3.39-140.38-11.97-7.55-26.14-11.91-41.3-11.91C98.88 96 64 130.88 64 173.76V480H0V173.76C0 95.59 63.59 32 141.76 32c36.93 0 70.61 14.2 95.86 37.42 35.9-11.51 76.5-4.5 106.67 21.03l.11-.11c9.37-9.37 24.57-9.37 33.94 0l11.32 11.32c9.37 9.37 9.37 24.57 0 33.94zM384 208c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm48-16c8.837 0 16 7.163 16 16s-7.163 16-16 16-16-7.163-16-16 7.163-16 16-16zm80 16c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-128 32c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-96 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm64 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faShower = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShuttleVan.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShuttleVan.d.ts new file mode 100644 index 0000000000..99fc0cf00e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShuttleVan.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faShuttleVan: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShuttleVan.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShuttleVan.js new file mode 100644 index 0000000000..33244ac0d4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faShuttleVan.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'shuttle-van'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f5b6'; +var svgPathData = 'M628.88 210.65L494.39 49.27A48.01 48.01 0 0 0 457.52 32H32C14.33 32 0 46.33 0 64v288c0 17.67 14.33 32 32 32h32c0 53.02 42.98 96 96 96s96-42.98 96-96h128c0 53.02 42.98 96 96 96s96-42.98 96-96h32c17.67 0 32-14.33 32-32V241.38c0-11.23-3.94-22.1-11.12-30.73zM64 192V96h96v96H64zm96 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm160-240h-96V96h96v96zm160 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm-96-240V96h66.02l80 96H384z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faShuttleVan = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSign.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSign.d.ts new file mode 100644 index 0000000000..b22444fa45 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSign.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSign: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSign.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSign.js new file mode 100644 index 0000000000..94e9c571d0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSign.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'sign'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f4d9'; +var svgPathData = 'M496 64H128V16c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16v48H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V128h368c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM160 384h320V160H160v224z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSign = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignInAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignInAlt.d.ts new file mode 100644 index 0000000000..da6938d8d9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignInAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSignInAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignInAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignInAlt.js new file mode 100644 index 0000000000..1d805cac40 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignInAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'sign-in-alt'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2f6'; +var svgPathData = 'M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSignInAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignLanguage.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignLanguage.d.ts new file mode 100644 index 0000000000..fa57a343b5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignLanguage.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSignLanguage: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignLanguage.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignLanguage.js new file mode 100644 index 0000000000..ea75da4a8e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignLanguage.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'sign-language'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f2a7'; +var svgPathData = 'M91.434 483.987c-.307-16.018 13.109-29.129 29.13-29.129h62.293v-5.714H56.993c-16.021 0-29.437-13.111-29.13-29.129C28.16 404.491 40.835 392 56.428 392h126.429v-5.714H29.136c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h154.286v-5.714H57.707c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h168.566l-31.085-22.606c-12.762-9.281-15.583-27.149-6.302-39.912 9.281-12.761 27.15-15.582 39.912-6.302l123.361 89.715a34.287 34.287 0 0 1 14.12 27.728v141.136c0 15.91-10.946 29.73-26.433 33.374l-80.471 18.934a137.16 137.16 0 0 1-31.411 3.646H120c-15.593-.001-28.269-12.492-28.566-28.014zm73.249-225.701h36.423l-11.187-8.136c-18.579-13.511-20.313-40.887-3.17-56.536l-13.004-16.7c-9.843-12.641-28.43-15.171-40.88-5.088-12.065 9.771-14.133 27.447-4.553 39.75l36.371 46.71zm283.298-2.103l-5.003-152.452c-.518-15.771-13.722-28.136-29.493-27.619-15.773.518-28.137 13.722-27.619 29.493l1.262 38.415L283.565 11.019c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l76.889 98.745-4.509 3.511-94.79-121.734c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l94.443 121.288-4.509 3.511-77.675-99.754c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l52.053 66.849c12.497-8.257 29.055-8.285 41.69.904l123.36 89.714c10.904 7.93 17.415 20.715 17.415 34.198v16.999l61.064-47.549a34.285 34.285 0 0 0 13.202-28.177z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSignLanguage = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignOutAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignOutAlt.d.ts new file mode 100644 index 0000000000..6aa6f15a5e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignOutAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSignOutAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignOutAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignOutAlt.js new file mode 100644 index 0000000000..8c071864ae --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignOutAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'sign-out-alt'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2f5'; +var svgPathData = 'M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSignOutAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignal.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignal.d.ts new file mode 100644 index 0000000000..f38b7ec0da --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignal.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSignal: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignal.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignal.js new file mode 100644 index 0000000000..83d55331e0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignal.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'signal'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f012'; +var svgPathData = 'M36 384h56c6.6 0 12 5.4 12 12v104c0 6.6-5.4 12-12 12H36c-6.6 0-12-5.4-12-12V396c0-6.6 5.4-12 12-12zm116-36v152c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V348c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-80v232c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V268c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-112v344c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V156c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zM536 12v488c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V12c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSignal = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignature.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignature.d.ts new file mode 100644 index 0000000000..6fb41f5204 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignature.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSignature: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignature.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignature.js new file mode 100644 index 0000000000..84a2c788e2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSignature.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'signature'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f5b7'; +var svgPathData = 'M496 320h-91.86c-9.27 0-19.72-11.31-25.78-28.52-15.23-43.36-48.11-70.3-85.8-70.3-30.84 0-58.47 18.05-76.11 49.23L194.8 106.5C188.84 81.08 169.34 64 146.28 64c-23.05 0-42.55 17.08-48.5 42.5L56.16 284.2C50.7 307.45 37.75 320 28.33 320H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h12.33c41.97 0 78.19-34.23 90.14-85.2l23.84-101.78 29.25 222.11c1.98 15.05 13.82 27.45 28.94 28.75.99.09 1.96.13 2.93.13 14.08 0 26.64-9.27 30.69-22.95l33.03-112.34c5.88-16.72 15.84-27.52 25.41-27.52 9.58 0 19.55 10.8 25.78 28.52 15.23 43.36 48.11 70.3 85.8 70.3H496c8.84 0 16-7.16 16-16v-32c0-8.86-7.16-16.02-16-16.02z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSignature = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSitemap.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSitemap.d.ts new file mode 100644 index 0000000000..4c2efb5fdc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSitemap.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSitemap: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSitemap.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSitemap.js new file mode 100644 index 0000000000..138f29a0d5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSitemap.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'sitemap'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f0e8'; +var svgPathData = 'M128 352H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm-24-80h192v48h48v-48h192v48h48v-57.59c0-21.17-17.23-38.41-38.41-38.41H344v-64h40c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H256c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h40v64H94.41C73.23 224 56 241.23 56 262.41V320h48v-48zm264 80h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm240 0h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSitemap = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSkull.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSkull.d.ts new file mode 100644 index 0000000000..76745f8e24 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSkull.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSkull: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSkull.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSkull.js new file mode 100644 index 0000000000..01ace0fece --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSkull.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'skull'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f54c'; +var svgPathData = 'M256 0C114.6 0 0 100.3 0 224c0 70.1 36.9 132.6 94.5 173.7 9.6 6.9 15.2 18.1 13.5 29.9l-9.4 66.2c-1.4 9.6 6 18.2 15.7 18.2H192v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h64v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h77.7c9.7 0 17.1-8.6 15.7-18.2l-9.4-66.2c-1.7-11.7 3.8-23 13.5-29.9C475.1 356.6 512 294.1 512 224 512 100.3 397.4 0 256 0zm-96 320c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm192 0c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSkull = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSlidersH.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSlidersH.d.ts new file mode 100644 index 0000000000..82992128df --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSlidersH.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSlidersH: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSlidersH.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSlidersH.js new file mode 100644 index 0000000000..f2d860d2af --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSlidersH.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'sliders-h'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1de'; +var svgPathData = 'M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSlidersH = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmile.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmile.d.ts new file mode 100644 index 0000000000..5113c06959 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmile.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSmile: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmile.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmile.js new file mode 100644 index 0000000000..a5064fc11b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmile.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'smile'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f118'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.6-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.4-16.2 38.1 4.2 24.6 20.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSmile = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmileBeam.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmileBeam.d.ts new file mode 100644 index 0000000000..0d82776cf2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmileBeam.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSmileBeam: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmileBeam.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmileBeam.js new file mode 100644 index 0000000000..0a1426338f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmileBeam.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'smile-beam'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f5b8'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM112 223.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zm250.8 122.8C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.3 24.6 20.5zm6.2-118.3l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.6 8.6-11 11.9-15.1 4.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSmileBeam = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmileWink.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmileWink.d.ts new file mode 100644 index 0000000000..bf4e8574d1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmileWink.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSmileWink: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmileWink.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmileWink.js new file mode 100644 index 0000000000..b27ed1137f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmileWink.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'smile-wink'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f4da'; +var svgPathData = 'M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm158.5 16.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.7 11.1-11.4 18.3-19.8 10.8l-9.7-8.5zM157.8 325.8C180.2 352.7 213 368 248 368s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.2 24.6 20.5C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11.2-36.7 24.6-20.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSmileWink = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmoking.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmoking.d.ts new file mode 100644 index 0000000000..5fba2085fa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmoking.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSmoking: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmoking.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmoking.js new file mode 100644 index 0000000000..81b7c0c36e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmoking.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'smoking'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f48d'; +var svgPathData = 'M632 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8zM553.3 87.1c-5.7-3.8-9.3-10-9.3-16.8V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v62.3c0 22 10.2 43.4 28.6 55.4 42.2 27.3 67.4 73.8 67.4 124V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-65.5-32.4-126.2-86.7-162.6zM432 352H48c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h384c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zm-32 112H224v-64h176v64zm87.7-322.4C463.8 125 448 99.3 448 70.3V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v66.4c0 43.7 24.6 81.6 60.3 106.7 22.4 15.7 35.7 41.2 35.7 68.6V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-43.3-21-83.4-56.3-108.1zM536 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSmoking = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmokingBan.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmokingBan.d.ts new file mode 100644 index 0000000000..3f7ccab7ce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmokingBan.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSmokingBan: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmokingBan.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmokingBan.js new file mode 100644 index 0000000000..9ffd6256ec --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSmokingBan.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'smoking-ban'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f54d'; +var svgPathData = 'M96 304c0 8.8 7.2 16 16 16h117.5l-96-96H112c-8.8 0-16 7.2-16 16v64zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 448c-105.9 0-192-86.1-192-192 0-41.4 13.3-79.7 35.7-111.1l267.4 267.4C335.7 434.7 297.4 448 256 448zm45.2-192H384v32h-50.8l-32-32zm111.1 111.1L365.2 320H400c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16H269.2L144.9 99.7C176.3 77.3 214.6 64 256 64c105.9 0 192 86.1 192 192 0 41.4-13.3 79.7-35.7 111.1zM320.6 128c-15.6 0-28.6-11.2-31.4-25.9-.7-3.6-4-6.1-7.7-6.1h-16.2c-5 0-8.7 4.5-8 9.4 4.6 30.9 31.2 54.6 63.3 54.6 15.6 0 28.6 11.2 31.4 25.9.7 3.6 4 6.1 7.7 6.1h16.2c5 0 8.7-4.5 8-9.4-4.6-30.9-31.2-54.6-63.3-54.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSmokingBan = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSnowflake.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSnowflake.d.ts new file mode 100644 index 0000000000..c6ed505076 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSnowflake.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSnowflake: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSnowflake.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSnowflake.js new file mode 100644 index 0000000000..b2ab0d32fa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSnowflake.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'snowflake'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f2dc'; +var svgPathData = 'M444.816 301.639a24.12 24.12 0 0 0 2.661-16.978c-2.725-12.966-15.339-21.245-28.174-18.492l-87.407 25.046L264 256l67.896-35.215 87.407 25.046c12.835 2.753 25.449-5.526 28.174-18.492 2.725-12.966-5.471-25.708-18.305-28.461l-47.477-7.137 53.077-30.956c11.363-6.627 15.257-21.306 8.696-32.785-6.561-11.479-21.091-15.412-32.454-8.785l-53.077 30.956 17.621-45.104c4.057-12.606-2.768-26.146-15.247-30.245-12.478-4.099-25.883 2.797-29.94 15.402l-22.232 88.99-60.38 35.215V144l65.175-63.945c8.778-9.852 7.987-25.027-1.766-33.894-9.753-8.867-24.775-8.068-33.552 1.784l-29.857 37.967V24c0-13.255-10.637-24-23.758-24s-23.758 10.745-23.758 24v61.912l-29.857-37.967c-8.779-9.852-23.799-10.652-33.552-1.784-9.753 8.867-10.543 24.042-1.766 33.894L200.242 144v70.431l-60.38-35.215-22.232-88.99c-4.057-12.605-17.462-19.501-29.94-15.402-12.478 4.099-19.304 17.64-15.247 30.245l17.62 45.104-53.077-30.956c-11.363-6.627-25.893-2.694-32.454 8.785s-2.667 26.157 8.696 32.785l53.077 30.956-47.477 7.137C5.993 201.634-2.203 214.375.523 227.341c2.725 12.965 15.339 21.245 28.174 18.492l87.407-25.046L184 256l-67.896 35.215-87.406-25.045c-12.835-2.753-25.449 5.526-28.174 18.492-2.725 12.967 5.47 25.708 18.305 28.461l47.477 7.137-53.077 30.956C1.866 357.843-2.027 372.521 4.533 384s21.091 15.412 32.454 8.785l53.077-30.956-17.62 45.104a24.157 24.157 0 0 0 2.022 19.428c2.831 4.953 7.416 8.909 13.224 10.816 12.478 4.099 25.883-2.797 29.94-15.402l22.232-88.99 60.38-35.215V368l-65.175 63.945c-8.778 9.852-7.987 25.027 1.766 33.894 9.754 8.868 24.774 8.068 33.552-1.784l29.857-37.967V488c0 13.255 10.637 24 23.758 24s23.758-10.745 23.758-24v-61.912l29.857 37.967A23.59 23.59 0 0 0 295.282 472a23.534 23.534 0 0 0 15.885-6.161c9.753-8.867 10.544-24.042 1.766-33.894L247.758 368v-70.431l60.38 35.215 22.232 88.99c4.057 12.605 17.462 19.501 29.94 15.402 12.479-4.099 19.304-17.64 15.247-30.245l-17.621-45.104 53.077 30.956c11.363 6.627 25.893 2.694 32.454-8.785s2.667-26.157-8.696-32.785l-53.077-30.956 47.477-7.137c6.86-1.469 12.394-5.793 15.645-11.481z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSnowflake = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSolarPanel.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSolarPanel.d.ts new file mode 100644 index 0000000000..0970337b86 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSolarPanel.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSolarPanel: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSolarPanel.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSolarPanel.js new file mode 100644 index 0000000000..38f125583f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSolarPanel.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'solar-panel'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f5ba'; +var svgPathData = 'M431.98 448.01l-47.97.05V416h-128v32.21l-47.98.05c-8.82.01-15.97 7.16-15.98 15.99l-.05 31.73c-.01 8.85 7.17 16.03 16.02 16.02l223.96-.26c8.82-.01 15.97-7.16 15.98-15.98l.04-31.73c.01-8.85-7.17-16.03-16.02-16.02zM585.2 26.74C582.58 11.31 568.99 0 553.06 0H86.93C71 0 57.41 11.31 54.79 26.74-3.32 369.16.04 348.08.03 352c-.03 17.32 14.29 32 32.6 32h574.74c18.23 0 32.51-14.56 32.59-31.79.02-4.08 3.35 16.95-54.76-325.47zM259.83 64h120.33l9.77 96H250.06l9.77-96zm-75.17 256H71.09L90.1 208h105.97l-11.41 112zm16.29-160H98.24l16.29-96h96.19l-9.77 96zm32.82 160l11.4-112h149.65l11.4 112H233.77zm195.5-256h96.19l16.29 96H439.04l-9.77-96zm26.06 256l-11.4-112H549.9l19.01 112H455.33z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSolarPanel = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSort.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSort.d.ts new file mode 100644 index 0000000000..0c5c905868 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSort.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSort: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSort.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSort.js new file mode 100644 index 0000000000..f29b13ea29 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSort.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'sort'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f0dc'; +var svgPathData = 'M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSort = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAlphaDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAlphaDown.d.ts new file mode 100644 index 0000000000..bdab4fa445 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAlphaDown.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSortAlphaDown: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAlphaDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAlphaDown.js new file mode 100644 index 0000000000..936697a492 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAlphaDown.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'sort-alpha-down'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f15d'; +var svgPathData = 'M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zm119.075-180.007A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSortAlphaDown = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAlphaUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAlphaUp.d.ts new file mode 100644 index 0000000000..a94eea8bc4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAlphaUp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSortAlphaUp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAlphaUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAlphaUp.js new file mode 100644 index 0000000000..511aa125d1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAlphaUp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'sort-alpha-up'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f15e'; +var svgPathData = 'M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zm301.671 98.621A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSortAlphaUp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAmountDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAmountDown.d.ts new file mode 100644 index 0000000000..9be8dff69b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAmountDown.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSortAmountDown: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAmountDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAmountDown.js new file mode 100644 index 0000000000..4110f2f3fd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAmountDown.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'sort-amount-down'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f160'; +var svgPathData = 'M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSortAmountDown = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAmountUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAmountUp.d.ts new file mode 100644 index 0000000000..2c64810973 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAmountUp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSortAmountUp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAmountUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAmountUp.js new file mode 100644 index 0000000000..dd5426b7c9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortAmountUp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'sort-amount-up'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f161'; +var svgPathData = 'M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSortAmountUp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortDown.d.ts new file mode 100644 index 0000000000..cbcf05f9d3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortDown.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSortDown: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortDown.js new file mode 100644 index 0000000000..aa89b72f46 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortDown.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'sort-down'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f0dd'; +var svgPathData = 'M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSortDown = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortNumericDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortNumericDown.d.ts new file mode 100644 index 0000000000..16b9fb9e59 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortNumericDown.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSortNumericDown: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortNumericDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortNumericDown.js new file mode 100644 index 0000000000..3ab827ddc6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortNumericDown.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'sort-numeric-down'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f162'; +var svgPathData = 'M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM175.984 368H128V48c0-8.837-7.163-16-16-16H80c-8.837 0-16 7.163-16 16v320H16.019c-14.212 0-21.384 17.244-11.314 27.314l79.981 80.002c6.245 6.245 16.38 6.247 22.627 0l79.984-80.002c10.05-10.05 2.928-27.314-11.313-27.314z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSortNumericDown = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortNumericUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortNumericUp.d.ts new file mode 100644 index 0000000000..364e1734ba --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortNumericUp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSortNumericUp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortNumericUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortNumericUp.js new file mode 100644 index 0000000000..3c22a98fa8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortNumericUp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'sort-numeric-up'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f163'; +var svgPathData = 'M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM16.016 144H64v320c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144h47.981c14.212 0 21.384-17.244 11.314-27.314l-79.981-80.002c-6.245-6.245-16.38-6.247-22.627 0L4.702 116.686C-5.347 126.736 1.775 144 16.016 144z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSortNumericUp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortUp.d.ts new file mode 100644 index 0000000000..cfd2a41cb3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortUp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSortUp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortUp.js new file mode 100644 index 0000000000..a1854cd2ee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSortUp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'sort-up'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f0de'; +var svgPathData = 'M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSortUp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSpa.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSpa.d.ts new file mode 100644 index 0000000000..efb3ad3c55 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSpa.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSpa: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSpa.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSpa.js new file mode 100644 index 0000000000..44fbef7064 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSpa.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'spa'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f5bb'; +var svgPathData = 'M568.25 192c-29.04.13-135.01 6.16-213.84 83-33.12 29.63-53.36 63.3-66.41 94.86-13.05-31.56-33.29-65.23-66.41-94.86-78.83-76.84-184.8-82.87-213.84-83-4.41-.02-7.79 3.4-7.75 7.82.23 27.92 7.14 126.14 88.77 199.3C172.79 480.94 256 480 288 480s115.19.95 199.23-80.88c81.64-73.17 88.54-171.38 88.77-199.3.04-4.42-3.34-7.84-7.75-7.82zM287.98 302.6c12.82-18.85 27.6-35.78 44.09-50.52 19.09-18.61 39.58-33.3 60.26-45.18-16.44-70.5-51.72-133.05-96.73-172.22-4.11-3.58-11.02-3.58-15.14 0-44.99 39.14-80.27 101.63-96.74 172.07 20.37 11.7 40.5 26.14 59.22 44.39a282.768 282.768 0 0 1 45.04 51.46z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSpa = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSpaceShuttle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSpaceShuttle.d.ts new file mode 100644 index 0000000000..a5df59c21b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSpaceShuttle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSpaceShuttle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSpaceShuttle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSpaceShuttle.js new file mode 100644 index 0000000000..da8811a3ef --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSpaceShuttle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'space-shuttle'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f197'; +var svgPathData = 'M592.604 208.244C559.735 192.836 515.777 184 472 184H186.327c-4.952-6.555-10.585-11.978-16.72-16H376C229.157 137.747 219.403 32 96.003 32H96v128H80V32c-26.51 0-48 28.654-48 64v64c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v16c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v64c0 35.346 21.49 64 48 64V352h16v128h.003c123.4 0 133.154-105.747 279.997-136H169.606c6.135-4.022 11.768-9.445 16.72-16H472c43.777 0 87.735-8.836 120.604-24.244C622.282 289.845 640 271.992 640 256s-17.718-33.845-47.396-47.756zM488 296a8 8 0 0 1-8-8v-64a8 8 0 0 1 8-8c31.909 0 31.942 80 0 80z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSpaceShuttle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSpinner.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSpinner.d.ts new file mode 100644 index 0000000000..918b05e104 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSpinner.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSpinner: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSpinner.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSpinner.js new file mode 100644 index 0000000000..82fa2d3f13 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSpinner.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'spinner'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f110'; +var svgPathData = 'M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSpinner = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSplotch.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSplotch.d.ts new file mode 100644 index 0000000000..b2ff83d359 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSplotch.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSplotch: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSplotch.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSplotch.js new file mode 100644 index 0000000000..10031f3ecc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSplotch.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'splotch'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f5bc'; +var svgPathData = 'M472.29 195.89l-67.06-22.95c-19.28-6.6-33.54-20.92-38.14-38.3L351.1 74.19c-11.58-43.77-76.57-57.13-109.98-22.62l-46.14 47.67c-13.26 13.71-33.54 20.93-54.2 19.31l-71.88-5.62c-52.05-4.07-86.93 44.88-59.03 82.83l38.54 52.42c11.08 15.07 12.82 33.86 4.64 50.24L24.62 355.4c-20.59 41.25 22.84 84.87 73.49 73.81l69.96-15.28c20.11-4.39 41.45 0 57.07 11.73l54.32 40.83c39.32 29.56 101.04 7.57 104.45-37.22l4.7-61.86c1.35-17.79 12.8-33.86 30.63-42.99l62-31.74c44.88-22.96 39.59-80.17-8.95-96.79z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSplotch = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSprayCan.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSprayCan.d.ts new file mode 100644 index 0000000000..6dc577ea6a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSprayCan.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSprayCan: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSprayCan.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSprayCan.js new file mode 100644 index 0000000000..0c09c8de80 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSprayCan.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'spray-can'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f5bd'; +var svgPathData = 'M224 32c0-17.67-14.33-32-32-32h-64c-17.67 0-32 14.33-32 32v96h128V32zm256 96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-256 32H96c-53.02 0-96 42.98-96 96v224c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V256c0-53.02-42.98-96-96-96zm-64 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zM480 96c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm-96 32c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-96-96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 0c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 192c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSprayCan = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSquare.d.ts new file mode 100644 index 0000000000..f1b263baac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSquare.js new file mode 100644 index 0000000000..db57226298 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'square'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0c8'; +var svgPathData = 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSquareFull.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSquareFull.d.ts new file mode 100644 index 0000000000..c50759bff1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSquareFull.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSquareFull: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSquareFull.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSquareFull.js new file mode 100644 index 0000000000..dcfb4820ac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSquareFull.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'square-full'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f45c'; +var svgPathData = 'M512 512H0V0h512v512z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSquareFull = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStamp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStamp.d.ts new file mode 100644 index 0000000000..9450e698f4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStamp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStamp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStamp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStamp.js new file mode 100644 index 0000000000..5c645351a4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStamp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'stamp'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f5bf'; +var svgPathData = 'M32 512h448v-64H32v64zm384-256h-66.56c-16.26 0-29.44-13.18-29.44-29.44v-9.46c0-27.37 8.88-53.41 21.46-77.72 9.11-17.61 12.9-38.39 9.05-60.42-6.77-38.78-38.47-70.7-77.26-77.45C212.62-9.04 160 37.33 160 96c0 14.16 3.12 27.54 8.69 39.58C182.02 164.43 192 194.7 192 226.49v.07c0 16.26-13.18 29.44-29.44 29.44H96c-53.02 0-96 42.98-96 96v32c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-32c0-53.02-42.98-96-96-96z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStamp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStar.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStar.d.ts new file mode 100644 index 0000000000..5da537708e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStar.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStar: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStar.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStar.js new file mode 100644 index 0000000000..2862abebf3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStar.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'star'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f005'; +var svgPathData = 'M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStar = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStarHalf.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStarHalf.d.ts new file mode 100644 index 0000000000..3e5c47e153 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStarHalf.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStarHalf: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStarHalf.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStarHalf.js new file mode 100644 index 0000000000..87de0b266e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStarHalf.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'star-half'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f089'; +var svgPathData = 'M288 0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6V0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStarHalf = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStarHalfAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStarHalfAlt.d.ts new file mode 100644 index 0000000000..a22aa46183 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStarHalfAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStarHalfAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStarHalfAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStarHalfAlt.js new file mode 100644 index 0000000000..cb0e51d72b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStarHalfAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'star-half-alt'; +var width = 536; +var height = 512; +var ligatures = []; +var unicode = 'f5c0'; +var svgPathData = 'M508.55 171.51L362.18 150.2 296.77 17.81C290.89 5.98 279.42 0 267.95 0c-11.4 0-22.79 5.9-28.69 17.81l-65.43 132.38-146.38 21.29c-26.25 3.8-36.77 36.09-17.74 54.59l105.89 103-25.06 145.48C86.98 495.33 103.57 512 122.15 512c4.93 0 10-1.17 14.87-3.75l130.95-68.68 130.94 68.7c4.86 2.55 9.92 3.71 14.83 3.71 18.6 0 35.22-16.61 31.66-37.4l-25.03-145.49 105.91-102.98c19.04-18.5 8.52-50.8-17.73-54.6zm-121.74 123.2l-18.12 17.62 4.28 24.88 19.52 113.45-102.13-53.59-22.38-11.74.03-317.19 51.03 103.29 11.18 22.63 25.01 3.64 114.23 16.63-82.65 80.38z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStarHalfAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStepBackward.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStepBackward.d.ts new file mode 100644 index 0000000000..a7f2e0f4b0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStepBackward.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStepBackward: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStepBackward.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStepBackward.js new file mode 100644 index 0000000000..80f9335617 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStepBackward.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'step-backward'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f048'; +var svgPathData = 'M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStepBackward = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStepForward.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStepForward.d.ts new file mode 100644 index 0000000000..cc2081e44a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStepForward.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStepForward: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStepForward.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStepForward.js new file mode 100644 index 0000000000..277366420e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStepForward.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'step-forward'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f051'; +var svgPathData = 'M384 44v424c0 6.6-5.4 12-12 12h-48c-6.6 0-12-5.4-12-12V291.6l-195.5 181C95.9 489.7 64 475.4 64 448V64c0-27.4 31.9-41.7 52.5-24.6L312 219.3V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStepForward = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStethoscope.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStethoscope.d.ts new file mode 100644 index 0000000000..41388f78c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStethoscope.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStethoscope: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStethoscope.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStethoscope.js new file mode 100644 index 0000000000..f127c67825 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStethoscope.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'stethoscope'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0f1'; +var svgPathData = 'M447.1 112c-34.2.5-62.3 28.4-63 62.6-.5 24.3 12.5 45.6 32 56.8V344c0 57.3-50.2 104-112 104-60 0-109.2-44.1-111.9-99.2C265 333.8 320 269.2 320 192V36.6c0-11.4-8.1-21.3-19.3-23.5L237.8.5c-13-2.6-25.6 5.8-28.2 18.8L206.4 35c-2.6 13 5.8 25.6 18.8 28.2l30.7 6.1v121.4c0 52.9-42.2 96.7-95.1 97.2-53.4.5-96.9-42.7-96.9-96V69.4l30.7-6.1c13-2.6 21.4-15.2 18.8-28.2l-3.1-15.7C107.7 6.4 95.1-2 82.1.6L19.3 13C8.1 15.3 0 25.1 0 36.6V192c0 77.3 55.1 142 128.1 156.8C130.7 439.2 208.6 512 304 512c97 0 176-75.4 176-168V231.4c19.1-11.1 32-31.7 32-55.4 0-35.7-29.2-64.5-64.9-64zm.9 80c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStethoscope = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStickyNote.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStickyNote.d.ts new file mode 100644 index 0000000000..ccbaeea119 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStickyNote.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStickyNote: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStickyNote.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStickyNote.js new file mode 100644 index 0000000000..3478024516 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStickyNote.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'sticky-note'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f249'; +var svgPathData = 'M312 320h136V56c0-13.3-10.7-24-24-24H24C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h264V344c0-13.2 10.8-24 24-24zm129 55l-98 98c-4.5 4.5-10.6 7-17 7h-6V352h128v6.1c0 6.3-2.5 12.4-7 16.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStickyNote = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStop.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStop.d.ts new file mode 100644 index 0000000000..e05ec143c5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStop.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStop: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStop.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStop.js new file mode 100644 index 0000000000..295cd535b3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStop.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'stop'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f04d'; +var svgPathData = 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStop = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStopCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStopCircle.d.ts new file mode 100644 index 0000000000..0e0be3e3ee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStopCircle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStopCircle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStopCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStopCircle.js new file mode 100644 index 0000000000..a3e0a53e7a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStopCircle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'stop-circle'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f28d'; +var svgPathData = 'M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStopCircle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStopwatch.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStopwatch.d.ts new file mode 100644 index 0000000000..422e998c48 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStopwatch.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStopwatch: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStopwatch.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStopwatch.js new file mode 100644 index 0000000000..985ef4b604 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStopwatch.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'stopwatch'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f2f2'; +var svgPathData = 'M432 304c0 114.9-93.1 208-208 208S16 418.9 16 304c0-104 76.3-190.2 176-205.5V64h-28c-6.6 0-12-5.4-12-12V12c0-6.6 5.4-12 12-12h120c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-28v34.5c37.5 5.8 71.7 21.6 99.7 44.6l27.5-27.5c4.7-4.7 12.3-4.7 17 0l28.3 28.3c4.7 4.7 4.7 12.3 0 17l-29.4 29.4-.6.6C419.7 223.3 432 262.2 432 304zm-176 36V188.5c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12V340c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStopwatch = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStore.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStore.d.ts new file mode 100644 index 0000000000..2f245d1fbb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStore.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStore: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStore.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStore.js new file mode 100644 index 0000000000..d5e0b3a856 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStore.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'store'; +var width = 616; +var height = 512; +var ligatures = []; +var unicode = 'f54e'; +var svgPathData = 'M602 118.6L537.1 15C531.3 5.7 521 0 510 0H106C95 0 84.7 5.7 78.9 15L14 118.6c-33.5 53.5-3.8 127.9 58.8 136.4 4.5.6 9.1.9 13.7.9 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18.1 20.1 44.3 33.1 73.8 33.1 4.7 0 9.2-.3 13.7-.9 62.8-8.4 92.6-82.8 59-136.4zM529.5 288c-10 0-19.9-1.5-29.5-3.8V384H116v-99.8c-9.6 2.2-19.5 3.8-29.5 3.8-6 0-12.1-.4-18-1.2-5.6-.8-11.1-2.1-16.4-3.6V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V283.2c-5.4 1.6-10.8 2.9-16.4 3.6-6.1.8-12.1 1.2-18.2 1.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStore = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStoreAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStoreAlt.d.ts new file mode 100644 index 0000000000..d6d5c5722c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStoreAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStoreAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStoreAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStoreAlt.js new file mode 100644 index 0000000000..583dab4e9d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStoreAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'store-alt'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f54f'; +var svgPathData = 'M320 384H128V224H64v256c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V224h-64v160zm314.6-241.8l-85.3-128c-6-8.9-16-14.2-26.7-14.2H117.4c-10.7 0-20.7 5.3-26.6 14.2l-85.3 128c-14.2 21.3 1 49.8 26.6 49.8H608c25.5 0 40.7-28.5 26.6-49.8zM512 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h-64v272z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStoreAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStream.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStream.d.ts new file mode 100644 index 0000000000..f815225e81 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStream.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStream: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStream.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStream.js new file mode 100644 index 0000000000..225f3427cb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStream.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'stream'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f550'; +var svgPathData = 'M16 128h416c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H16C7.16 32 0 39.16 0 48v64c0 8.84 7.16 16 16 16zm480 80H80c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm-64 176H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStream = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStreetView.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStreetView.d.ts new file mode 100644 index 0000000000..e812402d99 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStreetView.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStreetView: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStreetView.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStreetView.js new file mode 100644 index 0000000000..487e1a5574 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStreetView.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'street-view'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f21d'; +var svgPathData = 'M192 64c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zm112 80h-11.36c-22.711 10.443-49.59 10.894-73.28 0H208c-26.51 0-48 21.49-48 48v104c0 13.255 10.745 24 24 24h16v104c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V320h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48zm85.642 189.152a72.503 72.503 0 0 1-29.01 27.009C391.133 365.251 480 385.854 480 416c0 46.304-167.656 64-224 64-70.303 0-224-20.859-224-64 0-30.123 88.361-50.665 119.367-55.839a72.516 72.516 0 0 1-29.01-27.009C74.959 343.395 0 367.599 0 416c0 77.111 178.658 96 256 96 77.249 0 256-18.865 256-96 0-48.403-74.967-72.606-122.358-82.848z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStreetView = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStrikethrough.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStrikethrough.d.ts new file mode 100644 index 0000000000..fe9d69140d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStrikethrough.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStrikethrough: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStrikethrough.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStrikethrough.js new file mode 100644 index 0000000000..a1d16e3802 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStrikethrough.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'strikethrough'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0cc'; +var svgPathData = 'M496 288H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h480c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16zm-214.666 16c27.258 12.937 46.524 28.683 46.524 56.243 0 33.108-28.977 53.676-75.621 53.676-32.325 0-76.874-12.08-76.874-44.271V368c0-8.837-7.164-16-16-16H113.75c-8.836 0-16 7.163-16 16v19.204c0 66.845 77.717 101.82 154.487 101.82 88.578 0 162.013-45.438 162.013-134.424 0-19.815-3.618-36.417-10.143-50.6H281.334zm-30.952-96c-32.422-13.505-56.836-28.946-56.836-59.683 0-33.92 30.901-47.406 64.962-47.406 42.647 0 64.962 16.593 64.962 32.985V136c0 8.837 7.164 16 16 16h45.613c8.836 0 16-7.163 16-16v-30.318c0-52.438-71.725-79.875-142.575-79.875-85.203 0-150.726 40.972-150.726 125.646 0 22.71 4.665 41.176 12.777 56.547h129.823z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStrikethrough = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStroopwafel.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStroopwafel.d.ts new file mode 100644 index 0000000000..f0b5d6f2c2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStroopwafel.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faStroopwafel: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStroopwafel.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStroopwafel.js new file mode 100644 index 0000000000..8947a1ae2a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faStroopwafel.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'stroopwafel'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f551'; +var svgPathData = 'M188.12 210.74L142.86 256l45.25 45.25L233.37 256l-45.25-45.26zm113.13-22.62L256 142.86l-45.25 45.25L256 233.37l45.25-45.25zm-90.5 135.76L256 369.14l45.26-45.26L256 278.63l-45.25 45.25zM256 0C114.62 0 0 114.62 0 256s114.62 256 256 256 256-114.62 256-256S397.38 0 256 0zm186.68 295.6l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-28.29-28.29-45.25 45.25 33.94 33.94 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-33.94-33.94-45.26 45.26 28.29 28.29c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0L256 414.39l-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l28.29-28.29-45.25-45.26-33.94 33.94 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 33.94-33.94-45.25-45.25-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0L69.32 295.6c-3.12-3.12-3.12-8.19 0-11.31L97.61 256l-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l28.29 28.29 45.25-45.26-33.94-33.94-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 33.94 33.94 45.26-45.25-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0L256 97.61l28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-28.29 28.29 45.26 45.25 33.94-33.94-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-33.94 33.94 45.25 45.26 28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31L414.39 256l28.29 28.28a8.015 8.015 0 0 1 0 11.32zM278.63 256l45.26 45.25L369.14 256l-45.25-45.26L278.63 256z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faStroopwafel = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSubscript.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSubscript.d.ts new file mode 100644 index 0000000000..ad7198d2a3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSubscript.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSubscript: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSubscript.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSubscript.js new file mode 100644 index 0000000000..91eb059f2a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSubscript.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'subscript'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f12c'; +var svgPathData = 'M395.198 416c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 256c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 96H16C7.163 96 0 88.837 0 80V48c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035A15.999 15.999 0 0 1 204.226 32H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 256H272z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSubscript = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSubway.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSubway.d.ts new file mode 100644 index 0000000000..86acdeb582 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSubway.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSubway: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSubway.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSubway.js new file mode 100644 index 0000000000..8260fafc65 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSubway.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'subway'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f239'; +var svgPathData = 'M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zM200 232V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm200 0V120c0-13.255-10.745-24-24-24H272c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm-48 56c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm-256 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSubway = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSuitcase.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSuitcase.d.ts new file mode 100644 index 0000000000..9f273b0586 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSuitcase.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSuitcase: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSuitcase.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSuitcase.js new file mode 100644 index 0000000000..38fdaa81a8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSuitcase.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'suitcase'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0f2'; +var svgPathData = 'M128 480h256V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v400zm64-384h128v32H192V96zm320 80v256c0 26.5-21.5 48-48 48h-48V128h48c26.5 0 48 21.5 48 48zM96 480H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h48v352z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSuitcase = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSuitcaseRolling.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSuitcaseRolling.d.ts new file mode 100644 index 0000000000..b9b2ceeb24 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSuitcaseRolling.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSuitcaseRolling: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSuitcaseRolling.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSuitcaseRolling.js new file mode 100644 index 0000000000..b5d9519e18 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSuitcaseRolling.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'suitcase-rolling'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f5c1'; +var svgPathData = 'M336 160H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h16v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h128v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h16c26.51 0 48-21.49 48-48V208c0-26.51-21.49-48-48-48zm-16 216c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zM144 48h96v80h48V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v80h48V48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSuitcaseRolling = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSun.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSun.d.ts new file mode 100644 index 0000000000..585b6fb874 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSun.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSun: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSun.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSun.js new file mode 100644 index 0000000000..7be742debd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSun.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'sun'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f185'; +var svgPathData = 'M274.835 12.646l25.516 62.393c4.213 10.301 16.671 14.349 26.134 8.492l57.316-35.479c15.49-9.588 34.808 4.447 30.475 22.142l-16.03 65.475c-2.647 10.81 5.053 21.408 16.152 22.231l67.224 4.987c18.167 1.348 25.546 24.057 11.641 35.826L441.81 242.26c-8.495 7.19-8.495 20.289 0 27.479l51.454 43.548c13.906 11.769 6.527 34.478-11.641 35.826l-67.224 4.987c-11.099.823-18.799 11.421-16.152 22.231l16.03 65.475c4.332 17.695-14.986 31.73-30.475 22.142l-57.316-35.479c-9.463-5.858-21.922-1.81-26.134 8.492l-25.516 62.393c-6.896 16.862-30.774 16.862-37.67 0l-25.516-62.393c-4.213-10.301-16.671-14.349-26.134-8.492l-57.317 35.479c-15.49 9.588-34.808-4.447-30.475-22.142l16.03-65.475c2.647-10.81-5.053-21.408-16.152-22.231l-67.224-4.987c-18.167-1.348-25.546-24.057-11.641-35.826L70.19 269.74c8.495-7.19 8.495-20.289 0-27.479l-51.454-43.548c-13.906-11.769-6.527-34.478 11.641-35.826l67.224-4.987c11.099-.823 18.799-11.421 16.152-22.231l-16.03-65.475c-4.332-17.695 14.986-31.73 30.475-22.142l57.317 35.479c9.463 5.858 21.921 1.81 26.134-8.492l25.516-62.393c6.896-16.861 30.774-16.861 37.67 0zM392 256c0-74.991-61.01-136-136-136-74.991 0-136 61.009-136 136s61.009 136 136 136c74.99 0 136-61.009 136-136zm-32 0c0 57.346-46.654 104-104 104s-104-46.654-104-104 46.654-104 104-104 104 46.654 104 104z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSun = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSuperscript.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSuperscript.d.ts new file mode 100644 index 0000000000..ca32ac6f9c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSuperscript.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSuperscript: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSuperscript.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSuperscript.js new file mode 100644 index 0000000000..639296b1f1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSuperscript.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'superscript'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f12b'; +var svgPathData = 'M395.198 256c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 256H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035a16 16 0 0 1 13.598-7.567H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 416H272z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSuperscript = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSurprise.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSurprise.d.ts new file mode 100644 index 0000000000..56c5d7abd9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSurprise.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSurprise: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSurprise.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSurprise.js new file mode 100644 index 0000000000..7aaf0e6360 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSurprise.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'surprise'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f5c2'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm112 208c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm80-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSurprise = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSwatchbook.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSwatchbook.d.ts new file mode 100644 index 0000000000..33006436ec --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSwatchbook.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSwatchbook: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSwatchbook.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSwatchbook.js new file mode 100644 index 0000000000..8c3e6f88b9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSwatchbook.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'swatchbook'; +var width = 511; +var height = 512; +var ligatures = []; +var unicode = 'f5c3'; +var svgPathData = 'M479.06 320H372.29L186.15 506.51c-2.06 2.07-4.49 3.58-6.67 5.49h299.58c17.64 0 31.94-14.33 31.94-32V352c0-17.67-14.3-32-31.94-32zm-44.5-152.9l-90.33-90.51c-12.47-12.5-32.69-12.5-45.17 0l-75.5 75.65V416c0 2.96-.67 5.73-.87 8.64l211.87-212.28c12.47-12.5 12.47-32.77 0-45.26zM191.62 32c0-17.67-14.3-32-31.94-32H31.94C14.3 0 0 14.33 0 32v384c0 53.02 42.9 96 95.81 96s95.81-42.98 95.81-96V32zM95.81 440c-13.23 0-23.95-10.75-23.95-24 0-13.26 10.73-24 23.95-24s23.95 10.74 23.95 24c.01 13.25-10.72 24-23.95 24zm31.94-184H63.88v-64h63.88v64zm0-128H63.88V64h63.88v64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSwatchbook = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSwimmer.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSwimmer.d.ts new file mode 100644 index 0000000000..aafdf21e64 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSwimmer.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSwimmer: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSwimmer.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSwimmer.js new file mode 100644 index 0000000000..04563463ea --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSwimmer.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'swimmer'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f5c4'; +var svgPathData = 'M189.61 310.58c3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c16.02-14.77 34.5-22.58 53.46-22.58h16.3c18.96 0 37.45 7.81 53.46 22.58 3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c14.86-13.71 31.88-21.12 49.39-22.16l-112.84-80.6 18-12.86c3.64-2.58 8.28-3.52 12.62-2.61l100.35 21.53c25.91 5.53 51.44-10.97 57-36.88 5.55-25.92-10.95-51.44-36.88-57L437.68 98.47c-30.73-6.58-63.02.12-88.56 18.38l-80.02 57.17c-10.38 7.39-19.36 16.44-26.72 26.94L173.75 299c5.47 3.23 10.82 6.93 15.86 11.58zM624 352h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 343.58 442.04 352 416 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 343.58 250.04 352 224 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 343.58 58.04 352 32 352H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-512-96c44.18 0 80-35.82 80-80s-35.82-80-80-80-80 35.82-80 80 35.82 80 80 80z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSwimmer = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSwimmingPool.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSwimmingPool.d.ts new file mode 100644 index 0000000000..3b6f4ed3c2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSwimmingPool.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSwimmingPool: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSwimmingPool.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSwimmingPool.js new file mode 100644 index 0000000000..deb3988efd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSwimmingPool.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'swimming-pool'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f5c5'; +var svgPathData = 'M624 416h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 407.58 442.04 416 416 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 407.58 250.04 416 224 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 407.58 58.04 416 32 416H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-400-32v-96h192v96c19.12 0 30.86-6.16 34.39-9.42 9.17-8.46 19.2-14.34 29.61-18.07V128c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v96H224v-96c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v228.5c10.41 3.73 20.44 9.62 29.61 18.07 3.53 3.27 15.27 9.43 34.39 9.43z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSwimmingPool = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSync.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSync.d.ts new file mode 100644 index 0000000000..4e3a497c04 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSync.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSync: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSync.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSync.js new file mode 100644 index 0000000000..2a035db7b3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSync.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'sync'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f021'; +var svgPathData = 'M440.935 12.574l3.966 82.766C399.416 41.904 331.674 8 256 8 134.813 8 33.933 94.924 12.296 209.824 10.908 217.193 16.604 224 24.103 224h49.084c5.57 0 10.377-3.842 11.676-9.259C103.407 137.408 172.931 80 256 80c60.893 0 114.512 30.856 146.104 77.801l-101.53-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12h-47.411c-6.853 0-12.315 5.729-11.987 12.574zM256 432c-60.895 0-114.517-30.858-146.109-77.805l101.868 4.871c6.845.327 12.573-5.134 12.573-11.986v-47.412c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12V500c0 6.627 5.373 12 12 12h47.385c6.863 0 12.328-5.745 11.985-12.599l-4.129-82.575C112.725 470.166 180.405 504 256 504c121.187 0 222.067-86.924 243.704-201.824 1.388-7.369-4.308-14.176-11.807-14.176h-49.084c-5.57 0-10.377 3.842-11.676 9.259C408.593 374.592 339.069 432 256 432z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSync = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSyncAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSyncAlt.d.ts new file mode 100644 index 0000000000..fc691558bb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSyncAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSyncAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSyncAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSyncAlt.js new file mode 100644 index 0000000000..48a4b51ecc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSyncAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'sync-alt'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2f1'; +var svgPathData = 'M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSyncAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSyringe.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSyringe.d.ts new file mode 100644 index 0000000000..6030536c7f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSyringe.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faSyringe: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSyringe.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSyringe.js new file mode 100644 index 0000000000..46ea9c73f0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faSyringe.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'syringe'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f48e'; +var svgPathData = 'M201.5 174.8l55.7 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-55.7-55.8-45.3 45.3 55.8 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L111 265.2l-26.4 26.4c-17.3 17.3-25.6 41.1-23 65.4l7.1 63.6L2.3 487c-3.1 3.1-3.1 8.2 0 11.3l11.3 11.3c3.1 3.1 8.2 3.1 11.3 0l66.3-66.3 63.6 7.1c23.9 2.6 47.9-5.4 65.4-23l181.9-181.9-135.7-135.7-64.9 65zm308.2-93.3L430.5 2.3c-3.1-3.1-8.2-3.1-11.3 0l-11.3 11.3c-3.1 3.1-3.1 8.2 0 11.3l28.3 28.3-45.3 45.3-56.6-56.6-17-17c-3.1-3.1-8.2-3.1-11.3 0l-33.9 33.9c-3.1 3.1-3.1 8.2 0 11.3l17 17L424.8 223l17 17c3.1 3.1 8.2 3.1 11.3 0l33.9-34c3.1-3.1 3.1-8.2 0-11.3l-73.5-73.5 45.3-45.3 28.3 28.3c3.1 3.1 8.2 3.1 11.3 0l11.3-11.3c3.1-3.2 3.1-8.2 0-11.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faSyringe = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTable.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTable.d.ts new file mode 100644 index 0000000000..ca0c56ec76 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTable.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTable: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTable.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTable.js new file mode 100644 index 0000000000..4953da0e51 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTable.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'table'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0ce'; +var svgPathData = 'M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64v-96h160v96zm0-160H64v-96h160v96zm224 160H288v-96h160v96zm0-160H288v-96h160v96z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTable = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTableTennis.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTableTennis.d.ts new file mode 100644 index 0000000000..8c7d28d330 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTableTennis.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTableTennis: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTableTennis.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTableTennis.js new file mode 100644 index 0000000000..f6849e874d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTableTennis.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'table-tennis'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f45d'; +var svgPathData = 'M496.2 296.5C527.7 218.7 512 126.2 449 63.1 365.1-21 229-21 145.1 63.1l-56 56.1 211.5 211.5c46.1-62.1 131.5-77.4 195.6-34.2zm-217.9 79.7L57.9 155.9c-27.3 45.3-21.7 105 17.3 144.1l34.5 34.6L6.7 424c-8.6 7.5-9.1 20.7-1 28.8l53.4 53.5c8 8.1 21.2 7.6 28.7-1L177.1 402l35.7 35.7c19.7 19.7 44.6 30.5 70.3 33.3-7.1-17-11-35.6-11-55.1-.1-13.8 2.5-27 6.2-39.7zM416 320c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTableTennis = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTablet.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTablet.d.ts new file mode 100644 index 0000000000..c5a57d5aa0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTablet.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTablet: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTablet.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTablet.js new file mode 100644 index 0000000000..6aa26092a0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTablet.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'tablet'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f10a'; +var svgPathData = 'M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTablet = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTabletAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTabletAlt.d.ts new file mode 100644 index 0000000000..ecbd1947b8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTabletAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTabletAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTabletAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTabletAlt.js new file mode 100644 index 0000000000..851a615f22 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTabletAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'tablet-alt'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f3fa'; +var svgPathData = 'M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm176-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h328c6.6 0 12 5.4 12 12v312z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTabletAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTablets.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTablets.d.ts new file mode 100644 index 0000000000..e6578926d9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTablets.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTablets: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTablets.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTablets.js new file mode 100644 index 0000000000..b683f8f537 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTablets.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'tablets'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f490'; +var svgPathData = 'M160 192C78.9 192 12.5 250.5.1 326.7c-.8 4.8 3.3 9.3 8.3 9.3h303.3c5 0 9.1-4.5 8.3-9.3C307.5 250.5 241.1 192 160 192zm151.6 176H8.4c-5 0-9.1 4.5-8.3 9.3C12.5 453.5 78.9 512 160 512s147.5-58.5 159.9-134.7c.8-4.8-3.3-9.3-8.3-9.3zM593.4 46.6c-56.5-56.5-144.2-61.4-206.9-16-4 2.9-4.3 8.9-.8 12.3L597 254.3c3.5 3.5 9.5 3.2 12.3-.8 45.5-62.7 40.6-150.4-15.9-206.9zM363 65.7c-3.5-3.5-9.5-3.2-12.3.8-45.4 62.7-40.5 150.4 15.9 206.9 56.5 56.5 144.2 61.4 206.9 15.9 4-2.9 4.3-8.9.8-12.3L363 65.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTablets = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTachometerAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTachometerAlt.d.ts new file mode 100644 index 0000000000..0341ae9807 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTachometerAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTachometerAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTachometerAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTachometerAlt.js new file mode 100644 index 0000000000..f7f8fa2833 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTachometerAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'tachometer-alt'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f3fd'; +var svgPathData = 'M75.694 480a48.02 48.02 0 0 1-42.448-25.571C12.023 414.3 0 368.556 0 320 0 160.942 128.942 32 288 32s288 128.942 288 288c0 48.556-12.023 94.3-33.246 134.429A48.018 48.018 0 0 1 500.306 480H75.694zM512 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zM288 128c17.673 0 32-14.327 32-32 0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32zM64 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm65.608-158.392c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm316.784 0c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm-87.078 31.534c-12.627-4.04-26.133 2.92-30.173 15.544l-45.923 143.511C250.108 322.645 224 350.264 224 384c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64 0-19.773-8.971-37.447-23.061-49.187l45.919-143.498c4.039-12.625-2.92-26.133-15.544-30.173z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTachometerAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTag.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTag.d.ts new file mode 100644 index 0000000000..7999f05f67 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTag.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTag: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTag.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTag.js new file mode 100644 index 0000000000..21fe147b43 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTag.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'tag'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f02b'; +var svgPathData = 'M0 252.118V48C0 21.49 21.49 0 48 0h204.118a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882L293.823 497.941c-18.745 18.745-49.137 18.745-67.882 0L14.059 286.059A48 48 0 0 1 0 252.118zM112 64c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTag = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTags.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTags.d.ts new file mode 100644 index 0000000000..5d8a334a03 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTags.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTags: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTags.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTags.js new file mode 100644 index 0000000000..76a9120bd7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTags.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'tags'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f02c'; +var svgPathData = 'M497.941 225.941L286.059 14.059A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v204.118a48 48 0 0 0 14.059 33.941l211.882 211.882c18.744 18.745 49.136 18.746 67.882 0l204.118-204.118c18.745-18.745 18.745-49.137 0-67.882zM112 160c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm513.941 133.823L421.823 497.941c-18.745 18.745-49.137 18.745-67.882 0l-.36-.36L527.64 323.522c16.999-16.999 26.36-39.6 26.36-63.64s-9.362-46.641-26.36-63.64L331.397 0h48.721a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTags = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTape.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTape.d.ts new file mode 100644 index 0000000000..4d81d7aab4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTape.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTape: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTape.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTape.js new file mode 100644 index 0000000000..7bb117d4a8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTape.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'tape'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f4db'; +var svgPathData = 'M224 192c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm400 224H380.6c41.5-40.7 67.4-97.3 67.4-160 0-123.7-100.3-224-224-224S0 132.3 0 256s100.3 224 224 224h400c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400-64c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTape = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTasks.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTasks.d.ts new file mode 100644 index 0000000000..771746fb01 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTasks.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTasks: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTasks.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTasks.js new file mode 100644 index 0000000000..25faaf3f42 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTasks.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'tasks'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0ae'; +var svgPathData = 'M208 132h288c8.8 0 16-7.2 16-16V76c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zM64 368c-26.5 0-48.6 21.5-48.6 48s22.1 48 48.6 48 48-21.5 48-48-21.5-48-48-48zm92.5-299l-72.2 72.2-15.6 15.6c-4.7 4.7-12.9 4.7-17.6 0L3.5 109.4c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.3c4.7-4.7 12.3-4.7 17 0l17 16.5c4.6 4.7 4.6 12.3-.1 17zm0 159.6l-72.2 72.2-15.7 15.7c-4.7 4.7-12.9 4.7-17.6 0L3.5 269c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.7c4.7-4.7 12.3-4.7 17 0l17 17c4.6 4.6 4.6 12.2-.1 16.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTasks = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTaxi.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTaxi.d.ts new file mode 100644 index 0000000000..47809ea9a7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTaxi.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTaxi: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTaxi.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTaxi.js new file mode 100644 index 0000000000..a252727d20 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTaxi.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'taxi'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1ba'; +var svgPathData = 'M462 241.64l-22-84.84c-9.6-35.2-41.6-60.8-76.8-60.8H352V64c0-17.67-14.33-32-32-32H192c-17.67 0-32 14.33-32 32v32h-11.2c-35.2 0-67.2 25.6-76.8 60.8l-22 84.84C21.41 248.04 0 273.47 0 304v48c0 23.63 12.95 44.04 32 55.12V448c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-40.88c19.05-11.09 32-31.5 32-55.12v-48c0-30.53-21.41-55.96-50-62.36zM96 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm20.55-112l17.2-66.36c2.23-8.16 9.59-13.64 15.06-13.64h214.4c5.47 0 12.83 5.48 14.85 12.86L395.45 240h-278.9zM416 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTaxi = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTerminal.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTerminal.d.ts new file mode 100644 index 0000000000..86b1ad3bf4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTerminal.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTerminal: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTerminal.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTerminal.js new file mode 100644 index 0000000000..cb4eb72609 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTerminal.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'terminal'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f120'; +var svgPathData = 'M257.981 272.971L63.638 467.314c-9.373 9.373-24.569 9.373-33.941 0L7.029 444.647c-9.357-9.357-9.375-24.522-.04-33.901L161.011 256 6.99 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L257.981 239.03c9.373 9.372 9.373 24.568 0 33.941zM640 456v-32c0-13.255-10.745-24-24-24H312c-13.255 0-24 10.745-24 24v32c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTerminal = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTextHeight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTextHeight.d.ts new file mode 100644 index 0000000000..8b420b36cc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTextHeight.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTextHeight: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTextHeight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTextHeight.js new file mode 100644 index 0000000000..f3f88d27a3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTextHeight.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'text-height'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f034'; +var svgPathData = 'M16 32h288c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96h-54.761v320H232c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H88c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm475.308 4.685l79.995 80.001C581.309 126.693 574.297 144 559.99 144H512v224h48c15.639 0 20.635 17.991 11.313 27.314l-79.995 80.001c-6.247 6.247-16.381 6.245-22.626 0l-79.995-80.001C378.691 385.307 385.703 368 400.01 368H448V144h-48c-15.639 0-20.635-17.991-11.313-27.314l79.995-80.001c6.247-6.248 16.381-6.245 22.626 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTextHeight = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTextWidth.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTextWidth.d.ts new file mode 100644 index 0000000000..95960d047f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTextWidth.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTextWidth: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTextWidth.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTextWidth.js new file mode 100644 index 0000000000..13d6b62f27 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTextWidth.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'text-width'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f035'; +var svgPathData = 'M16 32h416c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96H261.743v128H296c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H152c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm427.315 340.682l-80.001-79.995C353.991 283.365 336 288.362 336 304v48H112v-47.99c0-14.307-17.307-21.319-27.314-11.313L4.685 372.692c-6.245 6.245-6.247 16.379 0 22.626l80.001 79.995C94.009 484.635 112 479.638 112 464v-48h224v47.99c0 14.307 17.307 21.319 27.314 11.313l80.001-79.995c6.245-6.245 6.248-16.379 0-22.626z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTextWidth = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTh.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTh.d.ts new file mode 100644 index 0000000000..bc0a7a2cae --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTh.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTh: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTh.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTh.js new file mode 100644 index 0000000000..fc7c9f7e82 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTh.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'th'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f00a'; +var svgPathData = 'M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTh = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThLarge.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThLarge.d.ts new file mode 100644 index 0000000000..a1bfb6612d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThLarge.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faThLarge: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThLarge.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThLarge.js new file mode 100644 index 0000000000..c9119f0462 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThLarge.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'th-large'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f009'; +var svgPathData = 'M296 32h192c13.255 0 24 10.745 24 24v160c0 13.255-10.745 24-24 24H296c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24zm-80 0H24C10.745 32 0 42.745 0 56v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zM0 296v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm296 184h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H296c-13.255 0-24 10.745-24 24v160c0 13.255 10.745 24 24 24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faThLarge = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThList.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThList.d.ts new file mode 100644 index 0000000000..d188e48d92 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThList.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faThList: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThList.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThList.js new file mode 100644 index 0000000000..8b9e1801d4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThList.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'th-list'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f00b'; +var svgPathData = 'M149.333 216v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zM125.333 32H24C10.745 32 0 42.745 0 56v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zm80 448H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm-24-424v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24zm24 264H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faThList = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometer.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometer.d.ts new file mode 100644 index 0000000000..de0b72b5c1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometer.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faThermometer: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometer.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometer.js new file mode 100644 index 0000000000..f00245c93c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometer.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'thermometer'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f491'; +var svgPathData = 'M476.8 20.4c-37.5-30.7-95.5-26.3-131.9 10.2l-45.7 46 50.5 50.5c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.4-50.5-45.1 45.4 50.3 50.4c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L209 167.4l-45.1 45.4L214 263c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.1-50.2L96 281.1V382L7 471c-9.4 9.4-9.4 24.6 0 33.9 9.4 9.4 24.6 9.4 33.9 0l89-89h99.9L484 162.6c34.9-34.9 42.2-101.5-7.2-142.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faThermometer = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerEmpty.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerEmpty.d.ts new file mode 100644 index 0000000000..61ceda90a7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerEmpty.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faThermometerEmpty: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerEmpty.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerEmpty.js new file mode 100644 index 0000000000..4df266a828 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerEmpty.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'thermometer-empty'; +var width = 256; +var height = 512; +var ligatures = []; +var unicode = 'f2cb'; +var svgPathData = 'M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faThermometerEmpty = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerFull.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerFull.d.ts new file mode 100644 index 0000000000..f1d6e61611 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerFull.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faThermometerFull: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerFull.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerFull.js new file mode 100644 index 0000000000..93954f897d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerFull.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'thermometer-full'; +var width = 256; +var height = 512; +var ligatures = []; +var unicode = 'f2c7'; +var svgPathData = 'M224 96c0-53.019-42.981-96-96-96S32 42.981 32 96v203.347C12.225 321.756.166 351.136.002 383.333c-.359 70.303 56.787 128.176 127.089 128.664.299.002.61.003.909.003 70.698 0 128-57.304 128-128 0-32.459-12.088-62.09-32-84.653V96zm-96 368l-.576-.002c-43.86-.304-79.647-36.544-79.423-80.42.173-33.98 19.266-51.652 31.999-66.08V96c0-26.467 21.533-48 48-48s48 21.533 48 48v221.498c12.63 14.312 32 32.164 32 66.502 0 44.112-35.888 80-80 80zm64-80c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V96c0-17.673 14.327-32 32-32s32 14.327 32 32v232.583c19.124 11.068 32 31.732 32 55.417z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faThermometerFull = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerHalf.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerHalf.d.ts new file mode 100644 index 0000000000..30ee7a3c21 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerHalf.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faThermometerHalf: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerHalf.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerHalf.js new file mode 100644 index 0000000000..b9dac2d716 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerHalf.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'thermometer-half'; +var width = 256; +var height = 512; +var ligatures = []; +var unicode = 'f2c9'; +var svgPathData = 'M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V224c0-17.673 14.327-32 32-32s32 14.327 32 32v104.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faThermometerHalf = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerQuarter.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerQuarter.d.ts new file mode 100644 index 0000000000..21b607f2fd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerQuarter.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faThermometerQuarter: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerQuarter.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerQuarter.js new file mode 100644 index 0000000000..74c4882371 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerQuarter.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'thermometer-quarter'; +var width = 256; +var height = 512; +var ligatures = []; +var unicode = 'f2ca'; +var svgPathData = 'M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V288c0-17.673 14.327-32 32-32s32 14.327 32 32v40.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faThermometerQuarter = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerThreeQuarters.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerThreeQuarters.d.ts new file mode 100644 index 0000000000..aa8a52549a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerThreeQuarters.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faThermometerThreeQuarters: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerThreeQuarters.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerThreeQuarters.js new file mode 100644 index 0000000000..68e75de3cf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThermometerThreeQuarters.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'thermometer-three-quarters'; +var width = 256; +var height = 512; +var ligatures = []; +var unicode = 'f2c8'; +var svgPathData = 'M192 384c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-23.685 12.876-44.349 32-55.417V160c0-17.673 14.327-32 32-32s32 14.327 32 32v168.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faThermometerThreeQuarters = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThumbsDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThumbsDown.d.ts new file mode 100644 index 0000000000..c285ede2cb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThumbsDown.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faThumbsDown: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThumbsDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThumbsDown.js new file mode 100644 index 0000000000..af8b8369ac --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThumbsDown.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'thumbs-down'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f165'; +var svgPathData = 'M0 56v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56zm40 200c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24zm272 256c-20.183 0-29.485-39.293-33.931-57.795-5.206-21.666-10.589-44.07-25.393-58.902-32.469-32.524-49.503-73.967-89.117-113.111a11.98 11.98 0 0 1-3.558-8.521V59.901c0-6.541 5.243-11.878 11.783-11.998 15.831-.29 36.694-9.079 52.651-16.178C256.189 17.598 295.709.017 343.995 0h2.844c42.777 0 93.363.413 113.774 29.737 8.392 12.057 10.446 27.034 6.148 44.632 16.312 17.053 25.063 48.863 16.382 74.757 17.544 23.432 19.143 56.132 9.308 79.469l.11.11c11.893 11.949 19.523 31.259 19.439 49.197-.156 30.352-26.157 58.098-59.553 58.098H350.723C358.03 364.34 384 388.132 384 430.548 384 504 336 512 312 512z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faThumbsDown = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThumbsUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThumbsUp.d.ts new file mode 100644 index 0000000000..4d77850fb1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThumbsUp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faThumbsUp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThumbsUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThumbsUp.js new file mode 100644 index 0000000000..9036da11a4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThumbsUp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'thumbs-up'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f164'; +var svgPathData = 'M104 224H24c-13.255 0-24 10.745-24 24v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V248c0-13.255-10.745-24-24-24zM64 472c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zM384 81.452c0 42.416-25.97 66.208-33.277 94.548h101.723c33.397 0 59.397 27.746 59.553 58.098.084 17.938-7.546 37.249-19.439 49.197l-.11.11c9.836 23.337 8.237 56.037-9.308 79.469 8.681 25.895-.069 57.704-16.382 74.757 4.298 17.598 2.244 32.575-6.148 44.632C440.202 511.587 389.616 512 346.839 512l-2.845-.001c-48.287-.017-87.806-17.598-119.56-31.725-15.957-7.099-36.821-15.887-52.651-16.178-6.54-.12-11.783-5.457-11.783-11.998v-213.77c0-3.2 1.282-6.271 3.558-8.521 39.614-39.144 56.648-80.587 89.117-113.111 14.804-14.832 20.188-37.236 25.393-58.902C282.515 39.293 291.817 0 312 0c24 0 72 8 72 81.452z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faThumbsUp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThumbtack.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThumbtack.d.ts new file mode 100644 index 0000000000..ec57e98cc3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThumbtack.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faThumbtack: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThumbtack.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThumbtack.js new file mode 100644 index 0000000000..98b9afc7d7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faThumbtack.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'thumbtack'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f08d'; +var svgPathData = 'M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faThumbtack = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTicketAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTicketAlt.d.ts new file mode 100644 index 0000000000..9aa7e3a8e5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTicketAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTicketAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTicketAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTicketAlt.js new file mode 100644 index 0000000000..b3c5cbf38f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTicketAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'ticket-alt'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f3ff'; +var svgPathData = 'M128 160h320v192H128V160zm400 96c0 26.51 21.49 48 48 48v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c26.51 0 48-21.49 48-48s-21.49-48-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v96c-26.51 0-48 21.49-48 48zm-48-104c0-13.255-10.745-24-24-24H120c-13.255 0-24 10.745-24 24v208c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V152z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTicketAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTimes.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTimes.d.ts new file mode 100644 index 0000000000..2f0c5c4239 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTimes.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTimes: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTimes.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTimes.js new file mode 100644 index 0000000000..05cada5577 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTimes.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'times'; +var width = 352; +var height = 512; +var ligatures = []; +var unicode = 'f00d'; +var svgPathData = 'M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTimes = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTimesCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTimesCircle.d.ts new file mode 100644 index 0000000000..9f12a6eb6a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTimesCircle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTimesCircle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTimesCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTimesCircle.js new file mode 100644 index 0000000000..bb8dea1800 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTimesCircle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'times-circle'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f057'; +var svgPathData = 'M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTimesCircle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTint.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTint.d.ts new file mode 100644 index 0000000000..9491cef532 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTint.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTint: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTint.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTint.js new file mode 100644 index 0000000000..c549e6c41c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTint.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'tint'; +var width = 352; +var height = 512; +var ligatures = []; +var unicode = 'f043'; +var svgPathData = 'M205.22 22.09c-7.94-28.78-49.44-30.12-58.44 0C100.01 179.85 0 222.72 0 333.91 0 432.35 78.72 512 176 512s176-79.65 176-178.09c0-111.75-99.79-153.34-146.78-311.82zM176 448c-61.75 0-112-50.25-112-112 0-8.84 7.16-16 16-16s16 7.16 16 16c0 44.11 35.89 80 80 80 8.84 0 16 7.16 16 16s-7.16 16-16 16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTint = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTintSlash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTintSlash.d.ts new file mode 100644 index 0000000000..380a76bc00 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTintSlash.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTintSlash: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTintSlash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTintSlash.js new file mode 100644 index 0000000000..9b93f00bad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTintSlash.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'tint-slash'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f5c7'; +var svgPathData = 'M633.82 458.1L494.97 350.78c.52-5.57 1.03-11.16 1.03-16.87 0-111.76-99.79-153.34-146.78-311.82-7.94-28.78-49.44-30.12-58.44 0-15.52 52.34-36.87 91.96-58.49 125.68L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM144 333.91C144 432.35 222.72 512 320 512c44.71 0 85.37-16.96 116.4-44.7L162.72 255.78c-11.41 23.5-18.72 48.35-18.72 78.13z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTintSlash = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTired.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTired.d.ts new file mode 100644 index 0000000000..020f6bf859 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTired.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTired: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTired.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTired.js new file mode 100644 index 0000000000..6580b4f5f1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTired.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'tired'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f5c8'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 288c51.9 0 115.3 43.8 123.2 106.7 1.7 13.6-8 24.6-17.7 20.4-25.9-11.1-64.4-17.4-105.5-17.4s-79.6 6.3-105.5 17.4c-9.8 4.2-19.4-7-17.7-20.4C132.7 331.8 196.1 288 248 288z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTired = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faToggleOff.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faToggleOff.d.ts new file mode 100644 index 0000000000..031a85c9c7 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faToggleOff.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faToggleOff: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faToggleOff.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faToggleOff.js new file mode 100644 index 0000000000..307e0c9972 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faToggleOff.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'toggle-off'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f204'; +var svgPathData = 'M384 64H192C85.961 64 0 149.961 0 256s85.961 192 192 192h192c106.039 0 192-85.961 192-192S490.039 64 384 64zM64 256c0-70.741 57.249-128 128-128 70.741 0 128 57.249 128 128 0 70.741-57.249 128-128 128-70.741 0-128-57.249-128-128zm320 128h-48.905c65.217-72.858 65.236-183.12 0-256H384c70.741 0 128 57.249 128 128 0 70.74-57.249 128-128 128z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faToggleOff = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faToggleOn.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faToggleOn.d.ts new file mode 100644 index 0000000000..3bd3045724 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faToggleOn.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faToggleOn: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faToggleOn.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faToggleOn.js new file mode 100644 index 0000000000..757c9264be --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faToggleOn.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'toggle-on'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f205'; +var svgPathData = 'M576 256c0 106.039-85.961 192-192 192H192C85.961 448 0 362.039 0 256S85.961 64 192 64h192c106.039 0 192 85.961 192 192zM384 128c-70.741 0-128 57.249-128 128 0 70.741 57.249 128 128 128 70.741 0 128-57.249 128-128 0-70.741-57.249-128-128-128'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faToggleOn = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faToolbox.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faToolbox.d.ts new file mode 100644 index 0000000000..e834b99dfb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faToolbox.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faToolbox: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faToolbox.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faToolbox.js new file mode 100644 index 0000000000..3e79300c53 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faToolbox.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'toolbox'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f552'; +var svgPathData = 'M502.63 214.63l-45.25-45.25c-6-6-14.14-9.37-22.63-9.37H384V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v80H77.25c-8.49 0-16.62 3.37-22.63 9.37L9.37 214.63c-6 6-9.37 14.14-9.37 22.63V320h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-82.75c0-8.48-3.37-16.62-9.37-22.62zM320 160H192V96h128v64zm64 208c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H192v16c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H0v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96H384v16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faToolbox = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTooth.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTooth.d.ts new file mode 100644 index 0000000000..0c6b83fd85 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTooth.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTooth: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTooth.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTooth.js new file mode 100644 index 0000000000..ca700e5751 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTooth.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'tooth'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f5c9'; +var svgPathData = 'M443.98 96.25c-11.01-45.22-47.11-82.06-92.01-93.72-32.19-8.36-63 5.1-89.14 24.33-3.25 2.39-6.96 3.73-10.5 5.48l28.32 18.21c7.42 4.77 9.58 14.67 4.8 22.11-4.46 6.95-14.27 9.86-22.11 4.8L162.83 12.84c-20.7-10.85-43.38-16.4-66.81-10.31-44.9 11.67-81 48.5-92.01 93.72-10.13 41.62-.42 80.81 21.5 110.43 23.36 31.57 32.68 68.66 36.29 107.35 4.4 47.16 10.33 94.16 20.94 140.32l7.8 33.95c3.19 13.87 15.49 23.7 29.67 23.7 13.97 0 26.15-9.55 29.54-23.16l34.47-138.42c4.56-18.32 20.96-31.16 39.76-31.16s35.2 12.85 39.76 31.16l34.47 138.42c3.39 13.61 15.57 23.16 29.54 23.16 14.18 0 26.48-9.83 29.67-23.7l7.8-33.95c10.61-46.15 16.53-93.16 20.94-140.32 3.61-38.7 12.93-75.78 36.29-107.35 21.95-29.61 31.66-68.8 21.53-110.43z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTooth = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrademark.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrademark.d.ts new file mode 100644 index 0000000000..3827cf6b1b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrademark.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTrademark: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrademark.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrademark.js new file mode 100644 index 0000000000..4777d0d88d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrademark.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'trademark'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f25c'; +var svgPathData = 'M97.119 163.133H12c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h248.559c6.627 0 12 5.373 12 12v43.133c0 6.627-5.373 12-12 12H175.44V404c0 6.627-5.373 12-12 12h-54.322c-6.627 0-12-5.373-12-12V163.133zM329.825 96h65.425a12 12 0 0 1 11.346 8.093l43.759 127.068c7.161 20.588 16.111 52.812 16.111 52.812h.896s8.95-32.224 16.111-52.812l43.758-127.068A12 12 0 0 1 538.577 96h65.41a12 12 0 0 1 11.961 11.03l24.012 296c.567 6.987-4.951 12.97-11.961 12.97h-54.101a12 12 0 0 1-11.972-11.182l-9.082-132.93c-1.79-24.168 0-53.706 0-53.706h-.896s-10.741 33.566-17.902 53.706l-30.7 84.731a12 12 0 0 1-11.282 7.912h-50.302a12 12 0 0 1-11.282-7.912l-30.7-84.731c-7.161-20.14-17.903-53.706-17.903-53.706h-.895s1.79 29.538 0 53.706l-9.082 132.93c-.428 6.295-5.66 11.182-11.97 11.182H305.4c-7.017 0-12.536-5.994-11.959-12.987l24.425-296A11.999 11.999 0 0 1 329.825 96z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTrademark = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrain.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrain.d.ts new file mode 100644 index 0000000000..fbc49cb49c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrain.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTrain: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrain.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrain.js new file mode 100644 index 0000000000..dc192edf8a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrain.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'train'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f238'; +var svgPathData = 'M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zm-48 136V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24zm-176 64c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTrain = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTransgender.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTransgender.d.ts new file mode 100644 index 0000000000..01d711e738 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTransgender.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTransgender: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTransgender.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTransgender.js new file mode 100644 index 0000000000..2678541e09 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTransgender.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'transgender'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f224'; +var svgPathData = 'M372 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C198.5 104.1 172.2 96 144 96 64.5 96 0 160.5 0 240c0 68.5 47.9 125.9 112 140.4V408H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM144 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTransgender = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTransgenderAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTransgenderAlt.d.ts new file mode 100644 index 0000000000..3abc9c5535 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTransgenderAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTransgenderAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTransgenderAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTransgenderAlt.js new file mode 100644 index 0000000000..a9df965466 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTransgenderAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'transgender-alt'; +var width = 480; +var height = 512; +var ligatures = []; +var unicode = 'f225'; +var svgPathData = 'M468 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C294.5 104.1 268.2 96 240 96c-28.2 0-54.5 8.1-76.7 22.1l-16.5-16.5 19.8-19.8c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0l-19.8 19.8-19-19 16.9-16.9C107.1 12.9 101.7 0 91 0H12C5.4 0 0 5.4 0 12v79c0 10.7 12.9 16 20.5 8.5l16.9-16.9 19 19-19.8 19.8c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l19.8-19.8 16.5 16.5C104.1 185.5 96 211.8 96 240c0 68.5 47.9 125.9 112 140.4V408h-36c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM240 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTransgenderAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrash.d.ts new file mode 100644 index 0000000000..a1279572eb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrash.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTrash: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrash.js new file mode 100644 index 0000000000..08d13a791a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrash.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'trash'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f1f8'; +var svgPathData = 'M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm415.2 56.7L394.8 467c-1.6 25.3-22.6 45-47.9 45H101.1c-25.3 0-46.3-19.7-47.9-45L32.8 140.7c-.4-6.9 5.1-12.7 12-12.7h358.5c6.8 0 12.3 5.8 11.9 12.7z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTrash = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrashAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrashAlt.d.ts new file mode 100644 index 0000000000..8fbdcb26ba --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrashAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTrashAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrashAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrashAlt.js new file mode 100644 index 0000000000..bf97d3af39 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrashAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'trash-alt'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f2ed'; +var svgPathData = 'M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm416 56v324c0 26.5-21.5 48-48 48H80c-26.5 0-48-21.5-48-48V140c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12zm-272 68c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTrashAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTree.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTree.d.ts new file mode 100644 index 0000000000..76936204dc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTree.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTree: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTree.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTree.js new file mode 100644 index 0000000000..8ef75b59e9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTree.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'tree'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f1bb'; +var svgPathData = 'M377.33 375.429L293.906 288H328c21.017 0 31.872-25.207 17.448-40.479L262.79 160H296c20.878 0 31.851-24.969 17.587-40.331l-104-112.003c-9.485-10.214-25.676-10.229-35.174 0l-104 112.003C56.206 134.969 67.037 160 88 160h33.21l-82.659 87.521C24.121 262.801 34.993 288 56 288h34.094L6.665 375.429C-7.869 390.655 2.925 416 24.025 416H144c0 32.781-11.188 49.26-33.995 67.506C98.225 492.93 104.914 512 120 512h144c15.086 0 21.776-19.069 9.995-28.494-19.768-15.814-33.992-31.665-33.995-67.496V416h119.97c21.05 0 31.929-25.309 17.36-40.571z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTree = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrophy.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrophy.d.ts new file mode 100644 index 0000000000..c3f7abdd97 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrophy.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTrophy: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrophy.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrophy.js new file mode 100644 index 0000000000..64ccb18184 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTrophy.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'trophy'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f091'; +var svgPathData = 'M552 64H448V24c0-13.3-10.7-24-24-24H152c-13.3 0-24 10.7-24 24v40H24C10.7 64 0 74.7 0 88v56c0 35.7 22.5 72.4 61.9 100.7 31.5 22.7 69.8 37.1 110 41.7C203.3 338.5 240 360 240 360v72h-48c-35.3 0-64 20.7-64 56v12c0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12v-12c0-35.3-28.7-56-64-56h-48v-72s36.7-21.5 68.1-73.6c40.3-4.6 78.6-19 110-41.7 39.3-28.3 61.9-65 61.9-100.7V88c0-13.3-10.7-24-24-24zM99.3 192.8C74.9 175.2 64 155.6 64 144v-16h64.2c1 32.6 5.8 61.2 12.8 86.2-15.1-5.2-29.2-12.4-41.7-21.4zM512 144c0 16.1-17.7 36.1-35.3 48.8-12.5 9-26.7 16.2-41.8 21.4 7-25 11.8-53.6 12.8-86.2H512v16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTrophy = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTruck.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTruck.d.ts new file mode 100644 index 0000000000..08c31bc652 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTruck.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTruck: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTruck.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTruck.js new file mode 100644 index 0000000000..5c2a326f3f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTruck.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'truck'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f0d1'; +var svgPathData = 'M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTruck = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTruckLoading.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTruckLoading.d.ts new file mode 100644 index 0000000000..c07de8e99f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTruckLoading.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTruckLoading: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTruckLoading.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTruckLoading.js new file mode 100644 index 0000000000..8a3faf8976 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTruckLoading.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'truck-loading'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f4de'; +var svgPathData = 'M50.2 375.6c2.3 8.5 11.1 13.6 19.6 11.3l216.4-58c8.5-2.3 13.6-11.1 11.3-19.6l-49.7-185.5c-2.3-8.5-11.1-13.6-19.6-11.3L151 133.3l24.8 92.7-61.8 16.5-24.8-92.7-77.3 20.7C3.4 172.8-1.7 181.6.6 190.1l49.6 185.5zM384 0c-17.7 0-32 14.3-32 32v323.6L5.9 450c-4.3 1.2-6.8 5.6-5.6 9.8l12.6 46.3c1.2 4.3 5.6 6.8 9.8 5.6l393.7-107.4C418.8 464.1 467.6 512 528 512c61.9 0 112-50.1 112-112V0H384zm144 448c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTruckLoading = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTruckMoving.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTruckMoving.d.ts new file mode 100644 index 0000000000..3b70ab4921 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTruckMoving.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTruckMoving: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTruckMoving.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTruckMoving.js new file mode 100644 index 0000000000..3aeab5f179 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTruckMoving.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'truck-moving'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f4df'; +var svgPathData = 'M621.3 237.3l-58.5-58.5c-12-12-28.3-18.7-45.3-18.7H480V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v336c0 44.2 35.8 80 80 80 26.3 0 49.4-12.9 64-32.4 14.6 19.6 37.7 32.4 64 32.4 44.2 0 80-35.8 80-80 0-5.5-.6-10.8-1.6-16h163.2c-1.1 5.2-1.6 10.5-1.6 16 0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H624c8.8 0 16-7.2 16-16v-85.5c0-17-6.7-33.2-18.7-45.2zM80 432c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm128 0c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm272-224h37.5c4.3 0 8.3 1.7 11.3 4.7l43.3 43.3H480v-48zm48 224c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTruckMoving = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTshirt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTshirt.d.ts new file mode 100644 index 0000000000..156ae8da4a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTshirt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTshirt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTshirt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTshirt.js new file mode 100644 index 0000000000..5e861b6a1b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTshirt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'tshirt'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f553'; +var svgPathData = 'M631.2 96.5L436.5 0C416.4 27.8 371.9 47.2 320 47.2S223.6 27.8 203.5 0L8.8 96.5c-7.9 4-11.1 13.6-7.2 21.5l57.2 114.5c4 7.9 13.6 11.1 21.5 7.2l56.6-27.7c10.6-5.2 23 2.5 23 14.4V480c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V226.3c0-11.8 12.4-19.6 23-14.4l56.6 27.7c7.9 4 17.5.8 21.5-7.2L638.3 118c4-7.9.8-17.6-7.1-21.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTshirt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTty.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTty.d.ts new file mode 100644 index 0000000000..be741aab04 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTty.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTty: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTty.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTty.js new file mode 100644 index 0000000000..ef72299aeb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTty.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'tty'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f1e4'; +var svgPathData = 'M5.37 103.822c138.532-138.532 362.936-138.326 501.262 0 6.078 6.078 7.074 15.496 2.583 22.681l-43.214 69.138a18.332 18.332 0 0 1-22.356 7.305l-86.422-34.569a18.335 18.335 0 0 1-11.434-18.846L351.741 90c-62.145-22.454-130.636-21.986-191.483 0l5.953 59.532a18.331 18.331 0 0 1-11.434 18.846l-86.423 34.568a18.334 18.334 0 0 1-22.356-7.305L2.787 126.502a18.333 18.333 0 0 1 2.583-22.68zM96 308v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H92c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zM96 500v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H140c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTty = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTv.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTv.d.ts new file mode 100644 index 0000000000..e17850434c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTv.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faTv: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTv.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTv.js new file mode 100644 index 0000000000..534ef7c8a5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faTv.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'tv'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f26c'; +var svgPathData = 'M592 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h245.1v32h-160c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32-14.3 32-32s-14.3-32-32-32h-160v-32H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h512v288z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faTv = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUmbrella.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUmbrella.d.ts new file mode 100644 index 0000000000..8a8cb9d3ca --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUmbrella.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUmbrella: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUmbrella.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUmbrella.js new file mode 100644 index 0000000000..4c29557599 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUmbrella.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'umbrella'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f0e9'; +var svgPathData = 'M557.011 267.631c-51.432-45.217-107.572-43.698-158.567 30.731-5.298 7.861-14.906 7.165-19.736 0-2.483-3.624-32.218-60.808-90.708-60.808-45.766 0-70.542 31.378-90.709 60.808-4.829 7.165-14.436 7.861-19.734 0-50.904-74.285-106.613-76.406-158.567-30.731-10.21 8.264-20.912-1.109-18.696-9.481C32.146 134.573 158.516 64.612 288.001 64.612c128.793 0 256.546 69.961 287.706 193.538 2.206 8.322-8.426 17.793-18.696 9.481zM256 261.001V416c0 17.645-14.355 32-32 32s-32-14.355-32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 52.935 43.065 96 96 96s96-43.065 96-96V261.288c-21.836-10.806-45.425-9.737-64-.287zm64-211.007V32c0-17.673-14.327-32-32-32s-32 14.327-32 32v17.987a372.105 372.105 0 0 1 64 .007z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUmbrella = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUmbrellaBeach.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUmbrellaBeach.d.ts new file mode 100644 index 0000000000..d07138a169 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUmbrellaBeach.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUmbrellaBeach: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUmbrellaBeach.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUmbrellaBeach.js new file mode 100644 index 0000000000..93d584c987 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUmbrellaBeach.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'umbrella-beach'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f5ca'; +var svgPathData = 'M115.38 136.9l102.11 37.18c35.19-81.54 86.21-144.29 139-173.7-95.88-4.89-188.78 36.96-248.53 111.8-6.69 8.4-2.66 21.05 7.42 24.72zm132.25 48.16l238.48 86.83c35.76-121.38 18.7-231.66-42.63-253.98-7.4-2.7-15.13-4-23.09-4-58.02.01-128.27 69.17-172.76 171.15zM521.48 60.5c6.22 16.3 10.83 34.6 13.2 55.19 5.74 49.89-1.42 108.23-18.95 166.98l102.62 37.36c10.09 3.67 21.31-3.43 21.57-14.17 2.32-95.69-41.91-187.44-118.44-245.36zM560 447.98H321.06L386 269.5l-60.14-21.9-72.9 200.37H16c-8.84 0-16 7.16-16 16.01v32.01C0 504.83 7.16 512 16 512h544c8.84 0 16-7.17 16-16.01v-32.01c0-8.84-7.16-16-16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUmbrellaBeach = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnderline.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnderline.d.ts new file mode 100644 index 0000000000..6749e90187 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnderline.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUnderline: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnderline.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnderline.js new file mode 100644 index 0000000000..d9310af5fb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnderline.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'underline'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0cd'; +var svgPathData = 'M224.264 388.24c-91.669 0-156.603-51.165-156.603-151.392V64H39.37c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h137.39c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.813v172.848c0 53.699 28.314 79.444 76.317 79.444 46.966 0 75.796-25.434 75.796-79.965V64h-28.291c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h136.868c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.291v172.848c0 99.405-64.881 151.392-156.082 151.392zM16 448h416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUnderline = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUndo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUndo.d.ts new file mode 100644 index 0000000000..395cde931e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUndo.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUndo: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUndo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUndo.js new file mode 100644 index 0000000000..f0f90e5310 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUndo.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'undo'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0e2'; +var svgPathData = 'M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUndo = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUndoAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUndoAlt.d.ts new file mode 100644 index 0000000000..3a786fb63d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUndoAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUndoAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUndoAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUndoAlt.js new file mode 100644 index 0000000000..80ae6da448 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUndoAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'undo-alt'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2ea'; +var svgPathData = 'M255.545 8c-66.269.119-126.438 26.233-170.86 68.685L48.971 40.971C33.851 25.851 8 36.559 8 57.941V192c0 13.255 10.745 24 24 24h134.059c21.382 0 32.09-25.851 16.971-40.971l-41.75-41.75c30.864-28.899 70.801-44.907 113.23-45.273 92.398-.798 170.283 73.977 169.484 169.442C423.236 348.009 349.816 424 256 424c-41.127 0-79.997-14.678-110.63-41.556-4.743-4.161-11.906-3.908-16.368.553L89.34 422.659c-4.872 4.872-4.631 12.815.482 17.433C133.798 479.813 192.074 504 256 504c136.966 0 247.999-111.033 248-247.998C504.001 119.193 392.354 7.755 255.545 8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUndoAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUniversalAccess.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUniversalAccess.d.ts new file mode 100644 index 0000000000..9112670450 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUniversalAccess.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUniversalAccess: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUniversalAccess.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUniversalAccess.js new file mode 100644 index 0000000000..ed9cc34f2a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUniversalAccess.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'universal-access'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f29a'; +var svgPathData = 'M256 48c114.953 0 208 93.029 208 208 0 114.953-93.029 208-208 208-114.953 0-208-93.029-208-208 0-114.953 93.029-208 208-208m0-40C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 56C149.961 64 64 149.961 64 256s85.961 192 192 192 192-85.961 192-192S362.039 64 256 64zm0 44c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36zm117.741 98.023c-28.712 6.779-55.511 12.748-82.14 15.807.851 101.023 12.306 123.052 25.037 155.621 3.617 9.26-.957 19.698-10.217 23.315-9.261 3.617-19.699-.957-23.316-10.217-8.705-22.308-17.086-40.636-22.261-78.549h-9.686c-5.167 37.851-13.534 56.208-22.262 78.549-3.615 9.255-14.05 13.836-23.315 10.217-9.26-3.617-13.834-14.056-10.217-23.315 12.713-32.541 24.185-54.541 25.037-155.621-26.629-3.058-53.428-9.027-82.141-15.807-8.6-2.031-13.926-10.648-11.895-19.249s10.647-13.926 19.249-11.895c96.686 22.829 124.283 22.783 220.775 0 8.599-2.03 17.218 3.294 19.249 11.895 2.029 8.601-3.297 17.219-11.897 19.249z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUniversalAccess = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUniversity.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUniversity.d.ts new file mode 100644 index 0000000000..a725c58bc3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUniversity.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUniversity: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUniversity.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUniversity.js new file mode 100644 index 0000000000..acfc297319 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUniversity.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'university'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f19c'; +var svgPathData = 'M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUniversity = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnlink.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnlink.d.ts new file mode 100644 index 0000000000..c3717f5501 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnlink.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUnlink: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnlink.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnlink.js new file mode 100644 index 0000000000..52a80590db --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnlink.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'unlink'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f127'; +var svgPathData = 'M304.083 405.907c4.686 4.686 4.686 12.284 0 16.971l-44.674 44.674c-59.263 59.262-155.693 59.266-214.961 0-59.264-59.265-59.264-155.696 0-214.96l44.675-44.675c4.686-4.686 12.284-4.686 16.971 0l39.598 39.598c4.686 4.686 4.686 12.284 0 16.971l-44.675 44.674c-28.072 28.073-28.072 73.75 0 101.823 28.072 28.072 73.75 28.073 101.824 0l44.674-44.674c4.686-4.686 12.284-4.686 16.971 0l39.597 39.598zm-56.568-260.216c4.686 4.686 12.284 4.686 16.971 0l44.674-44.674c28.072-28.075 73.75-28.073 101.824 0 28.072 28.073 28.072 73.75 0 101.823l-44.675 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.598 39.598c4.686 4.686 12.284 4.686 16.971 0l44.675-44.675c59.265-59.265 59.265-155.695 0-214.96-59.266-59.264-155.695-59.264-214.961 0l-44.674 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.597 39.598zm234.828 359.28l22.627-22.627c9.373-9.373 9.373-24.569 0-33.941L63.598 7.029c-9.373-9.373-24.569-9.373-33.941 0L7.029 29.657c-9.373 9.373-9.373 24.569 0 33.941l441.373 441.373c9.373 9.372 24.569 9.372 33.941 0z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUnlink = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnlock.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnlock.d.ts new file mode 100644 index 0000000000..ebda131efa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnlock.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUnlock: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnlock.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnlock.js new file mode 100644 index 0000000000..e2deba71dc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnlock.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'unlock'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f09c'; +var svgPathData = 'M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUnlock = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnlockAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnlockAlt.d.ts new file mode 100644 index 0000000000..a4d040e93c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnlockAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUnlockAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnlockAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnlockAlt.js new file mode 100644 index 0000000000..6b3d41f5e2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUnlockAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'unlock-alt'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f13e'; +var svgPathData = 'M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zM264 408c0 22.1-17.9 40-40 40s-40-17.9-40-40v-48c0-22.1 17.9-40 40-40s40 17.9 40 40v48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUnlockAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUpload.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUpload.d.ts new file mode 100644 index 0000000000..fd2821d0fc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUpload.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUpload: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUpload.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUpload.js new file mode 100644 index 0000000000..7ab2643171 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUpload.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'upload'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f093'; +var svgPathData = 'M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUpload = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUser.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUser.d.ts new file mode 100644 index 0000000000..7d5312b1b6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUser.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUser: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUser.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUser.js new file mode 100644 index 0000000000..fb473afde1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUser.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'user'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f007'; +var svgPathData = 'M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUser = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserAlt.d.ts new file mode 100644 index 0000000000..d6c5180fe8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUserAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserAlt.js new file mode 100644 index 0000000000..6a03dc85e5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'user-alt'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f406'; +var svgPathData = 'M256 288c79.5 0 144-64.5 144-144S335.5 0 256 0 112 64.5 112 144s64.5 144 144 144zm128 32h-55.1c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16H128C57.3 320 0 377.3 0 448v16c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-16c0-70.7-57.3-128-128-128z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUserAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserAltSlash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserAltSlash.d.ts new file mode 100644 index 0000000000..297c89f666 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserAltSlash.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUserAltSlash: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserAltSlash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserAltSlash.js new file mode 100644 index 0000000000..8cbbe4fc97 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserAltSlash.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'user-alt-slash'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f4fa'; +var svgPathData = 'M633.8 458.1L389.6 269.3C433.8 244.7 464 198.1 464 144 464 64.5 399.5 0 320 0c-67.1 0-123 46.1-139 108.2L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM198.4 320C124.2 320 64 380.2 64 454.4v9.6c0 26.5 21.5 48 48 48h382.2L245.8 320h-47.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUserAltSlash = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserAstronaut.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserAstronaut.d.ts new file mode 100644 index 0000000000..42ac56a090 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserAstronaut.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUserAstronaut: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserAstronaut.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserAstronaut.js new file mode 100644 index 0000000000..d2c28fdc05 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserAstronaut.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'user-astronaut'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f4fb'; +var svgPathData = 'M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUserAstronaut = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserCheck.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserCheck.d.ts new file mode 100644 index 0000000000..1ae17dbc10 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserCheck.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUserCheck: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserCheck.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserCheck.js new file mode 100644 index 0000000000..16a48a48fe --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserCheck.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'user-check'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f4fc'; +var svgPathData = 'M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4zm323-128.4l-27.8-28.1c-4.6-4.7-12.1-4.7-16.8-.1l-104.8 104-45.5-45.8c-4.6-4.7-12.1-4.7-16.8-.1l-28.1 27.9c-4.7 4.6-4.7 12.1-.1 16.8l81.7 82.3c4.6 4.7 12.1 4.7 16.8.1l141.3-140.2c4.6-4.7 4.7-12.2.1-16.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUserCheck = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserCircle.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserCircle.d.ts new file mode 100644 index 0000000000..4079ffc406 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserCircle.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUserCircle: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserCircle.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserCircle.js new file mode 100644 index 0000000000..fa5cdb3587 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserCircle.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'user-circle'; +var width = 496; +var height = 512; +var ligatures = []; +var unicode = 'f2bd'; +var svgPathData = 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 96c48.6 0 88 39.4 88 88s-39.4 88-88 88-88-39.4-88-88 39.4-88 88-88zm0 344c-58.7 0-111.3-26.6-146.5-68.2 18.8-35.4 55.6-59.8 98.5-59.8 2.4 0 4.8.4 7.1 1.1 13 4.2 26.6 6.9 40.9 6.9 14.3 0 28-2.7 40.9-6.9 2.3-.7 4.7-1.1 7.1-1.1 42.9 0 79.7 24.4 98.5 59.8C359.3 421.4 306.7 448 248 448z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUserCircle = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserClock.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserClock.d.ts new file mode 100644 index 0000000000..7b9ae3a4ce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserClock.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUserClock: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserClock.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserClock.js new file mode 100644 index 0000000000..3b15b441d2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserClock.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'user-clock'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f4fd'; +var svgPathData = 'M496 224c-79.6 0-144 64.4-144 144s64.4 144 144 144 144-64.4 144-144-64.4-144-144-144zm64 150.3c0 5.3-4.4 9.7-9.7 9.7h-60.6c-5.3 0-9.7-4.4-9.7-9.7v-76.6c0-5.3 4.4-9.7 9.7-9.7h12.6c5.3 0 9.7 4.4 9.7 9.7V352h38.3c5.3 0 9.7 4.4 9.7 9.7v12.6zM320 368c0-27.8 6.7-54.1 18.2-77.5-8-1.5-16.2-2.5-24.6-2.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h347.1c-45.3-31.9-75.1-84.5-75.1-144zm-96-112c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUserClock = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserCog.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserCog.d.ts new file mode 100644 index 0000000000..7ceb8fafce --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserCog.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUserCog: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserCog.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserCog.js new file mode 100644 index 0000000000..6161c4b179 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserCog.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'user-cog'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f4fe'; +var svgPathData = 'M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUserCog = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserEdit.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserEdit.d.ts new file mode 100644 index 0000000000..f90218798a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserEdit.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUserEdit: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserEdit.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserEdit.js new file mode 100644 index 0000000000..10e622744a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserEdit.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'user-edit'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f4ff'; +var svgPathData = 'M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h274.9c-2.4-6.8-3.4-14-2.6-21.3l6.8-60.9 1.2-11.1 7.9-7.9 77.3-77.3c-24.5-27.7-60-45.5-99.9-45.5zm45.3 145.3l-6.8 61c-1.1 10.2 7.5 18.8 17.6 17.6l60.9-6.8 137.9-137.9-71.7-71.7-137.9 137.8zM633 268.9L595.1 231c-9.3-9.3-24.5-9.3-33.8 0l-37.8 37.8-4.1 4.1 71.8 71.7 41.8-41.8c9.3-9.4 9.3-24.5 0-33.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUserEdit = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserFriends.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserFriends.d.ts new file mode 100644 index 0000000000..edca198339 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserFriends.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUserFriends: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserFriends.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserFriends.js new file mode 100644 index 0000000000..8bc329b8ed --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserFriends.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'user-friends'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f500'; +var svgPathData = 'M192 256c61.9 0 112-50.1 112-112S253.9 32 192 32 80 82.1 80 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C51.6 288 0 339.6 0 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zM480 256c53 0 96-43 96-96s-43-96-96-96-96 43-96 96 43 96 96 96zm48 32h-3.8c-13.9 4.8-28.6 8-44.2 8s-30.3-3.2-44.2-8H432c-20.4 0-39.2 5.9-55.7 15.4 24.4 26.3 39.7 61.2 39.7 99.8v38.4c0 2.2-.5 4.3-.6 6.4H592c26.5 0 48-21.5 48-48 0-61.9-50.1-112-112-112z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUserFriends = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserGraduate.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserGraduate.d.ts new file mode 100644 index 0000000000..1fa17606dd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserGraduate.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUserGraduate: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserGraduate.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserGraduate.js new file mode 100644 index 0000000000..50c8d6582a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserGraduate.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'user-graduate'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f501'; +var svgPathData = 'M319.4 320.6L224 416l-95.4-95.4C57.1 323.7 0 382.2 0 454.4v9.6c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-9.6c0-72.2-57.1-130.7-128.6-133.8zM13.6 79.8l6.4 1.5v58.4c-7 4.2-12 11.5-12 20.3 0 8.4 4.6 15.4 11.1 19.7L3.5 242c-1.7 6.9 2.1 14 7.6 14h41.8c5.5 0 9.3-7.1 7.6-14l-15.6-62.3C51.4 175.4 56 168.4 56 160c0-8.8-5-16.1-12-20.3V87.1l66 15.9c-8.6 17.2-14 36.4-14 57 0 70.7 57.3 128 128 128s128-57.3 128-128c0-20.6-5.3-39.8-14-57l96.3-23.2c18.2-4.4 18.2-27.1 0-31.5l-190.4-46c-13-3.1-26.7-3.1-39.7 0L13.6 48.2c-18.1 4.4-18.1 27.2 0 31.6z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUserGraduate = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserLock.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserLock.d.ts new file mode 100644 index 0000000000..d9370183ee --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserLock.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUserLock: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserLock.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserLock.js new file mode 100644 index 0000000000..4a4484b351 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserLock.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'user-lock'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f502'; +var svgPathData = 'M320 320c0-11.1 3.1-21.4 8.1-30.5-4.8-.5-9.5-1.5-14.5-1.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h280.9c-5.5-9.5-8.9-20.3-8.9-32V320zm-96-64c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm384 32h-32v-48c0-44.2-35.8-80-80-80s-80 35.8-80 80v48h-32c-17.7 0-32 14.3-32 32v160c0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32V320c0-17.7-14.3-32-32-32zm-80 0h-64v-48c0-17.6 14.4-32 32-32s32 14.4 32 32v48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUserLock = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserMd.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserMd.d.ts new file mode 100644 index 0000000000..ff2adce05e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserMd.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUserMd: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserMd.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserMd.js new file mode 100644 index 0000000000..93ae98d6c2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserMd.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'user-md'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f0f0'; +var svgPathData = 'M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zM104 424c0 13.3 10.7 24 24 24s24-10.7 24-24-10.7-24-24-24-24 10.7-24 24zm216-135.4v49c36.5 7.4 64 39.8 64 78.4v41.7c0 7.6-5.4 14.2-12.9 15.7l-32.2 6.4c-4.3.9-8.5-1.9-9.4-6.3l-3.1-15.7c-.9-4.3 1.9-8.6 6.3-9.4l19.3-3.9V416c0-62.8-96-65.1-96 1.9v26.7l19.3 3.9c4.3.9 7.1 5.1 6.3 9.4l-3.1 15.7c-.9 4.3-5.1 7.1-9.4 6.3l-31.2-4.2c-7.9-1.1-13.8-7.8-13.8-15.9V416c0-38.6 27.5-70.9 64-78.4v-45.2c-2.2.7-4.4 1.1-6.6 1.9-18 6.3-37.3 9.8-57.4 9.8s-39.4-3.5-57.4-9.8c-7.4-2.6-14.9-4.2-22.6-5.2v81.6c23.1 6.9 40 28.1 40 53.4 0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.3 16.9-46.5 40-53.4v-80.4C48.5 301 0 355.8 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-72-56.8-130.3-128-133.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUserMd = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserMinus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserMinus.d.ts new file mode 100644 index 0000000000..8cbdbcbbad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserMinus.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUserMinus: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserMinus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserMinus.js new file mode 100644 index 0000000000..f078dec2ba --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserMinus.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'user-minus'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f503'; +var svgPathData = 'M624 208H432c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUserMinus = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserNinja.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserNinja.d.ts new file mode 100644 index 0000000000..9db0995a60 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserNinja.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUserNinja: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserNinja.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserNinja.js new file mode 100644 index 0000000000..28ebf3dc94 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserNinja.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'user-ninja'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f504'; +var svgPathData = 'M325.4 289.2L224 390.6 122.6 289.2C54 295.3 0 352.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-70.2-54-127.1-122.6-133.2zM32 192c27.3 0 51.8-11.5 69.2-29.7 15.1 53.9 64 93.7 122.8 93.7 70.7 0 128-57.3 128-128S294.7 0 224 0c-50.4 0-93.6 29.4-114.5 71.8C92.1 47.8 64 32 32 32c0 33.4 17.1 62.8 43.1 80-26 17.2-43.1 46.6-43.1 80zm144-96h96c17.7 0 32 14.3 32 32H144c0-17.7 14.3-32 32-32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUserNinja = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserPlus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserPlus.d.ts new file mode 100644 index 0000000000..42bda951b1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserPlus.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUserPlus: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserPlus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserPlus.js new file mode 100644 index 0000000000..b929bd6ca4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserPlus.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'user-plus'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f234'; +var svgPathData = 'M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUserPlus = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserSecret.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserSecret.d.ts new file mode 100644 index 0000000000..97b14cb2c5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserSecret.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUserSecret: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserSecret.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserSecret.js new file mode 100644 index 0000000000..2e181ae672 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserSecret.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'user-secret'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f21b'; +var svgPathData = 'M383.9 308.3l23.9-62.6c4-10.5-3.7-21.7-15-21.7h-58.5c11-18.9 17.8-40.6 17.8-64v-.3c39.2-7.8 64-19.1 64-31.7 0-13.3-27.3-25.1-70.1-33-9.2-32.8-27-65.8-40.6-82.8-9.5-11.9-25.9-15.6-39.5-8.8l-27.6 13.8c-9 4.5-19.6 4.5-28.6 0L182.1 3.4c-13.6-6.8-30-3.1-39.5 8.8-13.5 17-31.4 50-40.6 82.8-42.7 7.9-70 19.7-70 33 0 12.6 24.8 23.9 64 31.7v.3c0 23.4 6.8 45.1 17.8 64H56.3c-11.5 0-19.2 11.7-14.7 22.3l25.8 60.2C27.3 329.8 0 372.7 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-48.4-25.8-90.4-64.1-114.1zM176 480l-41.6-192 49.6 32 24 40-32 120zm96 0l-32-120 24-40 49.6-32L272 480zm41.7-298.5c-3.9 11.9-7 24.6-16.5 33.4-10.1 9.3-48 22.4-64-25-2.8-8.4-15.4-8.4-18.3 0-17 50.2-56 32.4-64 25-9.5-8.8-12.7-21.5-16.5-33.4-.8-2.5-6.3-5.7-6.3-5.8v-10.8c28.3 3.6 61 5.8 96 5.8s67.7-2.1 96-5.8v10.8c-.1.1-5.6 3.2-6.4 5.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUserSecret = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserShield.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserShield.d.ts new file mode 100644 index 0000000000..c30bd603ef --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserShield.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUserShield: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserShield.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserShield.js new file mode 100644 index 0000000000..08a7d1feeb --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserShield.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'user-shield'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f505'; +var svgPathData = 'M622.3 271.1l-115.2-45c-4.1-1.6-12.6-3.7-22.2 0l-115.2 45c-10.7 4.2-17.7 14-17.7 24.9 0 111.6 68.7 188.8 132.9 213.9 9.6 3.7 18 1.6 22.2 0C558.4 489.9 640 420.5 640 296c0-10.9-7-20.7-17.7-24.9zM496 462.4V273.3l95.5 37.3c-5.6 87.1-60.9 135.4-95.5 151.8zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm96 40c0-2.5.8-4.8 1.1-7.2-2.5-.1-4.9-.8-7.5-.8h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c6.8 0 13.3-1.5 19.2-4-54-42.9-99.2-116.7-99.2-212z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUserShield = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserSlash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserSlash.d.ts new file mode 100644 index 0000000000..0209aeb20e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserSlash.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUserSlash: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserSlash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserSlash.js new file mode 100644 index 0000000000..6b5106a9ef --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserSlash.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'user-slash'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f506'; +var svgPathData = 'M633.8 458.1L362.3 248.3C412.1 230.7 448 183.8 448 128 448 57.3 390.7 0 320 0c-67.1 0-121.5 51.8-126.9 117.4L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM96 422.4V464c0 26.5 21.5 48 48 48h350.2L207.4 290.3C144.2 301.3 96 356 96 422.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUserSlash = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserTag.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserTag.d.ts new file mode 100644 index 0000000000..83cb112126 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserTag.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUserTag: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserTag.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserTag.js new file mode 100644 index 0000000000..8c4adcb65a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserTag.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'user-tag'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f507'; +var svgPathData = 'M630.6 364.9l-90.3-90.2c-12-12-28.3-18.7-45.3-18.7h-79.3c-17.7 0-32 14.3-32 32v79.2c0 17 6.7 33.2 18.7 45.2l90.3 90.2c12.5 12.5 32.8 12.5 45.3 0l92.5-92.5c12.6-12.5 12.6-32.7.1-45.2zm-182.8-21c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24c0 13.2-10.7 24-24 24zm-223.8-88c70.7 0 128-57.3 128-128C352 57.3 294.7 0 224 0S96 57.3 96 128c0 70.6 57.3 127.9 128 127.9zm127.8 111.2V294c-12.2-3.6-24.9-6.2-38.2-6.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 287.9 0 348.1 0 422.3v41.6c0 26.5 21.5 48 48 48h352c15.5 0 29.1-7.5 37.9-18.9l-58-58c-18.1-18.1-28.1-42.2-28.1-67.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUserTag = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserTie.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserTie.d.ts new file mode 100644 index 0000000000..e78bf9066a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserTie.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUserTie: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserTie.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserTie.js new file mode 100644 index 0000000000..1e93cf3233 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserTie.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'user-tie'; +var width = 448; +var height = 512; +var ligatures = []; +var unicode = 'f508'; +var svgPathData = 'M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm95.8 32.6L272 480l-32-136 32-56h-96l32 56-32 136-47.8-191.4C56.9 292 0 350.3 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-72.1-56.9-130.4-128.2-133.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUserTie = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserTimes.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserTimes.d.ts new file mode 100644 index 0000000000..9f941751e3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserTimes.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUserTimes: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserTimes.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserTimes.js new file mode 100644 index 0000000000..eb1b528d9f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUserTimes.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'user-times'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f235'; +var svgPathData = 'M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUserTimes = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUsers.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUsers.d.ts new file mode 100644 index 0000000000..8e5c5f2db2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUsers.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUsers: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUsers.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUsers.js new file mode 100644 index 0000000000..cc94de87aa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUsers.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'users'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f0c0'; +var svgPathData = 'M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUsers = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUsersCog.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUsersCog.d.ts new file mode 100644 index 0000000000..41a542339a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUsersCog.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUsersCog: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUsersCog.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUsersCog.js new file mode 100644 index 0000000000..9564c346b1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUsersCog.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'users-cog'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f509'; +var svgPathData = 'M610.5 341.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 368.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm224 32c1.9 0 3.7-.5 5.6-.6 8.3-21.7 20.5-42.1 36.3-59.2 7.4-8 17.9-12.6 28.9-12.6 6.9 0 13.7 1.8 19.6 5.3l7.9 4.6c.8-.5 1.6-.9 2.4-1.4 7-14.6 11.2-30.8 11.2-48 0-61.9-50.1-112-112-112S208 82.1 208 144c0 61.9 50.1 112 112 112zm105.2 194.5c-2.3-1.2-4.6-2.6-6.8-3.9-8.2 4.8-15.3 9.8-27.5 9.8-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-10.7-34.5 24.9-49.7 25.8-50.3-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-3.8-2.2-7-5-9.8-8.1-3.3.2-6.5.6-9.8.6-24.6 0-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h255.4c-3.7-6-6.2-12.8-6.2-20.3v-9.2zM173.1 274.6C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUsersCog = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUtensilSpoon.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUtensilSpoon.d.ts new file mode 100644 index 0000000000..c4a8ab8275 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUtensilSpoon.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUtensilSpoon: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUtensilSpoon.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUtensilSpoon.js new file mode 100644 index 0000000000..72558f9dae --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUtensilSpoon.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'utensil-spoon'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2e5'; +var svgPathData = 'M480.1 31.9c-55-55.1-164.9-34.5-227.8 28.5-49.3 49.3-55.1 110-28.8 160.4L9 413.2c-11.6 10.5-12.1 28.5-1 39.5L59.3 504c11 11 29.1 10.5 39.5-1.1l192.4-214.4c50.4 26.3 111.1 20.5 160.4-28.8 63-62.9 83.6-172.8 28.5-227.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUtensilSpoon = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUtensils.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUtensils.d.ts new file mode 100644 index 0000000000..3d591d03f6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUtensils.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faUtensils: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUtensils.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUtensils.js new file mode 100644 index 0000000000..0326a209e3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faUtensils.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'utensils'; +var width = 416; +var height = 512; +var ligatures = []; +var unicode = 'f2e7'; +var svgPathData = 'M207.9 15.2c.8 4.7 16.1 94.5 16.1 128.8 0 52.3-27.8 89.6-68.9 104.6L168 486.7c.7 13.7-10.2 25.3-24 25.3H80c-13.7 0-24.7-11.5-24-25.3l12.9-238.1C27.7 233.6 0 196.2 0 144 0 109.6 15.3 19.9 16.1 15.2 19.3-5.1 61.4-5.4 64 16.3v141.2c1.3 3.4 15.1 3.2 16 0 1.4-25.3 7.9-139.2 8-141.8 3.3-20.8 44.7-20.8 47.9 0 .2 2.7 6.6 116.5 8 141.8.9 3.2 14.8 3.4 16 0V16.3c2.6-21.6 44.8-21.4 48-1.1zm119.2 285.7l-15 185.1c-1.2 14 9.9 26 23.9 26h56c13.3 0 24-10.7 24-24V24c0-13.2-10.7-24-24-24-82.5 0-221.4 178.5-64.9 300.9z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faUtensils = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVectorSquare.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVectorSquare.d.ts new file mode 100644 index 0000000000..ffe26938af --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVectorSquare.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faVectorSquare: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVectorSquare.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVectorSquare.js new file mode 100644 index 0000000000..adaa0a6893 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVectorSquare.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'vector-square'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f5cb'; +var svgPathData = 'M512 128V32c0-17.67-14.33-32-32-32h-96c-17.67 0-32 14.33-32 32H160c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32v192c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32h192c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32V160c17.67 0 32-14.33 32-32zm-96-64h32v32h-32V64zM64 64h32v32H64V64zm32 384H64v-32h32v32zm352 0h-32v-32h32v32zm-32-96h-32c-17.67 0-32 14.33-32 32v32H160v-32c0-17.67-14.33-32-32-32H96V160h32c17.67 0 32-14.33 32-32V96h192v32c0 17.67 14.33 32 32 32h32v192z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faVectorSquare = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVenus.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVenus.d.ts new file mode 100644 index 0000000000..df71457f65 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVenus.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faVenus: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVenus.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVenus.js new file mode 100644 index 0000000000..533196bd4b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVenus.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'venus'; +var width = 288; +var height = 512; +var ligatures = []; +var unicode = 'f221'; +var svgPathData = 'M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faVenus = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVenusDouble.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVenusDouble.d.ts new file mode 100644 index 0000000000..c726cc2b9c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVenusDouble.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faVenusDouble: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVenusDouble.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVenusDouble.js new file mode 100644 index 0000000000..215b6a1b68 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVenusDouble.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'venus-double'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f226'; +var svgPathData = 'M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80zm336 140.4V368h36c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-36v36c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-36h-36c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h36v-51.6c-21.2-4.8-40.6-14.3-57.2-27.3 14-16.7 25-36 32.1-57.1 14.5 14.8 34.7 24 57.1 24 44.1 0 80-35.9 80-80s-35.9-80-80-80c-22.3 0-42.6 9.2-57.1 24-7.1-21.1-18-40.4-32.1-57.1C303.4 43.6 334.3 32 368 32c79.5 0 144 64.5 144 144 0 68.5-47.9 125.9-112 140.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faVenusDouble = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVenusMars.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVenusMars.d.ts new file mode 100644 index 0000000000..d7a9fdb093 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVenusMars.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faVenusMars: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVenusMars.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVenusMars.js new file mode 100644 index 0000000000..0d2e18d72b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVenusMars.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'venus-mars'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f228'; +var svgPathData = 'M564 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C422.5 72.1 396.2 64 368 64c-33.7 0-64.6 11.6-89.2 30.9 14 16.7 25 36 32.1 57.1 14.5-14.8 34.7-24 57.1-24 44.1 0 80 35.9 80 80s-35.9 80-80 80c-22.3 0-42.6-9.2-57.1-24-7.1 21.1-18 40.4-32.1 57.1 24.5 19.4 55.5 30.9 89.2 30.9 79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 64C64.5 64 0 128.5 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.6 112-71.9 112-140.4 0-79.5-64.5-144-144-144zm0 224c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faVenusMars = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVial.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVial.d.ts new file mode 100644 index 0000000000..e5d6edefdc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVial.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faVial: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVial.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVial.js new file mode 100644 index 0000000000..9a446133ef --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVial.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'vial'; +var width = 480; +var height = 512; +var ligatures = []; +var unicode = 'f492'; +var svgPathData = 'M477.7 186.1L309.5 18.3c-3.1-3.1-8.2-3.1-11.3 0l-34 33.9c-3.1 3.1-3.1 8.2 0 11.3l11.2 11.1L33 316.5c-38.8 38.7-45.1 102-9.4 143.5 20.6 24 49.5 36 78.4 35.9 26.4 0 52.8-10 72.9-30.1l246.3-245.7 11.2 11.1c3.1 3.1 8.2 3.1 11.3 0l34-33.9c3.1-3 3.1-8.1 0-11.2zM318 256H161l148-147.7 78.5 78.3L318 256z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faVial = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVials.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVials.d.ts new file mode 100644 index 0000000000..1a2b139c5b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVials.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faVials: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVials.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVials.js new file mode 100644 index 0000000000..961e584a8c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVials.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'vials'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f493'; +var svgPathData = 'M72 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H72c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64zm480 384H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM360 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faVials = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVideo.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVideo.d.ts new file mode 100644 index 0000000000..590a4ce573 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVideo.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faVideo: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVideo.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVideo.js new file mode 100644 index 0000000000..7bdfd43f6d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVideo.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'video'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f03d'; +var svgPathData = 'M336.2 64H47.8C21.4 64 0 85.4 0 111.8v288.4C0 426.6 21.4 448 47.8 448h288.4c26.4 0 47.8-21.4 47.8-47.8V111.8c0-26.4-21.4-47.8-47.8-47.8zm189.4 37.7L416 177.3v157.4l109.6 75.5c21.2 14.6 50.4-.3 50.4-25.8V127.5c0-25.4-29.1-40.4-50.4-25.8z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faVideo = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVideoSlash.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVideoSlash.d.ts new file mode 100644 index 0000000000..a1320d9ac0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVideoSlash.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faVideoSlash: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVideoSlash.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVideoSlash.js new file mode 100644 index 0000000000..23b7eb9d77 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVideoSlash.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'video-slash'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f4e2'; +var svgPathData = 'M633.8 458.1l-55-42.5c15.4-1.4 29.2-13.7 29.2-31.1v-257c0-25.5-29.1-40.4-50.4-25.8L448 177.3v137.2l-32-24.7v-178c0-26.4-21.4-47.8-47.8-47.8H123.9L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4L42.7 82 416 370.6l178.5 138c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.5-6.9 4.2-17-2.8-22.4zM32 400.2c0 26.4 21.4 47.8 47.8 47.8h288.4c11.2 0 21.4-4 29.6-10.5L32 154.7v245.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faVideoSlash = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolleyballBall.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolleyballBall.d.ts new file mode 100644 index 0000000000..a5126700cd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolleyballBall.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faVolleyballBall: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolleyballBall.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolleyballBall.js new file mode 100644 index 0000000000..09f5dfcb2a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolleyballBall.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'volleyball-ball'; +var width = 495; +var height = 512; +var ligatures = []; +var unicode = 'f45f'; +var svgPathData = 'M223.3 243.4c-.9-37-8.6-72.8-22.7-105.7-90.8 42.4-157.5 122.4-180.3 216.8 13.4 30.8 32.9 58.3 56.9 81.1 22.7-79.2 74.2-147.8 146.1-192.2zM186.4 109c-15-26.4-34.5-50.1-57.4-70.7C38 88.1-15.8 191.2 4 300.5c33.4-83.1 98.4-152 182.4-191.5zM374 274.1c8.6-99.8-27.3-197.5-97.5-264.4-14.7-1.7-51.6-5.5-98.9 8.5 57.3 59.3 91 138.2 93.5 222.7 32.5 17.7 67.3 29 102.9 33.2zm-124.7 9.5c-31.6 19.3-58.7 43.9-80.2 72.6 82 57.3 184.5 75.1 277.5 47.8 19.7-26.4 34.2-56.8 42.2-89.9-26.6 6.6-53.7 10.4-80.9 10.4-54.6-.1-108.9-14.1-158.6-40.9zM151 383.3c-15.2 26-25.7 54.4-32.1 84.2 37.6 23 81.7 36.5 129.1 36.5 61 0 116.7-22.1 159.9-58.6C295 461.5 204.6 420.6 151 383.3zM331.3 22.7c55.3 70.4 82.5 161.2 74.6 253.6 30.3.2 60.5-4.8 89.7-14.2 0-2 .3-4 .3-6 0-107.8-68.7-199.1-164.6-233.4z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faVolleyballBall = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolumeDown.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolumeDown.d.ts new file mode 100644 index 0000000000..514b09b9c1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolumeDown.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faVolumeDown: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolumeDown.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolumeDown.js new file mode 100644 index 0000000000..35e9ee61a0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolumeDown.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'volume-down'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f027'; +var svgPathData = 'M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zM384 256c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faVolumeDown = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolumeOff.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolumeOff.d.ts new file mode 100644 index 0000000000..e58a65f803 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolumeOff.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faVolumeOff: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolumeOff.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolumeOff.js new file mode 100644 index 0000000000..58697a4459 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolumeOff.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'volume-off'; +var width = 256; +var height = 512; +var ligatures = []; +var unicode = 'f026'; +var svgPathData = 'M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faVolumeOff = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolumeUp.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolumeUp.d.ts new file mode 100644 index 0000000000..974dd7400c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolumeUp.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faVolumeUp: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolumeUp.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolumeUp.js new file mode 100644 index 0000000000..9a753b4a4e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faVolumeUp.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'volume-up'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f028'; +var svgPathData = 'M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zm182.056-77.876C422.982.92 403.283 5.668 394.061 20.745c-9.221 15.077-4.473 34.774 10.604 43.995C468.967 104.063 512 174.983 512 256c0 73.431-36.077 142.292-96.507 184.206-14.522 10.072-18.129 30.01-8.057 44.532 10.076 14.528 30.016 18.126 44.531 8.057C529.633 438.927 576 350.406 576 256c0-103.244-54.579-194.877-137.944-245.859zM480 256c0-68.547-36.15-129.777-91.957-163.901-15.076-9.22-34.774-4.471-43.994 10.607-9.22 15.078-4.471 34.774 10.607 43.994C393.067 170.188 416 211.048 416 256c0 41.964-20.62 81.319-55.158 105.276-14.521 10.073-18.128 30.01-8.056 44.532 6.216 8.96 16.185 13.765 26.322 13.765a31.862 31.862 0 0 0 18.21-5.709C449.091 377.953 480 318.938 480 256zm-96 0c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faVolumeUp = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWalking.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWalking.d.ts new file mode 100644 index 0000000000..3fb294780e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWalking.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWalking: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWalking.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWalking.js new file mode 100644 index 0000000000..30aef9b33a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWalking.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'walking'; +var width = 320; +var height = 512; +var ligatures = []; +var unicode = 'f554'; +var svgPathData = 'M208 96c26.5 0 48-21.5 48-48S234.5 0 208 0s-48 21.5-48 48 21.5 48 48 48zm94.5 149.1l-23.3-11.8-9.7-29.4c-14.7-44.6-55.7-75.8-102.2-75.9-36-.1-55.9 10.1-93.3 25.2-21.6 8.7-39.3 25.2-49.7 46.2L17.6 213c-7.8 15.8-1.5 35 14.2 42.9 15.6 7.9 34.6 1.5 42.5-14.3L81 228c3.5-7 9.3-12.5 16.5-15.4l26.8-10.8-15.2 60.7c-5.2 20.8.4 42.9 14.9 58.8l59.9 65.4c7.2 7.9 12.3 17.4 14.9 27.7l18.3 73.3c4.3 17.1 21.7 27.6 38.8 23.3 17.1-4.3 27.6-21.7 23.3-38.8l-22.2-89c-2.6-10.3-7.7-19.9-14.9-27.7l-45.5-49.7 17.2-68.7 5.5 16.5c5.3 16.1 16.7 29.4 31.7 37l23.3 11.8c15.6 7.9 34.6 1.5 42.5-14.3 7.7-15.7 1.4-35.1-14.3-43zM73.6 385.8c-3.2 8.1-8 15.4-14.2 21.5l-50 50.1c-12.5 12.5-12.5 32.8 0 45.3s32.7 12.5 45.2 0l59.4-59.4c6.1-6.1 10.9-13.4 14.2-21.5l13.5-33.8c-55.3-60.3-38.7-41.8-47.4-53.7l-20.7 51.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWalking = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWallet.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWallet.d.ts new file mode 100644 index 0000000000..94a8d88a11 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWallet.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWallet: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWallet.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWallet.js new file mode 100644 index 0000000000..93c5761612 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWallet.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'wallet'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f555'; +var svgPathData = 'M461.2 128H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h384c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h397.2c28.02 0 50.8-21.53 50.8-48V176c0-26.47-22.78-48-50.8-48zM416 336c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWallet = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWarehouse.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWarehouse.d.ts new file mode 100644 index 0000000000..2cb1508ce8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWarehouse.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWarehouse: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWarehouse.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWarehouse.js new file mode 100644 index 0000000000..385ee19a01 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWarehouse.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'warehouse'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f494'; +var svgPathData = 'M504 352H136.4c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0 96H136.1c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0-192H136.6c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm106.5-139L338.4 3.7a48.15 48.15 0 0 0-36.9 0L29.5 117C11.7 124.5 0 141.9 0 161.3V504c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V256c0-17.6 14.6-32 32.6-32h382.8c18 0 32.6 14.4 32.6 32v248c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V161.3c0-19.4-11.7-36.8-29.5-44.3z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWarehouse = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWeight.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWeight.d.ts new file mode 100644 index 0000000000..51d71eea5e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWeight.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWeight: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWeight.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWeight.js new file mode 100644 index 0000000000..0019fad1b2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWeight.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'weight'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f496'; +var svgPathData = 'M448 64h-25.98C438.44 92.28 448 125.01 448 160c0 105.87-86.13 192-192 192S64 265.87 64 160c0-34.99 9.56-67.72 25.98-96H64C28.71 64 0 92.71 0 128v320c0 35.29 28.71 64 64 64h384c35.29 0 64-28.71 64-64V128c0-35.29-28.71-64-64-64zM256 320c88.37 0 160-71.63 160-160S344.37 0 256 0 96 71.63 96 160s71.63 160 160 160zm-.3-151.94l33.58-78.36c3.5-8.17 12.94-11.92 21.03-8.41 8.12 3.48 11.88 12.89 8.41 21l-33.67 78.55C291.73 188 296 197.45 296 208c0 22.09-17.91 40-40 40s-40-17.91-40-40c0-21.98 17.76-39.77 39.7-39.94z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWeight = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWeightHanging.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWeightHanging.d.ts new file mode 100644 index 0000000000..d4930d5d97 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWeightHanging.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWeightHanging: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWeightHanging.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWeightHanging.js new file mode 100644 index 0000000000..aaf02c9ba5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWeightHanging.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'weight-hanging'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f5cd'; +var svgPathData = 'M510.28 445.86l-73.03-292.13c-3.8-15.19-16.44-25.72-30.87-25.72h-60.25c3.57-10.05 5.88-20.72 5.88-32 0-53.02-42.98-96-96-96s-96 42.98-96 96c0 11.28 2.3 21.95 5.88 32h-60.25c-14.43 0-27.08 10.54-30.87 25.72L1.72 445.86C-6.61 479.17 16.38 512 48.03 512h415.95c31.64 0 54.63-32.83 46.3-66.14zM256 128c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWeightHanging = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWheelchair.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWheelchair.d.ts new file mode 100644 index 0000000000..8f9887eddc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWheelchair.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWheelchair: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWheelchair.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWheelchair.js new file mode 100644 index 0000000000..8c2f10a51c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWheelchair.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'wheelchair'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f193'; +var svgPathData = 'M496.101 385.669l14.227 28.663c3.929 7.915.697 17.516-7.218 21.445l-65.465 32.886c-16.049 7.967-35.556 1.194-43.189-15.055L331.679 320H192c-15.925 0-29.426-11.71-31.679-27.475C126.433 55.308 128.38 70.044 128 64c0-36.358 30.318-65.635 67.052-63.929 33.271 1.545 60.048 28.905 60.925 62.201.868 32.933-23.152 60.423-54.608 65.039l4.67 32.69H336c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H215.182l4.572 32H352a32 32 0 0 1 28.962 18.392L438.477 396.8l36.178-18.349c7.915-3.929 17.517-.697 21.446 7.218zM311.358 352h-24.506c-7.788 54.204-54.528 96-110.852 96-61.757 0-112-50.243-112-112 0-41.505 22.694-77.809 56.324-97.156-3.712-25.965-6.844-47.86-9.488-66.333C45.956 198.464 0 261.963 0 336c0 97.047 78.953 176 176 176 71.87 0 133.806-43.308 161.11-105.192L311.358 352z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWheelchair = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWifi.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWifi.d.ts new file mode 100644 index 0000000000..bb846c834b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWifi.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWifi: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWifi.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWifi.js new file mode 100644 index 0000000000..fad27f8088 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWifi.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'wifi'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f1eb'; +var svgPathData = 'M384 416c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm136.659-124.443c6.465-6.465 6.245-17.065-.564-23.167-113.793-101.985-286.526-101.869-400.19 0-6.809 6.102-7.029 16.702-.564 23.167l34.006 34.006c5.927 5.927 15.464 6.32 21.769.796 82.88-72.609 207.074-72.447 289.768 0 6.305 5.524 15.842 5.132 21.769-.796l34.006-34.006zm112.11-113.718c6.385-6.385 6.254-16.816-.35-22.973-175.768-163.86-449.134-163.8-624.837 0-6.604 6.157-6.735 16.589-.35 22.973l33.966 33.966c6.095 6.095 15.891 6.231 22.224.383 144.763-133.668 368.356-133.702 513.156 0 6.333 5.848 16.129 5.712 22.224-.383l33.967-33.966z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWifi = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowClose.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowClose.d.ts new file mode 100644 index 0000000000..77f1814950 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowClose.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWindowClose: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowClose.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowClose.js new file mode 100644 index 0000000000..4441bb14c5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowClose.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'window-close'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f410'; +var svgPathData = 'M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-83.6 290.5c4.8 4.8 4.8 12.6 0 17.4l-40.5 40.5c-4.8 4.8-12.6 4.8-17.4 0L256 313.3l-66.5 67.1c-4.8 4.8-12.6 4.8-17.4 0l-40.5-40.5c-4.8-4.8-4.8-12.6 0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6 0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1 66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8 4.8 12.6 0 17.4L313.3 256l67.1 66.5z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWindowClose = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowMaximize.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowMaximize.d.ts new file mode 100644 index 0000000000..19be5cc5c9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowMaximize.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWindowMaximize: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowMaximize.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowMaximize.js new file mode 100644 index 0000000000..71fb78b204 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowMaximize.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'window-maximize'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2d0'; +var svgPathData = 'M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16 160H64v-84c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12v84z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWindowMaximize = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowMinimize.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowMinimize.d.ts new file mode 100644 index 0000000000..af46bbc2c0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowMinimize.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWindowMinimize: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowMinimize.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowMinimize.js new file mode 100644 index 0000000000..b864c8554f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowMinimize.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'window-minimize'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2d1'; +var svgPathData = 'M464 352H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWindowMinimize = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowRestore.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowRestore.d.ts new file mode 100644 index 0000000000..c79b53ca09 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowRestore.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWindowRestore: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowRestore.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowRestore.js new file mode 100644 index 0000000000..4630955a16 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWindowRestore.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'window-restore'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f2d2'; +var svgPathData = 'M512 48v288c0 26.5-21.5 48-48 48h-48V176c0-44.1-35.9-80-80-80H128V48c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zM384 176v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zm-68 28c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v52h252v-52z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWindowRestore = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWineGlass.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWineGlass.d.ts new file mode 100644 index 0000000000..25bce566d2 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWineGlass.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWineGlass: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWineGlass.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWineGlass.js new file mode 100644 index 0000000000..e46e0efbbd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWineGlass.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'wine-glass'; +var width = 288; +var height = 512; +var ligatures = []; +var unicode = 'f4e3'; +var svgPathData = 'M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWineGlass = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWineGlassAlt.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWineGlassAlt.d.ts new file mode 100644 index 0000000000..3a037e4988 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWineGlassAlt.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWineGlassAlt: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWineGlassAlt.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWineGlassAlt.js new file mode 100644 index 0000000000..ce254bfdcd --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWineGlassAlt.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'wine-glass-alt'; +var width = 288; +var height = 512; +var ligatures = []; +var unicode = 'f5ce'; +var svgPathData = 'M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM61.75 48h164.5l7.17 80H54.58l7.17-80z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWineGlassAlt = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWonSign.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWonSign.d.ts new file mode 100644 index 0000000000..e5be94c38d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWonSign.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWonSign: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWonSign.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWonSign.js new file mode 100644 index 0000000000..753691d6f3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWonSign.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'won-sign'; +var width = 576; +var height = 512; +var ligatures = []; +var unicode = 'f159'; +var svgPathData = 'M564 192c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-48.028l18.572-80.61c1.732-7.518-3.978-14.694-11.693-14.694h-46.107a11.998 11.998 0 0 0-11.736 9.5L450.73 128H340.839l-19.725-85.987a12 12 0 0 0-11.696-9.317H265.43a12 12 0 0 0-11.687 9.277L233.696 128H124.975L107.5 42.299a12 12 0 0 0-11.758-9.602H53.628c-7.686 0-13.39 7.124-11.709 14.624L60 128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h62.342l7.171 32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h83.856l40.927 182.624A12 12 0 0 0 148.492 480h56.767c5.583 0 10.428-3.85 11.689-9.288L259.335 288h55.086l42.386 182.712A12 12 0 0 0 368.496 480h56.826a12 12 0 0 0 11.694-9.306L479.108 288H564c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-70.146l7.373-32H564zm-425.976 0h80.757l-7.457 32h-66.776l-6.524-32zm45.796 150.029c-6.194 25.831-6.758 47.25-7.321 47.25h-1.126s-1.689-22.05-6.758-47.25L157.599 288h38.812l-12.591 54.029zM274.182 224l1.996-8.602c1.856-7.962 3.457-15.968 4.803-23.398h11.794c1.347 7.43 2.947 15.436 4.803 23.398l1.996 8.602h-25.392zm130.959 118.029c-5.068 25.2-6.758 47.25-6.758 47.25h-1.126c-.563 0-1.126-21.42-7.321-47.25L377.542 288h39.107l-11.508 54.029zM430.281 224h-67.42l-7.34-32h81.577l-6.817 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWonSign = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWrench.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWrench.d.ts new file mode 100644 index 0000000000..3388774898 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWrench.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faWrench: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWrench.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWrench.js new file mode 100644 index 0000000000..027687e804 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faWrench.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'wrench'; +var width = 512; +var height = 512; +var ligatures = []; +var unicode = 'f0ad'; +var svgPathData = 'M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faWrench = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faXRay.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faXRay.d.ts new file mode 100644 index 0000000000..47a514e927 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faXRay.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faXRay: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faXRay.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faXRay.js new file mode 100644 index 0000000000..7047d9486a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faXRay.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'x-ray'; +var width = 640; +var height = 512; +var ligatures = []; +var unicode = 'f497'; +var svgPathData = 'M240 384c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm160 32c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zM624 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zm0 448h-48V96H64v352H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM480 248c0 4.4-3.6 8-8 8H336v32h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48v-16h-64v16c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48h64v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-32H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h136v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-24c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v24h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h136c4.4 0 8 3.6 8 8v16z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faXRay = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faYenSign.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faYenSign.d.ts new file mode 100644 index 0000000000..e6097ac2d1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faYenSign.d.ts @@ -0,0 +1,10 @@ +import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; +export const definition: IconDefinition; +export const faYenSign: IconDefinition; +export const prefix: IconPrefix; +export const iconName: IconName; +export const width: number; +export const height: number; +export const ligatures: string[]; +export const unicode: string; +export const svgPathData: string; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faYenSign.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faYenSign.js new file mode 100644 index 0000000000..92f3039db0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/faYenSign.js @@ -0,0 +1,29 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var prefix = 'fas'; +var iconName = 'yen-sign'; +var width = 384; +var height = 512; +var ligatures = []; +var unicode = 'f157'; +var svgPathData = 'M351.208 32h-65.277a12 12 0 0 0-10.778 6.724l-55.39 113.163c-14.513 34.704-27.133 71.932-27.133 71.932h-1.262s-12.62-37.228-27.133-71.932l-55.39-113.163A11.997 11.997 0 0 0 98.068 32H32.792c-9.057 0-14.85 9.65-10.59 17.643L102.322 200H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h88.162L152 293.228V320H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h108v92c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-92h108c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12H232v-26.772L251.838 256H340c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12h-58.322l80.12-150.357C366.058 41.65 360.266 32 351.208 32z'; + +exports.definition = { + prefix: prefix, + iconName: iconName, + icon: [ + width, + height, + ligatures, + unicode, + svgPathData + ]}; + +exports.faYenSign = exports.definition; +exports.prefix = prefix; +exports.iconName = iconName; +exports.width = width; +exports.height = height; +exports.ligatures = ligatures; +exports.unicode = unicode; +exports.svgPathData = svgPathData; \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/index.d.ts b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/index.d.ts new file mode 100644 index 0000000000..47ea817794 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/index.d.ts @@ -0,0 +1,744 @@ +import { IconDefinition, IconLookup, IconName, IconPrefix, IconPack } from '@fortawesome/fontawesome-common-types'; +export { IconDefinition, IconLookup, IconName, IconPrefix, IconPack } from '@fortawesome/fontawesome-common-types'; +export const prefix: IconPrefix; +export const fas: IconPack; +export const faAddressBook: IconDefinition; +export const faAddressCard: IconDefinition; +export const faAdjust: IconDefinition; +export const faAlignCenter: IconDefinition; +export const faAlignJustify: IconDefinition; +export const faAlignLeft: IconDefinition; +export const faAlignRight: IconDefinition; +export const faAllergies: IconDefinition; +export const faAmbulance: IconDefinition; +export const faAmericanSignLanguageInterpreting: IconDefinition; +export const faAnchor: IconDefinition; +export const faAngleDoubleDown: IconDefinition; +export const faAngleDoubleLeft: IconDefinition; +export const faAngleDoubleRight: IconDefinition; +export const faAngleDoubleUp: IconDefinition; +export const faAngleDown: IconDefinition; +export const faAngleLeft: IconDefinition; +export const faAngleRight: IconDefinition; +export const faAngleUp: IconDefinition; +export const faAngry: IconDefinition; +export const faArchive: IconDefinition; +export const faArchway: IconDefinition; +export const faArrowAltCircleDown: IconDefinition; +export const faArrowAltCircleLeft: IconDefinition; +export const faArrowAltCircleRight: IconDefinition; +export const faArrowAltCircleUp: IconDefinition; +export const faArrowCircleDown: IconDefinition; +export const faArrowCircleLeft: IconDefinition; +export const faArrowCircleRight: IconDefinition; +export const faArrowCircleUp: IconDefinition; +export const faArrowDown: IconDefinition; +export const faArrowLeft: IconDefinition; +export const faArrowRight: IconDefinition; +export const faArrowUp: IconDefinition; +export const faArrowsAlt: IconDefinition; +export const faArrowsAltH: IconDefinition; +export const faArrowsAltV: IconDefinition; +export const faAssistiveListeningSystems: IconDefinition; +export const faAsterisk: IconDefinition; +export const faAt: IconDefinition; +export const faAtlas: IconDefinition; +export const faAudioDescription: IconDefinition; +export const faAward: IconDefinition; +export const faBackspace: IconDefinition; +export const faBackward: IconDefinition; +export const faBalanceScale: IconDefinition; +export const faBan: IconDefinition; +export const faBandAid: IconDefinition; +export const faBarcode: IconDefinition; +export const faBars: IconDefinition; +export const faBaseballBall: IconDefinition; +export const faBasketballBall: IconDefinition; +export const faBath: IconDefinition; +export const faBatteryEmpty: IconDefinition; +export const faBatteryFull: IconDefinition; +export const faBatteryHalf: IconDefinition; +export const faBatteryQuarter: IconDefinition; +export const faBatteryThreeQuarters: IconDefinition; +export const faBed: IconDefinition; +export const faBeer: IconDefinition; +export const faBell: IconDefinition; +export const faBellSlash: IconDefinition; +export const faBezierCurve: IconDefinition; +export const faBicycle: IconDefinition; +export const faBinoculars: IconDefinition; +export const faBirthdayCake: IconDefinition; +export const faBlender: IconDefinition; +export const faBlind: IconDefinition; +export const faBold: IconDefinition; +export const faBolt: IconDefinition; +export const faBomb: IconDefinition; +export const faBong: IconDefinition; +export const faBook: IconDefinition; +export const faBookOpen: IconDefinition; +export const faBookmark: IconDefinition; +export const faBowlingBall: IconDefinition; +export const faBox: IconDefinition; +export const faBoxOpen: IconDefinition; +export const faBoxes: IconDefinition; +export const faBraille: IconDefinition; +export const faBriefcase: IconDefinition; +export const faBriefcaseMedical: IconDefinition; +export const faBroadcastTower: IconDefinition; +export const faBroom: IconDefinition; +export const faBrush: IconDefinition; +export const faBug: IconDefinition; +export const faBuilding: IconDefinition; +export const faBullhorn: IconDefinition; +export const faBullseye: IconDefinition; +export const faBurn: IconDefinition; +export const faBus: IconDefinition; +export const faBusAlt: IconDefinition; +export const faCalculator: IconDefinition; +export const faCalendar: IconDefinition; +export const faCalendarAlt: IconDefinition; +export const faCalendarCheck: IconDefinition; +export const faCalendarMinus: IconDefinition; +export const faCalendarPlus: IconDefinition; +export const faCalendarTimes: IconDefinition; +export const faCamera: IconDefinition; +export const faCameraRetro: IconDefinition; +export const faCannabis: IconDefinition; +export const faCapsules: IconDefinition; +export const faCar: IconDefinition; +export const faCaretDown: IconDefinition; +export const faCaretLeft: IconDefinition; +export const faCaretRight: IconDefinition; +export const faCaretSquareDown: IconDefinition; +export const faCaretSquareLeft: IconDefinition; +export const faCaretSquareRight: IconDefinition; +export const faCaretSquareUp: IconDefinition; +export const faCaretUp: IconDefinition; +export const faCartArrowDown: IconDefinition; +export const faCartPlus: IconDefinition; +export const faCertificate: IconDefinition; +export const faChalkboard: IconDefinition; +export const faChalkboardTeacher: IconDefinition; +export const faChartArea: IconDefinition; +export const faChartBar: IconDefinition; +export const faChartLine: IconDefinition; +export const faChartPie: IconDefinition; +export const faCheck: IconDefinition; +export const faCheckCircle: IconDefinition; +export const faCheckDouble: IconDefinition; +export const faCheckSquare: IconDefinition; +export const faChess: IconDefinition; +export const faChessBishop: IconDefinition; +export const faChessBoard: IconDefinition; +export const faChessKing: IconDefinition; +export const faChessKnight: IconDefinition; +export const faChessPawn: IconDefinition; +export const faChessQueen: IconDefinition; +export const faChessRook: IconDefinition; +export const faChevronCircleDown: IconDefinition; +export const faChevronCircleLeft: IconDefinition; +export const faChevronCircleRight: IconDefinition; +export const faChevronCircleUp: IconDefinition; +export const faChevronDown: IconDefinition; +export const faChevronLeft: IconDefinition; +export const faChevronRight: IconDefinition; +export const faChevronUp: IconDefinition; +export const faChild: IconDefinition; +export const faChurch: IconDefinition; +export const faCircle: IconDefinition; +export const faCircleNotch: IconDefinition; +export const faClipboard: IconDefinition; +export const faClipboardCheck: IconDefinition; +export const faClipboardList: IconDefinition; +export const faClock: IconDefinition; +export const faClone: IconDefinition; +export const faClosedCaptioning: IconDefinition; +export const faCloud: IconDefinition; +export const faCloudDownloadAlt: IconDefinition; +export const faCloudUploadAlt: IconDefinition; +export const faCocktail: IconDefinition; +export const faCode: IconDefinition; +export const faCodeBranch: IconDefinition; +export const faCoffee: IconDefinition; +export const faCog: IconDefinition; +export const faCogs: IconDefinition; +export const faCoins: IconDefinition; +export const faColumns: IconDefinition; +export const faComment: IconDefinition; +export const faCommentAlt: IconDefinition; +export const faCommentDots: IconDefinition; +export const faCommentSlash: IconDefinition; +export const faComments: IconDefinition; +export const faCompactDisc: IconDefinition; +export const faCompass: IconDefinition; +export const faCompress: IconDefinition; +export const faConciergeBell: IconDefinition; +export const faCookie: IconDefinition; +export const faCookieBite: IconDefinition; +export const faCopy: IconDefinition; +export const faCopyright: IconDefinition; +export const faCouch: IconDefinition; +export const faCreditCard: IconDefinition; +export const faCrop: IconDefinition; +export const faCropAlt: IconDefinition; +export const faCrosshairs: IconDefinition; +export const faCrow: IconDefinition; +export const faCrown: IconDefinition; +export const faCube: IconDefinition; +export const faCubes: IconDefinition; +export const faCut: IconDefinition; +export const faDatabase: IconDefinition; +export const faDeaf: IconDefinition; +export const faDesktop: IconDefinition; +export const faDiagnoses: IconDefinition; +export const faDice: IconDefinition; +export const faDiceFive: IconDefinition; +export const faDiceFour: IconDefinition; +export const faDiceOne: IconDefinition; +export const faDiceSix: IconDefinition; +export const faDiceThree: IconDefinition; +export const faDiceTwo: IconDefinition; +export const faDigitalTachograph: IconDefinition; +export const faDivide: IconDefinition; +export const faDizzy: IconDefinition; +export const faDna: IconDefinition; +export const faDollarSign: IconDefinition; +export const faDolly: IconDefinition; +export const faDollyFlatbed: IconDefinition; +export const faDonate: IconDefinition; +export const faDoorClosed: IconDefinition; +export const faDoorOpen: IconDefinition; +export const faDotCircle: IconDefinition; +export const faDove: IconDefinition; +export const faDownload: IconDefinition; +export const faDraftingCompass: IconDefinition; +export const faDrum: IconDefinition; +export const faDrumSteelpan: IconDefinition; +export const faDumbbell: IconDefinition; +export const faEdit: IconDefinition; +export const faEject: IconDefinition; +export const faEllipsisH: IconDefinition; +export const faEllipsisV: IconDefinition; +export const faEnvelope: IconDefinition; +export const faEnvelopeOpen: IconDefinition; +export const faEnvelopeSquare: IconDefinition; +export const faEquals: IconDefinition; +export const faEraser: IconDefinition; +export const faEuroSign: IconDefinition; +export const faExchangeAlt: IconDefinition; +export const faExclamation: IconDefinition; +export const faExclamationCircle: IconDefinition; +export const faExclamationTriangle: IconDefinition; +export const faExpand: IconDefinition; +export const faExpandArrowsAlt: IconDefinition; +export const faExternalLinkAlt: IconDefinition; +export const faExternalLinkSquareAlt: IconDefinition; +export const faEye: IconDefinition; +export const faEyeDropper: IconDefinition; +export const faEyeSlash: IconDefinition; +export const faFastBackward: IconDefinition; +export const faFastForward: IconDefinition; +export const faFax: IconDefinition; +export const faFeather: IconDefinition; +export const faFeatherAlt: IconDefinition; +export const faFemale: IconDefinition; +export const faFighterJet: IconDefinition; +export const faFile: IconDefinition; +export const faFileAlt: IconDefinition; +export const faFileArchive: IconDefinition; +export const faFileAudio: IconDefinition; +export const faFileCode: IconDefinition; +export const faFileContract: IconDefinition; +export const faFileDownload: IconDefinition; +export const faFileExcel: IconDefinition; +export const faFileExport: IconDefinition; +export const faFileImage: IconDefinition; +export const faFileImport: IconDefinition; +export const faFileInvoice: IconDefinition; +export const faFileInvoiceDollar: IconDefinition; +export const faFileMedical: IconDefinition; +export const faFileMedicalAlt: IconDefinition; +export const faFilePdf: IconDefinition; +export const faFilePowerpoint: IconDefinition; +export const faFilePrescription: IconDefinition; +export const faFileSignature: IconDefinition; +export const faFileUpload: IconDefinition; +export const faFileVideo: IconDefinition; +export const faFileWord: IconDefinition; +export const faFill: IconDefinition; +export const faFillDrip: IconDefinition; +export const faFilm: IconDefinition; +export const faFilter: IconDefinition; +export const faFingerprint: IconDefinition; +export const faFire: IconDefinition; +export const faFireExtinguisher: IconDefinition; +export const faFirstAid: IconDefinition; +export const faFish: IconDefinition; +export const faFlag: IconDefinition; +export const faFlagCheckered: IconDefinition; +export const faFlask: IconDefinition; +export const faFlushed: IconDefinition; +export const faFolder: IconDefinition; +export const faFolderOpen: IconDefinition; +export const faFont: IconDefinition; +export const faFontAwesomeLogoFull: IconDefinition; +export const faFootballBall: IconDefinition; +export const faForward: IconDefinition; +export const faFrog: IconDefinition; +export const faFrown: IconDefinition; +export const faFrownOpen: IconDefinition; +export const faFutbol: IconDefinition; +export const faGamepad: IconDefinition; +export const faGasPump: IconDefinition; +export const faGavel: IconDefinition; +export const faGem: IconDefinition; +export const faGenderless: IconDefinition; +export const faGift: IconDefinition; +export const faGlassMartini: IconDefinition; +export const faGlassMartiniAlt: IconDefinition; +export const faGlasses: IconDefinition; +export const faGlobe: IconDefinition; +export const faGlobeAfrica: IconDefinition; +export const faGlobeAmericas: IconDefinition; +export const faGlobeAsia: IconDefinition; +export const faGolfBall: IconDefinition; +export const faGraduationCap: IconDefinition; +export const faGreaterThan: IconDefinition; +export const faGreaterThanEqual: IconDefinition; +export const faGrimace: IconDefinition; +export const faGrin: IconDefinition; +export const faGrinAlt: IconDefinition; +export const faGrinBeam: IconDefinition; +export const faGrinBeamSweat: IconDefinition; +export const faGrinHearts: IconDefinition; +export const faGrinSquint: IconDefinition; +export const faGrinSquintTears: IconDefinition; +export const faGrinStars: IconDefinition; +export const faGrinTears: IconDefinition; +export const faGrinTongue: IconDefinition; +export const faGrinTongueSquint: IconDefinition; +export const faGrinTongueWink: IconDefinition; +export const faGrinWink: IconDefinition; +export const faGripHorizontal: IconDefinition; +export const faGripVertical: IconDefinition; +export const faHSquare: IconDefinition; +export const faHandHolding: IconDefinition; +export const faHandHoldingHeart: IconDefinition; +export const faHandHoldingUsd: IconDefinition; +export const faHandLizard: IconDefinition; +export const faHandPaper: IconDefinition; +export const faHandPeace: IconDefinition; +export const faHandPointDown: IconDefinition; +export const faHandPointLeft: IconDefinition; +export const faHandPointRight: IconDefinition; +export const faHandPointUp: IconDefinition; +export const faHandPointer: IconDefinition; +export const faHandRock: IconDefinition; +export const faHandScissors: IconDefinition; +export const faHandSpock: IconDefinition; +export const faHands: IconDefinition; +export const faHandsHelping: IconDefinition; +export const faHandshake: IconDefinition; +export const faHashtag: IconDefinition; +export const faHdd: IconDefinition; +export const faHeading: IconDefinition; +export const faHeadphones: IconDefinition; +export const faHeadphonesAlt: IconDefinition; +export const faHeadset: IconDefinition; +export const faHeart: IconDefinition; +export const faHeartbeat: IconDefinition; +export const faHelicopter: IconDefinition; +export const faHighlighter: IconDefinition; +export const faHistory: IconDefinition; +export const faHockeyPuck: IconDefinition; +export const faHome: IconDefinition; +export const faHospital: IconDefinition; +export const faHospitalAlt: IconDefinition; +export const faHospitalSymbol: IconDefinition; +export const faHotTub: IconDefinition; +export const faHotel: IconDefinition; +export const faHourglass: IconDefinition; +export const faHourglassEnd: IconDefinition; +export const faHourglassHalf: IconDefinition; +export const faHourglassStart: IconDefinition; +export const faICursor: IconDefinition; +export const faIdBadge: IconDefinition; +export const faIdCard: IconDefinition; +export const faIdCardAlt: IconDefinition; +export const faImage: IconDefinition; +export const faImages: IconDefinition; +export const faInbox: IconDefinition; +export const faIndent: IconDefinition; +export const faIndustry: IconDefinition; +export const faInfinity: IconDefinition; +export const faInfo: IconDefinition; +export const faInfoCircle: IconDefinition; +export const faItalic: IconDefinition; +export const faJoint: IconDefinition; +export const faKey: IconDefinition; +export const faKeyboard: IconDefinition; +export const faKiss: IconDefinition; +export const faKissBeam: IconDefinition; +export const faKissWinkHeart: IconDefinition; +export const faKiwiBird: IconDefinition; +export const faLanguage: IconDefinition; +export const faLaptop: IconDefinition; +export const faLaugh: IconDefinition; +export const faLaughBeam: IconDefinition; +export const faLaughSquint: IconDefinition; +export const faLaughWink: IconDefinition; +export const faLeaf: IconDefinition; +export const faLemon: IconDefinition; +export const faLessThan: IconDefinition; +export const faLessThanEqual: IconDefinition; +export const faLevelDownAlt: IconDefinition; +export const faLevelUpAlt: IconDefinition; +export const faLifeRing: IconDefinition; +export const faLightbulb: IconDefinition; +export const faLink: IconDefinition; +export const faLiraSign: IconDefinition; +export const faList: IconDefinition; +export const faListAlt: IconDefinition; +export const faListOl: IconDefinition; +export const faListUl: IconDefinition; +export const faLocationArrow: IconDefinition; +export const faLock: IconDefinition; +export const faLockOpen: IconDefinition; +export const faLongArrowAltDown: IconDefinition; +export const faLongArrowAltLeft: IconDefinition; +export const faLongArrowAltRight: IconDefinition; +export const faLongArrowAltUp: IconDefinition; +export const faLowVision: IconDefinition; +export const faLuggageCart: IconDefinition; +export const faMagic: IconDefinition; +export const faMagnet: IconDefinition; +export const faMale: IconDefinition; +export const faMap: IconDefinition; +export const faMapMarked: IconDefinition; +export const faMapMarkedAlt: IconDefinition; +export const faMapMarker: IconDefinition; +export const faMapMarkerAlt: IconDefinition; +export const faMapPin: IconDefinition; +export const faMapSigns: IconDefinition; +export const faMarker: IconDefinition; +export const faMars: IconDefinition; +export const faMarsDouble: IconDefinition; +export const faMarsStroke: IconDefinition; +export const faMarsStrokeH: IconDefinition; +export const faMarsStrokeV: IconDefinition; +export const faMedal: IconDefinition; +export const faMedkit: IconDefinition; +export const faMeh: IconDefinition; +export const faMehBlank: IconDefinition; +export const faMehRollingEyes: IconDefinition; +export const faMemory: IconDefinition; +export const faMercury: IconDefinition; +export const faMicrochip: IconDefinition; +export const faMicrophone: IconDefinition; +export const faMicrophoneAlt: IconDefinition; +export const faMicrophoneAltSlash: IconDefinition; +export const faMicrophoneSlash: IconDefinition; +export const faMinus: IconDefinition; +export const faMinusCircle: IconDefinition; +export const faMinusSquare: IconDefinition; +export const faMobile: IconDefinition; +export const faMobileAlt: IconDefinition; +export const faMoneyBill: IconDefinition; +export const faMoneyBillAlt: IconDefinition; +export const faMoneyBillWave: IconDefinition; +export const faMoneyBillWaveAlt: IconDefinition; +export const faMoneyCheck: IconDefinition; +export const faMoneyCheckAlt: IconDefinition; +export const faMonument: IconDefinition; +export const faMoon: IconDefinition; +export const faMortarPestle: IconDefinition; +export const faMotorcycle: IconDefinition; +export const faMousePointer: IconDefinition; +export const faMusic: IconDefinition; +export const faNeuter: IconDefinition; +export const faNewspaper: IconDefinition; +export const faNotEqual: IconDefinition; +export const faNotesMedical: IconDefinition; +export const faObjectGroup: IconDefinition; +export const faObjectUngroup: IconDefinition; +export const faOutdent: IconDefinition; +export const faPaintBrush: IconDefinition; +export const faPaintRoller: IconDefinition; +export const faPalette: IconDefinition; +export const faPallet: IconDefinition; +export const faPaperPlane: IconDefinition; +export const faPaperclip: IconDefinition; +export const faParachuteBox: IconDefinition; +export const faParagraph: IconDefinition; +export const faParking: IconDefinition; +export const faPassport: IconDefinition; +export const faPaste: IconDefinition; +export const faPause: IconDefinition; +export const faPauseCircle: IconDefinition; +export const faPaw: IconDefinition; +export const faPen: IconDefinition; +export const faPenAlt: IconDefinition; +export const faPenFancy: IconDefinition; +export const faPenNib: IconDefinition; +export const faPenSquare: IconDefinition; +export const faPencilAlt: IconDefinition; +export const faPencilRuler: IconDefinition; +export const faPeopleCarry: IconDefinition; +export const faPercent: IconDefinition; +export const faPercentage: IconDefinition; +export const faPhone: IconDefinition; +export const faPhoneSlash: IconDefinition; +export const faPhoneSquare: IconDefinition; +export const faPhoneVolume: IconDefinition; +export const faPiggyBank: IconDefinition; +export const faPills: IconDefinition; +export const faPlane: IconDefinition; +export const faPlaneArrival: IconDefinition; +export const faPlaneDeparture: IconDefinition; +export const faPlay: IconDefinition; +export const faPlayCircle: IconDefinition; +export const faPlug: IconDefinition; +export const faPlus: IconDefinition; +export const faPlusCircle: IconDefinition; +export const faPlusSquare: IconDefinition; +export const faPodcast: IconDefinition; +export const faPoo: IconDefinition; +export const faPortrait: IconDefinition; +export const faPoundSign: IconDefinition; +export const faPowerOff: IconDefinition; +export const faPrescription: IconDefinition; +export const faPrescriptionBottle: IconDefinition; +export const faPrescriptionBottleAlt: IconDefinition; +export const faPrint: IconDefinition; +export const faProcedures: IconDefinition; +export const faProjectDiagram: IconDefinition; +export const faPuzzlePiece: IconDefinition; +export const faQrcode: IconDefinition; +export const faQuestion: IconDefinition; +export const faQuestionCircle: IconDefinition; +export const faQuidditch: IconDefinition; +export const faQuoteLeft: IconDefinition; +export const faQuoteRight: IconDefinition; +export const faRandom: IconDefinition; +export const faReceipt: IconDefinition; +export const faRecycle: IconDefinition; +export const faRedo: IconDefinition; +export const faRedoAlt: IconDefinition; +export const faRegistered: IconDefinition; +export const faReply: IconDefinition; +export const faReplyAll: IconDefinition; +export const faRetweet: IconDefinition; +export const faRibbon: IconDefinition; +export const faRoad: IconDefinition; +export const faRobot: IconDefinition; +export const faRocket: IconDefinition; +export const faRss: IconDefinition; +export const faRssSquare: IconDefinition; +export const faRubleSign: IconDefinition; +export const faRuler: IconDefinition; +export const faRulerCombined: IconDefinition; +export const faRulerHorizontal: IconDefinition; +export const faRulerVertical: IconDefinition; +export const faRupeeSign: IconDefinition; +export const faSadCry: IconDefinition; +export const faSadTear: IconDefinition; +export const faSave: IconDefinition; +export const faSchool: IconDefinition; +export const faScrewdriver: IconDefinition; +export const faSearch: IconDefinition; +export const faSearchMinus: IconDefinition; +export const faSearchPlus: IconDefinition; +export const faSeedling: IconDefinition; +export const faServer: IconDefinition; +export const faShare: IconDefinition; +export const faShareAlt: IconDefinition; +export const faShareAltSquare: IconDefinition; +export const faShareSquare: IconDefinition; +export const faShekelSign: IconDefinition; +export const faShieldAlt: IconDefinition; +export const faShip: IconDefinition; +export const faShippingFast: IconDefinition; +export const faShoePrints: IconDefinition; +export const faShoppingBag: IconDefinition; +export const faShoppingBasket: IconDefinition; +export const faShoppingCart: IconDefinition; +export const faShower: IconDefinition; +export const faShuttleVan: IconDefinition; +export const faSign: IconDefinition; +export const faSignInAlt: IconDefinition; +export const faSignLanguage: IconDefinition; +export const faSignOutAlt: IconDefinition; +export const faSignal: IconDefinition; +export const faSignature: IconDefinition; +export const faSitemap: IconDefinition; +export const faSkull: IconDefinition; +export const faSlidersH: IconDefinition; +export const faSmile: IconDefinition; +export const faSmileBeam: IconDefinition; +export const faSmileWink: IconDefinition; +export const faSmoking: IconDefinition; +export const faSmokingBan: IconDefinition; +export const faSnowflake: IconDefinition; +export const faSolarPanel: IconDefinition; +export const faSort: IconDefinition; +export const faSortAlphaDown: IconDefinition; +export const faSortAlphaUp: IconDefinition; +export const faSortAmountDown: IconDefinition; +export const faSortAmountUp: IconDefinition; +export const faSortDown: IconDefinition; +export const faSortNumericDown: IconDefinition; +export const faSortNumericUp: IconDefinition; +export const faSortUp: IconDefinition; +export const faSpa: IconDefinition; +export const faSpaceShuttle: IconDefinition; +export const faSpinner: IconDefinition; +export const faSplotch: IconDefinition; +export const faSprayCan: IconDefinition; +export const faSquare: IconDefinition; +export const faSquareFull: IconDefinition; +export const faStamp: IconDefinition; +export const faStar: IconDefinition; +export const faStarHalf: IconDefinition; +export const faStarHalfAlt: IconDefinition; +export const faStepBackward: IconDefinition; +export const faStepForward: IconDefinition; +export const faStethoscope: IconDefinition; +export const faStickyNote: IconDefinition; +export const faStop: IconDefinition; +export const faStopCircle: IconDefinition; +export const faStopwatch: IconDefinition; +export const faStore: IconDefinition; +export const faStoreAlt: IconDefinition; +export const faStream: IconDefinition; +export const faStreetView: IconDefinition; +export const faStrikethrough: IconDefinition; +export const faStroopwafel: IconDefinition; +export const faSubscript: IconDefinition; +export const faSubway: IconDefinition; +export const faSuitcase: IconDefinition; +export const faSuitcaseRolling: IconDefinition; +export const faSun: IconDefinition; +export const faSuperscript: IconDefinition; +export const faSurprise: IconDefinition; +export const faSwatchbook: IconDefinition; +export const faSwimmer: IconDefinition; +export const faSwimmingPool: IconDefinition; +export const faSync: IconDefinition; +export const faSyncAlt: IconDefinition; +export const faSyringe: IconDefinition; +export const faTable: IconDefinition; +export const faTableTennis: IconDefinition; +export const faTablet: IconDefinition; +export const faTabletAlt: IconDefinition; +export const faTablets: IconDefinition; +export const faTachometerAlt: IconDefinition; +export const faTag: IconDefinition; +export const faTags: IconDefinition; +export const faTape: IconDefinition; +export const faTasks: IconDefinition; +export const faTaxi: IconDefinition; +export const faTerminal: IconDefinition; +export const faTextHeight: IconDefinition; +export const faTextWidth: IconDefinition; +export const faTh: IconDefinition; +export const faThLarge: IconDefinition; +export const faThList: IconDefinition; +export const faThermometer: IconDefinition; +export const faThermometerEmpty: IconDefinition; +export const faThermometerFull: IconDefinition; +export const faThermometerHalf: IconDefinition; +export const faThermometerQuarter: IconDefinition; +export const faThermometerThreeQuarters: IconDefinition; +export const faThumbsDown: IconDefinition; +export const faThumbsUp: IconDefinition; +export const faThumbtack: IconDefinition; +export const faTicketAlt: IconDefinition; +export const faTimes: IconDefinition; +export const faTimesCircle: IconDefinition; +export const faTint: IconDefinition; +export const faTintSlash: IconDefinition; +export const faTired: IconDefinition; +export const faToggleOff: IconDefinition; +export const faToggleOn: IconDefinition; +export const faToolbox: IconDefinition; +export const faTooth: IconDefinition; +export const faTrademark: IconDefinition; +export const faTrain: IconDefinition; +export const faTransgender: IconDefinition; +export const faTransgenderAlt: IconDefinition; +export const faTrash: IconDefinition; +export const faTrashAlt: IconDefinition; +export const faTree: IconDefinition; +export const faTrophy: IconDefinition; +export const faTruck: IconDefinition; +export const faTruckLoading: IconDefinition; +export const faTruckMoving: IconDefinition; +export const faTshirt: IconDefinition; +export const faTty: IconDefinition; +export const faTv: IconDefinition; +export const faUmbrella: IconDefinition; +export const faUmbrellaBeach: IconDefinition; +export const faUnderline: IconDefinition; +export const faUndo: IconDefinition; +export const faUndoAlt: IconDefinition; +export const faUniversalAccess: IconDefinition; +export const faUniversity: IconDefinition; +export const faUnlink: IconDefinition; +export const faUnlock: IconDefinition; +export const faUnlockAlt: IconDefinition; +export const faUpload: IconDefinition; +export const faUser: IconDefinition; +export const faUserAlt: IconDefinition; +export const faUserAltSlash: IconDefinition; +export const faUserAstronaut: IconDefinition; +export const faUserCheck: IconDefinition; +export const faUserCircle: IconDefinition; +export const faUserClock: IconDefinition; +export const faUserCog: IconDefinition; +export const faUserEdit: IconDefinition; +export const faUserFriends: IconDefinition; +export const faUserGraduate: IconDefinition; +export const faUserLock: IconDefinition; +export const faUserMd: IconDefinition; +export const faUserMinus: IconDefinition; +export const faUserNinja: IconDefinition; +export const faUserPlus: IconDefinition; +export const faUserSecret: IconDefinition; +export const faUserShield: IconDefinition; +export const faUserSlash: IconDefinition; +export const faUserTag: IconDefinition; +export const faUserTie: IconDefinition; +export const faUserTimes: IconDefinition; +export const faUsers: IconDefinition; +export const faUsersCog: IconDefinition; +export const faUtensilSpoon: IconDefinition; +export const faUtensils: IconDefinition; +export const faVectorSquare: IconDefinition; +export const faVenus: IconDefinition; +export const faVenusDouble: IconDefinition; +export const faVenusMars: IconDefinition; +export const faVial: IconDefinition; +export const faVials: IconDefinition; +export const faVideo: IconDefinition; +export const faVideoSlash: IconDefinition; +export const faVolleyballBall: IconDefinition; +export const faVolumeDown: IconDefinition; +export const faVolumeOff: IconDefinition; +export const faVolumeUp: IconDefinition; +export const faWalking: IconDefinition; +export const faWallet: IconDefinition; +export const faWarehouse: IconDefinition; +export const faWeight: IconDefinition; +export const faWeightHanging: IconDefinition; +export const faWheelchair: IconDefinition; +export const faWifi: IconDefinition; +export const faWindowClose: IconDefinition; +export const faWindowMaximize: IconDefinition; +export const faWindowMinimize: IconDefinition; +export const faWindowRestore: IconDefinition; +export const faWineGlass: IconDefinition; +export const faWineGlassAlt: IconDefinition; +export const faWonSign: IconDefinition; +export const faWrench: IconDefinition; +export const faXRay: IconDefinition; +export const faYenSign: IconDefinition; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/index.es.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/index.es.js new file mode 100644 index 0000000000..8d38bf2dd4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/index.es.js @@ -0,0 +1,1489 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +var prefix = "fas"; +var faAddressBook = { prefix: 'fas', iconName: 'address-book', icon: [448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"] }; +var faAddressCard = { prefix: 'fas', iconName: 'address-card', icon: [576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-352 96c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H86.4C74 384 64 375.4 64 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2zM512 312c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z"] }; +var faAdjust = { prefix: 'fas', iconName: 'adjust', icon: [512, 512, [], "f042", "M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z"] }; +var faAlignCenter = { prefix: 'fas', iconName: 'align-center', icon: [448, 512, [], "f037", "M352 44v40c0 8.837-7.163 16-16 16H112c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h224c8.837 0 16 7.163 16 16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm320-200H112c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z"] }; +var faAlignJustify = { prefix: 'fas', iconName: 'align-justify', icon: [448, 512, [], "f039", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm16 144h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0-128h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faAlignLeft = { prefix: 'fas', iconName: 'align-left', icon: [448, 512, [], "f036", "M288 44v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16zM0 172v40c0 8.837 7.163 16 16 16h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16zm16 312h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm256-200H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z"] }; +var faAlignRight = { prefix: 'fas', iconName: 'align-right', icon: [448, 512, [], "f038", "M160 84V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H176c-8.837 0-16-7.163-16-16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faAllergies = { prefix: 'fas', iconName: 'allergies', icon: [448, 512, [], "f461", "M416 112c-17.6 0-32 14.4-32 32v72c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v152c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V32c0-17.6-14.4-32-32-32s-32 14.4-32 32v184c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32S96 46.4 96 64v241l-23.6-32.5c-13-17.9-38-21.8-55.9-8.8s-21.8 38-8.8 55.9l125.6 172.7c9 12.4 23.5 19.8 38.8 19.8h197.6c22.3 0 41.6-15.3 46.7-37l26.5-112.7c3.2-13.7 4.9-28.3 5.1-42.3V144c0-17.6-14.4-32-32-32zM176 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 32c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32-128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"] }; +var faAmbulance = { prefix: 'fas', iconName: 'ambulance', icon: [640, 512, [], "f0f9", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm144-248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm176 248c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"] }; +var faAmericanSignLanguageInterpreting = { prefix: 'fas', iconName: 'american-sign-language-interpreting', icon: [640, 512, [], "f2a3", "M290.547 189.039c-20.295-10.149-44.147-11.199-64.739-3.89 42.606 0 71.208 20.475 85.578 50.576 8.576 17.899-5.148 38.071-23.617 38.071 18.429 0 32.211 20.136 23.617 38.071-14.725 30.846-46.123 50.854-80.298 50.854-.557 0-94.471-8.615-94.471-8.615l-66.406 33.347c-9.384 4.693-19.815.379-23.895-7.781L1.86 290.747c-4.167-8.615-1.111-18.897 6.946-23.621l58.072-33.069L108 159.861c6.39-57.245 34.731-109.767 79.743-146.726 11.391-9.448 28.341-7.781 37.51 3.613 9.446 11.394 7.78 28.067-3.612 37.516-12.503 10.559-23.618 22.509-32.509 35.57 21.672-14.729 46.679-24.732 74.186-28.067 14.725-1.945 28.063 8.336 29.73 23.065 1.945 14.728-8.336 28.067-23.062 29.734-16.116 1.945-31.12 7.503-44.178 15.284 26.114-5.713 58.712-3.138 88.079 11.115 13.336 6.669 18.893 22.509 12.224 35.848-6.389 13.06-22.504 18.617-35.564 12.226zm-27.229 69.472c-6.112-12.505-18.338-20.286-32.231-20.286a35.46 35.46 0 0 0-35.565 35.57c0 21.428 17.808 35.57 35.565 35.57 13.893 0 26.119-7.781 32.231-20.286 4.446-9.449 13.614-15.006 23.339-15.284-9.725-.277-18.893-5.835-23.339-15.284zm374.821-37.237c4.168 8.615 1.111 18.897-6.946 23.621l-58.071 33.069L532 352.16c-6.39 57.245-34.731 109.767-79.743 146.726-10.932 9.112-27.799 8.144-37.51-3.613-9.446-11.394-7.78-28.067 3.613-37.516 12.503-10.559 23.617-22.509 32.508-35.57-21.672 14.729-46.679 24.732-74.186 28.067-10.021 2.506-27.552-5.643-29.73-23.065-1.945-14.728 8.336-28.067 23.062-29.734 16.116-1.946 31.12-7.503 44.178-15.284-26.114 5.713-58.712 3.138-88.079-11.115-13.336-6.669-18.893-22.509-12.224-35.848 6.389-13.061 22.505-18.619 35.565-12.227 20.295 10.149 44.147 11.199 64.739 3.89-42.606 0-71.208-20.475-85.578-50.576-8.576-17.899 5.148-38.071 23.617-38.071-18.429 0-32.211-20.136-23.617-38.071 14.033-29.396 44.039-50.887 81.966-50.854l92.803 8.615 66.406-33.347c9.408-4.704 19.828-.354 23.894 7.781l44.455 88.926zm-229.227-18.618c-13.893 0-26.119 7.781-32.231 20.286-4.446 9.449-13.614 15.006-23.339 15.284 9.725.278 18.893 5.836 23.339 15.284 6.112 12.505 18.338 20.286 32.231 20.286a35.46 35.46 0 0 0 35.565-35.57c0-21.429-17.808-35.57-35.565-35.57z"] }; +var faAnchor = { prefix: 'fas', iconName: 'anchor', icon: [576, 512, [], "f13d", "M12.971 352h32.394C67.172 454.735 181.944 512 288 512c106.229 0 220.853-57.38 242.635-160h32.394c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0l-67.029 67.029c-7.56 7.56-2.206 20.485 8.485 20.485h35.146c-20.29 54.317-84.963 86.588-144.117 94.015V256h52c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-52v-5.47c37.281-13.178 63.995-48.725 64-90.518C384.005 43.772 341.605.738 289.37.01 235.723-.739 192 42.525 192 96c0 41.798 26.716 77.35 64 90.53V192h-52c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v190.015c-58.936-7.399-123.82-39.679-144.117-94.015h35.146c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0L4.485 331.515C-3.074 339.074 2.28 352 12.971 352zM288 64c17.645 0 32 14.355 32 32s-14.355 32-32 32-32-14.355-32-32 14.355-32 32-32z"] }; +var faAngleDoubleDown = { prefix: 'fas', iconName: 'angle-double-down', icon: [320, 512, [], "f103", "M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z"] }; +var faAngleDoubleLeft = { prefix: 'fas', iconName: 'angle-double-left', icon: [448, 512, [], "f100", "M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z"] }; +var faAngleDoubleRight = { prefix: 'fas', iconName: 'angle-double-right', icon: [448, 512, [], "f101", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z"] }; +var faAngleDoubleUp = { prefix: 'fas', iconName: 'angle-double-up', icon: [320, 512, [], "f102", "M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z"] }; +var faAngleDown = { prefix: 'fas', iconName: 'angle-down', icon: [320, 512, [], "f107", "M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"] }; +var faAngleLeft = { prefix: 'fas', iconName: 'angle-left', icon: [256, 512, [], "f104", "M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"] }; +var faAngleRight = { prefix: 'fas', iconName: 'angle-right', icon: [256, 512, [], "f105", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"] }; +var faAngleUp = { prefix: 'fas', iconName: 'angle-up', icon: [320, 512, [], "f106", "M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z"] }; +var faAngry = { prefix: 'fas', iconName: 'angry', icon: [496, 512, [], "f556", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 240c0-9.3 4.1-17.5 10.5-23.4l-31-9.3c-8.5-2.5-13.3-11.5-10.7-19.9 2.5-8.5 11.4-13.2 19.9-10.7l80 24c8.5 2.5 13.3 11.5 10.7 19.9-2.1 6.9-8.4 11.4-15.3 11.4-.5 0-1.1-.2-1.7-.2.7 2.7 1.7 5.3 1.7 8.2 0 17.7-14.3 32-32 32S136 257.7 136 240zm168 154.2c-27.8-33.4-84.2-33.4-112.1 0-13.5 16.3-38.2-4.2-24.6-20.5 20-24 49.4-37.8 80.6-37.8s60.6 13.8 80.6 37.8c13.8 16.5-11.1 36.6-24.5 20.5zm76.6-186.9l-31 9.3c6.3 5.8 10.5 14.1 10.5 23.4 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-2.9.9-5.6 1.7-8.2-.6.1-1.1.2-1.7.2-6.9 0-13.2-4.5-15.3-11.4-2.5-8.5 2.3-17.4 10.7-19.9l80-24c8.4-2.5 17.4 2.3 19.9 10.7 2.5 8.5-2.3 17.4-10.8 19.9z"] }; +var faArchive = { prefix: 'fas', iconName: 'archive', icon: [512, 512, [], "f187", "M32 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160H32v288zm160-212c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v8c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-8zM480 32H32C14.3 32 0 46.3 0 64v48c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16V64c0-17.7-14.3-32-32-32z"] }; +var faArchway = { prefix: 'fas', iconName: 'archway', icon: [576, 512, [], "f557", "M560 448h-16V96H32v352H16.02c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16H176c8.84 0 16-7.16 16-16V320c0-53.02 42.98-96 96-96s96 42.98 96 96l.02 160v16c0 8.84 7.16 16 16 16H560c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm0-448H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h544c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16z"] }; +var faArrowAltCircleDown = { prefix: 'fas', iconName: 'arrow-alt-circle-down', icon: [512, 512, [], "f358", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM212 140v116h-70.9c-10.7 0-16.1 13-8.5 20.5l114.9 114.3c4.7 4.7 12.2 4.7 16.9 0l114.9-114.3c7.6-7.6 2.2-20.5-8.5-20.5H300V140c0-6.6-5.4-12-12-12h-64c-6.6 0-12 5.4-12 12z"] }; +var faArrowAltCircleLeft = { prefix: 'fas', iconName: 'arrow-alt-circle-left', icon: [512, 512, [], "f359", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z"] }; +var faArrowAltCircleRight = { prefix: 'fas', iconName: 'arrow-alt-circle-right', icon: [512, 512, [], "f35a", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z"] }; +var faArrowAltCircleUp = { prefix: 'fas', iconName: 'arrow-alt-circle-up', icon: [512, 512, [], "f35b", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm292 116V256h70.9c10.7 0 16.1-13 8.5-20.5L264.5 121.2c-4.7-4.7-12.2-4.7-16.9 0l-115 114.3c-7.6 7.6-2.2 20.5 8.5 20.5H212v116c0 6.6 5.4 12 12 12h64c6.6 0 12-5.4 12-12z"] }; +var faArrowCircleDown = { prefix: 'fas', iconName: 'arrow-circle-down', icon: [512, 512, [], "f0ab", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-143.6-28.9L288 302.6V120c0-13.3-10.7-24-24-24h-16c-13.3 0-24 10.7-24 24v182.6l-72.4-75.5c-9.3-9.7-24.8-9.9-34.3-.4l-10.9 11c-9.4 9.4-9.4 24.6 0 33.9L239 404.3c9.4 9.4 24.6 9.4 33.9 0l132.7-132.7c9.4-9.4 9.4-24.6 0-33.9l-10.9-11c-9.5-9.5-25-9.3-34.3.4z"] }; +var faArrowCircleLeft = { prefix: 'fas', iconName: 'arrow-circle-left', icon: [512, 512, [], "f0a8", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm28.9-143.6L209.4 288H392c13.3 0 24-10.7 24-24v-16c0-13.3-10.7-24-24-24H209.4l75.5-72.4c9.7-9.3 9.9-24.8.4-34.3l-11-10.9c-9.4-9.4-24.6-9.4-33.9 0L107.7 239c-9.4 9.4-9.4 24.6 0 33.9l132.7 132.7c9.4 9.4 24.6 9.4 33.9 0l11-10.9c9.5-9.5 9.3-25-.4-34.3z"] }; +var faArrowCircleRight = { prefix: 'fas', iconName: 'arrow-circle-right', icon: [512, 512, [], "f0a9", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28.9 143.6l75.5 72.4H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h182.6l-75.5 72.4c-9.7 9.3-9.9 24.8-.4 34.3l11 10.9c9.4 9.4 24.6 9.4 33.9 0L404.3 273c9.4-9.4 9.4-24.6 0-33.9L271.6 106.3c-9.4-9.4-24.6-9.4-33.9 0l-11 10.9c-9.5 9.6-9.3 25.1.4 34.4z"] }; +var faArrowCircleUp = { prefix: 'fas', iconName: 'arrow-circle-up', icon: [512, 512, [], "f0aa", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z"] }; +var faArrowDown = { prefix: 'fas', iconName: 'arrow-down', icon: [448, 512, [], "f063", "M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z"] }; +var faArrowLeft = { prefix: 'fas', iconName: 'arrow-left', icon: [448, 512, [], "f060", "M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z"] }; +var faArrowRight = { prefix: 'fas', iconName: 'arrow-right', icon: [448, 512, [], "f061", "M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z"] }; +var faArrowUp = { prefix: 'fas', iconName: 'arrow-up', icon: [448, 512, [], "f062", "M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z"] }; +var faArrowsAlt = { prefix: 'fas', iconName: 'arrows-alt', icon: [512, 512, [], "f0b2", "M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z"] }; +var faArrowsAltH = { prefix: 'fas', iconName: 'arrows-alt-h', icon: [512, 512, [], "f337", "M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z"] }; +var faArrowsAltV = { prefix: 'fas', iconName: 'arrows-alt-v', icon: [256, 512, [], "f338", "M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z"] }; +var faAssistiveListeningSystems = { prefix: 'fas', iconName: 'assistive-listening-systems', icon: [512, 512, [], "f2a2", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z"] }; +var faAsterisk = { prefix: 'fas', iconName: 'asterisk', icon: [512, 512, [], "f069", "M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z"] }; +var faAt = { prefix: 'fas', iconName: 'at', icon: [512, 512, [], "f1fa", "M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z"] }; +var faAtlas = { prefix: 'fas', iconName: 'atlas', icon: [448, 512, [], "f558", "M318.38 208h-39.09c-1.49 27.03-6.54 51.35-14.21 70.41 27.71-13.24 48.02-39.19 53.3-70.41zm0-32c-5.29-31.22-25.59-57.17-53.3-70.41 7.68 19.06 12.72 43.38 14.21 70.41h39.09zM224 97.31c-7.69 7.45-20.77 34.42-23.43 78.69h46.87c-2.67-44.26-15.75-71.24-23.44-78.69zm-41.08 8.28c-27.71 13.24-48.02 39.19-53.3 70.41h39.09c1.49-27.03 6.53-51.35 14.21-70.41zm0 172.82c-7.68-19.06-12.72-43.38-14.21-70.41h-39.09c5.28 31.22 25.59 57.17 53.3 70.41zM247.43 208h-46.87c2.66 44.26 15.74 71.24 23.43 78.69 7.7-7.45 20.78-34.43 23.44-78.69zM448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM224 64c70.69 0 128 57.31 128 128s-57.31 128-128 128S96 262.69 96 192 153.31 64 224 64zm160 384H96c-19.2 0-32-12.8-32-32s16-32 32-32h288v64z"] }; +var faAudioDescription = { prefix: 'fas', iconName: 'audio-description', icon: [512, 512, [], "f29e", "M162.925 238.709l8.822 30.655h-25.606l9.041-30.652c1.277-4.421 2.651-9.994 3.872-15.245 1.22 5.251 2.594 10.823 3.871 15.242zm166.474-32.099h-14.523v98.781h14.523c29.776 0 46.175-17.678 46.175-49.776 0-32.239-17.49-49.005-46.175-49.005zM512 112v288c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48zM245.459 336.139l-57.097-168A12.001 12.001 0 0 0 177 160h-35.894a12.001 12.001 0 0 0-11.362 8.139l-57.097 168C70.003 343.922 75.789 352 84.009 352h29.133a12 12 0 0 0 11.535-8.693l8.574-29.906h51.367l8.793 29.977A12 12 0 0 0 204.926 352h29.172c8.22 0 14.006-8.078 11.361-15.861zm184.701-80.525c0-58.977-37.919-95.614-98.96-95.614h-57.366c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12H331.2c61.041 0 98.96-36.933 98.96-96.386z"] }; +var faAward = { prefix: 'fas', iconName: 'award', icon: [384, 512, [], "f559", "M97.12 362.63l-5.3-5.3a9.004 9.004 0 0 0-4.02-2.32L72 350.77c-9.51-2.55-17.87-7.45-25.43-13.32L1.2 448.7c-4.39 10.77 3.81 22.47 15.43 22.03l52.69-2.01L105.56 507c8 8.44 22.04 5.81 26.43-4.96l52.05-127.62c-10.84 6.04-22.87 9.58-35.31 9.58-19.5 0-37.82-7.59-51.61-21.37zM382.8 448.7l-45.37-111.24c-7.56 5.88-15.92 10.77-25.43 13.32l-15.8 4.23a9.004 9.004 0 0 0-4.02 2.32l-5.3 5.3C273.09 376.41 254.76 384 235.26 384c-12.44 0-24.47-3.55-35.31-9.58L252 502.04c4.39 10.77 18.44 13.4 26.43 4.96l36.25-38.28 52.69 2.01c11.62.44 19.82-11.27 15.43-22.03zM263 340l5.21-5.3c5-5.09 11.22-8.75 18.05-10.61l15.53-4.23c13.89-3.79 24.75-14.84 28.47-28.98l4.16-15.81a41.145 41.145 0 0 1 10.42-18.37l11.37-11.57c10.17-10.35 14.14-25.44 10.42-39.58l-4.16-15.81a41.657 41.657 0 0 1 0-21.21l4.16-15.81c3.72-14.14-.25-29.23-10.42-39.58l-11.37-11.57c-5-5.09-8.59-11.42-10.42-18.37l-4.16-15.8c-3.72-14.14-14.58-25.19-28.47-28.98l-15.53-4.24c-6.83-1.86-13.05-5.52-18.05-10.61L256.84 12c-10.17-10.35-25-14.4-38.89-10.61l-15.53 4.24a39.614 39.614 0 0 1-20.84 0L166.05 1.4c-13.89-3.79-28.72.25-38.89 10.61l-11.37 11.57c-5 5.09-11.22 8.74-18.05 10.61l-15.53 4.24c-13.89 3.79-24.75 14.84-28.47 28.98l-4.16 15.8a41.145 41.145 0 0 1-10.42 18.37l-11.37 11.57c-10.17 10.35-14.15 25.44-10.42 39.58l4.16 15.8a41.657 41.657 0 0 1 0 21.21l-4.16 15.8c-3.72 14.14.25 29.23 10.42 39.59l11.37 11.57c5 5.09 8.59 11.42 10.42 18.37l4.16 15.8c3.72 14.14 14.58 25.19 28.47 28.98l15.53 4.23c6.83 1.86 13.05 5.52 18.05 10.61L121 340c13.23 13.47 33.84 15.88 49.74 5.82a39.676 39.676 0 0 1 42.53 0c15.89 10.06 36.5 7.65 49.73-5.82zM97.66 175.96c0-53.03 42.24-96.02 94.34-96.02s94.34 42.99 94.34 96.02-42.24 96.02-94.34 96.02-94.34-42.99-94.34-96.02z"] }; +var faBackspace = { prefix: 'fas', iconName: 'backspace', icon: [640, 512, [], "f55a", "M576 64H205.26A63.97 63.97 0 0 0 160 82.75L9.37 233.37c-12.5 12.5-12.5 32.76 0 45.25L160 429.25c12 12 28.28 18.75 45.25 18.75H576c35.35 0 64-28.65 64-64V128c0-35.35-28.65-64-64-64zm-84.69 254.06c6.25 6.25 6.25 16.38 0 22.63l-22.62 22.62c-6.25 6.25-16.38 6.25-22.63 0L384 301.25l-62.06 62.06c-6.25 6.25-16.38 6.25-22.63 0l-22.62-22.62c-6.25-6.25-6.25-16.38 0-22.63L338.75 256l-62.06-62.06c-6.25-6.25-6.25-16.38 0-22.63l22.62-22.62c6.25-6.25 16.38-6.25 22.63 0L384 210.75l62.06-62.06c6.25-6.25 16.38-6.25 22.63 0l22.62 22.62c6.25 6.25 6.25 16.38 0 22.63L429.25 256l62.06 62.06z"] }; +var faBackward = { prefix: 'fas', iconName: 'backward', icon: [512, 512, [], "f04a", "M11.5 280.6l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2zm256 0l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2z"] }; +var faBalanceScale = { prefix: 'fas', iconName: 'balance-scale', icon: [640, 512, [], "f24e", "M256 336h-.02c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0C-2.06 328.75.02 320.33.02 336H0c0 44.18 57.31 80 128 80s128-35.82 128-80zM128 176l72 144H56l72-144zm511.98 160c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 320l72-144 72 144H440zm88 128H352V153.25c23.51-10.29 41.16-31.48 46.39-57.25H528c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H383.64C369.04 12.68 346.09 0 320 0s-49.04 12.68-63.64 32H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h129.61c5.23 25.76 22.87 46.96 46.39 57.25V448H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"] }; +var faBan = { prefix: 'fas', iconName: 'ban', icon: [512, 512, [], "f05e", "M256 8C119.034 8 8 119.033 8 256s111.034 248 248 248 248-111.034 248-248S392.967 8 256 8zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676zM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676z"] }; +var faBandAid = { prefix: 'fas', iconName: 'band-aid', icon: [640, 512, [], "f462", "M0 160v192c0 35.3 28.7 64 64 64h96V96H64c-35.3 0-64 28.7-64 64zm576-64h-96v320h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64zM192 416h256V96H192v320zm176-232c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24z"] }; +var faBarcode = { prefix: 'fas', iconName: 'barcode', icon: [512, 512, [], "f02a", "M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z"] }; +var faBars = { prefix: 'fas', iconName: 'bars', icon: [448, 512, [], "f0c9", "M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faBaseballBall = { prefix: 'fas', iconName: 'baseball-ball', icon: [496, 512, [], "f433", "M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z"] }; +var faBasketballBall = { prefix: 'fas', iconName: 'basketball-ball', icon: [496, 512, [], "f434", "M212.3 10.3c-43.8 6.3-86.2 24.1-122.2 53.8l77.4 77.4c27.8-35.8 43.3-81.2 44.8-131.2zM248 222L405.9 64.1c-42.4-35-93.6-53.5-145.5-56.1-1.2 63.9-21.5 122.3-58.7 167.7L248 222zM56.1 98.1c-29.7 36-47.5 78.4-53.8 122.2 50-1.5 95.5-17 131.2-44.8L56.1 98.1zm272.2 204.2c45.3-37.1 103.7-57.4 167.7-58.7-2.6-51.9-21.1-103.1-56.1-145.5L282 256l46.3 46.3zM248 290L90.1 447.9c42.4 34.9 93.6 53.5 145.5 56.1 1.3-64 21.6-122.4 58.7-167.7L248 290zm191.9 123.9c29.7-36 47.5-78.4 53.8-122.2-50.1 1.6-95.5 17.1-131.2 44.8l77.4 77.4zM167.7 209.7C122.3 246.9 63.9 267.3 0 268.4c2.6 51.9 21.1 103.1 56.1 145.5L214 256l-46.3-46.3zm116 292c43.8-6.3 86.2-24.1 122.2-53.8l-77.4-77.4c-27.7 35.7-43.2 81.2-44.8 131.2z"] }; +var faBath = { prefix: 'fas', iconName: 'bath', icon: [512, 512, [], "f2cd", "M488 256H80V112c0-17.645 14.355-32 32-32 11.351 0 21.332 5.945 27.015 14.88-16.492 25.207-14.687 59.576 6.838 83.035-4.176 4.713-4.021 11.916.491 16.428l11.314 11.314c4.686 4.686 12.284 4.686 16.971 0l95.03-95.029c4.686-4.686 4.686-12.284 0-16.971l-11.314-11.314c-4.512-4.512-11.715-4.666-16.428-.491-17.949-16.469-42.294-21.429-64.178-15.365C163.281 45.667 139.212 32 112 32c-44.112 0-80 35.888-80 80v144h-8c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h8v32c0 28.43 12.362 53.969 32 71.547V456c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-8h256v8c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-32.453c19.638-17.578 32-43.117 32-71.547v-32h8c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z"] }; +var faBatteryEmpty = { prefix: 'fas', iconName: 'battery-empty', icon: [640, 512, [], "f244", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48z"] }; +var faBatteryFull = { prefix: 'fas', iconName: 'battery-full', icon: [640, 512, [], "f240", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-48 96H96v128h416V192z"] }; +var faBatteryHalf = { prefix: 'fas', iconName: 'battery-half', icon: [640, 512, [], "f242", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-240 96H96v128h224V192z"] }; +var faBatteryQuarter = { prefix: 'fas', iconName: 'battery-quarter', icon: [640, 512, [], "f243", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-336 96H96v128h128V192z"] }; +var faBatteryThreeQuarters = { prefix: 'fas', iconName: 'battery-three-quarters', icon: [640, 512, [], "f241", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-144 96H96v128h320V192z"] }; +var faBed = { prefix: 'fas', iconName: 'bed', icon: [640, 512, [], "f236", "M176 256c44.11 0 80-35.89 80-80s-35.89-80-80-80-80 35.89-80 80 35.89 80 80 80zm352-128H304c-8.84 0-16 7.16-16 16v144H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v352c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h512v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V240c0-61.86-50.14-112-112-112z"] }; +var faBeer = { prefix: 'fas', iconName: 'beer', icon: [448, 512, [], "f0fc", "M368 96h-48V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24v-42.11l80.606-35.977C429.396 365.063 448 336.388 448 304.86V176c0-44.112-35.888-80-80-80zm16 208.86a16.018 16.018 0 0 1-9.479 14.611L320 343.805V160h48c8.822 0 16 7.178 16 16v128.86zM208 384c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16zm-96 0c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16z"] }; +var faBell = { prefix: 'fas', iconName: 'bell', icon: [448, 512, [], "f0f3", "M433.884 366.059C411.634 343.809 384 316.118 384 208c0-79.394-57.831-145.269-133.663-157.83A31.845 31.845 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 6.75 2.095 13.008 5.663 18.17C121.831 62.731 64 128.606 64 208c0 108.118-27.643 135.809-49.893 158.059C-16.042 396.208 5.325 448 48.048 448H160c0 35.346 28.654 64 64 64s64-28.654 64-64h111.943c42.638 0 64.151-51.731 33.941-81.941zM224 472a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16c0 13.234 10.766 24 24 24z"] }; +var faBellSlash = { prefix: 'fas', iconName: 'bell-slash', icon: [576, 512, [], "f1f6", "M78.107 366.059C47.958 396.208 69.325 448 112.048 448H224c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h32.685L127.848 221.379c-2.198 97.078-28.439 123.378-49.741 144.68zM264 448c0 13.234 10.766 24 24 24a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16zm305.896 43.733l-10.762 12.086c-8.915 10.012-24.333 10.967-34.437 2.133L8.256 54.393C-1.848 45.558-2.811 30.28 6.104 20.267L16.865 8.181C25.781-1.831 41.199-2.786 51.303 6.049l113.81 99.512c24.017-28.778 57.946-48.996 96.55-55.39A31.85 31.85 0 0 1 256 32c0-17.673 14.327-32 32-32s32 14.327 32 32c0 6.75-2.095 13.008-5.663 18.17C390.169 62.731 448 128.606 448 208c0 108.118 27.634 135.809 49.884 158.059 12.149 12.149 15.923 27.776 13.33 42.121l56.53 49.427c10.104 8.835 11.067 24.113 2.152 34.126z"] }; +var faBezierCurve = { prefix: 'fas', iconName: 'bezier-curve', icon: [640, 512, [], "f55b", "M368 32h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM208 88h-84.75C113.75 64.56 90.84 48 64 48 28.66 48 0 76.65 0 112s28.66 64 64 64c26.84 0 49.75-16.56 59.25-40h79.73c-55.37 32.52-95.86 87.32-109.54 152h49.4c11.3-41.61 36.77-77.21 71.04-101.56-3.7-8.08-5.88-16.99-5.88-26.44V88zm-48 232H64c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zM576 48c-26.84 0-49.75 16.56-59.25 40H432v72c0 9.45-2.19 18.36-5.88 26.44 34.27 24.35 59.74 59.95 71.04 101.56h49.4c-13.68-64.68-54.17-119.48-109.54-152h79.73c9.5 23.44 32.41 40 59.25 40 35.34 0 64-28.65 64-64s-28.66-64-64-64zm0 272h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"] }; +var faBicycle = { prefix: 'fas', iconName: 'bicycle', icon: [640, 512, [], "f206", "M512.509 192.001c-16.373-.064-32.03 2.955-46.436 8.495l-77.68-125.153A24 24 0 0 0 368.001 64h-64c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h50.649l14.896 24H256.002v-16c0-8.837-7.163-16-16-16h-87.459c-13.441 0-24.777 10.999-24.536 24.437.232 13.044 10.876 23.563 23.995 23.563h48.726l-29.417 47.52c-13.433-4.83-27.904-7.483-42.992-7.52C58.094 191.83.412 249.012.002 319.236-.413 390.279 57.055 448 128.002 448c59.642 0 109.758-40.793 123.967-96h52.033a24 24 0 0 0 20.406-11.367L410.37 201.77l14.938 24.067c-25.455 23.448-41.385 57.081-41.307 94.437.145 68.833 57.899 127.051 126.729 127.719 70.606.685 128.181-55.803 129.255-125.996 1.086-70.941-56.526-129.72-127.476-129.996zM186.75 265.772c9.727 10.529 16.673 23.661 19.642 38.228h-43.306l23.664-38.228zM128.002 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c5.869 0 11.586.653 17.099 1.859l-45.505 73.509C89.715 331.327 101.213 352 120.002 352h81.3c-12.37 28.225-40.562 48-73.3 48zm162.63-96h-35.624c-3.96-31.756-19.556-59.894-42.383-80.026L237.371 184h127.547l-74.286 120zm217.057 95.886c-41.036-2.165-74.049-35.692-75.627-76.755-.812-21.121 6.633-40.518 19.335-55.263l44.433 71.586c4.66 7.508 14.524 9.816 22.032 5.156l13.594-8.437c7.508-4.66 9.817-14.524 5.156-22.032l-44.468-71.643a79.901 79.901 0 0 1 19.858-2.497c44.112 0 80 35.888 80 80-.001 45.54-38.252 82.316-84.313 79.885z"] }; +var faBinoculars = { prefix: 'fas', iconName: 'binoculars', icon: [512, 512, [], "f1e5", "M192 104H96V56c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24v48zm224-48c0-13.255-10.745-24-24-24h-48c-13.255 0-24 10.745-24 24v48h96V56zM0 456c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H0v16zm88-328c-13.255 0-24 10.745-24 24C64 256 0 272 0 416h168V312c0-13.255 10.745-24 24-24V128H88zm256 328c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H344v16zM216 128v160h80V128h-80zm128 288h168c0-144-64-160-64-264 0-13.255-10.745-24-24-24H320v160c13.255 0 24 10.745 24 24v104z"] }; +var faBirthdayCake = { prefix: 'fas', iconName: 'birthday-cake', icon: [448, 512, [], "f1fd", "M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z"] }; +var faBlender = { prefix: 'fas', iconName: 'blender', icon: [512, 512, [], "f517", "M416 384H160c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-128 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm40-416h166.54L512 0H48C21.49 0 0 21.49 0 48v160c0 26.51 21.49 48 48 48h103.27l8.73 96h256l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H328c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM64 192V64h69.82l11.64 128H64z"] }; +var faBlind = { prefix: 'fas', iconName: 'blind', icon: [384, 512, [], "f29d", "M380.15 510.837a8 8 0 0 1-10.989-2.687l-125.33-206.427a31.923 31.923 0 0 0 12.958-9.485l126.048 207.608a8 8 0 0 1-2.687 10.991zM142.803 314.338l-32.54 89.485 36.12 88.285c6.693 16.36 25.377 24.192 41.733 17.501 16.357-6.692 24.193-25.376 17.501-41.734l-62.814-153.537zM96 88c24.301 0 44-19.699 44-44S120.301 0 96 0 52 19.699 52 44s19.699 44 44 44zm154.837 169.128l-120-152c-4.733-5.995-11.75-9.108-18.837-9.112V96H80v.026c-7.146.003-14.217 3.161-18.944 9.24L0 183.766v95.694c0 13.455 11.011 24.791 24.464 24.536C37.505 303.748 48 293.1 48 280v-79.766l16-20.571v140.698L9.927 469.055c-6.04 16.609 2.528 34.969 19.138 41.009 16.602 6.039 34.968-2.524 41.009-19.138L136 309.638V202.441l-31.406-39.816a4 4 0 1 1 6.269-4.971l102.3 129.217c9.145 11.584 24.368 11.339 33.708 3.965 10.41-8.216 12.159-23.334 3.966-33.708z"] }; +var faBold = { prefix: 'fas', iconName: 'bold', icon: [384, 512, [], "f032", "M304.793 243.891c33.639-18.537 53.657-54.16 53.657-95.693 0-48.236-26.25-87.626-68.626-104.179C265.138 34.01 240.849 32 209.661 32H24c-8.837 0-16 7.163-16 16v33.049c0 8.837 7.163 16 16 16h33.113v318.53H24c-8.837 0-16 7.163-16 16V464c0 8.837 7.163 16 16 16h195.69c24.203 0 44.834-1.289 66.866-7.584C337.52 457.193 376 410.647 376 350.014c0-52.168-26.573-91.684-71.207-106.123zM142.217 100.809h67.444c16.294 0 27.536 2.019 37.525 6.717 15.828 8.479 24.906 26.502 24.906 49.446 0 35.029-20.32 56.79-53.029 56.79h-76.846V100.809zm112.642 305.475c-10.14 4.056-22.677 4.907-31.409 4.907h-81.233V281.943h84.367c39.645 0 63.057 25.38 63.057 63.057.001 28.425-13.66 52.483-34.782 61.284z"] }; +var faBolt = { prefix: 'fas', iconName: 'bolt', icon: [320, 512, [], "f0e7", "M295.973 160H180.572L215.19 30.184C219.25 14.956 207.756 0 192 0H56C43.971 0 33.8 8.905 32.211 20.828l-31.996 240C-1.704 275.217 9.504 288 24.004 288h118.701L96.646 482.466C93.05 497.649 104.659 512 119.992 512c8.35 0 16.376-4.374 20.778-11.978l175.973-303.997c9.244-15.967-2.288-36.025-20.77-36.025z"] }; +var faBomb = { prefix: 'fas', iconName: 'bomb', icon: [512, 512, [], "f1e2", "M440.5 88.5l-52 52L415 167c9.4 9.4 9.4 24.6 0 33.9l-17.4 17.4c11.8 26.1 18.4 55.1 18.4 85.6 0 114.9-93.1 208-208 208S0 418.9 0 304 93.1 96 208 96c30.5 0 59.5 6.6 85.6 18.4L311 97c9.4-9.4 24.6-9.4 33.9 0l26.5 26.5 52-52 17.1 17zM500 60h-24c-6.6 0-12 5.4-12 12s5.4 12 12 12h24c6.6 0 12-5.4 12-12s-5.4-12-12-12zM440 0c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12s12-5.4 12-12V12c0-6.6-5.4-12-12-12zm33.9 55l17-17c4.7-4.7 4.7-12.3 0-17-4.7-4.7-12.3-4.7-17 0l-17 17c-4.7 4.7-4.7 12.3 0 17 4.8 4.7 12.4 4.7 17 0zm-67.8 0c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17zm67.8 34c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17zM112 272c0-35.3 28.7-64 64-64 8.8 0 16-7.2 16-16s-7.2-16-16-16c-52.9 0-96 43.1-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16z"] }; +var faBong = { prefix: 'fas', iconName: 'bong', icon: [448, 512, [], "f55c", "M302.5 512c23.18 0 44.43-12.58 56-32.66C374.69 451.26 384 418.75 384 384c0-36.12-10.08-69.81-27.44-98.62L400 241.94l9.38 9.38c6.25 6.25 16.38 6.25 22.63 0l11.3-11.32c6.25-6.25 6.25-16.38 0-22.63l-52.69-52.69c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63l9.38 9.38-39.41 39.41c-11.56-11.37-24.53-21.33-38.65-29.51V63.74l15.97-.02c8.82-.01 15.97-7.16 15.98-15.98l.04-31.72C320 7.17 312.82-.01 303.97 0L80.03.26c-8.82.01-15.97 7.16-15.98 15.98l-.04 31.73c-.01 8.85 7.17 16.02 16.02 16.01L96 63.96v153.93C38.67 251.1 0 312.97 0 384c0 34.75 9.31 67.27 25.5 95.34C37.08 499.42 58.33 512 81.5 512h221zM120.06 259.43L144 245.56V63.91l96-.11v181.76l23.94 13.87c24.81 14.37 44.12 35.73 56.56 60.57h-257c12.45-24.84 31.75-46.2 56.56-60.57z"] }; +var faBook = { prefix: 'fas', iconName: 'book', icon: [448, 512, [], "f02d", "M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z"] }; +var faBookOpen = { prefix: 'fas', iconName: 'book-open', icon: [576, 512, [], "f518", "M542.22 32.05c-54.8 3.11-163.72 14.43-230.96 55.59-4.64 2.84-7.27 7.89-7.27 13.17v363.87c0 11.55 12.63 18.85 23.28 13.49 69.18-34.82 169.23-44.32 218.7-46.92 16.89-.89 30.02-14.43 30.02-30.66V62.75c.01-17.71-15.35-31.74-33.77-30.7zM264.73 87.64C197.5 46.48 88.58 35.17 33.78 32.05 15.36 31.01 0 45.04 0 62.75V400.6c0 16.24 13.13 29.78 30.02 30.66 49.49 2.6 149.59 12.11 218.77 46.95 10.62 5.35 23.21-1.94 23.21-13.46V100.63c0-5.29-2.62-10.14-7.27-12.99z"] }; +var faBookmark = { prefix: 'fas', iconName: 'bookmark', icon: [384, 512, [], "f02e", "M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z"] }; +var faBowlingBall = { prefix: 'fas', iconName: 'bowling-ball', icon: [496, 512, [], "f436", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM120 192c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64-96c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm48 144c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faBox = { prefix: 'fas', iconName: 'box', icon: [512, 512, [], "f466", "M509.5 184.6L458.9 32.8C452.4 13.2 434.1 0 413.4 0H272v192h238.7c-.4-2.5-.4-5-1.2-7.4zM240 0H98.6c-20.7 0-39 13.2-45.5 32.8L2.5 184.6c-.8 2.4-.8 4.9-1.2 7.4H240V0zM0 224v240c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V224H0z"] }; +var faBoxOpen = { prefix: 'fas', iconName: 'box-open', icon: [640, 512, [], "f49e", "M53.2 41L1.7 143.8c-4.6 9.2.3 20.2 10.1 23l197.9 56.5c7.1 2 14.7-1 18.5-7.3L320 64 69.8 32.1c-6.9-.8-13.5 2.7-16.6 8.9zm585.1 102.8L586.8 41c-3.1-6.2-9.8-9.8-16.7-8.9L320 64l91.7 152.1c3.8 6.3 11.4 9.3 18.5 7.3l197.9-56.5c9.9-2.9 14.7-13.9 10.2-23.1zM425.7 256c-16.9 0-32.8-9-41.4-23.4L320 126l-64.2 106.6c-8.7 14.5-24.6 23.5-41.5 23.5-4.5 0-9-.6-13.3-1.9L64 215v178c0 14.7 10 27.5 24.2 31l216.2 54.1c10.2 2.5 20.9 2.5 31 0L551.8 424c14.2-3.6 24.2-16.4 24.2-31V215l-137 39.1c-4.3 1.3-8.8 1.9-13.3 1.9z"] }; +var faBoxes = { prefix: 'fas', iconName: 'boxes', icon: [576, 512, [], "f468", "M560 288h-80v96l-32-21.3-32 21.3v-96h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16zm-384-64h224c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16h-80v96l-32-21.3L256 96V0h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16zm64 64h-80v96l-32-21.3L96 384v-96H16c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16z"] }; +var faBraille = { prefix: 'fas', iconName: 'braille', icon: [640, 512, [], "f2a1", "M128 256c0 35.346-28.654 64-64 64S0 291.346 0 256s28.654-64 64-64 64 28.654 64 64zM64 384c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352C28.654 32 0 60.654 0 96s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm224 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-320c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; +var faBriefcase = { prefix: 'fas', iconName: 'briefcase', icon: [512, 512, [], "f0b1", "M320 288h192v144c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V288h192v20c0 6.627 5.373 12 12 12h104c6.627 0 12-5.373 12-12v-20zm192-112v80H0v-80c0-26.51 21.49-48 48-48h80V80c0-26.51 21.49-48 48-48h160c26.51 0 48 21.49 48 48v48h80c26.51 0 48 21.49 48 48zM320 96H192v32h128V96z"] }; +var faBriefcaseMedical = { prefix: 'fas', iconName: 'briefcase-medical', icon: [512, 512, [], "f469", "M464 128h-80V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48zM192 96h128v32H192V96zm160 248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48z"] }; +var faBroadcastTower = { prefix: 'fas', iconName: 'broadcast-tower', icon: [640, 512, [], "f519", "M150.94 192h33.73c11.01 0 18.61-10.83 14.86-21.18-4.93-13.58-7.55-27.98-7.55-42.82s2.62-29.24 7.55-42.82C203.29 74.83 195.68 64 184.67 64h-33.73c-7.01 0-13.46 4.49-15.41 11.23C130.64 92.21 128 109.88 128 128c0 18.12 2.64 35.79 7.54 52.76 1.94 6.74 8.39 11.24 15.4 11.24zM89.92 23.34C95.56 12.72 87.97 0 75.96 0H40.63c-6.27 0-12.14 3.59-14.74 9.31C9.4 45.54 0 85.65 0 128c0 24.75 3.12 68.33 26.69 118.86 2.62 5.63 8.42 9.14 14.61 9.14h34.84c12.02 0 19.61-12.74 13.95-23.37-49.78-93.32-16.71-178.15-.17-209.29zM614.06 9.29C611.46 3.58 605.6 0 599.33 0h-35.42c-11.98 0-19.66 12.66-14.02 23.25 18.27 34.29 48.42 119.42.28 209.23-5.72 10.68 1.8 23.52 13.91 23.52h35.23c6.27 0 12.13-3.58 14.73-9.29C630.57 210.48 640 170.36 640 128s-9.42-82.48-25.94-118.71zM489.06 64h-33.73c-11.01 0-18.61 10.83-14.86 21.18 4.93 13.58 7.55 27.98 7.55 42.82s-2.62 29.24-7.55 42.82c-3.76 10.35 3.85 21.18 14.86 21.18h33.73c7.02 0 13.46-4.49 15.41-11.24 4.9-16.97 7.53-34.64 7.53-52.76 0-18.12-2.64-35.79-7.54-52.76-1.94-6.75-8.39-11.24-15.4-11.24zm-116.3 100.12c7.05-10.29 11.2-22.71 11.2-36.12 0-35.35-28.63-64-63.96-64-35.32 0-63.96 28.65-63.96 64 0 13.41 4.15 25.83 11.2 36.12l-130.5 313.41c-3.4 8.15.46 17.52 8.61 20.92l29.51 12.31c8.15 3.4 17.52-.46 20.91-8.61L244.96 384h150.07l49.2 118.15c3.4 8.16 12.76 12.01 20.91 8.61l29.51-12.31c8.15-3.4 12-12.77 8.61-20.92l-130.5-313.41zM271.62 320L320 203.81 368.38 320h-96.76z"] }; +var faBroom = { prefix: 'fas', iconName: 'broom', icon: [512, 512, [], "f51a", "M10.8 247.2C-.7 251.8-3.7 266.7 5 275.4l54.8 54.8 73.2-24.4-24.4 73.2 128 128c8.8 8.8 23.6 5.7 28.2-5.8l98.1-243.7-108.4-108.4-243.7 98.1zM507.3 27.3L484.7 4.7c-6.2-6.3-16.4-6.3-22.6 0L359.8 106.9l-40.4-40.4c-4.2-4.3-11.4-3-13.9 2.5l-27.2 58.6 106.1 106.1 58.6-27.2c5.4-2.5 6.7-9.7 2.5-13.9l-40.4-40.4L507.3 49.9c6.3-6.2 6.3-16.3 0-22.6z"] }; +var faBrush = { prefix: 'fas', iconName: 'brush', icon: [384, 512, [], "f55d", "M352 0H32C14.33 0 0 14.33 0 32v224h384V32c0-17.67-14.33-32-32-32zM0 320c0 35.35 28.66 64 64 64h64v64c0 35.35 28.66 64 64 64s64-28.65 64-64v-64h64c35.34 0 64-28.65 64-64v-32H0v32zm192 104c13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24s-24-10.75-24-24c0-13.26 10.75-24 24-24z"] }; +var faBug = { prefix: 'fas', iconName: 'bug', icon: [512, 512, [], "f188", "M511.988 288.9c-.478 17.43-15.217 31.1-32.653 31.1H424v16c0 21.864-4.882 42.584-13.6 61.145l60.228 60.228c12.496 12.497 12.496 32.758 0 45.255-12.498 12.497-32.759 12.496-45.256 0l-54.736-54.736C345.886 467.965 314.351 480 280 480V236c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v244c-34.351 0-65.886-12.035-90.636-32.108l-54.736 54.736c-12.498 12.497-32.759 12.496-45.256 0-12.496-12.497-12.496-32.758 0-45.255l60.228-60.228C92.882 378.584 88 357.864 88 336v-16H32.666C15.23 320 .491 306.33.013 288.9-.484 270.816 14.028 256 32 256h56v-58.745l-46.628-46.628c-12.496-12.497-12.496-32.758 0-45.255 12.498-12.497 32.758-12.497 45.256 0L141.255 160h229.489l54.627-54.627c12.498-12.497 32.758-12.497 45.256 0 12.496 12.497 12.496 32.758 0 45.255L424 197.255V256h56c17.972 0 32.484 14.816 31.988 32.9zM257 0c-61.856 0-112 50.144-112 112h224C369 50.144 318.856 0 257 0z"] }; +var faBuilding = { prefix: 'fas', iconName: 'building', icon: [448, 512, [], "f1ad", "M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z"] }; +var faBullhorn = { prefix: 'fas', iconName: 'bullhorn', icon: [576, 512, [], "f0a1", "M576 224c0-20.896-13.36-38.666-32-45.258V64c0-35.346-28.654-64-64-64-64.985 56-142.031 128-272 128H48c-26.51 0-48 21.49-48 48v96c0 26.51 21.49 48 48 48h43.263c-18.742 64.65 2.479 116.379 18.814 167.44 1.702 5.32 5.203 9.893 9.922 12.88 20.78 13.155 68.355 15.657 93.773 5.151 16.046-6.633 19.96-27.423 7.522-39.537-18.508-18.026-30.136-36.91-19.795-60.858a12.278 12.278 0 0 0-1.045-11.673c-16.309-24.679-3.581-62.107 28.517-72.752C346.403 327.887 418.591 395.081 480 448c35.346 0 64-28.654 64-64V269.258c18.64-6.592 32-24.362 32-45.258zm-96 139.855c-54.609-44.979-125.033-92.94-224-104.982v-69.747c98.967-12.042 169.391-60.002 224-104.982v279.711z"] }; +var faBullseye = { prefix: 'fas', iconName: 'bullseye', icon: [512, 512, [], "f140", "M256 72c101.689 0 184 82.295 184 184 0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-101.689 82.295-184 184-184m0-64C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 184c35.29 0 64 28.71 64 64s-28.71 64-64 64-64-28.71-64-64 28.71-64 64-64m0-64c-70.692 0-128 57.308-128 128s57.308 128 128 128 128-57.308 128-128-57.308-128-128-128z"] }; +var faBurn = { prefix: 'fas', iconName: 'burn', icon: [384, 512, [], "f46a", "M192 0C79.7 101.3 0 220.9 0 300.5 0 425 79 512 192 512s192-87 192-211.5c0-79.9-80.2-199.6-192-300.5zm0 448c-56.5 0-96-39-96-94.8 0-13.5 4.6-61.5 96-161.2 91.4 99.7 96 147.7 96 161.2 0 55.8-39.5 94.8-96 94.8z"] }; +var faBus = { prefix: 'fas', iconName: 'bus', icon: [512, 512, [], "f207", "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM112 400c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm16-112c-17.67 0-32-14.33-32-32V128c0-17.67 14.33-32 32-32h256c17.67 0 32 14.33 32 32v128c0 17.67-14.33 32-32 32H128zm272 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faBusAlt = { prefix: 'fas', iconName: 'bus-alt', icon: [512, 512, [], "f55e", "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM160 72c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H168c-4.42 0-8-3.58-8-8V72zm-48 328c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm128-112H128c-17.67 0-32-14.33-32-32v-96c0-17.67 14.33-32 32-32h112v160zm32 0V128h112c17.67 0 32 14.33 32 32v96c0 17.67-14.33 32-32 32H272zm128 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faCalculator = { prefix: 'fas', iconName: 'calculator', icon: [448, 512, [], "f1ec", "M0 464V48C0 21.49 21.49 0 48 0h352c26.51 0 48 21.49 48 48v416c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm384-284V76c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v104c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12zM128 308v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm256 128V268c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-256 0v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm128-128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm0 128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"] }; +var faCalendar = { prefix: 'fas', iconName: 'calendar', icon: [448, 512, [], "f133", "M12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm436-44v-36c0-26.5-21.5-48-48-48h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v36c0 6.6 5.4 12 12 12h424c6.6 0 12-5.4 12-12z"] }; +var faCalendarAlt = { prefix: 'fas', iconName: 'calendar-alt', icon: [448, 512, [], "f073", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm116 204c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40z"] }; +var faCalendarCheck = { prefix: 'fas', iconName: 'calendar-check', icon: [448, 512, [], "f274", "M436 160H12c-6.627 0-12-5.373-12-12v-36c0-26.51 21.49-48 48-48h48V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h128V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h48c26.51 0 48 21.49 48 48v36c0 6.627-5.373 12-12 12zM12 192h424c6.627 0 12 5.373 12 12v260c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V204c0-6.627 5.373-12 12-12zm333.296 95.947l-28.169-28.398c-4.667-4.705-12.265-4.736-16.97-.068L194.12 364.665l-45.98-46.352c-4.667-4.705-12.266-4.736-16.971-.068l-28.397 28.17c-4.705 4.667-4.736 12.265-.068 16.97l82.601 83.269c4.667 4.705 12.265 4.736 16.97.068l142.953-141.805c4.705-4.667 4.736-12.265.068-16.97z"] }; +var faCalendarMinus = { prefix: 'fas', iconName: 'calendar-minus', icon: [448, 512, [], "f272", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm304 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H132c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h184z"] }; +var faCalendarPlus = { prefix: 'fas', iconName: 'calendar-plus', icon: [448, 512, [], "f271", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm316 140c0-6.6-5.4-12-12-12h-60v-60c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v60h-60c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h60v60c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-60h60c6.6 0 12-5.4 12-12v-40z"] }; +var faCalendarTimes = { prefix: 'fas', iconName: 'calendar-times', icon: [448, 512, [], "f273", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm257.3 160l48.1-48.1c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0L224 306.7l-48.1-48.1c-4.7-4.7-12.3-4.7-17 0l-28.3 28.3c-4.7 4.7-4.7 12.3 0 17l48.1 48.1-48.1 48.1c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l48.1-48.1 48.1 48.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L269.3 352z"] }; +var faCamera = { prefix: 'fas', iconName: 'camera', icon: [512, 512, [], "f030", "M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z"] }; +var faCameraRetro = { prefix: 'fas', iconName: 'camera-retro', icon: [512, 512, [], "f083", "M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm0 32h106c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H38c-3.3 0-6-2.7-6-6V80c0-8.8 7.2-16 16-16zm426 96H38c-3.3 0-6-2.7-6-6v-36c0-3.3 2.7-6 6-6h138l30.2-45.3c1.1-1.7 3-2.7 5-2.7H464c8.8 0 16 7.2 16 16v74c0 3.3-2.7 6-6 6zM256 424c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88zm-48 104c-8.8 0-16-7.2-16-16 0-35.3 28.7-64 64-64 8.8 0 16 7.2 16 16s-7.2 16-16 16c-17.6 0-32 14.4-32 32 0 8.8-7.2 16-16 16z"] }; +var faCannabis = { prefix: 'fas', iconName: 'cannabis', icon: [512, 512, [], "f55f", "M503.47 360.25c-1.56-.82-32.39-16.89-76.78-25.81 64.25-75.12 84.05-161.67 84.93-165.64 1.18-5.33-.44-10.9-4.3-14.77-3.03-3.04-7.12-4.7-11.32-4.7-1.14 0-2.29.12-3.44.38-3.88.85-86.54 19.59-160.58 79.76.01-1.46.01-2.93.01-4.4 0-118.79-59.98-213.72-62.53-217.7A15.973 15.973 0 0 0 256 0c-5.45 0-10.53 2.78-13.47 7.37-2.55 3.98-62.53 98.91-62.53 217.7 0 1.47.01 2.94.01 4.4-74.03-60.16-156.69-78.9-160.58-79.76-1.14-.25-2.29-.38-3.44-.38-4.2 0-8.29 1.66-11.32 4.7A15.986 15.986 0 0 0 .38 168.8c.88 3.97 20.68 90.52 84.93 165.64-44.39 8.92-75.21 24.99-76.78 25.81a16.003 16.003 0 0 0-.02 28.29c2.45 1.29 60.76 31.72 133.49 31.72 6.14 0 11.96-.1 17.5-.31-11.37 22.23-16.52 38.31-16.81 39.22-1.8 5.68-.29 11.89 3.91 16.11a16.019 16.019 0 0 0 16.1 3.99c1.83-.57 37.72-11.99 77.3-39.29V504c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8v-64.01c39.58 27.3 75.47 38.71 77.3 39.29a16.019 16.019 0 0 0 16.1-3.99c4.2-4.22 5.71-10.43 3.91-16.11-.29-.91-5.45-16.99-16.81-39.22 5.54.21 11.37.31 17.5.31 72.72 0 131.04-30.43 133.49-31.72 5.24-2.78 8.52-8.22 8.51-14.15-.01-5.94-3.29-11.39-8.53-14.15z"] }; +var faCapsules = { prefix: 'fas', iconName: 'capsules', icon: [576, 512, [], "f46b", "M555.3 300.1L424.2 112.8C401.9 81 366.4 64 330.4 64c-22.6 0-45.5 6.7-65.5 20.7-19.7 13.8-33.7 32.8-41.5 53.8C220.5 79.2 172 32 112 32 50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V218.9c3.3 8.6 7.3 17.1 12.8 25L368 431.2c22.2 31.8 57.7 48.8 93.8 48.8 22.7 0 45.5-6.7 65.5-20.7 51.7-36.2 64.2-107.5 28-159.2zM160 256H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm194.8 44.9l-65.6-93.7c-7.7-11-10.7-24.4-8.3-37.6 2.3-13.2 9.7-24.8 20.7-32.5 8.5-6 18.5-9.1 28.8-9.1 16.5 0 31.9 8 41.3 21.5l65.6 93.7-82.5 57.7z"] }; +var faCar = { prefix: 'fas', iconName: 'car', icon: [512, 512, [], "f1b9", "M499.991 168h-54.815l-7.854-20.944c-9.192-24.513-25.425-45.351-46.942-60.263S343.651 64 317.472 64H194.528c-26.18 0-51.391 7.882-72.908 22.793-21.518 14.912-37.75 35.75-46.942 60.263L66.824 168H12.009c-8.191 0-13.974 8.024-11.384 15.795l8 24A12 12 0 0 0 20.009 216h28.815l-.052.14C29.222 227.093 16 247.997 16 272v48c0 16.225 6.049 31.029 16 42.309V424c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-40h256v40c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-61.691c9.951-11.281 16-26.085 16-42.309v-48c0-24.003-13.222-44.907-32.772-55.86l-.052-.14h28.815a12 12 0 0 0 11.384-8.205l8-24c2.59-7.771-3.193-15.795-11.384-15.795zm-365.388 1.528C143.918 144.689 168 128 194.528 128h122.944c26.528 0 50.61 16.689 59.925 41.528L391.824 208H120.176l14.427-38.472zM88 328c-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32s48 30.327 48 48-30.327 16-48 16zm336 0c-17.673 0-48 1.673-48-16 0-17.673 30.327-48 48-48s32 14.327 32 32c0 17.673-14.327 32-32 32z"] }; +var faCaretDown = { prefix: 'fas', iconName: 'caret-down', icon: [320, 512, [], "f0d7", "M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z"] }; +var faCaretLeft = { prefix: 'fas', iconName: 'caret-left', icon: [192, 512, [], "f0d9", "M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z"] }; +var faCaretRight = { prefix: 'fas', iconName: 'caret-right', icon: [192, 512, [], "f0da", "M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z"] }; +var faCaretSquareDown = { prefix: 'fas', iconName: 'caret-square-down', icon: [448, 512, [], "f150", "M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM92.5 220.5l123 123c4.7 4.7 12.3 4.7 17 0l123-123c7.6-7.6 2.2-20.5-8.5-20.5H101c-10.7 0-16.1 12.9-8.5 20.5z"] }; +var faCaretSquareLeft = { prefix: 'fas', iconName: 'caret-square-left', icon: [448, 512, [], "f191", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM259.515 124.485l-123.03 123.03c-4.686 4.686-4.686 12.284 0 16.971l123.029 123.029c7.56 7.56 20.485 2.206 20.485-8.485V132.971c.001-10.691-12.925-16.045-20.484-8.486z"] }; +var faCaretSquareRight = { prefix: 'fas', iconName: 'caret-square-right', icon: [448, 512, [], "f152", "M48 32h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48zm140.485 355.515l123.029-123.029c4.686-4.686 4.686-12.284 0-16.971l-123.029-123.03c-7.56-7.56-20.485-2.206-20.485 8.485v246.059c0 10.691 12.926 16.045 20.485 8.486z"] }; +var faCaretSquareUp = { prefix: 'fas', iconName: 'caret-square-up', icon: [448, 512, [], "f151", "M0 432V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm355.515-140.485l-123.03-123.03c-4.686-4.686-12.284-4.686-16.971 0L92.485 291.515c-7.56 7.56-2.206 20.485 8.485 20.485h246.059c10.691 0 16.045-12.926 8.486-20.485z"] }; +var faCaretUp = { prefix: 'fas', iconName: 'caret-up', icon: [320, 512, [], "f0d8", "M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z"] }; +var faCartArrowDown = { prefix: 'fas', iconName: 'cart-arrow-down', icon: [576, 512, [], "f218", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z"] }; +var faCartPlus = { prefix: 'fas', iconName: 'cart-plus', icon: [576, 512, [], "f217", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM408 168h-48v-40c0-8.837-7.163-16-16-16h-16c-8.837 0-16 7.163-16 16v40h-48c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h48v40c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-40h48c8.837 0 16-7.163 16-16v-16c0-8.837-7.163-16-16-16z"] }; +var faCertificate = { prefix: 'fas', iconName: 'certificate', icon: [512, 512, [], "f0a3", "M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z"] }; +var faChalkboard = { prefix: 'fas', iconName: 'chalkboard', icon: [640, 512, [], "f51b", "M96 64h448v352h64V40c0-22.06-17.94-40-40-40H72C49.94 0 32 17.94 32 40v376h64V64zm528 384H480v-64H288v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"] }; +var faChalkboardTeacher = { prefix: 'fas', iconName: 'chalkboard-teacher', icon: [640, 512, [], "f51c", "M208 352c-2.39 0-4.78.35-7.06 1.09C187.98 357.3 174.35 360 160 360c-14.35 0-27.98-2.7-40.95-6.91-2.28-.74-4.66-1.09-7.05-1.09C49.94 352-.33 402.48 0 464.62.14 490.88 21.73 512 48 512h224c26.27 0 47.86-21.12 48-47.38.33-62.14-49.94-112.62-112-112.62zm-48-32c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM592 0H208c-26.47 0-48 22.25-48 49.59V96c23.42 0 45.1 6.78 64 17.8V64h352v288h-64v-64H384v64h-76.24c19.1 16.69 33.12 38.73 39.69 64H592c26.47 0 48-22.25 48-49.59V49.59C640 22.25 618.47 0 592 0z"] }; +var faChartArea = { prefix: 'fas', iconName: 'chart-area', icon: [512, 512, [], "f1fe", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z"] }; +var faChartBar = { prefix: 'fas', iconName: 'chart-bar', icon: [512, 512, [], "f080", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zm-308-44v-72c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V204c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V108c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"] }; +var faChartLine = { prefix: 'fas', iconName: 'chart-line', icon: [512, 512, [], "f201", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM456 96H344c-21.4 0-32.1 25.9-17 41l32.9 32.9-72 72.9-55.6-55.6c-4.7-4.7-12.2-4.7-16.9 0L96.4 305c-4.7 4.6-4.8 12.2-.2 16.9l28.5 29.4c4.7 4.8 12.4 4.9 17.1.1l82.1-82.1 55.5 55.5c4.7 4.7 12.3 4.7 17 0l109.2-109.2L439 249c15.1 15.1 41 4.4 41-17V120c0-13.3-10.7-24-24-24z"] }; +var faChartPie = { prefix: 'fas', iconName: 'chart-pie', icon: [576, 512, [], "f200", "M288 12.3V240h227.7c6.9 0 12.3-5.8 12-12.7-6.4-122.4-104.5-220.6-227-227-6.9-.3-12.7 5.1-12.7 12zM552.7 288c6.9 0 12.3 5.8 12 12.7-2.8 53.2-23.2 105.6-61.2 147.8-4.6 5.1-12.6 5.4-17.5.5L325 288h227.7zM401 433c4.8 4.8 4.7 12.8-.4 17.3-42.6 38.4-99 61.7-160.8 61.7C107.6 511.9-.2 403.8 0 271.5.2 143.4 100.8 38.9 227.3 32.3c6.9-.4 12.7 5.1 12.7 12V272l161 161z"] }; +var faCheck = { prefix: 'fas', iconName: 'check', icon: [512, 512, [], "f00c", "M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"] }; +var faCheckCircle = { prefix: 'fas', iconName: 'check-circle', icon: [512, 512, [], "f058", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"] }; +var faCheckDouble = { prefix: 'fas', iconName: 'check-double', icon: [512, 512, [], "f560", "M504.5 171.95l-36.2-36.41c-10-10.05-26.21-10.05-36.2 0L192 377.02 79.9 264.28c-10-10.06-26.21-10.06-36.2 0L7.5 300.69c-10 10.05-10 26.36 0 36.41l166.4 167.36c10 10.06 26.21 10.06 36.2 0l294.4-296.09c10-10.06 10-26.36 0-36.42zM166.57 282.71c6.84 7.02 18.18 7.02 25.21.18L403.85 72.62c7.02-6.84 7.02-18.18.18-25.21L362.08 5.29c-6.84-7.02-18.18-7.02-25.21-.18L179.71 161.19l-68.23-68.77c-6.84-7.02-18.18-7.02-25.2-.18l-42.13 41.77c-7.02 6.84-7.02 18.18-.18 25.2l122.6 123.5z"] }; +var faCheckSquare = { prefix: 'fas', iconName: 'check-square', icon: [448, 512, [], "f14a", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"] }; +var faChess = { prefix: 'fas', iconName: 'chess', icon: [512, 512, [], "f439", "M199.821 217.633a6 6 0 0 1 6 6l-.001 20.766a6 6 0 0 1-6 6h-25.805c0 31.715-2.153 96.201 17.398 153.229H64.597C84.54 345.452 82.02 279.245 82.02 250.399H56.183a6 6 0 0 1-6-6l.002-20.766a6 6 0 0 1 6-6h143.636zM41.554 115.088l34.58 95.071h103.734l34.572-95.072c2.846-7.826-2.95-16.101-11.278-16.101H152v-30.22h21.57a6 6 0 0 0 6-6V40.383a6 6 0 0 0-6-6h-28.367V6a6 6 0 0 0-6-6H116.82a6 6 0 0 0-6 6v28.383H82.421a6 6 0 0 0-6 6v22.383a6 6 0 0 0 6 6H104v30.219H52.831c-8.328.001-14.124 8.276-11.277 16.103zM222.678 445.17v-28.067a6 6 0 0 0-6-6H39.322a6 6 0 0 0-6 6v28.067l-22.148 14.164a6 6 0 0 0-2.767 5.055V506a6 6 0 0 0 6 6h227.187a6 6 0 0 0 6-6v-41.612a6 6 0 0 0-2.767-5.055l-22.149-14.163zm90.578-144.225l24.88 16.963c.09 18.124-.167 63.904-11.905 114.522h147.526c-11.713-50.475-11.969-96.324-11.882-114.537l24.859-16.949a3.856 3.856 0 0 0 1.684-3.187v-69.901a3.857 3.857 0 0 0-3.857-3.857h-27.655a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.858-3.857h-52.918a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.857-3.857H315.43a3.857 3.857 0 0 0-3.857 3.857v69.901a3.855 3.855 0 0 0 1.683 3.188zm71.585 51.906c0-8.372 6.787-15.158 15.159-15.158s15.158 6.787 15.158 15.158v30.318h-30.317v-30.318zM504.62 470.059l-13.664-10.639v-15.552a3.857 3.857 0 0 0-3.857-3.857H312.915a3.857 3.857 0 0 0-3.857 3.857v15.552l-13.677 10.639a3.857 3.857 0 0 0-1.488 3.044v35.039a3.857 3.857 0 0 0 3.857 3.857h204.5a3.857 3.857 0 0 0 3.857-3.857v-35.04a3.859 3.859 0 0 0-1.487-3.043z"] }; +var faChessBishop = { prefix: 'fas', iconName: 'chess-bishop', icon: [320, 512, [], "f43a", "M123.158 77.881C107.369 72.53 96 57.597 96 40c0-22.091 17.909-40 40-40h47.796c22.091 0 40 17.909 40 40 0 17.541-11.295 32.434-27.005 37.829 23.993 16.657 48.577 46.839 68.703 82.05L144.929 280.443a6 6 0 0 0 0 8.485l14.142 14.142a6 6 0 0 0 8.485 0L280.9 189.726c17.758 38.297 29.371 79.443 29.371 114.273 0 53.786-22.897 75.788-58.446 86.033V448H68.174v-57.97C32.631 379.784 9.739 357.781 9.739 304c0-78.029 58.281-187.766 113.419-226.119zM320 500v-24c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12z"] }; +var faChessBoard = { prefix: 'fas', iconName: 'chess-board', icon: [512, 512, [], "f43c", "M256 256v64h-64v-64h64zm0-256h-64v64h64V0zm0 256h64v-64h-64v64zM384 0h-64v64h64V0zm0 512h64v-64h-64v64zm128-64v-64h-64v64h64zm-384 64h64v-64h-64v64zm0-512H64v64h64V0zm384 192v-64h-64v64h64zm0 128v-64h-64v64h64zM0 512h64v-64H0v64zM0 64v64h64V64H0zm0 128v64h64v-64H0zm0 128v64h64v-64H0zm256 192h64v-64h-64v64zm-64-128v64h64v-64h-64zm64-192v-64h-64v64h64zM64 384v64h64v-64H64zm64-128H64v64h64v-64zm256 128h64v-64h-64v64zM512 0h-64v64h64V0zM384 256h64v-64h-64v64zm0-192v64h64V64h-64zm-64 320v64h64v-64h-64zm-192-64v64h64v-64h-64zm128 0v64h64v-64h-64zm-64-128h-64v64h64v-64zm-64-64H64v64h64v-64zm192 192h64v-64h-64v64zM192 128V64h-64v64h64zm128 0V64h-64v64h64zm0 64h64v-64h-64v64z"] }; +var faChessKing = { prefix: 'fas', iconName: 'chess-king', icon: [448, 512, [], "f43f", "M416 476v24c0 6.627-5.373 12-12 12H44c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12zm-8.033-324H248v-48h50a6 6 0 0 0 6-6V62a6 6 0 0 0-6-6h-50V6a6 6 0 0 0-6-6h-36a6 6 0 0 0-6 6v50h-50a6 6 0 0 0-6 6v36a6 6 0 0 0 6 6h50v48H40.033c-27.574 0-46.879 27.244-37.738 53.259L87.582 448h272.836l85.287-242.741C454.846 179.244 435.541 152 407.967 152z"] }; +var faChessKnight = { prefix: 'fas', iconName: 'chess-knight', icon: [384, 512, [], "f441", "M352 224v224H32v-46.557c0-30.302 17.12-58.003 44.223-71.554l57.243-28.622A48 48 0 0 0 160 258.334V208l-22.127 11.063a23.996 23.996 0 0 0-12.55 15.645l-11.835 47.338a12 12 0 0 1-7.185 8.231l-29.601 11.84a11.998 11.998 0 0 1-9.33-.176L7.126 275.167A12 12 0 0 1 0 264.201v-158.26c0-6.365 2.529-12.47 7.03-16.971L16 80 1.789 51.578A16.937 16.937 0 0 1 0 44c0-6.627 5.373-12 12-12h148c106.039 0 192 85.961 192 192zm20 240H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12zM52 128c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z"] }; +var faChessPawn = { prefix: 'fas', iconName: 'chess-pawn', icon: [320, 512, [], "f443", "M264 448H56s60-42.743 60-176H84c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h40.209C95.721 210.56 76 181.588 76 148c0-46.392 37.608-84 84-84s84 37.608 84 84c0 33.588-19.721 62.56-48.209 76H236c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12h-32c0 133.257 60 176 60 176zm28 16H28c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h264c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12z"] }; +var faChessQueen = { prefix: 'fas', iconName: 'chess-queen', icon: [512, 512, [], "f445", "M436 512H76c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12zM255.579 0c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zm204.568 154.634c-5.768-3.045-12.916-.932-16.082 4.77-8.616 15.516-22.747 37.801-44.065 37.801-28.714 0-30.625-19.804-31.686-57.542-.183-6.492-5.501-11.664-11.995-11.664h-41.006c-5.175 0-9.754 3.328-11.388 8.238-8.89 26.709-26.073 40.992-47.925 40.992s-39.034-14.283-47.925-40.992c-1.634-4.91-6.213-8.238-11.388-8.238h-41.005c-6.495 0-11.813 5.174-11.995 11.667-1.052 37.642-2.934 57.539-31.688 57.539-20.691 0-33.817-20.224-44.425-38.025-3.266-5.48-10.258-7.431-15.899-4.453l-39.179 20.679a12 12 0 0 0-5.51 15.145L112 448h288l105.014-257.448a12 12 0 0 0-5.51-15.145l-39.357-20.773z"] }; +var faChessRook = { prefix: 'fas', iconName: 'chess-rook', icon: [384, 512, [], "f447", "M81.241 215.027C80.957 258.92 77.411 348.076 48 448h287.982c-29.4-99.604-32.936-188.912-33.221-232.975l45.418-42.312a11.998 11.998 0 0 0 3.82-8.78V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v44h-48V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v44H96V44c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v119.932c0 3.33 1.384 6.51 3.82 8.78l45.421 42.315zM160 256c0-17.673 14.327-32 32-32 17.673 0 32 14.327 32 32v64.004h-64V256zm224 220v24c0 6.627-5.373 12-12 12H12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12z"] }; +var faChevronCircleDown = { prefix: 'fas', iconName: 'chevron-circle-down', icon: [512, 512, [], "f13a", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM273 369.9l135.5-135.5c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L256 285.1 154.4 183.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L239 369.9c9.4 9.4 24.6 9.4 34 0z"] }; +var faChevronCircleLeft = { prefix: 'fas', iconName: 'chevron-circle-left', icon: [512, 512, [], "f137", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z"] }; +var faChevronCircleRight = { prefix: 'fas', iconName: 'chevron-circle-right', icon: [512, 512, [], "f138", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z"] }; +var faChevronCircleUp = { prefix: 'fas', iconName: 'chevron-circle-up', icon: [512, 512, [], "f139", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm231-113.9L103.5 277.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L256 226.9l101.6 101.6c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L273 142.1c-9.4-9.4-24.6-9.4-34 0z"] }; +var faChevronDown = { prefix: 'fas', iconName: 'chevron-down', icon: [448, 512, [], "f078", "M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"] }; +var faChevronLeft = { prefix: 'fas', iconName: 'chevron-left', icon: [320, 512, [], "f053", "M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z"] }; +var faChevronRight = { prefix: 'fas', iconName: 'chevron-right', icon: [320, 512, [], "f054", "M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z"] }; +var faChevronUp = { prefix: 'fas', iconName: 'chevron-up', icon: [448, 512, [], "f077", "M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z"] }; +var faChild = { prefix: 'fas', iconName: 'child', icon: [384, 512, [], "f1ae", "M120 72c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.764-32.235 72-72 72s-72-32.236-72-72zm254.627 1.373c-12.496-12.497-32.758-12.497-45.254 0L242.745 160H141.254L54.627 73.373c-12.496-12.497-32.758-12.497-45.254 0-12.497 12.497-12.497 32.758 0 45.255L104 213.254V480c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V368h16v112c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V213.254l94.627-94.627c12.497-12.497 12.497-32.757 0-45.254z"] }; +var faChurch = { prefix: 'fas', iconName: 'church', icon: [640, 512, [], "f51d", "M464.46 246.68L352 179.2V128h48c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-48V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v48h-48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v51.2l-112.46 67.48A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.65-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.54A32.024 32.024 0 0 0 0 395.96zm620.61-29.42L512 320v192h112c8.84 0 16-7.16 16-16V395.96c0-12.8-7.63-24.37-19.39-29.42z"] }; +var faCircle = { prefix: 'fas', iconName: 'circle', icon: [512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"] }; +var faCircleNotch = { prefix: 'fas', iconName: 'circle-notch', icon: [512, 512, [], "f1ce", "M288 39.056v16.659c0 10.804 7.281 20.159 17.686 23.066C383.204 100.434 440 171.518 440 256c0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-84.47 56.786-155.564 134.312-177.219C216.719 75.874 224 66.517 224 55.712V39.064c0-15.709-14.834-27.153-30.046-23.234C86.603 43.482 7.394 141.206 8.003 257.332c.72 137.052 111.477 246.956 248.531 246.667C393.255 503.711 504 392.788 504 256c0-115.633-79.14-212.779-186.211-240.236C302.678 11.889 288 23.456 288 39.056z"] }; +var faClipboard = { prefix: 'fas', iconName: 'clipboard', icon: [384, 512, [], "f328", "M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z"] }; +var faClipboardCheck = { prefix: 'fas', iconName: 'clipboard-check', icon: [384, 512, [], "f46c", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm121.2 231.8l-143 141.8c-4.7 4.7-12.3 4.6-17-.1l-82.6-83.3c-4.7-4.7-4.6-12.3.1-17L99.1 285c4.7-4.7 12.3-4.6 17 .1l46 46.4 106-105.2c4.7-4.7 12.3-4.6 17 .1l28.2 28.4c4.7 4.8 4.6 12.3-.1 17z"] }; +var faClipboardList = { prefix: 'fas', iconName: 'clipboard-list', icon: [384, 512, [], "f46d", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM96 424c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm96-192c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm128 368c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z"] }; +var faClock = { prefix: 'fas', iconName: 'clock', icon: [512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm57.1 350.1L224.9 294c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v137.7l63.5 46.2c5.4 3.9 6.5 11.4 2.6 16.8l-28.2 38.8c-3.9 5.3-11.4 6.5-16.8 2.6z"] }; +var faClone = { prefix: 'fas', iconName: 'clone', icon: [512, 512, [], "f24d", "M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z"] }; +var faClosedCaptioning = { prefix: 'fas', iconName: 'closed-captioning', icon: [512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM218.1 287.7c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2.1 48 51.1 70.5 92.3 32.6zm190.4 0c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.5 56.9-172.7 32.1-172.7-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 222.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6z"] }; +var faCloud = { prefix: 'fas', iconName: 'cloud', icon: [640, 512, [], "f0c2", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z"] }; +var faCloudDownloadAlt = { prefix: 'fas', iconName: 'cloud-download-alt', icon: [640, 512, [], "f381", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z"] }; +var faCloudUploadAlt = { prefix: 'fas', iconName: 'cloud-upload-alt', icon: [640, 512, [], "f382", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z"] }; +var faCocktail = { prefix: 'fas', iconName: 'cocktail', icon: [576, 512, [], "f561", "M296 464h-56V338.78l168.74-168.73c15.52-15.52 4.53-42.05-17.42-42.05H24.68c-21.95 0-32.94 26.53-17.42 42.05L176 338.78V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM432 0c-62.61 0-115.35 40.2-135.18 96h52.54c16.65-28.55 47.27-48 82.64-48 52.93 0 96 43.06 96 96s-43.07 96-96 96c-14.04 0-27.29-3.2-39.32-8.64l-35.26 35.26C379.23 279.92 404.59 288 432 288c79.53 0 144-64.47 144-144S511.53 0 432 0z"] }; +var faCode = { prefix: 'fas', iconName: 'code', icon: [640, 512, [], "f121", "M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"] }; +var faCodeBranch = { prefix: 'fas', iconName: 'code-branch', icon: [384, 512, [], "f126", "M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"] }; +var faCoffee = { prefix: 'fas', iconName: 'coffee', icon: [640, 512, [], "f0f4", "M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z"] }; +var faCog = { prefix: 'fas', iconName: 'cog', icon: [512, 512, [], "f013", "M444.788 291.1l42.616 24.599c4.867 2.809 7.126 8.618 5.459 13.985-11.07 35.642-29.97 67.842-54.689 94.586a12.016 12.016 0 0 1-14.832 2.254l-42.584-24.595a191.577 191.577 0 0 1-60.759 35.13v49.182a12.01 12.01 0 0 1-9.377 11.718c-34.956 7.85-72.499 8.256-109.219.007-5.49-1.233-9.403-6.096-9.403-11.723v-49.184a191.555 191.555 0 0 1-60.759-35.13l-42.584 24.595a12.016 12.016 0 0 1-14.832-2.254c-24.718-26.744-43.619-58.944-54.689-94.586-1.667-5.366.592-11.175 5.459-13.985L67.212 291.1a193.48 193.48 0 0 1 0-70.199l-42.616-24.599c-4.867-2.809-7.126-8.618-5.459-13.985 11.07-35.642 29.97-67.842 54.689-94.586a12.016 12.016 0 0 1 14.832-2.254l42.584 24.595a191.577 191.577 0 0 1 60.759-35.13V25.759a12.01 12.01 0 0 1 9.377-11.718c34.956-7.85 72.499-8.256 109.219-.007 5.49 1.233 9.403 6.096 9.403 11.723v49.184a191.555 191.555 0 0 1 60.759 35.13l42.584-24.595a12.016 12.016 0 0 1 14.832 2.254c24.718 26.744 43.619 58.944 54.689 94.586 1.667 5.366-.592 11.175-5.459 13.985L444.788 220.9a193.485 193.485 0 0 1 0 70.2zM336 256c0-44.112-35.888-80-80-80s-80 35.888-80 80 35.888 80 80 80 80-35.888 80-80z"] }; +var faCogs = { prefix: 'fas', iconName: 'cogs', icon: [640, 512, [], "f085", "M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z"] }; +var faCoins = { prefix: 'fas', iconName: 'coins', icon: [512, 512, [], "f51e", "M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z"] }; +var faColumns = { prefix: 'fas', iconName: 'columns', icon: [512, 512, [], "f0db", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z"] }; +var faComment = { prefix: 'fas', iconName: 'comment', icon: [512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32z"] }; +var faCommentAlt = { prefix: 'fas', iconName: 'comment-alt', icon: [512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 9.8 11.2 15.5 19.1 9.7L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z"] }; +var faCommentDots = { prefix: 'fas', iconName: 'comment-dots', icon: [512, 512, [], "f4ad", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faCommentSlash = { prefix: 'fas', iconName: 'comment-slash', icon: [640, 512, [], "f4b3", "M64 240c0 49.6 21.4 95 57 130.7-12.6 50.3-54.3 95.2-54.8 95.8-2.2 2.3-2.8 5.7-1.5 8.7 1.3 2.9 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 27.4 0 53.7-3.6 78.4-10L72.9 186.4c-5.6 17.1-8.9 35-8.9 53.6zm569.8 218.1l-114.4-88.4C554.6 334.1 576 289.2 576 240c0-114.9-114.6-208-256-208-65.1 0-124.2 20.1-169.4 52.7L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z"] }; +var faComments = { prefix: 'fas', iconName: 'comments', icon: [576, 512, [], "f086", "M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z"] }; +var faCompactDisc = { prefix: 'fas', iconName: 'compact-disc', icon: [496, 512, [], "f51f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 256H56c0-105.9 86.1-192 192-192v32c-88.2 0-160 71.8-160 160zm160 96c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"] }; +var faCompass = { prefix: 'fas', iconName: 'compass', icon: [512, 512, [], "f14e", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM307.446 120.844l-102.642 97.779a23.997 23.997 0 0 0-6.772 11.729l-33.359 137.779c-5.68 23.459 22.777 39.318 39.88 23.024l102.64-97.779a23.99 23.99 0 0 0 6.772-11.729l33.359-137.779c5.618-23.198-22.591-39.493-39.878-23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; +var faCompress = { prefix: 'fas', iconName: 'compress', icon: [448, 512, [], "f066", "M436 192H312c-13.3 0-24-10.7-24-24V44c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-276-24V44c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v84H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 300V344c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-84h84c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H312c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"] }; +var faConciergeBell = { prefix: 'fas', iconName: 'concierge-bell', icon: [512, 512, [], "f562", "M288 130.54V112h16c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h16v18.54C115.49 146.11 32 239.18 32 352h448c0-112.82-83.49-205.89-192-221.46zM496 384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"] }; +var faCookie = { prefix: 'fas', iconName: 'cookie', icon: [512, 512, [], "f563", "M510.37 254.79l-12.08-76.26a132.493 132.493 0 0 0-37.16-72.95l-54.76-54.75c-19.73-19.72-45.18-32.7-72.71-37.05l-76.7-12.15c-27.51-4.36-55.69.11-80.52 12.76L107.32 49.6a132.25 132.25 0 0 0-57.79 57.8l-35.1 68.88a132.602 132.602 0 0 0-12.82 80.94l12.08 76.27a132.493 132.493 0 0 0 37.16 72.95l54.76 54.75a132.087 132.087 0 0 0 72.71 37.05l76.7 12.14c27.51 4.36 55.69-.11 80.52-12.75l69.12-35.21a132.302 132.302 0 0 0 57.79-57.8l35.1-68.87c12.71-24.96 17.2-53.3 12.82-80.96zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faCookieBite = { prefix: 'fas', iconName: 'cookie-bite', icon: [512, 512, [], "f564", "M510.52 255.82c-69.97-.85-126.47-57.69-126.47-127.86-70.17 0-127-56.49-127.86-126.45-27.26-4.14-55.13.3-79.72 12.82l-69.13 35.22a132.221 132.221 0 0 0-57.79 57.81l-35.1 68.88a132.645 132.645 0 0 0-12.82 80.95l12.08 76.27a132.521 132.521 0 0 0 37.16 72.96l54.77 54.76a132.036 132.036 0 0 0 72.71 37.06l76.71 12.15c27.51 4.36 55.7-.11 80.53-12.76l69.13-35.21a132.273 132.273 0 0 0 57.79-57.81l35.1-68.88c12.56-24.64 17.01-52.58 12.91-79.91zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faCopy = { prefix: 'fas', iconName: 'copy', icon: [448, 512, [], "f0c5", "M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z"] }; +var faCopyright = { prefix: 'fas', iconName: 'copyright', icon: [512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm117.134 346.753c-1.592 1.867-39.776 45.731-109.851 45.731-84.692 0-144.484-63.26-144.484-145.567 0-81.303 62.004-143.401 143.762-143.401 66.957 0 101.965 37.315 103.422 38.904a12 12 0 0 1 1.238 14.623l-22.38 34.655c-4.049 6.267-12.774 7.351-18.234 2.295-.233-.214-26.529-23.88-61.88-23.88-46.116 0-73.916 33.575-73.916 76.082 0 39.602 25.514 79.692 74.277 79.692 38.697 0 65.28-28.338 65.544-28.625 5.132-5.565 14.059-5.033 18.508 1.053l24.547 33.572a12.001 12.001 0 0 1-.553 14.866z"] }; +var faCouch = { prefix: 'fas', iconName: 'couch', icon: [640, 512, [], "f4b8", "M160 224v64h320v-64c0-35.3 28.7-64 64-64h32c0-53-43-96-96-96H160c-53 0-96 43-96 96h32c35.3 0 64 28.7 64 64zm416-32h-32c-17.7 0-32 14.3-32 32v96H128v-96c0-17.7-14.3-32-32-32H64c-35.3 0-64 28.7-64 64 0 23.6 13 44 32 55.1V432c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-16h384v16c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V311.1c19-11.1 32-31.5 32-55.1 0-35.3-28.7-64-64-64z"] }; +var faCreditCard = { prefix: 'fas', iconName: 'credit-card', icon: [576, 512, [], "f09d", "M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V256H0v176zm192-68c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-40zm-128 0c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM576 80v48H0V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48z"] }; +var faCrop = { prefix: 'fas', iconName: 'crop', icon: [512, 512, [], "f125", "M488 352h-40V109.25l59.31-59.31c6.25-6.25 6.25-16.38 0-22.63L484.69 4.69c-6.25-6.25-16.38-6.25-22.63 0L402.75 64H192v96h114.75L160 306.75V24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v264c0 13.25 10.75 24 24 24h232v-96H205.25L352 205.25V488c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"] }; +var faCropAlt = { prefix: 'fas', iconName: 'crop-alt', icon: [512, 512, [], "f565", "M488 352h-40V96c0-17.67-14.33-32-32-32H192v96h160v328c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24zM160 24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v256c0 17.67 14.33 32 32 32h224v-96H160V24z"] }; +var faCrosshairs = { prefix: 'fas', iconName: 'crosshairs', icon: [512, 512, [], "f05b", "M500 224h-30.364C455.724 130.325 381.675 56.276 288 42.364V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v30.364C130.325 56.276 56.276 130.325 42.364 224H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h30.364C56.276 381.675 130.325 455.724 224 469.636V500c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-30.364C381.675 455.724 455.724 381.675 469.636 288H500c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zM288 404.634V364c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40.634C165.826 392.232 119.783 346.243 107.366 288H148c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40.634C119.768 165.826 165.757 119.783 224 107.366V148c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40.634C346.174 119.768 392.217 165.757 404.634 224H364c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40.634C392.232 346.174 346.243 392.217 288 404.634zM288 256c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z"] }; +var faCrow = { prefix: 'fas', iconName: 'crow', icon: [640, 512, [], "f520", "M544 32h-16.36C513.04 12.68 490.09 0 464 0c-44.18 0-80 35.82-80 80v20.98L12.09 393.57A30.216 30.216 0 0 0 0 417.74c0 22.46 23.64 37.07 43.73 27.03L165.27 384h96.49l44.41 120.1c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38L312.94 384H352c1.91 0 3.76-.23 5.66-.29l44.51 120.38c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38l-41.24-111.53C485.74 352.8 544 279.26 544 192v-80l96-16c0-35.35-42.98-64-96-64zm-80 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"] }; +var faCrown = { prefix: 'fas', iconName: 'crown', icon: [640, 512, [], "f521", "M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.4 7.7-.8L128 416h384l72.3-192.8c2.5.4 5.1.8 7.7.8 26.5 0 48-21.5 48-48s-21.5-48-48-48z"] }; +var faCube = { prefix: 'fas', iconName: 'cube', icon: [512, 512, [], "f1b2", "M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z"] }; +var faCubes = { prefix: 'fas', iconName: 'cubes', icon: [512, 512, [], "f1b3", "M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z"] }; +var faCut = { prefix: 'fas', iconName: 'cut', icon: [448, 512, [], "f0c4", "M278.06 256L444.48 89.57c4.69-4.69 4.69-12.29 0-16.97-32.8-32.8-85.99-32.8-118.79 0L210.18 188.12l-24.86-24.86c4.31-10.92 6.68-22.81 6.68-35.26 0-53.02-42.98-96-96-96S0 74.98 0 128s42.98 96 96 96c4.54 0 8.99-.32 13.36-.93L142.29 256l-32.93 32.93c-4.37-.61-8.83-.93-13.36-.93-53.02 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96c0-12.45-2.37-24.34-6.68-35.26l24.86-24.86L325.69 439.4c32.8 32.8 85.99 32.8 118.79 0 4.69-4.68 4.69-12.28 0-16.97L278.06 256zM96 160c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32zm0 256c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z"] }; +var faDatabase = { prefix: 'fas', iconName: 'database', icon: [448, 512, [], "f1c0", "M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z"] }; +var faDeaf = { prefix: 'fas', iconName: 'deaf', icon: [512, 512, [], "f2a4", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm268.485-52.201L480.2 3.515c-4.687-4.686-12.284-4.686-16.971 0L376.2 90.544c-4.686 4.686-4.686 12.284 0 16.971l28.285 28.285c4.686 4.686 12.284 4.686 16.97 0l87.03-87.029c4.687-4.688 4.687-12.286 0-16.972zM168.97 314.745c-4.686-4.686-12.284-4.686-16.97 0L3.515 463.23c-4.686 4.686-4.686 12.284 0 16.971L31.8 508.485c4.687 4.686 12.284 4.686 16.971 0L197.256 360c4.686-4.686 4.686-12.284 0-16.971l-28.286-28.284z"] }; +var faDesktop = { prefix: 'fas', iconName: 'desktop', icon: [576, 512, [], "f108", "M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z"] }; +var faDiagnoses = { prefix: 'fas', iconName: 'diagnoses', icon: [640, 512, [], "f470", "M496 256c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm-176-80c48.5 0 88-39.5 88-88S368.5 0 320 0s-88 39.5-88 88 39.5 88 88 88zM59.8 364c10.2 15.3 29.3 17.8 42.9 9.8 16.2-9.6 56.2-31.7 105.3-48.6V416h224v-90.7c49.1 16.8 89.1 39 105.3 48.6 13.6 8 32.7 5.3 42.9-9.8l17.8-26.7c8.8-13.2 7.6-34.6-10-45.1-11.9-7.1-29.7-17-51.1-27.4-28.1 46.1-99.4 17.8-87.7-35.1C409.3 217.2 365.1 208 320 208c-57 0-112.9 14.5-160 32.2-.2 40.2-47.6 63.3-79.2 36-11.2 6-21.3 11.6-28.7 16-17.6 10.5-18.8 31.8-10 45.1L59.8 364zM368 344c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-160 8c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm512 192H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z"] }; +var faDice = { prefix: 'fas', iconName: 'dice', icon: [640, 512, [], "f522", "M592 192H473.26c12.69 29.59 7.12 65.2-17 89.32L320 417.58V464c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48V240c0-26.51-21.49-48-48-48zM480 376c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm-46.37-186.7L258.7 14.37c-19.16-19.16-50.23-19.16-69.39 0L14.37 189.3c-19.16 19.16-19.16 50.23 0 69.39L189.3 433.63c19.16 19.16 50.23 19.16 69.39 0L433.63 258.7c19.16-19.17 19.16-50.24 0-69.4zM96 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"] }; +var faDiceFive = { prefix: 'fas', iconName: 'dice-five', icon: [448, 512, [], "f523", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceFour = { prefix: 'fas', iconName: 'dice-four', icon: [448, 512, [], "f524", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceOne = { prefix: 'fas', iconName: 'dice-one', icon: [448, 512, [], "f525", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM224 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceSix = { prefix: 'fas', iconName: 'dice-six', icon: [448, 512, [], "f526", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceThree = { prefix: 'fas', iconName: 'dice-three', icon: [448, 512, [], "f527", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceTwo = { prefix: 'fas', iconName: 'dice-two', icon: [448, 512, [], "f528", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDigitalTachograph = { prefix: 'fas', iconName: 'digital-tachograph', icon: [640, 512, [], "f566", "M608 96H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128c0-17.67-14.33-32-32-32zM304 352c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8zM72 288v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H80c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm40-64c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-48c0-8.84 7.16-16 16-16h208c8.84 0 16 7.16 16 16v48zm272 128c0 4.42-3.58 8-8 8H344c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8z"] }; +var faDivide = { prefix: 'fas', iconName: 'divide', icon: [448, 512, [], "f529", "M224 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm0-192c35.35 0 64-28.65 64-64s-28.65-64-64-64-64 28.65-64 64 28.65 64 64 64zm192 48H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; +var faDizzy = { prefix: 'fas', iconName: 'dizzy', icon: [496, 512, [], "f567", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-96 206.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L174.6 192l28.7 28.7c15.2 15.2-7.9 37.4-22.6 22.6L152 214.6zM248 416c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm147.3-195.3c15.2 15.2-7.9 37.4-22.6 22.6L344 214.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L366.6 192l28.7 28.7z"] }; +var faDna = { prefix: 'fas', iconName: 'dna', icon: [448, 512, [], "f471", "M.1 494.1c-1.1 9.5 6.3 17.8 15.9 17.8l32.3.1c8.1 0 14.9-5.9 16-13.9.7-4.9 1.8-11.1 3.4-18.1H380c1.6 6.9 2.9 13.2 3.5 18.1 1.1 8 7.9 14 16 13.9l32.3-.1c9.6 0 17.1-8.3 15.9-17.8-4.6-37.9-25.6-129-118.9-207.7-17.6 12.4-37.1 24.2-58.5 35.4 6.2 4.6 11.4 9.4 17 14.2H159.7c21.3-18.1 47-35.6 78.7-51.4C410.5 199.1 442.1 65.8 447.9 17.9 449 8.4 441.6.1 432 .1L399.6 0c-8.1 0-14.9 5.9-16 13.9-.7 4.9-1.8 11.1-3.4 18.1H67.8c-1.6-7-2.7-13.1-3.4-18.1-1.1-8-7.9-14-16-13.9L16.1.1C6.5.1-1 8.4.1 17.9 5.3 60.8 31.4 171.8 160 256 31.5 340.2 5.3 451.2.1 494.1zM224 219.6c-25.1-13.7-46.4-28.4-64.3-43.6h128.5c-17.8 15.2-39.1 30-64.2 43.6zM355.1 96c-5.8 10.4-12.8 21.1-21 32H114c-8.3-10.9-15.3-21.6-21-32h262.1zM92.9 416c5.8-10.4 12.8-21.1 21-32h219.4c8.3 10.9 15.4 21.6 21.2 32H92.9z"] }; +var faDollarSign = { prefix: 'fas', iconName: 'dollar-sign', icon: [288, 512, [], "f155", "M209.2 233.4l-108-31.6C88.7 198.2 80 186.5 80 173.5c0-16.3 13.2-29.5 29.5-29.5h66.3c12.2 0 24.2 3.7 34.2 10.5 6.1 4.1 14.3 3.1 19.5-2l34.8-34c7.1-6.9 6.1-18.4-1.8-24.5C238 74.8 207.4 64.1 176 64V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C45.8 64-5.4 118.7.5 183.6c4.2 46.1 39.4 83.6 83.8 96.6l102.5 30c12.5 3.7 21.2 15.3 21.2 28.3 0 16.3-13.2 29.5-29.5 29.5h-66.3C100 368 88 364.3 78 357.5c-6.1-4.1-14.3-3.1-19.5 2l-34.8 34c-7.1 6.9-6.1 18.4 1.8 24.5 24.5 19.2 55.1 29.9 86.5 30v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48.2c46.6-.9 90.3-28.6 105.7-72.7 21.5-61.6-14.6-124.8-72.5-141.7z"] }; +var faDolly = { prefix: 'fas', iconName: 'dolly', icon: [576, 512, [], "f472", "M294.2 277.7c18 5 34.7 13.4 49.5 24.7l161.5-53.8c8.4-2.8 12.9-11.9 10.1-20.2L454.9 47.2c-2.8-8.4-11.9-12.9-20.2-10.1l-61.1 20.4 33.1 99.4L346 177l-33.1-99.4-61.6 20.5c-8.4 2.8-12.9 11.9-10.1 20.2l53 159.4zm281 48.7L565 296c-2.8-8.4-11.9-12.9-20.2-10.1l-213.5 71.2c-17.2-22-43.6-36.4-73.5-37L158.4 21.9C154 8.8 141.8 0 128 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h88.9l92.2 276.7c-26.1 20.4-41.7 53.6-36 90.5 6.1 39.4 37.9 72.3 77.3 79.2 60.2 10.7 112.3-34.8 113.4-92.6l213.3-71.2c8.3-2.8 12.9-11.8 10.1-20.2zM256 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; +var faDollyFlatbed = { prefix: 'fas', iconName: 'dolly-flatbed', icon: [640, 512, [], "f474", "M208 320h384c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H448v128l-48-32-48 32V32H208c-8.8 0-16 7.2-16 16v256c0 8.8 7.2 16 16 16zm416 64H128V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h82.9c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H451c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H624c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z"] }; +var faDonate = { prefix: 'fas', iconName: 'donate', icon: [512, 512, [], "f4b9", "M256 416c114.9 0 208-93.1 208-208S370.9 0 256 0 48 93.1 48 208s93.1 208 208 208zM233.8 97.4V80.6c0-9.2 7.4-16.6 16.6-16.6h11.1c9.2 0 16.6 7.4 16.6 16.6v17c15.5.8 30.5 6.1 43 15.4 5.6 4.1 6.2 12.3 1.2 17.1L306 145.6c-3.8 3.7-9.5 3.8-14 1-5.4-3.4-11.4-5.1-17.8-5.1h-38.9c-9 0-16.3 8.2-16.3 18.3 0 8.2 5 15.5 12.1 17.6l62.3 18.7c25.7 7.7 43.7 32.4 43.7 60.1 0 34-26.4 61.5-59.1 62.4v16.8c0 9.2-7.4 16.6-16.6 16.6h-11.1c-9.2 0-16.6-7.4-16.6-16.6v-17c-15.5-.8-30.5-6.1-43-15.4-5.6-4.1-6.2-12.3-1.2-17.1l16.3-15.5c3.8-3.7 9.5-3.8 14-1 5.4 3.4 11.4 5.1 17.8 5.1h38.9c9 0 16.3-8.2 16.3-18.3 0-8.2-5-15.5-12.1-17.6l-62.3-18.7c-25.7-7.7-43.7-32.4-43.7-60.1.1-34 26.4-61.5 59.1-62.4zM480 352h-32.5c-19.6 26-44.6 47.7-73 64h63.8c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8h63.8c-28.4-16.3-53.3-38-73-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32z"] }; +var faDoorClosed = { prefix: 'fas', iconName: 'door-closed', icon: [640, 512, [], "f52a", "M624 448H512V50.8C512 22.78 490.47 0 464 0H175.99c-26.47 0-48 22.78-48 50.8V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM415.99 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32c.01 17.67-14.32 32-32 32z"] }; +var faDoorOpen = { prefix: 'fas', iconName: 'door-open', icon: [640, 512, [], "f52b", "M624 448h-80V113.45C544 86.19 522.47 64 496 64H384v64h96v384h144c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM312.24 1.01l-192 49.74C105.99 54.44 96 67.7 96 82.92V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h336V33.18c0-21.58-19.56-37.41-39.76-32.17zM264 288c-13.25 0-24-14.33-24-32s10.75-32 24-32 24 14.33 24 32-10.75 32-24 32z"] }; +var faDotCircle = { prefix: 'fas', iconName: 'dot-circle', icon: [512, 512, [], "f192", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z"] }; +var faDove = { prefix: 'fas', iconName: 'dove', icon: [512, 512, [], "f4ba", "M288 167.2v-28.1c-28.2-36.3-47.1-79.3-54.1-125.2-2.1-13.5-19-18.8-27.8-8.3-21.1 24.9-37.7 54.1-48.9 86.5 34.2 38.3 80 64.6 130.8 75.1zM400 64c-44.2 0-80 35.9-80 80.1v59.4C215.6 197.3 127 133 87 41.8c-5.5-12.5-23.2-13.2-29-.9C41.4 76 32 115.2 32 156.6c0 70.8 34.1 136.9 85.1 185.9 13.2 12.7 26.1 23.2 38.9 32.8l-143.9 36C1.4 414-3.4 426.4 2.6 435.7 20 462.6 63 508.2 155.8 512c8 .3 16-2.6 22.1-7.9l65.2-56.1H320c88.4 0 160-71.5 160-159.9V128l32-64H400zm0 96.1c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"] }; +var faDownload = { prefix: 'fas', iconName: 'download', icon: [512, 512, [], "f019", "M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"] }; +var faDraftingCompass = { prefix: 'fas', iconName: 'drafting-compass', icon: [512, 512, [], "f568", "M457.01 344.42c-25.05 20.33-52.63 37.18-82.54 49.05l54.38 94.19 53.95 23.04c9.81 4.19 20.89-2.21 22.17-12.8l7.02-58.25-54.98-95.23zm42.49-94.56c4.86-7.67 1.89-17.99-6.05-22.39l-28.07-15.57c-7.48-4.15-16.61-1.46-21.26 5.72C403.01 281.15 332.25 320 256 320c-23.93 0-47.23-4.25-69.41-11.53l67.36-116.68c.7.02 1.34.21 2.04.21s1.35-.19 2.04-.21l51.09 88.5c31.23-8.96 59.56-25.75 82.61-48.92l-51.79-89.71C347.39 128.03 352 112.63 352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96c0 16.63 4.61 32.03 12.05 45.66l-68.3 118.31c-12.55-11.61-23.96-24.59-33.68-39-4.79-7.1-13.97-9.62-21.38-5.33l-27.75 16.07c-7.85 4.54-10.63 14.9-5.64 22.47 15.57 23.64 34.69 44.21 55.98 62.02L0 439.66l7.02 58.25c1.28 10.59 12.36 16.99 22.17 12.8l53.95-23.04 70.8-122.63C186.13 377.28 220.62 384 256 384c99.05 0 190.88-51.01 243.5-134.14zM256 64c17.67 0 32 14.33 32 32s-14.33 32-32 32-32-14.33-32-32 14.33-32 32-32z"] }; +var faDrum = { prefix: 'fas', iconName: 'drum', icon: [576, 512, [], "f569", "M458.08 120.88l102.39-61.43c15.16-9.09 20.06-28.75 10.97-43.91C562.34.39 542.7-4.53 527.53 4.57l-160.69 96.41A629.32 629.32 0 0 0 288 96C128.94 96 0 153.31 0 224v160.83c0 30.46 24.03 58.4 64 80.37v-96.37c0-17.6 14.4-32 32-32s32 14.4 32 32v122.41c37.4 11.13 81 18.44 128 20.75V400.84c0-17.6 14.4-32 32-32s32 14.4 32 32V512c47-2.31 90.6-9.62 128-20.75V368.84c0-17.6 14.4-32 32-32s32 14.4 32 32v96.37c39.97-21.97 64-49.91 64-80.37V224.01c-.01-42.38-46.54-79.84-117.92-103.13zM288 304c-132.55 0-240-35.82-240-80s107.45-80 240-80c2.34 0 4.62.1 6.94.12l-87.41 52.44c-15.16 9.09-20.06 28.75-10.97 43.91 9.56 15.93 29.51 19.61 43.91 10.97l162.71-97.62C477.55 167.41 528 193.74 528 224.01 528 268.19 420.54 304 288 304z"] }; +var faDrumSteelpan = { prefix: 'fas', iconName: 'drum-steelpan', icon: [576, 512, [], "f56a", "M288 32C128.94 32 0 89.31 0 160v192c0 70.69 128.94 128 288 128s288-57.31 288-128V160c0-70.69-128.94-128-288-128zm-82.99 158.36c-4.45 16.61-14.54 30.57-28.31 40.48C100.23 217.46 48 190.78 48 160c0-30.16 50.11-56.39 124.04-70.03l25.6 44.34c9.86 17.09 12.48 36.99 7.37 56.05zM288 240c-21.08 0-41.41-1-60.89-2.7 8.06-26.13 32.15-45.3 60.89-45.3s52.83 19.17 60.89 45.3C329.41 239 309.08 240 288 240zm64-144c0 35.29-28.71 64-64 64s-64-28.71-64-64V82.96c20.4-1.88 41.8-2.96 64-2.96s43.6 1.08 64 2.96V96zm46.93 134.9c-13.81-9.91-23.94-23.9-28.4-40.54-5.11-19.06-2.49-38.96 7.38-56.04l25.65-44.42C477.72 103.5 528 129.79 528 160c0 30.83-52.4 57.54-129.07 70.9z"] }; +var faDumbbell = { prefix: 'fas', iconName: 'dumbbell', icon: [640, 512, [], "f44b", "M104 96H56c-13.3 0-24 10.7-24 24v104H8c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h24v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm528 128h-24V120c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v272c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h24c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM456 32h-48c-13.3 0-24 10.7-24 24v168H256V56c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v400c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h128v168c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24z"] }; +var faEdit = { prefix: 'fas', iconName: 'edit', icon: [576, 512, [], "f044", "M402.6 83.2l90.2 90.2c3.8 3.8 3.8 10 0 13.8L274.4 405.6l-92.8 10.3c-12.4 1.4-22.9-9.1-21.5-21.5l10.3-92.8L388.8 83.2c3.8-3.8 10-3.8 13.8 0zm162-22.9l-48.8-48.8c-15.2-15.2-39.9-15.2-55.2 0l-35.4 35.4c-3.8 3.8-3.8 10 0 13.8l90.2 90.2c3.8 3.8 10 3.8 13.8 0l35.4-35.4c15.2-15.3 15.2-40 0-55.2zM384 346.2V448H64V128h229.8c3.2 0 6.2-1.3 8.5-3.5l40-40c7.6-7.6 2.2-20.5-8.5-20.5H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V306.2c0-10.7-12.9-16-20.5-8.5l-40 40c-2.2 2.3-3.5 5.3-3.5 8.5z"] }; +var faEject = { prefix: 'fas', iconName: 'eject', icon: [448, 512, [], "f052", "M448 384v64c0 17.673-14.327 32-32 32H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h384c17.673 0 32 14.327 32 32zM48.053 320h351.886c41.651 0 63.581-49.674 35.383-80.435L259.383 47.558c-19.014-20.743-51.751-20.744-70.767 0L12.67 239.565C-15.475 270.268 6.324 320 48.053 320z"] }; +var faEllipsisH = { prefix: 'fas', iconName: 'ellipsis-h', icon: [512, 512, [], "f141", "M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z"] }; +var faEllipsisV = { prefix: 'fas', iconName: 'ellipsis-v', icon: [192, 512, [], "f142", "M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z"] }; +var faEnvelope = { prefix: 'fas', iconName: 'envelope', icon: [512, 512, [], "f0e0", "M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"] }; +var faEnvelopeOpen = { prefix: 'fas', iconName: 'envelope-open', icon: [512, 512, [], "f2b6", "M512 464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V200.724a48 48 0 0 1 18.387-37.776c24.913-19.529 45.501-35.365 164.2-121.511C199.412 29.17 232.797-.347 256 .003c23.198-.354 56.596 29.172 73.413 41.433 118.687 86.137 139.303 101.995 164.2 121.512A48 48 0 0 1 512 200.724V464zm-65.666-196.605c-2.563-3.728-7.7-4.595-11.339-1.907-22.845 16.873-55.462 40.705-105.582 77.079-16.825 12.266-50.21 41.781-73.413 41.43-23.211.344-56.559-29.143-73.413-41.43-50.114-36.37-82.734-60.204-105.582-77.079-3.639-2.688-8.776-1.821-11.339 1.907l-9.072 13.196a7.998 7.998 0 0 0 1.839 10.967c22.887 16.899 55.454 40.69 105.303 76.868 20.274 14.781 56.524 47.813 92.264 47.573 35.724.242 71.961-32.771 92.263-47.573 49.85-36.179 82.418-59.97 105.303-76.868a7.998 7.998 0 0 0 1.839-10.967l-9.071-13.196z"] }; +var faEnvelopeSquare = { prefix: 'fas', iconName: 'envelope-square', icon: [448, 512, [], "f199", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM178.117 262.104C87.429 196.287 88.353 196.121 64 177.167V152c0-13.255 10.745-24 24-24h272c13.255 0 24 10.745 24 24v25.167c-24.371 18.969-23.434 19.124-114.117 84.938-10.5 7.655-31.392 26.12-45.883 25.894-14.503.218-35.367-18.227-45.883-25.895zM384 217.775V360c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V217.775c13.958 10.794 33.329 25.236 95.303 70.214 14.162 10.341 37.975 32.145 64.694 32.01 26.887.134 51.037-22.041 64.72-32.025 61.958-44.965 81.325-59.406 95.283-70.199z"] }; +var faEquals = { prefix: 'fas', iconName: 'equals', icon: [448, 512, [], "f52c", "M416 304H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32zm0-192H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; +var faEraser = { prefix: 'fas', iconName: 'eraser', icon: [512, 512, [], "f12d", "M497.941 273.941c18.745-18.745 18.745-49.137 0-67.882l-160-160c-18.745-18.745-49.136-18.746-67.883 0l-256 256c-18.745 18.745-18.745 49.137 0 67.882l96 96A48.004 48.004 0 0 0 144 480h356c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H355.883l142.058-142.059zm-302.627-62.627l137.373 137.373L265.373 416H150.628l-80-80 124.686-124.686z"] }; +var faEuroSign = { prefix: 'fas', iconName: 'euro-sign', icon: [320, 512, [], "f153", "M310.706 413.765c-1.314-6.63-7.835-10.872-14.424-9.369-10.692 2.439-27.422 5.413-45.426 5.413-56.763 0-101.929-34.79-121.461-85.449h113.689a12 12 0 0 0 11.708-9.369l6.373-28.36c1.686-7.502-4.019-14.631-11.708-14.631H115.22c-1.21-14.328-1.414-28.287.137-42.245H261.95a12 12 0 0 0 11.723-9.434l6.512-29.755c1.638-7.484-4.061-14.566-11.723-14.566H130.184c20.633-44.991 62.69-75.03 117.619-75.03 14.486 0 28.564 2.25 37.851 4.145 6.216 1.268 12.347-2.498 14.002-8.623l11.991-44.368c1.822-6.741-2.465-13.616-9.326-14.917C290.217 34.912 270.71 32 249.635 32 152.451 32 74.03 92.252 45.075 176H12c-6.627 0-12 5.373-12 12v29.755c0 6.627 5.373 12 12 12h21.569c-1.009 13.607-1.181 29.287-.181 42.245H12c-6.627 0-12 5.373-12 12v28.36c0 6.627 5.373 12 12 12h30.114C67.139 414.692 145.264 480 249.635 480c26.301 0 48.562-4.544 61.101-7.788 6.167-1.595 10.027-7.708 8.788-13.957l-8.818-44.49z"] }; +var faExchangeAlt = { prefix: 'fas', iconName: 'exchange-alt', icon: [512, 512, [], "f362", "M0 168v-16c0-13.255 10.745-24 24-24h360V80c0-21.367 25.899-32.042 40.971-16.971l80 80c9.372 9.373 9.372 24.569 0 33.941l-80 80C409.956 271.982 384 261.456 384 240v-48H24c-13.255 0-24-10.745-24-24zm488 152H128v-48c0-21.314-25.862-32.08-40.971-16.971l-80 80c-9.372 9.373-9.372 24.569 0 33.941l80 80C102.057 463.997 128 453.437 128 432v-48h360c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z"] }; +var faExclamation = { prefix: 'fas', iconName: 'exclamation', icon: [192, 512, [], "f12a", "M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z"] }; +var faExclamationCircle = { prefix: 'fas', iconName: 'exclamation-circle', icon: [512, 512, [], "f06a", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"] }; +var faExclamationTriangle = { prefix: 'fas', iconName: 'exclamation-triangle', icon: [576, 512, [], "f071", "M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"] }; +var faExpand = { prefix: 'fas', iconName: 'expand', icon: [448, 512, [], "f065", "M0 180V56c0-13.3 10.7-24 24-24h124c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H64v84c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12zM288 44v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V56c0-13.3-10.7-24-24-24H300c-6.6 0-12 5.4-12 12zm148 276h-40c-6.6 0-12 5.4-12 12v84h-84c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24V332c0-6.6-5.4-12-12-12zM160 468v-40c0-6.6-5.4-12-12-12H64v-84c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v124c0 13.3 10.7 24 24 24h124c6.6 0 12-5.4 12-12z"] }; +var faExpandArrowsAlt = { prefix: 'fas', iconName: 'expand-arrows-alt', icon: [448, 512, [], "f31e", "M448.1 344v112c0 13.3-10.7 24-24 24h-112c-21.4 0-32.1-25.9-17-41l36.2-36.2L224 295.6 116.8 402.9 153 439c15.1 15.1 4.4 41-17 41H24c-13.3 0-24-10.7-24-24V344c0-21.4 25.9-32.1 41-17l36.2 36.2L184.5 256 77.2 148.7 41 185c-15.1 15.1-41 4.4-41-17V56c0-13.3 10.7-24 24-24h112c21.4 0 32.1 25.9 17 41l-36.2 36.2L224 216.4l107.3-107.3L295.1 73c-15.1-15.1-4.4-41 17-41h112c13.3 0 24 10.7 24 24v112c0 21.4-25.9 32.1-41 17l-36.2-36.2L263.6 256l107.3 107.3 36.2-36.2c15.1-15.2 41-4.5 41 16.9z"] }; +var faExternalLinkAlt = { prefix: 'fas', iconName: 'external-link-alt', icon: [576, 512, [], "f35d", "M576 24v127.984c0 21.461-25.96 31.98-40.971 16.971l-35.707-35.709-243.523 243.523c-9.373 9.373-24.568 9.373-33.941 0l-22.627-22.627c-9.373-9.373-9.373-24.569 0-33.941L442.756 76.676l-35.703-35.705C391.982 25.9 402.656 0 424.024 0H552c13.255 0 24 10.745 24 24zM407.029 270.794l-16 16A23.999 23.999 0 0 0 384 303.765V448H64V128h264a24.003 24.003 0 0 0 16.97-7.029l16-16C376.089 89.851 365.381 64 344 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V287.764c0-21.382-25.852-32.09-40.971-16.97z"] }; +var faExternalLinkSquareAlt = { prefix: 'fas', iconName: 'external-link-square-alt', icon: [448, 512, [], "f360", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-88 16H248.029c-21.313 0-32.08 25.861-16.971 40.971l31.984 31.987L67.515 364.485c-4.686 4.686-4.686 12.284 0 16.971l31.029 31.029c4.687 4.686 12.285 4.686 16.971 0l195.526-195.526 31.988 31.991C358.058 263.977 384 253.425 384 231.979V120c0-13.255-10.745-24-24-24z"] }; +var faEye = { prefix: 'fas', iconName: 'eye', icon: [576, 512, [], "f06e", "M569.354 231.631C512.969 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-75.162 0-136-60.827-136-136 0-75.162 60.826-136 136-136 75.162 0 136 60.826 136 136 0 75.162-60.826 136-136 136zm104-136c0 57.438-46.562 104-104 104s-104-46.562-104-104c0-17.708 4.431-34.379 12.236-48.973l-.001.032c0 23.651 19.173 42.823 42.824 42.823s42.824-19.173 42.824-42.823c0-23.651-19.173-42.824-42.824-42.824l-.032.001C253.621 156.431 270.292 152 288 152c57.438 0 104 46.562 104 104z"] }; +var faEyeDropper = { prefix: 'fas', iconName: 'eye-dropper', icon: [512, 512, [], "f1fb", "M50.75 333.25c-12 12-18.75 28.28-18.75 45.26V424L0 480l32 32 56-32h45.49c16.97 0 33.25-6.74 45.25-18.74l126.64-126.62-128-128L50.75 333.25zM483.88 28.12c-37.47-37.5-98.28-37.5-135.75 0l-77.09 77.09-13.1-13.1c-9.44-9.44-24.65-9.31-33.94 0l-40.97 40.97c-9.37 9.37-9.37 24.57 0 33.94l161.94 161.94c9.44 9.44 24.65 9.31 33.94 0L419.88 288c9.37-9.37 9.37-24.57 0-33.94l-13.1-13.1 77.09-77.09c37.51-37.48 37.51-98.26.01-135.75z"] }; +var faEyeSlash = { prefix: 'fas', iconName: 'eye-slash', icon: [576, 512, [], "f070", "M286.693 391.984l32.579 46.542A333.958 333.958 0 0 1 288 440C168.19 440 63.031 376.051 6.646 280.369a47.999 47.999 0 0 1 0-48.739c24.023-40.766 56.913-75.775 96.024-102.537l57.077 81.539C154.736 224.82 152 240.087 152 256c0 74.736 60.135 135.282 134.693 135.984zm282.661-111.615c-31.667 53.737-78.747 97.46-135.175 125.475l.011.015 41.47 59.2c7.6 10.86 4.96 25.82-5.9 33.42l-13.11 9.18c-10.86 7.6-25.82 4.96-33.42-5.9L100.34 46.94c-7.6-10.86-4.96-25.82 5.9-33.42l13.11-9.18c10.86-7.6 25.82-4.96 33.42 5.9l51.038 72.617C230.68 75.776 258.905 72 288 72c119.81 0 224.969 63.949 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM424 256c0-75.174-60.838-136-136-136-17.939 0-35.056 3.473-50.729 9.772l19.299 27.058c25.869-8.171 55.044-6.163 80.4 7.41h-.03c-23.65 0-42.82 19.17-42.82 42.82 0 23.626 19.147 42.82 42.82 42.82 23.65 0 42.82-19.17 42.82-42.82v-.03c18.462 34.49 16.312 77.914-8.25 110.95v.01l19.314 27.061C411.496 321.2 424 290.074 424 256zM262.014 356.727l-77.53-110.757c-5.014 52.387 29.314 98.354 77.53 110.757z"] }; +var faFastBackward = { prefix: 'fas', iconName: 'fast-backward', icon: [512, 512, [], "f049", "M0 436V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v151.9L235.5 71.4C256.1 54.3 288 68.6 288 96v131.9L459.5 71.4C480.1 54.3 512 68.6 512 96v320c0 27.4-31.9 41.7-52.5 24.6L288 285.3V416c0 27.4-31.9 41.7-52.5 24.6L64 285.3V436c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12z"] }; +var faFastForward = { prefix: 'fas', iconName: 'fast-forward', icon: [512, 512, [], "f050", "M512 76v360c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V284.1L276.5 440.6c-20.6 17.2-52.5 2.8-52.5-24.6V284.1L52.5 440.6C31.9 457.8 0 443.4 0 416V96c0-27.4 31.9-41.7 52.5-24.6L224 226.8V96c0-27.4 31.9-41.7 52.5-24.6L448 226.8V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12z"] }; +var faFax = { prefix: 'fas', iconName: 'fax', icon: [512, 512, [], "f1ac", "M128 144v320c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V144c0-26.51 21.49-48 48-48h32c26.51 0 48 21.49 48 48zm384 64v256c0 26.51-21.49 48-48 48H192c-26.51 0-48-21.49-48-48V40c0-22.091 17.909-40 40-40h207.432a39.996 39.996 0 0 1 28.284 11.716l48.569 48.569A39.999 39.999 0 0 1 480 88.568v74.174c18.641 6.591 32 24.36 32 45.258zm-320-16h240V96h-24c-13.203 0-24-10.797-24-24V48H192v144zm96 204c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm128 128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40z"] }; +var faFeather = { prefix: 'fas', iconName: 'feather', icon: [512, 512, [], "f52d", "M467.14 44.84c-62.55-62.48-161.67-64.78-252.28 25.73-78.61 78.52-60.98 60.92-85.75 85.66-60.46 60.39-70.39 150.83-63.64 211.17l178.44-178.25c6.26-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.6 9.37 33.98 0l66.1-66.03C159.42 454.65 279 457.11 353.95 384h-98.19l147.57-49.14c49.99-49.93 36.38-36.18 46.31-46.86h-97.78l131.54-43.8c45.44-74.46 34.31-148.84-16.26-199.36z"] }; +var faFeatherAlt = { prefix: 'fas', iconName: 'feather-alt', icon: [512, 512, [], "f56b", "M512 0C460.22 3.56 96.44 38.2 71.01 287.61c-3.09 26.66-4.84 53.44-5.99 80.24l178.87-178.69c6.25-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.59 9.37 33.98 0l57.13-57.07c42.09-.14 84.15-2.53 125.96-7.36 53.48-5.44 97.02-26.47 132.58-56.54H255.74l146.79-48.88c11.25-14.89 21.37-30.71 30.45-47.12h-81.14l106.54-53.21C500.29 132.86 510.19 26.26 512 0z"] }; +var faFemale = { prefix: 'fas', iconName: 'female', icon: [256, 512, [], "f182", "M128 0c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64S92.654 0 128 0m119.283 354.179l-48-192A24 24 0 0 0 176 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H80a24 24 0 0 0-23.283 18.179l-48 192C4.935 369.305 16.383 384 32 384h56v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V384h56c15.591 0 27.071-14.671 23.283-29.821z"] }; +var faFighterJet = { prefix: 'fas', iconName: 'fighter-jet', icon: [640, 512, [], "f0fb", "M544 224l-128-16-48-16h-24L227.158 44h39.509C278.333 44 288 41.375 288 38s-9.667-6-21.333-6H152v12h16v164h-48l-66.667-80H18.667L8 138.667V208h8v16h48v2.666l-64 8v42.667l64 8V288H16v16H8v69.333L18.667 384h34.667L120 304h48v164h-16v12h114.667c11.667 0 21.333-2.625 21.333-6s-9.667-6-21.333-6h-39.509L344 320h24l48-16 128-16c96-21.333 96-26.583 96-32 0-5.417 0-10.667-96-32z"] }; +var faFile = { prefix: 'fas', iconName: 'file', icon: [384, 512, [], "f15b", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileAlt = { prefix: 'fas', iconName: 'file-alt', icon: [384, 512, [], "f15c", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileArchive = { prefix: 'fas', iconName: 'file-archive', icon: [384, 512, [], "f1c6", "M224 136V0h-63.6v32h-32V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM95.9 32h32v32h-32V32zm32.3 384c-33.2 0-58-30.4-51.4-62.9L96.4 256v-32h32v-32h-32v-32h32v-32h-32V96h32V64h32v32h-32v32h32v32h-32v32h32v32h-32v32h22.1c5.7 0 10.7 4.1 11.8 9.7l17.3 87.7c6.4 32.4-18.4 62.6-51.4 62.6zm32.7-53c0 14.9-14.5 27-32.4 27S96 378 96 363c0-14.9 14.5-27 32.4-27s32.5 12.1 32.5 27zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileAudio = { prefix: 'fas', iconName: 'file-audio', icon: [384, 512, [], "f1c7", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileCode = { prefix: 'fas', iconName: 'file-code', icon: [384, 512, [], "f1c9", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zM123.206 400.505a5.4 5.4 0 0 1-7.633.246l-64.866-60.812a5.4 5.4 0 0 1 0-7.879l64.866-60.812a5.4 5.4 0 0 1 7.633.246l19.579 20.885a5.4 5.4 0 0 1-.372 7.747L101.65 336l40.763 35.874a5.4 5.4 0 0 1 .372 7.747l-19.579 20.884zm51.295 50.479l-27.453-7.97a5.402 5.402 0 0 1-3.681-6.692l61.44-211.626a5.402 5.402 0 0 1 6.692-3.681l27.452 7.97a5.4 5.4 0 0 1 3.68 6.692l-61.44 211.626a5.397 5.397 0 0 1-6.69 3.681zm160.792-111.045l-64.866 60.812a5.4 5.4 0 0 1-7.633-.246l-19.58-20.885a5.4 5.4 0 0 1 .372-7.747L284.35 336l-40.763-35.874a5.4 5.4 0 0 1-.372-7.747l19.58-20.885a5.4 5.4 0 0 1 7.633-.246l64.866 60.812a5.4 5.4 0 0 1-.001 7.879z"] }; +var faFileContract = { prefix: 'fas', iconName: 'file-contract', icon: [384, 512, [], "f56c", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm192.81 248H304c8.84 0 16 7.16 16 16s-7.16 16-16 16h-47.19c-16.45 0-31.27-9.14-38.64-23.86-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34a15.986 15.986 0 0 1-14.31 8.84c-.38 0-.75-.02-1.14-.05-6.45-.45-12-4.75-14.03-10.89L144 354.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.77-16.19 54.05-9.7 66 14.16 2.02 4.06 5.96 6.5 10.16 6.5zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"] }; +var faFileDownload = { prefix: 'fas', iconName: 'file-download', icon: [384, 512, [], "f56d", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm76.45 211.36l-96.42 95.7c-6.65 6.61-17.39 6.61-24.04 0l-96.42-95.7C73.42 337.29 80.54 320 94.82 320H160v-80c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v80h65.18c14.28 0 21.4 17.29 11.27 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"] }; +var faFileExcel = { prefix: 'fas', iconName: 'file-excel', icon: [384, 512, [], "f1c3", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm60.1 106.5L224 336l60.1 93.5c5.1 8-.6 18.5-10.1 18.5h-34.9c-4.4 0-8.5-2.4-10.6-6.3C208.9 405.5 192 373 192 373c-6.4 14.8-10 20-36.6 68.8-2.1 3.9-6.1 6.3-10.5 6.3H110c-9.5 0-15.2-10.5-10.1-18.5l60.3-93.5-60.3-93.5c-5.2-8 .6-18.5 10.1-18.5h34.8c4.4 0 8.5 2.4 10.6 6.3 26.1 48.8 20 33.6 36.6 68.5 0 0 6.1-11.7 36.6-68.5 2.1-3.9 6.2-6.3 10.6-6.3H274c9.5-.1 15.2 10.4 10.1 18.4zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileExport = { prefix: 'fas', iconName: 'file-export', icon: [576, 512, [], "f56e", "M384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zM192 336v-32c0-8.84 7.16-16 16-16h176V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V352H208c-8.84 0-16-7.16-16-16zm379.05-28.02l-95.7-96.43c-10.06-10.14-27.36-3.01-27.36 11.27V288H384v64h63.99v65.18c0 14.28 17.29 21.41 27.36 11.27l95.7-96.42c6.6-6.66 6.6-17.4 0-24.05z"] }; +var faFileImage = { prefix: 'fas', iconName: 'file-image', icon: [384, 512, [], "f1c5", "M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z"] }; +var faFileImport = { prefix: 'fas', iconName: 'file-import', icon: [512, 512, [], "f56f", "M16 288c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h112v-64H16zm336-152V0H152c-13.3 0-24 10.7-24 24v264h127.99v-65.18c0-14.28 17.29-21.41 27.36-11.27l95.7 96.43c6.6 6.65 6.6 17.39 0 24.04l-95.7 96.42c-10.06 10.14-27.36 3.01-27.36-11.27V352H128v136c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H376c-13.2 0-24-10.8-24-24zm153-31L407.1 7c-4.5-4.5-10.6-7-17-7H384v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"] }; +var faFileInvoice = { prefix: 'fas', iconName: 'file-invoice', icon: [384, 512, [], "f570", "M288 256H96v64h192v-64zm89-151L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm256 304c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-200v96c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-96c0-8.84 7.16-16 16-16h224c8.84 0 16 7.16 16 16z"] }; +var faFileInvoiceDollar = { prefix: 'fas', iconName: 'file-invoice-dollar', icon: [384, 512, [], "f571", "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 80v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8zm144 263.88V440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-24.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V232c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v24.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07z"] }; +var faFileMedical = { prefix: 'fas', iconName: 'file-medical', icon: [384, 512, [], "f477", "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 160v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8z"] }; +var faFileMedicalAlt = { prefix: 'fas', iconName: 'file-medical-alt', icon: [448, 512, [], "f478", "M288 136V0H88C74.7 0 64 10.7 64 24v232H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h140.9c3 0 5.8 1.7 7.2 4.4l19.9 39.8 56.8-113.7c2.9-5.9 11.4-5.9 14.3 0l34.7 69.5H352c8.8 0 16 7.2 16 16s-7.2 16-16 16h-89.9L240 275.8l-56.8 113.7c-2.9 5.9-11.4 5.9-14.3 0L134.1 320H64v168c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H312c-13.2 0-24-10.8-24-24zm153-31L343.1 7c-4.5-4.5-10.6-7-17-7H320v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"] }; +var faFilePdf = { prefix: 'fas', iconName: 'file-pdf', icon: [384, 512, [], "f1c1", "M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z"] }; +var faFilePowerpoint = { prefix: 'fas', iconName: 'file-powerpoint', icon: [384, 512, [], "f1c4", "M193.7 271.2c8.8 0 15.5 2.7 20.3 8.1 9.6 10.9 9.8 32.7-.2 44.1-4.9 5.6-11.9 8.5-21.1 8.5h-26.9v-60.7h27.9zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm53 165.2c0 90.3-88.8 77.6-111.1 77.6V436c0 6.6-5.4 12-12 12h-30.8c-6.6 0-12-5.4-12-12V236.2c0-6.6 5.4-12 12-12h81c44.5 0 72.9 32.8 72.9 77z"] }; +var faFilePrescription = { prefix: 'fas', iconName: 'file-prescription', icon: [384, 512, [], "f572", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm68.53 179.48l11.31 11.31c6.25 6.25 6.25 16.38 0 22.63l-29.9 29.9L304 409.38c6.25 6.25 6.25 16.38 0 22.63l-11.31 11.31c-6.25 6.25-16.38 6.25-22.63 0L240 413.25l-30.06 30.06c-6.25 6.25-16.38 6.25-22.63 0L176 432c-6.25-6.25-6.25-16.38 0-22.63l30.06-30.06L146.74 320H128v48c0 8.84-7.16 16-16 16H96c-8.84 0-16-7.16-16-16V208c0-8.84 7.16-16 16-16h80c35.35 0 64 28.65 64 64 0 24.22-13.62 45.05-33.46 55.92L240 345.38l29.9-29.9c6.25-6.25 16.38-6.25 22.63 0zM176 272h-48v-32h48c8.82 0 16 7.18 16 16s-7.18 16-16 16zm208-150.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileSignature = { prefix: 'fas', iconName: 'file-signature', icon: [576, 512, [], "f573", "M218.17 424.14c-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34c-6.37 12.78-25.03 11.37-29.48-2.09L144 386.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.75-16.19 54.06-9.7 66 14.16 1.89 3.78 5.49 5.95 9.36 6.26v-82.12l128-127.09V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24v-40l-128-.11c-16.12-.31-30.58-9.28-37.83-23.75zM384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zm-96 225.06V416h68.99l161.68-162.78-67.88-67.88L288 346.96zm280.54-179.63l-31.87-31.87c-9.94-9.94-26.07-9.94-36.01 0l-27.25 27.25 67.88 67.88 27.25-27.25c9.95-9.94 9.95-26.07 0-36.01z"] }; +var faFileUpload = { prefix: 'fas', iconName: 'file-upload', icon: [384, 512, [], "f574", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm65.18 216.01H224v80c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-80H94.82c-14.28 0-21.41-17.29-11.27-27.36l96.42-95.7c6.65-6.61 17.39-6.61 24.04 0l96.42 95.7c10.15 10.07 3.03 27.36-11.25 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"] }; +var faFileVideo = { prefix: 'fas', iconName: 'file-video', icon: [384, 512, [], "f1c8", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z"] }; +var faFileWord = { prefix: 'fas', iconName: 'file-word', icon: [384, 512, [], "f1c2", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm57.1 120H305c7.7 0 13.4 7.1 11.7 14.7l-38 168c-1.2 5.5-6.1 9.3-11.7 9.3h-38c-5.5 0-10.3-3.8-11.6-9.1-25.8-103.5-20.8-81.2-25.6-110.5h-.5c-1.1 14.3-2.4 17.4-25.6 110.5-1.3 5.3-6.1 9.1-11.6 9.1H117c-5.6 0-10.5-3.9-11.7-9.4l-37.8-168c-1.7-7.5 4-14.6 11.7-14.6h24.5c5.7 0 10.7 4 11.8 9.7 15.6 78 20.1 109.5 21 122.2 1.6-10.2 7.3-32.7 29.4-122.7 1.3-5.4 6.1-9.1 11.7-9.1h29.1c5.6 0 10.4 3.8 11.7 9.2 24 100.4 28.8 124 29.6 129.4-.2-11.2-2.6-17.8 21.6-129.2 1-5.6 5.9-9.5 11.5-9.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFill = { prefix: 'fas', iconName: 'fill', icon: [512, 512, [], "f575", "M502.63 217.06L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.77c-6.24-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.63l86.19 86.18-94.76 94.76c-37.49 37.49-37.49 98.26 0 135.75l117.19 117.19c18.75 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.88-28.12l221.57-221.57c12.49-12.5 12.49-32.76 0-45.26zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.61 58.6c12.49 12.49 32.75 12.49 45.24 0 12.49-12.49 12.49-32.75 0-45.24l-58.61-58.6 58.95-58.95 162.45 162.44-48.35 48.34z"] }; +var faFillDrip = { prefix: 'fas', iconName: 'fill-drip', icon: [576, 512, [], "f576", "M512 320s-64 92.65-64 128c0 35.35 28.66 64 64 64s64-28.65 64-64-64-128-64-128zm-9.37-102.94L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.76c-6.25-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.62l86.19 86.18-94.76 94.76c-37.49 37.48-37.49 98.26 0 135.75l117.19 117.19c18.74 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.87-28.12l221.57-221.57c12.5-12.5 12.5-32.75.01-45.25zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.6 58.6c12.49 12.49 32.75 12.49 45.24 0s12.49-32.75 0-45.24l-58.6-58.6 58.95-58.95 162.44 162.44-48.34 48.34z"] }; +var faFilm = { prefix: 'fas', iconName: 'film', icon: [512, 512, [], "f008", "M488 64h-8v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V64H96v20c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12V64h-8C10.7 64 0 74.7 0 88v336c0 13.3 10.7 24 24 24h8v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h320v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h8c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM96 372c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm272 208c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm0-168c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm112 152c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z"] }; +var faFilter = { prefix: 'fas', iconName: 'filter', icon: [512, 512, [], "f0b0", "M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z"] }; +var faFingerprint = { prefix: 'fas', iconName: 'fingerprint', icon: [512, 512, [], "f577", "M256.12 245.96c-13.25 0-24 10.74-24 24 1.14 72.25-8.14 141.9-27.7 211.55-2.73 9.72 2.15 30.49 23.12 30.49 10.48 0 20.11-6.92 23.09-17.52 13.53-47.91 31.04-125.41 29.48-224.52.01-13.25-10.73-24-23.99-24zm-.86-81.73C194 164.16 151.25 211.3 152.1 265.32c.75 47.94-3.75 95.91-13.37 142.55-2.69 12.98 5.67 25.69 18.64 28.36 13.05 2.67 25.67-5.66 28.36-18.64 10.34-50.09 15.17-101.58 14.37-153.02-.41-25.95 19.92-52.49 54.45-52.34 31.31.47 57.15 25.34 57.62 55.47.77 48.05-2.81 96.33-10.61 143.55-2.17 13.06 6.69 25.42 19.76 27.58 19.97 3.33 26.81-15.1 27.58-19.77 8.28-50.03 12.06-101.21 11.27-152.11-.88-55.8-47.94-101.88-104.91-102.72zm-110.69-19.78c-10.3-8.34-25.37-6.8-33.76 3.48-25.62 31.5-39.39 71.28-38.75 112 .59 37.58-2.47 75.27-9.11 112.05-2.34 13.05 6.31 25.53 19.36 27.89 20.11 3.5 27.07-14.81 27.89-19.36 7.19-39.84 10.5-80.66 9.86-121.33-.47-29.88 9.2-57.88 28-80.97 8.35-10.28 6.79-25.39-3.49-33.76zm109.47-62.33c-15.41-.41-30.87 1.44-45.78 4.97-12.89 3.06-20.87 15.98-17.83 28.89 3.06 12.89 16 20.83 28.89 17.83 11.05-2.61 22.47-3.77 34-3.69 75.43 1.13 137.73 61.5 138.88 134.58.59 37.88-1.28 76.11-5.58 113.63-1.5 13.17 7.95 25.08 21.11 26.58 16.72 1.95 25.51-11.88 26.58-21.11a929.06 929.06 0 0 0 5.89-119.85c-1.56-98.75-85.07-180.33-186.16-181.83zm252.07 121.45c-2.86-12.92-15.51-21.2-28.61-18.27-12.94 2.86-21.12 15.66-18.26 28.61 4.71 21.41 4.91 37.41 4.7 61.6-.11 13.27 10.55 24.09 23.8 24.2h.2c13.17 0 23.89-10.61 24-23.8.18-22.18.4-44.11-5.83-72.34zm-40.12-90.72C417.29 43.46 337.6 1.29 252.81.02 183.02-.82 118.47 24.91 70.46 72.94 24.09 119.37-.9 181.04.14 246.65l-.12 21.47c-.39 13.25 10.03 24.31 23.28 24.69.23.02.48.02.72.02 12.92 0 23.59-10.3 23.97-23.3l.16-23.64c-.83-52.5 19.16-101.86 56.28-139 38.76-38.8 91.34-59.67 147.68-58.86 69.45 1.03 134.73 35.56 174.62 92.39 7.61 10.86 22.56 13.45 33.42 5.86 10.84-7.62 13.46-22.59 5.84-33.43z"] }; +var faFire = { prefix: 'fas', iconName: 'fire', icon: [384, 512, [], "f06d", "M216 23.858c0-23.802-30.653-32.765-44.149-13.038C48 191.851 224 200 224 288c0 35.629-29.114 64.458-64.85 63.994C123.98 351.538 96 322.22 96 287.046v-85.51c0-21.703-26.471-32.225-41.432-16.504C27.801 213.158 0 261.332 0 320c0 105.869 86.131 192 192 192s192-86.131 192-192c0-170.29-168-193.003-168-296.142z"] }; +var faFireExtinguisher = { prefix: 'fas', iconName: 'fire-extinguisher', icon: [448, 512, [], "f134", "M434.027 26.329l-168 28C254.693 56.218 256 67.8 256 72h-58.332C208.353 36.108 181.446 0 144 0c-39.435 0-66.368 39.676-52.228 76.203-52.039 13.051-75.381 54.213-90.049 90.884-4.923 12.307 1.063 26.274 13.37 31.197 12.317 4.926 26.279-1.075 31.196-13.37C75.058 112.99 106.964 120 168 120v27.076c-41.543 10.862-72 49.235-72 94.129V488c0 13.255 10.745 24 24 24h144c13.255 0 24-10.745 24-24V240c0-44.731-30.596-82.312-72-92.97V120h40c0 2.974-1.703 15.716 10.027 17.671l168 28C441.342 166.89 448 161.25 448 153.834V38.166c0-7.416-6.658-13.056-13.973-11.837zM144 72c-8.822 0-16-7.178-16-16s7.178-16 16-16 16 7.178 16 16-7.178 16-16 16z"] }; +var faFirstAid = { prefix: 'fas', iconName: 'first-aid', icon: [576, 512, [], "f479", "M0 80v352c0 26.5 21.5 48 48 48h48V32H48C21.5 32 0 53.5 0 80zm128 400h320V32H128v448zm64-248c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48zM528 32h-48v448h48c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"] }; +var faFish = { prefix: 'fas', iconName: 'fish', icon: [576, 512, [], "f578", "M327.1 96c-89.97 0-168.54 54.77-212.27 101.63L27.5 131.58c-12.13-9.18-30.24.6-27.14 14.66L24.54 256 .35 365.77c-3.1 14.06 15.01 23.83 27.14 14.66l87.33-66.05C158.55 361.23 237.13 416 327.1 416 464.56 416 576 288 576 256S464.56 96 327.1 96zm87.43 184c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24 13.26 0 24 10.74 24 24 0 13.25-10.75 24-24 24z"] }; +var faFlag = { prefix: 'fas', iconName: 'flag', icon: [512, 512, [], "f024", "M349.565 98.783C295.978 98.783 251.721 64 184.348 64c-24.955 0-47.309 4.384-68.045 12.013a55.947 55.947 0 0 0 3.586-23.562C118.117 24.015 94.806 1.206 66.338.048 34.345-1.254 8 24.296 8 56c0 19.026 9.497 35.825 24 45.945V488c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-94.4c28.311-12.064 63.582-22.122 114.435-22.122 53.588 0 97.844 34.783 165.217 34.783 48.169 0 86.667-16.294 122.505-40.858C506.84 359.452 512 349.571 512 339.045v-243.1c0-23.393-24.269-38.87-45.485-29.016-34.338 15.948-76.454 31.854-116.95 31.854z"] }; +var faFlagCheckered = { prefix: 'fas', iconName: 'flag-checkered', icon: [512, 512, [], "f11e", "M466.515 66.928C487.731 57.074 512 72.551 512 95.944v243.1c0 10.526-5.161 20.407-13.843 26.358-35.837 24.564-74.335 40.858-122.505 40.858-67.373 0-111.63-34.783-165.217-34.783-50.853 0-86.124 10.058-114.435 22.122V488c0 13.255-10.745 24-24 24H56c-13.255 0-24-10.745-24-24V101.945C17.497 91.825 8 75.026 8 56 8 24.296 34.345-1.254 66.338.048c28.468 1.158 51.779 23.968 53.551 52.404.52 8.342-.81 16.31-3.586 23.562C137.039 68.384 159.393 64 184.348 64c67.373 0 111.63 34.783 165.217 34.783 40.496 0 82.612-15.906 116.95-31.855zM96 134.63v70.49c29-10.67 51.18-17.83 73.6-20.91v-71.57c-23.5 2.17-40.44 9.79-73.6 21.99zm220.8 9.19c-26.417-4.672-49.886-13.979-73.6-21.34v67.42c24.175 6.706 47.566 16.444 73.6 22.31v-68.39zm-147.2 40.39v70.04c32.796-2.978 53.91-.635 73.6 3.8V189.9c-25.247-7.035-46.581-9.423-73.6-5.69zm73.6 142.23c26.338 4.652 49.732 13.927 73.6 21.34v-67.41c-24.277-6.746-47.54-16.45-73.6-22.32v68.39zM96 342.1c23.62-8.39 47.79-13.84 73.6-16.56v-71.29c-26.11 2.35-47.36 8.04-73.6 17.36v70.49zm368-221.6c-21.3 8.85-46.59 17.64-73.6 22.47v71.91c27.31-4.36 50.03-14.1 73.6-23.89V120.5zm0 209.96v-70.49c-22.19 14.2-48.78 22.61-73.6 26.02v71.58c25.07-2.38 48.49-11.04 73.6-27.11zM316.8 212.21v68.16c25.664 7.134 46.616 9.342 73.6 5.62v-71.11c-25.999 4.187-49.943 2.676-73.6-2.67z"] }; +var faFlask = { prefix: 'fas', iconName: 'flask', icon: [448, 512, [], "f0c3", "M437.2 403.5L320 215V64h8c13.3 0 24-10.7 24-24V24c0-13.3-10.7-24-24-24H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h8v151L10.8 403.5C-18.5 450.6 15.3 512 70.9 512h306.2c55.7 0 89.4-61.5 60.1-108.5zM137.9 320l48.2-77.6c3.7-5.2 5.8-11.6 5.8-18.4V64h64v160c0 6.9 2.2 13.2 5.8 18.4l48.2 77.6h-172z"] }; +var faFlushed = { prefix: 'fas', iconName: 'flushed', icon: [496, 512, [], "f579", "M344 200c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-192 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM80 224c0-39.8 32.2-72 72-72s72 32.2 72 72-32.2 72-72 72-72-32.2-72-72zm232 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-104c-39.8 0-72-32.2-72-72s32.2-72 72-72 72 32.2 72 72-32.2 72-72 72z"] }; +var faFolder = { prefix: 'fas', iconName: 'folder', icon: [512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z"] }; +var faFolderOpen = { prefix: 'fas', iconName: 'folder-open', icon: [576, 512, [], "f07c", "M572.694 292.093L500.27 416.248A63.997 63.997 0 0 1 444.989 448H45.025c-18.523 0-30.064-20.093-20.731-36.093l72.424-124.155A64 64 0 0 1 152 256h399.964c18.523 0 30.064 20.093 20.73 36.093zM152 224h328v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v278.046l69.077-118.418C86.214 242.25 117.989 224 152 224z"] }; +var faFont = { prefix: 'fas', iconName: 'font', icon: [448, 512, [], "f031", "M152 416h-24.013l26.586-80.782H292.8L319.386 416H296c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-26.739L275.495 42.746A16 16 0 0 0 260.382 32h-72.766a16 16 0 0 0-15.113 10.746L42.739 416H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm64.353-271.778c4.348-15.216 6.61-28.156 7.586-34.644.839 6.521 2.939 19.476 7.727 34.706l41.335 124.006h-98.619l41.971-124.068z"] }; +var faFontAwesomeLogoFull = { prefix: 'fas', iconName: 'font-awesome-logo-full', icon: [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"] }; +var faFootballBall = { prefix: 'fas', iconName: 'football-ball', icon: [496, 512, [], "f44e", "M481.5 60.3c-4.8-18.2-19.1-32.5-37.3-37.4C420.3 16.5 383 8.9 339.4 8L496 164.8c-.8-43.5-8.2-80.6-14.5-104.5zm-467 391.4c4.8 18.2 19.1 32.5 37.3 37.4 23.9 6.4 61.2 14 104.8 14.9L0 347.2c.8 43.5 8.2 80.6 14.5 104.5zM4.2 283.4L220.4 500c132.5-19.4 248.8-118.7 271.5-271.4L275.6 12C143.1 31.4 26.8 130.7 4.2 283.4zm317.3-123.6c3.1-3.1 8.2-3.1 11.3 0l11.3 11.3c3.1 3.1 3.1 8.2 0 11.3l-28.3 28.3 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-22.6 22.7 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L248 278.6l-22.6 22.6 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-28.3 28.3c-3.1 3.1-8.2 3.1-11.3 0l-11.3-11.3c-3.1-3.1-3.1-8.2 0-11.3l28.3-28.3-28.3-28.2c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 28.3-28.5z"] }; +var faForward = { prefix: 'fas', iconName: 'forward', icon: [512, 512, [], "f04e", "M500.5 231.4l-192-160C287.9 54.3 256 68.6 256 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2zm-256 0l-192-160C31.9 54.3 0 68.6 0 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2z"] }; +var faFrog = { prefix: 'fas', iconName: 'frog', icon: [576, 512, [], "f52e", "M446.53 97.43C439.67 60.23 407.19 32 368 32c-39.23 0-71.72 28.29-78.54 65.54C126.75 112.96-.5 250.12 0 416.98.11 451.9 29.08 480 64 480h304c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-79.49l35.8-48.33c24.14-36.23 10.35-88.28-33.71-106.6-23.89-9.93-51.55-4.65-72.24 10.88l-32.76 24.59c-7.06 5.31-17.09 3.91-22.41-3.19-5.3-7.08-3.88-17.11 3.19-22.41l34.78-26.09c36.84-27.66 88.28-27.62 125.13 0 10.87 8.15 45.87 39.06 40.8 93.21L469.62 480H560c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-53.63l-98.52-104.68 154.44-86.65A58.16 58.16 0 0 0 576 189.94c0-21.4-11.72-40.95-30.48-51.23-40.56-22.22-98.99-41.28-98.99-41.28zM368 136c-13.26 0-24-10.75-24-24 0-13.26 10.74-24 24-24 13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24z"] }; +var faFrown = { prefix: 'fas', iconName: 'frown', icon: [496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm170.2 218.2C315.8 367.4 282.9 352 248 352s-67.8 15.4-90.2 42.2c-13.5 16.3-38.1-4.2-24.6-20.5C161.7 339.6 203.6 320 248 320s86.3 19.6 114.7 53.8c13.6 16.2-11 36.7-24.5 20.4z"] }; +var faFrownOpen = { prefix: 'fas', iconName: 'frown-open', icon: [496, 512, [], "f57a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm187.3 183.3c-31.2-9.6-59.4-15.3-75.3-15.3s-44.1 5.7-75.3 15.3c-11.5 3.5-22.5-6.3-20.5-18.1 7-40 60.1-61.2 95.8-61.2s88.8 21.3 95.8 61.2c2 11.9-9.1 21.6-20.5 18.1zM328 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faFutbol = { prefix: 'fas', iconName: 'futbol', icon: [512, 512, [], "f1e3", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-48 0l-.003-.282-26.064 22.741-62.679-58.5 16.454-84.355 34.303 3.072c-24.889-34.216-60.004-60.089-100.709-73.141l13.651 31.939L256 139l-74.953-41.525 13.651-31.939c-40.631 13.028-75.78 38.87-100.709 73.141l34.565-3.073 16.192 84.355-62.678 58.5-26.064-22.741-.003.282c0 43.015 13.497 83.952 38.472 117.991l7.704-33.897 85.138 10.447 36.301 77.826-29.902 17.786c40.202 13.122 84.29 13.148 124.572 0l-29.902-17.786 36.301-77.826 85.138-10.447 7.704 33.897C442.503 339.952 456 299.015 456 256zm-248.102 69.571l-29.894-91.312L256 177.732l77.996 56.527-29.622 91.312h-96.476z"] }; +var faGamepad = { prefix: 'fas', iconName: 'gamepad', icon: [640, 512, [], "f11b", "M480 96H160C71.6 96 0 167.6 0 256s71.6 160 160 160c44.8 0 85.2-18.4 114.2-48h91.5c29 29.6 69.5 48 114.2 48 88.4 0 160-71.6 160-160S568.4 96 480 96zM256 276c0 6.6-5.4 12-12 12h-52v52c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-52H76c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h52v-52c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h52c6.6 0 12 5.4 12 12v40zm184 68c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-80c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; +var faGasPump = { prefix: 'fas', iconName: 'gas-pump', icon: [512, 512, [], "f52f", "M336 448H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm157.2-340.7l-81-81c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-6.2 6.2-6.2 16.4 0 22.6L416 97.9V160c0 28.1 20.9 51.3 48 55.2V376c0 13.2-10.8 24-24 24s-24-10.8-24-24v-32c0-48.6-39.4-88-88-88h-8V64c0-35.3-28.7-64-64-64H96C60.7 0 32 28.7 32 64v352h288V304h8c22.1 0 40 17.9 40 40v27.8c0 37.7 27 72 64.5 75.9 43 4.3 79.5-29.5 79.5-71.7V152.6c0-17-6.8-33.3-18.8-45.3zM256 192H96V64h160v128z"] }; +var faGavel = { prefix: 'fas', iconName: 'gavel', icon: [512, 512, [], "f0e3", "M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z"] }; +var faGem = { prefix: 'fas', iconName: 'gem', icon: [576, 512, [], "f3a5", "M485.5 0L576 160H474.9L405.7 0h79.8zm-128 0l69.2 160H149.3L218.5 0h139zm-267 0h79.8l-69.2 160H0L90.5 0zM0 192h100.7l123 251.7c1.5 3.1-2.7 5.9-5 3.3L0 192zm148.2 0h279.6l-137 318.2c-1 2.4-4.5 2.4-5.5 0L148.2 192zm204.1 251.7l123-251.7H576L357.3 446.9c-2.3 2.7-6.5-.1-5-3.2z"] }; +var faGenderless = { prefix: 'fas', iconName: 'genderless', icon: [288, 512, [], "f22d", "M144 176c44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80 35.9-80 80-80m0-64C64.5 112 0 176.5 0 256s64.5 144 144 144 144-64.5 144-144-64.5-144-144-144z"] }; +var faGift = { prefix: 'fas', iconName: 'gift', icon: [512, 512, [], "f06b", "M32 448c0 17.7 14.3 32 32 32h160V320H32v128zm448-288h-42.1c6.2-12.1 10.1-25.5 10.1-40 0-48.5-39.5-88-88-88-41.6 0-68.5 21.3-103 68.3-34.5-47-61.4-68.3-103-68.3-48.5 0-88 39.5-88 88 0 14.5 3.8 27.9 10.1 40H32c-17.7 0-32 14.3-32 32v80c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-80c0-17.7-14.3-32-32-32zm-326.1 0c-22.1 0-40-17.9-40-40s17.9-40 40-40c19.9 0 34.6 3.3 86.1 80h-86.1zm206.1 0h-86.1c51.4-76.5 65.7-80 86.1-80 22.1 0 40 17.9 40 40s-17.9 40-40 40zm-72 320h160c17.7 0 32-14.3 32-32V320H288v160z"] }; +var faGlassMartini = { prefix: 'fas', iconName: 'glass-martini', icon: [512, 512, [], "f000", "M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6z"] }; +var faGlassMartiniAlt = { prefix: 'fas', iconName: 'glass-martini-alt', icon: [512, 512, [], "f57b", "M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6zM443.77 48l-48 48H116.24l-48-48h375.53z"] }; +var faGlasses = { prefix: 'fas', iconName: 'glasses', icon: [576, 512, [], "f530", "M574.1 280.37L528.75 98.66c-5.91-23.7-21.59-44.05-43-55.81-21.44-11.73-46.97-14.11-70.19-6.33l-15.25 5.08c-8.39 2.79-12.92 11.86-10.12 20.24l5.06 15.18c2.79 8.38 11.85 12.91 20.23 10.12l13.18-4.39c10.87-3.62 23-3.57 33.16 1.73 10.29 5.37 17.57 14.56 20.37 25.82l38.46 153.82c-22.19-6.81-49.79-12.46-81.2-12.46-34.77 0-73.98 7.02-114.85 26.74h-73.18c-40.87-19.74-80.08-26.75-114.86-26.75-31.42 0-59.02 5.65-81.21 12.46l38.46-153.83c2.79-11.25 10.09-20.45 20.38-25.81 10.16-5.3 22.28-5.35 33.15-1.73l13.17 4.39c8.38 2.79 17.44-1.74 20.23-10.12l5.06-15.18c2.8-8.38-1.73-17.45-10.12-20.24l-15.25-5.08c-23.22-7.78-48.75-5.41-70.19 6.33-21.41 11.77-37.09 32.11-43 55.8L1.9 280.37A64.218 64.218 0 0 0 0 295.86v70.25C0 429.01 51.58 480 115.2 480h37.12c60.28 0 110.37-45.94 114.88-105.37l2.93-38.63h35.75l2.93 38.63C313.31 434.06 363.4 480 423.68 480h37.12c63.62 0 115.2-50.99 115.2-113.88v-70.25c0-5.23-.64-10.43-1.9-15.5zm-370.72 89.42c-1.97 25.91-24.4 46.21-51.06 46.21H115.2C86.97 416 64 393.62 64 366.11v-37.54c18.12-6.49 43.42-12.92 72.58-12.92 23.86 0 47.26 4.33 69.93 12.92l-3.13 41.22zM512 366.12c0 27.51-22.97 49.88-51.2 49.88h-37.12c-26.67 0-49.1-20.3-51.06-46.21l-3.13-41.22c22.67-8.59 46.08-12.92 69.95-12.92 29.12 0 54.43 6.44 72.55 12.93v37.54z"] }; +var faGlobe = { prefix: 'fas', iconName: 'globe', icon: [496, 512, [], "f0ac", "M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z"] }; +var faGlobeAfrica = { prefix: 'fas', iconName: 'globe-africa', icon: [496, 512, [], "f57c", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm160 215.5v6.93c0 5.87-3.32 11.24-8.57 13.86l-15.39 7.7a15.485 15.485 0 0 1-15.53-.97l-18.21-12.14a15.52 15.52 0 0 0-13.5-1.81l-2.65.88c-9.7 3.23-13.66 14.79-7.99 23.3l13.24 19.86c2.87 4.31 7.71 6.9 12.89 6.9h8.21c8.56 0 15.5 6.94 15.5 15.5v11.34c0 3.35-1.09 6.62-3.1 9.3l-18.74 24.98c-1.42 1.9-2.39 4.1-2.83 6.43l-4.3 22.83c-.62 3.29-2.29 6.29-4.76 8.56a159.608 159.608 0 0 0-25 29.16l-13.03 19.55a27.756 27.756 0 0 1-23.09 12.36c-10.51 0-20.12-5.94-24.82-15.34a78.902 78.902 0 0 1-8.33-35.29V367.5c0-8.56-6.94-15.5-15.5-15.5h-25.88c-14.49 0-28.38-5.76-38.63-16a54.659 54.659 0 0 1-16-38.63v-14.06c0-17.19 8.1-33.38 21.85-43.7l27.58-20.69a54.663 54.663 0 0 1 32.78-10.93h.89c8.48 0 16.85 1.97 24.43 5.77l14.72 7.36c3.68 1.84 7.93 2.14 11.83.84l47.31-15.77c6.33-2.11 10.6-8.03 10.6-14.7 0-8.56-6.94-15.5-15.5-15.5h-10.09c-4.11 0-8.05-1.63-10.96-4.54l-6.92-6.92a15.493 15.493 0 0 0-10.96-4.54H199.5c-8.56 0-15.5-6.94-15.5-15.5v-4.4c0-7.11 4.84-13.31 11.74-15.04l14.45-3.61c3.74-.94 7-3.23 9.14-6.44l8.08-12.11c2.87-4.31 7.71-6.9 12.89-6.9h24.21c8.56 0 15.5-6.94 15.5-15.5v-21.7C359.23 71.63 422.86 131.02 441.93 208H423.5c-8.56 0-15.5 6.94-15.5 15.5z"] }; +var faGlobeAmericas = { prefix: 'fas', iconName: 'globe-americas', icon: [496, 512, [], "f57d", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm82.29 357.6c-3.9 3.88-7.99 7.95-11.31 11.28-2.99 3-5.1 6.7-6.17 10.71-1.51 5.66-2.73 11.38-4.77 16.87l-17.39 46.85c-13.76 3-28 4.69-42.65 4.69v-27.38c1.69-12.62-7.64-36.26-22.63-51.25-6-6-9.37-14.14-9.37-22.63v-32.01c0-11.64-6.27-22.34-16.46-27.97-14.37-7.95-34.81-19.06-48.81-26.11-11.48-5.78-22.1-13.14-31.65-21.75l-.8-.72a114.792 114.792 0 0 1-18.06-20.74c-9.38-13.77-24.66-36.42-34.59-51.14 20.47-45.5 57.36-82.04 103.2-101.89l24.01 12.01C203.48 89.74 216 82.01 216 70.11v-11.3c7.99-1.29 16.12-2.11 24.39-2.42l28.3 28.3c6.25 6.25 6.25 16.38 0 22.63L264 112l-10.34 10.34c-3.12 3.12-3.12 8.19 0 11.31l4.69 4.69c3.12 3.12 3.12 8.19 0 11.31l-8 8a8.008 8.008 0 0 1-5.66 2.34h-8.99c-2.08 0-4.08.81-5.58 2.27l-9.92 9.65a8.008 8.008 0 0 0-1.58 9.31l15.59 31.19c2.66 5.32-1.21 11.58-7.15 11.58h-5.64c-1.93 0-3.79-.7-5.24-1.96l-9.28-8.06a16.017 16.017 0 0 0-15.55-3.1l-31.17 10.39a11.95 11.95 0 0 0-8.17 11.34c0 4.53 2.56 8.66 6.61 10.69l11.08 5.54c9.41 4.71 19.79 7.16 30.31 7.16s22.59 27.29 32 32h66.75c8.49 0 16.62 3.37 22.63 9.37l13.69 13.69a30.503 30.503 0 0 1 8.93 21.57 46.536 46.536 0 0 1-13.72 32.98zM417 274.25c-5.79-1.45-10.84-5-14.15-9.97l-17.98-26.97a23.97 23.97 0 0 1 0-26.62l19.59-29.38c2.32-3.47 5.5-6.29 9.24-8.15l12.98-6.49C440.2 193.59 448 223.87 448 256c0 8.67-.74 17.16-1.82 25.54L417 274.25z"] }; +var faGlobeAsia = { prefix: 'fas', iconName: 'globe-asia', icon: [496, 512, [], "f57e", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm-11.34 240.23c-2.89 4.82-8.1 7.77-13.72 7.77h-.31c-4.24 0-8.31 1.69-11.31 4.69l-5.66 5.66c-3.12 3.12-3.12 8.19 0 11.31l5.66 5.66c3 3 4.69 7.07 4.69 11.31V304c0 8.84-7.16 16-16 16h-6.11c-6.06 0-11.6-3.42-14.31-8.85l-22.62-45.23c-2.44-4.88-8.95-5.94-12.81-2.08l-19.47 19.46c-3 3-7.07 4.69-11.31 4.69H50.81C49.12 277.55 48 266.92 48 256c0-110.28 89.72-200 200-200 21.51 0 42.2 3.51 61.63 9.82l-50.16 38.53c-5.11 3.41-4.63 11.06.86 13.81l10.83 5.41c5.42 2.71 8.84 8.25 8.84 14.31V216c0 4.42-3.58 8-8 8h-3.06c-3.03 0-5.8-1.71-7.15-4.42-1.56-3.12-5.96-3.29-7.76-.3l-17.37 28.95zM408 358.43c0 4.24-1.69 8.31-4.69 11.31l-9.57 9.57c-3 3-7.07 4.69-11.31 4.69h-15.16c-4.24 0-8.31-1.69-11.31-4.69l-13.01-13.01a26.767 26.767 0 0 0-25.42-7.04l-21.27 5.32c-1.27.32-2.57.48-3.88.48h-10.34c-4.24 0-8.31-1.69-11.31-4.69l-11.91-11.91a8.008 8.008 0 0 1-2.34-5.66v-10.2c0-3.27 1.99-6.21 5.03-7.43l39.34-15.74c1.98-.79 3.86-1.82 5.59-3.05l23.71-16.89a7.978 7.978 0 0 1 4.64-1.48h12.09c3.23 0 6.15 1.94 7.39 4.93l5.35 12.85a4 4 0 0 0 3.69 2.46h3.8c1.78 0 3.35-1.18 3.84-2.88l4.2-14.47c.5-1.71 2.06-2.88 3.84-2.88h6.06c2.21 0 4 1.79 4 4v12.93c0 2.12.84 4.16 2.34 5.66l11.91 11.91c3 3 4.69 7.07 4.69 11.31v24.6z"] }; +var faGolfBall = { prefix: 'fas', iconName: 'golf-ball', icon: [416, 512, [], "f450", "M96 416h224c0 17.7-14.3 32-32 32h-16c-17.7 0-32 14.3-32 32v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-20c0-17.7-14.3-32-32-32h-16c-17.7 0-32-14.3-32-32zm320-208c0 74.2-39 139.2-97.5 176h-221C39 347.2 0 282.2 0 208 0 93.1 93.1 0 208 0s208 93.1 208 208zm-180.1 43.9c18.3 0 33.1-14.8 33.1-33.1 0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1zm49.1 46.9c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1zm64-64c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1z"] }; +var faGraduationCap = { prefix: 'fas', iconName: 'graduation-cap', icon: [640, 512, [], "f19d", "M622.884 199.005l-275.817 85.1a96 96 0 0 1-54.134 0L92.398 222.232c-8.564 11.438-11.018 23.05-11.918 38.335C89.778 266.165 96 276.355 96 288c0 11.952-6.557 22.366-16.265 27.861l16.197 123.096c.63 4.786-3.1 9.043-7.932 9.043H40c-4.828 0-8.562-4.253-7.932-9.044L48.265 315.86C38.557 310.366 32 299.952 32 288c0-12.034 6.646-22.511 16.465-27.976.947-17.951 3.974-33.231 12.152-47.597l-43.502-13.422c-22.876-6.801-22.766-39.241 0-46.01l275.817-85.1a96 96 0 0 1 54.134 0l275.817 85.1c22.877 6.801 22.767 39.241.001 46.01zM356.503 314.682l-.207.064-.207.061a127.998 127.998 0 0 1-72.177 0l-.207-.061-.207-.064-150.914-46.57L120 352c0 35.346 89.543 64 200 64s200-28.654 200-64l-12.583-83.888-150.914 46.57z"] }; +var faGreaterThan = { prefix: 'fas', iconName: 'greater-than', icon: [384, 512, [], "f531", "M365.52 209.85L59.22 67.01c-16.06-7.49-35.15-.54-42.64 15.52L3.01 111.61c-7.49 16.06-.54 35.15 15.52 42.64L236.96 256.1 18.49 357.99C2.47 365.46-4.46 384.5 3.01 400.52l13.52 29C24 445.54 43.04 452.47 59.06 445l306.47-142.91a32.003 32.003 0 0 0 18.48-29v-34.23c-.01-12.45-7.21-23.76-18.49-29.01z"] }; +var faGreaterThanEqual = { prefix: 'fas', iconName: 'greater-than-equal', icon: [448, 512, [], "f532", "M55.22 107.69l175.56 68.09-175.44 68.05c-18.39 6.03-27.88 24.39-21.2 41l12.09 30.08c6.68 16.61 26.99 25.19 45.38 19.15L393.02 214.2c13.77-4.52 22.98-16.61 22.98-30.17v-15.96c0-13.56-9.21-25.65-22.98-30.17L91.3 17.92c-18.29-6-38.51 2.53-45.15 19.06L34.12 66.9c-6.64 16.53 2.81 34.79 21.1 40.79zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"] }; +var faGrimace = { prefix: 'fas', iconName: 'grimace', icon: [496, 512, [], "f57f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM144 400h-8c-17.7 0-32-14.3-32-32v-8h40v40zm0-56h-40v-8c0-17.7 14.3-32 32-32h8v40zm-8-136c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm72 192h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm-8-104c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64 128c0 17.7-14.3 32-32 32h-8v-40h40v8zm0-24h-40v-40h8c17.7 0 32 14.3 32 32v8z"] }; +var faGrin = { prefix: 'fas', iconName: 'grin', icon: [496, 512, [], "f580", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm80 256c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"] }; +var faGrinAlt = { prefix: 'fas', iconName: 'grin-alt', icon: [496, 512, [], "f581", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm63.7 128.7c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zm-160 0c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"] }; +var faGrinBeam = { prefix: 'fas', iconName: 'grin-beam', icon: [496, 512, [], "f582", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 144c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"] }; +var faGrinBeamSweat = { prefix: 'fas', iconName: 'grin-beam-sweat', icon: [504, 512, [], "f583", "M456 128c26.5 0 48-21 48-47 0-20-28.5-60.4-41.6-77.8-3.2-4.3-9.6-4.3-12.8 0C436.5 20.6 408 61 408 81c0 26 21.5 47 48 47zm0 32c-44.1 0-80-35.4-80-79 0-4.4.3-14.2 8.1-32.2C345 23.1 298.3 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-35.1-7.4-68.4-20.5-98.6-6.3 1.5-12.7 2.6-19.5 2.6zm-128-8c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"] }; +var faGrinHearts = { prefix: 'fas', iconName: 'grin-hearts', icon: [496, 512, [], "f584", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM90.4 183.6c6.7-17.6 26.7-26.7 44.9-21.9l7.1 1.9 2-7.1c5-18.1 22.8-30.9 41.5-27.9 21.4 3.4 34.4 24.2 28.8 44.5L195.3 243c-1.2 4.5-5.9 7.2-10.5 6l-70.2-18.2c-20.4-5.4-31.9-27-24.2-47.2zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm133.4-201.3l-70.2 18.2c-4.5 1.2-9.2-1.5-10.5-6L281.3 173c-5.6-20.3 7.4-41.1 28.8-44.5 18.6-3 36.4 9.8 41.5 27.9l2 7.1 7.1-1.9c18.2-4.7 38.2 4.3 44.9 21.9 7.7 20.3-3.8 41.9-24.2 47.2z"] }; +var faGrinSquint = { prefix: 'fas', iconName: 'grin-squint', icon: [496, 512, [], "f585", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"] }; +var faGrinSquintTears = { prefix: 'fas', iconName: 'grin-squint-tears', icon: [512, 512, [], "f586", "M409.6 111.9c22.6-3.2 73.5-12 88.3-26.8 19.2-19.2 18.9-50.6-.7-70.2S446-5 426.9 14.2c-14.8 14.8-23.5 65.7-26.8 88.3-.8 5.5 3.9 10.2 9.5 9.4zM102.4 400.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm311.7-256.5c-33 3.9-48.6-25.1-45.7-45.7 3.4-24 7.4-42.1 11.5-56.5C285.1-13.4 161.8-.5 80.6 80.6-.5 161.7-13.4 285 41.4 379.9c14.4-4.1 32.4-8 56.5-11.5 33.2-3.9 48.6 25.2 45.7 45.7-3.4 24-7.4 42.1-11.5 56.5 94.8 54.8 218.1 41.9 299.3-39.2s94-204.4 39.2-299.3c-14.4 4.1-32.5 8-56.5 11.5zM255.7 106c3.3-13.2 22.4-11.5 23.6 1.8l4.8 52.3 52.3 4.8c13.4 1.2 14.9 20.3 1.8 23.6l-90.5 22.6c-8.9 2.2-16.7-5.9-14.5-14.5l22.5-90.6zm-90.9 230.3L160 284l-52.3-4.8c-13.4-1.2-14.9-20.3-1.8-23.6l90.5-22.6c8.8-2.2 16.7 5.8 14.5 14.5L188.3 338c-3.1 13.2-22.2 11.7-23.5-1.7zm215.7 44.2c-29.3 29.3-75.7 50.4-116.7 50.4-18.9 0-36.6-4.5-51-14.7-9.8-6.9-8.7-21.8 2-27.2 28.3-14.6 63.9-42.4 97.8-76.3s61.7-69.6 76.3-97.8c5.4-10.5 20.2-11.9 27.3-2 32.3 45.3 7.1 124.7-35.7 167.6z"] }; +var faGrinStars = { prefix: 'fas', iconName: 'grin-stars', icon: [496, 512, [], "f587", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM94.6 168.9l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.2 1 8.9 8.6 4.3 13.2l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L152 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.6-4.7-1.9-12.3 4.3-13.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm157.7-249.9l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L344 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.5-4.6-1.9-12.2 4.3-13.2l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.3.9 9 8.5 4.4 13.1z"] }; +var faGrinTears = { prefix: 'fas', iconName: 'grin-tears', icon: [640, 512, [], "f588", "M102.4 256.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm523.4 26.8c-14.8-14.8-65.7-23.5-88.3-26.8-5.5-.8-10.3 3.9-9.5 9.5 3.2 22.6 12 73.5 26.8 88.3 19.2 19.2 50.6 18.9 70.2-.7s20-51.2.8-70.3zm-129.4-12.8c-3.8-26.6 19.1-49.5 45.7-45.7 8.9 1.3 16.8 2.7 24.3 4.1C552.7 104.5 447.7 8 320 8S87.3 104.5 73.6 228.5c7.5-1.4 15.4-2.8 24.3-4.1 33.2-3.9 48.6 25.3 45.7 45.7-11.8 82.3-29.9 100.4-35.8 106.4-.9.9-2 1.6-3 2.5 42.7 74.6 123 125 215.2 125s172.5-50.4 215.2-125.1c-1-.9-2.1-1.5-3-2.5-5.9-5.9-24-24-35.8-106.3zM400 152c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.7 9.2-21.6 20.7-17.9C227.1 330.5 272 336 320 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"] }; +var faGrinTongue = { prefix: 'fas', iconName: 'grin-tongue', icon: [496, 512, [], "f589", "M248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-34.9 134.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z"] }; +var faGrinTongueSquint = { prefix: 'fas', iconName: 'grin-tongue-squint', icon: [496, 512, [], "f58a", "M293.1 374.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-33.8 210.3l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.7 4.7 7.7 15.9 0 20.6zm163 30c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.8-4.7-7.8-15.9 0-20.6l80-48c11.7-6.9 23.9 7.7 15.4 18L343.6 208l33.6 40.3z"] }; +var faGrinTongueWink = { prefix: 'fas', iconName: 'grin-tongue-wink', icon: [496, 512, [], "f58b", "M344 184c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-56 225l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L112 233c-8.5 7.4-21.6.3-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c1.6 11.1-11.6 18.2-20 10.8zm152 39c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm-50.9 102.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z"] }; +var faGrinWink = { prefix: 'fas', iconName: 'grin-wink', icon: [496, 512, [], "f58c", "M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm168 25l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.6 11-11.5 18.2-20 10.8zm-243.1 87.8C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6 20.7 17.9-9.2 55-83.2 93.3-143.8 93.3s-134.5-38.3-143.8-93.3c-2-11.9 9.3-21.6 20.7-17.9z"] }; +var faGripHorizontal = { prefix: 'fas', iconName: 'grip-horizontal', icon: [448, 512, [], "f58d", "M96 288H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM96 96H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z"] }; +var faGripVertical = { prefix: 'fas', iconName: 'grip-vertical', icon: [320, 512, [], "f58e", "M96 32H32C14.33 32 0 46.33 0 64v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM288 32h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z"] }; +var faHSquare = { prefix: 'fas', iconName: 'h-square', icon: [448, 512, [], "f0fd", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-112 48h-32c-8.837 0-16 7.163-16 16v80H160v-80c0-8.837-7.163-16-16-16h-32c-8.837 0-16 7.163-16 16v224c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16v-80h128v80c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144c0-8.837-7.163-16-16-16z"] }; +var faHandHolding = { prefix: 'fas', iconName: 'hand-holding', icon: [576, 512, [], "f4bd", "M565.3 328.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z"] }; +var faHandHoldingHeart = { prefix: 'fas', iconName: 'hand-holding-heart', icon: [576, 512, [], "f4be", "M275.3 250.5c7 7.4 18.4 7.4 25.5 0l108.9-114.2c31.6-33.2 29.8-88.2-5.6-118.8-30.8-26.7-76.7-21.9-104.9 7.7L288 36.9l-11.1-11.6C248.7-4.4 202.8-9.2 172 17.5c-35.3 30.6-37.2 85.6-5.6 118.8l108.9 114.2zm290 77.6c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z"] }; +var faHandHoldingUsd = { prefix: 'fas', iconName: 'hand-holding-usd', icon: [544, 512, [], "f4c0", "M257.6 144.3l50 14.3c3.6 1 6.1 4.4 6.1 8.1 0 4.6-3.8 8.4-8.4 8.4h-32.8c-3.6 0-7.1-.8-10.3-2.2-4.8-2.2-10.4-1.7-14.1 2l-17.5 17.5c-5.3 5.3-4.7 14.3 1.5 18.4 9.5 6.3 20.3 10.1 31.8 11.5V240c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16v-17.6c30.3-3.6 53.3-31 49.3-63-2.9-23-20.7-41.3-42.9-47.7l-50-14.3c-3.6-1-6.1-4.4-6.1-8.1 0-4.6 3.8-8.4 8.4-8.4h32.8c3.6 0 7.1.8 10.3 2.2 4.8 2.2 10.4 1.7 14.1-2l17.5-17.5c5.3-5.3 4.7-14.3-1.5-18.4-9.5-6.3-20.3-10.1-31.8-11.5V16c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16v17.6c-30.3 3.6-53.3 31-49.3 63 2.9 23 20.7 41.3 42.9 47.7zm276.3 183.8c-11.2-10.7-28.5-10-40.3 0L406.4 402c-10.7 9.1-24 14-37.8 14H256.9c-8.3 0-15.1-7.2-15.1-16s6.8-16 15.1-16h73.9c15.1 0 29-10.9 31.4-26.6 3.1-20-11.5-37.4-29.8-37.4H181.3c-25.5 0-50.2 9.3-69.9 26.3L67.5 384H15.1C6.8 384 0 391.2 0 400v96c0 8.8 6.8 16 15.1 16H352c13.7 0 27-4.9 37.8-14l142.8-121c14.4-12.1 15.5-35.3 1.3-48.9z"] }; +var faHandLizard = { prefix: 'fas', iconName: 'hand-lizard', icon: [576, 512, [], "f258", "M384 480h192V363.778a95.998 95.998 0 0 0-14.833-51.263L398.127 54.368A48 48 0 0 0 357.544 32H24C10.745 32 0 42.745 0 56v16c0 30.928 25.072 56 56 56h229.981c12.844 0 21.556 13.067 16.615 24.923l-21.41 51.385A32 32 0 0 1 251.648 224H128c-35.346 0-64 28.654-64 64v8c0 13.255 10.745 24 24 24h147.406a47.995 47.995 0 0 1 25.692 7.455l111.748 70.811A24.001 24.001 0 0 1 384 418.539V480z"] }; +var faHandPaper = { prefix: 'fas', iconName: 'hand-paper', icon: [448, 512, [], "f256", "M408.781 128.007C386.356 127.578 368 146.36 368 168.79V256h-8V79.79c0-22.43-18.356-41.212-40.781-40.783C297.488 39.423 280 57.169 280 79v177h-8V40.79C272 18.36 253.644-.422 231.219.007 209.488.423 192 18.169 192 40v216h-8V80.79c0-22.43-18.356-41.212-40.781-40.783C121.488 40.423 104 58.169 104 80v235.992l-31.648-43.519c-12.993-17.866-38.009-21.817-55.877-8.823-17.865 12.994-21.815 38.01-8.822 55.877l125.601 172.705A48 48 0 0 0 172.073 512h197.59c22.274 0 41.622-15.324 46.724-37.006l26.508-112.66a192.011 192.011 0 0 0 5.104-43.975V168c.001-21.831-17.487-39.577-39.218-39.993z"] }; +var faHandPeace = { prefix: 'fas', iconName: 'hand-peace', icon: [448, 512, [], "f25b", "M408 216c-22.092 0-40 17.909-40 40h-8v-32c0-22.091-17.908-40-40-40s-40 17.909-40 40v32h-8V48c0-26.51-21.49-48-48-48s-48 21.49-48 48v208h-13.572L92.688 78.449C82.994 53.774 55.134 41.63 30.461 51.324 5.787 61.017-6.356 88.877 3.337 113.551l74.765 190.342-31.09 24.872c-15.381 12.306-19.515 33.978-9.741 51.081l64 112A39.998 39.998 0 0 0 136 512h240c18.562 0 34.686-12.77 38.937-30.838l32-136A39.97 39.97 0 0 0 448 336v-80c0-22.091-17.908-40-40-40z"] }; +var faHandPointDown = { prefix: 'fas', iconName: 'hand-point-down', icon: [384, 512, [], "f0a7", "M91.826 467.2V317.966c-8.248 5.841-16.558 10.57-24.918 14.153C35.098 345.752-.014 322.222 0 288c.008-18.616 10.897-32.203 29.092-40 28.286-12.122 64.329-78.648 77.323-107.534 7.956-17.857 25.479-28.453 43.845-28.464l.001-.002h171.526c11.812 0 21.897 8.596 23.703 20.269 7.25 46.837 38.483 61.76 38.315 123.731-.007 2.724.195 13.254.195 16 0 50.654-22.122 81.574-71.263 72.6-9.297 18.597-39.486 30.738-62.315 16.45-21.177 24.645-53.896 22.639-70.944 6.299V467.2c0 24.15-20.201 44.8-43.826 44.8-23.283 0-43.826-21.35-43.826-44.8zM112 72V24c0-13.255 10.745-24 24-24h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24zm212-24c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z"] }; +var faHandPointLeft = { prefix: 'fas', iconName: 'hand-point-left', icon: [512, 512, [], "f0a5", "M44.8 155.826h149.234c-5.841-8.248-10.57-16.558-14.153-24.918C166.248 99.098 189.778 63.986 224 64c18.616.008 32.203 10.897 40 29.092 12.122 28.286 78.648 64.329 107.534 77.323 17.857 7.956 28.453 25.479 28.464 43.845l.002.001v171.526c0 11.812-8.596 21.897-20.269 23.703-46.837 7.25-61.76 38.483-123.731 38.315-2.724-.007-13.254.195-16 .195-50.654 0-81.574-22.122-72.6-71.263-18.597-9.297-30.738-39.486-16.45-62.315-24.645-21.177-22.639-53.896-6.299-70.944H44.8c-24.15 0-44.8-20.201-44.8-43.826 0-23.283 21.35-43.826 44.8-43.826zM440 176h48c13.255 0 24 10.745 24 24v192c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24zm24 212c11.046 0 20-8.954 20-20s-8.954-20-20-20-20 8.954-20 20 8.954 20 20 20z"] }; +var faHandPointRight = { prefix: 'fas', iconName: 'hand-point-right', icon: [512, 512, [], "f0a4", "M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z"] }; +var faHandPointUp = { prefix: 'fas', iconName: 'hand-point-up', icon: [384, 512, [], "f0a6", "M135.652 0c23.625 0 43.826 20.65 43.826 44.8v99.851c17.048-16.34 49.766-18.346 70.944 6.299 22.829-14.288 53.017-2.147 62.315 16.45C361.878 158.426 384 189.346 384 240c0 2.746-.203 13.276-.195 16 .168 61.971-31.065 76.894-38.315 123.731C343.683 391.404 333.599 400 321.786 400H150.261l-.001-.002c-18.366-.011-35.889-10.607-43.845-28.464C93.421 342.648 57.377 276.122 29.092 264 10.897 256.203.008 242.616 0 224c-.014-34.222 35.098-57.752 66.908-44.119 8.359 3.583 16.67 8.312 24.918 14.153V44.8c0-23.45 20.543-44.8 43.826-44.8zM136 416h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24v-48c0-13.255 10.745-24 24-24zm168 28c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z"] }; +var faHandPointer = { prefix: 'fas', iconName: 'hand-pointer', icon: [448, 512, [], "f25a", "M448 240v96c0 3.084-.356 6.159-1.063 9.162l-32 136C410.686 499.23 394.562 512 376 512H168a40.004 40.004 0 0 1-32.35-16.473l-127.997-176c-12.993-17.866-9.043-42.883 8.822-55.876 17.867-12.994 42.884-9.043 55.877 8.823L104 315.992V40c0-22.091 17.908-40 40-40s40 17.909 40 40v200h8v-40c0-22.091 17.908-40 40-40s40 17.909 40 40v40h8v-24c0-22.091 17.908-40 40-40s40 17.909 40 40v24h8c0-22.091 17.908-40 40-40s40 17.909 40 40zm-256 80h-8v96h8v-96zm88 0h-8v96h8v-96zm88 0h-8v96h8v-96z"] }; +var faHandRock = { prefix: 'fas', iconName: 'hand-rock', icon: [512, 512, [], "f255", "M512 128.79c0-26.322-20.861-48.344-47.18-48.783C437.935 79.558 416 101.217 416 128h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C333.935 47.558 312 69.217 312 96v32h-8V80.79c0-26.322-20.861-48.344-47.18-48.783C229.935 31.558 208 53.217 208 80v48h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C125.935 47.558 104 69.217 104 96v136l-8-7.111V176.79c0-26.322-20.861-48.344-47.18-48.783C21.935 127.558 0 149.217 0 176v66.445a95.998 95.998 0 0 0 32.221 71.751l111.668 99.261A47.999 47.999 0 0 1 160 449.333V456c0 13.255 10.745 24 24 24h240c13.255 0 24-10.745 24-24v-2.921a96.01 96.01 0 0 1 7.523-37.254l48.954-116.265A96.002 96.002 0 0 0 512 262.306V128.79z"] }; +var faHandScissors = { prefix: 'fas', iconName: 'hand-scissors', icon: [512, 512, [], "f257", "M216 440c0-22.092 17.909-40 40-40v-8h-32c-22.091 0-40-17.908-40-40s17.909-40 40-40h32v-8H48c-26.51 0-48-21.49-48-48s21.49-48 48-48h208v-13.572l-177.551-69.74c-24.674-9.694-36.818-37.555-27.125-62.228 9.693-24.674 37.554-36.817 62.228-27.124l190.342 74.765 24.872-31.09c12.306-15.381 33.978-19.515 51.081-9.741l112 64A40.002 40.002 0 0 1 512 168v240c0 18.562-12.77 34.686-30.838 38.937l-136 32A39.982 39.982 0 0 1 336 480h-80c-22.091 0-40-17.908-40-40z"] }; +var faHandSpock = { prefix: 'fas', iconName: 'hand-spock', icon: [512, 512, [], "f259", "M10.872 316.585c15.139-16.086 40.454-16.854 56.543-1.713L128 371.893v-79.405L88.995 120.865c-4.896-21.542 8.598-42.974 30.14-47.87 21.549-4.894 42.975 8.599 47.87 30.141L201.747 256h9.833L164.016 48.966c-4.946-21.531 8.498-42.994 30.028-47.94 21.532-4.95 42.994 8.498 47.94 30.028L293.664 256h15.105l48.425-193.702c5.357-21.432 27.075-34.462 48.507-29.104 21.432 5.358 34.463 27.075 29.104 48.507L391.231 256h11.08l30.768-129.265c5.117-21.491 26.685-34.768 48.177-29.647 21.491 5.117 34.765 26.686 29.647 48.177l-36.292 152.467A96.024 96.024 0 0 0 472 319.967v42.102a96.002 96.002 0 0 1-3.96 27.287l-26.174 88.287C435.825 498.022 417.101 512 395.846 512H179.172a48.002 48.002 0 0 1-32.898-13.046L12.585 373.128c-16.087-15.141-16.853-40.456-1.713-56.543z"] }; +var faHands = { prefix: 'fas', iconName: 'hands', icon: [640, 512, [], "f4c2", "M204.8 230.4c-10.6-14.1-30.7-17-44.8-6.4-14.1 10.6-17 30.7-6.4 44.8l38.1 50.8c4.8 6.4 4.1 15.3-1.5 20.9l-12.8 12.8c-6.7 6.7-17.6 6.2-23.6-1.1L64 244.4V96c0-17.7-14.3-32-32-32S0 78.3 0 96v218.4c0 10.9 3.7 21.5 10.5 30l104.1 134.3c5 6.5 8.4 13.9 10.4 21.7 1.8 6.9 8.1 11.6 15.3 11.6H272c8.8 0 16-7.2 16-16V384c0-27.7-9-54.6-25.6-76.8l-57.6-76.8zM608 64c-17.7 0-32 14.3-32 32v148.4l-89.8 107.8c-6 7.2-17 7.7-23.6 1.1l-12.8-12.8c-5.6-5.6-6.3-14.5-1.5-20.9l38.1-50.8c10.6-14.1 7.7-34.2-6.4-44.8-14.1-10.6-34.2-7.7-44.8 6.4l-57.6 76.8C361 329.4 352 356.3 352 384v112c0 8.8 7.2 16 16 16h131.7c7.1 0 13.5-4.7 15.3-11.6 2-7.8 5.4-15.2 10.4-21.7l104.1-134.3c6.8-8.5 10.5-19.1 10.5-30V96c0-17.7-14.3-32-32-32z"] }; +var faHandsHelping = { prefix: 'fas', iconName: 'hands-helping', icon: [640, 512, [], "f4c4", "M488 192H336v56c0 39.7-32.3 72-72 72s-72-32.3-72-72V126.4l-64.9 39C107.8 176.9 96 197.8 96 220.2v47.3l-80 46.2C.7 322.5-4.6 342.1 4.3 357.4l80 138.6c8.8 15.3 28.4 20.5 43.7 11.7L231.4 448H368c35.3 0 64-28.7 64-64h16c17.7 0 32-14.3 32-32v-64h8c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zm147.7-37.4L555.7 16C546.9.7 527.3-4.5 512 4.3L408.6 64H306.4c-12 0-23.7 3.4-33.9 9.7L239 94.6c-9.4 5.8-15 16.1-15 27.1V248c0 22.1 17.9 40 40 40s40-17.9 40-40v-88h184c30.9 0 56 25.1 56 56v28.5l80-46.2c15.3-8.9 20.5-28.4 11.7-43.7z"] }; +var faHandshake = { prefix: 'fas', iconName: 'handshake', icon: [640, 512, [], "f2b5", "M434.7 64h-85.9c-8 0-15.7 3-21.6 8.4l-98.3 90c-.1.1-.2.3-.3.4-16.6 15.6-16.3 40.5-2.1 56 12.7 13.9 39.4 17.6 56.1 2.7.1-.1.3-.1.4-.2l79.9-73.2c6.5-5.9 16.7-5.5 22.6 1 6 6.5 5.5 16.6-1 22.6l-26.1 23.9L504 313.8c2.9 2.4 5.5 5 7.9 7.7V128l-54.6-54.6c-5.9-6-14.1-9.4-22.6-9.4zM544 128.2v223.9c0 17.7 14.3 32 32 32h64V128.2h-96zm48 223.9c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM0 384h64c17.7 0 32-14.3 32-32V128.2H0V384zm48-63.9c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16c0-8.9 7.2-16 16-16zm435.9 18.6L334.6 217.5l-30 27.5c-29.7 27.1-75.2 24.5-101.7-4.4-26.9-29.4-24.8-74.9 4.4-101.7L289.1 64h-83.8c-8.5 0-16.6 3.4-22.6 9.4L128 128v223.9h18.3l90.5 81.9c27.4 22.3 67.7 18.1 90-9.3l.2-.2 17.9 15.5c15.9 13 39.4 10.5 52.3-5.4l31.4-38.6 5.4 4.4c13.7 11.1 33.9 9.1 45-4.7l9.5-11.7c11.2-13.8 9.1-33.9-4.6-45.1z"] }; +var faHashtag = { prefix: 'fas', iconName: 'hashtag', icon: [448, 512, [], "f292", "M440.667 182.109l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l14.623-81.891C377.123 38.754 371.468 32 363.997 32h-40.632a12 12 0 0 0-11.813 9.891L296.175 128H197.54l14.623-81.891C213.477 38.754 207.822 32 200.35 32h-40.632a12 12 0 0 0-11.813 9.891L132.528 128H53.432a12 12 0 0 0-11.813 9.891l-7.143 40C33.163 185.246 38.818 192 46.289 192h74.81L98.242 320H19.146a12 12 0 0 0-11.813 9.891l-7.143 40C-1.123 377.246 4.532 384 12.003 384h74.81L72.19 465.891C70.877 473.246 76.532 480 84.003 480h40.632a12 12 0 0 0 11.813-9.891L151.826 384h98.634l-14.623 81.891C234.523 473.246 240.178 480 247.65 480h40.632a12 12 0 0 0 11.813-9.891L315.472 384h79.096a12 12 0 0 0 11.813-9.891l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l22.857-128h79.096a12 12 0 0 0 11.813-9.891zM261.889 320h-98.634l22.857-128h98.634l-22.857 128z"] }; +var faHdd = { prefix: 'fas', iconName: 'hdd', icon: [576, 512, [], "f0a0", "M576 304v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48zm-48-80a79.557 79.557 0 0 1 30.777 6.165L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L17.223 230.165A79.557 79.557 0 0 1 48 224h480zm-48 96c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm-96 0c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; +var faHeading = { prefix: 'fas', iconName: 'heading', icon: [512, 512, [], "f1dc", "M496 80V48c0-8.837-7.163-16-16-16H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.621v128H154.379V96H192c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.275v320H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.621V288H357.62v128H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.275V96H480c8.837 0 16-7.163 16-16z"] }; +var faHeadphones = { prefix: 'fas', iconName: 'headphones', icon: [512, 512, [], "f025", "M256 32C114.52 32 0 146.496 0 288v48a32 32 0 0 0 17.689 28.622l14.383 7.191C34.083 431.903 83.421 480 144 480h24c13.255 0 24-10.745 24-24V280c0-13.255-10.745-24-24-24h-24c-31.342 0-59.671 12.879-80 33.627V288c0-105.869 86.131-192 192-192s192 86.131 192 192v1.627C427.671 268.879 399.342 256 368 256h-24c-13.255 0-24 10.745-24 24v176c0 13.255 10.745 24 24 24h24c60.579 0 109.917-48.098 111.928-108.187l14.382-7.191A32 32 0 0 0 512 336v-48c0-141.479-114.496-256-256-256z"] }; +var faHeadphonesAlt = { prefix: 'fas', iconName: 'headphones-alt', icon: [512, 512, [], "f58f", "M160 288h-16c-35.35 0-64 28.7-64 64.12v63.76c0 35.41 28.65 64.12 64 64.12h16c17.67 0 32-14.36 32-32.06V320.06c0-17.71-14.33-32.06-32-32.06zm208 0h-16c-17.67 0-32 14.35-32 32.06v127.88c0 17.7 14.33 32.06 32 32.06h16c35.35 0 64-28.71 64-64.12v-63.76c0-35.41-28.65-64.12-64-64.12zM256 32C112.91 32 4.57 151.13 0 288v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288c0-114.67 93.33-207.8 208-207.82 114.67.02 208 93.15 208 207.82v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288C507.43 151.13 399.09 32 256 32z"] }; +var faHeadset = { prefix: 'fas', iconName: 'headset', icon: [512, 512, [], "f590", "M192 208c0-17.67-14.33-32-32-32h-16c-35.35 0-64 28.65-64 64v48c0 35.35 28.65 64 64 64h16c17.67 0 32-14.33 32-32V208zm176 144c35.35 0 64-28.65 64-64v-48c0-35.35-28.65-64-64-64h-16c-17.67 0-32 14.33-32 32v112c0 17.67 14.33 32 32 32h16zM256 0C113.18 0 4.58 118.83 0 256v16c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-16c0-114.69 93.31-208 208-208s208 93.31 208 208h-.12c.08 2.43.12 165.72.12 165.72 0 23.35-18.93 42.28-42.28 42.28H320c0-26.51-21.49-48-48-48h-32c-26.51 0-48 21.49-48 48s21.49 48 48 48h181.72c49.86 0 90.28-40.42 90.28-90.28V256C507.42 118.83 398.82 0 256 0z"] }; +var faHeart = { prefix: 'fas', iconName: 'heart', icon: [512, 512, [], "f004", "M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z"] }; +var faHeartbeat = { prefix: 'fas', iconName: 'heartbeat', icon: [512, 512, [], "f21e", "M320.2 243.8l-49.7 99.4c-6 12.1-23.4 11.7-28.9-.6l-56.9-126.3-30 71.7H60.6l182.5 186.5c7.1 7.3 18.6 7.3 25.7 0L451.4 288H342.3l-22.1-44.2zM473.7 73.9l-2.4-2.5c-51.5-52.6-135.8-52.6-187.4 0L256 100l-27.9-28.5c-51.5-52.7-135.9-52.7-187.4 0l-2.4 2.4C-10.4 123.7-12.5 203 31 256h102.4l35.9-86.2c5.4-12.9 23.6-13.2 29.4-.4l58.2 129.3 49-97.9c5.9-11.8 22.7-11.8 28.6 0l27.6 55.2H481c43.5-53 41.4-132.3-7.3-182.1z"] }; +var faHelicopter = { prefix: 'fas', iconName: 'helicopter', icon: [640, 512, [], "f533", "M304 384h272c17.67 0 32-14.33 32-32 0-123.71-100.29-224-224-224V64h176c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H144c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h176v64H112L68.8 70.4C65.78 66.37 61.03 64 56 64H16.01C5.6 64-2.04 73.78.49 83.88L32 192l160 64 86.4 115.2A31.992 31.992 0 0 0 304 384zm112-188.49C478.55 208.3 528.03 257.44 540.79 320H416V195.51zm219.37 263.3l-22.15-22.2c-6.25-6.26-16.24-6.1-22.64.01-7.09 6.77-13.84 11.25-24.64 11.25H240c-8.84 0-16 7.18-16 16.03v32.06c0 8.85 7.16 16.03 16 16.03h325.94c14.88 0 35.3-.47 68.45-29.52 7.02-6.14 7.57-17.05.98-23.66z"] }; +var faHighlighter = { prefix: 'fas', iconName: 'highlighter', icon: [544, 512, [], "f591", "M0 479.98L99.92 512l35.45-35.45-67.04-67.04L0 479.98zm124.61-240.01a36.592 36.592 0 0 0-10.79 38.1l13.05 42.83-50.93 50.94 96.23 96.23 50.86-50.86 42.74 13.08c13.73 4.2 28.65-.01 38.15-10.78l35.55-41.64-173.34-173.34-41.52 35.44zm403.31-160.7l-63.2-63.2c-20.49-20.49-53.38-21.52-75.12-2.35L190.55 183.68l169.77 169.78L530.27 154.4c19.18-21.74 18.15-54.63-2.35-75.13z"] }; +var faHistory = { prefix: 'fas', iconName: 'history', icon: [512, 512, [], "f1da", "M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z"] }; +var faHockeyPuck = { prefix: 'fas', iconName: 'hockey-puck', icon: [512, 512, [], "f453", "M0 160c0-53 114.6-96 256-96s256 43 256 96-114.6 96-256 96S0 213 0 160zm0 82.2V352c0 53 114.6 96 256 96s256-43 256-96V242.2c-113.4 82.3-398.5 82.4-512 0z"] }; +var faHome = { prefix: 'fas', iconName: 'home', icon: [576, 512, [], "f015", "M488 312.7V456c0 13.3-10.7 24-24 24H348c-6.6 0-12-5.4-12-12V356c0-6.6-5.4-12-12-12h-72c-6.6 0-12 5.4-12 12v112c0 6.6-5.4 12-12 12H112c-13.3 0-24-10.7-24-24V312.7c0-3.6 1.6-7 4.4-9.3l188-154.8c4.4-3.6 10.8-3.6 15.3 0l188 154.8c2.7 2.3 4.3 5.7 4.3 9.3zm83.6-60.9L488 182.9V44.4c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12V117l-89.5-73.7c-17.7-14.6-43.3-14.6-61 0L4.4 251.8c-5.1 4.2-5.8 11.8-1.6 16.9l25.5 31c4.2 5.1 11.8 5.8 16.9 1.6l235.2-193.7c4.4-3.6 10.8-3.6 15.3 0l235.2 193.7c5.1 4.2 12.7 3.5 16.9-1.6l25.5-31c4.2-5.2 3.4-12.7-1.7-16.9z"] }; +var faHospital = { prefix: 'fas', iconName: 'hospital', icon: [448, 512, [], "f0f8", "M448 492v20H0v-20c0-6.627 5.373-12 12-12h20V120c0-13.255 10.745-24 24-24h88V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v72h88c13.255 0 24 10.745 24 24v360h20c6.627 0 12 5.373 12 12zM308 192h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-168 64h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm104 128h-40c-6.627 0-12 5.373-12 12v84h64v-84c0-6.627-5.373-12-12-12zm64-96h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-116 12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zM182 96h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6z"] }; +var faHospitalAlt = { prefix: 'fas', iconName: 'hospital-alt', icon: [576, 512, [], "f47d", "M544 96H416V32c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32v368c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16V128c0-17.7-14.3-32-32-32zM160 436c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm160 128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm16-170c0 3.3-2.7 6-6 6h-26v26c0 3.3-2.7 6-6 6h-20c-3.3 0-6-2.7-6-6v-26h-26c-3.3 0-6-2.7-6-6v-20c0-3.3 2.7-6 6-6h26V86c0-3.3 2.7-6 6-6h20c3.3 0 6 2.7 6 6v26h26c3.3 0 6 2.7 6 6v20zm144 298c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z"] }; +var faHospitalSymbol = { prefix: 'fas', iconName: 'hospital-symbol', icon: [512, 512, [], "f47e", "M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm112 376c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-88h-96v88c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V136c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v88h96v-88c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v240z"] }; +var faHotTub = { prefix: 'fas', iconName: 'hot-tub', icon: [512, 512, [], "f593", "M414.21 177.65c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C378.96 6.14 372.22 0 364.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zm-108 0c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C270.96 6.14 264.22 0 256.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zM480 256H256l-110.93-83.2a63.99 63.99 0 0 0-38.4-12.8H64c-35.35 0-64 28.65-64 64v224c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64V288c0-17.67-14.33-32-32-32zM128 440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zM64 128c35.35 0 64-28.65 64-64S99.35 0 64 0 0 28.65 0 64s28.65 64 64 64z"] }; +var faHotel = { prefix: 'fas', iconName: 'hotel', icon: [576, 512, [], "f594", "M560 64c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h15.98v384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h240v-80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v80h240c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-16V64h16zm-304 44.8c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm0 96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm-128-96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zM179.2 256h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8zM192 384c0-53.02 42.98-96 96-96s96 42.98 96 96H192zm256-140.8c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-96c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4z"] }; +var faHourglass = { prefix: 'fas', iconName: 'hourglass', icon: [384, 512, [], "f254", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64z"] }; +var faHourglassEnd = { prefix: 'fas', iconName: 'hourglass-end', icon: [384, 512, [], "f253", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64zM192 208c-57.787 0-104-66.518-104-144h208c0 77.945-46.51 144-104 144z"] }; +var faHourglassHalf = { prefix: 'fas', iconName: 'hourglass-half', icon: [384, 512, [], "f252", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-75.078 384H99.08c17.059-46.797 52.096-80 92.92-80 40.821 0 75.862 33.196 92.922 80zm.019-256H99.078C91.988 108.548 88 86.748 88 64h208c0 22.805-3.987 44.587-11.059 64z"] }; +var faHourglassStart = { prefix: 'fas', iconName: 'hourglass-start', icon: [384, 512, [], "f251", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-64 448H88c0-77.458 46.204-144 104-144 57.786 0 104 66.517 104 144z"] }; +var faICursor = { prefix: 'fas', iconName: 'i-cursor', icon: [256, 512, [], "f246", "M256 52.048V12.065C256 5.496 250.726.148 244.158.066 211.621-.344 166.469.011 128 37.959 90.266.736 46.979-.114 11.913.114 5.318.157 0 5.519 0 12.114v39.645c0 6.687 5.458 12.078 12.145 11.998C38.111 63.447 96 67.243 96 112.182V224H60c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h36v112c0 44.932-56.075 48.031-83.95 47.959C5.404 447.942 0 453.306 0 459.952v39.983c0 6.569 5.274 11.917 11.842 11.999 32.537.409 77.689.054 116.158-37.894 37.734 37.223 81.021 38.073 116.087 37.845 6.595-.043 11.913-5.405 11.913-12V460.24c0-6.687-5.458-12.078-12.145-11.998C217.889 448.553 160 444.939 160 400V288h36c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-36V112.182c0-44.932 56.075-48.213 83.95-48.142 6.646.018 12.05-5.346 12.05-11.992z"] }; +var faIdBadge = { prefix: 'fas', iconName: 'id-badge', icon: [384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM144 32h96c8.8 0 16 7.2 16 16s-7.2 16-16 16h-96c-8.8 0-16-7.2-16-16s7.2-16 16-16zm48 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 416 80 407.4 80 396.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"] }; +var faIdCard = { prefix: 'fas', iconName: 'id-card', icon: [576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v16h576V80c0-26.5-21.5-48-48-48zM0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V128H0v304zm352-232c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zM176 192c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zM67.1 396.2C75.5 370.5 99.6 352 128 352h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.9-5.2 19.8-15.6 19.8H82.7c-10.4 0-18.8-10-15.6-19.8z"] }; +var faIdCardAlt = { prefix: 'fas', iconName: 'id-card-alt', icon: [576, 512, [], "f47f", "M528 64H384v96H192V64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM288 224c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm93.3 224H194.7c-10.4 0-18.8-10-15.6-19.8 8.3-25.6 32.4-44.2 60.9-44.2h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.8-5.2 19.8-15.6 19.8zM352 32c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v96h128V32z"] }; +var faImage = { prefix: 'fas', iconName: 'image', icon: [512, 512, [], "f03e", "M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z"] }; +var faImages = { prefix: 'fas', iconName: 'images', icon: [576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v208c0 44.112 35.888 80 80 80h336zm96-80V80c0-26.51-21.49-48-48-48H144c-26.51 0-48 21.49-48 48v256c0 26.51 21.49 48 48 48h384c26.51 0 48-21.49 48-48zM256 128c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-96 144l55.515-55.515c4.686-4.686 12.284-4.686 16.971 0L272 256l135.515-135.515c4.686-4.686 12.284-4.686 16.971 0L512 208v112H160v-48z"] }; +var faInbox = { prefix: 'fas', iconName: 'inbox', icon: [576, 512, [], "f01c", "M567.938 243.908L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L8.062 243.908A47.994 47.994 0 0 0 0 270.533V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V270.533a47.994 47.994 0 0 0-8.062-26.625zM162.252 128h251.497l85.333 128H376l-32 64H232l-32-64H76.918l85.334-128z"] }; +var faIndent = { prefix: 'fas', iconName: 'indent', icon: [448, 512, [], "f03c", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm176 144h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm-52.687-111.313l-96-95.984C17.266 138.652 0 145.776 0 160.016v191.975c0 14.329 17.325 21.304 27.313 11.313l96-95.992c6.249-6.247 6.249-16.377 0-22.625z"] }; +var faIndustry = { prefix: 'fas', iconName: 'industry', icon: [512, 512, [], "f275", "M475.115 163.781L336 252.309v-68.28c0-18.916-20.931-30.399-36.885-20.248L160 252.309V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h464c13.255 0 24-10.745 24-24V184.029c0-18.917-20.931-30.399-36.885-20.248z"] }; +var faInfinity = { prefix: 'fas', iconName: 'infinity', icon: [640, 512, [], "f534", "M471.1 96C405 96 353.3 137.3 320 174.6 286.7 137.3 235 96 168.9 96 75.8 96 0 167.8 0 256s75.8 160 168.9 160c66.1 0 117.8-41.3 151.1-78.6 33.3 37.3 85 78.6 151.1 78.6 93.1 0 168.9-71.8 168.9-160S564.2 96 471.1 96zM168.9 320c-40.2 0-72.9-28.7-72.9-64s32.7-64 72.9-64c38.2 0 73.4 36.1 94 64-20.4 27.6-55.9 64-94 64zm302.2 0c-38.2 0-73.4-36.1-94-64 20.4-27.6 55.9-64 94-64 40.2 0 72.9 28.7 72.9 64s-32.7 64-72.9 64z"] }; +var faInfo = { prefix: 'fas', iconName: 'info', icon: [192, 512, [], "f129", "M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z"] }; +var faInfoCircle = { prefix: 'fas', iconName: 'info-circle', icon: [512, 512, [], "f05a", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z"] }; +var faItalic = { prefix: 'fas', iconName: 'italic', icon: [320, 512, [], "f033", "M204.758 416h-33.849l62.092-320h40.725a16 16 0 0 0 15.704-12.937l6.242-32C297.599 41.184 290.034 32 279.968 32H120.235a16 16 0 0 0-15.704 12.937l-6.242 32C96.362 86.816 103.927 96 113.993 96h33.846l-62.09 320H46.278a16 16 0 0 0-15.704 12.935l-6.245 32C22.402 470.815 29.967 480 40.034 480h158.479a16 16 0 0 0 15.704-12.935l6.245-32c1.927-9.88-5.638-19.065-15.704-19.065z"] }; +var faJoint = { prefix: 'fas', iconName: 'joint', icon: [640, 512, [], "f595", "M444.34 181.1c22.38 15.68 35.66 41.16 35.66 68.59V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-43.24-21.01-83.41-56.34-108.06C463.85 125.02 448 99.34 448 70.31V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v66.4c0 43.69 24.56 81.63 60.34 106.7zM194.97 358.98C126.03 370.07 59.69 394.69 0 432c83.65 52.28 180.3 80 278.94 80h88.57L254.79 380.49c-14.74-17.2-37.45-25.11-59.82-21.51zM553.28 87.09c-5.67-3.8-9.28-9.96-9.28-16.78V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v62.31c0 22.02 10.17 43.41 28.64 55.39C550.79 153.04 576 199.54 576 249.69V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-65.44-32.41-126.19-86.72-162.6zM360.89 352.05c-34.4.06-86.81.15-88.21.17l117.8 137.43A63.987 63.987 0 0 0 439.07 512h88.45L409.57 374.4a63.955 63.955 0 0 0-48.68-22.35zM616 352H432l117.99 137.65A63.987 63.987 0 0 0 598.58 512H616c13.25 0 24-10.75 24-24V376c0-13.26-10.75-24-24-24z"] }; +var faKey = { prefix: 'fas', iconName: 'key', icon: [512, 512, [], "f084", "M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z"] }; +var faKeyboard = { prefix: 'fas', iconName: 'keyboard', icon: [576, 512, [], "f11c", "M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"] }; +var faKiss = { prefix: 'fas', iconName: 'kiss', icon: [496, 512, [], "f596", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm136 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm24-156c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faKissBeam = { prefix: 'fas', iconName: 'kiss-beam', icon: [496, 512, [], "f597", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-39 219.9l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5zM304 396c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm65-168.1l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5z"] }; +var faKissWinkHeart = { prefix: 'fas', iconName: 'kiss-wink-heart', icon: [504, 512, [], "f598", "M501.1 402.5c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zm-177.6-4c-5.6-20.3-2.3-42 9-59.7 29.7-46.3 98.7-45.5 127.8 4.3 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-.3-.7-23.9-84.6-23.9-84.6zM168 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm120 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-5.7-12.3 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.8-3.7-4.6-16.6 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C274.6 368.7 288 383 288 396zm16-179c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S400 181 404 206.2c1.7 11.1-11.3 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 217z"] }; +var faKiwiBird = { prefix: 'fas', iconName: 'kiwi-bird', icon: [576, 512, [], "f535", "M575.81 217.98C572.64 157.41 518.28 112 457.63 112h-9.37c-52.82 0-104.25-16.25-147.74-46.24-41.99-28.96-96.04-41.62-153.21-28.7C129.3 41.12-.08 78.24 0 224c.04 70.95 38.68 132.8 95.99 166.01V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-54.26c15.36 3.96 31.4 6.26 48 6.26 5.44 0 10.68-.73 16-1.18V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-59.43c14.24-5.06 27.88-11.39 40.34-19.51C342.07 355.25 393.86 336 448.46 336c25.48 0 16.01-.31 23.05-.78l74.41 136.44c2.86 5.23 8.3 8.34 14.05 8.34 1.31 0 2.64-.16 3.95-.5 7.09-1.8 12.05-8.19 12.05-15.5 0 0 .14-240.24-.16-246.02zM463.97 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm80 153.25l-39.86-73.08c15.12-5.83 28.73-14.6 39.86-25.98v99.06z"] }; +var faLanguage = { prefix: 'fas', iconName: 'language', icon: [640, 512, [], "f1ab", "M304 416H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h280v320zm-120.676-72.622A12 12 0 0 0 194.839 352h22.863c8.22 0 14.007-8.078 11.362-15.861L171.61 167.085a12 12 0 0 0-11.362-8.139h-32.489a12.001 12.001 0 0 0-11.362 8.139L58.942 336.139C56.297 343.922 62.084 352 70.304 352h22.805a12 12 0 0 0 11.535-8.693l9.118-31.807h60.211l9.351 31.878zm-39.051-140.42s4.32 21.061 7.83 33.21l10.8 37.531h-38.07l11.07-37.531c3.51-12.15 7.83-33.21 7.83-33.21h.54zM616 416H336V96h280c13.255 0 24 10.745 24 24v272c0 13.255-10.745 24-24 24zm-36-228h-64v-16c0-6.627-5.373-12-12-12h-16c-6.627 0-12 5.373-12 12v16h-64c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h114.106c-6.263 14.299-16.518 28.972-30.023 43.206-6.56-6.898-12.397-13.91-17.365-20.933-3.639-5.144-10.585-6.675-15.995-3.446l-7.28 4.346-6.498 3.879c-5.956 3.556-7.693 11.421-3.735 17.117 6.065 8.729 13.098 17.336 20.984 25.726-8.122 6.226-16.841 12.244-26.103 17.964-5.521 3.41-7.381 10.556-4.162 16.19l7.941 13.896c3.362 5.883 10.935 7.826 16.706 4.276 12.732-7.831 24.571-16.175 35.443-24.891 10.917 8.761 22.766 17.102 35.396 24.881 5.774 3.556 13.353 1.618 16.717-4.27l7.944-13.903c3.213-5.623 1.37-12.76-4.135-16.171a312.737 312.737 0 0 1-26.06-18.019c21.024-22.425 35.768-46.289 42.713-69.85H580c6.627 0 12-5.373 12-12v-16c0-6.625-5.373-11.998-12-11.998z"] }; +var faLaptop = { prefix: 'fas', iconName: 'laptop', icon: [640, 512, [], "f109", "M512 64v256H128V64h384m16-64H112C85.5 0 64 21.5 64 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm100 416H389.5c-3 0-5.5 2.1-5.9 5.1C381.2 436.3 368 448 352 448h-64c-16 0-29.2-11.7-31.6-26.9-.5-2.9-3-5.1-5.9-5.1H12c-6.6 0-12 5.4-12 12v36c0 26.5 21.5 48 48 48h544c26.5 0 48-21.5 48-48v-36c0-6.6-5.4-12-12-12z"] }; +var faLaugh = { prefix: 'fas', iconName: 'laugh', icon: [496, 512, [], "f599", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 152c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm88 272h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18-8.9 71-69.5 126-142.9 126z"] }; +var faLaughBeam = { prefix: 'fas', iconName: 'laugh-beam', icon: [496, 512, [], "f59a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm24 199.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.8 4.1-15.1-4.5zm-160 0c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z"] }; +var faLaughSquint = { prefix: 'fas', iconName: 'laugh-squint', icon: [496, 512, [], "f59b", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 161.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 180l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z"] }; +var faLaughWink = { prefix: 'fas', iconName: 'laugh-wink', icon: [496, 512, [], "f59c", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm20.1 198.1c4-25.2 34.2-42.1 59.9-42.1s55.9 16.9 59.9 42.1c1.7 11.1-11.4 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 217c-8.4 7.4-21.6.3-19.9-10.9zM168 160c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm230.9 146C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z"] }; +var faLeaf = { prefix: 'fas', iconName: 'leaf', icon: [576, 512, [], "f06c", "M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z"] }; +var faLemon = { prefix: 'fas', iconName: 'lemon', icon: [512, 512, [], "f094", "M489.038 22.963C465.944-.13 434.648-5.93 413.947 6.129c-58.906 34.312-181.25-53.077-321.073 86.746S40.441 355.041 6.129 413.945c-12.059 20.702-6.26 51.999 16.833 75.093 23.095 23.095 54.392 28.891 75.095 16.832 58.901-34.31 181.246 53.079 321.068-86.743S471.56 156.96 505.871 98.056c12.059-20.702 6.261-51.999-16.833-75.093zM243.881 95.522c-58.189 14.547-133.808 90.155-148.358 148.358-1.817 7.27-8.342 12.124-15.511 12.124-1.284 0-2.59-.156-3.893-.481-8.572-2.144-13.784-10.83-11.642-19.403C81.901 166.427 166.316 81.93 236.119 64.478c8.575-2.143 17.261 3.069 19.403 11.642s-3.069 17.259-11.641 19.402z"] }; +var faLessThan = { prefix: 'fas', iconName: 'less-than', icon: [384, 512, [], "f536", "M365.46 357.74L147.04 255.89l218.47-101.88c16.02-7.47 22.95-26.51 15.48-42.53l-13.52-29C360 66.46 340.96 59.53 324.94 67L18.48 209.91a32.014 32.014 0 0 0-18.48 29v34.24c0 12.44 7.21 23.75 18.48 29l306.31 142.83c16.06 7.49 35.15.54 42.64-15.52l13.56-29.08c7.49-16.06.54-35.15-15.53-42.64z"] }; +var faLessThanEqual = { prefix: 'fas', iconName: 'less-than-equal', icon: [448, 512, [], "f537", "M54.98 214.2l301.41 119.87c18.39 6.03 38.71-2.54 45.38-19.15l12.09-30.08c6.68-16.61-2.82-34.97-21.21-41l-175.44-68.05 175.56-68.09c18.29-6 27.74-24.27 21.1-40.79l-12.03-29.92c-6.64-16.53-26.86-25.06-45.15-19.06L54.98 137.89C41.21 142.41 32 154.5 32 168.07v15.96c0 13.56 9.21 25.65 22.98 30.17zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"] }; +var faLevelDownAlt = { prefix: 'fas', iconName: 'level-down-alt', icon: [320, 512, [], "f3be", "M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z"] }; +var faLevelUpAlt = { prefix: 'fas', iconName: 'level-up-alt', icon: [320, 512, [], "f3bf", "M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z"] }; +var faLifeRing = { prefix: 'fas', iconName: 'life-ring', icon: [512, 512, [], "f1cd", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm173.696 119.559l-63.399 63.399c-10.987-18.559-26.67-34.252-45.255-45.255l63.399-63.399a218.396 218.396 0 0 1 45.255 45.255zM256 352c-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96-42.981 96-96 96zM127.559 82.304l63.399 63.399c-18.559 10.987-34.252 26.67-45.255 45.255l-63.399-63.399a218.372 218.372 0 0 1 45.255-45.255zM82.304 384.441l63.399-63.399c10.987 18.559 26.67 34.252 45.255 45.255l-63.399 63.399a218.396 218.396 0 0 1-45.255-45.255zm302.137 45.255l-63.399-63.399c18.559-10.987 34.252-26.67 45.255-45.255l63.399 63.399a218.403 218.403 0 0 1-45.255 45.255z"] }; +var faLightbulb = { prefix: 'fas', iconName: 'lightbulb', icon: [384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zm-143.107-44c-9.907 0-18.826-6.078-22.376-15.327C67.697 267.541 16 277.731 16 176 16 78.803 94.805 0 192 0s176 78.803 176 176c0 101.731-51.697 91.541-90.516 192.673-3.55 9.249-12.47 15.327-22.376 15.327H128.893zM112 176c0-44.112 35.888-80 80-80 8.837 0 16-7.164 16-16s-7.163-16-16-16c-61.757 0-112 50.243-112 112 0 8.836 7.164 16 16 16s16-7.164 16-16z"] }; +var faLink = { prefix: 'fas', iconName: 'link', icon: [512, 512, [], "f0c1", "M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z"] }; +var faLiraSign = { prefix: 'fas', iconName: 'lira-sign', icon: [384, 512, [], "f195", "M371.994 256h-48.019C317.64 256 312 260.912 312 267.246 312 368 230.179 416 144 416V256.781l134.603-29.912A12 12 0 0 0 288 215.155v-40.976c0-7.677-7.109-13.38-14.603-11.714L144 191.219V160.78l134.603-29.912A12 12 0 0 0 288 119.154V78.179c0-7.677-7.109-13.38-14.603-11.714L144 95.219V44c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v68.997L9.397 125.131A12 12 0 0 0 0 136.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 178.558v30.439L9.397 221.131A12 12 0 0 0 0 232.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 274.558V468c0 6.627 5.373 12 12 12h79.583c134.091 0 223.255-77.834 228.408-211.592.261-6.782-5.211-12.408-11.997-12.408z"] }; +var faList = { prefix: 'fas', iconName: 'list', icon: [512, 512, [], "f03a", "M128 116V76c0-8.837 7.163-16 16-16h352c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H144c-8.837 0-16-7.163-16-16zm16 176h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 144h64c8.837 0 16-7.163 16-16V64c0-8.837-7.163-16-16-16H16C7.163 48 0 55.163 0 64v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16z"] }; +var faListAlt = { prefix: 'fas', iconName: 'list-alt', icon: [512, 512, [], "f022", "M464 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM128 120c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288-136v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12z"] }; +var faListOl = { prefix: 'fas', iconName: 'list-ol', icon: [512, 512, [], "f0cb", "M3.263 139.527c0-7.477 3.917-11.572 11.573-11.572h15.131V88.078c0-5.163.534-10.503.534-10.503h-.356s-1.779 2.67-2.848 3.738c-4.451 4.273-10.504 4.451-15.666-1.068l-5.518-6.231c-5.342-5.341-4.984-11.216.534-16.379l21.72-19.938C32.815 33.602 36.732 32 42.785 32H54.89c7.656 0 11.749 3.916 11.749 11.572v84.384h15.488c7.655 0 11.572 4.094 11.572 11.572v8.901c0 7.477-3.917 11.572-11.572 11.572H14.836c-7.656 0-11.573-4.095-11.573-11.572v-8.902zM2.211 304.591c0-47.278 50.955-56.383 50.955-69.165 0-7.18-5.954-8.755-9.28-8.755-3.153 0-6.479 1.051-9.455 3.852-5.079 4.903-10.507 7.004-16.111 2.451l-8.579-6.829c-5.779-4.553-7.18-9.805-2.803-15.409C13.592 201.981 26.025 192 47.387 192c19.437 0 44.476 10.506 44.476 39.573 0 38.347-46.753 46.402-48.679 56.909h39.049c7.529 0 11.557 4.027 11.557 11.382v8.755c0 7.354-4.028 11.382-11.557 11.382h-67.94c-7.005 0-12.083-4.028-12.083-11.382v-4.028zM5.654 454.61l5.603-9.28c3.853-6.654 9.105-7.004 15.584-3.152 4.903 2.101 9.63 3.152 14.359 3.152 10.155 0 14.358-3.502 14.358-8.23 0-6.654-5.604-9.106-15.934-9.106h-4.728c-5.954 0-9.28-2.101-12.258-7.88l-1.05-1.926c-2.451-4.728-1.226-9.806 2.801-14.884l5.604-7.004c6.829-8.405 12.257-13.483 12.257-13.483v-.35s-4.203 1.051-12.608 1.051H16.685c-7.53 0-11.383-4.028-11.383-11.382v-8.755c0-7.53 3.853-11.382 11.383-11.382h58.484c7.529 0 11.382 4.027 11.382 11.382v3.327c0 5.778-1.401 9.806-5.079 14.183l-17.509 20.137c19.611 5.078 28.716 20.487 28.716 34.845 0 21.363-14.358 44.126-48.503 44.126-16.636 0-28.192-4.728-35.896-9.455-5.779-4.202-6.304-9.805-2.626-15.934zM144 132h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faListUl = { prefix: 'fas', iconName: 'list-ul', icon: [512, 512, [], "f0ca", "M96 96c0 26.51-21.49 48-48 48S0 122.51 0 96s21.49-48 48-48 48 21.49 48 48zM48 208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm0 160c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm96-236h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faLocationArrow = { prefix: 'fas', iconName: 'location-arrow', icon: [512, 512, [], "f124", "M443.683 4.529L27.818 196.418C-18.702 217.889-3.39 288 47.933 288H224v175.993c0 51.727 70.161 66.526 91.582 20.115L507.38 68.225c18.905-40.961-23.752-82.133-63.697-63.696z"] }; +var faLock = { prefix: 'fas', iconName: 'lock', icon: [448, 512, [], "f023", "M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z"] }; +var faLockOpen = { prefix: 'fas', iconName: 'lock-open', icon: [576, 512, [], "f3c1", "M423.5 0C339.5.3 272 69.5 272 153.5V224H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48h-48v-71.1c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v80c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-80C576 68 507.5-.3 423.5 0z"] }; +var faLongArrowAltDown = { prefix: 'fas', iconName: 'long-arrow-alt-down', icon: [256, 512, [], "f309", "M168 345.941V44c0-6.627-5.373-12-12-12h-56c-6.627 0-12 5.373-12 12v301.941H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.569 9.373 33.941 0l86.059-86.059c15.119-15.119 4.411-40.971-16.971-40.971H168z"] }; +var faLongArrowAltLeft = { prefix: 'fas', iconName: 'long-arrow-alt-left', icon: [448, 512, [], "f30a", "M134.059 296H436c6.627 0 12-5.373 12-12v-56c0-6.627-5.373-12-12-12H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.569 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296z"] }; +var faLongArrowAltRight = { prefix: 'fas', iconName: 'long-arrow-alt-right', icon: [448, 512, [], "f30b", "M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z"] }; +var faLongArrowAltUp = { prefix: 'fas', iconName: 'long-arrow-alt-up', icon: [256, 512, [], "f30c", "M88 166.059V468c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12V166.059h46.059c21.382 0 32.09-25.851 16.971-40.971l-86.059-86.059c-9.373-9.373-24.569-9.373-33.941 0l-86.059 86.059c-15.119 15.119-4.411 40.971 16.971 40.971H88z"] }; +var faLowVision = { prefix: 'fas', iconName: 'low-vision', icon: [576, 512, [], "f2a8", "M569.344 231.631C512.96 135.949 407.81 72 288 72c-28.468 0-56.102 3.619-82.451 10.409L152.778 10.24c-7.601-10.858-22.564-13.5-33.423-5.9l-13.114 9.178c-10.86 7.601-13.502 22.566-5.9 33.426l43.131 58.395C89.449 131.73 40.228 174.683 6.682 231.581c-.01.017-.023.033-.034.05-8.765 14.875-8.964 33.528 0 48.739 38.5 65.332 99.742 115.862 172.859 141.349L55.316 244.302A272.194 272.194 0 0 1 83.61 208.39l119.4 170.58h.01l40.63 58.04a330.055 330.055 0 0 0 78.94 1.17l-189.98-271.4a277.628 277.628 0 0 1 38.777-21.563l251.836 356.544c7.601 10.858 22.564 13.499 33.423 5.9l13.114-9.178c10.86-7.601 13.502-22.567 5.9-33.426l-43.12-58.377-.007-.009c57.161-27.978 104.835-72.04 136.81-126.301a47.938 47.938 0 0 0 .001-48.739zM390.026 345.94l-19.066-27.23c24.682-32.567 27.711-76.353 8.8-111.68v.03c0 23.65-19.17 42.82-42.82 42.82-23.828 0-42.82-19.349-42.82-42.82 0-23.65 19.17-42.82 42.82-42.82h.03c-24.75-13.249-53.522-15.643-79.51-7.68l-19.068-27.237C253.758 123.306 270.488 120 288 120c75.162 0 136 60.826 136 136 0 34.504-12.833 65.975-33.974 89.94z"] }; +var faLuggageCart = { prefix: 'fas', iconName: 'luggage-cart', icon: [640, 512, [], "f59d", "M224 320h32V96h-32c-17.67 0-32 14.33-32 32v160c0 17.67 14.33 32 32 32zm352-32V128c0-17.67-14.33-32-32-32h-32v224h32c17.67 0 32-14.33 32-32zm48 96H128V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h48v368c0 8.84 7.16 16 16 16h82.94c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16h197.88c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM480 96V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v272h192V96zm-48 0h-96V48h96v48z"] }; +var faMagic = { prefix: 'fas', iconName: 'magic', icon: [512, 512, [], "f0d0", "M224 96l16-32 32-16-32-16-16-32-16 32-32 16 32 16 16 32zM80 160l26.66-53.33L160 80l-53.34-26.67L80 0 53.34 53.33 0 80l53.34 26.67L80 160zm352 128l-26.66 53.33L352 368l53.34 26.67L432 448l26.66-53.33L512 368l-53.34-26.67L432 288zm70.62-193.77L417.77 9.38C411.53 3.12 403.34 0 395.15 0c-8.19 0-16.38 3.12-22.63 9.38L9.38 372.52c-12.5 12.5-12.5 32.76 0 45.25l84.85 84.85c6.25 6.25 14.44 9.37 22.62 9.37 8.19 0 16.38-3.12 22.63-9.37l363.14-363.15c12.5-12.48 12.5-32.75 0-45.24zM359.45 203.46l-50.91-50.91 86.6-86.6 50.91 50.91-86.6 86.6z"] }; +var faMagnet = { prefix: 'fas', iconName: 'magnet', icon: [512, 512, [], "f076", "M164.1 160H12c-6.6 0-12-5.4-12-12V68c0-19.9 16.1-36 36-36h104c19.9 0 36 16.1 36 36v80c.1 6.6-5.3 12-11.9 12zm348-12V67.9c0-19.9-16.1-36-36-36h-104c-19.9 0-36 16.1-36 36v80c0 6.6 5.4 12 12 12h152c6.6.1 12-5.3 12-11.9zm-164 44c-6.6 0-12 5.4-12 12v52c0 128.1-160 127.9-160 0v-52c0-6.6-5.4-12-12-12h-152c-6.7 0-12 5.4-12 12.1.1 21.4.6 40.3 0 53.3C.1 408 136.3 504 256.9 504 377.5 504 512 408 512 257.3c-.6-12.8-.2-33 0-53.2 0-6.7-5.3-12.1-12-12.1H348.1z"] }; +var faMale = { prefix: 'fas', iconName: 'male', icon: [192, 512, [], "f183", "M96 0c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64S60.654 0 96 0m48 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H48c-26.51 0-48 21.49-48 48v136c0 13.255 10.745 24 24 24h16v136c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V352h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48z"] }; +var faMap = { prefix: 'fas', iconName: 'map', icon: [576, 512, [], "f279", "M0 117.66v346.32c0 11.32 11.43 19.06 21.94 14.86L160 416V32L20.12 87.95A32.006 32.006 0 0 0 0 117.66zM192 416l192 64V96L192 32v384zM554.06 33.16L416 96v384l139.88-55.95A31.996 31.996 0 0 0 576 394.34V48.02c0-11.32-11.43-19.06-21.94-14.86z"] }; +var faMapMarked = { prefix: 'fas', iconName: 'map-marked', icon: [576, 512, [], "f59f", "M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z"] }; +var faMapMarkedAlt = { prefix: 'fas', iconName: 'map-marked-alt', icon: [576, 512, [], "f5a0", "M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zm0 168c-23.2 0-42-18.8-42-42s18.8-42 42-42 42 18.8 42 42-18.8 42-42 42zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z"] }; +var faMapMarker = { prefix: 'fas', iconName: 'map-marker', icon: [384, 512, [], "f041", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0z"] }; +var faMapMarkerAlt = { prefix: 'fas', iconName: 'map-marker-alt', icon: [384, 512, [], "f3c5", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"] }; +var faMapPin = { prefix: 'fas', iconName: 'map-pin', icon: [320, 512, [], "f276", "M192 300.813v172.82l-22.015 33.023c-4.75 7.125-15.219 7.125-19.969 0L128 473.633v-172.82a162.221 162.221 0 0 0 64 0zM160 0c79.529 0 144 64.471 144 144s-64.471 144-144 144S16 223.529 16 144 80.471 0 160 0M80 136c0-39.701 32.299-72 72-72a8 8 0 0 0 0-16c-48.523 0-88 39.477-88 88a8 8 0 0 0 16 0z"] }; +var faMapSigns = { prefix: 'fas', iconName: 'map-signs', icon: [512, 512, [], "f277", "M487.515 104.485L439.03 152.97a23.998 23.998 0 0 1-16.97 7.029H56c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h160v-8c0-13.255 10.745-24 24-24h32c13.255 0 24 10.745 24 24v8h126.059a24 24 0 0 1 16.97 7.029l48.485 48.485c4.687 4.687 4.687 12.285.001 16.971zM216 368v120c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V368h-80zm240-144H296v-48h-80v48H89.941a24 24 0 0 0-16.97 7.029l-48.485 48.485c-4.686 4.686-4.686 12.284 0 16.971l48.485 48.485a23.998 23.998 0 0 0 16.97 7.029H456c13.255 0 24-10.745 24-24v-80C480 234.745 469.255 224 456 224z"] }; +var faMarker = { prefix: 'fas', iconName: 'marker', icon: [512, 512, [], "f5a1", "M93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l75.4-75.4-128.02-128.02-75.4 75.4zM485.49 26.51c-35.35-35.35-92.67-35.35-128.02 0l-21.76 21.76-36.56-36.55c-15.62-15.62-40.95-15.62-56.56 0L138.47 115.84c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0l87.15-87.15 19.59 19.59L191.98 192 320 320.02l165.49-165.49c35.35-35.35 35.35-92.66 0-128.02z"] }; +var faMars = { prefix: 'fas', iconName: 'mars', icon: [384, 512, [], "f222", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c0-6.6-5.4-12-12-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faMarsDouble = { prefix: 'fas', iconName: 'mars-double', icon: [512, 512, [], "f227", "M340 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C198.5 72.1 172.2 64 144 64 64.5 64 0 128.5 0 208s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.5 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 288c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80zm356-128.1h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7c-18.2-11.4-39-18.9-61.5-21.3-2.1 21.8-8.2 43.3-18.4 63.3 1.1 0 2.2-.1 3.2-.1 44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80c0-1.1 0-2.2.1-3.2-20 10.2-41.5 16.4-63.3 18.4C168.4 455.6 229.6 512 304 512c79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12v-79c0-6.7-5.4-12.1-12-12.1z"] }; +var faMarsStroke = { prefix: 'fas', iconName: 'mars-stroke', icon: [384, 512, [], "f229", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-17.5 17.5-14.1-14.1c-4.7-4.7-12.3-4.7-17 0L224.5 133c-4.7 4.7-4.7 12.3 0 17l14.1 14.1-18 18c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l18-18 14.1 14.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L329.2 164l17.5-17.5 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c-.1-6.6-5.5-12-12.1-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faMarsStrokeH = { prefix: 'fas', iconName: 'mars-stroke-h', icon: [480, 512, [], "f22b", "M476.2 247.5l-55.9-55.9c-7.6-7.6-20.5-2.2-20.5 8.5V224H376v-20c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v20h-27.6c-5.8-25.6-18.7-49.9-38.6-69.8C189.6 98 98.4 98 42.2 154.2c-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 19.9-19.9 32.8-44.2 38.6-69.8H312v20c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-20h23.9v23.9c0 10.7 12.9 16 20.5 8.5l55.9-55.9c4.6-4.7 4.6-12.3-.1-17zm-275.6 65.1c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z"] }; +var faMarsStrokeV = { prefix: 'fas', iconName: 'mars-stroke-v', icon: [288, 512, [], "f22a", "M245.8 234.2c-19.9-19.9-44.2-32.8-69.8-38.6v-25.4h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V81.4h23.9c10.7 0 16-12.9 8.5-20.5L152.5 5.1c-4.7-4.7-12.3-4.7-17 0L79.6 61c-7.6 7.6-2.2 20.5 8.5 20.5H112v24.7H92c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h20v25.4c-25.6 5.8-49.9 18.7-69.8 38.6-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 56.3-56.2 56.3-147.4 0-203.6zm-45.2 158.4c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z"] }; +var faMedal = { prefix: 'fas', iconName: 'medal', icon: [512, 512, [], "f5a2", "M223.75 130.75L154.62 15.54A31.997 31.997 0 0 0 127.18 0H16.03C3.08 0-4.5 14.57 2.92 25.18l111.27 158.96c29.72-27.77 67.52-46.83 109.56-53.39zM495.97 0H384.82c-11.24 0-21.66 5.9-27.44 15.54l-69.13 115.21c42.04 6.56 79.84 25.62 109.56 53.38L509.08 25.18C516.5 14.57 508.92 0 495.97 0zM256 160c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm92.52 157.26l-37.93 36.96 8.97 52.22c1.6 9.36-8.26 16.51-16.65 12.09L256 393.88l-46.9 24.65c-8.4 4.45-18.25-2.74-16.65-12.09l8.97-52.22-37.93-36.96c-6.82-6.64-3.05-18.23 6.35-19.59l52.43-7.64 23.43-47.52c2.11-4.28 6.19-6.39 10.28-6.39 4.11 0 8.22 2.14 10.33 6.39l23.43 47.52 52.43 7.64c9.4 1.36 13.17 12.95 6.35 19.59z"] }; +var faMedkit = { prefix: 'fas', iconName: 'medkit', icon: [512, 512, [], "f0fa", "M96 480h320V128h-32V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v48H96v352zm96-384h128v32H192V96zm320 80v256c0 26.51-21.49 48-48 48h-16V128h16c26.51 0 48 21.49 48 48zM64 480H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v352zm288-208v32c0 8.837-7.163 16-16 16h-48v48c0 8.837-7.163 16-16 16h-32c-8.837 0-16-7.163-16-16v-48h-48c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h48v-48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v48h48c8.837 0 16 7.163 16 16z"] }; +var faMeh = { prefix: 'fas', iconName: 'meh', icon: [496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm176 192H152c-21.2 0-21.2-32 0-32h192c21.2 0 21.2 32 0 32zm-16-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faMehBlank = { prefix: 'fas', iconName: 'meh-blank', icon: [496, 512, [], "f5a4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faMehRollingEyes = { prefix: 'fas', iconName: 'meh-rolling-eyes', icon: [496, 512, [], "f5a5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 224c0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64s-64-28.7-64-64zm224 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-112c-35.3 0-64-28.7-64-64 0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64z"] }; +var faMemory = { prefix: 'fas', iconName: 'memory', icon: [640, 512, [], "f538", "M640 130.94V96c0-17.67-14.33-32-32-32H32C14.33 64 0 78.33 0 96v34.94c18.6 6.61 32 24.19 32 45.06s-13.4 38.45-32 45.06V320h640v-98.94c-18.6-6.61-32-24.19-32-45.06s13.4-38.45 32-45.06zM224 256h-64V128h64v128zm128 0h-64V128h64v128zm128 0h-64V128h64v128zM0 448h64v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h64v-96H0v96z"] }; +var faMercury = { prefix: 'fas', iconName: 'mercury', icon: [288, 512, [], "f223", "M288 208c0-44.2-19.9-83.7-51.2-110.1 2.5-1.8 4.9-3.8 7.2-5.8 24.7-21.2 39.8-48.8 43.2-78.8.9-7.1-4.7-13.3-11.9-13.3h-40.5C229 0 224.1 4.1 223 9.8c-2.4 12.5-9.6 24.3-20.7 33.8C187 56.8 166.3 64 144 64s-43-7.2-58.4-20.4C74.5 34.1 67.4 22.3 64.9 9.8 63.8 4.1 58.9 0 53.2 0H12.7C5.5 0-.1 6.2.8 13.3 4.2 43.4 19.2 71 44 92.2c2.3 2 4.7 3.9 7.2 5.8C19.9 124.3 0 163.8 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z"] }; +var faMicrochip = { prefix: 'fas', iconName: 'microchip', icon: [512, 512, [], "f2db", "M416 48v416c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h224c26.51 0 48 21.49 48 48zm96 58v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42V88h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zM30 376h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6z"] }; +var faMicrophone = { prefix: 'fas', iconName: 'microphone', icon: [352, 512, [], "f130", "M176 352c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96zm160-160h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16z"] }; +var faMicrophoneAlt = { prefix: 'fas', iconName: 'microphone-alt', icon: [352, 512, [], "f3c9", "M336 192h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16zM176 352c53.02 0 96-42.98 96-96h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96z"] }; +var faMicrophoneAltSlash = { prefix: 'fas', iconName: 'microphone-alt-slash', icon: [640, 512, [], "f539", "M633.82 458.1L476.26 336.33C488.74 312.21 496 284.98 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67h-43.67l-41.4-32H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.78c11.71-1.62 23.1-4.28 33.96-8.08l-50.4-38.96c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z"] }; +var faMicrophoneSlash = { prefix: 'fas', iconName: 'microphone-slash', icon: [640, 512, [], "f131", "M633.82 458.1l-157.8-121.96C488.61 312.13 496 285.01 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67V96c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.77c11.66-1.6 22.85-4.54 33.67-8.31l-50.11-38.73c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z"] }; +var faMinus = { prefix: 'fas', iconName: 'minus', icon: [448, 512, [], "f068", "M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; +var faMinusCircle = { prefix: 'fas', iconName: 'minus-circle', icon: [512, 512, [], "f056", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM124 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H124z"] }; +var faMinusSquare = { prefix: 'fas', iconName: 'minus-square', icon: [448, 512, [], "f146", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H92z"] }; +var faMobile = { prefix: 'fas', iconName: 'mobile', icon: [320, 512, [], "f10b", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faMobileAlt = { prefix: 'fas', iconName: 'mobile-alt', icon: [320, 512, [], "f3cd", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm112-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v312z"] }; +var faMoneyBill = { prefix: 'fas', iconName: 'money-bill', icon: [640, 512, [], "f0d6", "M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 176c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 48h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z"] }; +var faMoneyBillAlt = { prefix: 'fas', iconName: 'money-bill-alt', icon: [640, 512, [], "f3d1", "M352 288h-16v-88c0-4.42-3.58-8-8-8h-13.58c-4.74 0-9.37 1.4-13.31 4.03l-15.33 10.22a7.994 7.994 0 0 0-2.22 11.09l8.88 13.31a7.994 7.994 0 0 0 11.09 2.22l.47-.31V288h-16c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8h64c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 192c-53.02 0-96-50.15-96-112 0-61.86 42.98-112 96-112s96 50.14 96 112c0 61.87-43 112-96 112zm272 32h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z"] }; +var faMoneyBillWave = { prefix: 'fas', iconName: 'money-bill-wave', icon: [640, 512, [], "f53a", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM48 132.22c20.12 5.04 41.12 7.57 62.72 8.93C104.84 170.54 79 192.69 48 192.69v-60.47zm0 285v-47.78c34.37 0 62.18 27.27 63.71 61.4-22.53-1.81-43.59-6.31-63.71-13.62zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 27.78c-17.52-4.39-35.71-6.85-54.32-8.44 5.87-26.08 27.5-45.88 54.32-49.28v57.72zm0-236.11c-30.89-3.91-54.86-29.7-55.81-61.55 19.54 2.17 38.09 6.23 55.81 12.66v48.89z"] }; +var faMoneyBillWaveAlt = { prefix: 'fas', iconName: 'money-bill-wave-alt', icon: [640, 512, [], "f53b", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96z"] }; +var faMoneyCheck = { prefix: 'fas', iconName: 'money-check', icon: [640, 512, [], "f53c", "M0 448c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128H0v320zm448-208c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-32zm0 120c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H456c-4.42 0-8-3.58-8-8v-16zM64 264c0-4.42 3.58-8 8-8h304c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm0 96c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zM624 32H16C7.16 32 0 39.16 0 48v48h640V48c0-8.84-7.16-16-16-16z"] }; +var faMoneyCheckAlt = { prefix: 'fas', iconName: 'money-check-alt', icon: [640, 512, [], "f53d", "M608 32H32C14.33 32 0 46.33 0 64v384c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM176 327.88V344c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V152c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07zM416 312c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm160 0c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h272c4.42 0 8 3.58 8 8v16z"] }; +var faMonument = { prefix: 'fas', iconName: 'monument', icon: [384, 512, [], "f5a6", "M368 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h352c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-78.86-347.26a31.97 31.97 0 0 0-9.21-19.44L203.31 4.69c-6.25-6.25-16.38-6.25-22.63 0l-76.6 76.61a31.97 31.97 0 0 0-9.21 19.44L64 416h256l-30.86-315.26zM240 307.2c0 6.4-6.4 12.8-12.8 12.8h-70.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h70.4c6.4 0 12.8 6.4 12.8 12.8v38.4z"] }; +var faMoon = { prefix: 'fas', iconName: 'moon', icon: [512, 512, [], "f186", "M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z"] }; +var faMortarPestle = { prefix: 'fas', iconName: 'mortar-pestle', icon: [512, 512, [], "f5a7", "M501.54 60.91c17.22-17.22 12.51-46.25-9.27-57.14a35.696 35.696 0 0 0-37.37 3.37L251.09 160h151.37l99.08-99.09zM496 192H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c0 80.98 50.2 150.11 121.13 178.32-12.76 16.87-21.72 36.8-24.95 58.69-1.46 9.92 6.04 18.98 16.07 18.98h223.5c10.03 0 17.53-9.06 16.07-18.98-3.22-21.89-12.18-41.82-24.95-58.69C429.8 406.11 480 336.98 480 256h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"] }; +var faMotorcycle = { prefix: 'fas', iconName: 'motorcycle', icon: [640, 512, [], "f21c", "M512.949 192.003c-14.862-.108-29.14 2.322-42.434 6.874L437.589 144H520c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24h-45.311a24 24 0 0 0-17.839 7.945l-37.496 41.663-22.774-37.956A24 24 0 0 0 376 64h-80c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h66.411l19.2 32H227.904c-17.727-23.073-44.924-40-99.904-40H72.54c-13.455 0-24.791 11.011-24.536 24.464C48.252 141.505 58.9 152 72 152h56c24.504 0 38.686 10.919 47.787 24.769l-11.291 20.529c-13.006-3.865-26.871-5.736-41.251-5.21C55.857 194.549 1.565 249.605.034 317.021-1.603 389.076 56.317 448 128 448c59.642 0 109.744-40.794 123.953-96h84.236c13.673 0 24.589-11.421 23.976-25.077-2.118-47.12 17.522-93.665 56.185-125.026l12.485 20.808c-27.646 23.654-45.097 58.88-44.831 98.179.47 69.556 57.203 126.452 126.758 127.11 71.629.678 129.839-57.487 129.234-129.099-.588-69.591-57.455-126.386-127.047-126.892zM128 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c4.242 0 8.405.341 12.469.982L98.97 316.434C90.187 332.407 101.762 352 120 352h81.297c-12.37 28.225-40.56 48-73.297 48zm388.351-.116C470.272 402.337 432 365.554 432 320c0-21.363 8.434-40.781 22.125-55.144l49.412 82.352c4.546 7.577 14.375 10.034 21.952 5.488l13.72-8.232c7.577-4.546 10.034-14.375 5.488-21.952l-48.556-80.927A80.005 80.005 0 0 1 512 240c45.554 0 82.338 38.273 79.884 84.352-2.16 40.558-34.974 73.372-75.533 75.532z"] }; +var faMousePointer = { prefix: 'fas', iconName: 'mouse-pointer', icon: [320, 512, [], "f245", "M302.189 329.126H196.105l55.831 135.993c3.889 9.428-.555 19.999-9.444 23.999l-49.165 21.427c-9.165 4-19.443-.571-23.332-9.714l-53.053-129.136-86.664 89.138C18.729 472.71 0 463.554 0 447.977V18.299C0 1.899 19.921-6.096 30.277 5.443l284.412 292.542c11.472 11.179 3.007 31.141-12.5 31.141z"] }; +var faMusic = { prefix: 'fas', iconName: 'music', icon: [512, 512, [], "f001", "M470.4 1.5l-304 96C153.1 101.7 144 114 144 128v264.6c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V220.5l272-85.9v194c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V32c0-21.7-21.1-37-41.6-30.5z"] }; +var faNeuter = { prefix: 'fas', iconName: 'neuter', icon: [288, 512, [], "f22c", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V468c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V316.4c64.1-14.5 112-71.9 112-140.4zm-144 80c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faNewspaper = { prefix: 'fas', iconName: 'newspaper', icon: [576, 512, [], "f1ea", "M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z"] }; +var faNotEqual = { prefix: 'fas', iconName: 'not-equal', icon: [448, 512, [], "f53e", "M416 208c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32h-23.88l51.87-66.81c5.37-7.02 4.04-17.06-2.97-22.43L415.61 3.3c-7.02-5.38-17.06-4.04-22.44 2.97L311.09 112H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h204.56l-74.53 96H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h55.49l-51.87 66.81c-5.37 7.01-4.04 17.05 2.97 22.43L64 508.7c7.02 5.38 17.06 4.04 22.43-2.97L168.52 400H416c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32H243.05l74.53-96H416z"] }; +var faNotesMedical = { prefix: 'fas', iconName: 'notes-medical', icon: [384, 512, [], "f481", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm96 304c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm0-192c0 4.4-3.6 8-8 8H104c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16z"] }; +var faObjectGroup = { prefix: 'fas', iconName: 'object-group', icon: [512, 512, [], "f247", "M480 128V96h20c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v20H64V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v40c0 6.627 5.373 12 12 12h20v320H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-20h384v20c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-20V128zM96 276V140c0-6.627 5.373-12 12-12h168c6.627 0 12 5.373 12 12v136c0 6.627-5.373 12-12 12H108c-6.627 0-12-5.373-12-12zm320 96c0 6.627-5.373 12-12 12H236c-6.627 0-12-5.373-12-12v-52h72c13.255 0 24-10.745 24-24v-72h84c6.627 0 12 5.373 12 12v136z"] }; +var faObjectUngroup = { prefix: 'fas', iconName: 'object-ungroup', icon: [576, 512, [], "f248", "M64 320v26a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6v-52a6 6 0 0 1 6-6h26V96H6a6 6 0 0 1-6-6V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v26h288V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-26v192h26a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-52a6 6 0 0 1-6-6v-26H64zm480-64v-32h26a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-52a6 6 0 0 0-6 6v26H408v72h8c13.255 0 24 10.745 24 24v64c0 13.255-10.745 24-24 24h-64c-13.255 0-24-10.745-24-24v-8H192v72h-26a6 6 0 0 0-6 6v52a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-26h288v26a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-26V256z"] }; +var faOutdent = { prefix: 'fas', iconName: 'outdent', icon: [448, 512, [], "f03b", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm208 144h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm192-128h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM4.687 267.313l96 95.984C110.734 373.348 128 366.224 128 351.984V160.008c0-14.329-17.325-21.304-27.313-11.313l-96 95.992c-6.249 6.248-6.249 16.378 0 22.626z"] }; +var faPaintBrush = { prefix: 'fas', iconName: 'paint-brush', icon: [512, 512, [], "f1fc", "M167.02 309.34c-40.12 2.58-76.53 17.86-97.19 72.3-2.35 6.21-8 9.98-14.59 9.98-11.11 0-45.46-27.67-55.25-34.35C0 439.62 37.93 512 128 512c75.86 0 128-43.77 128-120.19 0-3.11-.65-6.08-.97-9.13l-88.01-73.34zM457.89 0c-15.16 0-29.37 6.71-40.21 16.45C213.27 199.05 192 203.34 192 257.09c0 13.7 3.25 26.76 8.73 38.7l63.82 53.18c7.21 1.8 14.64 3.03 22.39 3.03 62.11 0 98.11-45.47 211.16-256.46 7.38-14.35 13.9-29.85 13.9-45.99C512 20.64 486 0 457.89 0z"] }; +var faPaintRoller = { prefix: 'fas', iconName: 'paint-roller', icon: [512, 512, [], "f5aa", "M416 128V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32h352c17.67 0 32-14.33 32-32zm32-64v128c0 17.67-14.33 32-32 32H256c-35.35 0-64 28.65-64 64v32c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32v-32h160c53.02 0 96-42.98 96-96v-64c0-35.35-28.65-64-64-64z"] }; +var faPalette = { prefix: 'fas', iconName: 'palette', icon: [512, 512, [], "f53f", "M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faPallet = { prefix: 'fas', iconName: 'pallet', icon: [640, 512, [], "f482", "M144 256h352c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H384v128l-64-32-64 32V0H144c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16zm480 128c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v64H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-64h48zm-336 64H128v-64h160v64zm224 0H352v-64h160v64z"] }; +var faPaperPlane = { prefix: 'fas', iconName: 'paper-plane', icon: [512, 512, [], "f1d8", "M476 3.2L12.5 270.6c-18.1 10.4-15.8 35.6 2.2 43.2L121 358.4l287.3-253.2c5.5-4.9 13.3 2.6 8.6 8.3L176 407v80.5c0 23.6 28.5 32.9 42.5 15.8L282 426l124.6 52.2c14.2 6 30.4-2.9 33-18.2l72-432C515 7.8 493.3-6.8 476 3.2z"] }; +var faPaperclip = { prefix: 'fas', iconName: 'paperclip', icon: [448, 512, [], "f0c6", "M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z"] }; +var faParachuteBox = { prefix: 'fas', iconName: 'parachute-box', icon: [512, 512, [], "f4cd", "M511.9 175c-9.1-75.6-78.4-132.4-158.3-158.7C390 55.7 416 116.9 416 192h28.1L327.5 321.5c-2.5-.6-4.8-1.5-7.5-1.5h-48V192h112C384 76.8 315.1 0 256 0S128 76.8 128 192h112v128h-48c-2.7 0-5 .9-7.5 1.5L67.9 192H96c0-75.1 26-136.3 62.4-175.7C78.5 42.7 9.2 99.5.1 175c-1.1 9.1 6.8 17 16 17h8.7l136.7 151.9c-.7 2.6-1.6 5.2-1.6 8.1v128c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32V352c0-2.9-.9-5.4-1.6-8.1L487.1 192h8.7c9.3 0 17.2-7.8 16.1-17z"] }; +var faParagraph = { prefix: 'fas', iconName: 'paragraph', icon: [448, 512, [], "f1dd", "M408 32H177.531C88.948 32 16.045 103.335 16 191.918 15.956 280.321 87.607 352 176 352v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h32v344c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h40c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24z"] }; +var faParking = { prefix: 'fas', iconName: 'parking', icon: [448, 512, [], "f540", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM240 320h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h96c52.9 0 96 43.1 96 96s-43.1 96-96 96zm0-128h-48v64h48c17.6 0 32-14.4 32-32s-14.4-32-32-32z"] }; +var faPassport = { prefix: 'fas', iconName: 'passport', icon: [448, 512, [], "f5ab", "M129.62 176h39.09c1.49-27.03 6.54-51.35 14.21-70.41-27.71 13.24-48.02 39.19-53.3 70.41zm0 32c5.29 31.22 25.59 57.17 53.3 70.41-7.68-19.06-12.72-43.38-14.21-70.41h-39.09zM224 286.69c7.69-7.45 20.77-34.42 23.43-78.69h-46.87c2.67 44.26 15.75 71.24 23.44 78.69zM200.57 176h46.87c-2.66-44.26-15.74-71.24-23.43-78.69-7.7 7.45-20.78 34.43-23.44 78.69zm64.51 102.41c27.71-13.24 48.02-39.19 53.3-70.41h-39.09c-1.49 27.03-6.53 51.35-14.21 70.41zM416 0H64C28.65 0 0 28.65 0 64v384c0 35.35 28.65 64 64 64h352c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32zm-80 416H112c-8.8 0-16-7.2-16-16s7.2-16 16-16h224c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-112-96c-70.69 0-128-57.31-128-128S153.31 64 224 64s128 57.31 128 128-57.31 128-128 128zm41.08-214.41c7.68 19.06 12.72 43.38 14.21 70.41h39.09c-5.28-31.22-25.59-57.17-53.3-70.41z"] }; +var faPaste = { prefix: 'fas', iconName: 'paste', icon: [448, 512, [], "f0ea", "M128 184c0-30.879 25.122-56 56-56h136V56c0-13.255-10.745-24-24-24h-80.61C204.306 12.89 183.637 0 160 0s-44.306 12.89-55.39 32H24C10.745 32 0 42.745 0 56v336c0 13.255 10.745 24 24 24h104V184zm32-144c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24zm184 248h104v200c0 13.255-10.745 24-24 24H184c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.059V256h-96v-96h6.059a24 24 0 0 1 16.97 7.029l65.941 65.941a24.002 24.002 0 0 1 7.03 16.971z"] }; +var faPause = { prefix: 'fas', iconName: 'pause', icon: [448, 512, [], "f04c", "M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z"] }; +var faPauseCircle = { prefix: 'fas', iconName: 'pause-circle', icon: [512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-16 328c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160zm112 0c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160z"] }; +var faPaw = { prefix: 'fas', iconName: 'paw', icon: [512, 512, [], "f1b0", "M85.231 330.958C36 330.958 0 273.792 0 231.5c0-28.292 16-58.042 49.538-58.042 49.231 0 85.231 57.458 85.231 99.75 0 28.292-15.692 57.75-49.538 57.75zm348 106.167c0 37.042-32 42.875-63.385 42.875-41.231 0-74.462-26.25-113.846-26.25-41.231 0-76.308 25.958-120.923 25.958-29.847 0-56.308-9.625-56.308-42.583C78.769 368 180.616 265.333 256 265.333s177.231 102.959 177.231 171.792zM182.462 203.792c-49.847 0-80-59.5-80-100.333C102.462 70.792 120.308 32 160 32c50.154 0 80 59.5 80 100.333 0 32.667-17.846 71.459-57.538 71.459zM272 132.333C272 91.5 301.846 32 352 32c39.692 0 57.539 38.792 57.539 71.458 0 40.833-30.154 100.333-80.001 100.333C289.846 203.792 272 165 272 132.333zM512 231.5c0 42.292-36 99.458-85.231 99.458-33.847 0-49.538-29.458-49.538-57.75 0-42.291 35.999-99.75 85.231-99.75C496 173.458 512 203.208 512 231.5z"] }; +var faPen = { prefix: 'fas', iconName: 'pen', icon: [512, 512, [], "f304", "M290.74 93.24l128.02 128.02-277.99 277.99-114.14 12.6C11.35 513.54-1.56 500.62.14 485.34l12.7-114.22 277.9-277.88zm207.2-19.06l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.76 18.75-49.16 0-67.91z"] }; +var faPenAlt = { prefix: 'fas', iconName: 'pen-alt', icon: [512, 512, [], "f305", "M497.94 74.17l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91zm-246.8-20.53c-15.62-15.62-40.94-15.62-56.56 0L75.8 172.43c-6.25 6.25-6.25 16.38 0 22.62l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l101.82-101.82 22.63 22.62L93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l196.79-196.79-82.77-82.77-84.85-84.85z"] }; +var faPenFancy = { prefix: 'fas', iconName: 'pen-fancy', icon: [512, 512, [], "f5ac", "M79.18 282.94a32.005 32.005 0 0 0-20.24 20.24L0 480l4.69 4.69 92.89-92.89c-.66-2.56-1.57-5.03-1.57-7.8 0-17.67 14.33-32 32-32s32 14.33 32 32-14.33 32-32 32c-2.77 0-5.24-.91-7.8-1.57l-92.89 92.89L32 512l176.82-58.94a31.983 31.983 0 0 0 20.24-20.24l33.07-84.07-98.88-98.88-84.07 33.07zM369.25 28.32L186.14 227.81l97.85 97.85 199.49-183.11C568.4 67.48 443.73-55.94 369.25 28.32z"] }; +var faPenNib = { prefix: 'fas', iconName: 'pen-nib', icon: [512, 512, [], "f5ad", "M136.6 138.79a64.003 64.003 0 0 0-43.31 41.35L0 460l14.69 14.69L164.8 324.58c-2.99-6.26-4.8-13.18-4.8-20.58 0-26.51 21.49-48 48-48s48 21.49 48 48-21.49 48-48 48c-7.4 0-14.32-1.81-20.58-4.8L37.31 497.31 52 512l279.86-93.29a64.003 64.003 0 0 0 41.35-43.31L416 224 288 96l-151.4 42.79zm361.34-64.62l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91z"] }; +var faPenSquare = { prefix: 'fas', iconName: 'pen-square', icon: [448, 512, [], "f14b", "M400 480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zM238.1 177.9L102.4 313.6l-6.3 57.1c-.8 7.6 5.6 14.1 13.3 13.3l57.1-6.3L302.2 242c2.3-2.3 2.3-6.1 0-8.5L246.7 178c-2.5-2.4-6.3-2.4-8.6-.1zM345 165.1L314.9 135c-9.4-9.4-24.6-9.4-33.9 0l-23.1 23.1c-2.3 2.3-2.3 6.1 0 8.5l55.5 55.5c2.3 2.3 6.1 2.3 8.5 0L345 199c9.3-9.3 9.3-24.5 0-33.9z"] }; +var faPencilAlt = { prefix: 'fas', iconName: 'pencil-alt', icon: [512, 512, [], "f303", "M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z"] }; +var faPencilRuler = { prefix: 'fas', iconName: 'pencil-ruler', icon: [512, 512, [], "f5ae", "M109.46 244.04l134.58-134.56-44.12-44.12-61.68 61.68a7.919 7.919 0 0 1-11.21 0l-11.21-11.21c-3.1-3.1-3.1-8.12 0-11.21l61.68-61.68-33.64-33.65C131.47-3.1 111.39-3.1 99 9.29L9.29 99c-12.38 12.39-12.39 32.47 0 44.86l100.17 100.18zm388.47-116.8c18.76-18.76 18.75-49.17 0-67.93l-45.25-45.25c-18.76-18.76-49.18-18.76-67.95 0l-46.02 46.01 113.2 113.2 46.02-46.03zM316.08 82.71l-297 296.96L.32 487.11c-2.53 14.49 10.09 27.11 24.59 24.56l107.45-18.84L429.28 195.9 316.08 82.71zm186.63 285.43l-33.64-33.64-61.68 61.68c-3.1 3.1-8.12 3.1-11.21 0l-11.21-11.21c-3.09-3.1-3.09-8.12 0-11.21l61.68-61.68-44.14-44.14L267.93 402.5l100.21 100.2c12.39 12.39 32.47 12.39 44.86 0l89.71-89.7c12.39-12.39 12.39-32.47 0-44.86z"] }; +var faPeopleCarry = { prefix: 'fas', iconName: 'people-carry', icon: [640, 512, [], "f4ce", "M128 96c26.5 0 48-21.5 48-48S154.5 0 128 0 80 21.5 80 48s21.5 48 48 48zm384 0c26.5 0 48-21.5 48-48S538.5 0 512 0s-48 21.5-48 48 21.5 48 48 48zm125.7 372.1l-44-110-41.1 46.4-2 18.2 27.7 69.2c5 12.5 17 20.1 29.7 20.1 4 0 8-.7 11.9-2.3 16.4-6.6 24.4-25.2 17.8-41.6zm-34.2-209.8L585 178.1c-4.6-20-18.6-36.8-37.5-44.9-18.5-8-39-6.7-56.1 3.3-22.7 13.4-39.7 34.5-48.1 59.4L432 229.8 416 240v-96c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16v96l-16.1-10.2-11.3-33.9c-8.3-25-25.4-46-48.1-59.4-17.2-10-37.6-11.3-56.1-3.3-18.9 8.1-32.9 24.9-37.5 44.9l-18.4 80.2c-4.6 20 .7 41.2 14.4 56.7l67.2 75.9 10.1 92.6C130 499.8 143.8 512 160 512c1.2 0 2.3-.1 3.5-.2 17.6-1.9 30.2-17.7 28.3-35.3l-10.1-92.8c-1.5-13-6.9-25.1-15.6-35l-43.3-49 17.6-70.3 6.8 20.4c4.1 12.5 11.9 23.4 24.5 32.6l51.1 32.5c4.6 2.9 12.1 4.6 17.2 5h160c5.1-.4 12.6-2.1 17.2-5l51.1-32.5c12.6-9.2 20.4-20 24.5-32.6l6.8-20.4 17.6 70.3-43.3 49c-8.7 9.9-14.1 22-15.6 35l-10.1 92.8c-1.9 17.6 10.8 33.4 28.3 35.3 1.2.1 2.3.2 3.5.2 16.1 0 30-12.1 31.8-28.5l10.1-92.6 67.2-75.9c13.6-15.5 19-36.7 14.4-56.7zM46.3 358.1l-44 110c-6.6 16.4 1.4 35 17.8 41.6 16.8 6.6 35.1-1.7 41.6-17.8l27.7-69.2-2-18.2-41.1-46.4z"] }; +var faPercent = { prefix: 'fas', iconName: 'percent', icon: [448, 512, [], "f295", "M112 224c61.9 0 112-50.1 112-112S173.9 0 112 0 0 50.1 0 112s50.1 112 112 112zm0-160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm224 224c-61.9 0-112 50.1-112 112s50.1 112 112 112 112-50.1 112-112-50.1-112-112-112zm0 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zM392.3.2l31.6-.1c19.4-.1 30.9 21.8 19.7 37.8L77.4 501.6a23.95 23.95 0 0 1-19.6 10.2l-33.4.1c-19.5 0-30.9-21.9-19.7-37.8l368-463.7C377.2 4 384.5.2 392.3.2z"] }; +var faPercentage = { prefix: 'fas', iconName: 'percentage', icon: [384, 512, [], "f541", "M109.25 173.25c24.99-24.99 24.99-65.52 0-90.51-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 25 25 65.52 25 90.51 0zm256 165.49c-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 24.99 24.99 65.52 24.99 90.51 0 25-24.99 25-65.51 0-90.51zm-1.94-231.43l-22.62-22.62c-12.5-12.5-32.76-12.5-45.25 0L20.69 359.44c-12.5 12.5-12.5 32.76 0 45.25l22.62 22.62c12.5 12.5 32.76 12.5 45.25 0l274.75-274.75c12.5-12.49 12.5-32.75 0-45.25z"] }; +var faPhone = { prefix: 'fas', iconName: 'phone', icon: [512, 512, [], "f095", "M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z"] }; +var faPhoneSlash = { prefix: 'fas', iconName: 'phone-slash', icon: [640, 512, [], "f3dd", "M268.2 381.4l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48c-10.7 4.6-16.5 16.1-13.9 27.5l24 104c2.5 10.8 12.1 18.6 23.4 18.6 100.7 0 193.7-32.4 269.7-86.9l-80-61.8c-10.9 6.5-22.1 12.7-33.6 18.1zm365.6 76.7L475.1 335.5C537.9 256.4 576 156.9 576 48c0-11.2-7.7-20.9-18.6-23.4l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-12.2 26.1-27.9 50.3-46 72.8L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z"] }; +var faPhoneSquare = { prefix: 'fas', iconName: 'phone-square', icon: [448, 512, [], "f098", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM94 416c-7.033 0-13.057-4.873-14.616-11.627l-14.998-65a15 15 0 0 1 8.707-17.16l69.998-29.999a15 15 0 0 1 17.518 4.289l30.997 37.885c48.944-22.963 88.297-62.858 110.781-110.78l-37.886-30.997a15.001 15.001 0 0 1-4.289-17.518l30-69.998a15 15 0 0 1 17.16-8.707l65 14.998A14.997 14.997 0 0 1 384 126c0 160.292-129.945 290-290 290z"] }; +var faPhoneVolume = { prefix: 'fas', iconName: 'phone-volume', icon: [384, 512, [], "f2a0", "M97.333 506.966c-129.874-129.874-129.681-340.252 0-469.933 5.698-5.698 14.527-6.632 21.263-2.422l64.817 40.513a17.187 17.187 0 0 1 6.849 20.958l-32.408 81.021a17.188 17.188 0 0 1-17.669 10.719l-55.81-5.58c-21.051 58.261-20.612 122.471 0 179.515l55.811-5.581a17.188 17.188 0 0 1 17.669 10.719l32.408 81.022a17.188 17.188 0 0 1-6.849 20.958l-64.817 40.513a17.19 17.19 0 0 1-21.264-2.422zM247.126 95.473c11.832 20.047 11.832 45.008 0 65.055-3.95 6.693-13.108 7.959-18.718 2.581l-5.975-5.726c-3.911-3.748-4.793-9.622-2.261-14.41a32.063 32.063 0 0 0 0-29.945c-2.533-4.788-1.65-10.662 2.261-14.41l5.975-5.726c5.61-5.378 14.768-4.112 18.718 2.581zm91.787-91.187c60.14 71.604 60.092 175.882 0 247.428-4.474 5.327-12.53 5.746-17.552.933l-5.798-5.557c-4.56-4.371-4.977-11.529-.93-16.379 49.687-59.538 49.646-145.933 0-205.422-4.047-4.85-3.631-12.008.93-16.379l5.798-5.557c5.022-4.813 13.078-4.394 17.552.933zm-45.972 44.941c36.05 46.322 36.108 111.149 0 157.546-4.39 5.641-12.697 6.251-17.856 1.304l-5.818-5.579c-4.4-4.219-4.998-11.095-1.285-15.931 26.536-34.564 26.534-82.572 0-117.134-3.713-4.836-3.115-11.711 1.285-15.931l5.818-5.579c5.159-4.947 13.466-4.337 17.856 1.304z"] }; +var faPiggyBank = { prefix: 'fas', iconName: 'piggy-bank', icon: [576, 512, [], "f4d3", "M560 224h-29.5c-8.8-20-21.6-37.7-37.4-52.5L512 96h-32c-29.4 0-55.4 13.5-73 34.3-7.6-1.1-15.1-2.3-23-2.3H256c-77.4 0-141.9 55-156.8 128H56c-14.8 0-26.5-13.5-23.5-28.8C34.7 215.8 45.4 208 57 208h1c3.3 0 6-2.7 6-6v-20c0-3.3-2.7-6-6-6-28.5 0-53.9 20.4-57.5 48.6C-3.9 258.8 22.7 288 56 288h40c0 52.2 25.4 98.1 64 127.3V496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-48h128v48c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80.7c11.8-8.9 22.3-19.4 31.3-31.3H560c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16zm-128 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM256 96h128c5.4 0 10.7.4 15.9.8 0-.3.1-.5.1-.8 0-53-43-96-96-96s-96 43-96 96c0 2.1.5 4.1.6 6.2 15.2-3.9 31-6.2 47.4-6.2z"] }; +var faPills = { prefix: 'fas', iconName: 'pills', icon: [576, 512, [], "f484", "M112 32C50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V144c0-61.9-50.1-112-112-112zm48 224H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm139.7-29.7c-3.5-3.5-9.4-3.1-12.3.8-45.3 62.5-40.4 150.1 15.9 206.4 56.3 56.3 143.9 61.2 206.4 15.9 4-2.9 4.3-8.8.8-12.3L299.7 226.3zm229.8-19c-56.3-56.3-143.9-61.2-206.4-15.9-4 2.9-4.3 8.8-.8 12.3l210.8 210.8c3.5 3.5 9.4 3.1 12.3-.8 45.3-62.6 40.5-150.1-15.9-206.4z"] }; +var faPlane = { prefix: 'fas', iconName: 'plane', icon: [576, 512, [], "f072", "M480 192H365.71L260.61 8.06A16.014 16.014 0 0 0 246.71 0h-65.5c-10.63 0-18.3 10.17-15.38 20.39L214.86 192H112l-43.2-57.6c-3.02-4.03-7.77-6.4-12.8-6.4H16.01C5.6 128-2.04 137.78.49 147.88L32 256 .49 364.12C-2.04 374.22 5.6 384 16.01 384H56c5.04 0 9.78-2.37 12.8-6.4L112 320h102.86l-49.03 171.6c-2.92 10.22 4.75 20.4 15.38 20.4h65.5c5.74 0 11.04-3.08 13.89-8.06L365.71 320H480c35.35 0 96-28.65 96-64s-60.65-64-96-64z"] }; +var faPlaneArrival = { prefix: 'fas', iconName: 'plane-arrival', icon: [640, 512, [], "f5af", "M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM44.81 205.66l88.74 80a62.607 62.607 0 0 0 25.47 13.93l287.6 78.35c26.48 7.21 54.56 8.72 81 1.36 29.67-8.27 43.44-21.21 47.25-35.71 3.83-14.5-1.73-32.71-23.37-54.96-19.28-19.82-44.35-32.79-70.83-40l-97.51-26.56L282.8 30.22c-1.51-5.81-5.95-10.35-11.66-11.91L206.05.58c-10.56-2.88-20.9 5.32-20.71 16.44l47.92 164.21-102.2-27.84-27.59-67.88c-1.93-4.89-6.01-8.57-11.02-9.93L52.72 64.75c-10.34-2.82-20.53 5-20.72 15.88l.23 101.78c.19 8.91 6.03 17.34 12.58 23.25z"] }; +var faPlaneDeparture = { prefix: 'fas', iconName: 'plane-departure', icon: [640, 512, [], "f5b0", "M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM80.55 341.27c6.28 6.84 15.1 10.72 24.33 10.71l130.54-.18a65.62 65.62 0 0 0 29.64-7.12l290.96-147.65c26.74-13.57 50.71-32.94 67.02-58.31 18.31-28.48 20.3-49.09 13.07-63.65-7.21-14.57-24.74-25.27-58.25-27.45-29.85-1.94-59.54 5.92-86.28 19.48l-98.51 49.99-218.7-82.06a17.799 17.799 0 0 0-18-1.11L90.62 67.29c-10.67 5.41-13.25 19.65-5.17 28.53l156.22 98.1-103.21 52.38-72.35-36.47a17.804 17.804 0 0 0-16.07.02L9.91 230.22c-10.44 5.3-13.19 19.12-5.57 28.08l76.21 82.97z"] }; +var faPlay = { prefix: 'fas', iconName: 'play', icon: [448, 512, [], "f04b", "M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z"] }; +var faPlayCircle = { prefix: 'fas', iconName: 'play-circle', icon: [512, 512, [], "f144", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z"] }; +var faPlug = { prefix: 'fas', iconName: 'plug', icon: [384, 512, [], "f1e6", "M256 144V32c0-17.673 14.327-32 32-32s32 14.327 32 32v112h-64zm112 16H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h16v32c0 77.406 54.969 141.971 128 156.796V512h64v-99.204c73.031-14.825 128-79.39 128-156.796v-32h16c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm-240-16V32c0-17.673-14.327-32-32-32S64 14.327 64 32v112h64z"] }; +var faPlus = { prefix: 'fas', iconName: 'plus', icon: [448, 512, [], "f067", "M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; +var faPlusCircle = { prefix: 'fas', iconName: 'plus-circle', icon: [512, 512, [], "f055", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"] }; +var faPlusSquare = { prefix: 'fas', iconName: 'plus-square', icon: [448, 512, [], "f0fe", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-32 252c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92H92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"] }; +var faPodcast = { prefix: 'fas', iconName: 'podcast', icon: [448, 512, [], "f2ce", "M267.429 488.563C262.286 507.573 242.858 512 224 512c-18.857 0-38.286-4.427-43.428-23.437C172.927 460.134 160 388.898 160 355.75c0-35.156 31.142-43.75 64-43.75s64 8.594 64 43.75c0 32.949-12.871 104.179-20.571 132.813zM156.867 288.554c-18.693-18.308-29.958-44.173-28.784-72.599 2.054-49.724 42.395-89.956 92.124-91.881C274.862 121.958 320 165.807 320 220c0 26.827-11.064 51.116-28.866 68.552-2.675 2.62-2.401 6.986.628 9.187 9.312 6.765 16.46 15.343 21.234 25.363 1.741 3.654 6.497 4.66 9.449 1.891 28.826-27.043 46.553-65.783 45.511-108.565-1.855-76.206-63.595-138.208-139.793-140.369C146.869 73.753 80 139.215 80 220c0 41.361 17.532 78.7 45.55 104.989 2.953 2.771 7.711 1.77 9.453-1.887 4.774-10.021 11.923-18.598 21.235-25.363 3.029-2.2 3.304-6.566.629-9.185zM224 0C100.204 0 0 100.185 0 224c0 89.992 52.602 165.647 125.739 201.408 4.333 2.118 9.267-1.544 8.535-6.31-2.382-15.512-4.342-30.946-5.406-44.339-.146-1.836-1.149-3.486-2.678-4.512-47.4-31.806-78.564-86.016-78.187-147.347.592-96.237 79.29-174.648 175.529-174.899C320.793 47.747 400 126.797 400 224c0 61.932-32.158 116.49-80.65 147.867-.999 14.037-3.069 30.588-5.624 47.23-.732 4.767 4.203 8.429 8.535 6.31C395.227 389.727 448 314.187 448 224 448 100.205 347.815 0 224 0zm0 160c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z"] }; +var faPoo = { prefix: 'fas', iconName: 'poo', icon: [512, 512, [], "f2fe", "M451.4 369.1C468.7 356 480 335.4 480 312c0-39.8-32.2-72-72-72h-14.1c13.4-11.7 22.1-28.8 22.1-48 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C250.3 14.6 256 30.6 256 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 19.2 8.7 36.3 22.1 48H104c-39.8 0-72 32.2-72 72 0 23.4 11.3 44 28.6 57.1C26.3 374.6 0 404.1 0 440c0 39.8 32.2 72 72 72h368c39.8 0 72-32.2 72-72 0-35.9-26.3-65.4-60.6-70.9zM192 256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm159.5 139C341 422.9 293 448 256 448s-85-25.1-95.5-53c-2-5.3 2-11 7.8-11h175.4c5.8 0 9.8 5.7 7.8 11zM320 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faPortrait = { prefix: 'fas', iconName: 'portrait', icon: [384, 512, [], "f3e0", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM192 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 384 80 375.4 80 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"] }; +var faPoundSign = { prefix: 'fas', iconName: 'pound-sign', icon: [320, 512, [], "f154", "M308 352h-45.495c-6.627 0-12 5.373-12 12v50.848H128V288h84c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-84v-63.556c0-32.266 24.562-57.086 61.792-57.086 23.658 0 45.878 11.505 57.652 18.849 5.151 3.213 11.888 2.051 15.688-2.685l28.493-35.513c4.233-5.276 3.279-13.005-2.119-17.081C273.124 54.56 236.576 32 187.931 32 106.026 32 48 84.742 48 157.961V224H20c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h28v128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12V364c0-6.627-5.373-12-12-12z"] }; +var faPowerOff = { prefix: 'fas', iconName: 'power-off', icon: [512, 512, [], "f011", "M400 54.1c63 45 104 118.6 104 201.9 0 136.8-110.8 247.7-247.5 248C120 504.3 8.2 393 8 256.4 7.9 173.1 48.9 99.3 111.8 54.2c11.7-8.3 28-4.8 35 7.7L162.6 90c5.9 10.5 3.1 23.8-6.6 31-41.5 30.8-68 79.6-68 134.9-.1 92.3 74.5 168.1 168 168.1 91.6 0 168.6-74.2 168-169.1-.3-51.8-24.7-101.8-68.1-134-9.7-7.2-12.4-20.5-6.5-30.9l15.8-28.1c7-12.4 23.2-16.1 34.8-7.8zM296 264V24c0-13.3-10.7-24-24-24h-32c-13.3 0-24 10.7-24 24v240c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24z"] }; +var faPrescription = { prefix: 'fas', iconName: 'prescription', icon: [384, 512, [], "f5b1", "M301.26 352l78.06-78.06c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0L256 306.74l-83.96-83.96C219.31 216.8 256 176.89 256 128c0-53.02-42.98-96-96-96H16C7.16 32 0 39.16 0 48v256c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-80h18.75l128 128-78.06 78.06c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0L256 397.25l78.06 78.06c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63L301.26 352zM64 96h96c17.64 0 32 14.36 32 32s-14.36 32-32 32H64V96z"] }; +var faPrescriptionBottle = { prefix: 'fas', iconName: 'prescription-bottle', icon: [384, 512, [], "f485", "M32 192h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v64zM360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24z"] }; +var faPrescriptionBottleAlt = { prefix: 'fas', iconName: 'prescription-bottle-alt', icon: [384, 512, [], "f486", "M360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24zM32 480c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v352zm64-184c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48z"] }; +var faPrint = { prefix: 'fas', iconName: 'print', icon: [512, 512, [], "f02f", "M464 192h-16V81.941a24 24 0 0 0-7.029-16.97L383.029 7.029A24 24 0 0 0 366.059 0H88C74.745 0 64 10.745 64 24v168H48c-26.51 0-48 21.49-48 48v132c0 6.627 5.373 12 12 12h52v104c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V384h52c6.627 0 12-5.373 12-12V240c0-26.51-21.49-48-48-48zm-80 256H128v-96h256v96zM128 224V64h192v40c0 13.2 10.8 24 24 24h40v96H128zm304 72c-13.254 0-24-10.746-24-24s10.746-24 24-24 24 10.746 24 24-10.746 24-24 24z"] }; +var faProcedures = { prefix: 'fas', iconName: 'procedures', icon: [640, 512, [], "f487", "M528 224H272c-8.8 0-16 7.2-16 16v144H64V144c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v352c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h512v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-61.9-50.1-112-112-112zM136 96h126.1l27.6 55.2c5.9 11.8 22.7 11.8 28.6 0L368 51.8 390.1 96H512c8.8 0 16-7.2 16-16s-7.2-16-16-16H409.9L382.3 8.8C376.4-3 359.6-3 353.7 8.8L304 108.2l-19.9-39.8c-1.4-2.7-4.1-4.4-7.2-4.4H136c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm24 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z"] }; +var faProjectDiagram = { prefix: 'fas', iconName: 'project-diagram', icon: [640, 512, [], "f542", "M384 320H256c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM192 32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v128c0 17.67 14.33 32 32 32h95.72l73.16 128.04C211.98 300.98 232.4 288 256 288h.28L192 175.51V128h224V64H192V32zM608 0H480c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32z"] }; +var faPuzzlePiece = { prefix: 'fas', iconName: 'puzzle-piece', icon: [576, 512, [], "f12e", "M519.442 288.651c-41.519 0-59.5 31.593-82.058 31.593C377.409 320.244 432 144 432 144s-196.288 80-196.288-3.297c0-35.827 36.288-46.25 36.288-85.985C272 19.216 243.885 0 210.539 0c-34.654 0-66.366 18.891-66.366 56.346 0 41.364 31.711 59.277 31.711 81.75C175.885 207.719 0 166.758 0 166.758v333.237s178.635 41.047 178.635-28.662c0-22.473-40-40.107-40-81.471 0-37.456 29.25-56.346 63.577-56.346 33.673 0 61.788 19.216 61.788 54.717 0 39.735-36.288 50.158-36.288 85.985 0 60.803 129.675 25.73 181.23 25.73 0 0-34.725-120.101 25.827-120.101 35.962 0 46.423 36.152 86.308 36.152C556.712 416 576 387.99 576 354.443c0-34.199-18.962-65.792-56.558-65.792z"] }; +var faQrcode = { prefix: 'fas', iconName: 'qrcode', icon: [448, 512, [], "f029", "M0 224h192V32H0v192zM64 96h64v64H64V96zm192-64v192h192V32H256zm128 128h-64V96h64v64zM0 480h192V288H0v192zm64-128h64v64H64v-64zm352-64h32v128h-96v-32h-32v96h-64V288h96v32h64v-32zm0 160h32v32h-32v-32zm-64 0h32v32h-32v-32z"] }; +var faQuestion = { prefix: 'fas', iconName: 'question', icon: [384, 512, [], "f128", "M202.021 0C122.202 0 70.503 32.703 29.914 91.026c-7.363 10.58-5.093 25.086 5.178 32.874l43.138 32.709c10.373 7.865 25.132 6.026 33.253-4.148 25.049-31.381 43.63-49.449 82.757-49.449 30.764 0 68.816 19.799 68.816 49.631 0 22.552-18.617 34.134-48.993 51.164-35.423 19.86-82.299 44.576-82.299 106.405V320c0 13.255 10.745 24 24 24h72.471c13.255 0 24-10.745 24-24v-5.773c0-42.86 125.268-44.645 125.268-160.627C377.504 66.256 286.902 0 202.021 0zM192 373.459c-38.196 0-69.271 31.075-69.271 69.271 0 38.195 31.075 69.27 69.271 69.27s69.271-31.075 69.271-69.271-31.075-69.27-69.271-69.27z"] }; +var faQuestionCircle = { prefix: 'fas', iconName: 'question-circle', icon: [512, 512, [], "f059", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z"] }; +var faQuidditch = { prefix: 'fas', iconName: 'quidditch', icon: [640, 512, [], "f458", "M256.5 216.8L343.2 326s-16.6 102.4-76.6 150.1C206.7 523.8 0 510.2 0 510.2s3.8-23.1 11-55.4l94.6-112.2c4-4.7-.9-11.6-6.6-9.5l-60.4 22.1c14.4-41.7 32.7-80 54.6-97.5 59.9-47.8 163.3-40.9 163.3-40.9zm238 135c-44 0-79.8 35.8-79.8 79.9 0 44.1 35.7 79.9 79.8 79.9 44.1 0 79.8-35.8 79.8-79.9 0-44.2-35.8-79.9-79.8-79.9zM636.5 31L616.7 6c-5.5-6.9-15.5-8-22.4-2.6L361.8 181.3l-34.1-43c-5.1-6.4-15.1-5.2-18.6 2.2l-25.3 54.6 86.7 109.2 58.8-12.4c8-1.7 11.4-11.2 6.3-17.6l-34.1-42.9L634 53.5c6.9-5.5 8-15.6 2.5-22.5z"] }; +var faQuoteLeft = { prefix: 'fas', iconName: 'quote-left', icon: [512, 512, [], "f10d", "M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z"] }; +var faQuoteRight = { prefix: 'fas', iconName: 'quote-right', icon: [512, 512, [], "f10e", "M464 32H336c-26.5 0-48 21.5-48 48v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48zm-288 0H48C21.5 32 0 53.5 0 80v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48z"] }; +var faRandom = { prefix: 'fas', iconName: 'random', icon: [512, 512, [], "f074", "M504.971 359.029c9.373 9.373 9.373 24.569 0 33.941l-80 79.984c-15.01 15.01-40.971 4.49-40.971-16.971V416h-58.785a12.004 12.004 0 0 1-8.773-3.812l-70.556-75.596 53.333-57.143L352 336h32v-39.981c0-21.438 25.943-31.998 40.971-16.971l80 79.981zM12 176h84l52.781 56.551 53.333-57.143-70.556-75.596A11.999 11.999 0 0 0 122.785 96H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12zm372 0v39.984c0 21.46 25.961 31.98 40.971 16.971l80-79.984c9.373-9.373 9.373-24.569 0-33.941l-80-79.981C409.943 24.021 384 34.582 384 56.019V96h-58.785a12.004 12.004 0 0 0-8.773 3.812L96 336H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h110.785c3.326 0 6.503-1.381 8.773-3.812L352 176h32z"] }; +var faReceipt = { prefix: 'fas', iconName: 'receipt', icon: [384, 512, [], "f543", "M358.4 3.2L320 48 265.6 3.2a15.9 15.9 0 0 0-19.2 0L192 48 137.6 3.2a15.9 15.9 0 0 0-19.2 0L64 48 25.6 3.2C15-4.7 0 2.8 0 16v480c0 13.2 15 20.7 25.6 12.8L64 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L192 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L320 464l38.4 44.8c10.5 7.9 25.6.4 25.6-12.8V16c0-13.2-15-20.7-25.6-12.8zM320 360c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16z"] }; +var faRecycle = { prefix: 'fas', iconName: 'recycle', icon: [512, 512, [], "f1b8", "M184.561 261.903c3.232 13.997-12.123 24.635-24.068 17.168l-40.736-25.455-50.867 81.402C55.606 356.273 70.96 384 96.012 384H148c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12H96.115c-75.334 0-121.302-83.048-81.408-146.88l50.822-81.388-40.725-25.448c-12.081-7.547-8.966-25.961 4.879-29.158l110.237-25.45c8.611-1.988 17.201 3.381 19.189 11.99l25.452 110.237zm98.561-182.915l41.289 66.076-40.74 25.457c-12.051 7.528-9 25.953 4.879 29.158l110.237 25.45c8.672 1.999 17.215-3.438 19.189-11.99l25.45-110.237c3.197-13.844-11.99-24.719-24.068-17.168l-40.687 25.424-41.263-66.082c-37.521-60.033-125.209-60.171-162.816 0l-17.963 28.766c-3.51 5.62-1.8 13.021 3.82 16.533l33.919 21.195c5.62 3.512 13.024 1.803 16.536-3.817l17.961-28.743c12.712-20.341 41.973-19.676 54.257-.022zM497.288 301.12l-27.515-44.065c-3.511-5.623-10.916-7.334-16.538-3.821l-33.861 21.159c-5.62 3.512-7.33 10.915-3.818 16.536l27.564 44.112c13.257 21.211-2.057 48.96-27.136 48.96H320V336.02c0-14.213-17.242-21.383-27.313-11.313l-80 79.981c-6.249 6.248-6.249 16.379 0 22.627l80 79.989C302.689 517.308 320 510.3 320 495.989V448h95.88c75.274 0 121.335-82.997 81.408-146.88z"] }; +var faRedo = { prefix: 'fas', iconName: 'redo', icon: [512, 512, [], "f01e", "M500.333 0h-47.411c-6.853 0-12.314 5.729-11.986 12.574l3.966 82.759C399.416 41.899 331.672 8 256.001 8 119.34 8 7.899 119.526 8 256.187 8.101 393.068 119.096 504 256 504c63.926 0 122.202-24.187 166.178-63.908 5.113-4.618 5.354-12.561.482-17.433l-33.971-33.971c-4.466-4.466-11.64-4.717-16.38-.543C341.308 415.448 300.606 432 256 432c-97.267 0-176-78.716-176-176 0-97.267 78.716-176 176-176 60.892 0 114.506 30.858 146.099 77.8l-101.525-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12z"] }; +var faRedoAlt = { prefix: 'fas', iconName: 'redo-alt', icon: [512, 512, [], "f2f9", "M256.455 8c66.269.119 126.437 26.233 170.859 68.685l35.715-35.715C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.75c-30.864-28.899-70.801-44.907-113.23-45.273-92.398-.798-170.283 73.977-169.484 169.442C88.764 348.009 162.184 424 256 424c41.127 0 79.997-14.678 110.629-41.556 4.743-4.161 11.906-3.908 16.368.553l39.662 39.662c4.872 4.872 4.631 12.815-.482 17.433C378.202 479.813 319.926 504 256 504 119.034 504 8.001 392.967 8 256.002 7.999 119.193 119.646 7.755 256.455 8z"] }; +var faRegistered = { prefix: 'fas', iconName: 'registered', icon: [512, 512, [], "f25d", "M285.363 207.475c0 18.6-9.831 28.431-28.431 28.431h-29.876v-56.14h23.378c28.668 0 34.929 8.773 34.929 27.709zM504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM363.411 360.414c-46.729-84.825-43.299-78.636-44.702-80.98 23.432-15.172 37.945-42.979 37.945-74.486 0-54.244-31.5-89.252-105.498-89.252h-70.667c-13.255 0-24 10.745-24 24V372c0 13.255 10.745 24 24 24h22.567c13.255 0 24-10.745 24-24v-71.663h25.556l44.129 82.937a24.001 24.001 0 0 0 21.188 12.727h24.464c18.261-.001 29.829-19.591 21.018-35.587z"] }; +var faReply = { prefix: 'fas', iconName: 'reply', icon: [512, 512, [], "f3e5", "M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z"] }; +var faReplyAll = { prefix: 'fas', iconName: 'reply-all', icon: [576, 512, [], "f122", "M136.309 189.836L312.313 37.851C327.72 24.546 352 35.348 352 56.015v82.763c129.182 10.231 224 52.212 224 183.548 0 61.441-39.582 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 38.512-123.162-3.922-169.482-112.59-182.015v84.175c0 20.701-24.3 31.453-39.687 18.164L136.309 226.164c-11.071-9.561-11.086-26.753 0-36.328zm-128 36.328L184.313 378.15C199.7 391.439 224 380.687 224 359.986v-15.818l-108.606-93.785A55.96 55.96 0 0 1 96 207.998a55.953 55.953 0 0 1 19.393-42.38L224 71.832V56.015c0-20.667-24.28-31.469-39.687-18.164L8.309 189.836c-11.086 9.575-11.071 26.767 0 36.328z"] }; +var faRetweet = { prefix: 'fas', iconName: 'retweet', icon: [640, 512, [], "f079", "M629.657 343.598L528.971 444.284c-9.373 9.372-24.568 9.372-33.941 0L394.343 343.598c-9.373-9.373-9.373-24.569 0-33.941l10.823-10.823c9.562-9.562 25.133-9.34 34.419.492L480 342.118V160H292.451a24.005 24.005 0 0 1-16.971-7.029l-16-16C244.361 121.851 255.069 96 276.451 96H520c13.255 0 24 10.745 24 24v222.118l40.416-42.792c9.285-9.831 24.856-10.054 34.419-.492l10.823 10.823c9.372 9.372 9.372 24.569-.001 33.941zm-265.138 15.431A23.999 23.999 0 0 0 347.548 352H160V169.881l40.416 42.792c9.286 9.831 24.856 10.054 34.419.491l10.822-10.822c9.373-9.373 9.373-24.569 0-33.941L144.971 67.716c-9.373-9.373-24.569-9.373-33.941 0L10.343 168.402c-9.373 9.373-9.373 24.569 0 33.941l10.822 10.822c9.562 9.562 25.133 9.34 34.419-.491L96 169.881V392c0 13.255 10.745 24 24 24h243.549c21.382 0 32.09-25.851 16.971-40.971l-16.001-16z"] }; +var faRibbon = { prefix: 'fas', iconName: 'ribbon', icon: [448, 512, [], "f4d6", "M6.1 444.3c-9.6 10.8-7.5 27.6 4.5 35.7l68.8 27.9c9.9 6.7 23.3 5 31.3-3.8l91.8-101.9-79.2-87.9-117.2 130zm435.8 0s-292-324.6-295.4-330.1c15.4-8.4 40.2-17.9 77.5-17.9s62.1 9.5 77.5 17.9c-3.3 5.6-56 64.6-56 64.6l79.1 87.7 34.2-38c28.7-31.9 33.3-78.6 11.4-115.5l-43.7-73.5c-4.3-7.2-9.9-13.3-16.8-18-40.7-27.6-127.4-29.7-171.4 0-6.9 4.7-12.5 10.8-16.8 18l-43.6 73.2c-1.5 2.5-37.1 62.2 11.5 116L337.5 504c8 8.9 21.4 10.5 31.3 3.8l68.8-27.9c11.9-8 14-24.8 4.3-35.6z"] }; +var faRoad = { prefix: 'fas', iconName: 'road', icon: [576, 512, [], "f018", "M567.3 383.6L429.9 78.2C426 69.5 417.4 64 408 64h-96.1l1.9 18.8c.7 7.1-4.8 13.2-11.9 13.2H274c-7.1 0-12.7-6.2-11.9-13.2L264 64h-96c-9.4 0-18 5.5-21.9 14.2L8.7 383.6C3.2 395.8 0 409.6 0 424c0 13.3 10.7 24 24 24h213.6c-7.1 0-12.7-6.2-11.9-13.2l10.8-104c.6-6.1 5.8-10.8 11.9-10.8h79.2c6.1 0 11.3 4.6 11.9 10.8l10.8 104c.7 7.1-4.8 13.2-11.9 13.2H552c13.2 0 24-10.7 24-24 0-13.9-3-27.7-8.7-40.4zM254.7 154.8l3.3-32c.6-6.1 5.8-10.8 11.9-10.8h36.2c6.1 0 11.3 4.6 11.9 10.8l3.3 32c.7 7.1-4.8 13.2-11.9 13.2h-42.8c-7.1 0-12.7-6.2-11.9-13.2zM321.8 288h-67.6c-7.1 0-12.7-6.2-11.9-13.2l7.4-72c.6-6.1 5.8-10.8 11.9-10.8h52.7c6.1 0 11.3 4.6 11.9 10.8l7.4 72c.9 7-4.7 13.2-11.8 13.2z"] }; +var faRobot = { prefix: 'fas', iconName: 'robot', icon: [640, 512, [], "f544", "M0 256v128c0 17.7 14.3 32 32 32h32V224H32c-17.7 0-32 14.3-32 32zM464 96H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H176c-44.2 0-80 35.8-80 80v272c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V176c0-44.2-35.8-80-80-80zM256 416h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm128 120h-64v-32h64v32zm96 0h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm192-72h-32v192h32c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32z"] }; +var faRocket = { prefix: 'fas', iconName: 'rocket', icon: [512, 512, [], "f135", "M505.1 19.1C503.8 13 499 8.2 492.9 6.9 460.7 0 435.5 0 410.4 0 307.2 0 245.3 55.2 199.1 128H94.9c-18.2 0-34.8 10.3-42.9 26.5L2.6 253.3c-8 16 3.6 34.7 21.5 34.7h95.1c-5.9 12.8-11.9 25.5-18 37.7-3.1 6.2-1.9 13.6 3 18.5l63.6 63.6c4.9 4.9 12.3 6.1 18.5 3 12.2-6.1 24.9-12 37.7-17.9V488c0 17.8 18.8 29.4 34.7 21.5l98.7-49.4c16.3-8.1 26.5-24.8 26.5-42.9V312.8c72.6-46.3 128-108.4 128-211.1.1-25.2.1-50.4-6.8-82.6zM400 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; +var faRss = { prefix: 'fas', iconName: 'rss', icon: [448, 512, [], "f09e", "M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"] }; +var faRssSquare = { prefix: 'fas', iconName: 'rss-square', icon: [448, 512, [], "f143", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM112 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm157.533 0h-34.335c-6.011 0-11.051-4.636-11.442-10.634-5.214-80.05-69.243-143.92-149.123-149.123-5.997-.39-10.633-5.431-10.633-11.441v-34.335c0-6.535 5.468-11.777 11.994-11.425 110.546 5.974 198.997 94.536 204.964 204.964.352 6.526-4.89 11.994-11.425 11.994zm103.027 0h-34.334c-6.161 0-11.175-4.882-11.427-11.038-5.598-136.535-115.204-246.161-251.76-251.76C68.882 152.949 64 147.935 64 141.774V107.44c0-6.454 5.338-11.664 11.787-11.432 167.83 6.025 302.21 141.191 308.205 308.205.232 6.449-4.978 11.787-11.432 11.787z"] }; +var faRubleSign = { prefix: 'fas', iconName: 'ruble-sign', icon: [384, 512, [], "f158", "M239.36 320C324.48 320 384 260.542 384 175.071S324.48 32 239.36 32H76c-6.627 0-12 5.373-12 12v206.632H12c-6.627 0-12 5.373-12 12V308c0 6.627 5.373 12 12 12h52v32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v52c0 6.627 5.373 12 12 12h58.56c6.627 0 12-5.373 12-12v-52H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H146.56v-32h92.8zm-92.8-219.252h78.72c46.72 0 74.88 29.11 74.88 74.323 0 45.832-28.16 75.561-76.16 75.561h-77.44V100.748z"] }; +var faRuler = { prefix: 'fas', iconName: 'ruler', icon: [640, 512, [], "f545", "M635.7 167.2L556.1 31.7c-8.8-15-28.3-20.1-43.5-11.5l-69 39.1L503.3 161c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L416 75l-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L333.2 122 278 153.3 337.8 255c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-59.7-101.7-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-27.9-47.5-55.2 31.3 59.7 101.7c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L84.9 262.9l-69 39.1C.7 310.7-4.6 329.8 4.2 344.8l79.6 135.6c8.8 15 28.3 20.1 43.5 11.5L624.1 210c15.2-8.6 20.4-27.8 11.6-42.8z"] }; +var faRulerCombined = { prefix: 'fas', iconName: 'ruler-combined', icon: [512, 512, [], "f546", "M160 288h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56v-64h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56V96h-56c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8h56V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 2.77.91 5.24 1.57 7.8L160 329.38V288zm320 64h-32v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-41.37L24.2 510.43c2.56.66 5.04 1.57 7.8 1.57h448c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"] }; +var faRulerHorizontal = { prefix: 'fas', iconName: 'ruler-horizontal', icon: [576, 512, [], "f547", "M544 128h-48v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8H88c-4.42 0-8-3.58-8-8v-88H32c-17.67 0-32 14.33-32 32v192c0 17.67 14.33 32 32 32h512c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32z"] }; +var faRulerVertical = { prefix: 'fas', iconName: 'ruler-vertical', icon: [256, 512, [], "f548", "M168 416c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 17.67 14.33 32 32 32h192c17.67 0 32-14.33 32-32v-64h-88z"] }; +var faRupeeSign = { prefix: 'fas', iconName: 'rupee-sign', icon: [320, 512, [], "f156", "M308 96c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v44.748c0 6.627 5.373 12 12 12h85.28c27.308 0 48.261 9.958 60.97 27.252H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h158.757c-6.217 36.086-32.961 58.632-74.757 58.632H12c-6.627 0-12 5.373-12 12v53.012c0 3.349 1.4 6.546 3.861 8.818l165.052 152.356a12.001 12.001 0 0 0 8.139 3.182h82.562c10.924 0 16.166-13.408 8.139-20.818L116.871 319.906c76.499-2.34 131.144-53.395 138.318-127.906H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-58.69c-3.486-11.541-8.28-22.246-14.252-32H308z"] }; +var faSadCry = { prefix: 'fas', iconName: 'sad-cry', icon: [496, 512, [], "f5b3", "M248 8C111 8 0 119 0 256c0 90.1 48.2 168.7 120 212.1V288c0-8.8 7.2-16 16-16s16 7.2 16 16v196.7c29.5 12.4 62 19.3 96 19.3s66.5-6.9 96-19.3V288c0-8.8 7.2-16 16-16s16 7.2 16 16v180.1C447.8 424.7 496 346 496 256 496 119 385 8 248 8zm-65.5 216.5c-14.8-13.2-46.2-13.2-61 0L112 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c.8 5-1.7 10-6.1 12.4-5.8 3.1-11.2.7-13.7-1.6l-9.7-8.5zM248 416c-26.5 0-48-28.7-48-64s21.5-64 48-64 48 28.7 48 64-21.5 64-48 64zm149.8-181.5c-5.8 3.1-11.2.7-13.7-1.6l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S400 197 404 222.2c.6 4.9-1.8 9.9-6.2 12.3z"] }; +var faSadTear = { prefix: 'fas', iconName: 'sad-tear', icon: [496, 512, [], "f5b4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM152 416c-26.5 0-48-21-48-47 0-20 28.5-60.4 41.6-77.8 3.2-4.3 9.6-4.3 12.8 0C171.5 308.6 200 349 200 369c0 26-21.5 47-48 47zm16-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm170.2 154.2C315.8 367.4 282.9 352 248 352c-21.2 0-21.2-32 0-32 44.4 0 86.3 19.6 114.7 53.8 13.8 16.4-11.2 36.5-24.5 20.4z"] }; +var faSave = { prefix: 'fas', iconName: 'save', icon: [448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z"] }; +var faSchool = { prefix: 'fas', iconName: 'school', icon: [640, 512, [], "f549", "M0 224v272c0 8.84 7.16 16 16 16h80V192H32c-17.67 0-32 14.33-32 32zm360-48h-24v-40c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v64c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zm137.75-63.96l-160-106.67a32.02 32.02 0 0 0-35.5 0l-160 106.67A32.002 32.002 0 0 0 128 138.66V512h128V368c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v144h128V138.67c0-10.7-5.35-20.7-14.25-26.63zM320 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm288-64h-64v320h80c8.84 0 16-7.16 16-16V224c0-17.67-14.33-32-32-32z"] }; +var faScrewdriver = { prefix: 'fas', iconName: 'screwdriver', icon: [512, 512, [], "f54a", "M448 0L320 96v62.06l-83.03 83.03c6.79 4.25 13.27 9.06 19.07 14.87 5.8 5.8 10.62 12.28 14.87 19.07L353.94 192H416l96-128-64-64zM128 278.59L10.92 395.67c-14.55 14.55-14.55 38.15 0 52.71l52.7 52.7c14.56 14.56 38.15 14.56 52.71 0L233.41 384c29.11-29.11 29.11-76.3 0-105.41s-76.3-29.11-105.41 0z"] }; +var faSearch = { prefix: 'fas', iconName: 'search', icon: [512, 512, [], "f002", "M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"] }; +var faSearchMinus = { prefix: 'fas', iconName: 'search-minus', icon: [512, 512, [], "f010", "M304 192v32c0 6.6-5.4 12-12 12H124c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z"] }; +var faSearchPlus = { prefix: 'fas', iconName: 'search-plus', icon: [512, 512, [], "f00e", "M304 192v32c0 6.6-5.4 12-12 12h-56v56c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-56h-56c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h56v-56c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v56h56c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z"] }; +var faSeedling = { prefix: 'fas', iconName: 'seedling', icon: [512, 512, [], "f4d8", "M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z"] }; +var faServer = { prefix: 'fas', iconName: 'server', icon: [512, 512, [], "f233", "M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z"] }; +var faShare = { prefix: 'fas', iconName: 'share', icon: [512, 512, [], "f064", "M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z"] }; +var faShareAlt = { prefix: 'fas', iconName: 'share-alt', icon: [448, 512, [], "f1e0", "M352 320c-22.608 0-43.387 7.819-59.79 20.895l-102.486-64.054a96.551 96.551 0 0 0 0-41.683l102.486-64.054C308.613 184.181 329.392 192 352 192c53.019 0 96-42.981 96-96S405.019 0 352 0s-96 42.981-96 96c0 7.158.79 14.13 2.276 20.841L155.79 180.895C139.387 167.819 118.608 160 96 160c-53.019 0-96 42.981-96 96s42.981 96 96 96c22.608 0 43.387-7.819 59.79-20.895l102.486 64.054A96.301 96.301 0 0 0 256 416c0 53.019 42.981 96 96 96s96-42.981 96-96-42.981-96-96-96z"] }; +var faShareAltSquare = { prefix: 'fas', iconName: 'share-alt-square', icon: [448, 512, [], "f1e1", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zM304 296c-14.562 0-27.823 5.561-37.783 14.671l-67.958-40.775a56.339 56.339 0 0 0 0-27.793l67.958-40.775C276.177 210.439 289.438 216 304 216c30.928 0 56-25.072 56-56s-25.072-56-56-56-56 25.072-56 56c0 4.797.605 9.453 1.74 13.897l-67.958 40.775C171.823 205.561 158.562 200 144 200c-30.928 0-56 25.072-56 56s25.072 56 56 56c14.562 0 27.823-5.561 37.783-14.671l67.958 40.775a56.088 56.088 0 0 0-1.74 13.897c0 30.928 25.072 56 56 56s56-25.072 56-56C360 321.072 334.928 296 304 296z"] }; +var faShareSquare = { prefix: 'fas', iconName: 'share-square', icon: [576, 512, [], "f14d", "M568.482 177.448L424.479 313.433C409.3 327.768 384 317.14 384 295.985v-71.963c-144.575.97-205.566 35.113-164.775 171.353 4.483 14.973-12.846 26.567-25.006 17.33C155.252 383.105 120 326.488 120 269.339c0-143.937 117.599-172.5 264-173.312V24.012c0-21.174 25.317-31.768 40.479-17.448l144.003 135.988c10.02 9.463 10.028 25.425 0 34.896zM384 379.128V448H64V128h50.916a11.99 11.99 0 0 0 8.648-3.693c14.953-15.568 32.237-27.89 51.014-37.676C185.708 80.83 181.584 64 169.033 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48v-88.806c0-8.288-8.197-14.066-16.011-11.302a71.83 71.83 0 0 1-34.189 3.377c-7.27-1.046-13.8 4.514-13.8 11.859z"] }; +var faShekelSign = { prefix: 'fas', iconName: 'shekel-sign', icon: [448, 512, [], "f20b", "M248 168v168c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V168c0-75.11-60.89-136-136-136H24C10.75 32 0 42.74 0 56v408c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112h112c30.93 0 56 25.07 56 56zM432 32h-48c-8.84 0-16 7.16-16 16v296c0 30.93-25.07 56-56 56H200V176c0-8.84-7.16-16-16-16h-48c-8.84 0-16 7.16-16 16v280c0 13.25 10.75 24 24 24h168c75.11 0 136-60.89 136-136V48c0-8.84-7.16-16-16-16z"] }; +var faShieldAlt = { prefix: 'fas', iconName: 'shield-alt', icon: [512, 512, [], "f3ed", "M496 128c0 221.282-135.934 344.645-221.539 380.308a48 48 0 0 1-36.923 0C130.495 463.713 16 326.487 16 128a48 48 0 0 1 29.539-44.308l192-80a48 48 0 0 1 36.923 0l192 80A48 48 0 0 1 496 128zM256 446.313l.066.034c93.735-46.689 172.497-156.308 175.817-307.729L256 65.333v380.98z"] }; +var faShip = { prefix: 'fas', iconName: 'ship', icon: [640, 512, [], "f21a", "M496.616 372.639l70.012-70.012c16.899-16.9 9.942-45.771-12.836-53.092L512 236.102V96c0-17.673-14.327-32-32-32h-64V24c0-13.255-10.745-24-24-24H248c-13.255 0-24 10.745-24 24v40h-64c-17.673 0-32 14.327-32 32v140.102l-41.792 13.433c-22.753 7.313-29.754 36.173-12.836 53.092l70.012 70.012C125.828 416.287 85.587 448 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24 61.023 0 107.499-20.61 143.258-59.396C181.677 487.432 216.021 512 256 512h128c39.979 0 74.323-24.568 88.742-59.396C508.495 491.384 554.968 512 616 512c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24-60.817 0-101.542-31.001-119.384-75.361zM192 128h256v87.531l-118.208-37.995a31.995 31.995 0 0 0-19.584 0L192 215.531V128z"] }; +var faShippingFast = { prefix: 'fas', iconName: 'shipping-fast', icon: [640, 512, [], "f48b", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H112C85.5 0 64 21.5 64 48v48H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h272c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H40c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H64v128c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"] }; +var faShoePrints = { prefix: 'fas', iconName: 'shoe-prints', icon: [640, 512, [], "f54b", "M192 160h32V32h-32c-35.35 0-64 28.65-64 64s28.65 64 64 64zM0 416c0 35.35 28.65 64 64 64h32V352H64c-35.35 0-64 28.65-64 64zm337.46-128c-34.91 0-76.16 13.12-104.73 32-24.79 16.38-44.52 32-104.73 32v128l57.53 15.97c26.21 7.28 53.01 13.12 80.31 15.05 32.69 2.31 65.6.67 97.58-6.2C472.9 481.3 512 429.22 512 384c0-64-84.18-96-174.54-96zM491.42 7.19C459.44.32 426.53-1.33 393.84.99c-27.3 1.93-54.1 7.77-80.31 15.04L256 32v128c60.2 0 79.94 15.62 104.73 32 28.57 18.88 69.82 32 104.73 32C555.82 224 640 192 640 128c0-45.22-39.1-97.3-148.58-120.81z"] }; +var faShoppingBag = { prefix: 'fas', iconName: 'shopping-bag', icon: [448, 512, [], "f290", "M352 160v-32C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128v32H0v272c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V160h-96zm-192-32c0-35.29 28.71-64 64-64s64 28.71 64 64v32H160v-32zm160 120c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm-192 0c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24z"] }; +var faShoppingBasket = { prefix: 'fas', iconName: 'shopping-basket', icon: [576, 512, [], "f291", "M576 216v16c0 13.255-10.745 24-24 24h-8l-26.113 182.788C514.509 462.435 494.257 480 470.37 480H105.63c-23.887 0-44.139-17.565-47.518-41.212L32 256h-8c-13.255 0-24-10.745-24-24v-16c0-13.255 10.745-24 24-24h67.341l106.78-146.821c10.395-14.292 30.407-17.453 44.701-7.058 14.293 10.395 17.453 30.408 7.058 44.701L170.477 192h235.046L326.12 82.821c-10.395-14.292-7.234-34.306 7.059-44.701 14.291-10.395 34.306-7.235 44.701 7.058L484.659 192H552c13.255 0 24 10.745 24 24zM312 392V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm112 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm-224 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24z"] }; +var faShoppingCart = { prefix: 'fas', iconName: 'shopping-cart', icon: [576, 512, [], "f07a", "M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z"] }; +var faShower = { prefix: 'fas', iconName: 'shower', icon: [512, 512, [], "f2cc", "M389.66 135.6L231.6 293.66c-9.37 9.37-24.57 9.37-33.94 0l-11.32-11.32c-9.37-9.37-9.37-24.57 0-33.94l.11-.11c-34.03-40.21-35.16-98.94-3.39-140.38-11.97-7.55-26.14-11.91-41.3-11.91C98.88 96 64 130.88 64 173.76V480H0V173.76C0 95.59 63.59 32 141.76 32c36.93 0 70.61 14.2 95.86 37.42 35.9-11.51 76.5-4.5 106.67 21.03l.11-.11c9.37-9.37 24.57-9.37 33.94 0l11.32 11.32c9.37 9.37 9.37 24.57 0 33.94zM384 208c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm48-16c8.837 0 16 7.163 16 16s-7.163 16-16 16-16-7.163-16-16 7.163-16 16-16zm80 16c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-128 32c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-96 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm64 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16z"] }; +var faShuttleVan = { prefix: 'fas', iconName: 'shuttle-van', icon: [640, 512, [], "f5b6", "M628.88 210.65L494.39 49.27A48.01 48.01 0 0 0 457.52 32H32C14.33 32 0 46.33 0 64v288c0 17.67 14.33 32 32 32h32c0 53.02 42.98 96 96 96s96-42.98 96-96h128c0 53.02 42.98 96 96 96s96-42.98 96-96h32c17.67 0 32-14.33 32-32V241.38c0-11.23-3.94-22.1-11.12-30.73zM64 192V96h96v96H64zm96 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm160-240h-96V96h96v96zm160 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm-96-240V96h66.02l80 96H384z"] }; +var faSign = { prefix: 'fas', iconName: 'sign', icon: [512, 512, [], "f4d9", "M496 64H128V16c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16v48H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V128h368c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM160 384h320V160H160v224z"] }; +var faSignInAlt = { prefix: 'fas', iconName: 'sign-in-alt', icon: [512, 512, [], "f2f6", "M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z"] }; +var faSignLanguage = { prefix: 'fas', iconName: 'sign-language', icon: [448, 512, [], "f2a7", "M91.434 483.987c-.307-16.018 13.109-29.129 29.13-29.129h62.293v-5.714H56.993c-16.021 0-29.437-13.111-29.13-29.129C28.16 404.491 40.835 392 56.428 392h126.429v-5.714H29.136c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h154.286v-5.714H57.707c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h168.566l-31.085-22.606c-12.762-9.281-15.583-27.149-6.302-39.912 9.281-12.761 27.15-15.582 39.912-6.302l123.361 89.715a34.287 34.287 0 0 1 14.12 27.728v141.136c0 15.91-10.946 29.73-26.433 33.374l-80.471 18.934a137.16 137.16 0 0 1-31.411 3.646H120c-15.593-.001-28.269-12.492-28.566-28.014zm73.249-225.701h36.423l-11.187-8.136c-18.579-13.511-20.313-40.887-3.17-56.536l-13.004-16.7c-9.843-12.641-28.43-15.171-40.88-5.088-12.065 9.771-14.133 27.447-4.553 39.75l36.371 46.71zm283.298-2.103l-5.003-152.452c-.518-15.771-13.722-28.136-29.493-27.619-15.773.518-28.137 13.722-27.619 29.493l1.262 38.415L283.565 11.019c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l76.889 98.745-4.509 3.511-94.79-121.734c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l94.443 121.288-4.509 3.511-77.675-99.754c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l52.053 66.849c12.497-8.257 29.055-8.285 41.69.904l123.36 89.714c10.904 7.93 17.415 20.715 17.415 34.198v16.999l61.064-47.549a34.285 34.285 0 0 0 13.202-28.177z"] }; +var faSignOutAlt = { prefix: 'fas', iconName: 'sign-out-alt', icon: [512, 512, [], "f2f5", "M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"] }; +var faSignal = { prefix: 'fas', iconName: 'signal', icon: [640, 512, [], "f012", "M36 384h56c6.6 0 12 5.4 12 12v104c0 6.6-5.4 12-12 12H36c-6.6 0-12-5.4-12-12V396c0-6.6 5.4-12 12-12zm116-36v152c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V348c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-80v232c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V268c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-112v344c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V156c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zM536 12v488c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V12c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12z"] }; +var faSignature = { prefix: 'fas', iconName: 'signature', icon: [512, 512, [], "f5b7", "M496 320h-91.86c-9.27 0-19.72-11.31-25.78-28.52-15.23-43.36-48.11-70.3-85.8-70.3-30.84 0-58.47 18.05-76.11 49.23L194.8 106.5C188.84 81.08 169.34 64 146.28 64c-23.05 0-42.55 17.08-48.5 42.5L56.16 284.2C50.7 307.45 37.75 320 28.33 320H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h12.33c41.97 0 78.19-34.23 90.14-85.2l23.84-101.78 29.25 222.11c1.98 15.05 13.82 27.45 28.94 28.75.99.09 1.96.13 2.93.13 14.08 0 26.64-9.27 30.69-22.95l33.03-112.34c5.88-16.72 15.84-27.52 25.41-27.52 9.58 0 19.55 10.8 25.78 28.52 15.23 43.36 48.11 70.3 85.8 70.3H496c8.84 0 16-7.16 16-16v-32c0-8.86-7.16-16.02-16-16.02z"] }; +var faSitemap = { prefix: 'fas', iconName: 'sitemap', icon: [640, 512, [], "f0e8", "M128 352H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm-24-80h192v48h48v-48h192v48h48v-57.59c0-21.17-17.23-38.41-38.41-38.41H344v-64h40c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H256c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h40v64H94.41C73.23 224 56 241.23 56 262.41V320h48v-48zm264 80h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm240 0h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"] }; +var faSkull = { prefix: 'fas', iconName: 'skull', icon: [512, 512, [], "f54c", "M256 0C114.6 0 0 100.3 0 224c0 70.1 36.9 132.6 94.5 173.7 9.6 6.9 15.2 18.1 13.5 29.9l-9.4 66.2c-1.4 9.6 6 18.2 15.7 18.2H192v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h64v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h77.7c9.7 0 17.1-8.6 15.7-18.2l-9.4-66.2c-1.7-11.7 3.8-23 13.5-29.9C475.1 356.6 512 294.1 512 224 512 100.3 397.4 0 256 0zm-96 320c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm192 0c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64z"] }; +var faSlidersH = { prefix: 'fas', iconName: 'sliders-h', icon: [512, 512, [], "f1de", "M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z"] }; +var faSmile = { prefix: 'fas', iconName: 'smile', icon: [496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.6-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.4-16.2 38.1 4.2 24.6 20.5z"] }; +var faSmileBeam = { prefix: 'fas', iconName: 'smile-beam', icon: [496, 512, [], "f5b8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM112 223.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zm250.8 122.8C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.3 24.6 20.5zm6.2-118.3l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.6 8.6-11 11.9-15.1 4.5z"] }; +var faSmileWink = { prefix: 'fas', iconName: 'smile-wink', icon: [496, 512, [], "f4da", "M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm158.5 16.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.7 11.1-11.4 18.3-19.8 10.8l-9.7-8.5zM157.8 325.8C180.2 352.7 213 368 248 368s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.2 24.6 20.5C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11.2-36.7 24.6-20.4z"] }; +var faSmoking = { prefix: 'fas', iconName: 'smoking', icon: [640, 512, [], "f48d", "M632 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8zM553.3 87.1c-5.7-3.8-9.3-10-9.3-16.8V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v62.3c0 22 10.2 43.4 28.6 55.4 42.2 27.3 67.4 73.8 67.4 124V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-65.5-32.4-126.2-86.7-162.6zM432 352H48c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h384c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zm-32 112H224v-64h176v64zm87.7-322.4C463.8 125 448 99.3 448 70.3V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v66.4c0 43.7 24.6 81.6 60.3 106.7 22.4 15.7 35.7 41.2 35.7 68.6V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-43.3-21-83.4-56.3-108.1zM536 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8z"] }; +var faSmokingBan = { prefix: 'fas', iconName: 'smoking-ban', icon: [512, 512, [], "f54d", "M96 304c0 8.8 7.2 16 16 16h117.5l-96-96H112c-8.8 0-16 7.2-16 16v64zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 448c-105.9 0-192-86.1-192-192 0-41.4 13.3-79.7 35.7-111.1l267.4 267.4C335.7 434.7 297.4 448 256 448zm45.2-192H384v32h-50.8l-32-32zm111.1 111.1L365.2 320H400c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16H269.2L144.9 99.7C176.3 77.3 214.6 64 256 64c105.9 0 192 86.1 192 192 0 41.4-13.3 79.7-35.7 111.1zM320.6 128c-15.6 0-28.6-11.2-31.4-25.9-.7-3.6-4-6.1-7.7-6.1h-16.2c-5 0-8.7 4.5-8 9.4 4.6 30.9 31.2 54.6 63.3 54.6 15.6 0 28.6 11.2 31.4 25.9.7 3.6 4 6.1 7.7 6.1h16.2c5 0 8.7-4.5 8-9.4-4.6-30.9-31.2-54.6-63.3-54.6z"] }; +var faSnowflake = { prefix: 'fas', iconName: 'snowflake', icon: [448, 512, [], "f2dc", "M444.816 301.639a24.12 24.12 0 0 0 2.661-16.978c-2.725-12.966-15.339-21.245-28.174-18.492l-87.407 25.046L264 256l67.896-35.215 87.407 25.046c12.835 2.753 25.449-5.526 28.174-18.492 2.725-12.966-5.471-25.708-18.305-28.461l-47.477-7.137 53.077-30.956c11.363-6.627 15.257-21.306 8.696-32.785-6.561-11.479-21.091-15.412-32.454-8.785l-53.077 30.956 17.621-45.104c4.057-12.606-2.768-26.146-15.247-30.245-12.478-4.099-25.883 2.797-29.94 15.402l-22.232 88.99-60.38 35.215V144l65.175-63.945c8.778-9.852 7.987-25.027-1.766-33.894-9.753-8.867-24.775-8.068-33.552 1.784l-29.857 37.967V24c0-13.255-10.637-24-23.758-24s-23.758 10.745-23.758 24v61.912l-29.857-37.967c-8.779-9.852-23.799-10.652-33.552-1.784-9.753 8.867-10.543 24.042-1.766 33.894L200.242 144v70.431l-60.38-35.215-22.232-88.99c-4.057-12.605-17.462-19.501-29.94-15.402-12.478 4.099-19.304 17.64-15.247 30.245l17.62 45.104-53.077-30.956c-11.363-6.627-25.893-2.694-32.454 8.785s-2.667 26.157 8.696 32.785l53.077 30.956-47.477 7.137C5.993 201.634-2.203 214.375.523 227.341c2.725 12.965 15.339 21.245 28.174 18.492l87.407-25.046L184 256l-67.896 35.215-87.406-25.045c-12.835-2.753-25.449 5.526-28.174 18.492-2.725 12.967 5.47 25.708 18.305 28.461l47.477 7.137-53.077 30.956C1.866 357.843-2.027 372.521 4.533 384s21.091 15.412 32.454 8.785l53.077-30.956-17.62 45.104a24.157 24.157 0 0 0 2.022 19.428c2.831 4.953 7.416 8.909 13.224 10.816 12.478 4.099 25.883-2.797 29.94-15.402l22.232-88.99 60.38-35.215V368l-65.175 63.945c-8.778 9.852-7.987 25.027 1.766 33.894 9.754 8.868 24.774 8.068 33.552-1.784l29.857-37.967V488c0 13.255 10.637 24 23.758 24s23.758-10.745 23.758-24v-61.912l29.857 37.967A23.59 23.59 0 0 0 295.282 472a23.534 23.534 0 0 0 15.885-6.161c9.753-8.867 10.544-24.042 1.766-33.894L247.758 368v-70.431l60.38 35.215 22.232 88.99c4.057 12.605 17.462 19.501 29.94 15.402 12.479-4.099 19.304-17.64 15.247-30.245l-17.621-45.104 53.077 30.956c11.363 6.627 25.893 2.694 32.454-8.785s2.667-26.157-8.696-32.785l-53.077-30.956 47.477-7.137c6.86-1.469 12.394-5.793 15.645-11.481z"] }; +var faSolarPanel = { prefix: 'fas', iconName: 'solar-panel', icon: [640, 512, [], "f5ba", "M431.98 448.01l-47.97.05V416h-128v32.21l-47.98.05c-8.82.01-15.97 7.16-15.98 15.99l-.05 31.73c-.01 8.85 7.17 16.03 16.02 16.02l223.96-.26c8.82-.01 15.97-7.16 15.98-15.98l.04-31.73c.01-8.85-7.17-16.03-16.02-16.02zM585.2 26.74C582.58 11.31 568.99 0 553.06 0H86.93C71 0 57.41 11.31 54.79 26.74-3.32 369.16.04 348.08.03 352c-.03 17.32 14.29 32 32.6 32h574.74c18.23 0 32.51-14.56 32.59-31.79.02-4.08 3.35 16.95-54.76-325.47zM259.83 64h120.33l9.77 96H250.06l9.77-96zm-75.17 256H71.09L90.1 208h105.97l-11.41 112zm16.29-160H98.24l16.29-96h96.19l-9.77 96zm32.82 160l11.4-112h149.65l11.4 112H233.77zm195.5-256h96.19l16.29 96H439.04l-9.77-96zm26.06 256l-11.4-112H549.9l19.01 112H455.33z"] }; +var faSort = { prefix: 'fas', iconName: 'sort', icon: [320, 512, [], "f0dc", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z"] }; +var faSortAlphaDown = { prefix: 'fas', iconName: 'sort-alpha-down', icon: [448, 512, [], "f15d", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zm119.075-180.007A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z"] }; +var faSortAlphaUp = { prefix: 'fas', iconName: 'sort-alpha-up', icon: [448, 512, [], "f15e", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zm301.671 98.621A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z"] }; +var faSortAmountDown = { prefix: 'fas', iconName: 'sort-amount-down', icon: [512, 512, [], "f160", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z"] }; +var faSortAmountUp = { prefix: 'fas', iconName: 'sort-amount-up', icon: [512, 512, [], "f161", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z"] }; +var faSortDown = { prefix: 'fas', iconName: 'sort-down', icon: [320, 512, [], "f0dd", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z"] }; +var faSortNumericDown = { prefix: 'fas', iconName: 'sort-numeric-down', icon: [448, 512, [], "f162", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM175.984 368H128V48c0-8.837-7.163-16-16-16H80c-8.837 0-16 7.163-16 16v320H16.019c-14.212 0-21.384 17.244-11.314 27.314l79.981 80.002c6.245 6.245 16.38 6.247 22.627 0l79.984-80.002c10.05-10.05 2.928-27.314-11.313-27.314z"] }; +var faSortNumericUp = { prefix: 'fas', iconName: 'sort-numeric-up', icon: [448, 512, [], "f163", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM16.016 144H64v320c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144h47.981c14.212 0 21.384-17.244 11.314-27.314l-79.981-80.002c-6.245-6.245-16.38-6.247-22.627 0L4.702 116.686C-5.347 126.736 1.775 144 16.016 144z"] }; +var faSortUp = { prefix: 'fas', iconName: 'sort-up', icon: [320, 512, [], "f0de", "M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z"] }; +var faSpa = { prefix: 'fas', iconName: 'spa', icon: [576, 512, [], "f5bb", "M568.25 192c-29.04.13-135.01 6.16-213.84 83-33.12 29.63-53.36 63.3-66.41 94.86-13.05-31.56-33.29-65.23-66.41-94.86-78.83-76.84-184.8-82.87-213.84-83-4.41-.02-7.79 3.4-7.75 7.82.23 27.92 7.14 126.14 88.77 199.3C172.79 480.94 256 480 288 480s115.19.95 199.23-80.88c81.64-73.17 88.54-171.38 88.77-199.3.04-4.42-3.34-7.84-7.75-7.82zM287.98 302.6c12.82-18.85 27.6-35.78 44.09-50.52 19.09-18.61 39.58-33.3 60.26-45.18-16.44-70.5-51.72-133.05-96.73-172.22-4.11-3.58-11.02-3.58-15.14 0-44.99 39.14-80.27 101.63-96.74 172.07 20.37 11.7 40.5 26.14 59.22 44.39a282.768 282.768 0 0 1 45.04 51.46z"] }; +var faSpaceShuttle = { prefix: 'fas', iconName: 'space-shuttle', icon: [640, 512, [], "f197", "M592.604 208.244C559.735 192.836 515.777 184 472 184H186.327c-4.952-6.555-10.585-11.978-16.72-16H376C229.157 137.747 219.403 32 96.003 32H96v128H80V32c-26.51 0-48 28.654-48 64v64c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v16c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v64c0 35.346 21.49 64 48 64V352h16v128h.003c123.4 0 133.154-105.747 279.997-136H169.606c6.135-4.022 11.768-9.445 16.72-16H472c43.777 0 87.735-8.836 120.604-24.244C622.282 289.845 640 271.992 640 256s-17.718-33.845-47.396-47.756zM488 296a8 8 0 0 1-8-8v-64a8 8 0 0 1 8-8c31.909 0 31.942 80 0 80z"] }; +var faSpinner = { prefix: 'fas', iconName: 'spinner', icon: [512, 512, [], "f110", "M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z"] }; +var faSplotch = { prefix: 'fas', iconName: 'splotch', icon: [512, 512, [], "f5bc", "M472.29 195.89l-67.06-22.95c-19.28-6.6-33.54-20.92-38.14-38.3L351.1 74.19c-11.58-43.77-76.57-57.13-109.98-22.62l-46.14 47.67c-13.26 13.71-33.54 20.93-54.2 19.31l-71.88-5.62c-52.05-4.07-86.93 44.88-59.03 82.83l38.54 52.42c11.08 15.07 12.82 33.86 4.64 50.24L24.62 355.4c-20.59 41.25 22.84 84.87 73.49 73.81l69.96-15.28c20.11-4.39 41.45 0 57.07 11.73l54.32 40.83c39.32 29.56 101.04 7.57 104.45-37.22l4.7-61.86c1.35-17.79 12.8-33.86 30.63-42.99l62-31.74c44.88-22.96 39.59-80.17-8.95-96.79z"] }; +var faSprayCan = { prefix: 'fas', iconName: 'spray-can', icon: [512, 512, [], "f5bd", "M224 32c0-17.67-14.33-32-32-32h-64c-17.67 0-32 14.33-32 32v96h128V32zm256 96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-256 32H96c-53.02 0-96 42.98-96 96v224c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V256c0-53.02-42.98-96-96-96zm-64 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zM480 96c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm-96 32c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-96-96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 0c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 192c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z"] }; +var faSquare = { prefix: 'fas', iconName: 'square', icon: [448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"] }; +var faSquareFull = { prefix: 'fas', iconName: 'square-full', icon: [512, 512, [], "f45c", "M512 512H0V0h512v512z"] }; +var faStamp = { prefix: 'fas', iconName: 'stamp', icon: [512, 512, [], "f5bf", "M32 512h448v-64H32v64zm384-256h-66.56c-16.26 0-29.44-13.18-29.44-29.44v-9.46c0-27.37 8.88-53.41 21.46-77.72 9.11-17.61 12.9-38.39 9.05-60.42-6.77-38.78-38.47-70.7-77.26-77.45C212.62-9.04 160 37.33 160 96c0 14.16 3.12 27.54 8.69 39.58C182.02 164.43 192 194.7 192 226.49v.07c0 16.26-13.18 29.44-29.44 29.44H96c-53.02 0-96 42.98-96 96v32c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-32c0-53.02-42.98-96-96-96z"] }; +var faStar = { prefix: 'fas', iconName: 'star', icon: [576, 512, [], "f005", "M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z"] }; +var faStarHalf = { prefix: 'fas', iconName: 'star-half', icon: [576, 512, [], "f089", "M288 0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6V0z"] }; +var faStarHalfAlt = { prefix: 'fas', iconName: 'star-half-alt', icon: [536, 512, [], "f5c0", "M508.55 171.51L362.18 150.2 296.77 17.81C290.89 5.98 279.42 0 267.95 0c-11.4 0-22.79 5.9-28.69 17.81l-65.43 132.38-146.38 21.29c-26.25 3.8-36.77 36.09-17.74 54.59l105.89 103-25.06 145.48C86.98 495.33 103.57 512 122.15 512c4.93 0 10-1.17 14.87-3.75l130.95-68.68 130.94 68.7c4.86 2.55 9.92 3.71 14.83 3.71 18.6 0 35.22-16.61 31.66-37.4l-25.03-145.49 105.91-102.98c19.04-18.5 8.52-50.8-17.73-54.6zm-121.74 123.2l-18.12 17.62 4.28 24.88 19.52 113.45-102.13-53.59-22.38-11.74.03-317.19 51.03 103.29 11.18 22.63 25.01 3.64 114.23 16.63-82.65 80.38z"] }; +var faStepBackward = { prefix: 'fas', iconName: 'step-backward', icon: [448, 512, [], "f048", "M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z"] }; +var faStepForward = { prefix: 'fas', iconName: 'step-forward', icon: [448, 512, [], "f051", "M384 44v424c0 6.6-5.4 12-12 12h-48c-6.6 0-12-5.4-12-12V291.6l-195.5 181C95.9 489.7 64 475.4 64 448V64c0-27.4 31.9-41.7 52.5-24.6L312 219.3V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12z"] }; +var faStethoscope = { prefix: 'fas', iconName: 'stethoscope', icon: [512, 512, [], "f0f1", "M447.1 112c-34.2.5-62.3 28.4-63 62.6-.5 24.3 12.5 45.6 32 56.8V344c0 57.3-50.2 104-112 104-60 0-109.2-44.1-111.9-99.2C265 333.8 320 269.2 320 192V36.6c0-11.4-8.1-21.3-19.3-23.5L237.8.5c-13-2.6-25.6 5.8-28.2 18.8L206.4 35c-2.6 13 5.8 25.6 18.8 28.2l30.7 6.1v121.4c0 52.9-42.2 96.7-95.1 97.2-53.4.5-96.9-42.7-96.9-96V69.4l30.7-6.1c13-2.6 21.4-15.2 18.8-28.2l-3.1-15.7C107.7 6.4 95.1-2 82.1.6L19.3 13C8.1 15.3 0 25.1 0 36.6V192c0 77.3 55.1 142 128.1 156.8C130.7 439.2 208.6 512 304 512c97 0 176-75.4 176-168V231.4c19.1-11.1 32-31.7 32-55.4 0-35.7-29.2-64.5-64.9-64zm.9 80c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"] }; +var faStickyNote = { prefix: 'fas', iconName: 'sticky-note', icon: [448, 512, [], "f249", "M312 320h136V56c0-13.3-10.7-24-24-24H24C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h264V344c0-13.2 10.8-24 24-24zm129 55l-98 98c-4.5 4.5-10.6 7-17 7h-6V352h128v6.1c0 6.3-2.5 12.4-7 16.9z"] }; +var faStop = { prefix: 'fas', iconName: 'stop', icon: [448, 512, [], "f04d", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"] }; +var faStopCircle = { prefix: 'fas', iconName: 'stop-circle', icon: [512, 512, [], "f28d", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z"] }; +var faStopwatch = { prefix: 'fas', iconName: 'stopwatch', icon: [448, 512, [], "f2f2", "M432 304c0 114.9-93.1 208-208 208S16 418.9 16 304c0-104 76.3-190.2 176-205.5V64h-28c-6.6 0-12-5.4-12-12V12c0-6.6 5.4-12 12-12h120c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-28v34.5c37.5 5.8 71.7 21.6 99.7 44.6l27.5-27.5c4.7-4.7 12.3-4.7 17 0l28.3 28.3c4.7 4.7 4.7 12.3 0 17l-29.4 29.4-.6.6C419.7 223.3 432 262.2 432 304zm-176 36V188.5c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12V340c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"] }; +var faStore = { prefix: 'fas', iconName: 'store', icon: [616, 512, [], "f54e", "M602 118.6L537.1 15C531.3 5.7 521 0 510 0H106C95 0 84.7 5.7 78.9 15L14 118.6c-33.5 53.5-3.8 127.9 58.8 136.4 4.5.6 9.1.9 13.7.9 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18.1 20.1 44.3 33.1 73.8 33.1 4.7 0 9.2-.3 13.7-.9 62.8-8.4 92.6-82.8 59-136.4zM529.5 288c-10 0-19.9-1.5-29.5-3.8V384H116v-99.8c-9.6 2.2-19.5 3.8-29.5 3.8-6 0-12.1-.4-18-1.2-5.6-.8-11.1-2.1-16.4-3.6V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V283.2c-5.4 1.6-10.8 2.9-16.4 3.6-6.1.8-12.1 1.2-18.2 1.2z"] }; +var faStoreAlt = { prefix: 'fas', iconName: 'store-alt', icon: [640, 512, [], "f54f", "M320 384H128V224H64v256c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V224h-64v160zm314.6-241.8l-85.3-128c-6-8.9-16-14.2-26.7-14.2H117.4c-10.7 0-20.7 5.3-26.6 14.2l-85.3 128c-14.2 21.3 1 49.8 26.6 49.8H608c25.5 0 40.7-28.5 26.6-49.8zM512 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h-64v272z"] }; +var faStream = { prefix: 'fas', iconName: 'stream', icon: [512, 512, [], "f550", "M16 128h416c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H16C7.16 32 0 39.16 0 48v64c0 8.84 7.16 16 16 16zm480 80H80c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm-64 176H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16z"] }; +var faStreetView = { prefix: 'fas', iconName: 'street-view', icon: [512, 512, [], "f21d", "M192 64c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zm112 80h-11.36c-22.711 10.443-49.59 10.894-73.28 0H208c-26.51 0-48 21.49-48 48v104c0 13.255 10.745 24 24 24h16v104c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V320h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48zm85.642 189.152a72.503 72.503 0 0 1-29.01 27.009C391.133 365.251 480 385.854 480 416c0 46.304-167.656 64-224 64-70.303 0-224-20.859-224-64 0-30.123 88.361-50.665 119.367-55.839a72.516 72.516 0 0 1-29.01-27.009C74.959 343.395 0 367.599 0 416c0 77.111 178.658 96 256 96 77.249 0 256-18.865 256-96 0-48.403-74.967-72.606-122.358-82.848z"] }; +var faStrikethrough = { prefix: 'fas', iconName: 'strikethrough', icon: [512, 512, [], "f0cc", "M496 288H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h480c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16zm-214.666 16c27.258 12.937 46.524 28.683 46.524 56.243 0 33.108-28.977 53.676-75.621 53.676-32.325 0-76.874-12.08-76.874-44.271V368c0-8.837-7.164-16-16-16H113.75c-8.836 0-16 7.163-16 16v19.204c0 66.845 77.717 101.82 154.487 101.82 88.578 0 162.013-45.438 162.013-134.424 0-19.815-3.618-36.417-10.143-50.6H281.334zm-30.952-96c-32.422-13.505-56.836-28.946-56.836-59.683 0-33.92 30.901-47.406 64.962-47.406 42.647 0 64.962 16.593 64.962 32.985V136c0 8.837 7.164 16 16 16h45.613c8.836 0 16-7.163 16-16v-30.318c0-52.438-71.725-79.875-142.575-79.875-85.203 0-150.726 40.972-150.726 125.646 0 22.71 4.665 41.176 12.777 56.547h129.823z"] }; +var faStroopwafel = { prefix: 'fas', iconName: 'stroopwafel', icon: [512, 512, [], "f551", "M188.12 210.74L142.86 256l45.25 45.25L233.37 256l-45.25-45.26zm113.13-22.62L256 142.86l-45.25 45.25L256 233.37l45.25-45.25zm-90.5 135.76L256 369.14l45.26-45.26L256 278.63l-45.25 45.25zM256 0C114.62 0 0 114.62 0 256s114.62 256 256 256 256-114.62 256-256S397.38 0 256 0zm186.68 295.6l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-28.29-28.29-45.25 45.25 33.94 33.94 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-33.94-33.94-45.26 45.26 28.29 28.29c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0L256 414.39l-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l28.29-28.29-45.25-45.26-33.94 33.94 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 33.94-33.94-45.25-45.25-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0L69.32 295.6c-3.12-3.12-3.12-8.19 0-11.31L97.61 256l-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l28.29 28.29 45.25-45.26-33.94-33.94-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 33.94 33.94 45.26-45.25-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0L256 97.61l28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-28.29 28.29 45.26 45.25 33.94-33.94-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-33.94 33.94 45.25 45.26 28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31L414.39 256l28.29 28.28a8.015 8.015 0 0 1 0 11.32zM278.63 256l45.26 45.25L369.14 256l-45.25-45.26L278.63 256z"] }; +var faSubscript = { prefix: 'fas', iconName: 'subscript', icon: [512, 512, [], "f12c", "M395.198 416c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 256c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 96H16C7.163 96 0 88.837 0 80V48c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035A15.999 15.999 0 0 1 204.226 32H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 256H272z"] }; +var faSubway = { prefix: 'fas', iconName: 'subway', icon: [448, 512, [], "f239", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zM200 232V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm200 0V120c0-13.255-10.745-24-24-24H272c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm-48 56c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm-256 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"] }; +var faSuitcase = { prefix: 'fas', iconName: 'suitcase', icon: [512, 512, [], "f0f2", "M128 480h256V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v400zm64-384h128v32H192V96zm320 80v256c0 26.5-21.5 48-48 48h-48V128h48c26.5 0 48 21.5 48 48zM96 480H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h48v352z"] }; +var faSuitcaseRolling = { prefix: 'fas', iconName: 'suitcase-rolling', icon: [384, 512, [], "f5c1", "M336 160H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h16v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h128v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h16c26.51 0 48-21.49 48-48V208c0-26.51-21.49-48-48-48zm-16 216c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zM144 48h96v80h48V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v80h48V48z"] }; +var faSun = { prefix: 'fas', iconName: 'sun', icon: [512, 512, [], "f185", "M274.835 12.646l25.516 62.393c4.213 10.301 16.671 14.349 26.134 8.492l57.316-35.479c15.49-9.588 34.808 4.447 30.475 22.142l-16.03 65.475c-2.647 10.81 5.053 21.408 16.152 22.231l67.224 4.987c18.167 1.348 25.546 24.057 11.641 35.826L441.81 242.26c-8.495 7.19-8.495 20.289 0 27.479l51.454 43.548c13.906 11.769 6.527 34.478-11.641 35.826l-67.224 4.987c-11.099.823-18.799 11.421-16.152 22.231l16.03 65.475c4.332 17.695-14.986 31.73-30.475 22.142l-57.316-35.479c-9.463-5.858-21.922-1.81-26.134 8.492l-25.516 62.393c-6.896 16.862-30.774 16.862-37.67 0l-25.516-62.393c-4.213-10.301-16.671-14.349-26.134-8.492l-57.317 35.479c-15.49 9.588-34.808-4.447-30.475-22.142l16.03-65.475c2.647-10.81-5.053-21.408-16.152-22.231l-67.224-4.987c-18.167-1.348-25.546-24.057-11.641-35.826L70.19 269.74c8.495-7.19 8.495-20.289 0-27.479l-51.454-43.548c-13.906-11.769-6.527-34.478 11.641-35.826l67.224-4.987c11.099-.823 18.799-11.421 16.152-22.231l-16.03-65.475c-4.332-17.695 14.986-31.73 30.475-22.142l57.317 35.479c9.463 5.858 21.921 1.81 26.134-8.492l25.516-62.393c6.896-16.861 30.774-16.861 37.67 0zM392 256c0-74.991-61.01-136-136-136-74.991 0-136 61.009-136 136s61.009 136 136 136c74.99 0 136-61.009 136-136zm-32 0c0 57.346-46.654 104-104 104s-104-46.654-104-104 46.654-104 104-104 104 46.654 104 104z"] }; +var faSuperscript = { prefix: 'fas', iconName: 'superscript', icon: [512, 512, [], "f12b", "M395.198 256c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 256H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035a16 16 0 0 1 13.598-7.567H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 416H272z"] }; +var faSurprise = { prefix: 'fas', iconName: 'surprise', icon: [496, 512, [], "f5c2", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm112 208c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm80-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faSwatchbook = { prefix: 'fas', iconName: 'swatchbook', icon: [511, 512, [], "f5c3", "M479.06 320H372.29L186.15 506.51c-2.06 2.07-4.49 3.58-6.67 5.49h299.58c17.64 0 31.94-14.33 31.94-32V352c0-17.67-14.3-32-31.94-32zm-44.5-152.9l-90.33-90.51c-12.47-12.5-32.69-12.5-45.17 0l-75.5 75.65V416c0 2.96-.67 5.73-.87 8.64l211.87-212.28c12.47-12.5 12.47-32.77 0-45.26zM191.62 32c0-17.67-14.3-32-31.94-32H31.94C14.3 0 0 14.33 0 32v384c0 53.02 42.9 96 95.81 96s95.81-42.98 95.81-96V32zM95.81 440c-13.23 0-23.95-10.75-23.95-24 0-13.26 10.73-24 23.95-24s23.95 10.74 23.95 24c.01 13.25-10.72 24-23.95 24zm31.94-184H63.88v-64h63.88v64zm0-128H63.88V64h63.88v64z"] }; +var faSwimmer = { prefix: 'fas', iconName: 'swimmer', icon: [640, 512, [], "f5c4", "M189.61 310.58c3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c16.02-14.77 34.5-22.58 53.46-22.58h16.3c18.96 0 37.45 7.81 53.46 22.58 3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c14.86-13.71 31.88-21.12 49.39-22.16l-112.84-80.6 18-12.86c3.64-2.58 8.28-3.52 12.62-2.61l100.35 21.53c25.91 5.53 51.44-10.97 57-36.88 5.55-25.92-10.95-51.44-36.88-57L437.68 98.47c-30.73-6.58-63.02.12-88.56 18.38l-80.02 57.17c-10.38 7.39-19.36 16.44-26.72 26.94L173.75 299c5.47 3.23 10.82 6.93 15.86 11.58zM624 352h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 343.58 442.04 352 416 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 343.58 250.04 352 224 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 343.58 58.04 352 32 352H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-512-96c44.18 0 80-35.82 80-80s-35.82-80-80-80-80 35.82-80 80 35.82 80 80 80z"] }; +var faSwimmingPool = { prefix: 'fas', iconName: 'swimming-pool', icon: [640, 512, [], "f5c5", "M624 416h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 407.58 442.04 416 416 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 407.58 250.04 416 224 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 407.58 58.04 416 32 416H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-400-32v-96h192v96c19.12 0 30.86-6.16 34.39-9.42 9.17-8.46 19.2-14.34 29.61-18.07V128c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v96H224v-96c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v228.5c10.41 3.73 20.44 9.62 29.61 18.07 3.53 3.27 15.27 9.43 34.39 9.43z"] }; +var faSync = { prefix: 'fas', iconName: 'sync', icon: [512, 512, [], "f021", "M440.935 12.574l3.966 82.766C399.416 41.904 331.674 8 256 8 134.813 8 33.933 94.924 12.296 209.824 10.908 217.193 16.604 224 24.103 224h49.084c5.57 0 10.377-3.842 11.676-9.259C103.407 137.408 172.931 80 256 80c60.893 0 114.512 30.856 146.104 77.801l-101.53-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12h-47.411c-6.853 0-12.315 5.729-11.987 12.574zM256 432c-60.895 0-114.517-30.858-146.109-77.805l101.868 4.871c6.845.327 12.573-5.134 12.573-11.986v-47.412c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12V500c0 6.627 5.373 12 12 12h47.385c6.863 0 12.328-5.745 11.985-12.599l-4.129-82.575C112.725 470.166 180.405 504 256 504c121.187 0 222.067-86.924 243.704-201.824 1.388-7.369-4.308-14.176-11.807-14.176h-49.084c-5.57 0-10.377 3.842-11.676 9.259C408.593 374.592 339.069 432 256 432z"] }; +var faSyncAlt = { prefix: 'fas', iconName: 'sync-alt', icon: [512, 512, [], "f2f1", "M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z"] }; +var faSyringe = { prefix: 'fas', iconName: 'syringe', icon: [512, 512, [], "f48e", "M201.5 174.8l55.7 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-55.7-55.8-45.3 45.3 55.8 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L111 265.2l-26.4 26.4c-17.3 17.3-25.6 41.1-23 65.4l7.1 63.6L2.3 487c-3.1 3.1-3.1 8.2 0 11.3l11.3 11.3c3.1 3.1 8.2 3.1 11.3 0l66.3-66.3 63.6 7.1c23.9 2.6 47.9-5.4 65.4-23l181.9-181.9-135.7-135.7-64.9 65zm308.2-93.3L430.5 2.3c-3.1-3.1-8.2-3.1-11.3 0l-11.3 11.3c-3.1 3.1-3.1 8.2 0 11.3l28.3 28.3-45.3 45.3-56.6-56.6-17-17c-3.1-3.1-8.2-3.1-11.3 0l-33.9 33.9c-3.1 3.1-3.1 8.2 0 11.3l17 17L424.8 223l17 17c3.1 3.1 8.2 3.1 11.3 0l33.9-34c3.1-3.1 3.1-8.2 0-11.3l-73.5-73.5 45.3-45.3 28.3 28.3c3.1 3.1 8.2 3.1 11.3 0l11.3-11.3c3.1-3.2 3.1-8.2 0-11.4z"] }; +var faTable = { prefix: 'fas', iconName: 'table', icon: [512, 512, [], "f0ce", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64v-96h160v96zm0-160H64v-96h160v96zm224 160H288v-96h160v96zm0-160H288v-96h160v96z"] }; +var faTableTennis = { prefix: 'fas', iconName: 'table-tennis', icon: [512, 512, [], "f45d", "M496.2 296.5C527.7 218.7 512 126.2 449 63.1 365.1-21 229-21 145.1 63.1l-56 56.1 211.5 211.5c46.1-62.1 131.5-77.4 195.6-34.2zm-217.9 79.7L57.9 155.9c-27.3 45.3-21.7 105 17.3 144.1l34.5 34.6L6.7 424c-8.6 7.5-9.1 20.7-1 28.8l53.4 53.5c8 8.1 21.2 7.6 28.7-1L177.1 402l35.7 35.7c19.7 19.7 44.6 30.5 70.3 33.3-7.1-17-11-35.6-11-55.1-.1-13.8 2.5-27 6.2-39.7zM416 320c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96z"] }; +var faTablet = { prefix: 'fas', iconName: 'tablet', icon: [448, 512, [], "f10a", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faTabletAlt = { prefix: 'fas', iconName: 'tablet-alt', icon: [448, 512, [], "f3fa", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm176-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h328c6.6 0 12 5.4 12 12v312z"] }; +var faTablets = { prefix: 'fas', iconName: 'tablets', icon: [640, 512, [], "f490", "M160 192C78.9 192 12.5 250.5.1 326.7c-.8 4.8 3.3 9.3 8.3 9.3h303.3c5 0 9.1-4.5 8.3-9.3C307.5 250.5 241.1 192 160 192zm151.6 176H8.4c-5 0-9.1 4.5-8.3 9.3C12.5 453.5 78.9 512 160 512s147.5-58.5 159.9-134.7c.8-4.8-3.3-9.3-8.3-9.3zM593.4 46.6c-56.5-56.5-144.2-61.4-206.9-16-4 2.9-4.3 8.9-.8 12.3L597 254.3c3.5 3.5 9.5 3.2 12.3-.8 45.5-62.7 40.6-150.4-15.9-206.9zM363 65.7c-3.5-3.5-9.5-3.2-12.3.8-45.4 62.7-40.5 150.4 15.9 206.9 56.5 56.5 144.2 61.4 206.9 15.9 4-2.9 4.3-8.9.8-12.3L363 65.7z"] }; +var faTachometerAlt = { prefix: 'fas', iconName: 'tachometer-alt', icon: [576, 512, [], "f3fd", "M75.694 480a48.02 48.02 0 0 1-42.448-25.571C12.023 414.3 0 368.556 0 320 0 160.942 128.942 32 288 32s288 128.942 288 288c0 48.556-12.023 94.3-33.246 134.429A48.018 48.018 0 0 1 500.306 480H75.694zM512 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zM288 128c17.673 0 32-14.327 32-32 0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32zM64 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm65.608-158.392c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm316.784 0c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm-87.078 31.534c-12.627-4.04-26.133 2.92-30.173 15.544l-45.923 143.511C250.108 322.645 224 350.264 224 384c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64 0-19.773-8.971-37.447-23.061-49.187l45.919-143.498c4.039-12.625-2.92-26.133-15.544-30.173z"] }; +var faTag = { prefix: 'fas', iconName: 'tag', icon: [512, 512, [], "f02b", "M0 252.118V48C0 21.49 21.49 0 48 0h204.118a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882L293.823 497.941c-18.745 18.745-49.137 18.745-67.882 0L14.059 286.059A48 48 0 0 1 0 252.118zM112 64c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"] }; +var faTags = { prefix: 'fas', iconName: 'tags', icon: [640, 512, [], "f02c", "M497.941 225.941L286.059 14.059A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v204.118a48 48 0 0 0 14.059 33.941l211.882 211.882c18.744 18.745 49.136 18.746 67.882 0l204.118-204.118c18.745-18.745 18.745-49.137 0-67.882zM112 160c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm513.941 133.823L421.823 497.941c-18.745 18.745-49.137 18.745-67.882 0l-.36-.36L527.64 323.522c16.999-16.999 26.36-39.6 26.36-63.64s-9.362-46.641-26.36-63.64L331.397 0h48.721a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882z"] }; +var faTape = { prefix: 'fas', iconName: 'tape', icon: [640, 512, [], "f4db", "M224 192c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm400 224H380.6c41.5-40.7 67.4-97.3 67.4-160 0-123.7-100.3-224-224-224S0 132.3 0 256s100.3 224 224 224h400c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400-64c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96z"] }; +var faTasks = { prefix: 'fas', iconName: 'tasks', icon: [512, 512, [], "f0ae", "M208 132h288c8.8 0 16-7.2 16-16V76c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zM64 368c-26.5 0-48.6 21.5-48.6 48s22.1 48 48.6 48 48-21.5 48-48-21.5-48-48-48zm92.5-299l-72.2 72.2-15.6 15.6c-4.7 4.7-12.9 4.7-17.6 0L3.5 109.4c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.3c4.7-4.7 12.3-4.7 17 0l17 16.5c4.6 4.7 4.6 12.3-.1 17zm0 159.6l-72.2 72.2-15.7 15.7c-4.7 4.7-12.9 4.7-17.6 0L3.5 269c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.7c4.7-4.7 12.3-4.7 17 0l17 17c4.6 4.6 4.6 12.2-.1 16.9z"] }; +var faTaxi = { prefix: 'fas', iconName: 'taxi', icon: [512, 512, [], "f1ba", "M462 241.64l-22-84.84c-9.6-35.2-41.6-60.8-76.8-60.8H352V64c0-17.67-14.33-32-32-32H192c-17.67 0-32 14.33-32 32v32h-11.2c-35.2 0-67.2 25.6-76.8 60.8l-22 84.84C21.41 248.04 0 273.47 0 304v48c0 23.63 12.95 44.04 32 55.12V448c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-40.88c19.05-11.09 32-31.5 32-55.12v-48c0-30.53-21.41-55.96-50-62.36zM96 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm20.55-112l17.2-66.36c2.23-8.16 9.59-13.64 15.06-13.64h214.4c5.47 0 12.83 5.48 14.85 12.86L395.45 240h-278.9zM416 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faTerminal = { prefix: 'fas', iconName: 'terminal', icon: [640, 512, [], "f120", "M257.981 272.971L63.638 467.314c-9.373 9.373-24.569 9.373-33.941 0L7.029 444.647c-9.357-9.357-9.375-24.522-.04-33.901L161.011 256 6.99 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L257.981 239.03c9.373 9.372 9.373 24.568 0 33.941zM640 456v-32c0-13.255-10.745-24-24-24H312c-13.255 0-24 10.745-24 24v32c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z"] }; +var faTextHeight = { prefix: 'fas', iconName: 'text-height', icon: [576, 512, [], "f034", "M16 32h288c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96h-54.761v320H232c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H88c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm475.308 4.685l79.995 80.001C581.309 126.693 574.297 144 559.99 144H512v224h48c15.639 0 20.635 17.991 11.313 27.314l-79.995 80.001c-6.247 6.247-16.381 6.245-22.626 0l-79.995-80.001C378.691 385.307 385.703 368 400.01 368H448V144h-48c-15.639 0-20.635-17.991-11.313-27.314l79.995-80.001c6.247-6.248 16.381-6.245 22.626 0z"] }; +var faTextWidth = { prefix: 'fas', iconName: 'text-width', icon: [448, 512, [], "f035", "M16 32h416c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96H261.743v128H296c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H152c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm427.315 340.682l-80.001-79.995C353.991 283.365 336 288.362 336 304v48H112v-47.99c0-14.307-17.307-21.319-27.314-11.313L4.685 372.692c-6.245 6.245-6.247 16.379 0 22.626l80.001 79.995C94.009 484.635 112 479.638 112 464v-48h224v47.99c0 14.307 17.307 21.319 27.314 11.313l80.001-79.995c6.245-6.245 6.248-16.379 0-22.626z"] }; +var faTh = { prefix: 'fas', iconName: 'th', icon: [512, 512, [], "f00a", "M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z"] }; +var faThLarge = { prefix: 'fas', iconName: 'th-large', icon: [512, 512, [], "f009", "M296 32h192c13.255 0 24 10.745 24 24v160c0 13.255-10.745 24-24 24H296c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24zm-80 0H24C10.745 32 0 42.745 0 56v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zM0 296v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm296 184h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H296c-13.255 0-24 10.745-24 24v160c0 13.255 10.745 24 24 24z"] }; +var faThList = { prefix: 'fas', iconName: 'th-list', icon: [512, 512, [], "f00b", "M149.333 216v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zM125.333 32H24C10.745 32 0 42.745 0 56v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zm80 448H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm-24-424v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24zm24 264H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24z"] }; +var faThermometer = { prefix: 'fas', iconName: 'thermometer', icon: [512, 512, [], "f491", "M476.8 20.4c-37.5-30.7-95.5-26.3-131.9 10.2l-45.7 46 50.5 50.5c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.4-50.5-45.1 45.4 50.3 50.4c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L209 167.4l-45.1 45.4L214 263c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.1-50.2L96 281.1V382L7 471c-9.4 9.4-9.4 24.6 0 33.9 9.4 9.4 24.6 9.4 33.9 0l89-89h99.9L484 162.6c34.9-34.9 42.2-101.5-7.2-142.2z"] }; +var faThermometerEmpty = { prefix: 'fas', iconName: 'thermometer-empty', icon: [256, 512, [], "f2cb", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; +var faThermometerFull = { prefix: 'fas', iconName: 'thermometer-full', icon: [256, 512, [], "f2c7", "M224 96c0-53.019-42.981-96-96-96S32 42.981 32 96v203.347C12.225 321.756.166 351.136.002 383.333c-.359 70.303 56.787 128.176 127.089 128.664.299.002.61.003.909.003 70.698 0 128-57.304 128-128 0-32.459-12.088-62.09-32-84.653V96zm-96 368l-.576-.002c-43.86-.304-79.647-36.544-79.423-80.42.173-33.98 19.266-51.652 31.999-66.08V96c0-26.467 21.533-48 48-48s48 21.533 48 48v221.498c12.63 14.312 32 32.164 32 66.502 0 44.112-35.888 80-80 80zm64-80c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V96c0-17.673 14.327-32 32-32s32 14.327 32 32v232.583c19.124 11.068 32 31.732 32 55.417z"] }; +var faThermometerHalf = { prefix: 'fas', iconName: 'thermometer-half', icon: [256, 512, [], "f2c9", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V224c0-17.673 14.327-32 32-32s32 14.327 32 32v104.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; +var faThermometerQuarter = { prefix: 'fas', iconName: 'thermometer-quarter', icon: [256, 512, [], "f2ca", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V288c0-17.673 14.327-32 32-32s32 14.327 32 32v40.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; +var faThermometerThreeQuarters = { prefix: 'fas', iconName: 'thermometer-three-quarters', icon: [256, 512, [], "f2c8", "M192 384c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-23.685 12.876-44.349 32-55.417V160c0-17.673 14.327-32 32-32s32 14.327 32 32v168.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; +var faThumbsDown = { prefix: 'fas', iconName: 'thumbs-down', icon: [512, 512, [], "f165", "M0 56v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56zm40 200c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24zm272 256c-20.183 0-29.485-39.293-33.931-57.795-5.206-21.666-10.589-44.07-25.393-58.902-32.469-32.524-49.503-73.967-89.117-113.111a11.98 11.98 0 0 1-3.558-8.521V59.901c0-6.541 5.243-11.878 11.783-11.998 15.831-.29 36.694-9.079 52.651-16.178C256.189 17.598 295.709.017 343.995 0h2.844c42.777 0 93.363.413 113.774 29.737 8.392 12.057 10.446 27.034 6.148 44.632 16.312 17.053 25.063 48.863 16.382 74.757 17.544 23.432 19.143 56.132 9.308 79.469l.11.11c11.893 11.949 19.523 31.259 19.439 49.197-.156 30.352-26.157 58.098-59.553 58.098H350.723C358.03 364.34 384 388.132 384 430.548 384 504 336 512 312 512z"] }; +var faThumbsUp = { prefix: 'fas', iconName: 'thumbs-up', icon: [512, 512, [], "f164", "M104 224H24c-13.255 0-24 10.745-24 24v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V248c0-13.255-10.745-24-24-24zM64 472c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zM384 81.452c0 42.416-25.97 66.208-33.277 94.548h101.723c33.397 0 59.397 27.746 59.553 58.098.084 17.938-7.546 37.249-19.439 49.197l-.11.11c9.836 23.337 8.237 56.037-9.308 79.469 8.681 25.895-.069 57.704-16.382 74.757 4.298 17.598 2.244 32.575-6.148 44.632C440.202 511.587 389.616 512 346.839 512l-2.845-.001c-48.287-.017-87.806-17.598-119.56-31.725-15.957-7.099-36.821-15.887-52.651-16.178-6.54-.12-11.783-5.457-11.783-11.998v-213.77c0-3.2 1.282-6.271 3.558-8.521 39.614-39.144 56.648-80.587 89.117-113.111 14.804-14.832 20.188-37.236 25.393-58.902C282.515 39.293 291.817 0 312 0c24 0 72 8 72 81.452z"] }; +var faThumbtack = { prefix: 'fas', iconName: 'thumbtack', icon: [384, 512, [], "f08d", "M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z"] }; +var faTicketAlt = { prefix: 'fas', iconName: 'ticket-alt', icon: [576, 512, [], "f3ff", "M128 160h320v192H128V160zm400 96c0 26.51 21.49 48 48 48v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c26.51 0 48-21.49 48-48s-21.49-48-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v96c-26.51 0-48 21.49-48 48zm-48-104c0-13.255-10.745-24-24-24H120c-13.255 0-24 10.745-24 24v208c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V152z"] }; +var faTimes = { prefix: 'fas', iconName: 'times', icon: [352, 512, [], "f00d", "M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"] }; +var faTimesCircle = { prefix: 'fas', iconName: 'times-circle', icon: [512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z"] }; +var faTint = { prefix: 'fas', iconName: 'tint', icon: [352, 512, [], "f043", "M205.22 22.09c-7.94-28.78-49.44-30.12-58.44 0C100.01 179.85 0 222.72 0 333.91 0 432.35 78.72 512 176 512s176-79.65 176-178.09c0-111.75-99.79-153.34-146.78-311.82zM176 448c-61.75 0-112-50.25-112-112 0-8.84 7.16-16 16-16s16 7.16 16 16c0 44.11 35.89 80 80 80 8.84 0 16 7.16 16 16s-7.16 16-16 16z"] }; +var faTintSlash = { prefix: 'fas', iconName: 'tint-slash', icon: [640, 512, [], "f5c7", "M633.82 458.1L494.97 350.78c.52-5.57 1.03-11.16 1.03-16.87 0-111.76-99.79-153.34-146.78-311.82-7.94-28.78-49.44-30.12-58.44 0-15.52 52.34-36.87 91.96-58.49 125.68L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM144 333.91C144 432.35 222.72 512 320 512c44.71 0 85.37-16.96 116.4-44.7L162.72 255.78c-11.41 23.5-18.72 48.35-18.72 78.13z"] }; +var faTired = { prefix: 'fas', iconName: 'tired', icon: [496, 512, [], "f5c8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 288c51.9 0 115.3 43.8 123.2 106.7 1.7 13.6-8 24.6-17.7 20.4-25.9-11.1-64.4-17.4-105.5-17.4s-79.6 6.3-105.5 17.4c-9.8 4.2-19.4-7-17.7-20.4C132.7 331.8 196.1 288 248 288z"] }; +var faToggleOff = { prefix: 'fas', iconName: 'toggle-off', icon: [576, 512, [], "f204", "M384 64H192C85.961 64 0 149.961 0 256s85.961 192 192 192h192c106.039 0 192-85.961 192-192S490.039 64 384 64zM64 256c0-70.741 57.249-128 128-128 70.741 0 128 57.249 128 128 0 70.741-57.249 128-128 128-70.741 0-128-57.249-128-128zm320 128h-48.905c65.217-72.858 65.236-183.12 0-256H384c70.741 0 128 57.249 128 128 0 70.74-57.249 128-128 128z"] }; +var faToggleOn = { prefix: 'fas', iconName: 'toggle-on', icon: [576, 512, [], "f205", "M576 256c0 106.039-85.961 192-192 192H192C85.961 448 0 362.039 0 256S85.961 64 192 64h192c106.039 0 192 85.961 192 192zM384 128c-70.741 0-128 57.249-128 128 0 70.741 57.249 128 128 128 70.741 0 128-57.249 128-128 0-70.741-57.249-128-128-128"] }; +var faToolbox = { prefix: 'fas', iconName: 'toolbox', icon: [512, 512, [], "f552", "M502.63 214.63l-45.25-45.25c-6-6-14.14-9.37-22.63-9.37H384V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v80H77.25c-8.49 0-16.62 3.37-22.63 9.37L9.37 214.63c-6 6-9.37 14.14-9.37 22.63V320h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-82.75c0-8.48-3.37-16.62-9.37-22.62zM320 160H192V96h128v64zm64 208c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H192v16c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H0v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96H384v16z"] }; +var faTooth = { prefix: 'fas', iconName: 'tooth', icon: [448, 512, [], "f5c9", "M443.98 96.25c-11.01-45.22-47.11-82.06-92.01-93.72-32.19-8.36-63 5.1-89.14 24.33-3.25 2.39-6.96 3.73-10.5 5.48l28.32 18.21c7.42 4.77 9.58 14.67 4.8 22.11-4.46 6.95-14.27 9.86-22.11 4.8L162.83 12.84c-20.7-10.85-43.38-16.4-66.81-10.31-44.9 11.67-81 48.5-92.01 93.72-10.13 41.62-.42 80.81 21.5 110.43 23.36 31.57 32.68 68.66 36.29 107.35 4.4 47.16 10.33 94.16 20.94 140.32l7.8 33.95c3.19 13.87 15.49 23.7 29.67 23.7 13.97 0 26.15-9.55 29.54-23.16l34.47-138.42c4.56-18.32 20.96-31.16 39.76-31.16s35.2 12.85 39.76 31.16l34.47 138.42c3.39 13.61 15.57 23.16 29.54 23.16 14.18 0 26.48-9.83 29.67-23.7l7.8-33.95c10.61-46.15 16.53-93.16 20.94-140.32 3.61-38.7 12.93-75.78 36.29-107.35 21.95-29.61 31.66-68.8 21.53-110.43z"] }; +var faTrademark = { prefix: 'fas', iconName: 'trademark', icon: [640, 512, [], "f25c", "M97.119 163.133H12c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h248.559c6.627 0 12 5.373 12 12v43.133c0 6.627-5.373 12-12 12H175.44V404c0 6.627-5.373 12-12 12h-54.322c-6.627 0-12-5.373-12-12V163.133zM329.825 96h65.425a12 12 0 0 1 11.346 8.093l43.759 127.068c7.161 20.588 16.111 52.812 16.111 52.812h.896s8.95-32.224 16.111-52.812l43.758-127.068A12 12 0 0 1 538.577 96h65.41a12 12 0 0 1 11.961 11.03l24.012 296c.567 6.987-4.951 12.97-11.961 12.97h-54.101a12 12 0 0 1-11.972-11.182l-9.082-132.93c-1.79-24.168 0-53.706 0-53.706h-.896s-10.741 33.566-17.902 53.706l-30.7 84.731a12 12 0 0 1-11.282 7.912h-50.302a12 12 0 0 1-11.282-7.912l-30.7-84.731c-7.161-20.14-17.903-53.706-17.903-53.706h-.895s1.79 29.538 0 53.706l-9.082 132.93c-.428 6.295-5.66 11.182-11.97 11.182H305.4c-7.017 0-12.536-5.994-11.959-12.987l24.425-296A11.999 11.999 0 0 1 329.825 96z"] }; +var faTrain = { prefix: 'fas', iconName: 'train', icon: [448, 512, [], "f238", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zm-48 136V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24zm-176 64c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56z"] }; +var faTransgender = { prefix: 'fas', iconName: 'transgender', icon: [384, 512, [], "f224", "M372 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C198.5 104.1 172.2 96 144 96 64.5 96 0 160.5 0 240c0 68.5 47.9 125.9 112 140.4V408H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM144 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faTransgenderAlt = { prefix: 'fas', iconName: 'transgender-alt', icon: [480, 512, [], "f225", "M468 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C294.5 104.1 268.2 96 240 96c-28.2 0-54.5 8.1-76.7 22.1l-16.5-16.5 19.8-19.8c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0l-19.8 19.8-19-19 16.9-16.9C107.1 12.9 101.7 0 91 0H12C5.4 0 0 5.4 0 12v79c0 10.7 12.9 16 20.5 8.5l16.9-16.9 19 19-19.8 19.8c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l19.8-19.8 16.5 16.5C104.1 185.5 96 211.8 96 240c0 68.5 47.9 125.9 112 140.4V408h-36c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM240 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faTrash = { prefix: 'fas', iconName: 'trash', icon: [448, 512, [], "f1f8", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm415.2 56.7L394.8 467c-1.6 25.3-22.6 45-47.9 45H101.1c-25.3 0-46.3-19.7-47.9-45L32.8 140.7c-.4-6.9 5.1-12.7 12-12.7h358.5c6.8 0 12.3 5.8 11.9 12.7z"] }; +var faTrashAlt = { prefix: 'fas', iconName: 'trash-alt', icon: [448, 512, [], "f2ed", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm416 56v324c0 26.5-21.5 48-48 48H80c-26.5 0-48-21.5-48-48V140c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12zm-272 68c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208z"] }; +var faTree = { prefix: 'fas', iconName: 'tree', icon: [384, 512, [], "f1bb", "M377.33 375.429L293.906 288H328c21.017 0 31.872-25.207 17.448-40.479L262.79 160H296c20.878 0 31.851-24.969 17.587-40.331l-104-112.003c-9.485-10.214-25.676-10.229-35.174 0l-104 112.003C56.206 134.969 67.037 160 88 160h33.21l-82.659 87.521C24.121 262.801 34.993 288 56 288h34.094L6.665 375.429C-7.869 390.655 2.925 416 24.025 416H144c0 32.781-11.188 49.26-33.995 67.506C98.225 492.93 104.914 512 120 512h144c15.086 0 21.776-19.069 9.995-28.494-19.768-15.814-33.992-31.665-33.995-67.496V416h119.97c21.05 0 31.929-25.309 17.36-40.571z"] }; +var faTrophy = { prefix: 'fas', iconName: 'trophy', icon: [576, 512, [], "f091", "M552 64H448V24c0-13.3-10.7-24-24-24H152c-13.3 0-24 10.7-24 24v40H24C10.7 64 0 74.7 0 88v56c0 35.7 22.5 72.4 61.9 100.7 31.5 22.7 69.8 37.1 110 41.7C203.3 338.5 240 360 240 360v72h-48c-35.3 0-64 20.7-64 56v12c0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12v-12c0-35.3-28.7-56-64-56h-48v-72s36.7-21.5 68.1-73.6c40.3-4.6 78.6-19 110-41.7 39.3-28.3 61.9-65 61.9-100.7V88c0-13.3-10.7-24-24-24zM99.3 192.8C74.9 175.2 64 155.6 64 144v-16h64.2c1 32.6 5.8 61.2 12.8 86.2-15.1-5.2-29.2-12.4-41.7-21.4zM512 144c0 16.1-17.7 36.1-35.3 48.8-12.5 9-26.7 16.2-41.8 21.4 7-25 11.8-53.6 12.8-86.2H512v16z"] }; +var faTruck = { prefix: 'fas', iconName: 'truck', icon: [640, 512, [], "f0d1", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"] }; +var faTruckLoading = { prefix: 'fas', iconName: 'truck-loading', icon: [640, 512, [], "f4de", "M50.2 375.6c2.3 8.5 11.1 13.6 19.6 11.3l216.4-58c8.5-2.3 13.6-11.1 11.3-19.6l-49.7-185.5c-2.3-8.5-11.1-13.6-19.6-11.3L151 133.3l24.8 92.7-61.8 16.5-24.8-92.7-77.3 20.7C3.4 172.8-1.7 181.6.6 190.1l49.6 185.5zM384 0c-17.7 0-32 14.3-32 32v323.6L5.9 450c-4.3 1.2-6.8 5.6-5.6 9.8l12.6 46.3c1.2 4.3 5.6 6.8 9.8 5.6l393.7-107.4C418.8 464.1 467.6 512 528 512c61.9 0 112-50.1 112-112V0H384zm144 448c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; +var faTruckMoving = { prefix: 'fas', iconName: 'truck-moving', icon: [640, 512, [], "f4df", "M621.3 237.3l-58.5-58.5c-12-12-28.3-18.7-45.3-18.7H480V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v336c0 44.2 35.8 80 80 80 26.3 0 49.4-12.9 64-32.4 14.6 19.6 37.7 32.4 64 32.4 44.2 0 80-35.8 80-80 0-5.5-.6-10.8-1.6-16h163.2c-1.1 5.2-1.6 10.5-1.6 16 0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H624c8.8 0 16-7.2 16-16v-85.5c0-17-6.7-33.2-18.7-45.2zM80 432c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm128 0c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm272-224h37.5c4.3 0 8.3 1.7 11.3 4.7l43.3 43.3H480v-48zm48 224c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32z"] }; +var faTshirt = { prefix: 'fas', iconName: 'tshirt', icon: [640, 512, [], "f553", "M631.2 96.5L436.5 0C416.4 27.8 371.9 47.2 320 47.2S223.6 27.8 203.5 0L8.8 96.5c-7.9 4-11.1 13.6-7.2 21.5l57.2 114.5c4 7.9 13.6 11.1 21.5 7.2l56.6-27.7c10.6-5.2 23 2.5 23 14.4V480c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V226.3c0-11.8 12.4-19.6 23-14.4l56.6 27.7c7.9 4 17.5.8 21.5-7.2L638.3 118c4-7.9.8-17.6-7.1-21.5z"] }; +var faTty = { prefix: 'fas', iconName: 'tty', icon: [512, 512, [], "f1e4", "M5.37 103.822c138.532-138.532 362.936-138.326 501.262 0 6.078 6.078 7.074 15.496 2.583 22.681l-43.214 69.138a18.332 18.332 0 0 1-22.356 7.305l-86.422-34.569a18.335 18.335 0 0 1-11.434-18.846L351.741 90c-62.145-22.454-130.636-21.986-191.483 0l5.953 59.532a18.331 18.331 0 0 1-11.434 18.846l-86.423 34.568a18.334 18.334 0 0 1-22.356-7.305L2.787 126.502a18.333 18.333 0 0 1 2.583-22.68zM96 308v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H92c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zM96 500v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H140c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"] }; +var faTv = { prefix: 'fas', iconName: 'tv', icon: [640, 512, [], "f26c", "M592 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h245.1v32h-160c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32-14.3 32-32s-14.3-32-32-32h-160v-32H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h512v288z"] }; +var faUmbrella = { prefix: 'fas', iconName: 'umbrella', icon: [576, 512, [], "f0e9", "M557.011 267.631c-51.432-45.217-107.572-43.698-158.567 30.731-5.298 7.861-14.906 7.165-19.736 0-2.483-3.624-32.218-60.808-90.708-60.808-45.766 0-70.542 31.378-90.709 60.808-4.829 7.165-14.436 7.861-19.734 0-50.904-74.285-106.613-76.406-158.567-30.731-10.21 8.264-20.912-1.109-18.696-9.481C32.146 134.573 158.516 64.612 288.001 64.612c128.793 0 256.546 69.961 287.706 193.538 2.206 8.322-8.426 17.793-18.696 9.481zM256 261.001V416c0 17.645-14.355 32-32 32s-32-14.355-32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 52.935 43.065 96 96 96s96-43.065 96-96V261.288c-21.836-10.806-45.425-9.737-64-.287zm64-211.007V32c0-17.673-14.327-32-32-32s-32 14.327-32 32v17.987a372.105 372.105 0 0 1 64 .007z"] }; +var faUmbrellaBeach = { prefix: 'fas', iconName: 'umbrella-beach', icon: [640, 512, [], "f5ca", "M115.38 136.9l102.11 37.18c35.19-81.54 86.21-144.29 139-173.7-95.88-4.89-188.78 36.96-248.53 111.8-6.69 8.4-2.66 21.05 7.42 24.72zm132.25 48.16l238.48 86.83c35.76-121.38 18.7-231.66-42.63-253.98-7.4-2.7-15.13-4-23.09-4-58.02.01-128.27 69.17-172.76 171.15zM521.48 60.5c6.22 16.3 10.83 34.6 13.2 55.19 5.74 49.89-1.42 108.23-18.95 166.98l102.62 37.36c10.09 3.67 21.31-3.43 21.57-14.17 2.32-95.69-41.91-187.44-118.44-245.36zM560 447.98H321.06L386 269.5l-60.14-21.9-72.9 200.37H16c-8.84 0-16 7.16-16 16.01v32.01C0 504.83 7.16 512 16 512h544c8.84 0 16-7.17 16-16.01v-32.01c0-8.84-7.16-16-16-16z"] }; +var faUnderline = { prefix: 'fas', iconName: 'underline', icon: [448, 512, [], "f0cd", "M224.264 388.24c-91.669 0-156.603-51.165-156.603-151.392V64H39.37c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h137.39c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.813v172.848c0 53.699 28.314 79.444 76.317 79.444 46.966 0 75.796-25.434 75.796-79.965V64h-28.291c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h136.868c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.291v172.848c0 99.405-64.881 151.392-156.082 151.392zM16 448h416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16z"] }; +var faUndo = { prefix: 'fas', iconName: 'undo', icon: [512, 512, [], "f0e2", "M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z"] }; +var faUndoAlt = { prefix: 'fas', iconName: 'undo-alt', icon: [512, 512, [], "f2ea", "M255.545 8c-66.269.119-126.438 26.233-170.86 68.685L48.971 40.971C33.851 25.851 8 36.559 8 57.941V192c0 13.255 10.745 24 24 24h134.059c21.382 0 32.09-25.851 16.971-40.971l-41.75-41.75c30.864-28.899 70.801-44.907 113.23-45.273 92.398-.798 170.283 73.977 169.484 169.442C423.236 348.009 349.816 424 256 424c-41.127 0-79.997-14.678-110.63-41.556-4.743-4.161-11.906-3.908-16.368.553L89.34 422.659c-4.872 4.872-4.631 12.815.482 17.433C133.798 479.813 192.074 504 256 504c136.966 0 247.999-111.033 248-247.998C504.001 119.193 392.354 7.755 255.545 8z"] }; +var faUniversalAccess = { prefix: 'fas', iconName: 'universal-access', icon: [512, 512, [], "f29a", "M256 48c114.953 0 208 93.029 208 208 0 114.953-93.029 208-208 208-114.953 0-208-93.029-208-208 0-114.953 93.029-208 208-208m0-40C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 56C149.961 64 64 149.961 64 256s85.961 192 192 192 192-85.961 192-192S362.039 64 256 64zm0 44c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36zm117.741 98.023c-28.712 6.779-55.511 12.748-82.14 15.807.851 101.023 12.306 123.052 25.037 155.621 3.617 9.26-.957 19.698-10.217 23.315-9.261 3.617-19.699-.957-23.316-10.217-8.705-22.308-17.086-40.636-22.261-78.549h-9.686c-5.167 37.851-13.534 56.208-22.262 78.549-3.615 9.255-14.05 13.836-23.315 10.217-9.26-3.617-13.834-14.056-10.217-23.315 12.713-32.541 24.185-54.541 25.037-155.621-26.629-3.058-53.428-9.027-82.141-15.807-8.6-2.031-13.926-10.648-11.895-19.249s10.647-13.926 19.249-11.895c96.686 22.829 124.283 22.783 220.775 0 8.599-2.03 17.218 3.294 19.249 11.895 2.029 8.601-3.297 17.219-11.897 19.249z"] }; +var faUniversity = { prefix: 'fas', iconName: 'university', icon: [512, 512, [], "f19c", "M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z"] }; +var faUnlink = { prefix: 'fas', iconName: 'unlink', icon: [512, 512, [], "f127", "M304.083 405.907c4.686 4.686 4.686 12.284 0 16.971l-44.674 44.674c-59.263 59.262-155.693 59.266-214.961 0-59.264-59.265-59.264-155.696 0-214.96l44.675-44.675c4.686-4.686 12.284-4.686 16.971 0l39.598 39.598c4.686 4.686 4.686 12.284 0 16.971l-44.675 44.674c-28.072 28.073-28.072 73.75 0 101.823 28.072 28.072 73.75 28.073 101.824 0l44.674-44.674c4.686-4.686 12.284-4.686 16.971 0l39.597 39.598zm-56.568-260.216c4.686 4.686 12.284 4.686 16.971 0l44.674-44.674c28.072-28.075 73.75-28.073 101.824 0 28.072 28.073 28.072 73.75 0 101.823l-44.675 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.598 39.598c4.686 4.686 12.284 4.686 16.971 0l44.675-44.675c59.265-59.265 59.265-155.695 0-214.96-59.266-59.264-155.695-59.264-214.961 0l-44.674 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.597 39.598zm234.828 359.28l22.627-22.627c9.373-9.373 9.373-24.569 0-33.941L63.598 7.029c-9.373-9.373-24.569-9.373-33.941 0L7.029 29.657c-9.373 9.373-9.373 24.569 0 33.941l441.373 441.373c9.373 9.372 24.569 9.372 33.941 0z"] }; +var faUnlock = { prefix: 'fas', iconName: 'unlock', icon: [448, 512, [], "f09c", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z"] }; +var faUnlockAlt = { prefix: 'fas', iconName: 'unlock-alt', icon: [448, 512, [], "f13e", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zM264 408c0 22.1-17.9 40-40 40s-40-17.9-40-40v-48c0-22.1 17.9-40 40-40s40 17.9 40 40v48z"] }; +var faUpload = { prefix: 'fas', iconName: 'upload', icon: [512, 512, [], "f093", "M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"] }; +var faUser = { prefix: 'fas', iconName: 'user', icon: [448, 512, [], "f007", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; +var faUserAlt = { prefix: 'fas', iconName: 'user-alt', icon: [512, 512, [], "f406", "M256 288c79.5 0 144-64.5 144-144S335.5 0 256 0 112 64.5 112 144s64.5 144 144 144zm128 32h-55.1c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16H128C57.3 320 0 377.3 0 448v16c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-16c0-70.7-57.3-128-128-128z"] }; +var faUserAltSlash = { prefix: 'fas', iconName: 'user-alt-slash', icon: [640, 512, [], "f4fa", "M633.8 458.1L389.6 269.3C433.8 244.7 464 198.1 464 144 464 64.5 399.5 0 320 0c-67.1 0-123 46.1-139 108.2L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM198.4 320C124.2 320 64 380.2 64 454.4v9.6c0 26.5 21.5 48 48 48h382.2L245.8 320h-47.4z"] }; +var faUserAstronaut = { prefix: 'fas', iconName: 'user-astronaut', icon: [448, 512, [], "f4fb", "M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z"] }; +var faUserCheck = { prefix: 'fas', iconName: 'user-check', icon: [640, 512, [], "f4fc", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4zm323-128.4l-27.8-28.1c-4.6-4.7-12.1-4.7-16.8-.1l-104.8 104-45.5-45.8c-4.6-4.7-12.1-4.7-16.8-.1l-28.1 27.9c-4.7 4.6-4.7 12.1-.1 16.8l81.7 82.3c4.6 4.7 12.1 4.7 16.8.1l141.3-140.2c4.6-4.7 4.7-12.2.1-16.8z"] }; +var faUserCircle = { prefix: 'fas', iconName: 'user-circle', icon: [496, 512, [], "f2bd", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 96c48.6 0 88 39.4 88 88s-39.4 88-88 88-88-39.4-88-88 39.4-88 88-88zm0 344c-58.7 0-111.3-26.6-146.5-68.2 18.8-35.4 55.6-59.8 98.5-59.8 2.4 0 4.8.4 7.1 1.1 13 4.2 26.6 6.9 40.9 6.9 14.3 0 28-2.7 40.9-6.9 2.3-.7 4.7-1.1 7.1-1.1 42.9 0 79.7 24.4 98.5 59.8C359.3 421.4 306.7 448 248 448z"] }; +var faUserClock = { prefix: 'fas', iconName: 'user-clock', icon: [640, 512, [], "f4fd", "M496 224c-79.6 0-144 64.4-144 144s64.4 144 144 144 144-64.4 144-144-64.4-144-144-144zm64 150.3c0 5.3-4.4 9.7-9.7 9.7h-60.6c-5.3 0-9.7-4.4-9.7-9.7v-76.6c0-5.3 4.4-9.7 9.7-9.7h12.6c5.3 0 9.7 4.4 9.7 9.7V352h38.3c5.3 0 9.7 4.4 9.7 9.7v12.6zM320 368c0-27.8 6.7-54.1 18.2-77.5-8-1.5-16.2-2.5-24.6-2.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h347.1c-45.3-31.9-75.1-84.5-75.1-144zm-96-112c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128z"] }; +var faUserCog = { prefix: 'fas', iconName: 'user-cog', icon: [640, 512, [], "f4fe", "M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z"] }; +var faUserEdit = { prefix: 'fas', iconName: 'user-edit', icon: [640, 512, [], "f4ff", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h274.9c-2.4-6.8-3.4-14-2.6-21.3l6.8-60.9 1.2-11.1 7.9-7.9 77.3-77.3c-24.5-27.7-60-45.5-99.9-45.5zm45.3 145.3l-6.8 61c-1.1 10.2 7.5 18.8 17.6 17.6l60.9-6.8 137.9-137.9-71.7-71.7-137.9 137.8zM633 268.9L595.1 231c-9.3-9.3-24.5-9.3-33.8 0l-37.8 37.8-4.1 4.1 71.8 71.7 41.8-41.8c9.3-9.4 9.3-24.5 0-33.9z"] }; +var faUserFriends = { prefix: 'fas', iconName: 'user-friends', icon: [640, 512, [], "f500", "M192 256c61.9 0 112-50.1 112-112S253.9 32 192 32 80 82.1 80 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C51.6 288 0 339.6 0 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zM480 256c53 0 96-43 96-96s-43-96-96-96-96 43-96 96 43 96 96 96zm48 32h-3.8c-13.9 4.8-28.6 8-44.2 8s-30.3-3.2-44.2-8H432c-20.4 0-39.2 5.9-55.7 15.4 24.4 26.3 39.7 61.2 39.7 99.8v38.4c0 2.2-.5 4.3-.6 6.4H592c26.5 0 48-21.5 48-48 0-61.9-50.1-112-112-112z"] }; +var faUserGraduate = { prefix: 'fas', iconName: 'user-graduate', icon: [448, 512, [], "f501", "M319.4 320.6L224 416l-95.4-95.4C57.1 323.7 0 382.2 0 454.4v9.6c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-9.6c0-72.2-57.1-130.7-128.6-133.8zM13.6 79.8l6.4 1.5v58.4c-7 4.2-12 11.5-12 20.3 0 8.4 4.6 15.4 11.1 19.7L3.5 242c-1.7 6.9 2.1 14 7.6 14h41.8c5.5 0 9.3-7.1 7.6-14l-15.6-62.3C51.4 175.4 56 168.4 56 160c0-8.8-5-16.1-12-20.3V87.1l66 15.9c-8.6 17.2-14 36.4-14 57 0 70.7 57.3 128 128 128s128-57.3 128-128c0-20.6-5.3-39.8-14-57l96.3-23.2c18.2-4.4 18.2-27.1 0-31.5l-190.4-46c-13-3.1-26.7-3.1-39.7 0L13.6 48.2c-18.1 4.4-18.1 27.2 0 31.6z"] }; +var faUserLock = { prefix: 'fas', iconName: 'user-lock', icon: [640, 512, [], "f502", "M320 320c0-11.1 3.1-21.4 8.1-30.5-4.8-.5-9.5-1.5-14.5-1.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h280.9c-5.5-9.5-8.9-20.3-8.9-32V320zm-96-64c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm384 32h-32v-48c0-44.2-35.8-80-80-80s-80 35.8-80 80v48h-32c-17.7 0-32 14.3-32 32v160c0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32V320c0-17.7-14.3-32-32-32zm-80 0h-64v-48c0-17.6 14.4-32 32-32s32 14.4 32 32v48z"] }; +var faUserMd = { prefix: 'fas', iconName: 'user-md', icon: [448, 512, [], "f0f0", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zM104 424c0 13.3 10.7 24 24 24s24-10.7 24-24-10.7-24-24-24-24 10.7-24 24zm216-135.4v49c36.5 7.4 64 39.8 64 78.4v41.7c0 7.6-5.4 14.2-12.9 15.7l-32.2 6.4c-4.3.9-8.5-1.9-9.4-6.3l-3.1-15.7c-.9-4.3 1.9-8.6 6.3-9.4l19.3-3.9V416c0-62.8-96-65.1-96 1.9v26.7l19.3 3.9c4.3.9 7.1 5.1 6.3 9.4l-3.1 15.7c-.9 4.3-5.1 7.1-9.4 6.3l-31.2-4.2c-7.9-1.1-13.8-7.8-13.8-15.9V416c0-38.6 27.5-70.9 64-78.4v-45.2c-2.2.7-4.4 1.1-6.6 1.9-18 6.3-37.3 9.8-57.4 9.8s-39.4-3.5-57.4-9.8c-7.4-2.6-14.9-4.2-22.6-5.2v81.6c23.1 6.9 40 28.1 40 53.4 0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.3 16.9-46.5 40-53.4v-80.4C48.5 301 0 355.8 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-72-56.8-130.3-128-133.8z"] }; +var faUserMinus = { prefix: 'fas', iconName: 'user-minus', icon: [640, 512, [], "f503", "M624 208H432c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; +var faUserNinja = { prefix: 'fas', iconName: 'user-ninja', icon: [448, 512, [], "f504", "M325.4 289.2L224 390.6 122.6 289.2C54 295.3 0 352.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-70.2-54-127.1-122.6-133.2zM32 192c27.3 0 51.8-11.5 69.2-29.7 15.1 53.9 64 93.7 122.8 93.7 70.7 0 128-57.3 128-128S294.7 0 224 0c-50.4 0-93.6 29.4-114.5 71.8C92.1 47.8 64 32 32 32c0 33.4 17.1 62.8 43.1 80-26 17.2-43.1 46.6-43.1 80zm144-96h96c17.7 0 32 14.3 32 32H144c0-17.7 14.3-32 32-32z"] }; +var faUserPlus = { prefix: 'fas', iconName: 'user-plus', icon: [640, 512, [], "f234", "M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; +var faUserSecret = { prefix: 'fas', iconName: 'user-secret', icon: [448, 512, [], "f21b", "M383.9 308.3l23.9-62.6c4-10.5-3.7-21.7-15-21.7h-58.5c11-18.9 17.8-40.6 17.8-64v-.3c39.2-7.8 64-19.1 64-31.7 0-13.3-27.3-25.1-70.1-33-9.2-32.8-27-65.8-40.6-82.8-9.5-11.9-25.9-15.6-39.5-8.8l-27.6 13.8c-9 4.5-19.6 4.5-28.6 0L182.1 3.4c-13.6-6.8-30-3.1-39.5 8.8-13.5 17-31.4 50-40.6 82.8-42.7 7.9-70 19.7-70 33 0 12.6 24.8 23.9 64 31.7v.3c0 23.4 6.8 45.1 17.8 64H56.3c-11.5 0-19.2 11.7-14.7 22.3l25.8 60.2C27.3 329.8 0 372.7 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-48.4-25.8-90.4-64.1-114.1zM176 480l-41.6-192 49.6 32 24 40-32 120zm96 0l-32-120 24-40 49.6-32L272 480zm41.7-298.5c-3.9 11.9-7 24.6-16.5 33.4-10.1 9.3-48 22.4-64-25-2.8-8.4-15.4-8.4-18.3 0-17 50.2-56 32.4-64 25-9.5-8.8-12.7-21.5-16.5-33.4-.8-2.5-6.3-5.7-6.3-5.8v-10.8c28.3 3.6 61 5.8 96 5.8s67.7-2.1 96-5.8v10.8c-.1.1-5.6 3.2-6.4 5.8z"] }; +var faUserShield = { prefix: 'fas', iconName: 'user-shield', icon: [640, 512, [], "f505", "M622.3 271.1l-115.2-45c-4.1-1.6-12.6-3.7-22.2 0l-115.2 45c-10.7 4.2-17.7 14-17.7 24.9 0 111.6 68.7 188.8 132.9 213.9 9.6 3.7 18 1.6 22.2 0C558.4 489.9 640 420.5 640 296c0-10.9-7-20.7-17.7-24.9zM496 462.4V273.3l95.5 37.3c-5.6 87.1-60.9 135.4-95.5 151.8zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm96 40c0-2.5.8-4.8 1.1-7.2-2.5-.1-4.9-.8-7.5-.8h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c6.8 0 13.3-1.5 19.2-4-54-42.9-99.2-116.7-99.2-212z"] }; +var faUserSlash = { prefix: 'fas', iconName: 'user-slash', icon: [640, 512, [], "f506", "M633.8 458.1L362.3 248.3C412.1 230.7 448 183.8 448 128 448 57.3 390.7 0 320 0c-67.1 0-121.5 51.8-126.9 117.4L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM96 422.4V464c0 26.5 21.5 48 48 48h350.2L207.4 290.3C144.2 301.3 96 356 96 422.4z"] }; +var faUserTag = { prefix: 'fas', iconName: 'user-tag', icon: [640, 512, [], "f507", "M630.6 364.9l-90.3-90.2c-12-12-28.3-18.7-45.3-18.7h-79.3c-17.7 0-32 14.3-32 32v79.2c0 17 6.7 33.2 18.7 45.2l90.3 90.2c12.5 12.5 32.8 12.5 45.3 0l92.5-92.5c12.6-12.5 12.6-32.7.1-45.2zm-182.8-21c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24c0 13.2-10.7 24-24 24zm-223.8-88c70.7 0 128-57.3 128-128C352 57.3 294.7 0 224 0S96 57.3 96 128c0 70.6 57.3 127.9 128 127.9zm127.8 111.2V294c-12.2-3.6-24.9-6.2-38.2-6.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 287.9 0 348.1 0 422.3v41.6c0 26.5 21.5 48 48 48h352c15.5 0 29.1-7.5 37.9-18.9l-58-58c-18.1-18.1-28.1-42.2-28.1-67.9z"] }; +var faUserTie = { prefix: 'fas', iconName: 'user-tie', icon: [448, 512, [], "f508", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm95.8 32.6L272 480l-32-136 32-56h-96l32 56-32 136-47.8-191.4C56.9 292 0 350.3 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-72.1-56.9-130.4-128.2-133.8z"] }; +var faUserTimes = { prefix: 'fas', iconName: 'user-times', icon: [640, 512, [], "f235", "M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; +var faUsers = { prefix: 'fas', iconName: 'users', icon: [640, 512, [], "f0c0", "M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"] }; +var faUsersCog = { prefix: 'fas', iconName: 'users-cog', icon: [640, 512, [], "f509", "M610.5 341.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 368.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm224 32c1.9 0 3.7-.5 5.6-.6 8.3-21.7 20.5-42.1 36.3-59.2 7.4-8 17.9-12.6 28.9-12.6 6.9 0 13.7 1.8 19.6 5.3l7.9 4.6c.8-.5 1.6-.9 2.4-1.4 7-14.6 11.2-30.8 11.2-48 0-61.9-50.1-112-112-112S208 82.1 208 144c0 61.9 50.1 112 112 112zm105.2 194.5c-2.3-1.2-4.6-2.6-6.8-3.9-8.2 4.8-15.3 9.8-27.5 9.8-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-10.7-34.5 24.9-49.7 25.8-50.3-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-3.8-2.2-7-5-9.8-8.1-3.3.2-6.5.6-9.8.6-24.6 0-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h255.4c-3.7-6-6.2-12.8-6.2-20.3v-9.2zM173.1 274.6C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"] }; +var faUtensilSpoon = { prefix: 'fas', iconName: 'utensil-spoon', icon: [512, 512, [], "f2e5", "M480.1 31.9c-55-55.1-164.9-34.5-227.8 28.5-49.3 49.3-55.1 110-28.8 160.4L9 413.2c-11.6 10.5-12.1 28.5-1 39.5L59.3 504c11 11 29.1 10.5 39.5-1.1l192.4-214.4c50.4 26.3 111.1 20.5 160.4-28.8 63-62.9 83.6-172.8 28.5-227.8z"] }; +var faUtensils = { prefix: 'fas', iconName: 'utensils', icon: [416, 512, [], "f2e7", "M207.9 15.2c.8 4.7 16.1 94.5 16.1 128.8 0 52.3-27.8 89.6-68.9 104.6L168 486.7c.7 13.7-10.2 25.3-24 25.3H80c-13.7 0-24.7-11.5-24-25.3l12.9-238.1C27.7 233.6 0 196.2 0 144 0 109.6 15.3 19.9 16.1 15.2 19.3-5.1 61.4-5.4 64 16.3v141.2c1.3 3.4 15.1 3.2 16 0 1.4-25.3 7.9-139.2 8-141.8 3.3-20.8 44.7-20.8 47.9 0 .2 2.7 6.6 116.5 8 141.8.9 3.2 14.8 3.4 16 0V16.3c2.6-21.6 44.8-21.4 48-1.1zm119.2 285.7l-15 185.1c-1.2 14 9.9 26 23.9 26h56c13.3 0 24-10.7 24-24V24c0-13.2-10.7-24-24-24-82.5 0-221.4 178.5-64.9 300.9z"] }; +var faVectorSquare = { prefix: 'fas', iconName: 'vector-square', icon: [512, 512, [], "f5cb", "M512 128V32c0-17.67-14.33-32-32-32h-96c-17.67 0-32 14.33-32 32H160c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32v192c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32h192c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32V160c17.67 0 32-14.33 32-32zm-96-64h32v32h-32V64zM64 64h32v32H64V64zm32 384H64v-32h32v32zm352 0h-32v-32h32v32zm-32-96h-32c-17.67 0-32 14.33-32 32v32H160v-32c0-17.67-14.33-32-32-32H96V160h32c17.67 0 32-14.33 32-32V96h192v32c0 17.67 14.33 32 32 32h32v192z"] }; +var faVenus = { prefix: 'fas', iconName: 'venus', icon: [288, 512, [], "f221", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z"] }; +var faVenusDouble = { prefix: 'fas', iconName: 'venus-double', icon: [512, 512, [], "f226", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80zm336 140.4V368h36c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-36v36c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-36h-36c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h36v-51.6c-21.2-4.8-40.6-14.3-57.2-27.3 14-16.7 25-36 32.1-57.1 14.5 14.8 34.7 24 57.1 24 44.1 0 80-35.9 80-80s-35.9-80-80-80c-22.3 0-42.6 9.2-57.1 24-7.1-21.1-18-40.4-32.1-57.1C303.4 43.6 334.3 32 368 32c79.5 0 144 64.5 144 144 0 68.5-47.9 125.9-112 140.4z"] }; +var faVenusMars = { prefix: 'fas', iconName: 'venus-mars', icon: [576, 512, [], "f228", "M564 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C422.5 72.1 396.2 64 368 64c-33.7 0-64.6 11.6-89.2 30.9 14 16.7 25 36 32.1 57.1 14.5-14.8 34.7-24 57.1-24 44.1 0 80 35.9 80 80s-35.9 80-80 80c-22.3 0-42.6-9.2-57.1-24-7.1 21.1-18 40.4-32.1 57.1 24.5 19.4 55.5 30.9 89.2 30.9 79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 64C64.5 64 0 128.5 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.6 112-71.9 112-140.4 0-79.5-64.5-144-144-144zm0 224c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faVial = { prefix: 'fas', iconName: 'vial', icon: [480, 512, [], "f492", "M477.7 186.1L309.5 18.3c-3.1-3.1-8.2-3.1-11.3 0l-34 33.9c-3.1 3.1-3.1 8.2 0 11.3l11.2 11.1L33 316.5c-38.8 38.7-45.1 102-9.4 143.5 20.6 24 49.5 36 78.4 35.9 26.4 0 52.8-10 72.9-30.1l246.3-245.7 11.2 11.1c3.1 3.1 8.2 3.1 11.3 0l34-33.9c3.1-3 3.1-8.1 0-11.2zM318 256H161l148-147.7 78.5 78.3L318 256z"] }; +var faVials = { prefix: 'fas', iconName: 'vials', icon: [640, 512, [], "f493", "M72 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H72c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64zm480 384H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM360 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64z"] }; +var faVideo = { prefix: 'fas', iconName: 'video', icon: [576, 512, [], "f03d", "M336.2 64H47.8C21.4 64 0 85.4 0 111.8v288.4C0 426.6 21.4 448 47.8 448h288.4c26.4 0 47.8-21.4 47.8-47.8V111.8c0-26.4-21.4-47.8-47.8-47.8zm189.4 37.7L416 177.3v157.4l109.6 75.5c21.2 14.6 50.4-.3 50.4-25.8V127.5c0-25.4-29.1-40.4-50.4-25.8z"] }; +var faVideoSlash = { prefix: 'fas', iconName: 'video-slash', icon: [640, 512, [], "f4e2", "M633.8 458.1l-55-42.5c15.4-1.4 29.2-13.7 29.2-31.1v-257c0-25.5-29.1-40.4-50.4-25.8L448 177.3v137.2l-32-24.7v-178c0-26.4-21.4-47.8-47.8-47.8H123.9L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4L42.7 82 416 370.6l178.5 138c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.5-6.9 4.2-17-2.8-22.4zM32 400.2c0 26.4 21.4 47.8 47.8 47.8h288.4c11.2 0 21.4-4 29.6-10.5L32 154.7v245.5z"] }; +var faVolleyballBall = { prefix: 'fas', iconName: 'volleyball-ball', icon: [495, 512, [], "f45f", "M223.3 243.4c-.9-37-8.6-72.8-22.7-105.7-90.8 42.4-157.5 122.4-180.3 216.8 13.4 30.8 32.9 58.3 56.9 81.1 22.7-79.2 74.2-147.8 146.1-192.2zM186.4 109c-15-26.4-34.5-50.1-57.4-70.7C38 88.1-15.8 191.2 4 300.5c33.4-83.1 98.4-152 182.4-191.5zM374 274.1c8.6-99.8-27.3-197.5-97.5-264.4-14.7-1.7-51.6-5.5-98.9 8.5 57.3 59.3 91 138.2 93.5 222.7 32.5 17.7 67.3 29 102.9 33.2zm-124.7 9.5c-31.6 19.3-58.7 43.9-80.2 72.6 82 57.3 184.5 75.1 277.5 47.8 19.7-26.4 34.2-56.8 42.2-89.9-26.6 6.6-53.7 10.4-80.9 10.4-54.6-.1-108.9-14.1-158.6-40.9zM151 383.3c-15.2 26-25.7 54.4-32.1 84.2 37.6 23 81.7 36.5 129.1 36.5 61 0 116.7-22.1 159.9-58.6C295 461.5 204.6 420.6 151 383.3zM331.3 22.7c55.3 70.4 82.5 161.2 74.6 253.6 30.3.2 60.5-4.8 89.7-14.2 0-2 .3-4 .3-6 0-107.8-68.7-199.1-164.6-233.4z"] }; +var faVolumeDown = { prefix: 'fas', iconName: 'volume-down', icon: [384, 512, [], "f027", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zM384 256c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z"] }; +var faVolumeOff = { prefix: 'fas', iconName: 'volume-off', icon: [256, 512, [], "f026", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971z"] }; +var faVolumeUp = { prefix: 'fas', iconName: 'volume-up', icon: [576, 512, [], "f028", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zm182.056-77.876C422.982.92 403.283 5.668 394.061 20.745c-9.221 15.077-4.473 34.774 10.604 43.995C468.967 104.063 512 174.983 512 256c0 73.431-36.077 142.292-96.507 184.206-14.522 10.072-18.129 30.01-8.057 44.532 10.076 14.528 30.016 18.126 44.531 8.057C529.633 438.927 576 350.406 576 256c0-103.244-54.579-194.877-137.944-245.859zM480 256c0-68.547-36.15-129.777-91.957-163.901-15.076-9.22-34.774-4.471-43.994 10.607-9.22 15.078-4.471 34.774 10.607 43.994C393.067 170.188 416 211.048 416 256c0 41.964-20.62 81.319-55.158 105.276-14.521 10.073-18.128 30.01-8.056 44.532 6.216 8.96 16.185 13.765 26.322 13.765a31.862 31.862 0 0 0 18.21-5.709C449.091 377.953 480 318.938 480 256zm-96 0c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z"] }; +var faWalking = { prefix: 'fas', iconName: 'walking', icon: [320, 512, [], "f554", "M208 96c26.5 0 48-21.5 48-48S234.5 0 208 0s-48 21.5-48 48 21.5 48 48 48zm94.5 149.1l-23.3-11.8-9.7-29.4c-14.7-44.6-55.7-75.8-102.2-75.9-36-.1-55.9 10.1-93.3 25.2-21.6 8.7-39.3 25.2-49.7 46.2L17.6 213c-7.8 15.8-1.5 35 14.2 42.9 15.6 7.9 34.6 1.5 42.5-14.3L81 228c3.5-7 9.3-12.5 16.5-15.4l26.8-10.8-15.2 60.7c-5.2 20.8.4 42.9 14.9 58.8l59.9 65.4c7.2 7.9 12.3 17.4 14.9 27.7l18.3 73.3c4.3 17.1 21.7 27.6 38.8 23.3 17.1-4.3 27.6-21.7 23.3-38.8l-22.2-89c-2.6-10.3-7.7-19.9-14.9-27.7l-45.5-49.7 17.2-68.7 5.5 16.5c5.3 16.1 16.7 29.4 31.7 37l23.3 11.8c15.6 7.9 34.6 1.5 42.5-14.3 7.7-15.7 1.4-35.1-14.3-43zM73.6 385.8c-3.2 8.1-8 15.4-14.2 21.5l-50 50.1c-12.5 12.5-12.5 32.8 0 45.3s32.7 12.5 45.2 0l59.4-59.4c6.1-6.1 10.9-13.4 14.2-21.5l13.5-33.8c-55.3-60.3-38.7-41.8-47.4-53.7l-20.7 51.5z"] }; +var faWallet = { prefix: 'fas', iconName: 'wallet', icon: [512, 512, [], "f555", "M461.2 128H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h384c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h397.2c28.02 0 50.8-21.53 50.8-48V176c0-26.47-22.78-48-50.8-48zM416 336c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faWarehouse = { prefix: 'fas', iconName: 'warehouse', icon: [640, 512, [], "f494", "M504 352H136.4c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0 96H136.1c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0-192H136.6c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm106.5-139L338.4 3.7a48.15 48.15 0 0 0-36.9 0L29.5 117C11.7 124.5 0 141.9 0 161.3V504c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V256c0-17.6 14.6-32 32.6-32h382.8c18 0 32.6 14.4 32.6 32v248c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V161.3c0-19.4-11.7-36.8-29.5-44.3z"] }; +var faWeight = { prefix: 'fas', iconName: 'weight', icon: [512, 512, [], "f496", "M448 64h-25.98C438.44 92.28 448 125.01 448 160c0 105.87-86.13 192-192 192S64 265.87 64 160c0-34.99 9.56-67.72 25.98-96H64C28.71 64 0 92.71 0 128v320c0 35.29 28.71 64 64 64h384c35.29 0 64-28.71 64-64V128c0-35.29-28.71-64-64-64zM256 320c88.37 0 160-71.63 160-160S344.37 0 256 0 96 71.63 96 160s71.63 160 160 160zm-.3-151.94l33.58-78.36c3.5-8.17 12.94-11.92 21.03-8.41 8.12 3.48 11.88 12.89 8.41 21l-33.67 78.55C291.73 188 296 197.45 296 208c0 22.09-17.91 40-40 40s-40-17.91-40-40c0-21.98 17.76-39.77 39.7-39.94z"] }; +var faWeightHanging = { prefix: 'fas', iconName: 'weight-hanging', icon: [512, 512, [], "f5cd", "M510.28 445.86l-73.03-292.13c-3.8-15.19-16.44-25.72-30.87-25.72h-60.25c3.57-10.05 5.88-20.72 5.88-32 0-53.02-42.98-96-96-96s-96 42.98-96 96c0 11.28 2.3 21.95 5.88 32h-60.25c-14.43 0-27.08 10.54-30.87 25.72L1.72 445.86C-6.61 479.17 16.38 512 48.03 512h415.95c31.64 0 54.63-32.83 46.3-66.14zM256 128c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z"] }; +var faWheelchair = { prefix: 'fas', iconName: 'wheelchair', icon: [512, 512, [], "f193", "M496.101 385.669l14.227 28.663c3.929 7.915.697 17.516-7.218 21.445l-65.465 32.886c-16.049 7.967-35.556 1.194-43.189-15.055L331.679 320H192c-15.925 0-29.426-11.71-31.679-27.475C126.433 55.308 128.38 70.044 128 64c0-36.358 30.318-65.635 67.052-63.929 33.271 1.545 60.048 28.905 60.925 62.201.868 32.933-23.152 60.423-54.608 65.039l4.67 32.69H336c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H215.182l4.572 32H352a32 32 0 0 1 28.962 18.392L438.477 396.8l36.178-18.349c7.915-3.929 17.517-.697 21.446 7.218zM311.358 352h-24.506c-7.788 54.204-54.528 96-110.852 96-61.757 0-112-50.243-112-112 0-41.505 22.694-77.809 56.324-97.156-3.712-25.965-6.844-47.86-9.488-66.333C45.956 198.464 0 261.963 0 336c0 97.047 78.953 176 176 176 71.87 0 133.806-43.308 161.11-105.192L311.358 352z"] }; +var faWifi = { prefix: 'fas', iconName: 'wifi', icon: [640, 512, [], "f1eb", "M384 416c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm136.659-124.443c6.465-6.465 6.245-17.065-.564-23.167-113.793-101.985-286.526-101.869-400.19 0-6.809 6.102-7.029 16.702-.564 23.167l34.006 34.006c5.927 5.927 15.464 6.32 21.769.796 82.88-72.609 207.074-72.447 289.768 0 6.305 5.524 15.842 5.132 21.769-.796l34.006-34.006zm112.11-113.718c6.385-6.385 6.254-16.816-.35-22.973-175.768-163.86-449.134-163.8-624.837 0-6.604 6.157-6.735 16.589-.35 22.973l33.966 33.966c6.095 6.095 15.891 6.231 22.224.383 144.763-133.668 368.356-133.702 513.156 0 6.333 5.848 16.129 5.712 22.224-.383l33.967-33.966z"] }; +var faWindowClose = { prefix: 'fas', iconName: 'window-close', icon: [512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-83.6 290.5c4.8 4.8 4.8 12.6 0 17.4l-40.5 40.5c-4.8 4.8-12.6 4.8-17.4 0L256 313.3l-66.5 67.1c-4.8 4.8-12.6 4.8-17.4 0l-40.5-40.5c-4.8-4.8-4.8-12.6 0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6 0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1 66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8 4.8 12.6 0 17.4L313.3 256l67.1 66.5z"] }; +var faWindowMaximize = { prefix: 'fas', iconName: 'window-maximize', icon: [512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16 160H64v-84c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12v84z"] }; +var faWindowMinimize = { prefix: 'fas', iconName: 'window-minimize', icon: [512, 512, [], "f2d1", "M464 352H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48z"] }; +var faWindowRestore = { prefix: 'fas', iconName: 'window-restore', icon: [512, 512, [], "f2d2", "M512 48v288c0 26.5-21.5 48-48 48h-48V176c0-44.1-35.9-80-80-80H128V48c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zM384 176v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zm-68 28c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v52h252v-52z"] }; +var faWineGlass = { prefix: 'fas', iconName: 'wine-glass', icon: [288, 512, [], "f4e3", "M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40z"] }; +var faWineGlassAlt = { prefix: 'fas', iconName: 'wine-glass-alt', icon: [288, 512, [], "f5ce", "M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM61.75 48h164.5l7.17 80H54.58l7.17-80z"] }; +var faWonSign = { prefix: 'fas', iconName: 'won-sign', icon: [576, 512, [], "f159", "M564 192c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-48.028l18.572-80.61c1.732-7.518-3.978-14.694-11.693-14.694h-46.107a11.998 11.998 0 0 0-11.736 9.5L450.73 128H340.839l-19.725-85.987a12 12 0 0 0-11.696-9.317H265.43a12 12 0 0 0-11.687 9.277L233.696 128H124.975L107.5 42.299a12 12 0 0 0-11.758-9.602H53.628c-7.686 0-13.39 7.124-11.709 14.624L60 128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h62.342l7.171 32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h83.856l40.927 182.624A12 12 0 0 0 148.492 480h56.767c5.583 0 10.428-3.85 11.689-9.288L259.335 288h55.086l42.386 182.712A12 12 0 0 0 368.496 480h56.826a12 12 0 0 0 11.694-9.306L479.108 288H564c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-70.146l7.373-32H564zm-425.976 0h80.757l-7.457 32h-66.776l-6.524-32zm45.796 150.029c-6.194 25.831-6.758 47.25-7.321 47.25h-1.126s-1.689-22.05-6.758-47.25L157.599 288h38.812l-12.591 54.029zM274.182 224l1.996-8.602c1.856-7.962 3.457-15.968 4.803-23.398h11.794c1.347 7.43 2.947 15.436 4.803 23.398l1.996 8.602h-25.392zm130.959 118.029c-5.068 25.2-6.758 47.25-6.758 47.25h-1.126c-.563 0-1.126-21.42-7.321-47.25L377.542 288h39.107l-11.508 54.029zM430.281 224h-67.42l-7.34-32h81.577l-6.817 32z"] }; +var faWrench = { prefix: 'fas', iconName: 'wrench', icon: [512, 512, [], "f0ad", "M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"] }; +var faXRay = { prefix: 'fas', iconName: 'x-ray', icon: [640, 512, [], "f497", "M240 384c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm160 32c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zM624 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zm0 448h-48V96H64v352H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM480 248c0 4.4-3.6 8-8 8H336v32h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48v-16h-64v16c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48h64v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-32H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h136v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-24c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v24h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h136c4.4 0 8 3.6 8 8v16z"] }; +var faYenSign = { prefix: 'fas', iconName: 'yen-sign', icon: [384, 512, [], "f157", "M351.208 32h-65.277a12 12 0 0 0-10.778 6.724l-55.39 113.163c-14.513 34.704-27.133 71.932-27.133 71.932h-1.262s-12.62-37.228-27.133-71.932l-55.39-113.163A11.997 11.997 0 0 0 98.068 32H32.792c-9.057 0-14.85 9.65-10.59 17.643L102.322 200H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h88.162L152 293.228V320H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h108v92c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-92h108c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12H232v-26.772L251.838 256H340c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12h-58.322l80.12-150.357C366.058 41.65 360.266 32 351.208 32z"] }; +var _iconsCache = { + faAddressBook: faAddressBook, + faAddressCard: faAddressCard, + faAdjust: faAdjust, + faAlignCenter: faAlignCenter, + faAlignJustify: faAlignJustify, + faAlignLeft: faAlignLeft, + faAlignRight: faAlignRight, + faAllergies: faAllergies, + faAmbulance: faAmbulance, + faAmericanSignLanguageInterpreting: faAmericanSignLanguageInterpreting, + faAnchor: faAnchor, + faAngleDoubleDown: faAngleDoubleDown, + faAngleDoubleLeft: faAngleDoubleLeft, + faAngleDoubleRight: faAngleDoubleRight, + faAngleDoubleUp: faAngleDoubleUp, + faAngleDown: faAngleDown, + faAngleLeft: faAngleLeft, + faAngleRight: faAngleRight, + faAngleUp: faAngleUp, + faAngry: faAngry, + faArchive: faArchive, + faArchway: faArchway, + faArrowAltCircleDown: faArrowAltCircleDown, + faArrowAltCircleLeft: faArrowAltCircleLeft, + faArrowAltCircleRight: faArrowAltCircleRight, + faArrowAltCircleUp: faArrowAltCircleUp, + faArrowCircleDown: faArrowCircleDown, + faArrowCircleLeft: faArrowCircleLeft, + faArrowCircleRight: faArrowCircleRight, + faArrowCircleUp: faArrowCircleUp, + faArrowDown: faArrowDown, + faArrowLeft: faArrowLeft, + faArrowRight: faArrowRight, + faArrowUp: faArrowUp, + faArrowsAlt: faArrowsAlt, + faArrowsAltH: faArrowsAltH, + faArrowsAltV: faArrowsAltV, + faAssistiveListeningSystems: faAssistiveListeningSystems, + faAsterisk: faAsterisk, + faAt: faAt, + faAtlas: faAtlas, + faAudioDescription: faAudioDescription, + faAward: faAward, + faBackspace: faBackspace, + faBackward: faBackward, + faBalanceScale: faBalanceScale, + faBan: faBan, + faBandAid: faBandAid, + faBarcode: faBarcode, + faBars: faBars, + faBaseballBall: faBaseballBall, + faBasketballBall: faBasketballBall, + faBath: faBath, + faBatteryEmpty: faBatteryEmpty, + faBatteryFull: faBatteryFull, + faBatteryHalf: faBatteryHalf, + faBatteryQuarter: faBatteryQuarter, + faBatteryThreeQuarters: faBatteryThreeQuarters, + faBed: faBed, + faBeer: faBeer, + faBell: faBell, + faBellSlash: faBellSlash, + faBezierCurve: faBezierCurve, + faBicycle: faBicycle, + faBinoculars: faBinoculars, + faBirthdayCake: faBirthdayCake, + faBlender: faBlender, + faBlind: faBlind, + faBold: faBold, + faBolt: faBolt, + faBomb: faBomb, + faBong: faBong, + faBook: faBook, + faBookOpen: faBookOpen, + faBookmark: faBookmark, + faBowlingBall: faBowlingBall, + faBox: faBox, + faBoxOpen: faBoxOpen, + faBoxes: faBoxes, + faBraille: faBraille, + faBriefcase: faBriefcase, + faBriefcaseMedical: faBriefcaseMedical, + faBroadcastTower: faBroadcastTower, + faBroom: faBroom, + faBrush: faBrush, + faBug: faBug, + faBuilding: faBuilding, + faBullhorn: faBullhorn, + faBullseye: faBullseye, + faBurn: faBurn, + faBus: faBus, + faBusAlt: faBusAlt, + faCalculator: faCalculator, + faCalendar: faCalendar, + faCalendarAlt: faCalendarAlt, + faCalendarCheck: faCalendarCheck, + faCalendarMinus: faCalendarMinus, + faCalendarPlus: faCalendarPlus, + faCalendarTimes: faCalendarTimes, + faCamera: faCamera, + faCameraRetro: faCameraRetro, + faCannabis: faCannabis, + faCapsules: faCapsules, + faCar: faCar, + faCaretDown: faCaretDown, + faCaretLeft: faCaretLeft, + faCaretRight: faCaretRight, + faCaretSquareDown: faCaretSquareDown, + faCaretSquareLeft: faCaretSquareLeft, + faCaretSquareRight: faCaretSquareRight, + faCaretSquareUp: faCaretSquareUp, + faCaretUp: faCaretUp, + faCartArrowDown: faCartArrowDown, + faCartPlus: faCartPlus, + faCertificate: faCertificate, + faChalkboard: faChalkboard, + faChalkboardTeacher: faChalkboardTeacher, + faChartArea: faChartArea, + faChartBar: faChartBar, + faChartLine: faChartLine, + faChartPie: faChartPie, + faCheck: faCheck, + faCheckCircle: faCheckCircle, + faCheckDouble: faCheckDouble, + faCheckSquare: faCheckSquare, + faChess: faChess, + faChessBishop: faChessBishop, + faChessBoard: faChessBoard, + faChessKing: faChessKing, + faChessKnight: faChessKnight, + faChessPawn: faChessPawn, + faChessQueen: faChessQueen, + faChessRook: faChessRook, + faChevronCircleDown: faChevronCircleDown, + faChevronCircleLeft: faChevronCircleLeft, + faChevronCircleRight: faChevronCircleRight, + faChevronCircleUp: faChevronCircleUp, + faChevronDown: faChevronDown, + faChevronLeft: faChevronLeft, + faChevronRight: faChevronRight, + faChevronUp: faChevronUp, + faChild: faChild, + faChurch: faChurch, + faCircle: faCircle, + faCircleNotch: faCircleNotch, + faClipboard: faClipboard, + faClipboardCheck: faClipboardCheck, + faClipboardList: faClipboardList, + faClock: faClock, + faClone: faClone, + faClosedCaptioning: faClosedCaptioning, + faCloud: faCloud, + faCloudDownloadAlt: faCloudDownloadAlt, + faCloudUploadAlt: faCloudUploadAlt, + faCocktail: faCocktail, + faCode: faCode, + faCodeBranch: faCodeBranch, + faCoffee: faCoffee, + faCog: faCog, + faCogs: faCogs, + faCoins: faCoins, + faColumns: faColumns, + faComment: faComment, + faCommentAlt: faCommentAlt, + faCommentDots: faCommentDots, + faCommentSlash: faCommentSlash, + faComments: faComments, + faCompactDisc: faCompactDisc, + faCompass: faCompass, + faCompress: faCompress, + faConciergeBell: faConciergeBell, + faCookie: faCookie, + faCookieBite: faCookieBite, + faCopy: faCopy, + faCopyright: faCopyright, + faCouch: faCouch, + faCreditCard: faCreditCard, + faCrop: faCrop, + faCropAlt: faCropAlt, + faCrosshairs: faCrosshairs, + faCrow: faCrow, + faCrown: faCrown, + faCube: faCube, + faCubes: faCubes, + faCut: faCut, + faDatabase: faDatabase, + faDeaf: faDeaf, + faDesktop: faDesktop, + faDiagnoses: faDiagnoses, + faDice: faDice, + faDiceFive: faDiceFive, + faDiceFour: faDiceFour, + faDiceOne: faDiceOne, + faDiceSix: faDiceSix, + faDiceThree: faDiceThree, + faDiceTwo: faDiceTwo, + faDigitalTachograph: faDigitalTachograph, + faDivide: faDivide, + faDizzy: faDizzy, + faDna: faDna, + faDollarSign: faDollarSign, + faDolly: faDolly, + faDollyFlatbed: faDollyFlatbed, + faDonate: faDonate, + faDoorClosed: faDoorClosed, + faDoorOpen: faDoorOpen, + faDotCircle: faDotCircle, + faDove: faDove, + faDownload: faDownload, + faDraftingCompass: faDraftingCompass, + faDrum: faDrum, + faDrumSteelpan: faDrumSteelpan, + faDumbbell: faDumbbell, + faEdit: faEdit, + faEject: faEject, + faEllipsisH: faEllipsisH, + faEllipsisV: faEllipsisV, + faEnvelope: faEnvelope, + faEnvelopeOpen: faEnvelopeOpen, + faEnvelopeSquare: faEnvelopeSquare, + faEquals: faEquals, + faEraser: faEraser, + faEuroSign: faEuroSign, + faExchangeAlt: faExchangeAlt, + faExclamation: faExclamation, + faExclamationCircle: faExclamationCircle, + faExclamationTriangle: faExclamationTriangle, + faExpand: faExpand, + faExpandArrowsAlt: faExpandArrowsAlt, + faExternalLinkAlt: faExternalLinkAlt, + faExternalLinkSquareAlt: faExternalLinkSquareAlt, + faEye: faEye, + faEyeDropper: faEyeDropper, + faEyeSlash: faEyeSlash, + faFastBackward: faFastBackward, + faFastForward: faFastForward, + faFax: faFax, + faFeather: faFeather, + faFeatherAlt: faFeatherAlt, + faFemale: faFemale, + faFighterJet: faFighterJet, + faFile: faFile, + faFileAlt: faFileAlt, + faFileArchive: faFileArchive, + faFileAudio: faFileAudio, + faFileCode: faFileCode, + faFileContract: faFileContract, + faFileDownload: faFileDownload, + faFileExcel: faFileExcel, + faFileExport: faFileExport, + faFileImage: faFileImage, + faFileImport: faFileImport, + faFileInvoice: faFileInvoice, + faFileInvoiceDollar: faFileInvoiceDollar, + faFileMedical: faFileMedical, + faFileMedicalAlt: faFileMedicalAlt, + faFilePdf: faFilePdf, + faFilePowerpoint: faFilePowerpoint, + faFilePrescription: faFilePrescription, + faFileSignature: faFileSignature, + faFileUpload: faFileUpload, + faFileVideo: faFileVideo, + faFileWord: faFileWord, + faFill: faFill, + faFillDrip: faFillDrip, + faFilm: faFilm, + faFilter: faFilter, + faFingerprint: faFingerprint, + faFire: faFire, + faFireExtinguisher: faFireExtinguisher, + faFirstAid: faFirstAid, + faFish: faFish, + faFlag: faFlag, + faFlagCheckered: faFlagCheckered, + faFlask: faFlask, + faFlushed: faFlushed, + faFolder: faFolder, + faFolderOpen: faFolderOpen, + faFont: faFont, + faFontAwesomeLogoFull: faFontAwesomeLogoFull, + faFootballBall: faFootballBall, + faForward: faForward, + faFrog: faFrog, + faFrown: faFrown, + faFrownOpen: faFrownOpen, + faFutbol: faFutbol, + faGamepad: faGamepad, + faGasPump: faGasPump, + faGavel: faGavel, + faGem: faGem, + faGenderless: faGenderless, + faGift: faGift, + faGlassMartini: faGlassMartini, + faGlassMartiniAlt: faGlassMartiniAlt, + faGlasses: faGlasses, + faGlobe: faGlobe, + faGlobeAfrica: faGlobeAfrica, + faGlobeAmericas: faGlobeAmericas, + faGlobeAsia: faGlobeAsia, + faGolfBall: faGolfBall, + faGraduationCap: faGraduationCap, + faGreaterThan: faGreaterThan, + faGreaterThanEqual: faGreaterThanEqual, + faGrimace: faGrimace, + faGrin: faGrin, + faGrinAlt: faGrinAlt, + faGrinBeam: faGrinBeam, + faGrinBeamSweat: faGrinBeamSweat, + faGrinHearts: faGrinHearts, + faGrinSquint: faGrinSquint, + faGrinSquintTears: faGrinSquintTears, + faGrinStars: faGrinStars, + faGrinTears: faGrinTears, + faGrinTongue: faGrinTongue, + faGrinTongueSquint: faGrinTongueSquint, + faGrinTongueWink: faGrinTongueWink, + faGrinWink: faGrinWink, + faGripHorizontal: faGripHorizontal, + faGripVertical: faGripVertical, + faHSquare: faHSquare, + faHandHolding: faHandHolding, + faHandHoldingHeart: faHandHoldingHeart, + faHandHoldingUsd: faHandHoldingUsd, + faHandLizard: faHandLizard, + faHandPaper: faHandPaper, + faHandPeace: faHandPeace, + faHandPointDown: faHandPointDown, + faHandPointLeft: faHandPointLeft, + faHandPointRight: faHandPointRight, + faHandPointUp: faHandPointUp, + faHandPointer: faHandPointer, + faHandRock: faHandRock, + faHandScissors: faHandScissors, + faHandSpock: faHandSpock, + faHands: faHands, + faHandsHelping: faHandsHelping, + faHandshake: faHandshake, + faHashtag: faHashtag, + faHdd: faHdd, + faHeading: faHeading, + faHeadphones: faHeadphones, + faHeadphonesAlt: faHeadphonesAlt, + faHeadset: faHeadset, + faHeart: faHeart, + faHeartbeat: faHeartbeat, + faHelicopter: faHelicopter, + faHighlighter: faHighlighter, + faHistory: faHistory, + faHockeyPuck: faHockeyPuck, + faHome: faHome, + faHospital: faHospital, + faHospitalAlt: faHospitalAlt, + faHospitalSymbol: faHospitalSymbol, + faHotTub: faHotTub, + faHotel: faHotel, + faHourglass: faHourglass, + faHourglassEnd: faHourglassEnd, + faHourglassHalf: faHourglassHalf, + faHourglassStart: faHourglassStart, + faICursor: faICursor, + faIdBadge: faIdBadge, + faIdCard: faIdCard, + faIdCardAlt: faIdCardAlt, + faImage: faImage, + faImages: faImages, + faInbox: faInbox, + faIndent: faIndent, + faIndustry: faIndustry, + faInfinity: faInfinity, + faInfo: faInfo, + faInfoCircle: faInfoCircle, + faItalic: faItalic, + faJoint: faJoint, + faKey: faKey, + faKeyboard: faKeyboard, + faKiss: faKiss, + faKissBeam: faKissBeam, + faKissWinkHeart: faKissWinkHeart, + faKiwiBird: faKiwiBird, + faLanguage: faLanguage, + faLaptop: faLaptop, + faLaugh: faLaugh, + faLaughBeam: faLaughBeam, + faLaughSquint: faLaughSquint, + faLaughWink: faLaughWink, + faLeaf: faLeaf, + faLemon: faLemon, + faLessThan: faLessThan, + faLessThanEqual: faLessThanEqual, + faLevelDownAlt: faLevelDownAlt, + faLevelUpAlt: faLevelUpAlt, + faLifeRing: faLifeRing, + faLightbulb: faLightbulb, + faLink: faLink, + faLiraSign: faLiraSign, + faList: faList, + faListAlt: faListAlt, + faListOl: faListOl, + faListUl: faListUl, + faLocationArrow: faLocationArrow, + faLock: faLock, + faLockOpen: faLockOpen, + faLongArrowAltDown: faLongArrowAltDown, + faLongArrowAltLeft: faLongArrowAltLeft, + faLongArrowAltRight: faLongArrowAltRight, + faLongArrowAltUp: faLongArrowAltUp, + faLowVision: faLowVision, + faLuggageCart: faLuggageCart, + faMagic: faMagic, + faMagnet: faMagnet, + faMale: faMale, + faMap: faMap, + faMapMarked: faMapMarked, + faMapMarkedAlt: faMapMarkedAlt, + faMapMarker: faMapMarker, + faMapMarkerAlt: faMapMarkerAlt, + faMapPin: faMapPin, + faMapSigns: faMapSigns, + faMarker: faMarker, + faMars: faMars, + faMarsDouble: faMarsDouble, + faMarsStroke: faMarsStroke, + faMarsStrokeH: faMarsStrokeH, + faMarsStrokeV: faMarsStrokeV, + faMedal: faMedal, + faMedkit: faMedkit, + faMeh: faMeh, + faMehBlank: faMehBlank, + faMehRollingEyes: faMehRollingEyes, + faMemory: faMemory, + faMercury: faMercury, + faMicrochip: faMicrochip, + faMicrophone: faMicrophone, + faMicrophoneAlt: faMicrophoneAlt, + faMicrophoneAltSlash: faMicrophoneAltSlash, + faMicrophoneSlash: faMicrophoneSlash, + faMinus: faMinus, + faMinusCircle: faMinusCircle, + faMinusSquare: faMinusSquare, + faMobile: faMobile, + faMobileAlt: faMobileAlt, + faMoneyBill: faMoneyBill, + faMoneyBillAlt: faMoneyBillAlt, + faMoneyBillWave: faMoneyBillWave, + faMoneyBillWaveAlt: faMoneyBillWaveAlt, + faMoneyCheck: faMoneyCheck, + faMoneyCheckAlt: faMoneyCheckAlt, + faMonument: faMonument, + faMoon: faMoon, + faMortarPestle: faMortarPestle, + faMotorcycle: faMotorcycle, + faMousePointer: faMousePointer, + faMusic: faMusic, + faNeuter: faNeuter, + faNewspaper: faNewspaper, + faNotEqual: faNotEqual, + faNotesMedical: faNotesMedical, + faObjectGroup: faObjectGroup, + faObjectUngroup: faObjectUngroup, + faOutdent: faOutdent, + faPaintBrush: faPaintBrush, + faPaintRoller: faPaintRoller, + faPalette: faPalette, + faPallet: faPallet, + faPaperPlane: faPaperPlane, + faPaperclip: faPaperclip, + faParachuteBox: faParachuteBox, + faParagraph: faParagraph, + faParking: faParking, + faPassport: faPassport, + faPaste: faPaste, + faPause: faPause, + faPauseCircle: faPauseCircle, + faPaw: faPaw, + faPen: faPen, + faPenAlt: faPenAlt, + faPenFancy: faPenFancy, + faPenNib: faPenNib, + faPenSquare: faPenSquare, + faPencilAlt: faPencilAlt, + faPencilRuler: faPencilRuler, + faPeopleCarry: faPeopleCarry, + faPercent: faPercent, + faPercentage: faPercentage, + faPhone: faPhone, + faPhoneSlash: faPhoneSlash, + faPhoneSquare: faPhoneSquare, + faPhoneVolume: faPhoneVolume, + faPiggyBank: faPiggyBank, + faPills: faPills, + faPlane: faPlane, + faPlaneArrival: faPlaneArrival, + faPlaneDeparture: faPlaneDeparture, + faPlay: faPlay, + faPlayCircle: faPlayCircle, + faPlug: faPlug, + faPlus: faPlus, + faPlusCircle: faPlusCircle, + faPlusSquare: faPlusSquare, + faPodcast: faPodcast, + faPoo: faPoo, + faPortrait: faPortrait, + faPoundSign: faPoundSign, + faPowerOff: faPowerOff, + faPrescription: faPrescription, + faPrescriptionBottle: faPrescriptionBottle, + faPrescriptionBottleAlt: faPrescriptionBottleAlt, + faPrint: faPrint, + faProcedures: faProcedures, + faProjectDiagram: faProjectDiagram, + faPuzzlePiece: faPuzzlePiece, + faQrcode: faQrcode, + faQuestion: faQuestion, + faQuestionCircle: faQuestionCircle, + faQuidditch: faQuidditch, + faQuoteLeft: faQuoteLeft, + faQuoteRight: faQuoteRight, + faRandom: faRandom, + faReceipt: faReceipt, + faRecycle: faRecycle, + faRedo: faRedo, + faRedoAlt: faRedoAlt, + faRegistered: faRegistered, + faReply: faReply, + faReplyAll: faReplyAll, + faRetweet: faRetweet, + faRibbon: faRibbon, + faRoad: faRoad, + faRobot: faRobot, + faRocket: faRocket, + faRss: faRss, + faRssSquare: faRssSquare, + faRubleSign: faRubleSign, + faRuler: faRuler, + faRulerCombined: faRulerCombined, + faRulerHorizontal: faRulerHorizontal, + faRulerVertical: faRulerVertical, + faRupeeSign: faRupeeSign, + faSadCry: faSadCry, + faSadTear: faSadTear, + faSave: faSave, + faSchool: faSchool, + faScrewdriver: faScrewdriver, + faSearch: faSearch, + faSearchMinus: faSearchMinus, + faSearchPlus: faSearchPlus, + faSeedling: faSeedling, + faServer: faServer, + faShare: faShare, + faShareAlt: faShareAlt, + faShareAltSquare: faShareAltSquare, + faShareSquare: faShareSquare, + faShekelSign: faShekelSign, + faShieldAlt: faShieldAlt, + faShip: faShip, + faShippingFast: faShippingFast, + faShoePrints: faShoePrints, + faShoppingBag: faShoppingBag, + faShoppingBasket: faShoppingBasket, + faShoppingCart: faShoppingCart, + faShower: faShower, + faShuttleVan: faShuttleVan, + faSign: faSign, + faSignInAlt: faSignInAlt, + faSignLanguage: faSignLanguage, + faSignOutAlt: faSignOutAlt, + faSignal: faSignal, + faSignature: faSignature, + faSitemap: faSitemap, + faSkull: faSkull, + faSlidersH: faSlidersH, + faSmile: faSmile, + faSmileBeam: faSmileBeam, + faSmileWink: faSmileWink, + faSmoking: faSmoking, + faSmokingBan: faSmokingBan, + faSnowflake: faSnowflake, + faSolarPanel: faSolarPanel, + faSort: faSort, + faSortAlphaDown: faSortAlphaDown, + faSortAlphaUp: faSortAlphaUp, + faSortAmountDown: faSortAmountDown, + faSortAmountUp: faSortAmountUp, + faSortDown: faSortDown, + faSortNumericDown: faSortNumericDown, + faSortNumericUp: faSortNumericUp, + faSortUp: faSortUp, + faSpa: faSpa, + faSpaceShuttle: faSpaceShuttle, + faSpinner: faSpinner, + faSplotch: faSplotch, + faSprayCan: faSprayCan, + faSquare: faSquare, + faSquareFull: faSquareFull, + faStamp: faStamp, + faStar: faStar, + faStarHalf: faStarHalf, + faStarHalfAlt: faStarHalfAlt, + faStepBackward: faStepBackward, + faStepForward: faStepForward, + faStethoscope: faStethoscope, + faStickyNote: faStickyNote, + faStop: faStop, + faStopCircle: faStopCircle, + faStopwatch: faStopwatch, + faStore: faStore, + faStoreAlt: faStoreAlt, + faStream: faStream, + faStreetView: faStreetView, + faStrikethrough: faStrikethrough, + faStroopwafel: faStroopwafel, + faSubscript: faSubscript, + faSubway: faSubway, + faSuitcase: faSuitcase, + faSuitcaseRolling: faSuitcaseRolling, + faSun: faSun, + faSuperscript: faSuperscript, + faSurprise: faSurprise, + faSwatchbook: faSwatchbook, + faSwimmer: faSwimmer, + faSwimmingPool: faSwimmingPool, + faSync: faSync, + faSyncAlt: faSyncAlt, + faSyringe: faSyringe, + faTable: faTable, + faTableTennis: faTableTennis, + faTablet: faTablet, + faTabletAlt: faTabletAlt, + faTablets: faTablets, + faTachometerAlt: faTachometerAlt, + faTag: faTag, + faTags: faTags, + faTape: faTape, + faTasks: faTasks, + faTaxi: faTaxi, + faTerminal: faTerminal, + faTextHeight: faTextHeight, + faTextWidth: faTextWidth, + faTh: faTh, + faThLarge: faThLarge, + faThList: faThList, + faThermometer: faThermometer, + faThermometerEmpty: faThermometerEmpty, + faThermometerFull: faThermometerFull, + faThermometerHalf: faThermometerHalf, + faThermometerQuarter: faThermometerQuarter, + faThermometerThreeQuarters: faThermometerThreeQuarters, + faThumbsDown: faThumbsDown, + faThumbsUp: faThumbsUp, + faThumbtack: faThumbtack, + faTicketAlt: faTicketAlt, + faTimes: faTimes, + faTimesCircle: faTimesCircle, + faTint: faTint, + faTintSlash: faTintSlash, + faTired: faTired, + faToggleOff: faToggleOff, + faToggleOn: faToggleOn, + faToolbox: faToolbox, + faTooth: faTooth, + faTrademark: faTrademark, + faTrain: faTrain, + faTransgender: faTransgender, + faTransgenderAlt: faTransgenderAlt, + faTrash: faTrash, + faTrashAlt: faTrashAlt, + faTree: faTree, + faTrophy: faTrophy, + faTruck: faTruck, + faTruckLoading: faTruckLoading, + faTruckMoving: faTruckMoving, + faTshirt: faTshirt, + faTty: faTty, + faTv: faTv, + faUmbrella: faUmbrella, + faUmbrellaBeach: faUmbrellaBeach, + faUnderline: faUnderline, + faUndo: faUndo, + faUndoAlt: faUndoAlt, + faUniversalAccess: faUniversalAccess, + faUniversity: faUniversity, + faUnlink: faUnlink, + faUnlock: faUnlock, + faUnlockAlt: faUnlockAlt, + faUpload: faUpload, + faUser: faUser, + faUserAlt: faUserAlt, + faUserAltSlash: faUserAltSlash, + faUserAstronaut: faUserAstronaut, + faUserCheck: faUserCheck, + faUserCircle: faUserCircle, + faUserClock: faUserClock, + faUserCog: faUserCog, + faUserEdit: faUserEdit, + faUserFriends: faUserFriends, + faUserGraduate: faUserGraduate, + faUserLock: faUserLock, + faUserMd: faUserMd, + faUserMinus: faUserMinus, + faUserNinja: faUserNinja, + faUserPlus: faUserPlus, + faUserSecret: faUserSecret, + faUserShield: faUserShield, + faUserSlash: faUserSlash, + faUserTag: faUserTag, + faUserTie: faUserTie, + faUserTimes: faUserTimes, + faUsers: faUsers, + faUsersCog: faUsersCog, + faUtensilSpoon: faUtensilSpoon, + faUtensils: faUtensils, + faVectorSquare: faVectorSquare, + faVenus: faVenus, + faVenusDouble: faVenusDouble, + faVenusMars: faVenusMars, + faVial: faVial, + faVials: faVials, + faVideo: faVideo, + faVideoSlash: faVideoSlash, + faVolleyballBall: faVolleyballBall, + faVolumeDown: faVolumeDown, + faVolumeOff: faVolumeOff, + faVolumeUp: faVolumeUp, + faWalking: faWalking, + faWallet: faWallet, + faWarehouse: faWarehouse, + faWeight: faWeight, + faWeightHanging: faWeightHanging, + faWheelchair: faWheelchair, + faWifi: faWifi, + faWindowClose: faWindowClose, + faWindowMaximize: faWindowMaximize, + faWindowMinimize: faWindowMinimize, + faWindowRestore: faWindowRestore, + faWineGlass: faWineGlass, + faWineGlassAlt: faWineGlassAlt, + faWonSign: faWonSign, + faWrench: faWrench, + faXRay: faXRay, + faYenSign: faYenSign +}; + +export { _iconsCache as fas, prefix, faAddressBook, faAddressCard, faAdjust, faAlignCenter, faAlignJustify, faAlignLeft, faAlignRight, faAllergies, faAmbulance, faAmericanSignLanguageInterpreting, faAnchor, faAngleDoubleDown, faAngleDoubleLeft, faAngleDoubleRight, faAngleDoubleUp, faAngleDown, faAngleLeft, faAngleRight, faAngleUp, faAngry, faArchive, faArchway, faArrowAltCircleDown, faArrowAltCircleLeft, faArrowAltCircleRight, faArrowAltCircleUp, faArrowCircleDown, faArrowCircleLeft, faArrowCircleRight, faArrowCircleUp, faArrowDown, faArrowLeft, faArrowRight, faArrowUp, faArrowsAlt, faArrowsAltH, faArrowsAltV, faAssistiveListeningSystems, faAsterisk, faAt, faAtlas, faAudioDescription, faAward, faBackspace, faBackward, faBalanceScale, faBan, faBandAid, faBarcode, faBars, faBaseballBall, faBasketballBall, faBath, faBatteryEmpty, faBatteryFull, faBatteryHalf, faBatteryQuarter, faBatteryThreeQuarters, faBed, faBeer, faBell, faBellSlash, faBezierCurve, faBicycle, faBinoculars, faBirthdayCake, faBlender, faBlind, faBold, faBolt, faBomb, faBong, faBook, faBookOpen, faBookmark, faBowlingBall, faBox, faBoxOpen, faBoxes, faBraille, faBriefcase, faBriefcaseMedical, faBroadcastTower, faBroom, faBrush, faBug, faBuilding, faBullhorn, faBullseye, faBurn, faBus, faBusAlt, faCalculator, faCalendar, faCalendarAlt, faCalendarCheck, faCalendarMinus, faCalendarPlus, faCalendarTimes, faCamera, faCameraRetro, faCannabis, faCapsules, faCar, faCaretDown, faCaretLeft, faCaretRight, faCaretSquareDown, faCaretSquareLeft, faCaretSquareRight, faCaretSquareUp, faCaretUp, faCartArrowDown, faCartPlus, faCertificate, faChalkboard, faChalkboardTeacher, faChartArea, faChartBar, faChartLine, faChartPie, faCheck, faCheckCircle, faCheckDouble, faCheckSquare, faChess, faChessBishop, faChessBoard, faChessKing, faChessKnight, faChessPawn, faChessQueen, faChessRook, faChevronCircleDown, faChevronCircleLeft, faChevronCircleRight, faChevronCircleUp, faChevronDown, faChevronLeft, faChevronRight, faChevronUp, faChild, faChurch, faCircle, faCircleNotch, faClipboard, faClipboardCheck, faClipboardList, faClock, faClone, faClosedCaptioning, faCloud, faCloudDownloadAlt, faCloudUploadAlt, faCocktail, faCode, faCodeBranch, faCoffee, faCog, faCogs, faCoins, faColumns, faComment, faCommentAlt, faCommentDots, faCommentSlash, faComments, faCompactDisc, faCompass, faCompress, faConciergeBell, faCookie, faCookieBite, faCopy, faCopyright, faCouch, faCreditCard, faCrop, faCropAlt, faCrosshairs, faCrow, faCrown, faCube, faCubes, faCut, faDatabase, faDeaf, faDesktop, faDiagnoses, faDice, faDiceFive, faDiceFour, faDiceOne, faDiceSix, faDiceThree, faDiceTwo, faDigitalTachograph, faDivide, faDizzy, faDna, faDollarSign, faDolly, faDollyFlatbed, faDonate, faDoorClosed, faDoorOpen, faDotCircle, faDove, faDownload, faDraftingCompass, faDrum, faDrumSteelpan, faDumbbell, faEdit, faEject, faEllipsisH, faEllipsisV, faEnvelope, faEnvelopeOpen, faEnvelopeSquare, faEquals, faEraser, faEuroSign, faExchangeAlt, faExclamation, faExclamationCircle, faExclamationTriangle, faExpand, faExpandArrowsAlt, faExternalLinkAlt, faExternalLinkSquareAlt, faEye, faEyeDropper, faEyeSlash, faFastBackward, faFastForward, faFax, faFeather, faFeatherAlt, faFemale, faFighterJet, faFile, faFileAlt, faFileArchive, faFileAudio, faFileCode, faFileContract, faFileDownload, faFileExcel, faFileExport, faFileImage, faFileImport, faFileInvoice, faFileInvoiceDollar, faFileMedical, faFileMedicalAlt, faFilePdf, faFilePowerpoint, faFilePrescription, faFileSignature, faFileUpload, faFileVideo, faFileWord, faFill, faFillDrip, faFilm, faFilter, faFingerprint, faFire, faFireExtinguisher, faFirstAid, faFish, faFlag, faFlagCheckered, faFlask, faFlushed, faFolder, faFolderOpen, faFont, faFontAwesomeLogoFull, faFootballBall, faForward, faFrog, faFrown, faFrownOpen, faFutbol, faGamepad, faGasPump, faGavel, faGem, faGenderless, faGift, faGlassMartini, faGlassMartiniAlt, faGlasses, faGlobe, faGlobeAfrica, faGlobeAmericas, faGlobeAsia, faGolfBall, faGraduationCap, faGreaterThan, faGreaterThanEqual, faGrimace, faGrin, faGrinAlt, faGrinBeam, faGrinBeamSweat, faGrinHearts, faGrinSquint, faGrinSquintTears, faGrinStars, faGrinTears, faGrinTongue, faGrinTongueSquint, faGrinTongueWink, faGrinWink, faGripHorizontal, faGripVertical, faHSquare, faHandHolding, faHandHoldingHeart, faHandHoldingUsd, faHandLizard, faHandPaper, faHandPeace, faHandPointDown, faHandPointLeft, faHandPointRight, faHandPointUp, faHandPointer, faHandRock, faHandScissors, faHandSpock, faHands, faHandsHelping, faHandshake, faHashtag, faHdd, faHeading, faHeadphones, faHeadphonesAlt, faHeadset, faHeart, faHeartbeat, faHelicopter, faHighlighter, faHistory, faHockeyPuck, faHome, faHospital, faHospitalAlt, faHospitalSymbol, faHotTub, faHotel, faHourglass, faHourglassEnd, faHourglassHalf, faHourglassStart, faICursor, faIdBadge, faIdCard, faIdCardAlt, faImage, faImages, faInbox, faIndent, faIndustry, faInfinity, faInfo, faInfoCircle, faItalic, faJoint, faKey, faKeyboard, faKiss, faKissBeam, faKissWinkHeart, faKiwiBird, faLanguage, faLaptop, faLaugh, faLaughBeam, faLaughSquint, faLaughWink, faLeaf, faLemon, faLessThan, faLessThanEqual, faLevelDownAlt, faLevelUpAlt, faLifeRing, faLightbulb, faLink, faLiraSign, faList, faListAlt, faListOl, faListUl, faLocationArrow, faLock, faLockOpen, faLongArrowAltDown, faLongArrowAltLeft, faLongArrowAltRight, faLongArrowAltUp, faLowVision, faLuggageCart, faMagic, faMagnet, faMale, faMap, faMapMarked, faMapMarkedAlt, faMapMarker, faMapMarkerAlt, faMapPin, faMapSigns, faMarker, faMars, faMarsDouble, faMarsStroke, faMarsStrokeH, faMarsStrokeV, faMedal, faMedkit, faMeh, faMehBlank, faMehRollingEyes, faMemory, faMercury, faMicrochip, faMicrophone, faMicrophoneAlt, faMicrophoneAltSlash, faMicrophoneSlash, faMinus, faMinusCircle, faMinusSquare, faMobile, faMobileAlt, faMoneyBill, faMoneyBillAlt, faMoneyBillWave, faMoneyBillWaveAlt, faMoneyCheck, faMoneyCheckAlt, faMonument, faMoon, faMortarPestle, faMotorcycle, faMousePointer, faMusic, faNeuter, faNewspaper, faNotEqual, faNotesMedical, faObjectGroup, faObjectUngroup, faOutdent, faPaintBrush, faPaintRoller, faPalette, faPallet, faPaperPlane, faPaperclip, faParachuteBox, faParagraph, faParking, faPassport, faPaste, faPause, faPauseCircle, faPaw, faPen, faPenAlt, faPenFancy, faPenNib, faPenSquare, faPencilAlt, faPencilRuler, faPeopleCarry, faPercent, faPercentage, faPhone, faPhoneSlash, faPhoneSquare, faPhoneVolume, faPiggyBank, faPills, faPlane, faPlaneArrival, faPlaneDeparture, faPlay, faPlayCircle, faPlug, faPlus, faPlusCircle, faPlusSquare, faPodcast, faPoo, faPortrait, faPoundSign, faPowerOff, faPrescription, faPrescriptionBottle, faPrescriptionBottleAlt, faPrint, faProcedures, faProjectDiagram, faPuzzlePiece, faQrcode, faQuestion, faQuestionCircle, faQuidditch, faQuoteLeft, faQuoteRight, faRandom, faReceipt, faRecycle, faRedo, faRedoAlt, faRegistered, faReply, faReplyAll, faRetweet, faRibbon, faRoad, faRobot, faRocket, faRss, faRssSquare, faRubleSign, faRuler, faRulerCombined, faRulerHorizontal, faRulerVertical, faRupeeSign, faSadCry, faSadTear, faSave, faSchool, faScrewdriver, faSearch, faSearchMinus, faSearchPlus, faSeedling, faServer, faShare, faShareAlt, faShareAltSquare, faShareSquare, faShekelSign, faShieldAlt, faShip, faShippingFast, faShoePrints, faShoppingBag, faShoppingBasket, faShoppingCart, faShower, faShuttleVan, faSign, faSignInAlt, faSignLanguage, faSignOutAlt, faSignal, faSignature, faSitemap, faSkull, faSlidersH, faSmile, faSmileBeam, faSmileWink, faSmoking, faSmokingBan, faSnowflake, faSolarPanel, faSort, faSortAlphaDown, faSortAlphaUp, faSortAmountDown, faSortAmountUp, faSortDown, faSortNumericDown, faSortNumericUp, faSortUp, faSpa, faSpaceShuttle, faSpinner, faSplotch, faSprayCan, faSquare, faSquareFull, faStamp, faStar, faStarHalf, faStarHalfAlt, faStepBackward, faStepForward, faStethoscope, faStickyNote, faStop, faStopCircle, faStopwatch, faStore, faStoreAlt, faStream, faStreetView, faStrikethrough, faStroopwafel, faSubscript, faSubway, faSuitcase, faSuitcaseRolling, faSun, faSuperscript, faSurprise, faSwatchbook, faSwimmer, faSwimmingPool, faSync, faSyncAlt, faSyringe, faTable, faTableTennis, faTablet, faTabletAlt, faTablets, faTachometerAlt, faTag, faTags, faTape, faTasks, faTaxi, faTerminal, faTextHeight, faTextWidth, faTh, faThLarge, faThList, faThermometer, faThermometerEmpty, faThermometerFull, faThermometerHalf, faThermometerQuarter, faThermometerThreeQuarters, faThumbsDown, faThumbsUp, faThumbtack, faTicketAlt, faTimes, faTimesCircle, faTint, faTintSlash, faTired, faToggleOff, faToggleOn, faToolbox, faTooth, faTrademark, faTrain, faTransgender, faTransgenderAlt, faTrash, faTrashAlt, faTree, faTrophy, faTruck, faTruckLoading, faTruckMoving, faTshirt, faTty, faTv, faUmbrella, faUmbrellaBeach, faUnderline, faUndo, faUndoAlt, faUniversalAccess, faUniversity, faUnlink, faUnlock, faUnlockAlt, faUpload, faUser, faUserAlt, faUserAltSlash, faUserAstronaut, faUserCheck, faUserCircle, faUserClock, faUserCog, faUserEdit, faUserFriends, faUserGraduate, faUserLock, faUserMd, faUserMinus, faUserNinja, faUserPlus, faUserSecret, faUserShield, faUserSlash, faUserTag, faUserTie, faUserTimes, faUsers, faUsersCog, faUtensilSpoon, faUtensils, faVectorSquare, faVenus, faVenusDouble, faVenusMars, faVial, faVials, faVideo, faVideoSlash, faVolleyballBall, faVolumeDown, faVolumeOff, faVolumeUp, faWalking, faWallet, faWarehouse, faWeight, faWeightHanging, faWheelchair, faWifi, faWindowClose, faWindowMaximize, faWindowMinimize, faWindowRestore, faWineGlass, faWineGlassAlt, faWonSign, faWrench, faXRay, faYenSign }; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/index.js b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/index.js new file mode 100644 index 0000000000..c691001371 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/index.js @@ -0,0 +1,2240 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : + typeof define === 'function' && define.amd ? define(['exports'], factory) : + (factory((global['free-solid-svg-icons'] = {}))); +}(this, (function (exports) { 'use strict'; + +var prefix = "fas"; +var faAddressBook = { prefix: 'fas', iconName: 'address-book', icon: [448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"] }; +var faAddressCard = { prefix: 'fas', iconName: 'address-card', icon: [576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-352 96c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H86.4C74 384 64 375.4 64 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2zM512 312c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z"] }; +var faAdjust = { prefix: 'fas', iconName: 'adjust', icon: [512, 512, [], "f042", "M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z"] }; +var faAlignCenter = { prefix: 'fas', iconName: 'align-center', icon: [448, 512, [], "f037", "M352 44v40c0 8.837-7.163 16-16 16H112c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h224c8.837 0 16 7.163 16 16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm320-200H112c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z"] }; +var faAlignJustify = { prefix: 'fas', iconName: 'align-justify', icon: [448, 512, [], "f039", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm16 144h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0-128h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faAlignLeft = { prefix: 'fas', iconName: 'align-left', icon: [448, 512, [], "f036", "M288 44v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16zM0 172v40c0 8.837 7.163 16 16 16h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16zm16 312h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm256-200H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z"] }; +var faAlignRight = { prefix: 'fas', iconName: 'align-right', icon: [448, 512, [], "f038", "M160 84V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H176c-8.837 0-16-7.163-16-16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faAllergies = { prefix: 'fas', iconName: 'allergies', icon: [448, 512, [], "f461", "M416 112c-17.6 0-32 14.4-32 32v72c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v152c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V32c0-17.6-14.4-32-32-32s-32 14.4-32 32v184c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32S96 46.4 96 64v241l-23.6-32.5c-13-17.9-38-21.8-55.9-8.8s-21.8 38-8.8 55.9l125.6 172.7c9 12.4 23.5 19.8 38.8 19.8h197.6c22.3 0 41.6-15.3 46.7-37l26.5-112.7c3.2-13.7 4.9-28.3 5.1-42.3V144c0-17.6-14.4-32-32-32zM176 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 32c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32-128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"] }; +var faAmbulance = { prefix: 'fas', iconName: 'ambulance', icon: [640, 512, [], "f0f9", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm144-248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm176 248c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"] }; +var faAmericanSignLanguageInterpreting = { prefix: 'fas', iconName: 'american-sign-language-interpreting', icon: [640, 512, [], "f2a3", "M290.547 189.039c-20.295-10.149-44.147-11.199-64.739-3.89 42.606 0 71.208 20.475 85.578 50.576 8.576 17.899-5.148 38.071-23.617 38.071 18.429 0 32.211 20.136 23.617 38.071-14.725 30.846-46.123 50.854-80.298 50.854-.557 0-94.471-8.615-94.471-8.615l-66.406 33.347c-9.384 4.693-19.815.379-23.895-7.781L1.86 290.747c-4.167-8.615-1.111-18.897 6.946-23.621l58.072-33.069L108 159.861c6.39-57.245 34.731-109.767 79.743-146.726 11.391-9.448 28.341-7.781 37.51 3.613 9.446 11.394 7.78 28.067-3.612 37.516-12.503 10.559-23.618 22.509-32.509 35.57 21.672-14.729 46.679-24.732 74.186-28.067 14.725-1.945 28.063 8.336 29.73 23.065 1.945 14.728-8.336 28.067-23.062 29.734-16.116 1.945-31.12 7.503-44.178 15.284 26.114-5.713 58.712-3.138 88.079 11.115 13.336 6.669 18.893 22.509 12.224 35.848-6.389 13.06-22.504 18.617-35.564 12.226zm-27.229 69.472c-6.112-12.505-18.338-20.286-32.231-20.286a35.46 35.46 0 0 0-35.565 35.57c0 21.428 17.808 35.57 35.565 35.57 13.893 0 26.119-7.781 32.231-20.286 4.446-9.449 13.614-15.006 23.339-15.284-9.725-.277-18.893-5.835-23.339-15.284zm374.821-37.237c4.168 8.615 1.111 18.897-6.946 23.621l-58.071 33.069L532 352.16c-6.39 57.245-34.731 109.767-79.743 146.726-10.932 9.112-27.799 8.144-37.51-3.613-9.446-11.394-7.78-28.067 3.613-37.516 12.503-10.559 23.617-22.509 32.508-35.57-21.672 14.729-46.679 24.732-74.186 28.067-10.021 2.506-27.552-5.643-29.73-23.065-1.945-14.728 8.336-28.067 23.062-29.734 16.116-1.946 31.12-7.503 44.178-15.284-26.114 5.713-58.712 3.138-88.079-11.115-13.336-6.669-18.893-22.509-12.224-35.848 6.389-13.061 22.505-18.619 35.565-12.227 20.295 10.149 44.147 11.199 64.739 3.89-42.606 0-71.208-20.475-85.578-50.576-8.576-17.899 5.148-38.071 23.617-38.071-18.429 0-32.211-20.136-23.617-38.071 14.033-29.396 44.039-50.887 81.966-50.854l92.803 8.615 66.406-33.347c9.408-4.704 19.828-.354 23.894 7.781l44.455 88.926zm-229.227-18.618c-13.893 0-26.119 7.781-32.231 20.286-4.446 9.449-13.614 15.006-23.339 15.284 9.725.278 18.893 5.836 23.339 15.284 6.112 12.505 18.338 20.286 32.231 20.286a35.46 35.46 0 0 0 35.565-35.57c0-21.429-17.808-35.57-35.565-35.57z"] }; +var faAnchor = { prefix: 'fas', iconName: 'anchor', icon: [576, 512, [], "f13d", "M12.971 352h32.394C67.172 454.735 181.944 512 288 512c106.229 0 220.853-57.38 242.635-160h32.394c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0l-67.029 67.029c-7.56 7.56-2.206 20.485 8.485 20.485h35.146c-20.29 54.317-84.963 86.588-144.117 94.015V256h52c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-52v-5.47c37.281-13.178 63.995-48.725 64-90.518C384.005 43.772 341.605.738 289.37.01 235.723-.739 192 42.525 192 96c0 41.798 26.716 77.35 64 90.53V192h-52c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v190.015c-58.936-7.399-123.82-39.679-144.117-94.015h35.146c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0L4.485 331.515C-3.074 339.074 2.28 352 12.971 352zM288 64c17.645 0 32 14.355 32 32s-14.355 32-32 32-32-14.355-32-32 14.355-32 32-32z"] }; +var faAngleDoubleDown = { prefix: 'fas', iconName: 'angle-double-down', icon: [320, 512, [], "f103", "M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z"] }; +var faAngleDoubleLeft = { prefix: 'fas', iconName: 'angle-double-left', icon: [448, 512, [], "f100", "M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z"] }; +var faAngleDoubleRight = { prefix: 'fas', iconName: 'angle-double-right', icon: [448, 512, [], "f101", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z"] }; +var faAngleDoubleUp = { prefix: 'fas', iconName: 'angle-double-up', icon: [320, 512, [], "f102", "M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z"] }; +var faAngleDown = { prefix: 'fas', iconName: 'angle-down', icon: [320, 512, [], "f107", "M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"] }; +var faAngleLeft = { prefix: 'fas', iconName: 'angle-left', icon: [256, 512, [], "f104", "M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"] }; +var faAngleRight = { prefix: 'fas', iconName: 'angle-right', icon: [256, 512, [], "f105", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"] }; +var faAngleUp = { prefix: 'fas', iconName: 'angle-up', icon: [320, 512, [], "f106", "M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z"] }; +var faAngry = { prefix: 'fas', iconName: 'angry', icon: [496, 512, [], "f556", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 240c0-9.3 4.1-17.5 10.5-23.4l-31-9.3c-8.5-2.5-13.3-11.5-10.7-19.9 2.5-8.5 11.4-13.2 19.9-10.7l80 24c8.5 2.5 13.3 11.5 10.7 19.9-2.1 6.9-8.4 11.4-15.3 11.4-.5 0-1.1-.2-1.7-.2.7 2.7 1.7 5.3 1.7 8.2 0 17.7-14.3 32-32 32S136 257.7 136 240zm168 154.2c-27.8-33.4-84.2-33.4-112.1 0-13.5 16.3-38.2-4.2-24.6-20.5 20-24 49.4-37.8 80.6-37.8s60.6 13.8 80.6 37.8c13.8 16.5-11.1 36.6-24.5 20.5zm76.6-186.9l-31 9.3c6.3 5.8 10.5 14.1 10.5 23.4 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-2.9.9-5.6 1.7-8.2-.6.1-1.1.2-1.7.2-6.9 0-13.2-4.5-15.3-11.4-2.5-8.5 2.3-17.4 10.7-19.9l80-24c8.4-2.5 17.4 2.3 19.9 10.7 2.5 8.5-2.3 17.4-10.8 19.9z"] }; +var faArchive = { prefix: 'fas', iconName: 'archive', icon: [512, 512, [], "f187", "M32 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160H32v288zm160-212c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v8c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-8zM480 32H32C14.3 32 0 46.3 0 64v48c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16V64c0-17.7-14.3-32-32-32z"] }; +var faArchway = { prefix: 'fas', iconName: 'archway', icon: [576, 512, [], "f557", "M560 448h-16V96H32v352H16.02c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16H176c8.84 0 16-7.16 16-16V320c0-53.02 42.98-96 96-96s96 42.98 96 96l.02 160v16c0 8.84 7.16 16 16 16H560c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm0-448H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h544c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16z"] }; +var faArrowAltCircleDown = { prefix: 'fas', iconName: 'arrow-alt-circle-down', icon: [512, 512, [], "f358", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM212 140v116h-70.9c-10.7 0-16.1 13-8.5 20.5l114.9 114.3c4.7 4.7 12.2 4.7 16.9 0l114.9-114.3c7.6-7.6 2.2-20.5-8.5-20.5H300V140c0-6.6-5.4-12-12-12h-64c-6.6 0-12 5.4-12 12z"] }; +var faArrowAltCircleLeft = { prefix: 'fas', iconName: 'arrow-alt-circle-left', icon: [512, 512, [], "f359", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z"] }; +var faArrowAltCircleRight = { prefix: 'fas', iconName: 'arrow-alt-circle-right', icon: [512, 512, [], "f35a", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z"] }; +var faArrowAltCircleUp = { prefix: 'fas', iconName: 'arrow-alt-circle-up', icon: [512, 512, [], "f35b", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm292 116V256h70.9c10.7 0 16.1-13 8.5-20.5L264.5 121.2c-4.7-4.7-12.2-4.7-16.9 0l-115 114.3c-7.6 7.6-2.2 20.5 8.5 20.5H212v116c0 6.6 5.4 12 12 12h64c6.6 0 12-5.4 12-12z"] }; +var faArrowCircleDown = { prefix: 'fas', iconName: 'arrow-circle-down', icon: [512, 512, [], "f0ab", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-143.6-28.9L288 302.6V120c0-13.3-10.7-24-24-24h-16c-13.3 0-24 10.7-24 24v182.6l-72.4-75.5c-9.3-9.7-24.8-9.9-34.3-.4l-10.9 11c-9.4 9.4-9.4 24.6 0 33.9L239 404.3c9.4 9.4 24.6 9.4 33.9 0l132.7-132.7c9.4-9.4 9.4-24.6 0-33.9l-10.9-11c-9.5-9.5-25-9.3-34.3.4z"] }; +var faArrowCircleLeft = { prefix: 'fas', iconName: 'arrow-circle-left', icon: [512, 512, [], "f0a8", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm28.9-143.6L209.4 288H392c13.3 0 24-10.7 24-24v-16c0-13.3-10.7-24-24-24H209.4l75.5-72.4c9.7-9.3 9.9-24.8.4-34.3l-11-10.9c-9.4-9.4-24.6-9.4-33.9 0L107.7 239c-9.4 9.4-9.4 24.6 0 33.9l132.7 132.7c9.4 9.4 24.6 9.4 33.9 0l11-10.9c9.5-9.5 9.3-25-.4-34.3z"] }; +var faArrowCircleRight = { prefix: 'fas', iconName: 'arrow-circle-right', icon: [512, 512, [], "f0a9", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28.9 143.6l75.5 72.4H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h182.6l-75.5 72.4c-9.7 9.3-9.9 24.8-.4 34.3l11 10.9c9.4 9.4 24.6 9.4 33.9 0L404.3 273c9.4-9.4 9.4-24.6 0-33.9L271.6 106.3c-9.4-9.4-24.6-9.4-33.9 0l-11 10.9c-9.5 9.6-9.3 25.1.4 34.4z"] }; +var faArrowCircleUp = { prefix: 'fas', iconName: 'arrow-circle-up', icon: [512, 512, [], "f0aa", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z"] }; +var faArrowDown = { prefix: 'fas', iconName: 'arrow-down', icon: [448, 512, [], "f063", "M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z"] }; +var faArrowLeft = { prefix: 'fas', iconName: 'arrow-left', icon: [448, 512, [], "f060", "M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z"] }; +var faArrowRight = { prefix: 'fas', iconName: 'arrow-right', icon: [448, 512, [], "f061", "M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z"] }; +var faArrowUp = { prefix: 'fas', iconName: 'arrow-up', icon: [448, 512, [], "f062", "M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z"] }; +var faArrowsAlt = { prefix: 'fas', iconName: 'arrows-alt', icon: [512, 512, [], "f0b2", "M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z"] }; +var faArrowsAltH = { prefix: 'fas', iconName: 'arrows-alt-h', icon: [512, 512, [], "f337", "M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z"] }; +var faArrowsAltV = { prefix: 'fas', iconName: 'arrows-alt-v', icon: [256, 512, [], "f338", "M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z"] }; +var faAssistiveListeningSystems = { prefix: 'fas', iconName: 'assistive-listening-systems', icon: [512, 512, [], "f2a2", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z"] }; +var faAsterisk = { prefix: 'fas', iconName: 'asterisk', icon: [512, 512, [], "f069", "M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z"] }; +var faAt = { prefix: 'fas', iconName: 'at', icon: [512, 512, [], "f1fa", "M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z"] }; +var faAtlas = { prefix: 'fas', iconName: 'atlas', icon: [448, 512, [], "f558", "M318.38 208h-39.09c-1.49 27.03-6.54 51.35-14.21 70.41 27.71-13.24 48.02-39.19 53.3-70.41zm0-32c-5.29-31.22-25.59-57.17-53.3-70.41 7.68 19.06 12.72 43.38 14.21 70.41h39.09zM224 97.31c-7.69 7.45-20.77 34.42-23.43 78.69h46.87c-2.67-44.26-15.75-71.24-23.44-78.69zm-41.08 8.28c-27.71 13.24-48.02 39.19-53.3 70.41h39.09c1.49-27.03 6.53-51.35 14.21-70.41zm0 172.82c-7.68-19.06-12.72-43.38-14.21-70.41h-39.09c5.28 31.22 25.59 57.17 53.3 70.41zM247.43 208h-46.87c2.66 44.26 15.74 71.24 23.43 78.69 7.7-7.45 20.78-34.43 23.44-78.69zM448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM224 64c70.69 0 128 57.31 128 128s-57.31 128-128 128S96 262.69 96 192 153.31 64 224 64zm160 384H96c-19.2 0-32-12.8-32-32s16-32 32-32h288v64z"] }; +var faAudioDescription = { prefix: 'fas', iconName: 'audio-description', icon: [512, 512, [], "f29e", "M162.925 238.709l8.822 30.655h-25.606l9.041-30.652c1.277-4.421 2.651-9.994 3.872-15.245 1.22 5.251 2.594 10.823 3.871 15.242zm166.474-32.099h-14.523v98.781h14.523c29.776 0 46.175-17.678 46.175-49.776 0-32.239-17.49-49.005-46.175-49.005zM512 112v288c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48zM245.459 336.139l-57.097-168A12.001 12.001 0 0 0 177 160h-35.894a12.001 12.001 0 0 0-11.362 8.139l-57.097 168C70.003 343.922 75.789 352 84.009 352h29.133a12 12 0 0 0 11.535-8.693l8.574-29.906h51.367l8.793 29.977A12 12 0 0 0 204.926 352h29.172c8.22 0 14.006-8.078 11.361-15.861zm184.701-80.525c0-58.977-37.919-95.614-98.96-95.614h-57.366c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12H331.2c61.041 0 98.96-36.933 98.96-96.386z"] }; +var faAward = { prefix: 'fas', iconName: 'award', icon: [384, 512, [], "f559", "M97.12 362.63l-5.3-5.3a9.004 9.004 0 0 0-4.02-2.32L72 350.77c-9.51-2.55-17.87-7.45-25.43-13.32L1.2 448.7c-4.39 10.77 3.81 22.47 15.43 22.03l52.69-2.01L105.56 507c8 8.44 22.04 5.81 26.43-4.96l52.05-127.62c-10.84 6.04-22.87 9.58-35.31 9.58-19.5 0-37.82-7.59-51.61-21.37zM382.8 448.7l-45.37-111.24c-7.56 5.88-15.92 10.77-25.43 13.32l-15.8 4.23a9.004 9.004 0 0 0-4.02 2.32l-5.3 5.3C273.09 376.41 254.76 384 235.26 384c-12.44 0-24.47-3.55-35.31-9.58L252 502.04c4.39 10.77 18.44 13.4 26.43 4.96l36.25-38.28 52.69 2.01c11.62.44 19.82-11.27 15.43-22.03zM263 340l5.21-5.3c5-5.09 11.22-8.75 18.05-10.61l15.53-4.23c13.89-3.79 24.75-14.84 28.47-28.98l4.16-15.81a41.145 41.145 0 0 1 10.42-18.37l11.37-11.57c10.17-10.35 14.14-25.44 10.42-39.58l-4.16-15.81a41.657 41.657 0 0 1 0-21.21l4.16-15.81c3.72-14.14-.25-29.23-10.42-39.58l-11.37-11.57c-5-5.09-8.59-11.42-10.42-18.37l-4.16-15.8c-3.72-14.14-14.58-25.19-28.47-28.98l-15.53-4.24c-6.83-1.86-13.05-5.52-18.05-10.61L256.84 12c-10.17-10.35-25-14.4-38.89-10.61l-15.53 4.24a39.614 39.614 0 0 1-20.84 0L166.05 1.4c-13.89-3.79-28.72.25-38.89 10.61l-11.37 11.57c-5 5.09-11.22 8.74-18.05 10.61l-15.53 4.24c-13.89 3.79-24.75 14.84-28.47 28.98l-4.16 15.8a41.145 41.145 0 0 1-10.42 18.37l-11.37 11.57c-10.17 10.35-14.15 25.44-10.42 39.58l4.16 15.8a41.657 41.657 0 0 1 0 21.21l-4.16 15.8c-3.72 14.14.25 29.23 10.42 39.59l11.37 11.57c5 5.09 8.59 11.42 10.42 18.37l4.16 15.8c3.72 14.14 14.58 25.19 28.47 28.98l15.53 4.23c6.83 1.86 13.05 5.52 18.05 10.61L121 340c13.23 13.47 33.84 15.88 49.74 5.82a39.676 39.676 0 0 1 42.53 0c15.89 10.06 36.5 7.65 49.73-5.82zM97.66 175.96c0-53.03 42.24-96.02 94.34-96.02s94.34 42.99 94.34 96.02-42.24 96.02-94.34 96.02-94.34-42.99-94.34-96.02z"] }; +var faBackspace = { prefix: 'fas', iconName: 'backspace', icon: [640, 512, [], "f55a", "M576 64H205.26A63.97 63.97 0 0 0 160 82.75L9.37 233.37c-12.5 12.5-12.5 32.76 0 45.25L160 429.25c12 12 28.28 18.75 45.25 18.75H576c35.35 0 64-28.65 64-64V128c0-35.35-28.65-64-64-64zm-84.69 254.06c6.25 6.25 6.25 16.38 0 22.63l-22.62 22.62c-6.25 6.25-16.38 6.25-22.63 0L384 301.25l-62.06 62.06c-6.25 6.25-16.38 6.25-22.63 0l-22.62-22.62c-6.25-6.25-6.25-16.38 0-22.63L338.75 256l-62.06-62.06c-6.25-6.25-6.25-16.38 0-22.63l22.62-22.62c6.25-6.25 16.38-6.25 22.63 0L384 210.75l62.06-62.06c6.25-6.25 16.38-6.25 22.63 0l22.62 22.62c6.25 6.25 6.25 16.38 0 22.63L429.25 256l62.06 62.06z"] }; +var faBackward = { prefix: 'fas', iconName: 'backward', icon: [512, 512, [], "f04a", "M11.5 280.6l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2zm256 0l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2z"] }; +var faBalanceScale = { prefix: 'fas', iconName: 'balance-scale', icon: [640, 512, [], "f24e", "M256 336h-.02c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0C-2.06 328.75.02 320.33.02 336H0c0 44.18 57.31 80 128 80s128-35.82 128-80zM128 176l72 144H56l72-144zm511.98 160c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 320l72-144 72 144H440zm88 128H352V153.25c23.51-10.29 41.16-31.48 46.39-57.25H528c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H383.64C369.04 12.68 346.09 0 320 0s-49.04 12.68-63.64 32H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h129.61c5.23 25.76 22.87 46.96 46.39 57.25V448H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"] }; +var faBan = { prefix: 'fas', iconName: 'ban', icon: [512, 512, [], "f05e", "M256 8C119.034 8 8 119.033 8 256s111.034 248 248 248 248-111.034 248-248S392.967 8 256 8zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676zM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676z"] }; +var faBandAid = { prefix: 'fas', iconName: 'band-aid', icon: [640, 512, [], "f462", "M0 160v192c0 35.3 28.7 64 64 64h96V96H64c-35.3 0-64 28.7-64 64zm576-64h-96v320h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64zM192 416h256V96H192v320zm176-232c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24z"] }; +var faBarcode = { prefix: 'fas', iconName: 'barcode', icon: [512, 512, [], "f02a", "M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z"] }; +var faBars = { prefix: 'fas', iconName: 'bars', icon: [448, 512, [], "f0c9", "M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faBaseballBall = { prefix: 'fas', iconName: 'baseball-ball', icon: [496, 512, [], "f433", "M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z"] }; +var faBasketballBall = { prefix: 'fas', iconName: 'basketball-ball', icon: [496, 512, [], "f434", "M212.3 10.3c-43.8 6.3-86.2 24.1-122.2 53.8l77.4 77.4c27.8-35.8 43.3-81.2 44.8-131.2zM248 222L405.9 64.1c-42.4-35-93.6-53.5-145.5-56.1-1.2 63.9-21.5 122.3-58.7 167.7L248 222zM56.1 98.1c-29.7 36-47.5 78.4-53.8 122.2 50-1.5 95.5-17 131.2-44.8L56.1 98.1zm272.2 204.2c45.3-37.1 103.7-57.4 167.7-58.7-2.6-51.9-21.1-103.1-56.1-145.5L282 256l46.3 46.3zM248 290L90.1 447.9c42.4 34.9 93.6 53.5 145.5 56.1 1.3-64 21.6-122.4 58.7-167.7L248 290zm191.9 123.9c29.7-36 47.5-78.4 53.8-122.2-50.1 1.6-95.5 17.1-131.2 44.8l77.4 77.4zM167.7 209.7C122.3 246.9 63.9 267.3 0 268.4c2.6 51.9 21.1 103.1 56.1 145.5L214 256l-46.3-46.3zm116 292c43.8-6.3 86.2-24.1 122.2-53.8l-77.4-77.4c-27.7 35.7-43.2 81.2-44.8 131.2z"] }; +var faBath = { prefix: 'fas', iconName: 'bath', icon: [512, 512, [], "f2cd", "M488 256H80V112c0-17.645 14.355-32 32-32 11.351 0 21.332 5.945 27.015 14.88-16.492 25.207-14.687 59.576 6.838 83.035-4.176 4.713-4.021 11.916.491 16.428l11.314 11.314c4.686 4.686 12.284 4.686 16.971 0l95.03-95.029c4.686-4.686 4.686-12.284 0-16.971l-11.314-11.314c-4.512-4.512-11.715-4.666-16.428-.491-17.949-16.469-42.294-21.429-64.178-15.365C163.281 45.667 139.212 32 112 32c-44.112 0-80 35.888-80 80v144h-8c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h8v32c0 28.43 12.362 53.969 32 71.547V456c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-8h256v8c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-32.453c19.638-17.578 32-43.117 32-71.547v-32h8c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z"] }; +var faBatteryEmpty = { prefix: 'fas', iconName: 'battery-empty', icon: [640, 512, [], "f244", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48z"] }; +var faBatteryFull = { prefix: 'fas', iconName: 'battery-full', icon: [640, 512, [], "f240", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-48 96H96v128h416V192z"] }; +var faBatteryHalf = { prefix: 'fas', iconName: 'battery-half', icon: [640, 512, [], "f242", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-240 96H96v128h224V192z"] }; +var faBatteryQuarter = { prefix: 'fas', iconName: 'battery-quarter', icon: [640, 512, [], "f243", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-336 96H96v128h128V192z"] }; +var faBatteryThreeQuarters = { prefix: 'fas', iconName: 'battery-three-quarters', icon: [640, 512, [], "f241", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-144 96H96v128h320V192z"] }; +var faBed = { prefix: 'fas', iconName: 'bed', icon: [640, 512, [], "f236", "M176 256c44.11 0 80-35.89 80-80s-35.89-80-80-80-80 35.89-80 80 35.89 80 80 80zm352-128H304c-8.84 0-16 7.16-16 16v144H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v352c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h512v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V240c0-61.86-50.14-112-112-112z"] }; +var faBeer = { prefix: 'fas', iconName: 'beer', icon: [448, 512, [], "f0fc", "M368 96h-48V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24v-42.11l80.606-35.977C429.396 365.063 448 336.388 448 304.86V176c0-44.112-35.888-80-80-80zm16 208.86a16.018 16.018 0 0 1-9.479 14.611L320 343.805V160h48c8.822 0 16 7.178 16 16v128.86zM208 384c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16zm-96 0c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16z"] }; +var faBell = { prefix: 'fas', iconName: 'bell', icon: [448, 512, [], "f0f3", "M433.884 366.059C411.634 343.809 384 316.118 384 208c0-79.394-57.831-145.269-133.663-157.83A31.845 31.845 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 6.75 2.095 13.008 5.663 18.17C121.831 62.731 64 128.606 64 208c0 108.118-27.643 135.809-49.893 158.059C-16.042 396.208 5.325 448 48.048 448H160c0 35.346 28.654 64 64 64s64-28.654 64-64h111.943c42.638 0 64.151-51.731 33.941-81.941zM224 472a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16c0 13.234 10.766 24 24 24z"] }; +var faBellSlash = { prefix: 'fas', iconName: 'bell-slash', icon: [576, 512, [], "f1f6", "M78.107 366.059C47.958 396.208 69.325 448 112.048 448H224c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h32.685L127.848 221.379c-2.198 97.078-28.439 123.378-49.741 144.68zM264 448c0 13.234 10.766 24 24 24a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16zm305.896 43.733l-10.762 12.086c-8.915 10.012-24.333 10.967-34.437 2.133L8.256 54.393C-1.848 45.558-2.811 30.28 6.104 20.267L16.865 8.181C25.781-1.831 41.199-2.786 51.303 6.049l113.81 99.512c24.017-28.778 57.946-48.996 96.55-55.39A31.85 31.85 0 0 1 256 32c0-17.673 14.327-32 32-32s32 14.327 32 32c0 6.75-2.095 13.008-5.663 18.17C390.169 62.731 448 128.606 448 208c0 108.118 27.634 135.809 49.884 158.059 12.149 12.149 15.923 27.776 13.33 42.121l56.53 49.427c10.104 8.835 11.067 24.113 2.152 34.126z"] }; +var faBezierCurve = { prefix: 'fas', iconName: 'bezier-curve', icon: [640, 512, [], "f55b", "M368 32h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM208 88h-84.75C113.75 64.56 90.84 48 64 48 28.66 48 0 76.65 0 112s28.66 64 64 64c26.84 0 49.75-16.56 59.25-40h79.73c-55.37 32.52-95.86 87.32-109.54 152h49.4c11.3-41.61 36.77-77.21 71.04-101.56-3.7-8.08-5.88-16.99-5.88-26.44V88zm-48 232H64c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zM576 48c-26.84 0-49.75 16.56-59.25 40H432v72c0 9.45-2.19 18.36-5.88 26.44 34.27 24.35 59.74 59.95 71.04 101.56h49.4c-13.68-64.68-54.17-119.48-109.54-152h79.73c9.5 23.44 32.41 40 59.25 40 35.34 0 64-28.65 64-64s-28.66-64-64-64zm0 272h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"] }; +var faBicycle = { prefix: 'fas', iconName: 'bicycle', icon: [640, 512, [], "f206", "M512.509 192.001c-16.373-.064-32.03 2.955-46.436 8.495l-77.68-125.153A24 24 0 0 0 368.001 64h-64c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h50.649l14.896 24H256.002v-16c0-8.837-7.163-16-16-16h-87.459c-13.441 0-24.777 10.999-24.536 24.437.232 13.044 10.876 23.563 23.995 23.563h48.726l-29.417 47.52c-13.433-4.83-27.904-7.483-42.992-7.52C58.094 191.83.412 249.012.002 319.236-.413 390.279 57.055 448 128.002 448c59.642 0 109.758-40.793 123.967-96h52.033a24 24 0 0 0 20.406-11.367L410.37 201.77l14.938 24.067c-25.455 23.448-41.385 57.081-41.307 94.437.145 68.833 57.899 127.051 126.729 127.719 70.606.685 128.181-55.803 129.255-125.996 1.086-70.941-56.526-129.72-127.476-129.996zM186.75 265.772c9.727 10.529 16.673 23.661 19.642 38.228h-43.306l23.664-38.228zM128.002 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c5.869 0 11.586.653 17.099 1.859l-45.505 73.509C89.715 331.327 101.213 352 120.002 352h81.3c-12.37 28.225-40.562 48-73.3 48zm162.63-96h-35.624c-3.96-31.756-19.556-59.894-42.383-80.026L237.371 184h127.547l-74.286 120zm217.057 95.886c-41.036-2.165-74.049-35.692-75.627-76.755-.812-21.121 6.633-40.518 19.335-55.263l44.433 71.586c4.66 7.508 14.524 9.816 22.032 5.156l13.594-8.437c7.508-4.66 9.817-14.524 5.156-22.032l-44.468-71.643a79.901 79.901 0 0 1 19.858-2.497c44.112 0 80 35.888 80 80-.001 45.54-38.252 82.316-84.313 79.885z"] }; +var faBinoculars = { prefix: 'fas', iconName: 'binoculars', icon: [512, 512, [], "f1e5", "M192 104H96V56c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24v48zm224-48c0-13.255-10.745-24-24-24h-48c-13.255 0-24 10.745-24 24v48h96V56zM0 456c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H0v16zm88-328c-13.255 0-24 10.745-24 24C64 256 0 272 0 416h168V312c0-13.255 10.745-24 24-24V128H88zm256 328c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H344v16zM216 128v160h80V128h-80zm128 288h168c0-144-64-160-64-264 0-13.255-10.745-24-24-24H320v160c13.255 0 24 10.745 24 24v104z"] }; +var faBirthdayCake = { prefix: 'fas', iconName: 'birthday-cake', icon: [448, 512, [], "f1fd", "M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z"] }; +var faBlender = { prefix: 'fas', iconName: 'blender', icon: [512, 512, [], "f517", "M416 384H160c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-128 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm40-416h166.54L512 0H48C21.49 0 0 21.49 0 48v160c0 26.51 21.49 48 48 48h103.27l8.73 96h256l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H328c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM64 192V64h69.82l11.64 128H64z"] }; +var faBlind = { prefix: 'fas', iconName: 'blind', icon: [384, 512, [], "f29d", "M380.15 510.837a8 8 0 0 1-10.989-2.687l-125.33-206.427a31.923 31.923 0 0 0 12.958-9.485l126.048 207.608a8 8 0 0 1-2.687 10.991zM142.803 314.338l-32.54 89.485 36.12 88.285c6.693 16.36 25.377 24.192 41.733 17.501 16.357-6.692 24.193-25.376 17.501-41.734l-62.814-153.537zM96 88c24.301 0 44-19.699 44-44S120.301 0 96 0 52 19.699 52 44s19.699 44 44 44zm154.837 169.128l-120-152c-4.733-5.995-11.75-9.108-18.837-9.112V96H80v.026c-7.146.003-14.217 3.161-18.944 9.24L0 183.766v95.694c0 13.455 11.011 24.791 24.464 24.536C37.505 303.748 48 293.1 48 280v-79.766l16-20.571v140.698L9.927 469.055c-6.04 16.609 2.528 34.969 19.138 41.009 16.602 6.039 34.968-2.524 41.009-19.138L136 309.638V202.441l-31.406-39.816a4 4 0 1 1 6.269-4.971l102.3 129.217c9.145 11.584 24.368 11.339 33.708 3.965 10.41-8.216 12.159-23.334 3.966-33.708z"] }; +var faBold = { prefix: 'fas', iconName: 'bold', icon: [384, 512, [], "f032", "M304.793 243.891c33.639-18.537 53.657-54.16 53.657-95.693 0-48.236-26.25-87.626-68.626-104.179C265.138 34.01 240.849 32 209.661 32H24c-8.837 0-16 7.163-16 16v33.049c0 8.837 7.163 16 16 16h33.113v318.53H24c-8.837 0-16 7.163-16 16V464c0 8.837 7.163 16 16 16h195.69c24.203 0 44.834-1.289 66.866-7.584C337.52 457.193 376 410.647 376 350.014c0-52.168-26.573-91.684-71.207-106.123zM142.217 100.809h67.444c16.294 0 27.536 2.019 37.525 6.717 15.828 8.479 24.906 26.502 24.906 49.446 0 35.029-20.32 56.79-53.029 56.79h-76.846V100.809zm112.642 305.475c-10.14 4.056-22.677 4.907-31.409 4.907h-81.233V281.943h84.367c39.645 0 63.057 25.38 63.057 63.057.001 28.425-13.66 52.483-34.782 61.284z"] }; +var faBolt = { prefix: 'fas', iconName: 'bolt', icon: [320, 512, [], "f0e7", "M295.973 160H180.572L215.19 30.184C219.25 14.956 207.756 0 192 0H56C43.971 0 33.8 8.905 32.211 20.828l-31.996 240C-1.704 275.217 9.504 288 24.004 288h118.701L96.646 482.466C93.05 497.649 104.659 512 119.992 512c8.35 0 16.376-4.374 20.778-11.978l175.973-303.997c9.244-15.967-2.288-36.025-20.77-36.025z"] }; +var faBomb = { prefix: 'fas', iconName: 'bomb', icon: [512, 512, [], "f1e2", "M440.5 88.5l-52 52L415 167c9.4 9.4 9.4 24.6 0 33.9l-17.4 17.4c11.8 26.1 18.4 55.1 18.4 85.6 0 114.9-93.1 208-208 208S0 418.9 0 304 93.1 96 208 96c30.5 0 59.5 6.6 85.6 18.4L311 97c9.4-9.4 24.6-9.4 33.9 0l26.5 26.5 52-52 17.1 17zM500 60h-24c-6.6 0-12 5.4-12 12s5.4 12 12 12h24c6.6 0 12-5.4 12-12s-5.4-12-12-12zM440 0c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12s12-5.4 12-12V12c0-6.6-5.4-12-12-12zm33.9 55l17-17c4.7-4.7 4.7-12.3 0-17-4.7-4.7-12.3-4.7-17 0l-17 17c-4.7 4.7-4.7 12.3 0 17 4.8 4.7 12.4 4.7 17 0zm-67.8 0c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17zm67.8 34c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17zM112 272c0-35.3 28.7-64 64-64 8.8 0 16-7.2 16-16s-7.2-16-16-16c-52.9 0-96 43.1-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16z"] }; +var faBong = { prefix: 'fas', iconName: 'bong', icon: [448, 512, [], "f55c", "M302.5 512c23.18 0 44.43-12.58 56-32.66C374.69 451.26 384 418.75 384 384c0-36.12-10.08-69.81-27.44-98.62L400 241.94l9.38 9.38c6.25 6.25 16.38 6.25 22.63 0l11.3-11.32c6.25-6.25 6.25-16.38 0-22.63l-52.69-52.69c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63l9.38 9.38-39.41 39.41c-11.56-11.37-24.53-21.33-38.65-29.51V63.74l15.97-.02c8.82-.01 15.97-7.16 15.98-15.98l.04-31.72C320 7.17 312.82-.01 303.97 0L80.03.26c-8.82.01-15.97 7.16-15.98 15.98l-.04 31.73c-.01 8.85 7.17 16.02 16.02 16.01L96 63.96v153.93C38.67 251.1 0 312.97 0 384c0 34.75 9.31 67.27 25.5 95.34C37.08 499.42 58.33 512 81.5 512h221zM120.06 259.43L144 245.56V63.91l96-.11v181.76l23.94 13.87c24.81 14.37 44.12 35.73 56.56 60.57h-257c12.45-24.84 31.75-46.2 56.56-60.57z"] }; +var faBook = { prefix: 'fas', iconName: 'book', icon: [448, 512, [], "f02d", "M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z"] }; +var faBookOpen = { prefix: 'fas', iconName: 'book-open', icon: [576, 512, [], "f518", "M542.22 32.05c-54.8 3.11-163.72 14.43-230.96 55.59-4.64 2.84-7.27 7.89-7.27 13.17v363.87c0 11.55 12.63 18.85 23.28 13.49 69.18-34.82 169.23-44.32 218.7-46.92 16.89-.89 30.02-14.43 30.02-30.66V62.75c.01-17.71-15.35-31.74-33.77-30.7zM264.73 87.64C197.5 46.48 88.58 35.17 33.78 32.05 15.36 31.01 0 45.04 0 62.75V400.6c0 16.24 13.13 29.78 30.02 30.66 49.49 2.6 149.59 12.11 218.77 46.95 10.62 5.35 23.21-1.94 23.21-13.46V100.63c0-5.29-2.62-10.14-7.27-12.99z"] }; +var faBookmark = { prefix: 'fas', iconName: 'bookmark', icon: [384, 512, [], "f02e", "M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z"] }; +var faBowlingBall = { prefix: 'fas', iconName: 'bowling-ball', icon: [496, 512, [], "f436", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM120 192c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64-96c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm48 144c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faBox = { prefix: 'fas', iconName: 'box', icon: [512, 512, [], "f466", "M509.5 184.6L458.9 32.8C452.4 13.2 434.1 0 413.4 0H272v192h238.7c-.4-2.5-.4-5-1.2-7.4zM240 0H98.6c-20.7 0-39 13.2-45.5 32.8L2.5 184.6c-.8 2.4-.8 4.9-1.2 7.4H240V0zM0 224v240c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V224H0z"] }; +var faBoxOpen = { prefix: 'fas', iconName: 'box-open', icon: [640, 512, [], "f49e", "M53.2 41L1.7 143.8c-4.6 9.2.3 20.2 10.1 23l197.9 56.5c7.1 2 14.7-1 18.5-7.3L320 64 69.8 32.1c-6.9-.8-13.5 2.7-16.6 8.9zm585.1 102.8L586.8 41c-3.1-6.2-9.8-9.8-16.7-8.9L320 64l91.7 152.1c3.8 6.3 11.4 9.3 18.5 7.3l197.9-56.5c9.9-2.9 14.7-13.9 10.2-23.1zM425.7 256c-16.9 0-32.8-9-41.4-23.4L320 126l-64.2 106.6c-8.7 14.5-24.6 23.5-41.5 23.5-4.5 0-9-.6-13.3-1.9L64 215v178c0 14.7 10 27.5 24.2 31l216.2 54.1c10.2 2.5 20.9 2.5 31 0L551.8 424c14.2-3.6 24.2-16.4 24.2-31V215l-137 39.1c-4.3 1.3-8.8 1.9-13.3 1.9z"] }; +var faBoxes = { prefix: 'fas', iconName: 'boxes', icon: [576, 512, [], "f468", "M560 288h-80v96l-32-21.3-32 21.3v-96h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16zm-384-64h224c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16h-80v96l-32-21.3L256 96V0h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16zm64 64h-80v96l-32-21.3L96 384v-96H16c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16z"] }; +var faBraille = { prefix: 'fas', iconName: 'braille', icon: [640, 512, [], "f2a1", "M128 256c0 35.346-28.654 64-64 64S0 291.346 0 256s28.654-64 64-64 64 28.654 64 64zM64 384c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352C28.654 32 0 60.654 0 96s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm224 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-320c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; +var faBriefcase = { prefix: 'fas', iconName: 'briefcase', icon: [512, 512, [], "f0b1", "M320 288h192v144c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V288h192v20c0 6.627 5.373 12 12 12h104c6.627 0 12-5.373 12-12v-20zm192-112v80H0v-80c0-26.51 21.49-48 48-48h80V80c0-26.51 21.49-48 48-48h160c26.51 0 48 21.49 48 48v48h80c26.51 0 48 21.49 48 48zM320 96H192v32h128V96z"] }; +var faBriefcaseMedical = { prefix: 'fas', iconName: 'briefcase-medical', icon: [512, 512, [], "f469", "M464 128h-80V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48zM192 96h128v32H192V96zm160 248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48z"] }; +var faBroadcastTower = { prefix: 'fas', iconName: 'broadcast-tower', icon: [640, 512, [], "f519", "M150.94 192h33.73c11.01 0 18.61-10.83 14.86-21.18-4.93-13.58-7.55-27.98-7.55-42.82s2.62-29.24 7.55-42.82C203.29 74.83 195.68 64 184.67 64h-33.73c-7.01 0-13.46 4.49-15.41 11.23C130.64 92.21 128 109.88 128 128c0 18.12 2.64 35.79 7.54 52.76 1.94 6.74 8.39 11.24 15.4 11.24zM89.92 23.34C95.56 12.72 87.97 0 75.96 0H40.63c-6.27 0-12.14 3.59-14.74 9.31C9.4 45.54 0 85.65 0 128c0 24.75 3.12 68.33 26.69 118.86 2.62 5.63 8.42 9.14 14.61 9.14h34.84c12.02 0 19.61-12.74 13.95-23.37-49.78-93.32-16.71-178.15-.17-209.29zM614.06 9.29C611.46 3.58 605.6 0 599.33 0h-35.42c-11.98 0-19.66 12.66-14.02 23.25 18.27 34.29 48.42 119.42.28 209.23-5.72 10.68 1.8 23.52 13.91 23.52h35.23c6.27 0 12.13-3.58 14.73-9.29C630.57 210.48 640 170.36 640 128s-9.42-82.48-25.94-118.71zM489.06 64h-33.73c-11.01 0-18.61 10.83-14.86 21.18 4.93 13.58 7.55 27.98 7.55 42.82s-2.62 29.24-7.55 42.82c-3.76 10.35 3.85 21.18 14.86 21.18h33.73c7.02 0 13.46-4.49 15.41-11.24 4.9-16.97 7.53-34.64 7.53-52.76 0-18.12-2.64-35.79-7.54-52.76-1.94-6.75-8.39-11.24-15.4-11.24zm-116.3 100.12c7.05-10.29 11.2-22.71 11.2-36.12 0-35.35-28.63-64-63.96-64-35.32 0-63.96 28.65-63.96 64 0 13.41 4.15 25.83 11.2 36.12l-130.5 313.41c-3.4 8.15.46 17.52 8.61 20.92l29.51 12.31c8.15 3.4 17.52-.46 20.91-8.61L244.96 384h150.07l49.2 118.15c3.4 8.16 12.76 12.01 20.91 8.61l29.51-12.31c8.15-3.4 12-12.77 8.61-20.92l-130.5-313.41zM271.62 320L320 203.81 368.38 320h-96.76z"] }; +var faBroom = { prefix: 'fas', iconName: 'broom', icon: [512, 512, [], "f51a", "M10.8 247.2C-.7 251.8-3.7 266.7 5 275.4l54.8 54.8 73.2-24.4-24.4 73.2 128 128c8.8 8.8 23.6 5.7 28.2-5.8l98.1-243.7-108.4-108.4-243.7 98.1zM507.3 27.3L484.7 4.7c-6.2-6.3-16.4-6.3-22.6 0L359.8 106.9l-40.4-40.4c-4.2-4.3-11.4-3-13.9 2.5l-27.2 58.6 106.1 106.1 58.6-27.2c5.4-2.5 6.7-9.7 2.5-13.9l-40.4-40.4L507.3 49.9c6.3-6.2 6.3-16.3 0-22.6z"] }; +var faBrush = { prefix: 'fas', iconName: 'brush', icon: [384, 512, [], "f55d", "M352 0H32C14.33 0 0 14.33 0 32v224h384V32c0-17.67-14.33-32-32-32zM0 320c0 35.35 28.66 64 64 64h64v64c0 35.35 28.66 64 64 64s64-28.65 64-64v-64h64c35.34 0 64-28.65 64-64v-32H0v32zm192 104c13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24s-24-10.75-24-24c0-13.26 10.75-24 24-24z"] }; +var faBug = { prefix: 'fas', iconName: 'bug', icon: [512, 512, [], "f188", "M511.988 288.9c-.478 17.43-15.217 31.1-32.653 31.1H424v16c0 21.864-4.882 42.584-13.6 61.145l60.228 60.228c12.496 12.497 12.496 32.758 0 45.255-12.498 12.497-32.759 12.496-45.256 0l-54.736-54.736C345.886 467.965 314.351 480 280 480V236c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v244c-34.351 0-65.886-12.035-90.636-32.108l-54.736 54.736c-12.498 12.497-32.759 12.496-45.256 0-12.496-12.497-12.496-32.758 0-45.255l60.228-60.228C92.882 378.584 88 357.864 88 336v-16H32.666C15.23 320 .491 306.33.013 288.9-.484 270.816 14.028 256 32 256h56v-58.745l-46.628-46.628c-12.496-12.497-12.496-32.758 0-45.255 12.498-12.497 32.758-12.497 45.256 0L141.255 160h229.489l54.627-54.627c12.498-12.497 32.758-12.497 45.256 0 12.496 12.497 12.496 32.758 0 45.255L424 197.255V256h56c17.972 0 32.484 14.816 31.988 32.9zM257 0c-61.856 0-112 50.144-112 112h224C369 50.144 318.856 0 257 0z"] }; +var faBuilding = { prefix: 'fas', iconName: 'building', icon: [448, 512, [], "f1ad", "M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z"] }; +var faBullhorn = { prefix: 'fas', iconName: 'bullhorn', icon: [576, 512, [], "f0a1", "M576 224c0-20.896-13.36-38.666-32-45.258V64c0-35.346-28.654-64-64-64-64.985 56-142.031 128-272 128H48c-26.51 0-48 21.49-48 48v96c0 26.51 21.49 48 48 48h43.263c-18.742 64.65 2.479 116.379 18.814 167.44 1.702 5.32 5.203 9.893 9.922 12.88 20.78 13.155 68.355 15.657 93.773 5.151 16.046-6.633 19.96-27.423 7.522-39.537-18.508-18.026-30.136-36.91-19.795-60.858a12.278 12.278 0 0 0-1.045-11.673c-16.309-24.679-3.581-62.107 28.517-72.752C346.403 327.887 418.591 395.081 480 448c35.346 0 64-28.654 64-64V269.258c18.64-6.592 32-24.362 32-45.258zm-96 139.855c-54.609-44.979-125.033-92.94-224-104.982v-69.747c98.967-12.042 169.391-60.002 224-104.982v279.711z"] }; +var faBullseye = { prefix: 'fas', iconName: 'bullseye', icon: [512, 512, [], "f140", "M256 72c101.689 0 184 82.295 184 184 0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-101.689 82.295-184 184-184m0-64C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 184c35.29 0 64 28.71 64 64s-28.71 64-64 64-64-28.71-64-64 28.71-64 64-64m0-64c-70.692 0-128 57.308-128 128s57.308 128 128 128 128-57.308 128-128-57.308-128-128-128z"] }; +var faBurn = { prefix: 'fas', iconName: 'burn', icon: [384, 512, [], "f46a", "M192 0C79.7 101.3 0 220.9 0 300.5 0 425 79 512 192 512s192-87 192-211.5c0-79.9-80.2-199.6-192-300.5zm0 448c-56.5 0-96-39-96-94.8 0-13.5 4.6-61.5 96-161.2 91.4 99.7 96 147.7 96 161.2 0 55.8-39.5 94.8-96 94.8z"] }; +var faBus = { prefix: 'fas', iconName: 'bus', icon: [512, 512, [], "f207", "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM112 400c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm16-112c-17.67 0-32-14.33-32-32V128c0-17.67 14.33-32 32-32h256c17.67 0 32 14.33 32 32v128c0 17.67-14.33 32-32 32H128zm272 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faBusAlt = { prefix: 'fas', iconName: 'bus-alt', icon: [512, 512, [], "f55e", "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM160 72c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H168c-4.42 0-8-3.58-8-8V72zm-48 328c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm128-112H128c-17.67 0-32-14.33-32-32v-96c0-17.67 14.33-32 32-32h112v160zm32 0V128h112c17.67 0 32 14.33 32 32v96c0 17.67-14.33 32-32 32H272zm128 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faCalculator = { prefix: 'fas', iconName: 'calculator', icon: [448, 512, [], "f1ec", "M0 464V48C0 21.49 21.49 0 48 0h352c26.51 0 48 21.49 48 48v416c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm384-284V76c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v104c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12zM128 308v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm256 128V268c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-256 0v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm128-128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm0 128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"] }; +var faCalendar = { prefix: 'fas', iconName: 'calendar', icon: [448, 512, [], "f133", "M12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm436-44v-36c0-26.5-21.5-48-48-48h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v36c0 6.6 5.4 12 12 12h424c6.6 0 12-5.4 12-12z"] }; +var faCalendarAlt = { prefix: 'fas', iconName: 'calendar-alt', icon: [448, 512, [], "f073", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm116 204c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40z"] }; +var faCalendarCheck = { prefix: 'fas', iconName: 'calendar-check', icon: [448, 512, [], "f274", "M436 160H12c-6.627 0-12-5.373-12-12v-36c0-26.51 21.49-48 48-48h48V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h128V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h48c26.51 0 48 21.49 48 48v36c0 6.627-5.373 12-12 12zM12 192h424c6.627 0 12 5.373 12 12v260c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V204c0-6.627 5.373-12 12-12zm333.296 95.947l-28.169-28.398c-4.667-4.705-12.265-4.736-16.97-.068L194.12 364.665l-45.98-46.352c-4.667-4.705-12.266-4.736-16.971-.068l-28.397 28.17c-4.705 4.667-4.736 12.265-.068 16.97l82.601 83.269c4.667 4.705 12.265 4.736 16.97.068l142.953-141.805c4.705-4.667 4.736-12.265.068-16.97z"] }; +var faCalendarMinus = { prefix: 'fas', iconName: 'calendar-minus', icon: [448, 512, [], "f272", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm304 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H132c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h184z"] }; +var faCalendarPlus = { prefix: 'fas', iconName: 'calendar-plus', icon: [448, 512, [], "f271", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm316 140c0-6.6-5.4-12-12-12h-60v-60c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v60h-60c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h60v60c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-60h60c6.6 0 12-5.4 12-12v-40z"] }; +var faCalendarTimes = { prefix: 'fas', iconName: 'calendar-times', icon: [448, 512, [], "f273", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm257.3 160l48.1-48.1c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0L224 306.7l-48.1-48.1c-4.7-4.7-12.3-4.7-17 0l-28.3 28.3c-4.7 4.7-4.7 12.3 0 17l48.1 48.1-48.1 48.1c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l48.1-48.1 48.1 48.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L269.3 352z"] }; +var faCamera = { prefix: 'fas', iconName: 'camera', icon: [512, 512, [], "f030", "M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z"] }; +var faCameraRetro = { prefix: 'fas', iconName: 'camera-retro', icon: [512, 512, [], "f083", "M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm0 32h106c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H38c-3.3 0-6-2.7-6-6V80c0-8.8 7.2-16 16-16zm426 96H38c-3.3 0-6-2.7-6-6v-36c0-3.3 2.7-6 6-6h138l30.2-45.3c1.1-1.7 3-2.7 5-2.7H464c8.8 0 16 7.2 16 16v74c0 3.3-2.7 6-6 6zM256 424c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88zm-48 104c-8.8 0-16-7.2-16-16 0-35.3 28.7-64 64-64 8.8 0 16 7.2 16 16s-7.2 16-16 16c-17.6 0-32 14.4-32 32 0 8.8-7.2 16-16 16z"] }; +var faCannabis = { prefix: 'fas', iconName: 'cannabis', icon: [512, 512, [], "f55f", "M503.47 360.25c-1.56-.82-32.39-16.89-76.78-25.81 64.25-75.12 84.05-161.67 84.93-165.64 1.18-5.33-.44-10.9-4.3-14.77-3.03-3.04-7.12-4.7-11.32-4.7-1.14 0-2.29.12-3.44.38-3.88.85-86.54 19.59-160.58 79.76.01-1.46.01-2.93.01-4.4 0-118.79-59.98-213.72-62.53-217.7A15.973 15.973 0 0 0 256 0c-5.45 0-10.53 2.78-13.47 7.37-2.55 3.98-62.53 98.91-62.53 217.7 0 1.47.01 2.94.01 4.4-74.03-60.16-156.69-78.9-160.58-79.76-1.14-.25-2.29-.38-3.44-.38-4.2 0-8.29 1.66-11.32 4.7A15.986 15.986 0 0 0 .38 168.8c.88 3.97 20.68 90.52 84.93 165.64-44.39 8.92-75.21 24.99-76.78 25.81a16.003 16.003 0 0 0-.02 28.29c2.45 1.29 60.76 31.72 133.49 31.72 6.14 0 11.96-.1 17.5-.31-11.37 22.23-16.52 38.31-16.81 39.22-1.8 5.68-.29 11.89 3.91 16.11a16.019 16.019 0 0 0 16.1 3.99c1.83-.57 37.72-11.99 77.3-39.29V504c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8v-64.01c39.58 27.3 75.47 38.71 77.3 39.29a16.019 16.019 0 0 0 16.1-3.99c4.2-4.22 5.71-10.43 3.91-16.11-.29-.91-5.45-16.99-16.81-39.22 5.54.21 11.37.31 17.5.31 72.72 0 131.04-30.43 133.49-31.72 5.24-2.78 8.52-8.22 8.51-14.15-.01-5.94-3.29-11.39-8.53-14.15z"] }; +var faCapsules = { prefix: 'fas', iconName: 'capsules', icon: [576, 512, [], "f46b", "M555.3 300.1L424.2 112.8C401.9 81 366.4 64 330.4 64c-22.6 0-45.5 6.7-65.5 20.7-19.7 13.8-33.7 32.8-41.5 53.8C220.5 79.2 172 32 112 32 50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V218.9c3.3 8.6 7.3 17.1 12.8 25L368 431.2c22.2 31.8 57.7 48.8 93.8 48.8 22.7 0 45.5-6.7 65.5-20.7 51.7-36.2 64.2-107.5 28-159.2zM160 256H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm194.8 44.9l-65.6-93.7c-7.7-11-10.7-24.4-8.3-37.6 2.3-13.2 9.7-24.8 20.7-32.5 8.5-6 18.5-9.1 28.8-9.1 16.5 0 31.9 8 41.3 21.5l65.6 93.7-82.5 57.7z"] }; +var faCar = { prefix: 'fas', iconName: 'car', icon: [512, 512, [], "f1b9", "M499.991 168h-54.815l-7.854-20.944c-9.192-24.513-25.425-45.351-46.942-60.263S343.651 64 317.472 64H194.528c-26.18 0-51.391 7.882-72.908 22.793-21.518 14.912-37.75 35.75-46.942 60.263L66.824 168H12.009c-8.191 0-13.974 8.024-11.384 15.795l8 24A12 12 0 0 0 20.009 216h28.815l-.052.14C29.222 227.093 16 247.997 16 272v48c0 16.225 6.049 31.029 16 42.309V424c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-40h256v40c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-61.691c9.951-11.281 16-26.085 16-42.309v-48c0-24.003-13.222-44.907-32.772-55.86l-.052-.14h28.815a12 12 0 0 0 11.384-8.205l8-24c2.59-7.771-3.193-15.795-11.384-15.795zm-365.388 1.528C143.918 144.689 168 128 194.528 128h122.944c26.528 0 50.61 16.689 59.925 41.528L391.824 208H120.176l14.427-38.472zM88 328c-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32s48 30.327 48 48-30.327 16-48 16zm336 0c-17.673 0-48 1.673-48-16 0-17.673 30.327-48 48-48s32 14.327 32 32c0 17.673-14.327 32-32 32z"] }; +var faCaretDown = { prefix: 'fas', iconName: 'caret-down', icon: [320, 512, [], "f0d7", "M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z"] }; +var faCaretLeft = { prefix: 'fas', iconName: 'caret-left', icon: [192, 512, [], "f0d9", "M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z"] }; +var faCaretRight = { prefix: 'fas', iconName: 'caret-right', icon: [192, 512, [], "f0da", "M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z"] }; +var faCaretSquareDown = { prefix: 'fas', iconName: 'caret-square-down', icon: [448, 512, [], "f150", "M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM92.5 220.5l123 123c4.7 4.7 12.3 4.7 17 0l123-123c7.6-7.6 2.2-20.5-8.5-20.5H101c-10.7 0-16.1 12.9-8.5 20.5z"] }; +var faCaretSquareLeft = { prefix: 'fas', iconName: 'caret-square-left', icon: [448, 512, [], "f191", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM259.515 124.485l-123.03 123.03c-4.686 4.686-4.686 12.284 0 16.971l123.029 123.029c7.56 7.56 20.485 2.206 20.485-8.485V132.971c.001-10.691-12.925-16.045-20.484-8.486z"] }; +var faCaretSquareRight = { prefix: 'fas', iconName: 'caret-square-right', icon: [448, 512, [], "f152", "M48 32h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48zm140.485 355.515l123.029-123.029c4.686-4.686 4.686-12.284 0-16.971l-123.029-123.03c-7.56-7.56-20.485-2.206-20.485 8.485v246.059c0 10.691 12.926 16.045 20.485 8.486z"] }; +var faCaretSquareUp = { prefix: 'fas', iconName: 'caret-square-up', icon: [448, 512, [], "f151", "M0 432V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm355.515-140.485l-123.03-123.03c-4.686-4.686-12.284-4.686-16.971 0L92.485 291.515c-7.56 7.56-2.206 20.485 8.485 20.485h246.059c10.691 0 16.045-12.926 8.486-20.485z"] }; +var faCaretUp = { prefix: 'fas', iconName: 'caret-up', icon: [320, 512, [], "f0d8", "M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z"] }; +var faCartArrowDown = { prefix: 'fas', iconName: 'cart-arrow-down', icon: [576, 512, [], "f218", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z"] }; +var faCartPlus = { prefix: 'fas', iconName: 'cart-plus', icon: [576, 512, [], "f217", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM408 168h-48v-40c0-8.837-7.163-16-16-16h-16c-8.837 0-16 7.163-16 16v40h-48c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h48v40c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-40h48c8.837 0 16-7.163 16-16v-16c0-8.837-7.163-16-16-16z"] }; +var faCertificate = { prefix: 'fas', iconName: 'certificate', icon: [512, 512, [], "f0a3", "M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z"] }; +var faChalkboard = { prefix: 'fas', iconName: 'chalkboard', icon: [640, 512, [], "f51b", "M96 64h448v352h64V40c0-22.06-17.94-40-40-40H72C49.94 0 32 17.94 32 40v376h64V64zm528 384H480v-64H288v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"] }; +var faChalkboardTeacher = { prefix: 'fas', iconName: 'chalkboard-teacher', icon: [640, 512, [], "f51c", "M208 352c-2.39 0-4.78.35-7.06 1.09C187.98 357.3 174.35 360 160 360c-14.35 0-27.98-2.7-40.95-6.91-2.28-.74-4.66-1.09-7.05-1.09C49.94 352-.33 402.48 0 464.62.14 490.88 21.73 512 48 512h224c26.27 0 47.86-21.12 48-47.38.33-62.14-49.94-112.62-112-112.62zm-48-32c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM592 0H208c-26.47 0-48 22.25-48 49.59V96c23.42 0 45.1 6.78 64 17.8V64h352v288h-64v-64H384v64h-76.24c19.1 16.69 33.12 38.73 39.69 64H592c26.47 0 48-22.25 48-49.59V49.59C640 22.25 618.47 0 592 0z"] }; +var faChartArea = { prefix: 'fas', iconName: 'chart-area', icon: [512, 512, [], "f1fe", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z"] }; +var faChartBar = { prefix: 'fas', iconName: 'chart-bar', icon: [512, 512, [], "f080", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zm-308-44v-72c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V204c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V108c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"] }; +var faChartLine = { prefix: 'fas', iconName: 'chart-line', icon: [512, 512, [], "f201", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM456 96H344c-21.4 0-32.1 25.9-17 41l32.9 32.9-72 72.9-55.6-55.6c-4.7-4.7-12.2-4.7-16.9 0L96.4 305c-4.7 4.6-4.8 12.2-.2 16.9l28.5 29.4c4.7 4.8 12.4 4.9 17.1.1l82.1-82.1 55.5 55.5c4.7 4.7 12.3 4.7 17 0l109.2-109.2L439 249c15.1 15.1 41 4.4 41-17V120c0-13.3-10.7-24-24-24z"] }; +var faChartPie = { prefix: 'fas', iconName: 'chart-pie', icon: [576, 512, [], "f200", "M288 12.3V240h227.7c6.9 0 12.3-5.8 12-12.7-6.4-122.4-104.5-220.6-227-227-6.9-.3-12.7 5.1-12.7 12zM552.7 288c6.9 0 12.3 5.8 12 12.7-2.8 53.2-23.2 105.6-61.2 147.8-4.6 5.1-12.6 5.4-17.5.5L325 288h227.7zM401 433c4.8 4.8 4.7 12.8-.4 17.3-42.6 38.4-99 61.7-160.8 61.7C107.6 511.9-.2 403.8 0 271.5.2 143.4 100.8 38.9 227.3 32.3c6.9-.4 12.7 5.1 12.7 12V272l161 161z"] }; +var faCheck = { prefix: 'fas', iconName: 'check', icon: [512, 512, [], "f00c", "M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"] }; +var faCheckCircle = { prefix: 'fas', iconName: 'check-circle', icon: [512, 512, [], "f058", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"] }; +var faCheckDouble = { prefix: 'fas', iconName: 'check-double', icon: [512, 512, [], "f560", "M504.5 171.95l-36.2-36.41c-10-10.05-26.21-10.05-36.2 0L192 377.02 79.9 264.28c-10-10.06-26.21-10.06-36.2 0L7.5 300.69c-10 10.05-10 26.36 0 36.41l166.4 167.36c10 10.06 26.21 10.06 36.2 0l294.4-296.09c10-10.06 10-26.36 0-36.42zM166.57 282.71c6.84 7.02 18.18 7.02 25.21.18L403.85 72.62c7.02-6.84 7.02-18.18.18-25.21L362.08 5.29c-6.84-7.02-18.18-7.02-25.21-.18L179.71 161.19l-68.23-68.77c-6.84-7.02-18.18-7.02-25.2-.18l-42.13 41.77c-7.02 6.84-7.02 18.18-.18 25.2l122.6 123.5z"] }; +var faCheckSquare = { prefix: 'fas', iconName: 'check-square', icon: [448, 512, [], "f14a", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"] }; +var faChess = { prefix: 'fas', iconName: 'chess', icon: [512, 512, [], "f439", "M199.821 217.633a6 6 0 0 1 6 6l-.001 20.766a6 6 0 0 1-6 6h-25.805c0 31.715-2.153 96.201 17.398 153.229H64.597C84.54 345.452 82.02 279.245 82.02 250.399H56.183a6 6 0 0 1-6-6l.002-20.766a6 6 0 0 1 6-6h143.636zM41.554 115.088l34.58 95.071h103.734l34.572-95.072c2.846-7.826-2.95-16.101-11.278-16.101H152v-30.22h21.57a6 6 0 0 0 6-6V40.383a6 6 0 0 0-6-6h-28.367V6a6 6 0 0 0-6-6H116.82a6 6 0 0 0-6 6v28.383H82.421a6 6 0 0 0-6 6v22.383a6 6 0 0 0 6 6H104v30.219H52.831c-8.328.001-14.124 8.276-11.277 16.103zM222.678 445.17v-28.067a6 6 0 0 0-6-6H39.322a6 6 0 0 0-6 6v28.067l-22.148 14.164a6 6 0 0 0-2.767 5.055V506a6 6 0 0 0 6 6h227.187a6 6 0 0 0 6-6v-41.612a6 6 0 0 0-2.767-5.055l-22.149-14.163zm90.578-144.225l24.88 16.963c.09 18.124-.167 63.904-11.905 114.522h147.526c-11.713-50.475-11.969-96.324-11.882-114.537l24.859-16.949a3.856 3.856 0 0 0 1.684-3.187v-69.901a3.857 3.857 0 0 0-3.857-3.857h-27.655a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.858-3.857h-52.918a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.857-3.857H315.43a3.857 3.857 0 0 0-3.857 3.857v69.901a3.855 3.855 0 0 0 1.683 3.188zm71.585 51.906c0-8.372 6.787-15.158 15.159-15.158s15.158 6.787 15.158 15.158v30.318h-30.317v-30.318zM504.62 470.059l-13.664-10.639v-15.552a3.857 3.857 0 0 0-3.857-3.857H312.915a3.857 3.857 0 0 0-3.857 3.857v15.552l-13.677 10.639a3.857 3.857 0 0 0-1.488 3.044v35.039a3.857 3.857 0 0 0 3.857 3.857h204.5a3.857 3.857 0 0 0 3.857-3.857v-35.04a3.859 3.859 0 0 0-1.487-3.043z"] }; +var faChessBishop = { prefix: 'fas', iconName: 'chess-bishop', icon: [320, 512, [], "f43a", "M123.158 77.881C107.369 72.53 96 57.597 96 40c0-22.091 17.909-40 40-40h47.796c22.091 0 40 17.909 40 40 0 17.541-11.295 32.434-27.005 37.829 23.993 16.657 48.577 46.839 68.703 82.05L144.929 280.443a6 6 0 0 0 0 8.485l14.142 14.142a6 6 0 0 0 8.485 0L280.9 189.726c17.758 38.297 29.371 79.443 29.371 114.273 0 53.786-22.897 75.788-58.446 86.033V448H68.174v-57.97C32.631 379.784 9.739 357.781 9.739 304c0-78.029 58.281-187.766 113.419-226.119zM320 500v-24c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12z"] }; +var faChessBoard = { prefix: 'fas', iconName: 'chess-board', icon: [512, 512, [], "f43c", "M256 256v64h-64v-64h64zm0-256h-64v64h64V0zm0 256h64v-64h-64v64zM384 0h-64v64h64V0zm0 512h64v-64h-64v64zm128-64v-64h-64v64h64zm-384 64h64v-64h-64v64zm0-512H64v64h64V0zm384 192v-64h-64v64h64zm0 128v-64h-64v64h64zM0 512h64v-64H0v64zM0 64v64h64V64H0zm0 128v64h64v-64H0zm0 128v64h64v-64H0zm256 192h64v-64h-64v64zm-64-128v64h64v-64h-64zm64-192v-64h-64v64h64zM64 384v64h64v-64H64zm64-128H64v64h64v-64zm256 128h64v-64h-64v64zM512 0h-64v64h64V0zM384 256h64v-64h-64v64zm0-192v64h64V64h-64zm-64 320v64h64v-64h-64zm-192-64v64h64v-64h-64zm128 0v64h64v-64h-64zm-64-128h-64v64h64v-64zm-64-64H64v64h64v-64zm192 192h64v-64h-64v64zM192 128V64h-64v64h64zm128 0V64h-64v64h64zm0 64h64v-64h-64v64z"] }; +var faChessKing = { prefix: 'fas', iconName: 'chess-king', icon: [448, 512, [], "f43f", "M416 476v24c0 6.627-5.373 12-12 12H44c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12zm-8.033-324H248v-48h50a6 6 0 0 0 6-6V62a6 6 0 0 0-6-6h-50V6a6 6 0 0 0-6-6h-36a6 6 0 0 0-6 6v50h-50a6 6 0 0 0-6 6v36a6 6 0 0 0 6 6h50v48H40.033c-27.574 0-46.879 27.244-37.738 53.259L87.582 448h272.836l85.287-242.741C454.846 179.244 435.541 152 407.967 152z"] }; +var faChessKnight = { prefix: 'fas', iconName: 'chess-knight', icon: [384, 512, [], "f441", "M352 224v224H32v-46.557c0-30.302 17.12-58.003 44.223-71.554l57.243-28.622A48 48 0 0 0 160 258.334V208l-22.127 11.063a23.996 23.996 0 0 0-12.55 15.645l-11.835 47.338a12 12 0 0 1-7.185 8.231l-29.601 11.84a11.998 11.998 0 0 1-9.33-.176L7.126 275.167A12 12 0 0 1 0 264.201v-158.26c0-6.365 2.529-12.47 7.03-16.971L16 80 1.789 51.578A16.937 16.937 0 0 1 0 44c0-6.627 5.373-12 12-12h148c106.039 0 192 85.961 192 192zm20 240H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12zM52 128c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z"] }; +var faChessPawn = { prefix: 'fas', iconName: 'chess-pawn', icon: [320, 512, [], "f443", "M264 448H56s60-42.743 60-176H84c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h40.209C95.721 210.56 76 181.588 76 148c0-46.392 37.608-84 84-84s84 37.608 84 84c0 33.588-19.721 62.56-48.209 76H236c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12h-32c0 133.257 60 176 60 176zm28 16H28c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h264c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12z"] }; +var faChessQueen = { prefix: 'fas', iconName: 'chess-queen', icon: [512, 512, [], "f445", "M436 512H76c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12zM255.579 0c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zm204.568 154.634c-5.768-3.045-12.916-.932-16.082 4.77-8.616 15.516-22.747 37.801-44.065 37.801-28.714 0-30.625-19.804-31.686-57.542-.183-6.492-5.501-11.664-11.995-11.664h-41.006c-5.175 0-9.754 3.328-11.388 8.238-8.89 26.709-26.073 40.992-47.925 40.992s-39.034-14.283-47.925-40.992c-1.634-4.91-6.213-8.238-11.388-8.238h-41.005c-6.495 0-11.813 5.174-11.995 11.667-1.052 37.642-2.934 57.539-31.688 57.539-20.691 0-33.817-20.224-44.425-38.025-3.266-5.48-10.258-7.431-15.899-4.453l-39.179 20.679a12 12 0 0 0-5.51 15.145L112 448h288l105.014-257.448a12 12 0 0 0-5.51-15.145l-39.357-20.773z"] }; +var faChessRook = { prefix: 'fas', iconName: 'chess-rook', icon: [384, 512, [], "f447", "M81.241 215.027C80.957 258.92 77.411 348.076 48 448h287.982c-29.4-99.604-32.936-188.912-33.221-232.975l45.418-42.312a11.998 11.998 0 0 0 3.82-8.78V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v44h-48V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v44H96V44c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v119.932c0 3.33 1.384 6.51 3.82 8.78l45.421 42.315zM160 256c0-17.673 14.327-32 32-32 17.673 0 32 14.327 32 32v64.004h-64V256zm224 220v24c0 6.627-5.373 12-12 12H12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12z"] }; +var faChevronCircleDown = { prefix: 'fas', iconName: 'chevron-circle-down', icon: [512, 512, [], "f13a", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM273 369.9l135.5-135.5c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L256 285.1 154.4 183.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L239 369.9c9.4 9.4 24.6 9.4 34 0z"] }; +var faChevronCircleLeft = { prefix: 'fas', iconName: 'chevron-circle-left', icon: [512, 512, [], "f137", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z"] }; +var faChevronCircleRight = { prefix: 'fas', iconName: 'chevron-circle-right', icon: [512, 512, [], "f138", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z"] }; +var faChevronCircleUp = { prefix: 'fas', iconName: 'chevron-circle-up', icon: [512, 512, [], "f139", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm231-113.9L103.5 277.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L256 226.9l101.6 101.6c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L273 142.1c-9.4-9.4-24.6-9.4-34 0z"] }; +var faChevronDown = { prefix: 'fas', iconName: 'chevron-down', icon: [448, 512, [], "f078", "M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"] }; +var faChevronLeft = { prefix: 'fas', iconName: 'chevron-left', icon: [320, 512, [], "f053", "M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z"] }; +var faChevronRight = { prefix: 'fas', iconName: 'chevron-right', icon: [320, 512, [], "f054", "M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z"] }; +var faChevronUp = { prefix: 'fas', iconName: 'chevron-up', icon: [448, 512, [], "f077", "M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z"] }; +var faChild = { prefix: 'fas', iconName: 'child', icon: [384, 512, [], "f1ae", "M120 72c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.764-32.235 72-72 72s-72-32.236-72-72zm254.627 1.373c-12.496-12.497-32.758-12.497-45.254 0L242.745 160H141.254L54.627 73.373c-12.496-12.497-32.758-12.497-45.254 0-12.497 12.497-12.497 32.758 0 45.255L104 213.254V480c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V368h16v112c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V213.254l94.627-94.627c12.497-12.497 12.497-32.757 0-45.254z"] }; +var faChurch = { prefix: 'fas', iconName: 'church', icon: [640, 512, [], "f51d", "M464.46 246.68L352 179.2V128h48c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-48V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v48h-48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v51.2l-112.46 67.48A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.65-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.54A32.024 32.024 0 0 0 0 395.96zm620.61-29.42L512 320v192h112c8.84 0 16-7.16 16-16V395.96c0-12.8-7.63-24.37-19.39-29.42z"] }; +var faCircle = { prefix: 'fas', iconName: 'circle', icon: [512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"] }; +var faCircleNotch = { prefix: 'fas', iconName: 'circle-notch', icon: [512, 512, [], "f1ce", "M288 39.056v16.659c0 10.804 7.281 20.159 17.686 23.066C383.204 100.434 440 171.518 440 256c0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-84.47 56.786-155.564 134.312-177.219C216.719 75.874 224 66.517 224 55.712V39.064c0-15.709-14.834-27.153-30.046-23.234C86.603 43.482 7.394 141.206 8.003 257.332c.72 137.052 111.477 246.956 248.531 246.667C393.255 503.711 504 392.788 504 256c0-115.633-79.14-212.779-186.211-240.236C302.678 11.889 288 23.456 288 39.056z"] }; +var faClipboard = { prefix: 'fas', iconName: 'clipboard', icon: [384, 512, [], "f328", "M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z"] }; +var faClipboardCheck = { prefix: 'fas', iconName: 'clipboard-check', icon: [384, 512, [], "f46c", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm121.2 231.8l-143 141.8c-4.7 4.7-12.3 4.6-17-.1l-82.6-83.3c-4.7-4.7-4.6-12.3.1-17L99.1 285c4.7-4.7 12.3-4.6 17 .1l46 46.4 106-105.2c4.7-4.7 12.3-4.6 17 .1l28.2 28.4c4.7 4.8 4.6 12.3-.1 17z"] }; +var faClipboardList = { prefix: 'fas', iconName: 'clipboard-list', icon: [384, 512, [], "f46d", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM96 424c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm96-192c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm128 368c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z"] }; +var faClock = { prefix: 'fas', iconName: 'clock', icon: [512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm57.1 350.1L224.9 294c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v137.7l63.5 46.2c5.4 3.9 6.5 11.4 2.6 16.8l-28.2 38.8c-3.9 5.3-11.4 6.5-16.8 2.6z"] }; +var faClone = { prefix: 'fas', iconName: 'clone', icon: [512, 512, [], "f24d", "M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z"] }; +var faClosedCaptioning = { prefix: 'fas', iconName: 'closed-captioning', icon: [512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM218.1 287.7c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2.1 48 51.1 70.5 92.3 32.6zm190.4 0c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.5 56.9-172.7 32.1-172.7-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 222.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6z"] }; +var faCloud = { prefix: 'fas', iconName: 'cloud', icon: [640, 512, [], "f0c2", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z"] }; +var faCloudDownloadAlt = { prefix: 'fas', iconName: 'cloud-download-alt', icon: [640, 512, [], "f381", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z"] }; +var faCloudUploadAlt = { prefix: 'fas', iconName: 'cloud-upload-alt', icon: [640, 512, [], "f382", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z"] }; +var faCocktail = { prefix: 'fas', iconName: 'cocktail', icon: [576, 512, [], "f561", "M296 464h-56V338.78l168.74-168.73c15.52-15.52 4.53-42.05-17.42-42.05H24.68c-21.95 0-32.94 26.53-17.42 42.05L176 338.78V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM432 0c-62.61 0-115.35 40.2-135.18 96h52.54c16.65-28.55 47.27-48 82.64-48 52.93 0 96 43.06 96 96s-43.07 96-96 96c-14.04 0-27.29-3.2-39.32-8.64l-35.26 35.26C379.23 279.92 404.59 288 432 288c79.53 0 144-64.47 144-144S511.53 0 432 0z"] }; +var faCode = { prefix: 'fas', iconName: 'code', icon: [640, 512, [], "f121", "M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"] }; +var faCodeBranch = { prefix: 'fas', iconName: 'code-branch', icon: [384, 512, [], "f126", "M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"] }; +var faCoffee = { prefix: 'fas', iconName: 'coffee', icon: [640, 512, [], "f0f4", "M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z"] }; +var faCog = { prefix: 'fas', iconName: 'cog', icon: [512, 512, [], "f013", "M444.788 291.1l42.616 24.599c4.867 2.809 7.126 8.618 5.459 13.985-11.07 35.642-29.97 67.842-54.689 94.586a12.016 12.016 0 0 1-14.832 2.254l-42.584-24.595a191.577 191.577 0 0 1-60.759 35.13v49.182a12.01 12.01 0 0 1-9.377 11.718c-34.956 7.85-72.499 8.256-109.219.007-5.49-1.233-9.403-6.096-9.403-11.723v-49.184a191.555 191.555 0 0 1-60.759-35.13l-42.584 24.595a12.016 12.016 0 0 1-14.832-2.254c-24.718-26.744-43.619-58.944-54.689-94.586-1.667-5.366.592-11.175 5.459-13.985L67.212 291.1a193.48 193.48 0 0 1 0-70.199l-42.616-24.599c-4.867-2.809-7.126-8.618-5.459-13.985 11.07-35.642 29.97-67.842 54.689-94.586a12.016 12.016 0 0 1 14.832-2.254l42.584 24.595a191.577 191.577 0 0 1 60.759-35.13V25.759a12.01 12.01 0 0 1 9.377-11.718c34.956-7.85 72.499-8.256 109.219-.007 5.49 1.233 9.403 6.096 9.403 11.723v49.184a191.555 191.555 0 0 1 60.759 35.13l42.584-24.595a12.016 12.016 0 0 1 14.832 2.254c24.718 26.744 43.619 58.944 54.689 94.586 1.667 5.366-.592 11.175-5.459 13.985L444.788 220.9a193.485 193.485 0 0 1 0 70.2zM336 256c0-44.112-35.888-80-80-80s-80 35.888-80 80 35.888 80 80 80 80-35.888 80-80z"] }; +var faCogs = { prefix: 'fas', iconName: 'cogs', icon: [640, 512, [], "f085", "M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z"] }; +var faCoins = { prefix: 'fas', iconName: 'coins', icon: [512, 512, [], "f51e", "M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z"] }; +var faColumns = { prefix: 'fas', iconName: 'columns', icon: [512, 512, [], "f0db", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z"] }; +var faComment = { prefix: 'fas', iconName: 'comment', icon: [512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32z"] }; +var faCommentAlt = { prefix: 'fas', iconName: 'comment-alt', icon: [512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 9.8 11.2 15.5 19.1 9.7L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z"] }; +var faCommentDots = { prefix: 'fas', iconName: 'comment-dots', icon: [512, 512, [], "f4ad", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faCommentSlash = { prefix: 'fas', iconName: 'comment-slash', icon: [640, 512, [], "f4b3", "M64 240c0 49.6 21.4 95 57 130.7-12.6 50.3-54.3 95.2-54.8 95.8-2.2 2.3-2.8 5.7-1.5 8.7 1.3 2.9 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 27.4 0 53.7-3.6 78.4-10L72.9 186.4c-5.6 17.1-8.9 35-8.9 53.6zm569.8 218.1l-114.4-88.4C554.6 334.1 576 289.2 576 240c0-114.9-114.6-208-256-208-65.1 0-124.2 20.1-169.4 52.7L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z"] }; +var faComments = { prefix: 'fas', iconName: 'comments', icon: [576, 512, [], "f086", "M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z"] }; +var faCompactDisc = { prefix: 'fas', iconName: 'compact-disc', icon: [496, 512, [], "f51f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 256H56c0-105.9 86.1-192 192-192v32c-88.2 0-160 71.8-160 160zm160 96c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"] }; +var faCompass = { prefix: 'fas', iconName: 'compass', icon: [512, 512, [], "f14e", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM307.446 120.844l-102.642 97.779a23.997 23.997 0 0 0-6.772 11.729l-33.359 137.779c-5.68 23.459 22.777 39.318 39.88 23.024l102.64-97.779a23.99 23.99 0 0 0 6.772-11.729l33.359-137.779c5.618-23.198-22.591-39.493-39.878-23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; +var faCompress = { prefix: 'fas', iconName: 'compress', icon: [448, 512, [], "f066", "M436 192H312c-13.3 0-24-10.7-24-24V44c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-276-24V44c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v84H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 300V344c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-84h84c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H312c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"] }; +var faConciergeBell = { prefix: 'fas', iconName: 'concierge-bell', icon: [512, 512, [], "f562", "M288 130.54V112h16c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h16v18.54C115.49 146.11 32 239.18 32 352h448c0-112.82-83.49-205.89-192-221.46zM496 384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"] }; +var faCookie = { prefix: 'fas', iconName: 'cookie', icon: [512, 512, [], "f563", "M510.37 254.79l-12.08-76.26a132.493 132.493 0 0 0-37.16-72.95l-54.76-54.75c-19.73-19.72-45.18-32.7-72.71-37.05l-76.7-12.15c-27.51-4.36-55.69.11-80.52 12.76L107.32 49.6a132.25 132.25 0 0 0-57.79 57.8l-35.1 68.88a132.602 132.602 0 0 0-12.82 80.94l12.08 76.27a132.493 132.493 0 0 0 37.16 72.95l54.76 54.75a132.087 132.087 0 0 0 72.71 37.05l76.7 12.14c27.51 4.36 55.69-.11 80.52-12.75l69.12-35.21a132.302 132.302 0 0 0 57.79-57.8l35.1-68.87c12.71-24.96 17.2-53.3 12.82-80.96zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faCookieBite = { prefix: 'fas', iconName: 'cookie-bite', icon: [512, 512, [], "f564", "M510.52 255.82c-69.97-.85-126.47-57.69-126.47-127.86-70.17 0-127-56.49-127.86-126.45-27.26-4.14-55.13.3-79.72 12.82l-69.13 35.22a132.221 132.221 0 0 0-57.79 57.81l-35.1 68.88a132.645 132.645 0 0 0-12.82 80.95l12.08 76.27a132.521 132.521 0 0 0 37.16 72.96l54.77 54.76a132.036 132.036 0 0 0 72.71 37.06l76.71 12.15c27.51 4.36 55.7-.11 80.53-12.76l69.13-35.21a132.273 132.273 0 0 0 57.79-57.81l35.1-68.88c12.56-24.64 17.01-52.58 12.91-79.91zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faCopy = { prefix: 'fas', iconName: 'copy', icon: [448, 512, [], "f0c5", "M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z"] }; +var faCopyright = { prefix: 'fas', iconName: 'copyright', icon: [512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm117.134 346.753c-1.592 1.867-39.776 45.731-109.851 45.731-84.692 0-144.484-63.26-144.484-145.567 0-81.303 62.004-143.401 143.762-143.401 66.957 0 101.965 37.315 103.422 38.904a12 12 0 0 1 1.238 14.623l-22.38 34.655c-4.049 6.267-12.774 7.351-18.234 2.295-.233-.214-26.529-23.88-61.88-23.88-46.116 0-73.916 33.575-73.916 76.082 0 39.602 25.514 79.692 74.277 79.692 38.697 0 65.28-28.338 65.544-28.625 5.132-5.565 14.059-5.033 18.508 1.053l24.547 33.572a12.001 12.001 0 0 1-.553 14.866z"] }; +var faCouch = { prefix: 'fas', iconName: 'couch', icon: [640, 512, [], "f4b8", "M160 224v64h320v-64c0-35.3 28.7-64 64-64h32c0-53-43-96-96-96H160c-53 0-96 43-96 96h32c35.3 0 64 28.7 64 64zm416-32h-32c-17.7 0-32 14.3-32 32v96H128v-96c0-17.7-14.3-32-32-32H64c-35.3 0-64 28.7-64 64 0 23.6 13 44 32 55.1V432c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-16h384v16c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V311.1c19-11.1 32-31.5 32-55.1 0-35.3-28.7-64-64-64z"] }; +var faCreditCard = { prefix: 'fas', iconName: 'credit-card', icon: [576, 512, [], "f09d", "M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V256H0v176zm192-68c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-40zm-128 0c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM576 80v48H0V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48z"] }; +var faCrop = { prefix: 'fas', iconName: 'crop', icon: [512, 512, [], "f125", "M488 352h-40V109.25l59.31-59.31c6.25-6.25 6.25-16.38 0-22.63L484.69 4.69c-6.25-6.25-16.38-6.25-22.63 0L402.75 64H192v96h114.75L160 306.75V24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v264c0 13.25 10.75 24 24 24h232v-96H205.25L352 205.25V488c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"] }; +var faCropAlt = { prefix: 'fas', iconName: 'crop-alt', icon: [512, 512, [], "f565", "M488 352h-40V96c0-17.67-14.33-32-32-32H192v96h160v328c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24zM160 24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v256c0 17.67 14.33 32 32 32h224v-96H160V24z"] }; +var faCrosshairs = { prefix: 'fas', iconName: 'crosshairs', icon: [512, 512, [], "f05b", "M500 224h-30.364C455.724 130.325 381.675 56.276 288 42.364V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v30.364C130.325 56.276 56.276 130.325 42.364 224H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h30.364C56.276 381.675 130.325 455.724 224 469.636V500c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-30.364C381.675 455.724 455.724 381.675 469.636 288H500c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zM288 404.634V364c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40.634C165.826 392.232 119.783 346.243 107.366 288H148c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40.634C119.768 165.826 165.757 119.783 224 107.366V148c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40.634C346.174 119.768 392.217 165.757 404.634 224H364c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40.634C392.232 346.174 346.243 392.217 288 404.634zM288 256c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z"] }; +var faCrow = { prefix: 'fas', iconName: 'crow', icon: [640, 512, [], "f520", "M544 32h-16.36C513.04 12.68 490.09 0 464 0c-44.18 0-80 35.82-80 80v20.98L12.09 393.57A30.216 30.216 0 0 0 0 417.74c0 22.46 23.64 37.07 43.73 27.03L165.27 384h96.49l44.41 120.1c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38L312.94 384H352c1.91 0 3.76-.23 5.66-.29l44.51 120.38c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38l-41.24-111.53C485.74 352.8 544 279.26 544 192v-80l96-16c0-35.35-42.98-64-96-64zm-80 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"] }; +var faCrown = { prefix: 'fas', iconName: 'crown', icon: [640, 512, [], "f521", "M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.4 7.7-.8L128 416h384l72.3-192.8c2.5.4 5.1.8 7.7.8 26.5 0 48-21.5 48-48s-21.5-48-48-48z"] }; +var faCube = { prefix: 'fas', iconName: 'cube', icon: [512, 512, [], "f1b2", "M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z"] }; +var faCubes = { prefix: 'fas', iconName: 'cubes', icon: [512, 512, [], "f1b3", "M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z"] }; +var faCut = { prefix: 'fas', iconName: 'cut', icon: [448, 512, [], "f0c4", "M278.06 256L444.48 89.57c4.69-4.69 4.69-12.29 0-16.97-32.8-32.8-85.99-32.8-118.79 0L210.18 188.12l-24.86-24.86c4.31-10.92 6.68-22.81 6.68-35.26 0-53.02-42.98-96-96-96S0 74.98 0 128s42.98 96 96 96c4.54 0 8.99-.32 13.36-.93L142.29 256l-32.93 32.93c-4.37-.61-8.83-.93-13.36-.93-53.02 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96c0-12.45-2.37-24.34-6.68-35.26l24.86-24.86L325.69 439.4c32.8 32.8 85.99 32.8 118.79 0 4.69-4.68 4.69-12.28 0-16.97L278.06 256zM96 160c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32zm0 256c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z"] }; +var faDatabase = { prefix: 'fas', iconName: 'database', icon: [448, 512, [], "f1c0", "M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z"] }; +var faDeaf = { prefix: 'fas', iconName: 'deaf', icon: [512, 512, [], "f2a4", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm268.485-52.201L480.2 3.515c-4.687-4.686-12.284-4.686-16.971 0L376.2 90.544c-4.686 4.686-4.686 12.284 0 16.971l28.285 28.285c4.686 4.686 12.284 4.686 16.97 0l87.03-87.029c4.687-4.688 4.687-12.286 0-16.972zM168.97 314.745c-4.686-4.686-12.284-4.686-16.97 0L3.515 463.23c-4.686 4.686-4.686 12.284 0 16.971L31.8 508.485c4.687 4.686 12.284 4.686 16.971 0L197.256 360c4.686-4.686 4.686-12.284 0-16.971l-28.286-28.284z"] }; +var faDesktop = { prefix: 'fas', iconName: 'desktop', icon: [576, 512, [], "f108", "M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z"] }; +var faDiagnoses = { prefix: 'fas', iconName: 'diagnoses', icon: [640, 512, [], "f470", "M496 256c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm-176-80c48.5 0 88-39.5 88-88S368.5 0 320 0s-88 39.5-88 88 39.5 88 88 88zM59.8 364c10.2 15.3 29.3 17.8 42.9 9.8 16.2-9.6 56.2-31.7 105.3-48.6V416h224v-90.7c49.1 16.8 89.1 39 105.3 48.6 13.6 8 32.7 5.3 42.9-9.8l17.8-26.7c8.8-13.2 7.6-34.6-10-45.1-11.9-7.1-29.7-17-51.1-27.4-28.1 46.1-99.4 17.8-87.7-35.1C409.3 217.2 365.1 208 320 208c-57 0-112.9 14.5-160 32.2-.2 40.2-47.6 63.3-79.2 36-11.2 6-21.3 11.6-28.7 16-17.6 10.5-18.8 31.8-10 45.1L59.8 364zM368 344c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-160 8c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm512 192H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z"] }; +var faDice = { prefix: 'fas', iconName: 'dice', icon: [640, 512, [], "f522", "M592 192H473.26c12.69 29.59 7.12 65.2-17 89.32L320 417.58V464c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48V240c0-26.51-21.49-48-48-48zM480 376c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm-46.37-186.7L258.7 14.37c-19.16-19.16-50.23-19.16-69.39 0L14.37 189.3c-19.16 19.16-19.16 50.23 0 69.39L189.3 433.63c19.16 19.16 50.23 19.16 69.39 0L433.63 258.7c19.16-19.17 19.16-50.24 0-69.4zM96 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"] }; +var faDiceFive = { prefix: 'fas', iconName: 'dice-five', icon: [448, 512, [], "f523", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceFour = { prefix: 'fas', iconName: 'dice-four', icon: [448, 512, [], "f524", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceOne = { prefix: 'fas', iconName: 'dice-one', icon: [448, 512, [], "f525", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM224 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceSix = { prefix: 'fas', iconName: 'dice-six', icon: [448, 512, [], "f526", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceThree = { prefix: 'fas', iconName: 'dice-three', icon: [448, 512, [], "f527", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDiceTwo = { prefix: 'fas', iconName: 'dice-two', icon: [448, 512, [], "f528", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faDigitalTachograph = { prefix: 'fas', iconName: 'digital-tachograph', icon: [640, 512, [], "f566", "M608 96H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128c0-17.67-14.33-32-32-32zM304 352c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8zM72 288v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H80c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm40-64c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-48c0-8.84 7.16-16 16-16h208c8.84 0 16 7.16 16 16v48zm272 128c0 4.42-3.58 8-8 8H344c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8z"] }; +var faDivide = { prefix: 'fas', iconName: 'divide', icon: [448, 512, [], "f529", "M224 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm0-192c35.35 0 64-28.65 64-64s-28.65-64-64-64-64 28.65-64 64 28.65 64 64 64zm192 48H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; +var faDizzy = { prefix: 'fas', iconName: 'dizzy', icon: [496, 512, [], "f567", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-96 206.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L174.6 192l28.7 28.7c15.2 15.2-7.9 37.4-22.6 22.6L152 214.6zM248 416c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm147.3-195.3c15.2 15.2-7.9 37.4-22.6 22.6L344 214.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L366.6 192l28.7 28.7z"] }; +var faDna = { prefix: 'fas', iconName: 'dna', icon: [448, 512, [], "f471", "M.1 494.1c-1.1 9.5 6.3 17.8 15.9 17.8l32.3.1c8.1 0 14.9-5.9 16-13.9.7-4.9 1.8-11.1 3.4-18.1H380c1.6 6.9 2.9 13.2 3.5 18.1 1.1 8 7.9 14 16 13.9l32.3-.1c9.6 0 17.1-8.3 15.9-17.8-4.6-37.9-25.6-129-118.9-207.7-17.6 12.4-37.1 24.2-58.5 35.4 6.2 4.6 11.4 9.4 17 14.2H159.7c21.3-18.1 47-35.6 78.7-51.4C410.5 199.1 442.1 65.8 447.9 17.9 449 8.4 441.6.1 432 .1L399.6 0c-8.1 0-14.9 5.9-16 13.9-.7 4.9-1.8 11.1-3.4 18.1H67.8c-1.6-7-2.7-13.1-3.4-18.1-1.1-8-7.9-14-16-13.9L16.1.1C6.5.1-1 8.4.1 17.9 5.3 60.8 31.4 171.8 160 256 31.5 340.2 5.3 451.2.1 494.1zM224 219.6c-25.1-13.7-46.4-28.4-64.3-43.6h128.5c-17.8 15.2-39.1 30-64.2 43.6zM355.1 96c-5.8 10.4-12.8 21.1-21 32H114c-8.3-10.9-15.3-21.6-21-32h262.1zM92.9 416c5.8-10.4 12.8-21.1 21-32h219.4c8.3 10.9 15.4 21.6 21.2 32H92.9z"] }; +var faDollarSign = { prefix: 'fas', iconName: 'dollar-sign', icon: [288, 512, [], "f155", "M209.2 233.4l-108-31.6C88.7 198.2 80 186.5 80 173.5c0-16.3 13.2-29.5 29.5-29.5h66.3c12.2 0 24.2 3.7 34.2 10.5 6.1 4.1 14.3 3.1 19.5-2l34.8-34c7.1-6.9 6.1-18.4-1.8-24.5C238 74.8 207.4 64.1 176 64V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C45.8 64-5.4 118.7.5 183.6c4.2 46.1 39.4 83.6 83.8 96.6l102.5 30c12.5 3.7 21.2 15.3 21.2 28.3 0 16.3-13.2 29.5-29.5 29.5h-66.3C100 368 88 364.3 78 357.5c-6.1-4.1-14.3-3.1-19.5 2l-34.8 34c-7.1 6.9-6.1 18.4 1.8 24.5 24.5 19.2 55.1 29.9 86.5 30v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48.2c46.6-.9 90.3-28.6 105.7-72.7 21.5-61.6-14.6-124.8-72.5-141.7z"] }; +var faDolly = { prefix: 'fas', iconName: 'dolly', icon: [576, 512, [], "f472", "M294.2 277.7c18 5 34.7 13.4 49.5 24.7l161.5-53.8c8.4-2.8 12.9-11.9 10.1-20.2L454.9 47.2c-2.8-8.4-11.9-12.9-20.2-10.1l-61.1 20.4 33.1 99.4L346 177l-33.1-99.4-61.6 20.5c-8.4 2.8-12.9 11.9-10.1 20.2l53 159.4zm281 48.7L565 296c-2.8-8.4-11.9-12.9-20.2-10.1l-213.5 71.2c-17.2-22-43.6-36.4-73.5-37L158.4 21.9C154 8.8 141.8 0 128 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h88.9l92.2 276.7c-26.1 20.4-41.7 53.6-36 90.5 6.1 39.4 37.9 72.3 77.3 79.2 60.2 10.7 112.3-34.8 113.4-92.6l213.3-71.2c8.3-2.8 12.9-11.8 10.1-20.2zM256 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; +var faDollyFlatbed = { prefix: 'fas', iconName: 'dolly-flatbed', icon: [640, 512, [], "f474", "M208 320h384c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H448v128l-48-32-48 32V32H208c-8.8 0-16 7.2-16 16v256c0 8.8 7.2 16 16 16zm416 64H128V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h82.9c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H451c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H624c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z"] }; +var faDonate = { prefix: 'fas', iconName: 'donate', icon: [512, 512, [], "f4b9", "M256 416c114.9 0 208-93.1 208-208S370.9 0 256 0 48 93.1 48 208s93.1 208 208 208zM233.8 97.4V80.6c0-9.2 7.4-16.6 16.6-16.6h11.1c9.2 0 16.6 7.4 16.6 16.6v17c15.5.8 30.5 6.1 43 15.4 5.6 4.1 6.2 12.3 1.2 17.1L306 145.6c-3.8 3.7-9.5 3.8-14 1-5.4-3.4-11.4-5.1-17.8-5.1h-38.9c-9 0-16.3 8.2-16.3 18.3 0 8.2 5 15.5 12.1 17.6l62.3 18.7c25.7 7.7 43.7 32.4 43.7 60.1 0 34-26.4 61.5-59.1 62.4v16.8c0 9.2-7.4 16.6-16.6 16.6h-11.1c-9.2 0-16.6-7.4-16.6-16.6v-17c-15.5-.8-30.5-6.1-43-15.4-5.6-4.1-6.2-12.3-1.2-17.1l16.3-15.5c3.8-3.7 9.5-3.8 14-1 5.4 3.4 11.4 5.1 17.8 5.1h38.9c9 0 16.3-8.2 16.3-18.3 0-8.2-5-15.5-12.1-17.6l-62.3-18.7c-25.7-7.7-43.7-32.4-43.7-60.1.1-34 26.4-61.5 59.1-62.4zM480 352h-32.5c-19.6 26-44.6 47.7-73 64h63.8c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8h63.8c-28.4-16.3-53.3-38-73-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32z"] }; +var faDoorClosed = { prefix: 'fas', iconName: 'door-closed', icon: [640, 512, [], "f52a", "M624 448H512V50.8C512 22.78 490.47 0 464 0H175.99c-26.47 0-48 22.78-48 50.8V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM415.99 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32c.01 17.67-14.32 32-32 32z"] }; +var faDoorOpen = { prefix: 'fas', iconName: 'door-open', icon: [640, 512, [], "f52b", "M624 448h-80V113.45C544 86.19 522.47 64 496 64H384v64h96v384h144c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM312.24 1.01l-192 49.74C105.99 54.44 96 67.7 96 82.92V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h336V33.18c0-21.58-19.56-37.41-39.76-32.17zM264 288c-13.25 0-24-14.33-24-32s10.75-32 24-32 24 14.33 24 32-10.75 32-24 32z"] }; +var faDotCircle = { prefix: 'fas', iconName: 'dot-circle', icon: [512, 512, [], "f192", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z"] }; +var faDove = { prefix: 'fas', iconName: 'dove', icon: [512, 512, [], "f4ba", "M288 167.2v-28.1c-28.2-36.3-47.1-79.3-54.1-125.2-2.1-13.5-19-18.8-27.8-8.3-21.1 24.9-37.7 54.1-48.9 86.5 34.2 38.3 80 64.6 130.8 75.1zM400 64c-44.2 0-80 35.9-80 80.1v59.4C215.6 197.3 127 133 87 41.8c-5.5-12.5-23.2-13.2-29-.9C41.4 76 32 115.2 32 156.6c0 70.8 34.1 136.9 85.1 185.9 13.2 12.7 26.1 23.2 38.9 32.8l-143.9 36C1.4 414-3.4 426.4 2.6 435.7 20 462.6 63 508.2 155.8 512c8 .3 16-2.6 22.1-7.9l65.2-56.1H320c88.4 0 160-71.5 160-159.9V128l32-64H400zm0 96.1c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"] }; +var faDownload = { prefix: 'fas', iconName: 'download', icon: [512, 512, [], "f019", "M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"] }; +var faDraftingCompass = { prefix: 'fas', iconName: 'drafting-compass', icon: [512, 512, [], "f568", "M457.01 344.42c-25.05 20.33-52.63 37.18-82.54 49.05l54.38 94.19 53.95 23.04c9.81 4.19 20.89-2.21 22.17-12.8l7.02-58.25-54.98-95.23zm42.49-94.56c4.86-7.67 1.89-17.99-6.05-22.39l-28.07-15.57c-7.48-4.15-16.61-1.46-21.26 5.72C403.01 281.15 332.25 320 256 320c-23.93 0-47.23-4.25-69.41-11.53l67.36-116.68c.7.02 1.34.21 2.04.21s1.35-.19 2.04-.21l51.09 88.5c31.23-8.96 59.56-25.75 82.61-48.92l-51.79-89.71C347.39 128.03 352 112.63 352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96c0 16.63 4.61 32.03 12.05 45.66l-68.3 118.31c-12.55-11.61-23.96-24.59-33.68-39-4.79-7.1-13.97-9.62-21.38-5.33l-27.75 16.07c-7.85 4.54-10.63 14.9-5.64 22.47 15.57 23.64 34.69 44.21 55.98 62.02L0 439.66l7.02 58.25c1.28 10.59 12.36 16.99 22.17 12.8l53.95-23.04 70.8-122.63C186.13 377.28 220.62 384 256 384c99.05 0 190.88-51.01 243.5-134.14zM256 64c17.67 0 32 14.33 32 32s-14.33 32-32 32-32-14.33-32-32 14.33-32 32-32z"] }; +var faDrum = { prefix: 'fas', iconName: 'drum', icon: [576, 512, [], "f569", "M458.08 120.88l102.39-61.43c15.16-9.09 20.06-28.75 10.97-43.91C562.34.39 542.7-4.53 527.53 4.57l-160.69 96.41A629.32 629.32 0 0 0 288 96C128.94 96 0 153.31 0 224v160.83c0 30.46 24.03 58.4 64 80.37v-96.37c0-17.6 14.4-32 32-32s32 14.4 32 32v122.41c37.4 11.13 81 18.44 128 20.75V400.84c0-17.6 14.4-32 32-32s32 14.4 32 32V512c47-2.31 90.6-9.62 128-20.75V368.84c0-17.6 14.4-32 32-32s32 14.4 32 32v96.37c39.97-21.97 64-49.91 64-80.37V224.01c-.01-42.38-46.54-79.84-117.92-103.13zM288 304c-132.55 0-240-35.82-240-80s107.45-80 240-80c2.34 0 4.62.1 6.94.12l-87.41 52.44c-15.16 9.09-20.06 28.75-10.97 43.91 9.56 15.93 29.51 19.61 43.91 10.97l162.71-97.62C477.55 167.41 528 193.74 528 224.01 528 268.19 420.54 304 288 304z"] }; +var faDrumSteelpan = { prefix: 'fas', iconName: 'drum-steelpan', icon: [576, 512, [], "f56a", "M288 32C128.94 32 0 89.31 0 160v192c0 70.69 128.94 128 288 128s288-57.31 288-128V160c0-70.69-128.94-128-288-128zm-82.99 158.36c-4.45 16.61-14.54 30.57-28.31 40.48C100.23 217.46 48 190.78 48 160c0-30.16 50.11-56.39 124.04-70.03l25.6 44.34c9.86 17.09 12.48 36.99 7.37 56.05zM288 240c-21.08 0-41.41-1-60.89-2.7 8.06-26.13 32.15-45.3 60.89-45.3s52.83 19.17 60.89 45.3C329.41 239 309.08 240 288 240zm64-144c0 35.29-28.71 64-64 64s-64-28.71-64-64V82.96c20.4-1.88 41.8-2.96 64-2.96s43.6 1.08 64 2.96V96zm46.93 134.9c-13.81-9.91-23.94-23.9-28.4-40.54-5.11-19.06-2.49-38.96 7.38-56.04l25.65-44.42C477.72 103.5 528 129.79 528 160c0 30.83-52.4 57.54-129.07 70.9z"] }; +var faDumbbell = { prefix: 'fas', iconName: 'dumbbell', icon: [640, 512, [], "f44b", "M104 96H56c-13.3 0-24 10.7-24 24v104H8c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h24v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm528 128h-24V120c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v272c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h24c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM456 32h-48c-13.3 0-24 10.7-24 24v168H256V56c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v400c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h128v168c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24z"] }; +var faEdit = { prefix: 'fas', iconName: 'edit', icon: [576, 512, [], "f044", "M402.6 83.2l90.2 90.2c3.8 3.8 3.8 10 0 13.8L274.4 405.6l-92.8 10.3c-12.4 1.4-22.9-9.1-21.5-21.5l10.3-92.8L388.8 83.2c3.8-3.8 10-3.8 13.8 0zm162-22.9l-48.8-48.8c-15.2-15.2-39.9-15.2-55.2 0l-35.4 35.4c-3.8 3.8-3.8 10 0 13.8l90.2 90.2c3.8 3.8 10 3.8 13.8 0l35.4-35.4c15.2-15.3 15.2-40 0-55.2zM384 346.2V448H64V128h229.8c3.2 0 6.2-1.3 8.5-3.5l40-40c7.6-7.6 2.2-20.5-8.5-20.5H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V306.2c0-10.7-12.9-16-20.5-8.5l-40 40c-2.2 2.3-3.5 5.3-3.5 8.5z"] }; +var faEject = { prefix: 'fas', iconName: 'eject', icon: [448, 512, [], "f052", "M448 384v64c0 17.673-14.327 32-32 32H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h384c17.673 0 32 14.327 32 32zM48.053 320h351.886c41.651 0 63.581-49.674 35.383-80.435L259.383 47.558c-19.014-20.743-51.751-20.744-70.767 0L12.67 239.565C-15.475 270.268 6.324 320 48.053 320z"] }; +var faEllipsisH = { prefix: 'fas', iconName: 'ellipsis-h', icon: [512, 512, [], "f141", "M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z"] }; +var faEllipsisV = { prefix: 'fas', iconName: 'ellipsis-v', icon: [192, 512, [], "f142", "M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z"] }; +var faEnvelope = { prefix: 'fas', iconName: 'envelope', icon: [512, 512, [], "f0e0", "M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"] }; +var faEnvelopeOpen = { prefix: 'fas', iconName: 'envelope-open', icon: [512, 512, [], "f2b6", "M512 464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V200.724a48 48 0 0 1 18.387-37.776c24.913-19.529 45.501-35.365 164.2-121.511C199.412 29.17 232.797-.347 256 .003c23.198-.354 56.596 29.172 73.413 41.433 118.687 86.137 139.303 101.995 164.2 121.512A48 48 0 0 1 512 200.724V464zm-65.666-196.605c-2.563-3.728-7.7-4.595-11.339-1.907-22.845 16.873-55.462 40.705-105.582 77.079-16.825 12.266-50.21 41.781-73.413 41.43-23.211.344-56.559-29.143-73.413-41.43-50.114-36.37-82.734-60.204-105.582-77.079-3.639-2.688-8.776-1.821-11.339 1.907l-9.072 13.196a7.998 7.998 0 0 0 1.839 10.967c22.887 16.899 55.454 40.69 105.303 76.868 20.274 14.781 56.524 47.813 92.264 47.573 35.724.242 71.961-32.771 92.263-47.573 49.85-36.179 82.418-59.97 105.303-76.868a7.998 7.998 0 0 0 1.839-10.967l-9.071-13.196z"] }; +var faEnvelopeSquare = { prefix: 'fas', iconName: 'envelope-square', icon: [448, 512, [], "f199", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM178.117 262.104C87.429 196.287 88.353 196.121 64 177.167V152c0-13.255 10.745-24 24-24h272c13.255 0 24 10.745 24 24v25.167c-24.371 18.969-23.434 19.124-114.117 84.938-10.5 7.655-31.392 26.12-45.883 25.894-14.503.218-35.367-18.227-45.883-25.895zM384 217.775V360c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V217.775c13.958 10.794 33.329 25.236 95.303 70.214 14.162 10.341 37.975 32.145 64.694 32.01 26.887.134 51.037-22.041 64.72-32.025 61.958-44.965 81.325-59.406 95.283-70.199z"] }; +var faEquals = { prefix: 'fas', iconName: 'equals', icon: [448, 512, [], "f52c", "M416 304H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32zm0-192H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; +var faEraser = { prefix: 'fas', iconName: 'eraser', icon: [512, 512, [], "f12d", "M497.941 273.941c18.745-18.745 18.745-49.137 0-67.882l-160-160c-18.745-18.745-49.136-18.746-67.883 0l-256 256c-18.745 18.745-18.745 49.137 0 67.882l96 96A48.004 48.004 0 0 0 144 480h356c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H355.883l142.058-142.059zm-302.627-62.627l137.373 137.373L265.373 416H150.628l-80-80 124.686-124.686z"] }; +var faEuroSign = { prefix: 'fas', iconName: 'euro-sign', icon: [320, 512, [], "f153", "M310.706 413.765c-1.314-6.63-7.835-10.872-14.424-9.369-10.692 2.439-27.422 5.413-45.426 5.413-56.763 0-101.929-34.79-121.461-85.449h113.689a12 12 0 0 0 11.708-9.369l6.373-28.36c1.686-7.502-4.019-14.631-11.708-14.631H115.22c-1.21-14.328-1.414-28.287.137-42.245H261.95a12 12 0 0 0 11.723-9.434l6.512-29.755c1.638-7.484-4.061-14.566-11.723-14.566H130.184c20.633-44.991 62.69-75.03 117.619-75.03 14.486 0 28.564 2.25 37.851 4.145 6.216 1.268 12.347-2.498 14.002-8.623l11.991-44.368c1.822-6.741-2.465-13.616-9.326-14.917C290.217 34.912 270.71 32 249.635 32 152.451 32 74.03 92.252 45.075 176H12c-6.627 0-12 5.373-12 12v29.755c0 6.627 5.373 12 12 12h21.569c-1.009 13.607-1.181 29.287-.181 42.245H12c-6.627 0-12 5.373-12 12v28.36c0 6.627 5.373 12 12 12h30.114C67.139 414.692 145.264 480 249.635 480c26.301 0 48.562-4.544 61.101-7.788 6.167-1.595 10.027-7.708 8.788-13.957l-8.818-44.49z"] }; +var faExchangeAlt = { prefix: 'fas', iconName: 'exchange-alt', icon: [512, 512, [], "f362", "M0 168v-16c0-13.255 10.745-24 24-24h360V80c0-21.367 25.899-32.042 40.971-16.971l80 80c9.372 9.373 9.372 24.569 0 33.941l-80 80C409.956 271.982 384 261.456 384 240v-48H24c-13.255 0-24-10.745-24-24zm488 152H128v-48c0-21.314-25.862-32.08-40.971-16.971l-80 80c-9.372 9.373-9.372 24.569 0 33.941l80 80C102.057 463.997 128 453.437 128 432v-48h360c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z"] }; +var faExclamation = { prefix: 'fas', iconName: 'exclamation', icon: [192, 512, [], "f12a", "M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z"] }; +var faExclamationCircle = { prefix: 'fas', iconName: 'exclamation-circle', icon: [512, 512, [], "f06a", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"] }; +var faExclamationTriangle = { prefix: 'fas', iconName: 'exclamation-triangle', icon: [576, 512, [], "f071", "M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"] }; +var faExpand = { prefix: 'fas', iconName: 'expand', icon: [448, 512, [], "f065", "M0 180V56c0-13.3 10.7-24 24-24h124c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H64v84c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12zM288 44v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V56c0-13.3-10.7-24-24-24H300c-6.6 0-12 5.4-12 12zm148 276h-40c-6.6 0-12 5.4-12 12v84h-84c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24V332c0-6.6-5.4-12-12-12zM160 468v-40c0-6.6-5.4-12-12-12H64v-84c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v124c0 13.3 10.7 24 24 24h124c6.6 0 12-5.4 12-12z"] }; +var faExpandArrowsAlt = { prefix: 'fas', iconName: 'expand-arrows-alt', icon: [448, 512, [], "f31e", "M448.1 344v112c0 13.3-10.7 24-24 24h-112c-21.4 0-32.1-25.9-17-41l36.2-36.2L224 295.6 116.8 402.9 153 439c15.1 15.1 4.4 41-17 41H24c-13.3 0-24-10.7-24-24V344c0-21.4 25.9-32.1 41-17l36.2 36.2L184.5 256 77.2 148.7 41 185c-15.1 15.1-41 4.4-41-17V56c0-13.3 10.7-24 24-24h112c21.4 0 32.1 25.9 17 41l-36.2 36.2L224 216.4l107.3-107.3L295.1 73c-15.1-15.1-4.4-41 17-41h112c13.3 0 24 10.7 24 24v112c0 21.4-25.9 32.1-41 17l-36.2-36.2L263.6 256l107.3 107.3 36.2-36.2c15.1-15.2 41-4.5 41 16.9z"] }; +var faExternalLinkAlt = { prefix: 'fas', iconName: 'external-link-alt', icon: [576, 512, [], "f35d", "M576 24v127.984c0 21.461-25.96 31.98-40.971 16.971l-35.707-35.709-243.523 243.523c-9.373 9.373-24.568 9.373-33.941 0l-22.627-22.627c-9.373-9.373-9.373-24.569 0-33.941L442.756 76.676l-35.703-35.705C391.982 25.9 402.656 0 424.024 0H552c13.255 0 24 10.745 24 24zM407.029 270.794l-16 16A23.999 23.999 0 0 0 384 303.765V448H64V128h264a24.003 24.003 0 0 0 16.97-7.029l16-16C376.089 89.851 365.381 64 344 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V287.764c0-21.382-25.852-32.09-40.971-16.97z"] }; +var faExternalLinkSquareAlt = { prefix: 'fas', iconName: 'external-link-square-alt', icon: [448, 512, [], "f360", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-88 16H248.029c-21.313 0-32.08 25.861-16.971 40.971l31.984 31.987L67.515 364.485c-4.686 4.686-4.686 12.284 0 16.971l31.029 31.029c4.687 4.686 12.285 4.686 16.971 0l195.526-195.526 31.988 31.991C358.058 263.977 384 253.425 384 231.979V120c0-13.255-10.745-24-24-24z"] }; +var faEye = { prefix: 'fas', iconName: 'eye', icon: [576, 512, [], "f06e", "M569.354 231.631C512.969 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-75.162 0-136-60.827-136-136 0-75.162 60.826-136 136-136 75.162 0 136 60.826 136 136 0 75.162-60.826 136-136 136zm104-136c0 57.438-46.562 104-104 104s-104-46.562-104-104c0-17.708 4.431-34.379 12.236-48.973l-.001.032c0 23.651 19.173 42.823 42.824 42.823s42.824-19.173 42.824-42.823c0-23.651-19.173-42.824-42.824-42.824l-.032.001C253.621 156.431 270.292 152 288 152c57.438 0 104 46.562 104 104z"] }; +var faEyeDropper = { prefix: 'fas', iconName: 'eye-dropper', icon: [512, 512, [], "f1fb", "M50.75 333.25c-12 12-18.75 28.28-18.75 45.26V424L0 480l32 32 56-32h45.49c16.97 0 33.25-6.74 45.25-18.74l126.64-126.62-128-128L50.75 333.25zM483.88 28.12c-37.47-37.5-98.28-37.5-135.75 0l-77.09 77.09-13.1-13.1c-9.44-9.44-24.65-9.31-33.94 0l-40.97 40.97c-9.37 9.37-9.37 24.57 0 33.94l161.94 161.94c9.44 9.44 24.65 9.31 33.94 0L419.88 288c9.37-9.37 9.37-24.57 0-33.94l-13.1-13.1 77.09-77.09c37.51-37.48 37.51-98.26.01-135.75z"] }; +var faEyeSlash = { prefix: 'fas', iconName: 'eye-slash', icon: [576, 512, [], "f070", "M286.693 391.984l32.579 46.542A333.958 333.958 0 0 1 288 440C168.19 440 63.031 376.051 6.646 280.369a47.999 47.999 0 0 1 0-48.739c24.023-40.766 56.913-75.775 96.024-102.537l57.077 81.539C154.736 224.82 152 240.087 152 256c0 74.736 60.135 135.282 134.693 135.984zm282.661-111.615c-31.667 53.737-78.747 97.46-135.175 125.475l.011.015 41.47 59.2c7.6 10.86 4.96 25.82-5.9 33.42l-13.11 9.18c-10.86 7.6-25.82 4.96-33.42-5.9L100.34 46.94c-7.6-10.86-4.96-25.82 5.9-33.42l13.11-9.18c10.86-7.6 25.82-4.96 33.42 5.9l51.038 72.617C230.68 75.776 258.905 72 288 72c119.81 0 224.969 63.949 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM424 256c0-75.174-60.838-136-136-136-17.939 0-35.056 3.473-50.729 9.772l19.299 27.058c25.869-8.171 55.044-6.163 80.4 7.41h-.03c-23.65 0-42.82 19.17-42.82 42.82 0 23.626 19.147 42.82 42.82 42.82 23.65 0 42.82-19.17 42.82-42.82v-.03c18.462 34.49 16.312 77.914-8.25 110.95v.01l19.314 27.061C411.496 321.2 424 290.074 424 256zM262.014 356.727l-77.53-110.757c-5.014 52.387 29.314 98.354 77.53 110.757z"] }; +var faFastBackward = { prefix: 'fas', iconName: 'fast-backward', icon: [512, 512, [], "f049", "M0 436V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v151.9L235.5 71.4C256.1 54.3 288 68.6 288 96v131.9L459.5 71.4C480.1 54.3 512 68.6 512 96v320c0 27.4-31.9 41.7-52.5 24.6L288 285.3V416c0 27.4-31.9 41.7-52.5 24.6L64 285.3V436c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12z"] }; +var faFastForward = { prefix: 'fas', iconName: 'fast-forward', icon: [512, 512, [], "f050", "M512 76v360c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V284.1L276.5 440.6c-20.6 17.2-52.5 2.8-52.5-24.6V284.1L52.5 440.6C31.9 457.8 0 443.4 0 416V96c0-27.4 31.9-41.7 52.5-24.6L224 226.8V96c0-27.4 31.9-41.7 52.5-24.6L448 226.8V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12z"] }; +var faFax = { prefix: 'fas', iconName: 'fax', icon: [512, 512, [], "f1ac", "M128 144v320c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V144c0-26.51 21.49-48 48-48h32c26.51 0 48 21.49 48 48zm384 64v256c0 26.51-21.49 48-48 48H192c-26.51 0-48-21.49-48-48V40c0-22.091 17.909-40 40-40h207.432a39.996 39.996 0 0 1 28.284 11.716l48.569 48.569A39.999 39.999 0 0 1 480 88.568v74.174c18.641 6.591 32 24.36 32 45.258zm-320-16h240V96h-24c-13.203 0-24-10.797-24-24V48H192v144zm96 204c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm128 128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40z"] }; +var faFeather = { prefix: 'fas', iconName: 'feather', icon: [512, 512, [], "f52d", "M467.14 44.84c-62.55-62.48-161.67-64.78-252.28 25.73-78.61 78.52-60.98 60.92-85.75 85.66-60.46 60.39-70.39 150.83-63.64 211.17l178.44-178.25c6.26-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.6 9.37 33.98 0l66.1-66.03C159.42 454.65 279 457.11 353.95 384h-98.19l147.57-49.14c49.99-49.93 36.38-36.18 46.31-46.86h-97.78l131.54-43.8c45.44-74.46 34.31-148.84-16.26-199.36z"] }; +var faFeatherAlt = { prefix: 'fas', iconName: 'feather-alt', icon: [512, 512, [], "f56b", "M512 0C460.22 3.56 96.44 38.2 71.01 287.61c-3.09 26.66-4.84 53.44-5.99 80.24l178.87-178.69c6.25-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.59 9.37 33.98 0l57.13-57.07c42.09-.14 84.15-2.53 125.96-7.36 53.48-5.44 97.02-26.47 132.58-56.54H255.74l146.79-48.88c11.25-14.89 21.37-30.71 30.45-47.12h-81.14l106.54-53.21C500.29 132.86 510.19 26.26 512 0z"] }; +var faFemale = { prefix: 'fas', iconName: 'female', icon: [256, 512, [], "f182", "M128 0c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64S92.654 0 128 0m119.283 354.179l-48-192A24 24 0 0 0 176 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H80a24 24 0 0 0-23.283 18.179l-48 192C4.935 369.305 16.383 384 32 384h56v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V384h56c15.591 0 27.071-14.671 23.283-29.821z"] }; +var faFighterJet = { prefix: 'fas', iconName: 'fighter-jet', icon: [640, 512, [], "f0fb", "M544 224l-128-16-48-16h-24L227.158 44h39.509C278.333 44 288 41.375 288 38s-9.667-6-21.333-6H152v12h16v164h-48l-66.667-80H18.667L8 138.667V208h8v16h48v2.666l-64 8v42.667l64 8V288H16v16H8v69.333L18.667 384h34.667L120 304h48v164h-16v12h114.667c11.667 0 21.333-2.625 21.333-6s-9.667-6-21.333-6h-39.509L344 320h24l48-16 128-16c96-21.333 96-26.583 96-32 0-5.417 0-10.667-96-32z"] }; +var faFile = { prefix: 'fas', iconName: 'file', icon: [384, 512, [], "f15b", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileAlt = { prefix: 'fas', iconName: 'file-alt', icon: [384, 512, [], "f15c", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileArchive = { prefix: 'fas', iconName: 'file-archive', icon: [384, 512, [], "f1c6", "M224 136V0h-63.6v32h-32V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM95.9 32h32v32h-32V32zm32.3 384c-33.2 0-58-30.4-51.4-62.9L96.4 256v-32h32v-32h-32v-32h32v-32h-32V96h32V64h32v32h-32v32h32v32h-32v32h32v32h-32v32h22.1c5.7 0 10.7 4.1 11.8 9.7l17.3 87.7c6.4 32.4-18.4 62.6-51.4 62.6zm32.7-53c0 14.9-14.5 27-32.4 27S96 378 96 363c0-14.9 14.5-27 32.4-27s32.5 12.1 32.5 27zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileAudio = { prefix: 'fas', iconName: 'file-audio', icon: [384, 512, [], "f1c7", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileCode = { prefix: 'fas', iconName: 'file-code', icon: [384, 512, [], "f1c9", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zM123.206 400.505a5.4 5.4 0 0 1-7.633.246l-64.866-60.812a5.4 5.4 0 0 1 0-7.879l64.866-60.812a5.4 5.4 0 0 1 7.633.246l19.579 20.885a5.4 5.4 0 0 1-.372 7.747L101.65 336l40.763 35.874a5.4 5.4 0 0 1 .372 7.747l-19.579 20.884zm51.295 50.479l-27.453-7.97a5.402 5.402 0 0 1-3.681-6.692l61.44-211.626a5.402 5.402 0 0 1 6.692-3.681l27.452 7.97a5.4 5.4 0 0 1 3.68 6.692l-61.44 211.626a5.397 5.397 0 0 1-6.69 3.681zm160.792-111.045l-64.866 60.812a5.4 5.4 0 0 1-7.633-.246l-19.58-20.885a5.4 5.4 0 0 1 .372-7.747L284.35 336l-40.763-35.874a5.4 5.4 0 0 1-.372-7.747l19.58-20.885a5.4 5.4 0 0 1 7.633-.246l64.866 60.812a5.4 5.4 0 0 1-.001 7.879z"] }; +var faFileContract = { prefix: 'fas', iconName: 'file-contract', icon: [384, 512, [], "f56c", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm192.81 248H304c8.84 0 16 7.16 16 16s-7.16 16-16 16h-47.19c-16.45 0-31.27-9.14-38.64-23.86-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34a15.986 15.986 0 0 1-14.31 8.84c-.38 0-.75-.02-1.14-.05-6.45-.45-12-4.75-14.03-10.89L144 354.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.77-16.19 54.05-9.7 66 14.16 2.02 4.06 5.96 6.5 10.16 6.5zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"] }; +var faFileDownload = { prefix: 'fas', iconName: 'file-download', icon: [384, 512, [], "f56d", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm76.45 211.36l-96.42 95.7c-6.65 6.61-17.39 6.61-24.04 0l-96.42-95.7C73.42 337.29 80.54 320 94.82 320H160v-80c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v80h65.18c14.28 0 21.4 17.29 11.27 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"] }; +var faFileExcel = { prefix: 'fas', iconName: 'file-excel', icon: [384, 512, [], "f1c3", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm60.1 106.5L224 336l60.1 93.5c5.1 8-.6 18.5-10.1 18.5h-34.9c-4.4 0-8.5-2.4-10.6-6.3C208.9 405.5 192 373 192 373c-6.4 14.8-10 20-36.6 68.8-2.1 3.9-6.1 6.3-10.5 6.3H110c-9.5 0-15.2-10.5-10.1-18.5l60.3-93.5-60.3-93.5c-5.2-8 .6-18.5 10.1-18.5h34.8c4.4 0 8.5 2.4 10.6 6.3 26.1 48.8 20 33.6 36.6 68.5 0 0 6.1-11.7 36.6-68.5 2.1-3.9 6.2-6.3 10.6-6.3H274c9.5-.1 15.2 10.4 10.1 18.4zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileExport = { prefix: 'fas', iconName: 'file-export', icon: [576, 512, [], "f56e", "M384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zM192 336v-32c0-8.84 7.16-16 16-16h176V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V352H208c-8.84 0-16-7.16-16-16zm379.05-28.02l-95.7-96.43c-10.06-10.14-27.36-3.01-27.36 11.27V288H384v64h63.99v65.18c0 14.28 17.29 21.41 27.36 11.27l95.7-96.42c6.6-6.66 6.6-17.4 0-24.05z"] }; +var faFileImage = { prefix: 'fas', iconName: 'file-image', icon: [384, 512, [], "f1c5", "M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z"] }; +var faFileImport = { prefix: 'fas', iconName: 'file-import', icon: [512, 512, [], "f56f", "M16 288c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h112v-64H16zm336-152V0H152c-13.3 0-24 10.7-24 24v264h127.99v-65.18c0-14.28 17.29-21.41 27.36-11.27l95.7 96.43c6.6 6.65 6.6 17.39 0 24.04l-95.7 96.42c-10.06 10.14-27.36 3.01-27.36-11.27V352H128v136c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H376c-13.2 0-24-10.8-24-24zm153-31L407.1 7c-4.5-4.5-10.6-7-17-7H384v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"] }; +var faFileInvoice = { prefix: 'fas', iconName: 'file-invoice', icon: [384, 512, [], "f570", "M288 256H96v64h192v-64zm89-151L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm256 304c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-200v96c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-96c0-8.84 7.16-16 16-16h224c8.84 0 16 7.16 16 16z"] }; +var faFileInvoiceDollar = { prefix: 'fas', iconName: 'file-invoice-dollar', icon: [384, 512, [], "f571", "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 80v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8zm144 263.88V440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-24.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V232c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v24.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07z"] }; +var faFileMedical = { prefix: 'fas', iconName: 'file-medical', icon: [384, 512, [], "f477", "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 160v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8z"] }; +var faFileMedicalAlt = { prefix: 'fas', iconName: 'file-medical-alt', icon: [448, 512, [], "f478", "M288 136V0H88C74.7 0 64 10.7 64 24v232H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h140.9c3 0 5.8 1.7 7.2 4.4l19.9 39.8 56.8-113.7c2.9-5.9 11.4-5.9 14.3 0l34.7 69.5H352c8.8 0 16 7.2 16 16s-7.2 16-16 16h-89.9L240 275.8l-56.8 113.7c-2.9 5.9-11.4 5.9-14.3 0L134.1 320H64v168c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H312c-13.2 0-24-10.8-24-24zm153-31L343.1 7c-4.5-4.5-10.6-7-17-7H320v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"] }; +var faFilePdf = { prefix: 'fas', iconName: 'file-pdf', icon: [384, 512, [], "f1c1", "M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z"] }; +var faFilePowerpoint = { prefix: 'fas', iconName: 'file-powerpoint', icon: [384, 512, [], "f1c4", "M193.7 271.2c8.8 0 15.5 2.7 20.3 8.1 9.6 10.9 9.8 32.7-.2 44.1-4.9 5.6-11.9 8.5-21.1 8.5h-26.9v-60.7h27.9zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm53 165.2c0 90.3-88.8 77.6-111.1 77.6V436c0 6.6-5.4 12-12 12h-30.8c-6.6 0-12-5.4-12-12V236.2c0-6.6 5.4-12 12-12h81c44.5 0 72.9 32.8 72.9 77z"] }; +var faFilePrescription = { prefix: 'fas', iconName: 'file-prescription', icon: [384, 512, [], "f572", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm68.53 179.48l11.31 11.31c6.25 6.25 6.25 16.38 0 22.63l-29.9 29.9L304 409.38c6.25 6.25 6.25 16.38 0 22.63l-11.31 11.31c-6.25 6.25-16.38 6.25-22.63 0L240 413.25l-30.06 30.06c-6.25 6.25-16.38 6.25-22.63 0L176 432c-6.25-6.25-6.25-16.38 0-22.63l30.06-30.06L146.74 320H128v48c0 8.84-7.16 16-16 16H96c-8.84 0-16-7.16-16-16V208c0-8.84 7.16-16 16-16h80c35.35 0 64 28.65 64 64 0 24.22-13.62 45.05-33.46 55.92L240 345.38l29.9-29.9c6.25-6.25 16.38-6.25 22.63 0zM176 272h-48v-32h48c8.82 0 16 7.18 16 16s-7.18 16-16 16zm208-150.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFileSignature = { prefix: 'fas', iconName: 'file-signature', icon: [576, 512, [], "f573", "M218.17 424.14c-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34c-6.37 12.78-25.03 11.37-29.48-2.09L144 386.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.75-16.19 54.06-9.7 66 14.16 1.89 3.78 5.49 5.95 9.36 6.26v-82.12l128-127.09V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24v-40l-128-.11c-16.12-.31-30.58-9.28-37.83-23.75zM384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zm-96 225.06V416h68.99l161.68-162.78-67.88-67.88L288 346.96zm280.54-179.63l-31.87-31.87c-9.94-9.94-26.07-9.94-36.01 0l-27.25 27.25 67.88 67.88 27.25-27.25c9.95-9.94 9.95-26.07 0-36.01z"] }; +var faFileUpload = { prefix: 'fas', iconName: 'file-upload', icon: [384, 512, [], "f574", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm65.18 216.01H224v80c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-80H94.82c-14.28 0-21.41-17.29-11.27-27.36l96.42-95.7c6.65-6.61 17.39-6.61 24.04 0l96.42 95.7c10.15 10.07 3.03 27.36-11.25 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"] }; +var faFileVideo = { prefix: 'fas', iconName: 'file-video', icon: [384, 512, [], "f1c8", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z"] }; +var faFileWord = { prefix: 'fas', iconName: 'file-word', icon: [384, 512, [], "f1c2", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm57.1 120H305c7.7 0 13.4 7.1 11.7 14.7l-38 168c-1.2 5.5-6.1 9.3-11.7 9.3h-38c-5.5 0-10.3-3.8-11.6-9.1-25.8-103.5-20.8-81.2-25.6-110.5h-.5c-1.1 14.3-2.4 17.4-25.6 110.5-1.3 5.3-6.1 9.1-11.6 9.1H117c-5.6 0-10.5-3.9-11.7-9.4l-37.8-168c-1.7-7.5 4-14.6 11.7-14.6h24.5c5.7 0 10.7 4 11.8 9.7 15.6 78 20.1 109.5 21 122.2 1.6-10.2 7.3-32.7 29.4-122.7 1.3-5.4 6.1-9.1 11.7-9.1h29.1c5.6 0 10.4 3.8 11.7 9.2 24 100.4 28.8 124 29.6 129.4-.2-11.2-2.6-17.8 21.6-129.2 1-5.6 5.9-9.5 11.5-9.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"] }; +var faFill = { prefix: 'fas', iconName: 'fill', icon: [512, 512, [], "f575", "M502.63 217.06L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.77c-6.24-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.63l86.19 86.18-94.76 94.76c-37.49 37.49-37.49 98.26 0 135.75l117.19 117.19c18.75 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.88-28.12l221.57-221.57c12.49-12.5 12.49-32.76 0-45.26zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.61 58.6c12.49 12.49 32.75 12.49 45.24 0 12.49-12.49 12.49-32.75 0-45.24l-58.61-58.6 58.95-58.95 162.45 162.44-48.35 48.34z"] }; +var faFillDrip = { prefix: 'fas', iconName: 'fill-drip', icon: [576, 512, [], "f576", "M512 320s-64 92.65-64 128c0 35.35 28.66 64 64 64s64-28.65 64-64-64-128-64-128zm-9.37-102.94L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.76c-6.25-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.62l86.19 86.18-94.76 94.76c-37.49 37.48-37.49 98.26 0 135.75l117.19 117.19c18.74 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.87-28.12l221.57-221.57c12.5-12.5 12.5-32.75.01-45.25zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.6 58.6c12.49 12.49 32.75 12.49 45.24 0s12.49-32.75 0-45.24l-58.6-58.6 58.95-58.95 162.44 162.44-48.34 48.34z"] }; +var faFilm = { prefix: 'fas', iconName: 'film', icon: [512, 512, [], "f008", "M488 64h-8v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V64H96v20c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12V64h-8C10.7 64 0 74.7 0 88v336c0 13.3 10.7 24 24 24h8v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h320v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h8c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM96 372c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm272 208c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm0-168c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm112 152c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z"] }; +var faFilter = { prefix: 'fas', iconName: 'filter', icon: [512, 512, [], "f0b0", "M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z"] }; +var faFingerprint = { prefix: 'fas', iconName: 'fingerprint', icon: [512, 512, [], "f577", "M256.12 245.96c-13.25 0-24 10.74-24 24 1.14 72.25-8.14 141.9-27.7 211.55-2.73 9.72 2.15 30.49 23.12 30.49 10.48 0 20.11-6.92 23.09-17.52 13.53-47.91 31.04-125.41 29.48-224.52.01-13.25-10.73-24-23.99-24zm-.86-81.73C194 164.16 151.25 211.3 152.1 265.32c.75 47.94-3.75 95.91-13.37 142.55-2.69 12.98 5.67 25.69 18.64 28.36 13.05 2.67 25.67-5.66 28.36-18.64 10.34-50.09 15.17-101.58 14.37-153.02-.41-25.95 19.92-52.49 54.45-52.34 31.31.47 57.15 25.34 57.62 55.47.77 48.05-2.81 96.33-10.61 143.55-2.17 13.06 6.69 25.42 19.76 27.58 19.97 3.33 26.81-15.1 27.58-19.77 8.28-50.03 12.06-101.21 11.27-152.11-.88-55.8-47.94-101.88-104.91-102.72zm-110.69-19.78c-10.3-8.34-25.37-6.8-33.76 3.48-25.62 31.5-39.39 71.28-38.75 112 .59 37.58-2.47 75.27-9.11 112.05-2.34 13.05 6.31 25.53 19.36 27.89 20.11 3.5 27.07-14.81 27.89-19.36 7.19-39.84 10.5-80.66 9.86-121.33-.47-29.88 9.2-57.88 28-80.97 8.35-10.28 6.79-25.39-3.49-33.76zm109.47-62.33c-15.41-.41-30.87 1.44-45.78 4.97-12.89 3.06-20.87 15.98-17.83 28.89 3.06 12.89 16 20.83 28.89 17.83 11.05-2.61 22.47-3.77 34-3.69 75.43 1.13 137.73 61.5 138.88 134.58.59 37.88-1.28 76.11-5.58 113.63-1.5 13.17 7.95 25.08 21.11 26.58 16.72 1.95 25.51-11.88 26.58-21.11a929.06 929.06 0 0 0 5.89-119.85c-1.56-98.75-85.07-180.33-186.16-181.83zm252.07 121.45c-2.86-12.92-15.51-21.2-28.61-18.27-12.94 2.86-21.12 15.66-18.26 28.61 4.71 21.41 4.91 37.41 4.7 61.6-.11 13.27 10.55 24.09 23.8 24.2h.2c13.17 0 23.89-10.61 24-23.8.18-22.18.4-44.11-5.83-72.34zm-40.12-90.72C417.29 43.46 337.6 1.29 252.81.02 183.02-.82 118.47 24.91 70.46 72.94 24.09 119.37-.9 181.04.14 246.65l-.12 21.47c-.39 13.25 10.03 24.31 23.28 24.69.23.02.48.02.72.02 12.92 0 23.59-10.3 23.97-23.3l.16-23.64c-.83-52.5 19.16-101.86 56.28-139 38.76-38.8 91.34-59.67 147.68-58.86 69.45 1.03 134.73 35.56 174.62 92.39 7.61 10.86 22.56 13.45 33.42 5.86 10.84-7.62 13.46-22.59 5.84-33.43z"] }; +var faFire = { prefix: 'fas', iconName: 'fire', icon: [384, 512, [], "f06d", "M216 23.858c0-23.802-30.653-32.765-44.149-13.038C48 191.851 224 200 224 288c0 35.629-29.114 64.458-64.85 63.994C123.98 351.538 96 322.22 96 287.046v-85.51c0-21.703-26.471-32.225-41.432-16.504C27.801 213.158 0 261.332 0 320c0 105.869 86.131 192 192 192s192-86.131 192-192c0-170.29-168-193.003-168-296.142z"] }; +var faFireExtinguisher = { prefix: 'fas', iconName: 'fire-extinguisher', icon: [448, 512, [], "f134", "M434.027 26.329l-168 28C254.693 56.218 256 67.8 256 72h-58.332C208.353 36.108 181.446 0 144 0c-39.435 0-66.368 39.676-52.228 76.203-52.039 13.051-75.381 54.213-90.049 90.884-4.923 12.307 1.063 26.274 13.37 31.197 12.317 4.926 26.279-1.075 31.196-13.37C75.058 112.99 106.964 120 168 120v27.076c-41.543 10.862-72 49.235-72 94.129V488c0 13.255 10.745 24 24 24h144c13.255 0 24-10.745 24-24V240c0-44.731-30.596-82.312-72-92.97V120h40c0 2.974-1.703 15.716 10.027 17.671l168 28C441.342 166.89 448 161.25 448 153.834V38.166c0-7.416-6.658-13.056-13.973-11.837zM144 72c-8.822 0-16-7.178-16-16s7.178-16 16-16 16 7.178 16 16-7.178 16-16 16z"] }; +var faFirstAid = { prefix: 'fas', iconName: 'first-aid', icon: [576, 512, [], "f479", "M0 80v352c0 26.5 21.5 48 48 48h48V32H48C21.5 32 0 53.5 0 80zm128 400h320V32H128v448zm64-248c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48zM528 32h-48v448h48c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"] }; +var faFish = { prefix: 'fas', iconName: 'fish', icon: [576, 512, [], "f578", "M327.1 96c-89.97 0-168.54 54.77-212.27 101.63L27.5 131.58c-12.13-9.18-30.24.6-27.14 14.66L24.54 256 .35 365.77c-3.1 14.06 15.01 23.83 27.14 14.66l87.33-66.05C158.55 361.23 237.13 416 327.1 416 464.56 416 576 288 576 256S464.56 96 327.1 96zm87.43 184c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24 13.26 0 24 10.74 24 24 0 13.25-10.75 24-24 24z"] }; +var faFlag = { prefix: 'fas', iconName: 'flag', icon: [512, 512, [], "f024", "M349.565 98.783C295.978 98.783 251.721 64 184.348 64c-24.955 0-47.309 4.384-68.045 12.013a55.947 55.947 0 0 0 3.586-23.562C118.117 24.015 94.806 1.206 66.338.048 34.345-1.254 8 24.296 8 56c0 19.026 9.497 35.825 24 45.945V488c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-94.4c28.311-12.064 63.582-22.122 114.435-22.122 53.588 0 97.844 34.783 165.217 34.783 48.169 0 86.667-16.294 122.505-40.858C506.84 359.452 512 349.571 512 339.045v-243.1c0-23.393-24.269-38.87-45.485-29.016-34.338 15.948-76.454 31.854-116.95 31.854z"] }; +var faFlagCheckered = { prefix: 'fas', iconName: 'flag-checkered', icon: [512, 512, [], "f11e", "M466.515 66.928C487.731 57.074 512 72.551 512 95.944v243.1c0 10.526-5.161 20.407-13.843 26.358-35.837 24.564-74.335 40.858-122.505 40.858-67.373 0-111.63-34.783-165.217-34.783-50.853 0-86.124 10.058-114.435 22.122V488c0 13.255-10.745 24-24 24H56c-13.255 0-24-10.745-24-24V101.945C17.497 91.825 8 75.026 8 56 8 24.296 34.345-1.254 66.338.048c28.468 1.158 51.779 23.968 53.551 52.404.52 8.342-.81 16.31-3.586 23.562C137.039 68.384 159.393 64 184.348 64c67.373 0 111.63 34.783 165.217 34.783 40.496 0 82.612-15.906 116.95-31.855zM96 134.63v70.49c29-10.67 51.18-17.83 73.6-20.91v-71.57c-23.5 2.17-40.44 9.79-73.6 21.99zm220.8 9.19c-26.417-4.672-49.886-13.979-73.6-21.34v67.42c24.175 6.706 47.566 16.444 73.6 22.31v-68.39zm-147.2 40.39v70.04c32.796-2.978 53.91-.635 73.6 3.8V189.9c-25.247-7.035-46.581-9.423-73.6-5.69zm73.6 142.23c26.338 4.652 49.732 13.927 73.6 21.34v-67.41c-24.277-6.746-47.54-16.45-73.6-22.32v68.39zM96 342.1c23.62-8.39 47.79-13.84 73.6-16.56v-71.29c-26.11 2.35-47.36 8.04-73.6 17.36v70.49zm368-221.6c-21.3 8.85-46.59 17.64-73.6 22.47v71.91c27.31-4.36 50.03-14.1 73.6-23.89V120.5zm0 209.96v-70.49c-22.19 14.2-48.78 22.61-73.6 26.02v71.58c25.07-2.38 48.49-11.04 73.6-27.11zM316.8 212.21v68.16c25.664 7.134 46.616 9.342 73.6 5.62v-71.11c-25.999 4.187-49.943 2.676-73.6-2.67z"] }; +var faFlask = { prefix: 'fas', iconName: 'flask', icon: [448, 512, [], "f0c3", "M437.2 403.5L320 215V64h8c13.3 0 24-10.7 24-24V24c0-13.3-10.7-24-24-24H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h8v151L10.8 403.5C-18.5 450.6 15.3 512 70.9 512h306.2c55.7 0 89.4-61.5 60.1-108.5zM137.9 320l48.2-77.6c3.7-5.2 5.8-11.6 5.8-18.4V64h64v160c0 6.9 2.2 13.2 5.8 18.4l48.2 77.6h-172z"] }; +var faFlushed = { prefix: 'fas', iconName: 'flushed', icon: [496, 512, [], "f579", "M344 200c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-192 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM80 224c0-39.8 32.2-72 72-72s72 32.2 72 72-32.2 72-72 72-72-32.2-72-72zm232 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-104c-39.8 0-72-32.2-72-72s32.2-72 72-72 72 32.2 72 72-32.2 72-72 72z"] }; +var faFolder = { prefix: 'fas', iconName: 'folder', icon: [512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z"] }; +var faFolderOpen = { prefix: 'fas', iconName: 'folder-open', icon: [576, 512, [], "f07c", "M572.694 292.093L500.27 416.248A63.997 63.997 0 0 1 444.989 448H45.025c-18.523 0-30.064-20.093-20.731-36.093l72.424-124.155A64 64 0 0 1 152 256h399.964c18.523 0 30.064 20.093 20.73 36.093zM152 224h328v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v278.046l69.077-118.418C86.214 242.25 117.989 224 152 224z"] }; +var faFont = { prefix: 'fas', iconName: 'font', icon: [448, 512, [], "f031", "M152 416h-24.013l26.586-80.782H292.8L319.386 416H296c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-26.739L275.495 42.746A16 16 0 0 0 260.382 32h-72.766a16 16 0 0 0-15.113 10.746L42.739 416H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm64.353-271.778c4.348-15.216 6.61-28.156 7.586-34.644.839 6.521 2.939 19.476 7.727 34.706l41.335 124.006h-98.619l41.971-124.068z"] }; +var faFontAwesomeLogoFull = { prefix: 'fas', iconName: 'font-awesome-logo-full', icon: [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"] }; +var faFootballBall = { prefix: 'fas', iconName: 'football-ball', icon: [496, 512, [], "f44e", "M481.5 60.3c-4.8-18.2-19.1-32.5-37.3-37.4C420.3 16.5 383 8.9 339.4 8L496 164.8c-.8-43.5-8.2-80.6-14.5-104.5zm-467 391.4c4.8 18.2 19.1 32.5 37.3 37.4 23.9 6.4 61.2 14 104.8 14.9L0 347.2c.8 43.5 8.2 80.6 14.5 104.5zM4.2 283.4L220.4 500c132.5-19.4 248.8-118.7 271.5-271.4L275.6 12C143.1 31.4 26.8 130.7 4.2 283.4zm317.3-123.6c3.1-3.1 8.2-3.1 11.3 0l11.3 11.3c3.1 3.1 3.1 8.2 0 11.3l-28.3 28.3 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-22.6 22.7 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L248 278.6l-22.6 22.6 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-28.3 28.3c-3.1 3.1-8.2 3.1-11.3 0l-11.3-11.3c-3.1-3.1-3.1-8.2 0-11.3l28.3-28.3-28.3-28.2c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 28.3-28.5z"] }; +var faForward = { prefix: 'fas', iconName: 'forward', icon: [512, 512, [], "f04e", "M500.5 231.4l-192-160C287.9 54.3 256 68.6 256 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2zm-256 0l-192-160C31.9 54.3 0 68.6 0 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2z"] }; +var faFrog = { prefix: 'fas', iconName: 'frog', icon: [576, 512, [], "f52e", "M446.53 97.43C439.67 60.23 407.19 32 368 32c-39.23 0-71.72 28.29-78.54 65.54C126.75 112.96-.5 250.12 0 416.98.11 451.9 29.08 480 64 480h304c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-79.49l35.8-48.33c24.14-36.23 10.35-88.28-33.71-106.6-23.89-9.93-51.55-4.65-72.24 10.88l-32.76 24.59c-7.06 5.31-17.09 3.91-22.41-3.19-5.3-7.08-3.88-17.11 3.19-22.41l34.78-26.09c36.84-27.66 88.28-27.62 125.13 0 10.87 8.15 45.87 39.06 40.8 93.21L469.62 480H560c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-53.63l-98.52-104.68 154.44-86.65A58.16 58.16 0 0 0 576 189.94c0-21.4-11.72-40.95-30.48-51.23-40.56-22.22-98.99-41.28-98.99-41.28zM368 136c-13.26 0-24-10.75-24-24 0-13.26 10.74-24 24-24 13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24z"] }; +var faFrown = { prefix: 'fas', iconName: 'frown', icon: [496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm170.2 218.2C315.8 367.4 282.9 352 248 352s-67.8 15.4-90.2 42.2c-13.5 16.3-38.1-4.2-24.6-20.5C161.7 339.6 203.6 320 248 320s86.3 19.6 114.7 53.8c13.6 16.2-11 36.7-24.5 20.4z"] }; +var faFrownOpen = { prefix: 'fas', iconName: 'frown-open', icon: [496, 512, [], "f57a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm187.3 183.3c-31.2-9.6-59.4-15.3-75.3-15.3s-44.1 5.7-75.3 15.3c-11.5 3.5-22.5-6.3-20.5-18.1 7-40 60.1-61.2 95.8-61.2s88.8 21.3 95.8 61.2c2 11.9-9.1 21.6-20.5 18.1zM328 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faFutbol = { prefix: 'fas', iconName: 'futbol', icon: [512, 512, [], "f1e3", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-48 0l-.003-.282-26.064 22.741-62.679-58.5 16.454-84.355 34.303 3.072c-24.889-34.216-60.004-60.089-100.709-73.141l13.651 31.939L256 139l-74.953-41.525 13.651-31.939c-40.631 13.028-75.78 38.87-100.709 73.141l34.565-3.073 16.192 84.355-62.678 58.5-26.064-22.741-.003.282c0 43.015 13.497 83.952 38.472 117.991l7.704-33.897 85.138 10.447 36.301 77.826-29.902 17.786c40.202 13.122 84.29 13.148 124.572 0l-29.902-17.786 36.301-77.826 85.138-10.447 7.704 33.897C442.503 339.952 456 299.015 456 256zm-248.102 69.571l-29.894-91.312L256 177.732l77.996 56.527-29.622 91.312h-96.476z"] }; +var faGamepad = { prefix: 'fas', iconName: 'gamepad', icon: [640, 512, [], "f11b", "M480 96H160C71.6 96 0 167.6 0 256s71.6 160 160 160c44.8 0 85.2-18.4 114.2-48h91.5c29 29.6 69.5 48 114.2 48 88.4 0 160-71.6 160-160S568.4 96 480 96zM256 276c0 6.6-5.4 12-12 12h-52v52c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-52H76c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h52v-52c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h52c6.6 0 12 5.4 12 12v40zm184 68c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-80c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; +var faGasPump = { prefix: 'fas', iconName: 'gas-pump', icon: [512, 512, [], "f52f", "M336 448H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm157.2-340.7l-81-81c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-6.2 6.2-6.2 16.4 0 22.6L416 97.9V160c0 28.1 20.9 51.3 48 55.2V376c0 13.2-10.8 24-24 24s-24-10.8-24-24v-32c0-48.6-39.4-88-88-88h-8V64c0-35.3-28.7-64-64-64H96C60.7 0 32 28.7 32 64v352h288V304h8c22.1 0 40 17.9 40 40v27.8c0 37.7 27 72 64.5 75.9 43 4.3 79.5-29.5 79.5-71.7V152.6c0-17-6.8-33.3-18.8-45.3zM256 192H96V64h160v128z"] }; +var faGavel = { prefix: 'fas', iconName: 'gavel', icon: [512, 512, [], "f0e3", "M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z"] }; +var faGem = { prefix: 'fas', iconName: 'gem', icon: [576, 512, [], "f3a5", "M485.5 0L576 160H474.9L405.7 0h79.8zm-128 0l69.2 160H149.3L218.5 0h139zm-267 0h79.8l-69.2 160H0L90.5 0zM0 192h100.7l123 251.7c1.5 3.1-2.7 5.9-5 3.3L0 192zm148.2 0h279.6l-137 318.2c-1 2.4-4.5 2.4-5.5 0L148.2 192zm204.1 251.7l123-251.7H576L357.3 446.9c-2.3 2.7-6.5-.1-5-3.2z"] }; +var faGenderless = { prefix: 'fas', iconName: 'genderless', icon: [288, 512, [], "f22d", "M144 176c44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80 35.9-80 80-80m0-64C64.5 112 0 176.5 0 256s64.5 144 144 144 144-64.5 144-144-64.5-144-144-144z"] }; +var faGift = { prefix: 'fas', iconName: 'gift', icon: [512, 512, [], "f06b", "M32 448c0 17.7 14.3 32 32 32h160V320H32v128zm448-288h-42.1c6.2-12.1 10.1-25.5 10.1-40 0-48.5-39.5-88-88-88-41.6 0-68.5 21.3-103 68.3-34.5-47-61.4-68.3-103-68.3-48.5 0-88 39.5-88 88 0 14.5 3.8 27.9 10.1 40H32c-17.7 0-32 14.3-32 32v80c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-80c0-17.7-14.3-32-32-32zm-326.1 0c-22.1 0-40-17.9-40-40s17.9-40 40-40c19.9 0 34.6 3.3 86.1 80h-86.1zm206.1 0h-86.1c51.4-76.5 65.7-80 86.1-80 22.1 0 40 17.9 40 40s-17.9 40-40 40zm-72 320h160c17.7 0 32-14.3 32-32V320H288v160z"] }; +var faGlassMartini = { prefix: 'fas', iconName: 'glass-martini', icon: [512, 512, [], "f000", "M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6z"] }; +var faGlassMartiniAlt = { prefix: 'fas', iconName: 'glass-martini-alt', icon: [512, 512, [], "f57b", "M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6zM443.77 48l-48 48H116.24l-48-48h375.53z"] }; +var faGlasses = { prefix: 'fas', iconName: 'glasses', icon: [576, 512, [], "f530", "M574.1 280.37L528.75 98.66c-5.91-23.7-21.59-44.05-43-55.81-21.44-11.73-46.97-14.11-70.19-6.33l-15.25 5.08c-8.39 2.79-12.92 11.86-10.12 20.24l5.06 15.18c2.79 8.38 11.85 12.91 20.23 10.12l13.18-4.39c10.87-3.62 23-3.57 33.16 1.73 10.29 5.37 17.57 14.56 20.37 25.82l38.46 153.82c-22.19-6.81-49.79-12.46-81.2-12.46-34.77 0-73.98 7.02-114.85 26.74h-73.18c-40.87-19.74-80.08-26.75-114.86-26.75-31.42 0-59.02 5.65-81.21 12.46l38.46-153.83c2.79-11.25 10.09-20.45 20.38-25.81 10.16-5.3 22.28-5.35 33.15-1.73l13.17 4.39c8.38 2.79 17.44-1.74 20.23-10.12l5.06-15.18c2.8-8.38-1.73-17.45-10.12-20.24l-15.25-5.08c-23.22-7.78-48.75-5.41-70.19 6.33-21.41 11.77-37.09 32.11-43 55.8L1.9 280.37A64.218 64.218 0 0 0 0 295.86v70.25C0 429.01 51.58 480 115.2 480h37.12c60.28 0 110.37-45.94 114.88-105.37l2.93-38.63h35.75l2.93 38.63C313.31 434.06 363.4 480 423.68 480h37.12c63.62 0 115.2-50.99 115.2-113.88v-70.25c0-5.23-.64-10.43-1.9-15.5zm-370.72 89.42c-1.97 25.91-24.4 46.21-51.06 46.21H115.2C86.97 416 64 393.62 64 366.11v-37.54c18.12-6.49 43.42-12.92 72.58-12.92 23.86 0 47.26 4.33 69.93 12.92l-3.13 41.22zM512 366.12c0 27.51-22.97 49.88-51.2 49.88h-37.12c-26.67 0-49.1-20.3-51.06-46.21l-3.13-41.22c22.67-8.59 46.08-12.92 69.95-12.92 29.12 0 54.43 6.44 72.55 12.93v37.54z"] }; +var faGlobe = { prefix: 'fas', iconName: 'globe', icon: [496, 512, [], "f0ac", "M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z"] }; +var faGlobeAfrica = { prefix: 'fas', iconName: 'globe-africa', icon: [496, 512, [], "f57c", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm160 215.5v6.93c0 5.87-3.32 11.24-8.57 13.86l-15.39 7.7a15.485 15.485 0 0 1-15.53-.97l-18.21-12.14a15.52 15.52 0 0 0-13.5-1.81l-2.65.88c-9.7 3.23-13.66 14.79-7.99 23.3l13.24 19.86c2.87 4.31 7.71 6.9 12.89 6.9h8.21c8.56 0 15.5 6.94 15.5 15.5v11.34c0 3.35-1.09 6.62-3.1 9.3l-18.74 24.98c-1.42 1.9-2.39 4.1-2.83 6.43l-4.3 22.83c-.62 3.29-2.29 6.29-4.76 8.56a159.608 159.608 0 0 0-25 29.16l-13.03 19.55a27.756 27.756 0 0 1-23.09 12.36c-10.51 0-20.12-5.94-24.82-15.34a78.902 78.902 0 0 1-8.33-35.29V367.5c0-8.56-6.94-15.5-15.5-15.5h-25.88c-14.49 0-28.38-5.76-38.63-16a54.659 54.659 0 0 1-16-38.63v-14.06c0-17.19 8.1-33.38 21.85-43.7l27.58-20.69a54.663 54.663 0 0 1 32.78-10.93h.89c8.48 0 16.85 1.97 24.43 5.77l14.72 7.36c3.68 1.84 7.93 2.14 11.83.84l47.31-15.77c6.33-2.11 10.6-8.03 10.6-14.7 0-8.56-6.94-15.5-15.5-15.5h-10.09c-4.11 0-8.05-1.63-10.96-4.54l-6.92-6.92a15.493 15.493 0 0 0-10.96-4.54H199.5c-8.56 0-15.5-6.94-15.5-15.5v-4.4c0-7.11 4.84-13.31 11.74-15.04l14.45-3.61c3.74-.94 7-3.23 9.14-6.44l8.08-12.11c2.87-4.31 7.71-6.9 12.89-6.9h24.21c8.56 0 15.5-6.94 15.5-15.5v-21.7C359.23 71.63 422.86 131.02 441.93 208H423.5c-8.56 0-15.5 6.94-15.5 15.5z"] }; +var faGlobeAmericas = { prefix: 'fas', iconName: 'globe-americas', icon: [496, 512, [], "f57d", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm82.29 357.6c-3.9 3.88-7.99 7.95-11.31 11.28-2.99 3-5.1 6.7-6.17 10.71-1.51 5.66-2.73 11.38-4.77 16.87l-17.39 46.85c-13.76 3-28 4.69-42.65 4.69v-27.38c1.69-12.62-7.64-36.26-22.63-51.25-6-6-9.37-14.14-9.37-22.63v-32.01c0-11.64-6.27-22.34-16.46-27.97-14.37-7.95-34.81-19.06-48.81-26.11-11.48-5.78-22.1-13.14-31.65-21.75l-.8-.72a114.792 114.792 0 0 1-18.06-20.74c-9.38-13.77-24.66-36.42-34.59-51.14 20.47-45.5 57.36-82.04 103.2-101.89l24.01 12.01C203.48 89.74 216 82.01 216 70.11v-11.3c7.99-1.29 16.12-2.11 24.39-2.42l28.3 28.3c6.25 6.25 6.25 16.38 0 22.63L264 112l-10.34 10.34c-3.12 3.12-3.12 8.19 0 11.31l4.69 4.69c3.12 3.12 3.12 8.19 0 11.31l-8 8a8.008 8.008 0 0 1-5.66 2.34h-8.99c-2.08 0-4.08.81-5.58 2.27l-9.92 9.65a8.008 8.008 0 0 0-1.58 9.31l15.59 31.19c2.66 5.32-1.21 11.58-7.15 11.58h-5.64c-1.93 0-3.79-.7-5.24-1.96l-9.28-8.06a16.017 16.017 0 0 0-15.55-3.1l-31.17 10.39a11.95 11.95 0 0 0-8.17 11.34c0 4.53 2.56 8.66 6.61 10.69l11.08 5.54c9.41 4.71 19.79 7.16 30.31 7.16s22.59 27.29 32 32h66.75c8.49 0 16.62 3.37 22.63 9.37l13.69 13.69a30.503 30.503 0 0 1 8.93 21.57 46.536 46.536 0 0 1-13.72 32.98zM417 274.25c-5.79-1.45-10.84-5-14.15-9.97l-17.98-26.97a23.97 23.97 0 0 1 0-26.62l19.59-29.38c2.32-3.47 5.5-6.29 9.24-8.15l12.98-6.49C440.2 193.59 448 223.87 448 256c0 8.67-.74 17.16-1.82 25.54L417 274.25z"] }; +var faGlobeAsia = { prefix: 'fas', iconName: 'globe-asia', icon: [496, 512, [], "f57e", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm-11.34 240.23c-2.89 4.82-8.1 7.77-13.72 7.77h-.31c-4.24 0-8.31 1.69-11.31 4.69l-5.66 5.66c-3.12 3.12-3.12 8.19 0 11.31l5.66 5.66c3 3 4.69 7.07 4.69 11.31V304c0 8.84-7.16 16-16 16h-6.11c-6.06 0-11.6-3.42-14.31-8.85l-22.62-45.23c-2.44-4.88-8.95-5.94-12.81-2.08l-19.47 19.46c-3 3-7.07 4.69-11.31 4.69H50.81C49.12 277.55 48 266.92 48 256c0-110.28 89.72-200 200-200 21.51 0 42.2 3.51 61.63 9.82l-50.16 38.53c-5.11 3.41-4.63 11.06.86 13.81l10.83 5.41c5.42 2.71 8.84 8.25 8.84 14.31V216c0 4.42-3.58 8-8 8h-3.06c-3.03 0-5.8-1.71-7.15-4.42-1.56-3.12-5.96-3.29-7.76-.3l-17.37 28.95zM408 358.43c0 4.24-1.69 8.31-4.69 11.31l-9.57 9.57c-3 3-7.07 4.69-11.31 4.69h-15.16c-4.24 0-8.31-1.69-11.31-4.69l-13.01-13.01a26.767 26.767 0 0 0-25.42-7.04l-21.27 5.32c-1.27.32-2.57.48-3.88.48h-10.34c-4.24 0-8.31-1.69-11.31-4.69l-11.91-11.91a8.008 8.008 0 0 1-2.34-5.66v-10.2c0-3.27 1.99-6.21 5.03-7.43l39.34-15.74c1.98-.79 3.86-1.82 5.59-3.05l23.71-16.89a7.978 7.978 0 0 1 4.64-1.48h12.09c3.23 0 6.15 1.94 7.39 4.93l5.35 12.85a4 4 0 0 0 3.69 2.46h3.8c1.78 0 3.35-1.18 3.84-2.88l4.2-14.47c.5-1.71 2.06-2.88 3.84-2.88h6.06c2.21 0 4 1.79 4 4v12.93c0 2.12.84 4.16 2.34 5.66l11.91 11.91c3 3 4.69 7.07 4.69 11.31v24.6z"] }; +var faGolfBall = { prefix: 'fas', iconName: 'golf-ball', icon: [416, 512, [], "f450", "M96 416h224c0 17.7-14.3 32-32 32h-16c-17.7 0-32 14.3-32 32v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-20c0-17.7-14.3-32-32-32h-16c-17.7 0-32-14.3-32-32zm320-208c0 74.2-39 139.2-97.5 176h-221C39 347.2 0 282.2 0 208 0 93.1 93.1 0 208 0s208 93.1 208 208zm-180.1 43.9c18.3 0 33.1-14.8 33.1-33.1 0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1zm49.1 46.9c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1zm64-64c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1z"] }; +var faGraduationCap = { prefix: 'fas', iconName: 'graduation-cap', icon: [640, 512, [], "f19d", "M622.884 199.005l-275.817 85.1a96 96 0 0 1-54.134 0L92.398 222.232c-8.564 11.438-11.018 23.05-11.918 38.335C89.778 266.165 96 276.355 96 288c0 11.952-6.557 22.366-16.265 27.861l16.197 123.096c.63 4.786-3.1 9.043-7.932 9.043H40c-4.828 0-8.562-4.253-7.932-9.044L48.265 315.86C38.557 310.366 32 299.952 32 288c0-12.034 6.646-22.511 16.465-27.976.947-17.951 3.974-33.231 12.152-47.597l-43.502-13.422c-22.876-6.801-22.766-39.241 0-46.01l275.817-85.1a96 96 0 0 1 54.134 0l275.817 85.1c22.877 6.801 22.767 39.241.001 46.01zM356.503 314.682l-.207.064-.207.061a127.998 127.998 0 0 1-72.177 0l-.207-.061-.207-.064-150.914-46.57L120 352c0 35.346 89.543 64 200 64s200-28.654 200-64l-12.583-83.888-150.914 46.57z"] }; +var faGreaterThan = { prefix: 'fas', iconName: 'greater-than', icon: [384, 512, [], "f531", "M365.52 209.85L59.22 67.01c-16.06-7.49-35.15-.54-42.64 15.52L3.01 111.61c-7.49 16.06-.54 35.15 15.52 42.64L236.96 256.1 18.49 357.99C2.47 365.46-4.46 384.5 3.01 400.52l13.52 29C24 445.54 43.04 452.47 59.06 445l306.47-142.91a32.003 32.003 0 0 0 18.48-29v-34.23c-.01-12.45-7.21-23.76-18.49-29.01z"] }; +var faGreaterThanEqual = { prefix: 'fas', iconName: 'greater-than-equal', icon: [448, 512, [], "f532", "M55.22 107.69l175.56 68.09-175.44 68.05c-18.39 6.03-27.88 24.39-21.2 41l12.09 30.08c6.68 16.61 26.99 25.19 45.38 19.15L393.02 214.2c13.77-4.52 22.98-16.61 22.98-30.17v-15.96c0-13.56-9.21-25.65-22.98-30.17L91.3 17.92c-18.29-6-38.51 2.53-45.15 19.06L34.12 66.9c-6.64 16.53 2.81 34.79 21.1 40.79zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"] }; +var faGrimace = { prefix: 'fas', iconName: 'grimace', icon: [496, 512, [], "f57f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM144 400h-8c-17.7 0-32-14.3-32-32v-8h40v40zm0-56h-40v-8c0-17.7 14.3-32 32-32h8v40zm-8-136c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm72 192h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm-8-104c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64 128c0 17.7-14.3 32-32 32h-8v-40h40v8zm0-24h-40v-40h8c17.7 0 32 14.3 32 32v8z"] }; +var faGrin = { prefix: 'fas', iconName: 'grin', icon: [496, 512, [], "f580", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm80 256c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"] }; +var faGrinAlt = { prefix: 'fas', iconName: 'grin-alt', icon: [496, 512, [], "f581", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm63.7 128.7c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zm-160 0c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"] }; +var faGrinBeam = { prefix: 'fas', iconName: 'grin-beam', icon: [496, 512, [], "f582", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 144c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"] }; +var faGrinBeamSweat = { prefix: 'fas', iconName: 'grin-beam-sweat', icon: [504, 512, [], "f583", "M456 128c26.5 0 48-21 48-47 0-20-28.5-60.4-41.6-77.8-3.2-4.3-9.6-4.3-12.8 0C436.5 20.6 408 61 408 81c0 26 21.5 47 48 47zm0 32c-44.1 0-80-35.4-80-79 0-4.4.3-14.2 8.1-32.2C345 23.1 298.3 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-35.1-7.4-68.4-20.5-98.6-6.3 1.5-12.7 2.6-19.5 2.6zm-128-8c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"] }; +var faGrinHearts = { prefix: 'fas', iconName: 'grin-hearts', icon: [496, 512, [], "f584", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM90.4 183.6c6.7-17.6 26.7-26.7 44.9-21.9l7.1 1.9 2-7.1c5-18.1 22.8-30.9 41.5-27.9 21.4 3.4 34.4 24.2 28.8 44.5L195.3 243c-1.2 4.5-5.9 7.2-10.5 6l-70.2-18.2c-20.4-5.4-31.9-27-24.2-47.2zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm133.4-201.3l-70.2 18.2c-4.5 1.2-9.2-1.5-10.5-6L281.3 173c-5.6-20.3 7.4-41.1 28.8-44.5 18.6-3 36.4 9.8 41.5 27.9l2 7.1 7.1-1.9c18.2-4.7 38.2 4.3 44.9 21.9 7.7 20.3-3.8 41.9-24.2 47.2z"] }; +var faGrinSquint = { prefix: 'fas', iconName: 'grin-squint', icon: [496, 512, [], "f585", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"] }; +var faGrinSquintTears = { prefix: 'fas', iconName: 'grin-squint-tears', icon: [512, 512, [], "f586", "M409.6 111.9c22.6-3.2 73.5-12 88.3-26.8 19.2-19.2 18.9-50.6-.7-70.2S446-5 426.9 14.2c-14.8 14.8-23.5 65.7-26.8 88.3-.8 5.5 3.9 10.2 9.5 9.4zM102.4 400.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm311.7-256.5c-33 3.9-48.6-25.1-45.7-45.7 3.4-24 7.4-42.1 11.5-56.5C285.1-13.4 161.8-.5 80.6 80.6-.5 161.7-13.4 285 41.4 379.9c14.4-4.1 32.4-8 56.5-11.5 33.2-3.9 48.6 25.2 45.7 45.7-3.4 24-7.4 42.1-11.5 56.5 94.8 54.8 218.1 41.9 299.3-39.2s94-204.4 39.2-299.3c-14.4 4.1-32.5 8-56.5 11.5zM255.7 106c3.3-13.2 22.4-11.5 23.6 1.8l4.8 52.3 52.3 4.8c13.4 1.2 14.9 20.3 1.8 23.6l-90.5 22.6c-8.9 2.2-16.7-5.9-14.5-14.5l22.5-90.6zm-90.9 230.3L160 284l-52.3-4.8c-13.4-1.2-14.9-20.3-1.8-23.6l90.5-22.6c8.8-2.2 16.7 5.8 14.5 14.5L188.3 338c-3.1 13.2-22.2 11.7-23.5-1.7zm215.7 44.2c-29.3 29.3-75.7 50.4-116.7 50.4-18.9 0-36.6-4.5-51-14.7-9.8-6.9-8.7-21.8 2-27.2 28.3-14.6 63.9-42.4 97.8-76.3s61.7-69.6 76.3-97.8c5.4-10.5 20.2-11.9 27.3-2 32.3 45.3 7.1 124.7-35.7 167.6z"] }; +var faGrinStars = { prefix: 'fas', iconName: 'grin-stars', icon: [496, 512, [], "f587", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM94.6 168.9l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.2 1 8.9 8.6 4.3 13.2l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L152 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.6-4.7-1.9-12.3 4.3-13.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm157.7-249.9l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L344 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.5-4.6-1.9-12.2 4.3-13.2l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.3.9 9 8.5 4.4 13.1z"] }; +var faGrinTears = { prefix: 'fas', iconName: 'grin-tears', icon: [640, 512, [], "f588", "M102.4 256.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm523.4 26.8c-14.8-14.8-65.7-23.5-88.3-26.8-5.5-.8-10.3 3.9-9.5 9.5 3.2 22.6 12 73.5 26.8 88.3 19.2 19.2 50.6 18.9 70.2-.7s20-51.2.8-70.3zm-129.4-12.8c-3.8-26.6 19.1-49.5 45.7-45.7 8.9 1.3 16.8 2.7 24.3 4.1C552.7 104.5 447.7 8 320 8S87.3 104.5 73.6 228.5c7.5-1.4 15.4-2.8 24.3-4.1 33.2-3.9 48.6 25.3 45.7 45.7-11.8 82.3-29.9 100.4-35.8 106.4-.9.9-2 1.6-3 2.5 42.7 74.6 123 125 215.2 125s172.5-50.4 215.2-125.1c-1-.9-2.1-1.5-3-2.5-5.9-5.9-24-24-35.8-106.3zM400 152c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.7 9.2-21.6 20.7-17.9C227.1 330.5 272 336 320 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"] }; +var faGrinTongue = { prefix: 'fas', iconName: 'grin-tongue', icon: [496, 512, [], "f589", "M248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-34.9 134.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z"] }; +var faGrinTongueSquint = { prefix: 'fas', iconName: 'grin-tongue-squint', icon: [496, 512, [], "f58a", "M293.1 374.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-33.8 210.3l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.7 4.7 7.7 15.9 0 20.6zm163 30c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.8-4.7-7.8-15.9 0-20.6l80-48c11.7-6.9 23.9 7.7 15.4 18L343.6 208l33.6 40.3z"] }; +var faGrinTongueWink = { prefix: 'fas', iconName: 'grin-tongue-wink', icon: [496, 512, [], "f58b", "M344 184c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-56 225l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L112 233c-8.5 7.4-21.6.3-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c1.6 11.1-11.6 18.2-20 10.8zm152 39c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm-50.9 102.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z"] }; +var faGrinWink = { prefix: 'fas', iconName: 'grin-wink', icon: [496, 512, [], "f58c", "M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm168 25l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.6 11-11.5 18.2-20 10.8zm-243.1 87.8C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6 20.7 17.9-9.2 55-83.2 93.3-143.8 93.3s-134.5-38.3-143.8-93.3c-2-11.9 9.3-21.6 20.7-17.9z"] }; +var faGripHorizontal = { prefix: 'fas', iconName: 'grip-horizontal', icon: [448, 512, [], "f58d", "M96 288H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM96 96H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z"] }; +var faGripVertical = { prefix: 'fas', iconName: 'grip-vertical', icon: [320, 512, [], "f58e", "M96 32H32C14.33 32 0 46.33 0 64v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM288 32h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z"] }; +var faHSquare = { prefix: 'fas', iconName: 'h-square', icon: [448, 512, [], "f0fd", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-112 48h-32c-8.837 0-16 7.163-16 16v80H160v-80c0-8.837-7.163-16-16-16h-32c-8.837 0-16 7.163-16 16v224c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16v-80h128v80c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144c0-8.837-7.163-16-16-16z"] }; +var faHandHolding = { prefix: 'fas', iconName: 'hand-holding', icon: [576, 512, [], "f4bd", "M565.3 328.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z"] }; +var faHandHoldingHeart = { prefix: 'fas', iconName: 'hand-holding-heart', icon: [576, 512, [], "f4be", "M275.3 250.5c7 7.4 18.4 7.4 25.5 0l108.9-114.2c31.6-33.2 29.8-88.2-5.6-118.8-30.8-26.7-76.7-21.9-104.9 7.7L288 36.9l-11.1-11.6C248.7-4.4 202.8-9.2 172 17.5c-35.3 30.6-37.2 85.6-5.6 118.8l108.9 114.2zm290 77.6c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z"] }; +var faHandHoldingUsd = { prefix: 'fas', iconName: 'hand-holding-usd', icon: [544, 512, [], "f4c0", "M257.6 144.3l50 14.3c3.6 1 6.1 4.4 6.1 8.1 0 4.6-3.8 8.4-8.4 8.4h-32.8c-3.6 0-7.1-.8-10.3-2.2-4.8-2.2-10.4-1.7-14.1 2l-17.5 17.5c-5.3 5.3-4.7 14.3 1.5 18.4 9.5 6.3 20.3 10.1 31.8 11.5V240c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16v-17.6c30.3-3.6 53.3-31 49.3-63-2.9-23-20.7-41.3-42.9-47.7l-50-14.3c-3.6-1-6.1-4.4-6.1-8.1 0-4.6 3.8-8.4 8.4-8.4h32.8c3.6 0 7.1.8 10.3 2.2 4.8 2.2 10.4 1.7 14.1-2l17.5-17.5c5.3-5.3 4.7-14.3-1.5-18.4-9.5-6.3-20.3-10.1-31.8-11.5V16c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16v17.6c-30.3 3.6-53.3 31-49.3 63 2.9 23 20.7 41.3 42.9 47.7zm276.3 183.8c-11.2-10.7-28.5-10-40.3 0L406.4 402c-10.7 9.1-24 14-37.8 14H256.9c-8.3 0-15.1-7.2-15.1-16s6.8-16 15.1-16h73.9c15.1 0 29-10.9 31.4-26.6 3.1-20-11.5-37.4-29.8-37.4H181.3c-25.5 0-50.2 9.3-69.9 26.3L67.5 384H15.1C6.8 384 0 391.2 0 400v96c0 8.8 6.8 16 15.1 16H352c13.7 0 27-4.9 37.8-14l142.8-121c14.4-12.1 15.5-35.3 1.3-48.9z"] }; +var faHandLizard = { prefix: 'fas', iconName: 'hand-lizard', icon: [576, 512, [], "f258", "M384 480h192V363.778a95.998 95.998 0 0 0-14.833-51.263L398.127 54.368A48 48 0 0 0 357.544 32H24C10.745 32 0 42.745 0 56v16c0 30.928 25.072 56 56 56h229.981c12.844 0 21.556 13.067 16.615 24.923l-21.41 51.385A32 32 0 0 1 251.648 224H128c-35.346 0-64 28.654-64 64v8c0 13.255 10.745 24 24 24h147.406a47.995 47.995 0 0 1 25.692 7.455l111.748 70.811A24.001 24.001 0 0 1 384 418.539V480z"] }; +var faHandPaper = { prefix: 'fas', iconName: 'hand-paper', icon: [448, 512, [], "f256", "M408.781 128.007C386.356 127.578 368 146.36 368 168.79V256h-8V79.79c0-22.43-18.356-41.212-40.781-40.783C297.488 39.423 280 57.169 280 79v177h-8V40.79C272 18.36 253.644-.422 231.219.007 209.488.423 192 18.169 192 40v216h-8V80.79c0-22.43-18.356-41.212-40.781-40.783C121.488 40.423 104 58.169 104 80v235.992l-31.648-43.519c-12.993-17.866-38.009-21.817-55.877-8.823-17.865 12.994-21.815 38.01-8.822 55.877l125.601 172.705A48 48 0 0 0 172.073 512h197.59c22.274 0 41.622-15.324 46.724-37.006l26.508-112.66a192.011 192.011 0 0 0 5.104-43.975V168c.001-21.831-17.487-39.577-39.218-39.993z"] }; +var faHandPeace = { prefix: 'fas', iconName: 'hand-peace', icon: [448, 512, [], "f25b", "M408 216c-22.092 0-40 17.909-40 40h-8v-32c0-22.091-17.908-40-40-40s-40 17.909-40 40v32h-8V48c0-26.51-21.49-48-48-48s-48 21.49-48 48v208h-13.572L92.688 78.449C82.994 53.774 55.134 41.63 30.461 51.324 5.787 61.017-6.356 88.877 3.337 113.551l74.765 190.342-31.09 24.872c-15.381 12.306-19.515 33.978-9.741 51.081l64 112A39.998 39.998 0 0 0 136 512h240c18.562 0 34.686-12.77 38.937-30.838l32-136A39.97 39.97 0 0 0 448 336v-80c0-22.091-17.908-40-40-40z"] }; +var faHandPointDown = { prefix: 'fas', iconName: 'hand-point-down', icon: [384, 512, [], "f0a7", "M91.826 467.2V317.966c-8.248 5.841-16.558 10.57-24.918 14.153C35.098 345.752-.014 322.222 0 288c.008-18.616 10.897-32.203 29.092-40 28.286-12.122 64.329-78.648 77.323-107.534 7.956-17.857 25.479-28.453 43.845-28.464l.001-.002h171.526c11.812 0 21.897 8.596 23.703 20.269 7.25 46.837 38.483 61.76 38.315 123.731-.007 2.724.195 13.254.195 16 0 50.654-22.122 81.574-71.263 72.6-9.297 18.597-39.486 30.738-62.315 16.45-21.177 24.645-53.896 22.639-70.944 6.299V467.2c0 24.15-20.201 44.8-43.826 44.8-23.283 0-43.826-21.35-43.826-44.8zM112 72V24c0-13.255 10.745-24 24-24h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24zm212-24c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z"] }; +var faHandPointLeft = { prefix: 'fas', iconName: 'hand-point-left', icon: [512, 512, [], "f0a5", "M44.8 155.826h149.234c-5.841-8.248-10.57-16.558-14.153-24.918C166.248 99.098 189.778 63.986 224 64c18.616.008 32.203 10.897 40 29.092 12.122 28.286 78.648 64.329 107.534 77.323 17.857 7.956 28.453 25.479 28.464 43.845l.002.001v171.526c0 11.812-8.596 21.897-20.269 23.703-46.837 7.25-61.76 38.483-123.731 38.315-2.724-.007-13.254.195-16 .195-50.654 0-81.574-22.122-72.6-71.263-18.597-9.297-30.738-39.486-16.45-62.315-24.645-21.177-22.639-53.896-6.299-70.944H44.8c-24.15 0-44.8-20.201-44.8-43.826 0-23.283 21.35-43.826 44.8-43.826zM440 176h48c13.255 0 24 10.745 24 24v192c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24zm24 212c11.046 0 20-8.954 20-20s-8.954-20-20-20-20 8.954-20 20 8.954 20 20 20z"] }; +var faHandPointRight = { prefix: 'fas', iconName: 'hand-point-right', icon: [512, 512, [], "f0a4", "M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z"] }; +var faHandPointUp = { prefix: 'fas', iconName: 'hand-point-up', icon: [384, 512, [], "f0a6", "M135.652 0c23.625 0 43.826 20.65 43.826 44.8v99.851c17.048-16.34 49.766-18.346 70.944 6.299 22.829-14.288 53.017-2.147 62.315 16.45C361.878 158.426 384 189.346 384 240c0 2.746-.203 13.276-.195 16 .168 61.971-31.065 76.894-38.315 123.731C343.683 391.404 333.599 400 321.786 400H150.261l-.001-.002c-18.366-.011-35.889-10.607-43.845-28.464C93.421 342.648 57.377 276.122 29.092 264 10.897 256.203.008 242.616 0 224c-.014-34.222 35.098-57.752 66.908-44.119 8.359 3.583 16.67 8.312 24.918 14.153V44.8c0-23.45 20.543-44.8 43.826-44.8zM136 416h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24v-48c0-13.255 10.745-24 24-24zm168 28c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z"] }; +var faHandPointer = { prefix: 'fas', iconName: 'hand-pointer', icon: [448, 512, [], "f25a", "M448 240v96c0 3.084-.356 6.159-1.063 9.162l-32 136C410.686 499.23 394.562 512 376 512H168a40.004 40.004 0 0 1-32.35-16.473l-127.997-176c-12.993-17.866-9.043-42.883 8.822-55.876 17.867-12.994 42.884-9.043 55.877 8.823L104 315.992V40c0-22.091 17.908-40 40-40s40 17.909 40 40v200h8v-40c0-22.091 17.908-40 40-40s40 17.909 40 40v40h8v-24c0-22.091 17.908-40 40-40s40 17.909 40 40v24h8c0-22.091 17.908-40 40-40s40 17.909 40 40zm-256 80h-8v96h8v-96zm88 0h-8v96h8v-96zm88 0h-8v96h8v-96z"] }; +var faHandRock = { prefix: 'fas', iconName: 'hand-rock', icon: [512, 512, [], "f255", "M512 128.79c0-26.322-20.861-48.344-47.18-48.783C437.935 79.558 416 101.217 416 128h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C333.935 47.558 312 69.217 312 96v32h-8V80.79c0-26.322-20.861-48.344-47.18-48.783C229.935 31.558 208 53.217 208 80v48h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C125.935 47.558 104 69.217 104 96v136l-8-7.111V176.79c0-26.322-20.861-48.344-47.18-48.783C21.935 127.558 0 149.217 0 176v66.445a95.998 95.998 0 0 0 32.221 71.751l111.668 99.261A47.999 47.999 0 0 1 160 449.333V456c0 13.255 10.745 24 24 24h240c13.255 0 24-10.745 24-24v-2.921a96.01 96.01 0 0 1 7.523-37.254l48.954-116.265A96.002 96.002 0 0 0 512 262.306V128.79z"] }; +var faHandScissors = { prefix: 'fas', iconName: 'hand-scissors', icon: [512, 512, [], "f257", "M216 440c0-22.092 17.909-40 40-40v-8h-32c-22.091 0-40-17.908-40-40s17.909-40 40-40h32v-8H48c-26.51 0-48-21.49-48-48s21.49-48 48-48h208v-13.572l-177.551-69.74c-24.674-9.694-36.818-37.555-27.125-62.228 9.693-24.674 37.554-36.817 62.228-27.124l190.342 74.765 24.872-31.09c12.306-15.381 33.978-19.515 51.081-9.741l112 64A40.002 40.002 0 0 1 512 168v240c0 18.562-12.77 34.686-30.838 38.937l-136 32A39.982 39.982 0 0 1 336 480h-80c-22.091 0-40-17.908-40-40z"] }; +var faHandSpock = { prefix: 'fas', iconName: 'hand-spock', icon: [512, 512, [], "f259", "M10.872 316.585c15.139-16.086 40.454-16.854 56.543-1.713L128 371.893v-79.405L88.995 120.865c-4.896-21.542 8.598-42.974 30.14-47.87 21.549-4.894 42.975 8.599 47.87 30.141L201.747 256h9.833L164.016 48.966c-4.946-21.531 8.498-42.994 30.028-47.94 21.532-4.95 42.994 8.498 47.94 30.028L293.664 256h15.105l48.425-193.702c5.357-21.432 27.075-34.462 48.507-29.104 21.432 5.358 34.463 27.075 29.104 48.507L391.231 256h11.08l30.768-129.265c5.117-21.491 26.685-34.768 48.177-29.647 21.491 5.117 34.765 26.686 29.647 48.177l-36.292 152.467A96.024 96.024 0 0 0 472 319.967v42.102a96.002 96.002 0 0 1-3.96 27.287l-26.174 88.287C435.825 498.022 417.101 512 395.846 512H179.172a48.002 48.002 0 0 1-32.898-13.046L12.585 373.128c-16.087-15.141-16.853-40.456-1.713-56.543z"] }; +var faHands = { prefix: 'fas', iconName: 'hands', icon: [640, 512, [], "f4c2", "M204.8 230.4c-10.6-14.1-30.7-17-44.8-6.4-14.1 10.6-17 30.7-6.4 44.8l38.1 50.8c4.8 6.4 4.1 15.3-1.5 20.9l-12.8 12.8c-6.7 6.7-17.6 6.2-23.6-1.1L64 244.4V96c0-17.7-14.3-32-32-32S0 78.3 0 96v218.4c0 10.9 3.7 21.5 10.5 30l104.1 134.3c5 6.5 8.4 13.9 10.4 21.7 1.8 6.9 8.1 11.6 15.3 11.6H272c8.8 0 16-7.2 16-16V384c0-27.7-9-54.6-25.6-76.8l-57.6-76.8zM608 64c-17.7 0-32 14.3-32 32v148.4l-89.8 107.8c-6 7.2-17 7.7-23.6 1.1l-12.8-12.8c-5.6-5.6-6.3-14.5-1.5-20.9l38.1-50.8c10.6-14.1 7.7-34.2-6.4-44.8-14.1-10.6-34.2-7.7-44.8 6.4l-57.6 76.8C361 329.4 352 356.3 352 384v112c0 8.8 7.2 16 16 16h131.7c7.1 0 13.5-4.7 15.3-11.6 2-7.8 5.4-15.2 10.4-21.7l104.1-134.3c6.8-8.5 10.5-19.1 10.5-30V96c0-17.7-14.3-32-32-32z"] }; +var faHandsHelping = { prefix: 'fas', iconName: 'hands-helping', icon: [640, 512, [], "f4c4", "M488 192H336v56c0 39.7-32.3 72-72 72s-72-32.3-72-72V126.4l-64.9 39C107.8 176.9 96 197.8 96 220.2v47.3l-80 46.2C.7 322.5-4.6 342.1 4.3 357.4l80 138.6c8.8 15.3 28.4 20.5 43.7 11.7L231.4 448H368c35.3 0 64-28.7 64-64h16c17.7 0 32-14.3 32-32v-64h8c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zm147.7-37.4L555.7 16C546.9.7 527.3-4.5 512 4.3L408.6 64H306.4c-12 0-23.7 3.4-33.9 9.7L239 94.6c-9.4 5.8-15 16.1-15 27.1V248c0 22.1 17.9 40 40 40s40-17.9 40-40v-88h184c30.9 0 56 25.1 56 56v28.5l80-46.2c15.3-8.9 20.5-28.4 11.7-43.7z"] }; +var faHandshake = { prefix: 'fas', iconName: 'handshake', icon: [640, 512, [], "f2b5", "M434.7 64h-85.9c-8 0-15.7 3-21.6 8.4l-98.3 90c-.1.1-.2.3-.3.4-16.6 15.6-16.3 40.5-2.1 56 12.7 13.9 39.4 17.6 56.1 2.7.1-.1.3-.1.4-.2l79.9-73.2c6.5-5.9 16.7-5.5 22.6 1 6 6.5 5.5 16.6-1 22.6l-26.1 23.9L504 313.8c2.9 2.4 5.5 5 7.9 7.7V128l-54.6-54.6c-5.9-6-14.1-9.4-22.6-9.4zM544 128.2v223.9c0 17.7 14.3 32 32 32h64V128.2h-96zm48 223.9c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM0 384h64c17.7 0 32-14.3 32-32V128.2H0V384zm48-63.9c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16c0-8.9 7.2-16 16-16zm435.9 18.6L334.6 217.5l-30 27.5c-29.7 27.1-75.2 24.5-101.7-4.4-26.9-29.4-24.8-74.9 4.4-101.7L289.1 64h-83.8c-8.5 0-16.6 3.4-22.6 9.4L128 128v223.9h18.3l90.5 81.9c27.4 22.3 67.7 18.1 90-9.3l.2-.2 17.9 15.5c15.9 13 39.4 10.5 52.3-5.4l31.4-38.6 5.4 4.4c13.7 11.1 33.9 9.1 45-4.7l9.5-11.7c11.2-13.8 9.1-33.9-4.6-45.1z"] }; +var faHashtag = { prefix: 'fas', iconName: 'hashtag', icon: [448, 512, [], "f292", "M440.667 182.109l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l14.623-81.891C377.123 38.754 371.468 32 363.997 32h-40.632a12 12 0 0 0-11.813 9.891L296.175 128H197.54l14.623-81.891C213.477 38.754 207.822 32 200.35 32h-40.632a12 12 0 0 0-11.813 9.891L132.528 128H53.432a12 12 0 0 0-11.813 9.891l-7.143 40C33.163 185.246 38.818 192 46.289 192h74.81L98.242 320H19.146a12 12 0 0 0-11.813 9.891l-7.143 40C-1.123 377.246 4.532 384 12.003 384h74.81L72.19 465.891C70.877 473.246 76.532 480 84.003 480h40.632a12 12 0 0 0 11.813-9.891L151.826 384h98.634l-14.623 81.891C234.523 473.246 240.178 480 247.65 480h40.632a12 12 0 0 0 11.813-9.891L315.472 384h79.096a12 12 0 0 0 11.813-9.891l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l22.857-128h79.096a12 12 0 0 0 11.813-9.891zM261.889 320h-98.634l22.857-128h98.634l-22.857 128z"] }; +var faHdd = { prefix: 'fas', iconName: 'hdd', icon: [576, 512, [], "f0a0", "M576 304v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48zm-48-80a79.557 79.557 0 0 1 30.777 6.165L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L17.223 230.165A79.557 79.557 0 0 1 48 224h480zm-48 96c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm-96 0c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"] }; +var faHeading = { prefix: 'fas', iconName: 'heading', icon: [512, 512, [], "f1dc", "M496 80V48c0-8.837-7.163-16-16-16H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.621v128H154.379V96H192c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.275v320H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.621V288H357.62v128H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.275V96H480c8.837 0 16-7.163 16-16z"] }; +var faHeadphones = { prefix: 'fas', iconName: 'headphones', icon: [512, 512, [], "f025", "M256 32C114.52 32 0 146.496 0 288v48a32 32 0 0 0 17.689 28.622l14.383 7.191C34.083 431.903 83.421 480 144 480h24c13.255 0 24-10.745 24-24V280c0-13.255-10.745-24-24-24h-24c-31.342 0-59.671 12.879-80 33.627V288c0-105.869 86.131-192 192-192s192 86.131 192 192v1.627C427.671 268.879 399.342 256 368 256h-24c-13.255 0-24 10.745-24 24v176c0 13.255 10.745 24 24 24h24c60.579 0 109.917-48.098 111.928-108.187l14.382-7.191A32 32 0 0 0 512 336v-48c0-141.479-114.496-256-256-256z"] }; +var faHeadphonesAlt = { prefix: 'fas', iconName: 'headphones-alt', icon: [512, 512, [], "f58f", "M160 288h-16c-35.35 0-64 28.7-64 64.12v63.76c0 35.41 28.65 64.12 64 64.12h16c17.67 0 32-14.36 32-32.06V320.06c0-17.71-14.33-32.06-32-32.06zm208 0h-16c-17.67 0-32 14.35-32 32.06v127.88c0 17.7 14.33 32.06 32 32.06h16c35.35 0 64-28.71 64-64.12v-63.76c0-35.41-28.65-64.12-64-64.12zM256 32C112.91 32 4.57 151.13 0 288v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288c0-114.67 93.33-207.8 208-207.82 114.67.02 208 93.15 208 207.82v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288C507.43 151.13 399.09 32 256 32z"] }; +var faHeadset = { prefix: 'fas', iconName: 'headset', icon: [512, 512, [], "f590", "M192 208c0-17.67-14.33-32-32-32h-16c-35.35 0-64 28.65-64 64v48c0 35.35 28.65 64 64 64h16c17.67 0 32-14.33 32-32V208zm176 144c35.35 0 64-28.65 64-64v-48c0-35.35-28.65-64-64-64h-16c-17.67 0-32 14.33-32 32v112c0 17.67 14.33 32 32 32h16zM256 0C113.18 0 4.58 118.83 0 256v16c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-16c0-114.69 93.31-208 208-208s208 93.31 208 208h-.12c.08 2.43.12 165.72.12 165.72 0 23.35-18.93 42.28-42.28 42.28H320c0-26.51-21.49-48-48-48h-32c-26.51 0-48 21.49-48 48s21.49 48 48 48h181.72c49.86 0 90.28-40.42 90.28-90.28V256C507.42 118.83 398.82 0 256 0z"] }; +var faHeart = { prefix: 'fas', iconName: 'heart', icon: [512, 512, [], "f004", "M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z"] }; +var faHeartbeat = { prefix: 'fas', iconName: 'heartbeat', icon: [512, 512, [], "f21e", "M320.2 243.8l-49.7 99.4c-6 12.1-23.4 11.7-28.9-.6l-56.9-126.3-30 71.7H60.6l182.5 186.5c7.1 7.3 18.6 7.3 25.7 0L451.4 288H342.3l-22.1-44.2zM473.7 73.9l-2.4-2.5c-51.5-52.6-135.8-52.6-187.4 0L256 100l-27.9-28.5c-51.5-52.7-135.9-52.7-187.4 0l-2.4 2.4C-10.4 123.7-12.5 203 31 256h102.4l35.9-86.2c5.4-12.9 23.6-13.2 29.4-.4l58.2 129.3 49-97.9c5.9-11.8 22.7-11.8 28.6 0l27.6 55.2H481c43.5-53 41.4-132.3-7.3-182.1z"] }; +var faHelicopter = { prefix: 'fas', iconName: 'helicopter', icon: [640, 512, [], "f533", "M304 384h272c17.67 0 32-14.33 32-32 0-123.71-100.29-224-224-224V64h176c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H144c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h176v64H112L68.8 70.4C65.78 66.37 61.03 64 56 64H16.01C5.6 64-2.04 73.78.49 83.88L32 192l160 64 86.4 115.2A31.992 31.992 0 0 0 304 384zm112-188.49C478.55 208.3 528.03 257.44 540.79 320H416V195.51zm219.37 263.3l-22.15-22.2c-6.25-6.26-16.24-6.1-22.64.01-7.09 6.77-13.84 11.25-24.64 11.25H240c-8.84 0-16 7.18-16 16.03v32.06c0 8.85 7.16 16.03 16 16.03h325.94c14.88 0 35.3-.47 68.45-29.52 7.02-6.14 7.57-17.05.98-23.66z"] }; +var faHighlighter = { prefix: 'fas', iconName: 'highlighter', icon: [544, 512, [], "f591", "M0 479.98L99.92 512l35.45-35.45-67.04-67.04L0 479.98zm124.61-240.01a36.592 36.592 0 0 0-10.79 38.1l13.05 42.83-50.93 50.94 96.23 96.23 50.86-50.86 42.74 13.08c13.73 4.2 28.65-.01 38.15-10.78l35.55-41.64-173.34-173.34-41.52 35.44zm403.31-160.7l-63.2-63.2c-20.49-20.49-53.38-21.52-75.12-2.35L190.55 183.68l169.77 169.78L530.27 154.4c19.18-21.74 18.15-54.63-2.35-75.13z"] }; +var faHistory = { prefix: 'fas', iconName: 'history', icon: [512, 512, [], "f1da", "M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z"] }; +var faHockeyPuck = { prefix: 'fas', iconName: 'hockey-puck', icon: [512, 512, [], "f453", "M0 160c0-53 114.6-96 256-96s256 43 256 96-114.6 96-256 96S0 213 0 160zm0 82.2V352c0 53 114.6 96 256 96s256-43 256-96V242.2c-113.4 82.3-398.5 82.4-512 0z"] }; +var faHome = { prefix: 'fas', iconName: 'home', icon: [576, 512, [], "f015", "M488 312.7V456c0 13.3-10.7 24-24 24H348c-6.6 0-12-5.4-12-12V356c0-6.6-5.4-12-12-12h-72c-6.6 0-12 5.4-12 12v112c0 6.6-5.4 12-12 12H112c-13.3 0-24-10.7-24-24V312.7c0-3.6 1.6-7 4.4-9.3l188-154.8c4.4-3.6 10.8-3.6 15.3 0l188 154.8c2.7 2.3 4.3 5.7 4.3 9.3zm83.6-60.9L488 182.9V44.4c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12V117l-89.5-73.7c-17.7-14.6-43.3-14.6-61 0L4.4 251.8c-5.1 4.2-5.8 11.8-1.6 16.9l25.5 31c4.2 5.1 11.8 5.8 16.9 1.6l235.2-193.7c4.4-3.6 10.8-3.6 15.3 0l235.2 193.7c5.1 4.2 12.7 3.5 16.9-1.6l25.5-31c4.2-5.2 3.4-12.7-1.7-16.9z"] }; +var faHospital = { prefix: 'fas', iconName: 'hospital', icon: [448, 512, [], "f0f8", "M448 492v20H0v-20c0-6.627 5.373-12 12-12h20V120c0-13.255 10.745-24 24-24h88V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v72h88c13.255 0 24 10.745 24 24v360h20c6.627 0 12 5.373 12 12zM308 192h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-168 64h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm104 128h-40c-6.627 0-12 5.373-12 12v84h64v-84c0-6.627-5.373-12-12-12zm64-96h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-116 12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zM182 96h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6z"] }; +var faHospitalAlt = { prefix: 'fas', iconName: 'hospital-alt', icon: [576, 512, [], "f47d", "M544 96H416V32c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32v368c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16V128c0-17.7-14.3-32-32-32zM160 436c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm160 128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm16-170c0 3.3-2.7 6-6 6h-26v26c0 3.3-2.7 6-6 6h-20c-3.3 0-6-2.7-6-6v-26h-26c-3.3 0-6-2.7-6-6v-20c0-3.3 2.7-6 6-6h26V86c0-3.3 2.7-6 6-6h20c3.3 0 6 2.7 6 6v26h26c3.3 0 6 2.7 6 6v20zm144 298c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z"] }; +var faHospitalSymbol = { prefix: 'fas', iconName: 'hospital-symbol', icon: [512, 512, [], "f47e", "M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm112 376c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-88h-96v88c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V136c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v88h96v-88c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v240z"] }; +var faHotTub = { prefix: 'fas', iconName: 'hot-tub', icon: [512, 512, [], "f593", "M414.21 177.65c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C378.96 6.14 372.22 0 364.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zm-108 0c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C270.96 6.14 264.22 0 256.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zM480 256H256l-110.93-83.2a63.99 63.99 0 0 0-38.4-12.8H64c-35.35 0-64 28.65-64 64v224c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64V288c0-17.67-14.33-32-32-32zM128 440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zM64 128c35.35 0 64-28.65 64-64S99.35 0 64 0 0 28.65 0 64s28.65 64 64 64z"] }; +var faHotel = { prefix: 'fas', iconName: 'hotel', icon: [576, 512, [], "f594", "M560 64c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h15.98v384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h240v-80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v80h240c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-16V64h16zm-304 44.8c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm0 96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm-128-96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zM179.2 256h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8zM192 384c0-53.02 42.98-96 96-96s96 42.98 96 96H192zm256-140.8c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-96c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4z"] }; +var faHourglass = { prefix: 'fas', iconName: 'hourglass', icon: [384, 512, [], "f254", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64z"] }; +var faHourglassEnd = { prefix: 'fas', iconName: 'hourglass-end', icon: [384, 512, [], "f253", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64zM192 208c-57.787 0-104-66.518-104-144h208c0 77.945-46.51 144-104 144z"] }; +var faHourglassHalf = { prefix: 'fas', iconName: 'hourglass-half', icon: [384, 512, [], "f252", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-75.078 384H99.08c17.059-46.797 52.096-80 92.92-80 40.821 0 75.862 33.196 92.922 80zm.019-256H99.078C91.988 108.548 88 86.748 88 64h208c0 22.805-3.987 44.587-11.059 64z"] }; +var faHourglassStart = { prefix: 'fas', iconName: 'hourglass-start', icon: [384, 512, [], "f251", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-64 448H88c0-77.458 46.204-144 104-144 57.786 0 104 66.517 104 144z"] }; +var faICursor = { prefix: 'fas', iconName: 'i-cursor', icon: [256, 512, [], "f246", "M256 52.048V12.065C256 5.496 250.726.148 244.158.066 211.621-.344 166.469.011 128 37.959 90.266.736 46.979-.114 11.913.114 5.318.157 0 5.519 0 12.114v39.645c0 6.687 5.458 12.078 12.145 11.998C38.111 63.447 96 67.243 96 112.182V224H60c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h36v112c0 44.932-56.075 48.031-83.95 47.959C5.404 447.942 0 453.306 0 459.952v39.983c0 6.569 5.274 11.917 11.842 11.999 32.537.409 77.689.054 116.158-37.894 37.734 37.223 81.021 38.073 116.087 37.845 6.595-.043 11.913-5.405 11.913-12V460.24c0-6.687-5.458-12.078-12.145-11.998C217.889 448.553 160 444.939 160 400V288h36c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-36V112.182c0-44.932 56.075-48.213 83.95-48.142 6.646.018 12.05-5.346 12.05-11.992z"] }; +var faIdBadge = { prefix: 'fas', iconName: 'id-badge', icon: [384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM144 32h96c8.8 0 16 7.2 16 16s-7.2 16-16 16h-96c-8.8 0-16-7.2-16-16s7.2-16 16-16zm48 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 416 80 407.4 80 396.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"] }; +var faIdCard = { prefix: 'fas', iconName: 'id-card', icon: [576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v16h576V80c0-26.5-21.5-48-48-48zM0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V128H0v304zm352-232c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zM176 192c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zM67.1 396.2C75.5 370.5 99.6 352 128 352h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.9-5.2 19.8-15.6 19.8H82.7c-10.4 0-18.8-10-15.6-19.8z"] }; +var faIdCardAlt = { prefix: 'fas', iconName: 'id-card-alt', icon: [576, 512, [], "f47f", "M528 64H384v96H192V64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM288 224c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm93.3 224H194.7c-10.4 0-18.8-10-15.6-19.8 8.3-25.6 32.4-44.2 60.9-44.2h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.8-5.2 19.8-15.6 19.8zM352 32c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v96h128V32z"] }; +var faImage = { prefix: 'fas', iconName: 'image', icon: [512, 512, [], "f03e", "M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z"] }; +var faImages = { prefix: 'fas', iconName: 'images', icon: [576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v208c0 44.112 35.888 80 80 80h336zm96-80V80c0-26.51-21.49-48-48-48H144c-26.51 0-48 21.49-48 48v256c0 26.51 21.49 48 48 48h384c26.51 0 48-21.49 48-48zM256 128c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-96 144l55.515-55.515c4.686-4.686 12.284-4.686 16.971 0L272 256l135.515-135.515c4.686-4.686 12.284-4.686 16.971 0L512 208v112H160v-48z"] }; +var faInbox = { prefix: 'fas', iconName: 'inbox', icon: [576, 512, [], "f01c", "M567.938 243.908L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L8.062 243.908A47.994 47.994 0 0 0 0 270.533V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V270.533a47.994 47.994 0 0 0-8.062-26.625zM162.252 128h251.497l85.333 128H376l-32 64H232l-32-64H76.918l85.334-128z"] }; +var faIndent = { prefix: 'fas', iconName: 'indent', icon: [448, 512, [], "f03c", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm176 144h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm-52.687-111.313l-96-95.984C17.266 138.652 0 145.776 0 160.016v191.975c0 14.329 17.325 21.304 27.313 11.313l96-95.992c6.249-6.247 6.249-16.377 0-22.625z"] }; +var faIndustry = { prefix: 'fas', iconName: 'industry', icon: [512, 512, [], "f275", "M475.115 163.781L336 252.309v-68.28c0-18.916-20.931-30.399-36.885-20.248L160 252.309V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h464c13.255 0 24-10.745 24-24V184.029c0-18.917-20.931-30.399-36.885-20.248z"] }; +var faInfinity = { prefix: 'fas', iconName: 'infinity', icon: [640, 512, [], "f534", "M471.1 96C405 96 353.3 137.3 320 174.6 286.7 137.3 235 96 168.9 96 75.8 96 0 167.8 0 256s75.8 160 168.9 160c66.1 0 117.8-41.3 151.1-78.6 33.3 37.3 85 78.6 151.1 78.6 93.1 0 168.9-71.8 168.9-160S564.2 96 471.1 96zM168.9 320c-40.2 0-72.9-28.7-72.9-64s32.7-64 72.9-64c38.2 0 73.4 36.1 94 64-20.4 27.6-55.9 64-94 64zm302.2 0c-38.2 0-73.4-36.1-94-64 20.4-27.6 55.9-64 94-64 40.2 0 72.9 28.7 72.9 64s-32.7 64-72.9 64z"] }; +var faInfo = { prefix: 'fas', iconName: 'info', icon: [192, 512, [], "f129", "M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z"] }; +var faInfoCircle = { prefix: 'fas', iconName: 'info-circle', icon: [512, 512, [], "f05a", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z"] }; +var faItalic = { prefix: 'fas', iconName: 'italic', icon: [320, 512, [], "f033", "M204.758 416h-33.849l62.092-320h40.725a16 16 0 0 0 15.704-12.937l6.242-32C297.599 41.184 290.034 32 279.968 32H120.235a16 16 0 0 0-15.704 12.937l-6.242 32C96.362 86.816 103.927 96 113.993 96h33.846l-62.09 320H46.278a16 16 0 0 0-15.704 12.935l-6.245 32C22.402 470.815 29.967 480 40.034 480h158.479a16 16 0 0 0 15.704-12.935l6.245-32c1.927-9.88-5.638-19.065-15.704-19.065z"] }; +var faJoint = { prefix: 'fas', iconName: 'joint', icon: [640, 512, [], "f595", "M444.34 181.1c22.38 15.68 35.66 41.16 35.66 68.59V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-43.24-21.01-83.41-56.34-108.06C463.85 125.02 448 99.34 448 70.31V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v66.4c0 43.69 24.56 81.63 60.34 106.7zM194.97 358.98C126.03 370.07 59.69 394.69 0 432c83.65 52.28 180.3 80 278.94 80h88.57L254.79 380.49c-14.74-17.2-37.45-25.11-59.82-21.51zM553.28 87.09c-5.67-3.8-9.28-9.96-9.28-16.78V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v62.31c0 22.02 10.17 43.41 28.64 55.39C550.79 153.04 576 199.54 576 249.69V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-65.44-32.41-126.19-86.72-162.6zM360.89 352.05c-34.4.06-86.81.15-88.21.17l117.8 137.43A63.987 63.987 0 0 0 439.07 512h88.45L409.57 374.4a63.955 63.955 0 0 0-48.68-22.35zM616 352H432l117.99 137.65A63.987 63.987 0 0 0 598.58 512H616c13.25 0 24-10.75 24-24V376c0-13.26-10.75-24-24-24z"] }; +var faKey = { prefix: 'fas', iconName: 'key', icon: [512, 512, [], "f084", "M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z"] }; +var faKeyboard = { prefix: 'fas', iconName: 'keyboard', icon: [576, 512, [], "f11c", "M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"] }; +var faKiss = { prefix: 'fas', iconName: 'kiss', icon: [496, 512, [], "f596", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm136 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm24-156c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faKissBeam = { prefix: 'fas', iconName: 'kiss-beam', icon: [496, 512, [], "f597", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-39 219.9l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5zM304 396c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm65-168.1l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5z"] }; +var faKissWinkHeart = { prefix: 'fas', iconName: 'kiss-wink-heart', icon: [504, 512, [], "f598", "M501.1 402.5c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zm-177.6-4c-5.6-20.3-2.3-42 9-59.7 29.7-46.3 98.7-45.5 127.8 4.3 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-.3-.7-23.9-84.6-23.9-84.6zM168 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm120 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-5.7-12.3 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.8-3.7-4.6-16.6 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C274.6 368.7 288 383 288 396zm16-179c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S400 181 404 206.2c1.7 11.1-11.3 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 217z"] }; +var faKiwiBird = { prefix: 'fas', iconName: 'kiwi-bird', icon: [576, 512, [], "f535", "M575.81 217.98C572.64 157.41 518.28 112 457.63 112h-9.37c-52.82 0-104.25-16.25-147.74-46.24-41.99-28.96-96.04-41.62-153.21-28.7C129.3 41.12-.08 78.24 0 224c.04 70.95 38.68 132.8 95.99 166.01V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-54.26c15.36 3.96 31.4 6.26 48 6.26 5.44 0 10.68-.73 16-1.18V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-59.43c14.24-5.06 27.88-11.39 40.34-19.51C342.07 355.25 393.86 336 448.46 336c25.48 0 16.01-.31 23.05-.78l74.41 136.44c2.86 5.23 8.3 8.34 14.05 8.34 1.31 0 2.64-.16 3.95-.5 7.09-1.8 12.05-8.19 12.05-15.5 0 0 .14-240.24-.16-246.02zM463.97 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm80 153.25l-39.86-73.08c15.12-5.83 28.73-14.6 39.86-25.98v99.06z"] }; +var faLanguage = { prefix: 'fas', iconName: 'language', icon: [640, 512, [], "f1ab", "M304 416H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h280v320zm-120.676-72.622A12 12 0 0 0 194.839 352h22.863c8.22 0 14.007-8.078 11.362-15.861L171.61 167.085a12 12 0 0 0-11.362-8.139h-32.489a12.001 12.001 0 0 0-11.362 8.139L58.942 336.139C56.297 343.922 62.084 352 70.304 352h22.805a12 12 0 0 0 11.535-8.693l9.118-31.807h60.211l9.351 31.878zm-39.051-140.42s4.32 21.061 7.83 33.21l10.8 37.531h-38.07l11.07-37.531c3.51-12.15 7.83-33.21 7.83-33.21h.54zM616 416H336V96h280c13.255 0 24 10.745 24 24v272c0 13.255-10.745 24-24 24zm-36-228h-64v-16c0-6.627-5.373-12-12-12h-16c-6.627 0-12 5.373-12 12v16h-64c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h114.106c-6.263 14.299-16.518 28.972-30.023 43.206-6.56-6.898-12.397-13.91-17.365-20.933-3.639-5.144-10.585-6.675-15.995-3.446l-7.28 4.346-6.498 3.879c-5.956 3.556-7.693 11.421-3.735 17.117 6.065 8.729 13.098 17.336 20.984 25.726-8.122 6.226-16.841 12.244-26.103 17.964-5.521 3.41-7.381 10.556-4.162 16.19l7.941 13.896c3.362 5.883 10.935 7.826 16.706 4.276 12.732-7.831 24.571-16.175 35.443-24.891 10.917 8.761 22.766 17.102 35.396 24.881 5.774 3.556 13.353 1.618 16.717-4.27l7.944-13.903c3.213-5.623 1.37-12.76-4.135-16.171a312.737 312.737 0 0 1-26.06-18.019c21.024-22.425 35.768-46.289 42.713-69.85H580c6.627 0 12-5.373 12-12v-16c0-6.625-5.373-11.998-12-11.998z"] }; +var faLaptop = { prefix: 'fas', iconName: 'laptop', icon: [640, 512, [], "f109", "M512 64v256H128V64h384m16-64H112C85.5 0 64 21.5 64 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm100 416H389.5c-3 0-5.5 2.1-5.9 5.1C381.2 436.3 368 448 352 448h-64c-16 0-29.2-11.7-31.6-26.9-.5-2.9-3-5.1-5.9-5.1H12c-6.6 0-12 5.4-12 12v36c0 26.5 21.5 48 48 48h544c26.5 0 48-21.5 48-48v-36c0-6.6-5.4-12-12-12z"] }; +var faLaugh = { prefix: 'fas', iconName: 'laugh', icon: [496, 512, [], "f599", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 152c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm88 272h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18-8.9 71-69.5 126-142.9 126z"] }; +var faLaughBeam = { prefix: 'fas', iconName: 'laugh-beam', icon: [496, 512, [], "f59a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm24 199.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.8 4.1-15.1-4.5zm-160 0c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z"] }; +var faLaughSquint = { prefix: 'fas', iconName: 'laugh-squint', icon: [496, 512, [], "f59b", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 161.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 180l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z"] }; +var faLaughWink = { prefix: 'fas', iconName: 'laugh-wink', icon: [496, 512, [], "f59c", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm20.1 198.1c4-25.2 34.2-42.1 59.9-42.1s55.9 16.9 59.9 42.1c1.7 11.1-11.4 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 217c-8.4 7.4-21.6.3-19.9-10.9zM168 160c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm230.9 146C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z"] }; +var faLeaf = { prefix: 'fas', iconName: 'leaf', icon: [576, 512, [], "f06c", "M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z"] }; +var faLemon = { prefix: 'fas', iconName: 'lemon', icon: [512, 512, [], "f094", "M489.038 22.963C465.944-.13 434.648-5.93 413.947 6.129c-58.906 34.312-181.25-53.077-321.073 86.746S40.441 355.041 6.129 413.945c-12.059 20.702-6.26 51.999 16.833 75.093 23.095 23.095 54.392 28.891 75.095 16.832 58.901-34.31 181.246 53.079 321.068-86.743S471.56 156.96 505.871 98.056c12.059-20.702 6.261-51.999-16.833-75.093zM243.881 95.522c-58.189 14.547-133.808 90.155-148.358 148.358-1.817 7.27-8.342 12.124-15.511 12.124-1.284 0-2.59-.156-3.893-.481-8.572-2.144-13.784-10.83-11.642-19.403C81.901 166.427 166.316 81.93 236.119 64.478c8.575-2.143 17.261 3.069 19.403 11.642s-3.069 17.259-11.641 19.402z"] }; +var faLessThan = { prefix: 'fas', iconName: 'less-than', icon: [384, 512, [], "f536", "M365.46 357.74L147.04 255.89l218.47-101.88c16.02-7.47 22.95-26.51 15.48-42.53l-13.52-29C360 66.46 340.96 59.53 324.94 67L18.48 209.91a32.014 32.014 0 0 0-18.48 29v34.24c0 12.44 7.21 23.75 18.48 29l306.31 142.83c16.06 7.49 35.15.54 42.64-15.52l13.56-29.08c7.49-16.06.54-35.15-15.53-42.64z"] }; +var faLessThanEqual = { prefix: 'fas', iconName: 'less-than-equal', icon: [448, 512, [], "f537", "M54.98 214.2l301.41 119.87c18.39 6.03 38.71-2.54 45.38-19.15l12.09-30.08c6.68-16.61-2.82-34.97-21.21-41l-175.44-68.05 175.56-68.09c18.29-6 27.74-24.27 21.1-40.79l-12.03-29.92c-6.64-16.53-26.86-25.06-45.15-19.06L54.98 137.89C41.21 142.41 32 154.5 32 168.07v15.96c0 13.56 9.21 25.65 22.98 30.17zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"] }; +var faLevelDownAlt = { prefix: 'fas', iconName: 'level-down-alt', icon: [320, 512, [], "f3be", "M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z"] }; +var faLevelUpAlt = { prefix: 'fas', iconName: 'level-up-alt', icon: [320, 512, [], "f3bf", "M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z"] }; +var faLifeRing = { prefix: 'fas', iconName: 'life-ring', icon: [512, 512, [], "f1cd", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm173.696 119.559l-63.399 63.399c-10.987-18.559-26.67-34.252-45.255-45.255l63.399-63.399a218.396 218.396 0 0 1 45.255 45.255zM256 352c-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96-42.981 96-96 96zM127.559 82.304l63.399 63.399c-18.559 10.987-34.252 26.67-45.255 45.255l-63.399-63.399a218.372 218.372 0 0 1 45.255-45.255zM82.304 384.441l63.399-63.399c10.987 18.559 26.67 34.252 45.255 45.255l-63.399 63.399a218.396 218.396 0 0 1-45.255-45.255zm302.137 45.255l-63.399-63.399c18.559-10.987 34.252-26.67 45.255-45.255l63.399 63.399a218.403 218.403 0 0 1-45.255 45.255z"] }; +var faLightbulb = { prefix: 'fas', iconName: 'lightbulb', icon: [384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zm-143.107-44c-9.907 0-18.826-6.078-22.376-15.327C67.697 267.541 16 277.731 16 176 16 78.803 94.805 0 192 0s176 78.803 176 176c0 101.731-51.697 91.541-90.516 192.673-3.55 9.249-12.47 15.327-22.376 15.327H128.893zM112 176c0-44.112 35.888-80 80-80 8.837 0 16-7.164 16-16s-7.163-16-16-16c-61.757 0-112 50.243-112 112 0 8.836 7.164 16 16 16s16-7.164 16-16z"] }; +var faLink = { prefix: 'fas', iconName: 'link', icon: [512, 512, [], "f0c1", "M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z"] }; +var faLiraSign = { prefix: 'fas', iconName: 'lira-sign', icon: [384, 512, [], "f195", "M371.994 256h-48.019C317.64 256 312 260.912 312 267.246 312 368 230.179 416 144 416V256.781l134.603-29.912A12 12 0 0 0 288 215.155v-40.976c0-7.677-7.109-13.38-14.603-11.714L144 191.219V160.78l134.603-29.912A12 12 0 0 0 288 119.154V78.179c0-7.677-7.109-13.38-14.603-11.714L144 95.219V44c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v68.997L9.397 125.131A12 12 0 0 0 0 136.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 178.558v30.439L9.397 221.131A12 12 0 0 0 0 232.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 274.558V468c0 6.627 5.373 12 12 12h79.583c134.091 0 223.255-77.834 228.408-211.592.261-6.782-5.211-12.408-11.997-12.408z"] }; +var faList = { prefix: 'fas', iconName: 'list', icon: [512, 512, [], "f03a", "M128 116V76c0-8.837 7.163-16 16-16h352c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H144c-8.837 0-16-7.163-16-16zm16 176h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 144h64c8.837 0 16-7.163 16-16V64c0-8.837-7.163-16-16-16H16C7.163 48 0 55.163 0 64v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16z"] }; +var faListAlt = { prefix: 'fas', iconName: 'list-alt', icon: [512, 512, [], "f022", "M464 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM128 120c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288-136v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12z"] }; +var faListOl = { prefix: 'fas', iconName: 'list-ol', icon: [512, 512, [], "f0cb", "M3.263 139.527c0-7.477 3.917-11.572 11.573-11.572h15.131V88.078c0-5.163.534-10.503.534-10.503h-.356s-1.779 2.67-2.848 3.738c-4.451 4.273-10.504 4.451-15.666-1.068l-5.518-6.231c-5.342-5.341-4.984-11.216.534-16.379l21.72-19.938C32.815 33.602 36.732 32 42.785 32H54.89c7.656 0 11.749 3.916 11.749 11.572v84.384h15.488c7.655 0 11.572 4.094 11.572 11.572v8.901c0 7.477-3.917 11.572-11.572 11.572H14.836c-7.656 0-11.573-4.095-11.573-11.572v-8.902zM2.211 304.591c0-47.278 50.955-56.383 50.955-69.165 0-7.18-5.954-8.755-9.28-8.755-3.153 0-6.479 1.051-9.455 3.852-5.079 4.903-10.507 7.004-16.111 2.451l-8.579-6.829c-5.779-4.553-7.18-9.805-2.803-15.409C13.592 201.981 26.025 192 47.387 192c19.437 0 44.476 10.506 44.476 39.573 0 38.347-46.753 46.402-48.679 56.909h39.049c7.529 0 11.557 4.027 11.557 11.382v8.755c0 7.354-4.028 11.382-11.557 11.382h-67.94c-7.005 0-12.083-4.028-12.083-11.382v-4.028zM5.654 454.61l5.603-9.28c3.853-6.654 9.105-7.004 15.584-3.152 4.903 2.101 9.63 3.152 14.359 3.152 10.155 0 14.358-3.502 14.358-8.23 0-6.654-5.604-9.106-15.934-9.106h-4.728c-5.954 0-9.28-2.101-12.258-7.88l-1.05-1.926c-2.451-4.728-1.226-9.806 2.801-14.884l5.604-7.004c6.829-8.405 12.257-13.483 12.257-13.483v-.35s-4.203 1.051-12.608 1.051H16.685c-7.53 0-11.383-4.028-11.383-11.382v-8.755c0-7.53 3.853-11.382 11.383-11.382h58.484c7.529 0 11.382 4.027 11.382 11.382v3.327c0 5.778-1.401 9.806-5.079 14.183l-17.509 20.137c19.611 5.078 28.716 20.487 28.716 34.845 0 21.363-14.358 44.126-48.503 44.126-16.636 0-28.192-4.728-35.896-9.455-5.779-4.202-6.304-9.805-2.626-15.934zM144 132h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faListUl = { prefix: 'fas', iconName: 'list-ul', icon: [512, 512, [], "f0ca", "M96 96c0 26.51-21.49 48-48 48S0 122.51 0 96s21.49-48 48-48 48 21.49 48 48zM48 208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm0 160c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm96-236h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"] }; +var faLocationArrow = { prefix: 'fas', iconName: 'location-arrow', icon: [512, 512, [], "f124", "M443.683 4.529L27.818 196.418C-18.702 217.889-3.39 288 47.933 288H224v175.993c0 51.727 70.161 66.526 91.582 20.115L507.38 68.225c18.905-40.961-23.752-82.133-63.697-63.696z"] }; +var faLock = { prefix: 'fas', iconName: 'lock', icon: [448, 512, [], "f023", "M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z"] }; +var faLockOpen = { prefix: 'fas', iconName: 'lock-open', icon: [576, 512, [], "f3c1", "M423.5 0C339.5.3 272 69.5 272 153.5V224H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48h-48v-71.1c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v80c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-80C576 68 507.5-.3 423.5 0z"] }; +var faLongArrowAltDown = { prefix: 'fas', iconName: 'long-arrow-alt-down', icon: [256, 512, [], "f309", "M168 345.941V44c0-6.627-5.373-12-12-12h-56c-6.627 0-12 5.373-12 12v301.941H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.569 9.373 33.941 0l86.059-86.059c15.119-15.119 4.411-40.971-16.971-40.971H168z"] }; +var faLongArrowAltLeft = { prefix: 'fas', iconName: 'long-arrow-alt-left', icon: [448, 512, [], "f30a", "M134.059 296H436c6.627 0 12-5.373 12-12v-56c0-6.627-5.373-12-12-12H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.569 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296z"] }; +var faLongArrowAltRight = { prefix: 'fas', iconName: 'long-arrow-alt-right', icon: [448, 512, [], "f30b", "M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z"] }; +var faLongArrowAltUp = { prefix: 'fas', iconName: 'long-arrow-alt-up', icon: [256, 512, [], "f30c", "M88 166.059V468c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12V166.059h46.059c21.382 0 32.09-25.851 16.971-40.971l-86.059-86.059c-9.373-9.373-24.569-9.373-33.941 0l-86.059 86.059c-15.119 15.119-4.411 40.971 16.971 40.971H88z"] }; +var faLowVision = { prefix: 'fas', iconName: 'low-vision', icon: [576, 512, [], "f2a8", "M569.344 231.631C512.96 135.949 407.81 72 288 72c-28.468 0-56.102 3.619-82.451 10.409L152.778 10.24c-7.601-10.858-22.564-13.5-33.423-5.9l-13.114 9.178c-10.86 7.601-13.502 22.566-5.9 33.426l43.131 58.395C89.449 131.73 40.228 174.683 6.682 231.581c-.01.017-.023.033-.034.05-8.765 14.875-8.964 33.528 0 48.739 38.5 65.332 99.742 115.862 172.859 141.349L55.316 244.302A272.194 272.194 0 0 1 83.61 208.39l119.4 170.58h.01l40.63 58.04a330.055 330.055 0 0 0 78.94 1.17l-189.98-271.4a277.628 277.628 0 0 1 38.777-21.563l251.836 356.544c7.601 10.858 22.564 13.499 33.423 5.9l13.114-9.178c10.86-7.601 13.502-22.567 5.9-33.426l-43.12-58.377-.007-.009c57.161-27.978 104.835-72.04 136.81-126.301a47.938 47.938 0 0 0 .001-48.739zM390.026 345.94l-19.066-27.23c24.682-32.567 27.711-76.353 8.8-111.68v.03c0 23.65-19.17 42.82-42.82 42.82-23.828 0-42.82-19.349-42.82-42.82 0-23.65 19.17-42.82 42.82-42.82h.03c-24.75-13.249-53.522-15.643-79.51-7.68l-19.068-27.237C253.758 123.306 270.488 120 288 120c75.162 0 136 60.826 136 136 0 34.504-12.833 65.975-33.974 89.94z"] }; +var faLuggageCart = { prefix: 'fas', iconName: 'luggage-cart', icon: [640, 512, [], "f59d", "M224 320h32V96h-32c-17.67 0-32 14.33-32 32v160c0 17.67 14.33 32 32 32zm352-32V128c0-17.67-14.33-32-32-32h-32v224h32c17.67 0 32-14.33 32-32zm48 96H128V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h48v368c0 8.84 7.16 16 16 16h82.94c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16h197.88c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM480 96V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v272h192V96zm-48 0h-96V48h96v48z"] }; +var faMagic = { prefix: 'fas', iconName: 'magic', icon: [512, 512, [], "f0d0", "M224 96l16-32 32-16-32-16-16-32-16 32-32 16 32 16 16 32zM80 160l26.66-53.33L160 80l-53.34-26.67L80 0 53.34 53.33 0 80l53.34 26.67L80 160zm352 128l-26.66 53.33L352 368l53.34 26.67L432 448l26.66-53.33L512 368l-53.34-26.67L432 288zm70.62-193.77L417.77 9.38C411.53 3.12 403.34 0 395.15 0c-8.19 0-16.38 3.12-22.63 9.38L9.38 372.52c-12.5 12.5-12.5 32.76 0 45.25l84.85 84.85c6.25 6.25 14.44 9.37 22.62 9.37 8.19 0 16.38-3.12 22.63-9.37l363.14-363.15c12.5-12.48 12.5-32.75 0-45.24zM359.45 203.46l-50.91-50.91 86.6-86.6 50.91 50.91-86.6 86.6z"] }; +var faMagnet = { prefix: 'fas', iconName: 'magnet', icon: [512, 512, [], "f076", "M164.1 160H12c-6.6 0-12-5.4-12-12V68c0-19.9 16.1-36 36-36h104c19.9 0 36 16.1 36 36v80c.1 6.6-5.3 12-11.9 12zm348-12V67.9c0-19.9-16.1-36-36-36h-104c-19.9 0-36 16.1-36 36v80c0 6.6 5.4 12 12 12h152c6.6.1 12-5.3 12-11.9zm-164 44c-6.6 0-12 5.4-12 12v52c0 128.1-160 127.9-160 0v-52c0-6.6-5.4-12-12-12h-152c-6.7 0-12 5.4-12 12.1.1 21.4.6 40.3 0 53.3C.1 408 136.3 504 256.9 504 377.5 504 512 408 512 257.3c-.6-12.8-.2-33 0-53.2 0-6.7-5.3-12.1-12-12.1H348.1z"] }; +var faMale = { prefix: 'fas', iconName: 'male', icon: [192, 512, [], "f183", "M96 0c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64S60.654 0 96 0m48 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H48c-26.51 0-48 21.49-48 48v136c0 13.255 10.745 24 24 24h16v136c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V352h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48z"] }; +var faMap = { prefix: 'fas', iconName: 'map', icon: [576, 512, [], "f279", "M0 117.66v346.32c0 11.32 11.43 19.06 21.94 14.86L160 416V32L20.12 87.95A32.006 32.006 0 0 0 0 117.66zM192 416l192 64V96L192 32v384zM554.06 33.16L416 96v384l139.88-55.95A31.996 31.996 0 0 0 576 394.34V48.02c0-11.32-11.43-19.06-21.94-14.86z"] }; +var faMapMarked = { prefix: 'fas', iconName: 'map-marked', icon: [576, 512, [], "f59f", "M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z"] }; +var faMapMarkedAlt = { prefix: 'fas', iconName: 'map-marked-alt', icon: [576, 512, [], "f5a0", "M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zm0 168c-23.2 0-42-18.8-42-42s18.8-42 42-42 42 18.8 42 42-18.8 42-42 42zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z"] }; +var faMapMarker = { prefix: 'fas', iconName: 'map-marker', icon: [384, 512, [], "f041", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0z"] }; +var faMapMarkerAlt = { prefix: 'fas', iconName: 'map-marker-alt', icon: [384, 512, [], "f3c5", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"] }; +var faMapPin = { prefix: 'fas', iconName: 'map-pin', icon: [320, 512, [], "f276", "M192 300.813v172.82l-22.015 33.023c-4.75 7.125-15.219 7.125-19.969 0L128 473.633v-172.82a162.221 162.221 0 0 0 64 0zM160 0c79.529 0 144 64.471 144 144s-64.471 144-144 144S16 223.529 16 144 80.471 0 160 0M80 136c0-39.701 32.299-72 72-72a8 8 0 0 0 0-16c-48.523 0-88 39.477-88 88a8 8 0 0 0 16 0z"] }; +var faMapSigns = { prefix: 'fas', iconName: 'map-signs', icon: [512, 512, [], "f277", "M487.515 104.485L439.03 152.97a23.998 23.998 0 0 1-16.97 7.029H56c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h160v-8c0-13.255 10.745-24 24-24h32c13.255 0 24 10.745 24 24v8h126.059a24 24 0 0 1 16.97 7.029l48.485 48.485c4.687 4.687 4.687 12.285.001 16.971zM216 368v120c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V368h-80zm240-144H296v-48h-80v48H89.941a24 24 0 0 0-16.97 7.029l-48.485 48.485c-4.686 4.686-4.686 12.284 0 16.971l48.485 48.485a23.998 23.998 0 0 0 16.97 7.029H456c13.255 0 24-10.745 24-24v-80C480 234.745 469.255 224 456 224z"] }; +var faMarker = { prefix: 'fas', iconName: 'marker', icon: [512, 512, [], "f5a1", "M93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l75.4-75.4-128.02-128.02-75.4 75.4zM485.49 26.51c-35.35-35.35-92.67-35.35-128.02 0l-21.76 21.76-36.56-36.55c-15.62-15.62-40.95-15.62-56.56 0L138.47 115.84c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0l87.15-87.15 19.59 19.59L191.98 192 320 320.02l165.49-165.49c35.35-35.35 35.35-92.66 0-128.02z"] }; +var faMars = { prefix: 'fas', iconName: 'mars', icon: [384, 512, [], "f222", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c0-6.6-5.4-12-12-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faMarsDouble = { prefix: 'fas', iconName: 'mars-double', icon: [512, 512, [], "f227", "M340 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C198.5 72.1 172.2 64 144 64 64.5 64 0 128.5 0 208s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.5 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 288c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80zm356-128.1h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7c-18.2-11.4-39-18.9-61.5-21.3-2.1 21.8-8.2 43.3-18.4 63.3 1.1 0 2.2-.1 3.2-.1 44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80c0-1.1 0-2.2.1-3.2-20 10.2-41.5 16.4-63.3 18.4C168.4 455.6 229.6 512 304 512c79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12v-79c0-6.7-5.4-12.1-12-12.1z"] }; +var faMarsStroke = { prefix: 'fas', iconName: 'mars-stroke', icon: [384, 512, [], "f229", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-17.5 17.5-14.1-14.1c-4.7-4.7-12.3-4.7-17 0L224.5 133c-4.7 4.7-4.7 12.3 0 17l14.1 14.1-18 18c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l18-18 14.1 14.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L329.2 164l17.5-17.5 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c-.1-6.6-5.5-12-12.1-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faMarsStrokeH = { prefix: 'fas', iconName: 'mars-stroke-h', icon: [480, 512, [], "f22b", "M476.2 247.5l-55.9-55.9c-7.6-7.6-20.5-2.2-20.5 8.5V224H376v-20c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v20h-27.6c-5.8-25.6-18.7-49.9-38.6-69.8C189.6 98 98.4 98 42.2 154.2c-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 19.9-19.9 32.8-44.2 38.6-69.8H312v20c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-20h23.9v23.9c0 10.7 12.9 16 20.5 8.5l55.9-55.9c4.6-4.7 4.6-12.3-.1-17zm-275.6 65.1c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z"] }; +var faMarsStrokeV = { prefix: 'fas', iconName: 'mars-stroke-v', icon: [288, 512, [], "f22a", "M245.8 234.2c-19.9-19.9-44.2-32.8-69.8-38.6v-25.4h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V81.4h23.9c10.7 0 16-12.9 8.5-20.5L152.5 5.1c-4.7-4.7-12.3-4.7-17 0L79.6 61c-7.6 7.6-2.2 20.5 8.5 20.5H112v24.7H92c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h20v25.4c-25.6 5.8-49.9 18.7-69.8 38.6-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 56.3-56.2 56.3-147.4 0-203.6zm-45.2 158.4c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z"] }; +var faMedal = { prefix: 'fas', iconName: 'medal', icon: [512, 512, [], "f5a2", "M223.75 130.75L154.62 15.54A31.997 31.997 0 0 0 127.18 0H16.03C3.08 0-4.5 14.57 2.92 25.18l111.27 158.96c29.72-27.77 67.52-46.83 109.56-53.39zM495.97 0H384.82c-11.24 0-21.66 5.9-27.44 15.54l-69.13 115.21c42.04 6.56 79.84 25.62 109.56 53.38L509.08 25.18C516.5 14.57 508.92 0 495.97 0zM256 160c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm92.52 157.26l-37.93 36.96 8.97 52.22c1.6 9.36-8.26 16.51-16.65 12.09L256 393.88l-46.9 24.65c-8.4 4.45-18.25-2.74-16.65-12.09l8.97-52.22-37.93-36.96c-6.82-6.64-3.05-18.23 6.35-19.59l52.43-7.64 23.43-47.52c2.11-4.28 6.19-6.39 10.28-6.39 4.11 0 8.22 2.14 10.33 6.39l23.43 47.52 52.43 7.64c9.4 1.36 13.17 12.95 6.35 19.59z"] }; +var faMedkit = { prefix: 'fas', iconName: 'medkit', icon: [512, 512, [], "f0fa", "M96 480h320V128h-32V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v48H96v352zm96-384h128v32H192V96zm320 80v256c0 26.51-21.49 48-48 48h-16V128h16c26.51 0 48 21.49 48 48zM64 480H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v352zm288-208v32c0 8.837-7.163 16-16 16h-48v48c0 8.837-7.163 16-16 16h-32c-8.837 0-16-7.163-16-16v-48h-48c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h48v-48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v48h48c8.837 0 16 7.163 16 16z"] }; +var faMeh = { prefix: 'fas', iconName: 'meh', icon: [496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm176 192H152c-21.2 0-21.2-32 0-32h192c21.2 0 21.2 32 0 32zm-16-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faMehBlank = { prefix: 'fas', iconName: 'meh-blank', icon: [496, 512, [], "f5a4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faMehRollingEyes = { prefix: 'fas', iconName: 'meh-rolling-eyes', icon: [496, 512, [], "f5a5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 224c0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64s-64-28.7-64-64zm224 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-112c-35.3 0-64-28.7-64-64 0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64z"] }; +var faMemory = { prefix: 'fas', iconName: 'memory', icon: [640, 512, [], "f538", "M640 130.94V96c0-17.67-14.33-32-32-32H32C14.33 64 0 78.33 0 96v34.94c18.6 6.61 32 24.19 32 45.06s-13.4 38.45-32 45.06V320h640v-98.94c-18.6-6.61-32-24.19-32-45.06s13.4-38.45 32-45.06zM224 256h-64V128h64v128zm128 0h-64V128h64v128zm128 0h-64V128h64v128zM0 448h64v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h64v-96H0v96z"] }; +var faMercury = { prefix: 'fas', iconName: 'mercury', icon: [288, 512, [], "f223", "M288 208c0-44.2-19.9-83.7-51.2-110.1 2.5-1.8 4.9-3.8 7.2-5.8 24.7-21.2 39.8-48.8 43.2-78.8.9-7.1-4.7-13.3-11.9-13.3h-40.5C229 0 224.1 4.1 223 9.8c-2.4 12.5-9.6 24.3-20.7 33.8C187 56.8 166.3 64 144 64s-43-7.2-58.4-20.4C74.5 34.1 67.4 22.3 64.9 9.8 63.8 4.1 58.9 0 53.2 0H12.7C5.5 0-.1 6.2.8 13.3 4.2 43.4 19.2 71 44 92.2c2.3 2 4.7 3.9 7.2 5.8C19.9 124.3 0 163.8 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z"] }; +var faMicrochip = { prefix: 'fas', iconName: 'microchip', icon: [512, 512, [], "f2db", "M416 48v416c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h224c26.51 0 48 21.49 48 48zm96 58v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42V88h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zM30 376h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6z"] }; +var faMicrophone = { prefix: 'fas', iconName: 'microphone', icon: [352, 512, [], "f130", "M176 352c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96zm160-160h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16z"] }; +var faMicrophoneAlt = { prefix: 'fas', iconName: 'microphone-alt', icon: [352, 512, [], "f3c9", "M336 192h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16zM176 352c53.02 0 96-42.98 96-96h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96z"] }; +var faMicrophoneAltSlash = { prefix: 'fas', iconName: 'microphone-alt-slash', icon: [640, 512, [], "f539", "M633.82 458.1L476.26 336.33C488.74 312.21 496 284.98 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67h-43.67l-41.4-32H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.78c11.71-1.62 23.1-4.28 33.96-8.08l-50.4-38.96c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z"] }; +var faMicrophoneSlash = { prefix: 'fas', iconName: 'microphone-slash', icon: [640, 512, [], "f131", "M633.82 458.1l-157.8-121.96C488.61 312.13 496 285.01 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67V96c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.77c11.66-1.6 22.85-4.54 33.67-8.31l-50.11-38.73c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z"] }; +var faMinus = { prefix: 'fas', iconName: 'minus', icon: [448, 512, [], "f068", "M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; +var faMinusCircle = { prefix: 'fas', iconName: 'minus-circle', icon: [512, 512, [], "f056", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM124 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H124z"] }; +var faMinusSquare = { prefix: 'fas', iconName: 'minus-square', icon: [448, 512, [], "f146", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H92z"] }; +var faMobile = { prefix: 'fas', iconName: 'mobile', icon: [320, 512, [], "f10b", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faMobileAlt = { prefix: 'fas', iconName: 'mobile-alt', icon: [320, 512, [], "f3cd", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm112-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v312z"] }; +var faMoneyBill = { prefix: 'fas', iconName: 'money-bill', icon: [640, 512, [], "f0d6", "M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 176c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 48h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z"] }; +var faMoneyBillAlt = { prefix: 'fas', iconName: 'money-bill-alt', icon: [640, 512, [], "f3d1", "M352 288h-16v-88c0-4.42-3.58-8-8-8h-13.58c-4.74 0-9.37 1.4-13.31 4.03l-15.33 10.22a7.994 7.994 0 0 0-2.22 11.09l8.88 13.31a7.994 7.994 0 0 0 11.09 2.22l.47-.31V288h-16c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8h64c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 192c-53.02 0-96-50.15-96-112 0-61.86 42.98-112 96-112s96 50.14 96 112c0 61.87-43 112-96 112zm272 32h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z"] }; +var faMoneyBillWave = { prefix: 'fas', iconName: 'money-bill-wave', icon: [640, 512, [], "f53a", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM48 132.22c20.12 5.04 41.12 7.57 62.72 8.93C104.84 170.54 79 192.69 48 192.69v-60.47zm0 285v-47.78c34.37 0 62.18 27.27 63.71 61.4-22.53-1.81-43.59-6.31-63.71-13.62zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 27.78c-17.52-4.39-35.71-6.85-54.32-8.44 5.87-26.08 27.5-45.88 54.32-49.28v57.72zm0-236.11c-30.89-3.91-54.86-29.7-55.81-61.55 19.54 2.17 38.09 6.23 55.81 12.66v48.89z"] }; +var faMoneyBillWaveAlt = { prefix: 'fas', iconName: 'money-bill-wave-alt', icon: [640, 512, [], "f53b", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96z"] }; +var faMoneyCheck = { prefix: 'fas', iconName: 'money-check', icon: [640, 512, [], "f53c", "M0 448c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128H0v320zm448-208c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-32zm0 120c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H456c-4.42 0-8-3.58-8-8v-16zM64 264c0-4.42 3.58-8 8-8h304c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm0 96c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zM624 32H16C7.16 32 0 39.16 0 48v48h640V48c0-8.84-7.16-16-16-16z"] }; +var faMoneyCheckAlt = { prefix: 'fas', iconName: 'money-check-alt', icon: [640, 512, [], "f53d", "M608 32H32C14.33 32 0 46.33 0 64v384c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM176 327.88V344c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V152c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07zM416 312c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm160 0c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h272c4.42 0 8 3.58 8 8v16z"] }; +var faMonument = { prefix: 'fas', iconName: 'monument', icon: [384, 512, [], "f5a6", "M368 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h352c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-78.86-347.26a31.97 31.97 0 0 0-9.21-19.44L203.31 4.69c-6.25-6.25-16.38-6.25-22.63 0l-76.6 76.61a31.97 31.97 0 0 0-9.21 19.44L64 416h256l-30.86-315.26zM240 307.2c0 6.4-6.4 12.8-12.8 12.8h-70.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h70.4c6.4 0 12.8 6.4 12.8 12.8v38.4z"] }; +var faMoon = { prefix: 'fas', iconName: 'moon', icon: [512, 512, [], "f186", "M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z"] }; +var faMortarPestle = { prefix: 'fas', iconName: 'mortar-pestle', icon: [512, 512, [], "f5a7", "M501.54 60.91c17.22-17.22 12.51-46.25-9.27-57.14a35.696 35.696 0 0 0-37.37 3.37L251.09 160h151.37l99.08-99.09zM496 192H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c0 80.98 50.2 150.11 121.13 178.32-12.76 16.87-21.72 36.8-24.95 58.69-1.46 9.92 6.04 18.98 16.07 18.98h223.5c10.03 0 17.53-9.06 16.07-18.98-3.22-21.89-12.18-41.82-24.95-58.69C429.8 406.11 480 336.98 480 256h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"] }; +var faMotorcycle = { prefix: 'fas', iconName: 'motorcycle', icon: [640, 512, [], "f21c", "M512.949 192.003c-14.862-.108-29.14 2.322-42.434 6.874L437.589 144H520c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24h-45.311a24 24 0 0 0-17.839 7.945l-37.496 41.663-22.774-37.956A24 24 0 0 0 376 64h-80c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h66.411l19.2 32H227.904c-17.727-23.073-44.924-40-99.904-40H72.54c-13.455 0-24.791 11.011-24.536 24.464C48.252 141.505 58.9 152 72 152h56c24.504 0 38.686 10.919 47.787 24.769l-11.291 20.529c-13.006-3.865-26.871-5.736-41.251-5.21C55.857 194.549 1.565 249.605.034 317.021-1.603 389.076 56.317 448 128 448c59.642 0 109.744-40.794 123.953-96h84.236c13.673 0 24.589-11.421 23.976-25.077-2.118-47.12 17.522-93.665 56.185-125.026l12.485 20.808c-27.646 23.654-45.097 58.88-44.831 98.179.47 69.556 57.203 126.452 126.758 127.11 71.629.678 129.839-57.487 129.234-129.099-.588-69.591-57.455-126.386-127.047-126.892zM128 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c4.242 0 8.405.341 12.469.982L98.97 316.434C90.187 332.407 101.762 352 120 352h81.297c-12.37 28.225-40.56 48-73.297 48zm388.351-.116C470.272 402.337 432 365.554 432 320c0-21.363 8.434-40.781 22.125-55.144l49.412 82.352c4.546 7.577 14.375 10.034 21.952 5.488l13.72-8.232c7.577-4.546 10.034-14.375 5.488-21.952l-48.556-80.927A80.005 80.005 0 0 1 512 240c45.554 0 82.338 38.273 79.884 84.352-2.16 40.558-34.974 73.372-75.533 75.532z"] }; +var faMousePointer = { prefix: 'fas', iconName: 'mouse-pointer', icon: [320, 512, [], "f245", "M302.189 329.126H196.105l55.831 135.993c3.889 9.428-.555 19.999-9.444 23.999l-49.165 21.427c-9.165 4-19.443-.571-23.332-9.714l-53.053-129.136-86.664 89.138C18.729 472.71 0 463.554 0 447.977V18.299C0 1.899 19.921-6.096 30.277 5.443l284.412 292.542c11.472 11.179 3.007 31.141-12.5 31.141z"] }; +var faMusic = { prefix: 'fas', iconName: 'music', icon: [512, 512, [], "f001", "M470.4 1.5l-304 96C153.1 101.7 144 114 144 128v264.6c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V220.5l272-85.9v194c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V32c0-21.7-21.1-37-41.6-30.5z"] }; +var faNeuter = { prefix: 'fas', iconName: 'neuter', icon: [288, 512, [], "f22c", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V468c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V316.4c64.1-14.5 112-71.9 112-140.4zm-144 80c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faNewspaper = { prefix: 'fas', iconName: 'newspaper', icon: [576, 512, [], "f1ea", "M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z"] }; +var faNotEqual = { prefix: 'fas', iconName: 'not-equal', icon: [448, 512, [], "f53e", "M416 208c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32h-23.88l51.87-66.81c5.37-7.02 4.04-17.06-2.97-22.43L415.61 3.3c-7.02-5.38-17.06-4.04-22.44 2.97L311.09 112H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h204.56l-74.53 96H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h55.49l-51.87 66.81c-5.37 7.01-4.04 17.05 2.97 22.43L64 508.7c7.02 5.38 17.06 4.04 22.43-2.97L168.52 400H416c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32H243.05l74.53-96H416z"] }; +var faNotesMedical = { prefix: 'fas', iconName: 'notes-medical', icon: [384, 512, [], "f481", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm96 304c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm0-192c0 4.4-3.6 8-8 8H104c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16z"] }; +var faObjectGroup = { prefix: 'fas', iconName: 'object-group', icon: [512, 512, [], "f247", "M480 128V96h20c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v20H64V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v40c0 6.627 5.373 12 12 12h20v320H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-20h384v20c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-20V128zM96 276V140c0-6.627 5.373-12 12-12h168c6.627 0 12 5.373 12 12v136c0 6.627-5.373 12-12 12H108c-6.627 0-12-5.373-12-12zm320 96c0 6.627-5.373 12-12 12H236c-6.627 0-12-5.373-12-12v-52h72c13.255 0 24-10.745 24-24v-72h84c6.627 0 12 5.373 12 12v136z"] }; +var faObjectUngroup = { prefix: 'fas', iconName: 'object-ungroup', icon: [576, 512, [], "f248", "M64 320v26a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6v-52a6 6 0 0 1 6-6h26V96H6a6 6 0 0 1-6-6V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v26h288V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-26v192h26a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-52a6 6 0 0 1-6-6v-26H64zm480-64v-32h26a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-52a6 6 0 0 0-6 6v26H408v72h8c13.255 0 24 10.745 24 24v64c0 13.255-10.745 24-24 24h-64c-13.255 0-24-10.745-24-24v-8H192v72h-26a6 6 0 0 0-6 6v52a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-26h288v26a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-26V256z"] }; +var faOutdent = { prefix: 'fas', iconName: 'outdent', icon: [448, 512, [], "f03b", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm208 144h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm192-128h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM4.687 267.313l96 95.984C110.734 373.348 128 366.224 128 351.984V160.008c0-14.329-17.325-21.304-27.313-11.313l-96 95.992c-6.249 6.248-6.249 16.378 0 22.626z"] }; +var faPaintBrush = { prefix: 'fas', iconName: 'paint-brush', icon: [512, 512, [], "f1fc", "M167.02 309.34c-40.12 2.58-76.53 17.86-97.19 72.3-2.35 6.21-8 9.98-14.59 9.98-11.11 0-45.46-27.67-55.25-34.35C0 439.62 37.93 512 128 512c75.86 0 128-43.77 128-120.19 0-3.11-.65-6.08-.97-9.13l-88.01-73.34zM457.89 0c-15.16 0-29.37 6.71-40.21 16.45C213.27 199.05 192 203.34 192 257.09c0 13.7 3.25 26.76 8.73 38.7l63.82 53.18c7.21 1.8 14.64 3.03 22.39 3.03 62.11 0 98.11-45.47 211.16-256.46 7.38-14.35 13.9-29.85 13.9-45.99C512 20.64 486 0 457.89 0z"] }; +var faPaintRoller = { prefix: 'fas', iconName: 'paint-roller', icon: [512, 512, [], "f5aa", "M416 128V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32h352c17.67 0 32-14.33 32-32zm32-64v128c0 17.67-14.33 32-32 32H256c-35.35 0-64 28.65-64 64v32c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32v-32h160c53.02 0 96-42.98 96-96v-64c0-35.35-28.65-64-64-64z"] }; +var faPalette = { prefix: 'fas', iconName: 'palette', icon: [512, 512, [], "f53f", "M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faPallet = { prefix: 'fas', iconName: 'pallet', icon: [640, 512, [], "f482", "M144 256h352c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H384v128l-64-32-64 32V0H144c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16zm480 128c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v64H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-64h48zm-336 64H128v-64h160v64zm224 0H352v-64h160v64z"] }; +var faPaperPlane = { prefix: 'fas', iconName: 'paper-plane', icon: [512, 512, [], "f1d8", "M476 3.2L12.5 270.6c-18.1 10.4-15.8 35.6 2.2 43.2L121 358.4l287.3-253.2c5.5-4.9 13.3 2.6 8.6 8.3L176 407v80.5c0 23.6 28.5 32.9 42.5 15.8L282 426l124.6 52.2c14.2 6 30.4-2.9 33-18.2l72-432C515 7.8 493.3-6.8 476 3.2z"] }; +var faPaperclip = { prefix: 'fas', iconName: 'paperclip', icon: [448, 512, [], "f0c6", "M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z"] }; +var faParachuteBox = { prefix: 'fas', iconName: 'parachute-box', icon: [512, 512, [], "f4cd", "M511.9 175c-9.1-75.6-78.4-132.4-158.3-158.7C390 55.7 416 116.9 416 192h28.1L327.5 321.5c-2.5-.6-4.8-1.5-7.5-1.5h-48V192h112C384 76.8 315.1 0 256 0S128 76.8 128 192h112v128h-48c-2.7 0-5 .9-7.5 1.5L67.9 192H96c0-75.1 26-136.3 62.4-175.7C78.5 42.7 9.2 99.5.1 175c-1.1 9.1 6.8 17 16 17h8.7l136.7 151.9c-.7 2.6-1.6 5.2-1.6 8.1v128c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32V352c0-2.9-.9-5.4-1.6-8.1L487.1 192h8.7c9.3 0 17.2-7.8 16.1-17z"] }; +var faParagraph = { prefix: 'fas', iconName: 'paragraph', icon: [448, 512, [], "f1dd", "M408 32H177.531C88.948 32 16.045 103.335 16 191.918 15.956 280.321 87.607 352 176 352v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h32v344c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h40c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24z"] }; +var faParking = { prefix: 'fas', iconName: 'parking', icon: [448, 512, [], "f540", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM240 320h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h96c52.9 0 96 43.1 96 96s-43.1 96-96 96zm0-128h-48v64h48c17.6 0 32-14.4 32-32s-14.4-32-32-32z"] }; +var faPassport = { prefix: 'fas', iconName: 'passport', icon: [448, 512, [], "f5ab", "M129.62 176h39.09c1.49-27.03 6.54-51.35 14.21-70.41-27.71 13.24-48.02 39.19-53.3 70.41zm0 32c5.29 31.22 25.59 57.17 53.3 70.41-7.68-19.06-12.72-43.38-14.21-70.41h-39.09zM224 286.69c7.69-7.45 20.77-34.42 23.43-78.69h-46.87c2.67 44.26 15.75 71.24 23.44 78.69zM200.57 176h46.87c-2.66-44.26-15.74-71.24-23.43-78.69-7.7 7.45-20.78 34.43-23.44 78.69zm64.51 102.41c27.71-13.24 48.02-39.19 53.3-70.41h-39.09c-1.49 27.03-6.53 51.35-14.21 70.41zM416 0H64C28.65 0 0 28.65 0 64v384c0 35.35 28.65 64 64 64h352c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32zm-80 416H112c-8.8 0-16-7.2-16-16s7.2-16 16-16h224c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-112-96c-70.69 0-128-57.31-128-128S153.31 64 224 64s128 57.31 128 128-57.31 128-128 128zm41.08-214.41c7.68 19.06 12.72 43.38 14.21 70.41h39.09c-5.28-31.22-25.59-57.17-53.3-70.41z"] }; +var faPaste = { prefix: 'fas', iconName: 'paste', icon: [448, 512, [], "f0ea", "M128 184c0-30.879 25.122-56 56-56h136V56c0-13.255-10.745-24-24-24h-80.61C204.306 12.89 183.637 0 160 0s-44.306 12.89-55.39 32H24C10.745 32 0 42.745 0 56v336c0 13.255 10.745 24 24 24h104V184zm32-144c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24zm184 248h104v200c0 13.255-10.745 24-24 24H184c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.059V256h-96v-96h6.059a24 24 0 0 1 16.97 7.029l65.941 65.941a24.002 24.002 0 0 1 7.03 16.971z"] }; +var faPause = { prefix: 'fas', iconName: 'pause', icon: [448, 512, [], "f04c", "M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z"] }; +var faPauseCircle = { prefix: 'fas', iconName: 'pause-circle', icon: [512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-16 328c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160zm112 0c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160z"] }; +var faPaw = { prefix: 'fas', iconName: 'paw', icon: [512, 512, [], "f1b0", "M85.231 330.958C36 330.958 0 273.792 0 231.5c0-28.292 16-58.042 49.538-58.042 49.231 0 85.231 57.458 85.231 99.75 0 28.292-15.692 57.75-49.538 57.75zm348 106.167c0 37.042-32 42.875-63.385 42.875-41.231 0-74.462-26.25-113.846-26.25-41.231 0-76.308 25.958-120.923 25.958-29.847 0-56.308-9.625-56.308-42.583C78.769 368 180.616 265.333 256 265.333s177.231 102.959 177.231 171.792zM182.462 203.792c-49.847 0-80-59.5-80-100.333C102.462 70.792 120.308 32 160 32c50.154 0 80 59.5 80 100.333 0 32.667-17.846 71.459-57.538 71.459zM272 132.333C272 91.5 301.846 32 352 32c39.692 0 57.539 38.792 57.539 71.458 0 40.833-30.154 100.333-80.001 100.333C289.846 203.792 272 165 272 132.333zM512 231.5c0 42.292-36 99.458-85.231 99.458-33.847 0-49.538-29.458-49.538-57.75 0-42.291 35.999-99.75 85.231-99.75C496 173.458 512 203.208 512 231.5z"] }; +var faPen = { prefix: 'fas', iconName: 'pen', icon: [512, 512, [], "f304", "M290.74 93.24l128.02 128.02-277.99 277.99-114.14 12.6C11.35 513.54-1.56 500.62.14 485.34l12.7-114.22 277.9-277.88zm207.2-19.06l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.76 18.75-49.16 0-67.91z"] }; +var faPenAlt = { prefix: 'fas', iconName: 'pen-alt', icon: [512, 512, [], "f305", "M497.94 74.17l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91zm-246.8-20.53c-15.62-15.62-40.94-15.62-56.56 0L75.8 172.43c-6.25 6.25-6.25 16.38 0 22.62l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l101.82-101.82 22.63 22.62L93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l196.79-196.79-82.77-82.77-84.85-84.85z"] }; +var faPenFancy = { prefix: 'fas', iconName: 'pen-fancy', icon: [512, 512, [], "f5ac", "M79.18 282.94a32.005 32.005 0 0 0-20.24 20.24L0 480l4.69 4.69 92.89-92.89c-.66-2.56-1.57-5.03-1.57-7.8 0-17.67 14.33-32 32-32s32 14.33 32 32-14.33 32-32 32c-2.77 0-5.24-.91-7.8-1.57l-92.89 92.89L32 512l176.82-58.94a31.983 31.983 0 0 0 20.24-20.24l33.07-84.07-98.88-98.88-84.07 33.07zM369.25 28.32L186.14 227.81l97.85 97.85 199.49-183.11C568.4 67.48 443.73-55.94 369.25 28.32z"] }; +var faPenNib = { prefix: 'fas', iconName: 'pen-nib', icon: [512, 512, [], "f5ad", "M136.6 138.79a64.003 64.003 0 0 0-43.31 41.35L0 460l14.69 14.69L164.8 324.58c-2.99-6.26-4.8-13.18-4.8-20.58 0-26.51 21.49-48 48-48s48 21.49 48 48-21.49 48-48 48c-7.4 0-14.32-1.81-20.58-4.8L37.31 497.31 52 512l279.86-93.29a64.003 64.003 0 0 0 41.35-43.31L416 224 288 96l-151.4 42.79zm361.34-64.62l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91z"] }; +var faPenSquare = { prefix: 'fas', iconName: 'pen-square', icon: [448, 512, [], "f14b", "M400 480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zM238.1 177.9L102.4 313.6l-6.3 57.1c-.8 7.6 5.6 14.1 13.3 13.3l57.1-6.3L302.2 242c2.3-2.3 2.3-6.1 0-8.5L246.7 178c-2.5-2.4-6.3-2.4-8.6-.1zM345 165.1L314.9 135c-9.4-9.4-24.6-9.4-33.9 0l-23.1 23.1c-2.3 2.3-2.3 6.1 0 8.5l55.5 55.5c2.3 2.3 6.1 2.3 8.5 0L345 199c9.3-9.3 9.3-24.5 0-33.9z"] }; +var faPencilAlt = { prefix: 'fas', iconName: 'pencil-alt', icon: [512, 512, [], "f303", "M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z"] }; +var faPencilRuler = { prefix: 'fas', iconName: 'pencil-ruler', icon: [512, 512, [], "f5ae", "M109.46 244.04l134.58-134.56-44.12-44.12-61.68 61.68a7.919 7.919 0 0 1-11.21 0l-11.21-11.21c-3.1-3.1-3.1-8.12 0-11.21l61.68-61.68-33.64-33.65C131.47-3.1 111.39-3.1 99 9.29L9.29 99c-12.38 12.39-12.39 32.47 0 44.86l100.17 100.18zm388.47-116.8c18.76-18.76 18.75-49.17 0-67.93l-45.25-45.25c-18.76-18.76-49.18-18.76-67.95 0l-46.02 46.01 113.2 113.2 46.02-46.03zM316.08 82.71l-297 296.96L.32 487.11c-2.53 14.49 10.09 27.11 24.59 24.56l107.45-18.84L429.28 195.9 316.08 82.71zm186.63 285.43l-33.64-33.64-61.68 61.68c-3.1 3.1-8.12 3.1-11.21 0l-11.21-11.21c-3.09-3.1-3.09-8.12 0-11.21l61.68-61.68-44.14-44.14L267.93 402.5l100.21 100.2c12.39 12.39 32.47 12.39 44.86 0l89.71-89.7c12.39-12.39 12.39-32.47 0-44.86z"] }; +var faPeopleCarry = { prefix: 'fas', iconName: 'people-carry', icon: [640, 512, [], "f4ce", "M128 96c26.5 0 48-21.5 48-48S154.5 0 128 0 80 21.5 80 48s21.5 48 48 48zm384 0c26.5 0 48-21.5 48-48S538.5 0 512 0s-48 21.5-48 48 21.5 48 48 48zm125.7 372.1l-44-110-41.1 46.4-2 18.2 27.7 69.2c5 12.5 17 20.1 29.7 20.1 4 0 8-.7 11.9-2.3 16.4-6.6 24.4-25.2 17.8-41.6zm-34.2-209.8L585 178.1c-4.6-20-18.6-36.8-37.5-44.9-18.5-8-39-6.7-56.1 3.3-22.7 13.4-39.7 34.5-48.1 59.4L432 229.8 416 240v-96c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16v96l-16.1-10.2-11.3-33.9c-8.3-25-25.4-46-48.1-59.4-17.2-10-37.6-11.3-56.1-3.3-18.9 8.1-32.9 24.9-37.5 44.9l-18.4 80.2c-4.6 20 .7 41.2 14.4 56.7l67.2 75.9 10.1 92.6C130 499.8 143.8 512 160 512c1.2 0 2.3-.1 3.5-.2 17.6-1.9 30.2-17.7 28.3-35.3l-10.1-92.8c-1.5-13-6.9-25.1-15.6-35l-43.3-49 17.6-70.3 6.8 20.4c4.1 12.5 11.9 23.4 24.5 32.6l51.1 32.5c4.6 2.9 12.1 4.6 17.2 5h160c5.1-.4 12.6-2.1 17.2-5l51.1-32.5c12.6-9.2 20.4-20 24.5-32.6l6.8-20.4 17.6 70.3-43.3 49c-8.7 9.9-14.1 22-15.6 35l-10.1 92.8c-1.9 17.6 10.8 33.4 28.3 35.3 1.2.1 2.3.2 3.5.2 16.1 0 30-12.1 31.8-28.5l10.1-92.6 67.2-75.9c13.6-15.5 19-36.7 14.4-56.7zM46.3 358.1l-44 110c-6.6 16.4 1.4 35 17.8 41.6 16.8 6.6 35.1-1.7 41.6-17.8l27.7-69.2-2-18.2-41.1-46.4z"] }; +var faPercent = { prefix: 'fas', iconName: 'percent', icon: [448, 512, [], "f295", "M112 224c61.9 0 112-50.1 112-112S173.9 0 112 0 0 50.1 0 112s50.1 112 112 112zm0-160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm224 224c-61.9 0-112 50.1-112 112s50.1 112 112 112 112-50.1 112-112-50.1-112-112-112zm0 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zM392.3.2l31.6-.1c19.4-.1 30.9 21.8 19.7 37.8L77.4 501.6a23.95 23.95 0 0 1-19.6 10.2l-33.4.1c-19.5 0-30.9-21.9-19.7-37.8l368-463.7C377.2 4 384.5.2 392.3.2z"] }; +var faPercentage = { prefix: 'fas', iconName: 'percentage', icon: [384, 512, [], "f541", "M109.25 173.25c24.99-24.99 24.99-65.52 0-90.51-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 25 25 65.52 25 90.51 0zm256 165.49c-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 24.99 24.99 65.52 24.99 90.51 0 25-24.99 25-65.51 0-90.51zm-1.94-231.43l-22.62-22.62c-12.5-12.5-32.76-12.5-45.25 0L20.69 359.44c-12.5 12.5-12.5 32.76 0 45.25l22.62 22.62c12.5 12.5 32.76 12.5 45.25 0l274.75-274.75c12.5-12.49 12.5-32.75 0-45.25z"] }; +var faPhone = { prefix: 'fas', iconName: 'phone', icon: [512, 512, [], "f095", "M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z"] }; +var faPhoneSlash = { prefix: 'fas', iconName: 'phone-slash', icon: [640, 512, [], "f3dd", "M268.2 381.4l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48c-10.7 4.6-16.5 16.1-13.9 27.5l24 104c2.5 10.8 12.1 18.6 23.4 18.6 100.7 0 193.7-32.4 269.7-86.9l-80-61.8c-10.9 6.5-22.1 12.7-33.6 18.1zm365.6 76.7L475.1 335.5C537.9 256.4 576 156.9 576 48c0-11.2-7.7-20.9-18.6-23.4l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-12.2 26.1-27.9 50.3-46 72.8L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z"] }; +var faPhoneSquare = { prefix: 'fas', iconName: 'phone-square', icon: [448, 512, [], "f098", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM94 416c-7.033 0-13.057-4.873-14.616-11.627l-14.998-65a15 15 0 0 1 8.707-17.16l69.998-29.999a15 15 0 0 1 17.518 4.289l30.997 37.885c48.944-22.963 88.297-62.858 110.781-110.78l-37.886-30.997a15.001 15.001 0 0 1-4.289-17.518l30-69.998a15 15 0 0 1 17.16-8.707l65 14.998A14.997 14.997 0 0 1 384 126c0 160.292-129.945 290-290 290z"] }; +var faPhoneVolume = { prefix: 'fas', iconName: 'phone-volume', icon: [384, 512, [], "f2a0", "M97.333 506.966c-129.874-129.874-129.681-340.252 0-469.933 5.698-5.698 14.527-6.632 21.263-2.422l64.817 40.513a17.187 17.187 0 0 1 6.849 20.958l-32.408 81.021a17.188 17.188 0 0 1-17.669 10.719l-55.81-5.58c-21.051 58.261-20.612 122.471 0 179.515l55.811-5.581a17.188 17.188 0 0 1 17.669 10.719l32.408 81.022a17.188 17.188 0 0 1-6.849 20.958l-64.817 40.513a17.19 17.19 0 0 1-21.264-2.422zM247.126 95.473c11.832 20.047 11.832 45.008 0 65.055-3.95 6.693-13.108 7.959-18.718 2.581l-5.975-5.726c-3.911-3.748-4.793-9.622-2.261-14.41a32.063 32.063 0 0 0 0-29.945c-2.533-4.788-1.65-10.662 2.261-14.41l5.975-5.726c5.61-5.378 14.768-4.112 18.718 2.581zm91.787-91.187c60.14 71.604 60.092 175.882 0 247.428-4.474 5.327-12.53 5.746-17.552.933l-5.798-5.557c-4.56-4.371-4.977-11.529-.93-16.379 49.687-59.538 49.646-145.933 0-205.422-4.047-4.85-3.631-12.008.93-16.379l5.798-5.557c5.022-4.813 13.078-4.394 17.552.933zm-45.972 44.941c36.05 46.322 36.108 111.149 0 157.546-4.39 5.641-12.697 6.251-17.856 1.304l-5.818-5.579c-4.4-4.219-4.998-11.095-1.285-15.931 26.536-34.564 26.534-82.572 0-117.134-3.713-4.836-3.115-11.711 1.285-15.931l5.818-5.579c5.159-4.947 13.466-4.337 17.856 1.304z"] }; +var faPiggyBank = { prefix: 'fas', iconName: 'piggy-bank', icon: [576, 512, [], "f4d3", "M560 224h-29.5c-8.8-20-21.6-37.7-37.4-52.5L512 96h-32c-29.4 0-55.4 13.5-73 34.3-7.6-1.1-15.1-2.3-23-2.3H256c-77.4 0-141.9 55-156.8 128H56c-14.8 0-26.5-13.5-23.5-28.8C34.7 215.8 45.4 208 57 208h1c3.3 0 6-2.7 6-6v-20c0-3.3-2.7-6-6-6-28.5 0-53.9 20.4-57.5 48.6C-3.9 258.8 22.7 288 56 288h40c0 52.2 25.4 98.1 64 127.3V496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-48h128v48c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80.7c11.8-8.9 22.3-19.4 31.3-31.3H560c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16zm-128 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM256 96h128c5.4 0 10.7.4 15.9.8 0-.3.1-.5.1-.8 0-53-43-96-96-96s-96 43-96 96c0 2.1.5 4.1.6 6.2 15.2-3.9 31-6.2 47.4-6.2z"] }; +var faPills = { prefix: 'fas', iconName: 'pills', icon: [576, 512, [], "f484", "M112 32C50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V144c0-61.9-50.1-112-112-112zm48 224H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm139.7-29.7c-3.5-3.5-9.4-3.1-12.3.8-45.3 62.5-40.4 150.1 15.9 206.4 56.3 56.3 143.9 61.2 206.4 15.9 4-2.9 4.3-8.8.8-12.3L299.7 226.3zm229.8-19c-56.3-56.3-143.9-61.2-206.4-15.9-4 2.9-4.3 8.8-.8 12.3l210.8 210.8c3.5 3.5 9.4 3.1 12.3-.8 45.3-62.6 40.5-150.1-15.9-206.4z"] }; +var faPlane = { prefix: 'fas', iconName: 'plane', icon: [576, 512, [], "f072", "M480 192H365.71L260.61 8.06A16.014 16.014 0 0 0 246.71 0h-65.5c-10.63 0-18.3 10.17-15.38 20.39L214.86 192H112l-43.2-57.6c-3.02-4.03-7.77-6.4-12.8-6.4H16.01C5.6 128-2.04 137.78.49 147.88L32 256 .49 364.12C-2.04 374.22 5.6 384 16.01 384H56c5.04 0 9.78-2.37 12.8-6.4L112 320h102.86l-49.03 171.6c-2.92 10.22 4.75 20.4 15.38 20.4h65.5c5.74 0 11.04-3.08 13.89-8.06L365.71 320H480c35.35 0 96-28.65 96-64s-60.65-64-96-64z"] }; +var faPlaneArrival = { prefix: 'fas', iconName: 'plane-arrival', icon: [640, 512, [], "f5af", "M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM44.81 205.66l88.74 80a62.607 62.607 0 0 0 25.47 13.93l287.6 78.35c26.48 7.21 54.56 8.72 81 1.36 29.67-8.27 43.44-21.21 47.25-35.71 3.83-14.5-1.73-32.71-23.37-54.96-19.28-19.82-44.35-32.79-70.83-40l-97.51-26.56L282.8 30.22c-1.51-5.81-5.95-10.35-11.66-11.91L206.05.58c-10.56-2.88-20.9 5.32-20.71 16.44l47.92 164.21-102.2-27.84-27.59-67.88c-1.93-4.89-6.01-8.57-11.02-9.93L52.72 64.75c-10.34-2.82-20.53 5-20.72 15.88l.23 101.78c.19 8.91 6.03 17.34 12.58 23.25z"] }; +var faPlaneDeparture = { prefix: 'fas', iconName: 'plane-departure', icon: [640, 512, [], "f5b0", "M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM80.55 341.27c6.28 6.84 15.1 10.72 24.33 10.71l130.54-.18a65.62 65.62 0 0 0 29.64-7.12l290.96-147.65c26.74-13.57 50.71-32.94 67.02-58.31 18.31-28.48 20.3-49.09 13.07-63.65-7.21-14.57-24.74-25.27-58.25-27.45-29.85-1.94-59.54 5.92-86.28 19.48l-98.51 49.99-218.7-82.06a17.799 17.799 0 0 0-18-1.11L90.62 67.29c-10.67 5.41-13.25 19.65-5.17 28.53l156.22 98.1-103.21 52.38-72.35-36.47a17.804 17.804 0 0 0-16.07.02L9.91 230.22c-10.44 5.3-13.19 19.12-5.57 28.08l76.21 82.97z"] }; +var faPlay = { prefix: 'fas', iconName: 'play', icon: [448, 512, [], "f04b", "M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z"] }; +var faPlayCircle = { prefix: 'fas', iconName: 'play-circle', icon: [512, 512, [], "f144", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z"] }; +var faPlug = { prefix: 'fas', iconName: 'plug', icon: [384, 512, [], "f1e6", "M256 144V32c0-17.673 14.327-32 32-32s32 14.327 32 32v112h-64zm112 16H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h16v32c0 77.406 54.969 141.971 128 156.796V512h64v-99.204c73.031-14.825 128-79.39 128-156.796v-32h16c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm-240-16V32c0-17.673-14.327-32-32-32S64 14.327 64 32v112h64z"] }; +var faPlus = { prefix: 'fas', iconName: 'plus', icon: [448, 512, [], "f067", "M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"] }; +var faPlusCircle = { prefix: 'fas', iconName: 'plus-circle', icon: [512, 512, [], "f055", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"] }; +var faPlusSquare = { prefix: 'fas', iconName: 'plus-square', icon: [448, 512, [], "f0fe", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-32 252c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92H92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"] }; +var faPodcast = { prefix: 'fas', iconName: 'podcast', icon: [448, 512, [], "f2ce", "M267.429 488.563C262.286 507.573 242.858 512 224 512c-18.857 0-38.286-4.427-43.428-23.437C172.927 460.134 160 388.898 160 355.75c0-35.156 31.142-43.75 64-43.75s64 8.594 64 43.75c0 32.949-12.871 104.179-20.571 132.813zM156.867 288.554c-18.693-18.308-29.958-44.173-28.784-72.599 2.054-49.724 42.395-89.956 92.124-91.881C274.862 121.958 320 165.807 320 220c0 26.827-11.064 51.116-28.866 68.552-2.675 2.62-2.401 6.986.628 9.187 9.312 6.765 16.46 15.343 21.234 25.363 1.741 3.654 6.497 4.66 9.449 1.891 28.826-27.043 46.553-65.783 45.511-108.565-1.855-76.206-63.595-138.208-139.793-140.369C146.869 73.753 80 139.215 80 220c0 41.361 17.532 78.7 45.55 104.989 2.953 2.771 7.711 1.77 9.453-1.887 4.774-10.021 11.923-18.598 21.235-25.363 3.029-2.2 3.304-6.566.629-9.185zM224 0C100.204 0 0 100.185 0 224c0 89.992 52.602 165.647 125.739 201.408 4.333 2.118 9.267-1.544 8.535-6.31-2.382-15.512-4.342-30.946-5.406-44.339-.146-1.836-1.149-3.486-2.678-4.512-47.4-31.806-78.564-86.016-78.187-147.347.592-96.237 79.29-174.648 175.529-174.899C320.793 47.747 400 126.797 400 224c0 61.932-32.158 116.49-80.65 147.867-.999 14.037-3.069 30.588-5.624 47.23-.732 4.767 4.203 8.429 8.535 6.31C395.227 389.727 448 314.187 448 224 448 100.205 347.815 0 224 0zm0 160c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z"] }; +var faPoo = { prefix: 'fas', iconName: 'poo', icon: [512, 512, [], "f2fe", "M451.4 369.1C468.7 356 480 335.4 480 312c0-39.8-32.2-72-72-72h-14.1c13.4-11.7 22.1-28.8 22.1-48 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C250.3 14.6 256 30.6 256 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 19.2 8.7 36.3 22.1 48H104c-39.8 0-72 32.2-72 72 0 23.4 11.3 44 28.6 57.1C26.3 374.6 0 404.1 0 440c0 39.8 32.2 72 72 72h368c39.8 0 72-32.2 72-72 0-35.9-26.3-65.4-60.6-70.9zM192 256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm159.5 139C341 422.9 293 448 256 448s-85-25.1-95.5-53c-2-5.3 2-11 7.8-11h175.4c5.8 0 9.8 5.7 7.8 11zM320 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faPortrait = { prefix: 'fas', iconName: 'portrait', icon: [384, 512, [], "f3e0", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM192 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 384 80 375.4 80 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"] }; +var faPoundSign = { prefix: 'fas', iconName: 'pound-sign', icon: [320, 512, [], "f154", "M308 352h-45.495c-6.627 0-12 5.373-12 12v50.848H128V288h84c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-84v-63.556c0-32.266 24.562-57.086 61.792-57.086 23.658 0 45.878 11.505 57.652 18.849 5.151 3.213 11.888 2.051 15.688-2.685l28.493-35.513c4.233-5.276 3.279-13.005-2.119-17.081C273.124 54.56 236.576 32 187.931 32 106.026 32 48 84.742 48 157.961V224H20c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h28v128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12V364c0-6.627-5.373-12-12-12z"] }; +var faPowerOff = { prefix: 'fas', iconName: 'power-off', icon: [512, 512, [], "f011", "M400 54.1c63 45 104 118.6 104 201.9 0 136.8-110.8 247.7-247.5 248C120 504.3 8.2 393 8 256.4 7.9 173.1 48.9 99.3 111.8 54.2c11.7-8.3 28-4.8 35 7.7L162.6 90c5.9 10.5 3.1 23.8-6.6 31-41.5 30.8-68 79.6-68 134.9-.1 92.3 74.5 168.1 168 168.1 91.6 0 168.6-74.2 168-169.1-.3-51.8-24.7-101.8-68.1-134-9.7-7.2-12.4-20.5-6.5-30.9l15.8-28.1c7-12.4 23.2-16.1 34.8-7.8zM296 264V24c0-13.3-10.7-24-24-24h-32c-13.3 0-24 10.7-24 24v240c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24z"] }; +var faPrescription = { prefix: 'fas', iconName: 'prescription', icon: [384, 512, [], "f5b1", "M301.26 352l78.06-78.06c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0L256 306.74l-83.96-83.96C219.31 216.8 256 176.89 256 128c0-53.02-42.98-96-96-96H16C7.16 32 0 39.16 0 48v256c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-80h18.75l128 128-78.06 78.06c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0L256 397.25l78.06 78.06c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63L301.26 352zM64 96h96c17.64 0 32 14.36 32 32s-14.36 32-32 32H64V96z"] }; +var faPrescriptionBottle = { prefix: 'fas', iconName: 'prescription-bottle', icon: [384, 512, [], "f485", "M32 192h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v64zM360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24z"] }; +var faPrescriptionBottleAlt = { prefix: 'fas', iconName: 'prescription-bottle-alt', icon: [384, 512, [], "f486", "M360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24zM32 480c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v352zm64-184c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48z"] }; +var faPrint = { prefix: 'fas', iconName: 'print', icon: [512, 512, [], "f02f", "M464 192h-16V81.941a24 24 0 0 0-7.029-16.97L383.029 7.029A24 24 0 0 0 366.059 0H88C74.745 0 64 10.745 64 24v168H48c-26.51 0-48 21.49-48 48v132c0 6.627 5.373 12 12 12h52v104c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V384h52c6.627 0 12-5.373 12-12V240c0-26.51-21.49-48-48-48zm-80 256H128v-96h256v96zM128 224V64h192v40c0 13.2 10.8 24 24 24h40v96H128zm304 72c-13.254 0-24-10.746-24-24s10.746-24 24-24 24 10.746 24 24-10.746 24-24 24z"] }; +var faProcedures = { prefix: 'fas', iconName: 'procedures', icon: [640, 512, [], "f487", "M528 224H272c-8.8 0-16 7.2-16 16v144H64V144c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v352c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h512v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-61.9-50.1-112-112-112zM136 96h126.1l27.6 55.2c5.9 11.8 22.7 11.8 28.6 0L368 51.8 390.1 96H512c8.8 0 16-7.2 16-16s-7.2-16-16-16H409.9L382.3 8.8C376.4-3 359.6-3 353.7 8.8L304 108.2l-19.9-39.8c-1.4-2.7-4.1-4.4-7.2-4.4H136c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm24 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z"] }; +var faProjectDiagram = { prefix: 'fas', iconName: 'project-diagram', icon: [640, 512, [], "f542", "M384 320H256c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM192 32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v128c0 17.67 14.33 32 32 32h95.72l73.16 128.04C211.98 300.98 232.4 288 256 288h.28L192 175.51V128h224V64H192V32zM608 0H480c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32z"] }; +var faPuzzlePiece = { prefix: 'fas', iconName: 'puzzle-piece', icon: [576, 512, [], "f12e", "M519.442 288.651c-41.519 0-59.5 31.593-82.058 31.593C377.409 320.244 432 144 432 144s-196.288 80-196.288-3.297c0-35.827 36.288-46.25 36.288-85.985C272 19.216 243.885 0 210.539 0c-34.654 0-66.366 18.891-66.366 56.346 0 41.364 31.711 59.277 31.711 81.75C175.885 207.719 0 166.758 0 166.758v333.237s178.635 41.047 178.635-28.662c0-22.473-40-40.107-40-81.471 0-37.456 29.25-56.346 63.577-56.346 33.673 0 61.788 19.216 61.788 54.717 0 39.735-36.288 50.158-36.288 85.985 0 60.803 129.675 25.73 181.23 25.73 0 0-34.725-120.101 25.827-120.101 35.962 0 46.423 36.152 86.308 36.152C556.712 416 576 387.99 576 354.443c0-34.199-18.962-65.792-56.558-65.792z"] }; +var faQrcode = { prefix: 'fas', iconName: 'qrcode', icon: [448, 512, [], "f029", "M0 224h192V32H0v192zM64 96h64v64H64V96zm192-64v192h192V32H256zm128 128h-64V96h64v64zM0 480h192V288H0v192zm64-128h64v64H64v-64zm352-64h32v128h-96v-32h-32v96h-64V288h96v32h64v-32zm0 160h32v32h-32v-32zm-64 0h32v32h-32v-32z"] }; +var faQuestion = { prefix: 'fas', iconName: 'question', icon: [384, 512, [], "f128", "M202.021 0C122.202 0 70.503 32.703 29.914 91.026c-7.363 10.58-5.093 25.086 5.178 32.874l43.138 32.709c10.373 7.865 25.132 6.026 33.253-4.148 25.049-31.381 43.63-49.449 82.757-49.449 30.764 0 68.816 19.799 68.816 49.631 0 22.552-18.617 34.134-48.993 51.164-35.423 19.86-82.299 44.576-82.299 106.405V320c0 13.255 10.745 24 24 24h72.471c13.255 0 24-10.745 24-24v-5.773c0-42.86 125.268-44.645 125.268-160.627C377.504 66.256 286.902 0 202.021 0zM192 373.459c-38.196 0-69.271 31.075-69.271 69.271 0 38.195 31.075 69.27 69.271 69.27s69.271-31.075 69.271-69.271-31.075-69.27-69.271-69.27z"] }; +var faQuestionCircle = { prefix: 'fas', iconName: 'question-circle', icon: [512, 512, [], "f059", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z"] }; +var faQuidditch = { prefix: 'fas', iconName: 'quidditch', icon: [640, 512, [], "f458", "M256.5 216.8L343.2 326s-16.6 102.4-76.6 150.1C206.7 523.8 0 510.2 0 510.2s3.8-23.1 11-55.4l94.6-112.2c4-4.7-.9-11.6-6.6-9.5l-60.4 22.1c14.4-41.7 32.7-80 54.6-97.5 59.9-47.8 163.3-40.9 163.3-40.9zm238 135c-44 0-79.8 35.8-79.8 79.9 0 44.1 35.7 79.9 79.8 79.9 44.1 0 79.8-35.8 79.8-79.9 0-44.2-35.8-79.9-79.8-79.9zM636.5 31L616.7 6c-5.5-6.9-15.5-8-22.4-2.6L361.8 181.3l-34.1-43c-5.1-6.4-15.1-5.2-18.6 2.2l-25.3 54.6 86.7 109.2 58.8-12.4c8-1.7 11.4-11.2 6.3-17.6l-34.1-42.9L634 53.5c6.9-5.5 8-15.6 2.5-22.5z"] }; +var faQuoteLeft = { prefix: 'fas', iconName: 'quote-left', icon: [512, 512, [], "f10d", "M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z"] }; +var faQuoteRight = { prefix: 'fas', iconName: 'quote-right', icon: [512, 512, [], "f10e", "M464 32H336c-26.5 0-48 21.5-48 48v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48zm-288 0H48C21.5 32 0 53.5 0 80v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48z"] }; +var faRandom = { prefix: 'fas', iconName: 'random', icon: [512, 512, [], "f074", "M504.971 359.029c9.373 9.373 9.373 24.569 0 33.941l-80 79.984c-15.01 15.01-40.971 4.49-40.971-16.971V416h-58.785a12.004 12.004 0 0 1-8.773-3.812l-70.556-75.596 53.333-57.143L352 336h32v-39.981c0-21.438 25.943-31.998 40.971-16.971l80 79.981zM12 176h84l52.781 56.551 53.333-57.143-70.556-75.596A11.999 11.999 0 0 0 122.785 96H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12zm372 0v39.984c0 21.46 25.961 31.98 40.971 16.971l80-79.984c9.373-9.373 9.373-24.569 0-33.941l-80-79.981C409.943 24.021 384 34.582 384 56.019V96h-58.785a12.004 12.004 0 0 0-8.773 3.812L96 336H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h110.785c3.326 0 6.503-1.381 8.773-3.812L352 176h32z"] }; +var faReceipt = { prefix: 'fas', iconName: 'receipt', icon: [384, 512, [], "f543", "M358.4 3.2L320 48 265.6 3.2a15.9 15.9 0 0 0-19.2 0L192 48 137.6 3.2a15.9 15.9 0 0 0-19.2 0L64 48 25.6 3.2C15-4.7 0 2.8 0 16v480c0 13.2 15 20.7 25.6 12.8L64 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L192 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L320 464l38.4 44.8c10.5 7.9 25.6.4 25.6-12.8V16c0-13.2-15-20.7-25.6-12.8zM320 360c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16z"] }; +var faRecycle = { prefix: 'fas', iconName: 'recycle', icon: [512, 512, [], "f1b8", "M184.561 261.903c3.232 13.997-12.123 24.635-24.068 17.168l-40.736-25.455-50.867 81.402C55.606 356.273 70.96 384 96.012 384H148c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12H96.115c-75.334 0-121.302-83.048-81.408-146.88l50.822-81.388-40.725-25.448c-12.081-7.547-8.966-25.961 4.879-29.158l110.237-25.45c8.611-1.988 17.201 3.381 19.189 11.99l25.452 110.237zm98.561-182.915l41.289 66.076-40.74 25.457c-12.051 7.528-9 25.953 4.879 29.158l110.237 25.45c8.672 1.999 17.215-3.438 19.189-11.99l25.45-110.237c3.197-13.844-11.99-24.719-24.068-17.168l-40.687 25.424-41.263-66.082c-37.521-60.033-125.209-60.171-162.816 0l-17.963 28.766c-3.51 5.62-1.8 13.021 3.82 16.533l33.919 21.195c5.62 3.512 13.024 1.803 16.536-3.817l17.961-28.743c12.712-20.341 41.973-19.676 54.257-.022zM497.288 301.12l-27.515-44.065c-3.511-5.623-10.916-7.334-16.538-3.821l-33.861 21.159c-5.62 3.512-7.33 10.915-3.818 16.536l27.564 44.112c13.257 21.211-2.057 48.96-27.136 48.96H320V336.02c0-14.213-17.242-21.383-27.313-11.313l-80 79.981c-6.249 6.248-6.249 16.379 0 22.627l80 79.989C302.689 517.308 320 510.3 320 495.989V448h95.88c75.274 0 121.335-82.997 81.408-146.88z"] }; +var faRedo = { prefix: 'fas', iconName: 'redo', icon: [512, 512, [], "f01e", "M500.333 0h-47.411c-6.853 0-12.314 5.729-11.986 12.574l3.966 82.759C399.416 41.899 331.672 8 256.001 8 119.34 8 7.899 119.526 8 256.187 8.101 393.068 119.096 504 256 504c63.926 0 122.202-24.187 166.178-63.908 5.113-4.618 5.354-12.561.482-17.433l-33.971-33.971c-4.466-4.466-11.64-4.717-16.38-.543C341.308 415.448 300.606 432 256 432c-97.267 0-176-78.716-176-176 0-97.267 78.716-176 176-176 60.892 0 114.506 30.858 146.099 77.8l-101.525-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12z"] }; +var faRedoAlt = { prefix: 'fas', iconName: 'redo-alt', icon: [512, 512, [], "f2f9", "M256.455 8c66.269.119 126.437 26.233 170.859 68.685l35.715-35.715C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.75c-30.864-28.899-70.801-44.907-113.23-45.273-92.398-.798-170.283 73.977-169.484 169.442C88.764 348.009 162.184 424 256 424c41.127 0 79.997-14.678 110.629-41.556 4.743-4.161 11.906-3.908 16.368.553l39.662 39.662c4.872 4.872 4.631 12.815-.482 17.433C378.202 479.813 319.926 504 256 504 119.034 504 8.001 392.967 8 256.002 7.999 119.193 119.646 7.755 256.455 8z"] }; +var faRegistered = { prefix: 'fas', iconName: 'registered', icon: [512, 512, [], "f25d", "M285.363 207.475c0 18.6-9.831 28.431-28.431 28.431h-29.876v-56.14h23.378c28.668 0 34.929 8.773 34.929 27.709zM504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM363.411 360.414c-46.729-84.825-43.299-78.636-44.702-80.98 23.432-15.172 37.945-42.979 37.945-74.486 0-54.244-31.5-89.252-105.498-89.252h-70.667c-13.255 0-24 10.745-24 24V372c0 13.255 10.745 24 24 24h22.567c13.255 0 24-10.745 24-24v-71.663h25.556l44.129 82.937a24.001 24.001 0 0 0 21.188 12.727h24.464c18.261-.001 29.829-19.591 21.018-35.587z"] }; +var faReply = { prefix: 'fas', iconName: 'reply', icon: [512, 512, [], "f3e5", "M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z"] }; +var faReplyAll = { prefix: 'fas', iconName: 'reply-all', icon: [576, 512, [], "f122", "M136.309 189.836L312.313 37.851C327.72 24.546 352 35.348 352 56.015v82.763c129.182 10.231 224 52.212 224 183.548 0 61.441-39.582 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 38.512-123.162-3.922-169.482-112.59-182.015v84.175c0 20.701-24.3 31.453-39.687 18.164L136.309 226.164c-11.071-9.561-11.086-26.753 0-36.328zm-128 36.328L184.313 378.15C199.7 391.439 224 380.687 224 359.986v-15.818l-108.606-93.785A55.96 55.96 0 0 1 96 207.998a55.953 55.953 0 0 1 19.393-42.38L224 71.832V56.015c0-20.667-24.28-31.469-39.687-18.164L8.309 189.836c-11.086 9.575-11.071 26.767 0 36.328z"] }; +var faRetweet = { prefix: 'fas', iconName: 'retweet', icon: [640, 512, [], "f079", "M629.657 343.598L528.971 444.284c-9.373 9.372-24.568 9.372-33.941 0L394.343 343.598c-9.373-9.373-9.373-24.569 0-33.941l10.823-10.823c9.562-9.562 25.133-9.34 34.419.492L480 342.118V160H292.451a24.005 24.005 0 0 1-16.971-7.029l-16-16C244.361 121.851 255.069 96 276.451 96H520c13.255 0 24 10.745 24 24v222.118l40.416-42.792c9.285-9.831 24.856-10.054 34.419-.492l10.823 10.823c9.372 9.372 9.372 24.569-.001 33.941zm-265.138 15.431A23.999 23.999 0 0 0 347.548 352H160V169.881l40.416 42.792c9.286 9.831 24.856 10.054 34.419.491l10.822-10.822c9.373-9.373 9.373-24.569 0-33.941L144.971 67.716c-9.373-9.373-24.569-9.373-33.941 0L10.343 168.402c-9.373 9.373-9.373 24.569 0 33.941l10.822 10.822c9.562 9.562 25.133 9.34 34.419-.491L96 169.881V392c0 13.255 10.745 24 24 24h243.549c21.382 0 32.09-25.851 16.971-40.971l-16.001-16z"] }; +var faRibbon = { prefix: 'fas', iconName: 'ribbon', icon: [448, 512, [], "f4d6", "M6.1 444.3c-9.6 10.8-7.5 27.6 4.5 35.7l68.8 27.9c9.9 6.7 23.3 5 31.3-3.8l91.8-101.9-79.2-87.9-117.2 130zm435.8 0s-292-324.6-295.4-330.1c15.4-8.4 40.2-17.9 77.5-17.9s62.1 9.5 77.5 17.9c-3.3 5.6-56 64.6-56 64.6l79.1 87.7 34.2-38c28.7-31.9 33.3-78.6 11.4-115.5l-43.7-73.5c-4.3-7.2-9.9-13.3-16.8-18-40.7-27.6-127.4-29.7-171.4 0-6.9 4.7-12.5 10.8-16.8 18l-43.6 73.2c-1.5 2.5-37.1 62.2 11.5 116L337.5 504c8 8.9 21.4 10.5 31.3 3.8l68.8-27.9c11.9-8 14-24.8 4.3-35.6z"] }; +var faRoad = { prefix: 'fas', iconName: 'road', icon: [576, 512, [], "f018", "M567.3 383.6L429.9 78.2C426 69.5 417.4 64 408 64h-96.1l1.9 18.8c.7 7.1-4.8 13.2-11.9 13.2H274c-7.1 0-12.7-6.2-11.9-13.2L264 64h-96c-9.4 0-18 5.5-21.9 14.2L8.7 383.6C3.2 395.8 0 409.6 0 424c0 13.3 10.7 24 24 24h213.6c-7.1 0-12.7-6.2-11.9-13.2l10.8-104c.6-6.1 5.8-10.8 11.9-10.8h79.2c6.1 0 11.3 4.6 11.9 10.8l10.8 104c.7 7.1-4.8 13.2-11.9 13.2H552c13.2 0 24-10.7 24-24 0-13.9-3-27.7-8.7-40.4zM254.7 154.8l3.3-32c.6-6.1 5.8-10.8 11.9-10.8h36.2c6.1 0 11.3 4.6 11.9 10.8l3.3 32c.7 7.1-4.8 13.2-11.9 13.2h-42.8c-7.1 0-12.7-6.2-11.9-13.2zM321.8 288h-67.6c-7.1 0-12.7-6.2-11.9-13.2l7.4-72c.6-6.1 5.8-10.8 11.9-10.8h52.7c6.1 0 11.3 4.6 11.9 10.8l7.4 72c.9 7-4.7 13.2-11.8 13.2z"] }; +var faRobot = { prefix: 'fas', iconName: 'robot', icon: [640, 512, [], "f544", "M0 256v128c0 17.7 14.3 32 32 32h32V224H32c-17.7 0-32 14.3-32 32zM464 96H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H176c-44.2 0-80 35.8-80 80v272c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V176c0-44.2-35.8-80-80-80zM256 416h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm128 120h-64v-32h64v32zm96 0h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm192-72h-32v192h32c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32z"] }; +var faRocket = { prefix: 'fas', iconName: 'rocket', icon: [512, 512, [], "f135", "M505.1 19.1C503.8 13 499 8.2 492.9 6.9 460.7 0 435.5 0 410.4 0 307.2 0 245.3 55.2 199.1 128H94.9c-18.2 0-34.8 10.3-42.9 26.5L2.6 253.3c-8 16 3.6 34.7 21.5 34.7h95.1c-5.9 12.8-11.9 25.5-18 37.7-3.1 6.2-1.9 13.6 3 18.5l63.6 63.6c4.9 4.9 12.3 6.1 18.5 3 12.2-6.1 24.9-12 37.7-17.9V488c0 17.8 18.8 29.4 34.7 21.5l98.7-49.4c16.3-8.1 26.5-24.8 26.5-42.9V312.8c72.6-46.3 128-108.4 128-211.1.1-25.2.1-50.4-6.8-82.6zM400 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; +var faRss = { prefix: 'fas', iconName: 'rss', icon: [448, 512, [], "f09e", "M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"] }; +var faRssSquare = { prefix: 'fas', iconName: 'rss-square', icon: [448, 512, [], "f143", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM112 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm157.533 0h-34.335c-6.011 0-11.051-4.636-11.442-10.634-5.214-80.05-69.243-143.92-149.123-149.123-5.997-.39-10.633-5.431-10.633-11.441v-34.335c0-6.535 5.468-11.777 11.994-11.425 110.546 5.974 198.997 94.536 204.964 204.964.352 6.526-4.89 11.994-11.425 11.994zm103.027 0h-34.334c-6.161 0-11.175-4.882-11.427-11.038-5.598-136.535-115.204-246.161-251.76-251.76C68.882 152.949 64 147.935 64 141.774V107.44c0-6.454 5.338-11.664 11.787-11.432 167.83 6.025 302.21 141.191 308.205 308.205.232 6.449-4.978 11.787-11.432 11.787z"] }; +var faRubleSign = { prefix: 'fas', iconName: 'ruble-sign', icon: [384, 512, [], "f158", "M239.36 320C324.48 320 384 260.542 384 175.071S324.48 32 239.36 32H76c-6.627 0-12 5.373-12 12v206.632H12c-6.627 0-12 5.373-12 12V308c0 6.627 5.373 12 12 12h52v32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v52c0 6.627 5.373 12 12 12h58.56c6.627 0 12-5.373 12-12v-52H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H146.56v-32h92.8zm-92.8-219.252h78.72c46.72 0 74.88 29.11 74.88 74.323 0 45.832-28.16 75.561-76.16 75.561h-77.44V100.748z"] }; +var faRuler = { prefix: 'fas', iconName: 'ruler', icon: [640, 512, [], "f545", "M635.7 167.2L556.1 31.7c-8.8-15-28.3-20.1-43.5-11.5l-69 39.1L503.3 161c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L416 75l-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L333.2 122 278 153.3 337.8 255c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-59.7-101.7-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-27.9-47.5-55.2 31.3 59.7 101.7c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L84.9 262.9l-69 39.1C.7 310.7-4.6 329.8 4.2 344.8l79.6 135.6c8.8 15 28.3 20.1 43.5 11.5L624.1 210c15.2-8.6 20.4-27.8 11.6-42.8z"] }; +var faRulerCombined = { prefix: 'fas', iconName: 'ruler-combined', icon: [512, 512, [], "f546", "M160 288h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56v-64h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56V96h-56c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8h56V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 2.77.91 5.24 1.57 7.8L160 329.38V288zm320 64h-32v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-41.37L24.2 510.43c2.56.66 5.04 1.57 7.8 1.57h448c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"] }; +var faRulerHorizontal = { prefix: 'fas', iconName: 'ruler-horizontal', icon: [576, 512, [], "f547", "M544 128h-48v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8H88c-4.42 0-8-3.58-8-8v-88H32c-17.67 0-32 14.33-32 32v192c0 17.67 14.33 32 32 32h512c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32z"] }; +var faRulerVertical = { prefix: 'fas', iconName: 'ruler-vertical', icon: [256, 512, [], "f548", "M168 416c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 17.67 14.33 32 32 32h192c17.67 0 32-14.33 32-32v-64h-88z"] }; +var faRupeeSign = { prefix: 'fas', iconName: 'rupee-sign', icon: [320, 512, [], "f156", "M308 96c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v44.748c0 6.627 5.373 12 12 12h85.28c27.308 0 48.261 9.958 60.97 27.252H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h158.757c-6.217 36.086-32.961 58.632-74.757 58.632H12c-6.627 0-12 5.373-12 12v53.012c0 3.349 1.4 6.546 3.861 8.818l165.052 152.356a12.001 12.001 0 0 0 8.139 3.182h82.562c10.924 0 16.166-13.408 8.139-20.818L116.871 319.906c76.499-2.34 131.144-53.395 138.318-127.906H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-58.69c-3.486-11.541-8.28-22.246-14.252-32H308z"] }; +var faSadCry = { prefix: 'fas', iconName: 'sad-cry', icon: [496, 512, [], "f5b3", "M248 8C111 8 0 119 0 256c0 90.1 48.2 168.7 120 212.1V288c0-8.8 7.2-16 16-16s16 7.2 16 16v196.7c29.5 12.4 62 19.3 96 19.3s66.5-6.9 96-19.3V288c0-8.8 7.2-16 16-16s16 7.2 16 16v180.1C447.8 424.7 496 346 496 256 496 119 385 8 248 8zm-65.5 216.5c-14.8-13.2-46.2-13.2-61 0L112 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c.8 5-1.7 10-6.1 12.4-5.8 3.1-11.2.7-13.7-1.6l-9.7-8.5zM248 416c-26.5 0-48-28.7-48-64s21.5-64 48-64 48 28.7 48 64-21.5 64-48 64zm149.8-181.5c-5.8 3.1-11.2.7-13.7-1.6l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S400 197 404 222.2c.6 4.9-1.8 9.9-6.2 12.3z"] }; +var faSadTear = { prefix: 'fas', iconName: 'sad-tear', icon: [496, 512, [], "f5b4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM152 416c-26.5 0-48-21-48-47 0-20 28.5-60.4 41.6-77.8 3.2-4.3 9.6-4.3 12.8 0C171.5 308.6 200 349 200 369c0 26-21.5 47-48 47zm16-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm170.2 154.2C315.8 367.4 282.9 352 248 352c-21.2 0-21.2-32 0-32 44.4 0 86.3 19.6 114.7 53.8 13.8 16.4-11.2 36.5-24.5 20.4z"] }; +var faSave = { prefix: 'fas', iconName: 'save', icon: [448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z"] }; +var faSchool = { prefix: 'fas', iconName: 'school', icon: [640, 512, [], "f549", "M0 224v272c0 8.84 7.16 16 16 16h80V192H32c-17.67 0-32 14.33-32 32zm360-48h-24v-40c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v64c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zm137.75-63.96l-160-106.67a32.02 32.02 0 0 0-35.5 0l-160 106.67A32.002 32.002 0 0 0 128 138.66V512h128V368c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v144h128V138.67c0-10.7-5.35-20.7-14.25-26.63zM320 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm288-64h-64v320h80c8.84 0 16-7.16 16-16V224c0-17.67-14.33-32-32-32z"] }; +var faScrewdriver = { prefix: 'fas', iconName: 'screwdriver', icon: [512, 512, [], "f54a", "M448 0L320 96v62.06l-83.03 83.03c6.79 4.25 13.27 9.06 19.07 14.87 5.8 5.8 10.62 12.28 14.87 19.07L353.94 192H416l96-128-64-64zM128 278.59L10.92 395.67c-14.55 14.55-14.55 38.15 0 52.71l52.7 52.7c14.56 14.56 38.15 14.56 52.71 0L233.41 384c29.11-29.11 29.11-76.3 0-105.41s-76.3-29.11-105.41 0z"] }; +var faSearch = { prefix: 'fas', iconName: 'search', icon: [512, 512, [], "f002", "M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"] }; +var faSearchMinus = { prefix: 'fas', iconName: 'search-minus', icon: [512, 512, [], "f010", "M304 192v32c0 6.6-5.4 12-12 12H124c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z"] }; +var faSearchPlus = { prefix: 'fas', iconName: 'search-plus', icon: [512, 512, [], "f00e", "M304 192v32c0 6.6-5.4 12-12 12h-56v56c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-56h-56c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h56v-56c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v56h56c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z"] }; +var faSeedling = { prefix: 'fas', iconName: 'seedling', icon: [512, 512, [], "f4d8", "M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z"] }; +var faServer = { prefix: 'fas', iconName: 'server', icon: [512, 512, [], "f233", "M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z"] }; +var faShare = { prefix: 'fas', iconName: 'share', icon: [512, 512, [], "f064", "M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z"] }; +var faShareAlt = { prefix: 'fas', iconName: 'share-alt', icon: [448, 512, [], "f1e0", "M352 320c-22.608 0-43.387 7.819-59.79 20.895l-102.486-64.054a96.551 96.551 0 0 0 0-41.683l102.486-64.054C308.613 184.181 329.392 192 352 192c53.019 0 96-42.981 96-96S405.019 0 352 0s-96 42.981-96 96c0 7.158.79 14.13 2.276 20.841L155.79 180.895C139.387 167.819 118.608 160 96 160c-53.019 0-96 42.981-96 96s42.981 96 96 96c22.608 0 43.387-7.819 59.79-20.895l102.486 64.054A96.301 96.301 0 0 0 256 416c0 53.019 42.981 96 96 96s96-42.981 96-96-42.981-96-96-96z"] }; +var faShareAltSquare = { prefix: 'fas', iconName: 'share-alt-square', icon: [448, 512, [], "f1e1", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zM304 296c-14.562 0-27.823 5.561-37.783 14.671l-67.958-40.775a56.339 56.339 0 0 0 0-27.793l67.958-40.775C276.177 210.439 289.438 216 304 216c30.928 0 56-25.072 56-56s-25.072-56-56-56-56 25.072-56 56c0 4.797.605 9.453 1.74 13.897l-67.958 40.775C171.823 205.561 158.562 200 144 200c-30.928 0-56 25.072-56 56s25.072 56 56 56c14.562 0 27.823-5.561 37.783-14.671l67.958 40.775a56.088 56.088 0 0 0-1.74 13.897c0 30.928 25.072 56 56 56s56-25.072 56-56C360 321.072 334.928 296 304 296z"] }; +var faShareSquare = { prefix: 'fas', iconName: 'share-square', icon: [576, 512, [], "f14d", "M568.482 177.448L424.479 313.433C409.3 327.768 384 317.14 384 295.985v-71.963c-144.575.97-205.566 35.113-164.775 171.353 4.483 14.973-12.846 26.567-25.006 17.33C155.252 383.105 120 326.488 120 269.339c0-143.937 117.599-172.5 264-173.312V24.012c0-21.174 25.317-31.768 40.479-17.448l144.003 135.988c10.02 9.463 10.028 25.425 0 34.896zM384 379.128V448H64V128h50.916a11.99 11.99 0 0 0 8.648-3.693c14.953-15.568 32.237-27.89 51.014-37.676C185.708 80.83 181.584 64 169.033 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48v-88.806c0-8.288-8.197-14.066-16.011-11.302a71.83 71.83 0 0 1-34.189 3.377c-7.27-1.046-13.8 4.514-13.8 11.859z"] }; +var faShekelSign = { prefix: 'fas', iconName: 'shekel-sign', icon: [448, 512, [], "f20b", "M248 168v168c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V168c0-75.11-60.89-136-136-136H24C10.75 32 0 42.74 0 56v408c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112h112c30.93 0 56 25.07 56 56zM432 32h-48c-8.84 0-16 7.16-16 16v296c0 30.93-25.07 56-56 56H200V176c0-8.84-7.16-16-16-16h-48c-8.84 0-16 7.16-16 16v280c0 13.25 10.75 24 24 24h168c75.11 0 136-60.89 136-136V48c0-8.84-7.16-16-16-16z"] }; +var faShieldAlt = { prefix: 'fas', iconName: 'shield-alt', icon: [512, 512, [], "f3ed", "M496 128c0 221.282-135.934 344.645-221.539 380.308a48 48 0 0 1-36.923 0C130.495 463.713 16 326.487 16 128a48 48 0 0 1 29.539-44.308l192-80a48 48 0 0 1 36.923 0l192 80A48 48 0 0 1 496 128zM256 446.313l.066.034c93.735-46.689 172.497-156.308 175.817-307.729L256 65.333v380.98z"] }; +var faShip = { prefix: 'fas', iconName: 'ship', icon: [640, 512, [], "f21a", "M496.616 372.639l70.012-70.012c16.899-16.9 9.942-45.771-12.836-53.092L512 236.102V96c0-17.673-14.327-32-32-32h-64V24c0-13.255-10.745-24-24-24H248c-13.255 0-24 10.745-24 24v40h-64c-17.673 0-32 14.327-32 32v140.102l-41.792 13.433c-22.753 7.313-29.754 36.173-12.836 53.092l70.012 70.012C125.828 416.287 85.587 448 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24 61.023 0 107.499-20.61 143.258-59.396C181.677 487.432 216.021 512 256 512h128c39.979 0 74.323-24.568 88.742-59.396C508.495 491.384 554.968 512 616 512c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24-60.817 0-101.542-31.001-119.384-75.361zM192 128h256v87.531l-118.208-37.995a31.995 31.995 0 0 0-19.584 0L192 215.531V128z"] }; +var faShippingFast = { prefix: 'fas', iconName: 'shipping-fast', icon: [640, 512, [], "f48b", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H112C85.5 0 64 21.5 64 48v48H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h272c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H40c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H64v128c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"] }; +var faShoePrints = { prefix: 'fas', iconName: 'shoe-prints', icon: [640, 512, [], "f54b", "M192 160h32V32h-32c-35.35 0-64 28.65-64 64s28.65 64 64 64zM0 416c0 35.35 28.65 64 64 64h32V352H64c-35.35 0-64 28.65-64 64zm337.46-128c-34.91 0-76.16 13.12-104.73 32-24.79 16.38-44.52 32-104.73 32v128l57.53 15.97c26.21 7.28 53.01 13.12 80.31 15.05 32.69 2.31 65.6.67 97.58-6.2C472.9 481.3 512 429.22 512 384c0-64-84.18-96-174.54-96zM491.42 7.19C459.44.32 426.53-1.33 393.84.99c-27.3 1.93-54.1 7.77-80.31 15.04L256 32v128c60.2 0 79.94 15.62 104.73 32 28.57 18.88 69.82 32 104.73 32C555.82 224 640 192 640 128c0-45.22-39.1-97.3-148.58-120.81z"] }; +var faShoppingBag = { prefix: 'fas', iconName: 'shopping-bag', icon: [448, 512, [], "f290", "M352 160v-32C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128v32H0v272c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V160h-96zm-192-32c0-35.29 28.71-64 64-64s64 28.71 64 64v32H160v-32zm160 120c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm-192 0c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24z"] }; +var faShoppingBasket = { prefix: 'fas', iconName: 'shopping-basket', icon: [576, 512, [], "f291", "M576 216v16c0 13.255-10.745 24-24 24h-8l-26.113 182.788C514.509 462.435 494.257 480 470.37 480H105.63c-23.887 0-44.139-17.565-47.518-41.212L32 256h-8c-13.255 0-24-10.745-24-24v-16c0-13.255 10.745-24 24-24h67.341l106.78-146.821c10.395-14.292 30.407-17.453 44.701-7.058 14.293 10.395 17.453 30.408 7.058 44.701L170.477 192h235.046L326.12 82.821c-10.395-14.292-7.234-34.306 7.059-44.701 14.291-10.395 34.306-7.235 44.701 7.058L484.659 192H552c13.255 0 24 10.745 24 24zM312 392V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm112 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm-224 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24z"] }; +var faShoppingCart = { prefix: 'fas', iconName: 'shopping-cart', icon: [576, 512, [], "f07a", "M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z"] }; +var faShower = { prefix: 'fas', iconName: 'shower', icon: [512, 512, [], "f2cc", "M389.66 135.6L231.6 293.66c-9.37 9.37-24.57 9.37-33.94 0l-11.32-11.32c-9.37-9.37-9.37-24.57 0-33.94l.11-.11c-34.03-40.21-35.16-98.94-3.39-140.38-11.97-7.55-26.14-11.91-41.3-11.91C98.88 96 64 130.88 64 173.76V480H0V173.76C0 95.59 63.59 32 141.76 32c36.93 0 70.61 14.2 95.86 37.42 35.9-11.51 76.5-4.5 106.67 21.03l.11-.11c9.37-9.37 24.57-9.37 33.94 0l11.32 11.32c9.37 9.37 9.37 24.57 0 33.94zM384 208c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm48-16c8.837 0 16 7.163 16 16s-7.163 16-16 16-16-7.163-16-16 7.163-16 16-16zm80 16c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-128 32c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-96 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm64 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16z"] }; +var faShuttleVan = { prefix: 'fas', iconName: 'shuttle-van', icon: [640, 512, [], "f5b6", "M628.88 210.65L494.39 49.27A48.01 48.01 0 0 0 457.52 32H32C14.33 32 0 46.33 0 64v288c0 17.67 14.33 32 32 32h32c0 53.02 42.98 96 96 96s96-42.98 96-96h128c0 53.02 42.98 96 96 96s96-42.98 96-96h32c17.67 0 32-14.33 32-32V241.38c0-11.23-3.94-22.1-11.12-30.73zM64 192V96h96v96H64zm96 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm160-240h-96V96h96v96zm160 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm-96-240V96h66.02l80 96H384z"] }; +var faSign = { prefix: 'fas', iconName: 'sign', icon: [512, 512, [], "f4d9", "M496 64H128V16c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16v48H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V128h368c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM160 384h320V160H160v224z"] }; +var faSignInAlt = { prefix: 'fas', iconName: 'sign-in-alt', icon: [512, 512, [], "f2f6", "M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z"] }; +var faSignLanguage = { prefix: 'fas', iconName: 'sign-language', icon: [448, 512, [], "f2a7", "M91.434 483.987c-.307-16.018 13.109-29.129 29.13-29.129h62.293v-5.714H56.993c-16.021 0-29.437-13.111-29.13-29.129C28.16 404.491 40.835 392 56.428 392h126.429v-5.714H29.136c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h154.286v-5.714H57.707c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h168.566l-31.085-22.606c-12.762-9.281-15.583-27.149-6.302-39.912 9.281-12.761 27.15-15.582 39.912-6.302l123.361 89.715a34.287 34.287 0 0 1 14.12 27.728v141.136c0 15.91-10.946 29.73-26.433 33.374l-80.471 18.934a137.16 137.16 0 0 1-31.411 3.646H120c-15.593-.001-28.269-12.492-28.566-28.014zm73.249-225.701h36.423l-11.187-8.136c-18.579-13.511-20.313-40.887-3.17-56.536l-13.004-16.7c-9.843-12.641-28.43-15.171-40.88-5.088-12.065 9.771-14.133 27.447-4.553 39.75l36.371 46.71zm283.298-2.103l-5.003-152.452c-.518-15.771-13.722-28.136-29.493-27.619-15.773.518-28.137 13.722-27.619 29.493l1.262 38.415L283.565 11.019c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l76.889 98.745-4.509 3.511-94.79-121.734c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l94.443 121.288-4.509 3.511-77.675-99.754c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l52.053 66.849c12.497-8.257 29.055-8.285 41.69.904l123.36 89.714c10.904 7.93 17.415 20.715 17.415 34.198v16.999l61.064-47.549a34.285 34.285 0 0 0 13.202-28.177z"] }; +var faSignOutAlt = { prefix: 'fas', iconName: 'sign-out-alt', icon: [512, 512, [], "f2f5", "M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"] }; +var faSignal = { prefix: 'fas', iconName: 'signal', icon: [640, 512, [], "f012", "M36 384h56c6.6 0 12 5.4 12 12v104c0 6.6-5.4 12-12 12H36c-6.6 0-12-5.4-12-12V396c0-6.6 5.4-12 12-12zm116-36v152c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V348c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-80v232c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V268c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-112v344c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V156c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zM536 12v488c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V12c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12z"] }; +var faSignature = { prefix: 'fas', iconName: 'signature', icon: [512, 512, [], "f5b7", "M496 320h-91.86c-9.27 0-19.72-11.31-25.78-28.52-15.23-43.36-48.11-70.3-85.8-70.3-30.84 0-58.47 18.05-76.11 49.23L194.8 106.5C188.84 81.08 169.34 64 146.28 64c-23.05 0-42.55 17.08-48.5 42.5L56.16 284.2C50.7 307.45 37.75 320 28.33 320H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h12.33c41.97 0 78.19-34.23 90.14-85.2l23.84-101.78 29.25 222.11c1.98 15.05 13.82 27.45 28.94 28.75.99.09 1.96.13 2.93.13 14.08 0 26.64-9.27 30.69-22.95l33.03-112.34c5.88-16.72 15.84-27.52 25.41-27.52 9.58 0 19.55 10.8 25.78 28.52 15.23 43.36 48.11 70.3 85.8 70.3H496c8.84 0 16-7.16 16-16v-32c0-8.86-7.16-16.02-16-16.02z"] }; +var faSitemap = { prefix: 'fas', iconName: 'sitemap', icon: [640, 512, [], "f0e8", "M128 352H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm-24-80h192v48h48v-48h192v48h48v-57.59c0-21.17-17.23-38.41-38.41-38.41H344v-64h40c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H256c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h40v64H94.41C73.23 224 56 241.23 56 262.41V320h48v-48zm264 80h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm240 0h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"] }; +var faSkull = { prefix: 'fas', iconName: 'skull', icon: [512, 512, [], "f54c", "M256 0C114.6 0 0 100.3 0 224c0 70.1 36.9 132.6 94.5 173.7 9.6 6.9 15.2 18.1 13.5 29.9l-9.4 66.2c-1.4 9.6 6 18.2 15.7 18.2H192v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h64v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h77.7c9.7 0 17.1-8.6 15.7-18.2l-9.4-66.2c-1.7-11.7 3.8-23 13.5-29.9C475.1 356.6 512 294.1 512 224 512 100.3 397.4 0 256 0zm-96 320c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm192 0c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64z"] }; +var faSlidersH = { prefix: 'fas', iconName: 'sliders-h', icon: [512, 512, [], "f1de", "M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z"] }; +var faSmile = { prefix: 'fas', iconName: 'smile', icon: [496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.6-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.4-16.2 38.1 4.2 24.6 20.5z"] }; +var faSmileBeam = { prefix: 'fas', iconName: 'smile-beam', icon: [496, 512, [], "f5b8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM112 223.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zm250.8 122.8C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.3 24.6 20.5zm6.2-118.3l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.6 8.6-11 11.9-15.1 4.5z"] }; +var faSmileWink = { prefix: 'fas', iconName: 'smile-wink', icon: [496, 512, [], "f4da", "M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm158.5 16.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.7 11.1-11.4 18.3-19.8 10.8l-9.7-8.5zM157.8 325.8C180.2 352.7 213 368 248 368s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.2 24.6 20.5C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11.2-36.7 24.6-20.4z"] }; +var faSmoking = { prefix: 'fas', iconName: 'smoking', icon: [640, 512, [], "f48d", "M632 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8zM553.3 87.1c-5.7-3.8-9.3-10-9.3-16.8V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v62.3c0 22 10.2 43.4 28.6 55.4 42.2 27.3 67.4 73.8 67.4 124V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-65.5-32.4-126.2-86.7-162.6zM432 352H48c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h384c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zm-32 112H224v-64h176v64zm87.7-322.4C463.8 125 448 99.3 448 70.3V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v66.4c0 43.7 24.6 81.6 60.3 106.7 22.4 15.7 35.7 41.2 35.7 68.6V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-43.3-21-83.4-56.3-108.1zM536 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8z"] }; +var faSmokingBan = { prefix: 'fas', iconName: 'smoking-ban', icon: [512, 512, [], "f54d", "M96 304c0 8.8 7.2 16 16 16h117.5l-96-96H112c-8.8 0-16 7.2-16 16v64zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 448c-105.9 0-192-86.1-192-192 0-41.4 13.3-79.7 35.7-111.1l267.4 267.4C335.7 434.7 297.4 448 256 448zm45.2-192H384v32h-50.8l-32-32zm111.1 111.1L365.2 320H400c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16H269.2L144.9 99.7C176.3 77.3 214.6 64 256 64c105.9 0 192 86.1 192 192 0 41.4-13.3 79.7-35.7 111.1zM320.6 128c-15.6 0-28.6-11.2-31.4-25.9-.7-3.6-4-6.1-7.7-6.1h-16.2c-5 0-8.7 4.5-8 9.4 4.6 30.9 31.2 54.6 63.3 54.6 15.6 0 28.6 11.2 31.4 25.9.7 3.6 4 6.1 7.7 6.1h16.2c5 0 8.7-4.5 8-9.4-4.6-30.9-31.2-54.6-63.3-54.6z"] }; +var faSnowflake = { prefix: 'fas', iconName: 'snowflake', icon: [448, 512, [], "f2dc", "M444.816 301.639a24.12 24.12 0 0 0 2.661-16.978c-2.725-12.966-15.339-21.245-28.174-18.492l-87.407 25.046L264 256l67.896-35.215 87.407 25.046c12.835 2.753 25.449-5.526 28.174-18.492 2.725-12.966-5.471-25.708-18.305-28.461l-47.477-7.137 53.077-30.956c11.363-6.627 15.257-21.306 8.696-32.785-6.561-11.479-21.091-15.412-32.454-8.785l-53.077 30.956 17.621-45.104c4.057-12.606-2.768-26.146-15.247-30.245-12.478-4.099-25.883 2.797-29.94 15.402l-22.232 88.99-60.38 35.215V144l65.175-63.945c8.778-9.852 7.987-25.027-1.766-33.894-9.753-8.867-24.775-8.068-33.552 1.784l-29.857 37.967V24c0-13.255-10.637-24-23.758-24s-23.758 10.745-23.758 24v61.912l-29.857-37.967c-8.779-9.852-23.799-10.652-33.552-1.784-9.753 8.867-10.543 24.042-1.766 33.894L200.242 144v70.431l-60.38-35.215-22.232-88.99c-4.057-12.605-17.462-19.501-29.94-15.402-12.478 4.099-19.304 17.64-15.247 30.245l17.62 45.104-53.077-30.956c-11.363-6.627-25.893-2.694-32.454 8.785s-2.667 26.157 8.696 32.785l53.077 30.956-47.477 7.137C5.993 201.634-2.203 214.375.523 227.341c2.725 12.965 15.339 21.245 28.174 18.492l87.407-25.046L184 256l-67.896 35.215-87.406-25.045c-12.835-2.753-25.449 5.526-28.174 18.492-2.725 12.967 5.47 25.708 18.305 28.461l47.477 7.137-53.077 30.956C1.866 357.843-2.027 372.521 4.533 384s21.091 15.412 32.454 8.785l53.077-30.956-17.62 45.104a24.157 24.157 0 0 0 2.022 19.428c2.831 4.953 7.416 8.909 13.224 10.816 12.478 4.099 25.883-2.797 29.94-15.402l22.232-88.99 60.38-35.215V368l-65.175 63.945c-8.778 9.852-7.987 25.027 1.766 33.894 9.754 8.868 24.774 8.068 33.552-1.784l29.857-37.967V488c0 13.255 10.637 24 23.758 24s23.758-10.745 23.758-24v-61.912l29.857 37.967A23.59 23.59 0 0 0 295.282 472a23.534 23.534 0 0 0 15.885-6.161c9.753-8.867 10.544-24.042 1.766-33.894L247.758 368v-70.431l60.38 35.215 22.232 88.99c4.057 12.605 17.462 19.501 29.94 15.402 12.479-4.099 19.304-17.64 15.247-30.245l-17.621-45.104 53.077 30.956c11.363 6.627 25.893 2.694 32.454-8.785s2.667-26.157-8.696-32.785l-53.077-30.956 47.477-7.137c6.86-1.469 12.394-5.793 15.645-11.481z"] }; +var faSolarPanel = { prefix: 'fas', iconName: 'solar-panel', icon: [640, 512, [], "f5ba", "M431.98 448.01l-47.97.05V416h-128v32.21l-47.98.05c-8.82.01-15.97 7.16-15.98 15.99l-.05 31.73c-.01 8.85 7.17 16.03 16.02 16.02l223.96-.26c8.82-.01 15.97-7.16 15.98-15.98l.04-31.73c.01-8.85-7.17-16.03-16.02-16.02zM585.2 26.74C582.58 11.31 568.99 0 553.06 0H86.93C71 0 57.41 11.31 54.79 26.74-3.32 369.16.04 348.08.03 352c-.03 17.32 14.29 32 32.6 32h574.74c18.23 0 32.51-14.56 32.59-31.79.02-4.08 3.35 16.95-54.76-325.47zM259.83 64h120.33l9.77 96H250.06l9.77-96zm-75.17 256H71.09L90.1 208h105.97l-11.41 112zm16.29-160H98.24l16.29-96h96.19l-9.77 96zm32.82 160l11.4-112h149.65l11.4 112H233.77zm195.5-256h96.19l16.29 96H439.04l-9.77-96zm26.06 256l-11.4-112H549.9l19.01 112H455.33z"] }; +var faSort = { prefix: 'fas', iconName: 'sort', icon: [320, 512, [], "f0dc", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z"] }; +var faSortAlphaDown = { prefix: 'fas', iconName: 'sort-alpha-down', icon: [448, 512, [], "f15d", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zm119.075-180.007A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z"] }; +var faSortAlphaUp = { prefix: 'fas', iconName: 'sort-alpha-up', icon: [448, 512, [], "f15e", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zm301.671 98.621A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z"] }; +var faSortAmountDown = { prefix: 'fas', iconName: 'sort-amount-down', icon: [512, 512, [], "f160", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z"] }; +var faSortAmountUp = { prefix: 'fas', iconName: 'sort-amount-up', icon: [512, 512, [], "f161", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z"] }; +var faSortDown = { prefix: 'fas', iconName: 'sort-down', icon: [320, 512, [], "f0dd", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z"] }; +var faSortNumericDown = { prefix: 'fas', iconName: 'sort-numeric-down', icon: [448, 512, [], "f162", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM175.984 368H128V48c0-8.837-7.163-16-16-16H80c-8.837 0-16 7.163-16 16v320H16.019c-14.212 0-21.384 17.244-11.314 27.314l79.981 80.002c6.245 6.245 16.38 6.247 22.627 0l79.984-80.002c10.05-10.05 2.928-27.314-11.313-27.314z"] }; +var faSortNumericUp = { prefix: 'fas', iconName: 'sort-numeric-up', icon: [448, 512, [], "f163", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM16.016 144H64v320c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144h47.981c14.212 0 21.384-17.244 11.314-27.314l-79.981-80.002c-6.245-6.245-16.38-6.247-22.627 0L4.702 116.686C-5.347 126.736 1.775 144 16.016 144z"] }; +var faSortUp = { prefix: 'fas', iconName: 'sort-up', icon: [320, 512, [], "f0de", "M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z"] }; +var faSpa = { prefix: 'fas', iconName: 'spa', icon: [576, 512, [], "f5bb", "M568.25 192c-29.04.13-135.01 6.16-213.84 83-33.12 29.63-53.36 63.3-66.41 94.86-13.05-31.56-33.29-65.23-66.41-94.86-78.83-76.84-184.8-82.87-213.84-83-4.41-.02-7.79 3.4-7.75 7.82.23 27.92 7.14 126.14 88.77 199.3C172.79 480.94 256 480 288 480s115.19.95 199.23-80.88c81.64-73.17 88.54-171.38 88.77-199.3.04-4.42-3.34-7.84-7.75-7.82zM287.98 302.6c12.82-18.85 27.6-35.78 44.09-50.52 19.09-18.61 39.58-33.3 60.26-45.18-16.44-70.5-51.72-133.05-96.73-172.22-4.11-3.58-11.02-3.58-15.14 0-44.99 39.14-80.27 101.63-96.74 172.07 20.37 11.7 40.5 26.14 59.22 44.39a282.768 282.768 0 0 1 45.04 51.46z"] }; +var faSpaceShuttle = { prefix: 'fas', iconName: 'space-shuttle', icon: [640, 512, [], "f197", "M592.604 208.244C559.735 192.836 515.777 184 472 184H186.327c-4.952-6.555-10.585-11.978-16.72-16H376C229.157 137.747 219.403 32 96.003 32H96v128H80V32c-26.51 0-48 28.654-48 64v64c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v16c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v64c0 35.346 21.49 64 48 64V352h16v128h.003c123.4 0 133.154-105.747 279.997-136H169.606c6.135-4.022 11.768-9.445 16.72-16H472c43.777 0 87.735-8.836 120.604-24.244C622.282 289.845 640 271.992 640 256s-17.718-33.845-47.396-47.756zM488 296a8 8 0 0 1-8-8v-64a8 8 0 0 1 8-8c31.909 0 31.942 80 0 80z"] }; +var faSpinner = { prefix: 'fas', iconName: 'spinner', icon: [512, 512, [], "f110", "M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z"] }; +var faSplotch = { prefix: 'fas', iconName: 'splotch', icon: [512, 512, [], "f5bc", "M472.29 195.89l-67.06-22.95c-19.28-6.6-33.54-20.92-38.14-38.3L351.1 74.19c-11.58-43.77-76.57-57.13-109.98-22.62l-46.14 47.67c-13.26 13.71-33.54 20.93-54.2 19.31l-71.88-5.62c-52.05-4.07-86.93 44.88-59.03 82.83l38.54 52.42c11.08 15.07 12.82 33.86 4.64 50.24L24.62 355.4c-20.59 41.25 22.84 84.87 73.49 73.81l69.96-15.28c20.11-4.39 41.45 0 57.07 11.73l54.32 40.83c39.32 29.56 101.04 7.57 104.45-37.22l4.7-61.86c1.35-17.79 12.8-33.86 30.63-42.99l62-31.74c44.88-22.96 39.59-80.17-8.95-96.79z"] }; +var faSprayCan = { prefix: 'fas', iconName: 'spray-can', icon: [512, 512, [], "f5bd", "M224 32c0-17.67-14.33-32-32-32h-64c-17.67 0-32 14.33-32 32v96h128V32zm256 96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-256 32H96c-53.02 0-96 42.98-96 96v224c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V256c0-53.02-42.98-96-96-96zm-64 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zM480 96c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm-96 32c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-96-96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 0c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 192c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z"] }; +var faSquare = { prefix: 'fas', iconName: 'square', icon: [448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"] }; +var faSquareFull = { prefix: 'fas', iconName: 'square-full', icon: [512, 512, [], "f45c", "M512 512H0V0h512v512z"] }; +var faStamp = { prefix: 'fas', iconName: 'stamp', icon: [512, 512, [], "f5bf", "M32 512h448v-64H32v64zm384-256h-66.56c-16.26 0-29.44-13.18-29.44-29.44v-9.46c0-27.37 8.88-53.41 21.46-77.72 9.11-17.61 12.9-38.39 9.05-60.42-6.77-38.78-38.47-70.7-77.26-77.45C212.62-9.04 160 37.33 160 96c0 14.16 3.12 27.54 8.69 39.58C182.02 164.43 192 194.7 192 226.49v.07c0 16.26-13.18 29.44-29.44 29.44H96c-53.02 0-96 42.98-96 96v32c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-32c0-53.02-42.98-96-96-96z"] }; +var faStar = { prefix: 'fas', iconName: 'star', icon: [576, 512, [], "f005", "M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z"] }; +var faStarHalf = { prefix: 'fas', iconName: 'star-half', icon: [576, 512, [], "f089", "M288 0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6V0z"] }; +var faStarHalfAlt = { prefix: 'fas', iconName: 'star-half-alt', icon: [536, 512, [], "f5c0", "M508.55 171.51L362.18 150.2 296.77 17.81C290.89 5.98 279.42 0 267.95 0c-11.4 0-22.79 5.9-28.69 17.81l-65.43 132.38-146.38 21.29c-26.25 3.8-36.77 36.09-17.74 54.59l105.89 103-25.06 145.48C86.98 495.33 103.57 512 122.15 512c4.93 0 10-1.17 14.87-3.75l130.95-68.68 130.94 68.7c4.86 2.55 9.92 3.71 14.83 3.71 18.6 0 35.22-16.61 31.66-37.4l-25.03-145.49 105.91-102.98c19.04-18.5 8.52-50.8-17.73-54.6zm-121.74 123.2l-18.12 17.62 4.28 24.88 19.52 113.45-102.13-53.59-22.38-11.74.03-317.19 51.03 103.29 11.18 22.63 25.01 3.64 114.23 16.63-82.65 80.38z"] }; +var faStepBackward = { prefix: 'fas', iconName: 'step-backward', icon: [448, 512, [], "f048", "M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z"] }; +var faStepForward = { prefix: 'fas', iconName: 'step-forward', icon: [448, 512, [], "f051", "M384 44v424c0 6.6-5.4 12-12 12h-48c-6.6 0-12-5.4-12-12V291.6l-195.5 181C95.9 489.7 64 475.4 64 448V64c0-27.4 31.9-41.7 52.5-24.6L312 219.3V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12z"] }; +var faStethoscope = { prefix: 'fas', iconName: 'stethoscope', icon: [512, 512, [], "f0f1", "M447.1 112c-34.2.5-62.3 28.4-63 62.6-.5 24.3 12.5 45.6 32 56.8V344c0 57.3-50.2 104-112 104-60 0-109.2-44.1-111.9-99.2C265 333.8 320 269.2 320 192V36.6c0-11.4-8.1-21.3-19.3-23.5L237.8.5c-13-2.6-25.6 5.8-28.2 18.8L206.4 35c-2.6 13 5.8 25.6 18.8 28.2l30.7 6.1v121.4c0 52.9-42.2 96.7-95.1 97.2-53.4.5-96.9-42.7-96.9-96V69.4l30.7-6.1c13-2.6 21.4-15.2 18.8-28.2l-3.1-15.7C107.7 6.4 95.1-2 82.1.6L19.3 13C8.1 15.3 0 25.1 0 36.6V192c0 77.3 55.1 142 128.1 156.8C130.7 439.2 208.6 512 304 512c97 0 176-75.4 176-168V231.4c19.1-11.1 32-31.7 32-55.4 0-35.7-29.2-64.5-64.9-64zm.9 80c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"] }; +var faStickyNote = { prefix: 'fas', iconName: 'sticky-note', icon: [448, 512, [], "f249", "M312 320h136V56c0-13.3-10.7-24-24-24H24C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h264V344c0-13.2 10.8-24 24-24zm129 55l-98 98c-4.5 4.5-10.6 7-17 7h-6V352h128v6.1c0 6.3-2.5 12.4-7 16.9z"] }; +var faStop = { prefix: 'fas', iconName: 'stop', icon: [448, 512, [], "f04d", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"] }; +var faStopCircle = { prefix: 'fas', iconName: 'stop-circle', icon: [512, 512, [], "f28d", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z"] }; +var faStopwatch = { prefix: 'fas', iconName: 'stopwatch', icon: [448, 512, [], "f2f2", "M432 304c0 114.9-93.1 208-208 208S16 418.9 16 304c0-104 76.3-190.2 176-205.5V64h-28c-6.6 0-12-5.4-12-12V12c0-6.6 5.4-12 12-12h120c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-28v34.5c37.5 5.8 71.7 21.6 99.7 44.6l27.5-27.5c4.7-4.7 12.3-4.7 17 0l28.3 28.3c4.7 4.7 4.7 12.3 0 17l-29.4 29.4-.6.6C419.7 223.3 432 262.2 432 304zm-176 36V188.5c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12V340c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"] }; +var faStore = { prefix: 'fas', iconName: 'store', icon: [616, 512, [], "f54e", "M602 118.6L537.1 15C531.3 5.7 521 0 510 0H106C95 0 84.7 5.7 78.9 15L14 118.6c-33.5 53.5-3.8 127.9 58.8 136.4 4.5.6 9.1.9 13.7.9 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18.1 20.1 44.3 33.1 73.8 33.1 4.7 0 9.2-.3 13.7-.9 62.8-8.4 92.6-82.8 59-136.4zM529.5 288c-10 0-19.9-1.5-29.5-3.8V384H116v-99.8c-9.6 2.2-19.5 3.8-29.5 3.8-6 0-12.1-.4-18-1.2-5.6-.8-11.1-2.1-16.4-3.6V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V283.2c-5.4 1.6-10.8 2.9-16.4 3.6-6.1.8-12.1 1.2-18.2 1.2z"] }; +var faStoreAlt = { prefix: 'fas', iconName: 'store-alt', icon: [640, 512, [], "f54f", "M320 384H128V224H64v256c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V224h-64v160zm314.6-241.8l-85.3-128c-6-8.9-16-14.2-26.7-14.2H117.4c-10.7 0-20.7 5.3-26.6 14.2l-85.3 128c-14.2 21.3 1 49.8 26.6 49.8H608c25.5 0 40.7-28.5 26.6-49.8zM512 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h-64v272z"] }; +var faStream = { prefix: 'fas', iconName: 'stream', icon: [512, 512, [], "f550", "M16 128h416c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H16C7.16 32 0 39.16 0 48v64c0 8.84 7.16 16 16 16zm480 80H80c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm-64 176H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16z"] }; +var faStreetView = { prefix: 'fas', iconName: 'street-view', icon: [512, 512, [], "f21d", "M192 64c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zm112 80h-11.36c-22.711 10.443-49.59 10.894-73.28 0H208c-26.51 0-48 21.49-48 48v104c0 13.255 10.745 24 24 24h16v104c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V320h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48zm85.642 189.152a72.503 72.503 0 0 1-29.01 27.009C391.133 365.251 480 385.854 480 416c0 46.304-167.656 64-224 64-70.303 0-224-20.859-224-64 0-30.123 88.361-50.665 119.367-55.839a72.516 72.516 0 0 1-29.01-27.009C74.959 343.395 0 367.599 0 416c0 77.111 178.658 96 256 96 77.249 0 256-18.865 256-96 0-48.403-74.967-72.606-122.358-82.848z"] }; +var faStrikethrough = { prefix: 'fas', iconName: 'strikethrough', icon: [512, 512, [], "f0cc", "M496 288H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h480c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16zm-214.666 16c27.258 12.937 46.524 28.683 46.524 56.243 0 33.108-28.977 53.676-75.621 53.676-32.325 0-76.874-12.08-76.874-44.271V368c0-8.837-7.164-16-16-16H113.75c-8.836 0-16 7.163-16 16v19.204c0 66.845 77.717 101.82 154.487 101.82 88.578 0 162.013-45.438 162.013-134.424 0-19.815-3.618-36.417-10.143-50.6H281.334zm-30.952-96c-32.422-13.505-56.836-28.946-56.836-59.683 0-33.92 30.901-47.406 64.962-47.406 42.647 0 64.962 16.593 64.962 32.985V136c0 8.837 7.164 16 16 16h45.613c8.836 0 16-7.163 16-16v-30.318c0-52.438-71.725-79.875-142.575-79.875-85.203 0-150.726 40.972-150.726 125.646 0 22.71 4.665 41.176 12.777 56.547h129.823z"] }; +var faStroopwafel = { prefix: 'fas', iconName: 'stroopwafel', icon: [512, 512, [], "f551", "M188.12 210.74L142.86 256l45.25 45.25L233.37 256l-45.25-45.26zm113.13-22.62L256 142.86l-45.25 45.25L256 233.37l45.25-45.25zm-90.5 135.76L256 369.14l45.26-45.26L256 278.63l-45.25 45.25zM256 0C114.62 0 0 114.62 0 256s114.62 256 256 256 256-114.62 256-256S397.38 0 256 0zm186.68 295.6l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-28.29-28.29-45.25 45.25 33.94 33.94 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-33.94-33.94-45.26 45.26 28.29 28.29c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0L256 414.39l-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l28.29-28.29-45.25-45.26-33.94 33.94 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 33.94-33.94-45.25-45.25-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0L69.32 295.6c-3.12-3.12-3.12-8.19 0-11.31L97.61 256l-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l28.29 28.29 45.25-45.26-33.94-33.94-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 33.94 33.94 45.26-45.25-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0L256 97.61l28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-28.29 28.29 45.26 45.25 33.94-33.94-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-33.94 33.94 45.25 45.26 28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31L414.39 256l28.29 28.28a8.015 8.015 0 0 1 0 11.32zM278.63 256l45.26 45.25L369.14 256l-45.25-45.26L278.63 256z"] }; +var faSubscript = { prefix: 'fas', iconName: 'subscript', icon: [512, 512, [], "f12c", "M395.198 416c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 256c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 96H16C7.163 96 0 88.837 0 80V48c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035A15.999 15.999 0 0 1 204.226 32H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 256H272z"] }; +var faSubway = { prefix: 'fas', iconName: 'subway', icon: [448, 512, [], "f239", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zM200 232V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm200 0V120c0-13.255-10.745-24-24-24H272c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm-48 56c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm-256 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"] }; +var faSuitcase = { prefix: 'fas', iconName: 'suitcase', icon: [512, 512, [], "f0f2", "M128 480h256V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v400zm64-384h128v32H192V96zm320 80v256c0 26.5-21.5 48-48 48h-48V128h48c26.5 0 48 21.5 48 48zM96 480H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h48v352z"] }; +var faSuitcaseRolling = { prefix: 'fas', iconName: 'suitcase-rolling', icon: [384, 512, [], "f5c1", "M336 160H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h16v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h128v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h16c26.51 0 48-21.49 48-48V208c0-26.51-21.49-48-48-48zm-16 216c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zM144 48h96v80h48V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v80h48V48z"] }; +var faSun = { prefix: 'fas', iconName: 'sun', icon: [512, 512, [], "f185", "M274.835 12.646l25.516 62.393c4.213 10.301 16.671 14.349 26.134 8.492l57.316-35.479c15.49-9.588 34.808 4.447 30.475 22.142l-16.03 65.475c-2.647 10.81 5.053 21.408 16.152 22.231l67.224 4.987c18.167 1.348 25.546 24.057 11.641 35.826L441.81 242.26c-8.495 7.19-8.495 20.289 0 27.479l51.454 43.548c13.906 11.769 6.527 34.478-11.641 35.826l-67.224 4.987c-11.099.823-18.799 11.421-16.152 22.231l16.03 65.475c4.332 17.695-14.986 31.73-30.475 22.142l-57.316-35.479c-9.463-5.858-21.922-1.81-26.134 8.492l-25.516 62.393c-6.896 16.862-30.774 16.862-37.67 0l-25.516-62.393c-4.213-10.301-16.671-14.349-26.134-8.492l-57.317 35.479c-15.49 9.588-34.808-4.447-30.475-22.142l16.03-65.475c2.647-10.81-5.053-21.408-16.152-22.231l-67.224-4.987c-18.167-1.348-25.546-24.057-11.641-35.826L70.19 269.74c8.495-7.19 8.495-20.289 0-27.479l-51.454-43.548c-13.906-11.769-6.527-34.478 11.641-35.826l67.224-4.987c11.099-.823 18.799-11.421 16.152-22.231l-16.03-65.475c-4.332-17.695 14.986-31.73 30.475-22.142l57.317 35.479c9.463 5.858 21.921 1.81 26.134-8.492l25.516-62.393c6.896-16.861 30.774-16.861 37.67 0zM392 256c0-74.991-61.01-136-136-136-74.991 0-136 61.009-136 136s61.009 136 136 136c74.99 0 136-61.009 136-136zm-32 0c0 57.346-46.654 104-104 104s-104-46.654-104-104 46.654-104 104-104 104 46.654 104 104z"] }; +var faSuperscript = { prefix: 'fas', iconName: 'superscript', icon: [512, 512, [], "f12b", "M395.198 256c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 256H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035a16 16 0 0 1 13.598-7.567H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 416H272z"] }; +var faSurprise = { prefix: 'fas', iconName: 'surprise', icon: [496, 512, [], "f5c2", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm112 208c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm80-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faSwatchbook = { prefix: 'fas', iconName: 'swatchbook', icon: [511, 512, [], "f5c3", "M479.06 320H372.29L186.15 506.51c-2.06 2.07-4.49 3.58-6.67 5.49h299.58c17.64 0 31.94-14.33 31.94-32V352c0-17.67-14.3-32-31.94-32zm-44.5-152.9l-90.33-90.51c-12.47-12.5-32.69-12.5-45.17 0l-75.5 75.65V416c0 2.96-.67 5.73-.87 8.64l211.87-212.28c12.47-12.5 12.47-32.77 0-45.26zM191.62 32c0-17.67-14.3-32-31.94-32H31.94C14.3 0 0 14.33 0 32v384c0 53.02 42.9 96 95.81 96s95.81-42.98 95.81-96V32zM95.81 440c-13.23 0-23.95-10.75-23.95-24 0-13.26 10.73-24 23.95-24s23.95 10.74 23.95 24c.01 13.25-10.72 24-23.95 24zm31.94-184H63.88v-64h63.88v64zm0-128H63.88V64h63.88v64z"] }; +var faSwimmer = { prefix: 'fas', iconName: 'swimmer', icon: [640, 512, [], "f5c4", "M189.61 310.58c3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c16.02-14.77 34.5-22.58 53.46-22.58h16.3c18.96 0 37.45 7.81 53.46 22.58 3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c14.86-13.71 31.88-21.12 49.39-22.16l-112.84-80.6 18-12.86c3.64-2.58 8.28-3.52 12.62-2.61l100.35 21.53c25.91 5.53 51.44-10.97 57-36.88 5.55-25.92-10.95-51.44-36.88-57L437.68 98.47c-30.73-6.58-63.02.12-88.56 18.38l-80.02 57.17c-10.38 7.39-19.36 16.44-26.72 26.94L173.75 299c5.47 3.23 10.82 6.93 15.86 11.58zM624 352h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 343.58 442.04 352 416 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 343.58 250.04 352 224 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 343.58 58.04 352 32 352H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-512-96c44.18 0 80-35.82 80-80s-35.82-80-80-80-80 35.82-80 80 35.82 80 80 80z"] }; +var faSwimmingPool = { prefix: 'fas', iconName: 'swimming-pool', icon: [640, 512, [], "f5c5", "M624 416h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 407.58 442.04 416 416 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 407.58 250.04 416 224 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 407.58 58.04 416 32 416H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-400-32v-96h192v96c19.12 0 30.86-6.16 34.39-9.42 9.17-8.46 19.2-14.34 29.61-18.07V128c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v96H224v-96c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v228.5c10.41 3.73 20.44 9.62 29.61 18.07 3.53 3.27 15.27 9.43 34.39 9.43z"] }; +var faSync = { prefix: 'fas', iconName: 'sync', icon: [512, 512, [], "f021", "M440.935 12.574l3.966 82.766C399.416 41.904 331.674 8 256 8 134.813 8 33.933 94.924 12.296 209.824 10.908 217.193 16.604 224 24.103 224h49.084c5.57 0 10.377-3.842 11.676-9.259C103.407 137.408 172.931 80 256 80c60.893 0 114.512 30.856 146.104 77.801l-101.53-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12h-47.411c-6.853 0-12.315 5.729-11.987 12.574zM256 432c-60.895 0-114.517-30.858-146.109-77.805l101.868 4.871c6.845.327 12.573-5.134 12.573-11.986v-47.412c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12V500c0 6.627 5.373 12 12 12h47.385c6.863 0 12.328-5.745 11.985-12.599l-4.129-82.575C112.725 470.166 180.405 504 256 504c121.187 0 222.067-86.924 243.704-201.824 1.388-7.369-4.308-14.176-11.807-14.176h-49.084c-5.57 0-10.377 3.842-11.676 9.259C408.593 374.592 339.069 432 256 432z"] }; +var faSyncAlt = { prefix: 'fas', iconName: 'sync-alt', icon: [512, 512, [], "f2f1", "M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z"] }; +var faSyringe = { prefix: 'fas', iconName: 'syringe', icon: [512, 512, [], "f48e", "M201.5 174.8l55.7 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-55.7-55.8-45.3 45.3 55.8 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L111 265.2l-26.4 26.4c-17.3 17.3-25.6 41.1-23 65.4l7.1 63.6L2.3 487c-3.1 3.1-3.1 8.2 0 11.3l11.3 11.3c3.1 3.1 8.2 3.1 11.3 0l66.3-66.3 63.6 7.1c23.9 2.6 47.9-5.4 65.4-23l181.9-181.9-135.7-135.7-64.9 65zm308.2-93.3L430.5 2.3c-3.1-3.1-8.2-3.1-11.3 0l-11.3 11.3c-3.1 3.1-3.1 8.2 0 11.3l28.3 28.3-45.3 45.3-56.6-56.6-17-17c-3.1-3.1-8.2-3.1-11.3 0l-33.9 33.9c-3.1 3.1-3.1 8.2 0 11.3l17 17L424.8 223l17 17c3.1 3.1 8.2 3.1 11.3 0l33.9-34c3.1-3.1 3.1-8.2 0-11.3l-73.5-73.5 45.3-45.3 28.3 28.3c3.1 3.1 8.2 3.1 11.3 0l11.3-11.3c3.1-3.2 3.1-8.2 0-11.4z"] }; +var faTable = { prefix: 'fas', iconName: 'table', icon: [512, 512, [], "f0ce", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64v-96h160v96zm0-160H64v-96h160v96zm224 160H288v-96h160v96zm0-160H288v-96h160v96z"] }; +var faTableTennis = { prefix: 'fas', iconName: 'table-tennis', icon: [512, 512, [], "f45d", "M496.2 296.5C527.7 218.7 512 126.2 449 63.1 365.1-21 229-21 145.1 63.1l-56 56.1 211.5 211.5c46.1-62.1 131.5-77.4 195.6-34.2zm-217.9 79.7L57.9 155.9c-27.3 45.3-21.7 105 17.3 144.1l34.5 34.6L6.7 424c-8.6 7.5-9.1 20.7-1 28.8l53.4 53.5c8 8.1 21.2 7.6 28.7-1L177.1 402l35.7 35.7c19.7 19.7 44.6 30.5 70.3 33.3-7.1-17-11-35.6-11-55.1-.1-13.8 2.5-27 6.2-39.7zM416 320c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96z"] }; +var faTablet = { prefix: 'fas', iconName: 'tablet', icon: [448, 512, [], "f10a", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"] }; +var faTabletAlt = { prefix: 'fas', iconName: 'tablet-alt', icon: [448, 512, [], "f3fa", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm176-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h328c6.6 0 12 5.4 12 12v312z"] }; +var faTablets = { prefix: 'fas', iconName: 'tablets', icon: [640, 512, [], "f490", "M160 192C78.9 192 12.5 250.5.1 326.7c-.8 4.8 3.3 9.3 8.3 9.3h303.3c5 0 9.1-4.5 8.3-9.3C307.5 250.5 241.1 192 160 192zm151.6 176H8.4c-5 0-9.1 4.5-8.3 9.3C12.5 453.5 78.9 512 160 512s147.5-58.5 159.9-134.7c.8-4.8-3.3-9.3-8.3-9.3zM593.4 46.6c-56.5-56.5-144.2-61.4-206.9-16-4 2.9-4.3 8.9-.8 12.3L597 254.3c3.5 3.5 9.5 3.2 12.3-.8 45.5-62.7 40.6-150.4-15.9-206.9zM363 65.7c-3.5-3.5-9.5-3.2-12.3.8-45.4 62.7-40.5 150.4 15.9 206.9 56.5 56.5 144.2 61.4 206.9 15.9 4-2.9 4.3-8.9.8-12.3L363 65.7z"] }; +var faTachometerAlt = { prefix: 'fas', iconName: 'tachometer-alt', icon: [576, 512, [], "f3fd", "M75.694 480a48.02 48.02 0 0 1-42.448-25.571C12.023 414.3 0 368.556 0 320 0 160.942 128.942 32 288 32s288 128.942 288 288c0 48.556-12.023 94.3-33.246 134.429A48.018 48.018 0 0 1 500.306 480H75.694zM512 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zM288 128c17.673 0 32-14.327 32-32 0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32zM64 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm65.608-158.392c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm316.784 0c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm-87.078 31.534c-12.627-4.04-26.133 2.92-30.173 15.544l-45.923 143.511C250.108 322.645 224 350.264 224 384c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64 0-19.773-8.971-37.447-23.061-49.187l45.919-143.498c4.039-12.625-2.92-26.133-15.544-30.173z"] }; +var faTag = { prefix: 'fas', iconName: 'tag', icon: [512, 512, [], "f02b", "M0 252.118V48C0 21.49 21.49 0 48 0h204.118a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882L293.823 497.941c-18.745 18.745-49.137 18.745-67.882 0L14.059 286.059A48 48 0 0 1 0 252.118zM112 64c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"] }; +var faTags = { prefix: 'fas', iconName: 'tags', icon: [640, 512, [], "f02c", "M497.941 225.941L286.059 14.059A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v204.118a48 48 0 0 0 14.059 33.941l211.882 211.882c18.744 18.745 49.136 18.746 67.882 0l204.118-204.118c18.745-18.745 18.745-49.137 0-67.882zM112 160c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm513.941 133.823L421.823 497.941c-18.745 18.745-49.137 18.745-67.882 0l-.36-.36L527.64 323.522c16.999-16.999 26.36-39.6 26.36-63.64s-9.362-46.641-26.36-63.64L331.397 0h48.721a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882z"] }; +var faTape = { prefix: 'fas', iconName: 'tape', icon: [640, 512, [], "f4db", "M224 192c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm400 224H380.6c41.5-40.7 67.4-97.3 67.4-160 0-123.7-100.3-224-224-224S0 132.3 0 256s100.3 224 224 224h400c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400-64c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96z"] }; +var faTasks = { prefix: 'fas', iconName: 'tasks', icon: [512, 512, [], "f0ae", "M208 132h288c8.8 0 16-7.2 16-16V76c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zM64 368c-26.5 0-48.6 21.5-48.6 48s22.1 48 48.6 48 48-21.5 48-48-21.5-48-48-48zm92.5-299l-72.2 72.2-15.6 15.6c-4.7 4.7-12.9 4.7-17.6 0L3.5 109.4c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.3c4.7-4.7 12.3-4.7 17 0l17 16.5c4.6 4.7 4.6 12.3-.1 17zm0 159.6l-72.2 72.2-15.7 15.7c-4.7 4.7-12.9 4.7-17.6 0L3.5 269c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.7c4.7-4.7 12.3-4.7 17 0l17 17c4.6 4.6 4.6 12.2-.1 16.9z"] }; +var faTaxi = { prefix: 'fas', iconName: 'taxi', icon: [512, 512, [], "f1ba", "M462 241.64l-22-84.84c-9.6-35.2-41.6-60.8-76.8-60.8H352V64c0-17.67-14.33-32-32-32H192c-17.67 0-32 14.33-32 32v32h-11.2c-35.2 0-67.2 25.6-76.8 60.8l-22 84.84C21.41 248.04 0 273.47 0 304v48c0 23.63 12.95 44.04 32 55.12V448c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-40.88c19.05-11.09 32-31.5 32-55.12v-48c0-30.53-21.41-55.96-50-62.36zM96 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm20.55-112l17.2-66.36c2.23-8.16 9.59-13.64 15.06-13.64h214.4c5.47 0 12.83 5.48 14.85 12.86L395.45 240h-278.9zM416 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faTerminal = { prefix: 'fas', iconName: 'terminal', icon: [640, 512, [], "f120", "M257.981 272.971L63.638 467.314c-9.373 9.373-24.569 9.373-33.941 0L7.029 444.647c-9.357-9.357-9.375-24.522-.04-33.901L161.011 256 6.99 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L257.981 239.03c9.373 9.372 9.373 24.568 0 33.941zM640 456v-32c0-13.255-10.745-24-24-24H312c-13.255 0-24 10.745-24 24v32c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z"] }; +var faTextHeight = { prefix: 'fas', iconName: 'text-height', icon: [576, 512, [], "f034", "M16 32h288c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96h-54.761v320H232c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H88c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm475.308 4.685l79.995 80.001C581.309 126.693 574.297 144 559.99 144H512v224h48c15.639 0 20.635 17.991 11.313 27.314l-79.995 80.001c-6.247 6.247-16.381 6.245-22.626 0l-79.995-80.001C378.691 385.307 385.703 368 400.01 368H448V144h-48c-15.639 0-20.635-17.991-11.313-27.314l79.995-80.001c6.247-6.248 16.381-6.245 22.626 0z"] }; +var faTextWidth = { prefix: 'fas', iconName: 'text-width', icon: [448, 512, [], "f035", "M16 32h416c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96H261.743v128H296c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H152c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm427.315 340.682l-80.001-79.995C353.991 283.365 336 288.362 336 304v48H112v-47.99c0-14.307-17.307-21.319-27.314-11.313L4.685 372.692c-6.245 6.245-6.247 16.379 0 22.626l80.001 79.995C94.009 484.635 112 479.638 112 464v-48h224v47.99c0 14.307 17.307 21.319 27.314 11.313l80.001-79.995c6.245-6.245 6.248-16.379 0-22.626z"] }; +var faTh = { prefix: 'fas', iconName: 'th', icon: [512, 512, [], "f00a", "M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z"] }; +var faThLarge = { prefix: 'fas', iconName: 'th-large', icon: [512, 512, [], "f009", "M296 32h192c13.255 0 24 10.745 24 24v160c0 13.255-10.745 24-24 24H296c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24zm-80 0H24C10.745 32 0 42.745 0 56v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zM0 296v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm296 184h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H296c-13.255 0-24 10.745-24 24v160c0 13.255 10.745 24 24 24z"] }; +var faThList = { prefix: 'fas', iconName: 'th-list', icon: [512, 512, [], "f00b", "M149.333 216v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zM125.333 32H24C10.745 32 0 42.745 0 56v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zm80 448H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm-24-424v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24zm24 264H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24z"] }; +var faThermometer = { prefix: 'fas', iconName: 'thermometer', icon: [512, 512, [], "f491", "M476.8 20.4c-37.5-30.7-95.5-26.3-131.9 10.2l-45.7 46 50.5 50.5c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.4-50.5-45.1 45.4 50.3 50.4c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L209 167.4l-45.1 45.4L214 263c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.1-50.2L96 281.1V382L7 471c-9.4 9.4-9.4 24.6 0 33.9 9.4 9.4 24.6 9.4 33.9 0l89-89h99.9L484 162.6c34.9-34.9 42.2-101.5-7.2-142.2z"] }; +var faThermometerEmpty = { prefix: 'fas', iconName: 'thermometer-empty', icon: [256, 512, [], "f2cb", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; +var faThermometerFull = { prefix: 'fas', iconName: 'thermometer-full', icon: [256, 512, [], "f2c7", "M224 96c0-53.019-42.981-96-96-96S32 42.981 32 96v203.347C12.225 321.756.166 351.136.002 383.333c-.359 70.303 56.787 128.176 127.089 128.664.299.002.61.003.909.003 70.698 0 128-57.304 128-128 0-32.459-12.088-62.09-32-84.653V96zm-96 368l-.576-.002c-43.86-.304-79.647-36.544-79.423-80.42.173-33.98 19.266-51.652 31.999-66.08V96c0-26.467 21.533-48 48-48s48 21.533 48 48v221.498c12.63 14.312 32 32.164 32 66.502 0 44.112-35.888 80-80 80zm64-80c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V96c0-17.673 14.327-32 32-32s32 14.327 32 32v232.583c19.124 11.068 32 31.732 32 55.417z"] }; +var faThermometerHalf = { prefix: 'fas', iconName: 'thermometer-half', icon: [256, 512, [], "f2c9", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V224c0-17.673 14.327-32 32-32s32 14.327 32 32v104.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; +var faThermometerQuarter = { prefix: 'fas', iconName: 'thermometer-quarter', icon: [256, 512, [], "f2ca", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V288c0-17.673 14.327-32 32-32s32 14.327 32 32v40.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; +var faThermometerThreeQuarters = { prefix: 'fas', iconName: 'thermometer-three-quarters', icon: [256, 512, [], "f2c8", "M192 384c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-23.685 12.876-44.349 32-55.417V160c0-17.673 14.327-32 32-32s32 14.327 32 32v168.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"] }; +var faThumbsDown = { prefix: 'fas', iconName: 'thumbs-down', icon: [512, 512, [], "f165", "M0 56v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56zm40 200c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24zm272 256c-20.183 0-29.485-39.293-33.931-57.795-5.206-21.666-10.589-44.07-25.393-58.902-32.469-32.524-49.503-73.967-89.117-113.111a11.98 11.98 0 0 1-3.558-8.521V59.901c0-6.541 5.243-11.878 11.783-11.998 15.831-.29 36.694-9.079 52.651-16.178C256.189 17.598 295.709.017 343.995 0h2.844c42.777 0 93.363.413 113.774 29.737 8.392 12.057 10.446 27.034 6.148 44.632 16.312 17.053 25.063 48.863 16.382 74.757 17.544 23.432 19.143 56.132 9.308 79.469l.11.11c11.893 11.949 19.523 31.259 19.439 49.197-.156 30.352-26.157 58.098-59.553 58.098H350.723C358.03 364.34 384 388.132 384 430.548 384 504 336 512 312 512z"] }; +var faThumbsUp = { prefix: 'fas', iconName: 'thumbs-up', icon: [512, 512, [], "f164", "M104 224H24c-13.255 0-24 10.745-24 24v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V248c0-13.255-10.745-24-24-24zM64 472c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zM384 81.452c0 42.416-25.97 66.208-33.277 94.548h101.723c33.397 0 59.397 27.746 59.553 58.098.084 17.938-7.546 37.249-19.439 49.197l-.11.11c9.836 23.337 8.237 56.037-9.308 79.469 8.681 25.895-.069 57.704-16.382 74.757 4.298 17.598 2.244 32.575-6.148 44.632C440.202 511.587 389.616 512 346.839 512l-2.845-.001c-48.287-.017-87.806-17.598-119.56-31.725-15.957-7.099-36.821-15.887-52.651-16.178-6.54-.12-11.783-5.457-11.783-11.998v-213.77c0-3.2 1.282-6.271 3.558-8.521 39.614-39.144 56.648-80.587 89.117-113.111 14.804-14.832 20.188-37.236 25.393-58.902C282.515 39.293 291.817 0 312 0c24 0 72 8 72 81.452z"] }; +var faThumbtack = { prefix: 'fas', iconName: 'thumbtack', icon: [384, 512, [], "f08d", "M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z"] }; +var faTicketAlt = { prefix: 'fas', iconName: 'ticket-alt', icon: [576, 512, [], "f3ff", "M128 160h320v192H128V160zm400 96c0 26.51 21.49 48 48 48v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c26.51 0 48-21.49 48-48s-21.49-48-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v96c-26.51 0-48 21.49-48 48zm-48-104c0-13.255-10.745-24-24-24H120c-13.255 0-24 10.745-24 24v208c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V152z"] }; +var faTimes = { prefix: 'fas', iconName: 'times', icon: [352, 512, [], "f00d", "M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"] }; +var faTimesCircle = { prefix: 'fas', iconName: 'times-circle', icon: [512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z"] }; +var faTint = { prefix: 'fas', iconName: 'tint', icon: [352, 512, [], "f043", "M205.22 22.09c-7.94-28.78-49.44-30.12-58.44 0C100.01 179.85 0 222.72 0 333.91 0 432.35 78.72 512 176 512s176-79.65 176-178.09c0-111.75-99.79-153.34-146.78-311.82zM176 448c-61.75 0-112-50.25-112-112 0-8.84 7.16-16 16-16s16 7.16 16 16c0 44.11 35.89 80 80 80 8.84 0 16 7.16 16 16s-7.16 16-16 16z"] }; +var faTintSlash = { prefix: 'fas', iconName: 'tint-slash', icon: [640, 512, [], "f5c7", "M633.82 458.1L494.97 350.78c.52-5.57 1.03-11.16 1.03-16.87 0-111.76-99.79-153.34-146.78-311.82-7.94-28.78-49.44-30.12-58.44 0-15.52 52.34-36.87 91.96-58.49 125.68L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM144 333.91C144 432.35 222.72 512 320 512c44.71 0 85.37-16.96 116.4-44.7L162.72 255.78c-11.41 23.5-18.72 48.35-18.72 78.13z"] }; +var faTired = { prefix: 'fas', iconName: 'tired', icon: [496, 512, [], "f5c8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 288c51.9 0 115.3 43.8 123.2 106.7 1.7 13.6-8 24.6-17.7 20.4-25.9-11.1-64.4-17.4-105.5-17.4s-79.6 6.3-105.5 17.4c-9.8 4.2-19.4-7-17.7-20.4C132.7 331.8 196.1 288 248 288z"] }; +var faToggleOff = { prefix: 'fas', iconName: 'toggle-off', icon: [576, 512, [], "f204", "M384 64H192C85.961 64 0 149.961 0 256s85.961 192 192 192h192c106.039 0 192-85.961 192-192S490.039 64 384 64zM64 256c0-70.741 57.249-128 128-128 70.741 0 128 57.249 128 128 0 70.741-57.249 128-128 128-70.741 0-128-57.249-128-128zm320 128h-48.905c65.217-72.858 65.236-183.12 0-256H384c70.741 0 128 57.249 128 128 0 70.74-57.249 128-128 128z"] }; +var faToggleOn = { prefix: 'fas', iconName: 'toggle-on', icon: [576, 512, [], "f205", "M576 256c0 106.039-85.961 192-192 192H192C85.961 448 0 362.039 0 256S85.961 64 192 64h192c106.039 0 192 85.961 192 192zM384 128c-70.741 0-128 57.249-128 128 0 70.741 57.249 128 128 128 70.741 0 128-57.249 128-128 0-70.741-57.249-128-128-128"] }; +var faToolbox = { prefix: 'fas', iconName: 'toolbox', icon: [512, 512, [], "f552", "M502.63 214.63l-45.25-45.25c-6-6-14.14-9.37-22.63-9.37H384V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v80H77.25c-8.49 0-16.62 3.37-22.63 9.37L9.37 214.63c-6 6-9.37 14.14-9.37 22.63V320h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-82.75c0-8.48-3.37-16.62-9.37-22.62zM320 160H192V96h128v64zm64 208c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H192v16c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H0v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96H384v16z"] }; +var faTooth = { prefix: 'fas', iconName: 'tooth', icon: [448, 512, [], "f5c9", "M443.98 96.25c-11.01-45.22-47.11-82.06-92.01-93.72-32.19-8.36-63 5.1-89.14 24.33-3.25 2.39-6.96 3.73-10.5 5.48l28.32 18.21c7.42 4.77 9.58 14.67 4.8 22.11-4.46 6.95-14.27 9.86-22.11 4.8L162.83 12.84c-20.7-10.85-43.38-16.4-66.81-10.31-44.9 11.67-81 48.5-92.01 93.72-10.13 41.62-.42 80.81 21.5 110.43 23.36 31.57 32.68 68.66 36.29 107.35 4.4 47.16 10.33 94.16 20.94 140.32l7.8 33.95c3.19 13.87 15.49 23.7 29.67 23.7 13.97 0 26.15-9.55 29.54-23.16l34.47-138.42c4.56-18.32 20.96-31.16 39.76-31.16s35.2 12.85 39.76 31.16l34.47 138.42c3.39 13.61 15.57 23.16 29.54 23.16 14.18 0 26.48-9.83 29.67-23.7l7.8-33.95c10.61-46.15 16.53-93.16 20.94-140.32 3.61-38.7 12.93-75.78 36.29-107.35 21.95-29.61 31.66-68.8 21.53-110.43z"] }; +var faTrademark = { prefix: 'fas', iconName: 'trademark', icon: [640, 512, [], "f25c", "M97.119 163.133H12c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h248.559c6.627 0 12 5.373 12 12v43.133c0 6.627-5.373 12-12 12H175.44V404c0 6.627-5.373 12-12 12h-54.322c-6.627 0-12-5.373-12-12V163.133zM329.825 96h65.425a12 12 0 0 1 11.346 8.093l43.759 127.068c7.161 20.588 16.111 52.812 16.111 52.812h.896s8.95-32.224 16.111-52.812l43.758-127.068A12 12 0 0 1 538.577 96h65.41a12 12 0 0 1 11.961 11.03l24.012 296c.567 6.987-4.951 12.97-11.961 12.97h-54.101a12 12 0 0 1-11.972-11.182l-9.082-132.93c-1.79-24.168 0-53.706 0-53.706h-.896s-10.741 33.566-17.902 53.706l-30.7 84.731a12 12 0 0 1-11.282 7.912h-50.302a12 12 0 0 1-11.282-7.912l-30.7-84.731c-7.161-20.14-17.903-53.706-17.903-53.706h-.895s1.79 29.538 0 53.706l-9.082 132.93c-.428 6.295-5.66 11.182-11.97 11.182H305.4c-7.017 0-12.536-5.994-11.959-12.987l24.425-296A11.999 11.999 0 0 1 329.825 96z"] }; +var faTrain = { prefix: 'fas', iconName: 'train', icon: [448, 512, [], "f238", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zm-48 136V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24zm-176 64c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56z"] }; +var faTransgender = { prefix: 'fas', iconName: 'transgender', icon: [384, 512, [], "f224", "M372 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C198.5 104.1 172.2 96 144 96 64.5 96 0 160.5 0 240c0 68.5 47.9 125.9 112 140.4V408H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM144 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faTransgenderAlt = { prefix: 'fas', iconName: 'transgender-alt', icon: [480, 512, [], "f225", "M468 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C294.5 104.1 268.2 96 240 96c-28.2 0-54.5 8.1-76.7 22.1l-16.5-16.5 19.8-19.8c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0l-19.8 19.8-19-19 16.9-16.9C107.1 12.9 101.7 0 91 0H12C5.4 0 0 5.4 0 12v79c0 10.7 12.9 16 20.5 8.5l16.9-16.9 19 19-19.8 19.8c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l19.8-19.8 16.5 16.5C104.1 185.5 96 211.8 96 240c0 68.5 47.9 125.9 112 140.4V408h-36c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM240 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faTrash = { prefix: 'fas', iconName: 'trash', icon: [448, 512, [], "f1f8", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm415.2 56.7L394.8 467c-1.6 25.3-22.6 45-47.9 45H101.1c-25.3 0-46.3-19.7-47.9-45L32.8 140.7c-.4-6.9 5.1-12.7 12-12.7h358.5c6.8 0 12.3 5.8 11.9 12.7z"] }; +var faTrashAlt = { prefix: 'fas', iconName: 'trash-alt', icon: [448, 512, [], "f2ed", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm416 56v324c0 26.5-21.5 48-48 48H80c-26.5 0-48-21.5-48-48V140c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12zm-272 68c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208z"] }; +var faTree = { prefix: 'fas', iconName: 'tree', icon: [384, 512, [], "f1bb", "M377.33 375.429L293.906 288H328c21.017 0 31.872-25.207 17.448-40.479L262.79 160H296c20.878 0 31.851-24.969 17.587-40.331l-104-112.003c-9.485-10.214-25.676-10.229-35.174 0l-104 112.003C56.206 134.969 67.037 160 88 160h33.21l-82.659 87.521C24.121 262.801 34.993 288 56 288h34.094L6.665 375.429C-7.869 390.655 2.925 416 24.025 416H144c0 32.781-11.188 49.26-33.995 67.506C98.225 492.93 104.914 512 120 512h144c15.086 0 21.776-19.069 9.995-28.494-19.768-15.814-33.992-31.665-33.995-67.496V416h119.97c21.05 0 31.929-25.309 17.36-40.571z"] }; +var faTrophy = { prefix: 'fas', iconName: 'trophy', icon: [576, 512, [], "f091", "M552 64H448V24c0-13.3-10.7-24-24-24H152c-13.3 0-24 10.7-24 24v40H24C10.7 64 0 74.7 0 88v56c0 35.7 22.5 72.4 61.9 100.7 31.5 22.7 69.8 37.1 110 41.7C203.3 338.5 240 360 240 360v72h-48c-35.3 0-64 20.7-64 56v12c0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12v-12c0-35.3-28.7-56-64-56h-48v-72s36.7-21.5 68.1-73.6c40.3-4.6 78.6-19 110-41.7 39.3-28.3 61.9-65 61.9-100.7V88c0-13.3-10.7-24-24-24zM99.3 192.8C74.9 175.2 64 155.6 64 144v-16h64.2c1 32.6 5.8 61.2 12.8 86.2-15.1-5.2-29.2-12.4-41.7-21.4zM512 144c0 16.1-17.7 36.1-35.3 48.8-12.5 9-26.7 16.2-41.8 21.4 7-25 11.8-53.6 12.8-86.2H512v16z"] }; +var faTruck = { prefix: 'fas', iconName: 'truck', icon: [640, 512, [], "f0d1", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"] }; +var faTruckLoading = { prefix: 'fas', iconName: 'truck-loading', icon: [640, 512, [], "f4de", "M50.2 375.6c2.3 8.5 11.1 13.6 19.6 11.3l216.4-58c8.5-2.3 13.6-11.1 11.3-19.6l-49.7-185.5c-2.3-8.5-11.1-13.6-19.6-11.3L151 133.3l24.8 92.7-61.8 16.5-24.8-92.7-77.3 20.7C3.4 172.8-1.7 181.6.6 190.1l49.6 185.5zM384 0c-17.7 0-32 14.3-32 32v323.6L5.9 450c-4.3 1.2-6.8 5.6-5.6 9.8l12.6 46.3c1.2 4.3 5.6 6.8 9.8 5.6l393.7-107.4C418.8 464.1 467.6 512 528 512c61.9 0 112-50.1 112-112V0H384zm144 448c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"] }; +var faTruckMoving = { prefix: 'fas', iconName: 'truck-moving', icon: [640, 512, [], "f4df", "M621.3 237.3l-58.5-58.5c-12-12-28.3-18.7-45.3-18.7H480V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v336c0 44.2 35.8 80 80 80 26.3 0 49.4-12.9 64-32.4 14.6 19.6 37.7 32.4 64 32.4 44.2 0 80-35.8 80-80 0-5.5-.6-10.8-1.6-16h163.2c-1.1 5.2-1.6 10.5-1.6 16 0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H624c8.8 0 16-7.2 16-16v-85.5c0-17-6.7-33.2-18.7-45.2zM80 432c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm128 0c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm272-224h37.5c4.3 0 8.3 1.7 11.3 4.7l43.3 43.3H480v-48zm48 224c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32z"] }; +var faTshirt = { prefix: 'fas', iconName: 'tshirt', icon: [640, 512, [], "f553", "M631.2 96.5L436.5 0C416.4 27.8 371.9 47.2 320 47.2S223.6 27.8 203.5 0L8.8 96.5c-7.9 4-11.1 13.6-7.2 21.5l57.2 114.5c4 7.9 13.6 11.1 21.5 7.2l56.6-27.7c10.6-5.2 23 2.5 23 14.4V480c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V226.3c0-11.8 12.4-19.6 23-14.4l56.6 27.7c7.9 4 17.5.8 21.5-7.2L638.3 118c4-7.9.8-17.6-7.1-21.5z"] }; +var faTty = { prefix: 'fas', iconName: 'tty', icon: [512, 512, [], "f1e4", "M5.37 103.822c138.532-138.532 362.936-138.326 501.262 0 6.078 6.078 7.074 15.496 2.583 22.681l-43.214 69.138a18.332 18.332 0 0 1-22.356 7.305l-86.422-34.569a18.335 18.335 0 0 1-11.434-18.846L351.741 90c-62.145-22.454-130.636-21.986-191.483 0l5.953 59.532a18.331 18.331 0 0 1-11.434 18.846l-86.423 34.568a18.334 18.334 0 0 1-22.356-7.305L2.787 126.502a18.333 18.333 0 0 1 2.583-22.68zM96 308v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H92c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zM96 500v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H140c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"] }; +var faTv = { prefix: 'fas', iconName: 'tv', icon: [640, 512, [], "f26c", "M592 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h245.1v32h-160c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32-14.3 32-32s-14.3-32-32-32h-160v-32H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h512v288z"] }; +var faUmbrella = { prefix: 'fas', iconName: 'umbrella', icon: [576, 512, [], "f0e9", "M557.011 267.631c-51.432-45.217-107.572-43.698-158.567 30.731-5.298 7.861-14.906 7.165-19.736 0-2.483-3.624-32.218-60.808-90.708-60.808-45.766 0-70.542 31.378-90.709 60.808-4.829 7.165-14.436 7.861-19.734 0-50.904-74.285-106.613-76.406-158.567-30.731-10.21 8.264-20.912-1.109-18.696-9.481C32.146 134.573 158.516 64.612 288.001 64.612c128.793 0 256.546 69.961 287.706 193.538 2.206 8.322-8.426 17.793-18.696 9.481zM256 261.001V416c0 17.645-14.355 32-32 32s-32-14.355-32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 52.935 43.065 96 96 96s96-43.065 96-96V261.288c-21.836-10.806-45.425-9.737-64-.287zm64-211.007V32c0-17.673-14.327-32-32-32s-32 14.327-32 32v17.987a372.105 372.105 0 0 1 64 .007z"] }; +var faUmbrellaBeach = { prefix: 'fas', iconName: 'umbrella-beach', icon: [640, 512, [], "f5ca", "M115.38 136.9l102.11 37.18c35.19-81.54 86.21-144.29 139-173.7-95.88-4.89-188.78 36.96-248.53 111.8-6.69 8.4-2.66 21.05 7.42 24.72zm132.25 48.16l238.48 86.83c35.76-121.38 18.7-231.66-42.63-253.98-7.4-2.7-15.13-4-23.09-4-58.02.01-128.27 69.17-172.76 171.15zM521.48 60.5c6.22 16.3 10.83 34.6 13.2 55.19 5.74 49.89-1.42 108.23-18.95 166.98l102.62 37.36c10.09 3.67 21.31-3.43 21.57-14.17 2.32-95.69-41.91-187.44-118.44-245.36zM560 447.98H321.06L386 269.5l-60.14-21.9-72.9 200.37H16c-8.84 0-16 7.16-16 16.01v32.01C0 504.83 7.16 512 16 512h544c8.84 0 16-7.17 16-16.01v-32.01c0-8.84-7.16-16-16-16z"] }; +var faUnderline = { prefix: 'fas', iconName: 'underline', icon: [448, 512, [], "f0cd", "M224.264 388.24c-91.669 0-156.603-51.165-156.603-151.392V64H39.37c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h137.39c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.813v172.848c0 53.699 28.314 79.444 76.317 79.444 46.966 0 75.796-25.434 75.796-79.965V64h-28.291c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h136.868c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.291v172.848c0 99.405-64.881 151.392-156.082 151.392zM16 448h416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16z"] }; +var faUndo = { prefix: 'fas', iconName: 'undo', icon: [512, 512, [], "f0e2", "M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z"] }; +var faUndoAlt = { prefix: 'fas', iconName: 'undo-alt', icon: [512, 512, [], "f2ea", "M255.545 8c-66.269.119-126.438 26.233-170.86 68.685L48.971 40.971C33.851 25.851 8 36.559 8 57.941V192c0 13.255 10.745 24 24 24h134.059c21.382 0 32.09-25.851 16.971-40.971l-41.75-41.75c30.864-28.899 70.801-44.907 113.23-45.273 92.398-.798 170.283 73.977 169.484 169.442C423.236 348.009 349.816 424 256 424c-41.127 0-79.997-14.678-110.63-41.556-4.743-4.161-11.906-3.908-16.368.553L89.34 422.659c-4.872 4.872-4.631 12.815.482 17.433C133.798 479.813 192.074 504 256 504c136.966 0 247.999-111.033 248-247.998C504.001 119.193 392.354 7.755 255.545 8z"] }; +var faUniversalAccess = { prefix: 'fas', iconName: 'universal-access', icon: [512, 512, [], "f29a", "M256 48c114.953 0 208 93.029 208 208 0 114.953-93.029 208-208 208-114.953 0-208-93.029-208-208 0-114.953 93.029-208 208-208m0-40C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 56C149.961 64 64 149.961 64 256s85.961 192 192 192 192-85.961 192-192S362.039 64 256 64zm0 44c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36zm117.741 98.023c-28.712 6.779-55.511 12.748-82.14 15.807.851 101.023 12.306 123.052 25.037 155.621 3.617 9.26-.957 19.698-10.217 23.315-9.261 3.617-19.699-.957-23.316-10.217-8.705-22.308-17.086-40.636-22.261-78.549h-9.686c-5.167 37.851-13.534 56.208-22.262 78.549-3.615 9.255-14.05 13.836-23.315 10.217-9.26-3.617-13.834-14.056-10.217-23.315 12.713-32.541 24.185-54.541 25.037-155.621-26.629-3.058-53.428-9.027-82.141-15.807-8.6-2.031-13.926-10.648-11.895-19.249s10.647-13.926 19.249-11.895c96.686 22.829 124.283 22.783 220.775 0 8.599-2.03 17.218 3.294 19.249 11.895 2.029 8.601-3.297 17.219-11.897 19.249z"] }; +var faUniversity = { prefix: 'fas', iconName: 'university', icon: [512, 512, [], "f19c", "M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z"] }; +var faUnlink = { prefix: 'fas', iconName: 'unlink', icon: [512, 512, [], "f127", "M304.083 405.907c4.686 4.686 4.686 12.284 0 16.971l-44.674 44.674c-59.263 59.262-155.693 59.266-214.961 0-59.264-59.265-59.264-155.696 0-214.96l44.675-44.675c4.686-4.686 12.284-4.686 16.971 0l39.598 39.598c4.686 4.686 4.686 12.284 0 16.971l-44.675 44.674c-28.072 28.073-28.072 73.75 0 101.823 28.072 28.072 73.75 28.073 101.824 0l44.674-44.674c4.686-4.686 12.284-4.686 16.971 0l39.597 39.598zm-56.568-260.216c4.686 4.686 12.284 4.686 16.971 0l44.674-44.674c28.072-28.075 73.75-28.073 101.824 0 28.072 28.073 28.072 73.75 0 101.823l-44.675 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.598 39.598c4.686 4.686 12.284 4.686 16.971 0l44.675-44.675c59.265-59.265 59.265-155.695 0-214.96-59.266-59.264-155.695-59.264-214.961 0l-44.674 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.597 39.598zm234.828 359.28l22.627-22.627c9.373-9.373 9.373-24.569 0-33.941L63.598 7.029c-9.373-9.373-24.569-9.373-33.941 0L7.029 29.657c-9.373 9.373-9.373 24.569 0 33.941l441.373 441.373c9.373 9.372 24.569 9.372 33.941 0z"] }; +var faUnlock = { prefix: 'fas', iconName: 'unlock', icon: [448, 512, [], "f09c", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z"] }; +var faUnlockAlt = { prefix: 'fas', iconName: 'unlock-alt', icon: [448, 512, [], "f13e", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zM264 408c0 22.1-17.9 40-40 40s-40-17.9-40-40v-48c0-22.1 17.9-40 40-40s40 17.9 40 40v48z"] }; +var faUpload = { prefix: 'fas', iconName: 'upload', icon: [512, 512, [], "f093", "M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"] }; +var faUser = { prefix: 'fas', iconName: 'user', icon: [448, 512, [], "f007", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; +var faUserAlt = { prefix: 'fas', iconName: 'user-alt', icon: [512, 512, [], "f406", "M256 288c79.5 0 144-64.5 144-144S335.5 0 256 0 112 64.5 112 144s64.5 144 144 144zm128 32h-55.1c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16H128C57.3 320 0 377.3 0 448v16c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-16c0-70.7-57.3-128-128-128z"] }; +var faUserAltSlash = { prefix: 'fas', iconName: 'user-alt-slash', icon: [640, 512, [], "f4fa", "M633.8 458.1L389.6 269.3C433.8 244.7 464 198.1 464 144 464 64.5 399.5 0 320 0c-67.1 0-123 46.1-139 108.2L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM198.4 320C124.2 320 64 380.2 64 454.4v9.6c0 26.5 21.5 48 48 48h382.2L245.8 320h-47.4z"] }; +var faUserAstronaut = { prefix: 'fas', iconName: 'user-astronaut', icon: [448, 512, [], "f4fb", "M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z"] }; +var faUserCheck = { prefix: 'fas', iconName: 'user-check', icon: [640, 512, [], "f4fc", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4zm323-128.4l-27.8-28.1c-4.6-4.7-12.1-4.7-16.8-.1l-104.8 104-45.5-45.8c-4.6-4.7-12.1-4.7-16.8-.1l-28.1 27.9c-4.7 4.6-4.7 12.1-.1 16.8l81.7 82.3c4.6 4.7 12.1 4.7 16.8.1l141.3-140.2c4.6-4.7 4.7-12.2.1-16.8z"] }; +var faUserCircle = { prefix: 'fas', iconName: 'user-circle', icon: [496, 512, [], "f2bd", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 96c48.6 0 88 39.4 88 88s-39.4 88-88 88-88-39.4-88-88 39.4-88 88-88zm0 344c-58.7 0-111.3-26.6-146.5-68.2 18.8-35.4 55.6-59.8 98.5-59.8 2.4 0 4.8.4 7.1 1.1 13 4.2 26.6 6.9 40.9 6.9 14.3 0 28-2.7 40.9-6.9 2.3-.7 4.7-1.1 7.1-1.1 42.9 0 79.7 24.4 98.5 59.8C359.3 421.4 306.7 448 248 448z"] }; +var faUserClock = { prefix: 'fas', iconName: 'user-clock', icon: [640, 512, [], "f4fd", "M496 224c-79.6 0-144 64.4-144 144s64.4 144 144 144 144-64.4 144-144-64.4-144-144-144zm64 150.3c0 5.3-4.4 9.7-9.7 9.7h-60.6c-5.3 0-9.7-4.4-9.7-9.7v-76.6c0-5.3 4.4-9.7 9.7-9.7h12.6c5.3 0 9.7 4.4 9.7 9.7V352h38.3c5.3 0 9.7 4.4 9.7 9.7v12.6zM320 368c0-27.8 6.7-54.1 18.2-77.5-8-1.5-16.2-2.5-24.6-2.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h347.1c-45.3-31.9-75.1-84.5-75.1-144zm-96-112c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128z"] }; +var faUserCog = { prefix: 'fas', iconName: 'user-cog', icon: [640, 512, [], "f4fe", "M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z"] }; +var faUserEdit = { prefix: 'fas', iconName: 'user-edit', icon: [640, 512, [], "f4ff", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h274.9c-2.4-6.8-3.4-14-2.6-21.3l6.8-60.9 1.2-11.1 7.9-7.9 77.3-77.3c-24.5-27.7-60-45.5-99.9-45.5zm45.3 145.3l-6.8 61c-1.1 10.2 7.5 18.8 17.6 17.6l60.9-6.8 137.9-137.9-71.7-71.7-137.9 137.8zM633 268.9L595.1 231c-9.3-9.3-24.5-9.3-33.8 0l-37.8 37.8-4.1 4.1 71.8 71.7 41.8-41.8c9.3-9.4 9.3-24.5 0-33.9z"] }; +var faUserFriends = { prefix: 'fas', iconName: 'user-friends', icon: [640, 512, [], "f500", "M192 256c61.9 0 112-50.1 112-112S253.9 32 192 32 80 82.1 80 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C51.6 288 0 339.6 0 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zM480 256c53 0 96-43 96-96s-43-96-96-96-96 43-96 96 43 96 96 96zm48 32h-3.8c-13.9 4.8-28.6 8-44.2 8s-30.3-3.2-44.2-8H432c-20.4 0-39.2 5.9-55.7 15.4 24.4 26.3 39.7 61.2 39.7 99.8v38.4c0 2.2-.5 4.3-.6 6.4H592c26.5 0 48-21.5 48-48 0-61.9-50.1-112-112-112z"] }; +var faUserGraduate = { prefix: 'fas', iconName: 'user-graduate', icon: [448, 512, [], "f501", "M319.4 320.6L224 416l-95.4-95.4C57.1 323.7 0 382.2 0 454.4v9.6c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-9.6c0-72.2-57.1-130.7-128.6-133.8zM13.6 79.8l6.4 1.5v58.4c-7 4.2-12 11.5-12 20.3 0 8.4 4.6 15.4 11.1 19.7L3.5 242c-1.7 6.9 2.1 14 7.6 14h41.8c5.5 0 9.3-7.1 7.6-14l-15.6-62.3C51.4 175.4 56 168.4 56 160c0-8.8-5-16.1-12-20.3V87.1l66 15.9c-8.6 17.2-14 36.4-14 57 0 70.7 57.3 128 128 128s128-57.3 128-128c0-20.6-5.3-39.8-14-57l96.3-23.2c18.2-4.4 18.2-27.1 0-31.5l-190.4-46c-13-3.1-26.7-3.1-39.7 0L13.6 48.2c-18.1 4.4-18.1 27.2 0 31.6z"] }; +var faUserLock = { prefix: 'fas', iconName: 'user-lock', icon: [640, 512, [], "f502", "M320 320c0-11.1 3.1-21.4 8.1-30.5-4.8-.5-9.5-1.5-14.5-1.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h280.9c-5.5-9.5-8.9-20.3-8.9-32V320zm-96-64c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm384 32h-32v-48c0-44.2-35.8-80-80-80s-80 35.8-80 80v48h-32c-17.7 0-32 14.3-32 32v160c0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32V320c0-17.7-14.3-32-32-32zm-80 0h-64v-48c0-17.6 14.4-32 32-32s32 14.4 32 32v48z"] }; +var faUserMd = { prefix: 'fas', iconName: 'user-md', icon: [448, 512, [], "f0f0", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zM104 424c0 13.3 10.7 24 24 24s24-10.7 24-24-10.7-24-24-24-24 10.7-24 24zm216-135.4v49c36.5 7.4 64 39.8 64 78.4v41.7c0 7.6-5.4 14.2-12.9 15.7l-32.2 6.4c-4.3.9-8.5-1.9-9.4-6.3l-3.1-15.7c-.9-4.3 1.9-8.6 6.3-9.4l19.3-3.9V416c0-62.8-96-65.1-96 1.9v26.7l19.3 3.9c4.3.9 7.1 5.1 6.3 9.4l-3.1 15.7c-.9 4.3-5.1 7.1-9.4 6.3l-31.2-4.2c-7.9-1.1-13.8-7.8-13.8-15.9V416c0-38.6 27.5-70.9 64-78.4v-45.2c-2.2.7-4.4 1.1-6.6 1.9-18 6.3-37.3 9.8-57.4 9.8s-39.4-3.5-57.4-9.8c-7.4-2.6-14.9-4.2-22.6-5.2v81.6c23.1 6.9 40 28.1 40 53.4 0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.3 16.9-46.5 40-53.4v-80.4C48.5 301 0 355.8 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-72-56.8-130.3-128-133.8z"] }; +var faUserMinus = { prefix: 'fas', iconName: 'user-minus', icon: [640, 512, [], "f503", "M624 208H432c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; +var faUserNinja = { prefix: 'fas', iconName: 'user-ninja', icon: [448, 512, [], "f504", "M325.4 289.2L224 390.6 122.6 289.2C54 295.3 0 352.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-70.2-54-127.1-122.6-133.2zM32 192c27.3 0 51.8-11.5 69.2-29.7 15.1 53.9 64 93.7 122.8 93.7 70.7 0 128-57.3 128-128S294.7 0 224 0c-50.4 0-93.6 29.4-114.5 71.8C92.1 47.8 64 32 32 32c0 33.4 17.1 62.8 43.1 80-26 17.2-43.1 46.6-43.1 80zm144-96h96c17.7 0 32 14.3 32 32H144c0-17.7 14.3-32 32-32z"] }; +var faUserPlus = { prefix: 'fas', iconName: 'user-plus', icon: [640, 512, [], "f234", "M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; +var faUserSecret = { prefix: 'fas', iconName: 'user-secret', icon: [448, 512, [], "f21b", "M383.9 308.3l23.9-62.6c4-10.5-3.7-21.7-15-21.7h-58.5c11-18.9 17.8-40.6 17.8-64v-.3c39.2-7.8 64-19.1 64-31.7 0-13.3-27.3-25.1-70.1-33-9.2-32.8-27-65.8-40.6-82.8-9.5-11.9-25.9-15.6-39.5-8.8l-27.6 13.8c-9 4.5-19.6 4.5-28.6 0L182.1 3.4c-13.6-6.8-30-3.1-39.5 8.8-13.5 17-31.4 50-40.6 82.8-42.7 7.9-70 19.7-70 33 0 12.6 24.8 23.9 64 31.7v.3c0 23.4 6.8 45.1 17.8 64H56.3c-11.5 0-19.2 11.7-14.7 22.3l25.8 60.2C27.3 329.8 0 372.7 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-48.4-25.8-90.4-64.1-114.1zM176 480l-41.6-192 49.6 32 24 40-32 120zm96 0l-32-120 24-40 49.6-32L272 480zm41.7-298.5c-3.9 11.9-7 24.6-16.5 33.4-10.1 9.3-48 22.4-64-25-2.8-8.4-15.4-8.4-18.3 0-17 50.2-56 32.4-64 25-9.5-8.8-12.7-21.5-16.5-33.4-.8-2.5-6.3-5.7-6.3-5.8v-10.8c28.3 3.6 61 5.8 96 5.8s67.7-2.1 96-5.8v10.8c-.1.1-5.6 3.2-6.4 5.8z"] }; +var faUserShield = { prefix: 'fas', iconName: 'user-shield', icon: [640, 512, [], "f505", "M622.3 271.1l-115.2-45c-4.1-1.6-12.6-3.7-22.2 0l-115.2 45c-10.7 4.2-17.7 14-17.7 24.9 0 111.6 68.7 188.8 132.9 213.9 9.6 3.7 18 1.6 22.2 0C558.4 489.9 640 420.5 640 296c0-10.9-7-20.7-17.7-24.9zM496 462.4V273.3l95.5 37.3c-5.6 87.1-60.9 135.4-95.5 151.8zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm96 40c0-2.5.8-4.8 1.1-7.2-2.5-.1-4.9-.8-7.5-.8h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c6.8 0 13.3-1.5 19.2-4-54-42.9-99.2-116.7-99.2-212z"] }; +var faUserSlash = { prefix: 'fas', iconName: 'user-slash', icon: [640, 512, [], "f506", "M633.8 458.1L362.3 248.3C412.1 230.7 448 183.8 448 128 448 57.3 390.7 0 320 0c-67.1 0-121.5 51.8-126.9 117.4L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM96 422.4V464c0 26.5 21.5 48 48 48h350.2L207.4 290.3C144.2 301.3 96 356 96 422.4z"] }; +var faUserTag = { prefix: 'fas', iconName: 'user-tag', icon: [640, 512, [], "f507", "M630.6 364.9l-90.3-90.2c-12-12-28.3-18.7-45.3-18.7h-79.3c-17.7 0-32 14.3-32 32v79.2c0 17 6.7 33.2 18.7 45.2l90.3 90.2c12.5 12.5 32.8 12.5 45.3 0l92.5-92.5c12.6-12.5 12.6-32.7.1-45.2zm-182.8-21c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24c0 13.2-10.7 24-24 24zm-223.8-88c70.7 0 128-57.3 128-128C352 57.3 294.7 0 224 0S96 57.3 96 128c0 70.6 57.3 127.9 128 127.9zm127.8 111.2V294c-12.2-3.6-24.9-6.2-38.2-6.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 287.9 0 348.1 0 422.3v41.6c0 26.5 21.5 48 48 48h352c15.5 0 29.1-7.5 37.9-18.9l-58-58c-18.1-18.1-28.1-42.2-28.1-67.9z"] }; +var faUserTie = { prefix: 'fas', iconName: 'user-tie', icon: [448, 512, [], "f508", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm95.8 32.6L272 480l-32-136 32-56h-96l32 56-32 136-47.8-191.4C56.9 292 0 350.3 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-72.1-56.9-130.4-128.2-133.8z"] }; +var faUserTimes = { prefix: 'fas', iconName: 'user-times', icon: [640, 512, [], "f235", "M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"] }; +var faUsers = { prefix: 'fas', iconName: 'users', icon: [640, 512, [], "f0c0", "M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"] }; +var faUsersCog = { prefix: 'fas', iconName: 'users-cog', icon: [640, 512, [], "f509", "M610.5 341.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 368.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm224 32c1.9 0 3.7-.5 5.6-.6 8.3-21.7 20.5-42.1 36.3-59.2 7.4-8 17.9-12.6 28.9-12.6 6.9 0 13.7 1.8 19.6 5.3l7.9 4.6c.8-.5 1.6-.9 2.4-1.4 7-14.6 11.2-30.8 11.2-48 0-61.9-50.1-112-112-112S208 82.1 208 144c0 61.9 50.1 112 112 112zm105.2 194.5c-2.3-1.2-4.6-2.6-6.8-3.9-8.2 4.8-15.3 9.8-27.5 9.8-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-10.7-34.5 24.9-49.7 25.8-50.3-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-3.8-2.2-7-5-9.8-8.1-3.3.2-6.5.6-9.8.6-24.6 0-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h255.4c-3.7-6-6.2-12.8-6.2-20.3v-9.2zM173.1 274.6C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"] }; +var faUtensilSpoon = { prefix: 'fas', iconName: 'utensil-spoon', icon: [512, 512, [], "f2e5", "M480.1 31.9c-55-55.1-164.9-34.5-227.8 28.5-49.3 49.3-55.1 110-28.8 160.4L9 413.2c-11.6 10.5-12.1 28.5-1 39.5L59.3 504c11 11 29.1 10.5 39.5-1.1l192.4-214.4c50.4 26.3 111.1 20.5 160.4-28.8 63-62.9 83.6-172.8 28.5-227.8z"] }; +var faUtensils = { prefix: 'fas', iconName: 'utensils', icon: [416, 512, [], "f2e7", "M207.9 15.2c.8 4.7 16.1 94.5 16.1 128.8 0 52.3-27.8 89.6-68.9 104.6L168 486.7c.7 13.7-10.2 25.3-24 25.3H80c-13.7 0-24.7-11.5-24-25.3l12.9-238.1C27.7 233.6 0 196.2 0 144 0 109.6 15.3 19.9 16.1 15.2 19.3-5.1 61.4-5.4 64 16.3v141.2c1.3 3.4 15.1 3.2 16 0 1.4-25.3 7.9-139.2 8-141.8 3.3-20.8 44.7-20.8 47.9 0 .2 2.7 6.6 116.5 8 141.8.9 3.2 14.8 3.4 16 0V16.3c2.6-21.6 44.8-21.4 48-1.1zm119.2 285.7l-15 185.1c-1.2 14 9.9 26 23.9 26h56c13.3 0 24-10.7 24-24V24c0-13.2-10.7-24-24-24-82.5 0-221.4 178.5-64.9 300.9z"] }; +var faVectorSquare = { prefix: 'fas', iconName: 'vector-square', icon: [512, 512, [], "f5cb", "M512 128V32c0-17.67-14.33-32-32-32h-96c-17.67 0-32 14.33-32 32H160c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32v192c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32h192c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32V160c17.67 0 32-14.33 32-32zm-96-64h32v32h-32V64zM64 64h32v32H64V64zm32 384H64v-32h32v32zm352 0h-32v-32h32v32zm-32-96h-32c-17.67 0-32 14.33-32 32v32H160v-32c0-17.67-14.33-32-32-32H96V160h32c17.67 0 32-14.33 32-32V96h192v32c0 17.67 14.33 32 32 32h32v192z"] }; +var faVenus = { prefix: 'fas', iconName: 'venus', icon: [288, 512, [], "f221", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z"] }; +var faVenusDouble = { prefix: 'fas', iconName: 'venus-double', icon: [512, 512, [], "f226", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80zm336 140.4V368h36c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-36v36c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-36h-36c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h36v-51.6c-21.2-4.8-40.6-14.3-57.2-27.3 14-16.7 25-36 32.1-57.1 14.5 14.8 34.7 24 57.1 24 44.1 0 80-35.9 80-80s-35.9-80-80-80c-22.3 0-42.6 9.2-57.1 24-7.1-21.1-18-40.4-32.1-57.1C303.4 43.6 334.3 32 368 32c79.5 0 144 64.5 144 144 0 68.5-47.9 125.9-112 140.4z"] }; +var faVenusMars = { prefix: 'fas', iconName: 'venus-mars', icon: [576, 512, [], "f228", "M564 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C422.5 72.1 396.2 64 368 64c-33.7 0-64.6 11.6-89.2 30.9 14 16.7 25 36 32.1 57.1 14.5-14.8 34.7-24 57.1-24 44.1 0 80 35.9 80 80s-35.9 80-80 80c-22.3 0-42.6-9.2-57.1-24-7.1 21.1-18 40.4-32.1 57.1 24.5 19.4 55.5 30.9 89.2 30.9 79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 64C64.5 64 0 128.5 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.6 112-71.9 112-140.4 0-79.5-64.5-144-144-144zm0 224c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"] }; +var faVial = { prefix: 'fas', iconName: 'vial', icon: [480, 512, [], "f492", "M477.7 186.1L309.5 18.3c-3.1-3.1-8.2-3.1-11.3 0l-34 33.9c-3.1 3.1-3.1 8.2 0 11.3l11.2 11.1L33 316.5c-38.8 38.7-45.1 102-9.4 143.5 20.6 24 49.5 36 78.4 35.9 26.4 0 52.8-10 72.9-30.1l246.3-245.7 11.2 11.1c3.1 3.1 8.2 3.1 11.3 0l34-33.9c3.1-3 3.1-8.1 0-11.2zM318 256H161l148-147.7 78.5 78.3L318 256z"] }; +var faVials = { prefix: 'fas', iconName: 'vials', icon: [640, 512, [], "f493", "M72 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H72c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64zm480 384H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM360 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64z"] }; +var faVideo = { prefix: 'fas', iconName: 'video', icon: [576, 512, [], "f03d", "M336.2 64H47.8C21.4 64 0 85.4 0 111.8v288.4C0 426.6 21.4 448 47.8 448h288.4c26.4 0 47.8-21.4 47.8-47.8V111.8c0-26.4-21.4-47.8-47.8-47.8zm189.4 37.7L416 177.3v157.4l109.6 75.5c21.2 14.6 50.4-.3 50.4-25.8V127.5c0-25.4-29.1-40.4-50.4-25.8z"] }; +var faVideoSlash = { prefix: 'fas', iconName: 'video-slash', icon: [640, 512, [], "f4e2", "M633.8 458.1l-55-42.5c15.4-1.4 29.2-13.7 29.2-31.1v-257c0-25.5-29.1-40.4-50.4-25.8L448 177.3v137.2l-32-24.7v-178c0-26.4-21.4-47.8-47.8-47.8H123.9L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4L42.7 82 416 370.6l178.5 138c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.5-6.9 4.2-17-2.8-22.4zM32 400.2c0 26.4 21.4 47.8 47.8 47.8h288.4c11.2 0 21.4-4 29.6-10.5L32 154.7v245.5z"] }; +var faVolleyballBall = { prefix: 'fas', iconName: 'volleyball-ball', icon: [495, 512, [], "f45f", "M223.3 243.4c-.9-37-8.6-72.8-22.7-105.7-90.8 42.4-157.5 122.4-180.3 216.8 13.4 30.8 32.9 58.3 56.9 81.1 22.7-79.2 74.2-147.8 146.1-192.2zM186.4 109c-15-26.4-34.5-50.1-57.4-70.7C38 88.1-15.8 191.2 4 300.5c33.4-83.1 98.4-152 182.4-191.5zM374 274.1c8.6-99.8-27.3-197.5-97.5-264.4-14.7-1.7-51.6-5.5-98.9 8.5 57.3 59.3 91 138.2 93.5 222.7 32.5 17.7 67.3 29 102.9 33.2zm-124.7 9.5c-31.6 19.3-58.7 43.9-80.2 72.6 82 57.3 184.5 75.1 277.5 47.8 19.7-26.4 34.2-56.8 42.2-89.9-26.6 6.6-53.7 10.4-80.9 10.4-54.6-.1-108.9-14.1-158.6-40.9zM151 383.3c-15.2 26-25.7 54.4-32.1 84.2 37.6 23 81.7 36.5 129.1 36.5 61 0 116.7-22.1 159.9-58.6C295 461.5 204.6 420.6 151 383.3zM331.3 22.7c55.3 70.4 82.5 161.2 74.6 253.6 30.3.2 60.5-4.8 89.7-14.2 0-2 .3-4 .3-6 0-107.8-68.7-199.1-164.6-233.4z"] }; +var faVolumeDown = { prefix: 'fas', iconName: 'volume-down', icon: [384, 512, [], "f027", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zM384 256c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z"] }; +var faVolumeOff = { prefix: 'fas', iconName: 'volume-off', icon: [256, 512, [], "f026", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971z"] }; +var faVolumeUp = { prefix: 'fas', iconName: 'volume-up', icon: [576, 512, [], "f028", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zm182.056-77.876C422.982.92 403.283 5.668 394.061 20.745c-9.221 15.077-4.473 34.774 10.604 43.995C468.967 104.063 512 174.983 512 256c0 73.431-36.077 142.292-96.507 184.206-14.522 10.072-18.129 30.01-8.057 44.532 10.076 14.528 30.016 18.126 44.531 8.057C529.633 438.927 576 350.406 576 256c0-103.244-54.579-194.877-137.944-245.859zM480 256c0-68.547-36.15-129.777-91.957-163.901-15.076-9.22-34.774-4.471-43.994 10.607-9.22 15.078-4.471 34.774 10.607 43.994C393.067 170.188 416 211.048 416 256c0 41.964-20.62 81.319-55.158 105.276-14.521 10.073-18.128 30.01-8.056 44.532 6.216 8.96 16.185 13.765 26.322 13.765a31.862 31.862 0 0 0 18.21-5.709C449.091 377.953 480 318.938 480 256zm-96 0c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z"] }; +var faWalking = { prefix: 'fas', iconName: 'walking', icon: [320, 512, [], "f554", "M208 96c26.5 0 48-21.5 48-48S234.5 0 208 0s-48 21.5-48 48 21.5 48 48 48zm94.5 149.1l-23.3-11.8-9.7-29.4c-14.7-44.6-55.7-75.8-102.2-75.9-36-.1-55.9 10.1-93.3 25.2-21.6 8.7-39.3 25.2-49.7 46.2L17.6 213c-7.8 15.8-1.5 35 14.2 42.9 15.6 7.9 34.6 1.5 42.5-14.3L81 228c3.5-7 9.3-12.5 16.5-15.4l26.8-10.8-15.2 60.7c-5.2 20.8.4 42.9 14.9 58.8l59.9 65.4c7.2 7.9 12.3 17.4 14.9 27.7l18.3 73.3c4.3 17.1 21.7 27.6 38.8 23.3 17.1-4.3 27.6-21.7 23.3-38.8l-22.2-89c-2.6-10.3-7.7-19.9-14.9-27.7l-45.5-49.7 17.2-68.7 5.5 16.5c5.3 16.1 16.7 29.4 31.7 37l23.3 11.8c15.6 7.9 34.6 1.5 42.5-14.3 7.7-15.7 1.4-35.1-14.3-43zM73.6 385.8c-3.2 8.1-8 15.4-14.2 21.5l-50 50.1c-12.5 12.5-12.5 32.8 0 45.3s32.7 12.5 45.2 0l59.4-59.4c6.1-6.1 10.9-13.4 14.2-21.5l13.5-33.8c-55.3-60.3-38.7-41.8-47.4-53.7l-20.7 51.5z"] }; +var faWallet = { prefix: 'fas', iconName: 'wallet', icon: [512, 512, [], "f555", "M461.2 128H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h384c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h397.2c28.02 0 50.8-21.53 50.8-48V176c0-26.47-22.78-48-50.8-48zM416 336c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"] }; +var faWarehouse = { prefix: 'fas', iconName: 'warehouse', icon: [640, 512, [], "f494", "M504 352H136.4c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0 96H136.1c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0-192H136.6c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm106.5-139L338.4 3.7a48.15 48.15 0 0 0-36.9 0L29.5 117C11.7 124.5 0 141.9 0 161.3V504c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V256c0-17.6 14.6-32 32.6-32h382.8c18 0 32.6 14.4 32.6 32v248c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V161.3c0-19.4-11.7-36.8-29.5-44.3z"] }; +var faWeight = { prefix: 'fas', iconName: 'weight', icon: [512, 512, [], "f496", "M448 64h-25.98C438.44 92.28 448 125.01 448 160c0 105.87-86.13 192-192 192S64 265.87 64 160c0-34.99 9.56-67.72 25.98-96H64C28.71 64 0 92.71 0 128v320c0 35.29 28.71 64 64 64h384c35.29 0 64-28.71 64-64V128c0-35.29-28.71-64-64-64zM256 320c88.37 0 160-71.63 160-160S344.37 0 256 0 96 71.63 96 160s71.63 160 160 160zm-.3-151.94l33.58-78.36c3.5-8.17 12.94-11.92 21.03-8.41 8.12 3.48 11.88 12.89 8.41 21l-33.67 78.55C291.73 188 296 197.45 296 208c0 22.09-17.91 40-40 40s-40-17.91-40-40c0-21.98 17.76-39.77 39.7-39.94z"] }; +var faWeightHanging = { prefix: 'fas', iconName: 'weight-hanging', icon: [512, 512, [], "f5cd", "M510.28 445.86l-73.03-292.13c-3.8-15.19-16.44-25.72-30.87-25.72h-60.25c3.57-10.05 5.88-20.72 5.88-32 0-53.02-42.98-96-96-96s-96 42.98-96 96c0 11.28 2.3 21.95 5.88 32h-60.25c-14.43 0-27.08 10.54-30.87 25.72L1.72 445.86C-6.61 479.17 16.38 512 48.03 512h415.95c31.64 0 54.63-32.83 46.3-66.14zM256 128c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z"] }; +var faWheelchair = { prefix: 'fas', iconName: 'wheelchair', icon: [512, 512, [], "f193", "M496.101 385.669l14.227 28.663c3.929 7.915.697 17.516-7.218 21.445l-65.465 32.886c-16.049 7.967-35.556 1.194-43.189-15.055L331.679 320H192c-15.925 0-29.426-11.71-31.679-27.475C126.433 55.308 128.38 70.044 128 64c0-36.358 30.318-65.635 67.052-63.929 33.271 1.545 60.048 28.905 60.925 62.201.868 32.933-23.152 60.423-54.608 65.039l4.67 32.69H336c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H215.182l4.572 32H352a32 32 0 0 1 28.962 18.392L438.477 396.8l36.178-18.349c7.915-3.929 17.517-.697 21.446 7.218zM311.358 352h-24.506c-7.788 54.204-54.528 96-110.852 96-61.757 0-112-50.243-112-112 0-41.505 22.694-77.809 56.324-97.156-3.712-25.965-6.844-47.86-9.488-66.333C45.956 198.464 0 261.963 0 336c0 97.047 78.953 176 176 176 71.87 0 133.806-43.308 161.11-105.192L311.358 352z"] }; +var faWifi = { prefix: 'fas', iconName: 'wifi', icon: [640, 512, [], "f1eb", "M384 416c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm136.659-124.443c6.465-6.465 6.245-17.065-.564-23.167-113.793-101.985-286.526-101.869-400.19 0-6.809 6.102-7.029 16.702-.564 23.167l34.006 34.006c5.927 5.927 15.464 6.32 21.769.796 82.88-72.609 207.074-72.447 289.768 0 6.305 5.524 15.842 5.132 21.769-.796l34.006-34.006zm112.11-113.718c6.385-6.385 6.254-16.816-.35-22.973-175.768-163.86-449.134-163.8-624.837 0-6.604 6.157-6.735 16.589-.35 22.973l33.966 33.966c6.095 6.095 15.891 6.231 22.224.383 144.763-133.668 368.356-133.702 513.156 0 6.333 5.848 16.129 5.712 22.224-.383l33.967-33.966z"] }; +var faWindowClose = { prefix: 'fas', iconName: 'window-close', icon: [512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-83.6 290.5c4.8 4.8 4.8 12.6 0 17.4l-40.5 40.5c-4.8 4.8-12.6 4.8-17.4 0L256 313.3l-66.5 67.1c-4.8 4.8-12.6 4.8-17.4 0l-40.5-40.5c-4.8-4.8-4.8-12.6 0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6 0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1 66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8 4.8 12.6 0 17.4L313.3 256l67.1 66.5z"] }; +var faWindowMaximize = { prefix: 'fas', iconName: 'window-maximize', icon: [512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16 160H64v-84c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12v84z"] }; +var faWindowMinimize = { prefix: 'fas', iconName: 'window-minimize', icon: [512, 512, [], "f2d1", "M464 352H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48z"] }; +var faWindowRestore = { prefix: 'fas', iconName: 'window-restore', icon: [512, 512, [], "f2d2", "M512 48v288c0 26.5-21.5 48-48 48h-48V176c0-44.1-35.9-80-80-80H128V48c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zM384 176v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zm-68 28c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v52h252v-52z"] }; +var faWineGlass = { prefix: 'fas', iconName: 'wine-glass', icon: [288, 512, [], "f4e3", "M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40z"] }; +var faWineGlassAlt = { prefix: 'fas', iconName: 'wine-glass-alt', icon: [288, 512, [], "f5ce", "M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM61.75 48h164.5l7.17 80H54.58l7.17-80z"] }; +var faWonSign = { prefix: 'fas', iconName: 'won-sign', icon: [576, 512, [], "f159", "M564 192c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-48.028l18.572-80.61c1.732-7.518-3.978-14.694-11.693-14.694h-46.107a11.998 11.998 0 0 0-11.736 9.5L450.73 128H340.839l-19.725-85.987a12 12 0 0 0-11.696-9.317H265.43a12 12 0 0 0-11.687 9.277L233.696 128H124.975L107.5 42.299a12 12 0 0 0-11.758-9.602H53.628c-7.686 0-13.39 7.124-11.709 14.624L60 128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h62.342l7.171 32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h83.856l40.927 182.624A12 12 0 0 0 148.492 480h56.767c5.583 0 10.428-3.85 11.689-9.288L259.335 288h55.086l42.386 182.712A12 12 0 0 0 368.496 480h56.826a12 12 0 0 0 11.694-9.306L479.108 288H564c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-70.146l7.373-32H564zm-425.976 0h80.757l-7.457 32h-66.776l-6.524-32zm45.796 150.029c-6.194 25.831-6.758 47.25-7.321 47.25h-1.126s-1.689-22.05-6.758-47.25L157.599 288h38.812l-12.591 54.029zM274.182 224l1.996-8.602c1.856-7.962 3.457-15.968 4.803-23.398h11.794c1.347 7.43 2.947 15.436 4.803 23.398l1.996 8.602h-25.392zm130.959 118.029c-5.068 25.2-6.758 47.25-6.758 47.25h-1.126c-.563 0-1.126-21.42-7.321-47.25L377.542 288h39.107l-11.508 54.029zM430.281 224h-67.42l-7.34-32h81.577l-6.817 32z"] }; +var faWrench = { prefix: 'fas', iconName: 'wrench', icon: [512, 512, [], "f0ad", "M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"] }; +var faXRay = { prefix: 'fas', iconName: 'x-ray', icon: [640, 512, [], "f497", "M240 384c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm160 32c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zM624 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zm0 448h-48V96H64v352H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM480 248c0 4.4-3.6 8-8 8H336v32h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48v-16h-64v16c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48h64v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-32H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h136v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-24c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v24h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h136c4.4 0 8 3.6 8 8v16z"] }; +var faYenSign = { prefix: 'fas', iconName: 'yen-sign', icon: [384, 512, [], "f157", "M351.208 32h-65.277a12 12 0 0 0-10.778 6.724l-55.39 113.163c-14.513 34.704-27.133 71.932-27.133 71.932h-1.262s-12.62-37.228-27.133-71.932l-55.39-113.163A11.997 11.997 0 0 0 98.068 32H32.792c-9.057 0-14.85 9.65-10.59 17.643L102.322 200H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h88.162L152 293.228V320H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h108v92c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-92h108c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12H232v-26.772L251.838 256H340c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12h-58.322l80.12-150.357C366.058 41.65 360.266 32 351.208 32z"] }; +var _iconsCache = { + faAddressBook: faAddressBook, + faAddressCard: faAddressCard, + faAdjust: faAdjust, + faAlignCenter: faAlignCenter, + faAlignJustify: faAlignJustify, + faAlignLeft: faAlignLeft, + faAlignRight: faAlignRight, + faAllergies: faAllergies, + faAmbulance: faAmbulance, + faAmericanSignLanguageInterpreting: faAmericanSignLanguageInterpreting, + faAnchor: faAnchor, + faAngleDoubleDown: faAngleDoubleDown, + faAngleDoubleLeft: faAngleDoubleLeft, + faAngleDoubleRight: faAngleDoubleRight, + faAngleDoubleUp: faAngleDoubleUp, + faAngleDown: faAngleDown, + faAngleLeft: faAngleLeft, + faAngleRight: faAngleRight, + faAngleUp: faAngleUp, + faAngry: faAngry, + faArchive: faArchive, + faArchway: faArchway, + faArrowAltCircleDown: faArrowAltCircleDown, + faArrowAltCircleLeft: faArrowAltCircleLeft, + faArrowAltCircleRight: faArrowAltCircleRight, + faArrowAltCircleUp: faArrowAltCircleUp, + faArrowCircleDown: faArrowCircleDown, + faArrowCircleLeft: faArrowCircleLeft, + faArrowCircleRight: faArrowCircleRight, + faArrowCircleUp: faArrowCircleUp, + faArrowDown: faArrowDown, + faArrowLeft: faArrowLeft, + faArrowRight: faArrowRight, + faArrowUp: faArrowUp, + faArrowsAlt: faArrowsAlt, + faArrowsAltH: faArrowsAltH, + faArrowsAltV: faArrowsAltV, + faAssistiveListeningSystems: faAssistiveListeningSystems, + faAsterisk: faAsterisk, + faAt: faAt, + faAtlas: faAtlas, + faAudioDescription: faAudioDescription, + faAward: faAward, + faBackspace: faBackspace, + faBackward: faBackward, + faBalanceScale: faBalanceScale, + faBan: faBan, + faBandAid: faBandAid, + faBarcode: faBarcode, + faBars: faBars, + faBaseballBall: faBaseballBall, + faBasketballBall: faBasketballBall, + faBath: faBath, + faBatteryEmpty: faBatteryEmpty, + faBatteryFull: faBatteryFull, + faBatteryHalf: faBatteryHalf, + faBatteryQuarter: faBatteryQuarter, + faBatteryThreeQuarters: faBatteryThreeQuarters, + faBed: faBed, + faBeer: faBeer, + faBell: faBell, + faBellSlash: faBellSlash, + faBezierCurve: faBezierCurve, + faBicycle: faBicycle, + faBinoculars: faBinoculars, + faBirthdayCake: faBirthdayCake, + faBlender: faBlender, + faBlind: faBlind, + faBold: faBold, + faBolt: faBolt, + faBomb: faBomb, + faBong: faBong, + faBook: faBook, + faBookOpen: faBookOpen, + faBookmark: faBookmark, + faBowlingBall: faBowlingBall, + faBox: faBox, + faBoxOpen: faBoxOpen, + faBoxes: faBoxes, + faBraille: faBraille, + faBriefcase: faBriefcase, + faBriefcaseMedical: faBriefcaseMedical, + faBroadcastTower: faBroadcastTower, + faBroom: faBroom, + faBrush: faBrush, + faBug: faBug, + faBuilding: faBuilding, + faBullhorn: faBullhorn, + faBullseye: faBullseye, + faBurn: faBurn, + faBus: faBus, + faBusAlt: faBusAlt, + faCalculator: faCalculator, + faCalendar: faCalendar, + faCalendarAlt: faCalendarAlt, + faCalendarCheck: faCalendarCheck, + faCalendarMinus: faCalendarMinus, + faCalendarPlus: faCalendarPlus, + faCalendarTimes: faCalendarTimes, + faCamera: faCamera, + faCameraRetro: faCameraRetro, + faCannabis: faCannabis, + faCapsules: faCapsules, + faCar: faCar, + faCaretDown: faCaretDown, + faCaretLeft: faCaretLeft, + faCaretRight: faCaretRight, + faCaretSquareDown: faCaretSquareDown, + faCaretSquareLeft: faCaretSquareLeft, + faCaretSquareRight: faCaretSquareRight, + faCaretSquareUp: faCaretSquareUp, + faCaretUp: faCaretUp, + faCartArrowDown: faCartArrowDown, + faCartPlus: faCartPlus, + faCertificate: faCertificate, + faChalkboard: faChalkboard, + faChalkboardTeacher: faChalkboardTeacher, + faChartArea: faChartArea, + faChartBar: faChartBar, + faChartLine: faChartLine, + faChartPie: faChartPie, + faCheck: faCheck, + faCheckCircle: faCheckCircle, + faCheckDouble: faCheckDouble, + faCheckSquare: faCheckSquare, + faChess: faChess, + faChessBishop: faChessBishop, + faChessBoard: faChessBoard, + faChessKing: faChessKing, + faChessKnight: faChessKnight, + faChessPawn: faChessPawn, + faChessQueen: faChessQueen, + faChessRook: faChessRook, + faChevronCircleDown: faChevronCircleDown, + faChevronCircleLeft: faChevronCircleLeft, + faChevronCircleRight: faChevronCircleRight, + faChevronCircleUp: faChevronCircleUp, + faChevronDown: faChevronDown, + faChevronLeft: faChevronLeft, + faChevronRight: faChevronRight, + faChevronUp: faChevronUp, + faChild: faChild, + faChurch: faChurch, + faCircle: faCircle, + faCircleNotch: faCircleNotch, + faClipboard: faClipboard, + faClipboardCheck: faClipboardCheck, + faClipboardList: faClipboardList, + faClock: faClock, + faClone: faClone, + faClosedCaptioning: faClosedCaptioning, + faCloud: faCloud, + faCloudDownloadAlt: faCloudDownloadAlt, + faCloudUploadAlt: faCloudUploadAlt, + faCocktail: faCocktail, + faCode: faCode, + faCodeBranch: faCodeBranch, + faCoffee: faCoffee, + faCog: faCog, + faCogs: faCogs, + faCoins: faCoins, + faColumns: faColumns, + faComment: faComment, + faCommentAlt: faCommentAlt, + faCommentDots: faCommentDots, + faCommentSlash: faCommentSlash, + faComments: faComments, + faCompactDisc: faCompactDisc, + faCompass: faCompass, + faCompress: faCompress, + faConciergeBell: faConciergeBell, + faCookie: faCookie, + faCookieBite: faCookieBite, + faCopy: faCopy, + faCopyright: faCopyright, + faCouch: faCouch, + faCreditCard: faCreditCard, + faCrop: faCrop, + faCropAlt: faCropAlt, + faCrosshairs: faCrosshairs, + faCrow: faCrow, + faCrown: faCrown, + faCube: faCube, + faCubes: faCubes, + faCut: faCut, + faDatabase: faDatabase, + faDeaf: faDeaf, + faDesktop: faDesktop, + faDiagnoses: faDiagnoses, + faDice: faDice, + faDiceFive: faDiceFive, + faDiceFour: faDiceFour, + faDiceOne: faDiceOne, + faDiceSix: faDiceSix, + faDiceThree: faDiceThree, + faDiceTwo: faDiceTwo, + faDigitalTachograph: faDigitalTachograph, + faDivide: faDivide, + faDizzy: faDizzy, + faDna: faDna, + faDollarSign: faDollarSign, + faDolly: faDolly, + faDollyFlatbed: faDollyFlatbed, + faDonate: faDonate, + faDoorClosed: faDoorClosed, + faDoorOpen: faDoorOpen, + faDotCircle: faDotCircle, + faDove: faDove, + faDownload: faDownload, + faDraftingCompass: faDraftingCompass, + faDrum: faDrum, + faDrumSteelpan: faDrumSteelpan, + faDumbbell: faDumbbell, + faEdit: faEdit, + faEject: faEject, + faEllipsisH: faEllipsisH, + faEllipsisV: faEllipsisV, + faEnvelope: faEnvelope, + faEnvelopeOpen: faEnvelopeOpen, + faEnvelopeSquare: faEnvelopeSquare, + faEquals: faEquals, + faEraser: faEraser, + faEuroSign: faEuroSign, + faExchangeAlt: faExchangeAlt, + faExclamation: faExclamation, + faExclamationCircle: faExclamationCircle, + faExclamationTriangle: faExclamationTriangle, + faExpand: faExpand, + faExpandArrowsAlt: faExpandArrowsAlt, + faExternalLinkAlt: faExternalLinkAlt, + faExternalLinkSquareAlt: faExternalLinkSquareAlt, + faEye: faEye, + faEyeDropper: faEyeDropper, + faEyeSlash: faEyeSlash, + faFastBackward: faFastBackward, + faFastForward: faFastForward, + faFax: faFax, + faFeather: faFeather, + faFeatherAlt: faFeatherAlt, + faFemale: faFemale, + faFighterJet: faFighterJet, + faFile: faFile, + faFileAlt: faFileAlt, + faFileArchive: faFileArchive, + faFileAudio: faFileAudio, + faFileCode: faFileCode, + faFileContract: faFileContract, + faFileDownload: faFileDownload, + faFileExcel: faFileExcel, + faFileExport: faFileExport, + faFileImage: faFileImage, + faFileImport: faFileImport, + faFileInvoice: faFileInvoice, + faFileInvoiceDollar: faFileInvoiceDollar, + faFileMedical: faFileMedical, + faFileMedicalAlt: faFileMedicalAlt, + faFilePdf: faFilePdf, + faFilePowerpoint: faFilePowerpoint, + faFilePrescription: faFilePrescription, + faFileSignature: faFileSignature, + faFileUpload: faFileUpload, + faFileVideo: faFileVideo, + faFileWord: faFileWord, + faFill: faFill, + faFillDrip: faFillDrip, + faFilm: faFilm, + faFilter: faFilter, + faFingerprint: faFingerprint, + faFire: faFire, + faFireExtinguisher: faFireExtinguisher, + faFirstAid: faFirstAid, + faFish: faFish, + faFlag: faFlag, + faFlagCheckered: faFlagCheckered, + faFlask: faFlask, + faFlushed: faFlushed, + faFolder: faFolder, + faFolderOpen: faFolderOpen, + faFont: faFont, + faFontAwesomeLogoFull: faFontAwesomeLogoFull, + faFootballBall: faFootballBall, + faForward: faForward, + faFrog: faFrog, + faFrown: faFrown, + faFrownOpen: faFrownOpen, + faFutbol: faFutbol, + faGamepad: faGamepad, + faGasPump: faGasPump, + faGavel: faGavel, + faGem: faGem, + faGenderless: faGenderless, + faGift: faGift, + faGlassMartini: faGlassMartini, + faGlassMartiniAlt: faGlassMartiniAlt, + faGlasses: faGlasses, + faGlobe: faGlobe, + faGlobeAfrica: faGlobeAfrica, + faGlobeAmericas: faGlobeAmericas, + faGlobeAsia: faGlobeAsia, + faGolfBall: faGolfBall, + faGraduationCap: faGraduationCap, + faGreaterThan: faGreaterThan, + faGreaterThanEqual: faGreaterThanEqual, + faGrimace: faGrimace, + faGrin: faGrin, + faGrinAlt: faGrinAlt, + faGrinBeam: faGrinBeam, + faGrinBeamSweat: faGrinBeamSweat, + faGrinHearts: faGrinHearts, + faGrinSquint: faGrinSquint, + faGrinSquintTears: faGrinSquintTears, + faGrinStars: faGrinStars, + faGrinTears: faGrinTears, + faGrinTongue: faGrinTongue, + faGrinTongueSquint: faGrinTongueSquint, + faGrinTongueWink: faGrinTongueWink, + faGrinWink: faGrinWink, + faGripHorizontal: faGripHorizontal, + faGripVertical: faGripVertical, + faHSquare: faHSquare, + faHandHolding: faHandHolding, + faHandHoldingHeart: faHandHoldingHeart, + faHandHoldingUsd: faHandHoldingUsd, + faHandLizard: faHandLizard, + faHandPaper: faHandPaper, + faHandPeace: faHandPeace, + faHandPointDown: faHandPointDown, + faHandPointLeft: faHandPointLeft, + faHandPointRight: faHandPointRight, + faHandPointUp: faHandPointUp, + faHandPointer: faHandPointer, + faHandRock: faHandRock, + faHandScissors: faHandScissors, + faHandSpock: faHandSpock, + faHands: faHands, + faHandsHelping: faHandsHelping, + faHandshake: faHandshake, + faHashtag: faHashtag, + faHdd: faHdd, + faHeading: faHeading, + faHeadphones: faHeadphones, + faHeadphonesAlt: faHeadphonesAlt, + faHeadset: faHeadset, + faHeart: faHeart, + faHeartbeat: faHeartbeat, + faHelicopter: faHelicopter, + faHighlighter: faHighlighter, + faHistory: faHistory, + faHockeyPuck: faHockeyPuck, + faHome: faHome, + faHospital: faHospital, + faHospitalAlt: faHospitalAlt, + faHospitalSymbol: faHospitalSymbol, + faHotTub: faHotTub, + faHotel: faHotel, + faHourglass: faHourglass, + faHourglassEnd: faHourglassEnd, + faHourglassHalf: faHourglassHalf, + faHourglassStart: faHourglassStart, + faICursor: faICursor, + faIdBadge: faIdBadge, + faIdCard: faIdCard, + faIdCardAlt: faIdCardAlt, + faImage: faImage, + faImages: faImages, + faInbox: faInbox, + faIndent: faIndent, + faIndustry: faIndustry, + faInfinity: faInfinity, + faInfo: faInfo, + faInfoCircle: faInfoCircle, + faItalic: faItalic, + faJoint: faJoint, + faKey: faKey, + faKeyboard: faKeyboard, + faKiss: faKiss, + faKissBeam: faKissBeam, + faKissWinkHeart: faKissWinkHeart, + faKiwiBird: faKiwiBird, + faLanguage: faLanguage, + faLaptop: faLaptop, + faLaugh: faLaugh, + faLaughBeam: faLaughBeam, + faLaughSquint: faLaughSquint, + faLaughWink: faLaughWink, + faLeaf: faLeaf, + faLemon: faLemon, + faLessThan: faLessThan, + faLessThanEqual: faLessThanEqual, + faLevelDownAlt: faLevelDownAlt, + faLevelUpAlt: faLevelUpAlt, + faLifeRing: faLifeRing, + faLightbulb: faLightbulb, + faLink: faLink, + faLiraSign: faLiraSign, + faList: faList, + faListAlt: faListAlt, + faListOl: faListOl, + faListUl: faListUl, + faLocationArrow: faLocationArrow, + faLock: faLock, + faLockOpen: faLockOpen, + faLongArrowAltDown: faLongArrowAltDown, + faLongArrowAltLeft: faLongArrowAltLeft, + faLongArrowAltRight: faLongArrowAltRight, + faLongArrowAltUp: faLongArrowAltUp, + faLowVision: faLowVision, + faLuggageCart: faLuggageCart, + faMagic: faMagic, + faMagnet: faMagnet, + faMale: faMale, + faMap: faMap, + faMapMarked: faMapMarked, + faMapMarkedAlt: faMapMarkedAlt, + faMapMarker: faMapMarker, + faMapMarkerAlt: faMapMarkerAlt, + faMapPin: faMapPin, + faMapSigns: faMapSigns, + faMarker: faMarker, + faMars: faMars, + faMarsDouble: faMarsDouble, + faMarsStroke: faMarsStroke, + faMarsStrokeH: faMarsStrokeH, + faMarsStrokeV: faMarsStrokeV, + faMedal: faMedal, + faMedkit: faMedkit, + faMeh: faMeh, + faMehBlank: faMehBlank, + faMehRollingEyes: faMehRollingEyes, + faMemory: faMemory, + faMercury: faMercury, + faMicrochip: faMicrochip, + faMicrophone: faMicrophone, + faMicrophoneAlt: faMicrophoneAlt, + faMicrophoneAltSlash: faMicrophoneAltSlash, + faMicrophoneSlash: faMicrophoneSlash, + faMinus: faMinus, + faMinusCircle: faMinusCircle, + faMinusSquare: faMinusSquare, + faMobile: faMobile, + faMobileAlt: faMobileAlt, + faMoneyBill: faMoneyBill, + faMoneyBillAlt: faMoneyBillAlt, + faMoneyBillWave: faMoneyBillWave, + faMoneyBillWaveAlt: faMoneyBillWaveAlt, + faMoneyCheck: faMoneyCheck, + faMoneyCheckAlt: faMoneyCheckAlt, + faMonument: faMonument, + faMoon: faMoon, + faMortarPestle: faMortarPestle, + faMotorcycle: faMotorcycle, + faMousePointer: faMousePointer, + faMusic: faMusic, + faNeuter: faNeuter, + faNewspaper: faNewspaper, + faNotEqual: faNotEqual, + faNotesMedical: faNotesMedical, + faObjectGroup: faObjectGroup, + faObjectUngroup: faObjectUngroup, + faOutdent: faOutdent, + faPaintBrush: faPaintBrush, + faPaintRoller: faPaintRoller, + faPalette: faPalette, + faPallet: faPallet, + faPaperPlane: faPaperPlane, + faPaperclip: faPaperclip, + faParachuteBox: faParachuteBox, + faParagraph: faParagraph, + faParking: faParking, + faPassport: faPassport, + faPaste: faPaste, + faPause: faPause, + faPauseCircle: faPauseCircle, + faPaw: faPaw, + faPen: faPen, + faPenAlt: faPenAlt, + faPenFancy: faPenFancy, + faPenNib: faPenNib, + faPenSquare: faPenSquare, + faPencilAlt: faPencilAlt, + faPencilRuler: faPencilRuler, + faPeopleCarry: faPeopleCarry, + faPercent: faPercent, + faPercentage: faPercentage, + faPhone: faPhone, + faPhoneSlash: faPhoneSlash, + faPhoneSquare: faPhoneSquare, + faPhoneVolume: faPhoneVolume, + faPiggyBank: faPiggyBank, + faPills: faPills, + faPlane: faPlane, + faPlaneArrival: faPlaneArrival, + faPlaneDeparture: faPlaneDeparture, + faPlay: faPlay, + faPlayCircle: faPlayCircle, + faPlug: faPlug, + faPlus: faPlus, + faPlusCircle: faPlusCircle, + faPlusSquare: faPlusSquare, + faPodcast: faPodcast, + faPoo: faPoo, + faPortrait: faPortrait, + faPoundSign: faPoundSign, + faPowerOff: faPowerOff, + faPrescription: faPrescription, + faPrescriptionBottle: faPrescriptionBottle, + faPrescriptionBottleAlt: faPrescriptionBottleAlt, + faPrint: faPrint, + faProcedures: faProcedures, + faProjectDiagram: faProjectDiagram, + faPuzzlePiece: faPuzzlePiece, + faQrcode: faQrcode, + faQuestion: faQuestion, + faQuestionCircle: faQuestionCircle, + faQuidditch: faQuidditch, + faQuoteLeft: faQuoteLeft, + faQuoteRight: faQuoteRight, + faRandom: faRandom, + faReceipt: faReceipt, + faRecycle: faRecycle, + faRedo: faRedo, + faRedoAlt: faRedoAlt, + faRegistered: faRegistered, + faReply: faReply, + faReplyAll: faReplyAll, + faRetweet: faRetweet, + faRibbon: faRibbon, + faRoad: faRoad, + faRobot: faRobot, + faRocket: faRocket, + faRss: faRss, + faRssSquare: faRssSquare, + faRubleSign: faRubleSign, + faRuler: faRuler, + faRulerCombined: faRulerCombined, + faRulerHorizontal: faRulerHorizontal, + faRulerVertical: faRulerVertical, + faRupeeSign: faRupeeSign, + faSadCry: faSadCry, + faSadTear: faSadTear, + faSave: faSave, + faSchool: faSchool, + faScrewdriver: faScrewdriver, + faSearch: faSearch, + faSearchMinus: faSearchMinus, + faSearchPlus: faSearchPlus, + faSeedling: faSeedling, + faServer: faServer, + faShare: faShare, + faShareAlt: faShareAlt, + faShareAltSquare: faShareAltSquare, + faShareSquare: faShareSquare, + faShekelSign: faShekelSign, + faShieldAlt: faShieldAlt, + faShip: faShip, + faShippingFast: faShippingFast, + faShoePrints: faShoePrints, + faShoppingBag: faShoppingBag, + faShoppingBasket: faShoppingBasket, + faShoppingCart: faShoppingCart, + faShower: faShower, + faShuttleVan: faShuttleVan, + faSign: faSign, + faSignInAlt: faSignInAlt, + faSignLanguage: faSignLanguage, + faSignOutAlt: faSignOutAlt, + faSignal: faSignal, + faSignature: faSignature, + faSitemap: faSitemap, + faSkull: faSkull, + faSlidersH: faSlidersH, + faSmile: faSmile, + faSmileBeam: faSmileBeam, + faSmileWink: faSmileWink, + faSmoking: faSmoking, + faSmokingBan: faSmokingBan, + faSnowflake: faSnowflake, + faSolarPanel: faSolarPanel, + faSort: faSort, + faSortAlphaDown: faSortAlphaDown, + faSortAlphaUp: faSortAlphaUp, + faSortAmountDown: faSortAmountDown, + faSortAmountUp: faSortAmountUp, + faSortDown: faSortDown, + faSortNumericDown: faSortNumericDown, + faSortNumericUp: faSortNumericUp, + faSortUp: faSortUp, + faSpa: faSpa, + faSpaceShuttle: faSpaceShuttle, + faSpinner: faSpinner, + faSplotch: faSplotch, + faSprayCan: faSprayCan, + faSquare: faSquare, + faSquareFull: faSquareFull, + faStamp: faStamp, + faStar: faStar, + faStarHalf: faStarHalf, + faStarHalfAlt: faStarHalfAlt, + faStepBackward: faStepBackward, + faStepForward: faStepForward, + faStethoscope: faStethoscope, + faStickyNote: faStickyNote, + faStop: faStop, + faStopCircle: faStopCircle, + faStopwatch: faStopwatch, + faStore: faStore, + faStoreAlt: faStoreAlt, + faStream: faStream, + faStreetView: faStreetView, + faStrikethrough: faStrikethrough, + faStroopwafel: faStroopwafel, + faSubscript: faSubscript, + faSubway: faSubway, + faSuitcase: faSuitcase, + faSuitcaseRolling: faSuitcaseRolling, + faSun: faSun, + faSuperscript: faSuperscript, + faSurprise: faSurprise, + faSwatchbook: faSwatchbook, + faSwimmer: faSwimmer, + faSwimmingPool: faSwimmingPool, + faSync: faSync, + faSyncAlt: faSyncAlt, + faSyringe: faSyringe, + faTable: faTable, + faTableTennis: faTableTennis, + faTablet: faTablet, + faTabletAlt: faTabletAlt, + faTablets: faTablets, + faTachometerAlt: faTachometerAlt, + faTag: faTag, + faTags: faTags, + faTape: faTape, + faTasks: faTasks, + faTaxi: faTaxi, + faTerminal: faTerminal, + faTextHeight: faTextHeight, + faTextWidth: faTextWidth, + faTh: faTh, + faThLarge: faThLarge, + faThList: faThList, + faThermometer: faThermometer, + faThermometerEmpty: faThermometerEmpty, + faThermometerFull: faThermometerFull, + faThermometerHalf: faThermometerHalf, + faThermometerQuarter: faThermometerQuarter, + faThermometerThreeQuarters: faThermometerThreeQuarters, + faThumbsDown: faThumbsDown, + faThumbsUp: faThumbsUp, + faThumbtack: faThumbtack, + faTicketAlt: faTicketAlt, + faTimes: faTimes, + faTimesCircle: faTimesCircle, + faTint: faTint, + faTintSlash: faTintSlash, + faTired: faTired, + faToggleOff: faToggleOff, + faToggleOn: faToggleOn, + faToolbox: faToolbox, + faTooth: faTooth, + faTrademark: faTrademark, + faTrain: faTrain, + faTransgender: faTransgender, + faTransgenderAlt: faTransgenderAlt, + faTrash: faTrash, + faTrashAlt: faTrashAlt, + faTree: faTree, + faTrophy: faTrophy, + faTruck: faTruck, + faTruckLoading: faTruckLoading, + faTruckMoving: faTruckMoving, + faTshirt: faTshirt, + faTty: faTty, + faTv: faTv, + faUmbrella: faUmbrella, + faUmbrellaBeach: faUmbrellaBeach, + faUnderline: faUnderline, + faUndo: faUndo, + faUndoAlt: faUndoAlt, + faUniversalAccess: faUniversalAccess, + faUniversity: faUniversity, + faUnlink: faUnlink, + faUnlock: faUnlock, + faUnlockAlt: faUnlockAlt, + faUpload: faUpload, + faUser: faUser, + faUserAlt: faUserAlt, + faUserAltSlash: faUserAltSlash, + faUserAstronaut: faUserAstronaut, + faUserCheck: faUserCheck, + faUserCircle: faUserCircle, + faUserClock: faUserClock, + faUserCog: faUserCog, + faUserEdit: faUserEdit, + faUserFriends: faUserFriends, + faUserGraduate: faUserGraduate, + faUserLock: faUserLock, + faUserMd: faUserMd, + faUserMinus: faUserMinus, + faUserNinja: faUserNinja, + faUserPlus: faUserPlus, + faUserSecret: faUserSecret, + faUserShield: faUserShield, + faUserSlash: faUserSlash, + faUserTag: faUserTag, + faUserTie: faUserTie, + faUserTimes: faUserTimes, + faUsers: faUsers, + faUsersCog: faUsersCog, + faUtensilSpoon: faUtensilSpoon, + faUtensils: faUtensils, + faVectorSquare: faVectorSquare, + faVenus: faVenus, + faVenusDouble: faVenusDouble, + faVenusMars: faVenusMars, + faVial: faVial, + faVials: faVials, + faVideo: faVideo, + faVideoSlash: faVideoSlash, + faVolleyballBall: faVolleyballBall, + faVolumeDown: faVolumeDown, + faVolumeOff: faVolumeOff, + faVolumeUp: faVolumeUp, + faWalking: faWalking, + faWallet: faWallet, + faWarehouse: faWarehouse, + faWeight: faWeight, + faWeightHanging: faWeightHanging, + faWheelchair: faWheelchair, + faWifi: faWifi, + faWindowClose: faWindowClose, + faWindowMaximize: faWindowMaximize, + faWindowMinimize: faWindowMinimize, + faWindowRestore: faWindowRestore, + faWineGlass: faWineGlass, + faWineGlassAlt: faWineGlassAlt, + faWonSign: faWonSign, + faWrench: faWrench, + faXRay: faXRay, + faYenSign: faYenSign +}; + +exports.fas = _iconsCache; +exports.prefix = prefix; +exports.faAddressBook = faAddressBook; +exports.faAddressCard = faAddressCard; +exports.faAdjust = faAdjust; +exports.faAlignCenter = faAlignCenter; +exports.faAlignJustify = faAlignJustify; +exports.faAlignLeft = faAlignLeft; +exports.faAlignRight = faAlignRight; +exports.faAllergies = faAllergies; +exports.faAmbulance = faAmbulance; +exports.faAmericanSignLanguageInterpreting = faAmericanSignLanguageInterpreting; +exports.faAnchor = faAnchor; +exports.faAngleDoubleDown = faAngleDoubleDown; +exports.faAngleDoubleLeft = faAngleDoubleLeft; +exports.faAngleDoubleRight = faAngleDoubleRight; +exports.faAngleDoubleUp = faAngleDoubleUp; +exports.faAngleDown = faAngleDown; +exports.faAngleLeft = faAngleLeft; +exports.faAngleRight = faAngleRight; +exports.faAngleUp = faAngleUp; +exports.faAngry = faAngry; +exports.faArchive = faArchive; +exports.faArchway = faArchway; +exports.faArrowAltCircleDown = faArrowAltCircleDown; +exports.faArrowAltCircleLeft = faArrowAltCircleLeft; +exports.faArrowAltCircleRight = faArrowAltCircleRight; +exports.faArrowAltCircleUp = faArrowAltCircleUp; +exports.faArrowCircleDown = faArrowCircleDown; +exports.faArrowCircleLeft = faArrowCircleLeft; +exports.faArrowCircleRight = faArrowCircleRight; +exports.faArrowCircleUp = faArrowCircleUp; +exports.faArrowDown = faArrowDown; +exports.faArrowLeft = faArrowLeft; +exports.faArrowRight = faArrowRight; +exports.faArrowUp = faArrowUp; +exports.faArrowsAlt = faArrowsAlt; +exports.faArrowsAltH = faArrowsAltH; +exports.faArrowsAltV = faArrowsAltV; +exports.faAssistiveListeningSystems = faAssistiveListeningSystems; +exports.faAsterisk = faAsterisk; +exports.faAt = faAt; +exports.faAtlas = faAtlas; +exports.faAudioDescription = faAudioDescription; +exports.faAward = faAward; +exports.faBackspace = faBackspace; +exports.faBackward = faBackward; +exports.faBalanceScale = faBalanceScale; +exports.faBan = faBan; +exports.faBandAid = faBandAid; +exports.faBarcode = faBarcode; +exports.faBars = faBars; +exports.faBaseballBall = faBaseballBall; +exports.faBasketballBall = faBasketballBall; +exports.faBath = faBath; +exports.faBatteryEmpty = faBatteryEmpty; +exports.faBatteryFull = faBatteryFull; +exports.faBatteryHalf = faBatteryHalf; +exports.faBatteryQuarter = faBatteryQuarter; +exports.faBatteryThreeQuarters = faBatteryThreeQuarters; +exports.faBed = faBed; +exports.faBeer = faBeer; +exports.faBell = faBell; +exports.faBellSlash = faBellSlash; +exports.faBezierCurve = faBezierCurve; +exports.faBicycle = faBicycle; +exports.faBinoculars = faBinoculars; +exports.faBirthdayCake = faBirthdayCake; +exports.faBlender = faBlender; +exports.faBlind = faBlind; +exports.faBold = faBold; +exports.faBolt = faBolt; +exports.faBomb = faBomb; +exports.faBong = faBong; +exports.faBook = faBook; +exports.faBookOpen = faBookOpen; +exports.faBookmark = faBookmark; +exports.faBowlingBall = faBowlingBall; +exports.faBox = faBox; +exports.faBoxOpen = faBoxOpen; +exports.faBoxes = faBoxes; +exports.faBraille = faBraille; +exports.faBriefcase = faBriefcase; +exports.faBriefcaseMedical = faBriefcaseMedical; +exports.faBroadcastTower = faBroadcastTower; +exports.faBroom = faBroom; +exports.faBrush = faBrush; +exports.faBug = faBug; +exports.faBuilding = faBuilding; +exports.faBullhorn = faBullhorn; +exports.faBullseye = faBullseye; +exports.faBurn = faBurn; +exports.faBus = faBus; +exports.faBusAlt = faBusAlt; +exports.faCalculator = faCalculator; +exports.faCalendar = faCalendar; +exports.faCalendarAlt = faCalendarAlt; +exports.faCalendarCheck = faCalendarCheck; +exports.faCalendarMinus = faCalendarMinus; +exports.faCalendarPlus = faCalendarPlus; +exports.faCalendarTimes = faCalendarTimes; +exports.faCamera = faCamera; +exports.faCameraRetro = faCameraRetro; +exports.faCannabis = faCannabis; +exports.faCapsules = faCapsules; +exports.faCar = faCar; +exports.faCaretDown = faCaretDown; +exports.faCaretLeft = faCaretLeft; +exports.faCaretRight = faCaretRight; +exports.faCaretSquareDown = faCaretSquareDown; +exports.faCaretSquareLeft = faCaretSquareLeft; +exports.faCaretSquareRight = faCaretSquareRight; +exports.faCaretSquareUp = faCaretSquareUp; +exports.faCaretUp = faCaretUp; +exports.faCartArrowDown = faCartArrowDown; +exports.faCartPlus = faCartPlus; +exports.faCertificate = faCertificate; +exports.faChalkboard = faChalkboard; +exports.faChalkboardTeacher = faChalkboardTeacher; +exports.faChartArea = faChartArea; +exports.faChartBar = faChartBar; +exports.faChartLine = faChartLine; +exports.faChartPie = faChartPie; +exports.faCheck = faCheck; +exports.faCheckCircle = faCheckCircle; +exports.faCheckDouble = faCheckDouble; +exports.faCheckSquare = faCheckSquare; +exports.faChess = faChess; +exports.faChessBishop = faChessBishop; +exports.faChessBoard = faChessBoard; +exports.faChessKing = faChessKing; +exports.faChessKnight = faChessKnight; +exports.faChessPawn = faChessPawn; +exports.faChessQueen = faChessQueen; +exports.faChessRook = faChessRook; +exports.faChevronCircleDown = faChevronCircleDown; +exports.faChevronCircleLeft = faChevronCircleLeft; +exports.faChevronCircleRight = faChevronCircleRight; +exports.faChevronCircleUp = faChevronCircleUp; +exports.faChevronDown = faChevronDown; +exports.faChevronLeft = faChevronLeft; +exports.faChevronRight = faChevronRight; +exports.faChevronUp = faChevronUp; +exports.faChild = faChild; +exports.faChurch = faChurch; +exports.faCircle = faCircle; +exports.faCircleNotch = faCircleNotch; +exports.faClipboard = faClipboard; +exports.faClipboardCheck = faClipboardCheck; +exports.faClipboardList = faClipboardList; +exports.faClock = faClock; +exports.faClone = faClone; +exports.faClosedCaptioning = faClosedCaptioning; +exports.faCloud = faCloud; +exports.faCloudDownloadAlt = faCloudDownloadAlt; +exports.faCloudUploadAlt = faCloudUploadAlt; +exports.faCocktail = faCocktail; +exports.faCode = faCode; +exports.faCodeBranch = faCodeBranch; +exports.faCoffee = faCoffee; +exports.faCog = faCog; +exports.faCogs = faCogs; +exports.faCoins = faCoins; +exports.faColumns = faColumns; +exports.faComment = faComment; +exports.faCommentAlt = faCommentAlt; +exports.faCommentDots = faCommentDots; +exports.faCommentSlash = faCommentSlash; +exports.faComments = faComments; +exports.faCompactDisc = faCompactDisc; +exports.faCompass = faCompass; +exports.faCompress = faCompress; +exports.faConciergeBell = faConciergeBell; +exports.faCookie = faCookie; +exports.faCookieBite = faCookieBite; +exports.faCopy = faCopy; +exports.faCopyright = faCopyright; +exports.faCouch = faCouch; +exports.faCreditCard = faCreditCard; +exports.faCrop = faCrop; +exports.faCropAlt = faCropAlt; +exports.faCrosshairs = faCrosshairs; +exports.faCrow = faCrow; +exports.faCrown = faCrown; +exports.faCube = faCube; +exports.faCubes = faCubes; +exports.faCut = faCut; +exports.faDatabase = faDatabase; +exports.faDeaf = faDeaf; +exports.faDesktop = faDesktop; +exports.faDiagnoses = faDiagnoses; +exports.faDice = faDice; +exports.faDiceFive = faDiceFive; +exports.faDiceFour = faDiceFour; +exports.faDiceOne = faDiceOne; +exports.faDiceSix = faDiceSix; +exports.faDiceThree = faDiceThree; +exports.faDiceTwo = faDiceTwo; +exports.faDigitalTachograph = faDigitalTachograph; +exports.faDivide = faDivide; +exports.faDizzy = faDizzy; +exports.faDna = faDna; +exports.faDollarSign = faDollarSign; +exports.faDolly = faDolly; +exports.faDollyFlatbed = faDollyFlatbed; +exports.faDonate = faDonate; +exports.faDoorClosed = faDoorClosed; +exports.faDoorOpen = faDoorOpen; +exports.faDotCircle = faDotCircle; +exports.faDove = faDove; +exports.faDownload = faDownload; +exports.faDraftingCompass = faDraftingCompass; +exports.faDrum = faDrum; +exports.faDrumSteelpan = faDrumSteelpan; +exports.faDumbbell = faDumbbell; +exports.faEdit = faEdit; +exports.faEject = faEject; +exports.faEllipsisH = faEllipsisH; +exports.faEllipsisV = faEllipsisV; +exports.faEnvelope = faEnvelope; +exports.faEnvelopeOpen = faEnvelopeOpen; +exports.faEnvelopeSquare = faEnvelopeSquare; +exports.faEquals = faEquals; +exports.faEraser = faEraser; +exports.faEuroSign = faEuroSign; +exports.faExchangeAlt = faExchangeAlt; +exports.faExclamation = faExclamation; +exports.faExclamationCircle = faExclamationCircle; +exports.faExclamationTriangle = faExclamationTriangle; +exports.faExpand = faExpand; +exports.faExpandArrowsAlt = faExpandArrowsAlt; +exports.faExternalLinkAlt = faExternalLinkAlt; +exports.faExternalLinkSquareAlt = faExternalLinkSquareAlt; +exports.faEye = faEye; +exports.faEyeDropper = faEyeDropper; +exports.faEyeSlash = faEyeSlash; +exports.faFastBackward = faFastBackward; +exports.faFastForward = faFastForward; +exports.faFax = faFax; +exports.faFeather = faFeather; +exports.faFeatherAlt = faFeatherAlt; +exports.faFemale = faFemale; +exports.faFighterJet = faFighterJet; +exports.faFile = faFile; +exports.faFileAlt = faFileAlt; +exports.faFileArchive = faFileArchive; +exports.faFileAudio = faFileAudio; +exports.faFileCode = faFileCode; +exports.faFileContract = faFileContract; +exports.faFileDownload = faFileDownload; +exports.faFileExcel = faFileExcel; +exports.faFileExport = faFileExport; +exports.faFileImage = faFileImage; +exports.faFileImport = faFileImport; +exports.faFileInvoice = faFileInvoice; +exports.faFileInvoiceDollar = faFileInvoiceDollar; +exports.faFileMedical = faFileMedical; +exports.faFileMedicalAlt = faFileMedicalAlt; +exports.faFilePdf = faFilePdf; +exports.faFilePowerpoint = faFilePowerpoint; +exports.faFilePrescription = faFilePrescription; +exports.faFileSignature = faFileSignature; +exports.faFileUpload = faFileUpload; +exports.faFileVideo = faFileVideo; +exports.faFileWord = faFileWord; +exports.faFill = faFill; +exports.faFillDrip = faFillDrip; +exports.faFilm = faFilm; +exports.faFilter = faFilter; +exports.faFingerprint = faFingerprint; +exports.faFire = faFire; +exports.faFireExtinguisher = faFireExtinguisher; +exports.faFirstAid = faFirstAid; +exports.faFish = faFish; +exports.faFlag = faFlag; +exports.faFlagCheckered = faFlagCheckered; +exports.faFlask = faFlask; +exports.faFlushed = faFlushed; +exports.faFolder = faFolder; +exports.faFolderOpen = faFolderOpen; +exports.faFont = faFont; +exports.faFontAwesomeLogoFull = faFontAwesomeLogoFull; +exports.faFootballBall = faFootballBall; +exports.faForward = faForward; +exports.faFrog = faFrog; +exports.faFrown = faFrown; +exports.faFrownOpen = faFrownOpen; +exports.faFutbol = faFutbol; +exports.faGamepad = faGamepad; +exports.faGasPump = faGasPump; +exports.faGavel = faGavel; +exports.faGem = faGem; +exports.faGenderless = faGenderless; +exports.faGift = faGift; +exports.faGlassMartini = faGlassMartini; +exports.faGlassMartiniAlt = faGlassMartiniAlt; +exports.faGlasses = faGlasses; +exports.faGlobe = faGlobe; +exports.faGlobeAfrica = faGlobeAfrica; +exports.faGlobeAmericas = faGlobeAmericas; +exports.faGlobeAsia = faGlobeAsia; +exports.faGolfBall = faGolfBall; +exports.faGraduationCap = faGraduationCap; +exports.faGreaterThan = faGreaterThan; +exports.faGreaterThanEqual = faGreaterThanEqual; +exports.faGrimace = faGrimace; +exports.faGrin = faGrin; +exports.faGrinAlt = faGrinAlt; +exports.faGrinBeam = faGrinBeam; +exports.faGrinBeamSweat = faGrinBeamSweat; +exports.faGrinHearts = faGrinHearts; +exports.faGrinSquint = faGrinSquint; +exports.faGrinSquintTears = faGrinSquintTears; +exports.faGrinStars = faGrinStars; +exports.faGrinTears = faGrinTears; +exports.faGrinTongue = faGrinTongue; +exports.faGrinTongueSquint = faGrinTongueSquint; +exports.faGrinTongueWink = faGrinTongueWink; +exports.faGrinWink = faGrinWink; +exports.faGripHorizontal = faGripHorizontal; +exports.faGripVertical = faGripVertical; +exports.faHSquare = faHSquare; +exports.faHandHolding = faHandHolding; +exports.faHandHoldingHeart = faHandHoldingHeart; +exports.faHandHoldingUsd = faHandHoldingUsd; +exports.faHandLizard = faHandLizard; +exports.faHandPaper = faHandPaper; +exports.faHandPeace = faHandPeace; +exports.faHandPointDown = faHandPointDown; +exports.faHandPointLeft = faHandPointLeft; +exports.faHandPointRight = faHandPointRight; +exports.faHandPointUp = faHandPointUp; +exports.faHandPointer = faHandPointer; +exports.faHandRock = faHandRock; +exports.faHandScissors = faHandScissors; +exports.faHandSpock = faHandSpock; +exports.faHands = faHands; +exports.faHandsHelping = faHandsHelping; +exports.faHandshake = faHandshake; +exports.faHashtag = faHashtag; +exports.faHdd = faHdd; +exports.faHeading = faHeading; +exports.faHeadphones = faHeadphones; +exports.faHeadphonesAlt = faHeadphonesAlt; +exports.faHeadset = faHeadset; +exports.faHeart = faHeart; +exports.faHeartbeat = faHeartbeat; +exports.faHelicopter = faHelicopter; +exports.faHighlighter = faHighlighter; +exports.faHistory = faHistory; +exports.faHockeyPuck = faHockeyPuck; +exports.faHome = faHome; +exports.faHospital = faHospital; +exports.faHospitalAlt = faHospitalAlt; +exports.faHospitalSymbol = faHospitalSymbol; +exports.faHotTub = faHotTub; +exports.faHotel = faHotel; +exports.faHourglass = faHourglass; +exports.faHourglassEnd = faHourglassEnd; +exports.faHourglassHalf = faHourglassHalf; +exports.faHourglassStart = faHourglassStart; +exports.faICursor = faICursor; +exports.faIdBadge = faIdBadge; +exports.faIdCard = faIdCard; +exports.faIdCardAlt = faIdCardAlt; +exports.faImage = faImage; +exports.faImages = faImages; +exports.faInbox = faInbox; +exports.faIndent = faIndent; +exports.faIndustry = faIndustry; +exports.faInfinity = faInfinity; +exports.faInfo = faInfo; +exports.faInfoCircle = faInfoCircle; +exports.faItalic = faItalic; +exports.faJoint = faJoint; +exports.faKey = faKey; +exports.faKeyboard = faKeyboard; +exports.faKiss = faKiss; +exports.faKissBeam = faKissBeam; +exports.faKissWinkHeart = faKissWinkHeart; +exports.faKiwiBird = faKiwiBird; +exports.faLanguage = faLanguage; +exports.faLaptop = faLaptop; +exports.faLaugh = faLaugh; +exports.faLaughBeam = faLaughBeam; +exports.faLaughSquint = faLaughSquint; +exports.faLaughWink = faLaughWink; +exports.faLeaf = faLeaf; +exports.faLemon = faLemon; +exports.faLessThan = faLessThan; +exports.faLessThanEqual = faLessThanEqual; +exports.faLevelDownAlt = faLevelDownAlt; +exports.faLevelUpAlt = faLevelUpAlt; +exports.faLifeRing = faLifeRing; +exports.faLightbulb = faLightbulb; +exports.faLink = faLink; +exports.faLiraSign = faLiraSign; +exports.faList = faList; +exports.faListAlt = faListAlt; +exports.faListOl = faListOl; +exports.faListUl = faListUl; +exports.faLocationArrow = faLocationArrow; +exports.faLock = faLock; +exports.faLockOpen = faLockOpen; +exports.faLongArrowAltDown = faLongArrowAltDown; +exports.faLongArrowAltLeft = faLongArrowAltLeft; +exports.faLongArrowAltRight = faLongArrowAltRight; +exports.faLongArrowAltUp = faLongArrowAltUp; +exports.faLowVision = faLowVision; +exports.faLuggageCart = faLuggageCart; +exports.faMagic = faMagic; +exports.faMagnet = faMagnet; +exports.faMale = faMale; +exports.faMap = faMap; +exports.faMapMarked = faMapMarked; +exports.faMapMarkedAlt = faMapMarkedAlt; +exports.faMapMarker = faMapMarker; +exports.faMapMarkerAlt = faMapMarkerAlt; +exports.faMapPin = faMapPin; +exports.faMapSigns = faMapSigns; +exports.faMarker = faMarker; +exports.faMars = faMars; +exports.faMarsDouble = faMarsDouble; +exports.faMarsStroke = faMarsStroke; +exports.faMarsStrokeH = faMarsStrokeH; +exports.faMarsStrokeV = faMarsStrokeV; +exports.faMedal = faMedal; +exports.faMedkit = faMedkit; +exports.faMeh = faMeh; +exports.faMehBlank = faMehBlank; +exports.faMehRollingEyes = faMehRollingEyes; +exports.faMemory = faMemory; +exports.faMercury = faMercury; +exports.faMicrochip = faMicrochip; +exports.faMicrophone = faMicrophone; +exports.faMicrophoneAlt = faMicrophoneAlt; +exports.faMicrophoneAltSlash = faMicrophoneAltSlash; +exports.faMicrophoneSlash = faMicrophoneSlash; +exports.faMinus = faMinus; +exports.faMinusCircle = faMinusCircle; +exports.faMinusSquare = faMinusSquare; +exports.faMobile = faMobile; +exports.faMobileAlt = faMobileAlt; +exports.faMoneyBill = faMoneyBill; +exports.faMoneyBillAlt = faMoneyBillAlt; +exports.faMoneyBillWave = faMoneyBillWave; +exports.faMoneyBillWaveAlt = faMoneyBillWaveAlt; +exports.faMoneyCheck = faMoneyCheck; +exports.faMoneyCheckAlt = faMoneyCheckAlt; +exports.faMonument = faMonument; +exports.faMoon = faMoon; +exports.faMortarPestle = faMortarPestle; +exports.faMotorcycle = faMotorcycle; +exports.faMousePointer = faMousePointer; +exports.faMusic = faMusic; +exports.faNeuter = faNeuter; +exports.faNewspaper = faNewspaper; +exports.faNotEqual = faNotEqual; +exports.faNotesMedical = faNotesMedical; +exports.faObjectGroup = faObjectGroup; +exports.faObjectUngroup = faObjectUngroup; +exports.faOutdent = faOutdent; +exports.faPaintBrush = faPaintBrush; +exports.faPaintRoller = faPaintRoller; +exports.faPalette = faPalette; +exports.faPallet = faPallet; +exports.faPaperPlane = faPaperPlane; +exports.faPaperclip = faPaperclip; +exports.faParachuteBox = faParachuteBox; +exports.faParagraph = faParagraph; +exports.faParking = faParking; +exports.faPassport = faPassport; +exports.faPaste = faPaste; +exports.faPause = faPause; +exports.faPauseCircle = faPauseCircle; +exports.faPaw = faPaw; +exports.faPen = faPen; +exports.faPenAlt = faPenAlt; +exports.faPenFancy = faPenFancy; +exports.faPenNib = faPenNib; +exports.faPenSquare = faPenSquare; +exports.faPencilAlt = faPencilAlt; +exports.faPencilRuler = faPencilRuler; +exports.faPeopleCarry = faPeopleCarry; +exports.faPercent = faPercent; +exports.faPercentage = faPercentage; +exports.faPhone = faPhone; +exports.faPhoneSlash = faPhoneSlash; +exports.faPhoneSquare = faPhoneSquare; +exports.faPhoneVolume = faPhoneVolume; +exports.faPiggyBank = faPiggyBank; +exports.faPills = faPills; +exports.faPlane = faPlane; +exports.faPlaneArrival = faPlaneArrival; +exports.faPlaneDeparture = faPlaneDeparture; +exports.faPlay = faPlay; +exports.faPlayCircle = faPlayCircle; +exports.faPlug = faPlug; +exports.faPlus = faPlus; +exports.faPlusCircle = faPlusCircle; +exports.faPlusSquare = faPlusSquare; +exports.faPodcast = faPodcast; +exports.faPoo = faPoo; +exports.faPortrait = faPortrait; +exports.faPoundSign = faPoundSign; +exports.faPowerOff = faPowerOff; +exports.faPrescription = faPrescription; +exports.faPrescriptionBottle = faPrescriptionBottle; +exports.faPrescriptionBottleAlt = faPrescriptionBottleAlt; +exports.faPrint = faPrint; +exports.faProcedures = faProcedures; +exports.faProjectDiagram = faProjectDiagram; +exports.faPuzzlePiece = faPuzzlePiece; +exports.faQrcode = faQrcode; +exports.faQuestion = faQuestion; +exports.faQuestionCircle = faQuestionCircle; +exports.faQuidditch = faQuidditch; +exports.faQuoteLeft = faQuoteLeft; +exports.faQuoteRight = faQuoteRight; +exports.faRandom = faRandom; +exports.faReceipt = faReceipt; +exports.faRecycle = faRecycle; +exports.faRedo = faRedo; +exports.faRedoAlt = faRedoAlt; +exports.faRegistered = faRegistered; +exports.faReply = faReply; +exports.faReplyAll = faReplyAll; +exports.faRetweet = faRetweet; +exports.faRibbon = faRibbon; +exports.faRoad = faRoad; +exports.faRobot = faRobot; +exports.faRocket = faRocket; +exports.faRss = faRss; +exports.faRssSquare = faRssSquare; +exports.faRubleSign = faRubleSign; +exports.faRuler = faRuler; +exports.faRulerCombined = faRulerCombined; +exports.faRulerHorizontal = faRulerHorizontal; +exports.faRulerVertical = faRulerVertical; +exports.faRupeeSign = faRupeeSign; +exports.faSadCry = faSadCry; +exports.faSadTear = faSadTear; +exports.faSave = faSave; +exports.faSchool = faSchool; +exports.faScrewdriver = faScrewdriver; +exports.faSearch = faSearch; +exports.faSearchMinus = faSearchMinus; +exports.faSearchPlus = faSearchPlus; +exports.faSeedling = faSeedling; +exports.faServer = faServer; +exports.faShare = faShare; +exports.faShareAlt = faShareAlt; +exports.faShareAltSquare = faShareAltSquare; +exports.faShareSquare = faShareSquare; +exports.faShekelSign = faShekelSign; +exports.faShieldAlt = faShieldAlt; +exports.faShip = faShip; +exports.faShippingFast = faShippingFast; +exports.faShoePrints = faShoePrints; +exports.faShoppingBag = faShoppingBag; +exports.faShoppingBasket = faShoppingBasket; +exports.faShoppingCart = faShoppingCart; +exports.faShower = faShower; +exports.faShuttleVan = faShuttleVan; +exports.faSign = faSign; +exports.faSignInAlt = faSignInAlt; +exports.faSignLanguage = faSignLanguage; +exports.faSignOutAlt = faSignOutAlt; +exports.faSignal = faSignal; +exports.faSignature = faSignature; +exports.faSitemap = faSitemap; +exports.faSkull = faSkull; +exports.faSlidersH = faSlidersH; +exports.faSmile = faSmile; +exports.faSmileBeam = faSmileBeam; +exports.faSmileWink = faSmileWink; +exports.faSmoking = faSmoking; +exports.faSmokingBan = faSmokingBan; +exports.faSnowflake = faSnowflake; +exports.faSolarPanel = faSolarPanel; +exports.faSort = faSort; +exports.faSortAlphaDown = faSortAlphaDown; +exports.faSortAlphaUp = faSortAlphaUp; +exports.faSortAmountDown = faSortAmountDown; +exports.faSortAmountUp = faSortAmountUp; +exports.faSortDown = faSortDown; +exports.faSortNumericDown = faSortNumericDown; +exports.faSortNumericUp = faSortNumericUp; +exports.faSortUp = faSortUp; +exports.faSpa = faSpa; +exports.faSpaceShuttle = faSpaceShuttle; +exports.faSpinner = faSpinner; +exports.faSplotch = faSplotch; +exports.faSprayCan = faSprayCan; +exports.faSquare = faSquare; +exports.faSquareFull = faSquareFull; +exports.faStamp = faStamp; +exports.faStar = faStar; +exports.faStarHalf = faStarHalf; +exports.faStarHalfAlt = faStarHalfAlt; +exports.faStepBackward = faStepBackward; +exports.faStepForward = faStepForward; +exports.faStethoscope = faStethoscope; +exports.faStickyNote = faStickyNote; +exports.faStop = faStop; +exports.faStopCircle = faStopCircle; +exports.faStopwatch = faStopwatch; +exports.faStore = faStore; +exports.faStoreAlt = faStoreAlt; +exports.faStream = faStream; +exports.faStreetView = faStreetView; +exports.faStrikethrough = faStrikethrough; +exports.faStroopwafel = faStroopwafel; +exports.faSubscript = faSubscript; +exports.faSubway = faSubway; +exports.faSuitcase = faSuitcase; +exports.faSuitcaseRolling = faSuitcaseRolling; +exports.faSun = faSun; +exports.faSuperscript = faSuperscript; +exports.faSurprise = faSurprise; +exports.faSwatchbook = faSwatchbook; +exports.faSwimmer = faSwimmer; +exports.faSwimmingPool = faSwimmingPool; +exports.faSync = faSync; +exports.faSyncAlt = faSyncAlt; +exports.faSyringe = faSyringe; +exports.faTable = faTable; +exports.faTableTennis = faTableTennis; +exports.faTablet = faTablet; +exports.faTabletAlt = faTabletAlt; +exports.faTablets = faTablets; +exports.faTachometerAlt = faTachometerAlt; +exports.faTag = faTag; +exports.faTags = faTags; +exports.faTape = faTape; +exports.faTasks = faTasks; +exports.faTaxi = faTaxi; +exports.faTerminal = faTerminal; +exports.faTextHeight = faTextHeight; +exports.faTextWidth = faTextWidth; +exports.faTh = faTh; +exports.faThLarge = faThLarge; +exports.faThList = faThList; +exports.faThermometer = faThermometer; +exports.faThermometerEmpty = faThermometerEmpty; +exports.faThermometerFull = faThermometerFull; +exports.faThermometerHalf = faThermometerHalf; +exports.faThermometerQuarter = faThermometerQuarter; +exports.faThermometerThreeQuarters = faThermometerThreeQuarters; +exports.faThumbsDown = faThumbsDown; +exports.faThumbsUp = faThumbsUp; +exports.faThumbtack = faThumbtack; +exports.faTicketAlt = faTicketAlt; +exports.faTimes = faTimes; +exports.faTimesCircle = faTimesCircle; +exports.faTint = faTint; +exports.faTintSlash = faTintSlash; +exports.faTired = faTired; +exports.faToggleOff = faToggleOff; +exports.faToggleOn = faToggleOn; +exports.faToolbox = faToolbox; +exports.faTooth = faTooth; +exports.faTrademark = faTrademark; +exports.faTrain = faTrain; +exports.faTransgender = faTransgender; +exports.faTransgenderAlt = faTransgenderAlt; +exports.faTrash = faTrash; +exports.faTrashAlt = faTrashAlt; +exports.faTree = faTree; +exports.faTrophy = faTrophy; +exports.faTruck = faTruck; +exports.faTruckLoading = faTruckLoading; +exports.faTruckMoving = faTruckMoving; +exports.faTshirt = faTshirt; +exports.faTty = faTty; +exports.faTv = faTv; +exports.faUmbrella = faUmbrella; +exports.faUmbrellaBeach = faUmbrellaBeach; +exports.faUnderline = faUnderline; +exports.faUndo = faUndo; +exports.faUndoAlt = faUndoAlt; +exports.faUniversalAccess = faUniversalAccess; +exports.faUniversity = faUniversity; +exports.faUnlink = faUnlink; +exports.faUnlock = faUnlock; +exports.faUnlockAlt = faUnlockAlt; +exports.faUpload = faUpload; +exports.faUser = faUser; +exports.faUserAlt = faUserAlt; +exports.faUserAltSlash = faUserAltSlash; +exports.faUserAstronaut = faUserAstronaut; +exports.faUserCheck = faUserCheck; +exports.faUserCircle = faUserCircle; +exports.faUserClock = faUserClock; +exports.faUserCog = faUserCog; +exports.faUserEdit = faUserEdit; +exports.faUserFriends = faUserFriends; +exports.faUserGraduate = faUserGraduate; +exports.faUserLock = faUserLock; +exports.faUserMd = faUserMd; +exports.faUserMinus = faUserMinus; +exports.faUserNinja = faUserNinja; +exports.faUserPlus = faUserPlus; +exports.faUserSecret = faUserSecret; +exports.faUserShield = faUserShield; +exports.faUserSlash = faUserSlash; +exports.faUserTag = faUserTag; +exports.faUserTie = faUserTie; +exports.faUserTimes = faUserTimes; +exports.faUsers = faUsers; +exports.faUsersCog = faUsersCog; +exports.faUtensilSpoon = faUtensilSpoon; +exports.faUtensils = faUtensils; +exports.faVectorSquare = faVectorSquare; +exports.faVenus = faVenus; +exports.faVenusDouble = faVenusDouble; +exports.faVenusMars = faVenusMars; +exports.faVial = faVial; +exports.faVials = faVials; +exports.faVideo = faVideo; +exports.faVideoSlash = faVideoSlash; +exports.faVolleyballBall = faVolleyballBall; +exports.faVolumeDown = faVolumeDown; +exports.faVolumeOff = faVolumeOff; +exports.faVolumeUp = faVolumeUp; +exports.faWalking = faWalking; +exports.faWallet = faWallet; +exports.faWarehouse = faWarehouse; +exports.faWeight = faWeight; +exports.faWeightHanging = faWeightHanging; +exports.faWheelchair = faWheelchair; +exports.faWifi = faWifi; +exports.faWindowClose = faWindowClose; +exports.faWindowMaximize = faWindowMaximize; +exports.faWindowMinimize = faWindowMinimize; +exports.faWindowRestore = faWindowRestore; +exports.faWineGlass = faWineGlass; +exports.faWineGlassAlt = faWineGlassAlt; +exports.faWonSign = faWonSign; +exports.faWrench = faWrench; +exports.faXRay = faXRay; +exports.faYenSign = faYenSign; + +Object.defineProperty(exports, '__esModule', { value: true }); + +}))); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/package.json b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/package.json new file mode 100644 index 0000000000..57e62ce4c5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/free-solid-svg-icons/package.json @@ -0,0 +1,59 @@ +{ + "description": "The iconic font, CSS, and SVG framework", + "keywords": [ + "font", + "awesome", + "fontawesome", + "icon", + "svg", + "bootstrap" + ], + "homepage": "https://fontawesome.com", + "bugs": { + "url": "http://github.com/FortAwesome/Font-Awesome/issues" + }, + "author": { + "name": "Dave Gandy", + "email": "dave@fontawesome.com", + "web": "http://twitter.com/davegandy" + }, + "contributors": [ + { + "name": "Brian Talbot", + "web": "http://twitter.com/talbs" + }, + { + "name": "Travis Chase", + "web": "http://twitter.com/supercodepoet" + }, + { + "name": "Rob Madole", + "web": "http://twitter.com/robmadole" + }, + { + "name": "Geremia Taglialatela", + "web": "http://twitter.com/gtagliala" + }, + { + "name": "Mike Wilkerson", + "web": "http://twitter.com/mw77" + } + ], + "repository": { + "type": "git", + "url": "https://github.com/FortAwesome/Font-Awesome" + }, + "engines": { + "node": ">=6" + }, + "dependencies": { + "@fortawesome/fontawesome-common-types": "^0.2.1" + }, + "version": "5.1.1", + "name": "@fortawesome/free-solid-svg-icons", + "main": "index.js", + "module": "index.es.js", + "jsnext:main": "index.es.js", + "license": "(CC-BY-4.0 AND MIT)", + "types": "./index.d.ts" +} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/css/fa-svg-with-js.css b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/css/fa-svg-with-js.css new file mode 100644 index 0000000000..bf3b6789a6 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/css/fa-svg-with-js.css @@ -0,0 +1,345 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +svg:not(:root).svg-inline--fa { + overflow: visible; } + +.svg-inline--fa { + display: inline-block; + font-size: inherit; + height: 1em; + overflow: visible; + vertical-align: -.125em; } + .svg-inline--fa.fa-lg { + vertical-align: -.225em; } + .svg-inline--fa.fa-w-1 { + width: 0.0625em; } + .svg-inline--fa.fa-w-2 { + width: 0.125em; } + .svg-inline--fa.fa-w-3 { + width: 0.1875em; } + .svg-inline--fa.fa-w-4 { + width: 0.25em; } + .svg-inline--fa.fa-w-5 { + width: 0.3125em; } + .svg-inline--fa.fa-w-6 { + width: 0.375em; } + .svg-inline--fa.fa-w-7 { + width: 0.4375em; } + .svg-inline--fa.fa-w-8 { + width: 0.5em; } + .svg-inline--fa.fa-w-9 { + width: 0.5625em; } + .svg-inline--fa.fa-w-10 { + width: 0.625em; } + .svg-inline--fa.fa-w-11 { + width: 0.6875em; } + .svg-inline--fa.fa-w-12 { + width: 0.75em; } + .svg-inline--fa.fa-w-13 { + width: 0.8125em; } + .svg-inline--fa.fa-w-14 { + width: 0.875em; } + .svg-inline--fa.fa-w-15 { + width: 0.9375em; } + .svg-inline--fa.fa-w-16 { + width: 1em; } + .svg-inline--fa.fa-w-17 { + width: 1.0625em; } + .svg-inline--fa.fa-w-18 { + width: 1.125em; } + .svg-inline--fa.fa-w-19 { + width: 1.1875em; } + .svg-inline--fa.fa-w-20 { + width: 1.25em; } + .svg-inline--fa.fa-pull-left { + margin-right: .3em; + width: auto; } + .svg-inline--fa.fa-pull-right { + margin-left: .3em; + width: auto; } + .svg-inline--fa.fa-border { + height: 1.5em; } + .svg-inline--fa.fa-li { + width: 2em; } + .svg-inline--fa.fa-fw { + width: 1.25em; } + +.fa-layers svg.svg-inline--fa { + bottom: 0; + left: 0; + margin: auto; + position: absolute; + right: 0; + top: 0; } + +.fa-layers { + display: inline-block; + height: 1em; + position: relative; + text-align: center; + vertical-align: -.125em; + width: 1em; } + .fa-layers svg.svg-inline--fa { + -webkit-transform-origin: center center; + transform-origin: center center; } + +.fa-layers-text, .fa-layers-counter { + display: inline-block; + position: absolute; + text-align: center; } + +.fa-layers-text { + left: 50%; + top: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + -webkit-transform-origin: center center; + transform-origin: center center; } + +.fa-layers-counter { + background-color: #ff253a; + border-radius: 1em; + -webkit-box-sizing: border-box; + box-sizing: border-box; + color: #fff; + height: 1.5em; + line-height: 1; + max-width: 5em; + min-width: 1.5em; + overflow: hidden; + padding: .25em; + right: 0; + text-overflow: ellipsis; + top: 0; + -webkit-transform: scale(0.25); + transform: scale(0.25); + -webkit-transform-origin: top right; + transform-origin: top right; } + +.fa-layers-bottom-right { + bottom: 0; + right: 0; + top: auto; + -webkit-transform: scale(0.25); + transform: scale(0.25); + -webkit-transform-origin: bottom right; + transform-origin: bottom right; } + +.fa-layers-bottom-left { + bottom: 0; + left: 0; + right: auto; + top: auto; + -webkit-transform: scale(0.25); + transform: scale(0.25); + -webkit-transform-origin: bottom left; + transform-origin: bottom left; } + +.fa-layers-top-right { + right: 0; + top: 0; + -webkit-transform: scale(0.25); + transform: scale(0.25); + -webkit-transform-origin: top right; + transform-origin: top right; } + +.fa-layers-top-left { + left: 0; + right: auto; + top: 0; + -webkit-transform: scale(0.25); + transform: scale(0.25); + -webkit-transform-origin: top left; + transform-origin: top left; } + +.fa-lg { + font-size: 1.33333em; + line-height: 0.75em; + vertical-align: -.0667em; } + +.fa-xs { + font-size: .75em; } + +.fa-sm { + font-size: .875em; } + +.fa-1x { + font-size: 1em; } + +.fa-2x { + font-size: 2em; } + +.fa-3x { + font-size: 3em; } + +.fa-4x { + font-size: 4em; } + +.fa-5x { + font-size: 5em; } + +.fa-6x { + font-size: 6em; } + +.fa-7x { + font-size: 7em; } + +.fa-8x { + font-size: 8em; } + +.fa-9x { + font-size: 9em; } + +.fa-10x { + font-size: 10em; } + +.fa-fw { + text-align: center; + width: 1.25em; } + +.fa-ul { + list-style-type: none; + margin-left: 2.5em; + padding-left: 0; } + .fa-ul > li { + position: relative; } + +.fa-li { + left: -2em; + position: absolute; + text-align: center; + width: 2em; + line-height: inherit; } + +.fa-border { + border: solid 0.08em #eee; + border-radius: .1em; + padding: .2em .25em .15em; } + +.fa-pull-left { + float: left; } + +.fa-pull-right { + float: right; } + +.fa.fa-pull-left, +.fas.fa-pull-left, +.far.fa-pull-left, +.fal.fa-pull-left, +.fab.fa-pull-left { + margin-right: .3em; } + +.fa.fa-pull-right, +.fas.fa-pull-right, +.far.fa-pull-right, +.fal.fa-pull-right, +.fab.fa-pull-right { + margin-left: .3em; } + +.fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; } + +.fa-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); } + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +.fa-rotate-90 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); } + +.fa-rotate-180 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + transform: rotate(180deg); } + +.fa-rotate-270 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + transform: rotate(270deg); } + +.fa-flip-horizontal { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + -webkit-transform: scale(-1, 1); + transform: scale(-1, 1); } + +.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(1, -1); + transform: scale(1, -1); } + +.fa-flip-horizontal.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(-1, -1); + transform: scale(-1, -1); } + +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270, +:root .fa-flip-horizontal, +:root .fa-flip-vertical { + -webkit-filter: none; + filter: none; } + +.fa-stack { + display: inline-block; + height: 2em; + position: relative; + width: 2em; } + +.fa-stack-1x, +.fa-stack-2x { + bottom: 0; + left: 0; + margin: auto; + position: absolute; + right: 0; + top: 0; } + +.svg-inline--fa.fa-stack-1x { + height: 1em; + width: 1em; } + +.svg-inline--fa.fa-stack-2x { + height: 2em; + width: 2em; } + +.fa-inverse { + color: #fff; } + +.sr-only { + border: 0; + clip: rect(0, 0, 0, 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; } + +.sr-only-focusable:active, .sr-only-focusable:focus { + clip: auto; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/css/fa-svg-with-js.min.css b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/css/fa-svg-with-js.min.css new file mode 100644 index 0000000000..1ba4460433 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/css/fa-svg-with-js.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.svg-inline--fa,svg:not(:root).svg-inline--fa{overflow:visible}.svg-inline--fa{display:inline-block;font-size:inherit;height:1em;vertical-align:-.125em}.svg-inline--fa.fa-lg{vertical-align:-.225em}.svg-inline--fa.fa-w-1{width:.0625em}.svg-inline--fa.fa-w-2{width:.125em}.svg-inline--fa.fa-w-3{width:.1875em}.svg-inline--fa.fa-w-4{width:.25em}.svg-inline--fa.fa-w-5{width:.3125em}.svg-inline--fa.fa-w-6{width:.375em}.svg-inline--fa.fa-w-7{width:.4375em}.svg-inline--fa.fa-w-8{width:.5em}.svg-inline--fa.fa-w-9{width:.5625em}.svg-inline--fa.fa-w-10{width:.625em}.svg-inline--fa.fa-w-11{width:.6875em}.svg-inline--fa.fa-w-12{width:.75em}.svg-inline--fa.fa-w-13{width:.8125em}.svg-inline--fa.fa-w-14{width:.875em}.svg-inline--fa.fa-w-15{width:.9375em}.svg-inline--fa.fa-w-16{width:1em}.svg-inline--fa.fa-w-17{width:1.0625em}.svg-inline--fa.fa-w-18{width:1.125em}.svg-inline--fa.fa-w-19{width:1.1875em}.svg-inline--fa.fa-w-20{width:1.25em}.svg-inline--fa.fa-pull-left{margin-right:.3em;width:auto}.svg-inline--fa.fa-pull-right{margin-left:.3em;width:auto}.svg-inline--fa.fa-border{height:1.5em}.svg-inline--fa.fa-li{width:2em}.svg-inline--fa.fa-fw{width:1.25em}.fa-layers svg.svg-inline--fa{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.fa-layers{display:inline-block;height:1em;position:relative;text-align:center;vertical-align:-.125em;width:1em}.fa-layers svg.svg-inline--fa{transform-origin:center center}.fa-layers-counter,.fa-layers-text{display:inline-block;position:absolute;text-align:center}.fa-layers-text{left:50%;top:50%;transform:translate(-50%,-50%);transform-origin:center center}.fa-layers-counter{background-color:#ff253a;border-radius:1em;box-sizing:border-box;color:#fff;height:1.5em;line-height:1;max-width:5em;min-width:1.5em;overflow:hidden;padding:.25em;right:0;text-overflow:ellipsis;top:0;transform:scale(.25);transform-origin:top right}.fa-layers-bottom-right{bottom:0;right:0;top:auto;transform:scale(.25);transform-origin:bottom right}.fa-layers-bottom-left{bottom:0;left:0;right:auto;top:auto;transform:scale(.25);transform-origin:bottom left}.fa-layers-top-right{right:0;top:0;transform:scale(.25);transform-origin:top right}.fa-layers-top-left{left:0;right:auto;top:0;transform:scale(.25);transform-origin:top left}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:a 2s infinite linear}.fa-pulse{animation:a 1s infinite steps(8)}@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;position:relative;width:2em}.fa-stack-1x,.fa-stack-2x{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.svg-inline--fa.fa-stack-1x{height:1em;width:1em}.svg-inline--fa.fa-stack-2x{height:2em;width:2em}.fa-inverse{color:#fff}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-brands.js b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-brands.js new file mode 100644 index 0000000000..7c7e7c6489 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-brands.js @@ -0,0 +1,498 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +(function () { +'use strict'; + +var _WINDOW = {}; +try { + if (typeof window !== 'undefined') _WINDOW = window; + +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; + + + + + +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; + + + + + + + + + +var PRODUCTION = function () { + try { + return undefined === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + + + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var icons = { + "500px": [448, 512, [], "f26e", "M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3.3-16 16.5-21.2 23.9l-.5.6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8zm63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2zM393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4zM213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6.2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6z"], + "accessible-icon": [448, 512, [], "f368", "M423.9 255.8L411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7zm-64.9-154c28.1 0 50.9-22.8 50.9-50.9C409.9 22.8 387.1 0 359 0c-28.1 0-50.9 22.8-50.9 50.9 0 28.1 22.8 50.9 50.9 50.9zM179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3z"], + "accusoft": [640, 512, [], "f369", "M482.2 372.1C476.5 365.2 250 75 242.3 65.5c-13.7-17.2 0-16.8 19.2-16.9 9.7-.1 106.3-.6 116.5-.6 24.1-.1 28.7.6 38.4 12.8 2.1 2.7 205.1 245.8 207.2 248.3 5.5 6.7 15.2 19.1 7.2 23.4-2.4 1.3-114.6 47.7-117.8 48.9-10.1 4-17.5 6.8-30.8-9.3m114.7-5.6s-115 50.4-117.5 51.6c-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2-2.3-.3-24.6-4.7-38-7.2m-326-181.3s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3v-1l-51.2-65.8"], + "adn": [496, 512, [], "f170", "M248 167.5l64.9 98.8H183.1l64.9-98.8zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7h30.2z"], + "adversal": [512, 512, [], "f36a", "M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2zM178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4.4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3zm286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7.4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9zm3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6.4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1.2-.1.3-.1.5zm-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2.4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1zm-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8z"], + "affiliatetheme": [512, 512, [], "f36b", "M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2 29.1 21.6 11.1 96.6-40.2 167.5zm351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9.1-8.5-.3-16.8-1-25z"], + "algolia": [448, 512, [], "f36c", "M229.3 182.6c-49.3 0-89.2 39.9-89.2 89.2 0 49.3 39.9 89.2 89.2 89.2s89.2-39.9 89.2-89.2c0-49.3-40-89.2-89.2-89.2zm62.7 56.6l-58.9 30.6c-1.8.9-3.8-.4-3.8-2.3V201c0-1.5 1.3-2.7 2.7-2.6 26.2 1 48.9 15.7 61.1 37.1.7 1.3.2 3-1.1 3.7zM389.1 32H58.9C26.4 32 0 58.4 0 90.9V421c0 32.6 26.4 59 58.9 59H389c32.6 0 58.9-26.4 58.9-58.9V90.9C448 58.4 421.6 32 389.1 32zm-202.6 84.7c0-10.8 8.7-19.5 19.5-19.5h45.3c10.8 0 19.5 8.7 19.5 19.5v15.4c0 1.8-1.7 3-3.3 2.5-12.3-3.4-25.1-5.1-38.1-5.1-13.5 0-26.7 1.8-39.4 5.5-1.7.5-3.4-.8-3.4-2.5v-15.8zm-84.4 37l9.2-9.2c7.6-7.6 19.9-7.6 27.5 0l7.7 7.7c1.1 1.1 1 3-.3 4-6.2 4.5-12.1 9.4-17.6 14.9-5.4 5.4-10.4 11.3-14.8 17.4-1 1.3-2.9 1.5-4 .3l-7.7-7.7c-7.6-7.5-7.6-19.8 0-27.4zm127.2 244.8c-70 0-126.6-56.7-126.6-126.6s56.7-126.6 126.6-126.6c70 0 126.6 56.6 126.6 126.6 0 69.8-56.7 126.6-126.6 126.6z"], + "amazon": [448, 512, [], "f270", "M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z"], + "amazon-pay": [611, 512, [], "f42c", "M0 325.2c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7 40.7 20.4 83.2 35.6 127.4 46.3 20.9 5 41.9 9 63.2 11.8 31.5 4.2 63.2 6 95 5.2 17.4-.4 34.8-1.8 52.1-3.8 56.4-6.7 110.9-20.8 163.3-42.8 2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9-2.8 2.8-6.3 5.1-9.6 7.4-30.7 21.1-64.2 36.4-99.6 47.9-24.6 7.9-49.6 13.8-75.1 17.6-17.6 2.6-35.4 4.4-53.2 4.8-.8 0-1.7.2-2.5.3H294c-.8-.1-1.7-.3-2.5-.3-3.6-.2-7.2-.3-10.7-.4-16.9-.7-33.7-2.6-50.4-5.3-27.4-4.5-54.2-11.4-80.4-20.9-54.1-19.6-102.6-48.6-145.6-87-1.8-1.6-3-3.8-4.4-5.7v-2zM158 65c-1.4.2-2.9.4-4.3.6-14 1.7-26.6 6.9-38 15.1-2.4 1.7-4.6 3.5-7.1 5.4-.2-.5-.4-1-.4-1.4-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6H87.8c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3V215c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zm-47.4 41.9c0-1.5.4-2.4 1.7-3.3 13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9-1.2-.9-1.7-1.7-1.7-3.3.1-14.1 0-28.1 0-42.2 0-14 .1-28 0-42.1zM316.3 65c-1 .1-2 .3-2.9.4-9.8.5-19.4 1.7-28.9 4.1-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9 0 .4-.1.9-.2 1.4-.5-.1-.9 0-1.3-.1-10.5-2.5-21.1-4.3-32-4.9-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4.4-.4.9-.7 1.6-1.1.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0 2.7-.1 4.5-1.9 4.8-4.7.1-.9.1-1.9.1-2.8v-106c0-4.3-.2-8.6-.9-12.9-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1zm35 127.7c0 1.3-.4 2.2-1.5 3-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8-6.3-2.5-10.4-6.9-12.4-13.3s-2-13-.1-19.4c2.5-8.3 8.4-13 16.4-15.6 8.1-2.6 16.5-3 24.8-2.2 8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3-.1 4.7-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3-6.8-2.3-13.9-3.3-21-3.9-13.1-1.1-26.2-.5-39.2 1.9-14.3 2.7-27.9 7.3-40 15.6-1.4 1-2.8 2.1-3.7 3.5-.7 1.1-.9 2.8-.5 4 .4 1.5 2.1 1.9 3.6 1.8.7 0 1.5 0 2.2-.1 7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9 4.8.3 9.7 1.4 14.4 2.7 5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1-.4 1-.8 2-1 3-.5 2.9 1.2 4.8 4.1 4.1 1.7-.4 3.6-1.3 4.8-2.5 4.4-4.3 8.9-8.6 12.7-13.4 12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9v-17.3zM479.1 198.9c-12.9-35.7-25.8-71.5-38.7-107.2-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5.5 2.1 1.1 4.1 1.9 6.1 19.6 48.5 39.3 97.1 59.1 145.5 1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3-5.1 1.4-10.2 1.6-15.4 1.1-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8-.1 3.3-.1 6.6 0 9.9.1 5.5 2 8 7.4 8.9 5.6 1 11.3 1.9 16.9 2 17.1.4 30.7-6.5 39.5-21.4 3.5-5.9 6.7-12.1 9.2-18.4 23.7-59.8 47.1-119.7 70.6-179.6.7-1.8 1.3-3.6 1.6-5.5.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0-3.7 0-6.3 1.6-7.7 5.2-.5 1.4-1.1 2.7-1.6 4.1-11.6 33.3-23.2 66.6-34.8 100-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z"], + "amilia": [448, 512, [], "f36d", "M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm-87.9 327.7c0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5V380c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7"], + "android": [448, 512, [], "f17b", "M89.6 204.5v115.8c0 15.4-12.1 27.7-27.5 27.7-15.3 0-30.1-12.4-30.1-27.7V204.5c0-15.1 14.8-27.5 30.1-27.5 15.1 0 27.5 12.4 27.5 27.5zm10.8 157c0 16.4 13.2 29.6 29.6 29.6h19.9l.3 61.1c0 36.9 55.2 36.6 55.2 0v-61.1h37.2v61.1c0 36.7 55.5 36.8 55.5 0v-61.1h20.2c16.2 0 29.4-13.2 29.4-29.6V182.1H100.4v179.4zm248-189.1H99.3c0-42.8 25.6-80 63.6-99.4l-19.1-35.3c-2.8-4.9 4.3-8 6.7-3.8l19.4 35.6c34.9-15.5 75-14.7 108.3 0L297.5 34c2.5-4.3 9.5-1.1 6.7 3.8L285.1 73c37.7 19.4 63.3 56.6 63.3 99.4zm-170.7-55.5c0-5.7-4.6-10.5-10.5-10.5-5.7 0-10.2 4.8-10.2 10.5s4.6 10.5 10.2 10.5c5.9 0 10.5-4.8 10.5-10.5zm113.4 0c0-5.7-4.6-10.5-10.2-10.5-5.9 0-10.5 4.8-10.5 10.5s4.6 10.5 10.5 10.5c5.6 0 10.2-4.8 10.2-10.5zm94.8 60.1c-15.1 0-27.5 12.1-27.5 27.5v115.8c0 15.4 12.4 27.7 27.5 27.7 15.4 0 30.1-12.4 30.1-27.7V204.5c0-15.4-14.8-27.5-30.1-27.5z"], + "angellist": [448, 512, [], "f209", "M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7zM311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6 33.1-93.7zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8zM140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7.1-7.7 12.7-21.1 20.4-21.1zm184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3.3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7.1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7zm-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1z"], + "angrycreative": [640, 512, [], "f36e", "M640 238.2l-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4 93.1-6.2zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9-12.8 120zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3-126.2 7.7zm-44.3-70.2l-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7 2.7-29.8zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1zm21.1 70.8l5.8-60c-5 13.5-14.7 21.1-27.9 26.6l22.1 33.4zm135.4-45l-7.9-37.8-15.8 39.3 23.7-1.5zm-170.1-74.6l-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8.3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2-56.8 3.7zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1.6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2l-2.9 28.8zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3zm-201.3 8.2l23.8-1.6-8.3-37.6-15.5 39.2z"], + "angular": [415, 512, [], "f420", "M169.7 268.1h76.2l-38.1-91.6-38.1 91.6zM207.8 32L0 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7L207.8 32zM338 373.8h-48.6l-26.2-65.4H152.6l-26.2 65.4H77.7L207.8 81.5 338 373.8z"], + "app-store": [512, 512, [], "f36f", "M255.9 120.9l9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5 9.8 5.6 13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4 0-11.3 9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5l8.9 15.7zm-78.7 218l-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5-9.8-5.6-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6zm168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4 0 11.3-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216z"], + "app-store-ios": [448, 512, [], "f370", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7c16.1-4.9 29.3-1.1 39.6 11.4L127 384.5zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40zm98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20z"], + "apper": [640, 512, [], "f371", "M42.1 239.1c22.2 0 29 2.8 33.5 14.6h.8v-22.9c0-11.3-4.8-15.4-17.9-15.4-11.3 0-14.4 2.5-15.1 12.8H4.8c.3-13.9 1.5-19.1 5.8-24.4C17.9 195 29.5 192 56.7 192c33 0 47.1 5 53.9 18.9 2 4.3 4 15.6 4 23.7v76.3H76.3l1.3-19.1h-1c-5.3 15.6-13.6 20.4-35.5 20.4-30.3 0-41.1-10.1-41.1-37.3 0-25.2 12.3-35.8 42.1-35.8zm17.1 48.1c13.1 0 16.9-3 16.9-13.4 0-9.1-4.3-11.6-19.6-11.6-13.1 0-17.9 3-17.9 12.1-.1 10.4 3.7 12.9 20.6 12.9zm77.8-94.9h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.2 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3H137v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm57.9-60.7h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.3 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3h-39.5v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm53.8-3.8c0-25.4 3.3-37.8 12.3-45.8 8.8-8.1 22.2-11.3 45.1-11.3 42.8 0 55.7 12.8 55.7 55.7v11.1h-75.3c-.3 2-.3 4-.3 4.8 0 16.9 4.5 21.9 20.1 21.9 13.9 0 17.9-3 17.9-13.9h37.5v2.3c0 9.8-2.5 18.9-6.8 24.7-7.3 9.8-19.6 13.6-44.3 13.6-27.5 0-41.6-3.3-50.6-12.3-8.5-8.5-11.3-21.3-11.3-50.8zm76.4-11.6c-.3-1.8-.3-3.3-.3-3.8 0-12.3-3.3-14.6-19.6-14.6-14.4 0-17.1 3-18.1 15.1l-.3 3.3h38.3zm55.6-45.3h38.3l-1.8 19.9h.7c6.8-14.9 14.4-20.2 29.7-20.2 10.8 0 19.1 3.3 23.4 9.3 5.3 7.3 6.8 14.4 6.8 34 0 1.5 0 5 .2 9.3h-35c.3-1.8.3-3.3.3-4 0-15.4-2-19.4-10.3-19.4-6.3 0-10.8 3.3-13.1 9.3-1 3-1 4.3-1 12.3v68h-38.3V192.3z"], + "apple": [376, 512, [], "f179", "M314.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C59.3 141.2 0 184.8 0 273.5c0 26.2 4.8 53.3 14.4 81.2 12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z"], + "apple-pay": [640, 512, [], "f415", "M116.9 158.5c-7.5 8.9-19.5 15.9-31.5 14.9-1.5-12 4.4-24.8 11.3-32.6 7.5-9.1 20.6-15.6 31.3-16.1 1.2 12.4-3.7 24.7-11.1 33.8m10.9 17.2c-17.4-1-32.3 9.9-40.5 9.9-8.4 0-21-9.4-34.8-9.1-17.9.3-34.5 10.4-43.6 26.5-18.8 32.3-4.9 80 13.3 106.3 8.9 13 19.5 27.3 33.5 26.8 13.3-.5 18.5-8.6 34.5-8.6 16.1 0 20.8 8.6 34.8 8.4 14.5-.3 23.6-13 32.5-26 10.1-14.8 14.3-29.1 14.5-29.9-.3-.3-28-10.9-28.3-42.9-.3-26.8 21.9-39.5 22.9-40.3-12.5-18.6-32-20.6-38.8-21.1m100.4-36.2v194.9h30.3v-66.6h41.9c38.3 0 65.1-26.3 65.1-64.3s-26.4-64-64.1-64h-73.2zm30.3 25.5h34.9c26.3 0 41.3 14 41.3 38.6s-15 38.8-41.4 38.8h-34.8V165zm162.2 170.9c19 0 36.6-9.6 44.6-24.9h.6v23.4h28v-97c0-28.1-22.5-46.3-57.1-46.3-32.1 0-55.9 18.4-56.8 43.6h27.3c2.3-12 13.4-19.9 28.6-19.9 18.5 0 28.9 8.6 28.9 24.5v10.8l-37.8 2.3c-35.1 2.1-54.1 16.5-54.1 41.5.1 25.2 19.7 42 47.8 42zm8.2-23.1c-16.1 0-26.4-7.8-26.4-19.6 0-12.3 9.9-19.4 28.8-20.5l33.6-2.1v11c0 18.2-15.5 31.2-36 31.2zm102.5 74.6c29.5 0 43.4-11.3 55.5-45.4L640 193h-30.8l-35.6 115.1h-.6L537.4 193h-31.6L557 334.9l-2.8 8.6c-4.6 14.6-12.1 20.3-25.5 20.3-2.4 0-7-.3-8.9-.5v23.4c1.8.4 9.3.7 11.6.7z"], + "asymmetrik": [576, 512, [], "f372", "M517.5 309.2c38.8-40 58.1-80 58.5-116.1.8-65.5-59.4-118.2-169.4-135C277.9 38.4 118.1 73.6 0 140.5 52 114 110.6 92.3 170.7 82.3c74.5-20.5 153-25.4 221.3-14.8C544.5 91.3 588.8 195 490.8 299.2c-10.2 10.8-22 21.1-35 30.6L304.9 103.4 114.7 388.9c-65.6-29.4-76.5-90.2-19.1-151.2 20.8-22.2 48.3-41.9 79.5-58.1 20-12.2 39.7-22.6 62-30.7-65.1 20.3-122.7 52.9-161.6 92.9-27.7 28.6-41.4 57.1-41.7 82.9-.5 35.1 23.4 65.1 68.4 83l-34.5 51.7h101.6l22-34.4c22.2 1 45.3 0 68.6-2.7l-22.8 37.1h135.5L340 406.3c18.6-5.3 36.9-11.5 54.5-18.7l45.9 71.8H542L468.6 349c18.5-12.1 35-25.5 48.9-39.8zm-187.6 80.5l-25-40.6-32.7 53.3c-23.4 3.5-46.7 5.1-69.2 4.4l101.9-159.3 78.7 123c-17.2 7.4-35.3 13.9-53.7 19.2z"], + "audible": [640, 512, [], "f373", "M640 199.9v54l-320 200L0 254v-54l320 200 320-200.1zm-194.5 72l47.1-29.4c-37.2-55.8-100.7-92.6-172.7-92.6-72 0-135.5 36.7-172.6 92.4h.3c2.5-2.3 5.1-4.5 7.7-6.7 89.7-74.4 219.4-58.1 290.2 36.3zm-220.1 18.8c16.9-11.9 36.5-18.7 57.4-18.7 34.4 0 65.2 18.4 86.4 47.6l45.4-28.4c-20.9-29.9-55.6-49.5-94.8-49.5-38.9 0-73.4 19.4-94.4 49zM103.6 161.1c131.8-104.3 318.2-76.4 417.5 62.1l.7 1 48.8-30.4C517.1 112.1 424.8 58.1 319.9 58.1c-103.5 0-196.6 53.5-250.5 135.6 9.9-10.5 22.7-23.5 34.2-32.6zm467 32.7z"], + "autoprefixer": [640, 512, [], "f41c", "M318.4 16l-161 480h77.5l25.4-81.4h119.5L405 496h77.5L318.4 16zm-40.3 341.9l41.2-130.4h1.5l40.9 130.4h-83.6zM640 405l-10-31.4L462.1 358l19.4 56.5L640 405zm-462.1-47L10 373.7 0 405l158.5 9.4 19.4-56.4z"], + "avianex": [512, 512, [], "f374", "M453.1 32h-312c-38.9 0-76.2 31.2-83.3 69.7L1.2 410.3C-5.9 448.8 19.9 480 58.9 480h312c38.9 0 76.2-31.2 83.3-69.7l56.7-308.5c7-38.6-18.8-69.8-57.8-69.8zm-58.2 347.3l-32 13.5-115.4-110c-14.7 10-29.2 19.5-41.7 27.1l22.1 64.2-17.9 12.7-40.6-61-52.4-48.1 15.7-15.4 58 31.1c9.3-10.5 20.8-22.6 32.8-34.9L203 228.9l-68.8-99.8 18.8-28.9 8.9-4.8L265 207.8l4.9 4.5c19.4-18.8 33.8-32.4 33.8-32.4 7.7-6.5 21.5-2.9 30.7 7.9 9 10.5 10.6 24.7 2.7 31.3-1.8 1.3-15.5 11.4-35.3 25.6l4.5 7.3 94.9 119.4-6.3 7.9z"], + "aviato": [640, 512, [], "f421", "M107.2 283.5l-19-41.8H36.1l-19 41.8H0l62.2-131.4 62.2 131.4h-17.2zm-45-98.1l-19.6 42.5h39.2l-19.6-42.5zm112.7 102.4l-62.2-131.4h17.1l45.1 96 45.1-96h17l-62.1 131.4zm80.6-4.3V156.4H271v127.1h-15.5zm209.1-115.6v115.6h-17.3V167.9h-41.2v-11.5h99.6v11.5h-41.1zM640 218.8c0 9.2-1.7 17.8-5.1 25.8-3.4 8-8.2 15.1-14.2 21.1-6 6-13.1 10.8-21.1 14.2-8 3.4-16.6 5.1-25.8 5.1s-17.8-1.7-25.8-5.1c-8-3.4-15.1-8.2-21.1-14.2-6-6-10.8-13-14.2-21.1-3.4-8-5.1-16.6-5.1-25.8s1.7-17.8 5.1-25.8c3.4-8 8.2-15.1 14.2-21.1 6-6 13-8.4 21.1-11.9 8-3.4 16.6-5.1 25.8-5.1s17.8 1.7 25.8 5.1c8 3.4 15.1 5.8 21.1 11.9 6 6 10.7 13.1 14.2 21.1 3.4 8 5.1 16.6 5.1 25.8zm-15.5 0c0-7.3-1.3-14-3.9-20.3-2.6-6.3-6.2-11.7-10.8-16.3-4.6-4.6-10-8.2-16.2-10.9-6.2-2.7-12.8-4-19.8-4s-13.6 1.3-19.8 4c-6.2 2.7-11.6 6.3-16.2 10.9-4.6 4.6-8.2 10-10.8 16.3-2.6 6.3-3.9 13.1-3.9 20.3 0 7.3 1.3 14 3.9 20.3 2.6 6.3 6.2 11.7 10.8 16.3 4.6 4.6 10 8.2 16.2 10.9 6.2 2.7 12.8 4 19.8 4s13.6-1.3 19.8-4c6.2-2.7 11.6-6.3 16.2-10.9 4.6-4.6 8.2-10 10.8-16.3 2.6-6.3 3.9-13.1 3.9-20.3zm-94.8 96.7v-6.3l88.9-10-242.9 13.4c.6-2.2 1.1-4.6 1.4-7.2.3-2 .5-4.2.6-6.5l64.8-8.1-64.9 1.9c0-.4-.1-.7-.1-1.1-2.8-17.2-25.5-23.7-25.5-23.7l-1.1-26.3h23.8l19 41.8h17.1L348.6 152l-62.2 131.4h17.1l19-41.8h23.6L345 268s-22.7 6.5-25.5 23.7c-.1.3-.1.7-.1 1.1l-64.9-1.9 64.8 8.1c.1 2.3.3 4.4.6 6.5.3 2.6.8 5 1.4 7.2L78.4 299.2l88.9 10v6.3c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4 0-6.2-4.6-11.3-10.5-12.2v-5.8l80.3 9v5.4c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-4.9l28.4 3.2v23.7h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9V323l38.3 4.3c8.1 11.4 19 13.6 19 13.6l-.1 6.7-5.1.2-.1 12.1h4.1l.1-5h5.2l.1 5h4.1l-.1-12.1-5.1-.2-.1-6.7s10.9-2.1 19-13.6l38.3-4.3v23.2h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9v-23.7l28.4-3.2v4.9c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-5.4l80.3-9v5.8c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4-.2-6.3-4.7-11.4-10.7-12.3zm-200.8-87.6l19.6-42.5 19.6 42.5h-17.9l-1.7-40.3-1.7 40.3h-17.9z"], + "aws": [640, 512, [], "f375", "M180.41 203.01c-.72 22.65 10.6 32.68 10.88 39.05a8.164 8.164 0 0 1-4.1 6.27l-12.8 8.96a10.66 10.66 0 0 1-5.63 1.92c-.43-.02-8.19 1.83-20.48-25.61a78.608 78.608 0 0 1-62.61 29.45c-16.28.89-60.4-9.24-58.13-56.21-1.59-38.28 34.06-62.06 70.93-60.05 7.1.02 21.6.37 46.99 6.27v-15.62c2.69-26.46-14.7-46.99-44.81-43.91-2.4.01-19.4-.5-45.84 10.11-7.36 3.38-8.3 2.82-10.75 2.82-7.41 0-4.36-21.48-2.94-24.2 5.21-6.4 35.86-18.35 65.94-18.18a76.857 76.857 0 0 1 55.69 17.28 70.285 70.285 0 0 1 17.67 52.36l-.01 69.29zM93.99 235.4c32.43-.47 46.16-19.97 49.29-30.47 2.46-10.05 2.05-16.41 2.05-27.4-9.67-2.32-23.59-4.85-39.56-4.87-15.15-1.14-42.82 5.63-41.74 32.26-1.24 16.79 11.12 31.4 29.96 30.48zm170.92 23.05c-7.86.72-11.52-4.86-12.68-10.37l-49.8-164.65c-.97-2.78-1.61-5.65-1.92-8.58a4.61 4.61 0 0 1 3.86-5.25c.24-.04-2.13 0 22.25 0 8.78-.88 11.64 6.03 12.55 10.37l35.72 140.83 33.16-140.83c.53-3.22 2.94-11.07 12.8-10.24h17.16c2.17-.18 11.11-.5 12.68 10.37l33.42 142.63L420.98 80.1c.48-2.18 2.72-11.37 12.68-10.37h19.72c.85-.13 6.15-.81 5.25 8.58-.43 1.85 3.41-10.66-52.75 169.9-1.15 5.51-4.82 11.09-12.68 10.37h-18.69c-10.94 1.15-12.51-9.66-12.68-10.75L328.67 110.7l-32.78 136.99c-.16 1.09-1.73 11.9-12.68 10.75h-18.3zm273.48 5.63c-5.88.01-33.92-.3-57.36-12.29a12.802 12.802 0 0 1-7.81-11.91v-10.75c0-8.45 6.2-6.9 8.83-5.89 10.04 4.06 16.48 7.14 28.81 9.6 36.65 7.53 52.77-2.3 56.72-4.48 13.15-7.81 14.19-25.68 5.25-34.95-10.48-8.79-15.48-9.12-53.13-21-4.64-1.29-43.7-13.61-43.79-52.36-.61-28.24 25.05-56.18 69.52-55.95 12.67-.01 46.43 4.13 55.57 15.62 1.35 2.09 2.02 4.55 1.92 7.04v10.11c0 4.44-1.62 6.66-4.87 6.66-7.71-.86-21.39-11.17-49.16-10.75-6.89-.36-39.89.91-38.41 24.97-.43 18.96 26.61 26.07 29.7 26.89 36.46 10.97 48.65 12.79 63.12 29.58 17.14 22.25 7.9 48.3 4.35 55.44-19.08 37.49-68.42 34.44-69.26 34.42zm40.2 104.86c-70.03 51.72-171.69 79.25-258.49 79.25A469.127 469.127 0 0 1 2.83 327.46c-6.53-5.89-.77-13.96 7.17-9.47a637.37 637.37 0 0 0 316.88 84.12 630.22 630.22 0 0 0 241.59-49.55c11.78-5 21.77 7.8 10.12 16.38zm29.19-33.29c-8.96-11.52-59.28-5.38-81.81-2.69-6.79.77-7.94-5.12-1.79-9.47 40.07-28.17 105.88-20.1 113.44-10.63 7.55 9.47-2.05 75.41-39.56 106.91-5.76 4.87-11.27 2.3-8.71-4.1 8.44-21.25 27.39-68.49 18.43-80.02z"], + "bandcamp": [496, 512, [], "f2d5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm48.2 326.1h-181L199.9 178h181l-84.7 156.1z"], + "behance": [576, 512, [], "f1b4", "M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z"], + "behance-square": [448, 512, [], "f1b5", "M186.5 293c0 19.3-14 25.4-31.2 25.4h-45.1v-52.9h46c18.6.1 30.3 7.8 30.3 27.5zm-7.7-82.3c0-17.7-13.7-21.9-28.9-21.9h-39.6v44.8H153c15.1 0 25.8-6.6 25.8-22.9zm132.3 23.2c-18.3 0-30.5 11.4-31.7 29.7h62.2c-1.7-18.5-11.3-29.7-30.5-29.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM271.7 185h77.8v-18.9h-77.8V185zm-43 110.3c0-24.1-11.4-44.9-35-51.6 17.2-8.2 26.2-17.7 26.2-37 0-38.2-28.5-47.5-61.4-47.5H68v192h93.1c34.9-.2 67.6-16.9 67.6-55.9zM380 280.5c0-41.1-24.1-75.4-67.6-75.4-42.4 0-71.1 31.8-71.1 73.6 0 43.3 27.3 73 71.1 73 33.2 0 54.7-14.9 65.1-46.8h-33.7c-3.7 11.9-18.6 18.1-30.2 18.1-22.4 0-34.1-13.1-34.1-35.3h100.2c.1-2.3.3-4.8.3-7.2z"], + "bimobject": [448, 512, [], "f378", "M416 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm-64 257.4c0 49.4-11.4 82.6-103.8 82.6h-16.9c-44.1 0-62.4-14.9-70.4-38.8h-.9V368H96V136h64v74.7h1.1c4.6-30.5 39.7-38.8 69.7-38.8h17.3c92.4 0 103.8 33.1 103.8 82.5v35zm-64-28.9v22.9c0 21.7-3.4 33.8-38.4 33.8h-45.3c-28.9 0-44.1-6.5-44.1-35.7v-19c0-29.3 15.2-35.7 44.1-35.7h45.3c35-.2 38.4 12 38.4 33.7z"], + "bitbucket": [512, 512, [], "f171", "M23.1 32C14.2 31.9 7 38.9 6.9 47.8c0 .9.1 1.8.2 2.8L74.9 462c1.7 10.4 10.7 18 21.2 18.1h325.1c7.9.1 14.7-5.6 16-13.4l67.8-416c1.4-8.7-4.5-16.9-13.2-18.3-.9-.1-1.8-.2-2.8-.2L23.1 32zm285.3 297.3H204.6l-28.1-146.8h157l-25.1 146.8z"], + "bitcoin": [512, 512, [], "f379", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z"], + "bity": [496, 512, [], "f37a", "M78.4 67.2C173.8-22 324.5-24 421.5 71c14.3 14.1-6.4 37.1-22.4 21.5-84.8-82.4-215.8-80.3-298.9-3.2-16.3 15.1-36.5-8.3-21.8-22.1zm98.9 418.6c19.3 5.7 29.3-23.6 7.9-30C73 421.9 9.4 306.1 37.7 194.8c5-19.6-24.9-28.1-30.2-7.1-32.1 127.4 41.1 259.8 169.8 298.1zm148.1-2c121.9-40.2 192.9-166.9 164.4-291-4.5-19.7-34.9-13.8-30 7.9 24.2 107.7-37.1 217.9-143.2 253.4-21.2 7-10.4 36 8.8 29.7zm-62.9-79l.2-71.8c0-8.2-6.6-14.8-14.8-14.8-8.2 0-14.8 6.7-14.8 14.8l-.2 71.8c0 8.2 6.6 14.8 14.8 14.8s14.8-6.6 14.8-14.8zm71-269c2.1 90.9 4.7 131.9-85.5 132.5-92.5-.7-86.9-44.3-85.5-132.5 0-21.8-32.5-19.6-32.5 0v71.6c0 69.3 60.7 90.9 118 90.1 57.3.8 118-20.8 118-90.1v-71.6c0-19.6-32.5-21.8-32.5 0z"], + "black-tie": [448, 512, [], "f27e", "M0 32v448h448V32H0zm316.5 325.2L224 445.9l-92.5-88.7 64.5-184-64.5-86.6h184.9L252 173.2l64.5 184z"], + "blackberry": [512, 512, [], "f37b", "M166 116.9c0 23.4-16.4 49.1-72.5 49.1H23.4l21-88.8h67.8c42.1 0 53.8 23.3 53.8 39.7zm126.2-39.7h-67.8L205.7 166h70.1c53.8 0 70.1-25.7 70.1-49.1.1-16.4-11.6-39.7-53.7-39.7zM88.8 208.1H21L0 296.9h70.1c56.1 0 72.5-23.4 72.5-49.1 0-16.3-11.7-39.7-53.8-39.7zm180.1 0h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 0-16.3-11.7-39.7-53.7-39.7zm189.3-53.8h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7zm-28 137.9h-67.8L343.7 381h70.1c56.1 0 70.1-23.4 70.1-49.1 0-16.3-11.6-39.7-53.7-39.7zM240.8 346H173l-18.7 88.8h70.1c56.1 0 70.1-25.7 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7z"], + "blogger": [448, 512, [], "f37c", "M162.4 196c4.8-4.9 6.2-5.1 36.4-5.1 27.2 0 28.1.1 32.1 2.1 5.8 2.9 8.3 7 8.3 13.6 0 5.9-2.4 10-7.6 13.4-2.8 1.8-4.5 1.9-31.1 2.1-16.4.1-29.5-.2-31.5-.8-10.3-2.9-14.1-17.7-6.6-25.3zm61.4 94.5c-53.9 0-55.8.2-60.2 4.1-3.5 3.1-5.7 9.4-5.1 13.9.7 4.7 4.8 10.1 9.2 12 2.2 1 14.1 1.7 56.3 1.2l47.9-.6 9.2-1.5c9-5.1 10.5-17.4 3.1-24.4-5.3-4.7-5-4.7-60.4-4.7zm223.4 130.1c-3.5 28.4-23 50.4-51.1 57.5-7.2 1.8-9.7 1.9-172.9 1.8-157.8 0-165.9-.1-172-1.8-8.4-2.2-15.6-5.5-22.3-10-5.6-3.8-13.9-11.8-17-16.4-3.8-5.6-8.2-15.3-10-22C.1 423 0 420.3 0 256.3 0 93.2 0 89.7 1.8 82.6 8.1 57.9 27.7 39 53 33.4c7.3-1.6 332.1-1.9 340-.3 21.2 4.3 37.9 17.1 47.6 36.4 7.7 15.3 7-1.5 7.3 180.6.2 115.8 0 164.5-.7 170.5zm-85.4-185.2c-1.1-5-4.2-9.6-7.7-11.5-1.1-.6-8-1.3-15.5-1.7-12.4-.6-13.8-.8-17.8-3.1-6.2-3.6-7.9-7.6-8-18.3 0-20.4-8.5-39.4-25.3-56.5-12-12.2-25.3-20.5-40.6-25.1-3.6-1.1-11.8-1.5-39.2-1.8-42.9-.5-52.5.4-67.1 6.2-27 10.7-46.3 33.4-53.4 62.4-1.3 5.4-1.6 14.2-1.9 64.3-.4 62.8 0 72.1 4 84.5 9.7 30.7 37.1 53.4 64.6 58.4 9.2 1.7 122.2 2.1 133.7.5 20.1-2.7 35.9-10.8 50.7-25.9 10.7-10.9 17.4-22.8 21.8-38.5 3.2-10.9 2.9-88.4 1.7-93.9z"], + "blogger-b": [448, 512, [], "f37d", "M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z"], + "bluetooth": [448, 512, [], "f293", "M292.6 171.1L249.7 214l-.3-86 43.2 43.1m-43.2 219.8l43.1-43.1-42.9-42.9-.2 86zM416 259.4C416 465 344.1 512 230.9 512S32 465 32 259.4 115.4 0 228.6 0 416 53.9 416 259.4zm-158.5 0l79.4-88.6L211.8 36.5v176.9L138 139.6l-27 26.9 92.7 93-92.7 93 26.9 26.9 73.8-73.8 2.3 170 127.4-127.5-83.9-88.7z"], + "bluetooth-b": [320, 512, [], "f294", "M196.48 260.023l92.626-103.333L143.125 0v206.33l-86.111-86.111-31.406 31.405 108.061 108.399L25.608 368.422l31.406 31.405 86.111-86.111L145.84 512l148.552-148.644-97.912-103.333zm40.86-102.996l-49.977 49.978-.338-100.295 50.315 50.317zM187.363 313.04l49.977 49.978-50.315 50.316.338-100.294z"], + "btc": [384, 512, [], "f15a", "M310.204 242.638c27.73-14.18 45.377-39.39 41.28-81.3-5.358-57.351-52.458-76.573-114.85-81.929V0h-48.528v77.203c-12.605 0-25.525.315-38.444.63V0h-48.528v79.409c-17.842.539-38.622.276-97.37 0v51.678c38.314-.678 58.417-3.14 63.023 21.427v217.429c-2.925 19.492-18.524 16.685-53.255 16.071L3.765 443.68c88.481 0 97.37.315 97.37.315V512h48.528v-67.06c13.234.315 26.154.315 38.444.315V512h48.528v-68.005c81.299-4.412 135.647-24.894 142.895-101.467 5.671-61.446-23.32-88.862-69.326-99.89zM150.608 134.553c27.415 0 113.126-8.507 113.126 48.528 0 54.515-85.71 48.212-113.126 48.212v-96.74zm0 251.776V279.821c32.772 0 133.127-9.138 133.127 53.255-.001 60.186-100.355 53.253-133.127 53.253z"], + "buromobelexperte": [448, 512, [], "f37f", "M0 32v128h128V32H0zm120 120H8V40h112v112zm40-120v128h128V32H160zm120 120H168V40h112v112zm40-120v128h128V32H320zm120 120H328V40h112v112zM0 192v128h128V192H0zm120 120H8V200h112v112zm40-120v128h128V192H160zm120 120H168V200h112v112zm40-120v128h128V192H320zm120 120H328V200h112v112zM0 352v128h128V352H0zm120 120H8V360h112v112zm40-120v128h128V352H160zm120 120H168V360h112v112zm40-120v128h128V352H320z"], + "buysellads": [448, 512, [], "f20d", "M224 150.7l42.9 160.7h-85.8L224 150.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-65.3 325.3l-94.5-298.7H159.8L65.3 405.3H156l111.7-91.6 24.2 91.6h90.8z"], + "cc-amazon-pay": [576, 512, [], "f42d", "M124.7 201.8c.1-11.8 0-23.5 0-35.3v-35.3c0-1.3.4-2 1.4-2.7 11.5-8 24.1-12.1 38.2-11.1 12.5.9 22.7 7 28.1 21.7 3.3 8.9 4.1 18.2 4.1 27.7 0 8.7-.7 17.3-3.4 25.6-5.7 17.8-18.7 24.7-35.7 23.9-11.7-.5-21.9-5-31.4-11.7-.9-.8-1.4-1.6-1.3-2.8zm154.9 14.6c4.6 1.8 9.3 2 14.1 1.5 11.6-1.2 21.9-5.7 31.3-12.5.9-.6 1.3-1.3 1.3-2.5-.1-3.9 0-7.9 0-11.8 0-4-.1-8 0-12 0-1.4-.4-2-1.8-2.2-7-.9-13.9-2.2-20.9-2.9-7-.6-14-.3-20.8 1.9-6.7 2.2-11.7 6.2-13.7 13.1-1.6 5.4-1.6 10.8.1 16.2 1.6 5.5 5.2 9.2 10.4 11.2zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zm-207.5 23.9c.4 1.7.9 3.4 1.6 5.1 16.5 40.6 32.9 81.3 49.5 121.9 1.4 3.5 1.7 6.4.2 9.9-2.8 6.2-4.9 12.6-7.8 18.7-2.6 5.5-6.7 9.5-12.7 11.2-4.2 1.1-8.5 1.3-12.9.9-2.1-.2-4.2-.7-6.3-.8-2.8-.2-4.2 1.1-4.3 4-.1 2.8-.1 5.6 0 8.3.1 4.6 1.6 6.7 6.2 7.5 4.7.8 9.4 1.6 14.2 1.7 14.3.3 25.7-5.4 33.1-17.9 2.9-4.9 5.6-10.1 7.7-15.4 19.8-50.1 39.5-100.3 59.2-150.5.6-1.5 1.1-3 1.3-4.6.4-2.4-.7-3.6-3.1-3.7-5.6-.1-11.1 0-16.7 0-3.1 0-5.3 1.4-6.4 4.3-.4 1.1-.9 2.3-1.3 3.4l-29.1 83.7c-2.1 6.1-4.2 12.1-6.5 18.6-.4-.9-.6-1.4-.8-1.9-10.8-29.9-21.6-59.9-32.4-89.8-1.7-4.7-3.5-9.5-5.3-14.2-.9-2.5-2.7-4-5.4-4-6.4-.1-12.8-.2-19.2-.1-2.2 0-3.3 1.6-2.8 3.7zM242.4 206c1.7 11.7 7.6 20.8 18 26.6 9.9 5.5 20.7 6.2 31.7 4.6 12.7-1.9 23.9-7.3 33.8-15.5.4-.3.8-.6 1.4-1 .5 3.2.9 6.2 1.5 9.2.5 2.6 2.1 4.3 4.5 4.4 4.6.1 9.1.1 13.7 0 2.3-.1 3.8-1.6 4-3.9.1-.8.1-1.6.1-2.3v-88.8c0-3.6-.2-7.2-.7-10.8-1.6-10.8-6.2-19.7-15.9-25.4-5.6-3.3-11.8-5-18.2-5.9-3-.4-6-.7-9.1-1.1h-10c-.8.1-1.6.3-2.5.3-8.2.4-16.3 1.4-24.2 3.5-5.1 1.3-10 3.2-15 4.9-3 1-4.5 3.2-4.4 6.5.1 2.8-.1 5.6 0 8.3.1 4.1 1.8 5.2 5.7 4.1 6.5-1.7 13.1-3.5 19.7-4.8 10.3-1.9 20.7-2.7 31.1-1.2 5.4.8 10.5 2.4 14.1 7 3.1 4 4.2 8.8 4.4 13.7.3 6.9.2 13.9.3 20.8 0 .4-.1.7-.2 1.2-.4 0-.8 0-1.1-.1-8.8-2.1-17.7-3.6-26.8-4.1-9.5-.5-18.9.1-27.9 3.2-10.8 3.8-19.5 10.3-24.6 20.8-4.1 8.3-4.6 17-3.4 25.8zM98.7 106.9v175.3c0 .8 0 1.7.1 2.5.2 2.5 1.7 4.1 4.1 4.2 5.9.1 11.8.1 17.7 0 2.5 0 4-1.7 4.1-4.1.1-.8.1-1.7.1-2.5v-60.7c.9.7 1.4 1.2 1.9 1.6 15 12.5 32.2 16.6 51.1 12.9 17.1-3.4 28.9-13.9 36.7-29.2 5.8-11.6 8.3-24.1 8.7-37 .5-14.3-1-28.4-6.8-41.7-7.1-16.4-18.9-27.3-36.7-30.9-2.7-.6-5.5-.8-8.2-1.2h-7c-1.2.2-2.4.3-3.6.5-11.7 1.4-22.3 5.8-31.8 12.7-2 1.4-3.9 3-5.9 4.5-.1-.5-.3-.8-.4-1.2-.4-2.3-.7-4.6-1.1-6.9-.6-3.9-2.5-5.5-6.4-5.6h-9.7c-5.9-.1-6.9 1-6.9 6.8zM493.6 339c-2.7-.7-5.1 0-7.6 1-43.9 18.4-89.5 30.2-136.8 35.8-14.5 1.7-29.1 2.8-43.7 3.2-26.6.7-53.2-.8-79.6-4.3-17.8-2.4-35.5-5.7-53-9.9-37-8.9-72.7-21.7-106.7-38.8-8.8-4.4-17.4-9.3-26.1-14-3.8-2.1-6.2-1.5-8.2 2.1v1.7c1.2 1.6 2.2 3.4 3.7 4.8 36 32.2 76.6 56.5 122 72.9 21.9 7.9 44.4 13.7 67.3 17.5 14 2.3 28 3.8 42.2 4.5 3 .1 6 .2 9 .4.7 0 1.4.2 2.1.3h17.7c.7-.1 1.4-.3 2.1-.3 14.9-.4 29.8-1.8 44.6-4 21.4-3.2 42.4-8.1 62.9-14.7 29.6-9.6 57.7-22.4 83.4-40.1 2.8-1.9 5.7-3.8 8-6.2 4.3-4.4 2.3-10.4-3.3-11.9zm50.4-27.7c-.8-4.2-4-5.8-7.6-7-5.7-1.9-11.6-2.8-17.6-3.3-11-.9-22-.4-32.8 1.6-12 2.2-23.4 6.1-33.5 13.1-1.2.8-2.4 1.8-3.1 3-.6.9-.7 2.3-.5 3.4.3 1.3 1.7 1.6 3 1.5.6 0 1.2 0 1.8-.1l19.5-2.1c9.6-.9 19.2-1.5 28.8-.8 4.1.3 8.1 1.2 12 2.2 4.3 1.1 6.2 4.4 6.4 8.7.3 6.7-1.2 13.1-2.9 19.5-3.5 12.9-8.3 25.4-13.3 37.8-.3.8-.7 1.7-.8 2.5-.4 2.5 1 4 3.4 3.5 1.4-.3 3-1.1 4-2.1 3.7-3.6 7.5-7.2 10.6-11.2 10.7-13.8 17-29.6 20.7-46.6.7-3 1.2-6.1 1.7-9.1.2-4.7.2-9.6.2-14.5z"], + "cc-amex": [576, 512, [], "f1f3", "M576 255.4c-37.9-.2-44.2-.9-54.5 5v-5c-45.3 0-53.5-1.7-64.9 5.2v-5.2h-78.2v5.1c-11.4-6.5-21.4-5.1-75.7-5.1v5.6c-6.3-3.7-14.5-5.6-24.3-5.6h-58c-3.5 3.8-12.5 13.7-15.7 17.2-12.7-14.1-10.5-11.6-15.5-17.2h-83.1v92.3h82c3.3-3.5 12.9-13.9 16.1-17.4 12.7 14.3 10.3 11.7 15.4 17.4h48.9c0-14.7.1-8.3.1-23 11.5.2 24.3-.2 34.3-6.2 0 13.9-.1 17.1-.1 29.2h39.6c0-18.5.1-7.4.1-25.3 6.2 0 7.7 0 9.4.1.1 1.3 0 0 0 25.2 152.8 0 145.9 1.1 156.7-4.5v4.5c34.8 0 54.8 2.2 67.5-6.1V432c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V228.3h26.6c4.2-10.1 2.2-5.3 6.4-15.3h19.2c4.2 10 2.2 5.2 6.4 15.3h52.9v-11.4c2.2 5 1.1 2.5 5.1 11.4h29.5c2.4-5.5 2.6-5.8 5.1-11.4v11.4h135.5v-25.1c6.4 0 8-.1 9.8.2 0 0-.2 10.9.1 24.8h66.5v-8.9c7.4 5.9 17.4 8.9 29.7 8.9h26.8c4.2-10.1 2.2-5.3 6.4-15.3h19c6.5 15 .2.5 6.6 15.3h52.8v-21.9c11.8 19.7 7.8 12.9 13.2 21.9h41.6v-92h-39.9v18.4c-12.2-20.2-6.3-10.4-11.2-18.4h-43.3v20.6c-6.2-14.6-4.6-10.8-8.8-20.6h-32.4c-.4 0-2.3.2-2.3-.3h-27.6c-12.8 0-23.1 3.2-30.7 9.3v-9.3h-39.9v5.3c-10.8-6.1-20.7-5.1-64.4-5.3-.1 0-11.6-.1-11.6 0h-103c-2.5 6.1-6.8 16.4-12.6 30-2.8-6-11-23.8-13.9-30h-46V157c-7.4-17.4-4.7-11-9-21.1H22.9c-3.4 7.9-13.7 32-23.1 53.9V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48v175.4zm-186.6-80.6c-.3.2-1.4 2.2-1.4 7.6 0 6 .9 7.7 1.1 7.9.2.1 1.1.5 3.4.5l7.3-16.9c-1.1 0-2.1-.1-3.1-.1-5.6 0-7 .7-7.3 1zm-19.9 130.9c9.2 3.3 11 9.5 11 18.4l-.1 13.8h-16.6l.1-11.5c0-11.8-3.8-13.8-14.8-13.8h-17.6l-.1 25.3h-16.6l.1-69.3h39.4c13 0 27.1 2.3 27.1 18.7-.1 7.6-4.2 15.3-11.9 18.4zm-6.3-15.4c0-6.4-5.6-7.4-10.7-7.4h-21v15.6h20.7c5.6 0 11-1.3 11-8.2zm181.7-7.1H575v-14.6h-32.9c-12.8 0-23.8 6.6-23.8 20.7 0 33 42.7 12.8 42.7 27.4 0 5.1-4.3 6.4-8.4 6.4h-32l-.1 14.8h32c8.4 0 17.6-1.8 22.5-8.9v-25.8c-10.5-13.8-39.3-1.3-39.3-13.5 0-5.8 4.6-6.5 9.2-6.5zm-99.2-.3v-14.3h-55.2l-.1 69.3h55.2l.1-14.3-38.6-.3v-13.8H445v-14.1h-37.8v-12.5h38.5zm42.2 40.1h-32.2l-.1 14.8h32.2c14.8 0 26.2-5.6 26.2-22 0-33.2-42.9-11.2-42.9-26.3 0-5.6 4.9-6.4 9.2-6.4h30.4v-14.6h-33.2c-12.8 0-23.5 6.6-23.5 20.7 0 33 42.7 12.5 42.7 27.4-.1 5.4-4.7 6.4-8.8 6.4zm-78.1-158.7c-17.4-.3-33.2-4.1-33.2 19.7 0 11.8 2.8 19.9 16.1 19.9h7.4l23.5-54.5h24.8l27.9 65.4v-65.4h25.3l29.1 48.1v-48.1h16.9v69H524l-31.2-51.9v51.9h-33.7l-6.6-15.3h-34.3l-6.4 15.3h-19.2c-22.8 0-33-11.8-33-34 0-23.3 10.5-35.3 34-35.3h16.1v15.2zm14.3 24.5h22.8l-11.2-27.6-11.6 27.6zm-72.6-39.6h-16.9v69.3h16.9v-69.3zm-38.1 37.3c9.5 3.3 11 9.2 11 18.4v13.5h-16.6c-.3-14.8 3.6-25.1-14.8-25.1h-18v25.1h-16.4v-69.3l39.1.3c13.3 0 27.4 2 27.4 18.4.1 8-4.3 15.7-11.7 18.7zm-6.7-15.3c0-6.4-5.6-7.4-10.7-7.4h-21v15.3h20.7c5.7 0 11-1.3 11-7.9zm-59.5-7.4v-14.6h-55.5v69.3h55.5v-14.3h-38.9v-13.8h37.8v-14.1h-37.8v-12.5h38.9zm-84.6 54.7v-54.2l-24 54.2H124l-24-54.2v54.2H66.2l-6.4-15.3H25.3l-6.4 15.3H1l29.7-69.3h24.5l28.1 65.7v-65.7h27.1l21.7 47 19.7-47h27.6v69.3h-16.8zM53.9 188.8l-11.5-27.6-11.2 27.6h22.7zm253 102.5c0 27.9-30.4 23.3-49.3 23.3l-.1 23.3h-32.2l-20.4-23-21.3 23h-65.4l.1-69.3h66.5l20.5 22.8 21-22.8H279c15.6 0 27.9 5.4 27.9 22.7zm-112.7 11.8l-17.9-20.2h-41.7v12.5h36.3v14.1h-36.3v13.8h40.6l19-20.2zM241 276l-25.3 27.4 25.3 28.1V276zm48.3 15.3c0-6.1-4.6-8.4-10.2-8.4h-21.5v17.6h21.2c5.9 0 10.5-2.8 10.5-9.2z"], + "cc-apple-pay": [576, 512, [], "f416", "M302.2 218.4c0 17.2-10.5 27.1-29 27.1h-24.3v-54.2h24.4c18.4 0 28.9 9.8 28.9 27.1zm47.5 62.6c0 8.3 7.2 13.7 18.5 13.7 14.4 0 25.2-9.1 25.2-21.9v-7.7l-23.5 1.5c-13.3.9-20.2 5.8-20.2 14.4zM576 79v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM127.8 197.2c8.4.7 16.8-4.2 22.1-10.4 5.2-6.4 8.6-15 7.7-23.7-7.4.3-16.6 4.9-21.9 11.3-4.8 5.5-8.9 14.4-7.9 22.8zm60.6 74.5c-.2-.2-19.6-7.6-19.8-30-.2-18.7 15.3-27.7 16-28.2-8.8-13-22.4-14.4-27.1-14.7-12.2-.7-22.6 6.9-28.4 6.9-5.9 0-14.7-6.6-24.3-6.4-12.5.2-24.2 7.3-30.5 18.6-13.1 22.6-3.4 56 9.3 74.4 6.2 9.1 13.7 19.1 23.5 18.7 9.3-.4 13-6 24.2-6 11.3 0 14.5 6 24.3 5.9 10.2-.2 16.5-9.1 22.8-18.2 6.9-10.4 9.8-20.4 10-21zm135.4-53.4c0-26.6-18.5-44.8-44.9-44.8h-51.2v136.4h21.2v-46.6h29.3c26.8 0 45.6-18.4 45.6-45zm90 23.7c0-19.7-15.8-32.4-40-32.4-22.5 0-39.1 12.9-39.7 30.5h19.1c1.6-8.4 9.4-13.9 20-13.9 13 0 20.2 6 20.2 17.2v7.5l-26.4 1.6c-24.6 1.5-37.9 11.6-37.9 29.1 0 17.7 13.7 29.4 33.4 29.4 13.3 0 25.6-6.7 31.2-17.4h.4V310h19.6v-68zM516 210.9h-21.5l-24.9 80.6h-.4l-24.9-80.6H422l35.9 99.3-1.9 6c-3.2 10.2-8.5 14.2-17.9 14.2-1.7 0-4.9-.2-6.2-.3v16.4c1.2.4 6.5.5 8.1.5 20.7 0 30.4-7.9 38.9-31.8L516 210.9z"], + "cc-diners-club": [576, 512, [], "f24c", "M239.7 79.9c-96.9 0-175.8 78.6-175.8 175.8 0 96.9 78.9 175.8 175.8 175.8 97.2 0 175.8-78.9 175.8-175.8 0-97.2-78.6-175.8-175.8-175.8zm-39.9 279.6c-41.7-15.9-71.4-56.4-71.4-103.8s29.7-87.9 71.4-104.1v207.9zm79.8.3V151.6c41.7 16.2 71.4 56.7 71.4 104.1s-29.7 87.9-71.4 104.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM329.7 448h-90.3c-106.2 0-193.8-85.5-193.8-190.2C45.6 143.2 133.2 64 239.4 64h90.3c105 0 200.7 79.2 200.7 193.8 0 104.7-95.7 190.2-200.7 190.2z"], + "cc-discover": [576, 512, [], "f1f2", "M83 212.1c0 7.9-3.2 15.5-8.9 20.7-4.9 4.4-11.6 6.4-21.9 6.4H48V185h4.2c10.3 0 16.7 1.7 21.9 6.6 5.7 5 8.9 12.6 8.9 20.5zM504.8 184h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8 0-7.9-5.5-12.1-15.6-12.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM428 253h45.3v-13.8H444V217h28.3v-13.8H444V185h29.3v-14H428v82zm-86.2-82l35 84.2h8.6l35.5-84.2h-17.5l-22.2 55.2-21.9-55.2h-17.5zm-83 41.6c0 24.6 19.9 44.6 44.6 44.6 24.6 0 44.6-19.9 44.6-44.6 0-24.6-19.9-44.6-44.6-44.6-24.6 0-44.6 19.9-44.6 44.6zm-68-.5c0 32.5 33.6 52.5 63.3 38.2v-19c-19.3 19.3-46.8 5.8-46.8-19.2 0-23.7 26.7-39.1 46.8-19v-19c-30.2-15-63.3 6.8-63.3 38zm-33.9 28.3c-7.6 0-13.8-3.7-17.5-10.8l-10.3 9.9c17.8 26.1 56.6 18.2 56.6-11.3 0-13.1-5.4-19-23.6-25.6-9.6-3.4-12.3-5.9-12.3-10.3 0-8.7 14.5-14.1 24.9-2.5l8.4-10.8c-19.1-17.1-49.7-8.9-49.7 14.3 0 11.3 5.2 17.2 20.2 22.7 25.7 9.1 14.7 24.4 3.3 24.4zm-57.4-28.3c0-24.1-18-41.1-44.1-41.1H32v82h23.4c30.9 0 44.1-22.4 44.1-40.9zm23.4-41.1h-16v82h16v-82zM544 288c-33.3 20.8-226.4 124.4-416 160h401c8.2 0 15-6.8 15-15V288zm0-35l-25.9-34.5c12.1-2.5 18.7-10.6 18.7-23.2 0-28.5-30.3-24.4-52.9-24.4v82h16v-32.8h2.2l22.2 32.8H544z"], + "cc-jcb": [576, 512, [], "f24b", "M431.5 244.3V212c41.2 0 38.5.2 38.5.2 7.3 1.3 13.3 7.3 13.3 16 0 8.8-6 14.5-13.3 15.8-1.2.4-3.3.3-38.5.3zm42.8 20.2c-2.8-.7-3.3-.5-42.8-.5v35c39.6 0 40 .2 42.8-.5 7.5-1.5 13.5-8 13.5-17 0-8.7-6-15.5-13.5-17zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM182 192.3h-57c0 67.1 10.7 109.7-35.8 109.7-19.5 0-38.8-5.7-57.2-14.8v28c30 8.3 68 8.3 68 8.3 97.9 0 82-47.7 82-131.2zm178.5 4.5c-63.4-16-165-14.9-165 59.3 0 77.1 108.2 73.6 165 59.2V287C312.9 311.7 253 309 253 256s59.8-55.6 107.5-31.2v-28zM544 286.5c0-18.5-16.5-30.5-38-32v-.8c19.5-2.7 30.3-15.5 30.3-30.2 0-19-15.7-30-37-31 0 0 6.3-.3-120.3-.3v127.5h122.7c24.3.1 42.3-12.9 42.3-33.2z"], + "cc-mastercard": [576, 512, [], "f1f1", "M482.9 410.3c0 6.8-4.6 11.7-11.2 11.7-6.8 0-11.2-5.2-11.2-11.7 0-6.5 4.4-11.7 11.2-11.7 6.6 0 11.2 5.2 11.2 11.7zm-310.8-11.7c-7.1 0-11.2 5.2-11.2 11.7 0 6.5 4.1 11.7 11.2 11.7 6.5 0 10.9-4.9 10.9-11.7-.1-6.5-4.4-11.7-10.9-11.7zm117.5-.3c-5.4 0-8.7 3.5-9.5 8.7h19.1c-.9-5.7-4.4-8.7-9.6-8.7zm107.8.3c-6.8 0-10.9 5.2-10.9 11.7 0 6.5 4.1 11.7 10.9 11.7 6.8 0 11.2-4.9 11.2-11.7 0-6.5-4.4-11.7-11.2-11.7zm105.9 26.1c0 .3.3.5.3 1.1 0 .3-.3.5-.3 1.1-.3.3-.3.5-.5.8-.3.3-.5.5-1.1.5-.3.3-.5.3-1.1.3-.3 0-.5 0-1.1-.3-.3 0-.5-.3-.8-.5-.3-.3-.5-.5-.5-.8-.3-.5-.3-.8-.3-1.1 0-.5 0-.8.3-1.1 0-.5.3-.8.5-1.1.3-.3.5-.3.8-.5.5-.3.8-.3 1.1-.3.5 0 .8 0 1.1.3.5.3.8.3 1.1.5s.2.6.5 1.1zm-2.2 1.4c.5 0 .5-.3.8-.3.3-.3.3-.5.3-.8 0-.3 0-.5-.3-.8-.3 0-.5-.3-1.1-.3h-1.6v3.5h.8V426h.3l1.1 1.4h.8l-1.1-1.3zM576 81v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V81c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM64 220.6c0 76.5 62.1 138.5 138.5 138.5 27.2 0 53.9-8.2 76.5-23.1-72.9-59.3-72.4-171.2 0-230.5-22.6-15-49.3-23.1-76.5-23.1-76.4-.1-138.5 62-138.5 138.2zm224 108.8c70.5-55 70.2-162.2 0-217.5-70.2 55.3-70.5 162.6 0 217.5zm-142.3 76.3c0-8.7-5.7-14.4-14.7-14.7-4.6 0-9.5 1.4-12.8 6.5-2.4-4.1-6.5-6.5-12.2-6.5-3.8 0-7.6 1.4-10.6 5.4V392h-8.2v36.7h8.2c0-18.9-2.5-30.2 9-30.2 10.2 0 8.2 10.2 8.2 30.2h7.9c0-18.3-2.5-30.2 9-30.2 10.2 0 8.2 10 8.2 30.2h8.2v-23zm44.9-13.7h-7.9v4.4c-2.7-3.3-6.5-5.4-11.7-5.4-10.3 0-18.2 8.2-18.2 19.3 0 11.2 7.9 19.3 18.2 19.3 5.2 0 9-1.9 11.7-5.4v4.6h7.9V392zm40.5 25.6c0-15-22.9-8.2-22.9-15.2 0-5.7 11.9-4.8 18.5-1.1l3.3-6.5c-9.4-6.1-30.2-6-30.2 8.2 0 14.3 22.9 8.3 22.9 15 0 6.3-13.5 5.8-20.7.8l-3.5 6.3c11.2 7.6 32.6 6 32.6-7.5zm35.4 9.3l-2.2-6.8c-3.8 2.1-12.2 4.4-12.2-4.1v-16.6h13.1V392h-13.1v-11.2h-8.2V392h-7.6v7.3h7.6V416c0 17.6 17.3 14.4 22.6 10.9zm13.3-13.4h27.5c0-16.2-7.4-22.6-17.4-22.6-10.6 0-18.2 7.9-18.2 19.3 0 20.5 22.6 23.9 33.8 14.2l-3.8-6c-7.8 6.4-19.6 5.8-21.9-4.9zm59.1-21.5c-4.6-2-11.6-1.8-15.2 4.4V392h-8.2v36.7h8.2V408c0-11.6 9.5-10.1 12.8-8.4l2.4-7.6zm10.6 18.3c0-11.4 11.6-15.1 20.7-8.4l3.8-6.5c-11.6-9.1-32.7-4.1-32.7 15 0 19.8 22.4 23.8 32.7 15l-3.8-6.5c-9.2 6.5-20.7 2.6-20.7-8.6zm66.7-18.3H408v4.4c-8.3-11-29.9-4.8-29.9 13.9 0 19.2 22.4 24.7 29.9 13.9v4.6h8.2V392zm33.7 0c-2.4-1.2-11-2.9-15.2 4.4V392h-7.9v36.7h7.9V408c0-11 9-10.3 12.8-8.4l2.4-7.6zm40.3-14.9h-7.9v19.3c-8.2-10.9-29.9-5.1-29.9 13.9 0 19.4 22.5 24.6 29.9 13.9v4.6h7.9v-51.7zm7.6-75.1v4.6h.8V302h1.9v-.8h-4.6v.8h1.9zm6.6 123.8c0-.5 0-1.1-.3-1.6-.3-.3-.5-.8-.8-1.1-.3-.3-.8-.5-1.1-.8-.5 0-1.1-.3-1.6-.3-.3 0-.8.3-1.4.3-.5.3-.8.5-1.1.8-.5.3-.8.8-.8 1.1-.3.5-.3 1.1-.3 1.6 0 .3 0 .8.3 1.4 0 .3.3.8.8 1.1.3.3.5.5 1.1.8.5.3 1.1.3 1.4.3.5 0 1.1 0 1.6-.3.3-.3.8-.5 1.1-.8.3-.3.5-.8.8-1.1.3-.6.3-1.1.3-1.4zm3.2-124.7h-1.4l-1.6 3.5-1.6-3.5h-1.4v5.4h.8v-4.1l1.6 3.5h1.1l1.4-3.5v4.1h1.1v-5.4zm4.4-80.5c0-76.2-62.1-138.3-138.5-138.3-27.2 0-53.9 8.2-76.5 23.1 72.1 59.3 73.2 171.5 0 230.5 22.6 15 49.5 23.1 76.5 23.1 76.4.1 138.5-61.9 138.5-138.4z"], + "cc-paypal": [576, 512, [], "f1f4", "M186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5z"], + "cc-stripe": [576, 512, [], "f1f5", "M396.9 256.5c0 19.1-8.8 33.4-21.9 33.4-8.3 0-13.3-3-16.8-6.7l-.2-52.8c3.7-4.1 8.8-7 17-7 12.9-.1 21.9 14.5 21.9 33.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM122.2 281.1c0-42.3-54.3-34.7-54.3-50.7 0-5.5 4.6-7.7 12.1-7.7 10.8 0 24.5 3.3 35.3 9.1v-33.4c-11.8-4.7-23.5-6.5-35.3-6.5-28.8 0-48 15-48 40.2 0 39.3 54 32.9 54 49.9 0 6.6-5.7 8.7-13.6 8.7-11.8 0-26.9-4.9-38.9-11.3v33.9c13.2 5.7 26.6 8.1 38.8 8.1 29.6-.2 49.9-14.7 49.9-40.3zm68.9-86.9h-27v-30.8l-34.7 7.4-.2 113.9c0 21 15.8 36.5 36.9 36.5 11.6 0 20.2-2.1 24.9-4.7v-28.9c-4.5 1.8-27 8.3-27-12.6v-50.5h27v-30.3zm73.8 0c-4.7-1.7-21.3-4.8-29.6 10.5l-2.2-10.5h-30.7v124.5h35.5v-84.4c8.4-11 22.6-8.9 27.1-7.4v-32.7zm44.2 0h-35.7v124.5h35.7V194.2zm0-47.3l-35.7 7.6v28.9l35.7-7.6v-28.9zm122.7 108.8c0-41.3-23.5-63.8-48.4-63.8-13.9 0-22.9 6.6-27.8 11.1l-1.8-8.8h-31.3V360l35.5-7.5.1-40.2c5.1 3.7 12.7 9 25.1 9 25.4-.1 48.6-20.5 48.6-65.6zm112.2 1.2c0-36.4-17.6-65.1-51.3-65.1-33.8 0-54.3 28.7-54.3 64.9 0 42.8 24.2 64.5 58.8 64.5 17 0 29.7-3.9 39.4-9.2v-28.6c-9.7 4.9-20.8 7.9-34.9 7.9-13.8 0-26-4.9-27.6-21.5h69.5c.1-2 .4-9.4.4-12.9zm-51.6-36.1c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7z"], + "cc-visa": [576, 512, [], "f1f0", "M470.1 231.3s7.6 37.2 9.3 45H446c3.3-8.9 16-43.5 16-43.5-.2.3 3.3-9.1 5.3-14.9l2.8 13.4zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM152.5 331.2L215.7 176h-42.5l-39.3 106-4.3-21.5-14-71.4c-2.3-9.9-9.4-12.7-18.2-13.1H32.7l-.7 3.1c15.8 4 29.9 9.8 42.2 17.1l35.8 135h42.5zm94.4.2L272.1 176h-40.2l-25.1 155.4h40.1zm139.9-50.8c.2-17.7-10.6-31.2-33.7-42.3-14.1-7.1-22.7-11.9-22.7-19.2.2-6.6 7.3-13.4 23.1-13.4 13.1-.3 22.7 2.8 29.9 5.9l3.6 1.7 5.5-33.6c-7.9-3.1-20.5-6.6-36-6.6-39.7 0-67.6 21.2-67.8 51.4-.3 22.3 20 34.7 35.2 42.2 15.5 7.6 20.8 12.6 20.8 19.3-.2 10.4-12.6 15.2-24.1 15.2-16 0-24.6-2.5-37.7-8.3l-5.3-2.5-5.6 34.9c9.4 4.3 26.8 8.1 44.8 8.3 42.2.1 69.7-20.8 70-53zM528 331.4L495.6 176h-31.1c-9.6 0-16.9 2.8-21 12.9l-59.7 142.5H426s6.9-19.2 8.4-23.3H486c1.2 5.5 4.8 23.3 4.8 23.3H528z"], + "centercode": [512, 512, [], "f380", "M329.2 268.6c-3.8 35.2-35.4 60.6-70.6 56.8-35.2-3.8-60.6-35.4-56.8-70.6 3.8-35.2 35.4-60.6 70.6-56.8 35.1 3.8 60.6 35.4 56.8 70.6zm-85.8 235.1C96.7 496-8.2 365.5 10.1 224.3c11.2-86.6 65.8-156.9 139.1-192 161-77.1 349.7 37.4 354.7 216.6 4.1 147-118.4 262.2-260.5 254.8zm179.9-180c27.9-118-160.5-205.9-237.2-234.2-57.5 56.3-69.1 188.6-33.8 344.4 68.8 15.8 169.1-26.4 271-110.2z"], + "chrome": [496, 512, [], "f268", "M131.5 217.5L55.1 100.1c47.6-59.2 119-91.8 192-92.1 42.3-.3 85.5 10.5 124.8 33.2 43.4 25.2 76.4 61.4 97.4 103L264 133.4c-58.1-3.4-113.4 29.3-132.5 84.1zm32.9 38.5c0 46.2 37.4 83.6 83.6 83.6s83.6-37.4 83.6-83.6-37.4-83.6-83.6-83.6-83.6 37.3-83.6 83.6zm314.9-89.2L339.6 174c37.9 44.3 38.5 108.2 6.6 157.2L234.1 503.6c46.5 2.5 94.4-7.7 137.8-32.9 107.4-62 150.9-192 107.4-303.9zM133.7 303.6L40.4 120.1C14.9 159.1 0 205.9 0 256c0 124 90.8 226.7 209.5 244.9l63.7-124.8c-57.6 10.8-113.2-20.8-139.5-72.5z"], + "cloudscale": [448, 512, [], "f383", "M318.1 154l-9.4 7.6c-22.5-19.3-51.5-33.6-83.3-33.6C153.8 128 96 188.8 96 260.3c0 6.6.4 13.1 1.4 19.4-2-56 41.8-97.4 92.6-97.4 24.2 0 46.2 9.4 62.6 24.7l-25.2 20.4c-8.3-.9-16.8 1.8-23.1 8.1-11.1 11-11.1 28.9 0 40 11.1 11 28.9 11 40 0 6.3-6.3 9-14.9 8.1-23.1l75.2-88.8c6.3-6.5-3.3-15.9-9.5-9.6zm-83.8 111.5c-5.6 5.5-14.6 5.5-20.2 0-5.6-5.6-5.6-14.6 0-20.2s14.6-5.6 20.2 0 5.6 14.7 0 20.2zM224 32C100.5 32 0 132.5 0 256s100.5 224 224 224 224-100.5 224-224S347.5 32 224 32zm0 384c-88.2 0-160-71.8-160-160S135.8 96 224 96s160 71.8 160 160-71.8 160-160 160z"], + "cloudsmith": [332, 512, [], "f384", "M332.5 419.9c0 46.4-37.6 84.1-84 84.1s-84-37.7-84-84.1 37.6-84 84-84 84 37.6 84 84zm-84-243.9c46.4 0 80-37.6 80-84s-33.6-84-80-84-88 37.6-88 84-29.6 76-76 76-84 41.6-84 88 37.6 80 84 80 84-33.6 84-80 33.6-80 80-80z"], + "cloudversify": [616, 512, [], "f385", "M148.6 304c8.2 68.5 67.4 115.5 146 111.3 51.2 43.3 136.8 45.8 186.4-5.6 69.2 1.1 118.5-44.6 131.5-99.5 14.8-62.5-18.2-132.5-92.1-155.1-33-88.1-131.4-101.5-186.5-85-57.3 17.3-84.3 53.2-99.3 109.7-7.8 2.7-26.5 8.9-45 24.1 11.7 0 15.2 8.9 15.2 19.5v20.4c0 10.7-8.7 19.5-19.5 19.5h-20.2c-10.7 0-19.5-6-19.5-16.7V240H98.8C95 240 88 244.3 88 251.9v40.4c0 6.4 5.3 11.8 11.7 11.8h48.9zm227.4 8c-10.7 46.3 21.7 72.4 55.3 86.8C324.1 432.6 259.7 348 296 288c-33.2 21.6-33.7 71.2-29.2 92.9-17.9-12.4-53.8-32.4-57.4-79.8-3-39.9 21.5-75.7 57-93.9C297 191.4 369.9 198.7 400 248c-14.1-48-53.8-70.1-101.8-74.8 30.9-30.7 64.4-50.3 114.2-43.7 69.8 9.3 133.2 82.8 67.7 150.5 35-16.3 48.7-54.4 47.5-76.9l10.5 19.6c11.8 22 15.2 47.6 9.4 72-9.2 39-40.6 68.8-79.7 76.5-32.1 6.3-83.1-5.1-91.8-59.2zM128 208H88.2c-8.9 0-16.2-7.3-16.2-16.2v-39.6c0-8.9 7.3-16.2 16.2-16.2H128c8.9 0 16.2 7.3 16.2 16.2v39.6c0 8.9-7.3 16.2-16.2 16.2zM10.1 168C4.5 168 0 163.5 0 157.9v-27.8c0-5.6 4.5-10.1 10.1-10.1h27.7c5.5 0 10.1 4.5 10.1 10.1v27.8c0 5.6-4.5 10.1-10.1 10.1H10.1zM168 142.7v-21.4c0-5.1 4.2-9.3 9.3-9.3h21.4c5.1 0 9.3 4.2 9.3 9.3v21.4c0 5.1-4.2 9.3-9.3 9.3h-21.4c-5.1 0-9.3-4.2-9.3-9.3zM56 235.5v25c0 6.3-5.1 11.5-11.4 11.5H19.4C13.1 272 8 266.8 8 260.5v-25c0-6.3 5.1-11.5 11.4-11.5h25.1c6.4 0 11.5 5.2 11.5 11.5z"], + "codepen": [512, 512, [], "f1cb", "M502.285 159.704l-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285zM278 63.131l172.286 114.858-76.857 51.429L278 165.703V63.131zm-44 0v102.572l-95.429 63.715-76.857-51.429L234 63.131zM44 219.132l55.143 36.857L44 292.846v-73.714zm190 229.715L61.714 333.989l76.857-51.429L234 346.275v102.572zm22-140.858l-77.715-52 77.715-52 77.715 52-77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429L278 448.847zm190-156.001l-55.143-36.857L468 219.132v73.714z"], + "codiepie": [472, 512, [], "f284", "M422.5 202.9c30.7 0 33.5 53.1-.3 53.1h-10.8v44.3h-26.6v-97.4h37.7zM472 352.6C429.9 444.5 350.4 504 248 504 111 504 0 393 0 256S111 8 248 8c97.4 0 172.8 53.7 218.2 138.4l-186 108.8L472 352.6zm-38.5 12.5l-60.3-30.7c-27.1 44.3-70.4 71.4-122.4 71.4-82.5 0-149.2-66.7-149.2-148.9 0-82.5 66.7-149.2 149.2-149.2 48.4 0 88.9 23.5 116.9 63.4l59.5-34.6c-40.7-62.6-104.7-100-179.2-100-121.2 0-219.5 98.3-219.5 219.5S126.8 475.5 248 475.5c78.6 0 146.5-42.1 185.5-110.4z"], + "connectdevelop": [576, 512, [], "f20e", "M550.5 241l-50.089-86.786c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.733-14.732-15.001l-55.447-95.893c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.268-15.268-15.268-4.821 0-8.839 2.143-11.786 5.625H299.518C296.839 18.143 292.821 16 288 16s-8.839 2.143-11.518 5.625H170.411C167.464 18.143 163.447 16 158.625 16c-8.303 0-15.268 6.696-15.268 15.268 0 1.607.536 3.482 1.072 4.821l-55.983 97.233c-5.356 2.41-9.107 7.5-9.107 13.661 0 .535.268 1.071.268 1.607l-53.304 92.143c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.393 12.054 15l55.179 95.358c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.393 12.054 14.732l51.697 89.732c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.268 15.268 15.268 4.821 0 8.839-2.143 11.518-5.357h106.875C279.161 493.857 283.447 496 288 496s8.839-2.143 11.518-5.357h107.143c2.678 2.946 6.696 4.821 10.982 4.821 8.571 0 15.268-6.964 15.268-15.268 0-1.607-.267-2.946-.803-4.285l51.697-90.268c6.964-1.339 12.054-7.5 12.054-14.732 0-1.607-.268-3.214-.804-4.821l54.911-95.358c6.964-1.339 12.322-7.5 12.322-15-.002-7.232-5.092-13.393-11.788-14.732zM153.535 450.732l-43.66-75.803h43.66v75.803zm0-83.839h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.999-47.41v50.624zm0-62.411l-50.357 53.304c-1.339-.536-2.679-1.34-4.018-1.607L43.447 259.75c.535-1.339.535-2.679.535-4.018s0-2.41-.268-3.482l51.965-90c2.679-.268 5.357-1.072 7.768-2.679l50.089 51.965v92.946zm0-102.322l-45.803-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.928-15.804v72.053zm0-80.625l-43.66 15.804 43.66-75.536v59.732zm326.519 39.108l.804 1.339L445.5 329.125l-63.75-67.232 98.036-101.518.268.268zM291.75 355.107l11.518 11.786H280.5l11.25-11.786zm-.268-11.25l-83.303-85.446 79.553-84.375 83.036 87.589-79.286 82.232zm5.357 5.893l79.286-82.232 67.5 71.25-5.892 28.125H313.714l-16.875-17.143zM410.411 44.393c1.071.536 2.142 1.072 3.482 1.34l57.857 100.714v.536c0 2.946.803 5.624 2.143 7.767L376.393 256l-83.035-87.589L410.411 44.393zm-9.107-2.143L287.732 162.518l-57.054-60.268 166.339-60h4.287zm-123.483 0c2.678 2.678 6.16 4.285 10.179 4.285s7.5-1.607 10.179-4.285h75L224.786 95.821 173.893 42.25h103.928zm-116.249 5.625l1.071-2.142a33.834 33.834 0 0 0 2.679-.804l51.161 53.84-54.911 19.821V47.875zm0 79.286l60.803-21.964 59.732 63.214-79.553 84.107-40.982-42.053v-83.304zm0 92.678L198 257.607l-36.428 38.304v-76.072zm0 87.858l42.053-44.464 82.768 85.982-17.143 17.678H161.572v-59.196zm6.964 162.053c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.732h99.91l-91.607 94.821h-1.339zm129.911 0c-2.679-2.41-6.428-4.285-10.447-4.285s-7.767 1.875-10.447 4.285h-96.429l91.607-94.821h38.304l91.607 94.821H298.447zm120-11.786l-4.286 7.5c-1.339.268-2.41.803-3.482 1.339l-89.196-91.875h114.376l-17.412 83.036zm12.856-22.232l12.858-60.803h21.964l-34.822 60.803zm34.822-68.839h-20.357l4.553-21.16 17.143 18.214c-.535.803-1.071 1.874-1.339 2.946zm66.161-107.411l-55.447 96.697c-1.339.535-2.679 1.071-4.018 1.874l-20.625-21.964 34.554-163.928 45.803 79.286c-.267 1.339-.803 2.678-.803 4.285 0 1.339.268 2.411.536 3.75z"], + "contao": [512, 512, [], "f26d", "M45.4 305c14.4 67.1 26.4 129 68.2 175H34c-18.7 0-34-15.2-34-34V66c0-18.7 15.2-34 34-34h57.7C77.9 44.6 65.6 59.2 54.8 75.6c-45.4 70-27 146.8-9.4 229.4zM478 32h-90.2c21.4 21.4 39.2 49.5 52.7 84.1l-137.1 29.3c-14.9-29-37.8-53.3-82.6-43.9-24.6 5.3-41 19.3-48.3 34.6-8.8 18.7-13.2 39.8 8.2 140.3 21.1 100.2 33.7 117.7 49.5 131.2 12.9 11.1 33.4 17 58.3 11.7 44.5-9.4 55.7-40.7 57.4-73.2l137.4-29.6c3.2 71.5-18.7 125.2-57.4 163.6H478c18.7 0 34-15.2 34-34V66c0-18.8-15.2-34-34-34z"], + "cpanel": [640, 512, [], "f388", "M52.9 213.7h40l-6.2 23.6c-1.9 6.5-7.4 10.9-14.3 10.9H53.8c-24.9 0-24.7 37.4 0 37.4h11.3c4.2 0 7.6 3.9 6.4 8.3L64.4 320H52c-33.5 0-59-31.4-50.3-65.2 7.3-27 28.3-41.1 51.2-41.1M73.1 320L108 189.9c1.8-6.4 7.2-10.9 14.3-10.9h37c24.1 0 45.4 16.4 51 41.2 6.6 29.1-14.5 65.3-51.7 65.3h-32l6.4-23.8c1.8-6.2 7.3-10.8 14.3-10.8h10.3c12.4 0 20.8-11.7 18.3-22.6-2.1-9.2-9.9-14.8-18.3-14.8h-19.8L112 309.2c-1.9 6.2-7.4 10.7-14.2 10.7l-24.7.1m220.6-69.4c.3-1 1.9-5.3-2.1-5.3h-57.5c-9.7 0-16.6-8.9-14.2-18.5l3.5-13.4h77.9c18.8 0 33.3 17.6 28.5 36.8l-14 51.8c-2.8 10.6-12.2 17.8-23.4 17.8l-57.5-.2c-42.9 0-38.5-63.8.7-63.8H284l-3.5 13.2c-1.9 6.2-7.4 10.8-14.2 10.8h-21.6c-5.3 0-5.3 7.9 0 7.9h34.9c4.6 0 5.1-3.9 5.5-5.3l8.6-31.8m103.1-36.9c34.4 0 59.3 32.3 50.3 65.4l-8.8 33.1c-1.2 4.9-5.7 7.8-10.3 7.8h-19.1c-4.5 0-7.6-4-6.4-8.3l10.6-40c3.3-11.6-5.6-23.4-18.1-23.4h-19.8l-17.2 64c-1.2 4.8-5.6 7.8-10.4 7.8h-18.9c-4.2 0-7.6-3.9-6.4-8.3l26.2-98h48.3M498 251.6l-8 30c-.9 3.3 1.5 6.7 5.1 6.7h73.3l-5.7 21c-1.9 6.2-7.4 10.7-14.2 10.7h-66.7c-20 0-33.3-19-28.3-36.7l10.8-40c4.8-17.6 20.7-29.6 38.6-29.6h47.3c19 0 33.2 17.7 28.3 36.8l-3.2 12c-2.9 11-12.7 17.6-23.2 17.6h-53.4l3.5-13c1.6-6.2 7.2-10.8 14.2-10.8H538c2 0 3.3-1 3.9-3l.7-2.6c.7-2.7-1.3-5.1-3.9-5.1h-32.9c-4.1 0-6.9 2.1-7.8 6zm70.2 68.4l35.6-133.1c1.2-4.7 5.5-7.9 10.4-7.9h18.9c4.5 0 7.7 4 6.5 8.3l-26.5 98.2c-5.1 20.7-24.2 34.5-44.9 34.5"], + "creative-commons": [496, 512, [], "f25e", "M245.83 214.87l-33.22 17.28c-9.43-19.58-25.24-19.93-27.46-19.93-22.13 0-33.22 14.61-33.22 43.84 0 23.57 9.21 43.84 33.22 43.84 14.47 0 24.65-7.09 30.57-21.26l30.55 15.5c-6.17 11.51-25.69 38.98-65.1 38.98-22.6 0-73.96-10.32-73.96-77.05 0-58.69 43-77.06 72.63-77.06 30.72-.01 52.7 11.95 65.99 35.86zm143.05 0l-32.78 17.28c-9.5-19.77-25.72-19.93-27.9-19.93-22.14 0-33.22 14.61-33.22 43.84 0 23.55 9.23 43.84 33.22 43.84 14.45 0 24.65-7.09 30.54-21.26l31 15.5c-2.1 3.75-21.39 38.98-65.09 38.98-22.69 0-73.96-9.87-73.96-77.05 0-58.67 42.97-77.06 72.63-77.06 30.71-.01 52.58 11.95 65.56 35.86zM247.56 8.05C104.74 8.05 0 123.11 0 256.05c0 138.49 113.6 248 247.56 248 129.93 0 248.44-100.87 248.44-248 0-137.87-106.62-248-248.44-248zm.87 450.81c-112.54 0-203.7-93.04-203.7-202.81 0-105.42 85.43-203.27 203.72-203.27 112.53 0 202.82 89.46 202.82 203.26-.01 121.69-99.68 202.82-202.84 202.82z"], + "creative-commons-by": [496, 512, [], "f4e7", "M314.9 194.4v101.4h-28.3v120.5h-77.1V295.9h-28.3V194.4c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7H299c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3zm-101.5-63.7c0-23.3 11.5-35 34.5-35s34.5 11.7 34.5 35c0 23-11.5 34.5-34.5 34.5s-34.5-11.5-34.5-34.5zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z"], + "creative-commons-nc": [496, 512, [], "f4e8", "M247.6 8C387.4 8 496 115.9 496 256c0 147.2-118.5 248-248.4 248C113.1 504 0 393.2 0 256 0 123.1 104.7 8 247.6 8zM55.8 189.1c-7.4 20.4-11.1 42.7-11.1 66.9 0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4v38.1h-28.8V368c-27.5-.3-52.6-10.2-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4zM248.4 52.3c-38.4 0-112.4 8.7-170.5 93l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3v-38.1h28.8v38.1c22.7 1.2 43.4 8.9 62 23L295 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8z"], + "creative-commons-nc-eu": [496, 512, [], "f4e9", "M247.7 8C103.6 8 0 124.8 0 256c0 136.3 111.7 248 247.7 248C377.9 504 496 403.1 496 256 496 117 388.4 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-23.2 3.7-45.2 10.9-66l65.7 29.1h-4.7v29.5h23.3c0 6.2-.4 3.2-.4 19.5h-22.8v29.5h27c11.4 67 67.2 101.3 124.6 101.3 26.6 0 50.6-7.9 64.8-15.8l-10-46.1c-8.7 4.6-28.2 10.8-47.3 10.8-28.2 0-58.1-10.9-67.3-50.2h90.3l128.3 56.8c-1.5 2.1-56.2 104.3-178.8 104.3zm-16.7-190.6l-.5-.4.9.4h-.4zm77.2-19.5h3.7v-29.5h-70.3l-28.6-12.6c2.5-5.5 5.4-10.5 8.8-14.3 12.9-15.8 31.1-22.4 51.1-22.4 18.3 0 35.3 5.4 46.1 10l11.6-47.3c-15-6.6-37-12.4-62.3-12.4-39 0-72.2 15.8-95.9 42.3-5.3 6.1-9.8 12.9-13.9 20.1l-81.6-36.1c64.6-96.8 157.7-93.6 170.7-93.6 113 0 203 90.2 203 203.4 0 18.7-2.1 36.3-6.3 52.9l-136.1-60.5z"], + "creative-commons-nc-jp": [496, 512, [], "f4ea", "M247.7 8C103.6 8 0 124.8 0 256c0 136.4 111.8 248 247.7 248C377.9 504 496 403.2 496 256 496 117.2 388.5 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-21.1 3-41.2 9-60.3l127 56.5h-27.9v38.6h58.1l5.7 11.8v18.7h-63.8V360h63.8v56h61.7v-56h64.2v-35.7l81 36.1c-1.5 2.2-57.1 98.3-175.2 98.3zm87.6-137.3h-57.6v-18.7l2.9-5.6 54.7 24.3zm6.5-51.4v-17.8h-38.6l63-116H301l-43.4 96-23-10.2-39.6-85.7h-65.8l27.3 51-81.9-36.5c27.8-44.1 82.6-98.1 173.7-98.1 112.8 0 203 90 203 203.4 0 21-2.7 40.6-7.9 59l-101-45.1z"], + "creative-commons-nd": [496, 512, [], "f4eb", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm94 144.3v42.5H162.1V197h180.3zm0 79.8v42.5H162.1v-42.5h180.3z"], + "creative-commons-pd": [496, 512, [], "f4ec", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm0 449.5c-139.2 0-235.8-138-190.2-267.9l78.8 35.1c-2.1 10.5-3.3 21.5-3.3 32.9 0 99 73.9 126.9 120.4 126.9 22.9 0 53.5-6.7 79.4-29.5L297 311.1c-5.5 6.3-17.6 16.7-36.3 16.7-37.8 0-53.7-39.9-53.9-71.9 230.4 102.6 216.5 96.5 217.9 96.8-34.3 62.4-100.6 104.8-176.7 104.8zm194.2-150l-224-100c18.8-34 54.9-30.7 74.7-11l40.4-41.6c-27.1-23.3-58-27.5-78.1-27.5-47.4 0-80.9 20.5-100.7 51.6l-74.9-33.4c36.1-54.9 98.1-91.2 168.5-91.2 111.1 0 201.5 90.4 201.5 201.5 0 18-2.4 35.4-6.8 52-.3-.1-.4-.2-.6-.4z"], + "creative-commons-pd-alt": [496, 512, [], "f4ed", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM135.5 323.3V186h68.2c33.7 0 50.5 15.5 50.5 46.5 0 9-3 46.5-57.1 46.5h-27v44.3h-34.6zm34.1-111.6v41.6h29.2c27.9 0 30-41.6-.9-41.6h-28.3zm93.9 111.6V186h53.2c21.4 0 70 5.2 70 68.6 0 63.5-48.6 68.6-70 68.6h-53.2zm34.1-108.5v79.7h19.9c24 0 34.5-15.3 34.5-39.9 0-42-31.2-39.9-35-39.9l-19.4.1z"], + "creative-commons-remix": [496, 512, [], "f4ee", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm161.7 207.7l4.9 2.2v70c-7.2 3.6-63.4 27.5-67.3 28.8-6.5-1.8-113.7-46.8-137.3-56.2l-64.2 26.6-63.3-27.5v-63.8l59.3-24.8c-.7-.7-.4 5-.4-70.4l67.3-29.7L361 178.5v61.6l49.1 20.3zm-70.4 81.5v-43.8h-.4v-1.8l-113.8-46.5V295l113.8 46.9v-.4l.4.4zm7.5-57.6l39.9-16.4-36.8-15.5-39 16.4 35.9 15.5zm52.3 38.1v-43L355.2 298v43.4l44.3-19z"], + "creative-commons-sa": [496, 512, [], "f4ef", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM137.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97h62.5c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6-33.1 0-51.7 14.6-55.8 43.8h18.2l-49.2 49.2-49-49.2h19.4z"], + "creative-commons-sampling": [496, 512, [], "f4f0", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm3.6 53.2c2.8-.3 11.5 1 11.5 11.5l6.6 107.2 4.9-59.3c0-6 4.7-10.6 10.6-10.6 5.9 0 10.6 4.7 10.6 10.6 0 2.5-.5-5.7 5.7 81.5l5.8-64.2c.3-2.9 2.9-9.3 10.2-9.3 3.8 0 9.9 2.3 10.6 8.9l11.5 96.5 5.3-12.8c1.8-4.4 5.2-6.6 10.2-6.6h58v21.3h-50.9l-18.2 44.3c-3.9 9.9-19.5 9.1-20.8-3.1l-4-31.9-7.5 92.6c-.3 3-3 9.3-10.2 9.3-3 0-9.8-2.1-10.6-9.3 0-1.9.6 5.8-6.2-77.9l-5.3 72.2c-1.1 4.8-4.8 9.3-10.6 9.3-2.9 0-9.8-2-10.6-9.3 0-1.9.5 6.7-5.8-87.7l-5.8 94.8c0 6.3-3.6 12.4-10.6 12.4-5.2 0-10.6-4.1-10.6-12l-5.8-87.7c-5.8 92.5-5.3 84-5.3 85.9-1.1 4.8-4.8 9.3-10.6 9.3-3 0-9.8-2.1-10.6-9.3 0-.7-.4-1.1-.4-2.6l-6.2-88.6L182 348c-.7 6.5-6.7 9.3-10.6 9.3-5.8 0-9.6-4.1-10.6-8.9L149.7 272c-2 4-3.5 8.4-11.1 8.4H87.2v-21.3H132l13.7-27.9c4.4-9.9 18.2-7.2 19.9 2.7l3.1 20.4 8.4-97.9c0-6 4.8-10.6 10.6-10.6.5 0 10.6-.2 10.6 12.4l4.9 69.1 6.6-92.6c0-10.1 9.5-10.6 10.2-10.6.6 0 10.6.7 10.6 10.6l5.3 80.6 6.2-97.9c.1-1.1-.6-10.3 9.9-11.5z"], + "creative-commons-sampling-plus": [496, 512, [], "f4f1", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm107 205.6c-4.7 0-9 2.8-10.7 7.2l-4 9.5-11-92.8c-1.7-13.9-22-13.4-23.1.4l-4.3 51.4-5.2-68.8c-1.1-14.3-22.1-14.2-23.2 0l-3.5 44.9-5.9-94.3c-.9-14.5-22.3-14.4-23.2 0l-5.1 83.7-4.3-66.3c-.9-14.4-22.2-14.4-23.2 0l-5.3 80.2-4.1-57c-1.1-14.3-22-14.3-23.2-.2l-7.7 89.8-1.8-12.2c-1.7-11.4-17.1-13.6-22-3.3l-13.2 27.7H87.5v23.2h51.3c4.4 0 8.4-2.5 10.4-6.4l10.7 73.1c2 13.5 21.9 13 23.1-.7l3.8-43.6 5.7 78.3c1.1 14.4 22.3 14.2 23.2-.1l4.6-70.4 4.8 73.3c.9 14.4 22.3 14.4 23.2-.1l4.9-80.5 4.5 71.8c.9 14.3 22.1 14.5 23.2.2l4.6-58.6 4.9 64.4c1.1 14.3 22 14.2 23.1.1l6.8-83 2.7 22.3c1.4 11.8 17.7 14.1 22.3 3.1l18-43.4h50.5V258l-58.4.3zm-78 5.2h-21.9v21.9c0 4.1-3.3 7.5-7.5 7.5-4.1 0-7.5-3.3-7.5-7.5v-21.9h-21.9c-4.1 0-7.5-3.3-7.5-7.5 0-4.1 3.4-7.5 7.5-7.5h21.9v-21.9c0-4.1 3.4-7.5 7.5-7.5s7.5 3.3 7.5 7.5v21.9h21.9c4.1 0 7.5 3.3 7.5 7.5 0 4.1-3.4 7.5-7.5 7.5z"], + "creative-commons-share": [496, 512, [], "f4f2", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm101 132.4c7.8 0 13.7 6.1 13.7 13.7v182.5c0 7.7-6.1 13.7-13.7 13.7H214.3c-7.7 0-13.7-6-13.7-13.7v-54h-54c-7.8 0-13.7-6-13.7-13.7V131.1c0-8.2 6.6-12.7 12.4-13.7h136.4c7.7 0 13.7 6 13.7 13.7v54h54zM159.9 300.3h40.7V198.9c0-7.4 5.8-12.6 12-13.7h55.8v-40.3H159.9v155.4zm176.2-88.1H227.6v155.4h108.5V212.2z"], + "css3": [512, 512, [], "f13c", "M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z"], + "css3-alt": [384, 512, [], "f38b", "M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z"], + "cuttlefish": [440, 512, [], "f38c", "M344 305.5c-17.5 31.6-57.4 54.5-96 54.5-56.6 0-104-47.4-104-104s47.4-104 104-104c38.6 0 78.5 22.9 96 54.5 13.7-50.9 41.7-93.3 87-117.8C385.7 39.1 320.5 8 248 8 111 8 0 119 0 256s111 248 248 248c72.5 0 137.7-31.1 183-80.7-45.3-24.5-73.3-66.9-87-117.8z"], + "d-and-d": [576, 512, [], "f38d", "M82.5 98.9c-.6-17.2 2-33.8 12.7-48.2.3 7.4 1.2 14.5 4.2 21.6 5.9-27.5 19.7-49.3 42.3-65.5-1.9 5.9-3.5 11.8-3 17.7 8.7-7.4 18.8-17.8 44.4-22.7 14.7-2.8 29.7-2 42.1 1 38.5 9.3 61 34.3 69.7 72.3 5.3 23.1.7 45-8.3 66.4-5.2 12.4-12 24.4-20.7 35.1-2-1.9-3.9-3.8-5.8-5.6-42.8-40.8-26.8-25.2-37.4-37.4-1.1-1.2-1-2.2-.1-3.6 8.3-13.5 11.8-28.2 10-44-1.1-9.8-4.3-18.9-11.3-26.2-14.5-15.3-39.2-15-53.5.6-11.4 12.5-14.1 27.4-10.9 43.6.2 1.3.4 2.7 0 3.9-3.4 13.7-4.6 27.6-2.5 41.6.1.5.1 1.1.1 1.6 0 .3-.1.5-.2 1.1-21.8-11-36-28.3-43.2-52.2-8.3 17.8-11.1 35.5-6.6 54.1-15.6-15.2-21.3-34.3-22-55.2zm469.6 123.2c-11.6-11.6-25-20.4-40.1-26.6-12.8-5.2-26-7.9-39.9-7.1-10 .6-19.6 3.1-29 6.4-2.5.9-5.1 1.6-7.7 2.2-4.9 1.2-7.3-3.1-4.7-6.8 3.2-4.6 3.4-4.2 15-12 .6-.4 1.2-.8 2.2-1.5h-2.5c-.6 0-1.2.2-1.9.3-19.3 3.3-30.7 15.5-48.9 29.6-10.4 8.1-13.8 3.8-12-.5 1.4-3.5 3.3-6.7 5.1-10 1-1.8 2.3-3.4 3.5-5.1-.2-.2-.5-.3-.7-.5-27 18.3-46.7 42.4-57.7 73.3.3.3.7.6 1 .9.3-.6.5-1.2.9-1.7 10.4-12.1 22.8-21.8 36.6-29.8 18.2-10.6 37.5-18.3 58.7-20.2 4.3-.4 8.7-.1 13.1-.1-1.8.7-3.5.9-5.3 1.1-18.5 2.4-35.5 9-51.5 18.5-30.2 17.9-54.5 42.2-75.1 70.4-.3.4-.4.9-.7 1.3 14.5 5.3 24 17.3 36.1 25.6.2-.1.3-.2.4-.4l1.2-2.7c12.2-26.9 27-52.3 46.7-74.5 16.7-18.8 38-25.3 62.5-20 5.9 1.3 11.4 4.4 17.2 6.8 2.3-1.4 5.1-3.2 8-4.7 8.4-4.3 17.4-7 26.7-9 14.7-3.1 29.5-4.9 44.5-1.3v-.5c-.5-.4-1.2-.8-1.7-1.4zM316.7 397.6c-39.4-33-22.8-19.5-42.7-35.6-.8.9 0-.2-1.9 3-11.2 19.1-25.5 35.3-44 47.6-10.3 6.8-21.5 11.8-34.1 11.8-21.6 0-38.2-9.5-49.4-27.8-12-19.5-13.3-40.7-8.2-62.6 7.8-33.8 30.1-55.2 38.6-64.3-18.7-6.2-33 1.7-46.4 13.9.8-13.9 4.3-26.2 11.8-37.3-24.3 10.6-45.9 25-64.8 43.9-.3-5.8 5.4-43.7 5.6-44.7.3-2.7-.6-5.3-3-7.4-24.2 24.7-44.5 51.8-56.1 84.6 7.4-5.9 14.9-11.4 23.6-16.2-8.3 22.3-19.6 52.8-7.8 101.1 4.6 19 11.9 36.8 24.1 52.3 2.9 3.7 6.3 6.9 9.5 10.3.2-.2.4-.3.6-.5-1.4-7-2.2-14.1-1.5-21.9 2.2 3.2 3.9 6 5.9 8.6 12.6 16 28.7 27.4 47.2 35.6 25 11.3 51.1 13.3 77.9 8.6 54.9-9.7 90.7-48.6 116-98.8 1-1.8.6-2.9-.9-4.2zm172-46.4c-9.5-3.1-22.2-4.2-28.7-2.9 9.9 4 14.1 6.6 18.8 12 12.6 14.4 10.4 34.7-5.4 45.6-11.7 8.1-24.9 10.5-38.9 9.1-1.2-.1-2.3-.4-3-.6 2.8-3.7 6-7 8.1-10.8 9.4-16.8 5.4-42.1-8.7-56.1-2.1-2.1-4.6-3.9-7-5.9-.3 1.3-.1 2.1.1 2.8 4.2 16.6-8.1 32.4-24.8 31.8-7.6-.3-13.9-3.8-19.6-8.5-19.5-16.1-39.1-32.1-58.5-48.3-5.9-4.9-12.5-8.1-20.1-8.7-4.6-.4-9.3-.6-13.9-.9-5.9-.4-8.8-2.8-10.4-8.4-.9-3.4-1.5-6.8-2.2-10.2-1.5-8.1-6.2-13-14.3-14.2-4.4-.7-8.9-1-13.3-1.5-13-1.4-19.8-7.4-22.6-20.3-5 11-1.6 22.4 7.3 29.9 4.5 3.8 9.3 7.3 13.8 11.2 4.6 3.8 7.4 8.7 7.9 14.8.4 4.7.8 9.5 1.8 14.1 2.2 10.6 8.9 18.4 17 25.1 16.5 13.7 33 27.3 49.5 41.1 17.9 15 13.9 32.8 13 56-.9 22.9 12.2 42.9 33.5 51.2 1 .4 2 .6 3.6 1.1-15.7-18.2-10.1-44.1.7-52.3.3 2.2.4 4.3.9 6.4 9.4 44.1 45.4 64.2 85 56.9 16-2.9 30.6-8.9 42.9-19.8 2-1.8 3.7-4.1 5.9-6.5-19.3 4.6-35.8.1-50.9-10.6.7-.3 1.3-.3 1.9-.3 21.3 1.8 40.6-3.4 57-17.4 19.5-16.6 26.6-42.9 17.4-66-8.3-20.1-23.6-32.3-43.8-38.9zM99.4 179.3c-5.3-9.2-13.2-15.6-22.1-21.3 13.7-.5 26.6.2 39.6 3.7-7-12.2-8.5-24.7-5-38.7 5.3 11.9 13.7 20.1 23.6 26.8 19.7 13.2 35.7 19.6 46.7 30.2 3.4 3.3 6.3 7.1 9.6 10.9-.8-2.1-1.4-4.1-2.2-6-5-10.6-13-18.6-22.6-25-1.8-1.2-2.8-2.5-3.4-4.5-3.3-12.5-3-25.1-.7-37.6 1-5.5 2.8-10.9 4.5-16.3.8-2.4 2.3-4.6 4-6.6.6 6.9 0 25.5 19.6 46 10.8 11.3 22.4 21.9 33.9 32.7 9 8.5 18.3 16.7 25.5 26.8 1.1 1.6 2.2 3.3 3.8 4.7-5-13-14.2-24.1-24.2-33.8-9.6-9.3-19.4-18.4-29.2-27.4-3.3-3-4.6-6.7-5.1-10.9-1.2-10.4 0-20.6 4.3-30.2.5-1 1.1-2 1.9-3.3.5 4.2.6 7.9 1.4 11.6 4.8 23.1 20.4 36.3 49.3 63.5 10 9.4 19.3 19.2 25.6 31.6 4.8 9.3 7.3 19 5.7 29.6-.1.6.5 1.7 1.1 2 6.2 2.6 10 6.9 9.7 14.3 7.7-2.6 12.5-8 16.4-14.5 4.2 20.2-9.1 50.3-27.2 58.7.4-4.5 5-23.4-16.5-27.7-6.8-1.3-12.8-1.3-22.9-2.1 4.7-9 10.4-20.6.5-22.4-24.9-4.6-52.8 1.9-57.8 4.6 8.2.4 16.3 1 23.5 3.3-2 6.5-4 12.7-5.8 18.9-1.9 6.5 2.1 14.6 9.3 9.6 1.2-.9 2.3-1.9 3.3-2.7-3.1 17.9-2.9 15.9-2.8 18.3.3 10.2 9.5 7.8 15.7 7.3-2.5 11.8-29.5 27.3-45.4 25.8 7-4.7 12.7-10.3 15.9-17.9-6.5.8-12.9 1.6-19.2 2.4l-.3-.9c4.7-3.4 8-7.8 10.2-13.1 8.7-21.1-3.6-38-25-39.9-9.1-.8-17.8.8-25.9 5.5 6.2-15.6 17.2-26.6 32.6-34.5-15.2-4.3-8.9-2.7-24.6-6.3 14.6-9.3 30.2-13.2 46.5-14.6-5.2-3.2-48.1-3.6-70.2 20.9 7.9 1.4 15.5 2.8 23.2 4.2-23.8 7-44 19.7-62.4 35.6 1.1-4.8 2.7-9.5 3.3-14.3.6-4.5.8-9.2.1-13.6-1.5-9.4-8.9-15.1-19.7-16.3-7.9-.9-15.6.1-23.3 1.3-.9.1-1.7.3-2.9 0 15.8-14.8 36-21.7 53.1-33.5 6-4.5 6.8-8.2 3-14.9zm128.4 26.8c3.3 16 12.6 25.5 23.8 24.3-4.6-11.3-12.1-19.5-23.8-24.3z"], + "dashcube": [448, 512, [], "f210", "M326.6 104H110.4c-51.1 0-91.2 43.3-91.2 93.5V427c0 50.5 40.1 85 91.2 85h227.2c51.1 0 91.2-34.5 91.2-85V0L326.6 104zM153.9 416.5c-17.7 0-32.4-15.1-32.4-32.8V240.8c0-17.7 14.7-32.5 32.4-32.5h140.7c17.7 0 32 14.8 32 32.5v123.5l51.1 52.3H153.9z"], + "delicious": [448, 512, [], "f1a5", "M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1.5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3 1 1.1 2.1 2.2 3.3 3.3 5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12zM416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192v176z"], + "deploydog": [512, 512, [], "f38e", "M382.2 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.6 0-33.2 16.4-33.2 32.6zM188.5 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.7 0-33.2 16.4-33.2 32.6zM448 96c17.5 0 32 14.4 32 32v256c0 17.5-14.4 32-32 32H64c-17.5 0-32-14.4-32-32V128c0-17.5 14.4-32 32-32h384m0-32H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h384c35.2 0 64-28.8 64-64V128c0-35.2-28.8-64-64-64z"], + "deskpro": [480, 512, [], "f38f", "M205.9 512l31.1-38.4c12.3-.2 25.6-1.4 36.5-6.6 38.9-18.6 38.4-61.9 38.3-63.8-.1-5-.8-4.4-28.9-37.4H362c-.2 50.1-7.3 68.5-10.2 75.7-9.4 23.7-43.9 62.8-95.2 69.4-8.7 1.1-32.8 1.2-50.7 1.1zm200.4-167.7c38.6 0 58.5-13.6 73.7-30.9l-175.5-.3-17.4 31.3 119.2-.1zm-43.6-223.9v168.3h-73.5l-32.7 55.5H250c-52.3 0-58.1-56.5-58.3-58.9-1.2-13.2-21.3-11.6-20.1 1.8 1.4 15.8 8.8 40 26.4 57.1h-91c-25.5 0-110.8-26.8-107-114V16.9C0 .9 9.7.3 15 .1h82c.2 0 .3.1.5.1 4.3-.4 50.1-2.1 50.1 43.7 0 13.3 20.2 13.4 20.2 0 0-18.2-5.5-32.8-15.8-43.7h84.2c108.7-.4 126.5 79.4 126.5 120.2zm-132.5 56l64 29.3c13.3-45.5-42.2-71.7-64-29.3z"], + "deviantart": [320, 512, [], "f1bd", "M320 93.2l-98.2 179.1 7.4 9.5H320v127.7H159.1l-13.5 9.2-43.7 84c-.3 0-8.6 8.6-9.2 9.2H0v-93.2l93.2-179.4-7.4-9.2H0V102.5h156l13.5-9.2 43.7-84c.3 0 8.6-8.6 9.2-9.2H320v93.1z"], + "digg": [512, 512, [], "f1a6", "M81.7 172.3H0v174.4h132.7V96h-51v76.3zm0 133.4H50.9v-92.3h30.8v92.3zm297.2-133.4v174.4h81.8v28.5h-81.8V416H512V172.3H378.9zm81.8 133.4h-30.8v-92.3h30.8v92.3zm-235.6 41h82.1v28.5h-82.1V416h133.3V172.3H225.1v174.4zm51.2-133.3h30.8v92.3h-30.8v-92.3zM153.3 96h51.3v51h-51.3V96zm0 76.3h51.3v174.4h-51.3V172.3z"], + "digital-ocean": [512, 512, [], "f391", "M256 504v-96.1c101.8 0 180.8-100.9 141.7-208-14.3-39.6-46.1-71.4-85.8-85.7-107.1-38.8-208.1 39.9-208.1 141.7H8C8 93.7 164.9-32.8 335 20.3c74.2 23.3 133.6 82.4 156.6 156.6C544.8 347.2 418.6 504 256 504zm.3-191.4h-95.6v95.6h95.6v-95.6zm-95.6 95.6H87v73.6h73.7v-73.6zM87 346.6H25.4v61.6H87v-61.6z"], + "discord": [448, 512, [], "f392", "M297.216 243.2c0 15.616-11.52 28.416-26.112 28.416-14.336 0-26.112-12.8-26.112-28.416s11.52-28.416 26.112-28.416c14.592 0 26.112 12.8 26.112 28.416zm-119.552-28.416c-14.592 0-26.112 12.8-26.112 28.416s11.776 28.416 26.112 28.416c14.592 0 26.112-12.8 26.112-28.416.256-15.616-11.52-28.416-26.112-28.416zM448 52.736V512c-64.494-56.994-43.868-38.128-118.784-107.776l13.568 47.36H52.48C23.552 451.584 0 428.032 0 398.848V52.736C0 23.552 23.552 0 52.48 0h343.04C424.448 0 448 23.552 448 52.736zm-72.96 242.688c0-82.432-36.864-149.248-36.864-149.248-36.864-27.648-71.936-26.88-71.936-26.88l-3.584 4.096c43.52 13.312 63.744 32.512 63.744 32.512-60.811-33.329-132.244-33.335-191.232-7.424-9.472 4.352-15.104 7.424-15.104 7.424s21.248-20.224 67.328-33.536l-2.56-3.072s-35.072-.768-71.936 26.88c0 0-36.864 66.816-36.864 149.248 0 0 21.504 37.12 78.08 38.912 0 0 9.472-11.52 17.152-21.248-32.512-9.728-44.8-30.208-44.8-30.208 3.766 2.636 9.976 6.053 10.496 6.4 43.21 24.198 104.588 32.126 159.744 8.96 8.96-3.328 18.944-8.192 29.44-15.104 0 0-12.8 20.992-46.336 30.464 7.68 9.728 16.896 20.736 16.896 20.736 56.576-1.792 78.336-38.912 78.336-38.912z"], + "discourse": [448, 512, [], "f393", "M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z"], + "dochub": [416, 512, [], "f394", "M397.9 160H256V19.6L397.9 160zM304 192v130c0 66.8-36.5 100.1-113.3 100.1H96V84.8h94.7c12 0 23.1.8 33.1 2.5v-84C212.9 1.1 201.4 0 189.2 0H0v512h189.2C329.7 512 400 447.4 400 318.1V192h-96z"], + "docker": [640, 512, [], "f395", "M349.9 236.3h-66.1v-59.4h66.1v59.4zm0-204.3h-66.1v60.7h66.1V32zm78.2 144.8H362v59.4h66.1v-59.4zm-156.3-72.1h-66.1v60.1h66.1v-60.1zm78.1 0h-66.1v60.1h66.1v-60.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4.4 67.6.1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1l-13.3-8.9zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm-78.1-72.1h-66.1v60.1h66.1v-60.1z"], + "draft2digital": [480, 512, [], "f396", "M369.9 425.4V371l47.1 27.2-47.1 27.2zM82.4 380.6c25.5-27.3 97.7-104.7 150.9-170 35.1-43.1 40.3-82.4 28.4-112.7-7.4-18.8-17.5-30.2-24.3-35.7 45.3 2.1 68 23.4 82.2 38.3 0 0 42.4 48.2 5.8 113.3-37 65.9-110.9 147.5-128.5 166.7H82.4zm51.8-219.2c0 12.4-10 22.4-22.4 22.4-12.4 0-22.4-10-22.4-22.4 0-12.4 10-22.4 22.4-22.4 12.4 0 22.4 10.1 22.4 22.4M336 315.9v64.7h-91.3c30.8-35 81.8-95.9 111.8-149.3 35.2-62.6 16.1-123.4-12.8-153.3-4.4-4.6-62.2-62.9-166-41.2-59.1 12.4-89.4 43.4-104.3 67.3-13.1 20.9-17 39.8-18.2 47.7-5.5 33 19.4 67.1 56.7 67.1 31.7 0 57.3-25.7 57.3-57.4 0-27.1-19.7-52.1-48-56.8 1.8-7.3 17.7-21.1 26.3-24.7 41.1-17.3 78 5.2 83.3 33.5 8.3 44.3-37.1 90.4-69.7 127.6C84.5 328.1 18.3 396.8 0 415.9l336-.1V480l144-81.9-144-82.2z"], + "dribbble": [512, 512, [], "f17d", "M256 8C119.252 8 8 119.252 8 256s111.252 248 248 248 248-111.252 248-248S392.748 8 256 8zm163.97 114.366c29.503 36.046 47.369 81.957 47.835 131.955-6.984-1.477-77.018-15.682-147.502-6.818-5.752-14.041-11.181-26.393-18.617-41.614 78.321-31.977 113.818-77.482 118.284-83.523zM396.421 97.87c-3.81 5.427-35.697 48.286-111.021 76.519-34.712-63.776-73.185-116.168-79.04-124.008 67.176-16.193 137.966 1.27 190.061 47.489zm-230.48-33.25c5.585 7.659 43.438 60.116 78.537 122.509-99.087 26.313-186.36 25.934-195.834 25.809C62.38 147.205 106.678 92.573 165.941 64.62zM44.17 256.323c0-2.166.043-4.322.108-6.473 9.268.19 111.92 1.513 217.706-30.146 6.064 11.868 11.857 23.915 17.174 35.949-76.599 21.575-146.194 83.527-180.531 142.306C64.794 360.405 44.17 310.73 44.17 256.323zm81.807 167.113c22.127-45.233 82.178-103.622 167.579-132.756 29.74 77.283 42.039 142.053 45.189 160.638-68.112 29.013-150.015 21.053-212.768-27.882zm248.38 8.489c-2.171-12.886-13.446-74.897-41.152-151.033 66.38-10.626 124.7 6.768 131.947 9.055-9.442 58.941-43.273 109.844-90.795 141.978z"], + "dribbble-square": [448, 512, [], "f397", "M90.2 228.2c8.9-42.4 37.4-77.7 75.7-95.7 3.6 4.9 28 38.8 50.7 79-64 17-120.3 16.8-126.4 16.7zM314.6 154c-33.6-29.8-79.3-41.1-122.6-30.6 3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4zM140.1 364c40.5 31.6 93.3 36.7 137.3 18-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6zm98.8-108.2c-3.4-7.8-7.2-15.5-11.1-23.2C159.6 253 93.4 252.2 87.4 252c0 1.4-.1 2.8-.1 4.2 0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8zm34.9 16.3c17.9 49.1 25.1 89.1 26.5 97.4 30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8zm-20.3-48.4c4.8 9.8 8.3 17.8 12 26.8 45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 176c0-88.2-71.8-160-160-160S64 167.8 64 256s71.8 160 160 160 160-71.8 160-160z"], + "dropbox": [528, 512, [], "f16b", "M264.4 116.3l-132 84.3 132 84.3-132 84.3L0 284.1l132.3-84.3L0 116.3 132.3 32l132.1 84.3zM131.6 395.7l132-84.3 132 84.3-132 84.3-132-84.3zm132.8-111.6l132-84.3-132-83.6L395.7 32 528 116.3l-132.3 84.3L528 284.8l-132.3 84.3-131.3-85z"], + "drupal": [448, 512, [], "f1a9", "M319.5 114.7c-22.2-14-43.5-19.5-64.7-33.5-13-8.8-31.3-30-46.5-48.3-2.7 29.3-11.5 41.2-22 49.5-21.3 17-34.8 22.2-53.5 32.3C117 123 32 181.5 32 290.5 32 399.7 123.8 480 225.8 480 327.5 480 416 406 416 294c0-112.3-83-171-96.5-179.3zm2.5 325.6c-20.1 20.1-90.1 28.7-116.7 4.2-4.8-4.8.3-12 6.5-12 0 0 17 13.3 51.5 13.3 27 0 46-7.7 54.5-14 6.1-4.6 8.4 4.3 4.2 8.5zm-54.5-52.6c8.7-3.6 29-3.8 36.8 1.3 4.1 2.8 16.1 18.8 6.2 23.7-8.4 4.2-1.2-15.7-26.5-15.7-14.7 0-19.5 5.2-26.7 11-7 6-9.8 8-12.2 4.7-6-8.2 15.9-22.3 22.4-25zM360 405c-15.2-1-45.5-48.8-65-49.5-30.9-.9-104.1 80.7-161.3 42-38.8-26.6-14.6-104.8 51.8-105.2 49.5-.5 83.8 49 108.5 48.5 21.3-.3 61.8-41.8 81.8-41.8 48.7 0 23.3 109.3-15.8 106z"], + "dyalog": [416, 512, [], "f399", "M0 32v119.2h64V96h107.2C284.6 96 352 176.2 352 255.9 352 332 293.4 416 171.2 416H0v64h171.2C331.9 480 416 367.3 416 255.9c0-58.7-22.1-113.4-62.3-154.3C308.9 56 245.7 32 171.2 32H0z"], + "earlybirds": [480, 512, [], "f39a", "M313.2 47.5c1.2-13 21.3-14 36.6-8.7.9.3 26.2 9.7 19 15.2-27.9-7.4-56.4 18.2-55.6-6.5zm-201 6.9c30.7-8.1 62 20 61.1-7.1-1.3-14.2-23.4-15.3-40.2-9.6-1 .3-28.7 10.5-20.9 16.7zM319.4 160c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-159.7 0c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm318.5 163.2c-9.9 24-40.7 11-63.9-1.2-13.5 69.1-58.1 111.4-126.3 124.2.3.9-2-.1 24 1 33.6 1.4 63.8-3.1 97.4-8-19.8-13.8-11.4-37.1-9.8-38.1 1.4-.9 14.7 1.7 21.6 11.5 8.6-12.5 28.4-14.8 30.2-13.6 1.6 1.1 6.6 20.9-6.9 34.6 4.7-.9 8.2-1.6 9.8-2.1 2.6-.8 17.7 11.3 3.1 13.3-14.3 2.3-22.6 5.1-47.1 10.8-45.9 10.7-85.9 11.8-117.7 12.8l1 11.6c3.8 18.1-23.4 24.3-27.6 6.2.8 17.9-27.1 21.8-28.4-1l-.5 5.3c-.7 18.4-28.4 17.9-28.3-.6-7.5 13.5-28.1 6.8-26.4-8.5l1.2-12.4c-36.7.9-59.7 3.1-61.8 3.1-20.9 0-20.9-31.6 0-31.6 2.4 0 27.7 1.3 63.2 2.8-61.1-15.5-103.7-55-114.9-118.2-25 12.8-57.5 26.8-68.2.8-10.5-25.4 21.5-42.6 66.8-73.4.7-6.6 1.6-13.3 2.7-19.8-14.4-19.6-11.6-36.3-16.1-60.4-16.8 2.4-23.2-9.1-23.6-23.1.3-7.3 2.1-14.9 2.4-15.4 1.1-1.8 10.1-2 12.7-2.6 6-31.7 50.6-33.2 90.9-34.5 19.7-21.8 45.2-41.5 80.9-48.3C203.3 29 215.2 8.5 216.2 8c1.7-.8 21.2 4.3 26.3 23.2 5.2-8.8 18.3-11.4 19.6-10.7 1.1.6 6.4 15-4.9 25.9 40.3 3.5 72.2 24.7 96 50.7 36.1 1.5 71.8 5.9 77.1 34 2.7.6 11.6.8 12.7 2.6.3.5 2.1 8.1 2.4 15.4-.5 13.9-6.8 25.4-23.6 23.1-3.2 17.3-2.7 32.9-8.7 47.7 2.4 11.7 4 23.8 4.8 36.4 37 25.4 70.3 42.5 60.3 66.9zM207.4 159.9c.9-44-37.9-42.2-78.6-40.3-21.7 1-38.9 1.9-45.5 13.9-11.4 20.9 5.9 92.9 23.2 101.2 9.8 4.7 73.4 7.9 86.3-7.1 8.2-9.4 15-49.4 14.6-67.7zm52 58.3c-4.3-12.4-6-30.1-15.3-32.7-2-.5-9-.5-11 0-10 2.8-10.8 22.1-17 37.2 15.4 0 19.3 9.7 23.7 9.7 4.3 0 6.3-11.3 19.6-14.2zm135.7-84.7c-6.6-12.1-24.8-12.9-46.5-13.9-40.2-1.9-78.2-3.8-77.3 40.3-.5 18.3 5 58.3 13.2 67.8 13 14.9 76.6 11.8 86.3 7.1 15.8-7.6 36.5-78.9 24.3-101.3z"], + "ebay": [640, 512, [], "f4f4", "M405.2 263.8c-29.1.9-47.2 6.2-47.2 25.3 0 12.4 9.9 25.8 35 25.8 33.7 0 51.6-18.4 51.6-48.4v-3.3c-11.8 0-26.3.1-39.4.6m71.5 39.7c0 9.3.3 18.6 1 26.8h-29.8c-.8-6.9-1.1-13.6-1.1-20.2-16.1 19.8-35.3 25.5-61.9 25.5-39.5 0-60.6-20.9-60.6-45 0-35 28.8-47.3 78.6-48.4 13.7-.3 29-.4 41.7-.4v-3.4c0-23.4-15-33-41-33-19.3 0-33.6 8-35 21.8h-33.7c3.6-34.4 39.7-43.1 71.5-43.1 38.1 0 70.3 13.5 70.3 53.8v65.6zm-349-56.8c-2.3-54.7-87.5-56.6-94.4 0h94.4zm-95 21.4c3.5 58.3 79.2 57.4 91.2 21.6H157c-6.4 34.4-43 46.1-74.4 46.1-57.2 0-82.5-31.5-82.5-74 0-46.8 26.2-77.6 83-77.6 45.3 0 78.4 23.7 78.4 75.4v8.5H32.7zm211 45.7c29.8 0 50.2-21.5 50.2-53.8 0-32.4-20.4-53.8-50.2-53.8-29.6 0-50.2 21.4-50.2 53.8 0 32.3 20.6 53.8 50.2 53.8m-82.2-186h32.1v80.6c15.7-18.7 37.4-24.2 58.7-24.2 35.7 0 75.4 24.1 75.4 76.2 0 43.6-31.5 75.4-76 75.4-23.3 0-45.1-8.3-58.7-24.9 0 6.6-.4 13.2-1.1 19.5h-31.5c.5-10.2 1.1-22.8 1.1-33.1V127.8zM640 189.5l-99.2 194.8h-35.9l28.5-54.1-74.6-140.7h37.5l54.9 109.9L606 189.5h34z"], + "edge": [512, 512, [], "f282", "M25.714 228.163c.111-.162.23-.323.342-.485-.021.162-.045.323-.065.485h-.277zm460.572 15.508c0-44.032-7.754-84.465-28.801-122.405C416.498 47.879 343.912 8.001 258.893 8.001 118.962 7.724 40.617 113.214 26.056 227.679c42.429-61.312 117.073-121.376 220.375-124.966 0 0 109.666 0 99.419 104.957H169.997c6.369-37.386 18.554-58.986 34.339-78.926-75.048 34.893-121.85 96.096-120.742 188.315.83 71.448 50.124 144.836 120.743 171.976 83.357 31.847 192.776 7.2 240.132-21.324V363.307c-80.864 56.494-270.871 60.925-272.255-67.572h314.073v-52.064z"], + "elementor": [448, 512, [], "f430", "M425.6 32H22.4C10 32 0 42 0 54.4v403.2C0 470 10 480 22.4 480h403.2c12.4 0 22.4-10 22.4-22.4V54.4C448 42 438 32 425.6 32M164.3 355.5h-39.8v-199h39.8v199zm159.3 0H204.1v-39.8h119.5v39.8zm0-79.6H204.1v-39.8h119.5v39.8zm0-79.7H204.1v-39.8h119.5v39.8z"], + "ember": [640, 512, [], "f423", "M639.9 254.6c-1.1-10.7-10.7-6.8-10.7-6.8s-15.6 12.1-29.3 10.7c-13.7-1.3-9.4-32-9.4-32s3-28.1-5.1-30.4c-8.1-2.4-18 7.3-18 7.3s-12.4 13.7-18.3 31.2l-1.6.5s1.9-30.6-.3-37.6c-1.6-3.5-16.4-3.2-18.8 3s-14.2 49.2-15 67.2c0 0-23.1 19.6-43.3 22.8s-25-9.4-25-9.4 54.8-15.3 52.9-59.1c-1.9-43.8-44.2-27.6-49-24-4.6 3.5-29.4 18.4-36.6 59.7-.2 1.4-.7 7.5-.7 7.5s-21.2 14.2-33 18c0 0 33-55.6-7.3-80.9-18.3-11-32.8 12.1-32.8 12.1s54.5-60.7 42.5-112c-5.8-24.4-18-27.1-29.2-23.1-17 6.7-23.5 16.7-23.5 16.7s-22 32-27.1 79.5-12.6 105.1-12.6 105.1-10.5 10.2-20.2 10.7-5.4-28.7-5.4-28.7 7.5-44.6 7-52.1-1.1-11.6-9.9-14.2c-8.9-2.7-18.5 8.6-18.5 8.6s-25.5 38.7-27.7 44.6l-1.3 2.4-1.3-1.6s18-52.7.8-53.5c-17.2-.8-28.5 18.8-28.5 18.8s-19.6 32.8-20.4 36.5l-1.3-1.6s8.1-38.2 6.4-47.6c-1.6-9.4-10.5-7.5-10.5-7.5s-11.3-1.3-14.2 5.9-13.7 55.3-15 70.7c0 0-28.2 20.2-46.8 20.4-18.5.3-16.7-11.8-16.7-11.8s68-23.3 49.4-69.2c-8.3-11.8-18-15.5-31.7-15.3-13.7.3-30.3 8.6-41.3 33.3-5.3 11.8-6.8 23-7.8 31.5 0 0-12.3 2.4-18.8-2.9s-10 0-10 0-11.2 14-.1 18.3 28.1 6.1 28.1 6.1c1.6 7.5 6.2 19.5 19.6 29.7 20.2 15.3 58.8-1.3 58.8-1.3l15.9-8.8s.5 14.6 12.1 16.7c11.6 2.1 16.4 1 36.5-47.9 11.8-25 12.6-23.6 12.6-23.6l1.3-.3s-9.1 46.8-5.6 59.7C187.7 319.4 203 318 203 318s8.3 2.4 15-21.2c6.7-23.6 19.6-49.9 19.6-49.9h1.6s-5.6 48.1 3 63.7c8.6 15.6 30.9 5.3 30.9 5.3s15.6-7.8 18-10.2c0 0 18.5 15.8 44.6 12.9 58.3-11.5 79.1-25.9 79.1-25.9s10 24.4 41.1 26.7c35.5 2.7 54.8-18.6 54.8-18.6s-.3 13.5 12.1 18.6c12.4 5.1 20.7-22.8 20.7-22.8l20.7-57.2h1.9s1.1 37.3 21.5 43.2 47-13.7 47-13.7 6.4-3.5 5.3-14.3zm-578 5.3c.8-32 21.8-45.9 29-39 7.3 7 4.6 22-9.1 31.4-13.7 9.5-19.9 7.6-19.9 7.6zm272.8-123.8s19.1-49.7 23.6-25.5-40 96.2-40 96.2c.5-16.2 16.4-70.7 16.4-70.7zm22.8 138.4c-12.6 33-43.3 19.6-43.3 19.6s-3.5-11.8 6.4-44.9 33.3-20.2 33.3-20.2 16.2 12.4 3.6 45.5zm84.6-14.6s-3-10.5 8.1-30.6c11-20.2 19.6-9.1 19.6-9.1s9.4 10.2-1.3 25.5-26.4 14.2-26.4 14.2z"], + "empire": [496, 512, [], "f1d1", "M287.6 54.2c-10.8-2.2-22.1-3.3-33.5-3.6V32.4c78.1 2.2 146.1 44 184.6 106.6l-15.8 9.1c-6.1-9.7-12.7-18.8-20.2-27.1l-18 15.5c-26-29.6-61.4-50.7-101.9-58.4l4.8-23.9zM53.4 322.4l23-7.7c-6.4-18.3-10-38.2-10-58.7s3.3-40.4 9.7-58.7l-22.7-7.7c3.6-10.8 8.3-21.3 13.6-31l-15.8-9.1C34 181 24.1 217.5 24.1 256s10 75 27.1 106.6l15.8-9.1c-5.3-10-9.7-20.3-13.6-31.1zM213.1 434c-40.4-8-75.8-29.1-101.9-58.7l-18 15.8c-7.5-8.6-14.4-17.7-20.2-27.4l-16 9.4c38.5 62.3 106.8 104.3 184.9 106.6v-18.3c-11.3-.3-22.7-1.7-33.5-3.6l4.7-23.8zM93.3 120.9l18 15.5c26-29.6 61.4-50.7 101.9-58.4l-4.7-23.8c10.8-2.2 22.1-3.3 33.5-3.6V32.4C163.9 34.6 95.9 76.4 57.4 139l15.8 9.1c6-9.7 12.6-18.9 20.1-27.2zm309.4 270.2l-18-15.8c-26 29.6-61.4 50.7-101.9 58.7l4.7 23.8c-10.8 1.9-22.1 3.3-33.5 3.6v18.3c78.1-2.2 146.4-44.3 184.9-106.6l-16.1-9.4c-5.7 9.7-12.6 18.8-20.1 27.4zM496 256c0 137-111 248-248 248S0 393 0 256 111 8 248 8s248 111 248 248zm-12.2 0c0-130.1-105.7-235.8-235.8-235.8S12.2 125.9 12.2 256 117.9 491.8 248 491.8 483.8 386.1 483.8 256zm-39-106.6l-15.8 9.1c5.3 9.7 10 20.2 13.6 31l-22.7 7.7c6.4 18.3 9.7 38.2 9.7 58.7s-3.6 40.4-10 58.7l23 7.7c-3.9 10.8-8.3 21-13.6 31l15.8 9.1C462 331 471.9 294.5 471.9 256s-9.9-75-27.1-106.6zm-183 177.7c16.3-3.3 30.4-11.6 40.7-23.5l51.2 44.8c11.9-13.6 21.3-29.3 27.1-46.8l-64.2-22.1c2.5-7.5 3.9-15.2 3.9-23.5s-1.4-16.1-3.9-23.5l64.5-22.1c-6.1-17.4-15.5-33.2-27.4-46.8l-51.2 44.8c-10.2-11.9-24.4-20.5-40.7-23.8l13.3-66.4c-8.6-1.9-17.7-2.8-27.1-2.8-9.4 0-18.5.8-27.1 2.8l13.3 66.4c-16.3 3.3-30.4 11.9-40.7 23.8l-51.2-44.8c-11.9 13.6-21.3 29.3-27.4 46.8l64.5 22.1c-2.5 7.5-3.9 15.2-3.9 23.5s1.4 16.1 3.9 23.5l-64.2 22.1c5.8 17.4 15.2 33.2 27.1 46.8l51.2-44.8c10.2 11.9 24.4 20.2 40.7 23.5l-13.3 66.7c8.6 1.7 17.7 2.8 27.1 2.8 9.4 0 18.5-1.1 27.1-2.8l-13.3-66.7z"], + "envira": [448, 512, [], "f299", "M0 32c477.6 0 366.6 317.3 367.1 366.3L448 480h-26l-70.4-71.2c-39 4.2-124.4 34.5-214.4-37C47 300.3 52 214.7 0 32zm79.7 46c-49.7-23.5-5.2 9.2-5.2 9.2 45.2 31.2 66 73.7 90.2 119.9 31.5 60.2 79 139.7 144.2 167.7 65 28 34.2 12.5 6-8.5-28.2-21.2-68.2-87-91-130.2-31.7-60-61-118.6-144.2-158.1z"], + "erlang": [640, 512, [], "f39d", "M21.7 246.4c-.1 86.8 29 159.5 78.7 212.1H0v-405h87.2c-41.5 50.2-65.6 116.2-65.5 192.9zM640 53.6h-83.6c31.4 42.7 48.7 97.5 46.2 162.7.5 6 .5 11.7 0 24.1H230.2c-.2 109.7 38.9 194.9 138.6 195.3 68.5-.3 118-51 151.9-106.1l96.4 48.2c-17.4 30.9-36.5 57.8-57.9 80.8H640v-405zm-80.8 405s0-.1 0 0h-.2.2zm-3.1-405h.3l-.1-.1-.2.1zm-230.7 9.6c-45.9.1-85.1 33.5-89.2 83.2h169.9c-1.1-49.7-34.5-83.1-80.7-83.2z"], + "ethereum": [320, 512, [], "f42e", "M311.9 260.8L160 353.6 8 260.8 160 0l151.9 260.8zM160 383.4L8 290.6 160 512l152-221.4-152 92.8z"], + "etsy": [384, 512, [], "f2d7", "M384 348c-1.75 10.75-13.75 110-15.5 132-117.879-4.299-219.895-4.743-368.5 0v-25.5c45.457-8.948 60.627-8.019 61-35.25 1.793-72.322 3.524-244.143 0-322-1.029-28.46-12.13-26.765-61-36v-25.5c73.886 2.358 255.933 8.551 362.999-3.75-3.5 38.25-7.75 126.5-7.75 126.5H332C320.947 115.665 313.241 68 277.25 68h-137c-10.25 0-10.75 3.5-10.75 9.75V241.5c58 .5 88.5-2.5 88.5-2.5 29.77-.951 27.56-8.502 40.75-65.251h25.75c-4.407 101.351-3.91 61.829-1.75 160.25H257c-9.155-40.086-9.065-61.045-39.501-61.5 0 0-21.5-2-88-2v139c0 26 14.25 38.25 44.25 38.25H263c63.636 0 66.564-24.996 98.751-99.75H384z"], + "expeditedssl": [496, 512, [], "f23e", "M248 43.4C130.6 43.4 35.4 138.6 35.4 256S130.6 468.6 248 468.6 460.6 373.4 460.6 256 365.4 43.4 248 43.4zm-97.4 132.9c0-53.7 43.7-97.4 97.4-97.4s97.4 43.7 97.4 97.4v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6c0-82.1-124-82.1-124 0v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6zM389.7 380c0 9.7-8 17.7-17.7 17.7H124c-9.7 0-17.7-8-17.7-17.7V238.3c0-9.7 8-17.7 17.7-17.7h248c9.7 0 17.7 8 17.7 17.7V380zm-248-137.3v132.9c0 2.5-1.9 4.4-4.4 4.4h-8.9c-2.5 0-4.4-1.9-4.4-4.4V242.7c0-2.5 1.9-4.4 4.4-4.4h8.9c2.5 0 4.4 1.9 4.4 4.4zm141.7 48.7c0 13-7.2 24.4-17.7 30.4v31.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-31.6c-10.5-6.1-17.7-17.4-17.7-30.4 0-19.7 15.8-35.4 35.4-35.4s35.5 15.8 35.5 35.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 478.3C121 486.3 17.7 383 17.7 256S121 25.7 248 25.7 478.3 129 478.3 256 375 486.3 248 486.3z"], + "facebook": [448, 512, [], "f09a", "M448 56.7v398.5c0 13.7-11.1 24.7-24.7 24.7H309.1V306.5h58.2l8.7-67.6h-67v-43.2c0-19.6 5.4-32.9 33.5-32.9h35.8v-60.5c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9h-58.4v67.6h58.4V480H24.7C11.1 480 0 468.9 0 455.3V56.7C0 43.1 11.1 32 24.7 32h398.5c13.7 0 24.8 11.1 24.8 24.7z"], + "facebook-f": [264, 512, [], "f39e", "M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"], + "facebook-messenger": [448, 512, [], "f39f", "M224 32C15.9 32-77.5 278 84.6 400.6V480l75.7-42c142.2 39.8 285.4-59.9 285.4-198.7C445.8 124.8 346.5 32 224 32zm23.4 278.1L190 250.5 79.6 311.6l121.1-128.5 57.4 59.6 110.4-61.1-121.1 128.5z"], + "facebook-square": [448, 512, [], "f082", "M448 80v352c0 26.5-21.5 48-48 48h-85.3V302.8h60.6l8.7-67.6h-69.3V192c0-19.6 5.4-32.9 33.5-32.9H384V98.7c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9H184v67.6h60.9V480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z"], + "firefox": [480, 512, [], "f269", "M478.1 235.3c-.7-4.5-1.4-7.1-1.4-7.1s-1.8 2-4.7 5.9c-.9-10.7-2.8-21.2-5.8-31.6-3.7-12.9-8.5-25.4-14.5-37.4-3.8-8-8.2-15.6-13.3-22.8-1.8-2.7-3.7-5.4-5.6-7.9-8.8-14.4-19-23.3-30.7-40-7.6-12.8-12.9-26.9-15.4-41.6-3.2 8.9-5.7 18-7.4 27.3-12.1-12.2-22.5-20.8-28.9-26.7C319.4 24.2 323 9.1 323 9.1S264.7 74.2 289.9 142c8.7 23 23.8 43.1 43.4 57.9 24.4 20.2 50.8 36 64.7 76.6-11.2-21.3-28.1-39.2-48.8-51.5 6.2 14.7 9.4 30.6 9.3 46.5 0 61-49.6 110.5-110.6 110.4-8.3 0-16.5-.9-24.5-2.8-9.5-1.8-18.7-4.9-27.4-9.3-12.9-7.8-24-18.1-32.8-30.3l-.2-.3 2 .7c4.6 1.6 9.2 2.8 14 3.7 18.7 4 38.3 1.7 55.6-6.6 17.5-9.7 28-16.9 36.6-14h.2c8.4 2.7 15-5.5 9-14-10.4-13.4-27.4-20-44.2-17-17.5 2.5-33.5 15-56.4 2.9-1.5-.8-2.9-1.6-4.3-2.5-1.6-.9 4.9 1.3 3.4.3-5-2.5-9.8-5.4-14.4-8.6-.3-.3 3.5 1.1 3.1.8-5.9-4-11-9.2-15-15.2-4.1-7.4-4.5-16.4-1-24.1 2.1-3.8 5.4-6.9 9.3-8.7 3 1.5 4.8 2.6 4.8 2.6s-1.3-2.5-2.1-3.8c.3-.1.5 0 .8-.2 2.6 1.1 8.3 4 11.4 5.8 2.1 1.1 3.8 2.7 5.2 4.7 0 0 1-.5.3-2.7-1.1-2.7-2.9-5-5.4-6.6h.2c2.3 1.2 4.5 2.6 6.6 4.1 1.9-4.4 2.8-9.2 2.6-14 .2-2.6-.2-5.3-1.1-7.8-.8-1.6.5-2.2 1.9-.5-.2-1.3-.7-2.5-1.2-3.7v-.1s.8-1.1 1.2-1.5c1-1 2.1-1.9 3.4-2.7 7.2-4.5 14.8-8.4 22.7-11.6 6.4-2.8 11.7-4.9 12.8-5.6 1.6-1 3.1-2.2 4.5-3.5 5.3-4.5 9-10.8 10.2-17.7.1-.9.2-1.8.3-2.8v-1.5c-.9-3.5-6.9-6.1-38.4-9.1-11.1-1.8-20-10.1-22.5-21.1v.1c-.4 1.1-.9 2.3-1.3 3.5.4-1.2.8-2.3 1.3-3.5v-.2c6-15.7 16.8-29.1 30.8-38.3.8-.7-3.2.2-2.4-.5 2.7-1.3 5.4-2.5 8.2-3.5 1.4-.6-6-3.4-12.6-2.7-4 .2-8 1.2-11.7 2.8 1.6-1.3 6.2-3.1 5.1-3.1-8.4 1.6-16.5 4.7-23.9 9 0-.8.1-1.5.5-2.2-5.9 2.5-11 6.5-15 11.5.1-.9.2-1.8.2-2.7-2.7 2-5.2 4.3-7.3 6.9l-.1.1c-17.4-6.7-36.3-8.3-54.6-4.7l-.2-.1h.2c-3.8-3.1-7.1-6.7-9.7-10.9l-.2.1-.4-.2c-1.2-1.8-2.4-3.8-3.7-6-.9-1.6-1.8-3.4-2.7-5.2 0-.1-.1-.2-.2-.2-.4 0-.6 1.7-.9 1.3v-.1c-3.2-8.3-4.7-17.2-4.4-26.2l-.2.1c-5.1 3.5-9 8.6-11.1 14.5-.9 2.1-1.6 3.3-2.2 4.5v-.5c.1-1.1.6-3.3.5-3.1-.1.2-.2.3-.3.4-1.5 1.7-2.9 3.7-3.9 5.8-.9 1.9-1.7 3.9-2.3 5.9-.1.3 0-.3 0-1s.1-2 0-1.7l-.3.7c-6.7 14.9-10.9 30.8-12.4 47.1-.4 2.8-.6 5.6-.5 8.3v.2c-4.8 5.2-9 11-12.7 17.1-12.1 20.4-21.1 42.5-26.8 65.6 4-8.8 8.8-17.2 14.3-25.1C5.5 228.5 0 257.4 0 286.6c1.8-8.6 4.2-17 7-25.3-1.7 34.5 4.9 68.9 19.4 100.3 19.4 43.5 51.6 80 92.3 104.7 16.6 11.2 34.7 19.9 53.8 25.8 2.5.9 5.1 1.8 7.7 2.7-.8-.3-1.6-.7-2.4-1 22.6 6.8 46.2 10.3 69.8 10.3 83.7 0 111.3-31.9 113.8-35 4.1-3.7 7.5-8.2 9.9-13.3 1.6-.7 3.2-1.4 4.9-2.1l1-.5 1.9-.9c12.6-5.9 24.5-13.4 35.3-22.1 16.3-11.7 27.9-28.7 32.9-48.1 3-7.1 3.1-15 .4-22.2.9-1.4 1.7-2.8 2.7-4.3 18-28.9 28.2-61.9 29.6-95.9v-2.8c0-7.3-.6-14.5-1.9-21.6z"], + "first-order": [448, 512, [], "f2b0", "M12.9 229.2c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4h-.2zM224 96.6c-7.1 0-14.6.6-21.4 1.7l3.7 67.4-22-64c-14.3 3.7-27.7 9.4-40 16.6l29.4 61.4-45.1-50.9c-11.4 8.9-21.7 19.1-30.6 30.9l50.6 45.4-61.1-29.7c-7.1 12.3-12.9 25.7-16.6 40l64.3 22.6-68-4c-.9 7.1-1.4 14.6-1.4 22s.6 14.6 1.4 21.7l67.7-4-64 22.6c3.7 14.3 9.4 27.7 16.6 40.3l61.1-29.7L97.7 352c8.9 11.7 19.1 22.3 30.9 30.9l44.9-50.9-29.5 61.4c12.3 7.4 25.7 13.1 40 16.9l22.3-64.6-4 68c7.1 1.1 14.6 1.7 21.7 1.7 7.4 0 14.6-.6 21.7-1.7l-4-68.6 22.6 65.1c14.3-4 27.7-9.4 40-16.9L274.9 332l44.9 50.9c11.7-8.9 22-19.1 30.6-30.9l-50.6-45.1 61.1 29.4c7.1-12.3 12.9-25.7 16.6-40.3l-64-22.3 67.4 4c1.1-7.1 1.4-14.3 1.4-21.7s-.3-14.9-1.4-22l-67.7 4 64-22.3c-3.7-14.3-9.1-28-16.6-40.3l-60.9 29.7 50.6-45.4c-8.9-11.7-19.1-22-30.6-30.9l-45.1 50.9 29.4-61.1c-12.3-7.4-25.7-13.1-40-16.9L241.7 166l4-67.7c-7.1-1.2-14.3-1.7-21.7-1.7zM443.4 128v256L224 512 4.6 384V128L224 0l219.4 128zm-17.1 10.3L224 20.9 21.7 138.3v235.1L224 491.1l202.3-117.7V138.3zM224 37.1l187.7 109.4v218.9L224 474.9 36.3 365.4V146.6L224 37.1zm0 50.9c-92.3 0-166.9 75.1-166.9 168 0 92.6 74.6 167.7 166.9 167.7 92 0 166.9-75.1 166.9-167.7 0-92.9-74.9-168-166.9-168z"], + "first-order-alt": [496, 512, [], "f50a", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 488.21C115.34 496.21 7.79 388.66 7.79 256S115.34 15.79 248 15.79 488.21 123.34 488.21 256 380.66 496.21 248 496.21zm0-459.92C126.66 36.29 28.29 134.66 28.29 256S126.66 475.71 248 475.71 467.71 377.34 467.71 256 369.34 36.29 248 36.29zm0 431.22c-116.81 0-211.51-94.69-211.51-211.51S131.19 44.49 248 44.49 459.51 139.19 459.51 256 364.81 467.51 248 467.51zm186.23-162.98a191.613 191.613 0 0 1-20.13 48.69l-74.13-35.88 61.48 54.82a193.515 193.515 0 0 1-37.2 37.29l-54.8-61.57 35.88 74.27a190.944 190.944 0 0 1-48.63 20.23l-27.29-78.47 4.79 82.93c-8.61 1.18-17.4 1.8-26.33 1.8s-17.72-.62-26.33-1.8l4.76-82.46-27.15 78.03a191.365 191.365 0 0 1-48.65-20.2l35.93-74.34-54.87 61.64a193.85 193.85 0 0 1-37.22-37.28l61.59-54.9-74.26 35.93a191.638 191.638 0 0 1-20.14-48.69l77.84-27.11-82.23 4.76c-1.16-8.57-1.78-17.32-1.78-26.21 0-9 .63-17.84 1.82-26.51l82.38 4.77-77.94-27.16a191.726 191.726 0 0 1 20.23-48.67l74.22 35.92-61.52-54.86a193.85 193.85 0 0 1 37.28-37.22l54.76 61.53-35.83-74.17a191.49 191.49 0 0 1 48.65-20.13l26.87 77.25-4.71-81.61c8.61-1.18 17.39-1.8 26.32-1.8s17.71.62 26.32 1.8l-4.74 82.16 27.05-77.76c17.27 4.5 33.6 11.35 48.63 20.17l-35.82 74.12 54.72-61.47a193.13 193.13 0 0 1 37.24 37.23l-61.45 54.77 74.12-35.86a191.515 191.515 0 0 1 20.2 48.65l-77.81 27.1 82.24-4.75c1.19 8.66 1.82 17.5 1.82 26.49 0 8.88-.61 17.63-1.78 26.19l-82.12-4.75 77.72 27.09z"], + "firstdraft": [384, 512, [], "f3a1", "M384 192h-64v128H192v128H0v-25.6h166.4v-128h128v-128H384V192zm-25.6 38.4v128h-128v128H64V512h192V384h128V230.4h-25.6zm25.6 192h-89.6V512H320v-64h64v-25.6zM0 0v384h128V256h128V128h128V0H0z"], + "flickr": [448, 512, [], "f16e", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5zm159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5z"], + "flipboard": [448, 512, [], "f44d", "M0 32v448h448V32H0zm358.4 179.2h-89.6v89.6h-89.6v89.6H89.6V121.6h268.8v89.6z"], + "fly": [384, 512, [], "f417", "M197.8 427.8c12.9 11.7 33.7 33.3 33.2 50.7 0 .8-.1 1.6-.1 2.5-1.8 19.8-18.8 31.1-39.1 31-25-.1-39.9-16.8-38.7-35.8 1-16.2 20.5-36.7 32.4-47.6 2.3-2.1 2.7-2.7 5.6-3.6 3.4 0 3.9.3 6.7 2.8zM331.9 67.3c-16.3-25.7-38.6-40.6-63.3-52.1C243.1 4.5 214-.2 192 0c-44.1 0-71.2 13.2-81.1 17.3C57.3 45.2 26.5 87.2 28 158.6c7.1 82.2 97 176 155.8 233.8 1.7 1.6 4.5 4.5 6.2 5.1l3.3.1c2.1-.7 1.8-.5 3.5-2.1 52.3-49.2 140.7-145.8 155.9-215.7 7-39.2 3.1-72.5-20.8-112.5zM186.8 351.9c-28-51.1-65.2-130.7-69.3-189-3.4-47.5 11.4-131.2 69.3-136.7v325.7zM328.7 180c-16.4 56.8-77.3 128-118.9 170.3C237.6 298.4 275 217 277 158.4c1.6-45.9-9.8-105.8-48-131.4 88.8 18.3 115.5 98.1 99.7 153z"], + "font-awesome": [448, 512, [], "f2b4", "M397.8 32H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-45.4 284.3c0 4.2-3.6 6-7.8 7.8-16.7 7.2-34.6 13.7-53.8 13.7-26.9 0-39.4-16.7-71.7-16.7-23.3 0-47.8 8.4-67.5 17.3-1.2.6-2.4.6-3.6 1.2V385c0 1.8 0 3.6-.6 4.8v1.2c-2.4 8.4-10.2 14.3-19.1 14.3-11.3 0-20.3-9-20.3-20.3V166.4c-7.8-6-13.1-15.5-13.1-26.3 0-18.5 14.9-33.5 33.5-33.5 18.5 0 33.5 14.9 33.5 33.5 0 10.8-4.8 20.3-13.1 26.3v18.5c1.8-.6 3.6-1.2 5.4-2.4 18.5-7.8 40.6-14.3 61.5-14.3 22.7 0 40.6 6 60.9 13.7 4.2 1.8 8.4 2.4 13.1 2.4 22.7 0 47.8-16.1 53.8-16.1 4.8 0 9 3.6 9 7.8v140.3z"], + "font-awesome-alt": [448, 512, [], "f35c", "M397.8 67.8c7.8 0 14.3 6.6 14.3 14.3v347.6c0 7.8-6.6 14.3-14.3 14.3H50.2c-7.8 0-14.3-6.6-14.3-14.3V82.2c0-7.8 6.6-14.3 14.3-14.3h347.6m0-35.9H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-58.5 139.2c-6 0-29.9 15.5-52.6 15.5-4.2 0-8.4-.6-12.5-2.4-19.7-7.8-37-13.7-59.1-13.7-20.3 0-41.8 6.6-59.7 13.7-1.8.6-3.6 1.2-4.8 1.8v-17.9c7.8-6 12.5-14.9 12.5-25.7 0-17.9-14.3-32.3-32.3-32.3s-32.3 14.3-32.3 32.3c0 10.2 4.8 19.7 12.5 25.7v212.1c0 10.8 9 19.7 19.7 19.7 9 0 16.1-6 18.5-13.7V385c.6-1.8.6-3 .6-4.8V336c1.2 0 2.4-.6 3-1.2 19.7-8.4 43-16.7 65.7-16.7 31.1 0 43 16.1 69.3 16.1 18.5 0 36.4-6.6 52-13.7 4.2-1.8 7.2-3.6 7.2-7.8V178.3c1.8-4.1-2.3-7.1-7.7-7.1z"], + "font-awesome-flag": [448, 512, [], "f425", "M444.373 359.424c0 7.168-6.144 10.24-13.312 13.312-28.672 12.288-59.392 23.552-92.16 23.552-46.08 0-67.584-28.672-122.88-28.672-39.936 0-81.92 14.336-115.712 29.696-2.048 1.024-4.096 1.024-6.144 2.048v77.824c0 21.405-16.122 34.816-33.792 34.816-19.456 0-34.816-15.36-34.816-34.816V102.4C12.245 92.16 3.029 75.776 3.029 57.344 3.029 25.6 28.629 0 60.373 0s57.344 25.6 57.344 57.344c0 18.432-8.192 34.816-22.528 45.056v31.744c4.124-1.374 58.768-28.672 114.688-28.672 65.27 0 97.676 27.648 126.976 27.648 38.912 0 81.92-27.648 92.16-27.648 8.192 0 15.36 6.144 15.36 13.312v240.64z"], + "font-awesome-logo-full": [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"], + "fonticons": [448, 512, [], "f280", "M0 32v448h448V32H0zm167.4 196h67.4l-11.1 37.3H168v112.9c0 5.8-2 6.7 3.2 7.3l43.5 4.1v25.1H84V389l21.3-2c5.2-.6 6.7-2.3 6.7-7.9V267.7c0-2.3-2.9-2.3-5.8-2.3H84V228h28v-21c0-49.6 26.5-70 77.3-70 34.1 0 64.7 8.2 64.7 52.8l-50.7 6.1c.3-18.7-4.4-23-16.3-23-18.4 0-19 9.9-19 27.4v23.3c0 2.4-3.5 4.4-.6 4.4zM364 414.7H261.3v-25.1l20.4-2.6c5.2-.6 7.6-1.7 7.6-7.3V271.8c0-4.1-2.9-6.7-6.7-7.9l-24.2-6.4 6.7-29.5h80.2v151.7c0 5.8-2.6 6.4 2.9 7.3l15.7 2.6v25.1zm-21.9-255.5l9 33.2-7.3 7.3-31.2-16.6-31.2 16.6-7.3-7.3 9-33.2-21.8-24.2 3.5-9.6h27.7l15.5-28h9.3l15.5 28h27.7l3.5 9.6-21.9 24.2z"], + "fonticons-fi": [384, 512, [], "f3a2", "M114.4 224h92.4l-15.2 51.2h-76.4V433c0 8-2.8 9.2 4.4 10l59.6 5.6V483H0v-35.2l29.2-2.8c7.2-.8 9.2-3.2 9.2-10.8V278.4c0-3.2-4-3.2-8-3.2H0V224h38.4v-28.8c0-68 36.4-96 106-96 46.8 0 88.8 11.2 88.8 72.4l-69.6 8.4c.4-25.6-6-31.6-22.4-31.6-25.2 0-26 13.6-26 37.6v32c0 3.2-4.8 6-.8 6zM384 483H243.2v-34.4l28-3.6c7.2-.8 10.4-2.4 10.4-10V287c0-5.6-4-9.2-9.2-10.8l-33.2-8.8 9.2-40.4h110v208c0 8-3.6 8.8 4 10l21.6 3.6V483zm-30-347.2l12.4 45.6-10 10-42.8-22.8-42.8 22.8-10-10 12.4-45.6-30-36.4 4.8-10h38L307.2 51H320l21.2 38.4h38l4.8 13.2-30 33.2z"], + "fort-awesome": [512, 512, [], "f286", "M489.2 287.9h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6V146.2c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-6-8-4.6-11.7-4.6v-38c8.3-2 17.1-3.4 25.7-3.4 10.9 0 20.9 4.3 31.4 4.3 4.6 0 27.7-1.1 27.7-8v-60c0-2.6-2-4.6-4.6-4.6-5.1 0-15.1 4.3-24 4.3-9.7 0-20.9-4.3-32.6-4.3-8 0-16 1.1-23.7 2.9v-4.9c5.4-2.6 9.1-8.3 9.1-14.3 0-20.7-31.4-20.8-31.4 0 0 6 3.7 11.7 9.1 14.3v111.7c-3.7 0-11.7-1.4-11.7 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32H128v-32c0-2.6-2-4.6-4.6-4.6H96c-2.6 0-4.6 2-4.6 4.6v178.3H54.8v-32c0-2.6-2-4.6-4.6-4.6H22.8c-2.6 0-4.6 2-4.6 4.6V512h182.9v-96c0-72.6 109.7-72.6 109.7 0v96h182.9V292.5c.1-2.6-1.9-4.6-4.5-4.6zm-288.1-4.5c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64zm146.4 0c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64z"], + "fort-awesome-alt": [512, 512, [], "f3a3", "M211.7 241.1v51.7c0 2.1-1.6 3.7-3.7 3.7h-22.2c-2.1 0-3.7-1.6-3.7-3.7v-51.7c0-2.1 1.6-3.7 3.7-3.7H208c2.1 0 3.7 1.6 3.7 3.7zm114.5-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7h22.2c2.1 0 3.7-1.6 3.7-3.7v-51.7c-.1-2.1-1.7-3.7-3.7-3.7zm-29.1 263.2c-.9.1-1.7.3-2.6.4-1 .2-2.1.3-3.1.5-.9.1-1.8.3-2.8.4-1 .1-2 .3-3 .4-1 .1-2 .2-2.9.3-1 .1-1.9.2-2.9.3-1 .1-2.1.2-3.1.3-.9.1-1.8.2-2.7.2-1.1.1-2.3.1-3.4.2-.8 0-1.7.1-2.5.1-1.3.1-2.6.1-3.9.1-.7 0-1.4.1-2.1.1-2 0-4 .1-6 .1s-4 0-6-.1c-.7 0-1.4 0-2.1-.1-1.3 0-2.6-.1-3.9-.1-.8 0-1.7-.1-2.5-.1-1.1-.1-2.3-.1-3.4-.2-.9-.1-1.8-.1-2.7-.2-1-.1-2.1-.2-3.1-.3-1-.1-1.9-.2-2.9-.3-1-.1-2-.2-2.9-.3-1-.1-2-.2-3-.4-.9-.1-1.8-.3-2.8-.4-1-.1-2.1-.3-3.1-.5-.9-.1-1.7-.3-2.6-.4-65.6-10.9-122.5-47.7-160-99.4-.2-.2-.3-.5-.5-.7-.8-1.1-1.6-2.2-2.3-3.3-.3-.4-.6-.8-.8-1.2-.7-1.1-1.4-2.1-2.1-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.4-2.1-2-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.3-2.2-2-3.3-.2-.4-.5-.8-.7-1.2-2.4-4-4.6-8.1-6.8-12.2-.1-.2-.2-.3-.3-.5-.6-1.1-1.1-2.2-1.7-3.3-.3-.6-.6-1.1-.8-1.7-.5-1-1-2.1-1.5-3.1-.3-.7-.6-1.3-.9-2-.5-1-.9-2-1.4-3l-.9-2.1c-.4-1-.9-2-1.3-3-.3-.7-.6-1.5-.9-2.2l-1.2-3c-.3-.8-.6-1.5-.9-2.3-.4-1-.8-2-1.1-3-.3-.9-.6-1.8-1-2.8-.6-1.6-1.1-3.3-1.7-4.9-.3-.9-.6-1.8-.9-2.8-.3-.9-.5-1.8-.8-2.7-.3-.9-.6-1.9-.8-2.8-.3-.9-.5-1.8-.8-2.7-.3-1-.5-1.9-.8-2.9-.2-.9-.5-1.8-.7-2.7-.3-1-.5-2-.7-3-.2-.9-.4-1.7-.6-2.6-.2-1.1-.5-2.2-.7-3.2-.2-.8-.3-1.6-.5-2.4-.3-1.3-.5-2.7-.8-4-.1-.6-.2-1.1-.3-1.7l-.9-5.7c-.1-.6-.2-1.3-.3-1.9-.2-1.3-.4-2.6-.5-3.9-.1-.8-.2-1.5-.3-2.3-.1-1.2-.3-2.4-.4-3.6-.1-.8-.2-1.6-.2-2.4-.1-1.2-.2-2.4-.3-3.5-.1-.8-.1-1.6-.2-2.4-.1-1.2-.2-2.4-.2-3.7 0-.8-.1-1.5-.1-2.3-.1-1.3-.1-2.7-.2-4 0-.7 0-1.3-.1-2 0-2-.1-4-.1-6 0-53.5 16.9-103 45.8-143.6 2.3-3.2 4.7-6.4 7.1-9.5 4.9-6.2 10.1-12.3 15.6-18 2.7-2.9 5.5-5.7 8.4-8.4 2.9-2.7 5.8-5.4 8.8-8 4.5-3.9 9.1-7.6 13.9-11.2 1.6-1.2 3.2-2.4 4.8-3.5C140 34.2 171.7 20.1 206 13c16.1-3.3 32.9-5 50-5s33.8 1.7 50 5c34.3 7 66 21.1 93.6 40.7 1.6 1.2 3.2 2.3 4.8 3.5 4.8 3.6 9.4 7.3 13.9 11.2 12 10.4 23 21.9 32.8 34.4 2.5 3.1 4.8 6.3 7.1 9.5C487.1 153 504 202.5 504 256c0 2 0 4-.1 6 0 .7 0 1.3-.1 2 0 1.3-.1 2.7-.2 4 0 .8-.1 1.5-.1 2.3-.1 1.2-.1 2.4-.2.7-.1.8-.1 1.6-.2 2.4-.1 1.2-.2 2.4-.3 3.5-.1.8-.2 1.6-.2 2.4-.1 1.2-.3 2.4-.4 3.6-.1.8-.2 1.5-.3 2.3-.2 1.3-.4 2.6-.5 3.9-.1.6-.2 1.3-.3 1.9l-.9 5.7c-.1.6-.2 1.1-.3 1.7-.2 1.3-.5 2.7-.8 4-.2.8-.3 1.6-.5 2.4-.2 1.1-.5 2.2-.7 3.2-.2.9-.4 1.7-.6 2.6-.2 1-.5 2-.7 3-.2.9-.5 1.8-.7 2.7-.3 1-.5 1.9-.8 2.9-.2.9-.5 1.8-.8 2.7-.3.9-.6 1.9-.8 2.8-.3.9-.5 1.8-.8 2.7-.3.9-.6 1.8-.9 2.8-.5 1.6-1.1 3.3-1.7 4.9-.3.9-.6 1.8-1 2.8-.4 1-.7 2-1.1 3-.3.8-.6 1.5-.9 2.3l-1.2 3c-.3.7-.6 1.5-.9 2.2-.4 1-.8 2-1.3 3l-.9 2.1c-.4 1-.9 2-1.4 3-.3.7-.6 1.3-.9 2-.5 1-1 2.1-1.5 3.1-.3.6-.6 1.1-.8 1.7-.6 1.1-1.1 2.2-1.7 3.3-.1.2-.2.3-.3.5-2.2 4.1-4.4 8.2-6.8 12.2-.2.4-.5.8-.7 1.2-.7 1.1-1.3 2.2-2 3.3-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2 3.2-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2.1 3.2-.3.4-.6.8-.8 1.2-.8 1.1-1.5 2.2-2.3 3.3-.2.2-.3.5-.5.7-37.6 54.7-94.5 91.4-160.1 102.4zm117.3-86.2c13-13 24.2-27.4 33.6-42.9v-71.3c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7V326h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-4.8-6.5-3.7-9.5-3.7v-30.7c6.7-1.6 13.8-2.8 20.8-2.8 8.8 0 16.8 3.5 25.4 3.5 3.7 0 22.4-.9 22.4-6.5V93.4c0-2.1-1.6-3.7-3.7-3.7-4.2 0-12.2 3.5-19.4 3.5-7.9 0-16.9-3.5-26.3-3.5-6.5 0-12.9.9-19.2 2.3v-3.9c4.4-2.1 7.4-6.7 7.4-11.5 0-16.8-25.4-16.8-25.4 0 0 4.8 3 9.5 7.4 11.5v90.2c-3 0-9.5-1.1-9.5 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v144H93.5v-25.8c0-2.1-1.6-3.7-3.7-3.7H67.7c-2.1 0-3.7 1.6-3.7 3.7v71.3c9.4 15.5 20.6 29.9 33.6 42.9 20.6 20.6 44.5 36.7 71.2 48 13.9 5.9 28.2 10.3 42.9 13.2v-75.8c0-58.6 88.6-58.6 88.6 0v75.8c14.7-2.9 29-7.4 42.9-13.2 26.7-11.3 50.6-27.4 71.2-48"], + "forumbee": [448, 512, [], "f211", "M5.8 309.7C2 292.7 0 275.5 0 258.3 0 135 99.8 35 223.1 35c16.6 0 33.3 2 49.3 5.5C149 87.5 51.9 186 5.8 309.7zm392.9-189.2C385 103 369 87.8 350.9 75.2c-149.6 44.3-266.3 162.1-309.7 312 12.5 18.1 28 35.6 45.2 49 43.1-151.3 161.2-271.7 312.3-315.7zm15.8 252.7c15.2-25.1 25.4-53.7 29.5-82.8-79.4 42.9-145 110.6-187.6 190.3 30-4.4 58.9-15.3 84.6-31.3 35 13.1 70.9 24.3 107 33.6-9.3-36.5-20.4-74.5-33.5-109.8zm29.7-145.5c-2.6-19.5-7.9-38.7-15.8-56.8C290.5 216.7 182 327.5 137.1 466c18.1 7.6 37 12.5 56.6 15.2C240 367.1 330.5 274.4 444.2 227.7z"], + "foursquare": [368, 512, [], "f180", "M323.1 3H49.9C12.4 3 0 31.3 0 49.1v433.8c0 20.3 12.1 27.7 18.2 30.1 6.2 2.5 22.8 4.6 32.9-7.1C180 356.5 182.2 354 182.2 354c3.1-3.4 3.4-3.1 6.8-3.1h83.4c35.1 0 40.6-25.2 44.3-39.7l48.6-243C373.8 25.8 363.1 3 323.1 3zm-16.3 73.8l-11.4 59.7c-1.2 6.5-9.5 13.2-16.9 13.2H172.1c-12 0-20.6 8.3-20.6 20.3v13c0 12 8.6 20.6 20.6 20.6h90.4c8.3 0 16.6 9.2 14.8 18.2-1.8 8.9-10.5 53.8-11.4 58.8-.9 4.9-6.8 13.5-16.9 13.5h-73.5c-13.5 0-17.2 1.8-26.5 12.6 0 0-8.9 11.4-89.5 108.3-.9.9-1.8.6-1.8-.3V75.9c0-7.7 6.8-16.6 16.6-16.6h219c8.2 0 15.6 7.7 13.5 17.5z"], + "free-code-camp": [576, 512, [], "f2c5", "M69.3 144.5c-41 68.5-36.4 163 1 227C92.5 409.7 120 423.9 120 438c0 6.8-6 13-12.8 13C87.7 451 8 375.5 8 253.2c0-111.5 78-186 97.1-186 6 0 14.9 4.8 14.9 11.1 0 12.7-28.3 28.6-50.7 66.2zm195.8 213.8c4.5 1.8 12.3 5.2 12.3-1.2 0-2.7-2.2-2.9-4.3-3.6-8.5-3.4-14-7.7-19.1-15.2-8.2-12.1-10.1-24.2-10.1-38.6 0-32.1 44.2-37.9 44.2-70 0-12.3-7.7-15.9-7.7-19.3 0-2.2.7-2.2 2.9-2.2 8 0 19.1 13.3 22.5 19.8 2.2 4.6 2.4 6 2.4 11.1 0 7-.7 14.2-.7 21.3 0 27 31.9 19.8 31.9 6.8 0-6-3.6-11.6-3.6-17.4 0-.7 0-1.2.7-1.2 3.4 0 9.4 7.7 11.1 10.1 5.8 8.9 8.5 20.8 8.5 31.4 0 32.4-29.5 49-29.5 56 0 1 2.9 7.7 12.1 1.9 29.7-15.1 53.1-47.6 53.1-89.8 0-33.6-8.7-57.7-32.1-82.6-3.9-4.1-16.4-16.9-22.5-16.9-8.2 0 7.2 18.6 7.2 31.2 0 7.2-4.8 12.3-12.3 12.3-11.6 0-14.5-25.4-15.9-33.3-5.8-33.8-12.8-58.2-46.4-74.1-10.4-5-36.5-11.8-36.5-2.2 0 2.4 2.7 4.1 4.6 5.1 9.2 5.6 19.6 21.4 19.6 38.2 0 46.1-57.7 88.2-57.7 136.2-.2 40.3 28.1 72.6 65.3 86.2zM470.4 67c-6 0-14.4 6.5-14.4 12.6 0 8.7 12.1 19.6 17.6 25.4 81.6 85.1 78.6 214.3 17.6 291-7 8.9-35.3 35.3-35.3 43.5 0 5.1 8.2 11.4 13.2 11.4 25.4 0 98.8-80.8 98.8-185.7C568 145.9 491.8 67 470.4 67zm-42.3 323.1H167c-9.4 0-15.5 7.5-15.5 16.4 0 8.5 7 15.5 15.5 15.5h261.1c9.4 0 11.9-7.5 11.9-16.4 0-8.5-3.5-15.5-11.9-15.5z"], + "freebsd": [448, 512, [], "f3a4", "M303.7 96.2c11.1-11.1 115.5-77 139.2-53.2 23.7 23.7-42.1 128.1-53.2 139.2-11.1 11.1-39.4.9-63.1-22.9-23.8-23.7-34.1-52-22.9-63.1zM109.9 68.1C73.6 47.5 22 24.6 5.6 41.1c-16.6 16.6 7.1 69.4 27.9 105.7 18.5-32.2 44.8-59.3 76.4-78.7zM406.7 174c3.3 11.3 2.7 20.7-2.7 26.1-20.3 20.3-87.5-27-109.3-70.1-18-32.3-11.1-53.4 14.9-48.7 5.7-3.6 12.3-7.6 19.6-11.6-29.8-15.5-63.6-24.3-99.5-24.3-119.1 0-215.6 96.5-215.6 215.6 0 119 96.5 215.6 215.6 215.6S445.3 380.1 445.3 261c0-38.4-10.1-74.5-27.7-105.8-3.9 7-7.6 13.3-10.9 18.8z"], + "fulcrum": [269, 512, [], "f50b", "M70.75 164.14l-35.38 43.55L0 164.14l35.38-43.55 35.37 43.55zM119.23 0L98.69 198.18 47.72 256l50.98 57.82L119.23 512V300.89L78.15 256l41.08-44.89V0zm79.67 164.14l35.38 43.55 35.38-43.55-35.38-43.55-35.38 43.55zm-48.48 46.97L191.5 256l-41.08 44.89V512l20.54-198.18L221.94 256l-50.98-57.82L150.42 0v211.11z"], + "galactic-republic": [496, 512, [], "f50c", "M248 504C111.25 504 0 392.75 0 256S111.25 8 248 8s248 111.25 248 248-111.25 248-248 248zm0-479.47C120.37 24.53 16.53 128.37 16.53 256S120.37 487.47 248 487.47 479.47 383.63 479.47 256 375.63 24.53 248 24.53zm27.62 21.81v24.62a185.933 185.933 0 0 1 83.57 34.54l17.39-17.36c-28.75-22.06-63.3-36.89-100.96-41.8zm-55.37.07c-37.64 4.94-72.16 19.8-100.88 41.85l17.28 17.36h.08c24.07-17.84 52.55-30.06 83.52-34.67V46.41zm12.25 50.17v82.87c-10.04 2.03-19.42 5.94-27.67 11.42l-58.62-58.59-21.93 21.93 58.67 58.67c-5.47 8.23-9.45 17.59-11.47 27.62h-82.9v31h82.9c2.02 10.02 6.01 19.31 11.47 27.54l-58.67 58.69 21.93 21.93 58.62-58.62a77.873 77.873 0 0 0 27.67 11.47v82.9h31v-82.9c10.05-2.03 19.37-6.06 27.62-11.55l58.67 58.69 21.93-21.93-58.67-58.69c5.46-8.23 9.47-17.52 11.5-27.54h82.87v-31h-82.87c-2.02-10.02-6.03-19.38-11.5-27.62l58.67-58.67-21.93-21.93-58.67 58.67c-8.25-5.49-17.57-9.47-27.62-11.5V96.58h-31zm183.24 30.72l-17.36 17.36a186.337 186.337 0 0 1 34.67 83.67h24.62c-4.95-37.69-19.83-72.29-41.93-101.03zm-335.55.13c-22.06 28.72-36.91 63.26-41.85 100.91h24.65c4.6-30.96 16.76-59.45 34.59-83.52l-17.39-17.39zM38.34 283.67c4.92 37.64 19.75 72.18 41.8 100.9l17.36-17.39c-17.81-24.07-29.92-52.57-34.51-83.52H38.34zm394.7 0c-4.61 30.99-16.8 59.5-34.67 83.6l17.36 17.36c22.08-28.74 36.98-63.29 41.93-100.96h-24.62zM136.66 406.38l-17.36 17.36c28.73 22.09 63.3 36.98 100.96 41.93v-24.64c-30.99-4.63-59.53-16.79-83.6-34.65zm222.53.05c-24.09 17.84-52.58 30.08-83.57 34.67v24.57c37.67-4.92 72.21-19.79 100.96-41.85l-17.31-17.39h-.08z"], + "galactic-senate": [512, 512, [], "f50d", "M249.86 33.48v26.07C236.28 80.17 226 168.14 225.39 274.9c11.74-15.62 19.13-33.33 19.13-48.24v-16.88c-.03-5.32.75-10.53 2.19-15.65.65-2.14 1.39-4.08 2.62-5.82 1.23-1.75 3.43-3.79 6.68-3.79 3.24 0 5.45 2.05 6.68 3.79 1.23 1.75 1.97 3.68 2.62 5.82 1.44 5.12 2.22 10.33 2.19 15.65v16.88c0 14.91 7.39 32.62 19.13 48.24-.63-106.76-10.91-194.73-24.49-215.35V33.48h-12.28zm-26.34 147.77c-9.52 2.15-18.7 5.19-27.46 9.08 8.9 16.12 9.76 32.64 1.71 37.29-8 4.62-21.85-4.23-31.36-19.82-11.58 8.79-21.88 19.32-30.56 31.09 14.73 9.62 22.89 22.92 18.32 30.66-4.54 7.7-20.03 7.14-35.47-.96-5.78 13.25-9.75 27.51-11.65 42.42 9.68.18 18.67 2.38 26.18 6.04 17.78-.3 32.77-1.96 40.49-4.22 5.55-26.35 23.02-48.23 46.32-59.51.73-25.55 1.88-49.67 3.48-72.07zm64.96 0c1.59 22.4 2.75 46.52 3.47 72.07 23.29 11.28 40.77 33.16 46.32 59.51 7.72 2.26 22.71 3.92 40.49 4.22 7.51-3.66 16.5-5.85 26.18-6.04-1.9-14.91-5.86-29.17-11.65-42.42-15.44 8.1-30.93 8.66-35.47.96-4.57-7.74 3.6-21.05 18.32-30.66-8.68-11.77-18.98-22.3-30.56-31.09-9.51 15.59-23.36 24.44-31.36 19.82-8.05-4.65-7.19-21.16 1.71-37.29a147.49 147.49 0 0 0-27.45-9.08zm-32.48 8.6c-3.23 0-5.86 8.81-6.09 19.93h-.05v16.88c0 41.42-49.01 95.04-93.49 95.04-52 0-122.75-1.45-156.37 29.17v2.51c9.42 17.12 20.58 33.17 33.18 47.97C45.7 380.26 84.77 360.4 141.2 360c45.68 1.02 79.03 20.33 90.76 40.87.01.01-.01.04 0 .05 7.67 2.14 15.85 3.23 24.04 3.21 8.19.02 16.37-1.07 24.04-3.21.01-.01-.01-.04 0-.05 11.74-20.54 45.08-39.85 90.76-40.87 56.43.39 95.49 20.26 108.02 41.35 12.6-14.8 23.76-30.86 33.18-47.97v-2.51c-33.61-30.62-104.37-29.17-156.37-29.17-44.48 0-93.49-53.62-93.49-95.04v-16.88h-.05c-.23-11.12-2.86-19.93-6.09-19.93zm0 96.59c22.42 0 40.6 18.18 40.6 40.6s-18.18 40.65-40.6 40.65-40.6-18.23-40.6-40.65c0-22.42 18.18-40.6 40.6-40.6zm0 7.64c-18.19 0-32.96 14.77-32.96 32.96S237.81 360 256 360s32.96-14.77 32.96-32.96-14.77-32.96-32.96-32.96zm0 6.14c14.81 0 26.82 12.01 26.82 26.82s-12.01 26.82-26.82 26.82-26.82-12.01-26.82-26.82 12.01-26.82 26.82-26.82zm-114.8 66.67c-10.19.07-21.6.36-30.5 1.66.43 4.42 1.51 18.63 7.11 29.76 9.11-2.56 18.36-3.9 27.62-3.9 41.28.94 71.48 34.35 78.26 74.47l.11 4.7c10.4 1.91 21.19 2.94 32.21 2.94 11.03 0 21.81-1.02 32.21-2.94l.11-4.7c6.78-40.12 36.98-73.53 78.26-74.47 9.26 0 18.51 1.34 27.62 3.9 5.6-11.13 6.68-25.34 7.11-29.76-8.9-1.3-20.32-1.58-30.5-1.66-18.76.42-35.19 4.17-48.61 9.67-12.54 16.03-29.16 30.03-49.58 33.07-.09.02-.17.04-.27.05-.05.01-.11.04-.16.05-5.24 1.07-10.63 1.6-16.19 1.6-5.55 0-10.95-.53-16.19-1.6-.05-.01-.11-.04-.16-.05-.1-.02-.17-.04-.27-.05-20.42-3.03-37.03-17.04-49.58-33.07-13.42-5.49-29.86-9.25-48.61-9.67z"], + "get-pocket": [448, 512, [], "f265", "M407.6 64h-367C18.5 64 0 82.5 0 104.6v135.2C0 364.5 99.7 464 224.2 464c124 0 223.8-99.5 223.8-224.2V104.6c0-22.4-17.7-40.6-40.4-40.6zm-162 268.5c-12.4 11.8-31.4 11.1-42.4 0C89.5 223.6 88.3 227.4 88.3 209.3c0-16.9 13.8-30.7 30.7-30.7 17 0 16.1 3.8 105.2 89.3 90.6-86.9 88.6-89.3 105.5-89.3 16.9 0 30.7 13.8 30.7 30.7 0 17.8-2.9 15.7-114.8 123.2z"], + "gg": [512, 512, [], "f260", "M179.2 230.4l102.4 102.4-102.4 102.4L0 256 179.2 76.8l44.8 44.8-25.6 25.6-19.2-19.2-128 128 128 128 51.5-51.5-77.1-76.5 25.6-25.6zM332.8 76.8L230.4 179.2l102.4 102.4 25.6-25.6-77.1-76.5 51.5-51.5 128 128-128 128-19.2-19.2-25.6 25.6 44.8 44.8L512 256 332.8 76.8z"], + "gg-circle": [512, 512, [], "f261", "M257 8C120 8 9 119 9 256s111 248 248 248 248-111 248-248S394 8 257 8zm-49.5 374.8L81.8 257.1l125.7-125.7 35.2 35.4-24.2 24.2-11.1-11.1-77.2 77.2 77.2 77.2 26.6-26.6-53.1-52.9 24.4-24.4 77.2 77.2-75 75.2zm99-2.2l-35.2-35.2 24.1-24.4 11.1 11.1 77.2-77.2-77.2-77.2-26.5 26.5 53.1 52.9-24.4 24.4-77.2-77.2 75-75L432.2 255 306.5 380.6z"], + "git": [448, 512, [], "f1d3", "M18.8 221.7c0 25.3 16.2 60 41.5 68.5v1c-18.8 8.3-24 50.6 1 65.8v1C34 367 16 384.3 16 414.2c0 51.5 48.8 65.8 91.5 65.8 52 0 90.7-18.7 90.7-76 0-70.5-101-44.5-101-82.8 0-13.5 7.2-18.7 19.7-21.3 41.5-7.7 67.5-40 67.5-82.2 0-7.3-1.5-14.2-4-21 6.7-1.5 13.2-3.3 19.7-5.5v-50.5c-17.2 6.8-35.7 11.8-54.5 11.8-53.8-31-126.8 1.3-126.8 69.2zm87.7 163.8c17 0 41.2 3 41.2 25 0 21.8-19.5 26.3-37.7 26.3-17.3 0-43.3-2.7-43.3-25.2.1-22.3 22.1-26.1 39.8-26.1zM103.3 256c-22 0-31.3-13-31.3-33.8 0-49.3 61-48.8 61-.5 0 20.3-8 34.3-29.7 34.3zM432 305.5v49c-13.3 7.3-30.5 9.8-45.5 9.8-53.5 0-59.8-42.2-59.8-85.7v-87.7h.5v-1c-7 0-7.3-1.6-24 1v-47.5h24c0-22.3.3-31-1.5-41.2h56.7c-2 13.8-1.5 27.5-1.5 41.2h51v47.5s-19.3-1-51-1V281c0 14.8 3.3 32.8 21.8 32.8 9.8 0 21.3-2.8 29.3-8.3zM286 68.7c0 18.7-14.5 36.2-33.8 36.2-19.8 0-34.5-17.2-34.5-36.2 0-19.3 14.5-36.7 34.5-36.7C272 32 286 50 286 68.7zm-6.2 74.5c-1.8 14.6-1.6 199.8 0 217.8h-55.5c1.6-18.1 1.8-203 0-217.8h55.5z"], + "git-square": [448, 512, [], "f1d2", "M140.1 348.5c12.1 0 29.5 2.1 29.5 17.9 0 15.5-13.9 18.8-27 18.8-12.3 0-30.9-2-30.9-18s15.7-18.7 28.4-18.7zm-24.7-116.6c0 14.8 6.6 24.1 22.3 24.1 15.5 0 21.2-10 21.2-24.5.1-34.4-43.5-34.8-43.5.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-241 93.7c-12.3 4.8-25.5 8.4-38.9 8.4-38.5-22.1-90.7.9-90.7 49.5 0 18 11.6 42.9 29.6 48.9v.7c-13.4 5.9-17.1 36.1.7 47v.7c-19.5 6.4-32.3 18.8-32.3 40.2 0 36.8 34.8 47 65.4 47 37.1 0 64.8-13.4 64.8-54.3 0-50.4-72.1-31.8-72.1-59.1 0-9.6 5.2-13.4 14.1-15.2 29.6-5.5 48.2-28.6 48.2-58.7 0-5.2-1.1-10.2-2.9-15 4.8-1.1 9.5-2.3 14.1-3.9v-36.2zm56.8 1.8h-39.6c1.3 10.6 1.1 142.6 0 155.5h39.6c-1.1-12.8-1.2-145.1 0-155.5zm4.5-53.3c0-13.4-10-26.2-24.1-26.2-14.3 0-24.6 12.5-24.6 26.2 0 13.6 10.5 25.9 24.6 25.9 13.7 0 24.1-12.5 24.1-25.9zm104.3 53.3h-36.4c0-9.8-.4-19.6 1.1-29.5h-40.5c1.3 7.3 1.1 13.6 1.1 29.5h-17.1v33.9c11.9-1.9 12.1-.7 17.1-.7v.7h-.4v62.7c0 31.1 4.5 61.2 42.7 61.2 10.7 0 23-1.8 32.5-7v-35c-5.7 3.9-13.9 5.9-20.9 5.9-13.2 0-15.5-12.9-15.5-23.4v-65.2c22.7 0 36.4.7 36.4.7v-33.8z"], + "github": [496, 512, [], "f09b", "M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"], + "github-alt": [480, 512, [], "f113", "M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1zM480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2zm-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3zm-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1z"], + "github-square": [448, 512, [], "f092", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z"], + "gitkraken": [592, 512, [], "f3a6", "M565.7 118.1c-2.3-6.1-9.3-9.2-15.3-6.6-5.7 2.4-8.5 8.9-6.3 14.6 10.9 29 16.9 60.5 16.9 93.3 0 134.6-100.3 245.7-230.2 262.7V358.4c7.9-1.5 15.5-3.6 23-6.2v104c106.7-25.9 185.9-122.1 185.9-236.8 0-91.8-50.8-171.8-125.8-213.3-5.7-3.2-13-.9-15.9 5-2.7 5.5-.6 12.2 4.7 15.1 67.9 37.6 113.9 110 113.9 193.2 0 93.3-57.9 173.1-139.8 205.4v-92.2c14.2-4.5 24.9-17.7 24.9-33.5 0-13.1-6.8-24.4-17.3-30.5 8.3-79.5 44.5-58.6 44.5-83.9V170c0-38-87.9-161.8-129-164.7-2.5-.2-5-.2-7.6 0C251.1 8.3 163.2 132 163.2 170v14.8c0 25.3 36.3 4.3 44.5 83.9-10.6 6.1-17.3 17.4-17.3 30.5 0 15.8 10.6 29 24.8 33.5v92.2c-81.9-32.2-139.8-112-139.8-205.4 0-83.1 46-155.5 113.9-193.2 5.4-3 7.4-9.6 4.7-15.1-2.9-5.9-10.1-8.2-15.9-5-75 41.5-125.8 121.5-125.8 213.3 0 114.7 79.2 210.8 185.9 236.8v-104c7.6 2.5 15.1 4.6 23 6.2v123.7C131.4 465.2 31 354.1 31 219.5c0-32.8 6-64.3 16.9-93.3 2.2-5.8-.6-12.2-6.3-14.6-6-2.6-13 .4-15.3 6.6C14.5 149.7 8 183.8 8 219.5c0 155.1 122.6 281.6 276.3 287.8V361.4c6.8.4 15 .5 23.4 0v145.8C461.4 501.1 584 374.6 584 219.5c0-35.7-6.5-69.8-18.3-101.4zM365.9 275.5c13 0 23.7 10.5 23.7 23.7 0 13.1-10.6 23.7-23.7 23.7-13 0-23.7-10.5-23.7-23.7 0-13.1 10.6-23.7 23.7-23.7zm-139.8 47.3c-13.2 0-23.7-10.7-23.7-23.7s10.5-23.7 23.7-23.7c13.1 0 23.7 10.6 23.7 23.7 0 13-10.5 23.7-23.7 23.7z"], + "gitlab": [512, 512, [], "f296", "M29.782 199.732L256 493.714 8.074 309.699c-6.856-5.142-9.712-13.996-7.141-21.993l28.849-87.974zm75.405-174.806c-3.142-8.854-15.709-8.854-18.851 0L29.782 199.732h131.961L105.187 24.926zm56.556 174.806L256 493.714l94.257-293.982H161.743zm349.324 87.974l-28.849-87.974L256 493.714l247.926-184.015c6.855-5.142 9.711-13.996 7.141-21.993zm-85.404-262.78c-3.142-8.854-15.709-8.854-18.851 0l-56.555 174.806h131.961L425.663 24.926z"], + "gitter": [384, 512, [], "f426", "M66.4 322.5H16V0h50.4v322.5zM166.9 76.1h-50.4V512h50.4V76.1zm100.6 0h-50.4V512h50.4V76.1zM368 76h-50.4v247H368V76z"], + "glide": [448, 512, [], "f2a5", "M252.8 148.6c0 8.8-1.6 17.7-3.4 26.4-5.8 27.8-11.6 55.8-17.3 83.6-1.4 6.3-8.3 4.9-13.7 4.9-23.8 0-30.5-26-30.5-45.5 0-29.3 11.2-68.1 38.5-83.1 4.3-2.5 9.2-4.2 14.1-4.2 11.4 0 12.3 8.3 12.3 17.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 187c0-5.1-20.8-37.7-25.5-39.5-2.2-.9-7.2-2.3-9.6-2.3-23.1 0-38.7 10.5-58.2 21.5l-.5-.5c4.3-29.4 14.6-57.2 14.6-87.4 0-44.6-23.8-62.7-67.5-62.7-71.7 0-108 70.8-108 123.5 0 54.7 32 85 86.3 85 7.5 0 6.9-.6 6.9 2.3-10.5 80.3-56.5 82.9-56.5 58.9 0-24.4 28-36.5 28.3-38-.2-7.6-29.3-17.2-36.7-17.2-21.1 0-32.7 33-32.7 50.6 0 32.3 20.4 54.7 53.3 54.7 48.2 0 83.4-49.7 94.3-91.7 9.4-37.7 7-39.4 12.3-42.1 20-10.1 35.8-16.8 58.4-16.8 11.1 0 19 2.3 36.7 5.2 1.8.1 4.1-1.7 4.1-3.5z"], + "glide-g": [448, 512, [], "f2a6", "M407.1 211.2c-3.5-1.4-11.6-3.8-15.4-3.8-37.1 0-62.2 16.8-93.5 34.5l-.9-.9c7-47.3 23.5-91.9 23.5-140.4C320.8 29.1 282.6 0 212.4 0 97.3 0 39 113.7 39 198.4 39 286.3 90.3 335 177.6 335c12 0 11-1 11 3.8-16.9 128.9-90.8 133.1-90.8 94.6 0-39.2 45-58.6 45.5-61-.3-12.2-47-27.6-58.9-27.6-33.9.1-52.4 51.2-52.4 79.3C32 476 64.8 512 117.5 512c77.4 0 134-77.8 151.4-145.4 15.1-60.5 11.2-63.3 19.7-67.6 32.2-16.2 57.5-27 93.8-27 17.8 0 30.5 3.7 58.9 8.4 2.9 0 6.7-2.9 6.7-5.8 0-8-33.4-60.5-40.9-63.4zm-175.3-84.4c-9.3 44.7-18.6 89.6-27.8 134.3-2.3 10.2-13.3 7.8-22 7.8-38.3 0-49-41.8-49-73.1 0-47 18-109.3 61.8-133.4 7-4.1 14.8-6.7 22.6-6.7 18.6 0 20 13.3 20 28.7-.1 14.3-2.7 28.5-5.6 42.4z"], + "gofore": [400, 512, [], "f3a7", "M324 319.8h-13.2v34.7c-24.5 23.1-56.3 35.8-89.9 35.8-73.2 0-132.4-60.2-132.4-134.4 0-74.1 59.2-134.4 132.4-134.4 35.3 0 68.6 14 93.6 39.4l62.3-63.3C335 55.3 279.7 32 220.7 32 98 32 0 132.6 0 256c0 122.5 97 224 220.7 224 63.2 0 124.5-26.2 171-82.5-2-27.6-13.4-77.7-67.7-77.7zm-12.1-112.5H205.6v89H324c33.5 0 60.5 15.1 76 41.8v-30.6c0-65.2-40.4-100.2-88.1-100.2z"], + "goodreads": [448, 512, [], "f3a8", "M299.9 191.2c5.1 37.3-4.7 79-35.9 100.7-22.3 15.5-52.8 14.1-70.8 5.7-37.1-17.3-49.5-58.6-46.8-97.2 4.3-60.9 40.9-87.9 75.3-87.5 46.9-.2 71.8 31.8 78.2 78.3zM448 88v336c0 30.9-25.1 56-56 56H56c-30.9 0-56-25.1-56-56V88c0-30.9 25.1-56 56-56h336c30.9 0 56 25.1 56 56zM330 313.2s-.1-34-.1-217.3h-29v40.3c-.8.3-1.2-.5-1.6-1.2-9.6-20.7-35.9-46.3-76-46-51.9.4-87.2 31.2-100.6 77.8-4.3 14.9-5.8 30.1-5.5 45.6 1.7 77.9 45.1 117.8 112.4 115.2 28.9-1.1 54.5-17 69-45.2.5-1 1.1-1.9 1.7-2.9.2.1.4.1.6.2.3 3.8.2 30.7.1 34.5-.2 14.8-2 29.5-7.2 43.5-7.8 21-22.3 34.7-44.5 39.5-17.8 3.9-35.6 3.8-53.2-1.2-21.5-6.1-36.5-19-41.1-41.8-.3-1.6-1.3-1.3-2.3-1.3h-26.8c.8 10.6 3.2 20.3 8.5 29.2 24.2 40.5 82.7 48.5 128.2 37.4 49.9-12.3 67.3-54.9 67.4-106.3z"], + "goodreads-g": [384, 512, [], "f3a9", "M42.6 403.3h2.8c12.7 0 25.5 0 38.2.1 1.6 0 3.1-.4 3.6 2.1 7.1 34.9 30 54.6 62.9 63.9 26.9 7.6 54.1 7.8 81.3 1.8 33.8-7.4 56-28.3 68-60.4 8-21.5 10.7-43.8 11-66.5.1-5.8.3-47-.2-52.8l-.9-.3c-.8 1.5-1.7 2.9-2.5 4.4-22.1 43.1-61.3 67.4-105.4 69.1-103 4-169.4-57-172-176.2-.5-23.7 1.8-46.9 8.3-69.7C58.3 47.7 112.3.6 191.6 0c61.3-.4 101.5 38.7 116.2 70.3.5 1.1 1.3 2.3 2.4 1.9V10.6h44.3c0 280.3.1 332.2.1 332.2-.1 78.5-26.7 143.7-103 162.2-69.5 16.9-159 4.8-196-57.2-8-13.5-11.8-28.3-13-44.5zM188.9 36.5c-52.5-.5-108.5 40.7-115 133.8-4.1 59 14.8 122.2 71.5 148.6 27.6 12.9 74.3 15 108.3-8.7 47.6-33.2 62.7-97 54.8-154-9.7-71.1-47.8-120-119.6-119.7z"], + "google": [488, 512, [], "f1a0", "M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z"], + "google-drive": [512, 512, [], "f3aa", "M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z"], + "google-play": [512, 512, [], "f3ab", "M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z"], + "google-plus": [496, 512, [], "f2b3", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm-70.7 372c-68.8 0-124-55.5-124-124s55.2-124 124-124c31.3 0 60.1 11 83 32.3l-33.6 32.6c-13.2-12.9-31.3-19.1-49.4-19.1-42.9 0-77.2 35.5-77.2 78.1s34.2 78.1 77.2 78.1c32.6 0 64.9-19.1 70.1-53.3h-70.1v-42.6h116.9c1.3 6.8 1.9 13.6 1.9 20.7 0 70.8-47.5 121.2-118.8 121.2zm230.2-106.2v35.5H372v-35.5h-35.5v-35.5H372v-35.5h35.5v35.5h35.2v35.5h-35.2z"], + "google-plus-g": [640, 512, [], "f0d5", "M386.061 228.496c1.834 9.692 3.143 19.384 3.143 31.956C389.204 370.205 315.599 448 204.8 448c-106.084 0-192-85.915-192-192s85.916-192 192-192c51.864 0 95.083 18.859 128.611 50.292l-52.126 50.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484 0-118.92 54.221-118.92 121.277 0 67.056 53.436 121.277 118.92 121.277 75.961 0 104.513-54.745 108.965-82.773H204.8v-66.009h181.261zm185.406 6.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001h-55.733z"], + "google-plus-square": [448, 512, [], "f0d4", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM164 356c-55.3 0-100-44.7-100-100s44.7-100 100-100c27 0 49.5 9.8 67 26.2l-27.1 26.1c-7.4-7.1-20.3-15.4-39.8-15.4-34.1 0-61.9 28.2-61.9 63.2 0 34.9 27.8 63.2 61.9 63.2 39.6 0 54.4-28.5 56.8-43.1H164v-34.4h94.4c1 5 1.6 10.1 1.6 16.6 0 57.1-38.3 97.6-96 97.6zm220-81.8h-29v29h-29.2v-29h-29V245h29v-29H355v29h29v29.2z"], + "google-wallet": [448, 512, [], "f1ee", "M156.8 126.8c37.6 60.6 64.2 113.1 84.3 162.5-8.3 33.8-18.8 66.5-31.3 98.3-13.2-52.3-26.5-101.3-56-148.5 6.5-36.4 2.3-73.6 3-112.3zM109.3 200H16.1c-6.5 0-10.5 7.5-6.5 12.7C51.8 267 81.3 330.5 101.3 400h103.5c-16.2-69.7-38.7-133.7-82.5-193.5-3-4-8-6.5-13-6.5zm47.8-88c68.5 108 130 234.5 138.2 368H409c-12-138-68.4-265-143.2-368H157.1zm251.8-68.5c-1.8-6.8-8.2-11.5-15.2-11.5h-88.3c-5.3 0-9 5-7.8 10.3 13.2 46.5 22.3 95.5 26.5 146 48.2 86.2 79.7 178.3 90.6 270.8 15.8-60.5 25.3-133.5 25.3-203 0-73.6-12.1-145.1-31.1-212.6z"], + "gratipay": [496, 512, [], "f184", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm114.6 226.4l-113 152.7-112.7-152.7c-8.7-11.9-19.1-50.4 13.6-72 28.1-18.1 54.6-4.2 68.5 11.9 15.9 17.9 46.6 16.9 61.7 0 13.9-16.1 40.4-30 68.1-11.9 32.9 21.6 22.6 60 13.8 72z"], + "grav": [512, 512, [], "f2d6", "M301.1 212c4.4 4.4 4.4 11.9 0 16.3l-9.7 9.7c-4.4 4.7-11.9 4.7-16.6 0l-10.5-10.5c-4.4-4.7-4.4-11.9 0-16.6l9.7-9.7c4.4-4.4 11.9-4.4 16.6 0l10.5 10.8zm-30.2-19.7c3-3 3-7.8 0-10.5-2.8-3-7.5-3-10.5 0-2.8 2.8-2.8 7.5 0 10.5 3.1 2.8 7.8 2.8 10.5 0zm-26 5.3c-3 2.8-3 7.5 0 10.2 2.8 3 7.5 3 10.5 0 2.8-2.8 2.8-7.5 0-10.2-3-3-7.7-3-10.5 0zm72.5-13.3c-19.9-14.4-33.8-43.2-11.9-68.1 21.6-24.9 40.7-17.2 59.8.8 11.9 11.3 29.3 24.9 17.2 48.2-12.5 23.5-45.1 33.2-65.1 19.1zm47.7-44.5c-8.9-10-23.3 6.9-15.5 16.1 7.4 9 32.1 2.4 15.5-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-66.2 42.6c2.5-16.1-20.2-16.6-25.2-25.7-13.6-24.1-27.7-36.8-54.5-30.4 11.6-8 23.5-6.1 23.5-6.1.3-6.4 0-13-9.4-24.9 3.9-12.5.3-22.4.3-22.4 15.5-8.6 26.8-24.4 29.1-43.2 3.6-31-18.8-59.2-49.8-62.8-22.1-2.5-43.7 7.7-54.3 25.7-23.2 40.1 1.4 70.9 22.4 81.4-14.4-1.4-34.3-11.9-40.1-34.3-6.6-25.7 2.8-49.8 8.9-61.4 0 0-4.4-5.8-8-8.9 0 0-13.8 0-24.6 5.3 11.9-15.2 25.2-14.4 25.2-14.4 0-6.4-.6-14.9-3.6-21.6-5.4-11-23.8-12.9-31.7 2.8.1-.2.3-.4.4-.5-5 11.9-1.1 55.9 16.9 87.2-2.5 1.4-9.1 6.1-13 10-21.6 9.7-56.2 60.3-56.2 60.3-28.2 10.8-77.2 50.9-70.6 79.7.3 3 1.4 5.5 3 7.5-2.8 2.2-5.5 5-8.3 8.3-11.9 13.8-5.3 35.2 17.7 24.4 15.8-7.2 29.6-20.2 36.3-30.4 0 0-5.5-5-16.3-4.4 27.7-6.6 34.3-9.4 46.2-9.1 8 3.9 8-34.3 8-34.3 0-14.7-2.2-31-11.1-41.5 12.5 12.2 29.1 32.7 28 60.6-.8 18.3-15.2 23-15.2 23-9.1 16.6-43.2 65.9-30.4 106 0 0-9.7-14.9-10.2-22.1-17.4 19.4-46.5 52.3-24.6 64.5 26.6 14.7 108.8-88.6 126.2-142.3 34.6-20.8 55.4-47.3 63.9-65 22 43.5 95.3 94.5 101.1 59z"], + "gripfire": [384, 512, [], "f3ac", "M171.8 503.8c0-5.3 4.8-12.2 4.8-22.3 0-15.2-13-39.9-78.1-86.6C64.2 365.8 32 336.4 32 286.6 32 171.9 179.1 110.1 179.1 18c0-3.3-.2-6.7-.6-10 5.1 2.4 39.1 43.3 39.1 90.4 0 80.5-105.1 129.2-105.1 203 0 26.9 16.6 47.2 32.6 69.5 22.5 30.2 44.2 56.9 44.2 86.5-.1 14.5-4.4 29.7-17.5 46.4zm146-241.4c1.5 8.4 2.2 16.6 2.2 24.6 0 51.8-29.4 97.5-67.3 136.8-1 1-2.2 2.4-3.2 2.4-3.6 0-35.5-41.6-35.5-53.2 0 0 41.8-55.7 41.8-96.9 0-10.8-2.7-21.7-9.1-33.4-1.5 32.3-55.7 87.7-58.1 87.7-2.7 0-17.9-22-17.9-42.1 0-5.3 1-10.7 3.2-15.8 2.4-5.5 56.6-72 56.6-116.7 0-6.2-1-12-3.4-17.1l-4-7.2c16.7 6.5 82.6 64.1 94.7 130.9"], + "grunt": [384, 512, [], "f3ad", "M61.3 189.3c-1.1 10 5.2 19.1 5.2 19.1.7-7.5 2.2-12.8 4-16.6.4 10.3 3.2 23.5 12.8 34.1 6.9 7.6 35.6 23.3 54.9 6.1 1 2.4 2.1 5.3 3 8.5 2.9 10.3-2.7 25.3-2.7 25.3s15.1-17.1 13.9-32.5c10.8-.5 21.4-8.4 21.1-19.5 0 0-18.9 10.4-35.5-8.8-9.7-11.2-40.9-42-83.1-31.8 4.3 1 8.9 2.4 13.5 4.1h-.1c-4.2 2-6.5 7.1-7 12zm28.3-1.8c19.5 11 37.4 25.7 44.9 37-5.7 3.3-21.7 10.4-38-1.7-10.3-7.6-9.8-26.2-6.9-35.3zm79.2 233.7c2.2 2.3 1.5 5.3.9 6.8-1.1 2.7-5.5 11.6-13 19.8-2.7 2.9-6.6 4.6-11 4.6-4.3 0-8.7-1.6-11.8-4.3-2.3-2.1-10.2-9.5-13.7-18.6-1.3-3.4-1-6.1.9-8.1 1.3-1.3 4-2.9 9.5-2.9H160c4.1 0 7 .9 8.8 2.7zm62.9-187.9c-1.2 15.5 13.9 32.5 13.9 32.5s-5.6-15-2.7-25.3c.9-3.2 2-6 3-8.5 19.3 17.3 48 1.5 54.8-6.1 9.6-10.6 12.3-23.8 12.8-34.1 1.8 3.8 3.4 9.1 4 16.6 0 0 6.4-9.1 5.2-19.1-.6-5-2.9-10-7-11.8h-.1c4.6-1.8 9.2-3.2 13.5-4.1-42.3-10.2-73.4 20.6-83.1 31.8-16.7 19.2-35.5 8.8-35.5 8.8-.2 10.9 10.4 18.9 21.2 19.3zm17.8-8.8c7.5-11.4 25.4-26 44.9-37 3 9.1 3.4 27.7-7 35.4-16.3 12.1-32.2 5-37.9 1.6-.1.1 0 0 0 0zM263 421.4c1.9 1.9 2.2 4.6.9 7.9-3.5 8.9-11.4 16.1-13.7 18.1-3.1 2.6-7.4 4.2-11.8 4.2s-8.3-1.6-11-4.5c-7.5-8-12-16.7-13-19.3-.6-1.5-1.3-4.4.9-6.7 1.7-1.8 4.7-2.7 8.9-2.7h29.4c5.4.1 8.1 1.7 9.4 3zm-98.3-251.5c9.9 6 18.8 8.1 27.3 8.3 8.5-.2 17.4-2.3 27.3-8.3 0 0-14.5 17.7-27.2 17.8h-.2c-12.7-.2-27.2-17.8-27.2-17.8zm184.5 147.4c-2.4 17.9-13 33.8-24.6 43.7-3.1-22.7-3.7-55.5-3.7-62.4 0-14.7 9.5-24.5 12.2-26.1 2.5-1.5 5.4-3 8.3-4.6 18-9.6 40.4-21.6 40.4-43.7 0-16.2-9.3-23.2-15.4-27.8-.8-.6-1.5-1.1-2.2-1.7-2.1-1.7-3.7-3-4.3-4.4-4.4-9.8-3.6-34.2-1.7-37.6.6-.6 16.7-20.9 11.8-39.2-2-7.4-6.9-13.3-14.1-17-5.3-2.7-11.9-4.2-19.5-4.5-.1-2-.5-3.9-.9-5.9-.6-2.6-1.1-5.3-.9-8.1.4-4.7.8-9 2.2-11.3 8.4-13.3 28.8-17.6 29-17.6l12.3-2.4-8.1-9.5c-.1-.2-17.3-17.5-46.3-17.5-7.9 0-16 1.3-24.1 3.9-24.2 7.8-42.9 30.5-49.4 39.3-3.1-1-6.3-1.9-9.6-2.7-4.2-15.8 9-38.5 9-38.5s-13.6-3-33.7 15.2c-2.6-6.5-8.1-20.5-1.8-37.2C184.6 10.1 177.2 26 175 40.4c-7.6-5.4-6.7-23.1-7.2-27.6-7.5.9-29.2 21.9-28.2 48.3-2 .5-3.9 1.1-5.9 1.7-6.5-8.8-25.1-31.5-49.4-39.3-7.9-2.2-16-3.5-23.9-3.5-29 0-46.1 17.3-46.3 17.5L6 46.9l12.3 2.4c.2 0 20.6 4.3 29 17.6 1.4 2.2 1.8 6.6 2.2 11.3.2 2.8-.4 5.5-.9 8.1-.4 1.9-.8 3.9-.9 5.9-7.7.3-14.2 1.8-19.5 4.5-7.2 3.7-12.1 9.6-14.1 17-5 18.2 11.2 38.5 11.8 39.2 1.9 3.4 2.7 27.8-1.7 37.6-.6 1.4-2.2 2.7-4.3 4.4-.7.5-1.4 1.1-2.2 1.7-6.1 4.6-15.4 11.7-15.4 27.8 0 22.1 22.4 34.1 40.4 43.7 3 1.6 5.8 3.1 8.3 4.6 2.7 1.6 12.2 11.4 12.2 26.1 0 6.9-.6 39.7-3.7 62.4-11.6-9.9-22.2-25.9-24.6-43.8 0 0-29.2 22.6-20.6 70.8 5.2 29.5 23.2 46.1 47 54.7 8.8 19.1 29.4 45.7 67.3 49.6C143 504.3 163 512 192.2 512h.2c29.1 0 49.1-7.7 63.6-19.5 37.9-3.9 58.5-30.5 67.3-49.6 23.8-8.7 41.7-25.2 47-54.7 8.2-48.4-21.1-70.9-21.1-70.9zM305.7 37.7c5.6-1.8 11.6-2.7 17.7-2.7 11 0 19.9 3 24.7 5-3.1 1.4-6.4 3.2-9.7 5.3-2.4-.4-5.6-.8-9.2-.8-10.5 0-20.5 3.1-28.7 8.9-12.3 8.7-18 16.9-20.7 22.4-2.2-1.3-4.5-2.5-7.1-3.7-1.6-.8-3.1-1.5-4.7-2.2 6.1-9.1 19.9-26.5 37.7-32.2zm21 18.2c-.8 1-1.6 2.1-2.3 3.2-3.3 5.2-3.9 11.6-4.4 17.8-.5 6.4-1.1 12.5-4.4 17-4.2.8-8.1 1.7-11.5 2.7-2.3-3.1-5.6-7-10.5-11.2 1.4-4.8 5.5-16.1 13.5-22.5 5.6-4.3 12.2-6.7 19.6-7zM45.6 45.3c-3.3-2.2-6.6-4-9.7-5.3 4.8-2 13.7-5 24.7-5 6.1 0 12 .9 17.7 2.7 17.8 5.8 31.6 23.2 37.7 32.1-1.6.7-3.2 1.4-4.8 2.2-2.5 1.2-4.9 2.5-7.1 3.7-2.6-5.4-8.3-13.7-20.7-22.4-8.3-5.8-18.2-8.9-28.8-8.9-3.4.1-6.6.5-9 .9zm44.7 40.1c-4.9 4.2-8.3 8-10.5 11.2-3.4-.9-7.3-1.9-11.5-2.7C65 89.5 64.5 83.4 64 77c-.5-6.2-1.1-12.6-4.4-17.8-.7-1.1-1.5-2.2-2.3-3.2 7.4.3 14 2.6 19.5 7 8 6.3 12.1 17.6 13.5 22.4zM58.1 259.9c-2.7-1.6-5.6-3.1-8.4-4.6-14.9-8-30.2-16.3-30.2-30.5 0-11.1 4.3-14.6 8.9-18.2l.5-.4c.7-.6 1.4-1.2 2.2-1.8-.9 7.2-1.9 13.3-2.7 14.9 0 0 12.1-15 15.7-44.3 1.4-11.5-1.1-34.3-5.1-43 .2 4.9 0 9.8-.3 14.4-.4-.8-.8-1.6-1.3-2.2-3.2-4-11.8-17.5-9.4-26.6.9-3.5 3.1-6 6.7-7.8 3.8-1.9 8.8-2.9 15.1-2.9 12.3 0 25.9 3.7 32.9 6 25.1 8 55.4 30.9 64.1 37.7.2.2.4.3.4.3l5.6 3.9-3.5-5.8c-.2-.3-19.1-31.4-53.2-46.5 2-2.9 7.4-8.1 21.6-15.1 21.4-10.5 46.5-15.8 74.3-15.8 27.9 0 52.9 5.3 74.3 15.8 14.2 6.9 19.6 12.2 21.6 15.1-34 15.1-52.9 46.2-53.1 46.5l-3.5 5.8 5.6-3.9s.2-.1.4-.3c8.7-6.8 39-29.8 64.1-37.7 7-2.2 20.6-6 32.9-6 6.3 0 11.3 1 15.1 2.9 3.5 1.8 5.7 4.4 6.7 7.8 2.5 9.1-6.1 22.6-9.4 26.6-.5.6-.9 1.3-1.3 2.2-.3-4.6-.5-9.5-.3-14.4-4 8.8-6.5 31.5-5.1 43 3.6 29.3 15.7 44.3 15.7 44.3-.8-1.6-1.8-7.7-2.7-14.9.7.6 1.5 1.2 2.2 1.8l.5.4c4.6 3.7 8.9 7.1 8.9 18.2 0 14.2-15.4 22.5-30.2 30.5-2.9 1.5-5.7 3.1-8.4 4.6-8.7 5-18 16.7-19.1 34.2-.9 14.6.9 49.9 3.4 75.9-12.4 4.8-26.7 6.4-39.7 6.8-2-4.1-3.9-8.5-5.5-13.1-.7-2-19.6-51.1-26.4-62.2 5.5 39 17.5 73.7 23.5 89.6-3.5-.5-7.3-.7-11.7-.7h-117c-4.4 0-8.3.3-11.7.7 6-15.9 18.1-50.6 23.5-89.6-6.8 11.2-25.7 60.3-26.4 62.2-1.6 4.6-3.5 9-5.5 13.1-13-.4-27.2-2-39.7-6.8 2.5-26 4.3-61.2 3.4-75.9-.9-17.4-10.3-29.2-19-34.2zM34.8 404.6c-12.1-20-8.7-54.1-3.7-59.1 10.9 34.4 47.2 44.3 74.4 45.4-2.7 4.2-5.2 7.6-7 10l-1.4 1.4c-7.2 7.8-8.6 18.5-4.1 31.8-22.7-.1-46.3-9.8-58.2-29.5zm45.7 43.5c6 1.1 12.2 1.9 18.6 2.4 3.5 8 7.4 15.9 12.3 23.1-14.4-5.9-24.4-16-30.9-25.5zM192 498.2c-60.6-.1-78.3-45.8-84.9-64.7-3.7-10.5-3.4-18.2.9-23.1 2.9-3.3 9.5-7.2 24.6-7.2h118.8c15.1 0 21.8 3.9 24.6 7.2 4.2 4.8 4.5 12.6.9 23.1-6.6 18.8-24.3 64.6-84.9 64.7zm80.6-24.6c4.9-7.2 8.8-15.1 12.3-23.1 6.4-.5 12.6-1.3 18.6-2.4-6.5 9.5-16.5 19.6-30.9 25.5zm76.6-69c-12 19.7-35.6 29.3-58.1 29.7 4.5-13.3 3.1-24.1-4.1-31.8-.4-.5-.9-1-1.4-1.5-1.8-2.4-4.3-5.8-7-10 27.2-1.2 63.5-11 74.4-45.4 5 5 8.4 39.1-3.8 59z"], + "gulp": [256, 512, [], "f3ae", "M209.8 391.1l-14.1 24.6-4.6 80.2c0 8.9-28.3 16.1-63.1 16.1s-63.1-7.2-63.1-16.1l-5.8-79.4-14.9-25.4c41.2 17.3 126 16.7 165.6 0zm-196-253.3l13.6 125.5c5.9-20 20.8-47 40-55.2 6.3-2.7 12.7-2.7 18.7.9 5.2 3 9.6 9.3 10.1 11.8 1.2 6.5-2 9.1-4.5 9.1-3 0-5.3-4.6-6.8-7.3-4.1-7.3-10.3-7.6-16.9-2.8-6.9 5-12.9 13.4-17.1 20.7-5.1 8.8-9.4 18.5-12 28.2-1.5 5.6-2.9 14.6-.6 19.9 1 2.2 2.5 3.6 4.9 3.6 5 0 12.3-6.6 15.8-10.1 4.5-4.5 10.3-11.5 12.5-16l5.2-15.5c2.6-6.8 9.9-5.6 9.9 0 0 10.2-3.7 13.6-10 34.7-5.8 19.5-7.6 25.8-7.6 25.8-.7 2.8-3.4 7.5-6.3 7.5-1.2 0-2.1-.4-2.6-1.2-1-1.4-.9-5.3-.8-6.3.2-3.2 6.3-22.2 7.3-25.2-2 2.2-4.1 4.4-6.4 6.6-5.4 5.1-14.1 11.8-21.5 11.8-3.4 0-5.6-.9-7.7-2.4l7.6 79.6c2 5 39.2 17.1 88.2 17.1 49.1 0 86.3-12.2 88.2-17.1l10.9-94.6c-5.7 5.2-12.3 11.6-19.6 14.8-5.4 2.3-17.4 3.8-17.4-5.7 0-5.2 9.1-14.8 14.4-21.5 1.4-1.7 4.7-5.9 4.7-8.1 0-2.9-6-2.2-11.7 2.5-3.2 2.7-6.2 6.3-8.7 9.7-4.3 6-6.6 11.2-8.5 15.5-6.2 14.2-4.1 8.6-9.1 22-5 13.3-4.2 11.8-5.2 14-.9 1.9-2.2 3.5-4 4.5-1.9 1-4.5.9-6.1-.3-.9-.6-1.3-1.9-1.3-3.7 0-.9.1-1.8.3-2.7 1.5-6.1 7.8-18.1 15-34.3 1.6-3.7 1-2.6.8-2.3-6.2 6-10.9 8.9-14.4 10.5-5.8 2.6-13 2.6-14.5-4.1-.1-.4-.1-.8-.2-1.2-11.8 9.2-24.3 11.7-20-8.1-4.6 8.2-12.6 14.9-22.4 14.9-4.1 0-7.1-1.4-8.6-5.1-2.3-5.5 1.3-14.9 4.6-23.8 1.7-4.5 4-9.9 7.1-16.2 1.6-3.4 4.2-5.4 7.6-4.5.6.2 1.1.4 1.6.7 2.6 1.8 1.6 4.5.3 7.2-3.8 7.5-7.1 13-9.3 20.8-.9 3.3-2 9 1.5 9 2.4 0 4.7-.8 6.9-2.4 4.6-3.4 8.3-8.5 11.1-13.5 2-3.6 4.4-8.3 5.6-12.3.5-1.7 1.1-3.3 1.8-4.8 1.1-2.5 2.6-5.1 5.2-5.1 1.3 0 2.4.5 3.2 1.5 1.7 2.2 1.3 4.5.4 6.9-2 5.6-4.7 10.6-6.9 16.7-1.3 3.5-2.7 8-2.7 11.7 0 3.4 3.7 2.6 6.8 1.2 2.4-1.1 4.8-2.8 6.8-4.5 1.2-4.9.9-3.8 26.4-68.2 1.3-3.3 3.7-4.7 6.1-4.7 1.2 0 2.2.4 3.2 1.1 1.7 1.3 1.7 4.1 1 6.2-.7 1.9-.6 1.3-4.5 10.5-5.2 12.1-8.6 20.8-13.2 31.9-1.9 4.6-7.7 18.9-8.7 22.3-.6 2.2-1.3 5.8 1 5.8 5.4 0 19.3-13.1 23.1-17 .2-.3.5-.4.9-.6.6-1.9 1.2-3.7 1.7-5.5 1.4-3.8 2.7-8.2 5.3-11.3.8-1 1.7-1.6 2.7-1.6 2.8 0 4.2 1.2 4.2 4 0 1.1-.7 5.1-1.1 6.2 1.4-1.5 2.9-3 4.5-4.5 15-13.9 25.7-6.8 25.7.2 0 7.4-8.9 17.7-13.8 23.4-1.6 1.9-4.9 5.4-5 6.4 0 1.3.9 1.8 2.2 1.8 2 0 6.4-3.5 8-4.7 5-3.9 11.8-9.9 16.6-14.1l14.8-136.8c-30.5 17.1-197.6 17.2-228.3.2zm229.7-8.5c0 21-231.2 21-231.2 0 0-8.8 51.8-15.9 115.6-15.9 9 0 17.8.1 26.3.4l12.6-48.7L228.1.6c1.4-1.4 5.8-.2 9.9 3.5s6.6 7.9 5.3 9.3l-.1.1L185.9 74l-10 40.7c39.9 2.6 67.6 8.1 67.6 14.6zm-69.4 4.6c0-.8-.9-1.5-2.5-2.1l-.2.8c0 1.3-5 2.4-11.1 2.4s-11.1-1.1-11.1-2.4c0-.1 0-.2.1-.3l.2-.7c-1.8.6-3 1.4-3 2.3 0 2.1 6.2 3.7 13.7 3.7 7.7.1 13.9-1.6 13.9-3.7z"], + "hacker-news": [448, 512, [], "f1d4", "M0 32v448h448V32H0zm21.2 197.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z"], + "hacker-news-square": [448, 512, [], "f3af", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM21.2 229.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z"], + "hips": [640, 512, [], "f452", "M0 80.2c0-1.8.9-2.7 2.7-2.7h40.9c1.9 0 2.8.9 2.8 2.7v81.2c15.2-7.7 31.7-11.5 49.8-11.4 24 .1 44.2 6.2 60.3 18 18.7 13.5 28 31.9 28 55.3v136.1c0 1.9-.9 2.8-2.7 2.8h-27.3c-9.1 0-16.4-7.3-16.4-16.3V223.3c0-.9 2.7-27-45.8-27-48.6 0-45.8 26.2-45.8 27v136.1c0 1.9-.9 2.8-2.8 2.8h-41c-1.8 0-2.7-.9-2.7-2.8V80.2zm497.7 221.5c13.7 10.2 34.1 19.1 58.4 19.1 23.3 0 32.8-4.5 36.5-13.6 3-7.9-.6-16.1-12.2-21.2l-53.6-23.5c-21.4-9.4-33.8-24-37.2-43.6-5.7-33.7 22.2-53.3 22.7-53.7 13.2-9.6 32-15.4 58.5-15.4 19 0 37.4 3.3 55.1 9.9 1.3.5 1.9 1.3 1.9 2.6V207c0 2.1-2.3 3.4-4 2.4-39.7-20.7-76.6-12.3-84-6.8-6.6 4.9-6 12.5 2.6 16.1L600 244c16.5 7.1 28.1 18.4 34.9 34.1 5.5 12.6 6.6 25.6 3.1 39.1-9.6 36.9-44.9 45.5-45.6 45.8-10.5 3.1-23.6 4.3-36.3 4.3-16.6 0-32.6-2.7-48.2-8.2-9.7-3.4-14.6-10.3-14.6-20.7V304c0-2.1 2.3-3.7 4.4-2.3zM376.2 149.8c-31.7 0-104.2 20.1-104.2 103.5v183.5c0 .8.6 2.7 2.7 2.7h40.9c1.9 0 2.8-.9 2.8-2.7V348c16.5 12.7 35.8 19.1 57.7 19.1 60.5 0 108.7-48.5 108.7-108.7.1-60.3-48.2-108.6-108.6-108.6zm0 170.9c-17.2 0-31.9-6.1-44-18.2-12.2-12.2-18.2-26.8-18.2-44 0-34.5 27.6-62.2 62.2-62.2 34.5 0 62.2 27.6 62.2 62.2.1 34.3-27.3 62.2-62.2 62.2zm-124.6 38.7c0 1.9-.9 2.8-2.8 2.8h-40.9c-1.6 0-2.7-1.4-2.7-2.8V157.6c0-1.4 1.1-2.8 2.7-2.8h40.9c1.9 0 2.8.9 2.8 2.8v201.8M228.3 72.5c15.9 0 28.9 12.7 28.9 28.9 0 15.8-12.7 28.9-28.9 28.9s-28.9-13.3-28.9-28.9c.1-16 13-28.9 28.9-28.9"], + "hire-a-helper": [512, 512, [], "f3b0", "M443.1 0H71.9C67.9 37.3 37.4 67.8 0 71.7v371.5c37.4 4.9 66 32.4 71.9 68.8h372.2c3-36.4 32.5-65.8 67.9-69.8V71.7c-36.4-5.9-65-35.3-68.9-71.7zm-37 404.9c-36.3 0-18.8-2-55.1-2-35.8 0-21 2-56.1 2-5.9 0-4.9-8.2 0-9.8 22.8-7.6 22.9-10.2 24.6-12.8 10.4-15.6 5.9-83 5.9-113 0-5.3-6.4-12.8-13.8-12.8H200.4c-7.4 0-13.8 7.5-13.8 12.8 0 30-4.5 97.4 5.9 113 1.7 2.5 1.8 5.2 24.6 12.8 4.9 1.6 6 9.8 0 9.8-35.1 0-20.3-2-56.1-2-36.3 0-18.8 2-55.1 2-7.9 0-5.8-10.8 0-10.8 10.2-3.4 13.5-3.5 21.7-13.8 7.7-12.9 7.9-44.4 7.9-127.8V151.3c0-22.2-12.2-28.3-28.6-32.4-8.8-2.2-4-11.8 1-11.8 36.5 0 20.6 2 57.1 2 32.7 0 16.5-2 49.2-2 3.3 0 8.5 8.3 1 10.8-4.9 1.6-27.6 3.7-27.6 39.3 0 45.6-.2 55.8 1 68.8 0 1.3 2.3 12.8 12.8 12.8h109.2c10.5 0 12.8-11.5 12.8-12.8 1.2-13 1-23.2 1-68.8 0-35.6-22.7-37.7-27.6-39.3-7.5-2.5-2.3-10.8 1-10.8 32.7 0 16.5 2 49.2 2 36.5 0 20.6-2 57.1-2 4.9 0 9.9 9.6 1 11.8-16.4 4.1-28.6 10.3-28.6 32.4v101.2c0 83.4.1 114.9 7.9 127.8 8.2 10.2 11.4 10.4 21.7 13.8 5.8 0 7.8 10.8 0 10.8z"], + "hooli": [640, 512, [], "f427", "M508.4 352h57.9V156.7L508.4 184v168zm73.7-110.5V352H640V241.5h-57.9zm-250.7-8.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.2-1.1-50.4 17.1c-1.9 1.9-3.7 3.9-5.3 6-38.2-29.6-72.5-46.5-102.1-61.1v-20.7l-22.5 10.6c-54.4-22.1-89-18.2-97.3.1 0 0-24.9 32.8 61.9 110.9v-31c-48.8-54.6-39-76.1-35.3-79.2 13.5-11.4 37.5-8 64.4 2.1L65.2 184v63.3c13.1 14.7 30.5 31.5 53.5 50.4l4.5 3.6v-29.8c0-6.9 1.7-18.2 10.8-18.2s10.6 6.9 10.6 15V317c18 12.2 37.3 22.1 57.7 29.6v-93.9c0-18.7-13.4-37.4-40.6-37.4-15.8-.1-30.5 8.2-38.5 21.9v-54.3c41.9 20.9 83.9 46.5 99.9 58.3-10.2 14.6-9.3 28.1-9.3 43.7 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.7-33.8 16.7-52.5 0-18.5 1.5-34.2-16.7-52.3zm-39.7 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm185.7-71.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.3-1.1-50.4 17.1c-18.2 18.2-16.8 33.9-16.8 52.6 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.8-33.8 16.8-52.5-.1-18.8 1.3-34.5-16.8-52.6zm-39.8 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm173.5-73c15.9 0 28.9-12.9 28.9-28.9s-12.9-24.5-28.9-24.5c-15.9 0-28.9 8.6-28.9 24.5s12.9 28.9 28.9 28.9zM144.5 352l38.3.8c-13.2-4.6-26-10.2-38.3-16.8v16zm-21.4 0v-28.6c-6.5-4.2-13-8.7-19.4-13.6-14.8-11.2-27.5-21.7-38.5-31.5V352h57.9zm59.7.8c36.5 12.5 69.9 14.2 94.7 7.2-19.9.2-45.8-2.6-75.3-13.3v5.3l-19.4.8z"], + "hornbill": [509, 512, [], "f592", "M75.37 370.3c2.14 15.83-5.77 31.98-20.94 39.29-18.85 9.1-41.55 1.17-50.68-17.68-9.08-18.83-1.13-41.58 17.7-50.65 7.05-3.4 14.63-4.42 21.85-3.38-78.28-111.35 52-190.53 52-190.53-5.86 43.04-8.24 91.16-8.24 91.16-67.31 41.45.92 64.06 39.81 72.87 19.77 53.62 71.18 91.94 131.66 91.94 1.92 0 3.77-.21 5.67-.28l.11 18.86c-99.22 1.39-158.7-29.14-188.94-51.6zM183.38 42.6c.89-7-.1-14.33-3.39-21.15-9.1-18.84-31.82-26.78-50.66-17.69-18.86 9.1-26.8 31.83-17.69 50.68 6.98 14.47 22.02 22.42 37.18 21.23-22.55 29.91-53.83 89.57-52.42 190.03l21.84-.15c-.02-.9-.14-1.77-.14-2.68 0-58.95 36.37-109.33 87.85-130.16 8.01-37.75 30.74-114.3 73.84-44.29 0 0 48.14 2.38 91.18 8.24 0-.01-77.84-128.03-187.59-54.06zm304.18 134.17c18.84-9.09 26.81-31.81 17.7-50.65-9.1-18.85-31.83-26.77-50.67-17.69-15.27 7.37-23.19 23.69-20.87 39.64-31.71-21.94-89.84-49.05-183.45-47.74l.14 22.5c2.7-.15 5.39-.41 8.14-.41 59.3 0 109.9 36.8 130.49 88.76 39.1 9.02 105.06 31.58 38.46 72.54 0 0-2.34 48.13-8.21 91.16 0 0 133.45-81.16 48.96-194.61 6.43.5 13.07-.49 19.31-3.5zM373.05 436.24c21.43-32.46 46.42-89.69 45.14-179.66l-19.52.14c.08 2.06.3 4.07.3 6.15 0 60.27-38.05 111.55-91.39 131.45-8.85 38.95-31.44 106.66-72.77 39.49 0 0-48.12-2.34-91.19-8.22 0 0 79.92 131.34 191.9 50.97.31 4.72 1.45 9.45 3.64 13.97 9.06 18.89 31.8 26.78 50.64 17.71 18.86-9.1 26.79-31.83 17.7-50.65-6.56-13.62-20.26-21.43-34.45-21.35z"], + "hotjar": [448, 512, [], "f3b1", "M414.9 161.5C340.2 29 121.1 0 121.1 0S222.2 110.4 93 197.7C11.3 252.8-21 324.4 14 402.6c26.8 59.9 83.5 84.3 144.6 93.4-29.2-55.1-6.6-122.4-4.1-129.6 57.1 86.4 165 0 110.8-93.9 71 15.4 81.6 138.6 27.1 215.5 80.5-25.3 134.1-88.9 148.8-145.6 15.5-59.3 3.7-127.9-26.3-180.9z"], + "houzz": [414, 512, [], "f27c", "M258.9 330.7H154.3V480H0V32h109.5v104.5l305.1 85.6V480H258.9V330.7z"], + "html5": [384, 512, [], "f13b", "M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z"], + "hubspot": [512, 512, [], "f3b2", "M267.4 211.6c-25.1 23.7-40.8 57.3-40.8 94.6 0 29.3 9.7 56.3 26 78L203.1 434c-4.4-1.6-9.1-2.5-14-2.5-10.8 0-20.9 4.2-28.5 11.8-7.6 7.6-11.8 17.8-11.8 28.6s4.2 20.9 11.8 28.5c7.6 7.6 17.8 11.6 28.5 11.6 10.8 0 20.9-3.9 28.6-11.6 7.6-7.6 11.8-17.8 11.8-28.5 0-4.2-.6-8.2-1.9-12.1l50-50.2c22 16.9 49.4 26.9 79.3 26.9 71.9 0 130-58.3 130-130.2 0-65.2-47.7-119.2-110.2-128.7V116c17.5-7.4 28.2-23.8 28.2-42.9 0-26.1-20.9-47.9-47-47.9S311.2 47 311.2 73.1c0 19.1 10.7 35.5 28.2 42.9v61.2c-15.2 2.1-29.6 6.7-42.7 13.6-27.6-20.9-117.5-85.7-168.9-124.8 1.2-4.4 2-9 2-13.8C129.8 23.4 106.3 0 77.4 0 48.6 0 25.2 23.4 25.2 52.2c0 28.9 23.4 52.3 52.2 52.3 9.8 0 18.9-2.9 26.8-7.6l163.2 114.7zm89.5 163.6c-38.1 0-69-30.9-69-69s30.9-69 69-69 69 30.9 69 69-30.9 69-69 69z"], + "imdb": [448, 512, [], "f2d8", "M350.5 288.7c0 5.4 1.6 14.4-6.2 14.4-1.6 0-3-.8-3.8-2.4-2.2-5.1-1.1-44.1-1.1-44.7 0-3.8-1.1-12.7 4.9-12.7 7.3 0 6.2 7.3 6.2 12.7v32.7zM265 229.9c0-9.7 1.6-16-10.3-16v83.7c12.2.3 10.3-8.7 10.3-18.4v-49.3zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM21.3 228.8c-.1.1-.2.3-.3.4h.3v-.4zM97 192H64v127.8h33V192zm113.3 0h-43.1l-7.6 59.9c-2.7-20-5.4-40.1-8.7-59.9h-42.8v127.8h29v-84.5l12.2 84.5h20.6l11.6-86.4v86.4h28.7V192zm86.3 45.3c0-8.1.3-16.8-1.4-24.4-4.3-22.5-31.4-20.9-49-20.9h-24.6v127.8c86.1.1 75 6 75-82.5zm85.9 17.3c0-17.3-.8-30.1-22.2-30.1-8.9 0-14.9 2.7-20.9 9.2V192h-31.7v127.8h29.8l1.9-8.1c5.7 6.8 11.9 9.8 20.9 9.8 19.8 0 22.2-15.2 22.2-30.9v-36z"], + "instagram": [448, 512, [], "f16d", "M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"], + "internet-explorer": [512, 512, [], "f26b", "M483.049 159.706c10.855-24.575 21.424-60.438 21.424-87.871 0-72.722-79.641-98.371-209.673-38.577-107.632-7.181-211.221 73.67-237.098 186.457 30.852-34.862 78.271-82.298 121.977-101.158C125.404 166.85 79.128 228.002 43.992 291.725 23.246 329.651 0 390.94 0 436.747c0 98.575 92.854 86.5 180.251 42.006 31.423 15.43 66.559 15.573 101.695 15.573 97.124 0 184.249-54.294 216.814-146.022H377.927c-52.509 88.593-196.819 52.996-196.819-47.436H509.9c6.407-43.581-1.655-95.715-26.851-141.162zM64.559 346.877c17.711 51.15 53.703 95.871 100.266 123.304-88.741 48.94-173.267 29.096-100.266-123.304zm115.977-108.873c2-55.151 50.276-94.871 103.98-94.871 53.418 0 101.981 39.72 103.981 94.871H180.536zm184.536-187.6c21.425-10.287 48.563-22.003 72.558-22.003 31.422 0 54.274 21.717 54.274 53.722 0 20.003-7.427 49.007-14.569 67.867-26.28-42.292-65.986-81.584-112.263-99.586z"], + "ioxhost": [640, 512, [], "f208", "M616 160h-67.3C511.2 70.7 422.9 8 320 8 183 8 72 119 72 256c0 16.4 1.6 32.5 4.7 48H24c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h67.3c37.5 89.3 125.8 152 228.7 152 137 0 248-111 248-248 0-16.4-1.6-32.5-4.7-48H616c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24zm-96 96c0 110.5-89.5 200-200 200-75.7 0-141.6-42-175.5-104H424c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24H125.8c-3.8-15.4-5.8-31.4-5.8-48 0-110.5 89.5-200 200-200 75.7 0 141.6 42 175.5 104H216c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h298.2c3.8 15.4 5.8 31.4 5.8 48zm-304-24h208c13.3 0 24 10.7 24 24 0 13.2-10.7 24-24 24H216c-13.3 0-24-10.7-24-24 0-13.2 10.7-24 24-24z"], + "itunes": [448, 512, [], "f3b4", "M223.6 80.3C129 80.3 52.5 157 52.5 251.5S129 422.8 223.6 422.8s171.2-76.7 171.2-171.2c0-94.6-76.7-171.3-171.2-171.3zm79.4 240c-3.2 13.6-13.5 21.2-27.3 23.8-12.1 2.2-22.2 2.8-31.9-5-11.8-10-12-26.4-1.4-36.8 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 3.2-3.6 2.2-2 2.2-80.8 0-5.6-2.7-7.1-8.4-6.1-4 .7-91.9 17.1-91.9 17.1-5 1.1-6.7 2.6-6.7 8.3 0 116.1.5 110.8-1.2 118.5-2.1 9-7.6 15.8-14.9 19.6-8.3 4.6-23.4 6.6-31.4 5.2-21.4-4-28.9-28.7-14.4-42.9 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 5-5.7.9-127 2.6-133.7.4-2.6 1.5-4.8 3.5-6.4 2.1-1.7 5.8-2.7 6.7-2.7 101-19 113.3-21.4 115.1-21.4 5.7-.4 9 3 9 8.7-.1 170.6.4 161.4-1 167.6zM345.2 32H102.8C45.9 32 0 77.9 0 134.8v242.4C0 434.1 45.9 480 102.8 480h242.4c57 0 102.8-45.9 102.8-102.8V134.8C448 77.9 402.1 32 345.2 32zM223.6 444c-106.3 0-192.5-86.2-192.5-192.5S117.3 59 223.6 59s192.5 86.2 192.5 192.5S329.9 444 223.6 444z"], + "itunes-note": [384, 512, [], "f3b5", "M381.9 388.2c-6.4 27.4-27.2 42.8-55.1 48-24.5 4.5-44.9 5.6-64.5-10.2-23.9-20.1-24.2-53.4-2.7-74.4 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 6.4-7.2 4.4-4.1 4.4-163.2 0-11.2-5.5-14.3-17-12.3-8.2 1.4-185.7 34.6-185.7 34.6-10.2 2.2-13.4 5.2-13.4 16.7 0 234.7 1.1 223.9-2.5 239.5-4.2 18.2-15.4 31.9-30.2 39.5-16.8 9.3-47.2 13.4-63.4 10.4-43.2-8.1-58.4-58-29.1-86.6 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 10.1-11.5 1.8-256.6 5.2-270.2.8-5.2 3-9.6 7.1-12.9 4.2-3.5 11.8-5.5 13.4-5.5 204-38.2 228.9-43.1 232.4-43.1 11.5-.8 18.1 6 18.1 17.6.2 344.5 1.1 326-1.8 338.5z"], + "java": [377, 512, [], "f4e4", "M121.6 396s-19.6 11.4 13.9 15.2c40.6 4.6 61.3 4 106-4.5 0 0 11.8 7.4 28.2 13.8C169.5 463.4 42.9 418 121.6 396m-12.2-56.1s-21.9 16.2 11.6 19.7c43.3 4.5 77.6 4.8 136.8-6.6 0 0 8.2 8.3 21.1 12.8-121.3 35.5-256.3 2.9-169.5-25.9m103.2-95.1c24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3.1 0-175.2 43.8-91.5 140.2m132.6 192.6s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6.7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2 204.2 33.2 372.4-14.9 319.4-38.8M131 281.8s-93.1 22.1-33 30.1c25.4 3.4 76 2.6 123.1-1.3 38.5-3.2 77.2-10.2 77.2-10.2s-13.6 5.8-23.4 12.5c-94.5 24.9-277 13.3-224.5-12.1 44.5-21.4 80.6-19 80.6-19m167 93.3c96.1-49.9 51.6-97.9 20.6-91.4-7.6 1.6-11 3-11 3s2.8-4.4 8.2-6.3c61.3-21.6 108.5 63.6-19.8 97.3 0-.1 1.5-1.4 2-2.6M240 0s53.2 53.2-50.5 135c-83.1 65.6-19 103.1 0 145.8-48.5-43.8-84.1-82.3-60.2-118.2C164.4 110.1 261.5 84.5 240 0m-99.5 510.4c92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6"], + "jedi-order": [448, 512, [], "f50e", "M231.89 335.72l31.44-45.89-20.18 55.5 62.56 9.09-62.56 9.08 24.22 47.43s-30.22-31.77-34.49-36.25c1.76 68.78 2.19 85.7 2.19 85.7s154.4-71.65 68.62-230.09c0 0 106.97-118.07 10.09-190.73 0 0 165.5 99.91 60.55 271.46 0 0 86.78-84.77 41.37-170.54 0 0 78.71 111.01-17.16 233.11 0 0 26.24-16.15 49.45-77.71 0 0-16.93 183.26-221.96 185.66v.02h-4.08v-.02C16.93 479.14 0 295.88 0 295.88c23.21 61.56 49.44 77.71 49.44 77.71-95.87-122.11-17.15-233.11-17.15-233.11-45.41 85.78 41.38 170.54 41.38 170.54-104.95-171.56 60.54-271.46 60.54-271.46-96.88 72.66 10.09 190.73 10.09 190.73-85.78 158.44 68.62 230.09 68.62 230.09s.43-16.93 2.19-85.7l-34.48 36.25 24.22-47.43-62.56-9.08 62.56-9.09-20.18-55.5 31.44 45.89c2.25-87.85 7.82-305.82 7.85-306.85l.01-2.43.02 1 .03-1 .01 2.43c.05 1.72 5.61 219.2 7.86 306.85z"], + "jenkins": [512, 512, [], "f3b6", "M487.1 425c-1.4-11.2-19-23.1-28.2-31.9-5.1-5-29-23.1-30.4-29.9-1.4-6.6 9.7-21.5 13.3-28.9 5.1-10.7 8.8-23.7 11.3-32.6 18.8-66.1 20.7-156.9-6.2-211.2-10.2-20.6-38.6-49-56.4-62.5-42-31.7-119.6-35.3-170.1-16.6-14.1 5.2-27.8 9.8-40.1 17.1-33.1 19.4-68.3 32.5-78.1 71.6-24.2 10.8-31.5 41.8-30.3 77.8.2 7 4.1 15.8 2.7 22.4-.7 3.3-5.2 7.6-6.1 9.8-11.6 27.7-2.3 64 11.1 83.7 8.1 11.9 21.5 22.4 39.2 25.2.7 10.6 3.3 19.7 8.2 30.4 3.1 6.8 14.7 19 10.4 27.7-2.2 4.4-21 13.8-27.3 17.6C89 407.2 73.7 415 54.2 429c-12.6 9-32.3 10.2-29.2 31.1 2.1 14.1 10.1 31.6 14.7 45.8.7 2 1.4 4.1 2.1 6h422c4.9-15.3 9.7-30.9 14.6-47.2 3.4-11.4 10.2-27.8 8.7-39.7zM205.9 33.7c1.8-.5 3.4.7 4.9 2.4-.2 5.2-5.4 5.1-8.9 6.8-5.4 6.7-13.4 9.8-20 17.2-6.8 7.5-14.4 27.7-23.4 30-4.5 1.1-9.7-.8-13.6-.5-10.4.7-17.7 6-28.3 7.5 13.6-29.9 56.1-54 89.3-63.4zm-104.8 93.6c13.5-14.9 32.1-24.1 54.8-25.9 11.7 29.7-8.4 65-.9 97.6 2.3 9.9 10.2 25.4-2.4 25.7.3-28.3-34.8-46.3-61.3-29.6-1.8-21.5-4.9-51.7 9.8-67.8zm36.7 200.2c-1-4.1-2.7-12.9-2.3-15.1 1.6-8.7 17.1-12.5 11-24.7-11.3-.1-13.8 10.2-24.1 11.3-26.7 2.6-45.6-35.4-44.4-58.4 1-19.5 17.6-38.2 40.1-35.8 16 1.8 21.4 19.2 24.5 34.7 9.2.5 22.5-.4 26.9-7.6-.6-17.5-8.8-31.6-8.2-47.7 1-30.3 17.5-57.6 4.8-87.4 13.6-30.9 53.5-55.3 83.1-70 36.6-18.3 94.9-3.7 129.3 15.8 19.7 11.1 34.4 32.7 48.3 50.7-19.5-5.8-36.1 4.2-33.1 20.3 16.3-14.9 44.2-.2 52.5 16.4 7.9 15.8 7.8 39.3 9 62.8 2.9 57-10.4 115.9-39.1 157.1-7.7 11-14.1 23-24.9 30.6-26 18.2-65.4 34.7-99.2 23.4-44.7-15-65-44.8-89.5-78.8.7 18.7 13.8 34.1 26.8 48.4 11.3 12.5 25 26.6 39.7 32.4-12.3-2.9-31.1-3.8-36.2 7.2-28.6-1.9-55.1-4.8-68.7-24.2-10.6-15.4-21.4-41.4-26.3-61.4zm222 124.1c4.1-3 11.1-2.9 17.4-3.6-5.4-2.7-13-3.7-19.3-2.2-.1-4.2-2-6.8-3.2-10.2 10.6-3.8 35.5-28.5 49.6-20.3 6.7 3.9 9.5 26.2 10.1 37 .4 9-.8 18-4.5 22.8-18.8-.6-35.8-2.8-50.7-7 .9-6.1-1-12.1.6-16.5zm-17.2-20c-16.8.8-26-1.2-38.3-10.8.2-.8 1.4-.5 1.5-1.4 18 8 40.8-3.3 59-4.9-7.9 5.1-14.6 11.6-22.2 17.1zm-12.1 33.2c-1.6-9.4-3.5-12-2.8-20.2 25-16.6 29.7 28.6 2.8 20.2zM226 438.6c-11.6-.7-48.1-14-38.5-23.7 9.4 6.5 27.5 4.9 41.3 7.3.8 4.4-2.8 10.2-2.8 16.4zM57.7 497.1c-4.3-12.7-9.2-25.1-14.8-36.9 30.8-23.8 65.3-48.9 102.2-63.5 2.8-1.1 23.2 25.4 26.2 27.6 16.5 11.7 37 21 56.2 30.2 1.2 8.8 3.9 20.2 8.7 35.5.7 2.3 1.4 4.7 2.2 7.2H57.7zm240.6 5.7h-.8c.3-.2.5-.4.8-.5v.5zm7.5-5.7c2.1-1.4 4.3-2.8 6.4-4.3 1.1 1.4 2.2 2.8 3.2 4.3h-9.6zm15.1-24.7c-10.8 7.3-20.6 18.3-33.3 25.2-6 3.3-27 11.7-33.4 10.2-3.6-.8-3.9-5.3-5.4-9.5-3.1-9-10.1-23.4-10.8-37-.8-17.2-2.5-46 16-42.4 14.9 2.9 32.3 9.7 43.9 16.1 7.1 3.9 11.1 8.6 21.9 9.5-.1 1.4-.1 2.8-.2 4.3-5.9 3.9-15.3 3.8-21.8 7.1 9.5.4 17 2.7 23.5 5.9-.1 3.4-.3 7-.4 10.6zm53.4 24.7h-14c-.1-3.2-2.8-5.8-6.1-5.8s-5.9 2.6-6.1 5.8h-17.4c-2.8-4.4-5.7-8.6-8.9-12.5 2.1-2.2 4-4.7 6-6.9 9 3.7 14.8-4.9 21.7-4.2 7.9.8 14.2 11.7 25.4 11l-.6 12.6zm8.7 0c.2-4 .4-7.8.6-11.5 15.6-7.3 29 1.3 35.7 11.5H383zm83.4-37c-2.3 11.2-5.8 24-9.9 37.1-.2-.1-.4-.1-.6-.1H428c.6-1.1 1.2-2.2 1.9-3.3-2.6-6.1-9-8.7-10.9-15.5 12.1-22.7 6.5-93.4-24.2-78.5 4.3-6.3 15.6-11.5 20.8-19.3 13 10.4 20.8 20.3 33.2 31.4 6.8 6 20 13.3 21.4 23.1.8 5.5-2.6 18.9-3.8 25.1zM222.2 130.5c5.4-14.9 27.2-34.7 45-32 7.7 1.2 18 8.2 12.2 17.7-30.2-7-45.2 12.6-54.4 33.1-8.1-2-4.9-13.1-2.8-18.8zm184.1 63.1c8.2-3.6 22.4-.7 29.6-5.3-4.2-11.5-10.3-21.4-9.3-37.7.5 0 1 0 1.4.1 6.8 14.2 12.7 29.2 21.4 41.7-5.7 13.5-43.6 25.4-43.1 1.2zm20.4-43zm-117.2 45.7c-6.8-10.9-19-32.5-14.5-45.3 6.5 11.9 8.6 24.4 17.8 33.3 4.1 4 12.2 9 8.2 20.2-.9 2.7-7.8 8.6-11.7 9.7-14.4 4.3-47.9.9-36.6-17.1 11.9.7 27.9 7.8 36.8-.8zm27.3 70c3.8 6.6 1.4 18.7 12.1 20.6 20.2 3.4 43.6-12.3 58.1-17.8 9-15.2-.8-20.7-8.9-30.5-16.6-20-38.8-44.8-38-74.7 6.7-4.9 7.3 7.4 8.2 9.7 8.7 20.3 30.4 46.2 46.3 63.5 3.9 4.3 10.3 8.4 11 11.2 2.1 8.2-5.4 18-4.5 23.5-21.7 13.9-45.8 29.1-81.4 25.6-7.4-6.7-10.3-21.4-2.9-31.1zm-201.3-9.2c-6.8-3.9-8.4-21-16.4-21.4-11.4-.7-9.3 22.2-9.3 35.5-7.8-7.1-9.2-29.1-3.5-40.3-6.6-3.2-9.5 3.6-13.1 5.9 4.7-34.1 49.8-15.8 42.3 20.3zm299.6 28.8c-10.1 19.2-24.4 40.4-54 41-.6-6.2-1.1-15.6 0-19.4 22.7-2.2 36.6-13.7 54-21.6zm-141.9 12.4c18.9 9.9 53.6 11 79.3 10.2 1.4 5.6 1.3 12.6 1.4 19.4-33 1.8-72-6.4-80.7-29.6zm92.2 46.7c-1.7 4.3-5.3 9.3-9.8 11.1-12.1 4.9-45.6 8.7-62.4-.3-10.7-5.7-17.5-18.5-23.4-26-2.8-3.6-16.9-12.9-.2-12.9 13.1 32.7 58 29 95.8 28.1z"], + "joget": [496, 512, [], "f3b7", "M227.5 468.7c-9-13.6-19.9-33.3-23.7-42.4-5.7-13.7-27.2-45.6 31.2-67.1 51.7-19.1 176.7-16.5 208.8-17.6-4 9-8.6 17.9-13.9 26.6-40.4 65.5-110.4 101.5-182 101.5-6.8 0-13.6-.4-20.4-1M66.1 143.9C128 43.4 259.6 12.2 360.1 74.1c74.8 46.1 111.2 130.9 99.3 212.7-24.9-.5-179.3-3.6-230.3-4.9-55.5-1.4-81.7-20.8-58.5-48.2 23.2-27.4 51.1-40.7 68.9-51.2 17.9-10.5 27.3-33.7-23.6-29.7C87.3 161.5 48.6 252.1 37.6 293c-8.8-49.7-.1-102.7 28.5-149.1m-29.2-18c-71.9 116.6-35.6 269.3 81 341.2 116.6 71.9 269.3 35.6 341.2-80.9 71.9-116.6 35.6-269.4-81-341.2-40.5-25.1-85.5-37-129.9-37C165 8 83.8 49.9 36.9 125.9m244.4 110.4c-31.5 20.5-65.3 31.3-65.3 31.3l169.5-1.6 46.5-23.4s3.6-9.5-19.1-15.5c-22.7-6-57 11.3-86.7 27.2-29.7 15.8-31.1 8.2-31.1 8.2s40.2-28.1 50.7-34.5c10.5-6.4 31.9-14 13.4-24.6-3.2-1.8-6.7-2.7-10.4-2.7-17.8 0-41.5 18.7-67.5 35.6"], + "joomla": [448, 512, [], "f1aa", "M.6 92.1C.6 58.8 27.4 32 60.4 32c30 0 54.5 21.9 59.2 50.2 32.6-7.6 67.1.6 96.5 30l-44.3 44.3c-20.5-20.5-42.6-16.3-55.4-3.5-14.3 14.3-14.3 37.9 0 52.2l99.5 99.5-44 44.3c-87.7-87.2-49.7-49.7-99.8-99.7-26.8-26.5-35-64.8-24.8-98.9C20.4 144.6.6 120.7.6 92.1zm129.5 116.4l44.3 44.3c10-10 89.7-89.7 99.7-99.8 14.3-14.3 37.6-14.3 51.9 0 12.8 12.8 17 35-3.5 55.4l44 44.3c31.2-31.2 38.5-67.6 28.9-101.2 29.2-4.1 51.9-29.2 51.9-59.5 0-33.2-26.8-60.1-59.8-60.1-30.3 0-55.4 22.5-59.5 51.6-33.8-9.9-71.7-1.5-98.3 25.1-18.3 19.1-71.1 71.5-99.6 99.9zm266.3 152.2c8.2-32.7-.9-68.5-26.3-93.9-11.8-12.2 5 4.7-99.5-99.7l-44.3 44.3 99.7 99.7c14.3 14.3 14.3 37.6 0 51.9-12.8 12.8-35 17-55.4-3.5l-44 44.3c27.6 30.2 68 38.8 102.7 28 5.5 27.4 29.7 48.1 58.9 48.1 33 0 59.8-26.8 59.8-60.1 0-30.2-22.5-55-51.6-59.1zm-84.3-53.1l-44-44.3c-87 86.4-50.4 50.4-99.7 99.8-14.3 14.3-37.6 14.3-51.9 0-13.1-13.4-16.9-35.3 3.2-55.4l-44-44.3c-30.2 30.2-38 65.2-29.5 98.3-26.7 6-46.2 29.9-46.2 58.2C0 453.2 26.8 480 59.8 480c28.6 0 52.5-19.8 58.6-46.7 32.7 8.2 68.5-.6 94.2-26 32.1-32 12.2-12.4 99.5-99.7z"], + "js": [448, 512, [], "f3b8", "M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"], + "js-square": [448, 512, [], "f3b9", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM243.8 381.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"], + "jsfiddle": [576, 512, [], "f1cc", "M510.634 237.462c-4.727-2.621-5.664-5.748-6.381-10.776-2.352-16.488-3.539-33.619-9.097-49.095-35.895-99.957-153.99-143.386-246.849-91.646-27.37 15.25-48.971 36.369-65.493 63.903-3.184-1.508-5.458-2.71-7.824-3.686-30.102-12.421-59.049-10.121-85.331 9.167-25.531 18.737-36.422 44.548-32.676 76.408.355 3.025-1.967 7.621-4.514 9.545-39.712 29.992-56.031 78.065-41.902 124.615 13.831 45.569 57.514 79.796 105.608 81.433 30.291 1.031 60.637.546 90.959.539 84.041-.021 168.09.531 252.12-.48 52.664-.634 96.108-36.873 108.212-87.293 11.54-48.074-11.144-97.3-56.832-122.634zm21.107 156.88c-18.23 22.432-42.343 35.253-71.28 35.65-56.874.781-113.767.23-170.652.23 0 .7-163.028.159-163.728.154-43.861-.332-76.739-19.766-95.175-59.995-18.902-41.245-4.004-90.848 34.186-116.106 9.182-6.073 12.505-11.566 10.096-23.136-5.49-26.361 4.453-47.956 26.42-62.981 22.987-15.723 47.422-16.146 72.034-3.083 10.269 5.45 14.607 11.564 22.198-2.527 14.222-26.399 34.557-46.727 60.671-61.294 97.46-54.366 228.37 7.568 230.24 132.697.122 8.15 2.412 12.428 9.848 15.894 57.56 26.829 74.456 96.122 35.142 144.497zm-87.789-80.499c-5.848 31.157-34.622 55.096-66.666 55.095-16.953-.001-32.058-6.545-44.079-17.705-27.697-25.713-71.141-74.98-95.937-93.387-20.056-14.888-41.99-12.333-60.272 3.782-49.996 44.071 15.859 121.775 67.063 77.188 4.548-3.96 7.84-9.543 12.744-12.844 8.184-5.509 20.766-.884 13.168 10.622-17.358 26.284-49.33 38.197-78.863 29.301-28.897-8.704-48.84-35.968-48.626-70.179 1.225-22.485 12.364-43.06 35.414-55.965 22.575-12.638 46.369-13.146 66.991 2.474C295.68 280.7 320.467 323.97 352.185 343.47c24.558 15.099 54.254 7.363 68.823-17.506 28.83-49.209-34.592-105.016-78.868-63.46-3.989 3.744-6.917 8.932-11.41 11.72-10.975 6.811-17.333-4.113-12.809-10.353 20.703-28.554 50.464-40.44 83.271-28.214 31.429 11.714 49.108 44.366 42.76 78.186z"], + "keybase": [412, 512, [], "f4f5", "M177.2 430.9c0 9.8-8 17.8-17.8 17.8s-17.8-8-17.8-17.8 8-17.8 17.8-17.8c9.8-.1 17.8 7.9 17.8 17.8zM270 413c-9.8 0-17.8 8-17.8 17.8s8 17.8 17.8 17.8 17.8-8 17.8-17.8-8-17.8-17.8-17.8zm142.3-36c0 38.9-7.6 73.9-22.2 103h-27.3c23.5-38.7 30.5-94.8 22.4-134.3-16.1 29.5-52.1 38.6-85.9 28.8-127.8-37.5-192.5 19.7-234.6 50.3l18.9-59.3-39.9 42.3c4.8 26.7 15.7 51.3 31.2 72.3H46.1c-9.7-15.8-17.2-33-22.2-51.3L.1 454c0-74.9-5.5-147.6 61.5-215.2 20.2-20.4 43.7-36.2 69.1-46.7-6.8-13.5-9.5-29.2-7.8-46l-19.9-1.2c-17.9-1.1-31.6-16.5-30.6-34.4v-.1L74 84.2c1.1-17.1 15.4-30.6 32.5-30.6 1.3 0-.3-.1 28.2 1.7 13.9.8 21.5 9.8 22.8 11.4 7.1-10.4 14.5-20.5 24.6-34.5l20.6 12.1c-13.6 29-9.1 36.2-9 36.3 3.9 0 13.9-.5 32.4 5.7C246 92.9 262 107 271 126c.4.9 15.5 29 1.2 62.6 19 6.1 51.3 19.9 82.4 51.8 36.6 37.6 57.7 87.4 57.7 136.6zM128 122.3c3.2-10 7.7-19.7 13.1-29.4.1-2 2.2-13.1-7.8-13.8-28.5-1.8-26.3-1.6-26.7-1.6-4.6 0-8.3 3.5-8.6 8.1l-1.6 26.2c-.3 4.7 3.4 8.8 8.1 9.1l23.5 1.4zm25.8 61.8c5.6 9.4 14.1 16.1 22.3 20 0-21.2 28.5-41.9 52.8-17.5l8.4 10.3c20.8-18.8 19.4-45.3 12.1-60.9-13.8-29.1-46.9-32-54.3-31.7-10.3.4-19.7-5.4-23.7-15.3-13.7 21.2-37.2 62.5-17.6 95.1zm82.9 68.4L217 268.6c-1.9 1.6-2.2 4.4-.6 6.3l8.9 10.9c1 1.2 3.8 2.7 6.3.6l19.6-16 5.5 6.8c4.9 6 13.8-1.4 9-7.3-63.6-78.3-41.5-51.1-55.3-68.1-4.7-6-13.9 1.4-9 7.3 1.9 2.3 18.4 22.6 19.8 24.3l-9.6 7.9c-4.6 3.8 2.6 13.3 7.4 9.4l9.7-8 8 9.8zm118.4 25.7c-16.9-23.7-42.6-46.7-73.4-60.4-7.9-3.5-15-6.1-22.9-8.6-2 2.2-4.1 4.3-6.4 6.2l31.9 39.2c10.4 12.7 8.5 31.5-4.2 41.9-1.3 1.1-13.1 10.7-29 4.9-2.9 2.3-10.1 9.9-22.2 9.9-8.6 0-16.6-3.8-22.1-10.5l-8.9-10.9c-6.3-7.8-7.9-17.9-5-26.8-8.2-9.9-8.3-21.3-4.6-30-7.2-1.3-26.7-6.2-42.7-21.4-55.8 20.7-88 64.4-101.3 91.2-14.9 30.2-18.8 60.9-19.9 90.2 8.2-8.7-3.9 4.1 114-120.9l-29.9 93.6c57.8-31.1 124-36 197.4-14.4 23.6 6.9 45.1 1.6 56-13.9 11.1-15.6 8.5-37.7-6.8-59.3zM110.6 107.3l15.6 1 1-15.6-15.6-1-1 15.6z"], + "keycdn": [512, 512, [], "f3ba", "M63.8 409.3l60.5-59c32.1 42.8 71.1 66 126.6 67.4 30.5.7 60.3-7 86.4-22.4 5.1 5.3 18.5 19.5 20.9 22-32.2 20.7-69.6 31.1-108.1 30.2-43.3-1.1-84.6-16.7-117.7-44.4.3-.6-38.2 37.5-38.6 37.9 9.5 29.8-13.1 62.4-46.3 62.4C20.7 503.3 0 481.7 0 454.9c0-34.3 33.1-56.6 63.8-45.6zm354.9-252.4c19.1 31.3 29.6 67.4 28.7 104-1.1 44.8-19 87.5-48.6 121 .3.3 23.8 25.2 24.1 25.5 9.6-1.3 19.2 2 25.9 9.1 11.3 12 10.9 30.9-1.1 42.4-12 11.3-30.9 10.9-42.4-1.1-6.7-7-9.4-16.8-7.6-26.3-24.9-26.6-44.4-47.2-44.4-47.2 42.7-34.1 63.3-79.6 64.4-124.2.7-28.9-7.2-57.2-21.1-82.2l22.1-21zM104 53.1c6.7 7 9.4 16.8 7.6 26.3l45.9 48.1c-4.7 3.8-13.3 10.4-22.8 21.3-25.4 28.5-39.6 64.8-40.7 102.9-.7 28.9 6.1 57.2 20 82.4l-22 21.5C72.7 324 63.1 287.9 64.2 250.9c1-44.6 18.3-87.6 47.5-121.1l-25.3-26.4c-9.6 1.3-19.2-2-25.9-9.1-11.3-12-10.9-30.9 1.1-42.4C73.5 40.7 92.2 41 104 53.1zM464.9 8c26 0 47.1 22.4 47.1 48.3S490.9 104 464.9 104c-6.3.1-14-1.1-15.9-1.8l-62.9 59.7c-32.7-43.6-76.7-65.9-126.9-67.2-30.5-.7-60.3 6.8-86.2 22.4l-21.1-22C184.1 74.3 221.5 64 260 64.9c43.3 1.1 84.6 16.7 117.7 44.6l41.1-38.6c-1.5-4.7-2.2-9.6-2.2-14.5C416.5 29.7 438.9 8 464.9 8zM256.7 113.4c5.5 0 10.9.4 16.4 1.1 78.1 9.8 133.4 81.1 123.8 159.1-9.8 78.1-81.1 133.4-159.1 123.8-78.1-9.8-133.4-81.1-123.8-159.2 9.3-72.4 70.1-124.6 142.7-124.8zm-59 119.4c.6 22.7 12.2 41.8 32.4 52.2l-11 51.7h73.7l-11-51.7c20.1-10.9 32.1-29 32.4-52.2-.4-32.8-25.8-57.5-58.3-58.3-32.1.8-57.3 24.8-58.2 58.3zM256 160"], + "kickstarter": [448, 512, [], "f3bb", "M400 480H48c-26.4 0-48-21.6-48-48V80c0-26.4 21.6-48 48-48h352c26.4 0 48 21.6 48 48v352c0 26.4-21.6 48-48 48zM199.6 178.5c0-30.7-17.6-45.1-39.7-45.1-25.8 0-40 19.8-40 44.5v154.8c0 25.8 13.7 45.6 40.5 45.6 21.5 0 39.2-14 39.2-45.6v-41.8l60.6 75.7c12.3 14.9 39 16.8 55.8 0 14.6-15.1 14.8-36.8 4-50.4l-49.1-62.8 40.5-58.7c9.4-13.5 9.5-34.5-5.6-49.1-16.4-15.9-44.6-17.3-61.4 7l-44.8 64.7v-38.8z"], + "kickstarter-k": [384, 512, [], "f3bc", "M147.3 114.4c0-56.2-32.5-82.4-73.4-82.4C26.2 32 0 68.2 0 113.4v283c0 47.3 25.3 83.4 74.9 83.4 39.8 0 72.4-25.6 72.4-83.4v-76.5l112.1 138.3c22.7 27.2 72.1 30.7 103.2 0 27-27.6 27.3-67.4 7.4-92.2l-90.8-114.8 74.9-107.4c17.4-24.7 17.5-63.1-10.4-89.8-30.3-29-82.4-31.6-113.6 12.8L147.3 185v-70.6z"], + "korvue": [446, 512, [], "f42f", "M386.5 34h-327C26.8 34 0 60.8 0 93.5v327.1C0 453.2 26.8 480 59.5 480h327.1c33 0 59.5-26.8 59.5-59.5v-327C446 60.8 419.2 34 386.5 34zM87.1 120.8h96v116l61.8-116h110.9l-81.2 132H87.1v-132zm161.8 272.1l-65.7-113.6v113.6h-96V262.1h191.5l88.6 130.8H248.9z"], + "laravel": [640, 512, [], "f3bd", "M637.5 241.6c-4.2-4.8-62.8-78.1-73.1-90.5-10.3-12.4-15.4-10.2-21.7-9.3-6.4.9-80.5 13.4-89.1 14.8-8.6 1.5-14 4.9-8.7 12.3 4.7 6.6 53.4 75.7 64.2 90.9l-193.7 46.4L161.2 48.7c-6.1-9.1-7.4-12.3-21.4-11.6-14 .6-120.9 9.5-128.5 10.2-7.6.6-16 4-8.4 22s129 279.6 132.4 287.2c3.4 7.6 12.2 20 32.8 15 21.1-5.1 94.3-24.2 134.3-34.7 21.1 38.3 64.2 115.9 72.2 127 10.6 14.9 18 12.4 34.3 7.4 12.8-3.9 199.6-71.1 208-74.5 8.4-3.5 13.6-5.9 7.9-14.4-4.2-6.2-53.5-72.2-79.3-106.8 17.7-4.7 80.6-21.4 87.3-23.3 7.9-2 9-5.8 4.7-10.6zm-352.2 72c-2.3.5-110.8 26.5-116.6 27.8-5.8 1.3-5.8.7-6.5-1.3-.7-2-129-266.7-130.8-270-1.8-3.3-1.7-5.9 0-5.9s102.5-9 106-9.2c3.6-.2 3.2.6 4.5 2.8 0 0 142.2 245.4 144.6 249.7 2.6 4.3 1.1 5.6-1.2 6.1zm306 57.4c1.7 2.7 3.5 4.5-2 6.4-5.4 2-183.7 62.1-187.1 63.6-3.5 1.5-6.2 2-10.6-4.5s-62.4-106.8-62.4-106.8L518 280.6c4.7-1.5 6.2-2.5 9.2 2.2 2.9 4.8 62.4 85.5 64.1 88.2zm12.1-134.1c-4.2.9-73.6 18.1-73.6 18.1l-56.7-77.8c-1.6-2.3-2.9-4.5 1.1-5s68.4-12.2 71.3-12.8c2.9-.7 5.4-1.5 9 3.4 3.6 4.9 52.6 67 54.5 69.4 1.8 2.3-1.4 3.7-5.6 4.7z"], + "lastfm": [512, 512, [], "f202", "M225.8 367.1l-18.8-51s-30.5 34-76.2 34c-40.5 0-69.2-35.2-69.2-91.5 0-72.1 36.4-97.9 72.1-97.9 66.5 0 74.8 53.3 100.9 134.9 18.8 56.9 54 102.6 155.4 102.6 72.7 0 122-22.3 122-80.9 0-72.9-62.7-80.6-115-92.1-25.8-5.9-33.4-16.4-33.4-34 0-19.9 15.8-31.7 41.6-31.7 28.2 0 43.4 10.6 45.7 35.8l58.6-7c-4.7-52.8-41.1-74.5-100.9-74.5-52.8 0-104.4 19.9-104.4 83.9 0 39.9 19.4 65.1 68 76.8 44.9 10.6 79.8 13.8 79.8 45.7 0 21.7-21.1 30.5-61 30.5-59.2 0-83.9-31.1-97.9-73.9-32-96.8-43.6-163-161.3-163C45.7 113.8 0 168.3 0 261c0 89.1 45.7 137.2 127.9 137.2 66.2 0 97.9-31.1 97.9-31.1z"], + "lastfm-square": [448, 512, [], "f203", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-92.2 312.9c-63.4 0-85.4-28.6-97.1-64.1-16.3-51-21.5-84.3-63-84.3-22.4 0-45.1 16.1-45.1 61.2 0 35.2 18 57.2 43.3 57.2 28.6 0 47.6-21.3 47.6-21.3l11.7 31.9s-19.8 19.4-61.2 19.4c-51.3 0-79.9-30.1-79.9-85.8 0-57.9 28.6-92 82.5-92 73.5 0 80.8 41.4 100.8 101.9 8.8 26.8 24.2 46.2 61.2 46.2 24.9 0 38.1-5.5 38.1-19.1 0-19.9-21.8-22-49.9-28.6-30.4-7.3-42.5-23.1-42.5-48 0-40 32.3-52.4 65.2-52.4 37.4 0 60.1 13.6 63 46.6l-36.7 4.4c-1.5-15.8-11-22.4-28.6-22.4-16.1 0-26 7.3-26 19.8 0 11 4.8 17.6 20.9 21.3 32.7 7.1 71.8 12 71.8 57.5.1 36.7-30.7 50.6-76.1 50.6z"], + "leanpub": [576, 512, [], "f212", "M386.539 111.485l15.096 248.955-10.979-.275c-36.232-.824-71.64 8.783-102.657 27.997-31.016-19.214-66.424-27.997-102.657-27.997-45.564 0-82.07 10.705-123.516 27.723L93.117 129.6c28.546-11.803 61.484-18.115 92.226-18.115 41.173 0 73.836 13.175 102.657 42.544 27.723-28.271 59.013-41.721 98.539-42.544zM569.07 448c-25.526 0-47.485-5.215-70.542-15.645-34.31-15.645-69.993-24.978-107.871-24.978-38.977 0-74.934 12.901-102.657 40.623-27.723-27.723-63.68-40.623-102.657-40.623-37.878 0-73.561 9.333-107.871 24.978C55.239 442.236 32.731 448 8.303 448H6.93L49.475 98.859C88.726 76.626 136.486 64 181.775 64 218.83 64 256.984 71.685 288 93.095 319.016 71.685 357.17 64 394.225 64c45.289 0 93.049 12.626 132.3 34.859L569.07 448zm-43.368-44.741l-34.036-280.246c-30.742-13.999-67.248-21.41-101.009-21.41-38.428 0-74.385 12.077-102.657 38.702-28.272-26.625-64.228-38.702-102.657-38.702-33.761 0-70.267 7.411-101.009 21.41L50.298 403.259c47.211-19.487 82.894-33.486 135.045-33.486 37.604 0 70.817 9.606 102.657 29.644 31.84-20.038 65.052-29.644 102.657-29.644 52.151 0 87.834 13.999 135.045 33.486z"], + "less": [640, 512, [], "f41d", "M612.7 219c0-20.5 3.2-32.6 3.2-54.6 0-34.2-12.6-45.2-40.5-45.2h-20.5v24.2h6.3c14.2 0 17.3 4.7 17.3 22.1 0 16.3-1.6 32.6-1.6 51.5 0 24.2 7.9 33.6 23.6 37.3v1.6c-15.8 3.7-23.6 13.1-23.6 37.3 0 18.9 1.6 34.2 1.6 51.5 0 17.9-3.7 22.6-17.3 22.6v.5h-6.3V393h20.5c27.8 0 40.5-11 40.5-45.2 0-22.6-3.2-34.2-3.2-54.6 0-11 6.8-22.6 27.3-23.6v-27.3c-20.5-.7-27.3-12.3-27.3-23.3zm-105.6 32c-15.8-6.3-30.5-10-30.5-20.5 0-7.9 6.3-12.6 17.9-12.6s22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-21 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51s-22.5-41-43-47.8zm-358.9 59.4c-3.7 0-8.4-3.2-8.4-13.1V119.1H65.2c-28.4 0-41 11-41 45.2 0 22.6 3.2 35.2 3.2 54.6 0 11-6.8 22.6-27.3 23.6v27.3c20.5.5 27.3 12.1 27.3 23.1 0 19.4-3.2 31-3.2 53.6 0 34.2 12.6 45.2 40.5 45.2h20.5v-24.2h-6.3c-13.1 0-17.3-5.3-17.3-22.6s1.6-32.1 1.6-51.5c0-24.2-7.9-33.6-23.6-37.3v-1.6c15.8-3.7 23.6-13.1 23.6-37.3 0-18.9-1.6-34.2-1.6-51.5s3.7-22.1 17.3-22.1H93v150.8c0 32.1 11 53.1 43.1 53.1 10 0 17.9-1.6 23.6-3.7l-5.3-34.2c-3.1.8-4.6.8-6.2.8zM379.9 251c-16.3-6.3-31-10-31-20.5 0-7.9 6.3-12.6 17.9-12.6 11.6 0 22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-20.5 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51 .1-28.9-22.5-41-43-47.8zm-155-68.8c-38.4 0-75.1 32.1-74.1 82.5 0 52 34.2 82.5 79.3 82.5 18.9 0 39.9-6.8 56.2-17.9l-15.8-27.8c-11.6 6.8-22.6 10-34.2 10-21 0-37.3-10-41.5-34.2H290c.5-3.7 1.6-11 1.6-19.4.6-42.6-22.6-75.7-66.7-75.7zm-30 66.2c3.2-21 15.8-31 30.5-31 18.9 0 26.3 13.1 26.3 31h-56.8z"], + "line": [448, 512, [], "f3c0", "M272.1 204.2v71.1c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.1 0-2.1-.6-2.6-1.3l-32.6-44v42.2c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.8 0-3.2-1.4-3.2-3.2v-71.1c0-1.8 1.4-3.2 3.2-3.2H219c1 0 2.1.5 2.6 1.4l32.6 44v-42.2c0-1.8 1.4-3.2 3.2-3.2h11.4c1.8-.1 3.3 1.4 3.3 3.1zm-82-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 1.8 1.4 3.2 3.2 3.2h11.4c1.8 0 3.2-1.4 3.2-3.2v-71.1c0-1.7-1.4-3.2-3.2-3.2zm-27.5 59.6h-31.1v-56.4c0-1.8-1.4-3.2-3.2-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 .9.3 1.6.9 2.2.6.5 1.3.9 2.2.9h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.7-1.4-3.2-3.1-3.2zM332.1 201h-45.7c-1.7 0-3.2 1.4-3.2 3.2v71.1c0 1.7 1.4 3.2 3.2 3.2h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2V234c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2v-11.4c-.1-1.7-1.5-3.2-3.2-3.2zM448 113.7V399c-.1 44.8-36.8 81.1-81.7 81H81c-44.8-.1-81.1-36.9-81-81.7V113c.1-44.8 36.9-81.1 81.7-81H367c44.8.1 81.1 36.8 81 81.7zm-61.6 122.6c0-73-73.2-132.4-163.1-132.4-89.9 0-163.1 59.4-163.1 132.4 0 65.4 58 120.2 136.4 130.6 19.1 4.1 16.9 11.1 12.6 36.8-.7 4.1-3.3 16.1 14.1 8.8 17.4-7.3 93.9-55.3 128.2-94.7 23.6-26 34.9-52.3 34.9-81.5z"], + "linkedin": [448, 512, [], "f08c", "M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"], + "linkedin-in": [448, 512, [], "f0e1", "M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"], + "linode": [448, 512, [], "f2b8", "M437.4 226.3c-.3-.9-.9-1.4-1.4-2l-70-38.6c-.9-.6-2-.6-3.1 0l-58.9 36c-.9.6-1.4 1.7-1.4 2.6l-.9 31.4-24-16c-.9-.6-2.3-.6-3.1 0L240 260.9l-1.4-35.1c0-.9-.6-2-1.4-2.3l-36-24.3 33.7-17.4c1.1-.6 1.7-1.7 1.7-2.9l-5.7-132.3c0-.9-.9-2-1.7-2.6L138.6.3c-.9-.3-1.7-.3-2.3-.3L12.6 38.6c-1.4.6-2.3 2-2 3.7L38 175.4c.9 3.4 34 27.4 38.6 30.9l-26.9 12.9c-1.4.9-2 2.3-1.7 3.4l20.6 100.3c.6 2.9 23.7 23.1 27.1 26.3l-17.4 10.6c-.9.6-1.7 2-1.4 3.1 1.4 7.1 15.4 77.7 16.9 79.1l65.1 69.1c.6.6 1.4.6 2.3.9.6 0 1.1-.3 1.7-.6l83.7-66.9c.9-.6 1.1-1.4 1.1-2.3l-2-46 28 23.7c1.1.9 2.9.9 4 0l66.9-53.4c.9-.6 1.1-1.4 1.1-2.3l2.3-33.4 20.3 14c1.1.9 2.6.9 3.7 0l54.6-43.7c.6-.3 1.1-1.1 1.1-2 .9-6.5 10.3-70.8 9.7-72.8zm-204.8 4.8l4 92.6-90.6 61.2-14-96.6 100.6-57.2zm-7.7-180l5.4 126-106.6 55.4L104 97.7l120.9-46.6zM44 173.1L18 48l79.7 49.4 19.4 132.9L44 173.1zm30.6 147.8L55.7 230l70 58.3 13.7 93.4-64.8-60.8zm24.3 117.7l-13.7-67.1 61.7 60.9 9.7 67.4-57.7-61.2zm64.5 64.5l-10.6-70.9 85.7-61.4 3.1 70-78.2 62.3zm82-115.1c0-3.4.9-22.9-2-25.1l-24.3-20 22.3-14.9c2.3-1.7 1.1-5.7 1.1-8l29.4 22.6.6 68.3-27.1-22.9zm94.3-25.4l-60.9 48.6-.6-68.6 65.7-46.9-4.2 66.9zm27.7-25.7l-19.1-13.4 2-34c.3-.9-.3-2-1.1-2.6L308 259.7l.6-30 64.6 40.6-5.8 66.6zm54.6-39.8l-48.3 38.3 5.7-65.1 51.1-36.6-8.5 63.4z"], + "linux": [448, 512, [], "f17c", "M196.1 123.6c-.2-1.4 1.9-2.3 3.2-2.9 1.7-.7 3.9-1 5.5-.1.4.2.8.7.6 1.1-.4 1.2-2.4 1-3.5 1.6-1 .5-1.8 1.7-3 1.7-1 .1-2.7-.4-2.8-1.4zm24.7-.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm214.7 310.2c-.5 8.2-6.5 13.8-13.9 18.3-14.9 9-37.3 15.8-50.9 32.2l-2.6-2.2 2.6 2.2c-14.2 16.9-31.7 26.6-48.3 27.9-16.5 1.3-32-6.3-40.3-23v-.1c-1.1-2.1-1.9-4.4-2.5-6.7-21.5 1.2-40.2-5.3-55.1-4.1-22 1.2-35.8 6.5-48.3 6.6-4.8 10.6-14.3 17.6-25.9 20.2-16 3.7-36.1 0-55.9-10.4l1.6-3-1.6 3c-18.5-9.8-42-8.9-59.3-12.5-8.7-1.8-16.3-5-20.1-12.3-3.7-7.3-3-17.3 2.2-31.7 1.7-5.1.4-12.7-.8-20.8-.6-3.9-1.2-7.9-1.2-11.8 0-4.3.7-8.5 2.8-12.4 4.5-8.5 11.8-12.1 18.5-14.5 6.7-2.4 12.8-4 17-8.3 5.2-5.5 10.1-14.4 16.6-20.2-2.6-17.2.2-35.4 6.2-53.3 12.6-37.9 39.2-74.2 58.1-96.7 16.1-22.9 20.8-41.3 22.5-64.7C158 103.4 132.4-.2 234.8 0c80.9.1 76.3 85.4 75.8 131.3-.3 30.1 16.3 50.5 33.4 72 15.2 18 35.1 44.3 46.5 74.4 9.3 24.6 12.9 51.8 3.7 79.1 1.4.5 2.8 1.2 4.1 2 1.4.8 2.7 1.8 4 2.9 6.6 5.6 8.7 14.3 10.5 22.4 1.9 8.1 3.6 15.7 7.2 19.7 11.1 12.4 15.9 21.5 15.5 29.7zM220.8 109.1c3.6.9 8.9 2.4 13 4.4-2.1-12.2 4.5-23.5 11.8-23 8.9.3 13.9 15.5 9.1 27.3-.8 1.9-2.8 3.4-3.9 4.6 6.7 2.3 11 4.1 12.6 4.9 7.9-9.5 10.8-26.2 4.3-40.4-9.8-21.4-34.2-21.8-44 .4-3.2 7.2-3.9 14.9-2.9 21.8zm-46.2 18.8c7.8-5.7 6.9-4.7 5.9-5.5-8-6.9-6.6-27.4 1.8-28.1 6.3-.5 10.8 10.7 9.6 19.6 3.1-2.1 6.7-3.6 10.2-4.6 1.7-19.3-9-33.5-19.1-33.5-18.9 0-24 37.5-8.4 52.1zm-9.4 20.9c1.5 4.9 6.1 10.5 14.7 15.3 7.8 4.6 12 11.5 20 15 2.6 1.1 5.7 1.9 9.6 2.1 18.4 1.1 27.1-11.3 38.2-14.9 11.7-3.7 20.1-11 22.7-18.1 3.2-8.5-2.1-14.7-10.5-18.2-11.3-4.9-16.3-5.2-22.6-9.3-10.3-6.6-18.8-8.9-25.9-8.9-14.4 0-23.2 9.8-27.9 14.2-.5.5-7.9 5.9-14.1 10.5-4.2 3.3-5.6 7.4-4.2 12.3zm-33.5 252.8L112.1 366c-6.8-9.2-13.8-14.8-21.9-16-7.7-1.2-12.6 1.4-17.7 6.9-4.8 5.1-8.8 12.3-14.3 18-7.8 6.5-9.3 6.2-19.6 9.9-6.3 2.2-11.3 4.6-14.8 11.3-2.7 5-2.1 12.2-.9 20 1.2 7.9 3 16.3.6 23.9v.2c-5 13.7-5 21.7-2.6 26.4 7.9 15.4 46.6 6.1 76.5 21.9 31.4 16.4 72.6 17.1 75.3-18 2.1-20.5-31.5-49-41-68.9zm153.9 35.8c3.2-11 6.3-21.3 6.8-29 .8-15.2 1.6-28.7 4.4-39.9 3.1-12.6 9.3-23.1 21.4-27.3 2.3-21.1 18.7-21.1 38.3-12.5 18.9 8.5 26 16 22.8 26.1 1 0 2-.1 4.2 0 5.2-16.9-14.3-28-30.7-34.8 2.9-12 2.4-24.1-.4-35.7-6-25.3-22.6-47.8-35.2-59-2.3-.1-2.1 1.9 2.6 6.5 11.6 10.7 37.1 49.2 23.3 84.9-3.9-1-7.6-1.5-10.9-1.4-5.3-29.1-17.5-53.2-23.6-64.6-11.5-21.4-29.5-65.3-37.2-95.7-4.5 6.4-12.4 11.9-22.3 15-4.7 1.5-9.7 5.5-15.9 9-13.9 8-30 8.8-42.4-1.2-4.5-3.6-8-7.6-12.6-10.3-1.6-.9-5.1-3.3-6.2-4.1-2 37.8-27.3 85.3-39.3 112.7-8.3 19.7-13.2 40.8-13.8 61.5-21.8-29.1-5.9-66.3 2.6-82.4 9.5-17.6 11-22.5 8.7-20.8-8.6 14-22 36.3-27.2 59.2-2.7 11.9-3.2 24 .3 35.2 3.5 11.2 11.1 21.5 24.6 29.9 0 0 24.8 14.3 38.3 32.5 7.4 10 9.7 18.7 7.4 24.9-2.5 6.7-9.6 8.9-16.7 8.9 4.8 6 10.3 13 14.4 19.6 37.6 25.7 82.2 15.7 114.3-7.2zM415 408.5c-10-11.3-7.2-33.1-17.1-41.6-6.9-6-13.6-5.4-22.6-5.1-7.7 8.8-25.8 19.6-38.4 16.3-11.5-2.9-18-16.3-18.8-29.5-.3.2-.7.3-1 .5-7.1 3.9-11.1 10.8-13.7 21.1-2.5 10.2-3.4 23.5-4.2 38.7-.7 11.8-6.2 26.4-9.9 40.6-3.5 13.2-5.8 25.2-1.1 36.3 7.2 14.5 19.5 20.4 33.7 19.3 14.2-1.1 30.4-9.8 43.6-25.5 22-26.6 62.3-29.7 63.2-46.5.3-5.1-3.1-13-13.7-24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4 3.9-3.4 5.9-6.3 3.1-6.6-2.8-.3-2.6 2.6-6 5.1-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2-10.4 0-18.7-4.8-24.9-9.7-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z"], + "lyft": [512, 512, [], "f3c3", "M0 81.1h77.8v208.7c0 33.1 15 52.8 27.2 61-12.7 11.1-51.2 20.9-80.2-2.8C7.8 334 0 310.7 0 289V81.1zm485.9 173.5v-22h23.8v-76.8h-26.1c-10.1-46.3-51.2-80.7-100.3-80.7-56.6 0-102.7 46-102.7 102.7V357c16 2.3 35.4-.3 51.7-14 17.1-14 24.8-37.2 24.8-59v-6.7h38.8v-76.8h-38.8v-23.3c0-34.6 52.2-34.6 52.2 0v77.1c0 56.6 46 102.7 102.7 102.7v-76.5c-14.5 0-26.1-11.7-26.1-25.9zm-294.3-99v113c0 15.4-23.8 15.4-23.8 0v-113H91v132.7c0 23.8 8 54 45 63.9 37 9.8 58.2-10.6 58.2-10.6-2.1 13.4-14.5 23.3-34.9 25.3-15.5 1.6-35.2-3.6-45-7.8v70.3c25.1 7.5 51.5 9.8 77.6 4.7 47.1-9.1 76.8-48.4 76.8-100.8V155.1h-77.1v.5z"], + "magento": [448, 512, [], "f3c4", "M445.7 127.9V384l-63.4 36.5V164.7L223.8 73.1 65.2 164.7l.4 255.9L2.3 384V128.1L224.2 0l221.5 127.9zM255.6 420.5L224 438.9l-31.8-18.2v-256l-63.3 36.6.1 255.9 94.9 54.9 95.1-54.9v-256l-63.4-36.6v255.9z"], + "mailchimp": [428, 512, [], "f59e", "M426.56 323.72c-3.09-6.59-8.97-11.13-16.35-12.88-2.47-11.27-5.88-16.8-6.19-17.63 1.3-1.48 2.56-2.97 2.84-3.32 10.42-12.93 3.62-31.86-14.19-36.33-10.02-9.64-19.09-14.17-26.54-17.9-7.14-3.57-4.29-2.17-10.99-5.19-1.78-8.71-2.37-28.97-5.2-43.19-2.54-12.79-7.66-22.06-15.56-28.15-3.16-6.84-7.59-13.74-12.93-18.81 24.84-38.08 31.38-75.69 13.19-95.39-8.1-8.77-20.13-12.93-34.52-12.93-20.26 0-45.18 8.26-70.34 23.54 0 0-16.38-13.18-16.73-13.46-70.08-55.19-268.28 188.7-198.32 242l18.06 13.8c-11.34 31.54 4.43 69.14 37.29 81.21 7.26 2.67 15.14 3.97 23.31 3.51 0 0 53.09 97.36 165.1 97.39 129.58.04 162.55-126.72 162.9-127.86 0 .01 10.5-15.51 5.17-28.41zM20.12 267.95c-14.2-23.96 10.51-73.19 28.09-101.17C91.66 97.63 163.98 43.06 196.82 50.85l9.03-3.46c.03.03 24.67 20.85 24.7 20.87 16.97-10.19 38.58-20.57 58.8-22.64-12.3 2.77-27.29 9.15-45.05 20.01-.43.25-42.02 28.32-67.43 53.52-13.85 13.73-69.45 80.41-69.4 80.35 10.16-19.23 16.86-28.67 32.94-48.9 9.1-11.44 18.81-22.57 28.74-32.84 4.61-4.77 9.28-9.36 13.95-13.71 3.21-2.99 6.44-5.87 9.65-8.62 1.48-1.27 2.96-2.5 4.43-3.71l.01-.01L164.6 64.8l1.72 12.06 23.69 20.87s-20.96 14.11-31.39 23.01c-41.79 35.66-82.8 90.4-98.06 143.69l.73-.03c-7.6 4.19-15.14 10.91-21.73 20.05-.16-.04-17.04-12.43-19.44-16.5zm69.11 100.09c-25.03 0-45.33-21.37-45.33-47.72 0-26.36 20.29-47.72 45.33-47.72 6.49 0 12.66 1.44 18.24 4.02 0 0 9.63 4.86 12.34 27.81 2.82-7.17 4.24-13.06 4.24-13.06 3.23 9.88 4.88 20.26 4.23 30.76 2.68-3.56 5.55-10.27 5.55-10.27 5 29.33-16.4 56.18-44.6 56.18zm55.8-168.53s19.49-37.06 62.33-61.57c-3.19-.51-10.99.48-12.36.64 7.78-6.69 22.24-11.16 32.23-13.19-2.92-1.86-9.89-2.33-13.34-2.42-1.02-.03-1.01-.02-2.22.03 9.4-5.25 26.82-8.34 42.65-5.55-1.99-2.64-6.5-4.57-9.67-5.51-.28-.08-1.52-.39-1.52-.39l1.19-.28c9.54-1.84 20.69.15 29.5 3.69-1-2.32-3.45-5.03-5.29-6.74-.19-.18-1.29-.97-1.29-.97 9.22 1.91 18.06 5.94 24.71 10.5-.9-1.75-3.14-4.69-4.69-6.29 8.81 2.52 18.71 8.81 22.95 17.82.1.2.37.94.4 1.03-16.7-12.84-65.44-9.2-114.24 22.42-22.33 14.48-38.71 30.32-51.34 46.78zm263.32 146.34c-.59 1.15-6.73 34.4-41.86 62.01-44.37 34.86-102.66 31.33-124.67 11.8-11.76-11-16.85-26.73-16.85-26.73s-1.33 8.87-1.56 12.35c-8.87-15.09-8.12-33.52-8.12-33.52s-4.73 8.83-6.9 13.77c-6.53-16.62-3.16-33.78-3.16-33.78l-5.16 7.7s-2.42-18.81 3.52-34.47c6.36-16.74 18.68-28.9 21.11-30.42-9.35-2.97-20.12-11.49-20.14-11.51 0 0 4.28.28 7.26-.4 0 0-18.9-13.54-22.22-34.26 2.74 3.38 8.49 7.21 8.49 7.21-1.86-5.42-2.99-17.49-1.25-29.36l.01-.01c3.58-22.68 22.27-37.45 43.44-37.27 22.54.2 37.65 4.93 56.55-12.5 4-3.69 7.19-6.87 12.81-8.11.59-.13 2.06-.75 5.07-.75 3.05 0 5.98.69 8.67 2.29 10.25 6.1 12.46 22.01 13.56 33.68 4.07 43.28 2.43 35.57 19.94 44.49 8.36 4.25 17.74 8.29 28.43 19.72.03.03.08.09.08.09h.13c9.01.22 13.65 7.31 9.5 12.47-30.23 36.1-72.46 53.39-119.51 54.84-1.94.05-6.32.15-6.34.15-19.01.58-25.19 25.16-13.27 39.95 7.54 9.35 22.03 12.42 33.97 12.46l.17-.06c51.45 1.04 103.14-35.37 112.07-55.44.06-.15.61-1.42.61-1.42-2.07 2.43-52.18 49.61-113.08 47.9 0 0-6.66-.14-12.93-1.6-8.27-1.92-14.55-5.56-16.95-13.8 5.05 1.01 11.45 1.66 18.87 1.66 43.96 0 75.63-19.98 72.33-20.25-.13 0-.26.03-.48.08-5.13 1.19-57.97 21.66-91.37 11.16.08-1.02.24-2.01.48-2.9 2.97-9.95 8.25-8.56 16.79-8.93 30.48-1.01 55.07-8.68 73.5-17.43 19.65-9.33 34.63-21.35 40.03-27.42 7 11.79 6.96 26.92 6.96 26.92s2.74-.96 6.38-.96c11.38.01 13.73 10.23 5.09 20.6zm-149.29 13.7c0-.05-.01-.1-.01-.15.01.05.01.1.01.15zm-.01-.21c-.01-.13-.01-.26-.02-.39-.02-.65-.03-1.33 0-2.02-.02.74-.02 1.42 0 2.02.01.13.01.27.02.39zm.12 1.46c0 .02 0 .04.01.06 0-.02 0-.04-.01-.06zm.02.12c.2 1.58.51 2.31.55 2.4-.23-.49-.42-1.34-.55-2.4zM193.96 59.68l2.87-8.83 4.88 17.72-6.03-1.95-1.72-6.94zm22.38 17.72l-3.62-12.59 9.97 8.36c-2.24 1.44-4.36 2.86-6.35 4.23zm42.71 281.94c-.01-.13-.01-.26-.02-.39.01.13.01.27.02.39zm-.01-.39c-.02-.65-.03-1.33 0-2.02-.03.75-.03 1.42 0 2.02zm.02.6c0-.05-.01-.1-.01-.15m.13 1.46c0-.02 0-.04-.01-.06m.02.12c.2 1.58.51 2.31.55 2.4-.23-.49-.42-1.34-.55-2.4zm52.1-138.61c-.07-3.36.47-8.92 3.63-9.95h.01c5.41-1.88 12.58 11.98 12.91 24.28-4.28-2.14-9.3-3.05-14.47-2.6-1.3-3.97-1.92-7.7-2.08-11.73zM205.38 85.27l-13.59-11.38 20.57 6.28c-2.65 1.88-5 3.6-6.98 5.1zm27.7 166.94c-3.41 1.3-5.83 2.31-7 2.14-1.89-.28-.06-3.75 4.08-7.11 8.33-6.64 19.76-8.7 29.53-5.07 4.28 1.57 9.08 4.72 11.6 8.39.95 1.39 1.21 2.44.82 2.88-.77.9-3.51-.31-7.55-1.89-10.35-3.86-17.98-4.45-31.48.66zm14.55 14.53c-2.31.94-3.81 1.66-4.42 1.17-.62-.48-.01-2.42 2.15-4.51 1.88-1.81 3.83-2.83 6.07-3.77.35-.15.72-.28 1.1-.38 1.04-.28 2.09-.63 3.23-.8 9.12-1.55 15.8 3.51 14.93 4.98-.39.69-2.08.53-4.6.36-5.23-.36-10.71-.27-18.46 2.95zM60.86 323.12zm24.3-25.78c-1.85.39-.81.17-2.64.68a7 7 0 0 0-.77.25c-.58.27-1.11.45-1.62.73-.43.24-4.07 1.86-7.03 5.48-3.99 4.95-5.44 11.43-5.19 17.67.24 6.06 2.02 9.41 2.35 10.23 1.38 2.96-1.85 3.57-4.79.39l-.01-.01c-2.35-2.49-3.86-6.29-4.6-9.66-2.98-13.95 3.24-27.97 17.61-33.57.8-.32 1.74-.51 2.5-.73h-.01c1.47-.44 6.72-1.5 12.07-.67 5.87.91 11.04 3.85 14.33 7.67l.01.01c2.53 2.87 4.43 6.92 4.09 10.53v.01c-.13 1.5-.79 3.65-2.14 4.21-.5.21-1.01.1-1.36-.25-.98-.96-.22-2.93-2.6-6.3-3.17-4.47-10.31-8.76-20.2-6.67zm30.28 31.17c1.88 10.82-6 20.5-15.52 20.7-6.67.15-10.31-4.02-9.66-4.93.3-.43 1.32-.24 2.88-.01 8.5 1.32 13.66-3.86 14.9-9.29.02-.09.35-1.54.34-2.54.07-.88-.03-1.76-.16-2.56-1-5.62-7.45-6.68-11.6-11.15-3.72-4.04-2.99-9.22-.65-11.71 2.81-2.77 6.83-1.76 6.78-.78 0 .52-.97.91-2.17 1.74-1.56 1.1-1.77 2.16-1.37 3.98.26 1 .71 1.65 1.68 2.42 3.48 2.76 12.85 4.7 14.55 14.13zm212.87-81.47c2.58.4 4.22 3.59 3.67 7.13-.55 3.54-3.09 6.08-5.67 5.67-2.58-.4-4.22-3.59-3.67-7.13.56-3.53 3.09-6.07 5.67-5.67zm-28.33 10.31c1.42-2.59 5.44-3.11 8.99-1.16 3.55 1.94 5.27 5.62 3.86 8.2-1.42 2.59-5.44 3.11-8.99 1.16-3.55-1.94-5.28-5.61-3.86-8.2z"], + "mandalorian": [390, 512, [], "f50f", "M203.28 511.89c-.98-3.26-1.69-15.83-1.39-24.58.55-15.89.98-24.72 1.4-28.76.64-6.2 2.87-20.72 3.28-21.38.6-.96.4-27.87-.24-33.13-.31-2.58-.63-11.9-.69-20.73-.13-16.47-.53-20.12-2.73-24.76-1.1-2.32-1.23-3.84-.99-11.43.16-4.81 0-10.53-.34-12.71-2.05-12.97-3.46-27.7-3.25-33.9.21-6.12.43-7.15 2.06-9.67 3.05-4.71 6.51-14.04 8.62-23.27 2.26-9.86 3.88-17.18 4.59-20.74.89-4.42 2.43-9.72 4.36-15.05 2.27-6.25 2.49-15.39.37-15.39-.3 0-1.38 1.22-2.41 2.71-1.03 1.49-4.76 4.8-8.29 7.36-8.37 6.08-11.7 9.39-12.66 12.58-.93 3.11-1.02 7.23-.16 7.76.34.21 1.29 2.4 2.11 4.88 1.62 4.88 1.87 10.12.72 15.36-.39 1.77-1.05 5.47-1.46 8.23-.41 2.76-.98 6.46-1.25 8.22-.28 1.76-.97 3.68-1.55 4.26-.96.96-1.14.91-2.05-.53-.55-.87-1.2-3.01-1.44-4.75-.25-1.74-1.63-7.11-3.08-11.93-3.28-10.9-3.52-16.15-.96-20.96.92-1.73 1.67-3.81 1.67-4.61 0-2.39-2.2-5.32-7.41-9.89-7.05-6.18-8.63-7.92-10.23-11.3-1.71-3.6-3.06-4.06-4.54-1.54-1.78 3.01-2.6 9.11-2.97 22.02l-.35 12.13 1.95 2.25c3.21 3.7 12.07 16.45 13.78 19.83 3.41 6.74 4.34 11.69 4.41 23.56.07 11.84.95 22.75 2 24.71.36.66.51 1.35.34 1.52-.17.17.41 2.09 1.29 4.27.88 2.18 1.81 6.22 2.06 8.98.25 2.76 1.02 7.43 1.71 10.37 2.23 9.56 2.77 14.08 2.39 20.14-.2 3.27-.53 11.07-.73 17.32-1.31 41.76-1.85 57.98-2.04 61.21-.12 2.02-.39 11.51-.6 21.07-.36 16.3-1.3 27.37-2.42 28.65-.64.73-8.07-4.91-12.52-9.49-3.75-3.87-4.02-4.79-2.83-9.95.7-3.01 2.26-18.29 3.33-32.62.36-4.78.81-10.5 1.01-12.71.83-9.37 1.66-20.35 2.61-34.78.56-8.46 1.33-16.44 1.72-17.73.38-1.29.89-9.89 1.13-19.11l.43-16.77-2.26-4.3c-1.72-3.28-4.87-6.94-13.22-15.34-6.03-6.07-11.84-12.3-12.91-13.85l-1.95-2.81.75-10.9c1.09-15.71 1.1-48.57.02-59.06l-.89-8.7-3.28-4.52c-5.86-8.08-5.8-7.75-6.22-33.27-.1-6.07-.38-11.5-.63-12.06-.83-1.87-3.05-2.66-8.54-3.05-8.86-.62-10.96-1.9-23.85-14.55-6.15-6.04-12.34-11.97-13.75-13.19-2.81-2.42-2.79-1.99-.56-9.63l1.35-4.65-1.69-3.04c-.93-1.67-2.09-3.51-2.59-4.07-1.33-1.51-5.5-10.89-5.99-13.49-.31-1.66-.09-2.67.87-3.9 2.23-2.86 3.4-5.68 4.45-10.73 2.33-11.19 7.74-26.09 10.6-29.22 3.18-3.47 7.7-1.05 9.41 5.03 1.34 4.79 1.37 9.79.1 18.55-.53 3.68-.98 8.68-.99 11.11-.02 4.01.19 4.69 2.25 7.39 3.33 4.37 7.73 7.41 15.2 10.52 1.7.71 3.82 1.99 4.72 2.85 11.17 10.72 18.62 16.18 22.95 16.85 5.18.8 7.98 4.54 10.04 13.39 1.31 5.65 4 11.14 5.46 11.14.59 0 2.09-.63 3.33-1.39 1.98-1.22 2.25-1.73 2.25-4.18-.01-3.71-1.17-14.08-2-17.84-.37-1.66-.78-4.06-.93-5.35-.14-1.29-.61-3.85-1.03-5.69-2.55-11.16-3.65-15.46-4.1-16.05-1.55-2.02-4.08-10.2-4.93-15.92-1.64-11.11-3.96-14.23-12.91-17.39-4.64-1.64-8.89-4.12-13.32-7.78-1.15-.95-4.01-3.22-6.35-5.06-2.35-1.83-4.41-3.53-4.6-3.76-.18-.23-1.39-1.14-2.69-2.02-6.24-4.22-8.84-6.98-11.26-11.96l-2.44-5.02-.22-12.98-.22-12.98 6.91-6.55c3.95-3.75 8.48-7.35 10.59-8.43 3.31-1.69 4.45-1.89 11.37-2.05 8.53-.19 10.12.02 11.66 1.56 1.53 1.53 1.36 6.4-.29 8.5-.74.94-1.34 1.98-1.34 2.32 0 .58-2.61 4.91-5.42 8.99-.68.99-2.13 5.35-2.37 6.82 20.44 13.39 21.55 3.77 14.07 28.98l11.4 2.54c3.11-8.66 6.47-17.26 8.61-26.22.29-7.63-11.98-4.19-15.4-8.68-2.33-5.93 3.13-14.18 6.06-19.2 1.6-2.34 6.62-4.7 8.82-4.15.88.22 4.16-.35 7.37-1.28 3.18-.92 6.58-1.68 7.55-1.68.97 0 3.66-.58 5.98-1.29 3.65-1.11 4.5-1.17 6.35-.4 1.17.48 3.79 1.09 5.82 1.36 2.02.26 4.72 1.12 6 1.91 1.28.79 3.53 1.77 5.02 2.17 2.51.68 3 .57 7.05-1.67l4.35-2.4 10.7-.41c10.44-.4 10.81-.47 15.26-2.68l4.58-2.3 2.46 1.43c1.76 1.02 3.14 2.73 4.85 5.98 2.36 4.51 2.38 4.58 1.37 7.37-.88 2.44-.89 3.3-.1 6.39.5 1.96 1.45 4.62 2.1 5.91.65 1.29 1.24 3.09 1.31 4.01.31 4.33-.03 5.3-2.41 6.92-2.17 1.47-6.98 7.91-6.98 9.34 0 .32-.48 1.69-1.07 3.03-5.04 11.51-6.76 13.56-14.26 16.98-9.2 4.2-12.3 5.19-16.21 5.19-3.1 0-4 .25-4.54 1.26-.37.69-2.21 2.37-4.09 3.71-2.04 1.47-3.8 3.38-4.38 4.78-.54 1.28-1.66 2.59-2.49 2.91-.83.32-1.94 1.08-2.45 1.71-.52.62-3.66 3.04-7 5.38-3.33 2.34-6.87 5.02-7.87 5.96-1 .94-2.07 1.71-2.39 1.71s-1.28.74-2.13 1.65c-1.31 1.39-1.49 2.11-1.14 4.6.22 1.63.86 4.27 1.42 5.88 1.32 3.8 1.31 7.86-.05 10.57-1.43 2.86-.89 6.65 1.35 9.59 2.01 2.63 2.16 4.56.71 8.84-.61 1.8-1.05 5.45-1.06 8.91-.02 4.88.22 6.28 1.46 8.38 1.2 2.04 1.82 2.48 3.24 2.32 1.98-.23 2.3-1.05 4.71-12.12 2.18-10.03 3.71-11.92 13.76-17.08 2.94-1.51 7.46-3.96 10.03-5.44 2.58-1.48 6.79-3.69 9.37-4.91 6.67-3.16 11.05-6.52 15.22-11.67 7.11-8.79 9.98-16.22 12.85-33.3.55-3.28 1.43-5.65 2.86-7.73 1.29-1.87 2.37-4.62 2.89-7.31 1.02-5.3 2.85-9.08 5.58-11.51 4.7-4.18 6-1.09 4.59 10.87-.46 3.86-1.1 10.33-1.44 14.38l-.61 7.36 4.45 4.09 4.45 4.09.11 8.42c.06 4.63.47 9.53.92 10.89l.82 2.47-6.43 6.28c-8.54 8.33-12.88 13.93-16.76 21.61-1.77 3.49-3.74 7.11-4.38 8.03-2.18 3.11-6.46 13.01-8.76 20.26l-2.29 7.22-6.97 6.49c-3.83 3.57-7.96 7.25-9.17 8.17-3.05 2.32-4.26 5.15-4.26 9.99 0 2.98.43 4.96 1.59 7.26.87 1.74 1.81 3.91 2.09 4.83.28.92.98 2.22 1.57 2.89 1.4 1.59 1.92 16.12.83 23.22-.68 4.48-3.63 12.02-4.7 12.02-1.79 0-4.06 9.27-5.07 20.74-.18 2.02-.62 5.94-.98 8.7-.36 2.76-.96 9.98-1.35 16.05-.77 12.22-.19 18.77 2.05 23.15 3.41 6.69.52 12.69-11.03 22.84l-3.97 3.49.07 5.19c.04 2.86.55 6.85 1.14 8.87 4.61 15.98 4.73 16.92 4.38 37.13-.46 26.4-.26 40.27.63 44.15.42 1.84.91 5 1.08 7.02.17 2.02.66 5.33 1.08 7.36.47 2.26.78 11.02.79 22.74l.02 19.06-1.81 2.63c-2.71 3.91-15.11 13.54-15.49 12.29zm29.53-45.11c-.18-.3-.33-6.87-.33-14.59 0-14.06-.89-27.54-2.26-34.45-.4-2.02-.81-9.7-.9-17.06-.15-11.93-1.4-24.37-2.64-26.38-.66-1.07-3.02-17.66-3.03-21.3-.01-4.23 1.02-6 5.28-9.13 4.14-3.04 4.86-3.14 5.48-.72.28 1.1 1.45 5.62 2.6 10.03 3.93 15.12 4.14 16.27 4.05 21.74-.1 5.78-.13 6.13-1.74 17.73-.98 7.07-1.17 12.39-1.04 28.43.17 19.4-.64 35.73-2.04 41.27-.71 2.78-2.8 5.48-3.43 4.43zm-70.99-37.58c-.24-.38-1.01-5.24-1.73-10.79-.72-5.56-1.49-10.41-1.73-10.79-.23-.38-.68-3.3-.99-6.49-.31-3.19-.91-7.46-1.33-9.48-.99-4.79-3.35-19.35-3.42-21.07-.03-.74-.34-4.05-.7-7.36-.67-6.21-.84-27.67-.22-28.29.96-.96 6.63 2.76 11.33 7.43l5.28 5.25-.45 6.47c-.25 3.56-.6 10.23-.78 14.83-.18 4.6-.49 9.87-.67 11.71-.18 1.84-.61 9.36-.94 16.72-.79 17.41-1.94 31.29-2.65 32-.32.3-.76.24-1-.14zM74.63 162.61c21.07 12.79 17.84 14.15 28.49 17.66 13.01 4.29 18.87 7.13 23.15 16.87-43.66 36.14-69.01 57.9-76.71 70.82-31.02 52.01-5.99 101.59 62.75 87.21-14.18 29.23-77.97 28.63-98.68-4.9-24.68-39.95-22.09-118.3 61-187.66zm210.79 179.02c56.66 6.88 82.32-37.74 46.54-89.23 0 0-26.87-29.34-64.28-67.96 2.98-15.45 9.49-32.12 30.57-53.82 89.2 63.51 92 141.61 92.46 149.36 4.27 70.58-78.66 91.12-105.29 61.65z"], + "mastodon": [417, 512, [], "f4f6", "M417.8 179.1c0-97.2-63.7-125.7-63.7-125.7-62.5-28.7-228.5-28.4-290.4 0 0 0-63.7 28.5-63.7 125.7 0 115.7-6.6 259.4 105.6 289.1 40.5 10.7 75.3 13 103.3 11.4 50.8-2.8 79.3-18.1 79.3-18.1l-1.7-36.9s-36.3 11.4-77.1 10.1c-40.4-1.4-83-4.4-89.6-54-.6-4.4-.9-9-.9-13.9 85.6 20.9 158.6 9.1 178.7 6.7 56.1-6.7 105-41.3 111.2-72.9 9.8-49.8 9-121.5 9-121.5zm-75.1 125.2h-46.6V190.1c0-49.7-64-51.6-64 6.9v62.5h-46.3V197c0-58.5-64-56.6-64-6.9v114.2H75.1c0-122.1-5.2-147.9 18.4-175 25.9-28.9 79.8-30.8 103.8 6.1l11.6 19.5 11.6-19.5c24.1-37.1 78.1-34.8 103.8-6.1 23.7 27.3 18.4 53 18.4 175z"], + "maxcdn": [512, 512, [], "f136", "M461.1 442.7h-97.4L415.6 200c2.3-10.2.9-19.5-4.4-25.7-5-6.1-13.7-9.6-24.2-9.6h-49.3l-59.5 278h-97.4l59.5-278h-83.4l-59.5 278H0l59.5-278-44.6-95.4H387c39.4 0 75.3 16.3 98.3 44.9 23.3 28.6 31.8 67.4 23.6 105.9l-47.8 222.6z"], + "medapps": [320, 512, [], "f3c6", "M118.3 238.4c3.5-12.5 6.9-33.6 13.2-33.6 8.3 1.8 9.6 23.4 18.6 36.6 4.6-23.5 5.3-85.1 14.1-86.7 9-.7 19.7 66.5 22 77.5 9.9 4.1 48.9 6.6 48.9 6.6 1.9 7.3-24 7.6-40 7.8-4.6 14.8-5.4 27.7-11.4 28-4.7.2-8.2-28.8-17.5-49.6l-9.4 65.5c-4.4 13-15.5-22.5-21.9-39.3-3.3-.1-62.4-1.6-47.6-7.8l31-5zM228 448c21.2 0 21.2-32 0-32H92c-21.2 0-21.2 32 0 32h136zm-24 64c21.2 0 21.2-32 0-32h-88c-21.2 0-21.2 32 0 32h88zm34.2-141.5c3.2-18.9 5.2-36.4 11.9-48.8 7.9-14.7 16.1-28.1 24-41 24.6-40.4 45.9-75.2 45.9-125.5C320 69.6 248.2 0 160 0S0 69.6 0 155.2c0 50.2 21.3 85.1 45.9 125.5 7.9 12.9 16 26.3 24 41 6.7 12.5 8.7 29.8 11.9 48.9 3.5 21 36.1 15.7 32.6-5.1-3.6-21.7-5.6-40.7-15.3-58.6C66.5 246.5 33 211.3 33 155.2 33 87.3 90 32 160 32s127 55.3 127 123.2c0 56.1-33.5 91.3-66.1 151.6-9.7 18-11.7 37.4-15.3 58.6-3.4 20.6 29 26.4 32.6 5.1z"], + "medium": [448, 512, [], "f23a", "M0 32v448h448V32H0zm372.2 106.1l-24 23c-2.1 1.6-3.1 4.2-2.7 6.7v169.3c-.4 2.6.6 5.2 2.7 6.7l23.5 23v5.1h-118V367l24.3-23.6c2.4-2.4 2.4-3.1 2.4-6.7V199.8l-67.6 171.6h-9.1L125 199.8v115c-.7 4.8 1 9.7 4.4 13.2l31.6 38.3v5.1H71.2v-5.1l31.6-38.3c3.4-3.5 4.9-8.4 4.1-13.2v-133c.4-3.7-1-7.3-3.8-9.8L75 138.1V133h87.3l67.4 148L289 133.1h83.2v5z"], + "medium-m": [512, 512, [], "f3c7", "M71.5 142.3c.6-5.9-1.7-11.8-6.1-15.8L20.3 72.1V64h140.2l108.4 237.7L364.2 64h133.7v8.1l-38.6 37c-3.3 2.5-5 6.7-4.3 10.8v272c-.7 4.1 1 8.3 4.3 10.8l37.7 37v8.1H307.3v-8.1l39.1-37.9c3.8-3.8 3.8-5 3.8-10.8V171.2L241.5 447.1h-14.7L100.4 171.2v184.9c-1.1 7.8 1.5 15.6 7 21.2l50.8 61.6v8.1h-144v-8L65 377.3c5.4-5.6 7.9-13.5 6.5-21.2V142.3z"], + "medrt": [544, 512, [], "f3c8", "M113.7 256c0 121.8 83.9 222.8 193.5 241.1-18.7 4.5-38.2 6.9-58.2 6.9C111.4 504 0 393 0 256S111.4 8 248.9 8c20.1 0 39.6 2.4 58.2 6.9C197.5 33.2 113.7 134.2 113.7 256m297.4 100.3c-77.7 55.4-179.6 47.5-240.4-14.6 5.5 14.1 12.7 27.7 21.7 40.5 61.6 88.2 182.4 109.3 269.7 47 87.3-62.3 108.1-184.3 46.5-272.6-9-12.9-19.3-24.3-30.5-34.2 37.4 78.8 10.7 178.5-67 233.9m-218.8-244c-1.4 1-2.7 2.1-4 3.1 64.3-17.8 135.9 4 178.9 60.5 35.7 47 42.9 106.6 24.4 158 56.7-56.2 67.6-142.1 22.3-201.8-50-65.5-149.1-74.4-221.6-19.8M296 224c-4.4 0-8-3.6-8-8v-40c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v40c0 4.4-3.6 8-8 8h-40c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h40c4.4 0 8 3.6 8 8v40c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-40c0-4.4 3.6-8 8-8h40c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-40z"], + "meetup": [512, 512, [], "f2e0", "M99 414.3c1.1 5.7-2.3 11.1-8 12.3-5.4 1.1-10.9-2.3-12-8-1.1-5.4 2.3-11.1 7.7-12.3 5.4-1.2 11.1 2.3 12.3 8zm143.1 71.4c-6.3 4.6-8 13.4-3.7 20 4.6 6.6 13.4 8.3 20 3.7 6.3-4.6 8-13.4 3.4-20-4.2-6.5-13.1-8.3-19.7-3.7zm-86-462.3c6.3-1.4 10.3-7.7 8.9-14-1.1-6.6-7.4-10.6-13.7-9.1-6.3 1.4-10.3 7.7-9.1 14 1.4 6.6 7.6 10.6 13.9 9.1zM34.4 226.3c-10-6.9-23.7-4.3-30.6 6-6.9 10-4.3 24 5.7 30.9 10 7.1 23.7 4.6 30.6-5.7 6.9-10.4 4.3-24.1-5.7-31.2zm272-170.9c10.6-6.3 13.7-20 7.7-30.3-6.3-10.6-19.7-14-30-7.7s-13.7 20-7.4 30.6c6 10.3 19.4 13.7 29.7 7.4zm-191.1 58c7.7-5.4 9.4-16 4.3-23.7s-15.7-9.4-23.1-4.3c-7.7 5.4-9.4 16-4.3 23.7 5.1 7.8 15.6 9.5 23.1 4.3zm372.3 156c-7.4 1.7-12.3 9.1-10.6 16.9 1.4 7.4 8.9 12.3 16.3 10.6 7.4-1.4 12.3-8.9 10.6-16.6-1.5-7.4-8.9-12.3-16.3-10.9zm39.7-56.8c-1.1-5.7-6.6-9.1-12-8-5.7 1.1-9.1 6.9-8 12.6 1.1 5.4 6.6 9.1 12.3 8 5.4-1.5 9.1-6.9 7.7-12.6zM447 138.9c-8.6 6-10.6 17.7-4.9 26.3 5.7 8.6 17.4 10.6 26 4.9 8.3-6 10.3-17.7 4.6-26.3-5.7-8.7-17.4-10.9-25.7-4.9zm-6.3 139.4c26.3 43.1 15.1 100-26.3 129.1-17.4 12.3-37.1 17.7-56.9 17.1-12 47.1-69.4 64.6-105.1 32.6-1.1.9-2.6 1.7-3.7 2.9-39.1 27.1-92.3 17.4-119.4-22.3-9.7-14.3-14.6-30.6-15.1-46.9-65.4-10.9-90-94-41.1-139.7-28.3-46.9.6-107.4 53.4-114.9C151.6 70 234.1 38.6 290.1 82c67.4-22.3 136.3 29.4 130.9 101.1 41.1 12.6 52.8 66.9 19.7 95.2zm-70 74.3c-3.1-20.6-40.9-4.6-43.1-27.1-3.1-32 43.7-101.1 40-128-3.4-24-19.4-29.1-33.4-29.4-13.4-.3-16.9 2-21.4 4.6-2.9 1.7-6.6 4.9-11.7-.3-6.3-6-11.1-11.7-19.4-12.9-12.3-2-17.7 2-26.6 9.7-3.4 2.9-12 12.9-20 9.1-3.4-1.7-15.4-7.7-24-11.4-16.3-7.1-40 4.6-48.6 20-12.9 22.9-38 113.1-41.7 125.1-8.6 26.6 10.9 48.6 36.9 47.1 11.1-.6 18.3-4.6 25.4-17.4 4-7.4 41.7-107.7 44.6-112.6 2-3.4 8.9-8 14.6-5.1 5.7 3.1 6.9 9.4 6 15.1-1.1 9.7-28 70.9-28.9 77.7-3.4 22.9 26.9 26.6 38.6 4 3.7-7.1 45.7-92.6 49.4-98.3 4.3-6.3 7.4-8.3 11.7-8 3.1 0 8.3.9 7.1 10.9-1.4 9.4-35.1 72.3-38.9 87.7-4.6 20.6 6.6 41.4 24.9 50.6 11.4 5.7 62.5 15.7 58.5-11.1zm5.7 92.3c-10.3 7.4-12.9 22-5.7 32.6 7.1 10.6 21.4 13.1 32 6 10.6-7.4 13.1-22 6-32.6-7.4-10.6-21.7-13.5-32.3-6z"], + "megaport": [496, 512, [], "f5a3", "M248 8C111.04 8 0 119.04 0 256c0 136.97 111.04 248 248 248 136.96 0 248-111.03 248-248C496 119.04 384.96 8 248 8zm85.46 267.67l59.66 59.67v87.05l-26.07 19.23L341 422.39v-65.46l-33.44-33.44-33.44 33.44v65.46L248 441.62l-26.12-19.23v-65.46l-33.44-33.44L155 356.92v65.46l-26.07 19.23-26.06-19.23v-87.05l59.47-59.47V188l59.5-59.5V52.88l26.06-19.23 26.06 19.23v75.64l59.5 59.5m-85.56-11.86l33.44 33.44V276L248 309.33l-33.54-33.54v-66.2l33.44-33.43z"], + "microsoft": [448, 512, [], "f3ca", "M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z"], + "mix": [448, 512, [], "f3cb", "M0 64v348.9c0 56.2 88 58.1 88 0V174.3c7.9-52.9 88-50.4 88 6.5v175.3c0 57.9 96 58 96 0V240c5.3-54.7 88-52.5 88 4.3v23.8c0 59.9 88 56.6 88 0V64H0z"], + "mixcloud": [640, 512, [], "f289", "M424.43 219.729C416.124 134.727 344.135 68 256.919 68c-72.266 0-136.224 46.516-159.205 114.074-54.545 8.029-96.63 54.822-96.63 111.582 0 62.298 50.668 112.966 113.243 112.966h289.614c52.329 0 94.969-42.362 94.969-94.693 0-45.131-32.118-83.063-74.48-92.2zm-20.489 144.53H114.327c-39.04 0-70.881-31.564-70.881-70.604s31.841-70.604 70.881-70.604c18.827 0 36.548 7.475 49.838 20.766 19.963 19.963 50.133-10.227 30.18-30.18-14.675-14.398-32.672-24.365-52.053-29.349 19.935-44.3 64.79-73.926 114.628-73.926 69.496 0 125.979 56.483 125.979 125.702 0 13.568-2.215 26.857-6.369 39.594-8.943 27.517 32.133 38.939 40.147 13.29 2.769-8.306 4.984-16.889 6.369-25.472 19.381 7.476 33.502 26.303 33.502 48.453 0 28.795-23.535 52.33-52.607 52.33zm235.069-52.33c0 44.024-12.737 86.386-37.102 122.657-4.153 6.092-10.798 9.414-17.72 9.414-16.317 0-27.127-18.826-17.443-32.949 19.381-29.349 29.903-63.682 29.903-99.122s-10.521-69.773-29.903-98.845c-15.655-22.831 19.361-47.24 35.163-23.534 24.366 35.993 37.102 78.356 37.102 122.379zm-70.88 0c0 31.565-9.137 62.021-26.857 88.325-4.153 6.091-10.798 9.136-17.72 9.136-17.201 0-27.022-18.979-17.443-32.948 13.013-19.104 19.658-41.255 19.658-64.513 0-22.981-6.645-45.408-19.658-64.512-15.761-22.986 19.008-47.095 35.163-23.535 17.719 26.026 26.857 56.483 26.857 88.047z"], + "mizuni": [496, 512, [], "f3cc", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm-80 351.9c-31.4 10.6-58.8 27.3-80 48.2V136c0-22.1 17.9-40 40-40s40 17.9 40 40v223.9zm120-9.9c-12.9-2-26.2-3.1-39.8-3.1-13.8 0-27.2 1.1-40.2 3.1V136c0-22.1 17.9-40 40-40s40 17.9 40 40v214zm120 57.7c-21.2-20.8-48.6-37.4-80-48V136c0-22.1 17.9-40 40-40s40 17.9 40 40v271.7z"], + "modx": [448, 512, [], "f285", "M356 241.8l36.7 23.7V480l-133-83.8L356 241.8zM440 75H226.3l-23 37.8 153.5 96.5L440 75zm-89 142.8L55.2 32v214.5l46 29L351 217.8zM97 294.2L8 437h213.7l125-200.5L97 294.2z"], + "monero": [496, 512, [], "f3d0", "M352 384h108.4C417 455.9 338.1 504 248 504S79 455.9 35.6 384H144V256.2L248 361l104-105v128zM88 336V128l159.4 159.4L408 128v208h74.8c8.5-25.1 13.2-52 13.2-80C496 119 385 8 248 8S0 119 0 256c0 28 4.6 54.9 13.2 80H88z"], + "napster": [496, 512, [], "f3d2", "M298.3 373.6c-14.2 13.6-31.3 24.1-50.4 30.5-19-6.4-36.2-16.9-50.3-30.5h100.7zm44-199.6c20-16.9 43.6-29.2 69.6-36.2V299c0 219.4-328 217.6-328 .3V137.7c25.9 6.9 49.6 19.6 69.5 36.4 56.8-40 132.5-39.9 188.9-.1zm-208.8-58.5c64.4-60 164.3-60.1 228.9-.2-7.1 3.5-13.9 7.3-20.6 11.5-58.7-30.5-129.2-30.4-187.9.1-6.3-4-13.9-8.2-20.4-11.4zM43.8 93.2v69.3c-58.4 36.5-58.4 121.1.1 158.3 26.4 245.1 381.7 240.3 407.6 1.5l.3-1.7c58.7-36.3 58.9-121.7.2-158.2V93.2c-17.3.5-34 3-50.1 7.4-82-91.5-225.5-91.5-307.5.1-16.3-4.4-33.1-7-50.6-7.5zM259.2 352s36-.3 61.3-1.5c10.2-.5 21.1-4 25.5-6.5 26.3-15.1 25.4-39.2 26.2-47.4-79.5-.6-99.9-3.9-113 55.4zm-135.5-55.3c.8 8.2-.1 32.3 26.2 47.4 4.4 2.5 15.2 6 25.5 6.5 25.3 1.1 61.3 1.5 61.3 1.5-13.2-59.4-33.7-56.1-113-55.4zm169.1 123.4c-3.2-5.3-6.9-7.3-6.9-7.3-24.8 7.3-52.2 6.9-75.9 0 0 0-2.9 1.5-6.4 6.6-2.8 4.1-3.7 9.6-3.7 9.6 29.1 17.6 67.1 17.6 96.2 0-.1-.1-.3-4-3.3-8.9z"], + "nimblr": [355, 512, [], "f5a8", "M232.6 299.29c15.57 0 27.15 11.46 27.15 26.96 0 15.55-11.62 26.96-27.15 26.96-15.7 0-27.15-11.57-27.15-26.96 0-15.51 11.58-26.96 27.15-26.96zM99.01 326.25c0-15.61 11.68-26.96 27.15-26.96 15.57 0 27.15 11.46 27.15 26.96 0 15.41-11.47 26.96-27.15 26.96-15.44 0-27.15-11.31-27.15-26.96m78.75-167.3C143 158.95 75.45 178.77 45.25 227L0 0v335.48C0 433.13 79.61 512 177.76 512c98.24 0 177.76-78.95 177.76-176.52 0-97.46-79.39-176.53-177.76-176.53zm0 308.12c-73.27 0-132.51-58.9-132.51-131.59 0-72.68 59.24-131.59 132.51-131.59 73.27 0 132.51 58.91 132.51 131.59s-59.25 131.59-132.51 131.59z"], + "nintendo-switch": [448, 512, [], "f418", "M95.9 33.5c-44.6 8-80.5 41-91.8 84.4C0 133.6-.3 142.8.2 264.4.4 376 .5 378.6 2.4 387.3c10.3 46.5 43.3 79.6 90.3 90.5 6.1 1.4 13.9 1.7 64.1 1.9 51.9.4 57.3.3 58.7-1.1 1.4-1.4 1.5-19.3 1.5-222.2 0-150.5-.3-221.3-.9-222.6-.9-1.7-2.5-1.8-56.9-1.7-44.2.1-57.5.4-63.3 1.4zm83.9 222.6V444l-37.8-.5c-34.8-.4-38.5-.6-45.5-2.3-29.9-7.7-52-30.7-58.3-60.7-2-9.4-2-240.1-.1-249.3 5.6-26.1 23.7-47.7 48-57.4 12.2-4.9 17.9-5.5 57.6-5.6l35.9-.1v188zm-75.9-131.2c-5.8 1.1-14.7 5.6-19.5 9.7-9.7 8.4-14.6 20.4-13.8 34.5.4 7.3.8 9.3 3.8 15.2 4.4 9 10.9 15.6 19.9 20 6.2 3.1 7.8 3.4 15.9 3.7 7.3.3 9.9 0 14.8-1.7 20.1-6.8 32.3-26.3 28.8-46.4-3.9-23.7-26.6-39.7-49.9-35zm158.2-92.3c-.4.3-.6 100.8-.6 223.5 0 202.3.1 222.8 1.5 223.4 2.5.9 74.5.6 83.4-.4 37.7-4.3 71-27.2 89-61.2 2.3-4.4 5.4-11.7 7-16.2 5.8-17.4 5.7-12.8 5.7-146.1 0-106.4-.2-122.3-1.5-129-9.2-48.3-46.1-84.8-94.5-93.1-6.5-1.1-16.5-1.4-48.8-1.4-22.4-.1-40.9.2-41.2.5zm99.1 202.1c14.5 3.8 26.3 14.8 31.2 28.9 3.1 8.7 3 21.5-.1 29.5-5.7 14.7-16.8 25-31.1 28.8-23.2 6-47.9-8-54.6-31-2-7-1.9-18.9.4-26.2 6.9-22.7 31-36.1 54.2-30z"], + "node": [640, 512, [], "f419", "M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4.1l14.8 8.8c.5.3 1.3.3 1.8 0L375 408c.5-.3.9-.9.9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6.3-.9 1-.9 1.6v66.7c0 .6.4 1.2.9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9.7-1.7 1.7-1.7h7.3c.9 0 1.7.7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7zm46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6.2.8.8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5.3-.4.5-.8.4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7.7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8zm54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1zm-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3 0 5.2 4.2 9.4 9.3 9.4 5.2-.1 9.4-4.3 9.4-9.4zm-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7.1 1.8 1.2 2.1 2.8.1 1 .3 2.7.6 3.3zm-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8zM137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3.4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3.7 2.5 1.8 3.2 1.1.7 2.5.7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1 1.3 0 2.6.3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1.7 2.6.7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2l.2-95zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4zm-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6.3-.9.9-.9 1.6v24.3c0 .7.4 1.3.9 1.6l21 12.1c.6.3 1.3.3 1.8 0l21-12.1c.6-.3.9-.9.9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3.7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1.7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2l36.7-21.3zM559 219c-.4.3-.7.7-.7 1.2v13.6c0 .5.3 1 .7 1.2l11.8 6.8c.4.3 1 .3 1.4 0L584 235c.4-.3.7-.7.7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0L559 219zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7.1-.5.2-1.1.2-1.7zm-74.3-124.9l-.8.5h1.1l-.3-.5zm76.2 130.2l-.4-.7v.9l.4-.2z"], + "node-js": [448, 512, [], "f3d3", "M224 508c-6.7 0-13.5-1.8-19.4-5.2l-61.7-36.5c-9.2-5.2-4.7-7-1.7-8 12.3-4.3 14.8-5.2 27.9-12.7 1.4-.8 3.2-.5 4.6.4l47.4 28.1c1.7 1 4.1 1 5.7 0l184.7-106.6c1.7-1 2.8-3 2.8-5V149.3c0-2.1-1.1-4-2.9-5.1L226.8 37.7c-1.7-1-4-1-5.7 0L36.6 144.3c-1.8 1-2.9 3-2.9 5.1v213.1c0 2 1.1 4 2.9 4.9l50.6 29.2c27.5 13.7 44.3-2.4 44.3-18.7V167.5c0-3 2.4-5.3 5.4-5.3h23.4c2.9 0 5.4 2.3 5.4 5.3V378c0 36.6-20 57.6-54.7 57.6-10.7 0-19.1 0-42.5-11.6l-48.4-27.9C8.1 389.2.7 376.3.7 362.4V149.3c0-13.8 7.4-26.8 19.4-33.7L204.6 9c11.7-6.6 27.2-6.6 38.8 0l184.7 106.7c12 6.9 19.4 19.8 19.4 33.7v213.1c0 13.8-7.4 26.7-19.4 33.7L243.4 502.8c-5.9 3.4-12.6 5.2-19.4 5.2zm149.1-210.1c0-39.9-27-50.5-83.7-58-57.4-7.6-63.2-11.5-63.2-24.9 0-11.1 4.9-25.9 47.4-25.9 37.9 0 51.9 8.2 57.7 33.8.5 2.4 2.7 4.2 5.2 4.2h24c1.5 0 2.9-.6 3.9-1.7s1.5-2.6 1.4-4.1c-3.7-44.1-33-64.6-92.2-64.6-52.7 0-84.1 22.2-84.1 59.5 0 40.4 31.3 51.6 81.8 56.6 60.5 5.9 65.2 14.8 65.2 26.7 0 20.6-16.6 29.4-55.5 29.4-48.9 0-59.6-12.3-63.2-36.6-.4-2.6-2.6-4.5-5.3-4.5h-23.9c-3 0-5.3 2.4-5.3 5.3 0 31.1 16.9 68.2 97.8 68.2 58.4-.1 92-23.2 92-63.4z"], + "npm": [576, 512, [], "f3d4", "M288 288h-32v-64h32v64zm288-128v192H288v32H160v-32H0V160h576zm-416 32H32v128h64v-96h32v96h32V192zm160 0H192v160h64v-32h64V192zm224 0H352v128h64v-96h32v96h32v-96h32v96h32V192z"], + "ns8": [640, 512, [], "f3d5", "M187.1 159.9l-34.2 113.7-54.5-113.7H49L0 320h44.9L76 213.5 126.6 320h56.9L232 159.9h-44.9zm452.5-.9c-2.9-18-23.9-28.1-42.1-31.3-44.6-7.8-101.9 16.3-88.5 58.8v.1c-43.8 8.7-74.3 26.8-94.2 48.2-3-9.8-13.6-16.6-34-16.6h-87.6c-9.3 0-12.9-2.3-11.5-7.4 1.6-5.5 1.9-6.8 3.7-12.2 2.1-6.4 7.8-7.1 13.3-7.1h133.5l9.7-31.5c-139.7 0-144.5-.5-160.1 1.2-12.3 1.3-23.5 4.8-30.6 15-6.8 9.9-14.4 35.6-17.6 47.1-5.4 19.4-.6 28.6 32.8 28.6h87.3c7.8 0 8.8 2.7 7.7 6.6-1.1 4.4-2.8 10-4.5 14.6-1.6 4.2-4.7 7.4-13.8 7.4H216.3L204.7 320c139.9 0 145.3-.6 160.9-2.3 6.6-.7 13-2.1 18.5-4.9.2 3.7.5 7.3 1.2 10.8 5.4 30.5 27.4 52.3 56.8 59.5 48.6 11.9 108.7-16.8 135.1-68 18.7-36.2 14.1-76.2-3.4-105.5h.1c29.6-5.9 70.3-22 65.7-50.6zM530.7 263.7c-5.9 29.5-36.6 47.8-61.6 43.9-30.9-4.8-38.5-39.5-14.1-64.8 16.2-16.8 45.2-24 68.5-26.9 6.7 14.1 10.3 32 7.2 47.8zm21.8-83.1c-4.2-6-9.8-18.5-2.5-26.3 6.7-7.2 20.9-10.1 31.8-7.7 15.3 3.4 19.7 15.9 4.9 24.4-10.7 6.1-23.6 8.1-34.2 9.6z"], + "nutritionix": [400, 512, [], "f3d6", "M88 8.1S221.4-.1 209 112.5c0 0 19.1-74.9 103-40.6 0 0-17.7 74-88 56 0 0 14.6-54.6 66.1-56.6 0 0-39.9-10.3-82.1 48.8 0 0-19.8-94.5-93.6-99.7 0 0 75.2 19.4 77.6 107.5 0 .1-106.4 7-104-119.8zm312 315.6c0 48.5-9.7 95.3-32 132.3-42.2 30.9-105 48-168 48-62.9 0-125.8-17.1-168-48C9.7 419 0 372.2 0 323.7 0 275.3 17.7 229 40 192c42.2-30.9 97.1-48.6 160-48.6 63 0 117.8 17.6 160 48.6 22.3 37 40 83.3 40 131.7zM120 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM192 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM264 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM336 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm24-39.6c-4.8-22.3-7.4-36.9-16-56-38.8-19.9-90.5-32-144-32S94.8 180.1 56 200c-8.8 19.5-11.2 33.9-16 56 42.2-7.9 98.7-14.8 160-14.8s117.8 6.9 160 14.8z"], + "odnoklassniki": [320, 512, [], "f263", "M275.1 334c-27.4 17.4-65.1 24.3-90 26.9l20.9 20.6 76.3 76.3c27.9 28.6-17.5 73.3-45.7 45.7-19.1-19.4-47.1-47.4-76.3-76.6L84 503.4c-28.2 27.5-73.6-17.6-45.4-45.7 19.4-19.4 47.1-47.4 76.3-76.3l20.6-20.6c-24.6-2.6-62.9-9.1-90.6-26.9-32.6-21-46.9-33.3-34.3-59 7.4-14.6 27.7-26.9 54.6-5.7 0 0 36.3 28.9 94.9 28.9s94.9-28.9 94.9-28.9c26.9-21.1 47.1-8.9 54.6 5.7 12.4 25.7-1.9 38-34.5 59.1zM30.3 129.7C30.3 58 88.6 0 160 0s129.7 58 129.7 129.7c0 71.4-58.3 129.4-129.7 129.4s-129.7-58-129.7-129.4zm66 0c0 35.1 28.6 63.7 63.7 63.7s63.7-28.6 63.7-63.7c0-35.4-28.6-64-63.7-64s-63.7 28.6-63.7 64z"], + "odnoklassniki-square": [448, 512, [], "f264", "M184.2 177.1c0-22.1 17.9-40 39.8-40s39.8 17.9 39.8 40c0 22-17.9 39.8-39.8 39.8s-39.8-17.9-39.8-39.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-305.1 97.1c0 44.6 36.4 80.9 81.1 80.9s81.1-36.2 81.1-80.9c0-44.8-36.4-81.1-81.1-81.1s-81.1 36.2-81.1 81.1zm174.5 90.7c-4.6-9.1-17.3-16.8-34.1-3.6 0 0-22.7 18-59.3 18s-59.3-18-59.3-18c-16.8-13.2-29.5-5.5-34.1 3.6-7.9 16.1 1.1 23.7 21.4 37 17.3 11.1 41.2 15.2 56.6 16.8l-12.9 12.9c-18.2 18-35.5 35.5-47.7 47.7-17.6 17.6 10.7 45.8 28.4 28.6l47.7-47.9c18.2 18.2 35.7 35.7 47.7 47.9 17.6 17.2 46-10.7 28.6-28.6l-47.7-47.7-13-12.9c15.5-1.6 39.1-5.9 56.2-16.8 20.4-13.3 29.3-21 21.5-37z"], + "old-republic": [496, 512, [], "f510", "M235.76 10.23c7.5-.31 15-.28 22.5-.09 3.61.14 7.2.4 10.79.73 4.92.27 9.79 1.03 14.67 1.62 2.93.43 5.83.98 8.75 1.46 7.9 1.33 15.67 3.28 23.39 5.4 12.24 3.47 24.19 7.92 35.76 13.21 26.56 12.24 50.94 29.21 71.63 49.88 20.03 20.09 36.72 43.55 48.89 69.19 1.13 2.59 2.44 5.1 3.47 7.74 2.81 6.43 5.39 12.97 7.58 19.63 4.14 12.33 7.34 24.99 9.42 37.83.57 3.14 1.04 6.3 1.4 9.47.55 3.83.94 7.69 1.18 11.56.83 8.34.84 16.73.77 25.1-.07 4.97-.26 9.94-.75 14.89-.24 3.38-.51 6.76-.98 10.12-.39 2.72-.63 5.46-1.11 8.17-.9 5.15-1.7 10.31-2.87 15.41-4.1 18.5-10.3 36.55-18.51 53.63-15.77 32.83-38.83 62.17-67.12 85.12a246.503 246.503 0 0 1-56.91 34.86c-6.21 2.68-12.46 5.25-18.87 7.41-3.51 1.16-7.01 2.38-10.57 3.39-6.62 1.88-13.29 3.64-20.04 5-4.66.91-9.34 1.73-14.03 2.48-5.25.66-10.5 1.44-15.79 1.74-6.69.66-13.41.84-20.12.81-6.82.03-13.65-.12-20.45-.79-3.29-.23-6.57-.5-9.83-.95-2.72-.39-5.46-.63-8.17-1.11-4.12-.72-8.25-1.37-12.35-2.22-4.25-.94-8.49-1.89-12.69-3.02-8.63-2.17-17.08-5.01-25.41-8.13-10.49-4.12-20.79-8.75-30.64-14.25-2.14-1.15-4.28-2.29-6.35-3.57-11.22-6.58-21.86-14.1-31.92-22.34-34.68-28.41-61.41-66.43-76.35-108.7-3.09-8.74-5.71-17.65-7.8-26.68-1.48-6.16-2.52-12.42-3.58-18.66-.4-2.35-.61-4.73-.95-7.09-.6-3.96-.75-7.96-1.17-11.94-.8-9.47-.71-18.99-.51-28.49.14-3.51.34-7.01.7-10.51.31-3.17.46-6.37.92-9.52.41-2.81.65-5.65 1.16-8.44.7-3.94 1.3-7.9 2.12-11.82 3.43-16.52 8.47-32.73 15.26-48.18 1.15-2.92 2.59-5.72 3.86-8.59 8.05-16.71 17.9-32.56 29.49-47.06 20-25.38 45.1-46.68 73.27-62.47 7.5-4.15 15.16-8.05 23.07-11.37 15.82-6.88 32.41-11.95 49.31-15.38 3.51-.67 7.04-1.24 10.56-1.85 2.62-.47 5.28-.7 7.91-1.08 3.53-.53 7.1-.68 10.65-1.04 2.46-.24 4.91-.36 7.36-.51m8.64 24.41c-9.23.1-18.43.99-27.57 2.23-7.3 1.08-14.53 2.6-21.71 4.3-13.91 3.5-27.48 8.34-40.46 14.42-10.46 4.99-20.59 10.7-30.18 17.22-4.18 2.92-8.4 5.8-12.34 9.03-5.08 3.97-9.98 8.17-14.68 12.59-2.51 2.24-4.81 4.7-7.22 7.06-28.22 28.79-48.44 65.39-57.5 104.69-2.04 8.44-3.54 17.02-4.44 25.65-1.1 8.89-1.44 17.85-1.41 26.8.11 7.14.38 14.28 1.22 21.37.62 7.12 1.87 14.16 3.2 21.18 1.07 4.65 2.03 9.32 3.33 13.91 6.29 23.38 16.5 45.7 30.07 65.75 8.64 12.98 18.78 24.93 29.98 35.77 16.28 15.82 35.05 29.04 55.34 39.22 7.28 3.52 14.66 6.87 22.27 9.63 5.04 1.76 10.06 3.57 15.22 4.98 11.26 3.23 22.77 5.6 34.39 7.06 2.91.29 5.81.61 8.72.9 13.82 1.08 27.74 1 41.54-.43 4.45-.6 8.92-.99 13.35-1.78 3.63-.67 7.28-1.25 10.87-2.1 4.13-.98 8.28-1.91 12.36-3.07 26.5-7.34 51.58-19.71 73.58-36.2 15.78-11.82 29.96-25.76 42.12-41.28 3.26-4.02 6.17-8.31 9.13-12.55 3.39-5.06 6.58-10.25 9.6-15.54 2.4-4.44 4.74-8.91 6.95-13.45 5.69-12.05 10.28-24.62 13.75-37.49 2.59-10.01 4.75-20.16 5.9-30.45 1.77-13.47 1.94-27.1 1.29-40.65-.29-3.89-.67-7.77-1-11.66-2.23-19.08-6.79-37.91-13.82-55.8-5.95-15.13-13.53-29.63-22.61-43.13-12.69-18.8-28.24-35.68-45.97-49.83-25.05-20-54.47-34.55-85.65-42.08-7.78-1.93-15.69-3.34-23.63-4.45-3.91-.59-7.85-.82-11.77-1.24-7.39-.57-14.81-.72-22.22-.58zM139.26 83.53c13.3-8.89 28.08-15.38 43.3-20.18-3.17 1.77-6.44 3.38-9.53 5.29-11.21 6.68-21.52 14.9-30.38 24.49-6.8 7.43-12.76 15.73-17.01 24.89-3.29 6.86-5.64 14.19-6.86 21.71-.93 4.85-1.3 9.81-1.17 14.75.13 13.66 4.44 27.08 11.29 38.82 5.92 10.22 13.63 19.33 22.36 27.26 4.85 4.36 10.24 8.09 14.95 12.6 2.26 2.19 4.49 4.42 6.43 6.91 2.62 3.31 4.89 6.99 5.99 11.1.9 3.02.66 6.2.69 9.31.02 4.1-.04 8.2.03 12.3.14 3.54-.02 7.09.11 10.63.08 2.38.02 4.76.05 7.14.16 5.77.06 11.53.15 17.3.11 2.91.02 5.82.13 8.74.03 1.63.13 3.28-.03 4.91-.91.12-1.82.18-2.73.16-10.99 0-21.88-2.63-31.95-6.93-6-2.7-11.81-5.89-17.09-9.83-5.75-4.19-11.09-8.96-15.79-14.31-6.53-7.24-11.98-15.39-16.62-23.95-1.07-2.03-2.24-4.02-3.18-6.12-1.16-2.64-2.62-5.14-3.67-7.82-4.05-9.68-6.57-19.94-8.08-30.31-.49-4.44-1.09-8.88-1.2-13.35-.7-15.73.84-31.55 4.67-46.82 2.12-8.15 4.77-16.18 8.31-23.83 6.32-14.2 15.34-27.18 26.3-38.19 6.28-6.2 13.13-11.84 20.53-16.67zm175.37-20.12c2.74.74 5.41 1.74 8.09 2.68 6.36 2.33 12.68 4.84 18.71 7.96 13.11 6.44 25.31 14.81 35.82 24.97 10.2 9.95 18.74 21.6 25.14 34.34 1.28 2.75 2.64 5.46 3.81 8.26 6.31 15.1 10 31.26 11.23 47.57.41 4.54.44 9.09.45 13.64.07 11.64-1.49 23.25-4.3 34.53-1.97 7.27-4.35 14.49-7.86 21.18-3.18 6.64-6.68 13.16-10.84 19.24-6.94 10.47-15.6 19.87-25.82 27.22-10.48 7.64-22.64 13.02-35.4 15.38-3.51.69-7.08 1.08-10.66 1.21-1.85.06-3.72.16-5.56-.1-.28-2.15 0-4.31-.01-6.46-.03-3.73.14-7.45.1-11.17.19-7.02.02-14.05.21-21.07.03-2.38-.03-4.76.03-7.14.17-5.07-.04-10.14.14-15.21.1-2.99-.24-6.04.51-8.96.66-2.5 1.78-4.86 3.09-7.08 4.46-7.31 11.06-12.96 17.68-18.26 5.38-4.18 10.47-8.77 15.02-13.84 7.68-8.37 14.17-17.88 18.78-28.27 2.5-5.93 4.52-12.1 5.55-18.46.86-4.37 1.06-8.83 1.01-13.27-.02-7.85-1.4-15.65-3.64-23.17-1.75-5.73-4.27-11.18-7.09-16.45-3.87-6.93-8.65-13.31-13.96-19.2-9.94-10.85-21.75-19.94-34.6-27.1-1.85-1.02-3.84-1.82-5.63-2.97zm-100.8 58.45c.98-1.18 1.99-2.33 3.12-3.38-.61.93-1.27 1.81-1.95 2.68-3.1 3.88-5.54 8.31-7.03 13.06-.87 3.27-1.68 6.6-1.73 10-.07 2.52-.08 5.07.32 7.57 1.13 7.63 4.33 14.85 8.77 21.12 2 2.7 4.25 5.27 6.92 7.33 1.62 1.27 3.53 2.09 5.34 3.05 3.11 1.68 6.32 3.23 9.07 5.48 2.67 2.09 4.55 5.33 4.4 8.79-.01 73.67 0 147.34-.01 221.02 0 1.35-.08 2.7.04 4.04.13 1.48.82 2.83 1.47 4.15.86 1.66 1.78 3.34 3.18 4.62.85.77 1.97 1.4 3.15 1.24 1.5-.2 2.66-1.35 3.45-2.57.96-1.51 1.68-3.16 2.28-4.85.76-2.13.44-4.42.54-6.63.14-4.03-.02-8.06.14-12.09.03-5.89.03-11.77.06-17.66.14-3.62.03-7.24.11-10.86.15-4.03-.02-8.06.14-12.09.03-5.99.03-11.98.07-17.97.14-3.62.02-7.24.11-10.86.14-3.93-.02-7.86.14-11.78.03-5.99.03-11.98.06-17.97.16-3.94-.01-7.88.19-11.82.29 1.44.13 2.92.22 4.38.19 3.61.42 7.23.76 10.84.32 3.44.44 6.89.86 10.32.37 3.1.51 6.22.95 9.31.57 4.09.87 8.21 1.54 12.29 1.46 9.04 2.83 18.11 5.09 26.99 1.13 4.82 2.4 9.61 4 14.3 2.54 7.9 5.72 15.67 10.31 22.62 1.73 2.64 3.87 4.98 6.1 7.21.27.25.55.51.88.71.6.25 1.31-.07 1.7-.57.71-.88 1.17-1.94 1.7-2.93 4.05-7.8 8.18-15.56 12.34-23.31.7-1.31 1.44-2.62 2.56-3.61 1.75-1.57 3.84-2.69 5.98-3.63 2.88-1.22 5.9-2.19 9.03-2.42 6.58-.62 13.11.75 19.56 1.85 3.69.58 7.4 1.17 11.13 1.41 3.74.1 7.48.05 11.21-.28 8.55-.92 16.99-2.96 24.94-6.25 5.3-2.24 10.46-4.83 15.31-7.93 11.46-7.21 21.46-16.57 30.04-27.01 1.17-1.42 2.25-2.9 3.46-4.28-1.2 3.24-2.67 6.37-4.16 9.48-1.25 2.9-2.84 5.61-4.27 8.42-5.16 9.63-11.02 18.91-17.75 27.52-4.03 5.21-8.53 10.05-13.33 14.57-6.64 6.05-14.07 11.37-22.43 14.76-8.21 3.37-17.31 4.63-26.09 3.29-3.56-.58-7.01-1.69-10.41-2.88-2.79-.97-5.39-2.38-8.03-3.69-3.43-1.71-6.64-3.81-9.71-6.08 2.71 3.06 5.69 5.86 8.7 8.61 4.27 3.76 8.74 7.31 13.63 10.23 3.98 2.45 8.29 4.4 12.84 5.51 1.46.37 2.96.46 4.45.6-1.25 1.1-2.63 2.04-3.99 2.98-9.61 6.54-20.01 11.86-30.69 16.43-20.86 8.7-43.17 13.97-65.74 15.34-4.66.24-9.32.36-13.98.36-4.98-.11-9.97-.13-14.92-.65-11.2-.76-22.29-2.73-33.17-5.43-10.35-2.71-20.55-6.12-30.3-10.55-8.71-3.86-17.12-8.42-24.99-13.79-1.83-1.31-3.74-2.53-5.37-4.08 6.6-1.19 13.03-3.39 18.99-6.48 5.74-2.86 10.99-6.66 15.63-11.07 2.24-2.19 4.29-4.59 6.19-7.09-3.43 2.13-6.93 4.15-10.62 5.78-4.41 2.16-9.07 3.77-13.81 5.02-5.73 1.52-11.74 1.73-17.61 1.14-8.13-.95-15.86-4.27-22.51-8.98-4.32-2.94-8.22-6.43-11.96-10.06-9.93-10.16-18.2-21.81-25.66-33.86-3.94-6.27-7.53-12.75-11.12-19.22-1.05-2.04-2.15-4.05-3.18-6.1 2.85 2.92 5.57 5.97 8.43 8.88 8.99 8.97 18.56 17.44 29.16 24.48 7.55 4.9 15.67 9.23 24.56 11.03 3.11.73 6.32.47 9.47.81 2.77.28 5.56.2 8.34.3 5.05.06 10.11.04 15.16-.16 3.65-.16 7.27-.66 10.89-1.09 2.07-.25 4.11-.71 6.14-1.2 3.88-.95 8.11-.96 11.83.61 4.76 1.85 8.44 5.64 11.38 9.71 2.16 3.02 4.06 6.22 5.66 9.58 1.16 2.43 2.46 4.79 3.55 7.26 1 2.24 2.15 4.42 3.42 6.52.67 1.02 1.4 2.15 2.62 2.55 1.06-.75 1.71-1.91 2.28-3.03 2.1-4.16 3.42-8.65 4.89-13.05 2.02-6.59 3.78-13.27 5.19-20.02 2.21-9.25 3.25-18.72 4.54-28.13.56-3.98.83-7.99 1.31-11.97.87-10.64 1.9-21.27 2.24-31.94.08-1.86.24-3.71.25-5.57.01-4.35.25-8.69.22-13.03-.01-2.38-.01-4.76 0-7.13.05-5.07-.2-10.14-.22-15.21-.2-6.61-.71-13.2-1.29-19.78-.73-5.88-1.55-11.78-3.12-17.51-2.05-7.75-5.59-15.03-9.8-21.82-3.16-5.07-6.79-9.88-11.09-14.03-3.88-3.86-8.58-7.08-13.94-8.45-1.5-.41-3.06-.45-4.59-.64.07-2.99.7-5.93 1.26-8.85 1.59-7.71 3.8-15.3 6.76-22.6 1.52-4.03 3.41-7.9 5.39-11.72 3.45-6.56 7.62-12.79 12.46-18.46zm31.27 1.7c.35-.06.71-.12 1.07-.19.19 1.79.09 3.58.1 5.37v38.13c-.01 1.74.13 3.49-.15 5.22-.36-.03-.71-.05-1.06-.05-.95-3.75-1.72-7.55-2.62-11.31-.38-1.53-.58-3.09-1.07-4.59-1.7-.24-3.43-.17-5.15-.2-5.06-.01-10.13 0-15.19-.01-1.66-.01-3.32.09-4.98-.03-.03-.39-.26-.91.16-1.18 1.28-.65 2.72-.88 4.06-1.35 3.43-1.14 6.88-2.16 10.31-3.31 1.39-.48 2.9-.72 4.16-1.54.04-.56.02-1.13-.05-1.68-1.23-.55-2.53-.87-3.81-1.28-3.13-1.03-6.29-1.96-9.41-3.02-1.79-.62-3.67-1-5.41-1.79-.03-.37-.07-.73-.11-1.09 5.09-.19 10.2.06 15.3-.12 3.36-.13 6.73.08 10.09-.07.12-.39.26-.77.37-1.16 1.08-4.94 2.33-9.83 3.39-14.75zm5.97-.2c.36.05.72.12 1.08.2.98 3.85 1.73 7.76 2.71 11.61.36 1.42.56 2.88 1.03 4.27 2.53.18 5.07-.01 7.61.05 5.16.12 10.33.12 15.49.07.76-.01 1.52.03 2.28.08-.04.36-.07.72-.1 1.08-1.82.83-3.78 1.25-5.67 1.89-3.73 1.23-7.48 2.39-11.22 3.57-.57.17-1.12.42-1.67.64-.15.55-.18 1.12-.12 1.69.87.48 1.82.81 2.77 1.09 4.88 1.52 9.73 3.14 14.63 4.6.38.13.78.27 1.13.49.4.27.23.79.15 1.18-1.66.13-3.31.03-4.97.04-5.17.01-10.33-.01-15.5.01-1.61.03-3.22-.02-4.82.21-.52 1.67-.72 3.42-1.17 5.11-.94 3.57-1.52 7.24-2.54 10.78-.36.01-.71.02-1.06.06-.29-1.73-.15-3.48-.15-5.22v-38.13c.02-1.78-.08-3.58.11-5.37zM65.05 168.33c1.12-2.15 2.08-4.4 3.37-6.46-1.82 7.56-2.91 15.27-3.62 23-.8 7.71-.85 15.49-.54 23.23 1.05 19.94 5.54 39.83 14.23 57.88 2.99 5.99 6.35 11.83 10.5 17.11 6.12 7.47 12.53 14.76 19.84 21.09 4.8 4.1 9.99 7.78 15.54 10.8 3.27 1.65 6.51 3.39 9.94 4.68 5.01 2.03 10.19 3.61 15.42 4.94 3.83.96 7.78 1.41 11.52 2.71 5 1.57 9.47 4.61 13.03 8.43 4.93 5.23 8.09 11.87 10.2 18.67.99 2.9 1.59 5.91 2.17 8.92.15.75.22 1.52.16 2.29-6.5 2.78-13.26 5.06-20.26 6.18-4.11.78-8.29.99-12.46 1.08-10.25.24-20.47-1.76-30.12-5.12-3.74-1.42-7.49-2.85-11.03-4.72-8.06-3.84-15.64-8.7-22.46-14.46-2.92-2.55-5.83-5.13-8.4-8.03-9.16-9.83-16.3-21.41-21.79-33.65-2.39-5.55-4.61-11.18-6.37-16.96-1.17-3.94-2.36-7.89-3.26-11.91-.75-2.94-1.22-5.95-1.87-8.92-.46-2.14-.69-4.32-1.03-6.48-.85-5.43-1.28-10.93-1.33-16.43.11-6.18.25-12.37 1.07-18.5.4-2.86.67-5.74 1.15-8.6.98-5.7 2.14-11.37 3.71-16.93 3.09-11.65 7.48-22.95 12.69-33.84zm363.73-6.44c1.1 1.66 1.91 3.48 2.78 5.26 2.1 4.45 4.24 8.9 6.02 13.49 7.61 18.76 12.3 38.79 13.04 59.05.02 1.76.07 3.52.11 5.29.13 9.57-1.27 19.09-3.18 28.45-.73 3.59-1.54 7.17-2.58 10.69-4.04 14.72-10 29-18.41 41.78-8.21 12.57-19.01 23.55-31.84 31.41-5.73 3.59-11.79 6.64-18.05 9.19-5.78 2.19-11.71 4.03-17.8 5.11-6.4 1.05-12.91 1.52-19.4 1.23-7.92-.48-15.78-2.07-23.21-4.85-1.94-.8-3.94-1.46-5.84-2.33-.21-1.51.25-2.99.53-4.46 1.16-5.74 3.03-11.36 5.7-16.58 2.37-4.51 5.52-8.65 9.46-11.9 2.43-2.05 5.24-3.61 8.16-4.83 3.58-1.5 7.47-1.97 11.24-2.83 7.23-1.71 14.37-3.93 21.15-7 10.35-4.65 19.71-11.38 27.65-19.46 1.59-1.61 3.23-3.18 4.74-4.87 3.37-3.76 6.71-7.57 9.85-11.53 7.48-10.07 12.82-21.59 16.71-33.48 1.58-5.3 3.21-10.6 4.21-16.05.63-2.87 1.04-5.78 1.52-8.68.87-6.09 1.59-12.22 1.68-18.38.12-6.65.14-13.32-.53-19.94-.73-7.99-1.87-15.96-3.71-23.78z"], + "opencart": [640, 512, [], "f23d", "M423.3 440.7c0 25.3-20.3 45.6-45.6 45.6s-45.8-20.3-45.8-45.6 20.6-45.8 45.8-45.8c25.4 0 45.6 20.5 45.6 45.8zm-253.9-45.8c-25.3 0-45.6 20.6-45.6 45.8s20.3 45.6 45.6 45.6 45.8-20.3 45.8-45.6-20.5-45.8-45.8-45.8zm291.7-270C158.9 124.9 81.9 112.1 0 25.7c34.4 51.7 53.3 148.9 373.1 144.2 333.3-5 130 86.1 70.8 188.9 186.7-166.7 319.4-233.9 17.2-233.9z"], + "openid": [448, 512, [], "f19b", "M271.5 432l-68 32C88.5 453.7 0 392.5 0 318.2c0-71.5 82.5-131 191.7-144.3v43c-71.5 12.5-124 53-124 101.3 0 51 58.5 93.3 135.7 103v-340l68-33.2v384zM448 291l-131.3-28.5 36.8-20.7c-19.5-11.5-43.5-20-70-24.8v-43c46.2 5.5 87.7 19.5 120.3 39.3l35-19.8L448 291z"], + "opera": [496, 512, [], "f26a", "M313.9 32.7c-170.2 0-252.6 223.8-147.5 355.1 36.5 45.4 88.6 75.6 147.5 75.6 36.3 0 70.3-11.1 99.4-30.4-43.8 39.2-101.9 63-165.3 63-3.9 0-8 0-11.9-.3C104.6 489.6 0 381.1 0 248 0 111 111 0 248 0h.8c63.1.3 120.7 24.1 164.4 63.1-29-19.4-63.1-30.4-99.3-30.4zm101.8 397.7c-40.9 24.7-90.7 23.6-132-5.8 56.2-20.5 97.7-91.6 97.7-176.6 0-84.7-41.2-155.8-97.4-176.6 41.8-29.2 91.2-30.3 132.9-5 105.9 98.7 105.5 265.7-1.2 364z"], + "optin-monster": [576, 512, [], "f23c", "M550.671 450.303c0 11.62-15.673 19.457-32.158 14.863-12.16-3.243-31.346-17.565-36.211-27.294-5.674-11.62 4.054-32.698 18.916-30.806 15.674 1.621 49.453 25.401 49.453 43.237zM372.86 75.223c-3.783-72.151-100.796-79.718-125.928-23.51 44.588-24.321 90.257-15.673 125.928 23.51zM74.795 407.066c-15.673 1.621-49.452 25.401-49.452 43.237 0 11.62 15.673 19.457 32.157 14.863 12.16-3.243 31.076-17.565 35.94-27.294 5.946-11.62-3.782-32.698-18.645-30.806zm497.765 14.322c1.081 3.513 1.892 7.026 1.892 10.809.81 31.616-44.317 64.045-73.503 65.125-17.295.81-34.59-8.377-42.696-23.51-113.497 4.053-226.994 4.864-340.22 0-8.377 15.133-25.672 24.05-42.967 23.51-28.915-1.081-74.043-33.509-73.503-65.125.27-3.783.811-7.296 1.892-10.809-5.566-9.463-4.845-15.282 5.405-11.62 3.243-5.134 7.026-9.458 11.08-13.782-2.57-10.917 1.27-14.094 11.079-9.188 4.594-3.243 9.998-6.485 15.944-9.188 0-15.757 11.839-11.131 17.295-5.675 12.467-1.78 20.129.709 26.753 5.675v-19.726c-12.987 0-40.641-11.375-45.94-36.212-4.974-20.725 2.607-38.075 25.132-47.56.81-5.945 8.107-14.052 14.862-15.944 7.567-1.892 12.431 4.594 14.052 10.269 7.425 0 17.757 1.465 21.078 8.107 5.405-.541 11.079-1.352 16.484-1.892-2.432-1.892-5.134-3.513-8.107-4.594-5.134-8.917-13.782-11.079-24.591-11.62 0-.81 0-1.621.27-2.702-19.727-.541-44.048-5.675-54.857-17.835-21.321-23.638-15.935-83.577 12.16-103.498 8.377-5.675 21.618-.811 22.699 9.728 2.425 20.598.399 26.833 26.212 25.942 8.107-7.836 16.755-14.592 26.483-19.997-14.862-1.352-28.914 1.621-43.778 3.783 12.752-12.48 23.953-25.442 56.748-42.427 23.511-11.89 49.993-20.808 76.205-23.239-18.646-7.837-39.993-11.891-59.721-16.484 76.475-16.214 174.569-22.159 244.289 37.562 18.105 15.403 32.427 36.211 42.696 59.992 39.799 4.853 36.47-5.581 38.643-25.132 1.081-10.269 14.322-15.403 22.699-9.458 14.862 10.539 22.159 30.806 24.59 48.101 2.162 17.835.27 41.345-12.43 55.127-10.809 12.16-34.32 17.565-53.776 18.105v2.703c-11.08.27-20.268 2.432-25.673 11.62-2.972 1.081-5.674 2.703-8.377 4.594 5.675.54 11.35 1.351 16.755 1.891 1.869-5.619 12.535-8.377 21.077-8.377 1.621-5.405 6.756-11.89 14.052-10.269s14.052 9.998 14.863 15.944c10.809 4.324 22.159 12.16 25.131 25.672 1.892 8.107 1.621 15.133.27 21.888-5.726 25.262-33.361 36.212-45.939 36.212 0 6.756 0 13.241-.27 19.726 8.01-6.006 16.367-7.158 26.752-5.675 5.919-5.919 17.565-9.41 17.565 5.675 5.675 2.703 11.349 5.945 15.944 9.188 10.1-5.051 13.669-.539 10.809 9.188 4.053 4.323 8.107 8.917 11.079 13.782 10.136-3.62 11.021 2.078 5.409 11.62zm-73.773-254.016c17.295 6.756 26.212 22.159 30.265 35.67 1.081-10.539-2.702-39.453-13.782-51.073-7.296-7.296-14.052-5.134-14.052.81.001 6.216-1.35 11.62-2.431 14.593zm-18.646 12.43c12.971 15.673 17.024 41.615 12.7 62.963 10.809-2.162 20.537-6.215 26.212-12.16 1.892-2.162 3.783-4.864 4.864-7.566-1.081-21.348-10.269-42.697-29.725-48.912-3.242 3.243-9.187 4.864-14.051 5.675zm-21.889.811c7.567 20.537 12.431 42.696 14.322 64.585 3.513 0 7.567-.27 11.62-.811 5.945-24.321-.27-51.614-14.052-63.504-3.783 0-8.107 0-11.89-.27zM77.768 167.372c-1.081-2.973-2.432-8.377-2.432-14.593 0-5.945-7.026-8.107-14.052-.81-11.35 11.62-14.863 40.534-13.782 51.073 4.053-13.512 12.971-28.915 30.266-35.67zm5.675 75.394c-4.324-21.348-.27-47.291 12.701-62.963-4.865-.811-10.809-2.432-14.052-5.675-19.457 6.215-28.375 27.563-29.726 48.912 1.351 2.702 2.972 5.404 4.864 7.566 5.675 6.215 15.403 9.998 26.213 12.16zm41.345-61.073c-5.134 1.081-9.998 2.973-14.862 4.865l-12.16 5.134v-.27c-7.296 14.052-9.999 34.319-5.405 52.965 4.594.541 8.647.811 12.7.811 2.432-22.159 9.188-43.778 19.727-63.505zm88.095-23.239c0 42.155 34.319 76.205 76.205 76.205s76.205-34.05 76.205-76.205c0-41.886-34.319-75.935-76.205-75.935s-76.205 34.049-76.205 75.935zm152.41 97.283c9.969 50.608 3.299 64.692 16.484 58.099 15.944-8.107 22.699-39.183 22.97-57.019-12.971-.81-26.213-.81-39.454-1.08zm-71.611-.541v-.27c-.27 5.134.27 38.103 4.324 41.075 11.079 5.405 39.453 4.594 51.073 1.081 5.405-1.621 2.432-37.022 1.621-41.886-18.916-.27-38.102-.27-57.018 0zm-14.053 0v-.27c-19.456.27-38.642.27-57.829.811-1.892 9.187-4.594 48.911 1.892 51.614 12.971 5.675 41.616 5.134 54.586 1.621 4.595-2.432 2.433-45.399 1.351-53.776zm-85.662 57.56c5.405 2.432 8.647 2.432 9.728-4.324 1.892-8.647 2.432-36.752 4.865-52.155-12.16.27-24.591.811-36.752 1.621-5.405 19.727.27 45.129 22.159 54.858zm-65.666-11.08c43.778 47.02 92.689 85.663 155.923 106.47 67.558-19.186 115.659-59.991 163.219-107.011-11.095-4.315-7.715-10.363-7.296-11.62-8.918-.81-17.835-1.892-26.483-2.702-9.458 32.968-35.94 52.965-46.75 31.616-2.702-5.134-3.513-11.62-4.594-16.754-3.783 8.377-13.242 8.107-24.591 8.918-13.241 1.081-31.617 1.351-44.048-2.972-2.972 12.971-11.079 12.971-26.752 14.322-14.052 1.352-48.642 4.054-54.857-10.809-1.081 28.644-35.13 9.998-45.129-7.026-3.243-5.675-5.405-11.35-7.026-17.565-7.837.81-15.673 1.621-23.511 2.702 2.443 3.663 1.549 9.052-8.105 12.431zM115.6 453.545c-5.674-23.239-18.646-49.722-33.508-54.046-22.429-6.756-68.909 23.51-66.207 54.586 12.701 19.457 39.994 35.67 59.181 36.481 17.835.81 35.94-11.08 39.724-28.914.539-2.432.81-5.134.81-8.107zm7.296-5.944c33.509-19.457 69.179-35.671 105.931-47.02-38.643-20.537-68.098-47.831-97.283-77.016-2.162 1.352-5.134 2.432-7.836 3.513-1.637 4.91 8.718 5.33 5.405 12.431-2.162 4.054-8.648 7.567-15.133 9.188-2.161 2.702-5.134 4.864-7.836 6.485h-.27c-.27 13.511-.27 27.024.27 40.535 8.939 15.964 15.426 33.314 16.752 51.884zm320.764 12.7c-36.752-21.348-74.044-41.345-115.659-52.965-13.782 6.215-27.833 11.349-42.155 15.403-2.162.811-2.162.811-4.324 0-11.89-3.783-23.239-8.107-34.859-13.241-40.265 11.62-77.286 29.185-112.416 50.803h-.27v.27c.27 0 .27 0 .27-.27 103.227 4.054 206.455 3.513 309.413 0zm27.023-64.045l-.27.27c.541-13.782.811-27.563.811-41.345-2.973-1.621-5.675-4.054-8.107-6.756-6.485-1.351-12.971-5.134-15.133-8.918-1.892-4.053 1.351-7.566 5.945-10.269-.27-.541-.541-1.621-.541-2.432-2.972-.811-5.405-1.892-7.567-3.243-31.616 29.455-65.396 56.749-103.498 76.746 38.914 11.62 75.935 28.104 111.875 47.561 1.05-14.692 7.231-35.749 16.485-51.614zm23.24 3.244c-14.593 4.323-27.834 30.806-33.509 54.046 0 23.826 21.278 37.897 40.534 37.022 19.186-.811 46.48-17.024 59.181-36.481 2.973-31.077-43.507-61.344-66.206-54.587zM290.709 134.133c.045 0 .089.003.134.003.046 0 .09-.003.136-.003h-.27zm0 96.743c28.645 0 51.884-21.618 51.884-48.371 0-36.092-40.507-58.079-72.151-44.318 9.458 2.972 16.484 11.62 16.484 21.618 0 23.257-33.291 31.955-46.48 11.35-7.297 34.067 19.368 59.721 50.263 59.721zM68.039 474.083c.54 6.486 12.16 12.701 21.618 9.458 6.756-2.703 14.593-10.539 17.295-16.214 2.973-7.026-1.081-19.997-9.728-18.375-8.917 1.621-29.725 16.754-29.185 25.131zm410.75-25.131c-8.377-1.621-12.431 11.349-9.458 18.375 2.432 5.675 10.269 13.511 17.295 16.214 9.187 3.243 21.078-2.972 21.348-9.458.811-8.377-20.267-23.51-29.185-25.131z"], + "osi": [495, 512, [], "f41a", "M0 259.2C2.3 123.4 97.4 26.8 213.8 11.1c138.8-18.6 255.6 75.8 278 201.1 21.3 118.8-44 230-151.6 274-9.3 3.8-14.4 1.7-18-7.7-17.8-46.3-35.6-92.7-53.4-139-3.1-8.1-1-13.2 7-16.8 24.2-11 39.3-29.4 43.3-55.8 6.4-42.4-24.5-78.7-64.5-82.2-39-3.4-71.8 23.7-77.5 59.7-5.2 33 11.1 63.7 41.9 77.7 9.6 4.4 11.5 8.6 7.8 18.4-17.9 46.6-35.8 93.2-53.7 139.9-2.6 6.9-8.3 9.3-15.5 6.5-52.6-20.3-101.4-61-130.8-119C1.9 318.7 1.6 280.2 0 259.2zm20.9-1.9c.4 6.6.6 14.3 1.3 22.1 6.3 71.9 49.6 143.5 131 183.1 3.2 1.5 4.4.8 5.6-2.3 14.9-39.1 29.9-78.2 45-117.3 1.3-3.3.6-4.8-2.4-6.7-31.6-19.9-47.3-48.5-45.6-86 1-21.6 9.3-40.5 23.8-56.3 30-32.7 77-39.8 115.5-17.6 31.9 18.4 49.5 53.8 45.2 90.4-3.6 30.6-19.3 53.9-45.7 69.8-2.7 1.6-3.5 2.9-2.3 6 15.2 39.2 30.2 78.4 45.2 117.7 1.2 3.1 2.4 3.8 5.6 2.3 35.5-16.6 65.2-40.3 88.1-72 34.8-48.2 49.1-101.9 42.3-161C459.8 112 354.1 14.7 218 31.5 111.9 44.5 22.7 134 20.9 257.3z"], + "page4": [496, 512, [], "f3d7", "M248 504C111 504 0 393 0 256S111 8 248 8c20.9 0 41.3 2.6 60.7 7.5L42.3 392H248v112zm0-143.6V146.8L98.6 360.4H248zm96 31.6v92.7c45.7-19.2 84.5-51.7 111.4-92.7H344zm57.4-138.2l-21.2 8.4 21.2 8.3v-16.7zm-20.3 54.5c-6.7 0-8 6.3-8 12.9v7.7h16.2v-10c0-5.9-2.3-10.6-8.2-10.6zM496 256c0 37.3-8.2 72.7-23 104.4H344V27.3C433.3 64.8 496 153.1 496 256zM360.4 143.6h68.2V96h-13.9v32.6h-13.9V99h-13.9v29.6h-12.7V96h-13.9v47.6zm68.1 185.3H402v-11c0-15.4-5.6-25.2-20.9-25.2-15.4 0-20.7 10.6-20.7 25.9v25.3h68.2v-15zm0-103l-68.2 29.7V268l68.2 29.5v-16.6l-14.4-5.7v-26.5l14.4-5.9v-16.9zm-4.8-68.5h-35.6V184H402v-12.2h11c8.6 15.8 1.3 35.3-18.6 35.3-22.5 0-28.3-25.3-15.5-37.7l-11.6-10.6c-16.2 17.5-12.2 63.9 27.1 63.9 34 0 44.7-35.9 29.3-65.3z"], + "pagelines": [384, 512, [], "f18c", "M384 312.7c-55.1 136.7-187.1 54-187.1 54-40.5 81.8-107.4 134.4-184.6 134.7-16.1 0-16.6-24.4 0-24.4 64.4-.3 120.5-42.7 157.2-110.1-41.1 15.9-118.6 27.9-161.6-82.2 109-44.9 159.1 11.2 178.3 45.5 9.9-24.4 17-50.9 21.6-79.7 0 0-139.7 21.9-149.5-98.1 119.1-47.9 152.6 76.7 152.6 76.7 1.6-16.7 3.3-52.6 3.3-53.4 0 0-106.3-73.7-38.1-165.2 124.6 43 61.4 162.4 61.4 162.4.5 1.6.5 23.8 0 33.4 0 0 45.2-89 136.4-57.5-4.2 134-141.9 106.4-141.9 106.4-4.4 27.4-11.2 53.4-20 77.5 0 0 83-91.8 172-20z"], + "palfed": [576, 512, [], "f3d8", "M384.9 193.9c0-47.4-55.2-44.2-95.4-29.8-1.3 39.4-2.5 80.7-3 119.8.7 2.8 2.6 6.2 15.1 6.2 36.8 0 83.4-42.8 83.3-96.2zm-194.5 72.2c.2 0 6.5-2.7 11.2-2.7 26.6 0 20.7 44.1-14.4 44.1-21.5 0-37.1-18.1-37.1-43 0-42 42.9-95.6 100.7-126.5 1-12.4 3-22 10.5-28.2 11.2-9 26.6-3.5 29.5 11.1 72.2-22.2 135.2 1 135.2 72 0 77.9-79.3 152.6-140.1 138.2-.1 39.4.9 74.4 2.7 100v.2c.2 3.4.6 12.5-5.3 19.1-9.6 10.6-33.4 10-36.4-22.3-4.1-44.4.2-206.1 1.4-242.5-21.5 15-58.5 50.3-58.5 75.9.2 2.5.4 4 .6 4.6zM8 181.1s-.1 37.4 38.4 37.4h30l22.4 217.2s0 44.3 44.7 44.3h288.9s44.7-.4 44.7-44.3l22.4-217.2h30s38.4 1.2 38.4-37.4c0 0 .1-37.4-38.4-37.4h-30.1c-7.3-25.6-30.2-74.3-119.4-74.3h-28V50.3s-2.7-18.4-21.1-18.4h-85.8s-21.1 0-21.1 18.4v19.1h-28.1s-105 4.2-120.5 74.3h-29S8 142.5 8 181.1z"], + "patreon": [512, 512, [], "f3d9", "M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z"], + "paypal": [384, 512, [], "f1ed", "M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z"], + "periscope": [448, 512, [], "f3da", "M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z"], + "phabricator": [496, 512, [], "f3db", "M323 262.1l-.1-13s21.7-19.8 21.1-21.2l-9.5-20c-.6-1.4-29.5-.5-29.5-.5l-9.4-9.3s.2-28.5-1.2-29.1l-20.1-9.2c-1.4-.6-20.7 21-20.7 21l-13.1-.2s-20.5-21.4-21.9-20.8l-20 8.3c-1.4.5.2 28.9.2 28.9l-9.1 9.1s-29.2-.9-29.7.4l-8.1 19.8c-.6 1.4 21 21 21 21l.1 12.9s-21.7 19.8-21.1 21.2l9.5 20c.6 1.4 29.5.5 29.5.5l9.4 9.3s-.2 31.8 1.2 32.3l20.1 8.3c1.4.6 20.7-23.5 20.7-23.5l13.1.2s20.5 23.8 21.8 23.3l20-7.5c1.4-.6-.2-32.1-.2-32.1l9.1-9.1s29.2.9 29.7-.5l8.1-19.8c.7-1.1-20.9-20.7-20.9-20.7zm-44.9-8.7c.7 17.1-12.8 31.6-30.1 32.4-17.3.8-32.1-12.5-32.8-29.6-.7-17.1 12.8-31.6 30.1-32.3 17.3-.8 32.1 12.5 32.8 29.5zm201.2-37.9l-97-97-.1.1c-75.1-73.3-195.4-72.8-269.8 1.6-50.9 51-27.8 27.9-95.7 95.3-22.3 22.3-22.3 58.7 0 81 69.9 69.4 46.4 46 97.4 97l.1-.1c75.1 73.3 195.4 72.9 269.8-1.6 51-50.9 27.9-27.9 95.3-95.3 22.3-22.3 22.3-58.7 0-81zM140.4 363.8c-59.6-59.5-59.6-156 0-215.5 59.5-59.6 156-59.5 215.6 0 59.5 59.5 59.6 156 0 215.6-59.6 59.5-156 59.4-215.6-.1z"], + "phoenix-framework": [640, 512, [], "f3dc", "M212.9 344.3c3.8-.1 22.8-1.4 25.6-2.2-2.4-2.6-43.6-1-68-49.6-4.3-8.6-7.5-17.6-6.4-27.6 2.9-25.5 32.9-30 52-18.5 36 21.6 63.3 91.3 113.7 97.5 37 4.5 84.6-17 108.2-45.4-.6-.1-.8-.2-1-.1-.4.1-.8.2-1.1.3-33.3 12.1-94.3 9.7-134.7-14.8-37.6-22.8-53.1-58.7-51.8-74.6 1.8-21.3 22.9-23.2 35.9-19.6 14.4 3.9 24.4 17.6 38.9 27.4 15.6 10.4 32.9 13.7 51.3 10.3 14.9-2.7 34.4-12.3 36.5-14.5-1.1-.1-1.8-.1-2.5-.2-6.2-.6-12.4-.8-18.5-1.7C279.8 194.5 262.1 47.4 138.5 37.9 94.2 34.5 39.1 46 2.2 72.9c-.8.6-1.5 1.2-2.2 1.8.1.2.1.3.2.5.8 0 1.6-.1 2.4-.2 6.3-1 12.5-.8 18.7.3 23.8 4.3 47.7 23.1 55.9 76.5 5.3 34.3-.7 50.8 8 86.1 19 77.1 91 107.6 127.7 106.4zM75.3 64.9c-.9-1-.9-1.2-1.3-2 12.1-2.6 24.2-4.1 36.6-4.8-1.1 14.7-22.2 21.3-35.3 6.8zm196.9 350.5c-42.8 1.2-92-26.7-123.5-61.4-4.6-5-16.8-20.2-18.6-23.4l.4-.4c6.6 4.1 25.7 18.6 54.8 27 24.2 7 48.1 6.3 71.6-3.3 22.7-9.3 41-.5 43.1 2.9-18.5 3.8-20.1 4.4-24 7.9-5.1 4.4-4.6 11.7 7 17.2 26.2 12.4 63-2.8 97.2 25.4 2.4 2 8.1 7.8 10.1 10.7-.1.2-.3.3-.4.5-4.8-1.5-16.4-7.5-40.2-9.3-24.7-2-46.3 5.3-77.5 6.2zm174.8-252c16.4-5.2 41.3-13.4 66.5-3.3 16.1 6.5 26.2 18.7 32.1 34.6 3.5 9.4 5.1 19.7 5.1 28.7-.2 0-.4 0-.6.1-.2-.4-.4-.9-.5-1.3-5-22-29.9-43.8-67.6-29.9-50.2 18.6-130.4 9.7-176.9-48-.7-.9-2.4-1.7-1.3-3.2.1-.2 2.1.6 3 1.3 18.1 13.4 38.3 21.9 60.3 26.2 30.5 6.1 54.6 2.9 79.9-5.2zm102.7 117.5c-32.4.2-33.8 50.1-103.6 64.4-18.2 3.7-38.7 4.6-44.9 4.2v-.4c2.8-1.5 14.7-2.6 29.7-16.6 7.9-7.3 15.3-15.1 22.8-22.9 19.5-20.2 41.4-42.2 81.9-39 23.1 1.8 29.3 8.2 36.1 12.7.3.2.4.5.7.9-.5 0-.7.1-.9 0-7-2.7-14.3-3.3-21.8-3.3zm-12.3-24.1c-.1.2-.1.4-.2.6-28.9-4.4-48-7.9-68.5 4-17 9.9-31.4 20.5-62 24.4-27.1 3.4-45.1 2.4-66.1-8-.3-.2-.6-.4-1-.6 0-.2.1-.3.1-.5 24.9 3.8 36.4 5.1 55.5-5.8 22.3-12.9 40.1-26.6 71.3-31 29.6-4.1 51.3 2.5 70.9 16.9zM268.6 97.3c-.6-.6-1.1-1.2-2.1-2.3 7.6 0 29.7-1.2 53.4 8.4 19.7 8 32.2 21 50.2 32.9 11.1 7.3 23.4 9.3 36.4 8.1 4.3-.4 8.5-1.2 12.8-1.7.4-.1.9 0 1.5.3-.6.4-1.2.9-1.8 1.2-8.1 4-16.7 6.3-25.6 7.1-26.1 2.6-50.3-3.7-73.4-15.4-19.3-9.9-36.4-22.9-51.4-38.6zM640 335.7c-3.5 3.1-22.7 11.6-42.7 5.3-12.3-3.9-19.5-14.9-31.6-24.1-10-7.6-20.9-7.9-28.1-8.4.6-.8.9-1.2 1.2-1.4 14.8-9.2 30.5-12.2 47.3-6.5 12.5 4.2 19.2 13.5 30.4 24.2 10.8 10.4 21 9.9 23.1 10.5.1-.1.2 0 .4.4zm-212.5 137c2.2 1.2 1.6 1.5 1.5 2-18.5-1.4-33.9-7.6-46.8-22.2-21.8-24.7-41.7-27.9-48.6-29.7.5-.2.8-.4 1.1-.4 13.1.1 26.1.7 38.9 3.9 25.3 6.4 35 25.4 41.6 35.3 3.2 4.8 7.3 8.3 12.3 11.1z"], + "phoenix-squadron": [513, 512, [], "f511", "M96.24 62.81C142.91 26.57 202.15 6.57 261.28 8.08c29.67-.38 59.29 5.38 87.17 15.37-24.2-4.64-49.18-6.35-73.6-2.45-43 5.35-83.26 27.23-112.16 59.35 5.69-.99 10.81-3.68 16.07-5.88 18.19-7.89 37.6-13.29 57.4-14.87 19.8-2.14 39.75-.43 59.45 1.93-14.46 2.79-29.2 4.58-43.11 9.61-34.53 11.11-65.46 33.26-86.55 62.82-13.84 19.77-23.7 42.99-24.74 67.33-.35 16.54 5.23 34.91 19.89 44.17 11.13 6.66 24.85 9.39 37.63 6.76 15.49-2.47 30.16-8.67 43.73-16.38 11.55-6.84 22.73-14.59 32.05-24.32 3.8-3.23 2.54-8.48 2.63-12.83-2.13-.34-4.4-1.11-6.32.3a203.975 203.975 0 0 1-35.93 15.42c-20.07 6.19-42.28 8.48-62.28.78 12.83 1.73 26.14.31 37.85-5.46 20.29-9.75 36.92-25.27 54.6-38.88 27.84-21.29 57.64-40.11 89.17-55.47 25.78-12.01 53.09-22.85 81.81-24.2-15.68 13.76-32.25 26.6-46.92 41.51-14.55 14.04-27.54 29.58-40.23 45.31-3.53 4.61-8.98 6.96-13.62 10.19-22.24 15.03-40.6 35.96-52.04 60.28-9.36 19.74-14.55 41.97-11.81 63.84 1.95 13.73 8.74 27.67 20.96 35.01 12.94 7.99 29.14 8.09 43.61 5.11 32.9-7.47 61.61-28.97 81.28-56 20.5-27.6 30.61-62.38 29.25-96.64-.52-7.52-1.58-15-1.67-22.55 8.02 19.54 14.87 39.83 16.7 61.01 2.01 14.32.75 28.84-1.62 43.02-1.92 11.02-5.69 21.58-7.81 32.53 20.36-22.73 34.17-51.24 39.46-81.31 5.72-35.37.58-72.36-14.25-104.95 20.84 32.12 32.43 69.79 35.81 107.8.5 12.77.5 25.58 0 38.34-2.91 34.26-12.97 67.95-29.76 98-26.2 47.48-68.2 85.89-117.54 108.32-78.52 36.34-175.2 31.41-248.72-14.72-38.84-23.78-71.06-58.32-91.68-98.96C10.72 337.43 2.04 305.5 0 273.13V241.7c3.94-69.97 40.99-136.32 96.24-178.89m222.65 80.57c5.51-.8 10.82-2.57 16.02-4.5 4.99-1.77 9.27-5.95 10.35-11.25-8.91 5-17.95 9.95-26.37 15.75z"], + "php": [640, 512, [], "f457", "M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z"], + "pied-piper": [448, 512, [], "f2ae", "M32 419L0 479.2l.8-328C.8 85.3 54 32 120 32h327.2c-93 28.9-189.9 94.2-253.9 168.6C122.7 282 82.6 338 32 419M448 32S305.2 98.8 261.6 199.1c-23.2 53.6-28.9 118.1-71 158.6-28.9 27.8-69.8 38.2-105.3 56.3-23.2 12-66.4 40.5-84.9 66h328.4c66 0 119.3-53.3 119.3-119.2-.1 0-.1-328.8-.1-328.8z"], + "pied-piper-alt": [576, 512, [], "f1a8", "M242 187c6.3-11.8 13.2-17 25.9-21.8 27.3-10.3 40.2-30.5 58.9-51.1 11.9 8.4 12 24.6 31.6 23v21.8l6.3.3c37.4-14.4 74.7-30.2 106.6-54.6 48.3-36.8 52.9-50 81.3-100l2-2.6c-.6 14.1-6.3 27.3-12.4 39.9-30.5 63.8-78.7 100.3-146.8 116.7-12.4 2.9-26.4 3.2-37.6 8.9 1.4 9.8 13.2 18.1 13.2 23 0 3.4-5.5 7.2-7.5 8.6-11.2-12.9-16.1-19.3-22.7-22.1-7.6-3.5-63.9-6.4-98.8 10zm137.9 256.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9L244 246zm-12.6 31.8l24.1 61.2 21-13.8-31.3-50.9-13.8 3.5zM555.5 0l-.6 1.1-.3.9.6-.6.3-1.4zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46v27.3l11.8-3.4-2.9-23.8h-8.9zm76.1 2.9c0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3l2 12.4c9-1.5 58.4-6.6 58.4-14.1z"], + "pied-piper-hat": [640, 512, [], "f4e5", "M640 24.9c-80.8 53.6-89.4 92.5-96.4 104.4-6.7 12.2-11.7 60.3-23.3 83.6-11.7 23.6-54.2 42.2-66.1 50-11.7 7.8-28.3 38.1-41.9 64.2-108.1-4.4-167.4 38.8-259.2 93.6 29.4-9.7 43.3-16.7 43.3-16.7 94.2-36 139.3-68.3 281.1-49.2 1.1 0 1.9.6 2.8.8 3.9 2.2 5.3 6.9 3.1 10.8l-53.9 95.8c-2.5 4.7-7.8 7.2-13.1 6.1-126.8-23.8-226.9 17.3-318.9 18.6C24.1 488 0 453.4 0 451.8c0-1.1.6-1.7 1.7-1.7 0 0 38.3 0 103.1-15.3C178.4 294.5 244 245.4 315.4 245.4c0 0 71.7 0 90.6 61.9 22.8-39.7 28.3-49.2 28.3-49.2 5.3-9.4 35-77.2 86.4-141.4 51.5-64 90.4-79.9 119.3-91.8z"], + "pied-piper-pp": [448, 512, [], "f1a7", "M205.3 174.6c0 21.1-14.2 38.1-31.7 38.1-7.1 0-12.8-1.2-17.2-3.7v-68c4.4-2.7 10.1-4.2 17.2-4.2 17.5 0 31.7 16.9 31.7 37.8zm52.6 67c-7.1 0-12.8 1.5-17.2 4.2v68c4.4 2.5 10.1 3.7 17.2 3.7 17.4 0 31.7-16.9 31.7-37.8 0-21.1-14.3-38.1-31.7-38.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM185 255.1c41 0 74.2-35.6 74.2-79.6 0-44-33.2-79.6-74.2-79.6-12 0-24.1 3.2-34.6 8.8h-45.7V311l51.8-10.1v-50.6c8.6 3.1 18.1 4.8 28.5 4.8zm158.4 25.3c0-44-33.2-79.6-73.9-79.6-3.2 0-6.4.2-9.6.7-3.7 12.5-10.1 23.8-19.2 33.4-13.8 15-32.2 23.8-51.8 24.8V416l51.8-10.1v-50.6c8.6 3.2 18.2 4.7 28.7 4.7 40.8 0 74-35.6 74-79.6z"], + "pinterest": [496, 512, [], "f0d2", "M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3.8-3.4 5-20.3 6.9-28.1.6-2.5.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z"], + "pinterest-p": [384, 512, [], "f231", "M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z"], + "pinterest-square": [448, 512, [], "f0d3", "M448 80v352c0 26.5-21.5 48-48 48H154.4c9.8-16.4 22.4-40 27.4-59.3 3-11.5 15.3-58.4 15.3-58.4 8 15.3 31.4 28.2 56.3 28.2 74.1 0 127.4-68.1 127.4-152.7 0-81.1-66.2-141.8-151.4-141.8-106 0-162.2 71.1-162.2 148.6 0 36 19.2 80.8 49.8 95.1 4.7 2.2 7.1 1.2 8.2-3.3.8-3.4 5-20.1 6.8-27.8.6-2.5.3-4.6-1.7-7-10.1-12.3-18.3-34.9-18.3-56 0-54.2 41-106.6 110.9-106.6 60.3 0 102.6 41.1 102.6 99.9 0 66.4-33.5 112.4-77.2 112.4-24.1 0-42.1-19.9-36.4-44.4 6.9-29.2 20.3-60.7 20.3-81.8 0-53-75.5-45.7-75.5 25 0 21.7 7.3 36.5 7.3 36.5-31.4 132.8-36.1 134.5-29.6 192.6l2.2.8H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z"], + "playstation": [576, 512, [], "f3df", "M570.9 372.3c-11.3 14.2-38.8 24.3-38.8 24.3L327 470.2v-54.3l150.9-53.8c17.1-6.1 19.8-14.8 5.8-19.4-13.9-4.6-39.1-3.3-56.2 2.9L327 381.1v-56.4c23.2-7.8 47.1-13.6 75.7-16.8 40.9-4.5 90.9.6 130.2 15.5 44.2 14 49.2 34.7 38 48.9zm-224.4-92.5v-139c0-16.3-3-31.3-18.3-35.6-11.7-3.8-19 7.1-19 23.4v347.9l-93.8-29.8V32c39.9 7.4 98 24.9 129.2 35.4C424.1 94.7 451 128.7 451 205.2c0 74.5-46 102.8-104.5 74.6zM43.2 410.2c-45.4-12.8-53-39.5-32.3-54.8 19.1-14.2 51.7-24.9 51.7-24.9l134.5-47.8v54.5l-96.8 34.6c-17.1 6.1-19.7 14.8-5.8 19.4 13.9 4.6 39.1 3.3 56.2-2.9l46.4-16.9v48.8c-51.6 9.3-101.4 7.3-153.9-10z"], + "product-hunt": [512, 512, [], "f288", "M326.3 218.8c0 20.5-16.7 37.2-37.2 37.2h-70.3v-74.4h70.3c20.5 0 37.2 16.7 37.2 37.2zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-128.1-37.2c0-47.9-38.9-86.8-86.8-86.8H169.2v248h49.6v-74.4h70.3c47.9 0 86.8-38.9 86.8-86.8z"], + "pushed": [432, 512, [], "f3e1", "M407 111.9l-98.5-9 14-33.4c10.4-23.5-10.8-40.4-28.7-37L22.5 76.9c-15.1 2.7-26 18.3-21.4 36.6l105.1 348.3c6.5 21.3 36.7 24.2 47.7 7l35.3-80.8 235.2-231.3c16.4-16.8 4.3-42.9-17.4-44.8zM297.6 53.6c5.1-.7 7.5 2.5 5.2 7.4L286 100.9 108.6 84.6l189-31zM22.7 107.9c-3.1-5.1 1-10 6.1-9.1l248.7 22.7-96.9 230.7L22.7 107.9zM136 456.4c-2.6 4-7.9 3.1-9.4-1.2L43.5 179.7l127.7 197.6c-7 15-35.2 79.1-35.2 79.1zm272.8-314.5L210.1 337.3l89.7-213.7 106.4 9.7c4 1.1 5.7 5.3 2.6 8.6z"], + "python": [448, 512, [], "f3e2", "M167.8 36.4c-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1zm-6.7 28.4c11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4zm185.2 81.4v47.5c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6-7.7-30.9-22.3-54.2-53.4-54.2h-40.1zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3z"], + "qq": [448, 512, [], "f1d6", "M433.754 420.445c-11.526 1.393-44.86-52.741-44.86-52.741 0 31.345-16.136 72.247-51.051 101.786 16.842 5.192 54.843 19.167 45.803 34.421-7.316 12.343-125.51 7.881-159.632 4.037-34.122 3.844-152.316 8.306-159.632-4.037-9.045-15.25 28.918-29.214 45.783-34.415-34.92-29.539-51.059-70.445-51.059-101.792 0 0-33.334 54.134-44.859 52.741-5.37-.65-12.424-29.644 9.347-99.704 10.261-33.024 21.995-60.478 40.144-105.779C60.683 98.063 108.982.006 224 0c113.737.006 163.156 96.133 160.264 214.963 18.118 45.223 29.912 72.85 40.144 105.778 21.768 70.06 14.716 99.053 9.346 99.704z"], + "quinscape": [489, 512, [], "f459", "M301.9 474.6h-1.3c-87.3 0-158.1-70.8-158.1-158.1s70.8-158.1 158.1-158.1c94.9 0 168.2 83.1 157 176.6 4 5.1 8.2 9.6 11.2 15.3 13.4-30.3 20.3-62.4 20.3-97.7C489.1 117.5 379.6 8 244.5 8 109.5 8 0 117.5 0 252.6s109.5 244.6 244.5 244.6c24.8 0 47.8-3.2 70.4-10.1-5.2-3.5-9-8.2-13.4-12.6l.4.1zm-21.2-69.8c0-54.8 44.4-99.2 99.2-99.2 54.8 0 99.2 44.4 99.2 99.2 0 54.8-44.4 99.2-99.2 99.2-54.8 0-99.2-44.4-99.2-99.2"], + "quora": [448, 512, [], "f2c4", "M440.5 386.7h-29.3c-1.5 13.5-10.5 30.8-33 30.8-20.5 0-35.3-14.2-49.5-35.8 44.2-34.2 74.7-87.5 74.7-153C403.5 111.2 306.8 32 205 32 105.3 32 7.3 111.7 7.3 228.7c0 134.1 131.3 221.6 249 189C276 451.3 302 480 351.5 480c81.8 0 90.8-75.3 89-93.3zM297 329.2C277.5 300 253.3 277 205.5 277c-30.5 0-54.3 10-69 22.8l12.2 24.3c6.2-3 13-4 19.8-4 35.5 0 53.7 30.8 69.2 61.3-10 3-20.7 4.2-32.7 4.2-75 0-107.5-53-107.5-156.7C97.5 124.5 130 71 205 71c76.2 0 108.7 53.5 108.7 157.7.1 41.8-5.4 75.6-16.7 100.5z"], + "r-project": [581, 512, [], "f4f7", "M581 226.6C581 119.1 450.9 32 290.5 32S0 119.1 0 226.6C0 322.4 103.3 402 239.4 418.1V480h99.1v-61.5c24.3-2.7 47.6-7.4 69.4-13.9L448 480h112l-67.4-113.7c54.5-35.4 88.4-84.9 88.4-139.7zm-466.8 14.5c0-73.5 98.9-133 220.8-133s211.9 40.7 211.9 133c0 50.1-26.5 85-70.3 106.4-2.4-1.6-4.7-2.9-6.4-3.7-10.2-5.2-27.8-10.5-27.8-10.5s86.6-6.4 86.6-92.7-90.6-87.9-90.6-87.9h-199V361c-74.1-21.5-125.2-67.1-125.2-119.9zm225.1 38.3v-55.6c57.8 0 87.8-6.8 87.8 27.3 0 36.5-38.2 28.3-87.8 28.3zm-.9 72.5H365c10.8 0 18.9 11.7 24 19.2-16.1 1.9-33 2.8-50.6 2.9v-22.1z"], + "ravelry": [512, 512, [], "f2d9", "M407.4 61.5C331.6 22.1 257.8 31 182.9 66c-11.3 5.2-15.5 10.6-19.9 19-10.3 19.2-16.2 37.4-19.9 52.7-21.2 25.6-36.4 56.1-43.3 89.9-10.6 18-20.9 41.4-23.1 71.4 0 0-.7 7.6-.5 7.9-35.3-4.6-76.2-27-76.2-27 9.1 14.5 61.3 32.3 76.3 37.9 0 0 1.7 98 64.5 131.2-11.3-17.2-13.3-20.2-13.3-20.2S94.8 369 100.4 324.7c.7 0 1.5.2 2.2.2 23.9 87.4 103.2 151.4 196.9 151.4 6.2 0 12.1-.2 18-.7 14 1.5 27.6.5 40.1-3.9 6.9-2.2 13.8-6.4 20.2-10.8 70.2-39.1 100.9-82 123.1-147.7 5.4-16 8.1-35.5 9.8-52.2 8.7-82.3-30.6-161.6-103.3-199.5zM138.8 163.2s-1.2 12.3-.7 19.7c-3.4 2.5-10.1 8.1-18.2 16.7 5.2-12.8 11.3-25.1 18.9-36.4zm-31.2 121.9c4.4-17.2 13.3-39.1 29.8-55.1 0 0 1.7 48 15.8 90.1l-41.4-6.9c-2.2-9.2-3.5-18.5-4.2-28.1zm7.9 42.8c14.8 3.2 34 7.6 43.1 9.1 27.3 76.8 108.3 124.3 108.3 124.3 1 .5 1.7.7 2.7 1-73.1-11.6-132.7-64.7-154.1-134.4zM386 444.1c-14.5 4.7-36.2 8.4-64.7 3.7 0 0-91.1-23.1-127.5-107.8 38.2.7 52.4-.2 78-3.9 39.4-5.7 79-16.2 115-33 11.8-5.4 11.1-19.4 9.6-29.8-2-12.8-11.1-12.1-21.4-4.7 0 0-82 58.6-189.8 53.7-18.7-32-26.8-110.8-26.8-110.8 41.4-35.2 83.2-59.6 168.4-52.4.2-6.4 3-27.1-20.4-28.1 0 0-93.5-11.1-146 33.5 2.5-16.5 5.9-29.3 11.1-39.4 34.2-30.8 79-49.5 128.3-49.5 106.4 0 193 87.1 193 194.5-.2 76-43.8 142-106.8 174z"], + "react": [512, 512, [], "f41b", "M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zm-130 189.1c4.6 8.8 9.3 17.5 14.3 26.1 5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5zm0-50.6c-6.3-14.9-11.6-29.5-16-43.6 14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26zm11.4 25.3c6.6-13.8 13.8-27.3 21.4-40.6 7.6-13.3 15.8-26.2 24.4-38.9 15-1.1 30.3-1.7 45.9-1.7 15.6 0 31 .6 45.9 1.7 8.5 12.6 16.6 25.5 24.3 38.7 7.7 13.2 14.9 26.7 21.7 40.4-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6-15.7 0-30.9-.5-45.6-1.4-8.7-12.7-16.9-25.7-24.6-39-7.7-13.3-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zM256 210.2c25.3 0 45.8 20.5 45.8 45.8 0 25.3-20.5 45.8-45.8 45.8-25.3 0-45.8-20.5-45.8-45.8 0-25.3 20.5-45.8 45.8-45.8"], + "readme": [576, 512, [], "f4d5", "M528.3 46.5H388.5c-48.1 0-89.9 33.3-100.4 80.3-10.6-47-52.3-80.3-100.4-80.3H48c-26.5 0-48 21.5-48 48v245.8c0 26.5 21.5 48 48 48h89.7c102.2 0 132.7 24.4 147.3 75 .7 2.8 5.2 2.8 6 0 14.7-50.6 45.2-75 147.3-75H528c26.5 0 48-21.5 48-48V94.6c0-26.4-21.3-47.9-47.7-48.1zM242 311.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5V289c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V251zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm259.3 121.7c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5V228c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.8c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V190z"], + "rebel": [512, 512, [], "f1d0", "M256.5 504C117.2 504 9 387.8 13.2 249.9 16 170.7 56.4 97.7 129.7 49.5c.3 0 1.9-.6 1.1.8-5.8 5.5-111.3 129.8-14.1 226.4 49.8 49.5 90 2.5 90 2.5 38.5-50.1-.6-125.9-.6-125.9-10-24.9-45.7-40.1-45.7-40.1l28.8-31.8c24.4 10.5 43.2 38.7 43.2 38.7.8-29.6-21.9-61.4-21.9-61.4L255.1 8l44.3 50.1c-20.5 28.8-21.9 62.6-21.9 62.6 13.8-23 43.5-39.3 43.5-39.3l28.5 31.8c-27.4 8.9-45.4 39.9-45.4 39.9-15.8 28.5-27.1 89.4.6 127.3 32.4 44.6 87.7-2.8 87.7-2.8 102.7-91.9-10.5-225-10.5-225-6.1-5.5.8-2.8.8-2.8 50.1 36.5 114.6 84.4 116.2 204.8C500.9 400.2 399 504 256.5 504z"], + "red-river": [448, 512, [], "f3e3", "M353.2 32H94.8C42.4 32 0 74.4 0 126.8v258.4C0 437.6 42.4 480 94.8 480h258.4c52.4 0 94.8-42.4 94.8-94.8V126.8c0-52.4-42.4-94.8-94.8-94.8zM144.9 200.9v56.3c0 27-21.9 48.9-48.9 48.9V151.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9h-56.3c-12.3-.6-24.6 11.6-24 24zm176.3 72h-56.3c-12.3-.6-24.6 11.6-24 24v56.3c0 27-21.9 48.9-48.9 48.9V247.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9z"], + "reddit": [512, 512, [], "f1a1", "M201.5 305.5c-13.8 0-24.9-11.1-24.9-24.6 0-13.8 11.1-24.9 24.9-24.9 13.6 0 24.6 11.1 24.6 24.9 0 13.6-11.1 24.6-24.6 24.6zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-132.3-41.2c-9.4 0-17.7 3.9-23.8 10-22.4-15.5-52.6-25.5-86.1-26.6l17.4-78.3 55.4 12.5c0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.3 24.9-24.9s-11.1-24.9-24.9-24.9c-9.7 0-18 5.8-22.1 13.8l-61.2-13.6c-3-.8-6.1 1.4-6.9 4.4l-19.1 86.4c-33.2 1.4-63.1 11.3-85.5 26.8-6.1-6.4-14.7-10.2-24.1-10.2-34.9 0-46.3 46.9-14.4 62.8-1.1 5-1.7 10.2-1.7 15.5 0 52.6 59.2 95.2 132 95.2 73.1 0 132.3-42.6 132.3-95.2 0-5.3-.6-10.8-1.9-15.8 31.3-16 19.8-62.5-14.9-62.5zM302.8 331c-18.2 18.2-76.1 17.9-93.6 0-2.2-2.2-6.1-2.2-8.3 0-2.5 2.5-2.5 6.4 0 8.6 22.8 22.8 87.3 22.8 110.2 0 2.5-2.2 2.5-6.1 0-8.6-2.2-2.2-6.1-2.2-8.3 0zm7.7-75c-13.6 0-24.6 11.1-24.6 24.9 0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.1 24.9-24.6 0-13.8-11-24.9-24.9-24.9z"], + "reddit-alien": [512, 512, [], "f281", "M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2.1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z"], + "reddit-square": [448, 512, [], "f1a2", "M283.2 345.5c2.7 2.7 2.7 6.8 0 9.2-24.5 24.5-93.8 24.6-118.4 0-2.7-2.4-2.7-6.5 0-9.2 2.4-2.4 6.5-2.4 8.9 0 18.7 19.2 81 19.6 100.5 0 2.4-2.3 6.6-2.3 9 0zm-91.3-53.8c0-14.9-11.9-26.8-26.5-26.8-14.9 0-26.8 11.9-26.8 26.8 0 14.6 11.9 26.5 26.8 26.5 14.6 0 26.5-11.9 26.5-26.5zm90.7-26.8c-14.6 0-26.5 11.9-26.5 26.8 0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-11.9 26.8-26.5 0-14.9-11.9-26.8-26.8-26.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-99.7 140.6c-10.1 0-19 4.2-25.6 10.7-24.1-16.7-56.5-27.4-92.5-28.6l18.7-84.2 59.5 13.4c0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-12.2 26.8-26.8 0-14.6-11.9-26.8-26.8-26.8-10.4 0-19.3 6.2-23.8 14.9l-65.7-14.6c-3.3-.9-6.5 1.5-7.4 4.8l-20.5 92.8c-35.7 1.5-67.8 12.2-91.9 28.9-6.5-6.8-15.8-11-25.9-11-37.5 0-49.8 50.4-15.5 67.5-1.2 5.4-1.8 11-1.8 16.7 0 56.5 63.7 102.3 141.9 102.3 78.5 0 142.2-45.8 142.2-102.3 0-5.7-.6-11.6-2.1-17 33.6-17.2 21.2-67.2-16.1-67.2z"], + "rendact": [496, 512, [], "f3e4", "M248 8C111 8 0 119 0 256s111 248 248 248c18.6 0 36.7-2.1 54.1-5.9-5.6-7.4-10.8-14.4-15.9-21.3-12.4 2.1-25.2 3.3-38.3 3.3C124.3 480 24 379.7 24 256S124.3 32 248 32s224 100.3 224 224c0 71-33 134.2-84.5 175.3-25.9 18.8-39.1 21.4-83.5-44.2-78.7-112.9-48-71.1-73.7-108.3 72.8 8.9 228.5-72 168.6-168.6C314-26.8 15 93.8 59.7 226.4c3.2 9.8 14.4 38.6 45.6 38.6 2 0 2.6-.6 2-1.7-4.4-8.7-20.1-9.8-20.1-37.4 0-40.5 40.5-89.6 100.3-120 66.1-32.3 131.9-30.2 158.2 5.4 27.2 38.3-20.9 119.2-120.4 136.9 7.5-9.4 57-75.2 62.8-84 22.7-34.6 23.6-49 14-59.2-15.5-16.9-29.5-10.3-50.7-11.7-10.8-.9-113.7 181.2-136.4 216.9-5.9 9-21.2 34.1-21.2 50.9 0 21.3 2.8 51.4 20.6 51.4 10.6 0 8-18.7 8-26.6 0-12.9 27.4-49.4 74.8-104.6 20.4 36.1 57.7 114.3 130.2 209.7 98-33.1 168.5-125.8 168.5-235C496 119 385 8 248 8z"], + "renren": [512, 512, [], "f18b", "M214 169.1c0 110.4-61 205.4-147.6 247.4C30 373.2 8 317.7 8 256.6 8 133.9 97.1 32.2 214 12.5v156.6zM255 504c-42.9 0-83.3-11-118.5-30.4C193.7 437.5 239.9 382.9 255 319c15.5 63.9 61.7 118.5 118.8 154.7C338.7 493 298.3 504 255 504zm190.6-87.5C359 374.5 298 279.6 298 169.1V12.5c116.9 19.7 206 121.4 206 244.1 0 61.1-22 116.6-58.4 159.9z"], + "replyd": [448, 512, [], "f3e6", "M320 480H128C57.6 480 0 422.4 0 352V160C0 89.6 57.6 32 128 32h192c70.4 0 128 57.6 128 128v192c0 70.4-57.6 128-128 128zM193.4 273.2c-6.1-2-11.6-3.1-16.4-3.1-7.2 0-13.5 1.9-18.9 5.6-5.4 3.7-9.6 9-12.8 15.8h-1.1l-4.2-18.3h-28v138.9h36.1v-89.7c1.5-5.4 4.4-9.8 8.7-13.2 4.3-3.4 9.8-5.1 16.2-5.1 4.6 0 9.8 1 15.6 3.1l4.8-34zm115.2 103.4c-3.2 2.4-7.7 4.8-13.7 7.1-6 2.3-12.8 3.5-20.4 3.5-12.2 0-21.1-3-26.5-8.9-5.5-5.9-8.5-14.7-9-26.4h83.3c.9-4.8 1.6-9.4 2.1-13.9.5-4.4.7-8.6.7-12.5 0-10.7-1.6-19.7-4.7-26.9-3.2-7.2-7.3-13-12.5-17.2-5.2-4.3-11.1-7.3-17.8-9.2-6.7-1.8-13.5-2.8-20.6-2.8-21.1 0-37.5 6.1-49.2 18.3s-17.5 30.5-17.5 55c0 22.8 5.2 40.7 15.6 53.7 10.4 13.1 26.8 19.6 49.2 19.6 10.7 0 20.9-1.5 30.4-4.6 9.5-3.1 17.1-6.8 22.6-11.2l-12-23.6zm-21.8-70.3c3.8 5.4 5.3 13.1 4.6 23.1h-51.7c.9-9.4 3.7-17 8.2-22.6 4.5-5.6 11.5-8.5 21-8.5 8.2-.1 14.1 2.6 17.9 8zm79.9 2.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4s2 11.7 6.1 15.6zm0 100.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4 0 6.6 2 11.7 6.1 15.6z"], + "researchgate": [448, 512, [], "f4f8", "M0 32v448h448V32H0zm262.2 334.4c-6.6 3-33.2 6-50-14.2-9.2-10.6-25.3-33.3-42.2-63.6-8.9 0-14.7 0-21.4-.6v46.4c0 23.5 6 21.2 25.8 23.9v8.1c-6.9-.3-23.1-.8-35.6-.8-13.1 0-26.1.6-33.6.8v-8.1c15.5-2.9 22-1.3 22-23.9V225c0-22.6-6.4-21-22-23.9V193c25.8 1 53.1-.6 70.9-.6 31.7 0 55.9 14.4 55.9 45.6 0 21.1-16.7 42.2-39.2 47.5 13.6 24.2 30 45.6 42.2 58.9 7.2 7.8 17.2 14.7 27.2 14.7v7.3zm22.9-135c-23.3 0-32.2-15.7-32.2-32.2V167c0-12.2 8.8-30.4 34-30.4s30.4 17.9 30.4 17.9l-10.7 7.2s-5.5-12.5-19.7-12.5c-7.9 0-19.7 7.3-19.7 19.7v26.8c0 13.4 6.6 23.3 17.9 23.3 14.1 0 21.5-10.9 21.5-26.8h-17.9v-10.7h30.4c0 20.5 4.7 49.9-34 49.9zm-116.5 44.7c-9.4 0-13.6-.3-20-.8v-69.7c6.4-.6 15-.6 22.5-.6 23.3 0 37.2 12.2 37.2 34.5 0 21.9-15 36.6-39.7 36.6z"], + "resolving": [496, 512, [], "f3e7", "M281.2 278.2c46-13.3 49.6-23.5 44-43.4L314 195.5c-6.1-20.9-18.4-28.1-71.1-12.8L54.7 236.8l28.6 98.6 197.9-57.2zM248.5 8C131.4 8 33.2 88.7 7.2 197.5l221.9-63.9c34.8-10.2 54.2-11.7 79.3-8.2 36.3 6.1 52.7 25 61.4 55.2l10.7 37.8c8.2 28.1 1 50.6-23.5 73.6-19.4 17.4-31.2 24.5-61.4 33.2L203 351.8l220.4 27.1 9.7 34.2-48.1 13.3-286.8-37.3 23 80.2c36.8 22 80.3 34.7 126.3 34.7 137 0 248.5-111.4 248.5-248.3C497 119.4 385.5 8 248.5 8zM38.3 388.6L0 256.8c0 48.5 14.3 93.4 38.3 131.8z"], + "rev": [410, 512, [], "f5b2", "M270.67 274.89c0 36.16-29.41 65.57-65.56 65.57s-65.57-29.41-65.57-65.57 29.41-65.56 65.57-65.56 65.56 29.4 65.56 65.56zm139.55-5.05h-.13c-1.49-61.55-30.1-116.35-74.32-152.98l-45.38 26.2c43.17 28.03 71.81 76.63 71.81 131.82 0 86.62-70.47 157.09-157.09 157.09S48.02 361.5 48.02 274.88c0-81.86 62.96-149.27 142.99-156.43v39.12l108.76-62.79L191.01 32v38.32C84.31 77.57 0 166.36 0 274.89c0 111.59 89.12 202.29 200.06 204.98v.13h210.16V269.84z"], + "rocketchat": [448, 512, [], "f3e8", "M448 256.2c0-87.2-99.6-153.3-219.8-153.3-18.8 0-37.3 1.6-55.3 4.8-11.1-10.5-24.2-20-38-27.4C61.2 44.2 0 79.4 0 79.4s56.9 47.1 47.6 88.3c-52.3 52.3-52.5 124.1 0 176.6C56.9 385.6 0 432.6 0 432.6s61.2 35.2 134.9-.8c13.8-7.5 26.9-16.9 38-27.4 18 3.2 36.5 4.8 55.3 4.8 120.3-.1 219.8-65.8 219.8-153zm-219.7 124c-23.7 0-46.3-2.8-67.3-7.8-21.3 25.8-68.1 61.7-113.6 50.1 14.8-16 36.7-43.1 32-87.6-27.3-21.4-43.6-48.7-43.6-78.5 0-68.4 86.2-123.9 192.5-123.9S420.8 188 420.8 256.4c0 68.3-86.2 123.8-192.5 123.8zm25.6-123.9c0 14.2-11.5 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.5-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm88.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm-177.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.2 0 25.6 11.6 25.6 25.8z"], + "rockrms": [496, 512, [], "f3e9", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm157.4 419.5h-90l-112-131.3c-17.9-20.4-3.9-56.1 26.6-56.1h75.3l-84.6-99.3-84.3 98.9h-90L193.5 67.2c14.4-18.4 41.3-17.3 54.5 0l157.7 185.1c19 22.8 2 57.2-27.6 56.1-.6 0-74.2.2-74.2.2l101.5 118.9z"], + "safari": [512, 512, [], "f267", "M236.9 256.8c0-9.1 6.6-17.7 16.3-17.7 8.9 0 17.4 6.4 17.4 16.1 0 9.1-6.4 17.7-16.1 17.7-9 0-17.6-6.7-17.6-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-26.6 0c0-122.3-99.1-221.4-221.4-221.4S34.6 133.7 34.6 256 133.7 477.4 256 477.4 477.4 378.3 477.4 256zm-72.5 96.6c0 3.6 13 10.2 16.3 12.2-27.4 41.5-69.8 71.4-117.9 83.3l-4.4-18.5c-.3-2.5-1.9-2.8-4.2-2.8-1.9 0-3 2.8-2.8 4.2l4.4 18.8c-13.3 2.8-26.8 4.2-40.4 4.2-36.3 0-72-10.2-103-29.1 1.7-2.8 12.2-18 12.2-20.2 0-1.9-1.7-3.6-3.6-3.6-3.9 0-12.2 16.6-14.7 19.9-41.8-27.7-72-70.6-83.6-119.6l19.1-4.2c2.2-.6 2.8-2.2 2.8-4.2 0-1.9-2.8-3-4.4-2.8L62 294.5c-2.5-12.7-3.9-25.5-3.9-38.5 0-37.1 10.5-73.6 30.2-104.9 2.8 1.7 16.1 10.8 18.3 10.8 1.9 0 3.6-1.4 3.6-3.3 0-3.9-14.7-11.3-18-13.6 28.2-41.2 71.1-70.9 119.8-81.9l4.2 18.5c.6 2.2 2.2 2.8 4.2 2.8s3-2.8 2.8-4.4L219 61.7c12.2-2.2 24.6-3.6 37.1-3.6 37.1 0 73.3 10.5 104.9 30.2-1.9 2.8-10.8 15.8-10.8 18 0 1.9 1.4 3.6 3.3 3.6 3.9 0 11.3-14.4 13.3-17.7 41 27.7 70.3 70 81.7 118.2l-15.5 3.3c-2.5.6-2.8 2.2-2.8 4.4 0 1.9 2.8 3 4.2 2.8l15.8-3.6c2.5 12.7 3.9 25.7 3.9 38.7 0 36.3-10 72-28.8 102.7-2.8-1.4-14.4-9.7-16.6-9.7-2.1 0-3.8 1.7-3.8 3.6zm-33.2-242.2c-13 12.2-134.2 123.7-137.6 129.5l-96.6 160.5c12.7-11.9 134.2-124 137.3-129.3l96.9-160.7z"], + "sass": [640, 512, [], "f41e", "M551.1 291.9c-22.4.1-41.8 5.5-58 13.5-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-3.8 11.1-5.3 19.1-2.3 11.7-25.8 53.5-39.1 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-2.7 11.4-5.3 19.1-2.6 7.7-33.9 77.3-42.1 95.4-4.2 9.2-7.8 16.6-10.4 21.6s-.2.3-.4.9c-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4.3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2-.8 0-1.4 2-1.4 2s10.1-42.4-19.4-42.4c-18.4 0-44 20.2-56.6 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.8-38.2-101.9-65.2-99.1-116.5 1-18.7 7.5-67.8 127.1-127.4 98-48.8 176.4-35.4 189.9-5.6 19.4 42.5-41.9 121.6-143.7 133-38.8 4.3-59.2-10.7-64.3-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.8 28.9 18.7 6.1 64.2 9.5 119.2-11.8C367 196.5 415.1 130.2 401 74.7 386.6 18.3 293.1-.2 204.6 31.2 151.9 49.9 94.9 79.3 53.9 117.6 5.2 163.2-2.6 202.9.6 219.5c11.4 58.9 92.6 97.3 125.1 125.7-1.6.9-3.1 1.7-4.5 2.5-16.3 8.1-78.2 40.5-93.7 74.7-17.5 38.8 2.9 66.6 16.3 70.4 41.8 11.6 84.6-9.3 107.6-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.3-4.9 16.4-9.4 23.5-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.5 5 15.4 5 13.8 0 20-11.4 26.9-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.4 0 18.8-12.1 23-18.3v.1s.2-.4.7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.6-46 16.2-31.8 31.7-71.5 31.7-71.5s1.4 9.7 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2s0 .1.1.2c-3 4-6.4 8.3-9.9 12.5-12.8 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.7 2.5 11.5-.8 19.6-3.6 23.5-5.4 6.2-2.2 13.4-5.7 20.2-10.6 12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5 19.8-28.9 35.1-60.6 35.1-60.6s1.4 9.7 6.2 25.8c2.4 8.1 7.1 17 11.4 25.7-18.6 15.1-30.1 32.6-34.1 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5 6.5-2.2 14.3-5.7 21.6-11.1 12.5-9.2 24.6-22.1 23.8-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.1-10.2 62.1-7.2 55.7 6.5 66.6 41.3 64.5 55.8-2.1 14.6-13.8 22.6-17.7 25-3.9 2.4-5.1 3.3-4.8 5.1.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.2-11.8 30.3-38.7 1.6-34-31.1-71.4-89-71.1zM121.8 436.6c-18.4 20.1-44.2 27.7-55.3 21.3C54.6 451 59.3 421.4 82 400c13.8-13 31.6-25 43.4-32.4 2.7-1.6 6.6-4 11.4-6.9.8-.5 1.2-.7 1.2-.7.9-.6 1.9-1.1 2.9-1.7 8.3 30.4.3 57.2-19.1 78.3zm134.4-91.4c-6.4 15.7-19.9 55.7-28.1 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.1-11.3 21.2-14.9 23.8-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.9-13.9 0 .5.1 1 .1 1.6-.1 17.9-17.3 30-25.1 34.8zm85.6-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.6-15.3 19-24.5 1.2 3.8 1.9 7.4 1.9 10.8-.1 22.5-16.2 30.9-25.9 34.4z"], + "schlix": [448, 512, [], "f3ea", "M350.5 157.7l-54.2-46.1 73.4-39 78.3 44.2-97.5 40.9zM192 122.1l45.7-28.2 34.7 34.6-55.4 29-25-35.4zm-65.1 6.6l31.9-22.1L176 135l-36.7 22.5-12.4-28.8zm-23.3 88.2l-8.8-34.8 29.6-18.3 13.1 35.3-33.9 17.8zm-21.2-83.7l23.9-18.1 8.9 24-26.7 18.3-6.1-24.2zM59 206.5l-3.6-28.4 22.3-15.5 6.1 28.7L59 206.5zm-30.6 16.6l20.8-12.8 3.3 33.4-22.9 12-1.2-32.6zM1.4 268l19.2-10.2.4 38.2-21 8.8L1.4 268zm59.1 59.3l-28.3 8.3-1.6-46.8 25.1-10.7 4.8 49.2zM99 263.2l-31.1 13-5.2-40.8L90.1 221l8.9 42.2zM123.2 377l-41.6 5.9-8.1-63.5 35.2-10.8 14.5 68.4zm28.5-139.9l21.2 57.1-46.2 13.6-13.7-54.1 38.7-16.6zm85.7 230.5l-70.9-3.3-24.3-95.8 55.2-8.6 40 107.7zm-84.9-279.7l42.2-22.4 28 45.9-50.8 21.3-19.4-44.8zm41 94.9l61.3-18.7 52.8 86.6-79.8 11.3-34.3-79.2zm51.4-85.6l67.3-28.8 65.5 65.4-88.6 26.2-44.2-62.8z"], + "scribd": [384, 512, [], "f28a", "M42.3 252.7c-16.1-19-24.7-45.9-24.8-79.9 0-100.4 75.2-153.1 167.2-153.1 98.6-1.6 156.8 49 184.3 70.6l-50.5 72.1-37.3-24.6 26.9-38.6c-36.5-24-79.4-36.5-123-35.8-50.7-.8-111.7 27.2-111.7 76.2 0 18.7 11.2 20.7 28.6 15.6 23.3-5.3 41.9.6 55.8 14 26.4 24.3 23.2 67.6-.7 91.9-29.2 29.5-85.2 27.3-114.8-8.4zm317.7 5.9c-15.5-18.8-38.9-29.4-63.2-28.6-38.1-2-71.1 28-70.5 67.2-.7 16.8 6 33 18.4 44.3 14.1 13.9 33 19.7 56.3 14.4 17.4-5.1 28.6-3.1 28.6 15.6 0 4.3-.5 8.5-1.4 12.7-16.7 40.9-59.5 64.4-121.4 64.4-51.9.2-102.4-16.4-144.1-47.3l33.7-39.4-35.6-27.4L0 406.3l15.4 13.8c52.5 46.8 120.4 72.5 190.7 72.2 51.4 0 94.4-10.5 133.6-44.1 57.1-51.4 54.2-149.2 20.3-189.6z"], + "searchengin": [460, 512, [], "f3eb", "M220.6 130.3l-67.2 28.2V43.2L98.7 233.5l54.7-24.2v130.3l67.2-209.3zm-83.2-96.7l-1.3 4.7-15.2 52.9C80.6 106.7 52 145.8 52 191.5c0 52.3 34.3 95.9 83.4 105.5v53.6C57.5 340.1 0 272.4 0 191.6c0-80.5 59.8-147.2 137.4-158zm311.4 447.2c-11.2 11.2-23.1 12.3-28.6 10.5-5.4-1.8-27.1-19.9-60.4-44.4-33.3-24.6-33.6-35.7-43-56.7-9.4-20.9-30.4-42.6-57.5-52.4l-9.7-14.7c-24.7 16.9-53 26.9-81.3 28.7l2.1-6.6 15.9-49.5c46.5-11.9 80.9-54 80.9-104.2 0-54.5-38.4-102.1-96-107.1V32.3C254.4 37.4 320 106.8 320 191.6c0 33.6-11.2 64.7-29 90.4l14.6 9.6c9.8 27.1 31.5 48 52.4 57.4s32.2 9.7 56.8 43c24.6 33.2 42.7 54.9 44.5 60.3s.7 17.3-10.5 28.5zm-9.9-17.9c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8z"], + "sellcast": [448, 512, [], "f2da", "M353.4 32H94.7C42.6 32 0 74.6 0 126.6v258.7C0 437.4 42.6 480 94.7 480h258.7c52.1 0 94.7-42.6 94.7-94.6V126.6c0-52-42.6-94.6-94.7-94.6zm-50 316.4c-27.9 48.2-89.9 64.9-138.2 37.2-22.9 39.8-54.9 8.6-42.3-13.2l15.7-27.2c5.9-10.3 19.2-13.9 29.5-7.9 18.6 10.8-.1-.1 18.5 10.7 27.6 15.9 63.4 6.3 79.4-21.3 15.9-27.6 6.3-63.4-21.3-79.4-17.8-10.2-.6-.4-18.6-10.6-24.6-14.2-3.4-51.9 21.6-37.5 18.6 10.8-.1-.1 18.5 10.7 48.4 28 65.1 90.3 37.2 138.5zm21.8-208.8c-17 29.5-16.3 28.8-19 31.5-6.5 6.5-16.3 8.7-26.5 3.6-18.6-10.8.1.1-18.5-10.7-27.6-15.9-63.4-6.3-79.4 21.3s-6.3 63.4 21.3 79.4c0 0 18.5 10.6 18.6 10.6 24.6 14.2 3.4 51.9-21.6 37.5-18.6-10.8.1.1-18.5-10.7-48.2-27.8-64.9-90.1-37.1-138.4 27.9-48.2 89.9-64.9 138.2-37.2l4.8-8.4c14.3-24.9 52-3.3 37.7 21.5z"], + "sellsy": [640, 512, [], "f213", "M539.71 237.308c3.064-12.257 4.29-24.821 4.29-37.384C544 107.382 468.618 32 376.076 32c-77.22 0-144.634 53.012-163.02 127.781-15.322-13.176-34.934-20.53-55.157-20.53-46.271 0-83.962 37.69-83.962 83.961 0 7.354.92 15.015 3.065 22.369-42.9 20.225-70.785 63.738-70.785 111.234C6.216 424.843 61.68 480 129.401 480h381.198c67.72 0 123.184-55.157 123.184-123.184.001-56.384-38.916-106.025-94.073-119.508zM199.88 401.554c0 8.274-7.048 15.321-15.321 15.321H153.61c-8.274 0-15.321-7.048-15.321-15.321V290.626c0-8.273 7.048-15.321 15.321-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v110.928zm89.477 0c0 8.274-7.048 15.321-15.322 15.321h-30.949c-8.274 0-15.321-7.048-15.321-15.321V270.096c0-8.274 7.048-15.321 15.321-15.321h30.949c8.274 0 15.322 7.048 15.322 15.321v131.458zm89.477 0c0 8.274-7.047 15.321-15.321 15.321h-30.949c-8.274 0-15.322-7.048-15.322-15.321V238.84c0-8.274 7.048-15.321 15.322-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v162.714zm87.027 0c0 8.274-7.048 15.321-15.322 15.321h-28.497c-8.274 0-15.321-7.048-15.321-15.321V176.941c0-8.579 7.047-15.628 15.321-15.628h28.497c8.274 0 15.322 7.048 15.322 15.628v224.613z"], + "servicestack": [496, 512, [], "f3ec", "M88 216c81.7 10.2 273.7 102.3 304 232H0c99.5-8.1 184.5-137 88-232zm32-152c32.3 35.6 47.7 83.9 46.4 133.6C249.3 231.3 373.7 321.3 400 448h96C455.3 231.9 222.8 79.5 120 64z"], + "shirtsinbulk": [448, 512, [], "f214", "M395.208 221.583H406v33.542h-10.792v-33.542zm0-9.625H406v-33.542h-10.792v33.542zm0 86.333H406V264.75h-10.792v33.541zM358.75 135.25h-33.542v10.5h33.542v-10.5zm36.458 206.208H406v-33.542h-10.792v33.542zM311.5 135.25h-33.542v10.5H311.5v-10.5zm-47.25 0H231v10.5h33.25v-10.5zm-47.25 0h-33.25v10.5H217v-10.5zm178.208 33.542H406V135.25h-33.542v10.5h22.75v23.042zm-255.792 259l30.625 13.417 4.375-9.917-30.625-13.417-4.375 9.917zM179.083 445l30.334 13.708 4.374-9.916-30.333-13.417-4.375 9.625zm216.125-60.375H406v-33.542h-10.792v33.542zm-334.833 8.167L91 406.208l4.375-9.624-30.625-13.709-4.375 9.917zm39.666 17.499l30.625 13.417 4.375-9.917-30.625-13.416-4.375 9.916zm132.417 38.501l4.375 9.916L267.459 445l-4.375-9.625-30.626 13.417zm118.417-52.208l4.375 9.624 30.624-13.416-4.374-9.917-30.625 13.709zM311.5 413.791l4.375 9.917 30.625-13.417-4.374-9.916-30.626 13.416zm-39.667 17.501l4.375 9.917 30.625-13.417-4.375-9.917-30.625 13.417zM311.5 46.583h-33.542v10.5H311.5v-10.5zm94.209 0h-33.251v10.5h33.251v-10.5zm-188.709 0h-33.25v10.5H217v-10.5zm141.75 0h-33.542v10.5h33.542v-10.5zm-94.5 0H231v10.5h33.25v-10.5zM448 3.708v406l-226.334 98.584L0 409.708v-406h448zm-29.166 116.958H29.166V390.75l192.792 85.75 196.875-85.75V120.666zm0-87.791H29.166V91.5h389.667V32.875zM75.542 46.583H42.291v10.5h33.251v-10.5zm94.5 0H136.5v10.5h33.542v-10.5zm-47.251 0H89.25v10.5h33.542v-10.5zm7.584 236.542c0-50.167 41.125-91.292 91.292-91.292 50.458 0 91.292 41.125 91.292 91.292 0 50.458-40.833 91.292-91.292 91.292-50.167-.001-91.292-40.834-91.292-91.292zm120.75 18.084c0 13.125-23.917 14.291-32.666 14.291-12.25 0-29.75-2.625-35.875-14.875h-.875L172.666 319c14.876 9.333 29.167 12.25 47.25 12.25 19.542 0 51.042-5.833 51.042-31.209 0-48.125-78.458-16.333-78.458-37.916 0-13.125 20.708-14.875 29.75-14.875 10.791 0 29.166 3.208 35.583 13.124h.875l8.751-16.916c-15.167-6.125-27.417-11.959-44.334-11.959-20.125 0-49.583 6.417-49.583 31.792 0 44.334 77.583 11.959 77.583 37.918zM122.791 135.25H89.25v10.5h33.542v-10.5zm-69.999 10.5h22.75v-10.5H42v33.542h10.792V145.75zm0 32.666H42v33.542h10.792v-33.542zm117.25-43.166H136.5v10.5h33.542v-10.5zm-117.25 86.333H42v33.542h10.792v-33.542zm0 86.334H42v33.542h10.792v-33.542zm0-43.167H42v33.542h10.792V264.75zm0 86.333H42v33.542h10.792v-33.542z"], + "shopware": [495, 512, [], "f5b5", "M395.5 455.27c-42.95 31.79-93.95 48.59-147.48 48.59-137.21 0-248.02-111-248.02-248 0-137.19 111.04-248 248.02-248 61.3 0 120.14 22.55 165.68 63.5 2.62 2.36.58 6.64-2.86 6.18-17.67-2.43-36.75-3.66-56.71-3.66-129.36 0-222.4 53.47-222.4 155.35 0 109.04 92.13 145.88 176.83 178.73 33.64 13.04 65.4 25.36 86.96 41.59 1.9 1.44 1.89 4.31-.02 5.72zm99.46-222.32c-.08-.94-.55-1.83-1.27-2.44-51.76-42.96-93.62-60.48-144.48-60.48-84.13 0-80.25 52.17-80.25 53.63 0 42.6 52.06 62.01 112.34 84.49 31.07 11.59 63.19 23.57 92.68 39.93 1.88 1.05 4.26.19 5.05-1.82 18.89-48.39 17.94-90.23 15.93-113.31z"], + "simplybuilt": [512, 512, [], "f215", "M481.2 64h-106c-14.5 0-26.6 11.8-26.6 26.3v39.6H163.3V90.3c0-14.5-12-26.3-26.6-26.3h-106C16.1 64 4.3 75.8 4.3 90.3v331.4c0 14.5 11.8 26.3 26.6 26.3h450.4c14.8 0 26.6-11.8 26.6-26.3V90.3c-.2-14.5-12-26.3-26.7-26.3zM149.8 355.8c-36.6 0-66.4-29.7-66.4-66.4 0-36.9 29.7-66.6 66.4-66.6 36.9 0 66.6 29.7 66.6 66.6 0 36.7-29.7 66.4-66.6 66.4zm212.4 0c-36.9 0-66.6-29.7-66.6-66.6 0-36.6 29.7-66.4 66.6-66.4 36.6 0 66.4 29.7 66.4 66.4 0 36.9-29.8 66.6-66.4 66.6z"], + "sistrix": [448, 512, [], "f3ee", "M448 449L301.2 300.2c20-27.9 31.9-62.2 31.9-99.2 0-93.1-74.7-168.9-166.5-168.9C74.7 32 0 107.8 0 200.9s74.7 168.9 166.5 168.9c39.8 0 76.3-14.2 105-37.9l146 148.1 30.5-31zM166.5 330.8c-70.6 0-128.1-58.3-128.1-129.9S95.9 71 166.5 71s128.1 58.3 128.1 129.9-57.4 129.9-128.1 129.9z"], + "sith": [448, 512, [], "f512", "M0 32l69.71 118.75-58.86-11.52 69.84 91.03a146.741 146.741 0 0 0 0 51.45l-69.84 91.03 58.86-11.52L0 480l118.75-69.71-11.52 58.86 91.03-69.84c17.02 3.04 34.47 3.04 51.48 0l91.03 69.84-11.52-58.86L448 480l-69.71-118.78 58.86 11.52-69.84-91.03c3.03-17.01 3.04-34.44 0-51.45l69.84-91.03-58.86 11.52L448 32l-118.75 69.71 11.52-58.9-91.06 69.87c-8.5-1.52-17.1-2.29-25.71-2.29s-17.21.78-25.71 2.29l-91.06-69.87 11.52 58.9L0 32zm224 99.78c31.8 0 63.6 12.12 87.85 36.37 48.5 48.5 48.49 127.21 0 175.7s-127.2 48.46-175.7-.03c-48.5-48.5-48.49-127.21 0-175.7 24.24-24.25 56.05-36.34 87.85-36.34zm0 36.66c-22.42 0-44.83 8.52-61.92 25.61-34.18 34.18-34.19 89.68 0 123.87s89.65 34.18 123.84 0c34.18-34.18 34.19-89.68 0-123.87-17.09-17.09-39.5-25.61-61.92-25.61z"], + "skyatlas": [640, 512, [], "f216", "M640 329.3c0 65.9-52.5 114.4-117.5 114.4-165.9 0-196.6-249.7-359.7-249.7-146.9 0-147.1 212.2 5.6 212.2 42.5 0 90.9-17.8 125.3-42.5 5.6-4.1 16.9-16.3 22.8-16.3s10.9 5 10.9 10.9c0 7.8-13.1 19.1-18.7 24.1-40.9 35.6-100.3 61.2-154.7 61.2-83.4.1-154-59-154-144.9s67.5-149.1 152.8-149.1c185.3 0 222.5 245.9 361.9 245.9 99.9 0 94.8-139.7 3.4-139.7-17.5 0-35 11.6-46.9 11.6-8.4 0-15.9-7.2-15.9-15.6 0-11.6 5.3-23.7 5.3-36.3 0-66.6-50.9-114.7-116.9-114.7-53.1 0-80 36.9-88.8 36.9-6.2 0-11.2-5-11.2-11.2 0-5.6 4.1-10.3 7.8-14.4 25.3-28.8 64.7-43.7 102.8-43.7 79.4 0 139.1 58.4 139.1 137.8 0 6.9-.3 13.7-1.2 20.6 11.9-3.1 24.1-4.7 35.9-4.7 60.7 0 111.9 45.3 111.9 107.2z"], + "skype": [448, 512, [], "f17e", "M424.7 299.8c2.9-14 4.7-28.9 4.7-43.8 0-113.5-91.9-205.3-205.3-205.3-14.9 0-29.7 1.7-43.8 4.7C161.3 40.7 137.7 32 112 32 50.2 32 0 82.2 0 144c0 25.7 8.7 49.3 23.3 68.2-2.9 14-4.7 28.9-4.7 43.8 0 113.5 91.9 205.3 205.3 205.3 14.9 0 29.7-1.7 43.8-4.7 19 14.6 42.6 23.3 68.2 23.3 61.8 0 112-50.2 112-112 .1-25.6-8.6-49.2-23.2-68.1zm-194.6 91.5c-65.6 0-120.5-29.2-120.5-65 0-16 9-30.6 29.5-30.6 31.2 0 34.1 44.9 88.1 44.9 25.7 0 42.3-11.4 42.3-26.3 0-18.7-16-21.6-42-28-62.5-15.4-117.8-22-117.8-87.2 0-59.2 58.6-81.1 109.1-81.1 55.1 0 110.8 21.9 110.8 55.4 0 16.9-11.4 31.8-30.3 31.8-28.3 0-29.2-33.5-75-33.5-25.7 0-42 7-42 22.5 0 19.8 20.8 21.8 69.1 33 41.4 9.3 90.7 26.8 90.7 77.6 0 59.1-57.1 86.5-112 86.5z"], + "slack": [448, 512, [], "f198", "M244.2 217.5l19.3 57.7-59.8 20-19.3-57.7 59.8-20zm41.4 243.7C131.6 507.4 65 471.6 18.8 317.6S8.4 97 162.4 50.8C316.4 4.6 383 40.4 429.2 194.4c46.2 154 10.4 220.6-143.6 266.8zM366.2 265c-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-19.3-57.7 29-9.7c12.2-3.9 18.6-17.2 14.7-29.4-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-59.8 20.1-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l19.3 57.7-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 59.8-20.1 10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 29-9.7c12.2-4.2 18.6-17.5 14.7-29.6z"], + "slack-hash": [448, 512, [], "f3ef", "M446.2 270.4c-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-30.3-90 45.4-15.1c19.1-6.2 29.1-26.8 23-45.9-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-93.4 31.2-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-45.3 15c-19.1 6.2-29.1 26.8-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l30.3 90L78 354.8c-19 6.2-29.1 26.9-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 93.6-31.3 15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 45.4-15.1c19-6 29.1-26.7 22.9-45.7zm-254.1 47.2l-30.3-90.2 93.5-31.3 30.3 90.2-93.5 31.3z"], + "slideshare": [512, 512, [], "f1e7", "M249.429 211.436c0 31.716-27.715 57.717-61.717 57.717-34.001 0-61.716-26.001-61.716-57.717 0-32.001 27.715-57.716 61.716-57.716 34.001 0 61.717 25.715 61.717 57.716zm254.294 50.002c-18.286 22.573-53.144 50.288-106.289 72.003C453.722 525.163 260 555.735 263.143 457.446c0 1.714-.286-52.859-.286-93.432-4.285-.858-8.571-2-13.714-3.143 0 40.858-.286 98.289-.286 96.575C252 555.735 58.278 525.163 114.566 333.441c-53.145-21.715-88.003-49.43-106.29-72.003-9.143-13.714.858-28.287 16.001-17.715 2 1.428 4.285 2.857 6.285 4.285V49.716C30.563 22.287 51.135 0 76.565 0h359.157c25.429 0 46.002 22.287 46.002 49.716v198.293l6-4.285c15.143-10.573 25.143 4 15.999 17.714zm-46.572-189.15c0-32.858-10.572-45.716-40.859-45.716H98.566c-31.716 0-40.573 10.858-40.573 45.716v192.293c67.717 35.43 125.72 29.144 157.435 28.001 13.429-.286 22.001 2.286 27.144 7.715 1.689 1.687 10.023 9.446 20.287 17.143 1.143-15.715 10.001-25.715 33.716-24.858 32.287 1.428 91.718 7.715 160.577-29.716V72.288zM331.146 153.72c-34.002 0-61.716 25.715-61.716 57.716 0 31.716 27.715 57.717 61.716 57.717 34.287 0 61.716-26.001 61.716-57.717 0-32.001-27.429-57.716-61.716-57.716z"], + "snapchat": [496, 512, [], "f2ab", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm169.5 338.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C183.1 100 230.7 96 244.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z"], + "snapchat-ghost": [512, 512, [], "f2ac", "M510.846 392.673c-5.211 12.157-27.239 21.089-67.36 27.318-2.064 2.786-3.775 14.686-6.507 23.956-1.625 5.566-5.623 8.869-12.128 8.869l-.297-.005c-9.395 0-19.203-4.323-38.852-4.323-26.521 0-35.662 6.043-56.254 20.588-21.832 15.438-42.771 28.764-74.027 27.399-31.646 2.334-58.025-16.908-72.871-27.404-20.714-14.643-29.828-20.582-56.241-20.582-18.864 0-30.736 4.72-38.852 4.72-8.073 0-11.213-4.922-12.422-9.04-2.703-9.189-4.404-21.263-6.523-24.13-20.679-3.209-67.31-11.344-68.498-32.15a10.627 10.627 0 0 1 8.877-11.069c69.583-11.455 100.924-82.901 102.227-85.934.074-.176.155-.344.237-.515 3.713-7.537 4.544-13.849 2.463-18.753-5.05-11.896-26.872-16.164-36.053-19.796-23.715-9.366-27.015-20.128-25.612-27.504 2.437-12.836 21.725-20.735 33.002-15.453 8.919 4.181 16.843 6.297 23.547 6.297 5.022 0 8.212-1.204 9.96-2.171-2.043-35.936-7.101-87.29 5.687-115.969C158.122 21.304 229.705 15.42 250.826 15.42c.944 0 9.141-.089 10.11-.089 52.148 0 102.254 26.78 126.723 81.643 12.777 28.65 7.749 79.792 5.695 116.009 1.582.872 4.357 1.942 8.599 2.139 6.397-.286 13.815-2.389 22.069-6.257 6.085-2.846 14.406-2.461 20.48.058l.029.01c9.476 3.385 15.439 10.215 15.589 17.87.184 9.747-8.522 18.165-25.878 25.018-2.118.835-4.694 1.655-7.434 2.525-9.797 3.106-24.6 7.805-28.616 17.271-2.079 4.904-1.256 11.211 2.46 18.748.087.168.166.342.239.515 1.301 3.03 32.615 74.46 102.23 85.934 6.427 1.058 11.163 7.877 7.725 15.859z"], + "snapchat-square": [448, 512, [], "f2ad", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6.5 314.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C159.1 100 206.7 96 220.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z"], + "soundcloud": [640, 512, [], "f1be", "M111.4 256.3l5.8 65-5.8 68.3c-.3 2.5-2.2 4.4-4.4 4.4s-4.2-1.9-4.2-4.4l-5.6-68.3 5.6-65c0-2.2 1.9-4.2 4.2-4.2 2.2 0 4.1 2 4.4 4.2zm21.4-45.6c-2.8 0-4.7 2.2-5 5l-5 105.6 5 68.3c.3 2.8 2.2 5 5 5 2.5 0 4.7-2.2 4.7-5l5.8-68.3-5.8-105.6c0-2.8-2.2-5-4.7-5zm25.5-24.1c-3.1 0-5.3 2.2-5.6 5.3l-4.4 130 4.4 67.8c.3 3.1 2.5 5.3 5.6 5.3 2.8 0 5.3-2.2 5.3-5.3l5.3-67.8-5.3-130c0-3.1-2.5-5.3-5.3-5.3zM7.2 283.2c-1.4 0-2.2 1.1-2.5 2.5L0 321.3l4.7 35c.3 1.4 1.1 2.5 2.5 2.5s2.2-1.1 2.5-2.5l5.6-35-5.6-35.6c-.3-1.4-1.1-2.5-2.5-2.5zm23.6-21.9c-1.4 0-2.5 1.1-2.5 2.5l-6.4 57.5 6.4 56.1c0 1.7 1.1 2.8 2.5 2.8s2.5-1.1 2.8-2.5l7.2-56.4-7.2-57.5c-.3-1.4-1.4-2.5-2.8-2.5zm25.3-11.4c-1.7 0-3.1 1.4-3.3 3.3L47 321.3l5.8 65.8c.3 1.7 1.7 3.1 3.3 3.1 1.7 0 3.1-1.4 3.1-3.1l6.9-65.8-6.9-68.1c0-1.9-1.4-3.3-3.1-3.3zm25.3-2.2c-1.9 0-3.6 1.4-3.6 3.6l-5.8 70 5.8 67.8c0 2.2 1.7 3.6 3.6 3.6s3.6-1.4 3.9-3.6l6.4-67.8-6.4-70c-.3-2.2-2-3.6-3.9-3.6zm241.4-110.9c-1.1-.8-2.8-1.4-4.2-1.4-2.2 0-4.2.8-5.6 1.9-1.9 1.7-3.1 4.2-3.3 6.7v.8l-3.3 176.7 1.7 32.5 1.7 31.7c.3 4.7 4.2 8.6 8.9 8.6s8.6-3.9 8.6-8.6l3.9-64.2-3.9-177.5c-.4-3-2-5.8-4.5-7.2zm-26.7 15.3c-1.4-.8-2.8-1.4-4.4-1.4s-3.1.6-4.4 1.4c-2.2 1.4-3.6 3.9-3.6 6.7l-.3 1.7-2.8 160.8s0 .3 3.1 65.6v.3c0 1.7.6 3.3 1.7 4.7 1.7 1.9 3.9 3.1 6.4 3.1 2.2 0 4.2-1.1 5.6-2.5 1.7-1.4 2.5-3.3 2.5-5.6l.3-6.7 3.1-58.6-3.3-162.8c-.3-2.8-1.7-5.3-3.9-6.7zm-111.4 22.5c-3.1 0-5.8 2.8-5.8 6.1l-4.4 140.6 4.4 67.2c.3 3.3 2.8 5.8 5.8 5.8 3.3 0 5.8-2.5 6.1-5.8l5-67.2-5-140.6c-.2-3.3-2.7-6.1-6.1-6.1zm376.7 62.8c-10.8 0-21.1 2.2-30.6 6.1-6.4-70.8-65.8-126.4-138.3-126.4-17.8 0-35 3.3-50.3 9.4-6.1 2.2-7.8 4.4-7.8 9.2v249.7c0 5 3.9 8.6 8.6 9.2h218.3c43.3 0 78.6-35 78.6-78.3.1-43.6-35.2-78.9-78.5-78.9zm-296.7-60.3c-4.2 0-7.5 3.3-7.8 7.8l-3.3 136.7 3.3 65.6c.3 4.2 3.6 7.5 7.8 7.5 4.2 0 7.5-3.3 7.5-7.5l3.9-65.6-3.9-136.7c-.3-4.5-3.3-7.8-7.5-7.8zm-53.6-7.8c-3.3 0-6.4 3.1-6.4 6.7l-3.9 145.3 3.9 66.9c.3 3.6 3.1 6.4 6.4 6.4 3.6 0 6.4-2.8 6.7-6.4l4.4-66.9-4.4-145.3c-.3-3.6-3.1-6.7-6.7-6.7zm26.7 3.4c-3.9 0-6.9 3.1-6.9 6.9L227 321.3l3.9 66.4c.3 3.9 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9l4.2-66.4-4.2-141.7c0-3.9-3-6.9-6.9-6.9z"], + "speakap": [448, 512, [], "f3f3", "M352 32H96C43.2 32 0 75.2 0 128v256c0 52.8 43.2 96 96 96h256c52.8 0 96-43.2 96-96V128c0-52.8-43.2-96-96-96zM221 382.9c-39.6 0-81.9-17.8-81.9-53.7V302H179v17.8c0 15.1 19.5 24.5 41.9 24.5 24.2 0 41.3-10.4 41.3-29.5 0-23.8-27.2-31.9-54.7-42.6-31.9-12.4-63.1-26.2-63.1-69.1 0-48 38.6-66.4 79.9-66.4 37.6 0 75.5 14.1 75.5 41.9v31.2h-39.9v-16.1c0-12.1-17.8-18.5-35.6-18.5-19.5 0-35.6 8.1-35.6 26.2 0 22.1 22.5 29.2 47 38.9 35.9 12.4 71.1 27.2 71.1 71.5.1 48.6-40.8 71.1-85.8 71.1z"], + "spotify": [496, 512, [], "f1bc", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm100.7 364.9c-4.2 0-6.8-1.3-10.7-3.6-62.4-37.6-135-39.2-206.7-24.5-3.9 1-9 2.6-11.9 2.6-9.7 0-15.8-7.7-15.8-15.8 0-10.3 6.1-15.2 13.6-16.8 81.9-18.1 165.6-16.5 237 26.2 6.1 3.9 9.7 7.4 9.7 16.5s-7.1 15.4-15.2 15.4zm26.9-65.6c-5.2 0-8.7-2.3-12.3-4.2-62.5-37-155.7-51.9-238.6-29.4-4.8 1.3-7.4 2.6-11.9 2.6-10.7 0-19.4-8.7-19.4-19.4s5.2-17.8 15.5-20.7c27.8-7.8 56.2-13.6 97.8-13.6 64.9 0 127.6 16.1 177 45.5 8.1 4.8 11.3 11 11.3 19.7-.1 10.8-8.5 19.5-19.4 19.5zm31-76.2c-5.2 0-8.4-1.3-12.9-3.9-71.2-42.5-198.5-52.7-280.9-29.7-3.6 1-8.1 2.6-12.9 2.6-13.2 0-23.3-10.3-23.3-23.6 0-13.6 8.4-21.3 17.4-23.9 35.2-10.3 74.6-15.2 117.5-15.2 73 0 149.5 15.2 205.4 47.8 7.8 4.5 12.9 10.7 12.9 22.6 0 13.6-11 23.3-23.2 23.3z"], + "squarespace": [512, 512, [], "f5be", "M186.12 343.34c-9.65 9.65-9.65 25.29 0 34.94 9.65 9.65 25.29 9.65 34.94 0L378.24 221.1c19.29-19.29 50.57-19.29 69.86 0s19.29 50.57 0 69.86L293.95 445.1c19.27 19.29 50.53 19.31 69.82.04l.04-.04 119.25-119.24c38.59-38.59 38.59-101.14 0-139.72-38.59-38.59-101.15-38.59-139.72 0l-157.22 157.2zm244.53-104.8c-9.65-9.65-25.29-9.65-34.93 0l-157.2 157.18c-19.27 19.29-50.53 19.31-69.82.05l-.05-.05c-9.64-9.64-25.27-9.65-34.92-.01l-.01.01c-9.65 9.64-9.66 25.28-.02 34.93l.02.02c38.58 38.57 101.14 38.57 139.72 0l157.2-157.2c9.65-9.65 9.65-25.29.01-34.93zm-261.99 87.33l157.18-157.18c9.64-9.65 9.64-25.29 0-34.94-9.64-9.64-25.27-9.64-34.91 0L133.72 290.93c-19.28 19.29-50.56 19.3-69.85.01l-.01-.01c-19.29-19.28-19.31-50.54-.03-69.84l.03-.03L218.03 66.89c-19.28-19.29-50.55-19.3-69.85-.02l-.02.02L28.93 186.14c-38.58 38.59-38.58 101.14 0 139.72 38.6 38.59 101.13 38.59 139.73.01zm-87.33-52.4c9.64 9.64 25.27 9.64 34.91 0l157.21-157.19c19.28-19.29 50.55-19.3 69.84-.02l.02.02c9.65 9.65 25.29 9.65 34.93 0 9.65-9.65 9.65-25.29 0-34.93-38.59-38.59-101.13-38.59-139.72 0L81.33 238.54c-9.65 9.64-9.65 25.28-.01 34.93h.01z"], + "stack-exchange": [448, 512, [], "f18d", "M17.7 332.3h412.7v22c0 37.7-29.3 68-65.3 68h-19L259.3 512v-89.7H83c-36 0-65.3-30.3-65.3-68v-22zm0-23.6h412.7v-85H17.7v85zm0-109.4h412.7v-85H17.7v85zM365 0H83C47 0 17.7 30.3 17.7 67.7V90h412.7V67.7C430.3 30.3 401 0 365 0z"], + "stack-overflow": [384, 512, [], "f16c", "M293.7 300l-181.2-84.5 16.7-36.5 181.3 84.7-16.8 36.3zm48-76L188.2 95.7l-25.5 30.8 153.5 128.3 25.5-30.8zm39.6-31.7L262 32l-32 24 119.3 160.3 32-24zM290.7 311L95 269.7 86.8 309l195.7 41 8.2-39zm31.6 129H42.7V320h-40v160h359.5V320h-40v120zm-39.8-80h-200v39.7h200V360z"], + "staylinked": [440, 512, [], "f3f5", "M201.6 127.4c4.1-3.2 10.3-3 13.8.5l170 167.3-2.7-2.7 44.3 41.3c3.7 3.5 3.3 9-.7 12.2l-198 163.9c-9.9 7.6-17.3.8-17.3.8L2.3 314.6c-3.5-3.5-3-9 1.2-12.2l45.8-34.9c4.2-3.2 10.4-3 13.9.5l151.9 147.5c3.7 3.5 10 3.7 14.2.4l93.2-74c4.1-3.2 4.5-8.7.9-12.2l-84-81.3c-3.6-3.5-9.9-3.7-14-.5l-.1.1c-4.1 3.2-10.4 3-14-.5l-68.1-64.3c-3.5-3.5-3.1-9 1.1-12.2l57.3-43.6m14.8 257.3c3.7 3.5 10.1 3.7 14.3.4l50.2-38.8-.3-.3 7.7-6c4.2-3.2 4.6-8.7.9-12.2l-57.1-54.4c-3.6-3.5-10-3.7-14.2-.5l-.1.1c-4.2 3.2-10.5 3.1-14.2-.4L109 180.8c-3.6-3.5-3.1-8.9 1.1-12.2l92.2-71.5c4.1-3.2 10.3-3 13.9.5l160.4 159c3.7 3.5 10 3.7 14.1.5l45.8-35.8c4.1-3.2 4.4-8.7.7-12.2L226.7 2.5c-1.5-1.2-8-5.5-16.3 1.1L3.6 165.7c-4.2 3.2-4.8 8.7-1.2 12.2l42.3 41.7"], + "steam": [496, 512, [], "f1b6", "M496 256c0 137-111.2 248-248.4 248-113.8 0-209.6-76.3-239-180.4l95.2 39.3c6.4 32.1 34.9 56.4 68.9 56.4 39.2 0 71.9-32.4 70.2-73.5l84.5-60.2c52.1 1.3 95.8-40.9 95.8-93.5 0-51.6-42-93.5-93.7-93.5s-93.7 42-93.7 93.5v1.2L176.6 279c-15.5-.9-30.7 3.4-43.5 12.1L0 236.1C10.2 108.4 117.1 8 247.6 8 384.8 8 496 119 496 256zM155.7 384.3l-30.5-12.6a52.79 52.79 0 0 0 27.2 25.8c26.9 11.2 57.8-1.6 69-28.4 5.4-13 5.5-27.3.1-40.3-5.4-13-15.5-23.2-28.5-28.6-12.9-5.4-26.7-5.2-38.9-.6l31.5 13c19.8 8.2 29.2 30.9 20.9 50.7-8.3 19.9-31 29.2-50.8 21zm173.8-129.9c-34.4 0-62.4-28-62.4-62.3s28-62.3 62.4-62.3 62.4 28 62.4 62.3-27.9 62.3-62.4 62.3zm.1-15.6c25.9 0 46.9-21 46.9-46.8 0-25.9-21-46.8-46.9-46.8s-46.9 21-46.9 46.8c.1 25.8 21.1 46.8 46.9 46.8z"], + "steam-square": [448, 512, [], "f1b7", "M185.2 356.5c7.7-18.5-1-39.7-19.6-47.4l-29.5-12.2c11.4-4.3 24.3-4.5 36.4.5 12.2 5.1 21.6 14.6 26.7 26.7 5 12.2 5 25.6-.1 37.7-10.5 25.1-39.4 37-64.6 26.5-11.6-4.8-20.4-13.6-25.4-24.2l28.5 11.8c18.6 7.8 39.9-.9 47.6-19.4zM400 32H48C21.5 32 0 53.5 0 80v160.7l116.6 48.1c12-8.2 26.2-12.1 40.7-11.3l55.4-80.2v-1.1c0-48.2 39.3-87.5 87.6-87.5s87.6 39.3 87.6 87.5c0 49.2-40.9 88.7-89.6 87.5l-79 56.3c1.6 38.5-29.1 68.8-65.7 68.8-31.8 0-58.5-22.7-64.5-52.7L0 319.2V432c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-99.7 222.5c-32.2 0-58.4-26.1-58.4-58.3s26.2-58.3 58.4-58.3 58.4 26.2 58.4 58.3-26.2 58.3-58.4 58.3zm.1-14.6c24.2 0 43.9-19.6 43.9-43.8 0-24.2-19.6-43.8-43.9-43.8-24.2 0-43.9 19.6-43.9 43.8 0 24.2 19.7 43.8 43.9 43.8z"], + "steam-symbol": [448, 512, [], "f3f6", "M395.5 177.5c0 33.8-27.5 61-61 61-33.8 0-61-27.3-61-61s27.3-61 61-61c33.5 0 61 27.2 61 61zm52.5.2c0 63-51 113.8-113.7 113.8L225 371.3c-4 43-40.5 76.8-84.5 76.8-40.5 0-74.7-28.8-83-67L0 358V250.7L97.2 290c15.1-9.2 32.2-13.3 52-11.5l71-101.7c.5-62.3 51.5-112.8 114-112.8C397 64 448 115 448 177.7zM203 363c0-34.7-27.8-62.5-62.5-62.5-4.5 0-9 .5-13.5 1.5l26 10.5c25.5 10.2 38 39 27.7 64.5-10.2 25.5-39.2 38-64.7 27.5-10.2-4-20.5-8.3-30.7-12.2 10.5 19.7 31.2 33.2 55.2 33.2 34.7 0 62.5-27.8 62.5-62.5zm207.5-185.3c0-42-34.3-76.2-76.2-76.2-42.3 0-76.5 34.2-76.5 76.2 0 42.2 34.3 76.2 76.5 76.2 41.9.1 76.2-33.9 76.2-76.2z"], + "sticker-mule": [576, 512, [], "f3f7", "M353.1 509.8c-5.9 2.9-32.1 3.2-36.5-.5-4.1-3-2.2-11.9-1.5-15 2.2-15-2.5-7.9-9.8-11.5-3.1-1.5-4.1-5.5-4.6-10-.5-1.5-1-2.5-1.5-3.5-1.7-10.7 6.8-33.6 8.2-43.4 4.9-23.7-.7-37.2 1.5-46.9 3.7-16.2 4.1-3.5 4.1-29.9-1.4-25.9 3.3-36.9.5-38.9-14.8 0-64.3 10.7-112.2 2-46.1-8.9-59.4-29-65.4-30.9-10.3-4.5-23.2.5-27.3 7-.1.1-35 70.6-39.6 87.8-6.2 20.5-.5 47.4 4.1 66.8 0 .1 4.5 14.6 10.3 19.5 2.1 1.5 5.1 2.5 7.2 4.5 2.8 2.7 9.4 15.2 9.8 16 2.6 4.5 3.6 8-1.5 10.5-3.6 2-9.3 2.5-14.4 2.5-2.6.5-1.5 3.5-3.1 5-2.9 2.8-20.7 6.1-29.9 2.5-2.6-1-5.7-3-6.2-5-1.5-4 2.1-9-1-12.5-4.5-2.9-13.1-2-17-12-2.2-5.4-2.6-7.6-2.6-49.4 0-9.7-5.9-38.7-8.2-46.9-1.5-5.5-1.5-11.5 0-16 .3-.9 4.1-4.6 4.1-13-1-1.5-4.6-.5-5.1-1.5-10.4-80.6-5.9-79-7.7-98.3-1.5-16-10.9-43.9-6.7-64.3.5-2.4 3.4-21 24.2-38.9 31-26.7 48.4-38.3 159-11.5 1.1.4 66.3 21.1 110.7-9 15.5-11.3 28.8-11.3 35.5-16 .1-.1 61.7-52.1 87-65.3 47.2-29.4 69.9-16.7 75.1-18 4.7-1 13.4-25.8 17-25.8 5.5 0 1.6 20.2 3.6 25.9.5 2 3.6 5 6.2 5 2.3 0 1.7-.8 10.3-5 8.4-5.4 14.9-17.6 20.6-17 11.7 1.6-19 41.6-19 46.9 0 2 .2.8 4.6 9.5 2.6 5.5 4.6 13.5 6.2 20 8.3 29.7 5.7 14.6 13.4 36.9 20.2 50.1 20.6 45.2 20.6 52.9 0 7.5-4.1 11-7.2 16.5-1.5 3-4.6 7.5-7.2 8-2.7.7 7-1.5-13.4 2.5-7.2 1-13.4-4.5-14.9-9.5-1.6-4.7 2.8-10.1-11.8-22.9-10.3-10-21.1-11.3-31.9-17-9.8-5.7-11.9 1-18 8-18 22.9-34 46.9-52 69.8-11.8 15-24.2 30.4-33.5 47.4-3.9 6.8-9.5 28.1-10.3 29.9-6.2 17.7-5.5 25.8-16.5 68.3-3.1 10-5.7 21.4-8.7 32.4-2.2 6.8-7.4 49.3-.5 59.4 2.1 3.5 8.7 4.5 11.3 8 .1.1 9.6 18.2 9.3 20 0 6.1-9.4 5.6-11.3 6.5-4.8 2.9-3.8 5.9-6.4 7.4"], + "strava": [369, 512, [], "f428", "M301.6 292l-43.9 88.2-44.6-88.2h-67.6l112.2 220 111.5-220h-67.6zM151.4 0L0 292h89.2l62.2-116.1L213.1 292h88.5L151.4 0z"], + "stripe": [640, 512, [], "f429", "M640 261.6c0-45.5-22-81.4-64.2-81.4s-67.9 35.9-67.9 81.1c0 53.5 30.3 78.2 73.5 78.2 21.2 0 37.1-4.8 49.2-11.5v-33.4c-12.1 6.1-26 9.8-43.6 9.8-17.3 0-32.5-6.1-34.5-26.9h86.9c.2-2.3.6-11.6.6-15.9m-87.9-16.8c0-20 12.3-28.4 23.4-28.4 10.9 0 22.5 8.4 22.5 28.4h-45.9zm-112.9-64.6c-17.4 0-28.6 8.2-34.8 13.9l-2.3-11H363v204.8l44.4-9.4.1-50.2c6.4 4.7 15.9 11.2 31.4 11.2 31.8 0 60.8-23.2 60.8-79.6.1-51.6-29.3-79.7-60.5-79.7m-10.6 122.5c-10.4 0-16.6-3.8-20.9-8.4l-.3-66c4.6-5.1 11-8.8 21.2-8.8 16.2 0 27.4 18.2 27.4 41.4.1 23.9-10.9 41.8-27.4 41.8M346.4 124v36.2l-44.6 9.5v-36.2l44.6-9.5m-44.5 59.2h44.6v153.2h-44.6V183.2zm-47.8 13.1c10.4-19.1 31.1-15.2 37.1-13.1V224c-5.7-1.8-23.4-4.5-33.9 9.3v103.1H213V183.2h38.4l2.7 13.1m-89-13.1h33.7V221h-33.7v63.2c0 26.2 28 18 33.7 15.7v33.8c-5.9 3.2-16.6 5.9-31.2 5.9-26.3 0-46.1-17-46.1-43.3l.2-142.4 43.3-9.2.1 38.5zM44.9 228.3c0 20 67.9 10.5 67.9 63.4 0 32-25.4 47.8-62.3 47.8-15.3 0-32-3-48.5-10.1v-40c14.9 8.1 33.9 14.2 48.6 14.2 9.9 0 17-2.7 17-10.9 0-21.2-67.5-13.2-67.5-62.4 0-31.4 24-50.2 60-50.2 14.7 0 29.4 2.3 44.1 8.1V230c-13.5-7.3-30.7-11.4-44.2-11.4-9.3.1-15.1 2.8-15.1 9.7"], + "stripe-s": [362, 512, [], "f42a", "M144.3 154.6c0-22.3 18.6-30.9 48.4-30.9 43.4 0 98.5 13.3 141.9 36.7V26.1C287.3 7.2 240.1 0 192.8 0 77.1 0 0 60.4 0 161.4c0 157.9 216.8 132.3 216.8 200.4 0 26.4-22.9 34.9-54.7 34.9-47.2 0-108.2-19.5-156.1-45.5v128.5c53 22.8 106.8 32.4 156 32.4 118.6 0 200.3-51 200.3-153.6 0-170.2-218-139.7-218-203.9"], + "studiovinari": [512, 512, [], "f3f8", "M480.3 187.7l4.2 28v28l-25.1 44.1-39.8 78.4-56.1 67.5-79.1 37.8-17.7 24.5-7.7 12-9.6 4s17.3-63.6 19.4-63.6c2.1 0 20.3.7 20.3.7l66.7-38.6-92.5 26.1-55.9 36.8-22.8 28-6.6 1.4 20.8-73.6 6.9-5.5 20.7 12.9 88.3-45.2 56.8-51.5 14.8-68.4-125.4 23.3 15.2-18.2-173.4-53.3 81.9-10.5-166-122.9L133.5 108 32.2 0l252.9 126.6-31.5-38L378 163 234.7 64l18.7 38.4-49.6-18.1L158.3 0l194.6 122L310 66.2l108 96.4 12-8.9-21-16.4 4.2-37.8L451 89.1l29.2 24.7 11.5 4.2-7 6.2 8.5 12-13.1 7.4-10.3 20.2 10.5 23.9z"], + "stumbleupon": [512, 512, [], "f1a4", "M502.9 266v69.7c0 62.1-50.3 112.4-112.4 112.4-61.8 0-112.4-49.8-112.4-111.3v-70.2l34.3 16 51.1-15.2V338c0 14.7 12 26.5 26.7 26.5S417 352.7 417 338v-72h85.9zm-224.7-58.2l34.3 16 51.1-15.2V173c0-60.5-51.1-109-112.1-109-60.8 0-112.1 48.2-112.1 108.2v162.4c0 14.9-12 26.7-26.7 26.7S86 349.5 86 334.6V266H0v69.7C0 397.7 50.3 448 112.4 448c61.6 0 112.4-49.5 112.4-110.8V176.9c0-14.7 12-26.7 26.7-26.7s26.7 12 26.7 26.7v30.9z"], + "stumbleupon-circle": [496, 512, [], "f1a3", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 177.5c-9.8 0-17.8 8-17.8 17.8v106.9c0 40.9-33.9 73.9-74.9 73.9-41.4 0-74.9-33.5-74.9-74.9v-46.5h57.3v45.8c0 10 8 17.8 17.8 17.8s17.8-7.9 17.8-17.8V200.1c0-40 34.2-72.1 74.7-72.1 40.7 0 74.7 32.3 74.7 72.6v23.7l-34.1 10.1-22.9-10.7v-20.6c.1-9.6-7.9-17.6-17.7-17.6zm167.6 123.6c0 41.4-33.5 74.9-74.9 74.9-41.2 0-74.9-33.2-74.9-74.2V263l22.9 10.7 34.1-10.1v47.1c0 9.8 8 17.6 17.8 17.6s17.8-7.9 17.8-17.6v-48h57.3c-.1 45.9-.1 46.4-.1 46.4z"], + "superpowers": [448, 512, [], "f2dd", "M448 32c-83.3 11-166.8 22-250 33-92 12.5-163.3 86.7-169 180-3.3 55.5 18 109.5 57.8 148.2L0 480c83.3-11 166.5-22 249.8-33 91.8-12.5 163.3-86.8 168.7-179.8 3.5-55.5-18-109.5-57.7-148.2L448 32zm-79.7 232.3c-4.2 79.5-74 139.2-152.8 134.5-79.5-4.7-140.7-71-136.3-151 4.5-79.2 74.3-139.3 153-134.5 79.3 4.7 140.5 71 136.1 151z"], + "supple": [640, 512, [], "f3f9", "M640 262.5c0 64.1-109 116.1-243.5 116.1-24.8 0-48.6-1.8-71.1-5 7.7.4 15.5.6 23.4.6 134.5 0 243.5-56.9 243.5-127.1 0-29.4-19.1-56.4-51.2-78 60 21.1 98.9 55.1 98.9 93.4zM47.7 227.9c-.1-70.2 108.8-127.3 243.3-127.6 7.9 0 15.6.2 23.3.5-22.5-3.2-46.3-4.9-71-4.9C108.8 96.3-.1 148.5 0 212.6c.1 38.3 39.1 72.3 99.3 93.3-32.3-21.5-51.5-48.6-51.6-78zm60.2 39.9s10.5 13.2 29.3 13.2c17.9 0 28.4-11.5 28.4-25.1 0-28-40.2-25.1-40.2-39.7 0-5.4 5.3-9.1 12.5-9.1 5.7 0 11.3 2.6 11.3 6.6v3.9h14.2v-7.9c0-12.1-15.4-16.8-25.4-16.8-16.5 0-28.5 10.2-28.5 24.1 0 26.6 40.2 25.4 40.2 39.9 0 6.6-5.8 10.1-12.3 10.1-11.9 0-20.7-10.1-20.7-10.1l-8.8 10.9zm120.8-73.6v54.4c0 11.3-7.1 17.8-17.8 17.8-10.7 0-17.8-6.5-17.8-17.7v-54.5h-15.8v55c0 18.9 13.4 31.9 33.7 31.9 20.1 0 33.4-13 33.4-31.9v-55h-15.7zm34.4 85.4h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.8-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5.1 14.7-14 14.7h-12.6zm57 43h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.7-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5 14.7-14 14.7h-12.6zm57.1 34.8c0 5.8 2.4 8.2 8.2 8.2h37.6c5.8 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-18.6c-1.7 0-2.6-1-2.6-2.6v-61.2c0-5.7-2.4-8.2-8.2-8.2H401v13.4h5.2c1.7 0 2.6 1 2.6 2.6v61.2zm63.4 0c0 5.8 2.4 8.2 8.2 8.2H519c5.7 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-19.7c-1.7 0-2.6-1-2.6-2.6v-20.3h27.7v-13.4H488v-22.4h19.2c1.7 0 2.6 1 2.6 2.6v5.2H524v-13c0-5.7-2.5-8.2-8.2-8.2h-51.6v13.4h7.8v63.9zm58.9-76v5.9h1.6v-5.9h2.7v-1.2h-7v1.2h2.7zm5.7-1.2v7.1h1.5v-5.7l2.3 5.7h1.3l2.3-5.7v5.7h1.5v-7.1h-2.3l-2.1 5.1-2.1-5.1h-2.4z"], + "teamspeak": [511, 512, [], "f4f9", "M.82 237.82c2.36-15.52 10.69-27.04 24.88-34.03 3.5-1.85 5.65-3.5 6.37-7.81 6.17-33.41 19.53-63.94 39.37-91.59 2.36-3.19 4.01-5.35 1.03-9.35-3.7-5.35-1.03-10.18 2.98-14.49 28.06-31.87 61.88-55.1 101.98-67.44 95.81-29.4 180.1-9.35 252.37 60.45 6.68 6.37 15.52 12.85 6.99 24.36-1.34 1.85 1.03 3.5 2.16 5.04 20.66 28.06 34.23 59.42 40.4 93.65.82 3.7 2.98 5.04 5.86 6.37 17.37 8.84 25.7 23.34 26.01 42.25 0 17.17 1.85 34.54-1.03 51.71-4.01 24.67-29.19 41.74-53.25 36.7-7.2-1.64-9.35-7.2-9.35-14.19 0-28.06.82-56.44 0-84.6-1.85-75.76-36.18-132.81-102.28-169.41C234.28 4.98 92.11 72.42 67.54 196.91c-6.06 30.42-1.74 48.27-3.7 125.82-.31 7.2-4.32 11.2-12.03 11.51C20.97 335.58 0 316.05 0 285.21v-20.87m221.74 106.81c11.82-4.32 20.05-11.82 22.51-24.36 2.36-12.34-12.03-30.02-32.38-48.73-20.87-19.22-48.22-39.06-63.43-46.57-21.69-12.03-41.74-1.85-46.26 22.72-5.04 26.21 0 51.4 14.49 73.91 10.18 15.52 25.39 22.72 43.38 24.05 11.62.62 52.54 2.16 61.69-1.02m129.83 5.55c36.5 2.81 59.33-28.55 58.39-60.45-2.14-45.17-66.17-16.48-87.79-8.02-73.16 28.14-45.05 54.92-22.2 60.75m149.26-1.33c-2.98-2.36-7.2-1.03-8.33 2.36-8.02 25.39-44.72 112.46-172.08 121.51-149.67 10.49 80.29 43.59 145.36-6.37 22.72-17.37 47.6-35.05 46.57-85.43-.32-10.07-4.84-26.72-11.52-32.07"], + "telegram": [496, 512, [], "f2c6", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm121.8 169.9l-40.7 191.8c-3 13.6-11.1 16.9-22.4 10.5l-62-45.7-29.9 28.8c-3.3 3.3-6.1 6.1-12.5 6.1l4.4-63.1 114.9-103.8c5-4.4-1.1-6.9-7.7-2.5l-142 89.4-61.2-19.1c-13.3-4.2-13.6-13.3 2.8-19.7l239.1-92.2c11.1-4 20.8 2.7 17.2 19.5z"], + "telegram-plane": [448, 512, [], "f3fe", "M446.7 98.6l-67.6 318.8c-5.1 22.5-18.4 28.1-37.3 17.5l-103-75.9-49.7 47.8c-5.5 5.5-10.1 10.1-20.7 10.1l7.4-104.9 190.9-172.5c8.3-7.4-1.8-11.5-12.9-4.1L117.8 284 16.2 252.2c-22.1-6.9-22.5-22.1 4.6-32.7L418.2 66.4c18.4-6.9 34.5 4.1 28.5 32.2z"], + "tencent-weibo": [384, 512, [], "f1d5", "M72.3 495.8c1.4 19.9-27.6 22.2-29.7 2.9C31 368.8 73.7 259.2 144 185.5c-15.6-34 9.2-77.1 50.6-77.1 30.3 0 55.1 24.6 55.1 55.1 0 44-49.5 70.8-86.9 45.1-65.7 71.3-101.4 169.8-90.5 287.2zM192 .1C66.1.1-12.3 134.3 43.7 242.4 52.4 259.8 79 246.9 70 229 23.7 136.4 91 29.8 192 29.8c75.4 0 136.9 61.4 136.9 136.9 0 90.8-86.9 153.9-167.7 133.1-19.1-4.1-25.6 24.4-6.6 29.1 110.7 23.2 204-60 204-162.3C358.6 74.7 284 .1 192 .1z"], + "themeco": [441, 512, [], "f5c6", "M199.74 12.29c9.74-5.64 25.59-5.73 35.39-.21l188.13 105.95c9.81 5.52 17.76 19.14 17.76 30.38v213.87c0 11.26-7.93 24.89-17.71 30.46L235.09 499.88c-9.78 5.57-25.58 5.48-35.29-.21L17.58 392.95C7.87 387.26 0 373.52 0 362.27V148.41c0-11.26 7.9-24.96 17.63-30.59L199.74 12.29zM123.54 209c-15.69 0-31.39.14-47.08.14v99.87h18.83v-29.39h28.25c48.94 0 48.79-70.62 0-70.62zm137.96 98.73l-30.25-34.1c36.4-7.39 34.26-64.21-10.7-64.49-15.84 0-31.67-.14-47.51-.14v100.01h18.83v-33.38H210l29.1 33.38h22.4v-1.28zm-40.94-81.04c22.98 0 22.9 31.96 0 31.96h-28.68v-31.96h28.68zm-94.07-1.57c20.85 0 20.78 38.24 0 38.24H94.68v-38.23l31.81-.01zm189.65-17.97c-67.4 0-69.86 104.15 0 104.15 68.39-.01 68.33-104.15 0-104.15zm0 17.12c43.43 0 44.1 69.76 0 69.76-44.12 0-43.74-69.76 0-69.76z"], + "themeisle": [512, 512, [], "f2b2", "M208 88.286c0-10 6.286-21.714 17.715-21.714 11.142 0 17.714 11.714 17.714 21.714 0 10.285-6.572 21.714-17.714 21.714C214.286 110 208 98.571 208 88.286zm304 160c0 36.001-11.429 102.286-36.286 129.714-22.858 24.858-87.428 61.143-120.857 70.572l-1.143.286v32.571c0 16.286-12.572 30.571-29.143 30.571-10 0-19.429-5.714-24.572-14.286-5.427 8.572-14.856 14.286-24.856 14.286-10 0-19.429-5.714-24.858-14.286-5.142 8.572-14.571 14.286-24.57 14.286-10.286 0-19.429-5.714-24.858-14.286-5.143 8.572-14.571 14.286-24.571 14.286-18.857 0-29.429-15.714-29.429-32.857-16.286 12.285-35.715 19.428-56.571 19.428-22 0-43.429-8.285-60.286-22.857 10.285-.286 20.571-2.286 30.285-5.714-20.857-5.714-39.428-18.857-52-36.286 21.37 4.645 46.209 1.673 67.143-11.143-22-22-56.571-58.857-68.572-87.428C1.143 321.714 0 303.714 0 289.429c0-49.714 20.286-160 86.286-160 10.571 0 18.857 4.858 23.143 14.857a158.792 158.792 0 0 1 12-15.428c2-2.572 5.714-5.429 7.143-8.286 7.999-12.571 11.714-21.142 21.714-34C182.571 45.428 232 17.143 285.143 17.143c6 0 12 .285 17.714 1.143C313.714 6.571 328.857 0 344.572 0c14.571 0 29.714 6 40 16.286.857.858 1.428 2.286 1.428 3.428 0 3.714-10.285 13.429-12.857 16.286 4.286 1.429 15.714 6.858 15.714 12 0 2.857-2.857 5.143-4.571 7.143 31.429 27.714 49.429 67.143 56.286 108 4.286-5.143 10.285-8.572 17.143-8.572 10.571 0 20.857 7.144 28.571 14.001C507.143 187.143 512 221.714 512 248.286zM188 89.428c0 18.286 12.571 37.143 32.286 37.143 19.714 0 32.285-18.857 32.285-37.143 0-18-12.571-36.857-32.285-36.857-19.715 0-32.286 18.858-32.286 36.857zM237.714 194c0-19.714 3.714-39.143 8.571-58.286-52.039 79.534-13.531 184.571 68.858 184.571 21.428 0 42.571-7.714 60-20 2-7.429 3.714-14.857 3.714-22.572 0-14.286-6.286-21.428-20.572-21.428-4.571 0-9.143.857-13.429 1.714-63.343 12.668-107.142 3.669-107.142-63.999zm-41.142 254.858c0-11.143-8.858-20.857-20.286-20.857-11.429 0-20 9.715-20 20.857v32.571c0 11.143 8.571 21.142 20 21.142 11.428 0 20.286-9.715 20.286-21.142v-32.571zm49.143 0c0-11.143-8.572-20.857-20-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20-10 20-21.142v-32.571zm49.713 0c0-11.143-8.857-20.857-20.285-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20.285-9.715 20.285-21.142v-32.571zm49.715 0c0-11.143-8.857-20.857-20.286-20.857-11.428 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.858 21.142 20.286 21.142 11.429 0 20.286-10 20.286-21.142v-32.571zM421.714 286c-30.857 59.142-90.285 102.572-158.571 102.572-96.571 0-160.571-84.572-160.571-176.572 0-16.857 2-33.429 6-49.714-20 33.715-29.714 72.572-29.714 111.429 0 60.286 24.857 121.715 71.429 160.857 5.143-9.714 14.857-16.286 26-16.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.571-14.286 24.858-14.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.857-14.286 24.858-14.286 10 0 19.428 5.714 24.857 14.286 5.143-8.571 14.571-14.286 24.572-14.286 10.857 0 20.857 6.572 25.714 16 43.427-36.286 68.569-92 71.426-148.286zm10.572-99.714c0-53.714-34.571-105.714-92.572-105.714-30.285 0-58.571 15.143-78.857 36.857C240.862 183.812 233.41 254 302.286 254c28.805 0 97.357-28.538 84.286 36.857 28.857-26 45.714-65.714 45.714-104.571z"], + "trade-federation": [496, 512, [], "f513", "M202.45 108.42v81.61H38.94l48.22 61.91h114.73v196.75h64.61V252.96h83.27v-62.69h-83.18V171.1h145.62v-62.68H202.45zm4.86 6h197.77v50.68H259.44v30.93h83.18v50.93h-83.26v195.73h-52.73V245.94H89.86l-39.95-49.91h157.4v-81.61zM247.99 8.8C111.03 8.8 0 119.83 0 256.8s111.03 248 247.99 248S496 393.76 496 256.8 384.96 8.8 247.99 8.8zm.02 13.24c129.66 0 234.76 105.12 234.76 234.78s-105.1 234.76-234.76 234.76S13.23 386.47 13.23 256.81 118.35 22.04 248.01 22.04zm0 7.89c-125.3 0-226.89 101.57-226.89 226.87s101.59 226.89 226.89 226.89S474.88 382.1 474.88 256.8 373.31 29.93 248.01 29.93zm-.02 13.3c117.95 0 213.56 95.62 213.56 213.56s-95.62 213.56-213.56 213.56S34.43 374.75 34.43 256.8 130.04 43.23 247.99 43.23zm-73.32 104.8l15.66 18.05-22.16-9.45-12.33 20.47 2.15-23.99-23.28-5.4 23.48-5.37-2.06-23.81 12.37 20.67 22.01-9.32-15.84 18.15zm-47.14-46.54l8.01 12.4 12.69-5.86-9.32 11.45 9.5 10.25-13.77-5.32-6.82 12.2.81-14.74-13.71-2.71 14.27-3.78-1.66-13.89zm250.77 75.59l11.99 19.56 20.88-9.11-14.9 17.45 15.11 17.04-21.2-8.78-11.54 19.64 1.8-22.87-22.24-4.9 22.31-5.36-2.21-22.67zm-107.05 98.45l13.86-3.22-1.28-14.17 7.35 12.18 13.08-5.59-9.31 10.75 9.36 10.71-13.1-5.54-7.29 12.21 1.22-14.17-13.89-3.16zm-125.43 6.5l23.73-3.87-1.73-24.53 11.01 21.38 22.79-9.22-16.93 17.08 15.81 18.83-21.47-10.82-13.02 20.86 3.66-23.77-23.85-5.94zm63.44-165.66v81.61H54.16l36.72 46.01h117.7v196.75h48.82V245.01h83.27v-47.03H257.4v-34.83h145.73v-46.78H209.26zm10.86 11.2h171.8v24.36H246.88v56.23h82.93v23.94h-82.93v197.42h-26.76V232.1H96.31l-20.09-23.94h143.9v-80.59z"], + "trello": [448, 512, [], "f181", "M392 32H56C25.1 32 0 57.1 0 88v336c0 30.9 25.1 56 56 56h336c30.9 0 56-25.1 56-56V88c0-30.9-25.1-56-56-56zM194.9 371.4c0 14.8-12 26.9-26.9 26.9H85.1c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9H168c14.8 0 26.9 12 26.9 26.9v254.3zm194.9-112c0 14.8-12 26.9-26.9 26.9H280c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9h82.9c14.8 0 26.9 12 26.9 26.9v142.3z"], + "tripadvisor": [576, 512, [], "f262", "M166.4 280.521c0 13.236-10.73 23.966-23.966 23.966s-23.966-10.73-23.966-23.966 10.73-23.966 23.966-23.966 23.966 10.729 23.966 23.966zm264.962-23.956c-13.23 0-23.956 10.725-23.956 23.956 0 13.23 10.725 23.956 23.956 23.956 13.23 0 23.956-10.725 23.956-23.956-.001-13.231-10.726-23.956-23.956-23.956zm89.388 139.49c-62.667 49.104-153.276 38.109-202.379-24.559l-30.979 46.325-30.683-45.939c-48.277 60.39-135.622 71.891-197.885 26.055-64.058-47.158-77.759-137.316-30.601-201.374A186.762 186.762 0 0 0 0 139.416l90.286-.05a358.48 358.48 0 0 1 197.065-54.03 350.382 350.382 0 0 1 192.181 53.349l96.218.074a185.713 185.713 0 0 0-28.352 57.649c46.793 62.747 34.964 151.37-26.648 199.647zM259.366 281.761c-.007-63.557-51.535-115.075-115.092-115.068C80.717 166.7 29.2 218.228 29.206 281.785c.007 63.557 51.535 115.075 115.092 115.068 63.513-.075 114.984-51.539 115.068-115.052v-.04zm28.591-10.455c5.433-73.44 65.51-130.884 139.12-133.022a339.146 339.146 0 0 0-139.727-27.812 356.31 356.31 0 0 0-140.164 27.253c74.344 1.582 135.299 59.424 140.771 133.581zm251.706-28.767c-21.992-59.634-88.162-90.148-147.795-68.157-59.634 21.992-90.148 88.162-68.157 147.795v.032c22.038 59.607 88.198 90.091 147.827 68.113 59.615-22.004 90.113-88.162 68.125-147.783zm-326.039 37.975v.115c-.057 39.328-31.986 71.163-71.314 71.106-39.328-.057-71.163-31.986-71.106-71.314.057-39.328 31.986-71.163 71.314-71.106 39.259.116 71.042 31.94 71.106 71.199zm-24.512 0v-.084c-.051-25.784-20.994-46.645-46.778-46.594-25.784.051-46.645 20.994-46.594 46.777.051 25.784 20.994 46.645 46.777 46.594 25.726-.113 46.537-20.968 46.595-46.693zm313.423 0v.048c-.02 39.328-31.918 71.194-71.247 71.173s-71.194-31.918-71.173-71.247c.02-39.328 31.918-71.194 71.247-71.173 39.29.066 71.121 31.909 71.173 71.199zm-24.504-.008c-.009-25.784-20.918-46.679-46.702-46.67-25.784.009-46.679 20.918-46.67 46.702.009 25.784 20.918 46.678 46.702 46.67 25.765-.046 46.636-20.928 46.67-46.693v-.009z"], + "tumblr": [320, 512, [], "f173", "M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z"], + "tumblr-square": [448, 512, [], "f174", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-82.3 364.2c-8.5 9.1-31.2 19.8-60.9 19.8-75.5 0-91.9-55.5-91.9-87.9v-90h-29.7c-3.4 0-6.2-2.8-6.2-6.2v-42.5c0-4.5 2.8-8.5 7.1-10 38.8-13.7 50.9-47.5 52.7-73.2.5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2h-52.1V321c0 21.4 14.8 33.5 42.5 22.4 3-1.2 5.6-2 8-1.4 2.2.5 3.6 2.1 4.6 4.9l13.8 40.2c1 3.2 2 6.7-.3 9.1z"], + "twitch": [448, 512, [], "f1e8", "M40.1 32L10 108.9v314.3h107V480h60.2l56.8-56.8h87l117-117V32H40.1zm357.8 254.1L331 353H224l-56.8 56.8V353H76.9V72.1h321v214zM331 149v116.9h-40.1V149H331zm-107 0v116.9h-40.1V149H224z"], + "twitter": [512, 512, [], "f099", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"], + "twitter-square": [448, 512, [], "f081", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z"], + "typo3": [433, 512, [], "f42b", "M330.8 341c-7 2.3-11.6 2.3-18.5 2.3-57.2 0-140.6-198.5-140.6-264.9 0-24.7 5.4-32.4 13.9-39.4-69.5 8.5-149.3 34-176.3 66.4-5.4 7.7-9.3 20.8-9.3 37.1C0 246 106.8 480 184.1 480c36.3 0 97.3-59.5 146.7-139M294.5 32c71.8 0 138.8 11.6 138.8 52.5 0 82.6-52.5 182.3-78.8 182.3-47.9 0-101.7-132.1-101.7-198.5 0-30.9 11.6-36.3 41.7-36.3"], + "uber": [448, 512, [], "f402", "M414.1 32H33.9C15.2 32 0 47.2 0 65.9V446c0 18.8 15.2 34 33.9 34H414c18.7 0 33.9-15.2 33.9-33.9V65.9C448 47.2 432.8 32 414.1 32zM237.6 391.1C163 398.6 96.4 344.2 88.9 269.6h94.4V290c0 3.7 3 6.8 6.8 6.8H258c3.7 0 6.8-3 6.8-6.8v-67.9c0-3.7-3-6.8-6.8-6.8h-67.9c-3.7 0-6.8 3-6.8 6.8v20.4H88.9c7-69.4 65.4-122.2 135.1-122.2 69.7 0 128.1 52.8 135.1 122.2 7.5 74.5-46.9 141.1-121.5 148.6z"], + "uikit": [448, 512, [], "f403", "M443.9 128v256L218 512 0 384V169.7l87.6 45.1v117l133.5 75.5 135.8-75.5v-151l-101.1-57.6 87.6-53.1L443.9 128zM308.6 49.1L223.8 0l-88.6 54.8 86 47.3 87.4-53z"], + "uniregistry": [384, 512, [], "f404", "M281.1 220.1H384v-14.8H281.1v14.8zm0-37.1H384v-12.4H281.1V183zm0 74.2H384v-17.3H281.1v17.3zm-157.7 86.7H8.5c2.6 8.5 5.8 16.8 9.6 24.8h138.3c-12.9-5.7-24.1-14.2-33-24.8m145.7-12.4h109.7c1.8-7.3 3.1-14.7 3.9-22.3H278.3c-2.1 7.9-5.2 15.4-9.2 22.3m-41.5 37.1H367c3.7-8 5.8-16.2 8.5-24.8h-115c-8.8 10.7-20.1 19.2-32.9 24.8M384 32H281.1v2.5H384V32zM192 480c39.5 0 76.2-11.8 106.8-32.2H85.3C115.8 468.2 152.5 480 192 480m89.1-334.2H384V136H281.1v9.8zm0-37.1H384v-7.4H281.1v7.4zm0-37.1H384v-4.9H281.1v4.9zm-178.2 99H0V183h102.9v-12.4zM38.8 405.7h305.3c6.7-8.5 12.6-17.6 17.8-27.2H23c5.2 9.6 9.2 18.7 15.8 27.2m64.1-118.8v-12.4H0v12.4c0 2.5 0 5 .1 7.4h103.1c-.2-2.4-.3-4.9-.3-7.4m178.2 0c0 2.5-.1 5-.4 7.4h103.1c.1-2.5.2-4.9.2-7.4v-12.4H281.1v12.4zm-203 156h227.7c11.8-8.7 22.7-18.6 32.2-29.7H44.9c9.6 11 21.4 21 33.2 29.7m24.8-376.2H0v4.9h102.9v-4.9zm0-34.7H0v2.5h102.9V32zm0 173.3H0v14.8h102.9v-14.8zm0 34.6H0v17.3h102.9v-17.3zm0-103.9H0v9.9h102.9V136zm0-34.7H0v7.4h102.9v-7.4zm2.8 207.9H1.3c.9 7.6 2.2 15 3.9 22.3h109.7c-4-6.9-7.2-14.4-9.2-22.3"], + "untappd": [640, 512, [], "f405", "M401.3 49.9c-79.8 160.1-84.6 152.5-87.9 173.2l-5.2 32.8c-1.9 12-6.6 23.5-13.7 33.4L145.6 497.1c-7.6 10.6-20.4 16.2-33.4 14.6-40.3-5-77.8-32.2-95.3-68.5-5.7-11.8-4.5-25.8 3.1-36.4l148.9-207.9c7.1-9.9 16.4-18 27.2-23.7l29.3-15.5c18.5-9.8 9.7-11.9 135.6-138.9 1-4.8 1-7.3 3.6-8 3-.7 6.6-1 6.3-4.6l-.4-4.6c-.2-1.9 1.3-3.6 3.2-3.6 4.5-.1 13.2 1.2 25.6 10 12.3 8.9 16.4 16.8 17.7 21.1.6 1.8-.6 3.7-2.4 4.2l-4.5 1.1c-3.4.9-2.5 4.4-2.3 7.4.1 2.8-2.3 3.6-6.5 6.1zM230.1 36.4c3.4.9 2.5 4.4 2.3 7.4-.2 2.7 2.1 3.5 6.4 6 7.9 15.9 15.3 30.5 22.2 44 .7 1.3 2.3 1.5 3.3.5 11.2-12 24.6-26.2 40.5-42.6 1.3-1.4 1.4-3.5.1-4.9-8-8.2-16.5-16.9-25.6-26.1-1-4.7-1-7.3-3.6-8-3-.8-6.6-1-6.3-4.6.3-3.3 1.4-8.1-2.8-8.2-4.5-.1-13.2 1.1-25.6 10-12.3 8.9-16.4 16.8-17.7 21.1-1.4 4.2 3.6 4.6 6.8 5.4zM620 406.7L471.2 198.8c-13.2-18.5-26.6-23.4-56.4-39.1-11.2-5.9-14.2-10.9-30.5-28.9-1-1.1-2.9-.9-3.6.5-46.3 88.8-47.1 82.8-49 94.8-1.7 10.7-1.3 20 .3 29.8 1.9 12 6.6 23.5 13.7 33.4l148.9 207.9c7.6 10.6 20.2 16.2 33.1 14.7 40.3-4.9 78-32 95.7-68.6 5.4-11.9 4.3-25.9-3.4-36.6z"], + "usb": [640, 512, [], "f287", "M641.5 256c0 3.1-1.7 6.1-4.5 7.5L547.9 317c-1.4.8-2.8 1.4-4.5 1.4-1.4 0-3.1-.3-4.5-1.1-2.8-1.7-4.5-4.5-4.5-7.8v-35.6H295.7c25.3 39.6 40.5 106.9 69.6 106.9H392V354c0-5 3.9-8.9 8.9-8.9H490c5 0 8.9 3.9 8.9 8.9v89.1c0 5-3.9 8.9-8.9 8.9h-89.1c-5 0-8.9-3.9-8.9-8.9v-26.7h-26.7c-75.4 0-81.1-142.5-124.7-142.5H140.3c-8.1 30.6-35.9 53.5-69 53.5C32 327.3 0 295.3 0 256s32-71.3 71.3-71.3c33.1 0 61 22.8 69 53.5 39.1 0 43.9 9.5 74.6-60.4C255 88.7 273 95.7 323.8 95.7c7.5-20.9 27-35.6 50.4-35.6 29.5 0 53.5 23.9 53.5 53.5s-23.9 53.5-53.5 53.5c-23.4 0-42.9-14.8-50.4-35.6H294c-29.1 0-44.3 67.4-69.6 106.9h310.1v-35.6c0-3.3 1.7-6.1 4.5-7.8 2.8-1.7 6.4-1.4 8.9.3l89.1 53.5c2.8 1.1 4.5 4.1 4.5 7.2z"], + "ussunnah": [512, 512, [], "f407", "M156.8 285.1l5.7 14.4h-8.2c-1.3-3.2-3.1-7.7-3.8-9.5-2.5-6.3-1.1-8.4 0-10 1.9-2.7 3.2-4.4 3.6-5.2 0 2.2.8 5.7 2.7 10.3zm297.3 18.8c-2.1 13.8-5.7 27.1-10.5 39.7l43 23.4-44.8-18.8c-5.3 13.2-12 25.6-19.9 37.2l34.2 30.2-36.8-26.4c-8.4 11.8-18 22.6-28.7 32.3l24.9 34.7-28.1-31.8c-11 9.6-23.1 18-36.1 25.1l15.7 37.2-19.3-35.3c-13.1 6.8-27 12.1-41.6 15.9l6.7 38.4-10.5-37.4c-14.3 3.4-29.2 5.3-44.5 5.4L256 512l-1.9-38.4c-15.3-.1-30.2-2-44.5-5.3L199 505.6l6.7-38.2c-14.6-3.7-28.6-9.1-41.7-15.8l-19.2 35.1 15.6-37c-13-7-25.2-15.4-36.2-25.1l-27.9 31.6 24.7-34.4c-10.7-9.7-20.4-20.5-28.8-32.3l-36.5 26.2 33.9-29.9c-7.9-11.6-14.6-24.1-20-37.3l-44.4 18.7L67.8 344c-4.8-12.7-8.4-26.1-10.5-39.9l-51 9 50.3-14.2c-1.1-8.5-1.7-17.1-1.7-25.9 0-4.7.2-9.4.5-14.1L0 256l56-2.8c1.3-13.1 3.8-25.8 7.5-38.1L6.4 199l58.9 10.4c4-12 9.1-23.5 15.2-34.4l-55.1-30 58.3 24.6C90 159 97.2 149.2 105.3 140L55.8 96.4l53.9 38.7c8.1-8.6 17-16.5 26.6-23.6l-40-55.6 45.6 51.6c9.5-6.6 19.7-12.3 30.3-17.2l-27.3-64.9 33.8 62.1c10.5-4.4 21.4-7.9 32.7-10.4L199 6.4l19.5 69.2c11-2.1 22.3-3.2 33.8-3.4L256 0l3.6 72.2c11.5.2 22.8 1.4 33.8 3.5L313 6.4l-12.4 70.7c11.3 2.6 22.2 6.1 32.6 10.5l33.9-62.2-27.4 65.1c10.6 4.9 20.7 10.7 30.2 17.2l45.8-51.8-40.1 55.9c9.5 7.1 18.4 15 26.5 23.6l54.2-38.9-49.7 43.9c8 9.1 15.2 18.9 21.5 29.4l58.7-24.7-55.5 30.2c6.1 10.9 11.1 22.3 15.1 34.3l59.3-10.4-57.5 16.2c3.7 12.2 6.2 24.9 7.5 37.9L512 256l-56 2.8c.3 4.6.5 9.3.5 14.1 0 8.7-.6 17.3-1.6 25.8l50.7 14.3-51.5-9.1zm-21.8-31c0-97.5-79-176.5-176.5-176.5s-176.5 79-176.5 176.5 79 176.5 176.5 176.5 176.5-79 176.5-176.5zm-24 0c0 84.3-68.3 152.6-152.6 152.6s-152.6-68.3-152.6-152.6 68.3-152.6 152.6-152.6 152.6 68.3 152.6 152.6zM195 241c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-40.7-19c0 2.1 1.3 3.8 3.6 5.1 3.5 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-19 0c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.4 6.8-9.6 10.9-9.6 12.6zm204.9 87.9c-8.4-3-8.7-6.8-8.7-15.6V182c-8.2 12.5-14.2 18.6-18 18.6 6.3 14.4 9.5 23.9 9.5 28.3v64.3c0 2.2-2.2 6.5-4.7 6.5h-18c-2.8-7.5-10.2-26.9-15.3-40.3-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3 2.6 6.7 6.4 16.5 7.9 20.2h-9.2c-3.9-10.4-9.6-25.4-11.8-31.1-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3.8 2 2.8 7.3 4.3 10.9H256c-1.5-4.1-5.6-14.6-8.4-22-2 2.5-7.2 9.2-10.7 13.7 2.5 1.6 4.3 3.6 5.2 6.3.2.6.5 1.4.6 1.7H225c-4.6-13.9-11.4-27.7-11.4-34.1 0-2.2.3-5.1 1.1-8.2-8.8 10.8-14 15.9-14 25 0 7.5 10.4 28.3 10.4 33.3 0 1.7-.5 3.3-1.4 4.9-9.6-12.7-15.5-20.7-18.8-20.7h-12l-11.2-28c-3.8-9.6-5.7-16-5.7-18.8 0-3.8.5-7.7 1.7-12.2-1 1.3-3.7 4.7-5.5 7.1-.8-2.1-3.1-7.7-4.6-11.5-2.1 2.5-7.5 9.1-11.2 13.6.9 2.3 3.3 8.1 4.9 12.2-2.5 3.3-9.1 11.8-13.6 17.7-4 5.3-5.8 13.3-2.7 21.8 2.5 6.7 2 7.9-1.7 14.1H191c5.5 0 14.3 14 15.5 22 13.2-16 15.4-19.6 16.8-21.6h107c3.9 0 7.2-1.9 9.9-5.8zm20.1-26.6V181.7c-9 12.5-15.9 18.6-20.7 18.6 7.1 14.4 10.7 23.9 10.7 28.3v66.3c0 17.5 8.6 20.4 24 20.4 8.1 0 12.5-.8 13.7-2.7-4.3-1.6-7.6-2.5-9.9-3.3-8.1-3.2-17.8-7.4-17.8-26z"], + "vaadin": [448, 512, [], "f408", "M224.5 140.7c1.5-17.6 4.9-52.7 49.8-52.7h98.6c20.7 0 32.1-7.8 32.1-21.6V54.1c0-12.2 9.3-22.1 21.5-22.1S448 41.9 448 54.1v36.5c0 42.9-21.5 62-66.8 62H280.7c-30.1 0-33 14.7-33 27.1 0 1.3-.1 2.5-.2 3.7-.7 12.3-10.9 22.2-23.4 22.2s-22.7-9.8-23.4-22.2c-.1-1.2-.2-2.4-.2-3.7 0-12.3-3-27.1-33-27.1H66.8c-45.3 0-66.8-19.1-66.8-62V54.1C0 41.9 9.4 32 21.6 32s21.5 9.9 21.5 22.1v12.3C43.1 80.2 54.5 88 75.2 88h98.6c44.8 0 48.3 35.1 49.8 52.7h.9zM224 456c11.5 0 21.4-7 25.7-16.3 1.1-1.8 97.1-169.6 98.2-171.4 11.9-19.6-3.2-44.3-27.2-44.3-13.9 0-23.3 6.4-29.8 20.3L224 362l-66.9-117.7c-6.4-13.9-15.9-20.3-29.8-20.3-24 0-39.1 24.6-27.2 44.3 1.1 1.9 97.1 169.6 98.2 171.4 4.3 9.3 14.2 16.3 25.7 16.3z"], + "viacoin": [384, 512, [], "f237", "M384 32h-64l-80.7 192h-94.5L64 32H0l48 112H0v48h68.5l13.8 32H0v48h102.8L192 480l89.2-208H384v-48h-82.3l13.8-32H384v-48h-48l48-112zM192 336l-27-64h54l-27 64z"], + "viadeo": [448, 512, [], "f2a9", "M276.2 150.5v.7C258.3 98.6 233.6 47.8 205.4 0c43.3 29.2 67 100 70.8 150.5zm32.7 121.7c7.6 18.2 11 37.5 11 57 0 77.7-57.8 141-137.8 139.4l3.8-.3c74.2-46.7 109.3-118.6 109.3-205.1 0-38.1-6.5-75.9-18.9-112 1 11.7 1 23.7 1 35.4 0 91.8-18.1 241.6-116.6 280C95 455.2 49.4 398 49.4 329.2c0-75.6 57.4-142.3 135.4-142.3 16.8 0 33.7 3.1 49.1 9.6 1.7-15.1 6.5-29.9 13.4-43.3-19.9-7.2-41.2-10.7-62.5-10.7-161.5 0-238.7 195.9-129.9 313.7 67.9 74.6 192 73.9 259.8 0 56.6-61.3 60.9-142.4 36.4-201-12.7 8-27.1 13.9-42.2 17zM418.1 11.7c-31 66.5-81.3 47.2-115.8 80.1-12.4 12-20.6 34-20.6 50.5 0 14.1 4.5 27.1 12 38.8 47.4-11 98.3-46 118.2-90.7-.7 5.5-4.8 14.4-7.2 19.2-20.3 35.7-64.6 65.6-99.7 84.9 14.8 14.4 33.7 25.8 55 25.8 79 0 110.1-134.6 58.1-208.6z"], + "viadeo-square": [448, 512, [], "f2aa", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM280.7 381.2c-42.4 46.2-120 46.6-162.4 0-68-73.6-19.8-196.1 81.2-196.1 13.3 0 26.6 2.1 39.1 6.7-4.3 8.4-7.3 17.6-8.4 27.1-9.7-4.1-20.2-6-30.7-6-48.8 0-84.6 41.7-84.6 88.9 0 43 28.5 78.7 69.5 85.9 61.5-24 72.9-117.6 72.9-175 0-7.3 0-14.8-.6-22.1-11.2-32.9-26.6-64.6-44.2-94.5 27.1 18.3 41.9 62.5 44.2 94.1v.4c7.7 22.5 11.8 46.2 11.8 70 0 54.1-21.9 99-68.3 128.2l-2.4.2c50 1 86.2-38.6 86.2-87.2 0-12.2-2.1-24.3-6.9-35.7 9.5-1.9 18.5-5.6 26.4-10.5 15.3 36.6 12.6 87.3-22.8 125.6zM309 233.7c-13.3 0-25.1-7.1-34.4-16.1 21.9-12 49.6-30.7 62.3-53 1.5-3 4.1-8.6 4.5-12-12.5 27.9-44.2 49.8-73.9 56.7-4.7-7.3-7.5-15.5-7.5-24.3 0-10.3 5.2-24.1 12.9-31.6 21.6-20.5 53-8.5 72.4-50 32.5 46.2 13.1 130.3-36.3 130.3z"], + "viber": [512, 512, [], "f409", "M444 49.9C431.3 38.2 379.9.9 265.3.4c0 0-135.1-8.1-200.9 52.3C27.8 89.3 14.9 143 13.5 209.5c-1.4 66.5-3.1 191.1 117 224.9h.1l-.1 51.6s-.8 20.9 13 25.1c16.6 5.2 26.4-10.7 42.3-27.8 8.7-9.4 20.7-23.2 29.8-33.7 82.2 6.9 145.3-8.9 152.5-11.2 16.6-5.4 110.5-17.4 125.7-142 15.8-128.6-7.6-209.8-49.8-246.5zM457.9 287c-12.9 104-89 110.6-103 115.1-6 1.9-61.5 15.7-131.2 11.2 0 0-52 62.7-68.2 79-5.3 5.3-11.1 4.8-11-5.7 0-6.9.4-85.7.4-85.7-.1 0-.1 0 0 0-101.8-28.2-95.8-134.3-94.7-189.8 1.1-55.5 11.6-101 42.6-131.6 55.7-50.5 170.4-43 170.4-43 96.9.4 143.3 29.6 154.1 39.4 35.7 30.6 53.9 103.8 40.6 211.1zm-139-80.8c.4 8.6-12.5 9.2-12.9.6-1.1-22-11.4-32.7-32.6-33.9-8.6-.5-7.8-13.4.7-12.9 27.9 1.5 43.4 17.5 44.8 46.2zm20.3 11.3c1-42.4-25.5-75.6-75.8-79.3-8.5-.6-7.6-13.5.9-12.9 58 4.2 88.9 44.1 87.8 92.5-.1 8.6-13.1 8.2-12.9-.3zm47 13.4c.1 8.6-12.9 8.7-12.9.1-.6-81.5-54.9-125.9-120.8-126.4-8.5-.1-8.5-12.9 0-12.9 73.7.5 133 51.4 133.7 139.2zM374.9 329v.2c-10.8 19-31 40-51.8 33.3l-.2-.3c-21.1-5.9-70.8-31.5-102.2-56.5-16.2-12.8-31-27.9-42.4-42.4-10.3-12.9-20.7-28.2-30.8-46.6-21.3-38.5-26-55.7-26-55.7-6.7-20.8 14.2-41 33.3-51.8h.2c9.2-4.8 18-3.2 23.9 3.9 0 0 12.4 14.8 17.7 22.1 5 6.8 11.7 17.7 15.2 23.8 6.1 10.9 2.3 22-3.7 26.6l-12 9.6c-6.1 4.9-5.3 14-5.3 14s17.8 67.3 84.3 84.3c0 0 9.1.8 14-5.3l9.6-12c4.6-6 15.7-9.8 26.6-3.7 14.7 8.3 33.4 21.2 45.8 32.9 7 5.7 8.6 14.4 3.8 23.6z"], + "vimeo": [448, 512, [], "f40a", "M403.2 32H44.8C20.1 32 0 52.1 0 76.8v358.4C0 459.9 20.1 480 44.8 480h358.4c24.7 0 44.8-20.1 44.8-44.8V76.8c0-24.7-20.1-44.8-44.8-44.8zM377 180.8c-1.4 31.5-23.4 74.7-66 129.4-44 57.2-81.3 85.8-111.7 85.8-18.9 0-34.8-17.4-47.9-52.3-25.5-93.3-36.4-148-57.4-148-2.4 0-10.9 5.1-25.4 15.2l-15.2-19.6c37.3-32.8 72.9-69.2 95.2-71.2 25.2-2.4 40.7 14.8 46.5 51.7 20.7 131.2 29.9 151 67.6 91.6 13.5-21.4 20.8-37.7 21.8-48.9 3.5-33.2-25.9-30.9-45.8-22.4 15.9-52.1 46.3-77.4 91.2-76 33.3.9 49 22.5 47.1 64.7z"], + "vimeo-square": [448, 512, [], "f194", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16.2 149.6c-1.4 31.1-23.2 73.8-65.3 127.9-43.5 56.5-80.3 84.8-110.4 84.8-18.7 0-34.4-17.2-47.3-51.6-25.2-92.3-35.9-146.4-56.7-146.4-2.4 0-10.8 5-25.1 15.1L64 192c36.9-32.4 72.1-68.4 94.1-70.4 24.9-2.4 40.2 14.6 46 51.1 20.5 129.6 29.6 149.2 66.8 90.5 13.4-21.2 20.6-37.2 21.5-48.3 3.4-32.8-25.6-30.6-45.2-22.2 15.7-51.5 45.8-76.5 90.1-75.1 32.9 1 48.4 22.4 46.5 64z"], + "vimeo-v": [448, 512, [], "f27d", "M447.8 153.6c-2 43.6-32.4 103.3-91.4 179.1-60.9 79.2-112.4 118.8-154.6 118.8-26.1 0-48.2-24.1-66.3-72.3C100.3 250 85.3 174.3 56.2 174.3c-3.4 0-15.1 7.1-35.2 21.1L0 168.2c51.6-45.3 100.9-95.7 131.8-98.5 34.9-3.4 56.3 20.5 64.4 71.5 28.7 181.5 41.4 208.9 93.6 126.7 18.7-29.6 28.8-52.1 30.2-67.6 4.8-45.9-35.8-42.8-63.3-31 22-72.1 64.1-107.1 126.2-105.1 45.8 1.2 67.5 31.1 64.9 89.4z"], + "vine": [384, 512, [], "f1ca", "M384 254.7v52.1c-18.4 4.2-36.9 6.1-52.1 6.1-36.9 77.4-103 143.8-125.1 156.2-14 7.9-27.1 8.4-42.7-.8C137 452 34.2 367.7 0 102.7h74.5C93.2 261.8 139 343.4 189.3 404.5c27.9-27.9 54.8-65.1 75.6-106.9-49.8-25.3-80.1-80.9-80.1-145.6 0-65.6 37.7-115.1 102.2-115.1 114.9 0 106.2 127.9 81.6 181.5 0 0-46.4 9.2-63.5-20.5 3.4-11.3 8.2-30.8 8.2-48.5 0-31.3-11.3-46.6-28.4-46.6-18.2 0-30.8 17.1-30.8 50 .1 79.2 59.4 118.7 129.9 101.9z"], + "vk": [576, 512, [], "f189", "M545 117.7c3.7-12.5 0-21.7-17.8-21.7h-58.9c-15 0-21.9 7.9-25.6 16.7 0 0-30 73.1-72.4 120.5-13.7 13.7-20 18.1-27.5 18.1-3.7 0-9.4-4.4-9.4-16.9V117.7c0-15-4.2-21.7-16.6-21.7h-92.6c-9.4 0-15 7-15 13.5 0 14.2 21.2 17.5 23.4 57.5v86.8c0 19-3.4 22.5-10.9 22.5-20 0-68.6-73.4-97.4-157.4-5.8-16.3-11.5-22.9-26.6-22.9H38.8c-16.8 0-20.2 7.9-20.2 16.7 0 15.6 20 93.1 93.1 195.5C160.4 378.1 229 416 291.4 416c37.5 0 42.1-8.4 42.1-22.9 0-66.8-3.4-73.1 15.4-73.1 8.7 0 23.7 4.4 58.7 38.1 40 40 46.6 57.9 69 57.9h58.9c16.8 0 25.3-8.4 20.4-25-11.2-34.9-86.9-106.7-90.3-111.5-8.7-11.2-6.2-16.2 0-26.2.1-.1 72-101.3 79.4-135.6z"], + "vnv": [640, 512, [], "f40b", "M104.9 352c-34.1 0-46.4-30.4-46.4-30.4L2.6 210.1S-7.8 192 13 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.7-74.5c5.6-9.5 8.4-18.1 18.8-18.1h32.8c20.8 0 10.4 18.1 10.4 18.1l-55.8 111.5S174.2 352 140 352h-35.1zm395 0c-34.1 0-46.4-30.4-46.4-30.4l-55.9-111.5S387.2 192 408 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.8-74.5c5.6-9.5 8.4-18.1 18.8-18.1H627c20.8 0 10.4 18.1 10.4 18.1l-55.9 111.5S569.3 352 535.1 352h-35.2zM337.6 192c34.1 0 46.4 30.4 46.4 30.4l55.9 111.5s10.4 18.1-10.4 18.1h-32.8c-10.4 0-13.2-8.7-18.8-18.1l-36.7-74.5s-5.2-13.1-21.1-13.1c-15.9 0-21.1 13.1-21.1 13.1l-36.7 74.5c-5.6 9.4-8.4 18.1-18.8 18.1h-32.9c-20.8 0-10.4-18.1-10.4-18.1l55.9-111.5s12.2-30.4 46.4-30.4h35.1z"], + "vuejs": [448, 512, [], "f41f", "M356.9 64.3H280l-56 88.6-48-88.6H0L224 448 448 64.3h-91.1zm-301.2 32h53.8L224 294.5 338.4 96.3h53.8L224 384.5 55.7 96.3z"], + "weebly": [512, 512, [], "f5cc", "M425.09 65.83c-39.88 0-73.28 25.73-83.66 64.33-18.16-58.06-65.5-64.33-84.95-64.33-19.78 0-66.8 6.28-85.28 64.33-10.38-38.6-43.45-64.33-83.66-64.33C38.59 65.83 0 99.72 0 143.03c0 28.96 4.18 33.27 77.17 233.48 22.37 60.57 67.77 69.35 92.74 69.35 39.23 0 70.04-19.46 85.93-53.98 15.89 34.83 46.69 54.29 85.93 54.29 24.97 0 70.36-9.1 92.74-69.67 76.55-208.65 77.5-205.58 77.5-227.2.63-48.32-36.01-83.47-86.92-83.47zm26.34 114.81l-65.57 176.44c-7.92 21.49-21.22 37.22-46.24 37.22-23.44 0-37.38-12.41-44.03-33.9l-39.28-117.42h-.95L216.08 360.4c-6.96 21.5-20.9 33.6-44.02 33.6-25.02 0-38.33-15.74-46.24-37.22L60.88 181.55c-5.38-14.83-7.92-23.91-7.92-34.5 0-16.34 15.84-29.36 38.33-29.36 18.69 0 31.99 11.8 36.11 29.05l44.03 139.82h.95l44.66-136.79c6.02-19.67 16.47-32.08 38.96-32.08s32.94 12.11 38.96 32.08l44.66 136.79h.95l44.03-139.82c4.12-17.25 17.42-29.05 36.11-29.05 22.17 0 38.33 13.32 38.33 35.71-.32 7.87-4.12 16.04-7.61 27.24z"], + "weibo": [512, 512, [], "f18a", "M407 177.6c7.6-24-13.4-46.8-37.4-41.7-22 4.8-28.8-28.1-7.1-32.8 50.1-10.9 92.3 37.1 76.5 84.8-6.8 21.2-38.8 10.8-32-10.3zM214.8 446.7C108.5 446.7 0 395.3 0 310.4c0-44.3 28-95.4 76.3-143.7C176 67 279.5 65.8 249.9 161c-4 13.1 12.3 5.7 12.3 6 79.5-33.6 140.5-16.8 114 51.4-3.7 9.4 1.1 10.9 8.3 13.1 135.7 42.3 34.8 215.2-169.7 215.2zm143.7-146.3c-5.4-55.7-78.5-94-163.4-85.7-84.8 8.6-148.8 60.3-143.4 116s78.5 94 163.4 85.7c84.8-8.6 148.8-60.3 143.4-116zM347.9 35.1c-25.9 5.6-16.8 43.7 8.3 38.3 72.3-15.2 134.8 52.8 111.7 124-7.4 24.2 29.1 37 37.4 12 31.9-99.8-55.1-195.9-157.4-174.3zm-78.5 311c-17.1 38.8-66.8 60-109.1 46.3-40.8-13.1-58-53.4-40.3-89.7 17.7-35.4 63.1-55.4 103.4-45.1 42 10.8 63.1 50.2 46 88.5zm-86.3-30c-12.9-5.4-30 .3-38 12.9-8.3 12.9-4.3 28 8.6 34 13.1 6 30.8.3 39.1-12.9 8-13.1 3.7-28.3-9.7-34zm32.6-13.4c-5.1-1.7-11.4.6-14.3 5.4-2.9 5.1-1.4 10.6 3.7 12.9 5.1 2 11.7-.3 14.6-5.4 2.8-5.2 1.1-10.9-4-12.9z"], + "weixin": [576, 512, [], "f1d7", "M385.2 167.6c6.4 0 12.6.3 18.8 1.1C387.4 90.3 303.3 32 207.7 32 100.5 32 13 104.8 13 197.4c0 53.4 29.3 97.5 77.9 131.6l-19.3 58.6 68-34.1c24.4 4.8 43.8 9.7 68.2 9.7 6.2 0 12.1-.3 18.3-.8-4-12.9-6.2-26.6-6.2-40.8-.1-84.9 72.9-154 165.3-154zm-104.5-52.9c14.5 0 24.2 9.7 24.2 24.4 0 14.5-9.7 24.2-24.2 24.2-14.8 0-29.3-9.7-29.3-24.2.1-14.7 14.6-24.4 29.3-24.4zm-136.4 48.6c-14.5 0-29.3-9.7-29.3-24.2 0-14.8 14.8-24.4 29.3-24.4 14.8 0 24.4 9.7 24.4 24.4 0 14.6-9.6 24.2-24.4 24.2zM563 319.4c0-77.9-77.9-141.3-165.4-141.3-92.7 0-165.4 63.4-165.4 141.3S305 460.7 397.6 460.7c19.3 0 38.9-5.1 58.6-9.9l53.4 29.3-14.8-48.6C534 402.1 563 363.2 563 319.4zm-219.1-24.5c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.8 0 24.4 9.7 24.4 19.3 0 10-9.7 19.6-24.4 19.6zm107.1 0c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.5 0 24.4 9.7 24.4 19.3.1 10-9.9 19.6-24.4 19.6z"], + "whatsapp": [448, 512, [], "f232", "M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"], + "whatsapp-square": [448, 512, [], "f40c", "M224 122.8c-72.7 0-131.8 59.1-131.9 131.8 0 24.9 7 49.2 20.2 70.1l3.1 5-13.3 48.6 49.9-13.1 4.8 2.9c20.2 12 43.4 18.4 67.1 18.4h.1c72.6 0 133.3-59.1 133.3-131.8 0-35.2-15.2-68.3-40.1-93.2-25-25-58-38.7-93.2-38.7zm77.5 188.4c-3.3 9.3-19.1 17.7-26.7 18.8-12.6 1.9-22.4.9-47.5-9.9-39.7-17.2-65.7-57.2-67.7-59.8-2-2.6-16.2-21.5-16.2-41s10.2-29.1 13.9-33.1c3.6-4 7.9-5 10.6-5 2.6 0 5.3 0 7.6.1 2.4.1 5.7-.9 8.9 6.8 3.3 7.9 11.2 27.4 12.2 29.4s1.7 4.3.3 6.9c-7.6 15.2-15.7 14.6-11.6 21.6 15.3 26.3 30.6 35.4 53.9 47.1 4 2 6.3 1.7 8.6-1 2.3-2.6 9.9-11.6 12.5-15.5 2.6-4 5.3-3.3 8.9-2 3.6 1.3 23.1 10.9 27.1 12.9s6.6 3 7.6 4.6c.9 1.9.9 9.9-2.4 19.1zM400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM223.9 413.2c-26.6 0-52.7-6.7-75.8-19.3L64 416l22.5-82.2c-13.9-24-21.2-51.3-21.2-79.3C65.4 167.1 136.5 96 223.9 96c42.4 0 82.2 16.5 112.2 46.5 29.9 30 47.9 69.8 47.9 112.2 0 87.4-72.7 158.5-160.1 158.5z"], + "whmcs": [448, 512, [], "f40d", "M448 161v-21.3l-28.5-8.8-2.2-10.4 20.1-20.7L427 80.4l-29 7.5-7.2-7.5 7.5-28.2-19.1-11.6-21.3 21-10.7-3.2-7-26.4h-22.6l-6.2 26.4-12.1 3.2-19.7-21-19.4 11 8.1 27.7-8.1 8.4-28.5-7.5-11 19.1 20.7 21-2.9 10.4-28.5 7.8-.3 21.7 28.8 7.5 2.4 12.1-20.1 19.9 10.4 18.5 29.6-7.5 7.2 8.6-8.1 26.9 19.9 11.6 19.4-20.4 11.6 2.9 6.7 28.5 22.6.3 6.7-28.8 11.6-3.5 20.7 21.6 20.4-12.1-8.8-28 7.8-8.1 28.8 8.8 10.3-20.1-20.9-18.8 2.2-12.1 29.1-7zm-119.2 45.2c-31.3 0-56.8-25.4-56.8-56.8s25.4-56.8 56.8-56.8 56.8 25.4 56.8 56.8c0 31.5-25.4 56.8-56.8 56.8zm72.3 16.4l46.9 14.5V277l-55.1 13.4-4.1 22.7 38.9 35.3-19.2 37.9-54-16.7-14.6 15.2 16.7 52.5-38.3 22.7-38.9-40.5-21.7 6.6-12.6 54-42.4-.5-12.6-53.6-21.7-5.6-36.4 38.4-37.4-21.7 15.2-50.5-13.7-16.1-55.5 14.1-19.7-34.8 37.9-37.4-4.8-22.8-54-14.1.5-40.9L54 219.9l5.7-19.7-38.9-39.4L41.5 125l53.6 14.1 15.2-15.7-15.2-52 36.4-20.7 36.8 39.4L191 84l11.6-52H245l11.6 45.9L234 72l-6.3-1.7-3.3 5.7-11 19.1-3.3 5.6 4.6 4.6 17.2 17.4-.3 1-23.8 6.5-6.2 1.7-.1 6.4-.2 12.9C153.8 161.6 118 204 118 254.7c0 58.3 47.3 105.7 105.7 105.7 50.5 0 92.7-35.4 103.2-82.8l13.2.2 6.9.1 1.6-6.7 5.6-24 1.9-.6 17.1 17.8 4.7 4.9 5.8-3.4 20.4-12.1 5.8-3.5-2-6.5-6.8-21.2z"], + "wikipedia-w": [640, 512, [], "f266", "M640 51.2l-.3 12.2c-28.1.8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3.3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4.2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5.3v13.1c-19.4.6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4.3-3.6 0-10.3.3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5.8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1.2.5z"], + "windows": [448, 512, [], "f17a", "M0 93.7l183.6-25.3v177.4H0V93.7zm0 324.6l183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z"], + "wix": [640, 512, [], "f5cf", "M393.38 131.69c0 13.03 2.08 32.69-28.68 43.83-9.52 3.45-15.95 9.66-15.95 9.66 0-31 4.72-42.22 17.4-48.86 9.75-5.11 27.23-4.63 27.23-4.63zm-115.8 35.54l-34.24 132.66-28.48-108.57c-7.69-31.99-20.81-48.53-48.43-48.53-27.37 0-40.66 16.18-48.43 48.53L89.52 299.89 55.28 167.23C49.73 140.51 23.86 128.96 0 131.96l65.57 247.93s21.63 1.56 32.46-3.96c14.22-7.25 20.98-12.84 29.59-46.57 7.67-30.07 29.11-118.41 31.12-124.7 4.76-14.94 11.09-13.81 15.4 0 1.97 6.3 23.45 94.63 31.12 124.7 8.6 33.73 15.37 39.32 29.59 46.57 10.82 5.52 32.46 3.96 32.46 3.96l65.57-247.93c-24.42-3.07-49.82 8.93-55.3 35.27zm115.78 5.21s-4.1 6.34-13.46 11.57c-6.01 3.36-11.78 5.64-17.97 8.61-15.14 7.26-13.18 13.95-13.18 35.2v152.07s16.55 2.09 27.37-3.43c13.93-7.1 17.13-13.95 17.26-44.78V181.41l-.02.01v-8.98zm163.44 84.08L640 132.78s-35.11-5.98-52.5 9.85c-13.3 12.1-24.41 29.55-54.18 72.47-.47.73-6.25 10.54-13.07 0-29.29-42.23-40.8-60.29-54.18-72.47-17.39-15.83-52.5-9.85-52.5-9.85l83.2 123.74-82.97 123.36s36.57 4.62 53.95-11.21c11.49-10.46 17.58-20.37 52.51-70.72 6.81-10.52 12.57-.77 13.07 0 29.4 42.38 39.23 58.06 53.14 70.72 17.39 15.83 53.32 11.21 53.32 11.21L556.8 256.52z"], + "wolf-pack-battalion": [456, 512, [], "f514", "M239.73 471.53l10.56 15.84 5.28-12.32 5.28 7.04V512c21.06-7.92 21.11-66.86 25.51-97.21 4.62-31.89-.88-92.81 81.37-149.11-8.88-23.61-12-49.43-2.64-80.05 27.87 3.34 53.94 10.58 63.34 54.1l-30.35 8.36c11.15 23.04 17.01 46.76 13.2 72.14L384 313.18l-6.16 33.43-18.47-7.04-8.8 33.43-19.35-7.04 26.39 21.11 8.8-28.15 24.63 5.28 7.04-35.63 26.39 14.52c.25-20.02 6.97-58.06-8.8-84.45l26.39 5.28c3.99-22.07-2.38-39.21-7.92-56.74l22.43 9.68c-.44-25.07-29.94-56.79-61.58-58.5-20.22-1.09-56.74-25.17-54.1-51.9 1.96-19.87 17.45-42.62 43.11-49.7-43.99 36.51-9.68 67.3 5.28 73.46 4.4-11.44 17.54-69.08 0-130.2-40.47 22.87-89.73 65.1-93.25 147.79l-58.06 38.71-3.52 93.25 107.33-59.82 7.04 7.04-17.59 3.52-43.99 38.71-15.84-5.28-28.15 49.26-3.52 119.64 21.11 15.84-32.55 15.84-32.55-15.84 21.11-15.84-3.52-119.64-28.15-49.26-15.84 5.28-43.99-38.71-17.59-3.52 7.04-7.04 107.33 59.82-3.52-93.25-58.06-38.71C157.03 65.1 107.77 22.87 67.3 0c-17.54 61.12-4.4 118.76 0 130.2 14.96-6.16 49.26-36.95 5.28-73.46 25.66 7.08 41.15 29.83 43.11 49.7 2.63 26.74-33.88 50.81-54.1 51.9C29.94 160.06.44 191.78 0 216.85l22.43-9.68c-5.54 17.53-11.91 34.67-7.92 56.74l26.39-5.28c-15.76 26.39-9.05 64.43-8.8 84.45l26.39-14.52 7.04 35.63 24.63-5.28 8.8 28.15 26.39-21.11-19.34 7.05-8.8-33.43-18.47 7.04-6.16-33.43-27.27 7.04c-3.82-25.38 2.05-49.1 13.2-72.14l-30.35-8.36c9.4-43.52 35.47-50.77 63.34-54.1 9.36 30.62 6.24 56.45-2.64 80.05 82.25 56.3 76.75 117.23 81.37 149.11 4.4 30.35 4.45 89.29 25.51 97.21v-29.91l5.28-7.04 5.28 12.32 10.56-15.84 11.44 21.11 11.43-21.1zm79.17-95.01l-15.84-10.56c7.47-4.36 13.76-8.42 19.35-12.32-.6 7.26-.27 13.88-3.51 22.88zm28.15-49.26c-.4 10.94-.9 21.66-1.76 31.67-7.85-1.86-15.57-3.8-21.11-7.04 8.24-7.9 15.55-16.27 22.87-24.63zm24.63 5.28c-.02-13.43-2.05-24.21-5.28-33.43-5.38 9.09-11.23 18.18-18.47 27.27l23.75 6.16zm3.52-80.94c19.44 12.81 27.8 33.66 29.91 56.3-12.32-4.53-24.63-9.31-36.95-10.56 5.06-11.99 6.65-28.14 7.04-45.74zm-1.76-45.74c.81 14.3 1.84 28.82 1.76 42.23 19.22-8.11 29.78-9.72 43.99-14.08-10.6-18.95-27.22-25.52-45.75-28.15zM137.68 376.52l15.84-10.56c-7.47-4.36-13.76-8.42-19.35-12.32.6 7.26.27 13.88 3.51 22.88zm-28.15-49.26c.4 10.94.9 21.66 1.76 31.67 7.85-1.86 15.57-3.8 21.11-7.04-8.24-7.9-15.55-16.27-22.87-24.63zm-24.64 5.28c.02-13.43 2.05-24.21 5.28-33.43 5.38 9.09 11.23 18.18 18.47 27.27l-23.75 6.16zm-3.52-80.94c-19.44 12.81-27.8 33.66-29.91 56.3 12.32-4.53 24.63-9.31 36.95-10.56-5.05-11.99-6.65-28.14-7.04-45.74zm1.76-45.74c-.81 14.3-1.84 28.82-1.76 42.23-19.22-8.11-29.78-9.72-43.99-14.08 10.61-18.95 27.22-25.52 45.75-28.15z"], + "wordpress": [512, 512, [], "f19a", "M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z"], + "wordpress-simple": [512, 512, [], "f411", "M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8zM33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256zm223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6zm30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3-80.7-239.6zm81.4 297.2l68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7z"], + "wpbeginner": [512, 512, [], "f297", "M462.799 322.374C519.01 386.682 466.961 480 370.944 480c-39.602 0-78.824-17.687-100.142-50.04-6.887.356-22.702.356-29.59 0C219.848 462.381 180.588 480 141.069 480c-95.49 0-148.348-92.996-91.855-157.626C-29.925 190.523 80.479 32 256.006 32c175.632 0 285.87 158.626 206.793 290.374zm-339.647-82.972h41.529v-58.075h-41.529v58.075zm217.18 86.072v-23.839c-60.506 20.915-132.355 9.198-187.589-33.971l.246 24.897c51.101 46.367 131.746 57.875 187.343 32.913zm-150.753-86.072h166.058v-58.075H189.579v58.075z"], + "wpexplorer": [512, 512, [], "f2de", "M512 256c0 141.2-114.7 256-256 256C114.8 512 0 397.3 0 256S114.7 0 256 0s256 114.7 256 256zm-32 0c0-123.2-100.3-224-224-224C132.5 32 32 132.5 32 256s100.5 224 224 224 224-100.5 224-224zM160.9 124.6l86.9 37.1-37.1 86.9-86.9-37.1 37.1-86.9zm110 169.1l46.6 94h-14.6l-50-100-48.9 100h-14l51.1-106.9-22.3-9.4 6-14 68.6 29.1-6 14.3-16.5-7.1zm-11.8-116.3l68.6 29.4-29.4 68.3L230 246l29.1-68.6zm80.3 42.9l54.6 23.1-23.4 54.3-54.3-23.1 23.1-54.3z"], + "wpforms": [448, 512, [], "f298", "M448 75.2v361.7c0 24.3-19 43.2-43.2 43.2H43.2C19.3 480 0 461.4 0 436.8V75.2C0 51.1 18.8 32 43.2 32h361.7c24 0 43.1 18.8 43.1 43.2zm-37.3 361.6V75.2c0-3-2.6-5.8-5.8-5.8h-9.3L285.3 144 224 94.1 162.8 144 52.5 69.3h-9.3c-3.2 0-5.8 2.8-5.8 5.8v361.7c0 3 2.6 5.8 5.8 5.8h361.7c3.2.1 5.8-2.7 5.8-5.8zM150.2 186v37H76.7v-37h73.5zm0 74.4v37.3H76.7v-37.3h73.5zm11.1-147.3l54-43.7H96.8l64.5 43.7zm210 72.9v37h-196v-37h196zm0 74.4v37.3h-196v-37.3h196zm-84.6-147.3l64.5-43.7H232.8l53.9 43.7zM371.3 335v37.3h-99.4V335h99.4z"], + "xbox": [512, 512, [], "f412", "M369.9 318.2c44.3 54.3 64.7 98.8 54.4 118.7-7.9 15.1-56.7 44.6-92.6 55.9-29.6 9.3-68.4 13.3-100.4 10.2-38.2-3.7-76.9-17.4-110.1-39C93.3 445.8 87 438.3 87 423.4c0-29.9 32.9-82.3 89.2-142.1 32-33.9 76.5-73.7 81.4-72.6 9.4 2.1 84.3 75.1 112.3 109.5zM188.6 143.8c-29.7-26.9-58.1-53.9-86.4-63.4-15.2-5.1-16.3-4.8-28.7 8.1-29.2 30.4-53.5 79.7-60.3 122.4-5.4 34.2-6.1 43.8-4.2 60.5 5.6 50.5 17.3 85.4 40.5 120.9 9.5 14.6 12.1 17.3 9.3 9.9-4.2-11-.3-37.5 9.5-64 14.3-39 53.9-112.9 120.3-194.4zm311.6 63.5C483.3 127.3 432.7 77 425.6 77c-7.3 0-24.2 6.5-36 13.9-23.3 14.5-41 31.4-64.3 52.8C367.7 197 427.5 283.1 448.2 346c6.8 20.7 9.7 41.1 7.4 52.3-1.7 8.5-1.7 8.5 1.4 4.6 6.1-7.7 19.9-31.3 25.4-43.5 7.4-16.2 15-40.2 18.6-58.7 4.3-22.5 3.9-70.8-.8-93.4zM141.3 43C189 40.5 251 77.5 255.6 78.4c.7.1 10.4-4.2 21.6-9.7 63.9-31.1 94-25.8 107.4-25.2-63.9-39.3-152.7-50-233.9-11.7-23.4 11.1-24 11.9-9.4 11.2z"], + "xing": [384, 512, [], "f168", "M162.7 210c-1.8 3.3-25.2 44.4-70.1 123.5-4.9 8.3-10.8 12.5-17.7 12.5H9.8c-7.7 0-12.1-7.5-8.5-14.4l69-121.3c.2 0 .2-.1 0-.3l-43.9-75.6c-4.3-7.8.3-14.1 8.5-14.1H100c7.3 0 13.3 4.1 18 12.2l44.7 77.5zM382.6 46.1l-144 253v.3L330.2 466c3.9 7.1.2 14.1-8.5 14.1h-65.2c-7.6 0-13.6-4-18-12.2l-92.4-168.5c3.3-5.8 51.5-90.8 144.8-255.2 4.6-8.1 10.4-12.2 17.5-12.2h65.7c8 0 12.3 6.7 8.5 14.1z"], + "xing-square": [448, 512, [], "f169", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM140.4 320.2H93.8c-5.5 0-8.7-5.3-6-10.3l49.3-86.7c.1 0 .1-.1 0-.2l-31.4-54c-3-5.6.2-10.1 6-10.1h46.6c5.2 0 9.5 2.9 12.9 8.7l31.9 55.3c-1.3 2.3-18 31.7-50.1 88.2-3.5 6.2-7.7 9.1-12.6 9.1zm219.7-214.1L257.3 286.8v.2l65.5 119c2.8 5.1.1 10.1-6 10.1h-46.6c-5.5 0-9.7-2.9-12.9-8.7l-66-120.3c2.3-4.1 36.8-64.9 103.4-182.3 3.3-5.8 7.4-8.7 12.5-8.7h46.9c5.7-.1 8.8 4.7 6 10z"], + "y-combinator": [448, 512, [], "f23b", "M448 32v448H0V32h448zM236 287.5L313.5 142h-32.7L235 233c-4.7 9.3-9 18.3-12.8 26.8L210 233l-45.2-91h-35l76.7 143.8v94.5H236v-92.8z"], + "yahoo": [448, 512, [], "f19e", "M252 292l4 220c-12.7-2.2-23.5-3.9-32.3-3.9-8.4 0-19.2 1.7-32.3 3.9l4-220C140.4 197.2 85 95.2 21.4 0c11.9 3.1 23 3.9 33.2 3.9 9 0 20.4-.8 34.1-3.9 40.9 72.2 82.1 138.7 135 225.5C261 163.9 314.8 81.4 358.6 0c11.1 2.9 22 3.9 32.9 3.9 11.5 0 23.2-1 35-3.9C392.1 47.9 294.9 216.9 252 292z"], + "yandex": [256, 512, [], "f413", "M153.1 315.8L65.7 512H2l96-209.8c-45.1-22.9-75.2-64.4-75.2-141.1C22.7 53.7 90.8 0 171.7 0H254v512h-55.1V315.8h-45.8zm45.8-269.3h-29.4c-44.4 0-87.4 29.4-87.4 114.6 0 82.3 39.4 108.8 87.4 108.8h29.4V46.5z"], + "yandex-international": [320, 512, [], "f414", "M129.5 512V345.9L18.5 48h55.8l81.8 229.7L250.2 0h51.3L180.8 347.8V512h-51.3z"], + "yelp": [384, 512, [], "f1e9", "M136.9 328c-1 .3-109.2 35.7-115.8 35.7-15.2-.9-18.5-16.2-19.9-31.2-1.5-14.2-1.4-29.8.3-46.8 1.9-18.8 5.5-45.1 24.2-44 4.8 0 67.1 25.9 112.7 44.4 17.1 6.8 18.6 35.8-1.5 41.9zm57.9-113.9c1.8 38.2-25.5 48.5-47.2 14.3L41.3 60.4c-1.5-6.6.3-12.4 5.3-17.4C62.2 26.5 146 3.2 168.1 8.9c7.5 1.9 12.1 6.1 13.8 12.6 1.3 8.3 11.5 167.4 12.9 192.6zm-1.4 164.8c0 4.6.2 116.4-1.7 121.5-2.3 6-7 9.7-14.3 11.2-10.1 1.7-27.1-1.9-51-10.7-22-8.1-56.7-21.5-49.3-42.5 2.8-6.9 51.4-62.8 77.3-93.6 12-15.2 39.8-5.5 39 14.1zm180.2-117.8c-5.6 3.7-110.8 28.2-118.1 30.6l.3-.6c-18.1 4.7-35.4-18.5-23.3-34.6 3.7-3.7 65.9-92.4 72.8-97 5.2-3.6 11.3-3.8 18.3-.6 18.4 8.8 55.1 63.1 57.4 84.6-.1 2.9 1.2 11.7-7.4 17.6zm10.1 130.7c-2.7 20.6-44.5 73.4-63.8 81-6.9 2.6-12.9 2-17.7-2-5-3.5-61.8-97.1-64.9-102.3-10.9-16.2 6.8-39.8 25.6-33.2 0 0 110.5 35.7 114.7 39.4 5.2 4.1 7.2 9.8 6.1 17.1z"], + "yoast": [448, 512, [], "f2b1", "M91.3 76h186l-7 18.9h-179c-39.7 0-71.9 31.6-71.9 70.3v205.4c0 35.4 24.9 70.3 84 70.3V460H91.3C41.2 460 0 419.8 0 370.5V165.2C0 115.9 40.7 76 91.3 76zm229.1-56h66.5C243.1 398.1 241.2 418.9 202.2 459.3c-20.8 21.6-49.3 31.7-78.3 32.7v-51.1c49.2-7.7 64.6-49.9 64.6-75.3 0-20.1.6-12.6-82.1-223.2h61.4L218.2 299 320.4 20zM448 161.5V460H234c6.6-9.6 10.7-16.3 12.1-19.4h182.5V161.5c0-32.5-17.1-51.9-48.2-62.9l6.7-17.6c41.7 13.6 60.9 43.1 60.9 80.5z"], + "youtube": [576, 512, [], "f167", "M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"], + "youtube-square": [448, 512, [], "f431", "M186.8 202.1l95.2 54.1-95.2 54.1V202.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-42 176.3s0-59.6-7.6-88.2c-4.2-15.8-16.5-28.2-32.2-32.4C337.9 128 224 128 224 128s-113.9 0-142.2 7.7c-15.7 4.2-28 16.6-32.2 32.4-7.6 28.5-7.6 88.2-7.6 88.2s0 59.6 7.6 88.2c4.2 15.8 16.5 27.7 32.2 31.9C110.1 384 224 384 224 384s113.9 0 142.2-7.7c15.7-4.2 28-16.1 32.2-31.9 7.6-28.5 7.6-88.1 7.6-88.1z"] +}; + +bunker(function () { + define('fab', icons); +}); + +}()); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-brands.min.js b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-brands.min.js new file mode 100644 index 0000000000..8f273d7bf3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-brands.min.js @@ -0,0 +1,425 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +!function() { + "use strict"; + var c = {}; + try { + "undefined" != typeof window && (c = window); + } catch (c) {} + var z = (c.navigator || {}).userAgent, l = void 0 === z ? "" : z, h = c, v = (~l.indexOf("MSIE") || l.indexOf("Trident/"), + "___FONT_AWESOME___"), m = function() { + try { + return !1; + } catch (c) { + return !1; + } + }(), M = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ], s = M.concat([ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ]); + [ "xs", "sm", "lg", "fw", "ul", "li", "border", "pull-left", "pull-right", "spin", "pulse", "rotate-90", "rotate-180", "rotate-270", "flip-horizontal", "flip-vertical", "stack", "stack-1x", "stack-2x", "inverse", "layers", "layers-text", "layers-counter" ].concat(M.map(function(c) { + return c + "x"; + })).concat(s.map(function(c) { + return "w-" + c; + })); + var H = h || {}; + H[v] || (H[v] = {}), H[v].styles || (H[v].styles = {}), H[v].hooks || (H[v].hooks = {}), + H[v].shims || (H[v].shims = []); + var f = H[v], V = Object.assign || function(c) { + for (var z = 1; z < arguments.length; z++) { + var l = arguments[z]; + for (var h in l) Object.prototype.hasOwnProperty.call(l, h) && (c[h] = l[h]); + } + return c; + }; + var e = { + "500px": [ 448, 512, [], "f26e", "M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3.3-16 16.5-21.2 23.9l-.5.6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8zm63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2zM393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4zM213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6.2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6z" ], + "accessible-icon": [ 448, 512, [], "f368", "M423.9 255.8L411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7zm-64.9-154c28.1 0 50.9-22.8 50.9-50.9C409.9 22.8 387.1 0 359 0c-28.1 0-50.9 22.8-50.9 50.9 0 28.1 22.8 50.9 50.9 50.9zM179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3z" ], + accusoft: [ 640, 512, [], "f369", "M482.2 372.1C476.5 365.2 250 75 242.3 65.5c-13.7-17.2 0-16.8 19.2-16.9 9.7-.1 106.3-.6 116.5-.6 24.1-.1 28.7.6 38.4 12.8 2.1 2.7 205.1 245.8 207.2 248.3 5.5 6.7 15.2 19.1 7.2 23.4-2.4 1.3-114.6 47.7-117.8 48.9-10.1 4-17.5 6.8-30.8-9.3m114.7-5.6s-115 50.4-117.5 51.6c-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2-2.3-.3-24.6-4.7-38-7.2m-326-181.3s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3v-1l-51.2-65.8" ], + adn: [ 496, 512, [], "f170", "M248 167.5l64.9 98.8H183.1l64.9-98.8zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7h30.2z" ], + adversal: [ 512, 512, [], "f36a", "M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2zM178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4.4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3zm286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7.4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9zm3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6.4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1.2-.1.3-.1.5zm-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2.4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1zm-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8z" ], + affiliatetheme: [ 512, 512, [], "f36b", "M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2 29.1 21.6 11.1 96.6-40.2 167.5zm351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9.1-8.5-.3-16.8-1-25z" ], + algolia: [ 448, 512, [], "f36c", "M229.3 182.6c-49.3 0-89.2 39.9-89.2 89.2 0 49.3 39.9 89.2 89.2 89.2s89.2-39.9 89.2-89.2c0-49.3-40-89.2-89.2-89.2zm62.7 56.6l-58.9 30.6c-1.8.9-3.8-.4-3.8-2.3V201c0-1.5 1.3-2.7 2.7-2.6 26.2 1 48.9 15.7 61.1 37.1.7 1.3.2 3-1.1 3.7zM389.1 32H58.9C26.4 32 0 58.4 0 90.9V421c0 32.6 26.4 59 58.9 59H389c32.6 0 58.9-26.4 58.9-58.9V90.9C448 58.4 421.6 32 389.1 32zm-202.6 84.7c0-10.8 8.7-19.5 19.5-19.5h45.3c10.8 0 19.5 8.7 19.5 19.5v15.4c0 1.8-1.7 3-3.3 2.5-12.3-3.4-25.1-5.1-38.1-5.1-13.5 0-26.7 1.8-39.4 5.5-1.7.5-3.4-.8-3.4-2.5v-15.8zm-84.4 37l9.2-9.2c7.6-7.6 19.9-7.6 27.5 0l7.7 7.7c1.1 1.1 1 3-.3 4-6.2 4.5-12.1 9.4-17.6 14.9-5.4 5.4-10.4 11.3-14.8 17.4-1 1.3-2.9 1.5-4 .3l-7.7-7.7c-7.6-7.5-7.6-19.8 0-27.4zm127.2 244.8c-70 0-126.6-56.7-126.6-126.6s56.7-126.6 126.6-126.6c70 0 126.6 56.6 126.6 126.6 0 69.8-56.7 126.6-126.6 126.6z" ], + amazon: [ 448, 512, [], "f270", "M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z" ], + "amazon-pay": [ 611, 512, [], "f42c", "M0 325.2c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7 40.7 20.4 83.2 35.6 127.4 46.3 20.9 5 41.9 9 63.2 11.8 31.5 4.2 63.2 6 95 5.2 17.4-.4 34.8-1.8 52.1-3.8 56.4-6.7 110.9-20.8 163.3-42.8 2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9-2.8 2.8-6.3 5.1-9.6 7.4-30.7 21.1-64.2 36.4-99.6 47.9-24.6 7.9-49.6 13.8-75.1 17.6-17.6 2.6-35.4 4.4-53.2 4.8-.8 0-1.7.2-2.5.3H294c-.8-.1-1.7-.3-2.5-.3-3.6-.2-7.2-.3-10.7-.4-16.9-.7-33.7-2.6-50.4-5.3-27.4-4.5-54.2-11.4-80.4-20.9-54.1-19.6-102.6-48.6-145.6-87-1.8-1.6-3-3.8-4.4-5.7v-2zM158 65c-1.4.2-2.9.4-4.3.6-14 1.7-26.6 6.9-38 15.1-2.4 1.7-4.6 3.5-7.1 5.4-.2-.5-.4-1-.4-1.4-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6H87.8c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3V215c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zm-47.4 41.9c0-1.5.4-2.4 1.7-3.3 13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9-1.2-.9-1.7-1.7-1.7-3.3.1-14.1 0-28.1 0-42.2 0-14 .1-28 0-42.1zM316.3 65c-1 .1-2 .3-2.9.4-9.8.5-19.4 1.7-28.9 4.1-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9 0 .4-.1.9-.2 1.4-.5-.1-.9 0-1.3-.1-10.5-2.5-21.1-4.3-32-4.9-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4.4-.4.9-.7 1.6-1.1.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0 2.7-.1 4.5-1.9 4.8-4.7.1-.9.1-1.9.1-2.8v-106c0-4.3-.2-8.6-.9-12.9-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1zm35 127.7c0 1.3-.4 2.2-1.5 3-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8-6.3-2.5-10.4-6.9-12.4-13.3s-2-13-.1-19.4c2.5-8.3 8.4-13 16.4-15.6 8.1-2.6 16.5-3 24.8-2.2 8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3-.1 4.7-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3-6.8-2.3-13.9-3.3-21-3.9-13.1-1.1-26.2-.5-39.2 1.9-14.3 2.7-27.9 7.3-40 15.6-1.4 1-2.8 2.1-3.7 3.5-.7 1.1-.9 2.8-.5 4 .4 1.5 2.1 1.9 3.6 1.8.7 0 1.5 0 2.2-.1 7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9 4.8.3 9.7 1.4 14.4 2.7 5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1-.4 1-.8 2-1 3-.5 2.9 1.2 4.8 4.1 4.1 1.7-.4 3.6-1.3 4.8-2.5 4.4-4.3 8.9-8.6 12.7-13.4 12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9v-17.3zM479.1 198.9c-12.9-35.7-25.8-71.5-38.7-107.2-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5.5 2.1 1.1 4.1 1.9 6.1 19.6 48.5 39.3 97.1 59.1 145.5 1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3-5.1 1.4-10.2 1.6-15.4 1.1-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8-.1 3.3-.1 6.6 0 9.9.1 5.5 2 8 7.4 8.9 5.6 1 11.3 1.9 16.9 2 17.1.4 30.7-6.5 39.5-21.4 3.5-5.9 6.7-12.1 9.2-18.4 23.7-59.8 47.1-119.7 70.6-179.6.7-1.8 1.3-3.6 1.6-5.5.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0-3.7 0-6.3 1.6-7.7 5.2-.5 1.4-1.1 2.7-1.6 4.1-11.6 33.3-23.2 66.6-34.8 100-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z" ], + amilia: [ 448, 512, [], "f36d", "M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm-87.9 327.7c0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5V380c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7" ], + android: [ 448, 512, [], "f17b", "M89.6 204.5v115.8c0 15.4-12.1 27.7-27.5 27.7-15.3 0-30.1-12.4-30.1-27.7V204.5c0-15.1 14.8-27.5 30.1-27.5 15.1 0 27.5 12.4 27.5 27.5zm10.8 157c0 16.4 13.2 29.6 29.6 29.6h19.9l.3 61.1c0 36.9 55.2 36.6 55.2 0v-61.1h37.2v61.1c0 36.7 55.5 36.8 55.5 0v-61.1h20.2c16.2 0 29.4-13.2 29.4-29.6V182.1H100.4v179.4zm248-189.1H99.3c0-42.8 25.6-80 63.6-99.4l-19.1-35.3c-2.8-4.9 4.3-8 6.7-3.8l19.4 35.6c34.9-15.5 75-14.7 108.3 0L297.5 34c2.5-4.3 9.5-1.1 6.7 3.8L285.1 73c37.7 19.4 63.3 56.6 63.3 99.4zm-170.7-55.5c0-5.7-4.6-10.5-10.5-10.5-5.7 0-10.2 4.8-10.2 10.5s4.6 10.5 10.2 10.5c5.9 0 10.5-4.8 10.5-10.5zm113.4 0c0-5.7-4.6-10.5-10.2-10.5-5.9 0-10.5 4.8-10.5 10.5s4.6 10.5 10.5 10.5c5.6 0 10.2-4.8 10.2-10.5zm94.8 60.1c-15.1 0-27.5 12.1-27.5 27.5v115.8c0 15.4 12.4 27.7 27.5 27.7 15.4 0 30.1-12.4 30.1-27.7V204.5c0-15.4-14.8-27.5-30.1-27.5z" ], + angellist: [ 448, 512, [], "f209", "M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7zM311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6 33.1-93.7zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8zM140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7.1-7.7 12.7-21.1 20.4-21.1zm184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3.3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7.1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7zm-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1z" ], + angrycreative: [ 640, 512, [], "f36e", "M640 238.2l-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4 93.1-6.2zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9-12.8 120zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3-126.2 7.7zm-44.3-70.2l-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7 2.7-29.8zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1zm21.1 70.8l5.8-60c-5 13.5-14.7 21.1-27.9 26.6l22.1 33.4zm135.4-45l-7.9-37.8-15.8 39.3 23.7-1.5zm-170.1-74.6l-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8.3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2-56.8 3.7zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1.6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2l-2.9 28.8zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3zm-201.3 8.2l23.8-1.6-8.3-37.6-15.5 39.2z" ], + angular: [ 415, 512, [], "f420", "M169.7 268.1h76.2l-38.1-91.6-38.1 91.6zM207.8 32L0 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7L207.8 32zM338 373.8h-48.6l-26.2-65.4H152.6l-26.2 65.4H77.7L207.8 81.5 338 373.8z" ], + "app-store": [ 512, 512, [], "f36f", "M255.9 120.9l9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5 9.8 5.6 13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4 0-11.3 9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5l8.9 15.7zm-78.7 218l-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5-9.8-5.6-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6zm168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4 0 11.3-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216z" ], + "app-store-ios": [ 448, 512, [], "f370", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7c16.1-4.9 29.3-1.1 39.6 11.4L127 384.5zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40zm98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20z" ], + apper: [ 640, 512, [], "f371", "M42.1 239.1c22.2 0 29 2.8 33.5 14.6h.8v-22.9c0-11.3-4.8-15.4-17.9-15.4-11.3 0-14.4 2.5-15.1 12.8H4.8c.3-13.9 1.5-19.1 5.8-24.4C17.9 195 29.5 192 56.7 192c33 0 47.1 5 53.9 18.9 2 4.3 4 15.6 4 23.7v76.3H76.3l1.3-19.1h-1c-5.3 15.6-13.6 20.4-35.5 20.4-30.3 0-41.1-10.1-41.1-37.3 0-25.2 12.3-35.8 42.1-35.8zm17.1 48.1c13.1 0 16.9-3 16.9-13.4 0-9.1-4.3-11.6-19.6-11.6-13.1 0-17.9 3-17.9 12.1-.1 10.4 3.7 12.9 20.6 12.9zm77.8-94.9h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.2 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3H137v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm57.9-60.7h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.3 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3h-39.5v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm53.8-3.8c0-25.4 3.3-37.8 12.3-45.8 8.8-8.1 22.2-11.3 45.1-11.3 42.8 0 55.7 12.8 55.7 55.7v11.1h-75.3c-.3 2-.3 4-.3 4.8 0 16.9 4.5 21.9 20.1 21.9 13.9 0 17.9-3 17.9-13.9h37.5v2.3c0 9.8-2.5 18.9-6.8 24.7-7.3 9.8-19.6 13.6-44.3 13.6-27.5 0-41.6-3.3-50.6-12.3-8.5-8.5-11.3-21.3-11.3-50.8zm76.4-11.6c-.3-1.8-.3-3.3-.3-3.8 0-12.3-3.3-14.6-19.6-14.6-14.4 0-17.1 3-18.1 15.1l-.3 3.3h38.3zm55.6-45.3h38.3l-1.8 19.9h.7c6.8-14.9 14.4-20.2 29.7-20.2 10.8 0 19.1 3.3 23.4 9.3 5.3 7.3 6.8 14.4 6.8 34 0 1.5 0 5 .2 9.3h-35c.3-1.8.3-3.3.3-4 0-15.4-2-19.4-10.3-19.4-6.3 0-10.8 3.3-13.1 9.3-1 3-1 4.3-1 12.3v68h-38.3V192.3z" ], + apple: [ 376, 512, [], "f179", "M314.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C59.3 141.2 0 184.8 0 273.5c0 26.2 4.8 53.3 14.4 81.2 12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z" ], + "apple-pay": [ 640, 512, [], "f415", "M116.9 158.5c-7.5 8.9-19.5 15.9-31.5 14.9-1.5-12 4.4-24.8 11.3-32.6 7.5-9.1 20.6-15.6 31.3-16.1 1.2 12.4-3.7 24.7-11.1 33.8m10.9 17.2c-17.4-1-32.3 9.9-40.5 9.9-8.4 0-21-9.4-34.8-9.1-17.9.3-34.5 10.4-43.6 26.5-18.8 32.3-4.9 80 13.3 106.3 8.9 13 19.5 27.3 33.5 26.8 13.3-.5 18.5-8.6 34.5-8.6 16.1 0 20.8 8.6 34.8 8.4 14.5-.3 23.6-13 32.5-26 10.1-14.8 14.3-29.1 14.5-29.9-.3-.3-28-10.9-28.3-42.9-.3-26.8 21.9-39.5 22.9-40.3-12.5-18.6-32-20.6-38.8-21.1m100.4-36.2v194.9h30.3v-66.6h41.9c38.3 0 65.1-26.3 65.1-64.3s-26.4-64-64.1-64h-73.2zm30.3 25.5h34.9c26.3 0 41.3 14 41.3 38.6s-15 38.8-41.4 38.8h-34.8V165zm162.2 170.9c19 0 36.6-9.6 44.6-24.9h.6v23.4h28v-97c0-28.1-22.5-46.3-57.1-46.3-32.1 0-55.9 18.4-56.8 43.6h27.3c2.3-12 13.4-19.9 28.6-19.9 18.5 0 28.9 8.6 28.9 24.5v10.8l-37.8 2.3c-35.1 2.1-54.1 16.5-54.1 41.5.1 25.2 19.7 42 47.8 42zm8.2-23.1c-16.1 0-26.4-7.8-26.4-19.6 0-12.3 9.9-19.4 28.8-20.5l33.6-2.1v11c0 18.2-15.5 31.2-36 31.2zm102.5 74.6c29.5 0 43.4-11.3 55.5-45.4L640 193h-30.8l-35.6 115.1h-.6L537.4 193h-31.6L557 334.9l-2.8 8.6c-4.6 14.6-12.1 20.3-25.5 20.3-2.4 0-7-.3-8.9-.5v23.4c1.8.4 9.3.7 11.6.7z" ], + asymmetrik: [ 576, 512, [], "f372", "M517.5 309.2c38.8-40 58.1-80 58.5-116.1.8-65.5-59.4-118.2-169.4-135C277.9 38.4 118.1 73.6 0 140.5 52 114 110.6 92.3 170.7 82.3c74.5-20.5 153-25.4 221.3-14.8C544.5 91.3 588.8 195 490.8 299.2c-10.2 10.8-22 21.1-35 30.6L304.9 103.4 114.7 388.9c-65.6-29.4-76.5-90.2-19.1-151.2 20.8-22.2 48.3-41.9 79.5-58.1 20-12.2 39.7-22.6 62-30.7-65.1 20.3-122.7 52.9-161.6 92.9-27.7 28.6-41.4 57.1-41.7 82.9-.5 35.1 23.4 65.1 68.4 83l-34.5 51.7h101.6l22-34.4c22.2 1 45.3 0 68.6-2.7l-22.8 37.1h135.5L340 406.3c18.6-5.3 36.9-11.5 54.5-18.7l45.9 71.8H542L468.6 349c18.5-12.1 35-25.5 48.9-39.8zm-187.6 80.5l-25-40.6-32.7 53.3c-23.4 3.5-46.7 5.1-69.2 4.4l101.9-159.3 78.7 123c-17.2 7.4-35.3 13.9-53.7 19.2z" ], + audible: [ 640, 512, [], "f373", "M640 199.9v54l-320 200L0 254v-54l320 200 320-200.1zm-194.5 72l47.1-29.4c-37.2-55.8-100.7-92.6-172.7-92.6-72 0-135.5 36.7-172.6 92.4h.3c2.5-2.3 5.1-4.5 7.7-6.7 89.7-74.4 219.4-58.1 290.2 36.3zm-220.1 18.8c16.9-11.9 36.5-18.7 57.4-18.7 34.4 0 65.2 18.4 86.4 47.6l45.4-28.4c-20.9-29.9-55.6-49.5-94.8-49.5-38.9 0-73.4 19.4-94.4 49zM103.6 161.1c131.8-104.3 318.2-76.4 417.5 62.1l.7 1 48.8-30.4C517.1 112.1 424.8 58.1 319.9 58.1c-103.5 0-196.6 53.5-250.5 135.6 9.9-10.5 22.7-23.5 34.2-32.6zm467 32.7z" ], + autoprefixer: [ 640, 512, [], "f41c", "M318.4 16l-161 480h77.5l25.4-81.4h119.5L405 496h77.5L318.4 16zm-40.3 341.9l41.2-130.4h1.5l40.9 130.4h-83.6zM640 405l-10-31.4L462.1 358l19.4 56.5L640 405zm-462.1-47L10 373.7 0 405l158.5 9.4 19.4-56.4z" ], + avianex: [ 512, 512, [], "f374", "M453.1 32h-312c-38.9 0-76.2 31.2-83.3 69.7L1.2 410.3C-5.9 448.8 19.9 480 58.9 480h312c38.9 0 76.2-31.2 83.3-69.7l56.7-308.5c7-38.6-18.8-69.8-57.8-69.8zm-58.2 347.3l-32 13.5-115.4-110c-14.7 10-29.2 19.5-41.7 27.1l22.1 64.2-17.9 12.7-40.6-61-52.4-48.1 15.7-15.4 58 31.1c9.3-10.5 20.8-22.6 32.8-34.9L203 228.9l-68.8-99.8 18.8-28.9 8.9-4.8L265 207.8l4.9 4.5c19.4-18.8 33.8-32.4 33.8-32.4 7.7-6.5 21.5-2.9 30.7 7.9 9 10.5 10.6 24.7 2.7 31.3-1.8 1.3-15.5 11.4-35.3 25.6l4.5 7.3 94.9 119.4-6.3 7.9z" ], + aviato: [ 640, 512, [], "f421", "M107.2 283.5l-19-41.8H36.1l-19 41.8H0l62.2-131.4 62.2 131.4h-17.2zm-45-98.1l-19.6 42.5h39.2l-19.6-42.5zm112.7 102.4l-62.2-131.4h17.1l45.1 96 45.1-96h17l-62.1 131.4zm80.6-4.3V156.4H271v127.1h-15.5zm209.1-115.6v115.6h-17.3V167.9h-41.2v-11.5h99.6v11.5h-41.1zM640 218.8c0 9.2-1.7 17.8-5.1 25.8-3.4 8-8.2 15.1-14.2 21.1-6 6-13.1 10.8-21.1 14.2-8 3.4-16.6 5.1-25.8 5.1s-17.8-1.7-25.8-5.1c-8-3.4-15.1-8.2-21.1-14.2-6-6-10.8-13-14.2-21.1-3.4-8-5.1-16.6-5.1-25.8s1.7-17.8 5.1-25.8c3.4-8 8.2-15.1 14.2-21.1 6-6 13-8.4 21.1-11.9 8-3.4 16.6-5.1 25.8-5.1s17.8 1.7 25.8 5.1c8 3.4 15.1 5.8 21.1 11.9 6 6 10.7 13.1 14.2 21.1 3.4 8 5.1 16.6 5.1 25.8zm-15.5 0c0-7.3-1.3-14-3.9-20.3-2.6-6.3-6.2-11.7-10.8-16.3-4.6-4.6-10-8.2-16.2-10.9-6.2-2.7-12.8-4-19.8-4s-13.6 1.3-19.8 4c-6.2 2.7-11.6 6.3-16.2 10.9-4.6 4.6-8.2 10-10.8 16.3-2.6 6.3-3.9 13.1-3.9 20.3 0 7.3 1.3 14 3.9 20.3 2.6 6.3 6.2 11.7 10.8 16.3 4.6 4.6 10 8.2 16.2 10.9 6.2 2.7 12.8 4 19.8 4s13.6-1.3 19.8-4c6.2-2.7 11.6-6.3 16.2-10.9 4.6-4.6 8.2-10 10.8-16.3 2.6-6.3 3.9-13.1 3.9-20.3zm-94.8 96.7v-6.3l88.9-10-242.9 13.4c.6-2.2 1.1-4.6 1.4-7.2.3-2 .5-4.2.6-6.5l64.8-8.1-64.9 1.9c0-.4-.1-.7-.1-1.1-2.8-17.2-25.5-23.7-25.5-23.7l-1.1-26.3h23.8l19 41.8h17.1L348.6 152l-62.2 131.4h17.1l19-41.8h23.6L345 268s-22.7 6.5-25.5 23.7c-.1.3-.1.7-.1 1.1l-64.9-1.9 64.8 8.1c.1 2.3.3 4.4.6 6.5.3 2.6.8 5 1.4 7.2L78.4 299.2l88.9 10v6.3c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4 0-6.2-4.6-11.3-10.5-12.2v-5.8l80.3 9v5.4c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-4.9l28.4 3.2v23.7h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9V323l38.3 4.3c8.1 11.4 19 13.6 19 13.6l-.1 6.7-5.1.2-.1 12.1h4.1l.1-5h5.2l.1 5h4.1l-.1-12.1-5.1-.2-.1-6.7s10.9-2.1 19-13.6l38.3-4.3v23.2h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9v-23.7l28.4-3.2v4.9c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-5.4l80.3-9v5.8c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4-.2-6.3-4.7-11.4-10.7-12.3zm-200.8-87.6l19.6-42.5 19.6 42.5h-17.9l-1.7-40.3-1.7 40.3h-17.9z" ], + aws: [ 640, 512, [], "f375", "M180.41 203.01c-.72 22.65 10.6 32.68 10.88 39.05a8.164 8.164 0 0 1-4.1 6.27l-12.8 8.96a10.66 10.66 0 0 1-5.63 1.92c-.43-.02-8.19 1.83-20.48-25.61a78.608 78.608 0 0 1-62.61 29.45c-16.28.89-60.4-9.24-58.13-56.21-1.59-38.28 34.06-62.06 70.93-60.05 7.1.02 21.6.37 46.99 6.27v-15.62c2.69-26.46-14.7-46.99-44.81-43.91-2.4.01-19.4-.5-45.84 10.11-7.36 3.38-8.3 2.82-10.75 2.82-7.41 0-4.36-21.48-2.94-24.2 5.21-6.4 35.86-18.35 65.94-18.18a76.857 76.857 0 0 1 55.69 17.28 70.285 70.285 0 0 1 17.67 52.36l-.01 69.29zM93.99 235.4c32.43-.47 46.16-19.97 49.29-30.47 2.46-10.05 2.05-16.41 2.05-27.4-9.67-2.32-23.59-4.85-39.56-4.87-15.15-1.14-42.82 5.63-41.74 32.26-1.24 16.79 11.12 31.4 29.96 30.48zm170.92 23.05c-7.86.72-11.52-4.86-12.68-10.37l-49.8-164.65c-.97-2.78-1.61-5.65-1.92-8.58a4.61 4.61 0 0 1 3.86-5.25c.24-.04-2.13 0 22.25 0 8.78-.88 11.64 6.03 12.55 10.37l35.72 140.83 33.16-140.83c.53-3.22 2.94-11.07 12.8-10.24h17.16c2.17-.18 11.11-.5 12.68 10.37l33.42 142.63L420.98 80.1c.48-2.18 2.72-11.37 12.68-10.37h19.72c.85-.13 6.15-.81 5.25 8.58-.43 1.85 3.41-10.66-52.75 169.9-1.15 5.51-4.82 11.09-12.68 10.37h-18.69c-10.94 1.15-12.51-9.66-12.68-10.75L328.67 110.7l-32.78 136.99c-.16 1.09-1.73 11.9-12.68 10.75h-18.3zm273.48 5.63c-5.88.01-33.92-.3-57.36-12.29a12.802 12.802 0 0 1-7.81-11.91v-10.75c0-8.45 6.2-6.9 8.83-5.89 10.04 4.06 16.48 7.14 28.81 9.6 36.65 7.53 52.77-2.3 56.72-4.48 13.15-7.81 14.19-25.68 5.25-34.95-10.48-8.79-15.48-9.12-53.13-21-4.64-1.29-43.7-13.61-43.79-52.36-.61-28.24 25.05-56.18 69.52-55.95 12.67-.01 46.43 4.13 55.57 15.62 1.35 2.09 2.02 4.55 1.92 7.04v10.11c0 4.44-1.62 6.66-4.87 6.66-7.71-.86-21.39-11.17-49.16-10.75-6.89-.36-39.89.91-38.41 24.97-.43 18.96 26.61 26.07 29.7 26.89 36.46 10.97 48.65 12.79 63.12 29.58 17.14 22.25 7.9 48.3 4.35 55.44-19.08 37.49-68.42 34.44-69.26 34.42zm40.2 104.86c-70.03 51.72-171.69 79.25-258.49 79.25A469.127 469.127 0 0 1 2.83 327.46c-6.53-5.89-.77-13.96 7.17-9.47a637.37 637.37 0 0 0 316.88 84.12 630.22 630.22 0 0 0 241.59-49.55c11.78-5 21.77 7.8 10.12 16.38zm29.19-33.29c-8.96-11.52-59.28-5.38-81.81-2.69-6.79.77-7.94-5.12-1.79-9.47 40.07-28.17 105.88-20.1 113.44-10.63 7.55 9.47-2.05 75.41-39.56 106.91-5.76 4.87-11.27 2.3-8.71-4.1 8.44-21.25 27.39-68.49 18.43-80.02z" ], + bandcamp: [ 496, 512, [], "f2d5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm48.2 326.1h-181L199.9 178h181l-84.7 156.1z" ], + behance: [ 576, 512, [], "f1b4", "M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z" ], + "behance-square": [ 448, 512, [], "f1b5", "M186.5 293c0 19.3-14 25.4-31.2 25.4h-45.1v-52.9h46c18.6.1 30.3 7.8 30.3 27.5zm-7.7-82.3c0-17.7-13.7-21.9-28.9-21.9h-39.6v44.8H153c15.1 0 25.8-6.6 25.8-22.9zm132.3 23.2c-18.3 0-30.5 11.4-31.7 29.7h62.2c-1.7-18.5-11.3-29.7-30.5-29.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM271.7 185h77.8v-18.9h-77.8V185zm-43 110.3c0-24.1-11.4-44.9-35-51.6 17.2-8.2 26.2-17.7 26.2-37 0-38.2-28.5-47.5-61.4-47.5H68v192h93.1c34.9-.2 67.6-16.9 67.6-55.9zM380 280.5c0-41.1-24.1-75.4-67.6-75.4-42.4 0-71.1 31.8-71.1 73.6 0 43.3 27.3 73 71.1 73 33.2 0 54.7-14.9 65.1-46.8h-33.7c-3.7 11.9-18.6 18.1-30.2 18.1-22.4 0-34.1-13.1-34.1-35.3h100.2c.1-2.3.3-4.8.3-7.2z" ], + bimobject: [ 448, 512, [], "f378", "M416 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm-64 257.4c0 49.4-11.4 82.6-103.8 82.6h-16.9c-44.1 0-62.4-14.9-70.4-38.8h-.9V368H96V136h64v74.7h1.1c4.6-30.5 39.7-38.8 69.7-38.8h17.3c92.4 0 103.8 33.1 103.8 82.5v35zm-64-28.9v22.9c0 21.7-3.4 33.8-38.4 33.8h-45.3c-28.9 0-44.1-6.5-44.1-35.7v-19c0-29.3 15.2-35.7 44.1-35.7h45.3c35-.2 38.4 12 38.4 33.7z" ], + bitbucket: [ 512, 512, [], "f171", "M23.1 32C14.2 31.9 7 38.9 6.9 47.8c0 .9.1 1.8.2 2.8L74.9 462c1.7 10.4 10.7 18 21.2 18.1h325.1c7.9.1 14.7-5.6 16-13.4l67.8-416c1.4-8.7-4.5-16.9-13.2-18.3-.9-.1-1.8-.2-2.8-.2L23.1 32zm285.3 297.3H204.6l-28.1-146.8h157l-25.1 146.8z" ], + bitcoin: [ 512, 512, [], "f379", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z" ], + bity: [ 496, 512, [], "f37a", "M78.4 67.2C173.8-22 324.5-24 421.5 71c14.3 14.1-6.4 37.1-22.4 21.5-84.8-82.4-215.8-80.3-298.9-3.2-16.3 15.1-36.5-8.3-21.8-22.1zm98.9 418.6c19.3 5.7 29.3-23.6 7.9-30C73 421.9 9.4 306.1 37.7 194.8c5-19.6-24.9-28.1-30.2-7.1-32.1 127.4 41.1 259.8 169.8 298.1zm148.1-2c121.9-40.2 192.9-166.9 164.4-291-4.5-19.7-34.9-13.8-30 7.9 24.2 107.7-37.1 217.9-143.2 253.4-21.2 7-10.4 36 8.8 29.7zm-62.9-79l.2-71.8c0-8.2-6.6-14.8-14.8-14.8-8.2 0-14.8 6.7-14.8 14.8l-.2 71.8c0 8.2 6.6 14.8 14.8 14.8s14.8-6.6 14.8-14.8zm71-269c2.1 90.9 4.7 131.9-85.5 132.5-92.5-.7-86.9-44.3-85.5-132.5 0-21.8-32.5-19.6-32.5 0v71.6c0 69.3 60.7 90.9 118 90.1 57.3.8 118-20.8 118-90.1v-71.6c0-19.6-32.5-21.8-32.5 0z" ], + "black-tie": [ 448, 512, [], "f27e", "M0 32v448h448V32H0zm316.5 325.2L224 445.9l-92.5-88.7 64.5-184-64.5-86.6h184.9L252 173.2l64.5 184z" ], + blackberry: [ 512, 512, [], "f37b", "M166 116.9c0 23.4-16.4 49.1-72.5 49.1H23.4l21-88.8h67.8c42.1 0 53.8 23.3 53.8 39.7zm126.2-39.7h-67.8L205.7 166h70.1c53.8 0 70.1-25.7 70.1-49.1.1-16.4-11.6-39.7-53.7-39.7zM88.8 208.1H21L0 296.9h70.1c56.1 0 72.5-23.4 72.5-49.1 0-16.3-11.7-39.7-53.8-39.7zm180.1 0h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 0-16.3-11.7-39.7-53.7-39.7zm189.3-53.8h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7zm-28 137.9h-67.8L343.7 381h70.1c56.1 0 70.1-23.4 70.1-49.1 0-16.3-11.6-39.7-53.7-39.7zM240.8 346H173l-18.7 88.8h70.1c56.1 0 70.1-25.7 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7z" ], + blogger: [ 448, 512, [], "f37c", "M162.4 196c4.8-4.9 6.2-5.1 36.4-5.1 27.2 0 28.1.1 32.1 2.1 5.8 2.9 8.3 7 8.3 13.6 0 5.9-2.4 10-7.6 13.4-2.8 1.8-4.5 1.9-31.1 2.1-16.4.1-29.5-.2-31.5-.8-10.3-2.9-14.1-17.7-6.6-25.3zm61.4 94.5c-53.9 0-55.8.2-60.2 4.1-3.5 3.1-5.7 9.4-5.1 13.9.7 4.7 4.8 10.1 9.2 12 2.2 1 14.1 1.7 56.3 1.2l47.9-.6 9.2-1.5c9-5.1 10.5-17.4 3.1-24.4-5.3-4.7-5-4.7-60.4-4.7zm223.4 130.1c-3.5 28.4-23 50.4-51.1 57.5-7.2 1.8-9.7 1.9-172.9 1.8-157.8 0-165.9-.1-172-1.8-8.4-2.2-15.6-5.5-22.3-10-5.6-3.8-13.9-11.8-17-16.4-3.8-5.6-8.2-15.3-10-22C.1 423 0 420.3 0 256.3 0 93.2 0 89.7 1.8 82.6 8.1 57.9 27.7 39 53 33.4c7.3-1.6 332.1-1.9 340-.3 21.2 4.3 37.9 17.1 47.6 36.4 7.7 15.3 7-1.5 7.3 180.6.2 115.8 0 164.5-.7 170.5zm-85.4-185.2c-1.1-5-4.2-9.6-7.7-11.5-1.1-.6-8-1.3-15.5-1.7-12.4-.6-13.8-.8-17.8-3.1-6.2-3.6-7.9-7.6-8-18.3 0-20.4-8.5-39.4-25.3-56.5-12-12.2-25.3-20.5-40.6-25.1-3.6-1.1-11.8-1.5-39.2-1.8-42.9-.5-52.5.4-67.1 6.2-27 10.7-46.3 33.4-53.4 62.4-1.3 5.4-1.6 14.2-1.9 64.3-.4 62.8 0 72.1 4 84.5 9.7 30.7 37.1 53.4 64.6 58.4 9.2 1.7 122.2 2.1 133.7.5 20.1-2.7 35.9-10.8 50.7-25.9 10.7-10.9 17.4-22.8 21.8-38.5 3.2-10.9 2.9-88.4 1.7-93.9z" ], + "blogger-b": [ 448, 512, [], "f37d", "M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z" ], + bluetooth: [ 448, 512, [], "f293", "M292.6 171.1L249.7 214l-.3-86 43.2 43.1m-43.2 219.8l43.1-43.1-42.9-42.9-.2 86zM416 259.4C416 465 344.1 512 230.9 512S32 465 32 259.4 115.4 0 228.6 0 416 53.9 416 259.4zm-158.5 0l79.4-88.6L211.8 36.5v176.9L138 139.6l-27 26.9 92.7 93-92.7 93 26.9 26.9 73.8-73.8 2.3 170 127.4-127.5-83.9-88.7z" ], + "bluetooth-b": [ 320, 512, [], "f294", "M196.48 260.023l92.626-103.333L143.125 0v206.33l-86.111-86.111-31.406 31.405 108.061 108.399L25.608 368.422l31.406 31.405 86.111-86.111L145.84 512l148.552-148.644-97.912-103.333zm40.86-102.996l-49.977 49.978-.338-100.295 50.315 50.317zM187.363 313.04l49.977 49.978-50.315 50.316.338-100.294z" ], + btc: [ 384, 512, [], "f15a", "M310.204 242.638c27.73-14.18 45.377-39.39 41.28-81.3-5.358-57.351-52.458-76.573-114.85-81.929V0h-48.528v77.203c-12.605 0-25.525.315-38.444.63V0h-48.528v79.409c-17.842.539-38.622.276-97.37 0v51.678c38.314-.678 58.417-3.14 63.023 21.427v217.429c-2.925 19.492-18.524 16.685-53.255 16.071L3.765 443.68c88.481 0 97.37.315 97.37.315V512h48.528v-67.06c13.234.315 26.154.315 38.444.315V512h48.528v-68.005c81.299-4.412 135.647-24.894 142.895-101.467 5.671-61.446-23.32-88.862-69.326-99.89zM150.608 134.553c27.415 0 113.126-8.507 113.126 48.528 0 54.515-85.71 48.212-113.126 48.212v-96.74zm0 251.776V279.821c32.772 0 133.127-9.138 133.127 53.255-.001 60.186-100.355 53.253-133.127 53.253z" ], + buromobelexperte: [ 448, 512, [], "f37f", "M0 32v128h128V32H0zm120 120H8V40h112v112zm40-120v128h128V32H160zm120 120H168V40h112v112zm40-120v128h128V32H320zm120 120H328V40h112v112zM0 192v128h128V192H0zm120 120H8V200h112v112zm40-120v128h128V192H160zm120 120H168V200h112v112zm40-120v128h128V192H320zm120 120H328V200h112v112zM0 352v128h128V352H0zm120 120H8V360h112v112zm40-120v128h128V352H160zm120 120H168V360h112v112zm40-120v128h128V352H320z" ], + buysellads: [ 448, 512, [], "f20d", "M224 150.7l42.9 160.7h-85.8L224 150.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-65.3 325.3l-94.5-298.7H159.8L65.3 405.3H156l111.7-91.6 24.2 91.6h90.8z" ], + "cc-amazon-pay": [ 576, 512, [], "f42d", "M124.7 201.8c.1-11.8 0-23.5 0-35.3v-35.3c0-1.3.4-2 1.4-2.7 11.5-8 24.1-12.1 38.2-11.1 12.5.9 22.7 7 28.1 21.7 3.3 8.9 4.1 18.2 4.1 27.7 0 8.7-.7 17.3-3.4 25.6-5.7 17.8-18.7 24.7-35.7 23.9-11.7-.5-21.9-5-31.4-11.7-.9-.8-1.4-1.6-1.3-2.8zm154.9 14.6c4.6 1.8 9.3 2 14.1 1.5 11.6-1.2 21.9-5.7 31.3-12.5.9-.6 1.3-1.3 1.3-2.5-.1-3.9 0-7.9 0-11.8 0-4-.1-8 0-12 0-1.4-.4-2-1.8-2.2-7-.9-13.9-2.2-20.9-2.9-7-.6-14-.3-20.8 1.9-6.7 2.2-11.7 6.2-13.7 13.1-1.6 5.4-1.6 10.8.1 16.2 1.6 5.5 5.2 9.2 10.4 11.2zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zm-207.5 23.9c.4 1.7.9 3.4 1.6 5.1 16.5 40.6 32.9 81.3 49.5 121.9 1.4 3.5 1.7 6.4.2 9.9-2.8 6.2-4.9 12.6-7.8 18.7-2.6 5.5-6.7 9.5-12.7 11.2-4.2 1.1-8.5 1.3-12.9.9-2.1-.2-4.2-.7-6.3-.8-2.8-.2-4.2 1.1-4.3 4-.1 2.8-.1 5.6 0 8.3.1 4.6 1.6 6.7 6.2 7.5 4.7.8 9.4 1.6 14.2 1.7 14.3.3 25.7-5.4 33.1-17.9 2.9-4.9 5.6-10.1 7.7-15.4 19.8-50.1 39.5-100.3 59.2-150.5.6-1.5 1.1-3 1.3-4.6.4-2.4-.7-3.6-3.1-3.7-5.6-.1-11.1 0-16.7 0-3.1 0-5.3 1.4-6.4 4.3-.4 1.1-.9 2.3-1.3 3.4l-29.1 83.7c-2.1 6.1-4.2 12.1-6.5 18.6-.4-.9-.6-1.4-.8-1.9-10.8-29.9-21.6-59.9-32.4-89.8-1.7-4.7-3.5-9.5-5.3-14.2-.9-2.5-2.7-4-5.4-4-6.4-.1-12.8-.2-19.2-.1-2.2 0-3.3 1.6-2.8 3.7zM242.4 206c1.7 11.7 7.6 20.8 18 26.6 9.9 5.5 20.7 6.2 31.7 4.6 12.7-1.9 23.9-7.3 33.8-15.5.4-.3.8-.6 1.4-1 .5 3.2.9 6.2 1.5 9.2.5 2.6 2.1 4.3 4.5 4.4 4.6.1 9.1.1 13.7 0 2.3-.1 3.8-1.6 4-3.9.1-.8.1-1.6.1-2.3v-88.8c0-3.6-.2-7.2-.7-10.8-1.6-10.8-6.2-19.7-15.9-25.4-5.6-3.3-11.8-5-18.2-5.9-3-.4-6-.7-9.1-1.1h-10c-.8.1-1.6.3-2.5.3-8.2.4-16.3 1.4-24.2 3.5-5.1 1.3-10 3.2-15 4.9-3 1-4.5 3.2-4.4 6.5.1 2.8-.1 5.6 0 8.3.1 4.1 1.8 5.2 5.7 4.1 6.5-1.7 13.1-3.5 19.7-4.8 10.3-1.9 20.7-2.7 31.1-1.2 5.4.8 10.5 2.4 14.1 7 3.1 4 4.2 8.8 4.4 13.7.3 6.9.2 13.9.3 20.8 0 .4-.1.7-.2 1.2-.4 0-.8 0-1.1-.1-8.8-2.1-17.7-3.6-26.8-4.1-9.5-.5-18.9.1-27.9 3.2-10.8 3.8-19.5 10.3-24.6 20.8-4.1 8.3-4.6 17-3.4 25.8zM98.7 106.9v175.3c0 .8 0 1.7.1 2.5.2 2.5 1.7 4.1 4.1 4.2 5.9.1 11.8.1 17.7 0 2.5 0 4-1.7 4.1-4.1.1-.8.1-1.7.1-2.5v-60.7c.9.7 1.4 1.2 1.9 1.6 15 12.5 32.2 16.6 51.1 12.9 17.1-3.4 28.9-13.9 36.7-29.2 5.8-11.6 8.3-24.1 8.7-37 .5-14.3-1-28.4-6.8-41.7-7.1-16.4-18.9-27.3-36.7-30.9-2.7-.6-5.5-.8-8.2-1.2h-7c-1.2.2-2.4.3-3.6.5-11.7 1.4-22.3 5.8-31.8 12.7-2 1.4-3.9 3-5.9 4.5-.1-.5-.3-.8-.4-1.2-.4-2.3-.7-4.6-1.1-6.9-.6-3.9-2.5-5.5-6.4-5.6h-9.7c-5.9-.1-6.9 1-6.9 6.8zM493.6 339c-2.7-.7-5.1 0-7.6 1-43.9 18.4-89.5 30.2-136.8 35.8-14.5 1.7-29.1 2.8-43.7 3.2-26.6.7-53.2-.8-79.6-4.3-17.8-2.4-35.5-5.7-53-9.9-37-8.9-72.7-21.7-106.7-38.8-8.8-4.4-17.4-9.3-26.1-14-3.8-2.1-6.2-1.5-8.2 2.1v1.7c1.2 1.6 2.2 3.4 3.7 4.8 36 32.2 76.6 56.5 122 72.9 21.9 7.9 44.4 13.7 67.3 17.5 14 2.3 28 3.8 42.2 4.5 3 .1 6 .2 9 .4.7 0 1.4.2 2.1.3h17.7c.7-.1 1.4-.3 2.1-.3 14.9-.4 29.8-1.8 44.6-4 21.4-3.2 42.4-8.1 62.9-14.7 29.6-9.6 57.7-22.4 83.4-40.1 2.8-1.9 5.7-3.8 8-6.2 4.3-4.4 2.3-10.4-3.3-11.9zm50.4-27.7c-.8-4.2-4-5.8-7.6-7-5.7-1.9-11.6-2.8-17.6-3.3-11-.9-22-.4-32.8 1.6-12 2.2-23.4 6.1-33.5 13.1-1.2.8-2.4 1.8-3.1 3-.6.9-.7 2.3-.5 3.4.3 1.3 1.7 1.6 3 1.5.6 0 1.2 0 1.8-.1l19.5-2.1c9.6-.9 19.2-1.5 28.8-.8 4.1.3 8.1 1.2 12 2.2 4.3 1.1 6.2 4.4 6.4 8.7.3 6.7-1.2 13.1-2.9 19.5-3.5 12.9-8.3 25.4-13.3 37.8-.3.8-.7 1.7-.8 2.5-.4 2.5 1 4 3.4 3.5 1.4-.3 3-1.1 4-2.1 3.7-3.6 7.5-7.2 10.6-11.2 10.7-13.8 17-29.6 20.7-46.6.7-3 1.2-6.1 1.7-9.1.2-4.7.2-9.6.2-14.5z" ], + "cc-amex": [ 576, 512, [], "f1f3", "M576 255.4c-37.9-.2-44.2-.9-54.5 5v-5c-45.3 0-53.5-1.7-64.9 5.2v-5.2h-78.2v5.1c-11.4-6.5-21.4-5.1-75.7-5.1v5.6c-6.3-3.7-14.5-5.6-24.3-5.6h-58c-3.5 3.8-12.5 13.7-15.7 17.2-12.7-14.1-10.5-11.6-15.5-17.2h-83.1v92.3h82c3.3-3.5 12.9-13.9 16.1-17.4 12.7 14.3 10.3 11.7 15.4 17.4h48.9c0-14.7.1-8.3.1-23 11.5.2 24.3-.2 34.3-6.2 0 13.9-.1 17.1-.1 29.2h39.6c0-18.5.1-7.4.1-25.3 6.2 0 7.7 0 9.4.1.1 1.3 0 0 0 25.2 152.8 0 145.9 1.1 156.7-4.5v4.5c34.8 0 54.8 2.2 67.5-6.1V432c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V228.3h26.6c4.2-10.1 2.2-5.3 6.4-15.3h19.2c4.2 10 2.2 5.2 6.4 15.3h52.9v-11.4c2.2 5 1.1 2.5 5.1 11.4h29.5c2.4-5.5 2.6-5.8 5.1-11.4v11.4h135.5v-25.1c6.4 0 8-.1 9.8.2 0 0-.2 10.9.1 24.8h66.5v-8.9c7.4 5.9 17.4 8.9 29.7 8.9h26.8c4.2-10.1 2.2-5.3 6.4-15.3h19c6.5 15 .2.5 6.6 15.3h52.8v-21.9c11.8 19.7 7.8 12.9 13.2 21.9h41.6v-92h-39.9v18.4c-12.2-20.2-6.3-10.4-11.2-18.4h-43.3v20.6c-6.2-14.6-4.6-10.8-8.8-20.6h-32.4c-.4 0-2.3.2-2.3-.3h-27.6c-12.8 0-23.1 3.2-30.7 9.3v-9.3h-39.9v5.3c-10.8-6.1-20.7-5.1-64.4-5.3-.1 0-11.6-.1-11.6 0h-103c-2.5 6.1-6.8 16.4-12.6 30-2.8-6-11-23.8-13.9-30h-46V157c-7.4-17.4-4.7-11-9-21.1H22.9c-3.4 7.9-13.7 32-23.1 53.9V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48v175.4zm-186.6-80.6c-.3.2-1.4 2.2-1.4 7.6 0 6 .9 7.7 1.1 7.9.2.1 1.1.5 3.4.5l7.3-16.9c-1.1 0-2.1-.1-3.1-.1-5.6 0-7 .7-7.3 1zm-19.9 130.9c9.2 3.3 11 9.5 11 18.4l-.1 13.8h-16.6l.1-11.5c0-11.8-3.8-13.8-14.8-13.8h-17.6l-.1 25.3h-16.6l.1-69.3h39.4c13 0 27.1 2.3 27.1 18.7-.1 7.6-4.2 15.3-11.9 18.4zm-6.3-15.4c0-6.4-5.6-7.4-10.7-7.4h-21v15.6h20.7c5.6 0 11-1.3 11-8.2zm181.7-7.1H575v-14.6h-32.9c-12.8 0-23.8 6.6-23.8 20.7 0 33 42.7 12.8 42.7 27.4 0 5.1-4.3 6.4-8.4 6.4h-32l-.1 14.8h32c8.4 0 17.6-1.8 22.5-8.9v-25.8c-10.5-13.8-39.3-1.3-39.3-13.5 0-5.8 4.6-6.5 9.2-6.5zm-99.2-.3v-14.3h-55.2l-.1 69.3h55.2l.1-14.3-38.6-.3v-13.8H445v-14.1h-37.8v-12.5h38.5zm42.2 40.1h-32.2l-.1 14.8h32.2c14.8 0 26.2-5.6 26.2-22 0-33.2-42.9-11.2-42.9-26.3 0-5.6 4.9-6.4 9.2-6.4h30.4v-14.6h-33.2c-12.8 0-23.5 6.6-23.5 20.7 0 33 42.7 12.5 42.7 27.4-.1 5.4-4.7 6.4-8.8 6.4zm-78.1-158.7c-17.4-.3-33.2-4.1-33.2 19.7 0 11.8 2.8 19.9 16.1 19.9h7.4l23.5-54.5h24.8l27.9 65.4v-65.4h25.3l29.1 48.1v-48.1h16.9v69H524l-31.2-51.9v51.9h-33.7l-6.6-15.3h-34.3l-6.4 15.3h-19.2c-22.8 0-33-11.8-33-34 0-23.3 10.5-35.3 34-35.3h16.1v15.2zm14.3 24.5h22.8l-11.2-27.6-11.6 27.6zm-72.6-39.6h-16.9v69.3h16.9v-69.3zm-38.1 37.3c9.5 3.3 11 9.2 11 18.4v13.5h-16.6c-.3-14.8 3.6-25.1-14.8-25.1h-18v25.1h-16.4v-69.3l39.1.3c13.3 0 27.4 2 27.4 18.4.1 8-4.3 15.7-11.7 18.7zm-6.7-15.3c0-6.4-5.6-7.4-10.7-7.4h-21v15.3h20.7c5.7 0 11-1.3 11-7.9zm-59.5-7.4v-14.6h-55.5v69.3h55.5v-14.3h-38.9v-13.8h37.8v-14.1h-37.8v-12.5h38.9zm-84.6 54.7v-54.2l-24 54.2H124l-24-54.2v54.2H66.2l-6.4-15.3H25.3l-6.4 15.3H1l29.7-69.3h24.5l28.1 65.7v-65.7h27.1l21.7 47 19.7-47h27.6v69.3h-16.8zM53.9 188.8l-11.5-27.6-11.2 27.6h22.7zm253 102.5c0 27.9-30.4 23.3-49.3 23.3l-.1 23.3h-32.2l-20.4-23-21.3 23h-65.4l.1-69.3h66.5l20.5 22.8 21-22.8H279c15.6 0 27.9 5.4 27.9 22.7zm-112.7 11.8l-17.9-20.2h-41.7v12.5h36.3v14.1h-36.3v13.8h40.6l19-20.2zM241 276l-25.3 27.4 25.3 28.1V276zm48.3 15.3c0-6.1-4.6-8.4-10.2-8.4h-21.5v17.6h21.2c5.9 0 10.5-2.8 10.5-9.2z" ], + "cc-apple-pay": [ 576, 512, [], "f416", "M302.2 218.4c0 17.2-10.5 27.1-29 27.1h-24.3v-54.2h24.4c18.4 0 28.9 9.8 28.9 27.1zm47.5 62.6c0 8.3 7.2 13.7 18.5 13.7 14.4 0 25.2-9.1 25.2-21.9v-7.7l-23.5 1.5c-13.3.9-20.2 5.8-20.2 14.4zM576 79v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM127.8 197.2c8.4.7 16.8-4.2 22.1-10.4 5.2-6.4 8.6-15 7.7-23.7-7.4.3-16.6 4.9-21.9 11.3-4.8 5.5-8.9 14.4-7.9 22.8zm60.6 74.5c-.2-.2-19.6-7.6-19.8-30-.2-18.7 15.3-27.7 16-28.2-8.8-13-22.4-14.4-27.1-14.7-12.2-.7-22.6 6.9-28.4 6.9-5.9 0-14.7-6.6-24.3-6.4-12.5.2-24.2 7.3-30.5 18.6-13.1 22.6-3.4 56 9.3 74.4 6.2 9.1 13.7 19.1 23.5 18.7 9.3-.4 13-6 24.2-6 11.3 0 14.5 6 24.3 5.9 10.2-.2 16.5-9.1 22.8-18.2 6.9-10.4 9.8-20.4 10-21zm135.4-53.4c0-26.6-18.5-44.8-44.9-44.8h-51.2v136.4h21.2v-46.6h29.3c26.8 0 45.6-18.4 45.6-45zm90 23.7c0-19.7-15.8-32.4-40-32.4-22.5 0-39.1 12.9-39.7 30.5h19.1c1.6-8.4 9.4-13.9 20-13.9 13 0 20.2 6 20.2 17.2v7.5l-26.4 1.6c-24.6 1.5-37.9 11.6-37.9 29.1 0 17.7 13.7 29.4 33.4 29.4 13.3 0 25.6-6.7 31.2-17.4h.4V310h19.6v-68zM516 210.9h-21.5l-24.9 80.6h-.4l-24.9-80.6H422l35.9 99.3-1.9 6c-3.2 10.2-8.5 14.2-17.9 14.2-1.7 0-4.9-.2-6.2-.3v16.4c1.2.4 6.5.5 8.1.5 20.7 0 30.4-7.9 38.9-31.8L516 210.9z" ], + "cc-diners-club": [ 576, 512, [], "f24c", "M239.7 79.9c-96.9 0-175.8 78.6-175.8 175.8 0 96.9 78.9 175.8 175.8 175.8 97.2 0 175.8-78.9 175.8-175.8 0-97.2-78.6-175.8-175.8-175.8zm-39.9 279.6c-41.7-15.9-71.4-56.4-71.4-103.8s29.7-87.9 71.4-104.1v207.9zm79.8.3V151.6c41.7 16.2 71.4 56.7 71.4 104.1s-29.7 87.9-71.4 104.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM329.7 448h-90.3c-106.2 0-193.8-85.5-193.8-190.2C45.6 143.2 133.2 64 239.4 64h90.3c105 0 200.7 79.2 200.7 193.8 0 104.7-95.7 190.2-200.7 190.2z" ], + "cc-discover": [ 576, 512, [], "f1f2", "M83 212.1c0 7.9-3.2 15.5-8.9 20.7-4.9 4.4-11.6 6.4-21.9 6.4H48V185h4.2c10.3 0 16.7 1.7 21.9 6.6 5.7 5 8.9 12.6 8.9 20.5zM504.8 184h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8 0-7.9-5.5-12.1-15.6-12.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM428 253h45.3v-13.8H444V217h28.3v-13.8H444V185h29.3v-14H428v82zm-86.2-82l35 84.2h8.6l35.5-84.2h-17.5l-22.2 55.2-21.9-55.2h-17.5zm-83 41.6c0 24.6 19.9 44.6 44.6 44.6 24.6 0 44.6-19.9 44.6-44.6 0-24.6-19.9-44.6-44.6-44.6-24.6 0-44.6 19.9-44.6 44.6zm-68-.5c0 32.5 33.6 52.5 63.3 38.2v-19c-19.3 19.3-46.8 5.8-46.8-19.2 0-23.7 26.7-39.1 46.8-19v-19c-30.2-15-63.3 6.8-63.3 38zm-33.9 28.3c-7.6 0-13.8-3.7-17.5-10.8l-10.3 9.9c17.8 26.1 56.6 18.2 56.6-11.3 0-13.1-5.4-19-23.6-25.6-9.6-3.4-12.3-5.9-12.3-10.3 0-8.7 14.5-14.1 24.9-2.5l8.4-10.8c-19.1-17.1-49.7-8.9-49.7 14.3 0 11.3 5.2 17.2 20.2 22.7 25.7 9.1 14.7 24.4 3.3 24.4zm-57.4-28.3c0-24.1-18-41.1-44.1-41.1H32v82h23.4c30.9 0 44.1-22.4 44.1-40.9zm23.4-41.1h-16v82h16v-82zM544 288c-33.3 20.8-226.4 124.4-416 160h401c8.2 0 15-6.8 15-15V288zm0-35l-25.9-34.5c12.1-2.5 18.7-10.6 18.7-23.2 0-28.5-30.3-24.4-52.9-24.4v82h16v-32.8h2.2l22.2 32.8H544z" ], + "cc-jcb": [ 576, 512, [], "f24b", "M431.5 244.3V212c41.2 0 38.5.2 38.5.2 7.3 1.3 13.3 7.3 13.3 16 0 8.8-6 14.5-13.3 15.8-1.2.4-3.3.3-38.5.3zm42.8 20.2c-2.8-.7-3.3-.5-42.8-.5v35c39.6 0 40 .2 42.8-.5 7.5-1.5 13.5-8 13.5-17 0-8.7-6-15.5-13.5-17zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM182 192.3h-57c0 67.1 10.7 109.7-35.8 109.7-19.5 0-38.8-5.7-57.2-14.8v28c30 8.3 68 8.3 68 8.3 97.9 0 82-47.7 82-131.2zm178.5 4.5c-63.4-16-165-14.9-165 59.3 0 77.1 108.2 73.6 165 59.2V287C312.9 311.7 253 309 253 256s59.8-55.6 107.5-31.2v-28zM544 286.5c0-18.5-16.5-30.5-38-32v-.8c19.5-2.7 30.3-15.5 30.3-30.2 0-19-15.7-30-37-31 0 0 6.3-.3-120.3-.3v127.5h122.7c24.3.1 42.3-12.9 42.3-33.2z" ], + "cc-mastercard": [ 576, 512, [], "f1f1", "M482.9 410.3c0 6.8-4.6 11.7-11.2 11.7-6.8 0-11.2-5.2-11.2-11.7 0-6.5 4.4-11.7 11.2-11.7 6.6 0 11.2 5.2 11.2 11.7zm-310.8-11.7c-7.1 0-11.2 5.2-11.2 11.7 0 6.5 4.1 11.7 11.2 11.7 6.5 0 10.9-4.9 10.9-11.7-.1-6.5-4.4-11.7-10.9-11.7zm117.5-.3c-5.4 0-8.7 3.5-9.5 8.7h19.1c-.9-5.7-4.4-8.7-9.6-8.7zm107.8.3c-6.8 0-10.9 5.2-10.9 11.7 0 6.5 4.1 11.7 10.9 11.7 6.8 0 11.2-4.9 11.2-11.7 0-6.5-4.4-11.7-11.2-11.7zm105.9 26.1c0 .3.3.5.3 1.1 0 .3-.3.5-.3 1.1-.3.3-.3.5-.5.8-.3.3-.5.5-1.1.5-.3.3-.5.3-1.1.3-.3 0-.5 0-1.1-.3-.3 0-.5-.3-.8-.5-.3-.3-.5-.5-.5-.8-.3-.5-.3-.8-.3-1.1 0-.5 0-.8.3-1.1 0-.5.3-.8.5-1.1.3-.3.5-.3.8-.5.5-.3.8-.3 1.1-.3.5 0 .8 0 1.1.3.5.3.8.3 1.1.5s.2.6.5 1.1zm-2.2 1.4c.5 0 .5-.3.8-.3.3-.3.3-.5.3-.8 0-.3 0-.5-.3-.8-.3 0-.5-.3-1.1-.3h-1.6v3.5h.8V426h.3l1.1 1.4h.8l-1.1-1.3zM576 81v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V81c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM64 220.6c0 76.5 62.1 138.5 138.5 138.5 27.2 0 53.9-8.2 76.5-23.1-72.9-59.3-72.4-171.2 0-230.5-22.6-15-49.3-23.1-76.5-23.1-76.4-.1-138.5 62-138.5 138.2zm224 108.8c70.5-55 70.2-162.2 0-217.5-70.2 55.3-70.5 162.6 0 217.5zm-142.3 76.3c0-8.7-5.7-14.4-14.7-14.7-4.6 0-9.5 1.4-12.8 6.5-2.4-4.1-6.5-6.5-12.2-6.5-3.8 0-7.6 1.4-10.6 5.4V392h-8.2v36.7h8.2c0-18.9-2.5-30.2 9-30.2 10.2 0 8.2 10.2 8.2 30.2h7.9c0-18.3-2.5-30.2 9-30.2 10.2 0 8.2 10 8.2 30.2h8.2v-23zm44.9-13.7h-7.9v4.4c-2.7-3.3-6.5-5.4-11.7-5.4-10.3 0-18.2 8.2-18.2 19.3 0 11.2 7.9 19.3 18.2 19.3 5.2 0 9-1.9 11.7-5.4v4.6h7.9V392zm40.5 25.6c0-15-22.9-8.2-22.9-15.2 0-5.7 11.9-4.8 18.5-1.1l3.3-6.5c-9.4-6.1-30.2-6-30.2 8.2 0 14.3 22.9 8.3 22.9 15 0 6.3-13.5 5.8-20.7.8l-3.5 6.3c11.2 7.6 32.6 6 32.6-7.5zm35.4 9.3l-2.2-6.8c-3.8 2.1-12.2 4.4-12.2-4.1v-16.6h13.1V392h-13.1v-11.2h-8.2V392h-7.6v7.3h7.6V416c0 17.6 17.3 14.4 22.6 10.9zm13.3-13.4h27.5c0-16.2-7.4-22.6-17.4-22.6-10.6 0-18.2 7.9-18.2 19.3 0 20.5 22.6 23.9 33.8 14.2l-3.8-6c-7.8 6.4-19.6 5.8-21.9-4.9zm59.1-21.5c-4.6-2-11.6-1.8-15.2 4.4V392h-8.2v36.7h8.2V408c0-11.6 9.5-10.1 12.8-8.4l2.4-7.6zm10.6 18.3c0-11.4 11.6-15.1 20.7-8.4l3.8-6.5c-11.6-9.1-32.7-4.1-32.7 15 0 19.8 22.4 23.8 32.7 15l-3.8-6.5c-9.2 6.5-20.7 2.6-20.7-8.6zm66.7-18.3H408v4.4c-8.3-11-29.9-4.8-29.9 13.9 0 19.2 22.4 24.7 29.9 13.9v4.6h8.2V392zm33.7 0c-2.4-1.2-11-2.9-15.2 4.4V392h-7.9v36.7h7.9V408c0-11 9-10.3 12.8-8.4l2.4-7.6zm40.3-14.9h-7.9v19.3c-8.2-10.9-29.9-5.1-29.9 13.9 0 19.4 22.5 24.6 29.9 13.9v4.6h7.9v-51.7zm7.6-75.1v4.6h.8V302h1.9v-.8h-4.6v.8h1.9zm6.6 123.8c0-.5 0-1.1-.3-1.6-.3-.3-.5-.8-.8-1.1-.3-.3-.8-.5-1.1-.8-.5 0-1.1-.3-1.6-.3-.3 0-.8.3-1.4.3-.5.3-.8.5-1.1.8-.5.3-.8.8-.8 1.1-.3.5-.3 1.1-.3 1.6 0 .3 0 .8.3 1.4 0 .3.3.8.8 1.1.3.3.5.5 1.1.8.5.3 1.1.3 1.4.3.5 0 1.1 0 1.6-.3.3-.3.8-.5 1.1-.8.3-.3.5-.8.8-1.1.3-.6.3-1.1.3-1.4zm3.2-124.7h-1.4l-1.6 3.5-1.6-3.5h-1.4v5.4h.8v-4.1l1.6 3.5h1.1l1.4-3.5v4.1h1.1v-5.4zm4.4-80.5c0-76.2-62.1-138.3-138.5-138.3-27.2 0-53.9 8.2-76.5 23.1 72.1 59.3 73.2 171.5 0 230.5 22.6 15 49.5 23.1 76.5 23.1 76.4.1 138.5-61.9 138.5-138.4z" ], + "cc-paypal": [ 576, 512, [], "f1f4", "M186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5z" ], + "cc-stripe": [ 576, 512, [], "f1f5", "M396.9 256.5c0 19.1-8.8 33.4-21.9 33.4-8.3 0-13.3-3-16.8-6.7l-.2-52.8c3.7-4.1 8.8-7 17-7 12.9-.1 21.9 14.5 21.9 33.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM122.2 281.1c0-42.3-54.3-34.7-54.3-50.7 0-5.5 4.6-7.7 12.1-7.7 10.8 0 24.5 3.3 35.3 9.1v-33.4c-11.8-4.7-23.5-6.5-35.3-6.5-28.8 0-48 15-48 40.2 0 39.3 54 32.9 54 49.9 0 6.6-5.7 8.7-13.6 8.7-11.8 0-26.9-4.9-38.9-11.3v33.9c13.2 5.7 26.6 8.1 38.8 8.1 29.6-.2 49.9-14.7 49.9-40.3zm68.9-86.9h-27v-30.8l-34.7 7.4-.2 113.9c0 21 15.8 36.5 36.9 36.5 11.6 0 20.2-2.1 24.9-4.7v-28.9c-4.5 1.8-27 8.3-27-12.6v-50.5h27v-30.3zm73.8 0c-4.7-1.7-21.3-4.8-29.6 10.5l-2.2-10.5h-30.7v124.5h35.5v-84.4c8.4-11 22.6-8.9 27.1-7.4v-32.7zm44.2 0h-35.7v124.5h35.7V194.2zm0-47.3l-35.7 7.6v28.9l35.7-7.6v-28.9zm122.7 108.8c0-41.3-23.5-63.8-48.4-63.8-13.9 0-22.9 6.6-27.8 11.1l-1.8-8.8h-31.3V360l35.5-7.5.1-40.2c5.1 3.7 12.7 9 25.1 9 25.4-.1 48.6-20.5 48.6-65.6zm112.2 1.2c0-36.4-17.6-65.1-51.3-65.1-33.8 0-54.3 28.7-54.3 64.9 0 42.8 24.2 64.5 58.8 64.5 17 0 29.7-3.9 39.4-9.2v-28.6c-9.7 4.9-20.8 7.9-34.9 7.9-13.8 0-26-4.9-27.6-21.5h69.5c.1-2 .4-9.4.4-12.9zm-51.6-36.1c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7z" ], + "cc-visa": [ 576, 512, [], "f1f0", "M470.1 231.3s7.6 37.2 9.3 45H446c3.3-8.9 16-43.5 16-43.5-.2.3 3.3-9.1 5.3-14.9l2.8 13.4zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM152.5 331.2L215.7 176h-42.5l-39.3 106-4.3-21.5-14-71.4c-2.3-9.9-9.4-12.7-18.2-13.1H32.7l-.7 3.1c15.8 4 29.9 9.8 42.2 17.1l35.8 135h42.5zm94.4.2L272.1 176h-40.2l-25.1 155.4h40.1zm139.9-50.8c.2-17.7-10.6-31.2-33.7-42.3-14.1-7.1-22.7-11.9-22.7-19.2.2-6.6 7.3-13.4 23.1-13.4 13.1-.3 22.7 2.8 29.9 5.9l3.6 1.7 5.5-33.6c-7.9-3.1-20.5-6.6-36-6.6-39.7 0-67.6 21.2-67.8 51.4-.3 22.3 20 34.7 35.2 42.2 15.5 7.6 20.8 12.6 20.8 19.3-.2 10.4-12.6 15.2-24.1 15.2-16 0-24.6-2.5-37.7-8.3l-5.3-2.5-5.6 34.9c9.4 4.3 26.8 8.1 44.8 8.3 42.2.1 69.7-20.8 70-53zM528 331.4L495.6 176h-31.1c-9.6 0-16.9 2.8-21 12.9l-59.7 142.5H426s6.9-19.2 8.4-23.3H486c1.2 5.5 4.8 23.3 4.8 23.3H528z" ], + centercode: [ 512, 512, [], "f380", "M329.2 268.6c-3.8 35.2-35.4 60.6-70.6 56.8-35.2-3.8-60.6-35.4-56.8-70.6 3.8-35.2 35.4-60.6 70.6-56.8 35.1 3.8 60.6 35.4 56.8 70.6zm-85.8 235.1C96.7 496-8.2 365.5 10.1 224.3c11.2-86.6 65.8-156.9 139.1-192 161-77.1 349.7 37.4 354.7 216.6 4.1 147-118.4 262.2-260.5 254.8zm179.9-180c27.9-118-160.5-205.9-237.2-234.2-57.5 56.3-69.1 188.6-33.8 344.4 68.8 15.8 169.1-26.4 271-110.2z" ], + chrome: [ 496, 512, [], "f268", "M131.5 217.5L55.1 100.1c47.6-59.2 119-91.8 192-92.1 42.3-.3 85.5 10.5 124.8 33.2 43.4 25.2 76.4 61.4 97.4 103L264 133.4c-58.1-3.4-113.4 29.3-132.5 84.1zm32.9 38.5c0 46.2 37.4 83.6 83.6 83.6s83.6-37.4 83.6-83.6-37.4-83.6-83.6-83.6-83.6 37.3-83.6 83.6zm314.9-89.2L339.6 174c37.9 44.3 38.5 108.2 6.6 157.2L234.1 503.6c46.5 2.5 94.4-7.7 137.8-32.9 107.4-62 150.9-192 107.4-303.9zM133.7 303.6L40.4 120.1C14.9 159.1 0 205.9 0 256c0 124 90.8 226.7 209.5 244.9l63.7-124.8c-57.6 10.8-113.2-20.8-139.5-72.5z" ], + cloudscale: [ 448, 512, [], "f383", "M318.1 154l-9.4 7.6c-22.5-19.3-51.5-33.6-83.3-33.6C153.8 128 96 188.8 96 260.3c0 6.6.4 13.1 1.4 19.4-2-56 41.8-97.4 92.6-97.4 24.2 0 46.2 9.4 62.6 24.7l-25.2 20.4c-8.3-.9-16.8 1.8-23.1 8.1-11.1 11-11.1 28.9 0 40 11.1 11 28.9 11 40 0 6.3-6.3 9-14.9 8.1-23.1l75.2-88.8c6.3-6.5-3.3-15.9-9.5-9.6zm-83.8 111.5c-5.6 5.5-14.6 5.5-20.2 0-5.6-5.6-5.6-14.6 0-20.2s14.6-5.6 20.2 0 5.6 14.7 0 20.2zM224 32C100.5 32 0 132.5 0 256s100.5 224 224 224 224-100.5 224-224S347.5 32 224 32zm0 384c-88.2 0-160-71.8-160-160S135.8 96 224 96s160 71.8 160 160-71.8 160-160 160z" ], + cloudsmith: [ 332, 512, [], "f384", "M332.5 419.9c0 46.4-37.6 84.1-84 84.1s-84-37.7-84-84.1 37.6-84 84-84 84 37.6 84 84zm-84-243.9c46.4 0 80-37.6 80-84s-33.6-84-80-84-88 37.6-88 84-29.6 76-76 76-84 41.6-84 88 37.6 80 84 80 84-33.6 84-80 33.6-80 80-80z" ], + cloudversify: [ 616, 512, [], "f385", "M148.6 304c8.2 68.5 67.4 115.5 146 111.3 51.2 43.3 136.8 45.8 186.4-5.6 69.2 1.1 118.5-44.6 131.5-99.5 14.8-62.5-18.2-132.5-92.1-155.1-33-88.1-131.4-101.5-186.5-85-57.3 17.3-84.3 53.2-99.3 109.7-7.8 2.7-26.5 8.9-45 24.1 11.7 0 15.2 8.9 15.2 19.5v20.4c0 10.7-8.7 19.5-19.5 19.5h-20.2c-10.7 0-19.5-6-19.5-16.7V240H98.8C95 240 88 244.3 88 251.9v40.4c0 6.4 5.3 11.8 11.7 11.8h48.9zm227.4 8c-10.7 46.3 21.7 72.4 55.3 86.8C324.1 432.6 259.7 348 296 288c-33.2 21.6-33.7 71.2-29.2 92.9-17.9-12.4-53.8-32.4-57.4-79.8-3-39.9 21.5-75.7 57-93.9C297 191.4 369.9 198.7 400 248c-14.1-48-53.8-70.1-101.8-74.8 30.9-30.7 64.4-50.3 114.2-43.7 69.8 9.3 133.2 82.8 67.7 150.5 35-16.3 48.7-54.4 47.5-76.9l10.5 19.6c11.8 22 15.2 47.6 9.4 72-9.2 39-40.6 68.8-79.7 76.5-32.1 6.3-83.1-5.1-91.8-59.2zM128 208H88.2c-8.9 0-16.2-7.3-16.2-16.2v-39.6c0-8.9 7.3-16.2 16.2-16.2H128c8.9 0 16.2 7.3 16.2 16.2v39.6c0 8.9-7.3 16.2-16.2 16.2zM10.1 168C4.5 168 0 163.5 0 157.9v-27.8c0-5.6 4.5-10.1 10.1-10.1h27.7c5.5 0 10.1 4.5 10.1 10.1v27.8c0 5.6-4.5 10.1-10.1 10.1H10.1zM168 142.7v-21.4c0-5.1 4.2-9.3 9.3-9.3h21.4c5.1 0 9.3 4.2 9.3 9.3v21.4c0 5.1-4.2 9.3-9.3 9.3h-21.4c-5.1 0-9.3-4.2-9.3-9.3zM56 235.5v25c0 6.3-5.1 11.5-11.4 11.5H19.4C13.1 272 8 266.8 8 260.5v-25c0-6.3 5.1-11.5 11.4-11.5h25.1c6.4 0 11.5 5.2 11.5 11.5z" ], + codepen: [ 512, 512, [], "f1cb", "M502.285 159.704l-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285zM278 63.131l172.286 114.858-76.857 51.429L278 165.703V63.131zm-44 0v102.572l-95.429 63.715-76.857-51.429L234 63.131zM44 219.132l55.143 36.857L44 292.846v-73.714zm190 229.715L61.714 333.989l76.857-51.429L234 346.275v102.572zm22-140.858l-77.715-52 77.715-52 77.715 52-77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429L278 448.847zm190-156.001l-55.143-36.857L468 219.132v73.714z" ], + codiepie: [ 472, 512, [], "f284", "M422.5 202.9c30.7 0 33.5 53.1-.3 53.1h-10.8v44.3h-26.6v-97.4h37.7zM472 352.6C429.9 444.5 350.4 504 248 504 111 504 0 393 0 256S111 8 248 8c97.4 0 172.8 53.7 218.2 138.4l-186 108.8L472 352.6zm-38.5 12.5l-60.3-30.7c-27.1 44.3-70.4 71.4-122.4 71.4-82.5 0-149.2-66.7-149.2-148.9 0-82.5 66.7-149.2 149.2-149.2 48.4 0 88.9 23.5 116.9 63.4l59.5-34.6c-40.7-62.6-104.7-100-179.2-100-121.2 0-219.5 98.3-219.5 219.5S126.8 475.5 248 475.5c78.6 0 146.5-42.1 185.5-110.4z" ], + connectdevelop: [ 576, 512, [], "f20e", "M550.5 241l-50.089-86.786c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.733-14.732-15.001l-55.447-95.893c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.268-15.268-15.268-4.821 0-8.839 2.143-11.786 5.625H299.518C296.839 18.143 292.821 16 288 16s-8.839 2.143-11.518 5.625H170.411C167.464 18.143 163.447 16 158.625 16c-8.303 0-15.268 6.696-15.268 15.268 0 1.607.536 3.482 1.072 4.821l-55.983 97.233c-5.356 2.41-9.107 7.5-9.107 13.661 0 .535.268 1.071.268 1.607l-53.304 92.143c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.393 12.054 15l55.179 95.358c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.393 12.054 14.732l51.697 89.732c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.268 15.268 15.268 4.821 0 8.839-2.143 11.518-5.357h106.875C279.161 493.857 283.447 496 288 496s8.839-2.143 11.518-5.357h107.143c2.678 2.946 6.696 4.821 10.982 4.821 8.571 0 15.268-6.964 15.268-15.268 0-1.607-.267-2.946-.803-4.285l51.697-90.268c6.964-1.339 12.054-7.5 12.054-14.732 0-1.607-.268-3.214-.804-4.821l54.911-95.358c6.964-1.339 12.322-7.5 12.322-15-.002-7.232-5.092-13.393-11.788-14.732zM153.535 450.732l-43.66-75.803h43.66v75.803zm0-83.839h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.999-47.41v50.624zm0-62.411l-50.357 53.304c-1.339-.536-2.679-1.34-4.018-1.607L43.447 259.75c.535-1.339.535-2.679.535-4.018s0-2.41-.268-3.482l51.965-90c2.679-.268 5.357-1.072 7.768-2.679l50.089 51.965v92.946zm0-102.322l-45.803-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.928-15.804v72.053zm0-80.625l-43.66 15.804 43.66-75.536v59.732zm326.519 39.108l.804 1.339L445.5 329.125l-63.75-67.232 98.036-101.518.268.268zM291.75 355.107l11.518 11.786H280.5l11.25-11.786zm-.268-11.25l-83.303-85.446 79.553-84.375 83.036 87.589-79.286 82.232zm5.357 5.893l79.286-82.232 67.5 71.25-5.892 28.125H313.714l-16.875-17.143zM410.411 44.393c1.071.536 2.142 1.072 3.482 1.34l57.857 100.714v.536c0 2.946.803 5.624 2.143 7.767L376.393 256l-83.035-87.589L410.411 44.393zm-9.107-2.143L287.732 162.518l-57.054-60.268 166.339-60h4.287zm-123.483 0c2.678 2.678 6.16 4.285 10.179 4.285s7.5-1.607 10.179-4.285h75L224.786 95.821 173.893 42.25h103.928zm-116.249 5.625l1.071-2.142a33.834 33.834 0 0 0 2.679-.804l51.161 53.84-54.911 19.821V47.875zm0 79.286l60.803-21.964 59.732 63.214-79.553 84.107-40.982-42.053v-83.304zm0 92.678L198 257.607l-36.428 38.304v-76.072zm0 87.858l42.053-44.464 82.768 85.982-17.143 17.678H161.572v-59.196zm6.964 162.053c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.732h99.91l-91.607 94.821h-1.339zm129.911 0c-2.679-2.41-6.428-4.285-10.447-4.285s-7.767 1.875-10.447 4.285h-96.429l91.607-94.821h38.304l91.607 94.821H298.447zm120-11.786l-4.286 7.5c-1.339.268-2.41.803-3.482 1.339l-89.196-91.875h114.376l-17.412 83.036zm12.856-22.232l12.858-60.803h21.964l-34.822 60.803zm34.822-68.839h-20.357l4.553-21.16 17.143 18.214c-.535.803-1.071 1.874-1.339 2.946zm66.161-107.411l-55.447 96.697c-1.339.535-2.679 1.071-4.018 1.874l-20.625-21.964 34.554-163.928 45.803 79.286c-.267 1.339-.803 2.678-.803 4.285 0 1.339.268 2.411.536 3.75z" ], + contao: [ 512, 512, [], "f26d", "M45.4 305c14.4 67.1 26.4 129 68.2 175H34c-18.7 0-34-15.2-34-34V66c0-18.7 15.2-34 34-34h57.7C77.9 44.6 65.6 59.2 54.8 75.6c-45.4 70-27 146.8-9.4 229.4zM478 32h-90.2c21.4 21.4 39.2 49.5 52.7 84.1l-137.1 29.3c-14.9-29-37.8-53.3-82.6-43.9-24.6 5.3-41 19.3-48.3 34.6-8.8 18.7-13.2 39.8 8.2 140.3 21.1 100.2 33.7 117.7 49.5 131.2 12.9 11.1 33.4 17 58.3 11.7 44.5-9.4 55.7-40.7 57.4-73.2l137.4-29.6c3.2 71.5-18.7 125.2-57.4 163.6H478c18.7 0 34-15.2 34-34V66c0-18.8-15.2-34-34-34z" ], + cpanel: [ 640, 512, [], "f388", "M52.9 213.7h40l-6.2 23.6c-1.9 6.5-7.4 10.9-14.3 10.9H53.8c-24.9 0-24.7 37.4 0 37.4h11.3c4.2 0 7.6 3.9 6.4 8.3L64.4 320H52c-33.5 0-59-31.4-50.3-65.2 7.3-27 28.3-41.1 51.2-41.1M73.1 320L108 189.9c1.8-6.4 7.2-10.9 14.3-10.9h37c24.1 0 45.4 16.4 51 41.2 6.6 29.1-14.5 65.3-51.7 65.3h-32l6.4-23.8c1.8-6.2 7.3-10.8 14.3-10.8h10.3c12.4 0 20.8-11.7 18.3-22.6-2.1-9.2-9.9-14.8-18.3-14.8h-19.8L112 309.2c-1.9 6.2-7.4 10.7-14.2 10.7l-24.7.1m220.6-69.4c.3-1 1.9-5.3-2.1-5.3h-57.5c-9.7 0-16.6-8.9-14.2-18.5l3.5-13.4h77.9c18.8 0 33.3 17.6 28.5 36.8l-14 51.8c-2.8 10.6-12.2 17.8-23.4 17.8l-57.5-.2c-42.9 0-38.5-63.8.7-63.8H284l-3.5 13.2c-1.9 6.2-7.4 10.8-14.2 10.8h-21.6c-5.3 0-5.3 7.9 0 7.9h34.9c4.6 0 5.1-3.9 5.5-5.3l8.6-31.8m103.1-36.9c34.4 0 59.3 32.3 50.3 65.4l-8.8 33.1c-1.2 4.9-5.7 7.8-10.3 7.8h-19.1c-4.5 0-7.6-4-6.4-8.3l10.6-40c3.3-11.6-5.6-23.4-18.1-23.4h-19.8l-17.2 64c-1.2 4.8-5.6 7.8-10.4 7.8h-18.9c-4.2 0-7.6-3.9-6.4-8.3l26.2-98h48.3M498 251.6l-8 30c-.9 3.3 1.5 6.7 5.1 6.7h73.3l-5.7 21c-1.9 6.2-7.4 10.7-14.2 10.7h-66.7c-20 0-33.3-19-28.3-36.7l10.8-40c4.8-17.6 20.7-29.6 38.6-29.6h47.3c19 0 33.2 17.7 28.3 36.8l-3.2 12c-2.9 11-12.7 17.6-23.2 17.6h-53.4l3.5-13c1.6-6.2 7.2-10.8 14.2-10.8H538c2 0 3.3-1 3.9-3l.7-2.6c.7-2.7-1.3-5.1-3.9-5.1h-32.9c-4.1 0-6.9 2.1-7.8 6zm70.2 68.4l35.6-133.1c1.2-4.7 5.5-7.9 10.4-7.9h18.9c4.5 0 7.7 4 6.5 8.3l-26.5 98.2c-5.1 20.7-24.2 34.5-44.9 34.5" ], + "creative-commons": [ 496, 512, [], "f25e", "M245.83 214.87l-33.22 17.28c-9.43-19.58-25.24-19.93-27.46-19.93-22.13 0-33.22 14.61-33.22 43.84 0 23.57 9.21 43.84 33.22 43.84 14.47 0 24.65-7.09 30.57-21.26l30.55 15.5c-6.17 11.51-25.69 38.98-65.1 38.98-22.6 0-73.96-10.32-73.96-77.05 0-58.69 43-77.06 72.63-77.06 30.72-.01 52.7 11.95 65.99 35.86zm143.05 0l-32.78 17.28c-9.5-19.77-25.72-19.93-27.9-19.93-22.14 0-33.22 14.61-33.22 43.84 0 23.55 9.23 43.84 33.22 43.84 14.45 0 24.65-7.09 30.54-21.26l31 15.5c-2.1 3.75-21.39 38.98-65.09 38.98-22.69 0-73.96-9.87-73.96-77.05 0-58.67 42.97-77.06 72.63-77.06 30.71-.01 52.58 11.95 65.56 35.86zM247.56 8.05C104.74 8.05 0 123.11 0 256.05c0 138.49 113.6 248 247.56 248 129.93 0 248.44-100.87 248.44-248 0-137.87-106.62-248-248.44-248zm.87 450.81c-112.54 0-203.7-93.04-203.7-202.81 0-105.42 85.43-203.27 203.72-203.27 112.53 0 202.82 89.46 202.82 203.26-.01 121.69-99.68 202.82-202.84 202.82z" ], + "creative-commons-by": [ 496, 512, [], "f4e7", "M314.9 194.4v101.4h-28.3v120.5h-77.1V295.9h-28.3V194.4c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7H299c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3zm-101.5-63.7c0-23.3 11.5-35 34.5-35s34.5 11.7 34.5 35c0 23-11.5 34.5-34.5 34.5s-34.5-11.5-34.5-34.5zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z" ], + "creative-commons-nc": [ 496, 512, [], "f4e8", "M247.6 8C387.4 8 496 115.9 496 256c0 147.2-118.5 248-248.4 248C113.1 504 0 393.2 0 256 0 123.1 104.7 8 247.6 8zM55.8 189.1c-7.4 20.4-11.1 42.7-11.1 66.9 0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4v38.1h-28.8V368c-27.5-.3-52.6-10.2-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4zM248.4 52.3c-38.4 0-112.4 8.7-170.5 93l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3v-38.1h28.8v38.1c22.7 1.2 43.4 8.9 62 23L295 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8z" ], + "creative-commons-nc-eu": [ 496, 512, [], "f4e9", "M247.7 8C103.6 8 0 124.8 0 256c0 136.3 111.7 248 247.7 248C377.9 504 496 403.1 496 256 496 117 388.4 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-23.2 3.7-45.2 10.9-66l65.7 29.1h-4.7v29.5h23.3c0 6.2-.4 3.2-.4 19.5h-22.8v29.5h27c11.4 67 67.2 101.3 124.6 101.3 26.6 0 50.6-7.9 64.8-15.8l-10-46.1c-8.7 4.6-28.2 10.8-47.3 10.8-28.2 0-58.1-10.9-67.3-50.2h90.3l128.3 56.8c-1.5 2.1-56.2 104.3-178.8 104.3zm-16.7-190.6l-.5-.4.9.4h-.4zm77.2-19.5h3.7v-29.5h-70.3l-28.6-12.6c2.5-5.5 5.4-10.5 8.8-14.3 12.9-15.8 31.1-22.4 51.1-22.4 18.3 0 35.3 5.4 46.1 10l11.6-47.3c-15-6.6-37-12.4-62.3-12.4-39 0-72.2 15.8-95.9 42.3-5.3 6.1-9.8 12.9-13.9 20.1l-81.6-36.1c64.6-96.8 157.7-93.6 170.7-93.6 113 0 203 90.2 203 203.4 0 18.7-2.1 36.3-6.3 52.9l-136.1-60.5z" ], + "creative-commons-nc-jp": [ 496, 512, [], "f4ea", "M247.7 8C103.6 8 0 124.8 0 256c0 136.4 111.8 248 247.7 248C377.9 504 496 403.2 496 256 496 117.2 388.5 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-21.1 3-41.2 9-60.3l127 56.5h-27.9v38.6h58.1l5.7 11.8v18.7h-63.8V360h63.8v56h61.7v-56h64.2v-35.7l81 36.1c-1.5 2.2-57.1 98.3-175.2 98.3zm87.6-137.3h-57.6v-18.7l2.9-5.6 54.7 24.3zm6.5-51.4v-17.8h-38.6l63-116H301l-43.4 96-23-10.2-39.6-85.7h-65.8l27.3 51-81.9-36.5c27.8-44.1 82.6-98.1 173.7-98.1 112.8 0 203 90 203 203.4 0 21-2.7 40.6-7.9 59l-101-45.1z" ], + "creative-commons-nd": [ 496, 512, [], "f4eb", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm94 144.3v42.5H162.1V197h180.3zm0 79.8v42.5H162.1v-42.5h180.3z" ], + "creative-commons-pd": [ 496, 512, [], "f4ec", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm0 449.5c-139.2 0-235.8-138-190.2-267.9l78.8 35.1c-2.1 10.5-3.3 21.5-3.3 32.9 0 99 73.9 126.9 120.4 126.9 22.9 0 53.5-6.7 79.4-29.5L297 311.1c-5.5 6.3-17.6 16.7-36.3 16.7-37.8 0-53.7-39.9-53.9-71.9 230.4 102.6 216.5 96.5 217.9 96.8-34.3 62.4-100.6 104.8-176.7 104.8zm194.2-150l-224-100c18.8-34 54.9-30.7 74.7-11l40.4-41.6c-27.1-23.3-58-27.5-78.1-27.5-47.4 0-80.9 20.5-100.7 51.6l-74.9-33.4c36.1-54.9 98.1-91.2 168.5-91.2 111.1 0 201.5 90.4 201.5 201.5 0 18-2.4 35.4-6.8 52-.3-.1-.4-.2-.6-.4z" ], + "creative-commons-pd-alt": [ 496, 512, [], "f4ed", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM135.5 323.3V186h68.2c33.7 0 50.5 15.5 50.5 46.5 0 9-3 46.5-57.1 46.5h-27v44.3h-34.6zm34.1-111.6v41.6h29.2c27.9 0 30-41.6-.9-41.6h-28.3zm93.9 111.6V186h53.2c21.4 0 70 5.2 70 68.6 0 63.5-48.6 68.6-70 68.6h-53.2zm34.1-108.5v79.7h19.9c24 0 34.5-15.3 34.5-39.9 0-42-31.2-39.9-35-39.9l-19.4.1z" ], + "creative-commons-remix": [ 496, 512, [], "f4ee", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm161.7 207.7l4.9 2.2v70c-7.2 3.6-63.4 27.5-67.3 28.8-6.5-1.8-113.7-46.8-137.3-56.2l-64.2 26.6-63.3-27.5v-63.8l59.3-24.8c-.7-.7-.4 5-.4-70.4l67.3-29.7L361 178.5v61.6l49.1 20.3zm-70.4 81.5v-43.8h-.4v-1.8l-113.8-46.5V295l113.8 46.9v-.4l.4.4zm7.5-57.6l39.9-16.4-36.8-15.5-39 16.4 35.9 15.5zm52.3 38.1v-43L355.2 298v43.4l44.3-19z" ], + "creative-commons-sa": [ 496, 512, [], "f4ef", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM137.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97h62.5c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6-33.1 0-51.7 14.6-55.8 43.8h18.2l-49.2 49.2-49-49.2h19.4z" ], + "creative-commons-sampling": [ 496, 512, [], "f4f0", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm3.6 53.2c2.8-.3 11.5 1 11.5 11.5l6.6 107.2 4.9-59.3c0-6 4.7-10.6 10.6-10.6 5.9 0 10.6 4.7 10.6 10.6 0 2.5-.5-5.7 5.7 81.5l5.8-64.2c.3-2.9 2.9-9.3 10.2-9.3 3.8 0 9.9 2.3 10.6 8.9l11.5 96.5 5.3-12.8c1.8-4.4 5.2-6.6 10.2-6.6h58v21.3h-50.9l-18.2 44.3c-3.9 9.9-19.5 9.1-20.8-3.1l-4-31.9-7.5 92.6c-.3 3-3 9.3-10.2 9.3-3 0-9.8-2.1-10.6-9.3 0-1.9.6 5.8-6.2-77.9l-5.3 72.2c-1.1 4.8-4.8 9.3-10.6 9.3-2.9 0-9.8-2-10.6-9.3 0-1.9.5 6.7-5.8-87.7l-5.8 94.8c0 6.3-3.6 12.4-10.6 12.4-5.2 0-10.6-4.1-10.6-12l-5.8-87.7c-5.8 92.5-5.3 84-5.3 85.9-1.1 4.8-4.8 9.3-10.6 9.3-3 0-9.8-2.1-10.6-9.3 0-.7-.4-1.1-.4-2.6l-6.2-88.6L182 348c-.7 6.5-6.7 9.3-10.6 9.3-5.8 0-9.6-4.1-10.6-8.9L149.7 272c-2 4-3.5 8.4-11.1 8.4H87.2v-21.3H132l13.7-27.9c4.4-9.9 18.2-7.2 19.9 2.7l3.1 20.4 8.4-97.9c0-6 4.8-10.6 10.6-10.6.5 0 10.6-.2 10.6 12.4l4.9 69.1 6.6-92.6c0-10.1 9.5-10.6 10.2-10.6.6 0 10.6.7 10.6 10.6l5.3 80.6 6.2-97.9c.1-1.1-.6-10.3 9.9-11.5z" ], + "creative-commons-sampling-plus": [ 496, 512, [], "f4f1", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm107 205.6c-4.7 0-9 2.8-10.7 7.2l-4 9.5-11-92.8c-1.7-13.9-22-13.4-23.1.4l-4.3 51.4-5.2-68.8c-1.1-14.3-22.1-14.2-23.2 0l-3.5 44.9-5.9-94.3c-.9-14.5-22.3-14.4-23.2 0l-5.1 83.7-4.3-66.3c-.9-14.4-22.2-14.4-23.2 0l-5.3 80.2-4.1-57c-1.1-14.3-22-14.3-23.2-.2l-7.7 89.8-1.8-12.2c-1.7-11.4-17.1-13.6-22-3.3l-13.2 27.7H87.5v23.2h51.3c4.4 0 8.4-2.5 10.4-6.4l10.7 73.1c2 13.5 21.9 13 23.1-.7l3.8-43.6 5.7 78.3c1.1 14.4 22.3 14.2 23.2-.1l4.6-70.4 4.8 73.3c.9 14.4 22.3 14.4 23.2-.1l4.9-80.5 4.5 71.8c.9 14.3 22.1 14.5 23.2.2l4.6-58.6 4.9 64.4c1.1 14.3 22 14.2 23.1.1l6.8-83 2.7 22.3c1.4 11.8 17.7 14.1 22.3 3.1l18-43.4h50.5V258l-58.4.3zm-78 5.2h-21.9v21.9c0 4.1-3.3 7.5-7.5 7.5-4.1 0-7.5-3.3-7.5-7.5v-21.9h-21.9c-4.1 0-7.5-3.3-7.5-7.5 0-4.1 3.4-7.5 7.5-7.5h21.9v-21.9c0-4.1 3.4-7.5 7.5-7.5s7.5 3.3 7.5 7.5v21.9h21.9c4.1 0 7.5 3.3 7.5 7.5 0 4.1-3.4 7.5-7.5 7.5z" ], + "creative-commons-share": [ 496, 512, [], "f4f2", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm101 132.4c7.8 0 13.7 6.1 13.7 13.7v182.5c0 7.7-6.1 13.7-13.7 13.7H214.3c-7.7 0-13.7-6-13.7-13.7v-54h-54c-7.8 0-13.7-6-13.7-13.7V131.1c0-8.2 6.6-12.7 12.4-13.7h136.4c7.7 0 13.7 6 13.7 13.7v54h54zM159.9 300.3h40.7V198.9c0-7.4 5.8-12.6 12-13.7h55.8v-40.3H159.9v155.4zm176.2-88.1H227.6v155.4h108.5V212.2z" ], + css3: [ 512, 512, [], "f13c", "M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z" ], + "css3-alt": [ 384, 512, [], "f38b", "M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z" ], + cuttlefish: [ 440, 512, [], "f38c", "M344 305.5c-17.5 31.6-57.4 54.5-96 54.5-56.6 0-104-47.4-104-104s47.4-104 104-104c38.6 0 78.5 22.9 96 54.5 13.7-50.9 41.7-93.3 87-117.8C385.7 39.1 320.5 8 248 8 111 8 0 119 0 256s111 248 248 248c72.5 0 137.7-31.1 183-80.7-45.3-24.5-73.3-66.9-87-117.8z" ], + "d-and-d": [ 576, 512, [], "f38d", "M82.5 98.9c-.6-17.2 2-33.8 12.7-48.2.3 7.4 1.2 14.5 4.2 21.6 5.9-27.5 19.7-49.3 42.3-65.5-1.9 5.9-3.5 11.8-3 17.7 8.7-7.4 18.8-17.8 44.4-22.7 14.7-2.8 29.7-2 42.1 1 38.5 9.3 61 34.3 69.7 72.3 5.3 23.1.7 45-8.3 66.4-5.2 12.4-12 24.4-20.7 35.1-2-1.9-3.9-3.8-5.8-5.6-42.8-40.8-26.8-25.2-37.4-37.4-1.1-1.2-1-2.2-.1-3.6 8.3-13.5 11.8-28.2 10-44-1.1-9.8-4.3-18.9-11.3-26.2-14.5-15.3-39.2-15-53.5.6-11.4 12.5-14.1 27.4-10.9 43.6.2 1.3.4 2.7 0 3.9-3.4 13.7-4.6 27.6-2.5 41.6.1.5.1 1.1.1 1.6 0 .3-.1.5-.2 1.1-21.8-11-36-28.3-43.2-52.2-8.3 17.8-11.1 35.5-6.6 54.1-15.6-15.2-21.3-34.3-22-55.2zm469.6 123.2c-11.6-11.6-25-20.4-40.1-26.6-12.8-5.2-26-7.9-39.9-7.1-10 .6-19.6 3.1-29 6.4-2.5.9-5.1 1.6-7.7 2.2-4.9 1.2-7.3-3.1-4.7-6.8 3.2-4.6 3.4-4.2 15-12 .6-.4 1.2-.8 2.2-1.5h-2.5c-.6 0-1.2.2-1.9.3-19.3 3.3-30.7 15.5-48.9 29.6-10.4 8.1-13.8 3.8-12-.5 1.4-3.5 3.3-6.7 5.1-10 1-1.8 2.3-3.4 3.5-5.1-.2-.2-.5-.3-.7-.5-27 18.3-46.7 42.4-57.7 73.3.3.3.7.6 1 .9.3-.6.5-1.2.9-1.7 10.4-12.1 22.8-21.8 36.6-29.8 18.2-10.6 37.5-18.3 58.7-20.2 4.3-.4 8.7-.1 13.1-.1-1.8.7-3.5.9-5.3 1.1-18.5 2.4-35.5 9-51.5 18.5-30.2 17.9-54.5 42.2-75.1 70.4-.3.4-.4.9-.7 1.3 14.5 5.3 24 17.3 36.1 25.6.2-.1.3-.2.4-.4l1.2-2.7c12.2-26.9 27-52.3 46.7-74.5 16.7-18.8 38-25.3 62.5-20 5.9 1.3 11.4 4.4 17.2 6.8 2.3-1.4 5.1-3.2 8-4.7 8.4-4.3 17.4-7 26.7-9 14.7-3.1 29.5-4.9 44.5-1.3v-.5c-.5-.4-1.2-.8-1.7-1.4zM316.7 397.6c-39.4-33-22.8-19.5-42.7-35.6-.8.9 0-.2-1.9 3-11.2 19.1-25.5 35.3-44 47.6-10.3 6.8-21.5 11.8-34.1 11.8-21.6 0-38.2-9.5-49.4-27.8-12-19.5-13.3-40.7-8.2-62.6 7.8-33.8 30.1-55.2 38.6-64.3-18.7-6.2-33 1.7-46.4 13.9.8-13.9 4.3-26.2 11.8-37.3-24.3 10.6-45.9 25-64.8 43.9-.3-5.8 5.4-43.7 5.6-44.7.3-2.7-.6-5.3-3-7.4-24.2 24.7-44.5 51.8-56.1 84.6 7.4-5.9 14.9-11.4 23.6-16.2-8.3 22.3-19.6 52.8-7.8 101.1 4.6 19 11.9 36.8 24.1 52.3 2.9 3.7 6.3 6.9 9.5 10.3.2-.2.4-.3.6-.5-1.4-7-2.2-14.1-1.5-21.9 2.2 3.2 3.9 6 5.9 8.6 12.6 16 28.7 27.4 47.2 35.6 25 11.3 51.1 13.3 77.9 8.6 54.9-9.7 90.7-48.6 116-98.8 1-1.8.6-2.9-.9-4.2zm172-46.4c-9.5-3.1-22.2-4.2-28.7-2.9 9.9 4 14.1 6.6 18.8 12 12.6 14.4 10.4 34.7-5.4 45.6-11.7 8.1-24.9 10.5-38.9 9.1-1.2-.1-2.3-.4-3-.6 2.8-3.7 6-7 8.1-10.8 9.4-16.8 5.4-42.1-8.7-56.1-2.1-2.1-4.6-3.9-7-5.9-.3 1.3-.1 2.1.1 2.8 4.2 16.6-8.1 32.4-24.8 31.8-7.6-.3-13.9-3.8-19.6-8.5-19.5-16.1-39.1-32.1-58.5-48.3-5.9-4.9-12.5-8.1-20.1-8.7-4.6-.4-9.3-.6-13.9-.9-5.9-.4-8.8-2.8-10.4-8.4-.9-3.4-1.5-6.8-2.2-10.2-1.5-8.1-6.2-13-14.3-14.2-4.4-.7-8.9-1-13.3-1.5-13-1.4-19.8-7.4-22.6-20.3-5 11-1.6 22.4 7.3 29.9 4.5 3.8 9.3 7.3 13.8 11.2 4.6 3.8 7.4 8.7 7.9 14.8.4 4.7.8 9.5 1.8 14.1 2.2 10.6 8.9 18.4 17 25.1 16.5 13.7 33 27.3 49.5 41.1 17.9 15 13.9 32.8 13 56-.9 22.9 12.2 42.9 33.5 51.2 1 .4 2 .6 3.6 1.1-15.7-18.2-10.1-44.1.7-52.3.3 2.2.4 4.3.9 6.4 9.4 44.1 45.4 64.2 85 56.9 16-2.9 30.6-8.9 42.9-19.8 2-1.8 3.7-4.1 5.9-6.5-19.3 4.6-35.8.1-50.9-10.6.7-.3 1.3-.3 1.9-.3 21.3 1.8 40.6-3.4 57-17.4 19.5-16.6 26.6-42.9 17.4-66-8.3-20.1-23.6-32.3-43.8-38.9zM99.4 179.3c-5.3-9.2-13.2-15.6-22.1-21.3 13.7-.5 26.6.2 39.6 3.7-7-12.2-8.5-24.7-5-38.7 5.3 11.9 13.7 20.1 23.6 26.8 19.7 13.2 35.7 19.6 46.7 30.2 3.4 3.3 6.3 7.1 9.6 10.9-.8-2.1-1.4-4.1-2.2-6-5-10.6-13-18.6-22.6-25-1.8-1.2-2.8-2.5-3.4-4.5-3.3-12.5-3-25.1-.7-37.6 1-5.5 2.8-10.9 4.5-16.3.8-2.4 2.3-4.6 4-6.6.6 6.9 0 25.5 19.6 46 10.8 11.3 22.4 21.9 33.9 32.7 9 8.5 18.3 16.7 25.5 26.8 1.1 1.6 2.2 3.3 3.8 4.7-5-13-14.2-24.1-24.2-33.8-9.6-9.3-19.4-18.4-29.2-27.4-3.3-3-4.6-6.7-5.1-10.9-1.2-10.4 0-20.6 4.3-30.2.5-1 1.1-2 1.9-3.3.5 4.2.6 7.9 1.4 11.6 4.8 23.1 20.4 36.3 49.3 63.5 10 9.4 19.3 19.2 25.6 31.6 4.8 9.3 7.3 19 5.7 29.6-.1.6.5 1.7 1.1 2 6.2 2.6 10 6.9 9.7 14.3 7.7-2.6 12.5-8 16.4-14.5 4.2 20.2-9.1 50.3-27.2 58.7.4-4.5 5-23.4-16.5-27.7-6.8-1.3-12.8-1.3-22.9-2.1 4.7-9 10.4-20.6.5-22.4-24.9-4.6-52.8 1.9-57.8 4.6 8.2.4 16.3 1 23.5 3.3-2 6.5-4 12.7-5.8 18.9-1.9 6.5 2.1 14.6 9.3 9.6 1.2-.9 2.3-1.9 3.3-2.7-3.1 17.9-2.9 15.9-2.8 18.3.3 10.2 9.5 7.8 15.7 7.3-2.5 11.8-29.5 27.3-45.4 25.8 7-4.7 12.7-10.3 15.9-17.9-6.5.8-12.9 1.6-19.2 2.4l-.3-.9c4.7-3.4 8-7.8 10.2-13.1 8.7-21.1-3.6-38-25-39.9-9.1-.8-17.8.8-25.9 5.5 6.2-15.6 17.2-26.6 32.6-34.5-15.2-4.3-8.9-2.7-24.6-6.3 14.6-9.3 30.2-13.2 46.5-14.6-5.2-3.2-48.1-3.6-70.2 20.9 7.9 1.4 15.5 2.8 23.2 4.2-23.8 7-44 19.7-62.4 35.6 1.1-4.8 2.7-9.5 3.3-14.3.6-4.5.8-9.2.1-13.6-1.5-9.4-8.9-15.1-19.7-16.3-7.9-.9-15.6.1-23.3 1.3-.9.1-1.7.3-2.9 0 15.8-14.8 36-21.7 53.1-33.5 6-4.5 6.8-8.2 3-14.9zm128.4 26.8c3.3 16 12.6 25.5 23.8 24.3-4.6-11.3-12.1-19.5-23.8-24.3z" ], + dashcube: [ 448, 512, [], "f210", "M326.6 104H110.4c-51.1 0-91.2 43.3-91.2 93.5V427c0 50.5 40.1 85 91.2 85h227.2c51.1 0 91.2-34.5 91.2-85V0L326.6 104zM153.9 416.5c-17.7 0-32.4-15.1-32.4-32.8V240.8c0-17.7 14.7-32.5 32.4-32.5h140.7c17.7 0 32 14.8 32 32.5v123.5l51.1 52.3H153.9z" ], + delicious: [ 448, 512, [], "f1a5", "M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1.5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3 1 1.1 2.1 2.2 3.3 3.3 5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12zM416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192v176z" ], + deploydog: [ 512, 512, [], "f38e", "M382.2 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.6 0-33.2 16.4-33.2 32.6zM188.5 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.7 0-33.2 16.4-33.2 32.6zM448 96c17.5 0 32 14.4 32 32v256c0 17.5-14.4 32-32 32H64c-17.5 0-32-14.4-32-32V128c0-17.5 14.4-32 32-32h384m0-32H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h384c35.2 0 64-28.8 64-64V128c0-35.2-28.8-64-64-64z" ], + deskpro: [ 480, 512, [], "f38f", "M205.9 512l31.1-38.4c12.3-.2 25.6-1.4 36.5-6.6 38.9-18.6 38.4-61.9 38.3-63.8-.1-5-.8-4.4-28.9-37.4H362c-.2 50.1-7.3 68.5-10.2 75.7-9.4 23.7-43.9 62.8-95.2 69.4-8.7 1.1-32.8 1.2-50.7 1.1zm200.4-167.7c38.6 0 58.5-13.6 73.7-30.9l-175.5-.3-17.4 31.3 119.2-.1zm-43.6-223.9v168.3h-73.5l-32.7 55.5H250c-52.3 0-58.1-56.5-58.3-58.9-1.2-13.2-21.3-11.6-20.1 1.8 1.4 15.8 8.8 40 26.4 57.1h-91c-25.5 0-110.8-26.8-107-114V16.9C0 .9 9.7.3 15 .1h82c.2 0 .3.1.5.1 4.3-.4 50.1-2.1 50.1 43.7 0 13.3 20.2 13.4 20.2 0 0-18.2-5.5-32.8-15.8-43.7h84.2c108.7-.4 126.5 79.4 126.5 120.2zm-132.5 56l64 29.3c13.3-45.5-42.2-71.7-64-29.3z" ], + deviantart: [ 320, 512, [], "f1bd", "M320 93.2l-98.2 179.1 7.4 9.5H320v127.7H159.1l-13.5 9.2-43.7 84c-.3 0-8.6 8.6-9.2 9.2H0v-93.2l93.2-179.4-7.4-9.2H0V102.5h156l13.5-9.2 43.7-84c.3 0 8.6-8.6 9.2-9.2H320v93.1z" ], + digg: [ 512, 512, [], "f1a6", "M81.7 172.3H0v174.4h132.7V96h-51v76.3zm0 133.4H50.9v-92.3h30.8v92.3zm297.2-133.4v174.4h81.8v28.5h-81.8V416H512V172.3H378.9zm81.8 133.4h-30.8v-92.3h30.8v92.3zm-235.6 41h82.1v28.5h-82.1V416h133.3V172.3H225.1v174.4zm51.2-133.3h30.8v92.3h-30.8v-92.3zM153.3 96h51.3v51h-51.3V96zm0 76.3h51.3v174.4h-51.3V172.3z" ], + "digital-ocean": [ 512, 512, [], "f391", "M256 504v-96.1c101.8 0 180.8-100.9 141.7-208-14.3-39.6-46.1-71.4-85.8-85.7-107.1-38.8-208.1 39.9-208.1 141.7H8C8 93.7 164.9-32.8 335 20.3c74.2 23.3 133.6 82.4 156.6 156.6C544.8 347.2 418.6 504 256 504zm.3-191.4h-95.6v95.6h95.6v-95.6zm-95.6 95.6H87v73.6h73.7v-73.6zM87 346.6H25.4v61.6H87v-61.6z" ], + discord: [ 448, 512, [], "f392", "M297.216 243.2c0 15.616-11.52 28.416-26.112 28.416-14.336 0-26.112-12.8-26.112-28.416s11.52-28.416 26.112-28.416c14.592 0 26.112 12.8 26.112 28.416zm-119.552-28.416c-14.592 0-26.112 12.8-26.112 28.416s11.776 28.416 26.112 28.416c14.592 0 26.112-12.8 26.112-28.416.256-15.616-11.52-28.416-26.112-28.416zM448 52.736V512c-64.494-56.994-43.868-38.128-118.784-107.776l13.568 47.36H52.48C23.552 451.584 0 428.032 0 398.848V52.736C0 23.552 23.552 0 52.48 0h343.04C424.448 0 448 23.552 448 52.736zm-72.96 242.688c0-82.432-36.864-149.248-36.864-149.248-36.864-27.648-71.936-26.88-71.936-26.88l-3.584 4.096c43.52 13.312 63.744 32.512 63.744 32.512-60.811-33.329-132.244-33.335-191.232-7.424-9.472 4.352-15.104 7.424-15.104 7.424s21.248-20.224 67.328-33.536l-2.56-3.072s-35.072-.768-71.936 26.88c0 0-36.864 66.816-36.864 149.248 0 0 21.504 37.12 78.08 38.912 0 0 9.472-11.52 17.152-21.248-32.512-9.728-44.8-30.208-44.8-30.208 3.766 2.636 9.976 6.053 10.496 6.4 43.21 24.198 104.588 32.126 159.744 8.96 8.96-3.328 18.944-8.192 29.44-15.104 0 0-12.8 20.992-46.336 30.464 7.68 9.728 16.896 20.736 16.896 20.736 56.576-1.792 78.336-38.912 78.336-38.912z" ], + discourse: [ 448, 512, [], "f393", "M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z" ], + dochub: [ 416, 512, [], "f394", "M397.9 160H256V19.6L397.9 160zM304 192v130c0 66.8-36.5 100.1-113.3 100.1H96V84.8h94.7c12 0 23.1.8 33.1 2.5v-84C212.9 1.1 201.4 0 189.2 0H0v512h189.2C329.7 512 400 447.4 400 318.1V192h-96z" ], + docker: [ 640, 512, [], "f395", "M349.9 236.3h-66.1v-59.4h66.1v59.4zm0-204.3h-66.1v60.7h66.1V32zm78.2 144.8H362v59.4h66.1v-59.4zm-156.3-72.1h-66.1v60.1h66.1v-60.1zm78.1 0h-66.1v60.1h66.1v-60.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4.4 67.6.1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1l-13.3-8.9zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm-78.1-72.1h-66.1v60.1h66.1v-60.1z" ], + draft2digital: [ 480, 512, [], "f396", "M369.9 425.4V371l47.1 27.2-47.1 27.2zM82.4 380.6c25.5-27.3 97.7-104.7 150.9-170 35.1-43.1 40.3-82.4 28.4-112.7-7.4-18.8-17.5-30.2-24.3-35.7 45.3 2.1 68 23.4 82.2 38.3 0 0 42.4 48.2 5.8 113.3-37 65.9-110.9 147.5-128.5 166.7H82.4zm51.8-219.2c0 12.4-10 22.4-22.4 22.4-12.4 0-22.4-10-22.4-22.4 0-12.4 10-22.4 22.4-22.4 12.4 0 22.4 10.1 22.4 22.4M336 315.9v64.7h-91.3c30.8-35 81.8-95.9 111.8-149.3 35.2-62.6 16.1-123.4-12.8-153.3-4.4-4.6-62.2-62.9-166-41.2-59.1 12.4-89.4 43.4-104.3 67.3-13.1 20.9-17 39.8-18.2 47.7-5.5 33 19.4 67.1 56.7 67.1 31.7 0 57.3-25.7 57.3-57.4 0-27.1-19.7-52.1-48-56.8 1.8-7.3 17.7-21.1 26.3-24.7 41.1-17.3 78 5.2 83.3 33.5 8.3 44.3-37.1 90.4-69.7 127.6C84.5 328.1 18.3 396.8 0 415.9l336-.1V480l144-81.9-144-82.2z" ], + dribbble: [ 512, 512, [], "f17d", "M256 8C119.252 8 8 119.252 8 256s111.252 248 248 248 248-111.252 248-248S392.748 8 256 8zm163.97 114.366c29.503 36.046 47.369 81.957 47.835 131.955-6.984-1.477-77.018-15.682-147.502-6.818-5.752-14.041-11.181-26.393-18.617-41.614 78.321-31.977 113.818-77.482 118.284-83.523zM396.421 97.87c-3.81 5.427-35.697 48.286-111.021 76.519-34.712-63.776-73.185-116.168-79.04-124.008 67.176-16.193 137.966 1.27 190.061 47.489zm-230.48-33.25c5.585 7.659 43.438 60.116 78.537 122.509-99.087 26.313-186.36 25.934-195.834 25.809C62.38 147.205 106.678 92.573 165.941 64.62zM44.17 256.323c0-2.166.043-4.322.108-6.473 9.268.19 111.92 1.513 217.706-30.146 6.064 11.868 11.857 23.915 17.174 35.949-76.599 21.575-146.194 83.527-180.531 142.306C64.794 360.405 44.17 310.73 44.17 256.323zm81.807 167.113c22.127-45.233 82.178-103.622 167.579-132.756 29.74 77.283 42.039 142.053 45.189 160.638-68.112 29.013-150.015 21.053-212.768-27.882zm248.38 8.489c-2.171-12.886-13.446-74.897-41.152-151.033 66.38-10.626 124.7 6.768 131.947 9.055-9.442 58.941-43.273 109.844-90.795 141.978z" ], + "dribbble-square": [ 448, 512, [], "f397", "M90.2 228.2c8.9-42.4 37.4-77.7 75.7-95.7 3.6 4.9 28 38.8 50.7 79-64 17-120.3 16.8-126.4 16.7zM314.6 154c-33.6-29.8-79.3-41.1-122.6-30.6 3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4zM140.1 364c40.5 31.6 93.3 36.7 137.3 18-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6zm98.8-108.2c-3.4-7.8-7.2-15.5-11.1-23.2C159.6 253 93.4 252.2 87.4 252c0 1.4-.1 2.8-.1 4.2 0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8zm34.9 16.3c17.9 49.1 25.1 89.1 26.5 97.4 30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8zm-20.3-48.4c4.8 9.8 8.3 17.8 12 26.8 45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 176c0-88.2-71.8-160-160-160S64 167.8 64 256s71.8 160 160 160 160-71.8 160-160z" ], + dropbox: [ 528, 512, [], "f16b", "M264.4 116.3l-132 84.3 132 84.3-132 84.3L0 284.1l132.3-84.3L0 116.3 132.3 32l132.1 84.3zM131.6 395.7l132-84.3 132 84.3-132 84.3-132-84.3zm132.8-111.6l132-84.3-132-83.6L395.7 32 528 116.3l-132.3 84.3L528 284.8l-132.3 84.3-131.3-85z" ], + drupal: [ 448, 512, [], "f1a9", "M319.5 114.7c-22.2-14-43.5-19.5-64.7-33.5-13-8.8-31.3-30-46.5-48.3-2.7 29.3-11.5 41.2-22 49.5-21.3 17-34.8 22.2-53.5 32.3C117 123 32 181.5 32 290.5 32 399.7 123.8 480 225.8 480 327.5 480 416 406 416 294c0-112.3-83-171-96.5-179.3zm2.5 325.6c-20.1 20.1-90.1 28.7-116.7 4.2-4.8-4.8.3-12 6.5-12 0 0 17 13.3 51.5 13.3 27 0 46-7.7 54.5-14 6.1-4.6 8.4 4.3 4.2 8.5zm-54.5-52.6c8.7-3.6 29-3.8 36.8 1.3 4.1 2.8 16.1 18.8 6.2 23.7-8.4 4.2-1.2-15.7-26.5-15.7-14.7 0-19.5 5.2-26.7 11-7 6-9.8 8-12.2 4.7-6-8.2 15.9-22.3 22.4-25zM360 405c-15.2-1-45.5-48.8-65-49.5-30.9-.9-104.1 80.7-161.3 42-38.8-26.6-14.6-104.8 51.8-105.2 49.5-.5 83.8 49 108.5 48.5 21.3-.3 61.8-41.8 81.8-41.8 48.7 0 23.3 109.3-15.8 106z" ], + dyalog: [ 416, 512, [], "f399", "M0 32v119.2h64V96h107.2C284.6 96 352 176.2 352 255.9 352 332 293.4 416 171.2 416H0v64h171.2C331.9 480 416 367.3 416 255.9c0-58.7-22.1-113.4-62.3-154.3C308.9 56 245.7 32 171.2 32H0z" ], + earlybirds: [ 480, 512, [], "f39a", "M313.2 47.5c1.2-13 21.3-14 36.6-8.7.9.3 26.2 9.7 19 15.2-27.9-7.4-56.4 18.2-55.6-6.5zm-201 6.9c30.7-8.1 62 20 61.1-7.1-1.3-14.2-23.4-15.3-40.2-9.6-1 .3-28.7 10.5-20.9 16.7zM319.4 160c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-159.7 0c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm318.5 163.2c-9.9 24-40.7 11-63.9-1.2-13.5 69.1-58.1 111.4-126.3 124.2.3.9-2-.1 24 1 33.6 1.4 63.8-3.1 97.4-8-19.8-13.8-11.4-37.1-9.8-38.1 1.4-.9 14.7 1.7 21.6 11.5 8.6-12.5 28.4-14.8 30.2-13.6 1.6 1.1 6.6 20.9-6.9 34.6 4.7-.9 8.2-1.6 9.8-2.1 2.6-.8 17.7 11.3 3.1 13.3-14.3 2.3-22.6 5.1-47.1 10.8-45.9 10.7-85.9 11.8-117.7 12.8l1 11.6c3.8 18.1-23.4 24.3-27.6 6.2.8 17.9-27.1 21.8-28.4-1l-.5 5.3c-.7 18.4-28.4 17.9-28.3-.6-7.5 13.5-28.1 6.8-26.4-8.5l1.2-12.4c-36.7.9-59.7 3.1-61.8 3.1-20.9 0-20.9-31.6 0-31.6 2.4 0 27.7 1.3 63.2 2.8-61.1-15.5-103.7-55-114.9-118.2-25 12.8-57.5 26.8-68.2.8-10.5-25.4 21.5-42.6 66.8-73.4.7-6.6 1.6-13.3 2.7-19.8-14.4-19.6-11.6-36.3-16.1-60.4-16.8 2.4-23.2-9.1-23.6-23.1.3-7.3 2.1-14.9 2.4-15.4 1.1-1.8 10.1-2 12.7-2.6 6-31.7 50.6-33.2 90.9-34.5 19.7-21.8 45.2-41.5 80.9-48.3C203.3 29 215.2 8.5 216.2 8c1.7-.8 21.2 4.3 26.3 23.2 5.2-8.8 18.3-11.4 19.6-10.7 1.1.6 6.4 15-4.9 25.9 40.3 3.5 72.2 24.7 96 50.7 36.1 1.5 71.8 5.9 77.1 34 2.7.6 11.6.8 12.7 2.6.3.5 2.1 8.1 2.4 15.4-.5 13.9-6.8 25.4-23.6 23.1-3.2 17.3-2.7 32.9-8.7 47.7 2.4 11.7 4 23.8 4.8 36.4 37 25.4 70.3 42.5 60.3 66.9zM207.4 159.9c.9-44-37.9-42.2-78.6-40.3-21.7 1-38.9 1.9-45.5 13.9-11.4 20.9 5.9 92.9 23.2 101.2 9.8 4.7 73.4 7.9 86.3-7.1 8.2-9.4 15-49.4 14.6-67.7zm52 58.3c-4.3-12.4-6-30.1-15.3-32.7-2-.5-9-.5-11 0-10 2.8-10.8 22.1-17 37.2 15.4 0 19.3 9.7 23.7 9.7 4.3 0 6.3-11.3 19.6-14.2zm135.7-84.7c-6.6-12.1-24.8-12.9-46.5-13.9-40.2-1.9-78.2-3.8-77.3 40.3-.5 18.3 5 58.3 13.2 67.8 13 14.9 76.6 11.8 86.3 7.1 15.8-7.6 36.5-78.9 24.3-101.3z" ], + ebay: [ 640, 512, [], "f4f4", "M405.2 263.8c-29.1.9-47.2 6.2-47.2 25.3 0 12.4 9.9 25.8 35 25.8 33.7 0 51.6-18.4 51.6-48.4v-3.3c-11.8 0-26.3.1-39.4.6m71.5 39.7c0 9.3.3 18.6 1 26.8h-29.8c-.8-6.9-1.1-13.6-1.1-20.2-16.1 19.8-35.3 25.5-61.9 25.5-39.5 0-60.6-20.9-60.6-45 0-35 28.8-47.3 78.6-48.4 13.7-.3 29-.4 41.7-.4v-3.4c0-23.4-15-33-41-33-19.3 0-33.6 8-35 21.8h-33.7c3.6-34.4 39.7-43.1 71.5-43.1 38.1 0 70.3 13.5 70.3 53.8v65.6zm-349-56.8c-2.3-54.7-87.5-56.6-94.4 0h94.4zm-95 21.4c3.5 58.3 79.2 57.4 91.2 21.6H157c-6.4 34.4-43 46.1-74.4 46.1-57.2 0-82.5-31.5-82.5-74 0-46.8 26.2-77.6 83-77.6 45.3 0 78.4 23.7 78.4 75.4v8.5H32.7zm211 45.7c29.8 0 50.2-21.5 50.2-53.8 0-32.4-20.4-53.8-50.2-53.8-29.6 0-50.2 21.4-50.2 53.8 0 32.3 20.6 53.8 50.2 53.8m-82.2-186h32.1v80.6c15.7-18.7 37.4-24.2 58.7-24.2 35.7 0 75.4 24.1 75.4 76.2 0 43.6-31.5 75.4-76 75.4-23.3 0-45.1-8.3-58.7-24.9 0 6.6-.4 13.2-1.1 19.5h-31.5c.5-10.2 1.1-22.8 1.1-33.1V127.8zM640 189.5l-99.2 194.8h-35.9l28.5-54.1-74.6-140.7h37.5l54.9 109.9L606 189.5h34z" ], + edge: [ 512, 512, [], "f282", "M25.714 228.163c.111-.162.23-.323.342-.485-.021.162-.045.323-.065.485h-.277zm460.572 15.508c0-44.032-7.754-84.465-28.801-122.405C416.498 47.879 343.912 8.001 258.893 8.001 118.962 7.724 40.617 113.214 26.056 227.679c42.429-61.312 117.073-121.376 220.375-124.966 0 0 109.666 0 99.419 104.957H169.997c6.369-37.386 18.554-58.986 34.339-78.926-75.048 34.893-121.85 96.096-120.742 188.315.83 71.448 50.124 144.836 120.743 171.976 83.357 31.847 192.776 7.2 240.132-21.324V363.307c-80.864 56.494-270.871 60.925-272.255-67.572h314.073v-52.064z" ], + elementor: [ 448, 512, [], "f430", "M425.6 32H22.4C10 32 0 42 0 54.4v403.2C0 470 10 480 22.4 480h403.2c12.4 0 22.4-10 22.4-22.4V54.4C448 42 438 32 425.6 32M164.3 355.5h-39.8v-199h39.8v199zm159.3 0H204.1v-39.8h119.5v39.8zm0-79.6H204.1v-39.8h119.5v39.8zm0-79.7H204.1v-39.8h119.5v39.8z" ], + ember: [ 640, 512, [], "f423", "M639.9 254.6c-1.1-10.7-10.7-6.8-10.7-6.8s-15.6 12.1-29.3 10.7c-13.7-1.3-9.4-32-9.4-32s3-28.1-5.1-30.4c-8.1-2.4-18 7.3-18 7.3s-12.4 13.7-18.3 31.2l-1.6.5s1.9-30.6-.3-37.6c-1.6-3.5-16.4-3.2-18.8 3s-14.2 49.2-15 67.2c0 0-23.1 19.6-43.3 22.8s-25-9.4-25-9.4 54.8-15.3 52.9-59.1c-1.9-43.8-44.2-27.6-49-24-4.6 3.5-29.4 18.4-36.6 59.7-.2 1.4-.7 7.5-.7 7.5s-21.2 14.2-33 18c0 0 33-55.6-7.3-80.9-18.3-11-32.8 12.1-32.8 12.1s54.5-60.7 42.5-112c-5.8-24.4-18-27.1-29.2-23.1-17 6.7-23.5 16.7-23.5 16.7s-22 32-27.1 79.5-12.6 105.1-12.6 105.1-10.5 10.2-20.2 10.7-5.4-28.7-5.4-28.7 7.5-44.6 7-52.1-1.1-11.6-9.9-14.2c-8.9-2.7-18.5 8.6-18.5 8.6s-25.5 38.7-27.7 44.6l-1.3 2.4-1.3-1.6s18-52.7.8-53.5c-17.2-.8-28.5 18.8-28.5 18.8s-19.6 32.8-20.4 36.5l-1.3-1.6s8.1-38.2 6.4-47.6c-1.6-9.4-10.5-7.5-10.5-7.5s-11.3-1.3-14.2 5.9-13.7 55.3-15 70.7c0 0-28.2 20.2-46.8 20.4-18.5.3-16.7-11.8-16.7-11.8s68-23.3 49.4-69.2c-8.3-11.8-18-15.5-31.7-15.3-13.7.3-30.3 8.6-41.3 33.3-5.3 11.8-6.8 23-7.8 31.5 0 0-12.3 2.4-18.8-2.9s-10 0-10 0-11.2 14-.1 18.3 28.1 6.1 28.1 6.1c1.6 7.5 6.2 19.5 19.6 29.7 20.2 15.3 58.8-1.3 58.8-1.3l15.9-8.8s.5 14.6 12.1 16.7c11.6 2.1 16.4 1 36.5-47.9 11.8-25 12.6-23.6 12.6-23.6l1.3-.3s-9.1 46.8-5.6 59.7C187.7 319.4 203 318 203 318s8.3 2.4 15-21.2c6.7-23.6 19.6-49.9 19.6-49.9h1.6s-5.6 48.1 3 63.7c8.6 15.6 30.9 5.3 30.9 5.3s15.6-7.8 18-10.2c0 0 18.5 15.8 44.6 12.9 58.3-11.5 79.1-25.9 79.1-25.9s10 24.4 41.1 26.7c35.5 2.7 54.8-18.6 54.8-18.6s-.3 13.5 12.1 18.6c12.4 5.1 20.7-22.8 20.7-22.8l20.7-57.2h1.9s1.1 37.3 21.5 43.2 47-13.7 47-13.7 6.4-3.5 5.3-14.3zm-578 5.3c.8-32 21.8-45.9 29-39 7.3 7 4.6 22-9.1 31.4-13.7 9.5-19.9 7.6-19.9 7.6zm272.8-123.8s19.1-49.7 23.6-25.5-40 96.2-40 96.2c.5-16.2 16.4-70.7 16.4-70.7zm22.8 138.4c-12.6 33-43.3 19.6-43.3 19.6s-3.5-11.8 6.4-44.9 33.3-20.2 33.3-20.2 16.2 12.4 3.6 45.5zm84.6-14.6s-3-10.5 8.1-30.6c11-20.2 19.6-9.1 19.6-9.1s9.4 10.2-1.3 25.5-26.4 14.2-26.4 14.2z" ], + empire: [ 496, 512, [], "f1d1", "M287.6 54.2c-10.8-2.2-22.1-3.3-33.5-3.6V32.4c78.1 2.2 146.1 44 184.6 106.6l-15.8 9.1c-6.1-9.7-12.7-18.8-20.2-27.1l-18 15.5c-26-29.6-61.4-50.7-101.9-58.4l4.8-23.9zM53.4 322.4l23-7.7c-6.4-18.3-10-38.2-10-58.7s3.3-40.4 9.7-58.7l-22.7-7.7c3.6-10.8 8.3-21.3 13.6-31l-15.8-9.1C34 181 24.1 217.5 24.1 256s10 75 27.1 106.6l15.8-9.1c-5.3-10-9.7-20.3-13.6-31.1zM213.1 434c-40.4-8-75.8-29.1-101.9-58.7l-18 15.8c-7.5-8.6-14.4-17.7-20.2-27.4l-16 9.4c38.5 62.3 106.8 104.3 184.9 106.6v-18.3c-11.3-.3-22.7-1.7-33.5-3.6l4.7-23.8zM93.3 120.9l18 15.5c26-29.6 61.4-50.7 101.9-58.4l-4.7-23.8c10.8-2.2 22.1-3.3 33.5-3.6V32.4C163.9 34.6 95.9 76.4 57.4 139l15.8 9.1c6-9.7 12.6-18.9 20.1-27.2zm309.4 270.2l-18-15.8c-26 29.6-61.4 50.7-101.9 58.7l4.7 23.8c-10.8 1.9-22.1 3.3-33.5 3.6v18.3c78.1-2.2 146.4-44.3 184.9-106.6l-16.1-9.4c-5.7 9.7-12.6 18.8-20.1 27.4zM496 256c0 137-111 248-248 248S0 393 0 256 111 8 248 8s248 111 248 248zm-12.2 0c0-130.1-105.7-235.8-235.8-235.8S12.2 125.9 12.2 256 117.9 491.8 248 491.8 483.8 386.1 483.8 256zm-39-106.6l-15.8 9.1c5.3 9.7 10 20.2 13.6 31l-22.7 7.7c6.4 18.3 9.7 38.2 9.7 58.7s-3.6 40.4-10 58.7l23 7.7c-3.9 10.8-8.3 21-13.6 31l15.8 9.1C462 331 471.9 294.5 471.9 256s-9.9-75-27.1-106.6zm-183 177.7c16.3-3.3 30.4-11.6 40.7-23.5l51.2 44.8c11.9-13.6 21.3-29.3 27.1-46.8l-64.2-22.1c2.5-7.5 3.9-15.2 3.9-23.5s-1.4-16.1-3.9-23.5l64.5-22.1c-6.1-17.4-15.5-33.2-27.4-46.8l-51.2 44.8c-10.2-11.9-24.4-20.5-40.7-23.8l13.3-66.4c-8.6-1.9-17.7-2.8-27.1-2.8-9.4 0-18.5.8-27.1 2.8l13.3 66.4c-16.3 3.3-30.4 11.9-40.7 23.8l-51.2-44.8c-11.9 13.6-21.3 29.3-27.4 46.8l64.5 22.1c-2.5 7.5-3.9 15.2-3.9 23.5s1.4 16.1 3.9 23.5l-64.2 22.1c5.8 17.4 15.2 33.2 27.1 46.8l51.2-44.8c10.2 11.9 24.4 20.2 40.7 23.5l-13.3 66.7c8.6 1.7 17.7 2.8 27.1 2.8 9.4 0 18.5-1.1 27.1-2.8l-13.3-66.7z" ], + envira: [ 448, 512, [], "f299", "M0 32c477.6 0 366.6 317.3 367.1 366.3L448 480h-26l-70.4-71.2c-39 4.2-124.4 34.5-214.4-37C47 300.3 52 214.7 0 32zm79.7 46c-49.7-23.5-5.2 9.2-5.2 9.2 45.2 31.2 66 73.7 90.2 119.9 31.5 60.2 79 139.7 144.2 167.7 65 28 34.2 12.5 6-8.5-28.2-21.2-68.2-87-91-130.2-31.7-60-61-118.6-144.2-158.1z" ], + erlang: [ 640, 512, [], "f39d", "M21.7 246.4c-.1 86.8 29 159.5 78.7 212.1H0v-405h87.2c-41.5 50.2-65.6 116.2-65.5 192.9zM640 53.6h-83.6c31.4 42.7 48.7 97.5 46.2 162.7.5 6 .5 11.7 0 24.1H230.2c-.2 109.7 38.9 194.9 138.6 195.3 68.5-.3 118-51 151.9-106.1l96.4 48.2c-17.4 30.9-36.5 57.8-57.9 80.8H640v-405zm-80.8 405s0-.1 0 0h-.2.2zm-3.1-405h.3l-.1-.1-.2.1zm-230.7 9.6c-45.9.1-85.1 33.5-89.2 83.2h169.9c-1.1-49.7-34.5-83.1-80.7-83.2z" ], + ethereum: [ 320, 512, [], "f42e", "M311.9 260.8L160 353.6 8 260.8 160 0l151.9 260.8zM160 383.4L8 290.6 160 512l152-221.4-152 92.8z" ], + etsy: [ 384, 512, [], "f2d7", "M384 348c-1.75 10.75-13.75 110-15.5 132-117.879-4.299-219.895-4.743-368.5 0v-25.5c45.457-8.948 60.627-8.019 61-35.25 1.793-72.322 3.524-244.143 0-322-1.029-28.46-12.13-26.765-61-36v-25.5c73.886 2.358 255.933 8.551 362.999-3.75-3.5 38.25-7.75 126.5-7.75 126.5H332C320.947 115.665 313.241 68 277.25 68h-137c-10.25 0-10.75 3.5-10.75 9.75V241.5c58 .5 88.5-2.5 88.5-2.5 29.77-.951 27.56-8.502 40.75-65.251h25.75c-4.407 101.351-3.91 61.829-1.75 160.25H257c-9.155-40.086-9.065-61.045-39.501-61.5 0 0-21.5-2-88-2v139c0 26 14.25 38.25 44.25 38.25H263c63.636 0 66.564-24.996 98.751-99.75H384z" ], + expeditedssl: [ 496, 512, [], "f23e", "M248 43.4C130.6 43.4 35.4 138.6 35.4 256S130.6 468.6 248 468.6 460.6 373.4 460.6 256 365.4 43.4 248 43.4zm-97.4 132.9c0-53.7 43.7-97.4 97.4-97.4s97.4 43.7 97.4 97.4v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6c0-82.1-124-82.1-124 0v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6zM389.7 380c0 9.7-8 17.7-17.7 17.7H124c-9.7 0-17.7-8-17.7-17.7V238.3c0-9.7 8-17.7 17.7-17.7h248c9.7 0 17.7 8 17.7 17.7V380zm-248-137.3v132.9c0 2.5-1.9 4.4-4.4 4.4h-8.9c-2.5 0-4.4-1.9-4.4-4.4V242.7c0-2.5 1.9-4.4 4.4-4.4h8.9c2.5 0 4.4 1.9 4.4 4.4zm141.7 48.7c0 13-7.2 24.4-17.7 30.4v31.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-31.6c-10.5-6.1-17.7-17.4-17.7-30.4 0-19.7 15.8-35.4 35.4-35.4s35.5 15.8 35.5 35.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 478.3C121 486.3 17.7 383 17.7 256S121 25.7 248 25.7 478.3 129 478.3 256 375 486.3 248 486.3z" ], + facebook: [ 448, 512, [], "f09a", "M448 56.7v398.5c0 13.7-11.1 24.7-24.7 24.7H309.1V306.5h58.2l8.7-67.6h-67v-43.2c0-19.6 5.4-32.9 33.5-32.9h35.8v-60.5c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9h-58.4v67.6h58.4V480H24.7C11.1 480 0 468.9 0 455.3V56.7C0 43.1 11.1 32 24.7 32h398.5c13.7 0 24.8 11.1 24.8 24.7z" ], + "facebook-f": [ 264, 512, [], "f39e", "M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229" ], + "facebook-messenger": [ 448, 512, [], "f39f", "M224 32C15.9 32-77.5 278 84.6 400.6V480l75.7-42c142.2 39.8 285.4-59.9 285.4-198.7C445.8 124.8 346.5 32 224 32zm23.4 278.1L190 250.5 79.6 311.6l121.1-128.5 57.4 59.6 110.4-61.1-121.1 128.5z" ], + "facebook-square": [ 448, 512, [], "f082", "M448 80v352c0 26.5-21.5 48-48 48h-85.3V302.8h60.6l8.7-67.6h-69.3V192c0-19.6 5.4-32.9 33.5-32.9H384V98.7c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9H184v67.6h60.9V480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z" ], + firefox: [ 480, 512, [], "f269", "M478.1 235.3c-.7-4.5-1.4-7.1-1.4-7.1s-1.8 2-4.7 5.9c-.9-10.7-2.8-21.2-5.8-31.6-3.7-12.9-8.5-25.4-14.5-37.4-3.8-8-8.2-15.6-13.3-22.8-1.8-2.7-3.7-5.4-5.6-7.9-8.8-14.4-19-23.3-30.7-40-7.6-12.8-12.9-26.9-15.4-41.6-3.2 8.9-5.7 18-7.4 27.3-12.1-12.2-22.5-20.8-28.9-26.7C319.4 24.2 323 9.1 323 9.1S264.7 74.2 289.9 142c8.7 23 23.8 43.1 43.4 57.9 24.4 20.2 50.8 36 64.7 76.6-11.2-21.3-28.1-39.2-48.8-51.5 6.2 14.7 9.4 30.6 9.3 46.5 0 61-49.6 110.5-110.6 110.4-8.3 0-16.5-.9-24.5-2.8-9.5-1.8-18.7-4.9-27.4-9.3-12.9-7.8-24-18.1-32.8-30.3l-.2-.3 2 .7c4.6 1.6 9.2 2.8 14 3.7 18.7 4 38.3 1.7 55.6-6.6 17.5-9.7 28-16.9 36.6-14h.2c8.4 2.7 15-5.5 9-14-10.4-13.4-27.4-20-44.2-17-17.5 2.5-33.5 15-56.4 2.9-1.5-.8-2.9-1.6-4.3-2.5-1.6-.9 4.9 1.3 3.4.3-5-2.5-9.8-5.4-14.4-8.6-.3-.3 3.5 1.1 3.1.8-5.9-4-11-9.2-15-15.2-4.1-7.4-4.5-16.4-1-24.1 2.1-3.8 5.4-6.9 9.3-8.7 3 1.5 4.8 2.6 4.8 2.6s-1.3-2.5-2.1-3.8c.3-.1.5 0 .8-.2 2.6 1.1 8.3 4 11.4 5.8 2.1 1.1 3.8 2.7 5.2 4.7 0 0 1-.5.3-2.7-1.1-2.7-2.9-5-5.4-6.6h.2c2.3 1.2 4.5 2.6 6.6 4.1 1.9-4.4 2.8-9.2 2.6-14 .2-2.6-.2-5.3-1.1-7.8-.8-1.6.5-2.2 1.9-.5-.2-1.3-.7-2.5-1.2-3.7v-.1s.8-1.1 1.2-1.5c1-1 2.1-1.9 3.4-2.7 7.2-4.5 14.8-8.4 22.7-11.6 6.4-2.8 11.7-4.9 12.8-5.6 1.6-1 3.1-2.2 4.5-3.5 5.3-4.5 9-10.8 10.2-17.7.1-.9.2-1.8.3-2.8v-1.5c-.9-3.5-6.9-6.1-38.4-9.1-11.1-1.8-20-10.1-22.5-21.1v.1c-.4 1.1-.9 2.3-1.3 3.5.4-1.2.8-2.3 1.3-3.5v-.2c6-15.7 16.8-29.1 30.8-38.3.8-.7-3.2.2-2.4-.5 2.7-1.3 5.4-2.5 8.2-3.5 1.4-.6-6-3.4-12.6-2.7-4 .2-8 1.2-11.7 2.8 1.6-1.3 6.2-3.1 5.1-3.1-8.4 1.6-16.5 4.7-23.9 9 0-.8.1-1.5.5-2.2-5.9 2.5-11 6.5-15 11.5.1-.9.2-1.8.2-2.7-2.7 2-5.2 4.3-7.3 6.9l-.1.1c-17.4-6.7-36.3-8.3-54.6-4.7l-.2-.1h.2c-3.8-3.1-7.1-6.7-9.7-10.9l-.2.1-.4-.2c-1.2-1.8-2.4-3.8-3.7-6-.9-1.6-1.8-3.4-2.7-5.2 0-.1-.1-.2-.2-.2-.4 0-.6 1.7-.9 1.3v-.1c-3.2-8.3-4.7-17.2-4.4-26.2l-.2.1c-5.1 3.5-9 8.6-11.1 14.5-.9 2.1-1.6 3.3-2.2 4.5v-.5c.1-1.1.6-3.3.5-3.1-.1.2-.2.3-.3.4-1.5 1.7-2.9 3.7-3.9 5.8-.9 1.9-1.7 3.9-2.3 5.9-.1.3 0-.3 0-1s.1-2 0-1.7l-.3.7c-6.7 14.9-10.9 30.8-12.4 47.1-.4 2.8-.6 5.6-.5 8.3v.2c-4.8 5.2-9 11-12.7 17.1-12.1 20.4-21.1 42.5-26.8 65.6 4-8.8 8.8-17.2 14.3-25.1C5.5 228.5 0 257.4 0 286.6c1.8-8.6 4.2-17 7-25.3-1.7 34.5 4.9 68.9 19.4 100.3 19.4 43.5 51.6 80 92.3 104.7 16.6 11.2 34.7 19.9 53.8 25.8 2.5.9 5.1 1.8 7.7 2.7-.8-.3-1.6-.7-2.4-1 22.6 6.8 46.2 10.3 69.8 10.3 83.7 0 111.3-31.9 113.8-35 4.1-3.7 7.5-8.2 9.9-13.3 1.6-.7 3.2-1.4 4.9-2.1l1-.5 1.9-.9c12.6-5.9 24.5-13.4 35.3-22.1 16.3-11.7 27.9-28.7 32.9-48.1 3-7.1 3.1-15 .4-22.2.9-1.4 1.7-2.8 2.7-4.3 18-28.9 28.2-61.9 29.6-95.9v-2.8c0-7.3-.6-14.5-1.9-21.6z" ], + "first-order": [ 448, 512, [], "f2b0", "M12.9 229.2c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4h-.2zM224 96.6c-7.1 0-14.6.6-21.4 1.7l3.7 67.4-22-64c-14.3 3.7-27.7 9.4-40 16.6l29.4 61.4-45.1-50.9c-11.4 8.9-21.7 19.1-30.6 30.9l50.6 45.4-61.1-29.7c-7.1 12.3-12.9 25.7-16.6 40l64.3 22.6-68-4c-.9 7.1-1.4 14.6-1.4 22s.6 14.6 1.4 21.7l67.7-4-64 22.6c3.7 14.3 9.4 27.7 16.6 40.3l61.1-29.7L97.7 352c8.9 11.7 19.1 22.3 30.9 30.9l44.9-50.9-29.5 61.4c12.3 7.4 25.7 13.1 40 16.9l22.3-64.6-4 68c7.1 1.1 14.6 1.7 21.7 1.7 7.4 0 14.6-.6 21.7-1.7l-4-68.6 22.6 65.1c14.3-4 27.7-9.4 40-16.9L274.9 332l44.9 50.9c11.7-8.9 22-19.1 30.6-30.9l-50.6-45.1 61.1 29.4c7.1-12.3 12.9-25.7 16.6-40.3l-64-22.3 67.4 4c1.1-7.1 1.4-14.3 1.4-21.7s-.3-14.9-1.4-22l-67.7 4 64-22.3c-3.7-14.3-9.1-28-16.6-40.3l-60.9 29.7 50.6-45.4c-8.9-11.7-19.1-22-30.6-30.9l-45.1 50.9 29.4-61.1c-12.3-7.4-25.7-13.1-40-16.9L241.7 166l4-67.7c-7.1-1.2-14.3-1.7-21.7-1.7zM443.4 128v256L224 512 4.6 384V128L224 0l219.4 128zm-17.1 10.3L224 20.9 21.7 138.3v235.1L224 491.1l202.3-117.7V138.3zM224 37.1l187.7 109.4v218.9L224 474.9 36.3 365.4V146.6L224 37.1zm0 50.9c-92.3 0-166.9 75.1-166.9 168 0 92.6 74.6 167.7 166.9 167.7 92 0 166.9-75.1 166.9-167.7 0-92.9-74.9-168-166.9-168z" ], + "first-order-alt": [ 496, 512, [], "f50a", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 488.21C115.34 496.21 7.79 388.66 7.79 256S115.34 15.79 248 15.79 488.21 123.34 488.21 256 380.66 496.21 248 496.21zm0-459.92C126.66 36.29 28.29 134.66 28.29 256S126.66 475.71 248 475.71 467.71 377.34 467.71 256 369.34 36.29 248 36.29zm0 431.22c-116.81 0-211.51-94.69-211.51-211.51S131.19 44.49 248 44.49 459.51 139.19 459.51 256 364.81 467.51 248 467.51zm186.23-162.98a191.613 191.613 0 0 1-20.13 48.69l-74.13-35.88 61.48 54.82a193.515 193.515 0 0 1-37.2 37.29l-54.8-61.57 35.88 74.27a190.944 190.944 0 0 1-48.63 20.23l-27.29-78.47 4.79 82.93c-8.61 1.18-17.4 1.8-26.33 1.8s-17.72-.62-26.33-1.8l4.76-82.46-27.15 78.03a191.365 191.365 0 0 1-48.65-20.2l35.93-74.34-54.87 61.64a193.85 193.85 0 0 1-37.22-37.28l61.59-54.9-74.26 35.93a191.638 191.638 0 0 1-20.14-48.69l77.84-27.11-82.23 4.76c-1.16-8.57-1.78-17.32-1.78-26.21 0-9 .63-17.84 1.82-26.51l82.38 4.77-77.94-27.16a191.726 191.726 0 0 1 20.23-48.67l74.22 35.92-61.52-54.86a193.85 193.85 0 0 1 37.28-37.22l54.76 61.53-35.83-74.17a191.49 191.49 0 0 1 48.65-20.13l26.87 77.25-4.71-81.61c8.61-1.18 17.39-1.8 26.32-1.8s17.71.62 26.32 1.8l-4.74 82.16 27.05-77.76c17.27 4.5 33.6 11.35 48.63 20.17l-35.82 74.12 54.72-61.47a193.13 193.13 0 0 1 37.24 37.23l-61.45 54.77 74.12-35.86a191.515 191.515 0 0 1 20.2 48.65l-77.81 27.1 82.24-4.75c1.19 8.66 1.82 17.5 1.82 26.49 0 8.88-.61 17.63-1.78 26.19l-82.12-4.75 77.72 27.09z" ], + firstdraft: [ 384, 512, [], "f3a1", "M384 192h-64v128H192v128H0v-25.6h166.4v-128h128v-128H384V192zm-25.6 38.4v128h-128v128H64V512h192V384h128V230.4h-25.6zm25.6 192h-89.6V512H320v-64h64v-25.6zM0 0v384h128V256h128V128h128V0H0z" ], + flickr: [ 448, 512, [], "f16e", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5zm159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5z" ], + flipboard: [ 448, 512, [], "f44d", "M0 32v448h448V32H0zm358.4 179.2h-89.6v89.6h-89.6v89.6H89.6V121.6h268.8v89.6z" ], + fly: [ 384, 512, [], "f417", "M197.8 427.8c12.9 11.7 33.7 33.3 33.2 50.7 0 .8-.1 1.6-.1 2.5-1.8 19.8-18.8 31.1-39.1 31-25-.1-39.9-16.8-38.7-35.8 1-16.2 20.5-36.7 32.4-47.6 2.3-2.1 2.7-2.7 5.6-3.6 3.4 0 3.9.3 6.7 2.8zM331.9 67.3c-16.3-25.7-38.6-40.6-63.3-52.1C243.1 4.5 214-.2 192 0c-44.1 0-71.2 13.2-81.1 17.3C57.3 45.2 26.5 87.2 28 158.6c7.1 82.2 97 176 155.8 233.8 1.7 1.6 4.5 4.5 6.2 5.1l3.3.1c2.1-.7 1.8-.5 3.5-2.1 52.3-49.2 140.7-145.8 155.9-215.7 7-39.2 3.1-72.5-20.8-112.5zM186.8 351.9c-28-51.1-65.2-130.7-69.3-189-3.4-47.5 11.4-131.2 69.3-136.7v325.7zM328.7 180c-16.4 56.8-77.3 128-118.9 170.3C237.6 298.4 275 217 277 158.4c1.6-45.9-9.8-105.8-48-131.4 88.8 18.3 115.5 98.1 99.7 153z" ], + "font-awesome": [ 448, 512, [], "f2b4", "M397.8 32H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-45.4 284.3c0 4.2-3.6 6-7.8 7.8-16.7 7.2-34.6 13.7-53.8 13.7-26.9 0-39.4-16.7-71.7-16.7-23.3 0-47.8 8.4-67.5 17.3-1.2.6-2.4.6-3.6 1.2V385c0 1.8 0 3.6-.6 4.8v1.2c-2.4 8.4-10.2 14.3-19.1 14.3-11.3 0-20.3-9-20.3-20.3V166.4c-7.8-6-13.1-15.5-13.1-26.3 0-18.5 14.9-33.5 33.5-33.5 18.5 0 33.5 14.9 33.5 33.5 0 10.8-4.8 20.3-13.1 26.3v18.5c1.8-.6 3.6-1.2 5.4-2.4 18.5-7.8 40.6-14.3 61.5-14.3 22.7 0 40.6 6 60.9 13.7 4.2 1.8 8.4 2.4 13.1 2.4 22.7 0 47.8-16.1 53.8-16.1 4.8 0 9 3.6 9 7.8v140.3z" ], + "font-awesome-alt": [ 448, 512, [], "f35c", "M397.8 67.8c7.8 0 14.3 6.6 14.3 14.3v347.6c0 7.8-6.6 14.3-14.3 14.3H50.2c-7.8 0-14.3-6.6-14.3-14.3V82.2c0-7.8 6.6-14.3 14.3-14.3h347.6m0-35.9H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-58.5 139.2c-6 0-29.9 15.5-52.6 15.5-4.2 0-8.4-.6-12.5-2.4-19.7-7.8-37-13.7-59.1-13.7-20.3 0-41.8 6.6-59.7 13.7-1.8.6-3.6 1.2-4.8 1.8v-17.9c7.8-6 12.5-14.9 12.5-25.7 0-17.9-14.3-32.3-32.3-32.3s-32.3 14.3-32.3 32.3c0 10.2 4.8 19.7 12.5 25.7v212.1c0 10.8 9 19.7 19.7 19.7 9 0 16.1-6 18.5-13.7V385c.6-1.8.6-3 .6-4.8V336c1.2 0 2.4-.6 3-1.2 19.7-8.4 43-16.7 65.7-16.7 31.1 0 43 16.1 69.3 16.1 18.5 0 36.4-6.6 52-13.7 4.2-1.8 7.2-3.6 7.2-7.8V178.3c1.8-4.1-2.3-7.1-7.7-7.1z" ], + "font-awesome-flag": [ 448, 512, [], "f425", "M444.373 359.424c0 7.168-6.144 10.24-13.312 13.312-28.672 12.288-59.392 23.552-92.16 23.552-46.08 0-67.584-28.672-122.88-28.672-39.936 0-81.92 14.336-115.712 29.696-2.048 1.024-4.096 1.024-6.144 2.048v77.824c0 21.405-16.122 34.816-33.792 34.816-19.456 0-34.816-15.36-34.816-34.816V102.4C12.245 92.16 3.029 75.776 3.029 57.344 3.029 25.6 28.629 0 60.373 0s57.344 25.6 57.344 57.344c0 18.432-8.192 34.816-22.528 45.056v31.744c4.124-1.374 58.768-28.672 114.688-28.672 65.27 0 97.676 27.648 126.976 27.648 38.912 0 81.92-27.648 92.16-27.648 8.192 0 15.36 6.144 15.36 13.312v240.64z" ], + "font-awesome-logo-full": [ 3992, 512, [ "Font Awesome" ], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z" ], + fonticons: [ 448, 512, [], "f280", "M0 32v448h448V32H0zm167.4 196h67.4l-11.1 37.3H168v112.9c0 5.8-2 6.7 3.2 7.3l43.5 4.1v25.1H84V389l21.3-2c5.2-.6 6.7-2.3 6.7-7.9V267.7c0-2.3-2.9-2.3-5.8-2.3H84V228h28v-21c0-49.6 26.5-70 77.3-70 34.1 0 64.7 8.2 64.7 52.8l-50.7 6.1c.3-18.7-4.4-23-16.3-23-18.4 0-19 9.9-19 27.4v23.3c0 2.4-3.5 4.4-.6 4.4zM364 414.7H261.3v-25.1l20.4-2.6c5.2-.6 7.6-1.7 7.6-7.3V271.8c0-4.1-2.9-6.7-6.7-7.9l-24.2-6.4 6.7-29.5h80.2v151.7c0 5.8-2.6 6.4 2.9 7.3l15.7 2.6v25.1zm-21.9-255.5l9 33.2-7.3 7.3-31.2-16.6-31.2 16.6-7.3-7.3 9-33.2-21.8-24.2 3.5-9.6h27.7l15.5-28h9.3l15.5 28h27.7l3.5 9.6-21.9 24.2z" ], + "fonticons-fi": [ 384, 512, [], "f3a2", "M114.4 224h92.4l-15.2 51.2h-76.4V433c0 8-2.8 9.2 4.4 10l59.6 5.6V483H0v-35.2l29.2-2.8c7.2-.8 9.2-3.2 9.2-10.8V278.4c0-3.2-4-3.2-8-3.2H0V224h38.4v-28.8c0-68 36.4-96 106-96 46.8 0 88.8 11.2 88.8 72.4l-69.6 8.4c.4-25.6-6-31.6-22.4-31.6-25.2 0-26 13.6-26 37.6v32c0 3.2-4.8 6-.8 6zM384 483H243.2v-34.4l28-3.6c7.2-.8 10.4-2.4 10.4-10V287c0-5.6-4-9.2-9.2-10.8l-33.2-8.8 9.2-40.4h110v208c0 8-3.6 8.8 4 10l21.6 3.6V483zm-30-347.2l12.4 45.6-10 10-42.8-22.8-42.8 22.8-10-10 12.4-45.6-30-36.4 4.8-10h38L307.2 51H320l21.2 38.4h38l4.8 13.2-30 33.2z" ], + "fort-awesome": [ 512, 512, [], "f286", "M489.2 287.9h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6V146.2c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-6-8-4.6-11.7-4.6v-38c8.3-2 17.1-3.4 25.7-3.4 10.9 0 20.9 4.3 31.4 4.3 4.6 0 27.7-1.1 27.7-8v-60c0-2.6-2-4.6-4.6-4.6-5.1 0-15.1 4.3-24 4.3-9.7 0-20.9-4.3-32.6-4.3-8 0-16 1.1-23.7 2.9v-4.9c5.4-2.6 9.1-8.3 9.1-14.3 0-20.7-31.4-20.8-31.4 0 0 6 3.7 11.7 9.1 14.3v111.7c-3.7 0-11.7-1.4-11.7 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32H128v-32c0-2.6-2-4.6-4.6-4.6H96c-2.6 0-4.6 2-4.6 4.6v178.3H54.8v-32c0-2.6-2-4.6-4.6-4.6H22.8c-2.6 0-4.6 2-4.6 4.6V512h182.9v-96c0-72.6 109.7-72.6 109.7 0v96h182.9V292.5c.1-2.6-1.9-4.6-4.5-4.6zm-288.1-4.5c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64zm146.4 0c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64z" ], + "fort-awesome-alt": [ 512, 512, [], "f3a3", "M211.7 241.1v51.7c0 2.1-1.6 3.7-3.7 3.7h-22.2c-2.1 0-3.7-1.6-3.7-3.7v-51.7c0-2.1 1.6-3.7 3.7-3.7H208c2.1 0 3.7 1.6 3.7 3.7zm114.5-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7h22.2c2.1 0 3.7-1.6 3.7-3.7v-51.7c-.1-2.1-1.7-3.7-3.7-3.7zm-29.1 263.2c-.9.1-1.7.3-2.6.4-1 .2-2.1.3-3.1.5-.9.1-1.8.3-2.8.4-1 .1-2 .3-3 .4-1 .1-2 .2-2.9.3-1 .1-1.9.2-2.9.3-1 .1-2.1.2-3.1.3-.9.1-1.8.2-2.7.2-1.1.1-2.3.1-3.4.2-.8 0-1.7.1-2.5.1-1.3.1-2.6.1-3.9.1-.7 0-1.4.1-2.1.1-2 0-4 .1-6 .1s-4 0-6-.1c-.7 0-1.4 0-2.1-.1-1.3 0-2.6-.1-3.9-.1-.8 0-1.7-.1-2.5-.1-1.1-.1-2.3-.1-3.4-.2-.9-.1-1.8-.1-2.7-.2-1-.1-2.1-.2-3.1-.3-1-.1-1.9-.2-2.9-.3-1-.1-2-.2-2.9-.3-1-.1-2-.2-3-.4-.9-.1-1.8-.3-2.8-.4-1-.1-2.1-.3-3.1-.5-.9-.1-1.7-.3-2.6-.4-65.6-10.9-122.5-47.7-160-99.4-.2-.2-.3-.5-.5-.7-.8-1.1-1.6-2.2-2.3-3.3-.3-.4-.6-.8-.8-1.2-.7-1.1-1.4-2.1-2.1-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.4-2.1-2-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.3-2.2-2-3.3-.2-.4-.5-.8-.7-1.2-2.4-4-4.6-8.1-6.8-12.2-.1-.2-.2-.3-.3-.5-.6-1.1-1.1-2.2-1.7-3.3-.3-.6-.6-1.1-.8-1.7-.5-1-1-2.1-1.5-3.1-.3-.7-.6-1.3-.9-2-.5-1-.9-2-1.4-3l-.9-2.1c-.4-1-.9-2-1.3-3-.3-.7-.6-1.5-.9-2.2l-1.2-3c-.3-.8-.6-1.5-.9-2.3-.4-1-.8-2-1.1-3-.3-.9-.6-1.8-1-2.8-.6-1.6-1.1-3.3-1.7-4.9-.3-.9-.6-1.8-.9-2.8-.3-.9-.5-1.8-.8-2.7-.3-.9-.6-1.9-.8-2.8-.3-.9-.5-1.8-.8-2.7-.3-1-.5-1.9-.8-2.9-.2-.9-.5-1.8-.7-2.7-.3-1-.5-2-.7-3-.2-.9-.4-1.7-.6-2.6-.2-1.1-.5-2.2-.7-3.2-.2-.8-.3-1.6-.5-2.4-.3-1.3-.5-2.7-.8-4-.1-.6-.2-1.1-.3-1.7l-.9-5.7c-.1-.6-.2-1.3-.3-1.9-.2-1.3-.4-2.6-.5-3.9-.1-.8-.2-1.5-.3-2.3-.1-1.2-.3-2.4-.4-3.6-.1-.8-.2-1.6-.2-2.4-.1-1.2-.2-2.4-.3-3.5-.1-.8-.1-1.6-.2-2.4-.1-1.2-.2-2.4-.2-3.7 0-.8-.1-1.5-.1-2.3-.1-1.3-.1-2.7-.2-4 0-.7 0-1.3-.1-2 0-2-.1-4-.1-6 0-53.5 16.9-103 45.8-143.6 2.3-3.2 4.7-6.4 7.1-9.5 4.9-6.2 10.1-12.3 15.6-18 2.7-2.9 5.5-5.7 8.4-8.4 2.9-2.7 5.8-5.4 8.8-8 4.5-3.9 9.1-7.6 13.9-11.2 1.6-1.2 3.2-2.4 4.8-3.5C140 34.2 171.7 20.1 206 13c16.1-3.3 32.9-5 50-5s33.8 1.7 50 5c34.3 7 66 21.1 93.6 40.7 1.6 1.2 3.2 2.3 4.8 3.5 4.8 3.6 9.4 7.3 13.9 11.2 12 10.4 23 21.9 32.8 34.4 2.5 3.1 4.8 6.3 7.1 9.5C487.1 153 504 202.5 504 256c0 2 0 4-.1 6 0 .7 0 1.3-.1 2 0 1.3-.1 2.7-.2 4 0 .8-.1 1.5-.1 2.3-.1 1.2-.1 2.4-.2.7-.1.8-.1 1.6-.2 2.4-.1 1.2-.2 2.4-.3 3.5-.1.8-.2 1.6-.2 2.4-.1 1.2-.3 2.4-.4 3.6-.1.8-.2 1.5-.3 2.3-.2 1.3-.4 2.6-.5 3.9-.1.6-.2 1.3-.3 1.9l-.9 5.7c-.1.6-.2 1.1-.3 1.7-.2 1.3-.5 2.7-.8 4-.2.8-.3 1.6-.5 2.4-.2 1.1-.5 2.2-.7 3.2-.2.9-.4 1.7-.6 2.6-.2 1-.5 2-.7 3-.2.9-.5 1.8-.7 2.7-.3 1-.5 1.9-.8 2.9-.2.9-.5 1.8-.8 2.7-.3.9-.6 1.9-.8 2.8-.3.9-.5 1.8-.8 2.7-.3.9-.6 1.8-.9 2.8-.5 1.6-1.1 3.3-1.7 4.9-.3.9-.6 1.8-1 2.8-.4 1-.7 2-1.1 3-.3.8-.6 1.5-.9 2.3l-1.2 3c-.3.7-.6 1.5-.9 2.2-.4 1-.8 2-1.3 3l-.9 2.1c-.4 1-.9 2-1.4 3-.3.7-.6 1.3-.9 2-.5 1-1 2.1-1.5 3.1-.3.6-.6 1.1-.8 1.7-.6 1.1-1.1 2.2-1.7 3.3-.1.2-.2.3-.3.5-2.2 4.1-4.4 8.2-6.8 12.2-.2.4-.5.8-.7 1.2-.7 1.1-1.3 2.2-2 3.3-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2 3.2-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2.1 3.2-.3.4-.6.8-.8 1.2-.8 1.1-1.5 2.2-2.3 3.3-.2.2-.3.5-.5.7-37.6 54.7-94.5 91.4-160.1 102.4zm117.3-86.2c13-13 24.2-27.4 33.6-42.9v-71.3c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7V326h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-4.8-6.5-3.7-9.5-3.7v-30.7c6.7-1.6 13.8-2.8 20.8-2.8 8.8 0 16.8 3.5 25.4 3.5 3.7 0 22.4-.9 22.4-6.5V93.4c0-2.1-1.6-3.7-3.7-3.7-4.2 0-12.2 3.5-19.4 3.5-7.9 0-16.9-3.5-26.3-3.5-6.5 0-12.9.9-19.2 2.3v-3.9c4.4-2.1 7.4-6.7 7.4-11.5 0-16.8-25.4-16.8-25.4 0 0 4.8 3 9.5 7.4 11.5v90.2c-3 0-9.5-1.1-9.5 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v144H93.5v-25.8c0-2.1-1.6-3.7-3.7-3.7H67.7c-2.1 0-3.7 1.6-3.7 3.7v71.3c9.4 15.5 20.6 29.9 33.6 42.9 20.6 20.6 44.5 36.7 71.2 48 13.9 5.9 28.2 10.3 42.9 13.2v-75.8c0-58.6 88.6-58.6 88.6 0v75.8c14.7-2.9 29-7.4 42.9-13.2 26.7-11.3 50.6-27.4 71.2-48" ], + forumbee: [ 448, 512, [], "f211", "M5.8 309.7C2 292.7 0 275.5 0 258.3 0 135 99.8 35 223.1 35c16.6 0 33.3 2 49.3 5.5C149 87.5 51.9 186 5.8 309.7zm392.9-189.2C385 103 369 87.8 350.9 75.2c-149.6 44.3-266.3 162.1-309.7 312 12.5 18.1 28 35.6 45.2 49 43.1-151.3 161.2-271.7 312.3-315.7zm15.8 252.7c15.2-25.1 25.4-53.7 29.5-82.8-79.4 42.9-145 110.6-187.6 190.3 30-4.4 58.9-15.3 84.6-31.3 35 13.1 70.9 24.3 107 33.6-9.3-36.5-20.4-74.5-33.5-109.8zm29.7-145.5c-2.6-19.5-7.9-38.7-15.8-56.8C290.5 216.7 182 327.5 137.1 466c18.1 7.6 37 12.5 56.6 15.2C240 367.1 330.5 274.4 444.2 227.7z" ], + foursquare: [ 368, 512, [], "f180", "M323.1 3H49.9C12.4 3 0 31.3 0 49.1v433.8c0 20.3 12.1 27.7 18.2 30.1 6.2 2.5 22.8 4.6 32.9-7.1C180 356.5 182.2 354 182.2 354c3.1-3.4 3.4-3.1 6.8-3.1h83.4c35.1 0 40.6-25.2 44.3-39.7l48.6-243C373.8 25.8 363.1 3 323.1 3zm-16.3 73.8l-11.4 59.7c-1.2 6.5-9.5 13.2-16.9 13.2H172.1c-12 0-20.6 8.3-20.6 20.3v13c0 12 8.6 20.6 20.6 20.6h90.4c8.3 0 16.6 9.2 14.8 18.2-1.8 8.9-10.5 53.8-11.4 58.8-.9 4.9-6.8 13.5-16.9 13.5h-73.5c-13.5 0-17.2 1.8-26.5 12.6 0 0-8.9 11.4-89.5 108.3-.9.9-1.8.6-1.8-.3V75.9c0-7.7 6.8-16.6 16.6-16.6h219c8.2 0 15.6 7.7 13.5 17.5z" ], + "free-code-camp": [ 576, 512, [], "f2c5", "M69.3 144.5c-41 68.5-36.4 163 1 227C92.5 409.7 120 423.9 120 438c0 6.8-6 13-12.8 13C87.7 451 8 375.5 8 253.2c0-111.5 78-186 97.1-186 6 0 14.9 4.8 14.9 11.1 0 12.7-28.3 28.6-50.7 66.2zm195.8 213.8c4.5 1.8 12.3 5.2 12.3-1.2 0-2.7-2.2-2.9-4.3-3.6-8.5-3.4-14-7.7-19.1-15.2-8.2-12.1-10.1-24.2-10.1-38.6 0-32.1 44.2-37.9 44.2-70 0-12.3-7.7-15.9-7.7-19.3 0-2.2.7-2.2 2.9-2.2 8 0 19.1 13.3 22.5 19.8 2.2 4.6 2.4 6 2.4 11.1 0 7-.7 14.2-.7 21.3 0 27 31.9 19.8 31.9 6.8 0-6-3.6-11.6-3.6-17.4 0-.7 0-1.2.7-1.2 3.4 0 9.4 7.7 11.1 10.1 5.8 8.9 8.5 20.8 8.5 31.4 0 32.4-29.5 49-29.5 56 0 1 2.9 7.7 12.1 1.9 29.7-15.1 53.1-47.6 53.1-89.8 0-33.6-8.7-57.7-32.1-82.6-3.9-4.1-16.4-16.9-22.5-16.9-8.2 0 7.2 18.6 7.2 31.2 0 7.2-4.8 12.3-12.3 12.3-11.6 0-14.5-25.4-15.9-33.3-5.8-33.8-12.8-58.2-46.4-74.1-10.4-5-36.5-11.8-36.5-2.2 0 2.4 2.7 4.1 4.6 5.1 9.2 5.6 19.6 21.4 19.6 38.2 0 46.1-57.7 88.2-57.7 136.2-.2 40.3 28.1 72.6 65.3 86.2zM470.4 67c-6 0-14.4 6.5-14.4 12.6 0 8.7 12.1 19.6 17.6 25.4 81.6 85.1 78.6 214.3 17.6 291-7 8.9-35.3 35.3-35.3 43.5 0 5.1 8.2 11.4 13.2 11.4 25.4 0 98.8-80.8 98.8-185.7C568 145.9 491.8 67 470.4 67zm-42.3 323.1H167c-9.4 0-15.5 7.5-15.5 16.4 0 8.5 7 15.5 15.5 15.5h261.1c9.4 0 11.9-7.5 11.9-16.4 0-8.5-3.5-15.5-11.9-15.5z" ], + freebsd: [ 448, 512, [], "f3a4", "M303.7 96.2c11.1-11.1 115.5-77 139.2-53.2 23.7 23.7-42.1 128.1-53.2 139.2-11.1 11.1-39.4.9-63.1-22.9-23.8-23.7-34.1-52-22.9-63.1zM109.9 68.1C73.6 47.5 22 24.6 5.6 41.1c-16.6 16.6 7.1 69.4 27.9 105.7 18.5-32.2 44.8-59.3 76.4-78.7zM406.7 174c3.3 11.3 2.7 20.7-2.7 26.1-20.3 20.3-87.5-27-109.3-70.1-18-32.3-11.1-53.4 14.9-48.7 5.7-3.6 12.3-7.6 19.6-11.6-29.8-15.5-63.6-24.3-99.5-24.3-119.1 0-215.6 96.5-215.6 215.6 0 119 96.5 215.6 215.6 215.6S445.3 380.1 445.3 261c0-38.4-10.1-74.5-27.7-105.8-3.9 7-7.6 13.3-10.9 18.8z" ], + fulcrum: [ 269, 512, [], "f50b", "M70.75 164.14l-35.38 43.55L0 164.14l35.38-43.55 35.37 43.55zM119.23 0L98.69 198.18 47.72 256l50.98 57.82L119.23 512V300.89L78.15 256l41.08-44.89V0zm79.67 164.14l35.38 43.55 35.38-43.55-35.38-43.55-35.38 43.55zm-48.48 46.97L191.5 256l-41.08 44.89V512l20.54-198.18L221.94 256l-50.98-57.82L150.42 0v211.11z" ], + "galactic-republic": [ 496, 512, [], "f50c", "M248 504C111.25 504 0 392.75 0 256S111.25 8 248 8s248 111.25 248 248-111.25 248-248 248zm0-479.47C120.37 24.53 16.53 128.37 16.53 256S120.37 487.47 248 487.47 479.47 383.63 479.47 256 375.63 24.53 248 24.53zm27.62 21.81v24.62a185.933 185.933 0 0 1 83.57 34.54l17.39-17.36c-28.75-22.06-63.3-36.89-100.96-41.8zm-55.37.07c-37.64 4.94-72.16 19.8-100.88 41.85l17.28 17.36h.08c24.07-17.84 52.55-30.06 83.52-34.67V46.41zm12.25 50.17v82.87c-10.04 2.03-19.42 5.94-27.67 11.42l-58.62-58.59-21.93 21.93 58.67 58.67c-5.47 8.23-9.45 17.59-11.47 27.62h-82.9v31h82.9c2.02 10.02 6.01 19.31 11.47 27.54l-58.67 58.69 21.93 21.93 58.62-58.62a77.873 77.873 0 0 0 27.67 11.47v82.9h31v-82.9c10.05-2.03 19.37-6.06 27.62-11.55l58.67 58.69 21.93-21.93-58.67-58.69c5.46-8.23 9.47-17.52 11.5-27.54h82.87v-31h-82.87c-2.02-10.02-6.03-19.38-11.5-27.62l58.67-58.67-21.93-21.93-58.67 58.67c-8.25-5.49-17.57-9.47-27.62-11.5V96.58h-31zm183.24 30.72l-17.36 17.36a186.337 186.337 0 0 1 34.67 83.67h24.62c-4.95-37.69-19.83-72.29-41.93-101.03zm-335.55.13c-22.06 28.72-36.91 63.26-41.85 100.91h24.65c4.6-30.96 16.76-59.45 34.59-83.52l-17.39-17.39zM38.34 283.67c4.92 37.64 19.75 72.18 41.8 100.9l17.36-17.39c-17.81-24.07-29.92-52.57-34.51-83.52H38.34zm394.7 0c-4.61 30.99-16.8 59.5-34.67 83.6l17.36 17.36c22.08-28.74 36.98-63.29 41.93-100.96h-24.62zM136.66 406.38l-17.36 17.36c28.73 22.09 63.3 36.98 100.96 41.93v-24.64c-30.99-4.63-59.53-16.79-83.6-34.65zm222.53.05c-24.09 17.84-52.58 30.08-83.57 34.67v24.57c37.67-4.92 72.21-19.79 100.96-41.85l-17.31-17.39h-.08z" ], + "galactic-senate": [ 512, 512, [], "f50d", "M249.86 33.48v26.07C236.28 80.17 226 168.14 225.39 274.9c11.74-15.62 19.13-33.33 19.13-48.24v-16.88c-.03-5.32.75-10.53 2.19-15.65.65-2.14 1.39-4.08 2.62-5.82 1.23-1.75 3.43-3.79 6.68-3.79 3.24 0 5.45 2.05 6.68 3.79 1.23 1.75 1.97 3.68 2.62 5.82 1.44 5.12 2.22 10.33 2.19 15.65v16.88c0 14.91 7.39 32.62 19.13 48.24-.63-106.76-10.91-194.73-24.49-215.35V33.48h-12.28zm-26.34 147.77c-9.52 2.15-18.7 5.19-27.46 9.08 8.9 16.12 9.76 32.64 1.71 37.29-8 4.62-21.85-4.23-31.36-19.82-11.58 8.79-21.88 19.32-30.56 31.09 14.73 9.62 22.89 22.92 18.32 30.66-4.54 7.7-20.03 7.14-35.47-.96-5.78 13.25-9.75 27.51-11.65 42.42 9.68.18 18.67 2.38 26.18 6.04 17.78-.3 32.77-1.96 40.49-4.22 5.55-26.35 23.02-48.23 46.32-59.51.73-25.55 1.88-49.67 3.48-72.07zm64.96 0c1.59 22.4 2.75 46.52 3.47 72.07 23.29 11.28 40.77 33.16 46.32 59.51 7.72 2.26 22.71 3.92 40.49 4.22 7.51-3.66 16.5-5.85 26.18-6.04-1.9-14.91-5.86-29.17-11.65-42.42-15.44 8.1-30.93 8.66-35.47.96-4.57-7.74 3.6-21.05 18.32-30.66-8.68-11.77-18.98-22.3-30.56-31.09-9.51 15.59-23.36 24.44-31.36 19.82-8.05-4.65-7.19-21.16 1.71-37.29a147.49 147.49 0 0 0-27.45-9.08zm-32.48 8.6c-3.23 0-5.86 8.81-6.09 19.93h-.05v16.88c0 41.42-49.01 95.04-93.49 95.04-52 0-122.75-1.45-156.37 29.17v2.51c9.42 17.12 20.58 33.17 33.18 47.97C45.7 380.26 84.77 360.4 141.2 360c45.68 1.02 79.03 20.33 90.76 40.87.01.01-.01.04 0 .05 7.67 2.14 15.85 3.23 24.04 3.21 8.19.02 16.37-1.07 24.04-3.21.01-.01-.01-.04 0-.05 11.74-20.54 45.08-39.85 90.76-40.87 56.43.39 95.49 20.26 108.02 41.35 12.6-14.8 23.76-30.86 33.18-47.97v-2.51c-33.61-30.62-104.37-29.17-156.37-29.17-44.48 0-93.49-53.62-93.49-95.04v-16.88h-.05c-.23-11.12-2.86-19.93-6.09-19.93zm0 96.59c22.42 0 40.6 18.18 40.6 40.6s-18.18 40.65-40.6 40.65-40.6-18.23-40.6-40.65c0-22.42 18.18-40.6 40.6-40.6zm0 7.64c-18.19 0-32.96 14.77-32.96 32.96S237.81 360 256 360s32.96-14.77 32.96-32.96-14.77-32.96-32.96-32.96zm0 6.14c14.81 0 26.82 12.01 26.82 26.82s-12.01 26.82-26.82 26.82-26.82-12.01-26.82-26.82 12.01-26.82 26.82-26.82zm-114.8 66.67c-10.19.07-21.6.36-30.5 1.66.43 4.42 1.51 18.63 7.11 29.76 9.11-2.56 18.36-3.9 27.62-3.9 41.28.94 71.48 34.35 78.26 74.47l.11 4.7c10.4 1.91 21.19 2.94 32.21 2.94 11.03 0 21.81-1.02 32.21-2.94l.11-4.7c6.78-40.12 36.98-73.53 78.26-74.47 9.26 0 18.51 1.34 27.62 3.9 5.6-11.13 6.68-25.34 7.11-29.76-8.9-1.3-20.32-1.58-30.5-1.66-18.76.42-35.19 4.17-48.61 9.67-12.54 16.03-29.16 30.03-49.58 33.07-.09.02-.17.04-.27.05-.05.01-.11.04-.16.05-5.24 1.07-10.63 1.6-16.19 1.6-5.55 0-10.95-.53-16.19-1.6-.05-.01-.11-.04-.16-.05-.1-.02-.17-.04-.27-.05-20.42-3.03-37.03-17.04-49.58-33.07-13.42-5.49-29.86-9.25-48.61-9.67z" ], + "get-pocket": [ 448, 512, [], "f265", "M407.6 64h-367C18.5 64 0 82.5 0 104.6v135.2C0 364.5 99.7 464 224.2 464c124 0 223.8-99.5 223.8-224.2V104.6c0-22.4-17.7-40.6-40.4-40.6zm-162 268.5c-12.4 11.8-31.4 11.1-42.4 0C89.5 223.6 88.3 227.4 88.3 209.3c0-16.9 13.8-30.7 30.7-30.7 17 0 16.1 3.8 105.2 89.3 90.6-86.9 88.6-89.3 105.5-89.3 16.9 0 30.7 13.8 30.7 30.7 0 17.8-2.9 15.7-114.8 123.2z" ], + gg: [ 512, 512, [], "f260", "M179.2 230.4l102.4 102.4-102.4 102.4L0 256 179.2 76.8l44.8 44.8-25.6 25.6-19.2-19.2-128 128 128 128 51.5-51.5-77.1-76.5 25.6-25.6zM332.8 76.8L230.4 179.2l102.4 102.4 25.6-25.6-77.1-76.5 51.5-51.5 128 128-128 128-19.2-19.2-25.6 25.6 44.8 44.8L512 256 332.8 76.8z" ], + "gg-circle": [ 512, 512, [], "f261", "M257 8C120 8 9 119 9 256s111 248 248 248 248-111 248-248S394 8 257 8zm-49.5 374.8L81.8 257.1l125.7-125.7 35.2 35.4-24.2 24.2-11.1-11.1-77.2 77.2 77.2 77.2 26.6-26.6-53.1-52.9 24.4-24.4 77.2 77.2-75 75.2zm99-2.2l-35.2-35.2 24.1-24.4 11.1 11.1 77.2-77.2-77.2-77.2-26.5 26.5 53.1 52.9-24.4 24.4-77.2-77.2 75-75L432.2 255 306.5 380.6z" ], + git: [ 448, 512, [], "f1d3", "M18.8 221.7c0 25.3 16.2 60 41.5 68.5v1c-18.8 8.3-24 50.6 1 65.8v1C34 367 16 384.3 16 414.2c0 51.5 48.8 65.8 91.5 65.8 52 0 90.7-18.7 90.7-76 0-70.5-101-44.5-101-82.8 0-13.5 7.2-18.7 19.7-21.3 41.5-7.7 67.5-40 67.5-82.2 0-7.3-1.5-14.2-4-21 6.7-1.5 13.2-3.3 19.7-5.5v-50.5c-17.2 6.8-35.7 11.8-54.5 11.8-53.8-31-126.8 1.3-126.8 69.2zm87.7 163.8c17 0 41.2 3 41.2 25 0 21.8-19.5 26.3-37.7 26.3-17.3 0-43.3-2.7-43.3-25.2.1-22.3 22.1-26.1 39.8-26.1zM103.3 256c-22 0-31.3-13-31.3-33.8 0-49.3 61-48.8 61-.5 0 20.3-8 34.3-29.7 34.3zM432 305.5v49c-13.3 7.3-30.5 9.8-45.5 9.8-53.5 0-59.8-42.2-59.8-85.7v-87.7h.5v-1c-7 0-7.3-1.6-24 1v-47.5h24c0-22.3.3-31-1.5-41.2h56.7c-2 13.8-1.5 27.5-1.5 41.2h51v47.5s-19.3-1-51-1V281c0 14.8 3.3 32.8 21.8 32.8 9.8 0 21.3-2.8 29.3-8.3zM286 68.7c0 18.7-14.5 36.2-33.8 36.2-19.8 0-34.5-17.2-34.5-36.2 0-19.3 14.5-36.7 34.5-36.7C272 32 286 50 286 68.7zm-6.2 74.5c-1.8 14.6-1.6 199.8 0 217.8h-55.5c1.6-18.1 1.8-203 0-217.8h55.5z" ], + "git-square": [ 448, 512, [], "f1d2", "M140.1 348.5c12.1 0 29.5 2.1 29.5 17.9 0 15.5-13.9 18.8-27 18.8-12.3 0-30.9-2-30.9-18s15.7-18.7 28.4-18.7zm-24.7-116.6c0 14.8 6.6 24.1 22.3 24.1 15.5 0 21.2-10 21.2-24.5.1-34.4-43.5-34.8-43.5.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-241 93.7c-12.3 4.8-25.5 8.4-38.9 8.4-38.5-22.1-90.7.9-90.7 49.5 0 18 11.6 42.9 29.6 48.9v.7c-13.4 5.9-17.1 36.1.7 47v.7c-19.5 6.4-32.3 18.8-32.3 40.2 0 36.8 34.8 47 65.4 47 37.1 0 64.8-13.4 64.8-54.3 0-50.4-72.1-31.8-72.1-59.1 0-9.6 5.2-13.4 14.1-15.2 29.6-5.5 48.2-28.6 48.2-58.7 0-5.2-1.1-10.2-2.9-15 4.8-1.1 9.5-2.3 14.1-3.9v-36.2zm56.8 1.8h-39.6c1.3 10.6 1.1 142.6 0 155.5h39.6c-1.1-12.8-1.2-145.1 0-155.5zm4.5-53.3c0-13.4-10-26.2-24.1-26.2-14.3 0-24.6 12.5-24.6 26.2 0 13.6 10.5 25.9 24.6 25.9 13.7 0 24.1-12.5 24.1-25.9zm104.3 53.3h-36.4c0-9.8-.4-19.6 1.1-29.5h-40.5c1.3 7.3 1.1 13.6 1.1 29.5h-17.1v33.9c11.9-1.9 12.1-.7 17.1-.7v.7h-.4v62.7c0 31.1 4.5 61.2 42.7 61.2 10.7 0 23-1.8 32.5-7v-35c-5.7 3.9-13.9 5.9-20.9 5.9-13.2 0-15.5-12.9-15.5-23.4v-65.2c22.7 0 36.4.7 36.4.7v-33.8z" ], + github: [ 496, 512, [], "f09b", "M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z" ], + "github-alt": [ 480, 512, [], "f113", "M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1zM480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2zm-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3zm-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1z" ], + "github-square": [ 448, 512, [], "f092", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z" ], + gitkraken: [ 592, 512, [], "f3a6", "M565.7 118.1c-2.3-6.1-9.3-9.2-15.3-6.6-5.7 2.4-8.5 8.9-6.3 14.6 10.9 29 16.9 60.5 16.9 93.3 0 134.6-100.3 245.7-230.2 262.7V358.4c7.9-1.5 15.5-3.6 23-6.2v104c106.7-25.9 185.9-122.1 185.9-236.8 0-91.8-50.8-171.8-125.8-213.3-5.7-3.2-13-.9-15.9 5-2.7 5.5-.6 12.2 4.7 15.1 67.9 37.6 113.9 110 113.9 193.2 0 93.3-57.9 173.1-139.8 205.4v-92.2c14.2-4.5 24.9-17.7 24.9-33.5 0-13.1-6.8-24.4-17.3-30.5 8.3-79.5 44.5-58.6 44.5-83.9V170c0-38-87.9-161.8-129-164.7-2.5-.2-5-.2-7.6 0C251.1 8.3 163.2 132 163.2 170v14.8c0 25.3 36.3 4.3 44.5 83.9-10.6 6.1-17.3 17.4-17.3 30.5 0 15.8 10.6 29 24.8 33.5v92.2c-81.9-32.2-139.8-112-139.8-205.4 0-83.1 46-155.5 113.9-193.2 5.4-3 7.4-9.6 4.7-15.1-2.9-5.9-10.1-8.2-15.9-5-75 41.5-125.8 121.5-125.8 213.3 0 114.7 79.2 210.8 185.9 236.8v-104c7.6 2.5 15.1 4.6 23 6.2v123.7C131.4 465.2 31 354.1 31 219.5c0-32.8 6-64.3 16.9-93.3 2.2-5.8-.6-12.2-6.3-14.6-6-2.6-13 .4-15.3 6.6C14.5 149.7 8 183.8 8 219.5c0 155.1 122.6 281.6 276.3 287.8V361.4c6.8.4 15 .5 23.4 0v145.8C461.4 501.1 584 374.6 584 219.5c0-35.7-6.5-69.8-18.3-101.4zM365.9 275.5c13 0 23.7 10.5 23.7 23.7 0 13.1-10.6 23.7-23.7 23.7-13 0-23.7-10.5-23.7-23.7 0-13.1 10.6-23.7 23.7-23.7zm-139.8 47.3c-13.2 0-23.7-10.7-23.7-23.7s10.5-23.7 23.7-23.7c13.1 0 23.7 10.6 23.7 23.7 0 13-10.5 23.7-23.7 23.7z" ], + gitlab: [ 512, 512, [], "f296", "M29.782 199.732L256 493.714 8.074 309.699c-6.856-5.142-9.712-13.996-7.141-21.993l28.849-87.974zm75.405-174.806c-3.142-8.854-15.709-8.854-18.851 0L29.782 199.732h131.961L105.187 24.926zm56.556 174.806L256 493.714l94.257-293.982H161.743zm349.324 87.974l-28.849-87.974L256 493.714l247.926-184.015c6.855-5.142 9.711-13.996 7.141-21.993zm-85.404-262.78c-3.142-8.854-15.709-8.854-18.851 0l-56.555 174.806h131.961L425.663 24.926z" ], + gitter: [ 384, 512, [], "f426", "M66.4 322.5H16V0h50.4v322.5zM166.9 76.1h-50.4V512h50.4V76.1zm100.6 0h-50.4V512h50.4V76.1zM368 76h-50.4v247H368V76z" ], + glide: [ 448, 512, [], "f2a5", "M252.8 148.6c0 8.8-1.6 17.7-3.4 26.4-5.8 27.8-11.6 55.8-17.3 83.6-1.4 6.3-8.3 4.9-13.7 4.9-23.8 0-30.5-26-30.5-45.5 0-29.3 11.2-68.1 38.5-83.1 4.3-2.5 9.2-4.2 14.1-4.2 11.4 0 12.3 8.3 12.3 17.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 187c0-5.1-20.8-37.7-25.5-39.5-2.2-.9-7.2-2.3-9.6-2.3-23.1 0-38.7 10.5-58.2 21.5l-.5-.5c4.3-29.4 14.6-57.2 14.6-87.4 0-44.6-23.8-62.7-67.5-62.7-71.7 0-108 70.8-108 123.5 0 54.7 32 85 86.3 85 7.5 0 6.9-.6 6.9 2.3-10.5 80.3-56.5 82.9-56.5 58.9 0-24.4 28-36.5 28.3-38-.2-7.6-29.3-17.2-36.7-17.2-21.1 0-32.7 33-32.7 50.6 0 32.3 20.4 54.7 53.3 54.7 48.2 0 83.4-49.7 94.3-91.7 9.4-37.7 7-39.4 12.3-42.1 20-10.1 35.8-16.8 58.4-16.8 11.1 0 19 2.3 36.7 5.2 1.8.1 4.1-1.7 4.1-3.5z" ], + "glide-g": [ 448, 512, [], "f2a6", "M407.1 211.2c-3.5-1.4-11.6-3.8-15.4-3.8-37.1 0-62.2 16.8-93.5 34.5l-.9-.9c7-47.3 23.5-91.9 23.5-140.4C320.8 29.1 282.6 0 212.4 0 97.3 0 39 113.7 39 198.4 39 286.3 90.3 335 177.6 335c12 0 11-1 11 3.8-16.9 128.9-90.8 133.1-90.8 94.6 0-39.2 45-58.6 45.5-61-.3-12.2-47-27.6-58.9-27.6-33.9.1-52.4 51.2-52.4 79.3C32 476 64.8 512 117.5 512c77.4 0 134-77.8 151.4-145.4 15.1-60.5 11.2-63.3 19.7-67.6 32.2-16.2 57.5-27 93.8-27 17.8 0 30.5 3.7 58.9 8.4 2.9 0 6.7-2.9 6.7-5.8 0-8-33.4-60.5-40.9-63.4zm-175.3-84.4c-9.3 44.7-18.6 89.6-27.8 134.3-2.3 10.2-13.3 7.8-22 7.8-38.3 0-49-41.8-49-73.1 0-47 18-109.3 61.8-133.4 7-4.1 14.8-6.7 22.6-6.7 18.6 0 20 13.3 20 28.7-.1 14.3-2.7 28.5-5.6 42.4z" ], + gofore: [ 400, 512, [], "f3a7", "M324 319.8h-13.2v34.7c-24.5 23.1-56.3 35.8-89.9 35.8-73.2 0-132.4-60.2-132.4-134.4 0-74.1 59.2-134.4 132.4-134.4 35.3 0 68.6 14 93.6 39.4l62.3-63.3C335 55.3 279.7 32 220.7 32 98 32 0 132.6 0 256c0 122.5 97 224 220.7 224 63.2 0 124.5-26.2 171-82.5-2-27.6-13.4-77.7-67.7-77.7zm-12.1-112.5H205.6v89H324c33.5 0 60.5 15.1 76 41.8v-30.6c0-65.2-40.4-100.2-88.1-100.2z" ], + goodreads: [ 448, 512, [], "f3a8", "M299.9 191.2c5.1 37.3-4.7 79-35.9 100.7-22.3 15.5-52.8 14.1-70.8 5.7-37.1-17.3-49.5-58.6-46.8-97.2 4.3-60.9 40.9-87.9 75.3-87.5 46.9-.2 71.8 31.8 78.2 78.3zM448 88v336c0 30.9-25.1 56-56 56H56c-30.9 0-56-25.1-56-56V88c0-30.9 25.1-56 56-56h336c30.9 0 56 25.1 56 56zM330 313.2s-.1-34-.1-217.3h-29v40.3c-.8.3-1.2-.5-1.6-1.2-9.6-20.7-35.9-46.3-76-46-51.9.4-87.2 31.2-100.6 77.8-4.3 14.9-5.8 30.1-5.5 45.6 1.7 77.9 45.1 117.8 112.4 115.2 28.9-1.1 54.5-17 69-45.2.5-1 1.1-1.9 1.7-2.9.2.1.4.1.6.2.3 3.8.2 30.7.1 34.5-.2 14.8-2 29.5-7.2 43.5-7.8 21-22.3 34.7-44.5 39.5-17.8 3.9-35.6 3.8-53.2-1.2-21.5-6.1-36.5-19-41.1-41.8-.3-1.6-1.3-1.3-2.3-1.3h-26.8c.8 10.6 3.2 20.3 8.5 29.2 24.2 40.5 82.7 48.5 128.2 37.4 49.9-12.3 67.3-54.9 67.4-106.3z" ], + "goodreads-g": [ 384, 512, [], "f3a9", "M42.6 403.3h2.8c12.7 0 25.5 0 38.2.1 1.6 0 3.1-.4 3.6 2.1 7.1 34.9 30 54.6 62.9 63.9 26.9 7.6 54.1 7.8 81.3 1.8 33.8-7.4 56-28.3 68-60.4 8-21.5 10.7-43.8 11-66.5.1-5.8.3-47-.2-52.8l-.9-.3c-.8 1.5-1.7 2.9-2.5 4.4-22.1 43.1-61.3 67.4-105.4 69.1-103 4-169.4-57-172-176.2-.5-23.7 1.8-46.9 8.3-69.7C58.3 47.7 112.3.6 191.6 0c61.3-.4 101.5 38.7 116.2 70.3.5 1.1 1.3 2.3 2.4 1.9V10.6h44.3c0 280.3.1 332.2.1 332.2-.1 78.5-26.7 143.7-103 162.2-69.5 16.9-159 4.8-196-57.2-8-13.5-11.8-28.3-13-44.5zM188.9 36.5c-52.5-.5-108.5 40.7-115 133.8-4.1 59 14.8 122.2 71.5 148.6 27.6 12.9 74.3 15 108.3-8.7 47.6-33.2 62.7-97 54.8-154-9.7-71.1-47.8-120-119.6-119.7z" ], + google: [ 488, 512, [], "f1a0", "M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z" ], + "google-drive": [ 512, 512, [], "f3aa", "M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z" ], + "google-play": [ 512, 512, [], "f3ab", "M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z" ], + "google-plus": [ 496, 512, [], "f2b3", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm-70.7 372c-68.8 0-124-55.5-124-124s55.2-124 124-124c31.3 0 60.1 11 83 32.3l-33.6 32.6c-13.2-12.9-31.3-19.1-49.4-19.1-42.9 0-77.2 35.5-77.2 78.1s34.2 78.1 77.2 78.1c32.6 0 64.9-19.1 70.1-53.3h-70.1v-42.6h116.9c1.3 6.8 1.9 13.6 1.9 20.7 0 70.8-47.5 121.2-118.8 121.2zm230.2-106.2v35.5H372v-35.5h-35.5v-35.5H372v-35.5h35.5v35.5h35.2v35.5h-35.2z" ], + "google-plus-g": [ 640, 512, [], "f0d5", "M386.061 228.496c1.834 9.692 3.143 19.384 3.143 31.956C389.204 370.205 315.599 448 204.8 448c-106.084 0-192-85.915-192-192s85.916-192 192-192c51.864 0 95.083 18.859 128.611 50.292l-52.126 50.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484 0-118.92 54.221-118.92 121.277 0 67.056 53.436 121.277 118.92 121.277 75.961 0 104.513-54.745 108.965-82.773H204.8v-66.009h181.261zm185.406 6.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001h-55.733z" ], + "google-plus-square": [ 448, 512, [], "f0d4", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM164 356c-55.3 0-100-44.7-100-100s44.7-100 100-100c27 0 49.5 9.8 67 26.2l-27.1 26.1c-7.4-7.1-20.3-15.4-39.8-15.4-34.1 0-61.9 28.2-61.9 63.2 0 34.9 27.8 63.2 61.9 63.2 39.6 0 54.4-28.5 56.8-43.1H164v-34.4h94.4c1 5 1.6 10.1 1.6 16.6 0 57.1-38.3 97.6-96 97.6zm220-81.8h-29v29h-29.2v-29h-29V245h29v-29H355v29h29v29.2z" ], + "google-wallet": [ 448, 512, [], "f1ee", "M156.8 126.8c37.6 60.6 64.2 113.1 84.3 162.5-8.3 33.8-18.8 66.5-31.3 98.3-13.2-52.3-26.5-101.3-56-148.5 6.5-36.4 2.3-73.6 3-112.3zM109.3 200H16.1c-6.5 0-10.5 7.5-6.5 12.7C51.8 267 81.3 330.5 101.3 400h103.5c-16.2-69.7-38.7-133.7-82.5-193.5-3-4-8-6.5-13-6.5zm47.8-88c68.5 108 130 234.5 138.2 368H409c-12-138-68.4-265-143.2-368H157.1zm251.8-68.5c-1.8-6.8-8.2-11.5-15.2-11.5h-88.3c-5.3 0-9 5-7.8 10.3 13.2 46.5 22.3 95.5 26.5 146 48.2 86.2 79.7 178.3 90.6 270.8 15.8-60.5 25.3-133.5 25.3-203 0-73.6-12.1-145.1-31.1-212.6z" ], + gratipay: [ 496, 512, [], "f184", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm114.6 226.4l-113 152.7-112.7-152.7c-8.7-11.9-19.1-50.4 13.6-72 28.1-18.1 54.6-4.2 68.5 11.9 15.9 17.9 46.6 16.9 61.7 0 13.9-16.1 40.4-30 68.1-11.9 32.9 21.6 22.6 60 13.8 72z" ], + grav: [ 512, 512, [], "f2d6", "M301.1 212c4.4 4.4 4.4 11.9 0 16.3l-9.7 9.7c-4.4 4.7-11.9 4.7-16.6 0l-10.5-10.5c-4.4-4.7-4.4-11.9 0-16.6l9.7-9.7c4.4-4.4 11.9-4.4 16.6 0l10.5 10.8zm-30.2-19.7c3-3 3-7.8 0-10.5-2.8-3-7.5-3-10.5 0-2.8 2.8-2.8 7.5 0 10.5 3.1 2.8 7.8 2.8 10.5 0zm-26 5.3c-3 2.8-3 7.5 0 10.2 2.8 3 7.5 3 10.5 0 2.8-2.8 2.8-7.5 0-10.2-3-3-7.7-3-10.5 0zm72.5-13.3c-19.9-14.4-33.8-43.2-11.9-68.1 21.6-24.9 40.7-17.2 59.8.8 11.9 11.3 29.3 24.9 17.2 48.2-12.5 23.5-45.1 33.2-65.1 19.1zm47.7-44.5c-8.9-10-23.3 6.9-15.5 16.1 7.4 9 32.1 2.4 15.5-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-66.2 42.6c2.5-16.1-20.2-16.6-25.2-25.7-13.6-24.1-27.7-36.8-54.5-30.4 11.6-8 23.5-6.1 23.5-6.1.3-6.4 0-13-9.4-24.9 3.9-12.5.3-22.4.3-22.4 15.5-8.6 26.8-24.4 29.1-43.2 3.6-31-18.8-59.2-49.8-62.8-22.1-2.5-43.7 7.7-54.3 25.7-23.2 40.1 1.4 70.9 22.4 81.4-14.4-1.4-34.3-11.9-40.1-34.3-6.6-25.7 2.8-49.8 8.9-61.4 0 0-4.4-5.8-8-8.9 0 0-13.8 0-24.6 5.3 11.9-15.2 25.2-14.4 25.2-14.4 0-6.4-.6-14.9-3.6-21.6-5.4-11-23.8-12.9-31.7 2.8.1-.2.3-.4.4-.5-5 11.9-1.1 55.9 16.9 87.2-2.5 1.4-9.1 6.1-13 10-21.6 9.7-56.2 60.3-56.2 60.3-28.2 10.8-77.2 50.9-70.6 79.7.3 3 1.4 5.5 3 7.5-2.8 2.2-5.5 5-8.3 8.3-11.9 13.8-5.3 35.2 17.7 24.4 15.8-7.2 29.6-20.2 36.3-30.4 0 0-5.5-5-16.3-4.4 27.7-6.6 34.3-9.4 46.2-9.1 8 3.9 8-34.3 8-34.3 0-14.7-2.2-31-11.1-41.5 12.5 12.2 29.1 32.7 28 60.6-.8 18.3-15.2 23-15.2 23-9.1 16.6-43.2 65.9-30.4 106 0 0-9.7-14.9-10.2-22.1-17.4 19.4-46.5 52.3-24.6 64.5 26.6 14.7 108.8-88.6 126.2-142.3 34.6-20.8 55.4-47.3 63.9-65 22 43.5 95.3 94.5 101.1 59z" ], + gripfire: [ 384, 512, [], "f3ac", "M171.8 503.8c0-5.3 4.8-12.2 4.8-22.3 0-15.2-13-39.9-78.1-86.6C64.2 365.8 32 336.4 32 286.6 32 171.9 179.1 110.1 179.1 18c0-3.3-.2-6.7-.6-10 5.1 2.4 39.1 43.3 39.1 90.4 0 80.5-105.1 129.2-105.1 203 0 26.9 16.6 47.2 32.6 69.5 22.5 30.2 44.2 56.9 44.2 86.5-.1 14.5-4.4 29.7-17.5 46.4zm146-241.4c1.5 8.4 2.2 16.6 2.2 24.6 0 51.8-29.4 97.5-67.3 136.8-1 1-2.2 2.4-3.2 2.4-3.6 0-35.5-41.6-35.5-53.2 0 0 41.8-55.7 41.8-96.9 0-10.8-2.7-21.7-9.1-33.4-1.5 32.3-55.7 87.7-58.1 87.7-2.7 0-17.9-22-17.9-42.1 0-5.3 1-10.7 3.2-15.8 2.4-5.5 56.6-72 56.6-116.7 0-6.2-1-12-3.4-17.1l-4-7.2c16.7 6.5 82.6 64.1 94.7 130.9" ], + grunt: [ 384, 512, [], "f3ad", "M61.3 189.3c-1.1 10 5.2 19.1 5.2 19.1.7-7.5 2.2-12.8 4-16.6.4 10.3 3.2 23.5 12.8 34.1 6.9 7.6 35.6 23.3 54.9 6.1 1 2.4 2.1 5.3 3 8.5 2.9 10.3-2.7 25.3-2.7 25.3s15.1-17.1 13.9-32.5c10.8-.5 21.4-8.4 21.1-19.5 0 0-18.9 10.4-35.5-8.8-9.7-11.2-40.9-42-83.1-31.8 4.3 1 8.9 2.4 13.5 4.1h-.1c-4.2 2-6.5 7.1-7 12zm28.3-1.8c19.5 11 37.4 25.7 44.9 37-5.7 3.3-21.7 10.4-38-1.7-10.3-7.6-9.8-26.2-6.9-35.3zm79.2 233.7c2.2 2.3 1.5 5.3.9 6.8-1.1 2.7-5.5 11.6-13 19.8-2.7 2.9-6.6 4.6-11 4.6-4.3 0-8.7-1.6-11.8-4.3-2.3-2.1-10.2-9.5-13.7-18.6-1.3-3.4-1-6.1.9-8.1 1.3-1.3 4-2.9 9.5-2.9H160c4.1 0 7 .9 8.8 2.7zm62.9-187.9c-1.2 15.5 13.9 32.5 13.9 32.5s-5.6-15-2.7-25.3c.9-3.2 2-6 3-8.5 19.3 17.3 48 1.5 54.8-6.1 9.6-10.6 12.3-23.8 12.8-34.1 1.8 3.8 3.4 9.1 4 16.6 0 0 6.4-9.1 5.2-19.1-.6-5-2.9-10-7-11.8h-.1c4.6-1.8 9.2-3.2 13.5-4.1-42.3-10.2-73.4 20.6-83.1 31.8-16.7 19.2-35.5 8.8-35.5 8.8-.2 10.9 10.4 18.9 21.2 19.3zm17.8-8.8c7.5-11.4 25.4-26 44.9-37 3 9.1 3.4 27.7-7 35.4-16.3 12.1-32.2 5-37.9 1.6-.1.1 0 0 0 0zM263 421.4c1.9 1.9 2.2 4.6.9 7.9-3.5 8.9-11.4 16.1-13.7 18.1-3.1 2.6-7.4 4.2-11.8 4.2s-8.3-1.6-11-4.5c-7.5-8-12-16.7-13-19.3-.6-1.5-1.3-4.4.9-6.7 1.7-1.8 4.7-2.7 8.9-2.7h29.4c5.4.1 8.1 1.7 9.4 3zm-98.3-251.5c9.9 6 18.8 8.1 27.3 8.3 8.5-.2 17.4-2.3 27.3-8.3 0 0-14.5 17.7-27.2 17.8h-.2c-12.7-.2-27.2-17.8-27.2-17.8zm184.5 147.4c-2.4 17.9-13 33.8-24.6 43.7-3.1-22.7-3.7-55.5-3.7-62.4 0-14.7 9.5-24.5 12.2-26.1 2.5-1.5 5.4-3 8.3-4.6 18-9.6 40.4-21.6 40.4-43.7 0-16.2-9.3-23.2-15.4-27.8-.8-.6-1.5-1.1-2.2-1.7-2.1-1.7-3.7-3-4.3-4.4-4.4-9.8-3.6-34.2-1.7-37.6.6-.6 16.7-20.9 11.8-39.2-2-7.4-6.9-13.3-14.1-17-5.3-2.7-11.9-4.2-19.5-4.5-.1-2-.5-3.9-.9-5.9-.6-2.6-1.1-5.3-.9-8.1.4-4.7.8-9 2.2-11.3 8.4-13.3 28.8-17.6 29-17.6l12.3-2.4-8.1-9.5c-.1-.2-17.3-17.5-46.3-17.5-7.9 0-16 1.3-24.1 3.9-24.2 7.8-42.9 30.5-49.4 39.3-3.1-1-6.3-1.9-9.6-2.7-4.2-15.8 9-38.5 9-38.5s-13.6-3-33.7 15.2c-2.6-6.5-8.1-20.5-1.8-37.2C184.6 10.1 177.2 26 175 40.4c-7.6-5.4-6.7-23.1-7.2-27.6-7.5.9-29.2 21.9-28.2 48.3-2 .5-3.9 1.1-5.9 1.7-6.5-8.8-25.1-31.5-49.4-39.3-7.9-2.2-16-3.5-23.9-3.5-29 0-46.1 17.3-46.3 17.5L6 46.9l12.3 2.4c.2 0 20.6 4.3 29 17.6 1.4 2.2 1.8 6.6 2.2 11.3.2 2.8-.4 5.5-.9 8.1-.4 1.9-.8 3.9-.9 5.9-7.7.3-14.2 1.8-19.5 4.5-7.2 3.7-12.1 9.6-14.1 17-5 18.2 11.2 38.5 11.8 39.2 1.9 3.4 2.7 27.8-1.7 37.6-.6 1.4-2.2 2.7-4.3 4.4-.7.5-1.4 1.1-2.2 1.7-6.1 4.6-15.4 11.7-15.4 27.8 0 22.1 22.4 34.1 40.4 43.7 3 1.6 5.8 3.1 8.3 4.6 2.7 1.6 12.2 11.4 12.2 26.1 0 6.9-.6 39.7-3.7 62.4-11.6-9.9-22.2-25.9-24.6-43.8 0 0-29.2 22.6-20.6 70.8 5.2 29.5 23.2 46.1 47 54.7 8.8 19.1 29.4 45.7 67.3 49.6C143 504.3 163 512 192.2 512h.2c29.1 0 49.1-7.7 63.6-19.5 37.9-3.9 58.5-30.5 67.3-49.6 23.8-8.7 41.7-25.2 47-54.7 8.2-48.4-21.1-70.9-21.1-70.9zM305.7 37.7c5.6-1.8 11.6-2.7 17.7-2.7 11 0 19.9 3 24.7 5-3.1 1.4-6.4 3.2-9.7 5.3-2.4-.4-5.6-.8-9.2-.8-10.5 0-20.5 3.1-28.7 8.9-12.3 8.7-18 16.9-20.7 22.4-2.2-1.3-4.5-2.5-7.1-3.7-1.6-.8-3.1-1.5-4.7-2.2 6.1-9.1 19.9-26.5 37.7-32.2zm21 18.2c-.8 1-1.6 2.1-2.3 3.2-3.3 5.2-3.9 11.6-4.4 17.8-.5 6.4-1.1 12.5-4.4 17-4.2.8-8.1 1.7-11.5 2.7-2.3-3.1-5.6-7-10.5-11.2 1.4-4.8 5.5-16.1 13.5-22.5 5.6-4.3 12.2-6.7 19.6-7zM45.6 45.3c-3.3-2.2-6.6-4-9.7-5.3 4.8-2 13.7-5 24.7-5 6.1 0 12 .9 17.7 2.7 17.8 5.8 31.6 23.2 37.7 32.1-1.6.7-3.2 1.4-4.8 2.2-2.5 1.2-4.9 2.5-7.1 3.7-2.6-5.4-8.3-13.7-20.7-22.4-8.3-5.8-18.2-8.9-28.8-8.9-3.4.1-6.6.5-9 .9zm44.7 40.1c-4.9 4.2-8.3 8-10.5 11.2-3.4-.9-7.3-1.9-11.5-2.7C65 89.5 64.5 83.4 64 77c-.5-6.2-1.1-12.6-4.4-17.8-.7-1.1-1.5-2.2-2.3-3.2 7.4.3 14 2.6 19.5 7 8 6.3 12.1 17.6 13.5 22.4zM58.1 259.9c-2.7-1.6-5.6-3.1-8.4-4.6-14.9-8-30.2-16.3-30.2-30.5 0-11.1 4.3-14.6 8.9-18.2l.5-.4c.7-.6 1.4-1.2 2.2-1.8-.9 7.2-1.9 13.3-2.7 14.9 0 0 12.1-15 15.7-44.3 1.4-11.5-1.1-34.3-5.1-43 .2 4.9 0 9.8-.3 14.4-.4-.8-.8-1.6-1.3-2.2-3.2-4-11.8-17.5-9.4-26.6.9-3.5 3.1-6 6.7-7.8 3.8-1.9 8.8-2.9 15.1-2.9 12.3 0 25.9 3.7 32.9 6 25.1 8 55.4 30.9 64.1 37.7.2.2.4.3.4.3l5.6 3.9-3.5-5.8c-.2-.3-19.1-31.4-53.2-46.5 2-2.9 7.4-8.1 21.6-15.1 21.4-10.5 46.5-15.8 74.3-15.8 27.9 0 52.9 5.3 74.3 15.8 14.2 6.9 19.6 12.2 21.6 15.1-34 15.1-52.9 46.2-53.1 46.5l-3.5 5.8 5.6-3.9s.2-.1.4-.3c8.7-6.8 39-29.8 64.1-37.7 7-2.2 20.6-6 32.9-6 6.3 0 11.3 1 15.1 2.9 3.5 1.8 5.7 4.4 6.7 7.8 2.5 9.1-6.1 22.6-9.4 26.6-.5.6-.9 1.3-1.3 2.2-.3-4.6-.5-9.5-.3-14.4-4 8.8-6.5 31.5-5.1 43 3.6 29.3 15.7 44.3 15.7 44.3-.8-1.6-1.8-7.7-2.7-14.9.7.6 1.5 1.2 2.2 1.8l.5.4c4.6 3.7 8.9 7.1 8.9 18.2 0 14.2-15.4 22.5-30.2 30.5-2.9 1.5-5.7 3.1-8.4 4.6-8.7 5-18 16.7-19.1 34.2-.9 14.6.9 49.9 3.4 75.9-12.4 4.8-26.7 6.4-39.7 6.8-2-4.1-3.9-8.5-5.5-13.1-.7-2-19.6-51.1-26.4-62.2 5.5 39 17.5 73.7 23.5 89.6-3.5-.5-7.3-.7-11.7-.7h-117c-4.4 0-8.3.3-11.7.7 6-15.9 18.1-50.6 23.5-89.6-6.8 11.2-25.7 60.3-26.4 62.2-1.6 4.6-3.5 9-5.5 13.1-13-.4-27.2-2-39.7-6.8 2.5-26 4.3-61.2 3.4-75.9-.9-17.4-10.3-29.2-19-34.2zM34.8 404.6c-12.1-20-8.7-54.1-3.7-59.1 10.9 34.4 47.2 44.3 74.4 45.4-2.7 4.2-5.2 7.6-7 10l-1.4 1.4c-7.2 7.8-8.6 18.5-4.1 31.8-22.7-.1-46.3-9.8-58.2-29.5zm45.7 43.5c6 1.1 12.2 1.9 18.6 2.4 3.5 8 7.4 15.9 12.3 23.1-14.4-5.9-24.4-16-30.9-25.5zM192 498.2c-60.6-.1-78.3-45.8-84.9-64.7-3.7-10.5-3.4-18.2.9-23.1 2.9-3.3 9.5-7.2 24.6-7.2h118.8c15.1 0 21.8 3.9 24.6 7.2 4.2 4.8 4.5 12.6.9 23.1-6.6 18.8-24.3 64.6-84.9 64.7zm80.6-24.6c4.9-7.2 8.8-15.1 12.3-23.1 6.4-.5 12.6-1.3 18.6-2.4-6.5 9.5-16.5 19.6-30.9 25.5zm76.6-69c-12 19.7-35.6 29.3-58.1 29.7 4.5-13.3 3.1-24.1-4.1-31.8-.4-.5-.9-1-1.4-1.5-1.8-2.4-4.3-5.8-7-10 27.2-1.2 63.5-11 74.4-45.4 5 5 8.4 39.1-3.8 59z" ], + gulp: [ 256, 512, [], "f3ae", "M209.8 391.1l-14.1 24.6-4.6 80.2c0 8.9-28.3 16.1-63.1 16.1s-63.1-7.2-63.1-16.1l-5.8-79.4-14.9-25.4c41.2 17.3 126 16.7 165.6 0zm-196-253.3l13.6 125.5c5.9-20 20.8-47 40-55.2 6.3-2.7 12.7-2.7 18.7.9 5.2 3 9.6 9.3 10.1 11.8 1.2 6.5-2 9.1-4.5 9.1-3 0-5.3-4.6-6.8-7.3-4.1-7.3-10.3-7.6-16.9-2.8-6.9 5-12.9 13.4-17.1 20.7-5.1 8.8-9.4 18.5-12 28.2-1.5 5.6-2.9 14.6-.6 19.9 1 2.2 2.5 3.6 4.9 3.6 5 0 12.3-6.6 15.8-10.1 4.5-4.5 10.3-11.5 12.5-16l5.2-15.5c2.6-6.8 9.9-5.6 9.9 0 0 10.2-3.7 13.6-10 34.7-5.8 19.5-7.6 25.8-7.6 25.8-.7 2.8-3.4 7.5-6.3 7.5-1.2 0-2.1-.4-2.6-1.2-1-1.4-.9-5.3-.8-6.3.2-3.2 6.3-22.2 7.3-25.2-2 2.2-4.1 4.4-6.4 6.6-5.4 5.1-14.1 11.8-21.5 11.8-3.4 0-5.6-.9-7.7-2.4l7.6 79.6c2 5 39.2 17.1 88.2 17.1 49.1 0 86.3-12.2 88.2-17.1l10.9-94.6c-5.7 5.2-12.3 11.6-19.6 14.8-5.4 2.3-17.4 3.8-17.4-5.7 0-5.2 9.1-14.8 14.4-21.5 1.4-1.7 4.7-5.9 4.7-8.1 0-2.9-6-2.2-11.7 2.5-3.2 2.7-6.2 6.3-8.7 9.7-4.3 6-6.6 11.2-8.5 15.5-6.2 14.2-4.1 8.6-9.1 22-5 13.3-4.2 11.8-5.2 14-.9 1.9-2.2 3.5-4 4.5-1.9 1-4.5.9-6.1-.3-.9-.6-1.3-1.9-1.3-3.7 0-.9.1-1.8.3-2.7 1.5-6.1 7.8-18.1 15-34.3 1.6-3.7 1-2.6.8-2.3-6.2 6-10.9 8.9-14.4 10.5-5.8 2.6-13 2.6-14.5-4.1-.1-.4-.1-.8-.2-1.2-11.8 9.2-24.3 11.7-20-8.1-4.6 8.2-12.6 14.9-22.4 14.9-4.1 0-7.1-1.4-8.6-5.1-2.3-5.5 1.3-14.9 4.6-23.8 1.7-4.5 4-9.9 7.1-16.2 1.6-3.4 4.2-5.4 7.6-4.5.6.2 1.1.4 1.6.7 2.6 1.8 1.6 4.5.3 7.2-3.8 7.5-7.1 13-9.3 20.8-.9 3.3-2 9 1.5 9 2.4 0 4.7-.8 6.9-2.4 4.6-3.4 8.3-8.5 11.1-13.5 2-3.6 4.4-8.3 5.6-12.3.5-1.7 1.1-3.3 1.8-4.8 1.1-2.5 2.6-5.1 5.2-5.1 1.3 0 2.4.5 3.2 1.5 1.7 2.2 1.3 4.5.4 6.9-2 5.6-4.7 10.6-6.9 16.7-1.3 3.5-2.7 8-2.7 11.7 0 3.4 3.7 2.6 6.8 1.2 2.4-1.1 4.8-2.8 6.8-4.5 1.2-4.9.9-3.8 26.4-68.2 1.3-3.3 3.7-4.7 6.1-4.7 1.2 0 2.2.4 3.2 1.1 1.7 1.3 1.7 4.1 1 6.2-.7 1.9-.6 1.3-4.5 10.5-5.2 12.1-8.6 20.8-13.2 31.9-1.9 4.6-7.7 18.9-8.7 22.3-.6 2.2-1.3 5.8 1 5.8 5.4 0 19.3-13.1 23.1-17 .2-.3.5-.4.9-.6.6-1.9 1.2-3.7 1.7-5.5 1.4-3.8 2.7-8.2 5.3-11.3.8-1 1.7-1.6 2.7-1.6 2.8 0 4.2 1.2 4.2 4 0 1.1-.7 5.1-1.1 6.2 1.4-1.5 2.9-3 4.5-4.5 15-13.9 25.7-6.8 25.7.2 0 7.4-8.9 17.7-13.8 23.4-1.6 1.9-4.9 5.4-5 6.4 0 1.3.9 1.8 2.2 1.8 2 0 6.4-3.5 8-4.7 5-3.9 11.8-9.9 16.6-14.1l14.8-136.8c-30.5 17.1-197.6 17.2-228.3.2zm229.7-8.5c0 21-231.2 21-231.2 0 0-8.8 51.8-15.9 115.6-15.9 9 0 17.8.1 26.3.4l12.6-48.7L228.1.6c1.4-1.4 5.8-.2 9.9 3.5s6.6 7.9 5.3 9.3l-.1.1L185.9 74l-10 40.7c39.9 2.6 67.6 8.1 67.6 14.6zm-69.4 4.6c0-.8-.9-1.5-2.5-2.1l-.2.8c0 1.3-5 2.4-11.1 2.4s-11.1-1.1-11.1-2.4c0-.1 0-.2.1-.3l.2-.7c-1.8.6-3 1.4-3 2.3 0 2.1 6.2 3.7 13.7 3.7 7.7.1 13.9-1.6 13.9-3.7z" ], + "hacker-news": [ 448, 512, [], "f1d4", "M0 32v448h448V32H0zm21.2 197.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z" ], + "hacker-news-square": [ 448, 512, [], "f3af", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM21.2 229.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z" ], + hips: [ 640, 512, [], "f452", "M0 80.2c0-1.8.9-2.7 2.7-2.7h40.9c1.9 0 2.8.9 2.8 2.7v81.2c15.2-7.7 31.7-11.5 49.8-11.4 24 .1 44.2 6.2 60.3 18 18.7 13.5 28 31.9 28 55.3v136.1c0 1.9-.9 2.8-2.7 2.8h-27.3c-9.1 0-16.4-7.3-16.4-16.3V223.3c0-.9 2.7-27-45.8-27-48.6 0-45.8 26.2-45.8 27v136.1c0 1.9-.9 2.8-2.8 2.8h-41c-1.8 0-2.7-.9-2.7-2.8V80.2zm497.7 221.5c13.7 10.2 34.1 19.1 58.4 19.1 23.3 0 32.8-4.5 36.5-13.6 3-7.9-.6-16.1-12.2-21.2l-53.6-23.5c-21.4-9.4-33.8-24-37.2-43.6-5.7-33.7 22.2-53.3 22.7-53.7 13.2-9.6 32-15.4 58.5-15.4 19 0 37.4 3.3 55.1 9.9 1.3.5 1.9 1.3 1.9 2.6V207c0 2.1-2.3 3.4-4 2.4-39.7-20.7-76.6-12.3-84-6.8-6.6 4.9-6 12.5 2.6 16.1L600 244c16.5 7.1 28.1 18.4 34.9 34.1 5.5 12.6 6.6 25.6 3.1 39.1-9.6 36.9-44.9 45.5-45.6 45.8-10.5 3.1-23.6 4.3-36.3 4.3-16.6 0-32.6-2.7-48.2-8.2-9.7-3.4-14.6-10.3-14.6-20.7V304c0-2.1 2.3-3.7 4.4-2.3zM376.2 149.8c-31.7 0-104.2 20.1-104.2 103.5v183.5c0 .8.6 2.7 2.7 2.7h40.9c1.9 0 2.8-.9 2.8-2.7V348c16.5 12.7 35.8 19.1 57.7 19.1 60.5 0 108.7-48.5 108.7-108.7.1-60.3-48.2-108.6-108.6-108.6zm0 170.9c-17.2 0-31.9-6.1-44-18.2-12.2-12.2-18.2-26.8-18.2-44 0-34.5 27.6-62.2 62.2-62.2 34.5 0 62.2 27.6 62.2 62.2.1 34.3-27.3 62.2-62.2 62.2zm-124.6 38.7c0 1.9-.9 2.8-2.8 2.8h-40.9c-1.6 0-2.7-1.4-2.7-2.8V157.6c0-1.4 1.1-2.8 2.7-2.8h40.9c1.9 0 2.8.9 2.8 2.8v201.8M228.3 72.5c15.9 0 28.9 12.7 28.9 28.9 0 15.8-12.7 28.9-28.9 28.9s-28.9-13.3-28.9-28.9c.1-16 13-28.9 28.9-28.9" ], + "hire-a-helper": [ 512, 512, [], "f3b0", "M443.1 0H71.9C67.9 37.3 37.4 67.8 0 71.7v371.5c37.4 4.9 66 32.4 71.9 68.8h372.2c3-36.4 32.5-65.8 67.9-69.8V71.7c-36.4-5.9-65-35.3-68.9-71.7zm-37 404.9c-36.3 0-18.8-2-55.1-2-35.8 0-21 2-56.1 2-5.9 0-4.9-8.2 0-9.8 22.8-7.6 22.9-10.2 24.6-12.8 10.4-15.6 5.9-83 5.9-113 0-5.3-6.4-12.8-13.8-12.8H200.4c-7.4 0-13.8 7.5-13.8 12.8 0 30-4.5 97.4 5.9 113 1.7 2.5 1.8 5.2 24.6 12.8 4.9 1.6 6 9.8 0 9.8-35.1 0-20.3-2-56.1-2-36.3 0-18.8 2-55.1 2-7.9 0-5.8-10.8 0-10.8 10.2-3.4 13.5-3.5 21.7-13.8 7.7-12.9 7.9-44.4 7.9-127.8V151.3c0-22.2-12.2-28.3-28.6-32.4-8.8-2.2-4-11.8 1-11.8 36.5 0 20.6 2 57.1 2 32.7 0 16.5-2 49.2-2 3.3 0 8.5 8.3 1 10.8-4.9 1.6-27.6 3.7-27.6 39.3 0 45.6-.2 55.8 1 68.8 0 1.3 2.3 12.8 12.8 12.8h109.2c10.5 0 12.8-11.5 12.8-12.8 1.2-13 1-23.2 1-68.8 0-35.6-22.7-37.7-27.6-39.3-7.5-2.5-2.3-10.8 1-10.8 32.7 0 16.5 2 49.2 2 36.5 0 20.6-2 57.1-2 4.9 0 9.9 9.6 1 11.8-16.4 4.1-28.6 10.3-28.6 32.4v101.2c0 83.4.1 114.9 7.9 127.8 8.2 10.2 11.4 10.4 21.7 13.8 5.8 0 7.8 10.8 0 10.8z" ], + hooli: [ 640, 512, [], "f427", "M508.4 352h57.9V156.7L508.4 184v168zm73.7-110.5V352H640V241.5h-57.9zm-250.7-8.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.2-1.1-50.4 17.1c-1.9 1.9-3.7 3.9-5.3 6-38.2-29.6-72.5-46.5-102.1-61.1v-20.7l-22.5 10.6c-54.4-22.1-89-18.2-97.3.1 0 0-24.9 32.8 61.9 110.9v-31c-48.8-54.6-39-76.1-35.3-79.2 13.5-11.4 37.5-8 64.4 2.1L65.2 184v63.3c13.1 14.7 30.5 31.5 53.5 50.4l4.5 3.6v-29.8c0-6.9 1.7-18.2 10.8-18.2s10.6 6.9 10.6 15V317c18 12.2 37.3 22.1 57.7 29.6v-93.9c0-18.7-13.4-37.4-40.6-37.4-15.8-.1-30.5 8.2-38.5 21.9v-54.3c41.9 20.9 83.9 46.5 99.9 58.3-10.2 14.6-9.3 28.1-9.3 43.7 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.7-33.8 16.7-52.5 0-18.5 1.5-34.2-16.7-52.3zm-39.7 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm185.7-71.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.3-1.1-50.4 17.1c-18.2 18.2-16.8 33.9-16.8 52.6 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.8-33.8 16.8-52.5-.1-18.8 1.3-34.5-16.8-52.6zm-39.8 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm173.5-73c15.9 0 28.9-12.9 28.9-28.9s-12.9-24.5-28.9-24.5c-15.9 0-28.9 8.6-28.9 24.5s12.9 28.9 28.9 28.9zM144.5 352l38.3.8c-13.2-4.6-26-10.2-38.3-16.8v16zm-21.4 0v-28.6c-6.5-4.2-13-8.7-19.4-13.6-14.8-11.2-27.5-21.7-38.5-31.5V352h57.9zm59.7.8c36.5 12.5 69.9 14.2 94.7 7.2-19.9.2-45.8-2.6-75.3-13.3v5.3l-19.4.8z" ], + hornbill: [ 509, 512, [], "f592", "M75.37 370.3c2.14 15.83-5.77 31.98-20.94 39.29-18.85 9.1-41.55 1.17-50.68-17.68-9.08-18.83-1.13-41.58 17.7-50.65 7.05-3.4 14.63-4.42 21.85-3.38-78.28-111.35 52-190.53 52-190.53-5.86 43.04-8.24 91.16-8.24 91.16-67.31 41.45.92 64.06 39.81 72.87 19.77 53.62 71.18 91.94 131.66 91.94 1.92 0 3.77-.21 5.67-.28l.11 18.86c-99.22 1.39-158.7-29.14-188.94-51.6zM183.38 42.6c.89-7-.1-14.33-3.39-21.15-9.1-18.84-31.82-26.78-50.66-17.69-18.86 9.1-26.8 31.83-17.69 50.68 6.98 14.47 22.02 22.42 37.18 21.23-22.55 29.91-53.83 89.57-52.42 190.03l21.84-.15c-.02-.9-.14-1.77-.14-2.68 0-58.95 36.37-109.33 87.85-130.16 8.01-37.75 30.74-114.3 73.84-44.29 0 0 48.14 2.38 91.18 8.24 0-.01-77.84-128.03-187.59-54.06zm304.18 134.17c18.84-9.09 26.81-31.81 17.7-50.65-9.1-18.85-31.83-26.77-50.67-17.69-15.27 7.37-23.19 23.69-20.87 39.64-31.71-21.94-89.84-49.05-183.45-47.74l.14 22.5c2.7-.15 5.39-.41 8.14-.41 59.3 0 109.9 36.8 130.49 88.76 39.1 9.02 105.06 31.58 38.46 72.54 0 0-2.34 48.13-8.21 91.16 0 0 133.45-81.16 48.96-194.61 6.43.5 13.07-.49 19.31-3.5zM373.05 436.24c21.43-32.46 46.42-89.69 45.14-179.66l-19.52.14c.08 2.06.3 4.07.3 6.15 0 60.27-38.05 111.55-91.39 131.45-8.85 38.95-31.44 106.66-72.77 39.49 0 0-48.12-2.34-91.19-8.22 0 0 79.92 131.34 191.9 50.97.31 4.72 1.45 9.45 3.64 13.97 9.06 18.89 31.8 26.78 50.64 17.71 18.86-9.1 26.79-31.83 17.7-50.65-6.56-13.62-20.26-21.43-34.45-21.35z" ], + hotjar: [ 448, 512, [], "f3b1", "M414.9 161.5C340.2 29 121.1 0 121.1 0S222.2 110.4 93 197.7C11.3 252.8-21 324.4 14 402.6c26.8 59.9 83.5 84.3 144.6 93.4-29.2-55.1-6.6-122.4-4.1-129.6 57.1 86.4 165 0 110.8-93.9 71 15.4 81.6 138.6 27.1 215.5 80.5-25.3 134.1-88.9 148.8-145.6 15.5-59.3 3.7-127.9-26.3-180.9z" ], + houzz: [ 414, 512, [], "f27c", "M258.9 330.7H154.3V480H0V32h109.5v104.5l305.1 85.6V480H258.9V330.7z" ], + html5: [ 384, 512, [], "f13b", "M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z" ], + hubspot: [ 512, 512, [], "f3b2", "M267.4 211.6c-25.1 23.7-40.8 57.3-40.8 94.6 0 29.3 9.7 56.3 26 78L203.1 434c-4.4-1.6-9.1-2.5-14-2.5-10.8 0-20.9 4.2-28.5 11.8-7.6 7.6-11.8 17.8-11.8 28.6s4.2 20.9 11.8 28.5c7.6 7.6 17.8 11.6 28.5 11.6 10.8 0 20.9-3.9 28.6-11.6 7.6-7.6 11.8-17.8 11.8-28.5 0-4.2-.6-8.2-1.9-12.1l50-50.2c22 16.9 49.4 26.9 79.3 26.9 71.9 0 130-58.3 130-130.2 0-65.2-47.7-119.2-110.2-128.7V116c17.5-7.4 28.2-23.8 28.2-42.9 0-26.1-20.9-47.9-47-47.9S311.2 47 311.2 73.1c0 19.1 10.7 35.5 28.2 42.9v61.2c-15.2 2.1-29.6 6.7-42.7 13.6-27.6-20.9-117.5-85.7-168.9-124.8 1.2-4.4 2-9 2-13.8C129.8 23.4 106.3 0 77.4 0 48.6 0 25.2 23.4 25.2 52.2c0 28.9 23.4 52.3 52.2 52.3 9.8 0 18.9-2.9 26.8-7.6l163.2 114.7zm89.5 163.6c-38.1 0-69-30.9-69-69s30.9-69 69-69 69 30.9 69 69-30.9 69-69 69z" ], + imdb: [ 448, 512, [], "f2d8", "M350.5 288.7c0 5.4 1.6 14.4-6.2 14.4-1.6 0-3-.8-3.8-2.4-2.2-5.1-1.1-44.1-1.1-44.7 0-3.8-1.1-12.7 4.9-12.7 7.3 0 6.2 7.3 6.2 12.7v32.7zM265 229.9c0-9.7 1.6-16-10.3-16v83.7c12.2.3 10.3-8.7 10.3-18.4v-49.3zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM21.3 228.8c-.1.1-.2.3-.3.4h.3v-.4zM97 192H64v127.8h33V192zm113.3 0h-43.1l-7.6 59.9c-2.7-20-5.4-40.1-8.7-59.9h-42.8v127.8h29v-84.5l12.2 84.5h20.6l11.6-86.4v86.4h28.7V192zm86.3 45.3c0-8.1.3-16.8-1.4-24.4-4.3-22.5-31.4-20.9-49-20.9h-24.6v127.8c86.1.1 75 6 75-82.5zm85.9 17.3c0-17.3-.8-30.1-22.2-30.1-8.9 0-14.9 2.7-20.9 9.2V192h-31.7v127.8h29.8l1.9-8.1c5.7 6.8 11.9 9.8 20.9 9.8 19.8 0 22.2-15.2 22.2-30.9v-36z" ], + instagram: [ 448, 512, [], "f16d", "M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z" ], + "internet-explorer": [ 512, 512, [], "f26b", "M483.049 159.706c10.855-24.575 21.424-60.438 21.424-87.871 0-72.722-79.641-98.371-209.673-38.577-107.632-7.181-211.221 73.67-237.098 186.457 30.852-34.862 78.271-82.298 121.977-101.158C125.404 166.85 79.128 228.002 43.992 291.725 23.246 329.651 0 390.94 0 436.747c0 98.575 92.854 86.5 180.251 42.006 31.423 15.43 66.559 15.573 101.695 15.573 97.124 0 184.249-54.294 216.814-146.022H377.927c-52.509 88.593-196.819 52.996-196.819-47.436H509.9c6.407-43.581-1.655-95.715-26.851-141.162zM64.559 346.877c17.711 51.15 53.703 95.871 100.266 123.304-88.741 48.94-173.267 29.096-100.266-123.304zm115.977-108.873c2-55.151 50.276-94.871 103.98-94.871 53.418 0 101.981 39.72 103.981 94.871H180.536zm184.536-187.6c21.425-10.287 48.563-22.003 72.558-22.003 31.422 0 54.274 21.717 54.274 53.722 0 20.003-7.427 49.007-14.569 67.867-26.28-42.292-65.986-81.584-112.263-99.586z" ], + ioxhost: [ 640, 512, [], "f208", "M616 160h-67.3C511.2 70.7 422.9 8 320 8 183 8 72 119 72 256c0 16.4 1.6 32.5 4.7 48H24c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h67.3c37.5 89.3 125.8 152 228.7 152 137 0 248-111 248-248 0-16.4-1.6-32.5-4.7-48H616c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24zm-96 96c0 110.5-89.5 200-200 200-75.7 0-141.6-42-175.5-104H424c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24H125.8c-3.8-15.4-5.8-31.4-5.8-48 0-110.5 89.5-200 200-200 75.7 0 141.6 42 175.5 104H216c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h298.2c3.8 15.4 5.8 31.4 5.8 48zm-304-24h208c13.3 0 24 10.7 24 24 0 13.2-10.7 24-24 24H216c-13.3 0-24-10.7-24-24 0-13.2 10.7-24 24-24z" ], + itunes: [ 448, 512, [], "f3b4", "M223.6 80.3C129 80.3 52.5 157 52.5 251.5S129 422.8 223.6 422.8s171.2-76.7 171.2-171.2c0-94.6-76.7-171.3-171.2-171.3zm79.4 240c-3.2 13.6-13.5 21.2-27.3 23.8-12.1 2.2-22.2 2.8-31.9-5-11.8-10-12-26.4-1.4-36.8 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 3.2-3.6 2.2-2 2.2-80.8 0-5.6-2.7-7.1-8.4-6.1-4 .7-91.9 17.1-91.9 17.1-5 1.1-6.7 2.6-6.7 8.3 0 116.1.5 110.8-1.2 118.5-2.1 9-7.6 15.8-14.9 19.6-8.3 4.6-23.4 6.6-31.4 5.2-21.4-4-28.9-28.7-14.4-42.9 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 5-5.7.9-127 2.6-133.7.4-2.6 1.5-4.8 3.5-6.4 2.1-1.7 5.8-2.7 6.7-2.7 101-19 113.3-21.4 115.1-21.4 5.7-.4 9 3 9 8.7-.1 170.6.4 161.4-1 167.6zM345.2 32H102.8C45.9 32 0 77.9 0 134.8v242.4C0 434.1 45.9 480 102.8 480h242.4c57 0 102.8-45.9 102.8-102.8V134.8C448 77.9 402.1 32 345.2 32zM223.6 444c-106.3 0-192.5-86.2-192.5-192.5S117.3 59 223.6 59s192.5 86.2 192.5 192.5S329.9 444 223.6 444z" ], + "itunes-note": [ 384, 512, [], "f3b5", "M381.9 388.2c-6.4 27.4-27.2 42.8-55.1 48-24.5 4.5-44.9 5.6-64.5-10.2-23.9-20.1-24.2-53.4-2.7-74.4 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 6.4-7.2 4.4-4.1 4.4-163.2 0-11.2-5.5-14.3-17-12.3-8.2 1.4-185.7 34.6-185.7 34.6-10.2 2.2-13.4 5.2-13.4 16.7 0 234.7 1.1 223.9-2.5 239.5-4.2 18.2-15.4 31.9-30.2 39.5-16.8 9.3-47.2 13.4-63.4 10.4-43.2-8.1-58.4-58-29.1-86.6 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 10.1-11.5 1.8-256.6 5.2-270.2.8-5.2 3-9.6 7.1-12.9 4.2-3.5 11.8-5.5 13.4-5.5 204-38.2 228.9-43.1 232.4-43.1 11.5-.8 18.1 6 18.1 17.6.2 344.5 1.1 326-1.8 338.5z" ], + java: [ 377, 512, [], "f4e4", "M121.6 396s-19.6 11.4 13.9 15.2c40.6 4.6 61.3 4 106-4.5 0 0 11.8 7.4 28.2 13.8C169.5 463.4 42.9 418 121.6 396m-12.2-56.1s-21.9 16.2 11.6 19.7c43.3 4.5 77.6 4.8 136.8-6.6 0 0 8.2 8.3 21.1 12.8-121.3 35.5-256.3 2.9-169.5-25.9m103.2-95.1c24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3.1 0-175.2 43.8-91.5 140.2m132.6 192.6s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6.7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2 204.2 33.2 372.4-14.9 319.4-38.8M131 281.8s-93.1 22.1-33 30.1c25.4 3.4 76 2.6 123.1-1.3 38.5-3.2 77.2-10.2 77.2-10.2s-13.6 5.8-23.4 12.5c-94.5 24.9-277 13.3-224.5-12.1 44.5-21.4 80.6-19 80.6-19m167 93.3c96.1-49.9 51.6-97.9 20.6-91.4-7.6 1.6-11 3-11 3s2.8-4.4 8.2-6.3c61.3-21.6 108.5 63.6-19.8 97.3 0-.1 1.5-1.4 2-2.6M240 0s53.2 53.2-50.5 135c-83.1 65.6-19 103.1 0 145.8-48.5-43.8-84.1-82.3-60.2-118.2C164.4 110.1 261.5 84.5 240 0m-99.5 510.4c92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6" ], + "jedi-order": [ 448, 512, [], "f50e", "M231.89 335.72l31.44-45.89-20.18 55.5 62.56 9.09-62.56 9.08 24.22 47.43s-30.22-31.77-34.49-36.25c1.76 68.78 2.19 85.7 2.19 85.7s154.4-71.65 68.62-230.09c0 0 106.97-118.07 10.09-190.73 0 0 165.5 99.91 60.55 271.46 0 0 86.78-84.77 41.37-170.54 0 0 78.71 111.01-17.16 233.11 0 0 26.24-16.15 49.45-77.71 0 0-16.93 183.26-221.96 185.66v.02h-4.08v-.02C16.93 479.14 0 295.88 0 295.88c23.21 61.56 49.44 77.71 49.44 77.71-95.87-122.11-17.15-233.11-17.15-233.11-45.41 85.78 41.38 170.54 41.38 170.54-104.95-171.56 60.54-271.46 60.54-271.46-96.88 72.66 10.09 190.73 10.09 190.73-85.78 158.44 68.62 230.09 68.62 230.09s.43-16.93 2.19-85.7l-34.48 36.25 24.22-47.43-62.56-9.08 62.56-9.09-20.18-55.5 31.44 45.89c2.25-87.85 7.82-305.82 7.85-306.85l.01-2.43.02 1 .03-1 .01 2.43c.05 1.72 5.61 219.2 7.86 306.85z" ], + jenkins: [ 512, 512, [], "f3b6", "M487.1 425c-1.4-11.2-19-23.1-28.2-31.9-5.1-5-29-23.1-30.4-29.9-1.4-6.6 9.7-21.5 13.3-28.9 5.1-10.7 8.8-23.7 11.3-32.6 18.8-66.1 20.7-156.9-6.2-211.2-10.2-20.6-38.6-49-56.4-62.5-42-31.7-119.6-35.3-170.1-16.6-14.1 5.2-27.8 9.8-40.1 17.1-33.1 19.4-68.3 32.5-78.1 71.6-24.2 10.8-31.5 41.8-30.3 77.8.2 7 4.1 15.8 2.7 22.4-.7 3.3-5.2 7.6-6.1 9.8-11.6 27.7-2.3 64 11.1 83.7 8.1 11.9 21.5 22.4 39.2 25.2.7 10.6 3.3 19.7 8.2 30.4 3.1 6.8 14.7 19 10.4 27.7-2.2 4.4-21 13.8-27.3 17.6C89 407.2 73.7 415 54.2 429c-12.6 9-32.3 10.2-29.2 31.1 2.1 14.1 10.1 31.6 14.7 45.8.7 2 1.4 4.1 2.1 6h422c4.9-15.3 9.7-30.9 14.6-47.2 3.4-11.4 10.2-27.8 8.7-39.7zM205.9 33.7c1.8-.5 3.4.7 4.9 2.4-.2 5.2-5.4 5.1-8.9 6.8-5.4 6.7-13.4 9.8-20 17.2-6.8 7.5-14.4 27.7-23.4 30-4.5 1.1-9.7-.8-13.6-.5-10.4.7-17.7 6-28.3 7.5 13.6-29.9 56.1-54 89.3-63.4zm-104.8 93.6c13.5-14.9 32.1-24.1 54.8-25.9 11.7 29.7-8.4 65-.9 97.6 2.3 9.9 10.2 25.4-2.4 25.7.3-28.3-34.8-46.3-61.3-29.6-1.8-21.5-4.9-51.7 9.8-67.8zm36.7 200.2c-1-4.1-2.7-12.9-2.3-15.1 1.6-8.7 17.1-12.5 11-24.7-11.3-.1-13.8 10.2-24.1 11.3-26.7 2.6-45.6-35.4-44.4-58.4 1-19.5 17.6-38.2 40.1-35.8 16 1.8 21.4 19.2 24.5 34.7 9.2.5 22.5-.4 26.9-7.6-.6-17.5-8.8-31.6-8.2-47.7 1-30.3 17.5-57.6 4.8-87.4 13.6-30.9 53.5-55.3 83.1-70 36.6-18.3 94.9-3.7 129.3 15.8 19.7 11.1 34.4 32.7 48.3 50.7-19.5-5.8-36.1 4.2-33.1 20.3 16.3-14.9 44.2-.2 52.5 16.4 7.9 15.8 7.8 39.3 9 62.8 2.9 57-10.4 115.9-39.1 157.1-7.7 11-14.1 23-24.9 30.6-26 18.2-65.4 34.7-99.2 23.4-44.7-15-65-44.8-89.5-78.8.7 18.7 13.8 34.1 26.8 48.4 11.3 12.5 25 26.6 39.7 32.4-12.3-2.9-31.1-3.8-36.2 7.2-28.6-1.9-55.1-4.8-68.7-24.2-10.6-15.4-21.4-41.4-26.3-61.4zm222 124.1c4.1-3 11.1-2.9 17.4-3.6-5.4-2.7-13-3.7-19.3-2.2-.1-4.2-2-6.8-3.2-10.2 10.6-3.8 35.5-28.5 49.6-20.3 6.7 3.9 9.5 26.2 10.1 37 .4 9-.8 18-4.5 22.8-18.8-.6-35.8-2.8-50.7-7 .9-6.1-1-12.1.6-16.5zm-17.2-20c-16.8.8-26-1.2-38.3-10.8.2-.8 1.4-.5 1.5-1.4 18 8 40.8-3.3 59-4.9-7.9 5.1-14.6 11.6-22.2 17.1zm-12.1 33.2c-1.6-9.4-3.5-12-2.8-20.2 25-16.6 29.7 28.6 2.8 20.2zM226 438.6c-11.6-.7-48.1-14-38.5-23.7 9.4 6.5 27.5 4.9 41.3 7.3.8 4.4-2.8 10.2-2.8 16.4zM57.7 497.1c-4.3-12.7-9.2-25.1-14.8-36.9 30.8-23.8 65.3-48.9 102.2-63.5 2.8-1.1 23.2 25.4 26.2 27.6 16.5 11.7 37 21 56.2 30.2 1.2 8.8 3.9 20.2 8.7 35.5.7 2.3 1.4 4.7 2.2 7.2H57.7zm240.6 5.7h-.8c.3-.2.5-.4.8-.5v.5zm7.5-5.7c2.1-1.4 4.3-2.8 6.4-4.3 1.1 1.4 2.2 2.8 3.2 4.3h-9.6zm15.1-24.7c-10.8 7.3-20.6 18.3-33.3 25.2-6 3.3-27 11.7-33.4 10.2-3.6-.8-3.9-5.3-5.4-9.5-3.1-9-10.1-23.4-10.8-37-.8-17.2-2.5-46 16-42.4 14.9 2.9 32.3 9.7 43.9 16.1 7.1 3.9 11.1 8.6 21.9 9.5-.1 1.4-.1 2.8-.2 4.3-5.9 3.9-15.3 3.8-21.8 7.1 9.5.4 17 2.7 23.5 5.9-.1 3.4-.3 7-.4 10.6zm53.4 24.7h-14c-.1-3.2-2.8-5.8-6.1-5.8s-5.9 2.6-6.1 5.8h-17.4c-2.8-4.4-5.7-8.6-8.9-12.5 2.1-2.2 4-4.7 6-6.9 9 3.7 14.8-4.9 21.7-4.2 7.9.8 14.2 11.7 25.4 11l-.6 12.6zm8.7 0c.2-4 .4-7.8.6-11.5 15.6-7.3 29 1.3 35.7 11.5H383zm83.4-37c-2.3 11.2-5.8 24-9.9 37.1-.2-.1-.4-.1-.6-.1H428c.6-1.1 1.2-2.2 1.9-3.3-2.6-6.1-9-8.7-10.9-15.5 12.1-22.7 6.5-93.4-24.2-78.5 4.3-6.3 15.6-11.5 20.8-19.3 13 10.4 20.8 20.3 33.2 31.4 6.8 6 20 13.3 21.4 23.1.8 5.5-2.6 18.9-3.8 25.1zM222.2 130.5c5.4-14.9 27.2-34.7 45-32 7.7 1.2 18 8.2 12.2 17.7-30.2-7-45.2 12.6-54.4 33.1-8.1-2-4.9-13.1-2.8-18.8zm184.1 63.1c8.2-3.6 22.4-.7 29.6-5.3-4.2-11.5-10.3-21.4-9.3-37.7.5 0 1 0 1.4.1 6.8 14.2 12.7 29.2 21.4 41.7-5.7 13.5-43.6 25.4-43.1 1.2zm20.4-43zm-117.2 45.7c-6.8-10.9-19-32.5-14.5-45.3 6.5 11.9 8.6 24.4 17.8 33.3 4.1 4 12.2 9 8.2 20.2-.9 2.7-7.8 8.6-11.7 9.7-14.4 4.3-47.9.9-36.6-17.1 11.9.7 27.9 7.8 36.8-.8zm27.3 70c3.8 6.6 1.4 18.7 12.1 20.6 20.2 3.4 43.6-12.3 58.1-17.8 9-15.2-.8-20.7-8.9-30.5-16.6-20-38.8-44.8-38-74.7 6.7-4.9 7.3 7.4 8.2 9.7 8.7 20.3 30.4 46.2 46.3 63.5 3.9 4.3 10.3 8.4 11 11.2 2.1 8.2-5.4 18-4.5 23.5-21.7 13.9-45.8 29.1-81.4 25.6-7.4-6.7-10.3-21.4-2.9-31.1zm-201.3-9.2c-6.8-3.9-8.4-21-16.4-21.4-11.4-.7-9.3 22.2-9.3 35.5-7.8-7.1-9.2-29.1-3.5-40.3-6.6-3.2-9.5 3.6-13.1 5.9 4.7-34.1 49.8-15.8 42.3 20.3zm299.6 28.8c-10.1 19.2-24.4 40.4-54 41-.6-6.2-1.1-15.6 0-19.4 22.7-2.2 36.6-13.7 54-21.6zm-141.9 12.4c18.9 9.9 53.6 11 79.3 10.2 1.4 5.6 1.3 12.6 1.4 19.4-33 1.8-72-6.4-80.7-29.6zm92.2 46.7c-1.7 4.3-5.3 9.3-9.8 11.1-12.1 4.9-45.6 8.7-62.4-.3-10.7-5.7-17.5-18.5-23.4-26-2.8-3.6-16.9-12.9-.2-12.9 13.1 32.7 58 29 95.8 28.1z" ], + joget: [ 496, 512, [], "f3b7", "M227.5 468.7c-9-13.6-19.9-33.3-23.7-42.4-5.7-13.7-27.2-45.6 31.2-67.1 51.7-19.1 176.7-16.5 208.8-17.6-4 9-8.6 17.9-13.9 26.6-40.4 65.5-110.4 101.5-182 101.5-6.8 0-13.6-.4-20.4-1M66.1 143.9C128 43.4 259.6 12.2 360.1 74.1c74.8 46.1 111.2 130.9 99.3 212.7-24.9-.5-179.3-3.6-230.3-4.9-55.5-1.4-81.7-20.8-58.5-48.2 23.2-27.4 51.1-40.7 68.9-51.2 17.9-10.5 27.3-33.7-23.6-29.7C87.3 161.5 48.6 252.1 37.6 293c-8.8-49.7-.1-102.7 28.5-149.1m-29.2-18c-71.9 116.6-35.6 269.3 81 341.2 116.6 71.9 269.3 35.6 341.2-80.9 71.9-116.6 35.6-269.4-81-341.2-40.5-25.1-85.5-37-129.9-37C165 8 83.8 49.9 36.9 125.9m244.4 110.4c-31.5 20.5-65.3 31.3-65.3 31.3l169.5-1.6 46.5-23.4s3.6-9.5-19.1-15.5c-22.7-6-57 11.3-86.7 27.2-29.7 15.8-31.1 8.2-31.1 8.2s40.2-28.1 50.7-34.5c10.5-6.4 31.9-14 13.4-24.6-3.2-1.8-6.7-2.7-10.4-2.7-17.8 0-41.5 18.7-67.5 35.6" ], + joomla: [ 448, 512, [], "f1aa", "M.6 92.1C.6 58.8 27.4 32 60.4 32c30 0 54.5 21.9 59.2 50.2 32.6-7.6 67.1.6 96.5 30l-44.3 44.3c-20.5-20.5-42.6-16.3-55.4-3.5-14.3 14.3-14.3 37.9 0 52.2l99.5 99.5-44 44.3c-87.7-87.2-49.7-49.7-99.8-99.7-26.8-26.5-35-64.8-24.8-98.9C20.4 144.6.6 120.7.6 92.1zm129.5 116.4l44.3 44.3c10-10 89.7-89.7 99.7-99.8 14.3-14.3 37.6-14.3 51.9 0 12.8 12.8 17 35-3.5 55.4l44 44.3c31.2-31.2 38.5-67.6 28.9-101.2 29.2-4.1 51.9-29.2 51.9-59.5 0-33.2-26.8-60.1-59.8-60.1-30.3 0-55.4 22.5-59.5 51.6-33.8-9.9-71.7-1.5-98.3 25.1-18.3 19.1-71.1 71.5-99.6 99.9zm266.3 152.2c8.2-32.7-.9-68.5-26.3-93.9-11.8-12.2 5 4.7-99.5-99.7l-44.3 44.3 99.7 99.7c14.3 14.3 14.3 37.6 0 51.9-12.8 12.8-35 17-55.4-3.5l-44 44.3c27.6 30.2 68 38.8 102.7 28 5.5 27.4 29.7 48.1 58.9 48.1 33 0 59.8-26.8 59.8-60.1 0-30.2-22.5-55-51.6-59.1zm-84.3-53.1l-44-44.3c-87 86.4-50.4 50.4-99.7 99.8-14.3 14.3-37.6 14.3-51.9 0-13.1-13.4-16.9-35.3 3.2-55.4l-44-44.3c-30.2 30.2-38 65.2-29.5 98.3-26.7 6-46.2 29.9-46.2 58.2C0 453.2 26.8 480 59.8 480c28.6 0 52.5-19.8 58.6-46.7 32.7 8.2 68.5-.6 94.2-26 32.1-32 12.2-12.4 99.5-99.7z" ], + js: [ 448, 512, [], "f3b8", "M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z" ], + "js-square": [ 448, 512, [], "f3b9", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM243.8 381.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z" ], + jsfiddle: [ 576, 512, [], "f1cc", "M510.634 237.462c-4.727-2.621-5.664-5.748-6.381-10.776-2.352-16.488-3.539-33.619-9.097-49.095-35.895-99.957-153.99-143.386-246.849-91.646-27.37 15.25-48.971 36.369-65.493 63.903-3.184-1.508-5.458-2.71-7.824-3.686-30.102-12.421-59.049-10.121-85.331 9.167-25.531 18.737-36.422 44.548-32.676 76.408.355 3.025-1.967 7.621-4.514 9.545-39.712 29.992-56.031 78.065-41.902 124.615 13.831 45.569 57.514 79.796 105.608 81.433 30.291 1.031 60.637.546 90.959.539 84.041-.021 168.09.531 252.12-.48 52.664-.634 96.108-36.873 108.212-87.293 11.54-48.074-11.144-97.3-56.832-122.634zm21.107 156.88c-18.23 22.432-42.343 35.253-71.28 35.65-56.874.781-113.767.23-170.652.23 0 .7-163.028.159-163.728.154-43.861-.332-76.739-19.766-95.175-59.995-18.902-41.245-4.004-90.848 34.186-116.106 9.182-6.073 12.505-11.566 10.096-23.136-5.49-26.361 4.453-47.956 26.42-62.981 22.987-15.723 47.422-16.146 72.034-3.083 10.269 5.45 14.607 11.564 22.198-2.527 14.222-26.399 34.557-46.727 60.671-61.294 97.46-54.366 228.37 7.568 230.24 132.697.122 8.15 2.412 12.428 9.848 15.894 57.56 26.829 74.456 96.122 35.142 144.497zm-87.789-80.499c-5.848 31.157-34.622 55.096-66.666 55.095-16.953-.001-32.058-6.545-44.079-17.705-27.697-25.713-71.141-74.98-95.937-93.387-20.056-14.888-41.99-12.333-60.272 3.782-49.996 44.071 15.859 121.775 67.063 77.188 4.548-3.96 7.84-9.543 12.744-12.844 8.184-5.509 20.766-.884 13.168 10.622-17.358 26.284-49.33 38.197-78.863 29.301-28.897-8.704-48.84-35.968-48.626-70.179 1.225-22.485 12.364-43.06 35.414-55.965 22.575-12.638 46.369-13.146 66.991 2.474C295.68 280.7 320.467 323.97 352.185 343.47c24.558 15.099 54.254 7.363 68.823-17.506 28.83-49.209-34.592-105.016-78.868-63.46-3.989 3.744-6.917 8.932-11.41 11.72-10.975 6.811-17.333-4.113-12.809-10.353 20.703-28.554 50.464-40.44 83.271-28.214 31.429 11.714 49.108 44.366 42.76 78.186z" ], + keybase: [ 412, 512, [], "f4f5", "M177.2 430.9c0 9.8-8 17.8-17.8 17.8s-17.8-8-17.8-17.8 8-17.8 17.8-17.8c9.8-.1 17.8 7.9 17.8 17.8zM270 413c-9.8 0-17.8 8-17.8 17.8s8 17.8 17.8 17.8 17.8-8 17.8-17.8-8-17.8-17.8-17.8zm142.3-36c0 38.9-7.6 73.9-22.2 103h-27.3c23.5-38.7 30.5-94.8 22.4-134.3-16.1 29.5-52.1 38.6-85.9 28.8-127.8-37.5-192.5 19.7-234.6 50.3l18.9-59.3-39.9 42.3c4.8 26.7 15.7 51.3 31.2 72.3H46.1c-9.7-15.8-17.2-33-22.2-51.3L.1 454c0-74.9-5.5-147.6 61.5-215.2 20.2-20.4 43.7-36.2 69.1-46.7-6.8-13.5-9.5-29.2-7.8-46l-19.9-1.2c-17.9-1.1-31.6-16.5-30.6-34.4v-.1L74 84.2c1.1-17.1 15.4-30.6 32.5-30.6 1.3 0-.3-.1 28.2 1.7 13.9.8 21.5 9.8 22.8 11.4 7.1-10.4 14.5-20.5 24.6-34.5l20.6 12.1c-13.6 29-9.1 36.2-9 36.3 3.9 0 13.9-.5 32.4 5.7C246 92.9 262 107 271 126c.4.9 15.5 29 1.2 62.6 19 6.1 51.3 19.9 82.4 51.8 36.6 37.6 57.7 87.4 57.7 136.6zM128 122.3c3.2-10 7.7-19.7 13.1-29.4.1-2 2.2-13.1-7.8-13.8-28.5-1.8-26.3-1.6-26.7-1.6-4.6 0-8.3 3.5-8.6 8.1l-1.6 26.2c-.3 4.7 3.4 8.8 8.1 9.1l23.5 1.4zm25.8 61.8c5.6 9.4 14.1 16.1 22.3 20 0-21.2 28.5-41.9 52.8-17.5l8.4 10.3c20.8-18.8 19.4-45.3 12.1-60.9-13.8-29.1-46.9-32-54.3-31.7-10.3.4-19.7-5.4-23.7-15.3-13.7 21.2-37.2 62.5-17.6 95.1zm82.9 68.4L217 268.6c-1.9 1.6-2.2 4.4-.6 6.3l8.9 10.9c1 1.2 3.8 2.7 6.3.6l19.6-16 5.5 6.8c4.9 6 13.8-1.4 9-7.3-63.6-78.3-41.5-51.1-55.3-68.1-4.7-6-13.9 1.4-9 7.3 1.9 2.3 18.4 22.6 19.8 24.3l-9.6 7.9c-4.6 3.8 2.6 13.3 7.4 9.4l9.7-8 8 9.8zm118.4 25.7c-16.9-23.7-42.6-46.7-73.4-60.4-7.9-3.5-15-6.1-22.9-8.6-2 2.2-4.1 4.3-6.4 6.2l31.9 39.2c10.4 12.7 8.5 31.5-4.2 41.9-1.3 1.1-13.1 10.7-29 4.9-2.9 2.3-10.1 9.9-22.2 9.9-8.6 0-16.6-3.8-22.1-10.5l-8.9-10.9c-6.3-7.8-7.9-17.9-5-26.8-8.2-9.9-8.3-21.3-4.6-30-7.2-1.3-26.7-6.2-42.7-21.4-55.8 20.7-88 64.4-101.3 91.2-14.9 30.2-18.8 60.9-19.9 90.2 8.2-8.7-3.9 4.1 114-120.9l-29.9 93.6c57.8-31.1 124-36 197.4-14.4 23.6 6.9 45.1 1.6 56-13.9 11.1-15.6 8.5-37.7-6.8-59.3zM110.6 107.3l15.6 1 1-15.6-15.6-1-1 15.6z" ], + keycdn: [ 512, 512, [], "f3ba", "M63.8 409.3l60.5-59c32.1 42.8 71.1 66 126.6 67.4 30.5.7 60.3-7 86.4-22.4 5.1 5.3 18.5 19.5 20.9 22-32.2 20.7-69.6 31.1-108.1 30.2-43.3-1.1-84.6-16.7-117.7-44.4.3-.6-38.2 37.5-38.6 37.9 9.5 29.8-13.1 62.4-46.3 62.4C20.7 503.3 0 481.7 0 454.9c0-34.3 33.1-56.6 63.8-45.6zm354.9-252.4c19.1 31.3 29.6 67.4 28.7 104-1.1 44.8-19 87.5-48.6 121 .3.3 23.8 25.2 24.1 25.5 9.6-1.3 19.2 2 25.9 9.1 11.3 12 10.9 30.9-1.1 42.4-12 11.3-30.9 10.9-42.4-1.1-6.7-7-9.4-16.8-7.6-26.3-24.9-26.6-44.4-47.2-44.4-47.2 42.7-34.1 63.3-79.6 64.4-124.2.7-28.9-7.2-57.2-21.1-82.2l22.1-21zM104 53.1c6.7 7 9.4 16.8 7.6 26.3l45.9 48.1c-4.7 3.8-13.3 10.4-22.8 21.3-25.4 28.5-39.6 64.8-40.7 102.9-.7 28.9 6.1 57.2 20 82.4l-22 21.5C72.7 324 63.1 287.9 64.2 250.9c1-44.6 18.3-87.6 47.5-121.1l-25.3-26.4c-9.6 1.3-19.2-2-25.9-9.1-11.3-12-10.9-30.9 1.1-42.4C73.5 40.7 92.2 41 104 53.1zM464.9 8c26 0 47.1 22.4 47.1 48.3S490.9 104 464.9 104c-6.3.1-14-1.1-15.9-1.8l-62.9 59.7c-32.7-43.6-76.7-65.9-126.9-67.2-30.5-.7-60.3 6.8-86.2 22.4l-21.1-22C184.1 74.3 221.5 64 260 64.9c43.3 1.1 84.6 16.7 117.7 44.6l41.1-38.6c-1.5-4.7-2.2-9.6-2.2-14.5C416.5 29.7 438.9 8 464.9 8zM256.7 113.4c5.5 0 10.9.4 16.4 1.1 78.1 9.8 133.4 81.1 123.8 159.1-9.8 78.1-81.1 133.4-159.1 123.8-78.1-9.8-133.4-81.1-123.8-159.2 9.3-72.4 70.1-124.6 142.7-124.8zm-59 119.4c.6 22.7 12.2 41.8 32.4 52.2l-11 51.7h73.7l-11-51.7c20.1-10.9 32.1-29 32.4-52.2-.4-32.8-25.8-57.5-58.3-58.3-32.1.8-57.3 24.8-58.2 58.3zM256 160" ], + kickstarter: [ 448, 512, [], "f3bb", "M400 480H48c-26.4 0-48-21.6-48-48V80c0-26.4 21.6-48 48-48h352c26.4 0 48 21.6 48 48v352c0 26.4-21.6 48-48 48zM199.6 178.5c0-30.7-17.6-45.1-39.7-45.1-25.8 0-40 19.8-40 44.5v154.8c0 25.8 13.7 45.6 40.5 45.6 21.5 0 39.2-14 39.2-45.6v-41.8l60.6 75.7c12.3 14.9 39 16.8 55.8 0 14.6-15.1 14.8-36.8 4-50.4l-49.1-62.8 40.5-58.7c9.4-13.5 9.5-34.5-5.6-49.1-16.4-15.9-44.6-17.3-61.4 7l-44.8 64.7v-38.8z" ], + "kickstarter-k": [ 384, 512, [], "f3bc", "M147.3 114.4c0-56.2-32.5-82.4-73.4-82.4C26.2 32 0 68.2 0 113.4v283c0 47.3 25.3 83.4 74.9 83.4 39.8 0 72.4-25.6 72.4-83.4v-76.5l112.1 138.3c22.7 27.2 72.1 30.7 103.2 0 27-27.6 27.3-67.4 7.4-92.2l-90.8-114.8 74.9-107.4c17.4-24.7 17.5-63.1-10.4-89.8-30.3-29-82.4-31.6-113.6 12.8L147.3 185v-70.6z" ], + korvue: [ 446, 512, [], "f42f", "M386.5 34h-327C26.8 34 0 60.8 0 93.5v327.1C0 453.2 26.8 480 59.5 480h327.1c33 0 59.5-26.8 59.5-59.5v-327C446 60.8 419.2 34 386.5 34zM87.1 120.8h96v116l61.8-116h110.9l-81.2 132H87.1v-132zm161.8 272.1l-65.7-113.6v113.6h-96V262.1h191.5l88.6 130.8H248.9z" ], + laravel: [ 640, 512, [], "f3bd", "M637.5 241.6c-4.2-4.8-62.8-78.1-73.1-90.5-10.3-12.4-15.4-10.2-21.7-9.3-6.4.9-80.5 13.4-89.1 14.8-8.6 1.5-14 4.9-8.7 12.3 4.7 6.6 53.4 75.7 64.2 90.9l-193.7 46.4L161.2 48.7c-6.1-9.1-7.4-12.3-21.4-11.6-14 .6-120.9 9.5-128.5 10.2-7.6.6-16 4-8.4 22s129 279.6 132.4 287.2c3.4 7.6 12.2 20 32.8 15 21.1-5.1 94.3-24.2 134.3-34.7 21.1 38.3 64.2 115.9 72.2 127 10.6 14.9 18 12.4 34.3 7.4 12.8-3.9 199.6-71.1 208-74.5 8.4-3.5 13.6-5.9 7.9-14.4-4.2-6.2-53.5-72.2-79.3-106.8 17.7-4.7 80.6-21.4 87.3-23.3 7.9-2 9-5.8 4.7-10.6zm-352.2 72c-2.3.5-110.8 26.5-116.6 27.8-5.8 1.3-5.8.7-6.5-1.3-.7-2-129-266.7-130.8-270-1.8-3.3-1.7-5.9 0-5.9s102.5-9 106-9.2c3.6-.2 3.2.6 4.5 2.8 0 0 142.2 245.4 144.6 249.7 2.6 4.3 1.1 5.6-1.2 6.1zm306 57.4c1.7 2.7 3.5 4.5-2 6.4-5.4 2-183.7 62.1-187.1 63.6-3.5 1.5-6.2 2-10.6-4.5s-62.4-106.8-62.4-106.8L518 280.6c4.7-1.5 6.2-2.5 9.2 2.2 2.9 4.8 62.4 85.5 64.1 88.2zm12.1-134.1c-4.2.9-73.6 18.1-73.6 18.1l-56.7-77.8c-1.6-2.3-2.9-4.5 1.1-5s68.4-12.2 71.3-12.8c2.9-.7 5.4-1.5 9 3.4 3.6 4.9 52.6 67 54.5 69.4 1.8 2.3-1.4 3.7-5.6 4.7z" ], + lastfm: [ 512, 512, [], "f202", "M225.8 367.1l-18.8-51s-30.5 34-76.2 34c-40.5 0-69.2-35.2-69.2-91.5 0-72.1 36.4-97.9 72.1-97.9 66.5 0 74.8 53.3 100.9 134.9 18.8 56.9 54 102.6 155.4 102.6 72.7 0 122-22.3 122-80.9 0-72.9-62.7-80.6-115-92.1-25.8-5.9-33.4-16.4-33.4-34 0-19.9 15.8-31.7 41.6-31.7 28.2 0 43.4 10.6 45.7 35.8l58.6-7c-4.7-52.8-41.1-74.5-100.9-74.5-52.8 0-104.4 19.9-104.4 83.9 0 39.9 19.4 65.1 68 76.8 44.9 10.6 79.8 13.8 79.8 45.7 0 21.7-21.1 30.5-61 30.5-59.2 0-83.9-31.1-97.9-73.9-32-96.8-43.6-163-161.3-163C45.7 113.8 0 168.3 0 261c0 89.1 45.7 137.2 127.9 137.2 66.2 0 97.9-31.1 97.9-31.1z" ], + "lastfm-square": [ 448, 512, [], "f203", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-92.2 312.9c-63.4 0-85.4-28.6-97.1-64.1-16.3-51-21.5-84.3-63-84.3-22.4 0-45.1 16.1-45.1 61.2 0 35.2 18 57.2 43.3 57.2 28.6 0 47.6-21.3 47.6-21.3l11.7 31.9s-19.8 19.4-61.2 19.4c-51.3 0-79.9-30.1-79.9-85.8 0-57.9 28.6-92 82.5-92 73.5 0 80.8 41.4 100.8 101.9 8.8 26.8 24.2 46.2 61.2 46.2 24.9 0 38.1-5.5 38.1-19.1 0-19.9-21.8-22-49.9-28.6-30.4-7.3-42.5-23.1-42.5-48 0-40 32.3-52.4 65.2-52.4 37.4 0 60.1 13.6 63 46.6l-36.7 4.4c-1.5-15.8-11-22.4-28.6-22.4-16.1 0-26 7.3-26 19.8 0 11 4.8 17.6 20.9 21.3 32.7 7.1 71.8 12 71.8 57.5.1 36.7-30.7 50.6-76.1 50.6z" ], + leanpub: [ 576, 512, [], "f212", "M386.539 111.485l15.096 248.955-10.979-.275c-36.232-.824-71.64 8.783-102.657 27.997-31.016-19.214-66.424-27.997-102.657-27.997-45.564 0-82.07 10.705-123.516 27.723L93.117 129.6c28.546-11.803 61.484-18.115 92.226-18.115 41.173 0 73.836 13.175 102.657 42.544 27.723-28.271 59.013-41.721 98.539-42.544zM569.07 448c-25.526 0-47.485-5.215-70.542-15.645-34.31-15.645-69.993-24.978-107.871-24.978-38.977 0-74.934 12.901-102.657 40.623-27.723-27.723-63.68-40.623-102.657-40.623-37.878 0-73.561 9.333-107.871 24.978C55.239 442.236 32.731 448 8.303 448H6.93L49.475 98.859C88.726 76.626 136.486 64 181.775 64 218.83 64 256.984 71.685 288 93.095 319.016 71.685 357.17 64 394.225 64c45.289 0 93.049 12.626 132.3 34.859L569.07 448zm-43.368-44.741l-34.036-280.246c-30.742-13.999-67.248-21.41-101.009-21.41-38.428 0-74.385 12.077-102.657 38.702-28.272-26.625-64.228-38.702-102.657-38.702-33.761 0-70.267 7.411-101.009 21.41L50.298 403.259c47.211-19.487 82.894-33.486 135.045-33.486 37.604 0 70.817 9.606 102.657 29.644 31.84-20.038 65.052-29.644 102.657-29.644 52.151 0 87.834 13.999 135.045 33.486z" ], + less: [ 640, 512, [], "f41d", "M612.7 219c0-20.5 3.2-32.6 3.2-54.6 0-34.2-12.6-45.2-40.5-45.2h-20.5v24.2h6.3c14.2 0 17.3 4.7 17.3 22.1 0 16.3-1.6 32.6-1.6 51.5 0 24.2 7.9 33.6 23.6 37.3v1.6c-15.8 3.7-23.6 13.1-23.6 37.3 0 18.9 1.6 34.2 1.6 51.5 0 17.9-3.7 22.6-17.3 22.6v.5h-6.3V393h20.5c27.8 0 40.5-11 40.5-45.2 0-22.6-3.2-34.2-3.2-54.6 0-11 6.8-22.6 27.3-23.6v-27.3c-20.5-.7-27.3-12.3-27.3-23.3zm-105.6 32c-15.8-6.3-30.5-10-30.5-20.5 0-7.9 6.3-12.6 17.9-12.6s22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-21 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51s-22.5-41-43-47.8zm-358.9 59.4c-3.7 0-8.4-3.2-8.4-13.1V119.1H65.2c-28.4 0-41 11-41 45.2 0 22.6 3.2 35.2 3.2 54.6 0 11-6.8 22.6-27.3 23.6v27.3c20.5.5 27.3 12.1 27.3 23.1 0 19.4-3.2 31-3.2 53.6 0 34.2 12.6 45.2 40.5 45.2h20.5v-24.2h-6.3c-13.1 0-17.3-5.3-17.3-22.6s1.6-32.1 1.6-51.5c0-24.2-7.9-33.6-23.6-37.3v-1.6c15.8-3.7 23.6-13.1 23.6-37.3 0-18.9-1.6-34.2-1.6-51.5s3.7-22.1 17.3-22.1H93v150.8c0 32.1 11 53.1 43.1 53.1 10 0 17.9-1.6 23.6-3.7l-5.3-34.2c-3.1.8-4.6.8-6.2.8zM379.9 251c-16.3-6.3-31-10-31-20.5 0-7.9 6.3-12.6 17.9-12.6 11.6 0 22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-20.5 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51 .1-28.9-22.5-41-43-47.8zm-155-68.8c-38.4 0-75.1 32.1-74.1 82.5 0 52 34.2 82.5 79.3 82.5 18.9 0 39.9-6.8 56.2-17.9l-15.8-27.8c-11.6 6.8-22.6 10-34.2 10-21 0-37.3-10-41.5-34.2H290c.5-3.7 1.6-11 1.6-19.4.6-42.6-22.6-75.7-66.7-75.7zm-30 66.2c3.2-21 15.8-31 30.5-31 18.9 0 26.3 13.1 26.3 31h-56.8z" ], + line: [ 448, 512, [], "f3c0", "M272.1 204.2v71.1c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.1 0-2.1-.6-2.6-1.3l-32.6-44v42.2c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.8 0-3.2-1.4-3.2-3.2v-71.1c0-1.8 1.4-3.2 3.2-3.2H219c1 0 2.1.5 2.6 1.4l32.6 44v-42.2c0-1.8 1.4-3.2 3.2-3.2h11.4c1.8-.1 3.3 1.4 3.3 3.1zm-82-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 1.8 1.4 3.2 3.2 3.2h11.4c1.8 0 3.2-1.4 3.2-3.2v-71.1c0-1.7-1.4-3.2-3.2-3.2zm-27.5 59.6h-31.1v-56.4c0-1.8-1.4-3.2-3.2-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 .9.3 1.6.9 2.2.6.5 1.3.9 2.2.9h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.7-1.4-3.2-3.1-3.2zM332.1 201h-45.7c-1.7 0-3.2 1.4-3.2 3.2v71.1c0 1.7 1.4 3.2 3.2 3.2h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2V234c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2v-11.4c-.1-1.7-1.5-3.2-3.2-3.2zM448 113.7V399c-.1 44.8-36.8 81.1-81.7 81H81c-44.8-.1-81.1-36.9-81-81.7V113c.1-44.8 36.9-81.1 81.7-81H367c44.8.1 81.1 36.8 81 81.7zm-61.6 122.6c0-73-73.2-132.4-163.1-132.4-89.9 0-163.1 59.4-163.1 132.4 0 65.4 58 120.2 136.4 130.6 19.1 4.1 16.9 11.1 12.6 36.8-.7 4.1-3.3 16.1 14.1 8.8 17.4-7.3 93.9-55.3 128.2-94.7 23.6-26 34.9-52.3 34.9-81.5z" ], + linkedin: [ 448, 512, [], "f08c", "M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z" ], + "linkedin-in": [ 448, 512, [], "f0e1", "M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z" ], + linode: [ 448, 512, [], "f2b8", "M437.4 226.3c-.3-.9-.9-1.4-1.4-2l-70-38.6c-.9-.6-2-.6-3.1 0l-58.9 36c-.9.6-1.4 1.7-1.4 2.6l-.9 31.4-24-16c-.9-.6-2.3-.6-3.1 0L240 260.9l-1.4-35.1c0-.9-.6-2-1.4-2.3l-36-24.3 33.7-17.4c1.1-.6 1.7-1.7 1.7-2.9l-5.7-132.3c0-.9-.9-2-1.7-2.6L138.6.3c-.9-.3-1.7-.3-2.3-.3L12.6 38.6c-1.4.6-2.3 2-2 3.7L38 175.4c.9 3.4 34 27.4 38.6 30.9l-26.9 12.9c-1.4.9-2 2.3-1.7 3.4l20.6 100.3c.6 2.9 23.7 23.1 27.1 26.3l-17.4 10.6c-.9.6-1.7 2-1.4 3.1 1.4 7.1 15.4 77.7 16.9 79.1l65.1 69.1c.6.6 1.4.6 2.3.9.6 0 1.1-.3 1.7-.6l83.7-66.9c.9-.6 1.1-1.4 1.1-2.3l-2-46 28 23.7c1.1.9 2.9.9 4 0l66.9-53.4c.9-.6 1.1-1.4 1.1-2.3l2.3-33.4 20.3 14c1.1.9 2.6.9 3.7 0l54.6-43.7c.6-.3 1.1-1.1 1.1-2 .9-6.5 10.3-70.8 9.7-72.8zm-204.8 4.8l4 92.6-90.6 61.2-14-96.6 100.6-57.2zm-7.7-180l5.4 126-106.6 55.4L104 97.7l120.9-46.6zM44 173.1L18 48l79.7 49.4 19.4 132.9L44 173.1zm30.6 147.8L55.7 230l70 58.3 13.7 93.4-64.8-60.8zm24.3 117.7l-13.7-67.1 61.7 60.9 9.7 67.4-57.7-61.2zm64.5 64.5l-10.6-70.9 85.7-61.4 3.1 70-78.2 62.3zm82-115.1c0-3.4.9-22.9-2-25.1l-24.3-20 22.3-14.9c2.3-1.7 1.1-5.7 1.1-8l29.4 22.6.6 68.3-27.1-22.9zm94.3-25.4l-60.9 48.6-.6-68.6 65.7-46.9-4.2 66.9zm27.7-25.7l-19.1-13.4 2-34c.3-.9-.3-2-1.1-2.6L308 259.7l.6-30 64.6 40.6-5.8 66.6zm54.6-39.8l-48.3 38.3 5.7-65.1 51.1-36.6-8.5 63.4z" ], + linux: [ 448, 512, [], "f17c", "M196.1 123.6c-.2-1.4 1.9-2.3 3.2-2.9 1.7-.7 3.9-1 5.5-.1.4.2.8.7.6 1.1-.4 1.2-2.4 1-3.5 1.6-1 .5-1.8 1.7-3 1.7-1 .1-2.7-.4-2.8-1.4zm24.7-.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm214.7 310.2c-.5 8.2-6.5 13.8-13.9 18.3-14.9 9-37.3 15.8-50.9 32.2l-2.6-2.2 2.6 2.2c-14.2 16.9-31.7 26.6-48.3 27.9-16.5 1.3-32-6.3-40.3-23v-.1c-1.1-2.1-1.9-4.4-2.5-6.7-21.5 1.2-40.2-5.3-55.1-4.1-22 1.2-35.8 6.5-48.3 6.6-4.8 10.6-14.3 17.6-25.9 20.2-16 3.7-36.1 0-55.9-10.4l1.6-3-1.6 3c-18.5-9.8-42-8.9-59.3-12.5-8.7-1.8-16.3-5-20.1-12.3-3.7-7.3-3-17.3 2.2-31.7 1.7-5.1.4-12.7-.8-20.8-.6-3.9-1.2-7.9-1.2-11.8 0-4.3.7-8.5 2.8-12.4 4.5-8.5 11.8-12.1 18.5-14.5 6.7-2.4 12.8-4 17-8.3 5.2-5.5 10.1-14.4 16.6-20.2-2.6-17.2.2-35.4 6.2-53.3 12.6-37.9 39.2-74.2 58.1-96.7 16.1-22.9 20.8-41.3 22.5-64.7C158 103.4 132.4-.2 234.8 0c80.9.1 76.3 85.4 75.8 131.3-.3 30.1 16.3 50.5 33.4 72 15.2 18 35.1 44.3 46.5 74.4 9.3 24.6 12.9 51.8 3.7 79.1 1.4.5 2.8 1.2 4.1 2 1.4.8 2.7 1.8 4 2.9 6.6 5.6 8.7 14.3 10.5 22.4 1.9 8.1 3.6 15.7 7.2 19.7 11.1 12.4 15.9 21.5 15.5 29.7zM220.8 109.1c3.6.9 8.9 2.4 13 4.4-2.1-12.2 4.5-23.5 11.8-23 8.9.3 13.9 15.5 9.1 27.3-.8 1.9-2.8 3.4-3.9 4.6 6.7 2.3 11 4.1 12.6 4.9 7.9-9.5 10.8-26.2 4.3-40.4-9.8-21.4-34.2-21.8-44 .4-3.2 7.2-3.9 14.9-2.9 21.8zm-46.2 18.8c7.8-5.7 6.9-4.7 5.9-5.5-8-6.9-6.6-27.4 1.8-28.1 6.3-.5 10.8 10.7 9.6 19.6 3.1-2.1 6.7-3.6 10.2-4.6 1.7-19.3-9-33.5-19.1-33.5-18.9 0-24 37.5-8.4 52.1zm-9.4 20.9c1.5 4.9 6.1 10.5 14.7 15.3 7.8 4.6 12 11.5 20 15 2.6 1.1 5.7 1.9 9.6 2.1 18.4 1.1 27.1-11.3 38.2-14.9 11.7-3.7 20.1-11 22.7-18.1 3.2-8.5-2.1-14.7-10.5-18.2-11.3-4.9-16.3-5.2-22.6-9.3-10.3-6.6-18.8-8.9-25.9-8.9-14.4 0-23.2 9.8-27.9 14.2-.5.5-7.9 5.9-14.1 10.5-4.2 3.3-5.6 7.4-4.2 12.3zm-33.5 252.8L112.1 366c-6.8-9.2-13.8-14.8-21.9-16-7.7-1.2-12.6 1.4-17.7 6.9-4.8 5.1-8.8 12.3-14.3 18-7.8 6.5-9.3 6.2-19.6 9.9-6.3 2.2-11.3 4.6-14.8 11.3-2.7 5-2.1 12.2-.9 20 1.2 7.9 3 16.3.6 23.9v.2c-5 13.7-5 21.7-2.6 26.4 7.9 15.4 46.6 6.1 76.5 21.9 31.4 16.4 72.6 17.1 75.3-18 2.1-20.5-31.5-49-41-68.9zm153.9 35.8c3.2-11 6.3-21.3 6.8-29 .8-15.2 1.6-28.7 4.4-39.9 3.1-12.6 9.3-23.1 21.4-27.3 2.3-21.1 18.7-21.1 38.3-12.5 18.9 8.5 26 16 22.8 26.1 1 0 2-.1 4.2 0 5.2-16.9-14.3-28-30.7-34.8 2.9-12 2.4-24.1-.4-35.7-6-25.3-22.6-47.8-35.2-59-2.3-.1-2.1 1.9 2.6 6.5 11.6 10.7 37.1 49.2 23.3 84.9-3.9-1-7.6-1.5-10.9-1.4-5.3-29.1-17.5-53.2-23.6-64.6-11.5-21.4-29.5-65.3-37.2-95.7-4.5 6.4-12.4 11.9-22.3 15-4.7 1.5-9.7 5.5-15.9 9-13.9 8-30 8.8-42.4-1.2-4.5-3.6-8-7.6-12.6-10.3-1.6-.9-5.1-3.3-6.2-4.1-2 37.8-27.3 85.3-39.3 112.7-8.3 19.7-13.2 40.8-13.8 61.5-21.8-29.1-5.9-66.3 2.6-82.4 9.5-17.6 11-22.5 8.7-20.8-8.6 14-22 36.3-27.2 59.2-2.7 11.9-3.2 24 .3 35.2 3.5 11.2 11.1 21.5 24.6 29.9 0 0 24.8 14.3 38.3 32.5 7.4 10 9.7 18.7 7.4 24.9-2.5 6.7-9.6 8.9-16.7 8.9 4.8 6 10.3 13 14.4 19.6 37.6 25.7 82.2 15.7 114.3-7.2zM415 408.5c-10-11.3-7.2-33.1-17.1-41.6-6.9-6-13.6-5.4-22.6-5.1-7.7 8.8-25.8 19.6-38.4 16.3-11.5-2.9-18-16.3-18.8-29.5-.3.2-.7.3-1 .5-7.1 3.9-11.1 10.8-13.7 21.1-2.5 10.2-3.4 23.5-4.2 38.7-.7 11.8-6.2 26.4-9.9 40.6-3.5 13.2-5.8 25.2-1.1 36.3 7.2 14.5 19.5 20.4 33.7 19.3 14.2-1.1 30.4-9.8 43.6-25.5 22-26.6 62.3-29.7 63.2-46.5.3-5.1-3.1-13-13.7-24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4 3.9-3.4 5.9-6.3 3.1-6.6-2.8-.3-2.6 2.6-6 5.1-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2-10.4 0-18.7-4.8-24.9-9.7-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z" ], + lyft: [ 512, 512, [], "f3c3", "M0 81.1h77.8v208.7c0 33.1 15 52.8 27.2 61-12.7 11.1-51.2 20.9-80.2-2.8C7.8 334 0 310.7 0 289V81.1zm485.9 173.5v-22h23.8v-76.8h-26.1c-10.1-46.3-51.2-80.7-100.3-80.7-56.6 0-102.7 46-102.7 102.7V357c16 2.3 35.4-.3 51.7-14 17.1-14 24.8-37.2 24.8-59v-6.7h38.8v-76.8h-38.8v-23.3c0-34.6 52.2-34.6 52.2 0v77.1c0 56.6 46 102.7 102.7 102.7v-76.5c-14.5 0-26.1-11.7-26.1-25.9zm-294.3-99v113c0 15.4-23.8 15.4-23.8 0v-113H91v132.7c0 23.8 8 54 45 63.9 37 9.8 58.2-10.6 58.2-10.6-2.1 13.4-14.5 23.3-34.9 25.3-15.5 1.6-35.2-3.6-45-7.8v70.3c25.1 7.5 51.5 9.8 77.6 4.7 47.1-9.1 76.8-48.4 76.8-100.8V155.1h-77.1v.5z" ], + magento: [ 448, 512, [], "f3c4", "M445.7 127.9V384l-63.4 36.5V164.7L223.8 73.1 65.2 164.7l.4 255.9L2.3 384V128.1L224.2 0l221.5 127.9zM255.6 420.5L224 438.9l-31.8-18.2v-256l-63.3 36.6.1 255.9 94.9 54.9 95.1-54.9v-256l-63.4-36.6v255.9z" ], + mailchimp: [ 428, 512, [], "f59e", "M426.56 323.72c-3.09-6.59-8.97-11.13-16.35-12.88-2.47-11.27-5.88-16.8-6.19-17.63 1.3-1.48 2.56-2.97 2.84-3.32 10.42-12.93 3.62-31.86-14.19-36.33-10.02-9.64-19.09-14.17-26.54-17.9-7.14-3.57-4.29-2.17-10.99-5.19-1.78-8.71-2.37-28.97-5.2-43.19-2.54-12.79-7.66-22.06-15.56-28.15-3.16-6.84-7.59-13.74-12.93-18.81 24.84-38.08 31.38-75.69 13.19-95.39-8.1-8.77-20.13-12.93-34.52-12.93-20.26 0-45.18 8.26-70.34 23.54 0 0-16.38-13.18-16.73-13.46-70.08-55.19-268.28 188.7-198.32 242l18.06 13.8c-11.34 31.54 4.43 69.14 37.29 81.21 7.26 2.67 15.14 3.97 23.31 3.51 0 0 53.09 97.36 165.1 97.39 129.58.04 162.55-126.72 162.9-127.86 0 .01 10.5-15.51 5.17-28.41zM20.12 267.95c-14.2-23.96 10.51-73.19 28.09-101.17C91.66 97.63 163.98 43.06 196.82 50.85l9.03-3.46c.03.03 24.67 20.85 24.7 20.87 16.97-10.19 38.58-20.57 58.8-22.64-12.3 2.77-27.29 9.15-45.05 20.01-.43.25-42.02 28.32-67.43 53.52-13.85 13.73-69.45 80.41-69.4 80.35 10.16-19.23 16.86-28.67 32.94-48.9 9.1-11.44 18.81-22.57 28.74-32.84 4.61-4.77 9.28-9.36 13.95-13.71 3.21-2.99 6.44-5.87 9.65-8.62 1.48-1.27 2.96-2.5 4.43-3.71l.01-.01L164.6 64.8l1.72 12.06 23.69 20.87s-20.96 14.11-31.39 23.01c-41.79 35.66-82.8 90.4-98.06 143.69l.73-.03c-7.6 4.19-15.14 10.91-21.73 20.05-.16-.04-17.04-12.43-19.44-16.5zm69.11 100.09c-25.03 0-45.33-21.37-45.33-47.72 0-26.36 20.29-47.72 45.33-47.72 6.49 0 12.66 1.44 18.24 4.02 0 0 9.63 4.86 12.34 27.81 2.82-7.17 4.24-13.06 4.24-13.06 3.23 9.88 4.88 20.26 4.23 30.76 2.68-3.56 5.55-10.27 5.55-10.27 5 29.33-16.4 56.18-44.6 56.18zm55.8-168.53s19.49-37.06 62.33-61.57c-3.19-.51-10.99.48-12.36.64 7.78-6.69 22.24-11.16 32.23-13.19-2.92-1.86-9.89-2.33-13.34-2.42-1.02-.03-1.01-.02-2.22.03 9.4-5.25 26.82-8.34 42.65-5.55-1.99-2.64-6.5-4.57-9.67-5.51-.28-.08-1.52-.39-1.52-.39l1.19-.28c9.54-1.84 20.69.15 29.5 3.69-1-2.32-3.45-5.03-5.29-6.74-.19-.18-1.29-.97-1.29-.97 9.22 1.91 18.06 5.94 24.71 10.5-.9-1.75-3.14-4.69-4.69-6.29 8.81 2.52 18.71 8.81 22.95 17.82.1.2.37.94.4 1.03-16.7-12.84-65.44-9.2-114.24 22.42-22.33 14.48-38.71 30.32-51.34 46.78zm263.32 146.34c-.59 1.15-6.73 34.4-41.86 62.01-44.37 34.86-102.66 31.33-124.67 11.8-11.76-11-16.85-26.73-16.85-26.73s-1.33 8.87-1.56 12.35c-8.87-15.09-8.12-33.52-8.12-33.52s-4.73 8.83-6.9 13.77c-6.53-16.62-3.16-33.78-3.16-33.78l-5.16 7.7s-2.42-18.81 3.52-34.47c6.36-16.74 18.68-28.9 21.11-30.42-9.35-2.97-20.12-11.49-20.14-11.51 0 0 4.28.28 7.26-.4 0 0-18.9-13.54-22.22-34.26 2.74 3.38 8.49 7.21 8.49 7.21-1.86-5.42-2.99-17.49-1.25-29.36l.01-.01c3.58-22.68 22.27-37.45 43.44-37.27 22.54.2 37.65 4.93 56.55-12.5 4-3.69 7.19-6.87 12.81-8.11.59-.13 2.06-.75 5.07-.75 3.05 0 5.98.69 8.67 2.29 10.25 6.1 12.46 22.01 13.56 33.68 4.07 43.28 2.43 35.57 19.94 44.49 8.36 4.25 17.74 8.29 28.43 19.72.03.03.08.09.08.09h.13c9.01.22 13.65 7.31 9.5 12.47-30.23 36.1-72.46 53.39-119.51 54.84-1.94.05-6.32.15-6.34.15-19.01.58-25.19 25.16-13.27 39.95 7.54 9.35 22.03 12.42 33.97 12.46l.17-.06c51.45 1.04 103.14-35.37 112.07-55.44.06-.15.61-1.42.61-1.42-2.07 2.43-52.18 49.61-113.08 47.9 0 0-6.66-.14-12.93-1.6-8.27-1.92-14.55-5.56-16.95-13.8 5.05 1.01 11.45 1.66 18.87 1.66 43.96 0 75.63-19.98 72.33-20.25-.13 0-.26.03-.48.08-5.13 1.19-57.97 21.66-91.37 11.16.08-1.02.24-2.01.48-2.9 2.97-9.95 8.25-8.56 16.79-8.93 30.48-1.01 55.07-8.68 73.5-17.43 19.65-9.33 34.63-21.35 40.03-27.42 7 11.79 6.96 26.92 6.96 26.92s2.74-.96 6.38-.96c11.38.01 13.73 10.23 5.09 20.6zm-149.29 13.7c0-.05-.01-.1-.01-.15.01.05.01.1.01.15zm-.01-.21c-.01-.13-.01-.26-.02-.39-.02-.65-.03-1.33 0-2.02-.02.74-.02 1.42 0 2.02.01.13.01.27.02.39zm.12 1.46c0 .02 0 .04.01.06 0-.02 0-.04-.01-.06zm.02.12c.2 1.58.51 2.31.55 2.4-.23-.49-.42-1.34-.55-2.4zM193.96 59.68l2.87-8.83 4.88 17.72-6.03-1.95-1.72-6.94zm22.38 17.72l-3.62-12.59 9.97 8.36c-2.24 1.44-4.36 2.86-6.35 4.23zm42.71 281.94c-.01-.13-.01-.26-.02-.39.01.13.01.27.02.39zm-.01-.39c-.02-.65-.03-1.33 0-2.02-.03.75-.03 1.42 0 2.02zm.02.6c0-.05-.01-.1-.01-.15m.13 1.46c0-.02 0-.04-.01-.06m.02.12c.2 1.58.51 2.31.55 2.4-.23-.49-.42-1.34-.55-2.4zm52.1-138.61c-.07-3.36.47-8.92 3.63-9.95h.01c5.41-1.88 12.58 11.98 12.91 24.28-4.28-2.14-9.3-3.05-14.47-2.6-1.3-3.97-1.92-7.7-2.08-11.73zM205.38 85.27l-13.59-11.38 20.57 6.28c-2.65 1.88-5 3.6-6.98 5.1zm27.7 166.94c-3.41 1.3-5.83 2.31-7 2.14-1.89-.28-.06-3.75 4.08-7.11 8.33-6.64 19.76-8.7 29.53-5.07 4.28 1.57 9.08 4.72 11.6 8.39.95 1.39 1.21 2.44.82 2.88-.77.9-3.51-.31-7.55-1.89-10.35-3.86-17.98-4.45-31.48.66zm14.55 14.53c-2.31.94-3.81 1.66-4.42 1.17-.62-.48-.01-2.42 2.15-4.51 1.88-1.81 3.83-2.83 6.07-3.77.35-.15.72-.28 1.1-.38 1.04-.28 2.09-.63 3.23-.8 9.12-1.55 15.8 3.51 14.93 4.98-.39.69-2.08.53-4.6.36-5.23-.36-10.71-.27-18.46 2.95zM60.86 323.12zm24.3-25.78c-1.85.39-.81.17-2.64.68a7 7 0 0 0-.77.25c-.58.27-1.11.45-1.62.73-.43.24-4.07 1.86-7.03 5.48-3.99 4.95-5.44 11.43-5.19 17.67.24 6.06 2.02 9.41 2.35 10.23 1.38 2.96-1.85 3.57-4.79.39l-.01-.01c-2.35-2.49-3.86-6.29-4.6-9.66-2.98-13.95 3.24-27.97 17.61-33.57.8-.32 1.74-.51 2.5-.73h-.01c1.47-.44 6.72-1.5 12.07-.67 5.87.91 11.04 3.85 14.33 7.67l.01.01c2.53 2.87 4.43 6.92 4.09 10.53v.01c-.13 1.5-.79 3.65-2.14 4.21-.5.21-1.01.1-1.36-.25-.98-.96-.22-2.93-2.6-6.3-3.17-4.47-10.31-8.76-20.2-6.67zm30.28 31.17c1.88 10.82-6 20.5-15.52 20.7-6.67.15-10.31-4.02-9.66-4.93.3-.43 1.32-.24 2.88-.01 8.5 1.32 13.66-3.86 14.9-9.29.02-.09.35-1.54.34-2.54.07-.88-.03-1.76-.16-2.56-1-5.62-7.45-6.68-11.6-11.15-3.72-4.04-2.99-9.22-.65-11.71 2.81-2.77 6.83-1.76 6.78-.78 0 .52-.97.91-2.17 1.74-1.56 1.1-1.77 2.16-1.37 3.98.26 1 .71 1.65 1.68 2.42 3.48 2.76 12.85 4.7 14.55 14.13zm212.87-81.47c2.58.4 4.22 3.59 3.67 7.13-.55 3.54-3.09 6.08-5.67 5.67-2.58-.4-4.22-3.59-3.67-7.13.56-3.53 3.09-6.07 5.67-5.67zm-28.33 10.31c1.42-2.59 5.44-3.11 8.99-1.16 3.55 1.94 5.27 5.62 3.86 8.2-1.42 2.59-5.44 3.11-8.99 1.16-3.55-1.94-5.28-5.61-3.86-8.2z" ], + mandalorian: [ 390, 512, [], "f50f", "M203.28 511.89c-.98-3.26-1.69-15.83-1.39-24.58.55-15.89.98-24.72 1.4-28.76.64-6.2 2.87-20.72 3.28-21.38.6-.96.4-27.87-.24-33.13-.31-2.58-.63-11.9-.69-20.73-.13-16.47-.53-20.12-2.73-24.76-1.1-2.32-1.23-3.84-.99-11.43.16-4.81 0-10.53-.34-12.71-2.05-12.97-3.46-27.7-3.25-33.9.21-6.12.43-7.15 2.06-9.67 3.05-4.71 6.51-14.04 8.62-23.27 2.26-9.86 3.88-17.18 4.59-20.74.89-4.42 2.43-9.72 4.36-15.05 2.27-6.25 2.49-15.39.37-15.39-.3 0-1.38 1.22-2.41 2.71-1.03 1.49-4.76 4.8-8.29 7.36-8.37 6.08-11.7 9.39-12.66 12.58-.93 3.11-1.02 7.23-.16 7.76.34.21 1.29 2.4 2.11 4.88 1.62 4.88 1.87 10.12.72 15.36-.39 1.77-1.05 5.47-1.46 8.23-.41 2.76-.98 6.46-1.25 8.22-.28 1.76-.97 3.68-1.55 4.26-.96.96-1.14.91-2.05-.53-.55-.87-1.2-3.01-1.44-4.75-.25-1.74-1.63-7.11-3.08-11.93-3.28-10.9-3.52-16.15-.96-20.96.92-1.73 1.67-3.81 1.67-4.61 0-2.39-2.2-5.32-7.41-9.89-7.05-6.18-8.63-7.92-10.23-11.3-1.71-3.6-3.06-4.06-4.54-1.54-1.78 3.01-2.6 9.11-2.97 22.02l-.35 12.13 1.95 2.25c3.21 3.7 12.07 16.45 13.78 19.83 3.41 6.74 4.34 11.69 4.41 23.56.07 11.84.95 22.75 2 24.71.36.66.51 1.35.34 1.52-.17.17.41 2.09 1.29 4.27.88 2.18 1.81 6.22 2.06 8.98.25 2.76 1.02 7.43 1.71 10.37 2.23 9.56 2.77 14.08 2.39 20.14-.2 3.27-.53 11.07-.73 17.32-1.31 41.76-1.85 57.98-2.04 61.21-.12 2.02-.39 11.51-.6 21.07-.36 16.3-1.3 27.37-2.42 28.65-.64.73-8.07-4.91-12.52-9.49-3.75-3.87-4.02-4.79-2.83-9.95.7-3.01 2.26-18.29 3.33-32.62.36-4.78.81-10.5 1.01-12.71.83-9.37 1.66-20.35 2.61-34.78.56-8.46 1.33-16.44 1.72-17.73.38-1.29.89-9.89 1.13-19.11l.43-16.77-2.26-4.3c-1.72-3.28-4.87-6.94-13.22-15.34-6.03-6.07-11.84-12.3-12.91-13.85l-1.95-2.81.75-10.9c1.09-15.71 1.1-48.57.02-59.06l-.89-8.7-3.28-4.52c-5.86-8.08-5.8-7.75-6.22-33.27-.1-6.07-.38-11.5-.63-12.06-.83-1.87-3.05-2.66-8.54-3.05-8.86-.62-10.96-1.9-23.85-14.55-6.15-6.04-12.34-11.97-13.75-13.19-2.81-2.42-2.79-1.99-.56-9.63l1.35-4.65-1.69-3.04c-.93-1.67-2.09-3.51-2.59-4.07-1.33-1.51-5.5-10.89-5.99-13.49-.31-1.66-.09-2.67.87-3.9 2.23-2.86 3.4-5.68 4.45-10.73 2.33-11.19 7.74-26.09 10.6-29.22 3.18-3.47 7.7-1.05 9.41 5.03 1.34 4.79 1.37 9.79.1 18.55-.53 3.68-.98 8.68-.99 11.11-.02 4.01.19 4.69 2.25 7.39 3.33 4.37 7.73 7.41 15.2 10.52 1.7.71 3.82 1.99 4.72 2.85 11.17 10.72 18.62 16.18 22.95 16.85 5.18.8 7.98 4.54 10.04 13.39 1.31 5.65 4 11.14 5.46 11.14.59 0 2.09-.63 3.33-1.39 1.98-1.22 2.25-1.73 2.25-4.18-.01-3.71-1.17-14.08-2-17.84-.37-1.66-.78-4.06-.93-5.35-.14-1.29-.61-3.85-1.03-5.69-2.55-11.16-3.65-15.46-4.1-16.05-1.55-2.02-4.08-10.2-4.93-15.92-1.64-11.11-3.96-14.23-12.91-17.39-4.64-1.64-8.89-4.12-13.32-7.78-1.15-.95-4.01-3.22-6.35-5.06-2.35-1.83-4.41-3.53-4.6-3.76-.18-.23-1.39-1.14-2.69-2.02-6.24-4.22-8.84-6.98-11.26-11.96l-2.44-5.02-.22-12.98-.22-12.98 6.91-6.55c3.95-3.75 8.48-7.35 10.59-8.43 3.31-1.69 4.45-1.89 11.37-2.05 8.53-.19 10.12.02 11.66 1.56 1.53 1.53 1.36 6.4-.29 8.5-.74.94-1.34 1.98-1.34 2.32 0 .58-2.61 4.91-5.42 8.99-.68.99-2.13 5.35-2.37 6.82 20.44 13.39 21.55 3.77 14.07 28.98l11.4 2.54c3.11-8.66 6.47-17.26 8.61-26.22.29-7.63-11.98-4.19-15.4-8.68-2.33-5.93 3.13-14.18 6.06-19.2 1.6-2.34 6.62-4.7 8.82-4.15.88.22 4.16-.35 7.37-1.28 3.18-.92 6.58-1.68 7.55-1.68.97 0 3.66-.58 5.98-1.29 3.65-1.11 4.5-1.17 6.35-.4 1.17.48 3.79 1.09 5.82 1.36 2.02.26 4.72 1.12 6 1.91 1.28.79 3.53 1.77 5.02 2.17 2.51.68 3 .57 7.05-1.67l4.35-2.4 10.7-.41c10.44-.4 10.81-.47 15.26-2.68l4.58-2.3 2.46 1.43c1.76 1.02 3.14 2.73 4.85 5.98 2.36 4.51 2.38 4.58 1.37 7.37-.88 2.44-.89 3.3-.1 6.39.5 1.96 1.45 4.62 2.1 5.91.65 1.29 1.24 3.09 1.31 4.01.31 4.33-.03 5.3-2.41 6.92-2.17 1.47-6.98 7.91-6.98 9.34 0 .32-.48 1.69-1.07 3.03-5.04 11.51-6.76 13.56-14.26 16.98-9.2 4.2-12.3 5.19-16.21 5.19-3.1 0-4 .25-4.54 1.26-.37.69-2.21 2.37-4.09 3.71-2.04 1.47-3.8 3.38-4.38 4.78-.54 1.28-1.66 2.59-2.49 2.91-.83.32-1.94 1.08-2.45 1.71-.52.62-3.66 3.04-7 5.38-3.33 2.34-6.87 5.02-7.87 5.96-1 .94-2.07 1.71-2.39 1.71s-1.28.74-2.13 1.65c-1.31 1.39-1.49 2.11-1.14 4.6.22 1.63.86 4.27 1.42 5.88 1.32 3.8 1.31 7.86-.05 10.57-1.43 2.86-.89 6.65 1.35 9.59 2.01 2.63 2.16 4.56.71 8.84-.61 1.8-1.05 5.45-1.06 8.91-.02 4.88.22 6.28 1.46 8.38 1.2 2.04 1.82 2.48 3.24 2.32 1.98-.23 2.3-1.05 4.71-12.12 2.18-10.03 3.71-11.92 13.76-17.08 2.94-1.51 7.46-3.96 10.03-5.44 2.58-1.48 6.79-3.69 9.37-4.91 6.67-3.16 11.05-6.52 15.22-11.67 7.11-8.79 9.98-16.22 12.85-33.3.55-3.28 1.43-5.65 2.86-7.73 1.29-1.87 2.37-4.62 2.89-7.31 1.02-5.3 2.85-9.08 5.58-11.51 4.7-4.18 6-1.09 4.59 10.87-.46 3.86-1.1 10.33-1.44 14.38l-.61 7.36 4.45 4.09 4.45 4.09.11 8.42c.06 4.63.47 9.53.92 10.89l.82 2.47-6.43 6.28c-8.54 8.33-12.88 13.93-16.76 21.61-1.77 3.49-3.74 7.11-4.38 8.03-2.18 3.11-6.46 13.01-8.76 20.26l-2.29 7.22-6.97 6.49c-3.83 3.57-7.96 7.25-9.17 8.17-3.05 2.32-4.26 5.15-4.26 9.99 0 2.98.43 4.96 1.59 7.26.87 1.74 1.81 3.91 2.09 4.83.28.92.98 2.22 1.57 2.89 1.4 1.59 1.92 16.12.83 23.22-.68 4.48-3.63 12.02-4.7 12.02-1.79 0-4.06 9.27-5.07 20.74-.18 2.02-.62 5.94-.98 8.7-.36 2.76-.96 9.98-1.35 16.05-.77 12.22-.19 18.77 2.05 23.15 3.41 6.69.52 12.69-11.03 22.84l-3.97 3.49.07 5.19c.04 2.86.55 6.85 1.14 8.87 4.61 15.98 4.73 16.92 4.38 37.13-.46 26.4-.26 40.27.63 44.15.42 1.84.91 5 1.08 7.02.17 2.02.66 5.33 1.08 7.36.47 2.26.78 11.02.79 22.74l.02 19.06-1.81 2.63c-2.71 3.91-15.11 13.54-15.49 12.29zm29.53-45.11c-.18-.3-.33-6.87-.33-14.59 0-14.06-.89-27.54-2.26-34.45-.4-2.02-.81-9.7-.9-17.06-.15-11.93-1.4-24.37-2.64-26.38-.66-1.07-3.02-17.66-3.03-21.3-.01-4.23 1.02-6 5.28-9.13 4.14-3.04 4.86-3.14 5.48-.72.28 1.1 1.45 5.62 2.6 10.03 3.93 15.12 4.14 16.27 4.05 21.74-.1 5.78-.13 6.13-1.74 17.73-.98 7.07-1.17 12.39-1.04 28.43.17 19.4-.64 35.73-2.04 41.27-.71 2.78-2.8 5.48-3.43 4.43zm-70.99-37.58c-.24-.38-1.01-5.24-1.73-10.79-.72-5.56-1.49-10.41-1.73-10.79-.23-.38-.68-3.3-.99-6.49-.31-3.19-.91-7.46-1.33-9.48-.99-4.79-3.35-19.35-3.42-21.07-.03-.74-.34-4.05-.7-7.36-.67-6.21-.84-27.67-.22-28.29.96-.96 6.63 2.76 11.33 7.43l5.28 5.25-.45 6.47c-.25 3.56-.6 10.23-.78 14.83-.18 4.6-.49 9.87-.67 11.71-.18 1.84-.61 9.36-.94 16.72-.79 17.41-1.94 31.29-2.65 32-.32.3-.76.24-1-.14zM74.63 162.61c21.07 12.79 17.84 14.15 28.49 17.66 13.01 4.29 18.87 7.13 23.15 16.87-43.66 36.14-69.01 57.9-76.71 70.82-31.02 52.01-5.99 101.59 62.75 87.21-14.18 29.23-77.97 28.63-98.68-4.9-24.68-39.95-22.09-118.3 61-187.66zm210.79 179.02c56.66 6.88 82.32-37.74 46.54-89.23 0 0-26.87-29.34-64.28-67.96 2.98-15.45 9.49-32.12 30.57-53.82 89.2 63.51 92 141.61 92.46 149.36 4.27 70.58-78.66 91.12-105.29 61.65z" ], + mastodon: [ 417, 512, [], "f4f6", "M417.8 179.1c0-97.2-63.7-125.7-63.7-125.7-62.5-28.7-228.5-28.4-290.4 0 0 0-63.7 28.5-63.7 125.7 0 115.7-6.6 259.4 105.6 289.1 40.5 10.7 75.3 13 103.3 11.4 50.8-2.8 79.3-18.1 79.3-18.1l-1.7-36.9s-36.3 11.4-77.1 10.1c-40.4-1.4-83-4.4-89.6-54-.6-4.4-.9-9-.9-13.9 85.6 20.9 158.6 9.1 178.7 6.7 56.1-6.7 105-41.3 111.2-72.9 9.8-49.8 9-121.5 9-121.5zm-75.1 125.2h-46.6V190.1c0-49.7-64-51.6-64 6.9v62.5h-46.3V197c0-58.5-64-56.6-64-6.9v114.2H75.1c0-122.1-5.2-147.9 18.4-175 25.9-28.9 79.8-30.8 103.8 6.1l11.6 19.5 11.6-19.5c24.1-37.1 78.1-34.8 103.8-6.1 23.7 27.3 18.4 53 18.4 175z" ], + maxcdn: [ 512, 512, [], "f136", "M461.1 442.7h-97.4L415.6 200c2.3-10.2.9-19.5-4.4-25.7-5-6.1-13.7-9.6-24.2-9.6h-49.3l-59.5 278h-97.4l59.5-278h-83.4l-59.5 278H0l59.5-278-44.6-95.4H387c39.4 0 75.3 16.3 98.3 44.9 23.3 28.6 31.8 67.4 23.6 105.9l-47.8 222.6z" ], + medapps: [ 320, 512, [], "f3c6", "M118.3 238.4c3.5-12.5 6.9-33.6 13.2-33.6 8.3 1.8 9.6 23.4 18.6 36.6 4.6-23.5 5.3-85.1 14.1-86.7 9-.7 19.7 66.5 22 77.5 9.9 4.1 48.9 6.6 48.9 6.6 1.9 7.3-24 7.6-40 7.8-4.6 14.8-5.4 27.7-11.4 28-4.7.2-8.2-28.8-17.5-49.6l-9.4 65.5c-4.4 13-15.5-22.5-21.9-39.3-3.3-.1-62.4-1.6-47.6-7.8l31-5zM228 448c21.2 0 21.2-32 0-32H92c-21.2 0-21.2 32 0 32h136zm-24 64c21.2 0 21.2-32 0-32h-88c-21.2 0-21.2 32 0 32h88zm34.2-141.5c3.2-18.9 5.2-36.4 11.9-48.8 7.9-14.7 16.1-28.1 24-41 24.6-40.4 45.9-75.2 45.9-125.5C320 69.6 248.2 0 160 0S0 69.6 0 155.2c0 50.2 21.3 85.1 45.9 125.5 7.9 12.9 16 26.3 24 41 6.7 12.5 8.7 29.8 11.9 48.9 3.5 21 36.1 15.7 32.6-5.1-3.6-21.7-5.6-40.7-15.3-58.6C66.5 246.5 33 211.3 33 155.2 33 87.3 90 32 160 32s127 55.3 127 123.2c0 56.1-33.5 91.3-66.1 151.6-9.7 18-11.7 37.4-15.3 58.6-3.4 20.6 29 26.4 32.6 5.1z" ], + medium: [ 448, 512, [], "f23a", "M0 32v448h448V32H0zm372.2 106.1l-24 23c-2.1 1.6-3.1 4.2-2.7 6.7v169.3c-.4 2.6.6 5.2 2.7 6.7l23.5 23v5.1h-118V367l24.3-23.6c2.4-2.4 2.4-3.1 2.4-6.7V199.8l-67.6 171.6h-9.1L125 199.8v115c-.7 4.8 1 9.7 4.4 13.2l31.6 38.3v5.1H71.2v-5.1l31.6-38.3c3.4-3.5 4.9-8.4 4.1-13.2v-133c.4-3.7-1-7.3-3.8-9.8L75 138.1V133h87.3l67.4 148L289 133.1h83.2v5z" ], + "medium-m": [ 512, 512, [], "f3c7", "M71.5 142.3c.6-5.9-1.7-11.8-6.1-15.8L20.3 72.1V64h140.2l108.4 237.7L364.2 64h133.7v8.1l-38.6 37c-3.3 2.5-5 6.7-4.3 10.8v272c-.7 4.1 1 8.3 4.3 10.8l37.7 37v8.1H307.3v-8.1l39.1-37.9c3.8-3.8 3.8-5 3.8-10.8V171.2L241.5 447.1h-14.7L100.4 171.2v184.9c-1.1 7.8 1.5 15.6 7 21.2l50.8 61.6v8.1h-144v-8L65 377.3c5.4-5.6 7.9-13.5 6.5-21.2V142.3z" ], + medrt: [ 544, 512, [], "f3c8", "M113.7 256c0 121.8 83.9 222.8 193.5 241.1-18.7 4.5-38.2 6.9-58.2 6.9C111.4 504 0 393 0 256S111.4 8 248.9 8c20.1 0 39.6 2.4 58.2 6.9C197.5 33.2 113.7 134.2 113.7 256m297.4 100.3c-77.7 55.4-179.6 47.5-240.4-14.6 5.5 14.1 12.7 27.7 21.7 40.5 61.6 88.2 182.4 109.3 269.7 47 87.3-62.3 108.1-184.3 46.5-272.6-9-12.9-19.3-24.3-30.5-34.2 37.4 78.8 10.7 178.5-67 233.9m-218.8-244c-1.4 1-2.7 2.1-4 3.1 64.3-17.8 135.9 4 178.9 60.5 35.7 47 42.9 106.6 24.4 158 56.7-56.2 67.6-142.1 22.3-201.8-50-65.5-149.1-74.4-221.6-19.8M296 224c-4.4 0-8-3.6-8-8v-40c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v40c0 4.4-3.6 8-8 8h-40c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h40c4.4 0 8 3.6 8 8v40c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-40c0-4.4 3.6-8 8-8h40c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-40z" ], + meetup: [ 512, 512, [], "f2e0", "M99 414.3c1.1 5.7-2.3 11.1-8 12.3-5.4 1.1-10.9-2.3-12-8-1.1-5.4 2.3-11.1 7.7-12.3 5.4-1.2 11.1 2.3 12.3 8zm143.1 71.4c-6.3 4.6-8 13.4-3.7 20 4.6 6.6 13.4 8.3 20 3.7 6.3-4.6 8-13.4 3.4-20-4.2-6.5-13.1-8.3-19.7-3.7zm-86-462.3c6.3-1.4 10.3-7.7 8.9-14-1.1-6.6-7.4-10.6-13.7-9.1-6.3 1.4-10.3 7.7-9.1 14 1.4 6.6 7.6 10.6 13.9 9.1zM34.4 226.3c-10-6.9-23.7-4.3-30.6 6-6.9 10-4.3 24 5.7 30.9 10 7.1 23.7 4.6 30.6-5.7 6.9-10.4 4.3-24.1-5.7-31.2zm272-170.9c10.6-6.3 13.7-20 7.7-30.3-6.3-10.6-19.7-14-30-7.7s-13.7 20-7.4 30.6c6 10.3 19.4 13.7 29.7 7.4zm-191.1 58c7.7-5.4 9.4-16 4.3-23.7s-15.7-9.4-23.1-4.3c-7.7 5.4-9.4 16-4.3 23.7 5.1 7.8 15.6 9.5 23.1 4.3zm372.3 156c-7.4 1.7-12.3 9.1-10.6 16.9 1.4 7.4 8.9 12.3 16.3 10.6 7.4-1.4 12.3-8.9 10.6-16.6-1.5-7.4-8.9-12.3-16.3-10.9zm39.7-56.8c-1.1-5.7-6.6-9.1-12-8-5.7 1.1-9.1 6.9-8 12.6 1.1 5.4 6.6 9.1 12.3 8 5.4-1.5 9.1-6.9 7.7-12.6zM447 138.9c-8.6 6-10.6 17.7-4.9 26.3 5.7 8.6 17.4 10.6 26 4.9 8.3-6 10.3-17.7 4.6-26.3-5.7-8.7-17.4-10.9-25.7-4.9zm-6.3 139.4c26.3 43.1 15.1 100-26.3 129.1-17.4 12.3-37.1 17.7-56.9 17.1-12 47.1-69.4 64.6-105.1 32.6-1.1.9-2.6 1.7-3.7 2.9-39.1 27.1-92.3 17.4-119.4-22.3-9.7-14.3-14.6-30.6-15.1-46.9-65.4-10.9-90-94-41.1-139.7-28.3-46.9.6-107.4 53.4-114.9C151.6 70 234.1 38.6 290.1 82c67.4-22.3 136.3 29.4 130.9 101.1 41.1 12.6 52.8 66.9 19.7 95.2zm-70 74.3c-3.1-20.6-40.9-4.6-43.1-27.1-3.1-32 43.7-101.1 40-128-3.4-24-19.4-29.1-33.4-29.4-13.4-.3-16.9 2-21.4 4.6-2.9 1.7-6.6 4.9-11.7-.3-6.3-6-11.1-11.7-19.4-12.9-12.3-2-17.7 2-26.6 9.7-3.4 2.9-12 12.9-20 9.1-3.4-1.7-15.4-7.7-24-11.4-16.3-7.1-40 4.6-48.6 20-12.9 22.9-38 113.1-41.7 125.1-8.6 26.6 10.9 48.6 36.9 47.1 11.1-.6 18.3-4.6 25.4-17.4 4-7.4 41.7-107.7 44.6-112.6 2-3.4 8.9-8 14.6-5.1 5.7 3.1 6.9 9.4 6 15.1-1.1 9.7-28 70.9-28.9 77.7-3.4 22.9 26.9 26.6 38.6 4 3.7-7.1 45.7-92.6 49.4-98.3 4.3-6.3 7.4-8.3 11.7-8 3.1 0 8.3.9 7.1 10.9-1.4 9.4-35.1 72.3-38.9 87.7-4.6 20.6 6.6 41.4 24.9 50.6 11.4 5.7 62.5 15.7 58.5-11.1zm5.7 92.3c-10.3 7.4-12.9 22-5.7 32.6 7.1 10.6 21.4 13.1 32 6 10.6-7.4 13.1-22 6-32.6-7.4-10.6-21.7-13.5-32.3-6z" ], + megaport: [ 496, 512, [], "f5a3", "M248 8C111.04 8 0 119.04 0 256c0 136.97 111.04 248 248 248 136.96 0 248-111.03 248-248C496 119.04 384.96 8 248 8zm85.46 267.67l59.66 59.67v87.05l-26.07 19.23L341 422.39v-65.46l-33.44-33.44-33.44 33.44v65.46L248 441.62l-26.12-19.23v-65.46l-33.44-33.44L155 356.92v65.46l-26.07 19.23-26.06-19.23v-87.05l59.47-59.47V188l59.5-59.5V52.88l26.06-19.23 26.06 19.23v75.64l59.5 59.5m-85.56-11.86l33.44 33.44V276L248 309.33l-33.54-33.54v-66.2l33.44-33.43z" ], + microsoft: [ 448, 512, [], "f3ca", "M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z" ], + mix: [ 448, 512, [], "f3cb", "M0 64v348.9c0 56.2 88 58.1 88 0V174.3c7.9-52.9 88-50.4 88 6.5v175.3c0 57.9 96 58 96 0V240c5.3-54.7 88-52.5 88 4.3v23.8c0 59.9 88 56.6 88 0V64H0z" ], + mixcloud: [ 640, 512, [], "f289", "M424.43 219.729C416.124 134.727 344.135 68 256.919 68c-72.266 0-136.224 46.516-159.205 114.074-54.545 8.029-96.63 54.822-96.63 111.582 0 62.298 50.668 112.966 113.243 112.966h289.614c52.329 0 94.969-42.362 94.969-94.693 0-45.131-32.118-83.063-74.48-92.2zm-20.489 144.53H114.327c-39.04 0-70.881-31.564-70.881-70.604s31.841-70.604 70.881-70.604c18.827 0 36.548 7.475 49.838 20.766 19.963 19.963 50.133-10.227 30.18-30.18-14.675-14.398-32.672-24.365-52.053-29.349 19.935-44.3 64.79-73.926 114.628-73.926 69.496 0 125.979 56.483 125.979 125.702 0 13.568-2.215 26.857-6.369 39.594-8.943 27.517 32.133 38.939 40.147 13.29 2.769-8.306 4.984-16.889 6.369-25.472 19.381 7.476 33.502 26.303 33.502 48.453 0 28.795-23.535 52.33-52.607 52.33zm235.069-52.33c0 44.024-12.737 86.386-37.102 122.657-4.153 6.092-10.798 9.414-17.72 9.414-16.317 0-27.127-18.826-17.443-32.949 19.381-29.349 29.903-63.682 29.903-99.122s-10.521-69.773-29.903-98.845c-15.655-22.831 19.361-47.24 35.163-23.534 24.366 35.993 37.102 78.356 37.102 122.379zm-70.88 0c0 31.565-9.137 62.021-26.857 88.325-4.153 6.091-10.798 9.136-17.72 9.136-17.201 0-27.022-18.979-17.443-32.948 13.013-19.104 19.658-41.255 19.658-64.513 0-22.981-6.645-45.408-19.658-64.512-15.761-22.986 19.008-47.095 35.163-23.535 17.719 26.026 26.857 56.483 26.857 88.047z" ], + mizuni: [ 496, 512, [], "f3cc", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm-80 351.9c-31.4 10.6-58.8 27.3-80 48.2V136c0-22.1 17.9-40 40-40s40 17.9 40 40v223.9zm120-9.9c-12.9-2-26.2-3.1-39.8-3.1-13.8 0-27.2 1.1-40.2 3.1V136c0-22.1 17.9-40 40-40s40 17.9 40 40v214zm120 57.7c-21.2-20.8-48.6-37.4-80-48V136c0-22.1 17.9-40 40-40s40 17.9 40 40v271.7z" ], + modx: [ 448, 512, [], "f285", "M356 241.8l36.7 23.7V480l-133-83.8L356 241.8zM440 75H226.3l-23 37.8 153.5 96.5L440 75zm-89 142.8L55.2 32v214.5l46 29L351 217.8zM97 294.2L8 437h213.7l125-200.5L97 294.2z" ], + monero: [ 496, 512, [], "f3d0", "M352 384h108.4C417 455.9 338.1 504 248 504S79 455.9 35.6 384H144V256.2L248 361l104-105v128zM88 336V128l159.4 159.4L408 128v208h74.8c8.5-25.1 13.2-52 13.2-80C496 119 385 8 248 8S0 119 0 256c0 28 4.6 54.9 13.2 80H88z" ], + napster: [ 496, 512, [], "f3d2", "M298.3 373.6c-14.2 13.6-31.3 24.1-50.4 30.5-19-6.4-36.2-16.9-50.3-30.5h100.7zm44-199.6c20-16.9 43.6-29.2 69.6-36.2V299c0 219.4-328 217.6-328 .3V137.7c25.9 6.9 49.6 19.6 69.5 36.4 56.8-40 132.5-39.9 188.9-.1zm-208.8-58.5c64.4-60 164.3-60.1 228.9-.2-7.1 3.5-13.9 7.3-20.6 11.5-58.7-30.5-129.2-30.4-187.9.1-6.3-4-13.9-8.2-20.4-11.4zM43.8 93.2v69.3c-58.4 36.5-58.4 121.1.1 158.3 26.4 245.1 381.7 240.3 407.6 1.5l.3-1.7c58.7-36.3 58.9-121.7.2-158.2V93.2c-17.3.5-34 3-50.1 7.4-82-91.5-225.5-91.5-307.5.1-16.3-4.4-33.1-7-50.6-7.5zM259.2 352s36-.3 61.3-1.5c10.2-.5 21.1-4 25.5-6.5 26.3-15.1 25.4-39.2 26.2-47.4-79.5-.6-99.9-3.9-113 55.4zm-135.5-55.3c.8 8.2-.1 32.3 26.2 47.4 4.4 2.5 15.2 6 25.5 6.5 25.3 1.1 61.3 1.5 61.3 1.5-13.2-59.4-33.7-56.1-113-55.4zm169.1 123.4c-3.2-5.3-6.9-7.3-6.9-7.3-24.8 7.3-52.2 6.9-75.9 0 0 0-2.9 1.5-6.4 6.6-2.8 4.1-3.7 9.6-3.7 9.6 29.1 17.6 67.1 17.6 96.2 0-.1-.1-.3-4-3.3-8.9z" ], + nimblr: [ 355, 512, [], "f5a8", "M232.6 299.29c15.57 0 27.15 11.46 27.15 26.96 0 15.55-11.62 26.96-27.15 26.96-15.7 0-27.15-11.57-27.15-26.96 0-15.51 11.58-26.96 27.15-26.96zM99.01 326.25c0-15.61 11.68-26.96 27.15-26.96 15.57 0 27.15 11.46 27.15 26.96 0 15.41-11.47 26.96-27.15 26.96-15.44 0-27.15-11.31-27.15-26.96m78.75-167.3C143 158.95 75.45 178.77 45.25 227L0 0v335.48C0 433.13 79.61 512 177.76 512c98.24 0 177.76-78.95 177.76-176.52 0-97.46-79.39-176.53-177.76-176.53zm0 308.12c-73.27 0-132.51-58.9-132.51-131.59 0-72.68 59.24-131.59 132.51-131.59 73.27 0 132.51 58.91 132.51 131.59s-59.25 131.59-132.51 131.59z" ], + "nintendo-switch": [ 448, 512, [], "f418", "M95.9 33.5c-44.6 8-80.5 41-91.8 84.4C0 133.6-.3 142.8.2 264.4.4 376 .5 378.6 2.4 387.3c10.3 46.5 43.3 79.6 90.3 90.5 6.1 1.4 13.9 1.7 64.1 1.9 51.9.4 57.3.3 58.7-1.1 1.4-1.4 1.5-19.3 1.5-222.2 0-150.5-.3-221.3-.9-222.6-.9-1.7-2.5-1.8-56.9-1.7-44.2.1-57.5.4-63.3 1.4zm83.9 222.6V444l-37.8-.5c-34.8-.4-38.5-.6-45.5-2.3-29.9-7.7-52-30.7-58.3-60.7-2-9.4-2-240.1-.1-249.3 5.6-26.1 23.7-47.7 48-57.4 12.2-4.9 17.9-5.5 57.6-5.6l35.9-.1v188zm-75.9-131.2c-5.8 1.1-14.7 5.6-19.5 9.7-9.7 8.4-14.6 20.4-13.8 34.5.4 7.3.8 9.3 3.8 15.2 4.4 9 10.9 15.6 19.9 20 6.2 3.1 7.8 3.4 15.9 3.7 7.3.3 9.9 0 14.8-1.7 20.1-6.8 32.3-26.3 28.8-46.4-3.9-23.7-26.6-39.7-49.9-35zm158.2-92.3c-.4.3-.6 100.8-.6 223.5 0 202.3.1 222.8 1.5 223.4 2.5.9 74.5.6 83.4-.4 37.7-4.3 71-27.2 89-61.2 2.3-4.4 5.4-11.7 7-16.2 5.8-17.4 5.7-12.8 5.7-146.1 0-106.4-.2-122.3-1.5-129-9.2-48.3-46.1-84.8-94.5-93.1-6.5-1.1-16.5-1.4-48.8-1.4-22.4-.1-40.9.2-41.2.5zm99.1 202.1c14.5 3.8 26.3 14.8 31.2 28.9 3.1 8.7 3 21.5-.1 29.5-5.7 14.7-16.8 25-31.1 28.8-23.2 6-47.9-8-54.6-31-2-7-1.9-18.9.4-26.2 6.9-22.7 31-36.1 54.2-30z" ], + node: [ 640, 512, [], "f419", "M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4.1l14.8 8.8c.5.3 1.3.3 1.8 0L375 408c.5-.3.9-.9.9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6.3-.9 1-.9 1.6v66.7c0 .6.4 1.2.9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9.7-1.7 1.7-1.7h7.3c.9 0 1.7.7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7zm46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6.2.8.8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5.3-.4.5-.8.4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7.7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8zm54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1zm-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3 0 5.2 4.2 9.4 9.3 9.4 5.2-.1 9.4-4.3 9.4-9.4zm-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7.1 1.8 1.2 2.1 2.8.1 1 .3 2.7.6 3.3zm-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8zM137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3.4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3.7 2.5 1.8 3.2 1.1.7 2.5.7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1 1.3 0 2.6.3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1.7 2.6.7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2l.2-95zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4zm-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6.3-.9.9-.9 1.6v24.3c0 .7.4 1.3.9 1.6l21 12.1c.6.3 1.3.3 1.8 0l21-12.1c.6-.3.9-.9.9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3.7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1.7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2l36.7-21.3zM559 219c-.4.3-.7.7-.7 1.2v13.6c0 .5.3 1 .7 1.2l11.8 6.8c.4.3 1 .3 1.4 0L584 235c.4-.3.7-.7.7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0L559 219zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7.1-.5.2-1.1.2-1.7zm-74.3-124.9l-.8.5h1.1l-.3-.5zm76.2 130.2l-.4-.7v.9l.4-.2z" ], + "node-js": [ 448, 512, [], "f3d3", "M224 508c-6.7 0-13.5-1.8-19.4-5.2l-61.7-36.5c-9.2-5.2-4.7-7-1.7-8 12.3-4.3 14.8-5.2 27.9-12.7 1.4-.8 3.2-.5 4.6.4l47.4 28.1c1.7 1 4.1 1 5.7 0l184.7-106.6c1.7-1 2.8-3 2.8-5V149.3c0-2.1-1.1-4-2.9-5.1L226.8 37.7c-1.7-1-4-1-5.7 0L36.6 144.3c-1.8 1-2.9 3-2.9 5.1v213.1c0 2 1.1 4 2.9 4.9l50.6 29.2c27.5 13.7 44.3-2.4 44.3-18.7V167.5c0-3 2.4-5.3 5.4-5.3h23.4c2.9 0 5.4 2.3 5.4 5.3V378c0 36.6-20 57.6-54.7 57.6-10.7 0-19.1 0-42.5-11.6l-48.4-27.9C8.1 389.2.7 376.3.7 362.4V149.3c0-13.8 7.4-26.8 19.4-33.7L204.6 9c11.7-6.6 27.2-6.6 38.8 0l184.7 106.7c12 6.9 19.4 19.8 19.4 33.7v213.1c0 13.8-7.4 26.7-19.4 33.7L243.4 502.8c-5.9 3.4-12.6 5.2-19.4 5.2zm149.1-210.1c0-39.9-27-50.5-83.7-58-57.4-7.6-63.2-11.5-63.2-24.9 0-11.1 4.9-25.9 47.4-25.9 37.9 0 51.9 8.2 57.7 33.8.5 2.4 2.7 4.2 5.2 4.2h24c1.5 0 2.9-.6 3.9-1.7s1.5-2.6 1.4-4.1c-3.7-44.1-33-64.6-92.2-64.6-52.7 0-84.1 22.2-84.1 59.5 0 40.4 31.3 51.6 81.8 56.6 60.5 5.9 65.2 14.8 65.2 26.7 0 20.6-16.6 29.4-55.5 29.4-48.9 0-59.6-12.3-63.2-36.6-.4-2.6-2.6-4.5-5.3-4.5h-23.9c-3 0-5.3 2.4-5.3 5.3 0 31.1 16.9 68.2 97.8 68.2 58.4-.1 92-23.2 92-63.4z" ], + npm: [ 576, 512, [], "f3d4", "M288 288h-32v-64h32v64zm288-128v192H288v32H160v-32H0V160h576zm-416 32H32v128h64v-96h32v96h32V192zm160 0H192v160h64v-32h64V192zm224 0H352v128h64v-96h32v96h32v-96h32v96h32V192z" ], + ns8: [ 640, 512, [], "f3d5", "M187.1 159.9l-34.2 113.7-54.5-113.7H49L0 320h44.9L76 213.5 126.6 320h56.9L232 159.9h-44.9zm452.5-.9c-2.9-18-23.9-28.1-42.1-31.3-44.6-7.8-101.9 16.3-88.5 58.8v.1c-43.8 8.7-74.3 26.8-94.2 48.2-3-9.8-13.6-16.6-34-16.6h-87.6c-9.3 0-12.9-2.3-11.5-7.4 1.6-5.5 1.9-6.8 3.7-12.2 2.1-6.4 7.8-7.1 13.3-7.1h133.5l9.7-31.5c-139.7 0-144.5-.5-160.1 1.2-12.3 1.3-23.5 4.8-30.6 15-6.8 9.9-14.4 35.6-17.6 47.1-5.4 19.4-.6 28.6 32.8 28.6h87.3c7.8 0 8.8 2.7 7.7 6.6-1.1 4.4-2.8 10-4.5 14.6-1.6 4.2-4.7 7.4-13.8 7.4H216.3L204.7 320c139.9 0 145.3-.6 160.9-2.3 6.6-.7 13-2.1 18.5-4.9.2 3.7.5 7.3 1.2 10.8 5.4 30.5 27.4 52.3 56.8 59.5 48.6 11.9 108.7-16.8 135.1-68 18.7-36.2 14.1-76.2-3.4-105.5h.1c29.6-5.9 70.3-22 65.7-50.6zM530.7 263.7c-5.9 29.5-36.6 47.8-61.6 43.9-30.9-4.8-38.5-39.5-14.1-64.8 16.2-16.8 45.2-24 68.5-26.9 6.7 14.1 10.3 32 7.2 47.8zm21.8-83.1c-4.2-6-9.8-18.5-2.5-26.3 6.7-7.2 20.9-10.1 31.8-7.7 15.3 3.4 19.7 15.9 4.9 24.4-10.7 6.1-23.6 8.1-34.2 9.6z" ], + nutritionix: [ 400, 512, [], "f3d6", "M88 8.1S221.4-.1 209 112.5c0 0 19.1-74.9 103-40.6 0 0-17.7 74-88 56 0 0 14.6-54.6 66.1-56.6 0 0-39.9-10.3-82.1 48.8 0 0-19.8-94.5-93.6-99.7 0 0 75.2 19.4 77.6 107.5 0 .1-106.4 7-104-119.8zm312 315.6c0 48.5-9.7 95.3-32 132.3-42.2 30.9-105 48-168 48-62.9 0-125.8-17.1-168-48C9.7 419 0 372.2 0 323.7 0 275.3 17.7 229 40 192c42.2-30.9 97.1-48.6 160-48.6 63 0 117.8 17.6 160 48.6 22.3 37 40 83.3 40 131.7zM120 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM192 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM264 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM336 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm24-39.6c-4.8-22.3-7.4-36.9-16-56-38.8-19.9-90.5-32-144-32S94.8 180.1 56 200c-8.8 19.5-11.2 33.9-16 56 42.2-7.9 98.7-14.8 160-14.8s117.8 6.9 160 14.8z" ], + odnoklassniki: [ 320, 512, [], "f263", "M275.1 334c-27.4 17.4-65.1 24.3-90 26.9l20.9 20.6 76.3 76.3c27.9 28.6-17.5 73.3-45.7 45.7-19.1-19.4-47.1-47.4-76.3-76.6L84 503.4c-28.2 27.5-73.6-17.6-45.4-45.7 19.4-19.4 47.1-47.4 76.3-76.3l20.6-20.6c-24.6-2.6-62.9-9.1-90.6-26.9-32.6-21-46.9-33.3-34.3-59 7.4-14.6 27.7-26.9 54.6-5.7 0 0 36.3 28.9 94.9 28.9s94.9-28.9 94.9-28.9c26.9-21.1 47.1-8.9 54.6 5.7 12.4 25.7-1.9 38-34.5 59.1zM30.3 129.7C30.3 58 88.6 0 160 0s129.7 58 129.7 129.7c0 71.4-58.3 129.4-129.7 129.4s-129.7-58-129.7-129.4zm66 0c0 35.1 28.6 63.7 63.7 63.7s63.7-28.6 63.7-63.7c0-35.4-28.6-64-63.7-64s-63.7 28.6-63.7 64z" ], + "odnoklassniki-square": [ 448, 512, [], "f264", "M184.2 177.1c0-22.1 17.9-40 39.8-40s39.8 17.9 39.8 40c0 22-17.9 39.8-39.8 39.8s-39.8-17.9-39.8-39.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-305.1 97.1c0 44.6 36.4 80.9 81.1 80.9s81.1-36.2 81.1-80.9c0-44.8-36.4-81.1-81.1-81.1s-81.1 36.2-81.1 81.1zm174.5 90.7c-4.6-9.1-17.3-16.8-34.1-3.6 0 0-22.7 18-59.3 18s-59.3-18-59.3-18c-16.8-13.2-29.5-5.5-34.1 3.6-7.9 16.1 1.1 23.7 21.4 37 17.3 11.1 41.2 15.2 56.6 16.8l-12.9 12.9c-18.2 18-35.5 35.5-47.7 47.7-17.6 17.6 10.7 45.8 28.4 28.6l47.7-47.9c18.2 18.2 35.7 35.7 47.7 47.9 17.6 17.2 46-10.7 28.6-28.6l-47.7-47.7-13-12.9c15.5-1.6 39.1-5.9 56.2-16.8 20.4-13.3 29.3-21 21.5-37z" ], + "old-republic": [ 496, 512, [], "f510", "M235.76 10.23c7.5-.31 15-.28 22.5-.09 3.61.14 7.2.4 10.79.73 4.92.27 9.79 1.03 14.67 1.62 2.93.43 5.83.98 8.75 1.46 7.9 1.33 15.67 3.28 23.39 5.4 12.24 3.47 24.19 7.92 35.76 13.21 26.56 12.24 50.94 29.21 71.63 49.88 20.03 20.09 36.72 43.55 48.89 69.19 1.13 2.59 2.44 5.1 3.47 7.74 2.81 6.43 5.39 12.97 7.58 19.63 4.14 12.33 7.34 24.99 9.42 37.83.57 3.14 1.04 6.3 1.4 9.47.55 3.83.94 7.69 1.18 11.56.83 8.34.84 16.73.77 25.1-.07 4.97-.26 9.94-.75 14.89-.24 3.38-.51 6.76-.98 10.12-.39 2.72-.63 5.46-1.11 8.17-.9 5.15-1.7 10.31-2.87 15.41-4.1 18.5-10.3 36.55-18.51 53.63-15.77 32.83-38.83 62.17-67.12 85.12a246.503 246.503 0 0 1-56.91 34.86c-6.21 2.68-12.46 5.25-18.87 7.41-3.51 1.16-7.01 2.38-10.57 3.39-6.62 1.88-13.29 3.64-20.04 5-4.66.91-9.34 1.73-14.03 2.48-5.25.66-10.5 1.44-15.79 1.74-6.69.66-13.41.84-20.12.81-6.82.03-13.65-.12-20.45-.79-3.29-.23-6.57-.5-9.83-.95-2.72-.39-5.46-.63-8.17-1.11-4.12-.72-8.25-1.37-12.35-2.22-4.25-.94-8.49-1.89-12.69-3.02-8.63-2.17-17.08-5.01-25.41-8.13-10.49-4.12-20.79-8.75-30.64-14.25-2.14-1.15-4.28-2.29-6.35-3.57-11.22-6.58-21.86-14.1-31.92-22.34-34.68-28.41-61.41-66.43-76.35-108.7-3.09-8.74-5.71-17.65-7.8-26.68-1.48-6.16-2.52-12.42-3.58-18.66-.4-2.35-.61-4.73-.95-7.09-.6-3.96-.75-7.96-1.17-11.94-.8-9.47-.71-18.99-.51-28.49.14-3.51.34-7.01.7-10.51.31-3.17.46-6.37.92-9.52.41-2.81.65-5.65 1.16-8.44.7-3.94 1.3-7.9 2.12-11.82 3.43-16.52 8.47-32.73 15.26-48.18 1.15-2.92 2.59-5.72 3.86-8.59 8.05-16.71 17.9-32.56 29.49-47.06 20-25.38 45.1-46.68 73.27-62.47 7.5-4.15 15.16-8.05 23.07-11.37 15.82-6.88 32.41-11.95 49.31-15.38 3.51-.67 7.04-1.24 10.56-1.85 2.62-.47 5.28-.7 7.91-1.08 3.53-.53 7.1-.68 10.65-1.04 2.46-.24 4.91-.36 7.36-.51m8.64 24.41c-9.23.1-18.43.99-27.57 2.23-7.3 1.08-14.53 2.6-21.71 4.3-13.91 3.5-27.48 8.34-40.46 14.42-10.46 4.99-20.59 10.7-30.18 17.22-4.18 2.92-8.4 5.8-12.34 9.03-5.08 3.97-9.98 8.17-14.68 12.59-2.51 2.24-4.81 4.7-7.22 7.06-28.22 28.79-48.44 65.39-57.5 104.69-2.04 8.44-3.54 17.02-4.44 25.65-1.1 8.89-1.44 17.85-1.41 26.8.11 7.14.38 14.28 1.22 21.37.62 7.12 1.87 14.16 3.2 21.18 1.07 4.65 2.03 9.32 3.33 13.91 6.29 23.38 16.5 45.7 30.07 65.75 8.64 12.98 18.78 24.93 29.98 35.77 16.28 15.82 35.05 29.04 55.34 39.22 7.28 3.52 14.66 6.87 22.27 9.63 5.04 1.76 10.06 3.57 15.22 4.98 11.26 3.23 22.77 5.6 34.39 7.06 2.91.29 5.81.61 8.72.9 13.82 1.08 27.74 1 41.54-.43 4.45-.6 8.92-.99 13.35-1.78 3.63-.67 7.28-1.25 10.87-2.1 4.13-.98 8.28-1.91 12.36-3.07 26.5-7.34 51.58-19.71 73.58-36.2 15.78-11.82 29.96-25.76 42.12-41.28 3.26-4.02 6.17-8.31 9.13-12.55 3.39-5.06 6.58-10.25 9.6-15.54 2.4-4.44 4.74-8.91 6.95-13.45 5.69-12.05 10.28-24.62 13.75-37.49 2.59-10.01 4.75-20.16 5.9-30.45 1.77-13.47 1.94-27.1 1.29-40.65-.29-3.89-.67-7.77-1-11.66-2.23-19.08-6.79-37.91-13.82-55.8-5.95-15.13-13.53-29.63-22.61-43.13-12.69-18.8-28.24-35.68-45.97-49.83-25.05-20-54.47-34.55-85.65-42.08-7.78-1.93-15.69-3.34-23.63-4.45-3.91-.59-7.85-.82-11.77-1.24-7.39-.57-14.81-.72-22.22-.58zM139.26 83.53c13.3-8.89 28.08-15.38 43.3-20.18-3.17 1.77-6.44 3.38-9.53 5.29-11.21 6.68-21.52 14.9-30.38 24.49-6.8 7.43-12.76 15.73-17.01 24.89-3.29 6.86-5.64 14.19-6.86 21.71-.93 4.85-1.3 9.81-1.17 14.75.13 13.66 4.44 27.08 11.29 38.82 5.92 10.22 13.63 19.33 22.36 27.26 4.85 4.36 10.24 8.09 14.95 12.6 2.26 2.19 4.49 4.42 6.43 6.91 2.62 3.31 4.89 6.99 5.99 11.1.9 3.02.66 6.2.69 9.31.02 4.1-.04 8.2.03 12.3.14 3.54-.02 7.09.11 10.63.08 2.38.02 4.76.05 7.14.16 5.77.06 11.53.15 17.3.11 2.91.02 5.82.13 8.74.03 1.63.13 3.28-.03 4.91-.91.12-1.82.18-2.73.16-10.99 0-21.88-2.63-31.95-6.93-6-2.7-11.81-5.89-17.09-9.83-5.75-4.19-11.09-8.96-15.79-14.31-6.53-7.24-11.98-15.39-16.62-23.95-1.07-2.03-2.24-4.02-3.18-6.12-1.16-2.64-2.62-5.14-3.67-7.82-4.05-9.68-6.57-19.94-8.08-30.31-.49-4.44-1.09-8.88-1.2-13.35-.7-15.73.84-31.55 4.67-46.82 2.12-8.15 4.77-16.18 8.31-23.83 6.32-14.2 15.34-27.18 26.3-38.19 6.28-6.2 13.13-11.84 20.53-16.67zm175.37-20.12c2.74.74 5.41 1.74 8.09 2.68 6.36 2.33 12.68 4.84 18.71 7.96 13.11 6.44 25.31 14.81 35.82 24.97 10.2 9.95 18.74 21.6 25.14 34.34 1.28 2.75 2.64 5.46 3.81 8.26 6.31 15.1 10 31.26 11.23 47.57.41 4.54.44 9.09.45 13.64.07 11.64-1.49 23.25-4.3 34.53-1.97 7.27-4.35 14.49-7.86 21.18-3.18 6.64-6.68 13.16-10.84 19.24-6.94 10.47-15.6 19.87-25.82 27.22-10.48 7.64-22.64 13.02-35.4 15.38-3.51.69-7.08 1.08-10.66 1.21-1.85.06-3.72.16-5.56-.1-.28-2.15 0-4.31-.01-6.46-.03-3.73.14-7.45.1-11.17.19-7.02.02-14.05.21-21.07.03-2.38-.03-4.76.03-7.14.17-5.07-.04-10.14.14-15.21.1-2.99-.24-6.04.51-8.96.66-2.5 1.78-4.86 3.09-7.08 4.46-7.31 11.06-12.96 17.68-18.26 5.38-4.18 10.47-8.77 15.02-13.84 7.68-8.37 14.17-17.88 18.78-28.27 2.5-5.93 4.52-12.1 5.55-18.46.86-4.37 1.06-8.83 1.01-13.27-.02-7.85-1.4-15.65-3.64-23.17-1.75-5.73-4.27-11.18-7.09-16.45-3.87-6.93-8.65-13.31-13.96-19.2-9.94-10.85-21.75-19.94-34.6-27.1-1.85-1.02-3.84-1.82-5.63-2.97zm-100.8 58.45c.98-1.18 1.99-2.33 3.12-3.38-.61.93-1.27 1.81-1.95 2.68-3.1 3.88-5.54 8.31-7.03 13.06-.87 3.27-1.68 6.6-1.73 10-.07 2.52-.08 5.07.32 7.57 1.13 7.63 4.33 14.85 8.77 21.12 2 2.7 4.25 5.27 6.92 7.33 1.62 1.27 3.53 2.09 5.34 3.05 3.11 1.68 6.32 3.23 9.07 5.48 2.67 2.09 4.55 5.33 4.4 8.79-.01 73.67 0 147.34-.01 221.02 0 1.35-.08 2.7.04 4.04.13 1.48.82 2.83 1.47 4.15.86 1.66 1.78 3.34 3.18 4.62.85.77 1.97 1.4 3.15 1.24 1.5-.2 2.66-1.35 3.45-2.57.96-1.51 1.68-3.16 2.28-4.85.76-2.13.44-4.42.54-6.63.14-4.03-.02-8.06.14-12.09.03-5.89.03-11.77.06-17.66.14-3.62.03-7.24.11-10.86.15-4.03-.02-8.06.14-12.09.03-5.99.03-11.98.07-17.97.14-3.62.02-7.24.11-10.86.14-3.93-.02-7.86.14-11.78.03-5.99.03-11.98.06-17.97.16-3.94-.01-7.88.19-11.82.29 1.44.13 2.92.22 4.38.19 3.61.42 7.23.76 10.84.32 3.44.44 6.89.86 10.32.37 3.1.51 6.22.95 9.31.57 4.09.87 8.21 1.54 12.29 1.46 9.04 2.83 18.11 5.09 26.99 1.13 4.82 2.4 9.61 4 14.3 2.54 7.9 5.72 15.67 10.31 22.62 1.73 2.64 3.87 4.98 6.1 7.21.27.25.55.51.88.71.6.25 1.31-.07 1.7-.57.71-.88 1.17-1.94 1.7-2.93 4.05-7.8 8.18-15.56 12.34-23.31.7-1.31 1.44-2.62 2.56-3.61 1.75-1.57 3.84-2.69 5.98-3.63 2.88-1.22 5.9-2.19 9.03-2.42 6.58-.62 13.11.75 19.56 1.85 3.69.58 7.4 1.17 11.13 1.41 3.74.1 7.48.05 11.21-.28 8.55-.92 16.99-2.96 24.94-6.25 5.3-2.24 10.46-4.83 15.31-7.93 11.46-7.21 21.46-16.57 30.04-27.01 1.17-1.42 2.25-2.9 3.46-4.28-1.2 3.24-2.67 6.37-4.16 9.48-1.25 2.9-2.84 5.61-4.27 8.42-5.16 9.63-11.02 18.91-17.75 27.52-4.03 5.21-8.53 10.05-13.33 14.57-6.64 6.05-14.07 11.37-22.43 14.76-8.21 3.37-17.31 4.63-26.09 3.29-3.56-.58-7.01-1.69-10.41-2.88-2.79-.97-5.39-2.38-8.03-3.69-3.43-1.71-6.64-3.81-9.71-6.08 2.71 3.06 5.69 5.86 8.7 8.61 4.27 3.76 8.74 7.31 13.63 10.23 3.98 2.45 8.29 4.4 12.84 5.51 1.46.37 2.96.46 4.45.6-1.25 1.1-2.63 2.04-3.99 2.98-9.61 6.54-20.01 11.86-30.69 16.43-20.86 8.7-43.17 13.97-65.74 15.34-4.66.24-9.32.36-13.98.36-4.98-.11-9.97-.13-14.92-.65-11.2-.76-22.29-2.73-33.17-5.43-10.35-2.71-20.55-6.12-30.3-10.55-8.71-3.86-17.12-8.42-24.99-13.79-1.83-1.31-3.74-2.53-5.37-4.08 6.6-1.19 13.03-3.39 18.99-6.48 5.74-2.86 10.99-6.66 15.63-11.07 2.24-2.19 4.29-4.59 6.19-7.09-3.43 2.13-6.93 4.15-10.62 5.78-4.41 2.16-9.07 3.77-13.81 5.02-5.73 1.52-11.74 1.73-17.61 1.14-8.13-.95-15.86-4.27-22.51-8.98-4.32-2.94-8.22-6.43-11.96-10.06-9.93-10.16-18.2-21.81-25.66-33.86-3.94-6.27-7.53-12.75-11.12-19.22-1.05-2.04-2.15-4.05-3.18-6.1 2.85 2.92 5.57 5.97 8.43 8.88 8.99 8.97 18.56 17.44 29.16 24.48 7.55 4.9 15.67 9.23 24.56 11.03 3.11.73 6.32.47 9.47.81 2.77.28 5.56.2 8.34.3 5.05.06 10.11.04 15.16-.16 3.65-.16 7.27-.66 10.89-1.09 2.07-.25 4.11-.71 6.14-1.2 3.88-.95 8.11-.96 11.83.61 4.76 1.85 8.44 5.64 11.38 9.71 2.16 3.02 4.06 6.22 5.66 9.58 1.16 2.43 2.46 4.79 3.55 7.26 1 2.24 2.15 4.42 3.42 6.52.67 1.02 1.4 2.15 2.62 2.55 1.06-.75 1.71-1.91 2.28-3.03 2.1-4.16 3.42-8.65 4.89-13.05 2.02-6.59 3.78-13.27 5.19-20.02 2.21-9.25 3.25-18.72 4.54-28.13.56-3.98.83-7.99 1.31-11.97.87-10.64 1.9-21.27 2.24-31.94.08-1.86.24-3.71.25-5.57.01-4.35.25-8.69.22-13.03-.01-2.38-.01-4.76 0-7.13.05-5.07-.2-10.14-.22-15.21-.2-6.61-.71-13.2-1.29-19.78-.73-5.88-1.55-11.78-3.12-17.51-2.05-7.75-5.59-15.03-9.8-21.82-3.16-5.07-6.79-9.88-11.09-14.03-3.88-3.86-8.58-7.08-13.94-8.45-1.5-.41-3.06-.45-4.59-.64.07-2.99.7-5.93 1.26-8.85 1.59-7.71 3.8-15.3 6.76-22.6 1.52-4.03 3.41-7.9 5.39-11.72 3.45-6.56 7.62-12.79 12.46-18.46zm31.27 1.7c.35-.06.71-.12 1.07-.19.19 1.79.09 3.58.1 5.37v38.13c-.01 1.74.13 3.49-.15 5.22-.36-.03-.71-.05-1.06-.05-.95-3.75-1.72-7.55-2.62-11.31-.38-1.53-.58-3.09-1.07-4.59-1.7-.24-3.43-.17-5.15-.2-5.06-.01-10.13 0-15.19-.01-1.66-.01-3.32.09-4.98-.03-.03-.39-.26-.91.16-1.18 1.28-.65 2.72-.88 4.06-1.35 3.43-1.14 6.88-2.16 10.31-3.31 1.39-.48 2.9-.72 4.16-1.54.04-.56.02-1.13-.05-1.68-1.23-.55-2.53-.87-3.81-1.28-3.13-1.03-6.29-1.96-9.41-3.02-1.79-.62-3.67-1-5.41-1.79-.03-.37-.07-.73-.11-1.09 5.09-.19 10.2.06 15.3-.12 3.36-.13 6.73.08 10.09-.07.12-.39.26-.77.37-1.16 1.08-4.94 2.33-9.83 3.39-14.75zm5.97-.2c.36.05.72.12 1.08.2.98 3.85 1.73 7.76 2.71 11.61.36 1.42.56 2.88 1.03 4.27 2.53.18 5.07-.01 7.61.05 5.16.12 10.33.12 15.49.07.76-.01 1.52.03 2.28.08-.04.36-.07.72-.1 1.08-1.82.83-3.78 1.25-5.67 1.89-3.73 1.23-7.48 2.39-11.22 3.57-.57.17-1.12.42-1.67.64-.15.55-.18 1.12-.12 1.69.87.48 1.82.81 2.77 1.09 4.88 1.52 9.73 3.14 14.63 4.6.38.13.78.27 1.13.49.4.27.23.79.15 1.18-1.66.13-3.31.03-4.97.04-5.17.01-10.33-.01-15.5.01-1.61.03-3.22-.02-4.82.21-.52 1.67-.72 3.42-1.17 5.11-.94 3.57-1.52 7.24-2.54 10.78-.36.01-.71.02-1.06.06-.29-1.73-.15-3.48-.15-5.22v-38.13c.02-1.78-.08-3.58.11-5.37zM65.05 168.33c1.12-2.15 2.08-4.4 3.37-6.46-1.82 7.56-2.91 15.27-3.62 23-.8 7.71-.85 15.49-.54 23.23 1.05 19.94 5.54 39.83 14.23 57.88 2.99 5.99 6.35 11.83 10.5 17.11 6.12 7.47 12.53 14.76 19.84 21.09 4.8 4.1 9.99 7.78 15.54 10.8 3.27 1.65 6.51 3.39 9.94 4.68 5.01 2.03 10.19 3.61 15.42 4.94 3.83.96 7.78 1.41 11.52 2.71 5 1.57 9.47 4.61 13.03 8.43 4.93 5.23 8.09 11.87 10.2 18.67.99 2.9 1.59 5.91 2.17 8.92.15.75.22 1.52.16 2.29-6.5 2.78-13.26 5.06-20.26 6.18-4.11.78-8.29.99-12.46 1.08-10.25.24-20.47-1.76-30.12-5.12-3.74-1.42-7.49-2.85-11.03-4.72-8.06-3.84-15.64-8.7-22.46-14.46-2.92-2.55-5.83-5.13-8.4-8.03-9.16-9.83-16.3-21.41-21.79-33.65-2.39-5.55-4.61-11.18-6.37-16.96-1.17-3.94-2.36-7.89-3.26-11.91-.75-2.94-1.22-5.95-1.87-8.92-.46-2.14-.69-4.32-1.03-6.48-.85-5.43-1.28-10.93-1.33-16.43.11-6.18.25-12.37 1.07-18.5.4-2.86.67-5.74 1.15-8.6.98-5.7 2.14-11.37 3.71-16.93 3.09-11.65 7.48-22.95 12.69-33.84zm363.73-6.44c1.1 1.66 1.91 3.48 2.78 5.26 2.1 4.45 4.24 8.9 6.02 13.49 7.61 18.76 12.3 38.79 13.04 59.05.02 1.76.07 3.52.11 5.29.13 9.57-1.27 19.09-3.18 28.45-.73 3.59-1.54 7.17-2.58 10.69-4.04 14.72-10 29-18.41 41.78-8.21 12.57-19.01 23.55-31.84 31.41-5.73 3.59-11.79 6.64-18.05 9.19-5.78 2.19-11.71 4.03-17.8 5.11-6.4 1.05-12.91 1.52-19.4 1.23-7.92-.48-15.78-2.07-23.21-4.85-1.94-.8-3.94-1.46-5.84-2.33-.21-1.51.25-2.99.53-4.46 1.16-5.74 3.03-11.36 5.7-16.58 2.37-4.51 5.52-8.65 9.46-11.9 2.43-2.05 5.24-3.61 8.16-4.83 3.58-1.5 7.47-1.97 11.24-2.83 7.23-1.71 14.37-3.93 21.15-7 10.35-4.65 19.71-11.38 27.65-19.46 1.59-1.61 3.23-3.18 4.74-4.87 3.37-3.76 6.71-7.57 9.85-11.53 7.48-10.07 12.82-21.59 16.71-33.48 1.58-5.3 3.21-10.6 4.21-16.05.63-2.87 1.04-5.78 1.52-8.68.87-6.09 1.59-12.22 1.68-18.38.12-6.65.14-13.32-.53-19.94-.73-7.99-1.87-15.96-3.71-23.78z" ], + opencart: [ 640, 512, [], "f23d", "M423.3 440.7c0 25.3-20.3 45.6-45.6 45.6s-45.8-20.3-45.8-45.6 20.6-45.8 45.8-45.8c25.4 0 45.6 20.5 45.6 45.8zm-253.9-45.8c-25.3 0-45.6 20.6-45.6 45.8s20.3 45.6 45.6 45.6 45.8-20.3 45.8-45.6-20.5-45.8-45.8-45.8zm291.7-270C158.9 124.9 81.9 112.1 0 25.7c34.4 51.7 53.3 148.9 373.1 144.2 333.3-5 130 86.1 70.8 188.9 186.7-166.7 319.4-233.9 17.2-233.9z" ], + openid: [ 448, 512, [], "f19b", "M271.5 432l-68 32C88.5 453.7 0 392.5 0 318.2c0-71.5 82.5-131 191.7-144.3v43c-71.5 12.5-124 53-124 101.3 0 51 58.5 93.3 135.7 103v-340l68-33.2v384zM448 291l-131.3-28.5 36.8-20.7c-19.5-11.5-43.5-20-70-24.8v-43c46.2 5.5 87.7 19.5 120.3 39.3l35-19.8L448 291z" ], + opera: [ 496, 512, [], "f26a", "M313.9 32.7c-170.2 0-252.6 223.8-147.5 355.1 36.5 45.4 88.6 75.6 147.5 75.6 36.3 0 70.3-11.1 99.4-30.4-43.8 39.2-101.9 63-165.3 63-3.9 0-8 0-11.9-.3C104.6 489.6 0 381.1 0 248 0 111 111 0 248 0h.8c63.1.3 120.7 24.1 164.4 63.1-29-19.4-63.1-30.4-99.3-30.4zm101.8 397.7c-40.9 24.7-90.7 23.6-132-5.8 56.2-20.5 97.7-91.6 97.7-176.6 0-84.7-41.2-155.8-97.4-176.6 41.8-29.2 91.2-30.3 132.9-5 105.9 98.7 105.5 265.7-1.2 364z" ], + "optin-monster": [ 576, 512, [], "f23c", "M550.671 450.303c0 11.62-15.673 19.457-32.158 14.863-12.16-3.243-31.346-17.565-36.211-27.294-5.674-11.62 4.054-32.698 18.916-30.806 15.674 1.621 49.453 25.401 49.453 43.237zM372.86 75.223c-3.783-72.151-100.796-79.718-125.928-23.51 44.588-24.321 90.257-15.673 125.928 23.51zM74.795 407.066c-15.673 1.621-49.452 25.401-49.452 43.237 0 11.62 15.673 19.457 32.157 14.863 12.16-3.243 31.076-17.565 35.94-27.294 5.946-11.62-3.782-32.698-18.645-30.806zm497.765 14.322c1.081 3.513 1.892 7.026 1.892 10.809.81 31.616-44.317 64.045-73.503 65.125-17.295.81-34.59-8.377-42.696-23.51-113.497 4.053-226.994 4.864-340.22 0-8.377 15.133-25.672 24.05-42.967 23.51-28.915-1.081-74.043-33.509-73.503-65.125.27-3.783.811-7.296 1.892-10.809-5.566-9.463-4.845-15.282 5.405-11.62 3.243-5.134 7.026-9.458 11.08-13.782-2.57-10.917 1.27-14.094 11.079-9.188 4.594-3.243 9.998-6.485 15.944-9.188 0-15.757 11.839-11.131 17.295-5.675 12.467-1.78 20.129.709 26.753 5.675v-19.726c-12.987 0-40.641-11.375-45.94-36.212-4.974-20.725 2.607-38.075 25.132-47.56.81-5.945 8.107-14.052 14.862-15.944 7.567-1.892 12.431 4.594 14.052 10.269 7.425 0 17.757 1.465 21.078 8.107 5.405-.541 11.079-1.352 16.484-1.892-2.432-1.892-5.134-3.513-8.107-4.594-5.134-8.917-13.782-11.079-24.591-11.62 0-.81 0-1.621.27-2.702-19.727-.541-44.048-5.675-54.857-17.835-21.321-23.638-15.935-83.577 12.16-103.498 8.377-5.675 21.618-.811 22.699 9.728 2.425 20.598.399 26.833 26.212 25.942 8.107-7.836 16.755-14.592 26.483-19.997-14.862-1.352-28.914 1.621-43.778 3.783 12.752-12.48 23.953-25.442 56.748-42.427 23.511-11.89 49.993-20.808 76.205-23.239-18.646-7.837-39.993-11.891-59.721-16.484 76.475-16.214 174.569-22.159 244.289 37.562 18.105 15.403 32.427 36.211 42.696 59.992 39.799 4.853 36.47-5.581 38.643-25.132 1.081-10.269 14.322-15.403 22.699-9.458 14.862 10.539 22.159 30.806 24.59 48.101 2.162 17.835.27 41.345-12.43 55.127-10.809 12.16-34.32 17.565-53.776 18.105v2.703c-11.08.27-20.268 2.432-25.673 11.62-2.972 1.081-5.674 2.703-8.377 4.594 5.675.54 11.35 1.351 16.755 1.891 1.869-5.619 12.535-8.377 21.077-8.377 1.621-5.405 6.756-11.89 14.052-10.269s14.052 9.998 14.863 15.944c10.809 4.324 22.159 12.16 25.131 25.672 1.892 8.107 1.621 15.133.27 21.888-5.726 25.262-33.361 36.212-45.939 36.212 0 6.756 0 13.241-.27 19.726 8.01-6.006 16.367-7.158 26.752-5.675 5.919-5.919 17.565-9.41 17.565 5.675 5.675 2.703 11.349 5.945 15.944 9.188 10.1-5.051 13.669-.539 10.809 9.188 4.053 4.323 8.107 8.917 11.079 13.782 10.136-3.62 11.021 2.078 5.409 11.62zm-73.773-254.016c17.295 6.756 26.212 22.159 30.265 35.67 1.081-10.539-2.702-39.453-13.782-51.073-7.296-7.296-14.052-5.134-14.052.81.001 6.216-1.35 11.62-2.431 14.593zm-18.646 12.43c12.971 15.673 17.024 41.615 12.7 62.963 10.809-2.162 20.537-6.215 26.212-12.16 1.892-2.162 3.783-4.864 4.864-7.566-1.081-21.348-10.269-42.697-29.725-48.912-3.242 3.243-9.187 4.864-14.051 5.675zm-21.889.811c7.567 20.537 12.431 42.696 14.322 64.585 3.513 0 7.567-.27 11.62-.811 5.945-24.321-.27-51.614-14.052-63.504-3.783 0-8.107 0-11.89-.27zM77.768 167.372c-1.081-2.973-2.432-8.377-2.432-14.593 0-5.945-7.026-8.107-14.052-.81-11.35 11.62-14.863 40.534-13.782 51.073 4.053-13.512 12.971-28.915 30.266-35.67zm5.675 75.394c-4.324-21.348-.27-47.291 12.701-62.963-4.865-.811-10.809-2.432-14.052-5.675-19.457 6.215-28.375 27.563-29.726 48.912 1.351 2.702 2.972 5.404 4.864 7.566 5.675 6.215 15.403 9.998 26.213 12.16zm41.345-61.073c-5.134 1.081-9.998 2.973-14.862 4.865l-12.16 5.134v-.27c-7.296 14.052-9.999 34.319-5.405 52.965 4.594.541 8.647.811 12.7.811 2.432-22.159 9.188-43.778 19.727-63.505zm88.095-23.239c0 42.155 34.319 76.205 76.205 76.205s76.205-34.05 76.205-76.205c0-41.886-34.319-75.935-76.205-75.935s-76.205 34.049-76.205 75.935zm152.41 97.283c9.969 50.608 3.299 64.692 16.484 58.099 15.944-8.107 22.699-39.183 22.97-57.019-12.971-.81-26.213-.81-39.454-1.08zm-71.611-.541v-.27c-.27 5.134.27 38.103 4.324 41.075 11.079 5.405 39.453 4.594 51.073 1.081 5.405-1.621 2.432-37.022 1.621-41.886-18.916-.27-38.102-.27-57.018 0zm-14.053 0v-.27c-19.456.27-38.642.27-57.829.811-1.892 9.187-4.594 48.911 1.892 51.614 12.971 5.675 41.616 5.134 54.586 1.621 4.595-2.432 2.433-45.399 1.351-53.776zm-85.662 57.56c5.405 2.432 8.647 2.432 9.728-4.324 1.892-8.647 2.432-36.752 4.865-52.155-12.16.27-24.591.811-36.752 1.621-5.405 19.727.27 45.129 22.159 54.858zm-65.666-11.08c43.778 47.02 92.689 85.663 155.923 106.47 67.558-19.186 115.659-59.991 163.219-107.011-11.095-4.315-7.715-10.363-7.296-11.62-8.918-.81-17.835-1.892-26.483-2.702-9.458 32.968-35.94 52.965-46.75 31.616-2.702-5.134-3.513-11.62-4.594-16.754-3.783 8.377-13.242 8.107-24.591 8.918-13.241 1.081-31.617 1.351-44.048-2.972-2.972 12.971-11.079 12.971-26.752 14.322-14.052 1.352-48.642 4.054-54.857-10.809-1.081 28.644-35.13 9.998-45.129-7.026-3.243-5.675-5.405-11.35-7.026-17.565-7.837.81-15.673 1.621-23.511 2.702 2.443 3.663 1.549 9.052-8.105 12.431zM115.6 453.545c-5.674-23.239-18.646-49.722-33.508-54.046-22.429-6.756-68.909 23.51-66.207 54.586 12.701 19.457 39.994 35.67 59.181 36.481 17.835.81 35.94-11.08 39.724-28.914.539-2.432.81-5.134.81-8.107zm7.296-5.944c33.509-19.457 69.179-35.671 105.931-47.02-38.643-20.537-68.098-47.831-97.283-77.016-2.162 1.352-5.134 2.432-7.836 3.513-1.637 4.91 8.718 5.33 5.405 12.431-2.162 4.054-8.648 7.567-15.133 9.188-2.161 2.702-5.134 4.864-7.836 6.485h-.27c-.27 13.511-.27 27.024.27 40.535 8.939 15.964 15.426 33.314 16.752 51.884zm320.764 12.7c-36.752-21.348-74.044-41.345-115.659-52.965-13.782 6.215-27.833 11.349-42.155 15.403-2.162.811-2.162.811-4.324 0-11.89-3.783-23.239-8.107-34.859-13.241-40.265 11.62-77.286 29.185-112.416 50.803h-.27v.27c.27 0 .27 0 .27-.27 103.227 4.054 206.455 3.513 309.413 0zm27.023-64.045l-.27.27c.541-13.782.811-27.563.811-41.345-2.973-1.621-5.675-4.054-8.107-6.756-6.485-1.351-12.971-5.134-15.133-8.918-1.892-4.053 1.351-7.566 5.945-10.269-.27-.541-.541-1.621-.541-2.432-2.972-.811-5.405-1.892-7.567-3.243-31.616 29.455-65.396 56.749-103.498 76.746 38.914 11.62 75.935 28.104 111.875 47.561 1.05-14.692 7.231-35.749 16.485-51.614zm23.24 3.244c-14.593 4.323-27.834 30.806-33.509 54.046 0 23.826 21.278 37.897 40.534 37.022 19.186-.811 46.48-17.024 59.181-36.481 2.973-31.077-43.507-61.344-66.206-54.587zM290.709 134.133c.045 0 .089.003.134.003.046 0 .09-.003.136-.003h-.27zm0 96.743c28.645 0 51.884-21.618 51.884-48.371 0-36.092-40.507-58.079-72.151-44.318 9.458 2.972 16.484 11.62 16.484 21.618 0 23.257-33.291 31.955-46.48 11.35-7.297 34.067 19.368 59.721 50.263 59.721zM68.039 474.083c.54 6.486 12.16 12.701 21.618 9.458 6.756-2.703 14.593-10.539 17.295-16.214 2.973-7.026-1.081-19.997-9.728-18.375-8.917 1.621-29.725 16.754-29.185 25.131zm410.75-25.131c-8.377-1.621-12.431 11.349-9.458 18.375 2.432 5.675 10.269 13.511 17.295 16.214 9.187 3.243 21.078-2.972 21.348-9.458.811-8.377-20.267-23.51-29.185-25.131z" ], + osi: [ 495, 512, [], "f41a", "M0 259.2C2.3 123.4 97.4 26.8 213.8 11.1c138.8-18.6 255.6 75.8 278 201.1 21.3 118.8-44 230-151.6 274-9.3 3.8-14.4 1.7-18-7.7-17.8-46.3-35.6-92.7-53.4-139-3.1-8.1-1-13.2 7-16.8 24.2-11 39.3-29.4 43.3-55.8 6.4-42.4-24.5-78.7-64.5-82.2-39-3.4-71.8 23.7-77.5 59.7-5.2 33 11.1 63.7 41.9 77.7 9.6 4.4 11.5 8.6 7.8 18.4-17.9 46.6-35.8 93.2-53.7 139.9-2.6 6.9-8.3 9.3-15.5 6.5-52.6-20.3-101.4-61-130.8-119C1.9 318.7 1.6 280.2 0 259.2zm20.9-1.9c.4 6.6.6 14.3 1.3 22.1 6.3 71.9 49.6 143.5 131 183.1 3.2 1.5 4.4.8 5.6-2.3 14.9-39.1 29.9-78.2 45-117.3 1.3-3.3.6-4.8-2.4-6.7-31.6-19.9-47.3-48.5-45.6-86 1-21.6 9.3-40.5 23.8-56.3 30-32.7 77-39.8 115.5-17.6 31.9 18.4 49.5 53.8 45.2 90.4-3.6 30.6-19.3 53.9-45.7 69.8-2.7 1.6-3.5 2.9-2.3 6 15.2 39.2 30.2 78.4 45.2 117.7 1.2 3.1 2.4 3.8 5.6 2.3 35.5-16.6 65.2-40.3 88.1-72 34.8-48.2 49.1-101.9 42.3-161C459.8 112 354.1 14.7 218 31.5 111.9 44.5 22.7 134 20.9 257.3z" ], + page4: [ 496, 512, [], "f3d7", "M248 504C111 504 0 393 0 256S111 8 248 8c20.9 0 41.3 2.6 60.7 7.5L42.3 392H248v112zm0-143.6V146.8L98.6 360.4H248zm96 31.6v92.7c45.7-19.2 84.5-51.7 111.4-92.7H344zm57.4-138.2l-21.2 8.4 21.2 8.3v-16.7zm-20.3 54.5c-6.7 0-8 6.3-8 12.9v7.7h16.2v-10c0-5.9-2.3-10.6-8.2-10.6zM496 256c0 37.3-8.2 72.7-23 104.4H344V27.3C433.3 64.8 496 153.1 496 256zM360.4 143.6h68.2V96h-13.9v32.6h-13.9V99h-13.9v29.6h-12.7V96h-13.9v47.6zm68.1 185.3H402v-11c0-15.4-5.6-25.2-20.9-25.2-15.4 0-20.7 10.6-20.7 25.9v25.3h68.2v-15zm0-103l-68.2 29.7V268l68.2 29.5v-16.6l-14.4-5.7v-26.5l14.4-5.9v-16.9zm-4.8-68.5h-35.6V184H402v-12.2h11c8.6 15.8 1.3 35.3-18.6 35.3-22.5 0-28.3-25.3-15.5-37.7l-11.6-10.6c-16.2 17.5-12.2 63.9 27.1 63.9 34 0 44.7-35.9 29.3-65.3z" ], + pagelines: [ 384, 512, [], "f18c", "M384 312.7c-55.1 136.7-187.1 54-187.1 54-40.5 81.8-107.4 134.4-184.6 134.7-16.1 0-16.6-24.4 0-24.4 64.4-.3 120.5-42.7 157.2-110.1-41.1 15.9-118.6 27.9-161.6-82.2 109-44.9 159.1 11.2 178.3 45.5 9.9-24.4 17-50.9 21.6-79.7 0 0-139.7 21.9-149.5-98.1 119.1-47.9 152.6 76.7 152.6 76.7 1.6-16.7 3.3-52.6 3.3-53.4 0 0-106.3-73.7-38.1-165.2 124.6 43 61.4 162.4 61.4 162.4.5 1.6.5 23.8 0 33.4 0 0 45.2-89 136.4-57.5-4.2 134-141.9 106.4-141.9 106.4-4.4 27.4-11.2 53.4-20 77.5 0 0 83-91.8 172-20z" ], + palfed: [ 576, 512, [], "f3d8", "M384.9 193.9c0-47.4-55.2-44.2-95.4-29.8-1.3 39.4-2.5 80.7-3 119.8.7 2.8 2.6 6.2 15.1 6.2 36.8 0 83.4-42.8 83.3-96.2zm-194.5 72.2c.2 0 6.5-2.7 11.2-2.7 26.6 0 20.7 44.1-14.4 44.1-21.5 0-37.1-18.1-37.1-43 0-42 42.9-95.6 100.7-126.5 1-12.4 3-22 10.5-28.2 11.2-9 26.6-3.5 29.5 11.1 72.2-22.2 135.2 1 135.2 72 0 77.9-79.3 152.6-140.1 138.2-.1 39.4.9 74.4 2.7 100v.2c.2 3.4.6 12.5-5.3 19.1-9.6 10.6-33.4 10-36.4-22.3-4.1-44.4.2-206.1 1.4-242.5-21.5 15-58.5 50.3-58.5 75.9.2 2.5.4 4 .6 4.6zM8 181.1s-.1 37.4 38.4 37.4h30l22.4 217.2s0 44.3 44.7 44.3h288.9s44.7-.4 44.7-44.3l22.4-217.2h30s38.4 1.2 38.4-37.4c0 0 .1-37.4-38.4-37.4h-30.1c-7.3-25.6-30.2-74.3-119.4-74.3h-28V50.3s-2.7-18.4-21.1-18.4h-85.8s-21.1 0-21.1 18.4v19.1h-28.1s-105 4.2-120.5 74.3h-29S8 142.5 8 181.1z" ], + patreon: [ 512, 512, [], "f3d9", "M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z" ], + paypal: [ 384, 512, [], "f1ed", "M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z" ], + periscope: [ 448, 512, [], "f3da", "M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z" ], + phabricator: [ 496, 512, [], "f3db", "M323 262.1l-.1-13s21.7-19.8 21.1-21.2l-9.5-20c-.6-1.4-29.5-.5-29.5-.5l-9.4-9.3s.2-28.5-1.2-29.1l-20.1-9.2c-1.4-.6-20.7 21-20.7 21l-13.1-.2s-20.5-21.4-21.9-20.8l-20 8.3c-1.4.5.2 28.9.2 28.9l-9.1 9.1s-29.2-.9-29.7.4l-8.1 19.8c-.6 1.4 21 21 21 21l.1 12.9s-21.7 19.8-21.1 21.2l9.5 20c.6 1.4 29.5.5 29.5.5l9.4 9.3s-.2 31.8 1.2 32.3l20.1 8.3c1.4.6 20.7-23.5 20.7-23.5l13.1.2s20.5 23.8 21.8 23.3l20-7.5c1.4-.6-.2-32.1-.2-32.1l9.1-9.1s29.2.9 29.7-.5l8.1-19.8c.7-1.1-20.9-20.7-20.9-20.7zm-44.9-8.7c.7 17.1-12.8 31.6-30.1 32.4-17.3.8-32.1-12.5-32.8-29.6-.7-17.1 12.8-31.6 30.1-32.3 17.3-.8 32.1 12.5 32.8 29.5zm201.2-37.9l-97-97-.1.1c-75.1-73.3-195.4-72.8-269.8 1.6-50.9 51-27.8 27.9-95.7 95.3-22.3 22.3-22.3 58.7 0 81 69.9 69.4 46.4 46 97.4 97l.1-.1c75.1 73.3 195.4 72.9 269.8-1.6 51-50.9 27.9-27.9 95.3-95.3 22.3-22.3 22.3-58.7 0-81zM140.4 363.8c-59.6-59.5-59.6-156 0-215.5 59.5-59.6 156-59.5 215.6 0 59.5 59.5 59.6 156 0 215.6-59.6 59.5-156 59.4-215.6-.1z" ], + "phoenix-framework": [ 640, 512, [], "f3dc", "M212.9 344.3c3.8-.1 22.8-1.4 25.6-2.2-2.4-2.6-43.6-1-68-49.6-4.3-8.6-7.5-17.6-6.4-27.6 2.9-25.5 32.9-30 52-18.5 36 21.6 63.3 91.3 113.7 97.5 37 4.5 84.6-17 108.2-45.4-.6-.1-.8-.2-1-.1-.4.1-.8.2-1.1.3-33.3 12.1-94.3 9.7-134.7-14.8-37.6-22.8-53.1-58.7-51.8-74.6 1.8-21.3 22.9-23.2 35.9-19.6 14.4 3.9 24.4 17.6 38.9 27.4 15.6 10.4 32.9 13.7 51.3 10.3 14.9-2.7 34.4-12.3 36.5-14.5-1.1-.1-1.8-.1-2.5-.2-6.2-.6-12.4-.8-18.5-1.7C279.8 194.5 262.1 47.4 138.5 37.9 94.2 34.5 39.1 46 2.2 72.9c-.8.6-1.5 1.2-2.2 1.8.1.2.1.3.2.5.8 0 1.6-.1 2.4-.2 6.3-1 12.5-.8 18.7.3 23.8 4.3 47.7 23.1 55.9 76.5 5.3 34.3-.7 50.8 8 86.1 19 77.1 91 107.6 127.7 106.4zM75.3 64.9c-.9-1-.9-1.2-1.3-2 12.1-2.6 24.2-4.1 36.6-4.8-1.1 14.7-22.2 21.3-35.3 6.8zm196.9 350.5c-42.8 1.2-92-26.7-123.5-61.4-4.6-5-16.8-20.2-18.6-23.4l.4-.4c6.6 4.1 25.7 18.6 54.8 27 24.2 7 48.1 6.3 71.6-3.3 22.7-9.3 41-.5 43.1 2.9-18.5 3.8-20.1 4.4-24 7.9-5.1 4.4-4.6 11.7 7 17.2 26.2 12.4 63-2.8 97.2 25.4 2.4 2 8.1 7.8 10.1 10.7-.1.2-.3.3-.4.5-4.8-1.5-16.4-7.5-40.2-9.3-24.7-2-46.3 5.3-77.5 6.2zm174.8-252c16.4-5.2 41.3-13.4 66.5-3.3 16.1 6.5 26.2 18.7 32.1 34.6 3.5 9.4 5.1 19.7 5.1 28.7-.2 0-.4 0-.6.1-.2-.4-.4-.9-.5-1.3-5-22-29.9-43.8-67.6-29.9-50.2 18.6-130.4 9.7-176.9-48-.7-.9-2.4-1.7-1.3-3.2.1-.2 2.1.6 3 1.3 18.1 13.4 38.3 21.9 60.3 26.2 30.5 6.1 54.6 2.9 79.9-5.2zm102.7 117.5c-32.4.2-33.8 50.1-103.6 64.4-18.2 3.7-38.7 4.6-44.9 4.2v-.4c2.8-1.5 14.7-2.6 29.7-16.6 7.9-7.3 15.3-15.1 22.8-22.9 19.5-20.2 41.4-42.2 81.9-39 23.1 1.8 29.3 8.2 36.1 12.7.3.2.4.5.7.9-.5 0-.7.1-.9 0-7-2.7-14.3-3.3-21.8-3.3zm-12.3-24.1c-.1.2-.1.4-.2.6-28.9-4.4-48-7.9-68.5 4-17 9.9-31.4 20.5-62 24.4-27.1 3.4-45.1 2.4-66.1-8-.3-.2-.6-.4-1-.6 0-.2.1-.3.1-.5 24.9 3.8 36.4 5.1 55.5-5.8 22.3-12.9 40.1-26.6 71.3-31 29.6-4.1 51.3 2.5 70.9 16.9zM268.6 97.3c-.6-.6-1.1-1.2-2.1-2.3 7.6 0 29.7-1.2 53.4 8.4 19.7 8 32.2 21 50.2 32.9 11.1 7.3 23.4 9.3 36.4 8.1 4.3-.4 8.5-1.2 12.8-1.7.4-.1.9 0 1.5.3-.6.4-1.2.9-1.8 1.2-8.1 4-16.7 6.3-25.6 7.1-26.1 2.6-50.3-3.7-73.4-15.4-19.3-9.9-36.4-22.9-51.4-38.6zM640 335.7c-3.5 3.1-22.7 11.6-42.7 5.3-12.3-3.9-19.5-14.9-31.6-24.1-10-7.6-20.9-7.9-28.1-8.4.6-.8.9-1.2 1.2-1.4 14.8-9.2 30.5-12.2 47.3-6.5 12.5 4.2 19.2 13.5 30.4 24.2 10.8 10.4 21 9.9 23.1 10.5.1-.1.2 0 .4.4zm-212.5 137c2.2 1.2 1.6 1.5 1.5 2-18.5-1.4-33.9-7.6-46.8-22.2-21.8-24.7-41.7-27.9-48.6-29.7.5-.2.8-.4 1.1-.4 13.1.1 26.1.7 38.9 3.9 25.3 6.4 35 25.4 41.6 35.3 3.2 4.8 7.3 8.3 12.3 11.1z" ], + "phoenix-squadron": [ 513, 512, [], "f511", "M96.24 62.81C142.91 26.57 202.15 6.57 261.28 8.08c29.67-.38 59.29 5.38 87.17 15.37-24.2-4.64-49.18-6.35-73.6-2.45-43 5.35-83.26 27.23-112.16 59.35 5.69-.99 10.81-3.68 16.07-5.88 18.19-7.89 37.6-13.29 57.4-14.87 19.8-2.14 39.75-.43 59.45 1.93-14.46 2.79-29.2 4.58-43.11 9.61-34.53 11.11-65.46 33.26-86.55 62.82-13.84 19.77-23.7 42.99-24.74 67.33-.35 16.54 5.23 34.91 19.89 44.17 11.13 6.66 24.85 9.39 37.63 6.76 15.49-2.47 30.16-8.67 43.73-16.38 11.55-6.84 22.73-14.59 32.05-24.32 3.8-3.23 2.54-8.48 2.63-12.83-2.13-.34-4.4-1.11-6.32.3a203.975 203.975 0 0 1-35.93 15.42c-20.07 6.19-42.28 8.48-62.28.78 12.83 1.73 26.14.31 37.85-5.46 20.29-9.75 36.92-25.27 54.6-38.88 27.84-21.29 57.64-40.11 89.17-55.47 25.78-12.01 53.09-22.85 81.81-24.2-15.68 13.76-32.25 26.6-46.92 41.51-14.55 14.04-27.54 29.58-40.23 45.31-3.53 4.61-8.98 6.96-13.62 10.19-22.24 15.03-40.6 35.96-52.04 60.28-9.36 19.74-14.55 41.97-11.81 63.84 1.95 13.73 8.74 27.67 20.96 35.01 12.94 7.99 29.14 8.09 43.61 5.11 32.9-7.47 61.61-28.97 81.28-56 20.5-27.6 30.61-62.38 29.25-96.64-.52-7.52-1.58-15-1.67-22.55 8.02 19.54 14.87 39.83 16.7 61.01 2.01 14.32.75 28.84-1.62 43.02-1.92 11.02-5.69 21.58-7.81 32.53 20.36-22.73 34.17-51.24 39.46-81.31 5.72-35.37.58-72.36-14.25-104.95 20.84 32.12 32.43 69.79 35.81 107.8.5 12.77.5 25.58 0 38.34-2.91 34.26-12.97 67.95-29.76 98-26.2 47.48-68.2 85.89-117.54 108.32-78.52 36.34-175.2 31.41-248.72-14.72-38.84-23.78-71.06-58.32-91.68-98.96C10.72 337.43 2.04 305.5 0 273.13V241.7c3.94-69.97 40.99-136.32 96.24-178.89m222.65 80.57c5.51-.8 10.82-2.57 16.02-4.5 4.99-1.77 9.27-5.95 10.35-11.25-8.91 5-17.95 9.95-26.37 15.75z" ], + php: [ 640, 512, [], "f457", "M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z" ], + "pied-piper": [ 448, 512, [], "f2ae", "M32 419L0 479.2l.8-328C.8 85.3 54 32 120 32h327.2c-93 28.9-189.9 94.2-253.9 168.6C122.7 282 82.6 338 32 419M448 32S305.2 98.8 261.6 199.1c-23.2 53.6-28.9 118.1-71 158.6-28.9 27.8-69.8 38.2-105.3 56.3-23.2 12-66.4 40.5-84.9 66h328.4c66 0 119.3-53.3 119.3-119.2-.1 0-.1-328.8-.1-328.8z" ], + "pied-piper-alt": [ 576, 512, [], "f1a8", "M242 187c6.3-11.8 13.2-17 25.9-21.8 27.3-10.3 40.2-30.5 58.9-51.1 11.9 8.4 12 24.6 31.6 23v21.8l6.3.3c37.4-14.4 74.7-30.2 106.6-54.6 48.3-36.8 52.9-50 81.3-100l2-2.6c-.6 14.1-6.3 27.3-12.4 39.9-30.5 63.8-78.7 100.3-146.8 116.7-12.4 2.9-26.4 3.2-37.6 8.9 1.4 9.8 13.2 18.1 13.2 23 0 3.4-5.5 7.2-7.5 8.6-11.2-12.9-16.1-19.3-22.7-22.1-7.6-3.5-63.9-6.4-98.8 10zm137.9 256.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9L244 246zm-12.6 31.8l24.1 61.2 21-13.8-31.3-50.9-13.8 3.5zM555.5 0l-.6 1.1-.3.9.6-.6.3-1.4zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46v27.3l11.8-3.4-2.9-23.8h-8.9zm76.1 2.9c0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3l2 12.4c9-1.5 58.4-6.6 58.4-14.1z" ], + "pied-piper-hat": [ 640, 512, [], "f4e5", "M640 24.9c-80.8 53.6-89.4 92.5-96.4 104.4-6.7 12.2-11.7 60.3-23.3 83.6-11.7 23.6-54.2 42.2-66.1 50-11.7 7.8-28.3 38.1-41.9 64.2-108.1-4.4-167.4 38.8-259.2 93.6 29.4-9.7 43.3-16.7 43.3-16.7 94.2-36 139.3-68.3 281.1-49.2 1.1 0 1.9.6 2.8.8 3.9 2.2 5.3 6.9 3.1 10.8l-53.9 95.8c-2.5 4.7-7.8 7.2-13.1 6.1-126.8-23.8-226.9 17.3-318.9 18.6C24.1 488 0 453.4 0 451.8c0-1.1.6-1.7 1.7-1.7 0 0 38.3 0 103.1-15.3C178.4 294.5 244 245.4 315.4 245.4c0 0 71.7 0 90.6 61.9 22.8-39.7 28.3-49.2 28.3-49.2 5.3-9.4 35-77.2 86.4-141.4 51.5-64 90.4-79.9 119.3-91.8z" ], + "pied-piper-pp": [ 448, 512, [], "f1a7", "M205.3 174.6c0 21.1-14.2 38.1-31.7 38.1-7.1 0-12.8-1.2-17.2-3.7v-68c4.4-2.7 10.1-4.2 17.2-4.2 17.5 0 31.7 16.9 31.7 37.8zm52.6 67c-7.1 0-12.8 1.5-17.2 4.2v68c4.4 2.5 10.1 3.7 17.2 3.7 17.4 0 31.7-16.9 31.7-37.8 0-21.1-14.3-38.1-31.7-38.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM185 255.1c41 0 74.2-35.6 74.2-79.6 0-44-33.2-79.6-74.2-79.6-12 0-24.1 3.2-34.6 8.8h-45.7V311l51.8-10.1v-50.6c8.6 3.1 18.1 4.8 28.5 4.8zm158.4 25.3c0-44-33.2-79.6-73.9-79.6-3.2 0-6.4.2-9.6.7-3.7 12.5-10.1 23.8-19.2 33.4-13.8 15-32.2 23.8-51.8 24.8V416l51.8-10.1v-50.6c8.6 3.2 18.2 4.7 28.7 4.7 40.8 0 74-35.6 74-79.6z" ], + pinterest: [ 496, 512, [], "f0d2", "M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3.8-3.4 5-20.3 6.9-28.1.6-2.5.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z" ], + "pinterest-p": [ 384, 512, [], "f231", "M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z" ], + "pinterest-square": [ 448, 512, [], "f0d3", "M448 80v352c0 26.5-21.5 48-48 48H154.4c9.8-16.4 22.4-40 27.4-59.3 3-11.5 15.3-58.4 15.3-58.4 8 15.3 31.4 28.2 56.3 28.2 74.1 0 127.4-68.1 127.4-152.7 0-81.1-66.2-141.8-151.4-141.8-106 0-162.2 71.1-162.2 148.6 0 36 19.2 80.8 49.8 95.1 4.7 2.2 7.1 1.2 8.2-3.3.8-3.4 5-20.1 6.8-27.8.6-2.5.3-4.6-1.7-7-10.1-12.3-18.3-34.9-18.3-56 0-54.2 41-106.6 110.9-106.6 60.3 0 102.6 41.1 102.6 99.9 0 66.4-33.5 112.4-77.2 112.4-24.1 0-42.1-19.9-36.4-44.4 6.9-29.2 20.3-60.7 20.3-81.8 0-53-75.5-45.7-75.5 25 0 21.7 7.3 36.5 7.3 36.5-31.4 132.8-36.1 134.5-29.6 192.6l2.2.8H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z" ], + playstation: [ 576, 512, [], "f3df", "M570.9 372.3c-11.3 14.2-38.8 24.3-38.8 24.3L327 470.2v-54.3l150.9-53.8c17.1-6.1 19.8-14.8 5.8-19.4-13.9-4.6-39.1-3.3-56.2 2.9L327 381.1v-56.4c23.2-7.8 47.1-13.6 75.7-16.8 40.9-4.5 90.9.6 130.2 15.5 44.2 14 49.2 34.7 38 48.9zm-224.4-92.5v-139c0-16.3-3-31.3-18.3-35.6-11.7-3.8-19 7.1-19 23.4v347.9l-93.8-29.8V32c39.9 7.4 98 24.9 129.2 35.4C424.1 94.7 451 128.7 451 205.2c0 74.5-46 102.8-104.5 74.6zM43.2 410.2c-45.4-12.8-53-39.5-32.3-54.8 19.1-14.2 51.7-24.9 51.7-24.9l134.5-47.8v54.5l-96.8 34.6c-17.1 6.1-19.7 14.8-5.8 19.4 13.9 4.6 39.1 3.3 56.2-2.9l46.4-16.9v48.8c-51.6 9.3-101.4 7.3-153.9-10z" ], + "product-hunt": [ 512, 512, [], "f288", "M326.3 218.8c0 20.5-16.7 37.2-37.2 37.2h-70.3v-74.4h70.3c20.5 0 37.2 16.7 37.2 37.2zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-128.1-37.2c0-47.9-38.9-86.8-86.8-86.8H169.2v248h49.6v-74.4h70.3c47.9 0 86.8-38.9 86.8-86.8z" ], + pushed: [ 432, 512, [], "f3e1", "M407 111.9l-98.5-9 14-33.4c10.4-23.5-10.8-40.4-28.7-37L22.5 76.9c-15.1 2.7-26 18.3-21.4 36.6l105.1 348.3c6.5 21.3 36.7 24.2 47.7 7l35.3-80.8 235.2-231.3c16.4-16.8 4.3-42.9-17.4-44.8zM297.6 53.6c5.1-.7 7.5 2.5 5.2 7.4L286 100.9 108.6 84.6l189-31zM22.7 107.9c-3.1-5.1 1-10 6.1-9.1l248.7 22.7-96.9 230.7L22.7 107.9zM136 456.4c-2.6 4-7.9 3.1-9.4-1.2L43.5 179.7l127.7 197.6c-7 15-35.2 79.1-35.2 79.1zm272.8-314.5L210.1 337.3l89.7-213.7 106.4 9.7c4 1.1 5.7 5.3 2.6 8.6z" ], + python: [ 448, 512, [], "f3e2", "M167.8 36.4c-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1zm-6.7 28.4c11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4zm185.2 81.4v47.5c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6-7.7-30.9-22.3-54.2-53.4-54.2h-40.1zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3z" ], + qq: [ 448, 512, [], "f1d6", "M433.754 420.445c-11.526 1.393-44.86-52.741-44.86-52.741 0 31.345-16.136 72.247-51.051 101.786 16.842 5.192 54.843 19.167 45.803 34.421-7.316 12.343-125.51 7.881-159.632 4.037-34.122 3.844-152.316 8.306-159.632-4.037-9.045-15.25 28.918-29.214 45.783-34.415-34.92-29.539-51.059-70.445-51.059-101.792 0 0-33.334 54.134-44.859 52.741-5.37-.65-12.424-29.644 9.347-99.704 10.261-33.024 21.995-60.478 40.144-105.779C60.683 98.063 108.982.006 224 0c113.737.006 163.156 96.133 160.264 214.963 18.118 45.223 29.912 72.85 40.144 105.778 21.768 70.06 14.716 99.053 9.346 99.704z" ], + quinscape: [ 489, 512, [], "f459", "M301.9 474.6h-1.3c-87.3 0-158.1-70.8-158.1-158.1s70.8-158.1 158.1-158.1c94.9 0 168.2 83.1 157 176.6 4 5.1 8.2 9.6 11.2 15.3 13.4-30.3 20.3-62.4 20.3-97.7C489.1 117.5 379.6 8 244.5 8 109.5 8 0 117.5 0 252.6s109.5 244.6 244.5 244.6c24.8 0 47.8-3.2 70.4-10.1-5.2-3.5-9-8.2-13.4-12.6l.4.1zm-21.2-69.8c0-54.8 44.4-99.2 99.2-99.2 54.8 0 99.2 44.4 99.2 99.2 0 54.8-44.4 99.2-99.2 99.2-54.8 0-99.2-44.4-99.2-99.2" ], + quora: [ 448, 512, [], "f2c4", "M440.5 386.7h-29.3c-1.5 13.5-10.5 30.8-33 30.8-20.5 0-35.3-14.2-49.5-35.8 44.2-34.2 74.7-87.5 74.7-153C403.5 111.2 306.8 32 205 32 105.3 32 7.3 111.7 7.3 228.7c0 134.1 131.3 221.6 249 189C276 451.3 302 480 351.5 480c81.8 0 90.8-75.3 89-93.3zM297 329.2C277.5 300 253.3 277 205.5 277c-30.5 0-54.3 10-69 22.8l12.2 24.3c6.2-3 13-4 19.8-4 35.5 0 53.7 30.8 69.2 61.3-10 3-20.7 4.2-32.7 4.2-75 0-107.5-53-107.5-156.7C97.5 124.5 130 71 205 71c76.2 0 108.7 53.5 108.7 157.7.1 41.8-5.4 75.6-16.7 100.5z" ], + "r-project": [ 581, 512, [], "f4f7", "M581 226.6C581 119.1 450.9 32 290.5 32S0 119.1 0 226.6C0 322.4 103.3 402 239.4 418.1V480h99.1v-61.5c24.3-2.7 47.6-7.4 69.4-13.9L448 480h112l-67.4-113.7c54.5-35.4 88.4-84.9 88.4-139.7zm-466.8 14.5c0-73.5 98.9-133 220.8-133s211.9 40.7 211.9 133c0 50.1-26.5 85-70.3 106.4-2.4-1.6-4.7-2.9-6.4-3.7-10.2-5.2-27.8-10.5-27.8-10.5s86.6-6.4 86.6-92.7-90.6-87.9-90.6-87.9h-199V361c-74.1-21.5-125.2-67.1-125.2-119.9zm225.1 38.3v-55.6c57.8 0 87.8-6.8 87.8 27.3 0 36.5-38.2 28.3-87.8 28.3zm-.9 72.5H365c10.8 0 18.9 11.7 24 19.2-16.1 1.9-33 2.8-50.6 2.9v-22.1z" ], + ravelry: [ 512, 512, [], "f2d9", "M407.4 61.5C331.6 22.1 257.8 31 182.9 66c-11.3 5.2-15.5 10.6-19.9 19-10.3 19.2-16.2 37.4-19.9 52.7-21.2 25.6-36.4 56.1-43.3 89.9-10.6 18-20.9 41.4-23.1 71.4 0 0-.7 7.6-.5 7.9-35.3-4.6-76.2-27-76.2-27 9.1 14.5 61.3 32.3 76.3 37.9 0 0 1.7 98 64.5 131.2-11.3-17.2-13.3-20.2-13.3-20.2S94.8 369 100.4 324.7c.7 0 1.5.2 2.2.2 23.9 87.4 103.2 151.4 196.9 151.4 6.2 0 12.1-.2 18-.7 14 1.5 27.6.5 40.1-3.9 6.9-2.2 13.8-6.4 20.2-10.8 70.2-39.1 100.9-82 123.1-147.7 5.4-16 8.1-35.5 9.8-52.2 8.7-82.3-30.6-161.6-103.3-199.5zM138.8 163.2s-1.2 12.3-.7 19.7c-3.4 2.5-10.1 8.1-18.2 16.7 5.2-12.8 11.3-25.1 18.9-36.4zm-31.2 121.9c4.4-17.2 13.3-39.1 29.8-55.1 0 0 1.7 48 15.8 90.1l-41.4-6.9c-2.2-9.2-3.5-18.5-4.2-28.1zm7.9 42.8c14.8 3.2 34 7.6 43.1 9.1 27.3 76.8 108.3 124.3 108.3 124.3 1 .5 1.7.7 2.7 1-73.1-11.6-132.7-64.7-154.1-134.4zM386 444.1c-14.5 4.7-36.2 8.4-64.7 3.7 0 0-91.1-23.1-127.5-107.8 38.2.7 52.4-.2 78-3.9 39.4-5.7 79-16.2 115-33 11.8-5.4 11.1-19.4 9.6-29.8-2-12.8-11.1-12.1-21.4-4.7 0 0-82 58.6-189.8 53.7-18.7-32-26.8-110.8-26.8-110.8 41.4-35.2 83.2-59.6 168.4-52.4.2-6.4 3-27.1-20.4-28.1 0 0-93.5-11.1-146 33.5 2.5-16.5 5.9-29.3 11.1-39.4 34.2-30.8 79-49.5 128.3-49.5 106.4 0 193 87.1 193 194.5-.2 76-43.8 142-106.8 174z" ], + react: [ 512, 512, [], "f41b", "M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zm-130 189.1c4.6 8.8 9.3 17.5 14.3 26.1 5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5zm0-50.6c-6.3-14.9-11.6-29.5-16-43.6 14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26zm11.4 25.3c6.6-13.8 13.8-27.3 21.4-40.6 7.6-13.3 15.8-26.2 24.4-38.9 15-1.1 30.3-1.7 45.9-1.7 15.6 0 31 .6 45.9 1.7 8.5 12.6 16.6 25.5 24.3 38.7 7.7 13.2 14.9 26.7 21.7 40.4-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6-15.7 0-30.9-.5-45.6-1.4-8.7-12.7-16.9-25.7-24.6-39-7.7-13.3-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zM256 210.2c25.3 0 45.8 20.5 45.8 45.8 0 25.3-20.5 45.8-45.8 45.8-25.3 0-45.8-20.5-45.8-45.8 0-25.3 20.5-45.8 45.8-45.8" ], + readme: [ 576, 512, [], "f4d5", "M528.3 46.5H388.5c-48.1 0-89.9 33.3-100.4 80.3-10.6-47-52.3-80.3-100.4-80.3H48c-26.5 0-48 21.5-48 48v245.8c0 26.5 21.5 48 48 48h89.7c102.2 0 132.7 24.4 147.3 75 .7 2.8 5.2 2.8 6 0 14.7-50.6 45.2-75 147.3-75H528c26.5 0 48-21.5 48-48V94.6c0-26.4-21.3-47.9-47.7-48.1zM242 311.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5V289c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V251zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm259.3 121.7c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5V228c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.8c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V190z" ], + rebel: [ 512, 512, [], "f1d0", "M256.5 504C117.2 504 9 387.8 13.2 249.9 16 170.7 56.4 97.7 129.7 49.5c.3 0 1.9-.6 1.1.8-5.8 5.5-111.3 129.8-14.1 226.4 49.8 49.5 90 2.5 90 2.5 38.5-50.1-.6-125.9-.6-125.9-10-24.9-45.7-40.1-45.7-40.1l28.8-31.8c24.4 10.5 43.2 38.7 43.2 38.7.8-29.6-21.9-61.4-21.9-61.4L255.1 8l44.3 50.1c-20.5 28.8-21.9 62.6-21.9 62.6 13.8-23 43.5-39.3 43.5-39.3l28.5 31.8c-27.4 8.9-45.4 39.9-45.4 39.9-15.8 28.5-27.1 89.4.6 127.3 32.4 44.6 87.7-2.8 87.7-2.8 102.7-91.9-10.5-225-10.5-225-6.1-5.5.8-2.8.8-2.8 50.1 36.5 114.6 84.4 116.2 204.8C500.9 400.2 399 504 256.5 504z" ], + "red-river": [ 448, 512, [], "f3e3", "M353.2 32H94.8C42.4 32 0 74.4 0 126.8v258.4C0 437.6 42.4 480 94.8 480h258.4c52.4 0 94.8-42.4 94.8-94.8V126.8c0-52.4-42.4-94.8-94.8-94.8zM144.9 200.9v56.3c0 27-21.9 48.9-48.9 48.9V151.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9h-56.3c-12.3-.6-24.6 11.6-24 24zm176.3 72h-56.3c-12.3-.6-24.6 11.6-24 24v56.3c0 27-21.9 48.9-48.9 48.9V247.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9z" ], + reddit: [ 512, 512, [], "f1a1", "M201.5 305.5c-13.8 0-24.9-11.1-24.9-24.6 0-13.8 11.1-24.9 24.9-24.9 13.6 0 24.6 11.1 24.6 24.9 0 13.6-11.1 24.6-24.6 24.6zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-132.3-41.2c-9.4 0-17.7 3.9-23.8 10-22.4-15.5-52.6-25.5-86.1-26.6l17.4-78.3 55.4 12.5c0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.3 24.9-24.9s-11.1-24.9-24.9-24.9c-9.7 0-18 5.8-22.1 13.8l-61.2-13.6c-3-.8-6.1 1.4-6.9 4.4l-19.1 86.4c-33.2 1.4-63.1 11.3-85.5 26.8-6.1-6.4-14.7-10.2-24.1-10.2-34.9 0-46.3 46.9-14.4 62.8-1.1 5-1.7 10.2-1.7 15.5 0 52.6 59.2 95.2 132 95.2 73.1 0 132.3-42.6 132.3-95.2 0-5.3-.6-10.8-1.9-15.8 31.3-16 19.8-62.5-14.9-62.5zM302.8 331c-18.2 18.2-76.1 17.9-93.6 0-2.2-2.2-6.1-2.2-8.3 0-2.5 2.5-2.5 6.4 0 8.6 22.8 22.8 87.3 22.8 110.2 0 2.5-2.2 2.5-6.1 0-8.6-2.2-2.2-6.1-2.2-8.3 0zm7.7-75c-13.6 0-24.6 11.1-24.6 24.9 0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.1 24.9-24.6 0-13.8-11-24.9-24.9-24.9z" ], + "reddit-alien": [ 512, 512, [], "f281", "M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2.1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z" ], + "reddit-square": [ 448, 512, [], "f1a2", "M283.2 345.5c2.7 2.7 2.7 6.8 0 9.2-24.5 24.5-93.8 24.6-118.4 0-2.7-2.4-2.7-6.5 0-9.2 2.4-2.4 6.5-2.4 8.9 0 18.7 19.2 81 19.6 100.5 0 2.4-2.3 6.6-2.3 9 0zm-91.3-53.8c0-14.9-11.9-26.8-26.5-26.8-14.9 0-26.8 11.9-26.8 26.8 0 14.6 11.9 26.5 26.8 26.5 14.6 0 26.5-11.9 26.5-26.5zm90.7-26.8c-14.6 0-26.5 11.9-26.5 26.8 0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-11.9 26.8-26.5 0-14.9-11.9-26.8-26.8-26.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-99.7 140.6c-10.1 0-19 4.2-25.6 10.7-24.1-16.7-56.5-27.4-92.5-28.6l18.7-84.2 59.5 13.4c0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-12.2 26.8-26.8 0-14.6-11.9-26.8-26.8-26.8-10.4 0-19.3 6.2-23.8 14.9l-65.7-14.6c-3.3-.9-6.5 1.5-7.4 4.8l-20.5 92.8c-35.7 1.5-67.8 12.2-91.9 28.9-6.5-6.8-15.8-11-25.9-11-37.5 0-49.8 50.4-15.5 67.5-1.2 5.4-1.8 11-1.8 16.7 0 56.5 63.7 102.3 141.9 102.3 78.5 0 142.2-45.8 142.2-102.3 0-5.7-.6-11.6-2.1-17 33.6-17.2 21.2-67.2-16.1-67.2z" ], + rendact: [ 496, 512, [], "f3e4", "M248 8C111 8 0 119 0 256s111 248 248 248c18.6 0 36.7-2.1 54.1-5.9-5.6-7.4-10.8-14.4-15.9-21.3-12.4 2.1-25.2 3.3-38.3 3.3C124.3 480 24 379.7 24 256S124.3 32 248 32s224 100.3 224 224c0 71-33 134.2-84.5 175.3-25.9 18.8-39.1 21.4-83.5-44.2-78.7-112.9-48-71.1-73.7-108.3 72.8 8.9 228.5-72 168.6-168.6C314-26.8 15 93.8 59.7 226.4c3.2 9.8 14.4 38.6 45.6 38.6 2 0 2.6-.6 2-1.7-4.4-8.7-20.1-9.8-20.1-37.4 0-40.5 40.5-89.6 100.3-120 66.1-32.3 131.9-30.2 158.2 5.4 27.2 38.3-20.9 119.2-120.4 136.9 7.5-9.4 57-75.2 62.8-84 22.7-34.6 23.6-49 14-59.2-15.5-16.9-29.5-10.3-50.7-11.7-10.8-.9-113.7 181.2-136.4 216.9-5.9 9-21.2 34.1-21.2 50.9 0 21.3 2.8 51.4 20.6 51.4 10.6 0 8-18.7 8-26.6 0-12.9 27.4-49.4 74.8-104.6 20.4 36.1 57.7 114.3 130.2 209.7 98-33.1 168.5-125.8 168.5-235C496 119 385 8 248 8z" ], + renren: [ 512, 512, [], "f18b", "M214 169.1c0 110.4-61 205.4-147.6 247.4C30 373.2 8 317.7 8 256.6 8 133.9 97.1 32.2 214 12.5v156.6zM255 504c-42.9 0-83.3-11-118.5-30.4C193.7 437.5 239.9 382.9 255 319c15.5 63.9 61.7 118.5 118.8 154.7C338.7 493 298.3 504 255 504zm190.6-87.5C359 374.5 298 279.6 298 169.1V12.5c116.9 19.7 206 121.4 206 244.1 0 61.1-22 116.6-58.4 159.9z" ], + replyd: [ 448, 512, [], "f3e6", "M320 480H128C57.6 480 0 422.4 0 352V160C0 89.6 57.6 32 128 32h192c70.4 0 128 57.6 128 128v192c0 70.4-57.6 128-128 128zM193.4 273.2c-6.1-2-11.6-3.1-16.4-3.1-7.2 0-13.5 1.9-18.9 5.6-5.4 3.7-9.6 9-12.8 15.8h-1.1l-4.2-18.3h-28v138.9h36.1v-89.7c1.5-5.4 4.4-9.8 8.7-13.2 4.3-3.4 9.8-5.1 16.2-5.1 4.6 0 9.8 1 15.6 3.1l4.8-34zm115.2 103.4c-3.2 2.4-7.7 4.8-13.7 7.1-6 2.3-12.8 3.5-20.4 3.5-12.2 0-21.1-3-26.5-8.9-5.5-5.9-8.5-14.7-9-26.4h83.3c.9-4.8 1.6-9.4 2.1-13.9.5-4.4.7-8.6.7-12.5 0-10.7-1.6-19.7-4.7-26.9-3.2-7.2-7.3-13-12.5-17.2-5.2-4.3-11.1-7.3-17.8-9.2-6.7-1.8-13.5-2.8-20.6-2.8-21.1 0-37.5 6.1-49.2 18.3s-17.5 30.5-17.5 55c0 22.8 5.2 40.7 15.6 53.7 10.4 13.1 26.8 19.6 49.2 19.6 10.7 0 20.9-1.5 30.4-4.6 9.5-3.1 17.1-6.8 22.6-11.2l-12-23.6zm-21.8-70.3c3.8 5.4 5.3 13.1 4.6 23.1h-51.7c.9-9.4 3.7-17 8.2-22.6 4.5-5.6 11.5-8.5 21-8.5 8.2-.1 14.1 2.6 17.9 8zm79.9 2.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4s2 11.7 6.1 15.6zm0 100.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4 0 6.6 2 11.7 6.1 15.6z" ], + researchgate: [ 448, 512, [], "f4f8", "M0 32v448h448V32H0zm262.2 334.4c-6.6 3-33.2 6-50-14.2-9.2-10.6-25.3-33.3-42.2-63.6-8.9 0-14.7 0-21.4-.6v46.4c0 23.5 6 21.2 25.8 23.9v8.1c-6.9-.3-23.1-.8-35.6-.8-13.1 0-26.1.6-33.6.8v-8.1c15.5-2.9 22-1.3 22-23.9V225c0-22.6-6.4-21-22-23.9V193c25.8 1 53.1-.6 70.9-.6 31.7 0 55.9 14.4 55.9 45.6 0 21.1-16.7 42.2-39.2 47.5 13.6 24.2 30 45.6 42.2 58.9 7.2 7.8 17.2 14.7 27.2 14.7v7.3zm22.9-135c-23.3 0-32.2-15.7-32.2-32.2V167c0-12.2 8.8-30.4 34-30.4s30.4 17.9 30.4 17.9l-10.7 7.2s-5.5-12.5-19.7-12.5c-7.9 0-19.7 7.3-19.7 19.7v26.8c0 13.4 6.6 23.3 17.9 23.3 14.1 0 21.5-10.9 21.5-26.8h-17.9v-10.7h30.4c0 20.5 4.7 49.9-34 49.9zm-116.5 44.7c-9.4 0-13.6-.3-20-.8v-69.7c6.4-.6 15-.6 22.5-.6 23.3 0 37.2 12.2 37.2 34.5 0 21.9-15 36.6-39.7 36.6z" ], + resolving: [ 496, 512, [], "f3e7", "M281.2 278.2c46-13.3 49.6-23.5 44-43.4L314 195.5c-6.1-20.9-18.4-28.1-71.1-12.8L54.7 236.8l28.6 98.6 197.9-57.2zM248.5 8C131.4 8 33.2 88.7 7.2 197.5l221.9-63.9c34.8-10.2 54.2-11.7 79.3-8.2 36.3 6.1 52.7 25 61.4 55.2l10.7 37.8c8.2 28.1 1 50.6-23.5 73.6-19.4 17.4-31.2 24.5-61.4 33.2L203 351.8l220.4 27.1 9.7 34.2-48.1 13.3-286.8-37.3 23 80.2c36.8 22 80.3 34.7 126.3 34.7 137 0 248.5-111.4 248.5-248.3C497 119.4 385.5 8 248.5 8zM38.3 388.6L0 256.8c0 48.5 14.3 93.4 38.3 131.8z" ], + rev: [ 410, 512, [], "f5b2", "M270.67 274.89c0 36.16-29.41 65.57-65.56 65.57s-65.57-29.41-65.57-65.57 29.41-65.56 65.57-65.56 65.56 29.4 65.56 65.56zm139.55-5.05h-.13c-1.49-61.55-30.1-116.35-74.32-152.98l-45.38 26.2c43.17 28.03 71.81 76.63 71.81 131.82 0 86.62-70.47 157.09-157.09 157.09S48.02 361.5 48.02 274.88c0-81.86 62.96-149.27 142.99-156.43v39.12l108.76-62.79L191.01 32v38.32C84.31 77.57 0 166.36 0 274.89c0 111.59 89.12 202.29 200.06 204.98v.13h210.16V269.84z" ], + rocketchat: [ 448, 512, [], "f3e8", "M448 256.2c0-87.2-99.6-153.3-219.8-153.3-18.8 0-37.3 1.6-55.3 4.8-11.1-10.5-24.2-20-38-27.4C61.2 44.2 0 79.4 0 79.4s56.9 47.1 47.6 88.3c-52.3 52.3-52.5 124.1 0 176.6C56.9 385.6 0 432.6 0 432.6s61.2 35.2 134.9-.8c13.8-7.5 26.9-16.9 38-27.4 18 3.2 36.5 4.8 55.3 4.8 120.3-.1 219.8-65.8 219.8-153zm-219.7 124c-23.7 0-46.3-2.8-67.3-7.8-21.3 25.8-68.1 61.7-113.6 50.1 14.8-16 36.7-43.1 32-87.6-27.3-21.4-43.6-48.7-43.6-78.5 0-68.4 86.2-123.9 192.5-123.9S420.8 188 420.8 256.4c0 68.3-86.2 123.8-192.5 123.8zm25.6-123.9c0 14.2-11.5 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.5-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm88.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm-177.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.2 0 25.6 11.6 25.6 25.8z" ], + rockrms: [ 496, 512, [], "f3e9", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm157.4 419.5h-90l-112-131.3c-17.9-20.4-3.9-56.1 26.6-56.1h75.3l-84.6-99.3-84.3 98.9h-90L193.5 67.2c14.4-18.4 41.3-17.3 54.5 0l157.7 185.1c19 22.8 2 57.2-27.6 56.1-.6 0-74.2.2-74.2.2l101.5 118.9z" ], + safari: [ 512, 512, [], "f267", "M236.9 256.8c0-9.1 6.6-17.7 16.3-17.7 8.9 0 17.4 6.4 17.4 16.1 0 9.1-6.4 17.7-16.1 17.7-9 0-17.6-6.7-17.6-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-26.6 0c0-122.3-99.1-221.4-221.4-221.4S34.6 133.7 34.6 256 133.7 477.4 256 477.4 477.4 378.3 477.4 256zm-72.5 96.6c0 3.6 13 10.2 16.3 12.2-27.4 41.5-69.8 71.4-117.9 83.3l-4.4-18.5c-.3-2.5-1.9-2.8-4.2-2.8-1.9 0-3 2.8-2.8 4.2l4.4 18.8c-13.3 2.8-26.8 4.2-40.4 4.2-36.3 0-72-10.2-103-29.1 1.7-2.8 12.2-18 12.2-20.2 0-1.9-1.7-3.6-3.6-3.6-3.9 0-12.2 16.6-14.7 19.9-41.8-27.7-72-70.6-83.6-119.6l19.1-4.2c2.2-.6 2.8-2.2 2.8-4.2 0-1.9-2.8-3-4.4-2.8L62 294.5c-2.5-12.7-3.9-25.5-3.9-38.5 0-37.1 10.5-73.6 30.2-104.9 2.8 1.7 16.1 10.8 18.3 10.8 1.9 0 3.6-1.4 3.6-3.3 0-3.9-14.7-11.3-18-13.6 28.2-41.2 71.1-70.9 119.8-81.9l4.2 18.5c.6 2.2 2.2 2.8 4.2 2.8s3-2.8 2.8-4.4L219 61.7c12.2-2.2 24.6-3.6 37.1-3.6 37.1 0 73.3 10.5 104.9 30.2-1.9 2.8-10.8 15.8-10.8 18 0 1.9 1.4 3.6 3.3 3.6 3.9 0 11.3-14.4 13.3-17.7 41 27.7 70.3 70 81.7 118.2l-15.5 3.3c-2.5.6-2.8 2.2-2.8 4.4 0 1.9 2.8 3 4.2 2.8l15.8-3.6c2.5 12.7 3.9 25.7 3.9 38.7 0 36.3-10 72-28.8 102.7-2.8-1.4-14.4-9.7-16.6-9.7-2.1 0-3.8 1.7-3.8 3.6zm-33.2-242.2c-13 12.2-134.2 123.7-137.6 129.5l-96.6 160.5c12.7-11.9 134.2-124 137.3-129.3l96.9-160.7z" ], + sass: [ 640, 512, [], "f41e", "M551.1 291.9c-22.4.1-41.8 5.5-58 13.5-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-3.8 11.1-5.3 19.1-2.3 11.7-25.8 53.5-39.1 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-2.7 11.4-5.3 19.1-2.6 7.7-33.9 77.3-42.1 95.4-4.2 9.2-7.8 16.6-10.4 21.6s-.2.3-.4.9c-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4.3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2-.8 0-1.4 2-1.4 2s10.1-42.4-19.4-42.4c-18.4 0-44 20.2-56.6 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.8-38.2-101.9-65.2-99.1-116.5 1-18.7 7.5-67.8 127.1-127.4 98-48.8 176.4-35.4 189.9-5.6 19.4 42.5-41.9 121.6-143.7 133-38.8 4.3-59.2-10.7-64.3-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.8 28.9 18.7 6.1 64.2 9.5 119.2-11.8C367 196.5 415.1 130.2 401 74.7 386.6 18.3 293.1-.2 204.6 31.2 151.9 49.9 94.9 79.3 53.9 117.6 5.2 163.2-2.6 202.9.6 219.5c11.4 58.9 92.6 97.3 125.1 125.7-1.6.9-3.1 1.7-4.5 2.5-16.3 8.1-78.2 40.5-93.7 74.7-17.5 38.8 2.9 66.6 16.3 70.4 41.8 11.6 84.6-9.3 107.6-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.3-4.9 16.4-9.4 23.5-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.5 5 15.4 5 13.8 0 20-11.4 26.9-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.4 0 18.8-12.1 23-18.3v.1s.2-.4.7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.6-46 16.2-31.8 31.7-71.5 31.7-71.5s1.4 9.7 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2s0 .1.1.2c-3 4-6.4 8.3-9.9 12.5-12.8 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.7 2.5 11.5-.8 19.6-3.6 23.5-5.4 6.2-2.2 13.4-5.7 20.2-10.6 12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5 19.8-28.9 35.1-60.6 35.1-60.6s1.4 9.7 6.2 25.8c2.4 8.1 7.1 17 11.4 25.7-18.6 15.1-30.1 32.6-34.1 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5 6.5-2.2 14.3-5.7 21.6-11.1 12.5-9.2 24.6-22.1 23.8-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.1-10.2 62.1-7.2 55.7 6.5 66.6 41.3 64.5 55.8-2.1 14.6-13.8 22.6-17.7 25-3.9 2.4-5.1 3.3-4.8 5.1.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.2-11.8 30.3-38.7 1.6-34-31.1-71.4-89-71.1zM121.8 436.6c-18.4 20.1-44.2 27.7-55.3 21.3C54.6 451 59.3 421.4 82 400c13.8-13 31.6-25 43.4-32.4 2.7-1.6 6.6-4 11.4-6.9.8-.5 1.2-.7 1.2-.7.9-.6 1.9-1.1 2.9-1.7 8.3 30.4.3 57.2-19.1 78.3zm134.4-91.4c-6.4 15.7-19.9 55.7-28.1 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.1-11.3 21.2-14.9 23.8-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.9-13.9 0 .5.1 1 .1 1.6-.1 17.9-17.3 30-25.1 34.8zm85.6-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.6-15.3 19-24.5 1.2 3.8 1.9 7.4 1.9 10.8-.1 22.5-16.2 30.9-25.9 34.4z" ], + schlix: [ 448, 512, [], "f3ea", "M350.5 157.7l-54.2-46.1 73.4-39 78.3 44.2-97.5 40.9zM192 122.1l45.7-28.2 34.7 34.6-55.4 29-25-35.4zm-65.1 6.6l31.9-22.1L176 135l-36.7 22.5-12.4-28.8zm-23.3 88.2l-8.8-34.8 29.6-18.3 13.1 35.3-33.9 17.8zm-21.2-83.7l23.9-18.1 8.9 24-26.7 18.3-6.1-24.2zM59 206.5l-3.6-28.4 22.3-15.5 6.1 28.7L59 206.5zm-30.6 16.6l20.8-12.8 3.3 33.4-22.9 12-1.2-32.6zM1.4 268l19.2-10.2.4 38.2-21 8.8L1.4 268zm59.1 59.3l-28.3 8.3-1.6-46.8 25.1-10.7 4.8 49.2zM99 263.2l-31.1 13-5.2-40.8L90.1 221l8.9 42.2zM123.2 377l-41.6 5.9-8.1-63.5 35.2-10.8 14.5 68.4zm28.5-139.9l21.2 57.1-46.2 13.6-13.7-54.1 38.7-16.6zm85.7 230.5l-70.9-3.3-24.3-95.8 55.2-8.6 40 107.7zm-84.9-279.7l42.2-22.4 28 45.9-50.8 21.3-19.4-44.8zm41 94.9l61.3-18.7 52.8 86.6-79.8 11.3-34.3-79.2zm51.4-85.6l67.3-28.8 65.5 65.4-88.6 26.2-44.2-62.8z" ], + scribd: [ 384, 512, [], "f28a", "M42.3 252.7c-16.1-19-24.7-45.9-24.8-79.9 0-100.4 75.2-153.1 167.2-153.1 98.6-1.6 156.8 49 184.3 70.6l-50.5 72.1-37.3-24.6 26.9-38.6c-36.5-24-79.4-36.5-123-35.8-50.7-.8-111.7 27.2-111.7 76.2 0 18.7 11.2 20.7 28.6 15.6 23.3-5.3 41.9.6 55.8 14 26.4 24.3 23.2 67.6-.7 91.9-29.2 29.5-85.2 27.3-114.8-8.4zm317.7 5.9c-15.5-18.8-38.9-29.4-63.2-28.6-38.1-2-71.1 28-70.5 67.2-.7 16.8 6 33 18.4 44.3 14.1 13.9 33 19.7 56.3 14.4 17.4-5.1 28.6-3.1 28.6 15.6 0 4.3-.5 8.5-1.4 12.7-16.7 40.9-59.5 64.4-121.4 64.4-51.9.2-102.4-16.4-144.1-47.3l33.7-39.4-35.6-27.4L0 406.3l15.4 13.8c52.5 46.8 120.4 72.5 190.7 72.2 51.4 0 94.4-10.5 133.6-44.1 57.1-51.4 54.2-149.2 20.3-189.6z" ], + searchengin: [ 460, 512, [], "f3eb", "M220.6 130.3l-67.2 28.2V43.2L98.7 233.5l54.7-24.2v130.3l67.2-209.3zm-83.2-96.7l-1.3 4.7-15.2 52.9C80.6 106.7 52 145.8 52 191.5c0 52.3 34.3 95.9 83.4 105.5v53.6C57.5 340.1 0 272.4 0 191.6c0-80.5 59.8-147.2 137.4-158zm311.4 447.2c-11.2 11.2-23.1 12.3-28.6 10.5-5.4-1.8-27.1-19.9-60.4-44.4-33.3-24.6-33.6-35.7-43-56.7-9.4-20.9-30.4-42.6-57.5-52.4l-9.7-14.7c-24.7 16.9-53 26.9-81.3 28.7l2.1-6.6 15.9-49.5c46.5-11.9 80.9-54 80.9-104.2 0-54.5-38.4-102.1-96-107.1V32.3C254.4 37.4 320 106.8 320 191.6c0 33.6-11.2 64.7-29 90.4l14.6 9.6c9.8 27.1 31.5 48 52.4 57.4s32.2 9.7 56.8 43c24.6 33.2 42.7 54.9 44.5 60.3s.7 17.3-10.5 28.5zm-9.9-17.9c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8z" ], + sellcast: [ 448, 512, [], "f2da", "M353.4 32H94.7C42.6 32 0 74.6 0 126.6v258.7C0 437.4 42.6 480 94.7 480h258.7c52.1 0 94.7-42.6 94.7-94.6V126.6c0-52-42.6-94.6-94.7-94.6zm-50 316.4c-27.9 48.2-89.9 64.9-138.2 37.2-22.9 39.8-54.9 8.6-42.3-13.2l15.7-27.2c5.9-10.3 19.2-13.9 29.5-7.9 18.6 10.8-.1-.1 18.5 10.7 27.6 15.9 63.4 6.3 79.4-21.3 15.9-27.6 6.3-63.4-21.3-79.4-17.8-10.2-.6-.4-18.6-10.6-24.6-14.2-3.4-51.9 21.6-37.5 18.6 10.8-.1-.1 18.5 10.7 48.4 28 65.1 90.3 37.2 138.5zm21.8-208.8c-17 29.5-16.3 28.8-19 31.5-6.5 6.5-16.3 8.7-26.5 3.6-18.6-10.8.1.1-18.5-10.7-27.6-15.9-63.4-6.3-79.4 21.3s-6.3 63.4 21.3 79.4c0 0 18.5 10.6 18.6 10.6 24.6 14.2 3.4 51.9-21.6 37.5-18.6-10.8.1.1-18.5-10.7-48.2-27.8-64.9-90.1-37.1-138.4 27.9-48.2 89.9-64.9 138.2-37.2l4.8-8.4c14.3-24.9 52-3.3 37.7 21.5z" ], + sellsy: [ 640, 512, [], "f213", "M539.71 237.308c3.064-12.257 4.29-24.821 4.29-37.384C544 107.382 468.618 32 376.076 32c-77.22 0-144.634 53.012-163.02 127.781-15.322-13.176-34.934-20.53-55.157-20.53-46.271 0-83.962 37.69-83.962 83.961 0 7.354.92 15.015 3.065 22.369-42.9 20.225-70.785 63.738-70.785 111.234C6.216 424.843 61.68 480 129.401 480h381.198c67.72 0 123.184-55.157 123.184-123.184.001-56.384-38.916-106.025-94.073-119.508zM199.88 401.554c0 8.274-7.048 15.321-15.321 15.321H153.61c-8.274 0-15.321-7.048-15.321-15.321V290.626c0-8.273 7.048-15.321 15.321-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v110.928zm89.477 0c0 8.274-7.048 15.321-15.322 15.321h-30.949c-8.274 0-15.321-7.048-15.321-15.321V270.096c0-8.274 7.048-15.321 15.321-15.321h30.949c8.274 0 15.322 7.048 15.322 15.321v131.458zm89.477 0c0 8.274-7.047 15.321-15.321 15.321h-30.949c-8.274 0-15.322-7.048-15.322-15.321V238.84c0-8.274 7.048-15.321 15.322-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v162.714zm87.027 0c0 8.274-7.048 15.321-15.322 15.321h-28.497c-8.274 0-15.321-7.048-15.321-15.321V176.941c0-8.579 7.047-15.628 15.321-15.628h28.497c8.274 0 15.322 7.048 15.322 15.628v224.613z" ], + servicestack: [ 496, 512, [], "f3ec", "M88 216c81.7 10.2 273.7 102.3 304 232H0c99.5-8.1 184.5-137 88-232zm32-152c32.3 35.6 47.7 83.9 46.4 133.6C249.3 231.3 373.7 321.3 400 448h96C455.3 231.9 222.8 79.5 120 64z" ], + shirtsinbulk: [ 448, 512, [], "f214", "M395.208 221.583H406v33.542h-10.792v-33.542zm0-9.625H406v-33.542h-10.792v33.542zm0 86.333H406V264.75h-10.792v33.541zM358.75 135.25h-33.542v10.5h33.542v-10.5zm36.458 206.208H406v-33.542h-10.792v33.542zM311.5 135.25h-33.542v10.5H311.5v-10.5zm-47.25 0H231v10.5h33.25v-10.5zm-47.25 0h-33.25v10.5H217v-10.5zm178.208 33.542H406V135.25h-33.542v10.5h22.75v23.042zm-255.792 259l30.625 13.417 4.375-9.917-30.625-13.417-4.375 9.917zM179.083 445l30.334 13.708 4.374-9.916-30.333-13.417-4.375 9.625zm216.125-60.375H406v-33.542h-10.792v33.542zm-334.833 8.167L91 406.208l4.375-9.624-30.625-13.709-4.375 9.917zm39.666 17.499l30.625 13.417 4.375-9.917-30.625-13.416-4.375 9.916zm132.417 38.501l4.375 9.916L267.459 445l-4.375-9.625-30.626 13.417zm118.417-52.208l4.375 9.624 30.624-13.416-4.374-9.917-30.625 13.709zM311.5 413.791l4.375 9.917 30.625-13.417-4.374-9.916-30.626 13.416zm-39.667 17.501l4.375 9.917 30.625-13.417-4.375-9.917-30.625 13.417zM311.5 46.583h-33.542v10.5H311.5v-10.5zm94.209 0h-33.251v10.5h33.251v-10.5zm-188.709 0h-33.25v10.5H217v-10.5zm141.75 0h-33.542v10.5h33.542v-10.5zm-94.5 0H231v10.5h33.25v-10.5zM448 3.708v406l-226.334 98.584L0 409.708v-406h448zm-29.166 116.958H29.166V390.75l192.792 85.75 196.875-85.75V120.666zm0-87.791H29.166V91.5h389.667V32.875zM75.542 46.583H42.291v10.5h33.251v-10.5zm94.5 0H136.5v10.5h33.542v-10.5zm-47.251 0H89.25v10.5h33.542v-10.5zm7.584 236.542c0-50.167 41.125-91.292 91.292-91.292 50.458 0 91.292 41.125 91.292 91.292 0 50.458-40.833 91.292-91.292 91.292-50.167-.001-91.292-40.834-91.292-91.292zm120.75 18.084c0 13.125-23.917 14.291-32.666 14.291-12.25 0-29.75-2.625-35.875-14.875h-.875L172.666 319c14.876 9.333 29.167 12.25 47.25 12.25 19.542 0 51.042-5.833 51.042-31.209 0-48.125-78.458-16.333-78.458-37.916 0-13.125 20.708-14.875 29.75-14.875 10.791 0 29.166 3.208 35.583 13.124h.875l8.751-16.916c-15.167-6.125-27.417-11.959-44.334-11.959-20.125 0-49.583 6.417-49.583 31.792 0 44.334 77.583 11.959 77.583 37.918zM122.791 135.25H89.25v10.5h33.542v-10.5zm-69.999 10.5h22.75v-10.5H42v33.542h10.792V145.75zm0 32.666H42v33.542h10.792v-33.542zm117.25-43.166H136.5v10.5h33.542v-10.5zm-117.25 86.333H42v33.542h10.792v-33.542zm0 86.334H42v33.542h10.792v-33.542zm0-43.167H42v33.542h10.792V264.75zm0 86.333H42v33.542h10.792v-33.542z" ], + shopware: [ 495, 512, [], "f5b5", "M395.5 455.27c-42.95 31.79-93.95 48.59-147.48 48.59-137.21 0-248.02-111-248.02-248 0-137.19 111.04-248 248.02-248 61.3 0 120.14 22.55 165.68 63.5 2.62 2.36.58 6.64-2.86 6.18-17.67-2.43-36.75-3.66-56.71-3.66-129.36 0-222.4 53.47-222.4 155.35 0 109.04 92.13 145.88 176.83 178.73 33.64 13.04 65.4 25.36 86.96 41.59 1.9 1.44 1.89 4.31-.02 5.72zm99.46-222.32c-.08-.94-.55-1.83-1.27-2.44-51.76-42.96-93.62-60.48-144.48-60.48-84.13 0-80.25 52.17-80.25 53.63 0 42.6 52.06 62.01 112.34 84.49 31.07 11.59 63.19 23.57 92.68 39.93 1.88 1.05 4.26.19 5.05-1.82 18.89-48.39 17.94-90.23 15.93-113.31z" ], + simplybuilt: [ 512, 512, [], "f215", "M481.2 64h-106c-14.5 0-26.6 11.8-26.6 26.3v39.6H163.3V90.3c0-14.5-12-26.3-26.6-26.3h-106C16.1 64 4.3 75.8 4.3 90.3v331.4c0 14.5 11.8 26.3 26.6 26.3h450.4c14.8 0 26.6-11.8 26.6-26.3V90.3c-.2-14.5-12-26.3-26.7-26.3zM149.8 355.8c-36.6 0-66.4-29.7-66.4-66.4 0-36.9 29.7-66.6 66.4-66.6 36.9 0 66.6 29.7 66.6 66.6 0 36.7-29.7 66.4-66.6 66.4zm212.4 0c-36.9 0-66.6-29.7-66.6-66.6 0-36.6 29.7-66.4 66.6-66.4 36.6 0 66.4 29.7 66.4 66.4 0 36.9-29.8 66.6-66.4 66.6z" ], + sistrix: [ 448, 512, [], "f3ee", "M448 449L301.2 300.2c20-27.9 31.9-62.2 31.9-99.2 0-93.1-74.7-168.9-166.5-168.9C74.7 32 0 107.8 0 200.9s74.7 168.9 166.5 168.9c39.8 0 76.3-14.2 105-37.9l146 148.1 30.5-31zM166.5 330.8c-70.6 0-128.1-58.3-128.1-129.9S95.9 71 166.5 71s128.1 58.3 128.1 129.9-57.4 129.9-128.1 129.9z" ], + sith: [ 448, 512, [], "f512", "M0 32l69.71 118.75-58.86-11.52 69.84 91.03a146.741 146.741 0 0 0 0 51.45l-69.84 91.03 58.86-11.52L0 480l118.75-69.71-11.52 58.86 91.03-69.84c17.02 3.04 34.47 3.04 51.48 0l91.03 69.84-11.52-58.86L448 480l-69.71-118.78 58.86 11.52-69.84-91.03c3.03-17.01 3.04-34.44 0-51.45l69.84-91.03-58.86 11.52L448 32l-118.75 69.71 11.52-58.9-91.06 69.87c-8.5-1.52-17.1-2.29-25.71-2.29s-17.21.78-25.71 2.29l-91.06-69.87 11.52 58.9L0 32zm224 99.78c31.8 0 63.6 12.12 87.85 36.37 48.5 48.5 48.49 127.21 0 175.7s-127.2 48.46-175.7-.03c-48.5-48.5-48.49-127.21 0-175.7 24.24-24.25 56.05-36.34 87.85-36.34zm0 36.66c-22.42 0-44.83 8.52-61.92 25.61-34.18 34.18-34.19 89.68 0 123.87s89.65 34.18 123.84 0c34.18-34.18 34.19-89.68 0-123.87-17.09-17.09-39.5-25.61-61.92-25.61z" ], + skyatlas: [ 640, 512, [], "f216", "M640 329.3c0 65.9-52.5 114.4-117.5 114.4-165.9 0-196.6-249.7-359.7-249.7-146.9 0-147.1 212.2 5.6 212.2 42.5 0 90.9-17.8 125.3-42.5 5.6-4.1 16.9-16.3 22.8-16.3s10.9 5 10.9 10.9c0 7.8-13.1 19.1-18.7 24.1-40.9 35.6-100.3 61.2-154.7 61.2-83.4.1-154-59-154-144.9s67.5-149.1 152.8-149.1c185.3 0 222.5 245.9 361.9 245.9 99.9 0 94.8-139.7 3.4-139.7-17.5 0-35 11.6-46.9 11.6-8.4 0-15.9-7.2-15.9-15.6 0-11.6 5.3-23.7 5.3-36.3 0-66.6-50.9-114.7-116.9-114.7-53.1 0-80 36.9-88.8 36.9-6.2 0-11.2-5-11.2-11.2 0-5.6 4.1-10.3 7.8-14.4 25.3-28.8 64.7-43.7 102.8-43.7 79.4 0 139.1 58.4 139.1 137.8 0 6.9-.3 13.7-1.2 20.6 11.9-3.1 24.1-4.7 35.9-4.7 60.7 0 111.9 45.3 111.9 107.2z" ], + skype: [ 448, 512, [], "f17e", "M424.7 299.8c2.9-14 4.7-28.9 4.7-43.8 0-113.5-91.9-205.3-205.3-205.3-14.9 0-29.7 1.7-43.8 4.7C161.3 40.7 137.7 32 112 32 50.2 32 0 82.2 0 144c0 25.7 8.7 49.3 23.3 68.2-2.9 14-4.7 28.9-4.7 43.8 0 113.5 91.9 205.3 205.3 205.3 14.9 0 29.7-1.7 43.8-4.7 19 14.6 42.6 23.3 68.2 23.3 61.8 0 112-50.2 112-112 .1-25.6-8.6-49.2-23.2-68.1zm-194.6 91.5c-65.6 0-120.5-29.2-120.5-65 0-16 9-30.6 29.5-30.6 31.2 0 34.1 44.9 88.1 44.9 25.7 0 42.3-11.4 42.3-26.3 0-18.7-16-21.6-42-28-62.5-15.4-117.8-22-117.8-87.2 0-59.2 58.6-81.1 109.1-81.1 55.1 0 110.8 21.9 110.8 55.4 0 16.9-11.4 31.8-30.3 31.8-28.3 0-29.2-33.5-75-33.5-25.7 0-42 7-42 22.5 0 19.8 20.8 21.8 69.1 33 41.4 9.3 90.7 26.8 90.7 77.6 0 59.1-57.1 86.5-112 86.5z" ], + slack: [ 448, 512, [], "f198", "M244.2 217.5l19.3 57.7-59.8 20-19.3-57.7 59.8-20zm41.4 243.7C131.6 507.4 65 471.6 18.8 317.6S8.4 97 162.4 50.8C316.4 4.6 383 40.4 429.2 194.4c46.2 154 10.4 220.6-143.6 266.8zM366.2 265c-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-19.3-57.7 29-9.7c12.2-3.9 18.6-17.2 14.7-29.4-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-59.8 20.1-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l19.3 57.7-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 59.8-20.1 10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 29-9.7c12.2-4.2 18.6-17.5 14.7-29.6z" ], + "slack-hash": [ 448, 512, [], "f3ef", "M446.2 270.4c-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-30.3-90 45.4-15.1c19.1-6.2 29.1-26.8 23-45.9-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-93.4 31.2-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-45.3 15c-19.1 6.2-29.1 26.8-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l30.3 90L78 354.8c-19 6.2-29.1 26.9-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 93.6-31.3 15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 45.4-15.1c19-6 29.1-26.7 22.9-45.7zm-254.1 47.2l-30.3-90.2 93.5-31.3 30.3 90.2-93.5 31.3z" ], + slideshare: [ 512, 512, [], "f1e7", "M249.429 211.436c0 31.716-27.715 57.717-61.717 57.717-34.001 0-61.716-26.001-61.716-57.717 0-32.001 27.715-57.716 61.716-57.716 34.001 0 61.717 25.715 61.717 57.716zm254.294 50.002c-18.286 22.573-53.144 50.288-106.289 72.003C453.722 525.163 260 555.735 263.143 457.446c0 1.714-.286-52.859-.286-93.432-4.285-.858-8.571-2-13.714-3.143 0 40.858-.286 98.289-.286 96.575C252 555.735 58.278 525.163 114.566 333.441c-53.145-21.715-88.003-49.43-106.29-72.003-9.143-13.714.858-28.287 16.001-17.715 2 1.428 4.285 2.857 6.285 4.285V49.716C30.563 22.287 51.135 0 76.565 0h359.157c25.429 0 46.002 22.287 46.002 49.716v198.293l6-4.285c15.143-10.573 25.143 4 15.999 17.714zm-46.572-189.15c0-32.858-10.572-45.716-40.859-45.716H98.566c-31.716 0-40.573 10.858-40.573 45.716v192.293c67.717 35.43 125.72 29.144 157.435 28.001 13.429-.286 22.001 2.286 27.144 7.715 1.689 1.687 10.023 9.446 20.287 17.143 1.143-15.715 10.001-25.715 33.716-24.858 32.287 1.428 91.718 7.715 160.577-29.716V72.288zM331.146 153.72c-34.002 0-61.716 25.715-61.716 57.716 0 31.716 27.715 57.717 61.716 57.717 34.287 0 61.716-26.001 61.716-57.717 0-32.001-27.429-57.716-61.716-57.716z" ], + snapchat: [ 496, 512, [], "f2ab", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm169.5 338.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C183.1 100 230.7 96 244.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z" ], + "snapchat-ghost": [ 512, 512, [], "f2ac", "M510.846 392.673c-5.211 12.157-27.239 21.089-67.36 27.318-2.064 2.786-3.775 14.686-6.507 23.956-1.625 5.566-5.623 8.869-12.128 8.869l-.297-.005c-9.395 0-19.203-4.323-38.852-4.323-26.521 0-35.662 6.043-56.254 20.588-21.832 15.438-42.771 28.764-74.027 27.399-31.646 2.334-58.025-16.908-72.871-27.404-20.714-14.643-29.828-20.582-56.241-20.582-18.864 0-30.736 4.72-38.852 4.72-8.073 0-11.213-4.922-12.422-9.04-2.703-9.189-4.404-21.263-6.523-24.13-20.679-3.209-67.31-11.344-68.498-32.15a10.627 10.627 0 0 1 8.877-11.069c69.583-11.455 100.924-82.901 102.227-85.934.074-.176.155-.344.237-.515 3.713-7.537 4.544-13.849 2.463-18.753-5.05-11.896-26.872-16.164-36.053-19.796-23.715-9.366-27.015-20.128-25.612-27.504 2.437-12.836 21.725-20.735 33.002-15.453 8.919 4.181 16.843 6.297 23.547 6.297 5.022 0 8.212-1.204 9.96-2.171-2.043-35.936-7.101-87.29 5.687-115.969C158.122 21.304 229.705 15.42 250.826 15.42c.944 0 9.141-.089 10.11-.089 52.148 0 102.254 26.78 126.723 81.643 12.777 28.65 7.749 79.792 5.695 116.009 1.582.872 4.357 1.942 8.599 2.139 6.397-.286 13.815-2.389 22.069-6.257 6.085-2.846 14.406-2.461 20.48.058l.029.01c9.476 3.385 15.439 10.215 15.589 17.87.184 9.747-8.522 18.165-25.878 25.018-2.118.835-4.694 1.655-7.434 2.525-9.797 3.106-24.6 7.805-28.616 17.271-2.079 4.904-1.256 11.211 2.46 18.748.087.168.166.342.239.515 1.301 3.03 32.615 74.46 102.23 85.934 6.427 1.058 11.163 7.877 7.725 15.859z" ], + "snapchat-square": [ 448, 512, [], "f2ad", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6.5 314.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C159.1 100 206.7 96 220.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z" ], + soundcloud: [ 640, 512, [], "f1be", "M111.4 256.3l5.8 65-5.8 68.3c-.3 2.5-2.2 4.4-4.4 4.4s-4.2-1.9-4.2-4.4l-5.6-68.3 5.6-65c0-2.2 1.9-4.2 4.2-4.2 2.2 0 4.1 2 4.4 4.2zm21.4-45.6c-2.8 0-4.7 2.2-5 5l-5 105.6 5 68.3c.3 2.8 2.2 5 5 5 2.5 0 4.7-2.2 4.7-5l5.8-68.3-5.8-105.6c0-2.8-2.2-5-4.7-5zm25.5-24.1c-3.1 0-5.3 2.2-5.6 5.3l-4.4 130 4.4 67.8c.3 3.1 2.5 5.3 5.6 5.3 2.8 0 5.3-2.2 5.3-5.3l5.3-67.8-5.3-130c0-3.1-2.5-5.3-5.3-5.3zM7.2 283.2c-1.4 0-2.2 1.1-2.5 2.5L0 321.3l4.7 35c.3 1.4 1.1 2.5 2.5 2.5s2.2-1.1 2.5-2.5l5.6-35-5.6-35.6c-.3-1.4-1.1-2.5-2.5-2.5zm23.6-21.9c-1.4 0-2.5 1.1-2.5 2.5l-6.4 57.5 6.4 56.1c0 1.7 1.1 2.8 2.5 2.8s2.5-1.1 2.8-2.5l7.2-56.4-7.2-57.5c-.3-1.4-1.4-2.5-2.8-2.5zm25.3-11.4c-1.7 0-3.1 1.4-3.3 3.3L47 321.3l5.8 65.8c.3 1.7 1.7 3.1 3.3 3.1 1.7 0 3.1-1.4 3.1-3.1l6.9-65.8-6.9-68.1c0-1.9-1.4-3.3-3.1-3.3zm25.3-2.2c-1.9 0-3.6 1.4-3.6 3.6l-5.8 70 5.8 67.8c0 2.2 1.7 3.6 3.6 3.6s3.6-1.4 3.9-3.6l6.4-67.8-6.4-70c-.3-2.2-2-3.6-3.9-3.6zm241.4-110.9c-1.1-.8-2.8-1.4-4.2-1.4-2.2 0-4.2.8-5.6 1.9-1.9 1.7-3.1 4.2-3.3 6.7v.8l-3.3 176.7 1.7 32.5 1.7 31.7c.3 4.7 4.2 8.6 8.9 8.6s8.6-3.9 8.6-8.6l3.9-64.2-3.9-177.5c-.4-3-2-5.8-4.5-7.2zm-26.7 15.3c-1.4-.8-2.8-1.4-4.4-1.4s-3.1.6-4.4 1.4c-2.2 1.4-3.6 3.9-3.6 6.7l-.3 1.7-2.8 160.8s0 .3 3.1 65.6v.3c0 1.7.6 3.3 1.7 4.7 1.7 1.9 3.9 3.1 6.4 3.1 2.2 0 4.2-1.1 5.6-2.5 1.7-1.4 2.5-3.3 2.5-5.6l.3-6.7 3.1-58.6-3.3-162.8c-.3-2.8-1.7-5.3-3.9-6.7zm-111.4 22.5c-3.1 0-5.8 2.8-5.8 6.1l-4.4 140.6 4.4 67.2c.3 3.3 2.8 5.8 5.8 5.8 3.3 0 5.8-2.5 6.1-5.8l5-67.2-5-140.6c-.2-3.3-2.7-6.1-6.1-6.1zm376.7 62.8c-10.8 0-21.1 2.2-30.6 6.1-6.4-70.8-65.8-126.4-138.3-126.4-17.8 0-35 3.3-50.3 9.4-6.1 2.2-7.8 4.4-7.8 9.2v249.7c0 5 3.9 8.6 8.6 9.2h218.3c43.3 0 78.6-35 78.6-78.3.1-43.6-35.2-78.9-78.5-78.9zm-296.7-60.3c-4.2 0-7.5 3.3-7.8 7.8l-3.3 136.7 3.3 65.6c.3 4.2 3.6 7.5 7.8 7.5 4.2 0 7.5-3.3 7.5-7.5l3.9-65.6-3.9-136.7c-.3-4.5-3.3-7.8-7.5-7.8zm-53.6-7.8c-3.3 0-6.4 3.1-6.4 6.7l-3.9 145.3 3.9 66.9c.3 3.6 3.1 6.4 6.4 6.4 3.6 0 6.4-2.8 6.7-6.4l4.4-66.9-4.4-145.3c-.3-3.6-3.1-6.7-6.7-6.7zm26.7 3.4c-3.9 0-6.9 3.1-6.9 6.9L227 321.3l3.9 66.4c.3 3.9 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9l4.2-66.4-4.2-141.7c0-3.9-3-6.9-6.9-6.9z" ], + speakap: [ 448, 512, [], "f3f3", "M352 32H96C43.2 32 0 75.2 0 128v256c0 52.8 43.2 96 96 96h256c52.8 0 96-43.2 96-96V128c0-52.8-43.2-96-96-96zM221 382.9c-39.6 0-81.9-17.8-81.9-53.7V302H179v17.8c0 15.1 19.5 24.5 41.9 24.5 24.2 0 41.3-10.4 41.3-29.5 0-23.8-27.2-31.9-54.7-42.6-31.9-12.4-63.1-26.2-63.1-69.1 0-48 38.6-66.4 79.9-66.4 37.6 0 75.5 14.1 75.5 41.9v31.2h-39.9v-16.1c0-12.1-17.8-18.5-35.6-18.5-19.5 0-35.6 8.1-35.6 26.2 0 22.1 22.5 29.2 47 38.9 35.9 12.4 71.1 27.2 71.1 71.5.1 48.6-40.8 71.1-85.8 71.1z" ], + spotify: [ 496, 512, [], "f1bc", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm100.7 364.9c-4.2 0-6.8-1.3-10.7-3.6-62.4-37.6-135-39.2-206.7-24.5-3.9 1-9 2.6-11.9 2.6-9.7 0-15.8-7.7-15.8-15.8 0-10.3 6.1-15.2 13.6-16.8 81.9-18.1 165.6-16.5 237 26.2 6.1 3.9 9.7 7.4 9.7 16.5s-7.1 15.4-15.2 15.4zm26.9-65.6c-5.2 0-8.7-2.3-12.3-4.2-62.5-37-155.7-51.9-238.6-29.4-4.8 1.3-7.4 2.6-11.9 2.6-10.7 0-19.4-8.7-19.4-19.4s5.2-17.8 15.5-20.7c27.8-7.8 56.2-13.6 97.8-13.6 64.9 0 127.6 16.1 177 45.5 8.1 4.8 11.3 11 11.3 19.7-.1 10.8-8.5 19.5-19.4 19.5zm31-76.2c-5.2 0-8.4-1.3-12.9-3.9-71.2-42.5-198.5-52.7-280.9-29.7-3.6 1-8.1 2.6-12.9 2.6-13.2 0-23.3-10.3-23.3-23.6 0-13.6 8.4-21.3 17.4-23.9 35.2-10.3 74.6-15.2 117.5-15.2 73 0 149.5 15.2 205.4 47.8 7.8 4.5 12.9 10.7 12.9 22.6 0 13.6-11 23.3-23.2 23.3z" ], + squarespace: [ 512, 512, [], "f5be", "M186.12 343.34c-9.65 9.65-9.65 25.29 0 34.94 9.65 9.65 25.29 9.65 34.94 0L378.24 221.1c19.29-19.29 50.57-19.29 69.86 0s19.29 50.57 0 69.86L293.95 445.1c19.27 19.29 50.53 19.31 69.82.04l.04-.04 119.25-119.24c38.59-38.59 38.59-101.14 0-139.72-38.59-38.59-101.15-38.59-139.72 0l-157.22 157.2zm244.53-104.8c-9.65-9.65-25.29-9.65-34.93 0l-157.2 157.18c-19.27 19.29-50.53 19.31-69.82.05l-.05-.05c-9.64-9.64-25.27-9.65-34.92-.01l-.01.01c-9.65 9.64-9.66 25.28-.02 34.93l.02.02c38.58 38.57 101.14 38.57 139.72 0l157.2-157.2c9.65-9.65 9.65-25.29.01-34.93zm-261.99 87.33l157.18-157.18c9.64-9.65 9.64-25.29 0-34.94-9.64-9.64-25.27-9.64-34.91 0L133.72 290.93c-19.28 19.29-50.56 19.3-69.85.01l-.01-.01c-19.29-19.28-19.31-50.54-.03-69.84l.03-.03L218.03 66.89c-19.28-19.29-50.55-19.3-69.85-.02l-.02.02L28.93 186.14c-38.58 38.59-38.58 101.14 0 139.72 38.6 38.59 101.13 38.59 139.73.01zm-87.33-52.4c9.64 9.64 25.27 9.64 34.91 0l157.21-157.19c19.28-19.29 50.55-19.3 69.84-.02l.02.02c9.65 9.65 25.29 9.65 34.93 0 9.65-9.65 9.65-25.29 0-34.93-38.59-38.59-101.13-38.59-139.72 0L81.33 238.54c-9.65 9.64-9.65 25.28-.01 34.93h.01z" ], + "stack-exchange": [ 448, 512, [], "f18d", "M17.7 332.3h412.7v22c0 37.7-29.3 68-65.3 68h-19L259.3 512v-89.7H83c-36 0-65.3-30.3-65.3-68v-22zm0-23.6h412.7v-85H17.7v85zm0-109.4h412.7v-85H17.7v85zM365 0H83C47 0 17.7 30.3 17.7 67.7V90h412.7V67.7C430.3 30.3 401 0 365 0z" ], + "stack-overflow": [ 384, 512, [], "f16c", "M293.7 300l-181.2-84.5 16.7-36.5 181.3 84.7-16.8 36.3zm48-76L188.2 95.7l-25.5 30.8 153.5 128.3 25.5-30.8zm39.6-31.7L262 32l-32 24 119.3 160.3 32-24zM290.7 311L95 269.7 86.8 309l195.7 41 8.2-39zm31.6 129H42.7V320h-40v160h359.5V320h-40v120zm-39.8-80h-200v39.7h200V360z" ], + staylinked: [ 440, 512, [], "f3f5", "M201.6 127.4c4.1-3.2 10.3-3 13.8.5l170 167.3-2.7-2.7 44.3 41.3c3.7 3.5 3.3 9-.7 12.2l-198 163.9c-9.9 7.6-17.3.8-17.3.8L2.3 314.6c-3.5-3.5-3-9 1.2-12.2l45.8-34.9c4.2-3.2 10.4-3 13.9.5l151.9 147.5c3.7 3.5 10 3.7 14.2.4l93.2-74c4.1-3.2 4.5-8.7.9-12.2l-84-81.3c-3.6-3.5-9.9-3.7-14-.5l-.1.1c-4.1 3.2-10.4 3-14-.5l-68.1-64.3c-3.5-3.5-3.1-9 1.1-12.2l57.3-43.6m14.8 257.3c3.7 3.5 10.1 3.7 14.3.4l50.2-38.8-.3-.3 7.7-6c4.2-3.2 4.6-8.7.9-12.2l-57.1-54.4c-3.6-3.5-10-3.7-14.2-.5l-.1.1c-4.2 3.2-10.5 3.1-14.2-.4L109 180.8c-3.6-3.5-3.1-8.9 1.1-12.2l92.2-71.5c4.1-3.2 10.3-3 13.9.5l160.4 159c3.7 3.5 10 3.7 14.1.5l45.8-35.8c4.1-3.2 4.4-8.7.7-12.2L226.7 2.5c-1.5-1.2-8-5.5-16.3 1.1L3.6 165.7c-4.2 3.2-4.8 8.7-1.2 12.2l42.3 41.7" ], + steam: [ 496, 512, [], "f1b6", "M496 256c0 137-111.2 248-248.4 248-113.8 0-209.6-76.3-239-180.4l95.2 39.3c6.4 32.1 34.9 56.4 68.9 56.4 39.2 0 71.9-32.4 70.2-73.5l84.5-60.2c52.1 1.3 95.8-40.9 95.8-93.5 0-51.6-42-93.5-93.7-93.5s-93.7 42-93.7 93.5v1.2L176.6 279c-15.5-.9-30.7 3.4-43.5 12.1L0 236.1C10.2 108.4 117.1 8 247.6 8 384.8 8 496 119 496 256zM155.7 384.3l-30.5-12.6a52.79 52.79 0 0 0 27.2 25.8c26.9 11.2 57.8-1.6 69-28.4 5.4-13 5.5-27.3.1-40.3-5.4-13-15.5-23.2-28.5-28.6-12.9-5.4-26.7-5.2-38.9-.6l31.5 13c19.8 8.2 29.2 30.9 20.9 50.7-8.3 19.9-31 29.2-50.8 21zm173.8-129.9c-34.4 0-62.4-28-62.4-62.3s28-62.3 62.4-62.3 62.4 28 62.4 62.3-27.9 62.3-62.4 62.3zm.1-15.6c25.9 0 46.9-21 46.9-46.8 0-25.9-21-46.8-46.9-46.8s-46.9 21-46.9 46.8c.1 25.8 21.1 46.8 46.9 46.8z" ], + "steam-square": [ 448, 512, [], "f1b7", "M185.2 356.5c7.7-18.5-1-39.7-19.6-47.4l-29.5-12.2c11.4-4.3 24.3-4.5 36.4.5 12.2 5.1 21.6 14.6 26.7 26.7 5 12.2 5 25.6-.1 37.7-10.5 25.1-39.4 37-64.6 26.5-11.6-4.8-20.4-13.6-25.4-24.2l28.5 11.8c18.6 7.8 39.9-.9 47.6-19.4zM400 32H48C21.5 32 0 53.5 0 80v160.7l116.6 48.1c12-8.2 26.2-12.1 40.7-11.3l55.4-80.2v-1.1c0-48.2 39.3-87.5 87.6-87.5s87.6 39.3 87.6 87.5c0 49.2-40.9 88.7-89.6 87.5l-79 56.3c1.6 38.5-29.1 68.8-65.7 68.8-31.8 0-58.5-22.7-64.5-52.7L0 319.2V432c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-99.7 222.5c-32.2 0-58.4-26.1-58.4-58.3s26.2-58.3 58.4-58.3 58.4 26.2 58.4 58.3-26.2 58.3-58.4 58.3zm.1-14.6c24.2 0 43.9-19.6 43.9-43.8 0-24.2-19.6-43.8-43.9-43.8-24.2 0-43.9 19.6-43.9 43.8 0 24.2 19.7 43.8 43.9 43.8z" ], + "steam-symbol": [ 448, 512, [], "f3f6", "M395.5 177.5c0 33.8-27.5 61-61 61-33.8 0-61-27.3-61-61s27.3-61 61-61c33.5 0 61 27.2 61 61zm52.5.2c0 63-51 113.8-113.7 113.8L225 371.3c-4 43-40.5 76.8-84.5 76.8-40.5 0-74.7-28.8-83-67L0 358V250.7L97.2 290c15.1-9.2 32.2-13.3 52-11.5l71-101.7c.5-62.3 51.5-112.8 114-112.8C397 64 448 115 448 177.7zM203 363c0-34.7-27.8-62.5-62.5-62.5-4.5 0-9 .5-13.5 1.5l26 10.5c25.5 10.2 38 39 27.7 64.5-10.2 25.5-39.2 38-64.7 27.5-10.2-4-20.5-8.3-30.7-12.2 10.5 19.7 31.2 33.2 55.2 33.2 34.7 0 62.5-27.8 62.5-62.5zm207.5-185.3c0-42-34.3-76.2-76.2-76.2-42.3 0-76.5 34.2-76.5 76.2 0 42.2 34.3 76.2 76.5 76.2 41.9.1 76.2-33.9 76.2-76.2z" ], + "sticker-mule": [ 576, 512, [], "f3f7", "M353.1 509.8c-5.9 2.9-32.1 3.2-36.5-.5-4.1-3-2.2-11.9-1.5-15 2.2-15-2.5-7.9-9.8-11.5-3.1-1.5-4.1-5.5-4.6-10-.5-1.5-1-2.5-1.5-3.5-1.7-10.7 6.8-33.6 8.2-43.4 4.9-23.7-.7-37.2 1.5-46.9 3.7-16.2 4.1-3.5 4.1-29.9-1.4-25.9 3.3-36.9.5-38.9-14.8 0-64.3 10.7-112.2 2-46.1-8.9-59.4-29-65.4-30.9-10.3-4.5-23.2.5-27.3 7-.1.1-35 70.6-39.6 87.8-6.2 20.5-.5 47.4 4.1 66.8 0 .1 4.5 14.6 10.3 19.5 2.1 1.5 5.1 2.5 7.2 4.5 2.8 2.7 9.4 15.2 9.8 16 2.6 4.5 3.6 8-1.5 10.5-3.6 2-9.3 2.5-14.4 2.5-2.6.5-1.5 3.5-3.1 5-2.9 2.8-20.7 6.1-29.9 2.5-2.6-1-5.7-3-6.2-5-1.5-4 2.1-9-1-12.5-4.5-2.9-13.1-2-17-12-2.2-5.4-2.6-7.6-2.6-49.4 0-9.7-5.9-38.7-8.2-46.9-1.5-5.5-1.5-11.5 0-16 .3-.9 4.1-4.6 4.1-13-1-1.5-4.6-.5-5.1-1.5-10.4-80.6-5.9-79-7.7-98.3-1.5-16-10.9-43.9-6.7-64.3.5-2.4 3.4-21 24.2-38.9 31-26.7 48.4-38.3 159-11.5 1.1.4 66.3 21.1 110.7-9 15.5-11.3 28.8-11.3 35.5-16 .1-.1 61.7-52.1 87-65.3 47.2-29.4 69.9-16.7 75.1-18 4.7-1 13.4-25.8 17-25.8 5.5 0 1.6 20.2 3.6 25.9.5 2 3.6 5 6.2 5 2.3 0 1.7-.8 10.3-5 8.4-5.4 14.9-17.6 20.6-17 11.7 1.6-19 41.6-19 46.9 0 2 .2.8 4.6 9.5 2.6 5.5 4.6 13.5 6.2 20 8.3 29.7 5.7 14.6 13.4 36.9 20.2 50.1 20.6 45.2 20.6 52.9 0 7.5-4.1 11-7.2 16.5-1.5 3-4.6 7.5-7.2 8-2.7.7 7-1.5-13.4 2.5-7.2 1-13.4-4.5-14.9-9.5-1.6-4.7 2.8-10.1-11.8-22.9-10.3-10-21.1-11.3-31.9-17-9.8-5.7-11.9 1-18 8-18 22.9-34 46.9-52 69.8-11.8 15-24.2 30.4-33.5 47.4-3.9 6.8-9.5 28.1-10.3 29.9-6.2 17.7-5.5 25.8-16.5 68.3-3.1 10-5.7 21.4-8.7 32.4-2.2 6.8-7.4 49.3-.5 59.4 2.1 3.5 8.7 4.5 11.3 8 .1.1 9.6 18.2 9.3 20 0 6.1-9.4 5.6-11.3 6.5-4.8 2.9-3.8 5.9-6.4 7.4" ], + strava: [ 369, 512, [], "f428", "M301.6 292l-43.9 88.2-44.6-88.2h-67.6l112.2 220 111.5-220h-67.6zM151.4 0L0 292h89.2l62.2-116.1L213.1 292h88.5L151.4 0z" ], + stripe: [ 640, 512, [], "f429", "M640 261.6c0-45.5-22-81.4-64.2-81.4s-67.9 35.9-67.9 81.1c0 53.5 30.3 78.2 73.5 78.2 21.2 0 37.1-4.8 49.2-11.5v-33.4c-12.1 6.1-26 9.8-43.6 9.8-17.3 0-32.5-6.1-34.5-26.9h86.9c.2-2.3.6-11.6.6-15.9m-87.9-16.8c0-20 12.3-28.4 23.4-28.4 10.9 0 22.5 8.4 22.5 28.4h-45.9zm-112.9-64.6c-17.4 0-28.6 8.2-34.8 13.9l-2.3-11H363v204.8l44.4-9.4.1-50.2c6.4 4.7 15.9 11.2 31.4 11.2 31.8 0 60.8-23.2 60.8-79.6.1-51.6-29.3-79.7-60.5-79.7m-10.6 122.5c-10.4 0-16.6-3.8-20.9-8.4l-.3-66c4.6-5.1 11-8.8 21.2-8.8 16.2 0 27.4 18.2 27.4 41.4.1 23.9-10.9 41.8-27.4 41.8M346.4 124v36.2l-44.6 9.5v-36.2l44.6-9.5m-44.5 59.2h44.6v153.2h-44.6V183.2zm-47.8 13.1c10.4-19.1 31.1-15.2 37.1-13.1V224c-5.7-1.8-23.4-4.5-33.9 9.3v103.1H213V183.2h38.4l2.7 13.1m-89-13.1h33.7V221h-33.7v63.2c0 26.2 28 18 33.7 15.7v33.8c-5.9 3.2-16.6 5.9-31.2 5.9-26.3 0-46.1-17-46.1-43.3l.2-142.4 43.3-9.2.1 38.5zM44.9 228.3c0 20 67.9 10.5 67.9 63.4 0 32-25.4 47.8-62.3 47.8-15.3 0-32-3-48.5-10.1v-40c14.9 8.1 33.9 14.2 48.6 14.2 9.9 0 17-2.7 17-10.9 0-21.2-67.5-13.2-67.5-62.4 0-31.4 24-50.2 60-50.2 14.7 0 29.4 2.3 44.1 8.1V230c-13.5-7.3-30.7-11.4-44.2-11.4-9.3.1-15.1 2.8-15.1 9.7" ], + "stripe-s": [ 362, 512, [], "f42a", "M144.3 154.6c0-22.3 18.6-30.9 48.4-30.9 43.4 0 98.5 13.3 141.9 36.7V26.1C287.3 7.2 240.1 0 192.8 0 77.1 0 0 60.4 0 161.4c0 157.9 216.8 132.3 216.8 200.4 0 26.4-22.9 34.9-54.7 34.9-47.2 0-108.2-19.5-156.1-45.5v128.5c53 22.8 106.8 32.4 156 32.4 118.6 0 200.3-51 200.3-153.6 0-170.2-218-139.7-218-203.9" ], + studiovinari: [ 512, 512, [], "f3f8", "M480.3 187.7l4.2 28v28l-25.1 44.1-39.8 78.4-56.1 67.5-79.1 37.8-17.7 24.5-7.7 12-9.6 4s17.3-63.6 19.4-63.6c2.1 0 20.3.7 20.3.7l66.7-38.6-92.5 26.1-55.9 36.8-22.8 28-6.6 1.4 20.8-73.6 6.9-5.5 20.7 12.9 88.3-45.2 56.8-51.5 14.8-68.4-125.4 23.3 15.2-18.2-173.4-53.3 81.9-10.5-166-122.9L133.5 108 32.2 0l252.9 126.6-31.5-38L378 163 234.7 64l18.7 38.4-49.6-18.1L158.3 0l194.6 122L310 66.2l108 96.4 12-8.9-21-16.4 4.2-37.8L451 89.1l29.2 24.7 11.5 4.2-7 6.2 8.5 12-13.1 7.4-10.3 20.2 10.5 23.9z" ], + stumbleupon: [ 512, 512, [], "f1a4", "M502.9 266v69.7c0 62.1-50.3 112.4-112.4 112.4-61.8 0-112.4-49.8-112.4-111.3v-70.2l34.3 16 51.1-15.2V338c0 14.7 12 26.5 26.7 26.5S417 352.7 417 338v-72h85.9zm-224.7-58.2l34.3 16 51.1-15.2V173c0-60.5-51.1-109-112.1-109-60.8 0-112.1 48.2-112.1 108.2v162.4c0 14.9-12 26.7-26.7 26.7S86 349.5 86 334.6V266H0v69.7C0 397.7 50.3 448 112.4 448c61.6 0 112.4-49.5 112.4-110.8V176.9c0-14.7 12-26.7 26.7-26.7s26.7 12 26.7 26.7v30.9z" ], + "stumbleupon-circle": [ 496, 512, [], "f1a3", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 177.5c-9.8 0-17.8 8-17.8 17.8v106.9c0 40.9-33.9 73.9-74.9 73.9-41.4 0-74.9-33.5-74.9-74.9v-46.5h57.3v45.8c0 10 8 17.8 17.8 17.8s17.8-7.9 17.8-17.8V200.1c0-40 34.2-72.1 74.7-72.1 40.7 0 74.7 32.3 74.7 72.6v23.7l-34.1 10.1-22.9-10.7v-20.6c.1-9.6-7.9-17.6-17.7-17.6zm167.6 123.6c0 41.4-33.5 74.9-74.9 74.9-41.2 0-74.9-33.2-74.9-74.2V263l22.9 10.7 34.1-10.1v47.1c0 9.8 8 17.6 17.8 17.6s17.8-7.9 17.8-17.6v-48h57.3c-.1 45.9-.1 46.4-.1 46.4z" ], + superpowers: [ 448, 512, [], "f2dd", "M448 32c-83.3 11-166.8 22-250 33-92 12.5-163.3 86.7-169 180-3.3 55.5 18 109.5 57.8 148.2L0 480c83.3-11 166.5-22 249.8-33 91.8-12.5 163.3-86.8 168.7-179.8 3.5-55.5-18-109.5-57.7-148.2L448 32zm-79.7 232.3c-4.2 79.5-74 139.2-152.8 134.5-79.5-4.7-140.7-71-136.3-151 4.5-79.2 74.3-139.3 153-134.5 79.3 4.7 140.5 71 136.1 151z" ], + supple: [ 640, 512, [], "f3f9", "M640 262.5c0 64.1-109 116.1-243.5 116.1-24.8 0-48.6-1.8-71.1-5 7.7.4 15.5.6 23.4.6 134.5 0 243.5-56.9 243.5-127.1 0-29.4-19.1-56.4-51.2-78 60 21.1 98.9 55.1 98.9 93.4zM47.7 227.9c-.1-70.2 108.8-127.3 243.3-127.6 7.9 0 15.6.2 23.3.5-22.5-3.2-46.3-4.9-71-4.9C108.8 96.3-.1 148.5 0 212.6c.1 38.3 39.1 72.3 99.3 93.3-32.3-21.5-51.5-48.6-51.6-78zm60.2 39.9s10.5 13.2 29.3 13.2c17.9 0 28.4-11.5 28.4-25.1 0-28-40.2-25.1-40.2-39.7 0-5.4 5.3-9.1 12.5-9.1 5.7 0 11.3 2.6 11.3 6.6v3.9h14.2v-7.9c0-12.1-15.4-16.8-25.4-16.8-16.5 0-28.5 10.2-28.5 24.1 0 26.6 40.2 25.4 40.2 39.9 0 6.6-5.8 10.1-12.3 10.1-11.9 0-20.7-10.1-20.7-10.1l-8.8 10.9zm120.8-73.6v54.4c0 11.3-7.1 17.8-17.8 17.8-10.7 0-17.8-6.5-17.8-17.7v-54.5h-15.8v55c0 18.9 13.4 31.9 33.7 31.9 20.1 0 33.4-13 33.4-31.9v-55h-15.7zm34.4 85.4h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.8-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5.1 14.7-14 14.7h-12.6zm57 43h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.7-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5 14.7-14 14.7h-12.6zm57.1 34.8c0 5.8 2.4 8.2 8.2 8.2h37.6c5.8 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-18.6c-1.7 0-2.6-1-2.6-2.6v-61.2c0-5.7-2.4-8.2-8.2-8.2H401v13.4h5.2c1.7 0 2.6 1 2.6 2.6v61.2zm63.4 0c0 5.8 2.4 8.2 8.2 8.2H519c5.7 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-19.7c-1.7 0-2.6-1-2.6-2.6v-20.3h27.7v-13.4H488v-22.4h19.2c1.7 0 2.6 1 2.6 2.6v5.2H524v-13c0-5.7-2.5-8.2-8.2-8.2h-51.6v13.4h7.8v63.9zm58.9-76v5.9h1.6v-5.9h2.7v-1.2h-7v1.2h2.7zm5.7-1.2v7.1h1.5v-5.7l2.3 5.7h1.3l2.3-5.7v5.7h1.5v-7.1h-2.3l-2.1 5.1-2.1-5.1h-2.4z" ], + teamspeak: [ 511, 512, [], "f4f9", "M.82 237.82c2.36-15.52 10.69-27.04 24.88-34.03 3.5-1.85 5.65-3.5 6.37-7.81 6.17-33.41 19.53-63.94 39.37-91.59 2.36-3.19 4.01-5.35 1.03-9.35-3.7-5.35-1.03-10.18 2.98-14.49 28.06-31.87 61.88-55.1 101.98-67.44 95.81-29.4 180.1-9.35 252.37 60.45 6.68 6.37 15.52 12.85 6.99 24.36-1.34 1.85 1.03 3.5 2.16 5.04 20.66 28.06 34.23 59.42 40.4 93.65.82 3.7 2.98 5.04 5.86 6.37 17.37 8.84 25.7 23.34 26.01 42.25 0 17.17 1.85 34.54-1.03 51.71-4.01 24.67-29.19 41.74-53.25 36.7-7.2-1.64-9.35-7.2-9.35-14.19 0-28.06.82-56.44 0-84.6-1.85-75.76-36.18-132.81-102.28-169.41C234.28 4.98 92.11 72.42 67.54 196.91c-6.06 30.42-1.74 48.27-3.7 125.82-.31 7.2-4.32 11.2-12.03 11.51C20.97 335.58 0 316.05 0 285.21v-20.87m221.74 106.81c11.82-4.32 20.05-11.82 22.51-24.36 2.36-12.34-12.03-30.02-32.38-48.73-20.87-19.22-48.22-39.06-63.43-46.57-21.69-12.03-41.74-1.85-46.26 22.72-5.04 26.21 0 51.4 14.49 73.91 10.18 15.52 25.39 22.72 43.38 24.05 11.62.62 52.54 2.16 61.69-1.02m129.83 5.55c36.5 2.81 59.33-28.55 58.39-60.45-2.14-45.17-66.17-16.48-87.79-8.02-73.16 28.14-45.05 54.92-22.2 60.75m149.26-1.33c-2.98-2.36-7.2-1.03-8.33 2.36-8.02 25.39-44.72 112.46-172.08 121.51-149.67 10.49 80.29 43.59 145.36-6.37 22.72-17.37 47.6-35.05 46.57-85.43-.32-10.07-4.84-26.72-11.52-32.07" ], + telegram: [ 496, 512, [], "f2c6", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm121.8 169.9l-40.7 191.8c-3 13.6-11.1 16.9-22.4 10.5l-62-45.7-29.9 28.8c-3.3 3.3-6.1 6.1-12.5 6.1l4.4-63.1 114.9-103.8c5-4.4-1.1-6.9-7.7-2.5l-142 89.4-61.2-19.1c-13.3-4.2-13.6-13.3 2.8-19.7l239.1-92.2c11.1-4 20.8 2.7 17.2 19.5z" ], + "telegram-plane": [ 448, 512, [], "f3fe", "M446.7 98.6l-67.6 318.8c-5.1 22.5-18.4 28.1-37.3 17.5l-103-75.9-49.7 47.8c-5.5 5.5-10.1 10.1-20.7 10.1l7.4-104.9 190.9-172.5c8.3-7.4-1.8-11.5-12.9-4.1L117.8 284 16.2 252.2c-22.1-6.9-22.5-22.1 4.6-32.7L418.2 66.4c18.4-6.9 34.5 4.1 28.5 32.2z" ], + "tencent-weibo": [ 384, 512, [], "f1d5", "M72.3 495.8c1.4 19.9-27.6 22.2-29.7 2.9C31 368.8 73.7 259.2 144 185.5c-15.6-34 9.2-77.1 50.6-77.1 30.3 0 55.1 24.6 55.1 55.1 0 44-49.5 70.8-86.9 45.1-65.7 71.3-101.4 169.8-90.5 287.2zM192 .1C66.1.1-12.3 134.3 43.7 242.4 52.4 259.8 79 246.9 70 229 23.7 136.4 91 29.8 192 29.8c75.4 0 136.9 61.4 136.9 136.9 0 90.8-86.9 153.9-167.7 133.1-19.1-4.1-25.6 24.4-6.6 29.1 110.7 23.2 204-60 204-162.3C358.6 74.7 284 .1 192 .1z" ], + themeco: [ 441, 512, [], "f5c6", "M199.74 12.29c9.74-5.64 25.59-5.73 35.39-.21l188.13 105.95c9.81 5.52 17.76 19.14 17.76 30.38v213.87c0 11.26-7.93 24.89-17.71 30.46L235.09 499.88c-9.78 5.57-25.58 5.48-35.29-.21L17.58 392.95C7.87 387.26 0 373.52 0 362.27V148.41c0-11.26 7.9-24.96 17.63-30.59L199.74 12.29zM123.54 209c-15.69 0-31.39.14-47.08.14v99.87h18.83v-29.39h28.25c48.94 0 48.79-70.62 0-70.62zm137.96 98.73l-30.25-34.1c36.4-7.39 34.26-64.21-10.7-64.49-15.84 0-31.67-.14-47.51-.14v100.01h18.83v-33.38H210l29.1 33.38h22.4v-1.28zm-40.94-81.04c22.98 0 22.9 31.96 0 31.96h-28.68v-31.96h28.68zm-94.07-1.57c20.85 0 20.78 38.24 0 38.24H94.68v-38.23l31.81-.01zm189.65-17.97c-67.4 0-69.86 104.15 0 104.15 68.39-.01 68.33-104.15 0-104.15zm0 17.12c43.43 0 44.1 69.76 0 69.76-44.12 0-43.74-69.76 0-69.76z" ], + themeisle: [ 512, 512, [], "f2b2", "M208 88.286c0-10 6.286-21.714 17.715-21.714 11.142 0 17.714 11.714 17.714 21.714 0 10.285-6.572 21.714-17.714 21.714C214.286 110 208 98.571 208 88.286zm304 160c0 36.001-11.429 102.286-36.286 129.714-22.858 24.858-87.428 61.143-120.857 70.572l-1.143.286v32.571c0 16.286-12.572 30.571-29.143 30.571-10 0-19.429-5.714-24.572-14.286-5.427 8.572-14.856 14.286-24.856 14.286-10 0-19.429-5.714-24.858-14.286-5.142 8.572-14.571 14.286-24.57 14.286-10.286 0-19.429-5.714-24.858-14.286-5.143 8.572-14.571 14.286-24.571 14.286-18.857 0-29.429-15.714-29.429-32.857-16.286 12.285-35.715 19.428-56.571 19.428-22 0-43.429-8.285-60.286-22.857 10.285-.286 20.571-2.286 30.285-5.714-20.857-5.714-39.428-18.857-52-36.286 21.37 4.645 46.209 1.673 67.143-11.143-22-22-56.571-58.857-68.572-87.428C1.143 321.714 0 303.714 0 289.429c0-49.714 20.286-160 86.286-160 10.571 0 18.857 4.858 23.143 14.857a158.792 158.792 0 0 1 12-15.428c2-2.572 5.714-5.429 7.143-8.286 7.999-12.571 11.714-21.142 21.714-34C182.571 45.428 232 17.143 285.143 17.143c6 0 12 .285 17.714 1.143C313.714 6.571 328.857 0 344.572 0c14.571 0 29.714 6 40 16.286.857.858 1.428 2.286 1.428 3.428 0 3.714-10.285 13.429-12.857 16.286 4.286 1.429 15.714 6.858 15.714 12 0 2.857-2.857 5.143-4.571 7.143 31.429 27.714 49.429 67.143 56.286 108 4.286-5.143 10.285-8.572 17.143-8.572 10.571 0 20.857 7.144 28.571 14.001C507.143 187.143 512 221.714 512 248.286zM188 89.428c0 18.286 12.571 37.143 32.286 37.143 19.714 0 32.285-18.857 32.285-37.143 0-18-12.571-36.857-32.285-36.857-19.715 0-32.286 18.858-32.286 36.857zM237.714 194c0-19.714 3.714-39.143 8.571-58.286-52.039 79.534-13.531 184.571 68.858 184.571 21.428 0 42.571-7.714 60-20 2-7.429 3.714-14.857 3.714-22.572 0-14.286-6.286-21.428-20.572-21.428-4.571 0-9.143.857-13.429 1.714-63.343 12.668-107.142 3.669-107.142-63.999zm-41.142 254.858c0-11.143-8.858-20.857-20.286-20.857-11.429 0-20 9.715-20 20.857v32.571c0 11.143 8.571 21.142 20 21.142 11.428 0 20.286-9.715 20.286-21.142v-32.571zm49.143 0c0-11.143-8.572-20.857-20-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20-10 20-21.142v-32.571zm49.713 0c0-11.143-8.857-20.857-20.285-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20.285-9.715 20.285-21.142v-32.571zm49.715 0c0-11.143-8.857-20.857-20.286-20.857-11.428 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.858 21.142 20.286 21.142 11.429 0 20.286-10 20.286-21.142v-32.571zM421.714 286c-30.857 59.142-90.285 102.572-158.571 102.572-96.571 0-160.571-84.572-160.571-176.572 0-16.857 2-33.429 6-49.714-20 33.715-29.714 72.572-29.714 111.429 0 60.286 24.857 121.715 71.429 160.857 5.143-9.714 14.857-16.286 26-16.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.571-14.286 24.858-14.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.857-14.286 24.858-14.286 10 0 19.428 5.714 24.857 14.286 5.143-8.571 14.571-14.286 24.572-14.286 10.857 0 20.857 6.572 25.714 16 43.427-36.286 68.569-92 71.426-148.286zm10.572-99.714c0-53.714-34.571-105.714-92.572-105.714-30.285 0-58.571 15.143-78.857 36.857C240.862 183.812 233.41 254 302.286 254c28.805 0 97.357-28.538 84.286 36.857 28.857-26 45.714-65.714 45.714-104.571z" ], + "trade-federation": [ 496, 512, [], "f513", "M202.45 108.42v81.61H38.94l48.22 61.91h114.73v196.75h64.61V252.96h83.27v-62.69h-83.18V171.1h145.62v-62.68H202.45zm4.86 6h197.77v50.68H259.44v30.93h83.18v50.93h-83.26v195.73h-52.73V245.94H89.86l-39.95-49.91h157.4v-81.61zM247.99 8.8C111.03 8.8 0 119.83 0 256.8s111.03 248 247.99 248S496 393.76 496 256.8 384.96 8.8 247.99 8.8zm.02 13.24c129.66 0 234.76 105.12 234.76 234.78s-105.1 234.76-234.76 234.76S13.23 386.47 13.23 256.81 118.35 22.04 248.01 22.04zm0 7.89c-125.3 0-226.89 101.57-226.89 226.87s101.59 226.89 226.89 226.89S474.88 382.1 474.88 256.8 373.31 29.93 248.01 29.93zm-.02 13.3c117.95 0 213.56 95.62 213.56 213.56s-95.62 213.56-213.56 213.56S34.43 374.75 34.43 256.8 130.04 43.23 247.99 43.23zm-73.32 104.8l15.66 18.05-22.16-9.45-12.33 20.47 2.15-23.99-23.28-5.4 23.48-5.37-2.06-23.81 12.37 20.67 22.01-9.32-15.84 18.15zm-47.14-46.54l8.01 12.4 12.69-5.86-9.32 11.45 9.5 10.25-13.77-5.32-6.82 12.2.81-14.74-13.71-2.71 14.27-3.78-1.66-13.89zm250.77 75.59l11.99 19.56 20.88-9.11-14.9 17.45 15.11 17.04-21.2-8.78-11.54 19.64 1.8-22.87-22.24-4.9 22.31-5.36-2.21-22.67zm-107.05 98.45l13.86-3.22-1.28-14.17 7.35 12.18 13.08-5.59-9.31 10.75 9.36 10.71-13.1-5.54-7.29 12.21 1.22-14.17-13.89-3.16zm-125.43 6.5l23.73-3.87-1.73-24.53 11.01 21.38 22.79-9.22-16.93 17.08 15.81 18.83-21.47-10.82-13.02 20.86 3.66-23.77-23.85-5.94zm63.44-165.66v81.61H54.16l36.72 46.01h117.7v196.75h48.82V245.01h83.27v-47.03H257.4v-34.83h145.73v-46.78H209.26zm10.86 11.2h171.8v24.36H246.88v56.23h82.93v23.94h-82.93v197.42h-26.76V232.1H96.31l-20.09-23.94h143.9v-80.59z" ], + trello: [ 448, 512, [], "f181", "M392 32H56C25.1 32 0 57.1 0 88v336c0 30.9 25.1 56 56 56h336c30.9 0 56-25.1 56-56V88c0-30.9-25.1-56-56-56zM194.9 371.4c0 14.8-12 26.9-26.9 26.9H85.1c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9H168c14.8 0 26.9 12 26.9 26.9v254.3zm194.9-112c0 14.8-12 26.9-26.9 26.9H280c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9h82.9c14.8 0 26.9 12 26.9 26.9v142.3z" ], + tripadvisor: [ 576, 512, [], "f262", "M166.4 280.521c0 13.236-10.73 23.966-23.966 23.966s-23.966-10.73-23.966-23.966 10.73-23.966 23.966-23.966 23.966 10.729 23.966 23.966zm264.962-23.956c-13.23 0-23.956 10.725-23.956 23.956 0 13.23 10.725 23.956 23.956 23.956 13.23 0 23.956-10.725 23.956-23.956-.001-13.231-10.726-23.956-23.956-23.956zm89.388 139.49c-62.667 49.104-153.276 38.109-202.379-24.559l-30.979 46.325-30.683-45.939c-48.277 60.39-135.622 71.891-197.885 26.055-64.058-47.158-77.759-137.316-30.601-201.374A186.762 186.762 0 0 0 0 139.416l90.286-.05a358.48 358.48 0 0 1 197.065-54.03 350.382 350.382 0 0 1 192.181 53.349l96.218.074a185.713 185.713 0 0 0-28.352 57.649c46.793 62.747 34.964 151.37-26.648 199.647zM259.366 281.761c-.007-63.557-51.535-115.075-115.092-115.068C80.717 166.7 29.2 218.228 29.206 281.785c.007 63.557 51.535 115.075 115.092 115.068 63.513-.075 114.984-51.539 115.068-115.052v-.04zm28.591-10.455c5.433-73.44 65.51-130.884 139.12-133.022a339.146 339.146 0 0 0-139.727-27.812 356.31 356.31 0 0 0-140.164 27.253c74.344 1.582 135.299 59.424 140.771 133.581zm251.706-28.767c-21.992-59.634-88.162-90.148-147.795-68.157-59.634 21.992-90.148 88.162-68.157 147.795v.032c22.038 59.607 88.198 90.091 147.827 68.113 59.615-22.004 90.113-88.162 68.125-147.783zm-326.039 37.975v.115c-.057 39.328-31.986 71.163-71.314 71.106-39.328-.057-71.163-31.986-71.106-71.314.057-39.328 31.986-71.163 71.314-71.106 39.259.116 71.042 31.94 71.106 71.199zm-24.512 0v-.084c-.051-25.784-20.994-46.645-46.778-46.594-25.784.051-46.645 20.994-46.594 46.777.051 25.784 20.994 46.645 46.777 46.594 25.726-.113 46.537-20.968 46.595-46.693zm313.423 0v.048c-.02 39.328-31.918 71.194-71.247 71.173s-71.194-31.918-71.173-71.247c.02-39.328 31.918-71.194 71.247-71.173 39.29.066 71.121 31.909 71.173 71.199zm-24.504-.008c-.009-25.784-20.918-46.679-46.702-46.67-25.784.009-46.679 20.918-46.67 46.702.009 25.784 20.918 46.678 46.702 46.67 25.765-.046 46.636-20.928 46.67-46.693v-.009z" ], + tumblr: [ 320, 512, [], "f173", "M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z" ], + "tumblr-square": [ 448, 512, [], "f174", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-82.3 364.2c-8.5 9.1-31.2 19.8-60.9 19.8-75.5 0-91.9-55.5-91.9-87.9v-90h-29.7c-3.4 0-6.2-2.8-6.2-6.2v-42.5c0-4.5 2.8-8.5 7.1-10 38.8-13.7 50.9-47.5 52.7-73.2.5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2h-52.1V321c0 21.4 14.8 33.5 42.5 22.4 3-1.2 5.6-2 8-1.4 2.2.5 3.6 2.1 4.6 4.9l13.8 40.2c1 3.2 2 6.7-.3 9.1z" ], + twitch: [ 448, 512, [], "f1e8", "M40.1 32L10 108.9v314.3h107V480h60.2l56.8-56.8h87l117-117V32H40.1zm357.8 254.1L331 353H224l-56.8 56.8V353H76.9V72.1h321v214zM331 149v116.9h-40.1V149H331zm-107 0v116.9h-40.1V149H224z" ], + twitter: [ 512, 512, [], "f099", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z" ], + "twitter-square": [ 448, 512, [], "f081", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z" ], + typo3: [ 433, 512, [], "f42b", "M330.8 341c-7 2.3-11.6 2.3-18.5 2.3-57.2 0-140.6-198.5-140.6-264.9 0-24.7 5.4-32.4 13.9-39.4-69.5 8.5-149.3 34-176.3 66.4-5.4 7.7-9.3 20.8-9.3 37.1C0 246 106.8 480 184.1 480c36.3 0 97.3-59.5 146.7-139M294.5 32c71.8 0 138.8 11.6 138.8 52.5 0 82.6-52.5 182.3-78.8 182.3-47.9 0-101.7-132.1-101.7-198.5 0-30.9 11.6-36.3 41.7-36.3" ], + uber: [ 448, 512, [], "f402", "M414.1 32H33.9C15.2 32 0 47.2 0 65.9V446c0 18.8 15.2 34 33.9 34H414c18.7 0 33.9-15.2 33.9-33.9V65.9C448 47.2 432.8 32 414.1 32zM237.6 391.1C163 398.6 96.4 344.2 88.9 269.6h94.4V290c0 3.7 3 6.8 6.8 6.8H258c3.7 0 6.8-3 6.8-6.8v-67.9c0-3.7-3-6.8-6.8-6.8h-67.9c-3.7 0-6.8 3-6.8 6.8v20.4H88.9c7-69.4 65.4-122.2 135.1-122.2 69.7 0 128.1 52.8 135.1 122.2 7.5 74.5-46.9 141.1-121.5 148.6z" ], + uikit: [ 448, 512, [], "f403", "M443.9 128v256L218 512 0 384V169.7l87.6 45.1v117l133.5 75.5 135.8-75.5v-151l-101.1-57.6 87.6-53.1L443.9 128zM308.6 49.1L223.8 0l-88.6 54.8 86 47.3 87.4-53z" ], + uniregistry: [ 384, 512, [], "f404", "M281.1 220.1H384v-14.8H281.1v14.8zm0-37.1H384v-12.4H281.1V183zm0 74.2H384v-17.3H281.1v17.3zm-157.7 86.7H8.5c2.6 8.5 5.8 16.8 9.6 24.8h138.3c-12.9-5.7-24.1-14.2-33-24.8m145.7-12.4h109.7c1.8-7.3 3.1-14.7 3.9-22.3H278.3c-2.1 7.9-5.2 15.4-9.2 22.3m-41.5 37.1H367c3.7-8 5.8-16.2 8.5-24.8h-115c-8.8 10.7-20.1 19.2-32.9 24.8M384 32H281.1v2.5H384V32zM192 480c39.5 0 76.2-11.8 106.8-32.2H85.3C115.8 468.2 152.5 480 192 480m89.1-334.2H384V136H281.1v9.8zm0-37.1H384v-7.4H281.1v7.4zm0-37.1H384v-4.9H281.1v4.9zm-178.2 99H0V183h102.9v-12.4zM38.8 405.7h305.3c6.7-8.5 12.6-17.6 17.8-27.2H23c5.2 9.6 9.2 18.7 15.8 27.2m64.1-118.8v-12.4H0v12.4c0 2.5 0 5 .1 7.4h103.1c-.2-2.4-.3-4.9-.3-7.4m178.2 0c0 2.5-.1 5-.4 7.4h103.1c.1-2.5.2-4.9.2-7.4v-12.4H281.1v12.4zm-203 156h227.7c11.8-8.7 22.7-18.6 32.2-29.7H44.9c9.6 11 21.4 21 33.2 29.7m24.8-376.2H0v4.9h102.9v-4.9zm0-34.7H0v2.5h102.9V32zm0 173.3H0v14.8h102.9v-14.8zm0 34.6H0v17.3h102.9v-17.3zm0-103.9H0v9.9h102.9V136zm0-34.7H0v7.4h102.9v-7.4zm2.8 207.9H1.3c.9 7.6 2.2 15 3.9 22.3h109.7c-4-6.9-7.2-14.4-9.2-22.3" ], + untappd: [ 640, 512, [], "f405", "M401.3 49.9c-79.8 160.1-84.6 152.5-87.9 173.2l-5.2 32.8c-1.9 12-6.6 23.5-13.7 33.4L145.6 497.1c-7.6 10.6-20.4 16.2-33.4 14.6-40.3-5-77.8-32.2-95.3-68.5-5.7-11.8-4.5-25.8 3.1-36.4l148.9-207.9c7.1-9.9 16.4-18 27.2-23.7l29.3-15.5c18.5-9.8 9.7-11.9 135.6-138.9 1-4.8 1-7.3 3.6-8 3-.7 6.6-1 6.3-4.6l-.4-4.6c-.2-1.9 1.3-3.6 3.2-3.6 4.5-.1 13.2 1.2 25.6 10 12.3 8.9 16.4 16.8 17.7 21.1.6 1.8-.6 3.7-2.4 4.2l-4.5 1.1c-3.4.9-2.5 4.4-2.3 7.4.1 2.8-2.3 3.6-6.5 6.1zM230.1 36.4c3.4.9 2.5 4.4 2.3 7.4-.2 2.7 2.1 3.5 6.4 6 7.9 15.9 15.3 30.5 22.2 44 .7 1.3 2.3 1.5 3.3.5 11.2-12 24.6-26.2 40.5-42.6 1.3-1.4 1.4-3.5.1-4.9-8-8.2-16.5-16.9-25.6-26.1-1-4.7-1-7.3-3.6-8-3-.8-6.6-1-6.3-4.6.3-3.3 1.4-8.1-2.8-8.2-4.5-.1-13.2 1.1-25.6 10-12.3 8.9-16.4 16.8-17.7 21.1-1.4 4.2 3.6 4.6 6.8 5.4zM620 406.7L471.2 198.8c-13.2-18.5-26.6-23.4-56.4-39.1-11.2-5.9-14.2-10.9-30.5-28.9-1-1.1-2.9-.9-3.6.5-46.3 88.8-47.1 82.8-49 94.8-1.7 10.7-1.3 20 .3 29.8 1.9 12 6.6 23.5 13.7 33.4l148.9 207.9c7.6 10.6 20.2 16.2 33.1 14.7 40.3-4.9 78-32 95.7-68.6 5.4-11.9 4.3-25.9-3.4-36.6z" ], + usb: [ 640, 512, [], "f287", "M641.5 256c0 3.1-1.7 6.1-4.5 7.5L547.9 317c-1.4.8-2.8 1.4-4.5 1.4-1.4 0-3.1-.3-4.5-1.1-2.8-1.7-4.5-4.5-4.5-7.8v-35.6H295.7c25.3 39.6 40.5 106.9 69.6 106.9H392V354c0-5 3.9-8.9 8.9-8.9H490c5 0 8.9 3.9 8.9 8.9v89.1c0 5-3.9 8.9-8.9 8.9h-89.1c-5 0-8.9-3.9-8.9-8.9v-26.7h-26.7c-75.4 0-81.1-142.5-124.7-142.5H140.3c-8.1 30.6-35.9 53.5-69 53.5C32 327.3 0 295.3 0 256s32-71.3 71.3-71.3c33.1 0 61 22.8 69 53.5 39.1 0 43.9 9.5 74.6-60.4C255 88.7 273 95.7 323.8 95.7c7.5-20.9 27-35.6 50.4-35.6 29.5 0 53.5 23.9 53.5 53.5s-23.9 53.5-53.5 53.5c-23.4 0-42.9-14.8-50.4-35.6H294c-29.1 0-44.3 67.4-69.6 106.9h310.1v-35.6c0-3.3 1.7-6.1 4.5-7.8 2.8-1.7 6.4-1.4 8.9.3l89.1 53.5c2.8 1.1 4.5 4.1 4.5 7.2z" ], + ussunnah: [ 512, 512, [], "f407", "M156.8 285.1l5.7 14.4h-8.2c-1.3-3.2-3.1-7.7-3.8-9.5-2.5-6.3-1.1-8.4 0-10 1.9-2.7 3.2-4.4 3.6-5.2 0 2.2.8 5.7 2.7 10.3zm297.3 18.8c-2.1 13.8-5.7 27.1-10.5 39.7l43 23.4-44.8-18.8c-5.3 13.2-12 25.6-19.9 37.2l34.2 30.2-36.8-26.4c-8.4 11.8-18 22.6-28.7 32.3l24.9 34.7-28.1-31.8c-11 9.6-23.1 18-36.1 25.1l15.7 37.2-19.3-35.3c-13.1 6.8-27 12.1-41.6 15.9l6.7 38.4-10.5-37.4c-14.3 3.4-29.2 5.3-44.5 5.4L256 512l-1.9-38.4c-15.3-.1-30.2-2-44.5-5.3L199 505.6l6.7-38.2c-14.6-3.7-28.6-9.1-41.7-15.8l-19.2 35.1 15.6-37c-13-7-25.2-15.4-36.2-25.1l-27.9 31.6 24.7-34.4c-10.7-9.7-20.4-20.5-28.8-32.3l-36.5 26.2 33.9-29.9c-7.9-11.6-14.6-24.1-20-37.3l-44.4 18.7L67.8 344c-4.8-12.7-8.4-26.1-10.5-39.9l-51 9 50.3-14.2c-1.1-8.5-1.7-17.1-1.7-25.9 0-4.7.2-9.4.5-14.1L0 256l56-2.8c1.3-13.1 3.8-25.8 7.5-38.1L6.4 199l58.9 10.4c4-12 9.1-23.5 15.2-34.4l-55.1-30 58.3 24.6C90 159 97.2 149.2 105.3 140L55.8 96.4l53.9 38.7c8.1-8.6 17-16.5 26.6-23.6l-40-55.6 45.6 51.6c9.5-6.6 19.7-12.3 30.3-17.2l-27.3-64.9 33.8 62.1c10.5-4.4 21.4-7.9 32.7-10.4L199 6.4l19.5 69.2c11-2.1 22.3-3.2 33.8-3.4L256 0l3.6 72.2c11.5.2 22.8 1.4 33.8 3.5L313 6.4l-12.4 70.7c11.3 2.6 22.2 6.1 32.6 10.5l33.9-62.2-27.4 65.1c10.6 4.9 20.7 10.7 30.2 17.2l45.8-51.8-40.1 55.9c9.5 7.1 18.4 15 26.5 23.6l54.2-38.9-49.7 43.9c8 9.1 15.2 18.9 21.5 29.4l58.7-24.7-55.5 30.2c6.1 10.9 11.1 22.3 15.1 34.3l59.3-10.4-57.5 16.2c3.7 12.2 6.2 24.9 7.5 37.9L512 256l-56 2.8c.3 4.6.5 9.3.5 14.1 0 8.7-.6 17.3-1.6 25.8l50.7 14.3-51.5-9.1zm-21.8-31c0-97.5-79-176.5-176.5-176.5s-176.5 79-176.5 176.5 79 176.5 176.5 176.5 176.5-79 176.5-176.5zm-24 0c0 84.3-68.3 152.6-152.6 152.6s-152.6-68.3-152.6-152.6 68.3-152.6 152.6-152.6 152.6 68.3 152.6 152.6zM195 241c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-40.7-19c0 2.1 1.3 3.8 3.6 5.1 3.5 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-19 0c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.4 6.8-9.6 10.9-9.6 12.6zm204.9 87.9c-8.4-3-8.7-6.8-8.7-15.6V182c-8.2 12.5-14.2 18.6-18 18.6 6.3 14.4 9.5 23.9 9.5 28.3v64.3c0 2.2-2.2 6.5-4.7 6.5h-18c-2.8-7.5-10.2-26.9-15.3-40.3-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3 2.6 6.7 6.4 16.5 7.9 20.2h-9.2c-3.9-10.4-9.6-25.4-11.8-31.1-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3.8 2 2.8 7.3 4.3 10.9H256c-1.5-4.1-5.6-14.6-8.4-22-2 2.5-7.2 9.2-10.7 13.7 2.5 1.6 4.3 3.6 5.2 6.3.2.6.5 1.4.6 1.7H225c-4.6-13.9-11.4-27.7-11.4-34.1 0-2.2.3-5.1 1.1-8.2-8.8 10.8-14 15.9-14 25 0 7.5 10.4 28.3 10.4 33.3 0 1.7-.5 3.3-1.4 4.9-9.6-12.7-15.5-20.7-18.8-20.7h-12l-11.2-28c-3.8-9.6-5.7-16-5.7-18.8 0-3.8.5-7.7 1.7-12.2-1 1.3-3.7 4.7-5.5 7.1-.8-2.1-3.1-7.7-4.6-11.5-2.1 2.5-7.5 9.1-11.2 13.6.9 2.3 3.3 8.1 4.9 12.2-2.5 3.3-9.1 11.8-13.6 17.7-4 5.3-5.8 13.3-2.7 21.8 2.5 6.7 2 7.9-1.7 14.1H191c5.5 0 14.3 14 15.5 22 13.2-16 15.4-19.6 16.8-21.6h107c3.9 0 7.2-1.9 9.9-5.8zm20.1-26.6V181.7c-9 12.5-15.9 18.6-20.7 18.6 7.1 14.4 10.7 23.9 10.7 28.3v66.3c0 17.5 8.6 20.4 24 20.4 8.1 0 12.5-.8 13.7-2.7-4.3-1.6-7.6-2.5-9.9-3.3-8.1-3.2-17.8-7.4-17.8-26z" ], + vaadin: [ 448, 512, [], "f408", "M224.5 140.7c1.5-17.6 4.9-52.7 49.8-52.7h98.6c20.7 0 32.1-7.8 32.1-21.6V54.1c0-12.2 9.3-22.1 21.5-22.1S448 41.9 448 54.1v36.5c0 42.9-21.5 62-66.8 62H280.7c-30.1 0-33 14.7-33 27.1 0 1.3-.1 2.5-.2 3.7-.7 12.3-10.9 22.2-23.4 22.2s-22.7-9.8-23.4-22.2c-.1-1.2-.2-2.4-.2-3.7 0-12.3-3-27.1-33-27.1H66.8c-45.3 0-66.8-19.1-66.8-62V54.1C0 41.9 9.4 32 21.6 32s21.5 9.9 21.5 22.1v12.3C43.1 80.2 54.5 88 75.2 88h98.6c44.8 0 48.3 35.1 49.8 52.7h.9zM224 456c11.5 0 21.4-7 25.7-16.3 1.1-1.8 97.1-169.6 98.2-171.4 11.9-19.6-3.2-44.3-27.2-44.3-13.9 0-23.3 6.4-29.8 20.3L224 362l-66.9-117.7c-6.4-13.9-15.9-20.3-29.8-20.3-24 0-39.1 24.6-27.2 44.3 1.1 1.9 97.1 169.6 98.2 171.4 4.3 9.3 14.2 16.3 25.7 16.3z" ], + viacoin: [ 384, 512, [], "f237", "M384 32h-64l-80.7 192h-94.5L64 32H0l48 112H0v48h68.5l13.8 32H0v48h102.8L192 480l89.2-208H384v-48h-82.3l13.8-32H384v-48h-48l48-112zM192 336l-27-64h54l-27 64z" ], + viadeo: [ 448, 512, [], "f2a9", "M276.2 150.5v.7C258.3 98.6 233.6 47.8 205.4 0c43.3 29.2 67 100 70.8 150.5zm32.7 121.7c7.6 18.2 11 37.5 11 57 0 77.7-57.8 141-137.8 139.4l3.8-.3c74.2-46.7 109.3-118.6 109.3-205.1 0-38.1-6.5-75.9-18.9-112 1 11.7 1 23.7 1 35.4 0 91.8-18.1 241.6-116.6 280C95 455.2 49.4 398 49.4 329.2c0-75.6 57.4-142.3 135.4-142.3 16.8 0 33.7 3.1 49.1 9.6 1.7-15.1 6.5-29.9 13.4-43.3-19.9-7.2-41.2-10.7-62.5-10.7-161.5 0-238.7 195.9-129.9 313.7 67.9 74.6 192 73.9 259.8 0 56.6-61.3 60.9-142.4 36.4-201-12.7 8-27.1 13.9-42.2 17zM418.1 11.7c-31 66.5-81.3 47.2-115.8 80.1-12.4 12-20.6 34-20.6 50.5 0 14.1 4.5 27.1 12 38.8 47.4-11 98.3-46 118.2-90.7-.7 5.5-4.8 14.4-7.2 19.2-20.3 35.7-64.6 65.6-99.7 84.9 14.8 14.4 33.7 25.8 55 25.8 79 0 110.1-134.6 58.1-208.6z" ], + "viadeo-square": [ 448, 512, [], "f2aa", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM280.7 381.2c-42.4 46.2-120 46.6-162.4 0-68-73.6-19.8-196.1 81.2-196.1 13.3 0 26.6 2.1 39.1 6.7-4.3 8.4-7.3 17.6-8.4 27.1-9.7-4.1-20.2-6-30.7-6-48.8 0-84.6 41.7-84.6 88.9 0 43 28.5 78.7 69.5 85.9 61.5-24 72.9-117.6 72.9-175 0-7.3 0-14.8-.6-22.1-11.2-32.9-26.6-64.6-44.2-94.5 27.1 18.3 41.9 62.5 44.2 94.1v.4c7.7 22.5 11.8 46.2 11.8 70 0 54.1-21.9 99-68.3 128.2l-2.4.2c50 1 86.2-38.6 86.2-87.2 0-12.2-2.1-24.3-6.9-35.7 9.5-1.9 18.5-5.6 26.4-10.5 15.3 36.6 12.6 87.3-22.8 125.6zM309 233.7c-13.3 0-25.1-7.1-34.4-16.1 21.9-12 49.6-30.7 62.3-53 1.5-3 4.1-8.6 4.5-12-12.5 27.9-44.2 49.8-73.9 56.7-4.7-7.3-7.5-15.5-7.5-24.3 0-10.3 5.2-24.1 12.9-31.6 21.6-20.5 53-8.5 72.4-50 32.5 46.2 13.1 130.3-36.3 130.3z" ], + viber: [ 512, 512, [], "f409", "M444 49.9C431.3 38.2 379.9.9 265.3.4c0 0-135.1-8.1-200.9 52.3C27.8 89.3 14.9 143 13.5 209.5c-1.4 66.5-3.1 191.1 117 224.9h.1l-.1 51.6s-.8 20.9 13 25.1c16.6 5.2 26.4-10.7 42.3-27.8 8.7-9.4 20.7-23.2 29.8-33.7 82.2 6.9 145.3-8.9 152.5-11.2 16.6-5.4 110.5-17.4 125.7-142 15.8-128.6-7.6-209.8-49.8-246.5zM457.9 287c-12.9 104-89 110.6-103 115.1-6 1.9-61.5 15.7-131.2 11.2 0 0-52 62.7-68.2 79-5.3 5.3-11.1 4.8-11-5.7 0-6.9.4-85.7.4-85.7-.1 0-.1 0 0 0-101.8-28.2-95.8-134.3-94.7-189.8 1.1-55.5 11.6-101 42.6-131.6 55.7-50.5 170.4-43 170.4-43 96.9.4 143.3 29.6 154.1 39.4 35.7 30.6 53.9 103.8 40.6 211.1zm-139-80.8c.4 8.6-12.5 9.2-12.9.6-1.1-22-11.4-32.7-32.6-33.9-8.6-.5-7.8-13.4.7-12.9 27.9 1.5 43.4 17.5 44.8 46.2zm20.3 11.3c1-42.4-25.5-75.6-75.8-79.3-8.5-.6-7.6-13.5.9-12.9 58 4.2 88.9 44.1 87.8 92.5-.1 8.6-13.1 8.2-12.9-.3zm47 13.4c.1 8.6-12.9 8.7-12.9.1-.6-81.5-54.9-125.9-120.8-126.4-8.5-.1-8.5-12.9 0-12.9 73.7.5 133 51.4 133.7 139.2zM374.9 329v.2c-10.8 19-31 40-51.8 33.3l-.2-.3c-21.1-5.9-70.8-31.5-102.2-56.5-16.2-12.8-31-27.9-42.4-42.4-10.3-12.9-20.7-28.2-30.8-46.6-21.3-38.5-26-55.7-26-55.7-6.7-20.8 14.2-41 33.3-51.8h.2c9.2-4.8 18-3.2 23.9 3.9 0 0 12.4 14.8 17.7 22.1 5 6.8 11.7 17.7 15.2 23.8 6.1 10.9 2.3 22-3.7 26.6l-12 9.6c-6.1 4.9-5.3 14-5.3 14s17.8 67.3 84.3 84.3c0 0 9.1.8 14-5.3l9.6-12c4.6-6 15.7-9.8 26.6-3.7 14.7 8.3 33.4 21.2 45.8 32.9 7 5.7 8.6 14.4 3.8 23.6z" ], + vimeo: [ 448, 512, [], "f40a", "M403.2 32H44.8C20.1 32 0 52.1 0 76.8v358.4C0 459.9 20.1 480 44.8 480h358.4c24.7 0 44.8-20.1 44.8-44.8V76.8c0-24.7-20.1-44.8-44.8-44.8zM377 180.8c-1.4 31.5-23.4 74.7-66 129.4-44 57.2-81.3 85.8-111.7 85.8-18.9 0-34.8-17.4-47.9-52.3-25.5-93.3-36.4-148-57.4-148-2.4 0-10.9 5.1-25.4 15.2l-15.2-19.6c37.3-32.8 72.9-69.2 95.2-71.2 25.2-2.4 40.7 14.8 46.5 51.7 20.7 131.2 29.9 151 67.6 91.6 13.5-21.4 20.8-37.7 21.8-48.9 3.5-33.2-25.9-30.9-45.8-22.4 15.9-52.1 46.3-77.4 91.2-76 33.3.9 49 22.5 47.1 64.7z" ], + "vimeo-square": [ 448, 512, [], "f194", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16.2 149.6c-1.4 31.1-23.2 73.8-65.3 127.9-43.5 56.5-80.3 84.8-110.4 84.8-18.7 0-34.4-17.2-47.3-51.6-25.2-92.3-35.9-146.4-56.7-146.4-2.4 0-10.8 5-25.1 15.1L64 192c36.9-32.4 72.1-68.4 94.1-70.4 24.9-2.4 40.2 14.6 46 51.1 20.5 129.6 29.6 149.2 66.8 90.5 13.4-21.2 20.6-37.2 21.5-48.3 3.4-32.8-25.6-30.6-45.2-22.2 15.7-51.5 45.8-76.5 90.1-75.1 32.9 1 48.4 22.4 46.5 64z" ], + "vimeo-v": [ 448, 512, [], "f27d", "M447.8 153.6c-2 43.6-32.4 103.3-91.4 179.1-60.9 79.2-112.4 118.8-154.6 118.8-26.1 0-48.2-24.1-66.3-72.3C100.3 250 85.3 174.3 56.2 174.3c-3.4 0-15.1 7.1-35.2 21.1L0 168.2c51.6-45.3 100.9-95.7 131.8-98.5 34.9-3.4 56.3 20.5 64.4 71.5 28.7 181.5 41.4 208.9 93.6 126.7 18.7-29.6 28.8-52.1 30.2-67.6 4.8-45.9-35.8-42.8-63.3-31 22-72.1 64.1-107.1 126.2-105.1 45.8 1.2 67.5 31.1 64.9 89.4z" ], + vine: [ 384, 512, [], "f1ca", "M384 254.7v52.1c-18.4 4.2-36.9 6.1-52.1 6.1-36.9 77.4-103 143.8-125.1 156.2-14 7.9-27.1 8.4-42.7-.8C137 452 34.2 367.7 0 102.7h74.5C93.2 261.8 139 343.4 189.3 404.5c27.9-27.9 54.8-65.1 75.6-106.9-49.8-25.3-80.1-80.9-80.1-145.6 0-65.6 37.7-115.1 102.2-115.1 114.9 0 106.2 127.9 81.6 181.5 0 0-46.4 9.2-63.5-20.5 3.4-11.3 8.2-30.8 8.2-48.5 0-31.3-11.3-46.6-28.4-46.6-18.2 0-30.8 17.1-30.8 50 .1 79.2 59.4 118.7 129.9 101.9z" ], + vk: [ 576, 512, [], "f189", "M545 117.7c3.7-12.5 0-21.7-17.8-21.7h-58.9c-15 0-21.9 7.9-25.6 16.7 0 0-30 73.1-72.4 120.5-13.7 13.7-20 18.1-27.5 18.1-3.7 0-9.4-4.4-9.4-16.9V117.7c0-15-4.2-21.7-16.6-21.7h-92.6c-9.4 0-15 7-15 13.5 0 14.2 21.2 17.5 23.4 57.5v86.8c0 19-3.4 22.5-10.9 22.5-20 0-68.6-73.4-97.4-157.4-5.8-16.3-11.5-22.9-26.6-22.9H38.8c-16.8 0-20.2 7.9-20.2 16.7 0 15.6 20 93.1 93.1 195.5C160.4 378.1 229 416 291.4 416c37.5 0 42.1-8.4 42.1-22.9 0-66.8-3.4-73.1 15.4-73.1 8.7 0 23.7 4.4 58.7 38.1 40 40 46.6 57.9 69 57.9h58.9c16.8 0 25.3-8.4 20.4-25-11.2-34.9-86.9-106.7-90.3-111.5-8.7-11.2-6.2-16.2 0-26.2.1-.1 72-101.3 79.4-135.6z" ], + vnv: [ 640, 512, [], "f40b", "M104.9 352c-34.1 0-46.4-30.4-46.4-30.4L2.6 210.1S-7.8 192 13 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.7-74.5c5.6-9.5 8.4-18.1 18.8-18.1h32.8c20.8 0 10.4 18.1 10.4 18.1l-55.8 111.5S174.2 352 140 352h-35.1zm395 0c-34.1 0-46.4-30.4-46.4-30.4l-55.9-111.5S387.2 192 408 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.8-74.5c5.6-9.5 8.4-18.1 18.8-18.1H627c20.8 0 10.4 18.1 10.4 18.1l-55.9 111.5S569.3 352 535.1 352h-35.2zM337.6 192c34.1 0 46.4 30.4 46.4 30.4l55.9 111.5s10.4 18.1-10.4 18.1h-32.8c-10.4 0-13.2-8.7-18.8-18.1l-36.7-74.5s-5.2-13.1-21.1-13.1c-15.9 0-21.1 13.1-21.1 13.1l-36.7 74.5c-5.6 9.4-8.4 18.1-18.8 18.1h-32.9c-20.8 0-10.4-18.1-10.4-18.1l55.9-111.5s12.2-30.4 46.4-30.4h35.1z" ], + vuejs: [ 448, 512, [], "f41f", "M356.9 64.3H280l-56 88.6-48-88.6H0L224 448 448 64.3h-91.1zm-301.2 32h53.8L224 294.5 338.4 96.3h53.8L224 384.5 55.7 96.3z" ], + weebly: [ 512, 512, [], "f5cc", "M425.09 65.83c-39.88 0-73.28 25.73-83.66 64.33-18.16-58.06-65.5-64.33-84.95-64.33-19.78 0-66.8 6.28-85.28 64.33-10.38-38.6-43.45-64.33-83.66-64.33C38.59 65.83 0 99.72 0 143.03c0 28.96 4.18 33.27 77.17 233.48 22.37 60.57 67.77 69.35 92.74 69.35 39.23 0 70.04-19.46 85.93-53.98 15.89 34.83 46.69 54.29 85.93 54.29 24.97 0 70.36-9.1 92.74-69.67 76.55-208.65 77.5-205.58 77.5-227.2.63-48.32-36.01-83.47-86.92-83.47zm26.34 114.81l-65.57 176.44c-7.92 21.49-21.22 37.22-46.24 37.22-23.44 0-37.38-12.41-44.03-33.9l-39.28-117.42h-.95L216.08 360.4c-6.96 21.5-20.9 33.6-44.02 33.6-25.02 0-38.33-15.74-46.24-37.22L60.88 181.55c-5.38-14.83-7.92-23.91-7.92-34.5 0-16.34 15.84-29.36 38.33-29.36 18.69 0 31.99 11.8 36.11 29.05l44.03 139.82h.95l44.66-136.79c6.02-19.67 16.47-32.08 38.96-32.08s32.94 12.11 38.96 32.08l44.66 136.79h.95l44.03-139.82c4.12-17.25 17.42-29.05 36.11-29.05 22.17 0 38.33 13.32 38.33 35.71-.32 7.87-4.12 16.04-7.61 27.24z" ], + weibo: [ 512, 512, [], "f18a", "M407 177.6c7.6-24-13.4-46.8-37.4-41.7-22 4.8-28.8-28.1-7.1-32.8 50.1-10.9 92.3 37.1 76.5 84.8-6.8 21.2-38.8 10.8-32-10.3zM214.8 446.7C108.5 446.7 0 395.3 0 310.4c0-44.3 28-95.4 76.3-143.7C176 67 279.5 65.8 249.9 161c-4 13.1 12.3 5.7 12.3 6 79.5-33.6 140.5-16.8 114 51.4-3.7 9.4 1.1 10.9 8.3 13.1 135.7 42.3 34.8 215.2-169.7 215.2zm143.7-146.3c-5.4-55.7-78.5-94-163.4-85.7-84.8 8.6-148.8 60.3-143.4 116s78.5 94 163.4 85.7c84.8-8.6 148.8-60.3 143.4-116zM347.9 35.1c-25.9 5.6-16.8 43.7 8.3 38.3 72.3-15.2 134.8 52.8 111.7 124-7.4 24.2 29.1 37 37.4 12 31.9-99.8-55.1-195.9-157.4-174.3zm-78.5 311c-17.1 38.8-66.8 60-109.1 46.3-40.8-13.1-58-53.4-40.3-89.7 17.7-35.4 63.1-55.4 103.4-45.1 42 10.8 63.1 50.2 46 88.5zm-86.3-30c-12.9-5.4-30 .3-38 12.9-8.3 12.9-4.3 28 8.6 34 13.1 6 30.8.3 39.1-12.9 8-13.1 3.7-28.3-9.7-34zm32.6-13.4c-5.1-1.7-11.4.6-14.3 5.4-2.9 5.1-1.4 10.6 3.7 12.9 5.1 2 11.7-.3 14.6-5.4 2.8-5.2 1.1-10.9-4-12.9z" ], + weixin: [ 576, 512, [], "f1d7", "M385.2 167.6c6.4 0 12.6.3 18.8 1.1C387.4 90.3 303.3 32 207.7 32 100.5 32 13 104.8 13 197.4c0 53.4 29.3 97.5 77.9 131.6l-19.3 58.6 68-34.1c24.4 4.8 43.8 9.7 68.2 9.7 6.2 0 12.1-.3 18.3-.8-4-12.9-6.2-26.6-6.2-40.8-.1-84.9 72.9-154 165.3-154zm-104.5-52.9c14.5 0 24.2 9.7 24.2 24.4 0 14.5-9.7 24.2-24.2 24.2-14.8 0-29.3-9.7-29.3-24.2.1-14.7 14.6-24.4 29.3-24.4zm-136.4 48.6c-14.5 0-29.3-9.7-29.3-24.2 0-14.8 14.8-24.4 29.3-24.4 14.8 0 24.4 9.7 24.4 24.4 0 14.6-9.6 24.2-24.4 24.2zM563 319.4c0-77.9-77.9-141.3-165.4-141.3-92.7 0-165.4 63.4-165.4 141.3S305 460.7 397.6 460.7c19.3 0 38.9-5.1 58.6-9.9l53.4 29.3-14.8-48.6C534 402.1 563 363.2 563 319.4zm-219.1-24.5c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.8 0 24.4 9.7 24.4 19.3 0 10-9.7 19.6-24.4 19.6zm107.1 0c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.5 0 24.4 9.7 24.4 19.3.1 10-9.9 19.6-24.4 19.6z" ], + whatsapp: [ 448, 512, [], "f232", "M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z" ], + "whatsapp-square": [ 448, 512, [], "f40c", "M224 122.8c-72.7 0-131.8 59.1-131.9 131.8 0 24.9 7 49.2 20.2 70.1l3.1 5-13.3 48.6 49.9-13.1 4.8 2.9c20.2 12 43.4 18.4 67.1 18.4h.1c72.6 0 133.3-59.1 133.3-131.8 0-35.2-15.2-68.3-40.1-93.2-25-25-58-38.7-93.2-38.7zm77.5 188.4c-3.3 9.3-19.1 17.7-26.7 18.8-12.6 1.9-22.4.9-47.5-9.9-39.7-17.2-65.7-57.2-67.7-59.8-2-2.6-16.2-21.5-16.2-41s10.2-29.1 13.9-33.1c3.6-4 7.9-5 10.6-5 2.6 0 5.3 0 7.6.1 2.4.1 5.7-.9 8.9 6.8 3.3 7.9 11.2 27.4 12.2 29.4s1.7 4.3.3 6.9c-7.6 15.2-15.7 14.6-11.6 21.6 15.3 26.3 30.6 35.4 53.9 47.1 4 2 6.3 1.7 8.6-1 2.3-2.6 9.9-11.6 12.5-15.5 2.6-4 5.3-3.3 8.9-2 3.6 1.3 23.1 10.9 27.1 12.9s6.6 3 7.6 4.6c.9 1.9.9 9.9-2.4 19.1zM400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM223.9 413.2c-26.6 0-52.7-6.7-75.8-19.3L64 416l22.5-82.2c-13.9-24-21.2-51.3-21.2-79.3C65.4 167.1 136.5 96 223.9 96c42.4 0 82.2 16.5 112.2 46.5 29.9 30 47.9 69.8 47.9 112.2 0 87.4-72.7 158.5-160.1 158.5z" ], + whmcs: [ 448, 512, [], "f40d", "M448 161v-21.3l-28.5-8.8-2.2-10.4 20.1-20.7L427 80.4l-29 7.5-7.2-7.5 7.5-28.2-19.1-11.6-21.3 21-10.7-3.2-7-26.4h-22.6l-6.2 26.4-12.1 3.2-19.7-21-19.4 11 8.1 27.7-8.1 8.4-28.5-7.5-11 19.1 20.7 21-2.9 10.4-28.5 7.8-.3 21.7 28.8 7.5 2.4 12.1-20.1 19.9 10.4 18.5 29.6-7.5 7.2 8.6-8.1 26.9 19.9 11.6 19.4-20.4 11.6 2.9 6.7 28.5 22.6.3 6.7-28.8 11.6-3.5 20.7 21.6 20.4-12.1-8.8-28 7.8-8.1 28.8 8.8 10.3-20.1-20.9-18.8 2.2-12.1 29.1-7zm-119.2 45.2c-31.3 0-56.8-25.4-56.8-56.8s25.4-56.8 56.8-56.8 56.8 25.4 56.8 56.8c0 31.5-25.4 56.8-56.8 56.8zm72.3 16.4l46.9 14.5V277l-55.1 13.4-4.1 22.7 38.9 35.3-19.2 37.9-54-16.7-14.6 15.2 16.7 52.5-38.3 22.7-38.9-40.5-21.7 6.6-12.6 54-42.4-.5-12.6-53.6-21.7-5.6-36.4 38.4-37.4-21.7 15.2-50.5-13.7-16.1-55.5 14.1-19.7-34.8 37.9-37.4-4.8-22.8-54-14.1.5-40.9L54 219.9l5.7-19.7-38.9-39.4L41.5 125l53.6 14.1 15.2-15.7-15.2-52 36.4-20.7 36.8 39.4L191 84l11.6-52H245l11.6 45.9L234 72l-6.3-1.7-3.3 5.7-11 19.1-3.3 5.6 4.6 4.6 17.2 17.4-.3 1-23.8 6.5-6.2 1.7-.1 6.4-.2 12.9C153.8 161.6 118 204 118 254.7c0 58.3 47.3 105.7 105.7 105.7 50.5 0 92.7-35.4 103.2-82.8l13.2.2 6.9.1 1.6-6.7 5.6-24 1.9-.6 17.1 17.8 4.7 4.9 5.8-3.4 20.4-12.1 5.8-3.5-2-6.5-6.8-21.2z" ], + "wikipedia-w": [ 640, 512, [], "f266", "M640 51.2l-.3 12.2c-28.1.8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3.3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4.2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5.3v13.1c-19.4.6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4.3-3.6 0-10.3.3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5.8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1.2.5z" ], + windows: [ 448, 512, [], "f17a", "M0 93.7l183.6-25.3v177.4H0V93.7zm0 324.6l183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z" ], + wix: [ 640, 512, [], "f5cf", "M393.38 131.69c0 13.03 2.08 32.69-28.68 43.83-9.52 3.45-15.95 9.66-15.95 9.66 0-31 4.72-42.22 17.4-48.86 9.75-5.11 27.23-4.63 27.23-4.63zm-115.8 35.54l-34.24 132.66-28.48-108.57c-7.69-31.99-20.81-48.53-48.43-48.53-27.37 0-40.66 16.18-48.43 48.53L89.52 299.89 55.28 167.23C49.73 140.51 23.86 128.96 0 131.96l65.57 247.93s21.63 1.56 32.46-3.96c14.22-7.25 20.98-12.84 29.59-46.57 7.67-30.07 29.11-118.41 31.12-124.7 4.76-14.94 11.09-13.81 15.4 0 1.97 6.3 23.45 94.63 31.12 124.7 8.6 33.73 15.37 39.32 29.59 46.57 10.82 5.52 32.46 3.96 32.46 3.96l65.57-247.93c-24.42-3.07-49.82 8.93-55.3 35.27zm115.78 5.21s-4.1 6.34-13.46 11.57c-6.01 3.36-11.78 5.64-17.97 8.61-15.14 7.26-13.18 13.95-13.18 35.2v152.07s16.55 2.09 27.37-3.43c13.93-7.1 17.13-13.95 17.26-44.78V181.41l-.02.01v-8.98zm163.44 84.08L640 132.78s-35.11-5.98-52.5 9.85c-13.3 12.1-24.41 29.55-54.18 72.47-.47.73-6.25 10.54-13.07 0-29.29-42.23-40.8-60.29-54.18-72.47-17.39-15.83-52.5-9.85-52.5-9.85l83.2 123.74-82.97 123.36s36.57 4.62 53.95-11.21c11.49-10.46 17.58-20.37 52.51-70.72 6.81-10.52 12.57-.77 13.07 0 29.4 42.38 39.23 58.06 53.14 70.72 17.39 15.83 53.32 11.21 53.32 11.21L556.8 256.52z" ], + "wolf-pack-battalion": [ 456, 512, [], "f514", "M239.73 471.53l10.56 15.84 5.28-12.32 5.28 7.04V512c21.06-7.92 21.11-66.86 25.51-97.21 4.62-31.89-.88-92.81 81.37-149.11-8.88-23.61-12-49.43-2.64-80.05 27.87 3.34 53.94 10.58 63.34 54.1l-30.35 8.36c11.15 23.04 17.01 46.76 13.2 72.14L384 313.18l-6.16 33.43-18.47-7.04-8.8 33.43-19.35-7.04 26.39 21.11 8.8-28.15 24.63 5.28 7.04-35.63 26.39 14.52c.25-20.02 6.97-58.06-8.8-84.45l26.39 5.28c3.99-22.07-2.38-39.21-7.92-56.74l22.43 9.68c-.44-25.07-29.94-56.79-61.58-58.5-20.22-1.09-56.74-25.17-54.1-51.9 1.96-19.87 17.45-42.62 43.11-49.7-43.99 36.51-9.68 67.3 5.28 73.46 4.4-11.44 17.54-69.08 0-130.2-40.47 22.87-89.73 65.1-93.25 147.79l-58.06 38.71-3.52 93.25 107.33-59.82 7.04 7.04-17.59 3.52-43.99 38.71-15.84-5.28-28.15 49.26-3.52 119.64 21.11 15.84-32.55 15.84-32.55-15.84 21.11-15.84-3.52-119.64-28.15-49.26-15.84 5.28-43.99-38.71-17.59-3.52 7.04-7.04 107.33 59.82-3.52-93.25-58.06-38.71C157.03 65.1 107.77 22.87 67.3 0c-17.54 61.12-4.4 118.76 0 130.2 14.96-6.16 49.26-36.95 5.28-73.46 25.66 7.08 41.15 29.83 43.11 49.7 2.63 26.74-33.88 50.81-54.1 51.9C29.94 160.06.44 191.78 0 216.85l22.43-9.68c-5.54 17.53-11.91 34.67-7.92 56.74l26.39-5.28c-15.76 26.39-9.05 64.43-8.8 84.45l26.39-14.52 7.04 35.63 24.63-5.28 8.8 28.15 26.39-21.11-19.34 7.05-8.8-33.43-18.47 7.04-6.16-33.43-27.27 7.04c-3.82-25.38 2.05-49.1 13.2-72.14l-30.35-8.36c9.4-43.52 35.47-50.77 63.34-54.1 9.36 30.62 6.24 56.45-2.64 80.05 82.25 56.3 76.75 117.23 81.37 149.11 4.4 30.35 4.45 89.29 25.51 97.21v-29.91l5.28-7.04 5.28 12.32 10.56-15.84 11.44 21.11 11.43-21.1zm79.17-95.01l-15.84-10.56c7.47-4.36 13.76-8.42 19.35-12.32-.6 7.26-.27 13.88-3.51 22.88zm28.15-49.26c-.4 10.94-.9 21.66-1.76 31.67-7.85-1.86-15.57-3.8-21.11-7.04 8.24-7.9 15.55-16.27 22.87-24.63zm24.63 5.28c-.02-13.43-2.05-24.21-5.28-33.43-5.38 9.09-11.23 18.18-18.47 27.27l23.75 6.16zm3.52-80.94c19.44 12.81 27.8 33.66 29.91 56.3-12.32-4.53-24.63-9.31-36.95-10.56 5.06-11.99 6.65-28.14 7.04-45.74zm-1.76-45.74c.81 14.3 1.84 28.82 1.76 42.23 19.22-8.11 29.78-9.72 43.99-14.08-10.6-18.95-27.22-25.52-45.75-28.15zM137.68 376.52l15.84-10.56c-7.47-4.36-13.76-8.42-19.35-12.32.6 7.26.27 13.88 3.51 22.88zm-28.15-49.26c.4 10.94.9 21.66 1.76 31.67 7.85-1.86 15.57-3.8 21.11-7.04-8.24-7.9-15.55-16.27-22.87-24.63zm-24.64 5.28c.02-13.43 2.05-24.21 5.28-33.43 5.38 9.09 11.23 18.18 18.47 27.27l-23.75 6.16zm-3.52-80.94c-19.44 12.81-27.8 33.66-29.91 56.3 12.32-4.53 24.63-9.31 36.95-10.56-5.05-11.99-6.65-28.14-7.04-45.74zm1.76-45.74c-.81 14.3-1.84 28.82-1.76 42.23-19.22-8.11-29.78-9.72-43.99-14.08 10.61-18.95 27.22-25.52 45.75-28.15z" ], + wordpress: [ 512, 512, [], "f19a", "M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z" ], + "wordpress-simple": [ 512, 512, [], "f411", "M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8zM33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256zm223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6zm30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3-80.7-239.6zm81.4 297.2l68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7z" ], + wpbeginner: [ 512, 512, [], "f297", "M462.799 322.374C519.01 386.682 466.961 480 370.944 480c-39.602 0-78.824-17.687-100.142-50.04-6.887.356-22.702.356-29.59 0C219.848 462.381 180.588 480 141.069 480c-95.49 0-148.348-92.996-91.855-157.626C-29.925 190.523 80.479 32 256.006 32c175.632 0 285.87 158.626 206.793 290.374zm-339.647-82.972h41.529v-58.075h-41.529v58.075zm217.18 86.072v-23.839c-60.506 20.915-132.355 9.198-187.589-33.971l.246 24.897c51.101 46.367 131.746 57.875 187.343 32.913zm-150.753-86.072h166.058v-58.075H189.579v58.075z" ], + wpexplorer: [ 512, 512, [], "f2de", "M512 256c0 141.2-114.7 256-256 256C114.8 512 0 397.3 0 256S114.7 0 256 0s256 114.7 256 256zm-32 0c0-123.2-100.3-224-224-224C132.5 32 32 132.5 32 256s100.5 224 224 224 224-100.5 224-224zM160.9 124.6l86.9 37.1-37.1 86.9-86.9-37.1 37.1-86.9zm110 169.1l46.6 94h-14.6l-50-100-48.9 100h-14l51.1-106.9-22.3-9.4 6-14 68.6 29.1-6 14.3-16.5-7.1zm-11.8-116.3l68.6 29.4-29.4 68.3L230 246l29.1-68.6zm80.3 42.9l54.6 23.1-23.4 54.3-54.3-23.1 23.1-54.3z" ], + wpforms: [ 448, 512, [], "f298", "M448 75.2v361.7c0 24.3-19 43.2-43.2 43.2H43.2C19.3 480 0 461.4 0 436.8V75.2C0 51.1 18.8 32 43.2 32h361.7c24 0 43.1 18.8 43.1 43.2zm-37.3 361.6V75.2c0-3-2.6-5.8-5.8-5.8h-9.3L285.3 144 224 94.1 162.8 144 52.5 69.3h-9.3c-3.2 0-5.8 2.8-5.8 5.8v361.7c0 3 2.6 5.8 5.8 5.8h361.7c3.2.1 5.8-2.7 5.8-5.8zM150.2 186v37H76.7v-37h73.5zm0 74.4v37.3H76.7v-37.3h73.5zm11.1-147.3l54-43.7H96.8l64.5 43.7zm210 72.9v37h-196v-37h196zm0 74.4v37.3h-196v-37.3h196zm-84.6-147.3l64.5-43.7H232.8l53.9 43.7zM371.3 335v37.3h-99.4V335h99.4z" ], + xbox: [ 512, 512, [], "f412", "M369.9 318.2c44.3 54.3 64.7 98.8 54.4 118.7-7.9 15.1-56.7 44.6-92.6 55.9-29.6 9.3-68.4 13.3-100.4 10.2-38.2-3.7-76.9-17.4-110.1-39C93.3 445.8 87 438.3 87 423.4c0-29.9 32.9-82.3 89.2-142.1 32-33.9 76.5-73.7 81.4-72.6 9.4 2.1 84.3 75.1 112.3 109.5zM188.6 143.8c-29.7-26.9-58.1-53.9-86.4-63.4-15.2-5.1-16.3-4.8-28.7 8.1-29.2 30.4-53.5 79.7-60.3 122.4-5.4 34.2-6.1 43.8-4.2 60.5 5.6 50.5 17.3 85.4 40.5 120.9 9.5 14.6 12.1 17.3 9.3 9.9-4.2-11-.3-37.5 9.5-64 14.3-39 53.9-112.9 120.3-194.4zm311.6 63.5C483.3 127.3 432.7 77 425.6 77c-7.3 0-24.2 6.5-36 13.9-23.3 14.5-41 31.4-64.3 52.8C367.7 197 427.5 283.1 448.2 346c6.8 20.7 9.7 41.1 7.4 52.3-1.7 8.5-1.7 8.5 1.4 4.6 6.1-7.7 19.9-31.3 25.4-43.5 7.4-16.2 15-40.2 18.6-58.7 4.3-22.5 3.9-70.8-.8-93.4zM141.3 43C189 40.5 251 77.5 255.6 78.4c.7.1 10.4-4.2 21.6-9.7 63.9-31.1 94-25.8 107.4-25.2-63.9-39.3-152.7-50-233.9-11.7-23.4 11.1-24 11.9-9.4 11.2z" ], + xing: [ 384, 512, [], "f168", "M162.7 210c-1.8 3.3-25.2 44.4-70.1 123.5-4.9 8.3-10.8 12.5-17.7 12.5H9.8c-7.7 0-12.1-7.5-8.5-14.4l69-121.3c.2 0 .2-.1 0-.3l-43.9-75.6c-4.3-7.8.3-14.1 8.5-14.1H100c7.3 0 13.3 4.1 18 12.2l44.7 77.5zM382.6 46.1l-144 253v.3L330.2 466c3.9 7.1.2 14.1-8.5 14.1h-65.2c-7.6 0-13.6-4-18-12.2l-92.4-168.5c3.3-5.8 51.5-90.8 144.8-255.2 4.6-8.1 10.4-12.2 17.5-12.2h65.7c8 0 12.3 6.7 8.5 14.1z" ], + "xing-square": [ 448, 512, [], "f169", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM140.4 320.2H93.8c-5.5 0-8.7-5.3-6-10.3l49.3-86.7c.1 0 .1-.1 0-.2l-31.4-54c-3-5.6.2-10.1 6-10.1h46.6c5.2 0 9.5 2.9 12.9 8.7l31.9 55.3c-1.3 2.3-18 31.7-50.1 88.2-3.5 6.2-7.7 9.1-12.6 9.1zm219.7-214.1L257.3 286.8v.2l65.5 119c2.8 5.1.1 10.1-6 10.1h-46.6c-5.5 0-9.7-2.9-12.9-8.7l-66-120.3c2.3-4.1 36.8-64.9 103.4-182.3 3.3-5.8 7.4-8.7 12.5-8.7h46.9c5.7-.1 8.8 4.7 6 10z" ], + "y-combinator": [ 448, 512, [], "f23b", "M448 32v448H0V32h448zM236 287.5L313.5 142h-32.7L235 233c-4.7 9.3-9 18.3-12.8 26.8L210 233l-45.2-91h-35l76.7 143.8v94.5H236v-92.8z" ], + yahoo: [ 448, 512, [], "f19e", "M252 292l4 220c-12.7-2.2-23.5-3.9-32.3-3.9-8.4 0-19.2 1.7-32.3 3.9l4-220C140.4 197.2 85 95.2 21.4 0c11.9 3.1 23 3.9 33.2 3.9 9 0 20.4-.8 34.1-3.9 40.9 72.2 82.1 138.7 135 225.5C261 163.9 314.8 81.4 358.6 0c11.1 2.9 22 3.9 32.9 3.9 11.5 0 23.2-1 35-3.9C392.1 47.9 294.9 216.9 252 292z" ], + yandex: [ 256, 512, [], "f413", "M153.1 315.8L65.7 512H2l96-209.8c-45.1-22.9-75.2-64.4-75.2-141.1C22.7 53.7 90.8 0 171.7 0H254v512h-55.1V315.8h-45.8zm45.8-269.3h-29.4c-44.4 0-87.4 29.4-87.4 114.6 0 82.3 39.4 108.8 87.4 108.8h29.4V46.5z" ], + "yandex-international": [ 320, 512, [], "f414", "M129.5 512V345.9L18.5 48h55.8l81.8 229.7L250.2 0h51.3L180.8 347.8V512h-51.3z" ], + yelp: [ 384, 512, [], "f1e9", "M136.9 328c-1 .3-109.2 35.7-115.8 35.7-15.2-.9-18.5-16.2-19.9-31.2-1.5-14.2-1.4-29.8.3-46.8 1.9-18.8 5.5-45.1 24.2-44 4.8 0 67.1 25.9 112.7 44.4 17.1 6.8 18.6 35.8-1.5 41.9zm57.9-113.9c1.8 38.2-25.5 48.5-47.2 14.3L41.3 60.4c-1.5-6.6.3-12.4 5.3-17.4C62.2 26.5 146 3.2 168.1 8.9c7.5 1.9 12.1 6.1 13.8 12.6 1.3 8.3 11.5 167.4 12.9 192.6zm-1.4 164.8c0 4.6.2 116.4-1.7 121.5-2.3 6-7 9.7-14.3 11.2-10.1 1.7-27.1-1.9-51-10.7-22-8.1-56.7-21.5-49.3-42.5 2.8-6.9 51.4-62.8 77.3-93.6 12-15.2 39.8-5.5 39 14.1zm180.2-117.8c-5.6 3.7-110.8 28.2-118.1 30.6l.3-.6c-18.1 4.7-35.4-18.5-23.3-34.6 3.7-3.7 65.9-92.4 72.8-97 5.2-3.6 11.3-3.8 18.3-.6 18.4 8.8 55.1 63.1 57.4 84.6-.1 2.9 1.2 11.7-7.4 17.6zm10.1 130.7c-2.7 20.6-44.5 73.4-63.8 81-6.9 2.6-12.9 2-17.7-2-5-3.5-61.8-97.1-64.9-102.3-10.9-16.2 6.8-39.8 25.6-33.2 0 0 110.5 35.7 114.7 39.4 5.2 4.1 7.2 9.8 6.1 17.1z" ], + yoast: [ 448, 512, [], "f2b1", "M91.3 76h186l-7 18.9h-179c-39.7 0-71.9 31.6-71.9 70.3v205.4c0 35.4 24.9 70.3 84 70.3V460H91.3C41.2 460 0 419.8 0 370.5V165.2C0 115.9 40.7 76 91.3 76zm229.1-56h66.5C243.1 398.1 241.2 418.9 202.2 459.3c-20.8 21.6-49.3 31.7-78.3 32.7v-51.1c49.2-7.7 64.6-49.9 64.6-75.3 0-20.1.6-12.6-82.1-223.2h61.4L218.2 299 320.4 20zM448 161.5V460H234c6.6-9.6 10.7-16.3 12.1-19.4h182.5V161.5c0-32.5-17.1-51.9-48.2-62.9l6.7-17.6c41.7 13.6 60.9 43.1 60.9 80.5z" ], + youtube: [ 576, 512, [], "f167", "M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z" ], + "youtube-square": [ 448, 512, [], "f431", "M186.8 202.1l95.2 54.1-95.2 54.1V202.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-42 176.3s0-59.6-7.6-88.2c-4.2-15.8-16.5-28.2-32.2-32.4C337.9 128 224 128 224 128s-113.9 0-142.2 7.7c-15.7 4.2-28 16.6-32.2 32.4-7.6 28.5-7.6 88.2-7.6 88.2s0 59.6 7.6 88.2c4.2 15.8 16.5 27.7 32.2 31.9C110.1 384 224 384 224 384s113.9 0 142.2-7.7c15.7-4.2 28-16.1 32.2-31.9 7.6-28.5 7.6-88.1 7.6-88.1z" ] + }; + !function(c) { + try { + c(); + } catch (c) { + if (!m) throw c; + } + }(function() { + !function c(z, h) { + var l = Object.keys(h).reduce(function(c, z) { + var l = h[z]; + return l.icon ? c[l.iconName] = l.icon : c[z] = l, c; + }, {}); + "function" == typeof f.hooks.addPack ? f.hooks.addPack(z, l) : f.styles[z] = V({}, f.styles[z] || {}, l), + "fas" === z && c("fa", h); + }("fab", e); + }); +}(); \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-regular.js b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-regular.js new file mode 100644 index 0000000000..d6142c8a1d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-regular.js @@ -0,0 +1,277 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +(function () { +'use strict'; + +var _WINDOW = {}; +try { + if (typeof window !== 'undefined') _WINDOW = window; + +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; + + + + + +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; + + + + + + + + + +var PRODUCTION = function () { + try { + return undefined === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + + + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var icons = { + "address-book": [448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-68 304H48V48h320v416zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"], + "address-card": [576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H48V80h480v352zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2zM360 320h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8z"], + "angry": [496, 512, [], "f556", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-144c-33.6 0-65.2 14.8-86.8 40.6-8.5 10.2-7.1 25.3 3.1 33.8s25.3 7.2 33.8-3c24.8-29.7 75-29.7 99.8 0 8.1 9.7 23.2 11.9 33.8 3 10.2-8.5 11.5-23.6 3.1-33.8-21.6-25.8-53.2-40.6-86.8-40.6zm-48-72c10.3 0 19.9-6.7 23-17.1 3.8-12.7-3.4-26.1-16.1-29.9l-80-24c-12.8-3.9-26.1 3.4-29.9 16.1-3.8 12.7 3.4 26.1 16.1 29.9l28.2 8.5c-3.1 4.9-5.3 10.4-5.3 16.6 0 17.7 14.3 32 32 32s32-14.4 32-32.1zm199-54.9c-3.8-12.7-17.1-19.9-29.9-16.1l-80 24c-12.7 3.8-19.9 17.2-16.1 29.9 3.1 10.4 12.7 17.1 23 17.1 0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.2-2.2-11.7-5.3-16.6l28.2-8.5c12.7-3.7 19.9-17.1 16.1-29.8z"], + "arrow-alt-circle-down": [512, 512, [], "f358", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm-32-316v116h-67c-10.7 0-16 12.9-8.5 20.5l99 99c4.7 4.7 12.3 4.7 17 0l99-99c7.6-7.6 2.2-20.5-8.5-20.5h-67V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12z"], + "arrow-alt-circle-left": [512, 512, [], "f359", "M8 256c0 137 111 248 248 248s248-111 248-248S393 8 256 8 8 119 8 256zm448 0c0 110.5-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56s200 89.5 200 200zm-72-20v40c0 6.6-5.4 12-12 12H256v67c0 10.7-12.9 16-20.5 8.5l-99-99c-4.7-4.7-4.7-12.3 0-17l99-99c7.6-7.6 20.5-2.2 20.5 8.5v67h116c6.6 0 12 5.4 12 12z"], + "arrow-alt-circle-right": [512, 512, [], "f35a", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z"], + "arrow-alt-circle-up": [512, 512, [], "f35b", "M256 504c137 0 248-111 248-248S393 8 256 8 8 119 8 256s111 248 248 248zm0-448c110.5 0 200 89.5 200 200s-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56zm20 328h-40c-6.6 0-12-5.4-12-12V256h-67c-10.7 0-16-12.9-8.5-20.5l99-99c4.7-4.7 12.3-4.7 17 0l99 99c7.6 7.6 2.2 20.5-8.5 20.5h-67v116c0 6.6-5.4 12-12 12z"], + "bell": [448, 512, [], "f0f3", "M425.403 330.939c-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.843 31.843 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095C118.101 62.783 57.143 131.831 57.143 214.857c0 81.933-17.551 99.292-34.543 116.078C-25.496 378.441 9.726 448 66.919 448H160c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h93.08c57.19 0 92.415-69.583 44.323-117.061zM224 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm157.092-72H66.9c-16.762 0-25.135-20.39-13.334-32.191 28.585-28.585 51.577-55.724 51.577-152.952C105.143 149.319 158.462 96 224 96s118.857 53.319 118.857 118.857c0 97.65 23.221 124.574 51.568 152.952C406.278 379.661 397.783 400 381.092 400z"], + "bell-slash": [576, 512, [], "f1f6", "M130.9 400c-16.762 0-25.135-20.39-13.334-32.191 25.226-25.226 46.094-49.338 50.649-121.48l-46.777-41.274a168.48 168.48 0 0 0-.296 9.802c0 81.933-17.551 99.292-34.543 116.078C38.504 378.441 73.726 448 130.919 448H224c0 35.346 28.654 64 64 64s64-28.654 64-64h44.777l-54.4-48H130.9zM288 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm283.867.553l-67.931-59.571c13.104-24.118 11.524-56.318-14.532-82.042-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.848 31.848 0 0 0 320 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095c-41.471 6.618-77.891 28.571-103.249 59.841L36.459 3.037c-5.058-4.436-12.777-3.956-17.24 1.071L3.056 22.313C-1.407 27.34-.925 35.012 4.134 39.447l535.408 469.516c5.058 4.436 12.777 3.956 17.24-1.071l16.163-18.205c4.462-5.027 3.98-12.699-1.078-17.134zM288 96c65.538 0 118.857 53.319 118.857 118.857 0 97.65 23.221 124.574 51.568 152.952 2.908 2.908 4.573 6.328 5.209 9.832L194.482 141.612C216.258 113.867 250.075 96 288 96z"], + "bookmark": [384, 512, [], "f02e", "M336 0H48C21.49 0 0 21.49 0 48v464l192-112 192 112V48c0-26.51-21.49-48-48-48zm0 428.43l-144-84-144 84V54a6 6 0 0 1 6-6h276c3.314 0 6 2.683 6 5.996V428.43z"], + "building": [448, 512, [], "f1ad", "M128 148v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12zm140 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-128 96h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm128 0h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-76 84v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm76 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm180 124v36H0v-36c0-6.6 5.4-12 12-12h19.5V24c0-13.3 10.7-24 24-24h337c13.3 0 24 10.7 24 24v440H436c6.6 0 12 5.4 12 12zM79.5 463H192v-67c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v67h112.5V49L80 48l-.5 415z"], + "calendar": [448, 512, [], "f133", "M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z"], + "calendar-alt": [448, 512, [], "f073", "M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "calendar-check": [448, 512, [], "f274", "M400 64h-48V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H160V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V160h352v298a6 6 0 0 1-6 6zm-52.849-200.65L198.842 404.519c-4.705 4.667-12.303 4.637-16.971-.068l-75.091-75.699c-4.667-4.705-4.637-12.303.068-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l44.104 44.461 111.072-110.181c4.705-4.667 12.303-4.637 16.971.068l22.536 22.718c4.667 4.705 4.636 12.303-.069 16.97z"], + "calendar-minus": [448, 512, [], "f272", "M124 328c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H124zm324-216v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "calendar-plus": [448, 512, [], "f271", "M336 292v24c0 6.6-5.4 12-12 12h-76v76c0 6.6-5.4 12-12 12h-24c-6.6 0-12-5.4-12-12v-76h-76c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h76v-76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v76h76c6.6 0 12 5.4 12 12zm112-180v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "calendar-times": [448, 512, [], "f273", "M311.7 374.7l-17 17c-4.7 4.7-12.3 4.7-17 0L224 337.9l-53.7 53.7c-4.7 4.7-12.3 4.7-17 0l-17-17c-4.7-4.7-4.7-12.3 0-17l53.7-53.7-53.7-53.7c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0l53.7 53.7 53.7-53.7c4.7-4.7 12.3-4.7 17 0l17 17c4.7 4.7 4.7 12.3 0 17L257.9 304l53.7 53.7c4.8 4.7 4.8 12.3.1 17zM448 112v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "caret-square-down": [448, 512, [], "f150", "M125.1 208h197.8c10.7 0 16.1 13 8.5 20.5l-98.9 98.3c-4.7 4.7-12.2 4.7-16.9 0l-98.9-98.3c-7.7-7.5-2.3-20.5 8.4-20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "caret-square-left": [448, 512, [], "f191", "M272 157.1v197.8c0 10.7-13 16.1-20.5 8.5l-98.3-98.9c-4.7-4.7-4.7-12.2 0-16.9l98.3-98.9c7.5-7.7 20.5-2.3 20.5 8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "caret-square-right": [448, 512, [], "f152", "M176 354.9V157.1c0-10.7 13-16.1 20.5-8.5l98.3 98.9c4.7 4.7 4.7 12.2 0 16.9l-98.3 98.9c-7.5 7.7-20.5 2.3-20.5-8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "caret-square-up": [448, 512, [], "f151", "M322.9 304H125.1c-10.7 0-16.1-13-8.5-20.5l98.9-98.3c4.7-4.7 12.2-4.7 16.9 0l98.9 98.3c7.7 7.5 2.3 20.5-8.4 20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "chart-bar": [512, 512, [], "f080", "M500 400c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v324h452zm-356-60v-72c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V140c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V204c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V108c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12z"], + "check-circle": [512, 512, [], "f058", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"], + "check-square": [448, 512, [], "f14a", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm0 400H48V80h352v352zm-35.864-241.724L191.547 361.48c-4.705 4.667-12.303 4.637-16.97-.068l-90.781-91.516c-4.667-4.705-4.637-12.303.069-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l59.792 60.277 141.352-140.216c4.705-4.667 12.303-4.637 16.97.068l22.536 22.718c4.667 4.706 4.637 12.304-.068 16.971z"], + "circle": [512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z"], + "clipboard": [384, 512, [], "f328", "M336 64h-80c0-35.29-28.71-64-64-64s-64 28.71-64 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h42v36c0 6.627 5.373 12 12 12h168c6.627 0 12-5.373 12-12v-36h42a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zM192 40c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24"], + "clock": [512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"], + "clone": [512, 512, [], "f24d", "M464 0H144c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h320c26.51 0 48-21.49 48-48v-48h48c26.51 0 48-21.49 48-48V48c0-26.51-21.49-48-48-48zM362 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h42v224c0 26.51 21.49 48 48 48h224v42a6 6 0 0 1-6 6zm96-96H150a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h308a6 6 0 0 1 6 6v308a6 6 0 0 1-6 6z"], + "closed-captioning": [512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 336H54c-3.3 0-6-2.7-6-6V118c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v276c0 3.3-2.7 6-6 6zm-211.1-85.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7zm190.4 0c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.9-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 220.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7z"], + "comment": [512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"], + "comment-alt": [512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 7.1 5.8 12 12 12 2.4 0 4.9-.7 7.1-2.4L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm16 352c0 8.8-7.2 16-16 16H288l-12.8 9.6L208 428v-60H64c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h384c8.8 0 16 7.2 16 16v288z"], + "comment-dots": [512, 512, [], "f4ad", "M144 208c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"], + "comments": [576, 512, [], "f086", "M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"], + "compass": [512, 512, [], "f14e", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm91.326-312.131l-33.359 137.779a24.005 24.005 0 0 1-6.772 11.729l-102.64 97.779c-17.104 16.293-45.56.434-39.88-23.024l33.359-137.779a23.997 23.997 0 0 1 6.772-11.729l102.642-97.779c17.285-16.47 45.494-.175 39.878 23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"], + "copy": [448, 512, [], "f0c5", "M433.941 65.941l-51.882-51.882A48 48 0 0 0 348.118 0H176c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48v-48h80c26.51 0 48-21.49 48-48V99.882a48 48 0 0 0-14.059-33.941zM266 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h74v224c0 26.51 21.49 48 48 48h96v42a6 6 0 0 1-6 6zm128-96H182a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h106v88c0 13.255 10.745 24 24 24h88v202a6 6 0 0 1-6 6zm6-256h-64V48h9.632c1.591 0 3.117.632 4.243 1.757l48.368 48.368a6 6 0 0 1 1.757 4.243V112z"], + "copyright": [512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm107.351-101.064c-9.614 9.712-45.53 41.396-104.065 41.396-82.43 0-140.484-61.425-140.484-141.567 0-79.152 60.275-139.401 139.762-139.401 55.531 0 88.738 26.62 97.593 34.779a11.965 11.965 0 0 1 1.936 15.322l-18.155 28.113c-3.841 5.95-11.966 7.282-17.499 2.921-8.595-6.776-31.814-22.538-61.708-22.538-48.303 0-77.916 35.33-77.916 80.082 0 41.589 26.888 83.692 78.277 83.692 32.657 0 56.843-19.039 65.726-27.225 5.27-4.857 13.596-4.039 17.82 1.738l19.865 27.17a11.947 11.947 0 0 1-1.152 15.518z"], + "credit-card": [576, 512, [], "f09d", "M527.9 32H48.1C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48.1 48h479.8c26.6 0 48.1-21.5 48.1-48V80c0-26.5-21.5-48-48.1-48zM54.1 80h467.8c3.3 0 6 2.7 6 6v42H48.1V86c0-3.3 2.7-6 6-6zm467.8 352H54.1c-3.3 0-6-2.7-6-6V256h479.8v170c0 3.3-2.7 6-6 6zM192 332v40c0 6.6-5.4 12-12 12h-72c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12zm192 0v40c0 6.6-5.4 12-12 12H236c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12z"], + "dizzy": [496, 512, [], "f567", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-33.8-217.9c7.8-7.8 7.8-20.5 0-28.3L196.3 192l17.9-17.9c7.8-7.8 7.8-20.5 0-28.3-7.8-7.8-20.5-7.8-28.3 0L168 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.9 7.7 20.5 7.7 28.4-.2zm160-92.2c-7.8-7.8-20.5-7.8-28.3 0L328 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.8 7.8 20.5 7.8 28.3 0 7.8-7.8 7.8-20.5 0-28.3l-17.8-18 17.9-17.9c7.7-7.8 7.7-20.4 0-28.2zM248 272c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64z"], + "dot-circle": [512, 512, [], "f192", "M256 56c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m0-48C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 168c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80z"], + "edit": [576, 512, [], "f044", "M402.3 344.9l32-32c5-5 13.7-1.5 13.7 5.7V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h273.5c7.1 0 10.7 8.6 5.7 13.7l-32 32c-1.5 1.5-3.5 2.3-5.7 2.3H48v352h352V350.5c0-2.1.8-4.1 2.3-5.6zm156.6-201.8L296.3 405.7l-90.4 10c-26.2 2.9-48.5-19.2-45.6-45.6l10-90.4L432.9 17.1c22.9-22.9 59.9-22.9 82.7 0l43.2 43.2c22.9 22.9 22.9 60 .1 82.8zM460.1 174L402 115.9 216.2 301.8l-7.3 65.3 65.3-7.3L460.1 174zm64.8-79.7l-43.2-43.2c-4.1-4.1-10.8-4.1-14.8 0L436 82l58.1 58.1 30.9-30.9c4-4.2 4-10.8-.1-14.9z"], + "envelope": [512, 512, [], "f0e0", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z"], + "envelope-open": [512, 512, [], "f2b6", "M494.586 164.516c-4.697-3.883-111.723-89.95-135.251-108.657C337.231 38.191 299.437 0 256 0c-43.205 0-80.636 37.717-103.335 55.859-24.463 19.45-131.07 105.195-135.15 108.549A48.004 48.004 0 0 0 0 201.485V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V201.509a48 48 0 0 0-17.414-36.993zM464 458a6 6 0 0 1-6 6H54a6 6 0 0 1-6-6V204.347c0-1.813.816-3.526 2.226-4.665 15.87-12.814 108.793-87.554 132.364-106.293C200.755 78.88 232.398 48 256 48c23.693 0 55.857 31.369 73.41 45.389 23.573 18.741 116.503 93.493 132.366 106.316a5.99 5.99 0 0 1 2.224 4.663V458zm-31.991-187.704c4.249 5.159 3.465 12.795-1.745 16.981-28.975 23.283-59.274 47.597-70.929 56.863C336.636 362.283 299.205 400 256 400c-43.452 0-81.287-38.237-103.335-55.86-11.279-8.967-41.744-33.413-70.927-56.865-5.21-4.187-5.993-11.822-1.745-16.981l15.258-18.528c4.178-5.073 11.657-5.843 16.779-1.726 28.618 23.001 58.566 47.035 70.56 56.571C200.143 320.631 232.307 352 256 352c23.602 0 55.246-30.88 73.41-45.389 11.994-9.535 41.944-33.57 70.563-56.568 5.122-4.116 12.601-3.346 16.778 1.727l15.258 18.526z"], + "eye": [576, 512, [], "f06e", "M569.354 231.631C512.97 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-102.556 0-192.091-54.701-240-136 44.157-74.933 123.677-127.27 216.162-135.007C273.958 131.078 280 144.83 280 160c0 30.928-25.072 56-56 56s-56-25.072-56-56l.001-.042C157.794 179.043 152 200.844 152 224c0 75.111 60.889 136 136 136s136-60.889 136-136c0-31.031-10.4-59.629-27.895-82.515C451.704 164.638 498.009 205.106 528 256c-47.908 81.299-137.444 136-240 136z"], + "eye-slash": [576, 512, [], "f070", "M272.702 359.139c-80.483-9.011-136.212-86.886-116.93-167.042l116.93 167.042zM288 392c-102.556 0-192.092-54.701-240-136 21.755-36.917 52.1-68.342 88.344-91.658l-27.541-39.343C67.001 152.234 31.921 188.741 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.004 376.006 168.14 440 288 440a332.89 332.89 0 0 0 39.648-2.367l-32.021-45.744A284.16 284.16 0 0 1 288 392zm281.354-111.631c-33.232 56.394-83.421 101.742-143.554 129.492l48.116 68.74c3.801 5.429 2.48 12.912-2.949 16.712L450.23 509.83c-5.429 3.801-12.912 2.48-16.712-2.949L102.084 33.399c-3.801-5.429-2.48-12.912 2.949-16.712L125.77 2.17c5.429-3.801 12.912-2.48 16.712 2.949l55.526 79.325C226.612 76.343 256.808 72 288 72c119.86 0 224.996 63.994 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM528 256c-44.157-74.933-123.677-127.27-216.162-135.007C302.042 131.078 296 144.83 296 160c0 30.928 25.072 56 56 56s56-25.072 56-56l-.001-.042c30.632 57.277 16.739 130.26-36.928 171.719l26.695 38.135C452.626 346.551 498.308 306.386 528 256z"], + "file": [384, 512, [], "f15b", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48z"], + "file-alt": [384, 512, [], "f15c", "M288 248v28c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-28c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm-12 72H108c-6.6 0-12 5.4-12 12v28c0 6.6 5.4 12 12 12h168c6.6 0 12-5.4 12-12v-28c0-6.6-5.4-12-12-12zm108-188.1V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48C0 21.5 21.5 0 48 0h204.1C264.8 0 277 5.1 286 14.1L369.9 98c9 8.9 14.1 21.2 14.1 33.9zm-128-80V128h76.1L256 51.9zM336 464V176H232c-13.3 0-24-10.7-24-24V48H48v416h288z"], + "file-archive": [384, 512, [], "f1c6", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM256 51.882L332.118 128H256V51.882zM336 464H48V48h79.714v16h32V48H208v104c0 13.255 10.745 24 24 24h104v288zM192.27 96h-32V64h32v32zm-32 0v32h-32V96h32zm0 64v32h-32v-32h32zm32 0h-32v-32h32v32zm1.909 105.678A12 12 0 0 0 182.406 256H160.27v-32h-32v32l-19.69 97.106C101.989 385.611 126.834 416 160 416c33.052 0 57.871-30.192 51.476-62.62l-17.297-87.702zM160.27 390.073c-17.918 0-32.444-12.105-32.444-27.036 0-14.932 14.525-27.036 32.444-27.036s32.444 12.105 32.444 27.036c0 14.931-14.526 27.036-32.444 27.036zm32-166.073h-32v-32h32v32z"], + "file-audio": [384, 512, [], "f1c7", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm144-76.024c0 10.691-12.926 16.045-20.485 8.485L136 360.486h-28c-6.627 0-12-5.373-12-12v-56c0-6.627 5.373-12 12-12h28l35.515-36.947c7.56-7.56 20.485-2.206 20.485 8.485v135.952zm41.201-47.13c9.051-9.297 9.06-24.133.001-33.439-22.149-22.752 12.235-56.246 34.395-33.481 27.198 27.94 27.212 72.444.001 100.401-21.793 22.386-56.947-10.315-34.397-33.481z"], + "file-code": [384, 512, [], "f1c9", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm101.677-115.115L116.854 320l32.822-28.885a8.793 8.793 0 0 0 .605-12.624l-17.403-18.564c-3.384-3.613-8.964-3.662-12.438-.401L62.78 313.58c-3.703 3.474-3.704 9.367.001 12.84l57.659 54.055a8.738 8.738 0 0 0 6.012 2.381 8.746 8.746 0 0 0 6.427-2.782l17.403-18.563a8.795 8.795 0 0 0-.605-12.626zm84.284-127.85l-24.401-7.084a8.796 8.796 0 0 0-10.905 5.998L144.04 408.061c-1.353 4.66 1.338 9.552 5.998 10.905l24.403 7.084c4.68 1.355 9.557-1.354 10.905-5.998l54.612-188.112c1.354-4.66-1.337-9.552-5.997-10.905zm87.258 92.545l-57.658-54.055c-3.526-3.307-9.099-3.165-12.439.401l-17.403 18.563a8.795 8.795 0 0 0 .605 12.625L267.146 320l-32.822 28.885a8.793 8.793 0 0 0-.605 12.624l17.403 18.564a8.797 8.797 0 0 0 12.439.401h-.001l57.66-54.055c3.703-3.473 3.703-9.366-.001-12.839z"], + "file-excel": [384, 512, [], "f1c3", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm212-240h-28.8c-4.4 0-8.4 2.4-10.5 6.3-18 33.1-22.2 42.4-28.6 57.7-13.9-29.1-6.9-17.3-28.6-57.7-2.1-3.9-6.2-6.3-10.6-6.3H124c-9.3 0-15 10-10.4 18l46.3 78-46.3 78c-4.7 8 1.1 18 10.4 18h28.9c4.4 0 8.4-2.4 10.5-6.3 21.7-40 23-45 28.6-57.7 14.9 30.2 5.9 15.9 28.6 57.7 2.1 3.9 6.2 6.3 10.6 6.3H260c9.3 0 15-10 10.4-18L224 320c.7-1.1 30.3-50.5 46.3-78 4.7-8-1.1-18-10.3-18z"], + "file-image": [384, 512, [], "f1c5", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm32-48h224V288l-23.5-23.5c-4.7-4.7-12.3-4.7-17 0L176 352l-39.5-39.5c-4.7-4.7-12.3-4.7-17 0L80 352v64zm48-240c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z"], + "file-pdf": [384, 512, [], "f1c1", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm250.2-143.7c-12.2-12-47-8.7-64.4-6.5-17.2-10.5-28.7-25-36.8-46.3 3.9-16.1 10.1-40.6 5.4-56-4.2-26.2-37.8-23.6-42.6-5.9-4.4 16.1-.4 38.5 7 67.1-10 23.9-24.9 56-35.4 74.4-20 10.3-47 26.2-51 46.2-3.3 15.8 26 55.2 76.1-31.2 22.4-7.4 46.8-16.5 68.4-20.1 18.9 10.2 41 17 55.8 17 25.5 0 28-28.2 17.5-38.7zm-198.1 77.8c5.1-13.7 24.5-29.5 30.4-35-19 30.3-30.4 35.7-30.4 35zm81.6-190.6c7.4 0 6.7 32.1 1.8 40.8-4.4-13.9-4.3-40.8-1.8-40.8zm-24.4 136.6c9.7-16.9 18-37 24.7-54.7 8.3 15.1 18.9 27.2 30.1 35.5-20.8 4.3-38.9 13.1-54.8 19.2zm131.6-5s-5 6-37.3-7.8c35.1-2.6 40.9 5.4 37.3 7.8z"], + "file-powerpoint": [384, 512, [], "f1c4", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm72-60V236c0-6.6 5.4-12 12-12h69.2c36.7 0 62.8 27 62.8 66.3 0 74.3-68.7 66.5-95.5 66.5V404c0 6.6-5.4 12-12 12H132c-6.6 0-12-5.4-12-12zm48.5-87.4h23c7.9 0 13.9-2.4 18.1-7.2 8.5-9.8 8.4-28.5.1-37.8-4.1-4.6-9.9-7-17.4-7h-23.9v52z"], + "file-video": [384, 512, [], "f1c8", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm228.687-211.303L224 305.374V268c0-11.046-8.954-20-20-20H100c-11.046 0-20 8.954-20 20v104c0 11.046 8.954 20 20 20h104c11.046 0 20-8.954 20-20v-37.374l52.687 52.674C286.704 397.318 304 390.28 304 375.986V264.011c0-14.311-17.309-21.319-27.313-11.314z"], + "file-word": [384, 512, [], "f1c2", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm220.1-208c-5.7 0-10.6 4-11.7 9.5-20.6 97.7-20.4 95.4-21 103.5-.2-1.2-.4-2.6-.7-4.3-.8-5.1.3.2-23.6-99.5-1.3-5.4-6.1-9.2-11.7-9.2h-13.3c-5.5 0-10.3 3.8-11.7 9.1-24.4 99-24 96.2-24.8 103.7-.1-1.1-.2-2.5-.5-4.2-.7-5.2-14.1-73.3-19.1-99-1.1-5.6-6-9.7-11.8-9.7h-16.8c-7.8 0-13.5 7.3-11.7 14.8 8 32.6 26.7 109.5 33.2 136 1.3 5.4 6.1 9.1 11.7 9.1h25.2c5.5 0 10.3-3.7 11.6-9.1l17.9-71.4c1.5-6.2 2.5-12 3-17.3l2.9 17.3c.1.4 12.6 50.5 17.9 71.4 1.3 5.3 6.1 9.1 11.6 9.1h24.7c5.5 0 10.3-3.7 11.6-9.1 20.8-81.9 30.2-119 34.5-136 1.9-7.6-3.8-14.9-11.6-14.9h-15.8z"], + "flag": [512, 512, [], "f024", "M336.174 80c-49.132 0-93.305-32-161.913-32-31.301 0-58.303 6.482-80.721 15.168a48.04 48.04 0 0 0 2.142-20.727C93.067 19.575 74.167 1.594 51.201.104 23.242-1.71 0 20.431 0 48c0 17.764 9.657 33.262 24 41.562V496c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-83.443C109.869 395.28 143.259 384 199.826 384c49.132 0 93.305 32 161.913 32 58.479 0 101.972-22.617 128.548-39.981C503.846 367.161 512 352.051 512 335.855V95.937c0-34.459-35.264-57.768-66.904-44.117C409.193 67.309 371.641 80 336.174 80zM464 336c-21.783 15.412-60.824 32-102.261 32-59.945 0-102.002-32-161.913-32-43.361 0-96.379 9.403-127.826 24V128c21.784-15.412 60.824-32 102.261-32 59.945 0 102.002 32 161.913 32 43.271 0 96.32-17.366 127.826-32v240z"], + "flushed": [496, 512, [], "f579", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm96-312c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-112 24c0-44.2-35.8-80-80-80s-80 35.8-80 80 35.8 80 80 80 80-35.8 80-80zm-80 48c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm160 144H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z"], + "folder": [512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48zm-6 272H54c-3.314 0-6-2.678-6-5.992V117.992A5.993 5.993 0 0 1 54 112h134.118l64 64H458a6 6 0 0 1 6 6v212a6 6 0 0 1-6 6z"], + "folder-open": [576, 512, [], "f07c", "M527.943 224H480v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h400a48.001 48.001 0 0 0 40.704-22.56l79.942-128c19.948-31.917-3.038-73.44-40.703-73.44zM54 112h134.118l64 64H426a6 6 0 0 1 6 6v42H152a48 48 0 0 0-41.098 23.202L48 351.449V117.993A5.993 5.993 0 0 1 54 112zm394 288H72l77.234-128H528l-80 128z"], + "font-awesome-logo-full": [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"], + "frown": [496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 128c-40.2 0-78 17.7-103.8 48.6-8.5 10.2-7.1 25.3 3.1 33.8 10.2 8.4 25.3 7.1 33.8-3.1 16.6-19.9 41-31.4 66.9-31.4s50.3 11.4 66.9 31.4c8.1 9.7 23.1 11.9 33.8 3.1 10.2-8.5 11.5-23.6 3.1-33.8C326 321.7 288.2 304 248 304z"], + "frown-open": [496, 512, [], "f57a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-48-248c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 112c-35.6 0-88.8 21.3-95.8 61.2-2 11.8 9 21.5 20.5 18.1 31.2-9.6 59.4-15.3 75.3-15.3s44.1 5.7 75.3 15.3c11.4 3.5 22.5-6.3 20.5-18.1-7-39.9-60.2-61.2-95.8-61.2z"], + "futbol": [496, 512, [], "f1e3", "M483.8 179.4C449.8 74.6 352.6 8 248.1 8c-25.4 0-51.2 3.9-76.7 12.2C41.2 62.5-30.1 202.4 12.2 332.6 46.2 437.4 143.4 504 247.9 504c25.4 0 51.2-3.9 76.7-12.2 130.2-42.3 201.5-182.2 159.2-312.4zm-74.5 193.7l-52.2 6.4-43.7-60.9 24.4-75.2 71.1-22.1 38.9 36.4c-.2 30.7-7.4 61.1-21.7 89.2-4.7 9.3-10.7 17.8-16.8 26.2zm0-235.4l-10.4 53.1-70.7 22-64.2-46.5V92.5l47.4-26.2c39.2 13 73.4 38 97.9 71.4zM184.9 66.4L232 92.5v73.8l-64.2 46.5-70.6-22-10.1-52.5c24.3-33.4 57.9-58.6 97.8-71.9zM139 379.5L85.9 373c-14.4-20.1-37.3-59.6-37.8-115.3l39-36.4 71.1 22.2 24.3 74.3-43.5 61.7zm48.2 67l-22.4-48.1 43.6-61.7H287l44.3 61.7-22.4 48.1c-6.2 1.8-57.6 20.4-121.7 0z"], + "gem": [576, 512, [], "f3a5", "M464 0H112c-4 0-7.8 2-10 5.4L2 152.6c-2.9 4.4-2.6 10.2.7 14.2l276 340.8c4.8 5.9 13.8 5.9 18.6 0l276-340.8c3.3-4.1 3.6-9.8.7-14.2L474.1 5.4C471.8 2 468.1 0 464 0zm-19.3 48l63.3 96h-68.4l-51.7-96h56.8zm-202.1 0h90.7l51.7 96H191l51.6-96zm-111.3 0h56.8l-51.7 96H68l63.3-96zm-43 144h51.4L208 352 88.3 192zm102.9 0h193.6L288 435.3 191.2 192zM368 352l68.2-160h51.4L368 352z"], + "grimace": [496, 512, [], "f57f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm16 16H152c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h192c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48zm-168 96h-24c-8.8 0-16-7.2-16-16v-8h40v24zm0-40h-40v-8c0-8.8 7.2-16 16-16h24v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm56 24c0 8.8-7.2 16-16 16h-24v-24h40v8zm0-24h-40v-24h24c8.8 0 16 7.2 16 16v8z"], + "grin": [496, 512, [], "f580", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z"], + "grin-alt": [496, 512, [], "f581", "M200.3 248c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zm128 0c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3z"], + "grin-beam": [496, 512, [], "f582", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-235.9-72.9c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3zm160 0c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3z"], + "grin-beam-sweat": [496, 512, [], "f583", "M440 160c29.5 0 53.3-26.3 53.3-58.7 0-25-31.7-75.5-46.2-97.3-3.6-5.3-10.7-5.3-14.2 0-14.5 21.8-46.2 72.3-46.2 97.3 0 32.4 23.8 58.7 53.3 58.7zM248 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zm105.3-52.9c-24.6 15.7-46 12.9-46.4 12.9 6.9 20.2 10.8 41.8 10.8 64.3 0 110.3-89.7 200-200 200S48 366.3 48 256 137.7 56 248 56c39.8 0 76.8 11.8 108 31.9 1.7-9.5 6.3-24.1 17.2-45.7C336.4 20.6 293.7 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-27-4.4-52.9-12.4-77.2zM168 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z"], + "grin-hearts": [496, 512, [], "f584", "M353.6 304.6c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-152.8-48.9c4.5 1.2 9.2-1.5 10.5-6l19.4-69.9c5.6-20.3-7.4-41.1-28.8-44.5-18.6-3-36.4 9.8-41.5 27.9l-2 7.1-7.1-1.9c-18.2-4.7-38.2 4.3-44.9 22-7.7 20.2 3.8 41.9 24.2 47.2l70.2 18.1zm188.8-65.3c-6.7-17.6-26.7-26.7-44.9-22l-7.1 1.9-2-7.1c-5-18.1-22.8-30.9-41.5-27.9-21.4 3.4-34.4 24.2-28.8 44.5l19.4 69.9c1.2 4.5 5.9 7.2 10.5 6l70.2-18.2c20.4-5.3 31.9-26.9 24.2-47.1zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200z"], + "grin-squint": [496, 512, [], "f585", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-234.7-40.8c3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3l-80-48c-5.1-3-11.4-1.9-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11.1.1 15.5zm242.9 2.5c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11-.1-15.5-3.8-4.4-10.2-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48z"], + "grin-squint-tears": [512, 512, [], "f586", "M117.1 384.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 479 124.3 420.8 128 395c.8-6.4-4.6-11.8-10.9-10.9zm-41.2-41.7C40.3 268 53 176.1 114.6 114.6 152.4 76.8 202.6 56 256 56c36.2 0 70.8 9.8 101.2 27.7 3.8-20.3 8-36.1 12-48.3C333.8 17.2 294.9 8 256 8 192.5 8 129.1 32.2 80.6 80.6c-74.1 74.1-91.3 183.4-52 274 12.2-4.1 27.7-8.3 47.3-12.2zm352.3-187.6c45 76.6 34.9 176.9-30.8 242.6-37.8 37.8-88 58.6-141.4 58.6-30.5 0-59.8-7-86.4-19.8-3.9 19.5-8 35-12.2 47.2 31.4 13.6 65 20.6 98.7 20.6 63.5 0 126.9-24.2 175.4-72.6 78.1-78.1 93.1-195.4 45.2-288.6-12.3 4-28.2 8.1-48.5 12zm-33.3-26.9c25.8-3.7 84-13.7 100.9-30.6 21.9-21.9 21.5-57.9-.9-80.3s-58.3-22.8-80.3-.9C397.7 33 387.7 91.2 384 117c-.8 6.4 4.6 11.8 10.9 10.9zm-187 108.3c-3-3-7.2-4.2-11.4-3.2L106 255.7c-5.7 1.4-9.5 6.7-9.1 12.6.5 5.8 5.1 10.5 10.9 11l52.3 4.8 4.8 52.3c.5 5.8 5.2 10.4 11 10.9h.9c5.5 0 10.3-3.7 11.7-9.1l22.6-90.5c1-4.2-.2-8.5-3.2-11.5zm39.7-25.1l90.5-22.6c5.7-1.4 9.5-6.7 9.1-12.6-.5-5.8-5.1-10.5-10.9-11l-52.3-4.8-4.8-52.3c-.5-5.8-5.2-10.4-11-10.9-5.6-.1-11.2 3.4-12.6 9.1L233 196.5c-1 4.1.2 8.4 3.2 11.4 5 5 11.3 3.2 11.4 3.2zm52 88.5c-29.1 29.1-59.7 52.9-83.9 65.4-9.2 4.8-10 17.5-1.7 23.4 38.9 27.7 107 6.2 143.7-30.6S416 253 388.3 214.1c-5.8-8.2-18.5-7.6-23.4 1.7-12.3 24.2-36.2 54.7-65.3 83.8z"], + "grin-stars": [496, 512, [], "f587", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-227.9-57.5c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.5 1.9-12.2-4.3-13.2l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6.1 34.9zm259.7-72.7l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6 34.9c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.6 1.8-12.2-4.4-13.2z"], + "grin-tears": [640, 512, [], "f588", "M117.1 256.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 351 124.3 292.8 128 267c.8-6.4-4.6-11.8-10.9-10.9zm506.7 30.6c-16.9-16.9-75.1-26.9-100.9-30.6-6.3-.9-11.7 4.5-10.8 10.8 3.7 25.8 13.7 84 30.6 100.9 21.9 21.9 57.9 21.5 80.3-.9 22.3-22.3 22.7-58.3.8-80.2zm-126.6 61.7C463.8 412.3 396.9 456 320 456c-76.9 0-143.8-43.7-177.2-107.6-12.5 37.4-25.2 43.9-28.3 46.5C159.1 460.7 234.5 504 320 504s160.9-43.3 205.5-109.1c-3.2-2.7-15.9-9.2-28.3-46.5zM122.7 224.5C137.9 129.2 220.5 56 320 56c99.5 0 182.1 73.2 197.3 168.5 2.1-.2 5.2-2.4 49.5 7C554.4 106 448.7 8 320 8S85.6 106 73.2 231.4c44.5-9.4 47.1-7.2 49.5-6.9zM320 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zM240 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z"], + "grin-tongue": [496, 512, [], "f589", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zM168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"], + "grin-tongue-squint": [496, 512, [], "f58a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zm36.9-281.1c-3.8-4.4-10.3-5.5-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zm-162.9 45.5l-80-48c-5-3-11.4-2-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3z"], + "grin-tongue-wink": [496, 512, [], "f58b", "M152 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm176-52c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3z"], + "grin-wink": [496, 512, [], "f58c", "M328 180c-25.69 0-55.88 16.92-59.86 42.12-1.75 11.22 11.5 18.24 19.83 10.84l9.55-8.48c14.81-13.19 46.16-13.19 60.97 0l9.55 8.48c8.48 7.43 21.56.25 19.83-10.84C383.88 196.92 353.69 180 328 180zm-160 60c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm185.55 64.64c-25.93 8.3-64.4 13.06-105.55 13.06s-79.62-4.75-105.55-13.06c-9.94-3.13-19.4 5.37-17.71 15.34C132.67 367.13 196.06 400 248 400s115.33-32.87 123.26-80.02c1.68-9.89-7.67-18.48-17.71-15.34zM248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 448c-110.28 0-200-89.72-200-200S137.72 56 248 56s200 89.72 200 200-89.72 200-200 200z"], + "hand-lizard": [576, 512, [], "f258", "M556.686 290.542L410.328 64.829C397.001 44.272 374.417 32 349.917 32H56C25.121 32 0 57.122 0 88v8c0 44.112 35.888 80 80 80h196.042l-18.333 48H144c-48.523 0-88 39.477-88 88 0 30.879 25.121 56 56 56h131.552c2.987 0 5.914.549 8.697 1.631L352 408.418V480h224V355.829c0-23.225-6.679-45.801-19.314-65.287zM528 432H400v-23.582c0-19.948-12.014-37.508-30.604-44.736l-99.751-38.788A71.733 71.733 0 0 0 243.552 320H112c-4.411 0-8-3.589-8-8 0-22.056 17.944-40 40-40h113.709c19.767 0 37.786-12.407 44.84-30.873l24.552-64.281c8.996-23.553-8.428-48.846-33.63-48.846H80c-17.645 0-32-14.355-32-32v-8c0-4.411 3.589-8 8-8h293.917c8.166 0 15.693 4.09 20.137 10.942l146.358 225.715A71.84 71.84 0 0 1 528 355.829V432z"], + "hand-paper": [448, 512, [], "f256", "M372.57 112.641v-10.825c0-43.612-40.52-76.691-83.039-65.546-25.629-49.5-94.09-47.45-117.982.747C130.269 26.456 89.144 57.945 89.144 102v126.13c-19.953-7.427-43.308-5.068-62.083 8.871-29.355 21.796-35.794 63.333-14.55 93.153L132.48 498.569a32 32 0 0 0 26.062 13.432h222.897c14.904 0 27.835-10.289 31.182-24.813l30.184-130.958A203.637 203.637 0 0 0 448 310.564V179c0-40.62-35.523-71.992-75.43-66.359zm27.427 197.922c0 11.731-1.334 23.469-3.965 34.886L368.707 464h-201.92L51.591 302.303c-14.439-20.27 15.023-42.776 29.394-22.605l27.128 38.079c8.995 12.626 29.031 6.287 29.031-9.283V102c0-25.645 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V67c0-25.663 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V101.125c0-25.672 36.57-24.81 36.57.691V256c0 8.837 7.163 16 16 16h6.857c8.837 0 16-7.163 16-16v-76.309c0-26.242 36.57-25.64 36.57-.691v131.563z"], + "hand-peace": [448, 512, [], "f25b", "M362.146 191.976c-13.71-21.649-38.761-34.016-65.006-30.341V74c0-40.804-32.811-74-73.141-74-40.33 0-73.14 33.196-73.14 74L160 168l-18.679-78.85C126.578 50.843 83.85 32.11 46.209 47.208 8.735 62.238-9.571 104.963 5.008 142.85l55.757 144.927c-30.557 24.956-43.994 57.809-24.733 92.218l54.853 97.999C102.625 498.97 124.73 512 148.575 512h205.702c30.744 0 57.558-21.44 64.555-51.797l27.427-118.999a67.801 67.801 0 0 0 1.729-15.203L448 256c0-44.956-43.263-77.343-85.854-64.024zM399.987 326c0 1.488-.169 2.977-.502 4.423l-27.427 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H148.575c-6.486 0-12.542-3.621-15.805-9.449l-54.854-98c-4.557-8.141-2.619-18.668 4.508-24.488l26.647-21.764a16 16 0 0 0 4.812-18.139l-64.09-166.549C37.226 92.956 84.37 74.837 96.51 106.389l59.784 155.357A16 16 0 0 0 171.227 272h11.632c8.837 0 16-7.163 16-16V74c0-34.375 50.281-34.43 50.281 0v182c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16v-28c0-25.122 36.567-25.159 36.567 0v28c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16 0-25.12 36.567-25.16 36.567 0v70z"], + "hand-point-down": [448, 512, [], "f0a7", "M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z"], + "hand-point-left": [512, 512, [], "f0a5", "M0 220.8C0 266.416 37.765 304 83.2 304h35.647a93.148 93.148 0 0 0 7.929 22.064c-2.507 22.006 3.503 44.978 15.985 62.791C143.9 441.342 180.159 480 242.701 480H264c60.063 0 98.512-40 127.2-40h2.679c5.747 4.952 13.536 8 22.12 8h64c17.673 0 32-12.894 32-28.8V188.8c0-15.906-14.327-28.8-32-28.8h-64c-8.584 0-16.373 3.048-22.12 8H391.2c-6.964 0-14.862-6.193-30.183-23.668l-.129-.148-.131-.146c-8.856-9.937-18.116-20.841-25.851-33.253C316.202 80.537 304.514 32 259.2 32c-56.928 0-92 35.286-92 83.2 0 8.026.814 15.489 2.176 22.4H83.2C38.101 137.6 0 175.701 0 220.8zm48 0c0-18.7 16.775-35.2 35.2-35.2h158.4c0-17.325-26.4-35.2-26.4-70.4 0-26.4 20.625-35.2 44-35.2 8.794 0 20.445 32.712 34.926 56.1 9.074 14.575 19.524 27.225 30.799 39.875 16.109 18.374 33.836 36.633 59.075 39.596v176.752C341.21 396.087 309.491 432 264 432h-21.299c-40.524 0-57.124-22.197-50.601-61.325-14.612-8.001-24.151-33.979-12.925-53.625-19.365-18.225-17.787-46.381-4.95-61.05H83.2C64.225 256 48 239.775 48 220.8zM448 360c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z"], + "hand-point-right": [512, 512, [], "f0a4", "M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"], + "hand-point-up": [448, 512, [], "f0a6", "M105.6 83.2v86.177a115.52 115.52 0 0 0-22.4-2.176c-47.914 0-83.2 35.072-83.2 92 0 45.314 48.537 57.002 78.784 75.707 12.413 7.735 23.317 16.994 33.253 25.851l.146.131.148.129C129.807 376.338 136 384.236 136 391.2v2.679c-4.952 5.747-8 13.536-8 22.12v64c0 17.673 12.894 32 28.8 32h230.4c15.906 0 28.8-14.327 28.8-32v-64c0-8.584-3.048-16.373-8-22.12V391.2c0-28.688 40-67.137 40-127.2v-21.299c0-62.542-38.658-98.8-91.145-99.94-17.813-12.482-40.785-18.491-62.791-15.985A93.148 93.148 0 0 0 272 118.847V83.2C272 37.765 234.416 0 188.8 0c-45.099 0-83.2 38.101-83.2 83.2zm118.4 0v91.026c14.669-12.837 42.825-14.415 61.05 4.95 19.646-11.227 45.624-1.687 53.625 12.925 39.128-6.524 61.325 10.076 61.325 50.6V264c0 45.491-35.913 77.21-39.676 120H183.571c-2.964-25.239-21.222-42.966-39.596-59.075-12.65-11.275-25.3-21.725-39.875-30.799C80.712 279.645 48 267.994 48 259.2c0-23.375 8.8-44 35.2-44 35.2 0 53.075 26.4 70.4 26.4V83.2c0-18.425 16.5-35.2 35.2-35.2 18.975 0 35.2 16.225 35.2 35.2zM352 424c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z"], + "hand-pointer": [448, 512, [], "f25a", "M358.182 179.361c-19.493-24.768-52.679-31.945-79.872-19.098-15.127-15.687-36.182-22.487-56.595-19.629V67c0-36.944-29.736-67-66.286-67S89.143 30.056 89.143 67v161.129c-19.909-7.41-43.272-5.094-62.083 8.872-29.355 21.795-35.793 63.333-14.55 93.152l109.699 154.001C134.632 501.59 154.741 512 176 512h178.286c30.802 0 57.574-21.5 64.557-51.797l27.429-118.999A67.873 67.873 0 0 0 448 326v-84c0-46.844-46.625-79.273-89.818-62.639zM80.985 279.697l27.126 38.079c8.995 12.626 29.031 6.287 29.031-9.283V67c0-25.12 36.571-25.16 36.571 0v175c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16v-35c0-25.12 36.571-25.16 36.571 0v35c0 8.836 7.163 16 16 16H272c8.837 0 16-7.164 16-16v-21c0-25.12 36.571-25.16 36.571 0v21c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16 0-25.121 36.571-25.16 36.571 0v84c0 1.488-.169 2.977-.502 4.423l-27.43 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H176c-5.769 0-11.263-2.878-14.697-7.697l-109.712-154c-14.406-20.223 14.994-42.818 29.394-22.606zM176.143 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.733 0-14-7.163-14-16zm75.428 0v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16zM327 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16z"], + "hand-rock": [512, 512, [], "f255", "M408.864 79.052c-22.401-33.898-66.108-42.273-98.813-23.588-29.474-31.469-79.145-31.093-108.334-.022-47.16-27.02-108.71 5.055-110.671 60.806C44.846 105.407 0 140.001 0 187.429v56.953c0 32.741 14.28 63.954 39.18 85.634l97.71 85.081c4.252 3.702 3.11 5.573 3.11 32.903 0 17.673 14.327 32 32 32h252c17.673 0 32-14.327 32-32 0-23.513-1.015-30.745 3.982-42.37l42.835-99.656c6.094-14.177 9.183-29.172 9.183-44.568V146.963c0-52.839-54.314-88.662-103.136-67.911zM464 261.406a64.505 64.505 0 0 1-5.282 25.613l-42.835 99.655c-5.23 12.171-7.883 25.04-7.883 38.25V432H188v-10.286c0-16.37-7.14-31.977-19.59-42.817l-97.71-85.08C56.274 281.255 48 263.236 48 244.381v-56.953c0-33.208 52-33.537 52 .677v41.228a16 16 0 0 0 5.493 12.067l7 6.095A16 16 0 0 0 139 235.429V118.857c0-33.097 52-33.725 52 .677v26.751c0 8.836 7.164 16 16 16h7c8.836 0 16-7.164 16-16v-41.143c0-33.134 52-33.675 52 .677v40.466c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16v-27.429c0-33.03 52-33.78 52 .677v26.751c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16 0-33.146 52-33.613 52 .677v114.445z"], + "hand-scissors": [512, 512, [], "f257", "M256 480l70-.013c5.114 0 10.231-.583 15.203-1.729l118.999-27.427C490.56 443.835 512 417.02 512 386.277V180.575c0-23.845-13.03-45.951-34.005-57.69l-97.999-54.853c-34.409-19.261-67.263-5.824-92.218 24.733L142.85 37.008c-37.887-14.579-80.612 3.727-95.642 41.201-15.098 37.642 3.635 80.37 41.942 95.112L168 192l-94-9.141c-40.804 0-74 32.811-74 73.14 0 40.33 33.196 73.141 74 73.141h87.635c-3.675 26.245 8.692 51.297 30.341 65.006C178.657 436.737 211.044 480 256 480zm0-48.013c-25.16 0-25.12-36.567 0-36.567 8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16h-28c-25.159 0-25.122-36.567 0-36.567h28c8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16H74c-34.43 0-34.375-50.281 0-50.281h182c8.837 0 16-7.163 16-16v-11.632a16 16 0 0 0-10.254-14.933L106.389 128.51c-31.552-12.14-13.432-59.283 19.222-46.717l166.549 64.091a16.001 16.001 0 0 0 18.139-4.812l21.764-26.647c5.82-7.127 16.348-9.064 24.488-4.508l98 54.854c5.828 3.263 9.449 9.318 9.449 15.805v205.701c0 8.491-5.994 15.804-14.576 17.782l-119.001 27.427a19.743 19.743 0 0 1-4.423.502h-70z"], + "hand-spock": [512, 512, [], "f259", "M21.096 381.79l129.092 121.513a32 32 0 0 0 21.932 8.698h237.6c14.17 0 26.653-9.319 30.68-22.904l31.815-107.313A115.955 115.955 0 0 0 477 348.811v-36.839c0-4.051.476-8.104 1.414-12.045l31.73-133.41c10.099-42.412-22.316-82.738-65.544-82.525-4.144-24.856-22.543-47.165-49.85-53.992-35.803-8.952-72.227 12.655-81.25 48.75L296.599 184 274.924 52.01c-8.286-36.07-44.303-58.572-80.304-50.296-29.616 6.804-50.138 32.389-51.882 61.295-42.637.831-73.455 40.563-64.071 81.844l31.04 136.508c-27.194-22.515-67.284-19.992-91.482 5.722-25.376 26.961-24.098 69.325 2.871 94.707zm32.068-61.811l.002-.001c7.219-7.672 19.241-7.98 26.856-.813l53.012 49.894C143.225 378.649 160 371.4 160 357.406v-69.479c0-1.193-.134-2.383-.397-3.546l-34.13-150.172c-5.596-24.617 31.502-32.86 37.054-8.421l30.399 133.757a16 16 0 0 0 15.603 12.454h8.604c10.276 0 17.894-9.567 15.594-19.583l-41.62-181.153c-5.623-24.469 31.39-33.076 37.035-8.508l45.22 196.828A16 16 0 0 0 288.956 272h13.217a16 16 0 0 0 15.522-12.119l42.372-169.49c6.104-24.422 42.962-15.159 36.865 9.217L358.805 252.12c-2.521 10.088 5.115 19.88 15.522 19.88h9.694a16 16 0 0 0 15.565-12.295L426.509 146.6c5.821-24.448 42.797-15.687 36.966 8.802L431.72 288.81a100.094 100.094 0 0 0-2.72 23.162v36.839c0 6.548-.943 13.051-2.805 19.328L397.775 464h-219.31L53.978 346.836c-7.629-7.18-7.994-19.229-.814-26.857z"], + "handshake": [640, 512, [], "f2b5", "M519.2 127.9l-47.6-47.6A56.252 56.252 0 0 0 432 64H205.2c-14.8 0-29.1 5.9-39.6 16.3L118 127.9H0v255.7h64c17.6 0 31.8-14.2 31.9-31.7h9.1l84.6 76.4c30.9 25.1 73.8 25.7 105.6 3.8 12.5 10.8 26 15.9 41.1 15.9 18.2 0 35.3-7.4 48.8-24 22.1 8.7 48.2 2.6 64-16.8l26.2-32.3c5.6-6.9 9.1-14.8 10.9-23h57.9c.1 17.5 14.4 31.7 31.9 31.7h64V127.9H519.2zM48 351.6c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16zm390-6.9l-26.1 32.2c-2.8 3.4-7.8 4-11.3 1.2l-23.9-19.4-30 36.5c-6 7.3-15 4.8-18 2.4l-36.8-31.5-15.6 19.2c-13.9 17.1-39.2 19.7-55.3 6.6l-97.3-88H96V175.8h41.9l61.7-61.6c2-.8 3.7-1.5 5.7-2.3H262l-38.7 35.5c-29.4 26.9-31.1 72.3-4.4 101.3 14.8 16.2 61.2 41.2 101.5 4.4l8.2-7.5 108.2 87.8c3.4 2.8 3.9 7.9 1.2 11.3zm106-40.8h-69.2c-2.3-2.8-4.9-5.4-7.7-7.7l-102.7-83.4 12.5-11.4c6.5-6 7-16.1 1-22.6L367 167.1c-6-6.5-16.1-6.9-22.6-1l-55.2 50.6c-9.5 8.7-25.7 9.4-34.6 0-9.3-9.9-8.5-25.1 1.2-33.9l65.6-60.1c7.4-6.8 17-10.5 27-10.5l83.7-.2c2.1 0 4.1.8 5.5 2.3l61.7 61.6H544v128zm48 47.7c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16z"], + "hdd": [576, 512, [], "f0a0", "M567.403 235.642L462.323 84.589A48 48 0 0 0 422.919 64H153.081a48 48 0 0 0-39.404 20.589L8.597 235.642A48.001 48.001 0 0 0 0 263.054V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V263.054c0-9.801-3-19.366-8.597-27.412zM153.081 112h269.838l77.913 112H75.168l77.913-112zM528 400H48V272h480v128zm-32-64c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32zm-96 0c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32z"], + "heart": [512, 512, [], "f004", "M458.4 64.3C400.6 15.7 311.3 23 256 79.3 200.7 23 111.4 15.6 53.6 64.3-21.6 127.6-10.6 230.8 43 285.5l175.4 178.7c10 10.2 23.4 15.9 37.6 15.9 14.3 0 27.6-5.6 37.6-15.8L469 285.6c53.5-54.7 64.7-157.9-10.6-221.3zm-23.6 187.5L259.4 430.5c-2.4 2.4-4.4 2.4-6.8 0L77.2 251.8c-36.5-37.2-43.9-107.6 7.3-150.7 38.9-32.7 98.9-27.8 136.5 10.5l35 35.7 35-35.7c37.8-38.5 97.8-43.2 136.5-10.6 51.1 43.1 43.5 113.9 7.3 150.8z"], + "hospital": [448, 512, [], "f0f8", "M128 244v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12zm140 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm-76 84v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm76 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm180 124v36H0v-36c0-6.627 5.373-12 12-12h19.5V85.035C31.5 73.418 42.245 64 55.5 64H144V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v40h88.5c13.255 0 24 9.418 24 21.035V464H436c6.627 0 12 5.373 12 12zM79.5 463H192v-67c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v67h112.5V112H304v24c0 13.255-10.745 24-24 24H168c-13.255 0-24-10.745-24-24v-24H79.5v351zM266 64h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6z"], + "hourglass": [384, 512, [], "f254", "M368 48h4c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12H12C5.373 0 0 5.373 0 12v24c0 6.627 5.373 12 12 12h4c0 80.564 32.188 165.807 97.18 208C47.899 298.381 16 383.9 16 464h-4c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12h-4c0-80.564-32.188-165.807-97.18-208C336.102 213.619 368 128.1 368 48zM64 48h256c0 101.62-57.307 184-128 184S64 149.621 64 48zm256 416H64c0-101.62 57.308-184 128-184s128 82.38 128 184z"], + "id-badge": [384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm0 464H48V48h288v416zM144 112h96c8.8 0 16-7.2 16-16s-7.2-16-16-16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16zm48 176c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"], + "id-card": [576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H303.2c.9-4.5.8 3.6.8-22.4 0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6 0 26-.2 17.9.8 22.4H48V144h480v288zm-168-80h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm-168 96c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z"], + "image": [512, 512, [], "f03e", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 336H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v276a6 6 0 0 1-6 6zM128 152c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zM96 352h320v-80l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L192 304l-39.515-39.515c-4.686-4.686-12.284-4.686-16.971 0L96 304v48z"], + "images": [576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v48H54a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6v-10h48zm42-336H150a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6V86a6 6 0 0 0-6-6zm6-48c26.51 0 48 21.49 48 48v256c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h384zM264 144c0 22.091-17.909 40-40 40s-40-17.909-40-40 17.909-40 40-40 40 17.909 40 40zm-72 96l39.515-39.515c4.686-4.686 12.284-4.686 16.971 0L288 240l103.515-103.515c4.686-4.686 12.284-4.686 16.971 0L480 208v80H192v-48z"], + "keyboard": [576, 512, [], "f11c", "M528 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm8 336c0 4.411-3.589 8-8 8H48c-4.411 0-8-3.589-8-8V112c0-4.411 3.589-8 8-8h480c4.411 0 8 3.589 8 8v288zM170 270v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-336 82v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm384 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zM122 188v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-98 158v-16c0-6.627-5.373-12-12-12H180c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h216c6.627 0 12-5.373 12-12z"], + "kiss": [496, 512, [], "f596", "M168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm136 132c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"], + "kiss-beam": [496, 512, [], "f597", "M168 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm56-148c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zm24-156c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4z"], + "kiss-wink-heart": [504, 512, [], "f598", "M304 308.5c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36 21.7-9.1 35.1-23.4 35.1-36.4zm70.5-83.5l9.5 8.5c3.8 3.3 9.3 4 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 5.8 3.1 11.2.7 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0zM136 208.5c0 17.7 14.3 32 32 32s32-14.3 32-32-14.3-32-32-32-32 14.3-32 32zm365.1 194c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zM334 436.3c-26.1 12.5-55.2 19.7-86 19.7-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200c0 22.1-3.7 43.3-10.4 63.2 9 6.4 17 14.2 22.6 23.9 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-2.5-7.3 4.3 17.2-13.4-46.8z"], + "laugh": [496, 512, [], "f599", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 224c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm-160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"], + "laugh-beam": [496, 512, [], "f59a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 152c-23.8 0-52.7 29.3-56 71.4-.7 8.6 10.8 11.9 14.9 4.5l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.1-42.1-32-71.4-55.8-71.4zm-201 75.9l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.6 8.5 10.9 11.9 15.1 4.5zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"], + "laugh-squint": [496, 512, [], "f59b", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM343.6 196l33.6-40.3c8.6-10.3-3.8-24.8-15.4-18l-80 48c-7.8 4.7-7.8 15.9 0 20.6l80 48c11.5 6.8 24-7.6 15.4-18L343.6 196zm-209.4 58.3l80-48c7.8-4.7 7.8-15.9 0-20.6l-80-48c-11.6-6.9-24 7.7-15.4 18l33.6 40.3-33.6 40.3c-8.7 10.4 3.8 24.8 15.4 18zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"], + "laugh-wink": [496, 512, [], "f59c", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6C68.8 359.6 48 309.4 48 256s20.8-103.6 58.6-141.4C144.4 76.8 194.6 56 248 56s103.6 20.8 141.4 58.6c37.8 37.8 58.6 88 58.6 141.4s-20.8 103.6-58.6 141.4zM328 164c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1zm-160 60c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"], + "lemon": [512, 512, [], "f094", "M484.112 27.889C455.989-.233 416.108-8.057 387.059 8.865 347.604 31.848 223.504-41.111 91.196 91.197-41.277 223.672 31.923 347.472 8.866 387.058c-16.922 29.051-9.1 68.932 19.022 97.054 28.135 28.135 68.011 35.938 97.057 19.021 39.423-22.97 163.557 49.969 295.858-82.329 132.474-132.477 59.273-256.277 82.331-295.861 16.922-29.05 9.1-68.931-19.022-97.054zm-22.405 72.894c-38.8 66.609 45.6 165.635-74.845 286.08-120.44 120.443-219.475 36.048-286.076 74.843-22.679 13.207-64.035-27.241-50.493-50.488 38.8-66.609-45.6-165.635 74.845-286.08C245.573 4.702 344.616 89.086 411.219 50.292c22.73-13.24 64.005 27.288 50.488 50.491zm-169.861 8.736c1.37 10.96-6.404 20.957-17.365 22.327-54.846 6.855-135.779 87.787-142.635 142.635-1.373 10.989-11.399 18.734-22.326 17.365-10.961-1.37-18.735-11.366-17.365-22.326 9.162-73.286 104.167-168.215 177.365-177.365 10.953-1.368 20.956 6.403 22.326 17.364z"], + "life-ring": [512, 512, [], "f1cd", "M256 504c136.967 0 248-111.033 248-248S392.967 8 256 8 8 119.033 8 256s111.033 248 248 248zm-103.398-76.72l53.411-53.411c31.806 13.506 68.128 13.522 99.974 0l53.411 53.411c-63.217 38.319-143.579 38.319-206.796 0zM336 256c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zm91.28 103.398l-53.411-53.411c13.505-31.806 13.522-68.128 0-99.974l53.411-53.411c38.319 63.217 38.319 143.579 0 206.796zM359.397 84.72l-53.411 53.411c-31.806-13.505-68.128-13.522-99.973 0L152.602 84.72c63.217-38.319 143.579-38.319 206.795 0zM84.72 152.602l53.411 53.411c-13.506 31.806-13.522 68.128 0 99.974L84.72 359.398c-38.319-63.217-38.319-143.579 0-206.796z"], + "lightbulb": [384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zM128 176c0-35.29 28.71-64 64-64 8.837 0 16-7.164 16-16s-7.163-16-16-16c-52.935 0-96 43.065-96 96 0 8.836 7.164 16 16 16s16-7.164 16-16zm64-128c70.734 0 128 57.254 128 128 0 77.602-37.383 60.477-80.98 160h-94.04C101.318 236.33 64 253.869 64 176c0-70.735 57.254-128 128-128m0-48C94.805 0 16 78.803 16 176c0 101.731 51.697 91.541 90.516 192.674 3.55 9.249 12.47 15.326 22.376 15.326h126.215c9.906 0 18.826-6.078 22.376-15.326C316.303 267.541 368 277.731 368 176 368 78.803 289.195 0 192 0z"], + "list-alt": [512, 512, [], "f022", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zm-42-92v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm-252 12c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36z"], + "map": [576, 512, [], "f279", "M560.02 32c-1.96 0-3.98.37-5.96 1.16L384.01 96H384L212 35.28A64.252 64.252 0 0 0 191.76 32c-6.69 0-13.37 1.05-19.81 3.14L20.12 87.95A32.006 32.006 0 0 0 0 117.66v346.32C0 473.17 7.53 480 15.99 480c1.96 0 3.97-.37 5.96-1.16L192 416l172 60.71a63.98 63.98 0 0 0 40.05.15l151.83-52.81A31.996 31.996 0 0 0 576 394.34V48.02c0-9.19-7.53-16.02-15.98-16.02zM224 90.42l128 45.19v285.97l-128-45.19V90.42zM48 418.05V129.07l128-44.53v286.2l-.64.23L48 418.05zm480-35.13l-128 44.53V141.26l.64-.24L528 93.95v288.97z"], + "meh": [496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm8 144H160c-13.2 0-24 10.8-24 24s10.8 24 24 24h176c13.2 0 24-10.8 24-24s-10.8-24-24-24z"], + "meh-blank": [496, 512, [], "f5a4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"], + "meh-rolling-eyes": [496, 512, [], "f5a5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm88-304c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm0 112c-22.1 0-40-17.9-40-40 0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40zm-104-40c0-39.8-32.2-72-72-72s-72 32.2-72 72 32.2 72 72 72 72-32.2 72-72zm-112 0c0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40s-40-17.9-40-40zm192 128H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z"], + "minus-square": [448, 512, [], "f146", "M108 284c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h232c6.6 0 12 5.4 12 12v32c0 6.6-5.4 12-12 12H108zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "money-bill-alt": [640, 512, [], "f3d1", "M320 144c-53.02 0-96 50.14-96 112 0 61.85 42.98 112 96 112 53 0 96-50.13 96-112 0-61.86-42.98-112-96-112zm40 168c0 4.42-3.58 8-8 8h-64c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h16v-55.44l-.47.31a7.992 7.992 0 0 1-11.09-2.22l-8.88-13.31a7.992 7.992 0 0 1 2.22-11.09l15.33-10.22a23.99 23.99 0 0 1 13.31-4.03H328c4.42 0 8 3.58 8 8v88h16c4.42 0 8 3.58 8 8v16zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zm-16 272c-35.35 0-64 28.65-64 64H112c0-35.35-28.65-64-64-64V176c35.35 0 64-28.65 64-64h416c0 35.35 28.65 64 64 64v160z"], + "moon": [512, 512, [], "f186", "M279.135 512c78.756 0 150.982-35.804 198.844-94.775 28.27-34.831-2.558-85.722-46.249-77.401-82.348 15.683-158.272-47.268-158.272-130.792 0-48.424 26.06-92.292 67.434-115.836 38.745-22.05 28.999-80.788-15.022-88.919A257.936 257.936 0 0 0 279.135 0c-141.36 0-256 114.575-256 256 0 141.36 114.576 256 256 256zm0-464c12.985 0 25.689 1.201 38.016 3.478-54.76 31.163-91.693 90.042-91.693 157.554 0 113.848 103.641 199.2 215.252 177.944C402.574 433.964 344.366 464 279.135 464c-114.875 0-208-93.125-208-208s93.125-208 208-208z"], + "newspaper": [576, 512, [], "f1ea", "M552 64H112c-20.858 0-38.643 13.377-45.248 32H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h496c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24zM48 392V144h16v248c0 4.411-3.589 8-8 8s-8-3.589-8-8zm480 8H111.422c.374-2.614.578-5.283.578-8V112h416v288zM172 280h136c6.627 0 12-5.373 12-12v-96c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v96c0 6.627 5.373 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H172c-6.627 0-12-5.373-12-12zm192 0v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0-144v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0 72v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12z"], + "object-group": [512, 512, [], "f247", "M500 128c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v256H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V128h12zm-52-64h32v32h-32V64zM32 64h32v32H32V64zm32 384H32v-32h32v32zm416 0h-32v-32h32v32zm-40-64h-12c-6.627 0-12 5.373-12 12v12H96v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h12v256zm-36-192h-84v-52c0-6.628-5.373-12-12-12H108c-6.627 0-12 5.372-12 12v168c0 6.628 5.373 12 12 12h84v52c0 6.628 5.373 12 12 12h200c6.627 0 12-5.372 12-12V204c0-6.628-5.373-12-12-12zm-268-24h144v112H136V168zm240 176H232v-24h76c6.627 0 12-5.372 12-12v-76h56v112z"], + "object-ungroup": [576, 512, [], "f248", "M564 224c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12h-88v-24h12c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v160H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h88v24h-12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V224h12zM352 64h32v32h-32V64zm0 256h32v32h-32v-32zM64 352H32v-32h32v32zm0-256H32V64h32v32zm32 216v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h12v160h-12c-6.627 0-12 5.373-12 12v12H96zm128 136h-32v-32h32v32zm280-64h-12c-6.627 0-12 5.373-12 12v12H256v-12c0-6.627-5.373-12-12-12h-12v-24h88v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12v-88h88v12c0 6.627 5.373 12 12 12h12v160zm40 64h-32v-32h32v32zm0-256h-32v-32h32v32z"], + "paper-plane": [512, 512, [], "f1d8", "M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z"], + "pause-circle": [512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm96-280v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16zm-112 0v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16z"], + "play-circle": [512, 512, [], "f144", "M371.7 238l-176-107c-15.8-8.8-35.7 2.5-35.7 21v208c0 18.4 19.8 29.8 35.7 21l176-101c16.4-9.1 16.4-32.8 0-42zM504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256z"], + "plus-square": [448, 512, [], "f0fe", "M352 240v32c0 6.6-5.4 12-12 12h-88v88c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-88h-88c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h88v-88c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v88h88c6.6 0 12 5.4 12 12zm96-160v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "question-circle": [512, 512, [], "f059", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 448c-110.532 0-200-89.431-200-200 0-110.495 89.472-200 200-200 110.491 0 200 89.471 200 200 0 110.53-89.431 200-200 200zm107.244-255.2c0 67.052-72.421 68.084-72.421 92.863V300c0 6.627-5.373 12-12 12h-45.647c-6.627 0-12-5.373-12-12v-8.659c0-35.745 27.1-50.034 47.579-61.516 17.561-9.845 28.324-16.541 28.324-29.579 0-17.246-21.999-28.693-39.784-28.693-23.189 0-33.894 10.977-48.942 29.969-4.057 5.12-11.46 6.071-16.666 2.124l-27.824-21.098c-5.107-3.872-6.251-11.066-2.644-16.363C184.846 131.491 214.94 112 261.794 112c49.071 0 101.45 38.304 101.45 88.8zM298 368c0 23.159-18.841 42-42 42s-42-18.841-42-42 18.841-42 42-42 42 18.841 42 42z"], + "registered": [512, 512, [], "f25d", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm110.442-81.791c-53.046-96.284-50.25-91.468-53.271-96.085 24.267-13.879 39.482-41.563 39.482-73.176 0-52.503-30.247-85.252-101.498-85.252h-78.667c-6.617 0-12 5.383-12 12V380c0 6.617 5.383 12 12 12h38.568c6.617 0 12-5.383 12-12v-83.663h31.958l47.515 89.303a11.98 11.98 0 0 0 10.593 6.36h42.81c9.14 0 14.914-9.799 10.51-17.791zM256.933 239.906h-33.875v-64.14h27.377c32.417 0 38.929 12.133 38.929 31.709-.001 20.913-11.518 32.431-32.431 32.431z"], + "sad-cry": [496, 512, [], "f5b3", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm144 386.4V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v151.4C315.5 447 282.8 456 248 456s-67.5-9-96-24.6V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v114.4c-34.6-36-56-84.7-56-138.4 0-110.3 89.7-200 200-200s200 89.7 200 200c0 53.7-21.4 102.5-56 138.4zM205.8 234.5c4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.3 7.9 4.8 13.7 1.6zM344 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.5 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm-96 92c-30.9 0-56 28.7-56 64s25.1 64 56 64 56-28.7 56-64-25.1-64-56-64z"], + "sad-tear": [496, 512, [], "f5b4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm8-152c-13.2 0-24 10.8-24 24s10.8 24 24 24c23.8 0 46.3 10.5 61.6 28.8 8.1 9.8 23.2 11.9 33.8 3.1 10.2-8.5 11.6-23.6 3.1-33.8C330 320.8 294.1 304 256 304zm-88-64c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-165.6 98.8C151 290.1 126 325.4 126 342.9c0 22.7 18.8 41.1 42 41.1s42-18.4 42-41.1c0-17.5-25-52.8-36.4-68.1-2.8-3.7-8.4-3.7-11.2 0z"], + "save": [448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM272 80v80H144V80h128zm122 352H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h42v104c0 13.255 10.745 24 24 24h176c13.255 0 24-10.745 24-24V83.882l78.243 78.243a6 6 0 0 1 1.757 4.243V426a6 6 0 0 1-6 6zM224 232c-48.523 0-88 39.477-88 88s39.477 88 88 88 88-39.477 88-88-39.477-88-88-88zm0 128c-22.056 0-40-17.944-40-40s17.944-40 40-40 40 17.944 40 40-17.944 40-40 40z"], + "share-square": [576, 512, [], "f14d", "M561.938 158.06L417.94 14.092C387.926-15.922 336 5.097 336 48.032v57.198c-42.45 1.88-84.03 6.55-120.76 17.99-35.17 10.95-63.07 27.58-82.91 49.42C108.22 199.2 96 232.6 96 271.94c0 61.697 33.178 112.455 84.87 144.76 37.546 23.508 85.248-12.651 71.02-55.74-15.515-47.119-17.156-70.923 84.11-78.76V336c0 42.993 51.968 63.913 81.94 33.94l143.998-144c18.75-18.74 18.75-49.14 0-67.88zM384 336V232.16C255.309 234.082 166.492 255.35 206.31 376 176.79 357.55 144 324.08 144 271.94c0-109.334 129.14-118.947 240-119.85V48l144 144-144 144zm24.74 84.493a82.658 82.658 0 0 0 20.974-9.303c7.976-4.952 18.286.826 18.286 10.214V464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h132c6.627 0 12 5.373 12 12v4.486c0 4.917-2.987 9.369-7.569 11.152-13.702 5.331-26.396 11.537-38.05 18.585a12.138 12.138 0 0 1-6.28 1.777H54a6 6 0 0 0-6 6v340a6 6 0 0 0 6 6h340a6 6 0 0 0 6-6v-25.966c0-5.37 3.579-10.059 8.74-11.541z"], + "smile": [496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm4 72.6c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.1-8.4-25.3-7.1-33.8 3.1z"], + "smile-beam": [496, 512, [], "f5b8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm84-143.4c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.6-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.2-8.4-25.3-7.1-33.8 3.1zM136.5 211c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.4 1.1 7.4-.5 9.3-3.7l9.5-17zM328 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4z"], + "smile-wink": [496, 512, [], "f4da", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm117.8-146.4c-10.2-8.5-25.3-7.1-33.8 3.1-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-60c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1z"], + "snowflake": [448, 512, [], "f2dc", "M438.237 355.927l-66.574-38.54 59.448-10.327c5.846-1.375 10.609-5.183 13.458-10.13 2.48-4.307 3.506-9.478 2.524-14.651-2.11-11.115-12.686-18.039-23.621-15.467l-85.423 31.115L255.914 256l82.136-41.926 85.423 31.115c10.936 2.572 21.512-4.352 23.621-15.467 2.111-11.115-5.046-22.209-15.981-24.781l-59.448-10.327 66.573-38.54c9.54-5.523 12.615-18.092 6.867-28.074-5.748-9.982-18.14-13.596-27.68-8.074l-66.574 38.54 20.805-56.787c3.246-10.782-2.758-22.542-13.413-26.268-10.654-3.725-21.922 1.997-25.168 12.779l-15.838 89.735-72.423 41.926V136l69.585-58.621c7.689-8.21 6.997-20.856-1.548-28.245-8.545-7.391-21.705-6.723-29.394 1.486l-38.644 46.46V20c0-11.046-9.318-20-20.813-20s-20.813 8.954-20.813 20v77.08l-38.644-46.46c-7.689-8.21-20.849-8.876-29.394-1.486-8.544 7.389-9.236 20.035-1.547 28.245L203.187 136v83.853l-72.423-41.926-15.838-89.736c-3.247-10.782-14.515-16.504-25.169-12.779-10.656 3.725-16.659 15.486-13.413 26.268l20.805 56.787-66.573-38.54c-9.54-5.523-21.933-1.908-27.68 8.074s-2.673 22.551 6.867 28.074l66.574 38.54-59.449 10.328C5.953 207.515-1.202 218.609.907 229.724c2.11 11.114 12.686 18.038 23.622 15.466l85.422-31.115L192.086 256l-82.136 41.926-85.423-31.115c-10.936-2.572-21.511 4.352-23.622 15.466-2.109 11.113 5.046 22.209 15.981 24.781l59.449 10.328-66.574 38.54C.223 361.449-2.852 374.018 2.896 384s18.14 13.597 27.68 8.074l66.574-38.54-20.805 56.786c-1.735 5.764-.828 11.805 2.02 16.751 2.48 4.307 6.433 7.784 11.392 9.517 10.655 3.725 21.923-1.997 25.169-12.779l15.838-89.736 72.423-41.926V376l-69.585 58.621c-7.69 8.21-6.997 20.855 1.547 28.245 8.544 7.388 21.705 6.723 29.394-1.487l38.644-46.46V492c0 11.046 9.318 20 20.813 20s20.813-8.954 20.813-20v-77.081l38.644 46.46c4.111 4.389 9.782 6.621 15.478 6.621 4.96 0 9.939-1.694 13.916-5.134 8.545-7.39 9.237-20.035 1.548-28.245L244.813 376v-83.853l72.423 41.926 15.838 89.736c3.246 10.782 14.514 16.504 25.168 12.779 10.653-3.726 16.659-15.487 13.412-26.268l-20.805-56.787 66.574 38.54c9.54 5.523 21.933 1.908 27.68-8.074 5.749-9.981 2.675-22.55-6.866-28.072z"], + "square": [448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h340c3.3 0 6 2.7 6 6v340c0 3.3-2.7 6-6 6z"], + "star": [576, 512, [], "f005", "M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z"], + "star-half": [576, 512, [], "f089", "M288 385.3l-124.3 65.4 23.7-138.4-100.6-98 139-20.2 62.2-126V0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6v-54.3z"], + "sticky-note": [448, 512, [], "f249", "M448 348.106V80c0-26.51-21.49-48-48-48H48C21.49 32 0 53.49 0 80v351.988c0 26.51 21.49 48 48 48h268.118a48 48 0 0 0 33.941-14.059l83.882-83.882A48 48 0 0 0 448 348.106zm-128 80v-76.118h76.118L320 428.106zM400 80v223.988H296c-13.255 0-24 10.745-24 24v104H48V80h352z"], + "stop-circle": [512, 512, [], "f28d", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm296-80v160c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16z"], + "sun": [512, 512, [], "f185", "M220.116 487.936l-20.213-49.425a3.992 3.992 0 0 0-5.808-1.886l-45.404 28.104c-29.466 18.24-66.295-8.519-58.054-42.179l12.699-51.865a3.993 3.993 0 0 0-3.59-4.941l-53.251-3.951c-34.554-2.562-48.632-45.855-22.174-68.247L65.08 259.05a3.992 3.992 0 0 0 0-6.106l-40.76-34.497c-26.45-22.384-12.39-65.682 22.174-68.246l53.251-3.951a3.993 3.993 0 0 0 3.59-4.941L90.637 89.443c-8.239-33.656 28.581-60.42 58.054-42.179l45.403 28.104a3.993 3.993 0 0 0 5.808-1.887l20.213-49.425c13.116-32.071 58.638-32.081 71.758 0l20.212 49.424a3.994 3.994 0 0 0 5.809 1.887l45.403-28.104c29.464-18.236 66.297 8.513 58.054 42.179l-12.699 51.865a3.995 3.995 0 0 0 3.59 4.941l53.251 3.951c34.553 2.563 48.633 45.854 22.175 68.246l-40.76 34.497a3.993 3.993 0 0 0 0 6.107l40.76 34.496c26.511 22.441 12.322 65.689-22.175 68.247l-53.251 3.951a3.993 3.993 0 0 0-3.589 4.942l12.698 51.864c8.241 33.658-28.583 60.421-58.054 42.18l-45.403-28.104a3.994 3.994 0 0 0-5.809 1.887l-20.212 49.424c-13.159 32.178-58.675 31.993-71.757 0zm16.814-64.568l19.064 46.616 19.064-46.615c10.308-25.2 40.778-35.066 63.892-20.759l42.822 26.507-11.976-48.919c-6.475-26.444 12.38-52.339 39.487-54.349l50.226-3.726-38.444-32.536c-20.782-17.591-20.747-49.621.001-67.18l38.442-32.536-50.225-3.727c-27.151-2.015-45.95-27.948-39.488-54.349l11.978-48.919-42.823 26.507c-23.151 14.327-53.603 4.4-63.892-20.76l-19.064-46.615-19.064 46.617c-10.305 25.198-40.778 35.066-63.891 20.76l-42.823-26.508 11.977 48.918c6.474 26.446-12.381 52.338-39.488 54.35l-50.224 3.726 38.443 32.537c20.782 17.588 20.747 49.619 0 67.178L52.48 322.123l50.226 3.726c27.151 2.014 45.95 27.947 39.487 54.349l-11.977 48.919 42.823-26.507c23.188-14.355 53.622-4.352 63.891 20.758zM256 384c-70.58 0-128-57.421-128-128 0-70.58 57.42-128 128-128 70.579 0 128 57.42 128 128 0 70.579-57.421 128-128 128zm0-208c-44.112 0-80 35.888-80 80s35.888 80 80 80 80-35.888 80-80-35.888-80-80-80z"], + "surprise": [496, 512, [], "f5c2", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-176c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm-48-72c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"], + "thumbs-down": [512, 512, [], "f165", "M466.27 225.31c4.674-22.647.864-44.538-8.99-62.99 2.958-23.868-4.021-48.565-17.34-66.99C438.986 39.423 404.117 0 327 0c-7 0-15 .01-22.22.01C201.195.01 168.997 40 128 40h-10.845c-5.64-4.975-13.042-8-21.155-8H32C14.327 32 0 46.327 0 64v240c0 17.673 14.327 32 32 32h64c11.842 0 22.175-6.438 27.708-16h7.052c19.146 16.953 46.013 60.653 68.76 83.4 13.667 13.667 10.153 108.6 71.76 108.6 57.58 0 95.27-31.936 95.27-104.73 0-18.41-3.93-33.73-8.85-46.54h36.48c48.602 0 85.82-41.565 85.82-85.58 0-19.15-4.96-34.99-13.73-49.84zM64 296c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm330.18 16.73H290.19c0 37.82 28.36 55.37 28.36 94.54 0 23.75 0 56.73-47.27 56.73-18.91-18.91-9.46-66.18-37.82-94.54C206.9 342.89 167.28 272 138.92 272H128V85.83c53.611 0 100.001-37.82 171.64-37.82h37.82c35.512 0 60.82 17.12 53.12 65.9 15.2 8.16 26.5 36.44 13.94 57.57 21.581 20.384 18.699 51.065 5.21 65.62 9.45 0 22.36 18.91 22.27 37.81-.09 18.91-16.71 37.82-37.82 37.82z"], + "thumbs-up": [512, 512, [], "f164", "M466.27 286.69C475.04 271.84 480 256 480 236.85c0-44.015-37.218-85.58-85.82-85.58H357.7c4.92-12.81 8.85-28.13 8.85-46.54C366.55 31.936 328.86 0 271.28 0c-61.607 0-58.093 94.933-71.76 108.6-22.747 22.747-49.615 66.447-68.76 83.4H32c-17.673 0-32 14.327-32 32v240c0 17.673 14.327 32 32 32h64c14.893 0 27.408-10.174 30.978-23.95 44.509 1.001 75.06 39.94 177.802 39.94 7.22 0 15.22.01 22.22.01 77.117 0 111.986-39.423 112.94-95.33 13.319-18.425 20.299-43.122 17.34-66.99 9.854-18.452 13.664-40.343 8.99-62.99zm-61.75 53.83c12.56 21.13 1.26 49.41-13.94 57.57 7.7 48.78-17.608 65.9-53.12 65.9h-37.82c-71.639 0-118.029-37.82-171.64-37.82V240h10.92c28.36 0 67.98-70.89 94.54-97.46 28.36-28.36 18.91-75.63 37.82-94.54 47.27 0 47.27 32.98 47.27 56.73 0 39.17-28.36 56.72-28.36 94.54h103.99c21.11 0 37.73 18.91 37.82 37.82.09 18.9-12.82 37.81-22.27 37.81 13.489 14.555 16.371 45.236-5.21 65.62zM88 432c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"], + "times-circle": [512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm101.8-262.2L295.6 256l62.2 62.2c4.7 4.7 4.7 12.3 0 17l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L256 295.6l-62.2 62.2c-4.7 4.7-12.3 4.7-17 0l-22.6-22.6c-4.7-4.7-4.7-12.3 0-17l62.2-62.2-62.2-62.2c-4.7-4.7-4.7-12.3 0-17l22.6-22.6c4.7-4.7 12.3-4.7 17 0l62.2 62.2 62.2-62.2c4.7-4.7 12.3-4.7 17 0l22.6 22.6c4.7 4.7 4.7 12.3 0 17z"], + "tired": [496, 512, [], "f5c8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm129.1-303.8c-3.8-4.4-10.3-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.8 1.6 15.3-2.5 3.8-4.5 3.9-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zM220 208c0-4.2-2.2-8.1-5.8-10.3l-80-48c-5-3-11.5-1.9-15.3 2.5-3.8 4.5-3.9 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.5 4.1 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3zm28 64c-45.4 0-100.9 38.3-107.8 93.3-1.5 11.8 6.9 21.6 15.5 17.9C178.4 373.5 212 368 248 368s69.6 5.5 92.3 15.2c8.5 3.7 17-6 15.5-17.9-6.9-55-62.4-93.3-107.8-93.3z"], + "trash-alt": [448, 512, [], "f2ed", "M192 188v216c0 6.627-5.373 12-12 12h-24c-6.627 0-12-5.373-12-12V188c0-6.627 5.373-12 12-12h24c6.627 0 12 5.373 12 12zm100-12h-24c-6.627 0-12 5.373-12 12v216c0 6.627 5.373 12 12 12h24c6.627 0 12-5.373 12-12V188c0-6.627-5.373-12-12-12zm132-96c13.255 0 24 10.745 24 24v12c0 6.627-5.373 12-12 12h-20v336c0 26.51-21.49 48-48 48H80c-26.51 0-48-21.49-48-48V128H12c-6.627 0-12-5.373-12-12v-12c0-13.255 10.745-24 24-24h74.411l34.018-56.696A48 48 0 0 1 173.589 0h100.823a48 48 0 0 1 41.16 23.304L349.589 80H424zm-269.611 0h139.223L276.16 50.913A6 6 0 0 0 271.015 48h-94.028a6 6 0 0 0-5.145 2.913L154.389 80zM368 128H80v330a6 6 0 0 0 6 6h276a6 6 0 0 0 6-6V128z"], + "user": [448, 512, [], "f007", "M313.6 304c-28.7 0-42.5 16-89.6 16-47.1 0-60.8-16-89.6-16C60.2 304 0 364.2 0 438.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-25.6c0-74.2-60.2-134.4-134.4-134.4zM400 464H48v-25.6c0-47.6 38.8-86.4 86.4-86.4 14.6 0 38.3 16 89.6 16 51.7 0 74.9-16 89.6-16 47.6 0 86.4 38.8 86.4 86.4V464zM224 288c79.5 0 144-64.5 144-144S303.5 0 224 0 80 64.5 80 144s64.5 144 144 144zm0-240c52.9 0 96 43.1 96 96s-43.1 96-96 96-96-43.1-96-96 43.1-96 96-96z"], + "user-circle": [496, 512, [], "f2bd", "M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"], + "window-close": [512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v340zM356.5 194.6L295.1 256l61.4 61.4c4.6 4.6 4.6 12.1 0 16.8l-22.3 22.3c-4.6 4.6-12.1 4.6-16.8 0L256 295.1l-61.4 61.4c-4.6 4.6-12.1 4.6-16.8 0l-22.3-22.3c-4.6-4.6-4.6-12.1 0-16.8l61.4-61.4-61.4-61.4c-4.6-4.6-4.6-12.1 0-16.8l22.3-22.3c4.6-4.6 12.1-4.6 16.8 0l61.4 61.4 61.4-61.4c4.6-4.6 12.1-4.6 16.8 0l22.3 22.3c4.7 4.6 4.7 12.1 0 16.8z"], + "window-maximize": [512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V192h416v234z"], + "window-minimize": [512, 512, [], "f2d1", "M480 480H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h448c17.7 0 32 14.3 32 32s-14.3 32-32 32z"], + "window-restore": [512, 512, [], "f2d2", "M464 0H144c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-96 464H48V256h320v208zm96-96h-48V144c0-26.5-21.5-48-48-48H144V48h320v320z"] +}; + +bunker(function () { + define('far', icons); +}); + +}()); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-regular.min.js b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-regular.min.js new file mode 100644 index 0000000000..a958d571cc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-regular.min.js @@ -0,0 +1,204 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +!function() { + "use strict"; + var c = {}; + try { + "undefined" != typeof window && (c = window); + } catch (c) {} + var z = (c.navigator || {}).userAgent, h = void 0 === z ? "" : z, l = c, v = (~h.indexOf("MSIE") || h.indexOf("Trident/"), + "___FONT_AWESOME___"), m = function() { + try { + return !1; + } catch (c) { + return !1; + } + }(), s = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ], a = s.concat([ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ]); + [ "xs", "sm", "lg", "fw", "ul", "li", "border", "pull-left", "pull-right", "spin", "pulse", "rotate-90", "rotate-180", "rotate-270", "flip-horizontal", "flip-vertical", "stack", "stack-1x", "stack-2x", "inverse", "layers", "layers-text", "layers-counter" ].concat(s.map(function(c) { + return c + "x"; + })).concat(a.map(function(c) { + return "w-" + c; + })); + var M = l || {}; + M[v] || (M[v] = {}), M[v].styles || (M[v].styles = {}), M[v].hooks || (M[v].hooks = {}), + M[v].shims || (M[v].shims = []); + var V = M[v], H = Object.assign || function(c) { + for (var z = 1; z < arguments.length; z++) { + var h = arguments[z]; + for (var l in h) Object.prototype.hasOwnProperty.call(h, l) && (c[l] = h[l]); + } + return c; + }; + var C = { + "address-book": [ 448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-68 304H48V48h320v416zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z" ], + "address-card": [ 576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H48V80h480v352zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2zM360 320h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8z" ], + angry: [ 496, 512, [], "f556", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-144c-33.6 0-65.2 14.8-86.8 40.6-8.5 10.2-7.1 25.3 3.1 33.8s25.3 7.2 33.8-3c24.8-29.7 75-29.7 99.8 0 8.1 9.7 23.2 11.9 33.8 3 10.2-8.5 11.5-23.6 3.1-33.8-21.6-25.8-53.2-40.6-86.8-40.6zm-48-72c10.3 0 19.9-6.7 23-17.1 3.8-12.7-3.4-26.1-16.1-29.9l-80-24c-12.8-3.9-26.1 3.4-29.9 16.1-3.8 12.7 3.4 26.1 16.1 29.9l28.2 8.5c-3.1 4.9-5.3 10.4-5.3 16.6 0 17.7 14.3 32 32 32s32-14.4 32-32.1zm199-54.9c-3.8-12.7-17.1-19.9-29.9-16.1l-80 24c-12.7 3.8-19.9 17.2-16.1 29.9 3.1 10.4 12.7 17.1 23 17.1 0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.2-2.2-11.7-5.3-16.6l28.2-8.5c12.7-3.7 19.9-17.1 16.1-29.8z" ], + "arrow-alt-circle-down": [ 512, 512, [], "f358", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm-32-316v116h-67c-10.7 0-16 12.9-8.5 20.5l99 99c4.7 4.7 12.3 4.7 17 0l99-99c7.6-7.6 2.2-20.5-8.5-20.5h-67V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12z" ], + "arrow-alt-circle-left": [ 512, 512, [], "f359", "M8 256c0 137 111 248 248 248s248-111 248-248S393 8 256 8 8 119 8 256zm448 0c0 110.5-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56s200 89.5 200 200zm-72-20v40c0 6.6-5.4 12-12 12H256v67c0 10.7-12.9 16-20.5 8.5l-99-99c-4.7-4.7-4.7-12.3 0-17l99-99c7.6-7.6 20.5-2.2 20.5 8.5v67h116c6.6 0 12 5.4 12 12z" ], + "arrow-alt-circle-right": [ 512, 512, [], "f35a", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z" ], + "arrow-alt-circle-up": [ 512, 512, [], "f35b", "M256 504c137 0 248-111 248-248S393 8 256 8 8 119 8 256s111 248 248 248zm0-448c110.5 0 200 89.5 200 200s-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56zm20 328h-40c-6.6 0-12-5.4-12-12V256h-67c-10.7 0-16-12.9-8.5-20.5l99-99c4.7-4.7 12.3-4.7 17 0l99 99c7.6 7.6 2.2 20.5-8.5 20.5h-67v116c0 6.6-5.4 12-12 12z" ], + bell: [ 448, 512, [], "f0f3", "M425.403 330.939c-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.843 31.843 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095C118.101 62.783 57.143 131.831 57.143 214.857c0 81.933-17.551 99.292-34.543 116.078C-25.496 378.441 9.726 448 66.919 448H160c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h93.08c57.19 0 92.415-69.583 44.323-117.061zM224 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm157.092-72H66.9c-16.762 0-25.135-20.39-13.334-32.191 28.585-28.585 51.577-55.724 51.577-152.952C105.143 149.319 158.462 96 224 96s118.857 53.319 118.857 118.857c0 97.65 23.221 124.574 51.568 152.952C406.278 379.661 397.783 400 381.092 400z" ], + "bell-slash": [ 576, 512, [], "f1f6", "M130.9 400c-16.762 0-25.135-20.39-13.334-32.191 25.226-25.226 46.094-49.338 50.649-121.48l-46.777-41.274a168.48 168.48 0 0 0-.296 9.802c0 81.933-17.551 99.292-34.543 116.078C38.504 378.441 73.726 448 130.919 448H224c0 35.346 28.654 64 64 64s64-28.654 64-64h44.777l-54.4-48H130.9zM288 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm283.867.553l-67.931-59.571c13.104-24.118 11.524-56.318-14.532-82.042-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.848 31.848 0 0 0 320 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095c-41.471 6.618-77.891 28.571-103.249 59.841L36.459 3.037c-5.058-4.436-12.777-3.956-17.24 1.071L3.056 22.313C-1.407 27.34-.925 35.012 4.134 39.447l535.408 469.516c5.058 4.436 12.777 3.956 17.24-1.071l16.163-18.205c4.462-5.027 3.98-12.699-1.078-17.134zM288 96c65.538 0 118.857 53.319 118.857 118.857 0 97.65 23.221 124.574 51.568 152.952 2.908 2.908 4.573 6.328 5.209 9.832L194.482 141.612C216.258 113.867 250.075 96 288 96z" ], + bookmark: [ 384, 512, [], "f02e", "M336 0H48C21.49 0 0 21.49 0 48v464l192-112 192 112V48c0-26.51-21.49-48-48-48zm0 428.43l-144-84-144 84V54a6 6 0 0 1 6-6h276c3.314 0 6 2.683 6 5.996V428.43z" ], + building: [ 448, 512, [], "f1ad", "M128 148v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12zm140 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-128 96h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm128 0h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-76 84v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm76 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm180 124v36H0v-36c0-6.6 5.4-12 12-12h19.5V24c0-13.3 10.7-24 24-24h337c13.3 0 24 10.7 24 24v440H436c6.6 0 12 5.4 12 12zM79.5 463H192v-67c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v67h112.5V49L80 48l-.5 415z" ], + calendar: [ 448, 512, [], "f133", "M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z" ], + "calendar-alt": [ 448, 512, [], "f073", "M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "calendar-check": [ 448, 512, [], "f274", "M400 64h-48V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H160V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V160h352v298a6 6 0 0 1-6 6zm-52.849-200.65L198.842 404.519c-4.705 4.667-12.303 4.637-16.971-.068l-75.091-75.699c-4.667-4.705-4.637-12.303.068-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l44.104 44.461 111.072-110.181c4.705-4.667 12.303-4.637 16.971.068l22.536 22.718c4.667 4.705 4.636 12.303-.069 16.97z" ], + "calendar-minus": [ 448, 512, [], "f272", "M124 328c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H124zm324-216v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "calendar-plus": [ 448, 512, [], "f271", "M336 292v24c0 6.6-5.4 12-12 12h-76v76c0 6.6-5.4 12-12 12h-24c-6.6 0-12-5.4-12-12v-76h-76c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h76v-76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v76h76c6.6 0 12 5.4 12 12zm112-180v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "calendar-times": [ 448, 512, [], "f273", "M311.7 374.7l-17 17c-4.7 4.7-12.3 4.7-17 0L224 337.9l-53.7 53.7c-4.7 4.7-12.3 4.7-17 0l-17-17c-4.7-4.7-4.7-12.3 0-17l53.7-53.7-53.7-53.7c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0l53.7 53.7 53.7-53.7c4.7-4.7 12.3-4.7 17 0l17 17c4.7 4.7 4.7 12.3 0 17L257.9 304l53.7 53.7c4.8 4.7 4.8 12.3.1 17zM448 112v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "caret-square-down": [ 448, 512, [], "f150", "M125.1 208h197.8c10.7 0 16.1 13 8.5 20.5l-98.9 98.3c-4.7 4.7-12.2 4.7-16.9 0l-98.9-98.3c-7.7-7.5-2.3-20.5 8.4-20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "caret-square-left": [ 448, 512, [], "f191", "M272 157.1v197.8c0 10.7-13 16.1-20.5 8.5l-98.3-98.9c-4.7-4.7-4.7-12.2 0-16.9l98.3-98.9c7.5-7.7 20.5-2.3 20.5 8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "caret-square-right": [ 448, 512, [], "f152", "M176 354.9V157.1c0-10.7 13-16.1 20.5-8.5l98.3 98.9c4.7 4.7 4.7 12.2 0 16.9l-98.3 98.9c-7.5 7.7-20.5 2.3-20.5-8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "caret-square-up": [ 448, 512, [], "f151", "M322.9 304H125.1c-10.7 0-16.1-13-8.5-20.5l98.9-98.3c4.7-4.7 12.2-4.7 16.9 0l98.9 98.3c7.7 7.5 2.3 20.5-8.4 20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "chart-bar": [ 512, 512, [], "f080", "M500 400c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v324h452zm-356-60v-72c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V140c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V204c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V108c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12z" ], + "check-circle": [ 512, 512, [], "f058", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z" ], + "check-square": [ 448, 512, [], "f14a", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm0 400H48V80h352v352zm-35.864-241.724L191.547 361.48c-4.705 4.667-12.303 4.637-16.97-.068l-90.781-91.516c-4.667-4.705-4.637-12.303.069-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l59.792 60.277 141.352-140.216c4.705-4.667 12.303-4.637 16.97.068l22.536 22.718c4.667 4.706 4.637 12.304-.068 16.971z" ], + circle: [ 512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z" ], + clipboard: [ 384, 512, [], "f328", "M336 64h-80c0-35.29-28.71-64-64-64s-64 28.71-64 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h42v36c0 6.627 5.373 12 12 12h168c6.627 0 12-5.373 12-12v-36h42a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zM192 40c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24" ], + clock: [ 512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z" ], + clone: [ 512, 512, [], "f24d", "M464 0H144c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h320c26.51 0 48-21.49 48-48v-48h48c26.51 0 48-21.49 48-48V48c0-26.51-21.49-48-48-48zM362 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h42v224c0 26.51 21.49 48 48 48h224v42a6 6 0 0 1-6 6zm96-96H150a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h308a6 6 0 0 1 6 6v308a6 6 0 0 1-6 6z" ], + "closed-captioning": [ 512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 336H54c-3.3 0-6-2.7-6-6V118c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v276c0 3.3-2.7 6-6 6zm-211.1-85.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7zm190.4 0c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.9-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 220.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7z" ], + comment: [ 512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z" ], + "comment-alt": [ 512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 7.1 5.8 12 12 12 2.4 0 4.9-.7 7.1-2.4L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm16 352c0 8.8-7.2 16-16 16H288l-12.8 9.6L208 428v-60H64c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h384c8.8 0 16 7.2 16 16v288z" ], + "comment-dots": [ 512, 512, [], "f4ad", "M144 208c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z" ], + comments: [ 576, 512, [], "f086", "M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z" ], + compass: [ 512, 512, [], "f14e", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm91.326-312.131l-33.359 137.779a24.005 24.005 0 0 1-6.772 11.729l-102.64 97.779c-17.104 16.293-45.56.434-39.88-23.024l33.359-137.779a23.997 23.997 0 0 1 6.772-11.729l102.642-97.779c17.285-16.47 45.494-.175 39.878 23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z" ], + copy: [ 448, 512, [], "f0c5", "M433.941 65.941l-51.882-51.882A48 48 0 0 0 348.118 0H176c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48v-48h80c26.51 0 48-21.49 48-48V99.882a48 48 0 0 0-14.059-33.941zM266 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h74v224c0 26.51 21.49 48 48 48h96v42a6 6 0 0 1-6 6zm128-96H182a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h106v88c0 13.255 10.745 24 24 24h88v202a6 6 0 0 1-6 6zm6-256h-64V48h9.632c1.591 0 3.117.632 4.243 1.757l48.368 48.368a6 6 0 0 1 1.757 4.243V112z" ], + copyright: [ 512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm107.351-101.064c-9.614 9.712-45.53 41.396-104.065 41.396-82.43 0-140.484-61.425-140.484-141.567 0-79.152 60.275-139.401 139.762-139.401 55.531 0 88.738 26.62 97.593 34.779a11.965 11.965 0 0 1 1.936 15.322l-18.155 28.113c-3.841 5.95-11.966 7.282-17.499 2.921-8.595-6.776-31.814-22.538-61.708-22.538-48.303 0-77.916 35.33-77.916 80.082 0 41.589 26.888 83.692 78.277 83.692 32.657 0 56.843-19.039 65.726-27.225 5.27-4.857 13.596-4.039 17.82 1.738l19.865 27.17a11.947 11.947 0 0 1-1.152 15.518z" ], + "credit-card": [ 576, 512, [], "f09d", "M527.9 32H48.1C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48.1 48h479.8c26.6 0 48.1-21.5 48.1-48V80c0-26.5-21.5-48-48.1-48zM54.1 80h467.8c3.3 0 6 2.7 6 6v42H48.1V86c0-3.3 2.7-6 6-6zm467.8 352H54.1c-3.3 0-6-2.7-6-6V256h479.8v170c0 3.3-2.7 6-6 6zM192 332v40c0 6.6-5.4 12-12 12h-72c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12zm192 0v40c0 6.6-5.4 12-12 12H236c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12z" ], + dizzy: [ 496, 512, [], "f567", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-33.8-217.9c7.8-7.8 7.8-20.5 0-28.3L196.3 192l17.9-17.9c7.8-7.8 7.8-20.5 0-28.3-7.8-7.8-20.5-7.8-28.3 0L168 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.9 7.7 20.5 7.7 28.4-.2zm160-92.2c-7.8-7.8-20.5-7.8-28.3 0L328 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.8 7.8 20.5 7.8 28.3 0 7.8-7.8 7.8-20.5 0-28.3l-17.8-18 17.9-17.9c7.7-7.8 7.7-20.4 0-28.2zM248 272c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64z" ], + "dot-circle": [ 512, 512, [], "f192", "M256 56c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m0-48C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 168c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80z" ], + edit: [ 576, 512, [], "f044", "M402.3 344.9l32-32c5-5 13.7-1.5 13.7 5.7V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h273.5c7.1 0 10.7 8.6 5.7 13.7l-32 32c-1.5 1.5-3.5 2.3-5.7 2.3H48v352h352V350.5c0-2.1.8-4.1 2.3-5.6zm156.6-201.8L296.3 405.7l-90.4 10c-26.2 2.9-48.5-19.2-45.6-45.6l10-90.4L432.9 17.1c22.9-22.9 59.9-22.9 82.7 0l43.2 43.2c22.9 22.9 22.9 60 .1 82.8zM460.1 174L402 115.9 216.2 301.8l-7.3 65.3 65.3-7.3L460.1 174zm64.8-79.7l-43.2-43.2c-4.1-4.1-10.8-4.1-14.8 0L436 82l58.1 58.1 30.9-30.9c4-4.2 4-10.8-.1-14.9z" ], + envelope: [ 512, 512, [], "f0e0", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z" ], + "envelope-open": [ 512, 512, [], "f2b6", "M494.586 164.516c-4.697-3.883-111.723-89.95-135.251-108.657C337.231 38.191 299.437 0 256 0c-43.205 0-80.636 37.717-103.335 55.859-24.463 19.45-131.07 105.195-135.15 108.549A48.004 48.004 0 0 0 0 201.485V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V201.509a48 48 0 0 0-17.414-36.993zM464 458a6 6 0 0 1-6 6H54a6 6 0 0 1-6-6V204.347c0-1.813.816-3.526 2.226-4.665 15.87-12.814 108.793-87.554 132.364-106.293C200.755 78.88 232.398 48 256 48c23.693 0 55.857 31.369 73.41 45.389 23.573 18.741 116.503 93.493 132.366 106.316a5.99 5.99 0 0 1 2.224 4.663V458zm-31.991-187.704c4.249 5.159 3.465 12.795-1.745 16.981-28.975 23.283-59.274 47.597-70.929 56.863C336.636 362.283 299.205 400 256 400c-43.452 0-81.287-38.237-103.335-55.86-11.279-8.967-41.744-33.413-70.927-56.865-5.21-4.187-5.993-11.822-1.745-16.981l15.258-18.528c4.178-5.073 11.657-5.843 16.779-1.726 28.618 23.001 58.566 47.035 70.56 56.571C200.143 320.631 232.307 352 256 352c23.602 0 55.246-30.88 73.41-45.389 11.994-9.535 41.944-33.57 70.563-56.568 5.122-4.116 12.601-3.346 16.778 1.727l15.258 18.526z" ], + eye: [ 576, 512, [], "f06e", "M569.354 231.631C512.97 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-102.556 0-192.091-54.701-240-136 44.157-74.933 123.677-127.27 216.162-135.007C273.958 131.078 280 144.83 280 160c0 30.928-25.072 56-56 56s-56-25.072-56-56l.001-.042C157.794 179.043 152 200.844 152 224c0 75.111 60.889 136 136 136s136-60.889 136-136c0-31.031-10.4-59.629-27.895-82.515C451.704 164.638 498.009 205.106 528 256c-47.908 81.299-137.444 136-240 136z" ], + "eye-slash": [ 576, 512, [], "f070", "M272.702 359.139c-80.483-9.011-136.212-86.886-116.93-167.042l116.93 167.042zM288 392c-102.556 0-192.092-54.701-240-136 21.755-36.917 52.1-68.342 88.344-91.658l-27.541-39.343C67.001 152.234 31.921 188.741 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.004 376.006 168.14 440 288 440a332.89 332.89 0 0 0 39.648-2.367l-32.021-45.744A284.16 284.16 0 0 1 288 392zm281.354-111.631c-33.232 56.394-83.421 101.742-143.554 129.492l48.116 68.74c3.801 5.429 2.48 12.912-2.949 16.712L450.23 509.83c-5.429 3.801-12.912 2.48-16.712-2.949L102.084 33.399c-3.801-5.429-2.48-12.912 2.949-16.712L125.77 2.17c5.429-3.801 12.912-2.48 16.712 2.949l55.526 79.325C226.612 76.343 256.808 72 288 72c119.86 0 224.996 63.994 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM528 256c-44.157-74.933-123.677-127.27-216.162-135.007C302.042 131.078 296 144.83 296 160c0 30.928 25.072 56 56 56s56-25.072 56-56l-.001-.042c30.632 57.277 16.739 130.26-36.928 171.719l26.695 38.135C452.626 346.551 498.308 306.386 528 256z" ], + file: [ 384, 512, [], "f15b", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48z" ], + "file-alt": [ 384, 512, [], "f15c", "M288 248v28c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-28c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm-12 72H108c-6.6 0-12 5.4-12 12v28c0 6.6 5.4 12 12 12h168c6.6 0 12-5.4 12-12v-28c0-6.6-5.4-12-12-12zm108-188.1V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48C0 21.5 21.5 0 48 0h204.1C264.8 0 277 5.1 286 14.1L369.9 98c9 8.9 14.1 21.2 14.1 33.9zm-128-80V128h76.1L256 51.9zM336 464V176H232c-13.3 0-24-10.7-24-24V48H48v416h288z" ], + "file-archive": [ 384, 512, [], "f1c6", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM256 51.882L332.118 128H256V51.882zM336 464H48V48h79.714v16h32V48H208v104c0 13.255 10.745 24 24 24h104v288zM192.27 96h-32V64h32v32zm-32 0v32h-32V96h32zm0 64v32h-32v-32h32zm32 0h-32v-32h32v32zm1.909 105.678A12 12 0 0 0 182.406 256H160.27v-32h-32v32l-19.69 97.106C101.989 385.611 126.834 416 160 416c33.052 0 57.871-30.192 51.476-62.62l-17.297-87.702zM160.27 390.073c-17.918 0-32.444-12.105-32.444-27.036 0-14.932 14.525-27.036 32.444-27.036s32.444 12.105 32.444 27.036c0 14.931-14.526 27.036-32.444 27.036zm32-166.073h-32v-32h32v32z" ], + "file-audio": [ 384, 512, [], "f1c7", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm144-76.024c0 10.691-12.926 16.045-20.485 8.485L136 360.486h-28c-6.627 0-12-5.373-12-12v-56c0-6.627 5.373-12 12-12h28l35.515-36.947c7.56-7.56 20.485-2.206 20.485 8.485v135.952zm41.201-47.13c9.051-9.297 9.06-24.133.001-33.439-22.149-22.752 12.235-56.246 34.395-33.481 27.198 27.94 27.212 72.444.001 100.401-21.793 22.386-56.947-10.315-34.397-33.481z" ], + "file-code": [ 384, 512, [], "f1c9", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm101.677-115.115L116.854 320l32.822-28.885a8.793 8.793 0 0 0 .605-12.624l-17.403-18.564c-3.384-3.613-8.964-3.662-12.438-.401L62.78 313.58c-3.703 3.474-3.704 9.367.001 12.84l57.659 54.055a8.738 8.738 0 0 0 6.012 2.381 8.746 8.746 0 0 0 6.427-2.782l17.403-18.563a8.795 8.795 0 0 0-.605-12.626zm84.284-127.85l-24.401-7.084a8.796 8.796 0 0 0-10.905 5.998L144.04 408.061c-1.353 4.66 1.338 9.552 5.998 10.905l24.403 7.084c4.68 1.355 9.557-1.354 10.905-5.998l54.612-188.112c1.354-4.66-1.337-9.552-5.997-10.905zm87.258 92.545l-57.658-54.055c-3.526-3.307-9.099-3.165-12.439.401l-17.403 18.563a8.795 8.795 0 0 0 .605 12.625L267.146 320l-32.822 28.885a8.793 8.793 0 0 0-.605 12.624l17.403 18.564a8.797 8.797 0 0 0 12.439.401h-.001l57.66-54.055c3.703-3.473 3.703-9.366-.001-12.839z" ], + "file-excel": [ 384, 512, [], "f1c3", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm212-240h-28.8c-4.4 0-8.4 2.4-10.5 6.3-18 33.1-22.2 42.4-28.6 57.7-13.9-29.1-6.9-17.3-28.6-57.7-2.1-3.9-6.2-6.3-10.6-6.3H124c-9.3 0-15 10-10.4 18l46.3 78-46.3 78c-4.7 8 1.1 18 10.4 18h28.9c4.4 0 8.4-2.4 10.5-6.3 21.7-40 23-45 28.6-57.7 14.9 30.2 5.9 15.9 28.6 57.7 2.1 3.9 6.2 6.3 10.6 6.3H260c9.3 0 15-10 10.4-18L224 320c.7-1.1 30.3-50.5 46.3-78 4.7-8-1.1-18-10.3-18z" ], + "file-image": [ 384, 512, [], "f1c5", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm32-48h224V288l-23.5-23.5c-4.7-4.7-12.3-4.7-17 0L176 352l-39.5-39.5c-4.7-4.7-12.3-4.7-17 0L80 352v64zm48-240c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z" ], + "file-pdf": [ 384, 512, [], "f1c1", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm250.2-143.7c-12.2-12-47-8.7-64.4-6.5-17.2-10.5-28.7-25-36.8-46.3 3.9-16.1 10.1-40.6 5.4-56-4.2-26.2-37.8-23.6-42.6-5.9-4.4 16.1-.4 38.5 7 67.1-10 23.9-24.9 56-35.4 74.4-20 10.3-47 26.2-51 46.2-3.3 15.8 26 55.2 76.1-31.2 22.4-7.4 46.8-16.5 68.4-20.1 18.9 10.2 41 17 55.8 17 25.5 0 28-28.2 17.5-38.7zm-198.1 77.8c5.1-13.7 24.5-29.5 30.4-35-19 30.3-30.4 35.7-30.4 35zm81.6-190.6c7.4 0 6.7 32.1 1.8 40.8-4.4-13.9-4.3-40.8-1.8-40.8zm-24.4 136.6c9.7-16.9 18-37 24.7-54.7 8.3 15.1 18.9 27.2 30.1 35.5-20.8 4.3-38.9 13.1-54.8 19.2zm131.6-5s-5 6-37.3-7.8c35.1-2.6 40.9 5.4 37.3 7.8z" ], + "file-powerpoint": [ 384, 512, [], "f1c4", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm72-60V236c0-6.6 5.4-12 12-12h69.2c36.7 0 62.8 27 62.8 66.3 0 74.3-68.7 66.5-95.5 66.5V404c0 6.6-5.4 12-12 12H132c-6.6 0-12-5.4-12-12zm48.5-87.4h23c7.9 0 13.9-2.4 18.1-7.2 8.5-9.8 8.4-28.5.1-37.8-4.1-4.6-9.9-7-17.4-7h-23.9v52z" ], + "file-video": [ 384, 512, [], "f1c8", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm228.687-211.303L224 305.374V268c0-11.046-8.954-20-20-20H100c-11.046 0-20 8.954-20 20v104c0 11.046 8.954 20 20 20h104c11.046 0 20-8.954 20-20v-37.374l52.687 52.674C286.704 397.318 304 390.28 304 375.986V264.011c0-14.311-17.309-21.319-27.313-11.314z" ], + "file-word": [ 384, 512, [], "f1c2", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm220.1-208c-5.7 0-10.6 4-11.7 9.5-20.6 97.7-20.4 95.4-21 103.5-.2-1.2-.4-2.6-.7-4.3-.8-5.1.3.2-23.6-99.5-1.3-5.4-6.1-9.2-11.7-9.2h-13.3c-5.5 0-10.3 3.8-11.7 9.1-24.4 99-24 96.2-24.8 103.7-.1-1.1-.2-2.5-.5-4.2-.7-5.2-14.1-73.3-19.1-99-1.1-5.6-6-9.7-11.8-9.7h-16.8c-7.8 0-13.5 7.3-11.7 14.8 8 32.6 26.7 109.5 33.2 136 1.3 5.4 6.1 9.1 11.7 9.1h25.2c5.5 0 10.3-3.7 11.6-9.1l17.9-71.4c1.5-6.2 2.5-12 3-17.3l2.9 17.3c.1.4 12.6 50.5 17.9 71.4 1.3 5.3 6.1 9.1 11.6 9.1h24.7c5.5 0 10.3-3.7 11.6-9.1 20.8-81.9 30.2-119 34.5-136 1.9-7.6-3.8-14.9-11.6-14.9h-15.8z" ], + flag: [ 512, 512, [], "f024", "M336.174 80c-49.132 0-93.305-32-161.913-32-31.301 0-58.303 6.482-80.721 15.168a48.04 48.04 0 0 0 2.142-20.727C93.067 19.575 74.167 1.594 51.201.104 23.242-1.71 0 20.431 0 48c0 17.764 9.657 33.262 24 41.562V496c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-83.443C109.869 395.28 143.259 384 199.826 384c49.132 0 93.305 32 161.913 32 58.479 0 101.972-22.617 128.548-39.981C503.846 367.161 512 352.051 512 335.855V95.937c0-34.459-35.264-57.768-66.904-44.117C409.193 67.309 371.641 80 336.174 80zM464 336c-21.783 15.412-60.824 32-102.261 32-59.945 0-102.002-32-161.913-32-43.361 0-96.379 9.403-127.826 24V128c21.784-15.412 60.824-32 102.261-32 59.945 0 102.002 32 161.913 32 43.271 0 96.32-17.366 127.826-32v240z" ], + flushed: [ 496, 512, [], "f579", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm96-312c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-112 24c0-44.2-35.8-80-80-80s-80 35.8-80 80 35.8 80 80 80 80-35.8 80-80zm-80 48c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm160 144H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z" ], + folder: [ 512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48zm-6 272H54c-3.314 0-6-2.678-6-5.992V117.992A5.993 5.993 0 0 1 54 112h134.118l64 64H458a6 6 0 0 1 6 6v212a6 6 0 0 1-6 6z" ], + "folder-open": [ 576, 512, [], "f07c", "M527.943 224H480v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h400a48.001 48.001 0 0 0 40.704-22.56l79.942-128c19.948-31.917-3.038-73.44-40.703-73.44zM54 112h134.118l64 64H426a6 6 0 0 1 6 6v42H152a48 48 0 0 0-41.098 23.202L48 351.449V117.993A5.993 5.993 0 0 1 54 112zm394 288H72l77.234-128H528l-80 128z" ], + "font-awesome-logo-full": [ 3992, 512, [ "Font Awesome" ], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z" ], + frown: [ 496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 128c-40.2 0-78 17.7-103.8 48.6-8.5 10.2-7.1 25.3 3.1 33.8 10.2 8.4 25.3 7.1 33.8-3.1 16.6-19.9 41-31.4 66.9-31.4s50.3 11.4 66.9 31.4c8.1 9.7 23.1 11.9 33.8 3.1 10.2-8.5 11.5-23.6 3.1-33.8C326 321.7 288.2 304 248 304z" ], + "frown-open": [ 496, 512, [], "f57a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-48-248c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 112c-35.6 0-88.8 21.3-95.8 61.2-2 11.8 9 21.5 20.5 18.1 31.2-9.6 59.4-15.3 75.3-15.3s44.1 5.7 75.3 15.3c11.4 3.5 22.5-6.3 20.5-18.1-7-39.9-60.2-61.2-95.8-61.2z" ], + futbol: [ 496, 512, [], "f1e3", "M483.8 179.4C449.8 74.6 352.6 8 248.1 8c-25.4 0-51.2 3.9-76.7 12.2C41.2 62.5-30.1 202.4 12.2 332.6 46.2 437.4 143.4 504 247.9 504c25.4 0 51.2-3.9 76.7-12.2 130.2-42.3 201.5-182.2 159.2-312.4zm-74.5 193.7l-52.2 6.4-43.7-60.9 24.4-75.2 71.1-22.1 38.9 36.4c-.2 30.7-7.4 61.1-21.7 89.2-4.7 9.3-10.7 17.8-16.8 26.2zm0-235.4l-10.4 53.1-70.7 22-64.2-46.5V92.5l47.4-26.2c39.2 13 73.4 38 97.9 71.4zM184.9 66.4L232 92.5v73.8l-64.2 46.5-70.6-22-10.1-52.5c24.3-33.4 57.9-58.6 97.8-71.9zM139 379.5L85.9 373c-14.4-20.1-37.3-59.6-37.8-115.3l39-36.4 71.1 22.2 24.3 74.3-43.5 61.7zm48.2 67l-22.4-48.1 43.6-61.7H287l44.3 61.7-22.4 48.1c-6.2 1.8-57.6 20.4-121.7 0z" ], + gem: [ 576, 512, [], "f3a5", "M464 0H112c-4 0-7.8 2-10 5.4L2 152.6c-2.9 4.4-2.6 10.2.7 14.2l276 340.8c4.8 5.9 13.8 5.9 18.6 0l276-340.8c3.3-4.1 3.6-9.8.7-14.2L474.1 5.4C471.8 2 468.1 0 464 0zm-19.3 48l63.3 96h-68.4l-51.7-96h56.8zm-202.1 0h90.7l51.7 96H191l51.6-96zm-111.3 0h56.8l-51.7 96H68l63.3-96zm-43 144h51.4L208 352 88.3 192zm102.9 0h193.6L288 435.3 191.2 192zM368 352l68.2-160h51.4L368 352z" ], + grimace: [ 496, 512, [], "f57f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm16 16H152c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h192c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48zm-168 96h-24c-8.8 0-16-7.2-16-16v-8h40v24zm0-40h-40v-8c0-8.8 7.2-16 16-16h24v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm56 24c0 8.8-7.2 16-16 16h-24v-24h40v8zm0-24h-40v-24h24c8.8 0 16 7.2 16 16v8z" ], + grin: [ 496, 512, [], "f580", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z" ], + "grin-alt": [ 496, 512, [], "f581", "M200.3 248c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zm128 0c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3z" ], + "grin-beam": [ 496, 512, [], "f582", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-235.9-72.9c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3zm160 0c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3z" ], + "grin-beam-sweat": [ 496, 512, [], "f583", "M440 160c29.5 0 53.3-26.3 53.3-58.7 0-25-31.7-75.5-46.2-97.3-3.6-5.3-10.7-5.3-14.2 0-14.5 21.8-46.2 72.3-46.2 97.3 0 32.4 23.8 58.7 53.3 58.7zM248 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zm105.3-52.9c-24.6 15.7-46 12.9-46.4 12.9 6.9 20.2 10.8 41.8 10.8 64.3 0 110.3-89.7 200-200 200S48 366.3 48 256 137.7 56 248 56c39.8 0 76.8 11.8 108 31.9 1.7-9.5 6.3-24.1 17.2-45.7C336.4 20.6 293.7 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-27-4.4-52.9-12.4-77.2zM168 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z" ], + "grin-hearts": [ 496, 512, [], "f584", "M353.6 304.6c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-152.8-48.9c4.5 1.2 9.2-1.5 10.5-6l19.4-69.9c5.6-20.3-7.4-41.1-28.8-44.5-18.6-3-36.4 9.8-41.5 27.9l-2 7.1-7.1-1.9c-18.2-4.7-38.2 4.3-44.9 22-7.7 20.2 3.8 41.9 24.2 47.2l70.2 18.1zm188.8-65.3c-6.7-17.6-26.7-26.7-44.9-22l-7.1 1.9-2-7.1c-5-18.1-22.8-30.9-41.5-27.9-21.4 3.4-34.4 24.2-28.8 44.5l19.4 69.9c1.2 4.5 5.9 7.2 10.5 6l70.2-18.2c20.4-5.3 31.9-26.9 24.2-47.1zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200z" ], + "grin-squint": [ 496, 512, [], "f585", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-234.7-40.8c3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3l-80-48c-5.1-3-11.4-1.9-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11.1.1 15.5zm242.9 2.5c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11-.1-15.5-3.8-4.4-10.2-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48z" ], + "grin-squint-tears": [ 512, 512, [], "f586", "M117.1 384.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 479 124.3 420.8 128 395c.8-6.4-4.6-11.8-10.9-10.9zm-41.2-41.7C40.3 268 53 176.1 114.6 114.6 152.4 76.8 202.6 56 256 56c36.2 0 70.8 9.8 101.2 27.7 3.8-20.3 8-36.1 12-48.3C333.8 17.2 294.9 8 256 8 192.5 8 129.1 32.2 80.6 80.6c-74.1 74.1-91.3 183.4-52 274 12.2-4.1 27.7-8.3 47.3-12.2zm352.3-187.6c45 76.6 34.9 176.9-30.8 242.6-37.8 37.8-88 58.6-141.4 58.6-30.5 0-59.8-7-86.4-19.8-3.9 19.5-8 35-12.2 47.2 31.4 13.6 65 20.6 98.7 20.6 63.5 0 126.9-24.2 175.4-72.6 78.1-78.1 93.1-195.4 45.2-288.6-12.3 4-28.2 8.1-48.5 12zm-33.3-26.9c25.8-3.7 84-13.7 100.9-30.6 21.9-21.9 21.5-57.9-.9-80.3s-58.3-22.8-80.3-.9C397.7 33 387.7 91.2 384 117c-.8 6.4 4.6 11.8 10.9 10.9zm-187 108.3c-3-3-7.2-4.2-11.4-3.2L106 255.7c-5.7 1.4-9.5 6.7-9.1 12.6.5 5.8 5.1 10.5 10.9 11l52.3 4.8 4.8 52.3c.5 5.8 5.2 10.4 11 10.9h.9c5.5 0 10.3-3.7 11.7-9.1l22.6-90.5c1-4.2-.2-8.5-3.2-11.5zm39.7-25.1l90.5-22.6c5.7-1.4 9.5-6.7 9.1-12.6-.5-5.8-5.1-10.5-10.9-11l-52.3-4.8-4.8-52.3c-.5-5.8-5.2-10.4-11-10.9-5.6-.1-11.2 3.4-12.6 9.1L233 196.5c-1 4.1.2 8.4 3.2 11.4 5 5 11.3 3.2 11.4 3.2zm52 88.5c-29.1 29.1-59.7 52.9-83.9 65.4-9.2 4.8-10 17.5-1.7 23.4 38.9 27.7 107 6.2 143.7-30.6S416 253 388.3 214.1c-5.8-8.2-18.5-7.6-23.4 1.7-12.3 24.2-36.2 54.7-65.3 83.8z" ], + "grin-stars": [ 496, 512, [], "f587", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-227.9-57.5c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.5 1.9-12.2-4.3-13.2l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6.1 34.9zm259.7-72.7l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6 34.9c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.6 1.8-12.2-4.4-13.2z" ], + "grin-tears": [ 640, 512, [], "f588", "M117.1 256.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 351 124.3 292.8 128 267c.8-6.4-4.6-11.8-10.9-10.9zm506.7 30.6c-16.9-16.9-75.1-26.9-100.9-30.6-6.3-.9-11.7 4.5-10.8 10.8 3.7 25.8 13.7 84 30.6 100.9 21.9 21.9 57.9 21.5 80.3-.9 22.3-22.3 22.7-58.3.8-80.2zm-126.6 61.7C463.8 412.3 396.9 456 320 456c-76.9 0-143.8-43.7-177.2-107.6-12.5 37.4-25.2 43.9-28.3 46.5C159.1 460.7 234.5 504 320 504s160.9-43.3 205.5-109.1c-3.2-2.7-15.9-9.2-28.3-46.5zM122.7 224.5C137.9 129.2 220.5 56 320 56c99.5 0 182.1 73.2 197.3 168.5 2.1-.2 5.2-2.4 49.5 7C554.4 106 448.7 8 320 8S85.6 106 73.2 231.4c44.5-9.4 47.1-7.2 49.5-6.9zM320 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zM240 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z" ], + "grin-tongue": [ 496, 512, [], "f589", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zM168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" ], + "grin-tongue-squint": [ 496, 512, [], "f58a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zm36.9-281.1c-3.8-4.4-10.3-5.5-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zm-162.9 45.5l-80-48c-5-3-11.4-2-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3z" ], + "grin-tongue-wink": [ 496, 512, [], "f58b", "M152 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm176-52c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3z" ], + "grin-wink": [ 496, 512, [], "f58c", "M328 180c-25.69 0-55.88 16.92-59.86 42.12-1.75 11.22 11.5 18.24 19.83 10.84l9.55-8.48c14.81-13.19 46.16-13.19 60.97 0l9.55 8.48c8.48 7.43 21.56.25 19.83-10.84C383.88 196.92 353.69 180 328 180zm-160 60c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm185.55 64.64c-25.93 8.3-64.4 13.06-105.55 13.06s-79.62-4.75-105.55-13.06c-9.94-3.13-19.4 5.37-17.71 15.34C132.67 367.13 196.06 400 248 400s115.33-32.87 123.26-80.02c1.68-9.89-7.67-18.48-17.71-15.34zM248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 448c-110.28 0-200-89.72-200-200S137.72 56 248 56s200 89.72 200 200-89.72 200-200 200z" ], + "hand-lizard": [ 576, 512, [], "f258", "M556.686 290.542L410.328 64.829C397.001 44.272 374.417 32 349.917 32H56C25.121 32 0 57.122 0 88v8c0 44.112 35.888 80 80 80h196.042l-18.333 48H144c-48.523 0-88 39.477-88 88 0 30.879 25.121 56 56 56h131.552c2.987 0 5.914.549 8.697 1.631L352 408.418V480h224V355.829c0-23.225-6.679-45.801-19.314-65.287zM528 432H400v-23.582c0-19.948-12.014-37.508-30.604-44.736l-99.751-38.788A71.733 71.733 0 0 0 243.552 320H112c-4.411 0-8-3.589-8-8 0-22.056 17.944-40 40-40h113.709c19.767 0 37.786-12.407 44.84-30.873l24.552-64.281c8.996-23.553-8.428-48.846-33.63-48.846H80c-17.645 0-32-14.355-32-32v-8c0-4.411 3.589-8 8-8h293.917c8.166 0 15.693 4.09 20.137 10.942l146.358 225.715A71.84 71.84 0 0 1 528 355.829V432z" ], + "hand-paper": [ 448, 512, [], "f256", "M372.57 112.641v-10.825c0-43.612-40.52-76.691-83.039-65.546-25.629-49.5-94.09-47.45-117.982.747C130.269 26.456 89.144 57.945 89.144 102v126.13c-19.953-7.427-43.308-5.068-62.083 8.871-29.355 21.796-35.794 63.333-14.55 93.153L132.48 498.569a32 32 0 0 0 26.062 13.432h222.897c14.904 0 27.835-10.289 31.182-24.813l30.184-130.958A203.637 203.637 0 0 0 448 310.564V179c0-40.62-35.523-71.992-75.43-66.359zm27.427 197.922c0 11.731-1.334 23.469-3.965 34.886L368.707 464h-201.92L51.591 302.303c-14.439-20.27 15.023-42.776 29.394-22.605l27.128 38.079c8.995 12.626 29.031 6.287 29.031-9.283V102c0-25.645 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V67c0-25.663 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V101.125c0-25.672 36.57-24.81 36.57.691V256c0 8.837 7.163 16 16 16h6.857c8.837 0 16-7.163 16-16v-76.309c0-26.242 36.57-25.64 36.57-.691v131.563z" ], + "hand-peace": [ 448, 512, [], "f25b", "M362.146 191.976c-13.71-21.649-38.761-34.016-65.006-30.341V74c0-40.804-32.811-74-73.141-74-40.33 0-73.14 33.196-73.14 74L160 168l-18.679-78.85C126.578 50.843 83.85 32.11 46.209 47.208 8.735 62.238-9.571 104.963 5.008 142.85l55.757 144.927c-30.557 24.956-43.994 57.809-24.733 92.218l54.853 97.999C102.625 498.97 124.73 512 148.575 512h205.702c30.744 0 57.558-21.44 64.555-51.797l27.427-118.999a67.801 67.801 0 0 0 1.729-15.203L448 256c0-44.956-43.263-77.343-85.854-64.024zM399.987 326c0 1.488-.169 2.977-.502 4.423l-27.427 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H148.575c-6.486 0-12.542-3.621-15.805-9.449l-54.854-98c-4.557-8.141-2.619-18.668 4.508-24.488l26.647-21.764a16 16 0 0 0 4.812-18.139l-64.09-166.549C37.226 92.956 84.37 74.837 96.51 106.389l59.784 155.357A16 16 0 0 0 171.227 272h11.632c8.837 0 16-7.163 16-16V74c0-34.375 50.281-34.43 50.281 0v182c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16v-28c0-25.122 36.567-25.159 36.567 0v28c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16 0-25.12 36.567-25.16 36.567 0v70z" ], + "hand-point-down": [ 448, 512, [], "f0a7", "M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z" ], + "hand-point-left": [ 512, 512, [], "f0a5", "M0 220.8C0 266.416 37.765 304 83.2 304h35.647a93.148 93.148 0 0 0 7.929 22.064c-2.507 22.006 3.503 44.978 15.985 62.791C143.9 441.342 180.159 480 242.701 480H264c60.063 0 98.512-40 127.2-40h2.679c5.747 4.952 13.536 8 22.12 8h64c17.673 0 32-12.894 32-28.8V188.8c0-15.906-14.327-28.8-32-28.8h-64c-8.584 0-16.373 3.048-22.12 8H391.2c-6.964 0-14.862-6.193-30.183-23.668l-.129-.148-.131-.146c-8.856-9.937-18.116-20.841-25.851-33.253C316.202 80.537 304.514 32 259.2 32c-56.928 0-92 35.286-92 83.2 0 8.026.814 15.489 2.176 22.4H83.2C38.101 137.6 0 175.701 0 220.8zm48 0c0-18.7 16.775-35.2 35.2-35.2h158.4c0-17.325-26.4-35.2-26.4-70.4 0-26.4 20.625-35.2 44-35.2 8.794 0 20.445 32.712 34.926 56.1 9.074 14.575 19.524 27.225 30.799 39.875 16.109 18.374 33.836 36.633 59.075 39.596v176.752C341.21 396.087 309.491 432 264 432h-21.299c-40.524 0-57.124-22.197-50.601-61.325-14.612-8.001-24.151-33.979-12.925-53.625-19.365-18.225-17.787-46.381-4.95-61.05H83.2C64.225 256 48 239.775 48 220.8zM448 360c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z" ], + "hand-point-right": [ 512, 512, [], "f0a4", "M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z" ], + "hand-point-up": [ 448, 512, [], "f0a6", "M105.6 83.2v86.177a115.52 115.52 0 0 0-22.4-2.176c-47.914 0-83.2 35.072-83.2 92 0 45.314 48.537 57.002 78.784 75.707 12.413 7.735 23.317 16.994 33.253 25.851l.146.131.148.129C129.807 376.338 136 384.236 136 391.2v2.679c-4.952 5.747-8 13.536-8 22.12v64c0 17.673 12.894 32 28.8 32h230.4c15.906 0 28.8-14.327 28.8-32v-64c0-8.584-3.048-16.373-8-22.12V391.2c0-28.688 40-67.137 40-127.2v-21.299c0-62.542-38.658-98.8-91.145-99.94-17.813-12.482-40.785-18.491-62.791-15.985A93.148 93.148 0 0 0 272 118.847V83.2C272 37.765 234.416 0 188.8 0c-45.099 0-83.2 38.101-83.2 83.2zm118.4 0v91.026c14.669-12.837 42.825-14.415 61.05 4.95 19.646-11.227 45.624-1.687 53.625 12.925 39.128-6.524 61.325 10.076 61.325 50.6V264c0 45.491-35.913 77.21-39.676 120H183.571c-2.964-25.239-21.222-42.966-39.596-59.075-12.65-11.275-25.3-21.725-39.875-30.799C80.712 279.645 48 267.994 48 259.2c0-23.375 8.8-44 35.2-44 35.2 0 53.075 26.4 70.4 26.4V83.2c0-18.425 16.5-35.2 35.2-35.2 18.975 0 35.2 16.225 35.2 35.2zM352 424c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z" ], + "hand-pointer": [ 448, 512, [], "f25a", "M358.182 179.361c-19.493-24.768-52.679-31.945-79.872-19.098-15.127-15.687-36.182-22.487-56.595-19.629V67c0-36.944-29.736-67-66.286-67S89.143 30.056 89.143 67v161.129c-19.909-7.41-43.272-5.094-62.083 8.872-29.355 21.795-35.793 63.333-14.55 93.152l109.699 154.001C134.632 501.59 154.741 512 176 512h178.286c30.802 0 57.574-21.5 64.557-51.797l27.429-118.999A67.873 67.873 0 0 0 448 326v-84c0-46.844-46.625-79.273-89.818-62.639zM80.985 279.697l27.126 38.079c8.995 12.626 29.031 6.287 29.031-9.283V67c0-25.12 36.571-25.16 36.571 0v175c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16v-35c0-25.12 36.571-25.16 36.571 0v35c0 8.836 7.163 16 16 16H272c8.837 0 16-7.164 16-16v-21c0-25.12 36.571-25.16 36.571 0v21c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16 0-25.121 36.571-25.16 36.571 0v84c0 1.488-.169 2.977-.502 4.423l-27.43 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H176c-5.769 0-11.263-2.878-14.697-7.697l-109.712-154c-14.406-20.223 14.994-42.818 29.394-22.606zM176.143 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.733 0-14-7.163-14-16zm75.428 0v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16zM327 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16z" ], + "hand-rock": [ 512, 512, [], "f255", "M408.864 79.052c-22.401-33.898-66.108-42.273-98.813-23.588-29.474-31.469-79.145-31.093-108.334-.022-47.16-27.02-108.71 5.055-110.671 60.806C44.846 105.407 0 140.001 0 187.429v56.953c0 32.741 14.28 63.954 39.18 85.634l97.71 85.081c4.252 3.702 3.11 5.573 3.11 32.903 0 17.673 14.327 32 32 32h252c17.673 0 32-14.327 32-32 0-23.513-1.015-30.745 3.982-42.37l42.835-99.656c6.094-14.177 9.183-29.172 9.183-44.568V146.963c0-52.839-54.314-88.662-103.136-67.911zM464 261.406a64.505 64.505 0 0 1-5.282 25.613l-42.835 99.655c-5.23 12.171-7.883 25.04-7.883 38.25V432H188v-10.286c0-16.37-7.14-31.977-19.59-42.817l-97.71-85.08C56.274 281.255 48 263.236 48 244.381v-56.953c0-33.208 52-33.537 52 .677v41.228a16 16 0 0 0 5.493 12.067l7 6.095A16 16 0 0 0 139 235.429V118.857c0-33.097 52-33.725 52 .677v26.751c0 8.836 7.164 16 16 16h7c8.836 0 16-7.164 16-16v-41.143c0-33.134 52-33.675 52 .677v40.466c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16v-27.429c0-33.03 52-33.78 52 .677v26.751c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16 0-33.146 52-33.613 52 .677v114.445z" ], + "hand-scissors": [ 512, 512, [], "f257", "M256 480l70-.013c5.114 0 10.231-.583 15.203-1.729l118.999-27.427C490.56 443.835 512 417.02 512 386.277V180.575c0-23.845-13.03-45.951-34.005-57.69l-97.999-54.853c-34.409-19.261-67.263-5.824-92.218 24.733L142.85 37.008c-37.887-14.579-80.612 3.727-95.642 41.201-15.098 37.642 3.635 80.37 41.942 95.112L168 192l-94-9.141c-40.804 0-74 32.811-74 73.14 0 40.33 33.196 73.141 74 73.141h87.635c-3.675 26.245 8.692 51.297 30.341 65.006C178.657 436.737 211.044 480 256 480zm0-48.013c-25.16 0-25.12-36.567 0-36.567 8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16h-28c-25.159 0-25.122-36.567 0-36.567h28c8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16H74c-34.43 0-34.375-50.281 0-50.281h182c8.837 0 16-7.163 16-16v-11.632a16 16 0 0 0-10.254-14.933L106.389 128.51c-31.552-12.14-13.432-59.283 19.222-46.717l166.549 64.091a16.001 16.001 0 0 0 18.139-4.812l21.764-26.647c5.82-7.127 16.348-9.064 24.488-4.508l98 54.854c5.828 3.263 9.449 9.318 9.449 15.805v205.701c0 8.491-5.994 15.804-14.576 17.782l-119.001 27.427a19.743 19.743 0 0 1-4.423.502h-70z" ], + "hand-spock": [ 512, 512, [], "f259", "M21.096 381.79l129.092 121.513a32 32 0 0 0 21.932 8.698h237.6c14.17 0 26.653-9.319 30.68-22.904l31.815-107.313A115.955 115.955 0 0 0 477 348.811v-36.839c0-4.051.476-8.104 1.414-12.045l31.73-133.41c10.099-42.412-22.316-82.738-65.544-82.525-4.144-24.856-22.543-47.165-49.85-53.992-35.803-8.952-72.227 12.655-81.25 48.75L296.599 184 274.924 52.01c-8.286-36.07-44.303-58.572-80.304-50.296-29.616 6.804-50.138 32.389-51.882 61.295-42.637.831-73.455 40.563-64.071 81.844l31.04 136.508c-27.194-22.515-67.284-19.992-91.482 5.722-25.376 26.961-24.098 69.325 2.871 94.707zm32.068-61.811l.002-.001c7.219-7.672 19.241-7.98 26.856-.813l53.012 49.894C143.225 378.649 160 371.4 160 357.406v-69.479c0-1.193-.134-2.383-.397-3.546l-34.13-150.172c-5.596-24.617 31.502-32.86 37.054-8.421l30.399 133.757a16 16 0 0 0 15.603 12.454h8.604c10.276 0 17.894-9.567 15.594-19.583l-41.62-181.153c-5.623-24.469 31.39-33.076 37.035-8.508l45.22 196.828A16 16 0 0 0 288.956 272h13.217a16 16 0 0 0 15.522-12.119l42.372-169.49c6.104-24.422 42.962-15.159 36.865 9.217L358.805 252.12c-2.521 10.088 5.115 19.88 15.522 19.88h9.694a16 16 0 0 0 15.565-12.295L426.509 146.6c5.821-24.448 42.797-15.687 36.966 8.802L431.72 288.81a100.094 100.094 0 0 0-2.72 23.162v36.839c0 6.548-.943 13.051-2.805 19.328L397.775 464h-219.31L53.978 346.836c-7.629-7.18-7.994-19.229-.814-26.857z" ], + handshake: [ 640, 512, [], "f2b5", "M519.2 127.9l-47.6-47.6A56.252 56.252 0 0 0 432 64H205.2c-14.8 0-29.1 5.9-39.6 16.3L118 127.9H0v255.7h64c17.6 0 31.8-14.2 31.9-31.7h9.1l84.6 76.4c30.9 25.1 73.8 25.7 105.6 3.8 12.5 10.8 26 15.9 41.1 15.9 18.2 0 35.3-7.4 48.8-24 22.1 8.7 48.2 2.6 64-16.8l26.2-32.3c5.6-6.9 9.1-14.8 10.9-23h57.9c.1 17.5 14.4 31.7 31.9 31.7h64V127.9H519.2zM48 351.6c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16zm390-6.9l-26.1 32.2c-2.8 3.4-7.8 4-11.3 1.2l-23.9-19.4-30 36.5c-6 7.3-15 4.8-18 2.4l-36.8-31.5-15.6 19.2c-13.9 17.1-39.2 19.7-55.3 6.6l-97.3-88H96V175.8h41.9l61.7-61.6c2-.8 3.7-1.5 5.7-2.3H262l-38.7 35.5c-29.4 26.9-31.1 72.3-4.4 101.3 14.8 16.2 61.2 41.2 101.5 4.4l8.2-7.5 108.2 87.8c3.4 2.8 3.9 7.9 1.2 11.3zm106-40.8h-69.2c-2.3-2.8-4.9-5.4-7.7-7.7l-102.7-83.4 12.5-11.4c6.5-6 7-16.1 1-22.6L367 167.1c-6-6.5-16.1-6.9-22.6-1l-55.2 50.6c-9.5 8.7-25.7 9.4-34.6 0-9.3-9.9-8.5-25.1 1.2-33.9l65.6-60.1c7.4-6.8 17-10.5 27-10.5l83.7-.2c2.1 0 4.1.8 5.5 2.3l61.7 61.6H544v128zm48 47.7c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16z" ], + hdd: [ 576, 512, [], "f0a0", "M567.403 235.642L462.323 84.589A48 48 0 0 0 422.919 64H153.081a48 48 0 0 0-39.404 20.589L8.597 235.642A48.001 48.001 0 0 0 0 263.054V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V263.054c0-9.801-3-19.366-8.597-27.412zM153.081 112h269.838l77.913 112H75.168l77.913-112zM528 400H48V272h480v128zm-32-64c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32zm-96 0c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32z" ], + heart: [ 512, 512, [], "f004", "M458.4 64.3C400.6 15.7 311.3 23 256 79.3 200.7 23 111.4 15.6 53.6 64.3-21.6 127.6-10.6 230.8 43 285.5l175.4 178.7c10 10.2 23.4 15.9 37.6 15.9 14.3 0 27.6-5.6 37.6-15.8L469 285.6c53.5-54.7 64.7-157.9-10.6-221.3zm-23.6 187.5L259.4 430.5c-2.4 2.4-4.4 2.4-6.8 0L77.2 251.8c-36.5-37.2-43.9-107.6 7.3-150.7 38.9-32.7 98.9-27.8 136.5 10.5l35 35.7 35-35.7c37.8-38.5 97.8-43.2 136.5-10.6 51.1 43.1 43.5 113.9 7.3 150.8z" ], + hospital: [ 448, 512, [], "f0f8", "M128 244v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12zm140 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm-76 84v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm76 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm180 124v36H0v-36c0-6.627 5.373-12 12-12h19.5V85.035C31.5 73.418 42.245 64 55.5 64H144V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v40h88.5c13.255 0 24 9.418 24 21.035V464H436c6.627 0 12 5.373 12 12zM79.5 463H192v-67c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v67h112.5V112H304v24c0 13.255-10.745 24-24 24H168c-13.255 0-24-10.745-24-24v-24H79.5v351zM266 64h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6z" ], + hourglass: [ 384, 512, [], "f254", "M368 48h4c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12H12C5.373 0 0 5.373 0 12v24c0 6.627 5.373 12 12 12h4c0 80.564 32.188 165.807 97.18 208C47.899 298.381 16 383.9 16 464h-4c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12h-4c0-80.564-32.188-165.807-97.18-208C336.102 213.619 368 128.1 368 48zM64 48h256c0 101.62-57.307 184-128 184S64 149.621 64 48zm256 416H64c0-101.62 57.308-184 128-184s128 82.38 128 184z" ], + "id-badge": [ 384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm0 464H48V48h288v416zM144 112h96c8.8 0 16-7.2 16-16s-7.2-16-16-16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16zm48 176c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z" ], + "id-card": [ 576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H303.2c.9-4.5.8 3.6.8-22.4 0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6 0 26-.2 17.9.8 22.4H48V144h480v288zm-168-80h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm-168 96c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z" ], + image: [ 512, 512, [], "f03e", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 336H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v276a6 6 0 0 1-6 6zM128 152c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zM96 352h320v-80l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L192 304l-39.515-39.515c-4.686-4.686-12.284-4.686-16.971 0L96 304v48z" ], + images: [ 576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v48H54a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6v-10h48zm42-336H150a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6V86a6 6 0 0 0-6-6zm6-48c26.51 0 48 21.49 48 48v256c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h384zM264 144c0 22.091-17.909 40-40 40s-40-17.909-40-40 17.909-40 40-40 40 17.909 40 40zm-72 96l39.515-39.515c4.686-4.686 12.284-4.686 16.971 0L288 240l103.515-103.515c4.686-4.686 12.284-4.686 16.971 0L480 208v80H192v-48z" ], + keyboard: [ 576, 512, [], "f11c", "M528 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm8 336c0 4.411-3.589 8-8 8H48c-4.411 0-8-3.589-8-8V112c0-4.411 3.589-8 8-8h480c4.411 0 8 3.589 8 8v288zM170 270v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-336 82v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm384 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zM122 188v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-98 158v-16c0-6.627-5.373-12-12-12H180c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h216c6.627 0 12-5.373 12-12z" ], + kiss: [ 496, 512, [], "f596", "M168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm136 132c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" ], + "kiss-beam": [ 496, 512, [], "f597", "M168 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm56-148c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zm24-156c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4z" ], + "kiss-wink-heart": [ 504, 512, [], "f598", "M304 308.5c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36 21.7-9.1 35.1-23.4 35.1-36.4zm70.5-83.5l9.5 8.5c3.8 3.3 9.3 4 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 5.8 3.1 11.2.7 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0zM136 208.5c0 17.7 14.3 32 32 32s32-14.3 32-32-14.3-32-32-32-32 14.3-32 32zm365.1 194c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zM334 436.3c-26.1 12.5-55.2 19.7-86 19.7-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200c0 22.1-3.7 43.3-10.4 63.2 9 6.4 17 14.2 22.6 23.9 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-2.5-7.3 4.3 17.2-13.4-46.8z" ], + laugh: [ 496, 512, [], "f599", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 224c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm-160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z" ], + "laugh-beam": [ 496, 512, [], "f59a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 152c-23.8 0-52.7 29.3-56 71.4-.7 8.6 10.8 11.9 14.9 4.5l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.1-42.1-32-71.4-55.8-71.4zm-201 75.9l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.6 8.5 10.9 11.9 15.1 4.5zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z" ], + "laugh-squint": [ 496, 512, [], "f59b", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM343.6 196l33.6-40.3c8.6-10.3-3.8-24.8-15.4-18l-80 48c-7.8 4.7-7.8 15.9 0 20.6l80 48c11.5 6.8 24-7.6 15.4-18L343.6 196zm-209.4 58.3l80-48c7.8-4.7 7.8-15.9 0-20.6l-80-48c-11.6-6.9-24 7.7-15.4 18l33.6 40.3-33.6 40.3c-8.7 10.4 3.8 24.8 15.4 18zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z" ], + "laugh-wink": [ 496, 512, [], "f59c", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6C68.8 359.6 48 309.4 48 256s20.8-103.6 58.6-141.4C144.4 76.8 194.6 56 248 56s103.6 20.8 141.4 58.6c37.8 37.8 58.6 88 58.6 141.4s-20.8 103.6-58.6 141.4zM328 164c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1zm-160 60c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z" ], + lemon: [ 512, 512, [], "f094", "M484.112 27.889C455.989-.233 416.108-8.057 387.059 8.865 347.604 31.848 223.504-41.111 91.196 91.197-41.277 223.672 31.923 347.472 8.866 387.058c-16.922 29.051-9.1 68.932 19.022 97.054 28.135 28.135 68.011 35.938 97.057 19.021 39.423-22.97 163.557 49.969 295.858-82.329 132.474-132.477 59.273-256.277 82.331-295.861 16.922-29.05 9.1-68.931-19.022-97.054zm-22.405 72.894c-38.8 66.609 45.6 165.635-74.845 286.08-120.44 120.443-219.475 36.048-286.076 74.843-22.679 13.207-64.035-27.241-50.493-50.488 38.8-66.609-45.6-165.635 74.845-286.08C245.573 4.702 344.616 89.086 411.219 50.292c22.73-13.24 64.005 27.288 50.488 50.491zm-169.861 8.736c1.37 10.96-6.404 20.957-17.365 22.327-54.846 6.855-135.779 87.787-142.635 142.635-1.373 10.989-11.399 18.734-22.326 17.365-10.961-1.37-18.735-11.366-17.365-22.326 9.162-73.286 104.167-168.215 177.365-177.365 10.953-1.368 20.956 6.403 22.326 17.364z" ], + "life-ring": [ 512, 512, [], "f1cd", "M256 504c136.967 0 248-111.033 248-248S392.967 8 256 8 8 119.033 8 256s111.033 248 248 248zm-103.398-76.72l53.411-53.411c31.806 13.506 68.128 13.522 99.974 0l53.411 53.411c-63.217 38.319-143.579 38.319-206.796 0zM336 256c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zm91.28 103.398l-53.411-53.411c13.505-31.806 13.522-68.128 0-99.974l53.411-53.411c38.319 63.217 38.319 143.579 0 206.796zM359.397 84.72l-53.411 53.411c-31.806-13.505-68.128-13.522-99.973 0L152.602 84.72c63.217-38.319 143.579-38.319 206.795 0zM84.72 152.602l53.411 53.411c-13.506 31.806-13.522 68.128 0 99.974L84.72 359.398c-38.319-63.217-38.319-143.579 0-206.796z" ], + lightbulb: [ 384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zM128 176c0-35.29 28.71-64 64-64 8.837 0 16-7.164 16-16s-7.163-16-16-16c-52.935 0-96 43.065-96 96 0 8.836 7.164 16 16 16s16-7.164 16-16zm64-128c70.734 0 128 57.254 128 128 0 77.602-37.383 60.477-80.98 160h-94.04C101.318 236.33 64 253.869 64 176c0-70.735 57.254-128 128-128m0-48C94.805 0 16 78.803 16 176c0 101.731 51.697 91.541 90.516 192.674 3.55 9.249 12.47 15.326 22.376 15.326h126.215c9.906 0 18.826-6.078 22.376-15.326C316.303 267.541 368 277.731 368 176 368 78.803 289.195 0 192 0z" ], + "list-alt": [ 512, 512, [], "f022", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zm-42-92v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm-252 12c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36z" ], + map: [ 576, 512, [], "f279", "M560.02 32c-1.96 0-3.98.37-5.96 1.16L384.01 96H384L212 35.28A64.252 64.252 0 0 0 191.76 32c-6.69 0-13.37 1.05-19.81 3.14L20.12 87.95A32.006 32.006 0 0 0 0 117.66v346.32C0 473.17 7.53 480 15.99 480c1.96 0 3.97-.37 5.96-1.16L192 416l172 60.71a63.98 63.98 0 0 0 40.05.15l151.83-52.81A31.996 31.996 0 0 0 576 394.34V48.02c0-9.19-7.53-16.02-15.98-16.02zM224 90.42l128 45.19v285.97l-128-45.19V90.42zM48 418.05V129.07l128-44.53v286.2l-.64.23L48 418.05zm480-35.13l-128 44.53V141.26l.64-.24L528 93.95v288.97z" ], + meh: [ 496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm8 144H160c-13.2 0-24 10.8-24 24s10.8 24 24 24h176c13.2 0 24-10.8 24-24s-10.8-24-24-24z" ], + "meh-blank": [ 496, 512, [], "f5a4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" ], + "meh-rolling-eyes": [ 496, 512, [], "f5a5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm88-304c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm0 112c-22.1 0-40-17.9-40-40 0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40zm-104-40c0-39.8-32.2-72-72-72s-72 32.2-72 72 32.2 72 72 72 72-32.2 72-72zm-112 0c0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40s-40-17.9-40-40zm192 128H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z" ], + "minus-square": [ 448, 512, [], "f146", "M108 284c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h232c6.6 0 12 5.4 12 12v32c0 6.6-5.4 12-12 12H108zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "money-bill-alt": [ 640, 512, [], "f3d1", "M320 144c-53.02 0-96 50.14-96 112 0 61.85 42.98 112 96 112 53 0 96-50.13 96-112 0-61.86-42.98-112-96-112zm40 168c0 4.42-3.58 8-8 8h-64c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h16v-55.44l-.47.31a7.992 7.992 0 0 1-11.09-2.22l-8.88-13.31a7.992 7.992 0 0 1 2.22-11.09l15.33-10.22a23.99 23.99 0 0 1 13.31-4.03H328c4.42 0 8 3.58 8 8v88h16c4.42 0 8 3.58 8 8v16zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zm-16 272c-35.35 0-64 28.65-64 64H112c0-35.35-28.65-64-64-64V176c35.35 0 64-28.65 64-64h416c0 35.35 28.65 64 64 64v160z" ], + moon: [ 512, 512, [], "f186", "M279.135 512c78.756 0 150.982-35.804 198.844-94.775 28.27-34.831-2.558-85.722-46.249-77.401-82.348 15.683-158.272-47.268-158.272-130.792 0-48.424 26.06-92.292 67.434-115.836 38.745-22.05 28.999-80.788-15.022-88.919A257.936 257.936 0 0 0 279.135 0c-141.36 0-256 114.575-256 256 0 141.36 114.576 256 256 256zm0-464c12.985 0 25.689 1.201 38.016 3.478-54.76 31.163-91.693 90.042-91.693 157.554 0 113.848 103.641 199.2 215.252 177.944C402.574 433.964 344.366 464 279.135 464c-114.875 0-208-93.125-208-208s93.125-208 208-208z" ], + newspaper: [ 576, 512, [], "f1ea", "M552 64H112c-20.858 0-38.643 13.377-45.248 32H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h496c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24zM48 392V144h16v248c0 4.411-3.589 8-8 8s-8-3.589-8-8zm480 8H111.422c.374-2.614.578-5.283.578-8V112h416v288zM172 280h136c6.627 0 12-5.373 12-12v-96c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v96c0 6.627 5.373 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H172c-6.627 0-12-5.373-12-12zm192 0v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0-144v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0 72v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12z" ], + "object-group": [ 512, 512, [], "f247", "M500 128c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v256H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V128h12zm-52-64h32v32h-32V64zM32 64h32v32H32V64zm32 384H32v-32h32v32zm416 0h-32v-32h32v32zm-40-64h-12c-6.627 0-12 5.373-12 12v12H96v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h12v256zm-36-192h-84v-52c0-6.628-5.373-12-12-12H108c-6.627 0-12 5.372-12 12v168c0 6.628 5.373 12 12 12h84v52c0 6.628 5.373 12 12 12h200c6.627 0 12-5.372 12-12V204c0-6.628-5.373-12-12-12zm-268-24h144v112H136V168zm240 176H232v-24h76c6.627 0 12-5.372 12-12v-76h56v112z" ], + "object-ungroup": [ 576, 512, [], "f248", "M564 224c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12h-88v-24h12c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v160H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h88v24h-12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V224h12zM352 64h32v32h-32V64zm0 256h32v32h-32v-32zM64 352H32v-32h32v32zm0-256H32V64h32v32zm32 216v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h12v160h-12c-6.627 0-12 5.373-12 12v12H96zm128 136h-32v-32h32v32zm280-64h-12c-6.627 0-12 5.373-12 12v12H256v-12c0-6.627-5.373-12-12-12h-12v-24h88v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12v-88h88v12c0 6.627 5.373 12 12 12h12v160zm40 64h-32v-32h32v32zm0-256h-32v-32h32v32z" ], + "paper-plane": [ 512, 512, [], "f1d8", "M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z" ], + "pause-circle": [ 512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm96-280v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16zm-112 0v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16z" ], + "play-circle": [ 512, 512, [], "f144", "M371.7 238l-176-107c-15.8-8.8-35.7 2.5-35.7 21v208c0 18.4 19.8 29.8 35.7 21l176-101c16.4-9.1 16.4-32.8 0-42zM504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256z" ], + "plus-square": [ 448, 512, [], "f0fe", "M352 240v32c0 6.6-5.4 12-12 12h-88v88c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-88h-88c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h88v-88c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v88h88c6.6 0 12 5.4 12 12zm96-160v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "question-circle": [ 512, 512, [], "f059", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 448c-110.532 0-200-89.431-200-200 0-110.495 89.472-200 200-200 110.491 0 200 89.471 200 200 0 110.53-89.431 200-200 200zm107.244-255.2c0 67.052-72.421 68.084-72.421 92.863V300c0 6.627-5.373 12-12 12h-45.647c-6.627 0-12-5.373-12-12v-8.659c0-35.745 27.1-50.034 47.579-61.516 17.561-9.845 28.324-16.541 28.324-29.579 0-17.246-21.999-28.693-39.784-28.693-23.189 0-33.894 10.977-48.942 29.969-4.057 5.12-11.46 6.071-16.666 2.124l-27.824-21.098c-5.107-3.872-6.251-11.066-2.644-16.363C184.846 131.491 214.94 112 261.794 112c49.071 0 101.45 38.304 101.45 88.8zM298 368c0 23.159-18.841 42-42 42s-42-18.841-42-42 18.841-42 42-42 42 18.841 42 42z" ], + registered: [ 512, 512, [], "f25d", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm110.442-81.791c-53.046-96.284-50.25-91.468-53.271-96.085 24.267-13.879 39.482-41.563 39.482-73.176 0-52.503-30.247-85.252-101.498-85.252h-78.667c-6.617 0-12 5.383-12 12V380c0 6.617 5.383 12 12 12h38.568c6.617 0 12-5.383 12-12v-83.663h31.958l47.515 89.303a11.98 11.98 0 0 0 10.593 6.36h42.81c9.14 0 14.914-9.799 10.51-17.791zM256.933 239.906h-33.875v-64.14h27.377c32.417 0 38.929 12.133 38.929 31.709-.001 20.913-11.518 32.431-32.431 32.431z" ], + "sad-cry": [ 496, 512, [], "f5b3", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm144 386.4V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v151.4C315.5 447 282.8 456 248 456s-67.5-9-96-24.6V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v114.4c-34.6-36-56-84.7-56-138.4 0-110.3 89.7-200 200-200s200 89.7 200 200c0 53.7-21.4 102.5-56 138.4zM205.8 234.5c4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.3 7.9 4.8 13.7 1.6zM344 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.5 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm-96 92c-30.9 0-56 28.7-56 64s25.1 64 56 64 56-28.7 56-64-25.1-64-56-64z" ], + "sad-tear": [ 496, 512, [], "f5b4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm8-152c-13.2 0-24 10.8-24 24s10.8 24 24 24c23.8 0 46.3 10.5 61.6 28.8 8.1 9.8 23.2 11.9 33.8 3.1 10.2-8.5 11.6-23.6 3.1-33.8C330 320.8 294.1 304 256 304zm-88-64c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-165.6 98.8C151 290.1 126 325.4 126 342.9c0 22.7 18.8 41.1 42 41.1s42-18.4 42-41.1c0-17.5-25-52.8-36.4-68.1-2.8-3.7-8.4-3.7-11.2 0z" ], + save: [ 448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM272 80v80H144V80h128zm122 352H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h42v104c0 13.255 10.745 24 24 24h176c13.255 0 24-10.745 24-24V83.882l78.243 78.243a6 6 0 0 1 1.757 4.243V426a6 6 0 0 1-6 6zM224 232c-48.523 0-88 39.477-88 88s39.477 88 88 88 88-39.477 88-88-39.477-88-88-88zm0 128c-22.056 0-40-17.944-40-40s17.944-40 40-40 40 17.944 40 40-17.944 40-40 40z" ], + "share-square": [ 576, 512, [], "f14d", "M561.938 158.06L417.94 14.092C387.926-15.922 336 5.097 336 48.032v57.198c-42.45 1.88-84.03 6.55-120.76 17.99-35.17 10.95-63.07 27.58-82.91 49.42C108.22 199.2 96 232.6 96 271.94c0 61.697 33.178 112.455 84.87 144.76 37.546 23.508 85.248-12.651 71.02-55.74-15.515-47.119-17.156-70.923 84.11-78.76V336c0 42.993 51.968 63.913 81.94 33.94l143.998-144c18.75-18.74 18.75-49.14 0-67.88zM384 336V232.16C255.309 234.082 166.492 255.35 206.31 376 176.79 357.55 144 324.08 144 271.94c0-109.334 129.14-118.947 240-119.85V48l144 144-144 144zm24.74 84.493a82.658 82.658 0 0 0 20.974-9.303c7.976-4.952 18.286.826 18.286 10.214V464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h132c6.627 0 12 5.373 12 12v4.486c0 4.917-2.987 9.369-7.569 11.152-13.702 5.331-26.396 11.537-38.05 18.585a12.138 12.138 0 0 1-6.28 1.777H54a6 6 0 0 0-6 6v340a6 6 0 0 0 6 6h340a6 6 0 0 0 6-6v-25.966c0-5.37 3.579-10.059 8.74-11.541z" ], + smile: [ 496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm4 72.6c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.1-8.4-25.3-7.1-33.8 3.1z" ], + "smile-beam": [ 496, 512, [], "f5b8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm84-143.4c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.6-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.2-8.4-25.3-7.1-33.8 3.1zM136.5 211c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.4 1.1 7.4-.5 9.3-3.7l9.5-17zM328 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4z" ], + "smile-wink": [ 496, 512, [], "f4da", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm117.8-146.4c-10.2-8.5-25.3-7.1-33.8 3.1-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-60c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1z" ], + snowflake: [ 448, 512, [], "f2dc", "M438.237 355.927l-66.574-38.54 59.448-10.327c5.846-1.375 10.609-5.183 13.458-10.13 2.48-4.307 3.506-9.478 2.524-14.651-2.11-11.115-12.686-18.039-23.621-15.467l-85.423 31.115L255.914 256l82.136-41.926 85.423 31.115c10.936 2.572 21.512-4.352 23.621-15.467 2.111-11.115-5.046-22.209-15.981-24.781l-59.448-10.327 66.573-38.54c9.54-5.523 12.615-18.092 6.867-28.074-5.748-9.982-18.14-13.596-27.68-8.074l-66.574 38.54 20.805-56.787c3.246-10.782-2.758-22.542-13.413-26.268-10.654-3.725-21.922 1.997-25.168 12.779l-15.838 89.735-72.423 41.926V136l69.585-58.621c7.689-8.21 6.997-20.856-1.548-28.245-8.545-7.391-21.705-6.723-29.394 1.486l-38.644 46.46V20c0-11.046-9.318-20-20.813-20s-20.813 8.954-20.813 20v77.08l-38.644-46.46c-7.689-8.21-20.849-8.876-29.394-1.486-8.544 7.389-9.236 20.035-1.547 28.245L203.187 136v83.853l-72.423-41.926-15.838-89.736c-3.247-10.782-14.515-16.504-25.169-12.779-10.656 3.725-16.659 15.486-13.413 26.268l20.805 56.787-66.573-38.54c-9.54-5.523-21.933-1.908-27.68 8.074s-2.673 22.551 6.867 28.074l66.574 38.54-59.449 10.328C5.953 207.515-1.202 218.609.907 229.724c2.11 11.114 12.686 18.038 23.622 15.466l85.422-31.115L192.086 256l-82.136 41.926-85.423-31.115c-10.936-2.572-21.511 4.352-23.622 15.466-2.109 11.113 5.046 22.209 15.981 24.781l59.449 10.328-66.574 38.54C.223 361.449-2.852 374.018 2.896 384s18.14 13.597 27.68 8.074l66.574-38.54-20.805 56.786c-1.735 5.764-.828 11.805 2.02 16.751 2.48 4.307 6.433 7.784 11.392 9.517 10.655 3.725 21.923-1.997 25.169-12.779l15.838-89.736 72.423-41.926V376l-69.585 58.621c-7.69 8.21-6.997 20.855 1.547 28.245 8.544 7.388 21.705 6.723 29.394-1.487l38.644-46.46V492c0 11.046 9.318 20 20.813 20s20.813-8.954 20.813-20v-77.081l38.644 46.46c4.111 4.389 9.782 6.621 15.478 6.621 4.96 0 9.939-1.694 13.916-5.134 8.545-7.39 9.237-20.035 1.548-28.245L244.813 376v-83.853l72.423 41.926 15.838 89.736c3.246 10.782 14.514 16.504 25.168 12.779 10.653-3.726 16.659-15.487 13.412-26.268l-20.805-56.787 66.574 38.54c9.54 5.523 21.933 1.908 27.68-8.074 5.749-9.981 2.675-22.55-6.866-28.072z" ], + square: [ 448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h340c3.3 0 6 2.7 6 6v340c0 3.3-2.7 6-6 6z" ], + star: [ 576, 512, [], "f005", "M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z" ], + "star-half": [ 576, 512, [], "f089", "M288 385.3l-124.3 65.4 23.7-138.4-100.6-98 139-20.2 62.2-126V0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6v-54.3z" ], + "sticky-note": [ 448, 512, [], "f249", "M448 348.106V80c0-26.51-21.49-48-48-48H48C21.49 32 0 53.49 0 80v351.988c0 26.51 21.49 48 48 48h268.118a48 48 0 0 0 33.941-14.059l83.882-83.882A48 48 0 0 0 448 348.106zm-128 80v-76.118h76.118L320 428.106zM400 80v223.988H296c-13.255 0-24 10.745-24 24v104H48V80h352z" ], + "stop-circle": [ 512, 512, [], "f28d", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm296-80v160c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16z" ], + sun: [ 512, 512, [], "f185", "M220.116 487.936l-20.213-49.425a3.992 3.992 0 0 0-5.808-1.886l-45.404 28.104c-29.466 18.24-66.295-8.519-58.054-42.179l12.699-51.865a3.993 3.993 0 0 0-3.59-4.941l-53.251-3.951c-34.554-2.562-48.632-45.855-22.174-68.247L65.08 259.05a3.992 3.992 0 0 0 0-6.106l-40.76-34.497c-26.45-22.384-12.39-65.682 22.174-68.246l53.251-3.951a3.993 3.993 0 0 0 3.59-4.941L90.637 89.443c-8.239-33.656 28.581-60.42 58.054-42.179l45.403 28.104a3.993 3.993 0 0 0 5.808-1.887l20.213-49.425c13.116-32.071 58.638-32.081 71.758 0l20.212 49.424a3.994 3.994 0 0 0 5.809 1.887l45.403-28.104c29.464-18.236 66.297 8.513 58.054 42.179l-12.699 51.865a3.995 3.995 0 0 0 3.59 4.941l53.251 3.951c34.553 2.563 48.633 45.854 22.175 68.246l-40.76 34.497a3.993 3.993 0 0 0 0 6.107l40.76 34.496c26.511 22.441 12.322 65.689-22.175 68.247l-53.251 3.951a3.993 3.993 0 0 0-3.589 4.942l12.698 51.864c8.241 33.658-28.583 60.421-58.054 42.18l-45.403-28.104a3.994 3.994 0 0 0-5.809 1.887l-20.212 49.424c-13.159 32.178-58.675 31.993-71.757 0zm16.814-64.568l19.064 46.616 19.064-46.615c10.308-25.2 40.778-35.066 63.892-20.759l42.822 26.507-11.976-48.919c-6.475-26.444 12.38-52.339 39.487-54.349l50.226-3.726-38.444-32.536c-20.782-17.591-20.747-49.621.001-67.18l38.442-32.536-50.225-3.727c-27.151-2.015-45.95-27.948-39.488-54.349l11.978-48.919-42.823 26.507c-23.151 14.327-53.603 4.4-63.892-20.76l-19.064-46.615-19.064 46.617c-10.305 25.198-40.778 35.066-63.891 20.76l-42.823-26.508 11.977 48.918c6.474 26.446-12.381 52.338-39.488 54.35l-50.224 3.726 38.443 32.537c20.782 17.588 20.747 49.619 0 67.178L52.48 322.123l50.226 3.726c27.151 2.014 45.95 27.947 39.487 54.349l-11.977 48.919 42.823-26.507c23.188-14.355 53.622-4.352 63.891 20.758zM256 384c-70.58 0-128-57.421-128-128 0-70.58 57.42-128 128-128 70.579 0 128 57.42 128 128 0 70.579-57.421 128-128 128zm0-208c-44.112 0-80 35.888-80 80s35.888 80 80 80 80-35.888 80-80-35.888-80-80-80z" ], + surprise: [ 496, 512, [], "f5c2", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-176c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm-48-72c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" ], + "thumbs-down": [ 512, 512, [], "f165", "M466.27 225.31c4.674-22.647.864-44.538-8.99-62.99 2.958-23.868-4.021-48.565-17.34-66.99C438.986 39.423 404.117 0 327 0c-7 0-15 .01-22.22.01C201.195.01 168.997 40 128 40h-10.845c-5.64-4.975-13.042-8-21.155-8H32C14.327 32 0 46.327 0 64v240c0 17.673 14.327 32 32 32h64c11.842 0 22.175-6.438 27.708-16h7.052c19.146 16.953 46.013 60.653 68.76 83.4 13.667 13.667 10.153 108.6 71.76 108.6 57.58 0 95.27-31.936 95.27-104.73 0-18.41-3.93-33.73-8.85-46.54h36.48c48.602 0 85.82-41.565 85.82-85.58 0-19.15-4.96-34.99-13.73-49.84zM64 296c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm330.18 16.73H290.19c0 37.82 28.36 55.37 28.36 94.54 0 23.75 0 56.73-47.27 56.73-18.91-18.91-9.46-66.18-37.82-94.54C206.9 342.89 167.28 272 138.92 272H128V85.83c53.611 0 100.001-37.82 171.64-37.82h37.82c35.512 0 60.82 17.12 53.12 65.9 15.2 8.16 26.5 36.44 13.94 57.57 21.581 20.384 18.699 51.065 5.21 65.62 9.45 0 22.36 18.91 22.27 37.81-.09 18.91-16.71 37.82-37.82 37.82z" ], + "thumbs-up": [ 512, 512, [], "f164", "M466.27 286.69C475.04 271.84 480 256 480 236.85c0-44.015-37.218-85.58-85.82-85.58H357.7c4.92-12.81 8.85-28.13 8.85-46.54C366.55 31.936 328.86 0 271.28 0c-61.607 0-58.093 94.933-71.76 108.6-22.747 22.747-49.615 66.447-68.76 83.4H32c-17.673 0-32 14.327-32 32v240c0 17.673 14.327 32 32 32h64c14.893 0 27.408-10.174 30.978-23.95 44.509 1.001 75.06 39.94 177.802 39.94 7.22 0 15.22.01 22.22.01 77.117 0 111.986-39.423 112.94-95.33 13.319-18.425 20.299-43.122 17.34-66.99 9.854-18.452 13.664-40.343 8.99-62.99zm-61.75 53.83c12.56 21.13 1.26 49.41-13.94 57.57 7.7 48.78-17.608 65.9-53.12 65.9h-37.82c-71.639 0-118.029-37.82-171.64-37.82V240h10.92c28.36 0 67.98-70.89 94.54-97.46 28.36-28.36 18.91-75.63 37.82-94.54 47.27 0 47.27 32.98 47.27 56.73 0 39.17-28.36 56.72-28.36 94.54h103.99c21.11 0 37.73 18.91 37.82 37.82.09 18.9-12.82 37.81-22.27 37.81 13.489 14.555 16.371 45.236-5.21 65.62zM88 432c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z" ], + "times-circle": [ 512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm101.8-262.2L295.6 256l62.2 62.2c4.7 4.7 4.7 12.3 0 17l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L256 295.6l-62.2 62.2c-4.7 4.7-12.3 4.7-17 0l-22.6-22.6c-4.7-4.7-4.7-12.3 0-17l62.2-62.2-62.2-62.2c-4.7-4.7-4.7-12.3 0-17l22.6-22.6c4.7-4.7 12.3-4.7 17 0l62.2 62.2 62.2-62.2c4.7-4.7 12.3-4.7 17 0l22.6 22.6c4.7 4.7 4.7 12.3 0 17z" ], + tired: [ 496, 512, [], "f5c8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm129.1-303.8c-3.8-4.4-10.3-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.8 1.6 15.3-2.5 3.8-4.5 3.9-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zM220 208c0-4.2-2.2-8.1-5.8-10.3l-80-48c-5-3-11.5-1.9-15.3 2.5-3.8 4.5-3.9 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.5 4.1 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3zm28 64c-45.4 0-100.9 38.3-107.8 93.3-1.5 11.8 6.9 21.6 15.5 17.9C178.4 373.5 212 368 248 368s69.6 5.5 92.3 15.2c8.5 3.7 17-6 15.5-17.9-6.9-55-62.4-93.3-107.8-93.3z" ], + "trash-alt": [ 448, 512, [], "f2ed", "M192 188v216c0 6.627-5.373 12-12 12h-24c-6.627 0-12-5.373-12-12V188c0-6.627 5.373-12 12-12h24c6.627 0 12 5.373 12 12zm100-12h-24c-6.627 0-12 5.373-12 12v216c0 6.627 5.373 12 12 12h24c6.627 0 12-5.373 12-12V188c0-6.627-5.373-12-12-12zm132-96c13.255 0 24 10.745 24 24v12c0 6.627-5.373 12-12 12h-20v336c0 26.51-21.49 48-48 48H80c-26.51 0-48-21.49-48-48V128H12c-6.627 0-12-5.373-12-12v-12c0-13.255 10.745-24 24-24h74.411l34.018-56.696A48 48 0 0 1 173.589 0h100.823a48 48 0 0 1 41.16 23.304L349.589 80H424zm-269.611 0h139.223L276.16 50.913A6 6 0 0 0 271.015 48h-94.028a6 6 0 0 0-5.145 2.913L154.389 80zM368 128H80v330a6 6 0 0 0 6 6h276a6 6 0 0 0 6-6V128z" ], + user: [ 448, 512, [], "f007", "M313.6 304c-28.7 0-42.5 16-89.6 16-47.1 0-60.8-16-89.6-16C60.2 304 0 364.2 0 438.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-25.6c0-74.2-60.2-134.4-134.4-134.4zM400 464H48v-25.6c0-47.6 38.8-86.4 86.4-86.4 14.6 0 38.3 16 89.6 16 51.7 0 74.9-16 89.6-16 47.6 0 86.4 38.8 86.4 86.4V464zM224 288c79.5 0 144-64.5 144-144S303.5 0 224 0 80 64.5 80 144s64.5 144 144 144zm0-240c52.9 0 96 43.1 96 96s-43.1 96-96 96-96-43.1-96-96 43.1-96 96-96z" ], + "user-circle": [ 496, 512, [], "f2bd", "M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z" ], + "window-close": [ 512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v340zM356.5 194.6L295.1 256l61.4 61.4c4.6 4.6 4.6 12.1 0 16.8l-22.3 22.3c-4.6 4.6-12.1 4.6-16.8 0L256 295.1l-61.4 61.4c-4.6 4.6-12.1 4.6-16.8 0l-22.3-22.3c-4.6-4.6-4.6-12.1 0-16.8l61.4-61.4-61.4-61.4c-4.6-4.6-4.6-12.1 0-16.8l22.3-22.3c4.6-4.6 12.1-4.6 16.8 0l61.4 61.4 61.4-61.4c4.6-4.6 12.1-4.6 16.8 0l22.3 22.3c4.7 4.6 4.7 12.1 0 16.8z" ], + "window-maximize": [ 512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V192h416v234z" ], + "window-minimize": [ 512, 512, [], "f2d1", "M480 480H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h448c17.7 0 32 14.3 32 32s-14.3 32-32 32z" ], + "window-restore": [ 512, 512, [], "f2d2", "M464 0H144c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-96 464H48V256h320v208zm96-96h-48V144c0-26.5-21.5-48-48-48H144V48h320v320z" ] + }; + !function(c) { + try { + c(); + } catch (c) { + if (!m) throw c; + } + }(function() { + !function c(z, l) { + var h = Object.keys(l).reduce(function(c, z) { + var h = l[z]; + return h.icon ? c[h.iconName] = h.icon : c[z] = h, c; + }, {}); + "function" == typeof V.hooks.addPack ? V.hooks.addPack(z, h) : V.styles[z] = H({}, V.styles[z] || {}, h), + "fas" === z && c("fa", l); + }("far", C); + }); +}(); \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-solid.js b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-solid.js new file mode 100644 index 0000000000..bc0aaac807 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-solid.js @@ -0,0 +1,865 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +(function () { +'use strict'; + +var _WINDOW = {}; +try { + if (typeof window !== 'undefined') _WINDOW = window; + +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; + + + + + +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; + + + + + + + + + +var PRODUCTION = function () { + try { + return undefined === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + + + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var icons = { + "address-book": [448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"], + "address-card": [576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-352 96c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H86.4C74 384 64 375.4 64 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2zM512 312c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z"], + "adjust": [512, 512, [], "f042", "M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z"], + "align-center": [448, 512, [], "f037", "M352 44v40c0 8.837-7.163 16-16 16H112c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h224c8.837 0 16 7.163 16 16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm320-200H112c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z"], + "align-justify": [448, 512, [], "f039", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm16 144h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0-128h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"], + "align-left": [448, 512, [], "f036", "M288 44v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16zM0 172v40c0 8.837 7.163 16 16 16h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16zm16 312h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm256-200H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z"], + "align-right": [448, 512, [], "f038", "M160 84V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H176c-8.837 0-16-7.163-16-16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"], + "allergies": [448, 512, [], "f461", "M416 112c-17.6 0-32 14.4-32 32v72c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v152c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V32c0-17.6-14.4-32-32-32s-32 14.4-32 32v184c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32S96 46.4 96 64v241l-23.6-32.5c-13-17.9-38-21.8-55.9-8.8s-21.8 38-8.8 55.9l125.6 172.7c9 12.4 23.5 19.8 38.8 19.8h197.6c22.3 0 41.6-15.3 46.7-37l26.5-112.7c3.2-13.7 4.9-28.3 5.1-42.3V144c0-17.6-14.4-32-32-32zM176 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 32c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32-128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"], + "ambulance": [640, 512, [], "f0f9", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm144-248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm176 248c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"], + "american-sign-language-interpreting": [640, 512, [], "f2a3", "M290.547 189.039c-20.295-10.149-44.147-11.199-64.739-3.89 42.606 0 71.208 20.475 85.578 50.576 8.576 17.899-5.148 38.071-23.617 38.071 18.429 0 32.211 20.136 23.617 38.071-14.725 30.846-46.123 50.854-80.298 50.854-.557 0-94.471-8.615-94.471-8.615l-66.406 33.347c-9.384 4.693-19.815.379-23.895-7.781L1.86 290.747c-4.167-8.615-1.111-18.897 6.946-23.621l58.072-33.069L108 159.861c6.39-57.245 34.731-109.767 79.743-146.726 11.391-9.448 28.341-7.781 37.51 3.613 9.446 11.394 7.78 28.067-3.612 37.516-12.503 10.559-23.618 22.509-32.509 35.57 21.672-14.729 46.679-24.732 74.186-28.067 14.725-1.945 28.063 8.336 29.73 23.065 1.945 14.728-8.336 28.067-23.062 29.734-16.116 1.945-31.12 7.503-44.178 15.284 26.114-5.713 58.712-3.138 88.079 11.115 13.336 6.669 18.893 22.509 12.224 35.848-6.389 13.06-22.504 18.617-35.564 12.226zm-27.229 69.472c-6.112-12.505-18.338-20.286-32.231-20.286a35.46 35.46 0 0 0-35.565 35.57c0 21.428 17.808 35.57 35.565 35.57 13.893 0 26.119-7.781 32.231-20.286 4.446-9.449 13.614-15.006 23.339-15.284-9.725-.277-18.893-5.835-23.339-15.284zm374.821-37.237c4.168 8.615 1.111 18.897-6.946 23.621l-58.071 33.069L532 352.16c-6.39 57.245-34.731 109.767-79.743 146.726-10.932 9.112-27.799 8.144-37.51-3.613-9.446-11.394-7.78-28.067 3.613-37.516 12.503-10.559 23.617-22.509 32.508-35.57-21.672 14.729-46.679 24.732-74.186 28.067-10.021 2.506-27.552-5.643-29.73-23.065-1.945-14.728 8.336-28.067 23.062-29.734 16.116-1.946 31.12-7.503 44.178-15.284-26.114 5.713-58.712 3.138-88.079-11.115-13.336-6.669-18.893-22.509-12.224-35.848 6.389-13.061 22.505-18.619 35.565-12.227 20.295 10.149 44.147 11.199 64.739 3.89-42.606 0-71.208-20.475-85.578-50.576-8.576-17.899 5.148-38.071 23.617-38.071-18.429 0-32.211-20.136-23.617-38.071 14.033-29.396 44.039-50.887 81.966-50.854l92.803 8.615 66.406-33.347c9.408-4.704 19.828-.354 23.894 7.781l44.455 88.926zm-229.227-18.618c-13.893 0-26.119 7.781-32.231 20.286-4.446 9.449-13.614 15.006-23.339 15.284 9.725.278 18.893 5.836 23.339 15.284 6.112 12.505 18.338 20.286 32.231 20.286a35.46 35.46 0 0 0 35.565-35.57c0-21.429-17.808-35.57-35.565-35.57z"], + "anchor": [576, 512, [], "f13d", "M12.971 352h32.394C67.172 454.735 181.944 512 288 512c106.229 0 220.853-57.38 242.635-160h32.394c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0l-67.029 67.029c-7.56 7.56-2.206 20.485 8.485 20.485h35.146c-20.29 54.317-84.963 86.588-144.117 94.015V256h52c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-52v-5.47c37.281-13.178 63.995-48.725 64-90.518C384.005 43.772 341.605.738 289.37.01 235.723-.739 192 42.525 192 96c0 41.798 26.716 77.35 64 90.53V192h-52c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v190.015c-58.936-7.399-123.82-39.679-144.117-94.015h35.146c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0L4.485 331.515C-3.074 339.074 2.28 352 12.971 352zM288 64c17.645 0 32 14.355 32 32s-14.355 32-32 32-32-14.355-32-32 14.355-32 32-32z"], + "angle-double-down": [320, 512, [], "f103", "M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z"], + "angle-double-left": [448, 512, [], "f100", "M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z"], + "angle-double-right": [448, 512, [], "f101", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z"], + "angle-double-up": [320, 512, [], "f102", "M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z"], + "angle-down": [320, 512, [], "f107", "M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"], + "angle-left": [256, 512, [], "f104", "M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"], + "angle-right": [256, 512, [], "f105", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"], + "angle-up": [320, 512, [], "f106", "M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z"], + "angry": [496, 512, [], "f556", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 240c0-9.3 4.1-17.5 10.5-23.4l-31-9.3c-8.5-2.5-13.3-11.5-10.7-19.9 2.5-8.5 11.4-13.2 19.9-10.7l80 24c8.5 2.5 13.3 11.5 10.7 19.9-2.1 6.9-8.4 11.4-15.3 11.4-.5 0-1.1-.2-1.7-.2.7 2.7 1.7 5.3 1.7 8.2 0 17.7-14.3 32-32 32S136 257.7 136 240zm168 154.2c-27.8-33.4-84.2-33.4-112.1 0-13.5 16.3-38.2-4.2-24.6-20.5 20-24 49.4-37.8 80.6-37.8s60.6 13.8 80.6 37.8c13.8 16.5-11.1 36.6-24.5 20.5zm76.6-186.9l-31 9.3c6.3 5.8 10.5 14.1 10.5 23.4 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-2.9.9-5.6 1.7-8.2-.6.1-1.1.2-1.7.2-6.9 0-13.2-4.5-15.3-11.4-2.5-8.5 2.3-17.4 10.7-19.9l80-24c8.4-2.5 17.4 2.3 19.9 10.7 2.5 8.5-2.3 17.4-10.8 19.9z"], + "archive": [512, 512, [], "f187", "M32 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160H32v288zm160-212c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v8c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-8zM480 32H32C14.3 32 0 46.3 0 64v48c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16V64c0-17.7-14.3-32-32-32z"], + "archway": [576, 512, [], "f557", "M560 448h-16V96H32v352H16.02c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16H176c8.84 0 16-7.16 16-16V320c0-53.02 42.98-96 96-96s96 42.98 96 96l.02 160v16c0 8.84 7.16 16 16 16H560c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm0-448H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h544c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16z"], + "arrow-alt-circle-down": [512, 512, [], "f358", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM212 140v116h-70.9c-10.7 0-16.1 13-8.5 20.5l114.9 114.3c4.7 4.7 12.2 4.7 16.9 0l114.9-114.3c7.6-7.6 2.2-20.5-8.5-20.5H300V140c0-6.6-5.4-12-12-12h-64c-6.6 0-12 5.4-12 12z"], + "arrow-alt-circle-left": [512, 512, [], "f359", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z"], + "arrow-alt-circle-right": [512, 512, [], "f35a", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z"], + "arrow-alt-circle-up": [512, 512, [], "f35b", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm292 116V256h70.9c10.7 0 16.1-13 8.5-20.5L264.5 121.2c-4.7-4.7-12.2-4.7-16.9 0l-115 114.3c-7.6 7.6-2.2 20.5 8.5 20.5H212v116c0 6.6 5.4 12 12 12h64c6.6 0 12-5.4 12-12z"], + "arrow-circle-down": [512, 512, [], "f0ab", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-143.6-28.9L288 302.6V120c0-13.3-10.7-24-24-24h-16c-13.3 0-24 10.7-24 24v182.6l-72.4-75.5c-9.3-9.7-24.8-9.9-34.3-.4l-10.9 11c-9.4 9.4-9.4 24.6 0 33.9L239 404.3c9.4 9.4 24.6 9.4 33.9 0l132.7-132.7c9.4-9.4 9.4-24.6 0-33.9l-10.9-11c-9.5-9.5-25-9.3-34.3.4z"], + "arrow-circle-left": [512, 512, [], "f0a8", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm28.9-143.6L209.4 288H392c13.3 0 24-10.7 24-24v-16c0-13.3-10.7-24-24-24H209.4l75.5-72.4c9.7-9.3 9.9-24.8.4-34.3l-11-10.9c-9.4-9.4-24.6-9.4-33.9 0L107.7 239c-9.4 9.4-9.4 24.6 0 33.9l132.7 132.7c9.4 9.4 24.6 9.4 33.9 0l11-10.9c9.5-9.5 9.3-25-.4-34.3z"], + "arrow-circle-right": [512, 512, [], "f0a9", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28.9 143.6l75.5 72.4H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h182.6l-75.5 72.4c-9.7 9.3-9.9 24.8-.4 34.3l11 10.9c9.4 9.4 24.6 9.4 33.9 0L404.3 273c9.4-9.4 9.4-24.6 0-33.9L271.6 106.3c-9.4-9.4-24.6-9.4-33.9 0l-11 10.9c-9.5 9.6-9.3 25.1.4 34.4z"], + "arrow-circle-up": [512, 512, [], "f0aa", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z"], + "arrow-down": [448, 512, [], "f063", "M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z"], + "arrow-left": [448, 512, [], "f060", "M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z"], + "arrow-right": [448, 512, [], "f061", "M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z"], + "arrow-up": [448, 512, [], "f062", "M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z"], + "arrows-alt": [512, 512, [], "f0b2", "M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z"], + "arrows-alt-h": [512, 512, [], "f337", "M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z"], + "arrows-alt-v": [256, 512, [], "f338", "M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z"], + "assistive-listening-systems": [512, 512, [], "f2a2", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z"], + "asterisk": [512, 512, [], "f069", "M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z"], + "at": [512, 512, [], "f1fa", "M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z"], + "atlas": [448, 512, [], "f558", "M318.38 208h-39.09c-1.49 27.03-6.54 51.35-14.21 70.41 27.71-13.24 48.02-39.19 53.3-70.41zm0-32c-5.29-31.22-25.59-57.17-53.3-70.41 7.68 19.06 12.72 43.38 14.21 70.41h39.09zM224 97.31c-7.69 7.45-20.77 34.42-23.43 78.69h46.87c-2.67-44.26-15.75-71.24-23.44-78.69zm-41.08 8.28c-27.71 13.24-48.02 39.19-53.3 70.41h39.09c1.49-27.03 6.53-51.35 14.21-70.41zm0 172.82c-7.68-19.06-12.72-43.38-14.21-70.41h-39.09c5.28 31.22 25.59 57.17 53.3 70.41zM247.43 208h-46.87c2.66 44.26 15.74 71.24 23.43 78.69 7.7-7.45 20.78-34.43 23.44-78.69zM448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM224 64c70.69 0 128 57.31 128 128s-57.31 128-128 128S96 262.69 96 192 153.31 64 224 64zm160 384H96c-19.2 0-32-12.8-32-32s16-32 32-32h288v64z"], + "audio-description": [512, 512, [], "f29e", "M162.925 238.709l8.822 30.655h-25.606l9.041-30.652c1.277-4.421 2.651-9.994 3.872-15.245 1.22 5.251 2.594 10.823 3.871 15.242zm166.474-32.099h-14.523v98.781h14.523c29.776 0 46.175-17.678 46.175-49.776 0-32.239-17.49-49.005-46.175-49.005zM512 112v288c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48zM245.459 336.139l-57.097-168A12.001 12.001 0 0 0 177 160h-35.894a12.001 12.001 0 0 0-11.362 8.139l-57.097 168C70.003 343.922 75.789 352 84.009 352h29.133a12 12 0 0 0 11.535-8.693l8.574-29.906h51.367l8.793 29.977A12 12 0 0 0 204.926 352h29.172c8.22 0 14.006-8.078 11.361-15.861zm184.701-80.525c0-58.977-37.919-95.614-98.96-95.614h-57.366c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12H331.2c61.041 0 98.96-36.933 98.96-96.386z"], + "award": [384, 512, [], "f559", "M97.12 362.63l-5.3-5.3a9.004 9.004 0 0 0-4.02-2.32L72 350.77c-9.51-2.55-17.87-7.45-25.43-13.32L1.2 448.7c-4.39 10.77 3.81 22.47 15.43 22.03l52.69-2.01L105.56 507c8 8.44 22.04 5.81 26.43-4.96l52.05-127.62c-10.84 6.04-22.87 9.58-35.31 9.58-19.5 0-37.82-7.59-51.61-21.37zM382.8 448.7l-45.37-111.24c-7.56 5.88-15.92 10.77-25.43 13.32l-15.8 4.23a9.004 9.004 0 0 0-4.02 2.32l-5.3 5.3C273.09 376.41 254.76 384 235.26 384c-12.44 0-24.47-3.55-35.31-9.58L252 502.04c4.39 10.77 18.44 13.4 26.43 4.96l36.25-38.28 52.69 2.01c11.62.44 19.82-11.27 15.43-22.03zM263 340l5.21-5.3c5-5.09 11.22-8.75 18.05-10.61l15.53-4.23c13.89-3.79 24.75-14.84 28.47-28.98l4.16-15.81a41.145 41.145 0 0 1 10.42-18.37l11.37-11.57c10.17-10.35 14.14-25.44 10.42-39.58l-4.16-15.81a41.657 41.657 0 0 1 0-21.21l4.16-15.81c3.72-14.14-.25-29.23-10.42-39.58l-11.37-11.57c-5-5.09-8.59-11.42-10.42-18.37l-4.16-15.8c-3.72-14.14-14.58-25.19-28.47-28.98l-15.53-4.24c-6.83-1.86-13.05-5.52-18.05-10.61L256.84 12c-10.17-10.35-25-14.4-38.89-10.61l-15.53 4.24a39.614 39.614 0 0 1-20.84 0L166.05 1.4c-13.89-3.79-28.72.25-38.89 10.61l-11.37 11.57c-5 5.09-11.22 8.74-18.05 10.61l-15.53 4.24c-13.89 3.79-24.75 14.84-28.47 28.98l-4.16 15.8a41.145 41.145 0 0 1-10.42 18.37l-11.37 11.57c-10.17 10.35-14.15 25.44-10.42 39.58l4.16 15.8a41.657 41.657 0 0 1 0 21.21l-4.16 15.8c-3.72 14.14.25 29.23 10.42 39.59l11.37 11.57c5 5.09 8.59 11.42 10.42 18.37l4.16 15.8c3.72 14.14 14.58 25.19 28.47 28.98l15.53 4.23c6.83 1.86 13.05 5.52 18.05 10.61L121 340c13.23 13.47 33.84 15.88 49.74 5.82a39.676 39.676 0 0 1 42.53 0c15.89 10.06 36.5 7.65 49.73-5.82zM97.66 175.96c0-53.03 42.24-96.02 94.34-96.02s94.34 42.99 94.34 96.02-42.24 96.02-94.34 96.02-94.34-42.99-94.34-96.02z"], + "backspace": [640, 512, [], "f55a", "M576 64H205.26A63.97 63.97 0 0 0 160 82.75L9.37 233.37c-12.5 12.5-12.5 32.76 0 45.25L160 429.25c12 12 28.28 18.75 45.25 18.75H576c35.35 0 64-28.65 64-64V128c0-35.35-28.65-64-64-64zm-84.69 254.06c6.25 6.25 6.25 16.38 0 22.63l-22.62 22.62c-6.25 6.25-16.38 6.25-22.63 0L384 301.25l-62.06 62.06c-6.25 6.25-16.38 6.25-22.63 0l-22.62-22.62c-6.25-6.25-6.25-16.38 0-22.63L338.75 256l-62.06-62.06c-6.25-6.25-6.25-16.38 0-22.63l22.62-22.62c6.25-6.25 16.38-6.25 22.63 0L384 210.75l62.06-62.06c6.25-6.25 16.38-6.25 22.63 0l22.62 22.62c6.25 6.25 6.25 16.38 0 22.63L429.25 256l62.06 62.06z"], + "backward": [512, 512, [], "f04a", "M11.5 280.6l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2zm256 0l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2z"], + "balance-scale": [640, 512, [], "f24e", "M256 336h-.02c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0C-2.06 328.75.02 320.33.02 336H0c0 44.18 57.31 80 128 80s128-35.82 128-80zM128 176l72 144H56l72-144zm511.98 160c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 320l72-144 72 144H440zm88 128H352V153.25c23.51-10.29 41.16-31.48 46.39-57.25H528c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H383.64C369.04 12.68 346.09 0 320 0s-49.04 12.68-63.64 32H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h129.61c5.23 25.76 22.87 46.96 46.39 57.25V448H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"], + "ban": [512, 512, [], "f05e", "M256 8C119.034 8 8 119.033 8 256s111.034 248 248 248 248-111.034 248-248S392.967 8 256 8zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676zM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676z"], + "band-aid": [640, 512, [], "f462", "M0 160v192c0 35.3 28.7 64 64 64h96V96H64c-35.3 0-64 28.7-64 64zm576-64h-96v320h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64zM192 416h256V96H192v320zm176-232c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24z"], + "barcode": [512, 512, [], "f02a", "M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z"], + "bars": [448, 512, [], "f0c9", "M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"], + "baseball-ball": [496, 512, [], "f433", "M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z"], + "basketball-ball": [496, 512, [], "f434", "M212.3 10.3c-43.8 6.3-86.2 24.1-122.2 53.8l77.4 77.4c27.8-35.8 43.3-81.2 44.8-131.2zM248 222L405.9 64.1c-42.4-35-93.6-53.5-145.5-56.1-1.2 63.9-21.5 122.3-58.7 167.7L248 222zM56.1 98.1c-29.7 36-47.5 78.4-53.8 122.2 50-1.5 95.5-17 131.2-44.8L56.1 98.1zm272.2 204.2c45.3-37.1 103.7-57.4 167.7-58.7-2.6-51.9-21.1-103.1-56.1-145.5L282 256l46.3 46.3zM248 290L90.1 447.9c42.4 34.9 93.6 53.5 145.5 56.1 1.3-64 21.6-122.4 58.7-167.7L248 290zm191.9 123.9c29.7-36 47.5-78.4 53.8-122.2-50.1 1.6-95.5 17.1-131.2 44.8l77.4 77.4zM167.7 209.7C122.3 246.9 63.9 267.3 0 268.4c2.6 51.9 21.1 103.1 56.1 145.5L214 256l-46.3-46.3zm116 292c43.8-6.3 86.2-24.1 122.2-53.8l-77.4-77.4c-27.7 35.7-43.2 81.2-44.8 131.2z"], + "bath": [512, 512, [], "f2cd", "M488 256H80V112c0-17.645 14.355-32 32-32 11.351 0 21.332 5.945 27.015 14.88-16.492 25.207-14.687 59.576 6.838 83.035-4.176 4.713-4.021 11.916.491 16.428l11.314 11.314c4.686 4.686 12.284 4.686 16.971 0l95.03-95.029c4.686-4.686 4.686-12.284 0-16.971l-11.314-11.314c-4.512-4.512-11.715-4.666-16.428-.491-17.949-16.469-42.294-21.429-64.178-15.365C163.281 45.667 139.212 32 112 32c-44.112 0-80 35.888-80 80v144h-8c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h8v32c0 28.43 12.362 53.969 32 71.547V456c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-8h256v8c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-32.453c19.638-17.578 32-43.117 32-71.547v-32h8c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z"], + "battery-empty": [640, 512, [], "f244", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48z"], + "battery-full": [640, 512, [], "f240", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-48 96H96v128h416V192z"], + "battery-half": [640, 512, [], "f242", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-240 96H96v128h224V192z"], + "battery-quarter": [640, 512, [], "f243", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-336 96H96v128h128V192z"], + "battery-three-quarters": [640, 512, [], "f241", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-144 96H96v128h320V192z"], + "bed": [640, 512, [], "f236", "M176 256c44.11 0 80-35.89 80-80s-35.89-80-80-80-80 35.89-80 80 35.89 80 80 80zm352-128H304c-8.84 0-16 7.16-16 16v144H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v352c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h512v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V240c0-61.86-50.14-112-112-112z"], + "beer": [448, 512, [], "f0fc", "M368 96h-48V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24v-42.11l80.606-35.977C429.396 365.063 448 336.388 448 304.86V176c0-44.112-35.888-80-80-80zm16 208.86a16.018 16.018 0 0 1-9.479 14.611L320 343.805V160h48c8.822 0 16 7.178 16 16v128.86zM208 384c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16zm-96 0c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16z"], + "bell": [448, 512, [], "f0f3", "M433.884 366.059C411.634 343.809 384 316.118 384 208c0-79.394-57.831-145.269-133.663-157.83A31.845 31.845 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 6.75 2.095 13.008 5.663 18.17C121.831 62.731 64 128.606 64 208c0 108.118-27.643 135.809-49.893 158.059C-16.042 396.208 5.325 448 48.048 448H160c0 35.346 28.654 64 64 64s64-28.654 64-64h111.943c42.638 0 64.151-51.731 33.941-81.941zM224 472a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16c0 13.234 10.766 24 24 24z"], + "bell-slash": [576, 512, [], "f1f6", "M78.107 366.059C47.958 396.208 69.325 448 112.048 448H224c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h32.685L127.848 221.379c-2.198 97.078-28.439 123.378-49.741 144.68zM264 448c0 13.234 10.766 24 24 24a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16zm305.896 43.733l-10.762 12.086c-8.915 10.012-24.333 10.967-34.437 2.133L8.256 54.393C-1.848 45.558-2.811 30.28 6.104 20.267L16.865 8.181C25.781-1.831 41.199-2.786 51.303 6.049l113.81 99.512c24.017-28.778 57.946-48.996 96.55-55.39A31.85 31.85 0 0 1 256 32c0-17.673 14.327-32 32-32s32 14.327 32 32c0 6.75-2.095 13.008-5.663 18.17C390.169 62.731 448 128.606 448 208c0 108.118 27.634 135.809 49.884 158.059 12.149 12.149 15.923 27.776 13.33 42.121l56.53 49.427c10.104 8.835 11.067 24.113 2.152 34.126z"], + "bezier-curve": [640, 512, [], "f55b", "M368 32h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM208 88h-84.75C113.75 64.56 90.84 48 64 48 28.66 48 0 76.65 0 112s28.66 64 64 64c26.84 0 49.75-16.56 59.25-40h79.73c-55.37 32.52-95.86 87.32-109.54 152h49.4c11.3-41.61 36.77-77.21 71.04-101.56-3.7-8.08-5.88-16.99-5.88-26.44V88zm-48 232H64c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zM576 48c-26.84 0-49.75 16.56-59.25 40H432v72c0 9.45-2.19 18.36-5.88 26.44 34.27 24.35 59.74 59.95 71.04 101.56h49.4c-13.68-64.68-54.17-119.48-109.54-152h79.73c9.5 23.44 32.41 40 59.25 40 35.34 0 64-28.65 64-64s-28.66-64-64-64zm0 272h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"], + "bicycle": [640, 512, [], "f206", "M512.509 192.001c-16.373-.064-32.03 2.955-46.436 8.495l-77.68-125.153A24 24 0 0 0 368.001 64h-64c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h50.649l14.896 24H256.002v-16c0-8.837-7.163-16-16-16h-87.459c-13.441 0-24.777 10.999-24.536 24.437.232 13.044 10.876 23.563 23.995 23.563h48.726l-29.417 47.52c-13.433-4.83-27.904-7.483-42.992-7.52C58.094 191.83.412 249.012.002 319.236-.413 390.279 57.055 448 128.002 448c59.642 0 109.758-40.793 123.967-96h52.033a24 24 0 0 0 20.406-11.367L410.37 201.77l14.938 24.067c-25.455 23.448-41.385 57.081-41.307 94.437.145 68.833 57.899 127.051 126.729 127.719 70.606.685 128.181-55.803 129.255-125.996 1.086-70.941-56.526-129.72-127.476-129.996zM186.75 265.772c9.727 10.529 16.673 23.661 19.642 38.228h-43.306l23.664-38.228zM128.002 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c5.869 0 11.586.653 17.099 1.859l-45.505 73.509C89.715 331.327 101.213 352 120.002 352h81.3c-12.37 28.225-40.562 48-73.3 48zm162.63-96h-35.624c-3.96-31.756-19.556-59.894-42.383-80.026L237.371 184h127.547l-74.286 120zm217.057 95.886c-41.036-2.165-74.049-35.692-75.627-76.755-.812-21.121 6.633-40.518 19.335-55.263l44.433 71.586c4.66 7.508 14.524 9.816 22.032 5.156l13.594-8.437c7.508-4.66 9.817-14.524 5.156-22.032l-44.468-71.643a79.901 79.901 0 0 1 19.858-2.497c44.112 0 80 35.888 80 80-.001 45.54-38.252 82.316-84.313 79.885z"], + "binoculars": [512, 512, [], "f1e5", "M192 104H96V56c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24v48zm224-48c0-13.255-10.745-24-24-24h-48c-13.255 0-24 10.745-24 24v48h96V56zM0 456c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H0v16zm88-328c-13.255 0-24 10.745-24 24C64 256 0 272 0 416h168V312c0-13.255 10.745-24 24-24V128H88zm256 328c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H344v16zM216 128v160h80V128h-80zm128 288h168c0-144-64-160-64-264 0-13.255-10.745-24-24-24H320v160c13.255 0 24 10.745 24 24v104z"], + "birthday-cake": [448, 512, [], "f1fd", "M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z"], + "blender": [512, 512, [], "f517", "M416 384H160c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-128 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm40-416h166.54L512 0H48C21.49 0 0 21.49 0 48v160c0 26.51 21.49 48 48 48h103.27l8.73 96h256l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H328c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM64 192V64h69.82l11.64 128H64z"], + "blind": [384, 512, [], "f29d", "M380.15 510.837a8 8 0 0 1-10.989-2.687l-125.33-206.427a31.923 31.923 0 0 0 12.958-9.485l126.048 207.608a8 8 0 0 1-2.687 10.991zM142.803 314.338l-32.54 89.485 36.12 88.285c6.693 16.36 25.377 24.192 41.733 17.501 16.357-6.692 24.193-25.376 17.501-41.734l-62.814-153.537zM96 88c24.301 0 44-19.699 44-44S120.301 0 96 0 52 19.699 52 44s19.699 44 44 44zm154.837 169.128l-120-152c-4.733-5.995-11.75-9.108-18.837-9.112V96H80v.026c-7.146.003-14.217 3.161-18.944 9.24L0 183.766v95.694c0 13.455 11.011 24.791 24.464 24.536C37.505 303.748 48 293.1 48 280v-79.766l16-20.571v140.698L9.927 469.055c-6.04 16.609 2.528 34.969 19.138 41.009 16.602 6.039 34.968-2.524 41.009-19.138L136 309.638V202.441l-31.406-39.816a4 4 0 1 1 6.269-4.971l102.3 129.217c9.145 11.584 24.368 11.339 33.708 3.965 10.41-8.216 12.159-23.334 3.966-33.708z"], + "bold": [384, 512, [], "f032", "M304.793 243.891c33.639-18.537 53.657-54.16 53.657-95.693 0-48.236-26.25-87.626-68.626-104.179C265.138 34.01 240.849 32 209.661 32H24c-8.837 0-16 7.163-16 16v33.049c0 8.837 7.163 16 16 16h33.113v318.53H24c-8.837 0-16 7.163-16 16V464c0 8.837 7.163 16 16 16h195.69c24.203 0 44.834-1.289 66.866-7.584C337.52 457.193 376 410.647 376 350.014c0-52.168-26.573-91.684-71.207-106.123zM142.217 100.809h67.444c16.294 0 27.536 2.019 37.525 6.717 15.828 8.479 24.906 26.502 24.906 49.446 0 35.029-20.32 56.79-53.029 56.79h-76.846V100.809zm112.642 305.475c-10.14 4.056-22.677 4.907-31.409 4.907h-81.233V281.943h84.367c39.645 0 63.057 25.38 63.057 63.057.001 28.425-13.66 52.483-34.782 61.284z"], + "bolt": [320, 512, [], "f0e7", "M295.973 160H180.572L215.19 30.184C219.25 14.956 207.756 0 192 0H56C43.971 0 33.8 8.905 32.211 20.828l-31.996 240C-1.704 275.217 9.504 288 24.004 288h118.701L96.646 482.466C93.05 497.649 104.659 512 119.992 512c8.35 0 16.376-4.374 20.778-11.978l175.973-303.997c9.244-15.967-2.288-36.025-20.77-36.025z"], + "bomb": [512, 512, [], "f1e2", "M440.5 88.5l-52 52L415 167c9.4 9.4 9.4 24.6 0 33.9l-17.4 17.4c11.8 26.1 18.4 55.1 18.4 85.6 0 114.9-93.1 208-208 208S0 418.9 0 304 93.1 96 208 96c30.5 0 59.5 6.6 85.6 18.4L311 97c9.4-9.4 24.6-9.4 33.9 0l26.5 26.5 52-52 17.1 17zM500 60h-24c-6.6 0-12 5.4-12 12s5.4 12 12 12h24c6.6 0 12-5.4 12-12s-5.4-12-12-12zM440 0c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12s12-5.4 12-12V12c0-6.6-5.4-12-12-12zm33.9 55l17-17c4.7-4.7 4.7-12.3 0-17-4.7-4.7-12.3-4.7-17 0l-17 17c-4.7 4.7-4.7 12.3 0 17 4.8 4.7 12.4 4.7 17 0zm-67.8 0c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17zm67.8 34c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17zM112 272c0-35.3 28.7-64 64-64 8.8 0 16-7.2 16-16s-7.2-16-16-16c-52.9 0-96 43.1-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16z"], + "bong": [448, 512, [], "f55c", "M302.5 512c23.18 0 44.43-12.58 56-32.66C374.69 451.26 384 418.75 384 384c0-36.12-10.08-69.81-27.44-98.62L400 241.94l9.38 9.38c6.25 6.25 16.38 6.25 22.63 0l11.3-11.32c6.25-6.25 6.25-16.38 0-22.63l-52.69-52.69c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63l9.38 9.38-39.41 39.41c-11.56-11.37-24.53-21.33-38.65-29.51V63.74l15.97-.02c8.82-.01 15.97-7.16 15.98-15.98l.04-31.72C320 7.17 312.82-.01 303.97 0L80.03.26c-8.82.01-15.97 7.16-15.98 15.98l-.04 31.73c-.01 8.85 7.17 16.02 16.02 16.01L96 63.96v153.93C38.67 251.1 0 312.97 0 384c0 34.75 9.31 67.27 25.5 95.34C37.08 499.42 58.33 512 81.5 512h221zM120.06 259.43L144 245.56V63.91l96-.11v181.76l23.94 13.87c24.81 14.37 44.12 35.73 56.56 60.57h-257c12.45-24.84 31.75-46.2 56.56-60.57z"], + "book": [448, 512, [], "f02d", "M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z"], + "book-open": [576, 512, [], "f518", "M542.22 32.05c-54.8 3.11-163.72 14.43-230.96 55.59-4.64 2.84-7.27 7.89-7.27 13.17v363.87c0 11.55 12.63 18.85 23.28 13.49 69.18-34.82 169.23-44.32 218.7-46.92 16.89-.89 30.02-14.43 30.02-30.66V62.75c.01-17.71-15.35-31.74-33.77-30.7zM264.73 87.64C197.5 46.48 88.58 35.17 33.78 32.05 15.36 31.01 0 45.04 0 62.75V400.6c0 16.24 13.13 29.78 30.02 30.66 49.49 2.6 149.59 12.11 218.77 46.95 10.62 5.35 23.21-1.94 23.21-13.46V100.63c0-5.29-2.62-10.14-7.27-12.99z"], + "bookmark": [384, 512, [], "f02e", "M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z"], + "bowling-ball": [496, 512, [], "f436", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM120 192c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64-96c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm48 144c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "box": [512, 512, [], "f466", "M509.5 184.6L458.9 32.8C452.4 13.2 434.1 0 413.4 0H272v192h238.7c-.4-2.5-.4-5-1.2-7.4zM240 0H98.6c-20.7 0-39 13.2-45.5 32.8L2.5 184.6c-.8 2.4-.8 4.9-1.2 7.4H240V0zM0 224v240c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V224H0z"], + "box-open": [640, 512, [], "f49e", "M53.2 41L1.7 143.8c-4.6 9.2.3 20.2 10.1 23l197.9 56.5c7.1 2 14.7-1 18.5-7.3L320 64 69.8 32.1c-6.9-.8-13.5 2.7-16.6 8.9zm585.1 102.8L586.8 41c-3.1-6.2-9.8-9.8-16.7-8.9L320 64l91.7 152.1c3.8 6.3 11.4 9.3 18.5 7.3l197.9-56.5c9.9-2.9 14.7-13.9 10.2-23.1zM425.7 256c-16.9 0-32.8-9-41.4-23.4L320 126l-64.2 106.6c-8.7 14.5-24.6 23.5-41.5 23.5-4.5 0-9-.6-13.3-1.9L64 215v178c0 14.7 10 27.5 24.2 31l216.2 54.1c10.2 2.5 20.9 2.5 31 0L551.8 424c14.2-3.6 24.2-16.4 24.2-31V215l-137 39.1c-4.3 1.3-8.8 1.9-13.3 1.9z"], + "boxes": [576, 512, [], "f468", "M560 288h-80v96l-32-21.3-32 21.3v-96h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16zm-384-64h224c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16h-80v96l-32-21.3L256 96V0h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16zm64 64h-80v96l-32-21.3L96 384v-96H16c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16z"], + "braille": [640, 512, [], "f2a1", "M128 256c0 35.346-28.654 64-64 64S0 291.346 0 256s28.654-64 64-64 64 28.654 64 64zM64 384c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352C28.654 32 0 60.654 0 96s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm224 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-320c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"], + "briefcase": [512, 512, [], "f0b1", "M320 288h192v144c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V288h192v20c0 6.627 5.373 12 12 12h104c6.627 0 12-5.373 12-12v-20zm192-112v80H0v-80c0-26.51 21.49-48 48-48h80V80c0-26.51 21.49-48 48-48h160c26.51 0 48 21.49 48 48v48h80c26.51 0 48 21.49 48 48zM320 96H192v32h128V96z"], + "briefcase-medical": [512, 512, [], "f469", "M464 128h-80V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48zM192 96h128v32H192V96zm160 248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48z"], + "broadcast-tower": [640, 512, [], "f519", "M150.94 192h33.73c11.01 0 18.61-10.83 14.86-21.18-4.93-13.58-7.55-27.98-7.55-42.82s2.62-29.24 7.55-42.82C203.29 74.83 195.68 64 184.67 64h-33.73c-7.01 0-13.46 4.49-15.41 11.23C130.64 92.21 128 109.88 128 128c0 18.12 2.64 35.79 7.54 52.76 1.94 6.74 8.39 11.24 15.4 11.24zM89.92 23.34C95.56 12.72 87.97 0 75.96 0H40.63c-6.27 0-12.14 3.59-14.74 9.31C9.4 45.54 0 85.65 0 128c0 24.75 3.12 68.33 26.69 118.86 2.62 5.63 8.42 9.14 14.61 9.14h34.84c12.02 0 19.61-12.74 13.95-23.37-49.78-93.32-16.71-178.15-.17-209.29zM614.06 9.29C611.46 3.58 605.6 0 599.33 0h-35.42c-11.98 0-19.66 12.66-14.02 23.25 18.27 34.29 48.42 119.42.28 209.23-5.72 10.68 1.8 23.52 13.91 23.52h35.23c6.27 0 12.13-3.58 14.73-9.29C630.57 210.48 640 170.36 640 128s-9.42-82.48-25.94-118.71zM489.06 64h-33.73c-11.01 0-18.61 10.83-14.86 21.18 4.93 13.58 7.55 27.98 7.55 42.82s-2.62 29.24-7.55 42.82c-3.76 10.35 3.85 21.18 14.86 21.18h33.73c7.02 0 13.46-4.49 15.41-11.24 4.9-16.97 7.53-34.64 7.53-52.76 0-18.12-2.64-35.79-7.54-52.76-1.94-6.75-8.39-11.24-15.4-11.24zm-116.3 100.12c7.05-10.29 11.2-22.71 11.2-36.12 0-35.35-28.63-64-63.96-64-35.32 0-63.96 28.65-63.96 64 0 13.41 4.15 25.83 11.2 36.12l-130.5 313.41c-3.4 8.15.46 17.52 8.61 20.92l29.51 12.31c8.15 3.4 17.52-.46 20.91-8.61L244.96 384h150.07l49.2 118.15c3.4 8.16 12.76 12.01 20.91 8.61l29.51-12.31c8.15-3.4 12-12.77 8.61-20.92l-130.5-313.41zM271.62 320L320 203.81 368.38 320h-96.76z"], + "broom": [512, 512, [], "f51a", "M10.8 247.2C-.7 251.8-3.7 266.7 5 275.4l54.8 54.8 73.2-24.4-24.4 73.2 128 128c8.8 8.8 23.6 5.7 28.2-5.8l98.1-243.7-108.4-108.4-243.7 98.1zM507.3 27.3L484.7 4.7c-6.2-6.3-16.4-6.3-22.6 0L359.8 106.9l-40.4-40.4c-4.2-4.3-11.4-3-13.9 2.5l-27.2 58.6 106.1 106.1 58.6-27.2c5.4-2.5 6.7-9.7 2.5-13.9l-40.4-40.4L507.3 49.9c6.3-6.2 6.3-16.3 0-22.6z"], + "brush": [384, 512, [], "f55d", "M352 0H32C14.33 0 0 14.33 0 32v224h384V32c0-17.67-14.33-32-32-32zM0 320c0 35.35 28.66 64 64 64h64v64c0 35.35 28.66 64 64 64s64-28.65 64-64v-64h64c35.34 0 64-28.65 64-64v-32H0v32zm192 104c13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24s-24-10.75-24-24c0-13.26 10.75-24 24-24z"], + "bug": [512, 512, [], "f188", "M511.988 288.9c-.478 17.43-15.217 31.1-32.653 31.1H424v16c0 21.864-4.882 42.584-13.6 61.145l60.228 60.228c12.496 12.497 12.496 32.758 0 45.255-12.498 12.497-32.759 12.496-45.256 0l-54.736-54.736C345.886 467.965 314.351 480 280 480V236c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v244c-34.351 0-65.886-12.035-90.636-32.108l-54.736 54.736c-12.498 12.497-32.759 12.496-45.256 0-12.496-12.497-12.496-32.758 0-45.255l60.228-60.228C92.882 378.584 88 357.864 88 336v-16H32.666C15.23 320 .491 306.33.013 288.9-.484 270.816 14.028 256 32 256h56v-58.745l-46.628-46.628c-12.496-12.497-12.496-32.758 0-45.255 12.498-12.497 32.758-12.497 45.256 0L141.255 160h229.489l54.627-54.627c12.498-12.497 32.758-12.497 45.256 0 12.496 12.497 12.496 32.758 0 45.255L424 197.255V256h56c17.972 0 32.484 14.816 31.988 32.9zM257 0c-61.856 0-112 50.144-112 112h224C369 50.144 318.856 0 257 0z"], + "building": [448, 512, [], "f1ad", "M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z"], + "bullhorn": [576, 512, [], "f0a1", "M576 224c0-20.896-13.36-38.666-32-45.258V64c0-35.346-28.654-64-64-64-64.985 56-142.031 128-272 128H48c-26.51 0-48 21.49-48 48v96c0 26.51 21.49 48 48 48h43.263c-18.742 64.65 2.479 116.379 18.814 167.44 1.702 5.32 5.203 9.893 9.922 12.88 20.78 13.155 68.355 15.657 93.773 5.151 16.046-6.633 19.96-27.423 7.522-39.537-18.508-18.026-30.136-36.91-19.795-60.858a12.278 12.278 0 0 0-1.045-11.673c-16.309-24.679-3.581-62.107 28.517-72.752C346.403 327.887 418.591 395.081 480 448c35.346 0 64-28.654 64-64V269.258c18.64-6.592 32-24.362 32-45.258zm-96 139.855c-54.609-44.979-125.033-92.94-224-104.982v-69.747c98.967-12.042 169.391-60.002 224-104.982v279.711z"], + "bullseye": [512, 512, [], "f140", "M256 72c101.689 0 184 82.295 184 184 0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-101.689 82.295-184 184-184m0-64C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 184c35.29 0 64 28.71 64 64s-28.71 64-64 64-64-28.71-64-64 28.71-64 64-64m0-64c-70.692 0-128 57.308-128 128s57.308 128 128 128 128-57.308 128-128-57.308-128-128-128z"], + "burn": [384, 512, [], "f46a", "M192 0C79.7 101.3 0 220.9 0 300.5 0 425 79 512 192 512s192-87 192-211.5c0-79.9-80.2-199.6-192-300.5zm0 448c-56.5 0-96-39-96-94.8 0-13.5 4.6-61.5 96-161.2 91.4 99.7 96 147.7 96 161.2 0 55.8-39.5 94.8-96 94.8z"], + "bus": [512, 512, [], "f207", "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM112 400c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm16-112c-17.67 0-32-14.33-32-32V128c0-17.67 14.33-32 32-32h256c17.67 0 32 14.33 32 32v128c0 17.67-14.33 32-32 32H128zm272 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "bus-alt": [512, 512, [], "f55e", "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM160 72c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H168c-4.42 0-8-3.58-8-8V72zm-48 328c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm128-112H128c-17.67 0-32-14.33-32-32v-96c0-17.67 14.33-32 32-32h112v160zm32 0V128h112c17.67 0 32 14.33 32 32v96c0 17.67-14.33 32-32 32H272zm128 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "calculator": [448, 512, [], "f1ec", "M0 464V48C0 21.49 21.49 0 48 0h352c26.51 0 48 21.49 48 48v416c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm384-284V76c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v104c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12zM128 308v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm256 128V268c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-256 0v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm128-128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm0 128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"], + "calendar": [448, 512, [], "f133", "M12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm436-44v-36c0-26.5-21.5-48-48-48h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v36c0 6.6 5.4 12 12 12h424c6.6 0 12-5.4 12-12z"], + "calendar-alt": [448, 512, [], "f073", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm116 204c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40z"], + "calendar-check": [448, 512, [], "f274", "M436 160H12c-6.627 0-12-5.373-12-12v-36c0-26.51 21.49-48 48-48h48V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h128V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h48c26.51 0 48 21.49 48 48v36c0 6.627-5.373 12-12 12zM12 192h424c6.627 0 12 5.373 12 12v260c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V204c0-6.627 5.373-12 12-12zm333.296 95.947l-28.169-28.398c-4.667-4.705-12.265-4.736-16.97-.068L194.12 364.665l-45.98-46.352c-4.667-4.705-12.266-4.736-16.971-.068l-28.397 28.17c-4.705 4.667-4.736 12.265-.068 16.97l82.601 83.269c4.667 4.705 12.265 4.736 16.97.068l142.953-141.805c4.705-4.667 4.736-12.265.068-16.97z"], + "calendar-minus": [448, 512, [], "f272", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm304 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H132c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h184z"], + "calendar-plus": [448, 512, [], "f271", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm316 140c0-6.6-5.4-12-12-12h-60v-60c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v60h-60c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h60v60c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-60h60c6.6 0 12-5.4 12-12v-40z"], + "calendar-times": [448, 512, [], "f273", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm257.3 160l48.1-48.1c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0L224 306.7l-48.1-48.1c-4.7-4.7-12.3-4.7-17 0l-28.3 28.3c-4.7 4.7-4.7 12.3 0 17l48.1 48.1-48.1 48.1c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l48.1-48.1 48.1 48.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L269.3 352z"], + "camera": [512, 512, [], "f030", "M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z"], + "camera-retro": [512, 512, [], "f083", "M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm0 32h106c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H38c-3.3 0-6-2.7-6-6V80c0-8.8 7.2-16 16-16zm426 96H38c-3.3 0-6-2.7-6-6v-36c0-3.3 2.7-6 6-6h138l30.2-45.3c1.1-1.7 3-2.7 5-2.7H464c8.8 0 16 7.2 16 16v74c0 3.3-2.7 6-6 6zM256 424c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88zm-48 104c-8.8 0-16-7.2-16-16 0-35.3 28.7-64 64-64 8.8 0 16 7.2 16 16s-7.2 16-16 16c-17.6 0-32 14.4-32 32 0 8.8-7.2 16-16 16z"], + "cannabis": [512, 512, [], "f55f", "M503.47 360.25c-1.56-.82-32.39-16.89-76.78-25.81 64.25-75.12 84.05-161.67 84.93-165.64 1.18-5.33-.44-10.9-4.3-14.77-3.03-3.04-7.12-4.7-11.32-4.7-1.14 0-2.29.12-3.44.38-3.88.85-86.54 19.59-160.58 79.76.01-1.46.01-2.93.01-4.4 0-118.79-59.98-213.72-62.53-217.7A15.973 15.973 0 0 0 256 0c-5.45 0-10.53 2.78-13.47 7.37-2.55 3.98-62.53 98.91-62.53 217.7 0 1.47.01 2.94.01 4.4-74.03-60.16-156.69-78.9-160.58-79.76-1.14-.25-2.29-.38-3.44-.38-4.2 0-8.29 1.66-11.32 4.7A15.986 15.986 0 0 0 .38 168.8c.88 3.97 20.68 90.52 84.93 165.64-44.39 8.92-75.21 24.99-76.78 25.81a16.003 16.003 0 0 0-.02 28.29c2.45 1.29 60.76 31.72 133.49 31.72 6.14 0 11.96-.1 17.5-.31-11.37 22.23-16.52 38.31-16.81 39.22-1.8 5.68-.29 11.89 3.91 16.11a16.019 16.019 0 0 0 16.1 3.99c1.83-.57 37.72-11.99 77.3-39.29V504c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8v-64.01c39.58 27.3 75.47 38.71 77.3 39.29a16.019 16.019 0 0 0 16.1-3.99c4.2-4.22 5.71-10.43 3.91-16.11-.29-.91-5.45-16.99-16.81-39.22 5.54.21 11.37.31 17.5.31 72.72 0 131.04-30.43 133.49-31.72 5.24-2.78 8.52-8.22 8.51-14.15-.01-5.94-3.29-11.39-8.53-14.15z"], + "capsules": [576, 512, [], "f46b", "M555.3 300.1L424.2 112.8C401.9 81 366.4 64 330.4 64c-22.6 0-45.5 6.7-65.5 20.7-19.7 13.8-33.7 32.8-41.5 53.8C220.5 79.2 172 32 112 32 50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V218.9c3.3 8.6 7.3 17.1 12.8 25L368 431.2c22.2 31.8 57.7 48.8 93.8 48.8 22.7 0 45.5-6.7 65.5-20.7 51.7-36.2 64.2-107.5 28-159.2zM160 256H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm194.8 44.9l-65.6-93.7c-7.7-11-10.7-24.4-8.3-37.6 2.3-13.2 9.7-24.8 20.7-32.5 8.5-6 18.5-9.1 28.8-9.1 16.5 0 31.9 8 41.3 21.5l65.6 93.7-82.5 57.7z"], + "car": [512, 512, [], "f1b9", "M499.991 168h-54.815l-7.854-20.944c-9.192-24.513-25.425-45.351-46.942-60.263S343.651 64 317.472 64H194.528c-26.18 0-51.391 7.882-72.908 22.793-21.518 14.912-37.75 35.75-46.942 60.263L66.824 168H12.009c-8.191 0-13.974 8.024-11.384 15.795l8 24A12 12 0 0 0 20.009 216h28.815l-.052.14C29.222 227.093 16 247.997 16 272v48c0 16.225 6.049 31.029 16 42.309V424c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-40h256v40c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-61.691c9.951-11.281 16-26.085 16-42.309v-48c0-24.003-13.222-44.907-32.772-55.86l-.052-.14h28.815a12 12 0 0 0 11.384-8.205l8-24c2.59-7.771-3.193-15.795-11.384-15.795zm-365.388 1.528C143.918 144.689 168 128 194.528 128h122.944c26.528 0 50.61 16.689 59.925 41.528L391.824 208H120.176l14.427-38.472zM88 328c-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32s48 30.327 48 48-30.327 16-48 16zm336 0c-17.673 0-48 1.673-48-16 0-17.673 30.327-48 48-48s32 14.327 32 32c0 17.673-14.327 32-32 32z"], + "caret-down": [320, 512, [], "f0d7", "M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z"], + "caret-left": [192, 512, [], "f0d9", "M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z"], + "caret-right": [192, 512, [], "f0da", "M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z"], + "caret-square-down": [448, 512, [], "f150", "M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM92.5 220.5l123 123c4.7 4.7 12.3 4.7 17 0l123-123c7.6-7.6 2.2-20.5-8.5-20.5H101c-10.7 0-16.1 12.9-8.5 20.5z"], + "caret-square-left": [448, 512, [], "f191", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM259.515 124.485l-123.03 123.03c-4.686 4.686-4.686 12.284 0 16.971l123.029 123.029c7.56 7.56 20.485 2.206 20.485-8.485V132.971c.001-10.691-12.925-16.045-20.484-8.486z"], + "caret-square-right": [448, 512, [], "f152", "M48 32h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48zm140.485 355.515l123.029-123.029c4.686-4.686 4.686-12.284 0-16.971l-123.029-123.03c-7.56-7.56-20.485-2.206-20.485 8.485v246.059c0 10.691 12.926 16.045 20.485 8.486z"], + "caret-square-up": [448, 512, [], "f151", "M0 432V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm355.515-140.485l-123.03-123.03c-4.686-4.686-12.284-4.686-16.971 0L92.485 291.515c-7.56 7.56-2.206 20.485 8.485 20.485h246.059c10.691 0 16.045-12.926 8.486-20.485z"], + "caret-up": [320, 512, [], "f0d8", "M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z"], + "cart-arrow-down": [576, 512, [], "f218", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z"], + "cart-plus": [576, 512, [], "f217", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM408 168h-48v-40c0-8.837-7.163-16-16-16h-16c-8.837 0-16 7.163-16 16v40h-48c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h48v40c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-40h48c8.837 0 16-7.163 16-16v-16c0-8.837-7.163-16-16-16z"], + "certificate": [512, 512, [], "f0a3", "M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z"], + "chalkboard": [640, 512, [], "f51b", "M96 64h448v352h64V40c0-22.06-17.94-40-40-40H72C49.94 0 32 17.94 32 40v376h64V64zm528 384H480v-64H288v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"], + "chalkboard-teacher": [640, 512, [], "f51c", "M208 352c-2.39 0-4.78.35-7.06 1.09C187.98 357.3 174.35 360 160 360c-14.35 0-27.98-2.7-40.95-6.91-2.28-.74-4.66-1.09-7.05-1.09C49.94 352-.33 402.48 0 464.62.14 490.88 21.73 512 48 512h224c26.27 0 47.86-21.12 48-47.38.33-62.14-49.94-112.62-112-112.62zm-48-32c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM592 0H208c-26.47 0-48 22.25-48 49.59V96c23.42 0 45.1 6.78 64 17.8V64h352v288h-64v-64H384v64h-76.24c19.1 16.69 33.12 38.73 39.69 64H592c26.47 0 48-22.25 48-49.59V49.59C640 22.25 618.47 0 592 0z"], + "chart-area": [512, 512, [], "f1fe", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z"], + "chart-bar": [512, 512, [], "f080", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zm-308-44v-72c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V204c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V108c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"], + "chart-line": [512, 512, [], "f201", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM456 96H344c-21.4 0-32.1 25.9-17 41l32.9 32.9-72 72.9-55.6-55.6c-4.7-4.7-12.2-4.7-16.9 0L96.4 305c-4.7 4.6-4.8 12.2-.2 16.9l28.5 29.4c4.7 4.8 12.4 4.9 17.1.1l82.1-82.1 55.5 55.5c4.7 4.7 12.3 4.7 17 0l109.2-109.2L439 249c15.1 15.1 41 4.4 41-17V120c0-13.3-10.7-24-24-24z"], + "chart-pie": [576, 512, [], "f200", "M288 12.3V240h227.7c6.9 0 12.3-5.8 12-12.7-6.4-122.4-104.5-220.6-227-227-6.9-.3-12.7 5.1-12.7 12zM552.7 288c6.9 0 12.3 5.8 12 12.7-2.8 53.2-23.2 105.6-61.2 147.8-4.6 5.1-12.6 5.4-17.5.5L325 288h227.7zM401 433c4.8 4.8 4.7 12.8-.4 17.3-42.6 38.4-99 61.7-160.8 61.7C107.6 511.9-.2 403.8 0 271.5.2 143.4 100.8 38.9 227.3 32.3c6.9-.4 12.7 5.1 12.7 12V272l161 161z"], + "check": [512, 512, [], "f00c", "M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"], + "check-circle": [512, 512, [], "f058", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"], + "check-double": [512, 512, [], "f560", "M504.5 171.95l-36.2-36.41c-10-10.05-26.21-10.05-36.2 0L192 377.02 79.9 264.28c-10-10.06-26.21-10.06-36.2 0L7.5 300.69c-10 10.05-10 26.36 0 36.41l166.4 167.36c10 10.06 26.21 10.06 36.2 0l294.4-296.09c10-10.06 10-26.36 0-36.42zM166.57 282.71c6.84 7.02 18.18 7.02 25.21.18L403.85 72.62c7.02-6.84 7.02-18.18.18-25.21L362.08 5.29c-6.84-7.02-18.18-7.02-25.21-.18L179.71 161.19l-68.23-68.77c-6.84-7.02-18.18-7.02-25.2-.18l-42.13 41.77c-7.02 6.84-7.02 18.18-.18 25.2l122.6 123.5z"], + "check-square": [448, 512, [], "f14a", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"], + "chess": [512, 512, [], "f439", "M199.821 217.633a6 6 0 0 1 6 6l-.001 20.766a6 6 0 0 1-6 6h-25.805c0 31.715-2.153 96.201 17.398 153.229H64.597C84.54 345.452 82.02 279.245 82.02 250.399H56.183a6 6 0 0 1-6-6l.002-20.766a6 6 0 0 1 6-6h143.636zM41.554 115.088l34.58 95.071h103.734l34.572-95.072c2.846-7.826-2.95-16.101-11.278-16.101H152v-30.22h21.57a6 6 0 0 0 6-6V40.383a6 6 0 0 0-6-6h-28.367V6a6 6 0 0 0-6-6H116.82a6 6 0 0 0-6 6v28.383H82.421a6 6 0 0 0-6 6v22.383a6 6 0 0 0 6 6H104v30.219H52.831c-8.328.001-14.124 8.276-11.277 16.103zM222.678 445.17v-28.067a6 6 0 0 0-6-6H39.322a6 6 0 0 0-6 6v28.067l-22.148 14.164a6 6 0 0 0-2.767 5.055V506a6 6 0 0 0 6 6h227.187a6 6 0 0 0 6-6v-41.612a6 6 0 0 0-2.767-5.055l-22.149-14.163zm90.578-144.225l24.88 16.963c.09 18.124-.167 63.904-11.905 114.522h147.526c-11.713-50.475-11.969-96.324-11.882-114.537l24.859-16.949a3.856 3.856 0 0 0 1.684-3.187v-69.901a3.857 3.857 0 0 0-3.857-3.857h-27.655a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.858-3.857h-52.918a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.857-3.857H315.43a3.857 3.857 0 0 0-3.857 3.857v69.901a3.855 3.855 0 0 0 1.683 3.188zm71.585 51.906c0-8.372 6.787-15.158 15.159-15.158s15.158 6.787 15.158 15.158v30.318h-30.317v-30.318zM504.62 470.059l-13.664-10.639v-15.552a3.857 3.857 0 0 0-3.857-3.857H312.915a3.857 3.857 0 0 0-3.857 3.857v15.552l-13.677 10.639a3.857 3.857 0 0 0-1.488 3.044v35.039a3.857 3.857 0 0 0 3.857 3.857h204.5a3.857 3.857 0 0 0 3.857-3.857v-35.04a3.859 3.859 0 0 0-1.487-3.043z"], + "chess-bishop": [320, 512, [], "f43a", "M123.158 77.881C107.369 72.53 96 57.597 96 40c0-22.091 17.909-40 40-40h47.796c22.091 0 40 17.909 40 40 0 17.541-11.295 32.434-27.005 37.829 23.993 16.657 48.577 46.839 68.703 82.05L144.929 280.443a6 6 0 0 0 0 8.485l14.142 14.142a6 6 0 0 0 8.485 0L280.9 189.726c17.758 38.297 29.371 79.443 29.371 114.273 0 53.786-22.897 75.788-58.446 86.033V448H68.174v-57.97C32.631 379.784 9.739 357.781 9.739 304c0-78.029 58.281-187.766 113.419-226.119zM320 500v-24c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12z"], + "chess-board": [512, 512, [], "f43c", "M256 256v64h-64v-64h64zm0-256h-64v64h64V0zm0 256h64v-64h-64v64zM384 0h-64v64h64V0zm0 512h64v-64h-64v64zm128-64v-64h-64v64h64zm-384 64h64v-64h-64v64zm0-512H64v64h64V0zm384 192v-64h-64v64h64zm0 128v-64h-64v64h64zM0 512h64v-64H0v64zM0 64v64h64V64H0zm0 128v64h64v-64H0zm0 128v64h64v-64H0zm256 192h64v-64h-64v64zm-64-128v64h64v-64h-64zm64-192v-64h-64v64h64zM64 384v64h64v-64H64zm64-128H64v64h64v-64zm256 128h64v-64h-64v64zM512 0h-64v64h64V0zM384 256h64v-64h-64v64zm0-192v64h64V64h-64zm-64 320v64h64v-64h-64zm-192-64v64h64v-64h-64zm128 0v64h64v-64h-64zm-64-128h-64v64h64v-64zm-64-64H64v64h64v-64zm192 192h64v-64h-64v64zM192 128V64h-64v64h64zm128 0V64h-64v64h64zm0 64h64v-64h-64v64z"], + "chess-king": [448, 512, [], "f43f", "M416 476v24c0 6.627-5.373 12-12 12H44c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12zm-8.033-324H248v-48h50a6 6 0 0 0 6-6V62a6 6 0 0 0-6-6h-50V6a6 6 0 0 0-6-6h-36a6 6 0 0 0-6 6v50h-50a6 6 0 0 0-6 6v36a6 6 0 0 0 6 6h50v48H40.033c-27.574 0-46.879 27.244-37.738 53.259L87.582 448h272.836l85.287-242.741C454.846 179.244 435.541 152 407.967 152z"], + "chess-knight": [384, 512, [], "f441", "M352 224v224H32v-46.557c0-30.302 17.12-58.003 44.223-71.554l57.243-28.622A48 48 0 0 0 160 258.334V208l-22.127 11.063a23.996 23.996 0 0 0-12.55 15.645l-11.835 47.338a12 12 0 0 1-7.185 8.231l-29.601 11.84a11.998 11.998 0 0 1-9.33-.176L7.126 275.167A12 12 0 0 1 0 264.201v-158.26c0-6.365 2.529-12.47 7.03-16.971L16 80 1.789 51.578A16.937 16.937 0 0 1 0 44c0-6.627 5.373-12 12-12h148c106.039 0 192 85.961 192 192zm20 240H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12zM52 128c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z"], + "chess-pawn": [320, 512, [], "f443", "M264 448H56s60-42.743 60-176H84c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h40.209C95.721 210.56 76 181.588 76 148c0-46.392 37.608-84 84-84s84 37.608 84 84c0 33.588-19.721 62.56-48.209 76H236c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12h-32c0 133.257 60 176 60 176zm28 16H28c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h264c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12z"], + "chess-queen": [512, 512, [], "f445", "M436 512H76c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12zM255.579 0c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zm204.568 154.634c-5.768-3.045-12.916-.932-16.082 4.77-8.616 15.516-22.747 37.801-44.065 37.801-28.714 0-30.625-19.804-31.686-57.542-.183-6.492-5.501-11.664-11.995-11.664h-41.006c-5.175 0-9.754 3.328-11.388 8.238-8.89 26.709-26.073 40.992-47.925 40.992s-39.034-14.283-47.925-40.992c-1.634-4.91-6.213-8.238-11.388-8.238h-41.005c-6.495 0-11.813 5.174-11.995 11.667-1.052 37.642-2.934 57.539-31.688 57.539-20.691 0-33.817-20.224-44.425-38.025-3.266-5.48-10.258-7.431-15.899-4.453l-39.179 20.679a12 12 0 0 0-5.51 15.145L112 448h288l105.014-257.448a12 12 0 0 0-5.51-15.145l-39.357-20.773z"], + "chess-rook": [384, 512, [], "f447", "M81.241 215.027C80.957 258.92 77.411 348.076 48 448h287.982c-29.4-99.604-32.936-188.912-33.221-232.975l45.418-42.312a11.998 11.998 0 0 0 3.82-8.78V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v44h-48V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v44H96V44c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v119.932c0 3.33 1.384 6.51 3.82 8.78l45.421 42.315zM160 256c0-17.673 14.327-32 32-32 17.673 0 32 14.327 32 32v64.004h-64V256zm224 220v24c0 6.627-5.373 12-12 12H12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12z"], + "chevron-circle-down": [512, 512, [], "f13a", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM273 369.9l135.5-135.5c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L256 285.1 154.4 183.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L239 369.9c9.4 9.4 24.6 9.4 34 0z"], + "chevron-circle-left": [512, 512, [], "f137", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z"], + "chevron-circle-right": [512, 512, [], "f138", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z"], + "chevron-circle-up": [512, 512, [], "f139", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm231-113.9L103.5 277.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L256 226.9l101.6 101.6c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L273 142.1c-9.4-9.4-24.6-9.4-34 0z"], + "chevron-down": [448, 512, [], "f078", "M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"], + "chevron-left": [320, 512, [], "f053", "M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z"], + "chevron-right": [320, 512, [], "f054", "M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z"], + "chevron-up": [448, 512, [], "f077", "M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z"], + "child": [384, 512, [], "f1ae", "M120 72c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.764-32.235 72-72 72s-72-32.236-72-72zm254.627 1.373c-12.496-12.497-32.758-12.497-45.254 0L242.745 160H141.254L54.627 73.373c-12.496-12.497-32.758-12.497-45.254 0-12.497 12.497-12.497 32.758 0 45.255L104 213.254V480c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V368h16v112c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V213.254l94.627-94.627c12.497-12.497 12.497-32.757 0-45.254z"], + "church": [640, 512, [], "f51d", "M464.46 246.68L352 179.2V128h48c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-48V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v48h-48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v51.2l-112.46 67.48A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.65-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.54A32.024 32.024 0 0 0 0 395.96zm620.61-29.42L512 320v192h112c8.84 0 16-7.16 16-16V395.96c0-12.8-7.63-24.37-19.39-29.42z"], + "circle": [512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"], + "circle-notch": [512, 512, [], "f1ce", "M288 39.056v16.659c0 10.804 7.281 20.159 17.686 23.066C383.204 100.434 440 171.518 440 256c0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-84.47 56.786-155.564 134.312-177.219C216.719 75.874 224 66.517 224 55.712V39.064c0-15.709-14.834-27.153-30.046-23.234C86.603 43.482 7.394 141.206 8.003 257.332c.72 137.052 111.477 246.956 248.531 246.667C393.255 503.711 504 392.788 504 256c0-115.633-79.14-212.779-186.211-240.236C302.678 11.889 288 23.456 288 39.056z"], + "clipboard": [384, 512, [], "f328", "M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z"], + "clipboard-check": [384, 512, [], "f46c", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm121.2 231.8l-143 141.8c-4.7 4.7-12.3 4.6-17-.1l-82.6-83.3c-4.7-4.7-4.6-12.3.1-17L99.1 285c4.7-4.7 12.3-4.6 17 .1l46 46.4 106-105.2c4.7-4.7 12.3-4.6 17 .1l28.2 28.4c4.7 4.8 4.6 12.3-.1 17z"], + "clipboard-list": [384, 512, [], "f46d", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM96 424c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm96-192c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm128 368c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z"], + "clock": [512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm57.1 350.1L224.9 294c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v137.7l63.5 46.2c5.4 3.9 6.5 11.4 2.6 16.8l-28.2 38.8c-3.9 5.3-11.4 6.5-16.8 2.6z"], + "clone": [512, 512, [], "f24d", "M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z"], + "closed-captioning": [512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM218.1 287.7c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2.1 48 51.1 70.5 92.3 32.6zm190.4 0c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.5 56.9-172.7 32.1-172.7-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 222.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6z"], + "cloud": [640, 512, [], "f0c2", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z"], + "cloud-download-alt": [640, 512, [], "f381", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z"], + "cloud-upload-alt": [640, 512, [], "f382", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z"], + "cocktail": [576, 512, [], "f561", "M296 464h-56V338.78l168.74-168.73c15.52-15.52 4.53-42.05-17.42-42.05H24.68c-21.95 0-32.94 26.53-17.42 42.05L176 338.78V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM432 0c-62.61 0-115.35 40.2-135.18 96h52.54c16.65-28.55 47.27-48 82.64-48 52.93 0 96 43.06 96 96s-43.07 96-96 96c-14.04 0-27.29-3.2-39.32-8.64l-35.26 35.26C379.23 279.92 404.59 288 432 288c79.53 0 144-64.47 144-144S511.53 0 432 0z"], + "code": [640, 512, [], "f121", "M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"], + "code-branch": [384, 512, [], "f126", "M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"], + "coffee": [640, 512, [], "f0f4", "M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z"], + "cog": [512, 512, [], "f013", "M444.788 291.1l42.616 24.599c4.867 2.809 7.126 8.618 5.459 13.985-11.07 35.642-29.97 67.842-54.689 94.586a12.016 12.016 0 0 1-14.832 2.254l-42.584-24.595a191.577 191.577 0 0 1-60.759 35.13v49.182a12.01 12.01 0 0 1-9.377 11.718c-34.956 7.85-72.499 8.256-109.219.007-5.49-1.233-9.403-6.096-9.403-11.723v-49.184a191.555 191.555 0 0 1-60.759-35.13l-42.584 24.595a12.016 12.016 0 0 1-14.832-2.254c-24.718-26.744-43.619-58.944-54.689-94.586-1.667-5.366.592-11.175 5.459-13.985L67.212 291.1a193.48 193.48 0 0 1 0-70.199l-42.616-24.599c-4.867-2.809-7.126-8.618-5.459-13.985 11.07-35.642 29.97-67.842 54.689-94.586a12.016 12.016 0 0 1 14.832-2.254l42.584 24.595a191.577 191.577 0 0 1 60.759-35.13V25.759a12.01 12.01 0 0 1 9.377-11.718c34.956-7.85 72.499-8.256 109.219-.007 5.49 1.233 9.403 6.096 9.403 11.723v49.184a191.555 191.555 0 0 1 60.759 35.13l42.584-24.595a12.016 12.016 0 0 1 14.832 2.254c24.718 26.744 43.619 58.944 54.689 94.586 1.667 5.366-.592 11.175-5.459 13.985L444.788 220.9a193.485 193.485 0 0 1 0 70.2zM336 256c0-44.112-35.888-80-80-80s-80 35.888-80 80 35.888 80 80 80 80-35.888 80-80z"], + "cogs": [640, 512, [], "f085", "M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z"], + "coins": [512, 512, [], "f51e", "M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z"], + "columns": [512, 512, [], "f0db", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z"], + "comment": [512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32z"], + "comment-alt": [512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 9.8 11.2 15.5 19.1 9.7L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z"], + "comment-dots": [512, 512, [], "f4ad", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "comment-slash": [640, 512, [], "f4b3", "M64 240c0 49.6 21.4 95 57 130.7-12.6 50.3-54.3 95.2-54.8 95.8-2.2 2.3-2.8 5.7-1.5 8.7 1.3 2.9 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 27.4 0 53.7-3.6 78.4-10L72.9 186.4c-5.6 17.1-8.9 35-8.9 53.6zm569.8 218.1l-114.4-88.4C554.6 334.1 576 289.2 576 240c0-114.9-114.6-208-256-208-65.1 0-124.2 20.1-169.4 52.7L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z"], + "comments": [576, 512, [], "f086", "M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z"], + "compact-disc": [496, 512, [], "f51f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 256H56c0-105.9 86.1-192 192-192v32c-88.2 0-160 71.8-160 160zm160 96c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"], + "compass": [512, 512, [], "f14e", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM307.446 120.844l-102.642 97.779a23.997 23.997 0 0 0-6.772 11.729l-33.359 137.779c-5.68 23.459 22.777 39.318 39.88 23.024l102.64-97.779a23.99 23.99 0 0 0 6.772-11.729l33.359-137.779c5.618-23.198-22.591-39.493-39.878-23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"], + "compress": [448, 512, [], "f066", "M436 192H312c-13.3 0-24-10.7-24-24V44c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-276-24V44c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v84H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 300V344c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-84h84c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H312c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"], + "concierge-bell": [512, 512, [], "f562", "M288 130.54V112h16c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h16v18.54C115.49 146.11 32 239.18 32 352h448c0-112.82-83.49-205.89-192-221.46zM496 384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"], + "cookie": [512, 512, [], "f563", "M510.37 254.79l-12.08-76.26a132.493 132.493 0 0 0-37.16-72.95l-54.76-54.75c-19.73-19.72-45.18-32.7-72.71-37.05l-76.7-12.15c-27.51-4.36-55.69.11-80.52 12.76L107.32 49.6a132.25 132.25 0 0 0-57.79 57.8l-35.1 68.88a132.602 132.602 0 0 0-12.82 80.94l12.08 76.27a132.493 132.493 0 0 0 37.16 72.95l54.76 54.75a132.087 132.087 0 0 0 72.71 37.05l76.7 12.14c27.51 4.36 55.69-.11 80.52-12.75l69.12-35.21a132.302 132.302 0 0 0 57.79-57.8l35.1-68.87c12.71-24.96 17.2-53.3 12.82-80.96zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "cookie-bite": [512, 512, [], "f564", "M510.52 255.82c-69.97-.85-126.47-57.69-126.47-127.86-70.17 0-127-56.49-127.86-126.45-27.26-4.14-55.13.3-79.72 12.82l-69.13 35.22a132.221 132.221 0 0 0-57.79 57.81l-35.1 68.88a132.645 132.645 0 0 0-12.82 80.95l12.08 76.27a132.521 132.521 0 0 0 37.16 72.96l54.77 54.76a132.036 132.036 0 0 0 72.71 37.06l76.71 12.15c27.51 4.36 55.7-.11 80.53-12.76l69.13-35.21a132.273 132.273 0 0 0 57.79-57.81l35.1-68.88c12.56-24.64 17.01-52.58 12.91-79.91zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "copy": [448, 512, [], "f0c5", "M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z"], + "copyright": [512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm117.134 346.753c-1.592 1.867-39.776 45.731-109.851 45.731-84.692 0-144.484-63.26-144.484-145.567 0-81.303 62.004-143.401 143.762-143.401 66.957 0 101.965 37.315 103.422 38.904a12 12 0 0 1 1.238 14.623l-22.38 34.655c-4.049 6.267-12.774 7.351-18.234 2.295-.233-.214-26.529-23.88-61.88-23.88-46.116 0-73.916 33.575-73.916 76.082 0 39.602 25.514 79.692 74.277 79.692 38.697 0 65.28-28.338 65.544-28.625 5.132-5.565 14.059-5.033 18.508 1.053l24.547 33.572a12.001 12.001 0 0 1-.553 14.866z"], + "couch": [640, 512, [], "f4b8", "M160 224v64h320v-64c0-35.3 28.7-64 64-64h32c0-53-43-96-96-96H160c-53 0-96 43-96 96h32c35.3 0 64 28.7 64 64zm416-32h-32c-17.7 0-32 14.3-32 32v96H128v-96c0-17.7-14.3-32-32-32H64c-35.3 0-64 28.7-64 64 0 23.6 13 44 32 55.1V432c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-16h384v16c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V311.1c19-11.1 32-31.5 32-55.1 0-35.3-28.7-64-64-64z"], + "credit-card": [576, 512, [], "f09d", "M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V256H0v176zm192-68c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-40zm-128 0c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM576 80v48H0V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48z"], + "crop": [512, 512, [], "f125", "M488 352h-40V109.25l59.31-59.31c6.25-6.25 6.25-16.38 0-22.63L484.69 4.69c-6.25-6.25-16.38-6.25-22.63 0L402.75 64H192v96h114.75L160 306.75V24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v264c0 13.25 10.75 24 24 24h232v-96H205.25L352 205.25V488c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"], + "crop-alt": [512, 512, [], "f565", "M488 352h-40V96c0-17.67-14.33-32-32-32H192v96h160v328c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24zM160 24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v256c0 17.67 14.33 32 32 32h224v-96H160V24z"], + "crosshairs": [512, 512, [], "f05b", "M500 224h-30.364C455.724 130.325 381.675 56.276 288 42.364V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v30.364C130.325 56.276 56.276 130.325 42.364 224H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h30.364C56.276 381.675 130.325 455.724 224 469.636V500c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-30.364C381.675 455.724 455.724 381.675 469.636 288H500c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zM288 404.634V364c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40.634C165.826 392.232 119.783 346.243 107.366 288H148c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40.634C119.768 165.826 165.757 119.783 224 107.366V148c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40.634C346.174 119.768 392.217 165.757 404.634 224H364c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40.634C392.232 346.174 346.243 392.217 288 404.634zM288 256c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z"], + "crow": [640, 512, [], "f520", "M544 32h-16.36C513.04 12.68 490.09 0 464 0c-44.18 0-80 35.82-80 80v20.98L12.09 393.57A30.216 30.216 0 0 0 0 417.74c0 22.46 23.64 37.07 43.73 27.03L165.27 384h96.49l44.41 120.1c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38L312.94 384H352c1.91 0 3.76-.23 5.66-.29l44.51 120.38c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38l-41.24-111.53C485.74 352.8 544 279.26 544 192v-80l96-16c0-35.35-42.98-64-96-64zm-80 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"], + "crown": [640, 512, [], "f521", "M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.4 7.7-.8L128 416h384l72.3-192.8c2.5.4 5.1.8 7.7.8 26.5 0 48-21.5 48-48s-21.5-48-48-48z"], + "cube": [512, 512, [], "f1b2", "M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z"], + "cubes": [512, 512, [], "f1b3", "M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z"], + "cut": [448, 512, [], "f0c4", "M278.06 256L444.48 89.57c4.69-4.69 4.69-12.29 0-16.97-32.8-32.8-85.99-32.8-118.79 0L210.18 188.12l-24.86-24.86c4.31-10.92 6.68-22.81 6.68-35.26 0-53.02-42.98-96-96-96S0 74.98 0 128s42.98 96 96 96c4.54 0 8.99-.32 13.36-.93L142.29 256l-32.93 32.93c-4.37-.61-8.83-.93-13.36-.93-53.02 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96c0-12.45-2.37-24.34-6.68-35.26l24.86-24.86L325.69 439.4c32.8 32.8 85.99 32.8 118.79 0 4.69-4.68 4.69-12.28 0-16.97L278.06 256zM96 160c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32zm0 256c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z"], + "database": [448, 512, [], "f1c0", "M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z"], + "deaf": [512, 512, [], "f2a4", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm268.485-52.201L480.2 3.515c-4.687-4.686-12.284-4.686-16.971 0L376.2 90.544c-4.686 4.686-4.686 12.284 0 16.971l28.285 28.285c4.686 4.686 12.284 4.686 16.97 0l87.03-87.029c4.687-4.688 4.687-12.286 0-16.972zM168.97 314.745c-4.686-4.686-12.284-4.686-16.97 0L3.515 463.23c-4.686 4.686-4.686 12.284 0 16.971L31.8 508.485c4.687 4.686 12.284 4.686 16.971 0L197.256 360c4.686-4.686 4.686-12.284 0-16.971l-28.286-28.284z"], + "desktop": [576, 512, [], "f108", "M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z"], + "diagnoses": [640, 512, [], "f470", "M496 256c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm-176-80c48.5 0 88-39.5 88-88S368.5 0 320 0s-88 39.5-88 88 39.5 88 88 88zM59.8 364c10.2 15.3 29.3 17.8 42.9 9.8 16.2-9.6 56.2-31.7 105.3-48.6V416h224v-90.7c49.1 16.8 89.1 39 105.3 48.6 13.6 8 32.7 5.3 42.9-9.8l17.8-26.7c8.8-13.2 7.6-34.6-10-45.1-11.9-7.1-29.7-17-51.1-27.4-28.1 46.1-99.4 17.8-87.7-35.1C409.3 217.2 365.1 208 320 208c-57 0-112.9 14.5-160 32.2-.2 40.2-47.6 63.3-79.2 36-11.2 6-21.3 11.6-28.7 16-17.6 10.5-18.8 31.8-10 45.1L59.8 364zM368 344c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-160 8c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm512 192H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z"], + "dice": [640, 512, [], "f522", "M592 192H473.26c12.69 29.59 7.12 65.2-17 89.32L320 417.58V464c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48V240c0-26.51-21.49-48-48-48zM480 376c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm-46.37-186.7L258.7 14.37c-19.16-19.16-50.23-19.16-69.39 0L14.37 189.3c-19.16 19.16-19.16 50.23 0 69.39L189.3 433.63c19.16 19.16 50.23 19.16 69.39 0L433.63 258.7c19.16-19.17 19.16-50.24 0-69.4zM96 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"], + "dice-five": [448, 512, [], "f523", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "dice-four": [448, 512, [], "f524", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "dice-one": [448, 512, [], "f525", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM224 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "dice-six": [448, 512, [], "f526", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "dice-three": [448, 512, [], "f527", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "dice-two": [448, 512, [], "f528", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "digital-tachograph": [640, 512, [], "f566", "M608 96H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128c0-17.67-14.33-32-32-32zM304 352c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8zM72 288v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H80c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm40-64c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-48c0-8.84 7.16-16 16-16h208c8.84 0 16 7.16 16 16v48zm272 128c0 4.42-3.58 8-8 8H344c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8z"], + "divide": [448, 512, [], "f529", "M224 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm0-192c35.35 0 64-28.65 64-64s-28.65-64-64-64-64 28.65-64 64 28.65 64 64 64zm192 48H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"], + "dizzy": [496, 512, [], "f567", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-96 206.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L174.6 192l28.7 28.7c15.2 15.2-7.9 37.4-22.6 22.6L152 214.6zM248 416c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm147.3-195.3c15.2 15.2-7.9 37.4-22.6 22.6L344 214.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L366.6 192l28.7 28.7z"], + "dna": [448, 512, [], "f471", "M.1 494.1c-1.1 9.5 6.3 17.8 15.9 17.8l32.3.1c8.1 0 14.9-5.9 16-13.9.7-4.9 1.8-11.1 3.4-18.1H380c1.6 6.9 2.9 13.2 3.5 18.1 1.1 8 7.9 14 16 13.9l32.3-.1c9.6 0 17.1-8.3 15.9-17.8-4.6-37.9-25.6-129-118.9-207.7-17.6 12.4-37.1 24.2-58.5 35.4 6.2 4.6 11.4 9.4 17 14.2H159.7c21.3-18.1 47-35.6 78.7-51.4C410.5 199.1 442.1 65.8 447.9 17.9 449 8.4 441.6.1 432 .1L399.6 0c-8.1 0-14.9 5.9-16 13.9-.7 4.9-1.8 11.1-3.4 18.1H67.8c-1.6-7-2.7-13.1-3.4-18.1-1.1-8-7.9-14-16-13.9L16.1.1C6.5.1-1 8.4.1 17.9 5.3 60.8 31.4 171.8 160 256 31.5 340.2 5.3 451.2.1 494.1zM224 219.6c-25.1-13.7-46.4-28.4-64.3-43.6h128.5c-17.8 15.2-39.1 30-64.2 43.6zM355.1 96c-5.8 10.4-12.8 21.1-21 32H114c-8.3-10.9-15.3-21.6-21-32h262.1zM92.9 416c5.8-10.4 12.8-21.1 21-32h219.4c8.3 10.9 15.4 21.6 21.2 32H92.9z"], + "dollar-sign": [288, 512, [], "f155", "M209.2 233.4l-108-31.6C88.7 198.2 80 186.5 80 173.5c0-16.3 13.2-29.5 29.5-29.5h66.3c12.2 0 24.2 3.7 34.2 10.5 6.1 4.1 14.3 3.1 19.5-2l34.8-34c7.1-6.9 6.1-18.4-1.8-24.5C238 74.8 207.4 64.1 176 64V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C45.8 64-5.4 118.7.5 183.6c4.2 46.1 39.4 83.6 83.8 96.6l102.5 30c12.5 3.7 21.2 15.3 21.2 28.3 0 16.3-13.2 29.5-29.5 29.5h-66.3C100 368 88 364.3 78 357.5c-6.1-4.1-14.3-3.1-19.5 2l-34.8 34c-7.1 6.9-6.1 18.4 1.8 24.5 24.5 19.2 55.1 29.9 86.5 30v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48.2c46.6-.9 90.3-28.6 105.7-72.7 21.5-61.6-14.6-124.8-72.5-141.7z"], + "dolly": [576, 512, [], "f472", "M294.2 277.7c18 5 34.7 13.4 49.5 24.7l161.5-53.8c8.4-2.8 12.9-11.9 10.1-20.2L454.9 47.2c-2.8-8.4-11.9-12.9-20.2-10.1l-61.1 20.4 33.1 99.4L346 177l-33.1-99.4-61.6 20.5c-8.4 2.8-12.9 11.9-10.1 20.2l53 159.4zm281 48.7L565 296c-2.8-8.4-11.9-12.9-20.2-10.1l-213.5 71.2c-17.2-22-43.6-36.4-73.5-37L158.4 21.9C154 8.8 141.8 0 128 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h88.9l92.2 276.7c-26.1 20.4-41.7 53.6-36 90.5 6.1 39.4 37.9 72.3 77.3 79.2 60.2 10.7 112.3-34.8 113.4-92.6l213.3-71.2c8.3-2.8 12.9-11.8 10.1-20.2zM256 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"], + "dolly-flatbed": [640, 512, [], "f474", "M208 320h384c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H448v128l-48-32-48 32V32H208c-8.8 0-16 7.2-16 16v256c0 8.8 7.2 16 16 16zm416 64H128V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h82.9c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H451c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H624c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z"], + "donate": [512, 512, [], "f4b9", "M256 416c114.9 0 208-93.1 208-208S370.9 0 256 0 48 93.1 48 208s93.1 208 208 208zM233.8 97.4V80.6c0-9.2 7.4-16.6 16.6-16.6h11.1c9.2 0 16.6 7.4 16.6 16.6v17c15.5.8 30.5 6.1 43 15.4 5.6 4.1 6.2 12.3 1.2 17.1L306 145.6c-3.8 3.7-9.5 3.8-14 1-5.4-3.4-11.4-5.1-17.8-5.1h-38.9c-9 0-16.3 8.2-16.3 18.3 0 8.2 5 15.5 12.1 17.6l62.3 18.7c25.7 7.7 43.7 32.4 43.7 60.1 0 34-26.4 61.5-59.1 62.4v16.8c0 9.2-7.4 16.6-16.6 16.6h-11.1c-9.2 0-16.6-7.4-16.6-16.6v-17c-15.5-.8-30.5-6.1-43-15.4-5.6-4.1-6.2-12.3-1.2-17.1l16.3-15.5c3.8-3.7 9.5-3.8 14-1 5.4 3.4 11.4 5.1 17.8 5.1h38.9c9 0 16.3-8.2 16.3-18.3 0-8.2-5-15.5-12.1-17.6l-62.3-18.7c-25.7-7.7-43.7-32.4-43.7-60.1.1-34 26.4-61.5 59.1-62.4zM480 352h-32.5c-19.6 26-44.6 47.7-73 64h63.8c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8h63.8c-28.4-16.3-53.3-38-73-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32z"], + "door-closed": [640, 512, [], "f52a", "M624 448H512V50.8C512 22.78 490.47 0 464 0H175.99c-26.47 0-48 22.78-48 50.8V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM415.99 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32c.01 17.67-14.32 32-32 32z"], + "door-open": [640, 512, [], "f52b", "M624 448h-80V113.45C544 86.19 522.47 64 496 64H384v64h96v384h144c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM312.24 1.01l-192 49.74C105.99 54.44 96 67.7 96 82.92V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h336V33.18c0-21.58-19.56-37.41-39.76-32.17zM264 288c-13.25 0-24-14.33-24-32s10.75-32 24-32 24 14.33 24 32-10.75 32-24 32z"], + "dot-circle": [512, 512, [], "f192", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z"], + "dove": [512, 512, [], "f4ba", "M288 167.2v-28.1c-28.2-36.3-47.1-79.3-54.1-125.2-2.1-13.5-19-18.8-27.8-8.3-21.1 24.9-37.7 54.1-48.9 86.5 34.2 38.3 80 64.6 130.8 75.1zM400 64c-44.2 0-80 35.9-80 80.1v59.4C215.6 197.3 127 133 87 41.8c-5.5-12.5-23.2-13.2-29-.9C41.4 76 32 115.2 32 156.6c0 70.8 34.1 136.9 85.1 185.9 13.2 12.7 26.1 23.2 38.9 32.8l-143.9 36C1.4 414-3.4 426.4 2.6 435.7 20 462.6 63 508.2 155.8 512c8 .3 16-2.6 22.1-7.9l65.2-56.1H320c88.4 0 160-71.5 160-159.9V128l32-64H400zm0 96.1c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"], + "download": [512, 512, [], "f019", "M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"], + "drafting-compass": [512, 512, [], "f568", "M457.01 344.42c-25.05 20.33-52.63 37.18-82.54 49.05l54.38 94.19 53.95 23.04c9.81 4.19 20.89-2.21 22.17-12.8l7.02-58.25-54.98-95.23zm42.49-94.56c4.86-7.67 1.89-17.99-6.05-22.39l-28.07-15.57c-7.48-4.15-16.61-1.46-21.26 5.72C403.01 281.15 332.25 320 256 320c-23.93 0-47.23-4.25-69.41-11.53l67.36-116.68c.7.02 1.34.21 2.04.21s1.35-.19 2.04-.21l51.09 88.5c31.23-8.96 59.56-25.75 82.61-48.92l-51.79-89.71C347.39 128.03 352 112.63 352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96c0 16.63 4.61 32.03 12.05 45.66l-68.3 118.31c-12.55-11.61-23.96-24.59-33.68-39-4.79-7.1-13.97-9.62-21.38-5.33l-27.75 16.07c-7.85 4.54-10.63 14.9-5.64 22.47 15.57 23.64 34.69 44.21 55.98 62.02L0 439.66l7.02 58.25c1.28 10.59 12.36 16.99 22.17 12.8l53.95-23.04 70.8-122.63C186.13 377.28 220.62 384 256 384c99.05 0 190.88-51.01 243.5-134.14zM256 64c17.67 0 32 14.33 32 32s-14.33 32-32 32-32-14.33-32-32 14.33-32 32-32z"], + "drum": [576, 512, [], "f569", "M458.08 120.88l102.39-61.43c15.16-9.09 20.06-28.75 10.97-43.91C562.34.39 542.7-4.53 527.53 4.57l-160.69 96.41A629.32 629.32 0 0 0 288 96C128.94 96 0 153.31 0 224v160.83c0 30.46 24.03 58.4 64 80.37v-96.37c0-17.6 14.4-32 32-32s32 14.4 32 32v122.41c37.4 11.13 81 18.44 128 20.75V400.84c0-17.6 14.4-32 32-32s32 14.4 32 32V512c47-2.31 90.6-9.62 128-20.75V368.84c0-17.6 14.4-32 32-32s32 14.4 32 32v96.37c39.97-21.97 64-49.91 64-80.37V224.01c-.01-42.38-46.54-79.84-117.92-103.13zM288 304c-132.55 0-240-35.82-240-80s107.45-80 240-80c2.34 0 4.62.1 6.94.12l-87.41 52.44c-15.16 9.09-20.06 28.75-10.97 43.91 9.56 15.93 29.51 19.61 43.91 10.97l162.71-97.62C477.55 167.41 528 193.74 528 224.01 528 268.19 420.54 304 288 304z"], + "drum-steelpan": [576, 512, [], "f56a", "M288 32C128.94 32 0 89.31 0 160v192c0 70.69 128.94 128 288 128s288-57.31 288-128V160c0-70.69-128.94-128-288-128zm-82.99 158.36c-4.45 16.61-14.54 30.57-28.31 40.48C100.23 217.46 48 190.78 48 160c0-30.16 50.11-56.39 124.04-70.03l25.6 44.34c9.86 17.09 12.48 36.99 7.37 56.05zM288 240c-21.08 0-41.41-1-60.89-2.7 8.06-26.13 32.15-45.3 60.89-45.3s52.83 19.17 60.89 45.3C329.41 239 309.08 240 288 240zm64-144c0 35.29-28.71 64-64 64s-64-28.71-64-64V82.96c20.4-1.88 41.8-2.96 64-2.96s43.6 1.08 64 2.96V96zm46.93 134.9c-13.81-9.91-23.94-23.9-28.4-40.54-5.11-19.06-2.49-38.96 7.38-56.04l25.65-44.42C477.72 103.5 528 129.79 528 160c0 30.83-52.4 57.54-129.07 70.9z"], + "dumbbell": [640, 512, [], "f44b", "M104 96H56c-13.3 0-24 10.7-24 24v104H8c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h24v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm528 128h-24V120c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v272c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h24c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM456 32h-48c-13.3 0-24 10.7-24 24v168H256V56c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v400c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h128v168c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24z"], + "edit": [576, 512, [], "f044", "M402.6 83.2l90.2 90.2c3.8 3.8 3.8 10 0 13.8L274.4 405.6l-92.8 10.3c-12.4 1.4-22.9-9.1-21.5-21.5l10.3-92.8L388.8 83.2c3.8-3.8 10-3.8 13.8 0zm162-22.9l-48.8-48.8c-15.2-15.2-39.9-15.2-55.2 0l-35.4 35.4c-3.8 3.8-3.8 10 0 13.8l90.2 90.2c3.8 3.8 10 3.8 13.8 0l35.4-35.4c15.2-15.3 15.2-40 0-55.2zM384 346.2V448H64V128h229.8c3.2 0 6.2-1.3 8.5-3.5l40-40c7.6-7.6 2.2-20.5-8.5-20.5H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V306.2c0-10.7-12.9-16-20.5-8.5l-40 40c-2.2 2.3-3.5 5.3-3.5 8.5z"], + "eject": [448, 512, [], "f052", "M448 384v64c0 17.673-14.327 32-32 32H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h384c17.673 0 32 14.327 32 32zM48.053 320h351.886c41.651 0 63.581-49.674 35.383-80.435L259.383 47.558c-19.014-20.743-51.751-20.744-70.767 0L12.67 239.565C-15.475 270.268 6.324 320 48.053 320z"], + "ellipsis-h": [512, 512, [], "f141", "M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z"], + "ellipsis-v": [192, 512, [], "f142", "M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z"], + "envelope": [512, 512, [], "f0e0", "M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"], + "envelope-open": [512, 512, [], "f2b6", "M512 464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V200.724a48 48 0 0 1 18.387-37.776c24.913-19.529 45.501-35.365 164.2-121.511C199.412 29.17 232.797-.347 256 .003c23.198-.354 56.596 29.172 73.413 41.433 118.687 86.137 139.303 101.995 164.2 121.512A48 48 0 0 1 512 200.724V464zm-65.666-196.605c-2.563-3.728-7.7-4.595-11.339-1.907-22.845 16.873-55.462 40.705-105.582 77.079-16.825 12.266-50.21 41.781-73.413 41.43-23.211.344-56.559-29.143-73.413-41.43-50.114-36.37-82.734-60.204-105.582-77.079-3.639-2.688-8.776-1.821-11.339 1.907l-9.072 13.196a7.998 7.998 0 0 0 1.839 10.967c22.887 16.899 55.454 40.69 105.303 76.868 20.274 14.781 56.524 47.813 92.264 47.573 35.724.242 71.961-32.771 92.263-47.573 49.85-36.179 82.418-59.97 105.303-76.868a7.998 7.998 0 0 0 1.839-10.967l-9.071-13.196z"], + "envelope-square": [448, 512, [], "f199", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM178.117 262.104C87.429 196.287 88.353 196.121 64 177.167V152c0-13.255 10.745-24 24-24h272c13.255 0 24 10.745 24 24v25.167c-24.371 18.969-23.434 19.124-114.117 84.938-10.5 7.655-31.392 26.12-45.883 25.894-14.503.218-35.367-18.227-45.883-25.895zM384 217.775V360c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V217.775c13.958 10.794 33.329 25.236 95.303 70.214 14.162 10.341 37.975 32.145 64.694 32.01 26.887.134 51.037-22.041 64.72-32.025 61.958-44.965 81.325-59.406 95.283-70.199z"], + "equals": [448, 512, [], "f52c", "M416 304H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32zm0-192H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"], + "eraser": [512, 512, [], "f12d", "M497.941 273.941c18.745-18.745 18.745-49.137 0-67.882l-160-160c-18.745-18.745-49.136-18.746-67.883 0l-256 256c-18.745 18.745-18.745 49.137 0 67.882l96 96A48.004 48.004 0 0 0 144 480h356c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H355.883l142.058-142.059zm-302.627-62.627l137.373 137.373L265.373 416H150.628l-80-80 124.686-124.686z"], + "euro-sign": [320, 512, [], "f153", "M310.706 413.765c-1.314-6.63-7.835-10.872-14.424-9.369-10.692 2.439-27.422 5.413-45.426 5.413-56.763 0-101.929-34.79-121.461-85.449h113.689a12 12 0 0 0 11.708-9.369l6.373-28.36c1.686-7.502-4.019-14.631-11.708-14.631H115.22c-1.21-14.328-1.414-28.287.137-42.245H261.95a12 12 0 0 0 11.723-9.434l6.512-29.755c1.638-7.484-4.061-14.566-11.723-14.566H130.184c20.633-44.991 62.69-75.03 117.619-75.03 14.486 0 28.564 2.25 37.851 4.145 6.216 1.268 12.347-2.498 14.002-8.623l11.991-44.368c1.822-6.741-2.465-13.616-9.326-14.917C290.217 34.912 270.71 32 249.635 32 152.451 32 74.03 92.252 45.075 176H12c-6.627 0-12 5.373-12 12v29.755c0 6.627 5.373 12 12 12h21.569c-1.009 13.607-1.181 29.287-.181 42.245H12c-6.627 0-12 5.373-12 12v28.36c0 6.627 5.373 12 12 12h30.114C67.139 414.692 145.264 480 249.635 480c26.301 0 48.562-4.544 61.101-7.788 6.167-1.595 10.027-7.708 8.788-13.957l-8.818-44.49z"], + "exchange-alt": [512, 512, [], "f362", "M0 168v-16c0-13.255 10.745-24 24-24h360V80c0-21.367 25.899-32.042 40.971-16.971l80 80c9.372 9.373 9.372 24.569 0 33.941l-80 80C409.956 271.982 384 261.456 384 240v-48H24c-13.255 0-24-10.745-24-24zm488 152H128v-48c0-21.314-25.862-32.08-40.971-16.971l-80 80c-9.372 9.373-9.372 24.569 0 33.941l80 80C102.057 463.997 128 453.437 128 432v-48h360c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z"], + "exclamation": [192, 512, [], "f12a", "M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z"], + "exclamation-circle": [512, 512, [], "f06a", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"], + "exclamation-triangle": [576, 512, [], "f071", "M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"], + "expand": [448, 512, [], "f065", "M0 180V56c0-13.3 10.7-24 24-24h124c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H64v84c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12zM288 44v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V56c0-13.3-10.7-24-24-24H300c-6.6 0-12 5.4-12 12zm148 276h-40c-6.6 0-12 5.4-12 12v84h-84c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24V332c0-6.6-5.4-12-12-12zM160 468v-40c0-6.6-5.4-12-12-12H64v-84c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v124c0 13.3 10.7 24 24 24h124c6.6 0 12-5.4 12-12z"], + "expand-arrows-alt": [448, 512, [], "f31e", "M448.1 344v112c0 13.3-10.7 24-24 24h-112c-21.4 0-32.1-25.9-17-41l36.2-36.2L224 295.6 116.8 402.9 153 439c15.1 15.1 4.4 41-17 41H24c-13.3 0-24-10.7-24-24V344c0-21.4 25.9-32.1 41-17l36.2 36.2L184.5 256 77.2 148.7 41 185c-15.1 15.1-41 4.4-41-17V56c0-13.3 10.7-24 24-24h112c21.4 0 32.1 25.9 17 41l-36.2 36.2L224 216.4l107.3-107.3L295.1 73c-15.1-15.1-4.4-41 17-41h112c13.3 0 24 10.7 24 24v112c0 21.4-25.9 32.1-41 17l-36.2-36.2L263.6 256l107.3 107.3 36.2-36.2c15.1-15.2 41-4.5 41 16.9z"], + "external-link-alt": [576, 512, [], "f35d", "M576 24v127.984c0 21.461-25.96 31.98-40.971 16.971l-35.707-35.709-243.523 243.523c-9.373 9.373-24.568 9.373-33.941 0l-22.627-22.627c-9.373-9.373-9.373-24.569 0-33.941L442.756 76.676l-35.703-35.705C391.982 25.9 402.656 0 424.024 0H552c13.255 0 24 10.745 24 24zM407.029 270.794l-16 16A23.999 23.999 0 0 0 384 303.765V448H64V128h264a24.003 24.003 0 0 0 16.97-7.029l16-16C376.089 89.851 365.381 64 344 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V287.764c0-21.382-25.852-32.09-40.971-16.97z"], + "external-link-square-alt": [448, 512, [], "f360", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-88 16H248.029c-21.313 0-32.08 25.861-16.971 40.971l31.984 31.987L67.515 364.485c-4.686 4.686-4.686 12.284 0 16.971l31.029 31.029c4.687 4.686 12.285 4.686 16.971 0l195.526-195.526 31.988 31.991C358.058 263.977 384 253.425 384 231.979V120c0-13.255-10.745-24-24-24z"], + "eye": [576, 512, [], "f06e", "M569.354 231.631C512.969 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-75.162 0-136-60.827-136-136 0-75.162 60.826-136 136-136 75.162 0 136 60.826 136 136 0 75.162-60.826 136-136 136zm104-136c0 57.438-46.562 104-104 104s-104-46.562-104-104c0-17.708 4.431-34.379 12.236-48.973l-.001.032c0 23.651 19.173 42.823 42.824 42.823s42.824-19.173 42.824-42.823c0-23.651-19.173-42.824-42.824-42.824l-.032.001C253.621 156.431 270.292 152 288 152c57.438 0 104 46.562 104 104z"], + "eye-dropper": [512, 512, [], "f1fb", "M50.75 333.25c-12 12-18.75 28.28-18.75 45.26V424L0 480l32 32 56-32h45.49c16.97 0 33.25-6.74 45.25-18.74l126.64-126.62-128-128L50.75 333.25zM483.88 28.12c-37.47-37.5-98.28-37.5-135.75 0l-77.09 77.09-13.1-13.1c-9.44-9.44-24.65-9.31-33.94 0l-40.97 40.97c-9.37 9.37-9.37 24.57 0 33.94l161.94 161.94c9.44 9.44 24.65 9.31 33.94 0L419.88 288c9.37-9.37 9.37-24.57 0-33.94l-13.1-13.1 77.09-77.09c37.51-37.48 37.51-98.26.01-135.75z"], + "eye-slash": [576, 512, [], "f070", "M286.693 391.984l32.579 46.542A333.958 333.958 0 0 1 288 440C168.19 440 63.031 376.051 6.646 280.369a47.999 47.999 0 0 1 0-48.739c24.023-40.766 56.913-75.775 96.024-102.537l57.077 81.539C154.736 224.82 152 240.087 152 256c0 74.736 60.135 135.282 134.693 135.984zm282.661-111.615c-31.667 53.737-78.747 97.46-135.175 125.475l.011.015 41.47 59.2c7.6 10.86 4.96 25.82-5.9 33.42l-13.11 9.18c-10.86 7.6-25.82 4.96-33.42-5.9L100.34 46.94c-7.6-10.86-4.96-25.82 5.9-33.42l13.11-9.18c10.86-7.6 25.82-4.96 33.42 5.9l51.038 72.617C230.68 75.776 258.905 72 288 72c119.81 0 224.969 63.949 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM424 256c0-75.174-60.838-136-136-136-17.939 0-35.056 3.473-50.729 9.772l19.299 27.058c25.869-8.171 55.044-6.163 80.4 7.41h-.03c-23.65 0-42.82 19.17-42.82 42.82 0 23.626 19.147 42.82 42.82 42.82 23.65 0 42.82-19.17 42.82-42.82v-.03c18.462 34.49 16.312 77.914-8.25 110.95v.01l19.314 27.061C411.496 321.2 424 290.074 424 256zM262.014 356.727l-77.53-110.757c-5.014 52.387 29.314 98.354 77.53 110.757z"], + "fast-backward": [512, 512, [], "f049", "M0 436V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v151.9L235.5 71.4C256.1 54.3 288 68.6 288 96v131.9L459.5 71.4C480.1 54.3 512 68.6 512 96v320c0 27.4-31.9 41.7-52.5 24.6L288 285.3V416c0 27.4-31.9 41.7-52.5 24.6L64 285.3V436c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12z"], + "fast-forward": [512, 512, [], "f050", "M512 76v360c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V284.1L276.5 440.6c-20.6 17.2-52.5 2.8-52.5-24.6V284.1L52.5 440.6C31.9 457.8 0 443.4 0 416V96c0-27.4 31.9-41.7 52.5-24.6L224 226.8V96c0-27.4 31.9-41.7 52.5-24.6L448 226.8V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12z"], + "fax": [512, 512, [], "f1ac", "M128 144v320c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V144c0-26.51 21.49-48 48-48h32c26.51 0 48 21.49 48 48zm384 64v256c0 26.51-21.49 48-48 48H192c-26.51 0-48-21.49-48-48V40c0-22.091 17.909-40 40-40h207.432a39.996 39.996 0 0 1 28.284 11.716l48.569 48.569A39.999 39.999 0 0 1 480 88.568v74.174c18.641 6.591 32 24.36 32 45.258zm-320-16h240V96h-24c-13.203 0-24-10.797-24-24V48H192v144zm96 204c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm128 128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40z"], + "feather": [512, 512, [], "f52d", "M467.14 44.84c-62.55-62.48-161.67-64.78-252.28 25.73-78.61 78.52-60.98 60.92-85.75 85.66-60.46 60.39-70.39 150.83-63.64 211.17l178.44-178.25c6.26-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.6 9.37 33.98 0l66.1-66.03C159.42 454.65 279 457.11 353.95 384h-98.19l147.57-49.14c49.99-49.93 36.38-36.18 46.31-46.86h-97.78l131.54-43.8c45.44-74.46 34.31-148.84-16.26-199.36z"], + "feather-alt": [512, 512, [], "f56b", "M512 0C460.22 3.56 96.44 38.2 71.01 287.61c-3.09 26.66-4.84 53.44-5.99 80.24l178.87-178.69c6.25-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.59 9.37 33.98 0l57.13-57.07c42.09-.14 84.15-2.53 125.96-7.36 53.48-5.44 97.02-26.47 132.58-56.54H255.74l146.79-48.88c11.25-14.89 21.37-30.71 30.45-47.12h-81.14l106.54-53.21C500.29 132.86 510.19 26.26 512 0z"], + "female": [256, 512, [], "f182", "M128 0c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64S92.654 0 128 0m119.283 354.179l-48-192A24 24 0 0 0 176 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H80a24 24 0 0 0-23.283 18.179l-48 192C4.935 369.305 16.383 384 32 384h56v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V384h56c15.591 0 27.071-14.671 23.283-29.821z"], + "fighter-jet": [640, 512, [], "f0fb", "M544 224l-128-16-48-16h-24L227.158 44h39.509C278.333 44 288 41.375 288 38s-9.667-6-21.333-6H152v12h16v164h-48l-66.667-80H18.667L8 138.667V208h8v16h48v2.666l-64 8v42.667l64 8V288H16v16H8v69.333L18.667 384h34.667L120 304h48v164h-16v12h114.667c11.667 0 21.333-2.625 21.333-6s-9.667-6-21.333-6h-39.509L344 320h24l48-16 128-16c96-21.333 96-26.583 96-32 0-5.417 0-10.667-96-32z"], + "file": [384, 512, [], "f15b", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "file-alt": [384, 512, [], "f15c", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "file-archive": [384, 512, [], "f1c6", "M224 136V0h-63.6v32h-32V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM95.9 32h32v32h-32V32zm32.3 384c-33.2 0-58-30.4-51.4-62.9L96.4 256v-32h32v-32h-32v-32h32v-32h-32V96h32V64h32v32h-32v32h32v32h-32v32h32v32h-32v32h22.1c5.7 0 10.7 4.1 11.8 9.7l17.3 87.7c6.4 32.4-18.4 62.6-51.4 62.6zm32.7-53c0 14.9-14.5 27-32.4 27S96 378 96 363c0-14.9 14.5-27 32.4-27s32.5 12.1 32.5 27zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "file-audio": [384, 512, [], "f1c7", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "file-code": [384, 512, [], "f1c9", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zM123.206 400.505a5.4 5.4 0 0 1-7.633.246l-64.866-60.812a5.4 5.4 0 0 1 0-7.879l64.866-60.812a5.4 5.4 0 0 1 7.633.246l19.579 20.885a5.4 5.4 0 0 1-.372 7.747L101.65 336l40.763 35.874a5.4 5.4 0 0 1 .372 7.747l-19.579 20.884zm51.295 50.479l-27.453-7.97a5.402 5.402 0 0 1-3.681-6.692l61.44-211.626a5.402 5.402 0 0 1 6.692-3.681l27.452 7.97a5.4 5.4 0 0 1 3.68 6.692l-61.44 211.626a5.397 5.397 0 0 1-6.69 3.681zm160.792-111.045l-64.866 60.812a5.4 5.4 0 0 1-7.633-.246l-19.58-20.885a5.4 5.4 0 0 1 .372-7.747L284.35 336l-40.763-35.874a5.4 5.4 0 0 1-.372-7.747l19.58-20.885a5.4 5.4 0 0 1 7.633-.246l64.866 60.812a5.4 5.4 0 0 1-.001 7.879z"], + "file-contract": [384, 512, [], "f56c", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm192.81 248H304c8.84 0 16 7.16 16 16s-7.16 16-16 16h-47.19c-16.45 0-31.27-9.14-38.64-23.86-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34a15.986 15.986 0 0 1-14.31 8.84c-.38 0-.75-.02-1.14-.05-6.45-.45-12-4.75-14.03-10.89L144 354.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.77-16.19 54.05-9.7 66 14.16 2.02 4.06 5.96 6.5 10.16 6.5zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"], + "file-download": [384, 512, [], "f56d", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm76.45 211.36l-96.42 95.7c-6.65 6.61-17.39 6.61-24.04 0l-96.42-95.7C73.42 337.29 80.54 320 94.82 320H160v-80c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v80h65.18c14.28 0 21.4 17.29 11.27 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"], + "file-excel": [384, 512, [], "f1c3", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm60.1 106.5L224 336l60.1 93.5c5.1 8-.6 18.5-10.1 18.5h-34.9c-4.4 0-8.5-2.4-10.6-6.3C208.9 405.5 192 373 192 373c-6.4 14.8-10 20-36.6 68.8-2.1 3.9-6.1 6.3-10.5 6.3H110c-9.5 0-15.2-10.5-10.1-18.5l60.3-93.5-60.3-93.5c-5.2-8 .6-18.5 10.1-18.5h34.8c4.4 0 8.5 2.4 10.6 6.3 26.1 48.8 20 33.6 36.6 68.5 0 0 6.1-11.7 36.6-68.5 2.1-3.9 6.2-6.3 10.6-6.3H274c9.5-.1 15.2 10.4 10.1 18.4zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "file-export": [576, 512, [], "f56e", "M384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zM192 336v-32c0-8.84 7.16-16 16-16h176V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V352H208c-8.84 0-16-7.16-16-16zm379.05-28.02l-95.7-96.43c-10.06-10.14-27.36-3.01-27.36 11.27V288H384v64h63.99v65.18c0 14.28 17.29 21.41 27.36 11.27l95.7-96.42c6.6-6.66 6.6-17.4 0-24.05z"], + "file-image": [384, 512, [], "f1c5", "M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z"], + "file-import": [512, 512, [], "f56f", "M16 288c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h112v-64H16zm336-152V0H152c-13.3 0-24 10.7-24 24v264h127.99v-65.18c0-14.28 17.29-21.41 27.36-11.27l95.7 96.43c6.6 6.65 6.6 17.39 0 24.04l-95.7 96.42c-10.06 10.14-27.36 3.01-27.36-11.27V352H128v136c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H376c-13.2 0-24-10.8-24-24zm153-31L407.1 7c-4.5-4.5-10.6-7-17-7H384v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"], + "file-invoice": [384, 512, [], "f570", "M288 256H96v64h192v-64zm89-151L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm256 304c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-200v96c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-96c0-8.84 7.16-16 16-16h224c8.84 0 16 7.16 16 16z"], + "file-invoice-dollar": [384, 512, [], "f571", "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 80v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8zm144 263.88V440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-24.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V232c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v24.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07z"], + "file-medical": [384, 512, [], "f477", "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 160v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8z"], + "file-medical-alt": [448, 512, [], "f478", "M288 136V0H88C74.7 0 64 10.7 64 24v232H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h140.9c3 0 5.8 1.7 7.2 4.4l19.9 39.8 56.8-113.7c2.9-5.9 11.4-5.9 14.3 0l34.7 69.5H352c8.8 0 16 7.2 16 16s-7.2 16-16 16h-89.9L240 275.8l-56.8 113.7c-2.9 5.9-11.4 5.9-14.3 0L134.1 320H64v168c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H312c-13.2 0-24-10.8-24-24zm153-31L343.1 7c-4.5-4.5-10.6-7-17-7H320v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"], + "file-pdf": [384, 512, [], "f1c1", "M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z"], + "file-powerpoint": [384, 512, [], "f1c4", "M193.7 271.2c8.8 0 15.5 2.7 20.3 8.1 9.6 10.9 9.8 32.7-.2 44.1-4.9 5.6-11.9 8.5-21.1 8.5h-26.9v-60.7h27.9zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm53 165.2c0 90.3-88.8 77.6-111.1 77.6V436c0 6.6-5.4 12-12 12h-30.8c-6.6 0-12-5.4-12-12V236.2c0-6.6 5.4-12 12-12h81c44.5 0 72.9 32.8 72.9 77z"], + "file-prescription": [384, 512, [], "f572", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm68.53 179.48l11.31 11.31c6.25 6.25 6.25 16.38 0 22.63l-29.9 29.9L304 409.38c6.25 6.25 6.25 16.38 0 22.63l-11.31 11.31c-6.25 6.25-16.38 6.25-22.63 0L240 413.25l-30.06 30.06c-6.25 6.25-16.38 6.25-22.63 0L176 432c-6.25-6.25-6.25-16.38 0-22.63l30.06-30.06L146.74 320H128v48c0 8.84-7.16 16-16 16H96c-8.84 0-16-7.16-16-16V208c0-8.84 7.16-16 16-16h80c35.35 0 64 28.65 64 64 0 24.22-13.62 45.05-33.46 55.92L240 345.38l29.9-29.9c6.25-6.25 16.38-6.25 22.63 0zM176 272h-48v-32h48c8.82 0 16 7.18 16 16s-7.18 16-16 16zm208-150.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "file-signature": [576, 512, [], "f573", "M218.17 424.14c-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34c-6.37 12.78-25.03 11.37-29.48-2.09L144 386.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.75-16.19 54.06-9.7 66 14.16 1.89 3.78 5.49 5.95 9.36 6.26v-82.12l128-127.09V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24v-40l-128-.11c-16.12-.31-30.58-9.28-37.83-23.75zM384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zm-96 225.06V416h68.99l161.68-162.78-67.88-67.88L288 346.96zm280.54-179.63l-31.87-31.87c-9.94-9.94-26.07-9.94-36.01 0l-27.25 27.25 67.88 67.88 27.25-27.25c9.95-9.94 9.95-26.07 0-36.01z"], + "file-upload": [384, 512, [], "f574", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm65.18 216.01H224v80c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-80H94.82c-14.28 0-21.41-17.29-11.27-27.36l96.42-95.7c6.65-6.61 17.39-6.61 24.04 0l96.42 95.7c10.15 10.07 3.03 27.36-11.25 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"], + "file-video": [384, 512, [], "f1c8", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z"], + "file-word": [384, 512, [], "f1c2", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm57.1 120H305c7.7 0 13.4 7.1 11.7 14.7l-38 168c-1.2 5.5-6.1 9.3-11.7 9.3h-38c-5.5 0-10.3-3.8-11.6-9.1-25.8-103.5-20.8-81.2-25.6-110.5h-.5c-1.1 14.3-2.4 17.4-25.6 110.5-1.3 5.3-6.1 9.1-11.6 9.1H117c-5.6 0-10.5-3.9-11.7-9.4l-37.8-168c-1.7-7.5 4-14.6 11.7-14.6h24.5c5.7 0 10.7 4 11.8 9.7 15.6 78 20.1 109.5 21 122.2 1.6-10.2 7.3-32.7 29.4-122.7 1.3-5.4 6.1-9.1 11.7-9.1h29.1c5.6 0 10.4 3.8 11.7 9.2 24 100.4 28.8 124 29.6 129.4-.2-11.2-2.6-17.8 21.6-129.2 1-5.6 5.9-9.5 11.5-9.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "fill": [512, 512, [], "f575", "M502.63 217.06L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.77c-6.24-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.63l86.19 86.18-94.76 94.76c-37.49 37.49-37.49 98.26 0 135.75l117.19 117.19c18.75 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.88-28.12l221.57-221.57c12.49-12.5 12.49-32.76 0-45.26zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.61 58.6c12.49 12.49 32.75 12.49 45.24 0 12.49-12.49 12.49-32.75 0-45.24l-58.61-58.6 58.95-58.95 162.45 162.44-48.35 48.34z"], + "fill-drip": [576, 512, [], "f576", "M512 320s-64 92.65-64 128c0 35.35 28.66 64 64 64s64-28.65 64-64-64-128-64-128zm-9.37-102.94L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.76c-6.25-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.62l86.19 86.18-94.76 94.76c-37.49 37.48-37.49 98.26 0 135.75l117.19 117.19c18.74 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.87-28.12l221.57-221.57c12.5-12.5 12.5-32.75.01-45.25zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.6 58.6c12.49 12.49 32.75 12.49 45.24 0s12.49-32.75 0-45.24l-58.6-58.6 58.95-58.95 162.44 162.44-48.34 48.34z"], + "film": [512, 512, [], "f008", "M488 64h-8v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V64H96v20c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12V64h-8C10.7 64 0 74.7 0 88v336c0 13.3 10.7 24 24 24h8v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h320v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h8c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM96 372c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm272 208c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm0-168c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm112 152c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z"], + "filter": [512, 512, [], "f0b0", "M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z"], + "fingerprint": [512, 512, [], "f577", "M256.12 245.96c-13.25 0-24 10.74-24 24 1.14 72.25-8.14 141.9-27.7 211.55-2.73 9.72 2.15 30.49 23.12 30.49 10.48 0 20.11-6.92 23.09-17.52 13.53-47.91 31.04-125.41 29.48-224.52.01-13.25-10.73-24-23.99-24zm-.86-81.73C194 164.16 151.25 211.3 152.1 265.32c.75 47.94-3.75 95.91-13.37 142.55-2.69 12.98 5.67 25.69 18.64 28.36 13.05 2.67 25.67-5.66 28.36-18.64 10.34-50.09 15.17-101.58 14.37-153.02-.41-25.95 19.92-52.49 54.45-52.34 31.31.47 57.15 25.34 57.62 55.47.77 48.05-2.81 96.33-10.61 143.55-2.17 13.06 6.69 25.42 19.76 27.58 19.97 3.33 26.81-15.1 27.58-19.77 8.28-50.03 12.06-101.21 11.27-152.11-.88-55.8-47.94-101.88-104.91-102.72zm-110.69-19.78c-10.3-8.34-25.37-6.8-33.76 3.48-25.62 31.5-39.39 71.28-38.75 112 .59 37.58-2.47 75.27-9.11 112.05-2.34 13.05 6.31 25.53 19.36 27.89 20.11 3.5 27.07-14.81 27.89-19.36 7.19-39.84 10.5-80.66 9.86-121.33-.47-29.88 9.2-57.88 28-80.97 8.35-10.28 6.79-25.39-3.49-33.76zm109.47-62.33c-15.41-.41-30.87 1.44-45.78 4.97-12.89 3.06-20.87 15.98-17.83 28.89 3.06 12.89 16 20.83 28.89 17.83 11.05-2.61 22.47-3.77 34-3.69 75.43 1.13 137.73 61.5 138.88 134.58.59 37.88-1.28 76.11-5.58 113.63-1.5 13.17 7.95 25.08 21.11 26.58 16.72 1.95 25.51-11.88 26.58-21.11a929.06 929.06 0 0 0 5.89-119.85c-1.56-98.75-85.07-180.33-186.16-181.83zm252.07 121.45c-2.86-12.92-15.51-21.2-28.61-18.27-12.94 2.86-21.12 15.66-18.26 28.61 4.71 21.41 4.91 37.41 4.7 61.6-.11 13.27 10.55 24.09 23.8 24.2h.2c13.17 0 23.89-10.61 24-23.8.18-22.18.4-44.11-5.83-72.34zm-40.12-90.72C417.29 43.46 337.6 1.29 252.81.02 183.02-.82 118.47 24.91 70.46 72.94 24.09 119.37-.9 181.04.14 246.65l-.12 21.47c-.39 13.25 10.03 24.31 23.28 24.69.23.02.48.02.72.02 12.92 0 23.59-10.3 23.97-23.3l.16-23.64c-.83-52.5 19.16-101.86 56.28-139 38.76-38.8 91.34-59.67 147.68-58.86 69.45 1.03 134.73 35.56 174.62 92.39 7.61 10.86 22.56 13.45 33.42 5.86 10.84-7.62 13.46-22.59 5.84-33.43z"], + "fire": [384, 512, [], "f06d", "M216 23.858c0-23.802-30.653-32.765-44.149-13.038C48 191.851 224 200 224 288c0 35.629-29.114 64.458-64.85 63.994C123.98 351.538 96 322.22 96 287.046v-85.51c0-21.703-26.471-32.225-41.432-16.504C27.801 213.158 0 261.332 0 320c0 105.869 86.131 192 192 192s192-86.131 192-192c0-170.29-168-193.003-168-296.142z"], + "fire-extinguisher": [448, 512, [], "f134", "M434.027 26.329l-168 28C254.693 56.218 256 67.8 256 72h-58.332C208.353 36.108 181.446 0 144 0c-39.435 0-66.368 39.676-52.228 76.203-52.039 13.051-75.381 54.213-90.049 90.884-4.923 12.307 1.063 26.274 13.37 31.197 12.317 4.926 26.279-1.075 31.196-13.37C75.058 112.99 106.964 120 168 120v27.076c-41.543 10.862-72 49.235-72 94.129V488c0 13.255 10.745 24 24 24h144c13.255 0 24-10.745 24-24V240c0-44.731-30.596-82.312-72-92.97V120h40c0 2.974-1.703 15.716 10.027 17.671l168 28C441.342 166.89 448 161.25 448 153.834V38.166c0-7.416-6.658-13.056-13.973-11.837zM144 72c-8.822 0-16-7.178-16-16s7.178-16 16-16 16 7.178 16 16-7.178 16-16 16z"], + "first-aid": [576, 512, [], "f479", "M0 80v352c0 26.5 21.5 48 48 48h48V32H48C21.5 32 0 53.5 0 80zm128 400h320V32H128v448zm64-248c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48zM528 32h-48v448h48c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"], + "fish": [576, 512, [], "f578", "M327.1 96c-89.97 0-168.54 54.77-212.27 101.63L27.5 131.58c-12.13-9.18-30.24.6-27.14 14.66L24.54 256 .35 365.77c-3.1 14.06 15.01 23.83 27.14 14.66l87.33-66.05C158.55 361.23 237.13 416 327.1 416 464.56 416 576 288 576 256S464.56 96 327.1 96zm87.43 184c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24 13.26 0 24 10.74 24 24 0 13.25-10.75 24-24 24z"], + "flag": [512, 512, [], "f024", "M349.565 98.783C295.978 98.783 251.721 64 184.348 64c-24.955 0-47.309 4.384-68.045 12.013a55.947 55.947 0 0 0 3.586-23.562C118.117 24.015 94.806 1.206 66.338.048 34.345-1.254 8 24.296 8 56c0 19.026 9.497 35.825 24 45.945V488c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-94.4c28.311-12.064 63.582-22.122 114.435-22.122 53.588 0 97.844 34.783 165.217 34.783 48.169 0 86.667-16.294 122.505-40.858C506.84 359.452 512 349.571 512 339.045v-243.1c0-23.393-24.269-38.87-45.485-29.016-34.338 15.948-76.454 31.854-116.95 31.854z"], + "flag-checkered": [512, 512, [], "f11e", "M466.515 66.928C487.731 57.074 512 72.551 512 95.944v243.1c0 10.526-5.161 20.407-13.843 26.358-35.837 24.564-74.335 40.858-122.505 40.858-67.373 0-111.63-34.783-165.217-34.783-50.853 0-86.124 10.058-114.435 22.122V488c0 13.255-10.745 24-24 24H56c-13.255 0-24-10.745-24-24V101.945C17.497 91.825 8 75.026 8 56 8 24.296 34.345-1.254 66.338.048c28.468 1.158 51.779 23.968 53.551 52.404.52 8.342-.81 16.31-3.586 23.562C137.039 68.384 159.393 64 184.348 64c67.373 0 111.63 34.783 165.217 34.783 40.496 0 82.612-15.906 116.95-31.855zM96 134.63v70.49c29-10.67 51.18-17.83 73.6-20.91v-71.57c-23.5 2.17-40.44 9.79-73.6 21.99zm220.8 9.19c-26.417-4.672-49.886-13.979-73.6-21.34v67.42c24.175 6.706 47.566 16.444 73.6 22.31v-68.39zm-147.2 40.39v70.04c32.796-2.978 53.91-.635 73.6 3.8V189.9c-25.247-7.035-46.581-9.423-73.6-5.69zm73.6 142.23c26.338 4.652 49.732 13.927 73.6 21.34v-67.41c-24.277-6.746-47.54-16.45-73.6-22.32v68.39zM96 342.1c23.62-8.39 47.79-13.84 73.6-16.56v-71.29c-26.11 2.35-47.36 8.04-73.6 17.36v70.49zm368-221.6c-21.3 8.85-46.59 17.64-73.6 22.47v71.91c27.31-4.36 50.03-14.1 73.6-23.89V120.5zm0 209.96v-70.49c-22.19 14.2-48.78 22.61-73.6 26.02v71.58c25.07-2.38 48.49-11.04 73.6-27.11zM316.8 212.21v68.16c25.664 7.134 46.616 9.342 73.6 5.62v-71.11c-25.999 4.187-49.943 2.676-73.6-2.67z"], + "flask": [448, 512, [], "f0c3", "M437.2 403.5L320 215V64h8c13.3 0 24-10.7 24-24V24c0-13.3-10.7-24-24-24H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h8v151L10.8 403.5C-18.5 450.6 15.3 512 70.9 512h306.2c55.7 0 89.4-61.5 60.1-108.5zM137.9 320l48.2-77.6c3.7-5.2 5.8-11.6 5.8-18.4V64h64v160c0 6.9 2.2 13.2 5.8 18.4l48.2 77.6h-172z"], + "flushed": [496, 512, [], "f579", "M344 200c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-192 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM80 224c0-39.8 32.2-72 72-72s72 32.2 72 72-32.2 72-72 72-72-32.2-72-72zm232 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-104c-39.8 0-72-32.2-72-72s32.2-72 72-72 72 32.2 72 72-32.2 72-72 72z"], + "folder": [512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z"], + "folder-open": [576, 512, [], "f07c", "M572.694 292.093L500.27 416.248A63.997 63.997 0 0 1 444.989 448H45.025c-18.523 0-30.064-20.093-20.731-36.093l72.424-124.155A64 64 0 0 1 152 256h399.964c18.523 0 30.064 20.093 20.73 36.093zM152 224h328v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v278.046l69.077-118.418C86.214 242.25 117.989 224 152 224z"], + "font": [448, 512, [], "f031", "M152 416h-24.013l26.586-80.782H292.8L319.386 416H296c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-26.739L275.495 42.746A16 16 0 0 0 260.382 32h-72.766a16 16 0 0 0-15.113 10.746L42.739 416H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm64.353-271.778c4.348-15.216 6.61-28.156 7.586-34.644.839 6.521 2.939 19.476 7.727 34.706l41.335 124.006h-98.619l41.971-124.068z"], + "font-awesome-logo-full": [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"], + "football-ball": [496, 512, [], "f44e", "M481.5 60.3c-4.8-18.2-19.1-32.5-37.3-37.4C420.3 16.5 383 8.9 339.4 8L496 164.8c-.8-43.5-8.2-80.6-14.5-104.5zm-467 391.4c4.8 18.2 19.1 32.5 37.3 37.4 23.9 6.4 61.2 14 104.8 14.9L0 347.2c.8 43.5 8.2 80.6 14.5 104.5zM4.2 283.4L220.4 500c132.5-19.4 248.8-118.7 271.5-271.4L275.6 12C143.1 31.4 26.8 130.7 4.2 283.4zm317.3-123.6c3.1-3.1 8.2-3.1 11.3 0l11.3 11.3c3.1 3.1 3.1 8.2 0 11.3l-28.3 28.3 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-22.6 22.7 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L248 278.6l-22.6 22.6 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-28.3 28.3c-3.1 3.1-8.2 3.1-11.3 0l-11.3-11.3c-3.1-3.1-3.1-8.2 0-11.3l28.3-28.3-28.3-28.2c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 28.3-28.5z"], + "forward": [512, 512, [], "f04e", "M500.5 231.4l-192-160C287.9 54.3 256 68.6 256 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2zm-256 0l-192-160C31.9 54.3 0 68.6 0 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2z"], + "frog": [576, 512, [], "f52e", "M446.53 97.43C439.67 60.23 407.19 32 368 32c-39.23 0-71.72 28.29-78.54 65.54C126.75 112.96-.5 250.12 0 416.98.11 451.9 29.08 480 64 480h304c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-79.49l35.8-48.33c24.14-36.23 10.35-88.28-33.71-106.6-23.89-9.93-51.55-4.65-72.24 10.88l-32.76 24.59c-7.06 5.31-17.09 3.91-22.41-3.19-5.3-7.08-3.88-17.11 3.19-22.41l34.78-26.09c36.84-27.66 88.28-27.62 125.13 0 10.87 8.15 45.87 39.06 40.8 93.21L469.62 480H560c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-53.63l-98.52-104.68 154.44-86.65A58.16 58.16 0 0 0 576 189.94c0-21.4-11.72-40.95-30.48-51.23-40.56-22.22-98.99-41.28-98.99-41.28zM368 136c-13.26 0-24-10.75-24-24 0-13.26 10.74-24 24-24 13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24z"], + "frown": [496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm170.2 218.2C315.8 367.4 282.9 352 248 352s-67.8 15.4-90.2 42.2c-13.5 16.3-38.1-4.2-24.6-20.5C161.7 339.6 203.6 320 248 320s86.3 19.6 114.7 53.8c13.6 16.2-11 36.7-24.5 20.4z"], + "frown-open": [496, 512, [], "f57a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm187.3 183.3c-31.2-9.6-59.4-15.3-75.3-15.3s-44.1 5.7-75.3 15.3c-11.5 3.5-22.5-6.3-20.5-18.1 7-40 60.1-61.2 95.8-61.2s88.8 21.3 95.8 61.2c2 11.9-9.1 21.6-20.5 18.1zM328 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "futbol": [512, 512, [], "f1e3", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-48 0l-.003-.282-26.064 22.741-62.679-58.5 16.454-84.355 34.303 3.072c-24.889-34.216-60.004-60.089-100.709-73.141l13.651 31.939L256 139l-74.953-41.525 13.651-31.939c-40.631 13.028-75.78 38.87-100.709 73.141l34.565-3.073 16.192 84.355-62.678 58.5-26.064-22.741-.003.282c0 43.015 13.497 83.952 38.472 117.991l7.704-33.897 85.138 10.447 36.301 77.826-29.902 17.786c40.202 13.122 84.29 13.148 124.572 0l-29.902-17.786 36.301-77.826 85.138-10.447 7.704 33.897C442.503 339.952 456 299.015 456 256zm-248.102 69.571l-29.894-91.312L256 177.732l77.996 56.527-29.622 91.312h-96.476z"], + "gamepad": [640, 512, [], "f11b", "M480 96H160C71.6 96 0 167.6 0 256s71.6 160 160 160c44.8 0 85.2-18.4 114.2-48h91.5c29 29.6 69.5 48 114.2 48 88.4 0 160-71.6 160-160S568.4 96 480 96zM256 276c0 6.6-5.4 12-12 12h-52v52c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-52H76c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h52v-52c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h52c6.6 0 12 5.4 12 12v40zm184 68c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-80c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"], + "gas-pump": [512, 512, [], "f52f", "M336 448H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm157.2-340.7l-81-81c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-6.2 6.2-6.2 16.4 0 22.6L416 97.9V160c0 28.1 20.9 51.3 48 55.2V376c0 13.2-10.8 24-24 24s-24-10.8-24-24v-32c0-48.6-39.4-88-88-88h-8V64c0-35.3-28.7-64-64-64H96C60.7 0 32 28.7 32 64v352h288V304h8c22.1 0 40 17.9 40 40v27.8c0 37.7 27 72 64.5 75.9 43 4.3 79.5-29.5 79.5-71.7V152.6c0-17-6.8-33.3-18.8-45.3zM256 192H96V64h160v128z"], + "gavel": [512, 512, [], "f0e3", "M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z"], + "gem": [576, 512, [], "f3a5", "M485.5 0L576 160H474.9L405.7 0h79.8zm-128 0l69.2 160H149.3L218.5 0h139zm-267 0h79.8l-69.2 160H0L90.5 0zM0 192h100.7l123 251.7c1.5 3.1-2.7 5.9-5 3.3L0 192zm148.2 0h279.6l-137 318.2c-1 2.4-4.5 2.4-5.5 0L148.2 192zm204.1 251.7l123-251.7H576L357.3 446.9c-2.3 2.7-6.5-.1-5-3.2z"], + "genderless": [288, 512, [], "f22d", "M144 176c44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80 35.9-80 80-80m0-64C64.5 112 0 176.5 0 256s64.5 144 144 144 144-64.5 144-144-64.5-144-144-144z"], + "gift": [512, 512, [], "f06b", "M32 448c0 17.7 14.3 32 32 32h160V320H32v128zm448-288h-42.1c6.2-12.1 10.1-25.5 10.1-40 0-48.5-39.5-88-88-88-41.6 0-68.5 21.3-103 68.3-34.5-47-61.4-68.3-103-68.3-48.5 0-88 39.5-88 88 0 14.5 3.8 27.9 10.1 40H32c-17.7 0-32 14.3-32 32v80c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-80c0-17.7-14.3-32-32-32zm-326.1 0c-22.1 0-40-17.9-40-40s17.9-40 40-40c19.9 0 34.6 3.3 86.1 80h-86.1zm206.1 0h-86.1c51.4-76.5 65.7-80 86.1-80 22.1 0 40 17.9 40 40s-17.9 40-40 40zm-72 320h160c17.7 0 32-14.3 32-32V320H288v160z"], + "glass-martini": [512, 512, [], "f000", "M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6z"], + "glass-martini-alt": [512, 512, [], "f57b", "M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6zM443.77 48l-48 48H116.24l-48-48h375.53z"], + "glasses": [576, 512, [], "f530", "M574.1 280.37L528.75 98.66c-5.91-23.7-21.59-44.05-43-55.81-21.44-11.73-46.97-14.11-70.19-6.33l-15.25 5.08c-8.39 2.79-12.92 11.86-10.12 20.24l5.06 15.18c2.79 8.38 11.85 12.91 20.23 10.12l13.18-4.39c10.87-3.62 23-3.57 33.16 1.73 10.29 5.37 17.57 14.56 20.37 25.82l38.46 153.82c-22.19-6.81-49.79-12.46-81.2-12.46-34.77 0-73.98 7.02-114.85 26.74h-73.18c-40.87-19.74-80.08-26.75-114.86-26.75-31.42 0-59.02 5.65-81.21 12.46l38.46-153.83c2.79-11.25 10.09-20.45 20.38-25.81 10.16-5.3 22.28-5.35 33.15-1.73l13.17 4.39c8.38 2.79 17.44-1.74 20.23-10.12l5.06-15.18c2.8-8.38-1.73-17.45-10.12-20.24l-15.25-5.08c-23.22-7.78-48.75-5.41-70.19 6.33-21.41 11.77-37.09 32.11-43 55.8L1.9 280.37A64.218 64.218 0 0 0 0 295.86v70.25C0 429.01 51.58 480 115.2 480h37.12c60.28 0 110.37-45.94 114.88-105.37l2.93-38.63h35.75l2.93 38.63C313.31 434.06 363.4 480 423.68 480h37.12c63.62 0 115.2-50.99 115.2-113.88v-70.25c0-5.23-.64-10.43-1.9-15.5zm-370.72 89.42c-1.97 25.91-24.4 46.21-51.06 46.21H115.2C86.97 416 64 393.62 64 366.11v-37.54c18.12-6.49 43.42-12.92 72.58-12.92 23.86 0 47.26 4.33 69.93 12.92l-3.13 41.22zM512 366.12c0 27.51-22.97 49.88-51.2 49.88h-37.12c-26.67 0-49.1-20.3-51.06-46.21l-3.13-41.22c22.67-8.59 46.08-12.92 69.95-12.92 29.12 0 54.43 6.44 72.55 12.93v37.54z"], + "globe": [496, 512, [], "f0ac", "M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z"], + "globe-africa": [496, 512, [], "f57c", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm160 215.5v6.93c0 5.87-3.32 11.24-8.57 13.86l-15.39 7.7a15.485 15.485 0 0 1-15.53-.97l-18.21-12.14a15.52 15.52 0 0 0-13.5-1.81l-2.65.88c-9.7 3.23-13.66 14.79-7.99 23.3l13.24 19.86c2.87 4.31 7.71 6.9 12.89 6.9h8.21c8.56 0 15.5 6.94 15.5 15.5v11.34c0 3.35-1.09 6.62-3.1 9.3l-18.74 24.98c-1.42 1.9-2.39 4.1-2.83 6.43l-4.3 22.83c-.62 3.29-2.29 6.29-4.76 8.56a159.608 159.608 0 0 0-25 29.16l-13.03 19.55a27.756 27.756 0 0 1-23.09 12.36c-10.51 0-20.12-5.94-24.82-15.34a78.902 78.902 0 0 1-8.33-35.29V367.5c0-8.56-6.94-15.5-15.5-15.5h-25.88c-14.49 0-28.38-5.76-38.63-16a54.659 54.659 0 0 1-16-38.63v-14.06c0-17.19 8.1-33.38 21.85-43.7l27.58-20.69a54.663 54.663 0 0 1 32.78-10.93h.89c8.48 0 16.85 1.97 24.43 5.77l14.72 7.36c3.68 1.84 7.93 2.14 11.83.84l47.31-15.77c6.33-2.11 10.6-8.03 10.6-14.7 0-8.56-6.94-15.5-15.5-15.5h-10.09c-4.11 0-8.05-1.63-10.96-4.54l-6.92-6.92a15.493 15.493 0 0 0-10.96-4.54H199.5c-8.56 0-15.5-6.94-15.5-15.5v-4.4c0-7.11 4.84-13.31 11.74-15.04l14.45-3.61c3.74-.94 7-3.23 9.14-6.44l8.08-12.11c2.87-4.31 7.71-6.9 12.89-6.9h24.21c8.56 0 15.5-6.94 15.5-15.5v-21.7C359.23 71.63 422.86 131.02 441.93 208H423.5c-8.56 0-15.5 6.94-15.5 15.5z"], + "globe-americas": [496, 512, [], "f57d", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm82.29 357.6c-3.9 3.88-7.99 7.95-11.31 11.28-2.99 3-5.1 6.7-6.17 10.71-1.51 5.66-2.73 11.38-4.77 16.87l-17.39 46.85c-13.76 3-28 4.69-42.65 4.69v-27.38c1.69-12.62-7.64-36.26-22.63-51.25-6-6-9.37-14.14-9.37-22.63v-32.01c0-11.64-6.27-22.34-16.46-27.97-14.37-7.95-34.81-19.06-48.81-26.11-11.48-5.78-22.1-13.14-31.65-21.75l-.8-.72a114.792 114.792 0 0 1-18.06-20.74c-9.38-13.77-24.66-36.42-34.59-51.14 20.47-45.5 57.36-82.04 103.2-101.89l24.01 12.01C203.48 89.74 216 82.01 216 70.11v-11.3c7.99-1.29 16.12-2.11 24.39-2.42l28.3 28.3c6.25 6.25 6.25 16.38 0 22.63L264 112l-10.34 10.34c-3.12 3.12-3.12 8.19 0 11.31l4.69 4.69c3.12 3.12 3.12 8.19 0 11.31l-8 8a8.008 8.008 0 0 1-5.66 2.34h-8.99c-2.08 0-4.08.81-5.58 2.27l-9.92 9.65a8.008 8.008 0 0 0-1.58 9.31l15.59 31.19c2.66 5.32-1.21 11.58-7.15 11.58h-5.64c-1.93 0-3.79-.7-5.24-1.96l-9.28-8.06a16.017 16.017 0 0 0-15.55-3.1l-31.17 10.39a11.95 11.95 0 0 0-8.17 11.34c0 4.53 2.56 8.66 6.61 10.69l11.08 5.54c9.41 4.71 19.79 7.16 30.31 7.16s22.59 27.29 32 32h66.75c8.49 0 16.62 3.37 22.63 9.37l13.69 13.69a30.503 30.503 0 0 1 8.93 21.57 46.536 46.536 0 0 1-13.72 32.98zM417 274.25c-5.79-1.45-10.84-5-14.15-9.97l-17.98-26.97a23.97 23.97 0 0 1 0-26.62l19.59-29.38c2.32-3.47 5.5-6.29 9.24-8.15l12.98-6.49C440.2 193.59 448 223.87 448 256c0 8.67-.74 17.16-1.82 25.54L417 274.25z"], + "globe-asia": [496, 512, [], "f57e", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm-11.34 240.23c-2.89 4.82-8.1 7.77-13.72 7.77h-.31c-4.24 0-8.31 1.69-11.31 4.69l-5.66 5.66c-3.12 3.12-3.12 8.19 0 11.31l5.66 5.66c3 3 4.69 7.07 4.69 11.31V304c0 8.84-7.16 16-16 16h-6.11c-6.06 0-11.6-3.42-14.31-8.85l-22.62-45.23c-2.44-4.88-8.95-5.94-12.81-2.08l-19.47 19.46c-3 3-7.07 4.69-11.31 4.69H50.81C49.12 277.55 48 266.92 48 256c0-110.28 89.72-200 200-200 21.51 0 42.2 3.51 61.63 9.82l-50.16 38.53c-5.11 3.41-4.63 11.06.86 13.81l10.83 5.41c5.42 2.71 8.84 8.25 8.84 14.31V216c0 4.42-3.58 8-8 8h-3.06c-3.03 0-5.8-1.71-7.15-4.42-1.56-3.12-5.96-3.29-7.76-.3l-17.37 28.95zM408 358.43c0 4.24-1.69 8.31-4.69 11.31l-9.57 9.57c-3 3-7.07 4.69-11.31 4.69h-15.16c-4.24 0-8.31-1.69-11.31-4.69l-13.01-13.01a26.767 26.767 0 0 0-25.42-7.04l-21.27 5.32c-1.27.32-2.57.48-3.88.48h-10.34c-4.24 0-8.31-1.69-11.31-4.69l-11.91-11.91a8.008 8.008 0 0 1-2.34-5.66v-10.2c0-3.27 1.99-6.21 5.03-7.43l39.34-15.74c1.98-.79 3.86-1.82 5.59-3.05l23.71-16.89a7.978 7.978 0 0 1 4.64-1.48h12.09c3.23 0 6.15 1.94 7.39 4.93l5.35 12.85a4 4 0 0 0 3.69 2.46h3.8c1.78 0 3.35-1.18 3.84-2.88l4.2-14.47c.5-1.71 2.06-2.88 3.84-2.88h6.06c2.21 0 4 1.79 4 4v12.93c0 2.12.84 4.16 2.34 5.66l11.91 11.91c3 3 4.69 7.07 4.69 11.31v24.6z"], + "golf-ball": [416, 512, [], "f450", "M96 416h224c0 17.7-14.3 32-32 32h-16c-17.7 0-32 14.3-32 32v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-20c0-17.7-14.3-32-32-32h-16c-17.7 0-32-14.3-32-32zm320-208c0 74.2-39 139.2-97.5 176h-221C39 347.2 0 282.2 0 208 0 93.1 93.1 0 208 0s208 93.1 208 208zm-180.1 43.9c18.3 0 33.1-14.8 33.1-33.1 0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1zm49.1 46.9c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1zm64-64c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1z"], + "graduation-cap": [640, 512, [], "f19d", "M622.884 199.005l-275.817 85.1a96 96 0 0 1-54.134 0L92.398 222.232c-8.564 11.438-11.018 23.05-11.918 38.335C89.778 266.165 96 276.355 96 288c0 11.952-6.557 22.366-16.265 27.861l16.197 123.096c.63 4.786-3.1 9.043-7.932 9.043H40c-4.828 0-8.562-4.253-7.932-9.044L48.265 315.86C38.557 310.366 32 299.952 32 288c0-12.034 6.646-22.511 16.465-27.976.947-17.951 3.974-33.231 12.152-47.597l-43.502-13.422c-22.876-6.801-22.766-39.241 0-46.01l275.817-85.1a96 96 0 0 1 54.134 0l275.817 85.1c22.877 6.801 22.767 39.241.001 46.01zM356.503 314.682l-.207.064-.207.061a127.998 127.998 0 0 1-72.177 0l-.207-.061-.207-.064-150.914-46.57L120 352c0 35.346 89.543 64 200 64s200-28.654 200-64l-12.583-83.888-150.914 46.57z"], + "greater-than": [384, 512, [], "f531", "M365.52 209.85L59.22 67.01c-16.06-7.49-35.15-.54-42.64 15.52L3.01 111.61c-7.49 16.06-.54 35.15 15.52 42.64L236.96 256.1 18.49 357.99C2.47 365.46-4.46 384.5 3.01 400.52l13.52 29C24 445.54 43.04 452.47 59.06 445l306.47-142.91a32.003 32.003 0 0 0 18.48-29v-34.23c-.01-12.45-7.21-23.76-18.49-29.01z"], + "greater-than-equal": [448, 512, [], "f532", "M55.22 107.69l175.56 68.09-175.44 68.05c-18.39 6.03-27.88 24.39-21.2 41l12.09 30.08c6.68 16.61 26.99 25.19 45.38 19.15L393.02 214.2c13.77-4.52 22.98-16.61 22.98-30.17v-15.96c0-13.56-9.21-25.65-22.98-30.17L91.3 17.92c-18.29-6-38.51 2.53-45.15 19.06L34.12 66.9c-6.64 16.53 2.81 34.79 21.1 40.79zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"], + "grimace": [496, 512, [], "f57f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM144 400h-8c-17.7 0-32-14.3-32-32v-8h40v40zm0-56h-40v-8c0-17.7 14.3-32 32-32h8v40zm-8-136c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm72 192h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm-8-104c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64 128c0 17.7-14.3 32-32 32h-8v-40h40v8zm0-24h-40v-40h8c17.7 0 32 14.3 32 32v8z"], + "grin": [496, 512, [], "f580", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm80 256c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"], + "grin-alt": [496, 512, [], "f581", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm63.7 128.7c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zm-160 0c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"], + "grin-beam": [496, 512, [], "f582", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 144c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"], + "grin-beam-sweat": [504, 512, [], "f583", "M456 128c26.5 0 48-21 48-47 0-20-28.5-60.4-41.6-77.8-3.2-4.3-9.6-4.3-12.8 0C436.5 20.6 408 61 408 81c0 26 21.5 47 48 47zm0 32c-44.1 0-80-35.4-80-79 0-4.4.3-14.2 8.1-32.2C345 23.1 298.3 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-35.1-7.4-68.4-20.5-98.6-6.3 1.5-12.7 2.6-19.5 2.6zm-128-8c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"], + "grin-hearts": [496, 512, [], "f584", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM90.4 183.6c6.7-17.6 26.7-26.7 44.9-21.9l7.1 1.9 2-7.1c5-18.1 22.8-30.9 41.5-27.9 21.4 3.4 34.4 24.2 28.8 44.5L195.3 243c-1.2 4.5-5.9 7.2-10.5 6l-70.2-18.2c-20.4-5.4-31.9-27-24.2-47.2zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm133.4-201.3l-70.2 18.2c-4.5 1.2-9.2-1.5-10.5-6L281.3 173c-5.6-20.3 7.4-41.1 28.8-44.5 18.6-3 36.4 9.8 41.5 27.9l2 7.1 7.1-1.9c18.2-4.7 38.2 4.3 44.9 21.9 7.7 20.3-3.8 41.9-24.2 47.2z"], + "grin-squint": [496, 512, [], "f585", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"], + "grin-squint-tears": [512, 512, [], "f586", "M409.6 111.9c22.6-3.2 73.5-12 88.3-26.8 19.2-19.2 18.9-50.6-.7-70.2S446-5 426.9 14.2c-14.8 14.8-23.5 65.7-26.8 88.3-.8 5.5 3.9 10.2 9.5 9.4zM102.4 400.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm311.7-256.5c-33 3.9-48.6-25.1-45.7-45.7 3.4-24 7.4-42.1 11.5-56.5C285.1-13.4 161.8-.5 80.6 80.6-.5 161.7-13.4 285 41.4 379.9c14.4-4.1 32.4-8 56.5-11.5 33.2-3.9 48.6 25.2 45.7 45.7-3.4 24-7.4 42.1-11.5 56.5 94.8 54.8 218.1 41.9 299.3-39.2s94-204.4 39.2-299.3c-14.4 4.1-32.5 8-56.5 11.5zM255.7 106c3.3-13.2 22.4-11.5 23.6 1.8l4.8 52.3 52.3 4.8c13.4 1.2 14.9 20.3 1.8 23.6l-90.5 22.6c-8.9 2.2-16.7-5.9-14.5-14.5l22.5-90.6zm-90.9 230.3L160 284l-52.3-4.8c-13.4-1.2-14.9-20.3-1.8-23.6l90.5-22.6c8.8-2.2 16.7 5.8 14.5 14.5L188.3 338c-3.1 13.2-22.2 11.7-23.5-1.7zm215.7 44.2c-29.3 29.3-75.7 50.4-116.7 50.4-18.9 0-36.6-4.5-51-14.7-9.8-6.9-8.7-21.8 2-27.2 28.3-14.6 63.9-42.4 97.8-76.3s61.7-69.6 76.3-97.8c5.4-10.5 20.2-11.9 27.3-2 32.3 45.3 7.1 124.7-35.7 167.6z"], + "grin-stars": [496, 512, [], "f587", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM94.6 168.9l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.2 1 8.9 8.6 4.3 13.2l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L152 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.6-4.7-1.9-12.3 4.3-13.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm157.7-249.9l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L344 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.5-4.6-1.9-12.2 4.3-13.2l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.3.9 9 8.5 4.4 13.1z"], + "grin-tears": [640, 512, [], "f588", "M102.4 256.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm523.4 26.8c-14.8-14.8-65.7-23.5-88.3-26.8-5.5-.8-10.3 3.9-9.5 9.5 3.2 22.6 12 73.5 26.8 88.3 19.2 19.2 50.6 18.9 70.2-.7s20-51.2.8-70.3zm-129.4-12.8c-3.8-26.6 19.1-49.5 45.7-45.7 8.9 1.3 16.8 2.7 24.3 4.1C552.7 104.5 447.7 8 320 8S87.3 104.5 73.6 228.5c7.5-1.4 15.4-2.8 24.3-4.1 33.2-3.9 48.6 25.3 45.7 45.7-11.8 82.3-29.9 100.4-35.8 106.4-.9.9-2 1.6-3 2.5 42.7 74.6 123 125 215.2 125s172.5-50.4 215.2-125.1c-1-.9-2.1-1.5-3-2.5-5.9-5.9-24-24-35.8-106.3zM400 152c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.7 9.2-21.6 20.7-17.9C227.1 330.5 272 336 320 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"], + "grin-tongue": [496, 512, [], "f589", "M248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-34.9 134.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z"], + "grin-tongue-squint": [496, 512, [], "f58a", "M293.1 374.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-33.8 210.3l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.7 4.7 7.7 15.9 0 20.6zm163 30c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.8-4.7-7.8-15.9 0-20.6l80-48c11.7-6.9 23.9 7.7 15.4 18L343.6 208l33.6 40.3z"], + "grin-tongue-wink": [496, 512, [], "f58b", "M344 184c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-56 225l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L112 233c-8.5 7.4-21.6.3-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c1.6 11.1-11.6 18.2-20 10.8zm152 39c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm-50.9 102.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z"], + "grin-wink": [496, 512, [], "f58c", "M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm168 25l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.6 11-11.5 18.2-20 10.8zm-243.1 87.8C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6 20.7 17.9-9.2 55-83.2 93.3-143.8 93.3s-134.5-38.3-143.8-93.3c-2-11.9 9.3-21.6 20.7-17.9z"], + "grip-horizontal": [448, 512, [], "f58d", "M96 288H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM96 96H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z"], + "grip-vertical": [320, 512, [], "f58e", "M96 32H32C14.33 32 0 46.33 0 64v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM288 32h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z"], + "h-square": [448, 512, [], "f0fd", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-112 48h-32c-8.837 0-16 7.163-16 16v80H160v-80c0-8.837-7.163-16-16-16h-32c-8.837 0-16 7.163-16 16v224c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16v-80h128v80c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144c0-8.837-7.163-16-16-16z"], + "hand-holding": [576, 512, [], "f4bd", "M565.3 328.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z"], + "hand-holding-heart": [576, 512, [], "f4be", "M275.3 250.5c7 7.4 18.4 7.4 25.5 0l108.9-114.2c31.6-33.2 29.8-88.2-5.6-118.8-30.8-26.7-76.7-21.9-104.9 7.7L288 36.9l-11.1-11.6C248.7-4.4 202.8-9.2 172 17.5c-35.3 30.6-37.2 85.6-5.6 118.8l108.9 114.2zm290 77.6c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z"], + "hand-holding-usd": [544, 512, [], "f4c0", "M257.6 144.3l50 14.3c3.6 1 6.1 4.4 6.1 8.1 0 4.6-3.8 8.4-8.4 8.4h-32.8c-3.6 0-7.1-.8-10.3-2.2-4.8-2.2-10.4-1.7-14.1 2l-17.5 17.5c-5.3 5.3-4.7 14.3 1.5 18.4 9.5 6.3 20.3 10.1 31.8 11.5V240c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16v-17.6c30.3-3.6 53.3-31 49.3-63-2.9-23-20.7-41.3-42.9-47.7l-50-14.3c-3.6-1-6.1-4.4-6.1-8.1 0-4.6 3.8-8.4 8.4-8.4h32.8c3.6 0 7.1.8 10.3 2.2 4.8 2.2 10.4 1.7 14.1-2l17.5-17.5c5.3-5.3 4.7-14.3-1.5-18.4-9.5-6.3-20.3-10.1-31.8-11.5V16c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16v17.6c-30.3 3.6-53.3 31-49.3 63 2.9 23 20.7 41.3 42.9 47.7zm276.3 183.8c-11.2-10.7-28.5-10-40.3 0L406.4 402c-10.7 9.1-24 14-37.8 14H256.9c-8.3 0-15.1-7.2-15.1-16s6.8-16 15.1-16h73.9c15.1 0 29-10.9 31.4-26.6 3.1-20-11.5-37.4-29.8-37.4H181.3c-25.5 0-50.2 9.3-69.9 26.3L67.5 384H15.1C6.8 384 0 391.2 0 400v96c0 8.8 6.8 16 15.1 16H352c13.7 0 27-4.9 37.8-14l142.8-121c14.4-12.1 15.5-35.3 1.3-48.9z"], + "hand-lizard": [576, 512, [], "f258", "M384 480h192V363.778a95.998 95.998 0 0 0-14.833-51.263L398.127 54.368A48 48 0 0 0 357.544 32H24C10.745 32 0 42.745 0 56v16c0 30.928 25.072 56 56 56h229.981c12.844 0 21.556 13.067 16.615 24.923l-21.41 51.385A32 32 0 0 1 251.648 224H128c-35.346 0-64 28.654-64 64v8c0 13.255 10.745 24 24 24h147.406a47.995 47.995 0 0 1 25.692 7.455l111.748 70.811A24.001 24.001 0 0 1 384 418.539V480z"], + "hand-paper": [448, 512, [], "f256", "M408.781 128.007C386.356 127.578 368 146.36 368 168.79V256h-8V79.79c0-22.43-18.356-41.212-40.781-40.783C297.488 39.423 280 57.169 280 79v177h-8V40.79C272 18.36 253.644-.422 231.219.007 209.488.423 192 18.169 192 40v216h-8V80.79c0-22.43-18.356-41.212-40.781-40.783C121.488 40.423 104 58.169 104 80v235.992l-31.648-43.519c-12.993-17.866-38.009-21.817-55.877-8.823-17.865 12.994-21.815 38.01-8.822 55.877l125.601 172.705A48 48 0 0 0 172.073 512h197.59c22.274 0 41.622-15.324 46.724-37.006l26.508-112.66a192.011 192.011 0 0 0 5.104-43.975V168c.001-21.831-17.487-39.577-39.218-39.993z"], + "hand-peace": [448, 512, [], "f25b", "M408 216c-22.092 0-40 17.909-40 40h-8v-32c0-22.091-17.908-40-40-40s-40 17.909-40 40v32h-8V48c0-26.51-21.49-48-48-48s-48 21.49-48 48v208h-13.572L92.688 78.449C82.994 53.774 55.134 41.63 30.461 51.324 5.787 61.017-6.356 88.877 3.337 113.551l74.765 190.342-31.09 24.872c-15.381 12.306-19.515 33.978-9.741 51.081l64 112A39.998 39.998 0 0 0 136 512h240c18.562 0 34.686-12.77 38.937-30.838l32-136A39.97 39.97 0 0 0 448 336v-80c0-22.091-17.908-40-40-40z"], + "hand-point-down": [384, 512, [], "f0a7", "M91.826 467.2V317.966c-8.248 5.841-16.558 10.57-24.918 14.153C35.098 345.752-.014 322.222 0 288c.008-18.616 10.897-32.203 29.092-40 28.286-12.122 64.329-78.648 77.323-107.534 7.956-17.857 25.479-28.453 43.845-28.464l.001-.002h171.526c11.812 0 21.897 8.596 23.703 20.269 7.25 46.837 38.483 61.76 38.315 123.731-.007 2.724.195 13.254.195 16 0 50.654-22.122 81.574-71.263 72.6-9.297 18.597-39.486 30.738-62.315 16.45-21.177 24.645-53.896 22.639-70.944 6.299V467.2c0 24.15-20.201 44.8-43.826 44.8-23.283 0-43.826-21.35-43.826-44.8zM112 72V24c0-13.255 10.745-24 24-24h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24zm212-24c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z"], + "hand-point-left": [512, 512, [], "f0a5", "M44.8 155.826h149.234c-5.841-8.248-10.57-16.558-14.153-24.918C166.248 99.098 189.778 63.986 224 64c18.616.008 32.203 10.897 40 29.092 12.122 28.286 78.648 64.329 107.534 77.323 17.857 7.956 28.453 25.479 28.464 43.845l.002.001v171.526c0 11.812-8.596 21.897-20.269 23.703-46.837 7.25-61.76 38.483-123.731 38.315-2.724-.007-13.254.195-16 .195-50.654 0-81.574-22.122-72.6-71.263-18.597-9.297-30.738-39.486-16.45-62.315-24.645-21.177-22.639-53.896-6.299-70.944H44.8c-24.15 0-44.8-20.201-44.8-43.826 0-23.283 21.35-43.826 44.8-43.826zM440 176h48c13.255 0 24 10.745 24 24v192c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24zm24 212c11.046 0 20-8.954 20-20s-8.954-20-20-20-20 8.954-20 20 8.954 20 20 20z"], + "hand-point-right": [512, 512, [], "f0a4", "M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z"], + "hand-point-up": [384, 512, [], "f0a6", "M135.652 0c23.625 0 43.826 20.65 43.826 44.8v99.851c17.048-16.34 49.766-18.346 70.944 6.299 22.829-14.288 53.017-2.147 62.315 16.45C361.878 158.426 384 189.346 384 240c0 2.746-.203 13.276-.195 16 .168 61.971-31.065 76.894-38.315 123.731C343.683 391.404 333.599 400 321.786 400H150.261l-.001-.002c-18.366-.011-35.889-10.607-43.845-28.464C93.421 342.648 57.377 276.122 29.092 264 10.897 256.203.008 242.616 0 224c-.014-34.222 35.098-57.752 66.908-44.119 8.359 3.583 16.67 8.312 24.918 14.153V44.8c0-23.45 20.543-44.8 43.826-44.8zM136 416h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24v-48c0-13.255 10.745-24 24-24zm168 28c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z"], + "hand-pointer": [448, 512, [], "f25a", "M448 240v96c0 3.084-.356 6.159-1.063 9.162l-32 136C410.686 499.23 394.562 512 376 512H168a40.004 40.004 0 0 1-32.35-16.473l-127.997-176c-12.993-17.866-9.043-42.883 8.822-55.876 17.867-12.994 42.884-9.043 55.877 8.823L104 315.992V40c0-22.091 17.908-40 40-40s40 17.909 40 40v200h8v-40c0-22.091 17.908-40 40-40s40 17.909 40 40v40h8v-24c0-22.091 17.908-40 40-40s40 17.909 40 40v24h8c0-22.091 17.908-40 40-40s40 17.909 40 40zm-256 80h-8v96h8v-96zm88 0h-8v96h8v-96zm88 0h-8v96h8v-96z"], + "hand-rock": [512, 512, [], "f255", "M512 128.79c0-26.322-20.861-48.344-47.18-48.783C437.935 79.558 416 101.217 416 128h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C333.935 47.558 312 69.217 312 96v32h-8V80.79c0-26.322-20.861-48.344-47.18-48.783C229.935 31.558 208 53.217 208 80v48h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C125.935 47.558 104 69.217 104 96v136l-8-7.111V176.79c0-26.322-20.861-48.344-47.18-48.783C21.935 127.558 0 149.217 0 176v66.445a95.998 95.998 0 0 0 32.221 71.751l111.668 99.261A47.999 47.999 0 0 1 160 449.333V456c0 13.255 10.745 24 24 24h240c13.255 0 24-10.745 24-24v-2.921a96.01 96.01 0 0 1 7.523-37.254l48.954-116.265A96.002 96.002 0 0 0 512 262.306V128.79z"], + "hand-scissors": [512, 512, [], "f257", "M216 440c0-22.092 17.909-40 40-40v-8h-32c-22.091 0-40-17.908-40-40s17.909-40 40-40h32v-8H48c-26.51 0-48-21.49-48-48s21.49-48 48-48h208v-13.572l-177.551-69.74c-24.674-9.694-36.818-37.555-27.125-62.228 9.693-24.674 37.554-36.817 62.228-27.124l190.342 74.765 24.872-31.09c12.306-15.381 33.978-19.515 51.081-9.741l112 64A40.002 40.002 0 0 1 512 168v240c0 18.562-12.77 34.686-30.838 38.937l-136 32A39.982 39.982 0 0 1 336 480h-80c-22.091 0-40-17.908-40-40z"], + "hand-spock": [512, 512, [], "f259", "M10.872 316.585c15.139-16.086 40.454-16.854 56.543-1.713L128 371.893v-79.405L88.995 120.865c-4.896-21.542 8.598-42.974 30.14-47.87 21.549-4.894 42.975 8.599 47.87 30.141L201.747 256h9.833L164.016 48.966c-4.946-21.531 8.498-42.994 30.028-47.94 21.532-4.95 42.994 8.498 47.94 30.028L293.664 256h15.105l48.425-193.702c5.357-21.432 27.075-34.462 48.507-29.104 21.432 5.358 34.463 27.075 29.104 48.507L391.231 256h11.08l30.768-129.265c5.117-21.491 26.685-34.768 48.177-29.647 21.491 5.117 34.765 26.686 29.647 48.177l-36.292 152.467A96.024 96.024 0 0 0 472 319.967v42.102a96.002 96.002 0 0 1-3.96 27.287l-26.174 88.287C435.825 498.022 417.101 512 395.846 512H179.172a48.002 48.002 0 0 1-32.898-13.046L12.585 373.128c-16.087-15.141-16.853-40.456-1.713-56.543z"], + "hands": [640, 512, [], "f4c2", "M204.8 230.4c-10.6-14.1-30.7-17-44.8-6.4-14.1 10.6-17 30.7-6.4 44.8l38.1 50.8c4.8 6.4 4.1 15.3-1.5 20.9l-12.8 12.8c-6.7 6.7-17.6 6.2-23.6-1.1L64 244.4V96c0-17.7-14.3-32-32-32S0 78.3 0 96v218.4c0 10.9 3.7 21.5 10.5 30l104.1 134.3c5 6.5 8.4 13.9 10.4 21.7 1.8 6.9 8.1 11.6 15.3 11.6H272c8.8 0 16-7.2 16-16V384c0-27.7-9-54.6-25.6-76.8l-57.6-76.8zM608 64c-17.7 0-32 14.3-32 32v148.4l-89.8 107.8c-6 7.2-17 7.7-23.6 1.1l-12.8-12.8c-5.6-5.6-6.3-14.5-1.5-20.9l38.1-50.8c10.6-14.1 7.7-34.2-6.4-44.8-14.1-10.6-34.2-7.7-44.8 6.4l-57.6 76.8C361 329.4 352 356.3 352 384v112c0 8.8 7.2 16 16 16h131.7c7.1 0 13.5-4.7 15.3-11.6 2-7.8 5.4-15.2 10.4-21.7l104.1-134.3c6.8-8.5 10.5-19.1 10.5-30V96c0-17.7-14.3-32-32-32z"], + "hands-helping": [640, 512, [], "f4c4", "M488 192H336v56c0 39.7-32.3 72-72 72s-72-32.3-72-72V126.4l-64.9 39C107.8 176.9 96 197.8 96 220.2v47.3l-80 46.2C.7 322.5-4.6 342.1 4.3 357.4l80 138.6c8.8 15.3 28.4 20.5 43.7 11.7L231.4 448H368c35.3 0 64-28.7 64-64h16c17.7 0 32-14.3 32-32v-64h8c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zm147.7-37.4L555.7 16C546.9.7 527.3-4.5 512 4.3L408.6 64H306.4c-12 0-23.7 3.4-33.9 9.7L239 94.6c-9.4 5.8-15 16.1-15 27.1V248c0 22.1 17.9 40 40 40s40-17.9 40-40v-88h184c30.9 0 56 25.1 56 56v28.5l80-46.2c15.3-8.9 20.5-28.4 11.7-43.7z"], + "handshake": [640, 512, [], "f2b5", "M434.7 64h-85.9c-8 0-15.7 3-21.6 8.4l-98.3 90c-.1.1-.2.3-.3.4-16.6 15.6-16.3 40.5-2.1 56 12.7 13.9 39.4 17.6 56.1 2.7.1-.1.3-.1.4-.2l79.9-73.2c6.5-5.9 16.7-5.5 22.6 1 6 6.5 5.5 16.6-1 22.6l-26.1 23.9L504 313.8c2.9 2.4 5.5 5 7.9 7.7V128l-54.6-54.6c-5.9-6-14.1-9.4-22.6-9.4zM544 128.2v223.9c0 17.7 14.3 32 32 32h64V128.2h-96zm48 223.9c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM0 384h64c17.7 0 32-14.3 32-32V128.2H0V384zm48-63.9c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16c0-8.9 7.2-16 16-16zm435.9 18.6L334.6 217.5l-30 27.5c-29.7 27.1-75.2 24.5-101.7-4.4-26.9-29.4-24.8-74.9 4.4-101.7L289.1 64h-83.8c-8.5 0-16.6 3.4-22.6 9.4L128 128v223.9h18.3l90.5 81.9c27.4 22.3 67.7 18.1 90-9.3l.2-.2 17.9 15.5c15.9 13 39.4 10.5 52.3-5.4l31.4-38.6 5.4 4.4c13.7 11.1 33.9 9.1 45-4.7l9.5-11.7c11.2-13.8 9.1-33.9-4.6-45.1z"], + "hashtag": [448, 512, [], "f292", "M440.667 182.109l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l14.623-81.891C377.123 38.754 371.468 32 363.997 32h-40.632a12 12 0 0 0-11.813 9.891L296.175 128H197.54l14.623-81.891C213.477 38.754 207.822 32 200.35 32h-40.632a12 12 0 0 0-11.813 9.891L132.528 128H53.432a12 12 0 0 0-11.813 9.891l-7.143 40C33.163 185.246 38.818 192 46.289 192h74.81L98.242 320H19.146a12 12 0 0 0-11.813 9.891l-7.143 40C-1.123 377.246 4.532 384 12.003 384h74.81L72.19 465.891C70.877 473.246 76.532 480 84.003 480h40.632a12 12 0 0 0 11.813-9.891L151.826 384h98.634l-14.623 81.891C234.523 473.246 240.178 480 247.65 480h40.632a12 12 0 0 0 11.813-9.891L315.472 384h79.096a12 12 0 0 0 11.813-9.891l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l22.857-128h79.096a12 12 0 0 0 11.813-9.891zM261.889 320h-98.634l22.857-128h98.634l-22.857 128z"], + "hdd": [576, 512, [], "f0a0", "M576 304v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48zm-48-80a79.557 79.557 0 0 1 30.777 6.165L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L17.223 230.165A79.557 79.557 0 0 1 48 224h480zm-48 96c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm-96 0c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"], + "heading": [512, 512, [], "f1dc", "M496 80V48c0-8.837-7.163-16-16-16H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.621v128H154.379V96H192c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.275v320H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.621V288H357.62v128H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.275V96H480c8.837 0 16-7.163 16-16z"], + "headphones": [512, 512, [], "f025", "M256 32C114.52 32 0 146.496 0 288v48a32 32 0 0 0 17.689 28.622l14.383 7.191C34.083 431.903 83.421 480 144 480h24c13.255 0 24-10.745 24-24V280c0-13.255-10.745-24-24-24h-24c-31.342 0-59.671 12.879-80 33.627V288c0-105.869 86.131-192 192-192s192 86.131 192 192v1.627C427.671 268.879 399.342 256 368 256h-24c-13.255 0-24 10.745-24 24v176c0 13.255 10.745 24 24 24h24c60.579 0 109.917-48.098 111.928-108.187l14.382-7.191A32 32 0 0 0 512 336v-48c0-141.479-114.496-256-256-256z"], + "headphones-alt": [512, 512, [], "f58f", "M160 288h-16c-35.35 0-64 28.7-64 64.12v63.76c0 35.41 28.65 64.12 64 64.12h16c17.67 0 32-14.36 32-32.06V320.06c0-17.71-14.33-32.06-32-32.06zm208 0h-16c-17.67 0-32 14.35-32 32.06v127.88c0 17.7 14.33 32.06 32 32.06h16c35.35 0 64-28.71 64-64.12v-63.76c0-35.41-28.65-64.12-64-64.12zM256 32C112.91 32 4.57 151.13 0 288v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288c0-114.67 93.33-207.8 208-207.82 114.67.02 208 93.15 208 207.82v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288C507.43 151.13 399.09 32 256 32z"], + "headset": [512, 512, [], "f590", "M192 208c0-17.67-14.33-32-32-32h-16c-35.35 0-64 28.65-64 64v48c0 35.35 28.65 64 64 64h16c17.67 0 32-14.33 32-32V208zm176 144c35.35 0 64-28.65 64-64v-48c0-35.35-28.65-64-64-64h-16c-17.67 0-32 14.33-32 32v112c0 17.67 14.33 32 32 32h16zM256 0C113.18 0 4.58 118.83 0 256v16c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-16c0-114.69 93.31-208 208-208s208 93.31 208 208h-.12c.08 2.43.12 165.72.12 165.72 0 23.35-18.93 42.28-42.28 42.28H320c0-26.51-21.49-48-48-48h-32c-26.51 0-48 21.49-48 48s21.49 48 48 48h181.72c49.86 0 90.28-40.42 90.28-90.28V256C507.42 118.83 398.82 0 256 0z"], + "heart": [512, 512, [], "f004", "M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z"], + "heartbeat": [512, 512, [], "f21e", "M320.2 243.8l-49.7 99.4c-6 12.1-23.4 11.7-28.9-.6l-56.9-126.3-30 71.7H60.6l182.5 186.5c7.1 7.3 18.6 7.3 25.7 0L451.4 288H342.3l-22.1-44.2zM473.7 73.9l-2.4-2.5c-51.5-52.6-135.8-52.6-187.4 0L256 100l-27.9-28.5c-51.5-52.7-135.9-52.7-187.4 0l-2.4 2.4C-10.4 123.7-12.5 203 31 256h102.4l35.9-86.2c5.4-12.9 23.6-13.2 29.4-.4l58.2 129.3 49-97.9c5.9-11.8 22.7-11.8 28.6 0l27.6 55.2H481c43.5-53 41.4-132.3-7.3-182.1z"], + "helicopter": [640, 512, [], "f533", "M304 384h272c17.67 0 32-14.33 32-32 0-123.71-100.29-224-224-224V64h176c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H144c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h176v64H112L68.8 70.4C65.78 66.37 61.03 64 56 64H16.01C5.6 64-2.04 73.78.49 83.88L32 192l160 64 86.4 115.2A31.992 31.992 0 0 0 304 384zm112-188.49C478.55 208.3 528.03 257.44 540.79 320H416V195.51zm219.37 263.3l-22.15-22.2c-6.25-6.26-16.24-6.1-22.64.01-7.09 6.77-13.84 11.25-24.64 11.25H240c-8.84 0-16 7.18-16 16.03v32.06c0 8.85 7.16 16.03 16 16.03h325.94c14.88 0 35.3-.47 68.45-29.52 7.02-6.14 7.57-17.05.98-23.66z"], + "highlighter": [544, 512, [], "f591", "M0 479.98L99.92 512l35.45-35.45-67.04-67.04L0 479.98zm124.61-240.01a36.592 36.592 0 0 0-10.79 38.1l13.05 42.83-50.93 50.94 96.23 96.23 50.86-50.86 42.74 13.08c13.73 4.2 28.65-.01 38.15-10.78l35.55-41.64-173.34-173.34-41.52 35.44zm403.31-160.7l-63.2-63.2c-20.49-20.49-53.38-21.52-75.12-2.35L190.55 183.68l169.77 169.78L530.27 154.4c19.18-21.74 18.15-54.63-2.35-75.13z"], + "history": [512, 512, [], "f1da", "M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z"], + "hockey-puck": [512, 512, [], "f453", "M0 160c0-53 114.6-96 256-96s256 43 256 96-114.6 96-256 96S0 213 0 160zm0 82.2V352c0 53 114.6 96 256 96s256-43 256-96V242.2c-113.4 82.3-398.5 82.4-512 0z"], + "home": [576, 512, [], "f015", "M488 312.7V456c0 13.3-10.7 24-24 24H348c-6.6 0-12-5.4-12-12V356c0-6.6-5.4-12-12-12h-72c-6.6 0-12 5.4-12 12v112c0 6.6-5.4 12-12 12H112c-13.3 0-24-10.7-24-24V312.7c0-3.6 1.6-7 4.4-9.3l188-154.8c4.4-3.6 10.8-3.6 15.3 0l188 154.8c2.7 2.3 4.3 5.7 4.3 9.3zm83.6-60.9L488 182.9V44.4c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12V117l-89.5-73.7c-17.7-14.6-43.3-14.6-61 0L4.4 251.8c-5.1 4.2-5.8 11.8-1.6 16.9l25.5 31c4.2 5.1 11.8 5.8 16.9 1.6l235.2-193.7c4.4-3.6 10.8-3.6 15.3 0l235.2 193.7c5.1 4.2 12.7 3.5 16.9-1.6l25.5-31c4.2-5.2 3.4-12.7-1.7-16.9z"], + "hospital": [448, 512, [], "f0f8", "M448 492v20H0v-20c0-6.627 5.373-12 12-12h20V120c0-13.255 10.745-24 24-24h88V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v72h88c13.255 0 24 10.745 24 24v360h20c6.627 0 12 5.373 12 12zM308 192h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-168 64h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm104 128h-40c-6.627 0-12 5.373-12 12v84h64v-84c0-6.627-5.373-12-12-12zm64-96h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-116 12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zM182 96h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6z"], + "hospital-alt": [576, 512, [], "f47d", "M544 96H416V32c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32v368c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16V128c0-17.7-14.3-32-32-32zM160 436c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm160 128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm16-170c0 3.3-2.7 6-6 6h-26v26c0 3.3-2.7 6-6 6h-20c-3.3 0-6-2.7-6-6v-26h-26c-3.3 0-6-2.7-6-6v-20c0-3.3 2.7-6 6-6h26V86c0-3.3 2.7-6 6-6h20c3.3 0 6 2.7 6 6v26h26c3.3 0 6 2.7 6 6v20zm144 298c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z"], + "hospital-symbol": [512, 512, [], "f47e", "M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm112 376c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-88h-96v88c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V136c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v88h96v-88c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v240z"], + "hot-tub": [512, 512, [], "f593", "M414.21 177.65c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C378.96 6.14 372.22 0 364.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zm-108 0c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C270.96 6.14 264.22 0 256.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zM480 256H256l-110.93-83.2a63.99 63.99 0 0 0-38.4-12.8H64c-35.35 0-64 28.65-64 64v224c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64V288c0-17.67-14.33-32-32-32zM128 440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zM64 128c35.35 0 64-28.65 64-64S99.35 0 64 0 0 28.65 0 64s28.65 64 64 64z"], + "hotel": [576, 512, [], "f594", "M560 64c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h15.98v384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h240v-80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v80h240c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-16V64h16zm-304 44.8c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm0 96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm-128-96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zM179.2 256h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8zM192 384c0-53.02 42.98-96 96-96s96 42.98 96 96H192zm256-140.8c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-96c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4z"], + "hourglass": [384, 512, [], "f254", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64z"], + "hourglass-end": [384, 512, [], "f253", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64zM192 208c-57.787 0-104-66.518-104-144h208c0 77.945-46.51 144-104 144z"], + "hourglass-half": [384, 512, [], "f252", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-75.078 384H99.08c17.059-46.797 52.096-80 92.92-80 40.821 0 75.862 33.196 92.922 80zm.019-256H99.078C91.988 108.548 88 86.748 88 64h208c0 22.805-3.987 44.587-11.059 64z"], + "hourglass-start": [384, 512, [], "f251", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-64 448H88c0-77.458 46.204-144 104-144 57.786 0 104 66.517 104 144z"], + "i-cursor": [256, 512, [], "f246", "M256 52.048V12.065C256 5.496 250.726.148 244.158.066 211.621-.344 166.469.011 128 37.959 90.266.736 46.979-.114 11.913.114 5.318.157 0 5.519 0 12.114v39.645c0 6.687 5.458 12.078 12.145 11.998C38.111 63.447 96 67.243 96 112.182V224H60c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h36v112c0 44.932-56.075 48.031-83.95 47.959C5.404 447.942 0 453.306 0 459.952v39.983c0 6.569 5.274 11.917 11.842 11.999 32.537.409 77.689.054 116.158-37.894 37.734 37.223 81.021 38.073 116.087 37.845 6.595-.043 11.913-5.405 11.913-12V460.24c0-6.687-5.458-12.078-12.145-11.998C217.889 448.553 160 444.939 160 400V288h36c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-36V112.182c0-44.932 56.075-48.213 83.95-48.142 6.646.018 12.05-5.346 12.05-11.992z"], + "id-badge": [384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM144 32h96c8.8 0 16 7.2 16 16s-7.2 16-16 16h-96c-8.8 0-16-7.2-16-16s7.2-16 16-16zm48 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 416 80 407.4 80 396.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"], + "id-card": [576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v16h576V80c0-26.5-21.5-48-48-48zM0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V128H0v304zm352-232c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zM176 192c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zM67.1 396.2C75.5 370.5 99.6 352 128 352h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.9-5.2 19.8-15.6 19.8H82.7c-10.4 0-18.8-10-15.6-19.8z"], + "id-card-alt": [576, 512, [], "f47f", "M528 64H384v96H192V64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM288 224c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm93.3 224H194.7c-10.4 0-18.8-10-15.6-19.8 8.3-25.6 32.4-44.2 60.9-44.2h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.8-5.2 19.8-15.6 19.8zM352 32c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v96h128V32z"], + "image": [512, 512, [], "f03e", "M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z"], + "images": [576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v208c0 44.112 35.888 80 80 80h336zm96-80V80c0-26.51-21.49-48-48-48H144c-26.51 0-48 21.49-48 48v256c0 26.51 21.49 48 48 48h384c26.51 0 48-21.49 48-48zM256 128c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-96 144l55.515-55.515c4.686-4.686 12.284-4.686 16.971 0L272 256l135.515-135.515c4.686-4.686 12.284-4.686 16.971 0L512 208v112H160v-48z"], + "inbox": [576, 512, [], "f01c", "M567.938 243.908L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L8.062 243.908A47.994 47.994 0 0 0 0 270.533V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V270.533a47.994 47.994 0 0 0-8.062-26.625zM162.252 128h251.497l85.333 128H376l-32 64H232l-32-64H76.918l85.334-128z"], + "indent": [448, 512, [], "f03c", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm176 144h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm-52.687-111.313l-96-95.984C17.266 138.652 0 145.776 0 160.016v191.975c0 14.329 17.325 21.304 27.313 11.313l96-95.992c6.249-6.247 6.249-16.377 0-22.625z"], + "industry": [512, 512, [], "f275", "M475.115 163.781L336 252.309v-68.28c0-18.916-20.931-30.399-36.885-20.248L160 252.309V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h464c13.255 0 24-10.745 24-24V184.029c0-18.917-20.931-30.399-36.885-20.248z"], + "infinity": [640, 512, [], "f534", "M471.1 96C405 96 353.3 137.3 320 174.6 286.7 137.3 235 96 168.9 96 75.8 96 0 167.8 0 256s75.8 160 168.9 160c66.1 0 117.8-41.3 151.1-78.6 33.3 37.3 85 78.6 151.1 78.6 93.1 0 168.9-71.8 168.9-160S564.2 96 471.1 96zM168.9 320c-40.2 0-72.9-28.7-72.9-64s32.7-64 72.9-64c38.2 0 73.4 36.1 94 64-20.4 27.6-55.9 64-94 64zm302.2 0c-38.2 0-73.4-36.1-94-64 20.4-27.6 55.9-64 94-64 40.2 0 72.9 28.7 72.9 64s-32.7 64-72.9 64z"], + "info": [192, 512, [], "f129", "M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z"], + "info-circle": [512, 512, [], "f05a", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z"], + "italic": [320, 512, [], "f033", "M204.758 416h-33.849l62.092-320h40.725a16 16 0 0 0 15.704-12.937l6.242-32C297.599 41.184 290.034 32 279.968 32H120.235a16 16 0 0 0-15.704 12.937l-6.242 32C96.362 86.816 103.927 96 113.993 96h33.846l-62.09 320H46.278a16 16 0 0 0-15.704 12.935l-6.245 32C22.402 470.815 29.967 480 40.034 480h158.479a16 16 0 0 0 15.704-12.935l6.245-32c1.927-9.88-5.638-19.065-15.704-19.065z"], + "joint": [640, 512, [], "f595", "M444.34 181.1c22.38 15.68 35.66 41.16 35.66 68.59V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-43.24-21.01-83.41-56.34-108.06C463.85 125.02 448 99.34 448 70.31V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v66.4c0 43.69 24.56 81.63 60.34 106.7zM194.97 358.98C126.03 370.07 59.69 394.69 0 432c83.65 52.28 180.3 80 278.94 80h88.57L254.79 380.49c-14.74-17.2-37.45-25.11-59.82-21.51zM553.28 87.09c-5.67-3.8-9.28-9.96-9.28-16.78V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v62.31c0 22.02 10.17 43.41 28.64 55.39C550.79 153.04 576 199.54 576 249.69V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-65.44-32.41-126.19-86.72-162.6zM360.89 352.05c-34.4.06-86.81.15-88.21.17l117.8 137.43A63.987 63.987 0 0 0 439.07 512h88.45L409.57 374.4a63.955 63.955 0 0 0-48.68-22.35zM616 352H432l117.99 137.65A63.987 63.987 0 0 0 598.58 512H616c13.25 0 24-10.75 24-24V376c0-13.26-10.75-24-24-24z"], + "key": [512, 512, [], "f084", "M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z"], + "keyboard": [576, 512, [], "f11c", "M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"], + "kiss": [496, 512, [], "f596", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm136 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm24-156c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "kiss-beam": [496, 512, [], "f597", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-39 219.9l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5zM304 396c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm65-168.1l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5z"], + "kiss-wink-heart": [504, 512, [], "f598", "M501.1 402.5c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zm-177.6-4c-5.6-20.3-2.3-42 9-59.7 29.7-46.3 98.7-45.5 127.8 4.3 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-.3-.7-23.9-84.6-23.9-84.6zM168 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm120 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-5.7-12.3 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.8-3.7-4.6-16.6 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C274.6 368.7 288 383 288 396zm16-179c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S400 181 404 206.2c1.7 11.1-11.3 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 217z"], + "kiwi-bird": [576, 512, [], "f535", "M575.81 217.98C572.64 157.41 518.28 112 457.63 112h-9.37c-52.82 0-104.25-16.25-147.74-46.24-41.99-28.96-96.04-41.62-153.21-28.7C129.3 41.12-.08 78.24 0 224c.04 70.95 38.68 132.8 95.99 166.01V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-54.26c15.36 3.96 31.4 6.26 48 6.26 5.44 0 10.68-.73 16-1.18V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-59.43c14.24-5.06 27.88-11.39 40.34-19.51C342.07 355.25 393.86 336 448.46 336c25.48 0 16.01-.31 23.05-.78l74.41 136.44c2.86 5.23 8.3 8.34 14.05 8.34 1.31 0 2.64-.16 3.95-.5 7.09-1.8 12.05-8.19 12.05-15.5 0 0 .14-240.24-.16-246.02zM463.97 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm80 153.25l-39.86-73.08c15.12-5.83 28.73-14.6 39.86-25.98v99.06z"], + "language": [640, 512, [], "f1ab", "M304 416H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h280v320zm-120.676-72.622A12 12 0 0 0 194.839 352h22.863c8.22 0 14.007-8.078 11.362-15.861L171.61 167.085a12 12 0 0 0-11.362-8.139h-32.489a12.001 12.001 0 0 0-11.362 8.139L58.942 336.139C56.297 343.922 62.084 352 70.304 352h22.805a12 12 0 0 0 11.535-8.693l9.118-31.807h60.211l9.351 31.878zm-39.051-140.42s4.32 21.061 7.83 33.21l10.8 37.531h-38.07l11.07-37.531c3.51-12.15 7.83-33.21 7.83-33.21h.54zM616 416H336V96h280c13.255 0 24 10.745 24 24v272c0 13.255-10.745 24-24 24zm-36-228h-64v-16c0-6.627-5.373-12-12-12h-16c-6.627 0-12 5.373-12 12v16h-64c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h114.106c-6.263 14.299-16.518 28.972-30.023 43.206-6.56-6.898-12.397-13.91-17.365-20.933-3.639-5.144-10.585-6.675-15.995-3.446l-7.28 4.346-6.498 3.879c-5.956 3.556-7.693 11.421-3.735 17.117 6.065 8.729 13.098 17.336 20.984 25.726-8.122 6.226-16.841 12.244-26.103 17.964-5.521 3.41-7.381 10.556-4.162 16.19l7.941 13.896c3.362 5.883 10.935 7.826 16.706 4.276 12.732-7.831 24.571-16.175 35.443-24.891 10.917 8.761 22.766 17.102 35.396 24.881 5.774 3.556 13.353 1.618 16.717-4.27l7.944-13.903c3.213-5.623 1.37-12.76-4.135-16.171a312.737 312.737 0 0 1-26.06-18.019c21.024-22.425 35.768-46.289 42.713-69.85H580c6.627 0 12-5.373 12-12v-16c0-6.625-5.373-11.998-12-11.998z"], + "laptop": [640, 512, [], "f109", "M512 64v256H128V64h384m16-64H112C85.5 0 64 21.5 64 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm100 416H389.5c-3 0-5.5 2.1-5.9 5.1C381.2 436.3 368 448 352 448h-64c-16 0-29.2-11.7-31.6-26.9-.5-2.9-3-5.1-5.9-5.1H12c-6.6 0-12 5.4-12 12v36c0 26.5 21.5 48 48 48h544c26.5 0 48-21.5 48-48v-36c0-6.6-5.4-12-12-12z"], + "laugh": [496, 512, [], "f599", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 152c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm88 272h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18-8.9 71-69.5 126-142.9 126z"], + "laugh-beam": [496, 512, [], "f59a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm24 199.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.8 4.1-15.1-4.5zm-160 0c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z"], + "laugh-squint": [496, 512, [], "f59b", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 161.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 180l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z"], + "laugh-wink": [496, 512, [], "f59c", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm20.1 198.1c4-25.2 34.2-42.1 59.9-42.1s55.9 16.9 59.9 42.1c1.7 11.1-11.4 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 217c-8.4 7.4-21.6.3-19.9-10.9zM168 160c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm230.9 146C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z"], + "leaf": [576, 512, [], "f06c", "M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z"], + "lemon": [512, 512, [], "f094", "M489.038 22.963C465.944-.13 434.648-5.93 413.947 6.129c-58.906 34.312-181.25-53.077-321.073 86.746S40.441 355.041 6.129 413.945c-12.059 20.702-6.26 51.999 16.833 75.093 23.095 23.095 54.392 28.891 75.095 16.832 58.901-34.31 181.246 53.079 321.068-86.743S471.56 156.96 505.871 98.056c12.059-20.702 6.261-51.999-16.833-75.093zM243.881 95.522c-58.189 14.547-133.808 90.155-148.358 148.358-1.817 7.27-8.342 12.124-15.511 12.124-1.284 0-2.59-.156-3.893-.481-8.572-2.144-13.784-10.83-11.642-19.403C81.901 166.427 166.316 81.93 236.119 64.478c8.575-2.143 17.261 3.069 19.403 11.642s-3.069 17.259-11.641 19.402z"], + "less-than": [384, 512, [], "f536", "M365.46 357.74L147.04 255.89l218.47-101.88c16.02-7.47 22.95-26.51 15.48-42.53l-13.52-29C360 66.46 340.96 59.53 324.94 67L18.48 209.91a32.014 32.014 0 0 0-18.48 29v34.24c0 12.44 7.21 23.75 18.48 29l306.31 142.83c16.06 7.49 35.15.54 42.64-15.52l13.56-29.08c7.49-16.06.54-35.15-15.53-42.64z"], + "less-than-equal": [448, 512, [], "f537", "M54.98 214.2l301.41 119.87c18.39 6.03 38.71-2.54 45.38-19.15l12.09-30.08c6.68-16.61-2.82-34.97-21.21-41l-175.44-68.05 175.56-68.09c18.29-6 27.74-24.27 21.1-40.79l-12.03-29.92c-6.64-16.53-26.86-25.06-45.15-19.06L54.98 137.89C41.21 142.41 32 154.5 32 168.07v15.96c0 13.56 9.21 25.65 22.98 30.17zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"], + "level-down-alt": [320, 512, [], "f3be", "M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z"], + "level-up-alt": [320, 512, [], "f3bf", "M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z"], + "life-ring": [512, 512, [], "f1cd", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm173.696 119.559l-63.399 63.399c-10.987-18.559-26.67-34.252-45.255-45.255l63.399-63.399a218.396 218.396 0 0 1 45.255 45.255zM256 352c-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96-42.981 96-96 96zM127.559 82.304l63.399 63.399c-18.559 10.987-34.252 26.67-45.255 45.255l-63.399-63.399a218.372 218.372 0 0 1 45.255-45.255zM82.304 384.441l63.399-63.399c10.987 18.559 26.67 34.252 45.255 45.255l-63.399 63.399a218.396 218.396 0 0 1-45.255-45.255zm302.137 45.255l-63.399-63.399c18.559-10.987 34.252-26.67 45.255-45.255l63.399 63.399a218.403 218.403 0 0 1-45.255 45.255z"], + "lightbulb": [384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zm-143.107-44c-9.907 0-18.826-6.078-22.376-15.327C67.697 267.541 16 277.731 16 176 16 78.803 94.805 0 192 0s176 78.803 176 176c0 101.731-51.697 91.541-90.516 192.673-3.55 9.249-12.47 15.327-22.376 15.327H128.893zM112 176c0-44.112 35.888-80 80-80 8.837 0 16-7.164 16-16s-7.163-16-16-16c-61.757 0-112 50.243-112 112 0 8.836 7.164 16 16 16s16-7.164 16-16z"], + "link": [512, 512, [], "f0c1", "M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z"], + "lira-sign": [384, 512, [], "f195", "M371.994 256h-48.019C317.64 256 312 260.912 312 267.246 312 368 230.179 416 144 416V256.781l134.603-29.912A12 12 0 0 0 288 215.155v-40.976c0-7.677-7.109-13.38-14.603-11.714L144 191.219V160.78l134.603-29.912A12 12 0 0 0 288 119.154V78.179c0-7.677-7.109-13.38-14.603-11.714L144 95.219V44c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v68.997L9.397 125.131A12 12 0 0 0 0 136.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 178.558v30.439L9.397 221.131A12 12 0 0 0 0 232.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 274.558V468c0 6.627 5.373 12 12 12h79.583c134.091 0 223.255-77.834 228.408-211.592.261-6.782-5.211-12.408-11.997-12.408z"], + "list": [512, 512, [], "f03a", "M128 116V76c0-8.837 7.163-16 16-16h352c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H144c-8.837 0-16-7.163-16-16zm16 176h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 144h64c8.837 0 16-7.163 16-16V64c0-8.837-7.163-16-16-16H16C7.163 48 0 55.163 0 64v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16z"], + "list-alt": [512, 512, [], "f022", "M464 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM128 120c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288-136v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12z"], + "list-ol": [512, 512, [], "f0cb", "M3.263 139.527c0-7.477 3.917-11.572 11.573-11.572h15.131V88.078c0-5.163.534-10.503.534-10.503h-.356s-1.779 2.67-2.848 3.738c-4.451 4.273-10.504 4.451-15.666-1.068l-5.518-6.231c-5.342-5.341-4.984-11.216.534-16.379l21.72-19.938C32.815 33.602 36.732 32 42.785 32H54.89c7.656 0 11.749 3.916 11.749 11.572v84.384h15.488c7.655 0 11.572 4.094 11.572 11.572v8.901c0 7.477-3.917 11.572-11.572 11.572H14.836c-7.656 0-11.573-4.095-11.573-11.572v-8.902zM2.211 304.591c0-47.278 50.955-56.383 50.955-69.165 0-7.18-5.954-8.755-9.28-8.755-3.153 0-6.479 1.051-9.455 3.852-5.079 4.903-10.507 7.004-16.111 2.451l-8.579-6.829c-5.779-4.553-7.18-9.805-2.803-15.409C13.592 201.981 26.025 192 47.387 192c19.437 0 44.476 10.506 44.476 39.573 0 38.347-46.753 46.402-48.679 56.909h39.049c7.529 0 11.557 4.027 11.557 11.382v8.755c0 7.354-4.028 11.382-11.557 11.382h-67.94c-7.005 0-12.083-4.028-12.083-11.382v-4.028zM5.654 454.61l5.603-9.28c3.853-6.654 9.105-7.004 15.584-3.152 4.903 2.101 9.63 3.152 14.359 3.152 10.155 0 14.358-3.502 14.358-8.23 0-6.654-5.604-9.106-15.934-9.106h-4.728c-5.954 0-9.28-2.101-12.258-7.88l-1.05-1.926c-2.451-4.728-1.226-9.806 2.801-14.884l5.604-7.004c6.829-8.405 12.257-13.483 12.257-13.483v-.35s-4.203 1.051-12.608 1.051H16.685c-7.53 0-11.383-4.028-11.383-11.382v-8.755c0-7.53 3.853-11.382 11.383-11.382h58.484c7.529 0 11.382 4.027 11.382 11.382v3.327c0 5.778-1.401 9.806-5.079 14.183l-17.509 20.137c19.611 5.078 28.716 20.487 28.716 34.845 0 21.363-14.358 44.126-48.503 44.126-16.636 0-28.192-4.728-35.896-9.455-5.779-4.202-6.304-9.805-2.626-15.934zM144 132h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"], + "list-ul": [512, 512, [], "f0ca", "M96 96c0 26.51-21.49 48-48 48S0 122.51 0 96s21.49-48 48-48 48 21.49 48 48zM48 208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm0 160c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm96-236h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"], + "location-arrow": [512, 512, [], "f124", "M443.683 4.529L27.818 196.418C-18.702 217.889-3.39 288 47.933 288H224v175.993c0 51.727 70.161 66.526 91.582 20.115L507.38 68.225c18.905-40.961-23.752-82.133-63.697-63.696z"], + "lock": [448, 512, [], "f023", "M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z"], + "lock-open": [576, 512, [], "f3c1", "M423.5 0C339.5.3 272 69.5 272 153.5V224H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48h-48v-71.1c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v80c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-80C576 68 507.5-.3 423.5 0z"], + "long-arrow-alt-down": [256, 512, [], "f309", "M168 345.941V44c0-6.627-5.373-12-12-12h-56c-6.627 0-12 5.373-12 12v301.941H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.569 9.373 33.941 0l86.059-86.059c15.119-15.119 4.411-40.971-16.971-40.971H168z"], + "long-arrow-alt-left": [448, 512, [], "f30a", "M134.059 296H436c6.627 0 12-5.373 12-12v-56c0-6.627-5.373-12-12-12H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.569 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296z"], + "long-arrow-alt-right": [448, 512, [], "f30b", "M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z"], + "long-arrow-alt-up": [256, 512, [], "f30c", "M88 166.059V468c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12V166.059h46.059c21.382 0 32.09-25.851 16.971-40.971l-86.059-86.059c-9.373-9.373-24.569-9.373-33.941 0l-86.059 86.059c-15.119 15.119-4.411 40.971 16.971 40.971H88z"], + "low-vision": [576, 512, [], "f2a8", "M569.344 231.631C512.96 135.949 407.81 72 288 72c-28.468 0-56.102 3.619-82.451 10.409L152.778 10.24c-7.601-10.858-22.564-13.5-33.423-5.9l-13.114 9.178c-10.86 7.601-13.502 22.566-5.9 33.426l43.131 58.395C89.449 131.73 40.228 174.683 6.682 231.581c-.01.017-.023.033-.034.05-8.765 14.875-8.964 33.528 0 48.739 38.5 65.332 99.742 115.862 172.859 141.349L55.316 244.302A272.194 272.194 0 0 1 83.61 208.39l119.4 170.58h.01l40.63 58.04a330.055 330.055 0 0 0 78.94 1.17l-189.98-271.4a277.628 277.628 0 0 1 38.777-21.563l251.836 356.544c7.601 10.858 22.564 13.499 33.423 5.9l13.114-9.178c10.86-7.601 13.502-22.567 5.9-33.426l-43.12-58.377-.007-.009c57.161-27.978 104.835-72.04 136.81-126.301a47.938 47.938 0 0 0 .001-48.739zM390.026 345.94l-19.066-27.23c24.682-32.567 27.711-76.353 8.8-111.68v.03c0 23.65-19.17 42.82-42.82 42.82-23.828 0-42.82-19.349-42.82-42.82 0-23.65 19.17-42.82 42.82-42.82h.03c-24.75-13.249-53.522-15.643-79.51-7.68l-19.068-27.237C253.758 123.306 270.488 120 288 120c75.162 0 136 60.826 136 136 0 34.504-12.833 65.975-33.974 89.94z"], + "luggage-cart": [640, 512, [], "f59d", "M224 320h32V96h-32c-17.67 0-32 14.33-32 32v160c0 17.67 14.33 32 32 32zm352-32V128c0-17.67-14.33-32-32-32h-32v224h32c17.67 0 32-14.33 32-32zm48 96H128V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h48v368c0 8.84 7.16 16 16 16h82.94c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16h197.88c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM480 96V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v272h192V96zm-48 0h-96V48h96v48z"], + "magic": [512, 512, [], "f0d0", "M224 96l16-32 32-16-32-16-16-32-16 32-32 16 32 16 16 32zM80 160l26.66-53.33L160 80l-53.34-26.67L80 0 53.34 53.33 0 80l53.34 26.67L80 160zm352 128l-26.66 53.33L352 368l53.34 26.67L432 448l26.66-53.33L512 368l-53.34-26.67L432 288zm70.62-193.77L417.77 9.38C411.53 3.12 403.34 0 395.15 0c-8.19 0-16.38 3.12-22.63 9.38L9.38 372.52c-12.5 12.5-12.5 32.76 0 45.25l84.85 84.85c6.25 6.25 14.44 9.37 22.62 9.37 8.19 0 16.38-3.12 22.63-9.37l363.14-363.15c12.5-12.48 12.5-32.75 0-45.24zM359.45 203.46l-50.91-50.91 86.6-86.6 50.91 50.91-86.6 86.6z"], + "magnet": [512, 512, [], "f076", "M164.1 160H12c-6.6 0-12-5.4-12-12V68c0-19.9 16.1-36 36-36h104c19.9 0 36 16.1 36 36v80c.1 6.6-5.3 12-11.9 12zm348-12V67.9c0-19.9-16.1-36-36-36h-104c-19.9 0-36 16.1-36 36v80c0 6.6 5.4 12 12 12h152c6.6.1 12-5.3 12-11.9zm-164 44c-6.6 0-12 5.4-12 12v52c0 128.1-160 127.9-160 0v-52c0-6.6-5.4-12-12-12h-152c-6.7 0-12 5.4-12 12.1.1 21.4.6 40.3 0 53.3C.1 408 136.3 504 256.9 504 377.5 504 512 408 512 257.3c-.6-12.8-.2-33 0-53.2 0-6.7-5.3-12.1-12-12.1H348.1z"], + "male": [192, 512, [], "f183", "M96 0c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64S60.654 0 96 0m48 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H48c-26.51 0-48 21.49-48 48v136c0 13.255 10.745 24 24 24h16v136c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V352h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48z"], + "map": [576, 512, [], "f279", "M0 117.66v346.32c0 11.32 11.43 19.06 21.94 14.86L160 416V32L20.12 87.95A32.006 32.006 0 0 0 0 117.66zM192 416l192 64V96L192 32v384zM554.06 33.16L416 96v384l139.88-55.95A31.996 31.996 0 0 0 576 394.34V48.02c0-11.32-11.43-19.06-21.94-14.86z"], + "map-marked": [576, 512, [], "f59f", "M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z"], + "map-marked-alt": [576, 512, [], "f5a0", "M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zm0 168c-23.2 0-42-18.8-42-42s18.8-42 42-42 42 18.8 42 42-18.8 42-42 42zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z"], + "map-marker": [384, 512, [], "f041", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0z"], + "map-marker-alt": [384, 512, [], "f3c5", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"], + "map-pin": [320, 512, [], "f276", "M192 300.813v172.82l-22.015 33.023c-4.75 7.125-15.219 7.125-19.969 0L128 473.633v-172.82a162.221 162.221 0 0 0 64 0zM160 0c79.529 0 144 64.471 144 144s-64.471 144-144 144S16 223.529 16 144 80.471 0 160 0M80 136c0-39.701 32.299-72 72-72a8 8 0 0 0 0-16c-48.523 0-88 39.477-88 88a8 8 0 0 0 16 0z"], + "map-signs": [512, 512, [], "f277", "M487.515 104.485L439.03 152.97a23.998 23.998 0 0 1-16.97 7.029H56c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h160v-8c0-13.255 10.745-24 24-24h32c13.255 0 24 10.745 24 24v8h126.059a24 24 0 0 1 16.97 7.029l48.485 48.485c4.687 4.687 4.687 12.285.001 16.971zM216 368v120c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V368h-80zm240-144H296v-48h-80v48H89.941a24 24 0 0 0-16.97 7.029l-48.485 48.485c-4.686 4.686-4.686 12.284 0 16.971l48.485 48.485a23.998 23.998 0 0 0 16.97 7.029H456c13.255 0 24-10.745 24-24v-80C480 234.745 469.255 224 456 224z"], + "marker": [512, 512, [], "f5a1", "M93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l75.4-75.4-128.02-128.02-75.4 75.4zM485.49 26.51c-35.35-35.35-92.67-35.35-128.02 0l-21.76 21.76-36.56-36.55c-15.62-15.62-40.95-15.62-56.56 0L138.47 115.84c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0l87.15-87.15 19.59 19.59L191.98 192 320 320.02l165.49-165.49c35.35-35.35 35.35-92.66 0-128.02z"], + "mars": [384, 512, [], "f222", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c0-6.6-5.4-12-12-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"], + "mars-double": [512, 512, [], "f227", "M340 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C198.5 72.1 172.2 64 144 64 64.5 64 0 128.5 0 208s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.5 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 288c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80zm356-128.1h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7c-18.2-11.4-39-18.9-61.5-21.3-2.1 21.8-8.2 43.3-18.4 63.3 1.1 0 2.2-.1 3.2-.1 44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80c0-1.1 0-2.2.1-3.2-20 10.2-41.5 16.4-63.3 18.4C168.4 455.6 229.6 512 304 512c79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12v-79c0-6.7-5.4-12.1-12-12.1z"], + "mars-stroke": [384, 512, [], "f229", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-17.5 17.5-14.1-14.1c-4.7-4.7-12.3-4.7-17 0L224.5 133c-4.7 4.7-4.7 12.3 0 17l14.1 14.1-18 18c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l18-18 14.1 14.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L329.2 164l17.5-17.5 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c-.1-6.6-5.5-12-12.1-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"], + "mars-stroke-h": [480, 512, [], "f22b", "M476.2 247.5l-55.9-55.9c-7.6-7.6-20.5-2.2-20.5 8.5V224H376v-20c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v20h-27.6c-5.8-25.6-18.7-49.9-38.6-69.8C189.6 98 98.4 98 42.2 154.2c-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 19.9-19.9 32.8-44.2 38.6-69.8H312v20c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-20h23.9v23.9c0 10.7 12.9 16 20.5 8.5l55.9-55.9c4.6-4.7 4.6-12.3-.1-17zm-275.6 65.1c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z"], + "mars-stroke-v": [288, 512, [], "f22a", "M245.8 234.2c-19.9-19.9-44.2-32.8-69.8-38.6v-25.4h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V81.4h23.9c10.7 0 16-12.9 8.5-20.5L152.5 5.1c-4.7-4.7-12.3-4.7-17 0L79.6 61c-7.6 7.6-2.2 20.5 8.5 20.5H112v24.7H92c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h20v25.4c-25.6 5.8-49.9 18.7-69.8 38.6-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 56.3-56.2 56.3-147.4 0-203.6zm-45.2 158.4c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z"], + "medal": [512, 512, [], "f5a2", "M223.75 130.75L154.62 15.54A31.997 31.997 0 0 0 127.18 0H16.03C3.08 0-4.5 14.57 2.92 25.18l111.27 158.96c29.72-27.77 67.52-46.83 109.56-53.39zM495.97 0H384.82c-11.24 0-21.66 5.9-27.44 15.54l-69.13 115.21c42.04 6.56 79.84 25.62 109.56 53.38L509.08 25.18C516.5 14.57 508.92 0 495.97 0zM256 160c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm92.52 157.26l-37.93 36.96 8.97 52.22c1.6 9.36-8.26 16.51-16.65 12.09L256 393.88l-46.9 24.65c-8.4 4.45-18.25-2.74-16.65-12.09l8.97-52.22-37.93-36.96c-6.82-6.64-3.05-18.23 6.35-19.59l52.43-7.64 23.43-47.52c2.11-4.28 6.19-6.39 10.28-6.39 4.11 0 8.22 2.14 10.33 6.39l23.43 47.52 52.43 7.64c9.4 1.36 13.17 12.95 6.35 19.59z"], + "medkit": [512, 512, [], "f0fa", "M96 480h320V128h-32V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v48H96v352zm96-384h128v32H192V96zm320 80v256c0 26.51-21.49 48-48 48h-16V128h16c26.51 0 48 21.49 48 48zM64 480H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v352zm288-208v32c0 8.837-7.163 16-16 16h-48v48c0 8.837-7.163 16-16 16h-32c-8.837 0-16-7.163-16-16v-48h-48c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h48v-48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v48h48c8.837 0 16 7.163 16 16z"], + "meh": [496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm176 192H152c-21.2 0-21.2-32 0-32h192c21.2 0 21.2 32 0 32zm-16-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "meh-blank": [496, 512, [], "f5a4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "meh-rolling-eyes": [496, 512, [], "f5a5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 224c0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64s-64-28.7-64-64zm224 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-112c-35.3 0-64-28.7-64-64 0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64z"], + "memory": [640, 512, [], "f538", "M640 130.94V96c0-17.67-14.33-32-32-32H32C14.33 64 0 78.33 0 96v34.94c18.6 6.61 32 24.19 32 45.06s-13.4 38.45-32 45.06V320h640v-98.94c-18.6-6.61-32-24.19-32-45.06s13.4-38.45 32-45.06zM224 256h-64V128h64v128zm128 0h-64V128h64v128zm128 0h-64V128h64v128zM0 448h64v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h64v-96H0v96z"], + "mercury": [288, 512, [], "f223", "M288 208c0-44.2-19.9-83.7-51.2-110.1 2.5-1.8 4.9-3.8 7.2-5.8 24.7-21.2 39.8-48.8 43.2-78.8.9-7.1-4.7-13.3-11.9-13.3h-40.5C229 0 224.1 4.1 223 9.8c-2.4 12.5-9.6 24.3-20.7 33.8C187 56.8 166.3 64 144 64s-43-7.2-58.4-20.4C74.5 34.1 67.4 22.3 64.9 9.8 63.8 4.1 58.9 0 53.2 0H12.7C5.5 0-.1 6.2.8 13.3 4.2 43.4 19.2 71 44 92.2c2.3 2 4.7 3.9 7.2 5.8C19.9 124.3 0 163.8 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z"], + "microchip": [512, 512, [], "f2db", "M416 48v416c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h224c26.51 0 48 21.49 48 48zm96 58v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42V88h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zM30 376h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6z"], + "microphone": [352, 512, [], "f130", "M176 352c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96zm160-160h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16z"], + "microphone-alt": [352, 512, [], "f3c9", "M336 192h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16zM176 352c53.02 0 96-42.98 96-96h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96z"], + "microphone-alt-slash": [640, 512, [], "f539", "M633.82 458.1L476.26 336.33C488.74 312.21 496 284.98 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67h-43.67l-41.4-32H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.78c11.71-1.62 23.1-4.28 33.96-8.08l-50.4-38.96c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z"], + "microphone-slash": [640, 512, [], "f131", "M633.82 458.1l-157.8-121.96C488.61 312.13 496 285.01 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67V96c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.77c11.66-1.6 22.85-4.54 33.67-8.31l-50.11-38.73c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z"], + "minus": [448, 512, [], "f068", "M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"], + "minus-circle": [512, 512, [], "f056", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM124 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H124z"], + "minus-square": [448, 512, [], "f146", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H92z"], + "mobile": [320, 512, [], "f10b", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "mobile-alt": [320, 512, [], "f3cd", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm112-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v312z"], + "money-bill": [640, 512, [], "f0d6", "M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 176c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 48h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z"], + "money-bill-alt": [640, 512, [], "f3d1", "M352 288h-16v-88c0-4.42-3.58-8-8-8h-13.58c-4.74 0-9.37 1.4-13.31 4.03l-15.33 10.22a7.994 7.994 0 0 0-2.22 11.09l8.88 13.31a7.994 7.994 0 0 0 11.09 2.22l.47-.31V288h-16c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8h64c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 192c-53.02 0-96-50.15-96-112 0-61.86 42.98-112 96-112s96 50.14 96 112c0 61.87-43 112-96 112zm272 32h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z"], + "money-bill-wave": [640, 512, [], "f53a", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM48 132.22c20.12 5.04 41.12 7.57 62.72 8.93C104.84 170.54 79 192.69 48 192.69v-60.47zm0 285v-47.78c34.37 0 62.18 27.27 63.71 61.4-22.53-1.81-43.59-6.31-63.71-13.62zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 27.78c-17.52-4.39-35.71-6.85-54.32-8.44 5.87-26.08 27.5-45.88 54.32-49.28v57.72zm0-236.11c-30.89-3.91-54.86-29.7-55.81-61.55 19.54 2.17 38.09 6.23 55.81 12.66v48.89z"], + "money-bill-wave-alt": [640, 512, [], "f53b", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96z"], + "money-check": [640, 512, [], "f53c", "M0 448c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128H0v320zm448-208c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-32zm0 120c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H456c-4.42 0-8-3.58-8-8v-16zM64 264c0-4.42 3.58-8 8-8h304c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm0 96c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zM624 32H16C7.16 32 0 39.16 0 48v48h640V48c0-8.84-7.16-16-16-16z"], + "money-check-alt": [640, 512, [], "f53d", "M608 32H32C14.33 32 0 46.33 0 64v384c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM176 327.88V344c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V152c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07zM416 312c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm160 0c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h272c4.42 0 8 3.58 8 8v16z"], + "monument": [384, 512, [], "f5a6", "M368 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h352c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-78.86-347.26a31.97 31.97 0 0 0-9.21-19.44L203.31 4.69c-6.25-6.25-16.38-6.25-22.63 0l-76.6 76.61a31.97 31.97 0 0 0-9.21 19.44L64 416h256l-30.86-315.26zM240 307.2c0 6.4-6.4 12.8-12.8 12.8h-70.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h70.4c6.4 0 12.8 6.4 12.8 12.8v38.4z"], + "moon": [512, 512, [], "f186", "M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z"], + "mortar-pestle": [512, 512, [], "f5a7", "M501.54 60.91c17.22-17.22 12.51-46.25-9.27-57.14a35.696 35.696 0 0 0-37.37 3.37L251.09 160h151.37l99.08-99.09zM496 192H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c0 80.98 50.2 150.11 121.13 178.32-12.76 16.87-21.72 36.8-24.95 58.69-1.46 9.92 6.04 18.98 16.07 18.98h223.5c10.03 0 17.53-9.06 16.07-18.98-3.22-21.89-12.18-41.82-24.95-58.69C429.8 406.11 480 336.98 480 256h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"], + "motorcycle": [640, 512, [], "f21c", "M512.949 192.003c-14.862-.108-29.14 2.322-42.434 6.874L437.589 144H520c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24h-45.311a24 24 0 0 0-17.839 7.945l-37.496 41.663-22.774-37.956A24 24 0 0 0 376 64h-80c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h66.411l19.2 32H227.904c-17.727-23.073-44.924-40-99.904-40H72.54c-13.455 0-24.791 11.011-24.536 24.464C48.252 141.505 58.9 152 72 152h56c24.504 0 38.686 10.919 47.787 24.769l-11.291 20.529c-13.006-3.865-26.871-5.736-41.251-5.21C55.857 194.549 1.565 249.605.034 317.021-1.603 389.076 56.317 448 128 448c59.642 0 109.744-40.794 123.953-96h84.236c13.673 0 24.589-11.421 23.976-25.077-2.118-47.12 17.522-93.665 56.185-125.026l12.485 20.808c-27.646 23.654-45.097 58.88-44.831 98.179.47 69.556 57.203 126.452 126.758 127.11 71.629.678 129.839-57.487 129.234-129.099-.588-69.591-57.455-126.386-127.047-126.892zM128 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c4.242 0 8.405.341 12.469.982L98.97 316.434C90.187 332.407 101.762 352 120 352h81.297c-12.37 28.225-40.56 48-73.297 48zm388.351-.116C470.272 402.337 432 365.554 432 320c0-21.363 8.434-40.781 22.125-55.144l49.412 82.352c4.546 7.577 14.375 10.034 21.952 5.488l13.72-8.232c7.577-4.546 10.034-14.375 5.488-21.952l-48.556-80.927A80.005 80.005 0 0 1 512 240c45.554 0 82.338 38.273 79.884 84.352-2.16 40.558-34.974 73.372-75.533 75.532z"], + "mouse-pointer": [320, 512, [], "f245", "M302.189 329.126H196.105l55.831 135.993c3.889 9.428-.555 19.999-9.444 23.999l-49.165 21.427c-9.165 4-19.443-.571-23.332-9.714l-53.053-129.136-86.664 89.138C18.729 472.71 0 463.554 0 447.977V18.299C0 1.899 19.921-6.096 30.277 5.443l284.412 292.542c11.472 11.179 3.007 31.141-12.5 31.141z"], + "music": [512, 512, [], "f001", "M470.4 1.5l-304 96C153.1 101.7 144 114 144 128v264.6c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V220.5l272-85.9v194c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V32c0-21.7-21.1-37-41.6-30.5z"], + "neuter": [288, 512, [], "f22c", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V468c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V316.4c64.1-14.5 112-71.9 112-140.4zm-144 80c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"], + "newspaper": [576, 512, [], "f1ea", "M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z"], + "not-equal": [448, 512, [], "f53e", "M416 208c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32h-23.88l51.87-66.81c5.37-7.02 4.04-17.06-2.97-22.43L415.61 3.3c-7.02-5.38-17.06-4.04-22.44 2.97L311.09 112H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h204.56l-74.53 96H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h55.49l-51.87 66.81c-5.37 7.01-4.04 17.05 2.97 22.43L64 508.7c7.02 5.38 17.06 4.04 22.43-2.97L168.52 400H416c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32H243.05l74.53-96H416z"], + "notes-medical": [384, 512, [], "f481", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm96 304c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm0-192c0 4.4-3.6 8-8 8H104c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16z"], + "object-group": [512, 512, [], "f247", "M480 128V96h20c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v20H64V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v40c0 6.627 5.373 12 12 12h20v320H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-20h384v20c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-20V128zM96 276V140c0-6.627 5.373-12 12-12h168c6.627 0 12 5.373 12 12v136c0 6.627-5.373 12-12 12H108c-6.627 0-12-5.373-12-12zm320 96c0 6.627-5.373 12-12 12H236c-6.627 0-12-5.373-12-12v-52h72c13.255 0 24-10.745 24-24v-72h84c6.627 0 12 5.373 12 12v136z"], + "object-ungroup": [576, 512, [], "f248", "M64 320v26a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6v-52a6 6 0 0 1 6-6h26V96H6a6 6 0 0 1-6-6V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v26h288V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-26v192h26a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-52a6 6 0 0 1-6-6v-26H64zm480-64v-32h26a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-52a6 6 0 0 0-6 6v26H408v72h8c13.255 0 24 10.745 24 24v64c0 13.255-10.745 24-24 24h-64c-13.255 0-24-10.745-24-24v-8H192v72h-26a6 6 0 0 0-6 6v52a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-26h288v26a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-26V256z"], + "outdent": [448, 512, [], "f03b", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm208 144h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm192-128h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM4.687 267.313l96 95.984C110.734 373.348 128 366.224 128 351.984V160.008c0-14.329-17.325-21.304-27.313-11.313l-96 95.992c-6.249 6.248-6.249 16.378 0 22.626z"], + "paint-brush": [512, 512, [], "f1fc", "M167.02 309.34c-40.12 2.58-76.53 17.86-97.19 72.3-2.35 6.21-8 9.98-14.59 9.98-11.11 0-45.46-27.67-55.25-34.35C0 439.62 37.93 512 128 512c75.86 0 128-43.77 128-120.19 0-3.11-.65-6.08-.97-9.13l-88.01-73.34zM457.89 0c-15.16 0-29.37 6.71-40.21 16.45C213.27 199.05 192 203.34 192 257.09c0 13.7 3.25 26.76 8.73 38.7l63.82 53.18c7.21 1.8 14.64 3.03 22.39 3.03 62.11 0 98.11-45.47 211.16-256.46 7.38-14.35 13.9-29.85 13.9-45.99C512 20.64 486 0 457.89 0z"], + "paint-roller": [512, 512, [], "f5aa", "M416 128V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32h352c17.67 0 32-14.33 32-32zm32-64v128c0 17.67-14.33 32-32 32H256c-35.35 0-64 28.65-64 64v32c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32v-32h160c53.02 0 96-42.98 96-96v-64c0-35.35-28.65-64-64-64z"], + "palette": [512, 512, [], "f53f", "M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "pallet": [640, 512, [], "f482", "M144 256h352c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H384v128l-64-32-64 32V0H144c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16zm480 128c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v64H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-64h48zm-336 64H128v-64h160v64zm224 0H352v-64h160v64z"], + "paper-plane": [512, 512, [], "f1d8", "M476 3.2L12.5 270.6c-18.1 10.4-15.8 35.6 2.2 43.2L121 358.4l287.3-253.2c5.5-4.9 13.3 2.6 8.6 8.3L176 407v80.5c0 23.6 28.5 32.9 42.5 15.8L282 426l124.6 52.2c14.2 6 30.4-2.9 33-18.2l72-432C515 7.8 493.3-6.8 476 3.2z"], + "paperclip": [448, 512, [], "f0c6", "M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z"], + "parachute-box": [512, 512, [], "f4cd", "M511.9 175c-9.1-75.6-78.4-132.4-158.3-158.7C390 55.7 416 116.9 416 192h28.1L327.5 321.5c-2.5-.6-4.8-1.5-7.5-1.5h-48V192h112C384 76.8 315.1 0 256 0S128 76.8 128 192h112v128h-48c-2.7 0-5 .9-7.5 1.5L67.9 192H96c0-75.1 26-136.3 62.4-175.7C78.5 42.7 9.2 99.5.1 175c-1.1 9.1 6.8 17 16 17h8.7l136.7 151.9c-.7 2.6-1.6 5.2-1.6 8.1v128c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32V352c0-2.9-.9-5.4-1.6-8.1L487.1 192h8.7c9.3 0 17.2-7.8 16.1-17z"], + "paragraph": [448, 512, [], "f1dd", "M408 32H177.531C88.948 32 16.045 103.335 16 191.918 15.956 280.321 87.607 352 176 352v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h32v344c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h40c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24z"], + "parking": [448, 512, [], "f540", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM240 320h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h96c52.9 0 96 43.1 96 96s-43.1 96-96 96zm0-128h-48v64h48c17.6 0 32-14.4 32-32s-14.4-32-32-32z"], + "passport": [448, 512, [], "f5ab", "M129.62 176h39.09c1.49-27.03 6.54-51.35 14.21-70.41-27.71 13.24-48.02 39.19-53.3 70.41zm0 32c5.29 31.22 25.59 57.17 53.3 70.41-7.68-19.06-12.72-43.38-14.21-70.41h-39.09zM224 286.69c7.69-7.45 20.77-34.42 23.43-78.69h-46.87c2.67 44.26 15.75 71.24 23.44 78.69zM200.57 176h46.87c-2.66-44.26-15.74-71.24-23.43-78.69-7.7 7.45-20.78 34.43-23.44 78.69zm64.51 102.41c27.71-13.24 48.02-39.19 53.3-70.41h-39.09c-1.49 27.03-6.53 51.35-14.21 70.41zM416 0H64C28.65 0 0 28.65 0 64v384c0 35.35 28.65 64 64 64h352c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32zm-80 416H112c-8.8 0-16-7.2-16-16s7.2-16 16-16h224c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-112-96c-70.69 0-128-57.31-128-128S153.31 64 224 64s128 57.31 128 128-57.31 128-128 128zm41.08-214.41c7.68 19.06 12.72 43.38 14.21 70.41h39.09c-5.28-31.22-25.59-57.17-53.3-70.41z"], + "paste": [448, 512, [], "f0ea", "M128 184c0-30.879 25.122-56 56-56h136V56c0-13.255-10.745-24-24-24h-80.61C204.306 12.89 183.637 0 160 0s-44.306 12.89-55.39 32H24C10.745 32 0 42.745 0 56v336c0 13.255 10.745 24 24 24h104V184zm32-144c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24zm184 248h104v200c0 13.255-10.745 24-24 24H184c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.059V256h-96v-96h6.059a24 24 0 0 1 16.97 7.029l65.941 65.941a24.002 24.002 0 0 1 7.03 16.971z"], + "pause": [448, 512, [], "f04c", "M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z"], + "pause-circle": [512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-16 328c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160zm112 0c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160z"], + "paw": [512, 512, [], "f1b0", "M85.231 330.958C36 330.958 0 273.792 0 231.5c0-28.292 16-58.042 49.538-58.042 49.231 0 85.231 57.458 85.231 99.75 0 28.292-15.692 57.75-49.538 57.75zm348 106.167c0 37.042-32 42.875-63.385 42.875-41.231 0-74.462-26.25-113.846-26.25-41.231 0-76.308 25.958-120.923 25.958-29.847 0-56.308-9.625-56.308-42.583C78.769 368 180.616 265.333 256 265.333s177.231 102.959 177.231 171.792zM182.462 203.792c-49.847 0-80-59.5-80-100.333C102.462 70.792 120.308 32 160 32c50.154 0 80 59.5 80 100.333 0 32.667-17.846 71.459-57.538 71.459zM272 132.333C272 91.5 301.846 32 352 32c39.692 0 57.539 38.792 57.539 71.458 0 40.833-30.154 100.333-80.001 100.333C289.846 203.792 272 165 272 132.333zM512 231.5c0 42.292-36 99.458-85.231 99.458-33.847 0-49.538-29.458-49.538-57.75 0-42.291 35.999-99.75 85.231-99.75C496 173.458 512 203.208 512 231.5z"], + "pen": [512, 512, [], "f304", "M290.74 93.24l128.02 128.02-277.99 277.99-114.14 12.6C11.35 513.54-1.56 500.62.14 485.34l12.7-114.22 277.9-277.88zm207.2-19.06l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.76 18.75-49.16 0-67.91z"], + "pen-alt": [512, 512, [], "f305", "M497.94 74.17l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91zm-246.8-20.53c-15.62-15.62-40.94-15.62-56.56 0L75.8 172.43c-6.25 6.25-6.25 16.38 0 22.62l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l101.82-101.82 22.63 22.62L93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l196.79-196.79-82.77-82.77-84.85-84.85z"], + "pen-fancy": [512, 512, [], "f5ac", "M79.18 282.94a32.005 32.005 0 0 0-20.24 20.24L0 480l4.69 4.69 92.89-92.89c-.66-2.56-1.57-5.03-1.57-7.8 0-17.67 14.33-32 32-32s32 14.33 32 32-14.33 32-32 32c-2.77 0-5.24-.91-7.8-1.57l-92.89 92.89L32 512l176.82-58.94a31.983 31.983 0 0 0 20.24-20.24l33.07-84.07-98.88-98.88-84.07 33.07zM369.25 28.32L186.14 227.81l97.85 97.85 199.49-183.11C568.4 67.48 443.73-55.94 369.25 28.32z"], + "pen-nib": [512, 512, [], "f5ad", "M136.6 138.79a64.003 64.003 0 0 0-43.31 41.35L0 460l14.69 14.69L164.8 324.58c-2.99-6.26-4.8-13.18-4.8-20.58 0-26.51 21.49-48 48-48s48 21.49 48 48-21.49 48-48 48c-7.4 0-14.32-1.81-20.58-4.8L37.31 497.31 52 512l279.86-93.29a64.003 64.003 0 0 0 41.35-43.31L416 224 288 96l-151.4 42.79zm361.34-64.62l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91z"], + "pen-square": [448, 512, [], "f14b", "M400 480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zM238.1 177.9L102.4 313.6l-6.3 57.1c-.8 7.6 5.6 14.1 13.3 13.3l57.1-6.3L302.2 242c2.3-2.3 2.3-6.1 0-8.5L246.7 178c-2.5-2.4-6.3-2.4-8.6-.1zM345 165.1L314.9 135c-9.4-9.4-24.6-9.4-33.9 0l-23.1 23.1c-2.3 2.3-2.3 6.1 0 8.5l55.5 55.5c2.3 2.3 6.1 2.3 8.5 0L345 199c9.3-9.3 9.3-24.5 0-33.9z"], + "pencil-alt": [512, 512, [], "f303", "M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z"], + "pencil-ruler": [512, 512, [], "f5ae", "M109.46 244.04l134.58-134.56-44.12-44.12-61.68 61.68a7.919 7.919 0 0 1-11.21 0l-11.21-11.21c-3.1-3.1-3.1-8.12 0-11.21l61.68-61.68-33.64-33.65C131.47-3.1 111.39-3.1 99 9.29L9.29 99c-12.38 12.39-12.39 32.47 0 44.86l100.17 100.18zm388.47-116.8c18.76-18.76 18.75-49.17 0-67.93l-45.25-45.25c-18.76-18.76-49.18-18.76-67.95 0l-46.02 46.01 113.2 113.2 46.02-46.03zM316.08 82.71l-297 296.96L.32 487.11c-2.53 14.49 10.09 27.11 24.59 24.56l107.45-18.84L429.28 195.9 316.08 82.71zm186.63 285.43l-33.64-33.64-61.68 61.68c-3.1 3.1-8.12 3.1-11.21 0l-11.21-11.21c-3.09-3.1-3.09-8.12 0-11.21l61.68-61.68-44.14-44.14L267.93 402.5l100.21 100.2c12.39 12.39 32.47 12.39 44.86 0l89.71-89.7c12.39-12.39 12.39-32.47 0-44.86z"], + "people-carry": [640, 512, [], "f4ce", "M128 96c26.5 0 48-21.5 48-48S154.5 0 128 0 80 21.5 80 48s21.5 48 48 48zm384 0c26.5 0 48-21.5 48-48S538.5 0 512 0s-48 21.5-48 48 21.5 48 48 48zm125.7 372.1l-44-110-41.1 46.4-2 18.2 27.7 69.2c5 12.5 17 20.1 29.7 20.1 4 0 8-.7 11.9-2.3 16.4-6.6 24.4-25.2 17.8-41.6zm-34.2-209.8L585 178.1c-4.6-20-18.6-36.8-37.5-44.9-18.5-8-39-6.7-56.1 3.3-22.7 13.4-39.7 34.5-48.1 59.4L432 229.8 416 240v-96c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16v96l-16.1-10.2-11.3-33.9c-8.3-25-25.4-46-48.1-59.4-17.2-10-37.6-11.3-56.1-3.3-18.9 8.1-32.9 24.9-37.5 44.9l-18.4 80.2c-4.6 20 .7 41.2 14.4 56.7l67.2 75.9 10.1 92.6C130 499.8 143.8 512 160 512c1.2 0 2.3-.1 3.5-.2 17.6-1.9 30.2-17.7 28.3-35.3l-10.1-92.8c-1.5-13-6.9-25.1-15.6-35l-43.3-49 17.6-70.3 6.8 20.4c4.1 12.5 11.9 23.4 24.5 32.6l51.1 32.5c4.6 2.9 12.1 4.6 17.2 5h160c5.1-.4 12.6-2.1 17.2-5l51.1-32.5c12.6-9.2 20.4-20 24.5-32.6l6.8-20.4 17.6 70.3-43.3 49c-8.7 9.9-14.1 22-15.6 35l-10.1 92.8c-1.9 17.6 10.8 33.4 28.3 35.3 1.2.1 2.3.2 3.5.2 16.1 0 30-12.1 31.8-28.5l10.1-92.6 67.2-75.9c13.6-15.5 19-36.7 14.4-56.7zM46.3 358.1l-44 110c-6.6 16.4 1.4 35 17.8 41.6 16.8 6.6 35.1-1.7 41.6-17.8l27.7-69.2-2-18.2-41.1-46.4z"], + "percent": [448, 512, [], "f295", "M112 224c61.9 0 112-50.1 112-112S173.9 0 112 0 0 50.1 0 112s50.1 112 112 112zm0-160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm224 224c-61.9 0-112 50.1-112 112s50.1 112 112 112 112-50.1 112-112-50.1-112-112-112zm0 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zM392.3.2l31.6-.1c19.4-.1 30.9 21.8 19.7 37.8L77.4 501.6a23.95 23.95 0 0 1-19.6 10.2l-33.4.1c-19.5 0-30.9-21.9-19.7-37.8l368-463.7C377.2 4 384.5.2 392.3.2z"], + "percentage": [384, 512, [], "f541", "M109.25 173.25c24.99-24.99 24.99-65.52 0-90.51-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 25 25 65.52 25 90.51 0zm256 165.49c-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 24.99 24.99 65.52 24.99 90.51 0 25-24.99 25-65.51 0-90.51zm-1.94-231.43l-22.62-22.62c-12.5-12.5-32.76-12.5-45.25 0L20.69 359.44c-12.5 12.5-12.5 32.76 0 45.25l22.62 22.62c12.5 12.5 32.76 12.5 45.25 0l274.75-274.75c12.5-12.49 12.5-32.75 0-45.25z"], + "phone": [512, 512, [], "f095", "M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z"], + "phone-slash": [640, 512, [], "f3dd", "M268.2 381.4l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48c-10.7 4.6-16.5 16.1-13.9 27.5l24 104c2.5 10.8 12.1 18.6 23.4 18.6 100.7 0 193.7-32.4 269.7-86.9l-80-61.8c-10.9 6.5-22.1 12.7-33.6 18.1zm365.6 76.7L475.1 335.5C537.9 256.4 576 156.9 576 48c0-11.2-7.7-20.9-18.6-23.4l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-12.2 26.1-27.9 50.3-46 72.8L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z"], + "phone-square": [448, 512, [], "f098", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM94 416c-7.033 0-13.057-4.873-14.616-11.627l-14.998-65a15 15 0 0 1 8.707-17.16l69.998-29.999a15 15 0 0 1 17.518 4.289l30.997 37.885c48.944-22.963 88.297-62.858 110.781-110.78l-37.886-30.997a15.001 15.001 0 0 1-4.289-17.518l30-69.998a15 15 0 0 1 17.16-8.707l65 14.998A14.997 14.997 0 0 1 384 126c0 160.292-129.945 290-290 290z"], + "phone-volume": [384, 512, [], "f2a0", "M97.333 506.966c-129.874-129.874-129.681-340.252 0-469.933 5.698-5.698 14.527-6.632 21.263-2.422l64.817 40.513a17.187 17.187 0 0 1 6.849 20.958l-32.408 81.021a17.188 17.188 0 0 1-17.669 10.719l-55.81-5.58c-21.051 58.261-20.612 122.471 0 179.515l55.811-5.581a17.188 17.188 0 0 1 17.669 10.719l32.408 81.022a17.188 17.188 0 0 1-6.849 20.958l-64.817 40.513a17.19 17.19 0 0 1-21.264-2.422zM247.126 95.473c11.832 20.047 11.832 45.008 0 65.055-3.95 6.693-13.108 7.959-18.718 2.581l-5.975-5.726c-3.911-3.748-4.793-9.622-2.261-14.41a32.063 32.063 0 0 0 0-29.945c-2.533-4.788-1.65-10.662 2.261-14.41l5.975-5.726c5.61-5.378 14.768-4.112 18.718 2.581zm91.787-91.187c60.14 71.604 60.092 175.882 0 247.428-4.474 5.327-12.53 5.746-17.552.933l-5.798-5.557c-4.56-4.371-4.977-11.529-.93-16.379 49.687-59.538 49.646-145.933 0-205.422-4.047-4.85-3.631-12.008.93-16.379l5.798-5.557c5.022-4.813 13.078-4.394 17.552.933zm-45.972 44.941c36.05 46.322 36.108 111.149 0 157.546-4.39 5.641-12.697 6.251-17.856 1.304l-5.818-5.579c-4.4-4.219-4.998-11.095-1.285-15.931 26.536-34.564 26.534-82.572 0-117.134-3.713-4.836-3.115-11.711 1.285-15.931l5.818-5.579c5.159-4.947 13.466-4.337 17.856 1.304z"], + "piggy-bank": [576, 512, [], "f4d3", "M560 224h-29.5c-8.8-20-21.6-37.7-37.4-52.5L512 96h-32c-29.4 0-55.4 13.5-73 34.3-7.6-1.1-15.1-2.3-23-2.3H256c-77.4 0-141.9 55-156.8 128H56c-14.8 0-26.5-13.5-23.5-28.8C34.7 215.8 45.4 208 57 208h1c3.3 0 6-2.7 6-6v-20c0-3.3-2.7-6-6-6-28.5 0-53.9 20.4-57.5 48.6C-3.9 258.8 22.7 288 56 288h40c0 52.2 25.4 98.1 64 127.3V496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-48h128v48c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80.7c11.8-8.9 22.3-19.4 31.3-31.3H560c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16zm-128 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM256 96h128c5.4 0 10.7.4 15.9.8 0-.3.1-.5.1-.8 0-53-43-96-96-96s-96 43-96 96c0 2.1.5 4.1.6 6.2 15.2-3.9 31-6.2 47.4-6.2z"], + "pills": [576, 512, [], "f484", "M112 32C50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V144c0-61.9-50.1-112-112-112zm48 224H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm139.7-29.7c-3.5-3.5-9.4-3.1-12.3.8-45.3 62.5-40.4 150.1 15.9 206.4 56.3 56.3 143.9 61.2 206.4 15.9 4-2.9 4.3-8.8.8-12.3L299.7 226.3zm229.8-19c-56.3-56.3-143.9-61.2-206.4-15.9-4 2.9-4.3 8.8-.8 12.3l210.8 210.8c3.5 3.5 9.4 3.1 12.3-.8 45.3-62.6 40.5-150.1-15.9-206.4z"], + "plane": [576, 512, [], "f072", "M480 192H365.71L260.61 8.06A16.014 16.014 0 0 0 246.71 0h-65.5c-10.63 0-18.3 10.17-15.38 20.39L214.86 192H112l-43.2-57.6c-3.02-4.03-7.77-6.4-12.8-6.4H16.01C5.6 128-2.04 137.78.49 147.88L32 256 .49 364.12C-2.04 374.22 5.6 384 16.01 384H56c5.04 0 9.78-2.37 12.8-6.4L112 320h102.86l-49.03 171.6c-2.92 10.22 4.75 20.4 15.38 20.4h65.5c5.74 0 11.04-3.08 13.89-8.06L365.71 320H480c35.35 0 96-28.65 96-64s-60.65-64-96-64z"], + "plane-arrival": [640, 512, [], "f5af", "M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM44.81 205.66l88.74 80a62.607 62.607 0 0 0 25.47 13.93l287.6 78.35c26.48 7.21 54.56 8.72 81 1.36 29.67-8.27 43.44-21.21 47.25-35.71 3.83-14.5-1.73-32.71-23.37-54.96-19.28-19.82-44.35-32.79-70.83-40l-97.51-26.56L282.8 30.22c-1.51-5.81-5.95-10.35-11.66-11.91L206.05.58c-10.56-2.88-20.9 5.32-20.71 16.44l47.92 164.21-102.2-27.84-27.59-67.88c-1.93-4.89-6.01-8.57-11.02-9.93L52.72 64.75c-10.34-2.82-20.53 5-20.72 15.88l.23 101.78c.19 8.91 6.03 17.34 12.58 23.25z"], + "plane-departure": [640, 512, [], "f5b0", "M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM80.55 341.27c6.28 6.84 15.1 10.72 24.33 10.71l130.54-.18a65.62 65.62 0 0 0 29.64-7.12l290.96-147.65c26.74-13.57 50.71-32.94 67.02-58.31 18.31-28.48 20.3-49.09 13.07-63.65-7.21-14.57-24.74-25.27-58.25-27.45-29.85-1.94-59.54 5.92-86.28 19.48l-98.51 49.99-218.7-82.06a17.799 17.799 0 0 0-18-1.11L90.62 67.29c-10.67 5.41-13.25 19.65-5.17 28.53l156.22 98.1-103.21 52.38-72.35-36.47a17.804 17.804 0 0 0-16.07.02L9.91 230.22c-10.44 5.3-13.19 19.12-5.57 28.08l76.21 82.97z"], + "play": [448, 512, [], "f04b", "M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z"], + "play-circle": [512, 512, [], "f144", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z"], + "plug": [384, 512, [], "f1e6", "M256 144V32c0-17.673 14.327-32 32-32s32 14.327 32 32v112h-64zm112 16H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h16v32c0 77.406 54.969 141.971 128 156.796V512h64v-99.204c73.031-14.825 128-79.39 128-156.796v-32h16c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm-240-16V32c0-17.673-14.327-32-32-32S64 14.327 64 32v112h64z"], + "plus": [448, 512, [], "f067", "M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"], + "plus-circle": [512, 512, [], "f055", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"], + "plus-square": [448, 512, [], "f0fe", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-32 252c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92H92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"], + "podcast": [448, 512, [], "f2ce", "M267.429 488.563C262.286 507.573 242.858 512 224 512c-18.857 0-38.286-4.427-43.428-23.437C172.927 460.134 160 388.898 160 355.75c0-35.156 31.142-43.75 64-43.75s64 8.594 64 43.75c0 32.949-12.871 104.179-20.571 132.813zM156.867 288.554c-18.693-18.308-29.958-44.173-28.784-72.599 2.054-49.724 42.395-89.956 92.124-91.881C274.862 121.958 320 165.807 320 220c0 26.827-11.064 51.116-28.866 68.552-2.675 2.62-2.401 6.986.628 9.187 9.312 6.765 16.46 15.343 21.234 25.363 1.741 3.654 6.497 4.66 9.449 1.891 28.826-27.043 46.553-65.783 45.511-108.565-1.855-76.206-63.595-138.208-139.793-140.369C146.869 73.753 80 139.215 80 220c0 41.361 17.532 78.7 45.55 104.989 2.953 2.771 7.711 1.77 9.453-1.887 4.774-10.021 11.923-18.598 21.235-25.363 3.029-2.2 3.304-6.566.629-9.185zM224 0C100.204 0 0 100.185 0 224c0 89.992 52.602 165.647 125.739 201.408 4.333 2.118 9.267-1.544 8.535-6.31-2.382-15.512-4.342-30.946-5.406-44.339-.146-1.836-1.149-3.486-2.678-4.512-47.4-31.806-78.564-86.016-78.187-147.347.592-96.237 79.29-174.648 175.529-174.899C320.793 47.747 400 126.797 400 224c0 61.932-32.158 116.49-80.65 147.867-.999 14.037-3.069 30.588-5.624 47.23-.732 4.767 4.203 8.429 8.535 6.31C395.227 389.727 448 314.187 448 224 448 100.205 347.815 0 224 0zm0 160c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z"], + "poo": [512, 512, [], "f2fe", "M451.4 369.1C468.7 356 480 335.4 480 312c0-39.8-32.2-72-72-72h-14.1c13.4-11.7 22.1-28.8 22.1-48 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C250.3 14.6 256 30.6 256 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 19.2 8.7 36.3 22.1 48H104c-39.8 0-72 32.2-72 72 0 23.4 11.3 44 28.6 57.1C26.3 374.6 0 404.1 0 440c0 39.8 32.2 72 72 72h368c39.8 0 72-32.2 72-72 0-35.9-26.3-65.4-60.6-70.9zM192 256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm159.5 139C341 422.9 293 448 256 448s-85-25.1-95.5-53c-2-5.3 2-11 7.8-11h175.4c5.8 0 9.8 5.7 7.8 11zM320 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "portrait": [384, 512, [], "f3e0", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM192 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 384 80 375.4 80 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"], + "pound-sign": [320, 512, [], "f154", "M308 352h-45.495c-6.627 0-12 5.373-12 12v50.848H128V288h84c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-84v-63.556c0-32.266 24.562-57.086 61.792-57.086 23.658 0 45.878 11.505 57.652 18.849 5.151 3.213 11.888 2.051 15.688-2.685l28.493-35.513c4.233-5.276 3.279-13.005-2.119-17.081C273.124 54.56 236.576 32 187.931 32 106.026 32 48 84.742 48 157.961V224H20c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h28v128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12V364c0-6.627-5.373-12-12-12z"], + "power-off": [512, 512, [], "f011", "M400 54.1c63 45 104 118.6 104 201.9 0 136.8-110.8 247.7-247.5 248C120 504.3 8.2 393 8 256.4 7.9 173.1 48.9 99.3 111.8 54.2c11.7-8.3 28-4.8 35 7.7L162.6 90c5.9 10.5 3.1 23.8-6.6 31-41.5 30.8-68 79.6-68 134.9-.1 92.3 74.5 168.1 168 168.1 91.6 0 168.6-74.2 168-169.1-.3-51.8-24.7-101.8-68.1-134-9.7-7.2-12.4-20.5-6.5-30.9l15.8-28.1c7-12.4 23.2-16.1 34.8-7.8zM296 264V24c0-13.3-10.7-24-24-24h-32c-13.3 0-24 10.7-24 24v240c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24z"], + "prescription": [384, 512, [], "f5b1", "M301.26 352l78.06-78.06c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0L256 306.74l-83.96-83.96C219.31 216.8 256 176.89 256 128c0-53.02-42.98-96-96-96H16C7.16 32 0 39.16 0 48v256c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-80h18.75l128 128-78.06 78.06c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0L256 397.25l78.06 78.06c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63L301.26 352zM64 96h96c17.64 0 32 14.36 32 32s-14.36 32-32 32H64V96z"], + "prescription-bottle": [384, 512, [], "f485", "M32 192h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v64zM360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24z"], + "prescription-bottle-alt": [384, 512, [], "f486", "M360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24zM32 480c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v352zm64-184c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48z"], + "print": [512, 512, [], "f02f", "M464 192h-16V81.941a24 24 0 0 0-7.029-16.97L383.029 7.029A24 24 0 0 0 366.059 0H88C74.745 0 64 10.745 64 24v168H48c-26.51 0-48 21.49-48 48v132c0 6.627 5.373 12 12 12h52v104c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V384h52c6.627 0 12-5.373 12-12V240c0-26.51-21.49-48-48-48zm-80 256H128v-96h256v96zM128 224V64h192v40c0 13.2 10.8 24 24 24h40v96H128zm304 72c-13.254 0-24-10.746-24-24s10.746-24 24-24 24 10.746 24 24-10.746 24-24 24z"], + "procedures": [640, 512, [], "f487", "M528 224H272c-8.8 0-16 7.2-16 16v144H64V144c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v352c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h512v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-61.9-50.1-112-112-112zM136 96h126.1l27.6 55.2c5.9 11.8 22.7 11.8 28.6 0L368 51.8 390.1 96H512c8.8 0 16-7.2 16-16s-7.2-16-16-16H409.9L382.3 8.8C376.4-3 359.6-3 353.7 8.8L304 108.2l-19.9-39.8c-1.4-2.7-4.1-4.4-7.2-4.4H136c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm24 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z"], + "project-diagram": [640, 512, [], "f542", "M384 320H256c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM192 32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v128c0 17.67 14.33 32 32 32h95.72l73.16 128.04C211.98 300.98 232.4 288 256 288h.28L192 175.51V128h224V64H192V32zM608 0H480c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32z"], + "puzzle-piece": [576, 512, [], "f12e", "M519.442 288.651c-41.519 0-59.5 31.593-82.058 31.593C377.409 320.244 432 144 432 144s-196.288 80-196.288-3.297c0-35.827 36.288-46.25 36.288-85.985C272 19.216 243.885 0 210.539 0c-34.654 0-66.366 18.891-66.366 56.346 0 41.364 31.711 59.277 31.711 81.75C175.885 207.719 0 166.758 0 166.758v333.237s178.635 41.047 178.635-28.662c0-22.473-40-40.107-40-81.471 0-37.456 29.25-56.346 63.577-56.346 33.673 0 61.788 19.216 61.788 54.717 0 39.735-36.288 50.158-36.288 85.985 0 60.803 129.675 25.73 181.23 25.73 0 0-34.725-120.101 25.827-120.101 35.962 0 46.423 36.152 86.308 36.152C556.712 416 576 387.99 576 354.443c0-34.199-18.962-65.792-56.558-65.792z"], + "qrcode": [448, 512, [], "f029", "M0 224h192V32H0v192zM64 96h64v64H64V96zm192-64v192h192V32H256zm128 128h-64V96h64v64zM0 480h192V288H0v192zm64-128h64v64H64v-64zm352-64h32v128h-96v-32h-32v96h-64V288h96v32h64v-32zm0 160h32v32h-32v-32zm-64 0h32v32h-32v-32z"], + "question": [384, 512, [], "f128", "M202.021 0C122.202 0 70.503 32.703 29.914 91.026c-7.363 10.58-5.093 25.086 5.178 32.874l43.138 32.709c10.373 7.865 25.132 6.026 33.253-4.148 25.049-31.381 43.63-49.449 82.757-49.449 30.764 0 68.816 19.799 68.816 49.631 0 22.552-18.617 34.134-48.993 51.164-35.423 19.86-82.299 44.576-82.299 106.405V320c0 13.255 10.745 24 24 24h72.471c13.255 0 24-10.745 24-24v-5.773c0-42.86 125.268-44.645 125.268-160.627C377.504 66.256 286.902 0 202.021 0zM192 373.459c-38.196 0-69.271 31.075-69.271 69.271 0 38.195 31.075 69.27 69.271 69.27s69.271-31.075 69.271-69.271-31.075-69.27-69.271-69.27z"], + "question-circle": [512, 512, [], "f059", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z"], + "quidditch": [640, 512, [], "f458", "M256.5 216.8L343.2 326s-16.6 102.4-76.6 150.1C206.7 523.8 0 510.2 0 510.2s3.8-23.1 11-55.4l94.6-112.2c4-4.7-.9-11.6-6.6-9.5l-60.4 22.1c14.4-41.7 32.7-80 54.6-97.5 59.9-47.8 163.3-40.9 163.3-40.9zm238 135c-44 0-79.8 35.8-79.8 79.9 0 44.1 35.7 79.9 79.8 79.9 44.1 0 79.8-35.8 79.8-79.9 0-44.2-35.8-79.9-79.8-79.9zM636.5 31L616.7 6c-5.5-6.9-15.5-8-22.4-2.6L361.8 181.3l-34.1-43c-5.1-6.4-15.1-5.2-18.6 2.2l-25.3 54.6 86.7 109.2 58.8-12.4c8-1.7 11.4-11.2 6.3-17.6l-34.1-42.9L634 53.5c6.9-5.5 8-15.6 2.5-22.5z"], + "quote-left": [512, 512, [], "f10d", "M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z"], + "quote-right": [512, 512, [], "f10e", "M464 32H336c-26.5 0-48 21.5-48 48v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48zm-288 0H48C21.5 32 0 53.5 0 80v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48z"], + "random": [512, 512, [], "f074", "M504.971 359.029c9.373 9.373 9.373 24.569 0 33.941l-80 79.984c-15.01 15.01-40.971 4.49-40.971-16.971V416h-58.785a12.004 12.004 0 0 1-8.773-3.812l-70.556-75.596 53.333-57.143L352 336h32v-39.981c0-21.438 25.943-31.998 40.971-16.971l80 79.981zM12 176h84l52.781 56.551 53.333-57.143-70.556-75.596A11.999 11.999 0 0 0 122.785 96H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12zm372 0v39.984c0 21.46 25.961 31.98 40.971 16.971l80-79.984c9.373-9.373 9.373-24.569 0-33.941l-80-79.981C409.943 24.021 384 34.582 384 56.019V96h-58.785a12.004 12.004 0 0 0-8.773 3.812L96 336H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h110.785c3.326 0 6.503-1.381 8.773-3.812L352 176h32z"], + "receipt": [384, 512, [], "f543", "M358.4 3.2L320 48 265.6 3.2a15.9 15.9 0 0 0-19.2 0L192 48 137.6 3.2a15.9 15.9 0 0 0-19.2 0L64 48 25.6 3.2C15-4.7 0 2.8 0 16v480c0 13.2 15 20.7 25.6 12.8L64 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L192 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L320 464l38.4 44.8c10.5 7.9 25.6.4 25.6-12.8V16c0-13.2-15-20.7-25.6-12.8zM320 360c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16z"], + "recycle": [512, 512, [], "f1b8", "M184.561 261.903c3.232 13.997-12.123 24.635-24.068 17.168l-40.736-25.455-50.867 81.402C55.606 356.273 70.96 384 96.012 384H148c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12H96.115c-75.334 0-121.302-83.048-81.408-146.88l50.822-81.388-40.725-25.448c-12.081-7.547-8.966-25.961 4.879-29.158l110.237-25.45c8.611-1.988 17.201 3.381 19.189 11.99l25.452 110.237zm98.561-182.915l41.289 66.076-40.74 25.457c-12.051 7.528-9 25.953 4.879 29.158l110.237 25.45c8.672 1.999 17.215-3.438 19.189-11.99l25.45-110.237c3.197-13.844-11.99-24.719-24.068-17.168l-40.687 25.424-41.263-66.082c-37.521-60.033-125.209-60.171-162.816 0l-17.963 28.766c-3.51 5.62-1.8 13.021 3.82 16.533l33.919 21.195c5.62 3.512 13.024 1.803 16.536-3.817l17.961-28.743c12.712-20.341 41.973-19.676 54.257-.022zM497.288 301.12l-27.515-44.065c-3.511-5.623-10.916-7.334-16.538-3.821l-33.861 21.159c-5.62 3.512-7.33 10.915-3.818 16.536l27.564 44.112c13.257 21.211-2.057 48.96-27.136 48.96H320V336.02c0-14.213-17.242-21.383-27.313-11.313l-80 79.981c-6.249 6.248-6.249 16.379 0 22.627l80 79.989C302.689 517.308 320 510.3 320 495.989V448h95.88c75.274 0 121.335-82.997 81.408-146.88z"], + "redo": [512, 512, [], "f01e", "M500.333 0h-47.411c-6.853 0-12.314 5.729-11.986 12.574l3.966 82.759C399.416 41.899 331.672 8 256.001 8 119.34 8 7.899 119.526 8 256.187 8.101 393.068 119.096 504 256 504c63.926 0 122.202-24.187 166.178-63.908 5.113-4.618 5.354-12.561.482-17.433l-33.971-33.971c-4.466-4.466-11.64-4.717-16.38-.543C341.308 415.448 300.606 432 256 432c-97.267 0-176-78.716-176-176 0-97.267 78.716-176 176-176 60.892 0 114.506 30.858 146.099 77.8l-101.525-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12z"], + "redo-alt": [512, 512, [], "f2f9", "M256.455 8c66.269.119 126.437 26.233 170.859 68.685l35.715-35.715C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.75c-30.864-28.899-70.801-44.907-113.23-45.273-92.398-.798-170.283 73.977-169.484 169.442C88.764 348.009 162.184 424 256 424c41.127 0 79.997-14.678 110.629-41.556 4.743-4.161 11.906-3.908 16.368.553l39.662 39.662c4.872 4.872 4.631 12.815-.482 17.433C378.202 479.813 319.926 504 256 504 119.034 504 8.001 392.967 8 256.002 7.999 119.193 119.646 7.755 256.455 8z"], + "registered": [512, 512, [], "f25d", "M285.363 207.475c0 18.6-9.831 28.431-28.431 28.431h-29.876v-56.14h23.378c28.668 0 34.929 8.773 34.929 27.709zM504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM363.411 360.414c-46.729-84.825-43.299-78.636-44.702-80.98 23.432-15.172 37.945-42.979 37.945-74.486 0-54.244-31.5-89.252-105.498-89.252h-70.667c-13.255 0-24 10.745-24 24V372c0 13.255 10.745 24 24 24h22.567c13.255 0 24-10.745 24-24v-71.663h25.556l44.129 82.937a24.001 24.001 0 0 0 21.188 12.727h24.464c18.261-.001 29.829-19.591 21.018-35.587z"], + "reply": [512, 512, [], "f3e5", "M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z"], + "reply-all": [576, 512, [], "f122", "M136.309 189.836L312.313 37.851C327.72 24.546 352 35.348 352 56.015v82.763c129.182 10.231 224 52.212 224 183.548 0 61.441-39.582 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 38.512-123.162-3.922-169.482-112.59-182.015v84.175c0 20.701-24.3 31.453-39.687 18.164L136.309 226.164c-11.071-9.561-11.086-26.753 0-36.328zm-128 36.328L184.313 378.15C199.7 391.439 224 380.687 224 359.986v-15.818l-108.606-93.785A55.96 55.96 0 0 1 96 207.998a55.953 55.953 0 0 1 19.393-42.38L224 71.832V56.015c0-20.667-24.28-31.469-39.687-18.164L8.309 189.836c-11.086 9.575-11.071 26.767 0 36.328z"], + "retweet": [640, 512, [], "f079", "M629.657 343.598L528.971 444.284c-9.373 9.372-24.568 9.372-33.941 0L394.343 343.598c-9.373-9.373-9.373-24.569 0-33.941l10.823-10.823c9.562-9.562 25.133-9.34 34.419.492L480 342.118V160H292.451a24.005 24.005 0 0 1-16.971-7.029l-16-16C244.361 121.851 255.069 96 276.451 96H520c13.255 0 24 10.745 24 24v222.118l40.416-42.792c9.285-9.831 24.856-10.054 34.419-.492l10.823 10.823c9.372 9.372 9.372 24.569-.001 33.941zm-265.138 15.431A23.999 23.999 0 0 0 347.548 352H160V169.881l40.416 42.792c9.286 9.831 24.856 10.054 34.419.491l10.822-10.822c9.373-9.373 9.373-24.569 0-33.941L144.971 67.716c-9.373-9.373-24.569-9.373-33.941 0L10.343 168.402c-9.373 9.373-9.373 24.569 0 33.941l10.822 10.822c9.562 9.562 25.133 9.34 34.419-.491L96 169.881V392c0 13.255 10.745 24 24 24h243.549c21.382 0 32.09-25.851 16.971-40.971l-16.001-16z"], + "ribbon": [448, 512, [], "f4d6", "M6.1 444.3c-9.6 10.8-7.5 27.6 4.5 35.7l68.8 27.9c9.9 6.7 23.3 5 31.3-3.8l91.8-101.9-79.2-87.9-117.2 130zm435.8 0s-292-324.6-295.4-330.1c15.4-8.4 40.2-17.9 77.5-17.9s62.1 9.5 77.5 17.9c-3.3 5.6-56 64.6-56 64.6l79.1 87.7 34.2-38c28.7-31.9 33.3-78.6 11.4-115.5l-43.7-73.5c-4.3-7.2-9.9-13.3-16.8-18-40.7-27.6-127.4-29.7-171.4 0-6.9 4.7-12.5 10.8-16.8 18l-43.6 73.2c-1.5 2.5-37.1 62.2 11.5 116L337.5 504c8 8.9 21.4 10.5 31.3 3.8l68.8-27.9c11.9-8 14-24.8 4.3-35.6z"], + "road": [576, 512, [], "f018", "M567.3 383.6L429.9 78.2C426 69.5 417.4 64 408 64h-96.1l1.9 18.8c.7 7.1-4.8 13.2-11.9 13.2H274c-7.1 0-12.7-6.2-11.9-13.2L264 64h-96c-9.4 0-18 5.5-21.9 14.2L8.7 383.6C3.2 395.8 0 409.6 0 424c0 13.3 10.7 24 24 24h213.6c-7.1 0-12.7-6.2-11.9-13.2l10.8-104c.6-6.1 5.8-10.8 11.9-10.8h79.2c6.1 0 11.3 4.6 11.9 10.8l10.8 104c.7 7.1-4.8 13.2-11.9 13.2H552c13.2 0 24-10.7 24-24 0-13.9-3-27.7-8.7-40.4zM254.7 154.8l3.3-32c.6-6.1 5.8-10.8 11.9-10.8h36.2c6.1 0 11.3 4.6 11.9 10.8l3.3 32c.7 7.1-4.8 13.2-11.9 13.2h-42.8c-7.1 0-12.7-6.2-11.9-13.2zM321.8 288h-67.6c-7.1 0-12.7-6.2-11.9-13.2l7.4-72c.6-6.1 5.8-10.8 11.9-10.8h52.7c6.1 0 11.3 4.6 11.9 10.8l7.4 72c.9 7-4.7 13.2-11.8 13.2z"], + "robot": [640, 512, [], "f544", "M0 256v128c0 17.7 14.3 32 32 32h32V224H32c-17.7 0-32 14.3-32 32zM464 96H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H176c-44.2 0-80 35.8-80 80v272c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V176c0-44.2-35.8-80-80-80zM256 416h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm128 120h-64v-32h64v32zm96 0h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm192-72h-32v192h32c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32z"], + "rocket": [512, 512, [], "f135", "M505.1 19.1C503.8 13 499 8.2 492.9 6.9 460.7 0 435.5 0 410.4 0 307.2 0 245.3 55.2 199.1 128H94.9c-18.2 0-34.8 10.3-42.9 26.5L2.6 253.3c-8 16 3.6 34.7 21.5 34.7h95.1c-5.9 12.8-11.9 25.5-18 37.7-3.1 6.2-1.9 13.6 3 18.5l63.6 63.6c4.9 4.9 12.3 6.1 18.5 3 12.2-6.1 24.9-12 37.7-17.9V488c0 17.8 18.8 29.4 34.7 21.5l98.7-49.4c16.3-8.1 26.5-24.8 26.5-42.9V312.8c72.6-46.3 128-108.4 128-211.1.1-25.2.1-50.4-6.8-82.6zM400 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"], + "rss": [448, 512, [], "f09e", "M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"], + "rss-square": [448, 512, [], "f143", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM112 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm157.533 0h-34.335c-6.011 0-11.051-4.636-11.442-10.634-5.214-80.05-69.243-143.92-149.123-149.123-5.997-.39-10.633-5.431-10.633-11.441v-34.335c0-6.535 5.468-11.777 11.994-11.425 110.546 5.974 198.997 94.536 204.964 204.964.352 6.526-4.89 11.994-11.425 11.994zm103.027 0h-34.334c-6.161 0-11.175-4.882-11.427-11.038-5.598-136.535-115.204-246.161-251.76-251.76C68.882 152.949 64 147.935 64 141.774V107.44c0-6.454 5.338-11.664 11.787-11.432 167.83 6.025 302.21 141.191 308.205 308.205.232 6.449-4.978 11.787-11.432 11.787z"], + "ruble-sign": [384, 512, [], "f158", "M239.36 320C324.48 320 384 260.542 384 175.071S324.48 32 239.36 32H76c-6.627 0-12 5.373-12 12v206.632H12c-6.627 0-12 5.373-12 12V308c0 6.627 5.373 12 12 12h52v32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v52c0 6.627 5.373 12 12 12h58.56c6.627 0 12-5.373 12-12v-52H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H146.56v-32h92.8zm-92.8-219.252h78.72c46.72 0 74.88 29.11 74.88 74.323 0 45.832-28.16 75.561-76.16 75.561h-77.44V100.748z"], + "ruler": [640, 512, [], "f545", "M635.7 167.2L556.1 31.7c-8.8-15-28.3-20.1-43.5-11.5l-69 39.1L503.3 161c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L416 75l-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L333.2 122 278 153.3 337.8 255c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-59.7-101.7-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-27.9-47.5-55.2 31.3 59.7 101.7c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L84.9 262.9l-69 39.1C.7 310.7-4.6 329.8 4.2 344.8l79.6 135.6c8.8 15 28.3 20.1 43.5 11.5L624.1 210c15.2-8.6 20.4-27.8 11.6-42.8z"], + "ruler-combined": [512, 512, [], "f546", "M160 288h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56v-64h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56V96h-56c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8h56V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 2.77.91 5.24 1.57 7.8L160 329.38V288zm320 64h-32v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-41.37L24.2 510.43c2.56.66 5.04 1.57 7.8 1.57h448c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"], + "ruler-horizontal": [576, 512, [], "f547", "M544 128h-48v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8H88c-4.42 0-8-3.58-8-8v-88H32c-17.67 0-32 14.33-32 32v192c0 17.67 14.33 32 32 32h512c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32z"], + "ruler-vertical": [256, 512, [], "f548", "M168 416c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 17.67 14.33 32 32 32h192c17.67 0 32-14.33 32-32v-64h-88z"], + "rupee-sign": [320, 512, [], "f156", "M308 96c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v44.748c0 6.627 5.373 12 12 12h85.28c27.308 0 48.261 9.958 60.97 27.252H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h158.757c-6.217 36.086-32.961 58.632-74.757 58.632H12c-6.627 0-12 5.373-12 12v53.012c0 3.349 1.4 6.546 3.861 8.818l165.052 152.356a12.001 12.001 0 0 0 8.139 3.182h82.562c10.924 0 16.166-13.408 8.139-20.818L116.871 319.906c76.499-2.34 131.144-53.395 138.318-127.906H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-58.69c-3.486-11.541-8.28-22.246-14.252-32H308z"], + "sad-cry": [496, 512, [], "f5b3", "M248 8C111 8 0 119 0 256c0 90.1 48.2 168.7 120 212.1V288c0-8.8 7.2-16 16-16s16 7.2 16 16v196.7c29.5 12.4 62 19.3 96 19.3s66.5-6.9 96-19.3V288c0-8.8 7.2-16 16-16s16 7.2 16 16v180.1C447.8 424.7 496 346 496 256 496 119 385 8 248 8zm-65.5 216.5c-14.8-13.2-46.2-13.2-61 0L112 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c.8 5-1.7 10-6.1 12.4-5.8 3.1-11.2.7-13.7-1.6l-9.7-8.5zM248 416c-26.5 0-48-28.7-48-64s21.5-64 48-64 48 28.7 48 64-21.5 64-48 64zm149.8-181.5c-5.8 3.1-11.2.7-13.7-1.6l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S400 197 404 222.2c.6 4.9-1.8 9.9-6.2 12.3z"], + "sad-tear": [496, 512, [], "f5b4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM152 416c-26.5 0-48-21-48-47 0-20 28.5-60.4 41.6-77.8 3.2-4.3 9.6-4.3 12.8 0C171.5 308.6 200 349 200 369c0 26-21.5 47-48 47zm16-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm170.2 154.2C315.8 367.4 282.9 352 248 352c-21.2 0-21.2-32 0-32 44.4 0 86.3 19.6 114.7 53.8 13.8 16.4-11.2 36.5-24.5 20.4z"], + "save": [448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z"], + "school": [640, 512, [], "f549", "M0 224v272c0 8.84 7.16 16 16 16h80V192H32c-17.67 0-32 14.33-32 32zm360-48h-24v-40c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v64c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zm137.75-63.96l-160-106.67a32.02 32.02 0 0 0-35.5 0l-160 106.67A32.002 32.002 0 0 0 128 138.66V512h128V368c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v144h128V138.67c0-10.7-5.35-20.7-14.25-26.63zM320 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm288-64h-64v320h80c8.84 0 16-7.16 16-16V224c0-17.67-14.33-32-32-32z"], + "screwdriver": [512, 512, [], "f54a", "M448 0L320 96v62.06l-83.03 83.03c6.79 4.25 13.27 9.06 19.07 14.87 5.8 5.8 10.62 12.28 14.87 19.07L353.94 192H416l96-128-64-64zM128 278.59L10.92 395.67c-14.55 14.55-14.55 38.15 0 52.71l52.7 52.7c14.56 14.56 38.15 14.56 52.71 0L233.41 384c29.11-29.11 29.11-76.3 0-105.41s-76.3-29.11-105.41 0z"], + "search": [512, 512, [], "f002", "M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"], + "search-minus": [512, 512, [], "f010", "M304 192v32c0 6.6-5.4 12-12 12H124c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z"], + "search-plus": [512, 512, [], "f00e", "M304 192v32c0 6.6-5.4 12-12 12h-56v56c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-56h-56c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h56v-56c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v56h56c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z"], + "seedling": [512, 512, [], "f4d8", "M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z"], + "server": [512, 512, [], "f233", "M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z"], + "share": [512, 512, [], "f064", "M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z"], + "share-alt": [448, 512, [], "f1e0", "M352 320c-22.608 0-43.387 7.819-59.79 20.895l-102.486-64.054a96.551 96.551 0 0 0 0-41.683l102.486-64.054C308.613 184.181 329.392 192 352 192c53.019 0 96-42.981 96-96S405.019 0 352 0s-96 42.981-96 96c0 7.158.79 14.13 2.276 20.841L155.79 180.895C139.387 167.819 118.608 160 96 160c-53.019 0-96 42.981-96 96s42.981 96 96 96c22.608 0 43.387-7.819 59.79-20.895l102.486 64.054A96.301 96.301 0 0 0 256 416c0 53.019 42.981 96 96 96s96-42.981 96-96-42.981-96-96-96z"], + "share-alt-square": [448, 512, [], "f1e1", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zM304 296c-14.562 0-27.823 5.561-37.783 14.671l-67.958-40.775a56.339 56.339 0 0 0 0-27.793l67.958-40.775C276.177 210.439 289.438 216 304 216c30.928 0 56-25.072 56-56s-25.072-56-56-56-56 25.072-56 56c0 4.797.605 9.453 1.74 13.897l-67.958 40.775C171.823 205.561 158.562 200 144 200c-30.928 0-56 25.072-56 56s25.072 56 56 56c14.562 0 27.823-5.561 37.783-14.671l67.958 40.775a56.088 56.088 0 0 0-1.74 13.897c0 30.928 25.072 56 56 56s56-25.072 56-56C360 321.072 334.928 296 304 296z"], + "share-square": [576, 512, [], "f14d", "M568.482 177.448L424.479 313.433C409.3 327.768 384 317.14 384 295.985v-71.963c-144.575.97-205.566 35.113-164.775 171.353 4.483 14.973-12.846 26.567-25.006 17.33C155.252 383.105 120 326.488 120 269.339c0-143.937 117.599-172.5 264-173.312V24.012c0-21.174 25.317-31.768 40.479-17.448l144.003 135.988c10.02 9.463 10.028 25.425 0 34.896zM384 379.128V448H64V128h50.916a11.99 11.99 0 0 0 8.648-3.693c14.953-15.568 32.237-27.89 51.014-37.676C185.708 80.83 181.584 64 169.033 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48v-88.806c0-8.288-8.197-14.066-16.011-11.302a71.83 71.83 0 0 1-34.189 3.377c-7.27-1.046-13.8 4.514-13.8 11.859z"], + "shekel-sign": [448, 512, [], "f20b", "M248 168v168c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V168c0-75.11-60.89-136-136-136H24C10.75 32 0 42.74 0 56v408c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112h112c30.93 0 56 25.07 56 56zM432 32h-48c-8.84 0-16 7.16-16 16v296c0 30.93-25.07 56-56 56H200V176c0-8.84-7.16-16-16-16h-48c-8.84 0-16 7.16-16 16v280c0 13.25 10.75 24 24 24h168c75.11 0 136-60.89 136-136V48c0-8.84-7.16-16-16-16z"], + "shield-alt": [512, 512, [], "f3ed", "M496 128c0 221.282-135.934 344.645-221.539 380.308a48 48 0 0 1-36.923 0C130.495 463.713 16 326.487 16 128a48 48 0 0 1 29.539-44.308l192-80a48 48 0 0 1 36.923 0l192 80A48 48 0 0 1 496 128zM256 446.313l.066.034c93.735-46.689 172.497-156.308 175.817-307.729L256 65.333v380.98z"], + "ship": [640, 512, [], "f21a", "M496.616 372.639l70.012-70.012c16.899-16.9 9.942-45.771-12.836-53.092L512 236.102V96c0-17.673-14.327-32-32-32h-64V24c0-13.255-10.745-24-24-24H248c-13.255 0-24 10.745-24 24v40h-64c-17.673 0-32 14.327-32 32v140.102l-41.792 13.433c-22.753 7.313-29.754 36.173-12.836 53.092l70.012 70.012C125.828 416.287 85.587 448 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24 61.023 0 107.499-20.61 143.258-59.396C181.677 487.432 216.021 512 256 512h128c39.979 0 74.323-24.568 88.742-59.396C508.495 491.384 554.968 512 616 512c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24-60.817 0-101.542-31.001-119.384-75.361zM192 128h256v87.531l-118.208-37.995a31.995 31.995 0 0 0-19.584 0L192 215.531V128z"], + "shipping-fast": [640, 512, [], "f48b", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H112C85.5 0 64 21.5 64 48v48H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h272c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H40c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H64v128c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"], + "shoe-prints": [640, 512, [], "f54b", "M192 160h32V32h-32c-35.35 0-64 28.65-64 64s28.65 64 64 64zM0 416c0 35.35 28.65 64 64 64h32V352H64c-35.35 0-64 28.65-64 64zm337.46-128c-34.91 0-76.16 13.12-104.73 32-24.79 16.38-44.52 32-104.73 32v128l57.53 15.97c26.21 7.28 53.01 13.12 80.31 15.05 32.69 2.31 65.6.67 97.58-6.2C472.9 481.3 512 429.22 512 384c0-64-84.18-96-174.54-96zM491.42 7.19C459.44.32 426.53-1.33 393.84.99c-27.3 1.93-54.1 7.77-80.31 15.04L256 32v128c60.2 0 79.94 15.62 104.73 32 28.57 18.88 69.82 32 104.73 32C555.82 224 640 192 640 128c0-45.22-39.1-97.3-148.58-120.81z"], + "shopping-bag": [448, 512, [], "f290", "M352 160v-32C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128v32H0v272c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V160h-96zm-192-32c0-35.29 28.71-64 64-64s64 28.71 64 64v32H160v-32zm160 120c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm-192 0c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24z"], + "shopping-basket": [576, 512, [], "f291", "M576 216v16c0 13.255-10.745 24-24 24h-8l-26.113 182.788C514.509 462.435 494.257 480 470.37 480H105.63c-23.887 0-44.139-17.565-47.518-41.212L32 256h-8c-13.255 0-24-10.745-24-24v-16c0-13.255 10.745-24 24-24h67.341l106.78-146.821c10.395-14.292 30.407-17.453 44.701-7.058 14.293 10.395 17.453 30.408 7.058 44.701L170.477 192h235.046L326.12 82.821c-10.395-14.292-7.234-34.306 7.059-44.701 14.291-10.395 34.306-7.235 44.701 7.058L484.659 192H552c13.255 0 24 10.745 24 24zM312 392V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm112 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm-224 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24z"], + "shopping-cart": [576, 512, [], "f07a", "M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z"], + "shower": [512, 512, [], "f2cc", "M389.66 135.6L231.6 293.66c-9.37 9.37-24.57 9.37-33.94 0l-11.32-11.32c-9.37-9.37-9.37-24.57 0-33.94l.11-.11c-34.03-40.21-35.16-98.94-3.39-140.38-11.97-7.55-26.14-11.91-41.3-11.91C98.88 96 64 130.88 64 173.76V480H0V173.76C0 95.59 63.59 32 141.76 32c36.93 0 70.61 14.2 95.86 37.42 35.9-11.51 76.5-4.5 106.67 21.03l.11-.11c9.37-9.37 24.57-9.37 33.94 0l11.32 11.32c9.37 9.37 9.37 24.57 0 33.94zM384 208c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm48-16c8.837 0 16 7.163 16 16s-7.163 16-16 16-16-7.163-16-16 7.163-16 16-16zm80 16c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-128 32c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-96 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm64 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16z"], + "shuttle-van": [640, 512, [], "f5b6", "M628.88 210.65L494.39 49.27A48.01 48.01 0 0 0 457.52 32H32C14.33 32 0 46.33 0 64v288c0 17.67 14.33 32 32 32h32c0 53.02 42.98 96 96 96s96-42.98 96-96h128c0 53.02 42.98 96 96 96s96-42.98 96-96h32c17.67 0 32-14.33 32-32V241.38c0-11.23-3.94-22.1-11.12-30.73zM64 192V96h96v96H64zm96 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm160-240h-96V96h96v96zm160 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm-96-240V96h66.02l80 96H384z"], + "sign": [512, 512, [], "f4d9", "M496 64H128V16c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16v48H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V128h368c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM160 384h320V160H160v224z"], + "sign-in-alt": [512, 512, [], "f2f6", "M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z"], + "sign-language": [448, 512, [], "f2a7", "M91.434 483.987c-.307-16.018 13.109-29.129 29.13-29.129h62.293v-5.714H56.993c-16.021 0-29.437-13.111-29.13-29.129C28.16 404.491 40.835 392 56.428 392h126.429v-5.714H29.136c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h154.286v-5.714H57.707c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h168.566l-31.085-22.606c-12.762-9.281-15.583-27.149-6.302-39.912 9.281-12.761 27.15-15.582 39.912-6.302l123.361 89.715a34.287 34.287 0 0 1 14.12 27.728v141.136c0 15.91-10.946 29.73-26.433 33.374l-80.471 18.934a137.16 137.16 0 0 1-31.411 3.646H120c-15.593-.001-28.269-12.492-28.566-28.014zm73.249-225.701h36.423l-11.187-8.136c-18.579-13.511-20.313-40.887-3.17-56.536l-13.004-16.7c-9.843-12.641-28.43-15.171-40.88-5.088-12.065 9.771-14.133 27.447-4.553 39.75l36.371 46.71zm283.298-2.103l-5.003-152.452c-.518-15.771-13.722-28.136-29.493-27.619-15.773.518-28.137 13.722-27.619 29.493l1.262 38.415L283.565 11.019c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l76.889 98.745-4.509 3.511-94.79-121.734c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l94.443 121.288-4.509 3.511-77.675-99.754c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l52.053 66.849c12.497-8.257 29.055-8.285 41.69.904l123.36 89.714c10.904 7.93 17.415 20.715 17.415 34.198v16.999l61.064-47.549a34.285 34.285 0 0 0 13.202-28.177z"], + "sign-out-alt": [512, 512, [], "f2f5", "M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"], + "signal": [640, 512, [], "f012", "M36 384h56c6.6 0 12 5.4 12 12v104c0 6.6-5.4 12-12 12H36c-6.6 0-12-5.4-12-12V396c0-6.6 5.4-12 12-12zm116-36v152c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V348c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-80v232c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V268c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-112v344c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V156c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zM536 12v488c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V12c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12z"], + "signature": [512, 512, [], "f5b7", "M496 320h-91.86c-9.27 0-19.72-11.31-25.78-28.52-15.23-43.36-48.11-70.3-85.8-70.3-30.84 0-58.47 18.05-76.11 49.23L194.8 106.5C188.84 81.08 169.34 64 146.28 64c-23.05 0-42.55 17.08-48.5 42.5L56.16 284.2C50.7 307.45 37.75 320 28.33 320H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h12.33c41.97 0 78.19-34.23 90.14-85.2l23.84-101.78 29.25 222.11c1.98 15.05 13.82 27.45 28.94 28.75.99.09 1.96.13 2.93.13 14.08 0 26.64-9.27 30.69-22.95l33.03-112.34c5.88-16.72 15.84-27.52 25.41-27.52 9.58 0 19.55 10.8 25.78 28.52 15.23 43.36 48.11 70.3 85.8 70.3H496c8.84 0 16-7.16 16-16v-32c0-8.86-7.16-16.02-16-16.02z"], + "sitemap": [640, 512, [], "f0e8", "M128 352H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm-24-80h192v48h48v-48h192v48h48v-57.59c0-21.17-17.23-38.41-38.41-38.41H344v-64h40c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H256c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h40v64H94.41C73.23 224 56 241.23 56 262.41V320h48v-48zm264 80h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm240 0h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"], + "skull": [512, 512, [], "f54c", "M256 0C114.6 0 0 100.3 0 224c0 70.1 36.9 132.6 94.5 173.7 9.6 6.9 15.2 18.1 13.5 29.9l-9.4 66.2c-1.4 9.6 6 18.2 15.7 18.2H192v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h64v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h77.7c9.7 0 17.1-8.6 15.7-18.2l-9.4-66.2c-1.7-11.7 3.8-23 13.5-29.9C475.1 356.6 512 294.1 512 224 512 100.3 397.4 0 256 0zm-96 320c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm192 0c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64z"], + "sliders-h": [512, 512, [], "f1de", "M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z"], + "smile": [496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.6-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.4-16.2 38.1 4.2 24.6 20.5z"], + "smile-beam": [496, 512, [], "f5b8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM112 223.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zm250.8 122.8C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.3 24.6 20.5zm6.2-118.3l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.6 8.6-11 11.9-15.1 4.5z"], + "smile-wink": [496, 512, [], "f4da", "M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm158.5 16.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.7 11.1-11.4 18.3-19.8 10.8l-9.7-8.5zM157.8 325.8C180.2 352.7 213 368 248 368s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.2 24.6 20.5C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11.2-36.7 24.6-20.4z"], + "smoking": [640, 512, [], "f48d", "M632 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8zM553.3 87.1c-5.7-3.8-9.3-10-9.3-16.8V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v62.3c0 22 10.2 43.4 28.6 55.4 42.2 27.3 67.4 73.8 67.4 124V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-65.5-32.4-126.2-86.7-162.6zM432 352H48c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h384c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zm-32 112H224v-64h176v64zm87.7-322.4C463.8 125 448 99.3 448 70.3V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v66.4c0 43.7 24.6 81.6 60.3 106.7 22.4 15.7 35.7 41.2 35.7 68.6V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-43.3-21-83.4-56.3-108.1zM536 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8z"], + "smoking-ban": [512, 512, [], "f54d", "M96 304c0 8.8 7.2 16 16 16h117.5l-96-96H112c-8.8 0-16 7.2-16 16v64zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 448c-105.9 0-192-86.1-192-192 0-41.4 13.3-79.7 35.7-111.1l267.4 267.4C335.7 434.7 297.4 448 256 448zm45.2-192H384v32h-50.8l-32-32zm111.1 111.1L365.2 320H400c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16H269.2L144.9 99.7C176.3 77.3 214.6 64 256 64c105.9 0 192 86.1 192 192 0 41.4-13.3 79.7-35.7 111.1zM320.6 128c-15.6 0-28.6-11.2-31.4-25.9-.7-3.6-4-6.1-7.7-6.1h-16.2c-5 0-8.7 4.5-8 9.4 4.6 30.9 31.2 54.6 63.3 54.6 15.6 0 28.6 11.2 31.4 25.9.7 3.6 4 6.1 7.7 6.1h16.2c5 0 8.7-4.5 8-9.4-4.6-30.9-31.2-54.6-63.3-54.6z"], + "snowflake": [448, 512, [], "f2dc", "M444.816 301.639a24.12 24.12 0 0 0 2.661-16.978c-2.725-12.966-15.339-21.245-28.174-18.492l-87.407 25.046L264 256l67.896-35.215 87.407 25.046c12.835 2.753 25.449-5.526 28.174-18.492 2.725-12.966-5.471-25.708-18.305-28.461l-47.477-7.137 53.077-30.956c11.363-6.627 15.257-21.306 8.696-32.785-6.561-11.479-21.091-15.412-32.454-8.785l-53.077 30.956 17.621-45.104c4.057-12.606-2.768-26.146-15.247-30.245-12.478-4.099-25.883 2.797-29.94 15.402l-22.232 88.99-60.38 35.215V144l65.175-63.945c8.778-9.852 7.987-25.027-1.766-33.894-9.753-8.867-24.775-8.068-33.552 1.784l-29.857 37.967V24c0-13.255-10.637-24-23.758-24s-23.758 10.745-23.758 24v61.912l-29.857-37.967c-8.779-9.852-23.799-10.652-33.552-1.784-9.753 8.867-10.543 24.042-1.766 33.894L200.242 144v70.431l-60.38-35.215-22.232-88.99c-4.057-12.605-17.462-19.501-29.94-15.402-12.478 4.099-19.304 17.64-15.247 30.245l17.62 45.104-53.077-30.956c-11.363-6.627-25.893-2.694-32.454 8.785s-2.667 26.157 8.696 32.785l53.077 30.956-47.477 7.137C5.993 201.634-2.203 214.375.523 227.341c2.725 12.965 15.339 21.245 28.174 18.492l87.407-25.046L184 256l-67.896 35.215-87.406-25.045c-12.835-2.753-25.449 5.526-28.174 18.492-2.725 12.967 5.47 25.708 18.305 28.461l47.477 7.137-53.077 30.956C1.866 357.843-2.027 372.521 4.533 384s21.091 15.412 32.454 8.785l53.077-30.956-17.62 45.104a24.157 24.157 0 0 0 2.022 19.428c2.831 4.953 7.416 8.909 13.224 10.816 12.478 4.099 25.883-2.797 29.94-15.402l22.232-88.99 60.38-35.215V368l-65.175 63.945c-8.778 9.852-7.987 25.027 1.766 33.894 9.754 8.868 24.774 8.068 33.552-1.784l29.857-37.967V488c0 13.255 10.637 24 23.758 24s23.758-10.745 23.758-24v-61.912l29.857 37.967A23.59 23.59 0 0 0 295.282 472a23.534 23.534 0 0 0 15.885-6.161c9.753-8.867 10.544-24.042 1.766-33.894L247.758 368v-70.431l60.38 35.215 22.232 88.99c4.057 12.605 17.462 19.501 29.94 15.402 12.479-4.099 19.304-17.64 15.247-30.245l-17.621-45.104 53.077 30.956c11.363 6.627 25.893 2.694 32.454-8.785s2.667-26.157-8.696-32.785l-53.077-30.956 47.477-7.137c6.86-1.469 12.394-5.793 15.645-11.481z"], + "solar-panel": [640, 512, [], "f5ba", "M431.98 448.01l-47.97.05V416h-128v32.21l-47.98.05c-8.82.01-15.97 7.16-15.98 15.99l-.05 31.73c-.01 8.85 7.17 16.03 16.02 16.02l223.96-.26c8.82-.01 15.97-7.16 15.98-15.98l.04-31.73c.01-8.85-7.17-16.03-16.02-16.02zM585.2 26.74C582.58 11.31 568.99 0 553.06 0H86.93C71 0 57.41 11.31 54.79 26.74-3.32 369.16.04 348.08.03 352c-.03 17.32 14.29 32 32.6 32h574.74c18.23 0 32.51-14.56 32.59-31.79.02-4.08 3.35 16.95-54.76-325.47zM259.83 64h120.33l9.77 96H250.06l9.77-96zm-75.17 256H71.09L90.1 208h105.97l-11.41 112zm16.29-160H98.24l16.29-96h96.19l-9.77 96zm32.82 160l11.4-112h149.65l11.4 112H233.77zm195.5-256h96.19l16.29 96H439.04l-9.77-96zm26.06 256l-11.4-112H549.9l19.01 112H455.33z"], + "sort": [320, 512, [], "f0dc", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z"], + "sort-alpha-down": [448, 512, [], "f15d", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zm119.075-180.007A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z"], + "sort-alpha-up": [448, 512, [], "f15e", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zm301.671 98.621A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z"], + "sort-amount-down": [512, 512, [], "f160", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z"], + "sort-amount-up": [512, 512, [], "f161", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z"], + "sort-down": [320, 512, [], "f0dd", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z"], + "sort-numeric-down": [448, 512, [], "f162", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM175.984 368H128V48c0-8.837-7.163-16-16-16H80c-8.837 0-16 7.163-16 16v320H16.019c-14.212 0-21.384 17.244-11.314 27.314l79.981 80.002c6.245 6.245 16.38 6.247 22.627 0l79.984-80.002c10.05-10.05 2.928-27.314-11.313-27.314z"], + "sort-numeric-up": [448, 512, [], "f163", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM16.016 144H64v320c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144h47.981c14.212 0 21.384-17.244 11.314-27.314l-79.981-80.002c-6.245-6.245-16.38-6.247-22.627 0L4.702 116.686C-5.347 126.736 1.775 144 16.016 144z"], + "sort-up": [320, 512, [], "f0de", "M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z"], + "spa": [576, 512, [], "f5bb", "M568.25 192c-29.04.13-135.01 6.16-213.84 83-33.12 29.63-53.36 63.3-66.41 94.86-13.05-31.56-33.29-65.23-66.41-94.86-78.83-76.84-184.8-82.87-213.84-83-4.41-.02-7.79 3.4-7.75 7.82.23 27.92 7.14 126.14 88.77 199.3C172.79 480.94 256 480 288 480s115.19.95 199.23-80.88c81.64-73.17 88.54-171.38 88.77-199.3.04-4.42-3.34-7.84-7.75-7.82zM287.98 302.6c12.82-18.85 27.6-35.78 44.09-50.52 19.09-18.61 39.58-33.3 60.26-45.18-16.44-70.5-51.72-133.05-96.73-172.22-4.11-3.58-11.02-3.58-15.14 0-44.99 39.14-80.27 101.63-96.74 172.07 20.37 11.7 40.5 26.14 59.22 44.39a282.768 282.768 0 0 1 45.04 51.46z"], + "space-shuttle": [640, 512, [], "f197", "M592.604 208.244C559.735 192.836 515.777 184 472 184H186.327c-4.952-6.555-10.585-11.978-16.72-16H376C229.157 137.747 219.403 32 96.003 32H96v128H80V32c-26.51 0-48 28.654-48 64v64c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v16c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v64c0 35.346 21.49 64 48 64V352h16v128h.003c123.4 0 133.154-105.747 279.997-136H169.606c6.135-4.022 11.768-9.445 16.72-16H472c43.777 0 87.735-8.836 120.604-24.244C622.282 289.845 640 271.992 640 256s-17.718-33.845-47.396-47.756zM488 296a8 8 0 0 1-8-8v-64a8 8 0 0 1 8-8c31.909 0 31.942 80 0 80z"], + "spinner": [512, 512, [], "f110", "M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z"], + "splotch": [512, 512, [], "f5bc", "M472.29 195.89l-67.06-22.95c-19.28-6.6-33.54-20.92-38.14-38.3L351.1 74.19c-11.58-43.77-76.57-57.13-109.98-22.62l-46.14 47.67c-13.26 13.71-33.54 20.93-54.2 19.31l-71.88-5.62c-52.05-4.07-86.93 44.88-59.03 82.83l38.54 52.42c11.08 15.07 12.82 33.86 4.64 50.24L24.62 355.4c-20.59 41.25 22.84 84.87 73.49 73.81l69.96-15.28c20.11-4.39 41.45 0 57.07 11.73l54.32 40.83c39.32 29.56 101.04 7.57 104.45-37.22l4.7-61.86c1.35-17.79 12.8-33.86 30.63-42.99l62-31.74c44.88-22.96 39.59-80.17-8.95-96.79z"], + "spray-can": [512, 512, [], "f5bd", "M224 32c0-17.67-14.33-32-32-32h-64c-17.67 0-32 14.33-32 32v96h128V32zm256 96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-256 32H96c-53.02 0-96 42.98-96 96v224c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V256c0-53.02-42.98-96-96-96zm-64 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zM480 96c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm-96 32c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-96-96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 0c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 192c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z"], + "square": [448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"], + "square-full": [512, 512, [], "f45c", "M512 512H0V0h512v512z"], + "stamp": [512, 512, [], "f5bf", "M32 512h448v-64H32v64zm384-256h-66.56c-16.26 0-29.44-13.18-29.44-29.44v-9.46c0-27.37 8.88-53.41 21.46-77.72 9.11-17.61 12.9-38.39 9.05-60.42-6.77-38.78-38.47-70.7-77.26-77.45C212.62-9.04 160 37.33 160 96c0 14.16 3.12 27.54 8.69 39.58C182.02 164.43 192 194.7 192 226.49v.07c0 16.26-13.18 29.44-29.44 29.44H96c-53.02 0-96 42.98-96 96v32c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-32c0-53.02-42.98-96-96-96z"], + "star": [576, 512, [], "f005", "M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z"], + "star-half": [576, 512, [], "f089", "M288 0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6V0z"], + "star-half-alt": [536, 512, [], "f5c0", "M508.55 171.51L362.18 150.2 296.77 17.81C290.89 5.98 279.42 0 267.95 0c-11.4 0-22.79 5.9-28.69 17.81l-65.43 132.38-146.38 21.29c-26.25 3.8-36.77 36.09-17.74 54.59l105.89 103-25.06 145.48C86.98 495.33 103.57 512 122.15 512c4.93 0 10-1.17 14.87-3.75l130.95-68.68 130.94 68.7c4.86 2.55 9.92 3.71 14.83 3.71 18.6 0 35.22-16.61 31.66-37.4l-25.03-145.49 105.91-102.98c19.04-18.5 8.52-50.8-17.73-54.6zm-121.74 123.2l-18.12 17.62 4.28 24.88 19.52 113.45-102.13-53.59-22.38-11.74.03-317.19 51.03 103.29 11.18 22.63 25.01 3.64 114.23 16.63-82.65 80.38z"], + "step-backward": [448, 512, [], "f048", "M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z"], + "step-forward": [448, 512, [], "f051", "M384 44v424c0 6.6-5.4 12-12 12h-48c-6.6 0-12-5.4-12-12V291.6l-195.5 181C95.9 489.7 64 475.4 64 448V64c0-27.4 31.9-41.7 52.5-24.6L312 219.3V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12z"], + "stethoscope": [512, 512, [], "f0f1", "M447.1 112c-34.2.5-62.3 28.4-63 62.6-.5 24.3 12.5 45.6 32 56.8V344c0 57.3-50.2 104-112 104-60 0-109.2-44.1-111.9-99.2C265 333.8 320 269.2 320 192V36.6c0-11.4-8.1-21.3-19.3-23.5L237.8.5c-13-2.6-25.6 5.8-28.2 18.8L206.4 35c-2.6 13 5.8 25.6 18.8 28.2l30.7 6.1v121.4c0 52.9-42.2 96.7-95.1 97.2-53.4.5-96.9-42.7-96.9-96V69.4l30.7-6.1c13-2.6 21.4-15.2 18.8-28.2l-3.1-15.7C107.7 6.4 95.1-2 82.1.6L19.3 13C8.1 15.3 0 25.1 0 36.6V192c0 77.3 55.1 142 128.1 156.8C130.7 439.2 208.6 512 304 512c97 0 176-75.4 176-168V231.4c19.1-11.1 32-31.7 32-55.4 0-35.7-29.2-64.5-64.9-64zm.9 80c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"], + "sticky-note": [448, 512, [], "f249", "M312 320h136V56c0-13.3-10.7-24-24-24H24C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h264V344c0-13.2 10.8-24 24-24zm129 55l-98 98c-4.5 4.5-10.6 7-17 7h-6V352h128v6.1c0 6.3-2.5 12.4-7 16.9z"], + "stop": [448, 512, [], "f04d", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"], + "stop-circle": [512, 512, [], "f28d", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z"], + "stopwatch": [448, 512, [], "f2f2", "M432 304c0 114.9-93.1 208-208 208S16 418.9 16 304c0-104 76.3-190.2 176-205.5V64h-28c-6.6 0-12-5.4-12-12V12c0-6.6 5.4-12 12-12h120c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-28v34.5c37.5 5.8 71.7 21.6 99.7 44.6l27.5-27.5c4.7-4.7 12.3-4.7 17 0l28.3 28.3c4.7 4.7 4.7 12.3 0 17l-29.4 29.4-.6.6C419.7 223.3 432 262.2 432 304zm-176 36V188.5c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12V340c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"], + "store": [616, 512, [], "f54e", "M602 118.6L537.1 15C531.3 5.7 521 0 510 0H106C95 0 84.7 5.7 78.9 15L14 118.6c-33.5 53.5-3.8 127.9 58.8 136.4 4.5.6 9.1.9 13.7.9 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18.1 20.1 44.3 33.1 73.8 33.1 4.7 0 9.2-.3 13.7-.9 62.8-8.4 92.6-82.8 59-136.4zM529.5 288c-10 0-19.9-1.5-29.5-3.8V384H116v-99.8c-9.6 2.2-19.5 3.8-29.5 3.8-6 0-12.1-.4-18-1.2-5.6-.8-11.1-2.1-16.4-3.6V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V283.2c-5.4 1.6-10.8 2.9-16.4 3.6-6.1.8-12.1 1.2-18.2 1.2z"], + "store-alt": [640, 512, [], "f54f", "M320 384H128V224H64v256c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V224h-64v160zm314.6-241.8l-85.3-128c-6-8.9-16-14.2-26.7-14.2H117.4c-10.7 0-20.7 5.3-26.6 14.2l-85.3 128c-14.2 21.3 1 49.8 26.6 49.8H608c25.5 0 40.7-28.5 26.6-49.8zM512 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h-64v272z"], + "stream": [512, 512, [], "f550", "M16 128h416c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H16C7.16 32 0 39.16 0 48v64c0 8.84 7.16 16 16 16zm480 80H80c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm-64 176H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16z"], + "street-view": [512, 512, [], "f21d", "M192 64c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zm112 80h-11.36c-22.711 10.443-49.59 10.894-73.28 0H208c-26.51 0-48 21.49-48 48v104c0 13.255 10.745 24 24 24h16v104c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V320h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48zm85.642 189.152a72.503 72.503 0 0 1-29.01 27.009C391.133 365.251 480 385.854 480 416c0 46.304-167.656 64-224 64-70.303 0-224-20.859-224-64 0-30.123 88.361-50.665 119.367-55.839a72.516 72.516 0 0 1-29.01-27.009C74.959 343.395 0 367.599 0 416c0 77.111 178.658 96 256 96 77.249 0 256-18.865 256-96 0-48.403-74.967-72.606-122.358-82.848z"], + "strikethrough": [512, 512, [], "f0cc", "M496 288H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h480c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16zm-214.666 16c27.258 12.937 46.524 28.683 46.524 56.243 0 33.108-28.977 53.676-75.621 53.676-32.325 0-76.874-12.08-76.874-44.271V368c0-8.837-7.164-16-16-16H113.75c-8.836 0-16 7.163-16 16v19.204c0 66.845 77.717 101.82 154.487 101.82 88.578 0 162.013-45.438 162.013-134.424 0-19.815-3.618-36.417-10.143-50.6H281.334zm-30.952-96c-32.422-13.505-56.836-28.946-56.836-59.683 0-33.92 30.901-47.406 64.962-47.406 42.647 0 64.962 16.593 64.962 32.985V136c0 8.837 7.164 16 16 16h45.613c8.836 0 16-7.163 16-16v-30.318c0-52.438-71.725-79.875-142.575-79.875-85.203 0-150.726 40.972-150.726 125.646 0 22.71 4.665 41.176 12.777 56.547h129.823z"], + "stroopwafel": [512, 512, [], "f551", "M188.12 210.74L142.86 256l45.25 45.25L233.37 256l-45.25-45.26zm113.13-22.62L256 142.86l-45.25 45.25L256 233.37l45.25-45.25zm-90.5 135.76L256 369.14l45.26-45.26L256 278.63l-45.25 45.25zM256 0C114.62 0 0 114.62 0 256s114.62 256 256 256 256-114.62 256-256S397.38 0 256 0zm186.68 295.6l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-28.29-28.29-45.25 45.25 33.94 33.94 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-33.94-33.94-45.26 45.26 28.29 28.29c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0L256 414.39l-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l28.29-28.29-45.25-45.26-33.94 33.94 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 33.94-33.94-45.25-45.25-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0L69.32 295.6c-3.12-3.12-3.12-8.19 0-11.31L97.61 256l-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l28.29 28.29 45.25-45.26-33.94-33.94-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 33.94 33.94 45.26-45.25-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0L256 97.61l28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-28.29 28.29 45.26 45.25 33.94-33.94-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-33.94 33.94 45.25 45.26 28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31L414.39 256l28.29 28.28a8.015 8.015 0 0 1 0 11.32zM278.63 256l45.26 45.25L369.14 256l-45.25-45.26L278.63 256z"], + "subscript": [512, 512, [], "f12c", "M395.198 416c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 256c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 96H16C7.163 96 0 88.837 0 80V48c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035A15.999 15.999 0 0 1 204.226 32H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 256H272z"], + "subway": [448, 512, [], "f239", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zM200 232V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm200 0V120c0-13.255-10.745-24-24-24H272c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm-48 56c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm-256 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"], + "suitcase": [512, 512, [], "f0f2", "M128 480h256V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v400zm64-384h128v32H192V96zm320 80v256c0 26.5-21.5 48-48 48h-48V128h48c26.5 0 48 21.5 48 48zM96 480H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h48v352z"], + "suitcase-rolling": [384, 512, [], "f5c1", "M336 160H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h16v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h128v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h16c26.51 0 48-21.49 48-48V208c0-26.51-21.49-48-48-48zm-16 216c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zM144 48h96v80h48V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v80h48V48z"], + "sun": [512, 512, [], "f185", "M274.835 12.646l25.516 62.393c4.213 10.301 16.671 14.349 26.134 8.492l57.316-35.479c15.49-9.588 34.808 4.447 30.475 22.142l-16.03 65.475c-2.647 10.81 5.053 21.408 16.152 22.231l67.224 4.987c18.167 1.348 25.546 24.057 11.641 35.826L441.81 242.26c-8.495 7.19-8.495 20.289 0 27.479l51.454 43.548c13.906 11.769 6.527 34.478-11.641 35.826l-67.224 4.987c-11.099.823-18.799 11.421-16.152 22.231l16.03 65.475c4.332 17.695-14.986 31.73-30.475 22.142l-57.316-35.479c-9.463-5.858-21.922-1.81-26.134 8.492l-25.516 62.393c-6.896 16.862-30.774 16.862-37.67 0l-25.516-62.393c-4.213-10.301-16.671-14.349-26.134-8.492l-57.317 35.479c-15.49 9.588-34.808-4.447-30.475-22.142l16.03-65.475c2.647-10.81-5.053-21.408-16.152-22.231l-67.224-4.987c-18.167-1.348-25.546-24.057-11.641-35.826L70.19 269.74c8.495-7.19 8.495-20.289 0-27.479l-51.454-43.548c-13.906-11.769-6.527-34.478 11.641-35.826l67.224-4.987c11.099-.823 18.799-11.421 16.152-22.231l-16.03-65.475c-4.332-17.695 14.986-31.73 30.475-22.142l57.317 35.479c9.463 5.858 21.921 1.81 26.134-8.492l25.516-62.393c6.896-16.861 30.774-16.861 37.67 0zM392 256c0-74.991-61.01-136-136-136-74.991 0-136 61.009-136 136s61.009 136 136 136c74.99 0 136-61.009 136-136zm-32 0c0 57.346-46.654 104-104 104s-104-46.654-104-104 46.654-104 104-104 104 46.654 104 104z"], + "superscript": [512, 512, [], "f12b", "M395.198 256c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 256H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035a16 16 0 0 1 13.598-7.567H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 416H272z"], + "surprise": [496, 512, [], "f5c2", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm112 208c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm80-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "swatchbook": [511, 512, [], "f5c3", "M479.06 320H372.29L186.15 506.51c-2.06 2.07-4.49 3.58-6.67 5.49h299.58c17.64 0 31.94-14.33 31.94-32V352c0-17.67-14.3-32-31.94-32zm-44.5-152.9l-90.33-90.51c-12.47-12.5-32.69-12.5-45.17 0l-75.5 75.65V416c0 2.96-.67 5.73-.87 8.64l211.87-212.28c12.47-12.5 12.47-32.77 0-45.26zM191.62 32c0-17.67-14.3-32-31.94-32H31.94C14.3 0 0 14.33 0 32v384c0 53.02 42.9 96 95.81 96s95.81-42.98 95.81-96V32zM95.81 440c-13.23 0-23.95-10.75-23.95-24 0-13.26 10.73-24 23.95-24s23.95 10.74 23.95 24c.01 13.25-10.72 24-23.95 24zm31.94-184H63.88v-64h63.88v64zm0-128H63.88V64h63.88v64z"], + "swimmer": [640, 512, [], "f5c4", "M189.61 310.58c3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c16.02-14.77 34.5-22.58 53.46-22.58h16.3c18.96 0 37.45 7.81 53.46 22.58 3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c14.86-13.71 31.88-21.12 49.39-22.16l-112.84-80.6 18-12.86c3.64-2.58 8.28-3.52 12.62-2.61l100.35 21.53c25.91 5.53 51.44-10.97 57-36.88 5.55-25.92-10.95-51.44-36.88-57L437.68 98.47c-30.73-6.58-63.02.12-88.56 18.38l-80.02 57.17c-10.38 7.39-19.36 16.44-26.72 26.94L173.75 299c5.47 3.23 10.82 6.93 15.86 11.58zM624 352h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 343.58 442.04 352 416 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 343.58 250.04 352 224 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 343.58 58.04 352 32 352H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-512-96c44.18 0 80-35.82 80-80s-35.82-80-80-80-80 35.82-80 80 35.82 80 80 80z"], + "swimming-pool": [640, 512, [], "f5c5", "M624 416h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 407.58 442.04 416 416 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 407.58 250.04 416 224 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 407.58 58.04 416 32 416H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-400-32v-96h192v96c19.12 0 30.86-6.16 34.39-9.42 9.17-8.46 19.2-14.34 29.61-18.07V128c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v96H224v-96c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v228.5c10.41 3.73 20.44 9.62 29.61 18.07 3.53 3.27 15.27 9.43 34.39 9.43z"], + "sync": [512, 512, [], "f021", "M440.935 12.574l3.966 82.766C399.416 41.904 331.674 8 256 8 134.813 8 33.933 94.924 12.296 209.824 10.908 217.193 16.604 224 24.103 224h49.084c5.57 0 10.377-3.842 11.676-9.259C103.407 137.408 172.931 80 256 80c60.893 0 114.512 30.856 146.104 77.801l-101.53-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12h-47.411c-6.853 0-12.315 5.729-11.987 12.574zM256 432c-60.895 0-114.517-30.858-146.109-77.805l101.868 4.871c6.845.327 12.573-5.134 12.573-11.986v-47.412c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12V500c0 6.627 5.373 12 12 12h47.385c6.863 0 12.328-5.745 11.985-12.599l-4.129-82.575C112.725 470.166 180.405 504 256 504c121.187 0 222.067-86.924 243.704-201.824 1.388-7.369-4.308-14.176-11.807-14.176h-49.084c-5.57 0-10.377 3.842-11.676 9.259C408.593 374.592 339.069 432 256 432z"], + "sync-alt": [512, 512, [], "f2f1", "M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z"], + "syringe": [512, 512, [], "f48e", "M201.5 174.8l55.7 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-55.7-55.8-45.3 45.3 55.8 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L111 265.2l-26.4 26.4c-17.3 17.3-25.6 41.1-23 65.4l7.1 63.6L2.3 487c-3.1 3.1-3.1 8.2 0 11.3l11.3 11.3c3.1 3.1 8.2 3.1 11.3 0l66.3-66.3 63.6 7.1c23.9 2.6 47.9-5.4 65.4-23l181.9-181.9-135.7-135.7-64.9 65zm308.2-93.3L430.5 2.3c-3.1-3.1-8.2-3.1-11.3 0l-11.3 11.3c-3.1 3.1-3.1 8.2 0 11.3l28.3 28.3-45.3 45.3-56.6-56.6-17-17c-3.1-3.1-8.2-3.1-11.3 0l-33.9 33.9c-3.1 3.1-3.1 8.2 0 11.3l17 17L424.8 223l17 17c3.1 3.1 8.2 3.1 11.3 0l33.9-34c3.1-3.1 3.1-8.2 0-11.3l-73.5-73.5 45.3-45.3 28.3 28.3c3.1 3.1 8.2 3.1 11.3 0l11.3-11.3c3.1-3.2 3.1-8.2 0-11.4z"], + "table": [512, 512, [], "f0ce", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64v-96h160v96zm0-160H64v-96h160v96zm224 160H288v-96h160v96zm0-160H288v-96h160v96z"], + "table-tennis": [512, 512, [], "f45d", "M496.2 296.5C527.7 218.7 512 126.2 449 63.1 365.1-21 229-21 145.1 63.1l-56 56.1 211.5 211.5c46.1-62.1 131.5-77.4 195.6-34.2zm-217.9 79.7L57.9 155.9c-27.3 45.3-21.7 105 17.3 144.1l34.5 34.6L6.7 424c-8.6 7.5-9.1 20.7-1 28.8l53.4 53.5c8 8.1 21.2 7.6 28.7-1L177.1 402l35.7 35.7c19.7 19.7 44.6 30.5 70.3 33.3-7.1-17-11-35.6-11-55.1-.1-13.8 2.5-27 6.2-39.7zM416 320c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96z"], + "tablet": [448, 512, [], "f10a", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "tablet-alt": [448, 512, [], "f3fa", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm176-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h328c6.6 0 12 5.4 12 12v312z"], + "tablets": [640, 512, [], "f490", "M160 192C78.9 192 12.5 250.5.1 326.7c-.8 4.8 3.3 9.3 8.3 9.3h303.3c5 0 9.1-4.5 8.3-9.3C307.5 250.5 241.1 192 160 192zm151.6 176H8.4c-5 0-9.1 4.5-8.3 9.3C12.5 453.5 78.9 512 160 512s147.5-58.5 159.9-134.7c.8-4.8-3.3-9.3-8.3-9.3zM593.4 46.6c-56.5-56.5-144.2-61.4-206.9-16-4 2.9-4.3 8.9-.8 12.3L597 254.3c3.5 3.5 9.5 3.2 12.3-.8 45.5-62.7 40.6-150.4-15.9-206.9zM363 65.7c-3.5-3.5-9.5-3.2-12.3.8-45.4 62.7-40.5 150.4 15.9 206.9 56.5 56.5 144.2 61.4 206.9 15.9 4-2.9 4.3-8.9.8-12.3L363 65.7z"], + "tachometer-alt": [576, 512, [], "f3fd", "M75.694 480a48.02 48.02 0 0 1-42.448-25.571C12.023 414.3 0 368.556 0 320 0 160.942 128.942 32 288 32s288 128.942 288 288c0 48.556-12.023 94.3-33.246 134.429A48.018 48.018 0 0 1 500.306 480H75.694zM512 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zM288 128c17.673 0 32-14.327 32-32 0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32zM64 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm65.608-158.392c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm316.784 0c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm-87.078 31.534c-12.627-4.04-26.133 2.92-30.173 15.544l-45.923 143.511C250.108 322.645 224 350.264 224 384c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64 0-19.773-8.971-37.447-23.061-49.187l45.919-143.498c4.039-12.625-2.92-26.133-15.544-30.173z"], + "tag": [512, 512, [], "f02b", "M0 252.118V48C0 21.49 21.49 0 48 0h204.118a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882L293.823 497.941c-18.745 18.745-49.137 18.745-67.882 0L14.059 286.059A48 48 0 0 1 0 252.118zM112 64c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"], + "tags": [640, 512, [], "f02c", "M497.941 225.941L286.059 14.059A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v204.118a48 48 0 0 0 14.059 33.941l211.882 211.882c18.744 18.745 49.136 18.746 67.882 0l204.118-204.118c18.745-18.745 18.745-49.137 0-67.882zM112 160c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm513.941 133.823L421.823 497.941c-18.745 18.745-49.137 18.745-67.882 0l-.36-.36L527.64 323.522c16.999-16.999 26.36-39.6 26.36-63.64s-9.362-46.641-26.36-63.64L331.397 0h48.721a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882z"], + "tape": [640, 512, [], "f4db", "M224 192c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm400 224H380.6c41.5-40.7 67.4-97.3 67.4-160 0-123.7-100.3-224-224-224S0 132.3 0 256s100.3 224 224 224h400c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400-64c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96z"], + "tasks": [512, 512, [], "f0ae", "M208 132h288c8.8 0 16-7.2 16-16V76c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zM64 368c-26.5 0-48.6 21.5-48.6 48s22.1 48 48.6 48 48-21.5 48-48-21.5-48-48-48zm92.5-299l-72.2 72.2-15.6 15.6c-4.7 4.7-12.9 4.7-17.6 0L3.5 109.4c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.3c4.7-4.7 12.3-4.7 17 0l17 16.5c4.6 4.7 4.6 12.3-.1 17zm0 159.6l-72.2 72.2-15.7 15.7c-4.7 4.7-12.9 4.7-17.6 0L3.5 269c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.7c4.7-4.7 12.3-4.7 17 0l17 17c4.6 4.6 4.6 12.2-.1 16.9z"], + "taxi": [512, 512, [], "f1ba", "M462 241.64l-22-84.84c-9.6-35.2-41.6-60.8-76.8-60.8H352V64c0-17.67-14.33-32-32-32H192c-17.67 0-32 14.33-32 32v32h-11.2c-35.2 0-67.2 25.6-76.8 60.8l-22 84.84C21.41 248.04 0 273.47 0 304v48c0 23.63 12.95 44.04 32 55.12V448c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-40.88c19.05-11.09 32-31.5 32-55.12v-48c0-30.53-21.41-55.96-50-62.36zM96 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm20.55-112l17.2-66.36c2.23-8.16 9.59-13.64 15.06-13.64h214.4c5.47 0 12.83 5.48 14.85 12.86L395.45 240h-278.9zM416 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "terminal": [640, 512, [], "f120", "M257.981 272.971L63.638 467.314c-9.373 9.373-24.569 9.373-33.941 0L7.029 444.647c-9.357-9.357-9.375-24.522-.04-33.901L161.011 256 6.99 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L257.981 239.03c9.373 9.372 9.373 24.568 0 33.941zM640 456v-32c0-13.255-10.745-24-24-24H312c-13.255 0-24 10.745-24 24v32c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z"], + "text-height": [576, 512, [], "f034", "M16 32h288c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96h-54.761v320H232c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H88c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm475.308 4.685l79.995 80.001C581.309 126.693 574.297 144 559.99 144H512v224h48c15.639 0 20.635 17.991 11.313 27.314l-79.995 80.001c-6.247 6.247-16.381 6.245-22.626 0l-79.995-80.001C378.691 385.307 385.703 368 400.01 368H448V144h-48c-15.639 0-20.635-17.991-11.313-27.314l79.995-80.001c6.247-6.248 16.381-6.245 22.626 0z"], + "text-width": [448, 512, [], "f035", "M16 32h416c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96H261.743v128H296c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H152c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm427.315 340.682l-80.001-79.995C353.991 283.365 336 288.362 336 304v48H112v-47.99c0-14.307-17.307-21.319-27.314-11.313L4.685 372.692c-6.245 6.245-6.247 16.379 0 22.626l80.001 79.995C94.009 484.635 112 479.638 112 464v-48h224v47.99c0 14.307 17.307 21.319 27.314 11.313l80.001-79.995c6.245-6.245 6.248-16.379 0-22.626z"], + "th": [512, 512, [], "f00a", "M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z"], + "th-large": [512, 512, [], "f009", "M296 32h192c13.255 0 24 10.745 24 24v160c0 13.255-10.745 24-24 24H296c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24zm-80 0H24C10.745 32 0 42.745 0 56v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zM0 296v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm296 184h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H296c-13.255 0-24 10.745-24 24v160c0 13.255 10.745 24 24 24z"], + "th-list": [512, 512, [], "f00b", "M149.333 216v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zM125.333 32H24C10.745 32 0 42.745 0 56v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zm80 448H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm-24-424v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24zm24 264H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24z"], + "thermometer": [512, 512, [], "f491", "M476.8 20.4c-37.5-30.7-95.5-26.3-131.9 10.2l-45.7 46 50.5 50.5c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.4-50.5-45.1 45.4 50.3 50.4c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L209 167.4l-45.1 45.4L214 263c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.1-50.2L96 281.1V382L7 471c-9.4 9.4-9.4 24.6 0 33.9 9.4 9.4 24.6 9.4 33.9 0l89-89h99.9L484 162.6c34.9-34.9 42.2-101.5-7.2-142.2z"], + "thermometer-empty": [256, 512, [], "f2cb", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"], + "thermometer-full": [256, 512, [], "f2c7", "M224 96c0-53.019-42.981-96-96-96S32 42.981 32 96v203.347C12.225 321.756.166 351.136.002 383.333c-.359 70.303 56.787 128.176 127.089 128.664.299.002.61.003.909.003 70.698 0 128-57.304 128-128 0-32.459-12.088-62.09-32-84.653V96zm-96 368l-.576-.002c-43.86-.304-79.647-36.544-79.423-80.42.173-33.98 19.266-51.652 31.999-66.08V96c0-26.467 21.533-48 48-48s48 21.533 48 48v221.498c12.63 14.312 32 32.164 32 66.502 0 44.112-35.888 80-80 80zm64-80c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V96c0-17.673 14.327-32 32-32s32 14.327 32 32v232.583c19.124 11.068 32 31.732 32 55.417z"], + "thermometer-half": [256, 512, [], "f2c9", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V224c0-17.673 14.327-32 32-32s32 14.327 32 32v104.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"], + "thermometer-quarter": [256, 512, [], "f2ca", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V288c0-17.673 14.327-32 32-32s32 14.327 32 32v40.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"], + "thermometer-three-quarters": [256, 512, [], "f2c8", "M192 384c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-23.685 12.876-44.349 32-55.417V160c0-17.673 14.327-32 32-32s32 14.327 32 32v168.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"], + "thumbs-down": [512, 512, [], "f165", "M0 56v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56zm40 200c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24zm272 256c-20.183 0-29.485-39.293-33.931-57.795-5.206-21.666-10.589-44.07-25.393-58.902-32.469-32.524-49.503-73.967-89.117-113.111a11.98 11.98 0 0 1-3.558-8.521V59.901c0-6.541 5.243-11.878 11.783-11.998 15.831-.29 36.694-9.079 52.651-16.178C256.189 17.598 295.709.017 343.995 0h2.844c42.777 0 93.363.413 113.774 29.737 8.392 12.057 10.446 27.034 6.148 44.632 16.312 17.053 25.063 48.863 16.382 74.757 17.544 23.432 19.143 56.132 9.308 79.469l.11.11c11.893 11.949 19.523 31.259 19.439 49.197-.156 30.352-26.157 58.098-59.553 58.098H350.723C358.03 364.34 384 388.132 384 430.548 384 504 336 512 312 512z"], + "thumbs-up": [512, 512, [], "f164", "M104 224H24c-13.255 0-24 10.745-24 24v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V248c0-13.255-10.745-24-24-24zM64 472c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zM384 81.452c0 42.416-25.97 66.208-33.277 94.548h101.723c33.397 0 59.397 27.746 59.553 58.098.084 17.938-7.546 37.249-19.439 49.197l-.11.11c9.836 23.337 8.237 56.037-9.308 79.469 8.681 25.895-.069 57.704-16.382 74.757 4.298 17.598 2.244 32.575-6.148 44.632C440.202 511.587 389.616 512 346.839 512l-2.845-.001c-48.287-.017-87.806-17.598-119.56-31.725-15.957-7.099-36.821-15.887-52.651-16.178-6.54-.12-11.783-5.457-11.783-11.998v-213.77c0-3.2 1.282-6.271 3.558-8.521 39.614-39.144 56.648-80.587 89.117-113.111 14.804-14.832 20.188-37.236 25.393-58.902C282.515 39.293 291.817 0 312 0c24 0 72 8 72 81.452z"], + "thumbtack": [384, 512, [], "f08d", "M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z"], + "ticket-alt": [576, 512, [], "f3ff", "M128 160h320v192H128V160zm400 96c0 26.51 21.49 48 48 48v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c26.51 0 48-21.49 48-48s-21.49-48-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v96c-26.51 0-48 21.49-48 48zm-48-104c0-13.255-10.745-24-24-24H120c-13.255 0-24 10.745-24 24v208c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V152z"], + "times": [352, 512, [], "f00d", "M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"], + "times-circle": [512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z"], + "tint": [352, 512, [], "f043", "M205.22 22.09c-7.94-28.78-49.44-30.12-58.44 0C100.01 179.85 0 222.72 0 333.91 0 432.35 78.72 512 176 512s176-79.65 176-178.09c0-111.75-99.79-153.34-146.78-311.82zM176 448c-61.75 0-112-50.25-112-112 0-8.84 7.16-16 16-16s16 7.16 16 16c0 44.11 35.89 80 80 80 8.84 0 16 7.16 16 16s-7.16 16-16 16z"], + "tint-slash": [640, 512, [], "f5c7", "M633.82 458.1L494.97 350.78c.52-5.57 1.03-11.16 1.03-16.87 0-111.76-99.79-153.34-146.78-311.82-7.94-28.78-49.44-30.12-58.44 0-15.52 52.34-36.87 91.96-58.49 125.68L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM144 333.91C144 432.35 222.72 512 320 512c44.71 0 85.37-16.96 116.4-44.7L162.72 255.78c-11.41 23.5-18.72 48.35-18.72 78.13z"], + "tired": [496, 512, [], "f5c8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 288c51.9 0 115.3 43.8 123.2 106.7 1.7 13.6-8 24.6-17.7 20.4-25.9-11.1-64.4-17.4-105.5-17.4s-79.6 6.3-105.5 17.4c-9.8 4.2-19.4-7-17.7-20.4C132.7 331.8 196.1 288 248 288z"], + "toggle-off": [576, 512, [], "f204", "M384 64H192C85.961 64 0 149.961 0 256s85.961 192 192 192h192c106.039 0 192-85.961 192-192S490.039 64 384 64zM64 256c0-70.741 57.249-128 128-128 70.741 0 128 57.249 128 128 0 70.741-57.249 128-128 128-70.741 0-128-57.249-128-128zm320 128h-48.905c65.217-72.858 65.236-183.12 0-256H384c70.741 0 128 57.249 128 128 0 70.74-57.249 128-128 128z"], + "toggle-on": [576, 512, [], "f205", "M576 256c0 106.039-85.961 192-192 192H192C85.961 448 0 362.039 0 256S85.961 64 192 64h192c106.039 0 192 85.961 192 192zM384 128c-70.741 0-128 57.249-128 128 0 70.741 57.249 128 128 128 70.741 0 128-57.249 128-128 0-70.741-57.249-128-128-128"], + "toolbox": [512, 512, [], "f552", "M502.63 214.63l-45.25-45.25c-6-6-14.14-9.37-22.63-9.37H384V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v80H77.25c-8.49 0-16.62 3.37-22.63 9.37L9.37 214.63c-6 6-9.37 14.14-9.37 22.63V320h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-82.75c0-8.48-3.37-16.62-9.37-22.62zM320 160H192V96h128v64zm64 208c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H192v16c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H0v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96H384v16z"], + "tooth": [448, 512, [], "f5c9", "M443.98 96.25c-11.01-45.22-47.11-82.06-92.01-93.72-32.19-8.36-63 5.1-89.14 24.33-3.25 2.39-6.96 3.73-10.5 5.48l28.32 18.21c7.42 4.77 9.58 14.67 4.8 22.11-4.46 6.95-14.27 9.86-22.11 4.8L162.83 12.84c-20.7-10.85-43.38-16.4-66.81-10.31-44.9 11.67-81 48.5-92.01 93.72-10.13 41.62-.42 80.81 21.5 110.43 23.36 31.57 32.68 68.66 36.29 107.35 4.4 47.16 10.33 94.16 20.94 140.32l7.8 33.95c3.19 13.87 15.49 23.7 29.67 23.7 13.97 0 26.15-9.55 29.54-23.16l34.47-138.42c4.56-18.32 20.96-31.16 39.76-31.16s35.2 12.85 39.76 31.16l34.47 138.42c3.39 13.61 15.57 23.16 29.54 23.16 14.18 0 26.48-9.83 29.67-23.7l7.8-33.95c10.61-46.15 16.53-93.16 20.94-140.32 3.61-38.7 12.93-75.78 36.29-107.35 21.95-29.61 31.66-68.8 21.53-110.43z"], + "trademark": [640, 512, [], "f25c", "M97.119 163.133H12c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h248.559c6.627 0 12 5.373 12 12v43.133c0 6.627-5.373 12-12 12H175.44V404c0 6.627-5.373 12-12 12h-54.322c-6.627 0-12-5.373-12-12V163.133zM329.825 96h65.425a12 12 0 0 1 11.346 8.093l43.759 127.068c7.161 20.588 16.111 52.812 16.111 52.812h.896s8.95-32.224 16.111-52.812l43.758-127.068A12 12 0 0 1 538.577 96h65.41a12 12 0 0 1 11.961 11.03l24.012 296c.567 6.987-4.951 12.97-11.961 12.97h-54.101a12 12 0 0 1-11.972-11.182l-9.082-132.93c-1.79-24.168 0-53.706 0-53.706h-.896s-10.741 33.566-17.902 53.706l-30.7 84.731a12 12 0 0 1-11.282 7.912h-50.302a12 12 0 0 1-11.282-7.912l-30.7-84.731c-7.161-20.14-17.903-53.706-17.903-53.706h-.895s1.79 29.538 0 53.706l-9.082 132.93c-.428 6.295-5.66 11.182-11.97 11.182H305.4c-7.017 0-12.536-5.994-11.959-12.987l24.425-296A11.999 11.999 0 0 1 329.825 96z"], + "train": [448, 512, [], "f238", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zm-48 136V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24zm-176 64c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56z"], + "transgender": [384, 512, [], "f224", "M372 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C198.5 104.1 172.2 96 144 96 64.5 96 0 160.5 0 240c0 68.5 47.9 125.9 112 140.4V408H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM144 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"], + "transgender-alt": [480, 512, [], "f225", "M468 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C294.5 104.1 268.2 96 240 96c-28.2 0-54.5 8.1-76.7 22.1l-16.5-16.5 19.8-19.8c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0l-19.8 19.8-19-19 16.9-16.9C107.1 12.9 101.7 0 91 0H12C5.4 0 0 5.4 0 12v79c0 10.7 12.9 16 20.5 8.5l16.9-16.9 19 19-19.8 19.8c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l19.8-19.8 16.5 16.5C104.1 185.5 96 211.8 96 240c0 68.5 47.9 125.9 112 140.4V408h-36c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM240 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"], + "trash": [448, 512, [], "f1f8", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm415.2 56.7L394.8 467c-1.6 25.3-22.6 45-47.9 45H101.1c-25.3 0-46.3-19.7-47.9-45L32.8 140.7c-.4-6.9 5.1-12.7 12-12.7h358.5c6.8 0 12.3 5.8 11.9 12.7z"], + "trash-alt": [448, 512, [], "f2ed", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm416 56v324c0 26.5-21.5 48-48 48H80c-26.5 0-48-21.5-48-48V140c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12zm-272 68c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208z"], + "tree": [384, 512, [], "f1bb", "M377.33 375.429L293.906 288H328c21.017 0 31.872-25.207 17.448-40.479L262.79 160H296c20.878 0 31.851-24.969 17.587-40.331l-104-112.003c-9.485-10.214-25.676-10.229-35.174 0l-104 112.003C56.206 134.969 67.037 160 88 160h33.21l-82.659 87.521C24.121 262.801 34.993 288 56 288h34.094L6.665 375.429C-7.869 390.655 2.925 416 24.025 416H144c0 32.781-11.188 49.26-33.995 67.506C98.225 492.93 104.914 512 120 512h144c15.086 0 21.776-19.069 9.995-28.494-19.768-15.814-33.992-31.665-33.995-67.496V416h119.97c21.05 0 31.929-25.309 17.36-40.571z"], + "trophy": [576, 512, [], "f091", "M552 64H448V24c0-13.3-10.7-24-24-24H152c-13.3 0-24 10.7-24 24v40H24C10.7 64 0 74.7 0 88v56c0 35.7 22.5 72.4 61.9 100.7 31.5 22.7 69.8 37.1 110 41.7C203.3 338.5 240 360 240 360v72h-48c-35.3 0-64 20.7-64 56v12c0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12v-12c0-35.3-28.7-56-64-56h-48v-72s36.7-21.5 68.1-73.6c40.3-4.6 78.6-19 110-41.7 39.3-28.3 61.9-65 61.9-100.7V88c0-13.3-10.7-24-24-24zM99.3 192.8C74.9 175.2 64 155.6 64 144v-16h64.2c1 32.6 5.8 61.2 12.8 86.2-15.1-5.2-29.2-12.4-41.7-21.4zM512 144c0 16.1-17.7 36.1-35.3 48.8-12.5 9-26.7 16.2-41.8 21.4 7-25 11.8-53.6 12.8-86.2H512v16z"], + "truck": [640, 512, [], "f0d1", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"], + "truck-loading": [640, 512, [], "f4de", "M50.2 375.6c2.3 8.5 11.1 13.6 19.6 11.3l216.4-58c8.5-2.3 13.6-11.1 11.3-19.6l-49.7-185.5c-2.3-8.5-11.1-13.6-19.6-11.3L151 133.3l24.8 92.7-61.8 16.5-24.8-92.7-77.3 20.7C3.4 172.8-1.7 181.6.6 190.1l49.6 185.5zM384 0c-17.7 0-32 14.3-32 32v323.6L5.9 450c-4.3 1.2-6.8 5.6-5.6 9.8l12.6 46.3c1.2 4.3 5.6 6.8 9.8 5.6l393.7-107.4C418.8 464.1 467.6 512 528 512c61.9 0 112-50.1 112-112V0H384zm144 448c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"], + "truck-moving": [640, 512, [], "f4df", "M621.3 237.3l-58.5-58.5c-12-12-28.3-18.7-45.3-18.7H480V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v336c0 44.2 35.8 80 80 80 26.3 0 49.4-12.9 64-32.4 14.6 19.6 37.7 32.4 64 32.4 44.2 0 80-35.8 80-80 0-5.5-.6-10.8-1.6-16h163.2c-1.1 5.2-1.6 10.5-1.6 16 0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H624c8.8 0 16-7.2 16-16v-85.5c0-17-6.7-33.2-18.7-45.2zM80 432c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm128 0c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm272-224h37.5c4.3 0 8.3 1.7 11.3 4.7l43.3 43.3H480v-48zm48 224c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32z"], + "tshirt": [640, 512, [], "f553", "M631.2 96.5L436.5 0C416.4 27.8 371.9 47.2 320 47.2S223.6 27.8 203.5 0L8.8 96.5c-7.9 4-11.1 13.6-7.2 21.5l57.2 114.5c4 7.9 13.6 11.1 21.5 7.2l56.6-27.7c10.6-5.2 23 2.5 23 14.4V480c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V226.3c0-11.8 12.4-19.6 23-14.4l56.6 27.7c7.9 4 17.5.8 21.5-7.2L638.3 118c4-7.9.8-17.6-7.1-21.5z"], + "tty": [512, 512, [], "f1e4", "M5.37 103.822c138.532-138.532 362.936-138.326 501.262 0 6.078 6.078 7.074 15.496 2.583 22.681l-43.214 69.138a18.332 18.332 0 0 1-22.356 7.305l-86.422-34.569a18.335 18.335 0 0 1-11.434-18.846L351.741 90c-62.145-22.454-130.636-21.986-191.483 0l5.953 59.532a18.331 18.331 0 0 1-11.434 18.846l-86.423 34.568a18.334 18.334 0 0 1-22.356-7.305L2.787 126.502a18.333 18.333 0 0 1 2.583-22.68zM96 308v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H92c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zM96 500v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H140c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"], + "tv": [640, 512, [], "f26c", "M592 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h245.1v32h-160c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32-14.3 32-32s-14.3-32-32-32h-160v-32H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h512v288z"], + "umbrella": [576, 512, [], "f0e9", "M557.011 267.631c-51.432-45.217-107.572-43.698-158.567 30.731-5.298 7.861-14.906 7.165-19.736 0-2.483-3.624-32.218-60.808-90.708-60.808-45.766 0-70.542 31.378-90.709 60.808-4.829 7.165-14.436 7.861-19.734 0-50.904-74.285-106.613-76.406-158.567-30.731-10.21 8.264-20.912-1.109-18.696-9.481C32.146 134.573 158.516 64.612 288.001 64.612c128.793 0 256.546 69.961 287.706 193.538 2.206 8.322-8.426 17.793-18.696 9.481zM256 261.001V416c0 17.645-14.355 32-32 32s-32-14.355-32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 52.935 43.065 96 96 96s96-43.065 96-96V261.288c-21.836-10.806-45.425-9.737-64-.287zm64-211.007V32c0-17.673-14.327-32-32-32s-32 14.327-32 32v17.987a372.105 372.105 0 0 1 64 .007z"], + "umbrella-beach": [640, 512, [], "f5ca", "M115.38 136.9l102.11 37.18c35.19-81.54 86.21-144.29 139-173.7-95.88-4.89-188.78 36.96-248.53 111.8-6.69 8.4-2.66 21.05 7.42 24.72zm132.25 48.16l238.48 86.83c35.76-121.38 18.7-231.66-42.63-253.98-7.4-2.7-15.13-4-23.09-4-58.02.01-128.27 69.17-172.76 171.15zM521.48 60.5c6.22 16.3 10.83 34.6 13.2 55.19 5.74 49.89-1.42 108.23-18.95 166.98l102.62 37.36c10.09 3.67 21.31-3.43 21.57-14.17 2.32-95.69-41.91-187.44-118.44-245.36zM560 447.98H321.06L386 269.5l-60.14-21.9-72.9 200.37H16c-8.84 0-16 7.16-16 16.01v32.01C0 504.83 7.16 512 16 512h544c8.84 0 16-7.17 16-16.01v-32.01c0-8.84-7.16-16-16-16z"], + "underline": [448, 512, [], "f0cd", "M224.264 388.24c-91.669 0-156.603-51.165-156.603-151.392V64H39.37c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h137.39c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.813v172.848c0 53.699 28.314 79.444 76.317 79.444 46.966 0 75.796-25.434 75.796-79.965V64h-28.291c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h136.868c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.291v172.848c0 99.405-64.881 151.392-156.082 151.392zM16 448h416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16z"], + "undo": [512, 512, [], "f0e2", "M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z"], + "undo-alt": [512, 512, [], "f2ea", "M255.545 8c-66.269.119-126.438 26.233-170.86 68.685L48.971 40.971C33.851 25.851 8 36.559 8 57.941V192c0 13.255 10.745 24 24 24h134.059c21.382 0 32.09-25.851 16.971-40.971l-41.75-41.75c30.864-28.899 70.801-44.907 113.23-45.273 92.398-.798 170.283 73.977 169.484 169.442C423.236 348.009 349.816 424 256 424c-41.127 0-79.997-14.678-110.63-41.556-4.743-4.161-11.906-3.908-16.368.553L89.34 422.659c-4.872 4.872-4.631 12.815.482 17.433C133.798 479.813 192.074 504 256 504c136.966 0 247.999-111.033 248-247.998C504.001 119.193 392.354 7.755 255.545 8z"], + "universal-access": [512, 512, [], "f29a", "M256 48c114.953 0 208 93.029 208 208 0 114.953-93.029 208-208 208-114.953 0-208-93.029-208-208 0-114.953 93.029-208 208-208m0-40C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 56C149.961 64 64 149.961 64 256s85.961 192 192 192 192-85.961 192-192S362.039 64 256 64zm0 44c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36zm117.741 98.023c-28.712 6.779-55.511 12.748-82.14 15.807.851 101.023 12.306 123.052 25.037 155.621 3.617 9.26-.957 19.698-10.217 23.315-9.261 3.617-19.699-.957-23.316-10.217-8.705-22.308-17.086-40.636-22.261-78.549h-9.686c-5.167 37.851-13.534 56.208-22.262 78.549-3.615 9.255-14.05 13.836-23.315 10.217-9.26-3.617-13.834-14.056-10.217-23.315 12.713-32.541 24.185-54.541 25.037-155.621-26.629-3.058-53.428-9.027-82.141-15.807-8.6-2.031-13.926-10.648-11.895-19.249s10.647-13.926 19.249-11.895c96.686 22.829 124.283 22.783 220.775 0 8.599-2.03 17.218 3.294 19.249 11.895 2.029 8.601-3.297 17.219-11.897 19.249z"], + "university": [512, 512, [], "f19c", "M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z"], + "unlink": [512, 512, [], "f127", "M304.083 405.907c4.686 4.686 4.686 12.284 0 16.971l-44.674 44.674c-59.263 59.262-155.693 59.266-214.961 0-59.264-59.265-59.264-155.696 0-214.96l44.675-44.675c4.686-4.686 12.284-4.686 16.971 0l39.598 39.598c4.686 4.686 4.686 12.284 0 16.971l-44.675 44.674c-28.072 28.073-28.072 73.75 0 101.823 28.072 28.072 73.75 28.073 101.824 0l44.674-44.674c4.686-4.686 12.284-4.686 16.971 0l39.597 39.598zm-56.568-260.216c4.686 4.686 12.284 4.686 16.971 0l44.674-44.674c28.072-28.075 73.75-28.073 101.824 0 28.072 28.073 28.072 73.75 0 101.823l-44.675 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.598 39.598c4.686 4.686 12.284 4.686 16.971 0l44.675-44.675c59.265-59.265 59.265-155.695 0-214.96-59.266-59.264-155.695-59.264-214.961 0l-44.674 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.597 39.598zm234.828 359.28l22.627-22.627c9.373-9.373 9.373-24.569 0-33.941L63.598 7.029c-9.373-9.373-24.569-9.373-33.941 0L7.029 29.657c-9.373 9.373-9.373 24.569 0 33.941l441.373 441.373c9.373 9.372 24.569 9.372 33.941 0z"], + "unlock": [448, 512, [], "f09c", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z"], + "unlock-alt": [448, 512, [], "f13e", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zM264 408c0 22.1-17.9 40-40 40s-40-17.9-40-40v-48c0-22.1 17.9-40 40-40s40 17.9 40 40v48z"], + "upload": [512, 512, [], "f093", "M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"], + "user": [448, 512, [], "f007", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"], + "user-alt": [512, 512, [], "f406", "M256 288c79.5 0 144-64.5 144-144S335.5 0 256 0 112 64.5 112 144s64.5 144 144 144zm128 32h-55.1c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16H128C57.3 320 0 377.3 0 448v16c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-16c0-70.7-57.3-128-128-128z"], + "user-alt-slash": [640, 512, [], "f4fa", "M633.8 458.1L389.6 269.3C433.8 244.7 464 198.1 464 144 464 64.5 399.5 0 320 0c-67.1 0-123 46.1-139 108.2L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM198.4 320C124.2 320 64 380.2 64 454.4v9.6c0 26.5 21.5 48 48 48h382.2L245.8 320h-47.4z"], + "user-astronaut": [448, 512, [], "f4fb", "M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z"], + "user-check": [640, 512, [], "f4fc", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4zm323-128.4l-27.8-28.1c-4.6-4.7-12.1-4.7-16.8-.1l-104.8 104-45.5-45.8c-4.6-4.7-12.1-4.7-16.8-.1l-28.1 27.9c-4.7 4.6-4.7 12.1-.1 16.8l81.7 82.3c4.6 4.7 12.1 4.7 16.8.1l141.3-140.2c4.6-4.7 4.7-12.2.1-16.8z"], + "user-circle": [496, 512, [], "f2bd", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 96c48.6 0 88 39.4 88 88s-39.4 88-88 88-88-39.4-88-88 39.4-88 88-88zm0 344c-58.7 0-111.3-26.6-146.5-68.2 18.8-35.4 55.6-59.8 98.5-59.8 2.4 0 4.8.4 7.1 1.1 13 4.2 26.6 6.9 40.9 6.9 14.3 0 28-2.7 40.9-6.9 2.3-.7 4.7-1.1 7.1-1.1 42.9 0 79.7 24.4 98.5 59.8C359.3 421.4 306.7 448 248 448z"], + "user-clock": [640, 512, [], "f4fd", "M496 224c-79.6 0-144 64.4-144 144s64.4 144 144 144 144-64.4 144-144-64.4-144-144-144zm64 150.3c0 5.3-4.4 9.7-9.7 9.7h-60.6c-5.3 0-9.7-4.4-9.7-9.7v-76.6c0-5.3 4.4-9.7 9.7-9.7h12.6c5.3 0 9.7 4.4 9.7 9.7V352h38.3c5.3 0 9.7 4.4 9.7 9.7v12.6zM320 368c0-27.8 6.7-54.1 18.2-77.5-8-1.5-16.2-2.5-24.6-2.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h347.1c-45.3-31.9-75.1-84.5-75.1-144zm-96-112c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128z"], + "user-cog": [640, 512, [], "f4fe", "M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z"], + "user-edit": [640, 512, [], "f4ff", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h274.9c-2.4-6.8-3.4-14-2.6-21.3l6.8-60.9 1.2-11.1 7.9-7.9 77.3-77.3c-24.5-27.7-60-45.5-99.9-45.5zm45.3 145.3l-6.8 61c-1.1 10.2 7.5 18.8 17.6 17.6l60.9-6.8 137.9-137.9-71.7-71.7-137.9 137.8zM633 268.9L595.1 231c-9.3-9.3-24.5-9.3-33.8 0l-37.8 37.8-4.1 4.1 71.8 71.7 41.8-41.8c9.3-9.4 9.3-24.5 0-33.9z"], + "user-friends": [640, 512, [], "f500", "M192 256c61.9 0 112-50.1 112-112S253.9 32 192 32 80 82.1 80 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C51.6 288 0 339.6 0 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zM480 256c53 0 96-43 96-96s-43-96-96-96-96 43-96 96 43 96 96 96zm48 32h-3.8c-13.9 4.8-28.6 8-44.2 8s-30.3-3.2-44.2-8H432c-20.4 0-39.2 5.9-55.7 15.4 24.4 26.3 39.7 61.2 39.7 99.8v38.4c0 2.2-.5 4.3-.6 6.4H592c26.5 0 48-21.5 48-48 0-61.9-50.1-112-112-112z"], + "user-graduate": [448, 512, [], "f501", "M319.4 320.6L224 416l-95.4-95.4C57.1 323.7 0 382.2 0 454.4v9.6c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-9.6c0-72.2-57.1-130.7-128.6-133.8zM13.6 79.8l6.4 1.5v58.4c-7 4.2-12 11.5-12 20.3 0 8.4 4.6 15.4 11.1 19.7L3.5 242c-1.7 6.9 2.1 14 7.6 14h41.8c5.5 0 9.3-7.1 7.6-14l-15.6-62.3C51.4 175.4 56 168.4 56 160c0-8.8-5-16.1-12-20.3V87.1l66 15.9c-8.6 17.2-14 36.4-14 57 0 70.7 57.3 128 128 128s128-57.3 128-128c0-20.6-5.3-39.8-14-57l96.3-23.2c18.2-4.4 18.2-27.1 0-31.5l-190.4-46c-13-3.1-26.7-3.1-39.7 0L13.6 48.2c-18.1 4.4-18.1 27.2 0 31.6z"], + "user-lock": [640, 512, [], "f502", "M320 320c0-11.1 3.1-21.4 8.1-30.5-4.8-.5-9.5-1.5-14.5-1.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h280.9c-5.5-9.5-8.9-20.3-8.9-32V320zm-96-64c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm384 32h-32v-48c0-44.2-35.8-80-80-80s-80 35.8-80 80v48h-32c-17.7 0-32 14.3-32 32v160c0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32V320c0-17.7-14.3-32-32-32zm-80 0h-64v-48c0-17.6 14.4-32 32-32s32 14.4 32 32v48z"], + "user-md": [448, 512, [], "f0f0", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zM104 424c0 13.3 10.7 24 24 24s24-10.7 24-24-10.7-24-24-24-24 10.7-24 24zm216-135.4v49c36.5 7.4 64 39.8 64 78.4v41.7c0 7.6-5.4 14.2-12.9 15.7l-32.2 6.4c-4.3.9-8.5-1.9-9.4-6.3l-3.1-15.7c-.9-4.3 1.9-8.6 6.3-9.4l19.3-3.9V416c0-62.8-96-65.1-96 1.9v26.7l19.3 3.9c4.3.9 7.1 5.1 6.3 9.4l-3.1 15.7c-.9 4.3-5.1 7.1-9.4 6.3l-31.2-4.2c-7.9-1.1-13.8-7.8-13.8-15.9V416c0-38.6 27.5-70.9 64-78.4v-45.2c-2.2.7-4.4 1.1-6.6 1.9-18 6.3-37.3 9.8-57.4 9.8s-39.4-3.5-57.4-9.8c-7.4-2.6-14.9-4.2-22.6-5.2v81.6c23.1 6.9 40 28.1 40 53.4 0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.3 16.9-46.5 40-53.4v-80.4C48.5 301 0 355.8 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-72-56.8-130.3-128-133.8z"], + "user-minus": [640, 512, [], "f503", "M624 208H432c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"], + "user-ninja": [448, 512, [], "f504", "M325.4 289.2L224 390.6 122.6 289.2C54 295.3 0 352.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-70.2-54-127.1-122.6-133.2zM32 192c27.3 0 51.8-11.5 69.2-29.7 15.1 53.9 64 93.7 122.8 93.7 70.7 0 128-57.3 128-128S294.7 0 224 0c-50.4 0-93.6 29.4-114.5 71.8C92.1 47.8 64 32 32 32c0 33.4 17.1 62.8 43.1 80-26 17.2-43.1 46.6-43.1 80zm144-96h96c17.7 0 32 14.3 32 32H144c0-17.7 14.3-32 32-32z"], + "user-plus": [640, 512, [], "f234", "M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"], + "user-secret": [448, 512, [], "f21b", "M383.9 308.3l23.9-62.6c4-10.5-3.7-21.7-15-21.7h-58.5c11-18.9 17.8-40.6 17.8-64v-.3c39.2-7.8 64-19.1 64-31.7 0-13.3-27.3-25.1-70.1-33-9.2-32.8-27-65.8-40.6-82.8-9.5-11.9-25.9-15.6-39.5-8.8l-27.6 13.8c-9 4.5-19.6 4.5-28.6 0L182.1 3.4c-13.6-6.8-30-3.1-39.5 8.8-13.5 17-31.4 50-40.6 82.8-42.7 7.9-70 19.7-70 33 0 12.6 24.8 23.9 64 31.7v.3c0 23.4 6.8 45.1 17.8 64H56.3c-11.5 0-19.2 11.7-14.7 22.3l25.8 60.2C27.3 329.8 0 372.7 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-48.4-25.8-90.4-64.1-114.1zM176 480l-41.6-192 49.6 32 24 40-32 120zm96 0l-32-120 24-40 49.6-32L272 480zm41.7-298.5c-3.9 11.9-7 24.6-16.5 33.4-10.1 9.3-48 22.4-64-25-2.8-8.4-15.4-8.4-18.3 0-17 50.2-56 32.4-64 25-9.5-8.8-12.7-21.5-16.5-33.4-.8-2.5-6.3-5.7-6.3-5.8v-10.8c28.3 3.6 61 5.8 96 5.8s67.7-2.1 96-5.8v10.8c-.1.1-5.6 3.2-6.4 5.8z"], + "user-shield": [640, 512, [], "f505", "M622.3 271.1l-115.2-45c-4.1-1.6-12.6-3.7-22.2 0l-115.2 45c-10.7 4.2-17.7 14-17.7 24.9 0 111.6 68.7 188.8 132.9 213.9 9.6 3.7 18 1.6 22.2 0C558.4 489.9 640 420.5 640 296c0-10.9-7-20.7-17.7-24.9zM496 462.4V273.3l95.5 37.3c-5.6 87.1-60.9 135.4-95.5 151.8zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm96 40c0-2.5.8-4.8 1.1-7.2-2.5-.1-4.9-.8-7.5-.8h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c6.8 0 13.3-1.5 19.2-4-54-42.9-99.2-116.7-99.2-212z"], + "user-slash": [640, 512, [], "f506", "M633.8 458.1L362.3 248.3C412.1 230.7 448 183.8 448 128 448 57.3 390.7 0 320 0c-67.1 0-121.5 51.8-126.9 117.4L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM96 422.4V464c0 26.5 21.5 48 48 48h350.2L207.4 290.3C144.2 301.3 96 356 96 422.4z"], + "user-tag": [640, 512, [], "f507", "M630.6 364.9l-90.3-90.2c-12-12-28.3-18.7-45.3-18.7h-79.3c-17.7 0-32 14.3-32 32v79.2c0 17 6.7 33.2 18.7 45.2l90.3 90.2c12.5 12.5 32.8 12.5 45.3 0l92.5-92.5c12.6-12.5 12.6-32.7.1-45.2zm-182.8-21c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24c0 13.2-10.7 24-24 24zm-223.8-88c70.7 0 128-57.3 128-128C352 57.3 294.7 0 224 0S96 57.3 96 128c0 70.6 57.3 127.9 128 127.9zm127.8 111.2V294c-12.2-3.6-24.9-6.2-38.2-6.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 287.9 0 348.1 0 422.3v41.6c0 26.5 21.5 48 48 48h352c15.5 0 29.1-7.5 37.9-18.9l-58-58c-18.1-18.1-28.1-42.2-28.1-67.9z"], + "user-tie": [448, 512, [], "f508", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm95.8 32.6L272 480l-32-136 32-56h-96l32 56-32 136-47.8-191.4C56.9 292 0 350.3 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-72.1-56.9-130.4-128.2-133.8z"], + "user-times": [640, 512, [], "f235", "M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"], + "users": [640, 512, [], "f0c0", "M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"], + "users-cog": [640, 512, [], "f509", "M610.5 341.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 368.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm224 32c1.9 0 3.7-.5 5.6-.6 8.3-21.7 20.5-42.1 36.3-59.2 7.4-8 17.9-12.6 28.9-12.6 6.9 0 13.7 1.8 19.6 5.3l7.9 4.6c.8-.5 1.6-.9 2.4-1.4 7-14.6 11.2-30.8 11.2-48 0-61.9-50.1-112-112-112S208 82.1 208 144c0 61.9 50.1 112 112 112zm105.2 194.5c-2.3-1.2-4.6-2.6-6.8-3.9-8.2 4.8-15.3 9.8-27.5 9.8-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-10.7-34.5 24.9-49.7 25.8-50.3-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-3.8-2.2-7-5-9.8-8.1-3.3.2-6.5.6-9.8.6-24.6 0-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h255.4c-3.7-6-6.2-12.8-6.2-20.3v-9.2zM173.1 274.6C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"], + "utensil-spoon": [512, 512, [], "f2e5", "M480.1 31.9c-55-55.1-164.9-34.5-227.8 28.5-49.3 49.3-55.1 110-28.8 160.4L9 413.2c-11.6 10.5-12.1 28.5-1 39.5L59.3 504c11 11 29.1 10.5 39.5-1.1l192.4-214.4c50.4 26.3 111.1 20.5 160.4-28.8 63-62.9 83.6-172.8 28.5-227.8z"], + "utensils": [416, 512, [], "f2e7", "M207.9 15.2c.8 4.7 16.1 94.5 16.1 128.8 0 52.3-27.8 89.6-68.9 104.6L168 486.7c.7 13.7-10.2 25.3-24 25.3H80c-13.7 0-24.7-11.5-24-25.3l12.9-238.1C27.7 233.6 0 196.2 0 144 0 109.6 15.3 19.9 16.1 15.2 19.3-5.1 61.4-5.4 64 16.3v141.2c1.3 3.4 15.1 3.2 16 0 1.4-25.3 7.9-139.2 8-141.8 3.3-20.8 44.7-20.8 47.9 0 .2 2.7 6.6 116.5 8 141.8.9 3.2 14.8 3.4 16 0V16.3c2.6-21.6 44.8-21.4 48-1.1zm119.2 285.7l-15 185.1c-1.2 14 9.9 26 23.9 26h56c13.3 0 24-10.7 24-24V24c0-13.2-10.7-24-24-24-82.5 0-221.4 178.5-64.9 300.9z"], + "vector-square": [512, 512, [], "f5cb", "M512 128V32c0-17.67-14.33-32-32-32h-96c-17.67 0-32 14.33-32 32H160c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32v192c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32h192c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32V160c17.67 0 32-14.33 32-32zm-96-64h32v32h-32V64zM64 64h32v32H64V64zm32 384H64v-32h32v32zm352 0h-32v-32h32v32zm-32-96h-32c-17.67 0-32 14.33-32 32v32H160v-32c0-17.67-14.33-32-32-32H96V160h32c17.67 0 32-14.33 32-32V96h192v32c0 17.67 14.33 32 32 32h32v192z"], + "venus": [288, 512, [], "f221", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z"], + "venus-double": [512, 512, [], "f226", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80zm336 140.4V368h36c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-36v36c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-36h-36c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h36v-51.6c-21.2-4.8-40.6-14.3-57.2-27.3 14-16.7 25-36 32.1-57.1 14.5 14.8 34.7 24 57.1 24 44.1 0 80-35.9 80-80s-35.9-80-80-80c-22.3 0-42.6 9.2-57.1 24-7.1-21.1-18-40.4-32.1-57.1C303.4 43.6 334.3 32 368 32c79.5 0 144 64.5 144 144 0 68.5-47.9 125.9-112 140.4z"], + "venus-mars": [576, 512, [], "f228", "M564 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C422.5 72.1 396.2 64 368 64c-33.7 0-64.6 11.6-89.2 30.9 14 16.7 25 36 32.1 57.1 14.5-14.8 34.7-24 57.1-24 44.1 0 80 35.9 80 80s-35.9 80-80 80c-22.3 0-42.6-9.2-57.1-24-7.1 21.1-18 40.4-32.1 57.1 24.5 19.4 55.5 30.9 89.2 30.9 79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 64C64.5 64 0 128.5 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.6 112-71.9 112-140.4 0-79.5-64.5-144-144-144zm0 224c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"], + "vial": [480, 512, [], "f492", "M477.7 186.1L309.5 18.3c-3.1-3.1-8.2-3.1-11.3 0l-34 33.9c-3.1 3.1-3.1 8.2 0 11.3l11.2 11.1L33 316.5c-38.8 38.7-45.1 102-9.4 143.5 20.6 24 49.5 36 78.4 35.9 26.4 0 52.8-10 72.9-30.1l246.3-245.7 11.2 11.1c3.1 3.1 8.2 3.1 11.3 0l34-33.9c3.1-3 3.1-8.1 0-11.2zM318 256H161l148-147.7 78.5 78.3L318 256z"], + "vials": [640, 512, [], "f493", "M72 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H72c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64zm480 384H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM360 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64z"], + "video": [576, 512, [], "f03d", "M336.2 64H47.8C21.4 64 0 85.4 0 111.8v288.4C0 426.6 21.4 448 47.8 448h288.4c26.4 0 47.8-21.4 47.8-47.8V111.8c0-26.4-21.4-47.8-47.8-47.8zm189.4 37.7L416 177.3v157.4l109.6 75.5c21.2 14.6 50.4-.3 50.4-25.8V127.5c0-25.4-29.1-40.4-50.4-25.8z"], + "video-slash": [640, 512, [], "f4e2", "M633.8 458.1l-55-42.5c15.4-1.4 29.2-13.7 29.2-31.1v-257c0-25.5-29.1-40.4-50.4-25.8L448 177.3v137.2l-32-24.7v-178c0-26.4-21.4-47.8-47.8-47.8H123.9L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4L42.7 82 416 370.6l178.5 138c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.5-6.9 4.2-17-2.8-22.4zM32 400.2c0 26.4 21.4 47.8 47.8 47.8h288.4c11.2 0 21.4-4 29.6-10.5L32 154.7v245.5z"], + "volleyball-ball": [495, 512, [], "f45f", "M223.3 243.4c-.9-37-8.6-72.8-22.7-105.7-90.8 42.4-157.5 122.4-180.3 216.8 13.4 30.8 32.9 58.3 56.9 81.1 22.7-79.2 74.2-147.8 146.1-192.2zM186.4 109c-15-26.4-34.5-50.1-57.4-70.7C38 88.1-15.8 191.2 4 300.5c33.4-83.1 98.4-152 182.4-191.5zM374 274.1c8.6-99.8-27.3-197.5-97.5-264.4-14.7-1.7-51.6-5.5-98.9 8.5 57.3 59.3 91 138.2 93.5 222.7 32.5 17.7 67.3 29 102.9 33.2zm-124.7 9.5c-31.6 19.3-58.7 43.9-80.2 72.6 82 57.3 184.5 75.1 277.5 47.8 19.7-26.4 34.2-56.8 42.2-89.9-26.6 6.6-53.7 10.4-80.9 10.4-54.6-.1-108.9-14.1-158.6-40.9zM151 383.3c-15.2 26-25.7 54.4-32.1 84.2 37.6 23 81.7 36.5 129.1 36.5 61 0 116.7-22.1 159.9-58.6C295 461.5 204.6 420.6 151 383.3zM331.3 22.7c55.3 70.4 82.5 161.2 74.6 253.6 30.3.2 60.5-4.8 89.7-14.2 0-2 .3-4 .3-6 0-107.8-68.7-199.1-164.6-233.4z"], + "volume-down": [384, 512, [], "f027", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zM384 256c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z"], + "volume-off": [256, 512, [], "f026", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971z"], + "volume-up": [576, 512, [], "f028", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zm182.056-77.876C422.982.92 403.283 5.668 394.061 20.745c-9.221 15.077-4.473 34.774 10.604 43.995C468.967 104.063 512 174.983 512 256c0 73.431-36.077 142.292-96.507 184.206-14.522 10.072-18.129 30.01-8.057 44.532 10.076 14.528 30.016 18.126 44.531 8.057C529.633 438.927 576 350.406 576 256c0-103.244-54.579-194.877-137.944-245.859zM480 256c0-68.547-36.15-129.777-91.957-163.901-15.076-9.22-34.774-4.471-43.994 10.607-9.22 15.078-4.471 34.774 10.607 43.994C393.067 170.188 416 211.048 416 256c0 41.964-20.62 81.319-55.158 105.276-14.521 10.073-18.128 30.01-8.056 44.532 6.216 8.96 16.185 13.765 26.322 13.765a31.862 31.862 0 0 0 18.21-5.709C449.091 377.953 480 318.938 480 256zm-96 0c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z"], + "walking": [320, 512, [], "f554", "M208 96c26.5 0 48-21.5 48-48S234.5 0 208 0s-48 21.5-48 48 21.5 48 48 48zm94.5 149.1l-23.3-11.8-9.7-29.4c-14.7-44.6-55.7-75.8-102.2-75.9-36-.1-55.9 10.1-93.3 25.2-21.6 8.7-39.3 25.2-49.7 46.2L17.6 213c-7.8 15.8-1.5 35 14.2 42.9 15.6 7.9 34.6 1.5 42.5-14.3L81 228c3.5-7 9.3-12.5 16.5-15.4l26.8-10.8-15.2 60.7c-5.2 20.8.4 42.9 14.9 58.8l59.9 65.4c7.2 7.9 12.3 17.4 14.9 27.7l18.3 73.3c4.3 17.1 21.7 27.6 38.8 23.3 17.1-4.3 27.6-21.7 23.3-38.8l-22.2-89c-2.6-10.3-7.7-19.9-14.9-27.7l-45.5-49.7 17.2-68.7 5.5 16.5c5.3 16.1 16.7 29.4 31.7 37l23.3 11.8c15.6 7.9 34.6 1.5 42.5-14.3 7.7-15.7 1.4-35.1-14.3-43zM73.6 385.8c-3.2 8.1-8 15.4-14.2 21.5l-50 50.1c-12.5 12.5-12.5 32.8 0 45.3s32.7 12.5 45.2 0l59.4-59.4c6.1-6.1 10.9-13.4 14.2-21.5l13.5-33.8c-55.3-60.3-38.7-41.8-47.4-53.7l-20.7 51.5z"], + "wallet": [512, 512, [], "f555", "M461.2 128H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h384c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h397.2c28.02 0 50.8-21.53 50.8-48V176c0-26.47-22.78-48-50.8-48zM416 336c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "warehouse": [640, 512, [], "f494", "M504 352H136.4c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0 96H136.1c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0-192H136.6c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm106.5-139L338.4 3.7a48.15 48.15 0 0 0-36.9 0L29.5 117C11.7 124.5 0 141.9 0 161.3V504c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V256c0-17.6 14.6-32 32.6-32h382.8c18 0 32.6 14.4 32.6 32v248c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V161.3c0-19.4-11.7-36.8-29.5-44.3z"], + "weight": [512, 512, [], "f496", "M448 64h-25.98C438.44 92.28 448 125.01 448 160c0 105.87-86.13 192-192 192S64 265.87 64 160c0-34.99 9.56-67.72 25.98-96H64C28.71 64 0 92.71 0 128v320c0 35.29 28.71 64 64 64h384c35.29 0 64-28.71 64-64V128c0-35.29-28.71-64-64-64zM256 320c88.37 0 160-71.63 160-160S344.37 0 256 0 96 71.63 96 160s71.63 160 160 160zm-.3-151.94l33.58-78.36c3.5-8.17 12.94-11.92 21.03-8.41 8.12 3.48 11.88 12.89 8.41 21l-33.67 78.55C291.73 188 296 197.45 296 208c0 22.09-17.91 40-40 40s-40-17.91-40-40c0-21.98 17.76-39.77 39.7-39.94z"], + "weight-hanging": [512, 512, [], "f5cd", "M510.28 445.86l-73.03-292.13c-3.8-15.19-16.44-25.72-30.87-25.72h-60.25c3.57-10.05 5.88-20.72 5.88-32 0-53.02-42.98-96-96-96s-96 42.98-96 96c0 11.28 2.3 21.95 5.88 32h-60.25c-14.43 0-27.08 10.54-30.87 25.72L1.72 445.86C-6.61 479.17 16.38 512 48.03 512h415.95c31.64 0 54.63-32.83 46.3-66.14zM256 128c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z"], + "wheelchair": [512, 512, [], "f193", "M496.101 385.669l14.227 28.663c3.929 7.915.697 17.516-7.218 21.445l-65.465 32.886c-16.049 7.967-35.556 1.194-43.189-15.055L331.679 320H192c-15.925 0-29.426-11.71-31.679-27.475C126.433 55.308 128.38 70.044 128 64c0-36.358 30.318-65.635 67.052-63.929 33.271 1.545 60.048 28.905 60.925 62.201.868 32.933-23.152 60.423-54.608 65.039l4.67 32.69H336c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H215.182l4.572 32H352a32 32 0 0 1 28.962 18.392L438.477 396.8l36.178-18.349c7.915-3.929 17.517-.697 21.446 7.218zM311.358 352h-24.506c-7.788 54.204-54.528 96-110.852 96-61.757 0-112-50.243-112-112 0-41.505 22.694-77.809 56.324-97.156-3.712-25.965-6.844-47.86-9.488-66.333C45.956 198.464 0 261.963 0 336c0 97.047 78.953 176 176 176 71.87 0 133.806-43.308 161.11-105.192L311.358 352z"], + "wifi": [640, 512, [], "f1eb", "M384 416c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm136.659-124.443c6.465-6.465 6.245-17.065-.564-23.167-113.793-101.985-286.526-101.869-400.19 0-6.809 6.102-7.029 16.702-.564 23.167l34.006 34.006c5.927 5.927 15.464 6.32 21.769.796 82.88-72.609 207.074-72.447 289.768 0 6.305 5.524 15.842 5.132 21.769-.796l34.006-34.006zm112.11-113.718c6.385-6.385 6.254-16.816-.35-22.973-175.768-163.86-449.134-163.8-624.837 0-6.604 6.157-6.735 16.589-.35 22.973l33.966 33.966c6.095 6.095 15.891 6.231 22.224.383 144.763-133.668 368.356-133.702 513.156 0 6.333 5.848 16.129 5.712 22.224-.383l33.967-33.966z"], + "window-close": [512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-83.6 290.5c4.8 4.8 4.8 12.6 0 17.4l-40.5 40.5c-4.8 4.8-12.6 4.8-17.4 0L256 313.3l-66.5 67.1c-4.8 4.8-12.6 4.8-17.4 0l-40.5-40.5c-4.8-4.8-4.8-12.6 0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6 0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1 66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8 4.8 12.6 0 17.4L313.3 256l67.1 66.5z"], + "window-maximize": [512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16 160H64v-84c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12v84z"], + "window-minimize": [512, 512, [], "f2d1", "M464 352H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48z"], + "window-restore": [512, 512, [], "f2d2", "M512 48v288c0 26.5-21.5 48-48 48h-48V176c0-44.1-35.9-80-80-80H128V48c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zM384 176v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zm-68 28c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v52h252v-52z"], + "wine-glass": [288, 512, [], "f4e3", "M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40z"], + "wine-glass-alt": [288, 512, [], "f5ce", "M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM61.75 48h164.5l7.17 80H54.58l7.17-80z"], + "won-sign": [576, 512, [], "f159", "M564 192c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-48.028l18.572-80.61c1.732-7.518-3.978-14.694-11.693-14.694h-46.107a11.998 11.998 0 0 0-11.736 9.5L450.73 128H340.839l-19.725-85.987a12 12 0 0 0-11.696-9.317H265.43a12 12 0 0 0-11.687 9.277L233.696 128H124.975L107.5 42.299a12 12 0 0 0-11.758-9.602H53.628c-7.686 0-13.39 7.124-11.709 14.624L60 128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h62.342l7.171 32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h83.856l40.927 182.624A12 12 0 0 0 148.492 480h56.767c5.583 0 10.428-3.85 11.689-9.288L259.335 288h55.086l42.386 182.712A12 12 0 0 0 368.496 480h56.826a12 12 0 0 0 11.694-9.306L479.108 288H564c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-70.146l7.373-32H564zm-425.976 0h80.757l-7.457 32h-66.776l-6.524-32zm45.796 150.029c-6.194 25.831-6.758 47.25-7.321 47.25h-1.126s-1.689-22.05-6.758-47.25L157.599 288h38.812l-12.591 54.029zM274.182 224l1.996-8.602c1.856-7.962 3.457-15.968 4.803-23.398h11.794c1.347 7.43 2.947 15.436 4.803 23.398l1.996 8.602h-25.392zm130.959 118.029c-5.068 25.2-6.758 47.25-6.758 47.25h-1.126c-.563 0-1.126-21.42-7.321-47.25L377.542 288h39.107l-11.508 54.029zM430.281 224h-67.42l-7.34-32h81.577l-6.817 32z"], + "wrench": [512, 512, [], "f0ad", "M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"], + "x-ray": [640, 512, [], "f497", "M240 384c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm160 32c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zM624 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zm0 448h-48V96H64v352H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM480 248c0 4.4-3.6 8-8 8H336v32h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48v-16h-64v16c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48h64v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-32H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h136v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-24c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v24h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h136c4.4 0 8 3.6 8 8v16z"], + "yen-sign": [384, 512, [], "f157", "M351.208 32h-65.277a12 12 0 0 0-10.778 6.724l-55.39 113.163c-14.513 34.704-27.133 71.932-27.133 71.932h-1.262s-12.62-37.228-27.133-71.932l-55.39-113.163A11.997 11.997 0 0 0 98.068 32H32.792c-9.057 0-14.85 9.65-10.59 17.643L102.322 200H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h88.162L152 293.228V320H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h108v92c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-92h108c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12H232v-26.772L251.838 256H340c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12h-58.322l80.12-150.357C366.058 41.65 360.266 32 351.208 32z"] +}; + +bunker(function () { + define('fas', icons); +}); + +}()); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-solid.min.js b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-solid.min.js new file mode 100644 index 0000000000..a89ca1d66d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-solid.min.js @@ -0,0 +1,792 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +!function() { + "use strict"; + var c = {}; + try { + "undefined" != typeof window && (c = window); + } catch (c) {} + var h = (c.navigator || {}).userAgent, v = void 0 === h ? "" : h, l = c, z = (~v.indexOf("MSIE") || v.indexOf("Trident/"), + "___FONT_AWESOME___"), s = function() { + try { + return !1; + } catch (c) { + return !1; + } + }(), M = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ], m = M.concat([ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ]); + [ "xs", "sm", "lg", "fw", "ul", "li", "border", "pull-left", "pull-right", "spin", "pulse", "rotate-90", "rotate-180", "rotate-270", "flip-horizontal", "flip-vertical", "stack", "stack-1x", "stack-2x", "inverse", "layers", "layers-text", "layers-counter" ].concat(M.map(function(c) { + return c + "x"; + })).concat(m.map(function(c) { + return "w-" + c; + })); + var H = l || {}; + H[z] || (H[z] = {}), H[z].styles || (H[z].styles = {}), H[z].hooks || (H[z].hooks = {}), + H[z].shims || (H[z].shims = []); + var V = H[z], a = Object.assign || function(c) { + for (var h = 1; h < arguments.length; h++) { + var v = arguments[h]; + for (var l in v) Object.prototype.hasOwnProperty.call(v, l) && (c[l] = v[l]); + } + return c; + }; + var f = { + "address-book": [ 448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z" ], + "address-card": [ 576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-352 96c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H86.4C74 384 64 375.4 64 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2zM512 312c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z" ], + adjust: [ 512, 512, [], "f042", "M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z" ], + "align-center": [ 448, 512, [], "f037", "M352 44v40c0 8.837-7.163 16-16 16H112c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h224c8.837 0 16 7.163 16 16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm320-200H112c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z" ], + "align-justify": [ 448, 512, [], "f039", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm16 144h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0-128h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" ], + "align-left": [ 448, 512, [], "f036", "M288 44v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16zM0 172v40c0 8.837 7.163 16 16 16h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16zm16 312h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm256-200H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z" ], + "align-right": [ 448, 512, [], "f038", "M160 84V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H176c-8.837 0-16-7.163-16-16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" ], + allergies: [ 448, 512, [], "f461", "M416 112c-17.6 0-32 14.4-32 32v72c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v152c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V32c0-17.6-14.4-32-32-32s-32 14.4-32 32v184c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32S96 46.4 96 64v241l-23.6-32.5c-13-17.9-38-21.8-55.9-8.8s-21.8 38-8.8 55.9l125.6 172.7c9 12.4 23.5 19.8 38.8 19.8h197.6c22.3 0 41.6-15.3 46.7-37l26.5-112.7c3.2-13.7 4.9-28.3 5.1-42.3V144c0-17.6-14.4-32-32-32zM176 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 32c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32-128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z" ], + ambulance: [ 640, 512, [], "f0f9", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm144-248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm176 248c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z" ], + "american-sign-language-interpreting": [ 640, 512, [], "f2a3", "M290.547 189.039c-20.295-10.149-44.147-11.199-64.739-3.89 42.606 0 71.208 20.475 85.578 50.576 8.576 17.899-5.148 38.071-23.617 38.071 18.429 0 32.211 20.136 23.617 38.071-14.725 30.846-46.123 50.854-80.298 50.854-.557 0-94.471-8.615-94.471-8.615l-66.406 33.347c-9.384 4.693-19.815.379-23.895-7.781L1.86 290.747c-4.167-8.615-1.111-18.897 6.946-23.621l58.072-33.069L108 159.861c6.39-57.245 34.731-109.767 79.743-146.726 11.391-9.448 28.341-7.781 37.51 3.613 9.446 11.394 7.78 28.067-3.612 37.516-12.503 10.559-23.618 22.509-32.509 35.57 21.672-14.729 46.679-24.732 74.186-28.067 14.725-1.945 28.063 8.336 29.73 23.065 1.945 14.728-8.336 28.067-23.062 29.734-16.116 1.945-31.12 7.503-44.178 15.284 26.114-5.713 58.712-3.138 88.079 11.115 13.336 6.669 18.893 22.509 12.224 35.848-6.389 13.06-22.504 18.617-35.564 12.226zm-27.229 69.472c-6.112-12.505-18.338-20.286-32.231-20.286a35.46 35.46 0 0 0-35.565 35.57c0 21.428 17.808 35.57 35.565 35.57 13.893 0 26.119-7.781 32.231-20.286 4.446-9.449 13.614-15.006 23.339-15.284-9.725-.277-18.893-5.835-23.339-15.284zm374.821-37.237c4.168 8.615 1.111 18.897-6.946 23.621l-58.071 33.069L532 352.16c-6.39 57.245-34.731 109.767-79.743 146.726-10.932 9.112-27.799 8.144-37.51-3.613-9.446-11.394-7.78-28.067 3.613-37.516 12.503-10.559 23.617-22.509 32.508-35.57-21.672 14.729-46.679 24.732-74.186 28.067-10.021 2.506-27.552-5.643-29.73-23.065-1.945-14.728 8.336-28.067 23.062-29.734 16.116-1.946 31.12-7.503 44.178-15.284-26.114 5.713-58.712 3.138-88.079-11.115-13.336-6.669-18.893-22.509-12.224-35.848 6.389-13.061 22.505-18.619 35.565-12.227 20.295 10.149 44.147 11.199 64.739 3.89-42.606 0-71.208-20.475-85.578-50.576-8.576-17.899 5.148-38.071 23.617-38.071-18.429 0-32.211-20.136-23.617-38.071 14.033-29.396 44.039-50.887 81.966-50.854l92.803 8.615 66.406-33.347c9.408-4.704 19.828-.354 23.894 7.781l44.455 88.926zm-229.227-18.618c-13.893 0-26.119 7.781-32.231 20.286-4.446 9.449-13.614 15.006-23.339 15.284 9.725.278 18.893 5.836 23.339 15.284 6.112 12.505 18.338 20.286 32.231 20.286a35.46 35.46 0 0 0 35.565-35.57c0-21.429-17.808-35.57-35.565-35.57z" ], + anchor: [ 576, 512, [], "f13d", "M12.971 352h32.394C67.172 454.735 181.944 512 288 512c106.229 0 220.853-57.38 242.635-160h32.394c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0l-67.029 67.029c-7.56 7.56-2.206 20.485 8.485 20.485h35.146c-20.29 54.317-84.963 86.588-144.117 94.015V256h52c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-52v-5.47c37.281-13.178 63.995-48.725 64-90.518C384.005 43.772 341.605.738 289.37.01 235.723-.739 192 42.525 192 96c0 41.798 26.716 77.35 64 90.53V192h-52c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v190.015c-58.936-7.399-123.82-39.679-144.117-94.015h35.146c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0L4.485 331.515C-3.074 339.074 2.28 352 12.971 352zM288 64c17.645 0 32 14.355 32 32s-14.355 32-32 32-32-14.355-32-32 14.355-32 32-32z" ], + "angle-double-down": [ 320, 512, [], "f103", "M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z" ], + "angle-double-left": [ 448, 512, [], "f100", "M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" ], + "angle-double-right": [ 448, 512, [], "f101", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" ], + "angle-double-up": [ 320, 512, [], "f102", "M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z" ], + "angle-down": [ 320, 512, [], "f107", "M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z" ], + "angle-left": [ 256, 512, [], "f104", "M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" ], + "angle-right": [ 256, 512, [], "f105", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" ], + "angle-up": [ 320, 512, [], "f106", "M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z" ], + angry: [ 496, 512, [], "f556", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 240c0-9.3 4.1-17.5 10.5-23.4l-31-9.3c-8.5-2.5-13.3-11.5-10.7-19.9 2.5-8.5 11.4-13.2 19.9-10.7l80 24c8.5 2.5 13.3 11.5 10.7 19.9-2.1 6.9-8.4 11.4-15.3 11.4-.5 0-1.1-.2-1.7-.2.7 2.7 1.7 5.3 1.7 8.2 0 17.7-14.3 32-32 32S136 257.7 136 240zm168 154.2c-27.8-33.4-84.2-33.4-112.1 0-13.5 16.3-38.2-4.2-24.6-20.5 20-24 49.4-37.8 80.6-37.8s60.6 13.8 80.6 37.8c13.8 16.5-11.1 36.6-24.5 20.5zm76.6-186.9l-31 9.3c6.3 5.8 10.5 14.1 10.5 23.4 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-2.9.9-5.6 1.7-8.2-.6.1-1.1.2-1.7.2-6.9 0-13.2-4.5-15.3-11.4-2.5-8.5 2.3-17.4 10.7-19.9l80-24c8.4-2.5 17.4 2.3 19.9 10.7 2.5 8.5-2.3 17.4-10.8 19.9z" ], + archive: [ 512, 512, [], "f187", "M32 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160H32v288zm160-212c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v8c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-8zM480 32H32C14.3 32 0 46.3 0 64v48c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16V64c0-17.7-14.3-32-32-32z" ], + archway: [ 576, 512, [], "f557", "M560 448h-16V96H32v352H16.02c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16H176c8.84 0 16-7.16 16-16V320c0-53.02 42.98-96 96-96s96 42.98 96 96l.02 160v16c0 8.84 7.16 16 16 16H560c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm0-448H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h544c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16z" ], + "arrow-alt-circle-down": [ 512, 512, [], "f358", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM212 140v116h-70.9c-10.7 0-16.1 13-8.5 20.5l114.9 114.3c4.7 4.7 12.2 4.7 16.9 0l114.9-114.3c7.6-7.6 2.2-20.5-8.5-20.5H300V140c0-6.6-5.4-12-12-12h-64c-6.6 0-12 5.4-12 12z" ], + "arrow-alt-circle-left": [ 512, 512, [], "f359", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z" ], + "arrow-alt-circle-right": [ 512, 512, [], "f35a", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z" ], + "arrow-alt-circle-up": [ 512, 512, [], "f35b", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm292 116V256h70.9c10.7 0 16.1-13 8.5-20.5L264.5 121.2c-4.7-4.7-12.2-4.7-16.9 0l-115 114.3c-7.6 7.6-2.2 20.5 8.5 20.5H212v116c0 6.6 5.4 12 12 12h64c6.6 0 12-5.4 12-12z" ], + "arrow-circle-down": [ 512, 512, [], "f0ab", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-143.6-28.9L288 302.6V120c0-13.3-10.7-24-24-24h-16c-13.3 0-24 10.7-24 24v182.6l-72.4-75.5c-9.3-9.7-24.8-9.9-34.3-.4l-10.9 11c-9.4 9.4-9.4 24.6 0 33.9L239 404.3c9.4 9.4 24.6 9.4 33.9 0l132.7-132.7c9.4-9.4 9.4-24.6 0-33.9l-10.9-11c-9.5-9.5-25-9.3-34.3.4z" ], + "arrow-circle-left": [ 512, 512, [], "f0a8", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm28.9-143.6L209.4 288H392c13.3 0 24-10.7 24-24v-16c0-13.3-10.7-24-24-24H209.4l75.5-72.4c9.7-9.3 9.9-24.8.4-34.3l-11-10.9c-9.4-9.4-24.6-9.4-33.9 0L107.7 239c-9.4 9.4-9.4 24.6 0 33.9l132.7 132.7c9.4 9.4 24.6 9.4 33.9 0l11-10.9c9.5-9.5 9.3-25-.4-34.3z" ], + "arrow-circle-right": [ 512, 512, [], "f0a9", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28.9 143.6l75.5 72.4H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h182.6l-75.5 72.4c-9.7 9.3-9.9 24.8-.4 34.3l11 10.9c9.4 9.4 24.6 9.4 33.9 0L404.3 273c9.4-9.4 9.4-24.6 0-33.9L271.6 106.3c-9.4-9.4-24.6-9.4-33.9 0l-11 10.9c-9.5 9.6-9.3 25.1.4 34.4z" ], + "arrow-circle-up": [ 512, 512, [], "f0aa", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z" ], + "arrow-down": [ 448, 512, [], "f063", "M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z" ], + "arrow-left": [ 448, 512, [], "f060", "M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z" ], + "arrow-right": [ 448, 512, [], "f061", "M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z" ], + "arrow-up": [ 448, 512, [], "f062", "M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z" ], + "arrows-alt": [ 512, 512, [], "f0b2", "M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z" ], + "arrows-alt-h": [ 512, 512, [], "f337", "M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z" ], + "arrows-alt-v": [ 256, 512, [], "f338", "M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z" ], + "assistive-listening-systems": [ 512, 512, [], "f2a2", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z" ], + asterisk: [ 512, 512, [], "f069", "M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z" ], + at: [ 512, 512, [], "f1fa", "M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z" ], + atlas: [ 448, 512, [], "f558", "M318.38 208h-39.09c-1.49 27.03-6.54 51.35-14.21 70.41 27.71-13.24 48.02-39.19 53.3-70.41zm0-32c-5.29-31.22-25.59-57.17-53.3-70.41 7.68 19.06 12.72 43.38 14.21 70.41h39.09zM224 97.31c-7.69 7.45-20.77 34.42-23.43 78.69h46.87c-2.67-44.26-15.75-71.24-23.44-78.69zm-41.08 8.28c-27.71 13.24-48.02 39.19-53.3 70.41h39.09c1.49-27.03 6.53-51.35 14.21-70.41zm0 172.82c-7.68-19.06-12.72-43.38-14.21-70.41h-39.09c5.28 31.22 25.59 57.17 53.3 70.41zM247.43 208h-46.87c2.66 44.26 15.74 71.24 23.43 78.69 7.7-7.45 20.78-34.43 23.44-78.69zM448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM224 64c70.69 0 128 57.31 128 128s-57.31 128-128 128S96 262.69 96 192 153.31 64 224 64zm160 384H96c-19.2 0-32-12.8-32-32s16-32 32-32h288v64z" ], + "audio-description": [ 512, 512, [], "f29e", "M162.925 238.709l8.822 30.655h-25.606l9.041-30.652c1.277-4.421 2.651-9.994 3.872-15.245 1.22 5.251 2.594 10.823 3.871 15.242zm166.474-32.099h-14.523v98.781h14.523c29.776 0 46.175-17.678 46.175-49.776 0-32.239-17.49-49.005-46.175-49.005zM512 112v288c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48zM245.459 336.139l-57.097-168A12.001 12.001 0 0 0 177 160h-35.894a12.001 12.001 0 0 0-11.362 8.139l-57.097 168C70.003 343.922 75.789 352 84.009 352h29.133a12 12 0 0 0 11.535-8.693l8.574-29.906h51.367l8.793 29.977A12 12 0 0 0 204.926 352h29.172c8.22 0 14.006-8.078 11.361-15.861zm184.701-80.525c0-58.977-37.919-95.614-98.96-95.614h-57.366c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12H331.2c61.041 0 98.96-36.933 98.96-96.386z" ], + award: [ 384, 512, [], "f559", "M97.12 362.63l-5.3-5.3a9.004 9.004 0 0 0-4.02-2.32L72 350.77c-9.51-2.55-17.87-7.45-25.43-13.32L1.2 448.7c-4.39 10.77 3.81 22.47 15.43 22.03l52.69-2.01L105.56 507c8 8.44 22.04 5.81 26.43-4.96l52.05-127.62c-10.84 6.04-22.87 9.58-35.31 9.58-19.5 0-37.82-7.59-51.61-21.37zM382.8 448.7l-45.37-111.24c-7.56 5.88-15.92 10.77-25.43 13.32l-15.8 4.23a9.004 9.004 0 0 0-4.02 2.32l-5.3 5.3C273.09 376.41 254.76 384 235.26 384c-12.44 0-24.47-3.55-35.31-9.58L252 502.04c4.39 10.77 18.44 13.4 26.43 4.96l36.25-38.28 52.69 2.01c11.62.44 19.82-11.27 15.43-22.03zM263 340l5.21-5.3c5-5.09 11.22-8.75 18.05-10.61l15.53-4.23c13.89-3.79 24.75-14.84 28.47-28.98l4.16-15.81a41.145 41.145 0 0 1 10.42-18.37l11.37-11.57c10.17-10.35 14.14-25.44 10.42-39.58l-4.16-15.81a41.657 41.657 0 0 1 0-21.21l4.16-15.81c3.72-14.14-.25-29.23-10.42-39.58l-11.37-11.57c-5-5.09-8.59-11.42-10.42-18.37l-4.16-15.8c-3.72-14.14-14.58-25.19-28.47-28.98l-15.53-4.24c-6.83-1.86-13.05-5.52-18.05-10.61L256.84 12c-10.17-10.35-25-14.4-38.89-10.61l-15.53 4.24a39.614 39.614 0 0 1-20.84 0L166.05 1.4c-13.89-3.79-28.72.25-38.89 10.61l-11.37 11.57c-5 5.09-11.22 8.74-18.05 10.61l-15.53 4.24c-13.89 3.79-24.75 14.84-28.47 28.98l-4.16 15.8a41.145 41.145 0 0 1-10.42 18.37l-11.37 11.57c-10.17 10.35-14.15 25.44-10.42 39.58l4.16 15.8a41.657 41.657 0 0 1 0 21.21l-4.16 15.8c-3.72 14.14.25 29.23 10.42 39.59l11.37 11.57c5 5.09 8.59 11.42 10.42 18.37l4.16 15.8c3.72 14.14 14.58 25.19 28.47 28.98l15.53 4.23c6.83 1.86 13.05 5.52 18.05 10.61L121 340c13.23 13.47 33.84 15.88 49.74 5.82a39.676 39.676 0 0 1 42.53 0c15.89 10.06 36.5 7.65 49.73-5.82zM97.66 175.96c0-53.03 42.24-96.02 94.34-96.02s94.34 42.99 94.34 96.02-42.24 96.02-94.34 96.02-94.34-42.99-94.34-96.02z" ], + backspace: [ 640, 512, [], "f55a", "M576 64H205.26A63.97 63.97 0 0 0 160 82.75L9.37 233.37c-12.5 12.5-12.5 32.76 0 45.25L160 429.25c12 12 28.28 18.75 45.25 18.75H576c35.35 0 64-28.65 64-64V128c0-35.35-28.65-64-64-64zm-84.69 254.06c6.25 6.25 6.25 16.38 0 22.63l-22.62 22.62c-6.25 6.25-16.38 6.25-22.63 0L384 301.25l-62.06 62.06c-6.25 6.25-16.38 6.25-22.63 0l-22.62-22.62c-6.25-6.25-6.25-16.38 0-22.63L338.75 256l-62.06-62.06c-6.25-6.25-6.25-16.38 0-22.63l22.62-22.62c6.25-6.25 16.38-6.25 22.63 0L384 210.75l62.06-62.06c6.25-6.25 16.38-6.25 22.63 0l22.62 22.62c6.25 6.25 6.25 16.38 0 22.63L429.25 256l62.06 62.06z" ], + backward: [ 512, 512, [], "f04a", "M11.5 280.6l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2zm256 0l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2z" ], + "balance-scale": [ 640, 512, [], "f24e", "M256 336h-.02c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0C-2.06 328.75.02 320.33.02 336H0c0 44.18 57.31 80 128 80s128-35.82 128-80zM128 176l72 144H56l72-144zm511.98 160c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 320l72-144 72 144H440zm88 128H352V153.25c23.51-10.29 41.16-31.48 46.39-57.25H528c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H383.64C369.04 12.68 346.09 0 320 0s-49.04 12.68-63.64 32H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h129.61c5.23 25.76 22.87 46.96 46.39 57.25V448H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" ], + ban: [ 512, 512, [], "f05e", "M256 8C119.034 8 8 119.033 8 256s111.034 248 248 248 248-111.034 248-248S392.967 8 256 8zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676zM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676z" ], + "band-aid": [ 640, 512, [], "f462", "M0 160v192c0 35.3 28.7 64 64 64h96V96H64c-35.3 0-64 28.7-64 64zm576-64h-96v320h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64zM192 416h256V96H192v320zm176-232c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24z" ], + barcode: [ 512, 512, [], "f02a", "M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z" ], + bars: [ 448, 512, [], "f0c9", "M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" ], + "baseball-ball": [ 496, 512, [], "f433", "M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z" ], + "basketball-ball": [ 496, 512, [], "f434", "M212.3 10.3c-43.8 6.3-86.2 24.1-122.2 53.8l77.4 77.4c27.8-35.8 43.3-81.2 44.8-131.2zM248 222L405.9 64.1c-42.4-35-93.6-53.5-145.5-56.1-1.2 63.9-21.5 122.3-58.7 167.7L248 222zM56.1 98.1c-29.7 36-47.5 78.4-53.8 122.2 50-1.5 95.5-17 131.2-44.8L56.1 98.1zm272.2 204.2c45.3-37.1 103.7-57.4 167.7-58.7-2.6-51.9-21.1-103.1-56.1-145.5L282 256l46.3 46.3zM248 290L90.1 447.9c42.4 34.9 93.6 53.5 145.5 56.1 1.3-64 21.6-122.4 58.7-167.7L248 290zm191.9 123.9c29.7-36 47.5-78.4 53.8-122.2-50.1 1.6-95.5 17.1-131.2 44.8l77.4 77.4zM167.7 209.7C122.3 246.9 63.9 267.3 0 268.4c2.6 51.9 21.1 103.1 56.1 145.5L214 256l-46.3-46.3zm116 292c43.8-6.3 86.2-24.1 122.2-53.8l-77.4-77.4c-27.7 35.7-43.2 81.2-44.8 131.2z" ], + bath: [ 512, 512, [], "f2cd", "M488 256H80V112c0-17.645 14.355-32 32-32 11.351 0 21.332 5.945 27.015 14.88-16.492 25.207-14.687 59.576 6.838 83.035-4.176 4.713-4.021 11.916.491 16.428l11.314 11.314c4.686 4.686 12.284 4.686 16.971 0l95.03-95.029c4.686-4.686 4.686-12.284 0-16.971l-11.314-11.314c-4.512-4.512-11.715-4.666-16.428-.491-17.949-16.469-42.294-21.429-64.178-15.365C163.281 45.667 139.212 32 112 32c-44.112 0-80 35.888-80 80v144h-8c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h8v32c0 28.43 12.362 53.969 32 71.547V456c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-8h256v8c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-32.453c19.638-17.578 32-43.117 32-71.547v-32h8c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z" ], + "battery-empty": [ 640, 512, [], "f244", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48z" ], + "battery-full": [ 640, 512, [], "f240", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-48 96H96v128h416V192z" ], + "battery-half": [ 640, 512, [], "f242", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-240 96H96v128h224V192z" ], + "battery-quarter": [ 640, 512, [], "f243", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-336 96H96v128h128V192z" ], + "battery-three-quarters": [ 640, 512, [], "f241", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-144 96H96v128h320V192z" ], + bed: [ 640, 512, [], "f236", "M176 256c44.11 0 80-35.89 80-80s-35.89-80-80-80-80 35.89-80 80 35.89 80 80 80zm352-128H304c-8.84 0-16 7.16-16 16v144H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v352c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h512v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V240c0-61.86-50.14-112-112-112z" ], + beer: [ 448, 512, [], "f0fc", "M368 96h-48V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24v-42.11l80.606-35.977C429.396 365.063 448 336.388 448 304.86V176c0-44.112-35.888-80-80-80zm16 208.86a16.018 16.018 0 0 1-9.479 14.611L320 343.805V160h48c8.822 0 16 7.178 16 16v128.86zM208 384c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16zm-96 0c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16z" ], + bell: [ 448, 512, [], "f0f3", "M433.884 366.059C411.634 343.809 384 316.118 384 208c0-79.394-57.831-145.269-133.663-157.83A31.845 31.845 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 6.75 2.095 13.008 5.663 18.17C121.831 62.731 64 128.606 64 208c0 108.118-27.643 135.809-49.893 158.059C-16.042 396.208 5.325 448 48.048 448H160c0 35.346 28.654 64 64 64s64-28.654 64-64h111.943c42.638 0 64.151-51.731 33.941-81.941zM224 472a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16c0 13.234 10.766 24 24 24z" ], + "bell-slash": [ 576, 512, [], "f1f6", "M78.107 366.059C47.958 396.208 69.325 448 112.048 448H224c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h32.685L127.848 221.379c-2.198 97.078-28.439 123.378-49.741 144.68zM264 448c0 13.234 10.766 24 24 24a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16zm305.896 43.733l-10.762 12.086c-8.915 10.012-24.333 10.967-34.437 2.133L8.256 54.393C-1.848 45.558-2.811 30.28 6.104 20.267L16.865 8.181C25.781-1.831 41.199-2.786 51.303 6.049l113.81 99.512c24.017-28.778 57.946-48.996 96.55-55.39A31.85 31.85 0 0 1 256 32c0-17.673 14.327-32 32-32s32 14.327 32 32c0 6.75-2.095 13.008-5.663 18.17C390.169 62.731 448 128.606 448 208c0 108.118 27.634 135.809 49.884 158.059 12.149 12.149 15.923 27.776 13.33 42.121l56.53 49.427c10.104 8.835 11.067 24.113 2.152 34.126z" ], + "bezier-curve": [ 640, 512, [], "f55b", "M368 32h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM208 88h-84.75C113.75 64.56 90.84 48 64 48 28.66 48 0 76.65 0 112s28.66 64 64 64c26.84 0 49.75-16.56 59.25-40h79.73c-55.37 32.52-95.86 87.32-109.54 152h49.4c11.3-41.61 36.77-77.21 71.04-101.56-3.7-8.08-5.88-16.99-5.88-26.44V88zm-48 232H64c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zM576 48c-26.84 0-49.75 16.56-59.25 40H432v72c0 9.45-2.19 18.36-5.88 26.44 34.27 24.35 59.74 59.95 71.04 101.56h49.4c-13.68-64.68-54.17-119.48-109.54-152h79.73c9.5 23.44 32.41 40 59.25 40 35.34 0 64-28.65 64-64s-28.66-64-64-64zm0 272h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z" ], + bicycle: [ 640, 512, [], "f206", "M512.509 192.001c-16.373-.064-32.03 2.955-46.436 8.495l-77.68-125.153A24 24 0 0 0 368.001 64h-64c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h50.649l14.896 24H256.002v-16c0-8.837-7.163-16-16-16h-87.459c-13.441 0-24.777 10.999-24.536 24.437.232 13.044 10.876 23.563 23.995 23.563h48.726l-29.417 47.52c-13.433-4.83-27.904-7.483-42.992-7.52C58.094 191.83.412 249.012.002 319.236-.413 390.279 57.055 448 128.002 448c59.642 0 109.758-40.793 123.967-96h52.033a24 24 0 0 0 20.406-11.367L410.37 201.77l14.938 24.067c-25.455 23.448-41.385 57.081-41.307 94.437.145 68.833 57.899 127.051 126.729 127.719 70.606.685 128.181-55.803 129.255-125.996 1.086-70.941-56.526-129.72-127.476-129.996zM186.75 265.772c9.727 10.529 16.673 23.661 19.642 38.228h-43.306l23.664-38.228zM128.002 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c5.869 0 11.586.653 17.099 1.859l-45.505 73.509C89.715 331.327 101.213 352 120.002 352h81.3c-12.37 28.225-40.562 48-73.3 48zm162.63-96h-35.624c-3.96-31.756-19.556-59.894-42.383-80.026L237.371 184h127.547l-74.286 120zm217.057 95.886c-41.036-2.165-74.049-35.692-75.627-76.755-.812-21.121 6.633-40.518 19.335-55.263l44.433 71.586c4.66 7.508 14.524 9.816 22.032 5.156l13.594-8.437c7.508-4.66 9.817-14.524 5.156-22.032l-44.468-71.643a79.901 79.901 0 0 1 19.858-2.497c44.112 0 80 35.888 80 80-.001 45.54-38.252 82.316-84.313 79.885z" ], + binoculars: [ 512, 512, [], "f1e5", "M192 104H96V56c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24v48zm224-48c0-13.255-10.745-24-24-24h-48c-13.255 0-24 10.745-24 24v48h96V56zM0 456c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H0v16zm88-328c-13.255 0-24 10.745-24 24C64 256 0 272 0 416h168V312c0-13.255 10.745-24 24-24V128H88zm256 328c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H344v16zM216 128v160h80V128h-80zm128 288h168c0-144-64-160-64-264 0-13.255-10.745-24-24-24H320v160c13.255 0 24 10.745 24 24v104z" ], + "birthday-cake": [ 448, 512, [], "f1fd", "M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z" ], + blender: [ 512, 512, [], "f517", "M416 384H160c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-128 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm40-416h166.54L512 0H48C21.49 0 0 21.49 0 48v160c0 26.51 21.49 48 48 48h103.27l8.73 96h256l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H328c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM64 192V64h69.82l11.64 128H64z" ], + blind: [ 384, 512, [], "f29d", "M380.15 510.837a8 8 0 0 1-10.989-2.687l-125.33-206.427a31.923 31.923 0 0 0 12.958-9.485l126.048 207.608a8 8 0 0 1-2.687 10.991zM142.803 314.338l-32.54 89.485 36.12 88.285c6.693 16.36 25.377 24.192 41.733 17.501 16.357-6.692 24.193-25.376 17.501-41.734l-62.814-153.537zM96 88c24.301 0 44-19.699 44-44S120.301 0 96 0 52 19.699 52 44s19.699 44 44 44zm154.837 169.128l-120-152c-4.733-5.995-11.75-9.108-18.837-9.112V96H80v.026c-7.146.003-14.217 3.161-18.944 9.24L0 183.766v95.694c0 13.455 11.011 24.791 24.464 24.536C37.505 303.748 48 293.1 48 280v-79.766l16-20.571v140.698L9.927 469.055c-6.04 16.609 2.528 34.969 19.138 41.009 16.602 6.039 34.968-2.524 41.009-19.138L136 309.638V202.441l-31.406-39.816a4 4 0 1 1 6.269-4.971l102.3 129.217c9.145 11.584 24.368 11.339 33.708 3.965 10.41-8.216 12.159-23.334 3.966-33.708z" ], + bold: [ 384, 512, [], "f032", "M304.793 243.891c33.639-18.537 53.657-54.16 53.657-95.693 0-48.236-26.25-87.626-68.626-104.179C265.138 34.01 240.849 32 209.661 32H24c-8.837 0-16 7.163-16 16v33.049c0 8.837 7.163 16 16 16h33.113v318.53H24c-8.837 0-16 7.163-16 16V464c0 8.837 7.163 16 16 16h195.69c24.203 0 44.834-1.289 66.866-7.584C337.52 457.193 376 410.647 376 350.014c0-52.168-26.573-91.684-71.207-106.123zM142.217 100.809h67.444c16.294 0 27.536 2.019 37.525 6.717 15.828 8.479 24.906 26.502 24.906 49.446 0 35.029-20.32 56.79-53.029 56.79h-76.846V100.809zm112.642 305.475c-10.14 4.056-22.677 4.907-31.409 4.907h-81.233V281.943h84.367c39.645 0 63.057 25.38 63.057 63.057.001 28.425-13.66 52.483-34.782 61.284z" ], + bolt: [ 320, 512, [], "f0e7", "M295.973 160H180.572L215.19 30.184C219.25 14.956 207.756 0 192 0H56C43.971 0 33.8 8.905 32.211 20.828l-31.996 240C-1.704 275.217 9.504 288 24.004 288h118.701L96.646 482.466C93.05 497.649 104.659 512 119.992 512c8.35 0 16.376-4.374 20.778-11.978l175.973-303.997c9.244-15.967-2.288-36.025-20.77-36.025z" ], + bomb: [ 512, 512, [], "f1e2", "M440.5 88.5l-52 52L415 167c9.4 9.4 9.4 24.6 0 33.9l-17.4 17.4c11.8 26.1 18.4 55.1 18.4 85.6 0 114.9-93.1 208-208 208S0 418.9 0 304 93.1 96 208 96c30.5 0 59.5 6.6 85.6 18.4L311 97c9.4-9.4 24.6-9.4 33.9 0l26.5 26.5 52-52 17.1 17zM500 60h-24c-6.6 0-12 5.4-12 12s5.4 12 12 12h24c6.6 0 12-5.4 12-12s-5.4-12-12-12zM440 0c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12s12-5.4 12-12V12c0-6.6-5.4-12-12-12zm33.9 55l17-17c4.7-4.7 4.7-12.3 0-17-4.7-4.7-12.3-4.7-17 0l-17 17c-4.7 4.7-4.7 12.3 0 17 4.8 4.7 12.4 4.7 17 0zm-67.8 0c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17zm67.8 34c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17zM112 272c0-35.3 28.7-64 64-64 8.8 0 16-7.2 16-16s-7.2-16-16-16c-52.9 0-96 43.1-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16z" ], + bong: [ 448, 512, [], "f55c", "M302.5 512c23.18 0 44.43-12.58 56-32.66C374.69 451.26 384 418.75 384 384c0-36.12-10.08-69.81-27.44-98.62L400 241.94l9.38 9.38c6.25 6.25 16.38 6.25 22.63 0l11.3-11.32c6.25-6.25 6.25-16.38 0-22.63l-52.69-52.69c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63l9.38 9.38-39.41 39.41c-11.56-11.37-24.53-21.33-38.65-29.51V63.74l15.97-.02c8.82-.01 15.97-7.16 15.98-15.98l.04-31.72C320 7.17 312.82-.01 303.97 0L80.03.26c-8.82.01-15.97 7.16-15.98 15.98l-.04 31.73c-.01 8.85 7.17 16.02 16.02 16.01L96 63.96v153.93C38.67 251.1 0 312.97 0 384c0 34.75 9.31 67.27 25.5 95.34C37.08 499.42 58.33 512 81.5 512h221zM120.06 259.43L144 245.56V63.91l96-.11v181.76l23.94 13.87c24.81 14.37 44.12 35.73 56.56 60.57h-257c12.45-24.84 31.75-46.2 56.56-60.57z" ], + book: [ 448, 512, [], "f02d", "M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z" ], + "book-open": [ 576, 512, [], "f518", "M542.22 32.05c-54.8 3.11-163.72 14.43-230.96 55.59-4.64 2.84-7.27 7.89-7.27 13.17v363.87c0 11.55 12.63 18.85 23.28 13.49 69.18-34.82 169.23-44.32 218.7-46.92 16.89-.89 30.02-14.43 30.02-30.66V62.75c.01-17.71-15.35-31.74-33.77-30.7zM264.73 87.64C197.5 46.48 88.58 35.17 33.78 32.05 15.36 31.01 0 45.04 0 62.75V400.6c0 16.24 13.13 29.78 30.02 30.66 49.49 2.6 149.59 12.11 218.77 46.95 10.62 5.35 23.21-1.94 23.21-13.46V100.63c0-5.29-2.62-10.14-7.27-12.99z" ], + bookmark: [ 384, 512, [], "f02e", "M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z" ], + "bowling-ball": [ 496, 512, [], "f436", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM120 192c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64-96c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm48 144c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + box: [ 512, 512, [], "f466", "M509.5 184.6L458.9 32.8C452.4 13.2 434.1 0 413.4 0H272v192h238.7c-.4-2.5-.4-5-1.2-7.4zM240 0H98.6c-20.7 0-39 13.2-45.5 32.8L2.5 184.6c-.8 2.4-.8 4.9-1.2 7.4H240V0zM0 224v240c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V224H0z" ], + "box-open": [ 640, 512, [], "f49e", "M53.2 41L1.7 143.8c-4.6 9.2.3 20.2 10.1 23l197.9 56.5c7.1 2 14.7-1 18.5-7.3L320 64 69.8 32.1c-6.9-.8-13.5 2.7-16.6 8.9zm585.1 102.8L586.8 41c-3.1-6.2-9.8-9.8-16.7-8.9L320 64l91.7 152.1c3.8 6.3 11.4 9.3 18.5 7.3l197.9-56.5c9.9-2.9 14.7-13.9 10.2-23.1zM425.7 256c-16.9 0-32.8-9-41.4-23.4L320 126l-64.2 106.6c-8.7 14.5-24.6 23.5-41.5 23.5-4.5 0-9-.6-13.3-1.9L64 215v178c0 14.7 10 27.5 24.2 31l216.2 54.1c10.2 2.5 20.9 2.5 31 0L551.8 424c14.2-3.6 24.2-16.4 24.2-31V215l-137 39.1c-4.3 1.3-8.8 1.9-13.3 1.9z" ], + boxes: [ 576, 512, [], "f468", "M560 288h-80v96l-32-21.3-32 21.3v-96h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16zm-384-64h224c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16h-80v96l-32-21.3L256 96V0h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16zm64 64h-80v96l-32-21.3L96 384v-96H16c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16z" ], + braille: [ 640, 512, [], "f2a1", "M128 256c0 35.346-28.654 64-64 64S0 291.346 0 256s28.654-64 64-64 64 28.654 64 64zM64 384c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352C28.654 32 0 60.654 0 96s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm224 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-320c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z" ], + briefcase: [ 512, 512, [], "f0b1", "M320 288h192v144c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V288h192v20c0 6.627 5.373 12 12 12h104c6.627 0 12-5.373 12-12v-20zm192-112v80H0v-80c0-26.51 21.49-48 48-48h80V80c0-26.51 21.49-48 48-48h160c26.51 0 48 21.49 48 48v48h80c26.51 0 48 21.49 48 48zM320 96H192v32h128V96z" ], + "briefcase-medical": [ 512, 512, [], "f469", "M464 128h-80V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48zM192 96h128v32H192V96zm160 248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48z" ], + "broadcast-tower": [ 640, 512, [], "f519", "M150.94 192h33.73c11.01 0 18.61-10.83 14.86-21.18-4.93-13.58-7.55-27.98-7.55-42.82s2.62-29.24 7.55-42.82C203.29 74.83 195.68 64 184.67 64h-33.73c-7.01 0-13.46 4.49-15.41 11.23C130.64 92.21 128 109.88 128 128c0 18.12 2.64 35.79 7.54 52.76 1.94 6.74 8.39 11.24 15.4 11.24zM89.92 23.34C95.56 12.72 87.97 0 75.96 0H40.63c-6.27 0-12.14 3.59-14.74 9.31C9.4 45.54 0 85.65 0 128c0 24.75 3.12 68.33 26.69 118.86 2.62 5.63 8.42 9.14 14.61 9.14h34.84c12.02 0 19.61-12.74 13.95-23.37-49.78-93.32-16.71-178.15-.17-209.29zM614.06 9.29C611.46 3.58 605.6 0 599.33 0h-35.42c-11.98 0-19.66 12.66-14.02 23.25 18.27 34.29 48.42 119.42.28 209.23-5.72 10.68 1.8 23.52 13.91 23.52h35.23c6.27 0 12.13-3.58 14.73-9.29C630.57 210.48 640 170.36 640 128s-9.42-82.48-25.94-118.71zM489.06 64h-33.73c-11.01 0-18.61 10.83-14.86 21.18 4.93 13.58 7.55 27.98 7.55 42.82s-2.62 29.24-7.55 42.82c-3.76 10.35 3.85 21.18 14.86 21.18h33.73c7.02 0 13.46-4.49 15.41-11.24 4.9-16.97 7.53-34.64 7.53-52.76 0-18.12-2.64-35.79-7.54-52.76-1.94-6.75-8.39-11.24-15.4-11.24zm-116.3 100.12c7.05-10.29 11.2-22.71 11.2-36.12 0-35.35-28.63-64-63.96-64-35.32 0-63.96 28.65-63.96 64 0 13.41 4.15 25.83 11.2 36.12l-130.5 313.41c-3.4 8.15.46 17.52 8.61 20.92l29.51 12.31c8.15 3.4 17.52-.46 20.91-8.61L244.96 384h150.07l49.2 118.15c3.4 8.16 12.76 12.01 20.91 8.61l29.51-12.31c8.15-3.4 12-12.77 8.61-20.92l-130.5-313.41zM271.62 320L320 203.81 368.38 320h-96.76z" ], + broom: [ 512, 512, [], "f51a", "M10.8 247.2C-.7 251.8-3.7 266.7 5 275.4l54.8 54.8 73.2-24.4-24.4 73.2 128 128c8.8 8.8 23.6 5.7 28.2-5.8l98.1-243.7-108.4-108.4-243.7 98.1zM507.3 27.3L484.7 4.7c-6.2-6.3-16.4-6.3-22.6 0L359.8 106.9l-40.4-40.4c-4.2-4.3-11.4-3-13.9 2.5l-27.2 58.6 106.1 106.1 58.6-27.2c5.4-2.5 6.7-9.7 2.5-13.9l-40.4-40.4L507.3 49.9c6.3-6.2 6.3-16.3 0-22.6z" ], + brush: [ 384, 512, [], "f55d", "M352 0H32C14.33 0 0 14.33 0 32v224h384V32c0-17.67-14.33-32-32-32zM0 320c0 35.35 28.66 64 64 64h64v64c0 35.35 28.66 64 64 64s64-28.65 64-64v-64h64c35.34 0 64-28.65 64-64v-32H0v32zm192 104c13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24s-24-10.75-24-24c0-13.26 10.75-24 24-24z" ], + bug: [ 512, 512, [], "f188", "M511.988 288.9c-.478 17.43-15.217 31.1-32.653 31.1H424v16c0 21.864-4.882 42.584-13.6 61.145l60.228 60.228c12.496 12.497 12.496 32.758 0 45.255-12.498 12.497-32.759 12.496-45.256 0l-54.736-54.736C345.886 467.965 314.351 480 280 480V236c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v244c-34.351 0-65.886-12.035-90.636-32.108l-54.736 54.736c-12.498 12.497-32.759 12.496-45.256 0-12.496-12.497-12.496-32.758 0-45.255l60.228-60.228C92.882 378.584 88 357.864 88 336v-16H32.666C15.23 320 .491 306.33.013 288.9-.484 270.816 14.028 256 32 256h56v-58.745l-46.628-46.628c-12.496-12.497-12.496-32.758 0-45.255 12.498-12.497 32.758-12.497 45.256 0L141.255 160h229.489l54.627-54.627c12.498-12.497 32.758-12.497 45.256 0 12.496 12.497 12.496 32.758 0 45.255L424 197.255V256h56c17.972 0 32.484 14.816 31.988 32.9zM257 0c-61.856 0-112 50.144-112 112h224C369 50.144 318.856 0 257 0z" ], + building: [ 448, 512, [], "f1ad", "M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z" ], + bullhorn: [ 576, 512, [], "f0a1", "M576 224c0-20.896-13.36-38.666-32-45.258V64c0-35.346-28.654-64-64-64-64.985 56-142.031 128-272 128H48c-26.51 0-48 21.49-48 48v96c0 26.51 21.49 48 48 48h43.263c-18.742 64.65 2.479 116.379 18.814 167.44 1.702 5.32 5.203 9.893 9.922 12.88 20.78 13.155 68.355 15.657 93.773 5.151 16.046-6.633 19.96-27.423 7.522-39.537-18.508-18.026-30.136-36.91-19.795-60.858a12.278 12.278 0 0 0-1.045-11.673c-16.309-24.679-3.581-62.107 28.517-72.752C346.403 327.887 418.591 395.081 480 448c35.346 0 64-28.654 64-64V269.258c18.64-6.592 32-24.362 32-45.258zm-96 139.855c-54.609-44.979-125.033-92.94-224-104.982v-69.747c98.967-12.042 169.391-60.002 224-104.982v279.711z" ], + bullseye: [ 512, 512, [], "f140", "M256 72c101.689 0 184 82.295 184 184 0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-101.689 82.295-184 184-184m0-64C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 184c35.29 0 64 28.71 64 64s-28.71 64-64 64-64-28.71-64-64 28.71-64 64-64m0-64c-70.692 0-128 57.308-128 128s57.308 128 128 128 128-57.308 128-128-57.308-128-128-128z" ], + burn: [ 384, 512, [], "f46a", "M192 0C79.7 101.3 0 220.9 0 300.5 0 425 79 512 192 512s192-87 192-211.5c0-79.9-80.2-199.6-192-300.5zm0 448c-56.5 0-96-39-96-94.8 0-13.5 4.6-61.5 96-161.2 91.4 99.7 96 147.7 96 161.2 0 55.8-39.5 94.8-96 94.8z" ], + bus: [ 512, 512, [], "f207", "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM112 400c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm16-112c-17.67 0-32-14.33-32-32V128c0-17.67 14.33-32 32-32h256c17.67 0 32 14.33 32 32v128c0 17.67-14.33 32-32 32H128zm272 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "bus-alt": [ 512, 512, [], "f55e", "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM160 72c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H168c-4.42 0-8-3.58-8-8V72zm-48 328c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm128-112H128c-17.67 0-32-14.33-32-32v-96c0-17.67 14.33-32 32-32h112v160zm32 0V128h112c17.67 0 32 14.33 32 32v96c0 17.67-14.33 32-32 32H272zm128 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + calculator: [ 448, 512, [], "f1ec", "M0 464V48C0 21.49 21.49 0 48 0h352c26.51 0 48 21.49 48 48v416c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm384-284V76c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v104c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12zM128 308v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm256 128V268c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-256 0v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm128-128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm0 128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z" ], + calendar: [ 448, 512, [], "f133", "M12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm436-44v-36c0-26.5-21.5-48-48-48h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v36c0 6.6 5.4 12 12 12h424c6.6 0 12-5.4 12-12z" ], + "calendar-alt": [ 448, 512, [], "f073", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm116 204c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40z" ], + "calendar-check": [ 448, 512, [], "f274", "M436 160H12c-6.627 0-12-5.373-12-12v-36c0-26.51 21.49-48 48-48h48V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h128V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h48c26.51 0 48 21.49 48 48v36c0 6.627-5.373 12-12 12zM12 192h424c6.627 0 12 5.373 12 12v260c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V204c0-6.627 5.373-12 12-12zm333.296 95.947l-28.169-28.398c-4.667-4.705-12.265-4.736-16.97-.068L194.12 364.665l-45.98-46.352c-4.667-4.705-12.266-4.736-16.971-.068l-28.397 28.17c-4.705 4.667-4.736 12.265-.068 16.97l82.601 83.269c4.667 4.705 12.265 4.736 16.97.068l142.953-141.805c4.705-4.667 4.736-12.265.068-16.97z" ], + "calendar-minus": [ 448, 512, [], "f272", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm304 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H132c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h184z" ], + "calendar-plus": [ 448, 512, [], "f271", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm316 140c0-6.6-5.4-12-12-12h-60v-60c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v60h-60c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h60v60c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-60h60c6.6 0 12-5.4 12-12v-40z" ], + "calendar-times": [ 448, 512, [], "f273", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm257.3 160l48.1-48.1c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0L224 306.7l-48.1-48.1c-4.7-4.7-12.3-4.7-17 0l-28.3 28.3c-4.7 4.7-4.7 12.3 0 17l48.1 48.1-48.1 48.1c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l48.1-48.1 48.1 48.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L269.3 352z" ], + camera: [ 512, 512, [], "f030", "M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z" ], + "camera-retro": [ 512, 512, [], "f083", "M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm0 32h106c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H38c-3.3 0-6-2.7-6-6V80c0-8.8 7.2-16 16-16zm426 96H38c-3.3 0-6-2.7-6-6v-36c0-3.3 2.7-6 6-6h138l30.2-45.3c1.1-1.7 3-2.7 5-2.7H464c8.8 0 16 7.2 16 16v74c0 3.3-2.7 6-6 6zM256 424c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88zm-48 104c-8.8 0-16-7.2-16-16 0-35.3 28.7-64 64-64 8.8 0 16 7.2 16 16s-7.2 16-16 16c-17.6 0-32 14.4-32 32 0 8.8-7.2 16-16 16z" ], + cannabis: [ 512, 512, [], "f55f", "M503.47 360.25c-1.56-.82-32.39-16.89-76.78-25.81 64.25-75.12 84.05-161.67 84.93-165.64 1.18-5.33-.44-10.9-4.3-14.77-3.03-3.04-7.12-4.7-11.32-4.7-1.14 0-2.29.12-3.44.38-3.88.85-86.54 19.59-160.58 79.76.01-1.46.01-2.93.01-4.4 0-118.79-59.98-213.72-62.53-217.7A15.973 15.973 0 0 0 256 0c-5.45 0-10.53 2.78-13.47 7.37-2.55 3.98-62.53 98.91-62.53 217.7 0 1.47.01 2.94.01 4.4-74.03-60.16-156.69-78.9-160.58-79.76-1.14-.25-2.29-.38-3.44-.38-4.2 0-8.29 1.66-11.32 4.7A15.986 15.986 0 0 0 .38 168.8c.88 3.97 20.68 90.52 84.93 165.64-44.39 8.92-75.21 24.99-76.78 25.81a16.003 16.003 0 0 0-.02 28.29c2.45 1.29 60.76 31.72 133.49 31.72 6.14 0 11.96-.1 17.5-.31-11.37 22.23-16.52 38.31-16.81 39.22-1.8 5.68-.29 11.89 3.91 16.11a16.019 16.019 0 0 0 16.1 3.99c1.83-.57 37.72-11.99 77.3-39.29V504c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8v-64.01c39.58 27.3 75.47 38.71 77.3 39.29a16.019 16.019 0 0 0 16.1-3.99c4.2-4.22 5.71-10.43 3.91-16.11-.29-.91-5.45-16.99-16.81-39.22 5.54.21 11.37.31 17.5.31 72.72 0 131.04-30.43 133.49-31.72 5.24-2.78 8.52-8.22 8.51-14.15-.01-5.94-3.29-11.39-8.53-14.15z" ], + capsules: [ 576, 512, [], "f46b", "M555.3 300.1L424.2 112.8C401.9 81 366.4 64 330.4 64c-22.6 0-45.5 6.7-65.5 20.7-19.7 13.8-33.7 32.8-41.5 53.8C220.5 79.2 172 32 112 32 50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V218.9c3.3 8.6 7.3 17.1 12.8 25L368 431.2c22.2 31.8 57.7 48.8 93.8 48.8 22.7 0 45.5-6.7 65.5-20.7 51.7-36.2 64.2-107.5 28-159.2zM160 256H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm194.8 44.9l-65.6-93.7c-7.7-11-10.7-24.4-8.3-37.6 2.3-13.2 9.7-24.8 20.7-32.5 8.5-6 18.5-9.1 28.8-9.1 16.5 0 31.9 8 41.3 21.5l65.6 93.7-82.5 57.7z" ], + car: [ 512, 512, [], "f1b9", "M499.991 168h-54.815l-7.854-20.944c-9.192-24.513-25.425-45.351-46.942-60.263S343.651 64 317.472 64H194.528c-26.18 0-51.391 7.882-72.908 22.793-21.518 14.912-37.75 35.75-46.942 60.263L66.824 168H12.009c-8.191 0-13.974 8.024-11.384 15.795l8 24A12 12 0 0 0 20.009 216h28.815l-.052.14C29.222 227.093 16 247.997 16 272v48c0 16.225 6.049 31.029 16 42.309V424c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-40h256v40c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-61.691c9.951-11.281 16-26.085 16-42.309v-48c0-24.003-13.222-44.907-32.772-55.86l-.052-.14h28.815a12 12 0 0 0 11.384-8.205l8-24c2.59-7.771-3.193-15.795-11.384-15.795zm-365.388 1.528C143.918 144.689 168 128 194.528 128h122.944c26.528 0 50.61 16.689 59.925 41.528L391.824 208H120.176l14.427-38.472zM88 328c-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32s48 30.327 48 48-30.327 16-48 16zm336 0c-17.673 0-48 1.673-48-16 0-17.673 30.327-48 48-48s32 14.327 32 32c0 17.673-14.327 32-32 32z" ], + "caret-down": [ 320, 512, [], "f0d7", "M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" ], + "caret-left": [ 192, 512, [], "f0d9", "M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z" ], + "caret-right": [ 192, 512, [], "f0da", "M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z" ], + "caret-square-down": [ 448, 512, [], "f150", "M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM92.5 220.5l123 123c4.7 4.7 12.3 4.7 17 0l123-123c7.6-7.6 2.2-20.5-8.5-20.5H101c-10.7 0-16.1 12.9-8.5 20.5z" ], + "caret-square-left": [ 448, 512, [], "f191", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM259.515 124.485l-123.03 123.03c-4.686 4.686-4.686 12.284 0 16.971l123.029 123.029c7.56 7.56 20.485 2.206 20.485-8.485V132.971c.001-10.691-12.925-16.045-20.484-8.486z" ], + "caret-square-right": [ 448, 512, [], "f152", "M48 32h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48zm140.485 355.515l123.029-123.029c4.686-4.686 4.686-12.284 0-16.971l-123.029-123.03c-7.56-7.56-20.485-2.206-20.485 8.485v246.059c0 10.691 12.926 16.045 20.485 8.486z" ], + "caret-square-up": [ 448, 512, [], "f151", "M0 432V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm355.515-140.485l-123.03-123.03c-4.686-4.686-12.284-4.686-16.971 0L92.485 291.515c-7.56 7.56-2.206 20.485 8.485 20.485h246.059c10.691 0 16.045-12.926 8.486-20.485z" ], + "caret-up": [ 320, 512, [], "f0d8", "M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z" ], + "cart-arrow-down": [ 576, 512, [], "f218", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z" ], + "cart-plus": [ 576, 512, [], "f217", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM408 168h-48v-40c0-8.837-7.163-16-16-16h-16c-8.837 0-16 7.163-16 16v40h-48c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h48v40c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-40h48c8.837 0 16-7.163 16-16v-16c0-8.837-7.163-16-16-16z" ], + certificate: [ 512, 512, [], "f0a3", "M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z" ], + chalkboard: [ 640, 512, [], "f51b", "M96 64h448v352h64V40c0-22.06-17.94-40-40-40H72C49.94 0 32 17.94 32 40v376h64V64zm528 384H480v-64H288v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" ], + "chalkboard-teacher": [ 640, 512, [], "f51c", "M208 352c-2.39 0-4.78.35-7.06 1.09C187.98 357.3 174.35 360 160 360c-14.35 0-27.98-2.7-40.95-6.91-2.28-.74-4.66-1.09-7.05-1.09C49.94 352-.33 402.48 0 464.62.14 490.88 21.73 512 48 512h224c26.27 0 47.86-21.12 48-47.38.33-62.14-49.94-112.62-112-112.62zm-48-32c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM592 0H208c-26.47 0-48 22.25-48 49.59V96c23.42 0 45.1 6.78 64 17.8V64h352v288h-64v-64H384v64h-76.24c19.1 16.69 33.12 38.73 39.69 64H592c26.47 0 48-22.25 48-49.59V49.59C640 22.25 618.47 0 592 0z" ], + "chart-area": [ 512, 512, [], "f1fe", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z" ], + "chart-bar": [ 512, 512, [], "f080", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zm-308-44v-72c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V204c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V108c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z" ], + "chart-line": [ 512, 512, [], "f201", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM456 96H344c-21.4 0-32.1 25.9-17 41l32.9 32.9-72 72.9-55.6-55.6c-4.7-4.7-12.2-4.7-16.9 0L96.4 305c-4.7 4.6-4.8 12.2-.2 16.9l28.5 29.4c4.7 4.8 12.4 4.9 17.1.1l82.1-82.1 55.5 55.5c4.7 4.7 12.3 4.7 17 0l109.2-109.2L439 249c15.1 15.1 41 4.4 41-17V120c0-13.3-10.7-24-24-24z" ], + "chart-pie": [ 576, 512, [], "f200", "M288 12.3V240h227.7c6.9 0 12.3-5.8 12-12.7-6.4-122.4-104.5-220.6-227-227-6.9-.3-12.7 5.1-12.7 12zM552.7 288c6.9 0 12.3 5.8 12 12.7-2.8 53.2-23.2 105.6-61.2 147.8-4.6 5.1-12.6 5.4-17.5.5L325 288h227.7zM401 433c4.8 4.8 4.7 12.8-.4 17.3-42.6 38.4-99 61.7-160.8 61.7C107.6 511.9-.2 403.8 0 271.5.2 143.4 100.8 38.9 227.3 32.3c6.9-.4 12.7 5.1 12.7 12V272l161 161z" ], + check: [ 512, 512, [], "f00c", "M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" ], + "check-circle": [ 512, 512, [], "f058", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z" ], + "check-double": [ 512, 512, [], "f560", "M504.5 171.95l-36.2-36.41c-10-10.05-26.21-10.05-36.2 0L192 377.02 79.9 264.28c-10-10.06-26.21-10.06-36.2 0L7.5 300.69c-10 10.05-10 26.36 0 36.41l166.4 167.36c10 10.06 26.21 10.06 36.2 0l294.4-296.09c10-10.06 10-26.36 0-36.42zM166.57 282.71c6.84 7.02 18.18 7.02 25.21.18L403.85 72.62c7.02-6.84 7.02-18.18.18-25.21L362.08 5.29c-6.84-7.02-18.18-7.02-25.21-.18L179.71 161.19l-68.23-68.77c-6.84-7.02-18.18-7.02-25.2-.18l-42.13 41.77c-7.02 6.84-7.02 18.18-.18 25.2l122.6 123.5z" ], + "check-square": [ 448, 512, [], "f14a", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z" ], + chess: [ 512, 512, [], "f439", "M199.821 217.633a6 6 0 0 1 6 6l-.001 20.766a6 6 0 0 1-6 6h-25.805c0 31.715-2.153 96.201 17.398 153.229H64.597C84.54 345.452 82.02 279.245 82.02 250.399H56.183a6 6 0 0 1-6-6l.002-20.766a6 6 0 0 1 6-6h143.636zM41.554 115.088l34.58 95.071h103.734l34.572-95.072c2.846-7.826-2.95-16.101-11.278-16.101H152v-30.22h21.57a6 6 0 0 0 6-6V40.383a6 6 0 0 0-6-6h-28.367V6a6 6 0 0 0-6-6H116.82a6 6 0 0 0-6 6v28.383H82.421a6 6 0 0 0-6 6v22.383a6 6 0 0 0 6 6H104v30.219H52.831c-8.328.001-14.124 8.276-11.277 16.103zM222.678 445.17v-28.067a6 6 0 0 0-6-6H39.322a6 6 0 0 0-6 6v28.067l-22.148 14.164a6 6 0 0 0-2.767 5.055V506a6 6 0 0 0 6 6h227.187a6 6 0 0 0 6-6v-41.612a6 6 0 0 0-2.767-5.055l-22.149-14.163zm90.578-144.225l24.88 16.963c.09 18.124-.167 63.904-11.905 114.522h147.526c-11.713-50.475-11.969-96.324-11.882-114.537l24.859-16.949a3.856 3.856 0 0 0 1.684-3.187v-69.901a3.857 3.857 0 0 0-3.857-3.857h-27.655a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.858-3.857h-52.918a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.857-3.857H315.43a3.857 3.857 0 0 0-3.857 3.857v69.901a3.855 3.855 0 0 0 1.683 3.188zm71.585 51.906c0-8.372 6.787-15.158 15.159-15.158s15.158 6.787 15.158 15.158v30.318h-30.317v-30.318zM504.62 470.059l-13.664-10.639v-15.552a3.857 3.857 0 0 0-3.857-3.857H312.915a3.857 3.857 0 0 0-3.857 3.857v15.552l-13.677 10.639a3.857 3.857 0 0 0-1.488 3.044v35.039a3.857 3.857 0 0 0 3.857 3.857h204.5a3.857 3.857 0 0 0 3.857-3.857v-35.04a3.859 3.859 0 0 0-1.487-3.043z" ], + "chess-bishop": [ 320, 512, [], "f43a", "M123.158 77.881C107.369 72.53 96 57.597 96 40c0-22.091 17.909-40 40-40h47.796c22.091 0 40 17.909 40 40 0 17.541-11.295 32.434-27.005 37.829 23.993 16.657 48.577 46.839 68.703 82.05L144.929 280.443a6 6 0 0 0 0 8.485l14.142 14.142a6 6 0 0 0 8.485 0L280.9 189.726c17.758 38.297 29.371 79.443 29.371 114.273 0 53.786-22.897 75.788-58.446 86.033V448H68.174v-57.97C32.631 379.784 9.739 357.781 9.739 304c0-78.029 58.281-187.766 113.419-226.119zM320 500v-24c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12z" ], + "chess-board": [ 512, 512, [], "f43c", "M256 256v64h-64v-64h64zm0-256h-64v64h64V0zm0 256h64v-64h-64v64zM384 0h-64v64h64V0zm0 512h64v-64h-64v64zm128-64v-64h-64v64h64zm-384 64h64v-64h-64v64zm0-512H64v64h64V0zm384 192v-64h-64v64h64zm0 128v-64h-64v64h64zM0 512h64v-64H0v64zM0 64v64h64V64H0zm0 128v64h64v-64H0zm0 128v64h64v-64H0zm256 192h64v-64h-64v64zm-64-128v64h64v-64h-64zm64-192v-64h-64v64h64zM64 384v64h64v-64H64zm64-128H64v64h64v-64zm256 128h64v-64h-64v64zM512 0h-64v64h64V0zM384 256h64v-64h-64v64zm0-192v64h64V64h-64zm-64 320v64h64v-64h-64zm-192-64v64h64v-64h-64zm128 0v64h64v-64h-64zm-64-128h-64v64h64v-64zm-64-64H64v64h64v-64zm192 192h64v-64h-64v64zM192 128V64h-64v64h64zm128 0V64h-64v64h64zm0 64h64v-64h-64v64z" ], + "chess-king": [ 448, 512, [], "f43f", "M416 476v24c0 6.627-5.373 12-12 12H44c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12zm-8.033-324H248v-48h50a6 6 0 0 0 6-6V62a6 6 0 0 0-6-6h-50V6a6 6 0 0 0-6-6h-36a6 6 0 0 0-6 6v50h-50a6 6 0 0 0-6 6v36a6 6 0 0 0 6 6h50v48H40.033c-27.574 0-46.879 27.244-37.738 53.259L87.582 448h272.836l85.287-242.741C454.846 179.244 435.541 152 407.967 152z" ], + "chess-knight": [ 384, 512, [], "f441", "M352 224v224H32v-46.557c0-30.302 17.12-58.003 44.223-71.554l57.243-28.622A48 48 0 0 0 160 258.334V208l-22.127 11.063a23.996 23.996 0 0 0-12.55 15.645l-11.835 47.338a12 12 0 0 1-7.185 8.231l-29.601 11.84a11.998 11.998 0 0 1-9.33-.176L7.126 275.167A12 12 0 0 1 0 264.201v-158.26c0-6.365 2.529-12.47 7.03-16.971L16 80 1.789 51.578A16.937 16.937 0 0 1 0 44c0-6.627 5.373-12 12-12h148c106.039 0 192 85.961 192 192zm20 240H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12zM52 128c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z" ], + "chess-pawn": [ 320, 512, [], "f443", "M264 448H56s60-42.743 60-176H84c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h40.209C95.721 210.56 76 181.588 76 148c0-46.392 37.608-84 84-84s84 37.608 84 84c0 33.588-19.721 62.56-48.209 76H236c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12h-32c0 133.257 60 176 60 176zm28 16H28c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h264c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12z" ], + "chess-queen": [ 512, 512, [], "f445", "M436 512H76c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12zM255.579 0c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zm204.568 154.634c-5.768-3.045-12.916-.932-16.082 4.77-8.616 15.516-22.747 37.801-44.065 37.801-28.714 0-30.625-19.804-31.686-57.542-.183-6.492-5.501-11.664-11.995-11.664h-41.006c-5.175 0-9.754 3.328-11.388 8.238-8.89 26.709-26.073 40.992-47.925 40.992s-39.034-14.283-47.925-40.992c-1.634-4.91-6.213-8.238-11.388-8.238h-41.005c-6.495 0-11.813 5.174-11.995 11.667-1.052 37.642-2.934 57.539-31.688 57.539-20.691 0-33.817-20.224-44.425-38.025-3.266-5.48-10.258-7.431-15.899-4.453l-39.179 20.679a12 12 0 0 0-5.51 15.145L112 448h288l105.014-257.448a12 12 0 0 0-5.51-15.145l-39.357-20.773z" ], + "chess-rook": [ 384, 512, [], "f447", "M81.241 215.027C80.957 258.92 77.411 348.076 48 448h287.982c-29.4-99.604-32.936-188.912-33.221-232.975l45.418-42.312a11.998 11.998 0 0 0 3.82-8.78V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v44h-48V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v44H96V44c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v119.932c0 3.33 1.384 6.51 3.82 8.78l45.421 42.315zM160 256c0-17.673 14.327-32 32-32 17.673 0 32 14.327 32 32v64.004h-64V256zm224 220v24c0 6.627-5.373 12-12 12H12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12z" ], + "chevron-circle-down": [ 512, 512, [], "f13a", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM273 369.9l135.5-135.5c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L256 285.1 154.4 183.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L239 369.9c9.4 9.4 24.6 9.4 34 0z" ], + "chevron-circle-left": [ 512, 512, [], "f137", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z" ], + "chevron-circle-right": [ 512, 512, [], "f138", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z" ], + "chevron-circle-up": [ 512, 512, [], "f139", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm231-113.9L103.5 277.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L256 226.9l101.6 101.6c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L273 142.1c-9.4-9.4-24.6-9.4-34 0z" ], + "chevron-down": [ 448, 512, [], "f078", "M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z" ], + "chevron-left": [ 320, 512, [], "f053", "M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z" ], + "chevron-right": [ 320, 512, [], "f054", "M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z" ], + "chevron-up": [ 448, 512, [], "f077", "M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z" ], + child: [ 384, 512, [], "f1ae", "M120 72c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.764-32.235 72-72 72s-72-32.236-72-72zm254.627 1.373c-12.496-12.497-32.758-12.497-45.254 0L242.745 160H141.254L54.627 73.373c-12.496-12.497-32.758-12.497-45.254 0-12.497 12.497-12.497 32.758 0 45.255L104 213.254V480c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V368h16v112c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V213.254l94.627-94.627c12.497-12.497 12.497-32.757 0-45.254z" ], + church: [ 640, 512, [], "f51d", "M464.46 246.68L352 179.2V128h48c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-48V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v48h-48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v51.2l-112.46 67.48A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.65-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.54A32.024 32.024 0 0 0 0 395.96zm620.61-29.42L512 320v192h112c8.84 0 16-7.16 16-16V395.96c0-12.8-7.63-24.37-19.39-29.42z" ], + circle: [ 512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z" ], + "circle-notch": [ 512, 512, [], "f1ce", "M288 39.056v16.659c0 10.804 7.281 20.159 17.686 23.066C383.204 100.434 440 171.518 440 256c0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-84.47 56.786-155.564 134.312-177.219C216.719 75.874 224 66.517 224 55.712V39.064c0-15.709-14.834-27.153-30.046-23.234C86.603 43.482 7.394 141.206 8.003 257.332c.72 137.052 111.477 246.956 248.531 246.667C393.255 503.711 504 392.788 504 256c0-115.633-79.14-212.779-186.211-240.236C302.678 11.889 288 23.456 288 39.056z" ], + clipboard: [ 384, 512, [], "f328", "M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z" ], + "clipboard-check": [ 384, 512, [], "f46c", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm121.2 231.8l-143 141.8c-4.7 4.7-12.3 4.6-17-.1l-82.6-83.3c-4.7-4.7-4.6-12.3.1-17L99.1 285c4.7-4.7 12.3-4.6 17 .1l46 46.4 106-105.2c4.7-4.7 12.3-4.6 17 .1l28.2 28.4c4.7 4.8 4.6 12.3-.1 17z" ], + "clipboard-list": [ 384, 512, [], "f46d", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM96 424c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm96-192c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm128 368c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z" ], + clock: [ 512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm57.1 350.1L224.9 294c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v137.7l63.5 46.2c5.4 3.9 6.5 11.4 2.6 16.8l-28.2 38.8c-3.9 5.3-11.4 6.5-16.8 2.6z" ], + clone: [ 512, 512, [], "f24d", "M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z" ], + "closed-captioning": [ 512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM218.1 287.7c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2.1 48 51.1 70.5 92.3 32.6zm190.4 0c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.5 56.9-172.7 32.1-172.7-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 222.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6z" ], + cloud: [ 640, 512, [], "f0c2", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z" ], + "cloud-download-alt": [ 640, 512, [], "f381", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z" ], + "cloud-upload-alt": [ 640, 512, [], "f382", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z" ], + cocktail: [ 576, 512, [], "f561", "M296 464h-56V338.78l168.74-168.73c15.52-15.52 4.53-42.05-17.42-42.05H24.68c-21.95 0-32.94 26.53-17.42 42.05L176 338.78V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM432 0c-62.61 0-115.35 40.2-135.18 96h52.54c16.65-28.55 47.27-48 82.64-48 52.93 0 96 43.06 96 96s-43.07 96-96 96c-14.04 0-27.29-3.2-39.32-8.64l-35.26 35.26C379.23 279.92 404.59 288 432 288c79.53 0 144-64.47 144-144S511.53 0 432 0z" ], + code: [ 640, 512, [], "f121", "M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z" ], + "code-branch": [ 384, 512, [], "f126", "M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z" ], + coffee: [ 640, 512, [], "f0f4", "M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z" ], + cog: [ 512, 512, [], "f013", "M444.788 291.1l42.616 24.599c4.867 2.809 7.126 8.618 5.459 13.985-11.07 35.642-29.97 67.842-54.689 94.586a12.016 12.016 0 0 1-14.832 2.254l-42.584-24.595a191.577 191.577 0 0 1-60.759 35.13v49.182a12.01 12.01 0 0 1-9.377 11.718c-34.956 7.85-72.499 8.256-109.219.007-5.49-1.233-9.403-6.096-9.403-11.723v-49.184a191.555 191.555 0 0 1-60.759-35.13l-42.584 24.595a12.016 12.016 0 0 1-14.832-2.254c-24.718-26.744-43.619-58.944-54.689-94.586-1.667-5.366.592-11.175 5.459-13.985L67.212 291.1a193.48 193.48 0 0 1 0-70.199l-42.616-24.599c-4.867-2.809-7.126-8.618-5.459-13.985 11.07-35.642 29.97-67.842 54.689-94.586a12.016 12.016 0 0 1 14.832-2.254l42.584 24.595a191.577 191.577 0 0 1 60.759-35.13V25.759a12.01 12.01 0 0 1 9.377-11.718c34.956-7.85 72.499-8.256 109.219-.007 5.49 1.233 9.403 6.096 9.403 11.723v49.184a191.555 191.555 0 0 1 60.759 35.13l42.584-24.595a12.016 12.016 0 0 1 14.832 2.254c24.718 26.744 43.619 58.944 54.689 94.586 1.667 5.366-.592 11.175-5.459 13.985L444.788 220.9a193.485 193.485 0 0 1 0 70.2zM336 256c0-44.112-35.888-80-80-80s-80 35.888-80 80 35.888 80 80 80 80-35.888 80-80z" ], + cogs: [ 640, 512, [], "f085", "M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z" ], + coins: [ 512, 512, [], "f51e", "M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z" ], + columns: [ 512, 512, [], "f0db", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z" ], + comment: [ 512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32z" ], + "comment-alt": [ 512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 9.8 11.2 15.5 19.1 9.7L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z" ], + "comment-dots": [ 512, 512, [], "f4ad", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + "comment-slash": [ 640, 512, [], "f4b3", "M64 240c0 49.6 21.4 95 57 130.7-12.6 50.3-54.3 95.2-54.8 95.8-2.2 2.3-2.8 5.7-1.5 8.7 1.3 2.9 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 27.4 0 53.7-3.6 78.4-10L72.9 186.4c-5.6 17.1-8.9 35-8.9 53.6zm569.8 218.1l-114.4-88.4C554.6 334.1 576 289.2 576 240c0-114.9-114.6-208-256-208-65.1 0-124.2 20.1-169.4 52.7L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z" ], + comments: [ 576, 512, [], "f086", "M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z" ], + "compact-disc": [ 496, 512, [], "f51f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 256H56c0-105.9 86.1-192 192-192v32c-88.2 0-160 71.8-160 160zm160 96c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" ], + compass: [ 512, 512, [], "f14e", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM307.446 120.844l-102.642 97.779a23.997 23.997 0 0 0-6.772 11.729l-33.359 137.779c-5.68 23.459 22.777 39.318 39.88 23.024l102.64-97.779a23.99 23.99 0 0 0 6.772-11.729l33.359-137.779c5.618-23.198-22.591-39.493-39.878-23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z" ], + compress: [ 448, 512, [], "f066", "M436 192H312c-13.3 0-24-10.7-24-24V44c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-276-24V44c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v84H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 300V344c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-84h84c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H312c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z" ], + "concierge-bell": [ 512, 512, [], "f562", "M288 130.54V112h16c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h16v18.54C115.49 146.11 32 239.18 32 352h448c0-112.82-83.49-205.89-192-221.46zM496 384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" ], + cookie: [ 512, 512, [], "f563", "M510.37 254.79l-12.08-76.26a132.493 132.493 0 0 0-37.16-72.95l-54.76-54.75c-19.73-19.72-45.18-32.7-72.71-37.05l-76.7-12.15c-27.51-4.36-55.69.11-80.52 12.76L107.32 49.6a132.25 132.25 0 0 0-57.79 57.8l-35.1 68.88a132.602 132.602 0 0 0-12.82 80.94l12.08 76.27a132.493 132.493 0 0 0 37.16 72.95l54.76 54.75a132.087 132.087 0 0 0 72.71 37.05l76.7 12.14c27.51 4.36 55.69-.11 80.52-12.75l69.12-35.21a132.302 132.302 0 0 0 57.79-57.8l35.1-68.87c12.71-24.96 17.2-53.3 12.82-80.96zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "cookie-bite": [ 512, 512, [], "f564", "M510.52 255.82c-69.97-.85-126.47-57.69-126.47-127.86-70.17 0-127-56.49-127.86-126.45-27.26-4.14-55.13.3-79.72 12.82l-69.13 35.22a132.221 132.221 0 0 0-57.79 57.81l-35.1 68.88a132.645 132.645 0 0 0-12.82 80.95l12.08 76.27a132.521 132.521 0 0 0 37.16 72.96l54.77 54.76a132.036 132.036 0 0 0 72.71 37.06l76.71 12.15c27.51 4.36 55.7-.11 80.53-12.76l69.13-35.21a132.273 132.273 0 0 0 57.79-57.81l35.1-68.88c12.56-24.64 17.01-52.58 12.91-79.91zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + copy: [ 448, 512, [], "f0c5", "M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z" ], + copyright: [ 512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm117.134 346.753c-1.592 1.867-39.776 45.731-109.851 45.731-84.692 0-144.484-63.26-144.484-145.567 0-81.303 62.004-143.401 143.762-143.401 66.957 0 101.965 37.315 103.422 38.904a12 12 0 0 1 1.238 14.623l-22.38 34.655c-4.049 6.267-12.774 7.351-18.234 2.295-.233-.214-26.529-23.88-61.88-23.88-46.116 0-73.916 33.575-73.916 76.082 0 39.602 25.514 79.692 74.277 79.692 38.697 0 65.28-28.338 65.544-28.625 5.132-5.565 14.059-5.033 18.508 1.053l24.547 33.572a12.001 12.001 0 0 1-.553 14.866z" ], + couch: [ 640, 512, [], "f4b8", "M160 224v64h320v-64c0-35.3 28.7-64 64-64h32c0-53-43-96-96-96H160c-53 0-96 43-96 96h32c35.3 0 64 28.7 64 64zm416-32h-32c-17.7 0-32 14.3-32 32v96H128v-96c0-17.7-14.3-32-32-32H64c-35.3 0-64 28.7-64 64 0 23.6 13 44 32 55.1V432c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-16h384v16c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V311.1c19-11.1 32-31.5 32-55.1 0-35.3-28.7-64-64-64z" ], + "credit-card": [ 576, 512, [], "f09d", "M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V256H0v176zm192-68c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-40zm-128 0c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM576 80v48H0V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48z" ], + crop: [ 512, 512, [], "f125", "M488 352h-40V109.25l59.31-59.31c6.25-6.25 6.25-16.38 0-22.63L484.69 4.69c-6.25-6.25-16.38-6.25-22.63 0L402.75 64H192v96h114.75L160 306.75V24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v264c0 13.25 10.75 24 24 24h232v-96H205.25L352 205.25V488c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z" ], + "crop-alt": [ 512, 512, [], "f565", "M488 352h-40V96c0-17.67-14.33-32-32-32H192v96h160v328c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24zM160 24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v256c0 17.67 14.33 32 32 32h224v-96H160V24z" ], + crosshairs: [ 512, 512, [], "f05b", "M500 224h-30.364C455.724 130.325 381.675 56.276 288 42.364V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v30.364C130.325 56.276 56.276 130.325 42.364 224H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h30.364C56.276 381.675 130.325 455.724 224 469.636V500c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-30.364C381.675 455.724 455.724 381.675 469.636 288H500c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zM288 404.634V364c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40.634C165.826 392.232 119.783 346.243 107.366 288H148c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40.634C119.768 165.826 165.757 119.783 224 107.366V148c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40.634C346.174 119.768 392.217 165.757 404.634 224H364c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40.634C392.232 346.174 346.243 392.217 288 404.634zM288 256c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z" ], + crow: [ 640, 512, [], "f520", "M544 32h-16.36C513.04 12.68 490.09 0 464 0c-44.18 0-80 35.82-80 80v20.98L12.09 393.57A30.216 30.216 0 0 0 0 417.74c0 22.46 23.64 37.07 43.73 27.03L165.27 384h96.49l44.41 120.1c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38L312.94 384H352c1.91 0 3.76-.23 5.66-.29l44.51 120.38c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38l-41.24-111.53C485.74 352.8 544 279.26 544 192v-80l96-16c0-35.35-42.98-64-96-64zm-80 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z" ], + crown: [ 640, 512, [], "f521", "M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.4 7.7-.8L128 416h384l72.3-192.8c2.5.4 5.1.8 7.7.8 26.5 0 48-21.5 48-48s-21.5-48-48-48z" ], + cube: [ 512, 512, [], "f1b2", "M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z" ], + cubes: [ 512, 512, [], "f1b3", "M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z" ], + cut: [ 448, 512, [], "f0c4", "M278.06 256L444.48 89.57c4.69-4.69 4.69-12.29 0-16.97-32.8-32.8-85.99-32.8-118.79 0L210.18 188.12l-24.86-24.86c4.31-10.92 6.68-22.81 6.68-35.26 0-53.02-42.98-96-96-96S0 74.98 0 128s42.98 96 96 96c4.54 0 8.99-.32 13.36-.93L142.29 256l-32.93 32.93c-4.37-.61-8.83-.93-13.36-.93-53.02 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96c0-12.45-2.37-24.34-6.68-35.26l24.86-24.86L325.69 439.4c32.8 32.8 85.99 32.8 118.79 0 4.69-4.68 4.69-12.28 0-16.97L278.06 256zM96 160c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32zm0 256c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z" ], + database: [ 448, 512, [], "f1c0", "M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z" ], + deaf: [ 512, 512, [], "f2a4", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm268.485-52.201L480.2 3.515c-4.687-4.686-12.284-4.686-16.971 0L376.2 90.544c-4.686 4.686-4.686 12.284 0 16.971l28.285 28.285c4.686 4.686 12.284 4.686 16.97 0l87.03-87.029c4.687-4.688 4.687-12.286 0-16.972zM168.97 314.745c-4.686-4.686-12.284-4.686-16.97 0L3.515 463.23c-4.686 4.686-4.686 12.284 0 16.971L31.8 508.485c4.687 4.686 12.284 4.686 16.971 0L197.256 360c4.686-4.686 4.686-12.284 0-16.971l-28.286-28.284z" ], + desktop: [ 576, 512, [], "f108", "M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z" ], + diagnoses: [ 640, 512, [], "f470", "M496 256c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm-176-80c48.5 0 88-39.5 88-88S368.5 0 320 0s-88 39.5-88 88 39.5 88 88 88zM59.8 364c10.2 15.3 29.3 17.8 42.9 9.8 16.2-9.6 56.2-31.7 105.3-48.6V416h224v-90.7c49.1 16.8 89.1 39 105.3 48.6 13.6 8 32.7 5.3 42.9-9.8l17.8-26.7c8.8-13.2 7.6-34.6-10-45.1-11.9-7.1-29.7-17-51.1-27.4-28.1 46.1-99.4 17.8-87.7-35.1C409.3 217.2 365.1 208 320 208c-57 0-112.9 14.5-160 32.2-.2 40.2-47.6 63.3-79.2 36-11.2 6-21.3 11.6-28.7 16-17.6 10.5-18.8 31.8-10 45.1L59.8 364zM368 344c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-160 8c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm512 192H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z" ], + dice: [ 640, 512, [], "f522", "M592 192H473.26c12.69 29.59 7.12 65.2-17 89.32L320 417.58V464c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48V240c0-26.51-21.49-48-48-48zM480 376c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm-46.37-186.7L258.7 14.37c-19.16-19.16-50.23-19.16-69.39 0L14.37 189.3c-19.16 19.16-19.16 50.23 0 69.39L189.3 433.63c19.16 19.16 50.23 19.16 69.39 0L433.63 258.7c19.16-19.17 19.16-50.24 0-69.4zM96 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z" ], + "dice-five": [ 448, 512, [], "f523", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "dice-four": [ 448, 512, [], "f524", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "dice-one": [ 448, 512, [], "f525", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM224 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "dice-six": [ 448, 512, [], "f526", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "dice-three": [ 448, 512, [], "f527", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "dice-two": [ 448, 512, [], "f528", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "digital-tachograph": [ 640, 512, [], "f566", "M608 96H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128c0-17.67-14.33-32-32-32zM304 352c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8zM72 288v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H80c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm40-64c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-48c0-8.84 7.16-16 16-16h208c8.84 0 16 7.16 16 16v48zm272 128c0 4.42-3.58 8-8 8H344c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8z" ], + divide: [ 448, 512, [], "f529", "M224 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm0-192c35.35 0 64-28.65 64-64s-28.65-64-64-64-64 28.65-64 64 28.65 64 64 64zm192 48H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" ], + dizzy: [ 496, 512, [], "f567", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-96 206.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L174.6 192l28.7 28.7c15.2 15.2-7.9 37.4-22.6 22.6L152 214.6zM248 416c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm147.3-195.3c15.2 15.2-7.9 37.4-22.6 22.6L344 214.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L366.6 192l28.7 28.7z" ], + dna: [ 448, 512, [], "f471", "M.1 494.1c-1.1 9.5 6.3 17.8 15.9 17.8l32.3.1c8.1 0 14.9-5.9 16-13.9.7-4.9 1.8-11.1 3.4-18.1H380c1.6 6.9 2.9 13.2 3.5 18.1 1.1 8 7.9 14 16 13.9l32.3-.1c9.6 0 17.1-8.3 15.9-17.8-4.6-37.9-25.6-129-118.9-207.7-17.6 12.4-37.1 24.2-58.5 35.4 6.2 4.6 11.4 9.4 17 14.2H159.7c21.3-18.1 47-35.6 78.7-51.4C410.5 199.1 442.1 65.8 447.9 17.9 449 8.4 441.6.1 432 .1L399.6 0c-8.1 0-14.9 5.9-16 13.9-.7 4.9-1.8 11.1-3.4 18.1H67.8c-1.6-7-2.7-13.1-3.4-18.1-1.1-8-7.9-14-16-13.9L16.1.1C6.5.1-1 8.4.1 17.9 5.3 60.8 31.4 171.8 160 256 31.5 340.2 5.3 451.2.1 494.1zM224 219.6c-25.1-13.7-46.4-28.4-64.3-43.6h128.5c-17.8 15.2-39.1 30-64.2 43.6zM355.1 96c-5.8 10.4-12.8 21.1-21 32H114c-8.3-10.9-15.3-21.6-21-32h262.1zM92.9 416c5.8-10.4 12.8-21.1 21-32h219.4c8.3 10.9 15.4 21.6 21.2 32H92.9z" ], + "dollar-sign": [ 288, 512, [], "f155", "M209.2 233.4l-108-31.6C88.7 198.2 80 186.5 80 173.5c0-16.3 13.2-29.5 29.5-29.5h66.3c12.2 0 24.2 3.7 34.2 10.5 6.1 4.1 14.3 3.1 19.5-2l34.8-34c7.1-6.9 6.1-18.4-1.8-24.5C238 74.8 207.4 64.1 176 64V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C45.8 64-5.4 118.7.5 183.6c4.2 46.1 39.4 83.6 83.8 96.6l102.5 30c12.5 3.7 21.2 15.3 21.2 28.3 0 16.3-13.2 29.5-29.5 29.5h-66.3C100 368 88 364.3 78 357.5c-6.1-4.1-14.3-3.1-19.5 2l-34.8 34c-7.1 6.9-6.1 18.4 1.8 24.5 24.5 19.2 55.1 29.9 86.5 30v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48.2c46.6-.9 90.3-28.6 105.7-72.7 21.5-61.6-14.6-124.8-72.5-141.7z" ], + dolly: [ 576, 512, [], "f472", "M294.2 277.7c18 5 34.7 13.4 49.5 24.7l161.5-53.8c8.4-2.8 12.9-11.9 10.1-20.2L454.9 47.2c-2.8-8.4-11.9-12.9-20.2-10.1l-61.1 20.4 33.1 99.4L346 177l-33.1-99.4-61.6 20.5c-8.4 2.8-12.9 11.9-10.1 20.2l53 159.4zm281 48.7L565 296c-2.8-8.4-11.9-12.9-20.2-10.1l-213.5 71.2c-17.2-22-43.6-36.4-73.5-37L158.4 21.9C154 8.8 141.8 0 128 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h88.9l92.2 276.7c-26.1 20.4-41.7 53.6-36 90.5 6.1 39.4 37.9 72.3 77.3 79.2 60.2 10.7 112.3-34.8 113.4-92.6l213.3-71.2c8.3-2.8 12.9-11.8 10.1-20.2zM256 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z" ], + "dolly-flatbed": [ 640, 512, [], "f474", "M208 320h384c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H448v128l-48-32-48 32V32H208c-8.8 0-16 7.2-16 16v256c0 8.8 7.2 16 16 16zm416 64H128V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h82.9c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H451c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H624c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z" ], + donate: [ 512, 512, [], "f4b9", "M256 416c114.9 0 208-93.1 208-208S370.9 0 256 0 48 93.1 48 208s93.1 208 208 208zM233.8 97.4V80.6c0-9.2 7.4-16.6 16.6-16.6h11.1c9.2 0 16.6 7.4 16.6 16.6v17c15.5.8 30.5 6.1 43 15.4 5.6 4.1 6.2 12.3 1.2 17.1L306 145.6c-3.8 3.7-9.5 3.8-14 1-5.4-3.4-11.4-5.1-17.8-5.1h-38.9c-9 0-16.3 8.2-16.3 18.3 0 8.2 5 15.5 12.1 17.6l62.3 18.7c25.7 7.7 43.7 32.4 43.7 60.1 0 34-26.4 61.5-59.1 62.4v16.8c0 9.2-7.4 16.6-16.6 16.6h-11.1c-9.2 0-16.6-7.4-16.6-16.6v-17c-15.5-.8-30.5-6.1-43-15.4-5.6-4.1-6.2-12.3-1.2-17.1l16.3-15.5c3.8-3.7 9.5-3.8 14-1 5.4 3.4 11.4 5.1 17.8 5.1h38.9c9 0 16.3-8.2 16.3-18.3 0-8.2-5-15.5-12.1-17.6l-62.3-18.7c-25.7-7.7-43.7-32.4-43.7-60.1.1-34 26.4-61.5 59.1-62.4zM480 352h-32.5c-19.6 26-44.6 47.7-73 64h63.8c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8h63.8c-28.4-16.3-53.3-38-73-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32z" ], + "door-closed": [ 640, 512, [], "f52a", "M624 448H512V50.8C512 22.78 490.47 0 464 0H175.99c-26.47 0-48 22.78-48 50.8V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM415.99 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32c.01 17.67-14.32 32-32 32z" ], + "door-open": [ 640, 512, [], "f52b", "M624 448h-80V113.45C544 86.19 522.47 64 496 64H384v64h96v384h144c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM312.24 1.01l-192 49.74C105.99 54.44 96 67.7 96 82.92V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h336V33.18c0-21.58-19.56-37.41-39.76-32.17zM264 288c-13.25 0-24-14.33-24-32s10.75-32 24-32 24 14.33 24 32-10.75 32-24 32z" ], + "dot-circle": [ 512, 512, [], "f192", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z" ], + dove: [ 512, 512, [], "f4ba", "M288 167.2v-28.1c-28.2-36.3-47.1-79.3-54.1-125.2-2.1-13.5-19-18.8-27.8-8.3-21.1 24.9-37.7 54.1-48.9 86.5 34.2 38.3 80 64.6 130.8 75.1zM400 64c-44.2 0-80 35.9-80 80.1v59.4C215.6 197.3 127 133 87 41.8c-5.5-12.5-23.2-13.2-29-.9C41.4 76 32 115.2 32 156.6c0 70.8 34.1 136.9 85.1 185.9 13.2 12.7 26.1 23.2 38.9 32.8l-143.9 36C1.4 414-3.4 426.4 2.6 435.7 20 462.6 63 508.2 155.8 512c8 .3 16-2.6 22.1-7.9l65.2-56.1H320c88.4 0 160-71.5 160-159.9V128l32-64H400zm0 96.1c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z" ], + download: [ 512, 512, [], "f019", "M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z" ], + "drafting-compass": [ 512, 512, [], "f568", "M457.01 344.42c-25.05 20.33-52.63 37.18-82.54 49.05l54.38 94.19 53.95 23.04c9.81 4.19 20.89-2.21 22.17-12.8l7.02-58.25-54.98-95.23zm42.49-94.56c4.86-7.67 1.89-17.99-6.05-22.39l-28.07-15.57c-7.48-4.15-16.61-1.46-21.26 5.72C403.01 281.15 332.25 320 256 320c-23.93 0-47.23-4.25-69.41-11.53l67.36-116.68c.7.02 1.34.21 2.04.21s1.35-.19 2.04-.21l51.09 88.5c31.23-8.96 59.56-25.75 82.61-48.92l-51.79-89.71C347.39 128.03 352 112.63 352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96c0 16.63 4.61 32.03 12.05 45.66l-68.3 118.31c-12.55-11.61-23.96-24.59-33.68-39-4.79-7.1-13.97-9.62-21.38-5.33l-27.75 16.07c-7.85 4.54-10.63 14.9-5.64 22.47 15.57 23.64 34.69 44.21 55.98 62.02L0 439.66l7.02 58.25c1.28 10.59 12.36 16.99 22.17 12.8l53.95-23.04 70.8-122.63C186.13 377.28 220.62 384 256 384c99.05 0 190.88-51.01 243.5-134.14zM256 64c17.67 0 32 14.33 32 32s-14.33 32-32 32-32-14.33-32-32 14.33-32 32-32z" ], + drum: [ 576, 512, [], "f569", "M458.08 120.88l102.39-61.43c15.16-9.09 20.06-28.75 10.97-43.91C562.34.39 542.7-4.53 527.53 4.57l-160.69 96.41A629.32 629.32 0 0 0 288 96C128.94 96 0 153.31 0 224v160.83c0 30.46 24.03 58.4 64 80.37v-96.37c0-17.6 14.4-32 32-32s32 14.4 32 32v122.41c37.4 11.13 81 18.44 128 20.75V400.84c0-17.6 14.4-32 32-32s32 14.4 32 32V512c47-2.31 90.6-9.62 128-20.75V368.84c0-17.6 14.4-32 32-32s32 14.4 32 32v96.37c39.97-21.97 64-49.91 64-80.37V224.01c-.01-42.38-46.54-79.84-117.92-103.13zM288 304c-132.55 0-240-35.82-240-80s107.45-80 240-80c2.34 0 4.62.1 6.94.12l-87.41 52.44c-15.16 9.09-20.06 28.75-10.97 43.91 9.56 15.93 29.51 19.61 43.91 10.97l162.71-97.62C477.55 167.41 528 193.74 528 224.01 528 268.19 420.54 304 288 304z" ], + "drum-steelpan": [ 576, 512, [], "f56a", "M288 32C128.94 32 0 89.31 0 160v192c0 70.69 128.94 128 288 128s288-57.31 288-128V160c0-70.69-128.94-128-288-128zm-82.99 158.36c-4.45 16.61-14.54 30.57-28.31 40.48C100.23 217.46 48 190.78 48 160c0-30.16 50.11-56.39 124.04-70.03l25.6 44.34c9.86 17.09 12.48 36.99 7.37 56.05zM288 240c-21.08 0-41.41-1-60.89-2.7 8.06-26.13 32.15-45.3 60.89-45.3s52.83 19.17 60.89 45.3C329.41 239 309.08 240 288 240zm64-144c0 35.29-28.71 64-64 64s-64-28.71-64-64V82.96c20.4-1.88 41.8-2.96 64-2.96s43.6 1.08 64 2.96V96zm46.93 134.9c-13.81-9.91-23.94-23.9-28.4-40.54-5.11-19.06-2.49-38.96 7.38-56.04l25.65-44.42C477.72 103.5 528 129.79 528 160c0 30.83-52.4 57.54-129.07 70.9z" ], + dumbbell: [ 640, 512, [], "f44b", "M104 96H56c-13.3 0-24 10.7-24 24v104H8c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h24v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm528 128h-24V120c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v272c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h24c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM456 32h-48c-13.3 0-24 10.7-24 24v168H256V56c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v400c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h128v168c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24z" ], + edit: [ 576, 512, [], "f044", "M402.6 83.2l90.2 90.2c3.8 3.8 3.8 10 0 13.8L274.4 405.6l-92.8 10.3c-12.4 1.4-22.9-9.1-21.5-21.5l10.3-92.8L388.8 83.2c3.8-3.8 10-3.8 13.8 0zm162-22.9l-48.8-48.8c-15.2-15.2-39.9-15.2-55.2 0l-35.4 35.4c-3.8 3.8-3.8 10 0 13.8l90.2 90.2c3.8 3.8 10 3.8 13.8 0l35.4-35.4c15.2-15.3 15.2-40 0-55.2zM384 346.2V448H64V128h229.8c3.2 0 6.2-1.3 8.5-3.5l40-40c7.6-7.6 2.2-20.5-8.5-20.5H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V306.2c0-10.7-12.9-16-20.5-8.5l-40 40c-2.2 2.3-3.5 5.3-3.5 8.5z" ], + eject: [ 448, 512, [], "f052", "M448 384v64c0 17.673-14.327 32-32 32H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h384c17.673 0 32 14.327 32 32zM48.053 320h351.886c41.651 0 63.581-49.674 35.383-80.435L259.383 47.558c-19.014-20.743-51.751-20.744-70.767 0L12.67 239.565C-15.475 270.268 6.324 320 48.053 320z" ], + "ellipsis-h": [ 512, 512, [], "f141", "M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z" ], + "ellipsis-v": [ 192, 512, [], "f142", "M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" ], + envelope: [ 512, 512, [], "f0e0", "M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z" ], + "envelope-open": [ 512, 512, [], "f2b6", "M512 464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V200.724a48 48 0 0 1 18.387-37.776c24.913-19.529 45.501-35.365 164.2-121.511C199.412 29.17 232.797-.347 256 .003c23.198-.354 56.596 29.172 73.413 41.433 118.687 86.137 139.303 101.995 164.2 121.512A48 48 0 0 1 512 200.724V464zm-65.666-196.605c-2.563-3.728-7.7-4.595-11.339-1.907-22.845 16.873-55.462 40.705-105.582 77.079-16.825 12.266-50.21 41.781-73.413 41.43-23.211.344-56.559-29.143-73.413-41.43-50.114-36.37-82.734-60.204-105.582-77.079-3.639-2.688-8.776-1.821-11.339 1.907l-9.072 13.196a7.998 7.998 0 0 0 1.839 10.967c22.887 16.899 55.454 40.69 105.303 76.868 20.274 14.781 56.524 47.813 92.264 47.573 35.724.242 71.961-32.771 92.263-47.573 49.85-36.179 82.418-59.97 105.303-76.868a7.998 7.998 0 0 0 1.839-10.967l-9.071-13.196z" ], + "envelope-square": [ 448, 512, [], "f199", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM178.117 262.104C87.429 196.287 88.353 196.121 64 177.167V152c0-13.255 10.745-24 24-24h272c13.255 0 24 10.745 24 24v25.167c-24.371 18.969-23.434 19.124-114.117 84.938-10.5 7.655-31.392 26.12-45.883 25.894-14.503.218-35.367-18.227-45.883-25.895zM384 217.775V360c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V217.775c13.958 10.794 33.329 25.236 95.303 70.214 14.162 10.341 37.975 32.145 64.694 32.01 26.887.134 51.037-22.041 64.72-32.025 61.958-44.965 81.325-59.406 95.283-70.199z" ], + equals: [ 448, 512, [], "f52c", "M416 304H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32zm0-192H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" ], + eraser: [ 512, 512, [], "f12d", "M497.941 273.941c18.745-18.745 18.745-49.137 0-67.882l-160-160c-18.745-18.745-49.136-18.746-67.883 0l-256 256c-18.745 18.745-18.745 49.137 0 67.882l96 96A48.004 48.004 0 0 0 144 480h356c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H355.883l142.058-142.059zm-302.627-62.627l137.373 137.373L265.373 416H150.628l-80-80 124.686-124.686z" ], + "euro-sign": [ 320, 512, [], "f153", "M310.706 413.765c-1.314-6.63-7.835-10.872-14.424-9.369-10.692 2.439-27.422 5.413-45.426 5.413-56.763 0-101.929-34.79-121.461-85.449h113.689a12 12 0 0 0 11.708-9.369l6.373-28.36c1.686-7.502-4.019-14.631-11.708-14.631H115.22c-1.21-14.328-1.414-28.287.137-42.245H261.95a12 12 0 0 0 11.723-9.434l6.512-29.755c1.638-7.484-4.061-14.566-11.723-14.566H130.184c20.633-44.991 62.69-75.03 117.619-75.03 14.486 0 28.564 2.25 37.851 4.145 6.216 1.268 12.347-2.498 14.002-8.623l11.991-44.368c1.822-6.741-2.465-13.616-9.326-14.917C290.217 34.912 270.71 32 249.635 32 152.451 32 74.03 92.252 45.075 176H12c-6.627 0-12 5.373-12 12v29.755c0 6.627 5.373 12 12 12h21.569c-1.009 13.607-1.181 29.287-.181 42.245H12c-6.627 0-12 5.373-12 12v28.36c0 6.627 5.373 12 12 12h30.114C67.139 414.692 145.264 480 249.635 480c26.301 0 48.562-4.544 61.101-7.788 6.167-1.595 10.027-7.708 8.788-13.957l-8.818-44.49z" ], + "exchange-alt": [ 512, 512, [], "f362", "M0 168v-16c0-13.255 10.745-24 24-24h360V80c0-21.367 25.899-32.042 40.971-16.971l80 80c9.372 9.373 9.372 24.569 0 33.941l-80 80C409.956 271.982 384 261.456 384 240v-48H24c-13.255 0-24-10.745-24-24zm488 152H128v-48c0-21.314-25.862-32.08-40.971-16.971l-80 80c-9.372 9.373-9.372 24.569 0 33.941l80 80C102.057 463.997 128 453.437 128 432v-48h360c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z" ], + exclamation: [ 192, 512, [], "f12a", "M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z" ], + "exclamation-circle": [ 512, 512, [], "f06a", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z" ], + "exclamation-triangle": [ 576, 512, [], "f071", "M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z" ], + expand: [ 448, 512, [], "f065", "M0 180V56c0-13.3 10.7-24 24-24h124c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H64v84c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12zM288 44v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V56c0-13.3-10.7-24-24-24H300c-6.6 0-12 5.4-12 12zm148 276h-40c-6.6 0-12 5.4-12 12v84h-84c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24V332c0-6.6-5.4-12-12-12zM160 468v-40c0-6.6-5.4-12-12-12H64v-84c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v124c0 13.3 10.7 24 24 24h124c6.6 0 12-5.4 12-12z" ], + "expand-arrows-alt": [ 448, 512, [], "f31e", "M448.1 344v112c0 13.3-10.7 24-24 24h-112c-21.4 0-32.1-25.9-17-41l36.2-36.2L224 295.6 116.8 402.9 153 439c15.1 15.1 4.4 41-17 41H24c-13.3 0-24-10.7-24-24V344c0-21.4 25.9-32.1 41-17l36.2 36.2L184.5 256 77.2 148.7 41 185c-15.1 15.1-41 4.4-41-17V56c0-13.3 10.7-24 24-24h112c21.4 0 32.1 25.9 17 41l-36.2 36.2L224 216.4l107.3-107.3L295.1 73c-15.1-15.1-4.4-41 17-41h112c13.3 0 24 10.7 24 24v112c0 21.4-25.9 32.1-41 17l-36.2-36.2L263.6 256l107.3 107.3 36.2-36.2c15.1-15.2 41-4.5 41 16.9z" ], + "external-link-alt": [ 576, 512, [], "f35d", "M576 24v127.984c0 21.461-25.96 31.98-40.971 16.971l-35.707-35.709-243.523 243.523c-9.373 9.373-24.568 9.373-33.941 0l-22.627-22.627c-9.373-9.373-9.373-24.569 0-33.941L442.756 76.676l-35.703-35.705C391.982 25.9 402.656 0 424.024 0H552c13.255 0 24 10.745 24 24zM407.029 270.794l-16 16A23.999 23.999 0 0 0 384 303.765V448H64V128h264a24.003 24.003 0 0 0 16.97-7.029l16-16C376.089 89.851 365.381 64 344 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V287.764c0-21.382-25.852-32.09-40.971-16.97z" ], + "external-link-square-alt": [ 448, 512, [], "f360", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-88 16H248.029c-21.313 0-32.08 25.861-16.971 40.971l31.984 31.987L67.515 364.485c-4.686 4.686-4.686 12.284 0 16.971l31.029 31.029c4.687 4.686 12.285 4.686 16.971 0l195.526-195.526 31.988 31.991C358.058 263.977 384 253.425 384 231.979V120c0-13.255-10.745-24-24-24z" ], + eye: [ 576, 512, [], "f06e", "M569.354 231.631C512.969 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-75.162 0-136-60.827-136-136 0-75.162 60.826-136 136-136 75.162 0 136 60.826 136 136 0 75.162-60.826 136-136 136zm104-136c0 57.438-46.562 104-104 104s-104-46.562-104-104c0-17.708 4.431-34.379 12.236-48.973l-.001.032c0 23.651 19.173 42.823 42.824 42.823s42.824-19.173 42.824-42.823c0-23.651-19.173-42.824-42.824-42.824l-.032.001C253.621 156.431 270.292 152 288 152c57.438 0 104 46.562 104 104z" ], + "eye-dropper": [ 512, 512, [], "f1fb", "M50.75 333.25c-12 12-18.75 28.28-18.75 45.26V424L0 480l32 32 56-32h45.49c16.97 0 33.25-6.74 45.25-18.74l126.64-126.62-128-128L50.75 333.25zM483.88 28.12c-37.47-37.5-98.28-37.5-135.75 0l-77.09 77.09-13.1-13.1c-9.44-9.44-24.65-9.31-33.94 0l-40.97 40.97c-9.37 9.37-9.37 24.57 0 33.94l161.94 161.94c9.44 9.44 24.65 9.31 33.94 0L419.88 288c9.37-9.37 9.37-24.57 0-33.94l-13.1-13.1 77.09-77.09c37.51-37.48 37.51-98.26.01-135.75z" ], + "eye-slash": [ 576, 512, [], "f070", "M286.693 391.984l32.579 46.542A333.958 333.958 0 0 1 288 440C168.19 440 63.031 376.051 6.646 280.369a47.999 47.999 0 0 1 0-48.739c24.023-40.766 56.913-75.775 96.024-102.537l57.077 81.539C154.736 224.82 152 240.087 152 256c0 74.736 60.135 135.282 134.693 135.984zm282.661-111.615c-31.667 53.737-78.747 97.46-135.175 125.475l.011.015 41.47 59.2c7.6 10.86 4.96 25.82-5.9 33.42l-13.11 9.18c-10.86 7.6-25.82 4.96-33.42-5.9L100.34 46.94c-7.6-10.86-4.96-25.82 5.9-33.42l13.11-9.18c10.86-7.6 25.82-4.96 33.42 5.9l51.038 72.617C230.68 75.776 258.905 72 288 72c119.81 0 224.969 63.949 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM424 256c0-75.174-60.838-136-136-136-17.939 0-35.056 3.473-50.729 9.772l19.299 27.058c25.869-8.171 55.044-6.163 80.4 7.41h-.03c-23.65 0-42.82 19.17-42.82 42.82 0 23.626 19.147 42.82 42.82 42.82 23.65 0 42.82-19.17 42.82-42.82v-.03c18.462 34.49 16.312 77.914-8.25 110.95v.01l19.314 27.061C411.496 321.2 424 290.074 424 256zM262.014 356.727l-77.53-110.757c-5.014 52.387 29.314 98.354 77.53 110.757z" ], + "fast-backward": [ 512, 512, [], "f049", "M0 436V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v151.9L235.5 71.4C256.1 54.3 288 68.6 288 96v131.9L459.5 71.4C480.1 54.3 512 68.6 512 96v320c0 27.4-31.9 41.7-52.5 24.6L288 285.3V416c0 27.4-31.9 41.7-52.5 24.6L64 285.3V436c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12z" ], + "fast-forward": [ 512, 512, [], "f050", "M512 76v360c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V284.1L276.5 440.6c-20.6 17.2-52.5 2.8-52.5-24.6V284.1L52.5 440.6C31.9 457.8 0 443.4 0 416V96c0-27.4 31.9-41.7 52.5-24.6L224 226.8V96c0-27.4 31.9-41.7 52.5-24.6L448 226.8V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12z" ], + fax: [ 512, 512, [], "f1ac", "M128 144v320c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V144c0-26.51 21.49-48 48-48h32c26.51 0 48 21.49 48 48zm384 64v256c0 26.51-21.49 48-48 48H192c-26.51 0-48-21.49-48-48V40c0-22.091 17.909-40 40-40h207.432a39.996 39.996 0 0 1 28.284 11.716l48.569 48.569A39.999 39.999 0 0 1 480 88.568v74.174c18.641 6.591 32 24.36 32 45.258zm-320-16h240V96h-24c-13.203 0-24-10.797-24-24V48H192v144zm96 204c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm128 128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40z" ], + feather: [ 512, 512, [], "f52d", "M467.14 44.84c-62.55-62.48-161.67-64.78-252.28 25.73-78.61 78.52-60.98 60.92-85.75 85.66-60.46 60.39-70.39 150.83-63.64 211.17l178.44-178.25c6.26-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.6 9.37 33.98 0l66.1-66.03C159.42 454.65 279 457.11 353.95 384h-98.19l147.57-49.14c49.99-49.93 36.38-36.18 46.31-46.86h-97.78l131.54-43.8c45.44-74.46 34.31-148.84-16.26-199.36z" ], + "feather-alt": [ 512, 512, [], "f56b", "M512 0C460.22 3.56 96.44 38.2 71.01 287.61c-3.09 26.66-4.84 53.44-5.99 80.24l178.87-178.69c6.25-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.59 9.37 33.98 0l57.13-57.07c42.09-.14 84.15-2.53 125.96-7.36 53.48-5.44 97.02-26.47 132.58-56.54H255.74l146.79-48.88c11.25-14.89 21.37-30.71 30.45-47.12h-81.14l106.54-53.21C500.29 132.86 510.19 26.26 512 0z" ], + female: [ 256, 512, [], "f182", "M128 0c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64S92.654 0 128 0m119.283 354.179l-48-192A24 24 0 0 0 176 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H80a24 24 0 0 0-23.283 18.179l-48 192C4.935 369.305 16.383 384 32 384h56v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V384h56c15.591 0 27.071-14.671 23.283-29.821z" ], + "fighter-jet": [ 640, 512, [], "f0fb", "M544 224l-128-16-48-16h-24L227.158 44h39.509C278.333 44 288 41.375 288 38s-9.667-6-21.333-6H152v12h16v164h-48l-66.667-80H18.667L8 138.667V208h8v16h48v2.666l-64 8v42.667l64 8V288H16v16H8v69.333L18.667 384h34.667L120 304h48v164h-16v12h114.667c11.667 0 21.333-2.625 21.333-6s-9.667-6-21.333-6h-39.509L344 320h24l48-16 128-16c96-21.333 96-26.583 96-32 0-5.417 0-10.667-96-32z" ], + file: [ 384, 512, [], "f15b", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + "file-alt": [ 384, 512, [], "f15c", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + "file-archive": [ 384, 512, [], "f1c6", "M224 136V0h-63.6v32h-32V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM95.9 32h32v32h-32V32zm32.3 384c-33.2 0-58-30.4-51.4-62.9L96.4 256v-32h32v-32h-32v-32h32v-32h-32V96h32V64h32v32h-32v32h32v32h-32v32h32v32h-32v32h22.1c5.7 0 10.7 4.1 11.8 9.7l17.3 87.7c6.4 32.4-18.4 62.6-51.4 62.6zm32.7-53c0 14.9-14.5 27-32.4 27S96 378 96 363c0-14.9 14.5-27 32.4-27s32.5 12.1 32.5 27zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + "file-audio": [ 384, 512, [], "f1c7", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + "file-code": [ 384, 512, [], "f1c9", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zM123.206 400.505a5.4 5.4 0 0 1-7.633.246l-64.866-60.812a5.4 5.4 0 0 1 0-7.879l64.866-60.812a5.4 5.4 0 0 1 7.633.246l19.579 20.885a5.4 5.4 0 0 1-.372 7.747L101.65 336l40.763 35.874a5.4 5.4 0 0 1 .372 7.747l-19.579 20.884zm51.295 50.479l-27.453-7.97a5.402 5.402 0 0 1-3.681-6.692l61.44-211.626a5.402 5.402 0 0 1 6.692-3.681l27.452 7.97a5.4 5.4 0 0 1 3.68 6.692l-61.44 211.626a5.397 5.397 0 0 1-6.69 3.681zm160.792-111.045l-64.866 60.812a5.4 5.4 0 0 1-7.633-.246l-19.58-20.885a5.4 5.4 0 0 1 .372-7.747L284.35 336l-40.763-35.874a5.4 5.4 0 0 1-.372-7.747l19.58-20.885a5.4 5.4 0 0 1 7.633-.246l64.866 60.812a5.4 5.4 0 0 1-.001 7.879z" ], + "file-contract": [ 384, 512, [], "f56c", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm192.81 248H304c8.84 0 16 7.16 16 16s-7.16 16-16 16h-47.19c-16.45 0-31.27-9.14-38.64-23.86-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34a15.986 15.986 0 0 1-14.31 8.84c-.38 0-.75-.02-1.14-.05-6.45-.45-12-4.75-14.03-10.89L144 354.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.77-16.19 54.05-9.7 66 14.16 2.02 4.06 5.96 6.5 10.16 6.5zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" ], + "file-download": [ 384, 512, [], "f56d", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm76.45 211.36l-96.42 95.7c-6.65 6.61-17.39 6.61-24.04 0l-96.42-95.7C73.42 337.29 80.54 320 94.82 320H160v-80c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v80h65.18c14.28 0 21.4 17.29 11.27 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" ], + "file-excel": [ 384, 512, [], "f1c3", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm60.1 106.5L224 336l60.1 93.5c5.1 8-.6 18.5-10.1 18.5h-34.9c-4.4 0-8.5-2.4-10.6-6.3C208.9 405.5 192 373 192 373c-6.4 14.8-10 20-36.6 68.8-2.1 3.9-6.1 6.3-10.5 6.3H110c-9.5 0-15.2-10.5-10.1-18.5l60.3-93.5-60.3-93.5c-5.2-8 .6-18.5 10.1-18.5h34.8c4.4 0 8.5 2.4 10.6 6.3 26.1 48.8 20 33.6 36.6 68.5 0 0 6.1-11.7 36.6-68.5 2.1-3.9 6.2-6.3 10.6-6.3H274c9.5-.1 15.2 10.4 10.1 18.4zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + "file-export": [ 576, 512, [], "f56e", "M384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zM192 336v-32c0-8.84 7.16-16 16-16h176V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V352H208c-8.84 0-16-7.16-16-16zm379.05-28.02l-95.7-96.43c-10.06-10.14-27.36-3.01-27.36 11.27V288H384v64h63.99v65.18c0 14.28 17.29 21.41 27.36 11.27l95.7-96.42c6.6-6.66 6.6-17.4 0-24.05z" ], + "file-image": [ 384, 512, [], "f1c5", "M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z" ], + "file-import": [ 512, 512, [], "f56f", "M16 288c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h112v-64H16zm336-152V0H152c-13.3 0-24 10.7-24 24v264h127.99v-65.18c0-14.28 17.29-21.41 27.36-11.27l95.7 96.43c6.6 6.65 6.6 17.39 0 24.04l-95.7 96.42c-10.06 10.14-27.36 3.01-27.36-11.27V352H128v136c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H376c-13.2 0-24-10.8-24-24zm153-31L407.1 7c-4.5-4.5-10.6-7-17-7H384v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" ], + "file-invoice": [ 384, 512, [], "f570", "M288 256H96v64h192v-64zm89-151L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm256 304c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-200v96c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-96c0-8.84 7.16-16 16-16h224c8.84 0 16 7.16 16 16z" ], + "file-invoice-dollar": [ 384, 512, [], "f571", "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 80v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8zm144 263.88V440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-24.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V232c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v24.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07z" ], + "file-medical": [ 384, 512, [], "f477", "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 160v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8z" ], + "file-medical-alt": [ 448, 512, [], "f478", "M288 136V0H88C74.7 0 64 10.7 64 24v232H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h140.9c3 0 5.8 1.7 7.2 4.4l19.9 39.8 56.8-113.7c2.9-5.9 11.4-5.9 14.3 0l34.7 69.5H352c8.8 0 16 7.2 16 16s-7.2 16-16 16h-89.9L240 275.8l-56.8 113.7c-2.9 5.9-11.4 5.9-14.3 0L134.1 320H64v168c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H312c-13.2 0-24-10.8-24-24zm153-31L343.1 7c-4.5-4.5-10.6-7-17-7H320v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" ], + "file-pdf": [ 384, 512, [], "f1c1", "M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z" ], + "file-powerpoint": [ 384, 512, [], "f1c4", "M193.7 271.2c8.8 0 15.5 2.7 20.3 8.1 9.6 10.9 9.8 32.7-.2 44.1-4.9 5.6-11.9 8.5-21.1 8.5h-26.9v-60.7h27.9zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm53 165.2c0 90.3-88.8 77.6-111.1 77.6V436c0 6.6-5.4 12-12 12h-30.8c-6.6 0-12-5.4-12-12V236.2c0-6.6 5.4-12 12-12h81c44.5 0 72.9 32.8 72.9 77z" ], + "file-prescription": [ 384, 512, [], "f572", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm68.53 179.48l11.31 11.31c6.25 6.25 6.25 16.38 0 22.63l-29.9 29.9L304 409.38c6.25 6.25 6.25 16.38 0 22.63l-11.31 11.31c-6.25 6.25-16.38 6.25-22.63 0L240 413.25l-30.06 30.06c-6.25 6.25-16.38 6.25-22.63 0L176 432c-6.25-6.25-6.25-16.38 0-22.63l30.06-30.06L146.74 320H128v48c0 8.84-7.16 16-16 16H96c-8.84 0-16-7.16-16-16V208c0-8.84 7.16-16 16-16h80c35.35 0 64 28.65 64 64 0 24.22-13.62 45.05-33.46 55.92L240 345.38l29.9-29.9c6.25-6.25 16.38-6.25 22.63 0zM176 272h-48v-32h48c8.82 0 16 7.18 16 16s-7.18 16-16 16zm208-150.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + "file-signature": [ 576, 512, [], "f573", "M218.17 424.14c-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34c-6.37 12.78-25.03 11.37-29.48-2.09L144 386.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.75-16.19 54.06-9.7 66 14.16 1.89 3.78 5.49 5.95 9.36 6.26v-82.12l128-127.09V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24v-40l-128-.11c-16.12-.31-30.58-9.28-37.83-23.75zM384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zm-96 225.06V416h68.99l161.68-162.78-67.88-67.88L288 346.96zm280.54-179.63l-31.87-31.87c-9.94-9.94-26.07-9.94-36.01 0l-27.25 27.25 67.88 67.88 27.25-27.25c9.95-9.94 9.95-26.07 0-36.01z" ], + "file-upload": [ 384, 512, [], "f574", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm65.18 216.01H224v80c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-80H94.82c-14.28 0-21.41-17.29-11.27-27.36l96.42-95.7c6.65-6.61 17.39-6.61 24.04 0l96.42 95.7c10.15 10.07 3.03 27.36-11.25 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" ], + "file-video": [ 384, 512, [], "f1c8", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z" ], + "file-word": [ 384, 512, [], "f1c2", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm57.1 120H305c7.7 0 13.4 7.1 11.7 14.7l-38 168c-1.2 5.5-6.1 9.3-11.7 9.3h-38c-5.5 0-10.3-3.8-11.6-9.1-25.8-103.5-20.8-81.2-25.6-110.5h-.5c-1.1 14.3-2.4 17.4-25.6 110.5-1.3 5.3-6.1 9.1-11.6 9.1H117c-5.6 0-10.5-3.9-11.7-9.4l-37.8-168c-1.7-7.5 4-14.6 11.7-14.6h24.5c5.7 0 10.7 4 11.8 9.7 15.6 78 20.1 109.5 21 122.2 1.6-10.2 7.3-32.7 29.4-122.7 1.3-5.4 6.1-9.1 11.7-9.1h29.1c5.6 0 10.4 3.8 11.7 9.2 24 100.4 28.8 124 29.6 129.4-.2-11.2-2.6-17.8 21.6-129.2 1-5.6 5.9-9.5 11.5-9.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + fill: [ 512, 512, [], "f575", "M502.63 217.06L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.77c-6.24-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.63l86.19 86.18-94.76 94.76c-37.49 37.49-37.49 98.26 0 135.75l117.19 117.19c18.75 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.88-28.12l221.57-221.57c12.49-12.5 12.49-32.76 0-45.26zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.61 58.6c12.49 12.49 32.75 12.49 45.24 0 12.49-12.49 12.49-32.75 0-45.24l-58.61-58.6 58.95-58.95 162.45 162.44-48.35 48.34z" ], + "fill-drip": [ 576, 512, [], "f576", "M512 320s-64 92.65-64 128c0 35.35 28.66 64 64 64s64-28.65 64-64-64-128-64-128zm-9.37-102.94L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.76c-6.25-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.62l86.19 86.18-94.76 94.76c-37.49 37.48-37.49 98.26 0 135.75l117.19 117.19c18.74 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.87-28.12l221.57-221.57c12.5-12.5 12.5-32.75.01-45.25zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.6 58.6c12.49 12.49 32.75 12.49 45.24 0s12.49-32.75 0-45.24l-58.6-58.6 58.95-58.95 162.44 162.44-48.34 48.34z" ], + film: [ 512, 512, [], "f008", "M488 64h-8v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V64H96v20c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12V64h-8C10.7 64 0 74.7 0 88v336c0 13.3 10.7 24 24 24h8v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h320v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h8c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM96 372c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm272 208c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm0-168c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm112 152c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z" ], + filter: [ 512, 512, [], "f0b0", "M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z" ], + fingerprint: [ 512, 512, [], "f577", "M256.12 245.96c-13.25 0-24 10.74-24 24 1.14 72.25-8.14 141.9-27.7 211.55-2.73 9.72 2.15 30.49 23.12 30.49 10.48 0 20.11-6.92 23.09-17.52 13.53-47.91 31.04-125.41 29.48-224.52.01-13.25-10.73-24-23.99-24zm-.86-81.73C194 164.16 151.25 211.3 152.1 265.32c.75 47.94-3.75 95.91-13.37 142.55-2.69 12.98 5.67 25.69 18.64 28.36 13.05 2.67 25.67-5.66 28.36-18.64 10.34-50.09 15.17-101.58 14.37-153.02-.41-25.95 19.92-52.49 54.45-52.34 31.31.47 57.15 25.34 57.62 55.47.77 48.05-2.81 96.33-10.61 143.55-2.17 13.06 6.69 25.42 19.76 27.58 19.97 3.33 26.81-15.1 27.58-19.77 8.28-50.03 12.06-101.21 11.27-152.11-.88-55.8-47.94-101.88-104.91-102.72zm-110.69-19.78c-10.3-8.34-25.37-6.8-33.76 3.48-25.62 31.5-39.39 71.28-38.75 112 .59 37.58-2.47 75.27-9.11 112.05-2.34 13.05 6.31 25.53 19.36 27.89 20.11 3.5 27.07-14.81 27.89-19.36 7.19-39.84 10.5-80.66 9.86-121.33-.47-29.88 9.2-57.88 28-80.97 8.35-10.28 6.79-25.39-3.49-33.76zm109.47-62.33c-15.41-.41-30.87 1.44-45.78 4.97-12.89 3.06-20.87 15.98-17.83 28.89 3.06 12.89 16 20.83 28.89 17.83 11.05-2.61 22.47-3.77 34-3.69 75.43 1.13 137.73 61.5 138.88 134.58.59 37.88-1.28 76.11-5.58 113.63-1.5 13.17 7.95 25.08 21.11 26.58 16.72 1.95 25.51-11.88 26.58-21.11a929.06 929.06 0 0 0 5.89-119.85c-1.56-98.75-85.07-180.33-186.16-181.83zm252.07 121.45c-2.86-12.92-15.51-21.2-28.61-18.27-12.94 2.86-21.12 15.66-18.26 28.61 4.71 21.41 4.91 37.41 4.7 61.6-.11 13.27 10.55 24.09 23.8 24.2h.2c13.17 0 23.89-10.61 24-23.8.18-22.18.4-44.11-5.83-72.34zm-40.12-90.72C417.29 43.46 337.6 1.29 252.81.02 183.02-.82 118.47 24.91 70.46 72.94 24.09 119.37-.9 181.04.14 246.65l-.12 21.47c-.39 13.25 10.03 24.31 23.28 24.69.23.02.48.02.72.02 12.92 0 23.59-10.3 23.97-23.3l.16-23.64c-.83-52.5 19.16-101.86 56.28-139 38.76-38.8 91.34-59.67 147.68-58.86 69.45 1.03 134.73 35.56 174.62 92.39 7.61 10.86 22.56 13.45 33.42 5.86 10.84-7.62 13.46-22.59 5.84-33.43z" ], + fire: [ 384, 512, [], "f06d", "M216 23.858c0-23.802-30.653-32.765-44.149-13.038C48 191.851 224 200 224 288c0 35.629-29.114 64.458-64.85 63.994C123.98 351.538 96 322.22 96 287.046v-85.51c0-21.703-26.471-32.225-41.432-16.504C27.801 213.158 0 261.332 0 320c0 105.869 86.131 192 192 192s192-86.131 192-192c0-170.29-168-193.003-168-296.142z" ], + "fire-extinguisher": [ 448, 512, [], "f134", "M434.027 26.329l-168 28C254.693 56.218 256 67.8 256 72h-58.332C208.353 36.108 181.446 0 144 0c-39.435 0-66.368 39.676-52.228 76.203-52.039 13.051-75.381 54.213-90.049 90.884-4.923 12.307 1.063 26.274 13.37 31.197 12.317 4.926 26.279-1.075 31.196-13.37C75.058 112.99 106.964 120 168 120v27.076c-41.543 10.862-72 49.235-72 94.129V488c0 13.255 10.745 24 24 24h144c13.255 0 24-10.745 24-24V240c0-44.731-30.596-82.312-72-92.97V120h40c0 2.974-1.703 15.716 10.027 17.671l168 28C441.342 166.89 448 161.25 448 153.834V38.166c0-7.416-6.658-13.056-13.973-11.837zM144 72c-8.822 0-16-7.178-16-16s7.178-16 16-16 16 7.178 16 16-7.178 16-16 16z" ], + "first-aid": [ 576, 512, [], "f479", "M0 80v352c0 26.5 21.5 48 48 48h48V32H48C21.5 32 0 53.5 0 80zm128 400h320V32H128v448zm64-248c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48zM528 32h-48v448h48c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z" ], + fish: [ 576, 512, [], "f578", "M327.1 96c-89.97 0-168.54 54.77-212.27 101.63L27.5 131.58c-12.13-9.18-30.24.6-27.14 14.66L24.54 256 .35 365.77c-3.1 14.06 15.01 23.83 27.14 14.66l87.33-66.05C158.55 361.23 237.13 416 327.1 416 464.56 416 576 288 576 256S464.56 96 327.1 96zm87.43 184c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24 13.26 0 24 10.74 24 24 0 13.25-10.75 24-24 24z" ], + flag: [ 512, 512, [], "f024", "M349.565 98.783C295.978 98.783 251.721 64 184.348 64c-24.955 0-47.309 4.384-68.045 12.013a55.947 55.947 0 0 0 3.586-23.562C118.117 24.015 94.806 1.206 66.338.048 34.345-1.254 8 24.296 8 56c0 19.026 9.497 35.825 24 45.945V488c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-94.4c28.311-12.064 63.582-22.122 114.435-22.122 53.588 0 97.844 34.783 165.217 34.783 48.169 0 86.667-16.294 122.505-40.858C506.84 359.452 512 349.571 512 339.045v-243.1c0-23.393-24.269-38.87-45.485-29.016-34.338 15.948-76.454 31.854-116.95 31.854z" ], + "flag-checkered": [ 512, 512, [], "f11e", "M466.515 66.928C487.731 57.074 512 72.551 512 95.944v243.1c0 10.526-5.161 20.407-13.843 26.358-35.837 24.564-74.335 40.858-122.505 40.858-67.373 0-111.63-34.783-165.217-34.783-50.853 0-86.124 10.058-114.435 22.122V488c0 13.255-10.745 24-24 24H56c-13.255 0-24-10.745-24-24V101.945C17.497 91.825 8 75.026 8 56 8 24.296 34.345-1.254 66.338.048c28.468 1.158 51.779 23.968 53.551 52.404.52 8.342-.81 16.31-3.586 23.562C137.039 68.384 159.393 64 184.348 64c67.373 0 111.63 34.783 165.217 34.783 40.496 0 82.612-15.906 116.95-31.855zM96 134.63v70.49c29-10.67 51.18-17.83 73.6-20.91v-71.57c-23.5 2.17-40.44 9.79-73.6 21.99zm220.8 9.19c-26.417-4.672-49.886-13.979-73.6-21.34v67.42c24.175 6.706 47.566 16.444 73.6 22.31v-68.39zm-147.2 40.39v70.04c32.796-2.978 53.91-.635 73.6 3.8V189.9c-25.247-7.035-46.581-9.423-73.6-5.69zm73.6 142.23c26.338 4.652 49.732 13.927 73.6 21.34v-67.41c-24.277-6.746-47.54-16.45-73.6-22.32v68.39zM96 342.1c23.62-8.39 47.79-13.84 73.6-16.56v-71.29c-26.11 2.35-47.36 8.04-73.6 17.36v70.49zm368-221.6c-21.3 8.85-46.59 17.64-73.6 22.47v71.91c27.31-4.36 50.03-14.1 73.6-23.89V120.5zm0 209.96v-70.49c-22.19 14.2-48.78 22.61-73.6 26.02v71.58c25.07-2.38 48.49-11.04 73.6-27.11zM316.8 212.21v68.16c25.664 7.134 46.616 9.342 73.6 5.62v-71.11c-25.999 4.187-49.943 2.676-73.6-2.67z" ], + flask: [ 448, 512, [], "f0c3", "M437.2 403.5L320 215V64h8c13.3 0 24-10.7 24-24V24c0-13.3-10.7-24-24-24H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h8v151L10.8 403.5C-18.5 450.6 15.3 512 70.9 512h306.2c55.7 0 89.4-61.5 60.1-108.5zM137.9 320l48.2-77.6c3.7-5.2 5.8-11.6 5.8-18.4V64h64v160c0 6.9 2.2 13.2 5.8 18.4l48.2 77.6h-172z" ], + flushed: [ 496, 512, [], "f579", "M344 200c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-192 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM80 224c0-39.8 32.2-72 72-72s72 32.2 72 72-32.2 72-72 72-72-32.2-72-72zm232 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-104c-39.8 0-72-32.2-72-72s32.2-72 72-72 72 32.2 72 72-32.2 72-72 72z" ], + folder: [ 512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z" ], + "folder-open": [ 576, 512, [], "f07c", "M572.694 292.093L500.27 416.248A63.997 63.997 0 0 1 444.989 448H45.025c-18.523 0-30.064-20.093-20.731-36.093l72.424-124.155A64 64 0 0 1 152 256h399.964c18.523 0 30.064 20.093 20.73 36.093zM152 224h328v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v278.046l69.077-118.418C86.214 242.25 117.989 224 152 224z" ], + font: [ 448, 512, [], "f031", "M152 416h-24.013l26.586-80.782H292.8L319.386 416H296c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-26.739L275.495 42.746A16 16 0 0 0 260.382 32h-72.766a16 16 0 0 0-15.113 10.746L42.739 416H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm64.353-271.778c4.348-15.216 6.61-28.156 7.586-34.644.839 6.521 2.939 19.476 7.727 34.706l41.335 124.006h-98.619l41.971-124.068z" ], + "font-awesome-logo-full": [ 3992, 512, [ "Font Awesome" ], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z" ], + "football-ball": [ 496, 512, [], "f44e", "M481.5 60.3c-4.8-18.2-19.1-32.5-37.3-37.4C420.3 16.5 383 8.9 339.4 8L496 164.8c-.8-43.5-8.2-80.6-14.5-104.5zm-467 391.4c4.8 18.2 19.1 32.5 37.3 37.4 23.9 6.4 61.2 14 104.8 14.9L0 347.2c.8 43.5 8.2 80.6 14.5 104.5zM4.2 283.4L220.4 500c132.5-19.4 248.8-118.7 271.5-271.4L275.6 12C143.1 31.4 26.8 130.7 4.2 283.4zm317.3-123.6c3.1-3.1 8.2-3.1 11.3 0l11.3 11.3c3.1 3.1 3.1 8.2 0 11.3l-28.3 28.3 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-22.6 22.7 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L248 278.6l-22.6 22.6 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-28.3 28.3c-3.1 3.1-8.2 3.1-11.3 0l-11.3-11.3c-3.1-3.1-3.1-8.2 0-11.3l28.3-28.3-28.3-28.2c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 28.3-28.5z" ], + forward: [ 512, 512, [], "f04e", "M500.5 231.4l-192-160C287.9 54.3 256 68.6 256 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2zm-256 0l-192-160C31.9 54.3 0 68.6 0 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2z" ], + frog: [ 576, 512, [], "f52e", "M446.53 97.43C439.67 60.23 407.19 32 368 32c-39.23 0-71.72 28.29-78.54 65.54C126.75 112.96-.5 250.12 0 416.98.11 451.9 29.08 480 64 480h304c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-79.49l35.8-48.33c24.14-36.23 10.35-88.28-33.71-106.6-23.89-9.93-51.55-4.65-72.24 10.88l-32.76 24.59c-7.06 5.31-17.09 3.91-22.41-3.19-5.3-7.08-3.88-17.11 3.19-22.41l34.78-26.09c36.84-27.66 88.28-27.62 125.13 0 10.87 8.15 45.87 39.06 40.8 93.21L469.62 480H560c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-53.63l-98.52-104.68 154.44-86.65A58.16 58.16 0 0 0 576 189.94c0-21.4-11.72-40.95-30.48-51.23-40.56-22.22-98.99-41.28-98.99-41.28zM368 136c-13.26 0-24-10.75-24-24 0-13.26 10.74-24 24-24 13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24z" ], + frown: [ 496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm170.2 218.2C315.8 367.4 282.9 352 248 352s-67.8 15.4-90.2 42.2c-13.5 16.3-38.1-4.2-24.6-20.5C161.7 339.6 203.6 320 248 320s86.3 19.6 114.7 53.8c13.6 16.2-11 36.7-24.5 20.4z" ], + "frown-open": [ 496, 512, [], "f57a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm187.3 183.3c-31.2-9.6-59.4-15.3-75.3-15.3s-44.1 5.7-75.3 15.3c-11.5 3.5-22.5-6.3-20.5-18.1 7-40 60.1-61.2 95.8-61.2s88.8 21.3 95.8 61.2c2 11.9-9.1 21.6-20.5 18.1zM328 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + futbol: [ 512, 512, [], "f1e3", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-48 0l-.003-.282-26.064 22.741-62.679-58.5 16.454-84.355 34.303 3.072c-24.889-34.216-60.004-60.089-100.709-73.141l13.651 31.939L256 139l-74.953-41.525 13.651-31.939c-40.631 13.028-75.78 38.87-100.709 73.141l34.565-3.073 16.192 84.355-62.678 58.5-26.064-22.741-.003.282c0 43.015 13.497 83.952 38.472 117.991l7.704-33.897 85.138 10.447 36.301 77.826-29.902 17.786c40.202 13.122 84.29 13.148 124.572 0l-29.902-17.786 36.301-77.826 85.138-10.447 7.704 33.897C442.503 339.952 456 299.015 456 256zm-248.102 69.571l-29.894-91.312L256 177.732l77.996 56.527-29.622 91.312h-96.476z" ], + gamepad: [ 640, 512, [], "f11b", "M480 96H160C71.6 96 0 167.6 0 256s71.6 160 160 160c44.8 0 85.2-18.4 114.2-48h91.5c29 29.6 69.5 48 114.2 48 88.4 0 160-71.6 160-160S568.4 96 480 96zM256 276c0 6.6-5.4 12-12 12h-52v52c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-52H76c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h52v-52c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h52c6.6 0 12 5.4 12 12v40zm184 68c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-80c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z" ], + "gas-pump": [ 512, 512, [], "f52f", "M336 448H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm157.2-340.7l-81-81c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-6.2 6.2-6.2 16.4 0 22.6L416 97.9V160c0 28.1 20.9 51.3 48 55.2V376c0 13.2-10.8 24-24 24s-24-10.8-24-24v-32c0-48.6-39.4-88-88-88h-8V64c0-35.3-28.7-64-64-64H96C60.7 0 32 28.7 32 64v352h288V304h8c22.1 0 40 17.9 40 40v27.8c0 37.7 27 72 64.5 75.9 43 4.3 79.5-29.5 79.5-71.7V152.6c0-17-6.8-33.3-18.8-45.3zM256 192H96V64h160v128z" ], + gavel: [ 512, 512, [], "f0e3", "M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z" ], + gem: [ 576, 512, [], "f3a5", "M485.5 0L576 160H474.9L405.7 0h79.8zm-128 0l69.2 160H149.3L218.5 0h139zm-267 0h79.8l-69.2 160H0L90.5 0zM0 192h100.7l123 251.7c1.5 3.1-2.7 5.9-5 3.3L0 192zm148.2 0h279.6l-137 318.2c-1 2.4-4.5 2.4-5.5 0L148.2 192zm204.1 251.7l123-251.7H576L357.3 446.9c-2.3 2.7-6.5-.1-5-3.2z" ], + genderless: [ 288, 512, [], "f22d", "M144 176c44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80 35.9-80 80-80m0-64C64.5 112 0 176.5 0 256s64.5 144 144 144 144-64.5 144-144-64.5-144-144-144z" ], + gift: [ 512, 512, [], "f06b", "M32 448c0 17.7 14.3 32 32 32h160V320H32v128zm448-288h-42.1c6.2-12.1 10.1-25.5 10.1-40 0-48.5-39.5-88-88-88-41.6 0-68.5 21.3-103 68.3-34.5-47-61.4-68.3-103-68.3-48.5 0-88 39.5-88 88 0 14.5 3.8 27.9 10.1 40H32c-17.7 0-32 14.3-32 32v80c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-80c0-17.7-14.3-32-32-32zm-326.1 0c-22.1 0-40-17.9-40-40s17.9-40 40-40c19.9 0 34.6 3.3 86.1 80h-86.1zm206.1 0h-86.1c51.4-76.5 65.7-80 86.1-80 22.1 0 40 17.9 40 40s-17.9 40-40 40zm-72 320h160c17.7 0 32-14.3 32-32V320H288v160z" ], + "glass-martini": [ 512, 512, [], "f000", "M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6z" ], + "glass-martini-alt": [ 512, 512, [], "f57b", "M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6zM443.77 48l-48 48H116.24l-48-48h375.53z" ], + glasses: [ 576, 512, [], "f530", "M574.1 280.37L528.75 98.66c-5.91-23.7-21.59-44.05-43-55.81-21.44-11.73-46.97-14.11-70.19-6.33l-15.25 5.08c-8.39 2.79-12.92 11.86-10.12 20.24l5.06 15.18c2.79 8.38 11.85 12.91 20.23 10.12l13.18-4.39c10.87-3.62 23-3.57 33.16 1.73 10.29 5.37 17.57 14.56 20.37 25.82l38.46 153.82c-22.19-6.81-49.79-12.46-81.2-12.46-34.77 0-73.98 7.02-114.85 26.74h-73.18c-40.87-19.74-80.08-26.75-114.86-26.75-31.42 0-59.02 5.65-81.21 12.46l38.46-153.83c2.79-11.25 10.09-20.45 20.38-25.81 10.16-5.3 22.28-5.35 33.15-1.73l13.17 4.39c8.38 2.79 17.44-1.74 20.23-10.12l5.06-15.18c2.8-8.38-1.73-17.45-10.12-20.24l-15.25-5.08c-23.22-7.78-48.75-5.41-70.19 6.33-21.41 11.77-37.09 32.11-43 55.8L1.9 280.37A64.218 64.218 0 0 0 0 295.86v70.25C0 429.01 51.58 480 115.2 480h37.12c60.28 0 110.37-45.94 114.88-105.37l2.93-38.63h35.75l2.93 38.63C313.31 434.06 363.4 480 423.68 480h37.12c63.62 0 115.2-50.99 115.2-113.88v-70.25c0-5.23-.64-10.43-1.9-15.5zm-370.72 89.42c-1.97 25.91-24.4 46.21-51.06 46.21H115.2C86.97 416 64 393.62 64 366.11v-37.54c18.12-6.49 43.42-12.92 72.58-12.92 23.86 0 47.26 4.33 69.93 12.92l-3.13 41.22zM512 366.12c0 27.51-22.97 49.88-51.2 49.88h-37.12c-26.67 0-49.1-20.3-51.06-46.21l-3.13-41.22c22.67-8.59 46.08-12.92 69.95-12.92 29.12 0 54.43 6.44 72.55 12.93v37.54z" ], + globe: [ 496, 512, [], "f0ac", "M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z" ], + "globe-africa": [ 496, 512, [], "f57c", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm160 215.5v6.93c0 5.87-3.32 11.24-8.57 13.86l-15.39 7.7a15.485 15.485 0 0 1-15.53-.97l-18.21-12.14a15.52 15.52 0 0 0-13.5-1.81l-2.65.88c-9.7 3.23-13.66 14.79-7.99 23.3l13.24 19.86c2.87 4.31 7.71 6.9 12.89 6.9h8.21c8.56 0 15.5 6.94 15.5 15.5v11.34c0 3.35-1.09 6.62-3.1 9.3l-18.74 24.98c-1.42 1.9-2.39 4.1-2.83 6.43l-4.3 22.83c-.62 3.29-2.29 6.29-4.76 8.56a159.608 159.608 0 0 0-25 29.16l-13.03 19.55a27.756 27.756 0 0 1-23.09 12.36c-10.51 0-20.12-5.94-24.82-15.34a78.902 78.902 0 0 1-8.33-35.29V367.5c0-8.56-6.94-15.5-15.5-15.5h-25.88c-14.49 0-28.38-5.76-38.63-16a54.659 54.659 0 0 1-16-38.63v-14.06c0-17.19 8.1-33.38 21.85-43.7l27.58-20.69a54.663 54.663 0 0 1 32.78-10.93h.89c8.48 0 16.85 1.97 24.43 5.77l14.72 7.36c3.68 1.84 7.93 2.14 11.83.84l47.31-15.77c6.33-2.11 10.6-8.03 10.6-14.7 0-8.56-6.94-15.5-15.5-15.5h-10.09c-4.11 0-8.05-1.63-10.96-4.54l-6.92-6.92a15.493 15.493 0 0 0-10.96-4.54H199.5c-8.56 0-15.5-6.94-15.5-15.5v-4.4c0-7.11 4.84-13.31 11.74-15.04l14.45-3.61c3.74-.94 7-3.23 9.14-6.44l8.08-12.11c2.87-4.31 7.71-6.9 12.89-6.9h24.21c8.56 0 15.5-6.94 15.5-15.5v-21.7C359.23 71.63 422.86 131.02 441.93 208H423.5c-8.56 0-15.5 6.94-15.5 15.5z" ], + "globe-americas": [ 496, 512, [], "f57d", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm82.29 357.6c-3.9 3.88-7.99 7.95-11.31 11.28-2.99 3-5.1 6.7-6.17 10.71-1.51 5.66-2.73 11.38-4.77 16.87l-17.39 46.85c-13.76 3-28 4.69-42.65 4.69v-27.38c1.69-12.62-7.64-36.26-22.63-51.25-6-6-9.37-14.14-9.37-22.63v-32.01c0-11.64-6.27-22.34-16.46-27.97-14.37-7.95-34.81-19.06-48.81-26.11-11.48-5.78-22.1-13.14-31.65-21.75l-.8-.72a114.792 114.792 0 0 1-18.06-20.74c-9.38-13.77-24.66-36.42-34.59-51.14 20.47-45.5 57.36-82.04 103.2-101.89l24.01 12.01C203.48 89.74 216 82.01 216 70.11v-11.3c7.99-1.29 16.12-2.11 24.39-2.42l28.3 28.3c6.25 6.25 6.25 16.38 0 22.63L264 112l-10.34 10.34c-3.12 3.12-3.12 8.19 0 11.31l4.69 4.69c3.12 3.12 3.12 8.19 0 11.31l-8 8a8.008 8.008 0 0 1-5.66 2.34h-8.99c-2.08 0-4.08.81-5.58 2.27l-9.92 9.65a8.008 8.008 0 0 0-1.58 9.31l15.59 31.19c2.66 5.32-1.21 11.58-7.15 11.58h-5.64c-1.93 0-3.79-.7-5.24-1.96l-9.28-8.06a16.017 16.017 0 0 0-15.55-3.1l-31.17 10.39a11.95 11.95 0 0 0-8.17 11.34c0 4.53 2.56 8.66 6.61 10.69l11.08 5.54c9.41 4.71 19.79 7.16 30.31 7.16s22.59 27.29 32 32h66.75c8.49 0 16.62 3.37 22.63 9.37l13.69 13.69a30.503 30.503 0 0 1 8.93 21.57 46.536 46.536 0 0 1-13.72 32.98zM417 274.25c-5.79-1.45-10.84-5-14.15-9.97l-17.98-26.97a23.97 23.97 0 0 1 0-26.62l19.59-29.38c2.32-3.47 5.5-6.29 9.24-8.15l12.98-6.49C440.2 193.59 448 223.87 448 256c0 8.67-.74 17.16-1.82 25.54L417 274.25z" ], + "globe-asia": [ 496, 512, [], "f57e", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm-11.34 240.23c-2.89 4.82-8.1 7.77-13.72 7.77h-.31c-4.24 0-8.31 1.69-11.31 4.69l-5.66 5.66c-3.12 3.12-3.12 8.19 0 11.31l5.66 5.66c3 3 4.69 7.07 4.69 11.31V304c0 8.84-7.16 16-16 16h-6.11c-6.06 0-11.6-3.42-14.31-8.85l-22.62-45.23c-2.44-4.88-8.95-5.94-12.81-2.08l-19.47 19.46c-3 3-7.07 4.69-11.31 4.69H50.81C49.12 277.55 48 266.92 48 256c0-110.28 89.72-200 200-200 21.51 0 42.2 3.51 61.63 9.82l-50.16 38.53c-5.11 3.41-4.63 11.06.86 13.81l10.83 5.41c5.42 2.71 8.84 8.25 8.84 14.31V216c0 4.42-3.58 8-8 8h-3.06c-3.03 0-5.8-1.71-7.15-4.42-1.56-3.12-5.96-3.29-7.76-.3l-17.37 28.95zM408 358.43c0 4.24-1.69 8.31-4.69 11.31l-9.57 9.57c-3 3-7.07 4.69-11.31 4.69h-15.16c-4.24 0-8.31-1.69-11.31-4.69l-13.01-13.01a26.767 26.767 0 0 0-25.42-7.04l-21.27 5.32c-1.27.32-2.57.48-3.88.48h-10.34c-4.24 0-8.31-1.69-11.31-4.69l-11.91-11.91a8.008 8.008 0 0 1-2.34-5.66v-10.2c0-3.27 1.99-6.21 5.03-7.43l39.34-15.74c1.98-.79 3.86-1.82 5.59-3.05l23.71-16.89a7.978 7.978 0 0 1 4.64-1.48h12.09c3.23 0 6.15 1.94 7.39 4.93l5.35 12.85a4 4 0 0 0 3.69 2.46h3.8c1.78 0 3.35-1.18 3.84-2.88l4.2-14.47c.5-1.71 2.06-2.88 3.84-2.88h6.06c2.21 0 4 1.79 4 4v12.93c0 2.12.84 4.16 2.34 5.66l11.91 11.91c3 3 4.69 7.07 4.69 11.31v24.6z" ], + "golf-ball": [ 416, 512, [], "f450", "M96 416h224c0 17.7-14.3 32-32 32h-16c-17.7 0-32 14.3-32 32v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-20c0-17.7-14.3-32-32-32h-16c-17.7 0-32-14.3-32-32zm320-208c0 74.2-39 139.2-97.5 176h-221C39 347.2 0 282.2 0 208 0 93.1 93.1 0 208 0s208 93.1 208 208zm-180.1 43.9c18.3 0 33.1-14.8 33.1-33.1 0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1zm49.1 46.9c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1zm64-64c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1z" ], + "graduation-cap": [ 640, 512, [], "f19d", "M622.884 199.005l-275.817 85.1a96 96 0 0 1-54.134 0L92.398 222.232c-8.564 11.438-11.018 23.05-11.918 38.335C89.778 266.165 96 276.355 96 288c0 11.952-6.557 22.366-16.265 27.861l16.197 123.096c.63 4.786-3.1 9.043-7.932 9.043H40c-4.828 0-8.562-4.253-7.932-9.044L48.265 315.86C38.557 310.366 32 299.952 32 288c0-12.034 6.646-22.511 16.465-27.976.947-17.951 3.974-33.231 12.152-47.597l-43.502-13.422c-22.876-6.801-22.766-39.241 0-46.01l275.817-85.1a96 96 0 0 1 54.134 0l275.817 85.1c22.877 6.801 22.767 39.241.001 46.01zM356.503 314.682l-.207.064-.207.061a127.998 127.998 0 0 1-72.177 0l-.207-.061-.207-.064-150.914-46.57L120 352c0 35.346 89.543 64 200 64s200-28.654 200-64l-12.583-83.888-150.914 46.57z" ], + "greater-than": [ 384, 512, [], "f531", "M365.52 209.85L59.22 67.01c-16.06-7.49-35.15-.54-42.64 15.52L3.01 111.61c-7.49 16.06-.54 35.15 15.52 42.64L236.96 256.1 18.49 357.99C2.47 365.46-4.46 384.5 3.01 400.52l13.52 29C24 445.54 43.04 452.47 59.06 445l306.47-142.91a32.003 32.003 0 0 0 18.48-29v-34.23c-.01-12.45-7.21-23.76-18.49-29.01z" ], + "greater-than-equal": [ 448, 512, [], "f532", "M55.22 107.69l175.56 68.09-175.44 68.05c-18.39 6.03-27.88 24.39-21.2 41l12.09 30.08c6.68 16.61 26.99 25.19 45.38 19.15L393.02 214.2c13.77-4.52 22.98-16.61 22.98-30.17v-15.96c0-13.56-9.21-25.65-22.98-30.17L91.3 17.92c-18.29-6-38.51 2.53-45.15 19.06L34.12 66.9c-6.64 16.53 2.81 34.79 21.1 40.79zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z" ], + grimace: [ 496, 512, [], "f57f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM144 400h-8c-17.7 0-32-14.3-32-32v-8h40v40zm0-56h-40v-8c0-17.7 14.3-32 32-32h8v40zm-8-136c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm72 192h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm-8-104c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64 128c0 17.7-14.3 32-32 32h-8v-40h40v8zm0-24h-40v-40h8c17.7 0 32 14.3 32 32v8z" ], + grin: [ 496, 512, [], "f580", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm80 256c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" ], + "grin-alt": [ 496, 512, [], "f581", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm63.7 128.7c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zm-160 0c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" ], + "grin-beam": [ 496, 512, [], "f582", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 144c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" ], + "grin-beam-sweat": [ 504, 512, [], "f583", "M456 128c26.5 0 48-21 48-47 0-20-28.5-60.4-41.6-77.8-3.2-4.3-9.6-4.3-12.8 0C436.5 20.6 408 61 408 81c0 26 21.5 47 48 47zm0 32c-44.1 0-80-35.4-80-79 0-4.4.3-14.2 8.1-32.2C345 23.1 298.3 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-35.1-7.4-68.4-20.5-98.6-6.3 1.5-12.7 2.6-19.5 2.6zm-128-8c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" ], + "grin-hearts": [ 496, 512, [], "f584", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM90.4 183.6c6.7-17.6 26.7-26.7 44.9-21.9l7.1 1.9 2-7.1c5-18.1 22.8-30.9 41.5-27.9 21.4 3.4 34.4 24.2 28.8 44.5L195.3 243c-1.2 4.5-5.9 7.2-10.5 6l-70.2-18.2c-20.4-5.4-31.9-27-24.2-47.2zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm133.4-201.3l-70.2 18.2c-4.5 1.2-9.2-1.5-10.5-6L281.3 173c-5.6-20.3 7.4-41.1 28.8-44.5 18.6-3 36.4 9.8 41.5 27.9l2 7.1 7.1-1.9c18.2-4.7 38.2 4.3 44.9 21.9 7.7 20.3-3.8 41.9-24.2 47.2z" ], + "grin-squint": [ 496, 512, [], "f585", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" ], + "grin-squint-tears": [ 512, 512, [], "f586", "M409.6 111.9c22.6-3.2 73.5-12 88.3-26.8 19.2-19.2 18.9-50.6-.7-70.2S446-5 426.9 14.2c-14.8 14.8-23.5 65.7-26.8 88.3-.8 5.5 3.9 10.2 9.5 9.4zM102.4 400.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm311.7-256.5c-33 3.9-48.6-25.1-45.7-45.7 3.4-24 7.4-42.1 11.5-56.5C285.1-13.4 161.8-.5 80.6 80.6-.5 161.7-13.4 285 41.4 379.9c14.4-4.1 32.4-8 56.5-11.5 33.2-3.9 48.6 25.2 45.7 45.7-3.4 24-7.4 42.1-11.5 56.5 94.8 54.8 218.1 41.9 299.3-39.2s94-204.4 39.2-299.3c-14.4 4.1-32.5 8-56.5 11.5zM255.7 106c3.3-13.2 22.4-11.5 23.6 1.8l4.8 52.3 52.3 4.8c13.4 1.2 14.9 20.3 1.8 23.6l-90.5 22.6c-8.9 2.2-16.7-5.9-14.5-14.5l22.5-90.6zm-90.9 230.3L160 284l-52.3-4.8c-13.4-1.2-14.9-20.3-1.8-23.6l90.5-22.6c8.8-2.2 16.7 5.8 14.5 14.5L188.3 338c-3.1 13.2-22.2 11.7-23.5-1.7zm215.7 44.2c-29.3 29.3-75.7 50.4-116.7 50.4-18.9 0-36.6-4.5-51-14.7-9.8-6.9-8.7-21.8 2-27.2 28.3-14.6 63.9-42.4 97.8-76.3s61.7-69.6 76.3-97.8c5.4-10.5 20.2-11.9 27.3-2 32.3 45.3 7.1 124.7-35.7 167.6z" ], + "grin-stars": [ 496, 512, [], "f587", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM94.6 168.9l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.2 1 8.9 8.6 4.3 13.2l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L152 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.6-4.7-1.9-12.3 4.3-13.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm157.7-249.9l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L344 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.5-4.6-1.9-12.2 4.3-13.2l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.3.9 9 8.5 4.4 13.1z" ], + "grin-tears": [ 640, 512, [], "f588", "M102.4 256.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm523.4 26.8c-14.8-14.8-65.7-23.5-88.3-26.8-5.5-.8-10.3 3.9-9.5 9.5 3.2 22.6 12 73.5 26.8 88.3 19.2 19.2 50.6 18.9 70.2-.7s20-51.2.8-70.3zm-129.4-12.8c-3.8-26.6 19.1-49.5 45.7-45.7 8.9 1.3 16.8 2.7 24.3 4.1C552.7 104.5 447.7 8 320 8S87.3 104.5 73.6 228.5c7.5-1.4 15.4-2.8 24.3-4.1 33.2-3.9 48.6 25.3 45.7 45.7-11.8 82.3-29.9 100.4-35.8 106.4-.9.9-2 1.6-3 2.5 42.7 74.6 123 125 215.2 125s172.5-50.4 215.2-125.1c-1-.9-2.1-1.5-3-2.5-5.9-5.9-24-24-35.8-106.3zM400 152c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.7 9.2-21.6 20.7-17.9C227.1 330.5 272 336 320 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" ], + "grin-tongue": [ 496, 512, [], "f589", "M248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-34.9 134.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z" ], + "grin-tongue-squint": [ 496, 512, [], "f58a", "M293.1 374.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-33.8 210.3l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.7 4.7 7.7 15.9 0 20.6zm163 30c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.8-4.7-7.8-15.9 0-20.6l80-48c11.7-6.9 23.9 7.7 15.4 18L343.6 208l33.6 40.3z" ], + "grin-tongue-wink": [ 496, 512, [], "f58b", "M344 184c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-56 225l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L112 233c-8.5 7.4-21.6.3-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c1.6 11.1-11.6 18.2-20 10.8zm152 39c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm-50.9 102.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z" ], + "grin-wink": [ 496, 512, [], "f58c", "M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm168 25l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.6 11-11.5 18.2-20 10.8zm-243.1 87.8C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6 20.7 17.9-9.2 55-83.2 93.3-143.8 93.3s-134.5-38.3-143.8-93.3c-2-11.9 9.3-21.6 20.7-17.9z" ], + "grip-horizontal": [ 448, 512, [], "f58d", "M96 288H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM96 96H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z" ], + "grip-vertical": [ 320, 512, [], "f58e", "M96 32H32C14.33 32 0 46.33 0 64v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM288 32h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z" ], + "h-square": [ 448, 512, [], "f0fd", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-112 48h-32c-8.837 0-16 7.163-16 16v80H160v-80c0-8.837-7.163-16-16-16h-32c-8.837 0-16 7.163-16 16v224c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16v-80h128v80c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144c0-8.837-7.163-16-16-16z" ], + "hand-holding": [ 576, 512, [], "f4bd", "M565.3 328.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z" ], + "hand-holding-heart": [ 576, 512, [], "f4be", "M275.3 250.5c7 7.4 18.4 7.4 25.5 0l108.9-114.2c31.6-33.2 29.8-88.2-5.6-118.8-30.8-26.7-76.7-21.9-104.9 7.7L288 36.9l-11.1-11.6C248.7-4.4 202.8-9.2 172 17.5c-35.3 30.6-37.2 85.6-5.6 118.8l108.9 114.2zm290 77.6c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z" ], + "hand-holding-usd": [ 544, 512, [], "f4c0", "M257.6 144.3l50 14.3c3.6 1 6.1 4.4 6.1 8.1 0 4.6-3.8 8.4-8.4 8.4h-32.8c-3.6 0-7.1-.8-10.3-2.2-4.8-2.2-10.4-1.7-14.1 2l-17.5 17.5c-5.3 5.3-4.7 14.3 1.5 18.4 9.5 6.3 20.3 10.1 31.8 11.5V240c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16v-17.6c30.3-3.6 53.3-31 49.3-63-2.9-23-20.7-41.3-42.9-47.7l-50-14.3c-3.6-1-6.1-4.4-6.1-8.1 0-4.6 3.8-8.4 8.4-8.4h32.8c3.6 0 7.1.8 10.3 2.2 4.8 2.2 10.4 1.7 14.1-2l17.5-17.5c5.3-5.3 4.7-14.3-1.5-18.4-9.5-6.3-20.3-10.1-31.8-11.5V16c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16v17.6c-30.3 3.6-53.3 31-49.3 63 2.9 23 20.7 41.3 42.9 47.7zm276.3 183.8c-11.2-10.7-28.5-10-40.3 0L406.4 402c-10.7 9.1-24 14-37.8 14H256.9c-8.3 0-15.1-7.2-15.1-16s6.8-16 15.1-16h73.9c15.1 0 29-10.9 31.4-26.6 3.1-20-11.5-37.4-29.8-37.4H181.3c-25.5 0-50.2 9.3-69.9 26.3L67.5 384H15.1C6.8 384 0 391.2 0 400v96c0 8.8 6.8 16 15.1 16H352c13.7 0 27-4.9 37.8-14l142.8-121c14.4-12.1 15.5-35.3 1.3-48.9z" ], + "hand-lizard": [ 576, 512, [], "f258", "M384 480h192V363.778a95.998 95.998 0 0 0-14.833-51.263L398.127 54.368A48 48 0 0 0 357.544 32H24C10.745 32 0 42.745 0 56v16c0 30.928 25.072 56 56 56h229.981c12.844 0 21.556 13.067 16.615 24.923l-21.41 51.385A32 32 0 0 1 251.648 224H128c-35.346 0-64 28.654-64 64v8c0 13.255 10.745 24 24 24h147.406a47.995 47.995 0 0 1 25.692 7.455l111.748 70.811A24.001 24.001 0 0 1 384 418.539V480z" ], + "hand-paper": [ 448, 512, [], "f256", "M408.781 128.007C386.356 127.578 368 146.36 368 168.79V256h-8V79.79c0-22.43-18.356-41.212-40.781-40.783C297.488 39.423 280 57.169 280 79v177h-8V40.79C272 18.36 253.644-.422 231.219.007 209.488.423 192 18.169 192 40v216h-8V80.79c0-22.43-18.356-41.212-40.781-40.783C121.488 40.423 104 58.169 104 80v235.992l-31.648-43.519c-12.993-17.866-38.009-21.817-55.877-8.823-17.865 12.994-21.815 38.01-8.822 55.877l125.601 172.705A48 48 0 0 0 172.073 512h197.59c22.274 0 41.622-15.324 46.724-37.006l26.508-112.66a192.011 192.011 0 0 0 5.104-43.975V168c.001-21.831-17.487-39.577-39.218-39.993z" ], + "hand-peace": [ 448, 512, [], "f25b", "M408 216c-22.092 0-40 17.909-40 40h-8v-32c0-22.091-17.908-40-40-40s-40 17.909-40 40v32h-8V48c0-26.51-21.49-48-48-48s-48 21.49-48 48v208h-13.572L92.688 78.449C82.994 53.774 55.134 41.63 30.461 51.324 5.787 61.017-6.356 88.877 3.337 113.551l74.765 190.342-31.09 24.872c-15.381 12.306-19.515 33.978-9.741 51.081l64 112A39.998 39.998 0 0 0 136 512h240c18.562 0 34.686-12.77 38.937-30.838l32-136A39.97 39.97 0 0 0 448 336v-80c0-22.091-17.908-40-40-40z" ], + "hand-point-down": [ 384, 512, [], "f0a7", "M91.826 467.2V317.966c-8.248 5.841-16.558 10.57-24.918 14.153C35.098 345.752-.014 322.222 0 288c.008-18.616 10.897-32.203 29.092-40 28.286-12.122 64.329-78.648 77.323-107.534 7.956-17.857 25.479-28.453 43.845-28.464l.001-.002h171.526c11.812 0 21.897 8.596 23.703 20.269 7.25 46.837 38.483 61.76 38.315 123.731-.007 2.724.195 13.254.195 16 0 50.654-22.122 81.574-71.263 72.6-9.297 18.597-39.486 30.738-62.315 16.45-21.177 24.645-53.896 22.639-70.944 6.299V467.2c0 24.15-20.201 44.8-43.826 44.8-23.283 0-43.826-21.35-43.826-44.8zM112 72V24c0-13.255 10.745-24 24-24h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24zm212-24c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z" ], + "hand-point-left": [ 512, 512, [], "f0a5", "M44.8 155.826h149.234c-5.841-8.248-10.57-16.558-14.153-24.918C166.248 99.098 189.778 63.986 224 64c18.616.008 32.203 10.897 40 29.092 12.122 28.286 78.648 64.329 107.534 77.323 17.857 7.956 28.453 25.479 28.464 43.845l.002.001v171.526c0 11.812-8.596 21.897-20.269 23.703-46.837 7.25-61.76 38.483-123.731 38.315-2.724-.007-13.254.195-16 .195-50.654 0-81.574-22.122-72.6-71.263-18.597-9.297-30.738-39.486-16.45-62.315-24.645-21.177-22.639-53.896-6.299-70.944H44.8c-24.15 0-44.8-20.201-44.8-43.826 0-23.283 21.35-43.826 44.8-43.826zM440 176h48c13.255 0 24 10.745 24 24v192c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24zm24 212c11.046 0 20-8.954 20-20s-8.954-20-20-20-20 8.954-20 20 8.954 20 20 20z" ], + "hand-point-right": [ 512, 512, [], "f0a4", "M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z" ], + "hand-point-up": [ 384, 512, [], "f0a6", "M135.652 0c23.625 0 43.826 20.65 43.826 44.8v99.851c17.048-16.34 49.766-18.346 70.944 6.299 22.829-14.288 53.017-2.147 62.315 16.45C361.878 158.426 384 189.346 384 240c0 2.746-.203 13.276-.195 16 .168 61.971-31.065 76.894-38.315 123.731C343.683 391.404 333.599 400 321.786 400H150.261l-.001-.002c-18.366-.011-35.889-10.607-43.845-28.464C93.421 342.648 57.377 276.122 29.092 264 10.897 256.203.008 242.616 0 224c-.014-34.222 35.098-57.752 66.908-44.119 8.359 3.583 16.67 8.312 24.918 14.153V44.8c0-23.45 20.543-44.8 43.826-44.8zM136 416h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24v-48c0-13.255 10.745-24 24-24zm168 28c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z" ], + "hand-pointer": [ 448, 512, [], "f25a", "M448 240v96c0 3.084-.356 6.159-1.063 9.162l-32 136C410.686 499.23 394.562 512 376 512H168a40.004 40.004 0 0 1-32.35-16.473l-127.997-176c-12.993-17.866-9.043-42.883 8.822-55.876 17.867-12.994 42.884-9.043 55.877 8.823L104 315.992V40c0-22.091 17.908-40 40-40s40 17.909 40 40v200h8v-40c0-22.091 17.908-40 40-40s40 17.909 40 40v40h8v-24c0-22.091 17.908-40 40-40s40 17.909 40 40v24h8c0-22.091 17.908-40 40-40s40 17.909 40 40zm-256 80h-8v96h8v-96zm88 0h-8v96h8v-96zm88 0h-8v96h8v-96z" ], + "hand-rock": [ 512, 512, [], "f255", "M512 128.79c0-26.322-20.861-48.344-47.18-48.783C437.935 79.558 416 101.217 416 128h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C333.935 47.558 312 69.217 312 96v32h-8V80.79c0-26.322-20.861-48.344-47.18-48.783C229.935 31.558 208 53.217 208 80v48h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C125.935 47.558 104 69.217 104 96v136l-8-7.111V176.79c0-26.322-20.861-48.344-47.18-48.783C21.935 127.558 0 149.217 0 176v66.445a95.998 95.998 0 0 0 32.221 71.751l111.668 99.261A47.999 47.999 0 0 1 160 449.333V456c0 13.255 10.745 24 24 24h240c13.255 0 24-10.745 24-24v-2.921a96.01 96.01 0 0 1 7.523-37.254l48.954-116.265A96.002 96.002 0 0 0 512 262.306V128.79z" ], + "hand-scissors": [ 512, 512, [], "f257", "M216 440c0-22.092 17.909-40 40-40v-8h-32c-22.091 0-40-17.908-40-40s17.909-40 40-40h32v-8H48c-26.51 0-48-21.49-48-48s21.49-48 48-48h208v-13.572l-177.551-69.74c-24.674-9.694-36.818-37.555-27.125-62.228 9.693-24.674 37.554-36.817 62.228-27.124l190.342 74.765 24.872-31.09c12.306-15.381 33.978-19.515 51.081-9.741l112 64A40.002 40.002 0 0 1 512 168v240c0 18.562-12.77 34.686-30.838 38.937l-136 32A39.982 39.982 0 0 1 336 480h-80c-22.091 0-40-17.908-40-40z" ], + "hand-spock": [ 512, 512, [], "f259", "M10.872 316.585c15.139-16.086 40.454-16.854 56.543-1.713L128 371.893v-79.405L88.995 120.865c-4.896-21.542 8.598-42.974 30.14-47.87 21.549-4.894 42.975 8.599 47.87 30.141L201.747 256h9.833L164.016 48.966c-4.946-21.531 8.498-42.994 30.028-47.94 21.532-4.95 42.994 8.498 47.94 30.028L293.664 256h15.105l48.425-193.702c5.357-21.432 27.075-34.462 48.507-29.104 21.432 5.358 34.463 27.075 29.104 48.507L391.231 256h11.08l30.768-129.265c5.117-21.491 26.685-34.768 48.177-29.647 21.491 5.117 34.765 26.686 29.647 48.177l-36.292 152.467A96.024 96.024 0 0 0 472 319.967v42.102a96.002 96.002 0 0 1-3.96 27.287l-26.174 88.287C435.825 498.022 417.101 512 395.846 512H179.172a48.002 48.002 0 0 1-32.898-13.046L12.585 373.128c-16.087-15.141-16.853-40.456-1.713-56.543z" ], + hands: [ 640, 512, [], "f4c2", "M204.8 230.4c-10.6-14.1-30.7-17-44.8-6.4-14.1 10.6-17 30.7-6.4 44.8l38.1 50.8c4.8 6.4 4.1 15.3-1.5 20.9l-12.8 12.8c-6.7 6.7-17.6 6.2-23.6-1.1L64 244.4V96c0-17.7-14.3-32-32-32S0 78.3 0 96v218.4c0 10.9 3.7 21.5 10.5 30l104.1 134.3c5 6.5 8.4 13.9 10.4 21.7 1.8 6.9 8.1 11.6 15.3 11.6H272c8.8 0 16-7.2 16-16V384c0-27.7-9-54.6-25.6-76.8l-57.6-76.8zM608 64c-17.7 0-32 14.3-32 32v148.4l-89.8 107.8c-6 7.2-17 7.7-23.6 1.1l-12.8-12.8c-5.6-5.6-6.3-14.5-1.5-20.9l38.1-50.8c10.6-14.1 7.7-34.2-6.4-44.8-14.1-10.6-34.2-7.7-44.8 6.4l-57.6 76.8C361 329.4 352 356.3 352 384v112c0 8.8 7.2 16 16 16h131.7c7.1 0 13.5-4.7 15.3-11.6 2-7.8 5.4-15.2 10.4-21.7l104.1-134.3c6.8-8.5 10.5-19.1 10.5-30V96c0-17.7-14.3-32-32-32z" ], + "hands-helping": [ 640, 512, [], "f4c4", "M488 192H336v56c0 39.7-32.3 72-72 72s-72-32.3-72-72V126.4l-64.9 39C107.8 176.9 96 197.8 96 220.2v47.3l-80 46.2C.7 322.5-4.6 342.1 4.3 357.4l80 138.6c8.8 15.3 28.4 20.5 43.7 11.7L231.4 448H368c35.3 0 64-28.7 64-64h16c17.7 0 32-14.3 32-32v-64h8c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zm147.7-37.4L555.7 16C546.9.7 527.3-4.5 512 4.3L408.6 64H306.4c-12 0-23.7 3.4-33.9 9.7L239 94.6c-9.4 5.8-15 16.1-15 27.1V248c0 22.1 17.9 40 40 40s40-17.9 40-40v-88h184c30.9 0 56 25.1 56 56v28.5l80-46.2c15.3-8.9 20.5-28.4 11.7-43.7z" ], + handshake: [ 640, 512, [], "f2b5", "M434.7 64h-85.9c-8 0-15.7 3-21.6 8.4l-98.3 90c-.1.1-.2.3-.3.4-16.6 15.6-16.3 40.5-2.1 56 12.7 13.9 39.4 17.6 56.1 2.7.1-.1.3-.1.4-.2l79.9-73.2c6.5-5.9 16.7-5.5 22.6 1 6 6.5 5.5 16.6-1 22.6l-26.1 23.9L504 313.8c2.9 2.4 5.5 5 7.9 7.7V128l-54.6-54.6c-5.9-6-14.1-9.4-22.6-9.4zM544 128.2v223.9c0 17.7 14.3 32 32 32h64V128.2h-96zm48 223.9c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM0 384h64c17.7 0 32-14.3 32-32V128.2H0V384zm48-63.9c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16c0-8.9 7.2-16 16-16zm435.9 18.6L334.6 217.5l-30 27.5c-29.7 27.1-75.2 24.5-101.7-4.4-26.9-29.4-24.8-74.9 4.4-101.7L289.1 64h-83.8c-8.5 0-16.6 3.4-22.6 9.4L128 128v223.9h18.3l90.5 81.9c27.4 22.3 67.7 18.1 90-9.3l.2-.2 17.9 15.5c15.9 13 39.4 10.5 52.3-5.4l31.4-38.6 5.4 4.4c13.7 11.1 33.9 9.1 45-4.7l9.5-11.7c11.2-13.8 9.1-33.9-4.6-45.1z" ], + hashtag: [ 448, 512, [], "f292", "M440.667 182.109l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l14.623-81.891C377.123 38.754 371.468 32 363.997 32h-40.632a12 12 0 0 0-11.813 9.891L296.175 128H197.54l14.623-81.891C213.477 38.754 207.822 32 200.35 32h-40.632a12 12 0 0 0-11.813 9.891L132.528 128H53.432a12 12 0 0 0-11.813 9.891l-7.143 40C33.163 185.246 38.818 192 46.289 192h74.81L98.242 320H19.146a12 12 0 0 0-11.813 9.891l-7.143 40C-1.123 377.246 4.532 384 12.003 384h74.81L72.19 465.891C70.877 473.246 76.532 480 84.003 480h40.632a12 12 0 0 0 11.813-9.891L151.826 384h98.634l-14.623 81.891C234.523 473.246 240.178 480 247.65 480h40.632a12 12 0 0 0 11.813-9.891L315.472 384h79.096a12 12 0 0 0 11.813-9.891l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l22.857-128h79.096a12 12 0 0 0 11.813-9.891zM261.889 320h-98.634l22.857-128h98.634l-22.857 128z" ], + hdd: [ 576, 512, [], "f0a0", "M576 304v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48zm-48-80a79.557 79.557 0 0 1 30.777 6.165L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L17.223 230.165A79.557 79.557 0 0 1 48 224h480zm-48 96c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm-96 0c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z" ], + heading: [ 512, 512, [], "f1dc", "M496 80V48c0-8.837-7.163-16-16-16H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.621v128H154.379V96H192c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.275v320H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.621V288H357.62v128H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.275V96H480c8.837 0 16-7.163 16-16z" ], + headphones: [ 512, 512, [], "f025", "M256 32C114.52 32 0 146.496 0 288v48a32 32 0 0 0 17.689 28.622l14.383 7.191C34.083 431.903 83.421 480 144 480h24c13.255 0 24-10.745 24-24V280c0-13.255-10.745-24-24-24h-24c-31.342 0-59.671 12.879-80 33.627V288c0-105.869 86.131-192 192-192s192 86.131 192 192v1.627C427.671 268.879 399.342 256 368 256h-24c-13.255 0-24 10.745-24 24v176c0 13.255 10.745 24 24 24h24c60.579 0 109.917-48.098 111.928-108.187l14.382-7.191A32 32 0 0 0 512 336v-48c0-141.479-114.496-256-256-256z" ], + "headphones-alt": [ 512, 512, [], "f58f", "M160 288h-16c-35.35 0-64 28.7-64 64.12v63.76c0 35.41 28.65 64.12 64 64.12h16c17.67 0 32-14.36 32-32.06V320.06c0-17.71-14.33-32.06-32-32.06zm208 0h-16c-17.67 0-32 14.35-32 32.06v127.88c0 17.7 14.33 32.06 32 32.06h16c35.35 0 64-28.71 64-64.12v-63.76c0-35.41-28.65-64.12-64-64.12zM256 32C112.91 32 4.57 151.13 0 288v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288c0-114.67 93.33-207.8 208-207.82 114.67.02 208 93.15 208 207.82v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288C507.43 151.13 399.09 32 256 32z" ], + headset: [ 512, 512, [], "f590", "M192 208c0-17.67-14.33-32-32-32h-16c-35.35 0-64 28.65-64 64v48c0 35.35 28.65 64 64 64h16c17.67 0 32-14.33 32-32V208zm176 144c35.35 0 64-28.65 64-64v-48c0-35.35-28.65-64-64-64h-16c-17.67 0-32 14.33-32 32v112c0 17.67 14.33 32 32 32h16zM256 0C113.18 0 4.58 118.83 0 256v16c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-16c0-114.69 93.31-208 208-208s208 93.31 208 208h-.12c.08 2.43.12 165.72.12 165.72 0 23.35-18.93 42.28-42.28 42.28H320c0-26.51-21.49-48-48-48h-32c-26.51 0-48 21.49-48 48s21.49 48 48 48h181.72c49.86 0 90.28-40.42 90.28-90.28V256C507.42 118.83 398.82 0 256 0z" ], + heart: [ 512, 512, [], "f004", "M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z" ], + heartbeat: [ 512, 512, [], "f21e", "M320.2 243.8l-49.7 99.4c-6 12.1-23.4 11.7-28.9-.6l-56.9-126.3-30 71.7H60.6l182.5 186.5c7.1 7.3 18.6 7.3 25.7 0L451.4 288H342.3l-22.1-44.2zM473.7 73.9l-2.4-2.5c-51.5-52.6-135.8-52.6-187.4 0L256 100l-27.9-28.5c-51.5-52.7-135.9-52.7-187.4 0l-2.4 2.4C-10.4 123.7-12.5 203 31 256h102.4l35.9-86.2c5.4-12.9 23.6-13.2 29.4-.4l58.2 129.3 49-97.9c5.9-11.8 22.7-11.8 28.6 0l27.6 55.2H481c43.5-53 41.4-132.3-7.3-182.1z" ], + helicopter: [ 640, 512, [], "f533", "M304 384h272c17.67 0 32-14.33 32-32 0-123.71-100.29-224-224-224V64h176c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H144c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h176v64H112L68.8 70.4C65.78 66.37 61.03 64 56 64H16.01C5.6 64-2.04 73.78.49 83.88L32 192l160 64 86.4 115.2A31.992 31.992 0 0 0 304 384zm112-188.49C478.55 208.3 528.03 257.44 540.79 320H416V195.51zm219.37 263.3l-22.15-22.2c-6.25-6.26-16.24-6.1-22.64.01-7.09 6.77-13.84 11.25-24.64 11.25H240c-8.84 0-16 7.18-16 16.03v32.06c0 8.85 7.16 16.03 16 16.03h325.94c14.88 0 35.3-.47 68.45-29.52 7.02-6.14 7.57-17.05.98-23.66z" ], + highlighter: [ 544, 512, [], "f591", "M0 479.98L99.92 512l35.45-35.45-67.04-67.04L0 479.98zm124.61-240.01a36.592 36.592 0 0 0-10.79 38.1l13.05 42.83-50.93 50.94 96.23 96.23 50.86-50.86 42.74 13.08c13.73 4.2 28.65-.01 38.15-10.78l35.55-41.64-173.34-173.34-41.52 35.44zm403.31-160.7l-63.2-63.2c-20.49-20.49-53.38-21.52-75.12-2.35L190.55 183.68l169.77 169.78L530.27 154.4c19.18-21.74 18.15-54.63-2.35-75.13z" ], + history: [ 512, 512, [], "f1da", "M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z" ], + "hockey-puck": [ 512, 512, [], "f453", "M0 160c0-53 114.6-96 256-96s256 43 256 96-114.6 96-256 96S0 213 0 160zm0 82.2V352c0 53 114.6 96 256 96s256-43 256-96V242.2c-113.4 82.3-398.5 82.4-512 0z" ], + home: [ 576, 512, [], "f015", "M488 312.7V456c0 13.3-10.7 24-24 24H348c-6.6 0-12-5.4-12-12V356c0-6.6-5.4-12-12-12h-72c-6.6 0-12 5.4-12 12v112c0 6.6-5.4 12-12 12H112c-13.3 0-24-10.7-24-24V312.7c0-3.6 1.6-7 4.4-9.3l188-154.8c4.4-3.6 10.8-3.6 15.3 0l188 154.8c2.7 2.3 4.3 5.7 4.3 9.3zm83.6-60.9L488 182.9V44.4c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12V117l-89.5-73.7c-17.7-14.6-43.3-14.6-61 0L4.4 251.8c-5.1 4.2-5.8 11.8-1.6 16.9l25.5 31c4.2 5.1 11.8 5.8 16.9 1.6l235.2-193.7c4.4-3.6 10.8-3.6 15.3 0l235.2 193.7c5.1 4.2 12.7 3.5 16.9-1.6l25.5-31c4.2-5.2 3.4-12.7-1.7-16.9z" ], + hospital: [ 448, 512, [], "f0f8", "M448 492v20H0v-20c0-6.627 5.373-12 12-12h20V120c0-13.255 10.745-24 24-24h88V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v72h88c13.255 0 24 10.745 24 24v360h20c6.627 0 12 5.373 12 12zM308 192h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-168 64h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm104 128h-40c-6.627 0-12 5.373-12 12v84h64v-84c0-6.627-5.373-12-12-12zm64-96h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-116 12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zM182 96h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6z" ], + "hospital-alt": [ 576, 512, [], "f47d", "M544 96H416V32c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32v368c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16V128c0-17.7-14.3-32-32-32zM160 436c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm160 128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm16-170c0 3.3-2.7 6-6 6h-26v26c0 3.3-2.7 6-6 6h-20c-3.3 0-6-2.7-6-6v-26h-26c-3.3 0-6-2.7-6-6v-20c0-3.3 2.7-6 6-6h26V86c0-3.3 2.7-6 6-6h20c3.3 0 6 2.7 6 6v26h26c3.3 0 6 2.7 6 6v20zm144 298c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z" ], + "hospital-symbol": [ 512, 512, [], "f47e", "M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm112 376c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-88h-96v88c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V136c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v88h96v-88c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v240z" ], + "hot-tub": [ 512, 512, [], "f593", "M414.21 177.65c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C378.96 6.14 372.22 0 364.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zm-108 0c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C270.96 6.14 264.22 0 256.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zM480 256H256l-110.93-83.2a63.99 63.99 0 0 0-38.4-12.8H64c-35.35 0-64 28.65-64 64v224c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64V288c0-17.67-14.33-32-32-32zM128 440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zM64 128c35.35 0 64-28.65 64-64S99.35 0 64 0 0 28.65 0 64s28.65 64 64 64z" ], + hotel: [ 576, 512, [], "f594", "M560 64c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h15.98v384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h240v-80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v80h240c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-16V64h16zm-304 44.8c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm0 96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm-128-96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zM179.2 256h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8zM192 384c0-53.02 42.98-96 96-96s96 42.98 96 96H192zm256-140.8c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-96c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4z" ], + hourglass: [ 384, 512, [], "f254", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64z" ], + "hourglass-end": [ 384, 512, [], "f253", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64zM192 208c-57.787 0-104-66.518-104-144h208c0 77.945-46.51 144-104 144z" ], + "hourglass-half": [ 384, 512, [], "f252", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-75.078 384H99.08c17.059-46.797 52.096-80 92.92-80 40.821 0 75.862 33.196 92.922 80zm.019-256H99.078C91.988 108.548 88 86.748 88 64h208c0 22.805-3.987 44.587-11.059 64z" ], + "hourglass-start": [ 384, 512, [], "f251", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-64 448H88c0-77.458 46.204-144 104-144 57.786 0 104 66.517 104 144z" ], + "i-cursor": [ 256, 512, [], "f246", "M256 52.048V12.065C256 5.496 250.726.148 244.158.066 211.621-.344 166.469.011 128 37.959 90.266.736 46.979-.114 11.913.114 5.318.157 0 5.519 0 12.114v39.645c0 6.687 5.458 12.078 12.145 11.998C38.111 63.447 96 67.243 96 112.182V224H60c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h36v112c0 44.932-56.075 48.031-83.95 47.959C5.404 447.942 0 453.306 0 459.952v39.983c0 6.569 5.274 11.917 11.842 11.999 32.537.409 77.689.054 116.158-37.894 37.734 37.223 81.021 38.073 116.087 37.845 6.595-.043 11.913-5.405 11.913-12V460.24c0-6.687-5.458-12.078-12.145-11.998C217.889 448.553 160 444.939 160 400V288h36c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-36V112.182c0-44.932 56.075-48.213 83.95-48.142 6.646.018 12.05-5.346 12.05-11.992z" ], + "id-badge": [ 384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM144 32h96c8.8 0 16 7.2 16 16s-7.2 16-16 16h-96c-8.8 0-16-7.2-16-16s7.2-16 16-16zm48 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 416 80 407.4 80 396.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z" ], + "id-card": [ 576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v16h576V80c0-26.5-21.5-48-48-48zM0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V128H0v304zm352-232c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zM176 192c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zM67.1 396.2C75.5 370.5 99.6 352 128 352h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.9-5.2 19.8-15.6 19.8H82.7c-10.4 0-18.8-10-15.6-19.8z" ], + "id-card-alt": [ 576, 512, [], "f47f", "M528 64H384v96H192V64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM288 224c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm93.3 224H194.7c-10.4 0-18.8-10-15.6-19.8 8.3-25.6 32.4-44.2 60.9-44.2h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.8-5.2 19.8-15.6 19.8zM352 32c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v96h128V32z" ], + image: [ 512, 512, [], "f03e", "M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z" ], + images: [ 576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v208c0 44.112 35.888 80 80 80h336zm96-80V80c0-26.51-21.49-48-48-48H144c-26.51 0-48 21.49-48 48v256c0 26.51 21.49 48 48 48h384c26.51 0 48-21.49 48-48zM256 128c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-96 144l55.515-55.515c4.686-4.686 12.284-4.686 16.971 0L272 256l135.515-135.515c4.686-4.686 12.284-4.686 16.971 0L512 208v112H160v-48z" ], + inbox: [ 576, 512, [], "f01c", "M567.938 243.908L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L8.062 243.908A47.994 47.994 0 0 0 0 270.533V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V270.533a47.994 47.994 0 0 0-8.062-26.625zM162.252 128h251.497l85.333 128H376l-32 64H232l-32-64H76.918l85.334-128z" ], + indent: [ 448, 512, [], "f03c", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm176 144h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm-52.687-111.313l-96-95.984C17.266 138.652 0 145.776 0 160.016v191.975c0 14.329 17.325 21.304 27.313 11.313l96-95.992c6.249-6.247 6.249-16.377 0-22.625z" ], + industry: [ 512, 512, [], "f275", "M475.115 163.781L336 252.309v-68.28c0-18.916-20.931-30.399-36.885-20.248L160 252.309V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h464c13.255 0 24-10.745 24-24V184.029c0-18.917-20.931-30.399-36.885-20.248z" ], + infinity: [ 640, 512, [], "f534", "M471.1 96C405 96 353.3 137.3 320 174.6 286.7 137.3 235 96 168.9 96 75.8 96 0 167.8 0 256s75.8 160 168.9 160c66.1 0 117.8-41.3 151.1-78.6 33.3 37.3 85 78.6 151.1 78.6 93.1 0 168.9-71.8 168.9-160S564.2 96 471.1 96zM168.9 320c-40.2 0-72.9-28.7-72.9-64s32.7-64 72.9-64c38.2 0 73.4 36.1 94 64-20.4 27.6-55.9 64-94 64zm302.2 0c-38.2 0-73.4-36.1-94-64 20.4-27.6 55.9-64 94-64 40.2 0 72.9 28.7 72.9 64s-32.7 64-72.9 64z" ], + info: [ 192, 512, [], "f129", "M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z" ], + "info-circle": [ 512, 512, [], "f05a", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z" ], + italic: [ 320, 512, [], "f033", "M204.758 416h-33.849l62.092-320h40.725a16 16 0 0 0 15.704-12.937l6.242-32C297.599 41.184 290.034 32 279.968 32H120.235a16 16 0 0 0-15.704 12.937l-6.242 32C96.362 86.816 103.927 96 113.993 96h33.846l-62.09 320H46.278a16 16 0 0 0-15.704 12.935l-6.245 32C22.402 470.815 29.967 480 40.034 480h158.479a16 16 0 0 0 15.704-12.935l6.245-32c1.927-9.88-5.638-19.065-15.704-19.065z" ], + joint: [ 640, 512, [], "f595", "M444.34 181.1c22.38 15.68 35.66 41.16 35.66 68.59V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-43.24-21.01-83.41-56.34-108.06C463.85 125.02 448 99.34 448 70.31V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v66.4c0 43.69 24.56 81.63 60.34 106.7zM194.97 358.98C126.03 370.07 59.69 394.69 0 432c83.65 52.28 180.3 80 278.94 80h88.57L254.79 380.49c-14.74-17.2-37.45-25.11-59.82-21.51zM553.28 87.09c-5.67-3.8-9.28-9.96-9.28-16.78V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v62.31c0 22.02 10.17 43.41 28.64 55.39C550.79 153.04 576 199.54 576 249.69V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-65.44-32.41-126.19-86.72-162.6zM360.89 352.05c-34.4.06-86.81.15-88.21.17l117.8 137.43A63.987 63.987 0 0 0 439.07 512h88.45L409.57 374.4a63.955 63.955 0 0 0-48.68-22.35zM616 352H432l117.99 137.65A63.987 63.987 0 0 0 598.58 512H616c13.25 0 24-10.75 24-24V376c0-13.26-10.75-24-24-24z" ], + key: [ 512, 512, [], "f084", "M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z" ], + keyboard: [ 576, 512, [], "f11c", "M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z" ], + kiss: [ 496, 512, [], "f596", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm136 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm24-156c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + "kiss-beam": [ 496, 512, [], "f597", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-39 219.9l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5zM304 396c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm65-168.1l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5z" ], + "kiss-wink-heart": [ 504, 512, [], "f598", "M501.1 402.5c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zm-177.6-4c-5.6-20.3-2.3-42 9-59.7 29.7-46.3 98.7-45.5 127.8 4.3 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-.3-.7-23.9-84.6-23.9-84.6zM168 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm120 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-5.7-12.3 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.8-3.7-4.6-16.6 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C274.6 368.7 288 383 288 396zm16-179c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S400 181 404 206.2c1.7 11.1-11.3 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 217z" ], + "kiwi-bird": [ 576, 512, [], "f535", "M575.81 217.98C572.64 157.41 518.28 112 457.63 112h-9.37c-52.82 0-104.25-16.25-147.74-46.24-41.99-28.96-96.04-41.62-153.21-28.7C129.3 41.12-.08 78.24 0 224c.04 70.95 38.68 132.8 95.99 166.01V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-54.26c15.36 3.96 31.4 6.26 48 6.26 5.44 0 10.68-.73 16-1.18V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-59.43c14.24-5.06 27.88-11.39 40.34-19.51C342.07 355.25 393.86 336 448.46 336c25.48 0 16.01-.31 23.05-.78l74.41 136.44c2.86 5.23 8.3 8.34 14.05 8.34 1.31 0 2.64-.16 3.95-.5 7.09-1.8 12.05-8.19 12.05-15.5 0 0 .14-240.24-.16-246.02zM463.97 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm80 153.25l-39.86-73.08c15.12-5.83 28.73-14.6 39.86-25.98v99.06z" ], + language: [ 640, 512, [], "f1ab", "M304 416H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h280v320zm-120.676-72.622A12 12 0 0 0 194.839 352h22.863c8.22 0 14.007-8.078 11.362-15.861L171.61 167.085a12 12 0 0 0-11.362-8.139h-32.489a12.001 12.001 0 0 0-11.362 8.139L58.942 336.139C56.297 343.922 62.084 352 70.304 352h22.805a12 12 0 0 0 11.535-8.693l9.118-31.807h60.211l9.351 31.878zm-39.051-140.42s4.32 21.061 7.83 33.21l10.8 37.531h-38.07l11.07-37.531c3.51-12.15 7.83-33.21 7.83-33.21h.54zM616 416H336V96h280c13.255 0 24 10.745 24 24v272c0 13.255-10.745 24-24 24zm-36-228h-64v-16c0-6.627-5.373-12-12-12h-16c-6.627 0-12 5.373-12 12v16h-64c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h114.106c-6.263 14.299-16.518 28.972-30.023 43.206-6.56-6.898-12.397-13.91-17.365-20.933-3.639-5.144-10.585-6.675-15.995-3.446l-7.28 4.346-6.498 3.879c-5.956 3.556-7.693 11.421-3.735 17.117 6.065 8.729 13.098 17.336 20.984 25.726-8.122 6.226-16.841 12.244-26.103 17.964-5.521 3.41-7.381 10.556-4.162 16.19l7.941 13.896c3.362 5.883 10.935 7.826 16.706 4.276 12.732-7.831 24.571-16.175 35.443-24.891 10.917 8.761 22.766 17.102 35.396 24.881 5.774 3.556 13.353 1.618 16.717-4.27l7.944-13.903c3.213-5.623 1.37-12.76-4.135-16.171a312.737 312.737 0 0 1-26.06-18.019c21.024-22.425 35.768-46.289 42.713-69.85H580c6.627 0 12-5.373 12-12v-16c0-6.625-5.373-11.998-12-11.998z" ], + laptop: [ 640, 512, [], "f109", "M512 64v256H128V64h384m16-64H112C85.5 0 64 21.5 64 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm100 416H389.5c-3 0-5.5 2.1-5.9 5.1C381.2 436.3 368 448 352 448h-64c-16 0-29.2-11.7-31.6-26.9-.5-2.9-3-5.1-5.9-5.1H12c-6.6 0-12 5.4-12 12v36c0 26.5 21.5 48 48 48h544c26.5 0 48-21.5 48-48v-36c0-6.6-5.4-12-12-12z" ], + laugh: [ 496, 512, [], "f599", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 152c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm88 272h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18-8.9 71-69.5 126-142.9 126z" ], + "laugh-beam": [ 496, 512, [], "f59a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm24 199.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.8 4.1-15.1-4.5zm-160 0c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z" ], + "laugh-squint": [ 496, 512, [], "f59b", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 161.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 180l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z" ], + "laugh-wink": [ 496, 512, [], "f59c", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm20.1 198.1c4-25.2 34.2-42.1 59.9-42.1s55.9 16.9 59.9 42.1c1.7 11.1-11.4 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 217c-8.4 7.4-21.6.3-19.9-10.9zM168 160c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm230.9 146C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z" ], + leaf: [ 576, 512, [], "f06c", "M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z" ], + lemon: [ 512, 512, [], "f094", "M489.038 22.963C465.944-.13 434.648-5.93 413.947 6.129c-58.906 34.312-181.25-53.077-321.073 86.746S40.441 355.041 6.129 413.945c-12.059 20.702-6.26 51.999 16.833 75.093 23.095 23.095 54.392 28.891 75.095 16.832 58.901-34.31 181.246 53.079 321.068-86.743S471.56 156.96 505.871 98.056c12.059-20.702 6.261-51.999-16.833-75.093zM243.881 95.522c-58.189 14.547-133.808 90.155-148.358 148.358-1.817 7.27-8.342 12.124-15.511 12.124-1.284 0-2.59-.156-3.893-.481-8.572-2.144-13.784-10.83-11.642-19.403C81.901 166.427 166.316 81.93 236.119 64.478c8.575-2.143 17.261 3.069 19.403 11.642s-3.069 17.259-11.641 19.402z" ], + "less-than": [ 384, 512, [], "f536", "M365.46 357.74L147.04 255.89l218.47-101.88c16.02-7.47 22.95-26.51 15.48-42.53l-13.52-29C360 66.46 340.96 59.53 324.94 67L18.48 209.91a32.014 32.014 0 0 0-18.48 29v34.24c0 12.44 7.21 23.75 18.48 29l306.31 142.83c16.06 7.49 35.15.54 42.64-15.52l13.56-29.08c7.49-16.06.54-35.15-15.53-42.64z" ], + "less-than-equal": [ 448, 512, [], "f537", "M54.98 214.2l301.41 119.87c18.39 6.03 38.71-2.54 45.38-19.15l12.09-30.08c6.68-16.61-2.82-34.97-21.21-41l-175.44-68.05 175.56-68.09c18.29-6 27.74-24.27 21.1-40.79l-12.03-29.92c-6.64-16.53-26.86-25.06-45.15-19.06L54.98 137.89C41.21 142.41 32 154.5 32 168.07v15.96c0 13.56 9.21 25.65 22.98 30.17zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z" ], + "level-down-alt": [ 320, 512, [], "f3be", "M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z" ], + "level-up-alt": [ 320, 512, [], "f3bf", "M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z" ], + "life-ring": [ 512, 512, [], "f1cd", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm173.696 119.559l-63.399 63.399c-10.987-18.559-26.67-34.252-45.255-45.255l63.399-63.399a218.396 218.396 0 0 1 45.255 45.255zM256 352c-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96-42.981 96-96 96zM127.559 82.304l63.399 63.399c-18.559 10.987-34.252 26.67-45.255 45.255l-63.399-63.399a218.372 218.372 0 0 1 45.255-45.255zM82.304 384.441l63.399-63.399c10.987 18.559 26.67 34.252 45.255 45.255l-63.399 63.399a218.396 218.396 0 0 1-45.255-45.255zm302.137 45.255l-63.399-63.399c18.559-10.987 34.252-26.67 45.255-45.255l63.399 63.399a218.403 218.403 0 0 1-45.255 45.255z" ], + lightbulb: [ 384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zm-143.107-44c-9.907 0-18.826-6.078-22.376-15.327C67.697 267.541 16 277.731 16 176 16 78.803 94.805 0 192 0s176 78.803 176 176c0 101.731-51.697 91.541-90.516 192.673-3.55 9.249-12.47 15.327-22.376 15.327H128.893zM112 176c0-44.112 35.888-80 80-80 8.837 0 16-7.164 16-16s-7.163-16-16-16c-61.757 0-112 50.243-112 112 0 8.836 7.164 16 16 16s16-7.164 16-16z" ], + link: [ 512, 512, [], "f0c1", "M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z" ], + "lira-sign": [ 384, 512, [], "f195", "M371.994 256h-48.019C317.64 256 312 260.912 312 267.246 312 368 230.179 416 144 416V256.781l134.603-29.912A12 12 0 0 0 288 215.155v-40.976c0-7.677-7.109-13.38-14.603-11.714L144 191.219V160.78l134.603-29.912A12 12 0 0 0 288 119.154V78.179c0-7.677-7.109-13.38-14.603-11.714L144 95.219V44c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v68.997L9.397 125.131A12 12 0 0 0 0 136.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 178.558v30.439L9.397 221.131A12 12 0 0 0 0 232.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 274.558V468c0 6.627 5.373 12 12 12h79.583c134.091 0 223.255-77.834 228.408-211.592.261-6.782-5.211-12.408-11.997-12.408z" ], + list: [ 512, 512, [], "f03a", "M128 116V76c0-8.837 7.163-16 16-16h352c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H144c-8.837 0-16-7.163-16-16zm16 176h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 144h64c8.837 0 16-7.163 16-16V64c0-8.837-7.163-16-16-16H16C7.163 48 0 55.163 0 64v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16z" ], + "list-alt": [ 512, 512, [], "f022", "M464 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM128 120c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288-136v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12z" ], + "list-ol": [ 512, 512, [], "f0cb", "M3.263 139.527c0-7.477 3.917-11.572 11.573-11.572h15.131V88.078c0-5.163.534-10.503.534-10.503h-.356s-1.779 2.67-2.848 3.738c-4.451 4.273-10.504 4.451-15.666-1.068l-5.518-6.231c-5.342-5.341-4.984-11.216.534-16.379l21.72-19.938C32.815 33.602 36.732 32 42.785 32H54.89c7.656 0 11.749 3.916 11.749 11.572v84.384h15.488c7.655 0 11.572 4.094 11.572 11.572v8.901c0 7.477-3.917 11.572-11.572 11.572H14.836c-7.656 0-11.573-4.095-11.573-11.572v-8.902zM2.211 304.591c0-47.278 50.955-56.383 50.955-69.165 0-7.18-5.954-8.755-9.28-8.755-3.153 0-6.479 1.051-9.455 3.852-5.079 4.903-10.507 7.004-16.111 2.451l-8.579-6.829c-5.779-4.553-7.18-9.805-2.803-15.409C13.592 201.981 26.025 192 47.387 192c19.437 0 44.476 10.506 44.476 39.573 0 38.347-46.753 46.402-48.679 56.909h39.049c7.529 0 11.557 4.027 11.557 11.382v8.755c0 7.354-4.028 11.382-11.557 11.382h-67.94c-7.005 0-12.083-4.028-12.083-11.382v-4.028zM5.654 454.61l5.603-9.28c3.853-6.654 9.105-7.004 15.584-3.152 4.903 2.101 9.63 3.152 14.359 3.152 10.155 0 14.358-3.502 14.358-8.23 0-6.654-5.604-9.106-15.934-9.106h-4.728c-5.954 0-9.28-2.101-12.258-7.88l-1.05-1.926c-2.451-4.728-1.226-9.806 2.801-14.884l5.604-7.004c6.829-8.405 12.257-13.483 12.257-13.483v-.35s-4.203 1.051-12.608 1.051H16.685c-7.53 0-11.383-4.028-11.383-11.382v-8.755c0-7.53 3.853-11.382 11.383-11.382h58.484c7.529 0 11.382 4.027 11.382 11.382v3.327c0 5.778-1.401 9.806-5.079 14.183l-17.509 20.137c19.611 5.078 28.716 20.487 28.716 34.845 0 21.363-14.358 44.126-48.503 44.126-16.636 0-28.192-4.728-35.896-9.455-5.779-4.202-6.304-9.805-2.626-15.934zM144 132h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" ], + "list-ul": [ 512, 512, [], "f0ca", "M96 96c0 26.51-21.49 48-48 48S0 122.51 0 96s21.49-48 48-48 48 21.49 48 48zM48 208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm0 160c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm96-236h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" ], + "location-arrow": [ 512, 512, [], "f124", "M443.683 4.529L27.818 196.418C-18.702 217.889-3.39 288 47.933 288H224v175.993c0 51.727 70.161 66.526 91.582 20.115L507.38 68.225c18.905-40.961-23.752-82.133-63.697-63.696z" ], + lock: [ 448, 512, [], "f023", "M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z" ], + "lock-open": [ 576, 512, [], "f3c1", "M423.5 0C339.5.3 272 69.5 272 153.5V224H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48h-48v-71.1c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v80c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-80C576 68 507.5-.3 423.5 0z" ], + "long-arrow-alt-down": [ 256, 512, [], "f309", "M168 345.941V44c0-6.627-5.373-12-12-12h-56c-6.627 0-12 5.373-12 12v301.941H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.569 9.373 33.941 0l86.059-86.059c15.119-15.119 4.411-40.971-16.971-40.971H168z" ], + "long-arrow-alt-left": [ 448, 512, [], "f30a", "M134.059 296H436c6.627 0 12-5.373 12-12v-56c0-6.627-5.373-12-12-12H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.569 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296z" ], + "long-arrow-alt-right": [ 448, 512, [], "f30b", "M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z" ], + "long-arrow-alt-up": [ 256, 512, [], "f30c", "M88 166.059V468c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12V166.059h46.059c21.382 0 32.09-25.851 16.971-40.971l-86.059-86.059c-9.373-9.373-24.569-9.373-33.941 0l-86.059 86.059c-15.119 15.119-4.411 40.971 16.971 40.971H88z" ], + "low-vision": [ 576, 512, [], "f2a8", "M569.344 231.631C512.96 135.949 407.81 72 288 72c-28.468 0-56.102 3.619-82.451 10.409L152.778 10.24c-7.601-10.858-22.564-13.5-33.423-5.9l-13.114 9.178c-10.86 7.601-13.502 22.566-5.9 33.426l43.131 58.395C89.449 131.73 40.228 174.683 6.682 231.581c-.01.017-.023.033-.034.05-8.765 14.875-8.964 33.528 0 48.739 38.5 65.332 99.742 115.862 172.859 141.349L55.316 244.302A272.194 272.194 0 0 1 83.61 208.39l119.4 170.58h.01l40.63 58.04a330.055 330.055 0 0 0 78.94 1.17l-189.98-271.4a277.628 277.628 0 0 1 38.777-21.563l251.836 356.544c7.601 10.858 22.564 13.499 33.423 5.9l13.114-9.178c10.86-7.601 13.502-22.567 5.9-33.426l-43.12-58.377-.007-.009c57.161-27.978 104.835-72.04 136.81-126.301a47.938 47.938 0 0 0 .001-48.739zM390.026 345.94l-19.066-27.23c24.682-32.567 27.711-76.353 8.8-111.68v.03c0 23.65-19.17 42.82-42.82 42.82-23.828 0-42.82-19.349-42.82-42.82 0-23.65 19.17-42.82 42.82-42.82h.03c-24.75-13.249-53.522-15.643-79.51-7.68l-19.068-27.237C253.758 123.306 270.488 120 288 120c75.162 0 136 60.826 136 136 0 34.504-12.833 65.975-33.974 89.94z" ], + "luggage-cart": [ 640, 512, [], "f59d", "M224 320h32V96h-32c-17.67 0-32 14.33-32 32v160c0 17.67 14.33 32 32 32zm352-32V128c0-17.67-14.33-32-32-32h-32v224h32c17.67 0 32-14.33 32-32zm48 96H128V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h48v368c0 8.84 7.16 16 16 16h82.94c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16h197.88c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM480 96V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v272h192V96zm-48 0h-96V48h96v48z" ], + magic: [ 512, 512, [], "f0d0", "M224 96l16-32 32-16-32-16-16-32-16 32-32 16 32 16 16 32zM80 160l26.66-53.33L160 80l-53.34-26.67L80 0 53.34 53.33 0 80l53.34 26.67L80 160zm352 128l-26.66 53.33L352 368l53.34 26.67L432 448l26.66-53.33L512 368l-53.34-26.67L432 288zm70.62-193.77L417.77 9.38C411.53 3.12 403.34 0 395.15 0c-8.19 0-16.38 3.12-22.63 9.38L9.38 372.52c-12.5 12.5-12.5 32.76 0 45.25l84.85 84.85c6.25 6.25 14.44 9.37 22.62 9.37 8.19 0 16.38-3.12 22.63-9.37l363.14-363.15c12.5-12.48 12.5-32.75 0-45.24zM359.45 203.46l-50.91-50.91 86.6-86.6 50.91 50.91-86.6 86.6z" ], + magnet: [ 512, 512, [], "f076", "M164.1 160H12c-6.6 0-12-5.4-12-12V68c0-19.9 16.1-36 36-36h104c19.9 0 36 16.1 36 36v80c.1 6.6-5.3 12-11.9 12zm348-12V67.9c0-19.9-16.1-36-36-36h-104c-19.9 0-36 16.1-36 36v80c0 6.6 5.4 12 12 12h152c6.6.1 12-5.3 12-11.9zm-164 44c-6.6 0-12 5.4-12 12v52c0 128.1-160 127.9-160 0v-52c0-6.6-5.4-12-12-12h-152c-6.7 0-12 5.4-12 12.1.1 21.4.6 40.3 0 53.3C.1 408 136.3 504 256.9 504 377.5 504 512 408 512 257.3c-.6-12.8-.2-33 0-53.2 0-6.7-5.3-12.1-12-12.1H348.1z" ], + male: [ 192, 512, [], "f183", "M96 0c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64S60.654 0 96 0m48 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H48c-26.51 0-48 21.49-48 48v136c0 13.255 10.745 24 24 24h16v136c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V352h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48z" ], + map: [ 576, 512, [], "f279", "M0 117.66v346.32c0 11.32 11.43 19.06 21.94 14.86L160 416V32L20.12 87.95A32.006 32.006 0 0 0 0 117.66zM192 416l192 64V96L192 32v384zM554.06 33.16L416 96v384l139.88-55.95A31.996 31.996 0 0 0 576 394.34V48.02c0-11.32-11.43-19.06-21.94-14.86z" ], + "map-marked": [ 576, 512, [], "f59f", "M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z" ], + "map-marked-alt": [ 576, 512, [], "f5a0", "M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zm0 168c-23.2 0-42-18.8-42-42s18.8-42 42-42 42 18.8 42 42-18.8 42-42 42zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z" ], + "map-marker": [ 384, 512, [], "f041", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0z" ], + "map-marker-alt": [ 384, 512, [], "f3c5", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z" ], + "map-pin": [ 320, 512, [], "f276", "M192 300.813v172.82l-22.015 33.023c-4.75 7.125-15.219 7.125-19.969 0L128 473.633v-172.82a162.221 162.221 0 0 0 64 0zM160 0c79.529 0 144 64.471 144 144s-64.471 144-144 144S16 223.529 16 144 80.471 0 160 0M80 136c0-39.701 32.299-72 72-72a8 8 0 0 0 0-16c-48.523 0-88 39.477-88 88a8 8 0 0 0 16 0z" ], + "map-signs": [ 512, 512, [], "f277", "M487.515 104.485L439.03 152.97a23.998 23.998 0 0 1-16.97 7.029H56c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h160v-8c0-13.255 10.745-24 24-24h32c13.255 0 24 10.745 24 24v8h126.059a24 24 0 0 1 16.97 7.029l48.485 48.485c4.687 4.687 4.687 12.285.001 16.971zM216 368v120c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V368h-80zm240-144H296v-48h-80v48H89.941a24 24 0 0 0-16.97 7.029l-48.485 48.485c-4.686 4.686-4.686 12.284 0 16.971l48.485 48.485a23.998 23.998 0 0 0 16.97 7.029H456c13.255 0 24-10.745 24-24v-80C480 234.745 469.255 224 456 224z" ], + marker: [ 512, 512, [], "f5a1", "M93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l75.4-75.4-128.02-128.02-75.4 75.4zM485.49 26.51c-35.35-35.35-92.67-35.35-128.02 0l-21.76 21.76-36.56-36.55c-15.62-15.62-40.95-15.62-56.56 0L138.47 115.84c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0l87.15-87.15 19.59 19.59L191.98 192 320 320.02l165.49-165.49c35.35-35.35 35.35-92.66 0-128.02z" ], + mars: [ 384, 512, [], "f222", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c0-6.6-5.4-12-12-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" ], + "mars-double": [ 512, 512, [], "f227", "M340 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C198.5 72.1 172.2 64 144 64 64.5 64 0 128.5 0 208s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.5 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 288c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80zm356-128.1h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7c-18.2-11.4-39-18.9-61.5-21.3-2.1 21.8-8.2 43.3-18.4 63.3 1.1 0 2.2-.1 3.2-.1 44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80c0-1.1 0-2.2.1-3.2-20 10.2-41.5 16.4-63.3 18.4C168.4 455.6 229.6 512 304 512c79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12v-79c0-6.7-5.4-12.1-12-12.1z" ], + "mars-stroke": [ 384, 512, [], "f229", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-17.5 17.5-14.1-14.1c-4.7-4.7-12.3-4.7-17 0L224.5 133c-4.7 4.7-4.7 12.3 0 17l14.1 14.1-18 18c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l18-18 14.1 14.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L329.2 164l17.5-17.5 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c-.1-6.6-5.5-12-12.1-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" ], + "mars-stroke-h": [ 480, 512, [], "f22b", "M476.2 247.5l-55.9-55.9c-7.6-7.6-20.5-2.2-20.5 8.5V224H376v-20c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v20h-27.6c-5.8-25.6-18.7-49.9-38.6-69.8C189.6 98 98.4 98 42.2 154.2c-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 19.9-19.9 32.8-44.2 38.6-69.8H312v20c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-20h23.9v23.9c0 10.7 12.9 16 20.5 8.5l55.9-55.9c4.6-4.7 4.6-12.3-.1-17zm-275.6 65.1c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z" ], + "mars-stroke-v": [ 288, 512, [], "f22a", "M245.8 234.2c-19.9-19.9-44.2-32.8-69.8-38.6v-25.4h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V81.4h23.9c10.7 0 16-12.9 8.5-20.5L152.5 5.1c-4.7-4.7-12.3-4.7-17 0L79.6 61c-7.6 7.6-2.2 20.5 8.5 20.5H112v24.7H92c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h20v25.4c-25.6 5.8-49.9 18.7-69.8 38.6-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 56.3-56.2 56.3-147.4 0-203.6zm-45.2 158.4c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z" ], + medal: [ 512, 512, [], "f5a2", "M223.75 130.75L154.62 15.54A31.997 31.997 0 0 0 127.18 0H16.03C3.08 0-4.5 14.57 2.92 25.18l111.27 158.96c29.72-27.77 67.52-46.83 109.56-53.39zM495.97 0H384.82c-11.24 0-21.66 5.9-27.44 15.54l-69.13 115.21c42.04 6.56 79.84 25.62 109.56 53.38L509.08 25.18C516.5 14.57 508.92 0 495.97 0zM256 160c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm92.52 157.26l-37.93 36.96 8.97 52.22c1.6 9.36-8.26 16.51-16.65 12.09L256 393.88l-46.9 24.65c-8.4 4.45-18.25-2.74-16.65-12.09l8.97-52.22-37.93-36.96c-6.82-6.64-3.05-18.23 6.35-19.59l52.43-7.64 23.43-47.52c2.11-4.28 6.19-6.39 10.28-6.39 4.11 0 8.22 2.14 10.33 6.39l23.43 47.52 52.43 7.64c9.4 1.36 13.17 12.95 6.35 19.59z" ], + medkit: [ 512, 512, [], "f0fa", "M96 480h320V128h-32V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v48H96v352zm96-384h128v32H192V96zm320 80v256c0 26.51-21.49 48-48 48h-16V128h16c26.51 0 48 21.49 48 48zM64 480H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v352zm288-208v32c0 8.837-7.163 16-16 16h-48v48c0 8.837-7.163 16-16 16h-32c-8.837 0-16-7.163-16-16v-48h-48c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h48v-48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v48h48c8.837 0 16 7.163 16 16z" ], + meh: [ 496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm176 192H152c-21.2 0-21.2-32 0-32h192c21.2 0 21.2 32 0 32zm-16-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + "meh-blank": [ 496, 512, [], "f5a4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + "meh-rolling-eyes": [ 496, 512, [], "f5a5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 224c0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64s-64-28.7-64-64zm224 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-112c-35.3 0-64-28.7-64-64 0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64z" ], + memory: [ 640, 512, [], "f538", "M640 130.94V96c0-17.67-14.33-32-32-32H32C14.33 64 0 78.33 0 96v34.94c18.6 6.61 32 24.19 32 45.06s-13.4 38.45-32 45.06V320h640v-98.94c-18.6-6.61-32-24.19-32-45.06s13.4-38.45 32-45.06zM224 256h-64V128h64v128zm128 0h-64V128h64v128zm128 0h-64V128h64v128zM0 448h64v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h64v-96H0v96z" ], + mercury: [ 288, 512, [], "f223", "M288 208c0-44.2-19.9-83.7-51.2-110.1 2.5-1.8 4.9-3.8 7.2-5.8 24.7-21.2 39.8-48.8 43.2-78.8.9-7.1-4.7-13.3-11.9-13.3h-40.5C229 0 224.1 4.1 223 9.8c-2.4 12.5-9.6 24.3-20.7 33.8C187 56.8 166.3 64 144 64s-43-7.2-58.4-20.4C74.5 34.1 67.4 22.3 64.9 9.8 63.8 4.1 58.9 0 53.2 0H12.7C5.5 0-.1 6.2.8 13.3 4.2 43.4 19.2 71 44 92.2c2.3 2 4.7 3.9 7.2 5.8C19.9 124.3 0 163.8 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z" ], + microchip: [ 512, 512, [], "f2db", "M416 48v416c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h224c26.51 0 48 21.49 48 48zm96 58v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42V88h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zM30 376h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6z" ], + microphone: [ 352, 512, [], "f130", "M176 352c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96zm160-160h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16z" ], + "microphone-alt": [ 352, 512, [], "f3c9", "M336 192h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16zM176 352c53.02 0 96-42.98 96-96h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96z" ], + "microphone-alt-slash": [ 640, 512, [], "f539", "M633.82 458.1L476.26 336.33C488.74 312.21 496 284.98 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67h-43.67l-41.4-32H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.78c11.71-1.62 23.1-4.28 33.96-8.08l-50.4-38.96c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z" ], + "microphone-slash": [ 640, 512, [], "f131", "M633.82 458.1l-157.8-121.96C488.61 312.13 496 285.01 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67V96c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.77c11.66-1.6 22.85-4.54 33.67-8.31l-50.11-38.73c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z" ], + minus: [ 448, 512, [], "f068", "M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" ], + "minus-circle": [ 512, 512, [], "f056", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM124 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H124z" ], + "minus-square": [ 448, 512, [], "f146", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H92z" ], + mobile: [ 320, 512, [], "f10b", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + "mobile-alt": [ 320, 512, [], "f3cd", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm112-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v312z" ], + "money-bill": [ 640, 512, [], "f0d6", "M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 176c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 48h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z" ], + "money-bill-alt": [ 640, 512, [], "f3d1", "M352 288h-16v-88c0-4.42-3.58-8-8-8h-13.58c-4.74 0-9.37 1.4-13.31 4.03l-15.33 10.22a7.994 7.994 0 0 0-2.22 11.09l8.88 13.31a7.994 7.994 0 0 0 11.09 2.22l.47-.31V288h-16c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8h64c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 192c-53.02 0-96-50.15-96-112 0-61.86 42.98-112 96-112s96 50.14 96 112c0 61.87-43 112-96 112zm272 32h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z" ], + "money-bill-wave": [ 640, 512, [], "f53a", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM48 132.22c20.12 5.04 41.12 7.57 62.72 8.93C104.84 170.54 79 192.69 48 192.69v-60.47zm0 285v-47.78c34.37 0 62.18 27.27 63.71 61.4-22.53-1.81-43.59-6.31-63.71-13.62zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 27.78c-17.52-4.39-35.71-6.85-54.32-8.44 5.87-26.08 27.5-45.88 54.32-49.28v57.72zm0-236.11c-30.89-3.91-54.86-29.7-55.81-61.55 19.54 2.17 38.09 6.23 55.81 12.66v48.89z" ], + "money-bill-wave-alt": [ 640, 512, [], "f53b", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96z" ], + "money-check": [ 640, 512, [], "f53c", "M0 448c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128H0v320zm448-208c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-32zm0 120c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H456c-4.42 0-8-3.58-8-8v-16zM64 264c0-4.42 3.58-8 8-8h304c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm0 96c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zM624 32H16C7.16 32 0 39.16 0 48v48h640V48c0-8.84-7.16-16-16-16z" ], + "money-check-alt": [ 640, 512, [], "f53d", "M608 32H32C14.33 32 0 46.33 0 64v384c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM176 327.88V344c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V152c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07zM416 312c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm160 0c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h272c4.42 0 8 3.58 8 8v16z" ], + monument: [ 384, 512, [], "f5a6", "M368 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h352c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-78.86-347.26a31.97 31.97 0 0 0-9.21-19.44L203.31 4.69c-6.25-6.25-16.38-6.25-22.63 0l-76.6 76.61a31.97 31.97 0 0 0-9.21 19.44L64 416h256l-30.86-315.26zM240 307.2c0 6.4-6.4 12.8-12.8 12.8h-70.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h70.4c6.4 0 12.8 6.4 12.8 12.8v38.4z" ], + moon: [ 512, 512, [], "f186", "M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z" ], + "mortar-pestle": [ 512, 512, [], "f5a7", "M501.54 60.91c17.22-17.22 12.51-46.25-9.27-57.14a35.696 35.696 0 0 0-37.37 3.37L251.09 160h151.37l99.08-99.09zM496 192H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c0 80.98 50.2 150.11 121.13 178.32-12.76 16.87-21.72 36.8-24.95 58.69-1.46 9.92 6.04 18.98 16.07 18.98h223.5c10.03 0 17.53-9.06 16.07-18.98-3.22-21.89-12.18-41.82-24.95-58.69C429.8 406.11 480 336.98 480 256h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" ], + motorcycle: [ 640, 512, [], "f21c", "M512.949 192.003c-14.862-.108-29.14 2.322-42.434 6.874L437.589 144H520c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24h-45.311a24 24 0 0 0-17.839 7.945l-37.496 41.663-22.774-37.956A24 24 0 0 0 376 64h-80c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h66.411l19.2 32H227.904c-17.727-23.073-44.924-40-99.904-40H72.54c-13.455 0-24.791 11.011-24.536 24.464C48.252 141.505 58.9 152 72 152h56c24.504 0 38.686 10.919 47.787 24.769l-11.291 20.529c-13.006-3.865-26.871-5.736-41.251-5.21C55.857 194.549 1.565 249.605.034 317.021-1.603 389.076 56.317 448 128 448c59.642 0 109.744-40.794 123.953-96h84.236c13.673 0 24.589-11.421 23.976-25.077-2.118-47.12 17.522-93.665 56.185-125.026l12.485 20.808c-27.646 23.654-45.097 58.88-44.831 98.179.47 69.556 57.203 126.452 126.758 127.11 71.629.678 129.839-57.487 129.234-129.099-.588-69.591-57.455-126.386-127.047-126.892zM128 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c4.242 0 8.405.341 12.469.982L98.97 316.434C90.187 332.407 101.762 352 120 352h81.297c-12.37 28.225-40.56 48-73.297 48zm388.351-.116C470.272 402.337 432 365.554 432 320c0-21.363 8.434-40.781 22.125-55.144l49.412 82.352c4.546 7.577 14.375 10.034 21.952 5.488l13.72-8.232c7.577-4.546 10.034-14.375 5.488-21.952l-48.556-80.927A80.005 80.005 0 0 1 512 240c45.554 0 82.338 38.273 79.884 84.352-2.16 40.558-34.974 73.372-75.533 75.532z" ], + "mouse-pointer": [ 320, 512, [], "f245", "M302.189 329.126H196.105l55.831 135.993c3.889 9.428-.555 19.999-9.444 23.999l-49.165 21.427c-9.165 4-19.443-.571-23.332-9.714l-53.053-129.136-86.664 89.138C18.729 472.71 0 463.554 0 447.977V18.299C0 1.899 19.921-6.096 30.277 5.443l284.412 292.542c11.472 11.179 3.007 31.141-12.5 31.141z" ], + music: [ 512, 512, [], "f001", "M470.4 1.5l-304 96C153.1 101.7 144 114 144 128v264.6c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V220.5l272-85.9v194c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V32c0-21.7-21.1-37-41.6-30.5z" ], + neuter: [ 288, 512, [], "f22c", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V468c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V316.4c64.1-14.5 112-71.9 112-140.4zm-144 80c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" ], + newspaper: [ 576, 512, [], "f1ea", "M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z" ], + "not-equal": [ 448, 512, [], "f53e", "M416 208c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32h-23.88l51.87-66.81c5.37-7.02 4.04-17.06-2.97-22.43L415.61 3.3c-7.02-5.38-17.06-4.04-22.44 2.97L311.09 112H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h204.56l-74.53 96H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h55.49l-51.87 66.81c-5.37 7.01-4.04 17.05 2.97 22.43L64 508.7c7.02 5.38 17.06 4.04 22.43-2.97L168.52 400H416c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32H243.05l74.53-96H416z" ], + "notes-medical": [ 384, 512, [], "f481", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm96 304c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm0-192c0 4.4-3.6 8-8 8H104c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16z" ], + "object-group": [ 512, 512, [], "f247", "M480 128V96h20c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v20H64V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v40c0 6.627 5.373 12 12 12h20v320H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-20h384v20c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-20V128zM96 276V140c0-6.627 5.373-12 12-12h168c6.627 0 12 5.373 12 12v136c0 6.627-5.373 12-12 12H108c-6.627 0-12-5.373-12-12zm320 96c0 6.627-5.373 12-12 12H236c-6.627 0-12-5.373-12-12v-52h72c13.255 0 24-10.745 24-24v-72h84c6.627 0 12 5.373 12 12v136z" ], + "object-ungroup": [ 576, 512, [], "f248", "M64 320v26a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6v-52a6 6 0 0 1 6-6h26V96H6a6 6 0 0 1-6-6V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v26h288V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-26v192h26a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-52a6 6 0 0 1-6-6v-26H64zm480-64v-32h26a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-52a6 6 0 0 0-6 6v26H408v72h8c13.255 0 24 10.745 24 24v64c0 13.255-10.745 24-24 24h-64c-13.255 0-24-10.745-24-24v-8H192v72h-26a6 6 0 0 0-6 6v52a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-26h288v26a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-26V256z" ], + outdent: [ 448, 512, [], "f03b", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm208 144h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm192-128h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM4.687 267.313l96 95.984C110.734 373.348 128 366.224 128 351.984V160.008c0-14.329-17.325-21.304-27.313-11.313l-96 95.992c-6.249 6.248-6.249 16.378 0 22.626z" ], + "paint-brush": [ 512, 512, [], "f1fc", "M167.02 309.34c-40.12 2.58-76.53 17.86-97.19 72.3-2.35 6.21-8 9.98-14.59 9.98-11.11 0-45.46-27.67-55.25-34.35C0 439.62 37.93 512 128 512c75.86 0 128-43.77 128-120.19 0-3.11-.65-6.08-.97-9.13l-88.01-73.34zM457.89 0c-15.16 0-29.37 6.71-40.21 16.45C213.27 199.05 192 203.34 192 257.09c0 13.7 3.25 26.76 8.73 38.7l63.82 53.18c7.21 1.8 14.64 3.03 22.39 3.03 62.11 0 98.11-45.47 211.16-256.46 7.38-14.35 13.9-29.85 13.9-45.99C512 20.64 486 0 457.89 0z" ], + "paint-roller": [ 512, 512, [], "f5aa", "M416 128V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32h352c17.67 0 32-14.33 32-32zm32-64v128c0 17.67-14.33 32-32 32H256c-35.35 0-64 28.65-64 64v32c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32v-32h160c53.02 0 96-42.98 96-96v-64c0-35.35-28.65-64-64-64z" ], + palette: [ 512, 512, [], "f53f", "M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + pallet: [ 640, 512, [], "f482", "M144 256h352c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H384v128l-64-32-64 32V0H144c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16zm480 128c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v64H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-64h48zm-336 64H128v-64h160v64zm224 0H352v-64h160v64z" ], + "paper-plane": [ 512, 512, [], "f1d8", "M476 3.2L12.5 270.6c-18.1 10.4-15.8 35.6 2.2 43.2L121 358.4l287.3-253.2c5.5-4.9 13.3 2.6 8.6 8.3L176 407v80.5c0 23.6 28.5 32.9 42.5 15.8L282 426l124.6 52.2c14.2 6 30.4-2.9 33-18.2l72-432C515 7.8 493.3-6.8 476 3.2z" ], + paperclip: [ 448, 512, [], "f0c6", "M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z" ], + "parachute-box": [ 512, 512, [], "f4cd", "M511.9 175c-9.1-75.6-78.4-132.4-158.3-158.7C390 55.7 416 116.9 416 192h28.1L327.5 321.5c-2.5-.6-4.8-1.5-7.5-1.5h-48V192h112C384 76.8 315.1 0 256 0S128 76.8 128 192h112v128h-48c-2.7 0-5 .9-7.5 1.5L67.9 192H96c0-75.1 26-136.3 62.4-175.7C78.5 42.7 9.2 99.5.1 175c-1.1 9.1 6.8 17 16 17h8.7l136.7 151.9c-.7 2.6-1.6 5.2-1.6 8.1v128c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32V352c0-2.9-.9-5.4-1.6-8.1L487.1 192h8.7c9.3 0 17.2-7.8 16.1-17z" ], + paragraph: [ 448, 512, [], "f1dd", "M408 32H177.531C88.948 32 16.045 103.335 16 191.918 15.956 280.321 87.607 352 176 352v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h32v344c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h40c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24z" ], + parking: [ 448, 512, [], "f540", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM240 320h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h96c52.9 0 96 43.1 96 96s-43.1 96-96 96zm0-128h-48v64h48c17.6 0 32-14.4 32-32s-14.4-32-32-32z" ], + passport: [ 448, 512, [], "f5ab", "M129.62 176h39.09c1.49-27.03 6.54-51.35 14.21-70.41-27.71 13.24-48.02 39.19-53.3 70.41zm0 32c5.29 31.22 25.59 57.17 53.3 70.41-7.68-19.06-12.72-43.38-14.21-70.41h-39.09zM224 286.69c7.69-7.45 20.77-34.42 23.43-78.69h-46.87c2.67 44.26 15.75 71.24 23.44 78.69zM200.57 176h46.87c-2.66-44.26-15.74-71.24-23.43-78.69-7.7 7.45-20.78 34.43-23.44 78.69zm64.51 102.41c27.71-13.24 48.02-39.19 53.3-70.41h-39.09c-1.49 27.03-6.53 51.35-14.21 70.41zM416 0H64C28.65 0 0 28.65 0 64v384c0 35.35 28.65 64 64 64h352c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32zm-80 416H112c-8.8 0-16-7.2-16-16s7.2-16 16-16h224c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-112-96c-70.69 0-128-57.31-128-128S153.31 64 224 64s128 57.31 128 128-57.31 128-128 128zm41.08-214.41c7.68 19.06 12.72 43.38 14.21 70.41h39.09c-5.28-31.22-25.59-57.17-53.3-70.41z" ], + paste: [ 448, 512, [], "f0ea", "M128 184c0-30.879 25.122-56 56-56h136V56c0-13.255-10.745-24-24-24h-80.61C204.306 12.89 183.637 0 160 0s-44.306 12.89-55.39 32H24C10.745 32 0 42.745 0 56v336c0 13.255 10.745 24 24 24h104V184zm32-144c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24zm184 248h104v200c0 13.255-10.745 24-24 24H184c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.059V256h-96v-96h6.059a24 24 0 0 1 16.97 7.029l65.941 65.941a24.002 24.002 0 0 1 7.03 16.971z" ], + pause: [ 448, 512, [], "f04c", "M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z" ], + "pause-circle": [ 512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-16 328c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160zm112 0c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160z" ], + paw: [ 512, 512, [], "f1b0", "M85.231 330.958C36 330.958 0 273.792 0 231.5c0-28.292 16-58.042 49.538-58.042 49.231 0 85.231 57.458 85.231 99.75 0 28.292-15.692 57.75-49.538 57.75zm348 106.167c0 37.042-32 42.875-63.385 42.875-41.231 0-74.462-26.25-113.846-26.25-41.231 0-76.308 25.958-120.923 25.958-29.847 0-56.308-9.625-56.308-42.583C78.769 368 180.616 265.333 256 265.333s177.231 102.959 177.231 171.792zM182.462 203.792c-49.847 0-80-59.5-80-100.333C102.462 70.792 120.308 32 160 32c50.154 0 80 59.5 80 100.333 0 32.667-17.846 71.459-57.538 71.459zM272 132.333C272 91.5 301.846 32 352 32c39.692 0 57.539 38.792 57.539 71.458 0 40.833-30.154 100.333-80.001 100.333C289.846 203.792 272 165 272 132.333zM512 231.5c0 42.292-36 99.458-85.231 99.458-33.847 0-49.538-29.458-49.538-57.75 0-42.291 35.999-99.75 85.231-99.75C496 173.458 512 203.208 512 231.5z" ], + pen: [ 512, 512, [], "f304", "M290.74 93.24l128.02 128.02-277.99 277.99-114.14 12.6C11.35 513.54-1.56 500.62.14 485.34l12.7-114.22 277.9-277.88zm207.2-19.06l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.76 18.75-49.16 0-67.91z" ], + "pen-alt": [ 512, 512, [], "f305", "M497.94 74.17l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91zm-246.8-20.53c-15.62-15.62-40.94-15.62-56.56 0L75.8 172.43c-6.25 6.25-6.25 16.38 0 22.62l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l101.82-101.82 22.63 22.62L93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l196.79-196.79-82.77-82.77-84.85-84.85z" ], + "pen-fancy": [ 512, 512, [], "f5ac", "M79.18 282.94a32.005 32.005 0 0 0-20.24 20.24L0 480l4.69 4.69 92.89-92.89c-.66-2.56-1.57-5.03-1.57-7.8 0-17.67 14.33-32 32-32s32 14.33 32 32-14.33 32-32 32c-2.77 0-5.24-.91-7.8-1.57l-92.89 92.89L32 512l176.82-58.94a31.983 31.983 0 0 0 20.24-20.24l33.07-84.07-98.88-98.88-84.07 33.07zM369.25 28.32L186.14 227.81l97.85 97.85 199.49-183.11C568.4 67.48 443.73-55.94 369.25 28.32z" ], + "pen-nib": [ 512, 512, [], "f5ad", "M136.6 138.79a64.003 64.003 0 0 0-43.31 41.35L0 460l14.69 14.69L164.8 324.58c-2.99-6.26-4.8-13.18-4.8-20.58 0-26.51 21.49-48 48-48s48 21.49 48 48-21.49 48-48 48c-7.4 0-14.32-1.81-20.58-4.8L37.31 497.31 52 512l279.86-93.29a64.003 64.003 0 0 0 41.35-43.31L416 224 288 96l-151.4 42.79zm361.34-64.62l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91z" ], + "pen-square": [ 448, 512, [], "f14b", "M400 480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zM238.1 177.9L102.4 313.6l-6.3 57.1c-.8 7.6 5.6 14.1 13.3 13.3l57.1-6.3L302.2 242c2.3-2.3 2.3-6.1 0-8.5L246.7 178c-2.5-2.4-6.3-2.4-8.6-.1zM345 165.1L314.9 135c-9.4-9.4-24.6-9.4-33.9 0l-23.1 23.1c-2.3 2.3-2.3 6.1 0 8.5l55.5 55.5c2.3 2.3 6.1 2.3 8.5 0L345 199c9.3-9.3 9.3-24.5 0-33.9z" ], + "pencil-alt": [ 512, 512, [], "f303", "M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z" ], + "pencil-ruler": [ 512, 512, [], "f5ae", "M109.46 244.04l134.58-134.56-44.12-44.12-61.68 61.68a7.919 7.919 0 0 1-11.21 0l-11.21-11.21c-3.1-3.1-3.1-8.12 0-11.21l61.68-61.68-33.64-33.65C131.47-3.1 111.39-3.1 99 9.29L9.29 99c-12.38 12.39-12.39 32.47 0 44.86l100.17 100.18zm388.47-116.8c18.76-18.76 18.75-49.17 0-67.93l-45.25-45.25c-18.76-18.76-49.18-18.76-67.95 0l-46.02 46.01 113.2 113.2 46.02-46.03zM316.08 82.71l-297 296.96L.32 487.11c-2.53 14.49 10.09 27.11 24.59 24.56l107.45-18.84L429.28 195.9 316.08 82.71zm186.63 285.43l-33.64-33.64-61.68 61.68c-3.1 3.1-8.12 3.1-11.21 0l-11.21-11.21c-3.09-3.1-3.09-8.12 0-11.21l61.68-61.68-44.14-44.14L267.93 402.5l100.21 100.2c12.39 12.39 32.47 12.39 44.86 0l89.71-89.7c12.39-12.39 12.39-32.47 0-44.86z" ], + "people-carry": [ 640, 512, [], "f4ce", "M128 96c26.5 0 48-21.5 48-48S154.5 0 128 0 80 21.5 80 48s21.5 48 48 48zm384 0c26.5 0 48-21.5 48-48S538.5 0 512 0s-48 21.5-48 48 21.5 48 48 48zm125.7 372.1l-44-110-41.1 46.4-2 18.2 27.7 69.2c5 12.5 17 20.1 29.7 20.1 4 0 8-.7 11.9-2.3 16.4-6.6 24.4-25.2 17.8-41.6zm-34.2-209.8L585 178.1c-4.6-20-18.6-36.8-37.5-44.9-18.5-8-39-6.7-56.1 3.3-22.7 13.4-39.7 34.5-48.1 59.4L432 229.8 416 240v-96c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16v96l-16.1-10.2-11.3-33.9c-8.3-25-25.4-46-48.1-59.4-17.2-10-37.6-11.3-56.1-3.3-18.9 8.1-32.9 24.9-37.5 44.9l-18.4 80.2c-4.6 20 .7 41.2 14.4 56.7l67.2 75.9 10.1 92.6C130 499.8 143.8 512 160 512c1.2 0 2.3-.1 3.5-.2 17.6-1.9 30.2-17.7 28.3-35.3l-10.1-92.8c-1.5-13-6.9-25.1-15.6-35l-43.3-49 17.6-70.3 6.8 20.4c4.1 12.5 11.9 23.4 24.5 32.6l51.1 32.5c4.6 2.9 12.1 4.6 17.2 5h160c5.1-.4 12.6-2.1 17.2-5l51.1-32.5c12.6-9.2 20.4-20 24.5-32.6l6.8-20.4 17.6 70.3-43.3 49c-8.7 9.9-14.1 22-15.6 35l-10.1 92.8c-1.9 17.6 10.8 33.4 28.3 35.3 1.2.1 2.3.2 3.5.2 16.1 0 30-12.1 31.8-28.5l10.1-92.6 67.2-75.9c13.6-15.5 19-36.7 14.4-56.7zM46.3 358.1l-44 110c-6.6 16.4 1.4 35 17.8 41.6 16.8 6.6 35.1-1.7 41.6-17.8l27.7-69.2-2-18.2-41.1-46.4z" ], + percent: [ 448, 512, [], "f295", "M112 224c61.9 0 112-50.1 112-112S173.9 0 112 0 0 50.1 0 112s50.1 112 112 112zm0-160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm224 224c-61.9 0-112 50.1-112 112s50.1 112 112 112 112-50.1 112-112-50.1-112-112-112zm0 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zM392.3.2l31.6-.1c19.4-.1 30.9 21.8 19.7 37.8L77.4 501.6a23.95 23.95 0 0 1-19.6 10.2l-33.4.1c-19.5 0-30.9-21.9-19.7-37.8l368-463.7C377.2 4 384.5.2 392.3.2z" ], + percentage: [ 384, 512, [], "f541", "M109.25 173.25c24.99-24.99 24.99-65.52 0-90.51-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 25 25 65.52 25 90.51 0zm256 165.49c-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 24.99 24.99 65.52 24.99 90.51 0 25-24.99 25-65.51 0-90.51zm-1.94-231.43l-22.62-22.62c-12.5-12.5-32.76-12.5-45.25 0L20.69 359.44c-12.5 12.5-12.5 32.76 0 45.25l22.62 22.62c12.5 12.5 32.76 12.5 45.25 0l274.75-274.75c12.5-12.49 12.5-32.75 0-45.25z" ], + phone: [ 512, 512, [], "f095", "M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z" ], + "phone-slash": [ 640, 512, [], "f3dd", "M268.2 381.4l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48c-10.7 4.6-16.5 16.1-13.9 27.5l24 104c2.5 10.8 12.1 18.6 23.4 18.6 100.7 0 193.7-32.4 269.7-86.9l-80-61.8c-10.9 6.5-22.1 12.7-33.6 18.1zm365.6 76.7L475.1 335.5C537.9 256.4 576 156.9 576 48c0-11.2-7.7-20.9-18.6-23.4l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-12.2 26.1-27.9 50.3-46 72.8L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z" ], + "phone-square": [ 448, 512, [], "f098", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM94 416c-7.033 0-13.057-4.873-14.616-11.627l-14.998-65a15 15 0 0 1 8.707-17.16l69.998-29.999a15 15 0 0 1 17.518 4.289l30.997 37.885c48.944-22.963 88.297-62.858 110.781-110.78l-37.886-30.997a15.001 15.001 0 0 1-4.289-17.518l30-69.998a15 15 0 0 1 17.16-8.707l65 14.998A14.997 14.997 0 0 1 384 126c0 160.292-129.945 290-290 290z" ], + "phone-volume": [ 384, 512, [], "f2a0", "M97.333 506.966c-129.874-129.874-129.681-340.252 0-469.933 5.698-5.698 14.527-6.632 21.263-2.422l64.817 40.513a17.187 17.187 0 0 1 6.849 20.958l-32.408 81.021a17.188 17.188 0 0 1-17.669 10.719l-55.81-5.58c-21.051 58.261-20.612 122.471 0 179.515l55.811-5.581a17.188 17.188 0 0 1 17.669 10.719l32.408 81.022a17.188 17.188 0 0 1-6.849 20.958l-64.817 40.513a17.19 17.19 0 0 1-21.264-2.422zM247.126 95.473c11.832 20.047 11.832 45.008 0 65.055-3.95 6.693-13.108 7.959-18.718 2.581l-5.975-5.726c-3.911-3.748-4.793-9.622-2.261-14.41a32.063 32.063 0 0 0 0-29.945c-2.533-4.788-1.65-10.662 2.261-14.41l5.975-5.726c5.61-5.378 14.768-4.112 18.718 2.581zm91.787-91.187c60.14 71.604 60.092 175.882 0 247.428-4.474 5.327-12.53 5.746-17.552.933l-5.798-5.557c-4.56-4.371-4.977-11.529-.93-16.379 49.687-59.538 49.646-145.933 0-205.422-4.047-4.85-3.631-12.008.93-16.379l5.798-5.557c5.022-4.813 13.078-4.394 17.552.933zm-45.972 44.941c36.05 46.322 36.108 111.149 0 157.546-4.39 5.641-12.697 6.251-17.856 1.304l-5.818-5.579c-4.4-4.219-4.998-11.095-1.285-15.931 26.536-34.564 26.534-82.572 0-117.134-3.713-4.836-3.115-11.711 1.285-15.931l5.818-5.579c5.159-4.947 13.466-4.337 17.856 1.304z" ], + "piggy-bank": [ 576, 512, [], "f4d3", "M560 224h-29.5c-8.8-20-21.6-37.7-37.4-52.5L512 96h-32c-29.4 0-55.4 13.5-73 34.3-7.6-1.1-15.1-2.3-23-2.3H256c-77.4 0-141.9 55-156.8 128H56c-14.8 0-26.5-13.5-23.5-28.8C34.7 215.8 45.4 208 57 208h1c3.3 0 6-2.7 6-6v-20c0-3.3-2.7-6-6-6-28.5 0-53.9 20.4-57.5 48.6C-3.9 258.8 22.7 288 56 288h40c0 52.2 25.4 98.1 64 127.3V496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-48h128v48c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80.7c11.8-8.9 22.3-19.4 31.3-31.3H560c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16zm-128 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM256 96h128c5.4 0 10.7.4 15.9.8 0-.3.1-.5.1-.8 0-53-43-96-96-96s-96 43-96 96c0 2.1.5 4.1.6 6.2 15.2-3.9 31-6.2 47.4-6.2z" ], + pills: [ 576, 512, [], "f484", "M112 32C50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V144c0-61.9-50.1-112-112-112zm48 224H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm139.7-29.7c-3.5-3.5-9.4-3.1-12.3.8-45.3 62.5-40.4 150.1 15.9 206.4 56.3 56.3 143.9 61.2 206.4 15.9 4-2.9 4.3-8.8.8-12.3L299.7 226.3zm229.8-19c-56.3-56.3-143.9-61.2-206.4-15.9-4 2.9-4.3 8.8-.8 12.3l210.8 210.8c3.5 3.5 9.4 3.1 12.3-.8 45.3-62.6 40.5-150.1-15.9-206.4z" ], + plane: [ 576, 512, [], "f072", "M480 192H365.71L260.61 8.06A16.014 16.014 0 0 0 246.71 0h-65.5c-10.63 0-18.3 10.17-15.38 20.39L214.86 192H112l-43.2-57.6c-3.02-4.03-7.77-6.4-12.8-6.4H16.01C5.6 128-2.04 137.78.49 147.88L32 256 .49 364.12C-2.04 374.22 5.6 384 16.01 384H56c5.04 0 9.78-2.37 12.8-6.4L112 320h102.86l-49.03 171.6c-2.92 10.22 4.75 20.4 15.38 20.4h65.5c5.74 0 11.04-3.08 13.89-8.06L365.71 320H480c35.35 0 96-28.65 96-64s-60.65-64-96-64z" ], + "plane-arrival": [ 640, 512, [], "f5af", "M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM44.81 205.66l88.74 80a62.607 62.607 0 0 0 25.47 13.93l287.6 78.35c26.48 7.21 54.56 8.72 81 1.36 29.67-8.27 43.44-21.21 47.25-35.71 3.83-14.5-1.73-32.71-23.37-54.96-19.28-19.82-44.35-32.79-70.83-40l-97.51-26.56L282.8 30.22c-1.51-5.81-5.95-10.35-11.66-11.91L206.05.58c-10.56-2.88-20.9 5.32-20.71 16.44l47.92 164.21-102.2-27.84-27.59-67.88c-1.93-4.89-6.01-8.57-11.02-9.93L52.72 64.75c-10.34-2.82-20.53 5-20.72 15.88l.23 101.78c.19 8.91 6.03 17.34 12.58 23.25z" ], + "plane-departure": [ 640, 512, [], "f5b0", "M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM80.55 341.27c6.28 6.84 15.1 10.72 24.33 10.71l130.54-.18a65.62 65.62 0 0 0 29.64-7.12l290.96-147.65c26.74-13.57 50.71-32.94 67.02-58.31 18.31-28.48 20.3-49.09 13.07-63.65-7.21-14.57-24.74-25.27-58.25-27.45-29.85-1.94-59.54 5.92-86.28 19.48l-98.51 49.99-218.7-82.06a17.799 17.799 0 0 0-18-1.11L90.62 67.29c-10.67 5.41-13.25 19.65-5.17 28.53l156.22 98.1-103.21 52.38-72.35-36.47a17.804 17.804 0 0 0-16.07.02L9.91 230.22c-10.44 5.3-13.19 19.12-5.57 28.08l76.21 82.97z" ], + play: [ 448, 512, [], "f04b", "M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z" ], + "play-circle": [ 512, 512, [], "f144", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z" ], + plug: [ 384, 512, [], "f1e6", "M256 144V32c0-17.673 14.327-32 32-32s32 14.327 32 32v112h-64zm112 16H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h16v32c0 77.406 54.969 141.971 128 156.796V512h64v-99.204c73.031-14.825 128-79.39 128-156.796v-32h16c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm-240-16V32c0-17.673-14.327-32-32-32S64 14.327 64 32v112h64z" ], + plus: [ 448, 512, [], "f067", "M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" ], + "plus-circle": [ 512, 512, [], "f055", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z" ], + "plus-square": [ 448, 512, [], "f0fe", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-32 252c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92H92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z" ], + podcast: [ 448, 512, [], "f2ce", "M267.429 488.563C262.286 507.573 242.858 512 224 512c-18.857 0-38.286-4.427-43.428-23.437C172.927 460.134 160 388.898 160 355.75c0-35.156 31.142-43.75 64-43.75s64 8.594 64 43.75c0 32.949-12.871 104.179-20.571 132.813zM156.867 288.554c-18.693-18.308-29.958-44.173-28.784-72.599 2.054-49.724 42.395-89.956 92.124-91.881C274.862 121.958 320 165.807 320 220c0 26.827-11.064 51.116-28.866 68.552-2.675 2.62-2.401 6.986.628 9.187 9.312 6.765 16.46 15.343 21.234 25.363 1.741 3.654 6.497 4.66 9.449 1.891 28.826-27.043 46.553-65.783 45.511-108.565-1.855-76.206-63.595-138.208-139.793-140.369C146.869 73.753 80 139.215 80 220c0 41.361 17.532 78.7 45.55 104.989 2.953 2.771 7.711 1.77 9.453-1.887 4.774-10.021 11.923-18.598 21.235-25.363 3.029-2.2 3.304-6.566.629-9.185zM224 0C100.204 0 0 100.185 0 224c0 89.992 52.602 165.647 125.739 201.408 4.333 2.118 9.267-1.544 8.535-6.31-2.382-15.512-4.342-30.946-5.406-44.339-.146-1.836-1.149-3.486-2.678-4.512-47.4-31.806-78.564-86.016-78.187-147.347.592-96.237 79.29-174.648 175.529-174.899C320.793 47.747 400 126.797 400 224c0 61.932-32.158 116.49-80.65 147.867-.999 14.037-3.069 30.588-5.624 47.23-.732 4.767 4.203 8.429 8.535 6.31C395.227 389.727 448 314.187 448 224 448 100.205 347.815 0 224 0zm0 160c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z" ], + poo: [ 512, 512, [], "f2fe", "M451.4 369.1C468.7 356 480 335.4 480 312c0-39.8-32.2-72-72-72h-14.1c13.4-11.7 22.1-28.8 22.1-48 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C250.3 14.6 256 30.6 256 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 19.2 8.7 36.3 22.1 48H104c-39.8 0-72 32.2-72 72 0 23.4 11.3 44 28.6 57.1C26.3 374.6 0 404.1 0 440c0 39.8 32.2 72 72 72h368c39.8 0 72-32.2 72-72 0-35.9-26.3-65.4-60.6-70.9zM192 256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm159.5 139C341 422.9 293 448 256 448s-85-25.1-95.5-53c-2-5.3 2-11 7.8-11h175.4c5.8 0 9.8 5.7 7.8 11zM320 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + portrait: [ 384, 512, [], "f3e0", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM192 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 384 80 375.4 80 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z" ], + "pound-sign": [ 320, 512, [], "f154", "M308 352h-45.495c-6.627 0-12 5.373-12 12v50.848H128V288h84c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-84v-63.556c0-32.266 24.562-57.086 61.792-57.086 23.658 0 45.878 11.505 57.652 18.849 5.151 3.213 11.888 2.051 15.688-2.685l28.493-35.513c4.233-5.276 3.279-13.005-2.119-17.081C273.124 54.56 236.576 32 187.931 32 106.026 32 48 84.742 48 157.961V224H20c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h28v128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12V364c0-6.627-5.373-12-12-12z" ], + "power-off": [ 512, 512, [], "f011", "M400 54.1c63 45 104 118.6 104 201.9 0 136.8-110.8 247.7-247.5 248C120 504.3 8.2 393 8 256.4 7.9 173.1 48.9 99.3 111.8 54.2c11.7-8.3 28-4.8 35 7.7L162.6 90c5.9 10.5 3.1 23.8-6.6 31-41.5 30.8-68 79.6-68 134.9-.1 92.3 74.5 168.1 168 168.1 91.6 0 168.6-74.2 168-169.1-.3-51.8-24.7-101.8-68.1-134-9.7-7.2-12.4-20.5-6.5-30.9l15.8-28.1c7-12.4 23.2-16.1 34.8-7.8zM296 264V24c0-13.3-10.7-24-24-24h-32c-13.3 0-24 10.7-24 24v240c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24z" ], + prescription: [ 384, 512, [], "f5b1", "M301.26 352l78.06-78.06c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0L256 306.74l-83.96-83.96C219.31 216.8 256 176.89 256 128c0-53.02-42.98-96-96-96H16C7.16 32 0 39.16 0 48v256c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-80h18.75l128 128-78.06 78.06c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0L256 397.25l78.06 78.06c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63L301.26 352zM64 96h96c17.64 0 32 14.36 32 32s-14.36 32-32 32H64V96z" ], + "prescription-bottle": [ 384, 512, [], "f485", "M32 192h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v64zM360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24z" ], + "prescription-bottle-alt": [ 384, 512, [], "f486", "M360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24zM32 480c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v352zm64-184c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48z" ], + print: [ 512, 512, [], "f02f", "M464 192h-16V81.941a24 24 0 0 0-7.029-16.97L383.029 7.029A24 24 0 0 0 366.059 0H88C74.745 0 64 10.745 64 24v168H48c-26.51 0-48 21.49-48 48v132c0 6.627 5.373 12 12 12h52v104c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V384h52c6.627 0 12-5.373 12-12V240c0-26.51-21.49-48-48-48zm-80 256H128v-96h256v96zM128 224V64h192v40c0 13.2 10.8 24 24 24h40v96H128zm304 72c-13.254 0-24-10.746-24-24s10.746-24 24-24 24 10.746 24 24-10.746 24-24 24z" ], + procedures: [ 640, 512, [], "f487", "M528 224H272c-8.8 0-16 7.2-16 16v144H64V144c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v352c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h512v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-61.9-50.1-112-112-112zM136 96h126.1l27.6 55.2c5.9 11.8 22.7 11.8 28.6 0L368 51.8 390.1 96H512c8.8 0 16-7.2 16-16s-7.2-16-16-16H409.9L382.3 8.8C376.4-3 359.6-3 353.7 8.8L304 108.2l-19.9-39.8c-1.4-2.7-4.1-4.4-7.2-4.4H136c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm24 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z" ], + "project-diagram": [ 640, 512, [], "f542", "M384 320H256c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM192 32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v128c0 17.67 14.33 32 32 32h95.72l73.16 128.04C211.98 300.98 232.4 288 256 288h.28L192 175.51V128h224V64H192V32zM608 0H480c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32z" ], + "puzzle-piece": [ 576, 512, [], "f12e", "M519.442 288.651c-41.519 0-59.5 31.593-82.058 31.593C377.409 320.244 432 144 432 144s-196.288 80-196.288-3.297c0-35.827 36.288-46.25 36.288-85.985C272 19.216 243.885 0 210.539 0c-34.654 0-66.366 18.891-66.366 56.346 0 41.364 31.711 59.277 31.711 81.75C175.885 207.719 0 166.758 0 166.758v333.237s178.635 41.047 178.635-28.662c0-22.473-40-40.107-40-81.471 0-37.456 29.25-56.346 63.577-56.346 33.673 0 61.788 19.216 61.788 54.717 0 39.735-36.288 50.158-36.288 85.985 0 60.803 129.675 25.73 181.23 25.73 0 0-34.725-120.101 25.827-120.101 35.962 0 46.423 36.152 86.308 36.152C556.712 416 576 387.99 576 354.443c0-34.199-18.962-65.792-56.558-65.792z" ], + qrcode: [ 448, 512, [], "f029", "M0 224h192V32H0v192zM64 96h64v64H64V96zm192-64v192h192V32H256zm128 128h-64V96h64v64zM0 480h192V288H0v192zm64-128h64v64H64v-64zm352-64h32v128h-96v-32h-32v96h-64V288h96v32h64v-32zm0 160h32v32h-32v-32zm-64 0h32v32h-32v-32z" ], + question: [ 384, 512, [], "f128", "M202.021 0C122.202 0 70.503 32.703 29.914 91.026c-7.363 10.58-5.093 25.086 5.178 32.874l43.138 32.709c10.373 7.865 25.132 6.026 33.253-4.148 25.049-31.381 43.63-49.449 82.757-49.449 30.764 0 68.816 19.799 68.816 49.631 0 22.552-18.617 34.134-48.993 51.164-35.423 19.86-82.299 44.576-82.299 106.405V320c0 13.255 10.745 24 24 24h72.471c13.255 0 24-10.745 24-24v-5.773c0-42.86 125.268-44.645 125.268-160.627C377.504 66.256 286.902 0 202.021 0zM192 373.459c-38.196 0-69.271 31.075-69.271 69.271 0 38.195 31.075 69.27 69.271 69.27s69.271-31.075 69.271-69.271-31.075-69.27-69.271-69.27z" ], + "question-circle": [ 512, 512, [], "f059", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z" ], + quidditch: [ 640, 512, [], "f458", "M256.5 216.8L343.2 326s-16.6 102.4-76.6 150.1C206.7 523.8 0 510.2 0 510.2s3.8-23.1 11-55.4l94.6-112.2c4-4.7-.9-11.6-6.6-9.5l-60.4 22.1c14.4-41.7 32.7-80 54.6-97.5 59.9-47.8 163.3-40.9 163.3-40.9zm238 135c-44 0-79.8 35.8-79.8 79.9 0 44.1 35.7 79.9 79.8 79.9 44.1 0 79.8-35.8 79.8-79.9 0-44.2-35.8-79.9-79.8-79.9zM636.5 31L616.7 6c-5.5-6.9-15.5-8-22.4-2.6L361.8 181.3l-34.1-43c-5.1-6.4-15.1-5.2-18.6 2.2l-25.3 54.6 86.7 109.2 58.8-12.4c8-1.7 11.4-11.2 6.3-17.6l-34.1-42.9L634 53.5c6.9-5.5 8-15.6 2.5-22.5z" ], + "quote-left": [ 512, 512, [], "f10d", "M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z" ], + "quote-right": [ 512, 512, [], "f10e", "M464 32H336c-26.5 0-48 21.5-48 48v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48zm-288 0H48C21.5 32 0 53.5 0 80v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48z" ], + random: [ 512, 512, [], "f074", "M504.971 359.029c9.373 9.373 9.373 24.569 0 33.941l-80 79.984c-15.01 15.01-40.971 4.49-40.971-16.971V416h-58.785a12.004 12.004 0 0 1-8.773-3.812l-70.556-75.596 53.333-57.143L352 336h32v-39.981c0-21.438 25.943-31.998 40.971-16.971l80 79.981zM12 176h84l52.781 56.551 53.333-57.143-70.556-75.596A11.999 11.999 0 0 0 122.785 96H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12zm372 0v39.984c0 21.46 25.961 31.98 40.971 16.971l80-79.984c9.373-9.373 9.373-24.569 0-33.941l-80-79.981C409.943 24.021 384 34.582 384 56.019V96h-58.785a12.004 12.004 0 0 0-8.773 3.812L96 336H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h110.785c3.326 0 6.503-1.381 8.773-3.812L352 176h32z" ], + receipt: [ 384, 512, [], "f543", "M358.4 3.2L320 48 265.6 3.2a15.9 15.9 0 0 0-19.2 0L192 48 137.6 3.2a15.9 15.9 0 0 0-19.2 0L64 48 25.6 3.2C15-4.7 0 2.8 0 16v480c0 13.2 15 20.7 25.6 12.8L64 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L192 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L320 464l38.4 44.8c10.5 7.9 25.6.4 25.6-12.8V16c0-13.2-15-20.7-25.6-12.8zM320 360c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16z" ], + recycle: [ 512, 512, [], "f1b8", "M184.561 261.903c3.232 13.997-12.123 24.635-24.068 17.168l-40.736-25.455-50.867 81.402C55.606 356.273 70.96 384 96.012 384H148c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12H96.115c-75.334 0-121.302-83.048-81.408-146.88l50.822-81.388-40.725-25.448c-12.081-7.547-8.966-25.961 4.879-29.158l110.237-25.45c8.611-1.988 17.201 3.381 19.189 11.99l25.452 110.237zm98.561-182.915l41.289 66.076-40.74 25.457c-12.051 7.528-9 25.953 4.879 29.158l110.237 25.45c8.672 1.999 17.215-3.438 19.189-11.99l25.45-110.237c3.197-13.844-11.99-24.719-24.068-17.168l-40.687 25.424-41.263-66.082c-37.521-60.033-125.209-60.171-162.816 0l-17.963 28.766c-3.51 5.62-1.8 13.021 3.82 16.533l33.919 21.195c5.62 3.512 13.024 1.803 16.536-3.817l17.961-28.743c12.712-20.341 41.973-19.676 54.257-.022zM497.288 301.12l-27.515-44.065c-3.511-5.623-10.916-7.334-16.538-3.821l-33.861 21.159c-5.62 3.512-7.33 10.915-3.818 16.536l27.564 44.112c13.257 21.211-2.057 48.96-27.136 48.96H320V336.02c0-14.213-17.242-21.383-27.313-11.313l-80 79.981c-6.249 6.248-6.249 16.379 0 22.627l80 79.989C302.689 517.308 320 510.3 320 495.989V448h95.88c75.274 0 121.335-82.997 81.408-146.88z" ], + redo: [ 512, 512, [], "f01e", "M500.333 0h-47.411c-6.853 0-12.314 5.729-11.986 12.574l3.966 82.759C399.416 41.899 331.672 8 256.001 8 119.34 8 7.899 119.526 8 256.187 8.101 393.068 119.096 504 256 504c63.926 0 122.202-24.187 166.178-63.908 5.113-4.618 5.354-12.561.482-17.433l-33.971-33.971c-4.466-4.466-11.64-4.717-16.38-.543C341.308 415.448 300.606 432 256 432c-97.267 0-176-78.716-176-176 0-97.267 78.716-176 176-176 60.892 0 114.506 30.858 146.099 77.8l-101.525-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12z" ], + "redo-alt": [ 512, 512, [], "f2f9", "M256.455 8c66.269.119 126.437 26.233 170.859 68.685l35.715-35.715C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.75c-30.864-28.899-70.801-44.907-113.23-45.273-92.398-.798-170.283 73.977-169.484 169.442C88.764 348.009 162.184 424 256 424c41.127 0 79.997-14.678 110.629-41.556 4.743-4.161 11.906-3.908 16.368.553l39.662 39.662c4.872 4.872 4.631 12.815-.482 17.433C378.202 479.813 319.926 504 256 504 119.034 504 8.001 392.967 8 256.002 7.999 119.193 119.646 7.755 256.455 8z" ], + registered: [ 512, 512, [], "f25d", "M285.363 207.475c0 18.6-9.831 28.431-28.431 28.431h-29.876v-56.14h23.378c28.668 0 34.929 8.773 34.929 27.709zM504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM363.411 360.414c-46.729-84.825-43.299-78.636-44.702-80.98 23.432-15.172 37.945-42.979 37.945-74.486 0-54.244-31.5-89.252-105.498-89.252h-70.667c-13.255 0-24 10.745-24 24V372c0 13.255 10.745 24 24 24h22.567c13.255 0 24-10.745 24-24v-71.663h25.556l44.129 82.937a24.001 24.001 0 0 0 21.188 12.727h24.464c18.261-.001 29.829-19.591 21.018-35.587z" ], + reply: [ 512, 512, [], "f3e5", "M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z" ], + "reply-all": [ 576, 512, [], "f122", "M136.309 189.836L312.313 37.851C327.72 24.546 352 35.348 352 56.015v82.763c129.182 10.231 224 52.212 224 183.548 0 61.441-39.582 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 38.512-123.162-3.922-169.482-112.59-182.015v84.175c0 20.701-24.3 31.453-39.687 18.164L136.309 226.164c-11.071-9.561-11.086-26.753 0-36.328zm-128 36.328L184.313 378.15C199.7 391.439 224 380.687 224 359.986v-15.818l-108.606-93.785A55.96 55.96 0 0 1 96 207.998a55.953 55.953 0 0 1 19.393-42.38L224 71.832V56.015c0-20.667-24.28-31.469-39.687-18.164L8.309 189.836c-11.086 9.575-11.071 26.767 0 36.328z" ], + retweet: [ 640, 512, [], "f079", "M629.657 343.598L528.971 444.284c-9.373 9.372-24.568 9.372-33.941 0L394.343 343.598c-9.373-9.373-9.373-24.569 0-33.941l10.823-10.823c9.562-9.562 25.133-9.34 34.419.492L480 342.118V160H292.451a24.005 24.005 0 0 1-16.971-7.029l-16-16C244.361 121.851 255.069 96 276.451 96H520c13.255 0 24 10.745 24 24v222.118l40.416-42.792c9.285-9.831 24.856-10.054 34.419-.492l10.823 10.823c9.372 9.372 9.372 24.569-.001 33.941zm-265.138 15.431A23.999 23.999 0 0 0 347.548 352H160V169.881l40.416 42.792c9.286 9.831 24.856 10.054 34.419.491l10.822-10.822c9.373-9.373 9.373-24.569 0-33.941L144.971 67.716c-9.373-9.373-24.569-9.373-33.941 0L10.343 168.402c-9.373 9.373-9.373 24.569 0 33.941l10.822 10.822c9.562 9.562 25.133 9.34 34.419-.491L96 169.881V392c0 13.255 10.745 24 24 24h243.549c21.382 0 32.09-25.851 16.971-40.971l-16.001-16z" ], + ribbon: [ 448, 512, [], "f4d6", "M6.1 444.3c-9.6 10.8-7.5 27.6 4.5 35.7l68.8 27.9c9.9 6.7 23.3 5 31.3-3.8l91.8-101.9-79.2-87.9-117.2 130zm435.8 0s-292-324.6-295.4-330.1c15.4-8.4 40.2-17.9 77.5-17.9s62.1 9.5 77.5 17.9c-3.3 5.6-56 64.6-56 64.6l79.1 87.7 34.2-38c28.7-31.9 33.3-78.6 11.4-115.5l-43.7-73.5c-4.3-7.2-9.9-13.3-16.8-18-40.7-27.6-127.4-29.7-171.4 0-6.9 4.7-12.5 10.8-16.8 18l-43.6 73.2c-1.5 2.5-37.1 62.2 11.5 116L337.5 504c8 8.9 21.4 10.5 31.3 3.8l68.8-27.9c11.9-8 14-24.8 4.3-35.6z" ], + road: [ 576, 512, [], "f018", "M567.3 383.6L429.9 78.2C426 69.5 417.4 64 408 64h-96.1l1.9 18.8c.7 7.1-4.8 13.2-11.9 13.2H274c-7.1 0-12.7-6.2-11.9-13.2L264 64h-96c-9.4 0-18 5.5-21.9 14.2L8.7 383.6C3.2 395.8 0 409.6 0 424c0 13.3 10.7 24 24 24h213.6c-7.1 0-12.7-6.2-11.9-13.2l10.8-104c.6-6.1 5.8-10.8 11.9-10.8h79.2c6.1 0 11.3 4.6 11.9 10.8l10.8 104c.7 7.1-4.8 13.2-11.9 13.2H552c13.2 0 24-10.7 24-24 0-13.9-3-27.7-8.7-40.4zM254.7 154.8l3.3-32c.6-6.1 5.8-10.8 11.9-10.8h36.2c6.1 0 11.3 4.6 11.9 10.8l3.3 32c.7 7.1-4.8 13.2-11.9 13.2h-42.8c-7.1 0-12.7-6.2-11.9-13.2zM321.8 288h-67.6c-7.1 0-12.7-6.2-11.9-13.2l7.4-72c.6-6.1 5.8-10.8 11.9-10.8h52.7c6.1 0 11.3 4.6 11.9 10.8l7.4 72c.9 7-4.7 13.2-11.8 13.2z" ], + robot: [ 640, 512, [], "f544", "M0 256v128c0 17.7 14.3 32 32 32h32V224H32c-17.7 0-32 14.3-32 32zM464 96H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H176c-44.2 0-80 35.8-80 80v272c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V176c0-44.2-35.8-80-80-80zM256 416h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm128 120h-64v-32h64v32zm96 0h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm192-72h-32v192h32c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32z" ], + rocket: [ 512, 512, [], "f135", "M505.1 19.1C503.8 13 499 8.2 492.9 6.9 460.7 0 435.5 0 410.4 0 307.2 0 245.3 55.2 199.1 128H94.9c-18.2 0-34.8 10.3-42.9 26.5L2.6 253.3c-8 16 3.6 34.7 21.5 34.7h95.1c-5.9 12.8-11.9 25.5-18 37.7-3.1 6.2-1.9 13.6 3 18.5l63.6 63.6c4.9 4.9 12.3 6.1 18.5 3 12.2-6.1 24.9-12 37.7-17.9V488c0 17.8 18.8 29.4 34.7 21.5l98.7-49.4c16.3-8.1 26.5-24.8 26.5-42.9V312.8c72.6-46.3 128-108.4 128-211.1.1-25.2.1-50.4-6.8-82.6zM400 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z" ], + rss: [ 448, 512, [], "f09e", "M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z" ], + "rss-square": [ 448, 512, [], "f143", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM112 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm157.533 0h-34.335c-6.011 0-11.051-4.636-11.442-10.634-5.214-80.05-69.243-143.92-149.123-149.123-5.997-.39-10.633-5.431-10.633-11.441v-34.335c0-6.535 5.468-11.777 11.994-11.425 110.546 5.974 198.997 94.536 204.964 204.964.352 6.526-4.89 11.994-11.425 11.994zm103.027 0h-34.334c-6.161 0-11.175-4.882-11.427-11.038-5.598-136.535-115.204-246.161-251.76-251.76C68.882 152.949 64 147.935 64 141.774V107.44c0-6.454 5.338-11.664 11.787-11.432 167.83 6.025 302.21 141.191 308.205 308.205.232 6.449-4.978 11.787-11.432 11.787z" ], + "ruble-sign": [ 384, 512, [], "f158", "M239.36 320C324.48 320 384 260.542 384 175.071S324.48 32 239.36 32H76c-6.627 0-12 5.373-12 12v206.632H12c-6.627 0-12 5.373-12 12V308c0 6.627 5.373 12 12 12h52v32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v52c0 6.627 5.373 12 12 12h58.56c6.627 0 12-5.373 12-12v-52H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H146.56v-32h92.8zm-92.8-219.252h78.72c46.72 0 74.88 29.11 74.88 74.323 0 45.832-28.16 75.561-76.16 75.561h-77.44V100.748z" ], + ruler: [ 640, 512, [], "f545", "M635.7 167.2L556.1 31.7c-8.8-15-28.3-20.1-43.5-11.5l-69 39.1L503.3 161c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L416 75l-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L333.2 122 278 153.3 337.8 255c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-59.7-101.7-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-27.9-47.5-55.2 31.3 59.7 101.7c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L84.9 262.9l-69 39.1C.7 310.7-4.6 329.8 4.2 344.8l79.6 135.6c8.8 15 28.3 20.1 43.5 11.5L624.1 210c15.2-8.6 20.4-27.8 11.6-42.8z" ], + "ruler-combined": [ 512, 512, [], "f546", "M160 288h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56v-64h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56V96h-56c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8h56V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 2.77.91 5.24 1.57 7.8L160 329.38V288zm320 64h-32v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-41.37L24.2 510.43c2.56.66 5.04 1.57 7.8 1.57h448c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z" ], + "ruler-horizontal": [ 576, 512, [], "f547", "M544 128h-48v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8H88c-4.42 0-8-3.58-8-8v-88H32c-17.67 0-32 14.33-32 32v192c0 17.67 14.33 32 32 32h512c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32z" ], + "ruler-vertical": [ 256, 512, [], "f548", "M168 416c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 17.67 14.33 32 32 32h192c17.67 0 32-14.33 32-32v-64h-88z" ], + "rupee-sign": [ 320, 512, [], "f156", "M308 96c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v44.748c0 6.627 5.373 12 12 12h85.28c27.308 0 48.261 9.958 60.97 27.252H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h158.757c-6.217 36.086-32.961 58.632-74.757 58.632H12c-6.627 0-12 5.373-12 12v53.012c0 3.349 1.4 6.546 3.861 8.818l165.052 152.356a12.001 12.001 0 0 0 8.139 3.182h82.562c10.924 0 16.166-13.408 8.139-20.818L116.871 319.906c76.499-2.34 131.144-53.395 138.318-127.906H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-58.69c-3.486-11.541-8.28-22.246-14.252-32H308z" ], + "sad-cry": [ 496, 512, [], "f5b3", "M248 8C111 8 0 119 0 256c0 90.1 48.2 168.7 120 212.1V288c0-8.8 7.2-16 16-16s16 7.2 16 16v196.7c29.5 12.4 62 19.3 96 19.3s66.5-6.9 96-19.3V288c0-8.8 7.2-16 16-16s16 7.2 16 16v180.1C447.8 424.7 496 346 496 256 496 119 385 8 248 8zm-65.5 216.5c-14.8-13.2-46.2-13.2-61 0L112 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c.8 5-1.7 10-6.1 12.4-5.8 3.1-11.2.7-13.7-1.6l-9.7-8.5zM248 416c-26.5 0-48-28.7-48-64s21.5-64 48-64 48 28.7 48 64-21.5 64-48 64zm149.8-181.5c-5.8 3.1-11.2.7-13.7-1.6l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S400 197 404 222.2c.6 4.9-1.8 9.9-6.2 12.3z" ], + "sad-tear": [ 496, 512, [], "f5b4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM152 416c-26.5 0-48-21-48-47 0-20 28.5-60.4 41.6-77.8 3.2-4.3 9.6-4.3 12.8 0C171.5 308.6 200 349 200 369c0 26-21.5 47-48 47zm16-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm170.2 154.2C315.8 367.4 282.9 352 248 352c-21.2 0-21.2-32 0-32 44.4 0 86.3 19.6 114.7 53.8 13.8 16.4-11.2 36.5-24.5 20.4z" ], + save: [ 448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z" ], + school: [ 640, 512, [], "f549", "M0 224v272c0 8.84 7.16 16 16 16h80V192H32c-17.67 0-32 14.33-32 32zm360-48h-24v-40c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v64c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zm137.75-63.96l-160-106.67a32.02 32.02 0 0 0-35.5 0l-160 106.67A32.002 32.002 0 0 0 128 138.66V512h128V368c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v144h128V138.67c0-10.7-5.35-20.7-14.25-26.63zM320 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm288-64h-64v320h80c8.84 0 16-7.16 16-16V224c0-17.67-14.33-32-32-32z" ], + screwdriver: [ 512, 512, [], "f54a", "M448 0L320 96v62.06l-83.03 83.03c6.79 4.25 13.27 9.06 19.07 14.87 5.8 5.8 10.62 12.28 14.87 19.07L353.94 192H416l96-128-64-64zM128 278.59L10.92 395.67c-14.55 14.55-14.55 38.15 0 52.71l52.7 52.7c14.56 14.56 38.15 14.56 52.71 0L233.41 384c29.11-29.11 29.11-76.3 0-105.41s-76.3-29.11-105.41 0z" ], + search: [ 512, 512, [], "f002", "M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z" ], + "search-minus": [ 512, 512, [], "f010", "M304 192v32c0 6.6-5.4 12-12 12H124c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z" ], + "search-plus": [ 512, 512, [], "f00e", "M304 192v32c0 6.6-5.4 12-12 12h-56v56c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-56h-56c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h56v-56c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v56h56c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z" ], + seedling: [ 512, 512, [], "f4d8", "M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z" ], + server: [ 512, 512, [], "f233", "M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z" ], + share: [ 512, 512, [], "f064", "M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z" ], + "share-alt": [ 448, 512, [], "f1e0", "M352 320c-22.608 0-43.387 7.819-59.79 20.895l-102.486-64.054a96.551 96.551 0 0 0 0-41.683l102.486-64.054C308.613 184.181 329.392 192 352 192c53.019 0 96-42.981 96-96S405.019 0 352 0s-96 42.981-96 96c0 7.158.79 14.13 2.276 20.841L155.79 180.895C139.387 167.819 118.608 160 96 160c-53.019 0-96 42.981-96 96s42.981 96 96 96c22.608 0 43.387-7.819 59.79-20.895l102.486 64.054A96.301 96.301 0 0 0 256 416c0 53.019 42.981 96 96 96s96-42.981 96-96-42.981-96-96-96z" ], + "share-alt-square": [ 448, 512, [], "f1e1", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zM304 296c-14.562 0-27.823 5.561-37.783 14.671l-67.958-40.775a56.339 56.339 0 0 0 0-27.793l67.958-40.775C276.177 210.439 289.438 216 304 216c30.928 0 56-25.072 56-56s-25.072-56-56-56-56 25.072-56 56c0 4.797.605 9.453 1.74 13.897l-67.958 40.775C171.823 205.561 158.562 200 144 200c-30.928 0-56 25.072-56 56s25.072 56 56 56c14.562 0 27.823-5.561 37.783-14.671l67.958 40.775a56.088 56.088 0 0 0-1.74 13.897c0 30.928 25.072 56 56 56s56-25.072 56-56C360 321.072 334.928 296 304 296z" ], + "share-square": [ 576, 512, [], "f14d", "M568.482 177.448L424.479 313.433C409.3 327.768 384 317.14 384 295.985v-71.963c-144.575.97-205.566 35.113-164.775 171.353 4.483 14.973-12.846 26.567-25.006 17.33C155.252 383.105 120 326.488 120 269.339c0-143.937 117.599-172.5 264-173.312V24.012c0-21.174 25.317-31.768 40.479-17.448l144.003 135.988c10.02 9.463 10.028 25.425 0 34.896zM384 379.128V448H64V128h50.916a11.99 11.99 0 0 0 8.648-3.693c14.953-15.568 32.237-27.89 51.014-37.676C185.708 80.83 181.584 64 169.033 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48v-88.806c0-8.288-8.197-14.066-16.011-11.302a71.83 71.83 0 0 1-34.189 3.377c-7.27-1.046-13.8 4.514-13.8 11.859z" ], + "shekel-sign": [ 448, 512, [], "f20b", "M248 168v168c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V168c0-75.11-60.89-136-136-136H24C10.75 32 0 42.74 0 56v408c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112h112c30.93 0 56 25.07 56 56zM432 32h-48c-8.84 0-16 7.16-16 16v296c0 30.93-25.07 56-56 56H200V176c0-8.84-7.16-16-16-16h-48c-8.84 0-16 7.16-16 16v280c0 13.25 10.75 24 24 24h168c75.11 0 136-60.89 136-136V48c0-8.84-7.16-16-16-16z" ], + "shield-alt": [ 512, 512, [], "f3ed", "M496 128c0 221.282-135.934 344.645-221.539 380.308a48 48 0 0 1-36.923 0C130.495 463.713 16 326.487 16 128a48 48 0 0 1 29.539-44.308l192-80a48 48 0 0 1 36.923 0l192 80A48 48 0 0 1 496 128zM256 446.313l.066.034c93.735-46.689 172.497-156.308 175.817-307.729L256 65.333v380.98z" ], + ship: [ 640, 512, [], "f21a", "M496.616 372.639l70.012-70.012c16.899-16.9 9.942-45.771-12.836-53.092L512 236.102V96c0-17.673-14.327-32-32-32h-64V24c0-13.255-10.745-24-24-24H248c-13.255 0-24 10.745-24 24v40h-64c-17.673 0-32 14.327-32 32v140.102l-41.792 13.433c-22.753 7.313-29.754 36.173-12.836 53.092l70.012 70.012C125.828 416.287 85.587 448 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24 61.023 0 107.499-20.61 143.258-59.396C181.677 487.432 216.021 512 256 512h128c39.979 0 74.323-24.568 88.742-59.396C508.495 491.384 554.968 512 616 512c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24-60.817 0-101.542-31.001-119.384-75.361zM192 128h256v87.531l-118.208-37.995a31.995 31.995 0 0 0-19.584 0L192 215.531V128z" ], + "shipping-fast": [ 640, 512, [], "f48b", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H112C85.5 0 64 21.5 64 48v48H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h272c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H40c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H64v128c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z" ], + "shoe-prints": [ 640, 512, [], "f54b", "M192 160h32V32h-32c-35.35 0-64 28.65-64 64s28.65 64 64 64zM0 416c0 35.35 28.65 64 64 64h32V352H64c-35.35 0-64 28.65-64 64zm337.46-128c-34.91 0-76.16 13.12-104.73 32-24.79 16.38-44.52 32-104.73 32v128l57.53 15.97c26.21 7.28 53.01 13.12 80.31 15.05 32.69 2.31 65.6.67 97.58-6.2C472.9 481.3 512 429.22 512 384c0-64-84.18-96-174.54-96zM491.42 7.19C459.44.32 426.53-1.33 393.84.99c-27.3 1.93-54.1 7.77-80.31 15.04L256 32v128c60.2 0 79.94 15.62 104.73 32 28.57 18.88 69.82 32 104.73 32C555.82 224 640 192 640 128c0-45.22-39.1-97.3-148.58-120.81z" ], + "shopping-bag": [ 448, 512, [], "f290", "M352 160v-32C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128v32H0v272c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V160h-96zm-192-32c0-35.29 28.71-64 64-64s64 28.71 64 64v32H160v-32zm160 120c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm-192 0c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24z" ], + "shopping-basket": [ 576, 512, [], "f291", "M576 216v16c0 13.255-10.745 24-24 24h-8l-26.113 182.788C514.509 462.435 494.257 480 470.37 480H105.63c-23.887 0-44.139-17.565-47.518-41.212L32 256h-8c-13.255 0-24-10.745-24-24v-16c0-13.255 10.745-24 24-24h67.341l106.78-146.821c10.395-14.292 30.407-17.453 44.701-7.058 14.293 10.395 17.453 30.408 7.058 44.701L170.477 192h235.046L326.12 82.821c-10.395-14.292-7.234-34.306 7.059-44.701 14.291-10.395 34.306-7.235 44.701 7.058L484.659 192H552c13.255 0 24 10.745 24 24zM312 392V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm112 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm-224 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24z" ], + "shopping-cart": [ 576, 512, [], "f07a", "M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z" ], + shower: [ 512, 512, [], "f2cc", "M389.66 135.6L231.6 293.66c-9.37 9.37-24.57 9.37-33.94 0l-11.32-11.32c-9.37-9.37-9.37-24.57 0-33.94l.11-.11c-34.03-40.21-35.16-98.94-3.39-140.38-11.97-7.55-26.14-11.91-41.3-11.91C98.88 96 64 130.88 64 173.76V480H0V173.76C0 95.59 63.59 32 141.76 32c36.93 0 70.61 14.2 95.86 37.42 35.9-11.51 76.5-4.5 106.67 21.03l.11-.11c9.37-9.37 24.57-9.37 33.94 0l11.32 11.32c9.37 9.37 9.37 24.57 0 33.94zM384 208c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm48-16c8.837 0 16 7.163 16 16s-7.163 16-16 16-16-7.163-16-16 7.163-16 16-16zm80 16c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-128 32c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-96 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm64 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16z" ], + "shuttle-van": [ 640, 512, [], "f5b6", "M628.88 210.65L494.39 49.27A48.01 48.01 0 0 0 457.52 32H32C14.33 32 0 46.33 0 64v288c0 17.67 14.33 32 32 32h32c0 53.02 42.98 96 96 96s96-42.98 96-96h128c0 53.02 42.98 96 96 96s96-42.98 96-96h32c17.67 0 32-14.33 32-32V241.38c0-11.23-3.94-22.1-11.12-30.73zM64 192V96h96v96H64zm96 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm160-240h-96V96h96v96zm160 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm-96-240V96h66.02l80 96H384z" ], + sign: [ 512, 512, [], "f4d9", "M496 64H128V16c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16v48H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V128h368c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM160 384h320V160H160v224z" ], + "sign-in-alt": [ 512, 512, [], "f2f6", "M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z" ], + "sign-language": [ 448, 512, [], "f2a7", "M91.434 483.987c-.307-16.018 13.109-29.129 29.13-29.129h62.293v-5.714H56.993c-16.021 0-29.437-13.111-29.13-29.129C28.16 404.491 40.835 392 56.428 392h126.429v-5.714H29.136c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h154.286v-5.714H57.707c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h168.566l-31.085-22.606c-12.762-9.281-15.583-27.149-6.302-39.912 9.281-12.761 27.15-15.582 39.912-6.302l123.361 89.715a34.287 34.287 0 0 1 14.12 27.728v141.136c0 15.91-10.946 29.73-26.433 33.374l-80.471 18.934a137.16 137.16 0 0 1-31.411 3.646H120c-15.593-.001-28.269-12.492-28.566-28.014zm73.249-225.701h36.423l-11.187-8.136c-18.579-13.511-20.313-40.887-3.17-56.536l-13.004-16.7c-9.843-12.641-28.43-15.171-40.88-5.088-12.065 9.771-14.133 27.447-4.553 39.75l36.371 46.71zm283.298-2.103l-5.003-152.452c-.518-15.771-13.722-28.136-29.493-27.619-15.773.518-28.137 13.722-27.619 29.493l1.262 38.415L283.565 11.019c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l76.889 98.745-4.509 3.511-94.79-121.734c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l94.443 121.288-4.509 3.511-77.675-99.754c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l52.053 66.849c12.497-8.257 29.055-8.285 41.69.904l123.36 89.714c10.904 7.93 17.415 20.715 17.415 34.198v16.999l61.064-47.549a34.285 34.285 0 0 0 13.202-28.177z" ], + "sign-out-alt": [ 512, 512, [], "f2f5", "M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z" ], + signal: [ 640, 512, [], "f012", "M36 384h56c6.6 0 12 5.4 12 12v104c0 6.6-5.4 12-12 12H36c-6.6 0-12-5.4-12-12V396c0-6.6 5.4-12 12-12zm116-36v152c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V348c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-80v232c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V268c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-112v344c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V156c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zM536 12v488c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V12c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12z" ], + signature: [ 512, 512, [], "f5b7", "M496 320h-91.86c-9.27 0-19.72-11.31-25.78-28.52-15.23-43.36-48.11-70.3-85.8-70.3-30.84 0-58.47 18.05-76.11 49.23L194.8 106.5C188.84 81.08 169.34 64 146.28 64c-23.05 0-42.55 17.08-48.5 42.5L56.16 284.2C50.7 307.45 37.75 320 28.33 320H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h12.33c41.97 0 78.19-34.23 90.14-85.2l23.84-101.78 29.25 222.11c1.98 15.05 13.82 27.45 28.94 28.75.99.09 1.96.13 2.93.13 14.08 0 26.64-9.27 30.69-22.95l33.03-112.34c5.88-16.72 15.84-27.52 25.41-27.52 9.58 0 19.55 10.8 25.78 28.52 15.23 43.36 48.11 70.3 85.8 70.3H496c8.84 0 16-7.16 16-16v-32c0-8.86-7.16-16.02-16-16.02z" ], + sitemap: [ 640, 512, [], "f0e8", "M128 352H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm-24-80h192v48h48v-48h192v48h48v-57.59c0-21.17-17.23-38.41-38.41-38.41H344v-64h40c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H256c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h40v64H94.41C73.23 224 56 241.23 56 262.41V320h48v-48zm264 80h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm240 0h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z" ], + skull: [ 512, 512, [], "f54c", "M256 0C114.6 0 0 100.3 0 224c0 70.1 36.9 132.6 94.5 173.7 9.6 6.9 15.2 18.1 13.5 29.9l-9.4 66.2c-1.4 9.6 6 18.2 15.7 18.2H192v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h64v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h77.7c9.7 0 17.1-8.6 15.7-18.2l-9.4-66.2c-1.7-11.7 3.8-23 13.5-29.9C475.1 356.6 512 294.1 512 224 512 100.3 397.4 0 256 0zm-96 320c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm192 0c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64z" ], + "sliders-h": [ 512, 512, [], "f1de", "M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z" ], + smile: [ 496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.6-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.4-16.2 38.1 4.2 24.6 20.5z" ], + "smile-beam": [ 496, 512, [], "f5b8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM112 223.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zm250.8 122.8C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.3 24.6 20.5zm6.2-118.3l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.6 8.6-11 11.9-15.1 4.5z" ], + "smile-wink": [ 496, 512, [], "f4da", "M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm158.5 16.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.7 11.1-11.4 18.3-19.8 10.8l-9.7-8.5zM157.8 325.8C180.2 352.7 213 368 248 368s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.2 24.6 20.5C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11.2-36.7 24.6-20.4z" ], + smoking: [ 640, 512, [], "f48d", "M632 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8zM553.3 87.1c-5.7-3.8-9.3-10-9.3-16.8V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v62.3c0 22 10.2 43.4 28.6 55.4 42.2 27.3 67.4 73.8 67.4 124V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-65.5-32.4-126.2-86.7-162.6zM432 352H48c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h384c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zm-32 112H224v-64h176v64zm87.7-322.4C463.8 125 448 99.3 448 70.3V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v66.4c0 43.7 24.6 81.6 60.3 106.7 22.4 15.7 35.7 41.2 35.7 68.6V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-43.3-21-83.4-56.3-108.1zM536 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8z" ], + "smoking-ban": [ 512, 512, [], "f54d", "M96 304c0 8.8 7.2 16 16 16h117.5l-96-96H112c-8.8 0-16 7.2-16 16v64zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 448c-105.9 0-192-86.1-192-192 0-41.4 13.3-79.7 35.7-111.1l267.4 267.4C335.7 434.7 297.4 448 256 448zm45.2-192H384v32h-50.8l-32-32zm111.1 111.1L365.2 320H400c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16H269.2L144.9 99.7C176.3 77.3 214.6 64 256 64c105.9 0 192 86.1 192 192 0 41.4-13.3 79.7-35.7 111.1zM320.6 128c-15.6 0-28.6-11.2-31.4-25.9-.7-3.6-4-6.1-7.7-6.1h-16.2c-5 0-8.7 4.5-8 9.4 4.6 30.9 31.2 54.6 63.3 54.6 15.6 0 28.6 11.2 31.4 25.9.7 3.6 4 6.1 7.7 6.1h16.2c5 0 8.7-4.5 8-9.4-4.6-30.9-31.2-54.6-63.3-54.6z" ], + snowflake: [ 448, 512, [], "f2dc", "M444.816 301.639a24.12 24.12 0 0 0 2.661-16.978c-2.725-12.966-15.339-21.245-28.174-18.492l-87.407 25.046L264 256l67.896-35.215 87.407 25.046c12.835 2.753 25.449-5.526 28.174-18.492 2.725-12.966-5.471-25.708-18.305-28.461l-47.477-7.137 53.077-30.956c11.363-6.627 15.257-21.306 8.696-32.785-6.561-11.479-21.091-15.412-32.454-8.785l-53.077 30.956 17.621-45.104c4.057-12.606-2.768-26.146-15.247-30.245-12.478-4.099-25.883 2.797-29.94 15.402l-22.232 88.99-60.38 35.215V144l65.175-63.945c8.778-9.852 7.987-25.027-1.766-33.894-9.753-8.867-24.775-8.068-33.552 1.784l-29.857 37.967V24c0-13.255-10.637-24-23.758-24s-23.758 10.745-23.758 24v61.912l-29.857-37.967c-8.779-9.852-23.799-10.652-33.552-1.784-9.753 8.867-10.543 24.042-1.766 33.894L200.242 144v70.431l-60.38-35.215-22.232-88.99c-4.057-12.605-17.462-19.501-29.94-15.402-12.478 4.099-19.304 17.64-15.247 30.245l17.62 45.104-53.077-30.956c-11.363-6.627-25.893-2.694-32.454 8.785s-2.667 26.157 8.696 32.785l53.077 30.956-47.477 7.137C5.993 201.634-2.203 214.375.523 227.341c2.725 12.965 15.339 21.245 28.174 18.492l87.407-25.046L184 256l-67.896 35.215-87.406-25.045c-12.835-2.753-25.449 5.526-28.174 18.492-2.725 12.967 5.47 25.708 18.305 28.461l47.477 7.137-53.077 30.956C1.866 357.843-2.027 372.521 4.533 384s21.091 15.412 32.454 8.785l53.077-30.956-17.62 45.104a24.157 24.157 0 0 0 2.022 19.428c2.831 4.953 7.416 8.909 13.224 10.816 12.478 4.099 25.883-2.797 29.94-15.402l22.232-88.99 60.38-35.215V368l-65.175 63.945c-8.778 9.852-7.987 25.027 1.766 33.894 9.754 8.868 24.774 8.068 33.552-1.784l29.857-37.967V488c0 13.255 10.637 24 23.758 24s23.758-10.745 23.758-24v-61.912l29.857 37.967A23.59 23.59 0 0 0 295.282 472a23.534 23.534 0 0 0 15.885-6.161c9.753-8.867 10.544-24.042 1.766-33.894L247.758 368v-70.431l60.38 35.215 22.232 88.99c4.057 12.605 17.462 19.501 29.94 15.402 12.479-4.099 19.304-17.64 15.247-30.245l-17.621-45.104 53.077 30.956c11.363 6.627 25.893 2.694 32.454-8.785s2.667-26.157-8.696-32.785l-53.077-30.956 47.477-7.137c6.86-1.469 12.394-5.793 15.645-11.481z" ], + "solar-panel": [ 640, 512, [], "f5ba", "M431.98 448.01l-47.97.05V416h-128v32.21l-47.98.05c-8.82.01-15.97 7.16-15.98 15.99l-.05 31.73c-.01 8.85 7.17 16.03 16.02 16.02l223.96-.26c8.82-.01 15.97-7.16 15.98-15.98l.04-31.73c.01-8.85-7.17-16.03-16.02-16.02zM585.2 26.74C582.58 11.31 568.99 0 553.06 0H86.93C71 0 57.41 11.31 54.79 26.74-3.32 369.16.04 348.08.03 352c-.03 17.32 14.29 32 32.6 32h574.74c18.23 0 32.51-14.56 32.59-31.79.02-4.08 3.35 16.95-54.76-325.47zM259.83 64h120.33l9.77 96H250.06l9.77-96zm-75.17 256H71.09L90.1 208h105.97l-11.41 112zm16.29-160H98.24l16.29-96h96.19l-9.77 96zm32.82 160l11.4-112h149.65l11.4 112H233.77zm195.5-256h96.19l16.29 96H439.04l-9.77-96zm26.06 256l-11.4-112H549.9l19.01 112H455.33z" ], + sort: [ 320, 512, [], "f0dc", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z" ], + "sort-alpha-down": [ 448, 512, [], "f15d", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zm119.075-180.007A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z" ], + "sort-alpha-up": [ 448, 512, [], "f15e", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zm301.671 98.621A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z" ], + "sort-amount-down": [ 512, 512, [], "f160", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z" ], + "sort-amount-up": [ 512, 512, [], "f161", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z" ], + "sort-down": [ 320, 512, [], "f0dd", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z" ], + "sort-numeric-down": [ 448, 512, [], "f162", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM175.984 368H128V48c0-8.837-7.163-16-16-16H80c-8.837 0-16 7.163-16 16v320H16.019c-14.212 0-21.384 17.244-11.314 27.314l79.981 80.002c6.245 6.245 16.38 6.247 22.627 0l79.984-80.002c10.05-10.05 2.928-27.314-11.313-27.314z" ], + "sort-numeric-up": [ 448, 512, [], "f163", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM16.016 144H64v320c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144h47.981c14.212 0 21.384-17.244 11.314-27.314l-79.981-80.002c-6.245-6.245-16.38-6.247-22.627 0L4.702 116.686C-5.347 126.736 1.775 144 16.016 144z" ], + "sort-up": [ 320, 512, [], "f0de", "M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z" ], + spa: [ 576, 512, [], "f5bb", "M568.25 192c-29.04.13-135.01 6.16-213.84 83-33.12 29.63-53.36 63.3-66.41 94.86-13.05-31.56-33.29-65.23-66.41-94.86-78.83-76.84-184.8-82.87-213.84-83-4.41-.02-7.79 3.4-7.75 7.82.23 27.92 7.14 126.14 88.77 199.3C172.79 480.94 256 480 288 480s115.19.95 199.23-80.88c81.64-73.17 88.54-171.38 88.77-199.3.04-4.42-3.34-7.84-7.75-7.82zM287.98 302.6c12.82-18.85 27.6-35.78 44.09-50.52 19.09-18.61 39.58-33.3 60.26-45.18-16.44-70.5-51.72-133.05-96.73-172.22-4.11-3.58-11.02-3.58-15.14 0-44.99 39.14-80.27 101.63-96.74 172.07 20.37 11.7 40.5 26.14 59.22 44.39a282.768 282.768 0 0 1 45.04 51.46z" ], + "space-shuttle": [ 640, 512, [], "f197", "M592.604 208.244C559.735 192.836 515.777 184 472 184H186.327c-4.952-6.555-10.585-11.978-16.72-16H376C229.157 137.747 219.403 32 96.003 32H96v128H80V32c-26.51 0-48 28.654-48 64v64c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v16c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v64c0 35.346 21.49 64 48 64V352h16v128h.003c123.4 0 133.154-105.747 279.997-136H169.606c6.135-4.022 11.768-9.445 16.72-16H472c43.777 0 87.735-8.836 120.604-24.244C622.282 289.845 640 271.992 640 256s-17.718-33.845-47.396-47.756zM488 296a8 8 0 0 1-8-8v-64a8 8 0 0 1 8-8c31.909 0 31.942 80 0 80z" ], + spinner: [ 512, 512, [], "f110", "M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z" ], + splotch: [ 512, 512, [], "f5bc", "M472.29 195.89l-67.06-22.95c-19.28-6.6-33.54-20.92-38.14-38.3L351.1 74.19c-11.58-43.77-76.57-57.13-109.98-22.62l-46.14 47.67c-13.26 13.71-33.54 20.93-54.2 19.31l-71.88-5.62c-52.05-4.07-86.93 44.88-59.03 82.83l38.54 52.42c11.08 15.07 12.82 33.86 4.64 50.24L24.62 355.4c-20.59 41.25 22.84 84.87 73.49 73.81l69.96-15.28c20.11-4.39 41.45 0 57.07 11.73l54.32 40.83c39.32 29.56 101.04 7.57 104.45-37.22l4.7-61.86c1.35-17.79 12.8-33.86 30.63-42.99l62-31.74c44.88-22.96 39.59-80.17-8.95-96.79z" ], + "spray-can": [ 512, 512, [], "f5bd", "M224 32c0-17.67-14.33-32-32-32h-64c-17.67 0-32 14.33-32 32v96h128V32zm256 96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-256 32H96c-53.02 0-96 42.98-96 96v224c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V256c0-53.02-42.98-96-96-96zm-64 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zM480 96c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm-96 32c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-96-96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 0c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 192c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z" ], + square: [ 448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z" ], + "square-full": [ 512, 512, [], "f45c", "M512 512H0V0h512v512z" ], + stamp: [ 512, 512, [], "f5bf", "M32 512h448v-64H32v64zm384-256h-66.56c-16.26 0-29.44-13.18-29.44-29.44v-9.46c0-27.37 8.88-53.41 21.46-77.72 9.11-17.61 12.9-38.39 9.05-60.42-6.77-38.78-38.47-70.7-77.26-77.45C212.62-9.04 160 37.33 160 96c0 14.16 3.12 27.54 8.69 39.58C182.02 164.43 192 194.7 192 226.49v.07c0 16.26-13.18 29.44-29.44 29.44H96c-53.02 0-96 42.98-96 96v32c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-32c0-53.02-42.98-96-96-96z" ], + star: [ 576, 512, [], "f005", "M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z" ], + "star-half": [ 576, 512, [], "f089", "M288 0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6V0z" ], + "star-half-alt": [ 536, 512, [], "f5c0", "M508.55 171.51L362.18 150.2 296.77 17.81C290.89 5.98 279.42 0 267.95 0c-11.4 0-22.79 5.9-28.69 17.81l-65.43 132.38-146.38 21.29c-26.25 3.8-36.77 36.09-17.74 54.59l105.89 103-25.06 145.48C86.98 495.33 103.57 512 122.15 512c4.93 0 10-1.17 14.87-3.75l130.95-68.68 130.94 68.7c4.86 2.55 9.92 3.71 14.83 3.71 18.6 0 35.22-16.61 31.66-37.4l-25.03-145.49 105.91-102.98c19.04-18.5 8.52-50.8-17.73-54.6zm-121.74 123.2l-18.12 17.62 4.28 24.88 19.52 113.45-102.13-53.59-22.38-11.74.03-317.19 51.03 103.29 11.18 22.63 25.01 3.64 114.23 16.63-82.65 80.38z" ], + "step-backward": [ 448, 512, [], "f048", "M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z" ], + "step-forward": [ 448, 512, [], "f051", "M384 44v424c0 6.6-5.4 12-12 12h-48c-6.6 0-12-5.4-12-12V291.6l-195.5 181C95.9 489.7 64 475.4 64 448V64c0-27.4 31.9-41.7 52.5-24.6L312 219.3V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12z" ], + stethoscope: [ 512, 512, [], "f0f1", "M447.1 112c-34.2.5-62.3 28.4-63 62.6-.5 24.3 12.5 45.6 32 56.8V344c0 57.3-50.2 104-112 104-60 0-109.2-44.1-111.9-99.2C265 333.8 320 269.2 320 192V36.6c0-11.4-8.1-21.3-19.3-23.5L237.8.5c-13-2.6-25.6 5.8-28.2 18.8L206.4 35c-2.6 13 5.8 25.6 18.8 28.2l30.7 6.1v121.4c0 52.9-42.2 96.7-95.1 97.2-53.4.5-96.9-42.7-96.9-96V69.4l30.7-6.1c13-2.6 21.4-15.2 18.8-28.2l-3.1-15.7C107.7 6.4 95.1-2 82.1.6L19.3 13C8.1 15.3 0 25.1 0 36.6V192c0 77.3 55.1 142 128.1 156.8C130.7 439.2 208.6 512 304 512c97 0 176-75.4 176-168V231.4c19.1-11.1 32-31.7 32-55.4 0-35.7-29.2-64.5-64.9-64zm.9 80c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z" ], + "sticky-note": [ 448, 512, [], "f249", "M312 320h136V56c0-13.3-10.7-24-24-24H24C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h264V344c0-13.2 10.8-24 24-24zm129 55l-98 98c-4.5 4.5-10.6 7-17 7h-6V352h128v6.1c0 6.3-2.5 12.4-7 16.9z" ], + stop: [ 448, 512, [], "f04d", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z" ], + "stop-circle": [ 512, 512, [], "f28d", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z" ], + stopwatch: [ 448, 512, [], "f2f2", "M432 304c0 114.9-93.1 208-208 208S16 418.9 16 304c0-104 76.3-190.2 176-205.5V64h-28c-6.6 0-12-5.4-12-12V12c0-6.6 5.4-12 12-12h120c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-28v34.5c37.5 5.8 71.7 21.6 99.7 44.6l27.5-27.5c4.7-4.7 12.3-4.7 17 0l28.3 28.3c4.7 4.7 4.7 12.3 0 17l-29.4 29.4-.6.6C419.7 223.3 432 262.2 432 304zm-176 36V188.5c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12V340c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z" ], + store: [ 616, 512, [], "f54e", "M602 118.6L537.1 15C531.3 5.7 521 0 510 0H106C95 0 84.7 5.7 78.9 15L14 118.6c-33.5 53.5-3.8 127.9 58.8 136.4 4.5.6 9.1.9 13.7.9 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18.1 20.1 44.3 33.1 73.8 33.1 4.7 0 9.2-.3 13.7-.9 62.8-8.4 92.6-82.8 59-136.4zM529.5 288c-10 0-19.9-1.5-29.5-3.8V384H116v-99.8c-9.6 2.2-19.5 3.8-29.5 3.8-6 0-12.1-.4-18-1.2-5.6-.8-11.1-2.1-16.4-3.6V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V283.2c-5.4 1.6-10.8 2.9-16.4 3.6-6.1.8-12.1 1.2-18.2 1.2z" ], + "store-alt": [ 640, 512, [], "f54f", "M320 384H128V224H64v256c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V224h-64v160zm314.6-241.8l-85.3-128c-6-8.9-16-14.2-26.7-14.2H117.4c-10.7 0-20.7 5.3-26.6 14.2l-85.3 128c-14.2 21.3 1 49.8 26.6 49.8H608c25.5 0 40.7-28.5 26.6-49.8zM512 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h-64v272z" ], + stream: [ 512, 512, [], "f550", "M16 128h416c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H16C7.16 32 0 39.16 0 48v64c0 8.84 7.16 16 16 16zm480 80H80c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm-64 176H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16z" ], + "street-view": [ 512, 512, [], "f21d", "M192 64c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zm112 80h-11.36c-22.711 10.443-49.59 10.894-73.28 0H208c-26.51 0-48 21.49-48 48v104c0 13.255 10.745 24 24 24h16v104c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V320h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48zm85.642 189.152a72.503 72.503 0 0 1-29.01 27.009C391.133 365.251 480 385.854 480 416c0 46.304-167.656 64-224 64-70.303 0-224-20.859-224-64 0-30.123 88.361-50.665 119.367-55.839a72.516 72.516 0 0 1-29.01-27.009C74.959 343.395 0 367.599 0 416c0 77.111 178.658 96 256 96 77.249 0 256-18.865 256-96 0-48.403-74.967-72.606-122.358-82.848z" ], + strikethrough: [ 512, 512, [], "f0cc", "M496 288H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h480c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16zm-214.666 16c27.258 12.937 46.524 28.683 46.524 56.243 0 33.108-28.977 53.676-75.621 53.676-32.325 0-76.874-12.08-76.874-44.271V368c0-8.837-7.164-16-16-16H113.75c-8.836 0-16 7.163-16 16v19.204c0 66.845 77.717 101.82 154.487 101.82 88.578 0 162.013-45.438 162.013-134.424 0-19.815-3.618-36.417-10.143-50.6H281.334zm-30.952-96c-32.422-13.505-56.836-28.946-56.836-59.683 0-33.92 30.901-47.406 64.962-47.406 42.647 0 64.962 16.593 64.962 32.985V136c0 8.837 7.164 16 16 16h45.613c8.836 0 16-7.163 16-16v-30.318c0-52.438-71.725-79.875-142.575-79.875-85.203 0-150.726 40.972-150.726 125.646 0 22.71 4.665 41.176 12.777 56.547h129.823z" ], + stroopwafel: [ 512, 512, [], "f551", "M188.12 210.74L142.86 256l45.25 45.25L233.37 256l-45.25-45.26zm113.13-22.62L256 142.86l-45.25 45.25L256 233.37l45.25-45.25zm-90.5 135.76L256 369.14l45.26-45.26L256 278.63l-45.25 45.25zM256 0C114.62 0 0 114.62 0 256s114.62 256 256 256 256-114.62 256-256S397.38 0 256 0zm186.68 295.6l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-28.29-28.29-45.25 45.25 33.94 33.94 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-33.94-33.94-45.26 45.26 28.29 28.29c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0L256 414.39l-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l28.29-28.29-45.25-45.26-33.94 33.94 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 33.94-33.94-45.25-45.25-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0L69.32 295.6c-3.12-3.12-3.12-8.19 0-11.31L97.61 256l-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l28.29 28.29 45.25-45.26-33.94-33.94-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 33.94 33.94 45.26-45.25-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0L256 97.61l28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-28.29 28.29 45.26 45.25 33.94-33.94-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-33.94 33.94 45.25 45.26 28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31L414.39 256l28.29 28.28a8.015 8.015 0 0 1 0 11.32zM278.63 256l45.26 45.25L369.14 256l-45.25-45.26L278.63 256z" ], + subscript: [ 512, 512, [], "f12c", "M395.198 416c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 256c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 96H16C7.163 96 0 88.837 0 80V48c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035A15.999 15.999 0 0 1 204.226 32H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 256H272z" ], + subway: [ 448, 512, [], "f239", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zM200 232V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm200 0V120c0-13.255-10.745-24-24-24H272c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm-48 56c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm-256 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z" ], + suitcase: [ 512, 512, [], "f0f2", "M128 480h256V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v400zm64-384h128v32H192V96zm320 80v256c0 26.5-21.5 48-48 48h-48V128h48c26.5 0 48 21.5 48 48zM96 480H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h48v352z" ], + "suitcase-rolling": [ 384, 512, [], "f5c1", "M336 160H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h16v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h128v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h16c26.51 0 48-21.49 48-48V208c0-26.51-21.49-48-48-48zm-16 216c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zM144 48h96v80h48V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v80h48V48z" ], + sun: [ 512, 512, [], "f185", "M274.835 12.646l25.516 62.393c4.213 10.301 16.671 14.349 26.134 8.492l57.316-35.479c15.49-9.588 34.808 4.447 30.475 22.142l-16.03 65.475c-2.647 10.81 5.053 21.408 16.152 22.231l67.224 4.987c18.167 1.348 25.546 24.057 11.641 35.826L441.81 242.26c-8.495 7.19-8.495 20.289 0 27.479l51.454 43.548c13.906 11.769 6.527 34.478-11.641 35.826l-67.224 4.987c-11.099.823-18.799 11.421-16.152 22.231l16.03 65.475c4.332 17.695-14.986 31.73-30.475 22.142l-57.316-35.479c-9.463-5.858-21.922-1.81-26.134 8.492l-25.516 62.393c-6.896 16.862-30.774 16.862-37.67 0l-25.516-62.393c-4.213-10.301-16.671-14.349-26.134-8.492l-57.317 35.479c-15.49 9.588-34.808-4.447-30.475-22.142l16.03-65.475c2.647-10.81-5.053-21.408-16.152-22.231l-67.224-4.987c-18.167-1.348-25.546-24.057-11.641-35.826L70.19 269.74c8.495-7.19 8.495-20.289 0-27.479l-51.454-43.548c-13.906-11.769-6.527-34.478 11.641-35.826l67.224-4.987c11.099-.823 18.799-11.421 16.152-22.231l-16.03-65.475c-4.332-17.695 14.986-31.73 30.475-22.142l57.317 35.479c9.463 5.858 21.921 1.81 26.134-8.492l25.516-62.393c6.896-16.861 30.774-16.861 37.67 0zM392 256c0-74.991-61.01-136-136-136-74.991 0-136 61.009-136 136s61.009 136 136 136c74.99 0 136-61.009 136-136zm-32 0c0 57.346-46.654 104-104 104s-104-46.654-104-104 46.654-104 104-104 104 46.654 104 104z" ], + superscript: [ 512, 512, [], "f12b", "M395.198 256c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 256H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035a16 16 0 0 1 13.598-7.567H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 416H272z" ], + surprise: [ 496, 512, [], "f5c2", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm112 208c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm80-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + swatchbook: [ 511, 512, [], "f5c3", "M479.06 320H372.29L186.15 506.51c-2.06 2.07-4.49 3.58-6.67 5.49h299.58c17.64 0 31.94-14.33 31.94-32V352c0-17.67-14.3-32-31.94-32zm-44.5-152.9l-90.33-90.51c-12.47-12.5-32.69-12.5-45.17 0l-75.5 75.65V416c0 2.96-.67 5.73-.87 8.64l211.87-212.28c12.47-12.5 12.47-32.77 0-45.26zM191.62 32c0-17.67-14.3-32-31.94-32H31.94C14.3 0 0 14.33 0 32v384c0 53.02 42.9 96 95.81 96s95.81-42.98 95.81-96V32zM95.81 440c-13.23 0-23.95-10.75-23.95-24 0-13.26 10.73-24 23.95-24s23.95 10.74 23.95 24c.01 13.25-10.72 24-23.95 24zm31.94-184H63.88v-64h63.88v64zm0-128H63.88V64h63.88v64z" ], + swimmer: [ 640, 512, [], "f5c4", "M189.61 310.58c3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c16.02-14.77 34.5-22.58 53.46-22.58h16.3c18.96 0 37.45 7.81 53.46 22.58 3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c14.86-13.71 31.88-21.12 49.39-22.16l-112.84-80.6 18-12.86c3.64-2.58 8.28-3.52 12.62-2.61l100.35 21.53c25.91 5.53 51.44-10.97 57-36.88 5.55-25.92-10.95-51.44-36.88-57L437.68 98.47c-30.73-6.58-63.02.12-88.56 18.38l-80.02 57.17c-10.38 7.39-19.36 16.44-26.72 26.94L173.75 299c5.47 3.23 10.82 6.93 15.86 11.58zM624 352h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 343.58 442.04 352 416 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 343.58 250.04 352 224 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 343.58 58.04 352 32 352H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-512-96c44.18 0 80-35.82 80-80s-35.82-80-80-80-80 35.82-80 80 35.82 80 80 80z" ], + "swimming-pool": [ 640, 512, [], "f5c5", "M624 416h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 407.58 442.04 416 416 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 407.58 250.04 416 224 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 407.58 58.04 416 32 416H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-400-32v-96h192v96c19.12 0 30.86-6.16 34.39-9.42 9.17-8.46 19.2-14.34 29.61-18.07V128c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v96H224v-96c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v228.5c10.41 3.73 20.44 9.62 29.61 18.07 3.53 3.27 15.27 9.43 34.39 9.43z" ], + sync: [ 512, 512, [], "f021", "M440.935 12.574l3.966 82.766C399.416 41.904 331.674 8 256 8 134.813 8 33.933 94.924 12.296 209.824 10.908 217.193 16.604 224 24.103 224h49.084c5.57 0 10.377-3.842 11.676-9.259C103.407 137.408 172.931 80 256 80c60.893 0 114.512 30.856 146.104 77.801l-101.53-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12h-47.411c-6.853 0-12.315 5.729-11.987 12.574zM256 432c-60.895 0-114.517-30.858-146.109-77.805l101.868 4.871c6.845.327 12.573-5.134 12.573-11.986v-47.412c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12V500c0 6.627 5.373 12 12 12h47.385c6.863 0 12.328-5.745 11.985-12.599l-4.129-82.575C112.725 470.166 180.405 504 256 504c121.187 0 222.067-86.924 243.704-201.824 1.388-7.369-4.308-14.176-11.807-14.176h-49.084c-5.57 0-10.377 3.842-11.676 9.259C408.593 374.592 339.069 432 256 432z" ], + "sync-alt": [ 512, 512, [], "f2f1", "M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z" ], + syringe: [ 512, 512, [], "f48e", "M201.5 174.8l55.7 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-55.7-55.8-45.3 45.3 55.8 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L111 265.2l-26.4 26.4c-17.3 17.3-25.6 41.1-23 65.4l7.1 63.6L2.3 487c-3.1 3.1-3.1 8.2 0 11.3l11.3 11.3c3.1 3.1 8.2 3.1 11.3 0l66.3-66.3 63.6 7.1c23.9 2.6 47.9-5.4 65.4-23l181.9-181.9-135.7-135.7-64.9 65zm308.2-93.3L430.5 2.3c-3.1-3.1-8.2-3.1-11.3 0l-11.3 11.3c-3.1 3.1-3.1 8.2 0 11.3l28.3 28.3-45.3 45.3-56.6-56.6-17-17c-3.1-3.1-8.2-3.1-11.3 0l-33.9 33.9c-3.1 3.1-3.1 8.2 0 11.3l17 17L424.8 223l17 17c3.1 3.1 8.2 3.1 11.3 0l33.9-34c3.1-3.1 3.1-8.2 0-11.3l-73.5-73.5 45.3-45.3 28.3 28.3c3.1 3.1 8.2 3.1 11.3 0l11.3-11.3c3.1-3.2 3.1-8.2 0-11.4z" ], + table: [ 512, 512, [], "f0ce", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64v-96h160v96zm0-160H64v-96h160v96zm224 160H288v-96h160v96zm0-160H288v-96h160v96z" ], + "table-tennis": [ 512, 512, [], "f45d", "M496.2 296.5C527.7 218.7 512 126.2 449 63.1 365.1-21 229-21 145.1 63.1l-56 56.1 211.5 211.5c46.1-62.1 131.5-77.4 195.6-34.2zm-217.9 79.7L57.9 155.9c-27.3 45.3-21.7 105 17.3 144.1l34.5 34.6L6.7 424c-8.6 7.5-9.1 20.7-1 28.8l53.4 53.5c8 8.1 21.2 7.6 28.7-1L177.1 402l35.7 35.7c19.7 19.7 44.6 30.5 70.3 33.3-7.1-17-11-35.6-11-55.1-.1-13.8 2.5-27 6.2-39.7zM416 320c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96z" ], + tablet: [ 448, 512, [], "f10a", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + "tablet-alt": [ 448, 512, [], "f3fa", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm176-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h328c6.6 0 12 5.4 12 12v312z" ], + tablets: [ 640, 512, [], "f490", "M160 192C78.9 192 12.5 250.5.1 326.7c-.8 4.8 3.3 9.3 8.3 9.3h303.3c5 0 9.1-4.5 8.3-9.3C307.5 250.5 241.1 192 160 192zm151.6 176H8.4c-5 0-9.1 4.5-8.3 9.3C12.5 453.5 78.9 512 160 512s147.5-58.5 159.9-134.7c.8-4.8-3.3-9.3-8.3-9.3zM593.4 46.6c-56.5-56.5-144.2-61.4-206.9-16-4 2.9-4.3 8.9-.8 12.3L597 254.3c3.5 3.5 9.5 3.2 12.3-.8 45.5-62.7 40.6-150.4-15.9-206.9zM363 65.7c-3.5-3.5-9.5-3.2-12.3.8-45.4 62.7-40.5 150.4 15.9 206.9 56.5 56.5 144.2 61.4 206.9 15.9 4-2.9 4.3-8.9.8-12.3L363 65.7z" ], + "tachometer-alt": [ 576, 512, [], "f3fd", "M75.694 480a48.02 48.02 0 0 1-42.448-25.571C12.023 414.3 0 368.556 0 320 0 160.942 128.942 32 288 32s288 128.942 288 288c0 48.556-12.023 94.3-33.246 134.429A48.018 48.018 0 0 1 500.306 480H75.694zM512 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zM288 128c17.673 0 32-14.327 32-32 0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32zM64 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm65.608-158.392c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm316.784 0c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm-87.078 31.534c-12.627-4.04-26.133 2.92-30.173 15.544l-45.923 143.511C250.108 322.645 224 350.264 224 384c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64 0-19.773-8.971-37.447-23.061-49.187l45.919-143.498c4.039-12.625-2.92-26.133-15.544-30.173z" ], + tag: [ 512, 512, [], "f02b", "M0 252.118V48C0 21.49 21.49 0 48 0h204.118a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882L293.823 497.941c-18.745 18.745-49.137 18.745-67.882 0L14.059 286.059A48 48 0 0 1 0 252.118zM112 64c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z" ], + tags: [ 640, 512, [], "f02c", "M497.941 225.941L286.059 14.059A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v204.118a48 48 0 0 0 14.059 33.941l211.882 211.882c18.744 18.745 49.136 18.746 67.882 0l204.118-204.118c18.745-18.745 18.745-49.137 0-67.882zM112 160c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm513.941 133.823L421.823 497.941c-18.745 18.745-49.137 18.745-67.882 0l-.36-.36L527.64 323.522c16.999-16.999 26.36-39.6 26.36-63.64s-9.362-46.641-26.36-63.64L331.397 0h48.721a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882z" ], + tape: [ 640, 512, [], "f4db", "M224 192c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm400 224H380.6c41.5-40.7 67.4-97.3 67.4-160 0-123.7-100.3-224-224-224S0 132.3 0 256s100.3 224 224 224h400c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400-64c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96z" ], + tasks: [ 512, 512, [], "f0ae", "M208 132h288c8.8 0 16-7.2 16-16V76c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zM64 368c-26.5 0-48.6 21.5-48.6 48s22.1 48 48.6 48 48-21.5 48-48-21.5-48-48-48zm92.5-299l-72.2 72.2-15.6 15.6c-4.7 4.7-12.9 4.7-17.6 0L3.5 109.4c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.3c4.7-4.7 12.3-4.7 17 0l17 16.5c4.6 4.7 4.6 12.3-.1 17zm0 159.6l-72.2 72.2-15.7 15.7c-4.7 4.7-12.9 4.7-17.6 0L3.5 269c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.7c4.7-4.7 12.3-4.7 17 0l17 17c4.6 4.6 4.6 12.2-.1 16.9z" ], + taxi: [ 512, 512, [], "f1ba", "M462 241.64l-22-84.84c-9.6-35.2-41.6-60.8-76.8-60.8H352V64c0-17.67-14.33-32-32-32H192c-17.67 0-32 14.33-32 32v32h-11.2c-35.2 0-67.2 25.6-76.8 60.8l-22 84.84C21.41 248.04 0 273.47 0 304v48c0 23.63 12.95 44.04 32 55.12V448c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-40.88c19.05-11.09 32-31.5 32-55.12v-48c0-30.53-21.41-55.96-50-62.36zM96 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm20.55-112l17.2-66.36c2.23-8.16 9.59-13.64 15.06-13.64h214.4c5.47 0 12.83 5.48 14.85 12.86L395.45 240h-278.9zM416 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + terminal: [ 640, 512, [], "f120", "M257.981 272.971L63.638 467.314c-9.373 9.373-24.569 9.373-33.941 0L7.029 444.647c-9.357-9.357-9.375-24.522-.04-33.901L161.011 256 6.99 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L257.981 239.03c9.373 9.372 9.373 24.568 0 33.941zM640 456v-32c0-13.255-10.745-24-24-24H312c-13.255 0-24 10.745-24 24v32c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z" ], + "text-height": [ 576, 512, [], "f034", "M16 32h288c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96h-54.761v320H232c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H88c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm475.308 4.685l79.995 80.001C581.309 126.693 574.297 144 559.99 144H512v224h48c15.639 0 20.635 17.991 11.313 27.314l-79.995 80.001c-6.247 6.247-16.381 6.245-22.626 0l-79.995-80.001C378.691 385.307 385.703 368 400.01 368H448V144h-48c-15.639 0-20.635-17.991-11.313-27.314l79.995-80.001c6.247-6.248 16.381-6.245 22.626 0z" ], + "text-width": [ 448, 512, [], "f035", "M16 32h416c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96H261.743v128H296c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H152c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm427.315 340.682l-80.001-79.995C353.991 283.365 336 288.362 336 304v48H112v-47.99c0-14.307-17.307-21.319-27.314-11.313L4.685 372.692c-6.245 6.245-6.247 16.379 0 22.626l80.001 79.995C94.009 484.635 112 479.638 112 464v-48h224v47.99c0 14.307 17.307 21.319 27.314 11.313l80.001-79.995c6.245-6.245 6.248-16.379 0-22.626z" ], + th: [ 512, 512, [], "f00a", "M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z" ], + "th-large": [ 512, 512, [], "f009", "M296 32h192c13.255 0 24 10.745 24 24v160c0 13.255-10.745 24-24 24H296c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24zm-80 0H24C10.745 32 0 42.745 0 56v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zM0 296v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm296 184h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H296c-13.255 0-24 10.745-24 24v160c0 13.255 10.745 24 24 24z" ], + "th-list": [ 512, 512, [], "f00b", "M149.333 216v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zM125.333 32H24C10.745 32 0 42.745 0 56v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zm80 448H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm-24-424v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24zm24 264H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24z" ], + thermometer: [ 512, 512, [], "f491", "M476.8 20.4c-37.5-30.7-95.5-26.3-131.9 10.2l-45.7 46 50.5 50.5c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.4-50.5-45.1 45.4 50.3 50.4c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L209 167.4l-45.1 45.4L214 263c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.1-50.2L96 281.1V382L7 471c-9.4 9.4-9.4 24.6 0 33.9 9.4 9.4 24.6 9.4 33.9 0l89-89h99.9L484 162.6c34.9-34.9 42.2-101.5-7.2-142.2z" ], + "thermometer-empty": [ 256, 512, [], "f2cb", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z" ], + "thermometer-full": [ 256, 512, [], "f2c7", "M224 96c0-53.019-42.981-96-96-96S32 42.981 32 96v203.347C12.225 321.756.166 351.136.002 383.333c-.359 70.303 56.787 128.176 127.089 128.664.299.002.61.003.909.003 70.698 0 128-57.304 128-128 0-32.459-12.088-62.09-32-84.653V96zm-96 368l-.576-.002c-43.86-.304-79.647-36.544-79.423-80.42.173-33.98 19.266-51.652 31.999-66.08V96c0-26.467 21.533-48 48-48s48 21.533 48 48v221.498c12.63 14.312 32 32.164 32 66.502 0 44.112-35.888 80-80 80zm64-80c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V96c0-17.673 14.327-32 32-32s32 14.327 32 32v232.583c19.124 11.068 32 31.732 32 55.417z" ], + "thermometer-half": [ 256, 512, [], "f2c9", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V224c0-17.673 14.327-32 32-32s32 14.327 32 32v104.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z" ], + "thermometer-quarter": [ 256, 512, [], "f2ca", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V288c0-17.673 14.327-32 32-32s32 14.327 32 32v40.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z" ], + "thermometer-three-quarters": [ 256, 512, [], "f2c8", "M192 384c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-23.685 12.876-44.349 32-55.417V160c0-17.673 14.327-32 32-32s32 14.327 32 32v168.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z" ], + "thumbs-down": [ 512, 512, [], "f165", "M0 56v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56zm40 200c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24zm272 256c-20.183 0-29.485-39.293-33.931-57.795-5.206-21.666-10.589-44.07-25.393-58.902-32.469-32.524-49.503-73.967-89.117-113.111a11.98 11.98 0 0 1-3.558-8.521V59.901c0-6.541 5.243-11.878 11.783-11.998 15.831-.29 36.694-9.079 52.651-16.178C256.189 17.598 295.709.017 343.995 0h2.844c42.777 0 93.363.413 113.774 29.737 8.392 12.057 10.446 27.034 6.148 44.632 16.312 17.053 25.063 48.863 16.382 74.757 17.544 23.432 19.143 56.132 9.308 79.469l.11.11c11.893 11.949 19.523 31.259 19.439 49.197-.156 30.352-26.157 58.098-59.553 58.098H350.723C358.03 364.34 384 388.132 384 430.548 384 504 336 512 312 512z" ], + "thumbs-up": [ 512, 512, [], "f164", "M104 224H24c-13.255 0-24 10.745-24 24v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V248c0-13.255-10.745-24-24-24zM64 472c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zM384 81.452c0 42.416-25.97 66.208-33.277 94.548h101.723c33.397 0 59.397 27.746 59.553 58.098.084 17.938-7.546 37.249-19.439 49.197l-.11.11c9.836 23.337 8.237 56.037-9.308 79.469 8.681 25.895-.069 57.704-16.382 74.757 4.298 17.598 2.244 32.575-6.148 44.632C440.202 511.587 389.616 512 346.839 512l-2.845-.001c-48.287-.017-87.806-17.598-119.56-31.725-15.957-7.099-36.821-15.887-52.651-16.178-6.54-.12-11.783-5.457-11.783-11.998v-213.77c0-3.2 1.282-6.271 3.558-8.521 39.614-39.144 56.648-80.587 89.117-113.111 14.804-14.832 20.188-37.236 25.393-58.902C282.515 39.293 291.817 0 312 0c24 0 72 8 72 81.452z" ], + thumbtack: [ 384, 512, [], "f08d", "M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z" ], + "ticket-alt": [ 576, 512, [], "f3ff", "M128 160h320v192H128V160zm400 96c0 26.51 21.49 48 48 48v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c26.51 0 48-21.49 48-48s-21.49-48-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v96c-26.51 0-48 21.49-48 48zm-48-104c0-13.255-10.745-24-24-24H120c-13.255 0-24 10.745-24 24v208c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V152z" ], + times: [ 352, 512, [], "f00d", "M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" ], + "times-circle": [ 512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z" ], + tint: [ 352, 512, [], "f043", "M205.22 22.09c-7.94-28.78-49.44-30.12-58.44 0C100.01 179.85 0 222.72 0 333.91 0 432.35 78.72 512 176 512s176-79.65 176-178.09c0-111.75-99.79-153.34-146.78-311.82zM176 448c-61.75 0-112-50.25-112-112 0-8.84 7.16-16 16-16s16 7.16 16 16c0 44.11 35.89 80 80 80 8.84 0 16 7.16 16 16s-7.16 16-16 16z" ], + "tint-slash": [ 640, 512, [], "f5c7", "M633.82 458.1L494.97 350.78c.52-5.57 1.03-11.16 1.03-16.87 0-111.76-99.79-153.34-146.78-311.82-7.94-28.78-49.44-30.12-58.44 0-15.52 52.34-36.87 91.96-58.49 125.68L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM144 333.91C144 432.35 222.72 512 320 512c44.71 0 85.37-16.96 116.4-44.7L162.72 255.78c-11.41 23.5-18.72 48.35-18.72 78.13z" ], + tired: [ 496, 512, [], "f5c8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 288c51.9 0 115.3 43.8 123.2 106.7 1.7 13.6-8 24.6-17.7 20.4-25.9-11.1-64.4-17.4-105.5-17.4s-79.6 6.3-105.5 17.4c-9.8 4.2-19.4-7-17.7-20.4C132.7 331.8 196.1 288 248 288z" ], + "toggle-off": [ 576, 512, [], "f204", "M384 64H192C85.961 64 0 149.961 0 256s85.961 192 192 192h192c106.039 0 192-85.961 192-192S490.039 64 384 64zM64 256c0-70.741 57.249-128 128-128 70.741 0 128 57.249 128 128 0 70.741-57.249 128-128 128-70.741 0-128-57.249-128-128zm320 128h-48.905c65.217-72.858 65.236-183.12 0-256H384c70.741 0 128 57.249 128 128 0 70.74-57.249 128-128 128z" ], + "toggle-on": [ 576, 512, [], "f205", "M576 256c0 106.039-85.961 192-192 192H192C85.961 448 0 362.039 0 256S85.961 64 192 64h192c106.039 0 192 85.961 192 192zM384 128c-70.741 0-128 57.249-128 128 0 70.741 57.249 128 128 128 70.741 0 128-57.249 128-128 0-70.741-57.249-128-128-128" ], + toolbox: [ 512, 512, [], "f552", "M502.63 214.63l-45.25-45.25c-6-6-14.14-9.37-22.63-9.37H384V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v80H77.25c-8.49 0-16.62 3.37-22.63 9.37L9.37 214.63c-6 6-9.37 14.14-9.37 22.63V320h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-82.75c0-8.48-3.37-16.62-9.37-22.62zM320 160H192V96h128v64zm64 208c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H192v16c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H0v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96H384v16z" ], + tooth: [ 448, 512, [], "f5c9", "M443.98 96.25c-11.01-45.22-47.11-82.06-92.01-93.72-32.19-8.36-63 5.1-89.14 24.33-3.25 2.39-6.96 3.73-10.5 5.48l28.32 18.21c7.42 4.77 9.58 14.67 4.8 22.11-4.46 6.95-14.27 9.86-22.11 4.8L162.83 12.84c-20.7-10.85-43.38-16.4-66.81-10.31-44.9 11.67-81 48.5-92.01 93.72-10.13 41.62-.42 80.81 21.5 110.43 23.36 31.57 32.68 68.66 36.29 107.35 4.4 47.16 10.33 94.16 20.94 140.32l7.8 33.95c3.19 13.87 15.49 23.7 29.67 23.7 13.97 0 26.15-9.55 29.54-23.16l34.47-138.42c4.56-18.32 20.96-31.16 39.76-31.16s35.2 12.85 39.76 31.16l34.47 138.42c3.39 13.61 15.57 23.16 29.54 23.16 14.18 0 26.48-9.83 29.67-23.7l7.8-33.95c10.61-46.15 16.53-93.16 20.94-140.32 3.61-38.7 12.93-75.78 36.29-107.35 21.95-29.61 31.66-68.8 21.53-110.43z" ], + trademark: [ 640, 512, [], "f25c", "M97.119 163.133H12c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h248.559c6.627 0 12 5.373 12 12v43.133c0 6.627-5.373 12-12 12H175.44V404c0 6.627-5.373 12-12 12h-54.322c-6.627 0-12-5.373-12-12V163.133zM329.825 96h65.425a12 12 0 0 1 11.346 8.093l43.759 127.068c7.161 20.588 16.111 52.812 16.111 52.812h.896s8.95-32.224 16.111-52.812l43.758-127.068A12 12 0 0 1 538.577 96h65.41a12 12 0 0 1 11.961 11.03l24.012 296c.567 6.987-4.951 12.97-11.961 12.97h-54.101a12 12 0 0 1-11.972-11.182l-9.082-132.93c-1.79-24.168 0-53.706 0-53.706h-.896s-10.741 33.566-17.902 53.706l-30.7 84.731a12 12 0 0 1-11.282 7.912h-50.302a12 12 0 0 1-11.282-7.912l-30.7-84.731c-7.161-20.14-17.903-53.706-17.903-53.706h-.895s1.79 29.538 0 53.706l-9.082 132.93c-.428 6.295-5.66 11.182-11.97 11.182H305.4c-7.017 0-12.536-5.994-11.959-12.987l24.425-296A11.999 11.999 0 0 1 329.825 96z" ], + train: [ 448, 512, [], "f238", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zm-48 136V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24zm-176 64c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56z" ], + transgender: [ 384, 512, [], "f224", "M372 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C198.5 104.1 172.2 96 144 96 64.5 96 0 160.5 0 240c0 68.5 47.9 125.9 112 140.4V408H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM144 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" ], + "transgender-alt": [ 480, 512, [], "f225", "M468 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C294.5 104.1 268.2 96 240 96c-28.2 0-54.5 8.1-76.7 22.1l-16.5-16.5 19.8-19.8c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0l-19.8 19.8-19-19 16.9-16.9C107.1 12.9 101.7 0 91 0H12C5.4 0 0 5.4 0 12v79c0 10.7 12.9 16 20.5 8.5l16.9-16.9 19 19-19.8 19.8c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l19.8-19.8 16.5 16.5C104.1 185.5 96 211.8 96 240c0 68.5 47.9 125.9 112 140.4V408h-36c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM240 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" ], + trash: [ 448, 512, [], "f1f8", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm415.2 56.7L394.8 467c-1.6 25.3-22.6 45-47.9 45H101.1c-25.3 0-46.3-19.7-47.9-45L32.8 140.7c-.4-6.9 5.1-12.7 12-12.7h358.5c6.8 0 12.3 5.8 11.9 12.7z" ], + "trash-alt": [ 448, 512, [], "f2ed", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm416 56v324c0 26.5-21.5 48-48 48H80c-26.5 0-48-21.5-48-48V140c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12zm-272 68c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208z" ], + tree: [ 384, 512, [], "f1bb", "M377.33 375.429L293.906 288H328c21.017 0 31.872-25.207 17.448-40.479L262.79 160H296c20.878 0 31.851-24.969 17.587-40.331l-104-112.003c-9.485-10.214-25.676-10.229-35.174 0l-104 112.003C56.206 134.969 67.037 160 88 160h33.21l-82.659 87.521C24.121 262.801 34.993 288 56 288h34.094L6.665 375.429C-7.869 390.655 2.925 416 24.025 416H144c0 32.781-11.188 49.26-33.995 67.506C98.225 492.93 104.914 512 120 512h144c15.086 0 21.776-19.069 9.995-28.494-19.768-15.814-33.992-31.665-33.995-67.496V416h119.97c21.05 0 31.929-25.309 17.36-40.571z" ], + trophy: [ 576, 512, [], "f091", "M552 64H448V24c0-13.3-10.7-24-24-24H152c-13.3 0-24 10.7-24 24v40H24C10.7 64 0 74.7 0 88v56c0 35.7 22.5 72.4 61.9 100.7 31.5 22.7 69.8 37.1 110 41.7C203.3 338.5 240 360 240 360v72h-48c-35.3 0-64 20.7-64 56v12c0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12v-12c0-35.3-28.7-56-64-56h-48v-72s36.7-21.5 68.1-73.6c40.3-4.6 78.6-19 110-41.7 39.3-28.3 61.9-65 61.9-100.7V88c0-13.3-10.7-24-24-24zM99.3 192.8C74.9 175.2 64 155.6 64 144v-16h64.2c1 32.6 5.8 61.2 12.8 86.2-15.1-5.2-29.2-12.4-41.7-21.4zM512 144c0 16.1-17.7 36.1-35.3 48.8-12.5 9-26.7 16.2-41.8 21.4 7-25 11.8-53.6 12.8-86.2H512v16z" ], + truck: [ 640, 512, [], "f0d1", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z" ], + "truck-loading": [ 640, 512, [], "f4de", "M50.2 375.6c2.3 8.5 11.1 13.6 19.6 11.3l216.4-58c8.5-2.3 13.6-11.1 11.3-19.6l-49.7-185.5c-2.3-8.5-11.1-13.6-19.6-11.3L151 133.3l24.8 92.7-61.8 16.5-24.8-92.7-77.3 20.7C3.4 172.8-1.7 181.6.6 190.1l49.6 185.5zM384 0c-17.7 0-32 14.3-32 32v323.6L5.9 450c-4.3 1.2-6.8 5.6-5.6 9.8l12.6 46.3c1.2 4.3 5.6 6.8 9.8 5.6l393.7-107.4C418.8 464.1 467.6 512 528 512c61.9 0 112-50.1 112-112V0H384zm144 448c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z" ], + "truck-moving": [ 640, 512, [], "f4df", "M621.3 237.3l-58.5-58.5c-12-12-28.3-18.7-45.3-18.7H480V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v336c0 44.2 35.8 80 80 80 26.3 0 49.4-12.9 64-32.4 14.6 19.6 37.7 32.4 64 32.4 44.2 0 80-35.8 80-80 0-5.5-.6-10.8-1.6-16h163.2c-1.1 5.2-1.6 10.5-1.6 16 0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H624c8.8 0 16-7.2 16-16v-85.5c0-17-6.7-33.2-18.7-45.2zM80 432c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm128 0c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm272-224h37.5c4.3 0 8.3 1.7 11.3 4.7l43.3 43.3H480v-48zm48 224c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32z" ], + tshirt: [ 640, 512, [], "f553", "M631.2 96.5L436.5 0C416.4 27.8 371.9 47.2 320 47.2S223.6 27.8 203.5 0L8.8 96.5c-7.9 4-11.1 13.6-7.2 21.5l57.2 114.5c4 7.9 13.6 11.1 21.5 7.2l56.6-27.7c10.6-5.2 23 2.5 23 14.4V480c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V226.3c0-11.8 12.4-19.6 23-14.4l56.6 27.7c7.9 4 17.5.8 21.5-7.2L638.3 118c4-7.9.8-17.6-7.1-21.5z" ], + tty: [ 512, 512, [], "f1e4", "M5.37 103.822c138.532-138.532 362.936-138.326 501.262 0 6.078 6.078 7.074 15.496 2.583 22.681l-43.214 69.138a18.332 18.332 0 0 1-22.356 7.305l-86.422-34.569a18.335 18.335 0 0 1-11.434-18.846L351.741 90c-62.145-22.454-130.636-21.986-191.483 0l5.953 59.532a18.331 18.331 0 0 1-11.434 18.846l-86.423 34.568a18.334 18.334 0 0 1-22.356-7.305L2.787 126.502a18.333 18.333 0 0 1 2.583-22.68zM96 308v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H92c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zM96 500v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H140c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z" ], + tv: [ 640, 512, [], "f26c", "M592 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h245.1v32h-160c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32-14.3 32-32s-14.3-32-32-32h-160v-32H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h512v288z" ], + umbrella: [ 576, 512, [], "f0e9", "M557.011 267.631c-51.432-45.217-107.572-43.698-158.567 30.731-5.298 7.861-14.906 7.165-19.736 0-2.483-3.624-32.218-60.808-90.708-60.808-45.766 0-70.542 31.378-90.709 60.808-4.829 7.165-14.436 7.861-19.734 0-50.904-74.285-106.613-76.406-158.567-30.731-10.21 8.264-20.912-1.109-18.696-9.481C32.146 134.573 158.516 64.612 288.001 64.612c128.793 0 256.546 69.961 287.706 193.538 2.206 8.322-8.426 17.793-18.696 9.481zM256 261.001V416c0 17.645-14.355 32-32 32s-32-14.355-32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 52.935 43.065 96 96 96s96-43.065 96-96V261.288c-21.836-10.806-45.425-9.737-64-.287zm64-211.007V32c0-17.673-14.327-32-32-32s-32 14.327-32 32v17.987a372.105 372.105 0 0 1 64 .007z" ], + "umbrella-beach": [ 640, 512, [], "f5ca", "M115.38 136.9l102.11 37.18c35.19-81.54 86.21-144.29 139-173.7-95.88-4.89-188.78 36.96-248.53 111.8-6.69 8.4-2.66 21.05 7.42 24.72zm132.25 48.16l238.48 86.83c35.76-121.38 18.7-231.66-42.63-253.98-7.4-2.7-15.13-4-23.09-4-58.02.01-128.27 69.17-172.76 171.15zM521.48 60.5c6.22 16.3 10.83 34.6 13.2 55.19 5.74 49.89-1.42 108.23-18.95 166.98l102.62 37.36c10.09 3.67 21.31-3.43 21.57-14.17 2.32-95.69-41.91-187.44-118.44-245.36zM560 447.98H321.06L386 269.5l-60.14-21.9-72.9 200.37H16c-8.84 0-16 7.16-16 16.01v32.01C0 504.83 7.16 512 16 512h544c8.84 0 16-7.17 16-16.01v-32.01c0-8.84-7.16-16-16-16z" ], + underline: [ 448, 512, [], "f0cd", "M224.264 388.24c-91.669 0-156.603-51.165-156.603-151.392V64H39.37c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h137.39c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.813v172.848c0 53.699 28.314 79.444 76.317 79.444 46.966 0 75.796-25.434 75.796-79.965V64h-28.291c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h136.868c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.291v172.848c0 99.405-64.881 151.392-156.082 151.392zM16 448h416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16z" ], + undo: [ 512, 512, [], "f0e2", "M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z" ], + "undo-alt": [ 512, 512, [], "f2ea", "M255.545 8c-66.269.119-126.438 26.233-170.86 68.685L48.971 40.971C33.851 25.851 8 36.559 8 57.941V192c0 13.255 10.745 24 24 24h134.059c21.382 0 32.09-25.851 16.971-40.971l-41.75-41.75c30.864-28.899 70.801-44.907 113.23-45.273 92.398-.798 170.283 73.977 169.484 169.442C423.236 348.009 349.816 424 256 424c-41.127 0-79.997-14.678-110.63-41.556-4.743-4.161-11.906-3.908-16.368.553L89.34 422.659c-4.872 4.872-4.631 12.815.482 17.433C133.798 479.813 192.074 504 256 504c136.966 0 247.999-111.033 248-247.998C504.001 119.193 392.354 7.755 255.545 8z" ], + "universal-access": [ 512, 512, [], "f29a", "M256 48c114.953 0 208 93.029 208 208 0 114.953-93.029 208-208 208-114.953 0-208-93.029-208-208 0-114.953 93.029-208 208-208m0-40C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 56C149.961 64 64 149.961 64 256s85.961 192 192 192 192-85.961 192-192S362.039 64 256 64zm0 44c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36zm117.741 98.023c-28.712 6.779-55.511 12.748-82.14 15.807.851 101.023 12.306 123.052 25.037 155.621 3.617 9.26-.957 19.698-10.217 23.315-9.261 3.617-19.699-.957-23.316-10.217-8.705-22.308-17.086-40.636-22.261-78.549h-9.686c-5.167 37.851-13.534 56.208-22.262 78.549-3.615 9.255-14.05 13.836-23.315 10.217-9.26-3.617-13.834-14.056-10.217-23.315 12.713-32.541 24.185-54.541 25.037-155.621-26.629-3.058-53.428-9.027-82.141-15.807-8.6-2.031-13.926-10.648-11.895-19.249s10.647-13.926 19.249-11.895c96.686 22.829 124.283 22.783 220.775 0 8.599-2.03 17.218 3.294 19.249 11.895 2.029 8.601-3.297 17.219-11.897 19.249z" ], + university: [ 512, 512, [], "f19c", "M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z" ], + unlink: [ 512, 512, [], "f127", "M304.083 405.907c4.686 4.686 4.686 12.284 0 16.971l-44.674 44.674c-59.263 59.262-155.693 59.266-214.961 0-59.264-59.265-59.264-155.696 0-214.96l44.675-44.675c4.686-4.686 12.284-4.686 16.971 0l39.598 39.598c4.686 4.686 4.686 12.284 0 16.971l-44.675 44.674c-28.072 28.073-28.072 73.75 0 101.823 28.072 28.072 73.75 28.073 101.824 0l44.674-44.674c4.686-4.686 12.284-4.686 16.971 0l39.597 39.598zm-56.568-260.216c4.686 4.686 12.284 4.686 16.971 0l44.674-44.674c28.072-28.075 73.75-28.073 101.824 0 28.072 28.073 28.072 73.75 0 101.823l-44.675 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.598 39.598c4.686 4.686 12.284 4.686 16.971 0l44.675-44.675c59.265-59.265 59.265-155.695 0-214.96-59.266-59.264-155.695-59.264-214.961 0l-44.674 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.597 39.598zm234.828 359.28l22.627-22.627c9.373-9.373 9.373-24.569 0-33.941L63.598 7.029c-9.373-9.373-24.569-9.373-33.941 0L7.029 29.657c-9.373 9.373-9.373 24.569 0 33.941l441.373 441.373c9.373 9.372 24.569 9.372 33.941 0z" ], + unlock: [ 448, 512, [], "f09c", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z" ], + "unlock-alt": [ 448, 512, [], "f13e", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zM264 408c0 22.1-17.9 40-40 40s-40-17.9-40-40v-48c0-22.1 17.9-40 40-40s40 17.9 40 40v48z" ], + upload: [ 512, 512, [], "f093", "M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z" ], + user: [ 448, 512, [], "f007", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" ], + "user-alt": [ 512, 512, [], "f406", "M256 288c79.5 0 144-64.5 144-144S335.5 0 256 0 112 64.5 112 144s64.5 144 144 144zm128 32h-55.1c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16H128C57.3 320 0 377.3 0 448v16c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-16c0-70.7-57.3-128-128-128z" ], + "user-alt-slash": [ 640, 512, [], "f4fa", "M633.8 458.1L389.6 269.3C433.8 244.7 464 198.1 464 144 464 64.5 399.5 0 320 0c-67.1 0-123 46.1-139 108.2L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM198.4 320C124.2 320 64 380.2 64 454.4v9.6c0 26.5 21.5 48 48 48h382.2L245.8 320h-47.4z" ], + "user-astronaut": [ 448, 512, [], "f4fb", "M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z" ], + "user-check": [ 640, 512, [], "f4fc", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4zm323-128.4l-27.8-28.1c-4.6-4.7-12.1-4.7-16.8-.1l-104.8 104-45.5-45.8c-4.6-4.7-12.1-4.7-16.8-.1l-28.1 27.9c-4.7 4.6-4.7 12.1-.1 16.8l81.7 82.3c4.6 4.7 12.1 4.7 16.8.1l141.3-140.2c4.6-4.7 4.7-12.2.1-16.8z" ], + "user-circle": [ 496, 512, [], "f2bd", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 96c48.6 0 88 39.4 88 88s-39.4 88-88 88-88-39.4-88-88 39.4-88 88-88zm0 344c-58.7 0-111.3-26.6-146.5-68.2 18.8-35.4 55.6-59.8 98.5-59.8 2.4 0 4.8.4 7.1 1.1 13 4.2 26.6 6.9 40.9 6.9 14.3 0 28-2.7 40.9-6.9 2.3-.7 4.7-1.1 7.1-1.1 42.9 0 79.7 24.4 98.5 59.8C359.3 421.4 306.7 448 248 448z" ], + "user-clock": [ 640, 512, [], "f4fd", "M496 224c-79.6 0-144 64.4-144 144s64.4 144 144 144 144-64.4 144-144-64.4-144-144-144zm64 150.3c0 5.3-4.4 9.7-9.7 9.7h-60.6c-5.3 0-9.7-4.4-9.7-9.7v-76.6c0-5.3 4.4-9.7 9.7-9.7h12.6c5.3 0 9.7 4.4 9.7 9.7V352h38.3c5.3 0 9.7 4.4 9.7 9.7v12.6zM320 368c0-27.8 6.7-54.1 18.2-77.5-8-1.5-16.2-2.5-24.6-2.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h347.1c-45.3-31.9-75.1-84.5-75.1-144zm-96-112c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128z" ], + "user-cog": [ 640, 512, [], "f4fe", "M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z" ], + "user-edit": [ 640, 512, [], "f4ff", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h274.9c-2.4-6.8-3.4-14-2.6-21.3l6.8-60.9 1.2-11.1 7.9-7.9 77.3-77.3c-24.5-27.7-60-45.5-99.9-45.5zm45.3 145.3l-6.8 61c-1.1 10.2 7.5 18.8 17.6 17.6l60.9-6.8 137.9-137.9-71.7-71.7-137.9 137.8zM633 268.9L595.1 231c-9.3-9.3-24.5-9.3-33.8 0l-37.8 37.8-4.1 4.1 71.8 71.7 41.8-41.8c9.3-9.4 9.3-24.5 0-33.9z" ], + "user-friends": [ 640, 512, [], "f500", "M192 256c61.9 0 112-50.1 112-112S253.9 32 192 32 80 82.1 80 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C51.6 288 0 339.6 0 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zM480 256c53 0 96-43 96-96s-43-96-96-96-96 43-96 96 43 96 96 96zm48 32h-3.8c-13.9 4.8-28.6 8-44.2 8s-30.3-3.2-44.2-8H432c-20.4 0-39.2 5.9-55.7 15.4 24.4 26.3 39.7 61.2 39.7 99.8v38.4c0 2.2-.5 4.3-.6 6.4H592c26.5 0 48-21.5 48-48 0-61.9-50.1-112-112-112z" ], + "user-graduate": [ 448, 512, [], "f501", "M319.4 320.6L224 416l-95.4-95.4C57.1 323.7 0 382.2 0 454.4v9.6c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-9.6c0-72.2-57.1-130.7-128.6-133.8zM13.6 79.8l6.4 1.5v58.4c-7 4.2-12 11.5-12 20.3 0 8.4 4.6 15.4 11.1 19.7L3.5 242c-1.7 6.9 2.1 14 7.6 14h41.8c5.5 0 9.3-7.1 7.6-14l-15.6-62.3C51.4 175.4 56 168.4 56 160c0-8.8-5-16.1-12-20.3V87.1l66 15.9c-8.6 17.2-14 36.4-14 57 0 70.7 57.3 128 128 128s128-57.3 128-128c0-20.6-5.3-39.8-14-57l96.3-23.2c18.2-4.4 18.2-27.1 0-31.5l-190.4-46c-13-3.1-26.7-3.1-39.7 0L13.6 48.2c-18.1 4.4-18.1 27.2 0 31.6z" ], + "user-lock": [ 640, 512, [], "f502", "M320 320c0-11.1 3.1-21.4 8.1-30.5-4.8-.5-9.5-1.5-14.5-1.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h280.9c-5.5-9.5-8.9-20.3-8.9-32V320zm-96-64c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm384 32h-32v-48c0-44.2-35.8-80-80-80s-80 35.8-80 80v48h-32c-17.7 0-32 14.3-32 32v160c0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32V320c0-17.7-14.3-32-32-32zm-80 0h-64v-48c0-17.6 14.4-32 32-32s32 14.4 32 32v48z" ], + "user-md": [ 448, 512, [], "f0f0", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zM104 424c0 13.3 10.7 24 24 24s24-10.7 24-24-10.7-24-24-24-24 10.7-24 24zm216-135.4v49c36.5 7.4 64 39.8 64 78.4v41.7c0 7.6-5.4 14.2-12.9 15.7l-32.2 6.4c-4.3.9-8.5-1.9-9.4-6.3l-3.1-15.7c-.9-4.3 1.9-8.6 6.3-9.4l19.3-3.9V416c0-62.8-96-65.1-96 1.9v26.7l19.3 3.9c4.3.9 7.1 5.1 6.3 9.4l-3.1 15.7c-.9 4.3-5.1 7.1-9.4 6.3l-31.2-4.2c-7.9-1.1-13.8-7.8-13.8-15.9V416c0-38.6 27.5-70.9 64-78.4v-45.2c-2.2.7-4.4 1.1-6.6 1.9-18 6.3-37.3 9.8-57.4 9.8s-39.4-3.5-57.4-9.8c-7.4-2.6-14.9-4.2-22.6-5.2v81.6c23.1 6.9 40 28.1 40 53.4 0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.3 16.9-46.5 40-53.4v-80.4C48.5 301 0 355.8 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-72-56.8-130.3-128-133.8z" ], + "user-minus": [ 640, 512, [], "f503", "M624 208H432c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" ], + "user-ninja": [ 448, 512, [], "f504", "M325.4 289.2L224 390.6 122.6 289.2C54 295.3 0 352.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-70.2-54-127.1-122.6-133.2zM32 192c27.3 0 51.8-11.5 69.2-29.7 15.1 53.9 64 93.7 122.8 93.7 70.7 0 128-57.3 128-128S294.7 0 224 0c-50.4 0-93.6 29.4-114.5 71.8C92.1 47.8 64 32 32 32c0 33.4 17.1 62.8 43.1 80-26 17.2-43.1 46.6-43.1 80zm144-96h96c17.7 0 32 14.3 32 32H144c0-17.7 14.3-32 32-32z" ], + "user-plus": [ 640, 512, [], "f234", "M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" ], + "user-secret": [ 448, 512, [], "f21b", "M383.9 308.3l23.9-62.6c4-10.5-3.7-21.7-15-21.7h-58.5c11-18.9 17.8-40.6 17.8-64v-.3c39.2-7.8 64-19.1 64-31.7 0-13.3-27.3-25.1-70.1-33-9.2-32.8-27-65.8-40.6-82.8-9.5-11.9-25.9-15.6-39.5-8.8l-27.6 13.8c-9 4.5-19.6 4.5-28.6 0L182.1 3.4c-13.6-6.8-30-3.1-39.5 8.8-13.5 17-31.4 50-40.6 82.8-42.7 7.9-70 19.7-70 33 0 12.6 24.8 23.9 64 31.7v.3c0 23.4 6.8 45.1 17.8 64H56.3c-11.5 0-19.2 11.7-14.7 22.3l25.8 60.2C27.3 329.8 0 372.7 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-48.4-25.8-90.4-64.1-114.1zM176 480l-41.6-192 49.6 32 24 40-32 120zm96 0l-32-120 24-40 49.6-32L272 480zm41.7-298.5c-3.9 11.9-7 24.6-16.5 33.4-10.1 9.3-48 22.4-64-25-2.8-8.4-15.4-8.4-18.3 0-17 50.2-56 32.4-64 25-9.5-8.8-12.7-21.5-16.5-33.4-.8-2.5-6.3-5.7-6.3-5.8v-10.8c28.3 3.6 61 5.8 96 5.8s67.7-2.1 96-5.8v10.8c-.1.1-5.6 3.2-6.4 5.8z" ], + "user-shield": [ 640, 512, [], "f505", "M622.3 271.1l-115.2-45c-4.1-1.6-12.6-3.7-22.2 0l-115.2 45c-10.7 4.2-17.7 14-17.7 24.9 0 111.6 68.7 188.8 132.9 213.9 9.6 3.7 18 1.6 22.2 0C558.4 489.9 640 420.5 640 296c0-10.9-7-20.7-17.7-24.9zM496 462.4V273.3l95.5 37.3c-5.6 87.1-60.9 135.4-95.5 151.8zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm96 40c0-2.5.8-4.8 1.1-7.2-2.5-.1-4.9-.8-7.5-.8h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c6.8 0 13.3-1.5 19.2-4-54-42.9-99.2-116.7-99.2-212z" ], + "user-slash": [ 640, 512, [], "f506", "M633.8 458.1L362.3 248.3C412.1 230.7 448 183.8 448 128 448 57.3 390.7 0 320 0c-67.1 0-121.5 51.8-126.9 117.4L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM96 422.4V464c0 26.5 21.5 48 48 48h350.2L207.4 290.3C144.2 301.3 96 356 96 422.4z" ], + "user-tag": [ 640, 512, [], "f507", "M630.6 364.9l-90.3-90.2c-12-12-28.3-18.7-45.3-18.7h-79.3c-17.7 0-32 14.3-32 32v79.2c0 17 6.7 33.2 18.7 45.2l90.3 90.2c12.5 12.5 32.8 12.5 45.3 0l92.5-92.5c12.6-12.5 12.6-32.7.1-45.2zm-182.8-21c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24c0 13.2-10.7 24-24 24zm-223.8-88c70.7 0 128-57.3 128-128C352 57.3 294.7 0 224 0S96 57.3 96 128c0 70.6 57.3 127.9 128 127.9zm127.8 111.2V294c-12.2-3.6-24.9-6.2-38.2-6.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 287.9 0 348.1 0 422.3v41.6c0 26.5 21.5 48 48 48h352c15.5 0 29.1-7.5 37.9-18.9l-58-58c-18.1-18.1-28.1-42.2-28.1-67.9z" ], + "user-tie": [ 448, 512, [], "f508", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm95.8 32.6L272 480l-32-136 32-56h-96l32 56-32 136-47.8-191.4C56.9 292 0 350.3 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-72.1-56.9-130.4-128.2-133.8z" ], + "user-times": [ 640, 512, [], "f235", "M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" ], + users: [ 640, 512, [], "f0c0", "M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z" ], + "users-cog": [ 640, 512, [], "f509", "M610.5 341.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 368.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm224 32c1.9 0 3.7-.5 5.6-.6 8.3-21.7 20.5-42.1 36.3-59.2 7.4-8 17.9-12.6 28.9-12.6 6.9 0 13.7 1.8 19.6 5.3l7.9 4.6c.8-.5 1.6-.9 2.4-1.4 7-14.6 11.2-30.8 11.2-48 0-61.9-50.1-112-112-112S208 82.1 208 144c0 61.9 50.1 112 112 112zm105.2 194.5c-2.3-1.2-4.6-2.6-6.8-3.9-8.2 4.8-15.3 9.8-27.5 9.8-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-10.7-34.5 24.9-49.7 25.8-50.3-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-3.8-2.2-7-5-9.8-8.1-3.3.2-6.5.6-9.8.6-24.6 0-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h255.4c-3.7-6-6.2-12.8-6.2-20.3v-9.2zM173.1 274.6C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z" ], + "utensil-spoon": [ 512, 512, [], "f2e5", "M480.1 31.9c-55-55.1-164.9-34.5-227.8 28.5-49.3 49.3-55.1 110-28.8 160.4L9 413.2c-11.6 10.5-12.1 28.5-1 39.5L59.3 504c11 11 29.1 10.5 39.5-1.1l192.4-214.4c50.4 26.3 111.1 20.5 160.4-28.8 63-62.9 83.6-172.8 28.5-227.8z" ], + utensils: [ 416, 512, [], "f2e7", "M207.9 15.2c.8 4.7 16.1 94.5 16.1 128.8 0 52.3-27.8 89.6-68.9 104.6L168 486.7c.7 13.7-10.2 25.3-24 25.3H80c-13.7 0-24.7-11.5-24-25.3l12.9-238.1C27.7 233.6 0 196.2 0 144 0 109.6 15.3 19.9 16.1 15.2 19.3-5.1 61.4-5.4 64 16.3v141.2c1.3 3.4 15.1 3.2 16 0 1.4-25.3 7.9-139.2 8-141.8 3.3-20.8 44.7-20.8 47.9 0 .2 2.7 6.6 116.5 8 141.8.9 3.2 14.8 3.4 16 0V16.3c2.6-21.6 44.8-21.4 48-1.1zm119.2 285.7l-15 185.1c-1.2 14 9.9 26 23.9 26h56c13.3 0 24-10.7 24-24V24c0-13.2-10.7-24-24-24-82.5 0-221.4 178.5-64.9 300.9z" ], + "vector-square": [ 512, 512, [], "f5cb", "M512 128V32c0-17.67-14.33-32-32-32h-96c-17.67 0-32 14.33-32 32H160c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32v192c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32h192c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32V160c17.67 0 32-14.33 32-32zm-96-64h32v32h-32V64zM64 64h32v32H64V64zm32 384H64v-32h32v32zm352 0h-32v-32h32v32zm-32-96h-32c-17.67 0-32 14.33-32 32v32H160v-32c0-17.67-14.33-32-32-32H96V160h32c17.67 0 32-14.33 32-32V96h192v32c0 17.67 14.33 32 32 32h32v192z" ], + venus: [ 288, 512, [], "f221", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z" ], + "venus-double": [ 512, 512, [], "f226", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80zm336 140.4V368h36c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-36v36c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-36h-36c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h36v-51.6c-21.2-4.8-40.6-14.3-57.2-27.3 14-16.7 25-36 32.1-57.1 14.5 14.8 34.7 24 57.1 24 44.1 0 80-35.9 80-80s-35.9-80-80-80c-22.3 0-42.6 9.2-57.1 24-7.1-21.1-18-40.4-32.1-57.1C303.4 43.6 334.3 32 368 32c79.5 0 144 64.5 144 144 0 68.5-47.9 125.9-112 140.4z" ], + "venus-mars": [ 576, 512, [], "f228", "M564 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C422.5 72.1 396.2 64 368 64c-33.7 0-64.6 11.6-89.2 30.9 14 16.7 25 36 32.1 57.1 14.5-14.8 34.7-24 57.1-24 44.1 0 80 35.9 80 80s-35.9 80-80 80c-22.3 0-42.6-9.2-57.1-24-7.1 21.1-18 40.4-32.1 57.1 24.5 19.4 55.5 30.9 89.2 30.9 79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 64C64.5 64 0 128.5 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.6 112-71.9 112-140.4 0-79.5-64.5-144-144-144zm0 224c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" ], + vial: [ 480, 512, [], "f492", "M477.7 186.1L309.5 18.3c-3.1-3.1-8.2-3.1-11.3 0l-34 33.9c-3.1 3.1-3.1 8.2 0 11.3l11.2 11.1L33 316.5c-38.8 38.7-45.1 102-9.4 143.5 20.6 24 49.5 36 78.4 35.9 26.4 0 52.8-10 72.9-30.1l246.3-245.7 11.2 11.1c3.1 3.1 8.2 3.1 11.3 0l34-33.9c3.1-3 3.1-8.1 0-11.2zM318 256H161l148-147.7 78.5 78.3L318 256z" ], + vials: [ 640, 512, [], "f493", "M72 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H72c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64zm480 384H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM360 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64z" ], + video: [ 576, 512, [], "f03d", "M336.2 64H47.8C21.4 64 0 85.4 0 111.8v288.4C0 426.6 21.4 448 47.8 448h288.4c26.4 0 47.8-21.4 47.8-47.8V111.8c0-26.4-21.4-47.8-47.8-47.8zm189.4 37.7L416 177.3v157.4l109.6 75.5c21.2 14.6 50.4-.3 50.4-25.8V127.5c0-25.4-29.1-40.4-50.4-25.8z" ], + "video-slash": [ 640, 512, [], "f4e2", "M633.8 458.1l-55-42.5c15.4-1.4 29.2-13.7 29.2-31.1v-257c0-25.5-29.1-40.4-50.4-25.8L448 177.3v137.2l-32-24.7v-178c0-26.4-21.4-47.8-47.8-47.8H123.9L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4L42.7 82 416 370.6l178.5 138c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.5-6.9 4.2-17-2.8-22.4zM32 400.2c0 26.4 21.4 47.8 47.8 47.8h288.4c11.2 0 21.4-4 29.6-10.5L32 154.7v245.5z" ], + "volleyball-ball": [ 495, 512, [], "f45f", "M223.3 243.4c-.9-37-8.6-72.8-22.7-105.7-90.8 42.4-157.5 122.4-180.3 216.8 13.4 30.8 32.9 58.3 56.9 81.1 22.7-79.2 74.2-147.8 146.1-192.2zM186.4 109c-15-26.4-34.5-50.1-57.4-70.7C38 88.1-15.8 191.2 4 300.5c33.4-83.1 98.4-152 182.4-191.5zM374 274.1c8.6-99.8-27.3-197.5-97.5-264.4-14.7-1.7-51.6-5.5-98.9 8.5 57.3 59.3 91 138.2 93.5 222.7 32.5 17.7 67.3 29 102.9 33.2zm-124.7 9.5c-31.6 19.3-58.7 43.9-80.2 72.6 82 57.3 184.5 75.1 277.5 47.8 19.7-26.4 34.2-56.8 42.2-89.9-26.6 6.6-53.7 10.4-80.9 10.4-54.6-.1-108.9-14.1-158.6-40.9zM151 383.3c-15.2 26-25.7 54.4-32.1 84.2 37.6 23 81.7 36.5 129.1 36.5 61 0 116.7-22.1 159.9-58.6C295 461.5 204.6 420.6 151 383.3zM331.3 22.7c55.3 70.4 82.5 161.2 74.6 253.6 30.3.2 60.5-4.8 89.7-14.2 0-2 .3-4 .3-6 0-107.8-68.7-199.1-164.6-233.4z" ], + "volume-down": [ 384, 512, [], "f027", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zM384 256c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z" ], + "volume-off": [ 256, 512, [], "f026", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971z" ], + "volume-up": [ 576, 512, [], "f028", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zm182.056-77.876C422.982.92 403.283 5.668 394.061 20.745c-9.221 15.077-4.473 34.774 10.604 43.995C468.967 104.063 512 174.983 512 256c0 73.431-36.077 142.292-96.507 184.206-14.522 10.072-18.129 30.01-8.057 44.532 10.076 14.528 30.016 18.126 44.531 8.057C529.633 438.927 576 350.406 576 256c0-103.244-54.579-194.877-137.944-245.859zM480 256c0-68.547-36.15-129.777-91.957-163.901-15.076-9.22-34.774-4.471-43.994 10.607-9.22 15.078-4.471 34.774 10.607 43.994C393.067 170.188 416 211.048 416 256c0 41.964-20.62 81.319-55.158 105.276-14.521 10.073-18.128 30.01-8.056 44.532 6.216 8.96 16.185 13.765 26.322 13.765a31.862 31.862 0 0 0 18.21-5.709C449.091 377.953 480 318.938 480 256zm-96 0c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z" ], + walking: [ 320, 512, [], "f554", "M208 96c26.5 0 48-21.5 48-48S234.5 0 208 0s-48 21.5-48 48 21.5 48 48 48zm94.5 149.1l-23.3-11.8-9.7-29.4c-14.7-44.6-55.7-75.8-102.2-75.9-36-.1-55.9 10.1-93.3 25.2-21.6 8.7-39.3 25.2-49.7 46.2L17.6 213c-7.8 15.8-1.5 35 14.2 42.9 15.6 7.9 34.6 1.5 42.5-14.3L81 228c3.5-7 9.3-12.5 16.5-15.4l26.8-10.8-15.2 60.7c-5.2 20.8.4 42.9 14.9 58.8l59.9 65.4c7.2 7.9 12.3 17.4 14.9 27.7l18.3 73.3c4.3 17.1 21.7 27.6 38.8 23.3 17.1-4.3 27.6-21.7 23.3-38.8l-22.2-89c-2.6-10.3-7.7-19.9-14.9-27.7l-45.5-49.7 17.2-68.7 5.5 16.5c5.3 16.1 16.7 29.4 31.7 37l23.3 11.8c15.6 7.9 34.6 1.5 42.5-14.3 7.7-15.7 1.4-35.1-14.3-43zM73.6 385.8c-3.2 8.1-8 15.4-14.2 21.5l-50 50.1c-12.5 12.5-12.5 32.8 0 45.3s32.7 12.5 45.2 0l59.4-59.4c6.1-6.1 10.9-13.4 14.2-21.5l13.5-33.8c-55.3-60.3-38.7-41.8-47.4-53.7l-20.7 51.5z" ], + wallet: [ 512, 512, [], "f555", "M461.2 128H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h384c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h397.2c28.02 0 50.8-21.53 50.8-48V176c0-26.47-22.78-48-50.8-48zM416 336c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + warehouse: [ 640, 512, [], "f494", "M504 352H136.4c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0 96H136.1c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0-192H136.6c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm106.5-139L338.4 3.7a48.15 48.15 0 0 0-36.9 0L29.5 117C11.7 124.5 0 141.9 0 161.3V504c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V256c0-17.6 14.6-32 32.6-32h382.8c18 0 32.6 14.4 32.6 32v248c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V161.3c0-19.4-11.7-36.8-29.5-44.3z" ], + weight: [ 512, 512, [], "f496", "M448 64h-25.98C438.44 92.28 448 125.01 448 160c0 105.87-86.13 192-192 192S64 265.87 64 160c0-34.99 9.56-67.72 25.98-96H64C28.71 64 0 92.71 0 128v320c0 35.29 28.71 64 64 64h384c35.29 0 64-28.71 64-64V128c0-35.29-28.71-64-64-64zM256 320c88.37 0 160-71.63 160-160S344.37 0 256 0 96 71.63 96 160s71.63 160 160 160zm-.3-151.94l33.58-78.36c3.5-8.17 12.94-11.92 21.03-8.41 8.12 3.48 11.88 12.89 8.41 21l-33.67 78.55C291.73 188 296 197.45 296 208c0 22.09-17.91 40-40 40s-40-17.91-40-40c0-21.98 17.76-39.77 39.7-39.94z" ], + "weight-hanging": [ 512, 512, [], "f5cd", "M510.28 445.86l-73.03-292.13c-3.8-15.19-16.44-25.72-30.87-25.72h-60.25c3.57-10.05 5.88-20.72 5.88-32 0-53.02-42.98-96-96-96s-96 42.98-96 96c0 11.28 2.3 21.95 5.88 32h-60.25c-14.43 0-27.08 10.54-30.87 25.72L1.72 445.86C-6.61 479.17 16.38 512 48.03 512h415.95c31.64 0 54.63-32.83 46.3-66.14zM256 128c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z" ], + wheelchair: [ 512, 512, [], "f193", "M496.101 385.669l14.227 28.663c3.929 7.915.697 17.516-7.218 21.445l-65.465 32.886c-16.049 7.967-35.556 1.194-43.189-15.055L331.679 320H192c-15.925 0-29.426-11.71-31.679-27.475C126.433 55.308 128.38 70.044 128 64c0-36.358 30.318-65.635 67.052-63.929 33.271 1.545 60.048 28.905 60.925 62.201.868 32.933-23.152 60.423-54.608 65.039l4.67 32.69H336c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H215.182l4.572 32H352a32 32 0 0 1 28.962 18.392L438.477 396.8l36.178-18.349c7.915-3.929 17.517-.697 21.446 7.218zM311.358 352h-24.506c-7.788 54.204-54.528 96-110.852 96-61.757 0-112-50.243-112-112 0-41.505 22.694-77.809 56.324-97.156-3.712-25.965-6.844-47.86-9.488-66.333C45.956 198.464 0 261.963 0 336c0 97.047 78.953 176 176 176 71.87 0 133.806-43.308 161.11-105.192L311.358 352z" ], + wifi: [ 640, 512, [], "f1eb", "M384 416c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm136.659-124.443c6.465-6.465 6.245-17.065-.564-23.167-113.793-101.985-286.526-101.869-400.19 0-6.809 6.102-7.029 16.702-.564 23.167l34.006 34.006c5.927 5.927 15.464 6.32 21.769.796 82.88-72.609 207.074-72.447 289.768 0 6.305 5.524 15.842 5.132 21.769-.796l34.006-34.006zm112.11-113.718c6.385-6.385 6.254-16.816-.35-22.973-175.768-163.86-449.134-163.8-624.837 0-6.604 6.157-6.735 16.589-.35 22.973l33.966 33.966c6.095 6.095 15.891 6.231 22.224.383 144.763-133.668 368.356-133.702 513.156 0 6.333 5.848 16.129 5.712 22.224-.383l33.967-33.966z" ], + "window-close": [ 512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-83.6 290.5c4.8 4.8 4.8 12.6 0 17.4l-40.5 40.5c-4.8 4.8-12.6 4.8-17.4 0L256 313.3l-66.5 67.1c-4.8 4.8-12.6 4.8-17.4 0l-40.5-40.5c-4.8-4.8-4.8-12.6 0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6 0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1 66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8 4.8 12.6 0 17.4L313.3 256l67.1 66.5z" ], + "window-maximize": [ 512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16 160H64v-84c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12v84z" ], + "window-minimize": [ 512, 512, [], "f2d1", "M464 352H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48z" ], + "window-restore": [ 512, 512, [], "f2d2", "M512 48v288c0 26.5-21.5 48-48 48h-48V176c0-44.1-35.9-80-80-80H128V48c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zM384 176v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zm-68 28c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v52h252v-52z" ], + "wine-glass": [ 288, 512, [], "f4e3", "M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40z" ], + "wine-glass-alt": [ 288, 512, [], "f5ce", "M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM61.75 48h164.5l7.17 80H54.58l7.17-80z" ], + "won-sign": [ 576, 512, [], "f159", "M564 192c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-48.028l18.572-80.61c1.732-7.518-3.978-14.694-11.693-14.694h-46.107a11.998 11.998 0 0 0-11.736 9.5L450.73 128H340.839l-19.725-85.987a12 12 0 0 0-11.696-9.317H265.43a12 12 0 0 0-11.687 9.277L233.696 128H124.975L107.5 42.299a12 12 0 0 0-11.758-9.602H53.628c-7.686 0-13.39 7.124-11.709 14.624L60 128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h62.342l7.171 32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h83.856l40.927 182.624A12 12 0 0 0 148.492 480h56.767c5.583 0 10.428-3.85 11.689-9.288L259.335 288h55.086l42.386 182.712A12 12 0 0 0 368.496 480h56.826a12 12 0 0 0 11.694-9.306L479.108 288H564c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-70.146l7.373-32H564zm-425.976 0h80.757l-7.457 32h-66.776l-6.524-32zm45.796 150.029c-6.194 25.831-6.758 47.25-7.321 47.25h-1.126s-1.689-22.05-6.758-47.25L157.599 288h38.812l-12.591 54.029zM274.182 224l1.996-8.602c1.856-7.962 3.457-15.968 4.803-23.398h11.794c1.347 7.43 2.947 15.436 4.803 23.398l1.996 8.602h-25.392zm130.959 118.029c-5.068 25.2-6.758 47.25-6.758 47.25h-1.126c-.563 0-1.126-21.42-7.321-47.25L377.542 288h39.107l-11.508 54.029zM430.281 224h-67.42l-7.34-32h81.577l-6.817 32z" ], + wrench: [ 512, 512, [], "f0ad", "M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z" ], + "x-ray": [ 640, 512, [], "f497", "M240 384c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm160 32c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zM624 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zm0 448h-48V96H64v352H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM480 248c0 4.4-3.6 8-8 8H336v32h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48v-16h-64v16c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48h64v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-32H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h136v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-24c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v24h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h136c4.4 0 8 3.6 8 8v16z" ], + "yen-sign": [ 384, 512, [], "f157", "M351.208 32h-65.277a12 12 0 0 0-10.778 6.724l-55.39 113.163c-14.513 34.704-27.133 71.932-27.133 71.932h-1.262s-12.62-37.228-27.133-71.932l-55.39-113.163A11.997 11.997 0 0 0 98.068 32H32.792c-9.057 0-14.85 9.65-10.59 17.643L102.322 200H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h88.162L152 293.228V320H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h108v92c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-92h108c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12H232v-26.772L251.838 256H340c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12h-58.322l80.12-150.357C366.058 41.65 360.266 32 351.208 32z" ] + }; + !function(c) { + try { + c(); + } catch (c) { + if (!s) throw c; + } + }(function() { + !function c(h, l) { + var v = Object.keys(l).reduce(function(c, h) { + var v = l[h]; + return v.icon ? c[v.iconName] = v.icon : c[h] = v, c; + }, {}); + "function" == typeof V.hooks.addPack ? V.hooks.addPack(h, v) : V.styles[h] = a({}, V.styles[h] || {}, v), + "fas" === h && c("fa", l); + }("fas", f); + }); +}(); \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-v4-shims.js b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-v4-shims.js new file mode 100644 index 0000000000..5b705d871a --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-v4-shims.js @@ -0,0 +1,91 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : + typeof define === 'function' && define.amd ? define(factory) : + (global['fontawesome-free-shims'] = factory()); +}(this, (function () { 'use strict'; + +var _WINDOW = {}; +try { + if (typeof window !== 'undefined') _WINDOW = window; + +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; + + + + + +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; + + + + + + + + + +var PRODUCTION = function () { + try { + return process.env.NODE_ENV === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + + + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var shims = [["glass", null, "glass-martini"], ["meetup", "fab", null], ["star-o", "far", "star"], ["remove", null, "times"], ["close", null, "times"], ["gear", null, "cog"], ["trash-o", "far", "trash-alt"], ["file-o", "far", "file"], ["clock-o", "far", "clock"], ["arrow-circle-o-down", "far", "arrow-alt-circle-down"], ["arrow-circle-o-up", "far", "arrow-alt-circle-up"], ["play-circle-o", "far", "play-circle"], ["repeat", null, "redo"], ["rotate-right", null, "redo"], ["refresh", null, "sync"], ["list-alt", "far", null], ["dedent", null, "outdent"], ["video-camera", null, "video"], ["picture-o", "far", "image"], ["photo", "far", "image"], ["image", "far", "image"], ["pencil", null, "pencil-alt"], ["map-marker", null, "map-marker-alt"], ["pencil-square-o", "far", "edit"], ["share-square-o", "far", "share-square"], ["check-square-o", "far", "check-square"], ["arrows", null, "arrows-alt"], ["times-circle-o", "far", "times-circle"], ["check-circle-o", "far", "check-circle"], ["mail-forward", null, "share"], ["eye", "far", null], ["eye-slash", "far", null], ["warning", null, "exclamation-triangle"], ["calendar", null, "calendar-alt"], ["arrows-v", null, "arrows-alt-v"], ["arrows-h", null, "arrows-alt-h"], ["bar-chart", "far", "chart-bar"], ["bar-chart-o", "far", "chart-bar"], ["twitter-square", "fab", null], ["facebook-square", "fab", null], ["gears", null, "cogs"], ["thumbs-o-up", "far", "thumbs-up"], ["thumbs-o-down", "far", "thumbs-down"], ["heart-o", "far", "heart"], ["sign-out", null, "sign-out-alt"], ["linkedin-square", "fab", "linkedin"], ["thumb-tack", null, "thumbtack"], ["external-link", null, "external-link-alt"], ["sign-in", null, "sign-in-alt"], ["github-square", "fab", null], ["lemon-o", "far", "lemon"], ["square-o", "far", "square"], ["bookmark-o", "far", "bookmark"], ["twitter", "fab", null], ["facebook", "fab", "facebook-f"], ["facebook-f", "fab", "facebook-f"], ["github", "fab", null], ["credit-card", "far", null], ["feed", null, "rss"], ["hdd-o", "far", "hdd"], ["hand-o-right", "far", "hand-point-right"], ["hand-o-left", "far", "hand-point-left"], ["hand-o-up", "far", "hand-point-up"], ["hand-o-down", "far", "hand-point-down"], ["arrows-alt", null, "expand-arrows-alt"], ["group", null, "users"], ["chain", null, "link"], ["scissors", null, "cut"], ["files-o", "far", "copy"], ["floppy-o", "far", "save"], ["navicon", null, "bars"], ["reorder", null, "bars"], ["pinterest", "fab", null], ["pinterest-square", "fab", null], ["google-plus-square", "fab", null], ["google-plus", "fab", "google-plus-g"], ["money", "far", "money-bill-alt"], ["unsorted", null, "sort"], ["sort-desc", null, "sort-down"], ["sort-asc", null, "sort-up"], ["linkedin", "fab", "linkedin-in"], ["rotate-left", null, "undo"], ["legal", null, "gavel"], ["tachometer", null, "tachometer-alt"], ["dashboard", null, "tachometer-alt"], ["comment-o", "far", "comment"], ["comments-o", "far", "comments"], ["flash", null, "bolt"], ["clipboard", "far", null], ["paste", "far", "clipboard"], ["lightbulb-o", "far", "lightbulb"], ["exchange", null, "exchange-alt"], ["cloud-download", null, "cloud-download-alt"], ["cloud-upload", null, "cloud-upload-alt"], ["bell-o", "far", "bell"], ["cutlery", null, "utensils"], ["file-text-o", "far", "file-alt"], ["building-o", "far", "building"], ["hospital-o", "far", "hospital"], ["tablet", null, "tablet-alt"], ["mobile", null, "mobile-alt"], ["mobile-phone", null, "mobile-alt"], ["circle-o", "far", "circle"], ["mail-reply", null, "reply"], ["github-alt", "fab", null], ["folder-o", "far", "folder"], ["folder-open-o", "far", "folder-open"], ["smile-o", "far", "smile"], ["frown-o", "far", "frown"], ["meh-o", "far", "meh"], ["keyboard-o", "far", "keyboard"], ["flag-o", "far", "flag"], ["mail-reply-all", null, "reply-all"], ["star-half-o", "far", "star-half"], ["star-half-empty", "far", "star-half"], ["star-half-full", "far", "star-half"], ["code-fork", null, "code-branch"], ["chain-broken", null, "unlink"], ["shield", null, "shield-alt"], ["calendar-o", "far", "calendar"], ["maxcdn", "fab", null], ["html5", "fab", null], ["css3", "fab", null], ["ticket", null, "ticket-alt"], ["minus-square-o", "far", "minus-square"], ["level-up", null, "level-up-alt"], ["level-down", null, "level-down-alt"], ["pencil-square", null, "pen-square"], ["external-link-square", null, "external-link-square-alt"], ["compass", "far", null], ["caret-square-o-down", "far", "caret-square-down"], ["toggle-down", "far", "caret-square-down"], ["caret-square-o-up", "far", "caret-square-up"], ["toggle-up", "far", "caret-square-up"], ["caret-square-o-right", "far", "caret-square-right"], ["toggle-right", "far", "caret-square-right"], ["eur", null, "euro-sign"], ["euro", null, "euro-sign"], ["gbp", null, "pound-sign"], ["usd", null, "dollar-sign"], ["dollar", null, "dollar-sign"], ["inr", null, "rupee-sign"], ["rupee", null, "rupee-sign"], ["jpy", null, "yen-sign"], ["cny", null, "yen-sign"], ["rmb", null, "yen-sign"], ["yen", null, "yen-sign"], ["rub", null, "ruble-sign"], ["ruble", null, "ruble-sign"], ["rouble", null, "ruble-sign"], ["krw", null, "won-sign"], ["won", null, "won-sign"], ["btc", "fab", null], ["bitcoin", "fab", "btc"], ["file-text", null, "file-alt"], ["sort-alpha-asc", null, "sort-alpha-down"], ["sort-alpha-desc", null, "sort-alpha-up"], ["sort-amount-asc", null, "sort-amount-down"], ["sort-amount-desc", null, "sort-amount-up"], ["sort-numeric-asc", null, "sort-numeric-down"], ["sort-numeric-desc", null, "sort-numeric-up"], ["youtube-square", "fab", null], ["youtube", "fab", null], ["xing", "fab", null], ["xing-square", "fab", null], ["youtube-play", "fab", "youtube"], ["dropbox", "fab", null], ["stack-overflow", "fab", null], ["instagram", "fab", null], ["flickr", "fab", null], ["adn", "fab", null], ["bitbucket", "fab", null], ["bitbucket-square", "fab", "bitbucket"], ["tumblr", "fab", null], ["tumblr-square", "fab", null], ["long-arrow-down", null, "long-arrow-alt-down"], ["long-arrow-up", null, "long-arrow-alt-up"], ["long-arrow-left", null, "long-arrow-alt-left"], ["long-arrow-right", null, "long-arrow-alt-right"], ["apple", "fab", null], ["windows", "fab", null], ["android", "fab", null], ["linux", "fab", null], ["dribbble", "fab", null], ["skype", "fab", null], ["foursquare", "fab", null], ["trello", "fab", null], ["gratipay", "fab", null], ["gittip", "fab", "gratipay"], ["sun-o", "far", "sun"], ["moon-o", "far", "moon"], ["vk", "fab", null], ["weibo", "fab", null], ["renren", "fab", null], ["pagelines", "fab", null], ["stack-exchange", "fab", null], ["arrow-circle-o-right", "far", "arrow-alt-circle-right"], ["arrow-circle-o-left", "far", "arrow-alt-circle-left"], ["caret-square-o-left", "far", "caret-square-left"], ["toggle-left", "far", "caret-square-left"], ["dot-circle-o", "far", "dot-circle"], ["vimeo-square", "fab", null], ["try", null, "lira-sign"], ["turkish-lira", null, "lira-sign"], ["plus-square-o", "far", "plus-square"], ["slack", "fab", null], ["wordpress", "fab", null], ["openid", "fab", null], ["institution", null, "university"], ["bank", null, "university"], ["mortar-board", null, "graduation-cap"], ["yahoo", "fab", null], ["google", "fab", null], ["reddit", "fab", null], ["reddit-square", "fab", null], ["stumbleupon-circle", "fab", null], ["stumbleupon", "fab", null], ["delicious", "fab", null], ["digg", "fab", null], ["pied-piper-pp", "fab", null], ["pied-piper-alt", "fab", null], ["drupal", "fab", null], ["joomla", "fab", null], ["spoon", null, "utensil-spoon"], ["behance", "fab", null], ["behance-square", "fab", null], ["steam", "fab", null], ["steam-square", "fab", null], ["automobile", null, "car"], ["cab", null, "taxi"], ["envelope-o", "far", "envelope"], ["deviantart", "fab", null], ["soundcloud", "fab", null], ["file-pdf-o", "far", "file-pdf"], ["file-word-o", "far", "file-word"], ["file-excel-o", "far", "file-excel"], ["file-powerpoint-o", "far", "file-powerpoint"], ["file-image-o", "far", "file-image"], ["file-photo-o", "far", "file-image"], ["file-picture-o", "far", "file-image"], ["file-archive-o", "far", "file-archive"], ["file-zip-o", "far", "file-archive"], ["file-audio-o", "far", "file-audio"], ["file-sound-o", "far", "file-audio"], ["file-video-o", "far", "file-video"], ["file-movie-o", "far", "file-video"], ["file-code-o", "far", "file-code"], ["vine", "fab", null], ["codepen", "fab", null], ["jsfiddle", "fab", null], ["life-ring", "far", null], ["life-bouy", "far", "life-ring"], ["life-buoy", "far", "life-ring"], ["life-saver", "far", "life-ring"], ["support", "far", "life-ring"], ["circle-o-notch", null, "circle-notch"], ["rebel", "fab", null], ["ra", "fab", "rebel"], ["resistance", "fab", "rebel"], ["empire", "fab", null], ["ge", "fab", "empire"], ["git-square", "fab", null], ["git", "fab", null], ["hacker-news", "fab", null], ["y-combinator-square", "fab", "hacker-news"], ["yc-square", "fab", "hacker-news"], ["tencent-weibo", "fab", null], ["qq", "fab", null], ["weixin", "fab", null], ["wechat", "fab", "weixin"], ["send", null, "paper-plane"], ["paper-plane-o", "far", "paper-plane"], ["send-o", "far", "paper-plane"], ["circle-thin", "far", "circle"], ["header", null, "heading"], ["sliders", null, "sliders-h"], ["futbol-o", "far", "futbol"], ["soccer-ball-o", "far", "futbol"], ["slideshare", "fab", null], ["twitch", "fab", null], ["yelp", "fab", null], ["newspaper-o", "far", "newspaper"], ["paypal", "fab", null], ["google-wallet", "fab", null], ["cc-visa", "fab", null], ["cc-mastercard", "fab", null], ["cc-discover", "fab", null], ["cc-amex", "fab", null], ["cc-paypal", "fab", null], ["cc-stripe", "fab", null], ["bell-slash-o", "far", "bell-slash"], ["trash", null, "trash-alt"], ["copyright", "far", null], ["eyedropper", null, "eye-dropper"], ["area-chart", null, "chart-area"], ["pie-chart", null, "chart-pie"], ["line-chart", null, "chart-line"], ["lastfm", "fab", null], ["lastfm-square", "fab", null], ["ioxhost", "fab", null], ["angellist", "fab", null], ["cc", "far", "closed-captioning"], ["ils", null, "shekel-sign"], ["shekel", null, "shekel-sign"], ["sheqel", null, "shekel-sign"], ["meanpath", "fab", "font-awesome"], ["buysellads", "fab", null], ["connectdevelop", "fab", null], ["dashcube", "fab", null], ["forumbee", "fab", null], ["leanpub", "fab", null], ["sellsy", "fab", null], ["shirtsinbulk", "fab", null], ["simplybuilt", "fab", null], ["skyatlas", "fab", null], ["diamond", "far", "gem"], ["intersex", null, "transgender"], ["facebook-official", "fab", "facebook"], ["pinterest-p", "fab", null], ["whatsapp", "fab", null], ["hotel", null, "bed"], ["viacoin", "fab", null], ["medium", "fab", null], ["y-combinator", "fab", null], ["yc", "fab", "y-combinator"], ["optin-monster", "fab", null], ["opencart", "fab", null], ["expeditedssl", "fab", null], ["battery-4", null, "battery-full"], ["battery", null, "battery-full"], ["battery-3", null, "battery-three-quarters"], ["battery-2", null, "battery-half"], ["battery-1", null, "battery-quarter"], ["battery-0", null, "battery-empty"], ["object-group", "far", null], ["object-ungroup", "far", null], ["sticky-note-o", "far", "sticky-note"], ["cc-jcb", "fab", null], ["cc-diners-club", "fab", null], ["clone", "far", null], ["hourglass-o", "far", "hourglass"], ["hourglass-1", null, "hourglass-start"], ["hourglass-2", null, "hourglass-half"], ["hourglass-3", null, "hourglass-end"], ["hand-rock-o", "far", "hand-rock"], ["hand-grab-o", "far", "hand-rock"], ["hand-paper-o", "far", "hand-paper"], ["hand-stop-o", "far", "hand-paper"], ["hand-scissors-o", "far", "hand-scissors"], ["hand-lizard-o", "far", "hand-lizard"], ["hand-spock-o", "far", "hand-spock"], ["hand-pointer-o", "far", "hand-pointer"], ["hand-peace-o", "far", "hand-peace"], ["registered", "far", null], ["creative-commons", "fab", null], ["gg", "fab", null], ["gg-circle", "fab", null], ["tripadvisor", "fab", null], ["odnoklassniki", "fab", null], ["odnoklassniki-square", "fab", null], ["get-pocket", "fab", null], ["wikipedia-w", "fab", null], ["safari", "fab", null], ["chrome", "fab", null], ["firefox", "fab", null], ["opera", "fab", null], ["internet-explorer", "fab", null], ["television", null, "tv"], ["contao", "fab", null], ["500px", "fab", null], ["amazon", "fab", null], ["calendar-plus-o", "far", "calendar-plus"], ["calendar-minus-o", "far", "calendar-minus"], ["calendar-times-o", "far", "calendar-times"], ["calendar-check-o", "far", "calendar-check"], ["map-o", "far", "map"], ["commenting", "far", "comment-dots"], ["commenting-o", "far", "comment-dots"], ["houzz", "fab", null], ["vimeo", "fab", "vimeo-v"], ["black-tie", "fab", null], ["fonticons", "fab", null], ["reddit-alien", "fab", null], ["edge", "fab", null], ["credit-card-alt", null, "credit-card"], ["codiepie", "fab", null], ["modx", "fab", null], ["fort-awesome", "fab", null], ["usb", "fab", null], ["product-hunt", "fab", null], ["mixcloud", "fab", null], ["scribd", "fab", null], ["pause-circle-o", "far", "pause-circle"], ["stop-circle-o", "far", "stop-circle"], ["bluetooth", "fab", null], ["bluetooth-b", "fab", null], ["gitlab", "fab", null], ["wpbeginner", "fab", null], ["wpforms", "fab", null], ["envira", "fab", null], ["wheelchair-alt", "fab", "accessible-icon"], ["question-circle-o", "far", "question-circle"], ["volume-control-phone", null, "phone-volume"], ["asl-interpreting", null, "american-sign-language-interpreting"], ["deafness", null, "deaf"], ["hard-of-hearing", null, "deaf"], ["glide", "fab", null], ["glide-g", "fab", null], ["signing", null, "sign-language"], ["viadeo", "fab", null], ["viadeo-square", "fab", null], ["snapchat", "fab", null], ["snapchat-ghost", "fab", null], ["snapchat-square", "fab", null], ["pied-piper", "fab", null], ["first-order", "fab", null], ["yoast", "fab", null], ["themeisle", "fab", null], ["google-plus-official", "fab", "google-plus"], ["google-plus-circle", "fab", "google-plus"], ["font-awesome", "fab", null], ["fa", "fab", "font-awesome"], ["handshake-o", "far", "handshake"], ["envelope-open-o", "far", "envelope-open"], ["linode", "fab", null], ["address-book-o", "far", "address-book"], ["vcard", null, "address-card"], ["address-card-o", "far", "address-card"], ["vcard-o", "far", "address-card"], ["user-circle-o", "far", "user-circle"], ["user-o", "far", "user"], ["id-badge", "far", null], ["drivers-license", null, "id-card"], ["id-card-o", "far", "id-card"], ["drivers-license-o", "far", "id-card"], ["quora", "fab", null], ["free-code-camp", "fab", null], ["telegram", "fab", null], ["thermometer-4", null, "thermometer-full"], ["thermometer", null, "thermometer-full"], ["thermometer-3", null, "thermometer-three-quarters"], ["thermometer-2", null, "thermometer-half"], ["thermometer-1", null, "thermometer-quarter"], ["thermometer-0", null, "thermometer-empty"], ["bathtub", null, "bath"], ["s15", null, "bath"], ["window-maximize", "far", null], ["window-restore", "far", null], ["times-rectangle", null, "window-close"], ["window-close-o", "far", "window-close"], ["times-rectangle-o", "far", "window-close"], ["bandcamp", "fab", null], ["grav", "fab", null], ["etsy", "fab", null], ["imdb", "fab", null], ["ravelry", "fab", null], ["eercast", "fab", "sellcast"], ["snowflake-o", "far", "snowflake"], ["superpowers", "fab", null], ["wpexplorer", "fab", null], ["spotify", "fab", null]]; + +bunker(function () { + if (typeof namespace.hooks.addShims === 'function') { + namespace.hooks.addShims(shims); + } else { + var _namespace$shims; + + (_namespace$shims = namespace.shims).push.apply(_namespace$shims, shims); + } +}); + +return shims; + +}))); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-v4-shims.min.js b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-v4-shims.min.js new file mode 100644 index 0000000000..800be4a0c8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fa-v4-shims.min.js @@ -0,0 +1,40 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +var l, a; + +l = this, a = function() { + "use strict"; + var l = {}; + try { + "undefined" != typeof window && (l = window); + } catch (l) {} + var a = (l.navigator || {}).userAgent, e = void 0 === a ? "" : a, r = l, n = (~e.indexOf("MSIE") || e.indexOf("Trident/"), + "___FONT_AWESOME___"), o = function() { + try { + return "production" === process.env.NODE_ENV; + } catch (l) { + return !1; + } + }(), u = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ], t = u.concat([ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ]); + [ "xs", "sm", "lg", "fw", "ul", "li", "border", "pull-left", "pull-right", "spin", "pulse", "rotate-90", "rotate-180", "rotate-270", "flip-horizontal", "flip-vertical", "stack", "stack-1x", "stack-2x", "inverse", "layers", "layers-text", "layers-counter" ].concat(u.map(function(l) { + return l + "x"; + })).concat(t.map(function(l) { + return "w-" + l; + })); + var f = r || {}; + f[n] || (f[n] = {}), f[n].styles || (f[n].styles = {}), f[n].hooks || (f[n].hooks = {}), + f[n].shims || (f[n].shims = []); + var i = f[n], s = [ [ "glass", null, "glass-martini" ], [ "meetup", "fab", null ], [ "star-o", "far", "star" ], [ "remove", null, "times" ], [ "close", null, "times" ], [ "gear", null, "cog" ], [ "trash-o", "far", "trash-alt" ], [ "file-o", "far", "file" ], [ "clock-o", "far", "clock" ], [ "arrow-circle-o-down", "far", "arrow-alt-circle-down" ], [ "arrow-circle-o-up", "far", "arrow-alt-circle-up" ], [ "play-circle-o", "far", "play-circle" ], [ "repeat", null, "redo" ], [ "rotate-right", null, "redo" ], [ "refresh", null, "sync" ], [ "list-alt", "far", null ], [ "dedent", null, "outdent" ], [ "video-camera", null, "video" ], [ "picture-o", "far", "image" ], [ "photo", "far", "image" ], [ "image", "far", "image" ], [ "pencil", null, "pencil-alt" ], [ "map-marker", null, "map-marker-alt" ], [ "pencil-square-o", "far", "edit" ], [ "share-square-o", "far", "share-square" ], [ "check-square-o", "far", "check-square" ], [ "arrows", null, "arrows-alt" ], [ "times-circle-o", "far", "times-circle" ], [ "check-circle-o", "far", "check-circle" ], [ "mail-forward", null, "share" ], [ "eye", "far", null ], [ "eye-slash", "far", null ], [ "warning", null, "exclamation-triangle" ], [ "calendar", null, "calendar-alt" ], [ "arrows-v", null, "arrows-alt-v" ], [ "arrows-h", null, "arrows-alt-h" ], [ "bar-chart", "far", "chart-bar" ], [ "bar-chart-o", "far", "chart-bar" ], [ "twitter-square", "fab", null ], [ "facebook-square", "fab", null ], [ "gears", null, "cogs" ], [ "thumbs-o-up", "far", "thumbs-up" ], [ "thumbs-o-down", "far", "thumbs-down" ], [ "heart-o", "far", "heart" ], [ "sign-out", null, "sign-out-alt" ], [ "linkedin-square", "fab", "linkedin" ], [ "thumb-tack", null, "thumbtack" ], [ "external-link", null, "external-link-alt" ], [ "sign-in", null, "sign-in-alt" ], [ "github-square", "fab", null ], [ "lemon-o", "far", "lemon" ], [ "square-o", "far", "square" ], [ "bookmark-o", "far", "bookmark" ], [ "twitter", "fab", null ], [ "facebook", "fab", "facebook-f" ], [ "facebook-f", "fab", "facebook-f" ], [ "github", "fab", null ], [ "credit-card", "far", null ], [ "feed", null, "rss" ], [ "hdd-o", "far", "hdd" ], [ "hand-o-right", "far", "hand-point-right" ], [ "hand-o-left", "far", "hand-point-left" ], [ "hand-o-up", "far", "hand-point-up" ], [ "hand-o-down", "far", "hand-point-down" ], [ "arrows-alt", null, "expand-arrows-alt" ], [ "group", null, "users" ], [ "chain", null, "link" ], [ "scissors", null, "cut" ], [ "files-o", "far", "copy" ], [ "floppy-o", "far", "save" ], [ "navicon", null, "bars" ], [ "reorder", null, "bars" ], [ "pinterest", "fab", null ], [ "pinterest-square", "fab", null ], [ "google-plus-square", "fab", null ], [ "google-plus", "fab", "google-plus-g" ], [ "money", "far", "money-bill-alt" ], [ "unsorted", null, "sort" ], [ "sort-desc", null, "sort-down" ], [ "sort-asc", null, "sort-up" ], [ "linkedin", "fab", "linkedin-in" ], [ "rotate-left", null, "undo" ], [ "legal", null, "gavel" ], [ "tachometer", null, "tachometer-alt" ], [ "dashboard", null, "tachometer-alt" ], [ "comment-o", "far", "comment" ], [ "comments-o", "far", "comments" ], [ "flash", null, "bolt" ], [ "clipboard", "far", null ], [ "paste", "far", "clipboard" ], [ "lightbulb-o", "far", "lightbulb" ], [ "exchange", null, "exchange-alt" ], [ "cloud-download", null, "cloud-download-alt" ], [ "cloud-upload", null, "cloud-upload-alt" ], [ "bell-o", "far", "bell" ], [ "cutlery", null, "utensils" ], [ "file-text-o", "far", "file-alt" ], [ "building-o", "far", "building" ], [ "hospital-o", "far", "hospital" ], [ "tablet", null, "tablet-alt" ], [ "mobile", null, "mobile-alt" ], [ "mobile-phone", null, "mobile-alt" ], [ "circle-o", "far", "circle" ], [ "mail-reply", null, "reply" ], [ "github-alt", "fab", null ], [ "folder-o", "far", "folder" ], [ "folder-open-o", "far", "folder-open" ], [ "smile-o", "far", "smile" ], [ "frown-o", "far", "frown" ], [ "meh-o", "far", "meh" ], [ "keyboard-o", "far", "keyboard" ], [ "flag-o", "far", "flag" ], [ "mail-reply-all", null, "reply-all" ], [ "star-half-o", "far", "star-half" ], [ "star-half-empty", "far", "star-half" ], [ "star-half-full", "far", "star-half" ], [ "code-fork", null, "code-branch" ], [ "chain-broken", null, "unlink" ], [ "shield", null, "shield-alt" ], [ "calendar-o", "far", "calendar" ], [ "maxcdn", "fab", null ], [ "html5", "fab", null ], [ "css3", "fab", null ], [ "ticket", null, "ticket-alt" ], [ "minus-square-o", "far", "minus-square" ], [ "level-up", null, "level-up-alt" ], [ "level-down", null, "level-down-alt" ], [ "pencil-square", null, "pen-square" ], [ "external-link-square", null, "external-link-square-alt" ], [ "compass", "far", null ], [ "caret-square-o-down", "far", "caret-square-down" ], [ "toggle-down", "far", "caret-square-down" ], [ "caret-square-o-up", "far", "caret-square-up" ], [ "toggle-up", "far", "caret-square-up" ], [ "caret-square-o-right", "far", "caret-square-right" ], [ "toggle-right", "far", "caret-square-right" ], [ "eur", null, "euro-sign" ], [ "euro", null, "euro-sign" ], [ "gbp", null, "pound-sign" ], [ "usd", null, "dollar-sign" ], [ "dollar", null, "dollar-sign" ], [ "inr", null, "rupee-sign" ], [ "rupee", null, "rupee-sign" ], [ "jpy", null, "yen-sign" ], [ "cny", null, "yen-sign" ], [ "rmb", null, "yen-sign" ], [ "yen", null, "yen-sign" ], [ "rub", null, "ruble-sign" ], [ "ruble", null, "ruble-sign" ], [ "rouble", null, "ruble-sign" ], [ "krw", null, "won-sign" ], [ "won", null, "won-sign" ], [ "btc", "fab", null ], [ "bitcoin", "fab", "btc" ], [ "file-text", null, "file-alt" ], [ "sort-alpha-asc", null, "sort-alpha-down" ], [ "sort-alpha-desc", null, "sort-alpha-up" ], [ "sort-amount-asc", null, "sort-amount-down" ], [ "sort-amount-desc", null, "sort-amount-up" ], [ "sort-numeric-asc", null, "sort-numeric-down" ], [ "sort-numeric-desc", null, "sort-numeric-up" ], [ "youtube-square", "fab", null ], [ "youtube", "fab", null ], [ "xing", "fab", null ], [ "xing-square", "fab", null ], [ "youtube-play", "fab", "youtube" ], [ "dropbox", "fab", null ], [ "stack-overflow", "fab", null ], [ "instagram", "fab", null ], [ "flickr", "fab", null ], [ "adn", "fab", null ], [ "bitbucket", "fab", null ], [ "bitbucket-square", "fab", "bitbucket" ], [ "tumblr", "fab", null ], [ "tumblr-square", "fab", null ], [ "long-arrow-down", null, "long-arrow-alt-down" ], [ "long-arrow-up", null, "long-arrow-alt-up" ], [ "long-arrow-left", null, "long-arrow-alt-left" ], [ "long-arrow-right", null, "long-arrow-alt-right" ], [ "apple", "fab", null ], [ "windows", "fab", null ], [ "android", "fab", null ], [ "linux", "fab", null ], [ "dribbble", "fab", null ], [ "skype", "fab", null ], [ "foursquare", "fab", null ], [ "trello", "fab", null ], [ "gratipay", "fab", null ], [ "gittip", "fab", "gratipay" ], [ "sun-o", "far", "sun" ], [ "moon-o", "far", "moon" ], [ "vk", "fab", null ], [ "weibo", "fab", null ], [ "renren", "fab", null ], [ "pagelines", "fab", null ], [ "stack-exchange", "fab", null ], [ "arrow-circle-o-right", "far", "arrow-alt-circle-right" ], [ "arrow-circle-o-left", "far", "arrow-alt-circle-left" ], [ "caret-square-o-left", "far", "caret-square-left" ], [ "toggle-left", "far", "caret-square-left" ], [ "dot-circle-o", "far", "dot-circle" ], [ "vimeo-square", "fab", null ], [ "try", null, "lira-sign" ], [ "turkish-lira", null, "lira-sign" ], [ "plus-square-o", "far", "plus-square" ], [ "slack", "fab", null ], [ "wordpress", "fab", null ], [ "openid", "fab", null ], [ "institution", null, "university" ], [ "bank", null, "university" ], [ "mortar-board", null, "graduation-cap" ], [ "yahoo", "fab", null ], [ "google", "fab", null ], [ "reddit", "fab", null ], [ "reddit-square", "fab", null ], [ "stumbleupon-circle", "fab", null ], [ "stumbleupon", "fab", null ], [ "delicious", "fab", null ], [ "digg", "fab", null ], [ "pied-piper-pp", "fab", null ], [ "pied-piper-alt", "fab", null ], [ "drupal", "fab", null ], [ "joomla", "fab", null ], [ "spoon", null, "utensil-spoon" ], [ "behance", "fab", null ], [ "behance-square", "fab", null ], [ "steam", "fab", null ], [ "steam-square", "fab", null ], [ "automobile", null, "car" ], [ "cab", null, "taxi" ], [ "envelope-o", "far", "envelope" ], [ "deviantart", "fab", null ], [ "soundcloud", "fab", null ], [ "file-pdf-o", "far", "file-pdf" ], [ "file-word-o", "far", "file-word" ], [ "file-excel-o", "far", "file-excel" ], [ "file-powerpoint-o", "far", "file-powerpoint" ], [ "file-image-o", "far", "file-image" ], [ "file-photo-o", "far", "file-image" ], [ "file-picture-o", "far", "file-image" ], [ "file-archive-o", "far", "file-archive" ], [ "file-zip-o", "far", "file-archive" ], [ "file-audio-o", "far", "file-audio" ], [ "file-sound-o", "far", "file-audio" ], [ "file-video-o", "far", "file-video" ], [ "file-movie-o", "far", "file-video" ], [ "file-code-o", "far", "file-code" ], [ "vine", "fab", null ], [ "codepen", "fab", null ], [ "jsfiddle", "fab", null ], [ "life-ring", "far", null ], [ "life-bouy", "far", "life-ring" ], [ "life-buoy", "far", "life-ring" ], [ "life-saver", "far", "life-ring" ], [ "support", "far", "life-ring" ], [ "circle-o-notch", null, "circle-notch" ], [ "rebel", "fab", null ], [ "ra", "fab", "rebel" ], [ "resistance", "fab", "rebel" ], [ "empire", "fab", null ], [ "ge", "fab", "empire" ], [ "git-square", "fab", null ], [ "git", "fab", null ], [ "hacker-news", "fab", null ], [ "y-combinator-square", "fab", "hacker-news" ], [ "yc-square", "fab", "hacker-news" ], [ "tencent-weibo", "fab", null ], [ "qq", "fab", null ], [ "weixin", "fab", null ], [ "wechat", "fab", "weixin" ], [ "send", null, "paper-plane" ], [ "paper-plane-o", "far", "paper-plane" ], [ "send-o", "far", "paper-plane" ], [ "circle-thin", "far", "circle" ], [ "header", null, "heading" ], [ "sliders", null, "sliders-h" ], [ "futbol-o", "far", "futbol" ], [ "soccer-ball-o", "far", "futbol" ], [ "slideshare", "fab", null ], [ "twitch", "fab", null ], [ "yelp", "fab", null ], [ "newspaper-o", "far", "newspaper" ], [ "paypal", "fab", null ], [ "google-wallet", "fab", null ], [ "cc-visa", "fab", null ], [ "cc-mastercard", "fab", null ], [ "cc-discover", "fab", null ], [ "cc-amex", "fab", null ], [ "cc-paypal", "fab", null ], [ "cc-stripe", "fab", null ], [ "bell-slash-o", "far", "bell-slash" ], [ "trash", null, "trash-alt" ], [ "copyright", "far", null ], [ "eyedropper", null, "eye-dropper" ], [ "area-chart", null, "chart-area" ], [ "pie-chart", null, "chart-pie" ], [ "line-chart", null, "chart-line" ], [ "lastfm", "fab", null ], [ "lastfm-square", "fab", null ], [ "ioxhost", "fab", null ], [ "angellist", "fab", null ], [ "cc", "far", "closed-captioning" ], [ "ils", null, "shekel-sign" ], [ "shekel", null, "shekel-sign" ], [ "sheqel", null, "shekel-sign" ], [ "meanpath", "fab", "font-awesome" ], [ "buysellads", "fab", null ], [ "connectdevelop", "fab", null ], [ "dashcube", "fab", null ], [ "forumbee", "fab", null ], [ "leanpub", "fab", null ], [ "sellsy", "fab", null ], [ "shirtsinbulk", "fab", null ], [ "simplybuilt", "fab", null ], [ "skyatlas", "fab", null ], [ "diamond", "far", "gem" ], [ "intersex", null, "transgender" ], [ "facebook-official", "fab", "facebook" ], [ "pinterest-p", "fab", null ], [ "whatsapp", "fab", null ], [ "hotel", null, "bed" ], [ "viacoin", "fab", null ], [ "medium", "fab", null ], [ "y-combinator", "fab", null ], [ "yc", "fab", "y-combinator" ], [ "optin-monster", "fab", null ], [ "opencart", "fab", null ], [ "expeditedssl", "fab", null ], [ "battery-4", null, "battery-full" ], [ "battery", null, "battery-full" ], [ "battery-3", null, "battery-three-quarters" ], [ "battery-2", null, "battery-half" ], [ "battery-1", null, "battery-quarter" ], [ "battery-0", null, "battery-empty" ], [ "object-group", "far", null ], [ "object-ungroup", "far", null ], [ "sticky-note-o", "far", "sticky-note" ], [ "cc-jcb", "fab", null ], [ "cc-diners-club", "fab", null ], [ "clone", "far", null ], [ "hourglass-o", "far", "hourglass" ], [ "hourglass-1", null, "hourglass-start" ], [ "hourglass-2", null, "hourglass-half" ], [ "hourglass-3", null, "hourglass-end" ], [ "hand-rock-o", "far", "hand-rock" ], [ "hand-grab-o", "far", "hand-rock" ], [ "hand-paper-o", "far", "hand-paper" ], [ "hand-stop-o", "far", "hand-paper" ], [ "hand-scissors-o", "far", "hand-scissors" ], [ "hand-lizard-o", "far", "hand-lizard" ], [ "hand-spock-o", "far", "hand-spock" ], [ "hand-pointer-o", "far", "hand-pointer" ], [ "hand-peace-o", "far", "hand-peace" ], [ "registered", "far", null ], [ "creative-commons", "fab", null ], [ "gg", "fab", null ], [ "gg-circle", "fab", null ], [ "tripadvisor", "fab", null ], [ "odnoklassniki", "fab", null ], [ "odnoklassniki-square", "fab", null ], [ "get-pocket", "fab", null ], [ "wikipedia-w", "fab", null ], [ "safari", "fab", null ], [ "chrome", "fab", null ], [ "firefox", "fab", null ], [ "opera", "fab", null ], [ "internet-explorer", "fab", null ], [ "television", null, "tv" ], [ "contao", "fab", null ], [ "500px", "fab", null ], [ "amazon", "fab", null ], [ "calendar-plus-o", "far", "calendar-plus" ], [ "calendar-minus-o", "far", "calendar-minus" ], [ "calendar-times-o", "far", "calendar-times" ], [ "calendar-check-o", "far", "calendar-check" ], [ "map-o", "far", "map" ], [ "commenting", "far", "comment-dots" ], [ "commenting-o", "far", "comment-dots" ], [ "houzz", "fab", null ], [ "vimeo", "fab", "vimeo-v" ], [ "black-tie", "fab", null ], [ "fonticons", "fab", null ], [ "reddit-alien", "fab", null ], [ "edge", "fab", null ], [ "credit-card-alt", null, "credit-card" ], [ "codiepie", "fab", null ], [ "modx", "fab", null ], [ "fort-awesome", "fab", null ], [ "usb", "fab", null ], [ "product-hunt", "fab", null ], [ "mixcloud", "fab", null ], [ "scribd", "fab", null ], [ "pause-circle-o", "far", "pause-circle" ], [ "stop-circle-o", "far", "stop-circle" ], [ "bluetooth", "fab", null ], [ "bluetooth-b", "fab", null ], [ "gitlab", "fab", null ], [ "wpbeginner", "fab", null ], [ "wpforms", "fab", null ], [ "envira", "fab", null ], [ "wheelchair-alt", "fab", "accessible-icon" ], [ "question-circle-o", "far", "question-circle" ], [ "volume-control-phone", null, "phone-volume" ], [ "asl-interpreting", null, "american-sign-language-interpreting" ], [ "deafness", null, "deaf" ], [ "hard-of-hearing", null, "deaf" ], [ "glide", "fab", null ], [ "glide-g", "fab", null ], [ "signing", null, "sign-language" ], [ "viadeo", "fab", null ], [ "viadeo-square", "fab", null ], [ "snapchat", "fab", null ], [ "snapchat-ghost", "fab", null ], [ "snapchat-square", "fab", null ], [ "pied-piper", "fab", null ], [ "first-order", "fab", null ], [ "yoast", "fab", null ], [ "themeisle", "fab", null ], [ "google-plus-official", "fab", "google-plus" ], [ "google-plus-circle", "fab", "google-plus" ], [ "font-awesome", "fab", null ], [ "fa", "fab", "font-awesome" ], [ "handshake-o", "far", "handshake" ], [ "envelope-open-o", "far", "envelope-open" ], [ "linode", "fab", null ], [ "address-book-o", "far", "address-book" ], [ "vcard", null, "address-card" ], [ "address-card-o", "far", "address-card" ], [ "vcard-o", "far", "address-card" ], [ "user-circle-o", "far", "user-circle" ], [ "user-o", "far", "user" ], [ "id-badge", "far", null ], [ "drivers-license", null, "id-card" ], [ "id-card-o", "far", "id-card" ], [ "drivers-license-o", "far", "id-card" ], [ "quora", "fab", null ], [ "free-code-camp", "fab", null ], [ "telegram", "fab", null ], [ "thermometer-4", null, "thermometer-full" ], [ "thermometer", null, "thermometer-full" ], [ "thermometer-3", null, "thermometer-three-quarters" ], [ "thermometer-2", null, "thermometer-half" ], [ "thermometer-1", null, "thermometer-quarter" ], [ "thermometer-0", null, "thermometer-empty" ], [ "bathtub", null, "bath" ], [ "s15", null, "bath" ], [ "window-maximize", "far", null ], [ "window-restore", "far", null ], [ "times-rectangle", null, "window-close" ], [ "window-close-o", "far", "window-close" ], [ "times-rectangle-o", "far", "window-close" ], [ "bandcamp", "fab", null ], [ "grav", "fab", null ], [ "etsy", "fab", null ], [ "imdb", "fab", null ], [ "ravelry", "fab", null ], [ "eercast", "fab", "sellcast" ], [ "snowflake-o", "far", "snowflake" ], [ "superpowers", "fab", null ], [ "wpexplorer", "fab", null ], [ "spotify", "fab", null ] ]; + return function(l) { + try { + l(); + } catch (l) { + if (!o) throw l; + } + }(function() { + var l; + "function" == typeof i.hooks.addShims ? i.hooks.addShims(s) : (l = i.shims).push.apply(l, s); + }), s; +}, "object" == typeof exports && "undefined" != typeof module ? module.exports = a() : "function" == typeof define && define.amd ? define(a) : l["fontawesome-free-shims"] = a(); \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fontawesome-all.js b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fontawesome-all.js new file mode 100644 index 0000000000..a3d5aad68d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fontawesome-all.js @@ -0,0 +1,3606 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +(function () { +'use strict'; + +var _WINDOW = {}; +try { + if (typeof window !== 'undefined') _WINDOW = window; + +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; + + + + + +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; + + + + + + + + + +var PRODUCTION = function () { + try { + return undefined === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + + + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var icons = { + "500px": [448, 512, [], "f26e", "M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3.3-16 16.5-21.2 23.9l-.5.6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8zm63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2zM393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4zM213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6.2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6z"], + "accessible-icon": [448, 512, [], "f368", "M423.9 255.8L411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7zm-64.9-154c28.1 0 50.9-22.8 50.9-50.9C409.9 22.8 387.1 0 359 0c-28.1 0-50.9 22.8-50.9 50.9 0 28.1 22.8 50.9 50.9 50.9zM179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3z"], + "accusoft": [640, 512, [], "f369", "M482.2 372.1C476.5 365.2 250 75 242.3 65.5c-13.7-17.2 0-16.8 19.2-16.9 9.7-.1 106.3-.6 116.5-.6 24.1-.1 28.7.6 38.4 12.8 2.1 2.7 205.1 245.8 207.2 248.3 5.5 6.7 15.2 19.1 7.2 23.4-2.4 1.3-114.6 47.7-117.8 48.9-10.1 4-17.5 6.8-30.8-9.3m114.7-5.6s-115 50.4-117.5 51.6c-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2-2.3-.3-24.6-4.7-38-7.2m-326-181.3s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3v-1l-51.2-65.8"], + "adn": [496, 512, [], "f170", "M248 167.5l64.9 98.8H183.1l64.9-98.8zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7h30.2z"], + "adversal": [512, 512, [], "f36a", "M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2zM178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4.4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3zm286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7.4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9zm3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6.4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1.2-.1.3-.1.5zm-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2.4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1zm-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8z"], + "affiliatetheme": [512, 512, [], "f36b", "M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2 29.1 21.6 11.1 96.6-40.2 167.5zm351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9.1-8.5-.3-16.8-1-25z"], + "algolia": [448, 512, [], "f36c", "M229.3 182.6c-49.3 0-89.2 39.9-89.2 89.2 0 49.3 39.9 89.2 89.2 89.2s89.2-39.9 89.2-89.2c0-49.3-40-89.2-89.2-89.2zm62.7 56.6l-58.9 30.6c-1.8.9-3.8-.4-3.8-2.3V201c0-1.5 1.3-2.7 2.7-2.6 26.2 1 48.9 15.7 61.1 37.1.7 1.3.2 3-1.1 3.7zM389.1 32H58.9C26.4 32 0 58.4 0 90.9V421c0 32.6 26.4 59 58.9 59H389c32.6 0 58.9-26.4 58.9-58.9V90.9C448 58.4 421.6 32 389.1 32zm-202.6 84.7c0-10.8 8.7-19.5 19.5-19.5h45.3c10.8 0 19.5 8.7 19.5 19.5v15.4c0 1.8-1.7 3-3.3 2.5-12.3-3.4-25.1-5.1-38.1-5.1-13.5 0-26.7 1.8-39.4 5.5-1.7.5-3.4-.8-3.4-2.5v-15.8zm-84.4 37l9.2-9.2c7.6-7.6 19.9-7.6 27.5 0l7.7 7.7c1.1 1.1 1 3-.3 4-6.2 4.5-12.1 9.4-17.6 14.9-5.4 5.4-10.4 11.3-14.8 17.4-1 1.3-2.9 1.5-4 .3l-7.7-7.7c-7.6-7.5-7.6-19.8 0-27.4zm127.2 244.8c-70 0-126.6-56.7-126.6-126.6s56.7-126.6 126.6-126.6c70 0 126.6 56.6 126.6 126.6 0 69.8-56.7 126.6-126.6 126.6z"], + "amazon": [448, 512, [], "f270", "M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z"], + "amazon-pay": [611, 512, [], "f42c", "M0 325.2c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7 40.7 20.4 83.2 35.6 127.4 46.3 20.9 5 41.9 9 63.2 11.8 31.5 4.2 63.2 6 95 5.2 17.4-.4 34.8-1.8 52.1-3.8 56.4-6.7 110.9-20.8 163.3-42.8 2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9-2.8 2.8-6.3 5.1-9.6 7.4-30.7 21.1-64.2 36.4-99.6 47.9-24.6 7.9-49.6 13.8-75.1 17.6-17.6 2.6-35.4 4.4-53.2 4.8-.8 0-1.7.2-2.5.3H294c-.8-.1-1.7-.3-2.5-.3-3.6-.2-7.2-.3-10.7-.4-16.9-.7-33.7-2.6-50.4-5.3-27.4-4.5-54.2-11.4-80.4-20.9-54.1-19.6-102.6-48.6-145.6-87-1.8-1.6-3-3.8-4.4-5.7v-2zM158 65c-1.4.2-2.9.4-4.3.6-14 1.7-26.6 6.9-38 15.1-2.4 1.7-4.6 3.5-7.1 5.4-.2-.5-.4-1-.4-1.4-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6H87.8c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3V215c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zm-47.4 41.9c0-1.5.4-2.4 1.7-3.3 13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9-1.2-.9-1.7-1.7-1.7-3.3.1-14.1 0-28.1 0-42.2 0-14 .1-28 0-42.1zM316.3 65c-1 .1-2 .3-2.9.4-9.8.5-19.4 1.7-28.9 4.1-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9 0 .4-.1.9-.2 1.4-.5-.1-.9 0-1.3-.1-10.5-2.5-21.1-4.3-32-4.9-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4.4-.4.9-.7 1.6-1.1.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0 2.7-.1 4.5-1.9 4.8-4.7.1-.9.1-1.9.1-2.8v-106c0-4.3-.2-8.6-.9-12.9-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1zm35 127.7c0 1.3-.4 2.2-1.5 3-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8-6.3-2.5-10.4-6.9-12.4-13.3s-2-13-.1-19.4c2.5-8.3 8.4-13 16.4-15.6 8.1-2.6 16.5-3 24.8-2.2 8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3-.1 4.7-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3-6.8-2.3-13.9-3.3-21-3.9-13.1-1.1-26.2-.5-39.2 1.9-14.3 2.7-27.9 7.3-40 15.6-1.4 1-2.8 2.1-3.7 3.5-.7 1.1-.9 2.8-.5 4 .4 1.5 2.1 1.9 3.6 1.8.7 0 1.5 0 2.2-.1 7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9 4.8.3 9.7 1.4 14.4 2.7 5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1-.4 1-.8 2-1 3-.5 2.9 1.2 4.8 4.1 4.1 1.7-.4 3.6-1.3 4.8-2.5 4.4-4.3 8.9-8.6 12.7-13.4 12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9v-17.3zM479.1 198.9c-12.9-35.7-25.8-71.5-38.7-107.2-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5.5 2.1 1.1 4.1 1.9 6.1 19.6 48.5 39.3 97.1 59.1 145.5 1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3-5.1 1.4-10.2 1.6-15.4 1.1-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8-.1 3.3-.1 6.6 0 9.9.1 5.5 2 8 7.4 8.9 5.6 1 11.3 1.9 16.9 2 17.1.4 30.7-6.5 39.5-21.4 3.5-5.9 6.7-12.1 9.2-18.4 23.7-59.8 47.1-119.7 70.6-179.6.7-1.8 1.3-3.6 1.6-5.5.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0-3.7 0-6.3 1.6-7.7 5.2-.5 1.4-1.1 2.7-1.6 4.1-11.6 33.3-23.2 66.6-34.8 100-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z"], + "amilia": [448, 512, [], "f36d", "M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm-87.9 327.7c0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5V380c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7"], + "android": [448, 512, [], "f17b", "M89.6 204.5v115.8c0 15.4-12.1 27.7-27.5 27.7-15.3 0-30.1-12.4-30.1-27.7V204.5c0-15.1 14.8-27.5 30.1-27.5 15.1 0 27.5 12.4 27.5 27.5zm10.8 157c0 16.4 13.2 29.6 29.6 29.6h19.9l.3 61.1c0 36.9 55.2 36.6 55.2 0v-61.1h37.2v61.1c0 36.7 55.5 36.8 55.5 0v-61.1h20.2c16.2 0 29.4-13.2 29.4-29.6V182.1H100.4v179.4zm248-189.1H99.3c0-42.8 25.6-80 63.6-99.4l-19.1-35.3c-2.8-4.9 4.3-8 6.7-3.8l19.4 35.6c34.9-15.5 75-14.7 108.3 0L297.5 34c2.5-4.3 9.5-1.1 6.7 3.8L285.1 73c37.7 19.4 63.3 56.6 63.3 99.4zm-170.7-55.5c0-5.7-4.6-10.5-10.5-10.5-5.7 0-10.2 4.8-10.2 10.5s4.6 10.5 10.2 10.5c5.9 0 10.5-4.8 10.5-10.5zm113.4 0c0-5.7-4.6-10.5-10.2-10.5-5.9 0-10.5 4.8-10.5 10.5s4.6 10.5 10.5 10.5c5.6 0 10.2-4.8 10.2-10.5zm94.8 60.1c-15.1 0-27.5 12.1-27.5 27.5v115.8c0 15.4 12.4 27.7 27.5 27.7 15.4 0 30.1-12.4 30.1-27.7V204.5c0-15.4-14.8-27.5-30.1-27.5z"], + "angellist": [448, 512, [], "f209", "M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7zM311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6 33.1-93.7zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8zM140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7.1-7.7 12.7-21.1 20.4-21.1zm184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3.3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7.1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7zm-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1z"], + "angrycreative": [640, 512, [], "f36e", "M640 238.2l-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4 93.1-6.2zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9-12.8 120zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3-126.2 7.7zm-44.3-70.2l-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7 2.7-29.8zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1zm21.1 70.8l5.8-60c-5 13.5-14.7 21.1-27.9 26.6l22.1 33.4zm135.4-45l-7.9-37.8-15.8 39.3 23.7-1.5zm-170.1-74.6l-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8.3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2-56.8 3.7zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1.6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2l-2.9 28.8zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3zm-201.3 8.2l23.8-1.6-8.3-37.6-15.5 39.2z"], + "angular": [415, 512, [], "f420", "M169.7 268.1h76.2l-38.1-91.6-38.1 91.6zM207.8 32L0 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7L207.8 32zM338 373.8h-48.6l-26.2-65.4H152.6l-26.2 65.4H77.7L207.8 81.5 338 373.8z"], + "app-store": [512, 512, [], "f36f", "M255.9 120.9l9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5 9.8 5.6 13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4 0-11.3 9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5l8.9 15.7zm-78.7 218l-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5-9.8-5.6-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6zm168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4 0 11.3-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216z"], + "app-store-ios": [448, 512, [], "f370", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7c16.1-4.9 29.3-1.1 39.6 11.4L127 384.5zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40zm98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20z"], + "apper": [640, 512, [], "f371", "M42.1 239.1c22.2 0 29 2.8 33.5 14.6h.8v-22.9c0-11.3-4.8-15.4-17.9-15.4-11.3 0-14.4 2.5-15.1 12.8H4.8c.3-13.9 1.5-19.1 5.8-24.4C17.9 195 29.5 192 56.7 192c33 0 47.1 5 53.9 18.9 2 4.3 4 15.6 4 23.7v76.3H76.3l1.3-19.1h-1c-5.3 15.6-13.6 20.4-35.5 20.4-30.3 0-41.1-10.1-41.1-37.3 0-25.2 12.3-35.8 42.1-35.8zm17.1 48.1c13.1 0 16.9-3 16.9-13.4 0-9.1-4.3-11.6-19.6-11.6-13.1 0-17.9 3-17.9 12.1-.1 10.4 3.7 12.9 20.6 12.9zm77.8-94.9h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.2 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3H137v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm57.9-60.7h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.3 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3h-39.5v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm53.8-3.8c0-25.4 3.3-37.8 12.3-45.8 8.8-8.1 22.2-11.3 45.1-11.3 42.8 0 55.7 12.8 55.7 55.7v11.1h-75.3c-.3 2-.3 4-.3 4.8 0 16.9 4.5 21.9 20.1 21.9 13.9 0 17.9-3 17.9-13.9h37.5v2.3c0 9.8-2.5 18.9-6.8 24.7-7.3 9.8-19.6 13.6-44.3 13.6-27.5 0-41.6-3.3-50.6-12.3-8.5-8.5-11.3-21.3-11.3-50.8zm76.4-11.6c-.3-1.8-.3-3.3-.3-3.8 0-12.3-3.3-14.6-19.6-14.6-14.4 0-17.1 3-18.1 15.1l-.3 3.3h38.3zm55.6-45.3h38.3l-1.8 19.9h.7c6.8-14.9 14.4-20.2 29.7-20.2 10.8 0 19.1 3.3 23.4 9.3 5.3 7.3 6.8 14.4 6.8 34 0 1.5 0 5 .2 9.3h-35c.3-1.8.3-3.3.3-4 0-15.4-2-19.4-10.3-19.4-6.3 0-10.8 3.3-13.1 9.3-1 3-1 4.3-1 12.3v68h-38.3V192.3z"], + "apple": [376, 512, [], "f179", "M314.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C59.3 141.2 0 184.8 0 273.5c0 26.2 4.8 53.3 14.4 81.2 12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z"], + "apple-pay": [640, 512, [], "f415", "M116.9 158.5c-7.5 8.9-19.5 15.9-31.5 14.9-1.5-12 4.4-24.8 11.3-32.6 7.5-9.1 20.6-15.6 31.3-16.1 1.2 12.4-3.7 24.7-11.1 33.8m10.9 17.2c-17.4-1-32.3 9.9-40.5 9.9-8.4 0-21-9.4-34.8-9.1-17.9.3-34.5 10.4-43.6 26.5-18.8 32.3-4.9 80 13.3 106.3 8.9 13 19.5 27.3 33.5 26.8 13.3-.5 18.5-8.6 34.5-8.6 16.1 0 20.8 8.6 34.8 8.4 14.5-.3 23.6-13 32.5-26 10.1-14.8 14.3-29.1 14.5-29.9-.3-.3-28-10.9-28.3-42.9-.3-26.8 21.9-39.5 22.9-40.3-12.5-18.6-32-20.6-38.8-21.1m100.4-36.2v194.9h30.3v-66.6h41.9c38.3 0 65.1-26.3 65.1-64.3s-26.4-64-64.1-64h-73.2zm30.3 25.5h34.9c26.3 0 41.3 14 41.3 38.6s-15 38.8-41.4 38.8h-34.8V165zm162.2 170.9c19 0 36.6-9.6 44.6-24.9h.6v23.4h28v-97c0-28.1-22.5-46.3-57.1-46.3-32.1 0-55.9 18.4-56.8 43.6h27.3c2.3-12 13.4-19.9 28.6-19.9 18.5 0 28.9 8.6 28.9 24.5v10.8l-37.8 2.3c-35.1 2.1-54.1 16.5-54.1 41.5.1 25.2 19.7 42 47.8 42zm8.2-23.1c-16.1 0-26.4-7.8-26.4-19.6 0-12.3 9.9-19.4 28.8-20.5l33.6-2.1v11c0 18.2-15.5 31.2-36 31.2zm102.5 74.6c29.5 0 43.4-11.3 55.5-45.4L640 193h-30.8l-35.6 115.1h-.6L537.4 193h-31.6L557 334.9l-2.8 8.6c-4.6 14.6-12.1 20.3-25.5 20.3-2.4 0-7-.3-8.9-.5v23.4c1.8.4 9.3.7 11.6.7z"], + "asymmetrik": [576, 512, [], "f372", "M517.5 309.2c38.8-40 58.1-80 58.5-116.1.8-65.5-59.4-118.2-169.4-135C277.9 38.4 118.1 73.6 0 140.5 52 114 110.6 92.3 170.7 82.3c74.5-20.5 153-25.4 221.3-14.8C544.5 91.3 588.8 195 490.8 299.2c-10.2 10.8-22 21.1-35 30.6L304.9 103.4 114.7 388.9c-65.6-29.4-76.5-90.2-19.1-151.2 20.8-22.2 48.3-41.9 79.5-58.1 20-12.2 39.7-22.6 62-30.7-65.1 20.3-122.7 52.9-161.6 92.9-27.7 28.6-41.4 57.1-41.7 82.9-.5 35.1 23.4 65.1 68.4 83l-34.5 51.7h101.6l22-34.4c22.2 1 45.3 0 68.6-2.7l-22.8 37.1h135.5L340 406.3c18.6-5.3 36.9-11.5 54.5-18.7l45.9 71.8H542L468.6 349c18.5-12.1 35-25.5 48.9-39.8zm-187.6 80.5l-25-40.6-32.7 53.3c-23.4 3.5-46.7 5.1-69.2 4.4l101.9-159.3 78.7 123c-17.2 7.4-35.3 13.9-53.7 19.2z"], + "audible": [640, 512, [], "f373", "M640 199.9v54l-320 200L0 254v-54l320 200 320-200.1zm-194.5 72l47.1-29.4c-37.2-55.8-100.7-92.6-172.7-92.6-72 0-135.5 36.7-172.6 92.4h.3c2.5-2.3 5.1-4.5 7.7-6.7 89.7-74.4 219.4-58.1 290.2 36.3zm-220.1 18.8c16.9-11.9 36.5-18.7 57.4-18.7 34.4 0 65.2 18.4 86.4 47.6l45.4-28.4c-20.9-29.9-55.6-49.5-94.8-49.5-38.9 0-73.4 19.4-94.4 49zM103.6 161.1c131.8-104.3 318.2-76.4 417.5 62.1l.7 1 48.8-30.4C517.1 112.1 424.8 58.1 319.9 58.1c-103.5 0-196.6 53.5-250.5 135.6 9.9-10.5 22.7-23.5 34.2-32.6zm467 32.7z"], + "autoprefixer": [640, 512, [], "f41c", "M318.4 16l-161 480h77.5l25.4-81.4h119.5L405 496h77.5L318.4 16zm-40.3 341.9l41.2-130.4h1.5l40.9 130.4h-83.6zM640 405l-10-31.4L462.1 358l19.4 56.5L640 405zm-462.1-47L10 373.7 0 405l158.5 9.4 19.4-56.4z"], + "avianex": [512, 512, [], "f374", "M453.1 32h-312c-38.9 0-76.2 31.2-83.3 69.7L1.2 410.3C-5.9 448.8 19.9 480 58.9 480h312c38.9 0 76.2-31.2 83.3-69.7l56.7-308.5c7-38.6-18.8-69.8-57.8-69.8zm-58.2 347.3l-32 13.5-115.4-110c-14.7 10-29.2 19.5-41.7 27.1l22.1 64.2-17.9 12.7-40.6-61-52.4-48.1 15.7-15.4 58 31.1c9.3-10.5 20.8-22.6 32.8-34.9L203 228.9l-68.8-99.8 18.8-28.9 8.9-4.8L265 207.8l4.9 4.5c19.4-18.8 33.8-32.4 33.8-32.4 7.7-6.5 21.5-2.9 30.7 7.9 9 10.5 10.6 24.7 2.7 31.3-1.8 1.3-15.5 11.4-35.3 25.6l4.5 7.3 94.9 119.4-6.3 7.9z"], + "aviato": [640, 512, [], "f421", "M107.2 283.5l-19-41.8H36.1l-19 41.8H0l62.2-131.4 62.2 131.4h-17.2zm-45-98.1l-19.6 42.5h39.2l-19.6-42.5zm112.7 102.4l-62.2-131.4h17.1l45.1 96 45.1-96h17l-62.1 131.4zm80.6-4.3V156.4H271v127.1h-15.5zm209.1-115.6v115.6h-17.3V167.9h-41.2v-11.5h99.6v11.5h-41.1zM640 218.8c0 9.2-1.7 17.8-5.1 25.8-3.4 8-8.2 15.1-14.2 21.1-6 6-13.1 10.8-21.1 14.2-8 3.4-16.6 5.1-25.8 5.1s-17.8-1.7-25.8-5.1c-8-3.4-15.1-8.2-21.1-14.2-6-6-10.8-13-14.2-21.1-3.4-8-5.1-16.6-5.1-25.8s1.7-17.8 5.1-25.8c3.4-8 8.2-15.1 14.2-21.1 6-6 13-8.4 21.1-11.9 8-3.4 16.6-5.1 25.8-5.1s17.8 1.7 25.8 5.1c8 3.4 15.1 5.8 21.1 11.9 6 6 10.7 13.1 14.2 21.1 3.4 8 5.1 16.6 5.1 25.8zm-15.5 0c0-7.3-1.3-14-3.9-20.3-2.6-6.3-6.2-11.7-10.8-16.3-4.6-4.6-10-8.2-16.2-10.9-6.2-2.7-12.8-4-19.8-4s-13.6 1.3-19.8 4c-6.2 2.7-11.6 6.3-16.2 10.9-4.6 4.6-8.2 10-10.8 16.3-2.6 6.3-3.9 13.1-3.9 20.3 0 7.3 1.3 14 3.9 20.3 2.6 6.3 6.2 11.7 10.8 16.3 4.6 4.6 10 8.2 16.2 10.9 6.2 2.7 12.8 4 19.8 4s13.6-1.3 19.8-4c6.2-2.7 11.6-6.3 16.2-10.9 4.6-4.6 8.2-10 10.8-16.3 2.6-6.3 3.9-13.1 3.9-20.3zm-94.8 96.7v-6.3l88.9-10-242.9 13.4c.6-2.2 1.1-4.6 1.4-7.2.3-2 .5-4.2.6-6.5l64.8-8.1-64.9 1.9c0-.4-.1-.7-.1-1.1-2.8-17.2-25.5-23.7-25.5-23.7l-1.1-26.3h23.8l19 41.8h17.1L348.6 152l-62.2 131.4h17.1l19-41.8h23.6L345 268s-22.7 6.5-25.5 23.7c-.1.3-.1.7-.1 1.1l-64.9-1.9 64.8 8.1c.1 2.3.3 4.4.6 6.5.3 2.6.8 5 1.4 7.2L78.4 299.2l88.9 10v6.3c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4 0-6.2-4.6-11.3-10.5-12.2v-5.8l80.3 9v5.4c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-4.9l28.4 3.2v23.7h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9V323l38.3 4.3c8.1 11.4 19 13.6 19 13.6l-.1 6.7-5.1.2-.1 12.1h4.1l.1-5h5.2l.1 5h4.1l-.1-12.1-5.1-.2-.1-6.7s10.9-2.1 19-13.6l38.3-4.3v23.2h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9v-23.7l28.4-3.2v4.9c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-5.4l80.3-9v5.8c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4-.2-6.3-4.7-11.4-10.7-12.3zm-200.8-87.6l19.6-42.5 19.6 42.5h-17.9l-1.7-40.3-1.7 40.3h-17.9z"], + "aws": [640, 512, [], "f375", "M180.41 203.01c-.72 22.65 10.6 32.68 10.88 39.05a8.164 8.164 0 0 1-4.1 6.27l-12.8 8.96a10.66 10.66 0 0 1-5.63 1.92c-.43-.02-8.19 1.83-20.48-25.61a78.608 78.608 0 0 1-62.61 29.45c-16.28.89-60.4-9.24-58.13-56.21-1.59-38.28 34.06-62.06 70.93-60.05 7.1.02 21.6.37 46.99 6.27v-15.62c2.69-26.46-14.7-46.99-44.81-43.91-2.4.01-19.4-.5-45.84 10.11-7.36 3.38-8.3 2.82-10.75 2.82-7.41 0-4.36-21.48-2.94-24.2 5.21-6.4 35.86-18.35 65.94-18.18a76.857 76.857 0 0 1 55.69 17.28 70.285 70.285 0 0 1 17.67 52.36l-.01 69.29zM93.99 235.4c32.43-.47 46.16-19.97 49.29-30.47 2.46-10.05 2.05-16.41 2.05-27.4-9.67-2.32-23.59-4.85-39.56-4.87-15.15-1.14-42.82 5.63-41.74 32.26-1.24 16.79 11.12 31.4 29.96 30.48zm170.92 23.05c-7.86.72-11.52-4.86-12.68-10.37l-49.8-164.65c-.97-2.78-1.61-5.65-1.92-8.58a4.61 4.61 0 0 1 3.86-5.25c.24-.04-2.13 0 22.25 0 8.78-.88 11.64 6.03 12.55 10.37l35.72 140.83 33.16-140.83c.53-3.22 2.94-11.07 12.8-10.24h17.16c2.17-.18 11.11-.5 12.68 10.37l33.42 142.63L420.98 80.1c.48-2.18 2.72-11.37 12.68-10.37h19.72c.85-.13 6.15-.81 5.25 8.58-.43 1.85 3.41-10.66-52.75 169.9-1.15 5.51-4.82 11.09-12.68 10.37h-18.69c-10.94 1.15-12.51-9.66-12.68-10.75L328.67 110.7l-32.78 136.99c-.16 1.09-1.73 11.9-12.68 10.75h-18.3zm273.48 5.63c-5.88.01-33.92-.3-57.36-12.29a12.802 12.802 0 0 1-7.81-11.91v-10.75c0-8.45 6.2-6.9 8.83-5.89 10.04 4.06 16.48 7.14 28.81 9.6 36.65 7.53 52.77-2.3 56.72-4.48 13.15-7.81 14.19-25.68 5.25-34.95-10.48-8.79-15.48-9.12-53.13-21-4.64-1.29-43.7-13.61-43.79-52.36-.61-28.24 25.05-56.18 69.52-55.95 12.67-.01 46.43 4.13 55.57 15.62 1.35 2.09 2.02 4.55 1.92 7.04v10.11c0 4.44-1.62 6.66-4.87 6.66-7.71-.86-21.39-11.17-49.16-10.75-6.89-.36-39.89.91-38.41 24.97-.43 18.96 26.61 26.07 29.7 26.89 36.46 10.97 48.65 12.79 63.12 29.58 17.14 22.25 7.9 48.3 4.35 55.44-19.08 37.49-68.42 34.44-69.26 34.42zm40.2 104.86c-70.03 51.72-171.69 79.25-258.49 79.25A469.127 469.127 0 0 1 2.83 327.46c-6.53-5.89-.77-13.96 7.17-9.47a637.37 637.37 0 0 0 316.88 84.12 630.22 630.22 0 0 0 241.59-49.55c11.78-5 21.77 7.8 10.12 16.38zm29.19-33.29c-8.96-11.52-59.28-5.38-81.81-2.69-6.79.77-7.94-5.12-1.79-9.47 40.07-28.17 105.88-20.1 113.44-10.63 7.55 9.47-2.05 75.41-39.56 106.91-5.76 4.87-11.27 2.3-8.71-4.1 8.44-21.25 27.39-68.49 18.43-80.02z"], + "bandcamp": [496, 512, [], "f2d5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm48.2 326.1h-181L199.9 178h181l-84.7 156.1z"], + "behance": [576, 512, [], "f1b4", "M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z"], + "behance-square": [448, 512, [], "f1b5", "M186.5 293c0 19.3-14 25.4-31.2 25.4h-45.1v-52.9h46c18.6.1 30.3 7.8 30.3 27.5zm-7.7-82.3c0-17.7-13.7-21.9-28.9-21.9h-39.6v44.8H153c15.1 0 25.8-6.6 25.8-22.9zm132.3 23.2c-18.3 0-30.5 11.4-31.7 29.7h62.2c-1.7-18.5-11.3-29.7-30.5-29.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM271.7 185h77.8v-18.9h-77.8V185zm-43 110.3c0-24.1-11.4-44.9-35-51.6 17.2-8.2 26.2-17.7 26.2-37 0-38.2-28.5-47.5-61.4-47.5H68v192h93.1c34.9-.2 67.6-16.9 67.6-55.9zM380 280.5c0-41.1-24.1-75.4-67.6-75.4-42.4 0-71.1 31.8-71.1 73.6 0 43.3 27.3 73 71.1 73 33.2 0 54.7-14.9 65.1-46.8h-33.7c-3.7 11.9-18.6 18.1-30.2 18.1-22.4 0-34.1-13.1-34.1-35.3h100.2c.1-2.3.3-4.8.3-7.2z"], + "bimobject": [448, 512, [], "f378", "M416 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm-64 257.4c0 49.4-11.4 82.6-103.8 82.6h-16.9c-44.1 0-62.4-14.9-70.4-38.8h-.9V368H96V136h64v74.7h1.1c4.6-30.5 39.7-38.8 69.7-38.8h17.3c92.4 0 103.8 33.1 103.8 82.5v35zm-64-28.9v22.9c0 21.7-3.4 33.8-38.4 33.8h-45.3c-28.9 0-44.1-6.5-44.1-35.7v-19c0-29.3 15.2-35.7 44.1-35.7h45.3c35-.2 38.4 12 38.4 33.7z"], + "bitbucket": [512, 512, [], "f171", "M23.1 32C14.2 31.9 7 38.9 6.9 47.8c0 .9.1 1.8.2 2.8L74.9 462c1.7 10.4 10.7 18 21.2 18.1h325.1c7.9.1 14.7-5.6 16-13.4l67.8-416c1.4-8.7-4.5-16.9-13.2-18.3-.9-.1-1.8-.2-2.8-.2L23.1 32zm285.3 297.3H204.6l-28.1-146.8h157l-25.1 146.8z"], + "bitcoin": [512, 512, [], "f379", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z"], + "bity": [496, 512, [], "f37a", "M78.4 67.2C173.8-22 324.5-24 421.5 71c14.3 14.1-6.4 37.1-22.4 21.5-84.8-82.4-215.8-80.3-298.9-3.2-16.3 15.1-36.5-8.3-21.8-22.1zm98.9 418.6c19.3 5.7 29.3-23.6 7.9-30C73 421.9 9.4 306.1 37.7 194.8c5-19.6-24.9-28.1-30.2-7.1-32.1 127.4 41.1 259.8 169.8 298.1zm148.1-2c121.9-40.2 192.9-166.9 164.4-291-4.5-19.7-34.9-13.8-30 7.9 24.2 107.7-37.1 217.9-143.2 253.4-21.2 7-10.4 36 8.8 29.7zm-62.9-79l.2-71.8c0-8.2-6.6-14.8-14.8-14.8-8.2 0-14.8 6.7-14.8 14.8l-.2 71.8c0 8.2 6.6 14.8 14.8 14.8s14.8-6.6 14.8-14.8zm71-269c2.1 90.9 4.7 131.9-85.5 132.5-92.5-.7-86.9-44.3-85.5-132.5 0-21.8-32.5-19.6-32.5 0v71.6c0 69.3 60.7 90.9 118 90.1 57.3.8 118-20.8 118-90.1v-71.6c0-19.6-32.5-21.8-32.5 0z"], + "black-tie": [448, 512, [], "f27e", "M0 32v448h448V32H0zm316.5 325.2L224 445.9l-92.5-88.7 64.5-184-64.5-86.6h184.9L252 173.2l64.5 184z"], + "blackberry": [512, 512, [], "f37b", "M166 116.9c0 23.4-16.4 49.1-72.5 49.1H23.4l21-88.8h67.8c42.1 0 53.8 23.3 53.8 39.7zm126.2-39.7h-67.8L205.7 166h70.1c53.8 0 70.1-25.7 70.1-49.1.1-16.4-11.6-39.7-53.7-39.7zM88.8 208.1H21L0 296.9h70.1c56.1 0 72.5-23.4 72.5-49.1 0-16.3-11.7-39.7-53.8-39.7zm180.1 0h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 0-16.3-11.7-39.7-53.7-39.7zm189.3-53.8h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7zm-28 137.9h-67.8L343.7 381h70.1c56.1 0 70.1-23.4 70.1-49.1 0-16.3-11.6-39.7-53.7-39.7zM240.8 346H173l-18.7 88.8h70.1c56.1 0 70.1-25.7 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7z"], + "blogger": [448, 512, [], "f37c", "M162.4 196c4.8-4.9 6.2-5.1 36.4-5.1 27.2 0 28.1.1 32.1 2.1 5.8 2.9 8.3 7 8.3 13.6 0 5.9-2.4 10-7.6 13.4-2.8 1.8-4.5 1.9-31.1 2.1-16.4.1-29.5-.2-31.5-.8-10.3-2.9-14.1-17.7-6.6-25.3zm61.4 94.5c-53.9 0-55.8.2-60.2 4.1-3.5 3.1-5.7 9.4-5.1 13.9.7 4.7 4.8 10.1 9.2 12 2.2 1 14.1 1.7 56.3 1.2l47.9-.6 9.2-1.5c9-5.1 10.5-17.4 3.1-24.4-5.3-4.7-5-4.7-60.4-4.7zm223.4 130.1c-3.5 28.4-23 50.4-51.1 57.5-7.2 1.8-9.7 1.9-172.9 1.8-157.8 0-165.9-.1-172-1.8-8.4-2.2-15.6-5.5-22.3-10-5.6-3.8-13.9-11.8-17-16.4-3.8-5.6-8.2-15.3-10-22C.1 423 0 420.3 0 256.3 0 93.2 0 89.7 1.8 82.6 8.1 57.9 27.7 39 53 33.4c7.3-1.6 332.1-1.9 340-.3 21.2 4.3 37.9 17.1 47.6 36.4 7.7 15.3 7-1.5 7.3 180.6.2 115.8 0 164.5-.7 170.5zm-85.4-185.2c-1.1-5-4.2-9.6-7.7-11.5-1.1-.6-8-1.3-15.5-1.7-12.4-.6-13.8-.8-17.8-3.1-6.2-3.6-7.9-7.6-8-18.3 0-20.4-8.5-39.4-25.3-56.5-12-12.2-25.3-20.5-40.6-25.1-3.6-1.1-11.8-1.5-39.2-1.8-42.9-.5-52.5.4-67.1 6.2-27 10.7-46.3 33.4-53.4 62.4-1.3 5.4-1.6 14.2-1.9 64.3-.4 62.8 0 72.1 4 84.5 9.7 30.7 37.1 53.4 64.6 58.4 9.2 1.7 122.2 2.1 133.7.5 20.1-2.7 35.9-10.8 50.7-25.9 10.7-10.9 17.4-22.8 21.8-38.5 3.2-10.9 2.9-88.4 1.7-93.9z"], + "blogger-b": [448, 512, [], "f37d", "M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z"], + "bluetooth": [448, 512, [], "f293", "M292.6 171.1L249.7 214l-.3-86 43.2 43.1m-43.2 219.8l43.1-43.1-42.9-42.9-.2 86zM416 259.4C416 465 344.1 512 230.9 512S32 465 32 259.4 115.4 0 228.6 0 416 53.9 416 259.4zm-158.5 0l79.4-88.6L211.8 36.5v176.9L138 139.6l-27 26.9 92.7 93-92.7 93 26.9 26.9 73.8-73.8 2.3 170 127.4-127.5-83.9-88.7z"], + "bluetooth-b": [320, 512, [], "f294", "M196.48 260.023l92.626-103.333L143.125 0v206.33l-86.111-86.111-31.406 31.405 108.061 108.399L25.608 368.422l31.406 31.405 86.111-86.111L145.84 512l148.552-148.644-97.912-103.333zm40.86-102.996l-49.977 49.978-.338-100.295 50.315 50.317zM187.363 313.04l49.977 49.978-50.315 50.316.338-100.294z"], + "btc": [384, 512, [], "f15a", "M310.204 242.638c27.73-14.18 45.377-39.39 41.28-81.3-5.358-57.351-52.458-76.573-114.85-81.929V0h-48.528v77.203c-12.605 0-25.525.315-38.444.63V0h-48.528v79.409c-17.842.539-38.622.276-97.37 0v51.678c38.314-.678 58.417-3.14 63.023 21.427v217.429c-2.925 19.492-18.524 16.685-53.255 16.071L3.765 443.68c88.481 0 97.37.315 97.37.315V512h48.528v-67.06c13.234.315 26.154.315 38.444.315V512h48.528v-68.005c81.299-4.412 135.647-24.894 142.895-101.467 5.671-61.446-23.32-88.862-69.326-99.89zM150.608 134.553c27.415 0 113.126-8.507 113.126 48.528 0 54.515-85.71 48.212-113.126 48.212v-96.74zm0 251.776V279.821c32.772 0 133.127-9.138 133.127 53.255-.001 60.186-100.355 53.253-133.127 53.253z"], + "buromobelexperte": [448, 512, [], "f37f", "M0 32v128h128V32H0zm120 120H8V40h112v112zm40-120v128h128V32H160zm120 120H168V40h112v112zm40-120v128h128V32H320zm120 120H328V40h112v112zM0 192v128h128V192H0zm120 120H8V200h112v112zm40-120v128h128V192H160zm120 120H168V200h112v112zm40-120v128h128V192H320zm120 120H328V200h112v112zM0 352v128h128V352H0zm120 120H8V360h112v112zm40-120v128h128V352H160zm120 120H168V360h112v112zm40-120v128h128V352H320z"], + "buysellads": [448, 512, [], "f20d", "M224 150.7l42.9 160.7h-85.8L224 150.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-65.3 325.3l-94.5-298.7H159.8L65.3 405.3H156l111.7-91.6 24.2 91.6h90.8z"], + "cc-amazon-pay": [576, 512, [], "f42d", "M124.7 201.8c.1-11.8 0-23.5 0-35.3v-35.3c0-1.3.4-2 1.4-2.7 11.5-8 24.1-12.1 38.2-11.1 12.5.9 22.7 7 28.1 21.7 3.3 8.9 4.1 18.2 4.1 27.7 0 8.7-.7 17.3-3.4 25.6-5.7 17.8-18.7 24.7-35.7 23.9-11.7-.5-21.9-5-31.4-11.7-.9-.8-1.4-1.6-1.3-2.8zm154.9 14.6c4.6 1.8 9.3 2 14.1 1.5 11.6-1.2 21.9-5.7 31.3-12.5.9-.6 1.3-1.3 1.3-2.5-.1-3.9 0-7.9 0-11.8 0-4-.1-8 0-12 0-1.4-.4-2-1.8-2.2-7-.9-13.9-2.2-20.9-2.9-7-.6-14-.3-20.8 1.9-6.7 2.2-11.7 6.2-13.7 13.1-1.6 5.4-1.6 10.8.1 16.2 1.6 5.5 5.2 9.2 10.4 11.2zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zm-207.5 23.9c.4 1.7.9 3.4 1.6 5.1 16.5 40.6 32.9 81.3 49.5 121.9 1.4 3.5 1.7 6.4.2 9.9-2.8 6.2-4.9 12.6-7.8 18.7-2.6 5.5-6.7 9.5-12.7 11.2-4.2 1.1-8.5 1.3-12.9.9-2.1-.2-4.2-.7-6.3-.8-2.8-.2-4.2 1.1-4.3 4-.1 2.8-.1 5.6 0 8.3.1 4.6 1.6 6.7 6.2 7.5 4.7.8 9.4 1.6 14.2 1.7 14.3.3 25.7-5.4 33.1-17.9 2.9-4.9 5.6-10.1 7.7-15.4 19.8-50.1 39.5-100.3 59.2-150.5.6-1.5 1.1-3 1.3-4.6.4-2.4-.7-3.6-3.1-3.7-5.6-.1-11.1 0-16.7 0-3.1 0-5.3 1.4-6.4 4.3-.4 1.1-.9 2.3-1.3 3.4l-29.1 83.7c-2.1 6.1-4.2 12.1-6.5 18.6-.4-.9-.6-1.4-.8-1.9-10.8-29.9-21.6-59.9-32.4-89.8-1.7-4.7-3.5-9.5-5.3-14.2-.9-2.5-2.7-4-5.4-4-6.4-.1-12.8-.2-19.2-.1-2.2 0-3.3 1.6-2.8 3.7zM242.4 206c1.7 11.7 7.6 20.8 18 26.6 9.9 5.5 20.7 6.2 31.7 4.6 12.7-1.9 23.9-7.3 33.8-15.5.4-.3.8-.6 1.4-1 .5 3.2.9 6.2 1.5 9.2.5 2.6 2.1 4.3 4.5 4.4 4.6.1 9.1.1 13.7 0 2.3-.1 3.8-1.6 4-3.9.1-.8.1-1.6.1-2.3v-88.8c0-3.6-.2-7.2-.7-10.8-1.6-10.8-6.2-19.7-15.9-25.4-5.6-3.3-11.8-5-18.2-5.9-3-.4-6-.7-9.1-1.1h-10c-.8.1-1.6.3-2.5.3-8.2.4-16.3 1.4-24.2 3.5-5.1 1.3-10 3.2-15 4.9-3 1-4.5 3.2-4.4 6.5.1 2.8-.1 5.6 0 8.3.1 4.1 1.8 5.2 5.7 4.1 6.5-1.7 13.1-3.5 19.7-4.8 10.3-1.9 20.7-2.7 31.1-1.2 5.4.8 10.5 2.4 14.1 7 3.1 4 4.2 8.8 4.4 13.7.3 6.9.2 13.9.3 20.8 0 .4-.1.7-.2 1.2-.4 0-.8 0-1.1-.1-8.8-2.1-17.7-3.6-26.8-4.1-9.5-.5-18.9.1-27.9 3.2-10.8 3.8-19.5 10.3-24.6 20.8-4.1 8.3-4.6 17-3.4 25.8zM98.7 106.9v175.3c0 .8 0 1.7.1 2.5.2 2.5 1.7 4.1 4.1 4.2 5.9.1 11.8.1 17.7 0 2.5 0 4-1.7 4.1-4.1.1-.8.1-1.7.1-2.5v-60.7c.9.7 1.4 1.2 1.9 1.6 15 12.5 32.2 16.6 51.1 12.9 17.1-3.4 28.9-13.9 36.7-29.2 5.8-11.6 8.3-24.1 8.7-37 .5-14.3-1-28.4-6.8-41.7-7.1-16.4-18.9-27.3-36.7-30.9-2.7-.6-5.5-.8-8.2-1.2h-7c-1.2.2-2.4.3-3.6.5-11.7 1.4-22.3 5.8-31.8 12.7-2 1.4-3.9 3-5.9 4.5-.1-.5-.3-.8-.4-1.2-.4-2.3-.7-4.6-1.1-6.9-.6-3.9-2.5-5.5-6.4-5.6h-9.7c-5.9-.1-6.9 1-6.9 6.8zM493.6 339c-2.7-.7-5.1 0-7.6 1-43.9 18.4-89.5 30.2-136.8 35.8-14.5 1.7-29.1 2.8-43.7 3.2-26.6.7-53.2-.8-79.6-4.3-17.8-2.4-35.5-5.7-53-9.9-37-8.9-72.7-21.7-106.7-38.8-8.8-4.4-17.4-9.3-26.1-14-3.8-2.1-6.2-1.5-8.2 2.1v1.7c1.2 1.6 2.2 3.4 3.7 4.8 36 32.2 76.6 56.5 122 72.9 21.9 7.9 44.4 13.7 67.3 17.5 14 2.3 28 3.8 42.2 4.5 3 .1 6 .2 9 .4.7 0 1.4.2 2.1.3h17.7c.7-.1 1.4-.3 2.1-.3 14.9-.4 29.8-1.8 44.6-4 21.4-3.2 42.4-8.1 62.9-14.7 29.6-9.6 57.7-22.4 83.4-40.1 2.8-1.9 5.7-3.8 8-6.2 4.3-4.4 2.3-10.4-3.3-11.9zm50.4-27.7c-.8-4.2-4-5.8-7.6-7-5.7-1.9-11.6-2.8-17.6-3.3-11-.9-22-.4-32.8 1.6-12 2.2-23.4 6.1-33.5 13.1-1.2.8-2.4 1.8-3.1 3-.6.9-.7 2.3-.5 3.4.3 1.3 1.7 1.6 3 1.5.6 0 1.2 0 1.8-.1l19.5-2.1c9.6-.9 19.2-1.5 28.8-.8 4.1.3 8.1 1.2 12 2.2 4.3 1.1 6.2 4.4 6.4 8.7.3 6.7-1.2 13.1-2.9 19.5-3.5 12.9-8.3 25.4-13.3 37.8-.3.8-.7 1.7-.8 2.5-.4 2.5 1 4 3.4 3.5 1.4-.3 3-1.1 4-2.1 3.7-3.6 7.5-7.2 10.6-11.2 10.7-13.8 17-29.6 20.7-46.6.7-3 1.2-6.1 1.7-9.1.2-4.7.2-9.6.2-14.5z"], + "cc-amex": [576, 512, [], "f1f3", "M576 255.4c-37.9-.2-44.2-.9-54.5 5v-5c-45.3 0-53.5-1.7-64.9 5.2v-5.2h-78.2v5.1c-11.4-6.5-21.4-5.1-75.7-5.1v5.6c-6.3-3.7-14.5-5.6-24.3-5.6h-58c-3.5 3.8-12.5 13.7-15.7 17.2-12.7-14.1-10.5-11.6-15.5-17.2h-83.1v92.3h82c3.3-3.5 12.9-13.9 16.1-17.4 12.7 14.3 10.3 11.7 15.4 17.4h48.9c0-14.7.1-8.3.1-23 11.5.2 24.3-.2 34.3-6.2 0 13.9-.1 17.1-.1 29.2h39.6c0-18.5.1-7.4.1-25.3 6.2 0 7.7 0 9.4.1.1 1.3 0 0 0 25.2 152.8 0 145.9 1.1 156.7-4.5v4.5c34.8 0 54.8 2.2 67.5-6.1V432c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V228.3h26.6c4.2-10.1 2.2-5.3 6.4-15.3h19.2c4.2 10 2.2 5.2 6.4 15.3h52.9v-11.4c2.2 5 1.1 2.5 5.1 11.4h29.5c2.4-5.5 2.6-5.8 5.1-11.4v11.4h135.5v-25.1c6.4 0 8-.1 9.8.2 0 0-.2 10.9.1 24.8h66.5v-8.9c7.4 5.9 17.4 8.9 29.7 8.9h26.8c4.2-10.1 2.2-5.3 6.4-15.3h19c6.5 15 .2.5 6.6 15.3h52.8v-21.9c11.8 19.7 7.8 12.9 13.2 21.9h41.6v-92h-39.9v18.4c-12.2-20.2-6.3-10.4-11.2-18.4h-43.3v20.6c-6.2-14.6-4.6-10.8-8.8-20.6h-32.4c-.4 0-2.3.2-2.3-.3h-27.6c-12.8 0-23.1 3.2-30.7 9.3v-9.3h-39.9v5.3c-10.8-6.1-20.7-5.1-64.4-5.3-.1 0-11.6-.1-11.6 0h-103c-2.5 6.1-6.8 16.4-12.6 30-2.8-6-11-23.8-13.9-30h-46V157c-7.4-17.4-4.7-11-9-21.1H22.9c-3.4 7.9-13.7 32-23.1 53.9V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48v175.4zm-186.6-80.6c-.3.2-1.4 2.2-1.4 7.6 0 6 .9 7.7 1.1 7.9.2.1 1.1.5 3.4.5l7.3-16.9c-1.1 0-2.1-.1-3.1-.1-5.6 0-7 .7-7.3 1zm-19.9 130.9c9.2 3.3 11 9.5 11 18.4l-.1 13.8h-16.6l.1-11.5c0-11.8-3.8-13.8-14.8-13.8h-17.6l-.1 25.3h-16.6l.1-69.3h39.4c13 0 27.1 2.3 27.1 18.7-.1 7.6-4.2 15.3-11.9 18.4zm-6.3-15.4c0-6.4-5.6-7.4-10.7-7.4h-21v15.6h20.7c5.6 0 11-1.3 11-8.2zm181.7-7.1H575v-14.6h-32.9c-12.8 0-23.8 6.6-23.8 20.7 0 33 42.7 12.8 42.7 27.4 0 5.1-4.3 6.4-8.4 6.4h-32l-.1 14.8h32c8.4 0 17.6-1.8 22.5-8.9v-25.8c-10.5-13.8-39.3-1.3-39.3-13.5 0-5.8 4.6-6.5 9.2-6.5zm-99.2-.3v-14.3h-55.2l-.1 69.3h55.2l.1-14.3-38.6-.3v-13.8H445v-14.1h-37.8v-12.5h38.5zm42.2 40.1h-32.2l-.1 14.8h32.2c14.8 0 26.2-5.6 26.2-22 0-33.2-42.9-11.2-42.9-26.3 0-5.6 4.9-6.4 9.2-6.4h30.4v-14.6h-33.2c-12.8 0-23.5 6.6-23.5 20.7 0 33 42.7 12.5 42.7 27.4-.1 5.4-4.7 6.4-8.8 6.4zm-78.1-158.7c-17.4-.3-33.2-4.1-33.2 19.7 0 11.8 2.8 19.9 16.1 19.9h7.4l23.5-54.5h24.8l27.9 65.4v-65.4h25.3l29.1 48.1v-48.1h16.9v69H524l-31.2-51.9v51.9h-33.7l-6.6-15.3h-34.3l-6.4 15.3h-19.2c-22.8 0-33-11.8-33-34 0-23.3 10.5-35.3 34-35.3h16.1v15.2zm14.3 24.5h22.8l-11.2-27.6-11.6 27.6zm-72.6-39.6h-16.9v69.3h16.9v-69.3zm-38.1 37.3c9.5 3.3 11 9.2 11 18.4v13.5h-16.6c-.3-14.8 3.6-25.1-14.8-25.1h-18v25.1h-16.4v-69.3l39.1.3c13.3 0 27.4 2 27.4 18.4.1 8-4.3 15.7-11.7 18.7zm-6.7-15.3c0-6.4-5.6-7.4-10.7-7.4h-21v15.3h20.7c5.7 0 11-1.3 11-7.9zm-59.5-7.4v-14.6h-55.5v69.3h55.5v-14.3h-38.9v-13.8h37.8v-14.1h-37.8v-12.5h38.9zm-84.6 54.7v-54.2l-24 54.2H124l-24-54.2v54.2H66.2l-6.4-15.3H25.3l-6.4 15.3H1l29.7-69.3h24.5l28.1 65.7v-65.7h27.1l21.7 47 19.7-47h27.6v69.3h-16.8zM53.9 188.8l-11.5-27.6-11.2 27.6h22.7zm253 102.5c0 27.9-30.4 23.3-49.3 23.3l-.1 23.3h-32.2l-20.4-23-21.3 23h-65.4l.1-69.3h66.5l20.5 22.8 21-22.8H279c15.6 0 27.9 5.4 27.9 22.7zm-112.7 11.8l-17.9-20.2h-41.7v12.5h36.3v14.1h-36.3v13.8h40.6l19-20.2zM241 276l-25.3 27.4 25.3 28.1V276zm48.3 15.3c0-6.1-4.6-8.4-10.2-8.4h-21.5v17.6h21.2c5.9 0 10.5-2.8 10.5-9.2z"], + "cc-apple-pay": [576, 512, [], "f416", "M302.2 218.4c0 17.2-10.5 27.1-29 27.1h-24.3v-54.2h24.4c18.4 0 28.9 9.8 28.9 27.1zm47.5 62.6c0 8.3 7.2 13.7 18.5 13.7 14.4 0 25.2-9.1 25.2-21.9v-7.7l-23.5 1.5c-13.3.9-20.2 5.8-20.2 14.4zM576 79v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM127.8 197.2c8.4.7 16.8-4.2 22.1-10.4 5.2-6.4 8.6-15 7.7-23.7-7.4.3-16.6 4.9-21.9 11.3-4.8 5.5-8.9 14.4-7.9 22.8zm60.6 74.5c-.2-.2-19.6-7.6-19.8-30-.2-18.7 15.3-27.7 16-28.2-8.8-13-22.4-14.4-27.1-14.7-12.2-.7-22.6 6.9-28.4 6.9-5.9 0-14.7-6.6-24.3-6.4-12.5.2-24.2 7.3-30.5 18.6-13.1 22.6-3.4 56 9.3 74.4 6.2 9.1 13.7 19.1 23.5 18.7 9.3-.4 13-6 24.2-6 11.3 0 14.5 6 24.3 5.9 10.2-.2 16.5-9.1 22.8-18.2 6.9-10.4 9.8-20.4 10-21zm135.4-53.4c0-26.6-18.5-44.8-44.9-44.8h-51.2v136.4h21.2v-46.6h29.3c26.8 0 45.6-18.4 45.6-45zm90 23.7c0-19.7-15.8-32.4-40-32.4-22.5 0-39.1 12.9-39.7 30.5h19.1c1.6-8.4 9.4-13.9 20-13.9 13 0 20.2 6 20.2 17.2v7.5l-26.4 1.6c-24.6 1.5-37.9 11.6-37.9 29.1 0 17.7 13.7 29.4 33.4 29.4 13.3 0 25.6-6.7 31.2-17.4h.4V310h19.6v-68zM516 210.9h-21.5l-24.9 80.6h-.4l-24.9-80.6H422l35.9 99.3-1.9 6c-3.2 10.2-8.5 14.2-17.9 14.2-1.7 0-4.9-.2-6.2-.3v16.4c1.2.4 6.5.5 8.1.5 20.7 0 30.4-7.9 38.9-31.8L516 210.9z"], + "cc-diners-club": [576, 512, [], "f24c", "M239.7 79.9c-96.9 0-175.8 78.6-175.8 175.8 0 96.9 78.9 175.8 175.8 175.8 97.2 0 175.8-78.9 175.8-175.8 0-97.2-78.6-175.8-175.8-175.8zm-39.9 279.6c-41.7-15.9-71.4-56.4-71.4-103.8s29.7-87.9 71.4-104.1v207.9zm79.8.3V151.6c41.7 16.2 71.4 56.7 71.4 104.1s-29.7 87.9-71.4 104.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM329.7 448h-90.3c-106.2 0-193.8-85.5-193.8-190.2C45.6 143.2 133.2 64 239.4 64h90.3c105 0 200.7 79.2 200.7 193.8 0 104.7-95.7 190.2-200.7 190.2z"], + "cc-discover": [576, 512, [], "f1f2", "M83 212.1c0 7.9-3.2 15.5-8.9 20.7-4.9 4.4-11.6 6.4-21.9 6.4H48V185h4.2c10.3 0 16.7 1.7 21.9 6.6 5.7 5 8.9 12.6 8.9 20.5zM504.8 184h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8 0-7.9-5.5-12.1-15.6-12.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM428 253h45.3v-13.8H444V217h28.3v-13.8H444V185h29.3v-14H428v82zm-86.2-82l35 84.2h8.6l35.5-84.2h-17.5l-22.2 55.2-21.9-55.2h-17.5zm-83 41.6c0 24.6 19.9 44.6 44.6 44.6 24.6 0 44.6-19.9 44.6-44.6 0-24.6-19.9-44.6-44.6-44.6-24.6 0-44.6 19.9-44.6 44.6zm-68-.5c0 32.5 33.6 52.5 63.3 38.2v-19c-19.3 19.3-46.8 5.8-46.8-19.2 0-23.7 26.7-39.1 46.8-19v-19c-30.2-15-63.3 6.8-63.3 38zm-33.9 28.3c-7.6 0-13.8-3.7-17.5-10.8l-10.3 9.9c17.8 26.1 56.6 18.2 56.6-11.3 0-13.1-5.4-19-23.6-25.6-9.6-3.4-12.3-5.9-12.3-10.3 0-8.7 14.5-14.1 24.9-2.5l8.4-10.8c-19.1-17.1-49.7-8.9-49.7 14.3 0 11.3 5.2 17.2 20.2 22.7 25.7 9.1 14.7 24.4 3.3 24.4zm-57.4-28.3c0-24.1-18-41.1-44.1-41.1H32v82h23.4c30.9 0 44.1-22.4 44.1-40.9zm23.4-41.1h-16v82h16v-82zM544 288c-33.3 20.8-226.4 124.4-416 160h401c8.2 0 15-6.8 15-15V288zm0-35l-25.9-34.5c12.1-2.5 18.7-10.6 18.7-23.2 0-28.5-30.3-24.4-52.9-24.4v82h16v-32.8h2.2l22.2 32.8H544z"], + "cc-jcb": [576, 512, [], "f24b", "M431.5 244.3V212c41.2 0 38.5.2 38.5.2 7.3 1.3 13.3 7.3 13.3 16 0 8.8-6 14.5-13.3 15.8-1.2.4-3.3.3-38.5.3zm42.8 20.2c-2.8-.7-3.3-.5-42.8-.5v35c39.6 0 40 .2 42.8-.5 7.5-1.5 13.5-8 13.5-17 0-8.7-6-15.5-13.5-17zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM182 192.3h-57c0 67.1 10.7 109.7-35.8 109.7-19.5 0-38.8-5.7-57.2-14.8v28c30 8.3 68 8.3 68 8.3 97.9 0 82-47.7 82-131.2zm178.5 4.5c-63.4-16-165-14.9-165 59.3 0 77.1 108.2 73.6 165 59.2V287C312.9 311.7 253 309 253 256s59.8-55.6 107.5-31.2v-28zM544 286.5c0-18.5-16.5-30.5-38-32v-.8c19.5-2.7 30.3-15.5 30.3-30.2 0-19-15.7-30-37-31 0 0 6.3-.3-120.3-.3v127.5h122.7c24.3.1 42.3-12.9 42.3-33.2z"], + "cc-mastercard": [576, 512, [], "f1f1", "M482.9 410.3c0 6.8-4.6 11.7-11.2 11.7-6.8 0-11.2-5.2-11.2-11.7 0-6.5 4.4-11.7 11.2-11.7 6.6 0 11.2 5.2 11.2 11.7zm-310.8-11.7c-7.1 0-11.2 5.2-11.2 11.7 0 6.5 4.1 11.7 11.2 11.7 6.5 0 10.9-4.9 10.9-11.7-.1-6.5-4.4-11.7-10.9-11.7zm117.5-.3c-5.4 0-8.7 3.5-9.5 8.7h19.1c-.9-5.7-4.4-8.7-9.6-8.7zm107.8.3c-6.8 0-10.9 5.2-10.9 11.7 0 6.5 4.1 11.7 10.9 11.7 6.8 0 11.2-4.9 11.2-11.7 0-6.5-4.4-11.7-11.2-11.7zm105.9 26.1c0 .3.3.5.3 1.1 0 .3-.3.5-.3 1.1-.3.3-.3.5-.5.8-.3.3-.5.5-1.1.5-.3.3-.5.3-1.1.3-.3 0-.5 0-1.1-.3-.3 0-.5-.3-.8-.5-.3-.3-.5-.5-.5-.8-.3-.5-.3-.8-.3-1.1 0-.5 0-.8.3-1.1 0-.5.3-.8.5-1.1.3-.3.5-.3.8-.5.5-.3.8-.3 1.1-.3.5 0 .8 0 1.1.3.5.3.8.3 1.1.5s.2.6.5 1.1zm-2.2 1.4c.5 0 .5-.3.8-.3.3-.3.3-.5.3-.8 0-.3 0-.5-.3-.8-.3 0-.5-.3-1.1-.3h-1.6v3.5h.8V426h.3l1.1 1.4h.8l-1.1-1.3zM576 81v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V81c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM64 220.6c0 76.5 62.1 138.5 138.5 138.5 27.2 0 53.9-8.2 76.5-23.1-72.9-59.3-72.4-171.2 0-230.5-22.6-15-49.3-23.1-76.5-23.1-76.4-.1-138.5 62-138.5 138.2zm224 108.8c70.5-55 70.2-162.2 0-217.5-70.2 55.3-70.5 162.6 0 217.5zm-142.3 76.3c0-8.7-5.7-14.4-14.7-14.7-4.6 0-9.5 1.4-12.8 6.5-2.4-4.1-6.5-6.5-12.2-6.5-3.8 0-7.6 1.4-10.6 5.4V392h-8.2v36.7h8.2c0-18.9-2.5-30.2 9-30.2 10.2 0 8.2 10.2 8.2 30.2h7.9c0-18.3-2.5-30.2 9-30.2 10.2 0 8.2 10 8.2 30.2h8.2v-23zm44.9-13.7h-7.9v4.4c-2.7-3.3-6.5-5.4-11.7-5.4-10.3 0-18.2 8.2-18.2 19.3 0 11.2 7.9 19.3 18.2 19.3 5.2 0 9-1.9 11.7-5.4v4.6h7.9V392zm40.5 25.6c0-15-22.9-8.2-22.9-15.2 0-5.7 11.9-4.8 18.5-1.1l3.3-6.5c-9.4-6.1-30.2-6-30.2 8.2 0 14.3 22.9 8.3 22.9 15 0 6.3-13.5 5.8-20.7.8l-3.5 6.3c11.2 7.6 32.6 6 32.6-7.5zm35.4 9.3l-2.2-6.8c-3.8 2.1-12.2 4.4-12.2-4.1v-16.6h13.1V392h-13.1v-11.2h-8.2V392h-7.6v7.3h7.6V416c0 17.6 17.3 14.4 22.6 10.9zm13.3-13.4h27.5c0-16.2-7.4-22.6-17.4-22.6-10.6 0-18.2 7.9-18.2 19.3 0 20.5 22.6 23.9 33.8 14.2l-3.8-6c-7.8 6.4-19.6 5.8-21.9-4.9zm59.1-21.5c-4.6-2-11.6-1.8-15.2 4.4V392h-8.2v36.7h8.2V408c0-11.6 9.5-10.1 12.8-8.4l2.4-7.6zm10.6 18.3c0-11.4 11.6-15.1 20.7-8.4l3.8-6.5c-11.6-9.1-32.7-4.1-32.7 15 0 19.8 22.4 23.8 32.7 15l-3.8-6.5c-9.2 6.5-20.7 2.6-20.7-8.6zm66.7-18.3H408v4.4c-8.3-11-29.9-4.8-29.9 13.9 0 19.2 22.4 24.7 29.9 13.9v4.6h8.2V392zm33.7 0c-2.4-1.2-11-2.9-15.2 4.4V392h-7.9v36.7h7.9V408c0-11 9-10.3 12.8-8.4l2.4-7.6zm40.3-14.9h-7.9v19.3c-8.2-10.9-29.9-5.1-29.9 13.9 0 19.4 22.5 24.6 29.9 13.9v4.6h7.9v-51.7zm7.6-75.1v4.6h.8V302h1.9v-.8h-4.6v.8h1.9zm6.6 123.8c0-.5 0-1.1-.3-1.6-.3-.3-.5-.8-.8-1.1-.3-.3-.8-.5-1.1-.8-.5 0-1.1-.3-1.6-.3-.3 0-.8.3-1.4.3-.5.3-.8.5-1.1.8-.5.3-.8.8-.8 1.1-.3.5-.3 1.1-.3 1.6 0 .3 0 .8.3 1.4 0 .3.3.8.8 1.1.3.3.5.5 1.1.8.5.3 1.1.3 1.4.3.5 0 1.1 0 1.6-.3.3-.3.8-.5 1.1-.8.3-.3.5-.8.8-1.1.3-.6.3-1.1.3-1.4zm3.2-124.7h-1.4l-1.6 3.5-1.6-3.5h-1.4v5.4h.8v-4.1l1.6 3.5h1.1l1.4-3.5v4.1h1.1v-5.4zm4.4-80.5c0-76.2-62.1-138.3-138.5-138.3-27.2 0-53.9 8.2-76.5 23.1 72.1 59.3 73.2 171.5 0 230.5 22.6 15 49.5 23.1 76.5 23.1 76.4.1 138.5-61.9 138.5-138.4z"], + "cc-paypal": [576, 512, [], "f1f4", "M186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5z"], + "cc-stripe": [576, 512, [], "f1f5", "M396.9 256.5c0 19.1-8.8 33.4-21.9 33.4-8.3 0-13.3-3-16.8-6.7l-.2-52.8c3.7-4.1 8.8-7 17-7 12.9-.1 21.9 14.5 21.9 33.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM122.2 281.1c0-42.3-54.3-34.7-54.3-50.7 0-5.5 4.6-7.7 12.1-7.7 10.8 0 24.5 3.3 35.3 9.1v-33.4c-11.8-4.7-23.5-6.5-35.3-6.5-28.8 0-48 15-48 40.2 0 39.3 54 32.9 54 49.9 0 6.6-5.7 8.7-13.6 8.7-11.8 0-26.9-4.9-38.9-11.3v33.9c13.2 5.7 26.6 8.1 38.8 8.1 29.6-.2 49.9-14.7 49.9-40.3zm68.9-86.9h-27v-30.8l-34.7 7.4-.2 113.9c0 21 15.8 36.5 36.9 36.5 11.6 0 20.2-2.1 24.9-4.7v-28.9c-4.5 1.8-27 8.3-27-12.6v-50.5h27v-30.3zm73.8 0c-4.7-1.7-21.3-4.8-29.6 10.5l-2.2-10.5h-30.7v124.5h35.5v-84.4c8.4-11 22.6-8.9 27.1-7.4v-32.7zm44.2 0h-35.7v124.5h35.7V194.2zm0-47.3l-35.7 7.6v28.9l35.7-7.6v-28.9zm122.7 108.8c0-41.3-23.5-63.8-48.4-63.8-13.9 0-22.9 6.6-27.8 11.1l-1.8-8.8h-31.3V360l35.5-7.5.1-40.2c5.1 3.7 12.7 9 25.1 9 25.4-.1 48.6-20.5 48.6-65.6zm112.2 1.2c0-36.4-17.6-65.1-51.3-65.1-33.8 0-54.3 28.7-54.3 64.9 0 42.8 24.2 64.5 58.8 64.5 17 0 29.7-3.9 39.4-9.2v-28.6c-9.7 4.9-20.8 7.9-34.9 7.9-13.8 0-26-4.9-27.6-21.5h69.5c.1-2 .4-9.4.4-12.9zm-51.6-36.1c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7z"], + "cc-visa": [576, 512, [], "f1f0", "M470.1 231.3s7.6 37.2 9.3 45H446c3.3-8.9 16-43.5 16-43.5-.2.3 3.3-9.1 5.3-14.9l2.8 13.4zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM152.5 331.2L215.7 176h-42.5l-39.3 106-4.3-21.5-14-71.4c-2.3-9.9-9.4-12.7-18.2-13.1H32.7l-.7 3.1c15.8 4 29.9 9.8 42.2 17.1l35.8 135h42.5zm94.4.2L272.1 176h-40.2l-25.1 155.4h40.1zm139.9-50.8c.2-17.7-10.6-31.2-33.7-42.3-14.1-7.1-22.7-11.9-22.7-19.2.2-6.6 7.3-13.4 23.1-13.4 13.1-.3 22.7 2.8 29.9 5.9l3.6 1.7 5.5-33.6c-7.9-3.1-20.5-6.6-36-6.6-39.7 0-67.6 21.2-67.8 51.4-.3 22.3 20 34.7 35.2 42.2 15.5 7.6 20.8 12.6 20.8 19.3-.2 10.4-12.6 15.2-24.1 15.2-16 0-24.6-2.5-37.7-8.3l-5.3-2.5-5.6 34.9c9.4 4.3 26.8 8.1 44.8 8.3 42.2.1 69.7-20.8 70-53zM528 331.4L495.6 176h-31.1c-9.6 0-16.9 2.8-21 12.9l-59.7 142.5H426s6.9-19.2 8.4-23.3H486c1.2 5.5 4.8 23.3 4.8 23.3H528z"], + "centercode": [512, 512, [], "f380", "M329.2 268.6c-3.8 35.2-35.4 60.6-70.6 56.8-35.2-3.8-60.6-35.4-56.8-70.6 3.8-35.2 35.4-60.6 70.6-56.8 35.1 3.8 60.6 35.4 56.8 70.6zm-85.8 235.1C96.7 496-8.2 365.5 10.1 224.3c11.2-86.6 65.8-156.9 139.1-192 161-77.1 349.7 37.4 354.7 216.6 4.1 147-118.4 262.2-260.5 254.8zm179.9-180c27.9-118-160.5-205.9-237.2-234.2-57.5 56.3-69.1 188.6-33.8 344.4 68.8 15.8 169.1-26.4 271-110.2z"], + "chrome": [496, 512, [], "f268", "M131.5 217.5L55.1 100.1c47.6-59.2 119-91.8 192-92.1 42.3-.3 85.5 10.5 124.8 33.2 43.4 25.2 76.4 61.4 97.4 103L264 133.4c-58.1-3.4-113.4 29.3-132.5 84.1zm32.9 38.5c0 46.2 37.4 83.6 83.6 83.6s83.6-37.4 83.6-83.6-37.4-83.6-83.6-83.6-83.6 37.3-83.6 83.6zm314.9-89.2L339.6 174c37.9 44.3 38.5 108.2 6.6 157.2L234.1 503.6c46.5 2.5 94.4-7.7 137.8-32.9 107.4-62 150.9-192 107.4-303.9zM133.7 303.6L40.4 120.1C14.9 159.1 0 205.9 0 256c0 124 90.8 226.7 209.5 244.9l63.7-124.8c-57.6 10.8-113.2-20.8-139.5-72.5z"], + "cloudscale": [448, 512, [], "f383", "M318.1 154l-9.4 7.6c-22.5-19.3-51.5-33.6-83.3-33.6C153.8 128 96 188.8 96 260.3c0 6.6.4 13.1 1.4 19.4-2-56 41.8-97.4 92.6-97.4 24.2 0 46.2 9.4 62.6 24.7l-25.2 20.4c-8.3-.9-16.8 1.8-23.1 8.1-11.1 11-11.1 28.9 0 40 11.1 11 28.9 11 40 0 6.3-6.3 9-14.9 8.1-23.1l75.2-88.8c6.3-6.5-3.3-15.9-9.5-9.6zm-83.8 111.5c-5.6 5.5-14.6 5.5-20.2 0-5.6-5.6-5.6-14.6 0-20.2s14.6-5.6 20.2 0 5.6 14.7 0 20.2zM224 32C100.5 32 0 132.5 0 256s100.5 224 224 224 224-100.5 224-224S347.5 32 224 32zm0 384c-88.2 0-160-71.8-160-160S135.8 96 224 96s160 71.8 160 160-71.8 160-160 160z"], + "cloudsmith": [332, 512, [], "f384", "M332.5 419.9c0 46.4-37.6 84.1-84 84.1s-84-37.7-84-84.1 37.6-84 84-84 84 37.6 84 84zm-84-243.9c46.4 0 80-37.6 80-84s-33.6-84-80-84-88 37.6-88 84-29.6 76-76 76-84 41.6-84 88 37.6 80 84 80 84-33.6 84-80 33.6-80 80-80z"], + "cloudversify": [616, 512, [], "f385", "M148.6 304c8.2 68.5 67.4 115.5 146 111.3 51.2 43.3 136.8 45.8 186.4-5.6 69.2 1.1 118.5-44.6 131.5-99.5 14.8-62.5-18.2-132.5-92.1-155.1-33-88.1-131.4-101.5-186.5-85-57.3 17.3-84.3 53.2-99.3 109.7-7.8 2.7-26.5 8.9-45 24.1 11.7 0 15.2 8.9 15.2 19.5v20.4c0 10.7-8.7 19.5-19.5 19.5h-20.2c-10.7 0-19.5-6-19.5-16.7V240H98.8C95 240 88 244.3 88 251.9v40.4c0 6.4 5.3 11.8 11.7 11.8h48.9zm227.4 8c-10.7 46.3 21.7 72.4 55.3 86.8C324.1 432.6 259.7 348 296 288c-33.2 21.6-33.7 71.2-29.2 92.9-17.9-12.4-53.8-32.4-57.4-79.8-3-39.9 21.5-75.7 57-93.9C297 191.4 369.9 198.7 400 248c-14.1-48-53.8-70.1-101.8-74.8 30.9-30.7 64.4-50.3 114.2-43.7 69.8 9.3 133.2 82.8 67.7 150.5 35-16.3 48.7-54.4 47.5-76.9l10.5 19.6c11.8 22 15.2 47.6 9.4 72-9.2 39-40.6 68.8-79.7 76.5-32.1 6.3-83.1-5.1-91.8-59.2zM128 208H88.2c-8.9 0-16.2-7.3-16.2-16.2v-39.6c0-8.9 7.3-16.2 16.2-16.2H128c8.9 0 16.2 7.3 16.2 16.2v39.6c0 8.9-7.3 16.2-16.2 16.2zM10.1 168C4.5 168 0 163.5 0 157.9v-27.8c0-5.6 4.5-10.1 10.1-10.1h27.7c5.5 0 10.1 4.5 10.1 10.1v27.8c0 5.6-4.5 10.1-10.1 10.1H10.1zM168 142.7v-21.4c0-5.1 4.2-9.3 9.3-9.3h21.4c5.1 0 9.3 4.2 9.3 9.3v21.4c0 5.1-4.2 9.3-9.3 9.3h-21.4c-5.1 0-9.3-4.2-9.3-9.3zM56 235.5v25c0 6.3-5.1 11.5-11.4 11.5H19.4C13.1 272 8 266.8 8 260.5v-25c0-6.3 5.1-11.5 11.4-11.5h25.1c6.4 0 11.5 5.2 11.5 11.5z"], + "codepen": [512, 512, [], "f1cb", "M502.285 159.704l-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285zM278 63.131l172.286 114.858-76.857 51.429L278 165.703V63.131zm-44 0v102.572l-95.429 63.715-76.857-51.429L234 63.131zM44 219.132l55.143 36.857L44 292.846v-73.714zm190 229.715L61.714 333.989l76.857-51.429L234 346.275v102.572zm22-140.858l-77.715-52 77.715-52 77.715 52-77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429L278 448.847zm190-156.001l-55.143-36.857L468 219.132v73.714z"], + "codiepie": [472, 512, [], "f284", "M422.5 202.9c30.7 0 33.5 53.1-.3 53.1h-10.8v44.3h-26.6v-97.4h37.7zM472 352.6C429.9 444.5 350.4 504 248 504 111 504 0 393 0 256S111 8 248 8c97.4 0 172.8 53.7 218.2 138.4l-186 108.8L472 352.6zm-38.5 12.5l-60.3-30.7c-27.1 44.3-70.4 71.4-122.4 71.4-82.5 0-149.2-66.7-149.2-148.9 0-82.5 66.7-149.2 149.2-149.2 48.4 0 88.9 23.5 116.9 63.4l59.5-34.6c-40.7-62.6-104.7-100-179.2-100-121.2 0-219.5 98.3-219.5 219.5S126.8 475.5 248 475.5c78.6 0 146.5-42.1 185.5-110.4z"], + "connectdevelop": [576, 512, [], "f20e", "M550.5 241l-50.089-86.786c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.733-14.732-15.001l-55.447-95.893c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.268-15.268-15.268-4.821 0-8.839 2.143-11.786 5.625H299.518C296.839 18.143 292.821 16 288 16s-8.839 2.143-11.518 5.625H170.411C167.464 18.143 163.447 16 158.625 16c-8.303 0-15.268 6.696-15.268 15.268 0 1.607.536 3.482 1.072 4.821l-55.983 97.233c-5.356 2.41-9.107 7.5-9.107 13.661 0 .535.268 1.071.268 1.607l-53.304 92.143c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.393 12.054 15l55.179 95.358c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.393 12.054 14.732l51.697 89.732c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.268 15.268 15.268 4.821 0 8.839-2.143 11.518-5.357h106.875C279.161 493.857 283.447 496 288 496s8.839-2.143 11.518-5.357h107.143c2.678 2.946 6.696 4.821 10.982 4.821 8.571 0 15.268-6.964 15.268-15.268 0-1.607-.267-2.946-.803-4.285l51.697-90.268c6.964-1.339 12.054-7.5 12.054-14.732 0-1.607-.268-3.214-.804-4.821l54.911-95.358c6.964-1.339 12.322-7.5 12.322-15-.002-7.232-5.092-13.393-11.788-14.732zM153.535 450.732l-43.66-75.803h43.66v75.803zm0-83.839h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.999-47.41v50.624zm0-62.411l-50.357 53.304c-1.339-.536-2.679-1.34-4.018-1.607L43.447 259.75c.535-1.339.535-2.679.535-4.018s0-2.41-.268-3.482l51.965-90c2.679-.268 5.357-1.072 7.768-2.679l50.089 51.965v92.946zm0-102.322l-45.803-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.928-15.804v72.053zm0-80.625l-43.66 15.804 43.66-75.536v59.732zm326.519 39.108l.804 1.339L445.5 329.125l-63.75-67.232 98.036-101.518.268.268zM291.75 355.107l11.518 11.786H280.5l11.25-11.786zm-.268-11.25l-83.303-85.446 79.553-84.375 83.036 87.589-79.286 82.232zm5.357 5.893l79.286-82.232 67.5 71.25-5.892 28.125H313.714l-16.875-17.143zM410.411 44.393c1.071.536 2.142 1.072 3.482 1.34l57.857 100.714v.536c0 2.946.803 5.624 2.143 7.767L376.393 256l-83.035-87.589L410.411 44.393zm-9.107-2.143L287.732 162.518l-57.054-60.268 166.339-60h4.287zm-123.483 0c2.678 2.678 6.16 4.285 10.179 4.285s7.5-1.607 10.179-4.285h75L224.786 95.821 173.893 42.25h103.928zm-116.249 5.625l1.071-2.142a33.834 33.834 0 0 0 2.679-.804l51.161 53.84-54.911 19.821V47.875zm0 79.286l60.803-21.964 59.732 63.214-79.553 84.107-40.982-42.053v-83.304zm0 92.678L198 257.607l-36.428 38.304v-76.072zm0 87.858l42.053-44.464 82.768 85.982-17.143 17.678H161.572v-59.196zm6.964 162.053c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.732h99.91l-91.607 94.821h-1.339zm129.911 0c-2.679-2.41-6.428-4.285-10.447-4.285s-7.767 1.875-10.447 4.285h-96.429l91.607-94.821h38.304l91.607 94.821H298.447zm120-11.786l-4.286 7.5c-1.339.268-2.41.803-3.482 1.339l-89.196-91.875h114.376l-17.412 83.036zm12.856-22.232l12.858-60.803h21.964l-34.822 60.803zm34.822-68.839h-20.357l4.553-21.16 17.143 18.214c-.535.803-1.071 1.874-1.339 2.946zm66.161-107.411l-55.447 96.697c-1.339.535-2.679 1.071-4.018 1.874l-20.625-21.964 34.554-163.928 45.803 79.286c-.267 1.339-.803 2.678-.803 4.285 0 1.339.268 2.411.536 3.75z"], + "contao": [512, 512, [], "f26d", "M45.4 305c14.4 67.1 26.4 129 68.2 175H34c-18.7 0-34-15.2-34-34V66c0-18.7 15.2-34 34-34h57.7C77.9 44.6 65.6 59.2 54.8 75.6c-45.4 70-27 146.8-9.4 229.4zM478 32h-90.2c21.4 21.4 39.2 49.5 52.7 84.1l-137.1 29.3c-14.9-29-37.8-53.3-82.6-43.9-24.6 5.3-41 19.3-48.3 34.6-8.8 18.7-13.2 39.8 8.2 140.3 21.1 100.2 33.7 117.7 49.5 131.2 12.9 11.1 33.4 17 58.3 11.7 44.5-9.4 55.7-40.7 57.4-73.2l137.4-29.6c3.2 71.5-18.7 125.2-57.4 163.6H478c18.7 0 34-15.2 34-34V66c0-18.8-15.2-34-34-34z"], + "cpanel": [640, 512, [], "f388", "M52.9 213.7h40l-6.2 23.6c-1.9 6.5-7.4 10.9-14.3 10.9H53.8c-24.9 0-24.7 37.4 0 37.4h11.3c4.2 0 7.6 3.9 6.4 8.3L64.4 320H52c-33.5 0-59-31.4-50.3-65.2 7.3-27 28.3-41.1 51.2-41.1M73.1 320L108 189.9c1.8-6.4 7.2-10.9 14.3-10.9h37c24.1 0 45.4 16.4 51 41.2 6.6 29.1-14.5 65.3-51.7 65.3h-32l6.4-23.8c1.8-6.2 7.3-10.8 14.3-10.8h10.3c12.4 0 20.8-11.7 18.3-22.6-2.1-9.2-9.9-14.8-18.3-14.8h-19.8L112 309.2c-1.9 6.2-7.4 10.7-14.2 10.7l-24.7.1m220.6-69.4c.3-1 1.9-5.3-2.1-5.3h-57.5c-9.7 0-16.6-8.9-14.2-18.5l3.5-13.4h77.9c18.8 0 33.3 17.6 28.5 36.8l-14 51.8c-2.8 10.6-12.2 17.8-23.4 17.8l-57.5-.2c-42.9 0-38.5-63.8.7-63.8H284l-3.5 13.2c-1.9 6.2-7.4 10.8-14.2 10.8h-21.6c-5.3 0-5.3 7.9 0 7.9h34.9c4.6 0 5.1-3.9 5.5-5.3l8.6-31.8m103.1-36.9c34.4 0 59.3 32.3 50.3 65.4l-8.8 33.1c-1.2 4.9-5.7 7.8-10.3 7.8h-19.1c-4.5 0-7.6-4-6.4-8.3l10.6-40c3.3-11.6-5.6-23.4-18.1-23.4h-19.8l-17.2 64c-1.2 4.8-5.6 7.8-10.4 7.8h-18.9c-4.2 0-7.6-3.9-6.4-8.3l26.2-98h48.3M498 251.6l-8 30c-.9 3.3 1.5 6.7 5.1 6.7h73.3l-5.7 21c-1.9 6.2-7.4 10.7-14.2 10.7h-66.7c-20 0-33.3-19-28.3-36.7l10.8-40c4.8-17.6 20.7-29.6 38.6-29.6h47.3c19 0 33.2 17.7 28.3 36.8l-3.2 12c-2.9 11-12.7 17.6-23.2 17.6h-53.4l3.5-13c1.6-6.2 7.2-10.8 14.2-10.8H538c2 0 3.3-1 3.9-3l.7-2.6c.7-2.7-1.3-5.1-3.9-5.1h-32.9c-4.1 0-6.9 2.1-7.8 6zm70.2 68.4l35.6-133.1c1.2-4.7 5.5-7.9 10.4-7.9h18.9c4.5 0 7.7 4 6.5 8.3l-26.5 98.2c-5.1 20.7-24.2 34.5-44.9 34.5"], + "creative-commons": [496, 512, [], "f25e", "M245.83 214.87l-33.22 17.28c-9.43-19.58-25.24-19.93-27.46-19.93-22.13 0-33.22 14.61-33.22 43.84 0 23.57 9.21 43.84 33.22 43.84 14.47 0 24.65-7.09 30.57-21.26l30.55 15.5c-6.17 11.51-25.69 38.98-65.1 38.98-22.6 0-73.96-10.32-73.96-77.05 0-58.69 43-77.06 72.63-77.06 30.72-.01 52.7 11.95 65.99 35.86zm143.05 0l-32.78 17.28c-9.5-19.77-25.72-19.93-27.9-19.93-22.14 0-33.22 14.61-33.22 43.84 0 23.55 9.23 43.84 33.22 43.84 14.45 0 24.65-7.09 30.54-21.26l31 15.5c-2.1 3.75-21.39 38.98-65.09 38.98-22.69 0-73.96-9.87-73.96-77.05 0-58.67 42.97-77.06 72.63-77.06 30.71-.01 52.58 11.95 65.56 35.86zM247.56 8.05C104.74 8.05 0 123.11 0 256.05c0 138.49 113.6 248 247.56 248 129.93 0 248.44-100.87 248.44-248 0-137.87-106.62-248-248.44-248zm.87 450.81c-112.54 0-203.7-93.04-203.7-202.81 0-105.42 85.43-203.27 203.72-203.27 112.53 0 202.82 89.46 202.82 203.26-.01 121.69-99.68 202.82-202.84 202.82z"], + "creative-commons-by": [496, 512, [], "f4e7", "M314.9 194.4v101.4h-28.3v120.5h-77.1V295.9h-28.3V194.4c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7H299c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3zm-101.5-63.7c0-23.3 11.5-35 34.5-35s34.5 11.7 34.5 35c0 23-11.5 34.5-34.5 34.5s-34.5-11.5-34.5-34.5zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z"], + "creative-commons-nc": [496, 512, [], "f4e8", "M247.6 8C387.4 8 496 115.9 496 256c0 147.2-118.5 248-248.4 248C113.1 504 0 393.2 0 256 0 123.1 104.7 8 247.6 8zM55.8 189.1c-7.4 20.4-11.1 42.7-11.1 66.9 0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4v38.1h-28.8V368c-27.5-.3-52.6-10.2-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4zM248.4 52.3c-38.4 0-112.4 8.7-170.5 93l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3v-38.1h28.8v38.1c22.7 1.2 43.4 8.9 62 23L295 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8z"], + "creative-commons-nc-eu": [496, 512, [], "f4e9", "M247.7 8C103.6 8 0 124.8 0 256c0 136.3 111.7 248 247.7 248C377.9 504 496 403.1 496 256 496 117 388.4 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-23.2 3.7-45.2 10.9-66l65.7 29.1h-4.7v29.5h23.3c0 6.2-.4 3.2-.4 19.5h-22.8v29.5h27c11.4 67 67.2 101.3 124.6 101.3 26.6 0 50.6-7.9 64.8-15.8l-10-46.1c-8.7 4.6-28.2 10.8-47.3 10.8-28.2 0-58.1-10.9-67.3-50.2h90.3l128.3 56.8c-1.5 2.1-56.2 104.3-178.8 104.3zm-16.7-190.6l-.5-.4.9.4h-.4zm77.2-19.5h3.7v-29.5h-70.3l-28.6-12.6c2.5-5.5 5.4-10.5 8.8-14.3 12.9-15.8 31.1-22.4 51.1-22.4 18.3 0 35.3 5.4 46.1 10l11.6-47.3c-15-6.6-37-12.4-62.3-12.4-39 0-72.2 15.8-95.9 42.3-5.3 6.1-9.8 12.9-13.9 20.1l-81.6-36.1c64.6-96.8 157.7-93.6 170.7-93.6 113 0 203 90.2 203 203.4 0 18.7-2.1 36.3-6.3 52.9l-136.1-60.5z"], + "creative-commons-nc-jp": [496, 512, [], "f4ea", "M247.7 8C103.6 8 0 124.8 0 256c0 136.4 111.8 248 247.7 248C377.9 504 496 403.2 496 256 496 117.2 388.5 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-21.1 3-41.2 9-60.3l127 56.5h-27.9v38.6h58.1l5.7 11.8v18.7h-63.8V360h63.8v56h61.7v-56h64.2v-35.7l81 36.1c-1.5 2.2-57.1 98.3-175.2 98.3zm87.6-137.3h-57.6v-18.7l2.9-5.6 54.7 24.3zm6.5-51.4v-17.8h-38.6l63-116H301l-43.4 96-23-10.2-39.6-85.7h-65.8l27.3 51-81.9-36.5c27.8-44.1 82.6-98.1 173.7-98.1 112.8 0 203 90 203 203.4 0 21-2.7 40.6-7.9 59l-101-45.1z"], + "creative-commons-nd": [496, 512, [], "f4eb", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm94 144.3v42.5H162.1V197h180.3zm0 79.8v42.5H162.1v-42.5h180.3z"], + "creative-commons-pd": [496, 512, [], "f4ec", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm0 449.5c-139.2 0-235.8-138-190.2-267.9l78.8 35.1c-2.1 10.5-3.3 21.5-3.3 32.9 0 99 73.9 126.9 120.4 126.9 22.9 0 53.5-6.7 79.4-29.5L297 311.1c-5.5 6.3-17.6 16.7-36.3 16.7-37.8 0-53.7-39.9-53.9-71.9 230.4 102.6 216.5 96.5 217.9 96.8-34.3 62.4-100.6 104.8-176.7 104.8zm194.2-150l-224-100c18.8-34 54.9-30.7 74.7-11l40.4-41.6c-27.1-23.3-58-27.5-78.1-27.5-47.4 0-80.9 20.5-100.7 51.6l-74.9-33.4c36.1-54.9 98.1-91.2 168.5-91.2 111.1 0 201.5 90.4 201.5 201.5 0 18-2.4 35.4-6.8 52-.3-.1-.4-.2-.6-.4z"], + "creative-commons-pd-alt": [496, 512, [], "f4ed", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM135.5 323.3V186h68.2c33.7 0 50.5 15.5 50.5 46.5 0 9-3 46.5-57.1 46.5h-27v44.3h-34.6zm34.1-111.6v41.6h29.2c27.9 0 30-41.6-.9-41.6h-28.3zm93.9 111.6V186h53.2c21.4 0 70 5.2 70 68.6 0 63.5-48.6 68.6-70 68.6h-53.2zm34.1-108.5v79.7h19.9c24 0 34.5-15.3 34.5-39.9 0-42-31.2-39.9-35-39.9l-19.4.1z"], + "creative-commons-remix": [496, 512, [], "f4ee", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm161.7 207.7l4.9 2.2v70c-7.2 3.6-63.4 27.5-67.3 28.8-6.5-1.8-113.7-46.8-137.3-56.2l-64.2 26.6-63.3-27.5v-63.8l59.3-24.8c-.7-.7-.4 5-.4-70.4l67.3-29.7L361 178.5v61.6l49.1 20.3zm-70.4 81.5v-43.8h-.4v-1.8l-113.8-46.5V295l113.8 46.9v-.4l.4.4zm7.5-57.6l39.9-16.4-36.8-15.5-39 16.4 35.9 15.5zm52.3 38.1v-43L355.2 298v43.4l44.3-19z"], + "creative-commons-sa": [496, 512, [], "f4ef", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM137.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97h62.5c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6-33.1 0-51.7 14.6-55.8 43.8h18.2l-49.2 49.2-49-49.2h19.4z"], + "creative-commons-sampling": [496, 512, [], "f4f0", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm3.6 53.2c2.8-.3 11.5 1 11.5 11.5l6.6 107.2 4.9-59.3c0-6 4.7-10.6 10.6-10.6 5.9 0 10.6 4.7 10.6 10.6 0 2.5-.5-5.7 5.7 81.5l5.8-64.2c.3-2.9 2.9-9.3 10.2-9.3 3.8 0 9.9 2.3 10.6 8.9l11.5 96.5 5.3-12.8c1.8-4.4 5.2-6.6 10.2-6.6h58v21.3h-50.9l-18.2 44.3c-3.9 9.9-19.5 9.1-20.8-3.1l-4-31.9-7.5 92.6c-.3 3-3 9.3-10.2 9.3-3 0-9.8-2.1-10.6-9.3 0-1.9.6 5.8-6.2-77.9l-5.3 72.2c-1.1 4.8-4.8 9.3-10.6 9.3-2.9 0-9.8-2-10.6-9.3 0-1.9.5 6.7-5.8-87.7l-5.8 94.8c0 6.3-3.6 12.4-10.6 12.4-5.2 0-10.6-4.1-10.6-12l-5.8-87.7c-5.8 92.5-5.3 84-5.3 85.9-1.1 4.8-4.8 9.3-10.6 9.3-3 0-9.8-2.1-10.6-9.3 0-.7-.4-1.1-.4-2.6l-6.2-88.6L182 348c-.7 6.5-6.7 9.3-10.6 9.3-5.8 0-9.6-4.1-10.6-8.9L149.7 272c-2 4-3.5 8.4-11.1 8.4H87.2v-21.3H132l13.7-27.9c4.4-9.9 18.2-7.2 19.9 2.7l3.1 20.4 8.4-97.9c0-6 4.8-10.6 10.6-10.6.5 0 10.6-.2 10.6 12.4l4.9 69.1 6.6-92.6c0-10.1 9.5-10.6 10.2-10.6.6 0 10.6.7 10.6 10.6l5.3 80.6 6.2-97.9c.1-1.1-.6-10.3 9.9-11.5z"], + "creative-commons-sampling-plus": [496, 512, [], "f4f1", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm107 205.6c-4.7 0-9 2.8-10.7 7.2l-4 9.5-11-92.8c-1.7-13.9-22-13.4-23.1.4l-4.3 51.4-5.2-68.8c-1.1-14.3-22.1-14.2-23.2 0l-3.5 44.9-5.9-94.3c-.9-14.5-22.3-14.4-23.2 0l-5.1 83.7-4.3-66.3c-.9-14.4-22.2-14.4-23.2 0l-5.3 80.2-4.1-57c-1.1-14.3-22-14.3-23.2-.2l-7.7 89.8-1.8-12.2c-1.7-11.4-17.1-13.6-22-3.3l-13.2 27.7H87.5v23.2h51.3c4.4 0 8.4-2.5 10.4-6.4l10.7 73.1c2 13.5 21.9 13 23.1-.7l3.8-43.6 5.7 78.3c1.1 14.4 22.3 14.2 23.2-.1l4.6-70.4 4.8 73.3c.9 14.4 22.3 14.4 23.2-.1l4.9-80.5 4.5 71.8c.9 14.3 22.1 14.5 23.2.2l4.6-58.6 4.9 64.4c1.1 14.3 22 14.2 23.1.1l6.8-83 2.7 22.3c1.4 11.8 17.7 14.1 22.3 3.1l18-43.4h50.5V258l-58.4.3zm-78 5.2h-21.9v21.9c0 4.1-3.3 7.5-7.5 7.5-4.1 0-7.5-3.3-7.5-7.5v-21.9h-21.9c-4.1 0-7.5-3.3-7.5-7.5 0-4.1 3.4-7.5 7.5-7.5h21.9v-21.9c0-4.1 3.4-7.5 7.5-7.5s7.5 3.3 7.5 7.5v21.9h21.9c4.1 0 7.5 3.3 7.5 7.5 0 4.1-3.4 7.5-7.5 7.5z"], + "creative-commons-share": [496, 512, [], "f4f2", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm101 132.4c7.8 0 13.7 6.1 13.7 13.7v182.5c0 7.7-6.1 13.7-13.7 13.7H214.3c-7.7 0-13.7-6-13.7-13.7v-54h-54c-7.8 0-13.7-6-13.7-13.7V131.1c0-8.2 6.6-12.7 12.4-13.7h136.4c7.7 0 13.7 6 13.7 13.7v54h54zM159.9 300.3h40.7V198.9c0-7.4 5.8-12.6 12-13.7h55.8v-40.3H159.9v155.4zm176.2-88.1H227.6v155.4h108.5V212.2z"], + "css3": [512, 512, [], "f13c", "M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z"], + "css3-alt": [384, 512, [], "f38b", "M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z"], + "cuttlefish": [440, 512, [], "f38c", "M344 305.5c-17.5 31.6-57.4 54.5-96 54.5-56.6 0-104-47.4-104-104s47.4-104 104-104c38.6 0 78.5 22.9 96 54.5 13.7-50.9 41.7-93.3 87-117.8C385.7 39.1 320.5 8 248 8 111 8 0 119 0 256s111 248 248 248c72.5 0 137.7-31.1 183-80.7-45.3-24.5-73.3-66.9-87-117.8z"], + "d-and-d": [576, 512, [], "f38d", "M82.5 98.9c-.6-17.2 2-33.8 12.7-48.2.3 7.4 1.2 14.5 4.2 21.6 5.9-27.5 19.7-49.3 42.3-65.5-1.9 5.9-3.5 11.8-3 17.7 8.7-7.4 18.8-17.8 44.4-22.7 14.7-2.8 29.7-2 42.1 1 38.5 9.3 61 34.3 69.7 72.3 5.3 23.1.7 45-8.3 66.4-5.2 12.4-12 24.4-20.7 35.1-2-1.9-3.9-3.8-5.8-5.6-42.8-40.8-26.8-25.2-37.4-37.4-1.1-1.2-1-2.2-.1-3.6 8.3-13.5 11.8-28.2 10-44-1.1-9.8-4.3-18.9-11.3-26.2-14.5-15.3-39.2-15-53.5.6-11.4 12.5-14.1 27.4-10.9 43.6.2 1.3.4 2.7 0 3.9-3.4 13.7-4.6 27.6-2.5 41.6.1.5.1 1.1.1 1.6 0 .3-.1.5-.2 1.1-21.8-11-36-28.3-43.2-52.2-8.3 17.8-11.1 35.5-6.6 54.1-15.6-15.2-21.3-34.3-22-55.2zm469.6 123.2c-11.6-11.6-25-20.4-40.1-26.6-12.8-5.2-26-7.9-39.9-7.1-10 .6-19.6 3.1-29 6.4-2.5.9-5.1 1.6-7.7 2.2-4.9 1.2-7.3-3.1-4.7-6.8 3.2-4.6 3.4-4.2 15-12 .6-.4 1.2-.8 2.2-1.5h-2.5c-.6 0-1.2.2-1.9.3-19.3 3.3-30.7 15.5-48.9 29.6-10.4 8.1-13.8 3.8-12-.5 1.4-3.5 3.3-6.7 5.1-10 1-1.8 2.3-3.4 3.5-5.1-.2-.2-.5-.3-.7-.5-27 18.3-46.7 42.4-57.7 73.3.3.3.7.6 1 .9.3-.6.5-1.2.9-1.7 10.4-12.1 22.8-21.8 36.6-29.8 18.2-10.6 37.5-18.3 58.7-20.2 4.3-.4 8.7-.1 13.1-.1-1.8.7-3.5.9-5.3 1.1-18.5 2.4-35.5 9-51.5 18.5-30.2 17.9-54.5 42.2-75.1 70.4-.3.4-.4.9-.7 1.3 14.5 5.3 24 17.3 36.1 25.6.2-.1.3-.2.4-.4l1.2-2.7c12.2-26.9 27-52.3 46.7-74.5 16.7-18.8 38-25.3 62.5-20 5.9 1.3 11.4 4.4 17.2 6.8 2.3-1.4 5.1-3.2 8-4.7 8.4-4.3 17.4-7 26.7-9 14.7-3.1 29.5-4.9 44.5-1.3v-.5c-.5-.4-1.2-.8-1.7-1.4zM316.7 397.6c-39.4-33-22.8-19.5-42.7-35.6-.8.9 0-.2-1.9 3-11.2 19.1-25.5 35.3-44 47.6-10.3 6.8-21.5 11.8-34.1 11.8-21.6 0-38.2-9.5-49.4-27.8-12-19.5-13.3-40.7-8.2-62.6 7.8-33.8 30.1-55.2 38.6-64.3-18.7-6.2-33 1.7-46.4 13.9.8-13.9 4.3-26.2 11.8-37.3-24.3 10.6-45.9 25-64.8 43.9-.3-5.8 5.4-43.7 5.6-44.7.3-2.7-.6-5.3-3-7.4-24.2 24.7-44.5 51.8-56.1 84.6 7.4-5.9 14.9-11.4 23.6-16.2-8.3 22.3-19.6 52.8-7.8 101.1 4.6 19 11.9 36.8 24.1 52.3 2.9 3.7 6.3 6.9 9.5 10.3.2-.2.4-.3.6-.5-1.4-7-2.2-14.1-1.5-21.9 2.2 3.2 3.9 6 5.9 8.6 12.6 16 28.7 27.4 47.2 35.6 25 11.3 51.1 13.3 77.9 8.6 54.9-9.7 90.7-48.6 116-98.8 1-1.8.6-2.9-.9-4.2zm172-46.4c-9.5-3.1-22.2-4.2-28.7-2.9 9.9 4 14.1 6.6 18.8 12 12.6 14.4 10.4 34.7-5.4 45.6-11.7 8.1-24.9 10.5-38.9 9.1-1.2-.1-2.3-.4-3-.6 2.8-3.7 6-7 8.1-10.8 9.4-16.8 5.4-42.1-8.7-56.1-2.1-2.1-4.6-3.9-7-5.9-.3 1.3-.1 2.1.1 2.8 4.2 16.6-8.1 32.4-24.8 31.8-7.6-.3-13.9-3.8-19.6-8.5-19.5-16.1-39.1-32.1-58.5-48.3-5.9-4.9-12.5-8.1-20.1-8.7-4.6-.4-9.3-.6-13.9-.9-5.9-.4-8.8-2.8-10.4-8.4-.9-3.4-1.5-6.8-2.2-10.2-1.5-8.1-6.2-13-14.3-14.2-4.4-.7-8.9-1-13.3-1.5-13-1.4-19.8-7.4-22.6-20.3-5 11-1.6 22.4 7.3 29.9 4.5 3.8 9.3 7.3 13.8 11.2 4.6 3.8 7.4 8.7 7.9 14.8.4 4.7.8 9.5 1.8 14.1 2.2 10.6 8.9 18.4 17 25.1 16.5 13.7 33 27.3 49.5 41.1 17.9 15 13.9 32.8 13 56-.9 22.9 12.2 42.9 33.5 51.2 1 .4 2 .6 3.6 1.1-15.7-18.2-10.1-44.1.7-52.3.3 2.2.4 4.3.9 6.4 9.4 44.1 45.4 64.2 85 56.9 16-2.9 30.6-8.9 42.9-19.8 2-1.8 3.7-4.1 5.9-6.5-19.3 4.6-35.8.1-50.9-10.6.7-.3 1.3-.3 1.9-.3 21.3 1.8 40.6-3.4 57-17.4 19.5-16.6 26.6-42.9 17.4-66-8.3-20.1-23.6-32.3-43.8-38.9zM99.4 179.3c-5.3-9.2-13.2-15.6-22.1-21.3 13.7-.5 26.6.2 39.6 3.7-7-12.2-8.5-24.7-5-38.7 5.3 11.9 13.7 20.1 23.6 26.8 19.7 13.2 35.7 19.6 46.7 30.2 3.4 3.3 6.3 7.1 9.6 10.9-.8-2.1-1.4-4.1-2.2-6-5-10.6-13-18.6-22.6-25-1.8-1.2-2.8-2.5-3.4-4.5-3.3-12.5-3-25.1-.7-37.6 1-5.5 2.8-10.9 4.5-16.3.8-2.4 2.3-4.6 4-6.6.6 6.9 0 25.5 19.6 46 10.8 11.3 22.4 21.9 33.9 32.7 9 8.5 18.3 16.7 25.5 26.8 1.1 1.6 2.2 3.3 3.8 4.7-5-13-14.2-24.1-24.2-33.8-9.6-9.3-19.4-18.4-29.2-27.4-3.3-3-4.6-6.7-5.1-10.9-1.2-10.4 0-20.6 4.3-30.2.5-1 1.1-2 1.9-3.3.5 4.2.6 7.9 1.4 11.6 4.8 23.1 20.4 36.3 49.3 63.5 10 9.4 19.3 19.2 25.6 31.6 4.8 9.3 7.3 19 5.7 29.6-.1.6.5 1.7 1.1 2 6.2 2.6 10 6.9 9.7 14.3 7.7-2.6 12.5-8 16.4-14.5 4.2 20.2-9.1 50.3-27.2 58.7.4-4.5 5-23.4-16.5-27.7-6.8-1.3-12.8-1.3-22.9-2.1 4.7-9 10.4-20.6.5-22.4-24.9-4.6-52.8 1.9-57.8 4.6 8.2.4 16.3 1 23.5 3.3-2 6.5-4 12.7-5.8 18.9-1.9 6.5 2.1 14.6 9.3 9.6 1.2-.9 2.3-1.9 3.3-2.7-3.1 17.9-2.9 15.9-2.8 18.3.3 10.2 9.5 7.8 15.7 7.3-2.5 11.8-29.5 27.3-45.4 25.8 7-4.7 12.7-10.3 15.9-17.9-6.5.8-12.9 1.6-19.2 2.4l-.3-.9c4.7-3.4 8-7.8 10.2-13.1 8.7-21.1-3.6-38-25-39.9-9.1-.8-17.8.8-25.9 5.5 6.2-15.6 17.2-26.6 32.6-34.5-15.2-4.3-8.9-2.7-24.6-6.3 14.6-9.3 30.2-13.2 46.5-14.6-5.2-3.2-48.1-3.6-70.2 20.9 7.9 1.4 15.5 2.8 23.2 4.2-23.8 7-44 19.7-62.4 35.6 1.1-4.8 2.7-9.5 3.3-14.3.6-4.5.8-9.2.1-13.6-1.5-9.4-8.9-15.1-19.7-16.3-7.9-.9-15.6.1-23.3 1.3-.9.1-1.7.3-2.9 0 15.8-14.8 36-21.7 53.1-33.5 6-4.5 6.8-8.2 3-14.9zm128.4 26.8c3.3 16 12.6 25.5 23.8 24.3-4.6-11.3-12.1-19.5-23.8-24.3z"], + "dashcube": [448, 512, [], "f210", "M326.6 104H110.4c-51.1 0-91.2 43.3-91.2 93.5V427c0 50.5 40.1 85 91.2 85h227.2c51.1 0 91.2-34.5 91.2-85V0L326.6 104zM153.9 416.5c-17.7 0-32.4-15.1-32.4-32.8V240.8c0-17.7 14.7-32.5 32.4-32.5h140.7c17.7 0 32 14.8 32 32.5v123.5l51.1 52.3H153.9z"], + "delicious": [448, 512, [], "f1a5", "M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1.5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3 1 1.1 2.1 2.2 3.3 3.3 5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12zM416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192v176z"], + "deploydog": [512, 512, [], "f38e", "M382.2 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.6 0-33.2 16.4-33.2 32.6zM188.5 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.7 0-33.2 16.4-33.2 32.6zM448 96c17.5 0 32 14.4 32 32v256c0 17.5-14.4 32-32 32H64c-17.5 0-32-14.4-32-32V128c0-17.5 14.4-32 32-32h384m0-32H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h384c35.2 0 64-28.8 64-64V128c0-35.2-28.8-64-64-64z"], + "deskpro": [480, 512, [], "f38f", "M205.9 512l31.1-38.4c12.3-.2 25.6-1.4 36.5-6.6 38.9-18.6 38.4-61.9 38.3-63.8-.1-5-.8-4.4-28.9-37.4H362c-.2 50.1-7.3 68.5-10.2 75.7-9.4 23.7-43.9 62.8-95.2 69.4-8.7 1.1-32.8 1.2-50.7 1.1zm200.4-167.7c38.6 0 58.5-13.6 73.7-30.9l-175.5-.3-17.4 31.3 119.2-.1zm-43.6-223.9v168.3h-73.5l-32.7 55.5H250c-52.3 0-58.1-56.5-58.3-58.9-1.2-13.2-21.3-11.6-20.1 1.8 1.4 15.8 8.8 40 26.4 57.1h-91c-25.5 0-110.8-26.8-107-114V16.9C0 .9 9.7.3 15 .1h82c.2 0 .3.1.5.1 4.3-.4 50.1-2.1 50.1 43.7 0 13.3 20.2 13.4 20.2 0 0-18.2-5.5-32.8-15.8-43.7h84.2c108.7-.4 126.5 79.4 126.5 120.2zm-132.5 56l64 29.3c13.3-45.5-42.2-71.7-64-29.3z"], + "deviantart": [320, 512, [], "f1bd", "M320 93.2l-98.2 179.1 7.4 9.5H320v127.7H159.1l-13.5 9.2-43.7 84c-.3 0-8.6 8.6-9.2 9.2H0v-93.2l93.2-179.4-7.4-9.2H0V102.5h156l13.5-9.2 43.7-84c.3 0 8.6-8.6 9.2-9.2H320v93.1z"], + "digg": [512, 512, [], "f1a6", "M81.7 172.3H0v174.4h132.7V96h-51v76.3zm0 133.4H50.9v-92.3h30.8v92.3zm297.2-133.4v174.4h81.8v28.5h-81.8V416H512V172.3H378.9zm81.8 133.4h-30.8v-92.3h30.8v92.3zm-235.6 41h82.1v28.5h-82.1V416h133.3V172.3H225.1v174.4zm51.2-133.3h30.8v92.3h-30.8v-92.3zM153.3 96h51.3v51h-51.3V96zm0 76.3h51.3v174.4h-51.3V172.3z"], + "digital-ocean": [512, 512, [], "f391", "M256 504v-96.1c101.8 0 180.8-100.9 141.7-208-14.3-39.6-46.1-71.4-85.8-85.7-107.1-38.8-208.1 39.9-208.1 141.7H8C8 93.7 164.9-32.8 335 20.3c74.2 23.3 133.6 82.4 156.6 156.6C544.8 347.2 418.6 504 256 504zm.3-191.4h-95.6v95.6h95.6v-95.6zm-95.6 95.6H87v73.6h73.7v-73.6zM87 346.6H25.4v61.6H87v-61.6z"], + "discord": [448, 512, [], "f392", "M297.216 243.2c0 15.616-11.52 28.416-26.112 28.416-14.336 0-26.112-12.8-26.112-28.416s11.52-28.416 26.112-28.416c14.592 0 26.112 12.8 26.112 28.416zm-119.552-28.416c-14.592 0-26.112 12.8-26.112 28.416s11.776 28.416 26.112 28.416c14.592 0 26.112-12.8 26.112-28.416.256-15.616-11.52-28.416-26.112-28.416zM448 52.736V512c-64.494-56.994-43.868-38.128-118.784-107.776l13.568 47.36H52.48C23.552 451.584 0 428.032 0 398.848V52.736C0 23.552 23.552 0 52.48 0h343.04C424.448 0 448 23.552 448 52.736zm-72.96 242.688c0-82.432-36.864-149.248-36.864-149.248-36.864-27.648-71.936-26.88-71.936-26.88l-3.584 4.096c43.52 13.312 63.744 32.512 63.744 32.512-60.811-33.329-132.244-33.335-191.232-7.424-9.472 4.352-15.104 7.424-15.104 7.424s21.248-20.224 67.328-33.536l-2.56-3.072s-35.072-.768-71.936 26.88c0 0-36.864 66.816-36.864 149.248 0 0 21.504 37.12 78.08 38.912 0 0 9.472-11.52 17.152-21.248-32.512-9.728-44.8-30.208-44.8-30.208 3.766 2.636 9.976 6.053 10.496 6.4 43.21 24.198 104.588 32.126 159.744 8.96 8.96-3.328 18.944-8.192 29.44-15.104 0 0-12.8 20.992-46.336 30.464 7.68 9.728 16.896 20.736 16.896 20.736 56.576-1.792 78.336-38.912 78.336-38.912z"], + "discourse": [448, 512, [], "f393", "M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z"], + "dochub": [416, 512, [], "f394", "M397.9 160H256V19.6L397.9 160zM304 192v130c0 66.8-36.5 100.1-113.3 100.1H96V84.8h94.7c12 0 23.1.8 33.1 2.5v-84C212.9 1.1 201.4 0 189.2 0H0v512h189.2C329.7 512 400 447.4 400 318.1V192h-96z"], + "docker": [640, 512, [], "f395", "M349.9 236.3h-66.1v-59.4h66.1v59.4zm0-204.3h-66.1v60.7h66.1V32zm78.2 144.8H362v59.4h66.1v-59.4zm-156.3-72.1h-66.1v60.1h66.1v-60.1zm78.1 0h-66.1v60.1h66.1v-60.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4.4 67.6.1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1l-13.3-8.9zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm-78.1-72.1h-66.1v60.1h66.1v-60.1z"], + "draft2digital": [480, 512, [], "f396", "M369.9 425.4V371l47.1 27.2-47.1 27.2zM82.4 380.6c25.5-27.3 97.7-104.7 150.9-170 35.1-43.1 40.3-82.4 28.4-112.7-7.4-18.8-17.5-30.2-24.3-35.7 45.3 2.1 68 23.4 82.2 38.3 0 0 42.4 48.2 5.8 113.3-37 65.9-110.9 147.5-128.5 166.7H82.4zm51.8-219.2c0 12.4-10 22.4-22.4 22.4-12.4 0-22.4-10-22.4-22.4 0-12.4 10-22.4 22.4-22.4 12.4 0 22.4 10.1 22.4 22.4M336 315.9v64.7h-91.3c30.8-35 81.8-95.9 111.8-149.3 35.2-62.6 16.1-123.4-12.8-153.3-4.4-4.6-62.2-62.9-166-41.2-59.1 12.4-89.4 43.4-104.3 67.3-13.1 20.9-17 39.8-18.2 47.7-5.5 33 19.4 67.1 56.7 67.1 31.7 0 57.3-25.7 57.3-57.4 0-27.1-19.7-52.1-48-56.8 1.8-7.3 17.7-21.1 26.3-24.7 41.1-17.3 78 5.2 83.3 33.5 8.3 44.3-37.1 90.4-69.7 127.6C84.5 328.1 18.3 396.8 0 415.9l336-.1V480l144-81.9-144-82.2z"], + "dribbble": [512, 512, [], "f17d", "M256 8C119.252 8 8 119.252 8 256s111.252 248 248 248 248-111.252 248-248S392.748 8 256 8zm163.97 114.366c29.503 36.046 47.369 81.957 47.835 131.955-6.984-1.477-77.018-15.682-147.502-6.818-5.752-14.041-11.181-26.393-18.617-41.614 78.321-31.977 113.818-77.482 118.284-83.523zM396.421 97.87c-3.81 5.427-35.697 48.286-111.021 76.519-34.712-63.776-73.185-116.168-79.04-124.008 67.176-16.193 137.966 1.27 190.061 47.489zm-230.48-33.25c5.585 7.659 43.438 60.116 78.537 122.509-99.087 26.313-186.36 25.934-195.834 25.809C62.38 147.205 106.678 92.573 165.941 64.62zM44.17 256.323c0-2.166.043-4.322.108-6.473 9.268.19 111.92 1.513 217.706-30.146 6.064 11.868 11.857 23.915 17.174 35.949-76.599 21.575-146.194 83.527-180.531 142.306C64.794 360.405 44.17 310.73 44.17 256.323zm81.807 167.113c22.127-45.233 82.178-103.622 167.579-132.756 29.74 77.283 42.039 142.053 45.189 160.638-68.112 29.013-150.015 21.053-212.768-27.882zm248.38 8.489c-2.171-12.886-13.446-74.897-41.152-151.033 66.38-10.626 124.7 6.768 131.947 9.055-9.442 58.941-43.273 109.844-90.795 141.978z"], + "dribbble-square": [448, 512, [], "f397", "M90.2 228.2c8.9-42.4 37.4-77.7 75.7-95.7 3.6 4.9 28 38.8 50.7 79-64 17-120.3 16.8-126.4 16.7zM314.6 154c-33.6-29.8-79.3-41.1-122.6-30.6 3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4zM140.1 364c40.5 31.6 93.3 36.7 137.3 18-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6zm98.8-108.2c-3.4-7.8-7.2-15.5-11.1-23.2C159.6 253 93.4 252.2 87.4 252c0 1.4-.1 2.8-.1 4.2 0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8zm34.9 16.3c17.9 49.1 25.1 89.1 26.5 97.4 30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8zm-20.3-48.4c4.8 9.8 8.3 17.8 12 26.8 45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 176c0-88.2-71.8-160-160-160S64 167.8 64 256s71.8 160 160 160 160-71.8 160-160z"], + "dropbox": [528, 512, [], "f16b", "M264.4 116.3l-132 84.3 132 84.3-132 84.3L0 284.1l132.3-84.3L0 116.3 132.3 32l132.1 84.3zM131.6 395.7l132-84.3 132 84.3-132 84.3-132-84.3zm132.8-111.6l132-84.3-132-83.6L395.7 32 528 116.3l-132.3 84.3L528 284.8l-132.3 84.3-131.3-85z"], + "drupal": [448, 512, [], "f1a9", "M319.5 114.7c-22.2-14-43.5-19.5-64.7-33.5-13-8.8-31.3-30-46.5-48.3-2.7 29.3-11.5 41.2-22 49.5-21.3 17-34.8 22.2-53.5 32.3C117 123 32 181.5 32 290.5 32 399.7 123.8 480 225.8 480 327.5 480 416 406 416 294c0-112.3-83-171-96.5-179.3zm2.5 325.6c-20.1 20.1-90.1 28.7-116.7 4.2-4.8-4.8.3-12 6.5-12 0 0 17 13.3 51.5 13.3 27 0 46-7.7 54.5-14 6.1-4.6 8.4 4.3 4.2 8.5zm-54.5-52.6c8.7-3.6 29-3.8 36.8 1.3 4.1 2.8 16.1 18.8 6.2 23.7-8.4 4.2-1.2-15.7-26.5-15.7-14.7 0-19.5 5.2-26.7 11-7 6-9.8 8-12.2 4.7-6-8.2 15.9-22.3 22.4-25zM360 405c-15.2-1-45.5-48.8-65-49.5-30.9-.9-104.1 80.7-161.3 42-38.8-26.6-14.6-104.8 51.8-105.2 49.5-.5 83.8 49 108.5 48.5 21.3-.3 61.8-41.8 81.8-41.8 48.7 0 23.3 109.3-15.8 106z"], + "dyalog": [416, 512, [], "f399", "M0 32v119.2h64V96h107.2C284.6 96 352 176.2 352 255.9 352 332 293.4 416 171.2 416H0v64h171.2C331.9 480 416 367.3 416 255.9c0-58.7-22.1-113.4-62.3-154.3C308.9 56 245.7 32 171.2 32H0z"], + "earlybirds": [480, 512, [], "f39a", "M313.2 47.5c1.2-13 21.3-14 36.6-8.7.9.3 26.2 9.7 19 15.2-27.9-7.4-56.4 18.2-55.6-6.5zm-201 6.9c30.7-8.1 62 20 61.1-7.1-1.3-14.2-23.4-15.3-40.2-9.6-1 .3-28.7 10.5-20.9 16.7zM319.4 160c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-159.7 0c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm318.5 163.2c-9.9 24-40.7 11-63.9-1.2-13.5 69.1-58.1 111.4-126.3 124.2.3.9-2-.1 24 1 33.6 1.4 63.8-3.1 97.4-8-19.8-13.8-11.4-37.1-9.8-38.1 1.4-.9 14.7 1.7 21.6 11.5 8.6-12.5 28.4-14.8 30.2-13.6 1.6 1.1 6.6 20.9-6.9 34.6 4.7-.9 8.2-1.6 9.8-2.1 2.6-.8 17.7 11.3 3.1 13.3-14.3 2.3-22.6 5.1-47.1 10.8-45.9 10.7-85.9 11.8-117.7 12.8l1 11.6c3.8 18.1-23.4 24.3-27.6 6.2.8 17.9-27.1 21.8-28.4-1l-.5 5.3c-.7 18.4-28.4 17.9-28.3-.6-7.5 13.5-28.1 6.8-26.4-8.5l1.2-12.4c-36.7.9-59.7 3.1-61.8 3.1-20.9 0-20.9-31.6 0-31.6 2.4 0 27.7 1.3 63.2 2.8-61.1-15.5-103.7-55-114.9-118.2-25 12.8-57.5 26.8-68.2.8-10.5-25.4 21.5-42.6 66.8-73.4.7-6.6 1.6-13.3 2.7-19.8-14.4-19.6-11.6-36.3-16.1-60.4-16.8 2.4-23.2-9.1-23.6-23.1.3-7.3 2.1-14.9 2.4-15.4 1.1-1.8 10.1-2 12.7-2.6 6-31.7 50.6-33.2 90.9-34.5 19.7-21.8 45.2-41.5 80.9-48.3C203.3 29 215.2 8.5 216.2 8c1.7-.8 21.2 4.3 26.3 23.2 5.2-8.8 18.3-11.4 19.6-10.7 1.1.6 6.4 15-4.9 25.9 40.3 3.5 72.2 24.7 96 50.7 36.1 1.5 71.8 5.9 77.1 34 2.7.6 11.6.8 12.7 2.6.3.5 2.1 8.1 2.4 15.4-.5 13.9-6.8 25.4-23.6 23.1-3.2 17.3-2.7 32.9-8.7 47.7 2.4 11.7 4 23.8 4.8 36.4 37 25.4 70.3 42.5 60.3 66.9zM207.4 159.9c.9-44-37.9-42.2-78.6-40.3-21.7 1-38.9 1.9-45.5 13.9-11.4 20.9 5.9 92.9 23.2 101.2 9.8 4.7 73.4 7.9 86.3-7.1 8.2-9.4 15-49.4 14.6-67.7zm52 58.3c-4.3-12.4-6-30.1-15.3-32.7-2-.5-9-.5-11 0-10 2.8-10.8 22.1-17 37.2 15.4 0 19.3 9.7 23.7 9.7 4.3 0 6.3-11.3 19.6-14.2zm135.7-84.7c-6.6-12.1-24.8-12.9-46.5-13.9-40.2-1.9-78.2-3.8-77.3 40.3-.5 18.3 5 58.3 13.2 67.8 13 14.9 76.6 11.8 86.3 7.1 15.8-7.6 36.5-78.9 24.3-101.3z"], + "ebay": [640, 512, [], "f4f4", "M405.2 263.8c-29.1.9-47.2 6.2-47.2 25.3 0 12.4 9.9 25.8 35 25.8 33.7 0 51.6-18.4 51.6-48.4v-3.3c-11.8 0-26.3.1-39.4.6m71.5 39.7c0 9.3.3 18.6 1 26.8h-29.8c-.8-6.9-1.1-13.6-1.1-20.2-16.1 19.8-35.3 25.5-61.9 25.5-39.5 0-60.6-20.9-60.6-45 0-35 28.8-47.3 78.6-48.4 13.7-.3 29-.4 41.7-.4v-3.4c0-23.4-15-33-41-33-19.3 0-33.6 8-35 21.8h-33.7c3.6-34.4 39.7-43.1 71.5-43.1 38.1 0 70.3 13.5 70.3 53.8v65.6zm-349-56.8c-2.3-54.7-87.5-56.6-94.4 0h94.4zm-95 21.4c3.5 58.3 79.2 57.4 91.2 21.6H157c-6.4 34.4-43 46.1-74.4 46.1-57.2 0-82.5-31.5-82.5-74 0-46.8 26.2-77.6 83-77.6 45.3 0 78.4 23.7 78.4 75.4v8.5H32.7zm211 45.7c29.8 0 50.2-21.5 50.2-53.8 0-32.4-20.4-53.8-50.2-53.8-29.6 0-50.2 21.4-50.2 53.8 0 32.3 20.6 53.8 50.2 53.8m-82.2-186h32.1v80.6c15.7-18.7 37.4-24.2 58.7-24.2 35.7 0 75.4 24.1 75.4 76.2 0 43.6-31.5 75.4-76 75.4-23.3 0-45.1-8.3-58.7-24.9 0 6.6-.4 13.2-1.1 19.5h-31.5c.5-10.2 1.1-22.8 1.1-33.1V127.8zM640 189.5l-99.2 194.8h-35.9l28.5-54.1-74.6-140.7h37.5l54.9 109.9L606 189.5h34z"], + "edge": [512, 512, [], "f282", "M25.714 228.163c.111-.162.23-.323.342-.485-.021.162-.045.323-.065.485h-.277zm460.572 15.508c0-44.032-7.754-84.465-28.801-122.405C416.498 47.879 343.912 8.001 258.893 8.001 118.962 7.724 40.617 113.214 26.056 227.679c42.429-61.312 117.073-121.376 220.375-124.966 0 0 109.666 0 99.419 104.957H169.997c6.369-37.386 18.554-58.986 34.339-78.926-75.048 34.893-121.85 96.096-120.742 188.315.83 71.448 50.124 144.836 120.743 171.976 83.357 31.847 192.776 7.2 240.132-21.324V363.307c-80.864 56.494-270.871 60.925-272.255-67.572h314.073v-52.064z"], + "elementor": [448, 512, [], "f430", "M425.6 32H22.4C10 32 0 42 0 54.4v403.2C0 470 10 480 22.4 480h403.2c12.4 0 22.4-10 22.4-22.4V54.4C448 42 438 32 425.6 32M164.3 355.5h-39.8v-199h39.8v199zm159.3 0H204.1v-39.8h119.5v39.8zm0-79.6H204.1v-39.8h119.5v39.8zm0-79.7H204.1v-39.8h119.5v39.8z"], + "ember": [640, 512, [], "f423", "M639.9 254.6c-1.1-10.7-10.7-6.8-10.7-6.8s-15.6 12.1-29.3 10.7c-13.7-1.3-9.4-32-9.4-32s3-28.1-5.1-30.4c-8.1-2.4-18 7.3-18 7.3s-12.4 13.7-18.3 31.2l-1.6.5s1.9-30.6-.3-37.6c-1.6-3.5-16.4-3.2-18.8 3s-14.2 49.2-15 67.2c0 0-23.1 19.6-43.3 22.8s-25-9.4-25-9.4 54.8-15.3 52.9-59.1c-1.9-43.8-44.2-27.6-49-24-4.6 3.5-29.4 18.4-36.6 59.7-.2 1.4-.7 7.5-.7 7.5s-21.2 14.2-33 18c0 0 33-55.6-7.3-80.9-18.3-11-32.8 12.1-32.8 12.1s54.5-60.7 42.5-112c-5.8-24.4-18-27.1-29.2-23.1-17 6.7-23.5 16.7-23.5 16.7s-22 32-27.1 79.5-12.6 105.1-12.6 105.1-10.5 10.2-20.2 10.7-5.4-28.7-5.4-28.7 7.5-44.6 7-52.1-1.1-11.6-9.9-14.2c-8.9-2.7-18.5 8.6-18.5 8.6s-25.5 38.7-27.7 44.6l-1.3 2.4-1.3-1.6s18-52.7.8-53.5c-17.2-.8-28.5 18.8-28.5 18.8s-19.6 32.8-20.4 36.5l-1.3-1.6s8.1-38.2 6.4-47.6c-1.6-9.4-10.5-7.5-10.5-7.5s-11.3-1.3-14.2 5.9-13.7 55.3-15 70.7c0 0-28.2 20.2-46.8 20.4-18.5.3-16.7-11.8-16.7-11.8s68-23.3 49.4-69.2c-8.3-11.8-18-15.5-31.7-15.3-13.7.3-30.3 8.6-41.3 33.3-5.3 11.8-6.8 23-7.8 31.5 0 0-12.3 2.4-18.8-2.9s-10 0-10 0-11.2 14-.1 18.3 28.1 6.1 28.1 6.1c1.6 7.5 6.2 19.5 19.6 29.7 20.2 15.3 58.8-1.3 58.8-1.3l15.9-8.8s.5 14.6 12.1 16.7c11.6 2.1 16.4 1 36.5-47.9 11.8-25 12.6-23.6 12.6-23.6l1.3-.3s-9.1 46.8-5.6 59.7C187.7 319.4 203 318 203 318s8.3 2.4 15-21.2c6.7-23.6 19.6-49.9 19.6-49.9h1.6s-5.6 48.1 3 63.7c8.6 15.6 30.9 5.3 30.9 5.3s15.6-7.8 18-10.2c0 0 18.5 15.8 44.6 12.9 58.3-11.5 79.1-25.9 79.1-25.9s10 24.4 41.1 26.7c35.5 2.7 54.8-18.6 54.8-18.6s-.3 13.5 12.1 18.6c12.4 5.1 20.7-22.8 20.7-22.8l20.7-57.2h1.9s1.1 37.3 21.5 43.2 47-13.7 47-13.7 6.4-3.5 5.3-14.3zm-578 5.3c.8-32 21.8-45.9 29-39 7.3 7 4.6 22-9.1 31.4-13.7 9.5-19.9 7.6-19.9 7.6zm272.8-123.8s19.1-49.7 23.6-25.5-40 96.2-40 96.2c.5-16.2 16.4-70.7 16.4-70.7zm22.8 138.4c-12.6 33-43.3 19.6-43.3 19.6s-3.5-11.8 6.4-44.9 33.3-20.2 33.3-20.2 16.2 12.4 3.6 45.5zm84.6-14.6s-3-10.5 8.1-30.6c11-20.2 19.6-9.1 19.6-9.1s9.4 10.2-1.3 25.5-26.4 14.2-26.4 14.2z"], + "empire": [496, 512, [], "f1d1", "M287.6 54.2c-10.8-2.2-22.1-3.3-33.5-3.6V32.4c78.1 2.2 146.1 44 184.6 106.6l-15.8 9.1c-6.1-9.7-12.7-18.8-20.2-27.1l-18 15.5c-26-29.6-61.4-50.7-101.9-58.4l4.8-23.9zM53.4 322.4l23-7.7c-6.4-18.3-10-38.2-10-58.7s3.3-40.4 9.7-58.7l-22.7-7.7c3.6-10.8 8.3-21.3 13.6-31l-15.8-9.1C34 181 24.1 217.5 24.1 256s10 75 27.1 106.6l15.8-9.1c-5.3-10-9.7-20.3-13.6-31.1zM213.1 434c-40.4-8-75.8-29.1-101.9-58.7l-18 15.8c-7.5-8.6-14.4-17.7-20.2-27.4l-16 9.4c38.5 62.3 106.8 104.3 184.9 106.6v-18.3c-11.3-.3-22.7-1.7-33.5-3.6l4.7-23.8zM93.3 120.9l18 15.5c26-29.6 61.4-50.7 101.9-58.4l-4.7-23.8c10.8-2.2 22.1-3.3 33.5-3.6V32.4C163.9 34.6 95.9 76.4 57.4 139l15.8 9.1c6-9.7 12.6-18.9 20.1-27.2zm309.4 270.2l-18-15.8c-26 29.6-61.4 50.7-101.9 58.7l4.7 23.8c-10.8 1.9-22.1 3.3-33.5 3.6v18.3c78.1-2.2 146.4-44.3 184.9-106.6l-16.1-9.4c-5.7 9.7-12.6 18.8-20.1 27.4zM496 256c0 137-111 248-248 248S0 393 0 256 111 8 248 8s248 111 248 248zm-12.2 0c0-130.1-105.7-235.8-235.8-235.8S12.2 125.9 12.2 256 117.9 491.8 248 491.8 483.8 386.1 483.8 256zm-39-106.6l-15.8 9.1c5.3 9.7 10 20.2 13.6 31l-22.7 7.7c6.4 18.3 9.7 38.2 9.7 58.7s-3.6 40.4-10 58.7l23 7.7c-3.9 10.8-8.3 21-13.6 31l15.8 9.1C462 331 471.9 294.5 471.9 256s-9.9-75-27.1-106.6zm-183 177.7c16.3-3.3 30.4-11.6 40.7-23.5l51.2 44.8c11.9-13.6 21.3-29.3 27.1-46.8l-64.2-22.1c2.5-7.5 3.9-15.2 3.9-23.5s-1.4-16.1-3.9-23.5l64.5-22.1c-6.1-17.4-15.5-33.2-27.4-46.8l-51.2 44.8c-10.2-11.9-24.4-20.5-40.7-23.8l13.3-66.4c-8.6-1.9-17.7-2.8-27.1-2.8-9.4 0-18.5.8-27.1 2.8l13.3 66.4c-16.3 3.3-30.4 11.9-40.7 23.8l-51.2-44.8c-11.9 13.6-21.3 29.3-27.4 46.8l64.5 22.1c-2.5 7.5-3.9 15.2-3.9 23.5s1.4 16.1 3.9 23.5l-64.2 22.1c5.8 17.4 15.2 33.2 27.1 46.8l51.2-44.8c10.2 11.9 24.4 20.2 40.7 23.5l-13.3 66.7c8.6 1.7 17.7 2.8 27.1 2.8 9.4 0 18.5-1.1 27.1-2.8l-13.3-66.7z"], + "envira": [448, 512, [], "f299", "M0 32c477.6 0 366.6 317.3 367.1 366.3L448 480h-26l-70.4-71.2c-39 4.2-124.4 34.5-214.4-37C47 300.3 52 214.7 0 32zm79.7 46c-49.7-23.5-5.2 9.2-5.2 9.2 45.2 31.2 66 73.7 90.2 119.9 31.5 60.2 79 139.7 144.2 167.7 65 28 34.2 12.5 6-8.5-28.2-21.2-68.2-87-91-130.2-31.7-60-61-118.6-144.2-158.1z"], + "erlang": [640, 512, [], "f39d", "M21.7 246.4c-.1 86.8 29 159.5 78.7 212.1H0v-405h87.2c-41.5 50.2-65.6 116.2-65.5 192.9zM640 53.6h-83.6c31.4 42.7 48.7 97.5 46.2 162.7.5 6 .5 11.7 0 24.1H230.2c-.2 109.7 38.9 194.9 138.6 195.3 68.5-.3 118-51 151.9-106.1l96.4 48.2c-17.4 30.9-36.5 57.8-57.9 80.8H640v-405zm-80.8 405s0-.1 0 0h-.2.2zm-3.1-405h.3l-.1-.1-.2.1zm-230.7 9.6c-45.9.1-85.1 33.5-89.2 83.2h169.9c-1.1-49.7-34.5-83.1-80.7-83.2z"], + "ethereum": [320, 512, [], "f42e", "M311.9 260.8L160 353.6 8 260.8 160 0l151.9 260.8zM160 383.4L8 290.6 160 512l152-221.4-152 92.8z"], + "etsy": [384, 512, [], "f2d7", "M384 348c-1.75 10.75-13.75 110-15.5 132-117.879-4.299-219.895-4.743-368.5 0v-25.5c45.457-8.948 60.627-8.019 61-35.25 1.793-72.322 3.524-244.143 0-322-1.029-28.46-12.13-26.765-61-36v-25.5c73.886 2.358 255.933 8.551 362.999-3.75-3.5 38.25-7.75 126.5-7.75 126.5H332C320.947 115.665 313.241 68 277.25 68h-137c-10.25 0-10.75 3.5-10.75 9.75V241.5c58 .5 88.5-2.5 88.5-2.5 29.77-.951 27.56-8.502 40.75-65.251h25.75c-4.407 101.351-3.91 61.829-1.75 160.25H257c-9.155-40.086-9.065-61.045-39.501-61.5 0 0-21.5-2-88-2v139c0 26 14.25 38.25 44.25 38.25H263c63.636 0 66.564-24.996 98.751-99.75H384z"], + "expeditedssl": [496, 512, [], "f23e", "M248 43.4C130.6 43.4 35.4 138.6 35.4 256S130.6 468.6 248 468.6 460.6 373.4 460.6 256 365.4 43.4 248 43.4zm-97.4 132.9c0-53.7 43.7-97.4 97.4-97.4s97.4 43.7 97.4 97.4v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6c0-82.1-124-82.1-124 0v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6zM389.7 380c0 9.7-8 17.7-17.7 17.7H124c-9.7 0-17.7-8-17.7-17.7V238.3c0-9.7 8-17.7 17.7-17.7h248c9.7 0 17.7 8 17.7 17.7V380zm-248-137.3v132.9c0 2.5-1.9 4.4-4.4 4.4h-8.9c-2.5 0-4.4-1.9-4.4-4.4V242.7c0-2.5 1.9-4.4 4.4-4.4h8.9c2.5 0 4.4 1.9 4.4 4.4zm141.7 48.7c0 13-7.2 24.4-17.7 30.4v31.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-31.6c-10.5-6.1-17.7-17.4-17.7-30.4 0-19.7 15.8-35.4 35.4-35.4s35.5 15.8 35.5 35.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 478.3C121 486.3 17.7 383 17.7 256S121 25.7 248 25.7 478.3 129 478.3 256 375 486.3 248 486.3z"], + "facebook": [448, 512, [], "f09a", "M448 56.7v398.5c0 13.7-11.1 24.7-24.7 24.7H309.1V306.5h58.2l8.7-67.6h-67v-43.2c0-19.6 5.4-32.9 33.5-32.9h35.8v-60.5c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9h-58.4v67.6h58.4V480H24.7C11.1 480 0 468.9 0 455.3V56.7C0 43.1 11.1 32 24.7 32h398.5c13.7 0 24.8 11.1 24.8 24.7z"], + "facebook-f": [264, 512, [], "f39e", "M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"], + "facebook-messenger": [448, 512, [], "f39f", "M224 32C15.9 32-77.5 278 84.6 400.6V480l75.7-42c142.2 39.8 285.4-59.9 285.4-198.7C445.8 124.8 346.5 32 224 32zm23.4 278.1L190 250.5 79.6 311.6l121.1-128.5 57.4 59.6 110.4-61.1-121.1 128.5z"], + "facebook-square": [448, 512, [], "f082", "M448 80v352c0 26.5-21.5 48-48 48h-85.3V302.8h60.6l8.7-67.6h-69.3V192c0-19.6 5.4-32.9 33.5-32.9H384V98.7c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9H184v67.6h60.9V480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z"], + "firefox": [480, 512, [], "f269", "M478.1 235.3c-.7-4.5-1.4-7.1-1.4-7.1s-1.8 2-4.7 5.9c-.9-10.7-2.8-21.2-5.8-31.6-3.7-12.9-8.5-25.4-14.5-37.4-3.8-8-8.2-15.6-13.3-22.8-1.8-2.7-3.7-5.4-5.6-7.9-8.8-14.4-19-23.3-30.7-40-7.6-12.8-12.9-26.9-15.4-41.6-3.2 8.9-5.7 18-7.4 27.3-12.1-12.2-22.5-20.8-28.9-26.7C319.4 24.2 323 9.1 323 9.1S264.7 74.2 289.9 142c8.7 23 23.8 43.1 43.4 57.9 24.4 20.2 50.8 36 64.7 76.6-11.2-21.3-28.1-39.2-48.8-51.5 6.2 14.7 9.4 30.6 9.3 46.5 0 61-49.6 110.5-110.6 110.4-8.3 0-16.5-.9-24.5-2.8-9.5-1.8-18.7-4.9-27.4-9.3-12.9-7.8-24-18.1-32.8-30.3l-.2-.3 2 .7c4.6 1.6 9.2 2.8 14 3.7 18.7 4 38.3 1.7 55.6-6.6 17.5-9.7 28-16.9 36.6-14h.2c8.4 2.7 15-5.5 9-14-10.4-13.4-27.4-20-44.2-17-17.5 2.5-33.5 15-56.4 2.9-1.5-.8-2.9-1.6-4.3-2.5-1.6-.9 4.9 1.3 3.4.3-5-2.5-9.8-5.4-14.4-8.6-.3-.3 3.5 1.1 3.1.8-5.9-4-11-9.2-15-15.2-4.1-7.4-4.5-16.4-1-24.1 2.1-3.8 5.4-6.9 9.3-8.7 3 1.5 4.8 2.6 4.8 2.6s-1.3-2.5-2.1-3.8c.3-.1.5 0 .8-.2 2.6 1.1 8.3 4 11.4 5.8 2.1 1.1 3.8 2.7 5.2 4.7 0 0 1-.5.3-2.7-1.1-2.7-2.9-5-5.4-6.6h.2c2.3 1.2 4.5 2.6 6.6 4.1 1.9-4.4 2.8-9.2 2.6-14 .2-2.6-.2-5.3-1.1-7.8-.8-1.6.5-2.2 1.9-.5-.2-1.3-.7-2.5-1.2-3.7v-.1s.8-1.1 1.2-1.5c1-1 2.1-1.9 3.4-2.7 7.2-4.5 14.8-8.4 22.7-11.6 6.4-2.8 11.7-4.9 12.8-5.6 1.6-1 3.1-2.2 4.5-3.5 5.3-4.5 9-10.8 10.2-17.7.1-.9.2-1.8.3-2.8v-1.5c-.9-3.5-6.9-6.1-38.4-9.1-11.1-1.8-20-10.1-22.5-21.1v.1c-.4 1.1-.9 2.3-1.3 3.5.4-1.2.8-2.3 1.3-3.5v-.2c6-15.7 16.8-29.1 30.8-38.3.8-.7-3.2.2-2.4-.5 2.7-1.3 5.4-2.5 8.2-3.5 1.4-.6-6-3.4-12.6-2.7-4 .2-8 1.2-11.7 2.8 1.6-1.3 6.2-3.1 5.1-3.1-8.4 1.6-16.5 4.7-23.9 9 0-.8.1-1.5.5-2.2-5.9 2.5-11 6.5-15 11.5.1-.9.2-1.8.2-2.7-2.7 2-5.2 4.3-7.3 6.9l-.1.1c-17.4-6.7-36.3-8.3-54.6-4.7l-.2-.1h.2c-3.8-3.1-7.1-6.7-9.7-10.9l-.2.1-.4-.2c-1.2-1.8-2.4-3.8-3.7-6-.9-1.6-1.8-3.4-2.7-5.2 0-.1-.1-.2-.2-.2-.4 0-.6 1.7-.9 1.3v-.1c-3.2-8.3-4.7-17.2-4.4-26.2l-.2.1c-5.1 3.5-9 8.6-11.1 14.5-.9 2.1-1.6 3.3-2.2 4.5v-.5c.1-1.1.6-3.3.5-3.1-.1.2-.2.3-.3.4-1.5 1.7-2.9 3.7-3.9 5.8-.9 1.9-1.7 3.9-2.3 5.9-.1.3 0-.3 0-1s.1-2 0-1.7l-.3.7c-6.7 14.9-10.9 30.8-12.4 47.1-.4 2.8-.6 5.6-.5 8.3v.2c-4.8 5.2-9 11-12.7 17.1-12.1 20.4-21.1 42.5-26.8 65.6 4-8.8 8.8-17.2 14.3-25.1C5.5 228.5 0 257.4 0 286.6c1.8-8.6 4.2-17 7-25.3-1.7 34.5 4.9 68.9 19.4 100.3 19.4 43.5 51.6 80 92.3 104.7 16.6 11.2 34.7 19.9 53.8 25.8 2.5.9 5.1 1.8 7.7 2.7-.8-.3-1.6-.7-2.4-1 22.6 6.8 46.2 10.3 69.8 10.3 83.7 0 111.3-31.9 113.8-35 4.1-3.7 7.5-8.2 9.9-13.3 1.6-.7 3.2-1.4 4.9-2.1l1-.5 1.9-.9c12.6-5.9 24.5-13.4 35.3-22.1 16.3-11.7 27.9-28.7 32.9-48.1 3-7.1 3.1-15 .4-22.2.9-1.4 1.7-2.8 2.7-4.3 18-28.9 28.2-61.9 29.6-95.9v-2.8c0-7.3-.6-14.5-1.9-21.6z"], + "first-order": [448, 512, [], "f2b0", "M12.9 229.2c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4h-.2zM224 96.6c-7.1 0-14.6.6-21.4 1.7l3.7 67.4-22-64c-14.3 3.7-27.7 9.4-40 16.6l29.4 61.4-45.1-50.9c-11.4 8.9-21.7 19.1-30.6 30.9l50.6 45.4-61.1-29.7c-7.1 12.3-12.9 25.7-16.6 40l64.3 22.6-68-4c-.9 7.1-1.4 14.6-1.4 22s.6 14.6 1.4 21.7l67.7-4-64 22.6c3.7 14.3 9.4 27.7 16.6 40.3l61.1-29.7L97.7 352c8.9 11.7 19.1 22.3 30.9 30.9l44.9-50.9-29.5 61.4c12.3 7.4 25.7 13.1 40 16.9l22.3-64.6-4 68c7.1 1.1 14.6 1.7 21.7 1.7 7.4 0 14.6-.6 21.7-1.7l-4-68.6 22.6 65.1c14.3-4 27.7-9.4 40-16.9L274.9 332l44.9 50.9c11.7-8.9 22-19.1 30.6-30.9l-50.6-45.1 61.1 29.4c7.1-12.3 12.9-25.7 16.6-40.3l-64-22.3 67.4 4c1.1-7.1 1.4-14.3 1.4-21.7s-.3-14.9-1.4-22l-67.7 4 64-22.3c-3.7-14.3-9.1-28-16.6-40.3l-60.9 29.7 50.6-45.4c-8.9-11.7-19.1-22-30.6-30.9l-45.1 50.9 29.4-61.1c-12.3-7.4-25.7-13.1-40-16.9L241.7 166l4-67.7c-7.1-1.2-14.3-1.7-21.7-1.7zM443.4 128v256L224 512 4.6 384V128L224 0l219.4 128zm-17.1 10.3L224 20.9 21.7 138.3v235.1L224 491.1l202.3-117.7V138.3zM224 37.1l187.7 109.4v218.9L224 474.9 36.3 365.4V146.6L224 37.1zm0 50.9c-92.3 0-166.9 75.1-166.9 168 0 92.6 74.6 167.7 166.9 167.7 92 0 166.9-75.1 166.9-167.7 0-92.9-74.9-168-166.9-168z"], + "first-order-alt": [496, 512, [], "f50a", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 488.21C115.34 496.21 7.79 388.66 7.79 256S115.34 15.79 248 15.79 488.21 123.34 488.21 256 380.66 496.21 248 496.21zm0-459.92C126.66 36.29 28.29 134.66 28.29 256S126.66 475.71 248 475.71 467.71 377.34 467.71 256 369.34 36.29 248 36.29zm0 431.22c-116.81 0-211.51-94.69-211.51-211.51S131.19 44.49 248 44.49 459.51 139.19 459.51 256 364.81 467.51 248 467.51zm186.23-162.98a191.613 191.613 0 0 1-20.13 48.69l-74.13-35.88 61.48 54.82a193.515 193.515 0 0 1-37.2 37.29l-54.8-61.57 35.88 74.27a190.944 190.944 0 0 1-48.63 20.23l-27.29-78.47 4.79 82.93c-8.61 1.18-17.4 1.8-26.33 1.8s-17.72-.62-26.33-1.8l4.76-82.46-27.15 78.03a191.365 191.365 0 0 1-48.65-20.2l35.93-74.34-54.87 61.64a193.85 193.85 0 0 1-37.22-37.28l61.59-54.9-74.26 35.93a191.638 191.638 0 0 1-20.14-48.69l77.84-27.11-82.23 4.76c-1.16-8.57-1.78-17.32-1.78-26.21 0-9 .63-17.84 1.82-26.51l82.38 4.77-77.94-27.16a191.726 191.726 0 0 1 20.23-48.67l74.22 35.92-61.52-54.86a193.85 193.85 0 0 1 37.28-37.22l54.76 61.53-35.83-74.17a191.49 191.49 0 0 1 48.65-20.13l26.87 77.25-4.71-81.61c8.61-1.18 17.39-1.8 26.32-1.8s17.71.62 26.32 1.8l-4.74 82.16 27.05-77.76c17.27 4.5 33.6 11.35 48.63 20.17l-35.82 74.12 54.72-61.47a193.13 193.13 0 0 1 37.24 37.23l-61.45 54.77 74.12-35.86a191.515 191.515 0 0 1 20.2 48.65l-77.81 27.1 82.24-4.75c1.19 8.66 1.82 17.5 1.82 26.49 0 8.88-.61 17.63-1.78 26.19l-82.12-4.75 77.72 27.09z"], + "firstdraft": [384, 512, [], "f3a1", "M384 192h-64v128H192v128H0v-25.6h166.4v-128h128v-128H384V192zm-25.6 38.4v128h-128v128H64V512h192V384h128V230.4h-25.6zm25.6 192h-89.6V512H320v-64h64v-25.6zM0 0v384h128V256h128V128h128V0H0z"], + "flickr": [448, 512, [], "f16e", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5zm159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5z"], + "flipboard": [448, 512, [], "f44d", "M0 32v448h448V32H0zm358.4 179.2h-89.6v89.6h-89.6v89.6H89.6V121.6h268.8v89.6z"], + "fly": [384, 512, [], "f417", "M197.8 427.8c12.9 11.7 33.7 33.3 33.2 50.7 0 .8-.1 1.6-.1 2.5-1.8 19.8-18.8 31.1-39.1 31-25-.1-39.9-16.8-38.7-35.8 1-16.2 20.5-36.7 32.4-47.6 2.3-2.1 2.7-2.7 5.6-3.6 3.4 0 3.9.3 6.7 2.8zM331.9 67.3c-16.3-25.7-38.6-40.6-63.3-52.1C243.1 4.5 214-.2 192 0c-44.1 0-71.2 13.2-81.1 17.3C57.3 45.2 26.5 87.2 28 158.6c7.1 82.2 97 176 155.8 233.8 1.7 1.6 4.5 4.5 6.2 5.1l3.3.1c2.1-.7 1.8-.5 3.5-2.1 52.3-49.2 140.7-145.8 155.9-215.7 7-39.2 3.1-72.5-20.8-112.5zM186.8 351.9c-28-51.1-65.2-130.7-69.3-189-3.4-47.5 11.4-131.2 69.3-136.7v325.7zM328.7 180c-16.4 56.8-77.3 128-118.9 170.3C237.6 298.4 275 217 277 158.4c1.6-45.9-9.8-105.8-48-131.4 88.8 18.3 115.5 98.1 99.7 153z"], + "font-awesome": [448, 512, [], "f2b4", "M397.8 32H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-45.4 284.3c0 4.2-3.6 6-7.8 7.8-16.7 7.2-34.6 13.7-53.8 13.7-26.9 0-39.4-16.7-71.7-16.7-23.3 0-47.8 8.4-67.5 17.3-1.2.6-2.4.6-3.6 1.2V385c0 1.8 0 3.6-.6 4.8v1.2c-2.4 8.4-10.2 14.3-19.1 14.3-11.3 0-20.3-9-20.3-20.3V166.4c-7.8-6-13.1-15.5-13.1-26.3 0-18.5 14.9-33.5 33.5-33.5 18.5 0 33.5 14.9 33.5 33.5 0 10.8-4.8 20.3-13.1 26.3v18.5c1.8-.6 3.6-1.2 5.4-2.4 18.5-7.8 40.6-14.3 61.5-14.3 22.7 0 40.6 6 60.9 13.7 4.2 1.8 8.4 2.4 13.1 2.4 22.7 0 47.8-16.1 53.8-16.1 4.8 0 9 3.6 9 7.8v140.3z"], + "font-awesome-alt": [448, 512, [], "f35c", "M397.8 67.8c7.8 0 14.3 6.6 14.3 14.3v347.6c0 7.8-6.6 14.3-14.3 14.3H50.2c-7.8 0-14.3-6.6-14.3-14.3V82.2c0-7.8 6.6-14.3 14.3-14.3h347.6m0-35.9H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-58.5 139.2c-6 0-29.9 15.5-52.6 15.5-4.2 0-8.4-.6-12.5-2.4-19.7-7.8-37-13.7-59.1-13.7-20.3 0-41.8 6.6-59.7 13.7-1.8.6-3.6 1.2-4.8 1.8v-17.9c7.8-6 12.5-14.9 12.5-25.7 0-17.9-14.3-32.3-32.3-32.3s-32.3 14.3-32.3 32.3c0 10.2 4.8 19.7 12.5 25.7v212.1c0 10.8 9 19.7 19.7 19.7 9 0 16.1-6 18.5-13.7V385c.6-1.8.6-3 .6-4.8V336c1.2 0 2.4-.6 3-1.2 19.7-8.4 43-16.7 65.7-16.7 31.1 0 43 16.1 69.3 16.1 18.5 0 36.4-6.6 52-13.7 4.2-1.8 7.2-3.6 7.2-7.8V178.3c1.8-4.1-2.3-7.1-7.7-7.1z"], + "font-awesome-flag": [448, 512, [], "f425", "M444.373 359.424c0 7.168-6.144 10.24-13.312 13.312-28.672 12.288-59.392 23.552-92.16 23.552-46.08 0-67.584-28.672-122.88-28.672-39.936 0-81.92 14.336-115.712 29.696-2.048 1.024-4.096 1.024-6.144 2.048v77.824c0 21.405-16.122 34.816-33.792 34.816-19.456 0-34.816-15.36-34.816-34.816V102.4C12.245 92.16 3.029 75.776 3.029 57.344 3.029 25.6 28.629 0 60.373 0s57.344 25.6 57.344 57.344c0 18.432-8.192 34.816-22.528 45.056v31.744c4.124-1.374 58.768-28.672 114.688-28.672 65.27 0 97.676 27.648 126.976 27.648 38.912 0 81.92-27.648 92.16-27.648 8.192 0 15.36 6.144 15.36 13.312v240.64z"], + "font-awesome-logo-full": [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"], + "fonticons": [448, 512, [], "f280", "M0 32v448h448V32H0zm167.4 196h67.4l-11.1 37.3H168v112.9c0 5.8-2 6.7 3.2 7.3l43.5 4.1v25.1H84V389l21.3-2c5.2-.6 6.7-2.3 6.7-7.9V267.7c0-2.3-2.9-2.3-5.8-2.3H84V228h28v-21c0-49.6 26.5-70 77.3-70 34.1 0 64.7 8.2 64.7 52.8l-50.7 6.1c.3-18.7-4.4-23-16.3-23-18.4 0-19 9.9-19 27.4v23.3c0 2.4-3.5 4.4-.6 4.4zM364 414.7H261.3v-25.1l20.4-2.6c5.2-.6 7.6-1.7 7.6-7.3V271.8c0-4.1-2.9-6.7-6.7-7.9l-24.2-6.4 6.7-29.5h80.2v151.7c0 5.8-2.6 6.4 2.9 7.3l15.7 2.6v25.1zm-21.9-255.5l9 33.2-7.3 7.3-31.2-16.6-31.2 16.6-7.3-7.3 9-33.2-21.8-24.2 3.5-9.6h27.7l15.5-28h9.3l15.5 28h27.7l3.5 9.6-21.9 24.2z"], + "fonticons-fi": [384, 512, [], "f3a2", "M114.4 224h92.4l-15.2 51.2h-76.4V433c0 8-2.8 9.2 4.4 10l59.6 5.6V483H0v-35.2l29.2-2.8c7.2-.8 9.2-3.2 9.2-10.8V278.4c0-3.2-4-3.2-8-3.2H0V224h38.4v-28.8c0-68 36.4-96 106-96 46.8 0 88.8 11.2 88.8 72.4l-69.6 8.4c.4-25.6-6-31.6-22.4-31.6-25.2 0-26 13.6-26 37.6v32c0 3.2-4.8 6-.8 6zM384 483H243.2v-34.4l28-3.6c7.2-.8 10.4-2.4 10.4-10V287c0-5.6-4-9.2-9.2-10.8l-33.2-8.8 9.2-40.4h110v208c0 8-3.6 8.8 4 10l21.6 3.6V483zm-30-347.2l12.4 45.6-10 10-42.8-22.8-42.8 22.8-10-10 12.4-45.6-30-36.4 4.8-10h38L307.2 51H320l21.2 38.4h38l4.8 13.2-30 33.2z"], + "fort-awesome": [512, 512, [], "f286", "M489.2 287.9h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6V146.2c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-6-8-4.6-11.7-4.6v-38c8.3-2 17.1-3.4 25.7-3.4 10.9 0 20.9 4.3 31.4 4.3 4.6 0 27.7-1.1 27.7-8v-60c0-2.6-2-4.6-4.6-4.6-5.1 0-15.1 4.3-24 4.3-9.7 0-20.9-4.3-32.6-4.3-8 0-16 1.1-23.7 2.9v-4.9c5.4-2.6 9.1-8.3 9.1-14.3 0-20.7-31.4-20.8-31.4 0 0 6 3.7 11.7 9.1 14.3v111.7c-3.7 0-11.7-1.4-11.7 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32H128v-32c0-2.6-2-4.6-4.6-4.6H96c-2.6 0-4.6 2-4.6 4.6v178.3H54.8v-32c0-2.6-2-4.6-4.6-4.6H22.8c-2.6 0-4.6 2-4.6 4.6V512h182.9v-96c0-72.6 109.7-72.6 109.7 0v96h182.9V292.5c.1-2.6-1.9-4.6-4.5-4.6zm-288.1-4.5c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64zm146.4 0c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64z"], + "fort-awesome-alt": [512, 512, [], "f3a3", "M211.7 241.1v51.7c0 2.1-1.6 3.7-3.7 3.7h-22.2c-2.1 0-3.7-1.6-3.7-3.7v-51.7c0-2.1 1.6-3.7 3.7-3.7H208c2.1 0 3.7 1.6 3.7 3.7zm114.5-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7h22.2c2.1 0 3.7-1.6 3.7-3.7v-51.7c-.1-2.1-1.7-3.7-3.7-3.7zm-29.1 263.2c-.9.1-1.7.3-2.6.4-1 .2-2.1.3-3.1.5-.9.1-1.8.3-2.8.4-1 .1-2 .3-3 .4-1 .1-2 .2-2.9.3-1 .1-1.9.2-2.9.3-1 .1-2.1.2-3.1.3-.9.1-1.8.2-2.7.2-1.1.1-2.3.1-3.4.2-.8 0-1.7.1-2.5.1-1.3.1-2.6.1-3.9.1-.7 0-1.4.1-2.1.1-2 0-4 .1-6 .1s-4 0-6-.1c-.7 0-1.4 0-2.1-.1-1.3 0-2.6-.1-3.9-.1-.8 0-1.7-.1-2.5-.1-1.1-.1-2.3-.1-3.4-.2-.9-.1-1.8-.1-2.7-.2-1-.1-2.1-.2-3.1-.3-1-.1-1.9-.2-2.9-.3-1-.1-2-.2-2.9-.3-1-.1-2-.2-3-.4-.9-.1-1.8-.3-2.8-.4-1-.1-2.1-.3-3.1-.5-.9-.1-1.7-.3-2.6-.4-65.6-10.9-122.5-47.7-160-99.4-.2-.2-.3-.5-.5-.7-.8-1.1-1.6-2.2-2.3-3.3-.3-.4-.6-.8-.8-1.2-.7-1.1-1.4-2.1-2.1-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.4-2.1-2-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.3-2.2-2-3.3-.2-.4-.5-.8-.7-1.2-2.4-4-4.6-8.1-6.8-12.2-.1-.2-.2-.3-.3-.5-.6-1.1-1.1-2.2-1.7-3.3-.3-.6-.6-1.1-.8-1.7-.5-1-1-2.1-1.5-3.1-.3-.7-.6-1.3-.9-2-.5-1-.9-2-1.4-3l-.9-2.1c-.4-1-.9-2-1.3-3-.3-.7-.6-1.5-.9-2.2l-1.2-3c-.3-.8-.6-1.5-.9-2.3-.4-1-.8-2-1.1-3-.3-.9-.6-1.8-1-2.8-.6-1.6-1.1-3.3-1.7-4.9-.3-.9-.6-1.8-.9-2.8-.3-.9-.5-1.8-.8-2.7-.3-.9-.6-1.9-.8-2.8-.3-.9-.5-1.8-.8-2.7-.3-1-.5-1.9-.8-2.9-.2-.9-.5-1.8-.7-2.7-.3-1-.5-2-.7-3-.2-.9-.4-1.7-.6-2.6-.2-1.1-.5-2.2-.7-3.2-.2-.8-.3-1.6-.5-2.4-.3-1.3-.5-2.7-.8-4-.1-.6-.2-1.1-.3-1.7l-.9-5.7c-.1-.6-.2-1.3-.3-1.9-.2-1.3-.4-2.6-.5-3.9-.1-.8-.2-1.5-.3-2.3-.1-1.2-.3-2.4-.4-3.6-.1-.8-.2-1.6-.2-2.4-.1-1.2-.2-2.4-.3-3.5-.1-.8-.1-1.6-.2-2.4-.1-1.2-.2-2.4-.2-3.7 0-.8-.1-1.5-.1-2.3-.1-1.3-.1-2.7-.2-4 0-.7 0-1.3-.1-2 0-2-.1-4-.1-6 0-53.5 16.9-103 45.8-143.6 2.3-3.2 4.7-6.4 7.1-9.5 4.9-6.2 10.1-12.3 15.6-18 2.7-2.9 5.5-5.7 8.4-8.4 2.9-2.7 5.8-5.4 8.8-8 4.5-3.9 9.1-7.6 13.9-11.2 1.6-1.2 3.2-2.4 4.8-3.5C140 34.2 171.7 20.1 206 13c16.1-3.3 32.9-5 50-5s33.8 1.7 50 5c34.3 7 66 21.1 93.6 40.7 1.6 1.2 3.2 2.3 4.8 3.5 4.8 3.6 9.4 7.3 13.9 11.2 12 10.4 23 21.9 32.8 34.4 2.5 3.1 4.8 6.3 7.1 9.5C487.1 153 504 202.5 504 256c0 2 0 4-.1 6 0 .7 0 1.3-.1 2 0 1.3-.1 2.7-.2 4 0 .8-.1 1.5-.1 2.3-.1 1.2-.1 2.4-.2.7-.1.8-.1 1.6-.2 2.4-.1 1.2-.2 2.4-.3 3.5-.1.8-.2 1.6-.2 2.4-.1 1.2-.3 2.4-.4 3.6-.1.8-.2 1.5-.3 2.3-.2 1.3-.4 2.6-.5 3.9-.1.6-.2 1.3-.3 1.9l-.9 5.7c-.1.6-.2 1.1-.3 1.7-.2 1.3-.5 2.7-.8 4-.2.8-.3 1.6-.5 2.4-.2 1.1-.5 2.2-.7 3.2-.2.9-.4 1.7-.6 2.6-.2 1-.5 2-.7 3-.2.9-.5 1.8-.7 2.7-.3 1-.5 1.9-.8 2.9-.2.9-.5 1.8-.8 2.7-.3.9-.6 1.9-.8 2.8-.3.9-.5 1.8-.8 2.7-.3.9-.6 1.8-.9 2.8-.5 1.6-1.1 3.3-1.7 4.9-.3.9-.6 1.8-1 2.8-.4 1-.7 2-1.1 3-.3.8-.6 1.5-.9 2.3l-1.2 3c-.3.7-.6 1.5-.9 2.2-.4 1-.8 2-1.3 3l-.9 2.1c-.4 1-.9 2-1.4 3-.3.7-.6 1.3-.9 2-.5 1-1 2.1-1.5 3.1-.3.6-.6 1.1-.8 1.7-.6 1.1-1.1 2.2-1.7 3.3-.1.2-.2.3-.3.5-2.2 4.1-4.4 8.2-6.8 12.2-.2.4-.5.8-.7 1.2-.7 1.1-1.3 2.2-2 3.3-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2 3.2-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2.1 3.2-.3.4-.6.8-.8 1.2-.8 1.1-1.5 2.2-2.3 3.3-.2.2-.3.5-.5.7-37.6 54.7-94.5 91.4-160.1 102.4zm117.3-86.2c13-13 24.2-27.4 33.6-42.9v-71.3c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7V326h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-4.8-6.5-3.7-9.5-3.7v-30.7c6.7-1.6 13.8-2.8 20.8-2.8 8.8 0 16.8 3.5 25.4 3.5 3.7 0 22.4-.9 22.4-6.5V93.4c0-2.1-1.6-3.7-3.7-3.7-4.2 0-12.2 3.5-19.4 3.5-7.9 0-16.9-3.5-26.3-3.5-6.5 0-12.9.9-19.2 2.3v-3.9c4.4-2.1 7.4-6.7 7.4-11.5 0-16.8-25.4-16.8-25.4 0 0 4.8 3 9.5 7.4 11.5v90.2c-3 0-9.5-1.1-9.5 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v144H93.5v-25.8c0-2.1-1.6-3.7-3.7-3.7H67.7c-2.1 0-3.7 1.6-3.7 3.7v71.3c9.4 15.5 20.6 29.9 33.6 42.9 20.6 20.6 44.5 36.7 71.2 48 13.9 5.9 28.2 10.3 42.9 13.2v-75.8c0-58.6 88.6-58.6 88.6 0v75.8c14.7-2.9 29-7.4 42.9-13.2 26.7-11.3 50.6-27.4 71.2-48"], + "forumbee": [448, 512, [], "f211", "M5.8 309.7C2 292.7 0 275.5 0 258.3 0 135 99.8 35 223.1 35c16.6 0 33.3 2 49.3 5.5C149 87.5 51.9 186 5.8 309.7zm392.9-189.2C385 103 369 87.8 350.9 75.2c-149.6 44.3-266.3 162.1-309.7 312 12.5 18.1 28 35.6 45.2 49 43.1-151.3 161.2-271.7 312.3-315.7zm15.8 252.7c15.2-25.1 25.4-53.7 29.5-82.8-79.4 42.9-145 110.6-187.6 190.3 30-4.4 58.9-15.3 84.6-31.3 35 13.1 70.9 24.3 107 33.6-9.3-36.5-20.4-74.5-33.5-109.8zm29.7-145.5c-2.6-19.5-7.9-38.7-15.8-56.8C290.5 216.7 182 327.5 137.1 466c18.1 7.6 37 12.5 56.6 15.2C240 367.1 330.5 274.4 444.2 227.7z"], + "foursquare": [368, 512, [], "f180", "M323.1 3H49.9C12.4 3 0 31.3 0 49.1v433.8c0 20.3 12.1 27.7 18.2 30.1 6.2 2.5 22.8 4.6 32.9-7.1C180 356.5 182.2 354 182.2 354c3.1-3.4 3.4-3.1 6.8-3.1h83.4c35.1 0 40.6-25.2 44.3-39.7l48.6-243C373.8 25.8 363.1 3 323.1 3zm-16.3 73.8l-11.4 59.7c-1.2 6.5-9.5 13.2-16.9 13.2H172.1c-12 0-20.6 8.3-20.6 20.3v13c0 12 8.6 20.6 20.6 20.6h90.4c8.3 0 16.6 9.2 14.8 18.2-1.8 8.9-10.5 53.8-11.4 58.8-.9 4.9-6.8 13.5-16.9 13.5h-73.5c-13.5 0-17.2 1.8-26.5 12.6 0 0-8.9 11.4-89.5 108.3-.9.9-1.8.6-1.8-.3V75.9c0-7.7 6.8-16.6 16.6-16.6h219c8.2 0 15.6 7.7 13.5 17.5z"], + "free-code-camp": [576, 512, [], "f2c5", "M69.3 144.5c-41 68.5-36.4 163 1 227C92.5 409.7 120 423.9 120 438c0 6.8-6 13-12.8 13C87.7 451 8 375.5 8 253.2c0-111.5 78-186 97.1-186 6 0 14.9 4.8 14.9 11.1 0 12.7-28.3 28.6-50.7 66.2zm195.8 213.8c4.5 1.8 12.3 5.2 12.3-1.2 0-2.7-2.2-2.9-4.3-3.6-8.5-3.4-14-7.7-19.1-15.2-8.2-12.1-10.1-24.2-10.1-38.6 0-32.1 44.2-37.9 44.2-70 0-12.3-7.7-15.9-7.7-19.3 0-2.2.7-2.2 2.9-2.2 8 0 19.1 13.3 22.5 19.8 2.2 4.6 2.4 6 2.4 11.1 0 7-.7 14.2-.7 21.3 0 27 31.9 19.8 31.9 6.8 0-6-3.6-11.6-3.6-17.4 0-.7 0-1.2.7-1.2 3.4 0 9.4 7.7 11.1 10.1 5.8 8.9 8.5 20.8 8.5 31.4 0 32.4-29.5 49-29.5 56 0 1 2.9 7.7 12.1 1.9 29.7-15.1 53.1-47.6 53.1-89.8 0-33.6-8.7-57.7-32.1-82.6-3.9-4.1-16.4-16.9-22.5-16.9-8.2 0 7.2 18.6 7.2 31.2 0 7.2-4.8 12.3-12.3 12.3-11.6 0-14.5-25.4-15.9-33.3-5.8-33.8-12.8-58.2-46.4-74.1-10.4-5-36.5-11.8-36.5-2.2 0 2.4 2.7 4.1 4.6 5.1 9.2 5.6 19.6 21.4 19.6 38.2 0 46.1-57.7 88.2-57.7 136.2-.2 40.3 28.1 72.6 65.3 86.2zM470.4 67c-6 0-14.4 6.5-14.4 12.6 0 8.7 12.1 19.6 17.6 25.4 81.6 85.1 78.6 214.3 17.6 291-7 8.9-35.3 35.3-35.3 43.5 0 5.1 8.2 11.4 13.2 11.4 25.4 0 98.8-80.8 98.8-185.7C568 145.9 491.8 67 470.4 67zm-42.3 323.1H167c-9.4 0-15.5 7.5-15.5 16.4 0 8.5 7 15.5 15.5 15.5h261.1c9.4 0 11.9-7.5 11.9-16.4 0-8.5-3.5-15.5-11.9-15.5z"], + "freebsd": [448, 512, [], "f3a4", "M303.7 96.2c11.1-11.1 115.5-77 139.2-53.2 23.7 23.7-42.1 128.1-53.2 139.2-11.1 11.1-39.4.9-63.1-22.9-23.8-23.7-34.1-52-22.9-63.1zM109.9 68.1C73.6 47.5 22 24.6 5.6 41.1c-16.6 16.6 7.1 69.4 27.9 105.7 18.5-32.2 44.8-59.3 76.4-78.7zM406.7 174c3.3 11.3 2.7 20.7-2.7 26.1-20.3 20.3-87.5-27-109.3-70.1-18-32.3-11.1-53.4 14.9-48.7 5.7-3.6 12.3-7.6 19.6-11.6-29.8-15.5-63.6-24.3-99.5-24.3-119.1 0-215.6 96.5-215.6 215.6 0 119 96.5 215.6 215.6 215.6S445.3 380.1 445.3 261c0-38.4-10.1-74.5-27.7-105.8-3.9 7-7.6 13.3-10.9 18.8z"], + "fulcrum": [269, 512, [], "f50b", "M70.75 164.14l-35.38 43.55L0 164.14l35.38-43.55 35.37 43.55zM119.23 0L98.69 198.18 47.72 256l50.98 57.82L119.23 512V300.89L78.15 256l41.08-44.89V0zm79.67 164.14l35.38 43.55 35.38-43.55-35.38-43.55-35.38 43.55zm-48.48 46.97L191.5 256l-41.08 44.89V512l20.54-198.18L221.94 256l-50.98-57.82L150.42 0v211.11z"], + "galactic-republic": [496, 512, [], "f50c", "M248 504C111.25 504 0 392.75 0 256S111.25 8 248 8s248 111.25 248 248-111.25 248-248 248zm0-479.47C120.37 24.53 16.53 128.37 16.53 256S120.37 487.47 248 487.47 479.47 383.63 479.47 256 375.63 24.53 248 24.53zm27.62 21.81v24.62a185.933 185.933 0 0 1 83.57 34.54l17.39-17.36c-28.75-22.06-63.3-36.89-100.96-41.8zm-55.37.07c-37.64 4.94-72.16 19.8-100.88 41.85l17.28 17.36h.08c24.07-17.84 52.55-30.06 83.52-34.67V46.41zm12.25 50.17v82.87c-10.04 2.03-19.42 5.94-27.67 11.42l-58.62-58.59-21.93 21.93 58.67 58.67c-5.47 8.23-9.45 17.59-11.47 27.62h-82.9v31h82.9c2.02 10.02 6.01 19.31 11.47 27.54l-58.67 58.69 21.93 21.93 58.62-58.62a77.873 77.873 0 0 0 27.67 11.47v82.9h31v-82.9c10.05-2.03 19.37-6.06 27.62-11.55l58.67 58.69 21.93-21.93-58.67-58.69c5.46-8.23 9.47-17.52 11.5-27.54h82.87v-31h-82.87c-2.02-10.02-6.03-19.38-11.5-27.62l58.67-58.67-21.93-21.93-58.67 58.67c-8.25-5.49-17.57-9.47-27.62-11.5V96.58h-31zm183.24 30.72l-17.36 17.36a186.337 186.337 0 0 1 34.67 83.67h24.62c-4.95-37.69-19.83-72.29-41.93-101.03zm-335.55.13c-22.06 28.72-36.91 63.26-41.85 100.91h24.65c4.6-30.96 16.76-59.45 34.59-83.52l-17.39-17.39zM38.34 283.67c4.92 37.64 19.75 72.18 41.8 100.9l17.36-17.39c-17.81-24.07-29.92-52.57-34.51-83.52H38.34zm394.7 0c-4.61 30.99-16.8 59.5-34.67 83.6l17.36 17.36c22.08-28.74 36.98-63.29 41.93-100.96h-24.62zM136.66 406.38l-17.36 17.36c28.73 22.09 63.3 36.98 100.96 41.93v-24.64c-30.99-4.63-59.53-16.79-83.6-34.65zm222.53.05c-24.09 17.84-52.58 30.08-83.57 34.67v24.57c37.67-4.92 72.21-19.79 100.96-41.85l-17.31-17.39h-.08z"], + "galactic-senate": [512, 512, [], "f50d", "M249.86 33.48v26.07C236.28 80.17 226 168.14 225.39 274.9c11.74-15.62 19.13-33.33 19.13-48.24v-16.88c-.03-5.32.75-10.53 2.19-15.65.65-2.14 1.39-4.08 2.62-5.82 1.23-1.75 3.43-3.79 6.68-3.79 3.24 0 5.45 2.05 6.68 3.79 1.23 1.75 1.97 3.68 2.62 5.82 1.44 5.12 2.22 10.33 2.19 15.65v16.88c0 14.91 7.39 32.62 19.13 48.24-.63-106.76-10.91-194.73-24.49-215.35V33.48h-12.28zm-26.34 147.77c-9.52 2.15-18.7 5.19-27.46 9.08 8.9 16.12 9.76 32.64 1.71 37.29-8 4.62-21.85-4.23-31.36-19.82-11.58 8.79-21.88 19.32-30.56 31.09 14.73 9.62 22.89 22.92 18.32 30.66-4.54 7.7-20.03 7.14-35.47-.96-5.78 13.25-9.75 27.51-11.65 42.42 9.68.18 18.67 2.38 26.18 6.04 17.78-.3 32.77-1.96 40.49-4.22 5.55-26.35 23.02-48.23 46.32-59.51.73-25.55 1.88-49.67 3.48-72.07zm64.96 0c1.59 22.4 2.75 46.52 3.47 72.07 23.29 11.28 40.77 33.16 46.32 59.51 7.72 2.26 22.71 3.92 40.49 4.22 7.51-3.66 16.5-5.85 26.18-6.04-1.9-14.91-5.86-29.17-11.65-42.42-15.44 8.1-30.93 8.66-35.47.96-4.57-7.74 3.6-21.05 18.32-30.66-8.68-11.77-18.98-22.3-30.56-31.09-9.51 15.59-23.36 24.44-31.36 19.82-8.05-4.65-7.19-21.16 1.71-37.29a147.49 147.49 0 0 0-27.45-9.08zm-32.48 8.6c-3.23 0-5.86 8.81-6.09 19.93h-.05v16.88c0 41.42-49.01 95.04-93.49 95.04-52 0-122.75-1.45-156.37 29.17v2.51c9.42 17.12 20.58 33.17 33.18 47.97C45.7 380.26 84.77 360.4 141.2 360c45.68 1.02 79.03 20.33 90.76 40.87.01.01-.01.04 0 .05 7.67 2.14 15.85 3.23 24.04 3.21 8.19.02 16.37-1.07 24.04-3.21.01-.01-.01-.04 0-.05 11.74-20.54 45.08-39.85 90.76-40.87 56.43.39 95.49 20.26 108.02 41.35 12.6-14.8 23.76-30.86 33.18-47.97v-2.51c-33.61-30.62-104.37-29.17-156.37-29.17-44.48 0-93.49-53.62-93.49-95.04v-16.88h-.05c-.23-11.12-2.86-19.93-6.09-19.93zm0 96.59c22.42 0 40.6 18.18 40.6 40.6s-18.18 40.65-40.6 40.65-40.6-18.23-40.6-40.65c0-22.42 18.18-40.6 40.6-40.6zm0 7.64c-18.19 0-32.96 14.77-32.96 32.96S237.81 360 256 360s32.96-14.77 32.96-32.96-14.77-32.96-32.96-32.96zm0 6.14c14.81 0 26.82 12.01 26.82 26.82s-12.01 26.82-26.82 26.82-26.82-12.01-26.82-26.82 12.01-26.82 26.82-26.82zm-114.8 66.67c-10.19.07-21.6.36-30.5 1.66.43 4.42 1.51 18.63 7.11 29.76 9.11-2.56 18.36-3.9 27.62-3.9 41.28.94 71.48 34.35 78.26 74.47l.11 4.7c10.4 1.91 21.19 2.94 32.21 2.94 11.03 0 21.81-1.02 32.21-2.94l.11-4.7c6.78-40.12 36.98-73.53 78.26-74.47 9.26 0 18.51 1.34 27.62 3.9 5.6-11.13 6.68-25.34 7.11-29.76-8.9-1.3-20.32-1.58-30.5-1.66-18.76.42-35.19 4.17-48.61 9.67-12.54 16.03-29.16 30.03-49.58 33.07-.09.02-.17.04-.27.05-.05.01-.11.04-.16.05-5.24 1.07-10.63 1.6-16.19 1.6-5.55 0-10.95-.53-16.19-1.6-.05-.01-.11-.04-.16-.05-.1-.02-.17-.04-.27-.05-20.42-3.03-37.03-17.04-49.58-33.07-13.42-5.49-29.86-9.25-48.61-9.67z"], + "get-pocket": [448, 512, [], "f265", "M407.6 64h-367C18.5 64 0 82.5 0 104.6v135.2C0 364.5 99.7 464 224.2 464c124 0 223.8-99.5 223.8-224.2V104.6c0-22.4-17.7-40.6-40.4-40.6zm-162 268.5c-12.4 11.8-31.4 11.1-42.4 0C89.5 223.6 88.3 227.4 88.3 209.3c0-16.9 13.8-30.7 30.7-30.7 17 0 16.1 3.8 105.2 89.3 90.6-86.9 88.6-89.3 105.5-89.3 16.9 0 30.7 13.8 30.7 30.7 0 17.8-2.9 15.7-114.8 123.2z"], + "gg": [512, 512, [], "f260", "M179.2 230.4l102.4 102.4-102.4 102.4L0 256 179.2 76.8l44.8 44.8-25.6 25.6-19.2-19.2-128 128 128 128 51.5-51.5-77.1-76.5 25.6-25.6zM332.8 76.8L230.4 179.2l102.4 102.4 25.6-25.6-77.1-76.5 51.5-51.5 128 128-128 128-19.2-19.2-25.6 25.6 44.8 44.8L512 256 332.8 76.8z"], + "gg-circle": [512, 512, [], "f261", "M257 8C120 8 9 119 9 256s111 248 248 248 248-111 248-248S394 8 257 8zm-49.5 374.8L81.8 257.1l125.7-125.7 35.2 35.4-24.2 24.2-11.1-11.1-77.2 77.2 77.2 77.2 26.6-26.6-53.1-52.9 24.4-24.4 77.2 77.2-75 75.2zm99-2.2l-35.2-35.2 24.1-24.4 11.1 11.1 77.2-77.2-77.2-77.2-26.5 26.5 53.1 52.9-24.4 24.4-77.2-77.2 75-75L432.2 255 306.5 380.6z"], + "git": [448, 512, [], "f1d3", "M18.8 221.7c0 25.3 16.2 60 41.5 68.5v1c-18.8 8.3-24 50.6 1 65.8v1C34 367 16 384.3 16 414.2c0 51.5 48.8 65.8 91.5 65.8 52 0 90.7-18.7 90.7-76 0-70.5-101-44.5-101-82.8 0-13.5 7.2-18.7 19.7-21.3 41.5-7.7 67.5-40 67.5-82.2 0-7.3-1.5-14.2-4-21 6.7-1.5 13.2-3.3 19.7-5.5v-50.5c-17.2 6.8-35.7 11.8-54.5 11.8-53.8-31-126.8 1.3-126.8 69.2zm87.7 163.8c17 0 41.2 3 41.2 25 0 21.8-19.5 26.3-37.7 26.3-17.3 0-43.3-2.7-43.3-25.2.1-22.3 22.1-26.1 39.8-26.1zM103.3 256c-22 0-31.3-13-31.3-33.8 0-49.3 61-48.8 61-.5 0 20.3-8 34.3-29.7 34.3zM432 305.5v49c-13.3 7.3-30.5 9.8-45.5 9.8-53.5 0-59.8-42.2-59.8-85.7v-87.7h.5v-1c-7 0-7.3-1.6-24 1v-47.5h24c0-22.3.3-31-1.5-41.2h56.7c-2 13.8-1.5 27.5-1.5 41.2h51v47.5s-19.3-1-51-1V281c0 14.8 3.3 32.8 21.8 32.8 9.8 0 21.3-2.8 29.3-8.3zM286 68.7c0 18.7-14.5 36.2-33.8 36.2-19.8 0-34.5-17.2-34.5-36.2 0-19.3 14.5-36.7 34.5-36.7C272 32 286 50 286 68.7zm-6.2 74.5c-1.8 14.6-1.6 199.8 0 217.8h-55.5c1.6-18.1 1.8-203 0-217.8h55.5z"], + "git-square": [448, 512, [], "f1d2", "M140.1 348.5c12.1 0 29.5 2.1 29.5 17.9 0 15.5-13.9 18.8-27 18.8-12.3 0-30.9-2-30.9-18s15.7-18.7 28.4-18.7zm-24.7-116.6c0 14.8 6.6 24.1 22.3 24.1 15.5 0 21.2-10 21.2-24.5.1-34.4-43.5-34.8-43.5.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-241 93.7c-12.3 4.8-25.5 8.4-38.9 8.4-38.5-22.1-90.7.9-90.7 49.5 0 18 11.6 42.9 29.6 48.9v.7c-13.4 5.9-17.1 36.1.7 47v.7c-19.5 6.4-32.3 18.8-32.3 40.2 0 36.8 34.8 47 65.4 47 37.1 0 64.8-13.4 64.8-54.3 0-50.4-72.1-31.8-72.1-59.1 0-9.6 5.2-13.4 14.1-15.2 29.6-5.5 48.2-28.6 48.2-58.7 0-5.2-1.1-10.2-2.9-15 4.8-1.1 9.5-2.3 14.1-3.9v-36.2zm56.8 1.8h-39.6c1.3 10.6 1.1 142.6 0 155.5h39.6c-1.1-12.8-1.2-145.1 0-155.5zm4.5-53.3c0-13.4-10-26.2-24.1-26.2-14.3 0-24.6 12.5-24.6 26.2 0 13.6 10.5 25.9 24.6 25.9 13.7 0 24.1-12.5 24.1-25.9zm104.3 53.3h-36.4c0-9.8-.4-19.6 1.1-29.5h-40.5c1.3 7.3 1.1 13.6 1.1 29.5h-17.1v33.9c11.9-1.9 12.1-.7 17.1-.7v.7h-.4v62.7c0 31.1 4.5 61.2 42.7 61.2 10.7 0 23-1.8 32.5-7v-35c-5.7 3.9-13.9 5.9-20.9 5.9-13.2 0-15.5-12.9-15.5-23.4v-65.2c22.7 0 36.4.7 36.4.7v-33.8z"], + "github": [496, 512, [], "f09b", "M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"], + "github-alt": [480, 512, [], "f113", "M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1zM480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2zm-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3zm-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1z"], + "github-square": [448, 512, [], "f092", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z"], + "gitkraken": [592, 512, [], "f3a6", "M565.7 118.1c-2.3-6.1-9.3-9.2-15.3-6.6-5.7 2.4-8.5 8.9-6.3 14.6 10.9 29 16.9 60.5 16.9 93.3 0 134.6-100.3 245.7-230.2 262.7V358.4c7.9-1.5 15.5-3.6 23-6.2v104c106.7-25.9 185.9-122.1 185.9-236.8 0-91.8-50.8-171.8-125.8-213.3-5.7-3.2-13-.9-15.9 5-2.7 5.5-.6 12.2 4.7 15.1 67.9 37.6 113.9 110 113.9 193.2 0 93.3-57.9 173.1-139.8 205.4v-92.2c14.2-4.5 24.9-17.7 24.9-33.5 0-13.1-6.8-24.4-17.3-30.5 8.3-79.5 44.5-58.6 44.5-83.9V170c0-38-87.9-161.8-129-164.7-2.5-.2-5-.2-7.6 0C251.1 8.3 163.2 132 163.2 170v14.8c0 25.3 36.3 4.3 44.5 83.9-10.6 6.1-17.3 17.4-17.3 30.5 0 15.8 10.6 29 24.8 33.5v92.2c-81.9-32.2-139.8-112-139.8-205.4 0-83.1 46-155.5 113.9-193.2 5.4-3 7.4-9.6 4.7-15.1-2.9-5.9-10.1-8.2-15.9-5-75 41.5-125.8 121.5-125.8 213.3 0 114.7 79.2 210.8 185.9 236.8v-104c7.6 2.5 15.1 4.6 23 6.2v123.7C131.4 465.2 31 354.1 31 219.5c0-32.8 6-64.3 16.9-93.3 2.2-5.8-.6-12.2-6.3-14.6-6-2.6-13 .4-15.3 6.6C14.5 149.7 8 183.8 8 219.5c0 155.1 122.6 281.6 276.3 287.8V361.4c6.8.4 15 .5 23.4 0v145.8C461.4 501.1 584 374.6 584 219.5c0-35.7-6.5-69.8-18.3-101.4zM365.9 275.5c13 0 23.7 10.5 23.7 23.7 0 13.1-10.6 23.7-23.7 23.7-13 0-23.7-10.5-23.7-23.7 0-13.1 10.6-23.7 23.7-23.7zm-139.8 47.3c-13.2 0-23.7-10.7-23.7-23.7s10.5-23.7 23.7-23.7c13.1 0 23.7 10.6 23.7 23.7 0 13-10.5 23.7-23.7 23.7z"], + "gitlab": [512, 512, [], "f296", "M29.782 199.732L256 493.714 8.074 309.699c-6.856-5.142-9.712-13.996-7.141-21.993l28.849-87.974zm75.405-174.806c-3.142-8.854-15.709-8.854-18.851 0L29.782 199.732h131.961L105.187 24.926zm56.556 174.806L256 493.714l94.257-293.982H161.743zm349.324 87.974l-28.849-87.974L256 493.714l247.926-184.015c6.855-5.142 9.711-13.996 7.141-21.993zm-85.404-262.78c-3.142-8.854-15.709-8.854-18.851 0l-56.555 174.806h131.961L425.663 24.926z"], + "gitter": [384, 512, [], "f426", "M66.4 322.5H16V0h50.4v322.5zM166.9 76.1h-50.4V512h50.4V76.1zm100.6 0h-50.4V512h50.4V76.1zM368 76h-50.4v247H368V76z"], + "glide": [448, 512, [], "f2a5", "M252.8 148.6c0 8.8-1.6 17.7-3.4 26.4-5.8 27.8-11.6 55.8-17.3 83.6-1.4 6.3-8.3 4.9-13.7 4.9-23.8 0-30.5-26-30.5-45.5 0-29.3 11.2-68.1 38.5-83.1 4.3-2.5 9.2-4.2 14.1-4.2 11.4 0 12.3 8.3 12.3 17.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 187c0-5.1-20.8-37.7-25.5-39.5-2.2-.9-7.2-2.3-9.6-2.3-23.1 0-38.7 10.5-58.2 21.5l-.5-.5c4.3-29.4 14.6-57.2 14.6-87.4 0-44.6-23.8-62.7-67.5-62.7-71.7 0-108 70.8-108 123.5 0 54.7 32 85 86.3 85 7.5 0 6.9-.6 6.9 2.3-10.5 80.3-56.5 82.9-56.5 58.9 0-24.4 28-36.5 28.3-38-.2-7.6-29.3-17.2-36.7-17.2-21.1 0-32.7 33-32.7 50.6 0 32.3 20.4 54.7 53.3 54.7 48.2 0 83.4-49.7 94.3-91.7 9.4-37.7 7-39.4 12.3-42.1 20-10.1 35.8-16.8 58.4-16.8 11.1 0 19 2.3 36.7 5.2 1.8.1 4.1-1.7 4.1-3.5z"], + "glide-g": [448, 512, [], "f2a6", "M407.1 211.2c-3.5-1.4-11.6-3.8-15.4-3.8-37.1 0-62.2 16.8-93.5 34.5l-.9-.9c7-47.3 23.5-91.9 23.5-140.4C320.8 29.1 282.6 0 212.4 0 97.3 0 39 113.7 39 198.4 39 286.3 90.3 335 177.6 335c12 0 11-1 11 3.8-16.9 128.9-90.8 133.1-90.8 94.6 0-39.2 45-58.6 45.5-61-.3-12.2-47-27.6-58.9-27.6-33.9.1-52.4 51.2-52.4 79.3C32 476 64.8 512 117.5 512c77.4 0 134-77.8 151.4-145.4 15.1-60.5 11.2-63.3 19.7-67.6 32.2-16.2 57.5-27 93.8-27 17.8 0 30.5 3.7 58.9 8.4 2.9 0 6.7-2.9 6.7-5.8 0-8-33.4-60.5-40.9-63.4zm-175.3-84.4c-9.3 44.7-18.6 89.6-27.8 134.3-2.3 10.2-13.3 7.8-22 7.8-38.3 0-49-41.8-49-73.1 0-47 18-109.3 61.8-133.4 7-4.1 14.8-6.7 22.6-6.7 18.6 0 20 13.3 20 28.7-.1 14.3-2.7 28.5-5.6 42.4z"], + "gofore": [400, 512, [], "f3a7", "M324 319.8h-13.2v34.7c-24.5 23.1-56.3 35.8-89.9 35.8-73.2 0-132.4-60.2-132.4-134.4 0-74.1 59.2-134.4 132.4-134.4 35.3 0 68.6 14 93.6 39.4l62.3-63.3C335 55.3 279.7 32 220.7 32 98 32 0 132.6 0 256c0 122.5 97 224 220.7 224 63.2 0 124.5-26.2 171-82.5-2-27.6-13.4-77.7-67.7-77.7zm-12.1-112.5H205.6v89H324c33.5 0 60.5 15.1 76 41.8v-30.6c0-65.2-40.4-100.2-88.1-100.2z"], + "goodreads": [448, 512, [], "f3a8", "M299.9 191.2c5.1 37.3-4.7 79-35.9 100.7-22.3 15.5-52.8 14.1-70.8 5.7-37.1-17.3-49.5-58.6-46.8-97.2 4.3-60.9 40.9-87.9 75.3-87.5 46.9-.2 71.8 31.8 78.2 78.3zM448 88v336c0 30.9-25.1 56-56 56H56c-30.9 0-56-25.1-56-56V88c0-30.9 25.1-56 56-56h336c30.9 0 56 25.1 56 56zM330 313.2s-.1-34-.1-217.3h-29v40.3c-.8.3-1.2-.5-1.6-1.2-9.6-20.7-35.9-46.3-76-46-51.9.4-87.2 31.2-100.6 77.8-4.3 14.9-5.8 30.1-5.5 45.6 1.7 77.9 45.1 117.8 112.4 115.2 28.9-1.1 54.5-17 69-45.2.5-1 1.1-1.9 1.7-2.9.2.1.4.1.6.2.3 3.8.2 30.7.1 34.5-.2 14.8-2 29.5-7.2 43.5-7.8 21-22.3 34.7-44.5 39.5-17.8 3.9-35.6 3.8-53.2-1.2-21.5-6.1-36.5-19-41.1-41.8-.3-1.6-1.3-1.3-2.3-1.3h-26.8c.8 10.6 3.2 20.3 8.5 29.2 24.2 40.5 82.7 48.5 128.2 37.4 49.9-12.3 67.3-54.9 67.4-106.3z"], + "goodreads-g": [384, 512, [], "f3a9", "M42.6 403.3h2.8c12.7 0 25.5 0 38.2.1 1.6 0 3.1-.4 3.6 2.1 7.1 34.9 30 54.6 62.9 63.9 26.9 7.6 54.1 7.8 81.3 1.8 33.8-7.4 56-28.3 68-60.4 8-21.5 10.7-43.8 11-66.5.1-5.8.3-47-.2-52.8l-.9-.3c-.8 1.5-1.7 2.9-2.5 4.4-22.1 43.1-61.3 67.4-105.4 69.1-103 4-169.4-57-172-176.2-.5-23.7 1.8-46.9 8.3-69.7C58.3 47.7 112.3.6 191.6 0c61.3-.4 101.5 38.7 116.2 70.3.5 1.1 1.3 2.3 2.4 1.9V10.6h44.3c0 280.3.1 332.2.1 332.2-.1 78.5-26.7 143.7-103 162.2-69.5 16.9-159 4.8-196-57.2-8-13.5-11.8-28.3-13-44.5zM188.9 36.5c-52.5-.5-108.5 40.7-115 133.8-4.1 59 14.8 122.2 71.5 148.6 27.6 12.9 74.3 15 108.3-8.7 47.6-33.2 62.7-97 54.8-154-9.7-71.1-47.8-120-119.6-119.7z"], + "google": [488, 512, [], "f1a0", "M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z"], + "google-drive": [512, 512, [], "f3aa", "M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z"], + "google-play": [512, 512, [], "f3ab", "M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z"], + "google-plus": [496, 512, [], "f2b3", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm-70.7 372c-68.8 0-124-55.5-124-124s55.2-124 124-124c31.3 0 60.1 11 83 32.3l-33.6 32.6c-13.2-12.9-31.3-19.1-49.4-19.1-42.9 0-77.2 35.5-77.2 78.1s34.2 78.1 77.2 78.1c32.6 0 64.9-19.1 70.1-53.3h-70.1v-42.6h116.9c1.3 6.8 1.9 13.6 1.9 20.7 0 70.8-47.5 121.2-118.8 121.2zm230.2-106.2v35.5H372v-35.5h-35.5v-35.5H372v-35.5h35.5v35.5h35.2v35.5h-35.2z"], + "google-plus-g": [640, 512, [], "f0d5", "M386.061 228.496c1.834 9.692 3.143 19.384 3.143 31.956C389.204 370.205 315.599 448 204.8 448c-106.084 0-192-85.915-192-192s85.916-192 192-192c51.864 0 95.083 18.859 128.611 50.292l-52.126 50.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484 0-118.92 54.221-118.92 121.277 0 67.056 53.436 121.277 118.92 121.277 75.961 0 104.513-54.745 108.965-82.773H204.8v-66.009h181.261zm185.406 6.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001h-55.733z"], + "google-plus-square": [448, 512, [], "f0d4", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM164 356c-55.3 0-100-44.7-100-100s44.7-100 100-100c27 0 49.5 9.8 67 26.2l-27.1 26.1c-7.4-7.1-20.3-15.4-39.8-15.4-34.1 0-61.9 28.2-61.9 63.2 0 34.9 27.8 63.2 61.9 63.2 39.6 0 54.4-28.5 56.8-43.1H164v-34.4h94.4c1 5 1.6 10.1 1.6 16.6 0 57.1-38.3 97.6-96 97.6zm220-81.8h-29v29h-29.2v-29h-29V245h29v-29H355v29h29v29.2z"], + "google-wallet": [448, 512, [], "f1ee", "M156.8 126.8c37.6 60.6 64.2 113.1 84.3 162.5-8.3 33.8-18.8 66.5-31.3 98.3-13.2-52.3-26.5-101.3-56-148.5 6.5-36.4 2.3-73.6 3-112.3zM109.3 200H16.1c-6.5 0-10.5 7.5-6.5 12.7C51.8 267 81.3 330.5 101.3 400h103.5c-16.2-69.7-38.7-133.7-82.5-193.5-3-4-8-6.5-13-6.5zm47.8-88c68.5 108 130 234.5 138.2 368H409c-12-138-68.4-265-143.2-368H157.1zm251.8-68.5c-1.8-6.8-8.2-11.5-15.2-11.5h-88.3c-5.3 0-9 5-7.8 10.3 13.2 46.5 22.3 95.5 26.5 146 48.2 86.2 79.7 178.3 90.6 270.8 15.8-60.5 25.3-133.5 25.3-203 0-73.6-12.1-145.1-31.1-212.6z"], + "gratipay": [496, 512, [], "f184", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm114.6 226.4l-113 152.7-112.7-152.7c-8.7-11.9-19.1-50.4 13.6-72 28.1-18.1 54.6-4.2 68.5 11.9 15.9 17.9 46.6 16.9 61.7 0 13.9-16.1 40.4-30 68.1-11.9 32.9 21.6 22.6 60 13.8 72z"], + "grav": [512, 512, [], "f2d6", "M301.1 212c4.4 4.4 4.4 11.9 0 16.3l-9.7 9.7c-4.4 4.7-11.9 4.7-16.6 0l-10.5-10.5c-4.4-4.7-4.4-11.9 0-16.6l9.7-9.7c4.4-4.4 11.9-4.4 16.6 0l10.5 10.8zm-30.2-19.7c3-3 3-7.8 0-10.5-2.8-3-7.5-3-10.5 0-2.8 2.8-2.8 7.5 0 10.5 3.1 2.8 7.8 2.8 10.5 0zm-26 5.3c-3 2.8-3 7.5 0 10.2 2.8 3 7.5 3 10.5 0 2.8-2.8 2.8-7.5 0-10.2-3-3-7.7-3-10.5 0zm72.5-13.3c-19.9-14.4-33.8-43.2-11.9-68.1 21.6-24.9 40.7-17.2 59.8.8 11.9 11.3 29.3 24.9 17.2 48.2-12.5 23.5-45.1 33.2-65.1 19.1zm47.7-44.5c-8.9-10-23.3 6.9-15.5 16.1 7.4 9 32.1 2.4 15.5-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-66.2 42.6c2.5-16.1-20.2-16.6-25.2-25.7-13.6-24.1-27.7-36.8-54.5-30.4 11.6-8 23.5-6.1 23.5-6.1.3-6.4 0-13-9.4-24.9 3.9-12.5.3-22.4.3-22.4 15.5-8.6 26.8-24.4 29.1-43.2 3.6-31-18.8-59.2-49.8-62.8-22.1-2.5-43.7 7.7-54.3 25.7-23.2 40.1 1.4 70.9 22.4 81.4-14.4-1.4-34.3-11.9-40.1-34.3-6.6-25.7 2.8-49.8 8.9-61.4 0 0-4.4-5.8-8-8.9 0 0-13.8 0-24.6 5.3 11.9-15.2 25.2-14.4 25.2-14.4 0-6.4-.6-14.9-3.6-21.6-5.4-11-23.8-12.9-31.7 2.8.1-.2.3-.4.4-.5-5 11.9-1.1 55.9 16.9 87.2-2.5 1.4-9.1 6.1-13 10-21.6 9.7-56.2 60.3-56.2 60.3-28.2 10.8-77.2 50.9-70.6 79.7.3 3 1.4 5.5 3 7.5-2.8 2.2-5.5 5-8.3 8.3-11.9 13.8-5.3 35.2 17.7 24.4 15.8-7.2 29.6-20.2 36.3-30.4 0 0-5.5-5-16.3-4.4 27.7-6.6 34.3-9.4 46.2-9.1 8 3.9 8-34.3 8-34.3 0-14.7-2.2-31-11.1-41.5 12.5 12.2 29.1 32.7 28 60.6-.8 18.3-15.2 23-15.2 23-9.1 16.6-43.2 65.9-30.4 106 0 0-9.7-14.9-10.2-22.1-17.4 19.4-46.5 52.3-24.6 64.5 26.6 14.7 108.8-88.6 126.2-142.3 34.6-20.8 55.4-47.3 63.9-65 22 43.5 95.3 94.5 101.1 59z"], + "gripfire": [384, 512, [], "f3ac", "M171.8 503.8c0-5.3 4.8-12.2 4.8-22.3 0-15.2-13-39.9-78.1-86.6C64.2 365.8 32 336.4 32 286.6 32 171.9 179.1 110.1 179.1 18c0-3.3-.2-6.7-.6-10 5.1 2.4 39.1 43.3 39.1 90.4 0 80.5-105.1 129.2-105.1 203 0 26.9 16.6 47.2 32.6 69.5 22.5 30.2 44.2 56.9 44.2 86.5-.1 14.5-4.4 29.7-17.5 46.4zm146-241.4c1.5 8.4 2.2 16.6 2.2 24.6 0 51.8-29.4 97.5-67.3 136.8-1 1-2.2 2.4-3.2 2.4-3.6 0-35.5-41.6-35.5-53.2 0 0 41.8-55.7 41.8-96.9 0-10.8-2.7-21.7-9.1-33.4-1.5 32.3-55.7 87.7-58.1 87.7-2.7 0-17.9-22-17.9-42.1 0-5.3 1-10.7 3.2-15.8 2.4-5.5 56.6-72 56.6-116.7 0-6.2-1-12-3.4-17.1l-4-7.2c16.7 6.5 82.6 64.1 94.7 130.9"], + "grunt": [384, 512, [], "f3ad", "M61.3 189.3c-1.1 10 5.2 19.1 5.2 19.1.7-7.5 2.2-12.8 4-16.6.4 10.3 3.2 23.5 12.8 34.1 6.9 7.6 35.6 23.3 54.9 6.1 1 2.4 2.1 5.3 3 8.5 2.9 10.3-2.7 25.3-2.7 25.3s15.1-17.1 13.9-32.5c10.8-.5 21.4-8.4 21.1-19.5 0 0-18.9 10.4-35.5-8.8-9.7-11.2-40.9-42-83.1-31.8 4.3 1 8.9 2.4 13.5 4.1h-.1c-4.2 2-6.5 7.1-7 12zm28.3-1.8c19.5 11 37.4 25.7 44.9 37-5.7 3.3-21.7 10.4-38-1.7-10.3-7.6-9.8-26.2-6.9-35.3zm79.2 233.7c2.2 2.3 1.5 5.3.9 6.8-1.1 2.7-5.5 11.6-13 19.8-2.7 2.9-6.6 4.6-11 4.6-4.3 0-8.7-1.6-11.8-4.3-2.3-2.1-10.2-9.5-13.7-18.6-1.3-3.4-1-6.1.9-8.1 1.3-1.3 4-2.9 9.5-2.9H160c4.1 0 7 .9 8.8 2.7zm62.9-187.9c-1.2 15.5 13.9 32.5 13.9 32.5s-5.6-15-2.7-25.3c.9-3.2 2-6 3-8.5 19.3 17.3 48 1.5 54.8-6.1 9.6-10.6 12.3-23.8 12.8-34.1 1.8 3.8 3.4 9.1 4 16.6 0 0 6.4-9.1 5.2-19.1-.6-5-2.9-10-7-11.8h-.1c4.6-1.8 9.2-3.2 13.5-4.1-42.3-10.2-73.4 20.6-83.1 31.8-16.7 19.2-35.5 8.8-35.5 8.8-.2 10.9 10.4 18.9 21.2 19.3zm17.8-8.8c7.5-11.4 25.4-26 44.9-37 3 9.1 3.4 27.7-7 35.4-16.3 12.1-32.2 5-37.9 1.6-.1.1 0 0 0 0zM263 421.4c1.9 1.9 2.2 4.6.9 7.9-3.5 8.9-11.4 16.1-13.7 18.1-3.1 2.6-7.4 4.2-11.8 4.2s-8.3-1.6-11-4.5c-7.5-8-12-16.7-13-19.3-.6-1.5-1.3-4.4.9-6.7 1.7-1.8 4.7-2.7 8.9-2.7h29.4c5.4.1 8.1 1.7 9.4 3zm-98.3-251.5c9.9 6 18.8 8.1 27.3 8.3 8.5-.2 17.4-2.3 27.3-8.3 0 0-14.5 17.7-27.2 17.8h-.2c-12.7-.2-27.2-17.8-27.2-17.8zm184.5 147.4c-2.4 17.9-13 33.8-24.6 43.7-3.1-22.7-3.7-55.5-3.7-62.4 0-14.7 9.5-24.5 12.2-26.1 2.5-1.5 5.4-3 8.3-4.6 18-9.6 40.4-21.6 40.4-43.7 0-16.2-9.3-23.2-15.4-27.8-.8-.6-1.5-1.1-2.2-1.7-2.1-1.7-3.7-3-4.3-4.4-4.4-9.8-3.6-34.2-1.7-37.6.6-.6 16.7-20.9 11.8-39.2-2-7.4-6.9-13.3-14.1-17-5.3-2.7-11.9-4.2-19.5-4.5-.1-2-.5-3.9-.9-5.9-.6-2.6-1.1-5.3-.9-8.1.4-4.7.8-9 2.2-11.3 8.4-13.3 28.8-17.6 29-17.6l12.3-2.4-8.1-9.5c-.1-.2-17.3-17.5-46.3-17.5-7.9 0-16 1.3-24.1 3.9-24.2 7.8-42.9 30.5-49.4 39.3-3.1-1-6.3-1.9-9.6-2.7-4.2-15.8 9-38.5 9-38.5s-13.6-3-33.7 15.2c-2.6-6.5-8.1-20.5-1.8-37.2C184.6 10.1 177.2 26 175 40.4c-7.6-5.4-6.7-23.1-7.2-27.6-7.5.9-29.2 21.9-28.2 48.3-2 .5-3.9 1.1-5.9 1.7-6.5-8.8-25.1-31.5-49.4-39.3-7.9-2.2-16-3.5-23.9-3.5-29 0-46.1 17.3-46.3 17.5L6 46.9l12.3 2.4c.2 0 20.6 4.3 29 17.6 1.4 2.2 1.8 6.6 2.2 11.3.2 2.8-.4 5.5-.9 8.1-.4 1.9-.8 3.9-.9 5.9-7.7.3-14.2 1.8-19.5 4.5-7.2 3.7-12.1 9.6-14.1 17-5 18.2 11.2 38.5 11.8 39.2 1.9 3.4 2.7 27.8-1.7 37.6-.6 1.4-2.2 2.7-4.3 4.4-.7.5-1.4 1.1-2.2 1.7-6.1 4.6-15.4 11.7-15.4 27.8 0 22.1 22.4 34.1 40.4 43.7 3 1.6 5.8 3.1 8.3 4.6 2.7 1.6 12.2 11.4 12.2 26.1 0 6.9-.6 39.7-3.7 62.4-11.6-9.9-22.2-25.9-24.6-43.8 0 0-29.2 22.6-20.6 70.8 5.2 29.5 23.2 46.1 47 54.7 8.8 19.1 29.4 45.7 67.3 49.6C143 504.3 163 512 192.2 512h.2c29.1 0 49.1-7.7 63.6-19.5 37.9-3.9 58.5-30.5 67.3-49.6 23.8-8.7 41.7-25.2 47-54.7 8.2-48.4-21.1-70.9-21.1-70.9zM305.7 37.7c5.6-1.8 11.6-2.7 17.7-2.7 11 0 19.9 3 24.7 5-3.1 1.4-6.4 3.2-9.7 5.3-2.4-.4-5.6-.8-9.2-.8-10.5 0-20.5 3.1-28.7 8.9-12.3 8.7-18 16.9-20.7 22.4-2.2-1.3-4.5-2.5-7.1-3.7-1.6-.8-3.1-1.5-4.7-2.2 6.1-9.1 19.9-26.5 37.7-32.2zm21 18.2c-.8 1-1.6 2.1-2.3 3.2-3.3 5.2-3.9 11.6-4.4 17.8-.5 6.4-1.1 12.5-4.4 17-4.2.8-8.1 1.7-11.5 2.7-2.3-3.1-5.6-7-10.5-11.2 1.4-4.8 5.5-16.1 13.5-22.5 5.6-4.3 12.2-6.7 19.6-7zM45.6 45.3c-3.3-2.2-6.6-4-9.7-5.3 4.8-2 13.7-5 24.7-5 6.1 0 12 .9 17.7 2.7 17.8 5.8 31.6 23.2 37.7 32.1-1.6.7-3.2 1.4-4.8 2.2-2.5 1.2-4.9 2.5-7.1 3.7-2.6-5.4-8.3-13.7-20.7-22.4-8.3-5.8-18.2-8.9-28.8-8.9-3.4.1-6.6.5-9 .9zm44.7 40.1c-4.9 4.2-8.3 8-10.5 11.2-3.4-.9-7.3-1.9-11.5-2.7C65 89.5 64.5 83.4 64 77c-.5-6.2-1.1-12.6-4.4-17.8-.7-1.1-1.5-2.2-2.3-3.2 7.4.3 14 2.6 19.5 7 8 6.3 12.1 17.6 13.5 22.4zM58.1 259.9c-2.7-1.6-5.6-3.1-8.4-4.6-14.9-8-30.2-16.3-30.2-30.5 0-11.1 4.3-14.6 8.9-18.2l.5-.4c.7-.6 1.4-1.2 2.2-1.8-.9 7.2-1.9 13.3-2.7 14.9 0 0 12.1-15 15.7-44.3 1.4-11.5-1.1-34.3-5.1-43 .2 4.9 0 9.8-.3 14.4-.4-.8-.8-1.6-1.3-2.2-3.2-4-11.8-17.5-9.4-26.6.9-3.5 3.1-6 6.7-7.8 3.8-1.9 8.8-2.9 15.1-2.9 12.3 0 25.9 3.7 32.9 6 25.1 8 55.4 30.9 64.1 37.7.2.2.4.3.4.3l5.6 3.9-3.5-5.8c-.2-.3-19.1-31.4-53.2-46.5 2-2.9 7.4-8.1 21.6-15.1 21.4-10.5 46.5-15.8 74.3-15.8 27.9 0 52.9 5.3 74.3 15.8 14.2 6.9 19.6 12.2 21.6 15.1-34 15.1-52.9 46.2-53.1 46.5l-3.5 5.8 5.6-3.9s.2-.1.4-.3c8.7-6.8 39-29.8 64.1-37.7 7-2.2 20.6-6 32.9-6 6.3 0 11.3 1 15.1 2.9 3.5 1.8 5.7 4.4 6.7 7.8 2.5 9.1-6.1 22.6-9.4 26.6-.5.6-.9 1.3-1.3 2.2-.3-4.6-.5-9.5-.3-14.4-4 8.8-6.5 31.5-5.1 43 3.6 29.3 15.7 44.3 15.7 44.3-.8-1.6-1.8-7.7-2.7-14.9.7.6 1.5 1.2 2.2 1.8l.5.4c4.6 3.7 8.9 7.1 8.9 18.2 0 14.2-15.4 22.5-30.2 30.5-2.9 1.5-5.7 3.1-8.4 4.6-8.7 5-18 16.7-19.1 34.2-.9 14.6.9 49.9 3.4 75.9-12.4 4.8-26.7 6.4-39.7 6.8-2-4.1-3.9-8.5-5.5-13.1-.7-2-19.6-51.1-26.4-62.2 5.5 39 17.5 73.7 23.5 89.6-3.5-.5-7.3-.7-11.7-.7h-117c-4.4 0-8.3.3-11.7.7 6-15.9 18.1-50.6 23.5-89.6-6.8 11.2-25.7 60.3-26.4 62.2-1.6 4.6-3.5 9-5.5 13.1-13-.4-27.2-2-39.7-6.8 2.5-26 4.3-61.2 3.4-75.9-.9-17.4-10.3-29.2-19-34.2zM34.8 404.6c-12.1-20-8.7-54.1-3.7-59.1 10.9 34.4 47.2 44.3 74.4 45.4-2.7 4.2-5.2 7.6-7 10l-1.4 1.4c-7.2 7.8-8.6 18.5-4.1 31.8-22.7-.1-46.3-9.8-58.2-29.5zm45.7 43.5c6 1.1 12.2 1.9 18.6 2.4 3.5 8 7.4 15.9 12.3 23.1-14.4-5.9-24.4-16-30.9-25.5zM192 498.2c-60.6-.1-78.3-45.8-84.9-64.7-3.7-10.5-3.4-18.2.9-23.1 2.9-3.3 9.5-7.2 24.6-7.2h118.8c15.1 0 21.8 3.9 24.6 7.2 4.2 4.8 4.5 12.6.9 23.1-6.6 18.8-24.3 64.6-84.9 64.7zm80.6-24.6c4.9-7.2 8.8-15.1 12.3-23.1 6.4-.5 12.6-1.3 18.6-2.4-6.5 9.5-16.5 19.6-30.9 25.5zm76.6-69c-12 19.7-35.6 29.3-58.1 29.7 4.5-13.3 3.1-24.1-4.1-31.8-.4-.5-.9-1-1.4-1.5-1.8-2.4-4.3-5.8-7-10 27.2-1.2 63.5-11 74.4-45.4 5 5 8.4 39.1-3.8 59z"], + "gulp": [256, 512, [], "f3ae", "M209.8 391.1l-14.1 24.6-4.6 80.2c0 8.9-28.3 16.1-63.1 16.1s-63.1-7.2-63.1-16.1l-5.8-79.4-14.9-25.4c41.2 17.3 126 16.7 165.6 0zm-196-253.3l13.6 125.5c5.9-20 20.8-47 40-55.2 6.3-2.7 12.7-2.7 18.7.9 5.2 3 9.6 9.3 10.1 11.8 1.2 6.5-2 9.1-4.5 9.1-3 0-5.3-4.6-6.8-7.3-4.1-7.3-10.3-7.6-16.9-2.8-6.9 5-12.9 13.4-17.1 20.7-5.1 8.8-9.4 18.5-12 28.2-1.5 5.6-2.9 14.6-.6 19.9 1 2.2 2.5 3.6 4.9 3.6 5 0 12.3-6.6 15.8-10.1 4.5-4.5 10.3-11.5 12.5-16l5.2-15.5c2.6-6.8 9.9-5.6 9.9 0 0 10.2-3.7 13.6-10 34.7-5.8 19.5-7.6 25.8-7.6 25.8-.7 2.8-3.4 7.5-6.3 7.5-1.2 0-2.1-.4-2.6-1.2-1-1.4-.9-5.3-.8-6.3.2-3.2 6.3-22.2 7.3-25.2-2 2.2-4.1 4.4-6.4 6.6-5.4 5.1-14.1 11.8-21.5 11.8-3.4 0-5.6-.9-7.7-2.4l7.6 79.6c2 5 39.2 17.1 88.2 17.1 49.1 0 86.3-12.2 88.2-17.1l10.9-94.6c-5.7 5.2-12.3 11.6-19.6 14.8-5.4 2.3-17.4 3.8-17.4-5.7 0-5.2 9.1-14.8 14.4-21.5 1.4-1.7 4.7-5.9 4.7-8.1 0-2.9-6-2.2-11.7 2.5-3.2 2.7-6.2 6.3-8.7 9.7-4.3 6-6.6 11.2-8.5 15.5-6.2 14.2-4.1 8.6-9.1 22-5 13.3-4.2 11.8-5.2 14-.9 1.9-2.2 3.5-4 4.5-1.9 1-4.5.9-6.1-.3-.9-.6-1.3-1.9-1.3-3.7 0-.9.1-1.8.3-2.7 1.5-6.1 7.8-18.1 15-34.3 1.6-3.7 1-2.6.8-2.3-6.2 6-10.9 8.9-14.4 10.5-5.8 2.6-13 2.6-14.5-4.1-.1-.4-.1-.8-.2-1.2-11.8 9.2-24.3 11.7-20-8.1-4.6 8.2-12.6 14.9-22.4 14.9-4.1 0-7.1-1.4-8.6-5.1-2.3-5.5 1.3-14.9 4.6-23.8 1.7-4.5 4-9.9 7.1-16.2 1.6-3.4 4.2-5.4 7.6-4.5.6.2 1.1.4 1.6.7 2.6 1.8 1.6 4.5.3 7.2-3.8 7.5-7.1 13-9.3 20.8-.9 3.3-2 9 1.5 9 2.4 0 4.7-.8 6.9-2.4 4.6-3.4 8.3-8.5 11.1-13.5 2-3.6 4.4-8.3 5.6-12.3.5-1.7 1.1-3.3 1.8-4.8 1.1-2.5 2.6-5.1 5.2-5.1 1.3 0 2.4.5 3.2 1.5 1.7 2.2 1.3 4.5.4 6.9-2 5.6-4.7 10.6-6.9 16.7-1.3 3.5-2.7 8-2.7 11.7 0 3.4 3.7 2.6 6.8 1.2 2.4-1.1 4.8-2.8 6.8-4.5 1.2-4.9.9-3.8 26.4-68.2 1.3-3.3 3.7-4.7 6.1-4.7 1.2 0 2.2.4 3.2 1.1 1.7 1.3 1.7 4.1 1 6.2-.7 1.9-.6 1.3-4.5 10.5-5.2 12.1-8.6 20.8-13.2 31.9-1.9 4.6-7.7 18.9-8.7 22.3-.6 2.2-1.3 5.8 1 5.8 5.4 0 19.3-13.1 23.1-17 .2-.3.5-.4.9-.6.6-1.9 1.2-3.7 1.7-5.5 1.4-3.8 2.7-8.2 5.3-11.3.8-1 1.7-1.6 2.7-1.6 2.8 0 4.2 1.2 4.2 4 0 1.1-.7 5.1-1.1 6.2 1.4-1.5 2.9-3 4.5-4.5 15-13.9 25.7-6.8 25.7.2 0 7.4-8.9 17.7-13.8 23.4-1.6 1.9-4.9 5.4-5 6.4 0 1.3.9 1.8 2.2 1.8 2 0 6.4-3.5 8-4.7 5-3.9 11.8-9.9 16.6-14.1l14.8-136.8c-30.5 17.1-197.6 17.2-228.3.2zm229.7-8.5c0 21-231.2 21-231.2 0 0-8.8 51.8-15.9 115.6-15.9 9 0 17.8.1 26.3.4l12.6-48.7L228.1.6c1.4-1.4 5.8-.2 9.9 3.5s6.6 7.9 5.3 9.3l-.1.1L185.9 74l-10 40.7c39.9 2.6 67.6 8.1 67.6 14.6zm-69.4 4.6c0-.8-.9-1.5-2.5-2.1l-.2.8c0 1.3-5 2.4-11.1 2.4s-11.1-1.1-11.1-2.4c0-.1 0-.2.1-.3l.2-.7c-1.8.6-3 1.4-3 2.3 0 2.1 6.2 3.7 13.7 3.7 7.7.1 13.9-1.6 13.9-3.7z"], + "hacker-news": [448, 512, [], "f1d4", "M0 32v448h448V32H0zm21.2 197.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z"], + "hacker-news-square": [448, 512, [], "f3af", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM21.2 229.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z"], + "hips": [640, 512, [], "f452", "M0 80.2c0-1.8.9-2.7 2.7-2.7h40.9c1.9 0 2.8.9 2.8 2.7v81.2c15.2-7.7 31.7-11.5 49.8-11.4 24 .1 44.2 6.2 60.3 18 18.7 13.5 28 31.9 28 55.3v136.1c0 1.9-.9 2.8-2.7 2.8h-27.3c-9.1 0-16.4-7.3-16.4-16.3V223.3c0-.9 2.7-27-45.8-27-48.6 0-45.8 26.2-45.8 27v136.1c0 1.9-.9 2.8-2.8 2.8h-41c-1.8 0-2.7-.9-2.7-2.8V80.2zm497.7 221.5c13.7 10.2 34.1 19.1 58.4 19.1 23.3 0 32.8-4.5 36.5-13.6 3-7.9-.6-16.1-12.2-21.2l-53.6-23.5c-21.4-9.4-33.8-24-37.2-43.6-5.7-33.7 22.2-53.3 22.7-53.7 13.2-9.6 32-15.4 58.5-15.4 19 0 37.4 3.3 55.1 9.9 1.3.5 1.9 1.3 1.9 2.6V207c0 2.1-2.3 3.4-4 2.4-39.7-20.7-76.6-12.3-84-6.8-6.6 4.9-6 12.5 2.6 16.1L600 244c16.5 7.1 28.1 18.4 34.9 34.1 5.5 12.6 6.6 25.6 3.1 39.1-9.6 36.9-44.9 45.5-45.6 45.8-10.5 3.1-23.6 4.3-36.3 4.3-16.6 0-32.6-2.7-48.2-8.2-9.7-3.4-14.6-10.3-14.6-20.7V304c0-2.1 2.3-3.7 4.4-2.3zM376.2 149.8c-31.7 0-104.2 20.1-104.2 103.5v183.5c0 .8.6 2.7 2.7 2.7h40.9c1.9 0 2.8-.9 2.8-2.7V348c16.5 12.7 35.8 19.1 57.7 19.1 60.5 0 108.7-48.5 108.7-108.7.1-60.3-48.2-108.6-108.6-108.6zm0 170.9c-17.2 0-31.9-6.1-44-18.2-12.2-12.2-18.2-26.8-18.2-44 0-34.5 27.6-62.2 62.2-62.2 34.5 0 62.2 27.6 62.2 62.2.1 34.3-27.3 62.2-62.2 62.2zm-124.6 38.7c0 1.9-.9 2.8-2.8 2.8h-40.9c-1.6 0-2.7-1.4-2.7-2.8V157.6c0-1.4 1.1-2.8 2.7-2.8h40.9c1.9 0 2.8.9 2.8 2.8v201.8M228.3 72.5c15.9 0 28.9 12.7 28.9 28.9 0 15.8-12.7 28.9-28.9 28.9s-28.9-13.3-28.9-28.9c.1-16 13-28.9 28.9-28.9"], + "hire-a-helper": [512, 512, [], "f3b0", "M443.1 0H71.9C67.9 37.3 37.4 67.8 0 71.7v371.5c37.4 4.9 66 32.4 71.9 68.8h372.2c3-36.4 32.5-65.8 67.9-69.8V71.7c-36.4-5.9-65-35.3-68.9-71.7zm-37 404.9c-36.3 0-18.8-2-55.1-2-35.8 0-21 2-56.1 2-5.9 0-4.9-8.2 0-9.8 22.8-7.6 22.9-10.2 24.6-12.8 10.4-15.6 5.9-83 5.9-113 0-5.3-6.4-12.8-13.8-12.8H200.4c-7.4 0-13.8 7.5-13.8 12.8 0 30-4.5 97.4 5.9 113 1.7 2.5 1.8 5.2 24.6 12.8 4.9 1.6 6 9.8 0 9.8-35.1 0-20.3-2-56.1-2-36.3 0-18.8 2-55.1 2-7.9 0-5.8-10.8 0-10.8 10.2-3.4 13.5-3.5 21.7-13.8 7.7-12.9 7.9-44.4 7.9-127.8V151.3c0-22.2-12.2-28.3-28.6-32.4-8.8-2.2-4-11.8 1-11.8 36.5 0 20.6 2 57.1 2 32.7 0 16.5-2 49.2-2 3.3 0 8.5 8.3 1 10.8-4.9 1.6-27.6 3.7-27.6 39.3 0 45.6-.2 55.8 1 68.8 0 1.3 2.3 12.8 12.8 12.8h109.2c10.5 0 12.8-11.5 12.8-12.8 1.2-13 1-23.2 1-68.8 0-35.6-22.7-37.7-27.6-39.3-7.5-2.5-2.3-10.8 1-10.8 32.7 0 16.5 2 49.2 2 36.5 0 20.6-2 57.1-2 4.9 0 9.9 9.6 1 11.8-16.4 4.1-28.6 10.3-28.6 32.4v101.2c0 83.4.1 114.9 7.9 127.8 8.2 10.2 11.4 10.4 21.7 13.8 5.8 0 7.8 10.8 0 10.8z"], + "hooli": [640, 512, [], "f427", "M508.4 352h57.9V156.7L508.4 184v168zm73.7-110.5V352H640V241.5h-57.9zm-250.7-8.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.2-1.1-50.4 17.1c-1.9 1.9-3.7 3.9-5.3 6-38.2-29.6-72.5-46.5-102.1-61.1v-20.7l-22.5 10.6c-54.4-22.1-89-18.2-97.3.1 0 0-24.9 32.8 61.9 110.9v-31c-48.8-54.6-39-76.1-35.3-79.2 13.5-11.4 37.5-8 64.4 2.1L65.2 184v63.3c13.1 14.7 30.5 31.5 53.5 50.4l4.5 3.6v-29.8c0-6.9 1.7-18.2 10.8-18.2s10.6 6.9 10.6 15V317c18 12.2 37.3 22.1 57.7 29.6v-93.9c0-18.7-13.4-37.4-40.6-37.4-15.8-.1-30.5 8.2-38.5 21.9v-54.3c41.9 20.9 83.9 46.5 99.9 58.3-10.2 14.6-9.3 28.1-9.3 43.7 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.7-33.8 16.7-52.5 0-18.5 1.5-34.2-16.7-52.3zm-39.7 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm185.7-71.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.3-1.1-50.4 17.1c-18.2 18.2-16.8 33.9-16.8 52.6 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.8-33.8 16.8-52.5-.1-18.8 1.3-34.5-16.8-52.6zm-39.8 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm173.5-73c15.9 0 28.9-12.9 28.9-28.9s-12.9-24.5-28.9-24.5c-15.9 0-28.9 8.6-28.9 24.5s12.9 28.9 28.9 28.9zM144.5 352l38.3.8c-13.2-4.6-26-10.2-38.3-16.8v16zm-21.4 0v-28.6c-6.5-4.2-13-8.7-19.4-13.6-14.8-11.2-27.5-21.7-38.5-31.5V352h57.9zm59.7.8c36.5 12.5 69.9 14.2 94.7 7.2-19.9.2-45.8-2.6-75.3-13.3v5.3l-19.4.8z"], + "hornbill": [509, 512, [], "f592", "M75.37 370.3c2.14 15.83-5.77 31.98-20.94 39.29-18.85 9.1-41.55 1.17-50.68-17.68-9.08-18.83-1.13-41.58 17.7-50.65 7.05-3.4 14.63-4.42 21.85-3.38-78.28-111.35 52-190.53 52-190.53-5.86 43.04-8.24 91.16-8.24 91.16-67.31 41.45.92 64.06 39.81 72.87 19.77 53.62 71.18 91.94 131.66 91.94 1.92 0 3.77-.21 5.67-.28l.11 18.86c-99.22 1.39-158.7-29.14-188.94-51.6zM183.38 42.6c.89-7-.1-14.33-3.39-21.15-9.1-18.84-31.82-26.78-50.66-17.69-18.86 9.1-26.8 31.83-17.69 50.68 6.98 14.47 22.02 22.42 37.18 21.23-22.55 29.91-53.83 89.57-52.42 190.03l21.84-.15c-.02-.9-.14-1.77-.14-2.68 0-58.95 36.37-109.33 87.85-130.16 8.01-37.75 30.74-114.3 73.84-44.29 0 0 48.14 2.38 91.18 8.24 0-.01-77.84-128.03-187.59-54.06zm304.18 134.17c18.84-9.09 26.81-31.81 17.7-50.65-9.1-18.85-31.83-26.77-50.67-17.69-15.27 7.37-23.19 23.69-20.87 39.64-31.71-21.94-89.84-49.05-183.45-47.74l.14 22.5c2.7-.15 5.39-.41 8.14-.41 59.3 0 109.9 36.8 130.49 88.76 39.1 9.02 105.06 31.58 38.46 72.54 0 0-2.34 48.13-8.21 91.16 0 0 133.45-81.16 48.96-194.61 6.43.5 13.07-.49 19.31-3.5zM373.05 436.24c21.43-32.46 46.42-89.69 45.14-179.66l-19.52.14c.08 2.06.3 4.07.3 6.15 0 60.27-38.05 111.55-91.39 131.45-8.85 38.95-31.44 106.66-72.77 39.49 0 0-48.12-2.34-91.19-8.22 0 0 79.92 131.34 191.9 50.97.31 4.72 1.45 9.45 3.64 13.97 9.06 18.89 31.8 26.78 50.64 17.71 18.86-9.1 26.79-31.83 17.7-50.65-6.56-13.62-20.26-21.43-34.45-21.35z"], + "hotjar": [448, 512, [], "f3b1", "M414.9 161.5C340.2 29 121.1 0 121.1 0S222.2 110.4 93 197.7C11.3 252.8-21 324.4 14 402.6c26.8 59.9 83.5 84.3 144.6 93.4-29.2-55.1-6.6-122.4-4.1-129.6 57.1 86.4 165 0 110.8-93.9 71 15.4 81.6 138.6 27.1 215.5 80.5-25.3 134.1-88.9 148.8-145.6 15.5-59.3 3.7-127.9-26.3-180.9z"], + "houzz": [414, 512, [], "f27c", "M258.9 330.7H154.3V480H0V32h109.5v104.5l305.1 85.6V480H258.9V330.7z"], + "html5": [384, 512, [], "f13b", "M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z"], + "hubspot": [512, 512, [], "f3b2", "M267.4 211.6c-25.1 23.7-40.8 57.3-40.8 94.6 0 29.3 9.7 56.3 26 78L203.1 434c-4.4-1.6-9.1-2.5-14-2.5-10.8 0-20.9 4.2-28.5 11.8-7.6 7.6-11.8 17.8-11.8 28.6s4.2 20.9 11.8 28.5c7.6 7.6 17.8 11.6 28.5 11.6 10.8 0 20.9-3.9 28.6-11.6 7.6-7.6 11.8-17.8 11.8-28.5 0-4.2-.6-8.2-1.9-12.1l50-50.2c22 16.9 49.4 26.9 79.3 26.9 71.9 0 130-58.3 130-130.2 0-65.2-47.7-119.2-110.2-128.7V116c17.5-7.4 28.2-23.8 28.2-42.9 0-26.1-20.9-47.9-47-47.9S311.2 47 311.2 73.1c0 19.1 10.7 35.5 28.2 42.9v61.2c-15.2 2.1-29.6 6.7-42.7 13.6-27.6-20.9-117.5-85.7-168.9-124.8 1.2-4.4 2-9 2-13.8C129.8 23.4 106.3 0 77.4 0 48.6 0 25.2 23.4 25.2 52.2c0 28.9 23.4 52.3 52.2 52.3 9.8 0 18.9-2.9 26.8-7.6l163.2 114.7zm89.5 163.6c-38.1 0-69-30.9-69-69s30.9-69 69-69 69 30.9 69 69-30.9 69-69 69z"], + "imdb": [448, 512, [], "f2d8", "M350.5 288.7c0 5.4 1.6 14.4-6.2 14.4-1.6 0-3-.8-3.8-2.4-2.2-5.1-1.1-44.1-1.1-44.7 0-3.8-1.1-12.7 4.9-12.7 7.3 0 6.2 7.3 6.2 12.7v32.7zM265 229.9c0-9.7 1.6-16-10.3-16v83.7c12.2.3 10.3-8.7 10.3-18.4v-49.3zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM21.3 228.8c-.1.1-.2.3-.3.4h.3v-.4zM97 192H64v127.8h33V192zm113.3 0h-43.1l-7.6 59.9c-2.7-20-5.4-40.1-8.7-59.9h-42.8v127.8h29v-84.5l12.2 84.5h20.6l11.6-86.4v86.4h28.7V192zm86.3 45.3c0-8.1.3-16.8-1.4-24.4-4.3-22.5-31.4-20.9-49-20.9h-24.6v127.8c86.1.1 75 6 75-82.5zm85.9 17.3c0-17.3-.8-30.1-22.2-30.1-8.9 0-14.9 2.7-20.9 9.2V192h-31.7v127.8h29.8l1.9-8.1c5.7 6.8 11.9 9.8 20.9 9.8 19.8 0 22.2-15.2 22.2-30.9v-36z"], + "instagram": [448, 512, [], "f16d", "M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"], + "internet-explorer": [512, 512, [], "f26b", "M483.049 159.706c10.855-24.575 21.424-60.438 21.424-87.871 0-72.722-79.641-98.371-209.673-38.577-107.632-7.181-211.221 73.67-237.098 186.457 30.852-34.862 78.271-82.298 121.977-101.158C125.404 166.85 79.128 228.002 43.992 291.725 23.246 329.651 0 390.94 0 436.747c0 98.575 92.854 86.5 180.251 42.006 31.423 15.43 66.559 15.573 101.695 15.573 97.124 0 184.249-54.294 216.814-146.022H377.927c-52.509 88.593-196.819 52.996-196.819-47.436H509.9c6.407-43.581-1.655-95.715-26.851-141.162zM64.559 346.877c17.711 51.15 53.703 95.871 100.266 123.304-88.741 48.94-173.267 29.096-100.266-123.304zm115.977-108.873c2-55.151 50.276-94.871 103.98-94.871 53.418 0 101.981 39.72 103.981 94.871H180.536zm184.536-187.6c21.425-10.287 48.563-22.003 72.558-22.003 31.422 0 54.274 21.717 54.274 53.722 0 20.003-7.427 49.007-14.569 67.867-26.28-42.292-65.986-81.584-112.263-99.586z"], + "ioxhost": [640, 512, [], "f208", "M616 160h-67.3C511.2 70.7 422.9 8 320 8 183 8 72 119 72 256c0 16.4 1.6 32.5 4.7 48H24c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h67.3c37.5 89.3 125.8 152 228.7 152 137 0 248-111 248-248 0-16.4-1.6-32.5-4.7-48H616c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24zm-96 96c0 110.5-89.5 200-200 200-75.7 0-141.6-42-175.5-104H424c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24H125.8c-3.8-15.4-5.8-31.4-5.8-48 0-110.5 89.5-200 200-200 75.7 0 141.6 42 175.5 104H216c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h298.2c3.8 15.4 5.8 31.4 5.8 48zm-304-24h208c13.3 0 24 10.7 24 24 0 13.2-10.7 24-24 24H216c-13.3 0-24-10.7-24-24 0-13.2 10.7-24 24-24z"], + "itunes": [448, 512, [], "f3b4", "M223.6 80.3C129 80.3 52.5 157 52.5 251.5S129 422.8 223.6 422.8s171.2-76.7 171.2-171.2c0-94.6-76.7-171.3-171.2-171.3zm79.4 240c-3.2 13.6-13.5 21.2-27.3 23.8-12.1 2.2-22.2 2.8-31.9-5-11.8-10-12-26.4-1.4-36.8 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 3.2-3.6 2.2-2 2.2-80.8 0-5.6-2.7-7.1-8.4-6.1-4 .7-91.9 17.1-91.9 17.1-5 1.1-6.7 2.6-6.7 8.3 0 116.1.5 110.8-1.2 118.5-2.1 9-7.6 15.8-14.9 19.6-8.3 4.6-23.4 6.6-31.4 5.2-21.4-4-28.9-28.7-14.4-42.9 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 5-5.7.9-127 2.6-133.7.4-2.6 1.5-4.8 3.5-6.4 2.1-1.7 5.8-2.7 6.7-2.7 101-19 113.3-21.4 115.1-21.4 5.7-.4 9 3 9 8.7-.1 170.6.4 161.4-1 167.6zM345.2 32H102.8C45.9 32 0 77.9 0 134.8v242.4C0 434.1 45.9 480 102.8 480h242.4c57 0 102.8-45.9 102.8-102.8V134.8C448 77.9 402.1 32 345.2 32zM223.6 444c-106.3 0-192.5-86.2-192.5-192.5S117.3 59 223.6 59s192.5 86.2 192.5 192.5S329.9 444 223.6 444z"], + "itunes-note": [384, 512, [], "f3b5", "M381.9 388.2c-6.4 27.4-27.2 42.8-55.1 48-24.5 4.5-44.9 5.6-64.5-10.2-23.9-20.1-24.2-53.4-2.7-74.4 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 6.4-7.2 4.4-4.1 4.4-163.2 0-11.2-5.5-14.3-17-12.3-8.2 1.4-185.7 34.6-185.7 34.6-10.2 2.2-13.4 5.2-13.4 16.7 0 234.7 1.1 223.9-2.5 239.5-4.2 18.2-15.4 31.9-30.2 39.5-16.8 9.3-47.2 13.4-63.4 10.4-43.2-8.1-58.4-58-29.1-86.6 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 10.1-11.5 1.8-256.6 5.2-270.2.8-5.2 3-9.6 7.1-12.9 4.2-3.5 11.8-5.5 13.4-5.5 204-38.2 228.9-43.1 232.4-43.1 11.5-.8 18.1 6 18.1 17.6.2 344.5 1.1 326-1.8 338.5z"], + "java": [377, 512, [], "f4e4", "M121.6 396s-19.6 11.4 13.9 15.2c40.6 4.6 61.3 4 106-4.5 0 0 11.8 7.4 28.2 13.8C169.5 463.4 42.9 418 121.6 396m-12.2-56.1s-21.9 16.2 11.6 19.7c43.3 4.5 77.6 4.8 136.8-6.6 0 0 8.2 8.3 21.1 12.8-121.3 35.5-256.3 2.9-169.5-25.9m103.2-95.1c24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3.1 0-175.2 43.8-91.5 140.2m132.6 192.6s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6.7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2 204.2 33.2 372.4-14.9 319.4-38.8M131 281.8s-93.1 22.1-33 30.1c25.4 3.4 76 2.6 123.1-1.3 38.5-3.2 77.2-10.2 77.2-10.2s-13.6 5.8-23.4 12.5c-94.5 24.9-277 13.3-224.5-12.1 44.5-21.4 80.6-19 80.6-19m167 93.3c96.1-49.9 51.6-97.9 20.6-91.4-7.6 1.6-11 3-11 3s2.8-4.4 8.2-6.3c61.3-21.6 108.5 63.6-19.8 97.3 0-.1 1.5-1.4 2-2.6M240 0s53.2 53.2-50.5 135c-83.1 65.6-19 103.1 0 145.8-48.5-43.8-84.1-82.3-60.2-118.2C164.4 110.1 261.5 84.5 240 0m-99.5 510.4c92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6"], + "jedi-order": [448, 512, [], "f50e", "M231.89 335.72l31.44-45.89-20.18 55.5 62.56 9.09-62.56 9.08 24.22 47.43s-30.22-31.77-34.49-36.25c1.76 68.78 2.19 85.7 2.19 85.7s154.4-71.65 68.62-230.09c0 0 106.97-118.07 10.09-190.73 0 0 165.5 99.91 60.55 271.46 0 0 86.78-84.77 41.37-170.54 0 0 78.71 111.01-17.16 233.11 0 0 26.24-16.15 49.45-77.71 0 0-16.93 183.26-221.96 185.66v.02h-4.08v-.02C16.93 479.14 0 295.88 0 295.88c23.21 61.56 49.44 77.71 49.44 77.71-95.87-122.11-17.15-233.11-17.15-233.11-45.41 85.78 41.38 170.54 41.38 170.54-104.95-171.56 60.54-271.46 60.54-271.46-96.88 72.66 10.09 190.73 10.09 190.73-85.78 158.44 68.62 230.09 68.62 230.09s.43-16.93 2.19-85.7l-34.48 36.25 24.22-47.43-62.56-9.08 62.56-9.09-20.18-55.5 31.44 45.89c2.25-87.85 7.82-305.82 7.85-306.85l.01-2.43.02 1 .03-1 .01 2.43c.05 1.72 5.61 219.2 7.86 306.85z"], + "jenkins": [512, 512, [], "f3b6", "M487.1 425c-1.4-11.2-19-23.1-28.2-31.9-5.1-5-29-23.1-30.4-29.9-1.4-6.6 9.7-21.5 13.3-28.9 5.1-10.7 8.8-23.7 11.3-32.6 18.8-66.1 20.7-156.9-6.2-211.2-10.2-20.6-38.6-49-56.4-62.5-42-31.7-119.6-35.3-170.1-16.6-14.1 5.2-27.8 9.8-40.1 17.1-33.1 19.4-68.3 32.5-78.1 71.6-24.2 10.8-31.5 41.8-30.3 77.8.2 7 4.1 15.8 2.7 22.4-.7 3.3-5.2 7.6-6.1 9.8-11.6 27.7-2.3 64 11.1 83.7 8.1 11.9 21.5 22.4 39.2 25.2.7 10.6 3.3 19.7 8.2 30.4 3.1 6.8 14.7 19 10.4 27.7-2.2 4.4-21 13.8-27.3 17.6C89 407.2 73.7 415 54.2 429c-12.6 9-32.3 10.2-29.2 31.1 2.1 14.1 10.1 31.6 14.7 45.8.7 2 1.4 4.1 2.1 6h422c4.9-15.3 9.7-30.9 14.6-47.2 3.4-11.4 10.2-27.8 8.7-39.7zM205.9 33.7c1.8-.5 3.4.7 4.9 2.4-.2 5.2-5.4 5.1-8.9 6.8-5.4 6.7-13.4 9.8-20 17.2-6.8 7.5-14.4 27.7-23.4 30-4.5 1.1-9.7-.8-13.6-.5-10.4.7-17.7 6-28.3 7.5 13.6-29.9 56.1-54 89.3-63.4zm-104.8 93.6c13.5-14.9 32.1-24.1 54.8-25.9 11.7 29.7-8.4 65-.9 97.6 2.3 9.9 10.2 25.4-2.4 25.7.3-28.3-34.8-46.3-61.3-29.6-1.8-21.5-4.9-51.7 9.8-67.8zm36.7 200.2c-1-4.1-2.7-12.9-2.3-15.1 1.6-8.7 17.1-12.5 11-24.7-11.3-.1-13.8 10.2-24.1 11.3-26.7 2.6-45.6-35.4-44.4-58.4 1-19.5 17.6-38.2 40.1-35.8 16 1.8 21.4 19.2 24.5 34.7 9.2.5 22.5-.4 26.9-7.6-.6-17.5-8.8-31.6-8.2-47.7 1-30.3 17.5-57.6 4.8-87.4 13.6-30.9 53.5-55.3 83.1-70 36.6-18.3 94.9-3.7 129.3 15.8 19.7 11.1 34.4 32.7 48.3 50.7-19.5-5.8-36.1 4.2-33.1 20.3 16.3-14.9 44.2-.2 52.5 16.4 7.9 15.8 7.8 39.3 9 62.8 2.9 57-10.4 115.9-39.1 157.1-7.7 11-14.1 23-24.9 30.6-26 18.2-65.4 34.7-99.2 23.4-44.7-15-65-44.8-89.5-78.8.7 18.7 13.8 34.1 26.8 48.4 11.3 12.5 25 26.6 39.7 32.4-12.3-2.9-31.1-3.8-36.2 7.2-28.6-1.9-55.1-4.8-68.7-24.2-10.6-15.4-21.4-41.4-26.3-61.4zm222 124.1c4.1-3 11.1-2.9 17.4-3.6-5.4-2.7-13-3.7-19.3-2.2-.1-4.2-2-6.8-3.2-10.2 10.6-3.8 35.5-28.5 49.6-20.3 6.7 3.9 9.5 26.2 10.1 37 .4 9-.8 18-4.5 22.8-18.8-.6-35.8-2.8-50.7-7 .9-6.1-1-12.1.6-16.5zm-17.2-20c-16.8.8-26-1.2-38.3-10.8.2-.8 1.4-.5 1.5-1.4 18 8 40.8-3.3 59-4.9-7.9 5.1-14.6 11.6-22.2 17.1zm-12.1 33.2c-1.6-9.4-3.5-12-2.8-20.2 25-16.6 29.7 28.6 2.8 20.2zM226 438.6c-11.6-.7-48.1-14-38.5-23.7 9.4 6.5 27.5 4.9 41.3 7.3.8 4.4-2.8 10.2-2.8 16.4zM57.7 497.1c-4.3-12.7-9.2-25.1-14.8-36.9 30.8-23.8 65.3-48.9 102.2-63.5 2.8-1.1 23.2 25.4 26.2 27.6 16.5 11.7 37 21 56.2 30.2 1.2 8.8 3.9 20.2 8.7 35.5.7 2.3 1.4 4.7 2.2 7.2H57.7zm240.6 5.7h-.8c.3-.2.5-.4.8-.5v.5zm7.5-5.7c2.1-1.4 4.3-2.8 6.4-4.3 1.1 1.4 2.2 2.8 3.2 4.3h-9.6zm15.1-24.7c-10.8 7.3-20.6 18.3-33.3 25.2-6 3.3-27 11.7-33.4 10.2-3.6-.8-3.9-5.3-5.4-9.5-3.1-9-10.1-23.4-10.8-37-.8-17.2-2.5-46 16-42.4 14.9 2.9 32.3 9.7 43.9 16.1 7.1 3.9 11.1 8.6 21.9 9.5-.1 1.4-.1 2.8-.2 4.3-5.9 3.9-15.3 3.8-21.8 7.1 9.5.4 17 2.7 23.5 5.9-.1 3.4-.3 7-.4 10.6zm53.4 24.7h-14c-.1-3.2-2.8-5.8-6.1-5.8s-5.9 2.6-6.1 5.8h-17.4c-2.8-4.4-5.7-8.6-8.9-12.5 2.1-2.2 4-4.7 6-6.9 9 3.7 14.8-4.9 21.7-4.2 7.9.8 14.2 11.7 25.4 11l-.6 12.6zm8.7 0c.2-4 .4-7.8.6-11.5 15.6-7.3 29 1.3 35.7 11.5H383zm83.4-37c-2.3 11.2-5.8 24-9.9 37.1-.2-.1-.4-.1-.6-.1H428c.6-1.1 1.2-2.2 1.9-3.3-2.6-6.1-9-8.7-10.9-15.5 12.1-22.7 6.5-93.4-24.2-78.5 4.3-6.3 15.6-11.5 20.8-19.3 13 10.4 20.8 20.3 33.2 31.4 6.8 6 20 13.3 21.4 23.1.8 5.5-2.6 18.9-3.8 25.1zM222.2 130.5c5.4-14.9 27.2-34.7 45-32 7.7 1.2 18 8.2 12.2 17.7-30.2-7-45.2 12.6-54.4 33.1-8.1-2-4.9-13.1-2.8-18.8zm184.1 63.1c8.2-3.6 22.4-.7 29.6-5.3-4.2-11.5-10.3-21.4-9.3-37.7.5 0 1 0 1.4.1 6.8 14.2 12.7 29.2 21.4 41.7-5.7 13.5-43.6 25.4-43.1 1.2zm20.4-43zm-117.2 45.7c-6.8-10.9-19-32.5-14.5-45.3 6.5 11.9 8.6 24.4 17.8 33.3 4.1 4 12.2 9 8.2 20.2-.9 2.7-7.8 8.6-11.7 9.7-14.4 4.3-47.9.9-36.6-17.1 11.9.7 27.9 7.8 36.8-.8zm27.3 70c3.8 6.6 1.4 18.7 12.1 20.6 20.2 3.4 43.6-12.3 58.1-17.8 9-15.2-.8-20.7-8.9-30.5-16.6-20-38.8-44.8-38-74.7 6.7-4.9 7.3 7.4 8.2 9.7 8.7 20.3 30.4 46.2 46.3 63.5 3.9 4.3 10.3 8.4 11 11.2 2.1 8.2-5.4 18-4.5 23.5-21.7 13.9-45.8 29.1-81.4 25.6-7.4-6.7-10.3-21.4-2.9-31.1zm-201.3-9.2c-6.8-3.9-8.4-21-16.4-21.4-11.4-.7-9.3 22.2-9.3 35.5-7.8-7.1-9.2-29.1-3.5-40.3-6.6-3.2-9.5 3.6-13.1 5.9 4.7-34.1 49.8-15.8 42.3 20.3zm299.6 28.8c-10.1 19.2-24.4 40.4-54 41-.6-6.2-1.1-15.6 0-19.4 22.7-2.2 36.6-13.7 54-21.6zm-141.9 12.4c18.9 9.9 53.6 11 79.3 10.2 1.4 5.6 1.3 12.6 1.4 19.4-33 1.8-72-6.4-80.7-29.6zm92.2 46.7c-1.7 4.3-5.3 9.3-9.8 11.1-12.1 4.9-45.6 8.7-62.4-.3-10.7-5.7-17.5-18.5-23.4-26-2.8-3.6-16.9-12.9-.2-12.9 13.1 32.7 58 29 95.8 28.1z"], + "joget": [496, 512, [], "f3b7", "M227.5 468.7c-9-13.6-19.9-33.3-23.7-42.4-5.7-13.7-27.2-45.6 31.2-67.1 51.7-19.1 176.7-16.5 208.8-17.6-4 9-8.6 17.9-13.9 26.6-40.4 65.5-110.4 101.5-182 101.5-6.8 0-13.6-.4-20.4-1M66.1 143.9C128 43.4 259.6 12.2 360.1 74.1c74.8 46.1 111.2 130.9 99.3 212.7-24.9-.5-179.3-3.6-230.3-4.9-55.5-1.4-81.7-20.8-58.5-48.2 23.2-27.4 51.1-40.7 68.9-51.2 17.9-10.5 27.3-33.7-23.6-29.7C87.3 161.5 48.6 252.1 37.6 293c-8.8-49.7-.1-102.7 28.5-149.1m-29.2-18c-71.9 116.6-35.6 269.3 81 341.2 116.6 71.9 269.3 35.6 341.2-80.9 71.9-116.6 35.6-269.4-81-341.2-40.5-25.1-85.5-37-129.9-37C165 8 83.8 49.9 36.9 125.9m244.4 110.4c-31.5 20.5-65.3 31.3-65.3 31.3l169.5-1.6 46.5-23.4s3.6-9.5-19.1-15.5c-22.7-6-57 11.3-86.7 27.2-29.7 15.8-31.1 8.2-31.1 8.2s40.2-28.1 50.7-34.5c10.5-6.4 31.9-14 13.4-24.6-3.2-1.8-6.7-2.7-10.4-2.7-17.8 0-41.5 18.7-67.5 35.6"], + "joomla": [448, 512, [], "f1aa", "M.6 92.1C.6 58.8 27.4 32 60.4 32c30 0 54.5 21.9 59.2 50.2 32.6-7.6 67.1.6 96.5 30l-44.3 44.3c-20.5-20.5-42.6-16.3-55.4-3.5-14.3 14.3-14.3 37.9 0 52.2l99.5 99.5-44 44.3c-87.7-87.2-49.7-49.7-99.8-99.7-26.8-26.5-35-64.8-24.8-98.9C20.4 144.6.6 120.7.6 92.1zm129.5 116.4l44.3 44.3c10-10 89.7-89.7 99.7-99.8 14.3-14.3 37.6-14.3 51.9 0 12.8 12.8 17 35-3.5 55.4l44 44.3c31.2-31.2 38.5-67.6 28.9-101.2 29.2-4.1 51.9-29.2 51.9-59.5 0-33.2-26.8-60.1-59.8-60.1-30.3 0-55.4 22.5-59.5 51.6-33.8-9.9-71.7-1.5-98.3 25.1-18.3 19.1-71.1 71.5-99.6 99.9zm266.3 152.2c8.2-32.7-.9-68.5-26.3-93.9-11.8-12.2 5 4.7-99.5-99.7l-44.3 44.3 99.7 99.7c14.3 14.3 14.3 37.6 0 51.9-12.8 12.8-35 17-55.4-3.5l-44 44.3c27.6 30.2 68 38.8 102.7 28 5.5 27.4 29.7 48.1 58.9 48.1 33 0 59.8-26.8 59.8-60.1 0-30.2-22.5-55-51.6-59.1zm-84.3-53.1l-44-44.3c-87 86.4-50.4 50.4-99.7 99.8-14.3 14.3-37.6 14.3-51.9 0-13.1-13.4-16.9-35.3 3.2-55.4l-44-44.3c-30.2 30.2-38 65.2-29.5 98.3-26.7 6-46.2 29.9-46.2 58.2C0 453.2 26.8 480 59.8 480c28.6 0 52.5-19.8 58.6-46.7 32.7 8.2 68.5-.6 94.2-26 32.1-32 12.2-12.4 99.5-99.7z"], + "js": [448, 512, [], "f3b8", "M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"], + "js-square": [448, 512, [], "f3b9", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM243.8 381.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"], + "jsfiddle": [576, 512, [], "f1cc", "M510.634 237.462c-4.727-2.621-5.664-5.748-6.381-10.776-2.352-16.488-3.539-33.619-9.097-49.095-35.895-99.957-153.99-143.386-246.849-91.646-27.37 15.25-48.971 36.369-65.493 63.903-3.184-1.508-5.458-2.71-7.824-3.686-30.102-12.421-59.049-10.121-85.331 9.167-25.531 18.737-36.422 44.548-32.676 76.408.355 3.025-1.967 7.621-4.514 9.545-39.712 29.992-56.031 78.065-41.902 124.615 13.831 45.569 57.514 79.796 105.608 81.433 30.291 1.031 60.637.546 90.959.539 84.041-.021 168.09.531 252.12-.48 52.664-.634 96.108-36.873 108.212-87.293 11.54-48.074-11.144-97.3-56.832-122.634zm21.107 156.88c-18.23 22.432-42.343 35.253-71.28 35.65-56.874.781-113.767.23-170.652.23 0 .7-163.028.159-163.728.154-43.861-.332-76.739-19.766-95.175-59.995-18.902-41.245-4.004-90.848 34.186-116.106 9.182-6.073 12.505-11.566 10.096-23.136-5.49-26.361 4.453-47.956 26.42-62.981 22.987-15.723 47.422-16.146 72.034-3.083 10.269 5.45 14.607 11.564 22.198-2.527 14.222-26.399 34.557-46.727 60.671-61.294 97.46-54.366 228.37 7.568 230.24 132.697.122 8.15 2.412 12.428 9.848 15.894 57.56 26.829 74.456 96.122 35.142 144.497zm-87.789-80.499c-5.848 31.157-34.622 55.096-66.666 55.095-16.953-.001-32.058-6.545-44.079-17.705-27.697-25.713-71.141-74.98-95.937-93.387-20.056-14.888-41.99-12.333-60.272 3.782-49.996 44.071 15.859 121.775 67.063 77.188 4.548-3.96 7.84-9.543 12.744-12.844 8.184-5.509 20.766-.884 13.168 10.622-17.358 26.284-49.33 38.197-78.863 29.301-28.897-8.704-48.84-35.968-48.626-70.179 1.225-22.485 12.364-43.06 35.414-55.965 22.575-12.638 46.369-13.146 66.991 2.474C295.68 280.7 320.467 323.97 352.185 343.47c24.558 15.099 54.254 7.363 68.823-17.506 28.83-49.209-34.592-105.016-78.868-63.46-3.989 3.744-6.917 8.932-11.41 11.72-10.975 6.811-17.333-4.113-12.809-10.353 20.703-28.554 50.464-40.44 83.271-28.214 31.429 11.714 49.108 44.366 42.76 78.186z"], + "keybase": [412, 512, [], "f4f5", "M177.2 430.9c0 9.8-8 17.8-17.8 17.8s-17.8-8-17.8-17.8 8-17.8 17.8-17.8c9.8-.1 17.8 7.9 17.8 17.8zM270 413c-9.8 0-17.8 8-17.8 17.8s8 17.8 17.8 17.8 17.8-8 17.8-17.8-8-17.8-17.8-17.8zm142.3-36c0 38.9-7.6 73.9-22.2 103h-27.3c23.5-38.7 30.5-94.8 22.4-134.3-16.1 29.5-52.1 38.6-85.9 28.8-127.8-37.5-192.5 19.7-234.6 50.3l18.9-59.3-39.9 42.3c4.8 26.7 15.7 51.3 31.2 72.3H46.1c-9.7-15.8-17.2-33-22.2-51.3L.1 454c0-74.9-5.5-147.6 61.5-215.2 20.2-20.4 43.7-36.2 69.1-46.7-6.8-13.5-9.5-29.2-7.8-46l-19.9-1.2c-17.9-1.1-31.6-16.5-30.6-34.4v-.1L74 84.2c1.1-17.1 15.4-30.6 32.5-30.6 1.3 0-.3-.1 28.2 1.7 13.9.8 21.5 9.8 22.8 11.4 7.1-10.4 14.5-20.5 24.6-34.5l20.6 12.1c-13.6 29-9.1 36.2-9 36.3 3.9 0 13.9-.5 32.4 5.7C246 92.9 262 107 271 126c.4.9 15.5 29 1.2 62.6 19 6.1 51.3 19.9 82.4 51.8 36.6 37.6 57.7 87.4 57.7 136.6zM128 122.3c3.2-10 7.7-19.7 13.1-29.4.1-2 2.2-13.1-7.8-13.8-28.5-1.8-26.3-1.6-26.7-1.6-4.6 0-8.3 3.5-8.6 8.1l-1.6 26.2c-.3 4.7 3.4 8.8 8.1 9.1l23.5 1.4zm25.8 61.8c5.6 9.4 14.1 16.1 22.3 20 0-21.2 28.5-41.9 52.8-17.5l8.4 10.3c20.8-18.8 19.4-45.3 12.1-60.9-13.8-29.1-46.9-32-54.3-31.7-10.3.4-19.7-5.4-23.7-15.3-13.7 21.2-37.2 62.5-17.6 95.1zm82.9 68.4L217 268.6c-1.9 1.6-2.2 4.4-.6 6.3l8.9 10.9c1 1.2 3.8 2.7 6.3.6l19.6-16 5.5 6.8c4.9 6 13.8-1.4 9-7.3-63.6-78.3-41.5-51.1-55.3-68.1-4.7-6-13.9 1.4-9 7.3 1.9 2.3 18.4 22.6 19.8 24.3l-9.6 7.9c-4.6 3.8 2.6 13.3 7.4 9.4l9.7-8 8 9.8zm118.4 25.7c-16.9-23.7-42.6-46.7-73.4-60.4-7.9-3.5-15-6.1-22.9-8.6-2 2.2-4.1 4.3-6.4 6.2l31.9 39.2c10.4 12.7 8.5 31.5-4.2 41.9-1.3 1.1-13.1 10.7-29 4.9-2.9 2.3-10.1 9.9-22.2 9.9-8.6 0-16.6-3.8-22.1-10.5l-8.9-10.9c-6.3-7.8-7.9-17.9-5-26.8-8.2-9.9-8.3-21.3-4.6-30-7.2-1.3-26.7-6.2-42.7-21.4-55.8 20.7-88 64.4-101.3 91.2-14.9 30.2-18.8 60.9-19.9 90.2 8.2-8.7-3.9 4.1 114-120.9l-29.9 93.6c57.8-31.1 124-36 197.4-14.4 23.6 6.9 45.1 1.6 56-13.9 11.1-15.6 8.5-37.7-6.8-59.3zM110.6 107.3l15.6 1 1-15.6-15.6-1-1 15.6z"], + "keycdn": [512, 512, [], "f3ba", "M63.8 409.3l60.5-59c32.1 42.8 71.1 66 126.6 67.4 30.5.7 60.3-7 86.4-22.4 5.1 5.3 18.5 19.5 20.9 22-32.2 20.7-69.6 31.1-108.1 30.2-43.3-1.1-84.6-16.7-117.7-44.4.3-.6-38.2 37.5-38.6 37.9 9.5 29.8-13.1 62.4-46.3 62.4C20.7 503.3 0 481.7 0 454.9c0-34.3 33.1-56.6 63.8-45.6zm354.9-252.4c19.1 31.3 29.6 67.4 28.7 104-1.1 44.8-19 87.5-48.6 121 .3.3 23.8 25.2 24.1 25.5 9.6-1.3 19.2 2 25.9 9.1 11.3 12 10.9 30.9-1.1 42.4-12 11.3-30.9 10.9-42.4-1.1-6.7-7-9.4-16.8-7.6-26.3-24.9-26.6-44.4-47.2-44.4-47.2 42.7-34.1 63.3-79.6 64.4-124.2.7-28.9-7.2-57.2-21.1-82.2l22.1-21zM104 53.1c6.7 7 9.4 16.8 7.6 26.3l45.9 48.1c-4.7 3.8-13.3 10.4-22.8 21.3-25.4 28.5-39.6 64.8-40.7 102.9-.7 28.9 6.1 57.2 20 82.4l-22 21.5C72.7 324 63.1 287.9 64.2 250.9c1-44.6 18.3-87.6 47.5-121.1l-25.3-26.4c-9.6 1.3-19.2-2-25.9-9.1-11.3-12-10.9-30.9 1.1-42.4C73.5 40.7 92.2 41 104 53.1zM464.9 8c26 0 47.1 22.4 47.1 48.3S490.9 104 464.9 104c-6.3.1-14-1.1-15.9-1.8l-62.9 59.7c-32.7-43.6-76.7-65.9-126.9-67.2-30.5-.7-60.3 6.8-86.2 22.4l-21.1-22C184.1 74.3 221.5 64 260 64.9c43.3 1.1 84.6 16.7 117.7 44.6l41.1-38.6c-1.5-4.7-2.2-9.6-2.2-14.5C416.5 29.7 438.9 8 464.9 8zM256.7 113.4c5.5 0 10.9.4 16.4 1.1 78.1 9.8 133.4 81.1 123.8 159.1-9.8 78.1-81.1 133.4-159.1 123.8-78.1-9.8-133.4-81.1-123.8-159.2 9.3-72.4 70.1-124.6 142.7-124.8zm-59 119.4c.6 22.7 12.2 41.8 32.4 52.2l-11 51.7h73.7l-11-51.7c20.1-10.9 32.1-29 32.4-52.2-.4-32.8-25.8-57.5-58.3-58.3-32.1.8-57.3 24.8-58.2 58.3zM256 160"], + "kickstarter": [448, 512, [], "f3bb", "M400 480H48c-26.4 0-48-21.6-48-48V80c0-26.4 21.6-48 48-48h352c26.4 0 48 21.6 48 48v352c0 26.4-21.6 48-48 48zM199.6 178.5c0-30.7-17.6-45.1-39.7-45.1-25.8 0-40 19.8-40 44.5v154.8c0 25.8 13.7 45.6 40.5 45.6 21.5 0 39.2-14 39.2-45.6v-41.8l60.6 75.7c12.3 14.9 39 16.8 55.8 0 14.6-15.1 14.8-36.8 4-50.4l-49.1-62.8 40.5-58.7c9.4-13.5 9.5-34.5-5.6-49.1-16.4-15.9-44.6-17.3-61.4 7l-44.8 64.7v-38.8z"], + "kickstarter-k": [384, 512, [], "f3bc", "M147.3 114.4c0-56.2-32.5-82.4-73.4-82.4C26.2 32 0 68.2 0 113.4v283c0 47.3 25.3 83.4 74.9 83.4 39.8 0 72.4-25.6 72.4-83.4v-76.5l112.1 138.3c22.7 27.2 72.1 30.7 103.2 0 27-27.6 27.3-67.4 7.4-92.2l-90.8-114.8 74.9-107.4c17.4-24.7 17.5-63.1-10.4-89.8-30.3-29-82.4-31.6-113.6 12.8L147.3 185v-70.6z"], + "korvue": [446, 512, [], "f42f", "M386.5 34h-327C26.8 34 0 60.8 0 93.5v327.1C0 453.2 26.8 480 59.5 480h327.1c33 0 59.5-26.8 59.5-59.5v-327C446 60.8 419.2 34 386.5 34zM87.1 120.8h96v116l61.8-116h110.9l-81.2 132H87.1v-132zm161.8 272.1l-65.7-113.6v113.6h-96V262.1h191.5l88.6 130.8H248.9z"], + "laravel": [640, 512, [], "f3bd", "M637.5 241.6c-4.2-4.8-62.8-78.1-73.1-90.5-10.3-12.4-15.4-10.2-21.7-9.3-6.4.9-80.5 13.4-89.1 14.8-8.6 1.5-14 4.9-8.7 12.3 4.7 6.6 53.4 75.7 64.2 90.9l-193.7 46.4L161.2 48.7c-6.1-9.1-7.4-12.3-21.4-11.6-14 .6-120.9 9.5-128.5 10.2-7.6.6-16 4-8.4 22s129 279.6 132.4 287.2c3.4 7.6 12.2 20 32.8 15 21.1-5.1 94.3-24.2 134.3-34.7 21.1 38.3 64.2 115.9 72.2 127 10.6 14.9 18 12.4 34.3 7.4 12.8-3.9 199.6-71.1 208-74.5 8.4-3.5 13.6-5.9 7.9-14.4-4.2-6.2-53.5-72.2-79.3-106.8 17.7-4.7 80.6-21.4 87.3-23.3 7.9-2 9-5.8 4.7-10.6zm-352.2 72c-2.3.5-110.8 26.5-116.6 27.8-5.8 1.3-5.8.7-6.5-1.3-.7-2-129-266.7-130.8-270-1.8-3.3-1.7-5.9 0-5.9s102.5-9 106-9.2c3.6-.2 3.2.6 4.5 2.8 0 0 142.2 245.4 144.6 249.7 2.6 4.3 1.1 5.6-1.2 6.1zm306 57.4c1.7 2.7 3.5 4.5-2 6.4-5.4 2-183.7 62.1-187.1 63.6-3.5 1.5-6.2 2-10.6-4.5s-62.4-106.8-62.4-106.8L518 280.6c4.7-1.5 6.2-2.5 9.2 2.2 2.9 4.8 62.4 85.5 64.1 88.2zm12.1-134.1c-4.2.9-73.6 18.1-73.6 18.1l-56.7-77.8c-1.6-2.3-2.9-4.5 1.1-5s68.4-12.2 71.3-12.8c2.9-.7 5.4-1.5 9 3.4 3.6 4.9 52.6 67 54.5 69.4 1.8 2.3-1.4 3.7-5.6 4.7z"], + "lastfm": [512, 512, [], "f202", "M225.8 367.1l-18.8-51s-30.5 34-76.2 34c-40.5 0-69.2-35.2-69.2-91.5 0-72.1 36.4-97.9 72.1-97.9 66.5 0 74.8 53.3 100.9 134.9 18.8 56.9 54 102.6 155.4 102.6 72.7 0 122-22.3 122-80.9 0-72.9-62.7-80.6-115-92.1-25.8-5.9-33.4-16.4-33.4-34 0-19.9 15.8-31.7 41.6-31.7 28.2 0 43.4 10.6 45.7 35.8l58.6-7c-4.7-52.8-41.1-74.5-100.9-74.5-52.8 0-104.4 19.9-104.4 83.9 0 39.9 19.4 65.1 68 76.8 44.9 10.6 79.8 13.8 79.8 45.7 0 21.7-21.1 30.5-61 30.5-59.2 0-83.9-31.1-97.9-73.9-32-96.8-43.6-163-161.3-163C45.7 113.8 0 168.3 0 261c0 89.1 45.7 137.2 127.9 137.2 66.2 0 97.9-31.1 97.9-31.1z"], + "lastfm-square": [448, 512, [], "f203", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-92.2 312.9c-63.4 0-85.4-28.6-97.1-64.1-16.3-51-21.5-84.3-63-84.3-22.4 0-45.1 16.1-45.1 61.2 0 35.2 18 57.2 43.3 57.2 28.6 0 47.6-21.3 47.6-21.3l11.7 31.9s-19.8 19.4-61.2 19.4c-51.3 0-79.9-30.1-79.9-85.8 0-57.9 28.6-92 82.5-92 73.5 0 80.8 41.4 100.8 101.9 8.8 26.8 24.2 46.2 61.2 46.2 24.9 0 38.1-5.5 38.1-19.1 0-19.9-21.8-22-49.9-28.6-30.4-7.3-42.5-23.1-42.5-48 0-40 32.3-52.4 65.2-52.4 37.4 0 60.1 13.6 63 46.6l-36.7 4.4c-1.5-15.8-11-22.4-28.6-22.4-16.1 0-26 7.3-26 19.8 0 11 4.8 17.6 20.9 21.3 32.7 7.1 71.8 12 71.8 57.5.1 36.7-30.7 50.6-76.1 50.6z"], + "leanpub": [576, 512, [], "f212", "M386.539 111.485l15.096 248.955-10.979-.275c-36.232-.824-71.64 8.783-102.657 27.997-31.016-19.214-66.424-27.997-102.657-27.997-45.564 0-82.07 10.705-123.516 27.723L93.117 129.6c28.546-11.803 61.484-18.115 92.226-18.115 41.173 0 73.836 13.175 102.657 42.544 27.723-28.271 59.013-41.721 98.539-42.544zM569.07 448c-25.526 0-47.485-5.215-70.542-15.645-34.31-15.645-69.993-24.978-107.871-24.978-38.977 0-74.934 12.901-102.657 40.623-27.723-27.723-63.68-40.623-102.657-40.623-37.878 0-73.561 9.333-107.871 24.978C55.239 442.236 32.731 448 8.303 448H6.93L49.475 98.859C88.726 76.626 136.486 64 181.775 64 218.83 64 256.984 71.685 288 93.095 319.016 71.685 357.17 64 394.225 64c45.289 0 93.049 12.626 132.3 34.859L569.07 448zm-43.368-44.741l-34.036-280.246c-30.742-13.999-67.248-21.41-101.009-21.41-38.428 0-74.385 12.077-102.657 38.702-28.272-26.625-64.228-38.702-102.657-38.702-33.761 0-70.267 7.411-101.009 21.41L50.298 403.259c47.211-19.487 82.894-33.486 135.045-33.486 37.604 0 70.817 9.606 102.657 29.644 31.84-20.038 65.052-29.644 102.657-29.644 52.151 0 87.834 13.999 135.045 33.486z"], + "less": [640, 512, [], "f41d", "M612.7 219c0-20.5 3.2-32.6 3.2-54.6 0-34.2-12.6-45.2-40.5-45.2h-20.5v24.2h6.3c14.2 0 17.3 4.7 17.3 22.1 0 16.3-1.6 32.6-1.6 51.5 0 24.2 7.9 33.6 23.6 37.3v1.6c-15.8 3.7-23.6 13.1-23.6 37.3 0 18.9 1.6 34.2 1.6 51.5 0 17.9-3.7 22.6-17.3 22.6v.5h-6.3V393h20.5c27.8 0 40.5-11 40.5-45.2 0-22.6-3.2-34.2-3.2-54.6 0-11 6.8-22.6 27.3-23.6v-27.3c-20.5-.7-27.3-12.3-27.3-23.3zm-105.6 32c-15.8-6.3-30.5-10-30.5-20.5 0-7.9 6.3-12.6 17.9-12.6s22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-21 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51s-22.5-41-43-47.8zm-358.9 59.4c-3.7 0-8.4-3.2-8.4-13.1V119.1H65.2c-28.4 0-41 11-41 45.2 0 22.6 3.2 35.2 3.2 54.6 0 11-6.8 22.6-27.3 23.6v27.3c20.5.5 27.3 12.1 27.3 23.1 0 19.4-3.2 31-3.2 53.6 0 34.2 12.6 45.2 40.5 45.2h20.5v-24.2h-6.3c-13.1 0-17.3-5.3-17.3-22.6s1.6-32.1 1.6-51.5c0-24.2-7.9-33.6-23.6-37.3v-1.6c15.8-3.7 23.6-13.1 23.6-37.3 0-18.9-1.6-34.2-1.6-51.5s3.7-22.1 17.3-22.1H93v150.8c0 32.1 11 53.1 43.1 53.1 10 0 17.9-1.6 23.6-3.7l-5.3-34.2c-3.1.8-4.6.8-6.2.8zM379.9 251c-16.3-6.3-31-10-31-20.5 0-7.9 6.3-12.6 17.9-12.6 11.6 0 22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-20.5 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51 .1-28.9-22.5-41-43-47.8zm-155-68.8c-38.4 0-75.1 32.1-74.1 82.5 0 52 34.2 82.5 79.3 82.5 18.9 0 39.9-6.8 56.2-17.9l-15.8-27.8c-11.6 6.8-22.6 10-34.2 10-21 0-37.3-10-41.5-34.2H290c.5-3.7 1.6-11 1.6-19.4.6-42.6-22.6-75.7-66.7-75.7zm-30 66.2c3.2-21 15.8-31 30.5-31 18.9 0 26.3 13.1 26.3 31h-56.8z"], + "line": [448, 512, [], "f3c0", "M272.1 204.2v71.1c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.1 0-2.1-.6-2.6-1.3l-32.6-44v42.2c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.8 0-3.2-1.4-3.2-3.2v-71.1c0-1.8 1.4-3.2 3.2-3.2H219c1 0 2.1.5 2.6 1.4l32.6 44v-42.2c0-1.8 1.4-3.2 3.2-3.2h11.4c1.8-.1 3.3 1.4 3.3 3.1zm-82-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 1.8 1.4 3.2 3.2 3.2h11.4c1.8 0 3.2-1.4 3.2-3.2v-71.1c0-1.7-1.4-3.2-3.2-3.2zm-27.5 59.6h-31.1v-56.4c0-1.8-1.4-3.2-3.2-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 .9.3 1.6.9 2.2.6.5 1.3.9 2.2.9h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.7-1.4-3.2-3.1-3.2zM332.1 201h-45.7c-1.7 0-3.2 1.4-3.2 3.2v71.1c0 1.7 1.4 3.2 3.2 3.2h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2V234c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2v-11.4c-.1-1.7-1.5-3.2-3.2-3.2zM448 113.7V399c-.1 44.8-36.8 81.1-81.7 81H81c-44.8-.1-81.1-36.9-81-81.7V113c.1-44.8 36.9-81.1 81.7-81H367c44.8.1 81.1 36.8 81 81.7zm-61.6 122.6c0-73-73.2-132.4-163.1-132.4-89.9 0-163.1 59.4-163.1 132.4 0 65.4 58 120.2 136.4 130.6 19.1 4.1 16.9 11.1 12.6 36.8-.7 4.1-3.3 16.1 14.1 8.8 17.4-7.3 93.9-55.3 128.2-94.7 23.6-26 34.9-52.3 34.9-81.5z"], + "linkedin": [448, 512, [], "f08c", "M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"], + "linkedin-in": [448, 512, [], "f0e1", "M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"], + "linode": [448, 512, [], "f2b8", "M437.4 226.3c-.3-.9-.9-1.4-1.4-2l-70-38.6c-.9-.6-2-.6-3.1 0l-58.9 36c-.9.6-1.4 1.7-1.4 2.6l-.9 31.4-24-16c-.9-.6-2.3-.6-3.1 0L240 260.9l-1.4-35.1c0-.9-.6-2-1.4-2.3l-36-24.3 33.7-17.4c1.1-.6 1.7-1.7 1.7-2.9l-5.7-132.3c0-.9-.9-2-1.7-2.6L138.6.3c-.9-.3-1.7-.3-2.3-.3L12.6 38.6c-1.4.6-2.3 2-2 3.7L38 175.4c.9 3.4 34 27.4 38.6 30.9l-26.9 12.9c-1.4.9-2 2.3-1.7 3.4l20.6 100.3c.6 2.9 23.7 23.1 27.1 26.3l-17.4 10.6c-.9.6-1.7 2-1.4 3.1 1.4 7.1 15.4 77.7 16.9 79.1l65.1 69.1c.6.6 1.4.6 2.3.9.6 0 1.1-.3 1.7-.6l83.7-66.9c.9-.6 1.1-1.4 1.1-2.3l-2-46 28 23.7c1.1.9 2.9.9 4 0l66.9-53.4c.9-.6 1.1-1.4 1.1-2.3l2.3-33.4 20.3 14c1.1.9 2.6.9 3.7 0l54.6-43.7c.6-.3 1.1-1.1 1.1-2 .9-6.5 10.3-70.8 9.7-72.8zm-204.8 4.8l4 92.6-90.6 61.2-14-96.6 100.6-57.2zm-7.7-180l5.4 126-106.6 55.4L104 97.7l120.9-46.6zM44 173.1L18 48l79.7 49.4 19.4 132.9L44 173.1zm30.6 147.8L55.7 230l70 58.3 13.7 93.4-64.8-60.8zm24.3 117.7l-13.7-67.1 61.7 60.9 9.7 67.4-57.7-61.2zm64.5 64.5l-10.6-70.9 85.7-61.4 3.1 70-78.2 62.3zm82-115.1c0-3.4.9-22.9-2-25.1l-24.3-20 22.3-14.9c2.3-1.7 1.1-5.7 1.1-8l29.4 22.6.6 68.3-27.1-22.9zm94.3-25.4l-60.9 48.6-.6-68.6 65.7-46.9-4.2 66.9zm27.7-25.7l-19.1-13.4 2-34c.3-.9-.3-2-1.1-2.6L308 259.7l.6-30 64.6 40.6-5.8 66.6zm54.6-39.8l-48.3 38.3 5.7-65.1 51.1-36.6-8.5 63.4z"], + "linux": [448, 512, [], "f17c", "M196.1 123.6c-.2-1.4 1.9-2.3 3.2-2.9 1.7-.7 3.9-1 5.5-.1.4.2.8.7.6 1.1-.4 1.2-2.4 1-3.5 1.6-1 .5-1.8 1.7-3 1.7-1 .1-2.7-.4-2.8-1.4zm24.7-.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm214.7 310.2c-.5 8.2-6.5 13.8-13.9 18.3-14.9 9-37.3 15.8-50.9 32.2l-2.6-2.2 2.6 2.2c-14.2 16.9-31.7 26.6-48.3 27.9-16.5 1.3-32-6.3-40.3-23v-.1c-1.1-2.1-1.9-4.4-2.5-6.7-21.5 1.2-40.2-5.3-55.1-4.1-22 1.2-35.8 6.5-48.3 6.6-4.8 10.6-14.3 17.6-25.9 20.2-16 3.7-36.1 0-55.9-10.4l1.6-3-1.6 3c-18.5-9.8-42-8.9-59.3-12.5-8.7-1.8-16.3-5-20.1-12.3-3.7-7.3-3-17.3 2.2-31.7 1.7-5.1.4-12.7-.8-20.8-.6-3.9-1.2-7.9-1.2-11.8 0-4.3.7-8.5 2.8-12.4 4.5-8.5 11.8-12.1 18.5-14.5 6.7-2.4 12.8-4 17-8.3 5.2-5.5 10.1-14.4 16.6-20.2-2.6-17.2.2-35.4 6.2-53.3 12.6-37.9 39.2-74.2 58.1-96.7 16.1-22.9 20.8-41.3 22.5-64.7C158 103.4 132.4-.2 234.8 0c80.9.1 76.3 85.4 75.8 131.3-.3 30.1 16.3 50.5 33.4 72 15.2 18 35.1 44.3 46.5 74.4 9.3 24.6 12.9 51.8 3.7 79.1 1.4.5 2.8 1.2 4.1 2 1.4.8 2.7 1.8 4 2.9 6.6 5.6 8.7 14.3 10.5 22.4 1.9 8.1 3.6 15.7 7.2 19.7 11.1 12.4 15.9 21.5 15.5 29.7zM220.8 109.1c3.6.9 8.9 2.4 13 4.4-2.1-12.2 4.5-23.5 11.8-23 8.9.3 13.9 15.5 9.1 27.3-.8 1.9-2.8 3.4-3.9 4.6 6.7 2.3 11 4.1 12.6 4.9 7.9-9.5 10.8-26.2 4.3-40.4-9.8-21.4-34.2-21.8-44 .4-3.2 7.2-3.9 14.9-2.9 21.8zm-46.2 18.8c7.8-5.7 6.9-4.7 5.9-5.5-8-6.9-6.6-27.4 1.8-28.1 6.3-.5 10.8 10.7 9.6 19.6 3.1-2.1 6.7-3.6 10.2-4.6 1.7-19.3-9-33.5-19.1-33.5-18.9 0-24 37.5-8.4 52.1zm-9.4 20.9c1.5 4.9 6.1 10.5 14.7 15.3 7.8 4.6 12 11.5 20 15 2.6 1.1 5.7 1.9 9.6 2.1 18.4 1.1 27.1-11.3 38.2-14.9 11.7-3.7 20.1-11 22.7-18.1 3.2-8.5-2.1-14.7-10.5-18.2-11.3-4.9-16.3-5.2-22.6-9.3-10.3-6.6-18.8-8.9-25.9-8.9-14.4 0-23.2 9.8-27.9 14.2-.5.5-7.9 5.9-14.1 10.5-4.2 3.3-5.6 7.4-4.2 12.3zm-33.5 252.8L112.1 366c-6.8-9.2-13.8-14.8-21.9-16-7.7-1.2-12.6 1.4-17.7 6.9-4.8 5.1-8.8 12.3-14.3 18-7.8 6.5-9.3 6.2-19.6 9.9-6.3 2.2-11.3 4.6-14.8 11.3-2.7 5-2.1 12.2-.9 20 1.2 7.9 3 16.3.6 23.9v.2c-5 13.7-5 21.7-2.6 26.4 7.9 15.4 46.6 6.1 76.5 21.9 31.4 16.4 72.6 17.1 75.3-18 2.1-20.5-31.5-49-41-68.9zm153.9 35.8c3.2-11 6.3-21.3 6.8-29 .8-15.2 1.6-28.7 4.4-39.9 3.1-12.6 9.3-23.1 21.4-27.3 2.3-21.1 18.7-21.1 38.3-12.5 18.9 8.5 26 16 22.8 26.1 1 0 2-.1 4.2 0 5.2-16.9-14.3-28-30.7-34.8 2.9-12 2.4-24.1-.4-35.7-6-25.3-22.6-47.8-35.2-59-2.3-.1-2.1 1.9 2.6 6.5 11.6 10.7 37.1 49.2 23.3 84.9-3.9-1-7.6-1.5-10.9-1.4-5.3-29.1-17.5-53.2-23.6-64.6-11.5-21.4-29.5-65.3-37.2-95.7-4.5 6.4-12.4 11.9-22.3 15-4.7 1.5-9.7 5.5-15.9 9-13.9 8-30 8.8-42.4-1.2-4.5-3.6-8-7.6-12.6-10.3-1.6-.9-5.1-3.3-6.2-4.1-2 37.8-27.3 85.3-39.3 112.7-8.3 19.7-13.2 40.8-13.8 61.5-21.8-29.1-5.9-66.3 2.6-82.4 9.5-17.6 11-22.5 8.7-20.8-8.6 14-22 36.3-27.2 59.2-2.7 11.9-3.2 24 .3 35.2 3.5 11.2 11.1 21.5 24.6 29.9 0 0 24.8 14.3 38.3 32.5 7.4 10 9.7 18.7 7.4 24.9-2.5 6.7-9.6 8.9-16.7 8.9 4.8 6 10.3 13 14.4 19.6 37.6 25.7 82.2 15.7 114.3-7.2zM415 408.5c-10-11.3-7.2-33.1-17.1-41.6-6.9-6-13.6-5.4-22.6-5.1-7.7 8.8-25.8 19.6-38.4 16.3-11.5-2.9-18-16.3-18.8-29.5-.3.2-.7.3-1 .5-7.1 3.9-11.1 10.8-13.7 21.1-2.5 10.2-3.4 23.5-4.2 38.7-.7 11.8-6.2 26.4-9.9 40.6-3.5 13.2-5.8 25.2-1.1 36.3 7.2 14.5 19.5 20.4 33.7 19.3 14.2-1.1 30.4-9.8 43.6-25.5 22-26.6 62.3-29.7 63.2-46.5.3-5.1-3.1-13-13.7-24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4 3.9-3.4 5.9-6.3 3.1-6.6-2.8-.3-2.6 2.6-6 5.1-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2-10.4 0-18.7-4.8-24.9-9.7-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z"], + "lyft": [512, 512, [], "f3c3", "M0 81.1h77.8v208.7c0 33.1 15 52.8 27.2 61-12.7 11.1-51.2 20.9-80.2-2.8C7.8 334 0 310.7 0 289V81.1zm485.9 173.5v-22h23.8v-76.8h-26.1c-10.1-46.3-51.2-80.7-100.3-80.7-56.6 0-102.7 46-102.7 102.7V357c16 2.3 35.4-.3 51.7-14 17.1-14 24.8-37.2 24.8-59v-6.7h38.8v-76.8h-38.8v-23.3c0-34.6 52.2-34.6 52.2 0v77.1c0 56.6 46 102.7 102.7 102.7v-76.5c-14.5 0-26.1-11.7-26.1-25.9zm-294.3-99v113c0 15.4-23.8 15.4-23.8 0v-113H91v132.7c0 23.8 8 54 45 63.9 37 9.8 58.2-10.6 58.2-10.6-2.1 13.4-14.5 23.3-34.9 25.3-15.5 1.6-35.2-3.6-45-7.8v70.3c25.1 7.5 51.5 9.8 77.6 4.7 47.1-9.1 76.8-48.4 76.8-100.8V155.1h-77.1v.5z"], + "magento": [448, 512, [], "f3c4", "M445.7 127.9V384l-63.4 36.5V164.7L223.8 73.1 65.2 164.7l.4 255.9L2.3 384V128.1L224.2 0l221.5 127.9zM255.6 420.5L224 438.9l-31.8-18.2v-256l-63.3 36.6.1 255.9 94.9 54.9 95.1-54.9v-256l-63.4-36.6v255.9z"], + "mailchimp": [428, 512, [], "f59e", "M426.56 323.72c-3.09-6.59-8.97-11.13-16.35-12.88-2.47-11.27-5.88-16.8-6.19-17.63 1.3-1.48 2.56-2.97 2.84-3.32 10.42-12.93 3.62-31.86-14.19-36.33-10.02-9.64-19.09-14.17-26.54-17.9-7.14-3.57-4.29-2.17-10.99-5.19-1.78-8.71-2.37-28.97-5.2-43.19-2.54-12.79-7.66-22.06-15.56-28.15-3.16-6.84-7.59-13.74-12.93-18.81 24.84-38.08 31.38-75.69 13.19-95.39-8.1-8.77-20.13-12.93-34.52-12.93-20.26 0-45.18 8.26-70.34 23.54 0 0-16.38-13.18-16.73-13.46-70.08-55.19-268.28 188.7-198.32 242l18.06 13.8c-11.34 31.54 4.43 69.14 37.29 81.21 7.26 2.67 15.14 3.97 23.31 3.51 0 0 53.09 97.36 165.1 97.39 129.58.04 162.55-126.72 162.9-127.86 0 .01 10.5-15.51 5.17-28.41zM20.12 267.95c-14.2-23.96 10.51-73.19 28.09-101.17C91.66 97.63 163.98 43.06 196.82 50.85l9.03-3.46c.03.03 24.67 20.85 24.7 20.87 16.97-10.19 38.58-20.57 58.8-22.64-12.3 2.77-27.29 9.15-45.05 20.01-.43.25-42.02 28.32-67.43 53.52-13.85 13.73-69.45 80.41-69.4 80.35 10.16-19.23 16.86-28.67 32.94-48.9 9.1-11.44 18.81-22.57 28.74-32.84 4.61-4.77 9.28-9.36 13.95-13.71 3.21-2.99 6.44-5.87 9.65-8.62 1.48-1.27 2.96-2.5 4.43-3.71l.01-.01L164.6 64.8l1.72 12.06 23.69 20.87s-20.96 14.11-31.39 23.01c-41.79 35.66-82.8 90.4-98.06 143.69l.73-.03c-7.6 4.19-15.14 10.91-21.73 20.05-.16-.04-17.04-12.43-19.44-16.5zm69.11 100.09c-25.03 0-45.33-21.37-45.33-47.72 0-26.36 20.29-47.72 45.33-47.72 6.49 0 12.66 1.44 18.24 4.02 0 0 9.63 4.86 12.34 27.81 2.82-7.17 4.24-13.06 4.24-13.06 3.23 9.88 4.88 20.26 4.23 30.76 2.68-3.56 5.55-10.27 5.55-10.27 5 29.33-16.4 56.18-44.6 56.18zm55.8-168.53s19.49-37.06 62.33-61.57c-3.19-.51-10.99.48-12.36.64 7.78-6.69 22.24-11.16 32.23-13.19-2.92-1.86-9.89-2.33-13.34-2.42-1.02-.03-1.01-.02-2.22.03 9.4-5.25 26.82-8.34 42.65-5.55-1.99-2.64-6.5-4.57-9.67-5.51-.28-.08-1.52-.39-1.52-.39l1.19-.28c9.54-1.84 20.69.15 29.5 3.69-1-2.32-3.45-5.03-5.29-6.74-.19-.18-1.29-.97-1.29-.97 9.22 1.91 18.06 5.94 24.71 10.5-.9-1.75-3.14-4.69-4.69-6.29 8.81 2.52 18.71 8.81 22.95 17.82.1.2.37.94.4 1.03-16.7-12.84-65.44-9.2-114.24 22.42-22.33 14.48-38.71 30.32-51.34 46.78zm263.32 146.34c-.59 1.15-6.73 34.4-41.86 62.01-44.37 34.86-102.66 31.33-124.67 11.8-11.76-11-16.85-26.73-16.85-26.73s-1.33 8.87-1.56 12.35c-8.87-15.09-8.12-33.52-8.12-33.52s-4.73 8.83-6.9 13.77c-6.53-16.62-3.16-33.78-3.16-33.78l-5.16 7.7s-2.42-18.81 3.52-34.47c6.36-16.74 18.68-28.9 21.11-30.42-9.35-2.97-20.12-11.49-20.14-11.51 0 0 4.28.28 7.26-.4 0 0-18.9-13.54-22.22-34.26 2.74 3.38 8.49 7.21 8.49 7.21-1.86-5.42-2.99-17.49-1.25-29.36l.01-.01c3.58-22.68 22.27-37.45 43.44-37.27 22.54.2 37.65 4.93 56.55-12.5 4-3.69 7.19-6.87 12.81-8.11.59-.13 2.06-.75 5.07-.75 3.05 0 5.98.69 8.67 2.29 10.25 6.1 12.46 22.01 13.56 33.68 4.07 43.28 2.43 35.57 19.94 44.49 8.36 4.25 17.74 8.29 28.43 19.72.03.03.08.09.08.09h.13c9.01.22 13.65 7.31 9.5 12.47-30.23 36.1-72.46 53.39-119.51 54.84-1.94.05-6.32.15-6.34.15-19.01.58-25.19 25.16-13.27 39.95 7.54 9.35 22.03 12.42 33.97 12.46l.17-.06c51.45 1.04 103.14-35.37 112.07-55.44.06-.15.61-1.42.61-1.42-2.07 2.43-52.18 49.61-113.08 47.9 0 0-6.66-.14-12.93-1.6-8.27-1.92-14.55-5.56-16.95-13.8 5.05 1.01 11.45 1.66 18.87 1.66 43.96 0 75.63-19.98 72.33-20.25-.13 0-.26.03-.48.08-5.13 1.19-57.97 21.66-91.37 11.16.08-1.02.24-2.01.48-2.9 2.97-9.95 8.25-8.56 16.79-8.93 30.48-1.01 55.07-8.68 73.5-17.43 19.65-9.33 34.63-21.35 40.03-27.42 7 11.79 6.96 26.92 6.96 26.92s2.74-.96 6.38-.96c11.38.01 13.73 10.23 5.09 20.6zm-149.29 13.7c0-.05-.01-.1-.01-.15.01.05.01.1.01.15zm-.01-.21c-.01-.13-.01-.26-.02-.39-.02-.65-.03-1.33 0-2.02-.02.74-.02 1.42 0 2.02.01.13.01.27.02.39zm.12 1.46c0 .02 0 .04.01.06 0-.02 0-.04-.01-.06zm.02.12c.2 1.58.51 2.31.55 2.4-.23-.49-.42-1.34-.55-2.4zM193.96 59.68l2.87-8.83 4.88 17.72-6.03-1.95-1.72-6.94zm22.38 17.72l-3.62-12.59 9.97 8.36c-2.24 1.44-4.36 2.86-6.35 4.23zm42.71 281.94c-.01-.13-.01-.26-.02-.39.01.13.01.27.02.39zm-.01-.39c-.02-.65-.03-1.33 0-2.02-.03.75-.03 1.42 0 2.02zm.02.6c0-.05-.01-.1-.01-.15m.13 1.46c0-.02 0-.04-.01-.06m.02.12c.2 1.58.51 2.31.55 2.4-.23-.49-.42-1.34-.55-2.4zm52.1-138.61c-.07-3.36.47-8.92 3.63-9.95h.01c5.41-1.88 12.58 11.98 12.91 24.28-4.28-2.14-9.3-3.05-14.47-2.6-1.3-3.97-1.92-7.7-2.08-11.73zM205.38 85.27l-13.59-11.38 20.57 6.28c-2.65 1.88-5 3.6-6.98 5.1zm27.7 166.94c-3.41 1.3-5.83 2.31-7 2.14-1.89-.28-.06-3.75 4.08-7.11 8.33-6.64 19.76-8.7 29.53-5.07 4.28 1.57 9.08 4.72 11.6 8.39.95 1.39 1.21 2.44.82 2.88-.77.9-3.51-.31-7.55-1.89-10.35-3.86-17.98-4.45-31.48.66zm14.55 14.53c-2.31.94-3.81 1.66-4.42 1.17-.62-.48-.01-2.42 2.15-4.51 1.88-1.81 3.83-2.83 6.07-3.77.35-.15.72-.28 1.1-.38 1.04-.28 2.09-.63 3.23-.8 9.12-1.55 15.8 3.51 14.93 4.98-.39.69-2.08.53-4.6.36-5.23-.36-10.71-.27-18.46 2.95zM60.86 323.12zm24.3-25.78c-1.85.39-.81.17-2.64.68a7 7 0 0 0-.77.25c-.58.27-1.11.45-1.62.73-.43.24-4.07 1.86-7.03 5.48-3.99 4.95-5.44 11.43-5.19 17.67.24 6.06 2.02 9.41 2.35 10.23 1.38 2.96-1.85 3.57-4.79.39l-.01-.01c-2.35-2.49-3.86-6.29-4.6-9.66-2.98-13.95 3.24-27.97 17.61-33.57.8-.32 1.74-.51 2.5-.73h-.01c1.47-.44 6.72-1.5 12.07-.67 5.87.91 11.04 3.85 14.33 7.67l.01.01c2.53 2.87 4.43 6.92 4.09 10.53v.01c-.13 1.5-.79 3.65-2.14 4.21-.5.21-1.01.1-1.36-.25-.98-.96-.22-2.93-2.6-6.3-3.17-4.47-10.31-8.76-20.2-6.67zm30.28 31.17c1.88 10.82-6 20.5-15.52 20.7-6.67.15-10.31-4.02-9.66-4.93.3-.43 1.32-.24 2.88-.01 8.5 1.32 13.66-3.86 14.9-9.29.02-.09.35-1.54.34-2.54.07-.88-.03-1.76-.16-2.56-1-5.62-7.45-6.68-11.6-11.15-3.72-4.04-2.99-9.22-.65-11.71 2.81-2.77 6.83-1.76 6.78-.78 0 .52-.97.91-2.17 1.74-1.56 1.1-1.77 2.16-1.37 3.98.26 1 .71 1.65 1.68 2.42 3.48 2.76 12.85 4.7 14.55 14.13zm212.87-81.47c2.58.4 4.22 3.59 3.67 7.13-.55 3.54-3.09 6.08-5.67 5.67-2.58-.4-4.22-3.59-3.67-7.13.56-3.53 3.09-6.07 5.67-5.67zm-28.33 10.31c1.42-2.59 5.44-3.11 8.99-1.16 3.55 1.94 5.27 5.62 3.86 8.2-1.42 2.59-5.44 3.11-8.99 1.16-3.55-1.94-5.28-5.61-3.86-8.2z"], + "mandalorian": [390, 512, [], "f50f", "M203.28 511.89c-.98-3.26-1.69-15.83-1.39-24.58.55-15.89.98-24.72 1.4-28.76.64-6.2 2.87-20.72 3.28-21.38.6-.96.4-27.87-.24-33.13-.31-2.58-.63-11.9-.69-20.73-.13-16.47-.53-20.12-2.73-24.76-1.1-2.32-1.23-3.84-.99-11.43.16-4.81 0-10.53-.34-12.71-2.05-12.97-3.46-27.7-3.25-33.9.21-6.12.43-7.15 2.06-9.67 3.05-4.71 6.51-14.04 8.62-23.27 2.26-9.86 3.88-17.18 4.59-20.74.89-4.42 2.43-9.72 4.36-15.05 2.27-6.25 2.49-15.39.37-15.39-.3 0-1.38 1.22-2.41 2.71-1.03 1.49-4.76 4.8-8.29 7.36-8.37 6.08-11.7 9.39-12.66 12.58-.93 3.11-1.02 7.23-.16 7.76.34.21 1.29 2.4 2.11 4.88 1.62 4.88 1.87 10.12.72 15.36-.39 1.77-1.05 5.47-1.46 8.23-.41 2.76-.98 6.46-1.25 8.22-.28 1.76-.97 3.68-1.55 4.26-.96.96-1.14.91-2.05-.53-.55-.87-1.2-3.01-1.44-4.75-.25-1.74-1.63-7.11-3.08-11.93-3.28-10.9-3.52-16.15-.96-20.96.92-1.73 1.67-3.81 1.67-4.61 0-2.39-2.2-5.32-7.41-9.89-7.05-6.18-8.63-7.92-10.23-11.3-1.71-3.6-3.06-4.06-4.54-1.54-1.78 3.01-2.6 9.11-2.97 22.02l-.35 12.13 1.95 2.25c3.21 3.7 12.07 16.45 13.78 19.83 3.41 6.74 4.34 11.69 4.41 23.56.07 11.84.95 22.75 2 24.71.36.66.51 1.35.34 1.52-.17.17.41 2.09 1.29 4.27.88 2.18 1.81 6.22 2.06 8.98.25 2.76 1.02 7.43 1.71 10.37 2.23 9.56 2.77 14.08 2.39 20.14-.2 3.27-.53 11.07-.73 17.32-1.31 41.76-1.85 57.98-2.04 61.21-.12 2.02-.39 11.51-.6 21.07-.36 16.3-1.3 27.37-2.42 28.65-.64.73-8.07-4.91-12.52-9.49-3.75-3.87-4.02-4.79-2.83-9.95.7-3.01 2.26-18.29 3.33-32.62.36-4.78.81-10.5 1.01-12.71.83-9.37 1.66-20.35 2.61-34.78.56-8.46 1.33-16.44 1.72-17.73.38-1.29.89-9.89 1.13-19.11l.43-16.77-2.26-4.3c-1.72-3.28-4.87-6.94-13.22-15.34-6.03-6.07-11.84-12.3-12.91-13.85l-1.95-2.81.75-10.9c1.09-15.71 1.1-48.57.02-59.06l-.89-8.7-3.28-4.52c-5.86-8.08-5.8-7.75-6.22-33.27-.1-6.07-.38-11.5-.63-12.06-.83-1.87-3.05-2.66-8.54-3.05-8.86-.62-10.96-1.9-23.85-14.55-6.15-6.04-12.34-11.97-13.75-13.19-2.81-2.42-2.79-1.99-.56-9.63l1.35-4.65-1.69-3.04c-.93-1.67-2.09-3.51-2.59-4.07-1.33-1.51-5.5-10.89-5.99-13.49-.31-1.66-.09-2.67.87-3.9 2.23-2.86 3.4-5.68 4.45-10.73 2.33-11.19 7.74-26.09 10.6-29.22 3.18-3.47 7.7-1.05 9.41 5.03 1.34 4.79 1.37 9.79.1 18.55-.53 3.68-.98 8.68-.99 11.11-.02 4.01.19 4.69 2.25 7.39 3.33 4.37 7.73 7.41 15.2 10.52 1.7.71 3.82 1.99 4.72 2.85 11.17 10.72 18.62 16.18 22.95 16.85 5.18.8 7.98 4.54 10.04 13.39 1.31 5.65 4 11.14 5.46 11.14.59 0 2.09-.63 3.33-1.39 1.98-1.22 2.25-1.73 2.25-4.18-.01-3.71-1.17-14.08-2-17.84-.37-1.66-.78-4.06-.93-5.35-.14-1.29-.61-3.85-1.03-5.69-2.55-11.16-3.65-15.46-4.1-16.05-1.55-2.02-4.08-10.2-4.93-15.92-1.64-11.11-3.96-14.23-12.91-17.39-4.64-1.64-8.89-4.12-13.32-7.78-1.15-.95-4.01-3.22-6.35-5.06-2.35-1.83-4.41-3.53-4.6-3.76-.18-.23-1.39-1.14-2.69-2.02-6.24-4.22-8.84-6.98-11.26-11.96l-2.44-5.02-.22-12.98-.22-12.98 6.91-6.55c3.95-3.75 8.48-7.35 10.59-8.43 3.31-1.69 4.45-1.89 11.37-2.05 8.53-.19 10.12.02 11.66 1.56 1.53 1.53 1.36 6.4-.29 8.5-.74.94-1.34 1.98-1.34 2.32 0 .58-2.61 4.91-5.42 8.99-.68.99-2.13 5.35-2.37 6.82 20.44 13.39 21.55 3.77 14.07 28.98l11.4 2.54c3.11-8.66 6.47-17.26 8.61-26.22.29-7.63-11.98-4.19-15.4-8.68-2.33-5.93 3.13-14.18 6.06-19.2 1.6-2.34 6.62-4.7 8.82-4.15.88.22 4.16-.35 7.37-1.28 3.18-.92 6.58-1.68 7.55-1.68.97 0 3.66-.58 5.98-1.29 3.65-1.11 4.5-1.17 6.35-.4 1.17.48 3.79 1.09 5.82 1.36 2.02.26 4.72 1.12 6 1.91 1.28.79 3.53 1.77 5.02 2.17 2.51.68 3 .57 7.05-1.67l4.35-2.4 10.7-.41c10.44-.4 10.81-.47 15.26-2.68l4.58-2.3 2.46 1.43c1.76 1.02 3.14 2.73 4.85 5.98 2.36 4.51 2.38 4.58 1.37 7.37-.88 2.44-.89 3.3-.1 6.39.5 1.96 1.45 4.62 2.1 5.91.65 1.29 1.24 3.09 1.31 4.01.31 4.33-.03 5.3-2.41 6.92-2.17 1.47-6.98 7.91-6.98 9.34 0 .32-.48 1.69-1.07 3.03-5.04 11.51-6.76 13.56-14.26 16.98-9.2 4.2-12.3 5.19-16.21 5.19-3.1 0-4 .25-4.54 1.26-.37.69-2.21 2.37-4.09 3.71-2.04 1.47-3.8 3.38-4.38 4.78-.54 1.28-1.66 2.59-2.49 2.91-.83.32-1.94 1.08-2.45 1.71-.52.62-3.66 3.04-7 5.38-3.33 2.34-6.87 5.02-7.87 5.96-1 .94-2.07 1.71-2.39 1.71s-1.28.74-2.13 1.65c-1.31 1.39-1.49 2.11-1.14 4.6.22 1.63.86 4.27 1.42 5.88 1.32 3.8 1.31 7.86-.05 10.57-1.43 2.86-.89 6.65 1.35 9.59 2.01 2.63 2.16 4.56.71 8.84-.61 1.8-1.05 5.45-1.06 8.91-.02 4.88.22 6.28 1.46 8.38 1.2 2.04 1.82 2.48 3.24 2.32 1.98-.23 2.3-1.05 4.71-12.12 2.18-10.03 3.71-11.92 13.76-17.08 2.94-1.51 7.46-3.96 10.03-5.44 2.58-1.48 6.79-3.69 9.37-4.91 6.67-3.16 11.05-6.52 15.22-11.67 7.11-8.79 9.98-16.22 12.85-33.3.55-3.28 1.43-5.65 2.86-7.73 1.29-1.87 2.37-4.62 2.89-7.31 1.02-5.3 2.85-9.08 5.58-11.51 4.7-4.18 6-1.09 4.59 10.87-.46 3.86-1.1 10.33-1.44 14.38l-.61 7.36 4.45 4.09 4.45 4.09.11 8.42c.06 4.63.47 9.53.92 10.89l.82 2.47-6.43 6.28c-8.54 8.33-12.88 13.93-16.76 21.61-1.77 3.49-3.74 7.11-4.38 8.03-2.18 3.11-6.46 13.01-8.76 20.26l-2.29 7.22-6.97 6.49c-3.83 3.57-7.96 7.25-9.17 8.17-3.05 2.32-4.26 5.15-4.26 9.99 0 2.98.43 4.96 1.59 7.26.87 1.74 1.81 3.91 2.09 4.83.28.92.98 2.22 1.57 2.89 1.4 1.59 1.92 16.12.83 23.22-.68 4.48-3.63 12.02-4.7 12.02-1.79 0-4.06 9.27-5.07 20.74-.18 2.02-.62 5.94-.98 8.7-.36 2.76-.96 9.98-1.35 16.05-.77 12.22-.19 18.77 2.05 23.15 3.41 6.69.52 12.69-11.03 22.84l-3.97 3.49.07 5.19c.04 2.86.55 6.85 1.14 8.87 4.61 15.98 4.73 16.92 4.38 37.13-.46 26.4-.26 40.27.63 44.15.42 1.84.91 5 1.08 7.02.17 2.02.66 5.33 1.08 7.36.47 2.26.78 11.02.79 22.74l.02 19.06-1.81 2.63c-2.71 3.91-15.11 13.54-15.49 12.29zm29.53-45.11c-.18-.3-.33-6.87-.33-14.59 0-14.06-.89-27.54-2.26-34.45-.4-2.02-.81-9.7-.9-17.06-.15-11.93-1.4-24.37-2.64-26.38-.66-1.07-3.02-17.66-3.03-21.3-.01-4.23 1.02-6 5.28-9.13 4.14-3.04 4.86-3.14 5.48-.72.28 1.1 1.45 5.62 2.6 10.03 3.93 15.12 4.14 16.27 4.05 21.74-.1 5.78-.13 6.13-1.74 17.73-.98 7.07-1.17 12.39-1.04 28.43.17 19.4-.64 35.73-2.04 41.27-.71 2.78-2.8 5.48-3.43 4.43zm-70.99-37.58c-.24-.38-1.01-5.24-1.73-10.79-.72-5.56-1.49-10.41-1.73-10.79-.23-.38-.68-3.3-.99-6.49-.31-3.19-.91-7.46-1.33-9.48-.99-4.79-3.35-19.35-3.42-21.07-.03-.74-.34-4.05-.7-7.36-.67-6.21-.84-27.67-.22-28.29.96-.96 6.63 2.76 11.33 7.43l5.28 5.25-.45 6.47c-.25 3.56-.6 10.23-.78 14.83-.18 4.6-.49 9.87-.67 11.71-.18 1.84-.61 9.36-.94 16.72-.79 17.41-1.94 31.29-2.65 32-.32.3-.76.24-1-.14zM74.63 162.61c21.07 12.79 17.84 14.15 28.49 17.66 13.01 4.29 18.87 7.13 23.15 16.87-43.66 36.14-69.01 57.9-76.71 70.82-31.02 52.01-5.99 101.59 62.75 87.21-14.18 29.23-77.97 28.63-98.68-4.9-24.68-39.95-22.09-118.3 61-187.66zm210.79 179.02c56.66 6.88 82.32-37.74 46.54-89.23 0 0-26.87-29.34-64.28-67.96 2.98-15.45 9.49-32.12 30.57-53.82 89.2 63.51 92 141.61 92.46 149.36 4.27 70.58-78.66 91.12-105.29 61.65z"], + "mastodon": [417, 512, [], "f4f6", "M417.8 179.1c0-97.2-63.7-125.7-63.7-125.7-62.5-28.7-228.5-28.4-290.4 0 0 0-63.7 28.5-63.7 125.7 0 115.7-6.6 259.4 105.6 289.1 40.5 10.7 75.3 13 103.3 11.4 50.8-2.8 79.3-18.1 79.3-18.1l-1.7-36.9s-36.3 11.4-77.1 10.1c-40.4-1.4-83-4.4-89.6-54-.6-4.4-.9-9-.9-13.9 85.6 20.9 158.6 9.1 178.7 6.7 56.1-6.7 105-41.3 111.2-72.9 9.8-49.8 9-121.5 9-121.5zm-75.1 125.2h-46.6V190.1c0-49.7-64-51.6-64 6.9v62.5h-46.3V197c0-58.5-64-56.6-64-6.9v114.2H75.1c0-122.1-5.2-147.9 18.4-175 25.9-28.9 79.8-30.8 103.8 6.1l11.6 19.5 11.6-19.5c24.1-37.1 78.1-34.8 103.8-6.1 23.7 27.3 18.4 53 18.4 175z"], + "maxcdn": [512, 512, [], "f136", "M461.1 442.7h-97.4L415.6 200c2.3-10.2.9-19.5-4.4-25.7-5-6.1-13.7-9.6-24.2-9.6h-49.3l-59.5 278h-97.4l59.5-278h-83.4l-59.5 278H0l59.5-278-44.6-95.4H387c39.4 0 75.3 16.3 98.3 44.9 23.3 28.6 31.8 67.4 23.6 105.9l-47.8 222.6z"], + "medapps": [320, 512, [], "f3c6", "M118.3 238.4c3.5-12.5 6.9-33.6 13.2-33.6 8.3 1.8 9.6 23.4 18.6 36.6 4.6-23.5 5.3-85.1 14.1-86.7 9-.7 19.7 66.5 22 77.5 9.9 4.1 48.9 6.6 48.9 6.6 1.9 7.3-24 7.6-40 7.8-4.6 14.8-5.4 27.7-11.4 28-4.7.2-8.2-28.8-17.5-49.6l-9.4 65.5c-4.4 13-15.5-22.5-21.9-39.3-3.3-.1-62.4-1.6-47.6-7.8l31-5zM228 448c21.2 0 21.2-32 0-32H92c-21.2 0-21.2 32 0 32h136zm-24 64c21.2 0 21.2-32 0-32h-88c-21.2 0-21.2 32 0 32h88zm34.2-141.5c3.2-18.9 5.2-36.4 11.9-48.8 7.9-14.7 16.1-28.1 24-41 24.6-40.4 45.9-75.2 45.9-125.5C320 69.6 248.2 0 160 0S0 69.6 0 155.2c0 50.2 21.3 85.1 45.9 125.5 7.9 12.9 16 26.3 24 41 6.7 12.5 8.7 29.8 11.9 48.9 3.5 21 36.1 15.7 32.6-5.1-3.6-21.7-5.6-40.7-15.3-58.6C66.5 246.5 33 211.3 33 155.2 33 87.3 90 32 160 32s127 55.3 127 123.2c0 56.1-33.5 91.3-66.1 151.6-9.7 18-11.7 37.4-15.3 58.6-3.4 20.6 29 26.4 32.6 5.1z"], + "medium": [448, 512, [], "f23a", "M0 32v448h448V32H0zm372.2 106.1l-24 23c-2.1 1.6-3.1 4.2-2.7 6.7v169.3c-.4 2.6.6 5.2 2.7 6.7l23.5 23v5.1h-118V367l24.3-23.6c2.4-2.4 2.4-3.1 2.4-6.7V199.8l-67.6 171.6h-9.1L125 199.8v115c-.7 4.8 1 9.7 4.4 13.2l31.6 38.3v5.1H71.2v-5.1l31.6-38.3c3.4-3.5 4.9-8.4 4.1-13.2v-133c.4-3.7-1-7.3-3.8-9.8L75 138.1V133h87.3l67.4 148L289 133.1h83.2v5z"], + "medium-m": [512, 512, [], "f3c7", "M71.5 142.3c.6-5.9-1.7-11.8-6.1-15.8L20.3 72.1V64h140.2l108.4 237.7L364.2 64h133.7v8.1l-38.6 37c-3.3 2.5-5 6.7-4.3 10.8v272c-.7 4.1 1 8.3 4.3 10.8l37.7 37v8.1H307.3v-8.1l39.1-37.9c3.8-3.8 3.8-5 3.8-10.8V171.2L241.5 447.1h-14.7L100.4 171.2v184.9c-1.1 7.8 1.5 15.6 7 21.2l50.8 61.6v8.1h-144v-8L65 377.3c5.4-5.6 7.9-13.5 6.5-21.2V142.3z"], + "medrt": [544, 512, [], "f3c8", "M113.7 256c0 121.8 83.9 222.8 193.5 241.1-18.7 4.5-38.2 6.9-58.2 6.9C111.4 504 0 393 0 256S111.4 8 248.9 8c20.1 0 39.6 2.4 58.2 6.9C197.5 33.2 113.7 134.2 113.7 256m297.4 100.3c-77.7 55.4-179.6 47.5-240.4-14.6 5.5 14.1 12.7 27.7 21.7 40.5 61.6 88.2 182.4 109.3 269.7 47 87.3-62.3 108.1-184.3 46.5-272.6-9-12.9-19.3-24.3-30.5-34.2 37.4 78.8 10.7 178.5-67 233.9m-218.8-244c-1.4 1-2.7 2.1-4 3.1 64.3-17.8 135.9 4 178.9 60.5 35.7 47 42.9 106.6 24.4 158 56.7-56.2 67.6-142.1 22.3-201.8-50-65.5-149.1-74.4-221.6-19.8M296 224c-4.4 0-8-3.6-8-8v-40c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v40c0 4.4-3.6 8-8 8h-40c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h40c4.4 0 8 3.6 8 8v40c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-40c0-4.4 3.6-8 8-8h40c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-40z"], + "meetup": [512, 512, [], "f2e0", "M99 414.3c1.1 5.7-2.3 11.1-8 12.3-5.4 1.1-10.9-2.3-12-8-1.1-5.4 2.3-11.1 7.7-12.3 5.4-1.2 11.1 2.3 12.3 8zm143.1 71.4c-6.3 4.6-8 13.4-3.7 20 4.6 6.6 13.4 8.3 20 3.7 6.3-4.6 8-13.4 3.4-20-4.2-6.5-13.1-8.3-19.7-3.7zm-86-462.3c6.3-1.4 10.3-7.7 8.9-14-1.1-6.6-7.4-10.6-13.7-9.1-6.3 1.4-10.3 7.7-9.1 14 1.4 6.6 7.6 10.6 13.9 9.1zM34.4 226.3c-10-6.9-23.7-4.3-30.6 6-6.9 10-4.3 24 5.7 30.9 10 7.1 23.7 4.6 30.6-5.7 6.9-10.4 4.3-24.1-5.7-31.2zm272-170.9c10.6-6.3 13.7-20 7.7-30.3-6.3-10.6-19.7-14-30-7.7s-13.7 20-7.4 30.6c6 10.3 19.4 13.7 29.7 7.4zm-191.1 58c7.7-5.4 9.4-16 4.3-23.7s-15.7-9.4-23.1-4.3c-7.7 5.4-9.4 16-4.3 23.7 5.1 7.8 15.6 9.5 23.1 4.3zm372.3 156c-7.4 1.7-12.3 9.1-10.6 16.9 1.4 7.4 8.9 12.3 16.3 10.6 7.4-1.4 12.3-8.9 10.6-16.6-1.5-7.4-8.9-12.3-16.3-10.9zm39.7-56.8c-1.1-5.7-6.6-9.1-12-8-5.7 1.1-9.1 6.9-8 12.6 1.1 5.4 6.6 9.1 12.3 8 5.4-1.5 9.1-6.9 7.7-12.6zM447 138.9c-8.6 6-10.6 17.7-4.9 26.3 5.7 8.6 17.4 10.6 26 4.9 8.3-6 10.3-17.7 4.6-26.3-5.7-8.7-17.4-10.9-25.7-4.9zm-6.3 139.4c26.3 43.1 15.1 100-26.3 129.1-17.4 12.3-37.1 17.7-56.9 17.1-12 47.1-69.4 64.6-105.1 32.6-1.1.9-2.6 1.7-3.7 2.9-39.1 27.1-92.3 17.4-119.4-22.3-9.7-14.3-14.6-30.6-15.1-46.9-65.4-10.9-90-94-41.1-139.7-28.3-46.9.6-107.4 53.4-114.9C151.6 70 234.1 38.6 290.1 82c67.4-22.3 136.3 29.4 130.9 101.1 41.1 12.6 52.8 66.9 19.7 95.2zm-70 74.3c-3.1-20.6-40.9-4.6-43.1-27.1-3.1-32 43.7-101.1 40-128-3.4-24-19.4-29.1-33.4-29.4-13.4-.3-16.9 2-21.4 4.6-2.9 1.7-6.6 4.9-11.7-.3-6.3-6-11.1-11.7-19.4-12.9-12.3-2-17.7 2-26.6 9.7-3.4 2.9-12 12.9-20 9.1-3.4-1.7-15.4-7.7-24-11.4-16.3-7.1-40 4.6-48.6 20-12.9 22.9-38 113.1-41.7 125.1-8.6 26.6 10.9 48.6 36.9 47.1 11.1-.6 18.3-4.6 25.4-17.4 4-7.4 41.7-107.7 44.6-112.6 2-3.4 8.9-8 14.6-5.1 5.7 3.1 6.9 9.4 6 15.1-1.1 9.7-28 70.9-28.9 77.7-3.4 22.9 26.9 26.6 38.6 4 3.7-7.1 45.7-92.6 49.4-98.3 4.3-6.3 7.4-8.3 11.7-8 3.1 0 8.3.9 7.1 10.9-1.4 9.4-35.1 72.3-38.9 87.7-4.6 20.6 6.6 41.4 24.9 50.6 11.4 5.7 62.5 15.7 58.5-11.1zm5.7 92.3c-10.3 7.4-12.9 22-5.7 32.6 7.1 10.6 21.4 13.1 32 6 10.6-7.4 13.1-22 6-32.6-7.4-10.6-21.7-13.5-32.3-6z"], + "megaport": [496, 512, [], "f5a3", "M248 8C111.04 8 0 119.04 0 256c0 136.97 111.04 248 248 248 136.96 0 248-111.03 248-248C496 119.04 384.96 8 248 8zm85.46 267.67l59.66 59.67v87.05l-26.07 19.23L341 422.39v-65.46l-33.44-33.44-33.44 33.44v65.46L248 441.62l-26.12-19.23v-65.46l-33.44-33.44L155 356.92v65.46l-26.07 19.23-26.06-19.23v-87.05l59.47-59.47V188l59.5-59.5V52.88l26.06-19.23 26.06 19.23v75.64l59.5 59.5m-85.56-11.86l33.44 33.44V276L248 309.33l-33.54-33.54v-66.2l33.44-33.43z"], + "microsoft": [448, 512, [], "f3ca", "M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z"], + "mix": [448, 512, [], "f3cb", "M0 64v348.9c0 56.2 88 58.1 88 0V174.3c7.9-52.9 88-50.4 88 6.5v175.3c0 57.9 96 58 96 0V240c5.3-54.7 88-52.5 88 4.3v23.8c0 59.9 88 56.6 88 0V64H0z"], + "mixcloud": [640, 512, [], "f289", "M424.43 219.729C416.124 134.727 344.135 68 256.919 68c-72.266 0-136.224 46.516-159.205 114.074-54.545 8.029-96.63 54.822-96.63 111.582 0 62.298 50.668 112.966 113.243 112.966h289.614c52.329 0 94.969-42.362 94.969-94.693 0-45.131-32.118-83.063-74.48-92.2zm-20.489 144.53H114.327c-39.04 0-70.881-31.564-70.881-70.604s31.841-70.604 70.881-70.604c18.827 0 36.548 7.475 49.838 20.766 19.963 19.963 50.133-10.227 30.18-30.18-14.675-14.398-32.672-24.365-52.053-29.349 19.935-44.3 64.79-73.926 114.628-73.926 69.496 0 125.979 56.483 125.979 125.702 0 13.568-2.215 26.857-6.369 39.594-8.943 27.517 32.133 38.939 40.147 13.29 2.769-8.306 4.984-16.889 6.369-25.472 19.381 7.476 33.502 26.303 33.502 48.453 0 28.795-23.535 52.33-52.607 52.33zm235.069-52.33c0 44.024-12.737 86.386-37.102 122.657-4.153 6.092-10.798 9.414-17.72 9.414-16.317 0-27.127-18.826-17.443-32.949 19.381-29.349 29.903-63.682 29.903-99.122s-10.521-69.773-29.903-98.845c-15.655-22.831 19.361-47.24 35.163-23.534 24.366 35.993 37.102 78.356 37.102 122.379zm-70.88 0c0 31.565-9.137 62.021-26.857 88.325-4.153 6.091-10.798 9.136-17.72 9.136-17.201 0-27.022-18.979-17.443-32.948 13.013-19.104 19.658-41.255 19.658-64.513 0-22.981-6.645-45.408-19.658-64.512-15.761-22.986 19.008-47.095 35.163-23.535 17.719 26.026 26.857 56.483 26.857 88.047z"], + "mizuni": [496, 512, [], "f3cc", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm-80 351.9c-31.4 10.6-58.8 27.3-80 48.2V136c0-22.1 17.9-40 40-40s40 17.9 40 40v223.9zm120-9.9c-12.9-2-26.2-3.1-39.8-3.1-13.8 0-27.2 1.1-40.2 3.1V136c0-22.1 17.9-40 40-40s40 17.9 40 40v214zm120 57.7c-21.2-20.8-48.6-37.4-80-48V136c0-22.1 17.9-40 40-40s40 17.9 40 40v271.7z"], + "modx": [448, 512, [], "f285", "M356 241.8l36.7 23.7V480l-133-83.8L356 241.8zM440 75H226.3l-23 37.8 153.5 96.5L440 75zm-89 142.8L55.2 32v214.5l46 29L351 217.8zM97 294.2L8 437h213.7l125-200.5L97 294.2z"], + "monero": [496, 512, [], "f3d0", "M352 384h108.4C417 455.9 338.1 504 248 504S79 455.9 35.6 384H144V256.2L248 361l104-105v128zM88 336V128l159.4 159.4L408 128v208h74.8c8.5-25.1 13.2-52 13.2-80C496 119 385 8 248 8S0 119 0 256c0 28 4.6 54.9 13.2 80H88z"], + "napster": [496, 512, [], "f3d2", "M298.3 373.6c-14.2 13.6-31.3 24.1-50.4 30.5-19-6.4-36.2-16.9-50.3-30.5h100.7zm44-199.6c20-16.9 43.6-29.2 69.6-36.2V299c0 219.4-328 217.6-328 .3V137.7c25.9 6.9 49.6 19.6 69.5 36.4 56.8-40 132.5-39.9 188.9-.1zm-208.8-58.5c64.4-60 164.3-60.1 228.9-.2-7.1 3.5-13.9 7.3-20.6 11.5-58.7-30.5-129.2-30.4-187.9.1-6.3-4-13.9-8.2-20.4-11.4zM43.8 93.2v69.3c-58.4 36.5-58.4 121.1.1 158.3 26.4 245.1 381.7 240.3 407.6 1.5l.3-1.7c58.7-36.3 58.9-121.7.2-158.2V93.2c-17.3.5-34 3-50.1 7.4-82-91.5-225.5-91.5-307.5.1-16.3-4.4-33.1-7-50.6-7.5zM259.2 352s36-.3 61.3-1.5c10.2-.5 21.1-4 25.5-6.5 26.3-15.1 25.4-39.2 26.2-47.4-79.5-.6-99.9-3.9-113 55.4zm-135.5-55.3c.8 8.2-.1 32.3 26.2 47.4 4.4 2.5 15.2 6 25.5 6.5 25.3 1.1 61.3 1.5 61.3 1.5-13.2-59.4-33.7-56.1-113-55.4zm169.1 123.4c-3.2-5.3-6.9-7.3-6.9-7.3-24.8 7.3-52.2 6.9-75.9 0 0 0-2.9 1.5-6.4 6.6-2.8 4.1-3.7 9.6-3.7 9.6 29.1 17.6 67.1 17.6 96.2 0-.1-.1-.3-4-3.3-8.9z"], + "nimblr": [355, 512, [], "f5a8", "M232.6 299.29c15.57 0 27.15 11.46 27.15 26.96 0 15.55-11.62 26.96-27.15 26.96-15.7 0-27.15-11.57-27.15-26.96 0-15.51 11.58-26.96 27.15-26.96zM99.01 326.25c0-15.61 11.68-26.96 27.15-26.96 15.57 0 27.15 11.46 27.15 26.96 0 15.41-11.47 26.96-27.15 26.96-15.44 0-27.15-11.31-27.15-26.96m78.75-167.3C143 158.95 75.45 178.77 45.25 227L0 0v335.48C0 433.13 79.61 512 177.76 512c98.24 0 177.76-78.95 177.76-176.52 0-97.46-79.39-176.53-177.76-176.53zm0 308.12c-73.27 0-132.51-58.9-132.51-131.59 0-72.68 59.24-131.59 132.51-131.59 73.27 0 132.51 58.91 132.51 131.59s-59.25 131.59-132.51 131.59z"], + "nintendo-switch": [448, 512, [], "f418", "M95.9 33.5c-44.6 8-80.5 41-91.8 84.4C0 133.6-.3 142.8.2 264.4.4 376 .5 378.6 2.4 387.3c10.3 46.5 43.3 79.6 90.3 90.5 6.1 1.4 13.9 1.7 64.1 1.9 51.9.4 57.3.3 58.7-1.1 1.4-1.4 1.5-19.3 1.5-222.2 0-150.5-.3-221.3-.9-222.6-.9-1.7-2.5-1.8-56.9-1.7-44.2.1-57.5.4-63.3 1.4zm83.9 222.6V444l-37.8-.5c-34.8-.4-38.5-.6-45.5-2.3-29.9-7.7-52-30.7-58.3-60.7-2-9.4-2-240.1-.1-249.3 5.6-26.1 23.7-47.7 48-57.4 12.2-4.9 17.9-5.5 57.6-5.6l35.9-.1v188zm-75.9-131.2c-5.8 1.1-14.7 5.6-19.5 9.7-9.7 8.4-14.6 20.4-13.8 34.5.4 7.3.8 9.3 3.8 15.2 4.4 9 10.9 15.6 19.9 20 6.2 3.1 7.8 3.4 15.9 3.7 7.3.3 9.9 0 14.8-1.7 20.1-6.8 32.3-26.3 28.8-46.4-3.9-23.7-26.6-39.7-49.9-35zm158.2-92.3c-.4.3-.6 100.8-.6 223.5 0 202.3.1 222.8 1.5 223.4 2.5.9 74.5.6 83.4-.4 37.7-4.3 71-27.2 89-61.2 2.3-4.4 5.4-11.7 7-16.2 5.8-17.4 5.7-12.8 5.7-146.1 0-106.4-.2-122.3-1.5-129-9.2-48.3-46.1-84.8-94.5-93.1-6.5-1.1-16.5-1.4-48.8-1.4-22.4-.1-40.9.2-41.2.5zm99.1 202.1c14.5 3.8 26.3 14.8 31.2 28.9 3.1 8.7 3 21.5-.1 29.5-5.7 14.7-16.8 25-31.1 28.8-23.2 6-47.9-8-54.6-31-2-7-1.9-18.9.4-26.2 6.9-22.7 31-36.1 54.2-30z"], + "node": [640, 512, [], "f419", "M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4.1l14.8 8.8c.5.3 1.3.3 1.8 0L375 408c.5-.3.9-.9.9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6.3-.9 1-.9 1.6v66.7c0 .6.4 1.2.9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9.7-1.7 1.7-1.7h7.3c.9 0 1.7.7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7zm46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6.2.8.8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5.3-.4.5-.8.4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7.7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8zm54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1zm-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3 0 5.2 4.2 9.4 9.3 9.4 5.2-.1 9.4-4.3 9.4-9.4zm-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7.1 1.8 1.2 2.1 2.8.1 1 .3 2.7.6 3.3zm-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8zM137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3.4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3.7 2.5 1.8 3.2 1.1.7 2.5.7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1 1.3 0 2.6.3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1.7 2.6.7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2l.2-95zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4zm-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6.3-.9.9-.9 1.6v24.3c0 .7.4 1.3.9 1.6l21 12.1c.6.3 1.3.3 1.8 0l21-12.1c.6-.3.9-.9.9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3.7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1.7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2l36.7-21.3zM559 219c-.4.3-.7.7-.7 1.2v13.6c0 .5.3 1 .7 1.2l11.8 6.8c.4.3 1 .3 1.4 0L584 235c.4-.3.7-.7.7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0L559 219zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7.1-.5.2-1.1.2-1.7zm-74.3-124.9l-.8.5h1.1l-.3-.5zm76.2 130.2l-.4-.7v.9l.4-.2z"], + "node-js": [448, 512, [], "f3d3", "M224 508c-6.7 0-13.5-1.8-19.4-5.2l-61.7-36.5c-9.2-5.2-4.7-7-1.7-8 12.3-4.3 14.8-5.2 27.9-12.7 1.4-.8 3.2-.5 4.6.4l47.4 28.1c1.7 1 4.1 1 5.7 0l184.7-106.6c1.7-1 2.8-3 2.8-5V149.3c0-2.1-1.1-4-2.9-5.1L226.8 37.7c-1.7-1-4-1-5.7 0L36.6 144.3c-1.8 1-2.9 3-2.9 5.1v213.1c0 2 1.1 4 2.9 4.9l50.6 29.2c27.5 13.7 44.3-2.4 44.3-18.7V167.5c0-3 2.4-5.3 5.4-5.3h23.4c2.9 0 5.4 2.3 5.4 5.3V378c0 36.6-20 57.6-54.7 57.6-10.7 0-19.1 0-42.5-11.6l-48.4-27.9C8.1 389.2.7 376.3.7 362.4V149.3c0-13.8 7.4-26.8 19.4-33.7L204.6 9c11.7-6.6 27.2-6.6 38.8 0l184.7 106.7c12 6.9 19.4 19.8 19.4 33.7v213.1c0 13.8-7.4 26.7-19.4 33.7L243.4 502.8c-5.9 3.4-12.6 5.2-19.4 5.2zm149.1-210.1c0-39.9-27-50.5-83.7-58-57.4-7.6-63.2-11.5-63.2-24.9 0-11.1 4.9-25.9 47.4-25.9 37.9 0 51.9 8.2 57.7 33.8.5 2.4 2.7 4.2 5.2 4.2h24c1.5 0 2.9-.6 3.9-1.7s1.5-2.6 1.4-4.1c-3.7-44.1-33-64.6-92.2-64.6-52.7 0-84.1 22.2-84.1 59.5 0 40.4 31.3 51.6 81.8 56.6 60.5 5.9 65.2 14.8 65.2 26.7 0 20.6-16.6 29.4-55.5 29.4-48.9 0-59.6-12.3-63.2-36.6-.4-2.6-2.6-4.5-5.3-4.5h-23.9c-3 0-5.3 2.4-5.3 5.3 0 31.1 16.9 68.2 97.8 68.2 58.4-.1 92-23.2 92-63.4z"], + "npm": [576, 512, [], "f3d4", "M288 288h-32v-64h32v64zm288-128v192H288v32H160v-32H0V160h576zm-416 32H32v128h64v-96h32v96h32V192zm160 0H192v160h64v-32h64V192zm224 0H352v128h64v-96h32v96h32v-96h32v96h32V192z"], + "ns8": [640, 512, [], "f3d5", "M187.1 159.9l-34.2 113.7-54.5-113.7H49L0 320h44.9L76 213.5 126.6 320h56.9L232 159.9h-44.9zm452.5-.9c-2.9-18-23.9-28.1-42.1-31.3-44.6-7.8-101.9 16.3-88.5 58.8v.1c-43.8 8.7-74.3 26.8-94.2 48.2-3-9.8-13.6-16.6-34-16.6h-87.6c-9.3 0-12.9-2.3-11.5-7.4 1.6-5.5 1.9-6.8 3.7-12.2 2.1-6.4 7.8-7.1 13.3-7.1h133.5l9.7-31.5c-139.7 0-144.5-.5-160.1 1.2-12.3 1.3-23.5 4.8-30.6 15-6.8 9.9-14.4 35.6-17.6 47.1-5.4 19.4-.6 28.6 32.8 28.6h87.3c7.8 0 8.8 2.7 7.7 6.6-1.1 4.4-2.8 10-4.5 14.6-1.6 4.2-4.7 7.4-13.8 7.4H216.3L204.7 320c139.9 0 145.3-.6 160.9-2.3 6.6-.7 13-2.1 18.5-4.9.2 3.7.5 7.3 1.2 10.8 5.4 30.5 27.4 52.3 56.8 59.5 48.6 11.9 108.7-16.8 135.1-68 18.7-36.2 14.1-76.2-3.4-105.5h.1c29.6-5.9 70.3-22 65.7-50.6zM530.7 263.7c-5.9 29.5-36.6 47.8-61.6 43.9-30.9-4.8-38.5-39.5-14.1-64.8 16.2-16.8 45.2-24 68.5-26.9 6.7 14.1 10.3 32 7.2 47.8zm21.8-83.1c-4.2-6-9.8-18.5-2.5-26.3 6.7-7.2 20.9-10.1 31.8-7.7 15.3 3.4 19.7 15.9 4.9 24.4-10.7 6.1-23.6 8.1-34.2 9.6z"], + "nutritionix": [400, 512, [], "f3d6", "M88 8.1S221.4-.1 209 112.5c0 0 19.1-74.9 103-40.6 0 0-17.7 74-88 56 0 0 14.6-54.6 66.1-56.6 0 0-39.9-10.3-82.1 48.8 0 0-19.8-94.5-93.6-99.7 0 0 75.2 19.4 77.6 107.5 0 .1-106.4 7-104-119.8zm312 315.6c0 48.5-9.7 95.3-32 132.3-42.2 30.9-105 48-168 48-62.9 0-125.8-17.1-168-48C9.7 419 0 372.2 0 323.7 0 275.3 17.7 229 40 192c42.2-30.9 97.1-48.6 160-48.6 63 0 117.8 17.6 160 48.6 22.3 37 40 83.3 40 131.7zM120 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM192 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM264 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM336 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm24-39.6c-4.8-22.3-7.4-36.9-16-56-38.8-19.9-90.5-32-144-32S94.8 180.1 56 200c-8.8 19.5-11.2 33.9-16 56 42.2-7.9 98.7-14.8 160-14.8s117.8 6.9 160 14.8z"], + "odnoklassniki": [320, 512, [], "f263", "M275.1 334c-27.4 17.4-65.1 24.3-90 26.9l20.9 20.6 76.3 76.3c27.9 28.6-17.5 73.3-45.7 45.7-19.1-19.4-47.1-47.4-76.3-76.6L84 503.4c-28.2 27.5-73.6-17.6-45.4-45.7 19.4-19.4 47.1-47.4 76.3-76.3l20.6-20.6c-24.6-2.6-62.9-9.1-90.6-26.9-32.6-21-46.9-33.3-34.3-59 7.4-14.6 27.7-26.9 54.6-5.7 0 0 36.3 28.9 94.9 28.9s94.9-28.9 94.9-28.9c26.9-21.1 47.1-8.9 54.6 5.7 12.4 25.7-1.9 38-34.5 59.1zM30.3 129.7C30.3 58 88.6 0 160 0s129.7 58 129.7 129.7c0 71.4-58.3 129.4-129.7 129.4s-129.7-58-129.7-129.4zm66 0c0 35.1 28.6 63.7 63.7 63.7s63.7-28.6 63.7-63.7c0-35.4-28.6-64-63.7-64s-63.7 28.6-63.7 64z"], + "odnoklassniki-square": [448, 512, [], "f264", "M184.2 177.1c0-22.1 17.9-40 39.8-40s39.8 17.9 39.8 40c0 22-17.9 39.8-39.8 39.8s-39.8-17.9-39.8-39.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-305.1 97.1c0 44.6 36.4 80.9 81.1 80.9s81.1-36.2 81.1-80.9c0-44.8-36.4-81.1-81.1-81.1s-81.1 36.2-81.1 81.1zm174.5 90.7c-4.6-9.1-17.3-16.8-34.1-3.6 0 0-22.7 18-59.3 18s-59.3-18-59.3-18c-16.8-13.2-29.5-5.5-34.1 3.6-7.9 16.1 1.1 23.7 21.4 37 17.3 11.1 41.2 15.2 56.6 16.8l-12.9 12.9c-18.2 18-35.5 35.5-47.7 47.7-17.6 17.6 10.7 45.8 28.4 28.6l47.7-47.9c18.2 18.2 35.7 35.7 47.7 47.9 17.6 17.2 46-10.7 28.6-28.6l-47.7-47.7-13-12.9c15.5-1.6 39.1-5.9 56.2-16.8 20.4-13.3 29.3-21 21.5-37z"], + "old-republic": [496, 512, [], "f510", "M235.76 10.23c7.5-.31 15-.28 22.5-.09 3.61.14 7.2.4 10.79.73 4.92.27 9.79 1.03 14.67 1.62 2.93.43 5.83.98 8.75 1.46 7.9 1.33 15.67 3.28 23.39 5.4 12.24 3.47 24.19 7.92 35.76 13.21 26.56 12.24 50.94 29.21 71.63 49.88 20.03 20.09 36.72 43.55 48.89 69.19 1.13 2.59 2.44 5.1 3.47 7.74 2.81 6.43 5.39 12.97 7.58 19.63 4.14 12.33 7.34 24.99 9.42 37.83.57 3.14 1.04 6.3 1.4 9.47.55 3.83.94 7.69 1.18 11.56.83 8.34.84 16.73.77 25.1-.07 4.97-.26 9.94-.75 14.89-.24 3.38-.51 6.76-.98 10.12-.39 2.72-.63 5.46-1.11 8.17-.9 5.15-1.7 10.31-2.87 15.41-4.1 18.5-10.3 36.55-18.51 53.63-15.77 32.83-38.83 62.17-67.12 85.12a246.503 246.503 0 0 1-56.91 34.86c-6.21 2.68-12.46 5.25-18.87 7.41-3.51 1.16-7.01 2.38-10.57 3.39-6.62 1.88-13.29 3.64-20.04 5-4.66.91-9.34 1.73-14.03 2.48-5.25.66-10.5 1.44-15.79 1.74-6.69.66-13.41.84-20.12.81-6.82.03-13.65-.12-20.45-.79-3.29-.23-6.57-.5-9.83-.95-2.72-.39-5.46-.63-8.17-1.11-4.12-.72-8.25-1.37-12.35-2.22-4.25-.94-8.49-1.89-12.69-3.02-8.63-2.17-17.08-5.01-25.41-8.13-10.49-4.12-20.79-8.75-30.64-14.25-2.14-1.15-4.28-2.29-6.35-3.57-11.22-6.58-21.86-14.1-31.92-22.34-34.68-28.41-61.41-66.43-76.35-108.7-3.09-8.74-5.71-17.65-7.8-26.68-1.48-6.16-2.52-12.42-3.58-18.66-.4-2.35-.61-4.73-.95-7.09-.6-3.96-.75-7.96-1.17-11.94-.8-9.47-.71-18.99-.51-28.49.14-3.51.34-7.01.7-10.51.31-3.17.46-6.37.92-9.52.41-2.81.65-5.65 1.16-8.44.7-3.94 1.3-7.9 2.12-11.82 3.43-16.52 8.47-32.73 15.26-48.18 1.15-2.92 2.59-5.72 3.86-8.59 8.05-16.71 17.9-32.56 29.49-47.06 20-25.38 45.1-46.68 73.27-62.47 7.5-4.15 15.16-8.05 23.07-11.37 15.82-6.88 32.41-11.95 49.31-15.38 3.51-.67 7.04-1.24 10.56-1.85 2.62-.47 5.28-.7 7.91-1.08 3.53-.53 7.1-.68 10.65-1.04 2.46-.24 4.91-.36 7.36-.51m8.64 24.41c-9.23.1-18.43.99-27.57 2.23-7.3 1.08-14.53 2.6-21.71 4.3-13.91 3.5-27.48 8.34-40.46 14.42-10.46 4.99-20.59 10.7-30.18 17.22-4.18 2.92-8.4 5.8-12.34 9.03-5.08 3.97-9.98 8.17-14.68 12.59-2.51 2.24-4.81 4.7-7.22 7.06-28.22 28.79-48.44 65.39-57.5 104.69-2.04 8.44-3.54 17.02-4.44 25.65-1.1 8.89-1.44 17.85-1.41 26.8.11 7.14.38 14.28 1.22 21.37.62 7.12 1.87 14.16 3.2 21.18 1.07 4.65 2.03 9.32 3.33 13.91 6.29 23.38 16.5 45.7 30.07 65.75 8.64 12.98 18.78 24.93 29.98 35.77 16.28 15.82 35.05 29.04 55.34 39.22 7.28 3.52 14.66 6.87 22.27 9.63 5.04 1.76 10.06 3.57 15.22 4.98 11.26 3.23 22.77 5.6 34.39 7.06 2.91.29 5.81.61 8.72.9 13.82 1.08 27.74 1 41.54-.43 4.45-.6 8.92-.99 13.35-1.78 3.63-.67 7.28-1.25 10.87-2.1 4.13-.98 8.28-1.91 12.36-3.07 26.5-7.34 51.58-19.71 73.58-36.2 15.78-11.82 29.96-25.76 42.12-41.28 3.26-4.02 6.17-8.31 9.13-12.55 3.39-5.06 6.58-10.25 9.6-15.54 2.4-4.44 4.74-8.91 6.95-13.45 5.69-12.05 10.28-24.62 13.75-37.49 2.59-10.01 4.75-20.16 5.9-30.45 1.77-13.47 1.94-27.1 1.29-40.65-.29-3.89-.67-7.77-1-11.66-2.23-19.08-6.79-37.91-13.82-55.8-5.95-15.13-13.53-29.63-22.61-43.13-12.69-18.8-28.24-35.68-45.97-49.83-25.05-20-54.47-34.55-85.65-42.08-7.78-1.93-15.69-3.34-23.63-4.45-3.91-.59-7.85-.82-11.77-1.24-7.39-.57-14.81-.72-22.22-.58zM139.26 83.53c13.3-8.89 28.08-15.38 43.3-20.18-3.17 1.77-6.44 3.38-9.53 5.29-11.21 6.68-21.52 14.9-30.38 24.49-6.8 7.43-12.76 15.73-17.01 24.89-3.29 6.86-5.64 14.19-6.86 21.71-.93 4.85-1.3 9.81-1.17 14.75.13 13.66 4.44 27.08 11.29 38.82 5.92 10.22 13.63 19.33 22.36 27.26 4.85 4.36 10.24 8.09 14.95 12.6 2.26 2.19 4.49 4.42 6.43 6.91 2.62 3.31 4.89 6.99 5.99 11.1.9 3.02.66 6.2.69 9.31.02 4.1-.04 8.2.03 12.3.14 3.54-.02 7.09.11 10.63.08 2.38.02 4.76.05 7.14.16 5.77.06 11.53.15 17.3.11 2.91.02 5.82.13 8.74.03 1.63.13 3.28-.03 4.91-.91.12-1.82.18-2.73.16-10.99 0-21.88-2.63-31.95-6.93-6-2.7-11.81-5.89-17.09-9.83-5.75-4.19-11.09-8.96-15.79-14.31-6.53-7.24-11.98-15.39-16.62-23.95-1.07-2.03-2.24-4.02-3.18-6.12-1.16-2.64-2.62-5.14-3.67-7.82-4.05-9.68-6.57-19.94-8.08-30.31-.49-4.44-1.09-8.88-1.2-13.35-.7-15.73.84-31.55 4.67-46.82 2.12-8.15 4.77-16.18 8.31-23.83 6.32-14.2 15.34-27.18 26.3-38.19 6.28-6.2 13.13-11.84 20.53-16.67zm175.37-20.12c2.74.74 5.41 1.74 8.09 2.68 6.36 2.33 12.68 4.84 18.71 7.96 13.11 6.44 25.31 14.81 35.82 24.97 10.2 9.95 18.74 21.6 25.14 34.34 1.28 2.75 2.64 5.46 3.81 8.26 6.31 15.1 10 31.26 11.23 47.57.41 4.54.44 9.09.45 13.64.07 11.64-1.49 23.25-4.3 34.53-1.97 7.27-4.35 14.49-7.86 21.18-3.18 6.64-6.68 13.16-10.84 19.24-6.94 10.47-15.6 19.87-25.82 27.22-10.48 7.64-22.64 13.02-35.4 15.38-3.51.69-7.08 1.08-10.66 1.21-1.85.06-3.72.16-5.56-.1-.28-2.15 0-4.31-.01-6.46-.03-3.73.14-7.45.1-11.17.19-7.02.02-14.05.21-21.07.03-2.38-.03-4.76.03-7.14.17-5.07-.04-10.14.14-15.21.1-2.99-.24-6.04.51-8.96.66-2.5 1.78-4.86 3.09-7.08 4.46-7.31 11.06-12.96 17.68-18.26 5.38-4.18 10.47-8.77 15.02-13.84 7.68-8.37 14.17-17.88 18.78-28.27 2.5-5.93 4.52-12.1 5.55-18.46.86-4.37 1.06-8.83 1.01-13.27-.02-7.85-1.4-15.65-3.64-23.17-1.75-5.73-4.27-11.18-7.09-16.45-3.87-6.93-8.65-13.31-13.96-19.2-9.94-10.85-21.75-19.94-34.6-27.1-1.85-1.02-3.84-1.82-5.63-2.97zm-100.8 58.45c.98-1.18 1.99-2.33 3.12-3.38-.61.93-1.27 1.81-1.95 2.68-3.1 3.88-5.54 8.31-7.03 13.06-.87 3.27-1.68 6.6-1.73 10-.07 2.52-.08 5.07.32 7.57 1.13 7.63 4.33 14.85 8.77 21.12 2 2.7 4.25 5.27 6.92 7.33 1.62 1.27 3.53 2.09 5.34 3.05 3.11 1.68 6.32 3.23 9.07 5.48 2.67 2.09 4.55 5.33 4.4 8.79-.01 73.67 0 147.34-.01 221.02 0 1.35-.08 2.7.04 4.04.13 1.48.82 2.83 1.47 4.15.86 1.66 1.78 3.34 3.18 4.62.85.77 1.97 1.4 3.15 1.24 1.5-.2 2.66-1.35 3.45-2.57.96-1.51 1.68-3.16 2.28-4.85.76-2.13.44-4.42.54-6.63.14-4.03-.02-8.06.14-12.09.03-5.89.03-11.77.06-17.66.14-3.62.03-7.24.11-10.86.15-4.03-.02-8.06.14-12.09.03-5.99.03-11.98.07-17.97.14-3.62.02-7.24.11-10.86.14-3.93-.02-7.86.14-11.78.03-5.99.03-11.98.06-17.97.16-3.94-.01-7.88.19-11.82.29 1.44.13 2.92.22 4.38.19 3.61.42 7.23.76 10.84.32 3.44.44 6.89.86 10.32.37 3.1.51 6.22.95 9.31.57 4.09.87 8.21 1.54 12.29 1.46 9.04 2.83 18.11 5.09 26.99 1.13 4.82 2.4 9.61 4 14.3 2.54 7.9 5.72 15.67 10.31 22.62 1.73 2.64 3.87 4.98 6.1 7.21.27.25.55.51.88.71.6.25 1.31-.07 1.7-.57.71-.88 1.17-1.94 1.7-2.93 4.05-7.8 8.18-15.56 12.34-23.31.7-1.31 1.44-2.62 2.56-3.61 1.75-1.57 3.84-2.69 5.98-3.63 2.88-1.22 5.9-2.19 9.03-2.42 6.58-.62 13.11.75 19.56 1.85 3.69.58 7.4 1.17 11.13 1.41 3.74.1 7.48.05 11.21-.28 8.55-.92 16.99-2.96 24.94-6.25 5.3-2.24 10.46-4.83 15.31-7.93 11.46-7.21 21.46-16.57 30.04-27.01 1.17-1.42 2.25-2.9 3.46-4.28-1.2 3.24-2.67 6.37-4.16 9.48-1.25 2.9-2.84 5.61-4.27 8.42-5.16 9.63-11.02 18.91-17.75 27.52-4.03 5.21-8.53 10.05-13.33 14.57-6.64 6.05-14.07 11.37-22.43 14.76-8.21 3.37-17.31 4.63-26.09 3.29-3.56-.58-7.01-1.69-10.41-2.88-2.79-.97-5.39-2.38-8.03-3.69-3.43-1.71-6.64-3.81-9.71-6.08 2.71 3.06 5.69 5.86 8.7 8.61 4.27 3.76 8.74 7.31 13.63 10.23 3.98 2.45 8.29 4.4 12.84 5.51 1.46.37 2.96.46 4.45.6-1.25 1.1-2.63 2.04-3.99 2.98-9.61 6.54-20.01 11.86-30.69 16.43-20.86 8.7-43.17 13.97-65.74 15.34-4.66.24-9.32.36-13.98.36-4.98-.11-9.97-.13-14.92-.65-11.2-.76-22.29-2.73-33.17-5.43-10.35-2.71-20.55-6.12-30.3-10.55-8.71-3.86-17.12-8.42-24.99-13.79-1.83-1.31-3.74-2.53-5.37-4.08 6.6-1.19 13.03-3.39 18.99-6.48 5.74-2.86 10.99-6.66 15.63-11.07 2.24-2.19 4.29-4.59 6.19-7.09-3.43 2.13-6.93 4.15-10.62 5.78-4.41 2.16-9.07 3.77-13.81 5.02-5.73 1.52-11.74 1.73-17.61 1.14-8.13-.95-15.86-4.27-22.51-8.98-4.32-2.94-8.22-6.43-11.96-10.06-9.93-10.16-18.2-21.81-25.66-33.86-3.94-6.27-7.53-12.75-11.12-19.22-1.05-2.04-2.15-4.05-3.18-6.1 2.85 2.92 5.57 5.97 8.43 8.88 8.99 8.97 18.56 17.44 29.16 24.48 7.55 4.9 15.67 9.23 24.56 11.03 3.11.73 6.32.47 9.47.81 2.77.28 5.56.2 8.34.3 5.05.06 10.11.04 15.16-.16 3.65-.16 7.27-.66 10.89-1.09 2.07-.25 4.11-.71 6.14-1.2 3.88-.95 8.11-.96 11.83.61 4.76 1.85 8.44 5.64 11.38 9.71 2.16 3.02 4.06 6.22 5.66 9.58 1.16 2.43 2.46 4.79 3.55 7.26 1 2.24 2.15 4.42 3.42 6.52.67 1.02 1.4 2.15 2.62 2.55 1.06-.75 1.71-1.91 2.28-3.03 2.1-4.16 3.42-8.65 4.89-13.05 2.02-6.59 3.78-13.27 5.19-20.02 2.21-9.25 3.25-18.72 4.54-28.13.56-3.98.83-7.99 1.31-11.97.87-10.64 1.9-21.27 2.24-31.94.08-1.86.24-3.71.25-5.57.01-4.35.25-8.69.22-13.03-.01-2.38-.01-4.76 0-7.13.05-5.07-.2-10.14-.22-15.21-.2-6.61-.71-13.2-1.29-19.78-.73-5.88-1.55-11.78-3.12-17.51-2.05-7.75-5.59-15.03-9.8-21.82-3.16-5.07-6.79-9.88-11.09-14.03-3.88-3.86-8.58-7.08-13.94-8.45-1.5-.41-3.06-.45-4.59-.64.07-2.99.7-5.93 1.26-8.85 1.59-7.71 3.8-15.3 6.76-22.6 1.52-4.03 3.41-7.9 5.39-11.72 3.45-6.56 7.62-12.79 12.46-18.46zm31.27 1.7c.35-.06.71-.12 1.07-.19.19 1.79.09 3.58.1 5.37v38.13c-.01 1.74.13 3.49-.15 5.22-.36-.03-.71-.05-1.06-.05-.95-3.75-1.72-7.55-2.62-11.31-.38-1.53-.58-3.09-1.07-4.59-1.7-.24-3.43-.17-5.15-.2-5.06-.01-10.13 0-15.19-.01-1.66-.01-3.32.09-4.98-.03-.03-.39-.26-.91.16-1.18 1.28-.65 2.72-.88 4.06-1.35 3.43-1.14 6.88-2.16 10.31-3.31 1.39-.48 2.9-.72 4.16-1.54.04-.56.02-1.13-.05-1.68-1.23-.55-2.53-.87-3.81-1.28-3.13-1.03-6.29-1.96-9.41-3.02-1.79-.62-3.67-1-5.41-1.79-.03-.37-.07-.73-.11-1.09 5.09-.19 10.2.06 15.3-.12 3.36-.13 6.73.08 10.09-.07.12-.39.26-.77.37-1.16 1.08-4.94 2.33-9.83 3.39-14.75zm5.97-.2c.36.05.72.12 1.08.2.98 3.85 1.73 7.76 2.71 11.61.36 1.42.56 2.88 1.03 4.27 2.53.18 5.07-.01 7.61.05 5.16.12 10.33.12 15.49.07.76-.01 1.52.03 2.28.08-.04.36-.07.72-.1 1.08-1.82.83-3.78 1.25-5.67 1.89-3.73 1.23-7.48 2.39-11.22 3.57-.57.17-1.12.42-1.67.64-.15.55-.18 1.12-.12 1.69.87.48 1.82.81 2.77 1.09 4.88 1.52 9.73 3.14 14.63 4.6.38.13.78.27 1.13.49.4.27.23.79.15 1.18-1.66.13-3.31.03-4.97.04-5.17.01-10.33-.01-15.5.01-1.61.03-3.22-.02-4.82.21-.52 1.67-.72 3.42-1.17 5.11-.94 3.57-1.52 7.24-2.54 10.78-.36.01-.71.02-1.06.06-.29-1.73-.15-3.48-.15-5.22v-38.13c.02-1.78-.08-3.58.11-5.37zM65.05 168.33c1.12-2.15 2.08-4.4 3.37-6.46-1.82 7.56-2.91 15.27-3.62 23-.8 7.71-.85 15.49-.54 23.23 1.05 19.94 5.54 39.83 14.23 57.88 2.99 5.99 6.35 11.83 10.5 17.11 6.12 7.47 12.53 14.76 19.84 21.09 4.8 4.1 9.99 7.78 15.54 10.8 3.27 1.65 6.51 3.39 9.94 4.68 5.01 2.03 10.19 3.61 15.42 4.94 3.83.96 7.78 1.41 11.52 2.71 5 1.57 9.47 4.61 13.03 8.43 4.93 5.23 8.09 11.87 10.2 18.67.99 2.9 1.59 5.91 2.17 8.92.15.75.22 1.52.16 2.29-6.5 2.78-13.26 5.06-20.26 6.18-4.11.78-8.29.99-12.46 1.08-10.25.24-20.47-1.76-30.12-5.12-3.74-1.42-7.49-2.85-11.03-4.72-8.06-3.84-15.64-8.7-22.46-14.46-2.92-2.55-5.83-5.13-8.4-8.03-9.16-9.83-16.3-21.41-21.79-33.65-2.39-5.55-4.61-11.18-6.37-16.96-1.17-3.94-2.36-7.89-3.26-11.91-.75-2.94-1.22-5.95-1.87-8.92-.46-2.14-.69-4.32-1.03-6.48-.85-5.43-1.28-10.93-1.33-16.43.11-6.18.25-12.37 1.07-18.5.4-2.86.67-5.74 1.15-8.6.98-5.7 2.14-11.37 3.71-16.93 3.09-11.65 7.48-22.95 12.69-33.84zm363.73-6.44c1.1 1.66 1.91 3.48 2.78 5.26 2.1 4.45 4.24 8.9 6.02 13.49 7.61 18.76 12.3 38.79 13.04 59.05.02 1.76.07 3.52.11 5.29.13 9.57-1.27 19.09-3.18 28.45-.73 3.59-1.54 7.17-2.58 10.69-4.04 14.72-10 29-18.41 41.78-8.21 12.57-19.01 23.55-31.84 31.41-5.73 3.59-11.79 6.64-18.05 9.19-5.78 2.19-11.71 4.03-17.8 5.11-6.4 1.05-12.91 1.52-19.4 1.23-7.92-.48-15.78-2.07-23.21-4.85-1.94-.8-3.94-1.46-5.84-2.33-.21-1.51.25-2.99.53-4.46 1.16-5.74 3.03-11.36 5.7-16.58 2.37-4.51 5.52-8.65 9.46-11.9 2.43-2.05 5.24-3.61 8.16-4.83 3.58-1.5 7.47-1.97 11.24-2.83 7.23-1.71 14.37-3.93 21.15-7 10.35-4.65 19.71-11.38 27.65-19.46 1.59-1.61 3.23-3.18 4.74-4.87 3.37-3.76 6.71-7.57 9.85-11.53 7.48-10.07 12.82-21.59 16.71-33.48 1.58-5.3 3.21-10.6 4.21-16.05.63-2.87 1.04-5.78 1.52-8.68.87-6.09 1.59-12.22 1.68-18.38.12-6.65.14-13.32-.53-19.94-.73-7.99-1.87-15.96-3.71-23.78z"], + "opencart": [640, 512, [], "f23d", "M423.3 440.7c0 25.3-20.3 45.6-45.6 45.6s-45.8-20.3-45.8-45.6 20.6-45.8 45.8-45.8c25.4 0 45.6 20.5 45.6 45.8zm-253.9-45.8c-25.3 0-45.6 20.6-45.6 45.8s20.3 45.6 45.6 45.6 45.8-20.3 45.8-45.6-20.5-45.8-45.8-45.8zm291.7-270C158.9 124.9 81.9 112.1 0 25.7c34.4 51.7 53.3 148.9 373.1 144.2 333.3-5 130 86.1 70.8 188.9 186.7-166.7 319.4-233.9 17.2-233.9z"], + "openid": [448, 512, [], "f19b", "M271.5 432l-68 32C88.5 453.7 0 392.5 0 318.2c0-71.5 82.5-131 191.7-144.3v43c-71.5 12.5-124 53-124 101.3 0 51 58.5 93.3 135.7 103v-340l68-33.2v384zM448 291l-131.3-28.5 36.8-20.7c-19.5-11.5-43.5-20-70-24.8v-43c46.2 5.5 87.7 19.5 120.3 39.3l35-19.8L448 291z"], + "opera": [496, 512, [], "f26a", "M313.9 32.7c-170.2 0-252.6 223.8-147.5 355.1 36.5 45.4 88.6 75.6 147.5 75.6 36.3 0 70.3-11.1 99.4-30.4-43.8 39.2-101.9 63-165.3 63-3.9 0-8 0-11.9-.3C104.6 489.6 0 381.1 0 248 0 111 111 0 248 0h.8c63.1.3 120.7 24.1 164.4 63.1-29-19.4-63.1-30.4-99.3-30.4zm101.8 397.7c-40.9 24.7-90.7 23.6-132-5.8 56.2-20.5 97.7-91.6 97.7-176.6 0-84.7-41.2-155.8-97.4-176.6 41.8-29.2 91.2-30.3 132.9-5 105.9 98.7 105.5 265.7-1.2 364z"], + "optin-monster": [576, 512, [], "f23c", "M550.671 450.303c0 11.62-15.673 19.457-32.158 14.863-12.16-3.243-31.346-17.565-36.211-27.294-5.674-11.62 4.054-32.698 18.916-30.806 15.674 1.621 49.453 25.401 49.453 43.237zM372.86 75.223c-3.783-72.151-100.796-79.718-125.928-23.51 44.588-24.321 90.257-15.673 125.928 23.51zM74.795 407.066c-15.673 1.621-49.452 25.401-49.452 43.237 0 11.62 15.673 19.457 32.157 14.863 12.16-3.243 31.076-17.565 35.94-27.294 5.946-11.62-3.782-32.698-18.645-30.806zm497.765 14.322c1.081 3.513 1.892 7.026 1.892 10.809.81 31.616-44.317 64.045-73.503 65.125-17.295.81-34.59-8.377-42.696-23.51-113.497 4.053-226.994 4.864-340.22 0-8.377 15.133-25.672 24.05-42.967 23.51-28.915-1.081-74.043-33.509-73.503-65.125.27-3.783.811-7.296 1.892-10.809-5.566-9.463-4.845-15.282 5.405-11.62 3.243-5.134 7.026-9.458 11.08-13.782-2.57-10.917 1.27-14.094 11.079-9.188 4.594-3.243 9.998-6.485 15.944-9.188 0-15.757 11.839-11.131 17.295-5.675 12.467-1.78 20.129.709 26.753 5.675v-19.726c-12.987 0-40.641-11.375-45.94-36.212-4.974-20.725 2.607-38.075 25.132-47.56.81-5.945 8.107-14.052 14.862-15.944 7.567-1.892 12.431 4.594 14.052 10.269 7.425 0 17.757 1.465 21.078 8.107 5.405-.541 11.079-1.352 16.484-1.892-2.432-1.892-5.134-3.513-8.107-4.594-5.134-8.917-13.782-11.079-24.591-11.62 0-.81 0-1.621.27-2.702-19.727-.541-44.048-5.675-54.857-17.835-21.321-23.638-15.935-83.577 12.16-103.498 8.377-5.675 21.618-.811 22.699 9.728 2.425 20.598.399 26.833 26.212 25.942 8.107-7.836 16.755-14.592 26.483-19.997-14.862-1.352-28.914 1.621-43.778 3.783 12.752-12.48 23.953-25.442 56.748-42.427 23.511-11.89 49.993-20.808 76.205-23.239-18.646-7.837-39.993-11.891-59.721-16.484 76.475-16.214 174.569-22.159 244.289 37.562 18.105 15.403 32.427 36.211 42.696 59.992 39.799 4.853 36.47-5.581 38.643-25.132 1.081-10.269 14.322-15.403 22.699-9.458 14.862 10.539 22.159 30.806 24.59 48.101 2.162 17.835.27 41.345-12.43 55.127-10.809 12.16-34.32 17.565-53.776 18.105v2.703c-11.08.27-20.268 2.432-25.673 11.62-2.972 1.081-5.674 2.703-8.377 4.594 5.675.54 11.35 1.351 16.755 1.891 1.869-5.619 12.535-8.377 21.077-8.377 1.621-5.405 6.756-11.89 14.052-10.269s14.052 9.998 14.863 15.944c10.809 4.324 22.159 12.16 25.131 25.672 1.892 8.107 1.621 15.133.27 21.888-5.726 25.262-33.361 36.212-45.939 36.212 0 6.756 0 13.241-.27 19.726 8.01-6.006 16.367-7.158 26.752-5.675 5.919-5.919 17.565-9.41 17.565 5.675 5.675 2.703 11.349 5.945 15.944 9.188 10.1-5.051 13.669-.539 10.809 9.188 4.053 4.323 8.107 8.917 11.079 13.782 10.136-3.62 11.021 2.078 5.409 11.62zm-73.773-254.016c17.295 6.756 26.212 22.159 30.265 35.67 1.081-10.539-2.702-39.453-13.782-51.073-7.296-7.296-14.052-5.134-14.052.81.001 6.216-1.35 11.62-2.431 14.593zm-18.646 12.43c12.971 15.673 17.024 41.615 12.7 62.963 10.809-2.162 20.537-6.215 26.212-12.16 1.892-2.162 3.783-4.864 4.864-7.566-1.081-21.348-10.269-42.697-29.725-48.912-3.242 3.243-9.187 4.864-14.051 5.675zm-21.889.811c7.567 20.537 12.431 42.696 14.322 64.585 3.513 0 7.567-.27 11.62-.811 5.945-24.321-.27-51.614-14.052-63.504-3.783 0-8.107 0-11.89-.27zM77.768 167.372c-1.081-2.973-2.432-8.377-2.432-14.593 0-5.945-7.026-8.107-14.052-.81-11.35 11.62-14.863 40.534-13.782 51.073 4.053-13.512 12.971-28.915 30.266-35.67zm5.675 75.394c-4.324-21.348-.27-47.291 12.701-62.963-4.865-.811-10.809-2.432-14.052-5.675-19.457 6.215-28.375 27.563-29.726 48.912 1.351 2.702 2.972 5.404 4.864 7.566 5.675 6.215 15.403 9.998 26.213 12.16zm41.345-61.073c-5.134 1.081-9.998 2.973-14.862 4.865l-12.16 5.134v-.27c-7.296 14.052-9.999 34.319-5.405 52.965 4.594.541 8.647.811 12.7.811 2.432-22.159 9.188-43.778 19.727-63.505zm88.095-23.239c0 42.155 34.319 76.205 76.205 76.205s76.205-34.05 76.205-76.205c0-41.886-34.319-75.935-76.205-75.935s-76.205 34.049-76.205 75.935zm152.41 97.283c9.969 50.608 3.299 64.692 16.484 58.099 15.944-8.107 22.699-39.183 22.97-57.019-12.971-.81-26.213-.81-39.454-1.08zm-71.611-.541v-.27c-.27 5.134.27 38.103 4.324 41.075 11.079 5.405 39.453 4.594 51.073 1.081 5.405-1.621 2.432-37.022 1.621-41.886-18.916-.27-38.102-.27-57.018 0zm-14.053 0v-.27c-19.456.27-38.642.27-57.829.811-1.892 9.187-4.594 48.911 1.892 51.614 12.971 5.675 41.616 5.134 54.586 1.621 4.595-2.432 2.433-45.399 1.351-53.776zm-85.662 57.56c5.405 2.432 8.647 2.432 9.728-4.324 1.892-8.647 2.432-36.752 4.865-52.155-12.16.27-24.591.811-36.752 1.621-5.405 19.727.27 45.129 22.159 54.858zm-65.666-11.08c43.778 47.02 92.689 85.663 155.923 106.47 67.558-19.186 115.659-59.991 163.219-107.011-11.095-4.315-7.715-10.363-7.296-11.62-8.918-.81-17.835-1.892-26.483-2.702-9.458 32.968-35.94 52.965-46.75 31.616-2.702-5.134-3.513-11.62-4.594-16.754-3.783 8.377-13.242 8.107-24.591 8.918-13.241 1.081-31.617 1.351-44.048-2.972-2.972 12.971-11.079 12.971-26.752 14.322-14.052 1.352-48.642 4.054-54.857-10.809-1.081 28.644-35.13 9.998-45.129-7.026-3.243-5.675-5.405-11.35-7.026-17.565-7.837.81-15.673 1.621-23.511 2.702 2.443 3.663 1.549 9.052-8.105 12.431zM115.6 453.545c-5.674-23.239-18.646-49.722-33.508-54.046-22.429-6.756-68.909 23.51-66.207 54.586 12.701 19.457 39.994 35.67 59.181 36.481 17.835.81 35.94-11.08 39.724-28.914.539-2.432.81-5.134.81-8.107zm7.296-5.944c33.509-19.457 69.179-35.671 105.931-47.02-38.643-20.537-68.098-47.831-97.283-77.016-2.162 1.352-5.134 2.432-7.836 3.513-1.637 4.91 8.718 5.33 5.405 12.431-2.162 4.054-8.648 7.567-15.133 9.188-2.161 2.702-5.134 4.864-7.836 6.485h-.27c-.27 13.511-.27 27.024.27 40.535 8.939 15.964 15.426 33.314 16.752 51.884zm320.764 12.7c-36.752-21.348-74.044-41.345-115.659-52.965-13.782 6.215-27.833 11.349-42.155 15.403-2.162.811-2.162.811-4.324 0-11.89-3.783-23.239-8.107-34.859-13.241-40.265 11.62-77.286 29.185-112.416 50.803h-.27v.27c.27 0 .27 0 .27-.27 103.227 4.054 206.455 3.513 309.413 0zm27.023-64.045l-.27.27c.541-13.782.811-27.563.811-41.345-2.973-1.621-5.675-4.054-8.107-6.756-6.485-1.351-12.971-5.134-15.133-8.918-1.892-4.053 1.351-7.566 5.945-10.269-.27-.541-.541-1.621-.541-2.432-2.972-.811-5.405-1.892-7.567-3.243-31.616 29.455-65.396 56.749-103.498 76.746 38.914 11.62 75.935 28.104 111.875 47.561 1.05-14.692 7.231-35.749 16.485-51.614zm23.24 3.244c-14.593 4.323-27.834 30.806-33.509 54.046 0 23.826 21.278 37.897 40.534 37.022 19.186-.811 46.48-17.024 59.181-36.481 2.973-31.077-43.507-61.344-66.206-54.587zM290.709 134.133c.045 0 .089.003.134.003.046 0 .09-.003.136-.003h-.27zm0 96.743c28.645 0 51.884-21.618 51.884-48.371 0-36.092-40.507-58.079-72.151-44.318 9.458 2.972 16.484 11.62 16.484 21.618 0 23.257-33.291 31.955-46.48 11.35-7.297 34.067 19.368 59.721 50.263 59.721zM68.039 474.083c.54 6.486 12.16 12.701 21.618 9.458 6.756-2.703 14.593-10.539 17.295-16.214 2.973-7.026-1.081-19.997-9.728-18.375-8.917 1.621-29.725 16.754-29.185 25.131zm410.75-25.131c-8.377-1.621-12.431 11.349-9.458 18.375 2.432 5.675 10.269 13.511 17.295 16.214 9.187 3.243 21.078-2.972 21.348-9.458.811-8.377-20.267-23.51-29.185-25.131z"], + "osi": [495, 512, [], "f41a", "M0 259.2C2.3 123.4 97.4 26.8 213.8 11.1c138.8-18.6 255.6 75.8 278 201.1 21.3 118.8-44 230-151.6 274-9.3 3.8-14.4 1.7-18-7.7-17.8-46.3-35.6-92.7-53.4-139-3.1-8.1-1-13.2 7-16.8 24.2-11 39.3-29.4 43.3-55.8 6.4-42.4-24.5-78.7-64.5-82.2-39-3.4-71.8 23.7-77.5 59.7-5.2 33 11.1 63.7 41.9 77.7 9.6 4.4 11.5 8.6 7.8 18.4-17.9 46.6-35.8 93.2-53.7 139.9-2.6 6.9-8.3 9.3-15.5 6.5-52.6-20.3-101.4-61-130.8-119C1.9 318.7 1.6 280.2 0 259.2zm20.9-1.9c.4 6.6.6 14.3 1.3 22.1 6.3 71.9 49.6 143.5 131 183.1 3.2 1.5 4.4.8 5.6-2.3 14.9-39.1 29.9-78.2 45-117.3 1.3-3.3.6-4.8-2.4-6.7-31.6-19.9-47.3-48.5-45.6-86 1-21.6 9.3-40.5 23.8-56.3 30-32.7 77-39.8 115.5-17.6 31.9 18.4 49.5 53.8 45.2 90.4-3.6 30.6-19.3 53.9-45.7 69.8-2.7 1.6-3.5 2.9-2.3 6 15.2 39.2 30.2 78.4 45.2 117.7 1.2 3.1 2.4 3.8 5.6 2.3 35.5-16.6 65.2-40.3 88.1-72 34.8-48.2 49.1-101.9 42.3-161C459.8 112 354.1 14.7 218 31.5 111.9 44.5 22.7 134 20.9 257.3z"], + "page4": [496, 512, [], "f3d7", "M248 504C111 504 0 393 0 256S111 8 248 8c20.9 0 41.3 2.6 60.7 7.5L42.3 392H248v112zm0-143.6V146.8L98.6 360.4H248zm96 31.6v92.7c45.7-19.2 84.5-51.7 111.4-92.7H344zm57.4-138.2l-21.2 8.4 21.2 8.3v-16.7zm-20.3 54.5c-6.7 0-8 6.3-8 12.9v7.7h16.2v-10c0-5.9-2.3-10.6-8.2-10.6zM496 256c0 37.3-8.2 72.7-23 104.4H344V27.3C433.3 64.8 496 153.1 496 256zM360.4 143.6h68.2V96h-13.9v32.6h-13.9V99h-13.9v29.6h-12.7V96h-13.9v47.6zm68.1 185.3H402v-11c0-15.4-5.6-25.2-20.9-25.2-15.4 0-20.7 10.6-20.7 25.9v25.3h68.2v-15zm0-103l-68.2 29.7V268l68.2 29.5v-16.6l-14.4-5.7v-26.5l14.4-5.9v-16.9zm-4.8-68.5h-35.6V184H402v-12.2h11c8.6 15.8 1.3 35.3-18.6 35.3-22.5 0-28.3-25.3-15.5-37.7l-11.6-10.6c-16.2 17.5-12.2 63.9 27.1 63.9 34 0 44.7-35.9 29.3-65.3z"], + "pagelines": [384, 512, [], "f18c", "M384 312.7c-55.1 136.7-187.1 54-187.1 54-40.5 81.8-107.4 134.4-184.6 134.7-16.1 0-16.6-24.4 0-24.4 64.4-.3 120.5-42.7 157.2-110.1-41.1 15.9-118.6 27.9-161.6-82.2 109-44.9 159.1 11.2 178.3 45.5 9.9-24.4 17-50.9 21.6-79.7 0 0-139.7 21.9-149.5-98.1 119.1-47.9 152.6 76.7 152.6 76.7 1.6-16.7 3.3-52.6 3.3-53.4 0 0-106.3-73.7-38.1-165.2 124.6 43 61.4 162.4 61.4 162.4.5 1.6.5 23.8 0 33.4 0 0 45.2-89 136.4-57.5-4.2 134-141.9 106.4-141.9 106.4-4.4 27.4-11.2 53.4-20 77.5 0 0 83-91.8 172-20z"], + "palfed": [576, 512, [], "f3d8", "M384.9 193.9c0-47.4-55.2-44.2-95.4-29.8-1.3 39.4-2.5 80.7-3 119.8.7 2.8 2.6 6.2 15.1 6.2 36.8 0 83.4-42.8 83.3-96.2zm-194.5 72.2c.2 0 6.5-2.7 11.2-2.7 26.6 0 20.7 44.1-14.4 44.1-21.5 0-37.1-18.1-37.1-43 0-42 42.9-95.6 100.7-126.5 1-12.4 3-22 10.5-28.2 11.2-9 26.6-3.5 29.5 11.1 72.2-22.2 135.2 1 135.2 72 0 77.9-79.3 152.6-140.1 138.2-.1 39.4.9 74.4 2.7 100v.2c.2 3.4.6 12.5-5.3 19.1-9.6 10.6-33.4 10-36.4-22.3-4.1-44.4.2-206.1 1.4-242.5-21.5 15-58.5 50.3-58.5 75.9.2 2.5.4 4 .6 4.6zM8 181.1s-.1 37.4 38.4 37.4h30l22.4 217.2s0 44.3 44.7 44.3h288.9s44.7-.4 44.7-44.3l22.4-217.2h30s38.4 1.2 38.4-37.4c0 0 .1-37.4-38.4-37.4h-30.1c-7.3-25.6-30.2-74.3-119.4-74.3h-28V50.3s-2.7-18.4-21.1-18.4h-85.8s-21.1 0-21.1 18.4v19.1h-28.1s-105 4.2-120.5 74.3h-29S8 142.5 8 181.1z"], + "patreon": [512, 512, [], "f3d9", "M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z"], + "paypal": [384, 512, [], "f1ed", "M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z"], + "periscope": [448, 512, [], "f3da", "M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z"], + "phabricator": [496, 512, [], "f3db", "M323 262.1l-.1-13s21.7-19.8 21.1-21.2l-9.5-20c-.6-1.4-29.5-.5-29.5-.5l-9.4-9.3s.2-28.5-1.2-29.1l-20.1-9.2c-1.4-.6-20.7 21-20.7 21l-13.1-.2s-20.5-21.4-21.9-20.8l-20 8.3c-1.4.5.2 28.9.2 28.9l-9.1 9.1s-29.2-.9-29.7.4l-8.1 19.8c-.6 1.4 21 21 21 21l.1 12.9s-21.7 19.8-21.1 21.2l9.5 20c.6 1.4 29.5.5 29.5.5l9.4 9.3s-.2 31.8 1.2 32.3l20.1 8.3c1.4.6 20.7-23.5 20.7-23.5l13.1.2s20.5 23.8 21.8 23.3l20-7.5c1.4-.6-.2-32.1-.2-32.1l9.1-9.1s29.2.9 29.7-.5l8.1-19.8c.7-1.1-20.9-20.7-20.9-20.7zm-44.9-8.7c.7 17.1-12.8 31.6-30.1 32.4-17.3.8-32.1-12.5-32.8-29.6-.7-17.1 12.8-31.6 30.1-32.3 17.3-.8 32.1 12.5 32.8 29.5zm201.2-37.9l-97-97-.1.1c-75.1-73.3-195.4-72.8-269.8 1.6-50.9 51-27.8 27.9-95.7 95.3-22.3 22.3-22.3 58.7 0 81 69.9 69.4 46.4 46 97.4 97l.1-.1c75.1 73.3 195.4 72.9 269.8-1.6 51-50.9 27.9-27.9 95.3-95.3 22.3-22.3 22.3-58.7 0-81zM140.4 363.8c-59.6-59.5-59.6-156 0-215.5 59.5-59.6 156-59.5 215.6 0 59.5 59.5 59.6 156 0 215.6-59.6 59.5-156 59.4-215.6-.1z"], + "phoenix-framework": [640, 512, [], "f3dc", "M212.9 344.3c3.8-.1 22.8-1.4 25.6-2.2-2.4-2.6-43.6-1-68-49.6-4.3-8.6-7.5-17.6-6.4-27.6 2.9-25.5 32.9-30 52-18.5 36 21.6 63.3 91.3 113.7 97.5 37 4.5 84.6-17 108.2-45.4-.6-.1-.8-.2-1-.1-.4.1-.8.2-1.1.3-33.3 12.1-94.3 9.7-134.7-14.8-37.6-22.8-53.1-58.7-51.8-74.6 1.8-21.3 22.9-23.2 35.9-19.6 14.4 3.9 24.4 17.6 38.9 27.4 15.6 10.4 32.9 13.7 51.3 10.3 14.9-2.7 34.4-12.3 36.5-14.5-1.1-.1-1.8-.1-2.5-.2-6.2-.6-12.4-.8-18.5-1.7C279.8 194.5 262.1 47.4 138.5 37.9 94.2 34.5 39.1 46 2.2 72.9c-.8.6-1.5 1.2-2.2 1.8.1.2.1.3.2.5.8 0 1.6-.1 2.4-.2 6.3-1 12.5-.8 18.7.3 23.8 4.3 47.7 23.1 55.9 76.5 5.3 34.3-.7 50.8 8 86.1 19 77.1 91 107.6 127.7 106.4zM75.3 64.9c-.9-1-.9-1.2-1.3-2 12.1-2.6 24.2-4.1 36.6-4.8-1.1 14.7-22.2 21.3-35.3 6.8zm196.9 350.5c-42.8 1.2-92-26.7-123.5-61.4-4.6-5-16.8-20.2-18.6-23.4l.4-.4c6.6 4.1 25.7 18.6 54.8 27 24.2 7 48.1 6.3 71.6-3.3 22.7-9.3 41-.5 43.1 2.9-18.5 3.8-20.1 4.4-24 7.9-5.1 4.4-4.6 11.7 7 17.2 26.2 12.4 63-2.8 97.2 25.4 2.4 2 8.1 7.8 10.1 10.7-.1.2-.3.3-.4.5-4.8-1.5-16.4-7.5-40.2-9.3-24.7-2-46.3 5.3-77.5 6.2zm174.8-252c16.4-5.2 41.3-13.4 66.5-3.3 16.1 6.5 26.2 18.7 32.1 34.6 3.5 9.4 5.1 19.7 5.1 28.7-.2 0-.4 0-.6.1-.2-.4-.4-.9-.5-1.3-5-22-29.9-43.8-67.6-29.9-50.2 18.6-130.4 9.7-176.9-48-.7-.9-2.4-1.7-1.3-3.2.1-.2 2.1.6 3 1.3 18.1 13.4 38.3 21.9 60.3 26.2 30.5 6.1 54.6 2.9 79.9-5.2zm102.7 117.5c-32.4.2-33.8 50.1-103.6 64.4-18.2 3.7-38.7 4.6-44.9 4.2v-.4c2.8-1.5 14.7-2.6 29.7-16.6 7.9-7.3 15.3-15.1 22.8-22.9 19.5-20.2 41.4-42.2 81.9-39 23.1 1.8 29.3 8.2 36.1 12.7.3.2.4.5.7.9-.5 0-.7.1-.9 0-7-2.7-14.3-3.3-21.8-3.3zm-12.3-24.1c-.1.2-.1.4-.2.6-28.9-4.4-48-7.9-68.5 4-17 9.9-31.4 20.5-62 24.4-27.1 3.4-45.1 2.4-66.1-8-.3-.2-.6-.4-1-.6 0-.2.1-.3.1-.5 24.9 3.8 36.4 5.1 55.5-5.8 22.3-12.9 40.1-26.6 71.3-31 29.6-4.1 51.3 2.5 70.9 16.9zM268.6 97.3c-.6-.6-1.1-1.2-2.1-2.3 7.6 0 29.7-1.2 53.4 8.4 19.7 8 32.2 21 50.2 32.9 11.1 7.3 23.4 9.3 36.4 8.1 4.3-.4 8.5-1.2 12.8-1.7.4-.1.9 0 1.5.3-.6.4-1.2.9-1.8 1.2-8.1 4-16.7 6.3-25.6 7.1-26.1 2.6-50.3-3.7-73.4-15.4-19.3-9.9-36.4-22.9-51.4-38.6zM640 335.7c-3.5 3.1-22.7 11.6-42.7 5.3-12.3-3.9-19.5-14.9-31.6-24.1-10-7.6-20.9-7.9-28.1-8.4.6-.8.9-1.2 1.2-1.4 14.8-9.2 30.5-12.2 47.3-6.5 12.5 4.2 19.2 13.5 30.4 24.2 10.8 10.4 21 9.9 23.1 10.5.1-.1.2 0 .4.4zm-212.5 137c2.2 1.2 1.6 1.5 1.5 2-18.5-1.4-33.9-7.6-46.8-22.2-21.8-24.7-41.7-27.9-48.6-29.7.5-.2.8-.4 1.1-.4 13.1.1 26.1.7 38.9 3.9 25.3 6.4 35 25.4 41.6 35.3 3.2 4.8 7.3 8.3 12.3 11.1z"], + "phoenix-squadron": [513, 512, [], "f511", "M96.24 62.81C142.91 26.57 202.15 6.57 261.28 8.08c29.67-.38 59.29 5.38 87.17 15.37-24.2-4.64-49.18-6.35-73.6-2.45-43 5.35-83.26 27.23-112.16 59.35 5.69-.99 10.81-3.68 16.07-5.88 18.19-7.89 37.6-13.29 57.4-14.87 19.8-2.14 39.75-.43 59.45 1.93-14.46 2.79-29.2 4.58-43.11 9.61-34.53 11.11-65.46 33.26-86.55 62.82-13.84 19.77-23.7 42.99-24.74 67.33-.35 16.54 5.23 34.91 19.89 44.17 11.13 6.66 24.85 9.39 37.63 6.76 15.49-2.47 30.16-8.67 43.73-16.38 11.55-6.84 22.73-14.59 32.05-24.32 3.8-3.23 2.54-8.48 2.63-12.83-2.13-.34-4.4-1.11-6.32.3a203.975 203.975 0 0 1-35.93 15.42c-20.07 6.19-42.28 8.48-62.28.78 12.83 1.73 26.14.31 37.85-5.46 20.29-9.75 36.92-25.27 54.6-38.88 27.84-21.29 57.64-40.11 89.17-55.47 25.78-12.01 53.09-22.85 81.81-24.2-15.68 13.76-32.25 26.6-46.92 41.51-14.55 14.04-27.54 29.58-40.23 45.31-3.53 4.61-8.98 6.96-13.62 10.19-22.24 15.03-40.6 35.96-52.04 60.28-9.36 19.74-14.55 41.97-11.81 63.84 1.95 13.73 8.74 27.67 20.96 35.01 12.94 7.99 29.14 8.09 43.61 5.11 32.9-7.47 61.61-28.97 81.28-56 20.5-27.6 30.61-62.38 29.25-96.64-.52-7.52-1.58-15-1.67-22.55 8.02 19.54 14.87 39.83 16.7 61.01 2.01 14.32.75 28.84-1.62 43.02-1.92 11.02-5.69 21.58-7.81 32.53 20.36-22.73 34.17-51.24 39.46-81.31 5.72-35.37.58-72.36-14.25-104.95 20.84 32.12 32.43 69.79 35.81 107.8.5 12.77.5 25.58 0 38.34-2.91 34.26-12.97 67.95-29.76 98-26.2 47.48-68.2 85.89-117.54 108.32-78.52 36.34-175.2 31.41-248.72-14.72-38.84-23.78-71.06-58.32-91.68-98.96C10.72 337.43 2.04 305.5 0 273.13V241.7c3.94-69.97 40.99-136.32 96.24-178.89m222.65 80.57c5.51-.8 10.82-2.57 16.02-4.5 4.99-1.77 9.27-5.95 10.35-11.25-8.91 5-17.95 9.95-26.37 15.75z"], + "php": [640, 512, [], "f457", "M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z"], + "pied-piper": [448, 512, [], "f2ae", "M32 419L0 479.2l.8-328C.8 85.3 54 32 120 32h327.2c-93 28.9-189.9 94.2-253.9 168.6C122.7 282 82.6 338 32 419M448 32S305.2 98.8 261.6 199.1c-23.2 53.6-28.9 118.1-71 158.6-28.9 27.8-69.8 38.2-105.3 56.3-23.2 12-66.4 40.5-84.9 66h328.4c66 0 119.3-53.3 119.3-119.2-.1 0-.1-328.8-.1-328.8z"], + "pied-piper-alt": [576, 512, [], "f1a8", "M242 187c6.3-11.8 13.2-17 25.9-21.8 27.3-10.3 40.2-30.5 58.9-51.1 11.9 8.4 12 24.6 31.6 23v21.8l6.3.3c37.4-14.4 74.7-30.2 106.6-54.6 48.3-36.8 52.9-50 81.3-100l2-2.6c-.6 14.1-6.3 27.3-12.4 39.9-30.5 63.8-78.7 100.3-146.8 116.7-12.4 2.9-26.4 3.2-37.6 8.9 1.4 9.8 13.2 18.1 13.2 23 0 3.4-5.5 7.2-7.5 8.6-11.2-12.9-16.1-19.3-22.7-22.1-7.6-3.5-63.9-6.4-98.8 10zm137.9 256.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9L244 246zm-12.6 31.8l24.1 61.2 21-13.8-31.3-50.9-13.8 3.5zM555.5 0l-.6 1.1-.3.9.6-.6.3-1.4zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46v27.3l11.8-3.4-2.9-23.8h-8.9zm76.1 2.9c0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3l2 12.4c9-1.5 58.4-6.6 58.4-14.1z"], + "pied-piper-hat": [640, 512, [], "f4e5", "M640 24.9c-80.8 53.6-89.4 92.5-96.4 104.4-6.7 12.2-11.7 60.3-23.3 83.6-11.7 23.6-54.2 42.2-66.1 50-11.7 7.8-28.3 38.1-41.9 64.2-108.1-4.4-167.4 38.8-259.2 93.6 29.4-9.7 43.3-16.7 43.3-16.7 94.2-36 139.3-68.3 281.1-49.2 1.1 0 1.9.6 2.8.8 3.9 2.2 5.3 6.9 3.1 10.8l-53.9 95.8c-2.5 4.7-7.8 7.2-13.1 6.1-126.8-23.8-226.9 17.3-318.9 18.6C24.1 488 0 453.4 0 451.8c0-1.1.6-1.7 1.7-1.7 0 0 38.3 0 103.1-15.3C178.4 294.5 244 245.4 315.4 245.4c0 0 71.7 0 90.6 61.9 22.8-39.7 28.3-49.2 28.3-49.2 5.3-9.4 35-77.2 86.4-141.4 51.5-64 90.4-79.9 119.3-91.8z"], + "pied-piper-pp": [448, 512, [], "f1a7", "M205.3 174.6c0 21.1-14.2 38.1-31.7 38.1-7.1 0-12.8-1.2-17.2-3.7v-68c4.4-2.7 10.1-4.2 17.2-4.2 17.5 0 31.7 16.9 31.7 37.8zm52.6 67c-7.1 0-12.8 1.5-17.2 4.2v68c4.4 2.5 10.1 3.7 17.2 3.7 17.4 0 31.7-16.9 31.7-37.8 0-21.1-14.3-38.1-31.7-38.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM185 255.1c41 0 74.2-35.6 74.2-79.6 0-44-33.2-79.6-74.2-79.6-12 0-24.1 3.2-34.6 8.8h-45.7V311l51.8-10.1v-50.6c8.6 3.1 18.1 4.8 28.5 4.8zm158.4 25.3c0-44-33.2-79.6-73.9-79.6-3.2 0-6.4.2-9.6.7-3.7 12.5-10.1 23.8-19.2 33.4-13.8 15-32.2 23.8-51.8 24.8V416l51.8-10.1v-50.6c8.6 3.2 18.2 4.7 28.7 4.7 40.8 0 74-35.6 74-79.6z"], + "pinterest": [496, 512, [], "f0d2", "M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3.8-3.4 5-20.3 6.9-28.1.6-2.5.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z"], + "pinterest-p": [384, 512, [], "f231", "M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z"], + "pinterest-square": [448, 512, [], "f0d3", "M448 80v352c0 26.5-21.5 48-48 48H154.4c9.8-16.4 22.4-40 27.4-59.3 3-11.5 15.3-58.4 15.3-58.4 8 15.3 31.4 28.2 56.3 28.2 74.1 0 127.4-68.1 127.4-152.7 0-81.1-66.2-141.8-151.4-141.8-106 0-162.2 71.1-162.2 148.6 0 36 19.2 80.8 49.8 95.1 4.7 2.2 7.1 1.2 8.2-3.3.8-3.4 5-20.1 6.8-27.8.6-2.5.3-4.6-1.7-7-10.1-12.3-18.3-34.9-18.3-56 0-54.2 41-106.6 110.9-106.6 60.3 0 102.6 41.1 102.6 99.9 0 66.4-33.5 112.4-77.2 112.4-24.1 0-42.1-19.9-36.4-44.4 6.9-29.2 20.3-60.7 20.3-81.8 0-53-75.5-45.7-75.5 25 0 21.7 7.3 36.5 7.3 36.5-31.4 132.8-36.1 134.5-29.6 192.6l2.2.8H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z"], + "playstation": [576, 512, [], "f3df", "M570.9 372.3c-11.3 14.2-38.8 24.3-38.8 24.3L327 470.2v-54.3l150.9-53.8c17.1-6.1 19.8-14.8 5.8-19.4-13.9-4.6-39.1-3.3-56.2 2.9L327 381.1v-56.4c23.2-7.8 47.1-13.6 75.7-16.8 40.9-4.5 90.9.6 130.2 15.5 44.2 14 49.2 34.7 38 48.9zm-224.4-92.5v-139c0-16.3-3-31.3-18.3-35.6-11.7-3.8-19 7.1-19 23.4v347.9l-93.8-29.8V32c39.9 7.4 98 24.9 129.2 35.4C424.1 94.7 451 128.7 451 205.2c0 74.5-46 102.8-104.5 74.6zM43.2 410.2c-45.4-12.8-53-39.5-32.3-54.8 19.1-14.2 51.7-24.9 51.7-24.9l134.5-47.8v54.5l-96.8 34.6c-17.1 6.1-19.7 14.8-5.8 19.4 13.9 4.6 39.1 3.3 56.2-2.9l46.4-16.9v48.8c-51.6 9.3-101.4 7.3-153.9-10z"], + "product-hunt": [512, 512, [], "f288", "M326.3 218.8c0 20.5-16.7 37.2-37.2 37.2h-70.3v-74.4h70.3c20.5 0 37.2 16.7 37.2 37.2zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-128.1-37.2c0-47.9-38.9-86.8-86.8-86.8H169.2v248h49.6v-74.4h70.3c47.9 0 86.8-38.9 86.8-86.8z"], + "pushed": [432, 512, [], "f3e1", "M407 111.9l-98.5-9 14-33.4c10.4-23.5-10.8-40.4-28.7-37L22.5 76.9c-15.1 2.7-26 18.3-21.4 36.6l105.1 348.3c6.5 21.3 36.7 24.2 47.7 7l35.3-80.8 235.2-231.3c16.4-16.8 4.3-42.9-17.4-44.8zM297.6 53.6c5.1-.7 7.5 2.5 5.2 7.4L286 100.9 108.6 84.6l189-31zM22.7 107.9c-3.1-5.1 1-10 6.1-9.1l248.7 22.7-96.9 230.7L22.7 107.9zM136 456.4c-2.6 4-7.9 3.1-9.4-1.2L43.5 179.7l127.7 197.6c-7 15-35.2 79.1-35.2 79.1zm272.8-314.5L210.1 337.3l89.7-213.7 106.4 9.7c4 1.1 5.7 5.3 2.6 8.6z"], + "python": [448, 512, [], "f3e2", "M167.8 36.4c-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1zm-6.7 28.4c11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4zm185.2 81.4v47.5c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6-7.7-30.9-22.3-54.2-53.4-54.2h-40.1zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3z"], + "qq": [448, 512, [], "f1d6", "M433.754 420.445c-11.526 1.393-44.86-52.741-44.86-52.741 0 31.345-16.136 72.247-51.051 101.786 16.842 5.192 54.843 19.167 45.803 34.421-7.316 12.343-125.51 7.881-159.632 4.037-34.122 3.844-152.316 8.306-159.632-4.037-9.045-15.25 28.918-29.214 45.783-34.415-34.92-29.539-51.059-70.445-51.059-101.792 0 0-33.334 54.134-44.859 52.741-5.37-.65-12.424-29.644 9.347-99.704 10.261-33.024 21.995-60.478 40.144-105.779C60.683 98.063 108.982.006 224 0c113.737.006 163.156 96.133 160.264 214.963 18.118 45.223 29.912 72.85 40.144 105.778 21.768 70.06 14.716 99.053 9.346 99.704z"], + "quinscape": [489, 512, [], "f459", "M301.9 474.6h-1.3c-87.3 0-158.1-70.8-158.1-158.1s70.8-158.1 158.1-158.1c94.9 0 168.2 83.1 157 176.6 4 5.1 8.2 9.6 11.2 15.3 13.4-30.3 20.3-62.4 20.3-97.7C489.1 117.5 379.6 8 244.5 8 109.5 8 0 117.5 0 252.6s109.5 244.6 244.5 244.6c24.8 0 47.8-3.2 70.4-10.1-5.2-3.5-9-8.2-13.4-12.6l.4.1zm-21.2-69.8c0-54.8 44.4-99.2 99.2-99.2 54.8 0 99.2 44.4 99.2 99.2 0 54.8-44.4 99.2-99.2 99.2-54.8 0-99.2-44.4-99.2-99.2"], + "quora": [448, 512, [], "f2c4", "M440.5 386.7h-29.3c-1.5 13.5-10.5 30.8-33 30.8-20.5 0-35.3-14.2-49.5-35.8 44.2-34.2 74.7-87.5 74.7-153C403.5 111.2 306.8 32 205 32 105.3 32 7.3 111.7 7.3 228.7c0 134.1 131.3 221.6 249 189C276 451.3 302 480 351.5 480c81.8 0 90.8-75.3 89-93.3zM297 329.2C277.5 300 253.3 277 205.5 277c-30.5 0-54.3 10-69 22.8l12.2 24.3c6.2-3 13-4 19.8-4 35.5 0 53.7 30.8 69.2 61.3-10 3-20.7 4.2-32.7 4.2-75 0-107.5-53-107.5-156.7C97.5 124.5 130 71 205 71c76.2 0 108.7 53.5 108.7 157.7.1 41.8-5.4 75.6-16.7 100.5z"], + "r-project": [581, 512, [], "f4f7", "M581 226.6C581 119.1 450.9 32 290.5 32S0 119.1 0 226.6C0 322.4 103.3 402 239.4 418.1V480h99.1v-61.5c24.3-2.7 47.6-7.4 69.4-13.9L448 480h112l-67.4-113.7c54.5-35.4 88.4-84.9 88.4-139.7zm-466.8 14.5c0-73.5 98.9-133 220.8-133s211.9 40.7 211.9 133c0 50.1-26.5 85-70.3 106.4-2.4-1.6-4.7-2.9-6.4-3.7-10.2-5.2-27.8-10.5-27.8-10.5s86.6-6.4 86.6-92.7-90.6-87.9-90.6-87.9h-199V361c-74.1-21.5-125.2-67.1-125.2-119.9zm225.1 38.3v-55.6c57.8 0 87.8-6.8 87.8 27.3 0 36.5-38.2 28.3-87.8 28.3zm-.9 72.5H365c10.8 0 18.9 11.7 24 19.2-16.1 1.9-33 2.8-50.6 2.9v-22.1z"], + "ravelry": [512, 512, [], "f2d9", "M407.4 61.5C331.6 22.1 257.8 31 182.9 66c-11.3 5.2-15.5 10.6-19.9 19-10.3 19.2-16.2 37.4-19.9 52.7-21.2 25.6-36.4 56.1-43.3 89.9-10.6 18-20.9 41.4-23.1 71.4 0 0-.7 7.6-.5 7.9-35.3-4.6-76.2-27-76.2-27 9.1 14.5 61.3 32.3 76.3 37.9 0 0 1.7 98 64.5 131.2-11.3-17.2-13.3-20.2-13.3-20.2S94.8 369 100.4 324.7c.7 0 1.5.2 2.2.2 23.9 87.4 103.2 151.4 196.9 151.4 6.2 0 12.1-.2 18-.7 14 1.5 27.6.5 40.1-3.9 6.9-2.2 13.8-6.4 20.2-10.8 70.2-39.1 100.9-82 123.1-147.7 5.4-16 8.1-35.5 9.8-52.2 8.7-82.3-30.6-161.6-103.3-199.5zM138.8 163.2s-1.2 12.3-.7 19.7c-3.4 2.5-10.1 8.1-18.2 16.7 5.2-12.8 11.3-25.1 18.9-36.4zm-31.2 121.9c4.4-17.2 13.3-39.1 29.8-55.1 0 0 1.7 48 15.8 90.1l-41.4-6.9c-2.2-9.2-3.5-18.5-4.2-28.1zm7.9 42.8c14.8 3.2 34 7.6 43.1 9.1 27.3 76.8 108.3 124.3 108.3 124.3 1 .5 1.7.7 2.7 1-73.1-11.6-132.7-64.7-154.1-134.4zM386 444.1c-14.5 4.7-36.2 8.4-64.7 3.7 0 0-91.1-23.1-127.5-107.8 38.2.7 52.4-.2 78-3.9 39.4-5.7 79-16.2 115-33 11.8-5.4 11.1-19.4 9.6-29.8-2-12.8-11.1-12.1-21.4-4.7 0 0-82 58.6-189.8 53.7-18.7-32-26.8-110.8-26.8-110.8 41.4-35.2 83.2-59.6 168.4-52.4.2-6.4 3-27.1-20.4-28.1 0 0-93.5-11.1-146 33.5 2.5-16.5 5.9-29.3 11.1-39.4 34.2-30.8 79-49.5 128.3-49.5 106.4 0 193 87.1 193 194.5-.2 76-43.8 142-106.8 174z"], + "react": [512, 512, [], "f41b", "M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zm-130 189.1c4.6 8.8 9.3 17.5 14.3 26.1 5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5zm0-50.6c-6.3-14.9-11.6-29.5-16-43.6 14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26zm11.4 25.3c6.6-13.8 13.8-27.3 21.4-40.6 7.6-13.3 15.8-26.2 24.4-38.9 15-1.1 30.3-1.7 45.9-1.7 15.6 0 31 .6 45.9 1.7 8.5 12.6 16.6 25.5 24.3 38.7 7.7 13.2 14.9 26.7 21.7 40.4-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6-15.7 0-30.9-.5-45.6-1.4-8.7-12.7-16.9-25.7-24.6-39-7.7-13.3-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zM256 210.2c25.3 0 45.8 20.5 45.8 45.8 0 25.3-20.5 45.8-45.8 45.8-25.3 0-45.8-20.5-45.8-45.8 0-25.3 20.5-45.8 45.8-45.8"], + "readme": [576, 512, [], "f4d5", "M528.3 46.5H388.5c-48.1 0-89.9 33.3-100.4 80.3-10.6-47-52.3-80.3-100.4-80.3H48c-26.5 0-48 21.5-48 48v245.8c0 26.5 21.5 48 48 48h89.7c102.2 0 132.7 24.4 147.3 75 .7 2.8 5.2 2.8 6 0 14.7-50.6 45.2-75 147.3-75H528c26.5 0 48-21.5 48-48V94.6c0-26.4-21.3-47.9-47.7-48.1zM242 311.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5V289c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V251zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm259.3 121.7c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5V228c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.8c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V190z"], + "rebel": [512, 512, [], "f1d0", "M256.5 504C117.2 504 9 387.8 13.2 249.9 16 170.7 56.4 97.7 129.7 49.5c.3 0 1.9-.6 1.1.8-5.8 5.5-111.3 129.8-14.1 226.4 49.8 49.5 90 2.5 90 2.5 38.5-50.1-.6-125.9-.6-125.9-10-24.9-45.7-40.1-45.7-40.1l28.8-31.8c24.4 10.5 43.2 38.7 43.2 38.7.8-29.6-21.9-61.4-21.9-61.4L255.1 8l44.3 50.1c-20.5 28.8-21.9 62.6-21.9 62.6 13.8-23 43.5-39.3 43.5-39.3l28.5 31.8c-27.4 8.9-45.4 39.9-45.4 39.9-15.8 28.5-27.1 89.4.6 127.3 32.4 44.6 87.7-2.8 87.7-2.8 102.7-91.9-10.5-225-10.5-225-6.1-5.5.8-2.8.8-2.8 50.1 36.5 114.6 84.4 116.2 204.8C500.9 400.2 399 504 256.5 504z"], + "red-river": [448, 512, [], "f3e3", "M353.2 32H94.8C42.4 32 0 74.4 0 126.8v258.4C0 437.6 42.4 480 94.8 480h258.4c52.4 0 94.8-42.4 94.8-94.8V126.8c0-52.4-42.4-94.8-94.8-94.8zM144.9 200.9v56.3c0 27-21.9 48.9-48.9 48.9V151.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9h-56.3c-12.3-.6-24.6 11.6-24 24zm176.3 72h-56.3c-12.3-.6-24.6 11.6-24 24v56.3c0 27-21.9 48.9-48.9 48.9V247.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9z"], + "reddit": [512, 512, [], "f1a1", "M201.5 305.5c-13.8 0-24.9-11.1-24.9-24.6 0-13.8 11.1-24.9 24.9-24.9 13.6 0 24.6 11.1 24.6 24.9 0 13.6-11.1 24.6-24.6 24.6zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-132.3-41.2c-9.4 0-17.7 3.9-23.8 10-22.4-15.5-52.6-25.5-86.1-26.6l17.4-78.3 55.4 12.5c0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.3 24.9-24.9s-11.1-24.9-24.9-24.9c-9.7 0-18 5.8-22.1 13.8l-61.2-13.6c-3-.8-6.1 1.4-6.9 4.4l-19.1 86.4c-33.2 1.4-63.1 11.3-85.5 26.8-6.1-6.4-14.7-10.2-24.1-10.2-34.9 0-46.3 46.9-14.4 62.8-1.1 5-1.7 10.2-1.7 15.5 0 52.6 59.2 95.2 132 95.2 73.1 0 132.3-42.6 132.3-95.2 0-5.3-.6-10.8-1.9-15.8 31.3-16 19.8-62.5-14.9-62.5zM302.8 331c-18.2 18.2-76.1 17.9-93.6 0-2.2-2.2-6.1-2.2-8.3 0-2.5 2.5-2.5 6.4 0 8.6 22.8 22.8 87.3 22.8 110.2 0 2.5-2.2 2.5-6.1 0-8.6-2.2-2.2-6.1-2.2-8.3 0zm7.7-75c-13.6 0-24.6 11.1-24.6 24.9 0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.1 24.9-24.6 0-13.8-11-24.9-24.9-24.9z"], + "reddit-alien": [512, 512, [], "f281", "M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2.1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z"], + "reddit-square": [448, 512, [], "f1a2", "M283.2 345.5c2.7 2.7 2.7 6.8 0 9.2-24.5 24.5-93.8 24.6-118.4 0-2.7-2.4-2.7-6.5 0-9.2 2.4-2.4 6.5-2.4 8.9 0 18.7 19.2 81 19.6 100.5 0 2.4-2.3 6.6-2.3 9 0zm-91.3-53.8c0-14.9-11.9-26.8-26.5-26.8-14.9 0-26.8 11.9-26.8 26.8 0 14.6 11.9 26.5 26.8 26.5 14.6 0 26.5-11.9 26.5-26.5zm90.7-26.8c-14.6 0-26.5 11.9-26.5 26.8 0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-11.9 26.8-26.5 0-14.9-11.9-26.8-26.8-26.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-99.7 140.6c-10.1 0-19 4.2-25.6 10.7-24.1-16.7-56.5-27.4-92.5-28.6l18.7-84.2 59.5 13.4c0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-12.2 26.8-26.8 0-14.6-11.9-26.8-26.8-26.8-10.4 0-19.3 6.2-23.8 14.9l-65.7-14.6c-3.3-.9-6.5 1.5-7.4 4.8l-20.5 92.8c-35.7 1.5-67.8 12.2-91.9 28.9-6.5-6.8-15.8-11-25.9-11-37.5 0-49.8 50.4-15.5 67.5-1.2 5.4-1.8 11-1.8 16.7 0 56.5 63.7 102.3 141.9 102.3 78.5 0 142.2-45.8 142.2-102.3 0-5.7-.6-11.6-2.1-17 33.6-17.2 21.2-67.2-16.1-67.2z"], + "rendact": [496, 512, [], "f3e4", "M248 8C111 8 0 119 0 256s111 248 248 248c18.6 0 36.7-2.1 54.1-5.9-5.6-7.4-10.8-14.4-15.9-21.3-12.4 2.1-25.2 3.3-38.3 3.3C124.3 480 24 379.7 24 256S124.3 32 248 32s224 100.3 224 224c0 71-33 134.2-84.5 175.3-25.9 18.8-39.1 21.4-83.5-44.2-78.7-112.9-48-71.1-73.7-108.3 72.8 8.9 228.5-72 168.6-168.6C314-26.8 15 93.8 59.7 226.4c3.2 9.8 14.4 38.6 45.6 38.6 2 0 2.6-.6 2-1.7-4.4-8.7-20.1-9.8-20.1-37.4 0-40.5 40.5-89.6 100.3-120 66.1-32.3 131.9-30.2 158.2 5.4 27.2 38.3-20.9 119.2-120.4 136.9 7.5-9.4 57-75.2 62.8-84 22.7-34.6 23.6-49 14-59.2-15.5-16.9-29.5-10.3-50.7-11.7-10.8-.9-113.7 181.2-136.4 216.9-5.9 9-21.2 34.1-21.2 50.9 0 21.3 2.8 51.4 20.6 51.4 10.6 0 8-18.7 8-26.6 0-12.9 27.4-49.4 74.8-104.6 20.4 36.1 57.7 114.3 130.2 209.7 98-33.1 168.5-125.8 168.5-235C496 119 385 8 248 8z"], + "renren": [512, 512, [], "f18b", "M214 169.1c0 110.4-61 205.4-147.6 247.4C30 373.2 8 317.7 8 256.6 8 133.9 97.1 32.2 214 12.5v156.6zM255 504c-42.9 0-83.3-11-118.5-30.4C193.7 437.5 239.9 382.9 255 319c15.5 63.9 61.7 118.5 118.8 154.7C338.7 493 298.3 504 255 504zm190.6-87.5C359 374.5 298 279.6 298 169.1V12.5c116.9 19.7 206 121.4 206 244.1 0 61.1-22 116.6-58.4 159.9z"], + "replyd": [448, 512, [], "f3e6", "M320 480H128C57.6 480 0 422.4 0 352V160C0 89.6 57.6 32 128 32h192c70.4 0 128 57.6 128 128v192c0 70.4-57.6 128-128 128zM193.4 273.2c-6.1-2-11.6-3.1-16.4-3.1-7.2 0-13.5 1.9-18.9 5.6-5.4 3.7-9.6 9-12.8 15.8h-1.1l-4.2-18.3h-28v138.9h36.1v-89.7c1.5-5.4 4.4-9.8 8.7-13.2 4.3-3.4 9.8-5.1 16.2-5.1 4.6 0 9.8 1 15.6 3.1l4.8-34zm115.2 103.4c-3.2 2.4-7.7 4.8-13.7 7.1-6 2.3-12.8 3.5-20.4 3.5-12.2 0-21.1-3-26.5-8.9-5.5-5.9-8.5-14.7-9-26.4h83.3c.9-4.8 1.6-9.4 2.1-13.9.5-4.4.7-8.6.7-12.5 0-10.7-1.6-19.7-4.7-26.9-3.2-7.2-7.3-13-12.5-17.2-5.2-4.3-11.1-7.3-17.8-9.2-6.7-1.8-13.5-2.8-20.6-2.8-21.1 0-37.5 6.1-49.2 18.3s-17.5 30.5-17.5 55c0 22.8 5.2 40.7 15.6 53.7 10.4 13.1 26.8 19.6 49.2 19.6 10.7 0 20.9-1.5 30.4-4.6 9.5-3.1 17.1-6.8 22.6-11.2l-12-23.6zm-21.8-70.3c3.8 5.4 5.3 13.1 4.6 23.1h-51.7c.9-9.4 3.7-17 8.2-22.6 4.5-5.6 11.5-8.5 21-8.5 8.2-.1 14.1 2.6 17.9 8zm79.9 2.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4s2 11.7 6.1 15.6zm0 100.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4 0 6.6 2 11.7 6.1 15.6z"], + "researchgate": [448, 512, [], "f4f8", "M0 32v448h448V32H0zm262.2 334.4c-6.6 3-33.2 6-50-14.2-9.2-10.6-25.3-33.3-42.2-63.6-8.9 0-14.7 0-21.4-.6v46.4c0 23.5 6 21.2 25.8 23.9v8.1c-6.9-.3-23.1-.8-35.6-.8-13.1 0-26.1.6-33.6.8v-8.1c15.5-2.9 22-1.3 22-23.9V225c0-22.6-6.4-21-22-23.9V193c25.8 1 53.1-.6 70.9-.6 31.7 0 55.9 14.4 55.9 45.6 0 21.1-16.7 42.2-39.2 47.5 13.6 24.2 30 45.6 42.2 58.9 7.2 7.8 17.2 14.7 27.2 14.7v7.3zm22.9-135c-23.3 0-32.2-15.7-32.2-32.2V167c0-12.2 8.8-30.4 34-30.4s30.4 17.9 30.4 17.9l-10.7 7.2s-5.5-12.5-19.7-12.5c-7.9 0-19.7 7.3-19.7 19.7v26.8c0 13.4 6.6 23.3 17.9 23.3 14.1 0 21.5-10.9 21.5-26.8h-17.9v-10.7h30.4c0 20.5 4.7 49.9-34 49.9zm-116.5 44.7c-9.4 0-13.6-.3-20-.8v-69.7c6.4-.6 15-.6 22.5-.6 23.3 0 37.2 12.2 37.2 34.5 0 21.9-15 36.6-39.7 36.6z"], + "resolving": [496, 512, [], "f3e7", "M281.2 278.2c46-13.3 49.6-23.5 44-43.4L314 195.5c-6.1-20.9-18.4-28.1-71.1-12.8L54.7 236.8l28.6 98.6 197.9-57.2zM248.5 8C131.4 8 33.2 88.7 7.2 197.5l221.9-63.9c34.8-10.2 54.2-11.7 79.3-8.2 36.3 6.1 52.7 25 61.4 55.2l10.7 37.8c8.2 28.1 1 50.6-23.5 73.6-19.4 17.4-31.2 24.5-61.4 33.2L203 351.8l220.4 27.1 9.7 34.2-48.1 13.3-286.8-37.3 23 80.2c36.8 22 80.3 34.7 126.3 34.7 137 0 248.5-111.4 248.5-248.3C497 119.4 385.5 8 248.5 8zM38.3 388.6L0 256.8c0 48.5 14.3 93.4 38.3 131.8z"], + "rev": [410, 512, [], "f5b2", "M270.67 274.89c0 36.16-29.41 65.57-65.56 65.57s-65.57-29.41-65.57-65.57 29.41-65.56 65.57-65.56 65.56 29.4 65.56 65.56zm139.55-5.05h-.13c-1.49-61.55-30.1-116.35-74.32-152.98l-45.38 26.2c43.17 28.03 71.81 76.63 71.81 131.82 0 86.62-70.47 157.09-157.09 157.09S48.02 361.5 48.02 274.88c0-81.86 62.96-149.27 142.99-156.43v39.12l108.76-62.79L191.01 32v38.32C84.31 77.57 0 166.36 0 274.89c0 111.59 89.12 202.29 200.06 204.98v.13h210.16V269.84z"], + "rocketchat": [448, 512, [], "f3e8", "M448 256.2c0-87.2-99.6-153.3-219.8-153.3-18.8 0-37.3 1.6-55.3 4.8-11.1-10.5-24.2-20-38-27.4C61.2 44.2 0 79.4 0 79.4s56.9 47.1 47.6 88.3c-52.3 52.3-52.5 124.1 0 176.6C56.9 385.6 0 432.6 0 432.6s61.2 35.2 134.9-.8c13.8-7.5 26.9-16.9 38-27.4 18 3.2 36.5 4.8 55.3 4.8 120.3-.1 219.8-65.8 219.8-153zm-219.7 124c-23.7 0-46.3-2.8-67.3-7.8-21.3 25.8-68.1 61.7-113.6 50.1 14.8-16 36.7-43.1 32-87.6-27.3-21.4-43.6-48.7-43.6-78.5 0-68.4 86.2-123.9 192.5-123.9S420.8 188 420.8 256.4c0 68.3-86.2 123.8-192.5 123.8zm25.6-123.9c0 14.2-11.5 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.5-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm88.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm-177.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.2 0 25.6 11.6 25.6 25.8z"], + "rockrms": [496, 512, [], "f3e9", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm157.4 419.5h-90l-112-131.3c-17.9-20.4-3.9-56.1 26.6-56.1h75.3l-84.6-99.3-84.3 98.9h-90L193.5 67.2c14.4-18.4 41.3-17.3 54.5 0l157.7 185.1c19 22.8 2 57.2-27.6 56.1-.6 0-74.2.2-74.2.2l101.5 118.9z"], + "safari": [512, 512, [], "f267", "M236.9 256.8c0-9.1 6.6-17.7 16.3-17.7 8.9 0 17.4 6.4 17.4 16.1 0 9.1-6.4 17.7-16.1 17.7-9 0-17.6-6.7-17.6-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-26.6 0c0-122.3-99.1-221.4-221.4-221.4S34.6 133.7 34.6 256 133.7 477.4 256 477.4 477.4 378.3 477.4 256zm-72.5 96.6c0 3.6 13 10.2 16.3 12.2-27.4 41.5-69.8 71.4-117.9 83.3l-4.4-18.5c-.3-2.5-1.9-2.8-4.2-2.8-1.9 0-3 2.8-2.8 4.2l4.4 18.8c-13.3 2.8-26.8 4.2-40.4 4.2-36.3 0-72-10.2-103-29.1 1.7-2.8 12.2-18 12.2-20.2 0-1.9-1.7-3.6-3.6-3.6-3.9 0-12.2 16.6-14.7 19.9-41.8-27.7-72-70.6-83.6-119.6l19.1-4.2c2.2-.6 2.8-2.2 2.8-4.2 0-1.9-2.8-3-4.4-2.8L62 294.5c-2.5-12.7-3.9-25.5-3.9-38.5 0-37.1 10.5-73.6 30.2-104.9 2.8 1.7 16.1 10.8 18.3 10.8 1.9 0 3.6-1.4 3.6-3.3 0-3.9-14.7-11.3-18-13.6 28.2-41.2 71.1-70.9 119.8-81.9l4.2 18.5c.6 2.2 2.2 2.8 4.2 2.8s3-2.8 2.8-4.4L219 61.7c12.2-2.2 24.6-3.6 37.1-3.6 37.1 0 73.3 10.5 104.9 30.2-1.9 2.8-10.8 15.8-10.8 18 0 1.9 1.4 3.6 3.3 3.6 3.9 0 11.3-14.4 13.3-17.7 41 27.7 70.3 70 81.7 118.2l-15.5 3.3c-2.5.6-2.8 2.2-2.8 4.4 0 1.9 2.8 3 4.2 2.8l15.8-3.6c2.5 12.7 3.9 25.7 3.9 38.7 0 36.3-10 72-28.8 102.7-2.8-1.4-14.4-9.7-16.6-9.7-2.1 0-3.8 1.7-3.8 3.6zm-33.2-242.2c-13 12.2-134.2 123.7-137.6 129.5l-96.6 160.5c12.7-11.9 134.2-124 137.3-129.3l96.9-160.7z"], + "sass": [640, 512, [], "f41e", "M551.1 291.9c-22.4.1-41.8 5.5-58 13.5-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-3.8 11.1-5.3 19.1-2.3 11.7-25.8 53.5-39.1 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-2.7 11.4-5.3 19.1-2.6 7.7-33.9 77.3-42.1 95.4-4.2 9.2-7.8 16.6-10.4 21.6s-.2.3-.4.9c-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4.3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2-.8 0-1.4 2-1.4 2s10.1-42.4-19.4-42.4c-18.4 0-44 20.2-56.6 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.8-38.2-101.9-65.2-99.1-116.5 1-18.7 7.5-67.8 127.1-127.4 98-48.8 176.4-35.4 189.9-5.6 19.4 42.5-41.9 121.6-143.7 133-38.8 4.3-59.2-10.7-64.3-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.8 28.9 18.7 6.1 64.2 9.5 119.2-11.8C367 196.5 415.1 130.2 401 74.7 386.6 18.3 293.1-.2 204.6 31.2 151.9 49.9 94.9 79.3 53.9 117.6 5.2 163.2-2.6 202.9.6 219.5c11.4 58.9 92.6 97.3 125.1 125.7-1.6.9-3.1 1.7-4.5 2.5-16.3 8.1-78.2 40.5-93.7 74.7-17.5 38.8 2.9 66.6 16.3 70.4 41.8 11.6 84.6-9.3 107.6-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.3-4.9 16.4-9.4 23.5-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.5 5 15.4 5 13.8 0 20-11.4 26.9-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.4 0 18.8-12.1 23-18.3v.1s.2-.4.7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.6-46 16.2-31.8 31.7-71.5 31.7-71.5s1.4 9.7 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2s0 .1.1.2c-3 4-6.4 8.3-9.9 12.5-12.8 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.7 2.5 11.5-.8 19.6-3.6 23.5-5.4 6.2-2.2 13.4-5.7 20.2-10.6 12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5 19.8-28.9 35.1-60.6 35.1-60.6s1.4 9.7 6.2 25.8c2.4 8.1 7.1 17 11.4 25.7-18.6 15.1-30.1 32.6-34.1 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5 6.5-2.2 14.3-5.7 21.6-11.1 12.5-9.2 24.6-22.1 23.8-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.1-10.2 62.1-7.2 55.7 6.5 66.6 41.3 64.5 55.8-2.1 14.6-13.8 22.6-17.7 25-3.9 2.4-5.1 3.3-4.8 5.1.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.2-11.8 30.3-38.7 1.6-34-31.1-71.4-89-71.1zM121.8 436.6c-18.4 20.1-44.2 27.7-55.3 21.3C54.6 451 59.3 421.4 82 400c13.8-13 31.6-25 43.4-32.4 2.7-1.6 6.6-4 11.4-6.9.8-.5 1.2-.7 1.2-.7.9-.6 1.9-1.1 2.9-1.7 8.3 30.4.3 57.2-19.1 78.3zm134.4-91.4c-6.4 15.7-19.9 55.7-28.1 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.1-11.3 21.2-14.9 23.8-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.9-13.9 0 .5.1 1 .1 1.6-.1 17.9-17.3 30-25.1 34.8zm85.6-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.6-15.3 19-24.5 1.2 3.8 1.9 7.4 1.9 10.8-.1 22.5-16.2 30.9-25.9 34.4z"], + "schlix": [448, 512, [], "f3ea", "M350.5 157.7l-54.2-46.1 73.4-39 78.3 44.2-97.5 40.9zM192 122.1l45.7-28.2 34.7 34.6-55.4 29-25-35.4zm-65.1 6.6l31.9-22.1L176 135l-36.7 22.5-12.4-28.8zm-23.3 88.2l-8.8-34.8 29.6-18.3 13.1 35.3-33.9 17.8zm-21.2-83.7l23.9-18.1 8.9 24-26.7 18.3-6.1-24.2zM59 206.5l-3.6-28.4 22.3-15.5 6.1 28.7L59 206.5zm-30.6 16.6l20.8-12.8 3.3 33.4-22.9 12-1.2-32.6zM1.4 268l19.2-10.2.4 38.2-21 8.8L1.4 268zm59.1 59.3l-28.3 8.3-1.6-46.8 25.1-10.7 4.8 49.2zM99 263.2l-31.1 13-5.2-40.8L90.1 221l8.9 42.2zM123.2 377l-41.6 5.9-8.1-63.5 35.2-10.8 14.5 68.4zm28.5-139.9l21.2 57.1-46.2 13.6-13.7-54.1 38.7-16.6zm85.7 230.5l-70.9-3.3-24.3-95.8 55.2-8.6 40 107.7zm-84.9-279.7l42.2-22.4 28 45.9-50.8 21.3-19.4-44.8zm41 94.9l61.3-18.7 52.8 86.6-79.8 11.3-34.3-79.2zm51.4-85.6l67.3-28.8 65.5 65.4-88.6 26.2-44.2-62.8z"], + "scribd": [384, 512, [], "f28a", "M42.3 252.7c-16.1-19-24.7-45.9-24.8-79.9 0-100.4 75.2-153.1 167.2-153.1 98.6-1.6 156.8 49 184.3 70.6l-50.5 72.1-37.3-24.6 26.9-38.6c-36.5-24-79.4-36.5-123-35.8-50.7-.8-111.7 27.2-111.7 76.2 0 18.7 11.2 20.7 28.6 15.6 23.3-5.3 41.9.6 55.8 14 26.4 24.3 23.2 67.6-.7 91.9-29.2 29.5-85.2 27.3-114.8-8.4zm317.7 5.9c-15.5-18.8-38.9-29.4-63.2-28.6-38.1-2-71.1 28-70.5 67.2-.7 16.8 6 33 18.4 44.3 14.1 13.9 33 19.7 56.3 14.4 17.4-5.1 28.6-3.1 28.6 15.6 0 4.3-.5 8.5-1.4 12.7-16.7 40.9-59.5 64.4-121.4 64.4-51.9.2-102.4-16.4-144.1-47.3l33.7-39.4-35.6-27.4L0 406.3l15.4 13.8c52.5 46.8 120.4 72.5 190.7 72.2 51.4 0 94.4-10.5 133.6-44.1 57.1-51.4 54.2-149.2 20.3-189.6z"], + "searchengin": [460, 512, [], "f3eb", "M220.6 130.3l-67.2 28.2V43.2L98.7 233.5l54.7-24.2v130.3l67.2-209.3zm-83.2-96.7l-1.3 4.7-15.2 52.9C80.6 106.7 52 145.8 52 191.5c0 52.3 34.3 95.9 83.4 105.5v53.6C57.5 340.1 0 272.4 0 191.6c0-80.5 59.8-147.2 137.4-158zm311.4 447.2c-11.2 11.2-23.1 12.3-28.6 10.5-5.4-1.8-27.1-19.9-60.4-44.4-33.3-24.6-33.6-35.7-43-56.7-9.4-20.9-30.4-42.6-57.5-52.4l-9.7-14.7c-24.7 16.9-53 26.9-81.3 28.7l2.1-6.6 15.9-49.5c46.5-11.9 80.9-54 80.9-104.2 0-54.5-38.4-102.1-96-107.1V32.3C254.4 37.4 320 106.8 320 191.6c0 33.6-11.2 64.7-29 90.4l14.6 9.6c9.8 27.1 31.5 48 52.4 57.4s32.2 9.7 56.8 43c24.6 33.2 42.7 54.9 44.5 60.3s.7 17.3-10.5 28.5zm-9.9-17.9c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8z"], + "sellcast": [448, 512, [], "f2da", "M353.4 32H94.7C42.6 32 0 74.6 0 126.6v258.7C0 437.4 42.6 480 94.7 480h258.7c52.1 0 94.7-42.6 94.7-94.6V126.6c0-52-42.6-94.6-94.7-94.6zm-50 316.4c-27.9 48.2-89.9 64.9-138.2 37.2-22.9 39.8-54.9 8.6-42.3-13.2l15.7-27.2c5.9-10.3 19.2-13.9 29.5-7.9 18.6 10.8-.1-.1 18.5 10.7 27.6 15.9 63.4 6.3 79.4-21.3 15.9-27.6 6.3-63.4-21.3-79.4-17.8-10.2-.6-.4-18.6-10.6-24.6-14.2-3.4-51.9 21.6-37.5 18.6 10.8-.1-.1 18.5 10.7 48.4 28 65.1 90.3 37.2 138.5zm21.8-208.8c-17 29.5-16.3 28.8-19 31.5-6.5 6.5-16.3 8.7-26.5 3.6-18.6-10.8.1.1-18.5-10.7-27.6-15.9-63.4-6.3-79.4 21.3s-6.3 63.4 21.3 79.4c0 0 18.5 10.6 18.6 10.6 24.6 14.2 3.4 51.9-21.6 37.5-18.6-10.8.1.1-18.5-10.7-48.2-27.8-64.9-90.1-37.1-138.4 27.9-48.2 89.9-64.9 138.2-37.2l4.8-8.4c14.3-24.9 52-3.3 37.7 21.5z"], + "sellsy": [640, 512, [], "f213", "M539.71 237.308c3.064-12.257 4.29-24.821 4.29-37.384C544 107.382 468.618 32 376.076 32c-77.22 0-144.634 53.012-163.02 127.781-15.322-13.176-34.934-20.53-55.157-20.53-46.271 0-83.962 37.69-83.962 83.961 0 7.354.92 15.015 3.065 22.369-42.9 20.225-70.785 63.738-70.785 111.234C6.216 424.843 61.68 480 129.401 480h381.198c67.72 0 123.184-55.157 123.184-123.184.001-56.384-38.916-106.025-94.073-119.508zM199.88 401.554c0 8.274-7.048 15.321-15.321 15.321H153.61c-8.274 0-15.321-7.048-15.321-15.321V290.626c0-8.273 7.048-15.321 15.321-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v110.928zm89.477 0c0 8.274-7.048 15.321-15.322 15.321h-30.949c-8.274 0-15.321-7.048-15.321-15.321V270.096c0-8.274 7.048-15.321 15.321-15.321h30.949c8.274 0 15.322 7.048 15.322 15.321v131.458zm89.477 0c0 8.274-7.047 15.321-15.321 15.321h-30.949c-8.274 0-15.322-7.048-15.322-15.321V238.84c0-8.274 7.048-15.321 15.322-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v162.714zm87.027 0c0 8.274-7.048 15.321-15.322 15.321h-28.497c-8.274 0-15.321-7.048-15.321-15.321V176.941c0-8.579 7.047-15.628 15.321-15.628h28.497c8.274 0 15.322 7.048 15.322 15.628v224.613z"], + "servicestack": [496, 512, [], "f3ec", "M88 216c81.7 10.2 273.7 102.3 304 232H0c99.5-8.1 184.5-137 88-232zm32-152c32.3 35.6 47.7 83.9 46.4 133.6C249.3 231.3 373.7 321.3 400 448h96C455.3 231.9 222.8 79.5 120 64z"], + "shirtsinbulk": [448, 512, [], "f214", "M395.208 221.583H406v33.542h-10.792v-33.542zm0-9.625H406v-33.542h-10.792v33.542zm0 86.333H406V264.75h-10.792v33.541zM358.75 135.25h-33.542v10.5h33.542v-10.5zm36.458 206.208H406v-33.542h-10.792v33.542zM311.5 135.25h-33.542v10.5H311.5v-10.5zm-47.25 0H231v10.5h33.25v-10.5zm-47.25 0h-33.25v10.5H217v-10.5zm178.208 33.542H406V135.25h-33.542v10.5h22.75v23.042zm-255.792 259l30.625 13.417 4.375-9.917-30.625-13.417-4.375 9.917zM179.083 445l30.334 13.708 4.374-9.916-30.333-13.417-4.375 9.625zm216.125-60.375H406v-33.542h-10.792v33.542zm-334.833 8.167L91 406.208l4.375-9.624-30.625-13.709-4.375 9.917zm39.666 17.499l30.625 13.417 4.375-9.917-30.625-13.416-4.375 9.916zm132.417 38.501l4.375 9.916L267.459 445l-4.375-9.625-30.626 13.417zm118.417-52.208l4.375 9.624 30.624-13.416-4.374-9.917-30.625 13.709zM311.5 413.791l4.375 9.917 30.625-13.417-4.374-9.916-30.626 13.416zm-39.667 17.501l4.375 9.917 30.625-13.417-4.375-9.917-30.625 13.417zM311.5 46.583h-33.542v10.5H311.5v-10.5zm94.209 0h-33.251v10.5h33.251v-10.5zm-188.709 0h-33.25v10.5H217v-10.5zm141.75 0h-33.542v10.5h33.542v-10.5zm-94.5 0H231v10.5h33.25v-10.5zM448 3.708v406l-226.334 98.584L0 409.708v-406h448zm-29.166 116.958H29.166V390.75l192.792 85.75 196.875-85.75V120.666zm0-87.791H29.166V91.5h389.667V32.875zM75.542 46.583H42.291v10.5h33.251v-10.5zm94.5 0H136.5v10.5h33.542v-10.5zm-47.251 0H89.25v10.5h33.542v-10.5zm7.584 236.542c0-50.167 41.125-91.292 91.292-91.292 50.458 0 91.292 41.125 91.292 91.292 0 50.458-40.833 91.292-91.292 91.292-50.167-.001-91.292-40.834-91.292-91.292zm120.75 18.084c0 13.125-23.917 14.291-32.666 14.291-12.25 0-29.75-2.625-35.875-14.875h-.875L172.666 319c14.876 9.333 29.167 12.25 47.25 12.25 19.542 0 51.042-5.833 51.042-31.209 0-48.125-78.458-16.333-78.458-37.916 0-13.125 20.708-14.875 29.75-14.875 10.791 0 29.166 3.208 35.583 13.124h.875l8.751-16.916c-15.167-6.125-27.417-11.959-44.334-11.959-20.125 0-49.583 6.417-49.583 31.792 0 44.334 77.583 11.959 77.583 37.918zM122.791 135.25H89.25v10.5h33.542v-10.5zm-69.999 10.5h22.75v-10.5H42v33.542h10.792V145.75zm0 32.666H42v33.542h10.792v-33.542zm117.25-43.166H136.5v10.5h33.542v-10.5zm-117.25 86.333H42v33.542h10.792v-33.542zm0 86.334H42v33.542h10.792v-33.542zm0-43.167H42v33.542h10.792V264.75zm0 86.333H42v33.542h10.792v-33.542z"], + "shopware": [495, 512, [], "f5b5", "M395.5 455.27c-42.95 31.79-93.95 48.59-147.48 48.59-137.21 0-248.02-111-248.02-248 0-137.19 111.04-248 248.02-248 61.3 0 120.14 22.55 165.68 63.5 2.62 2.36.58 6.64-2.86 6.18-17.67-2.43-36.75-3.66-56.71-3.66-129.36 0-222.4 53.47-222.4 155.35 0 109.04 92.13 145.88 176.83 178.73 33.64 13.04 65.4 25.36 86.96 41.59 1.9 1.44 1.89 4.31-.02 5.72zm99.46-222.32c-.08-.94-.55-1.83-1.27-2.44-51.76-42.96-93.62-60.48-144.48-60.48-84.13 0-80.25 52.17-80.25 53.63 0 42.6 52.06 62.01 112.34 84.49 31.07 11.59 63.19 23.57 92.68 39.93 1.88 1.05 4.26.19 5.05-1.82 18.89-48.39 17.94-90.23 15.93-113.31z"], + "simplybuilt": [512, 512, [], "f215", "M481.2 64h-106c-14.5 0-26.6 11.8-26.6 26.3v39.6H163.3V90.3c0-14.5-12-26.3-26.6-26.3h-106C16.1 64 4.3 75.8 4.3 90.3v331.4c0 14.5 11.8 26.3 26.6 26.3h450.4c14.8 0 26.6-11.8 26.6-26.3V90.3c-.2-14.5-12-26.3-26.7-26.3zM149.8 355.8c-36.6 0-66.4-29.7-66.4-66.4 0-36.9 29.7-66.6 66.4-66.6 36.9 0 66.6 29.7 66.6 66.6 0 36.7-29.7 66.4-66.6 66.4zm212.4 0c-36.9 0-66.6-29.7-66.6-66.6 0-36.6 29.7-66.4 66.6-66.4 36.6 0 66.4 29.7 66.4 66.4 0 36.9-29.8 66.6-66.4 66.6z"], + "sistrix": [448, 512, [], "f3ee", "M448 449L301.2 300.2c20-27.9 31.9-62.2 31.9-99.2 0-93.1-74.7-168.9-166.5-168.9C74.7 32 0 107.8 0 200.9s74.7 168.9 166.5 168.9c39.8 0 76.3-14.2 105-37.9l146 148.1 30.5-31zM166.5 330.8c-70.6 0-128.1-58.3-128.1-129.9S95.9 71 166.5 71s128.1 58.3 128.1 129.9-57.4 129.9-128.1 129.9z"], + "sith": [448, 512, [], "f512", "M0 32l69.71 118.75-58.86-11.52 69.84 91.03a146.741 146.741 0 0 0 0 51.45l-69.84 91.03 58.86-11.52L0 480l118.75-69.71-11.52 58.86 91.03-69.84c17.02 3.04 34.47 3.04 51.48 0l91.03 69.84-11.52-58.86L448 480l-69.71-118.78 58.86 11.52-69.84-91.03c3.03-17.01 3.04-34.44 0-51.45l69.84-91.03-58.86 11.52L448 32l-118.75 69.71 11.52-58.9-91.06 69.87c-8.5-1.52-17.1-2.29-25.71-2.29s-17.21.78-25.71 2.29l-91.06-69.87 11.52 58.9L0 32zm224 99.78c31.8 0 63.6 12.12 87.85 36.37 48.5 48.5 48.49 127.21 0 175.7s-127.2 48.46-175.7-.03c-48.5-48.5-48.49-127.21 0-175.7 24.24-24.25 56.05-36.34 87.85-36.34zm0 36.66c-22.42 0-44.83 8.52-61.92 25.61-34.18 34.18-34.19 89.68 0 123.87s89.65 34.18 123.84 0c34.18-34.18 34.19-89.68 0-123.87-17.09-17.09-39.5-25.61-61.92-25.61z"], + "skyatlas": [640, 512, [], "f216", "M640 329.3c0 65.9-52.5 114.4-117.5 114.4-165.9 0-196.6-249.7-359.7-249.7-146.9 0-147.1 212.2 5.6 212.2 42.5 0 90.9-17.8 125.3-42.5 5.6-4.1 16.9-16.3 22.8-16.3s10.9 5 10.9 10.9c0 7.8-13.1 19.1-18.7 24.1-40.9 35.6-100.3 61.2-154.7 61.2-83.4.1-154-59-154-144.9s67.5-149.1 152.8-149.1c185.3 0 222.5 245.9 361.9 245.9 99.9 0 94.8-139.7 3.4-139.7-17.5 0-35 11.6-46.9 11.6-8.4 0-15.9-7.2-15.9-15.6 0-11.6 5.3-23.7 5.3-36.3 0-66.6-50.9-114.7-116.9-114.7-53.1 0-80 36.9-88.8 36.9-6.2 0-11.2-5-11.2-11.2 0-5.6 4.1-10.3 7.8-14.4 25.3-28.8 64.7-43.7 102.8-43.7 79.4 0 139.1 58.4 139.1 137.8 0 6.9-.3 13.7-1.2 20.6 11.9-3.1 24.1-4.7 35.9-4.7 60.7 0 111.9 45.3 111.9 107.2z"], + "skype": [448, 512, [], "f17e", "M424.7 299.8c2.9-14 4.7-28.9 4.7-43.8 0-113.5-91.9-205.3-205.3-205.3-14.9 0-29.7 1.7-43.8 4.7C161.3 40.7 137.7 32 112 32 50.2 32 0 82.2 0 144c0 25.7 8.7 49.3 23.3 68.2-2.9 14-4.7 28.9-4.7 43.8 0 113.5 91.9 205.3 205.3 205.3 14.9 0 29.7-1.7 43.8-4.7 19 14.6 42.6 23.3 68.2 23.3 61.8 0 112-50.2 112-112 .1-25.6-8.6-49.2-23.2-68.1zm-194.6 91.5c-65.6 0-120.5-29.2-120.5-65 0-16 9-30.6 29.5-30.6 31.2 0 34.1 44.9 88.1 44.9 25.7 0 42.3-11.4 42.3-26.3 0-18.7-16-21.6-42-28-62.5-15.4-117.8-22-117.8-87.2 0-59.2 58.6-81.1 109.1-81.1 55.1 0 110.8 21.9 110.8 55.4 0 16.9-11.4 31.8-30.3 31.8-28.3 0-29.2-33.5-75-33.5-25.7 0-42 7-42 22.5 0 19.8 20.8 21.8 69.1 33 41.4 9.3 90.7 26.8 90.7 77.6 0 59.1-57.1 86.5-112 86.5z"], + "slack": [448, 512, [], "f198", "M244.2 217.5l19.3 57.7-59.8 20-19.3-57.7 59.8-20zm41.4 243.7C131.6 507.4 65 471.6 18.8 317.6S8.4 97 162.4 50.8C316.4 4.6 383 40.4 429.2 194.4c46.2 154 10.4 220.6-143.6 266.8zM366.2 265c-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-19.3-57.7 29-9.7c12.2-3.9 18.6-17.2 14.7-29.4-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-59.8 20.1-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l19.3 57.7-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 59.8-20.1 10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 29-9.7c12.2-4.2 18.6-17.5 14.7-29.6z"], + "slack-hash": [448, 512, [], "f3ef", "M446.2 270.4c-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-30.3-90 45.4-15.1c19.1-6.2 29.1-26.8 23-45.9-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-93.4 31.2-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-45.3 15c-19.1 6.2-29.1 26.8-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l30.3 90L78 354.8c-19 6.2-29.1 26.9-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 93.6-31.3 15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 45.4-15.1c19-6 29.1-26.7 22.9-45.7zm-254.1 47.2l-30.3-90.2 93.5-31.3 30.3 90.2-93.5 31.3z"], + "slideshare": [512, 512, [], "f1e7", "M249.429 211.436c0 31.716-27.715 57.717-61.717 57.717-34.001 0-61.716-26.001-61.716-57.717 0-32.001 27.715-57.716 61.716-57.716 34.001 0 61.717 25.715 61.717 57.716zm254.294 50.002c-18.286 22.573-53.144 50.288-106.289 72.003C453.722 525.163 260 555.735 263.143 457.446c0 1.714-.286-52.859-.286-93.432-4.285-.858-8.571-2-13.714-3.143 0 40.858-.286 98.289-.286 96.575C252 555.735 58.278 525.163 114.566 333.441c-53.145-21.715-88.003-49.43-106.29-72.003-9.143-13.714.858-28.287 16.001-17.715 2 1.428 4.285 2.857 6.285 4.285V49.716C30.563 22.287 51.135 0 76.565 0h359.157c25.429 0 46.002 22.287 46.002 49.716v198.293l6-4.285c15.143-10.573 25.143 4 15.999 17.714zm-46.572-189.15c0-32.858-10.572-45.716-40.859-45.716H98.566c-31.716 0-40.573 10.858-40.573 45.716v192.293c67.717 35.43 125.72 29.144 157.435 28.001 13.429-.286 22.001 2.286 27.144 7.715 1.689 1.687 10.023 9.446 20.287 17.143 1.143-15.715 10.001-25.715 33.716-24.858 32.287 1.428 91.718 7.715 160.577-29.716V72.288zM331.146 153.72c-34.002 0-61.716 25.715-61.716 57.716 0 31.716 27.715 57.717 61.716 57.717 34.287 0 61.716-26.001 61.716-57.717 0-32.001-27.429-57.716-61.716-57.716z"], + "snapchat": [496, 512, [], "f2ab", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm169.5 338.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C183.1 100 230.7 96 244.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z"], + "snapchat-ghost": [512, 512, [], "f2ac", "M510.846 392.673c-5.211 12.157-27.239 21.089-67.36 27.318-2.064 2.786-3.775 14.686-6.507 23.956-1.625 5.566-5.623 8.869-12.128 8.869l-.297-.005c-9.395 0-19.203-4.323-38.852-4.323-26.521 0-35.662 6.043-56.254 20.588-21.832 15.438-42.771 28.764-74.027 27.399-31.646 2.334-58.025-16.908-72.871-27.404-20.714-14.643-29.828-20.582-56.241-20.582-18.864 0-30.736 4.72-38.852 4.72-8.073 0-11.213-4.922-12.422-9.04-2.703-9.189-4.404-21.263-6.523-24.13-20.679-3.209-67.31-11.344-68.498-32.15a10.627 10.627 0 0 1 8.877-11.069c69.583-11.455 100.924-82.901 102.227-85.934.074-.176.155-.344.237-.515 3.713-7.537 4.544-13.849 2.463-18.753-5.05-11.896-26.872-16.164-36.053-19.796-23.715-9.366-27.015-20.128-25.612-27.504 2.437-12.836 21.725-20.735 33.002-15.453 8.919 4.181 16.843 6.297 23.547 6.297 5.022 0 8.212-1.204 9.96-2.171-2.043-35.936-7.101-87.29 5.687-115.969C158.122 21.304 229.705 15.42 250.826 15.42c.944 0 9.141-.089 10.11-.089 52.148 0 102.254 26.78 126.723 81.643 12.777 28.65 7.749 79.792 5.695 116.009 1.582.872 4.357 1.942 8.599 2.139 6.397-.286 13.815-2.389 22.069-6.257 6.085-2.846 14.406-2.461 20.48.058l.029.01c9.476 3.385 15.439 10.215 15.589 17.87.184 9.747-8.522 18.165-25.878 25.018-2.118.835-4.694 1.655-7.434 2.525-9.797 3.106-24.6 7.805-28.616 17.271-2.079 4.904-1.256 11.211 2.46 18.748.087.168.166.342.239.515 1.301 3.03 32.615 74.46 102.23 85.934 6.427 1.058 11.163 7.877 7.725 15.859z"], + "snapchat-square": [448, 512, [], "f2ad", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6.5 314.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C159.1 100 206.7 96 220.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z"], + "soundcloud": [640, 512, [], "f1be", "M111.4 256.3l5.8 65-5.8 68.3c-.3 2.5-2.2 4.4-4.4 4.4s-4.2-1.9-4.2-4.4l-5.6-68.3 5.6-65c0-2.2 1.9-4.2 4.2-4.2 2.2 0 4.1 2 4.4 4.2zm21.4-45.6c-2.8 0-4.7 2.2-5 5l-5 105.6 5 68.3c.3 2.8 2.2 5 5 5 2.5 0 4.7-2.2 4.7-5l5.8-68.3-5.8-105.6c0-2.8-2.2-5-4.7-5zm25.5-24.1c-3.1 0-5.3 2.2-5.6 5.3l-4.4 130 4.4 67.8c.3 3.1 2.5 5.3 5.6 5.3 2.8 0 5.3-2.2 5.3-5.3l5.3-67.8-5.3-130c0-3.1-2.5-5.3-5.3-5.3zM7.2 283.2c-1.4 0-2.2 1.1-2.5 2.5L0 321.3l4.7 35c.3 1.4 1.1 2.5 2.5 2.5s2.2-1.1 2.5-2.5l5.6-35-5.6-35.6c-.3-1.4-1.1-2.5-2.5-2.5zm23.6-21.9c-1.4 0-2.5 1.1-2.5 2.5l-6.4 57.5 6.4 56.1c0 1.7 1.1 2.8 2.5 2.8s2.5-1.1 2.8-2.5l7.2-56.4-7.2-57.5c-.3-1.4-1.4-2.5-2.8-2.5zm25.3-11.4c-1.7 0-3.1 1.4-3.3 3.3L47 321.3l5.8 65.8c.3 1.7 1.7 3.1 3.3 3.1 1.7 0 3.1-1.4 3.1-3.1l6.9-65.8-6.9-68.1c0-1.9-1.4-3.3-3.1-3.3zm25.3-2.2c-1.9 0-3.6 1.4-3.6 3.6l-5.8 70 5.8 67.8c0 2.2 1.7 3.6 3.6 3.6s3.6-1.4 3.9-3.6l6.4-67.8-6.4-70c-.3-2.2-2-3.6-3.9-3.6zm241.4-110.9c-1.1-.8-2.8-1.4-4.2-1.4-2.2 0-4.2.8-5.6 1.9-1.9 1.7-3.1 4.2-3.3 6.7v.8l-3.3 176.7 1.7 32.5 1.7 31.7c.3 4.7 4.2 8.6 8.9 8.6s8.6-3.9 8.6-8.6l3.9-64.2-3.9-177.5c-.4-3-2-5.8-4.5-7.2zm-26.7 15.3c-1.4-.8-2.8-1.4-4.4-1.4s-3.1.6-4.4 1.4c-2.2 1.4-3.6 3.9-3.6 6.7l-.3 1.7-2.8 160.8s0 .3 3.1 65.6v.3c0 1.7.6 3.3 1.7 4.7 1.7 1.9 3.9 3.1 6.4 3.1 2.2 0 4.2-1.1 5.6-2.5 1.7-1.4 2.5-3.3 2.5-5.6l.3-6.7 3.1-58.6-3.3-162.8c-.3-2.8-1.7-5.3-3.9-6.7zm-111.4 22.5c-3.1 0-5.8 2.8-5.8 6.1l-4.4 140.6 4.4 67.2c.3 3.3 2.8 5.8 5.8 5.8 3.3 0 5.8-2.5 6.1-5.8l5-67.2-5-140.6c-.2-3.3-2.7-6.1-6.1-6.1zm376.7 62.8c-10.8 0-21.1 2.2-30.6 6.1-6.4-70.8-65.8-126.4-138.3-126.4-17.8 0-35 3.3-50.3 9.4-6.1 2.2-7.8 4.4-7.8 9.2v249.7c0 5 3.9 8.6 8.6 9.2h218.3c43.3 0 78.6-35 78.6-78.3.1-43.6-35.2-78.9-78.5-78.9zm-296.7-60.3c-4.2 0-7.5 3.3-7.8 7.8l-3.3 136.7 3.3 65.6c.3 4.2 3.6 7.5 7.8 7.5 4.2 0 7.5-3.3 7.5-7.5l3.9-65.6-3.9-136.7c-.3-4.5-3.3-7.8-7.5-7.8zm-53.6-7.8c-3.3 0-6.4 3.1-6.4 6.7l-3.9 145.3 3.9 66.9c.3 3.6 3.1 6.4 6.4 6.4 3.6 0 6.4-2.8 6.7-6.4l4.4-66.9-4.4-145.3c-.3-3.6-3.1-6.7-6.7-6.7zm26.7 3.4c-3.9 0-6.9 3.1-6.9 6.9L227 321.3l3.9 66.4c.3 3.9 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9l4.2-66.4-4.2-141.7c0-3.9-3-6.9-6.9-6.9z"], + "speakap": [448, 512, [], "f3f3", "M352 32H96C43.2 32 0 75.2 0 128v256c0 52.8 43.2 96 96 96h256c52.8 0 96-43.2 96-96V128c0-52.8-43.2-96-96-96zM221 382.9c-39.6 0-81.9-17.8-81.9-53.7V302H179v17.8c0 15.1 19.5 24.5 41.9 24.5 24.2 0 41.3-10.4 41.3-29.5 0-23.8-27.2-31.9-54.7-42.6-31.9-12.4-63.1-26.2-63.1-69.1 0-48 38.6-66.4 79.9-66.4 37.6 0 75.5 14.1 75.5 41.9v31.2h-39.9v-16.1c0-12.1-17.8-18.5-35.6-18.5-19.5 0-35.6 8.1-35.6 26.2 0 22.1 22.5 29.2 47 38.9 35.9 12.4 71.1 27.2 71.1 71.5.1 48.6-40.8 71.1-85.8 71.1z"], + "spotify": [496, 512, [], "f1bc", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm100.7 364.9c-4.2 0-6.8-1.3-10.7-3.6-62.4-37.6-135-39.2-206.7-24.5-3.9 1-9 2.6-11.9 2.6-9.7 0-15.8-7.7-15.8-15.8 0-10.3 6.1-15.2 13.6-16.8 81.9-18.1 165.6-16.5 237 26.2 6.1 3.9 9.7 7.4 9.7 16.5s-7.1 15.4-15.2 15.4zm26.9-65.6c-5.2 0-8.7-2.3-12.3-4.2-62.5-37-155.7-51.9-238.6-29.4-4.8 1.3-7.4 2.6-11.9 2.6-10.7 0-19.4-8.7-19.4-19.4s5.2-17.8 15.5-20.7c27.8-7.8 56.2-13.6 97.8-13.6 64.9 0 127.6 16.1 177 45.5 8.1 4.8 11.3 11 11.3 19.7-.1 10.8-8.5 19.5-19.4 19.5zm31-76.2c-5.2 0-8.4-1.3-12.9-3.9-71.2-42.5-198.5-52.7-280.9-29.7-3.6 1-8.1 2.6-12.9 2.6-13.2 0-23.3-10.3-23.3-23.6 0-13.6 8.4-21.3 17.4-23.9 35.2-10.3 74.6-15.2 117.5-15.2 73 0 149.5 15.2 205.4 47.8 7.8 4.5 12.9 10.7 12.9 22.6 0 13.6-11 23.3-23.2 23.3z"], + "squarespace": [512, 512, [], "f5be", "M186.12 343.34c-9.65 9.65-9.65 25.29 0 34.94 9.65 9.65 25.29 9.65 34.94 0L378.24 221.1c19.29-19.29 50.57-19.29 69.86 0s19.29 50.57 0 69.86L293.95 445.1c19.27 19.29 50.53 19.31 69.82.04l.04-.04 119.25-119.24c38.59-38.59 38.59-101.14 0-139.72-38.59-38.59-101.15-38.59-139.72 0l-157.22 157.2zm244.53-104.8c-9.65-9.65-25.29-9.65-34.93 0l-157.2 157.18c-19.27 19.29-50.53 19.31-69.82.05l-.05-.05c-9.64-9.64-25.27-9.65-34.92-.01l-.01.01c-9.65 9.64-9.66 25.28-.02 34.93l.02.02c38.58 38.57 101.14 38.57 139.72 0l157.2-157.2c9.65-9.65 9.65-25.29.01-34.93zm-261.99 87.33l157.18-157.18c9.64-9.65 9.64-25.29 0-34.94-9.64-9.64-25.27-9.64-34.91 0L133.72 290.93c-19.28 19.29-50.56 19.3-69.85.01l-.01-.01c-19.29-19.28-19.31-50.54-.03-69.84l.03-.03L218.03 66.89c-19.28-19.29-50.55-19.3-69.85-.02l-.02.02L28.93 186.14c-38.58 38.59-38.58 101.14 0 139.72 38.6 38.59 101.13 38.59 139.73.01zm-87.33-52.4c9.64 9.64 25.27 9.64 34.91 0l157.21-157.19c19.28-19.29 50.55-19.3 69.84-.02l.02.02c9.65 9.65 25.29 9.65 34.93 0 9.65-9.65 9.65-25.29 0-34.93-38.59-38.59-101.13-38.59-139.72 0L81.33 238.54c-9.65 9.64-9.65 25.28-.01 34.93h.01z"], + "stack-exchange": [448, 512, [], "f18d", "M17.7 332.3h412.7v22c0 37.7-29.3 68-65.3 68h-19L259.3 512v-89.7H83c-36 0-65.3-30.3-65.3-68v-22zm0-23.6h412.7v-85H17.7v85zm0-109.4h412.7v-85H17.7v85zM365 0H83C47 0 17.7 30.3 17.7 67.7V90h412.7V67.7C430.3 30.3 401 0 365 0z"], + "stack-overflow": [384, 512, [], "f16c", "M293.7 300l-181.2-84.5 16.7-36.5 181.3 84.7-16.8 36.3zm48-76L188.2 95.7l-25.5 30.8 153.5 128.3 25.5-30.8zm39.6-31.7L262 32l-32 24 119.3 160.3 32-24zM290.7 311L95 269.7 86.8 309l195.7 41 8.2-39zm31.6 129H42.7V320h-40v160h359.5V320h-40v120zm-39.8-80h-200v39.7h200V360z"], + "staylinked": [440, 512, [], "f3f5", "M201.6 127.4c4.1-3.2 10.3-3 13.8.5l170 167.3-2.7-2.7 44.3 41.3c3.7 3.5 3.3 9-.7 12.2l-198 163.9c-9.9 7.6-17.3.8-17.3.8L2.3 314.6c-3.5-3.5-3-9 1.2-12.2l45.8-34.9c4.2-3.2 10.4-3 13.9.5l151.9 147.5c3.7 3.5 10 3.7 14.2.4l93.2-74c4.1-3.2 4.5-8.7.9-12.2l-84-81.3c-3.6-3.5-9.9-3.7-14-.5l-.1.1c-4.1 3.2-10.4 3-14-.5l-68.1-64.3c-3.5-3.5-3.1-9 1.1-12.2l57.3-43.6m14.8 257.3c3.7 3.5 10.1 3.7 14.3.4l50.2-38.8-.3-.3 7.7-6c4.2-3.2 4.6-8.7.9-12.2l-57.1-54.4c-3.6-3.5-10-3.7-14.2-.5l-.1.1c-4.2 3.2-10.5 3.1-14.2-.4L109 180.8c-3.6-3.5-3.1-8.9 1.1-12.2l92.2-71.5c4.1-3.2 10.3-3 13.9.5l160.4 159c3.7 3.5 10 3.7 14.1.5l45.8-35.8c4.1-3.2 4.4-8.7.7-12.2L226.7 2.5c-1.5-1.2-8-5.5-16.3 1.1L3.6 165.7c-4.2 3.2-4.8 8.7-1.2 12.2l42.3 41.7"], + "steam": [496, 512, [], "f1b6", "M496 256c0 137-111.2 248-248.4 248-113.8 0-209.6-76.3-239-180.4l95.2 39.3c6.4 32.1 34.9 56.4 68.9 56.4 39.2 0 71.9-32.4 70.2-73.5l84.5-60.2c52.1 1.3 95.8-40.9 95.8-93.5 0-51.6-42-93.5-93.7-93.5s-93.7 42-93.7 93.5v1.2L176.6 279c-15.5-.9-30.7 3.4-43.5 12.1L0 236.1C10.2 108.4 117.1 8 247.6 8 384.8 8 496 119 496 256zM155.7 384.3l-30.5-12.6a52.79 52.79 0 0 0 27.2 25.8c26.9 11.2 57.8-1.6 69-28.4 5.4-13 5.5-27.3.1-40.3-5.4-13-15.5-23.2-28.5-28.6-12.9-5.4-26.7-5.2-38.9-.6l31.5 13c19.8 8.2 29.2 30.9 20.9 50.7-8.3 19.9-31 29.2-50.8 21zm173.8-129.9c-34.4 0-62.4-28-62.4-62.3s28-62.3 62.4-62.3 62.4 28 62.4 62.3-27.9 62.3-62.4 62.3zm.1-15.6c25.9 0 46.9-21 46.9-46.8 0-25.9-21-46.8-46.9-46.8s-46.9 21-46.9 46.8c.1 25.8 21.1 46.8 46.9 46.8z"], + "steam-square": [448, 512, [], "f1b7", "M185.2 356.5c7.7-18.5-1-39.7-19.6-47.4l-29.5-12.2c11.4-4.3 24.3-4.5 36.4.5 12.2 5.1 21.6 14.6 26.7 26.7 5 12.2 5 25.6-.1 37.7-10.5 25.1-39.4 37-64.6 26.5-11.6-4.8-20.4-13.6-25.4-24.2l28.5 11.8c18.6 7.8 39.9-.9 47.6-19.4zM400 32H48C21.5 32 0 53.5 0 80v160.7l116.6 48.1c12-8.2 26.2-12.1 40.7-11.3l55.4-80.2v-1.1c0-48.2 39.3-87.5 87.6-87.5s87.6 39.3 87.6 87.5c0 49.2-40.9 88.7-89.6 87.5l-79 56.3c1.6 38.5-29.1 68.8-65.7 68.8-31.8 0-58.5-22.7-64.5-52.7L0 319.2V432c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-99.7 222.5c-32.2 0-58.4-26.1-58.4-58.3s26.2-58.3 58.4-58.3 58.4 26.2 58.4 58.3-26.2 58.3-58.4 58.3zm.1-14.6c24.2 0 43.9-19.6 43.9-43.8 0-24.2-19.6-43.8-43.9-43.8-24.2 0-43.9 19.6-43.9 43.8 0 24.2 19.7 43.8 43.9 43.8z"], + "steam-symbol": [448, 512, [], "f3f6", "M395.5 177.5c0 33.8-27.5 61-61 61-33.8 0-61-27.3-61-61s27.3-61 61-61c33.5 0 61 27.2 61 61zm52.5.2c0 63-51 113.8-113.7 113.8L225 371.3c-4 43-40.5 76.8-84.5 76.8-40.5 0-74.7-28.8-83-67L0 358V250.7L97.2 290c15.1-9.2 32.2-13.3 52-11.5l71-101.7c.5-62.3 51.5-112.8 114-112.8C397 64 448 115 448 177.7zM203 363c0-34.7-27.8-62.5-62.5-62.5-4.5 0-9 .5-13.5 1.5l26 10.5c25.5 10.2 38 39 27.7 64.5-10.2 25.5-39.2 38-64.7 27.5-10.2-4-20.5-8.3-30.7-12.2 10.5 19.7 31.2 33.2 55.2 33.2 34.7 0 62.5-27.8 62.5-62.5zm207.5-185.3c0-42-34.3-76.2-76.2-76.2-42.3 0-76.5 34.2-76.5 76.2 0 42.2 34.3 76.2 76.5 76.2 41.9.1 76.2-33.9 76.2-76.2z"], + "sticker-mule": [576, 512, [], "f3f7", "M353.1 509.8c-5.9 2.9-32.1 3.2-36.5-.5-4.1-3-2.2-11.9-1.5-15 2.2-15-2.5-7.9-9.8-11.5-3.1-1.5-4.1-5.5-4.6-10-.5-1.5-1-2.5-1.5-3.5-1.7-10.7 6.8-33.6 8.2-43.4 4.9-23.7-.7-37.2 1.5-46.9 3.7-16.2 4.1-3.5 4.1-29.9-1.4-25.9 3.3-36.9.5-38.9-14.8 0-64.3 10.7-112.2 2-46.1-8.9-59.4-29-65.4-30.9-10.3-4.5-23.2.5-27.3 7-.1.1-35 70.6-39.6 87.8-6.2 20.5-.5 47.4 4.1 66.8 0 .1 4.5 14.6 10.3 19.5 2.1 1.5 5.1 2.5 7.2 4.5 2.8 2.7 9.4 15.2 9.8 16 2.6 4.5 3.6 8-1.5 10.5-3.6 2-9.3 2.5-14.4 2.5-2.6.5-1.5 3.5-3.1 5-2.9 2.8-20.7 6.1-29.9 2.5-2.6-1-5.7-3-6.2-5-1.5-4 2.1-9-1-12.5-4.5-2.9-13.1-2-17-12-2.2-5.4-2.6-7.6-2.6-49.4 0-9.7-5.9-38.7-8.2-46.9-1.5-5.5-1.5-11.5 0-16 .3-.9 4.1-4.6 4.1-13-1-1.5-4.6-.5-5.1-1.5-10.4-80.6-5.9-79-7.7-98.3-1.5-16-10.9-43.9-6.7-64.3.5-2.4 3.4-21 24.2-38.9 31-26.7 48.4-38.3 159-11.5 1.1.4 66.3 21.1 110.7-9 15.5-11.3 28.8-11.3 35.5-16 .1-.1 61.7-52.1 87-65.3 47.2-29.4 69.9-16.7 75.1-18 4.7-1 13.4-25.8 17-25.8 5.5 0 1.6 20.2 3.6 25.9.5 2 3.6 5 6.2 5 2.3 0 1.7-.8 10.3-5 8.4-5.4 14.9-17.6 20.6-17 11.7 1.6-19 41.6-19 46.9 0 2 .2.8 4.6 9.5 2.6 5.5 4.6 13.5 6.2 20 8.3 29.7 5.7 14.6 13.4 36.9 20.2 50.1 20.6 45.2 20.6 52.9 0 7.5-4.1 11-7.2 16.5-1.5 3-4.6 7.5-7.2 8-2.7.7 7-1.5-13.4 2.5-7.2 1-13.4-4.5-14.9-9.5-1.6-4.7 2.8-10.1-11.8-22.9-10.3-10-21.1-11.3-31.9-17-9.8-5.7-11.9 1-18 8-18 22.9-34 46.9-52 69.8-11.8 15-24.2 30.4-33.5 47.4-3.9 6.8-9.5 28.1-10.3 29.9-6.2 17.7-5.5 25.8-16.5 68.3-3.1 10-5.7 21.4-8.7 32.4-2.2 6.8-7.4 49.3-.5 59.4 2.1 3.5 8.7 4.5 11.3 8 .1.1 9.6 18.2 9.3 20 0 6.1-9.4 5.6-11.3 6.5-4.8 2.9-3.8 5.9-6.4 7.4"], + "strava": [369, 512, [], "f428", "M301.6 292l-43.9 88.2-44.6-88.2h-67.6l112.2 220 111.5-220h-67.6zM151.4 0L0 292h89.2l62.2-116.1L213.1 292h88.5L151.4 0z"], + "stripe": [640, 512, [], "f429", "M640 261.6c0-45.5-22-81.4-64.2-81.4s-67.9 35.9-67.9 81.1c0 53.5 30.3 78.2 73.5 78.2 21.2 0 37.1-4.8 49.2-11.5v-33.4c-12.1 6.1-26 9.8-43.6 9.8-17.3 0-32.5-6.1-34.5-26.9h86.9c.2-2.3.6-11.6.6-15.9m-87.9-16.8c0-20 12.3-28.4 23.4-28.4 10.9 0 22.5 8.4 22.5 28.4h-45.9zm-112.9-64.6c-17.4 0-28.6 8.2-34.8 13.9l-2.3-11H363v204.8l44.4-9.4.1-50.2c6.4 4.7 15.9 11.2 31.4 11.2 31.8 0 60.8-23.2 60.8-79.6.1-51.6-29.3-79.7-60.5-79.7m-10.6 122.5c-10.4 0-16.6-3.8-20.9-8.4l-.3-66c4.6-5.1 11-8.8 21.2-8.8 16.2 0 27.4 18.2 27.4 41.4.1 23.9-10.9 41.8-27.4 41.8M346.4 124v36.2l-44.6 9.5v-36.2l44.6-9.5m-44.5 59.2h44.6v153.2h-44.6V183.2zm-47.8 13.1c10.4-19.1 31.1-15.2 37.1-13.1V224c-5.7-1.8-23.4-4.5-33.9 9.3v103.1H213V183.2h38.4l2.7 13.1m-89-13.1h33.7V221h-33.7v63.2c0 26.2 28 18 33.7 15.7v33.8c-5.9 3.2-16.6 5.9-31.2 5.9-26.3 0-46.1-17-46.1-43.3l.2-142.4 43.3-9.2.1 38.5zM44.9 228.3c0 20 67.9 10.5 67.9 63.4 0 32-25.4 47.8-62.3 47.8-15.3 0-32-3-48.5-10.1v-40c14.9 8.1 33.9 14.2 48.6 14.2 9.9 0 17-2.7 17-10.9 0-21.2-67.5-13.2-67.5-62.4 0-31.4 24-50.2 60-50.2 14.7 0 29.4 2.3 44.1 8.1V230c-13.5-7.3-30.7-11.4-44.2-11.4-9.3.1-15.1 2.8-15.1 9.7"], + "stripe-s": [362, 512, [], "f42a", "M144.3 154.6c0-22.3 18.6-30.9 48.4-30.9 43.4 0 98.5 13.3 141.9 36.7V26.1C287.3 7.2 240.1 0 192.8 0 77.1 0 0 60.4 0 161.4c0 157.9 216.8 132.3 216.8 200.4 0 26.4-22.9 34.9-54.7 34.9-47.2 0-108.2-19.5-156.1-45.5v128.5c53 22.8 106.8 32.4 156 32.4 118.6 0 200.3-51 200.3-153.6 0-170.2-218-139.7-218-203.9"], + "studiovinari": [512, 512, [], "f3f8", "M480.3 187.7l4.2 28v28l-25.1 44.1-39.8 78.4-56.1 67.5-79.1 37.8-17.7 24.5-7.7 12-9.6 4s17.3-63.6 19.4-63.6c2.1 0 20.3.7 20.3.7l66.7-38.6-92.5 26.1-55.9 36.8-22.8 28-6.6 1.4 20.8-73.6 6.9-5.5 20.7 12.9 88.3-45.2 56.8-51.5 14.8-68.4-125.4 23.3 15.2-18.2-173.4-53.3 81.9-10.5-166-122.9L133.5 108 32.2 0l252.9 126.6-31.5-38L378 163 234.7 64l18.7 38.4-49.6-18.1L158.3 0l194.6 122L310 66.2l108 96.4 12-8.9-21-16.4 4.2-37.8L451 89.1l29.2 24.7 11.5 4.2-7 6.2 8.5 12-13.1 7.4-10.3 20.2 10.5 23.9z"], + "stumbleupon": [512, 512, [], "f1a4", "M502.9 266v69.7c0 62.1-50.3 112.4-112.4 112.4-61.8 0-112.4-49.8-112.4-111.3v-70.2l34.3 16 51.1-15.2V338c0 14.7 12 26.5 26.7 26.5S417 352.7 417 338v-72h85.9zm-224.7-58.2l34.3 16 51.1-15.2V173c0-60.5-51.1-109-112.1-109-60.8 0-112.1 48.2-112.1 108.2v162.4c0 14.9-12 26.7-26.7 26.7S86 349.5 86 334.6V266H0v69.7C0 397.7 50.3 448 112.4 448c61.6 0 112.4-49.5 112.4-110.8V176.9c0-14.7 12-26.7 26.7-26.7s26.7 12 26.7 26.7v30.9z"], + "stumbleupon-circle": [496, 512, [], "f1a3", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 177.5c-9.8 0-17.8 8-17.8 17.8v106.9c0 40.9-33.9 73.9-74.9 73.9-41.4 0-74.9-33.5-74.9-74.9v-46.5h57.3v45.8c0 10 8 17.8 17.8 17.8s17.8-7.9 17.8-17.8V200.1c0-40 34.2-72.1 74.7-72.1 40.7 0 74.7 32.3 74.7 72.6v23.7l-34.1 10.1-22.9-10.7v-20.6c.1-9.6-7.9-17.6-17.7-17.6zm167.6 123.6c0 41.4-33.5 74.9-74.9 74.9-41.2 0-74.9-33.2-74.9-74.2V263l22.9 10.7 34.1-10.1v47.1c0 9.8 8 17.6 17.8 17.6s17.8-7.9 17.8-17.6v-48h57.3c-.1 45.9-.1 46.4-.1 46.4z"], + "superpowers": [448, 512, [], "f2dd", "M448 32c-83.3 11-166.8 22-250 33-92 12.5-163.3 86.7-169 180-3.3 55.5 18 109.5 57.8 148.2L0 480c83.3-11 166.5-22 249.8-33 91.8-12.5 163.3-86.8 168.7-179.8 3.5-55.5-18-109.5-57.7-148.2L448 32zm-79.7 232.3c-4.2 79.5-74 139.2-152.8 134.5-79.5-4.7-140.7-71-136.3-151 4.5-79.2 74.3-139.3 153-134.5 79.3 4.7 140.5 71 136.1 151z"], + "supple": [640, 512, [], "f3f9", "M640 262.5c0 64.1-109 116.1-243.5 116.1-24.8 0-48.6-1.8-71.1-5 7.7.4 15.5.6 23.4.6 134.5 0 243.5-56.9 243.5-127.1 0-29.4-19.1-56.4-51.2-78 60 21.1 98.9 55.1 98.9 93.4zM47.7 227.9c-.1-70.2 108.8-127.3 243.3-127.6 7.9 0 15.6.2 23.3.5-22.5-3.2-46.3-4.9-71-4.9C108.8 96.3-.1 148.5 0 212.6c.1 38.3 39.1 72.3 99.3 93.3-32.3-21.5-51.5-48.6-51.6-78zm60.2 39.9s10.5 13.2 29.3 13.2c17.9 0 28.4-11.5 28.4-25.1 0-28-40.2-25.1-40.2-39.7 0-5.4 5.3-9.1 12.5-9.1 5.7 0 11.3 2.6 11.3 6.6v3.9h14.2v-7.9c0-12.1-15.4-16.8-25.4-16.8-16.5 0-28.5 10.2-28.5 24.1 0 26.6 40.2 25.4 40.2 39.9 0 6.6-5.8 10.1-12.3 10.1-11.9 0-20.7-10.1-20.7-10.1l-8.8 10.9zm120.8-73.6v54.4c0 11.3-7.1 17.8-17.8 17.8-10.7 0-17.8-6.5-17.8-17.7v-54.5h-15.8v55c0 18.9 13.4 31.9 33.7 31.9 20.1 0 33.4-13 33.4-31.9v-55h-15.7zm34.4 85.4h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.8-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5.1 14.7-14 14.7h-12.6zm57 43h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.7-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5 14.7-14 14.7h-12.6zm57.1 34.8c0 5.8 2.4 8.2 8.2 8.2h37.6c5.8 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-18.6c-1.7 0-2.6-1-2.6-2.6v-61.2c0-5.7-2.4-8.2-8.2-8.2H401v13.4h5.2c1.7 0 2.6 1 2.6 2.6v61.2zm63.4 0c0 5.8 2.4 8.2 8.2 8.2H519c5.7 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-19.7c-1.7 0-2.6-1-2.6-2.6v-20.3h27.7v-13.4H488v-22.4h19.2c1.7 0 2.6 1 2.6 2.6v5.2H524v-13c0-5.7-2.5-8.2-8.2-8.2h-51.6v13.4h7.8v63.9zm58.9-76v5.9h1.6v-5.9h2.7v-1.2h-7v1.2h2.7zm5.7-1.2v7.1h1.5v-5.7l2.3 5.7h1.3l2.3-5.7v5.7h1.5v-7.1h-2.3l-2.1 5.1-2.1-5.1h-2.4z"], + "teamspeak": [511, 512, [], "f4f9", "M.82 237.82c2.36-15.52 10.69-27.04 24.88-34.03 3.5-1.85 5.65-3.5 6.37-7.81 6.17-33.41 19.53-63.94 39.37-91.59 2.36-3.19 4.01-5.35 1.03-9.35-3.7-5.35-1.03-10.18 2.98-14.49 28.06-31.87 61.88-55.1 101.98-67.44 95.81-29.4 180.1-9.35 252.37 60.45 6.68 6.37 15.52 12.85 6.99 24.36-1.34 1.85 1.03 3.5 2.16 5.04 20.66 28.06 34.23 59.42 40.4 93.65.82 3.7 2.98 5.04 5.86 6.37 17.37 8.84 25.7 23.34 26.01 42.25 0 17.17 1.85 34.54-1.03 51.71-4.01 24.67-29.19 41.74-53.25 36.7-7.2-1.64-9.35-7.2-9.35-14.19 0-28.06.82-56.44 0-84.6-1.85-75.76-36.18-132.81-102.28-169.41C234.28 4.98 92.11 72.42 67.54 196.91c-6.06 30.42-1.74 48.27-3.7 125.82-.31 7.2-4.32 11.2-12.03 11.51C20.97 335.58 0 316.05 0 285.21v-20.87m221.74 106.81c11.82-4.32 20.05-11.82 22.51-24.36 2.36-12.34-12.03-30.02-32.38-48.73-20.87-19.22-48.22-39.06-63.43-46.57-21.69-12.03-41.74-1.85-46.26 22.72-5.04 26.21 0 51.4 14.49 73.91 10.18 15.52 25.39 22.72 43.38 24.05 11.62.62 52.54 2.16 61.69-1.02m129.83 5.55c36.5 2.81 59.33-28.55 58.39-60.45-2.14-45.17-66.17-16.48-87.79-8.02-73.16 28.14-45.05 54.92-22.2 60.75m149.26-1.33c-2.98-2.36-7.2-1.03-8.33 2.36-8.02 25.39-44.72 112.46-172.08 121.51-149.67 10.49 80.29 43.59 145.36-6.37 22.72-17.37 47.6-35.05 46.57-85.43-.32-10.07-4.84-26.72-11.52-32.07"], + "telegram": [496, 512, [], "f2c6", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm121.8 169.9l-40.7 191.8c-3 13.6-11.1 16.9-22.4 10.5l-62-45.7-29.9 28.8c-3.3 3.3-6.1 6.1-12.5 6.1l4.4-63.1 114.9-103.8c5-4.4-1.1-6.9-7.7-2.5l-142 89.4-61.2-19.1c-13.3-4.2-13.6-13.3 2.8-19.7l239.1-92.2c11.1-4 20.8 2.7 17.2 19.5z"], + "telegram-plane": [448, 512, [], "f3fe", "M446.7 98.6l-67.6 318.8c-5.1 22.5-18.4 28.1-37.3 17.5l-103-75.9-49.7 47.8c-5.5 5.5-10.1 10.1-20.7 10.1l7.4-104.9 190.9-172.5c8.3-7.4-1.8-11.5-12.9-4.1L117.8 284 16.2 252.2c-22.1-6.9-22.5-22.1 4.6-32.7L418.2 66.4c18.4-6.9 34.5 4.1 28.5 32.2z"], + "tencent-weibo": [384, 512, [], "f1d5", "M72.3 495.8c1.4 19.9-27.6 22.2-29.7 2.9C31 368.8 73.7 259.2 144 185.5c-15.6-34 9.2-77.1 50.6-77.1 30.3 0 55.1 24.6 55.1 55.1 0 44-49.5 70.8-86.9 45.1-65.7 71.3-101.4 169.8-90.5 287.2zM192 .1C66.1.1-12.3 134.3 43.7 242.4 52.4 259.8 79 246.9 70 229 23.7 136.4 91 29.8 192 29.8c75.4 0 136.9 61.4 136.9 136.9 0 90.8-86.9 153.9-167.7 133.1-19.1-4.1-25.6 24.4-6.6 29.1 110.7 23.2 204-60 204-162.3C358.6 74.7 284 .1 192 .1z"], + "themeco": [441, 512, [], "f5c6", "M199.74 12.29c9.74-5.64 25.59-5.73 35.39-.21l188.13 105.95c9.81 5.52 17.76 19.14 17.76 30.38v213.87c0 11.26-7.93 24.89-17.71 30.46L235.09 499.88c-9.78 5.57-25.58 5.48-35.29-.21L17.58 392.95C7.87 387.26 0 373.52 0 362.27V148.41c0-11.26 7.9-24.96 17.63-30.59L199.74 12.29zM123.54 209c-15.69 0-31.39.14-47.08.14v99.87h18.83v-29.39h28.25c48.94 0 48.79-70.62 0-70.62zm137.96 98.73l-30.25-34.1c36.4-7.39 34.26-64.21-10.7-64.49-15.84 0-31.67-.14-47.51-.14v100.01h18.83v-33.38H210l29.1 33.38h22.4v-1.28zm-40.94-81.04c22.98 0 22.9 31.96 0 31.96h-28.68v-31.96h28.68zm-94.07-1.57c20.85 0 20.78 38.24 0 38.24H94.68v-38.23l31.81-.01zm189.65-17.97c-67.4 0-69.86 104.15 0 104.15 68.39-.01 68.33-104.15 0-104.15zm0 17.12c43.43 0 44.1 69.76 0 69.76-44.12 0-43.74-69.76 0-69.76z"], + "themeisle": [512, 512, [], "f2b2", "M208 88.286c0-10 6.286-21.714 17.715-21.714 11.142 0 17.714 11.714 17.714 21.714 0 10.285-6.572 21.714-17.714 21.714C214.286 110 208 98.571 208 88.286zm304 160c0 36.001-11.429 102.286-36.286 129.714-22.858 24.858-87.428 61.143-120.857 70.572l-1.143.286v32.571c0 16.286-12.572 30.571-29.143 30.571-10 0-19.429-5.714-24.572-14.286-5.427 8.572-14.856 14.286-24.856 14.286-10 0-19.429-5.714-24.858-14.286-5.142 8.572-14.571 14.286-24.57 14.286-10.286 0-19.429-5.714-24.858-14.286-5.143 8.572-14.571 14.286-24.571 14.286-18.857 0-29.429-15.714-29.429-32.857-16.286 12.285-35.715 19.428-56.571 19.428-22 0-43.429-8.285-60.286-22.857 10.285-.286 20.571-2.286 30.285-5.714-20.857-5.714-39.428-18.857-52-36.286 21.37 4.645 46.209 1.673 67.143-11.143-22-22-56.571-58.857-68.572-87.428C1.143 321.714 0 303.714 0 289.429c0-49.714 20.286-160 86.286-160 10.571 0 18.857 4.858 23.143 14.857a158.792 158.792 0 0 1 12-15.428c2-2.572 5.714-5.429 7.143-8.286 7.999-12.571 11.714-21.142 21.714-34C182.571 45.428 232 17.143 285.143 17.143c6 0 12 .285 17.714 1.143C313.714 6.571 328.857 0 344.572 0c14.571 0 29.714 6 40 16.286.857.858 1.428 2.286 1.428 3.428 0 3.714-10.285 13.429-12.857 16.286 4.286 1.429 15.714 6.858 15.714 12 0 2.857-2.857 5.143-4.571 7.143 31.429 27.714 49.429 67.143 56.286 108 4.286-5.143 10.285-8.572 17.143-8.572 10.571 0 20.857 7.144 28.571 14.001C507.143 187.143 512 221.714 512 248.286zM188 89.428c0 18.286 12.571 37.143 32.286 37.143 19.714 0 32.285-18.857 32.285-37.143 0-18-12.571-36.857-32.285-36.857-19.715 0-32.286 18.858-32.286 36.857zM237.714 194c0-19.714 3.714-39.143 8.571-58.286-52.039 79.534-13.531 184.571 68.858 184.571 21.428 0 42.571-7.714 60-20 2-7.429 3.714-14.857 3.714-22.572 0-14.286-6.286-21.428-20.572-21.428-4.571 0-9.143.857-13.429 1.714-63.343 12.668-107.142 3.669-107.142-63.999zm-41.142 254.858c0-11.143-8.858-20.857-20.286-20.857-11.429 0-20 9.715-20 20.857v32.571c0 11.143 8.571 21.142 20 21.142 11.428 0 20.286-9.715 20.286-21.142v-32.571zm49.143 0c0-11.143-8.572-20.857-20-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20-10 20-21.142v-32.571zm49.713 0c0-11.143-8.857-20.857-20.285-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20.285-9.715 20.285-21.142v-32.571zm49.715 0c0-11.143-8.857-20.857-20.286-20.857-11.428 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.858 21.142 20.286 21.142 11.429 0 20.286-10 20.286-21.142v-32.571zM421.714 286c-30.857 59.142-90.285 102.572-158.571 102.572-96.571 0-160.571-84.572-160.571-176.572 0-16.857 2-33.429 6-49.714-20 33.715-29.714 72.572-29.714 111.429 0 60.286 24.857 121.715 71.429 160.857 5.143-9.714 14.857-16.286 26-16.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.571-14.286 24.858-14.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.857-14.286 24.858-14.286 10 0 19.428 5.714 24.857 14.286 5.143-8.571 14.571-14.286 24.572-14.286 10.857 0 20.857 6.572 25.714 16 43.427-36.286 68.569-92 71.426-148.286zm10.572-99.714c0-53.714-34.571-105.714-92.572-105.714-30.285 0-58.571 15.143-78.857 36.857C240.862 183.812 233.41 254 302.286 254c28.805 0 97.357-28.538 84.286 36.857 28.857-26 45.714-65.714 45.714-104.571z"], + "trade-federation": [496, 512, [], "f513", "M202.45 108.42v81.61H38.94l48.22 61.91h114.73v196.75h64.61V252.96h83.27v-62.69h-83.18V171.1h145.62v-62.68H202.45zm4.86 6h197.77v50.68H259.44v30.93h83.18v50.93h-83.26v195.73h-52.73V245.94H89.86l-39.95-49.91h157.4v-81.61zM247.99 8.8C111.03 8.8 0 119.83 0 256.8s111.03 248 247.99 248S496 393.76 496 256.8 384.96 8.8 247.99 8.8zm.02 13.24c129.66 0 234.76 105.12 234.76 234.78s-105.1 234.76-234.76 234.76S13.23 386.47 13.23 256.81 118.35 22.04 248.01 22.04zm0 7.89c-125.3 0-226.89 101.57-226.89 226.87s101.59 226.89 226.89 226.89S474.88 382.1 474.88 256.8 373.31 29.93 248.01 29.93zm-.02 13.3c117.95 0 213.56 95.62 213.56 213.56s-95.62 213.56-213.56 213.56S34.43 374.75 34.43 256.8 130.04 43.23 247.99 43.23zm-73.32 104.8l15.66 18.05-22.16-9.45-12.33 20.47 2.15-23.99-23.28-5.4 23.48-5.37-2.06-23.81 12.37 20.67 22.01-9.32-15.84 18.15zm-47.14-46.54l8.01 12.4 12.69-5.86-9.32 11.45 9.5 10.25-13.77-5.32-6.82 12.2.81-14.74-13.71-2.71 14.27-3.78-1.66-13.89zm250.77 75.59l11.99 19.56 20.88-9.11-14.9 17.45 15.11 17.04-21.2-8.78-11.54 19.64 1.8-22.87-22.24-4.9 22.31-5.36-2.21-22.67zm-107.05 98.45l13.86-3.22-1.28-14.17 7.35 12.18 13.08-5.59-9.31 10.75 9.36 10.71-13.1-5.54-7.29 12.21 1.22-14.17-13.89-3.16zm-125.43 6.5l23.73-3.87-1.73-24.53 11.01 21.38 22.79-9.22-16.93 17.08 15.81 18.83-21.47-10.82-13.02 20.86 3.66-23.77-23.85-5.94zm63.44-165.66v81.61H54.16l36.72 46.01h117.7v196.75h48.82V245.01h83.27v-47.03H257.4v-34.83h145.73v-46.78H209.26zm10.86 11.2h171.8v24.36H246.88v56.23h82.93v23.94h-82.93v197.42h-26.76V232.1H96.31l-20.09-23.94h143.9v-80.59z"], + "trello": [448, 512, [], "f181", "M392 32H56C25.1 32 0 57.1 0 88v336c0 30.9 25.1 56 56 56h336c30.9 0 56-25.1 56-56V88c0-30.9-25.1-56-56-56zM194.9 371.4c0 14.8-12 26.9-26.9 26.9H85.1c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9H168c14.8 0 26.9 12 26.9 26.9v254.3zm194.9-112c0 14.8-12 26.9-26.9 26.9H280c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9h82.9c14.8 0 26.9 12 26.9 26.9v142.3z"], + "tripadvisor": [576, 512, [], "f262", "M166.4 280.521c0 13.236-10.73 23.966-23.966 23.966s-23.966-10.73-23.966-23.966 10.73-23.966 23.966-23.966 23.966 10.729 23.966 23.966zm264.962-23.956c-13.23 0-23.956 10.725-23.956 23.956 0 13.23 10.725 23.956 23.956 23.956 13.23 0 23.956-10.725 23.956-23.956-.001-13.231-10.726-23.956-23.956-23.956zm89.388 139.49c-62.667 49.104-153.276 38.109-202.379-24.559l-30.979 46.325-30.683-45.939c-48.277 60.39-135.622 71.891-197.885 26.055-64.058-47.158-77.759-137.316-30.601-201.374A186.762 186.762 0 0 0 0 139.416l90.286-.05a358.48 358.48 0 0 1 197.065-54.03 350.382 350.382 0 0 1 192.181 53.349l96.218.074a185.713 185.713 0 0 0-28.352 57.649c46.793 62.747 34.964 151.37-26.648 199.647zM259.366 281.761c-.007-63.557-51.535-115.075-115.092-115.068C80.717 166.7 29.2 218.228 29.206 281.785c.007 63.557 51.535 115.075 115.092 115.068 63.513-.075 114.984-51.539 115.068-115.052v-.04zm28.591-10.455c5.433-73.44 65.51-130.884 139.12-133.022a339.146 339.146 0 0 0-139.727-27.812 356.31 356.31 0 0 0-140.164 27.253c74.344 1.582 135.299 59.424 140.771 133.581zm251.706-28.767c-21.992-59.634-88.162-90.148-147.795-68.157-59.634 21.992-90.148 88.162-68.157 147.795v.032c22.038 59.607 88.198 90.091 147.827 68.113 59.615-22.004 90.113-88.162 68.125-147.783zm-326.039 37.975v.115c-.057 39.328-31.986 71.163-71.314 71.106-39.328-.057-71.163-31.986-71.106-71.314.057-39.328 31.986-71.163 71.314-71.106 39.259.116 71.042 31.94 71.106 71.199zm-24.512 0v-.084c-.051-25.784-20.994-46.645-46.778-46.594-25.784.051-46.645 20.994-46.594 46.777.051 25.784 20.994 46.645 46.777 46.594 25.726-.113 46.537-20.968 46.595-46.693zm313.423 0v.048c-.02 39.328-31.918 71.194-71.247 71.173s-71.194-31.918-71.173-71.247c.02-39.328 31.918-71.194 71.247-71.173 39.29.066 71.121 31.909 71.173 71.199zm-24.504-.008c-.009-25.784-20.918-46.679-46.702-46.67-25.784.009-46.679 20.918-46.67 46.702.009 25.784 20.918 46.678 46.702 46.67 25.765-.046 46.636-20.928 46.67-46.693v-.009z"], + "tumblr": [320, 512, [], "f173", "M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z"], + "tumblr-square": [448, 512, [], "f174", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-82.3 364.2c-8.5 9.1-31.2 19.8-60.9 19.8-75.5 0-91.9-55.5-91.9-87.9v-90h-29.7c-3.4 0-6.2-2.8-6.2-6.2v-42.5c0-4.5 2.8-8.5 7.1-10 38.8-13.7 50.9-47.5 52.7-73.2.5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2h-52.1V321c0 21.4 14.8 33.5 42.5 22.4 3-1.2 5.6-2 8-1.4 2.2.5 3.6 2.1 4.6 4.9l13.8 40.2c1 3.2 2 6.7-.3 9.1z"], + "twitch": [448, 512, [], "f1e8", "M40.1 32L10 108.9v314.3h107V480h60.2l56.8-56.8h87l117-117V32H40.1zm357.8 254.1L331 353H224l-56.8 56.8V353H76.9V72.1h321v214zM331 149v116.9h-40.1V149H331zm-107 0v116.9h-40.1V149H224z"], + "twitter": [512, 512, [], "f099", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"], + "twitter-square": [448, 512, [], "f081", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z"], + "typo3": [433, 512, [], "f42b", "M330.8 341c-7 2.3-11.6 2.3-18.5 2.3-57.2 0-140.6-198.5-140.6-264.9 0-24.7 5.4-32.4 13.9-39.4-69.5 8.5-149.3 34-176.3 66.4-5.4 7.7-9.3 20.8-9.3 37.1C0 246 106.8 480 184.1 480c36.3 0 97.3-59.5 146.7-139M294.5 32c71.8 0 138.8 11.6 138.8 52.5 0 82.6-52.5 182.3-78.8 182.3-47.9 0-101.7-132.1-101.7-198.5 0-30.9 11.6-36.3 41.7-36.3"], + "uber": [448, 512, [], "f402", "M414.1 32H33.9C15.2 32 0 47.2 0 65.9V446c0 18.8 15.2 34 33.9 34H414c18.7 0 33.9-15.2 33.9-33.9V65.9C448 47.2 432.8 32 414.1 32zM237.6 391.1C163 398.6 96.4 344.2 88.9 269.6h94.4V290c0 3.7 3 6.8 6.8 6.8H258c3.7 0 6.8-3 6.8-6.8v-67.9c0-3.7-3-6.8-6.8-6.8h-67.9c-3.7 0-6.8 3-6.8 6.8v20.4H88.9c7-69.4 65.4-122.2 135.1-122.2 69.7 0 128.1 52.8 135.1 122.2 7.5 74.5-46.9 141.1-121.5 148.6z"], + "uikit": [448, 512, [], "f403", "M443.9 128v256L218 512 0 384V169.7l87.6 45.1v117l133.5 75.5 135.8-75.5v-151l-101.1-57.6 87.6-53.1L443.9 128zM308.6 49.1L223.8 0l-88.6 54.8 86 47.3 87.4-53z"], + "uniregistry": [384, 512, [], "f404", "M281.1 220.1H384v-14.8H281.1v14.8zm0-37.1H384v-12.4H281.1V183zm0 74.2H384v-17.3H281.1v17.3zm-157.7 86.7H8.5c2.6 8.5 5.8 16.8 9.6 24.8h138.3c-12.9-5.7-24.1-14.2-33-24.8m145.7-12.4h109.7c1.8-7.3 3.1-14.7 3.9-22.3H278.3c-2.1 7.9-5.2 15.4-9.2 22.3m-41.5 37.1H367c3.7-8 5.8-16.2 8.5-24.8h-115c-8.8 10.7-20.1 19.2-32.9 24.8M384 32H281.1v2.5H384V32zM192 480c39.5 0 76.2-11.8 106.8-32.2H85.3C115.8 468.2 152.5 480 192 480m89.1-334.2H384V136H281.1v9.8zm0-37.1H384v-7.4H281.1v7.4zm0-37.1H384v-4.9H281.1v4.9zm-178.2 99H0V183h102.9v-12.4zM38.8 405.7h305.3c6.7-8.5 12.6-17.6 17.8-27.2H23c5.2 9.6 9.2 18.7 15.8 27.2m64.1-118.8v-12.4H0v12.4c0 2.5 0 5 .1 7.4h103.1c-.2-2.4-.3-4.9-.3-7.4m178.2 0c0 2.5-.1 5-.4 7.4h103.1c.1-2.5.2-4.9.2-7.4v-12.4H281.1v12.4zm-203 156h227.7c11.8-8.7 22.7-18.6 32.2-29.7H44.9c9.6 11 21.4 21 33.2 29.7m24.8-376.2H0v4.9h102.9v-4.9zm0-34.7H0v2.5h102.9V32zm0 173.3H0v14.8h102.9v-14.8zm0 34.6H0v17.3h102.9v-17.3zm0-103.9H0v9.9h102.9V136zm0-34.7H0v7.4h102.9v-7.4zm2.8 207.9H1.3c.9 7.6 2.2 15 3.9 22.3h109.7c-4-6.9-7.2-14.4-9.2-22.3"], + "untappd": [640, 512, [], "f405", "M401.3 49.9c-79.8 160.1-84.6 152.5-87.9 173.2l-5.2 32.8c-1.9 12-6.6 23.5-13.7 33.4L145.6 497.1c-7.6 10.6-20.4 16.2-33.4 14.6-40.3-5-77.8-32.2-95.3-68.5-5.7-11.8-4.5-25.8 3.1-36.4l148.9-207.9c7.1-9.9 16.4-18 27.2-23.7l29.3-15.5c18.5-9.8 9.7-11.9 135.6-138.9 1-4.8 1-7.3 3.6-8 3-.7 6.6-1 6.3-4.6l-.4-4.6c-.2-1.9 1.3-3.6 3.2-3.6 4.5-.1 13.2 1.2 25.6 10 12.3 8.9 16.4 16.8 17.7 21.1.6 1.8-.6 3.7-2.4 4.2l-4.5 1.1c-3.4.9-2.5 4.4-2.3 7.4.1 2.8-2.3 3.6-6.5 6.1zM230.1 36.4c3.4.9 2.5 4.4 2.3 7.4-.2 2.7 2.1 3.5 6.4 6 7.9 15.9 15.3 30.5 22.2 44 .7 1.3 2.3 1.5 3.3.5 11.2-12 24.6-26.2 40.5-42.6 1.3-1.4 1.4-3.5.1-4.9-8-8.2-16.5-16.9-25.6-26.1-1-4.7-1-7.3-3.6-8-3-.8-6.6-1-6.3-4.6.3-3.3 1.4-8.1-2.8-8.2-4.5-.1-13.2 1.1-25.6 10-12.3 8.9-16.4 16.8-17.7 21.1-1.4 4.2 3.6 4.6 6.8 5.4zM620 406.7L471.2 198.8c-13.2-18.5-26.6-23.4-56.4-39.1-11.2-5.9-14.2-10.9-30.5-28.9-1-1.1-2.9-.9-3.6.5-46.3 88.8-47.1 82.8-49 94.8-1.7 10.7-1.3 20 .3 29.8 1.9 12 6.6 23.5 13.7 33.4l148.9 207.9c7.6 10.6 20.2 16.2 33.1 14.7 40.3-4.9 78-32 95.7-68.6 5.4-11.9 4.3-25.9-3.4-36.6z"], + "usb": [640, 512, [], "f287", "M641.5 256c0 3.1-1.7 6.1-4.5 7.5L547.9 317c-1.4.8-2.8 1.4-4.5 1.4-1.4 0-3.1-.3-4.5-1.1-2.8-1.7-4.5-4.5-4.5-7.8v-35.6H295.7c25.3 39.6 40.5 106.9 69.6 106.9H392V354c0-5 3.9-8.9 8.9-8.9H490c5 0 8.9 3.9 8.9 8.9v89.1c0 5-3.9 8.9-8.9 8.9h-89.1c-5 0-8.9-3.9-8.9-8.9v-26.7h-26.7c-75.4 0-81.1-142.5-124.7-142.5H140.3c-8.1 30.6-35.9 53.5-69 53.5C32 327.3 0 295.3 0 256s32-71.3 71.3-71.3c33.1 0 61 22.8 69 53.5 39.1 0 43.9 9.5 74.6-60.4C255 88.7 273 95.7 323.8 95.7c7.5-20.9 27-35.6 50.4-35.6 29.5 0 53.5 23.9 53.5 53.5s-23.9 53.5-53.5 53.5c-23.4 0-42.9-14.8-50.4-35.6H294c-29.1 0-44.3 67.4-69.6 106.9h310.1v-35.6c0-3.3 1.7-6.1 4.5-7.8 2.8-1.7 6.4-1.4 8.9.3l89.1 53.5c2.8 1.1 4.5 4.1 4.5 7.2z"], + "ussunnah": [512, 512, [], "f407", "M156.8 285.1l5.7 14.4h-8.2c-1.3-3.2-3.1-7.7-3.8-9.5-2.5-6.3-1.1-8.4 0-10 1.9-2.7 3.2-4.4 3.6-5.2 0 2.2.8 5.7 2.7 10.3zm297.3 18.8c-2.1 13.8-5.7 27.1-10.5 39.7l43 23.4-44.8-18.8c-5.3 13.2-12 25.6-19.9 37.2l34.2 30.2-36.8-26.4c-8.4 11.8-18 22.6-28.7 32.3l24.9 34.7-28.1-31.8c-11 9.6-23.1 18-36.1 25.1l15.7 37.2-19.3-35.3c-13.1 6.8-27 12.1-41.6 15.9l6.7 38.4-10.5-37.4c-14.3 3.4-29.2 5.3-44.5 5.4L256 512l-1.9-38.4c-15.3-.1-30.2-2-44.5-5.3L199 505.6l6.7-38.2c-14.6-3.7-28.6-9.1-41.7-15.8l-19.2 35.1 15.6-37c-13-7-25.2-15.4-36.2-25.1l-27.9 31.6 24.7-34.4c-10.7-9.7-20.4-20.5-28.8-32.3l-36.5 26.2 33.9-29.9c-7.9-11.6-14.6-24.1-20-37.3l-44.4 18.7L67.8 344c-4.8-12.7-8.4-26.1-10.5-39.9l-51 9 50.3-14.2c-1.1-8.5-1.7-17.1-1.7-25.9 0-4.7.2-9.4.5-14.1L0 256l56-2.8c1.3-13.1 3.8-25.8 7.5-38.1L6.4 199l58.9 10.4c4-12 9.1-23.5 15.2-34.4l-55.1-30 58.3 24.6C90 159 97.2 149.2 105.3 140L55.8 96.4l53.9 38.7c8.1-8.6 17-16.5 26.6-23.6l-40-55.6 45.6 51.6c9.5-6.6 19.7-12.3 30.3-17.2l-27.3-64.9 33.8 62.1c10.5-4.4 21.4-7.9 32.7-10.4L199 6.4l19.5 69.2c11-2.1 22.3-3.2 33.8-3.4L256 0l3.6 72.2c11.5.2 22.8 1.4 33.8 3.5L313 6.4l-12.4 70.7c11.3 2.6 22.2 6.1 32.6 10.5l33.9-62.2-27.4 65.1c10.6 4.9 20.7 10.7 30.2 17.2l45.8-51.8-40.1 55.9c9.5 7.1 18.4 15 26.5 23.6l54.2-38.9-49.7 43.9c8 9.1 15.2 18.9 21.5 29.4l58.7-24.7-55.5 30.2c6.1 10.9 11.1 22.3 15.1 34.3l59.3-10.4-57.5 16.2c3.7 12.2 6.2 24.9 7.5 37.9L512 256l-56 2.8c.3 4.6.5 9.3.5 14.1 0 8.7-.6 17.3-1.6 25.8l50.7 14.3-51.5-9.1zm-21.8-31c0-97.5-79-176.5-176.5-176.5s-176.5 79-176.5 176.5 79 176.5 176.5 176.5 176.5-79 176.5-176.5zm-24 0c0 84.3-68.3 152.6-152.6 152.6s-152.6-68.3-152.6-152.6 68.3-152.6 152.6-152.6 152.6 68.3 152.6 152.6zM195 241c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-40.7-19c0 2.1 1.3 3.8 3.6 5.1 3.5 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-19 0c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.4 6.8-9.6 10.9-9.6 12.6zm204.9 87.9c-8.4-3-8.7-6.8-8.7-15.6V182c-8.2 12.5-14.2 18.6-18 18.6 6.3 14.4 9.5 23.9 9.5 28.3v64.3c0 2.2-2.2 6.5-4.7 6.5h-18c-2.8-7.5-10.2-26.9-15.3-40.3-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3 2.6 6.7 6.4 16.5 7.9 20.2h-9.2c-3.9-10.4-9.6-25.4-11.8-31.1-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3.8 2 2.8 7.3 4.3 10.9H256c-1.5-4.1-5.6-14.6-8.4-22-2 2.5-7.2 9.2-10.7 13.7 2.5 1.6 4.3 3.6 5.2 6.3.2.6.5 1.4.6 1.7H225c-4.6-13.9-11.4-27.7-11.4-34.1 0-2.2.3-5.1 1.1-8.2-8.8 10.8-14 15.9-14 25 0 7.5 10.4 28.3 10.4 33.3 0 1.7-.5 3.3-1.4 4.9-9.6-12.7-15.5-20.7-18.8-20.7h-12l-11.2-28c-3.8-9.6-5.7-16-5.7-18.8 0-3.8.5-7.7 1.7-12.2-1 1.3-3.7 4.7-5.5 7.1-.8-2.1-3.1-7.7-4.6-11.5-2.1 2.5-7.5 9.1-11.2 13.6.9 2.3 3.3 8.1 4.9 12.2-2.5 3.3-9.1 11.8-13.6 17.7-4 5.3-5.8 13.3-2.7 21.8 2.5 6.7 2 7.9-1.7 14.1H191c5.5 0 14.3 14 15.5 22 13.2-16 15.4-19.6 16.8-21.6h107c3.9 0 7.2-1.9 9.9-5.8zm20.1-26.6V181.7c-9 12.5-15.9 18.6-20.7 18.6 7.1 14.4 10.7 23.9 10.7 28.3v66.3c0 17.5 8.6 20.4 24 20.4 8.1 0 12.5-.8 13.7-2.7-4.3-1.6-7.6-2.5-9.9-3.3-8.1-3.2-17.8-7.4-17.8-26z"], + "vaadin": [448, 512, [], "f408", "M224.5 140.7c1.5-17.6 4.9-52.7 49.8-52.7h98.6c20.7 0 32.1-7.8 32.1-21.6V54.1c0-12.2 9.3-22.1 21.5-22.1S448 41.9 448 54.1v36.5c0 42.9-21.5 62-66.8 62H280.7c-30.1 0-33 14.7-33 27.1 0 1.3-.1 2.5-.2 3.7-.7 12.3-10.9 22.2-23.4 22.2s-22.7-9.8-23.4-22.2c-.1-1.2-.2-2.4-.2-3.7 0-12.3-3-27.1-33-27.1H66.8c-45.3 0-66.8-19.1-66.8-62V54.1C0 41.9 9.4 32 21.6 32s21.5 9.9 21.5 22.1v12.3C43.1 80.2 54.5 88 75.2 88h98.6c44.8 0 48.3 35.1 49.8 52.7h.9zM224 456c11.5 0 21.4-7 25.7-16.3 1.1-1.8 97.1-169.6 98.2-171.4 11.9-19.6-3.2-44.3-27.2-44.3-13.9 0-23.3 6.4-29.8 20.3L224 362l-66.9-117.7c-6.4-13.9-15.9-20.3-29.8-20.3-24 0-39.1 24.6-27.2 44.3 1.1 1.9 97.1 169.6 98.2 171.4 4.3 9.3 14.2 16.3 25.7 16.3z"], + "viacoin": [384, 512, [], "f237", "M384 32h-64l-80.7 192h-94.5L64 32H0l48 112H0v48h68.5l13.8 32H0v48h102.8L192 480l89.2-208H384v-48h-82.3l13.8-32H384v-48h-48l48-112zM192 336l-27-64h54l-27 64z"], + "viadeo": [448, 512, [], "f2a9", "M276.2 150.5v.7C258.3 98.6 233.6 47.8 205.4 0c43.3 29.2 67 100 70.8 150.5zm32.7 121.7c7.6 18.2 11 37.5 11 57 0 77.7-57.8 141-137.8 139.4l3.8-.3c74.2-46.7 109.3-118.6 109.3-205.1 0-38.1-6.5-75.9-18.9-112 1 11.7 1 23.7 1 35.4 0 91.8-18.1 241.6-116.6 280C95 455.2 49.4 398 49.4 329.2c0-75.6 57.4-142.3 135.4-142.3 16.8 0 33.7 3.1 49.1 9.6 1.7-15.1 6.5-29.9 13.4-43.3-19.9-7.2-41.2-10.7-62.5-10.7-161.5 0-238.7 195.9-129.9 313.7 67.9 74.6 192 73.9 259.8 0 56.6-61.3 60.9-142.4 36.4-201-12.7 8-27.1 13.9-42.2 17zM418.1 11.7c-31 66.5-81.3 47.2-115.8 80.1-12.4 12-20.6 34-20.6 50.5 0 14.1 4.5 27.1 12 38.8 47.4-11 98.3-46 118.2-90.7-.7 5.5-4.8 14.4-7.2 19.2-20.3 35.7-64.6 65.6-99.7 84.9 14.8 14.4 33.7 25.8 55 25.8 79 0 110.1-134.6 58.1-208.6z"], + "viadeo-square": [448, 512, [], "f2aa", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM280.7 381.2c-42.4 46.2-120 46.6-162.4 0-68-73.6-19.8-196.1 81.2-196.1 13.3 0 26.6 2.1 39.1 6.7-4.3 8.4-7.3 17.6-8.4 27.1-9.7-4.1-20.2-6-30.7-6-48.8 0-84.6 41.7-84.6 88.9 0 43 28.5 78.7 69.5 85.9 61.5-24 72.9-117.6 72.9-175 0-7.3 0-14.8-.6-22.1-11.2-32.9-26.6-64.6-44.2-94.5 27.1 18.3 41.9 62.5 44.2 94.1v.4c7.7 22.5 11.8 46.2 11.8 70 0 54.1-21.9 99-68.3 128.2l-2.4.2c50 1 86.2-38.6 86.2-87.2 0-12.2-2.1-24.3-6.9-35.7 9.5-1.9 18.5-5.6 26.4-10.5 15.3 36.6 12.6 87.3-22.8 125.6zM309 233.7c-13.3 0-25.1-7.1-34.4-16.1 21.9-12 49.6-30.7 62.3-53 1.5-3 4.1-8.6 4.5-12-12.5 27.9-44.2 49.8-73.9 56.7-4.7-7.3-7.5-15.5-7.5-24.3 0-10.3 5.2-24.1 12.9-31.6 21.6-20.5 53-8.5 72.4-50 32.5 46.2 13.1 130.3-36.3 130.3z"], + "viber": [512, 512, [], "f409", "M444 49.9C431.3 38.2 379.9.9 265.3.4c0 0-135.1-8.1-200.9 52.3C27.8 89.3 14.9 143 13.5 209.5c-1.4 66.5-3.1 191.1 117 224.9h.1l-.1 51.6s-.8 20.9 13 25.1c16.6 5.2 26.4-10.7 42.3-27.8 8.7-9.4 20.7-23.2 29.8-33.7 82.2 6.9 145.3-8.9 152.5-11.2 16.6-5.4 110.5-17.4 125.7-142 15.8-128.6-7.6-209.8-49.8-246.5zM457.9 287c-12.9 104-89 110.6-103 115.1-6 1.9-61.5 15.7-131.2 11.2 0 0-52 62.7-68.2 79-5.3 5.3-11.1 4.8-11-5.7 0-6.9.4-85.7.4-85.7-.1 0-.1 0 0 0-101.8-28.2-95.8-134.3-94.7-189.8 1.1-55.5 11.6-101 42.6-131.6 55.7-50.5 170.4-43 170.4-43 96.9.4 143.3 29.6 154.1 39.4 35.7 30.6 53.9 103.8 40.6 211.1zm-139-80.8c.4 8.6-12.5 9.2-12.9.6-1.1-22-11.4-32.7-32.6-33.9-8.6-.5-7.8-13.4.7-12.9 27.9 1.5 43.4 17.5 44.8 46.2zm20.3 11.3c1-42.4-25.5-75.6-75.8-79.3-8.5-.6-7.6-13.5.9-12.9 58 4.2 88.9 44.1 87.8 92.5-.1 8.6-13.1 8.2-12.9-.3zm47 13.4c.1 8.6-12.9 8.7-12.9.1-.6-81.5-54.9-125.9-120.8-126.4-8.5-.1-8.5-12.9 0-12.9 73.7.5 133 51.4 133.7 139.2zM374.9 329v.2c-10.8 19-31 40-51.8 33.3l-.2-.3c-21.1-5.9-70.8-31.5-102.2-56.5-16.2-12.8-31-27.9-42.4-42.4-10.3-12.9-20.7-28.2-30.8-46.6-21.3-38.5-26-55.7-26-55.7-6.7-20.8 14.2-41 33.3-51.8h.2c9.2-4.8 18-3.2 23.9 3.9 0 0 12.4 14.8 17.7 22.1 5 6.8 11.7 17.7 15.2 23.8 6.1 10.9 2.3 22-3.7 26.6l-12 9.6c-6.1 4.9-5.3 14-5.3 14s17.8 67.3 84.3 84.3c0 0 9.1.8 14-5.3l9.6-12c4.6-6 15.7-9.8 26.6-3.7 14.7 8.3 33.4 21.2 45.8 32.9 7 5.7 8.6 14.4 3.8 23.6z"], + "vimeo": [448, 512, [], "f40a", "M403.2 32H44.8C20.1 32 0 52.1 0 76.8v358.4C0 459.9 20.1 480 44.8 480h358.4c24.7 0 44.8-20.1 44.8-44.8V76.8c0-24.7-20.1-44.8-44.8-44.8zM377 180.8c-1.4 31.5-23.4 74.7-66 129.4-44 57.2-81.3 85.8-111.7 85.8-18.9 0-34.8-17.4-47.9-52.3-25.5-93.3-36.4-148-57.4-148-2.4 0-10.9 5.1-25.4 15.2l-15.2-19.6c37.3-32.8 72.9-69.2 95.2-71.2 25.2-2.4 40.7 14.8 46.5 51.7 20.7 131.2 29.9 151 67.6 91.6 13.5-21.4 20.8-37.7 21.8-48.9 3.5-33.2-25.9-30.9-45.8-22.4 15.9-52.1 46.3-77.4 91.2-76 33.3.9 49 22.5 47.1 64.7z"], + "vimeo-square": [448, 512, [], "f194", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16.2 149.6c-1.4 31.1-23.2 73.8-65.3 127.9-43.5 56.5-80.3 84.8-110.4 84.8-18.7 0-34.4-17.2-47.3-51.6-25.2-92.3-35.9-146.4-56.7-146.4-2.4 0-10.8 5-25.1 15.1L64 192c36.9-32.4 72.1-68.4 94.1-70.4 24.9-2.4 40.2 14.6 46 51.1 20.5 129.6 29.6 149.2 66.8 90.5 13.4-21.2 20.6-37.2 21.5-48.3 3.4-32.8-25.6-30.6-45.2-22.2 15.7-51.5 45.8-76.5 90.1-75.1 32.9 1 48.4 22.4 46.5 64z"], + "vimeo-v": [448, 512, [], "f27d", "M447.8 153.6c-2 43.6-32.4 103.3-91.4 179.1-60.9 79.2-112.4 118.8-154.6 118.8-26.1 0-48.2-24.1-66.3-72.3C100.3 250 85.3 174.3 56.2 174.3c-3.4 0-15.1 7.1-35.2 21.1L0 168.2c51.6-45.3 100.9-95.7 131.8-98.5 34.9-3.4 56.3 20.5 64.4 71.5 28.7 181.5 41.4 208.9 93.6 126.7 18.7-29.6 28.8-52.1 30.2-67.6 4.8-45.9-35.8-42.8-63.3-31 22-72.1 64.1-107.1 126.2-105.1 45.8 1.2 67.5 31.1 64.9 89.4z"], + "vine": [384, 512, [], "f1ca", "M384 254.7v52.1c-18.4 4.2-36.9 6.1-52.1 6.1-36.9 77.4-103 143.8-125.1 156.2-14 7.9-27.1 8.4-42.7-.8C137 452 34.2 367.7 0 102.7h74.5C93.2 261.8 139 343.4 189.3 404.5c27.9-27.9 54.8-65.1 75.6-106.9-49.8-25.3-80.1-80.9-80.1-145.6 0-65.6 37.7-115.1 102.2-115.1 114.9 0 106.2 127.9 81.6 181.5 0 0-46.4 9.2-63.5-20.5 3.4-11.3 8.2-30.8 8.2-48.5 0-31.3-11.3-46.6-28.4-46.6-18.2 0-30.8 17.1-30.8 50 .1 79.2 59.4 118.7 129.9 101.9z"], + "vk": [576, 512, [], "f189", "M545 117.7c3.7-12.5 0-21.7-17.8-21.7h-58.9c-15 0-21.9 7.9-25.6 16.7 0 0-30 73.1-72.4 120.5-13.7 13.7-20 18.1-27.5 18.1-3.7 0-9.4-4.4-9.4-16.9V117.7c0-15-4.2-21.7-16.6-21.7h-92.6c-9.4 0-15 7-15 13.5 0 14.2 21.2 17.5 23.4 57.5v86.8c0 19-3.4 22.5-10.9 22.5-20 0-68.6-73.4-97.4-157.4-5.8-16.3-11.5-22.9-26.6-22.9H38.8c-16.8 0-20.2 7.9-20.2 16.7 0 15.6 20 93.1 93.1 195.5C160.4 378.1 229 416 291.4 416c37.5 0 42.1-8.4 42.1-22.9 0-66.8-3.4-73.1 15.4-73.1 8.7 0 23.7 4.4 58.7 38.1 40 40 46.6 57.9 69 57.9h58.9c16.8 0 25.3-8.4 20.4-25-11.2-34.9-86.9-106.7-90.3-111.5-8.7-11.2-6.2-16.2 0-26.2.1-.1 72-101.3 79.4-135.6z"], + "vnv": [640, 512, [], "f40b", "M104.9 352c-34.1 0-46.4-30.4-46.4-30.4L2.6 210.1S-7.8 192 13 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.7-74.5c5.6-9.5 8.4-18.1 18.8-18.1h32.8c20.8 0 10.4 18.1 10.4 18.1l-55.8 111.5S174.2 352 140 352h-35.1zm395 0c-34.1 0-46.4-30.4-46.4-30.4l-55.9-111.5S387.2 192 408 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.8-74.5c5.6-9.5 8.4-18.1 18.8-18.1H627c20.8 0 10.4 18.1 10.4 18.1l-55.9 111.5S569.3 352 535.1 352h-35.2zM337.6 192c34.1 0 46.4 30.4 46.4 30.4l55.9 111.5s10.4 18.1-10.4 18.1h-32.8c-10.4 0-13.2-8.7-18.8-18.1l-36.7-74.5s-5.2-13.1-21.1-13.1c-15.9 0-21.1 13.1-21.1 13.1l-36.7 74.5c-5.6 9.4-8.4 18.1-18.8 18.1h-32.9c-20.8 0-10.4-18.1-10.4-18.1l55.9-111.5s12.2-30.4 46.4-30.4h35.1z"], + "vuejs": [448, 512, [], "f41f", "M356.9 64.3H280l-56 88.6-48-88.6H0L224 448 448 64.3h-91.1zm-301.2 32h53.8L224 294.5 338.4 96.3h53.8L224 384.5 55.7 96.3z"], + "weebly": [512, 512, [], "f5cc", "M425.09 65.83c-39.88 0-73.28 25.73-83.66 64.33-18.16-58.06-65.5-64.33-84.95-64.33-19.78 0-66.8 6.28-85.28 64.33-10.38-38.6-43.45-64.33-83.66-64.33C38.59 65.83 0 99.72 0 143.03c0 28.96 4.18 33.27 77.17 233.48 22.37 60.57 67.77 69.35 92.74 69.35 39.23 0 70.04-19.46 85.93-53.98 15.89 34.83 46.69 54.29 85.93 54.29 24.97 0 70.36-9.1 92.74-69.67 76.55-208.65 77.5-205.58 77.5-227.2.63-48.32-36.01-83.47-86.92-83.47zm26.34 114.81l-65.57 176.44c-7.92 21.49-21.22 37.22-46.24 37.22-23.44 0-37.38-12.41-44.03-33.9l-39.28-117.42h-.95L216.08 360.4c-6.96 21.5-20.9 33.6-44.02 33.6-25.02 0-38.33-15.74-46.24-37.22L60.88 181.55c-5.38-14.83-7.92-23.91-7.92-34.5 0-16.34 15.84-29.36 38.33-29.36 18.69 0 31.99 11.8 36.11 29.05l44.03 139.82h.95l44.66-136.79c6.02-19.67 16.47-32.08 38.96-32.08s32.94 12.11 38.96 32.08l44.66 136.79h.95l44.03-139.82c4.12-17.25 17.42-29.05 36.11-29.05 22.17 0 38.33 13.32 38.33 35.71-.32 7.87-4.12 16.04-7.61 27.24z"], + "weibo": [512, 512, [], "f18a", "M407 177.6c7.6-24-13.4-46.8-37.4-41.7-22 4.8-28.8-28.1-7.1-32.8 50.1-10.9 92.3 37.1 76.5 84.8-6.8 21.2-38.8 10.8-32-10.3zM214.8 446.7C108.5 446.7 0 395.3 0 310.4c0-44.3 28-95.4 76.3-143.7C176 67 279.5 65.8 249.9 161c-4 13.1 12.3 5.7 12.3 6 79.5-33.6 140.5-16.8 114 51.4-3.7 9.4 1.1 10.9 8.3 13.1 135.7 42.3 34.8 215.2-169.7 215.2zm143.7-146.3c-5.4-55.7-78.5-94-163.4-85.7-84.8 8.6-148.8 60.3-143.4 116s78.5 94 163.4 85.7c84.8-8.6 148.8-60.3 143.4-116zM347.9 35.1c-25.9 5.6-16.8 43.7 8.3 38.3 72.3-15.2 134.8 52.8 111.7 124-7.4 24.2 29.1 37 37.4 12 31.9-99.8-55.1-195.9-157.4-174.3zm-78.5 311c-17.1 38.8-66.8 60-109.1 46.3-40.8-13.1-58-53.4-40.3-89.7 17.7-35.4 63.1-55.4 103.4-45.1 42 10.8 63.1 50.2 46 88.5zm-86.3-30c-12.9-5.4-30 .3-38 12.9-8.3 12.9-4.3 28 8.6 34 13.1 6 30.8.3 39.1-12.9 8-13.1 3.7-28.3-9.7-34zm32.6-13.4c-5.1-1.7-11.4.6-14.3 5.4-2.9 5.1-1.4 10.6 3.7 12.9 5.1 2 11.7-.3 14.6-5.4 2.8-5.2 1.1-10.9-4-12.9z"], + "weixin": [576, 512, [], "f1d7", "M385.2 167.6c6.4 0 12.6.3 18.8 1.1C387.4 90.3 303.3 32 207.7 32 100.5 32 13 104.8 13 197.4c0 53.4 29.3 97.5 77.9 131.6l-19.3 58.6 68-34.1c24.4 4.8 43.8 9.7 68.2 9.7 6.2 0 12.1-.3 18.3-.8-4-12.9-6.2-26.6-6.2-40.8-.1-84.9 72.9-154 165.3-154zm-104.5-52.9c14.5 0 24.2 9.7 24.2 24.4 0 14.5-9.7 24.2-24.2 24.2-14.8 0-29.3-9.7-29.3-24.2.1-14.7 14.6-24.4 29.3-24.4zm-136.4 48.6c-14.5 0-29.3-9.7-29.3-24.2 0-14.8 14.8-24.4 29.3-24.4 14.8 0 24.4 9.7 24.4 24.4 0 14.6-9.6 24.2-24.4 24.2zM563 319.4c0-77.9-77.9-141.3-165.4-141.3-92.7 0-165.4 63.4-165.4 141.3S305 460.7 397.6 460.7c19.3 0 38.9-5.1 58.6-9.9l53.4 29.3-14.8-48.6C534 402.1 563 363.2 563 319.4zm-219.1-24.5c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.8 0 24.4 9.7 24.4 19.3 0 10-9.7 19.6-24.4 19.6zm107.1 0c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.5 0 24.4 9.7 24.4 19.3.1 10-9.9 19.6-24.4 19.6z"], + "whatsapp": [448, 512, [], "f232", "M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"], + "whatsapp-square": [448, 512, [], "f40c", "M224 122.8c-72.7 0-131.8 59.1-131.9 131.8 0 24.9 7 49.2 20.2 70.1l3.1 5-13.3 48.6 49.9-13.1 4.8 2.9c20.2 12 43.4 18.4 67.1 18.4h.1c72.6 0 133.3-59.1 133.3-131.8 0-35.2-15.2-68.3-40.1-93.2-25-25-58-38.7-93.2-38.7zm77.5 188.4c-3.3 9.3-19.1 17.7-26.7 18.8-12.6 1.9-22.4.9-47.5-9.9-39.7-17.2-65.7-57.2-67.7-59.8-2-2.6-16.2-21.5-16.2-41s10.2-29.1 13.9-33.1c3.6-4 7.9-5 10.6-5 2.6 0 5.3 0 7.6.1 2.4.1 5.7-.9 8.9 6.8 3.3 7.9 11.2 27.4 12.2 29.4s1.7 4.3.3 6.9c-7.6 15.2-15.7 14.6-11.6 21.6 15.3 26.3 30.6 35.4 53.9 47.1 4 2 6.3 1.7 8.6-1 2.3-2.6 9.9-11.6 12.5-15.5 2.6-4 5.3-3.3 8.9-2 3.6 1.3 23.1 10.9 27.1 12.9s6.6 3 7.6 4.6c.9 1.9.9 9.9-2.4 19.1zM400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM223.9 413.2c-26.6 0-52.7-6.7-75.8-19.3L64 416l22.5-82.2c-13.9-24-21.2-51.3-21.2-79.3C65.4 167.1 136.5 96 223.9 96c42.4 0 82.2 16.5 112.2 46.5 29.9 30 47.9 69.8 47.9 112.2 0 87.4-72.7 158.5-160.1 158.5z"], + "whmcs": [448, 512, [], "f40d", "M448 161v-21.3l-28.5-8.8-2.2-10.4 20.1-20.7L427 80.4l-29 7.5-7.2-7.5 7.5-28.2-19.1-11.6-21.3 21-10.7-3.2-7-26.4h-22.6l-6.2 26.4-12.1 3.2-19.7-21-19.4 11 8.1 27.7-8.1 8.4-28.5-7.5-11 19.1 20.7 21-2.9 10.4-28.5 7.8-.3 21.7 28.8 7.5 2.4 12.1-20.1 19.9 10.4 18.5 29.6-7.5 7.2 8.6-8.1 26.9 19.9 11.6 19.4-20.4 11.6 2.9 6.7 28.5 22.6.3 6.7-28.8 11.6-3.5 20.7 21.6 20.4-12.1-8.8-28 7.8-8.1 28.8 8.8 10.3-20.1-20.9-18.8 2.2-12.1 29.1-7zm-119.2 45.2c-31.3 0-56.8-25.4-56.8-56.8s25.4-56.8 56.8-56.8 56.8 25.4 56.8 56.8c0 31.5-25.4 56.8-56.8 56.8zm72.3 16.4l46.9 14.5V277l-55.1 13.4-4.1 22.7 38.9 35.3-19.2 37.9-54-16.7-14.6 15.2 16.7 52.5-38.3 22.7-38.9-40.5-21.7 6.6-12.6 54-42.4-.5-12.6-53.6-21.7-5.6-36.4 38.4-37.4-21.7 15.2-50.5-13.7-16.1-55.5 14.1-19.7-34.8 37.9-37.4-4.8-22.8-54-14.1.5-40.9L54 219.9l5.7-19.7-38.9-39.4L41.5 125l53.6 14.1 15.2-15.7-15.2-52 36.4-20.7 36.8 39.4L191 84l11.6-52H245l11.6 45.9L234 72l-6.3-1.7-3.3 5.7-11 19.1-3.3 5.6 4.6 4.6 17.2 17.4-.3 1-23.8 6.5-6.2 1.7-.1 6.4-.2 12.9C153.8 161.6 118 204 118 254.7c0 58.3 47.3 105.7 105.7 105.7 50.5 0 92.7-35.4 103.2-82.8l13.2.2 6.9.1 1.6-6.7 5.6-24 1.9-.6 17.1 17.8 4.7 4.9 5.8-3.4 20.4-12.1 5.8-3.5-2-6.5-6.8-21.2z"], + "wikipedia-w": [640, 512, [], "f266", "M640 51.2l-.3 12.2c-28.1.8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3.3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4.2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5.3v13.1c-19.4.6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4.3-3.6 0-10.3.3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5.8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1.2.5z"], + "windows": [448, 512, [], "f17a", "M0 93.7l183.6-25.3v177.4H0V93.7zm0 324.6l183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z"], + "wix": [640, 512, [], "f5cf", "M393.38 131.69c0 13.03 2.08 32.69-28.68 43.83-9.52 3.45-15.95 9.66-15.95 9.66 0-31 4.72-42.22 17.4-48.86 9.75-5.11 27.23-4.63 27.23-4.63zm-115.8 35.54l-34.24 132.66-28.48-108.57c-7.69-31.99-20.81-48.53-48.43-48.53-27.37 0-40.66 16.18-48.43 48.53L89.52 299.89 55.28 167.23C49.73 140.51 23.86 128.96 0 131.96l65.57 247.93s21.63 1.56 32.46-3.96c14.22-7.25 20.98-12.84 29.59-46.57 7.67-30.07 29.11-118.41 31.12-124.7 4.76-14.94 11.09-13.81 15.4 0 1.97 6.3 23.45 94.63 31.12 124.7 8.6 33.73 15.37 39.32 29.59 46.57 10.82 5.52 32.46 3.96 32.46 3.96l65.57-247.93c-24.42-3.07-49.82 8.93-55.3 35.27zm115.78 5.21s-4.1 6.34-13.46 11.57c-6.01 3.36-11.78 5.64-17.97 8.61-15.14 7.26-13.18 13.95-13.18 35.2v152.07s16.55 2.09 27.37-3.43c13.93-7.1 17.13-13.95 17.26-44.78V181.41l-.02.01v-8.98zm163.44 84.08L640 132.78s-35.11-5.98-52.5 9.85c-13.3 12.1-24.41 29.55-54.18 72.47-.47.73-6.25 10.54-13.07 0-29.29-42.23-40.8-60.29-54.18-72.47-17.39-15.83-52.5-9.85-52.5-9.85l83.2 123.74-82.97 123.36s36.57 4.62 53.95-11.21c11.49-10.46 17.58-20.37 52.51-70.72 6.81-10.52 12.57-.77 13.07 0 29.4 42.38 39.23 58.06 53.14 70.72 17.39 15.83 53.32 11.21 53.32 11.21L556.8 256.52z"], + "wolf-pack-battalion": [456, 512, [], "f514", "M239.73 471.53l10.56 15.84 5.28-12.32 5.28 7.04V512c21.06-7.92 21.11-66.86 25.51-97.21 4.62-31.89-.88-92.81 81.37-149.11-8.88-23.61-12-49.43-2.64-80.05 27.87 3.34 53.94 10.58 63.34 54.1l-30.35 8.36c11.15 23.04 17.01 46.76 13.2 72.14L384 313.18l-6.16 33.43-18.47-7.04-8.8 33.43-19.35-7.04 26.39 21.11 8.8-28.15 24.63 5.28 7.04-35.63 26.39 14.52c.25-20.02 6.97-58.06-8.8-84.45l26.39 5.28c3.99-22.07-2.38-39.21-7.92-56.74l22.43 9.68c-.44-25.07-29.94-56.79-61.58-58.5-20.22-1.09-56.74-25.17-54.1-51.9 1.96-19.87 17.45-42.62 43.11-49.7-43.99 36.51-9.68 67.3 5.28 73.46 4.4-11.44 17.54-69.08 0-130.2-40.47 22.87-89.73 65.1-93.25 147.79l-58.06 38.71-3.52 93.25 107.33-59.82 7.04 7.04-17.59 3.52-43.99 38.71-15.84-5.28-28.15 49.26-3.52 119.64 21.11 15.84-32.55 15.84-32.55-15.84 21.11-15.84-3.52-119.64-28.15-49.26-15.84 5.28-43.99-38.71-17.59-3.52 7.04-7.04 107.33 59.82-3.52-93.25-58.06-38.71C157.03 65.1 107.77 22.87 67.3 0c-17.54 61.12-4.4 118.76 0 130.2 14.96-6.16 49.26-36.95 5.28-73.46 25.66 7.08 41.15 29.83 43.11 49.7 2.63 26.74-33.88 50.81-54.1 51.9C29.94 160.06.44 191.78 0 216.85l22.43-9.68c-5.54 17.53-11.91 34.67-7.92 56.74l26.39-5.28c-15.76 26.39-9.05 64.43-8.8 84.45l26.39-14.52 7.04 35.63 24.63-5.28 8.8 28.15 26.39-21.11-19.34 7.05-8.8-33.43-18.47 7.04-6.16-33.43-27.27 7.04c-3.82-25.38 2.05-49.1 13.2-72.14l-30.35-8.36c9.4-43.52 35.47-50.77 63.34-54.1 9.36 30.62 6.24 56.45-2.64 80.05 82.25 56.3 76.75 117.23 81.37 149.11 4.4 30.35 4.45 89.29 25.51 97.21v-29.91l5.28-7.04 5.28 12.32 10.56-15.84 11.44 21.11 11.43-21.1zm79.17-95.01l-15.84-10.56c7.47-4.36 13.76-8.42 19.35-12.32-.6 7.26-.27 13.88-3.51 22.88zm28.15-49.26c-.4 10.94-.9 21.66-1.76 31.67-7.85-1.86-15.57-3.8-21.11-7.04 8.24-7.9 15.55-16.27 22.87-24.63zm24.63 5.28c-.02-13.43-2.05-24.21-5.28-33.43-5.38 9.09-11.23 18.18-18.47 27.27l23.75 6.16zm3.52-80.94c19.44 12.81 27.8 33.66 29.91 56.3-12.32-4.53-24.63-9.31-36.95-10.56 5.06-11.99 6.65-28.14 7.04-45.74zm-1.76-45.74c.81 14.3 1.84 28.82 1.76 42.23 19.22-8.11 29.78-9.72 43.99-14.08-10.6-18.95-27.22-25.52-45.75-28.15zM137.68 376.52l15.84-10.56c-7.47-4.36-13.76-8.42-19.35-12.32.6 7.26.27 13.88 3.51 22.88zm-28.15-49.26c.4 10.94.9 21.66 1.76 31.67 7.85-1.86 15.57-3.8 21.11-7.04-8.24-7.9-15.55-16.27-22.87-24.63zm-24.64 5.28c.02-13.43 2.05-24.21 5.28-33.43 5.38 9.09 11.23 18.18 18.47 27.27l-23.75 6.16zm-3.52-80.94c-19.44 12.81-27.8 33.66-29.91 56.3 12.32-4.53 24.63-9.31 36.95-10.56-5.05-11.99-6.65-28.14-7.04-45.74zm1.76-45.74c-.81 14.3-1.84 28.82-1.76 42.23-19.22-8.11-29.78-9.72-43.99-14.08 10.61-18.95 27.22-25.52 45.75-28.15z"], + "wordpress": [512, 512, [], "f19a", "M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z"], + "wordpress-simple": [512, 512, [], "f411", "M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8zM33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256zm223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6zm30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3-80.7-239.6zm81.4 297.2l68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7z"], + "wpbeginner": [512, 512, [], "f297", "M462.799 322.374C519.01 386.682 466.961 480 370.944 480c-39.602 0-78.824-17.687-100.142-50.04-6.887.356-22.702.356-29.59 0C219.848 462.381 180.588 480 141.069 480c-95.49 0-148.348-92.996-91.855-157.626C-29.925 190.523 80.479 32 256.006 32c175.632 0 285.87 158.626 206.793 290.374zm-339.647-82.972h41.529v-58.075h-41.529v58.075zm217.18 86.072v-23.839c-60.506 20.915-132.355 9.198-187.589-33.971l.246 24.897c51.101 46.367 131.746 57.875 187.343 32.913zm-150.753-86.072h166.058v-58.075H189.579v58.075z"], + "wpexplorer": [512, 512, [], "f2de", "M512 256c0 141.2-114.7 256-256 256C114.8 512 0 397.3 0 256S114.7 0 256 0s256 114.7 256 256zm-32 0c0-123.2-100.3-224-224-224C132.5 32 32 132.5 32 256s100.5 224 224 224 224-100.5 224-224zM160.9 124.6l86.9 37.1-37.1 86.9-86.9-37.1 37.1-86.9zm110 169.1l46.6 94h-14.6l-50-100-48.9 100h-14l51.1-106.9-22.3-9.4 6-14 68.6 29.1-6 14.3-16.5-7.1zm-11.8-116.3l68.6 29.4-29.4 68.3L230 246l29.1-68.6zm80.3 42.9l54.6 23.1-23.4 54.3-54.3-23.1 23.1-54.3z"], + "wpforms": [448, 512, [], "f298", "M448 75.2v361.7c0 24.3-19 43.2-43.2 43.2H43.2C19.3 480 0 461.4 0 436.8V75.2C0 51.1 18.8 32 43.2 32h361.7c24 0 43.1 18.8 43.1 43.2zm-37.3 361.6V75.2c0-3-2.6-5.8-5.8-5.8h-9.3L285.3 144 224 94.1 162.8 144 52.5 69.3h-9.3c-3.2 0-5.8 2.8-5.8 5.8v361.7c0 3 2.6 5.8 5.8 5.8h361.7c3.2.1 5.8-2.7 5.8-5.8zM150.2 186v37H76.7v-37h73.5zm0 74.4v37.3H76.7v-37.3h73.5zm11.1-147.3l54-43.7H96.8l64.5 43.7zm210 72.9v37h-196v-37h196zm0 74.4v37.3h-196v-37.3h196zm-84.6-147.3l64.5-43.7H232.8l53.9 43.7zM371.3 335v37.3h-99.4V335h99.4z"], + "xbox": [512, 512, [], "f412", "M369.9 318.2c44.3 54.3 64.7 98.8 54.4 118.7-7.9 15.1-56.7 44.6-92.6 55.9-29.6 9.3-68.4 13.3-100.4 10.2-38.2-3.7-76.9-17.4-110.1-39C93.3 445.8 87 438.3 87 423.4c0-29.9 32.9-82.3 89.2-142.1 32-33.9 76.5-73.7 81.4-72.6 9.4 2.1 84.3 75.1 112.3 109.5zM188.6 143.8c-29.7-26.9-58.1-53.9-86.4-63.4-15.2-5.1-16.3-4.8-28.7 8.1-29.2 30.4-53.5 79.7-60.3 122.4-5.4 34.2-6.1 43.8-4.2 60.5 5.6 50.5 17.3 85.4 40.5 120.9 9.5 14.6 12.1 17.3 9.3 9.9-4.2-11-.3-37.5 9.5-64 14.3-39 53.9-112.9 120.3-194.4zm311.6 63.5C483.3 127.3 432.7 77 425.6 77c-7.3 0-24.2 6.5-36 13.9-23.3 14.5-41 31.4-64.3 52.8C367.7 197 427.5 283.1 448.2 346c6.8 20.7 9.7 41.1 7.4 52.3-1.7 8.5-1.7 8.5 1.4 4.6 6.1-7.7 19.9-31.3 25.4-43.5 7.4-16.2 15-40.2 18.6-58.7 4.3-22.5 3.9-70.8-.8-93.4zM141.3 43C189 40.5 251 77.5 255.6 78.4c.7.1 10.4-4.2 21.6-9.7 63.9-31.1 94-25.8 107.4-25.2-63.9-39.3-152.7-50-233.9-11.7-23.4 11.1-24 11.9-9.4 11.2z"], + "xing": [384, 512, [], "f168", "M162.7 210c-1.8 3.3-25.2 44.4-70.1 123.5-4.9 8.3-10.8 12.5-17.7 12.5H9.8c-7.7 0-12.1-7.5-8.5-14.4l69-121.3c.2 0 .2-.1 0-.3l-43.9-75.6c-4.3-7.8.3-14.1 8.5-14.1H100c7.3 0 13.3 4.1 18 12.2l44.7 77.5zM382.6 46.1l-144 253v.3L330.2 466c3.9 7.1.2 14.1-8.5 14.1h-65.2c-7.6 0-13.6-4-18-12.2l-92.4-168.5c3.3-5.8 51.5-90.8 144.8-255.2 4.6-8.1 10.4-12.2 17.5-12.2h65.7c8 0 12.3 6.7 8.5 14.1z"], + "xing-square": [448, 512, [], "f169", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM140.4 320.2H93.8c-5.5 0-8.7-5.3-6-10.3l49.3-86.7c.1 0 .1-.1 0-.2l-31.4-54c-3-5.6.2-10.1 6-10.1h46.6c5.2 0 9.5 2.9 12.9 8.7l31.9 55.3c-1.3 2.3-18 31.7-50.1 88.2-3.5 6.2-7.7 9.1-12.6 9.1zm219.7-214.1L257.3 286.8v.2l65.5 119c2.8 5.1.1 10.1-6 10.1h-46.6c-5.5 0-9.7-2.9-12.9-8.7l-66-120.3c2.3-4.1 36.8-64.9 103.4-182.3 3.3-5.8 7.4-8.7 12.5-8.7h46.9c5.7-.1 8.8 4.7 6 10z"], + "y-combinator": [448, 512, [], "f23b", "M448 32v448H0V32h448zM236 287.5L313.5 142h-32.7L235 233c-4.7 9.3-9 18.3-12.8 26.8L210 233l-45.2-91h-35l76.7 143.8v94.5H236v-92.8z"], + "yahoo": [448, 512, [], "f19e", "M252 292l4 220c-12.7-2.2-23.5-3.9-32.3-3.9-8.4 0-19.2 1.7-32.3 3.9l4-220C140.4 197.2 85 95.2 21.4 0c11.9 3.1 23 3.9 33.2 3.9 9 0 20.4-.8 34.1-3.9 40.9 72.2 82.1 138.7 135 225.5C261 163.9 314.8 81.4 358.6 0c11.1 2.9 22 3.9 32.9 3.9 11.5 0 23.2-1 35-3.9C392.1 47.9 294.9 216.9 252 292z"], + "yandex": [256, 512, [], "f413", "M153.1 315.8L65.7 512H2l96-209.8c-45.1-22.9-75.2-64.4-75.2-141.1C22.7 53.7 90.8 0 171.7 0H254v512h-55.1V315.8h-45.8zm45.8-269.3h-29.4c-44.4 0-87.4 29.4-87.4 114.6 0 82.3 39.4 108.8 87.4 108.8h29.4V46.5z"], + "yandex-international": [320, 512, [], "f414", "M129.5 512V345.9L18.5 48h55.8l81.8 229.7L250.2 0h51.3L180.8 347.8V512h-51.3z"], + "yelp": [384, 512, [], "f1e9", "M136.9 328c-1 .3-109.2 35.7-115.8 35.7-15.2-.9-18.5-16.2-19.9-31.2-1.5-14.2-1.4-29.8.3-46.8 1.9-18.8 5.5-45.1 24.2-44 4.8 0 67.1 25.9 112.7 44.4 17.1 6.8 18.6 35.8-1.5 41.9zm57.9-113.9c1.8 38.2-25.5 48.5-47.2 14.3L41.3 60.4c-1.5-6.6.3-12.4 5.3-17.4C62.2 26.5 146 3.2 168.1 8.9c7.5 1.9 12.1 6.1 13.8 12.6 1.3 8.3 11.5 167.4 12.9 192.6zm-1.4 164.8c0 4.6.2 116.4-1.7 121.5-2.3 6-7 9.7-14.3 11.2-10.1 1.7-27.1-1.9-51-10.7-22-8.1-56.7-21.5-49.3-42.5 2.8-6.9 51.4-62.8 77.3-93.6 12-15.2 39.8-5.5 39 14.1zm180.2-117.8c-5.6 3.7-110.8 28.2-118.1 30.6l.3-.6c-18.1 4.7-35.4-18.5-23.3-34.6 3.7-3.7 65.9-92.4 72.8-97 5.2-3.6 11.3-3.8 18.3-.6 18.4 8.8 55.1 63.1 57.4 84.6-.1 2.9 1.2 11.7-7.4 17.6zm10.1 130.7c-2.7 20.6-44.5 73.4-63.8 81-6.9 2.6-12.9 2-17.7-2-5-3.5-61.8-97.1-64.9-102.3-10.9-16.2 6.8-39.8 25.6-33.2 0 0 110.5 35.7 114.7 39.4 5.2 4.1 7.2 9.8 6.1 17.1z"], + "yoast": [448, 512, [], "f2b1", "M91.3 76h186l-7 18.9h-179c-39.7 0-71.9 31.6-71.9 70.3v205.4c0 35.4 24.9 70.3 84 70.3V460H91.3C41.2 460 0 419.8 0 370.5V165.2C0 115.9 40.7 76 91.3 76zm229.1-56h66.5C243.1 398.1 241.2 418.9 202.2 459.3c-20.8 21.6-49.3 31.7-78.3 32.7v-51.1c49.2-7.7 64.6-49.9 64.6-75.3 0-20.1.6-12.6-82.1-223.2h61.4L218.2 299 320.4 20zM448 161.5V460H234c6.6-9.6 10.7-16.3 12.1-19.4h182.5V161.5c0-32.5-17.1-51.9-48.2-62.9l6.7-17.6c41.7 13.6 60.9 43.1 60.9 80.5z"], + "youtube": [576, 512, [], "f167", "M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"], + "youtube-square": [448, 512, [], "f431", "M186.8 202.1l95.2 54.1-95.2 54.1V202.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-42 176.3s0-59.6-7.6-88.2c-4.2-15.8-16.5-28.2-32.2-32.4C337.9 128 224 128 224 128s-113.9 0-142.2 7.7c-15.7 4.2-28 16.6-32.2 32.4-7.6 28.5-7.6 88.2-7.6 88.2s0 59.6 7.6 88.2c4.2 15.8 16.5 27.7 32.2 31.9C110.1 384 224 384 224 384s113.9 0 142.2-7.7c15.7-4.2 28-16.1 32.2-31.9 7.6-28.5 7.6-88.1 7.6-88.1z"] +}; + +bunker(function () { + define('fab', icons); +}); + +}()); +(function () { +'use strict'; + +var _WINDOW = {}; +try { + if (typeof window !== 'undefined') _WINDOW = window; + +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; + + + + + +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; + + + + + + + + + +var PRODUCTION = function () { + try { + return undefined === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + + + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var icons = { + "address-book": [448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-68 304H48V48h320v416zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"], + "address-card": [576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H48V80h480v352zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2zM360 320h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8z"], + "angry": [496, 512, [], "f556", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-144c-33.6 0-65.2 14.8-86.8 40.6-8.5 10.2-7.1 25.3 3.1 33.8s25.3 7.2 33.8-3c24.8-29.7 75-29.7 99.8 0 8.1 9.7 23.2 11.9 33.8 3 10.2-8.5 11.5-23.6 3.1-33.8-21.6-25.8-53.2-40.6-86.8-40.6zm-48-72c10.3 0 19.9-6.7 23-17.1 3.8-12.7-3.4-26.1-16.1-29.9l-80-24c-12.8-3.9-26.1 3.4-29.9 16.1-3.8 12.7 3.4 26.1 16.1 29.9l28.2 8.5c-3.1 4.9-5.3 10.4-5.3 16.6 0 17.7 14.3 32 32 32s32-14.4 32-32.1zm199-54.9c-3.8-12.7-17.1-19.9-29.9-16.1l-80 24c-12.7 3.8-19.9 17.2-16.1 29.9 3.1 10.4 12.7 17.1 23 17.1 0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.2-2.2-11.7-5.3-16.6l28.2-8.5c12.7-3.7 19.9-17.1 16.1-29.8z"], + "arrow-alt-circle-down": [512, 512, [], "f358", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm-32-316v116h-67c-10.7 0-16 12.9-8.5 20.5l99 99c4.7 4.7 12.3 4.7 17 0l99-99c7.6-7.6 2.2-20.5-8.5-20.5h-67V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12z"], + "arrow-alt-circle-left": [512, 512, [], "f359", "M8 256c0 137 111 248 248 248s248-111 248-248S393 8 256 8 8 119 8 256zm448 0c0 110.5-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56s200 89.5 200 200zm-72-20v40c0 6.6-5.4 12-12 12H256v67c0 10.7-12.9 16-20.5 8.5l-99-99c-4.7-4.7-4.7-12.3 0-17l99-99c7.6-7.6 20.5-2.2 20.5 8.5v67h116c6.6 0 12 5.4 12 12z"], + "arrow-alt-circle-right": [512, 512, [], "f35a", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z"], + "arrow-alt-circle-up": [512, 512, [], "f35b", "M256 504c137 0 248-111 248-248S393 8 256 8 8 119 8 256s111 248 248 248zm0-448c110.5 0 200 89.5 200 200s-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56zm20 328h-40c-6.6 0-12-5.4-12-12V256h-67c-10.7 0-16-12.9-8.5-20.5l99-99c4.7-4.7 12.3-4.7 17 0l99 99c7.6 7.6 2.2 20.5-8.5 20.5h-67v116c0 6.6-5.4 12-12 12z"], + "bell": [448, 512, [], "f0f3", "M425.403 330.939c-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.843 31.843 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095C118.101 62.783 57.143 131.831 57.143 214.857c0 81.933-17.551 99.292-34.543 116.078C-25.496 378.441 9.726 448 66.919 448H160c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h93.08c57.19 0 92.415-69.583 44.323-117.061zM224 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm157.092-72H66.9c-16.762 0-25.135-20.39-13.334-32.191 28.585-28.585 51.577-55.724 51.577-152.952C105.143 149.319 158.462 96 224 96s118.857 53.319 118.857 118.857c0 97.65 23.221 124.574 51.568 152.952C406.278 379.661 397.783 400 381.092 400z"], + "bell-slash": [576, 512, [], "f1f6", "M130.9 400c-16.762 0-25.135-20.39-13.334-32.191 25.226-25.226 46.094-49.338 50.649-121.48l-46.777-41.274a168.48 168.48 0 0 0-.296 9.802c0 81.933-17.551 99.292-34.543 116.078C38.504 378.441 73.726 448 130.919 448H224c0 35.346 28.654 64 64 64s64-28.654 64-64h44.777l-54.4-48H130.9zM288 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm283.867.553l-67.931-59.571c13.104-24.118 11.524-56.318-14.532-82.042-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.848 31.848 0 0 0 320 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095c-41.471 6.618-77.891 28.571-103.249 59.841L36.459 3.037c-5.058-4.436-12.777-3.956-17.24 1.071L3.056 22.313C-1.407 27.34-.925 35.012 4.134 39.447l535.408 469.516c5.058 4.436 12.777 3.956 17.24-1.071l16.163-18.205c4.462-5.027 3.98-12.699-1.078-17.134zM288 96c65.538 0 118.857 53.319 118.857 118.857 0 97.65 23.221 124.574 51.568 152.952 2.908 2.908 4.573 6.328 5.209 9.832L194.482 141.612C216.258 113.867 250.075 96 288 96z"], + "bookmark": [384, 512, [], "f02e", "M336 0H48C21.49 0 0 21.49 0 48v464l192-112 192 112V48c0-26.51-21.49-48-48-48zm0 428.43l-144-84-144 84V54a6 6 0 0 1 6-6h276c3.314 0 6 2.683 6 5.996V428.43z"], + "building": [448, 512, [], "f1ad", "M128 148v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12zm140 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-128 96h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm128 0h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-76 84v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm76 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm180 124v36H0v-36c0-6.6 5.4-12 12-12h19.5V24c0-13.3 10.7-24 24-24h337c13.3 0 24 10.7 24 24v440H436c6.6 0 12 5.4 12 12zM79.5 463H192v-67c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v67h112.5V49L80 48l-.5 415z"], + "calendar": [448, 512, [], "f133", "M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z"], + "calendar-alt": [448, 512, [], "f073", "M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "calendar-check": [448, 512, [], "f274", "M400 64h-48V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H160V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V160h352v298a6 6 0 0 1-6 6zm-52.849-200.65L198.842 404.519c-4.705 4.667-12.303 4.637-16.971-.068l-75.091-75.699c-4.667-4.705-4.637-12.303.068-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l44.104 44.461 111.072-110.181c4.705-4.667 12.303-4.637 16.971.068l22.536 22.718c4.667 4.705 4.636 12.303-.069 16.97z"], + "calendar-minus": [448, 512, [], "f272", "M124 328c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H124zm324-216v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "calendar-plus": [448, 512, [], "f271", "M336 292v24c0 6.6-5.4 12-12 12h-76v76c0 6.6-5.4 12-12 12h-24c-6.6 0-12-5.4-12-12v-76h-76c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h76v-76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v76h76c6.6 0 12 5.4 12 12zm112-180v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "calendar-times": [448, 512, [], "f273", "M311.7 374.7l-17 17c-4.7 4.7-12.3 4.7-17 0L224 337.9l-53.7 53.7c-4.7 4.7-12.3 4.7-17 0l-17-17c-4.7-4.7-4.7-12.3 0-17l53.7-53.7-53.7-53.7c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0l53.7 53.7 53.7-53.7c4.7-4.7 12.3-4.7 17 0l17 17c4.7 4.7 4.7 12.3 0 17L257.9 304l53.7 53.7c4.8 4.7 4.8 12.3.1 17zM448 112v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "caret-square-down": [448, 512, [], "f150", "M125.1 208h197.8c10.7 0 16.1 13 8.5 20.5l-98.9 98.3c-4.7 4.7-12.2 4.7-16.9 0l-98.9-98.3c-7.7-7.5-2.3-20.5 8.4-20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "caret-square-left": [448, 512, [], "f191", "M272 157.1v197.8c0 10.7-13 16.1-20.5 8.5l-98.3-98.9c-4.7-4.7-4.7-12.2 0-16.9l98.3-98.9c7.5-7.7 20.5-2.3 20.5 8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "caret-square-right": [448, 512, [], "f152", "M176 354.9V157.1c0-10.7 13-16.1 20.5-8.5l98.3 98.9c4.7 4.7 4.7 12.2 0 16.9l-98.3 98.9c-7.5 7.7-20.5 2.3-20.5-8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "caret-square-up": [448, 512, [], "f151", "M322.9 304H125.1c-10.7 0-16.1-13-8.5-20.5l98.9-98.3c4.7-4.7 12.2-4.7 16.9 0l98.9 98.3c7.7 7.5 2.3 20.5-8.4 20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "chart-bar": [512, 512, [], "f080", "M500 400c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v324h452zm-356-60v-72c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V140c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V204c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V108c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12z"], + "check-circle": [512, 512, [], "f058", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"], + "check-square": [448, 512, [], "f14a", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm0 400H48V80h352v352zm-35.864-241.724L191.547 361.48c-4.705 4.667-12.303 4.637-16.97-.068l-90.781-91.516c-4.667-4.705-4.637-12.303.069-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l59.792 60.277 141.352-140.216c4.705-4.667 12.303-4.637 16.97.068l22.536 22.718c4.667 4.706 4.637 12.304-.068 16.971z"], + "circle": [512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z"], + "clipboard": [384, 512, [], "f328", "M336 64h-80c0-35.29-28.71-64-64-64s-64 28.71-64 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h42v36c0 6.627 5.373 12 12 12h168c6.627 0 12-5.373 12-12v-36h42a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zM192 40c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24"], + "clock": [512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"], + "clone": [512, 512, [], "f24d", "M464 0H144c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h320c26.51 0 48-21.49 48-48v-48h48c26.51 0 48-21.49 48-48V48c0-26.51-21.49-48-48-48zM362 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h42v224c0 26.51 21.49 48 48 48h224v42a6 6 0 0 1-6 6zm96-96H150a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h308a6 6 0 0 1 6 6v308a6 6 0 0 1-6 6z"], + "closed-captioning": [512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 336H54c-3.3 0-6-2.7-6-6V118c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v276c0 3.3-2.7 6-6 6zm-211.1-85.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7zm190.4 0c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.9-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 220.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7z"], + "comment": [512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"], + "comment-alt": [512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 7.1 5.8 12 12 12 2.4 0 4.9-.7 7.1-2.4L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm16 352c0 8.8-7.2 16-16 16H288l-12.8 9.6L208 428v-60H64c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h384c8.8 0 16 7.2 16 16v288z"], + "comment-dots": [512, 512, [], "f4ad", "M144 208c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"], + "comments": [576, 512, [], "f086", "M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"], + "compass": [512, 512, [], "f14e", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm91.326-312.131l-33.359 137.779a24.005 24.005 0 0 1-6.772 11.729l-102.64 97.779c-17.104 16.293-45.56.434-39.88-23.024l33.359-137.779a23.997 23.997 0 0 1 6.772-11.729l102.642-97.779c17.285-16.47 45.494-.175 39.878 23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"], + "copy": [448, 512, [], "f0c5", "M433.941 65.941l-51.882-51.882A48 48 0 0 0 348.118 0H176c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48v-48h80c26.51 0 48-21.49 48-48V99.882a48 48 0 0 0-14.059-33.941zM266 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h74v224c0 26.51 21.49 48 48 48h96v42a6 6 0 0 1-6 6zm128-96H182a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h106v88c0 13.255 10.745 24 24 24h88v202a6 6 0 0 1-6 6zm6-256h-64V48h9.632c1.591 0 3.117.632 4.243 1.757l48.368 48.368a6 6 0 0 1 1.757 4.243V112z"], + "copyright": [512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm107.351-101.064c-9.614 9.712-45.53 41.396-104.065 41.396-82.43 0-140.484-61.425-140.484-141.567 0-79.152 60.275-139.401 139.762-139.401 55.531 0 88.738 26.62 97.593 34.779a11.965 11.965 0 0 1 1.936 15.322l-18.155 28.113c-3.841 5.95-11.966 7.282-17.499 2.921-8.595-6.776-31.814-22.538-61.708-22.538-48.303 0-77.916 35.33-77.916 80.082 0 41.589 26.888 83.692 78.277 83.692 32.657 0 56.843-19.039 65.726-27.225 5.27-4.857 13.596-4.039 17.82 1.738l19.865 27.17a11.947 11.947 0 0 1-1.152 15.518z"], + "credit-card": [576, 512, [], "f09d", "M527.9 32H48.1C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48.1 48h479.8c26.6 0 48.1-21.5 48.1-48V80c0-26.5-21.5-48-48.1-48zM54.1 80h467.8c3.3 0 6 2.7 6 6v42H48.1V86c0-3.3 2.7-6 6-6zm467.8 352H54.1c-3.3 0-6-2.7-6-6V256h479.8v170c0 3.3-2.7 6-6 6zM192 332v40c0 6.6-5.4 12-12 12h-72c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12zm192 0v40c0 6.6-5.4 12-12 12H236c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12z"], + "dizzy": [496, 512, [], "f567", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-33.8-217.9c7.8-7.8 7.8-20.5 0-28.3L196.3 192l17.9-17.9c7.8-7.8 7.8-20.5 0-28.3-7.8-7.8-20.5-7.8-28.3 0L168 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.9 7.7 20.5 7.7 28.4-.2zm160-92.2c-7.8-7.8-20.5-7.8-28.3 0L328 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.8 7.8 20.5 7.8 28.3 0 7.8-7.8 7.8-20.5 0-28.3l-17.8-18 17.9-17.9c7.7-7.8 7.7-20.4 0-28.2zM248 272c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64z"], + "dot-circle": [512, 512, [], "f192", "M256 56c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m0-48C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 168c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80z"], + "edit": [576, 512, [], "f044", "M402.3 344.9l32-32c5-5 13.7-1.5 13.7 5.7V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h273.5c7.1 0 10.7 8.6 5.7 13.7l-32 32c-1.5 1.5-3.5 2.3-5.7 2.3H48v352h352V350.5c0-2.1.8-4.1 2.3-5.6zm156.6-201.8L296.3 405.7l-90.4 10c-26.2 2.9-48.5-19.2-45.6-45.6l10-90.4L432.9 17.1c22.9-22.9 59.9-22.9 82.7 0l43.2 43.2c22.9 22.9 22.9 60 .1 82.8zM460.1 174L402 115.9 216.2 301.8l-7.3 65.3 65.3-7.3L460.1 174zm64.8-79.7l-43.2-43.2c-4.1-4.1-10.8-4.1-14.8 0L436 82l58.1 58.1 30.9-30.9c4-4.2 4-10.8-.1-14.9z"], + "envelope": [512, 512, [], "f0e0", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z"], + "envelope-open": [512, 512, [], "f2b6", "M494.586 164.516c-4.697-3.883-111.723-89.95-135.251-108.657C337.231 38.191 299.437 0 256 0c-43.205 0-80.636 37.717-103.335 55.859-24.463 19.45-131.07 105.195-135.15 108.549A48.004 48.004 0 0 0 0 201.485V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V201.509a48 48 0 0 0-17.414-36.993zM464 458a6 6 0 0 1-6 6H54a6 6 0 0 1-6-6V204.347c0-1.813.816-3.526 2.226-4.665 15.87-12.814 108.793-87.554 132.364-106.293C200.755 78.88 232.398 48 256 48c23.693 0 55.857 31.369 73.41 45.389 23.573 18.741 116.503 93.493 132.366 106.316a5.99 5.99 0 0 1 2.224 4.663V458zm-31.991-187.704c4.249 5.159 3.465 12.795-1.745 16.981-28.975 23.283-59.274 47.597-70.929 56.863C336.636 362.283 299.205 400 256 400c-43.452 0-81.287-38.237-103.335-55.86-11.279-8.967-41.744-33.413-70.927-56.865-5.21-4.187-5.993-11.822-1.745-16.981l15.258-18.528c4.178-5.073 11.657-5.843 16.779-1.726 28.618 23.001 58.566 47.035 70.56 56.571C200.143 320.631 232.307 352 256 352c23.602 0 55.246-30.88 73.41-45.389 11.994-9.535 41.944-33.57 70.563-56.568 5.122-4.116 12.601-3.346 16.778 1.727l15.258 18.526z"], + "eye": [576, 512, [], "f06e", "M569.354 231.631C512.97 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-102.556 0-192.091-54.701-240-136 44.157-74.933 123.677-127.27 216.162-135.007C273.958 131.078 280 144.83 280 160c0 30.928-25.072 56-56 56s-56-25.072-56-56l.001-.042C157.794 179.043 152 200.844 152 224c0 75.111 60.889 136 136 136s136-60.889 136-136c0-31.031-10.4-59.629-27.895-82.515C451.704 164.638 498.009 205.106 528 256c-47.908 81.299-137.444 136-240 136z"], + "eye-slash": [576, 512, [], "f070", "M272.702 359.139c-80.483-9.011-136.212-86.886-116.93-167.042l116.93 167.042zM288 392c-102.556 0-192.092-54.701-240-136 21.755-36.917 52.1-68.342 88.344-91.658l-27.541-39.343C67.001 152.234 31.921 188.741 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.004 376.006 168.14 440 288 440a332.89 332.89 0 0 0 39.648-2.367l-32.021-45.744A284.16 284.16 0 0 1 288 392zm281.354-111.631c-33.232 56.394-83.421 101.742-143.554 129.492l48.116 68.74c3.801 5.429 2.48 12.912-2.949 16.712L450.23 509.83c-5.429 3.801-12.912 2.48-16.712-2.949L102.084 33.399c-3.801-5.429-2.48-12.912 2.949-16.712L125.77 2.17c5.429-3.801 12.912-2.48 16.712 2.949l55.526 79.325C226.612 76.343 256.808 72 288 72c119.86 0 224.996 63.994 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM528 256c-44.157-74.933-123.677-127.27-216.162-135.007C302.042 131.078 296 144.83 296 160c0 30.928 25.072 56 56 56s56-25.072 56-56l-.001-.042c30.632 57.277 16.739 130.26-36.928 171.719l26.695 38.135C452.626 346.551 498.308 306.386 528 256z"], + "file": [384, 512, [], "f15b", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48z"], + "file-alt": [384, 512, [], "f15c", "M288 248v28c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-28c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm-12 72H108c-6.6 0-12 5.4-12 12v28c0 6.6 5.4 12 12 12h168c6.6 0 12-5.4 12-12v-28c0-6.6-5.4-12-12-12zm108-188.1V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48C0 21.5 21.5 0 48 0h204.1C264.8 0 277 5.1 286 14.1L369.9 98c9 8.9 14.1 21.2 14.1 33.9zm-128-80V128h76.1L256 51.9zM336 464V176H232c-13.3 0-24-10.7-24-24V48H48v416h288z"], + "file-archive": [384, 512, [], "f1c6", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM256 51.882L332.118 128H256V51.882zM336 464H48V48h79.714v16h32V48H208v104c0 13.255 10.745 24 24 24h104v288zM192.27 96h-32V64h32v32zm-32 0v32h-32V96h32zm0 64v32h-32v-32h32zm32 0h-32v-32h32v32zm1.909 105.678A12 12 0 0 0 182.406 256H160.27v-32h-32v32l-19.69 97.106C101.989 385.611 126.834 416 160 416c33.052 0 57.871-30.192 51.476-62.62l-17.297-87.702zM160.27 390.073c-17.918 0-32.444-12.105-32.444-27.036 0-14.932 14.525-27.036 32.444-27.036s32.444 12.105 32.444 27.036c0 14.931-14.526 27.036-32.444 27.036zm32-166.073h-32v-32h32v32z"], + "file-audio": [384, 512, [], "f1c7", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm144-76.024c0 10.691-12.926 16.045-20.485 8.485L136 360.486h-28c-6.627 0-12-5.373-12-12v-56c0-6.627 5.373-12 12-12h28l35.515-36.947c7.56-7.56 20.485-2.206 20.485 8.485v135.952zm41.201-47.13c9.051-9.297 9.06-24.133.001-33.439-22.149-22.752 12.235-56.246 34.395-33.481 27.198 27.94 27.212 72.444.001 100.401-21.793 22.386-56.947-10.315-34.397-33.481z"], + "file-code": [384, 512, [], "f1c9", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm101.677-115.115L116.854 320l32.822-28.885a8.793 8.793 0 0 0 .605-12.624l-17.403-18.564c-3.384-3.613-8.964-3.662-12.438-.401L62.78 313.58c-3.703 3.474-3.704 9.367.001 12.84l57.659 54.055a8.738 8.738 0 0 0 6.012 2.381 8.746 8.746 0 0 0 6.427-2.782l17.403-18.563a8.795 8.795 0 0 0-.605-12.626zm84.284-127.85l-24.401-7.084a8.796 8.796 0 0 0-10.905 5.998L144.04 408.061c-1.353 4.66 1.338 9.552 5.998 10.905l24.403 7.084c4.68 1.355 9.557-1.354 10.905-5.998l54.612-188.112c1.354-4.66-1.337-9.552-5.997-10.905zm87.258 92.545l-57.658-54.055c-3.526-3.307-9.099-3.165-12.439.401l-17.403 18.563a8.795 8.795 0 0 0 .605 12.625L267.146 320l-32.822 28.885a8.793 8.793 0 0 0-.605 12.624l17.403 18.564a8.797 8.797 0 0 0 12.439.401h-.001l57.66-54.055c3.703-3.473 3.703-9.366-.001-12.839z"], + "file-excel": [384, 512, [], "f1c3", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm212-240h-28.8c-4.4 0-8.4 2.4-10.5 6.3-18 33.1-22.2 42.4-28.6 57.7-13.9-29.1-6.9-17.3-28.6-57.7-2.1-3.9-6.2-6.3-10.6-6.3H124c-9.3 0-15 10-10.4 18l46.3 78-46.3 78c-4.7 8 1.1 18 10.4 18h28.9c4.4 0 8.4-2.4 10.5-6.3 21.7-40 23-45 28.6-57.7 14.9 30.2 5.9 15.9 28.6 57.7 2.1 3.9 6.2 6.3 10.6 6.3H260c9.3 0 15-10 10.4-18L224 320c.7-1.1 30.3-50.5 46.3-78 4.7-8-1.1-18-10.3-18z"], + "file-image": [384, 512, [], "f1c5", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm32-48h224V288l-23.5-23.5c-4.7-4.7-12.3-4.7-17 0L176 352l-39.5-39.5c-4.7-4.7-12.3-4.7-17 0L80 352v64zm48-240c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z"], + "file-pdf": [384, 512, [], "f1c1", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm250.2-143.7c-12.2-12-47-8.7-64.4-6.5-17.2-10.5-28.7-25-36.8-46.3 3.9-16.1 10.1-40.6 5.4-56-4.2-26.2-37.8-23.6-42.6-5.9-4.4 16.1-.4 38.5 7 67.1-10 23.9-24.9 56-35.4 74.4-20 10.3-47 26.2-51 46.2-3.3 15.8 26 55.2 76.1-31.2 22.4-7.4 46.8-16.5 68.4-20.1 18.9 10.2 41 17 55.8 17 25.5 0 28-28.2 17.5-38.7zm-198.1 77.8c5.1-13.7 24.5-29.5 30.4-35-19 30.3-30.4 35.7-30.4 35zm81.6-190.6c7.4 0 6.7 32.1 1.8 40.8-4.4-13.9-4.3-40.8-1.8-40.8zm-24.4 136.6c9.7-16.9 18-37 24.7-54.7 8.3 15.1 18.9 27.2 30.1 35.5-20.8 4.3-38.9 13.1-54.8 19.2zm131.6-5s-5 6-37.3-7.8c35.1-2.6 40.9 5.4 37.3 7.8z"], + "file-powerpoint": [384, 512, [], "f1c4", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm72-60V236c0-6.6 5.4-12 12-12h69.2c36.7 0 62.8 27 62.8 66.3 0 74.3-68.7 66.5-95.5 66.5V404c0 6.6-5.4 12-12 12H132c-6.6 0-12-5.4-12-12zm48.5-87.4h23c7.9 0 13.9-2.4 18.1-7.2 8.5-9.8 8.4-28.5.1-37.8-4.1-4.6-9.9-7-17.4-7h-23.9v52z"], + "file-video": [384, 512, [], "f1c8", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm228.687-211.303L224 305.374V268c0-11.046-8.954-20-20-20H100c-11.046 0-20 8.954-20 20v104c0 11.046 8.954 20 20 20h104c11.046 0 20-8.954 20-20v-37.374l52.687 52.674C286.704 397.318 304 390.28 304 375.986V264.011c0-14.311-17.309-21.319-27.313-11.314z"], + "file-word": [384, 512, [], "f1c2", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm220.1-208c-5.7 0-10.6 4-11.7 9.5-20.6 97.7-20.4 95.4-21 103.5-.2-1.2-.4-2.6-.7-4.3-.8-5.1.3.2-23.6-99.5-1.3-5.4-6.1-9.2-11.7-9.2h-13.3c-5.5 0-10.3 3.8-11.7 9.1-24.4 99-24 96.2-24.8 103.7-.1-1.1-.2-2.5-.5-4.2-.7-5.2-14.1-73.3-19.1-99-1.1-5.6-6-9.7-11.8-9.7h-16.8c-7.8 0-13.5 7.3-11.7 14.8 8 32.6 26.7 109.5 33.2 136 1.3 5.4 6.1 9.1 11.7 9.1h25.2c5.5 0 10.3-3.7 11.6-9.1l17.9-71.4c1.5-6.2 2.5-12 3-17.3l2.9 17.3c.1.4 12.6 50.5 17.9 71.4 1.3 5.3 6.1 9.1 11.6 9.1h24.7c5.5 0 10.3-3.7 11.6-9.1 20.8-81.9 30.2-119 34.5-136 1.9-7.6-3.8-14.9-11.6-14.9h-15.8z"], + "flag": [512, 512, [], "f024", "M336.174 80c-49.132 0-93.305-32-161.913-32-31.301 0-58.303 6.482-80.721 15.168a48.04 48.04 0 0 0 2.142-20.727C93.067 19.575 74.167 1.594 51.201.104 23.242-1.71 0 20.431 0 48c0 17.764 9.657 33.262 24 41.562V496c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-83.443C109.869 395.28 143.259 384 199.826 384c49.132 0 93.305 32 161.913 32 58.479 0 101.972-22.617 128.548-39.981C503.846 367.161 512 352.051 512 335.855V95.937c0-34.459-35.264-57.768-66.904-44.117C409.193 67.309 371.641 80 336.174 80zM464 336c-21.783 15.412-60.824 32-102.261 32-59.945 0-102.002-32-161.913-32-43.361 0-96.379 9.403-127.826 24V128c21.784-15.412 60.824-32 102.261-32 59.945 0 102.002 32 161.913 32 43.271 0 96.32-17.366 127.826-32v240z"], + "flushed": [496, 512, [], "f579", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm96-312c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-112 24c0-44.2-35.8-80-80-80s-80 35.8-80 80 35.8 80 80 80 80-35.8 80-80zm-80 48c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm160 144H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z"], + "folder": [512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48zm-6 272H54c-3.314 0-6-2.678-6-5.992V117.992A5.993 5.993 0 0 1 54 112h134.118l64 64H458a6 6 0 0 1 6 6v212a6 6 0 0 1-6 6z"], + "folder-open": [576, 512, [], "f07c", "M527.943 224H480v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h400a48.001 48.001 0 0 0 40.704-22.56l79.942-128c19.948-31.917-3.038-73.44-40.703-73.44zM54 112h134.118l64 64H426a6 6 0 0 1 6 6v42H152a48 48 0 0 0-41.098 23.202L48 351.449V117.993A5.993 5.993 0 0 1 54 112zm394 288H72l77.234-128H528l-80 128z"], + "font-awesome-logo-full": [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"], + "frown": [496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 128c-40.2 0-78 17.7-103.8 48.6-8.5 10.2-7.1 25.3 3.1 33.8 10.2 8.4 25.3 7.1 33.8-3.1 16.6-19.9 41-31.4 66.9-31.4s50.3 11.4 66.9 31.4c8.1 9.7 23.1 11.9 33.8 3.1 10.2-8.5 11.5-23.6 3.1-33.8C326 321.7 288.2 304 248 304z"], + "frown-open": [496, 512, [], "f57a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-48-248c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 112c-35.6 0-88.8 21.3-95.8 61.2-2 11.8 9 21.5 20.5 18.1 31.2-9.6 59.4-15.3 75.3-15.3s44.1 5.7 75.3 15.3c11.4 3.5 22.5-6.3 20.5-18.1-7-39.9-60.2-61.2-95.8-61.2z"], + "futbol": [496, 512, [], "f1e3", "M483.8 179.4C449.8 74.6 352.6 8 248.1 8c-25.4 0-51.2 3.9-76.7 12.2C41.2 62.5-30.1 202.4 12.2 332.6 46.2 437.4 143.4 504 247.9 504c25.4 0 51.2-3.9 76.7-12.2 130.2-42.3 201.5-182.2 159.2-312.4zm-74.5 193.7l-52.2 6.4-43.7-60.9 24.4-75.2 71.1-22.1 38.9 36.4c-.2 30.7-7.4 61.1-21.7 89.2-4.7 9.3-10.7 17.8-16.8 26.2zm0-235.4l-10.4 53.1-70.7 22-64.2-46.5V92.5l47.4-26.2c39.2 13 73.4 38 97.9 71.4zM184.9 66.4L232 92.5v73.8l-64.2 46.5-70.6-22-10.1-52.5c24.3-33.4 57.9-58.6 97.8-71.9zM139 379.5L85.9 373c-14.4-20.1-37.3-59.6-37.8-115.3l39-36.4 71.1 22.2 24.3 74.3-43.5 61.7zm48.2 67l-22.4-48.1 43.6-61.7H287l44.3 61.7-22.4 48.1c-6.2 1.8-57.6 20.4-121.7 0z"], + "gem": [576, 512, [], "f3a5", "M464 0H112c-4 0-7.8 2-10 5.4L2 152.6c-2.9 4.4-2.6 10.2.7 14.2l276 340.8c4.8 5.9 13.8 5.9 18.6 0l276-340.8c3.3-4.1 3.6-9.8.7-14.2L474.1 5.4C471.8 2 468.1 0 464 0zm-19.3 48l63.3 96h-68.4l-51.7-96h56.8zm-202.1 0h90.7l51.7 96H191l51.6-96zm-111.3 0h56.8l-51.7 96H68l63.3-96zm-43 144h51.4L208 352 88.3 192zm102.9 0h193.6L288 435.3 191.2 192zM368 352l68.2-160h51.4L368 352z"], + "grimace": [496, 512, [], "f57f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm16 16H152c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h192c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48zm-168 96h-24c-8.8 0-16-7.2-16-16v-8h40v24zm0-40h-40v-8c0-8.8 7.2-16 16-16h24v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm56 24c0 8.8-7.2 16-16 16h-24v-24h40v8zm0-24h-40v-24h24c8.8 0 16 7.2 16 16v8z"], + "grin": [496, 512, [], "f580", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z"], + "grin-alt": [496, 512, [], "f581", "M200.3 248c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zm128 0c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3z"], + "grin-beam": [496, 512, [], "f582", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-235.9-72.9c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3zm160 0c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3z"], + "grin-beam-sweat": [496, 512, [], "f583", "M440 160c29.5 0 53.3-26.3 53.3-58.7 0-25-31.7-75.5-46.2-97.3-3.6-5.3-10.7-5.3-14.2 0-14.5 21.8-46.2 72.3-46.2 97.3 0 32.4 23.8 58.7 53.3 58.7zM248 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zm105.3-52.9c-24.6 15.7-46 12.9-46.4 12.9 6.9 20.2 10.8 41.8 10.8 64.3 0 110.3-89.7 200-200 200S48 366.3 48 256 137.7 56 248 56c39.8 0 76.8 11.8 108 31.9 1.7-9.5 6.3-24.1 17.2-45.7C336.4 20.6 293.7 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-27-4.4-52.9-12.4-77.2zM168 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z"], + "grin-hearts": [496, 512, [], "f584", "M353.6 304.6c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-152.8-48.9c4.5 1.2 9.2-1.5 10.5-6l19.4-69.9c5.6-20.3-7.4-41.1-28.8-44.5-18.6-3-36.4 9.8-41.5 27.9l-2 7.1-7.1-1.9c-18.2-4.7-38.2 4.3-44.9 22-7.7 20.2 3.8 41.9 24.2 47.2l70.2 18.1zm188.8-65.3c-6.7-17.6-26.7-26.7-44.9-22l-7.1 1.9-2-7.1c-5-18.1-22.8-30.9-41.5-27.9-21.4 3.4-34.4 24.2-28.8 44.5l19.4 69.9c1.2 4.5 5.9 7.2 10.5 6l70.2-18.2c20.4-5.3 31.9-26.9 24.2-47.1zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200z"], + "grin-squint": [496, 512, [], "f585", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-234.7-40.8c3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3l-80-48c-5.1-3-11.4-1.9-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11.1.1 15.5zm242.9 2.5c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11-.1-15.5-3.8-4.4-10.2-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48z"], + "grin-squint-tears": [512, 512, [], "f586", "M117.1 384.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 479 124.3 420.8 128 395c.8-6.4-4.6-11.8-10.9-10.9zm-41.2-41.7C40.3 268 53 176.1 114.6 114.6 152.4 76.8 202.6 56 256 56c36.2 0 70.8 9.8 101.2 27.7 3.8-20.3 8-36.1 12-48.3C333.8 17.2 294.9 8 256 8 192.5 8 129.1 32.2 80.6 80.6c-74.1 74.1-91.3 183.4-52 274 12.2-4.1 27.7-8.3 47.3-12.2zm352.3-187.6c45 76.6 34.9 176.9-30.8 242.6-37.8 37.8-88 58.6-141.4 58.6-30.5 0-59.8-7-86.4-19.8-3.9 19.5-8 35-12.2 47.2 31.4 13.6 65 20.6 98.7 20.6 63.5 0 126.9-24.2 175.4-72.6 78.1-78.1 93.1-195.4 45.2-288.6-12.3 4-28.2 8.1-48.5 12zm-33.3-26.9c25.8-3.7 84-13.7 100.9-30.6 21.9-21.9 21.5-57.9-.9-80.3s-58.3-22.8-80.3-.9C397.7 33 387.7 91.2 384 117c-.8 6.4 4.6 11.8 10.9 10.9zm-187 108.3c-3-3-7.2-4.2-11.4-3.2L106 255.7c-5.7 1.4-9.5 6.7-9.1 12.6.5 5.8 5.1 10.5 10.9 11l52.3 4.8 4.8 52.3c.5 5.8 5.2 10.4 11 10.9h.9c5.5 0 10.3-3.7 11.7-9.1l22.6-90.5c1-4.2-.2-8.5-3.2-11.5zm39.7-25.1l90.5-22.6c5.7-1.4 9.5-6.7 9.1-12.6-.5-5.8-5.1-10.5-10.9-11l-52.3-4.8-4.8-52.3c-.5-5.8-5.2-10.4-11-10.9-5.6-.1-11.2 3.4-12.6 9.1L233 196.5c-1 4.1.2 8.4 3.2 11.4 5 5 11.3 3.2 11.4 3.2zm52 88.5c-29.1 29.1-59.7 52.9-83.9 65.4-9.2 4.8-10 17.5-1.7 23.4 38.9 27.7 107 6.2 143.7-30.6S416 253 388.3 214.1c-5.8-8.2-18.5-7.6-23.4 1.7-12.3 24.2-36.2 54.7-65.3 83.8z"], + "grin-stars": [496, 512, [], "f587", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-227.9-57.5c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.5 1.9-12.2-4.3-13.2l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6.1 34.9zm259.7-72.7l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6 34.9c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.6 1.8-12.2-4.4-13.2z"], + "grin-tears": [640, 512, [], "f588", "M117.1 256.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 351 124.3 292.8 128 267c.8-6.4-4.6-11.8-10.9-10.9zm506.7 30.6c-16.9-16.9-75.1-26.9-100.9-30.6-6.3-.9-11.7 4.5-10.8 10.8 3.7 25.8 13.7 84 30.6 100.9 21.9 21.9 57.9 21.5 80.3-.9 22.3-22.3 22.7-58.3.8-80.2zm-126.6 61.7C463.8 412.3 396.9 456 320 456c-76.9 0-143.8-43.7-177.2-107.6-12.5 37.4-25.2 43.9-28.3 46.5C159.1 460.7 234.5 504 320 504s160.9-43.3 205.5-109.1c-3.2-2.7-15.9-9.2-28.3-46.5zM122.7 224.5C137.9 129.2 220.5 56 320 56c99.5 0 182.1 73.2 197.3 168.5 2.1-.2 5.2-2.4 49.5 7C554.4 106 448.7 8 320 8S85.6 106 73.2 231.4c44.5-9.4 47.1-7.2 49.5-6.9zM320 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zM240 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z"], + "grin-tongue": [496, 512, [], "f589", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zM168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"], + "grin-tongue-squint": [496, 512, [], "f58a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zm36.9-281.1c-3.8-4.4-10.3-5.5-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zm-162.9 45.5l-80-48c-5-3-11.4-2-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3z"], + "grin-tongue-wink": [496, 512, [], "f58b", "M152 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm176-52c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3z"], + "grin-wink": [496, 512, [], "f58c", "M328 180c-25.69 0-55.88 16.92-59.86 42.12-1.75 11.22 11.5 18.24 19.83 10.84l9.55-8.48c14.81-13.19 46.16-13.19 60.97 0l9.55 8.48c8.48 7.43 21.56.25 19.83-10.84C383.88 196.92 353.69 180 328 180zm-160 60c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm185.55 64.64c-25.93 8.3-64.4 13.06-105.55 13.06s-79.62-4.75-105.55-13.06c-9.94-3.13-19.4 5.37-17.71 15.34C132.67 367.13 196.06 400 248 400s115.33-32.87 123.26-80.02c1.68-9.89-7.67-18.48-17.71-15.34zM248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 448c-110.28 0-200-89.72-200-200S137.72 56 248 56s200 89.72 200 200-89.72 200-200 200z"], + "hand-lizard": [576, 512, [], "f258", "M556.686 290.542L410.328 64.829C397.001 44.272 374.417 32 349.917 32H56C25.121 32 0 57.122 0 88v8c0 44.112 35.888 80 80 80h196.042l-18.333 48H144c-48.523 0-88 39.477-88 88 0 30.879 25.121 56 56 56h131.552c2.987 0 5.914.549 8.697 1.631L352 408.418V480h224V355.829c0-23.225-6.679-45.801-19.314-65.287zM528 432H400v-23.582c0-19.948-12.014-37.508-30.604-44.736l-99.751-38.788A71.733 71.733 0 0 0 243.552 320H112c-4.411 0-8-3.589-8-8 0-22.056 17.944-40 40-40h113.709c19.767 0 37.786-12.407 44.84-30.873l24.552-64.281c8.996-23.553-8.428-48.846-33.63-48.846H80c-17.645 0-32-14.355-32-32v-8c0-4.411 3.589-8 8-8h293.917c8.166 0 15.693 4.09 20.137 10.942l146.358 225.715A71.84 71.84 0 0 1 528 355.829V432z"], + "hand-paper": [448, 512, [], "f256", "M372.57 112.641v-10.825c0-43.612-40.52-76.691-83.039-65.546-25.629-49.5-94.09-47.45-117.982.747C130.269 26.456 89.144 57.945 89.144 102v126.13c-19.953-7.427-43.308-5.068-62.083 8.871-29.355 21.796-35.794 63.333-14.55 93.153L132.48 498.569a32 32 0 0 0 26.062 13.432h222.897c14.904 0 27.835-10.289 31.182-24.813l30.184-130.958A203.637 203.637 0 0 0 448 310.564V179c0-40.62-35.523-71.992-75.43-66.359zm27.427 197.922c0 11.731-1.334 23.469-3.965 34.886L368.707 464h-201.92L51.591 302.303c-14.439-20.27 15.023-42.776 29.394-22.605l27.128 38.079c8.995 12.626 29.031 6.287 29.031-9.283V102c0-25.645 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V67c0-25.663 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V101.125c0-25.672 36.57-24.81 36.57.691V256c0 8.837 7.163 16 16 16h6.857c8.837 0 16-7.163 16-16v-76.309c0-26.242 36.57-25.64 36.57-.691v131.563z"], + "hand-peace": [448, 512, [], "f25b", "M362.146 191.976c-13.71-21.649-38.761-34.016-65.006-30.341V74c0-40.804-32.811-74-73.141-74-40.33 0-73.14 33.196-73.14 74L160 168l-18.679-78.85C126.578 50.843 83.85 32.11 46.209 47.208 8.735 62.238-9.571 104.963 5.008 142.85l55.757 144.927c-30.557 24.956-43.994 57.809-24.733 92.218l54.853 97.999C102.625 498.97 124.73 512 148.575 512h205.702c30.744 0 57.558-21.44 64.555-51.797l27.427-118.999a67.801 67.801 0 0 0 1.729-15.203L448 256c0-44.956-43.263-77.343-85.854-64.024zM399.987 326c0 1.488-.169 2.977-.502 4.423l-27.427 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H148.575c-6.486 0-12.542-3.621-15.805-9.449l-54.854-98c-4.557-8.141-2.619-18.668 4.508-24.488l26.647-21.764a16 16 0 0 0 4.812-18.139l-64.09-166.549C37.226 92.956 84.37 74.837 96.51 106.389l59.784 155.357A16 16 0 0 0 171.227 272h11.632c8.837 0 16-7.163 16-16V74c0-34.375 50.281-34.43 50.281 0v182c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16v-28c0-25.122 36.567-25.159 36.567 0v28c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16 0-25.12 36.567-25.16 36.567 0v70z"], + "hand-point-down": [448, 512, [], "f0a7", "M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z"], + "hand-point-left": [512, 512, [], "f0a5", "M0 220.8C0 266.416 37.765 304 83.2 304h35.647a93.148 93.148 0 0 0 7.929 22.064c-2.507 22.006 3.503 44.978 15.985 62.791C143.9 441.342 180.159 480 242.701 480H264c60.063 0 98.512-40 127.2-40h2.679c5.747 4.952 13.536 8 22.12 8h64c17.673 0 32-12.894 32-28.8V188.8c0-15.906-14.327-28.8-32-28.8h-64c-8.584 0-16.373 3.048-22.12 8H391.2c-6.964 0-14.862-6.193-30.183-23.668l-.129-.148-.131-.146c-8.856-9.937-18.116-20.841-25.851-33.253C316.202 80.537 304.514 32 259.2 32c-56.928 0-92 35.286-92 83.2 0 8.026.814 15.489 2.176 22.4H83.2C38.101 137.6 0 175.701 0 220.8zm48 0c0-18.7 16.775-35.2 35.2-35.2h158.4c0-17.325-26.4-35.2-26.4-70.4 0-26.4 20.625-35.2 44-35.2 8.794 0 20.445 32.712 34.926 56.1 9.074 14.575 19.524 27.225 30.799 39.875 16.109 18.374 33.836 36.633 59.075 39.596v176.752C341.21 396.087 309.491 432 264 432h-21.299c-40.524 0-57.124-22.197-50.601-61.325-14.612-8.001-24.151-33.979-12.925-53.625-19.365-18.225-17.787-46.381-4.95-61.05H83.2C64.225 256 48 239.775 48 220.8zM448 360c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z"], + "hand-point-right": [512, 512, [], "f0a4", "M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"], + "hand-point-up": [448, 512, [], "f0a6", "M105.6 83.2v86.177a115.52 115.52 0 0 0-22.4-2.176c-47.914 0-83.2 35.072-83.2 92 0 45.314 48.537 57.002 78.784 75.707 12.413 7.735 23.317 16.994 33.253 25.851l.146.131.148.129C129.807 376.338 136 384.236 136 391.2v2.679c-4.952 5.747-8 13.536-8 22.12v64c0 17.673 12.894 32 28.8 32h230.4c15.906 0 28.8-14.327 28.8-32v-64c0-8.584-3.048-16.373-8-22.12V391.2c0-28.688 40-67.137 40-127.2v-21.299c0-62.542-38.658-98.8-91.145-99.94-17.813-12.482-40.785-18.491-62.791-15.985A93.148 93.148 0 0 0 272 118.847V83.2C272 37.765 234.416 0 188.8 0c-45.099 0-83.2 38.101-83.2 83.2zm118.4 0v91.026c14.669-12.837 42.825-14.415 61.05 4.95 19.646-11.227 45.624-1.687 53.625 12.925 39.128-6.524 61.325 10.076 61.325 50.6V264c0 45.491-35.913 77.21-39.676 120H183.571c-2.964-25.239-21.222-42.966-39.596-59.075-12.65-11.275-25.3-21.725-39.875-30.799C80.712 279.645 48 267.994 48 259.2c0-23.375 8.8-44 35.2-44 35.2 0 53.075 26.4 70.4 26.4V83.2c0-18.425 16.5-35.2 35.2-35.2 18.975 0 35.2 16.225 35.2 35.2zM352 424c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z"], + "hand-pointer": [448, 512, [], "f25a", "M358.182 179.361c-19.493-24.768-52.679-31.945-79.872-19.098-15.127-15.687-36.182-22.487-56.595-19.629V67c0-36.944-29.736-67-66.286-67S89.143 30.056 89.143 67v161.129c-19.909-7.41-43.272-5.094-62.083 8.872-29.355 21.795-35.793 63.333-14.55 93.152l109.699 154.001C134.632 501.59 154.741 512 176 512h178.286c30.802 0 57.574-21.5 64.557-51.797l27.429-118.999A67.873 67.873 0 0 0 448 326v-84c0-46.844-46.625-79.273-89.818-62.639zM80.985 279.697l27.126 38.079c8.995 12.626 29.031 6.287 29.031-9.283V67c0-25.12 36.571-25.16 36.571 0v175c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16v-35c0-25.12 36.571-25.16 36.571 0v35c0 8.836 7.163 16 16 16H272c8.837 0 16-7.164 16-16v-21c0-25.12 36.571-25.16 36.571 0v21c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16 0-25.121 36.571-25.16 36.571 0v84c0 1.488-.169 2.977-.502 4.423l-27.43 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H176c-5.769 0-11.263-2.878-14.697-7.697l-109.712-154c-14.406-20.223 14.994-42.818 29.394-22.606zM176.143 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.733 0-14-7.163-14-16zm75.428 0v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16zM327 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16z"], + "hand-rock": [512, 512, [], "f255", "M408.864 79.052c-22.401-33.898-66.108-42.273-98.813-23.588-29.474-31.469-79.145-31.093-108.334-.022-47.16-27.02-108.71 5.055-110.671 60.806C44.846 105.407 0 140.001 0 187.429v56.953c0 32.741 14.28 63.954 39.18 85.634l97.71 85.081c4.252 3.702 3.11 5.573 3.11 32.903 0 17.673 14.327 32 32 32h252c17.673 0 32-14.327 32-32 0-23.513-1.015-30.745 3.982-42.37l42.835-99.656c6.094-14.177 9.183-29.172 9.183-44.568V146.963c0-52.839-54.314-88.662-103.136-67.911zM464 261.406a64.505 64.505 0 0 1-5.282 25.613l-42.835 99.655c-5.23 12.171-7.883 25.04-7.883 38.25V432H188v-10.286c0-16.37-7.14-31.977-19.59-42.817l-97.71-85.08C56.274 281.255 48 263.236 48 244.381v-56.953c0-33.208 52-33.537 52 .677v41.228a16 16 0 0 0 5.493 12.067l7 6.095A16 16 0 0 0 139 235.429V118.857c0-33.097 52-33.725 52 .677v26.751c0 8.836 7.164 16 16 16h7c8.836 0 16-7.164 16-16v-41.143c0-33.134 52-33.675 52 .677v40.466c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16v-27.429c0-33.03 52-33.78 52 .677v26.751c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16 0-33.146 52-33.613 52 .677v114.445z"], + "hand-scissors": [512, 512, [], "f257", "M256 480l70-.013c5.114 0 10.231-.583 15.203-1.729l118.999-27.427C490.56 443.835 512 417.02 512 386.277V180.575c0-23.845-13.03-45.951-34.005-57.69l-97.999-54.853c-34.409-19.261-67.263-5.824-92.218 24.733L142.85 37.008c-37.887-14.579-80.612 3.727-95.642 41.201-15.098 37.642 3.635 80.37 41.942 95.112L168 192l-94-9.141c-40.804 0-74 32.811-74 73.14 0 40.33 33.196 73.141 74 73.141h87.635c-3.675 26.245 8.692 51.297 30.341 65.006C178.657 436.737 211.044 480 256 480zm0-48.013c-25.16 0-25.12-36.567 0-36.567 8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16h-28c-25.159 0-25.122-36.567 0-36.567h28c8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16H74c-34.43 0-34.375-50.281 0-50.281h182c8.837 0 16-7.163 16-16v-11.632a16 16 0 0 0-10.254-14.933L106.389 128.51c-31.552-12.14-13.432-59.283 19.222-46.717l166.549 64.091a16.001 16.001 0 0 0 18.139-4.812l21.764-26.647c5.82-7.127 16.348-9.064 24.488-4.508l98 54.854c5.828 3.263 9.449 9.318 9.449 15.805v205.701c0 8.491-5.994 15.804-14.576 17.782l-119.001 27.427a19.743 19.743 0 0 1-4.423.502h-70z"], + "hand-spock": [512, 512, [], "f259", "M21.096 381.79l129.092 121.513a32 32 0 0 0 21.932 8.698h237.6c14.17 0 26.653-9.319 30.68-22.904l31.815-107.313A115.955 115.955 0 0 0 477 348.811v-36.839c0-4.051.476-8.104 1.414-12.045l31.73-133.41c10.099-42.412-22.316-82.738-65.544-82.525-4.144-24.856-22.543-47.165-49.85-53.992-35.803-8.952-72.227 12.655-81.25 48.75L296.599 184 274.924 52.01c-8.286-36.07-44.303-58.572-80.304-50.296-29.616 6.804-50.138 32.389-51.882 61.295-42.637.831-73.455 40.563-64.071 81.844l31.04 136.508c-27.194-22.515-67.284-19.992-91.482 5.722-25.376 26.961-24.098 69.325 2.871 94.707zm32.068-61.811l.002-.001c7.219-7.672 19.241-7.98 26.856-.813l53.012 49.894C143.225 378.649 160 371.4 160 357.406v-69.479c0-1.193-.134-2.383-.397-3.546l-34.13-150.172c-5.596-24.617 31.502-32.86 37.054-8.421l30.399 133.757a16 16 0 0 0 15.603 12.454h8.604c10.276 0 17.894-9.567 15.594-19.583l-41.62-181.153c-5.623-24.469 31.39-33.076 37.035-8.508l45.22 196.828A16 16 0 0 0 288.956 272h13.217a16 16 0 0 0 15.522-12.119l42.372-169.49c6.104-24.422 42.962-15.159 36.865 9.217L358.805 252.12c-2.521 10.088 5.115 19.88 15.522 19.88h9.694a16 16 0 0 0 15.565-12.295L426.509 146.6c5.821-24.448 42.797-15.687 36.966 8.802L431.72 288.81a100.094 100.094 0 0 0-2.72 23.162v36.839c0 6.548-.943 13.051-2.805 19.328L397.775 464h-219.31L53.978 346.836c-7.629-7.18-7.994-19.229-.814-26.857z"], + "handshake": [640, 512, [], "f2b5", "M519.2 127.9l-47.6-47.6A56.252 56.252 0 0 0 432 64H205.2c-14.8 0-29.1 5.9-39.6 16.3L118 127.9H0v255.7h64c17.6 0 31.8-14.2 31.9-31.7h9.1l84.6 76.4c30.9 25.1 73.8 25.7 105.6 3.8 12.5 10.8 26 15.9 41.1 15.9 18.2 0 35.3-7.4 48.8-24 22.1 8.7 48.2 2.6 64-16.8l26.2-32.3c5.6-6.9 9.1-14.8 10.9-23h57.9c.1 17.5 14.4 31.7 31.9 31.7h64V127.9H519.2zM48 351.6c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16zm390-6.9l-26.1 32.2c-2.8 3.4-7.8 4-11.3 1.2l-23.9-19.4-30 36.5c-6 7.3-15 4.8-18 2.4l-36.8-31.5-15.6 19.2c-13.9 17.1-39.2 19.7-55.3 6.6l-97.3-88H96V175.8h41.9l61.7-61.6c2-.8 3.7-1.5 5.7-2.3H262l-38.7 35.5c-29.4 26.9-31.1 72.3-4.4 101.3 14.8 16.2 61.2 41.2 101.5 4.4l8.2-7.5 108.2 87.8c3.4 2.8 3.9 7.9 1.2 11.3zm106-40.8h-69.2c-2.3-2.8-4.9-5.4-7.7-7.7l-102.7-83.4 12.5-11.4c6.5-6 7-16.1 1-22.6L367 167.1c-6-6.5-16.1-6.9-22.6-1l-55.2 50.6c-9.5 8.7-25.7 9.4-34.6 0-9.3-9.9-8.5-25.1 1.2-33.9l65.6-60.1c7.4-6.8 17-10.5 27-10.5l83.7-.2c2.1 0 4.1.8 5.5 2.3l61.7 61.6H544v128zm48 47.7c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16z"], + "hdd": [576, 512, [], "f0a0", "M567.403 235.642L462.323 84.589A48 48 0 0 0 422.919 64H153.081a48 48 0 0 0-39.404 20.589L8.597 235.642A48.001 48.001 0 0 0 0 263.054V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V263.054c0-9.801-3-19.366-8.597-27.412zM153.081 112h269.838l77.913 112H75.168l77.913-112zM528 400H48V272h480v128zm-32-64c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32zm-96 0c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32z"], + "heart": [512, 512, [], "f004", "M458.4 64.3C400.6 15.7 311.3 23 256 79.3 200.7 23 111.4 15.6 53.6 64.3-21.6 127.6-10.6 230.8 43 285.5l175.4 178.7c10 10.2 23.4 15.9 37.6 15.9 14.3 0 27.6-5.6 37.6-15.8L469 285.6c53.5-54.7 64.7-157.9-10.6-221.3zm-23.6 187.5L259.4 430.5c-2.4 2.4-4.4 2.4-6.8 0L77.2 251.8c-36.5-37.2-43.9-107.6 7.3-150.7 38.9-32.7 98.9-27.8 136.5 10.5l35 35.7 35-35.7c37.8-38.5 97.8-43.2 136.5-10.6 51.1 43.1 43.5 113.9 7.3 150.8z"], + "hospital": [448, 512, [], "f0f8", "M128 244v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12zm140 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm-76 84v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm76 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm180 124v36H0v-36c0-6.627 5.373-12 12-12h19.5V85.035C31.5 73.418 42.245 64 55.5 64H144V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v40h88.5c13.255 0 24 9.418 24 21.035V464H436c6.627 0 12 5.373 12 12zM79.5 463H192v-67c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v67h112.5V112H304v24c0 13.255-10.745 24-24 24H168c-13.255 0-24-10.745-24-24v-24H79.5v351zM266 64h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6z"], + "hourglass": [384, 512, [], "f254", "M368 48h4c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12H12C5.373 0 0 5.373 0 12v24c0 6.627 5.373 12 12 12h4c0 80.564 32.188 165.807 97.18 208C47.899 298.381 16 383.9 16 464h-4c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12h-4c0-80.564-32.188-165.807-97.18-208C336.102 213.619 368 128.1 368 48zM64 48h256c0 101.62-57.307 184-128 184S64 149.621 64 48zm256 416H64c0-101.62 57.308-184 128-184s128 82.38 128 184z"], + "id-badge": [384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm0 464H48V48h288v416zM144 112h96c8.8 0 16-7.2 16-16s-7.2-16-16-16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16zm48 176c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"], + "id-card": [576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H303.2c.9-4.5.8 3.6.8-22.4 0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6 0 26-.2 17.9.8 22.4H48V144h480v288zm-168-80h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm-168 96c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z"], + "image": [512, 512, [], "f03e", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 336H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v276a6 6 0 0 1-6 6zM128 152c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zM96 352h320v-80l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L192 304l-39.515-39.515c-4.686-4.686-12.284-4.686-16.971 0L96 304v48z"], + "images": [576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v48H54a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6v-10h48zm42-336H150a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6V86a6 6 0 0 0-6-6zm6-48c26.51 0 48 21.49 48 48v256c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h384zM264 144c0 22.091-17.909 40-40 40s-40-17.909-40-40 17.909-40 40-40 40 17.909 40 40zm-72 96l39.515-39.515c4.686-4.686 12.284-4.686 16.971 0L288 240l103.515-103.515c4.686-4.686 12.284-4.686 16.971 0L480 208v80H192v-48z"], + "keyboard": [576, 512, [], "f11c", "M528 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm8 336c0 4.411-3.589 8-8 8H48c-4.411 0-8-3.589-8-8V112c0-4.411 3.589-8 8-8h480c4.411 0 8 3.589 8 8v288zM170 270v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-336 82v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm384 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zM122 188v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-98 158v-16c0-6.627-5.373-12-12-12H180c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h216c6.627 0 12-5.373 12-12z"], + "kiss": [496, 512, [], "f596", "M168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm136 132c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"], + "kiss-beam": [496, 512, [], "f597", "M168 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm56-148c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zm24-156c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4z"], + "kiss-wink-heart": [504, 512, [], "f598", "M304 308.5c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36 21.7-9.1 35.1-23.4 35.1-36.4zm70.5-83.5l9.5 8.5c3.8 3.3 9.3 4 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 5.8 3.1 11.2.7 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0zM136 208.5c0 17.7 14.3 32 32 32s32-14.3 32-32-14.3-32-32-32-32 14.3-32 32zm365.1 194c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zM334 436.3c-26.1 12.5-55.2 19.7-86 19.7-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200c0 22.1-3.7 43.3-10.4 63.2 9 6.4 17 14.2 22.6 23.9 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-2.5-7.3 4.3 17.2-13.4-46.8z"], + "laugh": [496, 512, [], "f599", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 224c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm-160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"], + "laugh-beam": [496, 512, [], "f59a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 152c-23.8 0-52.7 29.3-56 71.4-.7 8.6 10.8 11.9 14.9 4.5l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.1-42.1-32-71.4-55.8-71.4zm-201 75.9l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.6 8.5 10.9 11.9 15.1 4.5zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"], + "laugh-squint": [496, 512, [], "f59b", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM343.6 196l33.6-40.3c8.6-10.3-3.8-24.8-15.4-18l-80 48c-7.8 4.7-7.8 15.9 0 20.6l80 48c11.5 6.8 24-7.6 15.4-18L343.6 196zm-209.4 58.3l80-48c7.8-4.7 7.8-15.9 0-20.6l-80-48c-11.6-6.9-24 7.7-15.4 18l33.6 40.3-33.6 40.3c-8.7 10.4 3.8 24.8 15.4 18zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"], + "laugh-wink": [496, 512, [], "f59c", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6C68.8 359.6 48 309.4 48 256s20.8-103.6 58.6-141.4C144.4 76.8 194.6 56 248 56s103.6 20.8 141.4 58.6c37.8 37.8 58.6 88 58.6 141.4s-20.8 103.6-58.6 141.4zM328 164c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1zm-160 60c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z"], + "lemon": [512, 512, [], "f094", "M484.112 27.889C455.989-.233 416.108-8.057 387.059 8.865 347.604 31.848 223.504-41.111 91.196 91.197-41.277 223.672 31.923 347.472 8.866 387.058c-16.922 29.051-9.1 68.932 19.022 97.054 28.135 28.135 68.011 35.938 97.057 19.021 39.423-22.97 163.557 49.969 295.858-82.329 132.474-132.477 59.273-256.277 82.331-295.861 16.922-29.05 9.1-68.931-19.022-97.054zm-22.405 72.894c-38.8 66.609 45.6 165.635-74.845 286.08-120.44 120.443-219.475 36.048-286.076 74.843-22.679 13.207-64.035-27.241-50.493-50.488 38.8-66.609-45.6-165.635 74.845-286.08C245.573 4.702 344.616 89.086 411.219 50.292c22.73-13.24 64.005 27.288 50.488 50.491zm-169.861 8.736c1.37 10.96-6.404 20.957-17.365 22.327-54.846 6.855-135.779 87.787-142.635 142.635-1.373 10.989-11.399 18.734-22.326 17.365-10.961-1.37-18.735-11.366-17.365-22.326 9.162-73.286 104.167-168.215 177.365-177.365 10.953-1.368 20.956 6.403 22.326 17.364z"], + "life-ring": [512, 512, [], "f1cd", "M256 504c136.967 0 248-111.033 248-248S392.967 8 256 8 8 119.033 8 256s111.033 248 248 248zm-103.398-76.72l53.411-53.411c31.806 13.506 68.128 13.522 99.974 0l53.411 53.411c-63.217 38.319-143.579 38.319-206.796 0zM336 256c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zm91.28 103.398l-53.411-53.411c13.505-31.806 13.522-68.128 0-99.974l53.411-53.411c38.319 63.217 38.319 143.579 0 206.796zM359.397 84.72l-53.411 53.411c-31.806-13.505-68.128-13.522-99.973 0L152.602 84.72c63.217-38.319 143.579-38.319 206.795 0zM84.72 152.602l53.411 53.411c-13.506 31.806-13.522 68.128 0 99.974L84.72 359.398c-38.319-63.217-38.319-143.579 0-206.796z"], + "lightbulb": [384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zM128 176c0-35.29 28.71-64 64-64 8.837 0 16-7.164 16-16s-7.163-16-16-16c-52.935 0-96 43.065-96 96 0 8.836 7.164 16 16 16s16-7.164 16-16zm64-128c70.734 0 128 57.254 128 128 0 77.602-37.383 60.477-80.98 160h-94.04C101.318 236.33 64 253.869 64 176c0-70.735 57.254-128 128-128m0-48C94.805 0 16 78.803 16 176c0 101.731 51.697 91.541 90.516 192.674 3.55 9.249 12.47 15.326 22.376 15.326h126.215c9.906 0 18.826-6.078 22.376-15.326C316.303 267.541 368 277.731 368 176 368 78.803 289.195 0 192 0z"], + "list-alt": [512, 512, [], "f022", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zm-42-92v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm-252 12c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36z"], + "map": [576, 512, [], "f279", "M560.02 32c-1.96 0-3.98.37-5.96 1.16L384.01 96H384L212 35.28A64.252 64.252 0 0 0 191.76 32c-6.69 0-13.37 1.05-19.81 3.14L20.12 87.95A32.006 32.006 0 0 0 0 117.66v346.32C0 473.17 7.53 480 15.99 480c1.96 0 3.97-.37 5.96-1.16L192 416l172 60.71a63.98 63.98 0 0 0 40.05.15l151.83-52.81A31.996 31.996 0 0 0 576 394.34V48.02c0-9.19-7.53-16.02-15.98-16.02zM224 90.42l128 45.19v285.97l-128-45.19V90.42zM48 418.05V129.07l128-44.53v286.2l-.64.23L48 418.05zm480-35.13l-128 44.53V141.26l.64-.24L528 93.95v288.97z"], + "meh": [496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm8 144H160c-13.2 0-24 10.8-24 24s10.8 24 24 24h176c13.2 0 24-10.8 24-24s-10.8-24-24-24z"], + "meh-blank": [496, 512, [], "f5a4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"], + "meh-rolling-eyes": [496, 512, [], "f5a5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm88-304c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm0 112c-22.1 0-40-17.9-40-40 0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40zm-104-40c0-39.8-32.2-72-72-72s-72 32.2-72 72 32.2 72 72 72 72-32.2 72-72zm-112 0c0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40s-40-17.9-40-40zm192 128H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z"], + "minus-square": [448, 512, [], "f146", "M108 284c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h232c6.6 0 12 5.4 12 12v32c0 6.6-5.4 12-12 12H108zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "money-bill-alt": [640, 512, [], "f3d1", "M320 144c-53.02 0-96 50.14-96 112 0 61.85 42.98 112 96 112 53 0 96-50.13 96-112 0-61.86-42.98-112-96-112zm40 168c0 4.42-3.58 8-8 8h-64c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h16v-55.44l-.47.31a7.992 7.992 0 0 1-11.09-2.22l-8.88-13.31a7.992 7.992 0 0 1 2.22-11.09l15.33-10.22a23.99 23.99 0 0 1 13.31-4.03H328c4.42 0 8 3.58 8 8v88h16c4.42 0 8 3.58 8 8v16zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zm-16 272c-35.35 0-64 28.65-64 64H112c0-35.35-28.65-64-64-64V176c35.35 0 64-28.65 64-64h416c0 35.35 28.65 64 64 64v160z"], + "moon": [512, 512, [], "f186", "M279.135 512c78.756 0 150.982-35.804 198.844-94.775 28.27-34.831-2.558-85.722-46.249-77.401-82.348 15.683-158.272-47.268-158.272-130.792 0-48.424 26.06-92.292 67.434-115.836 38.745-22.05 28.999-80.788-15.022-88.919A257.936 257.936 0 0 0 279.135 0c-141.36 0-256 114.575-256 256 0 141.36 114.576 256 256 256zm0-464c12.985 0 25.689 1.201 38.016 3.478-54.76 31.163-91.693 90.042-91.693 157.554 0 113.848 103.641 199.2 215.252 177.944C402.574 433.964 344.366 464 279.135 464c-114.875 0-208-93.125-208-208s93.125-208 208-208z"], + "newspaper": [576, 512, [], "f1ea", "M552 64H112c-20.858 0-38.643 13.377-45.248 32H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h496c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24zM48 392V144h16v248c0 4.411-3.589 8-8 8s-8-3.589-8-8zm480 8H111.422c.374-2.614.578-5.283.578-8V112h416v288zM172 280h136c6.627 0 12-5.373 12-12v-96c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v96c0 6.627 5.373 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H172c-6.627 0-12-5.373-12-12zm192 0v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0-144v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0 72v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12z"], + "object-group": [512, 512, [], "f247", "M500 128c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v256H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V128h12zm-52-64h32v32h-32V64zM32 64h32v32H32V64zm32 384H32v-32h32v32zm416 0h-32v-32h32v32zm-40-64h-12c-6.627 0-12 5.373-12 12v12H96v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h12v256zm-36-192h-84v-52c0-6.628-5.373-12-12-12H108c-6.627 0-12 5.372-12 12v168c0 6.628 5.373 12 12 12h84v52c0 6.628 5.373 12 12 12h200c6.627 0 12-5.372 12-12V204c0-6.628-5.373-12-12-12zm-268-24h144v112H136V168zm240 176H232v-24h76c6.627 0 12-5.372 12-12v-76h56v112z"], + "object-ungroup": [576, 512, [], "f248", "M564 224c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12h-88v-24h12c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v160H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h88v24h-12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V224h12zM352 64h32v32h-32V64zm0 256h32v32h-32v-32zM64 352H32v-32h32v32zm0-256H32V64h32v32zm32 216v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h12v160h-12c-6.627 0-12 5.373-12 12v12H96zm128 136h-32v-32h32v32zm280-64h-12c-6.627 0-12 5.373-12 12v12H256v-12c0-6.627-5.373-12-12-12h-12v-24h88v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12v-88h88v12c0 6.627 5.373 12 12 12h12v160zm40 64h-32v-32h32v32zm0-256h-32v-32h32v32z"], + "paper-plane": [512, 512, [], "f1d8", "M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z"], + "pause-circle": [512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm96-280v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16zm-112 0v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16z"], + "play-circle": [512, 512, [], "f144", "M371.7 238l-176-107c-15.8-8.8-35.7 2.5-35.7 21v208c0 18.4 19.8 29.8 35.7 21l176-101c16.4-9.1 16.4-32.8 0-42zM504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256z"], + "plus-square": [448, 512, [], "f0fe", "M352 240v32c0 6.6-5.4 12-12 12h-88v88c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-88h-88c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h88v-88c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v88h88c6.6 0 12 5.4 12 12zm96-160v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"], + "question-circle": [512, 512, [], "f059", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 448c-110.532 0-200-89.431-200-200 0-110.495 89.472-200 200-200 110.491 0 200 89.471 200 200 0 110.53-89.431 200-200 200zm107.244-255.2c0 67.052-72.421 68.084-72.421 92.863V300c0 6.627-5.373 12-12 12h-45.647c-6.627 0-12-5.373-12-12v-8.659c0-35.745 27.1-50.034 47.579-61.516 17.561-9.845 28.324-16.541 28.324-29.579 0-17.246-21.999-28.693-39.784-28.693-23.189 0-33.894 10.977-48.942 29.969-4.057 5.12-11.46 6.071-16.666 2.124l-27.824-21.098c-5.107-3.872-6.251-11.066-2.644-16.363C184.846 131.491 214.94 112 261.794 112c49.071 0 101.45 38.304 101.45 88.8zM298 368c0 23.159-18.841 42-42 42s-42-18.841-42-42 18.841-42 42-42 42 18.841 42 42z"], + "registered": [512, 512, [], "f25d", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm110.442-81.791c-53.046-96.284-50.25-91.468-53.271-96.085 24.267-13.879 39.482-41.563 39.482-73.176 0-52.503-30.247-85.252-101.498-85.252h-78.667c-6.617 0-12 5.383-12 12V380c0 6.617 5.383 12 12 12h38.568c6.617 0 12-5.383 12-12v-83.663h31.958l47.515 89.303a11.98 11.98 0 0 0 10.593 6.36h42.81c9.14 0 14.914-9.799 10.51-17.791zM256.933 239.906h-33.875v-64.14h27.377c32.417 0 38.929 12.133 38.929 31.709-.001 20.913-11.518 32.431-32.431 32.431z"], + "sad-cry": [496, 512, [], "f5b3", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm144 386.4V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v151.4C315.5 447 282.8 456 248 456s-67.5-9-96-24.6V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v114.4c-34.6-36-56-84.7-56-138.4 0-110.3 89.7-200 200-200s200 89.7 200 200c0 53.7-21.4 102.5-56 138.4zM205.8 234.5c4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.3 7.9 4.8 13.7 1.6zM344 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.5 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm-96 92c-30.9 0-56 28.7-56 64s25.1 64 56 64 56-28.7 56-64-25.1-64-56-64z"], + "sad-tear": [496, 512, [], "f5b4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm8-152c-13.2 0-24 10.8-24 24s10.8 24 24 24c23.8 0 46.3 10.5 61.6 28.8 8.1 9.8 23.2 11.9 33.8 3.1 10.2-8.5 11.6-23.6 3.1-33.8C330 320.8 294.1 304 256 304zm-88-64c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-165.6 98.8C151 290.1 126 325.4 126 342.9c0 22.7 18.8 41.1 42 41.1s42-18.4 42-41.1c0-17.5-25-52.8-36.4-68.1-2.8-3.7-8.4-3.7-11.2 0z"], + "save": [448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM272 80v80H144V80h128zm122 352H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h42v104c0 13.255 10.745 24 24 24h176c13.255 0 24-10.745 24-24V83.882l78.243 78.243a6 6 0 0 1 1.757 4.243V426a6 6 0 0 1-6 6zM224 232c-48.523 0-88 39.477-88 88s39.477 88 88 88 88-39.477 88-88-39.477-88-88-88zm0 128c-22.056 0-40-17.944-40-40s17.944-40 40-40 40 17.944 40 40-17.944 40-40 40z"], + "share-square": [576, 512, [], "f14d", "M561.938 158.06L417.94 14.092C387.926-15.922 336 5.097 336 48.032v57.198c-42.45 1.88-84.03 6.55-120.76 17.99-35.17 10.95-63.07 27.58-82.91 49.42C108.22 199.2 96 232.6 96 271.94c0 61.697 33.178 112.455 84.87 144.76 37.546 23.508 85.248-12.651 71.02-55.74-15.515-47.119-17.156-70.923 84.11-78.76V336c0 42.993 51.968 63.913 81.94 33.94l143.998-144c18.75-18.74 18.75-49.14 0-67.88zM384 336V232.16C255.309 234.082 166.492 255.35 206.31 376 176.79 357.55 144 324.08 144 271.94c0-109.334 129.14-118.947 240-119.85V48l144 144-144 144zm24.74 84.493a82.658 82.658 0 0 0 20.974-9.303c7.976-4.952 18.286.826 18.286 10.214V464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h132c6.627 0 12 5.373 12 12v4.486c0 4.917-2.987 9.369-7.569 11.152-13.702 5.331-26.396 11.537-38.05 18.585a12.138 12.138 0 0 1-6.28 1.777H54a6 6 0 0 0-6 6v340a6 6 0 0 0 6 6h340a6 6 0 0 0 6-6v-25.966c0-5.37 3.579-10.059 8.74-11.541z"], + "smile": [496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm4 72.6c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.1-8.4-25.3-7.1-33.8 3.1z"], + "smile-beam": [496, 512, [], "f5b8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm84-143.4c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.6-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.2-8.4-25.3-7.1-33.8 3.1zM136.5 211c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.4 1.1 7.4-.5 9.3-3.7l9.5-17zM328 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4z"], + "smile-wink": [496, 512, [], "f4da", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm117.8-146.4c-10.2-8.5-25.3-7.1-33.8 3.1-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-60c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1z"], + "snowflake": [448, 512, [], "f2dc", "M438.237 355.927l-66.574-38.54 59.448-10.327c5.846-1.375 10.609-5.183 13.458-10.13 2.48-4.307 3.506-9.478 2.524-14.651-2.11-11.115-12.686-18.039-23.621-15.467l-85.423 31.115L255.914 256l82.136-41.926 85.423 31.115c10.936 2.572 21.512-4.352 23.621-15.467 2.111-11.115-5.046-22.209-15.981-24.781l-59.448-10.327 66.573-38.54c9.54-5.523 12.615-18.092 6.867-28.074-5.748-9.982-18.14-13.596-27.68-8.074l-66.574 38.54 20.805-56.787c3.246-10.782-2.758-22.542-13.413-26.268-10.654-3.725-21.922 1.997-25.168 12.779l-15.838 89.735-72.423 41.926V136l69.585-58.621c7.689-8.21 6.997-20.856-1.548-28.245-8.545-7.391-21.705-6.723-29.394 1.486l-38.644 46.46V20c0-11.046-9.318-20-20.813-20s-20.813 8.954-20.813 20v77.08l-38.644-46.46c-7.689-8.21-20.849-8.876-29.394-1.486-8.544 7.389-9.236 20.035-1.547 28.245L203.187 136v83.853l-72.423-41.926-15.838-89.736c-3.247-10.782-14.515-16.504-25.169-12.779-10.656 3.725-16.659 15.486-13.413 26.268l20.805 56.787-66.573-38.54c-9.54-5.523-21.933-1.908-27.68 8.074s-2.673 22.551 6.867 28.074l66.574 38.54-59.449 10.328C5.953 207.515-1.202 218.609.907 229.724c2.11 11.114 12.686 18.038 23.622 15.466l85.422-31.115L192.086 256l-82.136 41.926-85.423-31.115c-10.936-2.572-21.511 4.352-23.622 15.466-2.109 11.113 5.046 22.209 15.981 24.781l59.449 10.328-66.574 38.54C.223 361.449-2.852 374.018 2.896 384s18.14 13.597 27.68 8.074l66.574-38.54-20.805 56.786c-1.735 5.764-.828 11.805 2.02 16.751 2.48 4.307 6.433 7.784 11.392 9.517 10.655 3.725 21.923-1.997 25.169-12.779l15.838-89.736 72.423-41.926V376l-69.585 58.621c-7.69 8.21-6.997 20.855 1.547 28.245 8.544 7.388 21.705 6.723 29.394-1.487l38.644-46.46V492c0 11.046 9.318 20 20.813 20s20.813-8.954 20.813-20v-77.081l38.644 46.46c4.111 4.389 9.782 6.621 15.478 6.621 4.96 0 9.939-1.694 13.916-5.134 8.545-7.39 9.237-20.035 1.548-28.245L244.813 376v-83.853l72.423 41.926 15.838 89.736c3.246 10.782 14.514 16.504 25.168 12.779 10.653-3.726 16.659-15.487 13.412-26.268l-20.805-56.787 66.574 38.54c9.54 5.523 21.933 1.908 27.68-8.074 5.749-9.981 2.675-22.55-6.866-28.072z"], + "square": [448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h340c3.3 0 6 2.7 6 6v340c0 3.3-2.7 6-6 6z"], + "star": [576, 512, [], "f005", "M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z"], + "star-half": [576, 512, [], "f089", "M288 385.3l-124.3 65.4 23.7-138.4-100.6-98 139-20.2 62.2-126V0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6v-54.3z"], + "sticky-note": [448, 512, [], "f249", "M448 348.106V80c0-26.51-21.49-48-48-48H48C21.49 32 0 53.49 0 80v351.988c0 26.51 21.49 48 48 48h268.118a48 48 0 0 0 33.941-14.059l83.882-83.882A48 48 0 0 0 448 348.106zm-128 80v-76.118h76.118L320 428.106zM400 80v223.988H296c-13.255 0-24 10.745-24 24v104H48V80h352z"], + "stop-circle": [512, 512, [], "f28d", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm296-80v160c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16z"], + "sun": [512, 512, [], "f185", "M220.116 487.936l-20.213-49.425a3.992 3.992 0 0 0-5.808-1.886l-45.404 28.104c-29.466 18.24-66.295-8.519-58.054-42.179l12.699-51.865a3.993 3.993 0 0 0-3.59-4.941l-53.251-3.951c-34.554-2.562-48.632-45.855-22.174-68.247L65.08 259.05a3.992 3.992 0 0 0 0-6.106l-40.76-34.497c-26.45-22.384-12.39-65.682 22.174-68.246l53.251-3.951a3.993 3.993 0 0 0 3.59-4.941L90.637 89.443c-8.239-33.656 28.581-60.42 58.054-42.179l45.403 28.104a3.993 3.993 0 0 0 5.808-1.887l20.213-49.425c13.116-32.071 58.638-32.081 71.758 0l20.212 49.424a3.994 3.994 0 0 0 5.809 1.887l45.403-28.104c29.464-18.236 66.297 8.513 58.054 42.179l-12.699 51.865a3.995 3.995 0 0 0 3.59 4.941l53.251 3.951c34.553 2.563 48.633 45.854 22.175 68.246l-40.76 34.497a3.993 3.993 0 0 0 0 6.107l40.76 34.496c26.511 22.441 12.322 65.689-22.175 68.247l-53.251 3.951a3.993 3.993 0 0 0-3.589 4.942l12.698 51.864c8.241 33.658-28.583 60.421-58.054 42.18l-45.403-28.104a3.994 3.994 0 0 0-5.809 1.887l-20.212 49.424c-13.159 32.178-58.675 31.993-71.757 0zm16.814-64.568l19.064 46.616 19.064-46.615c10.308-25.2 40.778-35.066 63.892-20.759l42.822 26.507-11.976-48.919c-6.475-26.444 12.38-52.339 39.487-54.349l50.226-3.726-38.444-32.536c-20.782-17.591-20.747-49.621.001-67.18l38.442-32.536-50.225-3.727c-27.151-2.015-45.95-27.948-39.488-54.349l11.978-48.919-42.823 26.507c-23.151 14.327-53.603 4.4-63.892-20.76l-19.064-46.615-19.064 46.617c-10.305 25.198-40.778 35.066-63.891 20.76l-42.823-26.508 11.977 48.918c6.474 26.446-12.381 52.338-39.488 54.35l-50.224 3.726 38.443 32.537c20.782 17.588 20.747 49.619 0 67.178L52.48 322.123l50.226 3.726c27.151 2.014 45.95 27.947 39.487 54.349l-11.977 48.919 42.823-26.507c23.188-14.355 53.622-4.352 63.891 20.758zM256 384c-70.58 0-128-57.421-128-128 0-70.58 57.42-128 128-128 70.579 0 128 57.42 128 128 0 70.579-57.421 128-128 128zm0-208c-44.112 0-80 35.888-80 80s35.888 80 80 80 80-35.888 80-80-35.888-80-80-80z"], + "surprise": [496, 512, [], "f5c2", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-176c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm-48-72c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"], + "thumbs-down": [512, 512, [], "f165", "M466.27 225.31c4.674-22.647.864-44.538-8.99-62.99 2.958-23.868-4.021-48.565-17.34-66.99C438.986 39.423 404.117 0 327 0c-7 0-15 .01-22.22.01C201.195.01 168.997 40 128 40h-10.845c-5.64-4.975-13.042-8-21.155-8H32C14.327 32 0 46.327 0 64v240c0 17.673 14.327 32 32 32h64c11.842 0 22.175-6.438 27.708-16h7.052c19.146 16.953 46.013 60.653 68.76 83.4 13.667 13.667 10.153 108.6 71.76 108.6 57.58 0 95.27-31.936 95.27-104.73 0-18.41-3.93-33.73-8.85-46.54h36.48c48.602 0 85.82-41.565 85.82-85.58 0-19.15-4.96-34.99-13.73-49.84zM64 296c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm330.18 16.73H290.19c0 37.82 28.36 55.37 28.36 94.54 0 23.75 0 56.73-47.27 56.73-18.91-18.91-9.46-66.18-37.82-94.54C206.9 342.89 167.28 272 138.92 272H128V85.83c53.611 0 100.001-37.82 171.64-37.82h37.82c35.512 0 60.82 17.12 53.12 65.9 15.2 8.16 26.5 36.44 13.94 57.57 21.581 20.384 18.699 51.065 5.21 65.62 9.45 0 22.36 18.91 22.27 37.81-.09 18.91-16.71 37.82-37.82 37.82z"], + "thumbs-up": [512, 512, [], "f164", "M466.27 286.69C475.04 271.84 480 256 480 236.85c0-44.015-37.218-85.58-85.82-85.58H357.7c4.92-12.81 8.85-28.13 8.85-46.54C366.55 31.936 328.86 0 271.28 0c-61.607 0-58.093 94.933-71.76 108.6-22.747 22.747-49.615 66.447-68.76 83.4H32c-17.673 0-32 14.327-32 32v240c0 17.673 14.327 32 32 32h64c14.893 0 27.408-10.174 30.978-23.95 44.509 1.001 75.06 39.94 177.802 39.94 7.22 0 15.22.01 22.22.01 77.117 0 111.986-39.423 112.94-95.33 13.319-18.425 20.299-43.122 17.34-66.99 9.854-18.452 13.664-40.343 8.99-62.99zm-61.75 53.83c12.56 21.13 1.26 49.41-13.94 57.57 7.7 48.78-17.608 65.9-53.12 65.9h-37.82c-71.639 0-118.029-37.82-171.64-37.82V240h10.92c28.36 0 67.98-70.89 94.54-97.46 28.36-28.36 18.91-75.63 37.82-94.54 47.27 0 47.27 32.98 47.27 56.73 0 39.17-28.36 56.72-28.36 94.54h103.99c21.11 0 37.73 18.91 37.82 37.82.09 18.9-12.82 37.81-22.27 37.81 13.489 14.555 16.371 45.236-5.21 65.62zM88 432c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"], + "times-circle": [512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm101.8-262.2L295.6 256l62.2 62.2c4.7 4.7 4.7 12.3 0 17l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L256 295.6l-62.2 62.2c-4.7 4.7-12.3 4.7-17 0l-22.6-22.6c-4.7-4.7-4.7-12.3 0-17l62.2-62.2-62.2-62.2c-4.7-4.7-4.7-12.3 0-17l22.6-22.6c4.7-4.7 12.3-4.7 17 0l62.2 62.2 62.2-62.2c4.7-4.7 12.3-4.7 17 0l22.6 22.6c4.7 4.7 4.7 12.3 0 17z"], + "tired": [496, 512, [], "f5c8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm129.1-303.8c-3.8-4.4-10.3-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.8 1.6 15.3-2.5 3.8-4.5 3.9-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zM220 208c0-4.2-2.2-8.1-5.8-10.3l-80-48c-5-3-11.5-1.9-15.3 2.5-3.8 4.5-3.9 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.5 4.1 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3zm28 64c-45.4 0-100.9 38.3-107.8 93.3-1.5 11.8 6.9 21.6 15.5 17.9C178.4 373.5 212 368 248 368s69.6 5.5 92.3 15.2c8.5 3.7 17-6 15.5-17.9-6.9-55-62.4-93.3-107.8-93.3z"], + "trash-alt": [448, 512, [], "f2ed", "M192 188v216c0 6.627-5.373 12-12 12h-24c-6.627 0-12-5.373-12-12V188c0-6.627 5.373-12 12-12h24c6.627 0 12 5.373 12 12zm100-12h-24c-6.627 0-12 5.373-12 12v216c0 6.627 5.373 12 12 12h24c6.627 0 12-5.373 12-12V188c0-6.627-5.373-12-12-12zm132-96c13.255 0 24 10.745 24 24v12c0 6.627-5.373 12-12 12h-20v336c0 26.51-21.49 48-48 48H80c-26.51 0-48-21.49-48-48V128H12c-6.627 0-12-5.373-12-12v-12c0-13.255 10.745-24 24-24h74.411l34.018-56.696A48 48 0 0 1 173.589 0h100.823a48 48 0 0 1 41.16 23.304L349.589 80H424zm-269.611 0h139.223L276.16 50.913A6 6 0 0 0 271.015 48h-94.028a6 6 0 0 0-5.145 2.913L154.389 80zM368 128H80v330a6 6 0 0 0 6 6h276a6 6 0 0 0 6-6V128z"], + "user": [448, 512, [], "f007", "M313.6 304c-28.7 0-42.5 16-89.6 16-47.1 0-60.8-16-89.6-16C60.2 304 0 364.2 0 438.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-25.6c0-74.2-60.2-134.4-134.4-134.4zM400 464H48v-25.6c0-47.6 38.8-86.4 86.4-86.4 14.6 0 38.3 16 89.6 16 51.7 0 74.9-16 89.6-16 47.6 0 86.4 38.8 86.4 86.4V464zM224 288c79.5 0 144-64.5 144-144S303.5 0 224 0 80 64.5 80 144s64.5 144 144 144zm0-240c52.9 0 96 43.1 96 96s-43.1 96-96 96-96-43.1-96-96 43.1-96 96-96z"], + "user-circle": [496, 512, [], "f2bd", "M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z"], + "window-close": [512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v340zM356.5 194.6L295.1 256l61.4 61.4c4.6 4.6 4.6 12.1 0 16.8l-22.3 22.3c-4.6 4.6-12.1 4.6-16.8 0L256 295.1l-61.4 61.4c-4.6 4.6-12.1 4.6-16.8 0l-22.3-22.3c-4.6-4.6-4.6-12.1 0-16.8l61.4-61.4-61.4-61.4c-4.6-4.6-4.6-12.1 0-16.8l22.3-22.3c4.6-4.6 12.1-4.6 16.8 0l61.4 61.4 61.4-61.4c4.6-4.6 12.1-4.6 16.8 0l22.3 22.3c4.7 4.6 4.7 12.1 0 16.8z"], + "window-maximize": [512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V192h416v234z"], + "window-minimize": [512, 512, [], "f2d1", "M480 480H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h448c17.7 0 32 14.3 32 32s-14.3 32-32 32z"], + "window-restore": [512, 512, [], "f2d2", "M464 0H144c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-96 464H48V256h320v208zm96-96h-48V144c0-26.5-21.5-48-48-48H144V48h320v320z"] +}; + +bunker(function () { + define('far', icons); +}); + +}()); +(function () { +'use strict'; + +var _WINDOW = {}; +try { + if (typeof window !== 'undefined') _WINDOW = window; + +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; + + + + + +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; + + + + + + + + + +var PRODUCTION = function () { + try { + return undefined === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + + + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var icons = { + "address-book": [448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"], + "address-card": [576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-352 96c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H86.4C74 384 64 375.4 64 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2zM512 312c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z"], + "adjust": [512, 512, [], "f042", "M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z"], + "align-center": [448, 512, [], "f037", "M352 44v40c0 8.837-7.163 16-16 16H112c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h224c8.837 0 16 7.163 16 16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm320-200H112c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z"], + "align-justify": [448, 512, [], "f039", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm16 144h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0-128h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"], + "align-left": [448, 512, [], "f036", "M288 44v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16zM0 172v40c0 8.837 7.163 16 16 16h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16zm16 312h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm256-200H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z"], + "align-right": [448, 512, [], "f038", "M160 84V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H176c-8.837 0-16-7.163-16-16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"], + "allergies": [448, 512, [], "f461", "M416 112c-17.6 0-32 14.4-32 32v72c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v152c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V32c0-17.6-14.4-32-32-32s-32 14.4-32 32v184c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32S96 46.4 96 64v241l-23.6-32.5c-13-17.9-38-21.8-55.9-8.8s-21.8 38-8.8 55.9l125.6 172.7c9 12.4 23.5 19.8 38.8 19.8h197.6c22.3 0 41.6-15.3 46.7-37l26.5-112.7c3.2-13.7 4.9-28.3 5.1-42.3V144c0-17.6-14.4-32-32-32zM176 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 32c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32-128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"], + "ambulance": [640, 512, [], "f0f9", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm144-248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm176 248c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"], + "american-sign-language-interpreting": [640, 512, [], "f2a3", "M290.547 189.039c-20.295-10.149-44.147-11.199-64.739-3.89 42.606 0 71.208 20.475 85.578 50.576 8.576 17.899-5.148 38.071-23.617 38.071 18.429 0 32.211 20.136 23.617 38.071-14.725 30.846-46.123 50.854-80.298 50.854-.557 0-94.471-8.615-94.471-8.615l-66.406 33.347c-9.384 4.693-19.815.379-23.895-7.781L1.86 290.747c-4.167-8.615-1.111-18.897 6.946-23.621l58.072-33.069L108 159.861c6.39-57.245 34.731-109.767 79.743-146.726 11.391-9.448 28.341-7.781 37.51 3.613 9.446 11.394 7.78 28.067-3.612 37.516-12.503 10.559-23.618 22.509-32.509 35.57 21.672-14.729 46.679-24.732 74.186-28.067 14.725-1.945 28.063 8.336 29.73 23.065 1.945 14.728-8.336 28.067-23.062 29.734-16.116 1.945-31.12 7.503-44.178 15.284 26.114-5.713 58.712-3.138 88.079 11.115 13.336 6.669 18.893 22.509 12.224 35.848-6.389 13.06-22.504 18.617-35.564 12.226zm-27.229 69.472c-6.112-12.505-18.338-20.286-32.231-20.286a35.46 35.46 0 0 0-35.565 35.57c0 21.428 17.808 35.57 35.565 35.57 13.893 0 26.119-7.781 32.231-20.286 4.446-9.449 13.614-15.006 23.339-15.284-9.725-.277-18.893-5.835-23.339-15.284zm374.821-37.237c4.168 8.615 1.111 18.897-6.946 23.621l-58.071 33.069L532 352.16c-6.39 57.245-34.731 109.767-79.743 146.726-10.932 9.112-27.799 8.144-37.51-3.613-9.446-11.394-7.78-28.067 3.613-37.516 12.503-10.559 23.617-22.509 32.508-35.57-21.672 14.729-46.679 24.732-74.186 28.067-10.021 2.506-27.552-5.643-29.73-23.065-1.945-14.728 8.336-28.067 23.062-29.734 16.116-1.946 31.12-7.503 44.178-15.284-26.114 5.713-58.712 3.138-88.079-11.115-13.336-6.669-18.893-22.509-12.224-35.848 6.389-13.061 22.505-18.619 35.565-12.227 20.295 10.149 44.147 11.199 64.739 3.89-42.606 0-71.208-20.475-85.578-50.576-8.576-17.899 5.148-38.071 23.617-38.071-18.429 0-32.211-20.136-23.617-38.071 14.033-29.396 44.039-50.887 81.966-50.854l92.803 8.615 66.406-33.347c9.408-4.704 19.828-.354 23.894 7.781l44.455 88.926zm-229.227-18.618c-13.893 0-26.119 7.781-32.231 20.286-4.446 9.449-13.614 15.006-23.339 15.284 9.725.278 18.893 5.836 23.339 15.284 6.112 12.505 18.338 20.286 32.231 20.286a35.46 35.46 0 0 0 35.565-35.57c0-21.429-17.808-35.57-35.565-35.57z"], + "anchor": [576, 512, [], "f13d", "M12.971 352h32.394C67.172 454.735 181.944 512 288 512c106.229 0 220.853-57.38 242.635-160h32.394c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0l-67.029 67.029c-7.56 7.56-2.206 20.485 8.485 20.485h35.146c-20.29 54.317-84.963 86.588-144.117 94.015V256h52c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-52v-5.47c37.281-13.178 63.995-48.725 64-90.518C384.005 43.772 341.605.738 289.37.01 235.723-.739 192 42.525 192 96c0 41.798 26.716 77.35 64 90.53V192h-52c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v190.015c-58.936-7.399-123.82-39.679-144.117-94.015h35.146c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0L4.485 331.515C-3.074 339.074 2.28 352 12.971 352zM288 64c17.645 0 32 14.355 32 32s-14.355 32-32 32-32-14.355-32-32 14.355-32 32-32z"], + "angle-double-down": [320, 512, [], "f103", "M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z"], + "angle-double-left": [448, 512, [], "f100", "M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z"], + "angle-double-right": [448, 512, [], "f101", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z"], + "angle-double-up": [320, 512, [], "f102", "M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z"], + "angle-down": [320, 512, [], "f107", "M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"], + "angle-left": [256, 512, [], "f104", "M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"], + "angle-right": [256, 512, [], "f105", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"], + "angle-up": [320, 512, [], "f106", "M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z"], + "angry": [496, 512, [], "f556", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 240c0-9.3 4.1-17.5 10.5-23.4l-31-9.3c-8.5-2.5-13.3-11.5-10.7-19.9 2.5-8.5 11.4-13.2 19.9-10.7l80 24c8.5 2.5 13.3 11.5 10.7 19.9-2.1 6.9-8.4 11.4-15.3 11.4-.5 0-1.1-.2-1.7-.2.7 2.7 1.7 5.3 1.7 8.2 0 17.7-14.3 32-32 32S136 257.7 136 240zm168 154.2c-27.8-33.4-84.2-33.4-112.1 0-13.5 16.3-38.2-4.2-24.6-20.5 20-24 49.4-37.8 80.6-37.8s60.6 13.8 80.6 37.8c13.8 16.5-11.1 36.6-24.5 20.5zm76.6-186.9l-31 9.3c6.3 5.8 10.5 14.1 10.5 23.4 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-2.9.9-5.6 1.7-8.2-.6.1-1.1.2-1.7.2-6.9 0-13.2-4.5-15.3-11.4-2.5-8.5 2.3-17.4 10.7-19.9l80-24c8.4-2.5 17.4 2.3 19.9 10.7 2.5 8.5-2.3 17.4-10.8 19.9z"], + "archive": [512, 512, [], "f187", "M32 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160H32v288zm160-212c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v8c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-8zM480 32H32C14.3 32 0 46.3 0 64v48c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16V64c0-17.7-14.3-32-32-32z"], + "archway": [576, 512, [], "f557", "M560 448h-16V96H32v352H16.02c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16H176c8.84 0 16-7.16 16-16V320c0-53.02 42.98-96 96-96s96 42.98 96 96l.02 160v16c0 8.84 7.16 16 16 16H560c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm0-448H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h544c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16z"], + "arrow-alt-circle-down": [512, 512, [], "f358", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM212 140v116h-70.9c-10.7 0-16.1 13-8.5 20.5l114.9 114.3c4.7 4.7 12.2 4.7 16.9 0l114.9-114.3c7.6-7.6 2.2-20.5-8.5-20.5H300V140c0-6.6-5.4-12-12-12h-64c-6.6 0-12 5.4-12 12z"], + "arrow-alt-circle-left": [512, 512, [], "f359", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z"], + "arrow-alt-circle-right": [512, 512, [], "f35a", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z"], + "arrow-alt-circle-up": [512, 512, [], "f35b", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm292 116V256h70.9c10.7 0 16.1-13 8.5-20.5L264.5 121.2c-4.7-4.7-12.2-4.7-16.9 0l-115 114.3c-7.6 7.6-2.2 20.5 8.5 20.5H212v116c0 6.6 5.4 12 12 12h64c6.6 0 12-5.4 12-12z"], + "arrow-circle-down": [512, 512, [], "f0ab", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-143.6-28.9L288 302.6V120c0-13.3-10.7-24-24-24h-16c-13.3 0-24 10.7-24 24v182.6l-72.4-75.5c-9.3-9.7-24.8-9.9-34.3-.4l-10.9 11c-9.4 9.4-9.4 24.6 0 33.9L239 404.3c9.4 9.4 24.6 9.4 33.9 0l132.7-132.7c9.4-9.4 9.4-24.6 0-33.9l-10.9-11c-9.5-9.5-25-9.3-34.3.4z"], + "arrow-circle-left": [512, 512, [], "f0a8", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm28.9-143.6L209.4 288H392c13.3 0 24-10.7 24-24v-16c0-13.3-10.7-24-24-24H209.4l75.5-72.4c9.7-9.3 9.9-24.8.4-34.3l-11-10.9c-9.4-9.4-24.6-9.4-33.9 0L107.7 239c-9.4 9.4-9.4 24.6 0 33.9l132.7 132.7c9.4 9.4 24.6 9.4 33.9 0l11-10.9c9.5-9.5 9.3-25-.4-34.3z"], + "arrow-circle-right": [512, 512, [], "f0a9", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28.9 143.6l75.5 72.4H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h182.6l-75.5 72.4c-9.7 9.3-9.9 24.8-.4 34.3l11 10.9c9.4 9.4 24.6 9.4 33.9 0L404.3 273c9.4-9.4 9.4-24.6 0-33.9L271.6 106.3c-9.4-9.4-24.6-9.4-33.9 0l-11 10.9c-9.5 9.6-9.3 25.1.4 34.4z"], + "arrow-circle-up": [512, 512, [], "f0aa", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z"], + "arrow-down": [448, 512, [], "f063", "M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z"], + "arrow-left": [448, 512, [], "f060", "M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z"], + "arrow-right": [448, 512, [], "f061", "M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z"], + "arrow-up": [448, 512, [], "f062", "M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z"], + "arrows-alt": [512, 512, [], "f0b2", "M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z"], + "arrows-alt-h": [512, 512, [], "f337", "M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z"], + "arrows-alt-v": [256, 512, [], "f338", "M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z"], + "assistive-listening-systems": [512, 512, [], "f2a2", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z"], + "asterisk": [512, 512, [], "f069", "M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z"], + "at": [512, 512, [], "f1fa", "M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z"], + "atlas": [448, 512, [], "f558", "M318.38 208h-39.09c-1.49 27.03-6.54 51.35-14.21 70.41 27.71-13.24 48.02-39.19 53.3-70.41zm0-32c-5.29-31.22-25.59-57.17-53.3-70.41 7.68 19.06 12.72 43.38 14.21 70.41h39.09zM224 97.31c-7.69 7.45-20.77 34.42-23.43 78.69h46.87c-2.67-44.26-15.75-71.24-23.44-78.69zm-41.08 8.28c-27.71 13.24-48.02 39.19-53.3 70.41h39.09c1.49-27.03 6.53-51.35 14.21-70.41zm0 172.82c-7.68-19.06-12.72-43.38-14.21-70.41h-39.09c5.28 31.22 25.59 57.17 53.3 70.41zM247.43 208h-46.87c2.66 44.26 15.74 71.24 23.43 78.69 7.7-7.45 20.78-34.43 23.44-78.69zM448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM224 64c70.69 0 128 57.31 128 128s-57.31 128-128 128S96 262.69 96 192 153.31 64 224 64zm160 384H96c-19.2 0-32-12.8-32-32s16-32 32-32h288v64z"], + "audio-description": [512, 512, [], "f29e", "M162.925 238.709l8.822 30.655h-25.606l9.041-30.652c1.277-4.421 2.651-9.994 3.872-15.245 1.22 5.251 2.594 10.823 3.871 15.242zm166.474-32.099h-14.523v98.781h14.523c29.776 0 46.175-17.678 46.175-49.776 0-32.239-17.49-49.005-46.175-49.005zM512 112v288c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48zM245.459 336.139l-57.097-168A12.001 12.001 0 0 0 177 160h-35.894a12.001 12.001 0 0 0-11.362 8.139l-57.097 168C70.003 343.922 75.789 352 84.009 352h29.133a12 12 0 0 0 11.535-8.693l8.574-29.906h51.367l8.793 29.977A12 12 0 0 0 204.926 352h29.172c8.22 0 14.006-8.078 11.361-15.861zm184.701-80.525c0-58.977-37.919-95.614-98.96-95.614h-57.366c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12H331.2c61.041 0 98.96-36.933 98.96-96.386z"], + "award": [384, 512, [], "f559", "M97.12 362.63l-5.3-5.3a9.004 9.004 0 0 0-4.02-2.32L72 350.77c-9.51-2.55-17.87-7.45-25.43-13.32L1.2 448.7c-4.39 10.77 3.81 22.47 15.43 22.03l52.69-2.01L105.56 507c8 8.44 22.04 5.81 26.43-4.96l52.05-127.62c-10.84 6.04-22.87 9.58-35.31 9.58-19.5 0-37.82-7.59-51.61-21.37zM382.8 448.7l-45.37-111.24c-7.56 5.88-15.92 10.77-25.43 13.32l-15.8 4.23a9.004 9.004 0 0 0-4.02 2.32l-5.3 5.3C273.09 376.41 254.76 384 235.26 384c-12.44 0-24.47-3.55-35.31-9.58L252 502.04c4.39 10.77 18.44 13.4 26.43 4.96l36.25-38.28 52.69 2.01c11.62.44 19.82-11.27 15.43-22.03zM263 340l5.21-5.3c5-5.09 11.22-8.75 18.05-10.61l15.53-4.23c13.89-3.79 24.75-14.84 28.47-28.98l4.16-15.81a41.145 41.145 0 0 1 10.42-18.37l11.37-11.57c10.17-10.35 14.14-25.44 10.42-39.58l-4.16-15.81a41.657 41.657 0 0 1 0-21.21l4.16-15.81c3.72-14.14-.25-29.23-10.42-39.58l-11.37-11.57c-5-5.09-8.59-11.42-10.42-18.37l-4.16-15.8c-3.72-14.14-14.58-25.19-28.47-28.98l-15.53-4.24c-6.83-1.86-13.05-5.52-18.05-10.61L256.84 12c-10.17-10.35-25-14.4-38.89-10.61l-15.53 4.24a39.614 39.614 0 0 1-20.84 0L166.05 1.4c-13.89-3.79-28.72.25-38.89 10.61l-11.37 11.57c-5 5.09-11.22 8.74-18.05 10.61l-15.53 4.24c-13.89 3.79-24.75 14.84-28.47 28.98l-4.16 15.8a41.145 41.145 0 0 1-10.42 18.37l-11.37 11.57c-10.17 10.35-14.15 25.44-10.42 39.58l4.16 15.8a41.657 41.657 0 0 1 0 21.21l-4.16 15.8c-3.72 14.14.25 29.23 10.42 39.59l11.37 11.57c5 5.09 8.59 11.42 10.42 18.37l4.16 15.8c3.72 14.14 14.58 25.19 28.47 28.98l15.53 4.23c6.83 1.86 13.05 5.52 18.05 10.61L121 340c13.23 13.47 33.84 15.88 49.74 5.82a39.676 39.676 0 0 1 42.53 0c15.89 10.06 36.5 7.65 49.73-5.82zM97.66 175.96c0-53.03 42.24-96.02 94.34-96.02s94.34 42.99 94.34 96.02-42.24 96.02-94.34 96.02-94.34-42.99-94.34-96.02z"], + "backspace": [640, 512, [], "f55a", "M576 64H205.26A63.97 63.97 0 0 0 160 82.75L9.37 233.37c-12.5 12.5-12.5 32.76 0 45.25L160 429.25c12 12 28.28 18.75 45.25 18.75H576c35.35 0 64-28.65 64-64V128c0-35.35-28.65-64-64-64zm-84.69 254.06c6.25 6.25 6.25 16.38 0 22.63l-22.62 22.62c-6.25 6.25-16.38 6.25-22.63 0L384 301.25l-62.06 62.06c-6.25 6.25-16.38 6.25-22.63 0l-22.62-22.62c-6.25-6.25-6.25-16.38 0-22.63L338.75 256l-62.06-62.06c-6.25-6.25-6.25-16.38 0-22.63l22.62-22.62c6.25-6.25 16.38-6.25 22.63 0L384 210.75l62.06-62.06c6.25-6.25 16.38-6.25 22.63 0l22.62 22.62c6.25 6.25 6.25 16.38 0 22.63L429.25 256l62.06 62.06z"], + "backward": [512, 512, [], "f04a", "M11.5 280.6l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2zm256 0l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2z"], + "balance-scale": [640, 512, [], "f24e", "M256 336h-.02c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0C-2.06 328.75.02 320.33.02 336H0c0 44.18 57.31 80 128 80s128-35.82 128-80zM128 176l72 144H56l72-144zm511.98 160c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 320l72-144 72 144H440zm88 128H352V153.25c23.51-10.29 41.16-31.48 46.39-57.25H528c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H383.64C369.04 12.68 346.09 0 320 0s-49.04 12.68-63.64 32H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h129.61c5.23 25.76 22.87 46.96 46.39 57.25V448H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"], + "ban": [512, 512, [], "f05e", "M256 8C119.034 8 8 119.033 8 256s111.034 248 248 248 248-111.034 248-248S392.967 8 256 8zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676zM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676z"], + "band-aid": [640, 512, [], "f462", "M0 160v192c0 35.3 28.7 64 64 64h96V96H64c-35.3 0-64 28.7-64 64zm576-64h-96v320h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64zM192 416h256V96H192v320zm176-232c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24z"], + "barcode": [512, 512, [], "f02a", "M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z"], + "bars": [448, 512, [], "f0c9", "M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"], + "baseball-ball": [496, 512, [], "f433", "M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z"], + "basketball-ball": [496, 512, [], "f434", "M212.3 10.3c-43.8 6.3-86.2 24.1-122.2 53.8l77.4 77.4c27.8-35.8 43.3-81.2 44.8-131.2zM248 222L405.9 64.1c-42.4-35-93.6-53.5-145.5-56.1-1.2 63.9-21.5 122.3-58.7 167.7L248 222zM56.1 98.1c-29.7 36-47.5 78.4-53.8 122.2 50-1.5 95.5-17 131.2-44.8L56.1 98.1zm272.2 204.2c45.3-37.1 103.7-57.4 167.7-58.7-2.6-51.9-21.1-103.1-56.1-145.5L282 256l46.3 46.3zM248 290L90.1 447.9c42.4 34.9 93.6 53.5 145.5 56.1 1.3-64 21.6-122.4 58.7-167.7L248 290zm191.9 123.9c29.7-36 47.5-78.4 53.8-122.2-50.1 1.6-95.5 17.1-131.2 44.8l77.4 77.4zM167.7 209.7C122.3 246.9 63.9 267.3 0 268.4c2.6 51.9 21.1 103.1 56.1 145.5L214 256l-46.3-46.3zm116 292c43.8-6.3 86.2-24.1 122.2-53.8l-77.4-77.4c-27.7 35.7-43.2 81.2-44.8 131.2z"], + "bath": [512, 512, [], "f2cd", "M488 256H80V112c0-17.645 14.355-32 32-32 11.351 0 21.332 5.945 27.015 14.88-16.492 25.207-14.687 59.576 6.838 83.035-4.176 4.713-4.021 11.916.491 16.428l11.314 11.314c4.686 4.686 12.284 4.686 16.971 0l95.03-95.029c4.686-4.686 4.686-12.284 0-16.971l-11.314-11.314c-4.512-4.512-11.715-4.666-16.428-.491-17.949-16.469-42.294-21.429-64.178-15.365C163.281 45.667 139.212 32 112 32c-44.112 0-80 35.888-80 80v144h-8c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h8v32c0 28.43 12.362 53.969 32 71.547V456c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-8h256v8c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-32.453c19.638-17.578 32-43.117 32-71.547v-32h8c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z"], + "battery-empty": [640, 512, [], "f244", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48z"], + "battery-full": [640, 512, [], "f240", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-48 96H96v128h416V192z"], + "battery-half": [640, 512, [], "f242", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-240 96H96v128h224V192z"], + "battery-quarter": [640, 512, [], "f243", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-336 96H96v128h128V192z"], + "battery-three-quarters": [640, 512, [], "f241", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-144 96H96v128h320V192z"], + "bed": [640, 512, [], "f236", "M176 256c44.11 0 80-35.89 80-80s-35.89-80-80-80-80 35.89-80 80 35.89 80 80 80zm352-128H304c-8.84 0-16 7.16-16 16v144H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v352c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h512v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V240c0-61.86-50.14-112-112-112z"], + "beer": [448, 512, [], "f0fc", "M368 96h-48V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24v-42.11l80.606-35.977C429.396 365.063 448 336.388 448 304.86V176c0-44.112-35.888-80-80-80zm16 208.86a16.018 16.018 0 0 1-9.479 14.611L320 343.805V160h48c8.822 0 16 7.178 16 16v128.86zM208 384c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16zm-96 0c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16z"], + "bell": [448, 512, [], "f0f3", "M433.884 366.059C411.634 343.809 384 316.118 384 208c0-79.394-57.831-145.269-133.663-157.83A31.845 31.845 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 6.75 2.095 13.008 5.663 18.17C121.831 62.731 64 128.606 64 208c0 108.118-27.643 135.809-49.893 158.059C-16.042 396.208 5.325 448 48.048 448H160c0 35.346 28.654 64 64 64s64-28.654 64-64h111.943c42.638 0 64.151-51.731 33.941-81.941zM224 472a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16c0 13.234 10.766 24 24 24z"], + "bell-slash": [576, 512, [], "f1f6", "M78.107 366.059C47.958 396.208 69.325 448 112.048 448H224c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h32.685L127.848 221.379c-2.198 97.078-28.439 123.378-49.741 144.68zM264 448c0 13.234 10.766 24 24 24a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16zm305.896 43.733l-10.762 12.086c-8.915 10.012-24.333 10.967-34.437 2.133L8.256 54.393C-1.848 45.558-2.811 30.28 6.104 20.267L16.865 8.181C25.781-1.831 41.199-2.786 51.303 6.049l113.81 99.512c24.017-28.778 57.946-48.996 96.55-55.39A31.85 31.85 0 0 1 256 32c0-17.673 14.327-32 32-32s32 14.327 32 32c0 6.75-2.095 13.008-5.663 18.17C390.169 62.731 448 128.606 448 208c0 108.118 27.634 135.809 49.884 158.059 12.149 12.149 15.923 27.776 13.33 42.121l56.53 49.427c10.104 8.835 11.067 24.113 2.152 34.126z"], + "bezier-curve": [640, 512, [], "f55b", "M368 32h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM208 88h-84.75C113.75 64.56 90.84 48 64 48 28.66 48 0 76.65 0 112s28.66 64 64 64c26.84 0 49.75-16.56 59.25-40h79.73c-55.37 32.52-95.86 87.32-109.54 152h49.4c11.3-41.61 36.77-77.21 71.04-101.56-3.7-8.08-5.88-16.99-5.88-26.44V88zm-48 232H64c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zM576 48c-26.84 0-49.75 16.56-59.25 40H432v72c0 9.45-2.19 18.36-5.88 26.44 34.27 24.35 59.74 59.95 71.04 101.56h49.4c-13.68-64.68-54.17-119.48-109.54-152h79.73c9.5 23.44 32.41 40 59.25 40 35.34 0 64-28.65 64-64s-28.66-64-64-64zm0 272h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"], + "bicycle": [640, 512, [], "f206", "M512.509 192.001c-16.373-.064-32.03 2.955-46.436 8.495l-77.68-125.153A24 24 0 0 0 368.001 64h-64c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h50.649l14.896 24H256.002v-16c0-8.837-7.163-16-16-16h-87.459c-13.441 0-24.777 10.999-24.536 24.437.232 13.044 10.876 23.563 23.995 23.563h48.726l-29.417 47.52c-13.433-4.83-27.904-7.483-42.992-7.52C58.094 191.83.412 249.012.002 319.236-.413 390.279 57.055 448 128.002 448c59.642 0 109.758-40.793 123.967-96h52.033a24 24 0 0 0 20.406-11.367L410.37 201.77l14.938 24.067c-25.455 23.448-41.385 57.081-41.307 94.437.145 68.833 57.899 127.051 126.729 127.719 70.606.685 128.181-55.803 129.255-125.996 1.086-70.941-56.526-129.72-127.476-129.996zM186.75 265.772c9.727 10.529 16.673 23.661 19.642 38.228h-43.306l23.664-38.228zM128.002 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c5.869 0 11.586.653 17.099 1.859l-45.505 73.509C89.715 331.327 101.213 352 120.002 352h81.3c-12.37 28.225-40.562 48-73.3 48zm162.63-96h-35.624c-3.96-31.756-19.556-59.894-42.383-80.026L237.371 184h127.547l-74.286 120zm217.057 95.886c-41.036-2.165-74.049-35.692-75.627-76.755-.812-21.121 6.633-40.518 19.335-55.263l44.433 71.586c4.66 7.508 14.524 9.816 22.032 5.156l13.594-8.437c7.508-4.66 9.817-14.524 5.156-22.032l-44.468-71.643a79.901 79.901 0 0 1 19.858-2.497c44.112 0 80 35.888 80 80-.001 45.54-38.252 82.316-84.313 79.885z"], + "binoculars": [512, 512, [], "f1e5", "M192 104H96V56c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24v48zm224-48c0-13.255-10.745-24-24-24h-48c-13.255 0-24 10.745-24 24v48h96V56zM0 456c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H0v16zm88-328c-13.255 0-24 10.745-24 24C64 256 0 272 0 416h168V312c0-13.255 10.745-24 24-24V128H88zm256 328c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H344v16zM216 128v160h80V128h-80zm128 288h168c0-144-64-160-64-264 0-13.255-10.745-24-24-24H320v160c13.255 0 24 10.745 24 24v104z"], + "birthday-cake": [448, 512, [], "f1fd", "M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z"], + "blender": [512, 512, [], "f517", "M416 384H160c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-128 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm40-416h166.54L512 0H48C21.49 0 0 21.49 0 48v160c0 26.51 21.49 48 48 48h103.27l8.73 96h256l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H328c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM64 192V64h69.82l11.64 128H64z"], + "blind": [384, 512, [], "f29d", "M380.15 510.837a8 8 0 0 1-10.989-2.687l-125.33-206.427a31.923 31.923 0 0 0 12.958-9.485l126.048 207.608a8 8 0 0 1-2.687 10.991zM142.803 314.338l-32.54 89.485 36.12 88.285c6.693 16.36 25.377 24.192 41.733 17.501 16.357-6.692 24.193-25.376 17.501-41.734l-62.814-153.537zM96 88c24.301 0 44-19.699 44-44S120.301 0 96 0 52 19.699 52 44s19.699 44 44 44zm154.837 169.128l-120-152c-4.733-5.995-11.75-9.108-18.837-9.112V96H80v.026c-7.146.003-14.217 3.161-18.944 9.24L0 183.766v95.694c0 13.455 11.011 24.791 24.464 24.536C37.505 303.748 48 293.1 48 280v-79.766l16-20.571v140.698L9.927 469.055c-6.04 16.609 2.528 34.969 19.138 41.009 16.602 6.039 34.968-2.524 41.009-19.138L136 309.638V202.441l-31.406-39.816a4 4 0 1 1 6.269-4.971l102.3 129.217c9.145 11.584 24.368 11.339 33.708 3.965 10.41-8.216 12.159-23.334 3.966-33.708z"], + "bold": [384, 512, [], "f032", "M304.793 243.891c33.639-18.537 53.657-54.16 53.657-95.693 0-48.236-26.25-87.626-68.626-104.179C265.138 34.01 240.849 32 209.661 32H24c-8.837 0-16 7.163-16 16v33.049c0 8.837 7.163 16 16 16h33.113v318.53H24c-8.837 0-16 7.163-16 16V464c0 8.837 7.163 16 16 16h195.69c24.203 0 44.834-1.289 66.866-7.584C337.52 457.193 376 410.647 376 350.014c0-52.168-26.573-91.684-71.207-106.123zM142.217 100.809h67.444c16.294 0 27.536 2.019 37.525 6.717 15.828 8.479 24.906 26.502 24.906 49.446 0 35.029-20.32 56.79-53.029 56.79h-76.846V100.809zm112.642 305.475c-10.14 4.056-22.677 4.907-31.409 4.907h-81.233V281.943h84.367c39.645 0 63.057 25.38 63.057 63.057.001 28.425-13.66 52.483-34.782 61.284z"], + "bolt": [320, 512, [], "f0e7", "M295.973 160H180.572L215.19 30.184C219.25 14.956 207.756 0 192 0H56C43.971 0 33.8 8.905 32.211 20.828l-31.996 240C-1.704 275.217 9.504 288 24.004 288h118.701L96.646 482.466C93.05 497.649 104.659 512 119.992 512c8.35 0 16.376-4.374 20.778-11.978l175.973-303.997c9.244-15.967-2.288-36.025-20.77-36.025z"], + "bomb": [512, 512, [], "f1e2", "M440.5 88.5l-52 52L415 167c9.4 9.4 9.4 24.6 0 33.9l-17.4 17.4c11.8 26.1 18.4 55.1 18.4 85.6 0 114.9-93.1 208-208 208S0 418.9 0 304 93.1 96 208 96c30.5 0 59.5 6.6 85.6 18.4L311 97c9.4-9.4 24.6-9.4 33.9 0l26.5 26.5 52-52 17.1 17zM500 60h-24c-6.6 0-12 5.4-12 12s5.4 12 12 12h24c6.6 0 12-5.4 12-12s-5.4-12-12-12zM440 0c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12s12-5.4 12-12V12c0-6.6-5.4-12-12-12zm33.9 55l17-17c4.7-4.7 4.7-12.3 0-17-4.7-4.7-12.3-4.7-17 0l-17 17c-4.7 4.7-4.7 12.3 0 17 4.8 4.7 12.4 4.7 17 0zm-67.8 0c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17zm67.8 34c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17zM112 272c0-35.3 28.7-64 64-64 8.8 0 16-7.2 16-16s-7.2-16-16-16c-52.9 0-96 43.1-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16z"], + "bong": [448, 512, [], "f55c", "M302.5 512c23.18 0 44.43-12.58 56-32.66C374.69 451.26 384 418.75 384 384c0-36.12-10.08-69.81-27.44-98.62L400 241.94l9.38 9.38c6.25 6.25 16.38 6.25 22.63 0l11.3-11.32c6.25-6.25 6.25-16.38 0-22.63l-52.69-52.69c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63l9.38 9.38-39.41 39.41c-11.56-11.37-24.53-21.33-38.65-29.51V63.74l15.97-.02c8.82-.01 15.97-7.16 15.98-15.98l.04-31.72C320 7.17 312.82-.01 303.97 0L80.03.26c-8.82.01-15.97 7.16-15.98 15.98l-.04 31.73c-.01 8.85 7.17 16.02 16.02 16.01L96 63.96v153.93C38.67 251.1 0 312.97 0 384c0 34.75 9.31 67.27 25.5 95.34C37.08 499.42 58.33 512 81.5 512h221zM120.06 259.43L144 245.56V63.91l96-.11v181.76l23.94 13.87c24.81 14.37 44.12 35.73 56.56 60.57h-257c12.45-24.84 31.75-46.2 56.56-60.57z"], + "book": [448, 512, [], "f02d", "M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z"], + "book-open": [576, 512, [], "f518", "M542.22 32.05c-54.8 3.11-163.72 14.43-230.96 55.59-4.64 2.84-7.27 7.89-7.27 13.17v363.87c0 11.55 12.63 18.85 23.28 13.49 69.18-34.82 169.23-44.32 218.7-46.92 16.89-.89 30.02-14.43 30.02-30.66V62.75c.01-17.71-15.35-31.74-33.77-30.7zM264.73 87.64C197.5 46.48 88.58 35.17 33.78 32.05 15.36 31.01 0 45.04 0 62.75V400.6c0 16.24 13.13 29.78 30.02 30.66 49.49 2.6 149.59 12.11 218.77 46.95 10.62 5.35 23.21-1.94 23.21-13.46V100.63c0-5.29-2.62-10.14-7.27-12.99z"], + "bookmark": [384, 512, [], "f02e", "M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z"], + "bowling-ball": [496, 512, [], "f436", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM120 192c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64-96c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm48 144c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "box": [512, 512, [], "f466", "M509.5 184.6L458.9 32.8C452.4 13.2 434.1 0 413.4 0H272v192h238.7c-.4-2.5-.4-5-1.2-7.4zM240 0H98.6c-20.7 0-39 13.2-45.5 32.8L2.5 184.6c-.8 2.4-.8 4.9-1.2 7.4H240V0zM0 224v240c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V224H0z"], + "box-open": [640, 512, [], "f49e", "M53.2 41L1.7 143.8c-4.6 9.2.3 20.2 10.1 23l197.9 56.5c7.1 2 14.7-1 18.5-7.3L320 64 69.8 32.1c-6.9-.8-13.5 2.7-16.6 8.9zm585.1 102.8L586.8 41c-3.1-6.2-9.8-9.8-16.7-8.9L320 64l91.7 152.1c3.8 6.3 11.4 9.3 18.5 7.3l197.9-56.5c9.9-2.9 14.7-13.9 10.2-23.1zM425.7 256c-16.9 0-32.8-9-41.4-23.4L320 126l-64.2 106.6c-8.7 14.5-24.6 23.5-41.5 23.5-4.5 0-9-.6-13.3-1.9L64 215v178c0 14.7 10 27.5 24.2 31l216.2 54.1c10.2 2.5 20.9 2.5 31 0L551.8 424c14.2-3.6 24.2-16.4 24.2-31V215l-137 39.1c-4.3 1.3-8.8 1.9-13.3 1.9z"], + "boxes": [576, 512, [], "f468", "M560 288h-80v96l-32-21.3-32 21.3v-96h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16zm-384-64h224c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16h-80v96l-32-21.3L256 96V0h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16zm64 64h-80v96l-32-21.3L96 384v-96H16c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16z"], + "braille": [640, 512, [], "f2a1", "M128 256c0 35.346-28.654 64-64 64S0 291.346 0 256s28.654-64 64-64 64 28.654 64 64zM64 384c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352C28.654 32 0 60.654 0 96s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm224 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-320c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"], + "briefcase": [512, 512, [], "f0b1", "M320 288h192v144c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V288h192v20c0 6.627 5.373 12 12 12h104c6.627 0 12-5.373 12-12v-20zm192-112v80H0v-80c0-26.51 21.49-48 48-48h80V80c0-26.51 21.49-48 48-48h160c26.51 0 48 21.49 48 48v48h80c26.51 0 48 21.49 48 48zM320 96H192v32h128V96z"], + "briefcase-medical": [512, 512, [], "f469", "M464 128h-80V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48zM192 96h128v32H192V96zm160 248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48z"], + "broadcast-tower": [640, 512, [], "f519", "M150.94 192h33.73c11.01 0 18.61-10.83 14.86-21.18-4.93-13.58-7.55-27.98-7.55-42.82s2.62-29.24 7.55-42.82C203.29 74.83 195.68 64 184.67 64h-33.73c-7.01 0-13.46 4.49-15.41 11.23C130.64 92.21 128 109.88 128 128c0 18.12 2.64 35.79 7.54 52.76 1.94 6.74 8.39 11.24 15.4 11.24zM89.92 23.34C95.56 12.72 87.97 0 75.96 0H40.63c-6.27 0-12.14 3.59-14.74 9.31C9.4 45.54 0 85.65 0 128c0 24.75 3.12 68.33 26.69 118.86 2.62 5.63 8.42 9.14 14.61 9.14h34.84c12.02 0 19.61-12.74 13.95-23.37-49.78-93.32-16.71-178.15-.17-209.29zM614.06 9.29C611.46 3.58 605.6 0 599.33 0h-35.42c-11.98 0-19.66 12.66-14.02 23.25 18.27 34.29 48.42 119.42.28 209.23-5.72 10.68 1.8 23.52 13.91 23.52h35.23c6.27 0 12.13-3.58 14.73-9.29C630.57 210.48 640 170.36 640 128s-9.42-82.48-25.94-118.71zM489.06 64h-33.73c-11.01 0-18.61 10.83-14.86 21.18 4.93 13.58 7.55 27.98 7.55 42.82s-2.62 29.24-7.55 42.82c-3.76 10.35 3.85 21.18 14.86 21.18h33.73c7.02 0 13.46-4.49 15.41-11.24 4.9-16.97 7.53-34.64 7.53-52.76 0-18.12-2.64-35.79-7.54-52.76-1.94-6.75-8.39-11.24-15.4-11.24zm-116.3 100.12c7.05-10.29 11.2-22.71 11.2-36.12 0-35.35-28.63-64-63.96-64-35.32 0-63.96 28.65-63.96 64 0 13.41 4.15 25.83 11.2 36.12l-130.5 313.41c-3.4 8.15.46 17.52 8.61 20.92l29.51 12.31c8.15 3.4 17.52-.46 20.91-8.61L244.96 384h150.07l49.2 118.15c3.4 8.16 12.76 12.01 20.91 8.61l29.51-12.31c8.15-3.4 12-12.77 8.61-20.92l-130.5-313.41zM271.62 320L320 203.81 368.38 320h-96.76z"], + "broom": [512, 512, [], "f51a", "M10.8 247.2C-.7 251.8-3.7 266.7 5 275.4l54.8 54.8 73.2-24.4-24.4 73.2 128 128c8.8 8.8 23.6 5.7 28.2-5.8l98.1-243.7-108.4-108.4-243.7 98.1zM507.3 27.3L484.7 4.7c-6.2-6.3-16.4-6.3-22.6 0L359.8 106.9l-40.4-40.4c-4.2-4.3-11.4-3-13.9 2.5l-27.2 58.6 106.1 106.1 58.6-27.2c5.4-2.5 6.7-9.7 2.5-13.9l-40.4-40.4L507.3 49.9c6.3-6.2 6.3-16.3 0-22.6z"], + "brush": [384, 512, [], "f55d", "M352 0H32C14.33 0 0 14.33 0 32v224h384V32c0-17.67-14.33-32-32-32zM0 320c0 35.35 28.66 64 64 64h64v64c0 35.35 28.66 64 64 64s64-28.65 64-64v-64h64c35.34 0 64-28.65 64-64v-32H0v32zm192 104c13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24s-24-10.75-24-24c0-13.26 10.75-24 24-24z"], + "bug": [512, 512, [], "f188", "M511.988 288.9c-.478 17.43-15.217 31.1-32.653 31.1H424v16c0 21.864-4.882 42.584-13.6 61.145l60.228 60.228c12.496 12.497 12.496 32.758 0 45.255-12.498 12.497-32.759 12.496-45.256 0l-54.736-54.736C345.886 467.965 314.351 480 280 480V236c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v244c-34.351 0-65.886-12.035-90.636-32.108l-54.736 54.736c-12.498 12.497-32.759 12.496-45.256 0-12.496-12.497-12.496-32.758 0-45.255l60.228-60.228C92.882 378.584 88 357.864 88 336v-16H32.666C15.23 320 .491 306.33.013 288.9-.484 270.816 14.028 256 32 256h56v-58.745l-46.628-46.628c-12.496-12.497-12.496-32.758 0-45.255 12.498-12.497 32.758-12.497 45.256 0L141.255 160h229.489l54.627-54.627c12.498-12.497 32.758-12.497 45.256 0 12.496 12.497 12.496 32.758 0 45.255L424 197.255V256h56c17.972 0 32.484 14.816 31.988 32.9zM257 0c-61.856 0-112 50.144-112 112h224C369 50.144 318.856 0 257 0z"], + "building": [448, 512, [], "f1ad", "M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z"], + "bullhorn": [576, 512, [], "f0a1", "M576 224c0-20.896-13.36-38.666-32-45.258V64c0-35.346-28.654-64-64-64-64.985 56-142.031 128-272 128H48c-26.51 0-48 21.49-48 48v96c0 26.51 21.49 48 48 48h43.263c-18.742 64.65 2.479 116.379 18.814 167.44 1.702 5.32 5.203 9.893 9.922 12.88 20.78 13.155 68.355 15.657 93.773 5.151 16.046-6.633 19.96-27.423 7.522-39.537-18.508-18.026-30.136-36.91-19.795-60.858a12.278 12.278 0 0 0-1.045-11.673c-16.309-24.679-3.581-62.107 28.517-72.752C346.403 327.887 418.591 395.081 480 448c35.346 0 64-28.654 64-64V269.258c18.64-6.592 32-24.362 32-45.258zm-96 139.855c-54.609-44.979-125.033-92.94-224-104.982v-69.747c98.967-12.042 169.391-60.002 224-104.982v279.711z"], + "bullseye": [512, 512, [], "f140", "M256 72c101.689 0 184 82.295 184 184 0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-101.689 82.295-184 184-184m0-64C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 184c35.29 0 64 28.71 64 64s-28.71 64-64 64-64-28.71-64-64 28.71-64 64-64m0-64c-70.692 0-128 57.308-128 128s57.308 128 128 128 128-57.308 128-128-57.308-128-128-128z"], + "burn": [384, 512, [], "f46a", "M192 0C79.7 101.3 0 220.9 0 300.5 0 425 79 512 192 512s192-87 192-211.5c0-79.9-80.2-199.6-192-300.5zm0 448c-56.5 0-96-39-96-94.8 0-13.5 4.6-61.5 96-161.2 91.4 99.7 96 147.7 96 161.2 0 55.8-39.5 94.8-96 94.8z"], + "bus": [512, 512, [], "f207", "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM112 400c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm16-112c-17.67 0-32-14.33-32-32V128c0-17.67 14.33-32 32-32h256c17.67 0 32 14.33 32 32v128c0 17.67-14.33 32-32 32H128zm272 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "bus-alt": [512, 512, [], "f55e", "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM160 72c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H168c-4.42 0-8-3.58-8-8V72zm-48 328c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm128-112H128c-17.67 0-32-14.33-32-32v-96c0-17.67 14.33-32 32-32h112v160zm32 0V128h112c17.67 0 32 14.33 32 32v96c0 17.67-14.33 32-32 32H272zm128 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "calculator": [448, 512, [], "f1ec", "M0 464V48C0 21.49 21.49 0 48 0h352c26.51 0 48 21.49 48 48v416c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm384-284V76c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v104c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12zM128 308v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm256 128V268c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-256 0v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm128-128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm0 128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"], + "calendar": [448, 512, [], "f133", "M12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm436-44v-36c0-26.5-21.5-48-48-48h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v36c0 6.6 5.4 12 12 12h424c6.6 0 12-5.4 12-12z"], + "calendar-alt": [448, 512, [], "f073", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm116 204c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40z"], + "calendar-check": [448, 512, [], "f274", "M436 160H12c-6.627 0-12-5.373-12-12v-36c0-26.51 21.49-48 48-48h48V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h128V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h48c26.51 0 48 21.49 48 48v36c0 6.627-5.373 12-12 12zM12 192h424c6.627 0 12 5.373 12 12v260c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V204c0-6.627 5.373-12 12-12zm333.296 95.947l-28.169-28.398c-4.667-4.705-12.265-4.736-16.97-.068L194.12 364.665l-45.98-46.352c-4.667-4.705-12.266-4.736-16.971-.068l-28.397 28.17c-4.705 4.667-4.736 12.265-.068 16.97l82.601 83.269c4.667 4.705 12.265 4.736 16.97.068l142.953-141.805c4.705-4.667 4.736-12.265.068-16.97z"], + "calendar-minus": [448, 512, [], "f272", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm304 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H132c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h184z"], + "calendar-plus": [448, 512, [], "f271", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm316 140c0-6.6-5.4-12-12-12h-60v-60c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v60h-60c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h60v60c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-60h60c6.6 0 12-5.4 12-12v-40z"], + "calendar-times": [448, 512, [], "f273", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm257.3 160l48.1-48.1c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0L224 306.7l-48.1-48.1c-4.7-4.7-12.3-4.7-17 0l-28.3 28.3c-4.7 4.7-4.7 12.3 0 17l48.1 48.1-48.1 48.1c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l48.1-48.1 48.1 48.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L269.3 352z"], + "camera": [512, 512, [], "f030", "M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z"], + "camera-retro": [512, 512, [], "f083", "M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm0 32h106c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H38c-3.3 0-6-2.7-6-6V80c0-8.8 7.2-16 16-16zm426 96H38c-3.3 0-6-2.7-6-6v-36c0-3.3 2.7-6 6-6h138l30.2-45.3c1.1-1.7 3-2.7 5-2.7H464c8.8 0 16 7.2 16 16v74c0 3.3-2.7 6-6 6zM256 424c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88zm-48 104c-8.8 0-16-7.2-16-16 0-35.3 28.7-64 64-64 8.8 0 16 7.2 16 16s-7.2 16-16 16c-17.6 0-32 14.4-32 32 0 8.8-7.2 16-16 16z"], + "cannabis": [512, 512, [], "f55f", "M503.47 360.25c-1.56-.82-32.39-16.89-76.78-25.81 64.25-75.12 84.05-161.67 84.93-165.64 1.18-5.33-.44-10.9-4.3-14.77-3.03-3.04-7.12-4.7-11.32-4.7-1.14 0-2.29.12-3.44.38-3.88.85-86.54 19.59-160.58 79.76.01-1.46.01-2.93.01-4.4 0-118.79-59.98-213.72-62.53-217.7A15.973 15.973 0 0 0 256 0c-5.45 0-10.53 2.78-13.47 7.37-2.55 3.98-62.53 98.91-62.53 217.7 0 1.47.01 2.94.01 4.4-74.03-60.16-156.69-78.9-160.58-79.76-1.14-.25-2.29-.38-3.44-.38-4.2 0-8.29 1.66-11.32 4.7A15.986 15.986 0 0 0 .38 168.8c.88 3.97 20.68 90.52 84.93 165.64-44.39 8.92-75.21 24.99-76.78 25.81a16.003 16.003 0 0 0-.02 28.29c2.45 1.29 60.76 31.72 133.49 31.72 6.14 0 11.96-.1 17.5-.31-11.37 22.23-16.52 38.31-16.81 39.22-1.8 5.68-.29 11.89 3.91 16.11a16.019 16.019 0 0 0 16.1 3.99c1.83-.57 37.72-11.99 77.3-39.29V504c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8v-64.01c39.58 27.3 75.47 38.71 77.3 39.29a16.019 16.019 0 0 0 16.1-3.99c4.2-4.22 5.71-10.43 3.91-16.11-.29-.91-5.45-16.99-16.81-39.22 5.54.21 11.37.31 17.5.31 72.72 0 131.04-30.43 133.49-31.72 5.24-2.78 8.52-8.22 8.51-14.15-.01-5.94-3.29-11.39-8.53-14.15z"], + "capsules": [576, 512, [], "f46b", "M555.3 300.1L424.2 112.8C401.9 81 366.4 64 330.4 64c-22.6 0-45.5 6.7-65.5 20.7-19.7 13.8-33.7 32.8-41.5 53.8C220.5 79.2 172 32 112 32 50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V218.9c3.3 8.6 7.3 17.1 12.8 25L368 431.2c22.2 31.8 57.7 48.8 93.8 48.8 22.7 0 45.5-6.7 65.5-20.7 51.7-36.2 64.2-107.5 28-159.2zM160 256H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm194.8 44.9l-65.6-93.7c-7.7-11-10.7-24.4-8.3-37.6 2.3-13.2 9.7-24.8 20.7-32.5 8.5-6 18.5-9.1 28.8-9.1 16.5 0 31.9 8 41.3 21.5l65.6 93.7-82.5 57.7z"], + "car": [512, 512, [], "f1b9", "M499.991 168h-54.815l-7.854-20.944c-9.192-24.513-25.425-45.351-46.942-60.263S343.651 64 317.472 64H194.528c-26.18 0-51.391 7.882-72.908 22.793-21.518 14.912-37.75 35.75-46.942 60.263L66.824 168H12.009c-8.191 0-13.974 8.024-11.384 15.795l8 24A12 12 0 0 0 20.009 216h28.815l-.052.14C29.222 227.093 16 247.997 16 272v48c0 16.225 6.049 31.029 16 42.309V424c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-40h256v40c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-61.691c9.951-11.281 16-26.085 16-42.309v-48c0-24.003-13.222-44.907-32.772-55.86l-.052-.14h28.815a12 12 0 0 0 11.384-8.205l8-24c2.59-7.771-3.193-15.795-11.384-15.795zm-365.388 1.528C143.918 144.689 168 128 194.528 128h122.944c26.528 0 50.61 16.689 59.925 41.528L391.824 208H120.176l14.427-38.472zM88 328c-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32s48 30.327 48 48-30.327 16-48 16zm336 0c-17.673 0-48 1.673-48-16 0-17.673 30.327-48 48-48s32 14.327 32 32c0 17.673-14.327 32-32 32z"], + "caret-down": [320, 512, [], "f0d7", "M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z"], + "caret-left": [192, 512, [], "f0d9", "M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z"], + "caret-right": [192, 512, [], "f0da", "M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z"], + "caret-square-down": [448, 512, [], "f150", "M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM92.5 220.5l123 123c4.7 4.7 12.3 4.7 17 0l123-123c7.6-7.6 2.2-20.5-8.5-20.5H101c-10.7 0-16.1 12.9-8.5 20.5z"], + "caret-square-left": [448, 512, [], "f191", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM259.515 124.485l-123.03 123.03c-4.686 4.686-4.686 12.284 0 16.971l123.029 123.029c7.56 7.56 20.485 2.206 20.485-8.485V132.971c.001-10.691-12.925-16.045-20.484-8.486z"], + "caret-square-right": [448, 512, [], "f152", "M48 32h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48zm140.485 355.515l123.029-123.029c4.686-4.686 4.686-12.284 0-16.971l-123.029-123.03c-7.56-7.56-20.485-2.206-20.485 8.485v246.059c0 10.691 12.926 16.045 20.485 8.486z"], + "caret-square-up": [448, 512, [], "f151", "M0 432V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm355.515-140.485l-123.03-123.03c-4.686-4.686-12.284-4.686-16.971 0L92.485 291.515c-7.56 7.56-2.206 20.485 8.485 20.485h246.059c10.691 0 16.045-12.926 8.486-20.485z"], + "caret-up": [320, 512, [], "f0d8", "M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z"], + "cart-arrow-down": [576, 512, [], "f218", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z"], + "cart-plus": [576, 512, [], "f217", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM408 168h-48v-40c0-8.837-7.163-16-16-16h-16c-8.837 0-16 7.163-16 16v40h-48c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h48v40c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-40h48c8.837 0 16-7.163 16-16v-16c0-8.837-7.163-16-16-16z"], + "certificate": [512, 512, [], "f0a3", "M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z"], + "chalkboard": [640, 512, [], "f51b", "M96 64h448v352h64V40c0-22.06-17.94-40-40-40H72C49.94 0 32 17.94 32 40v376h64V64zm528 384H480v-64H288v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"], + "chalkboard-teacher": [640, 512, [], "f51c", "M208 352c-2.39 0-4.78.35-7.06 1.09C187.98 357.3 174.35 360 160 360c-14.35 0-27.98-2.7-40.95-6.91-2.28-.74-4.66-1.09-7.05-1.09C49.94 352-.33 402.48 0 464.62.14 490.88 21.73 512 48 512h224c26.27 0 47.86-21.12 48-47.38.33-62.14-49.94-112.62-112-112.62zm-48-32c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM592 0H208c-26.47 0-48 22.25-48 49.59V96c23.42 0 45.1 6.78 64 17.8V64h352v288h-64v-64H384v64h-76.24c19.1 16.69 33.12 38.73 39.69 64H592c26.47 0 48-22.25 48-49.59V49.59C640 22.25 618.47 0 592 0z"], + "chart-area": [512, 512, [], "f1fe", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z"], + "chart-bar": [512, 512, [], "f080", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zm-308-44v-72c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V204c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V108c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"], + "chart-line": [512, 512, [], "f201", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM456 96H344c-21.4 0-32.1 25.9-17 41l32.9 32.9-72 72.9-55.6-55.6c-4.7-4.7-12.2-4.7-16.9 0L96.4 305c-4.7 4.6-4.8 12.2-.2 16.9l28.5 29.4c4.7 4.8 12.4 4.9 17.1.1l82.1-82.1 55.5 55.5c4.7 4.7 12.3 4.7 17 0l109.2-109.2L439 249c15.1 15.1 41 4.4 41-17V120c0-13.3-10.7-24-24-24z"], + "chart-pie": [576, 512, [], "f200", "M288 12.3V240h227.7c6.9 0 12.3-5.8 12-12.7-6.4-122.4-104.5-220.6-227-227-6.9-.3-12.7 5.1-12.7 12zM552.7 288c6.9 0 12.3 5.8 12 12.7-2.8 53.2-23.2 105.6-61.2 147.8-4.6 5.1-12.6 5.4-17.5.5L325 288h227.7zM401 433c4.8 4.8 4.7 12.8-.4 17.3-42.6 38.4-99 61.7-160.8 61.7C107.6 511.9-.2 403.8 0 271.5.2 143.4 100.8 38.9 227.3 32.3c6.9-.4 12.7 5.1 12.7 12V272l161 161z"], + "check": [512, 512, [], "f00c", "M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"], + "check-circle": [512, 512, [], "f058", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"], + "check-double": [512, 512, [], "f560", "M504.5 171.95l-36.2-36.41c-10-10.05-26.21-10.05-36.2 0L192 377.02 79.9 264.28c-10-10.06-26.21-10.06-36.2 0L7.5 300.69c-10 10.05-10 26.36 0 36.41l166.4 167.36c10 10.06 26.21 10.06 36.2 0l294.4-296.09c10-10.06 10-26.36 0-36.42zM166.57 282.71c6.84 7.02 18.18 7.02 25.21.18L403.85 72.62c7.02-6.84 7.02-18.18.18-25.21L362.08 5.29c-6.84-7.02-18.18-7.02-25.21-.18L179.71 161.19l-68.23-68.77c-6.84-7.02-18.18-7.02-25.2-.18l-42.13 41.77c-7.02 6.84-7.02 18.18-.18 25.2l122.6 123.5z"], + "check-square": [448, 512, [], "f14a", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"], + "chess": [512, 512, [], "f439", "M199.821 217.633a6 6 0 0 1 6 6l-.001 20.766a6 6 0 0 1-6 6h-25.805c0 31.715-2.153 96.201 17.398 153.229H64.597C84.54 345.452 82.02 279.245 82.02 250.399H56.183a6 6 0 0 1-6-6l.002-20.766a6 6 0 0 1 6-6h143.636zM41.554 115.088l34.58 95.071h103.734l34.572-95.072c2.846-7.826-2.95-16.101-11.278-16.101H152v-30.22h21.57a6 6 0 0 0 6-6V40.383a6 6 0 0 0-6-6h-28.367V6a6 6 0 0 0-6-6H116.82a6 6 0 0 0-6 6v28.383H82.421a6 6 0 0 0-6 6v22.383a6 6 0 0 0 6 6H104v30.219H52.831c-8.328.001-14.124 8.276-11.277 16.103zM222.678 445.17v-28.067a6 6 0 0 0-6-6H39.322a6 6 0 0 0-6 6v28.067l-22.148 14.164a6 6 0 0 0-2.767 5.055V506a6 6 0 0 0 6 6h227.187a6 6 0 0 0 6-6v-41.612a6 6 0 0 0-2.767-5.055l-22.149-14.163zm90.578-144.225l24.88 16.963c.09 18.124-.167 63.904-11.905 114.522h147.526c-11.713-50.475-11.969-96.324-11.882-114.537l24.859-16.949a3.856 3.856 0 0 0 1.684-3.187v-69.901a3.857 3.857 0 0 0-3.857-3.857h-27.655a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.858-3.857h-52.918a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.857-3.857H315.43a3.857 3.857 0 0 0-3.857 3.857v69.901a3.855 3.855 0 0 0 1.683 3.188zm71.585 51.906c0-8.372 6.787-15.158 15.159-15.158s15.158 6.787 15.158 15.158v30.318h-30.317v-30.318zM504.62 470.059l-13.664-10.639v-15.552a3.857 3.857 0 0 0-3.857-3.857H312.915a3.857 3.857 0 0 0-3.857 3.857v15.552l-13.677 10.639a3.857 3.857 0 0 0-1.488 3.044v35.039a3.857 3.857 0 0 0 3.857 3.857h204.5a3.857 3.857 0 0 0 3.857-3.857v-35.04a3.859 3.859 0 0 0-1.487-3.043z"], + "chess-bishop": [320, 512, [], "f43a", "M123.158 77.881C107.369 72.53 96 57.597 96 40c0-22.091 17.909-40 40-40h47.796c22.091 0 40 17.909 40 40 0 17.541-11.295 32.434-27.005 37.829 23.993 16.657 48.577 46.839 68.703 82.05L144.929 280.443a6 6 0 0 0 0 8.485l14.142 14.142a6 6 0 0 0 8.485 0L280.9 189.726c17.758 38.297 29.371 79.443 29.371 114.273 0 53.786-22.897 75.788-58.446 86.033V448H68.174v-57.97C32.631 379.784 9.739 357.781 9.739 304c0-78.029 58.281-187.766 113.419-226.119zM320 500v-24c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12z"], + "chess-board": [512, 512, [], "f43c", "M256 256v64h-64v-64h64zm0-256h-64v64h64V0zm0 256h64v-64h-64v64zM384 0h-64v64h64V0zm0 512h64v-64h-64v64zm128-64v-64h-64v64h64zm-384 64h64v-64h-64v64zm0-512H64v64h64V0zm384 192v-64h-64v64h64zm0 128v-64h-64v64h64zM0 512h64v-64H0v64zM0 64v64h64V64H0zm0 128v64h64v-64H0zm0 128v64h64v-64H0zm256 192h64v-64h-64v64zm-64-128v64h64v-64h-64zm64-192v-64h-64v64h64zM64 384v64h64v-64H64zm64-128H64v64h64v-64zm256 128h64v-64h-64v64zM512 0h-64v64h64V0zM384 256h64v-64h-64v64zm0-192v64h64V64h-64zm-64 320v64h64v-64h-64zm-192-64v64h64v-64h-64zm128 0v64h64v-64h-64zm-64-128h-64v64h64v-64zm-64-64H64v64h64v-64zm192 192h64v-64h-64v64zM192 128V64h-64v64h64zm128 0V64h-64v64h64zm0 64h64v-64h-64v64z"], + "chess-king": [448, 512, [], "f43f", "M416 476v24c0 6.627-5.373 12-12 12H44c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12zm-8.033-324H248v-48h50a6 6 0 0 0 6-6V62a6 6 0 0 0-6-6h-50V6a6 6 0 0 0-6-6h-36a6 6 0 0 0-6 6v50h-50a6 6 0 0 0-6 6v36a6 6 0 0 0 6 6h50v48H40.033c-27.574 0-46.879 27.244-37.738 53.259L87.582 448h272.836l85.287-242.741C454.846 179.244 435.541 152 407.967 152z"], + "chess-knight": [384, 512, [], "f441", "M352 224v224H32v-46.557c0-30.302 17.12-58.003 44.223-71.554l57.243-28.622A48 48 0 0 0 160 258.334V208l-22.127 11.063a23.996 23.996 0 0 0-12.55 15.645l-11.835 47.338a12 12 0 0 1-7.185 8.231l-29.601 11.84a11.998 11.998 0 0 1-9.33-.176L7.126 275.167A12 12 0 0 1 0 264.201v-158.26c0-6.365 2.529-12.47 7.03-16.971L16 80 1.789 51.578A16.937 16.937 0 0 1 0 44c0-6.627 5.373-12 12-12h148c106.039 0 192 85.961 192 192zm20 240H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12zM52 128c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z"], + "chess-pawn": [320, 512, [], "f443", "M264 448H56s60-42.743 60-176H84c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h40.209C95.721 210.56 76 181.588 76 148c0-46.392 37.608-84 84-84s84 37.608 84 84c0 33.588-19.721 62.56-48.209 76H236c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12h-32c0 133.257 60 176 60 176zm28 16H28c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h264c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12z"], + "chess-queen": [512, 512, [], "f445", "M436 512H76c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12zM255.579 0c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zm204.568 154.634c-5.768-3.045-12.916-.932-16.082 4.77-8.616 15.516-22.747 37.801-44.065 37.801-28.714 0-30.625-19.804-31.686-57.542-.183-6.492-5.501-11.664-11.995-11.664h-41.006c-5.175 0-9.754 3.328-11.388 8.238-8.89 26.709-26.073 40.992-47.925 40.992s-39.034-14.283-47.925-40.992c-1.634-4.91-6.213-8.238-11.388-8.238h-41.005c-6.495 0-11.813 5.174-11.995 11.667-1.052 37.642-2.934 57.539-31.688 57.539-20.691 0-33.817-20.224-44.425-38.025-3.266-5.48-10.258-7.431-15.899-4.453l-39.179 20.679a12 12 0 0 0-5.51 15.145L112 448h288l105.014-257.448a12 12 0 0 0-5.51-15.145l-39.357-20.773z"], + "chess-rook": [384, 512, [], "f447", "M81.241 215.027C80.957 258.92 77.411 348.076 48 448h287.982c-29.4-99.604-32.936-188.912-33.221-232.975l45.418-42.312a11.998 11.998 0 0 0 3.82-8.78V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v44h-48V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v44H96V44c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v119.932c0 3.33 1.384 6.51 3.82 8.78l45.421 42.315zM160 256c0-17.673 14.327-32 32-32 17.673 0 32 14.327 32 32v64.004h-64V256zm224 220v24c0 6.627-5.373 12-12 12H12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12z"], + "chevron-circle-down": [512, 512, [], "f13a", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM273 369.9l135.5-135.5c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L256 285.1 154.4 183.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L239 369.9c9.4 9.4 24.6 9.4 34 0z"], + "chevron-circle-left": [512, 512, [], "f137", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z"], + "chevron-circle-right": [512, 512, [], "f138", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z"], + "chevron-circle-up": [512, 512, [], "f139", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm231-113.9L103.5 277.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L256 226.9l101.6 101.6c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L273 142.1c-9.4-9.4-24.6-9.4-34 0z"], + "chevron-down": [448, 512, [], "f078", "M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"], + "chevron-left": [320, 512, [], "f053", "M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z"], + "chevron-right": [320, 512, [], "f054", "M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z"], + "chevron-up": [448, 512, [], "f077", "M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z"], + "child": [384, 512, [], "f1ae", "M120 72c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.764-32.235 72-72 72s-72-32.236-72-72zm254.627 1.373c-12.496-12.497-32.758-12.497-45.254 0L242.745 160H141.254L54.627 73.373c-12.496-12.497-32.758-12.497-45.254 0-12.497 12.497-12.497 32.758 0 45.255L104 213.254V480c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V368h16v112c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V213.254l94.627-94.627c12.497-12.497 12.497-32.757 0-45.254z"], + "church": [640, 512, [], "f51d", "M464.46 246.68L352 179.2V128h48c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-48V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v48h-48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v51.2l-112.46 67.48A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.65-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.54A32.024 32.024 0 0 0 0 395.96zm620.61-29.42L512 320v192h112c8.84 0 16-7.16 16-16V395.96c0-12.8-7.63-24.37-19.39-29.42z"], + "circle": [512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"], + "circle-notch": [512, 512, [], "f1ce", "M288 39.056v16.659c0 10.804 7.281 20.159 17.686 23.066C383.204 100.434 440 171.518 440 256c0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-84.47 56.786-155.564 134.312-177.219C216.719 75.874 224 66.517 224 55.712V39.064c0-15.709-14.834-27.153-30.046-23.234C86.603 43.482 7.394 141.206 8.003 257.332c.72 137.052 111.477 246.956 248.531 246.667C393.255 503.711 504 392.788 504 256c0-115.633-79.14-212.779-186.211-240.236C302.678 11.889 288 23.456 288 39.056z"], + "clipboard": [384, 512, [], "f328", "M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z"], + "clipboard-check": [384, 512, [], "f46c", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm121.2 231.8l-143 141.8c-4.7 4.7-12.3 4.6-17-.1l-82.6-83.3c-4.7-4.7-4.6-12.3.1-17L99.1 285c4.7-4.7 12.3-4.6 17 .1l46 46.4 106-105.2c4.7-4.7 12.3-4.6 17 .1l28.2 28.4c4.7 4.8 4.6 12.3-.1 17z"], + "clipboard-list": [384, 512, [], "f46d", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM96 424c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm96-192c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm128 368c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z"], + "clock": [512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm57.1 350.1L224.9 294c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v137.7l63.5 46.2c5.4 3.9 6.5 11.4 2.6 16.8l-28.2 38.8c-3.9 5.3-11.4 6.5-16.8 2.6z"], + "clone": [512, 512, [], "f24d", "M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z"], + "closed-captioning": [512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM218.1 287.7c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2.1 48 51.1 70.5 92.3 32.6zm190.4 0c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.5 56.9-172.7 32.1-172.7-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 222.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6z"], + "cloud": [640, 512, [], "f0c2", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z"], + "cloud-download-alt": [640, 512, [], "f381", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z"], + "cloud-upload-alt": [640, 512, [], "f382", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z"], + "cocktail": [576, 512, [], "f561", "M296 464h-56V338.78l168.74-168.73c15.52-15.52 4.53-42.05-17.42-42.05H24.68c-21.95 0-32.94 26.53-17.42 42.05L176 338.78V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM432 0c-62.61 0-115.35 40.2-135.18 96h52.54c16.65-28.55 47.27-48 82.64-48 52.93 0 96 43.06 96 96s-43.07 96-96 96c-14.04 0-27.29-3.2-39.32-8.64l-35.26 35.26C379.23 279.92 404.59 288 432 288c79.53 0 144-64.47 144-144S511.53 0 432 0z"], + "code": [640, 512, [], "f121", "M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"], + "code-branch": [384, 512, [], "f126", "M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"], + "coffee": [640, 512, [], "f0f4", "M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z"], + "cog": [512, 512, [], "f013", "M444.788 291.1l42.616 24.599c4.867 2.809 7.126 8.618 5.459 13.985-11.07 35.642-29.97 67.842-54.689 94.586a12.016 12.016 0 0 1-14.832 2.254l-42.584-24.595a191.577 191.577 0 0 1-60.759 35.13v49.182a12.01 12.01 0 0 1-9.377 11.718c-34.956 7.85-72.499 8.256-109.219.007-5.49-1.233-9.403-6.096-9.403-11.723v-49.184a191.555 191.555 0 0 1-60.759-35.13l-42.584 24.595a12.016 12.016 0 0 1-14.832-2.254c-24.718-26.744-43.619-58.944-54.689-94.586-1.667-5.366.592-11.175 5.459-13.985L67.212 291.1a193.48 193.48 0 0 1 0-70.199l-42.616-24.599c-4.867-2.809-7.126-8.618-5.459-13.985 11.07-35.642 29.97-67.842 54.689-94.586a12.016 12.016 0 0 1 14.832-2.254l42.584 24.595a191.577 191.577 0 0 1 60.759-35.13V25.759a12.01 12.01 0 0 1 9.377-11.718c34.956-7.85 72.499-8.256 109.219-.007 5.49 1.233 9.403 6.096 9.403 11.723v49.184a191.555 191.555 0 0 1 60.759 35.13l42.584-24.595a12.016 12.016 0 0 1 14.832 2.254c24.718 26.744 43.619 58.944 54.689 94.586 1.667 5.366-.592 11.175-5.459 13.985L444.788 220.9a193.485 193.485 0 0 1 0 70.2zM336 256c0-44.112-35.888-80-80-80s-80 35.888-80 80 35.888 80 80 80 80-35.888 80-80z"], + "cogs": [640, 512, [], "f085", "M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z"], + "coins": [512, 512, [], "f51e", "M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z"], + "columns": [512, 512, [], "f0db", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z"], + "comment": [512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32z"], + "comment-alt": [512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 9.8 11.2 15.5 19.1 9.7L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z"], + "comment-dots": [512, 512, [], "f4ad", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "comment-slash": [640, 512, [], "f4b3", "M64 240c0 49.6 21.4 95 57 130.7-12.6 50.3-54.3 95.2-54.8 95.8-2.2 2.3-2.8 5.7-1.5 8.7 1.3 2.9 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 27.4 0 53.7-3.6 78.4-10L72.9 186.4c-5.6 17.1-8.9 35-8.9 53.6zm569.8 218.1l-114.4-88.4C554.6 334.1 576 289.2 576 240c0-114.9-114.6-208-256-208-65.1 0-124.2 20.1-169.4 52.7L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z"], + "comments": [576, 512, [], "f086", "M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z"], + "compact-disc": [496, 512, [], "f51f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 256H56c0-105.9 86.1-192 192-192v32c-88.2 0-160 71.8-160 160zm160 96c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"], + "compass": [512, 512, [], "f14e", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM307.446 120.844l-102.642 97.779a23.997 23.997 0 0 0-6.772 11.729l-33.359 137.779c-5.68 23.459 22.777 39.318 39.88 23.024l102.64-97.779a23.99 23.99 0 0 0 6.772-11.729l33.359-137.779c5.618-23.198-22.591-39.493-39.878-23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"], + "compress": [448, 512, [], "f066", "M436 192H312c-13.3 0-24-10.7-24-24V44c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-276-24V44c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v84H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 300V344c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-84h84c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H312c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"], + "concierge-bell": [512, 512, [], "f562", "M288 130.54V112h16c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h16v18.54C115.49 146.11 32 239.18 32 352h448c0-112.82-83.49-205.89-192-221.46zM496 384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"], + "cookie": [512, 512, [], "f563", "M510.37 254.79l-12.08-76.26a132.493 132.493 0 0 0-37.16-72.95l-54.76-54.75c-19.73-19.72-45.18-32.7-72.71-37.05l-76.7-12.15c-27.51-4.36-55.69.11-80.52 12.76L107.32 49.6a132.25 132.25 0 0 0-57.79 57.8l-35.1 68.88a132.602 132.602 0 0 0-12.82 80.94l12.08 76.27a132.493 132.493 0 0 0 37.16 72.95l54.76 54.75a132.087 132.087 0 0 0 72.71 37.05l76.7 12.14c27.51 4.36 55.69-.11 80.52-12.75l69.12-35.21a132.302 132.302 0 0 0 57.79-57.8l35.1-68.87c12.71-24.96 17.2-53.3 12.82-80.96zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "cookie-bite": [512, 512, [], "f564", "M510.52 255.82c-69.97-.85-126.47-57.69-126.47-127.86-70.17 0-127-56.49-127.86-126.45-27.26-4.14-55.13.3-79.72 12.82l-69.13 35.22a132.221 132.221 0 0 0-57.79 57.81l-35.1 68.88a132.645 132.645 0 0 0-12.82 80.95l12.08 76.27a132.521 132.521 0 0 0 37.16 72.96l54.77 54.76a132.036 132.036 0 0 0 72.71 37.06l76.71 12.15c27.51 4.36 55.7-.11 80.53-12.76l69.13-35.21a132.273 132.273 0 0 0 57.79-57.81l35.1-68.88c12.56-24.64 17.01-52.58 12.91-79.91zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "copy": [448, 512, [], "f0c5", "M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z"], + "copyright": [512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm117.134 346.753c-1.592 1.867-39.776 45.731-109.851 45.731-84.692 0-144.484-63.26-144.484-145.567 0-81.303 62.004-143.401 143.762-143.401 66.957 0 101.965 37.315 103.422 38.904a12 12 0 0 1 1.238 14.623l-22.38 34.655c-4.049 6.267-12.774 7.351-18.234 2.295-.233-.214-26.529-23.88-61.88-23.88-46.116 0-73.916 33.575-73.916 76.082 0 39.602 25.514 79.692 74.277 79.692 38.697 0 65.28-28.338 65.544-28.625 5.132-5.565 14.059-5.033 18.508 1.053l24.547 33.572a12.001 12.001 0 0 1-.553 14.866z"], + "couch": [640, 512, [], "f4b8", "M160 224v64h320v-64c0-35.3 28.7-64 64-64h32c0-53-43-96-96-96H160c-53 0-96 43-96 96h32c35.3 0 64 28.7 64 64zm416-32h-32c-17.7 0-32 14.3-32 32v96H128v-96c0-17.7-14.3-32-32-32H64c-35.3 0-64 28.7-64 64 0 23.6 13 44 32 55.1V432c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-16h384v16c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V311.1c19-11.1 32-31.5 32-55.1 0-35.3-28.7-64-64-64z"], + "credit-card": [576, 512, [], "f09d", "M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V256H0v176zm192-68c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-40zm-128 0c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM576 80v48H0V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48z"], + "crop": [512, 512, [], "f125", "M488 352h-40V109.25l59.31-59.31c6.25-6.25 6.25-16.38 0-22.63L484.69 4.69c-6.25-6.25-16.38-6.25-22.63 0L402.75 64H192v96h114.75L160 306.75V24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v264c0 13.25 10.75 24 24 24h232v-96H205.25L352 205.25V488c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"], + "crop-alt": [512, 512, [], "f565", "M488 352h-40V96c0-17.67-14.33-32-32-32H192v96h160v328c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24zM160 24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v256c0 17.67 14.33 32 32 32h224v-96H160V24z"], + "crosshairs": [512, 512, [], "f05b", "M500 224h-30.364C455.724 130.325 381.675 56.276 288 42.364V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v30.364C130.325 56.276 56.276 130.325 42.364 224H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h30.364C56.276 381.675 130.325 455.724 224 469.636V500c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-30.364C381.675 455.724 455.724 381.675 469.636 288H500c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zM288 404.634V364c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40.634C165.826 392.232 119.783 346.243 107.366 288H148c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40.634C119.768 165.826 165.757 119.783 224 107.366V148c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40.634C346.174 119.768 392.217 165.757 404.634 224H364c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40.634C392.232 346.174 346.243 392.217 288 404.634zM288 256c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z"], + "crow": [640, 512, [], "f520", "M544 32h-16.36C513.04 12.68 490.09 0 464 0c-44.18 0-80 35.82-80 80v20.98L12.09 393.57A30.216 30.216 0 0 0 0 417.74c0 22.46 23.64 37.07 43.73 27.03L165.27 384h96.49l44.41 120.1c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38L312.94 384H352c1.91 0 3.76-.23 5.66-.29l44.51 120.38c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38l-41.24-111.53C485.74 352.8 544 279.26 544 192v-80l96-16c0-35.35-42.98-64-96-64zm-80 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"], + "crown": [640, 512, [], "f521", "M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.4 7.7-.8L128 416h384l72.3-192.8c2.5.4 5.1.8 7.7.8 26.5 0 48-21.5 48-48s-21.5-48-48-48z"], + "cube": [512, 512, [], "f1b2", "M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z"], + "cubes": [512, 512, [], "f1b3", "M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z"], + "cut": [448, 512, [], "f0c4", "M278.06 256L444.48 89.57c4.69-4.69 4.69-12.29 0-16.97-32.8-32.8-85.99-32.8-118.79 0L210.18 188.12l-24.86-24.86c4.31-10.92 6.68-22.81 6.68-35.26 0-53.02-42.98-96-96-96S0 74.98 0 128s42.98 96 96 96c4.54 0 8.99-.32 13.36-.93L142.29 256l-32.93 32.93c-4.37-.61-8.83-.93-13.36-.93-53.02 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96c0-12.45-2.37-24.34-6.68-35.26l24.86-24.86L325.69 439.4c32.8 32.8 85.99 32.8 118.79 0 4.69-4.68 4.69-12.28 0-16.97L278.06 256zM96 160c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32zm0 256c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z"], + "database": [448, 512, [], "f1c0", "M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z"], + "deaf": [512, 512, [], "f2a4", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm268.485-52.201L480.2 3.515c-4.687-4.686-12.284-4.686-16.971 0L376.2 90.544c-4.686 4.686-4.686 12.284 0 16.971l28.285 28.285c4.686 4.686 12.284 4.686 16.97 0l87.03-87.029c4.687-4.688 4.687-12.286 0-16.972zM168.97 314.745c-4.686-4.686-12.284-4.686-16.97 0L3.515 463.23c-4.686 4.686-4.686 12.284 0 16.971L31.8 508.485c4.687 4.686 12.284 4.686 16.971 0L197.256 360c4.686-4.686 4.686-12.284 0-16.971l-28.286-28.284z"], + "desktop": [576, 512, [], "f108", "M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z"], + "diagnoses": [640, 512, [], "f470", "M496 256c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm-176-80c48.5 0 88-39.5 88-88S368.5 0 320 0s-88 39.5-88 88 39.5 88 88 88zM59.8 364c10.2 15.3 29.3 17.8 42.9 9.8 16.2-9.6 56.2-31.7 105.3-48.6V416h224v-90.7c49.1 16.8 89.1 39 105.3 48.6 13.6 8 32.7 5.3 42.9-9.8l17.8-26.7c8.8-13.2 7.6-34.6-10-45.1-11.9-7.1-29.7-17-51.1-27.4-28.1 46.1-99.4 17.8-87.7-35.1C409.3 217.2 365.1 208 320 208c-57 0-112.9 14.5-160 32.2-.2 40.2-47.6 63.3-79.2 36-11.2 6-21.3 11.6-28.7 16-17.6 10.5-18.8 31.8-10 45.1L59.8 364zM368 344c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-160 8c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm512 192H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z"], + "dice": [640, 512, [], "f522", "M592 192H473.26c12.69 29.59 7.12 65.2-17 89.32L320 417.58V464c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48V240c0-26.51-21.49-48-48-48zM480 376c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm-46.37-186.7L258.7 14.37c-19.16-19.16-50.23-19.16-69.39 0L14.37 189.3c-19.16 19.16-19.16 50.23 0 69.39L189.3 433.63c19.16 19.16 50.23 19.16 69.39 0L433.63 258.7c19.16-19.17 19.16-50.24 0-69.4zM96 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"], + "dice-five": [448, 512, [], "f523", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "dice-four": [448, 512, [], "f524", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "dice-one": [448, 512, [], "f525", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM224 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "dice-six": [448, 512, [], "f526", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "dice-three": [448, 512, [], "f527", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "dice-two": [448, 512, [], "f528", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "digital-tachograph": [640, 512, [], "f566", "M608 96H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128c0-17.67-14.33-32-32-32zM304 352c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8zM72 288v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H80c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm40-64c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-48c0-8.84 7.16-16 16-16h208c8.84 0 16 7.16 16 16v48zm272 128c0 4.42-3.58 8-8 8H344c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8z"], + "divide": [448, 512, [], "f529", "M224 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm0-192c35.35 0 64-28.65 64-64s-28.65-64-64-64-64 28.65-64 64 28.65 64 64 64zm192 48H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"], + "dizzy": [496, 512, [], "f567", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-96 206.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L174.6 192l28.7 28.7c15.2 15.2-7.9 37.4-22.6 22.6L152 214.6zM248 416c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm147.3-195.3c15.2 15.2-7.9 37.4-22.6 22.6L344 214.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L366.6 192l28.7 28.7z"], + "dna": [448, 512, [], "f471", "M.1 494.1c-1.1 9.5 6.3 17.8 15.9 17.8l32.3.1c8.1 0 14.9-5.9 16-13.9.7-4.9 1.8-11.1 3.4-18.1H380c1.6 6.9 2.9 13.2 3.5 18.1 1.1 8 7.9 14 16 13.9l32.3-.1c9.6 0 17.1-8.3 15.9-17.8-4.6-37.9-25.6-129-118.9-207.7-17.6 12.4-37.1 24.2-58.5 35.4 6.2 4.6 11.4 9.4 17 14.2H159.7c21.3-18.1 47-35.6 78.7-51.4C410.5 199.1 442.1 65.8 447.9 17.9 449 8.4 441.6.1 432 .1L399.6 0c-8.1 0-14.9 5.9-16 13.9-.7 4.9-1.8 11.1-3.4 18.1H67.8c-1.6-7-2.7-13.1-3.4-18.1-1.1-8-7.9-14-16-13.9L16.1.1C6.5.1-1 8.4.1 17.9 5.3 60.8 31.4 171.8 160 256 31.5 340.2 5.3 451.2.1 494.1zM224 219.6c-25.1-13.7-46.4-28.4-64.3-43.6h128.5c-17.8 15.2-39.1 30-64.2 43.6zM355.1 96c-5.8 10.4-12.8 21.1-21 32H114c-8.3-10.9-15.3-21.6-21-32h262.1zM92.9 416c5.8-10.4 12.8-21.1 21-32h219.4c8.3 10.9 15.4 21.6 21.2 32H92.9z"], + "dollar-sign": [288, 512, [], "f155", "M209.2 233.4l-108-31.6C88.7 198.2 80 186.5 80 173.5c0-16.3 13.2-29.5 29.5-29.5h66.3c12.2 0 24.2 3.7 34.2 10.5 6.1 4.1 14.3 3.1 19.5-2l34.8-34c7.1-6.9 6.1-18.4-1.8-24.5C238 74.8 207.4 64.1 176 64V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C45.8 64-5.4 118.7.5 183.6c4.2 46.1 39.4 83.6 83.8 96.6l102.5 30c12.5 3.7 21.2 15.3 21.2 28.3 0 16.3-13.2 29.5-29.5 29.5h-66.3C100 368 88 364.3 78 357.5c-6.1-4.1-14.3-3.1-19.5 2l-34.8 34c-7.1 6.9-6.1 18.4 1.8 24.5 24.5 19.2 55.1 29.9 86.5 30v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48.2c46.6-.9 90.3-28.6 105.7-72.7 21.5-61.6-14.6-124.8-72.5-141.7z"], + "dolly": [576, 512, [], "f472", "M294.2 277.7c18 5 34.7 13.4 49.5 24.7l161.5-53.8c8.4-2.8 12.9-11.9 10.1-20.2L454.9 47.2c-2.8-8.4-11.9-12.9-20.2-10.1l-61.1 20.4 33.1 99.4L346 177l-33.1-99.4-61.6 20.5c-8.4 2.8-12.9 11.9-10.1 20.2l53 159.4zm281 48.7L565 296c-2.8-8.4-11.9-12.9-20.2-10.1l-213.5 71.2c-17.2-22-43.6-36.4-73.5-37L158.4 21.9C154 8.8 141.8 0 128 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h88.9l92.2 276.7c-26.1 20.4-41.7 53.6-36 90.5 6.1 39.4 37.9 72.3 77.3 79.2 60.2 10.7 112.3-34.8 113.4-92.6l213.3-71.2c8.3-2.8 12.9-11.8 10.1-20.2zM256 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"], + "dolly-flatbed": [640, 512, [], "f474", "M208 320h384c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H448v128l-48-32-48 32V32H208c-8.8 0-16 7.2-16 16v256c0 8.8 7.2 16 16 16zm416 64H128V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h82.9c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H451c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H624c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z"], + "donate": [512, 512, [], "f4b9", "M256 416c114.9 0 208-93.1 208-208S370.9 0 256 0 48 93.1 48 208s93.1 208 208 208zM233.8 97.4V80.6c0-9.2 7.4-16.6 16.6-16.6h11.1c9.2 0 16.6 7.4 16.6 16.6v17c15.5.8 30.5 6.1 43 15.4 5.6 4.1 6.2 12.3 1.2 17.1L306 145.6c-3.8 3.7-9.5 3.8-14 1-5.4-3.4-11.4-5.1-17.8-5.1h-38.9c-9 0-16.3 8.2-16.3 18.3 0 8.2 5 15.5 12.1 17.6l62.3 18.7c25.7 7.7 43.7 32.4 43.7 60.1 0 34-26.4 61.5-59.1 62.4v16.8c0 9.2-7.4 16.6-16.6 16.6h-11.1c-9.2 0-16.6-7.4-16.6-16.6v-17c-15.5-.8-30.5-6.1-43-15.4-5.6-4.1-6.2-12.3-1.2-17.1l16.3-15.5c3.8-3.7 9.5-3.8 14-1 5.4 3.4 11.4 5.1 17.8 5.1h38.9c9 0 16.3-8.2 16.3-18.3 0-8.2-5-15.5-12.1-17.6l-62.3-18.7c-25.7-7.7-43.7-32.4-43.7-60.1.1-34 26.4-61.5 59.1-62.4zM480 352h-32.5c-19.6 26-44.6 47.7-73 64h63.8c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8h63.8c-28.4-16.3-53.3-38-73-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32z"], + "door-closed": [640, 512, [], "f52a", "M624 448H512V50.8C512 22.78 490.47 0 464 0H175.99c-26.47 0-48 22.78-48 50.8V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM415.99 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32c.01 17.67-14.32 32-32 32z"], + "door-open": [640, 512, [], "f52b", "M624 448h-80V113.45C544 86.19 522.47 64 496 64H384v64h96v384h144c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM312.24 1.01l-192 49.74C105.99 54.44 96 67.7 96 82.92V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h336V33.18c0-21.58-19.56-37.41-39.76-32.17zM264 288c-13.25 0-24-14.33-24-32s10.75-32 24-32 24 14.33 24 32-10.75 32-24 32z"], + "dot-circle": [512, 512, [], "f192", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z"], + "dove": [512, 512, [], "f4ba", "M288 167.2v-28.1c-28.2-36.3-47.1-79.3-54.1-125.2-2.1-13.5-19-18.8-27.8-8.3-21.1 24.9-37.7 54.1-48.9 86.5 34.2 38.3 80 64.6 130.8 75.1zM400 64c-44.2 0-80 35.9-80 80.1v59.4C215.6 197.3 127 133 87 41.8c-5.5-12.5-23.2-13.2-29-.9C41.4 76 32 115.2 32 156.6c0 70.8 34.1 136.9 85.1 185.9 13.2 12.7 26.1 23.2 38.9 32.8l-143.9 36C1.4 414-3.4 426.4 2.6 435.7 20 462.6 63 508.2 155.8 512c8 .3 16-2.6 22.1-7.9l65.2-56.1H320c88.4 0 160-71.5 160-159.9V128l32-64H400zm0 96.1c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"], + "download": [512, 512, [], "f019", "M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"], + "drafting-compass": [512, 512, [], "f568", "M457.01 344.42c-25.05 20.33-52.63 37.18-82.54 49.05l54.38 94.19 53.95 23.04c9.81 4.19 20.89-2.21 22.17-12.8l7.02-58.25-54.98-95.23zm42.49-94.56c4.86-7.67 1.89-17.99-6.05-22.39l-28.07-15.57c-7.48-4.15-16.61-1.46-21.26 5.72C403.01 281.15 332.25 320 256 320c-23.93 0-47.23-4.25-69.41-11.53l67.36-116.68c.7.02 1.34.21 2.04.21s1.35-.19 2.04-.21l51.09 88.5c31.23-8.96 59.56-25.75 82.61-48.92l-51.79-89.71C347.39 128.03 352 112.63 352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96c0 16.63 4.61 32.03 12.05 45.66l-68.3 118.31c-12.55-11.61-23.96-24.59-33.68-39-4.79-7.1-13.97-9.62-21.38-5.33l-27.75 16.07c-7.85 4.54-10.63 14.9-5.64 22.47 15.57 23.64 34.69 44.21 55.98 62.02L0 439.66l7.02 58.25c1.28 10.59 12.36 16.99 22.17 12.8l53.95-23.04 70.8-122.63C186.13 377.28 220.62 384 256 384c99.05 0 190.88-51.01 243.5-134.14zM256 64c17.67 0 32 14.33 32 32s-14.33 32-32 32-32-14.33-32-32 14.33-32 32-32z"], + "drum": [576, 512, [], "f569", "M458.08 120.88l102.39-61.43c15.16-9.09 20.06-28.75 10.97-43.91C562.34.39 542.7-4.53 527.53 4.57l-160.69 96.41A629.32 629.32 0 0 0 288 96C128.94 96 0 153.31 0 224v160.83c0 30.46 24.03 58.4 64 80.37v-96.37c0-17.6 14.4-32 32-32s32 14.4 32 32v122.41c37.4 11.13 81 18.44 128 20.75V400.84c0-17.6 14.4-32 32-32s32 14.4 32 32V512c47-2.31 90.6-9.62 128-20.75V368.84c0-17.6 14.4-32 32-32s32 14.4 32 32v96.37c39.97-21.97 64-49.91 64-80.37V224.01c-.01-42.38-46.54-79.84-117.92-103.13zM288 304c-132.55 0-240-35.82-240-80s107.45-80 240-80c2.34 0 4.62.1 6.94.12l-87.41 52.44c-15.16 9.09-20.06 28.75-10.97 43.91 9.56 15.93 29.51 19.61 43.91 10.97l162.71-97.62C477.55 167.41 528 193.74 528 224.01 528 268.19 420.54 304 288 304z"], + "drum-steelpan": [576, 512, [], "f56a", "M288 32C128.94 32 0 89.31 0 160v192c0 70.69 128.94 128 288 128s288-57.31 288-128V160c0-70.69-128.94-128-288-128zm-82.99 158.36c-4.45 16.61-14.54 30.57-28.31 40.48C100.23 217.46 48 190.78 48 160c0-30.16 50.11-56.39 124.04-70.03l25.6 44.34c9.86 17.09 12.48 36.99 7.37 56.05zM288 240c-21.08 0-41.41-1-60.89-2.7 8.06-26.13 32.15-45.3 60.89-45.3s52.83 19.17 60.89 45.3C329.41 239 309.08 240 288 240zm64-144c0 35.29-28.71 64-64 64s-64-28.71-64-64V82.96c20.4-1.88 41.8-2.96 64-2.96s43.6 1.08 64 2.96V96zm46.93 134.9c-13.81-9.91-23.94-23.9-28.4-40.54-5.11-19.06-2.49-38.96 7.38-56.04l25.65-44.42C477.72 103.5 528 129.79 528 160c0 30.83-52.4 57.54-129.07 70.9z"], + "dumbbell": [640, 512, [], "f44b", "M104 96H56c-13.3 0-24 10.7-24 24v104H8c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h24v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm528 128h-24V120c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v272c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h24c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM456 32h-48c-13.3 0-24 10.7-24 24v168H256V56c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v400c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h128v168c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24z"], + "edit": [576, 512, [], "f044", "M402.6 83.2l90.2 90.2c3.8 3.8 3.8 10 0 13.8L274.4 405.6l-92.8 10.3c-12.4 1.4-22.9-9.1-21.5-21.5l10.3-92.8L388.8 83.2c3.8-3.8 10-3.8 13.8 0zm162-22.9l-48.8-48.8c-15.2-15.2-39.9-15.2-55.2 0l-35.4 35.4c-3.8 3.8-3.8 10 0 13.8l90.2 90.2c3.8 3.8 10 3.8 13.8 0l35.4-35.4c15.2-15.3 15.2-40 0-55.2zM384 346.2V448H64V128h229.8c3.2 0 6.2-1.3 8.5-3.5l40-40c7.6-7.6 2.2-20.5-8.5-20.5H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V306.2c0-10.7-12.9-16-20.5-8.5l-40 40c-2.2 2.3-3.5 5.3-3.5 8.5z"], + "eject": [448, 512, [], "f052", "M448 384v64c0 17.673-14.327 32-32 32H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h384c17.673 0 32 14.327 32 32zM48.053 320h351.886c41.651 0 63.581-49.674 35.383-80.435L259.383 47.558c-19.014-20.743-51.751-20.744-70.767 0L12.67 239.565C-15.475 270.268 6.324 320 48.053 320z"], + "ellipsis-h": [512, 512, [], "f141", "M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z"], + "ellipsis-v": [192, 512, [], "f142", "M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z"], + "envelope": [512, 512, [], "f0e0", "M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"], + "envelope-open": [512, 512, [], "f2b6", "M512 464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V200.724a48 48 0 0 1 18.387-37.776c24.913-19.529 45.501-35.365 164.2-121.511C199.412 29.17 232.797-.347 256 .003c23.198-.354 56.596 29.172 73.413 41.433 118.687 86.137 139.303 101.995 164.2 121.512A48 48 0 0 1 512 200.724V464zm-65.666-196.605c-2.563-3.728-7.7-4.595-11.339-1.907-22.845 16.873-55.462 40.705-105.582 77.079-16.825 12.266-50.21 41.781-73.413 41.43-23.211.344-56.559-29.143-73.413-41.43-50.114-36.37-82.734-60.204-105.582-77.079-3.639-2.688-8.776-1.821-11.339 1.907l-9.072 13.196a7.998 7.998 0 0 0 1.839 10.967c22.887 16.899 55.454 40.69 105.303 76.868 20.274 14.781 56.524 47.813 92.264 47.573 35.724.242 71.961-32.771 92.263-47.573 49.85-36.179 82.418-59.97 105.303-76.868a7.998 7.998 0 0 0 1.839-10.967l-9.071-13.196z"], + "envelope-square": [448, 512, [], "f199", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM178.117 262.104C87.429 196.287 88.353 196.121 64 177.167V152c0-13.255 10.745-24 24-24h272c13.255 0 24 10.745 24 24v25.167c-24.371 18.969-23.434 19.124-114.117 84.938-10.5 7.655-31.392 26.12-45.883 25.894-14.503.218-35.367-18.227-45.883-25.895zM384 217.775V360c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V217.775c13.958 10.794 33.329 25.236 95.303 70.214 14.162 10.341 37.975 32.145 64.694 32.01 26.887.134 51.037-22.041 64.72-32.025 61.958-44.965 81.325-59.406 95.283-70.199z"], + "equals": [448, 512, [], "f52c", "M416 304H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32zm0-192H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"], + "eraser": [512, 512, [], "f12d", "M497.941 273.941c18.745-18.745 18.745-49.137 0-67.882l-160-160c-18.745-18.745-49.136-18.746-67.883 0l-256 256c-18.745 18.745-18.745 49.137 0 67.882l96 96A48.004 48.004 0 0 0 144 480h356c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H355.883l142.058-142.059zm-302.627-62.627l137.373 137.373L265.373 416H150.628l-80-80 124.686-124.686z"], + "euro-sign": [320, 512, [], "f153", "M310.706 413.765c-1.314-6.63-7.835-10.872-14.424-9.369-10.692 2.439-27.422 5.413-45.426 5.413-56.763 0-101.929-34.79-121.461-85.449h113.689a12 12 0 0 0 11.708-9.369l6.373-28.36c1.686-7.502-4.019-14.631-11.708-14.631H115.22c-1.21-14.328-1.414-28.287.137-42.245H261.95a12 12 0 0 0 11.723-9.434l6.512-29.755c1.638-7.484-4.061-14.566-11.723-14.566H130.184c20.633-44.991 62.69-75.03 117.619-75.03 14.486 0 28.564 2.25 37.851 4.145 6.216 1.268 12.347-2.498 14.002-8.623l11.991-44.368c1.822-6.741-2.465-13.616-9.326-14.917C290.217 34.912 270.71 32 249.635 32 152.451 32 74.03 92.252 45.075 176H12c-6.627 0-12 5.373-12 12v29.755c0 6.627 5.373 12 12 12h21.569c-1.009 13.607-1.181 29.287-.181 42.245H12c-6.627 0-12 5.373-12 12v28.36c0 6.627 5.373 12 12 12h30.114C67.139 414.692 145.264 480 249.635 480c26.301 0 48.562-4.544 61.101-7.788 6.167-1.595 10.027-7.708 8.788-13.957l-8.818-44.49z"], + "exchange-alt": [512, 512, [], "f362", "M0 168v-16c0-13.255 10.745-24 24-24h360V80c0-21.367 25.899-32.042 40.971-16.971l80 80c9.372 9.373 9.372 24.569 0 33.941l-80 80C409.956 271.982 384 261.456 384 240v-48H24c-13.255 0-24-10.745-24-24zm488 152H128v-48c0-21.314-25.862-32.08-40.971-16.971l-80 80c-9.372 9.373-9.372 24.569 0 33.941l80 80C102.057 463.997 128 453.437 128 432v-48h360c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z"], + "exclamation": [192, 512, [], "f12a", "M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z"], + "exclamation-circle": [512, 512, [], "f06a", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"], + "exclamation-triangle": [576, 512, [], "f071", "M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"], + "expand": [448, 512, [], "f065", "M0 180V56c0-13.3 10.7-24 24-24h124c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H64v84c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12zM288 44v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V56c0-13.3-10.7-24-24-24H300c-6.6 0-12 5.4-12 12zm148 276h-40c-6.6 0-12 5.4-12 12v84h-84c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24V332c0-6.6-5.4-12-12-12zM160 468v-40c0-6.6-5.4-12-12-12H64v-84c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v124c0 13.3 10.7 24 24 24h124c6.6 0 12-5.4 12-12z"], + "expand-arrows-alt": [448, 512, [], "f31e", "M448.1 344v112c0 13.3-10.7 24-24 24h-112c-21.4 0-32.1-25.9-17-41l36.2-36.2L224 295.6 116.8 402.9 153 439c15.1 15.1 4.4 41-17 41H24c-13.3 0-24-10.7-24-24V344c0-21.4 25.9-32.1 41-17l36.2 36.2L184.5 256 77.2 148.7 41 185c-15.1 15.1-41 4.4-41-17V56c0-13.3 10.7-24 24-24h112c21.4 0 32.1 25.9 17 41l-36.2 36.2L224 216.4l107.3-107.3L295.1 73c-15.1-15.1-4.4-41 17-41h112c13.3 0 24 10.7 24 24v112c0 21.4-25.9 32.1-41 17l-36.2-36.2L263.6 256l107.3 107.3 36.2-36.2c15.1-15.2 41-4.5 41 16.9z"], + "external-link-alt": [576, 512, [], "f35d", "M576 24v127.984c0 21.461-25.96 31.98-40.971 16.971l-35.707-35.709-243.523 243.523c-9.373 9.373-24.568 9.373-33.941 0l-22.627-22.627c-9.373-9.373-9.373-24.569 0-33.941L442.756 76.676l-35.703-35.705C391.982 25.9 402.656 0 424.024 0H552c13.255 0 24 10.745 24 24zM407.029 270.794l-16 16A23.999 23.999 0 0 0 384 303.765V448H64V128h264a24.003 24.003 0 0 0 16.97-7.029l16-16C376.089 89.851 365.381 64 344 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V287.764c0-21.382-25.852-32.09-40.971-16.97z"], + "external-link-square-alt": [448, 512, [], "f360", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-88 16H248.029c-21.313 0-32.08 25.861-16.971 40.971l31.984 31.987L67.515 364.485c-4.686 4.686-4.686 12.284 0 16.971l31.029 31.029c4.687 4.686 12.285 4.686 16.971 0l195.526-195.526 31.988 31.991C358.058 263.977 384 253.425 384 231.979V120c0-13.255-10.745-24-24-24z"], + "eye": [576, 512, [], "f06e", "M569.354 231.631C512.969 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-75.162 0-136-60.827-136-136 0-75.162 60.826-136 136-136 75.162 0 136 60.826 136 136 0 75.162-60.826 136-136 136zm104-136c0 57.438-46.562 104-104 104s-104-46.562-104-104c0-17.708 4.431-34.379 12.236-48.973l-.001.032c0 23.651 19.173 42.823 42.824 42.823s42.824-19.173 42.824-42.823c0-23.651-19.173-42.824-42.824-42.824l-.032.001C253.621 156.431 270.292 152 288 152c57.438 0 104 46.562 104 104z"], + "eye-dropper": [512, 512, [], "f1fb", "M50.75 333.25c-12 12-18.75 28.28-18.75 45.26V424L0 480l32 32 56-32h45.49c16.97 0 33.25-6.74 45.25-18.74l126.64-126.62-128-128L50.75 333.25zM483.88 28.12c-37.47-37.5-98.28-37.5-135.75 0l-77.09 77.09-13.1-13.1c-9.44-9.44-24.65-9.31-33.94 0l-40.97 40.97c-9.37 9.37-9.37 24.57 0 33.94l161.94 161.94c9.44 9.44 24.65 9.31 33.94 0L419.88 288c9.37-9.37 9.37-24.57 0-33.94l-13.1-13.1 77.09-77.09c37.51-37.48 37.51-98.26.01-135.75z"], + "eye-slash": [576, 512, [], "f070", "M286.693 391.984l32.579 46.542A333.958 333.958 0 0 1 288 440C168.19 440 63.031 376.051 6.646 280.369a47.999 47.999 0 0 1 0-48.739c24.023-40.766 56.913-75.775 96.024-102.537l57.077 81.539C154.736 224.82 152 240.087 152 256c0 74.736 60.135 135.282 134.693 135.984zm282.661-111.615c-31.667 53.737-78.747 97.46-135.175 125.475l.011.015 41.47 59.2c7.6 10.86 4.96 25.82-5.9 33.42l-13.11 9.18c-10.86 7.6-25.82 4.96-33.42-5.9L100.34 46.94c-7.6-10.86-4.96-25.82 5.9-33.42l13.11-9.18c10.86-7.6 25.82-4.96 33.42 5.9l51.038 72.617C230.68 75.776 258.905 72 288 72c119.81 0 224.969 63.949 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM424 256c0-75.174-60.838-136-136-136-17.939 0-35.056 3.473-50.729 9.772l19.299 27.058c25.869-8.171 55.044-6.163 80.4 7.41h-.03c-23.65 0-42.82 19.17-42.82 42.82 0 23.626 19.147 42.82 42.82 42.82 23.65 0 42.82-19.17 42.82-42.82v-.03c18.462 34.49 16.312 77.914-8.25 110.95v.01l19.314 27.061C411.496 321.2 424 290.074 424 256zM262.014 356.727l-77.53-110.757c-5.014 52.387 29.314 98.354 77.53 110.757z"], + "fast-backward": [512, 512, [], "f049", "M0 436V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v151.9L235.5 71.4C256.1 54.3 288 68.6 288 96v131.9L459.5 71.4C480.1 54.3 512 68.6 512 96v320c0 27.4-31.9 41.7-52.5 24.6L288 285.3V416c0 27.4-31.9 41.7-52.5 24.6L64 285.3V436c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12z"], + "fast-forward": [512, 512, [], "f050", "M512 76v360c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V284.1L276.5 440.6c-20.6 17.2-52.5 2.8-52.5-24.6V284.1L52.5 440.6C31.9 457.8 0 443.4 0 416V96c0-27.4 31.9-41.7 52.5-24.6L224 226.8V96c0-27.4 31.9-41.7 52.5-24.6L448 226.8V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12z"], + "fax": [512, 512, [], "f1ac", "M128 144v320c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V144c0-26.51 21.49-48 48-48h32c26.51 0 48 21.49 48 48zm384 64v256c0 26.51-21.49 48-48 48H192c-26.51 0-48-21.49-48-48V40c0-22.091 17.909-40 40-40h207.432a39.996 39.996 0 0 1 28.284 11.716l48.569 48.569A39.999 39.999 0 0 1 480 88.568v74.174c18.641 6.591 32 24.36 32 45.258zm-320-16h240V96h-24c-13.203 0-24-10.797-24-24V48H192v144zm96 204c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm128 128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40z"], + "feather": [512, 512, [], "f52d", "M467.14 44.84c-62.55-62.48-161.67-64.78-252.28 25.73-78.61 78.52-60.98 60.92-85.75 85.66-60.46 60.39-70.39 150.83-63.64 211.17l178.44-178.25c6.26-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.6 9.37 33.98 0l66.1-66.03C159.42 454.65 279 457.11 353.95 384h-98.19l147.57-49.14c49.99-49.93 36.38-36.18 46.31-46.86h-97.78l131.54-43.8c45.44-74.46 34.31-148.84-16.26-199.36z"], + "feather-alt": [512, 512, [], "f56b", "M512 0C460.22 3.56 96.44 38.2 71.01 287.61c-3.09 26.66-4.84 53.44-5.99 80.24l178.87-178.69c6.25-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.59 9.37 33.98 0l57.13-57.07c42.09-.14 84.15-2.53 125.96-7.36 53.48-5.44 97.02-26.47 132.58-56.54H255.74l146.79-48.88c11.25-14.89 21.37-30.71 30.45-47.12h-81.14l106.54-53.21C500.29 132.86 510.19 26.26 512 0z"], + "female": [256, 512, [], "f182", "M128 0c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64S92.654 0 128 0m119.283 354.179l-48-192A24 24 0 0 0 176 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H80a24 24 0 0 0-23.283 18.179l-48 192C4.935 369.305 16.383 384 32 384h56v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V384h56c15.591 0 27.071-14.671 23.283-29.821z"], + "fighter-jet": [640, 512, [], "f0fb", "M544 224l-128-16-48-16h-24L227.158 44h39.509C278.333 44 288 41.375 288 38s-9.667-6-21.333-6H152v12h16v164h-48l-66.667-80H18.667L8 138.667V208h8v16h48v2.666l-64 8v42.667l64 8V288H16v16H8v69.333L18.667 384h34.667L120 304h48v164h-16v12h114.667c11.667 0 21.333-2.625 21.333-6s-9.667-6-21.333-6h-39.509L344 320h24l48-16 128-16c96-21.333 96-26.583 96-32 0-5.417 0-10.667-96-32z"], + "file": [384, 512, [], "f15b", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "file-alt": [384, 512, [], "f15c", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "file-archive": [384, 512, [], "f1c6", "M224 136V0h-63.6v32h-32V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM95.9 32h32v32h-32V32zm32.3 384c-33.2 0-58-30.4-51.4-62.9L96.4 256v-32h32v-32h-32v-32h32v-32h-32V96h32V64h32v32h-32v32h32v32h-32v32h32v32h-32v32h22.1c5.7 0 10.7 4.1 11.8 9.7l17.3 87.7c6.4 32.4-18.4 62.6-51.4 62.6zm32.7-53c0 14.9-14.5 27-32.4 27S96 378 96 363c0-14.9 14.5-27 32.4-27s32.5 12.1 32.5 27zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "file-audio": [384, 512, [], "f1c7", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "file-code": [384, 512, [], "f1c9", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zM123.206 400.505a5.4 5.4 0 0 1-7.633.246l-64.866-60.812a5.4 5.4 0 0 1 0-7.879l64.866-60.812a5.4 5.4 0 0 1 7.633.246l19.579 20.885a5.4 5.4 0 0 1-.372 7.747L101.65 336l40.763 35.874a5.4 5.4 0 0 1 .372 7.747l-19.579 20.884zm51.295 50.479l-27.453-7.97a5.402 5.402 0 0 1-3.681-6.692l61.44-211.626a5.402 5.402 0 0 1 6.692-3.681l27.452 7.97a5.4 5.4 0 0 1 3.68 6.692l-61.44 211.626a5.397 5.397 0 0 1-6.69 3.681zm160.792-111.045l-64.866 60.812a5.4 5.4 0 0 1-7.633-.246l-19.58-20.885a5.4 5.4 0 0 1 .372-7.747L284.35 336l-40.763-35.874a5.4 5.4 0 0 1-.372-7.747l19.58-20.885a5.4 5.4 0 0 1 7.633-.246l64.866 60.812a5.4 5.4 0 0 1-.001 7.879z"], + "file-contract": [384, 512, [], "f56c", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm192.81 248H304c8.84 0 16 7.16 16 16s-7.16 16-16 16h-47.19c-16.45 0-31.27-9.14-38.64-23.86-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34a15.986 15.986 0 0 1-14.31 8.84c-.38 0-.75-.02-1.14-.05-6.45-.45-12-4.75-14.03-10.89L144 354.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.77-16.19 54.05-9.7 66 14.16 2.02 4.06 5.96 6.5 10.16 6.5zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"], + "file-download": [384, 512, [], "f56d", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm76.45 211.36l-96.42 95.7c-6.65 6.61-17.39 6.61-24.04 0l-96.42-95.7C73.42 337.29 80.54 320 94.82 320H160v-80c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v80h65.18c14.28 0 21.4 17.29 11.27 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"], + "file-excel": [384, 512, [], "f1c3", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm60.1 106.5L224 336l60.1 93.5c5.1 8-.6 18.5-10.1 18.5h-34.9c-4.4 0-8.5-2.4-10.6-6.3C208.9 405.5 192 373 192 373c-6.4 14.8-10 20-36.6 68.8-2.1 3.9-6.1 6.3-10.5 6.3H110c-9.5 0-15.2-10.5-10.1-18.5l60.3-93.5-60.3-93.5c-5.2-8 .6-18.5 10.1-18.5h34.8c4.4 0 8.5 2.4 10.6 6.3 26.1 48.8 20 33.6 36.6 68.5 0 0 6.1-11.7 36.6-68.5 2.1-3.9 6.2-6.3 10.6-6.3H274c9.5-.1 15.2 10.4 10.1 18.4zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "file-export": [576, 512, [], "f56e", "M384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zM192 336v-32c0-8.84 7.16-16 16-16h176V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V352H208c-8.84 0-16-7.16-16-16zm379.05-28.02l-95.7-96.43c-10.06-10.14-27.36-3.01-27.36 11.27V288H384v64h63.99v65.18c0 14.28 17.29 21.41 27.36 11.27l95.7-96.42c6.6-6.66 6.6-17.4 0-24.05z"], + "file-image": [384, 512, [], "f1c5", "M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z"], + "file-import": [512, 512, [], "f56f", "M16 288c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h112v-64H16zm336-152V0H152c-13.3 0-24 10.7-24 24v264h127.99v-65.18c0-14.28 17.29-21.41 27.36-11.27l95.7 96.43c6.6 6.65 6.6 17.39 0 24.04l-95.7 96.42c-10.06 10.14-27.36 3.01-27.36-11.27V352H128v136c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H376c-13.2 0-24-10.8-24-24zm153-31L407.1 7c-4.5-4.5-10.6-7-17-7H384v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"], + "file-invoice": [384, 512, [], "f570", "M288 256H96v64h192v-64zm89-151L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm256 304c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-200v96c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-96c0-8.84 7.16-16 16-16h224c8.84 0 16 7.16 16 16z"], + "file-invoice-dollar": [384, 512, [], "f571", "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 80v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8zm144 263.88V440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-24.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V232c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v24.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07z"], + "file-medical": [384, 512, [], "f477", "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 160v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8z"], + "file-medical-alt": [448, 512, [], "f478", "M288 136V0H88C74.7 0 64 10.7 64 24v232H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h140.9c3 0 5.8 1.7 7.2 4.4l19.9 39.8 56.8-113.7c2.9-5.9 11.4-5.9 14.3 0l34.7 69.5H352c8.8 0 16 7.2 16 16s-7.2 16-16 16h-89.9L240 275.8l-56.8 113.7c-2.9 5.9-11.4 5.9-14.3 0L134.1 320H64v168c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H312c-13.2 0-24-10.8-24-24zm153-31L343.1 7c-4.5-4.5-10.6-7-17-7H320v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"], + "file-pdf": [384, 512, [], "f1c1", "M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z"], + "file-powerpoint": [384, 512, [], "f1c4", "M193.7 271.2c8.8 0 15.5 2.7 20.3 8.1 9.6 10.9 9.8 32.7-.2 44.1-4.9 5.6-11.9 8.5-21.1 8.5h-26.9v-60.7h27.9zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm53 165.2c0 90.3-88.8 77.6-111.1 77.6V436c0 6.6-5.4 12-12 12h-30.8c-6.6 0-12-5.4-12-12V236.2c0-6.6 5.4-12 12-12h81c44.5 0 72.9 32.8 72.9 77z"], + "file-prescription": [384, 512, [], "f572", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm68.53 179.48l11.31 11.31c6.25 6.25 6.25 16.38 0 22.63l-29.9 29.9L304 409.38c6.25 6.25 6.25 16.38 0 22.63l-11.31 11.31c-6.25 6.25-16.38 6.25-22.63 0L240 413.25l-30.06 30.06c-6.25 6.25-16.38 6.25-22.63 0L176 432c-6.25-6.25-6.25-16.38 0-22.63l30.06-30.06L146.74 320H128v48c0 8.84-7.16 16-16 16H96c-8.84 0-16-7.16-16-16V208c0-8.84 7.16-16 16-16h80c35.35 0 64 28.65 64 64 0 24.22-13.62 45.05-33.46 55.92L240 345.38l29.9-29.9c6.25-6.25 16.38-6.25 22.63 0zM176 272h-48v-32h48c8.82 0 16 7.18 16 16s-7.18 16-16 16zm208-150.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "file-signature": [576, 512, [], "f573", "M218.17 424.14c-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34c-6.37 12.78-25.03 11.37-29.48-2.09L144 386.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.75-16.19 54.06-9.7 66 14.16 1.89 3.78 5.49 5.95 9.36 6.26v-82.12l128-127.09V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24v-40l-128-.11c-16.12-.31-30.58-9.28-37.83-23.75zM384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zm-96 225.06V416h68.99l161.68-162.78-67.88-67.88L288 346.96zm280.54-179.63l-31.87-31.87c-9.94-9.94-26.07-9.94-36.01 0l-27.25 27.25 67.88 67.88 27.25-27.25c9.95-9.94 9.95-26.07 0-36.01z"], + "file-upload": [384, 512, [], "f574", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm65.18 216.01H224v80c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-80H94.82c-14.28 0-21.41-17.29-11.27-27.36l96.42-95.7c6.65-6.61 17.39-6.61 24.04 0l96.42 95.7c10.15 10.07 3.03 27.36-11.25 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"], + "file-video": [384, 512, [], "f1c8", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z"], + "file-word": [384, 512, [], "f1c2", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm57.1 120H305c7.7 0 13.4 7.1 11.7 14.7l-38 168c-1.2 5.5-6.1 9.3-11.7 9.3h-38c-5.5 0-10.3-3.8-11.6-9.1-25.8-103.5-20.8-81.2-25.6-110.5h-.5c-1.1 14.3-2.4 17.4-25.6 110.5-1.3 5.3-6.1 9.1-11.6 9.1H117c-5.6 0-10.5-3.9-11.7-9.4l-37.8-168c-1.7-7.5 4-14.6 11.7-14.6h24.5c5.7 0 10.7 4 11.8 9.7 15.6 78 20.1 109.5 21 122.2 1.6-10.2 7.3-32.7 29.4-122.7 1.3-5.4 6.1-9.1 11.7-9.1h29.1c5.6 0 10.4 3.8 11.7 9.2 24 100.4 28.8 124 29.6 129.4-.2-11.2-2.6-17.8 21.6-129.2 1-5.6 5.9-9.5 11.5-9.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"], + "fill": [512, 512, [], "f575", "M502.63 217.06L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.77c-6.24-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.63l86.19 86.18-94.76 94.76c-37.49 37.49-37.49 98.26 0 135.75l117.19 117.19c18.75 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.88-28.12l221.57-221.57c12.49-12.5 12.49-32.76 0-45.26zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.61 58.6c12.49 12.49 32.75 12.49 45.24 0 12.49-12.49 12.49-32.75 0-45.24l-58.61-58.6 58.95-58.95 162.45 162.44-48.35 48.34z"], + "fill-drip": [576, 512, [], "f576", "M512 320s-64 92.65-64 128c0 35.35 28.66 64 64 64s64-28.65 64-64-64-128-64-128zm-9.37-102.94L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.76c-6.25-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.62l86.19 86.18-94.76 94.76c-37.49 37.48-37.49 98.26 0 135.75l117.19 117.19c18.74 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.87-28.12l221.57-221.57c12.5-12.5 12.5-32.75.01-45.25zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.6 58.6c12.49 12.49 32.75 12.49 45.24 0s12.49-32.75 0-45.24l-58.6-58.6 58.95-58.95 162.44 162.44-48.34 48.34z"], + "film": [512, 512, [], "f008", "M488 64h-8v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V64H96v20c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12V64h-8C10.7 64 0 74.7 0 88v336c0 13.3 10.7 24 24 24h8v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h320v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h8c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM96 372c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm272 208c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm0-168c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm112 152c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z"], + "filter": [512, 512, [], "f0b0", "M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z"], + "fingerprint": [512, 512, [], "f577", "M256.12 245.96c-13.25 0-24 10.74-24 24 1.14 72.25-8.14 141.9-27.7 211.55-2.73 9.72 2.15 30.49 23.12 30.49 10.48 0 20.11-6.92 23.09-17.52 13.53-47.91 31.04-125.41 29.48-224.52.01-13.25-10.73-24-23.99-24zm-.86-81.73C194 164.16 151.25 211.3 152.1 265.32c.75 47.94-3.75 95.91-13.37 142.55-2.69 12.98 5.67 25.69 18.64 28.36 13.05 2.67 25.67-5.66 28.36-18.64 10.34-50.09 15.17-101.58 14.37-153.02-.41-25.95 19.92-52.49 54.45-52.34 31.31.47 57.15 25.34 57.62 55.47.77 48.05-2.81 96.33-10.61 143.55-2.17 13.06 6.69 25.42 19.76 27.58 19.97 3.33 26.81-15.1 27.58-19.77 8.28-50.03 12.06-101.21 11.27-152.11-.88-55.8-47.94-101.88-104.91-102.72zm-110.69-19.78c-10.3-8.34-25.37-6.8-33.76 3.48-25.62 31.5-39.39 71.28-38.75 112 .59 37.58-2.47 75.27-9.11 112.05-2.34 13.05 6.31 25.53 19.36 27.89 20.11 3.5 27.07-14.81 27.89-19.36 7.19-39.84 10.5-80.66 9.86-121.33-.47-29.88 9.2-57.88 28-80.97 8.35-10.28 6.79-25.39-3.49-33.76zm109.47-62.33c-15.41-.41-30.87 1.44-45.78 4.97-12.89 3.06-20.87 15.98-17.83 28.89 3.06 12.89 16 20.83 28.89 17.83 11.05-2.61 22.47-3.77 34-3.69 75.43 1.13 137.73 61.5 138.88 134.58.59 37.88-1.28 76.11-5.58 113.63-1.5 13.17 7.95 25.08 21.11 26.58 16.72 1.95 25.51-11.88 26.58-21.11a929.06 929.06 0 0 0 5.89-119.85c-1.56-98.75-85.07-180.33-186.16-181.83zm252.07 121.45c-2.86-12.92-15.51-21.2-28.61-18.27-12.94 2.86-21.12 15.66-18.26 28.61 4.71 21.41 4.91 37.41 4.7 61.6-.11 13.27 10.55 24.09 23.8 24.2h.2c13.17 0 23.89-10.61 24-23.8.18-22.18.4-44.11-5.83-72.34zm-40.12-90.72C417.29 43.46 337.6 1.29 252.81.02 183.02-.82 118.47 24.91 70.46 72.94 24.09 119.37-.9 181.04.14 246.65l-.12 21.47c-.39 13.25 10.03 24.31 23.28 24.69.23.02.48.02.72.02 12.92 0 23.59-10.3 23.97-23.3l.16-23.64c-.83-52.5 19.16-101.86 56.28-139 38.76-38.8 91.34-59.67 147.68-58.86 69.45 1.03 134.73 35.56 174.62 92.39 7.61 10.86 22.56 13.45 33.42 5.86 10.84-7.62 13.46-22.59 5.84-33.43z"], + "fire": [384, 512, [], "f06d", "M216 23.858c0-23.802-30.653-32.765-44.149-13.038C48 191.851 224 200 224 288c0 35.629-29.114 64.458-64.85 63.994C123.98 351.538 96 322.22 96 287.046v-85.51c0-21.703-26.471-32.225-41.432-16.504C27.801 213.158 0 261.332 0 320c0 105.869 86.131 192 192 192s192-86.131 192-192c0-170.29-168-193.003-168-296.142z"], + "fire-extinguisher": [448, 512, [], "f134", "M434.027 26.329l-168 28C254.693 56.218 256 67.8 256 72h-58.332C208.353 36.108 181.446 0 144 0c-39.435 0-66.368 39.676-52.228 76.203-52.039 13.051-75.381 54.213-90.049 90.884-4.923 12.307 1.063 26.274 13.37 31.197 12.317 4.926 26.279-1.075 31.196-13.37C75.058 112.99 106.964 120 168 120v27.076c-41.543 10.862-72 49.235-72 94.129V488c0 13.255 10.745 24 24 24h144c13.255 0 24-10.745 24-24V240c0-44.731-30.596-82.312-72-92.97V120h40c0 2.974-1.703 15.716 10.027 17.671l168 28C441.342 166.89 448 161.25 448 153.834V38.166c0-7.416-6.658-13.056-13.973-11.837zM144 72c-8.822 0-16-7.178-16-16s7.178-16 16-16 16 7.178 16 16-7.178 16-16 16z"], + "first-aid": [576, 512, [], "f479", "M0 80v352c0 26.5 21.5 48 48 48h48V32H48C21.5 32 0 53.5 0 80zm128 400h320V32H128v448zm64-248c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48zM528 32h-48v448h48c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"], + "fish": [576, 512, [], "f578", "M327.1 96c-89.97 0-168.54 54.77-212.27 101.63L27.5 131.58c-12.13-9.18-30.24.6-27.14 14.66L24.54 256 .35 365.77c-3.1 14.06 15.01 23.83 27.14 14.66l87.33-66.05C158.55 361.23 237.13 416 327.1 416 464.56 416 576 288 576 256S464.56 96 327.1 96zm87.43 184c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24 13.26 0 24 10.74 24 24 0 13.25-10.75 24-24 24z"], + "flag": [512, 512, [], "f024", "M349.565 98.783C295.978 98.783 251.721 64 184.348 64c-24.955 0-47.309 4.384-68.045 12.013a55.947 55.947 0 0 0 3.586-23.562C118.117 24.015 94.806 1.206 66.338.048 34.345-1.254 8 24.296 8 56c0 19.026 9.497 35.825 24 45.945V488c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-94.4c28.311-12.064 63.582-22.122 114.435-22.122 53.588 0 97.844 34.783 165.217 34.783 48.169 0 86.667-16.294 122.505-40.858C506.84 359.452 512 349.571 512 339.045v-243.1c0-23.393-24.269-38.87-45.485-29.016-34.338 15.948-76.454 31.854-116.95 31.854z"], + "flag-checkered": [512, 512, [], "f11e", "M466.515 66.928C487.731 57.074 512 72.551 512 95.944v243.1c0 10.526-5.161 20.407-13.843 26.358-35.837 24.564-74.335 40.858-122.505 40.858-67.373 0-111.63-34.783-165.217-34.783-50.853 0-86.124 10.058-114.435 22.122V488c0 13.255-10.745 24-24 24H56c-13.255 0-24-10.745-24-24V101.945C17.497 91.825 8 75.026 8 56 8 24.296 34.345-1.254 66.338.048c28.468 1.158 51.779 23.968 53.551 52.404.52 8.342-.81 16.31-3.586 23.562C137.039 68.384 159.393 64 184.348 64c67.373 0 111.63 34.783 165.217 34.783 40.496 0 82.612-15.906 116.95-31.855zM96 134.63v70.49c29-10.67 51.18-17.83 73.6-20.91v-71.57c-23.5 2.17-40.44 9.79-73.6 21.99zm220.8 9.19c-26.417-4.672-49.886-13.979-73.6-21.34v67.42c24.175 6.706 47.566 16.444 73.6 22.31v-68.39zm-147.2 40.39v70.04c32.796-2.978 53.91-.635 73.6 3.8V189.9c-25.247-7.035-46.581-9.423-73.6-5.69zm73.6 142.23c26.338 4.652 49.732 13.927 73.6 21.34v-67.41c-24.277-6.746-47.54-16.45-73.6-22.32v68.39zM96 342.1c23.62-8.39 47.79-13.84 73.6-16.56v-71.29c-26.11 2.35-47.36 8.04-73.6 17.36v70.49zm368-221.6c-21.3 8.85-46.59 17.64-73.6 22.47v71.91c27.31-4.36 50.03-14.1 73.6-23.89V120.5zm0 209.96v-70.49c-22.19 14.2-48.78 22.61-73.6 26.02v71.58c25.07-2.38 48.49-11.04 73.6-27.11zM316.8 212.21v68.16c25.664 7.134 46.616 9.342 73.6 5.62v-71.11c-25.999 4.187-49.943 2.676-73.6-2.67z"], + "flask": [448, 512, [], "f0c3", "M437.2 403.5L320 215V64h8c13.3 0 24-10.7 24-24V24c0-13.3-10.7-24-24-24H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h8v151L10.8 403.5C-18.5 450.6 15.3 512 70.9 512h306.2c55.7 0 89.4-61.5 60.1-108.5zM137.9 320l48.2-77.6c3.7-5.2 5.8-11.6 5.8-18.4V64h64v160c0 6.9 2.2 13.2 5.8 18.4l48.2 77.6h-172z"], + "flushed": [496, 512, [], "f579", "M344 200c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-192 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM80 224c0-39.8 32.2-72 72-72s72 32.2 72 72-32.2 72-72 72-72-32.2-72-72zm232 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-104c-39.8 0-72-32.2-72-72s32.2-72 72-72 72 32.2 72 72-32.2 72-72 72z"], + "folder": [512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z"], + "folder-open": [576, 512, [], "f07c", "M572.694 292.093L500.27 416.248A63.997 63.997 0 0 1 444.989 448H45.025c-18.523 0-30.064-20.093-20.731-36.093l72.424-124.155A64 64 0 0 1 152 256h399.964c18.523 0 30.064 20.093 20.73 36.093zM152 224h328v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v278.046l69.077-118.418C86.214 242.25 117.989 224 152 224z"], + "font": [448, 512, [], "f031", "M152 416h-24.013l26.586-80.782H292.8L319.386 416H296c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-26.739L275.495 42.746A16 16 0 0 0 260.382 32h-72.766a16 16 0 0 0-15.113 10.746L42.739 416H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm64.353-271.778c4.348-15.216 6.61-28.156 7.586-34.644.839 6.521 2.939 19.476 7.727 34.706l41.335 124.006h-98.619l41.971-124.068z"], + "font-awesome-logo-full": [3992, 512, ["Font Awesome"], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z"], + "football-ball": [496, 512, [], "f44e", "M481.5 60.3c-4.8-18.2-19.1-32.5-37.3-37.4C420.3 16.5 383 8.9 339.4 8L496 164.8c-.8-43.5-8.2-80.6-14.5-104.5zm-467 391.4c4.8 18.2 19.1 32.5 37.3 37.4 23.9 6.4 61.2 14 104.8 14.9L0 347.2c.8 43.5 8.2 80.6 14.5 104.5zM4.2 283.4L220.4 500c132.5-19.4 248.8-118.7 271.5-271.4L275.6 12C143.1 31.4 26.8 130.7 4.2 283.4zm317.3-123.6c3.1-3.1 8.2-3.1 11.3 0l11.3 11.3c3.1 3.1 3.1 8.2 0 11.3l-28.3 28.3 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-22.6 22.7 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L248 278.6l-22.6 22.6 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-28.3 28.3c-3.1 3.1-8.2 3.1-11.3 0l-11.3-11.3c-3.1-3.1-3.1-8.2 0-11.3l28.3-28.3-28.3-28.2c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 28.3-28.5z"], + "forward": [512, 512, [], "f04e", "M500.5 231.4l-192-160C287.9 54.3 256 68.6 256 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2zm-256 0l-192-160C31.9 54.3 0 68.6 0 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2z"], + "frog": [576, 512, [], "f52e", "M446.53 97.43C439.67 60.23 407.19 32 368 32c-39.23 0-71.72 28.29-78.54 65.54C126.75 112.96-.5 250.12 0 416.98.11 451.9 29.08 480 64 480h304c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-79.49l35.8-48.33c24.14-36.23 10.35-88.28-33.71-106.6-23.89-9.93-51.55-4.65-72.24 10.88l-32.76 24.59c-7.06 5.31-17.09 3.91-22.41-3.19-5.3-7.08-3.88-17.11 3.19-22.41l34.78-26.09c36.84-27.66 88.28-27.62 125.13 0 10.87 8.15 45.87 39.06 40.8 93.21L469.62 480H560c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-53.63l-98.52-104.68 154.44-86.65A58.16 58.16 0 0 0 576 189.94c0-21.4-11.72-40.95-30.48-51.23-40.56-22.22-98.99-41.28-98.99-41.28zM368 136c-13.26 0-24-10.75-24-24 0-13.26 10.74-24 24-24 13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24z"], + "frown": [496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm170.2 218.2C315.8 367.4 282.9 352 248 352s-67.8 15.4-90.2 42.2c-13.5 16.3-38.1-4.2-24.6-20.5C161.7 339.6 203.6 320 248 320s86.3 19.6 114.7 53.8c13.6 16.2-11 36.7-24.5 20.4z"], + "frown-open": [496, 512, [], "f57a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm187.3 183.3c-31.2-9.6-59.4-15.3-75.3-15.3s-44.1 5.7-75.3 15.3c-11.5 3.5-22.5-6.3-20.5-18.1 7-40 60.1-61.2 95.8-61.2s88.8 21.3 95.8 61.2c2 11.9-9.1 21.6-20.5 18.1zM328 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "futbol": [512, 512, [], "f1e3", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-48 0l-.003-.282-26.064 22.741-62.679-58.5 16.454-84.355 34.303 3.072c-24.889-34.216-60.004-60.089-100.709-73.141l13.651 31.939L256 139l-74.953-41.525 13.651-31.939c-40.631 13.028-75.78 38.87-100.709 73.141l34.565-3.073 16.192 84.355-62.678 58.5-26.064-22.741-.003.282c0 43.015 13.497 83.952 38.472 117.991l7.704-33.897 85.138 10.447 36.301 77.826-29.902 17.786c40.202 13.122 84.29 13.148 124.572 0l-29.902-17.786 36.301-77.826 85.138-10.447 7.704 33.897C442.503 339.952 456 299.015 456 256zm-248.102 69.571l-29.894-91.312L256 177.732l77.996 56.527-29.622 91.312h-96.476z"], + "gamepad": [640, 512, [], "f11b", "M480 96H160C71.6 96 0 167.6 0 256s71.6 160 160 160c44.8 0 85.2-18.4 114.2-48h91.5c29 29.6 69.5 48 114.2 48 88.4 0 160-71.6 160-160S568.4 96 480 96zM256 276c0 6.6-5.4 12-12 12h-52v52c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-52H76c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h52v-52c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h52c6.6 0 12 5.4 12 12v40zm184 68c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-80c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"], + "gas-pump": [512, 512, [], "f52f", "M336 448H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm157.2-340.7l-81-81c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-6.2 6.2-6.2 16.4 0 22.6L416 97.9V160c0 28.1 20.9 51.3 48 55.2V376c0 13.2-10.8 24-24 24s-24-10.8-24-24v-32c0-48.6-39.4-88-88-88h-8V64c0-35.3-28.7-64-64-64H96C60.7 0 32 28.7 32 64v352h288V304h8c22.1 0 40 17.9 40 40v27.8c0 37.7 27 72 64.5 75.9 43 4.3 79.5-29.5 79.5-71.7V152.6c0-17-6.8-33.3-18.8-45.3zM256 192H96V64h160v128z"], + "gavel": [512, 512, [], "f0e3", "M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z"], + "gem": [576, 512, [], "f3a5", "M485.5 0L576 160H474.9L405.7 0h79.8zm-128 0l69.2 160H149.3L218.5 0h139zm-267 0h79.8l-69.2 160H0L90.5 0zM0 192h100.7l123 251.7c1.5 3.1-2.7 5.9-5 3.3L0 192zm148.2 0h279.6l-137 318.2c-1 2.4-4.5 2.4-5.5 0L148.2 192zm204.1 251.7l123-251.7H576L357.3 446.9c-2.3 2.7-6.5-.1-5-3.2z"], + "genderless": [288, 512, [], "f22d", "M144 176c44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80 35.9-80 80-80m0-64C64.5 112 0 176.5 0 256s64.5 144 144 144 144-64.5 144-144-64.5-144-144-144z"], + "gift": [512, 512, [], "f06b", "M32 448c0 17.7 14.3 32 32 32h160V320H32v128zm448-288h-42.1c6.2-12.1 10.1-25.5 10.1-40 0-48.5-39.5-88-88-88-41.6 0-68.5 21.3-103 68.3-34.5-47-61.4-68.3-103-68.3-48.5 0-88 39.5-88 88 0 14.5 3.8 27.9 10.1 40H32c-17.7 0-32 14.3-32 32v80c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-80c0-17.7-14.3-32-32-32zm-326.1 0c-22.1 0-40-17.9-40-40s17.9-40 40-40c19.9 0 34.6 3.3 86.1 80h-86.1zm206.1 0h-86.1c51.4-76.5 65.7-80 86.1-80 22.1 0 40 17.9 40 40s-17.9 40-40 40zm-72 320h160c17.7 0 32-14.3 32-32V320H288v160z"], + "glass-martini": [512, 512, [], "f000", "M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6z"], + "glass-martini-alt": [512, 512, [], "f57b", "M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6zM443.77 48l-48 48H116.24l-48-48h375.53z"], + "glasses": [576, 512, [], "f530", "M574.1 280.37L528.75 98.66c-5.91-23.7-21.59-44.05-43-55.81-21.44-11.73-46.97-14.11-70.19-6.33l-15.25 5.08c-8.39 2.79-12.92 11.86-10.12 20.24l5.06 15.18c2.79 8.38 11.85 12.91 20.23 10.12l13.18-4.39c10.87-3.62 23-3.57 33.16 1.73 10.29 5.37 17.57 14.56 20.37 25.82l38.46 153.82c-22.19-6.81-49.79-12.46-81.2-12.46-34.77 0-73.98 7.02-114.85 26.74h-73.18c-40.87-19.74-80.08-26.75-114.86-26.75-31.42 0-59.02 5.65-81.21 12.46l38.46-153.83c2.79-11.25 10.09-20.45 20.38-25.81 10.16-5.3 22.28-5.35 33.15-1.73l13.17 4.39c8.38 2.79 17.44-1.74 20.23-10.12l5.06-15.18c2.8-8.38-1.73-17.45-10.12-20.24l-15.25-5.08c-23.22-7.78-48.75-5.41-70.19 6.33-21.41 11.77-37.09 32.11-43 55.8L1.9 280.37A64.218 64.218 0 0 0 0 295.86v70.25C0 429.01 51.58 480 115.2 480h37.12c60.28 0 110.37-45.94 114.88-105.37l2.93-38.63h35.75l2.93 38.63C313.31 434.06 363.4 480 423.68 480h37.12c63.62 0 115.2-50.99 115.2-113.88v-70.25c0-5.23-.64-10.43-1.9-15.5zm-370.72 89.42c-1.97 25.91-24.4 46.21-51.06 46.21H115.2C86.97 416 64 393.62 64 366.11v-37.54c18.12-6.49 43.42-12.92 72.58-12.92 23.86 0 47.26 4.33 69.93 12.92l-3.13 41.22zM512 366.12c0 27.51-22.97 49.88-51.2 49.88h-37.12c-26.67 0-49.1-20.3-51.06-46.21l-3.13-41.22c22.67-8.59 46.08-12.92 69.95-12.92 29.12 0 54.43 6.44 72.55 12.93v37.54z"], + "globe": [496, 512, [], "f0ac", "M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z"], + "globe-africa": [496, 512, [], "f57c", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm160 215.5v6.93c0 5.87-3.32 11.24-8.57 13.86l-15.39 7.7a15.485 15.485 0 0 1-15.53-.97l-18.21-12.14a15.52 15.52 0 0 0-13.5-1.81l-2.65.88c-9.7 3.23-13.66 14.79-7.99 23.3l13.24 19.86c2.87 4.31 7.71 6.9 12.89 6.9h8.21c8.56 0 15.5 6.94 15.5 15.5v11.34c0 3.35-1.09 6.62-3.1 9.3l-18.74 24.98c-1.42 1.9-2.39 4.1-2.83 6.43l-4.3 22.83c-.62 3.29-2.29 6.29-4.76 8.56a159.608 159.608 0 0 0-25 29.16l-13.03 19.55a27.756 27.756 0 0 1-23.09 12.36c-10.51 0-20.12-5.94-24.82-15.34a78.902 78.902 0 0 1-8.33-35.29V367.5c0-8.56-6.94-15.5-15.5-15.5h-25.88c-14.49 0-28.38-5.76-38.63-16a54.659 54.659 0 0 1-16-38.63v-14.06c0-17.19 8.1-33.38 21.85-43.7l27.58-20.69a54.663 54.663 0 0 1 32.78-10.93h.89c8.48 0 16.85 1.97 24.43 5.77l14.72 7.36c3.68 1.84 7.93 2.14 11.83.84l47.31-15.77c6.33-2.11 10.6-8.03 10.6-14.7 0-8.56-6.94-15.5-15.5-15.5h-10.09c-4.11 0-8.05-1.63-10.96-4.54l-6.92-6.92a15.493 15.493 0 0 0-10.96-4.54H199.5c-8.56 0-15.5-6.94-15.5-15.5v-4.4c0-7.11 4.84-13.31 11.74-15.04l14.45-3.61c3.74-.94 7-3.23 9.14-6.44l8.08-12.11c2.87-4.31 7.71-6.9 12.89-6.9h24.21c8.56 0 15.5-6.94 15.5-15.5v-21.7C359.23 71.63 422.86 131.02 441.93 208H423.5c-8.56 0-15.5 6.94-15.5 15.5z"], + "globe-americas": [496, 512, [], "f57d", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm82.29 357.6c-3.9 3.88-7.99 7.95-11.31 11.28-2.99 3-5.1 6.7-6.17 10.71-1.51 5.66-2.73 11.38-4.77 16.87l-17.39 46.85c-13.76 3-28 4.69-42.65 4.69v-27.38c1.69-12.62-7.64-36.26-22.63-51.25-6-6-9.37-14.14-9.37-22.63v-32.01c0-11.64-6.27-22.34-16.46-27.97-14.37-7.95-34.81-19.06-48.81-26.11-11.48-5.78-22.1-13.14-31.65-21.75l-.8-.72a114.792 114.792 0 0 1-18.06-20.74c-9.38-13.77-24.66-36.42-34.59-51.14 20.47-45.5 57.36-82.04 103.2-101.89l24.01 12.01C203.48 89.74 216 82.01 216 70.11v-11.3c7.99-1.29 16.12-2.11 24.39-2.42l28.3 28.3c6.25 6.25 6.25 16.38 0 22.63L264 112l-10.34 10.34c-3.12 3.12-3.12 8.19 0 11.31l4.69 4.69c3.12 3.12 3.12 8.19 0 11.31l-8 8a8.008 8.008 0 0 1-5.66 2.34h-8.99c-2.08 0-4.08.81-5.58 2.27l-9.92 9.65a8.008 8.008 0 0 0-1.58 9.31l15.59 31.19c2.66 5.32-1.21 11.58-7.15 11.58h-5.64c-1.93 0-3.79-.7-5.24-1.96l-9.28-8.06a16.017 16.017 0 0 0-15.55-3.1l-31.17 10.39a11.95 11.95 0 0 0-8.17 11.34c0 4.53 2.56 8.66 6.61 10.69l11.08 5.54c9.41 4.71 19.79 7.16 30.31 7.16s22.59 27.29 32 32h66.75c8.49 0 16.62 3.37 22.63 9.37l13.69 13.69a30.503 30.503 0 0 1 8.93 21.57 46.536 46.536 0 0 1-13.72 32.98zM417 274.25c-5.79-1.45-10.84-5-14.15-9.97l-17.98-26.97a23.97 23.97 0 0 1 0-26.62l19.59-29.38c2.32-3.47 5.5-6.29 9.24-8.15l12.98-6.49C440.2 193.59 448 223.87 448 256c0 8.67-.74 17.16-1.82 25.54L417 274.25z"], + "globe-asia": [496, 512, [], "f57e", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm-11.34 240.23c-2.89 4.82-8.1 7.77-13.72 7.77h-.31c-4.24 0-8.31 1.69-11.31 4.69l-5.66 5.66c-3.12 3.12-3.12 8.19 0 11.31l5.66 5.66c3 3 4.69 7.07 4.69 11.31V304c0 8.84-7.16 16-16 16h-6.11c-6.06 0-11.6-3.42-14.31-8.85l-22.62-45.23c-2.44-4.88-8.95-5.94-12.81-2.08l-19.47 19.46c-3 3-7.07 4.69-11.31 4.69H50.81C49.12 277.55 48 266.92 48 256c0-110.28 89.72-200 200-200 21.51 0 42.2 3.51 61.63 9.82l-50.16 38.53c-5.11 3.41-4.63 11.06.86 13.81l10.83 5.41c5.42 2.71 8.84 8.25 8.84 14.31V216c0 4.42-3.58 8-8 8h-3.06c-3.03 0-5.8-1.71-7.15-4.42-1.56-3.12-5.96-3.29-7.76-.3l-17.37 28.95zM408 358.43c0 4.24-1.69 8.31-4.69 11.31l-9.57 9.57c-3 3-7.07 4.69-11.31 4.69h-15.16c-4.24 0-8.31-1.69-11.31-4.69l-13.01-13.01a26.767 26.767 0 0 0-25.42-7.04l-21.27 5.32c-1.27.32-2.57.48-3.88.48h-10.34c-4.24 0-8.31-1.69-11.31-4.69l-11.91-11.91a8.008 8.008 0 0 1-2.34-5.66v-10.2c0-3.27 1.99-6.21 5.03-7.43l39.34-15.74c1.98-.79 3.86-1.82 5.59-3.05l23.71-16.89a7.978 7.978 0 0 1 4.64-1.48h12.09c3.23 0 6.15 1.94 7.39 4.93l5.35 12.85a4 4 0 0 0 3.69 2.46h3.8c1.78 0 3.35-1.18 3.84-2.88l4.2-14.47c.5-1.71 2.06-2.88 3.84-2.88h6.06c2.21 0 4 1.79 4 4v12.93c0 2.12.84 4.16 2.34 5.66l11.91 11.91c3 3 4.69 7.07 4.69 11.31v24.6z"], + "golf-ball": [416, 512, [], "f450", "M96 416h224c0 17.7-14.3 32-32 32h-16c-17.7 0-32 14.3-32 32v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-20c0-17.7-14.3-32-32-32h-16c-17.7 0-32-14.3-32-32zm320-208c0 74.2-39 139.2-97.5 176h-221C39 347.2 0 282.2 0 208 0 93.1 93.1 0 208 0s208 93.1 208 208zm-180.1 43.9c18.3 0 33.1-14.8 33.1-33.1 0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1zm49.1 46.9c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1zm64-64c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1z"], + "graduation-cap": [640, 512, [], "f19d", "M622.884 199.005l-275.817 85.1a96 96 0 0 1-54.134 0L92.398 222.232c-8.564 11.438-11.018 23.05-11.918 38.335C89.778 266.165 96 276.355 96 288c0 11.952-6.557 22.366-16.265 27.861l16.197 123.096c.63 4.786-3.1 9.043-7.932 9.043H40c-4.828 0-8.562-4.253-7.932-9.044L48.265 315.86C38.557 310.366 32 299.952 32 288c0-12.034 6.646-22.511 16.465-27.976.947-17.951 3.974-33.231 12.152-47.597l-43.502-13.422c-22.876-6.801-22.766-39.241 0-46.01l275.817-85.1a96 96 0 0 1 54.134 0l275.817 85.1c22.877 6.801 22.767 39.241.001 46.01zM356.503 314.682l-.207.064-.207.061a127.998 127.998 0 0 1-72.177 0l-.207-.061-.207-.064-150.914-46.57L120 352c0 35.346 89.543 64 200 64s200-28.654 200-64l-12.583-83.888-150.914 46.57z"], + "greater-than": [384, 512, [], "f531", "M365.52 209.85L59.22 67.01c-16.06-7.49-35.15-.54-42.64 15.52L3.01 111.61c-7.49 16.06-.54 35.15 15.52 42.64L236.96 256.1 18.49 357.99C2.47 365.46-4.46 384.5 3.01 400.52l13.52 29C24 445.54 43.04 452.47 59.06 445l306.47-142.91a32.003 32.003 0 0 0 18.48-29v-34.23c-.01-12.45-7.21-23.76-18.49-29.01z"], + "greater-than-equal": [448, 512, [], "f532", "M55.22 107.69l175.56 68.09-175.44 68.05c-18.39 6.03-27.88 24.39-21.2 41l12.09 30.08c6.68 16.61 26.99 25.19 45.38 19.15L393.02 214.2c13.77-4.52 22.98-16.61 22.98-30.17v-15.96c0-13.56-9.21-25.65-22.98-30.17L91.3 17.92c-18.29-6-38.51 2.53-45.15 19.06L34.12 66.9c-6.64 16.53 2.81 34.79 21.1 40.79zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"], + "grimace": [496, 512, [], "f57f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM144 400h-8c-17.7 0-32-14.3-32-32v-8h40v40zm0-56h-40v-8c0-17.7 14.3-32 32-32h8v40zm-8-136c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm72 192h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm-8-104c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64 128c0 17.7-14.3 32-32 32h-8v-40h40v8zm0-24h-40v-40h8c17.7 0 32 14.3 32 32v8z"], + "grin": [496, 512, [], "f580", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm80 256c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"], + "grin-alt": [496, 512, [], "f581", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm63.7 128.7c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zm-160 0c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"], + "grin-beam": [496, 512, [], "f582", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 144c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"], + "grin-beam-sweat": [504, 512, [], "f583", "M456 128c26.5 0 48-21 48-47 0-20-28.5-60.4-41.6-77.8-3.2-4.3-9.6-4.3-12.8 0C436.5 20.6 408 61 408 81c0 26 21.5 47 48 47zm0 32c-44.1 0-80-35.4-80-79 0-4.4.3-14.2 8.1-32.2C345 23.1 298.3 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-35.1-7.4-68.4-20.5-98.6-6.3 1.5-12.7 2.6-19.5 2.6zm-128-8c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"], + "grin-hearts": [496, 512, [], "f584", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM90.4 183.6c6.7-17.6 26.7-26.7 44.9-21.9l7.1 1.9 2-7.1c5-18.1 22.8-30.9 41.5-27.9 21.4 3.4 34.4 24.2 28.8 44.5L195.3 243c-1.2 4.5-5.9 7.2-10.5 6l-70.2-18.2c-20.4-5.4-31.9-27-24.2-47.2zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm133.4-201.3l-70.2 18.2c-4.5 1.2-9.2-1.5-10.5-6L281.3 173c-5.6-20.3 7.4-41.1 28.8-44.5 18.6-3 36.4 9.8 41.5 27.9l2 7.1 7.1-1.9c18.2-4.7 38.2 4.3 44.9 21.9 7.7 20.3-3.8 41.9-24.2 47.2z"], + "grin-squint": [496, 512, [], "f585", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"], + "grin-squint-tears": [512, 512, [], "f586", "M409.6 111.9c22.6-3.2 73.5-12 88.3-26.8 19.2-19.2 18.9-50.6-.7-70.2S446-5 426.9 14.2c-14.8 14.8-23.5 65.7-26.8 88.3-.8 5.5 3.9 10.2 9.5 9.4zM102.4 400.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm311.7-256.5c-33 3.9-48.6-25.1-45.7-45.7 3.4-24 7.4-42.1 11.5-56.5C285.1-13.4 161.8-.5 80.6 80.6-.5 161.7-13.4 285 41.4 379.9c14.4-4.1 32.4-8 56.5-11.5 33.2-3.9 48.6 25.2 45.7 45.7-3.4 24-7.4 42.1-11.5 56.5 94.8 54.8 218.1 41.9 299.3-39.2s94-204.4 39.2-299.3c-14.4 4.1-32.5 8-56.5 11.5zM255.7 106c3.3-13.2 22.4-11.5 23.6 1.8l4.8 52.3 52.3 4.8c13.4 1.2 14.9 20.3 1.8 23.6l-90.5 22.6c-8.9 2.2-16.7-5.9-14.5-14.5l22.5-90.6zm-90.9 230.3L160 284l-52.3-4.8c-13.4-1.2-14.9-20.3-1.8-23.6l90.5-22.6c8.8-2.2 16.7 5.8 14.5 14.5L188.3 338c-3.1 13.2-22.2 11.7-23.5-1.7zm215.7 44.2c-29.3 29.3-75.7 50.4-116.7 50.4-18.9 0-36.6-4.5-51-14.7-9.8-6.9-8.7-21.8 2-27.2 28.3-14.6 63.9-42.4 97.8-76.3s61.7-69.6 76.3-97.8c5.4-10.5 20.2-11.9 27.3-2 32.3 45.3 7.1 124.7-35.7 167.6z"], + "grin-stars": [496, 512, [], "f587", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM94.6 168.9l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.2 1 8.9 8.6 4.3 13.2l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L152 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.6-4.7-1.9-12.3 4.3-13.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm157.7-249.9l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L344 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.5-4.6-1.9-12.2 4.3-13.2l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.3.9 9 8.5 4.4 13.1z"], + "grin-tears": [640, 512, [], "f588", "M102.4 256.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm523.4 26.8c-14.8-14.8-65.7-23.5-88.3-26.8-5.5-.8-10.3 3.9-9.5 9.5 3.2 22.6 12 73.5 26.8 88.3 19.2 19.2 50.6 18.9 70.2-.7s20-51.2.8-70.3zm-129.4-12.8c-3.8-26.6 19.1-49.5 45.7-45.7 8.9 1.3 16.8 2.7 24.3 4.1C552.7 104.5 447.7 8 320 8S87.3 104.5 73.6 228.5c7.5-1.4 15.4-2.8 24.3-4.1 33.2-3.9 48.6 25.3 45.7 45.7-11.8 82.3-29.9 100.4-35.8 106.4-.9.9-2 1.6-3 2.5 42.7 74.6 123 125 215.2 125s172.5-50.4 215.2-125.1c-1-.9-2.1-1.5-3-2.5-5.9-5.9-24-24-35.8-106.3zM400 152c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.7 9.2-21.6 20.7-17.9C227.1 330.5 272 336 320 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z"], + "grin-tongue": [496, 512, [], "f589", "M248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-34.9 134.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z"], + "grin-tongue-squint": [496, 512, [], "f58a", "M293.1 374.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-33.8 210.3l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.7 4.7 7.7 15.9 0 20.6zm163 30c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.8-4.7-7.8-15.9 0-20.6l80-48c11.7-6.9 23.9 7.7 15.4 18L343.6 208l33.6 40.3z"], + "grin-tongue-wink": [496, 512, [], "f58b", "M344 184c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-56 225l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L112 233c-8.5 7.4-21.6.3-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c1.6 11.1-11.6 18.2-20 10.8zm152 39c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm-50.9 102.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z"], + "grin-wink": [496, 512, [], "f58c", "M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm168 25l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.6 11-11.5 18.2-20 10.8zm-243.1 87.8C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6 20.7 17.9-9.2 55-83.2 93.3-143.8 93.3s-134.5-38.3-143.8-93.3c-2-11.9 9.3-21.6 20.7-17.9z"], + "grip-horizontal": [448, 512, [], "f58d", "M96 288H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM96 96H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z"], + "grip-vertical": [320, 512, [], "f58e", "M96 32H32C14.33 32 0 46.33 0 64v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM288 32h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z"], + "h-square": [448, 512, [], "f0fd", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-112 48h-32c-8.837 0-16 7.163-16 16v80H160v-80c0-8.837-7.163-16-16-16h-32c-8.837 0-16 7.163-16 16v224c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16v-80h128v80c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144c0-8.837-7.163-16-16-16z"], + "hand-holding": [576, 512, [], "f4bd", "M565.3 328.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z"], + "hand-holding-heart": [576, 512, [], "f4be", "M275.3 250.5c7 7.4 18.4 7.4 25.5 0l108.9-114.2c31.6-33.2 29.8-88.2-5.6-118.8-30.8-26.7-76.7-21.9-104.9 7.7L288 36.9l-11.1-11.6C248.7-4.4 202.8-9.2 172 17.5c-35.3 30.6-37.2 85.6-5.6 118.8l108.9 114.2zm290 77.6c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z"], + "hand-holding-usd": [544, 512, [], "f4c0", "M257.6 144.3l50 14.3c3.6 1 6.1 4.4 6.1 8.1 0 4.6-3.8 8.4-8.4 8.4h-32.8c-3.6 0-7.1-.8-10.3-2.2-4.8-2.2-10.4-1.7-14.1 2l-17.5 17.5c-5.3 5.3-4.7 14.3 1.5 18.4 9.5 6.3 20.3 10.1 31.8 11.5V240c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16v-17.6c30.3-3.6 53.3-31 49.3-63-2.9-23-20.7-41.3-42.9-47.7l-50-14.3c-3.6-1-6.1-4.4-6.1-8.1 0-4.6 3.8-8.4 8.4-8.4h32.8c3.6 0 7.1.8 10.3 2.2 4.8 2.2 10.4 1.7 14.1-2l17.5-17.5c5.3-5.3 4.7-14.3-1.5-18.4-9.5-6.3-20.3-10.1-31.8-11.5V16c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16v17.6c-30.3 3.6-53.3 31-49.3 63 2.9 23 20.7 41.3 42.9 47.7zm276.3 183.8c-11.2-10.7-28.5-10-40.3 0L406.4 402c-10.7 9.1-24 14-37.8 14H256.9c-8.3 0-15.1-7.2-15.1-16s6.8-16 15.1-16h73.9c15.1 0 29-10.9 31.4-26.6 3.1-20-11.5-37.4-29.8-37.4H181.3c-25.5 0-50.2 9.3-69.9 26.3L67.5 384H15.1C6.8 384 0 391.2 0 400v96c0 8.8 6.8 16 15.1 16H352c13.7 0 27-4.9 37.8-14l142.8-121c14.4-12.1 15.5-35.3 1.3-48.9z"], + "hand-lizard": [576, 512, [], "f258", "M384 480h192V363.778a95.998 95.998 0 0 0-14.833-51.263L398.127 54.368A48 48 0 0 0 357.544 32H24C10.745 32 0 42.745 0 56v16c0 30.928 25.072 56 56 56h229.981c12.844 0 21.556 13.067 16.615 24.923l-21.41 51.385A32 32 0 0 1 251.648 224H128c-35.346 0-64 28.654-64 64v8c0 13.255 10.745 24 24 24h147.406a47.995 47.995 0 0 1 25.692 7.455l111.748 70.811A24.001 24.001 0 0 1 384 418.539V480z"], + "hand-paper": [448, 512, [], "f256", "M408.781 128.007C386.356 127.578 368 146.36 368 168.79V256h-8V79.79c0-22.43-18.356-41.212-40.781-40.783C297.488 39.423 280 57.169 280 79v177h-8V40.79C272 18.36 253.644-.422 231.219.007 209.488.423 192 18.169 192 40v216h-8V80.79c0-22.43-18.356-41.212-40.781-40.783C121.488 40.423 104 58.169 104 80v235.992l-31.648-43.519c-12.993-17.866-38.009-21.817-55.877-8.823-17.865 12.994-21.815 38.01-8.822 55.877l125.601 172.705A48 48 0 0 0 172.073 512h197.59c22.274 0 41.622-15.324 46.724-37.006l26.508-112.66a192.011 192.011 0 0 0 5.104-43.975V168c.001-21.831-17.487-39.577-39.218-39.993z"], + "hand-peace": [448, 512, [], "f25b", "M408 216c-22.092 0-40 17.909-40 40h-8v-32c0-22.091-17.908-40-40-40s-40 17.909-40 40v32h-8V48c0-26.51-21.49-48-48-48s-48 21.49-48 48v208h-13.572L92.688 78.449C82.994 53.774 55.134 41.63 30.461 51.324 5.787 61.017-6.356 88.877 3.337 113.551l74.765 190.342-31.09 24.872c-15.381 12.306-19.515 33.978-9.741 51.081l64 112A39.998 39.998 0 0 0 136 512h240c18.562 0 34.686-12.77 38.937-30.838l32-136A39.97 39.97 0 0 0 448 336v-80c0-22.091-17.908-40-40-40z"], + "hand-point-down": [384, 512, [], "f0a7", "M91.826 467.2V317.966c-8.248 5.841-16.558 10.57-24.918 14.153C35.098 345.752-.014 322.222 0 288c.008-18.616 10.897-32.203 29.092-40 28.286-12.122 64.329-78.648 77.323-107.534 7.956-17.857 25.479-28.453 43.845-28.464l.001-.002h171.526c11.812 0 21.897 8.596 23.703 20.269 7.25 46.837 38.483 61.76 38.315 123.731-.007 2.724.195 13.254.195 16 0 50.654-22.122 81.574-71.263 72.6-9.297 18.597-39.486 30.738-62.315 16.45-21.177 24.645-53.896 22.639-70.944 6.299V467.2c0 24.15-20.201 44.8-43.826 44.8-23.283 0-43.826-21.35-43.826-44.8zM112 72V24c0-13.255 10.745-24 24-24h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24zm212-24c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z"], + "hand-point-left": [512, 512, [], "f0a5", "M44.8 155.826h149.234c-5.841-8.248-10.57-16.558-14.153-24.918C166.248 99.098 189.778 63.986 224 64c18.616.008 32.203 10.897 40 29.092 12.122 28.286 78.648 64.329 107.534 77.323 17.857 7.956 28.453 25.479 28.464 43.845l.002.001v171.526c0 11.812-8.596 21.897-20.269 23.703-46.837 7.25-61.76 38.483-123.731 38.315-2.724-.007-13.254.195-16 .195-50.654 0-81.574-22.122-72.6-71.263-18.597-9.297-30.738-39.486-16.45-62.315-24.645-21.177-22.639-53.896-6.299-70.944H44.8c-24.15 0-44.8-20.201-44.8-43.826 0-23.283 21.35-43.826 44.8-43.826zM440 176h48c13.255 0 24 10.745 24 24v192c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24zm24 212c11.046 0 20-8.954 20-20s-8.954-20-20-20-20 8.954-20 20 8.954 20 20 20z"], + "hand-point-right": [512, 512, [], "f0a4", "M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z"], + "hand-point-up": [384, 512, [], "f0a6", "M135.652 0c23.625 0 43.826 20.65 43.826 44.8v99.851c17.048-16.34 49.766-18.346 70.944 6.299 22.829-14.288 53.017-2.147 62.315 16.45C361.878 158.426 384 189.346 384 240c0 2.746-.203 13.276-.195 16 .168 61.971-31.065 76.894-38.315 123.731C343.683 391.404 333.599 400 321.786 400H150.261l-.001-.002c-18.366-.011-35.889-10.607-43.845-28.464C93.421 342.648 57.377 276.122 29.092 264 10.897 256.203.008 242.616 0 224c-.014-34.222 35.098-57.752 66.908-44.119 8.359 3.583 16.67 8.312 24.918 14.153V44.8c0-23.45 20.543-44.8 43.826-44.8zM136 416h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24v-48c0-13.255 10.745-24 24-24zm168 28c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z"], + "hand-pointer": [448, 512, [], "f25a", "M448 240v96c0 3.084-.356 6.159-1.063 9.162l-32 136C410.686 499.23 394.562 512 376 512H168a40.004 40.004 0 0 1-32.35-16.473l-127.997-176c-12.993-17.866-9.043-42.883 8.822-55.876 17.867-12.994 42.884-9.043 55.877 8.823L104 315.992V40c0-22.091 17.908-40 40-40s40 17.909 40 40v200h8v-40c0-22.091 17.908-40 40-40s40 17.909 40 40v40h8v-24c0-22.091 17.908-40 40-40s40 17.909 40 40v24h8c0-22.091 17.908-40 40-40s40 17.909 40 40zm-256 80h-8v96h8v-96zm88 0h-8v96h8v-96zm88 0h-8v96h8v-96z"], + "hand-rock": [512, 512, [], "f255", "M512 128.79c0-26.322-20.861-48.344-47.18-48.783C437.935 79.558 416 101.217 416 128h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C333.935 47.558 312 69.217 312 96v32h-8V80.79c0-26.322-20.861-48.344-47.18-48.783C229.935 31.558 208 53.217 208 80v48h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C125.935 47.558 104 69.217 104 96v136l-8-7.111V176.79c0-26.322-20.861-48.344-47.18-48.783C21.935 127.558 0 149.217 0 176v66.445a95.998 95.998 0 0 0 32.221 71.751l111.668 99.261A47.999 47.999 0 0 1 160 449.333V456c0 13.255 10.745 24 24 24h240c13.255 0 24-10.745 24-24v-2.921a96.01 96.01 0 0 1 7.523-37.254l48.954-116.265A96.002 96.002 0 0 0 512 262.306V128.79z"], + "hand-scissors": [512, 512, [], "f257", "M216 440c0-22.092 17.909-40 40-40v-8h-32c-22.091 0-40-17.908-40-40s17.909-40 40-40h32v-8H48c-26.51 0-48-21.49-48-48s21.49-48 48-48h208v-13.572l-177.551-69.74c-24.674-9.694-36.818-37.555-27.125-62.228 9.693-24.674 37.554-36.817 62.228-27.124l190.342 74.765 24.872-31.09c12.306-15.381 33.978-19.515 51.081-9.741l112 64A40.002 40.002 0 0 1 512 168v240c0 18.562-12.77 34.686-30.838 38.937l-136 32A39.982 39.982 0 0 1 336 480h-80c-22.091 0-40-17.908-40-40z"], + "hand-spock": [512, 512, [], "f259", "M10.872 316.585c15.139-16.086 40.454-16.854 56.543-1.713L128 371.893v-79.405L88.995 120.865c-4.896-21.542 8.598-42.974 30.14-47.87 21.549-4.894 42.975 8.599 47.87 30.141L201.747 256h9.833L164.016 48.966c-4.946-21.531 8.498-42.994 30.028-47.94 21.532-4.95 42.994 8.498 47.94 30.028L293.664 256h15.105l48.425-193.702c5.357-21.432 27.075-34.462 48.507-29.104 21.432 5.358 34.463 27.075 29.104 48.507L391.231 256h11.08l30.768-129.265c5.117-21.491 26.685-34.768 48.177-29.647 21.491 5.117 34.765 26.686 29.647 48.177l-36.292 152.467A96.024 96.024 0 0 0 472 319.967v42.102a96.002 96.002 0 0 1-3.96 27.287l-26.174 88.287C435.825 498.022 417.101 512 395.846 512H179.172a48.002 48.002 0 0 1-32.898-13.046L12.585 373.128c-16.087-15.141-16.853-40.456-1.713-56.543z"], + "hands": [640, 512, [], "f4c2", "M204.8 230.4c-10.6-14.1-30.7-17-44.8-6.4-14.1 10.6-17 30.7-6.4 44.8l38.1 50.8c4.8 6.4 4.1 15.3-1.5 20.9l-12.8 12.8c-6.7 6.7-17.6 6.2-23.6-1.1L64 244.4V96c0-17.7-14.3-32-32-32S0 78.3 0 96v218.4c0 10.9 3.7 21.5 10.5 30l104.1 134.3c5 6.5 8.4 13.9 10.4 21.7 1.8 6.9 8.1 11.6 15.3 11.6H272c8.8 0 16-7.2 16-16V384c0-27.7-9-54.6-25.6-76.8l-57.6-76.8zM608 64c-17.7 0-32 14.3-32 32v148.4l-89.8 107.8c-6 7.2-17 7.7-23.6 1.1l-12.8-12.8c-5.6-5.6-6.3-14.5-1.5-20.9l38.1-50.8c10.6-14.1 7.7-34.2-6.4-44.8-14.1-10.6-34.2-7.7-44.8 6.4l-57.6 76.8C361 329.4 352 356.3 352 384v112c0 8.8 7.2 16 16 16h131.7c7.1 0 13.5-4.7 15.3-11.6 2-7.8 5.4-15.2 10.4-21.7l104.1-134.3c6.8-8.5 10.5-19.1 10.5-30V96c0-17.7-14.3-32-32-32z"], + "hands-helping": [640, 512, [], "f4c4", "M488 192H336v56c0 39.7-32.3 72-72 72s-72-32.3-72-72V126.4l-64.9 39C107.8 176.9 96 197.8 96 220.2v47.3l-80 46.2C.7 322.5-4.6 342.1 4.3 357.4l80 138.6c8.8 15.3 28.4 20.5 43.7 11.7L231.4 448H368c35.3 0 64-28.7 64-64h16c17.7 0 32-14.3 32-32v-64h8c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zm147.7-37.4L555.7 16C546.9.7 527.3-4.5 512 4.3L408.6 64H306.4c-12 0-23.7 3.4-33.9 9.7L239 94.6c-9.4 5.8-15 16.1-15 27.1V248c0 22.1 17.9 40 40 40s40-17.9 40-40v-88h184c30.9 0 56 25.1 56 56v28.5l80-46.2c15.3-8.9 20.5-28.4 11.7-43.7z"], + "handshake": [640, 512, [], "f2b5", "M434.7 64h-85.9c-8 0-15.7 3-21.6 8.4l-98.3 90c-.1.1-.2.3-.3.4-16.6 15.6-16.3 40.5-2.1 56 12.7 13.9 39.4 17.6 56.1 2.7.1-.1.3-.1.4-.2l79.9-73.2c6.5-5.9 16.7-5.5 22.6 1 6 6.5 5.5 16.6-1 22.6l-26.1 23.9L504 313.8c2.9 2.4 5.5 5 7.9 7.7V128l-54.6-54.6c-5.9-6-14.1-9.4-22.6-9.4zM544 128.2v223.9c0 17.7 14.3 32 32 32h64V128.2h-96zm48 223.9c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM0 384h64c17.7 0 32-14.3 32-32V128.2H0V384zm48-63.9c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16c0-8.9 7.2-16 16-16zm435.9 18.6L334.6 217.5l-30 27.5c-29.7 27.1-75.2 24.5-101.7-4.4-26.9-29.4-24.8-74.9 4.4-101.7L289.1 64h-83.8c-8.5 0-16.6 3.4-22.6 9.4L128 128v223.9h18.3l90.5 81.9c27.4 22.3 67.7 18.1 90-9.3l.2-.2 17.9 15.5c15.9 13 39.4 10.5 52.3-5.4l31.4-38.6 5.4 4.4c13.7 11.1 33.9 9.1 45-4.7l9.5-11.7c11.2-13.8 9.1-33.9-4.6-45.1z"], + "hashtag": [448, 512, [], "f292", "M440.667 182.109l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l14.623-81.891C377.123 38.754 371.468 32 363.997 32h-40.632a12 12 0 0 0-11.813 9.891L296.175 128H197.54l14.623-81.891C213.477 38.754 207.822 32 200.35 32h-40.632a12 12 0 0 0-11.813 9.891L132.528 128H53.432a12 12 0 0 0-11.813 9.891l-7.143 40C33.163 185.246 38.818 192 46.289 192h74.81L98.242 320H19.146a12 12 0 0 0-11.813 9.891l-7.143 40C-1.123 377.246 4.532 384 12.003 384h74.81L72.19 465.891C70.877 473.246 76.532 480 84.003 480h40.632a12 12 0 0 0 11.813-9.891L151.826 384h98.634l-14.623 81.891C234.523 473.246 240.178 480 247.65 480h40.632a12 12 0 0 0 11.813-9.891L315.472 384h79.096a12 12 0 0 0 11.813-9.891l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l22.857-128h79.096a12 12 0 0 0 11.813-9.891zM261.889 320h-98.634l22.857-128h98.634l-22.857 128z"], + "hdd": [576, 512, [], "f0a0", "M576 304v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48zm-48-80a79.557 79.557 0 0 1 30.777 6.165L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L17.223 230.165A79.557 79.557 0 0 1 48 224h480zm-48 96c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm-96 0c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"], + "heading": [512, 512, [], "f1dc", "M496 80V48c0-8.837-7.163-16-16-16H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.621v128H154.379V96H192c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.275v320H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.621V288H357.62v128H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.275V96H480c8.837 0 16-7.163 16-16z"], + "headphones": [512, 512, [], "f025", "M256 32C114.52 32 0 146.496 0 288v48a32 32 0 0 0 17.689 28.622l14.383 7.191C34.083 431.903 83.421 480 144 480h24c13.255 0 24-10.745 24-24V280c0-13.255-10.745-24-24-24h-24c-31.342 0-59.671 12.879-80 33.627V288c0-105.869 86.131-192 192-192s192 86.131 192 192v1.627C427.671 268.879 399.342 256 368 256h-24c-13.255 0-24 10.745-24 24v176c0 13.255 10.745 24 24 24h24c60.579 0 109.917-48.098 111.928-108.187l14.382-7.191A32 32 0 0 0 512 336v-48c0-141.479-114.496-256-256-256z"], + "headphones-alt": [512, 512, [], "f58f", "M160 288h-16c-35.35 0-64 28.7-64 64.12v63.76c0 35.41 28.65 64.12 64 64.12h16c17.67 0 32-14.36 32-32.06V320.06c0-17.71-14.33-32.06-32-32.06zm208 0h-16c-17.67 0-32 14.35-32 32.06v127.88c0 17.7 14.33 32.06 32 32.06h16c35.35 0 64-28.71 64-64.12v-63.76c0-35.41-28.65-64.12-64-64.12zM256 32C112.91 32 4.57 151.13 0 288v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288c0-114.67 93.33-207.8 208-207.82 114.67.02 208 93.15 208 207.82v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288C507.43 151.13 399.09 32 256 32z"], + "headset": [512, 512, [], "f590", "M192 208c0-17.67-14.33-32-32-32h-16c-35.35 0-64 28.65-64 64v48c0 35.35 28.65 64 64 64h16c17.67 0 32-14.33 32-32V208zm176 144c35.35 0 64-28.65 64-64v-48c0-35.35-28.65-64-64-64h-16c-17.67 0-32 14.33-32 32v112c0 17.67 14.33 32 32 32h16zM256 0C113.18 0 4.58 118.83 0 256v16c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-16c0-114.69 93.31-208 208-208s208 93.31 208 208h-.12c.08 2.43.12 165.72.12 165.72 0 23.35-18.93 42.28-42.28 42.28H320c0-26.51-21.49-48-48-48h-32c-26.51 0-48 21.49-48 48s21.49 48 48 48h181.72c49.86 0 90.28-40.42 90.28-90.28V256C507.42 118.83 398.82 0 256 0z"], + "heart": [512, 512, [], "f004", "M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z"], + "heartbeat": [512, 512, [], "f21e", "M320.2 243.8l-49.7 99.4c-6 12.1-23.4 11.7-28.9-.6l-56.9-126.3-30 71.7H60.6l182.5 186.5c7.1 7.3 18.6 7.3 25.7 0L451.4 288H342.3l-22.1-44.2zM473.7 73.9l-2.4-2.5c-51.5-52.6-135.8-52.6-187.4 0L256 100l-27.9-28.5c-51.5-52.7-135.9-52.7-187.4 0l-2.4 2.4C-10.4 123.7-12.5 203 31 256h102.4l35.9-86.2c5.4-12.9 23.6-13.2 29.4-.4l58.2 129.3 49-97.9c5.9-11.8 22.7-11.8 28.6 0l27.6 55.2H481c43.5-53 41.4-132.3-7.3-182.1z"], + "helicopter": [640, 512, [], "f533", "M304 384h272c17.67 0 32-14.33 32-32 0-123.71-100.29-224-224-224V64h176c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H144c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h176v64H112L68.8 70.4C65.78 66.37 61.03 64 56 64H16.01C5.6 64-2.04 73.78.49 83.88L32 192l160 64 86.4 115.2A31.992 31.992 0 0 0 304 384zm112-188.49C478.55 208.3 528.03 257.44 540.79 320H416V195.51zm219.37 263.3l-22.15-22.2c-6.25-6.26-16.24-6.1-22.64.01-7.09 6.77-13.84 11.25-24.64 11.25H240c-8.84 0-16 7.18-16 16.03v32.06c0 8.85 7.16 16.03 16 16.03h325.94c14.88 0 35.3-.47 68.45-29.52 7.02-6.14 7.57-17.05.98-23.66z"], + "highlighter": [544, 512, [], "f591", "M0 479.98L99.92 512l35.45-35.45-67.04-67.04L0 479.98zm124.61-240.01a36.592 36.592 0 0 0-10.79 38.1l13.05 42.83-50.93 50.94 96.23 96.23 50.86-50.86 42.74 13.08c13.73 4.2 28.65-.01 38.15-10.78l35.55-41.64-173.34-173.34-41.52 35.44zm403.31-160.7l-63.2-63.2c-20.49-20.49-53.38-21.52-75.12-2.35L190.55 183.68l169.77 169.78L530.27 154.4c19.18-21.74 18.15-54.63-2.35-75.13z"], + "history": [512, 512, [], "f1da", "M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z"], + "hockey-puck": [512, 512, [], "f453", "M0 160c0-53 114.6-96 256-96s256 43 256 96-114.6 96-256 96S0 213 0 160zm0 82.2V352c0 53 114.6 96 256 96s256-43 256-96V242.2c-113.4 82.3-398.5 82.4-512 0z"], + "home": [576, 512, [], "f015", "M488 312.7V456c0 13.3-10.7 24-24 24H348c-6.6 0-12-5.4-12-12V356c0-6.6-5.4-12-12-12h-72c-6.6 0-12 5.4-12 12v112c0 6.6-5.4 12-12 12H112c-13.3 0-24-10.7-24-24V312.7c0-3.6 1.6-7 4.4-9.3l188-154.8c4.4-3.6 10.8-3.6 15.3 0l188 154.8c2.7 2.3 4.3 5.7 4.3 9.3zm83.6-60.9L488 182.9V44.4c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12V117l-89.5-73.7c-17.7-14.6-43.3-14.6-61 0L4.4 251.8c-5.1 4.2-5.8 11.8-1.6 16.9l25.5 31c4.2 5.1 11.8 5.8 16.9 1.6l235.2-193.7c4.4-3.6 10.8-3.6 15.3 0l235.2 193.7c5.1 4.2 12.7 3.5 16.9-1.6l25.5-31c4.2-5.2 3.4-12.7-1.7-16.9z"], + "hospital": [448, 512, [], "f0f8", "M448 492v20H0v-20c0-6.627 5.373-12 12-12h20V120c0-13.255 10.745-24 24-24h88V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v72h88c13.255 0 24 10.745 24 24v360h20c6.627 0 12 5.373 12 12zM308 192h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-168 64h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm104 128h-40c-6.627 0-12 5.373-12 12v84h64v-84c0-6.627-5.373-12-12-12zm64-96h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-116 12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zM182 96h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6z"], + "hospital-alt": [576, 512, [], "f47d", "M544 96H416V32c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32v368c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16V128c0-17.7-14.3-32-32-32zM160 436c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm160 128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm16-170c0 3.3-2.7 6-6 6h-26v26c0 3.3-2.7 6-6 6h-20c-3.3 0-6-2.7-6-6v-26h-26c-3.3 0-6-2.7-6-6v-20c0-3.3 2.7-6 6-6h26V86c0-3.3 2.7-6 6-6h20c3.3 0 6 2.7 6 6v26h26c3.3 0 6 2.7 6 6v20zm144 298c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z"], + "hospital-symbol": [512, 512, [], "f47e", "M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm112 376c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-88h-96v88c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V136c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v88h96v-88c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v240z"], + "hot-tub": [512, 512, [], "f593", "M414.21 177.65c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C378.96 6.14 372.22 0 364.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zm-108 0c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C270.96 6.14 264.22 0 256.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zM480 256H256l-110.93-83.2a63.99 63.99 0 0 0-38.4-12.8H64c-35.35 0-64 28.65-64 64v224c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64V288c0-17.67-14.33-32-32-32zM128 440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zM64 128c35.35 0 64-28.65 64-64S99.35 0 64 0 0 28.65 0 64s28.65 64 64 64z"], + "hotel": [576, 512, [], "f594", "M560 64c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h15.98v384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h240v-80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v80h240c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-16V64h16zm-304 44.8c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm0 96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm-128-96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zM179.2 256h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8zM192 384c0-53.02 42.98-96 96-96s96 42.98 96 96H192zm256-140.8c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-96c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4z"], + "hourglass": [384, 512, [], "f254", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64z"], + "hourglass-end": [384, 512, [], "f253", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64zM192 208c-57.787 0-104-66.518-104-144h208c0 77.945-46.51 144-104 144z"], + "hourglass-half": [384, 512, [], "f252", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-75.078 384H99.08c17.059-46.797 52.096-80 92.92-80 40.821 0 75.862 33.196 92.922 80zm.019-256H99.078C91.988 108.548 88 86.748 88 64h208c0 22.805-3.987 44.587-11.059 64z"], + "hourglass-start": [384, 512, [], "f251", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-64 448H88c0-77.458 46.204-144 104-144 57.786 0 104 66.517 104 144z"], + "i-cursor": [256, 512, [], "f246", "M256 52.048V12.065C256 5.496 250.726.148 244.158.066 211.621-.344 166.469.011 128 37.959 90.266.736 46.979-.114 11.913.114 5.318.157 0 5.519 0 12.114v39.645c0 6.687 5.458 12.078 12.145 11.998C38.111 63.447 96 67.243 96 112.182V224H60c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h36v112c0 44.932-56.075 48.031-83.95 47.959C5.404 447.942 0 453.306 0 459.952v39.983c0 6.569 5.274 11.917 11.842 11.999 32.537.409 77.689.054 116.158-37.894 37.734 37.223 81.021 38.073 116.087 37.845 6.595-.043 11.913-5.405 11.913-12V460.24c0-6.687-5.458-12.078-12.145-11.998C217.889 448.553 160 444.939 160 400V288h36c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-36V112.182c0-44.932 56.075-48.213 83.95-48.142 6.646.018 12.05-5.346 12.05-11.992z"], + "id-badge": [384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM144 32h96c8.8 0 16 7.2 16 16s-7.2 16-16 16h-96c-8.8 0-16-7.2-16-16s7.2-16 16-16zm48 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 416 80 407.4 80 396.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"], + "id-card": [576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v16h576V80c0-26.5-21.5-48-48-48zM0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V128H0v304zm352-232c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zM176 192c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zM67.1 396.2C75.5 370.5 99.6 352 128 352h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.9-5.2 19.8-15.6 19.8H82.7c-10.4 0-18.8-10-15.6-19.8z"], + "id-card-alt": [576, 512, [], "f47f", "M528 64H384v96H192V64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM288 224c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm93.3 224H194.7c-10.4 0-18.8-10-15.6-19.8 8.3-25.6 32.4-44.2 60.9-44.2h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.8-5.2 19.8-15.6 19.8zM352 32c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v96h128V32z"], + "image": [512, 512, [], "f03e", "M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z"], + "images": [576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v208c0 44.112 35.888 80 80 80h336zm96-80V80c0-26.51-21.49-48-48-48H144c-26.51 0-48 21.49-48 48v256c0 26.51 21.49 48 48 48h384c26.51 0 48-21.49 48-48zM256 128c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-96 144l55.515-55.515c4.686-4.686 12.284-4.686 16.971 0L272 256l135.515-135.515c4.686-4.686 12.284-4.686 16.971 0L512 208v112H160v-48z"], + "inbox": [576, 512, [], "f01c", "M567.938 243.908L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L8.062 243.908A47.994 47.994 0 0 0 0 270.533V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V270.533a47.994 47.994 0 0 0-8.062-26.625zM162.252 128h251.497l85.333 128H376l-32 64H232l-32-64H76.918l85.334-128z"], + "indent": [448, 512, [], "f03c", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm176 144h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm-52.687-111.313l-96-95.984C17.266 138.652 0 145.776 0 160.016v191.975c0 14.329 17.325 21.304 27.313 11.313l96-95.992c6.249-6.247 6.249-16.377 0-22.625z"], + "industry": [512, 512, [], "f275", "M475.115 163.781L336 252.309v-68.28c0-18.916-20.931-30.399-36.885-20.248L160 252.309V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h464c13.255 0 24-10.745 24-24V184.029c0-18.917-20.931-30.399-36.885-20.248z"], + "infinity": [640, 512, [], "f534", "M471.1 96C405 96 353.3 137.3 320 174.6 286.7 137.3 235 96 168.9 96 75.8 96 0 167.8 0 256s75.8 160 168.9 160c66.1 0 117.8-41.3 151.1-78.6 33.3 37.3 85 78.6 151.1 78.6 93.1 0 168.9-71.8 168.9-160S564.2 96 471.1 96zM168.9 320c-40.2 0-72.9-28.7-72.9-64s32.7-64 72.9-64c38.2 0 73.4 36.1 94 64-20.4 27.6-55.9 64-94 64zm302.2 0c-38.2 0-73.4-36.1-94-64 20.4-27.6 55.9-64 94-64 40.2 0 72.9 28.7 72.9 64s-32.7 64-72.9 64z"], + "info": [192, 512, [], "f129", "M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z"], + "info-circle": [512, 512, [], "f05a", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z"], + "italic": [320, 512, [], "f033", "M204.758 416h-33.849l62.092-320h40.725a16 16 0 0 0 15.704-12.937l6.242-32C297.599 41.184 290.034 32 279.968 32H120.235a16 16 0 0 0-15.704 12.937l-6.242 32C96.362 86.816 103.927 96 113.993 96h33.846l-62.09 320H46.278a16 16 0 0 0-15.704 12.935l-6.245 32C22.402 470.815 29.967 480 40.034 480h158.479a16 16 0 0 0 15.704-12.935l6.245-32c1.927-9.88-5.638-19.065-15.704-19.065z"], + "joint": [640, 512, [], "f595", "M444.34 181.1c22.38 15.68 35.66 41.16 35.66 68.59V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-43.24-21.01-83.41-56.34-108.06C463.85 125.02 448 99.34 448 70.31V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v66.4c0 43.69 24.56 81.63 60.34 106.7zM194.97 358.98C126.03 370.07 59.69 394.69 0 432c83.65 52.28 180.3 80 278.94 80h88.57L254.79 380.49c-14.74-17.2-37.45-25.11-59.82-21.51zM553.28 87.09c-5.67-3.8-9.28-9.96-9.28-16.78V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v62.31c0 22.02 10.17 43.41 28.64 55.39C550.79 153.04 576 199.54 576 249.69V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-65.44-32.41-126.19-86.72-162.6zM360.89 352.05c-34.4.06-86.81.15-88.21.17l117.8 137.43A63.987 63.987 0 0 0 439.07 512h88.45L409.57 374.4a63.955 63.955 0 0 0-48.68-22.35zM616 352H432l117.99 137.65A63.987 63.987 0 0 0 598.58 512H616c13.25 0 24-10.75 24-24V376c0-13.26-10.75-24-24-24z"], + "key": [512, 512, [], "f084", "M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z"], + "keyboard": [576, 512, [], "f11c", "M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"], + "kiss": [496, 512, [], "f596", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm136 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm24-156c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "kiss-beam": [496, 512, [], "f597", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-39 219.9l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5zM304 396c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm65-168.1l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5z"], + "kiss-wink-heart": [504, 512, [], "f598", "M501.1 402.5c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zm-177.6-4c-5.6-20.3-2.3-42 9-59.7 29.7-46.3 98.7-45.5 127.8 4.3 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-.3-.7-23.9-84.6-23.9-84.6zM168 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm120 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-5.7-12.3 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.8-3.7-4.6-16.6 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C274.6 368.7 288 383 288 396zm16-179c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S400 181 404 206.2c1.7 11.1-11.3 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 217z"], + "kiwi-bird": [576, 512, [], "f535", "M575.81 217.98C572.64 157.41 518.28 112 457.63 112h-9.37c-52.82 0-104.25-16.25-147.74-46.24-41.99-28.96-96.04-41.62-153.21-28.7C129.3 41.12-.08 78.24 0 224c.04 70.95 38.68 132.8 95.99 166.01V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-54.26c15.36 3.96 31.4 6.26 48 6.26 5.44 0 10.68-.73 16-1.18V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-59.43c14.24-5.06 27.88-11.39 40.34-19.51C342.07 355.25 393.86 336 448.46 336c25.48 0 16.01-.31 23.05-.78l74.41 136.44c2.86 5.23 8.3 8.34 14.05 8.34 1.31 0 2.64-.16 3.95-.5 7.09-1.8 12.05-8.19 12.05-15.5 0 0 .14-240.24-.16-246.02zM463.97 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm80 153.25l-39.86-73.08c15.12-5.83 28.73-14.6 39.86-25.98v99.06z"], + "language": [640, 512, [], "f1ab", "M304 416H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h280v320zm-120.676-72.622A12 12 0 0 0 194.839 352h22.863c8.22 0 14.007-8.078 11.362-15.861L171.61 167.085a12 12 0 0 0-11.362-8.139h-32.489a12.001 12.001 0 0 0-11.362 8.139L58.942 336.139C56.297 343.922 62.084 352 70.304 352h22.805a12 12 0 0 0 11.535-8.693l9.118-31.807h60.211l9.351 31.878zm-39.051-140.42s4.32 21.061 7.83 33.21l10.8 37.531h-38.07l11.07-37.531c3.51-12.15 7.83-33.21 7.83-33.21h.54zM616 416H336V96h280c13.255 0 24 10.745 24 24v272c0 13.255-10.745 24-24 24zm-36-228h-64v-16c0-6.627-5.373-12-12-12h-16c-6.627 0-12 5.373-12 12v16h-64c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h114.106c-6.263 14.299-16.518 28.972-30.023 43.206-6.56-6.898-12.397-13.91-17.365-20.933-3.639-5.144-10.585-6.675-15.995-3.446l-7.28 4.346-6.498 3.879c-5.956 3.556-7.693 11.421-3.735 17.117 6.065 8.729 13.098 17.336 20.984 25.726-8.122 6.226-16.841 12.244-26.103 17.964-5.521 3.41-7.381 10.556-4.162 16.19l7.941 13.896c3.362 5.883 10.935 7.826 16.706 4.276 12.732-7.831 24.571-16.175 35.443-24.891 10.917 8.761 22.766 17.102 35.396 24.881 5.774 3.556 13.353 1.618 16.717-4.27l7.944-13.903c3.213-5.623 1.37-12.76-4.135-16.171a312.737 312.737 0 0 1-26.06-18.019c21.024-22.425 35.768-46.289 42.713-69.85H580c6.627 0 12-5.373 12-12v-16c0-6.625-5.373-11.998-12-11.998z"], + "laptop": [640, 512, [], "f109", "M512 64v256H128V64h384m16-64H112C85.5 0 64 21.5 64 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm100 416H389.5c-3 0-5.5 2.1-5.9 5.1C381.2 436.3 368 448 352 448h-64c-16 0-29.2-11.7-31.6-26.9-.5-2.9-3-5.1-5.9-5.1H12c-6.6 0-12 5.4-12 12v36c0 26.5 21.5 48 48 48h544c26.5 0 48-21.5 48-48v-36c0-6.6-5.4-12-12-12z"], + "laugh": [496, 512, [], "f599", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 152c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm88 272h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18-8.9 71-69.5 126-142.9 126z"], + "laugh-beam": [496, 512, [], "f59a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm24 199.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.8 4.1-15.1-4.5zm-160 0c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z"], + "laugh-squint": [496, 512, [], "f59b", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 161.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 180l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z"], + "laugh-wink": [496, 512, [], "f59c", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm20.1 198.1c4-25.2 34.2-42.1 59.9-42.1s55.9 16.9 59.9 42.1c1.7 11.1-11.4 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 217c-8.4 7.4-21.6.3-19.9-10.9zM168 160c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm230.9 146C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z"], + "leaf": [576, 512, [], "f06c", "M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z"], + "lemon": [512, 512, [], "f094", "M489.038 22.963C465.944-.13 434.648-5.93 413.947 6.129c-58.906 34.312-181.25-53.077-321.073 86.746S40.441 355.041 6.129 413.945c-12.059 20.702-6.26 51.999 16.833 75.093 23.095 23.095 54.392 28.891 75.095 16.832 58.901-34.31 181.246 53.079 321.068-86.743S471.56 156.96 505.871 98.056c12.059-20.702 6.261-51.999-16.833-75.093zM243.881 95.522c-58.189 14.547-133.808 90.155-148.358 148.358-1.817 7.27-8.342 12.124-15.511 12.124-1.284 0-2.59-.156-3.893-.481-8.572-2.144-13.784-10.83-11.642-19.403C81.901 166.427 166.316 81.93 236.119 64.478c8.575-2.143 17.261 3.069 19.403 11.642s-3.069 17.259-11.641 19.402z"], + "less-than": [384, 512, [], "f536", "M365.46 357.74L147.04 255.89l218.47-101.88c16.02-7.47 22.95-26.51 15.48-42.53l-13.52-29C360 66.46 340.96 59.53 324.94 67L18.48 209.91a32.014 32.014 0 0 0-18.48 29v34.24c0 12.44 7.21 23.75 18.48 29l306.31 142.83c16.06 7.49 35.15.54 42.64-15.52l13.56-29.08c7.49-16.06.54-35.15-15.53-42.64z"], + "less-than-equal": [448, 512, [], "f537", "M54.98 214.2l301.41 119.87c18.39 6.03 38.71-2.54 45.38-19.15l12.09-30.08c6.68-16.61-2.82-34.97-21.21-41l-175.44-68.05 175.56-68.09c18.29-6 27.74-24.27 21.1-40.79l-12.03-29.92c-6.64-16.53-26.86-25.06-45.15-19.06L54.98 137.89C41.21 142.41 32 154.5 32 168.07v15.96c0 13.56 9.21 25.65 22.98 30.17zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z"], + "level-down-alt": [320, 512, [], "f3be", "M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z"], + "level-up-alt": [320, 512, [], "f3bf", "M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z"], + "life-ring": [512, 512, [], "f1cd", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm173.696 119.559l-63.399 63.399c-10.987-18.559-26.67-34.252-45.255-45.255l63.399-63.399a218.396 218.396 0 0 1 45.255 45.255zM256 352c-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96-42.981 96-96 96zM127.559 82.304l63.399 63.399c-18.559 10.987-34.252 26.67-45.255 45.255l-63.399-63.399a218.372 218.372 0 0 1 45.255-45.255zM82.304 384.441l63.399-63.399c10.987 18.559 26.67 34.252 45.255 45.255l-63.399 63.399a218.396 218.396 0 0 1-45.255-45.255zm302.137 45.255l-63.399-63.399c18.559-10.987 34.252-26.67 45.255-45.255l63.399 63.399a218.403 218.403 0 0 1-45.255 45.255z"], + "lightbulb": [384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zm-143.107-44c-9.907 0-18.826-6.078-22.376-15.327C67.697 267.541 16 277.731 16 176 16 78.803 94.805 0 192 0s176 78.803 176 176c0 101.731-51.697 91.541-90.516 192.673-3.55 9.249-12.47 15.327-22.376 15.327H128.893zM112 176c0-44.112 35.888-80 80-80 8.837 0 16-7.164 16-16s-7.163-16-16-16c-61.757 0-112 50.243-112 112 0 8.836 7.164 16 16 16s16-7.164 16-16z"], + "link": [512, 512, [], "f0c1", "M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z"], + "lira-sign": [384, 512, [], "f195", "M371.994 256h-48.019C317.64 256 312 260.912 312 267.246 312 368 230.179 416 144 416V256.781l134.603-29.912A12 12 0 0 0 288 215.155v-40.976c0-7.677-7.109-13.38-14.603-11.714L144 191.219V160.78l134.603-29.912A12 12 0 0 0 288 119.154V78.179c0-7.677-7.109-13.38-14.603-11.714L144 95.219V44c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v68.997L9.397 125.131A12 12 0 0 0 0 136.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 178.558v30.439L9.397 221.131A12 12 0 0 0 0 232.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 274.558V468c0 6.627 5.373 12 12 12h79.583c134.091 0 223.255-77.834 228.408-211.592.261-6.782-5.211-12.408-11.997-12.408z"], + "list": [512, 512, [], "f03a", "M128 116V76c0-8.837 7.163-16 16-16h352c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H144c-8.837 0-16-7.163-16-16zm16 176h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 144h64c8.837 0 16-7.163 16-16V64c0-8.837-7.163-16-16-16H16C7.163 48 0 55.163 0 64v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16z"], + "list-alt": [512, 512, [], "f022", "M464 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM128 120c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288-136v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12z"], + "list-ol": [512, 512, [], "f0cb", "M3.263 139.527c0-7.477 3.917-11.572 11.573-11.572h15.131V88.078c0-5.163.534-10.503.534-10.503h-.356s-1.779 2.67-2.848 3.738c-4.451 4.273-10.504 4.451-15.666-1.068l-5.518-6.231c-5.342-5.341-4.984-11.216.534-16.379l21.72-19.938C32.815 33.602 36.732 32 42.785 32H54.89c7.656 0 11.749 3.916 11.749 11.572v84.384h15.488c7.655 0 11.572 4.094 11.572 11.572v8.901c0 7.477-3.917 11.572-11.572 11.572H14.836c-7.656 0-11.573-4.095-11.573-11.572v-8.902zM2.211 304.591c0-47.278 50.955-56.383 50.955-69.165 0-7.18-5.954-8.755-9.28-8.755-3.153 0-6.479 1.051-9.455 3.852-5.079 4.903-10.507 7.004-16.111 2.451l-8.579-6.829c-5.779-4.553-7.18-9.805-2.803-15.409C13.592 201.981 26.025 192 47.387 192c19.437 0 44.476 10.506 44.476 39.573 0 38.347-46.753 46.402-48.679 56.909h39.049c7.529 0 11.557 4.027 11.557 11.382v8.755c0 7.354-4.028 11.382-11.557 11.382h-67.94c-7.005 0-12.083-4.028-12.083-11.382v-4.028zM5.654 454.61l5.603-9.28c3.853-6.654 9.105-7.004 15.584-3.152 4.903 2.101 9.63 3.152 14.359 3.152 10.155 0 14.358-3.502 14.358-8.23 0-6.654-5.604-9.106-15.934-9.106h-4.728c-5.954 0-9.28-2.101-12.258-7.88l-1.05-1.926c-2.451-4.728-1.226-9.806 2.801-14.884l5.604-7.004c6.829-8.405 12.257-13.483 12.257-13.483v-.35s-4.203 1.051-12.608 1.051H16.685c-7.53 0-11.383-4.028-11.383-11.382v-8.755c0-7.53 3.853-11.382 11.383-11.382h58.484c7.529 0 11.382 4.027 11.382 11.382v3.327c0 5.778-1.401 9.806-5.079 14.183l-17.509 20.137c19.611 5.078 28.716 20.487 28.716 34.845 0 21.363-14.358 44.126-48.503 44.126-16.636 0-28.192-4.728-35.896-9.455-5.779-4.202-6.304-9.805-2.626-15.934zM144 132h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"], + "list-ul": [512, 512, [], "f0ca", "M96 96c0 26.51-21.49 48-48 48S0 122.51 0 96s21.49-48 48-48 48 21.49 48 48zM48 208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm0 160c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm96-236h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"], + "location-arrow": [512, 512, [], "f124", "M443.683 4.529L27.818 196.418C-18.702 217.889-3.39 288 47.933 288H224v175.993c0 51.727 70.161 66.526 91.582 20.115L507.38 68.225c18.905-40.961-23.752-82.133-63.697-63.696z"], + "lock": [448, 512, [], "f023", "M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z"], + "lock-open": [576, 512, [], "f3c1", "M423.5 0C339.5.3 272 69.5 272 153.5V224H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48h-48v-71.1c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v80c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-80C576 68 507.5-.3 423.5 0z"], + "long-arrow-alt-down": [256, 512, [], "f309", "M168 345.941V44c0-6.627-5.373-12-12-12h-56c-6.627 0-12 5.373-12 12v301.941H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.569 9.373 33.941 0l86.059-86.059c15.119-15.119 4.411-40.971-16.971-40.971H168z"], + "long-arrow-alt-left": [448, 512, [], "f30a", "M134.059 296H436c6.627 0 12-5.373 12-12v-56c0-6.627-5.373-12-12-12H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.569 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296z"], + "long-arrow-alt-right": [448, 512, [], "f30b", "M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z"], + "long-arrow-alt-up": [256, 512, [], "f30c", "M88 166.059V468c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12V166.059h46.059c21.382 0 32.09-25.851 16.971-40.971l-86.059-86.059c-9.373-9.373-24.569-9.373-33.941 0l-86.059 86.059c-15.119 15.119-4.411 40.971 16.971 40.971H88z"], + "low-vision": [576, 512, [], "f2a8", "M569.344 231.631C512.96 135.949 407.81 72 288 72c-28.468 0-56.102 3.619-82.451 10.409L152.778 10.24c-7.601-10.858-22.564-13.5-33.423-5.9l-13.114 9.178c-10.86 7.601-13.502 22.566-5.9 33.426l43.131 58.395C89.449 131.73 40.228 174.683 6.682 231.581c-.01.017-.023.033-.034.05-8.765 14.875-8.964 33.528 0 48.739 38.5 65.332 99.742 115.862 172.859 141.349L55.316 244.302A272.194 272.194 0 0 1 83.61 208.39l119.4 170.58h.01l40.63 58.04a330.055 330.055 0 0 0 78.94 1.17l-189.98-271.4a277.628 277.628 0 0 1 38.777-21.563l251.836 356.544c7.601 10.858 22.564 13.499 33.423 5.9l13.114-9.178c10.86-7.601 13.502-22.567 5.9-33.426l-43.12-58.377-.007-.009c57.161-27.978 104.835-72.04 136.81-126.301a47.938 47.938 0 0 0 .001-48.739zM390.026 345.94l-19.066-27.23c24.682-32.567 27.711-76.353 8.8-111.68v.03c0 23.65-19.17 42.82-42.82 42.82-23.828 0-42.82-19.349-42.82-42.82 0-23.65 19.17-42.82 42.82-42.82h.03c-24.75-13.249-53.522-15.643-79.51-7.68l-19.068-27.237C253.758 123.306 270.488 120 288 120c75.162 0 136 60.826 136 136 0 34.504-12.833 65.975-33.974 89.94z"], + "luggage-cart": [640, 512, [], "f59d", "M224 320h32V96h-32c-17.67 0-32 14.33-32 32v160c0 17.67 14.33 32 32 32zm352-32V128c0-17.67-14.33-32-32-32h-32v224h32c17.67 0 32-14.33 32-32zm48 96H128V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h48v368c0 8.84 7.16 16 16 16h82.94c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16h197.88c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM480 96V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v272h192V96zm-48 0h-96V48h96v48z"], + "magic": [512, 512, [], "f0d0", "M224 96l16-32 32-16-32-16-16-32-16 32-32 16 32 16 16 32zM80 160l26.66-53.33L160 80l-53.34-26.67L80 0 53.34 53.33 0 80l53.34 26.67L80 160zm352 128l-26.66 53.33L352 368l53.34 26.67L432 448l26.66-53.33L512 368l-53.34-26.67L432 288zm70.62-193.77L417.77 9.38C411.53 3.12 403.34 0 395.15 0c-8.19 0-16.38 3.12-22.63 9.38L9.38 372.52c-12.5 12.5-12.5 32.76 0 45.25l84.85 84.85c6.25 6.25 14.44 9.37 22.62 9.37 8.19 0 16.38-3.12 22.63-9.37l363.14-363.15c12.5-12.48 12.5-32.75 0-45.24zM359.45 203.46l-50.91-50.91 86.6-86.6 50.91 50.91-86.6 86.6z"], + "magnet": [512, 512, [], "f076", "M164.1 160H12c-6.6 0-12-5.4-12-12V68c0-19.9 16.1-36 36-36h104c19.9 0 36 16.1 36 36v80c.1 6.6-5.3 12-11.9 12zm348-12V67.9c0-19.9-16.1-36-36-36h-104c-19.9 0-36 16.1-36 36v80c0 6.6 5.4 12 12 12h152c6.6.1 12-5.3 12-11.9zm-164 44c-6.6 0-12 5.4-12 12v52c0 128.1-160 127.9-160 0v-52c0-6.6-5.4-12-12-12h-152c-6.7 0-12 5.4-12 12.1.1 21.4.6 40.3 0 53.3C.1 408 136.3 504 256.9 504 377.5 504 512 408 512 257.3c-.6-12.8-.2-33 0-53.2 0-6.7-5.3-12.1-12-12.1H348.1z"], + "male": [192, 512, [], "f183", "M96 0c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64S60.654 0 96 0m48 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H48c-26.51 0-48 21.49-48 48v136c0 13.255 10.745 24 24 24h16v136c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V352h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48z"], + "map": [576, 512, [], "f279", "M0 117.66v346.32c0 11.32 11.43 19.06 21.94 14.86L160 416V32L20.12 87.95A32.006 32.006 0 0 0 0 117.66zM192 416l192 64V96L192 32v384zM554.06 33.16L416 96v384l139.88-55.95A31.996 31.996 0 0 0 576 394.34V48.02c0-11.32-11.43-19.06-21.94-14.86z"], + "map-marked": [576, 512, [], "f59f", "M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z"], + "map-marked-alt": [576, 512, [], "f5a0", "M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zm0 168c-23.2 0-42-18.8-42-42s18.8-42 42-42 42 18.8 42 42-18.8 42-42 42zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z"], + "map-marker": [384, 512, [], "f041", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0z"], + "map-marker-alt": [384, 512, [], "f3c5", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"], + "map-pin": [320, 512, [], "f276", "M192 300.813v172.82l-22.015 33.023c-4.75 7.125-15.219 7.125-19.969 0L128 473.633v-172.82a162.221 162.221 0 0 0 64 0zM160 0c79.529 0 144 64.471 144 144s-64.471 144-144 144S16 223.529 16 144 80.471 0 160 0M80 136c0-39.701 32.299-72 72-72a8 8 0 0 0 0-16c-48.523 0-88 39.477-88 88a8 8 0 0 0 16 0z"], + "map-signs": [512, 512, [], "f277", "M487.515 104.485L439.03 152.97a23.998 23.998 0 0 1-16.97 7.029H56c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h160v-8c0-13.255 10.745-24 24-24h32c13.255 0 24 10.745 24 24v8h126.059a24 24 0 0 1 16.97 7.029l48.485 48.485c4.687 4.687 4.687 12.285.001 16.971zM216 368v120c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V368h-80zm240-144H296v-48h-80v48H89.941a24 24 0 0 0-16.97 7.029l-48.485 48.485c-4.686 4.686-4.686 12.284 0 16.971l48.485 48.485a23.998 23.998 0 0 0 16.97 7.029H456c13.255 0 24-10.745 24-24v-80C480 234.745 469.255 224 456 224z"], + "marker": [512, 512, [], "f5a1", "M93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l75.4-75.4-128.02-128.02-75.4 75.4zM485.49 26.51c-35.35-35.35-92.67-35.35-128.02 0l-21.76 21.76-36.56-36.55c-15.62-15.62-40.95-15.62-56.56 0L138.47 115.84c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0l87.15-87.15 19.59 19.59L191.98 192 320 320.02l165.49-165.49c35.35-35.35 35.35-92.66 0-128.02z"], + "mars": [384, 512, [], "f222", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c0-6.6-5.4-12-12-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"], + "mars-double": [512, 512, [], "f227", "M340 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C198.5 72.1 172.2 64 144 64 64.5 64 0 128.5 0 208s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.5 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 288c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80zm356-128.1h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7c-18.2-11.4-39-18.9-61.5-21.3-2.1 21.8-8.2 43.3-18.4 63.3 1.1 0 2.2-.1 3.2-.1 44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80c0-1.1 0-2.2.1-3.2-20 10.2-41.5 16.4-63.3 18.4C168.4 455.6 229.6 512 304 512c79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12v-79c0-6.7-5.4-12.1-12-12.1z"], + "mars-stroke": [384, 512, [], "f229", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-17.5 17.5-14.1-14.1c-4.7-4.7-12.3-4.7-17 0L224.5 133c-4.7 4.7-4.7 12.3 0 17l14.1 14.1-18 18c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l18-18 14.1 14.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L329.2 164l17.5-17.5 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c-.1-6.6-5.5-12-12.1-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"], + "mars-stroke-h": [480, 512, [], "f22b", "M476.2 247.5l-55.9-55.9c-7.6-7.6-20.5-2.2-20.5 8.5V224H376v-20c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v20h-27.6c-5.8-25.6-18.7-49.9-38.6-69.8C189.6 98 98.4 98 42.2 154.2c-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 19.9-19.9 32.8-44.2 38.6-69.8H312v20c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-20h23.9v23.9c0 10.7 12.9 16 20.5 8.5l55.9-55.9c4.6-4.7 4.6-12.3-.1-17zm-275.6 65.1c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z"], + "mars-stroke-v": [288, 512, [], "f22a", "M245.8 234.2c-19.9-19.9-44.2-32.8-69.8-38.6v-25.4h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V81.4h23.9c10.7 0 16-12.9 8.5-20.5L152.5 5.1c-4.7-4.7-12.3-4.7-17 0L79.6 61c-7.6 7.6-2.2 20.5 8.5 20.5H112v24.7H92c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h20v25.4c-25.6 5.8-49.9 18.7-69.8 38.6-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 56.3-56.2 56.3-147.4 0-203.6zm-45.2 158.4c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z"], + "medal": [512, 512, [], "f5a2", "M223.75 130.75L154.62 15.54A31.997 31.997 0 0 0 127.18 0H16.03C3.08 0-4.5 14.57 2.92 25.18l111.27 158.96c29.72-27.77 67.52-46.83 109.56-53.39zM495.97 0H384.82c-11.24 0-21.66 5.9-27.44 15.54l-69.13 115.21c42.04 6.56 79.84 25.62 109.56 53.38L509.08 25.18C516.5 14.57 508.92 0 495.97 0zM256 160c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm92.52 157.26l-37.93 36.96 8.97 52.22c1.6 9.36-8.26 16.51-16.65 12.09L256 393.88l-46.9 24.65c-8.4 4.45-18.25-2.74-16.65-12.09l8.97-52.22-37.93-36.96c-6.82-6.64-3.05-18.23 6.35-19.59l52.43-7.64 23.43-47.52c2.11-4.28 6.19-6.39 10.28-6.39 4.11 0 8.22 2.14 10.33 6.39l23.43 47.52 52.43 7.64c9.4 1.36 13.17 12.95 6.35 19.59z"], + "medkit": [512, 512, [], "f0fa", "M96 480h320V128h-32V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v48H96v352zm96-384h128v32H192V96zm320 80v256c0 26.51-21.49 48-48 48h-16V128h16c26.51 0 48 21.49 48 48zM64 480H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v352zm288-208v32c0 8.837-7.163 16-16 16h-48v48c0 8.837-7.163 16-16 16h-32c-8.837 0-16-7.163-16-16v-48h-48c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h48v-48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v48h48c8.837 0 16 7.163 16 16z"], + "meh": [496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm176 192H152c-21.2 0-21.2-32 0-32h192c21.2 0 21.2 32 0 32zm-16-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "meh-blank": [496, 512, [], "f5a4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "meh-rolling-eyes": [496, 512, [], "f5a5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 224c0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64s-64-28.7-64-64zm224 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-112c-35.3 0-64-28.7-64-64 0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64z"], + "memory": [640, 512, [], "f538", "M640 130.94V96c0-17.67-14.33-32-32-32H32C14.33 64 0 78.33 0 96v34.94c18.6 6.61 32 24.19 32 45.06s-13.4 38.45-32 45.06V320h640v-98.94c-18.6-6.61-32-24.19-32-45.06s13.4-38.45 32-45.06zM224 256h-64V128h64v128zm128 0h-64V128h64v128zm128 0h-64V128h64v128zM0 448h64v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h64v-96H0v96z"], + "mercury": [288, 512, [], "f223", "M288 208c0-44.2-19.9-83.7-51.2-110.1 2.5-1.8 4.9-3.8 7.2-5.8 24.7-21.2 39.8-48.8 43.2-78.8.9-7.1-4.7-13.3-11.9-13.3h-40.5C229 0 224.1 4.1 223 9.8c-2.4 12.5-9.6 24.3-20.7 33.8C187 56.8 166.3 64 144 64s-43-7.2-58.4-20.4C74.5 34.1 67.4 22.3 64.9 9.8 63.8 4.1 58.9 0 53.2 0H12.7C5.5 0-.1 6.2.8 13.3 4.2 43.4 19.2 71 44 92.2c2.3 2 4.7 3.9 7.2 5.8C19.9 124.3 0 163.8 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z"], + "microchip": [512, 512, [], "f2db", "M416 48v416c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h224c26.51 0 48 21.49 48 48zm96 58v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42V88h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zM30 376h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6z"], + "microphone": [352, 512, [], "f130", "M176 352c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96zm160-160h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16z"], + "microphone-alt": [352, 512, [], "f3c9", "M336 192h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16zM176 352c53.02 0 96-42.98 96-96h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96z"], + "microphone-alt-slash": [640, 512, [], "f539", "M633.82 458.1L476.26 336.33C488.74 312.21 496 284.98 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67h-43.67l-41.4-32H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.78c11.71-1.62 23.1-4.28 33.96-8.08l-50.4-38.96c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z"], + "microphone-slash": [640, 512, [], "f131", "M633.82 458.1l-157.8-121.96C488.61 312.13 496 285.01 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67V96c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.77c11.66-1.6 22.85-4.54 33.67-8.31l-50.11-38.73c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z"], + "minus": [448, 512, [], "f068", "M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"], + "minus-circle": [512, 512, [], "f056", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM124 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H124z"], + "minus-square": [448, 512, [], "f146", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H92z"], + "mobile": [320, 512, [], "f10b", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "mobile-alt": [320, 512, [], "f3cd", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm112-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v312z"], + "money-bill": [640, 512, [], "f0d6", "M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 176c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 48h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z"], + "money-bill-alt": [640, 512, [], "f3d1", "M352 288h-16v-88c0-4.42-3.58-8-8-8h-13.58c-4.74 0-9.37 1.4-13.31 4.03l-15.33 10.22a7.994 7.994 0 0 0-2.22 11.09l8.88 13.31a7.994 7.994 0 0 0 11.09 2.22l.47-.31V288h-16c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8h64c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 192c-53.02 0-96-50.15-96-112 0-61.86 42.98-112 96-112s96 50.14 96 112c0 61.87-43 112-96 112zm272 32h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z"], + "money-bill-wave": [640, 512, [], "f53a", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM48 132.22c20.12 5.04 41.12 7.57 62.72 8.93C104.84 170.54 79 192.69 48 192.69v-60.47zm0 285v-47.78c34.37 0 62.18 27.27 63.71 61.4-22.53-1.81-43.59-6.31-63.71-13.62zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 27.78c-17.52-4.39-35.71-6.85-54.32-8.44 5.87-26.08 27.5-45.88 54.32-49.28v57.72zm0-236.11c-30.89-3.91-54.86-29.7-55.81-61.55 19.54 2.17 38.09 6.23 55.81 12.66v48.89z"], + "money-bill-wave-alt": [640, 512, [], "f53b", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96z"], + "money-check": [640, 512, [], "f53c", "M0 448c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128H0v320zm448-208c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-32zm0 120c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H456c-4.42 0-8-3.58-8-8v-16zM64 264c0-4.42 3.58-8 8-8h304c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm0 96c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zM624 32H16C7.16 32 0 39.16 0 48v48h640V48c0-8.84-7.16-16-16-16z"], + "money-check-alt": [640, 512, [], "f53d", "M608 32H32C14.33 32 0 46.33 0 64v384c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM176 327.88V344c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V152c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07zM416 312c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm160 0c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h272c4.42 0 8 3.58 8 8v16z"], + "monument": [384, 512, [], "f5a6", "M368 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h352c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-78.86-347.26a31.97 31.97 0 0 0-9.21-19.44L203.31 4.69c-6.25-6.25-16.38-6.25-22.63 0l-76.6 76.61a31.97 31.97 0 0 0-9.21 19.44L64 416h256l-30.86-315.26zM240 307.2c0 6.4-6.4 12.8-12.8 12.8h-70.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h70.4c6.4 0 12.8 6.4 12.8 12.8v38.4z"], + "moon": [512, 512, [], "f186", "M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z"], + "mortar-pestle": [512, 512, [], "f5a7", "M501.54 60.91c17.22-17.22 12.51-46.25-9.27-57.14a35.696 35.696 0 0 0-37.37 3.37L251.09 160h151.37l99.08-99.09zM496 192H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c0 80.98 50.2 150.11 121.13 178.32-12.76 16.87-21.72 36.8-24.95 58.69-1.46 9.92 6.04 18.98 16.07 18.98h223.5c10.03 0 17.53-9.06 16.07-18.98-3.22-21.89-12.18-41.82-24.95-58.69C429.8 406.11 480 336.98 480 256h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"], + "motorcycle": [640, 512, [], "f21c", "M512.949 192.003c-14.862-.108-29.14 2.322-42.434 6.874L437.589 144H520c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24h-45.311a24 24 0 0 0-17.839 7.945l-37.496 41.663-22.774-37.956A24 24 0 0 0 376 64h-80c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h66.411l19.2 32H227.904c-17.727-23.073-44.924-40-99.904-40H72.54c-13.455 0-24.791 11.011-24.536 24.464C48.252 141.505 58.9 152 72 152h56c24.504 0 38.686 10.919 47.787 24.769l-11.291 20.529c-13.006-3.865-26.871-5.736-41.251-5.21C55.857 194.549 1.565 249.605.034 317.021-1.603 389.076 56.317 448 128 448c59.642 0 109.744-40.794 123.953-96h84.236c13.673 0 24.589-11.421 23.976-25.077-2.118-47.12 17.522-93.665 56.185-125.026l12.485 20.808c-27.646 23.654-45.097 58.88-44.831 98.179.47 69.556 57.203 126.452 126.758 127.11 71.629.678 129.839-57.487 129.234-129.099-.588-69.591-57.455-126.386-127.047-126.892zM128 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c4.242 0 8.405.341 12.469.982L98.97 316.434C90.187 332.407 101.762 352 120 352h81.297c-12.37 28.225-40.56 48-73.297 48zm388.351-.116C470.272 402.337 432 365.554 432 320c0-21.363 8.434-40.781 22.125-55.144l49.412 82.352c4.546 7.577 14.375 10.034 21.952 5.488l13.72-8.232c7.577-4.546 10.034-14.375 5.488-21.952l-48.556-80.927A80.005 80.005 0 0 1 512 240c45.554 0 82.338 38.273 79.884 84.352-2.16 40.558-34.974 73.372-75.533 75.532z"], + "mouse-pointer": [320, 512, [], "f245", "M302.189 329.126H196.105l55.831 135.993c3.889 9.428-.555 19.999-9.444 23.999l-49.165 21.427c-9.165 4-19.443-.571-23.332-9.714l-53.053-129.136-86.664 89.138C18.729 472.71 0 463.554 0 447.977V18.299C0 1.899 19.921-6.096 30.277 5.443l284.412 292.542c11.472 11.179 3.007 31.141-12.5 31.141z"], + "music": [512, 512, [], "f001", "M470.4 1.5l-304 96C153.1 101.7 144 114 144 128v264.6c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V220.5l272-85.9v194c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V32c0-21.7-21.1-37-41.6-30.5z"], + "neuter": [288, 512, [], "f22c", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V468c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V316.4c64.1-14.5 112-71.9 112-140.4zm-144 80c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"], + "newspaper": [576, 512, [], "f1ea", "M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z"], + "not-equal": [448, 512, [], "f53e", "M416 208c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32h-23.88l51.87-66.81c5.37-7.02 4.04-17.06-2.97-22.43L415.61 3.3c-7.02-5.38-17.06-4.04-22.44 2.97L311.09 112H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h204.56l-74.53 96H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h55.49l-51.87 66.81c-5.37 7.01-4.04 17.05 2.97 22.43L64 508.7c7.02 5.38 17.06 4.04 22.43-2.97L168.52 400H416c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32H243.05l74.53-96H416z"], + "notes-medical": [384, 512, [], "f481", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm96 304c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm0-192c0 4.4-3.6 8-8 8H104c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16z"], + "object-group": [512, 512, [], "f247", "M480 128V96h20c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v20H64V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v40c0 6.627 5.373 12 12 12h20v320H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-20h384v20c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-20V128zM96 276V140c0-6.627 5.373-12 12-12h168c6.627 0 12 5.373 12 12v136c0 6.627-5.373 12-12 12H108c-6.627 0-12-5.373-12-12zm320 96c0 6.627-5.373 12-12 12H236c-6.627 0-12-5.373-12-12v-52h72c13.255 0 24-10.745 24-24v-72h84c6.627 0 12 5.373 12 12v136z"], + "object-ungroup": [576, 512, [], "f248", "M64 320v26a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6v-52a6 6 0 0 1 6-6h26V96H6a6 6 0 0 1-6-6V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v26h288V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-26v192h26a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-52a6 6 0 0 1-6-6v-26H64zm480-64v-32h26a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-52a6 6 0 0 0-6 6v26H408v72h8c13.255 0 24 10.745 24 24v64c0 13.255-10.745 24-24 24h-64c-13.255 0-24-10.745-24-24v-8H192v72h-26a6 6 0 0 0-6 6v52a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-26h288v26a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-26V256z"], + "outdent": [448, 512, [], "f03b", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm208 144h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm192-128h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM4.687 267.313l96 95.984C110.734 373.348 128 366.224 128 351.984V160.008c0-14.329-17.325-21.304-27.313-11.313l-96 95.992c-6.249 6.248-6.249 16.378 0 22.626z"], + "paint-brush": [512, 512, [], "f1fc", "M167.02 309.34c-40.12 2.58-76.53 17.86-97.19 72.3-2.35 6.21-8 9.98-14.59 9.98-11.11 0-45.46-27.67-55.25-34.35C0 439.62 37.93 512 128 512c75.86 0 128-43.77 128-120.19 0-3.11-.65-6.08-.97-9.13l-88.01-73.34zM457.89 0c-15.16 0-29.37 6.71-40.21 16.45C213.27 199.05 192 203.34 192 257.09c0 13.7 3.25 26.76 8.73 38.7l63.82 53.18c7.21 1.8 14.64 3.03 22.39 3.03 62.11 0 98.11-45.47 211.16-256.46 7.38-14.35 13.9-29.85 13.9-45.99C512 20.64 486 0 457.89 0z"], + "paint-roller": [512, 512, [], "f5aa", "M416 128V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32h352c17.67 0 32-14.33 32-32zm32-64v128c0 17.67-14.33 32-32 32H256c-35.35 0-64 28.65-64 64v32c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32v-32h160c53.02 0 96-42.98 96-96v-64c0-35.35-28.65-64-64-64z"], + "palette": [512, 512, [], "f53f", "M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "pallet": [640, 512, [], "f482", "M144 256h352c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H384v128l-64-32-64 32V0H144c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16zm480 128c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v64H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-64h48zm-336 64H128v-64h160v64zm224 0H352v-64h160v64z"], + "paper-plane": [512, 512, [], "f1d8", "M476 3.2L12.5 270.6c-18.1 10.4-15.8 35.6 2.2 43.2L121 358.4l287.3-253.2c5.5-4.9 13.3 2.6 8.6 8.3L176 407v80.5c0 23.6 28.5 32.9 42.5 15.8L282 426l124.6 52.2c14.2 6 30.4-2.9 33-18.2l72-432C515 7.8 493.3-6.8 476 3.2z"], + "paperclip": [448, 512, [], "f0c6", "M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z"], + "parachute-box": [512, 512, [], "f4cd", "M511.9 175c-9.1-75.6-78.4-132.4-158.3-158.7C390 55.7 416 116.9 416 192h28.1L327.5 321.5c-2.5-.6-4.8-1.5-7.5-1.5h-48V192h112C384 76.8 315.1 0 256 0S128 76.8 128 192h112v128h-48c-2.7 0-5 .9-7.5 1.5L67.9 192H96c0-75.1 26-136.3 62.4-175.7C78.5 42.7 9.2 99.5.1 175c-1.1 9.1 6.8 17 16 17h8.7l136.7 151.9c-.7 2.6-1.6 5.2-1.6 8.1v128c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32V352c0-2.9-.9-5.4-1.6-8.1L487.1 192h8.7c9.3 0 17.2-7.8 16.1-17z"], + "paragraph": [448, 512, [], "f1dd", "M408 32H177.531C88.948 32 16.045 103.335 16 191.918 15.956 280.321 87.607 352 176 352v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h32v344c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h40c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24z"], + "parking": [448, 512, [], "f540", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM240 320h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h96c52.9 0 96 43.1 96 96s-43.1 96-96 96zm0-128h-48v64h48c17.6 0 32-14.4 32-32s-14.4-32-32-32z"], + "passport": [448, 512, [], "f5ab", "M129.62 176h39.09c1.49-27.03 6.54-51.35 14.21-70.41-27.71 13.24-48.02 39.19-53.3 70.41zm0 32c5.29 31.22 25.59 57.17 53.3 70.41-7.68-19.06-12.72-43.38-14.21-70.41h-39.09zM224 286.69c7.69-7.45 20.77-34.42 23.43-78.69h-46.87c2.67 44.26 15.75 71.24 23.44 78.69zM200.57 176h46.87c-2.66-44.26-15.74-71.24-23.43-78.69-7.7 7.45-20.78 34.43-23.44 78.69zm64.51 102.41c27.71-13.24 48.02-39.19 53.3-70.41h-39.09c-1.49 27.03-6.53 51.35-14.21 70.41zM416 0H64C28.65 0 0 28.65 0 64v384c0 35.35 28.65 64 64 64h352c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32zm-80 416H112c-8.8 0-16-7.2-16-16s7.2-16 16-16h224c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-112-96c-70.69 0-128-57.31-128-128S153.31 64 224 64s128 57.31 128 128-57.31 128-128 128zm41.08-214.41c7.68 19.06 12.72 43.38 14.21 70.41h39.09c-5.28-31.22-25.59-57.17-53.3-70.41z"], + "paste": [448, 512, [], "f0ea", "M128 184c0-30.879 25.122-56 56-56h136V56c0-13.255-10.745-24-24-24h-80.61C204.306 12.89 183.637 0 160 0s-44.306 12.89-55.39 32H24C10.745 32 0 42.745 0 56v336c0 13.255 10.745 24 24 24h104V184zm32-144c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24zm184 248h104v200c0 13.255-10.745 24-24 24H184c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.059V256h-96v-96h6.059a24 24 0 0 1 16.97 7.029l65.941 65.941a24.002 24.002 0 0 1 7.03 16.971z"], + "pause": [448, 512, [], "f04c", "M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z"], + "pause-circle": [512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-16 328c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160zm112 0c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160z"], + "paw": [512, 512, [], "f1b0", "M85.231 330.958C36 330.958 0 273.792 0 231.5c0-28.292 16-58.042 49.538-58.042 49.231 0 85.231 57.458 85.231 99.75 0 28.292-15.692 57.75-49.538 57.75zm348 106.167c0 37.042-32 42.875-63.385 42.875-41.231 0-74.462-26.25-113.846-26.25-41.231 0-76.308 25.958-120.923 25.958-29.847 0-56.308-9.625-56.308-42.583C78.769 368 180.616 265.333 256 265.333s177.231 102.959 177.231 171.792zM182.462 203.792c-49.847 0-80-59.5-80-100.333C102.462 70.792 120.308 32 160 32c50.154 0 80 59.5 80 100.333 0 32.667-17.846 71.459-57.538 71.459zM272 132.333C272 91.5 301.846 32 352 32c39.692 0 57.539 38.792 57.539 71.458 0 40.833-30.154 100.333-80.001 100.333C289.846 203.792 272 165 272 132.333zM512 231.5c0 42.292-36 99.458-85.231 99.458-33.847 0-49.538-29.458-49.538-57.75 0-42.291 35.999-99.75 85.231-99.75C496 173.458 512 203.208 512 231.5z"], + "pen": [512, 512, [], "f304", "M290.74 93.24l128.02 128.02-277.99 277.99-114.14 12.6C11.35 513.54-1.56 500.62.14 485.34l12.7-114.22 277.9-277.88zm207.2-19.06l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.76 18.75-49.16 0-67.91z"], + "pen-alt": [512, 512, [], "f305", "M497.94 74.17l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91zm-246.8-20.53c-15.62-15.62-40.94-15.62-56.56 0L75.8 172.43c-6.25 6.25-6.25 16.38 0 22.62l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l101.82-101.82 22.63 22.62L93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l196.79-196.79-82.77-82.77-84.85-84.85z"], + "pen-fancy": [512, 512, [], "f5ac", "M79.18 282.94a32.005 32.005 0 0 0-20.24 20.24L0 480l4.69 4.69 92.89-92.89c-.66-2.56-1.57-5.03-1.57-7.8 0-17.67 14.33-32 32-32s32 14.33 32 32-14.33 32-32 32c-2.77 0-5.24-.91-7.8-1.57l-92.89 92.89L32 512l176.82-58.94a31.983 31.983 0 0 0 20.24-20.24l33.07-84.07-98.88-98.88-84.07 33.07zM369.25 28.32L186.14 227.81l97.85 97.85 199.49-183.11C568.4 67.48 443.73-55.94 369.25 28.32z"], + "pen-nib": [512, 512, [], "f5ad", "M136.6 138.79a64.003 64.003 0 0 0-43.31 41.35L0 460l14.69 14.69L164.8 324.58c-2.99-6.26-4.8-13.18-4.8-20.58 0-26.51 21.49-48 48-48s48 21.49 48 48-21.49 48-48 48c-7.4 0-14.32-1.81-20.58-4.8L37.31 497.31 52 512l279.86-93.29a64.003 64.003 0 0 0 41.35-43.31L416 224 288 96l-151.4 42.79zm361.34-64.62l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91z"], + "pen-square": [448, 512, [], "f14b", "M400 480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zM238.1 177.9L102.4 313.6l-6.3 57.1c-.8 7.6 5.6 14.1 13.3 13.3l57.1-6.3L302.2 242c2.3-2.3 2.3-6.1 0-8.5L246.7 178c-2.5-2.4-6.3-2.4-8.6-.1zM345 165.1L314.9 135c-9.4-9.4-24.6-9.4-33.9 0l-23.1 23.1c-2.3 2.3-2.3 6.1 0 8.5l55.5 55.5c2.3 2.3 6.1 2.3 8.5 0L345 199c9.3-9.3 9.3-24.5 0-33.9z"], + "pencil-alt": [512, 512, [], "f303", "M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z"], + "pencil-ruler": [512, 512, [], "f5ae", "M109.46 244.04l134.58-134.56-44.12-44.12-61.68 61.68a7.919 7.919 0 0 1-11.21 0l-11.21-11.21c-3.1-3.1-3.1-8.12 0-11.21l61.68-61.68-33.64-33.65C131.47-3.1 111.39-3.1 99 9.29L9.29 99c-12.38 12.39-12.39 32.47 0 44.86l100.17 100.18zm388.47-116.8c18.76-18.76 18.75-49.17 0-67.93l-45.25-45.25c-18.76-18.76-49.18-18.76-67.95 0l-46.02 46.01 113.2 113.2 46.02-46.03zM316.08 82.71l-297 296.96L.32 487.11c-2.53 14.49 10.09 27.11 24.59 24.56l107.45-18.84L429.28 195.9 316.08 82.71zm186.63 285.43l-33.64-33.64-61.68 61.68c-3.1 3.1-8.12 3.1-11.21 0l-11.21-11.21c-3.09-3.1-3.09-8.12 0-11.21l61.68-61.68-44.14-44.14L267.93 402.5l100.21 100.2c12.39 12.39 32.47 12.39 44.86 0l89.71-89.7c12.39-12.39 12.39-32.47 0-44.86z"], + "people-carry": [640, 512, [], "f4ce", "M128 96c26.5 0 48-21.5 48-48S154.5 0 128 0 80 21.5 80 48s21.5 48 48 48zm384 0c26.5 0 48-21.5 48-48S538.5 0 512 0s-48 21.5-48 48 21.5 48 48 48zm125.7 372.1l-44-110-41.1 46.4-2 18.2 27.7 69.2c5 12.5 17 20.1 29.7 20.1 4 0 8-.7 11.9-2.3 16.4-6.6 24.4-25.2 17.8-41.6zm-34.2-209.8L585 178.1c-4.6-20-18.6-36.8-37.5-44.9-18.5-8-39-6.7-56.1 3.3-22.7 13.4-39.7 34.5-48.1 59.4L432 229.8 416 240v-96c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16v96l-16.1-10.2-11.3-33.9c-8.3-25-25.4-46-48.1-59.4-17.2-10-37.6-11.3-56.1-3.3-18.9 8.1-32.9 24.9-37.5 44.9l-18.4 80.2c-4.6 20 .7 41.2 14.4 56.7l67.2 75.9 10.1 92.6C130 499.8 143.8 512 160 512c1.2 0 2.3-.1 3.5-.2 17.6-1.9 30.2-17.7 28.3-35.3l-10.1-92.8c-1.5-13-6.9-25.1-15.6-35l-43.3-49 17.6-70.3 6.8 20.4c4.1 12.5 11.9 23.4 24.5 32.6l51.1 32.5c4.6 2.9 12.1 4.6 17.2 5h160c5.1-.4 12.6-2.1 17.2-5l51.1-32.5c12.6-9.2 20.4-20 24.5-32.6l6.8-20.4 17.6 70.3-43.3 49c-8.7 9.9-14.1 22-15.6 35l-10.1 92.8c-1.9 17.6 10.8 33.4 28.3 35.3 1.2.1 2.3.2 3.5.2 16.1 0 30-12.1 31.8-28.5l10.1-92.6 67.2-75.9c13.6-15.5 19-36.7 14.4-56.7zM46.3 358.1l-44 110c-6.6 16.4 1.4 35 17.8 41.6 16.8 6.6 35.1-1.7 41.6-17.8l27.7-69.2-2-18.2-41.1-46.4z"], + "percent": [448, 512, [], "f295", "M112 224c61.9 0 112-50.1 112-112S173.9 0 112 0 0 50.1 0 112s50.1 112 112 112zm0-160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm224 224c-61.9 0-112 50.1-112 112s50.1 112 112 112 112-50.1 112-112-50.1-112-112-112zm0 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zM392.3.2l31.6-.1c19.4-.1 30.9 21.8 19.7 37.8L77.4 501.6a23.95 23.95 0 0 1-19.6 10.2l-33.4.1c-19.5 0-30.9-21.9-19.7-37.8l368-463.7C377.2 4 384.5.2 392.3.2z"], + "percentage": [384, 512, [], "f541", "M109.25 173.25c24.99-24.99 24.99-65.52 0-90.51-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 25 25 65.52 25 90.51 0zm256 165.49c-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 24.99 24.99 65.52 24.99 90.51 0 25-24.99 25-65.51 0-90.51zm-1.94-231.43l-22.62-22.62c-12.5-12.5-32.76-12.5-45.25 0L20.69 359.44c-12.5 12.5-12.5 32.76 0 45.25l22.62 22.62c12.5 12.5 32.76 12.5 45.25 0l274.75-274.75c12.5-12.49 12.5-32.75 0-45.25z"], + "phone": [512, 512, [], "f095", "M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z"], + "phone-slash": [640, 512, [], "f3dd", "M268.2 381.4l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48c-10.7 4.6-16.5 16.1-13.9 27.5l24 104c2.5 10.8 12.1 18.6 23.4 18.6 100.7 0 193.7-32.4 269.7-86.9l-80-61.8c-10.9 6.5-22.1 12.7-33.6 18.1zm365.6 76.7L475.1 335.5C537.9 256.4 576 156.9 576 48c0-11.2-7.7-20.9-18.6-23.4l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-12.2 26.1-27.9 50.3-46 72.8L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z"], + "phone-square": [448, 512, [], "f098", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM94 416c-7.033 0-13.057-4.873-14.616-11.627l-14.998-65a15 15 0 0 1 8.707-17.16l69.998-29.999a15 15 0 0 1 17.518 4.289l30.997 37.885c48.944-22.963 88.297-62.858 110.781-110.78l-37.886-30.997a15.001 15.001 0 0 1-4.289-17.518l30-69.998a15 15 0 0 1 17.16-8.707l65 14.998A14.997 14.997 0 0 1 384 126c0 160.292-129.945 290-290 290z"], + "phone-volume": [384, 512, [], "f2a0", "M97.333 506.966c-129.874-129.874-129.681-340.252 0-469.933 5.698-5.698 14.527-6.632 21.263-2.422l64.817 40.513a17.187 17.187 0 0 1 6.849 20.958l-32.408 81.021a17.188 17.188 0 0 1-17.669 10.719l-55.81-5.58c-21.051 58.261-20.612 122.471 0 179.515l55.811-5.581a17.188 17.188 0 0 1 17.669 10.719l32.408 81.022a17.188 17.188 0 0 1-6.849 20.958l-64.817 40.513a17.19 17.19 0 0 1-21.264-2.422zM247.126 95.473c11.832 20.047 11.832 45.008 0 65.055-3.95 6.693-13.108 7.959-18.718 2.581l-5.975-5.726c-3.911-3.748-4.793-9.622-2.261-14.41a32.063 32.063 0 0 0 0-29.945c-2.533-4.788-1.65-10.662 2.261-14.41l5.975-5.726c5.61-5.378 14.768-4.112 18.718 2.581zm91.787-91.187c60.14 71.604 60.092 175.882 0 247.428-4.474 5.327-12.53 5.746-17.552.933l-5.798-5.557c-4.56-4.371-4.977-11.529-.93-16.379 49.687-59.538 49.646-145.933 0-205.422-4.047-4.85-3.631-12.008.93-16.379l5.798-5.557c5.022-4.813 13.078-4.394 17.552.933zm-45.972 44.941c36.05 46.322 36.108 111.149 0 157.546-4.39 5.641-12.697 6.251-17.856 1.304l-5.818-5.579c-4.4-4.219-4.998-11.095-1.285-15.931 26.536-34.564 26.534-82.572 0-117.134-3.713-4.836-3.115-11.711 1.285-15.931l5.818-5.579c5.159-4.947 13.466-4.337 17.856 1.304z"], + "piggy-bank": [576, 512, [], "f4d3", "M560 224h-29.5c-8.8-20-21.6-37.7-37.4-52.5L512 96h-32c-29.4 0-55.4 13.5-73 34.3-7.6-1.1-15.1-2.3-23-2.3H256c-77.4 0-141.9 55-156.8 128H56c-14.8 0-26.5-13.5-23.5-28.8C34.7 215.8 45.4 208 57 208h1c3.3 0 6-2.7 6-6v-20c0-3.3-2.7-6-6-6-28.5 0-53.9 20.4-57.5 48.6C-3.9 258.8 22.7 288 56 288h40c0 52.2 25.4 98.1 64 127.3V496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-48h128v48c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80.7c11.8-8.9 22.3-19.4 31.3-31.3H560c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16zm-128 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM256 96h128c5.4 0 10.7.4 15.9.8 0-.3.1-.5.1-.8 0-53-43-96-96-96s-96 43-96 96c0 2.1.5 4.1.6 6.2 15.2-3.9 31-6.2 47.4-6.2z"], + "pills": [576, 512, [], "f484", "M112 32C50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V144c0-61.9-50.1-112-112-112zm48 224H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm139.7-29.7c-3.5-3.5-9.4-3.1-12.3.8-45.3 62.5-40.4 150.1 15.9 206.4 56.3 56.3 143.9 61.2 206.4 15.9 4-2.9 4.3-8.8.8-12.3L299.7 226.3zm229.8-19c-56.3-56.3-143.9-61.2-206.4-15.9-4 2.9-4.3 8.8-.8 12.3l210.8 210.8c3.5 3.5 9.4 3.1 12.3-.8 45.3-62.6 40.5-150.1-15.9-206.4z"], + "plane": [576, 512, [], "f072", "M480 192H365.71L260.61 8.06A16.014 16.014 0 0 0 246.71 0h-65.5c-10.63 0-18.3 10.17-15.38 20.39L214.86 192H112l-43.2-57.6c-3.02-4.03-7.77-6.4-12.8-6.4H16.01C5.6 128-2.04 137.78.49 147.88L32 256 .49 364.12C-2.04 374.22 5.6 384 16.01 384H56c5.04 0 9.78-2.37 12.8-6.4L112 320h102.86l-49.03 171.6c-2.92 10.22 4.75 20.4 15.38 20.4h65.5c5.74 0 11.04-3.08 13.89-8.06L365.71 320H480c35.35 0 96-28.65 96-64s-60.65-64-96-64z"], + "plane-arrival": [640, 512, [], "f5af", "M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM44.81 205.66l88.74 80a62.607 62.607 0 0 0 25.47 13.93l287.6 78.35c26.48 7.21 54.56 8.72 81 1.36 29.67-8.27 43.44-21.21 47.25-35.71 3.83-14.5-1.73-32.71-23.37-54.96-19.28-19.82-44.35-32.79-70.83-40l-97.51-26.56L282.8 30.22c-1.51-5.81-5.95-10.35-11.66-11.91L206.05.58c-10.56-2.88-20.9 5.32-20.71 16.44l47.92 164.21-102.2-27.84-27.59-67.88c-1.93-4.89-6.01-8.57-11.02-9.93L52.72 64.75c-10.34-2.82-20.53 5-20.72 15.88l.23 101.78c.19 8.91 6.03 17.34 12.58 23.25z"], + "plane-departure": [640, 512, [], "f5b0", "M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM80.55 341.27c6.28 6.84 15.1 10.72 24.33 10.71l130.54-.18a65.62 65.62 0 0 0 29.64-7.12l290.96-147.65c26.74-13.57 50.71-32.94 67.02-58.31 18.31-28.48 20.3-49.09 13.07-63.65-7.21-14.57-24.74-25.27-58.25-27.45-29.85-1.94-59.54 5.92-86.28 19.48l-98.51 49.99-218.7-82.06a17.799 17.799 0 0 0-18-1.11L90.62 67.29c-10.67 5.41-13.25 19.65-5.17 28.53l156.22 98.1-103.21 52.38-72.35-36.47a17.804 17.804 0 0 0-16.07.02L9.91 230.22c-10.44 5.3-13.19 19.12-5.57 28.08l76.21 82.97z"], + "play": [448, 512, [], "f04b", "M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z"], + "play-circle": [512, 512, [], "f144", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z"], + "plug": [384, 512, [], "f1e6", "M256 144V32c0-17.673 14.327-32 32-32s32 14.327 32 32v112h-64zm112 16H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h16v32c0 77.406 54.969 141.971 128 156.796V512h64v-99.204c73.031-14.825 128-79.39 128-156.796v-32h16c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm-240-16V32c0-17.673-14.327-32-32-32S64 14.327 64 32v112h64z"], + "plus": [448, 512, [], "f067", "M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"], + "plus-circle": [512, 512, [], "f055", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"], + "plus-square": [448, 512, [], "f0fe", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-32 252c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92H92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"], + "podcast": [448, 512, [], "f2ce", "M267.429 488.563C262.286 507.573 242.858 512 224 512c-18.857 0-38.286-4.427-43.428-23.437C172.927 460.134 160 388.898 160 355.75c0-35.156 31.142-43.75 64-43.75s64 8.594 64 43.75c0 32.949-12.871 104.179-20.571 132.813zM156.867 288.554c-18.693-18.308-29.958-44.173-28.784-72.599 2.054-49.724 42.395-89.956 92.124-91.881C274.862 121.958 320 165.807 320 220c0 26.827-11.064 51.116-28.866 68.552-2.675 2.62-2.401 6.986.628 9.187 9.312 6.765 16.46 15.343 21.234 25.363 1.741 3.654 6.497 4.66 9.449 1.891 28.826-27.043 46.553-65.783 45.511-108.565-1.855-76.206-63.595-138.208-139.793-140.369C146.869 73.753 80 139.215 80 220c0 41.361 17.532 78.7 45.55 104.989 2.953 2.771 7.711 1.77 9.453-1.887 4.774-10.021 11.923-18.598 21.235-25.363 3.029-2.2 3.304-6.566.629-9.185zM224 0C100.204 0 0 100.185 0 224c0 89.992 52.602 165.647 125.739 201.408 4.333 2.118 9.267-1.544 8.535-6.31-2.382-15.512-4.342-30.946-5.406-44.339-.146-1.836-1.149-3.486-2.678-4.512-47.4-31.806-78.564-86.016-78.187-147.347.592-96.237 79.29-174.648 175.529-174.899C320.793 47.747 400 126.797 400 224c0 61.932-32.158 116.49-80.65 147.867-.999 14.037-3.069 30.588-5.624 47.23-.732 4.767 4.203 8.429 8.535 6.31C395.227 389.727 448 314.187 448 224 448 100.205 347.815 0 224 0zm0 160c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z"], + "poo": [512, 512, [], "f2fe", "M451.4 369.1C468.7 356 480 335.4 480 312c0-39.8-32.2-72-72-72h-14.1c13.4-11.7 22.1-28.8 22.1-48 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C250.3 14.6 256 30.6 256 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 19.2 8.7 36.3 22.1 48H104c-39.8 0-72 32.2-72 72 0 23.4 11.3 44 28.6 57.1C26.3 374.6 0 404.1 0 440c0 39.8 32.2 72 72 72h368c39.8 0 72-32.2 72-72 0-35.9-26.3-65.4-60.6-70.9zM192 256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm159.5 139C341 422.9 293 448 256 448s-85-25.1-95.5-53c-2-5.3 2-11 7.8-11h175.4c5.8 0 9.8 5.7 7.8 11zM320 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "portrait": [384, 512, [], "f3e0", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM192 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 384 80 375.4 80 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"], + "pound-sign": [320, 512, [], "f154", "M308 352h-45.495c-6.627 0-12 5.373-12 12v50.848H128V288h84c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-84v-63.556c0-32.266 24.562-57.086 61.792-57.086 23.658 0 45.878 11.505 57.652 18.849 5.151 3.213 11.888 2.051 15.688-2.685l28.493-35.513c4.233-5.276 3.279-13.005-2.119-17.081C273.124 54.56 236.576 32 187.931 32 106.026 32 48 84.742 48 157.961V224H20c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h28v128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12V364c0-6.627-5.373-12-12-12z"], + "power-off": [512, 512, [], "f011", "M400 54.1c63 45 104 118.6 104 201.9 0 136.8-110.8 247.7-247.5 248C120 504.3 8.2 393 8 256.4 7.9 173.1 48.9 99.3 111.8 54.2c11.7-8.3 28-4.8 35 7.7L162.6 90c5.9 10.5 3.1 23.8-6.6 31-41.5 30.8-68 79.6-68 134.9-.1 92.3 74.5 168.1 168 168.1 91.6 0 168.6-74.2 168-169.1-.3-51.8-24.7-101.8-68.1-134-9.7-7.2-12.4-20.5-6.5-30.9l15.8-28.1c7-12.4 23.2-16.1 34.8-7.8zM296 264V24c0-13.3-10.7-24-24-24h-32c-13.3 0-24 10.7-24 24v240c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24z"], + "prescription": [384, 512, [], "f5b1", "M301.26 352l78.06-78.06c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0L256 306.74l-83.96-83.96C219.31 216.8 256 176.89 256 128c0-53.02-42.98-96-96-96H16C7.16 32 0 39.16 0 48v256c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-80h18.75l128 128-78.06 78.06c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0L256 397.25l78.06 78.06c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63L301.26 352zM64 96h96c17.64 0 32 14.36 32 32s-14.36 32-32 32H64V96z"], + "prescription-bottle": [384, 512, [], "f485", "M32 192h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v64zM360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24z"], + "prescription-bottle-alt": [384, 512, [], "f486", "M360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24zM32 480c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v352zm64-184c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48z"], + "print": [512, 512, [], "f02f", "M464 192h-16V81.941a24 24 0 0 0-7.029-16.97L383.029 7.029A24 24 0 0 0 366.059 0H88C74.745 0 64 10.745 64 24v168H48c-26.51 0-48 21.49-48 48v132c0 6.627 5.373 12 12 12h52v104c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V384h52c6.627 0 12-5.373 12-12V240c0-26.51-21.49-48-48-48zm-80 256H128v-96h256v96zM128 224V64h192v40c0 13.2 10.8 24 24 24h40v96H128zm304 72c-13.254 0-24-10.746-24-24s10.746-24 24-24 24 10.746 24 24-10.746 24-24 24z"], + "procedures": [640, 512, [], "f487", "M528 224H272c-8.8 0-16 7.2-16 16v144H64V144c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v352c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h512v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-61.9-50.1-112-112-112zM136 96h126.1l27.6 55.2c5.9 11.8 22.7 11.8 28.6 0L368 51.8 390.1 96H512c8.8 0 16-7.2 16-16s-7.2-16-16-16H409.9L382.3 8.8C376.4-3 359.6-3 353.7 8.8L304 108.2l-19.9-39.8c-1.4-2.7-4.1-4.4-7.2-4.4H136c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm24 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z"], + "project-diagram": [640, 512, [], "f542", "M384 320H256c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM192 32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v128c0 17.67 14.33 32 32 32h95.72l73.16 128.04C211.98 300.98 232.4 288 256 288h.28L192 175.51V128h224V64H192V32zM608 0H480c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32z"], + "puzzle-piece": [576, 512, [], "f12e", "M519.442 288.651c-41.519 0-59.5 31.593-82.058 31.593C377.409 320.244 432 144 432 144s-196.288 80-196.288-3.297c0-35.827 36.288-46.25 36.288-85.985C272 19.216 243.885 0 210.539 0c-34.654 0-66.366 18.891-66.366 56.346 0 41.364 31.711 59.277 31.711 81.75C175.885 207.719 0 166.758 0 166.758v333.237s178.635 41.047 178.635-28.662c0-22.473-40-40.107-40-81.471 0-37.456 29.25-56.346 63.577-56.346 33.673 0 61.788 19.216 61.788 54.717 0 39.735-36.288 50.158-36.288 85.985 0 60.803 129.675 25.73 181.23 25.73 0 0-34.725-120.101 25.827-120.101 35.962 0 46.423 36.152 86.308 36.152C556.712 416 576 387.99 576 354.443c0-34.199-18.962-65.792-56.558-65.792z"], + "qrcode": [448, 512, [], "f029", "M0 224h192V32H0v192zM64 96h64v64H64V96zm192-64v192h192V32H256zm128 128h-64V96h64v64zM0 480h192V288H0v192zm64-128h64v64H64v-64zm352-64h32v128h-96v-32h-32v96h-64V288h96v32h64v-32zm0 160h32v32h-32v-32zm-64 0h32v32h-32v-32z"], + "question": [384, 512, [], "f128", "M202.021 0C122.202 0 70.503 32.703 29.914 91.026c-7.363 10.58-5.093 25.086 5.178 32.874l43.138 32.709c10.373 7.865 25.132 6.026 33.253-4.148 25.049-31.381 43.63-49.449 82.757-49.449 30.764 0 68.816 19.799 68.816 49.631 0 22.552-18.617 34.134-48.993 51.164-35.423 19.86-82.299 44.576-82.299 106.405V320c0 13.255 10.745 24 24 24h72.471c13.255 0 24-10.745 24-24v-5.773c0-42.86 125.268-44.645 125.268-160.627C377.504 66.256 286.902 0 202.021 0zM192 373.459c-38.196 0-69.271 31.075-69.271 69.271 0 38.195 31.075 69.27 69.271 69.27s69.271-31.075 69.271-69.271-31.075-69.27-69.271-69.27z"], + "question-circle": [512, 512, [], "f059", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z"], + "quidditch": [640, 512, [], "f458", "M256.5 216.8L343.2 326s-16.6 102.4-76.6 150.1C206.7 523.8 0 510.2 0 510.2s3.8-23.1 11-55.4l94.6-112.2c4-4.7-.9-11.6-6.6-9.5l-60.4 22.1c14.4-41.7 32.7-80 54.6-97.5 59.9-47.8 163.3-40.9 163.3-40.9zm238 135c-44 0-79.8 35.8-79.8 79.9 0 44.1 35.7 79.9 79.8 79.9 44.1 0 79.8-35.8 79.8-79.9 0-44.2-35.8-79.9-79.8-79.9zM636.5 31L616.7 6c-5.5-6.9-15.5-8-22.4-2.6L361.8 181.3l-34.1-43c-5.1-6.4-15.1-5.2-18.6 2.2l-25.3 54.6 86.7 109.2 58.8-12.4c8-1.7 11.4-11.2 6.3-17.6l-34.1-42.9L634 53.5c6.9-5.5 8-15.6 2.5-22.5z"], + "quote-left": [512, 512, [], "f10d", "M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z"], + "quote-right": [512, 512, [], "f10e", "M464 32H336c-26.5 0-48 21.5-48 48v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48zm-288 0H48C21.5 32 0 53.5 0 80v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48z"], + "random": [512, 512, [], "f074", "M504.971 359.029c9.373 9.373 9.373 24.569 0 33.941l-80 79.984c-15.01 15.01-40.971 4.49-40.971-16.971V416h-58.785a12.004 12.004 0 0 1-8.773-3.812l-70.556-75.596 53.333-57.143L352 336h32v-39.981c0-21.438 25.943-31.998 40.971-16.971l80 79.981zM12 176h84l52.781 56.551 53.333-57.143-70.556-75.596A11.999 11.999 0 0 0 122.785 96H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12zm372 0v39.984c0 21.46 25.961 31.98 40.971 16.971l80-79.984c9.373-9.373 9.373-24.569 0-33.941l-80-79.981C409.943 24.021 384 34.582 384 56.019V96h-58.785a12.004 12.004 0 0 0-8.773 3.812L96 336H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h110.785c3.326 0 6.503-1.381 8.773-3.812L352 176h32z"], + "receipt": [384, 512, [], "f543", "M358.4 3.2L320 48 265.6 3.2a15.9 15.9 0 0 0-19.2 0L192 48 137.6 3.2a15.9 15.9 0 0 0-19.2 0L64 48 25.6 3.2C15-4.7 0 2.8 0 16v480c0 13.2 15 20.7 25.6 12.8L64 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L192 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L320 464l38.4 44.8c10.5 7.9 25.6.4 25.6-12.8V16c0-13.2-15-20.7-25.6-12.8zM320 360c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16z"], + "recycle": [512, 512, [], "f1b8", "M184.561 261.903c3.232 13.997-12.123 24.635-24.068 17.168l-40.736-25.455-50.867 81.402C55.606 356.273 70.96 384 96.012 384H148c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12H96.115c-75.334 0-121.302-83.048-81.408-146.88l50.822-81.388-40.725-25.448c-12.081-7.547-8.966-25.961 4.879-29.158l110.237-25.45c8.611-1.988 17.201 3.381 19.189 11.99l25.452 110.237zm98.561-182.915l41.289 66.076-40.74 25.457c-12.051 7.528-9 25.953 4.879 29.158l110.237 25.45c8.672 1.999 17.215-3.438 19.189-11.99l25.45-110.237c3.197-13.844-11.99-24.719-24.068-17.168l-40.687 25.424-41.263-66.082c-37.521-60.033-125.209-60.171-162.816 0l-17.963 28.766c-3.51 5.62-1.8 13.021 3.82 16.533l33.919 21.195c5.62 3.512 13.024 1.803 16.536-3.817l17.961-28.743c12.712-20.341 41.973-19.676 54.257-.022zM497.288 301.12l-27.515-44.065c-3.511-5.623-10.916-7.334-16.538-3.821l-33.861 21.159c-5.62 3.512-7.33 10.915-3.818 16.536l27.564 44.112c13.257 21.211-2.057 48.96-27.136 48.96H320V336.02c0-14.213-17.242-21.383-27.313-11.313l-80 79.981c-6.249 6.248-6.249 16.379 0 22.627l80 79.989C302.689 517.308 320 510.3 320 495.989V448h95.88c75.274 0 121.335-82.997 81.408-146.88z"], + "redo": [512, 512, [], "f01e", "M500.333 0h-47.411c-6.853 0-12.314 5.729-11.986 12.574l3.966 82.759C399.416 41.899 331.672 8 256.001 8 119.34 8 7.899 119.526 8 256.187 8.101 393.068 119.096 504 256 504c63.926 0 122.202-24.187 166.178-63.908 5.113-4.618 5.354-12.561.482-17.433l-33.971-33.971c-4.466-4.466-11.64-4.717-16.38-.543C341.308 415.448 300.606 432 256 432c-97.267 0-176-78.716-176-176 0-97.267 78.716-176 176-176 60.892 0 114.506 30.858 146.099 77.8l-101.525-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12z"], + "redo-alt": [512, 512, [], "f2f9", "M256.455 8c66.269.119 126.437 26.233 170.859 68.685l35.715-35.715C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.75c-30.864-28.899-70.801-44.907-113.23-45.273-92.398-.798-170.283 73.977-169.484 169.442C88.764 348.009 162.184 424 256 424c41.127 0 79.997-14.678 110.629-41.556 4.743-4.161 11.906-3.908 16.368.553l39.662 39.662c4.872 4.872 4.631 12.815-.482 17.433C378.202 479.813 319.926 504 256 504 119.034 504 8.001 392.967 8 256.002 7.999 119.193 119.646 7.755 256.455 8z"], + "registered": [512, 512, [], "f25d", "M285.363 207.475c0 18.6-9.831 28.431-28.431 28.431h-29.876v-56.14h23.378c28.668 0 34.929 8.773 34.929 27.709zM504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM363.411 360.414c-46.729-84.825-43.299-78.636-44.702-80.98 23.432-15.172 37.945-42.979 37.945-74.486 0-54.244-31.5-89.252-105.498-89.252h-70.667c-13.255 0-24 10.745-24 24V372c0 13.255 10.745 24 24 24h22.567c13.255 0 24-10.745 24-24v-71.663h25.556l44.129 82.937a24.001 24.001 0 0 0 21.188 12.727h24.464c18.261-.001 29.829-19.591 21.018-35.587z"], + "reply": [512, 512, [], "f3e5", "M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z"], + "reply-all": [576, 512, [], "f122", "M136.309 189.836L312.313 37.851C327.72 24.546 352 35.348 352 56.015v82.763c129.182 10.231 224 52.212 224 183.548 0 61.441-39.582 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 38.512-123.162-3.922-169.482-112.59-182.015v84.175c0 20.701-24.3 31.453-39.687 18.164L136.309 226.164c-11.071-9.561-11.086-26.753 0-36.328zm-128 36.328L184.313 378.15C199.7 391.439 224 380.687 224 359.986v-15.818l-108.606-93.785A55.96 55.96 0 0 1 96 207.998a55.953 55.953 0 0 1 19.393-42.38L224 71.832V56.015c0-20.667-24.28-31.469-39.687-18.164L8.309 189.836c-11.086 9.575-11.071 26.767 0 36.328z"], + "retweet": [640, 512, [], "f079", "M629.657 343.598L528.971 444.284c-9.373 9.372-24.568 9.372-33.941 0L394.343 343.598c-9.373-9.373-9.373-24.569 0-33.941l10.823-10.823c9.562-9.562 25.133-9.34 34.419.492L480 342.118V160H292.451a24.005 24.005 0 0 1-16.971-7.029l-16-16C244.361 121.851 255.069 96 276.451 96H520c13.255 0 24 10.745 24 24v222.118l40.416-42.792c9.285-9.831 24.856-10.054 34.419-.492l10.823 10.823c9.372 9.372 9.372 24.569-.001 33.941zm-265.138 15.431A23.999 23.999 0 0 0 347.548 352H160V169.881l40.416 42.792c9.286 9.831 24.856 10.054 34.419.491l10.822-10.822c9.373-9.373 9.373-24.569 0-33.941L144.971 67.716c-9.373-9.373-24.569-9.373-33.941 0L10.343 168.402c-9.373 9.373-9.373 24.569 0 33.941l10.822 10.822c9.562 9.562 25.133 9.34 34.419-.491L96 169.881V392c0 13.255 10.745 24 24 24h243.549c21.382 0 32.09-25.851 16.971-40.971l-16.001-16z"], + "ribbon": [448, 512, [], "f4d6", "M6.1 444.3c-9.6 10.8-7.5 27.6 4.5 35.7l68.8 27.9c9.9 6.7 23.3 5 31.3-3.8l91.8-101.9-79.2-87.9-117.2 130zm435.8 0s-292-324.6-295.4-330.1c15.4-8.4 40.2-17.9 77.5-17.9s62.1 9.5 77.5 17.9c-3.3 5.6-56 64.6-56 64.6l79.1 87.7 34.2-38c28.7-31.9 33.3-78.6 11.4-115.5l-43.7-73.5c-4.3-7.2-9.9-13.3-16.8-18-40.7-27.6-127.4-29.7-171.4 0-6.9 4.7-12.5 10.8-16.8 18l-43.6 73.2c-1.5 2.5-37.1 62.2 11.5 116L337.5 504c8 8.9 21.4 10.5 31.3 3.8l68.8-27.9c11.9-8 14-24.8 4.3-35.6z"], + "road": [576, 512, [], "f018", "M567.3 383.6L429.9 78.2C426 69.5 417.4 64 408 64h-96.1l1.9 18.8c.7 7.1-4.8 13.2-11.9 13.2H274c-7.1 0-12.7-6.2-11.9-13.2L264 64h-96c-9.4 0-18 5.5-21.9 14.2L8.7 383.6C3.2 395.8 0 409.6 0 424c0 13.3 10.7 24 24 24h213.6c-7.1 0-12.7-6.2-11.9-13.2l10.8-104c.6-6.1 5.8-10.8 11.9-10.8h79.2c6.1 0 11.3 4.6 11.9 10.8l10.8 104c.7 7.1-4.8 13.2-11.9 13.2H552c13.2 0 24-10.7 24-24 0-13.9-3-27.7-8.7-40.4zM254.7 154.8l3.3-32c.6-6.1 5.8-10.8 11.9-10.8h36.2c6.1 0 11.3 4.6 11.9 10.8l3.3 32c.7 7.1-4.8 13.2-11.9 13.2h-42.8c-7.1 0-12.7-6.2-11.9-13.2zM321.8 288h-67.6c-7.1 0-12.7-6.2-11.9-13.2l7.4-72c.6-6.1 5.8-10.8 11.9-10.8h52.7c6.1 0 11.3 4.6 11.9 10.8l7.4 72c.9 7-4.7 13.2-11.8 13.2z"], + "robot": [640, 512, [], "f544", "M0 256v128c0 17.7 14.3 32 32 32h32V224H32c-17.7 0-32 14.3-32 32zM464 96H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H176c-44.2 0-80 35.8-80 80v272c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V176c0-44.2-35.8-80-80-80zM256 416h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm128 120h-64v-32h64v32zm96 0h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm192-72h-32v192h32c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32z"], + "rocket": [512, 512, [], "f135", "M505.1 19.1C503.8 13 499 8.2 492.9 6.9 460.7 0 435.5 0 410.4 0 307.2 0 245.3 55.2 199.1 128H94.9c-18.2 0-34.8 10.3-42.9 26.5L2.6 253.3c-8 16 3.6 34.7 21.5 34.7h95.1c-5.9 12.8-11.9 25.5-18 37.7-3.1 6.2-1.9 13.6 3 18.5l63.6 63.6c4.9 4.9 12.3 6.1 18.5 3 12.2-6.1 24.9-12 37.7-17.9V488c0 17.8 18.8 29.4 34.7 21.5l98.7-49.4c16.3-8.1 26.5-24.8 26.5-42.9V312.8c72.6-46.3 128-108.4 128-211.1.1-25.2.1-50.4-6.8-82.6zM400 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"], + "rss": [448, 512, [], "f09e", "M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"], + "rss-square": [448, 512, [], "f143", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM112 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm157.533 0h-34.335c-6.011 0-11.051-4.636-11.442-10.634-5.214-80.05-69.243-143.92-149.123-149.123-5.997-.39-10.633-5.431-10.633-11.441v-34.335c0-6.535 5.468-11.777 11.994-11.425 110.546 5.974 198.997 94.536 204.964 204.964.352 6.526-4.89 11.994-11.425 11.994zm103.027 0h-34.334c-6.161 0-11.175-4.882-11.427-11.038-5.598-136.535-115.204-246.161-251.76-251.76C68.882 152.949 64 147.935 64 141.774V107.44c0-6.454 5.338-11.664 11.787-11.432 167.83 6.025 302.21 141.191 308.205 308.205.232 6.449-4.978 11.787-11.432 11.787z"], + "ruble-sign": [384, 512, [], "f158", "M239.36 320C324.48 320 384 260.542 384 175.071S324.48 32 239.36 32H76c-6.627 0-12 5.373-12 12v206.632H12c-6.627 0-12 5.373-12 12V308c0 6.627 5.373 12 12 12h52v32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v52c0 6.627 5.373 12 12 12h58.56c6.627 0 12-5.373 12-12v-52H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H146.56v-32h92.8zm-92.8-219.252h78.72c46.72 0 74.88 29.11 74.88 74.323 0 45.832-28.16 75.561-76.16 75.561h-77.44V100.748z"], + "ruler": [640, 512, [], "f545", "M635.7 167.2L556.1 31.7c-8.8-15-28.3-20.1-43.5-11.5l-69 39.1L503.3 161c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L416 75l-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L333.2 122 278 153.3 337.8 255c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-59.7-101.7-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-27.9-47.5-55.2 31.3 59.7 101.7c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L84.9 262.9l-69 39.1C.7 310.7-4.6 329.8 4.2 344.8l79.6 135.6c8.8 15 28.3 20.1 43.5 11.5L624.1 210c15.2-8.6 20.4-27.8 11.6-42.8z"], + "ruler-combined": [512, 512, [], "f546", "M160 288h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56v-64h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56V96h-56c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8h56V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 2.77.91 5.24 1.57 7.8L160 329.38V288zm320 64h-32v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-41.37L24.2 510.43c2.56.66 5.04 1.57 7.8 1.57h448c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"], + "ruler-horizontal": [576, 512, [], "f547", "M544 128h-48v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8H88c-4.42 0-8-3.58-8-8v-88H32c-17.67 0-32 14.33-32 32v192c0 17.67 14.33 32 32 32h512c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32z"], + "ruler-vertical": [256, 512, [], "f548", "M168 416c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 17.67 14.33 32 32 32h192c17.67 0 32-14.33 32-32v-64h-88z"], + "rupee-sign": [320, 512, [], "f156", "M308 96c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v44.748c0 6.627 5.373 12 12 12h85.28c27.308 0 48.261 9.958 60.97 27.252H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h158.757c-6.217 36.086-32.961 58.632-74.757 58.632H12c-6.627 0-12 5.373-12 12v53.012c0 3.349 1.4 6.546 3.861 8.818l165.052 152.356a12.001 12.001 0 0 0 8.139 3.182h82.562c10.924 0 16.166-13.408 8.139-20.818L116.871 319.906c76.499-2.34 131.144-53.395 138.318-127.906H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-58.69c-3.486-11.541-8.28-22.246-14.252-32H308z"], + "sad-cry": [496, 512, [], "f5b3", "M248 8C111 8 0 119 0 256c0 90.1 48.2 168.7 120 212.1V288c0-8.8 7.2-16 16-16s16 7.2 16 16v196.7c29.5 12.4 62 19.3 96 19.3s66.5-6.9 96-19.3V288c0-8.8 7.2-16 16-16s16 7.2 16 16v180.1C447.8 424.7 496 346 496 256 496 119 385 8 248 8zm-65.5 216.5c-14.8-13.2-46.2-13.2-61 0L112 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c.8 5-1.7 10-6.1 12.4-5.8 3.1-11.2.7-13.7-1.6l-9.7-8.5zM248 416c-26.5 0-48-28.7-48-64s21.5-64 48-64 48 28.7 48 64-21.5 64-48 64zm149.8-181.5c-5.8 3.1-11.2.7-13.7-1.6l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S400 197 404 222.2c.6 4.9-1.8 9.9-6.2 12.3z"], + "sad-tear": [496, 512, [], "f5b4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM152 416c-26.5 0-48-21-48-47 0-20 28.5-60.4 41.6-77.8 3.2-4.3 9.6-4.3 12.8 0C171.5 308.6 200 349 200 369c0 26-21.5 47-48 47zm16-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm170.2 154.2C315.8 367.4 282.9 352 248 352c-21.2 0-21.2-32 0-32 44.4 0 86.3 19.6 114.7 53.8 13.8 16.4-11.2 36.5-24.5 20.4z"], + "save": [448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z"], + "school": [640, 512, [], "f549", "M0 224v272c0 8.84 7.16 16 16 16h80V192H32c-17.67 0-32 14.33-32 32zm360-48h-24v-40c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v64c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zm137.75-63.96l-160-106.67a32.02 32.02 0 0 0-35.5 0l-160 106.67A32.002 32.002 0 0 0 128 138.66V512h128V368c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v144h128V138.67c0-10.7-5.35-20.7-14.25-26.63zM320 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm288-64h-64v320h80c8.84 0 16-7.16 16-16V224c0-17.67-14.33-32-32-32z"], + "screwdriver": [512, 512, [], "f54a", "M448 0L320 96v62.06l-83.03 83.03c6.79 4.25 13.27 9.06 19.07 14.87 5.8 5.8 10.62 12.28 14.87 19.07L353.94 192H416l96-128-64-64zM128 278.59L10.92 395.67c-14.55 14.55-14.55 38.15 0 52.71l52.7 52.7c14.56 14.56 38.15 14.56 52.71 0L233.41 384c29.11-29.11 29.11-76.3 0-105.41s-76.3-29.11-105.41 0z"], + "search": [512, 512, [], "f002", "M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"], + "search-minus": [512, 512, [], "f010", "M304 192v32c0 6.6-5.4 12-12 12H124c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z"], + "search-plus": [512, 512, [], "f00e", "M304 192v32c0 6.6-5.4 12-12 12h-56v56c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-56h-56c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h56v-56c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v56h56c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z"], + "seedling": [512, 512, [], "f4d8", "M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z"], + "server": [512, 512, [], "f233", "M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z"], + "share": [512, 512, [], "f064", "M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z"], + "share-alt": [448, 512, [], "f1e0", "M352 320c-22.608 0-43.387 7.819-59.79 20.895l-102.486-64.054a96.551 96.551 0 0 0 0-41.683l102.486-64.054C308.613 184.181 329.392 192 352 192c53.019 0 96-42.981 96-96S405.019 0 352 0s-96 42.981-96 96c0 7.158.79 14.13 2.276 20.841L155.79 180.895C139.387 167.819 118.608 160 96 160c-53.019 0-96 42.981-96 96s42.981 96 96 96c22.608 0 43.387-7.819 59.79-20.895l102.486 64.054A96.301 96.301 0 0 0 256 416c0 53.019 42.981 96 96 96s96-42.981 96-96-42.981-96-96-96z"], + "share-alt-square": [448, 512, [], "f1e1", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zM304 296c-14.562 0-27.823 5.561-37.783 14.671l-67.958-40.775a56.339 56.339 0 0 0 0-27.793l67.958-40.775C276.177 210.439 289.438 216 304 216c30.928 0 56-25.072 56-56s-25.072-56-56-56-56 25.072-56 56c0 4.797.605 9.453 1.74 13.897l-67.958 40.775C171.823 205.561 158.562 200 144 200c-30.928 0-56 25.072-56 56s25.072 56 56 56c14.562 0 27.823-5.561 37.783-14.671l67.958 40.775a56.088 56.088 0 0 0-1.74 13.897c0 30.928 25.072 56 56 56s56-25.072 56-56C360 321.072 334.928 296 304 296z"], + "share-square": [576, 512, [], "f14d", "M568.482 177.448L424.479 313.433C409.3 327.768 384 317.14 384 295.985v-71.963c-144.575.97-205.566 35.113-164.775 171.353 4.483 14.973-12.846 26.567-25.006 17.33C155.252 383.105 120 326.488 120 269.339c0-143.937 117.599-172.5 264-173.312V24.012c0-21.174 25.317-31.768 40.479-17.448l144.003 135.988c10.02 9.463 10.028 25.425 0 34.896zM384 379.128V448H64V128h50.916a11.99 11.99 0 0 0 8.648-3.693c14.953-15.568 32.237-27.89 51.014-37.676C185.708 80.83 181.584 64 169.033 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48v-88.806c0-8.288-8.197-14.066-16.011-11.302a71.83 71.83 0 0 1-34.189 3.377c-7.27-1.046-13.8 4.514-13.8 11.859z"], + "shekel-sign": [448, 512, [], "f20b", "M248 168v168c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V168c0-75.11-60.89-136-136-136H24C10.75 32 0 42.74 0 56v408c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112h112c30.93 0 56 25.07 56 56zM432 32h-48c-8.84 0-16 7.16-16 16v296c0 30.93-25.07 56-56 56H200V176c0-8.84-7.16-16-16-16h-48c-8.84 0-16 7.16-16 16v280c0 13.25 10.75 24 24 24h168c75.11 0 136-60.89 136-136V48c0-8.84-7.16-16-16-16z"], + "shield-alt": [512, 512, [], "f3ed", "M496 128c0 221.282-135.934 344.645-221.539 380.308a48 48 0 0 1-36.923 0C130.495 463.713 16 326.487 16 128a48 48 0 0 1 29.539-44.308l192-80a48 48 0 0 1 36.923 0l192 80A48 48 0 0 1 496 128zM256 446.313l.066.034c93.735-46.689 172.497-156.308 175.817-307.729L256 65.333v380.98z"], + "ship": [640, 512, [], "f21a", "M496.616 372.639l70.012-70.012c16.899-16.9 9.942-45.771-12.836-53.092L512 236.102V96c0-17.673-14.327-32-32-32h-64V24c0-13.255-10.745-24-24-24H248c-13.255 0-24 10.745-24 24v40h-64c-17.673 0-32 14.327-32 32v140.102l-41.792 13.433c-22.753 7.313-29.754 36.173-12.836 53.092l70.012 70.012C125.828 416.287 85.587 448 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24 61.023 0 107.499-20.61 143.258-59.396C181.677 487.432 216.021 512 256 512h128c39.979 0 74.323-24.568 88.742-59.396C508.495 491.384 554.968 512 616 512c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24-60.817 0-101.542-31.001-119.384-75.361zM192 128h256v87.531l-118.208-37.995a31.995 31.995 0 0 0-19.584 0L192 215.531V128z"], + "shipping-fast": [640, 512, [], "f48b", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H112C85.5 0 64 21.5 64 48v48H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h272c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H40c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H64v128c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"], + "shoe-prints": [640, 512, [], "f54b", "M192 160h32V32h-32c-35.35 0-64 28.65-64 64s28.65 64 64 64zM0 416c0 35.35 28.65 64 64 64h32V352H64c-35.35 0-64 28.65-64 64zm337.46-128c-34.91 0-76.16 13.12-104.73 32-24.79 16.38-44.52 32-104.73 32v128l57.53 15.97c26.21 7.28 53.01 13.12 80.31 15.05 32.69 2.31 65.6.67 97.58-6.2C472.9 481.3 512 429.22 512 384c0-64-84.18-96-174.54-96zM491.42 7.19C459.44.32 426.53-1.33 393.84.99c-27.3 1.93-54.1 7.77-80.31 15.04L256 32v128c60.2 0 79.94 15.62 104.73 32 28.57 18.88 69.82 32 104.73 32C555.82 224 640 192 640 128c0-45.22-39.1-97.3-148.58-120.81z"], + "shopping-bag": [448, 512, [], "f290", "M352 160v-32C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128v32H0v272c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V160h-96zm-192-32c0-35.29 28.71-64 64-64s64 28.71 64 64v32H160v-32zm160 120c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm-192 0c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24z"], + "shopping-basket": [576, 512, [], "f291", "M576 216v16c0 13.255-10.745 24-24 24h-8l-26.113 182.788C514.509 462.435 494.257 480 470.37 480H105.63c-23.887 0-44.139-17.565-47.518-41.212L32 256h-8c-13.255 0-24-10.745-24-24v-16c0-13.255 10.745-24 24-24h67.341l106.78-146.821c10.395-14.292 30.407-17.453 44.701-7.058 14.293 10.395 17.453 30.408 7.058 44.701L170.477 192h235.046L326.12 82.821c-10.395-14.292-7.234-34.306 7.059-44.701 14.291-10.395 34.306-7.235 44.701 7.058L484.659 192H552c13.255 0 24 10.745 24 24zM312 392V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm112 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm-224 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24z"], + "shopping-cart": [576, 512, [], "f07a", "M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z"], + "shower": [512, 512, [], "f2cc", "M389.66 135.6L231.6 293.66c-9.37 9.37-24.57 9.37-33.94 0l-11.32-11.32c-9.37-9.37-9.37-24.57 0-33.94l.11-.11c-34.03-40.21-35.16-98.94-3.39-140.38-11.97-7.55-26.14-11.91-41.3-11.91C98.88 96 64 130.88 64 173.76V480H0V173.76C0 95.59 63.59 32 141.76 32c36.93 0 70.61 14.2 95.86 37.42 35.9-11.51 76.5-4.5 106.67 21.03l.11-.11c9.37-9.37 24.57-9.37 33.94 0l11.32 11.32c9.37 9.37 9.37 24.57 0 33.94zM384 208c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm48-16c8.837 0 16 7.163 16 16s-7.163 16-16 16-16-7.163-16-16 7.163-16 16-16zm80 16c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-128 32c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-96 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm64 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16z"], + "shuttle-van": [640, 512, [], "f5b6", "M628.88 210.65L494.39 49.27A48.01 48.01 0 0 0 457.52 32H32C14.33 32 0 46.33 0 64v288c0 17.67 14.33 32 32 32h32c0 53.02 42.98 96 96 96s96-42.98 96-96h128c0 53.02 42.98 96 96 96s96-42.98 96-96h32c17.67 0 32-14.33 32-32V241.38c0-11.23-3.94-22.1-11.12-30.73zM64 192V96h96v96H64zm96 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm160-240h-96V96h96v96zm160 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm-96-240V96h66.02l80 96H384z"], + "sign": [512, 512, [], "f4d9", "M496 64H128V16c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16v48H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V128h368c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM160 384h320V160H160v224z"], + "sign-in-alt": [512, 512, [], "f2f6", "M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z"], + "sign-language": [448, 512, [], "f2a7", "M91.434 483.987c-.307-16.018 13.109-29.129 29.13-29.129h62.293v-5.714H56.993c-16.021 0-29.437-13.111-29.13-29.129C28.16 404.491 40.835 392 56.428 392h126.429v-5.714H29.136c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h154.286v-5.714H57.707c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h168.566l-31.085-22.606c-12.762-9.281-15.583-27.149-6.302-39.912 9.281-12.761 27.15-15.582 39.912-6.302l123.361 89.715a34.287 34.287 0 0 1 14.12 27.728v141.136c0 15.91-10.946 29.73-26.433 33.374l-80.471 18.934a137.16 137.16 0 0 1-31.411 3.646H120c-15.593-.001-28.269-12.492-28.566-28.014zm73.249-225.701h36.423l-11.187-8.136c-18.579-13.511-20.313-40.887-3.17-56.536l-13.004-16.7c-9.843-12.641-28.43-15.171-40.88-5.088-12.065 9.771-14.133 27.447-4.553 39.75l36.371 46.71zm283.298-2.103l-5.003-152.452c-.518-15.771-13.722-28.136-29.493-27.619-15.773.518-28.137 13.722-27.619 29.493l1.262 38.415L283.565 11.019c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l76.889 98.745-4.509 3.511-94.79-121.734c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l94.443 121.288-4.509 3.511-77.675-99.754c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l52.053 66.849c12.497-8.257 29.055-8.285 41.69.904l123.36 89.714c10.904 7.93 17.415 20.715 17.415 34.198v16.999l61.064-47.549a34.285 34.285 0 0 0 13.202-28.177z"], + "sign-out-alt": [512, 512, [], "f2f5", "M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"], + "signal": [640, 512, [], "f012", "M36 384h56c6.6 0 12 5.4 12 12v104c0 6.6-5.4 12-12 12H36c-6.6 0-12-5.4-12-12V396c0-6.6 5.4-12 12-12zm116-36v152c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V348c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-80v232c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V268c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-112v344c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V156c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zM536 12v488c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V12c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12z"], + "signature": [512, 512, [], "f5b7", "M496 320h-91.86c-9.27 0-19.72-11.31-25.78-28.52-15.23-43.36-48.11-70.3-85.8-70.3-30.84 0-58.47 18.05-76.11 49.23L194.8 106.5C188.84 81.08 169.34 64 146.28 64c-23.05 0-42.55 17.08-48.5 42.5L56.16 284.2C50.7 307.45 37.75 320 28.33 320H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h12.33c41.97 0 78.19-34.23 90.14-85.2l23.84-101.78 29.25 222.11c1.98 15.05 13.82 27.45 28.94 28.75.99.09 1.96.13 2.93.13 14.08 0 26.64-9.27 30.69-22.95l33.03-112.34c5.88-16.72 15.84-27.52 25.41-27.52 9.58 0 19.55 10.8 25.78 28.52 15.23 43.36 48.11 70.3 85.8 70.3H496c8.84 0 16-7.16 16-16v-32c0-8.86-7.16-16.02-16-16.02z"], + "sitemap": [640, 512, [], "f0e8", "M128 352H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm-24-80h192v48h48v-48h192v48h48v-57.59c0-21.17-17.23-38.41-38.41-38.41H344v-64h40c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H256c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h40v64H94.41C73.23 224 56 241.23 56 262.41V320h48v-48zm264 80h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm240 0h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z"], + "skull": [512, 512, [], "f54c", "M256 0C114.6 0 0 100.3 0 224c0 70.1 36.9 132.6 94.5 173.7 9.6 6.9 15.2 18.1 13.5 29.9l-9.4 66.2c-1.4 9.6 6 18.2 15.7 18.2H192v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h64v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h77.7c9.7 0 17.1-8.6 15.7-18.2l-9.4-66.2c-1.7-11.7 3.8-23 13.5-29.9C475.1 356.6 512 294.1 512 224 512 100.3 397.4 0 256 0zm-96 320c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm192 0c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64z"], + "sliders-h": [512, 512, [], "f1de", "M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z"], + "smile": [496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.6-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.4-16.2 38.1 4.2 24.6 20.5z"], + "smile-beam": [496, 512, [], "f5b8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM112 223.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zm250.8 122.8C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.3 24.6 20.5zm6.2-118.3l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.6 8.6-11 11.9-15.1 4.5z"], + "smile-wink": [496, 512, [], "f4da", "M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm158.5 16.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.7 11.1-11.4 18.3-19.8 10.8l-9.7-8.5zM157.8 325.8C180.2 352.7 213 368 248 368s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.2 24.6 20.5C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11.2-36.7 24.6-20.4z"], + "smoking": [640, 512, [], "f48d", "M632 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8zM553.3 87.1c-5.7-3.8-9.3-10-9.3-16.8V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v62.3c0 22 10.2 43.4 28.6 55.4 42.2 27.3 67.4 73.8 67.4 124V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-65.5-32.4-126.2-86.7-162.6zM432 352H48c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h384c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zm-32 112H224v-64h176v64zm87.7-322.4C463.8 125 448 99.3 448 70.3V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v66.4c0 43.7 24.6 81.6 60.3 106.7 22.4 15.7 35.7 41.2 35.7 68.6V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-43.3-21-83.4-56.3-108.1zM536 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8z"], + "smoking-ban": [512, 512, [], "f54d", "M96 304c0 8.8 7.2 16 16 16h117.5l-96-96H112c-8.8 0-16 7.2-16 16v64zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 448c-105.9 0-192-86.1-192-192 0-41.4 13.3-79.7 35.7-111.1l267.4 267.4C335.7 434.7 297.4 448 256 448zm45.2-192H384v32h-50.8l-32-32zm111.1 111.1L365.2 320H400c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16H269.2L144.9 99.7C176.3 77.3 214.6 64 256 64c105.9 0 192 86.1 192 192 0 41.4-13.3 79.7-35.7 111.1zM320.6 128c-15.6 0-28.6-11.2-31.4-25.9-.7-3.6-4-6.1-7.7-6.1h-16.2c-5 0-8.7 4.5-8 9.4 4.6 30.9 31.2 54.6 63.3 54.6 15.6 0 28.6 11.2 31.4 25.9.7 3.6 4 6.1 7.7 6.1h16.2c5 0 8.7-4.5 8-9.4-4.6-30.9-31.2-54.6-63.3-54.6z"], + "snowflake": [448, 512, [], "f2dc", "M444.816 301.639a24.12 24.12 0 0 0 2.661-16.978c-2.725-12.966-15.339-21.245-28.174-18.492l-87.407 25.046L264 256l67.896-35.215 87.407 25.046c12.835 2.753 25.449-5.526 28.174-18.492 2.725-12.966-5.471-25.708-18.305-28.461l-47.477-7.137 53.077-30.956c11.363-6.627 15.257-21.306 8.696-32.785-6.561-11.479-21.091-15.412-32.454-8.785l-53.077 30.956 17.621-45.104c4.057-12.606-2.768-26.146-15.247-30.245-12.478-4.099-25.883 2.797-29.94 15.402l-22.232 88.99-60.38 35.215V144l65.175-63.945c8.778-9.852 7.987-25.027-1.766-33.894-9.753-8.867-24.775-8.068-33.552 1.784l-29.857 37.967V24c0-13.255-10.637-24-23.758-24s-23.758 10.745-23.758 24v61.912l-29.857-37.967c-8.779-9.852-23.799-10.652-33.552-1.784-9.753 8.867-10.543 24.042-1.766 33.894L200.242 144v70.431l-60.38-35.215-22.232-88.99c-4.057-12.605-17.462-19.501-29.94-15.402-12.478 4.099-19.304 17.64-15.247 30.245l17.62 45.104-53.077-30.956c-11.363-6.627-25.893-2.694-32.454 8.785s-2.667 26.157 8.696 32.785l53.077 30.956-47.477 7.137C5.993 201.634-2.203 214.375.523 227.341c2.725 12.965 15.339 21.245 28.174 18.492l87.407-25.046L184 256l-67.896 35.215-87.406-25.045c-12.835-2.753-25.449 5.526-28.174 18.492-2.725 12.967 5.47 25.708 18.305 28.461l47.477 7.137-53.077 30.956C1.866 357.843-2.027 372.521 4.533 384s21.091 15.412 32.454 8.785l53.077-30.956-17.62 45.104a24.157 24.157 0 0 0 2.022 19.428c2.831 4.953 7.416 8.909 13.224 10.816 12.478 4.099 25.883-2.797 29.94-15.402l22.232-88.99 60.38-35.215V368l-65.175 63.945c-8.778 9.852-7.987 25.027 1.766 33.894 9.754 8.868 24.774 8.068 33.552-1.784l29.857-37.967V488c0 13.255 10.637 24 23.758 24s23.758-10.745 23.758-24v-61.912l29.857 37.967A23.59 23.59 0 0 0 295.282 472a23.534 23.534 0 0 0 15.885-6.161c9.753-8.867 10.544-24.042 1.766-33.894L247.758 368v-70.431l60.38 35.215 22.232 88.99c4.057 12.605 17.462 19.501 29.94 15.402 12.479-4.099 19.304-17.64 15.247-30.245l-17.621-45.104 53.077 30.956c11.363 6.627 25.893 2.694 32.454-8.785s2.667-26.157-8.696-32.785l-53.077-30.956 47.477-7.137c6.86-1.469 12.394-5.793 15.645-11.481z"], + "solar-panel": [640, 512, [], "f5ba", "M431.98 448.01l-47.97.05V416h-128v32.21l-47.98.05c-8.82.01-15.97 7.16-15.98 15.99l-.05 31.73c-.01 8.85 7.17 16.03 16.02 16.02l223.96-.26c8.82-.01 15.97-7.16 15.98-15.98l.04-31.73c.01-8.85-7.17-16.03-16.02-16.02zM585.2 26.74C582.58 11.31 568.99 0 553.06 0H86.93C71 0 57.41 11.31 54.79 26.74-3.32 369.16.04 348.08.03 352c-.03 17.32 14.29 32 32.6 32h574.74c18.23 0 32.51-14.56 32.59-31.79.02-4.08 3.35 16.95-54.76-325.47zM259.83 64h120.33l9.77 96H250.06l9.77-96zm-75.17 256H71.09L90.1 208h105.97l-11.41 112zm16.29-160H98.24l16.29-96h96.19l-9.77 96zm32.82 160l11.4-112h149.65l11.4 112H233.77zm195.5-256h96.19l16.29 96H439.04l-9.77-96zm26.06 256l-11.4-112H549.9l19.01 112H455.33z"], + "sort": [320, 512, [], "f0dc", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z"], + "sort-alpha-down": [448, 512, [], "f15d", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zm119.075-180.007A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z"], + "sort-alpha-up": [448, 512, [], "f15e", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zm301.671 98.621A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z"], + "sort-amount-down": [512, 512, [], "f160", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z"], + "sort-amount-up": [512, 512, [], "f161", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z"], + "sort-down": [320, 512, [], "f0dd", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z"], + "sort-numeric-down": [448, 512, [], "f162", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM175.984 368H128V48c0-8.837-7.163-16-16-16H80c-8.837 0-16 7.163-16 16v320H16.019c-14.212 0-21.384 17.244-11.314 27.314l79.981 80.002c6.245 6.245 16.38 6.247 22.627 0l79.984-80.002c10.05-10.05 2.928-27.314-11.313-27.314z"], + "sort-numeric-up": [448, 512, [], "f163", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM16.016 144H64v320c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144h47.981c14.212 0 21.384-17.244 11.314-27.314l-79.981-80.002c-6.245-6.245-16.38-6.247-22.627 0L4.702 116.686C-5.347 126.736 1.775 144 16.016 144z"], + "sort-up": [320, 512, [], "f0de", "M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z"], + "spa": [576, 512, [], "f5bb", "M568.25 192c-29.04.13-135.01 6.16-213.84 83-33.12 29.63-53.36 63.3-66.41 94.86-13.05-31.56-33.29-65.23-66.41-94.86-78.83-76.84-184.8-82.87-213.84-83-4.41-.02-7.79 3.4-7.75 7.82.23 27.92 7.14 126.14 88.77 199.3C172.79 480.94 256 480 288 480s115.19.95 199.23-80.88c81.64-73.17 88.54-171.38 88.77-199.3.04-4.42-3.34-7.84-7.75-7.82zM287.98 302.6c12.82-18.85 27.6-35.78 44.09-50.52 19.09-18.61 39.58-33.3 60.26-45.18-16.44-70.5-51.72-133.05-96.73-172.22-4.11-3.58-11.02-3.58-15.14 0-44.99 39.14-80.27 101.63-96.74 172.07 20.37 11.7 40.5 26.14 59.22 44.39a282.768 282.768 0 0 1 45.04 51.46z"], + "space-shuttle": [640, 512, [], "f197", "M592.604 208.244C559.735 192.836 515.777 184 472 184H186.327c-4.952-6.555-10.585-11.978-16.72-16H376C229.157 137.747 219.403 32 96.003 32H96v128H80V32c-26.51 0-48 28.654-48 64v64c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v16c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v64c0 35.346 21.49 64 48 64V352h16v128h.003c123.4 0 133.154-105.747 279.997-136H169.606c6.135-4.022 11.768-9.445 16.72-16H472c43.777 0 87.735-8.836 120.604-24.244C622.282 289.845 640 271.992 640 256s-17.718-33.845-47.396-47.756zM488 296a8 8 0 0 1-8-8v-64a8 8 0 0 1 8-8c31.909 0 31.942 80 0 80z"], + "spinner": [512, 512, [], "f110", "M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z"], + "splotch": [512, 512, [], "f5bc", "M472.29 195.89l-67.06-22.95c-19.28-6.6-33.54-20.92-38.14-38.3L351.1 74.19c-11.58-43.77-76.57-57.13-109.98-22.62l-46.14 47.67c-13.26 13.71-33.54 20.93-54.2 19.31l-71.88-5.62c-52.05-4.07-86.93 44.88-59.03 82.83l38.54 52.42c11.08 15.07 12.82 33.86 4.64 50.24L24.62 355.4c-20.59 41.25 22.84 84.87 73.49 73.81l69.96-15.28c20.11-4.39 41.45 0 57.07 11.73l54.32 40.83c39.32 29.56 101.04 7.57 104.45-37.22l4.7-61.86c1.35-17.79 12.8-33.86 30.63-42.99l62-31.74c44.88-22.96 39.59-80.17-8.95-96.79z"], + "spray-can": [512, 512, [], "f5bd", "M224 32c0-17.67-14.33-32-32-32h-64c-17.67 0-32 14.33-32 32v96h128V32zm256 96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-256 32H96c-53.02 0-96 42.98-96 96v224c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V256c0-53.02-42.98-96-96-96zm-64 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zM480 96c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm-96 32c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-96-96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 0c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 192c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z"], + "square": [448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"], + "square-full": [512, 512, [], "f45c", "M512 512H0V0h512v512z"], + "stamp": [512, 512, [], "f5bf", "M32 512h448v-64H32v64zm384-256h-66.56c-16.26 0-29.44-13.18-29.44-29.44v-9.46c0-27.37 8.88-53.41 21.46-77.72 9.11-17.61 12.9-38.39 9.05-60.42-6.77-38.78-38.47-70.7-77.26-77.45C212.62-9.04 160 37.33 160 96c0 14.16 3.12 27.54 8.69 39.58C182.02 164.43 192 194.7 192 226.49v.07c0 16.26-13.18 29.44-29.44 29.44H96c-53.02 0-96 42.98-96 96v32c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-32c0-53.02-42.98-96-96-96z"], + "star": [576, 512, [], "f005", "M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z"], + "star-half": [576, 512, [], "f089", "M288 0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6V0z"], + "star-half-alt": [536, 512, [], "f5c0", "M508.55 171.51L362.18 150.2 296.77 17.81C290.89 5.98 279.42 0 267.95 0c-11.4 0-22.79 5.9-28.69 17.81l-65.43 132.38-146.38 21.29c-26.25 3.8-36.77 36.09-17.74 54.59l105.89 103-25.06 145.48C86.98 495.33 103.57 512 122.15 512c4.93 0 10-1.17 14.87-3.75l130.95-68.68 130.94 68.7c4.86 2.55 9.92 3.71 14.83 3.71 18.6 0 35.22-16.61 31.66-37.4l-25.03-145.49 105.91-102.98c19.04-18.5 8.52-50.8-17.73-54.6zm-121.74 123.2l-18.12 17.62 4.28 24.88 19.52 113.45-102.13-53.59-22.38-11.74.03-317.19 51.03 103.29 11.18 22.63 25.01 3.64 114.23 16.63-82.65 80.38z"], + "step-backward": [448, 512, [], "f048", "M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z"], + "step-forward": [448, 512, [], "f051", "M384 44v424c0 6.6-5.4 12-12 12h-48c-6.6 0-12-5.4-12-12V291.6l-195.5 181C95.9 489.7 64 475.4 64 448V64c0-27.4 31.9-41.7 52.5-24.6L312 219.3V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12z"], + "stethoscope": [512, 512, [], "f0f1", "M447.1 112c-34.2.5-62.3 28.4-63 62.6-.5 24.3 12.5 45.6 32 56.8V344c0 57.3-50.2 104-112 104-60 0-109.2-44.1-111.9-99.2C265 333.8 320 269.2 320 192V36.6c0-11.4-8.1-21.3-19.3-23.5L237.8.5c-13-2.6-25.6 5.8-28.2 18.8L206.4 35c-2.6 13 5.8 25.6 18.8 28.2l30.7 6.1v121.4c0 52.9-42.2 96.7-95.1 97.2-53.4.5-96.9-42.7-96.9-96V69.4l30.7-6.1c13-2.6 21.4-15.2 18.8-28.2l-3.1-15.7C107.7 6.4 95.1-2 82.1.6L19.3 13C8.1 15.3 0 25.1 0 36.6V192c0 77.3 55.1 142 128.1 156.8C130.7 439.2 208.6 512 304 512c97 0 176-75.4 176-168V231.4c19.1-11.1 32-31.7 32-55.4 0-35.7-29.2-64.5-64.9-64zm.9 80c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z"], + "sticky-note": [448, 512, [], "f249", "M312 320h136V56c0-13.3-10.7-24-24-24H24C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h264V344c0-13.2 10.8-24 24-24zm129 55l-98 98c-4.5 4.5-10.6 7-17 7h-6V352h128v6.1c0 6.3-2.5 12.4-7 16.9z"], + "stop": [448, 512, [], "f04d", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z"], + "stop-circle": [512, 512, [], "f28d", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z"], + "stopwatch": [448, 512, [], "f2f2", "M432 304c0 114.9-93.1 208-208 208S16 418.9 16 304c0-104 76.3-190.2 176-205.5V64h-28c-6.6 0-12-5.4-12-12V12c0-6.6 5.4-12 12-12h120c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-28v34.5c37.5 5.8 71.7 21.6 99.7 44.6l27.5-27.5c4.7-4.7 12.3-4.7 17 0l28.3 28.3c4.7 4.7 4.7 12.3 0 17l-29.4 29.4-.6.6C419.7 223.3 432 262.2 432 304zm-176 36V188.5c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12V340c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"], + "store": [616, 512, [], "f54e", "M602 118.6L537.1 15C531.3 5.7 521 0 510 0H106C95 0 84.7 5.7 78.9 15L14 118.6c-33.5 53.5-3.8 127.9 58.8 136.4 4.5.6 9.1.9 13.7.9 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18.1 20.1 44.3 33.1 73.8 33.1 4.7 0 9.2-.3 13.7-.9 62.8-8.4 92.6-82.8 59-136.4zM529.5 288c-10 0-19.9-1.5-29.5-3.8V384H116v-99.8c-9.6 2.2-19.5 3.8-29.5 3.8-6 0-12.1-.4-18-1.2-5.6-.8-11.1-2.1-16.4-3.6V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V283.2c-5.4 1.6-10.8 2.9-16.4 3.6-6.1.8-12.1 1.2-18.2 1.2z"], + "store-alt": [640, 512, [], "f54f", "M320 384H128V224H64v256c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V224h-64v160zm314.6-241.8l-85.3-128c-6-8.9-16-14.2-26.7-14.2H117.4c-10.7 0-20.7 5.3-26.6 14.2l-85.3 128c-14.2 21.3 1 49.8 26.6 49.8H608c25.5 0 40.7-28.5 26.6-49.8zM512 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h-64v272z"], + "stream": [512, 512, [], "f550", "M16 128h416c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H16C7.16 32 0 39.16 0 48v64c0 8.84 7.16 16 16 16zm480 80H80c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm-64 176H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16z"], + "street-view": [512, 512, [], "f21d", "M192 64c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zm112 80h-11.36c-22.711 10.443-49.59 10.894-73.28 0H208c-26.51 0-48 21.49-48 48v104c0 13.255 10.745 24 24 24h16v104c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V320h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48zm85.642 189.152a72.503 72.503 0 0 1-29.01 27.009C391.133 365.251 480 385.854 480 416c0 46.304-167.656 64-224 64-70.303 0-224-20.859-224-64 0-30.123 88.361-50.665 119.367-55.839a72.516 72.516 0 0 1-29.01-27.009C74.959 343.395 0 367.599 0 416c0 77.111 178.658 96 256 96 77.249 0 256-18.865 256-96 0-48.403-74.967-72.606-122.358-82.848z"], + "strikethrough": [512, 512, [], "f0cc", "M496 288H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h480c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16zm-214.666 16c27.258 12.937 46.524 28.683 46.524 56.243 0 33.108-28.977 53.676-75.621 53.676-32.325 0-76.874-12.08-76.874-44.271V368c0-8.837-7.164-16-16-16H113.75c-8.836 0-16 7.163-16 16v19.204c0 66.845 77.717 101.82 154.487 101.82 88.578 0 162.013-45.438 162.013-134.424 0-19.815-3.618-36.417-10.143-50.6H281.334zm-30.952-96c-32.422-13.505-56.836-28.946-56.836-59.683 0-33.92 30.901-47.406 64.962-47.406 42.647 0 64.962 16.593 64.962 32.985V136c0 8.837 7.164 16 16 16h45.613c8.836 0 16-7.163 16-16v-30.318c0-52.438-71.725-79.875-142.575-79.875-85.203 0-150.726 40.972-150.726 125.646 0 22.71 4.665 41.176 12.777 56.547h129.823z"], + "stroopwafel": [512, 512, [], "f551", "M188.12 210.74L142.86 256l45.25 45.25L233.37 256l-45.25-45.26zm113.13-22.62L256 142.86l-45.25 45.25L256 233.37l45.25-45.25zm-90.5 135.76L256 369.14l45.26-45.26L256 278.63l-45.25 45.25zM256 0C114.62 0 0 114.62 0 256s114.62 256 256 256 256-114.62 256-256S397.38 0 256 0zm186.68 295.6l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-28.29-28.29-45.25 45.25 33.94 33.94 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-33.94-33.94-45.26 45.26 28.29 28.29c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0L256 414.39l-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l28.29-28.29-45.25-45.26-33.94 33.94 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 33.94-33.94-45.25-45.25-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0L69.32 295.6c-3.12-3.12-3.12-8.19 0-11.31L97.61 256l-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l28.29 28.29 45.25-45.26-33.94-33.94-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 33.94 33.94 45.26-45.25-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0L256 97.61l28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-28.29 28.29 45.26 45.25 33.94-33.94-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-33.94 33.94 45.25 45.26 28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31L414.39 256l28.29 28.28a8.015 8.015 0 0 1 0 11.32zM278.63 256l45.26 45.25L369.14 256l-45.25-45.26L278.63 256z"], + "subscript": [512, 512, [], "f12c", "M395.198 416c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 256c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 96H16C7.163 96 0 88.837 0 80V48c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035A15.999 15.999 0 0 1 204.226 32H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 256H272z"], + "subway": [448, 512, [], "f239", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zM200 232V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm200 0V120c0-13.255-10.745-24-24-24H272c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm-48 56c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm-256 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"], + "suitcase": [512, 512, [], "f0f2", "M128 480h256V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v400zm64-384h128v32H192V96zm320 80v256c0 26.5-21.5 48-48 48h-48V128h48c26.5 0 48 21.5 48 48zM96 480H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h48v352z"], + "suitcase-rolling": [384, 512, [], "f5c1", "M336 160H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h16v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h128v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h16c26.51 0 48-21.49 48-48V208c0-26.51-21.49-48-48-48zm-16 216c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zM144 48h96v80h48V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v80h48V48z"], + "sun": [512, 512, [], "f185", "M274.835 12.646l25.516 62.393c4.213 10.301 16.671 14.349 26.134 8.492l57.316-35.479c15.49-9.588 34.808 4.447 30.475 22.142l-16.03 65.475c-2.647 10.81 5.053 21.408 16.152 22.231l67.224 4.987c18.167 1.348 25.546 24.057 11.641 35.826L441.81 242.26c-8.495 7.19-8.495 20.289 0 27.479l51.454 43.548c13.906 11.769 6.527 34.478-11.641 35.826l-67.224 4.987c-11.099.823-18.799 11.421-16.152 22.231l16.03 65.475c4.332 17.695-14.986 31.73-30.475 22.142l-57.316-35.479c-9.463-5.858-21.922-1.81-26.134 8.492l-25.516 62.393c-6.896 16.862-30.774 16.862-37.67 0l-25.516-62.393c-4.213-10.301-16.671-14.349-26.134-8.492l-57.317 35.479c-15.49 9.588-34.808-4.447-30.475-22.142l16.03-65.475c2.647-10.81-5.053-21.408-16.152-22.231l-67.224-4.987c-18.167-1.348-25.546-24.057-11.641-35.826L70.19 269.74c8.495-7.19 8.495-20.289 0-27.479l-51.454-43.548c-13.906-11.769-6.527-34.478 11.641-35.826l67.224-4.987c11.099-.823 18.799-11.421 16.152-22.231l-16.03-65.475c-4.332-17.695 14.986-31.73 30.475-22.142l57.317 35.479c9.463 5.858 21.921 1.81 26.134-8.492l25.516-62.393c6.896-16.861 30.774-16.861 37.67 0zM392 256c0-74.991-61.01-136-136-136-74.991 0-136 61.009-136 136s61.009 136 136 136c74.99 0 136-61.009 136-136zm-32 0c0 57.346-46.654 104-104 104s-104-46.654-104-104 46.654-104 104-104 104 46.654 104 104z"], + "superscript": [512, 512, [], "f12b", "M395.198 256c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 256H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035a16 16 0 0 1 13.598-7.567H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 416H272z"], + "surprise": [496, 512, [], "f5c2", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm112 208c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm80-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "swatchbook": [511, 512, [], "f5c3", "M479.06 320H372.29L186.15 506.51c-2.06 2.07-4.49 3.58-6.67 5.49h299.58c17.64 0 31.94-14.33 31.94-32V352c0-17.67-14.3-32-31.94-32zm-44.5-152.9l-90.33-90.51c-12.47-12.5-32.69-12.5-45.17 0l-75.5 75.65V416c0 2.96-.67 5.73-.87 8.64l211.87-212.28c12.47-12.5 12.47-32.77 0-45.26zM191.62 32c0-17.67-14.3-32-31.94-32H31.94C14.3 0 0 14.33 0 32v384c0 53.02 42.9 96 95.81 96s95.81-42.98 95.81-96V32zM95.81 440c-13.23 0-23.95-10.75-23.95-24 0-13.26 10.73-24 23.95-24s23.95 10.74 23.95 24c.01 13.25-10.72 24-23.95 24zm31.94-184H63.88v-64h63.88v64zm0-128H63.88V64h63.88v64z"], + "swimmer": [640, 512, [], "f5c4", "M189.61 310.58c3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c16.02-14.77 34.5-22.58 53.46-22.58h16.3c18.96 0 37.45 7.81 53.46 22.58 3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c14.86-13.71 31.88-21.12 49.39-22.16l-112.84-80.6 18-12.86c3.64-2.58 8.28-3.52 12.62-2.61l100.35 21.53c25.91 5.53 51.44-10.97 57-36.88 5.55-25.92-10.95-51.44-36.88-57L437.68 98.47c-30.73-6.58-63.02.12-88.56 18.38l-80.02 57.17c-10.38 7.39-19.36 16.44-26.72 26.94L173.75 299c5.47 3.23 10.82 6.93 15.86 11.58zM624 352h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 343.58 442.04 352 416 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 343.58 250.04 352 224 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 343.58 58.04 352 32 352H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-512-96c44.18 0 80-35.82 80-80s-35.82-80-80-80-80 35.82-80 80 35.82 80 80 80z"], + "swimming-pool": [640, 512, [], "f5c5", "M624 416h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 407.58 442.04 416 416 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 407.58 250.04 416 224 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 407.58 58.04 416 32 416H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-400-32v-96h192v96c19.12 0 30.86-6.16 34.39-9.42 9.17-8.46 19.2-14.34 29.61-18.07V128c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v96H224v-96c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v228.5c10.41 3.73 20.44 9.62 29.61 18.07 3.53 3.27 15.27 9.43 34.39 9.43z"], + "sync": [512, 512, [], "f021", "M440.935 12.574l3.966 82.766C399.416 41.904 331.674 8 256 8 134.813 8 33.933 94.924 12.296 209.824 10.908 217.193 16.604 224 24.103 224h49.084c5.57 0 10.377-3.842 11.676-9.259C103.407 137.408 172.931 80 256 80c60.893 0 114.512 30.856 146.104 77.801l-101.53-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12h-47.411c-6.853 0-12.315 5.729-11.987 12.574zM256 432c-60.895 0-114.517-30.858-146.109-77.805l101.868 4.871c6.845.327 12.573-5.134 12.573-11.986v-47.412c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12V500c0 6.627 5.373 12 12 12h47.385c6.863 0 12.328-5.745 11.985-12.599l-4.129-82.575C112.725 470.166 180.405 504 256 504c121.187 0 222.067-86.924 243.704-201.824 1.388-7.369-4.308-14.176-11.807-14.176h-49.084c-5.57 0-10.377 3.842-11.676 9.259C408.593 374.592 339.069 432 256 432z"], + "sync-alt": [512, 512, [], "f2f1", "M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z"], + "syringe": [512, 512, [], "f48e", "M201.5 174.8l55.7 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-55.7-55.8-45.3 45.3 55.8 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L111 265.2l-26.4 26.4c-17.3 17.3-25.6 41.1-23 65.4l7.1 63.6L2.3 487c-3.1 3.1-3.1 8.2 0 11.3l11.3 11.3c3.1 3.1 8.2 3.1 11.3 0l66.3-66.3 63.6 7.1c23.9 2.6 47.9-5.4 65.4-23l181.9-181.9-135.7-135.7-64.9 65zm308.2-93.3L430.5 2.3c-3.1-3.1-8.2-3.1-11.3 0l-11.3 11.3c-3.1 3.1-3.1 8.2 0 11.3l28.3 28.3-45.3 45.3-56.6-56.6-17-17c-3.1-3.1-8.2-3.1-11.3 0l-33.9 33.9c-3.1 3.1-3.1 8.2 0 11.3l17 17L424.8 223l17 17c3.1 3.1 8.2 3.1 11.3 0l33.9-34c3.1-3.1 3.1-8.2 0-11.3l-73.5-73.5 45.3-45.3 28.3 28.3c3.1 3.1 8.2 3.1 11.3 0l11.3-11.3c3.1-3.2 3.1-8.2 0-11.4z"], + "table": [512, 512, [], "f0ce", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64v-96h160v96zm0-160H64v-96h160v96zm224 160H288v-96h160v96zm0-160H288v-96h160v96z"], + "table-tennis": [512, 512, [], "f45d", "M496.2 296.5C527.7 218.7 512 126.2 449 63.1 365.1-21 229-21 145.1 63.1l-56 56.1 211.5 211.5c46.1-62.1 131.5-77.4 195.6-34.2zm-217.9 79.7L57.9 155.9c-27.3 45.3-21.7 105 17.3 144.1l34.5 34.6L6.7 424c-8.6 7.5-9.1 20.7-1 28.8l53.4 53.5c8 8.1 21.2 7.6 28.7-1L177.1 402l35.7 35.7c19.7 19.7 44.6 30.5 70.3 33.3-7.1-17-11-35.6-11-55.1-.1-13.8 2.5-27 6.2-39.7zM416 320c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96z"], + "tablet": [448, 512, [], "f10a", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"], + "tablet-alt": [448, 512, [], "f3fa", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm176-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h328c6.6 0 12 5.4 12 12v312z"], + "tablets": [640, 512, [], "f490", "M160 192C78.9 192 12.5 250.5.1 326.7c-.8 4.8 3.3 9.3 8.3 9.3h303.3c5 0 9.1-4.5 8.3-9.3C307.5 250.5 241.1 192 160 192zm151.6 176H8.4c-5 0-9.1 4.5-8.3 9.3C12.5 453.5 78.9 512 160 512s147.5-58.5 159.9-134.7c.8-4.8-3.3-9.3-8.3-9.3zM593.4 46.6c-56.5-56.5-144.2-61.4-206.9-16-4 2.9-4.3 8.9-.8 12.3L597 254.3c3.5 3.5 9.5 3.2 12.3-.8 45.5-62.7 40.6-150.4-15.9-206.9zM363 65.7c-3.5-3.5-9.5-3.2-12.3.8-45.4 62.7-40.5 150.4 15.9 206.9 56.5 56.5 144.2 61.4 206.9 15.9 4-2.9 4.3-8.9.8-12.3L363 65.7z"], + "tachometer-alt": [576, 512, [], "f3fd", "M75.694 480a48.02 48.02 0 0 1-42.448-25.571C12.023 414.3 0 368.556 0 320 0 160.942 128.942 32 288 32s288 128.942 288 288c0 48.556-12.023 94.3-33.246 134.429A48.018 48.018 0 0 1 500.306 480H75.694zM512 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zM288 128c17.673 0 32-14.327 32-32 0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32zM64 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm65.608-158.392c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm316.784 0c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm-87.078 31.534c-12.627-4.04-26.133 2.92-30.173 15.544l-45.923 143.511C250.108 322.645 224 350.264 224 384c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64 0-19.773-8.971-37.447-23.061-49.187l45.919-143.498c4.039-12.625-2.92-26.133-15.544-30.173z"], + "tag": [512, 512, [], "f02b", "M0 252.118V48C0 21.49 21.49 0 48 0h204.118a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882L293.823 497.941c-18.745 18.745-49.137 18.745-67.882 0L14.059 286.059A48 48 0 0 1 0 252.118zM112 64c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"], + "tags": [640, 512, [], "f02c", "M497.941 225.941L286.059 14.059A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v204.118a48 48 0 0 0 14.059 33.941l211.882 211.882c18.744 18.745 49.136 18.746 67.882 0l204.118-204.118c18.745-18.745 18.745-49.137 0-67.882zM112 160c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm513.941 133.823L421.823 497.941c-18.745 18.745-49.137 18.745-67.882 0l-.36-.36L527.64 323.522c16.999-16.999 26.36-39.6 26.36-63.64s-9.362-46.641-26.36-63.64L331.397 0h48.721a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882z"], + "tape": [640, 512, [], "f4db", "M224 192c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm400 224H380.6c41.5-40.7 67.4-97.3 67.4-160 0-123.7-100.3-224-224-224S0 132.3 0 256s100.3 224 224 224h400c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400-64c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96z"], + "tasks": [512, 512, [], "f0ae", "M208 132h288c8.8 0 16-7.2 16-16V76c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zM64 368c-26.5 0-48.6 21.5-48.6 48s22.1 48 48.6 48 48-21.5 48-48-21.5-48-48-48zm92.5-299l-72.2 72.2-15.6 15.6c-4.7 4.7-12.9 4.7-17.6 0L3.5 109.4c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.3c4.7-4.7 12.3-4.7 17 0l17 16.5c4.6 4.7 4.6 12.3-.1 17zm0 159.6l-72.2 72.2-15.7 15.7c-4.7 4.7-12.9 4.7-17.6 0L3.5 269c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.7c4.7-4.7 12.3-4.7 17 0l17 17c4.6 4.6 4.6 12.2-.1 16.9z"], + "taxi": [512, 512, [], "f1ba", "M462 241.64l-22-84.84c-9.6-35.2-41.6-60.8-76.8-60.8H352V64c0-17.67-14.33-32-32-32H192c-17.67 0-32 14.33-32 32v32h-11.2c-35.2 0-67.2 25.6-76.8 60.8l-22 84.84C21.41 248.04 0 273.47 0 304v48c0 23.63 12.95 44.04 32 55.12V448c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-40.88c19.05-11.09 32-31.5 32-55.12v-48c0-30.53-21.41-55.96-50-62.36zM96 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm20.55-112l17.2-66.36c2.23-8.16 9.59-13.64 15.06-13.64h214.4c5.47 0 12.83 5.48 14.85 12.86L395.45 240h-278.9zM416 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "terminal": [640, 512, [], "f120", "M257.981 272.971L63.638 467.314c-9.373 9.373-24.569 9.373-33.941 0L7.029 444.647c-9.357-9.357-9.375-24.522-.04-33.901L161.011 256 6.99 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L257.981 239.03c9.373 9.372 9.373 24.568 0 33.941zM640 456v-32c0-13.255-10.745-24-24-24H312c-13.255 0-24 10.745-24 24v32c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z"], + "text-height": [576, 512, [], "f034", "M16 32h288c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96h-54.761v320H232c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H88c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm475.308 4.685l79.995 80.001C581.309 126.693 574.297 144 559.99 144H512v224h48c15.639 0 20.635 17.991 11.313 27.314l-79.995 80.001c-6.247 6.247-16.381 6.245-22.626 0l-79.995-80.001C378.691 385.307 385.703 368 400.01 368H448V144h-48c-15.639 0-20.635-17.991-11.313-27.314l79.995-80.001c6.247-6.248 16.381-6.245 22.626 0z"], + "text-width": [448, 512, [], "f035", "M16 32h416c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96H261.743v128H296c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H152c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm427.315 340.682l-80.001-79.995C353.991 283.365 336 288.362 336 304v48H112v-47.99c0-14.307-17.307-21.319-27.314-11.313L4.685 372.692c-6.245 6.245-6.247 16.379 0 22.626l80.001 79.995C94.009 484.635 112 479.638 112 464v-48h224v47.99c0 14.307 17.307 21.319 27.314 11.313l80.001-79.995c6.245-6.245 6.248-16.379 0-22.626z"], + "th": [512, 512, [], "f00a", "M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z"], + "th-large": [512, 512, [], "f009", "M296 32h192c13.255 0 24 10.745 24 24v160c0 13.255-10.745 24-24 24H296c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24zm-80 0H24C10.745 32 0 42.745 0 56v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zM0 296v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm296 184h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H296c-13.255 0-24 10.745-24 24v160c0 13.255 10.745 24 24 24z"], + "th-list": [512, 512, [], "f00b", "M149.333 216v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zM125.333 32H24C10.745 32 0 42.745 0 56v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zm80 448H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm-24-424v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24zm24 264H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24z"], + "thermometer": [512, 512, [], "f491", "M476.8 20.4c-37.5-30.7-95.5-26.3-131.9 10.2l-45.7 46 50.5 50.5c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.4-50.5-45.1 45.4 50.3 50.4c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L209 167.4l-45.1 45.4L214 263c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.1-50.2L96 281.1V382L7 471c-9.4 9.4-9.4 24.6 0 33.9 9.4 9.4 24.6 9.4 33.9 0l89-89h99.9L484 162.6c34.9-34.9 42.2-101.5-7.2-142.2z"], + "thermometer-empty": [256, 512, [], "f2cb", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"], + "thermometer-full": [256, 512, [], "f2c7", "M224 96c0-53.019-42.981-96-96-96S32 42.981 32 96v203.347C12.225 321.756.166 351.136.002 383.333c-.359 70.303 56.787 128.176 127.089 128.664.299.002.61.003.909.003 70.698 0 128-57.304 128-128 0-32.459-12.088-62.09-32-84.653V96zm-96 368l-.576-.002c-43.86-.304-79.647-36.544-79.423-80.42.173-33.98 19.266-51.652 31.999-66.08V96c0-26.467 21.533-48 48-48s48 21.533 48 48v221.498c12.63 14.312 32 32.164 32 66.502 0 44.112-35.888 80-80 80zm64-80c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V96c0-17.673 14.327-32 32-32s32 14.327 32 32v232.583c19.124 11.068 32 31.732 32 55.417z"], + "thermometer-half": [256, 512, [], "f2c9", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V224c0-17.673 14.327-32 32-32s32 14.327 32 32v104.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"], + "thermometer-quarter": [256, 512, [], "f2ca", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V288c0-17.673 14.327-32 32-32s32 14.327 32 32v40.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"], + "thermometer-three-quarters": [256, 512, [], "f2c8", "M192 384c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-23.685 12.876-44.349 32-55.417V160c0-17.673 14.327-32 32-32s32 14.327 32 32v168.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"], + "thumbs-down": [512, 512, [], "f165", "M0 56v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56zm40 200c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24zm272 256c-20.183 0-29.485-39.293-33.931-57.795-5.206-21.666-10.589-44.07-25.393-58.902-32.469-32.524-49.503-73.967-89.117-113.111a11.98 11.98 0 0 1-3.558-8.521V59.901c0-6.541 5.243-11.878 11.783-11.998 15.831-.29 36.694-9.079 52.651-16.178C256.189 17.598 295.709.017 343.995 0h2.844c42.777 0 93.363.413 113.774 29.737 8.392 12.057 10.446 27.034 6.148 44.632 16.312 17.053 25.063 48.863 16.382 74.757 17.544 23.432 19.143 56.132 9.308 79.469l.11.11c11.893 11.949 19.523 31.259 19.439 49.197-.156 30.352-26.157 58.098-59.553 58.098H350.723C358.03 364.34 384 388.132 384 430.548 384 504 336 512 312 512z"], + "thumbs-up": [512, 512, [], "f164", "M104 224H24c-13.255 0-24 10.745-24 24v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V248c0-13.255-10.745-24-24-24zM64 472c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zM384 81.452c0 42.416-25.97 66.208-33.277 94.548h101.723c33.397 0 59.397 27.746 59.553 58.098.084 17.938-7.546 37.249-19.439 49.197l-.11.11c9.836 23.337 8.237 56.037-9.308 79.469 8.681 25.895-.069 57.704-16.382 74.757 4.298 17.598 2.244 32.575-6.148 44.632C440.202 511.587 389.616 512 346.839 512l-2.845-.001c-48.287-.017-87.806-17.598-119.56-31.725-15.957-7.099-36.821-15.887-52.651-16.178-6.54-.12-11.783-5.457-11.783-11.998v-213.77c0-3.2 1.282-6.271 3.558-8.521 39.614-39.144 56.648-80.587 89.117-113.111 14.804-14.832 20.188-37.236 25.393-58.902C282.515 39.293 291.817 0 312 0c24 0 72 8 72 81.452z"], + "thumbtack": [384, 512, [], "f08d", "M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z"], + "ticket-alt": [576, 512, [], "f3ff", "M128 160h320v192H128V160zm400 96c0 26.51 21.49 48 48 48v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c26.51 0 48-21.49 48-48s-21.49-48-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v96c-26.51 0-48 21.49-48 48zm-48-104c0-13.255-10.745-24-24-24H120c-13.255 0-24 10.745-24 24v208c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V152z"], + "times": [352, 512, [], "f00d", "M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"], + "times-circle": [512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z"], + "tint": [352, 512, [], "f043", "M205.22 22.09c-7.94-28.78-49.44-30.12-58.44 0C100.01 179.85 0 222.72 0 333.91 0 432.35 78.72 512 176 512s176-79.65 176-178.09c0-111.75-99.79-153.34-146.78-311.82zM176 448c-61.75 0-112-50.25-112-112 0-8.84 7.16-16 16-16s16 7.16 16 16c0 44.11 35.89 80 80 80 8.84 0 16 7.16 16 16s-7.16 16-16 16z"], + "tint-slash": [640, 512, [], "f5c7", "M633.82 458.1L494.97 350.78c.52-5.57 1.03-11.16 1.03-16.87 0-111.76-99.79-153.34-146.78-311.82-7.94-28.78-49.44-30.12-58.44 0-15.52 52.34-36.87 91.96-58.49 125.68L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM144 333.91C144 432.35 222.72 512 320 512c44.71 0 85.37-16.96 116.4-44.7L162.72 255.78c-11.41 23.5-18.72 48.35-18.72 78.13z"], + "tired": [496, 512, [], "f5c8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 288c51.9 0 115.3 43.8 123.2 106.7 1.7 13.6-8 24.6-17.7 20.4-25.9-11.1-64.4-17.4-105.5-17.4s-79.6 6.3-105.5 17.4c-9.8 4.2-19.4-7-17.7-20.4C132.7 331.8 196.1 288 248 288z"], + "toggle-off": [576, 512, [], "f204", "M384 64H192C85.961 64 0 149.961 0 256s85.961 192 192 192h192c106.039 0 192-85.961 192-192S490.039 64 384 64zM64 256c0-70.741 57.249-128 128-128 70.741 0 128 57.249 128 128 0 70.741-57.249 128-128 128-70.741 0-128-57.249-128-128zm320 128h-48.905c65.217-72.858 65.236-183.12 0-256H384c70.741 0 128 57.249 128 128 0 70.74-57.249 128-128 128z"], + "toggle-on": [576, 512, [], "f205", "M576 256c0 106.039-85.961 192-192 192H192C85.961 448 0 362.039 0 256S85.961 64 192 64h192c106.039 0 192 85.961 192 192zM384 128c-70.741 0-128 57.249-128 128 0 70.741 57.249 128 128 128 70.741 0 128-57.249 128-128 0-70.741-57.249-128-128-128"], + "toolbox": [512, 512, [], "f552", "M502.63 214.63l-45.25-45.25c-6-6-14.14-9.37-22.63-9.37H384V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v80H77.25c-8.49 0-16.62 3.37-22.63 9.37L9.37 214.63c-6 6-9.37 14.14-9.37 22.63V320h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-82.75c0-8.48-3.37-16.62-9.37-22.62zM320 160H192V96h128v64zm64 208c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H192v16c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H0v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96H384v16z"], + "tooth": [448, 512, [], "f5c9", "M443.98 96.25c-11.01-45.22-47.11-82.06-92.01-93.72-32.19-8.36-63 5.1-89.14 24.33-3.25 2.39-6.96 3.73-10.5 5.48l28.32 18.21c7.42 4.77 9.58 14.67 4.8 22.11-4.46 6.95-14.27 9.86-22.11 4.8L162.83 12.84c-20.7-10.85-43.38-16.4-66.81-10.31-44.9 11.67-81 48.5-92.01 93.72-10.13 41.62-.42 80.81 21.5 110.43 23.36 31.57 32.68 68.66 36.29 107.35 4.4 47.16 10.33 94.16 20.94 140.32l7.8 33.95c3.19 13.87 15.49 23.7 29.67 23.7 13.97 0 26.15-9.55 29.54-23.16l34.47-138.42c4.56-18.32 20.96-31.16 39.76-31.16s35.2 12.85 39.76 31.16l34.47 138.42c3.39 13.61 15.57 23.16 29.54 23.16 14.18 0 26.48-9.83 29.67-23.7l7.8-33.95c10.61-46.15 16.53-93.16 20.94-140.32 3.61-38.7 12.93-75.78 36.29-107.35 21.95-29.61 31.66-68.8 21.53-110.43z"], + "trademark": [640, 512, [], "f25c", "M97.119 163.133H12c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h248.559c6.627 0 12 5.373 12 12v43.133c0 6.627-5.373 12-12 12H175.44V404c0 6.627-5.373 12-12 12h-54.322c-6.627 0-12-5.373-12-12V163.133zM329.825 96h65.425a12 12 0 0 1 11.346 8.093l43.759 127.068c7.161 20.588 16.111 52.812 16.111 52.812h.896s8.95-32.224 16.111-52.812l43.758-127.068A12 12 0 0 1 538.577 96h65.41a12 12 0 0 1 11.961 11.03l24.012 296c.567 6.987-4.951 12.97-11.961 12.97h-54.101a12 12 0 0 1-11.972-11.182l-9.082-132.93c-1.79-24.168 0-53.706 0-53.706h-.896s-10.741 33.566-17.902 53.706l-30.7 84.731a12 12 0 0 1-11.282 7.912h-50.302a12 12 0 0 1-11.282-7.912l-30.7-84.731c-7.161-20.14-17.903-53.706-17.903-53.706h-.895s1.79 29.538 0 53.706l-9.082 132.93c-.428 6.295-5.66 11.182-11.97 11.182H305.4c-7.017 0-12.536-5.994-11.959-12.987l24.425-296A11.999 11.999 0 0 1 329.825 96z"], + "train": [448, 512, [], "f238", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zm-48 136V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24zm-176 64c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56z"], + "transgender": [384, 512, [], "f224", "M372 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C198.5 104.1 172.2 96 144 96 64.5 96 0 160.5 0 240c0 68.5 47.9 125.9 112 140.4V408H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM144 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"], + "transgender-alt": [480, 512, [], "f225", "M468 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C294.5 104.1 268.2 96 240 96c-28.2 0-54.5 8.1-76.7 22.1l-16.5-16.5 19.8-19.8c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0l-19.8 19.8-19-19 16.9-16.9C107.1 12.9 101.7 0 91 0H12C5.4 0 0 5.4 0 12v79c0 10.7 12.9 16 20.5 8.5l16.9-16.9 19 19-19.8 19.8c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l19.8-19.8 16.5 16.5C104.1 185.5 96 211.8 96 240c0 68.5 47.9 125.9 112 140.4V408h-36c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM240 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"], + "trash": [448, 512, [], "f1f8", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm415.2 56.7L394.8 467c-1.6 25.3-22.6 45-47.9 45H101.1c-25.3 0-46.3-19.7-47.9-45L32.8 140.7c-.4-6.9 5.1-12.7 12-12.7h358.5c6.8 0 12.3 5.8 11.9 12.7z"], + "trash-alt": [448, 512, [], "f2ed", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm416 56v324c0 26.5-21.5 48-48 48H80c-26.5 0-48-21.5-48-48V140c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12zm-272 68c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208z"], + "tree": [384, 512, [], "f1bb", "M377.33 375.429L293.906 288H328c21.017 0 31.872-25.207 17.448-40.479L262.79 160H296c20.878 0 31.851-24.969 17.587-40.331l-104-112.003c-9.485-10.214-25.676-10.229-35.174 0l-104 112.003C56.206 134.969 67.037 160 88 160h33.21l-82.659 87.521C24.121 262.801 34.993 288 56 288h34.094L6.665 375.429C-7.869 390.655 2.925 416 24.025 416H144c0 32.781-11.188 49.26-33.995 67.506C98.225 492.93 104.914 512 120 512h144c15.086 0 21.776-19.069 9.995-28.494-19.768-15.814-33.992-31.665-33.995-67.496V416h119.97c21.05 0 31.929-25.309 17.36-40.571z"], + "trophy": [576, 512, [], "f091", "M552 64H448V24c0-13.3-10.7-24-24-24H152c-13.3 0-24 10.7-24 24v40H24C10.7 64 0 74.7 0 88v56c0 35.7 22.5 72.4 61.9 100.7 31.5 22.7 69.8 37.1 110 41.7C203.3 338.5 240 360 240 360v72h-48c-35.3 0-64 20.7-64 56v12c0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12v-12c0-35.3-28.7-56-64-56h-48v-72s36.7-21.5 68.1-73.6c40.3-4.6 78.6-19 110-41.7 39.3-28.3 61.9-65 61.9-100.7V88c0-13.3-10.7-24-24-24zM99.3 192.8C74.9 175.2 64 155.6 64 144v-16h64.2c1 32.6 5.8 61.2 12.8 86.2-15.1-5.2-29.2-12.4-41.7-21.4zM512 144c0 16.1-17.7 36.1-35.3 48.8-12.5 9-26.7 16.2-41.8 21.4 7-25 11.8-53.6 12.8-86.2H512v16z"], + "truck": [640, 512, [], "f0d1", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"], + "truck-loading": [640, 512, [], "f4de", "M50.2 375.6c2.3 8.5 11.1 13.6 19.6 11.3l216.4-58c8.5-2.3 13.6-11.1 11.3-19.6l-49.7-185.5c-2.3-8.5-11.1-13.6-19.6-11.3L151 133.3l24.8 92.7-61.8 16.5-24.8-92.7-77.3 20.7C3.4 172.8-1.7 181.6.6 190.1l49.6 185.5zM384 0c-17.7 0-32 14.3-32 32v323.6L5.9 450c-4.3 1.2-6.8 5.6-5.6 9.8l12.6 46.3c1.2 4.3 5.6 6.8 9.8 5.6l393.7-107.4C418.8 464.1 467.6 512 528 512c61.9 0 112-50.1 112-112V0H384zm144 448c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"], + "truck-moving": [640, 512, [], "f4df", "M621.3 237.3l-58.5-58.5c-12-12-28.3-18.7-45.3-18.7H480V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v336c0 44.2 35.8 80 80 80 26.3 0 49.4-12.9 64-32.4 14.6 19.6 37.7 32.4 64 32.4 44.2 0 80-35.8 80-80 0-5.5-.6-10.8-1.6-16h163.2c-1.1 5.2-1.6 10.5-1.6 16 0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H624c8.8 0 16-7.2 16-16v-85.5c0-17-6.7-33.2-18.7-45.2zM80 432c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm128 0c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm272-224h37.5c4.3 0 8.3 1.7 11.3 4.7l43.3 43.3H480v-48zm48 224c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32z"], + "tshirt": [640, 512, [], "f553", "M631.2 96.5L436.5 0C416.4 27.8 371.9 47.2 320 47.2S223.6 27.8 203.5 0L8.8 96.5c-7.9 4-11.1 13.6-7.2 21.5l57.2 114.5c4 7.9 13.6 11.1 21.5 7.2l56.6-27.7c10.6-5.2 23 2.5 23 14.4V480c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V226.3c0-11.8 12.4-19.6 23-14.4l56.6 27.7c7.9 4 17.5.8 21.5-7.2L638.3 118c4-7.9.8-17.6-7.1-21.5z"], + "tty": [512, 512, [], "f1e4", "M5.37 103.822c138.532-138.532 362.936-138.326 501.262 0 6.078 6.078 7.074 15.496 2.583 22.681l-43.214 69.138a18.332 18.332 0 0 1-22.356 7.305l-86.422-34.569a18.335 18.335 0 0 1-11.434-18.846L351.741 90c-62.145-22.454-130.636-21.986-191.483 0l5.953 59.532a18.331 18.331 0 0 1-11.434 18.846l-86.423 34.568a18.334 18.334 0 0 1-22.356-7.305L2.787 126.502a18.333 18.333 0 0 1 2.583-22.68zM96 308v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H92c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zM96 500v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H140c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"], + "tv": [640, 512, [], "f26c", "M592 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h245.1v32h-160c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32-14.3 32-32s-14.3-32-32-32h-160v-32H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h512v288z"], + "umbrella": [576, 512, [], "f0e9", "M557.011 267.631c-51.432-45.217-107.572-43.698-158.567 30.731-5.298 7.861-14.906 7.165-19.736 0-2.483-3.624-32.218-60.808-90.708-60.808-45.766 0-70.542 31.378-90.709 60.808-4.829 7.165-14.436 7.861-19.734 0-50.904-74.285-106.613-76.406-158.567-30.731-10.21 8.264-20.912-1.109-18.696-9.481C32.146 134.573 158.516 64.612 288.001 64.612c128.793 0 256.546 69.961 287.706 193.538 2.206 8.322-8.426 17.793-18.696 9.481zM256 261.001V416c0 17.645-14.355 32-32 32s-32-14.355-32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 52.935 43.065 96 96 96s96-43.065 96-96V261.288c-21.836-10.806-45.425-9.737-64-.287zm64-211.007V32c0-17.673-14.327-32-32-32s-32 14.327-32 32v17.987a372.105 372.105 0 0 1 64 .007z"], + "umbrella-beach": [640, 512, [], "f5ca", "M115.38 136.9l102.11 37.18c35.19-81.54 86.21-144.29 139-173.7-95.88-4.89-188.78 36.96-248.53 111.8-6.69 8.4-2.66 21.05 7.42 24.72zm132.25 48.16l238.48 86.83c35.76-121.38 18.7-231.66-42.63-253.98-7.4-2.7-15.13-4-23.09-4-58.02.01-128.27 69.17-172.76 171.15zM521.48 60.5c6.22 16.3 10.83 34.6 13.2 55.19 5.74 49.89-1.42 108.23-18.95 166.98l102.62 37.36c10.09 3.67 21.31-3.43 21.57-14.17 2.32-95.69-41.91-187.44-118.44-245.36zM560 447.98H321.06L386 269.5l-60.14-21.9-72.9 200.37H16c-8.84 0-16 7.16-16 16.01v32.01C0 504.83 7.16 512 16 512h544c8.84 0 16-7.17 16-16.01v-32.01c0-8.84-7.16-16-16-16z"], + "underline": [448, 512, [], "f0cd", "M224.264 388.24c-91.669 0-156.603-51.165-156.603-151.392V64H39.37c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h137.39c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.813v172.848c0 53.699 28.314 79.444 76.317 79.444 46.966 0 75.796-25.434 75.796-79.965V64h-28.291c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h136.868c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.291v172.848c0 99.405-64.881 151.392-156.082 151.392zM16 448h416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16z"], + "undo": [512, 512, [], "f0e2", "M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z"], + "undo-alt": [512, 512, [], "f2ea", "M255.545 8c-66.269.119-126.438 26.233-170.86 68.685L48.971 40.971C33.851 25.851 8 36.559 8 57.941V192c0 13.255 10.745 24 24 24h134.059c21.382 0 32.09-25.851 16.971-40.971l-41.75-41.75c30.864-28.899 70.801-44.907 113.23-45.273 92.398-.798 170.283 73.977 169.484 169.442C423.236 348.009 349.816 424 256 424c-41.127 0-79.997-14.678-110.63-41.556-4.743-4.161-11.906-3.908-16.368.553L89.34 422.659c-4.872 4.872-4.631 12.815.482 17.433C133.798 479.813 192.074 504 256 504c136.966 0 247.999-111.033 248-247.998C504.001 119.193 392.354 7.755 255.545 8z"], + "universal-access": [512, 512, [], "f29a", "M256 48c114.953 0 208 93.029 208 208 0 114.953-93.029 208-208 208-114.953 0-208-93.029-208-208 0-114.953 93.029-208 208-208m0-40C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 56C149.961 64 64 149.961 64 256s85.961 192 192 192 192-85.961 192-192S362.039 64 256 64zm0 44c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36zm117.741 98.023c-28.712 6.779-55.511 12.748-82.14 15.807.851 101.023 12.306 123.052 25.037 155.621 3.617 9.26-.957 19.698-10.217 23.315-9.261 3.617-19.699-.957-23.316-10.217-8.705-22.308-17.086-40.636-22.261-78.549h-9.686c-5.167 37.851-13.534 56.208-22.262 78.549-3.615 9.255-14.05 13.836-23.315 10.217-9.26-3.617-13.834-14.056-10.217-23.315 12.713-32.541 24.185-54.541 25.037-155.621-26.629-3.058-53.428-9.027-82.141-15.807-8.6-2.031-13.926-10.648-11.895-19.249s10.647-13.926 19.249-11.895c96.686 22.829 124.283 22.783 220.775 0 8.599-2.03 17.218 3.294 19.249 11.895 2.029 8.601-3.297 17.219-11.897 19.249z"], + "university": [512, 512, [], "f19c", "M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z"], + "unlink": [512, 512, [], "f127", "M304.083 405.907c4.686 4.686 4.686 12.284 0 16.971l-44.674 44.674c-59.263 59.262-155.693 59.266-214.961 0-59.264-59.265-59.264-155.696 0-214.96l44.675-44.675c4.686-4.686 12.284-4.686 16.971 0l39.598 39.598c4.686 4.686 4.686 12.284 0 16.971l-44.675 44.674c-28.072 28.073-28.072 73.75 0 101.823 28.072 28.072 73.75 28.073 101.824 0l44.674-44.674c4.686-4.686 12.284-4.686 16.971 0l39.597 39.598zm-56.568-260.216c4.686 4.686 12.284 4.686 16.971 0l44.674-44.674c28.072-28.075 73.75-28.073 101.824 0 28.072 28.073 28.072 73.75 0 101.823l-44.675 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.598 39.598c4.686 4.686 12.284 4.686 16.971 0l44.675-44.675c59.265-59.265 59.265-155.695 0-214.96-59.266-59.264-155.695-59.264-214.961 0l-44.674 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.597 39.598zm234.828 359.28l22.627-22.627c9.373-9.373 9.373-24.569 0-33.941L63.598 7.029c-9.373-9.373-24.569-9.373-33.941 0L7.029 29.657c-9.373 9.373-9.373 24.569 0 33.941l441.373 441.373c9.373 9.372 24.569 9.372 33.941 0z"], + "unlock": [448, 512, [], "f09c", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z"], + "unlock-alt": [448, 512, [], "f13e", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zM264 408c0 22.1-17.9 40-40 40s-40-17.9-40-40v-48c0-22.1 17.9-40 40-40s40 17.9 40 40v48z"], + "upload": [512, 512, [], "f093", "M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"], + "user": [448, 512, [], "f007", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"], + "user-alt": [512, 512, [], "f406", "M256 288c79.5 0 144-64.5 144-144S335.5 0 256 0 112 64.5 112 144s64.5 144 144 144zm128 32h-55.1c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16H128C57.3 320 0 377.3 0 448v16c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-16c0-70.7-57.3-128-128-128z"], + "user-alt-slash": [640, 512, [], "f4fa", "M633.8 458.1L389.6 269.3C433.8 244.7 464 198.1 464 144 464 64.5 399.5 0 320 0c-67.1 0-123 46.1-139 108.2L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM198.4 320C124.2 320 64 380.2 64 454.4v9.6c0 26.5 21.5 48 48 48h382.2L245.8 320h-47.4z"], + "user-astronaut": [448, 512, [], "f4fb", "M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z"], + "user-check": [640, 512, [], "f4fc", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4zm323-128.4l-27.8-28.1c-4.6-4.7-12.1-4.7-16.8-.1l-104.8 104-45.5-45.8c-4.6-4.7-12.1-4.7-16.8-.1l-28.1 27.9c-4.7 4.6-4.7 12.1-.1 16.8l81.7 82.3c4.6 4.7 12.1 4.7 16.8.1l141.3-140.2c4.6-4.7 4.7-12.2.1-16.8z"], + "user-circle": [496, 512, [], "f2bd", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 96c48.6 0 88 39.4 88 88s-39.4 88-88 88-88-39.4-88-88 39.4-88 88-88zm0 344c-58.7 0-111.3-26.6-146.5-68.2 18.8-35.4 55.6-59.8 98.5-59.8 2.4 0 4.8.4 7.1 1.1 13 4.2 26.6 6.9 40.9 6.9 14.3 0 28-2.7 40.9-6.9 2.3-.7 4.7-1.1 7.1-1.1 42.9 0 79.7 24.4 98.5 59.8C359.3 421.4 306.7 448 248 448z"], + "user-clock": [640, 512, [], "f4fd", "M496 224c-79.6 0-144 64.4-144 144s64.4 144 144 144 144-64.4 144-144-64.4-144-144-144zm64 150.3c0 5.3-4.4 9.7-9.7 9.7h-60.6c-5.3 0-9.7-4.4-9.7-9.7v-76.6c0-5.3 4.4-9.7 9.7-9.7h12.6c5.3 0 9.7 4.4 9.7 9.7V352h38.3c5.3 0 9.7 4.4 9.7 9.7v12.6zM320 368c0-27.8 6.7-54.1 18.2-77.5-8-1.5-16.2-2.5-24.6-2.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h347.1c-45.3-31.9-75.1-84.5-75.1-144zm-96-112c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128z"], + "user-cog": [640, 512, [], "f4fe", "M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z"], + "user-edit": [640, 512, [], "f4ff", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h274.9c-2.4-6.8-3.4-14-2.6-21.3l6.8-60.9 1.2-11.1 7.9-7.9 77.3-77.3c-24.5-27.7-60-45.5-99.9-45.5zm45.3 145.3l-6.8 61c-1.1 10.2 7.5 18.8 17.6 17.6l60.9-6.8 137.9-137.9-71.7-71.7-137.9 137.8zM633 268.9L595.1 231c-9.3-9.3-24.5-9.3-33.8 0l-37.8 37.8-4.1 4.1 71.8 71.7 41.8-41.8c9.3-9.4 9.3-24.5 0-33.9z"], + "user-friends": [640, 512, [], "f500", "M192 256c61.9 0 112-50.1 112-112S253.9 32 192 32 80 82.1 80 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C51.6 288 0 339.6 0 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zM480 256c53 0 96-43 96-96s-43-96-96-96-96 43-96 96 43 96 96 96zm48 32h-3.8c-13.9 4.8-28.6 8-44.2 8s-30.3-3.2-44.2-8H432c-20.4 0-39.2 5.9-55.7 15.4 24.4 26.3 39.7 61.2 39.7 99.8v38.4c0 2.2-.5 4.3-.6 6.4H592c26.5 0 48-21.5 48-48 0-61.9-50.1-112-112-112z"], + "user-graduate": [448, 512, [], "f501", "M319.4 320.6L224 416l-95.4-95.4C57.1 323.7 0 382.2 0 454.4v9.6c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-9.6c0-72.2-57.1-130.7-128.6-133.8zM13.6 79.8l6.4 1.5v58.4c-7 4.2-12 11.5-12 20.3 0 8.4 4.6 15.4 11.1 19.7L3.5 242c-1.7 6.9 2.1 14 7.6 14h41.8c5.5 0 9.3-7.1 7.6-14l-15.6-62.3C51.4 175.4 56 168.4 56 160c0-8.8-5-16.1-12-20.3V87.1l66 15.9c-8.6 17.2-14 36.4-14 57 0 70.7 57.3 128 128 128s128-57.3 128-128c0-20.6-5.3-39.8-14-57l96.3-23.2c18.2-4.4 18.2-27.1 0-31.5l-190.4-46c-13-3.1-26.7-3.1-39.7 0L13.6 48.2c-18.1 4.4-18.1 27.2 0 31.6z"], + "user-lock": [640, 512, [], "f502", "M320 320c0-11.1 3.1-21.4 8.1-30.5-4.8-.5-9.5-1.5-14.5-1.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h280.9c-5.5-9.5-8.9-20.3-8.9-32V320zm-96-64c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm384 32h-32v-48c0-44.2-35.8-80-80-80s-80 35.8-80 80v48h-32c-17.7 0-32 14.3-32 32v160c0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32V320c0-17.7-14.3-32-32-32zm-80 0h-64v-48c0-17.6 14.4-32 32-32s32 14.4 32 32v48z"], + "user-md": [448, 512, [], "f0f0", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zM104 424c0 13.3 10.7 24 24 24s24-10.7 24-24-10.7-24-24-24-24 10.7-24 24zm216-135.4v49c36.5 7.4 64 39.8 64 78.4v41.7c0 7.6-5.4 14.2-12.9 15.7l-32.2 6.4c-4.3.9-8.5-1.9-9.4-6.3l-3.1-15.7c-.9-4.3 1.9-8.6 6.3-9.4l19.3-3.9V416c0-62.8-96-65.1-96 1.9v26.7l19.3 3.9c4.3.9 7.1 5.1 6.3 9.4l-3.1 15.7c-.9 4.3-5.1 7.1-9.4 6.3l-31.2-4.2c-7.9-1.1-13.8-7.8-13.8-15.9V416c0-38.6 27.5-70.9 64-78.4v-45.2c-2.2.7-4.4 1.1-6.6 1.9-18 6.3-37.3 9.8-57.4 9.8s-39.4-3.5-57.4-9.8c-7.4-2.6-14.9-4.2-22.6-5.2v81.6c23.1 6.9 40 28.1 40 53.4 0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.3 16.9-46.5 40-53.4v-80.4C48.5 301 0 355.8 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-72-56.8-130.3-128-133.8z"], + "user-minus": [640, 512, [], "f503", "M624 208H432c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"], + "user-ninja": [448, 512, [], "f504", "M325.4 289.2L224 390.6 122.6 289.2C54 295.3 0 352.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-70.2-54-127.1-122.6-133.2zM32 192c27.3 0 51.8-11.5 69.2-29.7 15.1 53.9 64 93.7 122.8 93.7 70.7 0 128-57.3 128-128S294.7 0 224 0c-50.4 0-93.6 29.4-114.5 71.8C92.1 47.8 64 32 32 32c0 33.4 17.1 62.8 43.1 80-26 17.2-43.1 46.6-43.1 80zm144-96h96c17.7 0 32 14.3 32 32H144c0-17.7 14.3-32 32-32z"], + "user-plus": [640, 512, [], "f234", "M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"], + "user-secret": [448, 512, [], "f21b", "M383.9 308.3l23.9-62.6c4-10.5-3.7-21.7-15-21.7h-58.5c11-18.9 17.8-40.6 17.8-64v-.3c39.2-7.8 64-19.1 64-31.7 0-13.3-27.3-25.1-70.1-33-9.2-32.8-27-65.8-40.6-82.8-9.5-11.9-25.9-15.6-39.5-8.8l-27.6 13.8c-9 4.5-19.6 4.5-28.6 0L182.1 3.4c-13.6-6.8-30-3.1-39.5 8.8-13.5 17-31.4 50-40.6 82.8-42.7 7.9-70 19.7-70 33 0 12.6 24.8 23.9 64 31.7v.3c0 23.4 6.8 45.1 17.8 64H56.3c-11.5 0-19.2 11.7-14.7 22.3l25.8 60.2C27.3 329.8 0 372.7 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-48.4-25.8-90.4-64.1-114.1zM176 480l-41.6-192 49.6 32 24 40-32 120zm96 0l-32-120 24-40 49.6-32L272 480zm41.7-298.5c-3.9 11.9-7 24.6-16.5 33.4-10.1 9.3-48 22.4-64-25-2.8-8.4-15.4-8.4-18.3 0-17 50.2-56 32.4-64 25-9.5-8.8-12.7-21.5-16.5-33.4-.8-2.5-6.3-5.7-6.3-5.8v-10.8c28.3 3.6 61 5.8 96 5.8s67.7-2.1 96-5.8v10.8c-.1.1-5.6 3.2-6.4 5.8z"], + "user-shield": [640, 512, [], "f505", "M622.3 271.1l-115.2-45c-4.1-1.6-12.6-3.7-22.2 0l-115.2 45c-10.7 4.2-17.7 14-17.7 24.9 0 111.6 68.7 188.8 132.9 213.9 9.6 3.7 18 1.6 22.2 0C558.4 489.9 640 420.5 640 296c0-10.9-7-20.7-17.7-24.9zM496 462.4V273.3l95.5 37.3c-5.6 87.1-60.9 135.4-95.5 151.8zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm96 40c0-2.5.8-4.8 1.1-7.2-2.5-.1-4.9-.8-7.5-.8h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c6.8 0 13.3-1.5 19.2-4-54-42.9-99.2-116.7-99.2-212z"], + "user-slash": [640, 512, [], "f506", "M633.8 458.1L362.3 248.3C412.1 230.7 448 183.8 448 128 448 57.3 390.7 0 320 0c-67.1 0-121.5 51.8-126.9 117.4L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM96 422.4V464c0 26.5 21.5 48 48 48h350.2L207.4 290.3C144.2 301.3 96 356 96 422.4z"], + "user-tag": [640, 512, [], "f507", "M630.6 364.9l-90.3-90.2c-12-12-28.3-18.7-45.3-18.7h-79.3c-17.7 0-32 14.3-32 32v79.2c0 17 6.7 33.2 18.7 45.2l90.3 90.2c12.5 12.5 32.8 12.5 45.3 0l92.5-92.5c12.6-12.5 12.6-32.7.1-45.2zm-182.8-21c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24c0 13.2-10.7 24-24 24zm-223.8-88c70.7 0 128-57.3 128-128C352 57.3 294.7 0 224 0S96 57.3 96 128c0 70.6 57.3 127.9 128 127.9zm127.8 111.2V294c-12.2-3.6-24.9-6.2-38.2-6.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 287.9 0 348.1 0 422.3v41.6c0 26.5 21.5 48 48 48h352c15.5 0 29.1-7.5 37.9-18.9l-58-58c-18.1-18.1-28.1-42.2-28.1-67.9z"], + "user-tie": [448, 512, [], "f508", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm95.8 32.6L272 480l-32-136 32-56h-96l32 56-32 136-47.8-191.4C56.9 292 0 350.3 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-72.1-56.9-130.4-128.2-133.8z"], + "user-times": [640, 512, [], "f235", "M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"], + "users": [640, 512, [], "f0c0", "M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"], + "users-cog": [640, 512, [], "f509", "M610.5 341.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 368.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm224 32c1.9 0 3.7-.5 5.6-.6 8.3-21.7 20.5-42.1 36.3-59.2 7.4-8 17.9-12.6 28.9-12.6 6.9 0 13.7 1.8 19.6 5.3l7.9 4.6c.8-.5 1.6-.9 2.4-1.4 7-14.6 11.2-30.8 11.2-48 0-61.9-50.1-112-112-112S208 82.1 208 144c0 61.9 50.1 112 112 112zm105.2 194.5c-2.3-1.2-4.6-2.6-6.8-3.9-8.2 4.8-15.3 9.8-27.5 9.8-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-10.7-34.5 24.9-49.7 25.8-50.3-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-3.8-2.2-7-5-9.8-8.1-3.3.2-6.5.6-9.8.6-24.6 0-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h255.4c-3.7-6-6.2-12.8-6.2-20.3v-9.2zM173.1 274.6C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"], + "utensil-spoon": [512, 512, [], "f2e5", "M480.1 31.9c-55-55.1-164.9-34.5-227.8 28.5-49.3 49.3-55.1 110-28.8 160.4L9 413.2c-11.6 10.5-12.1 28.5-1 39.5L59.3 504c11 11 29.1 10.5 39.5-1.1l192.4-214.4c50.4 26.3 111.1 20.5 160.4-28.8 63-62.9 83.6-172.8 28.5-227.8z"], + "utensils": [416, 512, [], "f2e7", "M207.9 15.2c.8 4.7 16.1 94.5 16.1 128.8 0 52.3-27.8 89.6-68.9 104.6L168 486.7c.7 13.7-10.2 25.3-24 25.3H80c-13.7 0-24.7-11.5-24-25.3l12.9-238.1C27.7 233.6 0 196.2 0 144 0 109.6 15.3 19.9 16.1 15.2 19.3-5.1 61.4-5.4 64 16.3v141.2c1.3 3.4 15.1 3.2 16 0 1.4-25.3 7.9-139.2 8-141.8 3.3-20.8 44.7-20.8 47.9 0 .2 2.7 6.6 116.5 8 141.8.9 3.2 14.8 3.4 16 0V16.3c2.6-21.6 44.8-21.4 48-1.1zm119.2 285.7l-15 185.1c-1.2 14 9.9 26 23.9 26h56c13.3 0 24-10.7 24-24V24c0-13.2-10.7-24-24-24-82.5 0-221.4 178.5-64.9 300.9z"], + "vector-square": [512, 512, [], "f5cb", "M512 128V32c0-17.67-14.33-32-32-32h-96c-17.67 0-32 14.33-32 32H160c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32v192c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32h192c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32V160c17.67 0 32-14.33 32-32zm-96-64h32v32h-32V64zM64 64h32v32H64V64zm32 384H64v-32h32v32zm352 0h-32v-32h32v32zm-32-96h-32c-17.67 0-32 14.33-32 32v32H160v-32c0-17.67-14.33-32-32-32H96V160h32c17.67 0 32-14.33 32-32V96h192v32c0 17.67 14.33 32 32 32h32v192z"], + "venus": [288, 512, [], "f221", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z"], + "venus-double": [512, 512, [], "f226", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80zm336 140.4V368h36c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-36v36c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-36h-36c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h36v-51.6c-21.2-4.8-40.6-14.3-57.2-27.3 14-16.7 25-36 32.1-57.1 14.5 14.8 34.7 24 57.1 24 44.1 0 80-35.9 80-80s-35.9-80-80-80c-22.3 0-42.6 9.2-57.1 24-7.1-21.1-18-40.4-32.1-57.1C303.4 43.6 334.3 32 368 32c79.5 0 144 64.5 144 144 0 68.5-47.9 125.9-112 140.4z"], + "venus-mars": [576, 512, [], "f228", "M564 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C422.5 72.1 396.2 64 368 64c-33.7 0-64.6 11.6-89.2 30.9 14 16.7 25 36 32.1 57.1 14.5-14.8 34.7-24 57.1-24 44.1 0 80 35.9 80 80s-35.9 80-80 80c-22.3 0-42.6-9.2-57.1-24-7.1 21.1-18 40.4-32.1 57.1 24.5 19.4 55.5 30.9 89.2 30.9 79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 64C64.5 64 0 128.5 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.6 112-71.9 112-140.4 0-79.5-64.5-144-144-144zm0 224c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"], + "vial": [480, 512, [], "f492", "M477.7 186.1L309.5 18.3c-3.1-3.1-8.2-3.1-11.3 0l-34 33.9c-3.1 3.1-3.1 8.2 0 11.3l11.2 11.1L33 316.5c-38.8 38.7-45.1 102-9.4 143.5 20.6 24 49.5 36 78.4 35.9 26.4 0 52.8-10 72.9-30.1l246.3-245.7 11.2 11.1c3.1 3.1 8.2 3.1 11.3 0l34-33.9c3.1-3 3.1-8.1 0-11.2zM318 256H161l148-147.7 78.5 78.3L318 256z"], + "vials": [640, 512, [], "f493", "M72 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H72c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64zm480 384H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM360 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64z"], + "video": [576, 512, [], "f03d", "M336.2 64H47.8C21.4 64 0 85.4 0 111.8v288.4C0 426.6 21.4 448 47.8 448h288.4c26.4 0 47.8-21.4 47.8-47.8V111.8c0-26.4-21.4-47.8-47.8-47.8zm189.4 37.7L416 177.3v157.4l109.6 75.5c21.2 14.6 50.4-.3 50.4-25.8V127.5c0-25.4-29.1-40.4-50.4-25.8z"], + "video-slash": [640, 512, [], "f4e2", "M633.8 458.1l-55-42.5c15.4-1.4 29.2-13.7 29.2-31.1v-257c0-25.5-29.1-40.4-50.4-25.8L448 177.3v137.2l-32-24.7v-178c0-26.4-21.4-47.8-47.8-47.8H123.9L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4L42.7 82 416 370.6l178.5 138c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.5-6.9 4.2-17-2.8-22.4zM32 400.2c0 26.4 21.4 47.8 47.8 47.8h288.4c11.2 0 21.4-4 29.6-10.5L32 154.7v245.5z"], + "volleyball-ball": [495, 512, [], "f45f", "M223.3 243.4c-.9-37-8.6-72.8-22.7-105.7-90.8 42.4-157.5 122.4-180.3 216.8 13.4 30.8 32.9 58.3 56.9 81.1 22.7-79.2 74.2-147.8 146.1-192.2zM186.4 109c-15-26.4-34.5-50.1-57.4-70.7C38 88.1-15.8 191.2 4 300.5c33.4-83.1 98.4-152 182.4-191.5zM374 274.1c8.6-99.8-27.3-197.5-97.5-264.4-14.7-1.7-51.6-5.5-98.9 8.5 57.3 59.3 91 138.2 93.5 222.7 32.5 17.7 67.3 29 102.9 33.2zm-124.7 9.5c-31.6 19.3-58.7 43.9-80.2 72.6 82 57.3 184.5 75.1 277.5 47.8 19.7-26.4 34.2-56.8 42.2-89.9-26.6 6.6-53.7 10.4-80.9 10.4-54.6-.1-108.9-14.1-158.6-40.9zM151 383.3c-15.2 26-25.7 54.4-32.1 84.2 37.6 23 81.7 36.5 129.1 36.5 61 0 116.7-22.1 159.9-58.6C295 461.5 204.6 420.6 151 383.3zM331.3 22.7c55.3 70.4 82.5 161.2 74.6 253.6 30.3.2 60.5-4.8 89.7-14.2 0-2 .3-4 .3-6 0-107.8-68.7-199.1-164.6-233.4z"], + "volume-down": [384, 512, [], "f027", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zM384 256c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z"], + "volume-off": [256, 512, [], "f026", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971z"], + "volume-up": [576, 512, [], "f028", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zm182.056-77.876C422.982.92 403.283 5.668 394.061 20.745c-9.221 15.077-4.473 34.774 10.604 43.995C468.967 104.063 512 174.983 512 256c0 73.431-36.077 142.292-96.507 184.206-14.522 10.072-18.129 30.01-8.057 44.532 10.076 14.528 30.016 18.126 44.531 8.057C529.633 438.927 576 350.406 576 256c0-103.244-54.579-194.877-137.944-245.859zM480 256c0-68.547-36.15-129.777-91.957-163.901-15.076-9.22-34.774-4.471-43.994 10.607-9.22 15.078-4.471 34.774 10.607 43.994C393.067 170.188 416 211.048 416 256c0 41.964-20.62 81.319-55.158 105.276-14.521 10.073-18.128 30.01-8.056 44.532 6.216 8.96 16.185 13.765 26.322 13.765a31.862 31.862 0 0 0 18.21-5.709C449.091 377.953 480 318.938 480 256zm-96 0c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z"], + "walking": [320, 512, [], "f554", "M208 96c26.5 0 48-21.5 48-48S234.5 0 208 0s-48 21.5-48 48 21.5 48 48 48zm94.5 149.1l-23.3-11.8-9.7-29.4c-14.7-44.6-55.7-75.8-102.2-75.9-36-.1-55.9 10.1-93.3 25.2-21.6 8.7-39.3 25.2-49.7 46.2L17.6 213c-7.8 15.8-1.5 35 14.2 42.9 15.6 7.9 34.6 1.5 42.5-14.3L81 228c3.5-7 9.3-12.5 16.5-15.4l26.8-10.8-15.2 60.7c-5.2 20.8.4 42.9 14.9 58.8l59.9 65.4c7.2 7.9 12.3 17.4 14.9 27.7l18.3 73.3c4.3 17.1 21.7 27.6 38.8 23.3 17.1-4.3 27.6-21.7 23.3-38.8l-22.2-89c-2.6-10.3-7.7-19.9-14.9-27.7l-45.5-49.7 17.2-68.7 5.5 16.5c5.3 16.1 16.7 29.4 31.7 37l23.3 11.8c15.6 7.9 34.6 1.5 42.5-14.3 7.7-15.7 1.4-35.1-14.3-43zM73.6 385.8c-3.2 8.1-8 15.4-14.2 21.5l-50 50.1c-12.5 12.5-12.5 32.8 0 45.3s32.7 12.5 45.2 0l59.4-59.4c6.1-6.1 10.9-13.4 14.2-21.5l13.5-33.8c-55.3-60.3-38.7-41.8-47.4-53.7l-20.7 51.5z"], + "wallet": [512, 512, [], "f555", "M461.2 128H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h384c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h397.2c28.02 0 50.8-21.53 50.8-48V176c0-26.47-22.78-48-50.8-48zM416 336c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z"], + "warehouse": [640, 512, [], "f494", "M504 352H136.4c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0 96H136.1c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0-192H136.6c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm106.5-139L338.4 3.7a48.15 48.15 0 0 0-36.9 0L29.5 117C11.7 124.5 0 141.9 0 161.3V504c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V256c0-17.6 14.6-32 32.6-32h382.8c18 0 32.6 14.4 32.6 32v248c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V161.3c0-19.4-11.7-36.8-29.5-44.3z"], + "weight": [512, 512, [], "f496", "M448 64h-25.98C438.44 92.28 448 125.01 448 160c0 105.87-86.13 192-192 192S64 265.87 64 160c0-34.99 9.56-67.72 25.98-96H64C28.71 64 0 92.71 0 128v320c0 35.29 28.71 64 64 64h384c35.29 0 64-28.71 64-64V128c0-35.29-28.71-64-64-64zM256 320c88.37 0 160-71.63 160-160S344.37 0 256 0 96 71.63 96 160s71.63 160 160 160zm-.3-151.94l33.58-78.36c3.5-8.17 12.94-11.92 21.03-8.41 8.12 3.48 11.88 12.89 8.41 21l-33.67 78.55C291.73 188 296 197.45 296 208c0 22.09-17.91 40-40 40s-40-17.91-40-40c0-21.98 17.76-39.77 39.7-39.94z"], + "weight-hanging": [512, 512, [], "f5cd", "M510.28 445.86l-73.03-292.13c-3.8-15.19-16.44-25.72-30.87-25.72h-60.25c3.57-10.05 5.88-20.72 5.88-32 0-53.02-42.98-96-96-96s-96 42.98-96 96c0 11.28 2.3 21.95 5.88 32h-60.25c-14.43 0-27.08 10.54-30.87 25.72L1.72 445.86C-6.61 479.17 16.38 512 48.03 512h415.95c31.64 0 54.63-32.83 46.3-66.14zM256 128c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z"], + "wheelchair": [512, 512, [], "f193", "M496.101 385.669l14.227 28.663c3.929 7.915.697 17.516-7.218 21.445l-65.465 32.886c-16.049 7.967-35.556 1.194-43.189-15.055L331.679 320H192c-15.925 0-29.426-11.71-31.679-27.475C126.433 55.308 128.38 70.044 128 64c0-36.358 30.318-65.635 67.052-63.929 33.271 1.545 60.048 28.905 60.925 62.201.868 32.933-23.152 60.423-54.608 65.039l4.67 32.69H336c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H215.182l4.572 32H352a32 32 0 0 1 28.962 18.392L438.477 396.8l36.178-18.349c7.915-3.929 17.517-.697 21.446 7.218zM311.358 352h-24.506c-7.788 54.204-54.528 96-110.852 96-61.757 0-112-50.243-112-112 0-41.505 22.694-77.809 56.324-97.156-3.712-25.965-6.844-47.86-9.488-66.333C45.956 198.464 0 261.963 0 336c0 97.047 78.953 176 176 176 71.87 0 133.806-43.308 161.11-105.192L311.358 352z"], + "wifi": [640, 512, [], "f1eb", "M384 416c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm136.659-124.443c6.465-6.465 6.245-17.065-.564-23.167-113.793-101.985-286.526-101.869-400.19 0-6.809 6.102-7.029 16.702-.564 23.167l34.006 34.006c5.927 5.927 15.464 6.32 21.769.796 82.88-72.609 207.074-72.447 289.768 0 6.305 5.524 15.842 5.132 21.769-.796l34.006-34.006zm112.11-113.718c6.385-6.385 6.254-16.816-.35-22.973-175.768-163.86-449.134-163.8-624.837 0-6.604 6.157-6.735 16.589-.35 22.973l33.966 33.966c6.095 6.095 15.891 6.231 22.224.383 144.763-133.668 368.356-133.702 513.156 0 6.333 5.848 16.129 5.712 22.224-.383l33.967-33.966z"], + "window-close": [512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-83.6 290.5c4.8 4.8 4.8 12.6 0 17.4l-40.5 40.5c-4.8 4.8-12.6 4.8-17.4 0L256 313.3l-66.5 67.1c-4.8 4.8-12.6 4.8-17.4 0l-40.5-40.5c-4.8-4.8-4.8-12.6 0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6 0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1 66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8 4.8 12.6 0 17.4L313.3 256l67.1 66.5z"], + "window-maximize": [512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16 160H64v-84c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12v84z"], + "window-minimize": [512, 512, [], "f2d1", "M464 352H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48z"], + "window-restore": [512, 512, [], "f2d2", "M512 48v288c0 26.5-21.5 48-48 48h-48V176c0-44.1-35.9-80-80-80H128V48c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zM384 176v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zm-68 28c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v52h252v-52z"], + "wine-glass": [288, 512, [], "f4e3", "M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40z"], + "wine-glass-alt": [288, 512, [], "f5ce", "M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM61.75 48h164.5l7.17 80H54.58l7.17-80z"], + "won-sign": [576, 512, [], "f159", "M564 192c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-48.028l18.572-80.61c1.732-7.518-3.978-14.694-11.693-14.694h-46.107a11.998 11.998 0 0 0-11.736 9.5L450.73 128H340.839l-19.725-85.987a12 12 0 0 0-11.696-9.317H265.43a12 12 0 0 0-11.687 9.277L233.696 128H124.975L107.5 42.299a12 12 0 0 0-11.758-9.602H53.628c-7.686 0-13.39 7.124-11.709 14.624L60 128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h62.342l7.171 32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h83.856l40.927 182.624A12 12 0 0 0 148.492 480h56.767c5.583 0 10.428-3.85 11.689-9.288L259.335 288h55.086l42.386 182.712A12 12 0 0 0 368.496 480h56.826a12 12 0 0 0 11.694-9.306L479.108 288H564c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-70.146l7.373-32H564zm-425.976 0h80.757l-7.457 32h-66.776l-6.524-32zm45.796 150.029c-6.194 25.831-6.758 47.25-7.321 47.25h-1.126s-1.689-22.05-6.758-47.25L157.599 288h38.812l-12.591 54.029zM274.182 224l1.996-8.602c1.856-7.962 3.457-15.968 4.803-23.398h11.794c1.347 7.43 2.947 15.436 4.803 23.398l1.996 8.602h-25.392zm130.959 118.029c-5.068 25.2-6.758 47.25-6.758 47.25h-1.126c-.563 0-1.126-21.42-7.321-47.25L377.542 288h39.107l-11.508 54.029zM430.281 224h-67.42l-7.34-32h81.577l-6.817 32z"], + "wrench": [512, 512, [], "f0ad", "M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"], + "x-ray": [640, 512, [], "f497", "M240 384c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm160 32c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zM624 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zm0 448h-48V96H64v352H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM480 248c0 4.4-3.6 8-8 8H336v32h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48v-16h-64v16c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48h64v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-32H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h136v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-24c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v24h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h136c4.4 0 8 3.6 8 8v16z"], + "yen-sign": [384, 512, [], "f157", "M351.208 32h-65.277a12 12 0 0 0-10.778 6.724l-55.39 113.163c-14.513 34.704-27.133 71.932-27.133 71.932h-1.262s-12.62-37.228-27.133-71.932l-55.39-113.163A11.997 11.997 0 0 0 98.068 32H32.792c-9.057 0-14.85 9.65-10.59 17.643L102.322 200H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h88.162L152 293.228V320H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h108v92c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-92h108c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12H232v-26.772L251.838 256H340c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12h-58.322l80.12-150.357C366.058 41.65 360.266 32 351.208 32z"] +}; + +bunker(function () { + define('fas', icons); +}); + +}()); +(function () { +'use strict'; + +var noop = function noop() {}; + +var _WINDOW = {}; +var _DOCUMENT = {}; +var _MUTATION_OBSERVER$1 = null; +var _PERFORMANCE = { mark: noop, measure: noop }; + +try { + if (typeof window !== 'undefined') _WINDOW = window; + if (typeof document !== 'undefined') _DOCUMENT = document; + if (typeof MutationObserver !== 'undefined') _MUTATION_OBSERVER$1 = MutationObserver; + if (typeof performance !== 'undefined') _PERFORMANCE = performance; +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; +var DOCUMENT = _DOCUMENT; +var MUTATION_OBSERVER = _MUTATION_OBSERVER$1; +var PERFORMANCE = _PERFORMANCE; +var IS_BROWSER = !!WINDOW.document; +var IS_DOM = !!DOCUMENT.documentElement && !!DOCUMENT.head && typeof DOCUMENT.addEventListener === 'function' && typeof DOCUMENT.createElement === 'function'; +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; +var UNITS_IN_GRID = 16; +var DEFAULT_FAMILY_PREFIX = 'fa'; +var DEFAULT_REPLACEMENT_CLASS = 'svg-inline--fa'; +var DATA_FA_I2SVG = 'data-fa-i2svg'; +var DATA_FA_PSEUDO_ELEMENT = 'data-fa-pseudo-element'; +var DATA_PREFIX = 'data-prefix'; +var DATA_ICON = 'data-icon'; +var HTML_CLASS_I2SVG_BASE_CLASS = 'fontawesome-i2svg'; +var TAGNAMES_TO_SKIP_FOR_PSEUDOELEMENTS = ['HTML', 'HEAD', 'STYLE', 'SCRIPT']; +var PRODUCTION = function () { + try { + return undefined === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + +var ATTRIBUTES_WATCHED_FOR_MUTATION = ['class', 'data-prefix', 'data-icon', 'data-fa-transform', 'data-fa-mask']; + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +var classCallCheck = function (instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function"); + } +}; + +var createClass = function () { + function defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } + } + + return function (Constructor, protoProps, staticProps) { + if (protoProps) defineProperties(Constructor.prototype, protoProps); + if (staticProps) defineProperties(Constructor, staticProps); + return Constructor; + }; +}(); + + + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + + + +var slicedToArray = function () { + function sliceIterator(arr, i) { + var _arr = []; + var _n = true; + var _d = false; + var _e = undefined; + + try { + for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { + _arr.push(_s.value); + + if (i && _arr.length === i) break; + } + } catch (err) { + _d = true; + _e = err; + } finally { + try { + if (!_n && _i["return"]) _i["return"](); + } finally { + if (_d) throw _e; + } + } + + return _arr; + } + + return function (arr, i) { + if (Array.isArray(arr)) { + return arr; + } else if (Symbol.iterator in Object(arr)) { + return sliceIterator(arr, i); + } else { + throw new TypeError("Invalid attempt to destructure non-iterable instance"); + } + }; +}(); + +var toConsumableArray = function (arr) { + if (Array.isArray(arr)) { + for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) arr2[i] = arr[i]; + + return arr2; + } else { + return Array.from(arr); + } +}; + +var initial = WINDOW.FontAwesomeConfig || {}; + +function getAttrConfig(attr) { + var element = DOCUMENT.querySelector('script[' + attr + ']'); + + if (element) { + return element.getAttribute(attr); + } +} + +function coerce(val) { + // Getting an empty string will occur if the attribute is set on the HTML tag but without a value + // We'll assume that this is an indication that it should be toggled to true + // For example + if (val === '') return true; + if (val === 'false') return false; + if (val === 'true') return true; + return val; +} + +if (DOCUMENT && typeof DOCUMENT.querySelector === 'function') { + var attrs = [['data-family-prefix', 'familyPrefix'], ['data-replacement-class', 'replacementClass'], ['data-auto-replace-svg', 'autoReplaceSvg'], ['data-auto-add-css', 'autoAddCss'], ['data-auto-a11y', 'autoA11y'], ['data-search-pseudo-elements', 'searchPseudoElements'], ['data-observe-mutations', 'observeMutations'], ['data-keep-original-source', 'keepOriginalSource'], ['data-measure-performance', 'measurePerformance'], ['data-show-missing-icons', 'showMissingIcons']]; + + attrs.forEach(function (_ref) { + var _ref2 = slicedToArray(_ref, 2), + attr = _ref2[0], + key = _ref2[1]; + + var val = coerce(getAttrConfig(attr)); + + if (val !== undefined && val !== null) { + initial[key] = val; + } + }); +} + +var _default = _extends({ + familyPrefix: DEFAULT_FAMILY_PREFIX, + replacementClass: DEFAULT_REPLACEMENT_CLASS, + autoReplaceSvg: true, + autoAddCss: true, + autoA11y: true, + searchPseudoElements: false, + observeMutations: true, + keepOriginalSource: true, + measurePerformance: false, + showMissingIcons: true +}, initial); + +if (!_default.autoReplaceSvg) _default.observeMutations = false; + +var config = _extends({}, _default); + +WINDOW.FontAwesomeConfig = config; + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var functions = []; +var listener = function listener() { + DOCUMENT.removeEventListener('DOMContentLoaded', listener); + loaded = 1; + functions.map(function (fn) { + return fn(); + }); +}; + +var loaded = false; + +if (IS_DOM) { + loaded = (DOCUMENT.documentElement.doScroll ? /^loaded|^c/ : /^loaded|^i|^c/).test(DOCUMENT.readyState); + + if (!loaded) DOCUMENT.addEventListener('DOMContentLoaded', listener); +} + +var domready = function (fn) { + if (!IS_DOM) return; + loaded ? setTimeout(fn, 0) : functions.push(fn); +}; + +var d = UNITS_IN_GRID; + +var meaninglessTransform = { + size: 16, + x: 0, + y: 0, + rotate: 0, + flipX: false, + flipY: false +}; + +function isReserved(name) { + return ~RESERVED_CLASSES.indexOf(name); +} + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +function insertCss(css) { + if (!css || !IS_DOM) { + return; + } + + var style = DOCUMENT.createElement('style'); + style.setAttribute('type', 'text/css'); + style.innerHTML = css; + + var headChildren = DOCUMENT.head.childNodes; + var beforeChild = null; + + for (var i = headChildren.length - 1; i > -1; i--) { + var child = headChildren[i]; + var tagName = (child.tagName || '').toUpperCase(); + if (['STYLE', 'LINK'].indexOf(tagName) > -1) { + beforeChild = child; + } + } + + DOCUMENT.head.insertBefore(style, beforeChild); + + return css; +} + +var _uniqueId = 0; + +function nextUniqueId() { + _uniqueId++; + + return _uniqueId; +} + +function toArray(obj) { + var array = []; + + for (var i = (obj || []).length >>> 0; i--;) { + array[i] = obj[i]; + } + + return array; +} + +function classArray(node) { + if (node.classList) { + return toArray(node.classList); + } else { + return (node.getAttribute('class') || '').split(' ').filter(function (i) { + return i; + }); + } +} + +function getIconName(familyPrefix, cls) { + var parts = cls.split('-'); + var prefix = parts[0]; + var iconName = parts.slice(1).join('-'); + + if (prefix === familyPrefix && iconName !== '' && !isReserved(iconName)) { + return iconName; + } else { + return null; + } +} + +function htmlEscape(str) { + return ('' + str).replace(/&/g, '&').replace(/"/g, '"').replace(/'/g, ''').replace(//g, '>'); +} + +function joinAttributes(attributes) { + return Object.keys(attributes || {}).reduce(function (acc, attributeName) { + return acc + (attributeName + '="' + htmlEscape(attributes[attributeName]) + '" '); + }, '').trim(); +} + +function joinStyles(styles) { + return Object.keys(styles || {}).reduce(function (acc, styleName) { + return acc + (styleName + ': ' + styles[styleName] + ';'); + }, ''); +} + +function transformIsMeaningful(transform) { + return transform.size !== meaninglessTransform.size || transform.x !== meaninglessTransform.x || transform.y !== meaninglessTransform.y || transform.rotate !== meaninglessTransform.rotate || transform.flipX || transform.flipY; +} + +function transformForSvg(_ref) { + var transform = _ref.transform, + containerWidth = _ref.containerWidth, + iconWidth = _ref.iconWidth; + + var outer = { + transform: 'translate(' + containerWidth / 2 + ' 256)' + }; + var innerTranslate = 'translate(' + transform.x * 32 + ', ' + transform.y * 32 + ') '; + var innerScale = 'scale(' + transform.size / 16 * (transform.flipX ? -1 : 1) + ', ' + transform.size / 16 * (transform.flipY ? -1 : 1) + ') '; + var innerRotate = 'rotate(' + transform.rotate + ' 0 0)'; + var inner = { + transform: innerTranslate + ' ' + innerScale + ' ' + innerRotate + }; + var path = { + transform: 'translate(' + iconWidth / 2 * -1 + ' -256)' + }; + return { + outer: outer, + inner: inner, + path: path + }; +} + +function transformForCss(_ref2) { + var transform = _ref2.transform, + _ref2$width = _ref2.width, + width = _ref2$width === undefined ? UNITS_IN_GRID : _ref2$width, + _ref2$height = _ref2.height, + height = _ref2$height === undefined ? UNITS_IN_GRID : _ref2$height, + _ref2$startCentered = _ref2.startCentered, + startCentered = _ref2$startCentered === undefined ? false : _ref2$startCentered; + + var val = ''; + + if (startCentered && IS_IE) { + val += 'translate(' + (transform.x / d - width / 2) + 'em, ' + (transform.y / d - height / 2) + 'em) '; + } else if (startCentered) { + val += 'translate(calc(-50% + ' + transform.x / d + 'em), calc(-50% + ' + transform.y / d + 'em)) '; + } else { + val += 'translate(' + transform.x / d + 'em, ' + transform.y / d + 'em) '; + } + + val += 'scale(' + transform.size / d * (transform.flipX ? -1 : 1) + ', ' + transform.size / d * (transform.flipY ? -1 : 1) + ') '; + val += 'rotate(' + transform.rotate + 'deg) '; + + return val; +} + +var ALL_SPACE = { + x: 0, + y: 0, + width: '100%', + height: '100%' +}; + +var makeIconMasking = function (_ref) { + var children = _ref.children, + attributes = _ref.attributes, + main = _ref.main, + mask = _ref.mask, + transform = _ref.transform; + var mainWidth = main.width, + mainPath = main.icon; + var maskWidth = mask.width, + maskPath = mask.icon; + + + var trans = transformForSvg({ transform: transform, containerWidth: maskWidth, iconWidth: mainWidth }); + + var maskRect = { + tag: 'rect', + attributes: _extends({}, ALL_SPACE, { + fill: 'white' + }) + }; + var maskInnerGroup = { + tag: 'g', + attributes: _extends({}, trans.inner), + children: [{ tag: 'path', attributes: _extends({}, mainPath.attributes, trans.path, { fill: 'black' }) }] + }; + var maskOuterGroup = { + tag: 'g', + attributes: _extends({}, trans.outer), + children: [maskInnerGroup] + }; + var maskId = 'mask-' + nextUniqueId(); + var clipId = 'clip-' + nextUniqueId(); + var maskTag = { + tag: 'mask', + attributes: _extends({}, ALL_SPACE, { + id: maskId, + maskUnits: 'userSpaceOnUse', + maskContentUnits: 'userSpaceOnUse' + }), + children: [maskRect, maskOuterGroup] + }; + var defs = { + tag: 'defs', + children: [{ tag: 'clipPath', attributes: { id: clipId }, children: [maskPath] }, maskTag] + }; + + children.push(defs, { tag: 'rect', attributes: _extends({ fill: 'currentColor', 'clip-path': 'url(#' + clipId + ')', mask: 'url(#' + maskId + ')' }, ALL_SPACE) }); + + return { + children: children, + attributes: attributes + }; +}; + +var makeIconStandard = function (_ref) { + var children = _ref.children, + attributes = _ref.attributes, + main = _ref.main, + transform = _ref.transform, + styles = _ref.styles; + + var styleString = joinStyles(styles); + + if (styleString.length > 0) { + attributes['style'] = styleString; + } + + if (transformIsMeaningful(transform)) { + var trans = transformForSvg({ transform: transform, containerWidth: main.width, iconWidth: main.width }); + children.push({ + tag: 'g', + attributes: _extends({}, trans.outer), + children: [{ + tag: 'g', + attributes: _extends({}, trans.inner), + children: [{ + tag: main.icon.tag, + children: main.icon.children, + attributes: _extends({}, main.icon.attributes, trans.path) + }] + }] + }); + } else { + children.push(main.icon); + } + + return { + children: children, + attributes: attributes + }; +}; + +var asIcon = function (_ref) { + var children = _ref.children, + main = _ref.main, + mask = _ref.mask, + attributes = _ref.attributes, + styles = _ref.styles, + transform = _ref.transform; + + if (transformIsMeaningful(transform) && main.found && !mask.found) { + var width = main.width, + height = main.height; + + var offset = { + x: width / height / 2, + y: 0.5 + }; + attributes['style'] = joinStyles(_extends({}, styles, { + 'transform-origin': offset.x + transform.x / 16 + 'em ' + (offset.y + transform.y / 16) + 'em' + })); + } + + return [{ + tag: 'svg', + attributes: attributes, + children: children + }]; +}; + +var asSymbol = function (_ref) { + var prefix = _ref.prefix, + iconName = _ref.iconName, + children = _ref.children, + attributes = _ref.attributes, + symbol = _ref.symbol; + + var id = symbol === true ? prefix + '-' + config.familyPrefix + '-' + iconName : symbol; + + return [{ + tag: 'svg', + attributes: { + style: 'display: none;' + }, + children: [{ + tag: 'symbol', + attributes: _extends({}, attributes, { id: id }), + children: children + }] + }]; +}; + +function makeInlineSvgAbstract(params) { + var _params$icons = params.icons, + main = _params$icons.main, + mask = _params$icons.mask, + prefix = params.prefix, + iconName = params.iconName, + transform = params.transform, + symbol = params.symbol, + title = params.title, + extra = params.extra, + _params$watchable = params.watchable, + watchable = _params$watchable === undefined ? false : _params$watchable; + + var _ref = mask.found ? mask : main, + width = _ref.width, + height = _ref.height; + + var widthClass = 'fa-w-' + Math.ceil(width / height * 16); + var attrClass = [config.replacementClass, iconName ? config.familyPrefix + '-' + iconName : '', widthClass].filter(function (c) { + return extra.classes.indexOf(c) === -1; + }).concat(extra.classes).join(' '); + + var content = { + children: [], + attributes: _extends({}, extra.attributes, { + 'data-prefix': prefix, + 'data-icon': iconName, + 'class': attrClass, + 'role': 'img', + 'xmlns': 'http://www.w3.org/2000/svg', + 'viewBox': '0 0 ' + width + ' ' + height + }) + }; + + if (watchable) { + content.attributes[DATA_FA_I2SVG] = ''; + } + + if (title) content.children.push({ tag: 'title', attributes: { id: content.attributes['aria-labelledby'] || 'title-' + nextUniqueId() }, children: [title] }); + + var args = _extends({}, content, { + prefix: prefix, + iconName: iconName, + main: main, + mask: mask, + transform: transform, + symbol: symbol, + styles: extra.styles + }); + + var _ref2 = mask.found && main.found ? makeIconMasking(args) : makeIconStandard(args), + children = _ref2.children, + attributes = _ref2.attributes; + + args.children = children; + args.attributes = attributes; + + if (symbol) { + return asSymbol(args); + } else { + return asIcon(args); + } +} + +function makeLayersTextAbstract(params) { + var content = params.content, + width = params.width, + height = params.height, + transform = params.transform, + title = params.title, + extra = params.extra, + _params$watchable2 = params.watchable, + watchable = _params$watchable2 === undefined ? false : _params$watchable2; + + + var attributes = _extends({}, extra.attributes, title ? { 'title': title } : {}, { + 'class': extra.classes.join(' ') + }); + + if (watchable) { + attributes[DATA_FA_I2SVG] = ''; + } + + var styles = _extends({}, extra.styles); + + if (transformIsMeaningful(transform)) { + styles['transform'] = transformForCss({ transform: transform, startCentered: true, width: width, height: height }); + styles['-webkit-transform'] = styles['transform']; + } + + var styleString = joinStyles(styles); + + if (styleString.length > 0) { + attributes['style'] = styleString; + } + + var val = []; + + val.push({ + tag: 'span', + attributes: attributes, + children: [content] + }); + + if (title) { + val.push({ tag: 'span', attributes: { class: 'sr-only' }, children: [title] }); + } + + return val; +} + +function makeLayersCounterAbstract(params) { + var content = params.content, + title = params.title, + extra = params.extra; + + + var attributes = _extends({}, extra.attributes, title ? { 'title': title } : {}, { + 'class': extra.classes.join(' ') + }); + + var styleString = joinStyles(extra.styles); + + if (styleString.length > 0) { + attributes['style'] = styleString; + } + + var val = []; + + val.push({ + tag: 'span', + attributes: attributes, + children: [content] + }); + + if (title) { + val.push({ tag: 'span', attributes: { class: 'sr-only' }, children: [title] }); + } + + return val; +} + +var noop$2 = function noop() {}; +var p = config.measurePerformance && PERFORMANCE && PERFORMANCE.mark && PERFORMANCE.measure ? PERFORMANCE : { mark: noop$2, measure: noop$2 }; +var preamble = 'FA "5.1.1"'; + +var begin = function begin(name) { + p.mark(preamble + ' ' + name + ' begins'); + return function () { + return end(name); + }; +}; + +var end = function end(name) { + p.mark(preamble + ' ' + name + ' ends'); + p.measure(preamble + ' ' + name, preamble + ' ' + name + ' begins', preamble + ' ' + name + ' ends'); +}; + +var perf = { begin: begin, end: end }; + +'use strict'; + +/** + * Internal helper to bind a function known to have 4 arguments + * to a given context. + */ +var bindInternal4 = function bindInternal4 (func, thisContext) { + return function (a, b, c, d) { + return func.call(thisContext, a, b, c, d); + }; +}; + +'use strict'; + + + +/** + * # Reduce + * + * A fast object `.reduce()` implementation. + * + * @param {Object} subject The object to reduce over. + * @param {Function} fn The reducer function. + * @param {mixed} initialValue The initial value for the reducer, defaults to subject[0]. + * @param {Object} thisContext The context for the reducer. + * @return {mixed} The final result. + */ +var reduce = function fastReduceObject (subject, fn, initialValue, thisContext) { + var keys = Object.keys(subject), + length = keys.length, + iterator = thisContext !== undefined ? bindInternal4(fn, thisContext) : fn, + i, key, result; + + if (initialValue === undefined) { + i = 1; + result = subject[keys[0]]; + } + else { + i = 0; + result = initialValue; + } + + for (; i < length; i++) { + key = keys[i]; + result = iterator(result, subject[key], key, subject); + } + + return result; +}; + +var styles$2 = namespace.styles; +var shims = namespace.shims; + + +var _byUnicode = {}; +var _byLigature = {}; +var _byOldName = {}; + +var build = function build() { + var lookup = function lookup(reducer) { + return reduce(styles$2, function (o, style, prefix) { + o[prefix] = reduce(style, reducer, {}); + return o; + }, {}); + }; + + _byUnicode = lookup(function (acc, icon, iconName) { + acc[icon[3]] = iconName; + + return acc; + }); + + _byLigature = lookup(function (acc, icon, iconName) { + var ligatures = icon[2]; + + acc[iconName] = iconName; + + ligatures.forEach(function (ligature) { + acc[ligature] = iconName; + }); + + return acc; + }); + + var hasRegular = 'far' in styles$2; + + _byOldName = reduce(shims, function (acc, shim) { + var oldName = shim[0]; + var prefix = shim[1]; + var iconName = shim[2]; + + if (prefix === 'far' && !hasRegular) { + prefix = 'fas'; + } + + acc[oldName] = { prefix: prefix, iconName: iconName }; + + return acc; + }, {}); +}; + +build(); + +function byUnicode(prefix, unicode) { + return _byUnicode[prefix][unicode]; +} + +function byLigature(prefix, ligature) { + return _byLigature[prefix][ligature]; +} + +function byOldName(name) { + return _byOldName[name] || { prefix: null, iconName: null }; +} + +var styles$1 = namespace.styles; + + +var emptyCanonicalIcon = function emptyCanonicalIcon() { + return { prefix: null, iconName: null, rest: [] }; +}; + +function getCanonicalIcon(values) { + return values.reduce(function (acc, cls) { + var iconName = getIconName(config.familyPrefix, cls); + + if (styles$1[cls]) { + acc.prefix = cls; + } else if (iconName) { + var shim = acc.prefix === 'fa' ? byOldName(iconName) : {}; + + acc.iconName = shim.iconName || iconName; + acc.prefix = shim.prefix || acc.prefix; + } else if (cls !== config.replacementClass && cls.indexOf('fa-w-') !== 0) { + acc.rest.push(cls); + } + + return acc; + }, emptyCanonicalIcon()); +} + +function iconFromMapping(mapping, prefix, iconName) { + if (mapping && mapping[prefix] && mapping[prefix][iconName]) { + return { + prefix: prefix, + iconName: iconName, + icon: mapping[prefix][iconName] + }; + } +} + +function toHtml(abstractNodes) { + var tag = abstractNodes.tag, + _abstractNodes$attrib = abstractNodes.attributes, + attributes = _abstractNodes$attrib === undefined ? {} : _abstractNodes$attrib, + _abstractNodes$childr = abstractNodes.children, + children = _abstractNodes$childr === undefined ? [] : _abstractNodes$childr; + + + if (typeof abstractNodes === 'string') { + return htmlEscape(abstractNodes); + } else { + return '<' + tag + ' ' + joinAttributes(attributes) + '>' + children.map(toHtml).join('') + ''; + } +} + +var noop$1 = function noop() {}; + +function isWatched(node) { + var i2svg = node.getAttribute ? node.getAttribute(DATA_FA_I2SVG) : null; + + return typeof i2svg === 'string'; +} + +function getMutator() { + if (config.autoReplaceSvg === true) { + return mutators.replace; + } + + var mutator = mutators[config.autoReplaceSvg]; + + return mutator || mutators.replace; +} + +var mutators = { + replace: function replace(mutation) { + var node = mutation[0]; + var abstract = mutation[1]; + var newOuterHTML = abstract.map(function (a) { + return toHtml(a); + }).join('\n'); + + if (node.parentNode && node.outerHTML) { + node.outerHTML = newOuterHTML + (config.keepOriginalSource && node.tagName.toLowerCase() !== 'svg' ? '' : ''); + } else if (node.parentNode) { + var newNode = document.createElement('span'); + node.parentNode.replaceChild(newNode, node); + newNode.outerHTML = newOuterHTML; + } + }, + nest: function nest(mutation) { + var node = mutation[0]; + var abstract = mutation[1]; + + // If we already have a replaced node we do not want to continue nesting within it. + // Short-circuit to the standard replacement + if (~classArray(node).indexOf(config.replacementClass)) { + return mutators.replace(mutation); + } + + var forSvg = new RegExp(config.familyPrefix + '-.*'); + + delete abstract[0].attributes.style; + + var splitClasses = abstract[0].attributes.class.split(' ').reduce(function (acc, cls) { + if (cls === config.replacementClass || cls.match(forSvg)) { + acc.toSvg.push(cls); + } else { + acc.toNode.push(cls); + } + + return acc; + }, { toNode: [], toSvg: [] }); + + abstract[0].attributes.class = splitClasses.toSvg.join(' '); + + var newInnerHTML = abstract.map(function (a) { + return toHtml(a); + }).join('\n'); + node.setAttribute('class', splitClasses.toNode.join(' ')); + node.setAttribute(DATA_FA_I2SVG, ''); + node.innerHTML = newInnerHTML; + } +}; + +function perform(mutations, callback) { + var callbackFunction = typeof callback === 'function' ? callback : noop$1; + + if (mutations.length === 0) { + callbackFunction(); + } else { + var frame = WINDOW.requestAnimationFrame || function (op) { + return op(); + }; + + frame(function () { + var mutator = getMutator(); + var mark = perf.begin('mutate'); + + mutations.map(mutator); + + mark(); + + callbackFunction(); + }); + } +} + +var disabled = false; + +function disableObservation(operation) { + disabled = true; + operation(); + disabled = false; +} + +var mo = null; + +function observe(options) { + if (!MUTATION_OBSERVER) { + return; + } + + if (!config.observeMutations) { + return; + } + + var treeCallback = options.treeCallback, + nodeCallback = options.nodeCallback, + pseudoElementsCallback = options.pseudoElementsCallback, + _options$observeMutat = options.observeMutationsRoot, + observeMutationsRoot = _options$observeMutat === undefined ? DOCUMENT.body : _options$observeMutat; + + + mo = new MUTATION_OBSERVER(function (objects) { + if (disabled) return; + + toArray(objects).forEach(function (mutationRecord) { + if (mutationRecord.type === 'childList' && mutationRecord.addedNodes.length > 0 && !isWatched(mutationRecord.addedNodes[0])) { + if (config.searchPseudoElements) { + pseudoElementsCallback(mutationRecord.target); + } + + treeCallback(mutationRecord.target); + } + + if (mutationRecord.type === 'attributes' && mutationRecord.target.parentNode && config.searchPseudoElements) { + pseudoElementsCallback(mutationRecord.target.parentNode); + } + + if (mutationRecord.type === 'attributes' && isWatched(mutationRecord.target) && ~ATTRIBUTES_WATCHED_FOR_MUTATION.indexOf(mutationRecord.attributeName)) { + if (mutationRecord.attributeName === 'class') { + var _getCanonicalIcon = getCanonicalIcon(classArray(mutationRecord.target)), + prefix = _getCanonicalIcon.prefix, + iconName = _getCanonicalIcon.iconName; + + if (prefix) mutationRecord.target.setAttribute('data-prefix', prefix); + if (iconName) mutationRecord.target.setAttribute('data-icon', iconName); + } else { + nodeCallback(mutationRecord.target); + } + } + }); + }); + + if (!IS_DOM) return; + + mo.observe(observeMutationsRoot, { + childList: true, attributes: true, characterData: true, subtree: true + }); +} + +function disconnect() { + if (!mo) return; + + mo.disconnect(); +} + +var styleParser = function (node) { + var style = node.getAttribute('style'); + + var val = []; + + if (style) { + val = style.split(';').reduce(function (acc, style) { + var styles = style.split(':'); + var prop = styles[0]; + var value = styles.slice(1); + + if (prop && value.length > 0) { + acc[prop] = value.join(':').trim(); + } + + return acc; + }, {}); + } + + return val; +}; + +function toHex(unicode) { + var result = ''; + + for (var i = 0; i < unicode.length; i++) { + var hex = unicode.charCodeAt(i).toString(16); + result += ('000' + hex).slice(-4); + } + + return result; +} + +var classParser = function (node) { + var existingPrefix = node.getAttribute('data-prefix'); + var existingIconName = node.getAttribute('data-icon'); + var innerText = node.innerText !== undefined ? node.innerText.trim() : ''; + + var val = getCanonicalIcon(classArray(node)); + + if (existingPrefix && existingIconName) { + val.prefix = existingPrefix; + val.iconName = existingIconName; + } + + if (val.prefix && innerText.length > 1) { + val.iconName = byLigature(val.prefix, node.innerText); + } else if (val.prefix && innerText.length === 1) { + val.iconName = byUnicode(val.prefix, toHex(node.innerText)); + } + + return val; +}; + +var parseTransformString = function parseTransformString(transformString) { + var transform = { + size: 16, + x: 0, + y: 0, + flipX: false, + flipY: false, + rotate: 0 + }; + + if (!transformString) { + return transform; + } else { + return transformString.toLowerCase().split(' ').reduce(function (acc, n) { + var parts = n.toLowerCase().split('-'); + var first = parts[0]; + var rest = parts.slice(1).join('-'); + + if (first && rest === 'h') { + acc.flipX = true; + return acc; + } + + if (first && rest === 'v') { + acc.flipY = true; + return acc; + } + + rest = parseFloat(rest); + + if (isNaN(rest)) { + return acc; + } + + switch (first) { + case 'grow': + acc.size = acc.size + rest; + break; + case 'shrink': + acc.size = acc.size - rest; + break; + case 'left': + acc.x = acc.x - rest; + break; + case 'right': + acc.x = acc.x + rest; + break; + case 'up': + acc.y = acc.y - rest; + break; + case 'down': + acc.y = acc.y + rest; + break; + case 'rotate': + acc.rotate = acc.rotate + rest; + break; + } + + return acc; + }, transform); + } +}; + +var transformParser = function (node) { + return parseTransformString(node.getAttribute('data-fa-transform')); +}; + +var symbolParser = function (node) { + var symbol = node.getAttribute('data-fa-symbol'); + + return symbol === null ? false : symbol === '' ? true : symbol; +}; + +var attributesParser = function (node) { + var extraAttributes = toArray(node.attributes).reduce(function (acc, attr) { + if (acc.name !== 'class' && acc.name !== 'style') { + acc[attr.name] = attr.value; + } + return acc; + }, {}); + + var title = node.getAttribute('title'); + + if (config.autoA11y) { + if (title) { + extraAttributes['aria-labelledby'] = config.replacementClass + '-title-' + nextUniqueId(); + } else { + extraAttributes['aria-hidden'] = 'true'; + } + } + + return extraAttributes; +}; + +var maskParser = function (node) { + var mask = node.getAttribute('data-fa-mask'); + + if (!mask) { + return emptyCanonicalIcon(); + } else { + return getCanonicalIcon(mask.split(' ').map(function (i) { + return i.trim(); + })); + } +}; + +var blankMeta = { + iconName: null, + title: null, + prefix: null, + transform: meaninglessTransform, + symbol: false, + mask: null, + extra: { classes: [], styles: {}, attributes: {} } +}; + +function parseMeta(node) { + var _classParser = classParser(node), + iconName = _classParser.iconName, + prefix = _classParser.prefix, + extraClasses = _classParser.rest; + + var extraStyles = styleParser(node); + var transform = transformParser(node); + var symbol = symbolParser(node); + var extraAttributes = attributesParser(node); + var mask = maskParser(node); + + return { + iconName: iconName, + title: node.getAttribute('title'), + prefix: prefix, + transform: transform, + symbol: symbol, + mask: mask, + extra: { + classes: extraClasses, + styles: extraStyles, + attributes: extraAttributes + } + }; +} + +function MissingIcon(error) { + this.name = 'MissingIcon'; + this.message = error || 'Icon unavailable'; + this.stack = new Error().stack; +} + +MissingIcon.prototype = Object.create(Error.prototype); +MissingIcon.prototype.constructor = MissingIcon; + +var FILL = { fill: 'currentColor' }; +var ANIMATION_BASE = { + attributeType: 'XML', + repeatCount: 'indefinite', + dur: '2s' +}; +var RING = { + tag: 'path', + attributes: _extends({}, FILL, { + d: 'M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z' + }) +}; +var OPACITY_ANIMATE = _extends({}, ANIMATION_BASE, { + attributeName: 'opacity' +}); +var DOT = { + tag: 'circle', + attributes: _extends({}, FILL, { + cx: '256', + cy: '364', + r: '28' + }), + children: [{ tag: 'animate', attributes: _extends({}, ANIMATION_BASE, { attributeName: 'r', values: '28;14;28;28;14;28;' }) }, { tag: 'animate', attributes: _extends({}, OPACITY_ANIMATE, { values: '1;0;1;1;0;1;' }) }] +}; +var QUESTION = { + tag: 'path', + attributes: _extends({}, FILL, { + opacity: '1', + d: 'M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z' + }), + children: [{ tag: 'animate', attributes: _extends({}, OPACITY_ANIMATE, { values: '1;0;0;0;0;1;' }) }] +}; +var EXCLAMATION = { + tag: 'path', + attributes: _extends({}, FILL, { + opacity: '0', + d: 'M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z' + }), + children: [{ tag: 'animate', attributes: _extends({}, OPACITY_ANIMATE, { values: '0;0;1;1;0;0;' }) }] +}; + +var missing = { tag: 'g', children: [RING, DOT, QUESTION, EXCLAMATION] }; + +var styles = namespace.styles; + +var LAYERS_TEXT_CLASSNAME = 'fa-layers-text'; +var FONT_FAMILY_PATTERN = /Font Awesome 5 (Solid|Regular|Light|Brands|Free|Pro)/; +var STYLE_TO_PREFIX = { + 'Solid': 'fas', + 'Regular': 'far', + 'Light': 'fal', + 'Brands': 'fab' +}; +var FONT_WEIGHT_TO_PREFIX = { + '900': 'fas', + '400': 'far', + '300': 'fal' +}; + +function findIcon(iconName, prefix) { + var val = { + found: false, + width: 512, + height: 512, + icon: missing + }; + + if (iconName && prefix && styles[prefix] && styles[prefix][iconName]) { + var icon = styles[prefix][iconName]; + var width = icon[0]; + var height = icon[1]; + var vectorData = icon.slice(4); + + val = { + found: true, + width: width, + height: height, + icon: { tag: 'path', attributes: { fill: 'currentColor', d: vectorData[0] } } + }; + } else if (iconName && prefix && !config.showMissingIcons) { + throw new MissingIcon('Icon is missing for prefix ' + prefix + ' with icon name ' + iconName); + } + + return val; +} + +function generateSvgReplacementMutation(node, nodeMeta) { + var iconName = nodeMeta.iconName, + title = nodeMeta.title, + prefix = nodeMeta.prefix, + transform = nodeMeta.transform, + symbol = nodeMeta.symbol, + mask = nodeMeta.mask, + extra = nodeMeta.extra; + + + return [node, makeInlineSvgAbstract({ + icons: { + main: findIcon(iconName, prefix), + mask: findIcon(mask.iconName, mask.prefix) + }, + prefix: prefix, + iconName: iconName, + transform: transform, + symbol: symbol, + mask: mask, + title: title, + extra: extra, + watchable: true + })]; +} + +function generateLayersText(node, nodeMeta) { + var title = nodeMeta.title, + transform = nodeMeta.transform, + extra = nodeMeta.extra; + + + var width = null; + var height = null; + + if (IS_IE) { + var computedFontSize = parseInt(getComputedStyle(node).fontSize, 10); + var boundingClientRect = node.getBoundingClientRect(); + width = boundingClientRect.width / computedFontSize; + height = boundingClientRect.height / computedFontSize; + } + + if (config.autoA11y && !title) { + extra.attributes['aria-hidden'] = 'true'; + } + + return [node, makeLayersTextAbstract({ + content: node.innerHTML, + width: width, + height: height, + transform: transform, + title: title, + extra: extra, + watchable: true + })]; +} + +function generateMutation(node) { + var nodeMeta = parseMeta(node); + + if (~nodeMeta.extra.classes.indexOf(LAYERS_TEXT_CLASSNAME)) { + return generateLayersText(node, nodeMeta); + } else { + return generateSvgReplacementMutation(node, nodeMeta); + } +} + +function searchPseudoElements(root) { + if (!IS_DOM) return; + + var end = perf.begin('searchPseudoElements'); + + disableObservation(function () { + toArray(root.querySelectorAll('*')).filter(function (n) { + return n.parentNode !== document.head && !~TAGNAMES_TO_SKIP_FOR_PSEUDOELEMENTS.indexOf(n.tagName.toUpperCase()) && !n.getAttribute(DATA_FA_PSEUDO_ELEMENT) && (!n.parentNode || n.parentNode.tagName !== 'svg'); + }).forEach(function (node) { + [':before', ':after'].forEach(function (pos) { + var children = toArray(node.children); + var alreadyProcessedPseudoElement = children.filter(function (c) { + return c.getAttribute(DATA_FA_PSEUDO_ELEMENT) === pos; + })[0]; + + var styles = WINDOW.getComputedStyle(node, pos); + var fontFamily = styles.getPropertyValue('font-family').match(FONT_FAMILY_PATTERN); + var fontWeight = styles.getPropertyValue('font-weight'); + + if (alreadyProcessedPseudoElement && !fontFamily) { + // If we've already processed it but the current computed style does not result in a font-family, + // that probably means that a class name that was previously present to make the icon has been + // removed. So we now should delete the icon. + node.removeChild(alreadyProcessedPseudoElement); + } else if (fontFamily) { + var content = styles.getPropertyValue('content'); + var prefix = ~['Light', 'Regular', 'Solid', 'Brands'].indexOf(fontFamily[1]) ? STYLE_TO_PREFIX[fontFamily[1]] : FONT_WEIGHT_TO_PREFIX[fontWeight]; + var iconName = byUnicode(prefix, toHex(content.length === 3 ? content.substr(1, 1) : content)); + // Only convert the pseudo element in this :before/:after position into an icon if we haven't + // already done so with the same prefix and iconName + if (!alreadyProcessedPseudoElement || alreadyProcessedPseudoElement.getAttribute(DATA_PREFIX) !== prefix || alreadyProcessedPseudoElement.getAttribute(DATA_ICON) !== iconName) { + if (alreadyProcessedPseudoElement) { + // Delete the old one, since we're replacing it with a new one + node.removeChild(alreadyProcessedPseudoElement); + } + + var extra = blankMeta.extra; + + extra.attributes[DATA_FA_PSEUDO_ELEMENT] = pos; + var abstract = makeInlineSvgAbstract(_extends({}, blankMeta, { + icons: { + main: findIcon(iconName, prefix), + mask: emptyCanonicalIcon() + }, + prefix: prefix, + iconName: iconName, + extra: extra, + watchable: true + })); + + var element = DOCUMENT.createElement('svg'); + + if (pos === ':before') { + node.insertBefore(element, node.firstChild); + } else { + node.appendChild(element); + } + + element.outerHTML = abstract.map(function (a) { + return toHtml(a); + }).join('\n'); + } + } + }); + }); + }); + + end(); +} + +function onTree(root) { + var callback = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + + if (!IS_DOM) return; + + var htmlClassList = DOCUMENT.documentElement.classList; + var hclAdd = function hclAdd(suffix) { + return htmlClassList.add(HTML_CLASS_I2SVG_BASE_CLASS + '-' + suffix); + }; + var hclRemove = function hclRemove(suffix) { + return htmlClassList.remove(HTML_CLASS_I2SVG_BASE_CLASS + '-' + suffix); + }; + var prefixes = Object.keys(styles); + var prefixesDomQuery = ['.' + LAYERS_TEXT_CLASSNAME + ':not([' + DATA_FA_I2SVG + '])'].concat(prefixes.map(function (p) { + return '.' + p + ':not([' + DATA_FA_I2SVG + '])'; + })).join(', '); + + if (prefixesDomQuery.length === 0) { + return; + } + + var candidates = toArray(root.querySelectorAll(prefixesDomQuery)); + + if (candidates.length > 0) { + hclAdd('pending'); + hclRemove('complete'); + } else { + return; + } + + var mark = perf.begin('onTree'); + + var mutations = candidates.reduce(function (acc, node) { + try { + var mutation = generateMutation(node); + + if (mutation) { + acc.push(mutation); + } + } catch (e) { + if (!PRODUCTION) { + if (e instanceof MissingIcon) { + console.error(e); + } + } + } + + return acc; + }, []); + + mark(); + + perform(mutations, function () { + hclAdd('active'); + hclAdd('complete'); + hclRemove('pending'); + + if (typeof callback === 'function') callback(); + }); +} + +function onNode(node) { + var callback = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + + var mutation = generateMutation(node); + + if (mutation) { + perform([mutation], callback); + } +} + +var baseStyles = "svg:not(:root).svg-inline--fa {\n overflow: visible; }\n\n.svg-inline--fa {\n display: inline-block;\n font-size: inherit;\n height: 1em;\n overflow: visible;\n vertical-align: -.125em; }\n .svg-inline--fa.fa-lg {\n vertical-align: -.225em; }\n .svg-inline--fa.fa-w-1 {\n width: 0.0625em; }\n .svg-inline--fa.fa-w-2 {\n width: 0.125em; }\n .svg-inline--fa.fa-w-3 {\n width: 0.1875em; }\n .svg-inline--fa.fa-w-4 {\n width: 0.25em; }\n .svg-inline--fa.fa-w-5 {\n width: 0.3125em; }\n .svg-inline--fa.fa-w-6 {\n width: 0.375em; }\n .svg-inline--fa.fa-w-7 {\n width: 0.4375em; }\n .svg-inline--fa.fa-w-8 {\n width: 0.5em; }\n .svg-inline--fa.fa-w-9 {\n width: 0.5625em; }\n .svg-inline--fa.fa-w-10 {\n width: 0.625em; }\n .svg-inline--fa.fa-w-11 {\n width: 0.6875em; }\n .svg-inline--fa.fa-w-12 {\n width: 0.75em; }\n .svg-inline--fa.fa-w-13 {\n width: 0.8125em; }\n .svg-inline--fa.fa-w-14 {\n width: 0.875em; }\n .svg-inline--fa.fa-w-15 {\n width: 0.9375em; }\n .svg-inline--fa.fa-w-16 {\n width: 1em; }\n .svg-inline--fa.fa-w-17 {\n width: 1.0625em; }\n .svg-inline--fa.fa-w-18 {\n width: 1.125em; }\n .svg-inline--fa.fa-w-19 {\n width: 1.1875em; }\n .svg-inline--fa.fa-w-20 {\n width: 1.25em; }\n .svg-inline--fa.fa-pull-left {\n margin-right: .3em;\n width: auto; }\n .svg-inline--fa.fa-pull-right {\n margin-left: .3em;\n width: auto; }\n .svg-inline--fa.fa-border {\n height: 1.5em; }\n .svg-inline--fa.fa-li {\n width: 2em; }\n .svg-inline--fa.fa-fw {\n width: 1.25em; }\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0; }\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -.125em;\n width: 1em; }\n .fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center; }\n\n.fa-layers-text, .fa-layers-counter {\n display: inline-block;\n position: absolute;\n text-align: center; }\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center; }\n\n.fa-layers-counter {\n background-color: #ff253a;\n border-radius: 1em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #fff;\n height: 1.5em;\n line-height: 1;\n max-width: 5em;\n min-width: 1.5em;\n overflow: hidden;\n padding: .25em;\n right: 0;\n text-overflow: ellipsis;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right; }\n\n.fa-layers-bottom-right {\n bottom: 0;\n right: 0;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right; }\n\n.fa-layers-bottom-left {\n bottom: 0;\n left: 0;\n right: auto;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left; }\n\n.fa-layers-top-right {\n right: 0;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right; }\n\n.fa-layers-top-left {\n left: 0;\n right: auto;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top left;\n transform-origin: top left; }\n\n.fa-lg {\n font-size: 1.33333em;\n line-height: 0.75em;\n vertical-align: -.0667em; }\n\n.fa-xs {\n font-size: .75em; }\n\n.fa-sm {\n font-size: .875em; }\n\n.fa-1x {\n font-size: 1em; }\n\n.fa-2x {\n font-size: 2em; }\n\n.fa-3x {\n font-size: 3em; }\n\n.fa-4x {\n font-size: 4em; }\n\n.fa-5x {\n font-size: 5em; }\n\n.fa-6x {\n font-size: 6em; }\n\n.fa-7x {\n font-size: 7em; }\n\n.fa-8x {\n font-size: 8em; }\n\n.fa-9x {\n font-size: 9em; }\n\n.fa-10x {\n font-size: 10em; }\n\n.fa-fw {\n text-align: center;\n width: 1.25em; }\n\n.fa-ul {\n list-style-type: none;\n margin-left: 2.5em;\n padding-left: 0; }\n .fa-ul > li {\n position: relative; }\n\n.fa-li {\n left: -2em;\n position: absolute;\n text-align: center;\n width: 2em;\n line-height: inherit; }\n\n.fa-border {\n border: solid 0.08em #eee;\n border-radius: .1em;\n padding: .2em .25em .15em; }\n\n.fa-pull-left {\n float: left; }\n\n.fa-pull-right {\n float: right; }\n\n.fa.fa-pull-left,\n.fas.fa-pull-left,\n.far.fa-pull-left,\n.fal.fa-pull-left,\n.fab.fa-pull-left {\n margin-right: .3em; }\n\n.fa.fa-pull-right,\n.fas.fa-pull-right,\n.far.fa-pull-right,\n.fal.fa-pull-right,\n.fab.fa-pull-right {\n margin-left: .3em; }\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear; }\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8); }\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n.fa-rotate-90 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg); }\n\n.fa-rotate-180 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg); }\n\n.fa-rotate-270 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg); }\n\n.fa-flip-horizontal {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1); }\n\n.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1); }\n\n.fa-flip-horizontal.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1); }\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n -webkit-filter: none;\n filter: none; }\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n position: relative;\n width: 2em; }\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0; }\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1em; }\n\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2em; }\n\n.fa-inverse {\n color: #fff; }\n\n.sr-only {\n border: 0;\n clip: rect(0, 0, 0, 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px; }\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n clip: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n position: static;\n width: auto; }\n"; + +var css = function () { + var dfp = DEFAULT_FAMILY_PREFIX; + var drc = DEFAULT_REPLACEMENT_CLASS; + var fp = config.familyPrefix; + var rc = config.replacementClass; + var s = baseStyles; + + if (fp !== dfp || rc !== drc) { + var dPatt = new RegExp('\\.' + dfp + '\\-', 'g'); + var rPatt = new RegExp('\\.' + drc, 'g'); + + s = s.replace(dPatt, '.' + fp + '-').replace(rPatt, '.' + rc); + } + + return s; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var Library = function () { + function Library() { + classCallCheck(this, Library); + + this.definitions = {}; + } + + createClass(Library, [{ + key: 'add', + value: function add() { + var _this = this; + + for (var _len = arguments.length, definitions = Array(_len), _key = 0; _key < _len; _key++) { + definitions[_key] = arguments[_key]; + } + + var additions = definitions.reduce(this._pullDefinitions, {}); + + Object.keys(additions).forEach(function (key) { + _this.definitions[key] = _extends({}, _this.definitions[key] || {}, additions[key]); + define(key, additions[key]); + build(); + }); + } + }, { + key: 'reset', + value: function reset() { + this.definitions = {}; + } + }, { + key: '_pullDefinitions', + value: function _pullDefinitions(additions, definition) { + var normalized = definition.prefix && definition.iconName && definition.icon ? { 0: definition } : definition; + + Object.keys(normalized).map(function (key) { + var _normalized$key = normalized[key], + prefix = _normalized$key.prefix, + iconName = _normalized$key.iconName, + icon = _normalized$key.icon; + + + if (!additions[prefix]) additions[prefix] = {}; + + additions[prefix][iconName] = icon; + }); + + return additions; + } + }]); + return Library; +}(); + +function prepIcon(icon) { + var width = icon[0]; + var height = icon[1]; + var vectorData = icon.slice(4); + + return { + found: true, + width: width, + height: height, + icon: { tag: 'path', attributes: { fill: 'currentColor', d: vectorData[0] } } + }; +} + +function ensureCss() { + if (config.autoAddCss && !_cssInserted) { + insertCss(css()); + _cssInserted = true; + } +} + +function apiObject(val, abstractCreator) { + Object.defineProperty(val, 'abstract', { + get: abstractCreator + }); + + Object.defineProperty(val, 'html', { + get: function get() { + return val.abstract.map(function (a) { + return toHtml(a); + }); + } + }); + + Object.defineProperty(val, 'node', { + get: function get() { + if (!IS_DOM) return; + + var container = DOCUMENT.createElement('div'); + container.innerHTML = val.html; + return container.children; + } + }); + + return val; +} + +function findIconDefinition(params) { + var _params$prefix = params.prefix, + prefix = _params$prefix === undefined ? 'fa' : _params$prefix, + iconName = params.iconName; + + + if (!iconName) return; + + return iconFromMapping(library.definitions, prefix, iconName) || iconFromMapping(namespace.styles, prefix, iconName); +} + +function resolveIcons(next) { + return function (maybeIconDefinition) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + + var iconDefinition = (maybeIconDefinition || {}).icon ? maybeIconDefinition : findIconDefinition(maybeIconDefinition || {}); + + var mask = params.mask; + + + if (mask) { + mask = (mask || {}).icon ? mask : findIconDefinition(mask || {}); + } + + return next(iconDefinition, _extends({}, params, { mask: mask })); + }; +} + +var library = new Library(); + +var noAuto = function noAuto() { + config.autoReplaceSvg = false; + config.observeMutations = false; + + disconnect(); +}; + +var _cssInserted = false; + +var dom = { + i2svg: function i2svg() { + var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + + if (IS_DOM) { + ensureCss(); + + var _params$node = params.node, + node = _params$node === undefined ? DOCUMENT : _params$node, + _params$callback = params.callback, + callback = _params$callback === undefined ? function () {} : _params$callback; + + + if (config.searchPseudoElements) { + searchPseudoElements(node); + } + + onTree(node, callback); + } + }, + + css: css, + + insertCss: function insertCss$$1() { + if (!_cssInserted) { + insertCss(css()); + _cssInserted = true; + } + }, + + watch: function watch() { + var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var autoReplaceSvgRoot = params.autoReplaceSvgRoot, + observeMutationsRoot = params.observeMutationsRoot; + + + if (config.autoReplaceSvg === false) { + config.autoReplaceSvg = true; + } + + config.observeMutations = true; + + domready(function () { + autoReplace({ + autoReplaceSvgRoot: autoReplaceSvgRoot + }); + + observe({ + treeCallback: onTree, + nodeCallback: onNode, + pseudoElementsCallback: searchPseudoElements, + observeMutationsRoot: observeMutationsRoot + }); + }); + } +}; + +var parse = { + transform: function transform(transformString) { + return parseTransformString(transformString); + } +}; + +var icon = resolveIcons(function (iconDefinition) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _params$transform = params.transform, + transform = _params$transform === undefined ? meaninglessTransform : _params$transform, + _params$symbol = params.symbol, + symbol = _params$symbol === undefined ? false : _params$symbol, + _params$mask = params.mask, + mask = _params$mask === undefined ? null : _params$mask, + _params$title = params.title, + title = _params$title === undefined ? null : _params$title, + _params$classes = params.classes, + classes = _params$classes === undefined ? [] : _params$classes, + _params$attributes = params.attributes, + attributes = _params$attributes === undefined ? {} : _params$attributes, + _params$styles = params.styles, + styles = _params$styles === undefined ? {} : _params$styles; + + + if (!iconDefinition) return; + + var prefix = iconDefinition.prefix, + iconName = iconDefinition.iconName, + icon = iconDefinition.icon; + + + return apiObject(_extends({ type: 'icon' }, iconDefinition), function () { + ensureCss(); + + if (config.autoA11y) { + if (title) { + attributes['aria-labelledby'] = config.replacementClass + '-title-' + nextUniqueId(); + } else { + attributes['aria-hidden'] = 'true'; + } + } + + return makeInlineSvgAbstract({ + icons: { + main: prepIcon(icon), + mask: mask ? prepIcon(mask.icon) : { found: false, width: null, height: null, icon: {} } + }, + prefix: prefix, + iconName: iconName, + transform: _extends({}, meaninglessTransform, transform), + symbol: symbol, + title: title, + extra: { + attributes: attributes, + styles: styles, + classes: classes + } + }); + }); +}); + +var text = function text(content) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _params$transform2 = params.transform, + transform = _params$transform2 === undefined ? meaninglessTransform : _params$transform2, + _params$title2 = params.title, + title = _params$title2 === undefined ? null : _params$title2, + _params$classes2 = params.classes, + classes = _params$classes2 === undefined ? [] : _params$classes2, + _params$attributes2 = params.attributes, + attributes = _params$attributes2 === undefined ? {} : _params$attributes2, + _params$styles2 = params.styles, + styles = _params$styles2 === undefined ? {} : _params$styles2; + + + return apiObject({ type: 'text', content: content }, function () { + ensureCss(); + + return makeLayersTextAbstract({ + content: content, + transform: _extends({}, meaninglessTransform, transform), + title: title, + extra: { + attributes: attributes, + styles: styles, + classes: [config.familyPrefix + '-layers-text'].concat(toConsumableArray(classes)) + } + }); + }); +}; + +var counter = function counter(content) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _params$title3 = params.title, + title = _params$title3 === undefined ? null : _params$title3, + _params$classes3 = params.classes, + classes = _params$classes3 === undefined ? [] : _params$classes3, + _params$attributes3 = params.attributes, + attributes = _params$attributes3 === undefined ? {} : _params$attributes3, + _params$styles3 = params.styles, + styles = _params$styles3 === undefined ? {} : _params$styles3; + + + return apiObject({ type: 'counter', content: content }, function () { + ensureCss(); + + return makeLayersCounterAbstract({ + content: content.toString(), + title: title, + extra: { + attributes: attributes, + styles: styles, + classes: [config.familyPrefix + '-layers-counter'].concat(toConsumableArray(classes)) + } + }); + }); +}; + +var layer = function layer(assembler) { + return apiObject({ type: 'layer' }, function () { + ensureCss(); + + var children = []; + + assembler(function (args) { + Array.isArray(args) ? args.map(function (a) { + children = children.concat(a.abstract); + }) : children = children.concat(args.abstract); + }); + + return [{ + tag: 'span', + attributes: { class: config.familyPrefix + '-layers' }, + children: children + }]; + }); +}; + +var api = { + noAuto: noAuto, + config: config, + dom: dom, + library: library, + parse: parse, + findIconDefinition: findIconDefinition, + icon: icon, + text: text, + counter: counter, + layer: layer, + toHtml: toHtml +}; + +var autoReplace = function autoReplace() { + var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var _params$autoReplaceSv = params.autoReplaceSvgRoot, + autoReplaceSvgRoot = _params$autoReplaceSv === undefined ? DOCUMENT : _params$autoReplaceSv; + + + if (Object.keys(namespace.styles).length > 0 && IS_DOM && config.autoReplaceSvg) api.dom.i2svg({ node: autoReplaceSvgRoot }); +}; + +function bootstrap() { + if (IS_BROWSER) { + if (!WINDOW.FontAwesome) { + WINDOW.FontAwesome = api; + } + + domready(function () { + autoReplace(); + + observe({ + treeCallback: onTree, + nodeCallback: onNode, + pseudoElementsCallback: searchPseudoElements + }); + }); + } + + namespace.hooks = _extends({}, namespace.hooks, { + + addPack: function addPack(prefix, icons) { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, icons); + + build(); + autoReplace(); + }, + + addShims: function addShims(shims) { + var _namespace$shims; + + (_namespace$shims = namespace.shims).push.apply(_namespace$shims, toConsumableArray(shims)); + + build(); + autoReplace(); + } + }); +} + +bunker(bootstrap); + +}()); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fontawesome-all.min.js b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fontawesome-all.min.js new file mode 100644 index 0000000000..a68df091bc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fontawesome-all.min.js @@ -0,0 +1,2460 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +!function() { + "use strict"; + var c = {}; + try { + "undefined" != typeof window && (c = window); + } catch (c) {} + var l = (c.navigator || {}).userAgent, h = void 0 === l ? "" : l, z = c, v = (~h.indexOf("MSIE") || h.indexOf("Trident/"), + "___FONT_AWESOME___"), m = function() { + try { + return !1; + } catch (c) { + return !1; + } + }(), s = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ], e = s.concat([ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ]); + [ "xs", "sm", "lg", "fw", "ul", "li", "border", "pull-left", "pull-right", "spin", "pulse", "rotate-90", "rotate-180", "rotate-270", "flip-horizontal", "flip-vertical", "stack", "stack-1x", "stack-2x", "inverse", "layers", "layers-text", "layers-counter" ].concat(s.map(function(c) { + return c + "x"; + })).concat(e.map(function(c) { + return "w-" + c; + })); + var a = z || {}; + a[v] || (a[v] = {}), a[v].styles || (a[v].styles = {}), a[v].hooks || (a[v].hooks = {}), + a[v].shims || (a[v].shims = []); + var t = a[v], M = Object.assign || function(c) { + for (var l = 1; l < arguments.length; l++) { + var h = arguments[l]; + for (var z in h) Object.prototype.hasOwnProperty.call(h, z) && (c[z] = h[z]); + } + return c; + }; + var f = { + "500px": [ 448, 512, [], "f26e", "M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3.3-16 16.5-21.2 23.9l-.5.6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8zm63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2zM393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4zM213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6.2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6z" ], + "accessible-icon": [ 448, 512, [], "f368", "M423.9 255.8L411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7zm-64.9-154c28.1 0 50.9-22.8 50.9-50.9C409.9 22.8 387.1 0 359 0c-28.1 0-50.9 22.8-50.9 50.9 0 28.1 22.8 50.9 50.9 50.9zM179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3z" ], + accusoft: [ 640, 512, [], "f369", "M482.2 372.1C476.5 365.2 250 75 242.3 65.5c-13.7-17.2 0-16.8 19.2-16.9 9.7-.1 106.3-.6 116.5-.6 24.1-.1 28.7.6 38.4 12.8 2.1 2.7 205.1 245.8 207.2 248.3 5.5 6.7 15.2 19.1 7.2 23.4-2.4 1.3-114.6 47.7-117.8 48.9-10.1 4-17.5 6.8-30.8-9.3m114.7-5.6s-115 50.4-117.5 51.6c-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2-2.3-.3-24.6-4.7-38-7.2m-326-181.3s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3v-1l-51.2-65.8" ], + adn: [ 496, 512, [], "f170", "M248 167.5l64.9 98.8H183.1l64.9-98.8zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7h30.2z" ], + adversal: [ 512, 512, [], "f36a", "M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2zM178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4.4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3zm286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7.4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9zm3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6.4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1.2-.1.3-.1.5zm-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2.4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1zm-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8z" ], + affiliatetheme: [ 512, 512, [], "f36b", "M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2 29.1 21.6 11.1 96.6-40.2 167.5zm351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9.1-8.5-.3-16.8-1-25z" ], + algolia: [ 448, 512, [], "f36c", "M229.3 182.6c-49.3 0-89.2 39.9-89.2 89.2 0 49.3 39.9 89.2 89.2 89.2s89.2-39.9 89.2-89.2c0-49.3-40-89.2-89.2-89.2zm62.7 56.6l-58.9 30.6c-1.8.9-3.8-.4-3.8-2.3V201c0-1.5 1.3-2.7 2.7-2.6 26.2 1 48.9 15.7 61.1 37.1.7 1.3.2 3-1.1 3.7zM389.1 32H58.9C26.4 32 0 58.4 0 90.9V421c0 32.6 26.4 59 58.9 59H389c32.6 0 58.9-26.4 58.9-58.9V90.9C448 58.4 421.6 32 389.1 32zm-202.6 84.7c0-10.8 8.7-19.5 19.5-19.5h45.3c10.8 0 19.5 8.7 19.5 19.5v15.4c0 1.8-1.7 3-3.3 2.5-12.3-3.4-25.1-5.1-38.1-5.1-13.5 0-26.7 1.8-39.4 5.5-1.7.5-3.4-.8-3.4-2.5v-15.8zm-84.4 37l9.2-9.2c7.6-7.6 19.9-7.6 27.5 0l7.7 7.7c1.1 1.1 1 3-.3 4-6.2 4.5-12.1 9.4-17.6 14.9-5.4 5.4-10.4 11.3-14.8 17.4-1 1.3-2.9 1.5-4 .3l-7.7-7.7c-7.6-7.5-7.6-19.8 0-27.4zm127.2 244.8c-70 0-126.6-56.7-126.6-126.6s56.7-126.6 126.6-126.6c70 0 126.6 56.6 126.6 126.6 0 69.8-56.7 126.6-126.6 126.6z" ], + amazon: [ 448, 512, [], "f270", "M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z" ], + "amazon-pay": [ 611, 512, [], "f42c", "M0 325.2c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7 40.7 20.4 83.2 35.6 127.4 46.3 20.9 5 41.9 9 63.2 11.8 31.5 4.2 63.2 6 95 5.2 17.4-.4 34.8-1.8 52.1-3.8 56.4-6.7 110.9-20.8 163.3-42.8 2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9-2.8 2.8-6.3 5.1-9.6 7.4-30.7 21.1-64.2 36.4-99.6 47.9-24.6 7.9-49.6 13.8-75.1 17.6-17.6 2.6-35.4 4.4-53.2 4.8-.8 0-1.7.2-2.5.3H294c-.8-.1-1.7-.3-2.5-.3-3.6-.2-7.2-.3-10.7-.4-16.9-.7-33.7-2.6-50.4-5.3-27.4-4.5-54.2-11.4-80.4-20.9-54.1-19.6-102.6-48.6-145.6-87-1.8-1.6-3-3.8-4.4-5.7v-2zM158 65c-1.4.2-2.9.4-4.3.6-14 1.7-26.6 6.9-38 15.1-2.4 1.7-4.6 3.5-7.1 5.4-.2-.5-.4-1-.4-1.4-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6H87.8c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3V215c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zm-47.4 41.9c0-1.5.4-2.4 1.7-3.3 13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9-1.2-.9-1.7-1.7-1.7-3.3.1-14.1 0-28.1 0-42.2 0-14 .1-28 0-42.1zM316.3 65c-1 .1-2 .3-2.9.4-9.8.5-19.4 1.7-28.9 4.1-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9 0 .4-.1.9-.2 1.4-.5-.1-.9 0-1.3-.1-10.5-2.5-21.1-4.3-32-4.9-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4.4-.4.9-.7 1.6-1.1.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0 2.7-.1 4.5-1.9 4.8-4.7.1-.9.1-1.9.1-2.8v-106c0-4.3-.2-8.6-.9-12.9-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1zm35 127.7c0 1.3-.4 2.2-1.5 3-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8-6.3-2.5-10.4-6.9-12.4-13.3s-2-13-.1-19.4c2.5-8.3 8.4-13 16.4-15.6 8.1-2.6 16.5-3 24.8-2.2 8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3-.1 4.7-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3-6.8-2.3-13.9-3.3-21-3.9-13.1-1.1-26.2-.5-39.2 1.9-14.3 2.7-27.9 7.3-40 15.6-1.4 1-2.8 2.1-3.7 3.5-.7 1.1-.9 2.8-.5 4 .4 1.5 2.1 1.9 3.6 1.8.7 0 1.5 0 2.2-.1 7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9 4.8.3 9.7 1.4 14.4 2.7 5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1-.4 1-.8 2-1 3-.5 2.9 1.2 4.8 4.1 4.1 1.7-.4 3.6-1.3 4.8-2.5 4.4-4.3 8.9-8.6 12.7-13.4 12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9v-17.3zM479.1 198.9c-12.9-35.7-25.8-71.5-38.7-107.2-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5.5 2.1 1.1 4.1 1.9 6.1 19.6 48.5 39.3 97.1 59.1 145.5 1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3-5.1 1.4-10.2 1.6-15.4 1.1-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8-.1 3.3-.1 6.6 0 9.9.1 5.5 2 8 7.4 8.9 5.6 1 11.3 1.9 16.9 2 17.1.4 30.7-6.5 39.5-21.4 3.5-5.9 6.7-12.1 9.2-18.4 23.7-59.8 47.1-119.7 70.6-179.6.7-1.8 1.3-3.6 1.6-5.5.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0-3.7 0-6.3 1.6-7.7 5.2-.5 1.4-1.1 2.7-1.6 4.1-11.6 33.3-23.2 66.6-34.8 100-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z" ], + amilia: [ 448, 512, [], "f36d", "M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm-87.9 327.7c0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5V380c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7" ], + android: [ 448, 512, [], "f17b", "M89.6 204.5v115.8c0 15.4-12.1 27.7-27.5 27.7-15.3 0-30.1-12.4-30.1-27.7V204.5c0-15.1 14.8-27.5 30.1-27.5 15.1 0 27.5 12.4 27.5 27.5zm10.8 157c0 16.4 13.2 29.6 29.6 29.6h19.9l.3 61.1c0 36.9 55.2 36.6 55.2 0v-61.1h37.2v61.1c0 36.7 55.5 36.8 55.5 0v-61.1h20.2c16.2 0 29.4-13.2 29.4-29.6V182.1H100.4v179.4zm248-189.1H99.3c0-42.8 25.6-80 63.6-99.4l-19.1-35.3c-2.8-4.9 4.3-8 6.7-3.8l19.4 35.6c34.9-15.5 75-14.7 108.3 0L297.5 34c2.5-4.3 9.5-1.1 6.7 3.8L285.1 73c37.7 19.4 63.3 56.6 63.3 99.4zm-170.7-55.5c0-5.7-4.6-10.5-10.5-10.5-5.7 0-10.2 4.8-10.2 10.5s4.6 10.5 10.2 10.5c5.9 0 10.5-4.8 10.5-10.5zm113.4 0c0-5.7-4.6-10.5-10.2-10.5-5.9 0-10.5 4.8-10.5 10.5s4.6 10.5 10.5 10.5c5.6 0 10.2-4.8 10.2-10.5zm94.8 60.1c-15.1 0-27.5 12.1-27.5 27.5v115.8c0 15.4 12.4 27.7 27.5 27.7 15.4 0 30.1-12.4 30.1-27.7V204.5c0-15.4-14.8-27.5-30.1-27.5z" ], + angellist: [ 448, 512, [], "f209", "M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7zM311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6 33.1-93.7zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8zM140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7.1-7.7 12.7-21.1 20.4-21.1zm184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3.3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7.1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7zm-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1z" ], + angrycreative: [ 640, 512, [], "f36e", "M640 238.2l-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4 93.1-6.2zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9-12.8 120zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3-126.2 7.7zm-44.3-70.2l-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7 2.7-29.8zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1zm21.1 70.8l5.8-60c-5 13.5-14.7 21.1-27.9 26.6l22.1 33.4zm135.4-45l-7.9-37.8-15.8 39.3 23.7-1.5zm-170.1-74.6l-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8.3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2-56.8 3.7zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1.6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2l-2.9 28.8zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3zm-201.3 8.2l23.8-1.6-8.3-37.6-15.5 39.2z" ], + angular: [ 415, 512, [], "f420", "M169.7 268.1h76.2l-38.1-91.6-38.1 91.6zM207.8 32L0 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7L207.8 32zM338 373.8h-48.6l-26.2-65.4H152.6l-26.2 65.4H77.7L207.8 81.5 338 373.8z" ], + "app-store": [ 512, 512, [], "f36f", "M255.9 120.9l9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5 9.8 5.6 13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4 0-11.3 9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5l8.9 15.7zm-78.7 218l-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5-9.8-5.6-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6zm168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4 0 11.3-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216z" ], + "app-store-ios": [ 448, 512, [], "f370", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7c16.1-4.9 29.3-1.1 39.6 11.4L127 384.5zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40zm98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20z" ], + apper: [ 640, 512, [], "f371", "M42.1 239.1c22.2 0 29 2.8 33.5 14.6h.8v-22.9c0-11.3-4.8-15.4-17.9-15.4-11.3 0-14.4 2.5-15.1 12.8H4.8c.3-13.9 1.5-19.1 5.8-24.4C17.9 195 29.5 192 56.7 192c33 0 47.1 5 53.9 18.9 2 4.3 4 15.6 4 23.7v76.3H76.3l1.3-19.1h-1c-5.3 15.6-13.6 20.4-35.5 20.4-30.3 0-41.1-10.1-41.1-37.3 0-25.2 12.3-35.8 42.1-35.8zm17.1 48.1c13.1 0 16.9-3 16.9-13.4 0-9.1-4.3-11.6-19.6-11.6-13.1 0-17.9 3-17.9 12.1-.1 10.4 3.7 12.9 20.6 12.9zm77.8-94.9h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.2 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3H137v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm57.9-60.7h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.3 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3h-39.5v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm53.8-3.8c0-25.4 3.3-37.8 12.3-45.8 8.8-8.1 22.2-11.3 45.1-11.3 42.8 0 55.7 12.8 55.7 55.7v11.1h-75.3c-.3 2-.3 4-.3 4.8 0 16.9 4.5 21.9 20.1 21.9 13.9 0 17.9-3 17.9-13.9h37.5v2.3c0 9.8-2.5 18.9-6.8 24.7-7.3 9.8-19.6 13.6-44.3 13.6-27.5 0-41.6-3.3-50.6-12.3-8.5-8.5-11.3-21.3-11.3-50.8zm76.4-11.6c-.3-1.8-.3-3.3-.3-3.8 0-12.3-3.3-14.6-19.6-14.6-14.4 0-17.1 3-18.1 15.1l-.3 3.3h38.3zm55.6-45.3h38.3l-1.8 19.9h.7c6.8-14.9 14.4-20.2 29.7-20.2 10.8 0 19.1 3.3 23.4 9.3 5.3 7.3 6.8 14.4 6.8 34 0 1.5 0 5 .2 9.3h-35c.3-1.8.3-3.3.3-4 0-15.4-2-19.4-10.3-19.4-6.3 0-10.8 3.3-13.1 9.3-1 3-1 4.3-1 12.3v68h-38.3V192.3z" ], + apple: [ 376, 512, [], "f179", "M314.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C59.3 141.2 0 184.8 0 273.5c0 26.2 4.8 53.3 14.4 81.2 12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z" ], + "apple-pay": [ 640, 512, [], "f415", "M116.9 158.5c-7.5 8.9-19.5 15.9-31.5 14.9-1.5-12 4.4-24.8 11.3-32.6 7.5-9.1 20.6-15.6 31.3-16.1 1.2 12.4-3.7 24.7-11.1 33.8m10.9 17.2c-17.4-1-32.3 9.9-40.5 9.9-8.4 0-21-9.4-34.8-9.1-17.9.3-34.5 10.4-43.6 26.5-18.8 32.3-4.9 80 13.3 106.3 8.9 13 19.5 27.3 33.5 26.8 13.3-.5 18.5-8.6 34.5-8.6 16.1 0 20.8 8.6 34.8 8.4 14.5-.3 23.6-13 32.5-26 10.1-14.8 14.3-29.1 14.5-29.9-.3-.3-28-10.9-28.3-42.9-.3-26.8 21.9-39.5 22.9-40.3-12.5-18.6-32-20.6-38.8-21.1m100.4-36.2v194.9h30.3v-66.6h41.9c38.3 0 65.1-26.3 65.1-64.3s-26.4-64-64.1-64h-73.2zm30.3 25.5h34.9c26.3 0 41.3 14 41.3 38.6s-15 38.8-41.4 38.8h-34.8V165zm162.2 170.9c19 0 36.6-9.6 44.6-24.9h.6v23.4h28v-97c0-28.1-22.5-46.3-57.1-46.3-32.1 0-55.9 18.4-56.8 43.6h27.3c2.3-12 13.4-19.9 28.6-19.9 18.5 0 28.9 8.6 28.9 24.5v10.8l-37.8 2.3c-35.1 2.1-54.1 16.5-54.1 41.5.1 25.2 19.7 42 47.8 42zm8.2-23.1c-16.1 0-26.4-7.8-26.4-19.6 0-12.3 9.9-19.4 28.8-20.5l33.6-2.1v11c0 18.2-15.5 31.2-36 31.2zm102.5 74.6c29.5 0 43.4-11.3 55.5-45.4L640 193h-30.8l-35.6 115.1h-.6L537.4 193h-31.6L557 334.9l-2.8 8.6c-4.6 14.6-12.1 20.3-25.5 20.3-2.4 0-7-.3-8.9-.5v23.4c1.8.4 9.3.7 11.6.7z" ], + asymmetrik: [ 576, 512, [], "f372", "M517.5 309.2c38.8-40 58.1-80 58.5-116.1.8-65.5-59.4-118.2-169.4-135C277.9 38.4 118.1 73.6 0 140.5 52 114 110.6 92.3 170.7 82.3c74.5-20.5 153-25.4 221.3-14.8C544.5 91.3 588.8 195 490.8 299.2c-10.2 10.8-22 21.1-35 30.6L304.9 103.4 114.7 388.9c-65.6-29.4-76.5-90.2-19.1-151.2 20.8-22.2 48.3-41.9 79.5-58.1 20-12.2 39.7-22.6 62-30.7-65.1 20.3-122.7 52.9-161.6 92.9-27.7 28.6-41.4 57.1-41.7 82.9-.5 35.1 23.4 65.1 68.4 83l-34.5 51.7h101.6l22-34.4c22.2 1 45.3 0 68.6-2.7l-22.8 37.1h135.5L340 406.3c18.6-5.3 36.9-11.5 54.5-18.7l45.9 71.8H542L468.6 349c18.5-12.1 35-25.5 48.9-39.8zm-187.6 80.5l-25-40.6-32.7 53.3c-23.4 3.5-46.7 5.1-69.2 4.4l101.9-159.3 78.7 123c-17.2 7.4-35.3 13.9-53.7 19.2z" ], + audible: [ 640, 512, [], "f373", "M640 199.9v54l-320 200L0 254v-54l320 200 320-200.1zm-194.5 72l47.1-29.4c-37.2-55.8-100.7-92.6-172.7-92.6-72 0-135.5 36.7-172.6 92.4h.3c2.5-2.3 5.1-4.5 7.7-6.7 89.7-74.4 219.4-58.1 290.2 36.3zm-220.1 18.8c16.9-11.9 36.5-18.7 57.4-18.7 34.4 0 65.2 18.4 86.4 47.6l45.4-28.4c-20.9-29.9-55.6-49.5-94.8-49.5-38.9 0-73.4 19.4-94.4 49zM103.6 161.1c131.8-104.3 318.2-76.4 417.5 62.1l.7 1 48.8-30.4C517.1 112.1 424.8 58.1 319.9 58.1c-103.5 0-196.6 53.5-250.5 135.6 9.9-10.5 22.7-23.5 34.2-32.6zm467 32.7z" ], + autoprefixer: [ 640, 512, [], "f41c", "M318.4 16l-161 480h77.5l25.4-81.4h119.5L405 496h77.5L318.4 16zm-40.3 341.9l41.2-130.4h1.5l40.9 130.4h-83.6zM640 405l-10-31.4L462.1 358l19.4 56.5L640 405zm-462.1-47L10 373.7 0 405l158.5 9.4 19.4-56.4z" ], + avianex: [ 512, 512, [], "f374", "M453.1 32h-312c-38.9 0-76.2 31.2-83.3 69.7L1.2 410.3C-5.9 448.8 19.9 480 58.9 480h312c38.9 0 76.2-31.2 83.3-69.7l56.7-308.5c7-38.6-18.8-69.8-57.8-69.8zm-58.2 347.3l-32 13.5-115.4-110c-14.7 10-29.2 19.5-41.7 27.1l22.1 64.2-17.9 12.7-40.6-61-52.4-48.1 15.7-15.4 58 31.1c9.3-10.5 20.8-22.6 32.8-34.9L203 228.9l-68.8-99.8 18.8-28.9 8.9-4.8L265 207.8l4.9 4.5c19.4-18.8 33.8-32.4 33.8-32.4 7.7-6.5 21.5-2.9 30.7 7.9 9 10.5 10.6 24.7 2.7 31.3-1.8 1.3-15.5 11.4-35.3 25.6l4.5 7.3 94.9 119.4-6.3 7.9z" ], + aviato: [ 640, 512, [], "f421", "M107.2 283.5l-19-41.8H36.1l-19 41.8H0l62.2-131.4 62.2 131.4h-17.2zm-45-98.1l-19.6 42.5h39.2l-19.6-42.5zm112.7 102.4l-62.2-131.4h17.1l45.1 96 45.1-96h17l-62.1 131.4zm80.6-4.3V156.4H271v127.1h-15.5zm209.1-115.6v115.6h-17.3V167.9h-41.2v-11.5h99.6v11.5h-41.1zM640 218.8c0 9.2-1.7 17.8-5.1 25.8-3.4 8-8.2 15.1-14.2 21.1-6 6-13.1 10.8-21.1 14.2-8 3.4-16.6 5.1-25.8 5.1s-17.8-1.7-25.8-5.1c-8-3.4-15.1-8.2-21.1-14.2-6-6-10.8-13-14.2-21.1-3.4-8-5.1-16.6-5.1-25.8s1.7-17.8 5.1-25.8c3.4-8 8.2-15.1 14.2-21.1 6-6 13-8.4 21.1-11.9 8-3.4 16.6-5.1 25.8-5.1s17.8 1.7 25.8 5.1c8 3.4 15.1 5.8 21.1 11.9 6 6 10.7 13.1 14.2 21.1 3.4 8 5.1 16.6 5.1 25.8zm-15.5 0c0-7.3-1.3-14-3.9-20.3-2.6-6.3-6.2-11.7-10.8-16.3-4.6-4.6-10-8.2-16.2-10.9-6.2-2.7-12.8-4-19.8-4s-13.6 1.3-19.8 4c-6.2 2.7-11.6 6.3-16.2 10.9-4.6 4.6-8.2 10-10.8 16.3-2.6 6.3-3.9 13.1-3.9 20.3 0 7.3 1.3 14 3.9 20.3 2.6 6.3 6.2 11.7 10.8 16.3 4.6 4.6 10 8.2 16.2 10.9 6.2 2.7 12.8 4 19.8 4s13.6-1.3 19.8-4c6.2-2.7 11.6-6.3 16.2-10.9 4.6-4.6 8.2-10 10.8-16.3 2.6-6.3 3.9-13.1 3.9-20.3zm-94.8 96.7v-6.3l88.9-10-242.9 13.4c.6-2.2 1.1-4.6 1.4-7.2.3-2 .5-4.2.6-6.5l64.8-8.1-64.9 1.9c0-.4-.1-.7-.1-1.1-2.8-17.2-25.5-23.7-25.5-23.7l-1.1-26.3h23.8l19 41.8h17.1L348.6 152l-62.2 131.4h17.1l19-41.8h23.6L345 268s-22.7 6.5-25.5 23.7c-.1.3-.1.7-.1 1.1l-64.9-1.9 64.8 8.1c.1 2.3.3 4.4.6 6.5.3 2.6.8 5 1.4 7.2L78.4 299.2l88.9 10v6.3c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4 0-6.2-4.6-11.3-10.5-12.2v-5.8l80.3 9v5.4c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-4.9l28.4 3.2v23.7h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9V323l38.3 4.3c8.1 11.4 19 13.6 19 13.6l-.1 6.7-5.1.2-.1 12.1h4.1l.1-5h5.2l.1 5h4.1l-.1-12.1-5.1-.2-.1-6.7s10.9-2.1 19-13.6l38.3-4.3v23.2h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9v-23.7l28.4-3.2v4.9c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-5.4l80.3-9v5.8c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4-.2-6.3-4.7-11.4-10.7-12.3zm-200.8-87.6l19.6-42.5 19.6 42.5h-17.9l-1.7-40.3-1.7 40.3h-17.9z" ], + aws: [ 640, 512, [], "f375", "M180.41 203.01c-.72 22.65 10.6 32.68 10.88 39.05a8.164 8.164 0 0 1-4.1 6.27l-12.8 8.96a10.66 10.66 0 0 1-5.63 1.92c-.43-.02-8.19 1.83-20.48-25.61a78.608 78.608 0 0 1-62.61 29.45c-16.28.89-60.4-9.24-58.13-56.21-1.59-38.28 34.06-62.06 70.93-60.05 7.1.02 21.6.37 46.99 6.27v-15.62c2.69-26.46-14.7-46.99-44.81-43.91-2.4.01-19.4-.5-45.84 10.11-7.36 3.38-8.3 2.82-10.75 2.82-7.41 0-4.36-21.48-2.94-24.2 5.21-6.4 35.86-18.35 65.94-18.18a76.857 76.857 0 0 1 55.69 17.28 70.285 70.285 0 0 1 17.67 52.36l-.01 69.29zM93.99 235.4c32.43-.47 46.16-19.97 49.29-30.47 2.46-10.05 2.05-16.41 2.05-27.4-9.67-2.32-23.59-4.85-39.56-4.87-15.15-1.14-42.82 5.63-41.74 32.26-1.24 16.79 11.12 31.4 29.96 30.48zm170.92 23.05c-7.86.72-11.52-4.86-12.68-10.37l-49.8-164.65c-.97-2.78-1.61-5.65-1.92-8.58a4.61 4.61 0 0 1 3.86-5.25c.24-.04-2.13 0 22.25 0 8.78-.88 11.64 6.03 12.55 10.37l35.72 140.83 33.16-140.83c.53-3.22 2.94-11.07 12.8-10.24h17.16c2.17-.18 11.11-.5 12.68 10.37l33.42 142.63L420.98 80.1c.48-2.18 2.72-11.37 12.68-10.37h19.72c.85-.13 6.15-.81 5.25 8.58-.43 1.85 3.41-10.66-52.75 169.9-1.15 5.51-4.82 11.09-12.68 10.37h-18.69c-10.94 1.15-12.51-9.66-12.68-10.75L328.67 110.7l-32.78 136.99c-.16 1.09-1.73 11.9-12.68 10.75h-18.3zm273.48 5.63c-5.88.01-33.92-.3-57.36-12.29a12.802 12.802 0 0 1-7.81-11.91v-10.75c0-8.45 6.2-6.9 8.83-5.89 10.04 4.06 16.48 7.14 28.81 9.6 36.65 7.53 52.77-2.3 56.72-4.48 13.15-7.81 14.19-25.68 5.25-34.95-10.48-8.79-15.48-9.12-53.13-21-4.64-1.29-43.7-13.61-43.79-52.36-.61-28.24 25.05-56.18 69.52-55.95 12.67-.01 46.43 4.13 55.57 15.62 1.35 2.09 2.02 4.55 1.92 7.04v10.11c0 4.44-1.62 6.66-4.87 6.66-7.71-.86-21.39-11.17-49.16-10.75-6.89-.36-39.89.91-38.41 24.97-.43 18.96 26.61 26.07 29.7 26.89 36.46 10.97 48.65 12.79 63.12 29.58 17.14 22.25 7.9 48.3 4.35 55.44-19.08 37.49-68.42 34.44-69.26 34.42zm40.2 104.86c-70.03 51.72-171.69 79.25-258.49 79.25A469.127 469.127 0 0 1 2.83 327.46c-6.53-5.89-.77-13.96 7.17-9.47a637.37 637.37 0 0 0 316.88 84.12 630.22 630.22 0 0 0 241.59-49.55c11.78-5 21.77 7.8 10.12 16.38zm29.19-33.29c-8.96-11.52-59.28-5.38-81.81-2.69-6.79.77-7.94-5.12-1.79-9.47 40.07-28.17 105.88-20.1 113.44-10.63 7.55 9.47-2.05 75.41-39.56 106.91-5.76 4.87-11.27 2.3-8.71-4.1 8.44-21.25 27.39-68.49 18.43-80.02z" ], + bandcamp: [ 496, 512, [], "f2d5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm48.2 326.1h-181L199.9 178h181l-84.7 156.1z" ], + behance: [ 576, 512, [], "f1b4", "M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z" ], + "behance-square": [ 448, 512, [], "f1b5", "M186.5 293c0 19.3-14 25.4-31.2 25.4h-45.1v-52.9h46c18.6.1 30.3 7.8 30.3 27.5zm-7.7-82.3c0-17.7-13.7-21.9-28.9-21.9h-39.6v44.8H153c15.1 0 25.8-6.6 25.8-22.9zm132.3 23.2c-18.3 0-30.5 11.4-31.7 29.7h62.2c-1.7-18.5-11.3-29.7-30.5-29.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM271.7 185h77.8v-18.9h-77.8V185zm-43 110.3c0-24.1-11.4-44.9-35-51.6 17.2-8.2 26.2-17.7 26.2-37 0-38.2-28.5-47.5-61.4-47.5H68v192h93.1c34.9-.2 67.6-16.9 67.6-55.9zM380 280.5c0-41.1-24.1-75.4-67.6-75.4-42.4 0-71.1 31.8-71.1 73.6 0 43.3 27.3 73 71.1 73 33.2 0 54.7-14.9 65.1-46.8h-33.7c-3.7 11.9-18.6 18.1-30.2 18.1-22.4 0-34.1-13.1-34.1-35.3h100.2c.1-2.3.3-4.8.3-7.2z" ], + bimobject: [ 448, 512, [], "f378", "M416 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm-64 257.4c0 49.4-11.4 82.6-103.8 82.6h-16.9c-44.1 0-62.4-14.9-70.4-38.8h-.9V368H96V136h64v74.7h1.1c4.6-30.5 39.7-38.8 69.7-38.8h17.3c92.4 0 103.8 33.1 103.8 82.5v35zm-64-28.9v22.9c0 21.7-3.4 33.8-38.4 33.8h-45.3c-28.9 0-44.1-6.5-44.1-35.7v-19c0-29.3 15.2-35.7 44.1-35.7h45.3c35-.2 38.4 12 38.4 33.7z" ], + bitbucket: [ 512, 512, [], "f171", "M23.1 32C14.2 31.9 7 38.9 6.9 47.8c0 .9.1 1.8.2 2.8L74.9 462c1.7 10.4 10.7 18 21.2 18.1h325.1c7.9.1 14.7-5.6 16-13.4l67.8-416c1.4-8.7-4.5-16.9-13.2-18.3-.9-.1-1.8-.2-2.8-.2L23.1 32zm285.3 297.3H204.6l-28.1-146.8h157l-25.1 146.8z" ], + bitcoin: [ 512, 512, [], "f379", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z" ], + bity: [ 496, 512, [], "f37a", "M78.4 67.2C173.8-22 324.5-24 421.5 71c14.3 14.1-6.4 37.1-22.4 21.5-84.8-82.4-215.8-80.3-298.9-3.2-16.3 15.1-36.5-8.3-21.8-22.1zm98.9 418.6c19.3 5.7 29.3-23.6 7.9-30C73 421.9 9.4 306.1 37.7 194.8c5-19.6-24.9-28.1-30.2-7.1-32.1 127.4 41.1 259.8 169.8 298.1zm148.1-2c121.9-40.2 192.9-166.9 164.4-291-4.5-19.7-34.9-13.8-30 7.9 24.2 107.7-37.1 217.9-143.2 253.4-21.2 7-10.4 36 8.8 29.7zm-62.9-79l.2-71.8c0-8.2-6.6-14.8-14.8-14.8-8.2 0-14.8 6.7-14.8 14.8l-.2 71.8c0 8.2 6.6 14.8 14.8 14.8s14.8-6.6 14.8-14.8zm71-269c2.1 90.9 4.7 131.9-85.5 132.5-92.5-.7-86.9-44.3-85.5-132.5 0-21.8-32.5-19.6-32.5 0v71.6c0 69.3 60.7 90.9 118 90.1 57.3.8 118-20.8 118-90.1v-71.6c0-19.6-32.5-21.8-32.5 0z" ], + "black-tie": [ 448, 512, [], "f27e", "M0 32v448h448V32H0zm316.5 325.2L224 445.9l-92.5-88.7 64.5-184-64.5-86.6h184.9L252 173.2l64.5 184z" ], + blackberry: [ 512, 512, [], "f37b", "M166 116.9c0 23.4-16.4 49.1-72.5 49.1H23.4l21-88.8h67.8c42.1 0 53.8 23.3 53.8 39.7zm126.2-39.7h-67.8L205.7 166h70.1c53.8 0 70.1-25.7 70.1-49.1.1-16.4-11.6-39.7-53.7-39.7zM88.8 208.1H21L0 296.9h70.1c56.1 0 72.5-23.4 72.5-49.1 0-16.3-11.7-39.7-53.8-39.7zm180.1 0h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 0-16.3-11.7-39.7-53.7-39.7zm189.3-53.8h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7zm-28 137.9h-67.8L343.7 381h70.1c56.1 0 70.1-23.4 70.1-49.1 0-16.3-11.6-39.7-53.7-39.7zM240.8 346H173l-18.7 88.8h70.1c56.1 0 70.1-25.7 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7z" ], + blogger: [ 448, 512, [], "f37c", "M162.4 196c4.8-4.9 6.2-5.1 36.4-5.1 27.2 0 28.1.1 32.1 2.1 5.8 2.9 8.3 7 8.3 13.6 0 5.9-2.4 10-7.6 13.4-2.8 1.8-4.5 1.9-31.1 2.1-16.4.1-29.5-.2-31.5-.8-10.3-2.9-14.1-17.7-6.6-25.3zm61.4 94.5c-53.9 0-55.8.2-60.2 4.1-3.5 3.1-5.7 9.4-5.1 13.9.7 4.7 4.8 10.1 9.2 12 2.2 1 14.1 1.7 56.3 1.2l47.9-.6 9.2-1.5c9-5.1 10.5-17.4 3.1-24.4-5.3-4.7-5-4.7-60.4-4.7zm223.4 130.1c-3.5 28.4-23 50.4-51.1 57.5-7.2 1.8-9.7 1.9-172.9 1.8-157.8 0-165.9-.1-172-1.8-8.4-2.2-15.6-5.5-22.3-10-5.6-3.8-13.9-11.8-17-16.4-3.8-5.6-8.2-15.3-10-22C.1 423 0 420.3 0 256.3 0 93.2 0 89.7 1.8 82.6 8.1 57.9 27.7 39 53 33.4c7.3-1.6 332.1-1.9 340-.3 21.2 4.3 37.9 17.1 47.6 36.4 7.7 15.3 7-1.5 7.3 180.6.2 115.8 0 164.5-.7 170.5zm-85.4-185.2c-1.1-5-4.2-9.6-7.7-11.5-1.1-.6-8-1.3-15.5-1.7-12.4-.6-13.8-.8-17.8-3.1-6.2-3.6-7.9-7.6-8-18.3 0-20.4-8.5-39.4-25.3-56.5-12-12.2-25.3-20.5-40.6-25.1-3.6-1.1-11.8-1.5-39.2-1.8-42.9-.5-52.5.4-67.1 6.2-27 10.7-46.3 33.4-53.4 62.4-1.3 5.4-1.6 14.2-1.9 64.3-.4 62.8 0 72.1 4 84.5 9.7 30.7 37.1 53.4 64.6 58.4 9.2 1.7 122.2 2.1 133.7.5 20.1-2.7 35.9-10.8 50.7-25.9 10.7-10.9 17.4-22.8 21.8-38.5 3.2-10.9 2.9-88.4 1.7-93.9z" ], + "blogger-b": [ 448, 512, [], "f37d", "M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z" ], + bluetooth: [ 448, 512, [], "f293", "M292.6 171.1L249.7 214l-.3-86 43.2 43.1m-43.2 219.8l43.1-43.1-42.9-42.9-.2 86zM416 259.4C416 465 344.1 512 230.9 512S32 465 32 259.4 115.4 0 228.6 0 416 53.9 416 259.4zm-158.5 0l79.4-88.6L211.8 36.5v176.9L138 139.6l-27 26.9 92.7 93-92.7 93 26.9 26.9 73.8-73.8 2.3 170 127.4-127.5-83.9-88.7z" ], + "bluetooth-b": [ 320, 512, [], "f294", "M196.48 260.023l92.626-103.333L143.125 0v206.33l-86.111-86.111-31.406 31.405 108.061 108.399L25.608 368.422l31.406 31.405 86.111-86.111L145.84 512l148.552-148.644-97.912-103.333zm40.86-102.996l-49.977 49.978-.338-100.295 50.315 50.317zM187.363 313.04l49.977 49.978-50.315 50.316.338-100.294z" ], + btc: [ 384, 512, [], "f15a", "M310.204 242.638c27.73-14.18 45.377-39.39 41.28-81.3-5.358-57.351-52.458-76.573-114.85-81.929V0h-48.528v77.203c-12.605 0-25.525.315-38.444.63V0h-48.528v79.409c-17.842.539-38.622.276-97.37 0v51.678c38.314-.678 58.417-3.14 63.023 21.427v217.429c-2.925 19.492-18.524 16.685-53.255 16.071L3.765 443.68c88.481 0 97.37.315 97.37.315V512h48.528v-67.06c13.234.315 26.154.315 38.444.315V512h48.528v-68.005c81.299-4.412 135.647-24.894 142.895-101.467 5.671-61.446-23.32-88.862-69.326-99.89zM150.608 134.553c27.415 0 113.126-8.507 113.126 48.528 0 54.515-85.71 48.212-113.126 48.212v-96.74zm0 251.776V279.821c32.772 0 133.127-9.138 133.127 53.255-.001 60.186-100.355 53.253-133.127 53.253z" ], + buromobelexperte: [ 448, 512, [], "f37f", "M0 32v128h128V32H0zm120 120H8V40h112v112zm40-120v128h128V32H160zm120 120H168V40h112v112zm40-120v128h128V32H320zm120 120H328V40h112v112zM0 192v128h128V192H0zm120 120H8V200h112v112zm40-120v128h128V192H160zm120 120H168V200h112v112zm40-120v128h128V192H320zm120 120H328V200h112v112zM0 352v128h128V352H0zm120 120H8V360h112v112zm40-120v128h128V352H160zm120 120H168V360h112v112zm40-120v128h128V352H320z" ], + buysellads: [ 448, 512, [], "f20d", "M224 150.7l42.9 160.7h-85.8L224 150.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-65.3 325.3l-94.5-298.7H159.8L65.3 405.3H156l111.7-91.6 24.2 91.6h90.8z" ], + "cc-amazon-pay": [ 576, 512, [], "f42d", "M124.7 201.8c.1-11.8 0-23.5 0-35.3v-35.3c0-1.3.4-2 1.4-2.7 11.5-8 24.1-12.1 38.2-11.1 12.5.9 22.7 7 28.1 21.7 3.3 8.9 4.1 18.2 4.1 27.7 0 8.7-.7 17.3-3.4 25.6-5.7 17.8-18.7 24.7-35.7 23.9-11.7-.5-21.9-5-31.4-11.7-.9-.8-1.4-1.6-1.3-2.8zm154.9 14.6c4.6 1.8 9.3 2 14.1 1.5 11.6-1.2 21.9-5.7 31.3-12.5.9-.6 1.3-1.3 1.3-2.5-.1-3.9 0-7.9 0-11.8 0-4-.1-8 0-12 0-1.4-.4-2-1.8-2.2-7-.9-13.9-2.2-20.9-2.9-7-.6-14-.3-20.8 1.9-6.7 2.2-11.7 6.2-13.7 13.1-1.6 5.4-1.6 10.8.1 16.2 1.6 5.5 5.2 9.2 10.4 11.2zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zm-207.5 23.9c.4 1.7.9 3.4 1.6 5.1 16.5 40.6 32.9 81.3 49.5 121.9 1.4 3.5 1.7 6.4.2 9.9-2.8 6.2-4.9 12.6-7.8 18.7-2.6 5.5-6.7 9.5-12.7 11.2-4.2 1.1-8.5 1.3-12.9.9-2.1-.2-4.2-.7-6.3-.8-2.8-.2-4.2 1.1-4.3 4-.1 2.8-.1 5.6 0 8.3.1 4.6 1.6 6.7 6.2 7.5 4.7.8 9.4 1.6 14.2 1.7 14.3.3 25.7-5.4 33.1-17.9 2.9-4.9 5.6-10.1 7.7-15.4 19.8-50.1 39.5-100.3 59.2-150.5.6-1.5 1.1-3 1.3-4.6.4-2.4-.7-3.6-3.1-3.7-5.6-.1-11.1 0-16.7 0-3.1 0-5.3 1.4-6.4 4.3-.4 1.1-.9 2.3-1.3 3.4l-29.1 83.7c-2.1 6.1-4.2 12.1-6.5 18.6-.4-.9-.6-1.4-.8-1.9-10.8-29.9-21.6-59.9-32.4-89.8-1.7-4.7-3.5-9.5-5.3-14.2-.9-2.5-2.7-4-5.4-4-6.4-.1-12.8-.2-19.2-.1-2.2 0-3.3 1.6-2.8 3.7zM242.4 206c1.7 11.7 7.6 20.8 18 26.6 9.9 5.5 20.7 6.2 31.7 4.6 12.7-1.9 23.9-7.3 33.8-15.5.4-.3.8-.6 1.4-1 .5 3.2.9 6.2 1.5 9.2.5 2.6 2.1 4.3 4.5 4.4 4.6.1 9.1.1 13.7 0 2.3-.1 3.8-1.6 4-3.9.1-.8.1-1.6.1-2.3v-88.8c0-3.6-.2-7.2-.7-10.8-1.6-10.8-6.2-19.7-15.9-25.4-5.6-3.3-11.8-5-18.2-5.9-3-.4-6-.7-9.1-1.1h-10c-.8.1-1.6.3-2.5.3-8.2.4-16.3 1.4-24.2 3.5-5.1 1.3-10 3.2-15 4.9-3 1-4.5 3.2-4.4 6.5.1 2.8-.1 5.6 0 8.3.1 4.1 1.8 5.2 5.7 4.1 6.5-1.7 13.1-3.5 19.7-4.8 10.3-1.9 20.7-2.7 31.1-1.2 5.4.8 10.5 2.4 14.1 7 3.1 4 4.2 8.8 4.4 13.7.3 6.9.2 13.9.3 20.8 0 .4-.1.7-.2 1.2-.4 0-.8 0-1.1-.1-8.8-2.1-17.7-3.6-26.8-4.1-9.5-.5-18.9.1-27.9 3.2-10.8 3.8-19.5 10.3-24.6 20.8-4.1 8.3-4.6 17-3.4 25.8zM98.7 106.9v175.3c0 .8 0 1.7.1 2.5.2 2.5 1.7 4.1 4.1 4.2 5.9.1 11.8.1 17.7 0 2.5 0 4-1.7 4.1-4.1.1-.8.1-1.7.1-2.5v-60.7c.9.7 1.4 1.2 1.9 1.6 15 12.5 32.2 16.6 51.1 12.9 17.1-3.4 28.9-13.9 36.7-29.2 5.8-11.6 8.3-24.1 8.7-37 .5-14.3-1-28.4-6.8-41.7-7.1-16.4-18.9-27.3-36.7-30.9-2.7-.6-5.5-.8-8.2-1.2h-7c-1.2.2-2.4.3-3.6.5-11.7 1.4-22.3 5.8-31.8 12.7-2 1.4-3.9 3-5.9 4.5-.1-.5-.3-.8-.4-1.2-.4-2.3-.7-4.6-1.1-6.9-.6-3.9-2.5-5.5-6.4-5.6h-9.7c-5.9-.1-6.9 1-6.9 6.8zM493.6 339c-2.7-.7-5.1 0-7.6 1-43.9 18.4-89.5 30.2-136.8 35.8-14.5 1.7-29.1 2.8-43.7 3.2-26.6.7-53.2-.8-79.6-4.3-17.8-2.4-35.5-5.7-53-9.9-37-8.9-72.7-21.7-106.7-38.8-8.8-4.4-17.4-9.3-26.1-14-3.8-2.1-6.2-1.5-8.2 2.1v1.7c1.2 1.6 2.2 3.4 3.7 4.8 36 32.2 76.6 56.5 122 72.9 21.9 7.9 44.4 13.7 67.3 17.5 14 2.3 28 3.8 42.2 4.5 3 .1 6 .2 9 .4.7 0 1.4.2 2.1.3h17.7c.7-.1 1.4-.3 2.1-.3 14.9-.4 29.8-1.8 44.6-4 21.4-3.2 42.4-8.1 62.9-14.7 29.6-9.6 57.7-22.4 83.4-40.1 2.8-1.9 5.7-3.8 8-6.2 4.3-4.4 2.3-10.4-3.3-11.9zm50.4-27.7c-.8-4.2-4-5.8-7.6-7-5.7-1.9-11.6-2.8-17.6-3.3-11-.9-22-.4-32.8 1.6-12 2.2-23.4 6.1-33.5 13.1-1.2.8-2.4 1.8-3.1 3-.6.9-.7 2.3-.5 3.4.3 1.3 1.7 1.6 3 1.5.6 0 1.2 0 1.8-.1l19.5-2.1c9.6-.9 19.2-1.5 28.8-.8 4.1.3 8.1 1.2 12 2.2 4.3 1.1 6.2 4.4 6.4 8.7.3 6.7-1.2 13.1-2.9 19.5-3.5 12.9-8.3 25.4-13.3 37.8-.3.8-.7 1.7-.8 2.5-.4 2.5 1 4 3.4 3.5 1.4-.3 3-1.1 4-2.1 3.7-3.6 7.5-7.2 10.6-11.2 10.7-13.8 17-29.6 20.7-46.6.7-3 1.2-6.1 1.7-9.1.2-4.7.2-9.6.2-14.5z" ], + "cc-amex": [ 576, 512, [], "f1f3", "M576 255.4c-37.9-.2-44.2-.9-54.5 5v-5c-45.3 0-53.5-1.7-64.9 5.2v-5.2h-78.2v5.1c-11.4-6.5-21.4-5.1-75.7-5.1v5.6c-6.3-3.7-14.5-5.6-24.3-5.6h-58c-3.5 3.8-12.5 13.7-15.7 17.2-12.7-14.1-10.5-11.6-15.5-17.2h-83.1v92.3h82c3.3-3.5 12.9-13.9 16.1-17.4 12.7 14.3 10.3 11.7 15.4 17.4h48.9c0-14.7.1-8.3.1-23 11.5.2 24.3-.2 34.3-6.2 0 13.9-.1 17.1-.1 29.2h39.6c0-18.5.1-7.4.1-25.3 6.2 0 7.7 0 9.4.1.1 1.3 0 0 0 25.2 152.8 0 145.9 1.1 156.7-4.5v4.5c34.8 0 54.8 2.2 67.5-6.1V432c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V228.3h26.6c4.2-10.1 2.2-5.3 6.4-15.3h19.2c4.2 10 2.2 5.2 6.4 15.3h52.9v-11.4c2.2 5 1.1 2.5 5.1 11.4h29.5c2.4-5.5 2.6-5.8 5.1-11.4v11.4h135.5v-25.1c6.4 0 8-.1 9.8.2 0 0-.2 10.9.1 24.8h66.5v-8.9c7.4 5.9 17.4 8.9 29.7 8.9h26.8c4.2-10.1 2.2-5.3 6.4-15.3h19c6.5 15 .2.5 6.6 15.3h52.8v-21.9c11.8 19.7 7.8 12.9 13.2 21.9h41.6v-92h-39.9v18.4c-12.2-20.2-6.3-10.4-11.2-18.4h-43.3v20.6c-6.2-14.6-4.6-10.8-8.8-20.6h-32.4c-.4 0-2.3.2-2.3-.3h-27.6c-12.8 0-23.1 3.2-30.7 9.3v-9.3h-39.9v5.3c-10.8-6.1-20.7-5.1-64.4-5.3-.1 0-11.6-.1-11.6 0h-103c-2.5 6.1-6.8 16.4-12.6 30-2.8-6-11-23.8-13.9-30h-46V157c-7.4-17.4-4.7-11-9-21.1H22.9c-3.4 7.9-13.7 32-23.1 53.9V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48v175.4zm-186.6-80.6c-.3.2-1.4 2.2-1.4 7.6 0 6 .9 7.7 1.1 7.9.2.1 1.1.5 3.4.5l7.3-16.9c-1.1 0-2.1-.1-3.1-.1-5.6 0-7 .7-7.3 1zm-19.9 130.9c9.2 3.3 11 9.5 11 18.4l-.1 13.8h-16.6l.1-11.5c0-11.8-3.8-13.8-14.8-13.8h-17.6l-.1 25.3h-16.6l.1-69.3h39.4c13 0 27.1 2.3 27.1 18.7-.1 7.6-4.2 15.3-11.9 18.4zm-6.3-15.4c0-6.4-5.6-7.4-10.7-7.4h-21v15.6h20.7c5.6 0 11-1.3 11-8.2zm181.7-7.1H575v-14.6h-32.9c-12.8 0-23.8 6.6-23.8 20.7 0 33 42.7 12.8 42.7 27.4 0 5.1-4.3 6.4-8.4 6.4h-32l-.1 14.8h32c8.4 0 17.6-1.8 22.5-8.9v-25.8c-10.5-13.8-39.3-1.3-39.3-13.5 0-5.8 4.6-6.5 9.2-6.5zm-99.2-.3v-14.3h-55.2l-.1 69.3h55.2l.1-14.3-38.6-.3v-13.8H445v-14.1h-37.8v-12.5h38.5zm42.2 40.1h-32.2l-.1 14.8h32.2c14.8 0 26.2-5.6 26.2-22 0-33.2-42.9-11.2-42.9-26.3 0-5.6 4.9-6.4 9.2-6.4h30.4v-14.6h-33.2c-12.8 0-23.5 6.6-23.5 20.7 0 33 42.7 12.5 42.7 27.4-.1 5.4-4.7 6.4-8.8 6.4zm-78.1-158.7c-17.4-.3-33.2-4.1-33.2 19.7 0 11.8 2.8 19.9 16.1 19.9h7.4l23.5-54.5h24.8l27.9 65.4v-65.4h25.3l29.1 48.1v-48.1h16.9v69H524l-31.2-51.9v51.9h-33.7l-6.6-15.3h-34.3l-6.4 15.3h-19.2c-22.8 0-33-11.8-33-34 0-23.3 10.5-35.3 34-35.3h16.1v15.2zm14.3 24.5h22.8l-11.2-27.6-11.6 27.6zm-72.6-39.6h-16.9v69.3h16.9v-69.3zm-38.1 37.3c9.5 3.3 11 9.2 11 18.4v13.5h-16.6c-.3-14.8 3.6-25.1-14.8-25.1h-18v25.1h-16.4v-69.3l39.1.3c13.3 0 27.4 2 27.4 18.4.1 8-4.3 15.7-11.7 18.7zm-6.7-15.3c0-6.4-5.6-7.4-10.7-7.4h-21v15.3h20.7c5.7 0 11-1.3 11-7.9zm-59.5-7.4v-14.6h-55.5v69.3h55.5v-14.3h-38.9v-13.8h37.8v-14.1h-37.8v-12.5h38.9zm-84.6 54.7v-54.2l-24 54.2H124l-24-54.2v54.2H66.2l-6.4-15.3H25.3l-6.4 15.3H1l29.7-69.3h24.5l28.1 65.7v-65.7h27.1l21.7 47 19.7-47h27.6v69.3h-16.8zM53.9 188.8l-11.5-27.6-11.2 27.6h22.7zm253 102.5c0 27.9-30.4 23.3-49.3 23.3l-.1 23.3h-32.2l-20.4-23-21.3 23h-65.4l.1-69.3h66.5l20.5 22.8 21-22.8H279c15.6 0 27.9 5.4 27.9 22.7zm-112.7 11.8l-17.9-20.2h-41.7v12.5h36.3v14.1h-36.3v13.8h40.6l19-20.2zM241 276l-25.3 27.4 25.3 28.1V276zm48.3 15.3c0-6.1-4.6-8.4-10.2-8.4h-21.5v17.6h21.2c5.9 0 10.5-2.8 10.5-9.2z" ], + "cc-apple-pay": [ 576, 512, [], "f416", "M302.2 218.4c0 17.2-10.5 27.1-29 27.1h-24.3v-54.2h24.4c18.4 0 28.9 9.8 28.9 27.1zm47.5 62.6c0 8.3 7.2 13.7 18.5 13.7 14.4 0 25.2-9.1 25.2-21.9v-7.7l-23.5 1.5c-13.3.9-20.2 5.8-20.2 14.4zM576 79v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM127.8 197.2c8.4.7 16.8-4.2 22.1-10.4 5.2-6.4 8.6-15 7.7-23.7-7.4.3-16.6 4.9-21.9 11.3-4.8 5.5-8.9 14.4-7.9 22.8zm60.6 74.5c-.2-.2-19.6-7.6-19.8-30-.2-18.7 15.3-27.7 16-28.2-8.8-13-22.4-14.4-27.1-14.7-12.2-.7-22.6 6.9-28.4 6.9-5.9 0-14.7-6.6-24.3-6.4-12.5.2-24.2 7.3-30.5 18.6-13.1 22.6-3.4 56 9.3 74.4 6.2 9.1 13.7 19.1 23.5 18.7 9.3-.4 13-6 24.2-6 11.3 0 14.5 6 24.3 5.9 10.2-.2 16.5-9.1 22.8-18.2 6.9-10.4 9.8-20.4 10-21zm135.4-53.4c0-26.6-18.5-44.8-44.9-44.8h-51.2v136.4h21.2v-46.6h29.3c26.8 0 45.6-18.4 45.6-45zm90 23.7c0-19.7-15.8-32.4-40-32.4-22.5 0-39.1 12.9-39.7 30.5h19.1c1.6-8.4 9.4-13.9 20-13.9 13 0 20.2 6 20.2 17.2v7.5l-26.4 1.6c-24.6 1.5-37.9 11.6-37.9 29.1 0 17.7 13.7 29.4 33.4 29.4 13.3 0 25.6-6.7 31.2-17.4h.4V310h19.6v-68zM516 210.9h-21.5l-24.9 80.6h-.4l-24.9-80.6H422l35.9 99.3-1.9 6c-3.2 10.2-8.5 14.2-17.9 14.2-1.7 0-4.9-.2-6.2-.3v16.4c1.2.4 6.5.5 8.1.5 20.7 0 30.4-7.9 38.9-31.8L516 210.9z" ], + "cc-diners-club": [ 576, 512, [], "f24c", "M239.7 79.9c-96.9 0-175.8 78.6-175.8 175.8 0 96.9 78.9 175.8 175.8 175.8 97.2 0 175.8-78.9 175.8-175.8 0-97.2-78.6-175.8-175.8-175.8zm-39.9 279.6c-41.7-15.9-71.4-56.4-71.4-103.8s29.7-87.9 71.4-104.1v207.9zm79.8.3V151.6c41.7 16.2 71.4 56.7 71.4 104.1s-29.7 87.9-71.4 104.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM329.7 448h-90.3c-106.2 0-193.8-85.5-193.8-190.2C45.6 143.2 133.2 64 239.4 64h90.3c105 0 200.7 79.2 200.7 193.8 0 104.7-95.7 190.2-200.7 190.2z" ], + "cc-discover": [ 576, 512, [], "f1f2", "M83 212.1c0 7.9-3.2 15.5-8.9 20.7-4.9 4.4-11.6 6.4-21.9 6.4H48V185h4.2c10.3 0 16.7 1.7 21.9 6.6 5.7 5 8.9 12.6 8.9 20.5zM504.8 184h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8 0-7.9-5.5-12.1-15.6-12.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM428 253h45.3v-13.8H444V217h28.3v-13.8H444V185h29.3v-14H428v82zm-86.2-82l35 84.2h8.6l35.5-84.2h-17.5l-22.2 55.2-21.9-55.2h-17.5zm-83 41.6c0 24.6 19.9 44.6 44.6 44.6 24.6 0 44.6-19.9 44.6-44.6 0-24.6-19.9-44.6-44.6-44.6-24.6 0-44.6 19.9-44.6 44.6zm-68-.5c0 32.5 33.6 52.5 63.3 38.2v-19c-19.3 19.3-46.8 5.8-46.8-19.2 0-23.7 26.7-39.1 46.8-19v-19c-30.2-15-63.3 6.8-63.3 38zm-33.9 28.3c-7.6 0-13.8-3.7-17.5-10.8l-10.3 9.9c17.8 26.1 56.6 18.2 56.6-11.3 0-13.1-5.4-19-23.6-25.6-9.6-3.4-12.3-5.9-12.3-10.3 0-8.7 14.5-14.1 24.9-2.5l8.4-10.8c-19.1-17.1-49.7-8.9-49.7 14.3 0 11.3 5.2 17.2 20.2 22.7 25.7 9.1 14.7 24.4 3.3 24.4zm-57.4-28.3c0-24.1-18-41.1-44.1-41.1H32v82h23.4c30.9 0 44.1-22.4 44.1-40.9zm23.4-41.1h-16v82h16v-82zM544 288c-33.3 20.8-226.4 124.4-416 160h401c8.2 0 15-6.8 15-15V288zm0-35l-25.9-34.5c12.1-2.5 18.7-10.6 18.7-23.2 0-28.5-30.3-24.4-52.9-24.4v82h16v-32.8h2.2l22.2 32.8H544z" ], + "cc-jcb": [ 576, 512, [], "f24b", "M431.5 244.3V212c41.2 0 38.5.2 38.5.2 7.3 1.3 13.3 7.3 13.3 16 0 8.8-6 14.5-13.3 15.8-1.2.4-3.3.3-38.5.3zm42.8 20.2c-2.8-.7-3.3-.5-42.8-.5v35c39.6 0 40 .2 42.8-.5 7.5-1.5 13.5-8 13.5-17 0-8.7-6-15.5-13.5-17zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM182 192.3h-57c0 67.1 10.7 109.7-35.8 109.7-19.5 0-38.8-5.7-57.2-14.8v28c30 8.3 68 8.3 68 8.3 97.9 0 82-47.7 82-131.2zm178.5 4.5c-63.4-16-165-14.9-165 59.3 0 77.1 108.2 73.6 165 59.2V287C312.9 311.7 253 309 253 256s59.8-55.6 107.5-31.2v-28zM544 286.5c0-18.5-16.5-30.5-38-32v-.8c19.5-2.7 30.3-15.5 30.3-30.2 0-19-15.7-30-37-31 0 0 6.3-.3-120.3-.3v127.5h122.7c24.3.1 42.3-12.9 42.3-33.2z" ], + "cc-mastercard": [ 576, 512, [], "f1f1", "M482.9 410.3c0 6.8-4.6 11.7-11.2 11.7-6.8 0-11.2-5.2-11.2-11.7 0-6.5 4.4-11.7 11.2-11.7 6.6 0 11.2 5.2 11.2 11.7zm-310.8-11.7c-7.1 0-11.2 5.2-11.2 11.7 0 6.5 4.1 11.7 11.2 11.7 6.5 0 10.9-4.9 10.9-11.7-.1-6.5-4.4-11.7-10.9-11.7zm117.5-.3c-5.4 0-8.7 3.5-9.5 8.7h19.1c-.9-5.7-4.4-8.7-9.6-8.7zm107.8.3c-6.8 0-10.9 5.2-10.9 11.7 0 6.5 4.1 11.7 10.9 11.7 6.8 0 11.2-4.9 11.2-11.7 0-6.5-4.4-11.7-11.2-11.7zm105.9 26.1c0 .3.3.5.3 1.1 0 .3-.3.5-.3 1.1-.3.3-.3.5-.5.8-.3.3-.5.5-1.1.5-.3.3-.5.3-1.1.3-.3 0-.5 0-1.1-.3-.3 0-.5-.3-.8-.5-.3-.3-.5-.5-.5-.8-.3-.5-.3-.8-.3-1.1 0-.5 0-.8.3-1.1 0-.5.3-.8.5-1.1.3-.3.5-.3.8-.5.5-.3.8-.3 1.1-.3.5 0 .8 0 1.1.3.5.3.8.3 1.1.5s.2.6.5 1.1zm-2.2 1.4c.5 0 .5-.3.8-.3.3-.3.3-.5.3-.8 0-.3 0-.5-.3-.8-.3 0-.5-.3-1.1-.3h-1.6v3.5h.8V426h.3l1.1 1.4h.8l-1.1-1.3zM576 81v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V81c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM64 220.6c0 76.5 62.1 138.5 138.5 138.5 27.2 0 53.9-8.2 76.5-23.1-72.9-59.3-72.4-171.2 0-230.5-22.6-15-49.3-23.1-76.5-23.1-76.4-.1-138.5 62-138.5 138.2zm224 108.8c70.5-55 70.2-162.2 0-217.5-70.2 55.3-70.5 162.6 0 217.5zm-142.3 76.3c0-8.7-5.7-14.4-14.7-14.7-4.6 0-9.5 1.4-12.8 6.5-2.4-4.1-6.5-6.5-12.2-6.5-3.8 0-7.6 1.4-10.6 5.4V392h-8.2v36.7h8.2c0-18.9-2.5-30.2 9-30.2 10.2 0 8.2 10.2 8.2 30.2h7.9c0-18.3-2.5-30.2 9-30.2 10.2 0 8.2 10 8.2 30.2h8.2v-23zm44.9-13.7h-7.9v4.4c-2.7-3.3-6.5-5.4-11.7-5.4-10.3 0-18.2 8.2-18.2 19.3 0 11.2 7.9 19.3 18.2 19.3 5.2 0 9-1.9 11.7-5.4v4.6h7.9V392zm40.5 25.6c0-15-22.9-8.2-22.9-15.2 0-5.7 11.9-4.8 18.5-1.1l3.3-6.5c-9.4-6.1-30.2-6-30.2 8.2 0 14.3 22.9 8.3 22.9 15 0 6.3-13.5 5.8-20.7.8l-3.5 6.3c11.2 7.6 32.6 6 32.6-7.5zm35.4 9.3l-2.2-6.8c-3.8 2.1-12.2 4.4-12.2-4.1v-16.6h13.1V392h-13.1v-11.2h-8.2V392h-7.6v7.3h7.6V416c0 17.6 17.3 14.4 22.6 10.9zm13.3-13.4h27.5c0-16.2-7.4-22.6-17.4-22.6-10.6 0-18.2 7.9-18.2 19.3 0 20.5 22.6 23.9 33.8 14.2l-3.8-6c-7.8 6.4-19.6 5.8-21.9-4.9zm59.1-21.5c-4.6-2-11.6-1.8-15.2 4.4V392h-8.2v36.7h8.2V408c0-11.6 9.5-10.1 12.8-8.4l2.4-7.6zm10.6 18.3c0-11.4 11.6-15.1 20.7-8.4l3.8-6.5c-11.6-9.1-32.7-4.1-32.7 15 0 19.8 22.4 23.8 32.7 15l-3.8-6.5c-9.2 6.5-20.7 2.6-20.7-8.6zm66.7-18.3H408v4.4c-8.3-11-29.9-4.8-29.9 13.9 0 19.2 22.4 24.7 29.9 13.9v4.6h8.2V392zm33.7 0c-2.4-1.2-11-2.9-15.2 4.4V392h-7.9v36.7h7.9V408c0-11 9-10.3 12.8-8.4l2.4-7.6zm40.3-14.9h-7.9v19.3c-8.2-10.9-29.9-5.1-29.9 13.9 0 19.4 22.5 24.6 29.9 13.9v4.6h7.9v-51.7zm7.6-75.1v4.6h.8V302h1.9v-.8h-4.6v.8h1.9zm6.6 123.8c0-.5 0-1.1-.3-1.6-.3-.3-.5-.8-.8-1.1-.3-.3-.8-.5-1.1-.8-.5 0-1.1-.3-1.6-.3-.3 0-.8.3-1.4.3-.5.3-.8.5-1.1.8-.5.3-.8.8-.8 1.1-.3.5-.3 1.1-.3 1.6 0 .3 0 .8.3 1.4 0 .3.3.8.8 1.1.3.3.5.5 1.1.8.5.3 1.1.3 1.4.3.5 0 1.1 0 1.6-.3.3-.3.8-.5 1.1-.8.3-.3.5-.8.8-1.1.3-.6.3-1.1.3-1.4zm3.2-124.7h-1.4l-1.6 3.5-1.6-3.5h-1.4v5.4h.8v-4.1l1.6 3.5h1.1l1.4-3.5v4.1h1.1v-5.4zm4.4-80.5c0-76.2-62.1-138.3-138.5-138.3-27.2 0-53.9 8.2-76.5 23.1 72.1 59.3 73.2 171.5 0 230.5 22.6 15 49.5 23.1 76.5 23.1 76.4.1 138.5-61.9 138.5-138.4z" ], + "cc-paypal": [ 576, 512, [], "f1f4", "M186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5z" ], + "cc-stripe": [ 576, 512, [], "f1f5", "M396.9 256.5c0 19.1-8.8 33.4-21.9 33.4-8.3 0-13.3-3-16.8-6.7l-.2-52.8c3.7-4.1 8.8-7 17-7 12.9-.1 21.9 14.5 21.9 33.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM122.2 281.1c0-42.3-54.3-34.7-54.3-50.7 0-5.5 4.6-7.7 12.1-7.7 10.8 0 24.5 3.3 35.3 9.1v-33.4c-11.8-4.7-23.5-6.5-35.3-6.5-28.8 0-48 15-48 40.2 0 39.3 54 32.9 54 49.9 0 6.6-5.7 8.7-13.6 8.7-11.8 0-26.9-4.9-38.9-11.3v33.9c13.2 5.7 26.6 8.1 38.8 8.1 29.6-.2 49.9-14.7 49.9-40.3zm68.9-86.9h-27v-30.8l-34.7 7.4-.2 113.9c0 21 15.8 36.5 36.9 36.5 11.6 0 20.2-2.1 24.9-4.7v-28.9c-4.5 1.8-27 8.3-27-12.6v-50.5h27v-30.3zm73.8 0c-4.7-1.7-21.3-4.8-29.6 10.5l-2.2-10.5h-30.7v124.5h35.5v-84.4c8.4-11 22.6-8.9 27.1-7.4v-32.7zm44.2 0h-35.7v124.5h35.7V194.2zm0-47.3l-35.7 7.6v28.9l35.7-7.6v-28.9zm122.7 108.8c0-41.3-23.5-63.8-48.4-63.8-13.9 0-22.9 6.6-27.8 11.1l-1.8-8.8h-31.3V360l35.5-7.5.1-40.2c5.1 3.7 12.7 9 25.1 9 25.4-.1 48.6-20.5 48.6-65.6zm112.2 1.2c0-36.4-17.6-65.1-51.3-65.1-33.8 0-54.3 28.7-54.3 64.9 0 42.8 24.2 64.5 58.8 64.5 17 0 29.7-3.9 39.4-9.2v-28.6c-9.7 4.9-20.8 7.9-34.9 7.9-13.8 0-26-4.9-27.6-21.5h69.5c.1-2 .4-9.4.4-12.9zm-51.6-36.1c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7z" ], + "cc-visa": [ 576, 512, [], "f1f0", "M470.1 231.3s7.6 37.2 9.3 45H446c3.3-8.9 16-43.5 16-43.5-.2.3 3.3-9.1 5.3-14.9l2.8 13.4zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM152.5 331.2L215.7 176h-42.5l-39.3 106-4.3-21.5-14-71.4c-2.3-9.9-9.4-12.7-18.2-13.1H32.7l-.7 3.1c15.8 4 29.9 9.8 42.2 17.1l35.8 135h42.5zm94.4.2L272.1 176h-40.2l-25.1 155.4h40.1zm139.9-50.8c.2-17.7-10.6-31.2-33.7-42.3-14.1-7.1-22.7-11.9-22.7-19.2.2-6.6 7.3-13.4 23.1-13.4 13.1-.3 22.7 2.8 29.9 5.9l3.6 1.7 5.5-33.6c-7.9-3.1-20.5-6.6-36-6.6-39.7 0-67.6 21.2-67.8 51.4-.3 22.3 20 34.7 35.2 42.2 15.5 7.6 20.8 12.6 20.8 19.3-.2 10.4-12.6 15.2-24.1 15.2-16 0-24.6-2.5-37.7-8.3l-5.3-2.5-5.6 34.9c9.4 4.3 26.8 8.1 44.8 8.3 42.2.1 69.7-20.8 70-53zM528 331.4L495.6 176h-31.1c-9.6 0-16.9 2.8-21 12.9l-59.7 142.5H426s6.9-19.2 8.4-23.3H486c1.2 5.5 4.8 23.3 4.8 23.3H528z" ], + centercode: [ 512, 512, [], "f380", "M329.2 268.6c-3.8 35.2-35.4 60.6-70.6 56.8-35.2-3.8-60.6-35.4-56.8-70.6 3.8-35.2 35.4-60.6 70.6-56.8 35.1 3.8 60.6 35.4 56.8 70.6zm-85.8 235.1C96.7 496-8.2 365.5 10.1 224.3c11.2-86.6 65.8-156.9 139.1-192 161-77.1 349.7 37.4 354.7 216.6 4.1 147-118.4 262.2-260.5 254.8zm179.9-180c27.9-118-160.5-205.9-237.2-234.2-57.5 56.3-69.1 188.6-33.8 344.4 68.8 15.8 169.1-26.4 271-110.2z" ], + chrome: [ 496, 512, [], "f268", "M131.5 217.5L55.1 100.1c47.6-59.2 119-91.8 192-92.1 42.3-.3 85.5 10.5 124.8 33.2 43.4 25.2 76.4 61.4 97.4 103L264 133.4c-58.1-3.4-113.4 29.3-132.5 84.1zm32.9 38.5c0 46.2 37.4 83.6 83.6 83.6s83.6-37.4 83.6-83.6-37.4-83.6-83.6-83.6-83.6 37.3-83.6 83.6zm314.9-89.2L339.6 174c37.9 44.3 38.5 108.2 6.6 157.2L234.1 503.6c46.5 2.5 94.4-7.7 137.8-32.9 107.4-62 150.9-192 107.4-303.9zM133.7 303.6L40.4 120.1C14.9 159.1 0 205.9 0 256c0 124 90.8 226.7 209.5 244.9l63.7-124.8c-57.6 10.8-113.2-20.8-139.5-72.5z" ], + cloudscale: [ 448, 512, [], "f383", "M318.1 154l-9.4 7.6c-22.5-19.3-51.5-33.6-83.3-33.6C153.8 128 96 188.8 96 260.3c0 6.6.4 13.1 1.4 19.4-2-56 41.8-97.4 92.6-97.4 24.2 0 46.2 9.4 62.6 24.7l-25.2 20.4c-8.3-.9-16.8 1.8-23.1 8.1-11.1 11-11.1 28.9 0 40 11.1 11 28.9 11 40 0 6.3-6.3 9-14.9 8.1-23.1l75.2-88.8c6.3-6.5-3.3-15.9-9.5-9.6zm-83.8 111.5c-5.6 5.5-14.6 5.5-20.2 0-5.6-5.6-5.6-14.6 0-20.2s14.6-5.6 20.2 0 5.6 14.7 0 20.2zM224 32C100.5 32 0 132.5 0 256s100.5 224 224 224 224-100.5 224-224S347.5 32 224 32zm0 384c-88.2 0-160-71.8-160-160S135.8 96 224 96s160 71.8 160 160-71.8 160-160 160z" ], + cloudsmith: [ 332, 512, [], "f384", "M332.5 419.9c0 46.4-37.6 84.1-84 84.1s-84-37.7-84-84.1 37.6-84 84-84 84 37.6 84 84zm-84-243.9c46.4 0 80-37.6 80-84s-33.6-84-80-84-88 37.6-88 84-29.6 76-76 76-84 41.6-84 88 37.6 80 84 80 84-33.6 84-80 33.6-80 80-80z" ], + cloudversify: [ 616, 512, [], "f385", "M148.6 304c8.2 68.5 67.4 115.5 146 111.3 51.2 43.3 136.8 45.8 186.4-5.6 69.2 1.1 118.5-44.6 131.5-99.5 14.8-62.5-18.2-132.5-92.1-155.1-33-88.1-131.4-101.5-186.5-85-57.3 17.3-84.3 53.2-99.3 109.7-7.8 2.7-26.5 8.9-45 24.1 11.7 0 15.2 8.9 15.2 19.5v20.4c0 10.7-8.7 19.5-19.5 19.5h-20.2c-10.7 0-19.5-6-19.5-16.7V240H98.8C95 240 88 244.3 88 251.9v40.4c0 6.4 5.3 11.8 11.7 11.8h48.9zm227.4 8c-10.7 46.3 21.7 72.4 55.3 86.8C324.1 432.6 259.7 348 296 288c-33.2 21.6-33.7 71.2-29.2 92.9-17.9-12.4-53.8-32.4-57.4-79.8-3-39.9 21.5-75.7 57-93.9C297 191.4 369.9 198.7 400 248c-14.1-48-53.8-70.1-101.8-74.8 30.9-30.7 64.4-50.3 114.2-43.7 69.8 9.3 133.2 82.8 67.7 150.5 35-16.3 48.7-54.4 47.5-76.9l10.5 19.6c11.8 22 15.2 47.6 9.4 72-9.2 39-40.6 68.8-79.7 76.5-32.1 6.3-83.1-5.1-91.8-59.2zM128 208H88.2c-8.9 0-16.2-7.3-16.2-16.2v-39.6c0-8.9 7.3-16.2 16.2-16.2H128c8.9 0 16.2 7.3 16.2 16.2v39.6c0 8.9-7.3 16.2-16.2 16.2zM10.1 168C4.5 168 0 163.5 0 157.9v-27.8c0-5.6 4.5-10.1 10.1-10.1h27.7c5.5 0 10.1 4.5 10.1 10.1v27.8c0 5.6-4.5 10.1-10.1 10.1H10.1zM168 142.7v-21.4c0-5.1 4.2-9.3 9.3-9.3h21.4c5.1 0 9.3 4.2 9.3 9.3v21.4c0 5.1-4.2 9.3-9.3 9.3h-21.4c-5.1 0-9.3-4.2-9.3-9.3zM56 235.5v25c0 6.3-5.1 11.5-11.4 11.5H19.4C13.1 272 8 266.8 8 260.5v-25c0-6.3 5.1-11.5 11.4-11.5h25.1c6.4 0 11.5 5.2 11.5 11.5z" ], + codepen: [ 512, 512, [], "f1cb", "M502.285 159.704l-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285zM278 63.131l172.286 114.858-76.857 51.429L278 165.703V63.131zm-44 0v102.572l-95.429 63.715-76.857-51.429L234 63.131zM44 219.132l55.143 36.857L44 292.846v-73.714zm190 229.715L61.714 333.989l76.857-51.429L234 346.275v102.572zm22-140.858l-77.715-52 77.715-52 77.715 52-77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429L278 448.847zm190-156.001l-55.143-36.857L468 219.132v73.714z" ], + codiepie: [ 472, 512, [], "f284", "M422.5 202.9c30.7 0 33.5 53.1-.3 53.1h-10.8v44.3h-26.6v-97.4h37.7zM472 352.6C429.9 444.5 350.4 504 248 504 111 504 0 393 0 256S111 8 248 8c97.4 0 172.8 53.7 218.2 138.4l-186 108.8L472 352.6zm-38.5 12.5l-60.3-30.7c-27.1 44.3-70.4 71.4-122.4 71.4-82.5 0-149.2-66.7-149.2-148.9 0-82.5 66.7-149.2 149.2-149.2 48.4 0 88.9 23.5 116.9 63.4l59.5-34.6c-40.7-62.6-104.7-100-179.2-100-121.2 0-219.5 98.3-219.5 219.5S126.8 475.5 248 475.5c78.6 0 146.5-42.1 185.5-110.4z" ], + connectdevelop: [ 576, 512, [], "f20e", "M550.5 241l-50.089-86.786c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.733-14.732-15.001l-55.447-95.893c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.268-15.268-15.268-4.821 0-8.839 2.143-11.786 5.625H299.518C296.839 18.143 292.821 16 288 16s-8.839 2.143-11.518 5.625H170.411C167.464 18.143 163.447 16 158.625 16c-8.303 0-15.268 6.696-15.268 15.268 0 1.607.536 3.482 1.072 4.821l-55.983 97.233c-5.356 2.41-9.107 7.5-9.107 13.661 0 .535.268 1.071.268 1.607l-53.304 92.143c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.393 12.054 15l55.179 95.358c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.393 12.054 14.732l51.697 89.732c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.268 15.268 15.268 4.821 0 8.839-2.143 11.518-5.357h106.875C279.161 493.857 283.447 496 288 496s8.839-2.143 11.518-5.357h107.143c2.678 2.946 6.696 4.821 10.982 4.821 8.571 0 15.268-6.964 15.268-15.268 0-1.607-.267-2.946-.803-4.285l51.697-90.268c6.964-1.339 12.054-7.5 12.054-14.732 0-1.607-.268-3.214-.804-4.821l54.911-95.358c6.964-1.339 12.322-7.5 12.322-15-.002-7.232-5.092-13.393-11.788-14.732zM153.535 450.732l-43.66-75.803h43.66v75.803zm0-83.839h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.999-47.41v50.624zm0-62.411l-50.357 53.304c-1.339-.536-2.679-1.34-4.018-1.607L43.447 259.75c.535-1.339.535-2.679.535-4.018s0-2.41-.268-3.482l51.965-90c2.679-.268 5.357-1.072 7.768-2.679l50.089 51.965v92.946zm0-102.322l-45.803-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.928-15.804v72.053zm0-80.625l-43.66 15.804 43.66-75.536v59.732zm326.519 39.108l.804 1.339L445.5 329.125l-63.75-67.232 98.036-101.518.268.268zM291.75 355.107l11.518 11.786H280.5l11.25-11.786zm-.268-11.25l-83.303-85.446 79.553-84.375 83.036 87.589-79.286 82.232zm5.357 5.893l79.286-82.232 67.5 71.25-5.892 28.125H313.714l-16.875-17.143zM410.411 44.393c1.071.536 2.142 1.072 3.482 1.34l57.857 100.714v.536c0 2.946.803 5.624 2.143 7.767L376.393 256l-83.035-87.589L410.411 44.393zm-9.107-2.143L287.732 162.518l-57.054-60.268 166.339-60h4.287zm-123.483 0c2.678 2.678 6.16 4.285 10.179 4.285s7.5-1.607 10.179-4.285h75L224.786 95.821 173.893 42.25h103.928zm-116.249 5.625l1.071-2.142a33.834 33.834 0 0 0 2.679-.804l51.161 53.84-54.911 19.821V47.875zm0 79.286l60.803-21.964 59.732 63.214-79.553 84.107-40.982-42.053v-83.304zm0 92.678L198 257.607l-36.428 38.304v-76.072zm0 87.858l42.053-44.464 82.768 85.982-17.143 17.678H161.572v-59.196zm6.964 162.053c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.732h99.91l-91.607 94.821h-1.339zm129.911 0c-2.679-2.41-6.428-4.285-10.447-4.285s-7.767 1.875-10.447 4.285h-96.429l91.607-94.821h38.304l91.607 94.821H298.447zm120-11.786l-4.286 7.5c-1.339.268-2.41.803-3.482 1.339l-89.196-91.875h114.376l-17.412 83.036zm12.856-22.232l12.858-60.803h21.964l-34.822 60.803zm34.822-68.839h-20.357l4.553-21.16 17.143 18.214c-.535.803-1.071 1.874-1.339 2.946zm66.161-107.411l-55.447 96.697c-1.339.535-2.679 1.071-4.018 1.874l-20.625-21.964 34.554-163.928 45.803 79.286c-.267 1.339-.803 2.678-.803 4.285 0 1.339.268 2.411.536 3.75z" ], + contao: [ 512, 512, [], "f26d", "M45.4 305c14.4 67.1 26.4 129 68.2 175H34c-18.7 0-34-15.2-34-34V66c0-18.7 15.2-34 34-34h57.7C77.9 44.6 65.6 59.2 54.8 75.6c-45.4 70-27 146.8-9.4 229.4zM478 32h-90.2c21.4 21.4 39.2 49.5 52.7 84.1l-137.1 29.3c-14.9-29-37.8-53.3-82.6-43.9-24.6 5.3-41 19.3-48.3 34.6-8.8 18.7-13.2 39.8 8.2 140.3 21.1 100.2 33.7 117.7 49.5 131.2 12.9 11.1 33.4 17 58.3 11.7 44.5-9.4 55.7-40.7 57.4-73.2l137.4-29.6c3.2 71.5-18.7 125.2-57.4 163.6H478c18.7 0 34-15.2 34-34V66c0-18.8-15.2-34-34-34z" ], + cpanel: [ 640, 512, [], "f388", "M52.9 213.7h40l-6.2 23.6c-1.9 6.5-7.4 10.9-14.3 10.9H53.8c-24.9 0-24.7 37.4 0 37.4h11.3c4.2 0 7.6 3.9 6.4 8.3L64.4 320H52c-33.5 0-59-31.4-50.3-65.2 7.3-27 28.3-41.1 51.2-41.1M73.1 320L108 189.9c1.8-6.4 7.2-10.9 14.3-10.9h37c24.1 0 45.4 16.4 51 41.2 6.6 29.1-14.5 65.3-51.7 65.3h-32l6.4-23.8c1.8-6.2 7.3-10.8 14.3-10.8h10.3c12.4 0 20.8-11.7 18.3-22.6-2.1-9.2-9.9-14.8-18.3-14.8h-19.8L112 309.2c-1.9 6.2-7.4 10.7-14.2 10.7l-24.7.1m220.6-69.4c.3-1 1.9-5.3-2.1-5.3h-57.5c-9.7 0-16.6-8.9-14.2-18.5l3.5-13.4h77.9c18.8 0 33.3 17.6 28.5 36.8l-14 51.8c-2.8 10.6-12.2 17.8-23.4 17.8l-57.5-.2c-42.9 0-38.5-63.8.7-63.8H284l-3.5 13.2c-1.9 6.2-7.4 10.8-14.2 10.8h-21.6c-5.3 0-5.3 7.9 0 7.9h34.9c4.6 0 5.1-3.9 5.5-5.3l8.6-31.8m103.1-36.9c34.4 0 59.3 32.3 50.3 65.4l-8.8 33.1c-1.2 4.9-5.7 7.8-10.3 7.8h-19.1c-4.5 0-7.6-4-6.4-8.3l10.6-40c3.3-11.6-5.6-23.4-18.1-23.4h-19.8l-17.2 64c-1.2 4.8-5.6 7.8-10.4 7.8h-18.9c-4.2 0-7.6-3.9-6.4-8.3l26.2-98h48.3M498 251.6l-8 30c-.9 3.3 1.5 6.7 5.1 6.7h73.3l-5.7 21c-1.9 6.2-7.4 10.7-14.2 10.7h-66.7c-20 0-33.3-19-28.3-36.7l10.8-40c4.8-17.6 20.7-29.6 38.6-29.6h47.3c19 0 33.2 17.7 28.3 36.8l-3.2 12c-2.9 11-12.7 17.6-23.2 17.6h-53.4l3.5-13c1.6-6.2 7.2-10.8 14.2-10.8H538c2 0 3.3-1 3.9-3l.7-2.6c.7-2.7-1.3-5.1-3.9-5.1h-32.9c-4.1 0-6.9 2.1-7.8 6zm70.2 68.4l35.6-133.1c1.2-4.7 5.5-7.9 10.4-7.9h18.9c4.5 0 7.7 4 6.5 8.3l-26.5 98.2c-5.1 20.7-24.2 34.5-44.9 34.5" ], + "creative-commons": [ 496, 512, [], "f25e", "M245.83 214.87l-33.22 17.28c-9.43-19.58-25.24-19.93-27.46-19.93-22.13 0-33.22 14.61-33.22 43.84 0 23.57 9.21 43.84 33.22 43.84 14.47 0 24.65-7.09 30.57-21.26l30.55 15.5c-6.17 11.51-25.69 38.98-65.1 38.98-22.6 0-73.96-10.32-73.96-77.05 0-58.69 43-77.06 72.63-77.06 30.72-.01 52.7 11.95 65.99 35.86zm143.05 0l-32.78 17.28c-9.5-19.77-25.72-19.93-27.9-19.93-22.14 0-33.22 14.61-33.22 43.84 0 23.55 9.23 43.84 33.22 43.84 14.45 0 24.65-7.09 30.54-21.26l31 15.5c-2.1 3.75-21.39 38.98-65.09 38.98-22.69 0-73.96-9.87-73.96-77.05 0-58.67 42.97-77.06 72.63-77.06 30.71-.01 52.58 11.95 65.56 35.86zM247.56 8.05C104.74 8.05 0 123.11 0 256.05c0 138.49 113.6 248 247.56 248 129.93 0 248.44-100.87 248.44-248 0-137.87-106.62-248-248.44-248zm.87 450.81c-112.54 0-203.7-93.04-203.7-202.81 0-105.42 85.43-203.27 203.72-203.27 112.53 0 202.82 89.46 202.82 203.26-.01 121.69-99.68 202.82-202.84 202.82z" ], + "creative-commons-by": [ 496, 512, [], "f4e7", "M314.9 194.4v101.4h-28.3v120.5h-77.1V295.9h-28.3V194.4c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7H299c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3zm-101.5-63.7c0-23.3 11.5-35 34.5-35s34.5 11.7 34.5 35c0 23-11.5 34.5-34.5 34.5s-34.5-11.5-34.5-34.5zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z" ], + "creative-commons-nc": [ 496, 512, [], "f4e8", "M247.6 8C387.4 8 496 115.9 496 256c0 147.2-118.5 248-248.4 248C113.1 504 0 393.2 0 256 0 123.1 104.7 8 247.6 8zM55.8 189.1c-7.4 20.4-11.1 42.7-11.1 66.9 0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4v38.1h-28.8V368c-27.5-.3-52.6-10.2-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4zM248.4 52.3c-38.4 0-112.4 8.7-170.5 93l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3v-38.1h28.8v38.1c22.7 1.2 43.4 8.9 62 23L295 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8z" ], + "creative-commons-nc-eu": [ 496, 512, [], "f4e9", "M247.7 8C103.6 8 0 124.8 0 256c0 136.3 111.7 248 247.7 248C377.9 504 496 403.1 496 256 496 117 388.4 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-23.2 3.7-45.2 10.9-66l65.7 29.1h-4.7v29.5h23.3c0 6.2-.4 3.2-.4 19.5h-22.8v29.5h27c11.4 67 67.2 101.3 124.6 101.3 26.6 0 50.6-7.9 64.8-15.8l-10-46.1c-8.7 4.6-28.2 10.8-47.3 10.8-28.2 0-58.1-10.9-67.3-50.2h90.3l128.3 56.8c-1.5 2.1-56.2 104.3-178.8 104.3zm-16.7-190.6l-.5-.4.9.4h-.4zm77.2-19.5h3.7v-29.5h-70.3l-28.6-12.6c2.5-5.5 5.4-10.5 8.8-14.3 12.9-15.8 31.1-22.4 51.1-22.4 18.3 0 35.3 5.4 46.1 10l11.6-47.3c-15-6.6-37-12.4-62.3-12.4-39 0-72.2 15.8-95.9 42.3-5.3 6.1-9.8 12.9-13.9 20.1l-81.6-36.1c64.6-96.8 157.7-93.6 170.7-93.6 113 0 203 90.2 203 203.4 0 18.7-2.1 36.3-6.3 52.9l-136.1-60.5z" ], + "creative-commons-nc-jp": [ 496, 512, [], "f4ea", "M247.7 8C103.6 8 0 124.8 0 256c0 136.4 111.8 248 247.7 248C377.9 504 496 403.2 496 256 496 117.2 388.5 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-21.1 3-41.2 9-60.3l127 56.5h-27.9v38.6h58.1l5.7 11.8v18.7h-63.8V360h63.8v56h61.7v-56h64.2v-35.7l81 36.1c-1.5 2.2-57.1 98.3-175.2 98.3zm87.6-137.3h-57.6v-18.7l2.9-5.6 54.7 24.3zm6.5-51.4v-17.8h-38.6l63-116H301l-43.4 96-23-10.2-39.6-85.7h-65.8l27.3 51-81.9-36.5c27.8-44.1 82.6-98.1 173.7-98.1 112.8 0 203 90 203 203.4 0 21-2.7 40.6-7.9 59l-101-45.1z" ], + "creative-commons-nd": [ 496, 512, [], "f4eb", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm94 144.3v42.5H162.1V197h180.3zm0 79.8v42.5H162.1v-42.5h180.3z" ], + "creative-commons-pd": [ 496, 512, [], "f4ec", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm0 449.5c-139.2 0-235.8-138-190.2-267.9l78.8 35.1c-2.1 10.5-3.3 21.5-3.3 32.9 0 99 73.9 126.9 120.4 126.9 22.9 0 53.5-6.7 79.4-29.5L297 311.1c-5.5 6.3-17.6 16.7-36.3 16.7-37.8 0-53.7-39.9-53.9-71.9 230.4 102.6 216.5 96.5 217.9 96.8-34.3 62.4-100.6 104.8-176.7 104.8zm194.2-150l-224-100c18.8-34 54.9-30.7 74.7-11l40.4-41.6c-27.1-23.3-58-27.5-78.1-27.5-47.4 0-80.9 20.5-100.7 51.6l-74.9-33.4c36.1-54.9 98.1-91.2 168.5-91.2 111.1 0 201.5 90.4 201.5 201.5 0 18-2.4 35.4-6.8 52-.3-.1-.4-.2-.6-.4z" ], + "creative-commons-pd-alt": [ 496, 512, [], "f4ed", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM135.5 323.3V186h68.2c33.7 0 50.5 15.5 50.5 46.5 0 9-3 46.5-57.1 46.5h-27v44.3h-34.6zm34.1-111.6v41.6h29.2c27.9 0 30-41.6-.9-41.6h-28.3zm93.9 111.6V186h53.2c21.4 0 70 5.2 70 68.6 0 63.5-48.6 68.6-70 68.6h-53.2zm34.1-108.5v79.7h19.9c24 0 34.5-15.3 34.5-39.9 0-42-31.2-39.9-35-39.9l-19.4.1z" ], + "creative-commons-remix": [ 496, 512, [], "f4ee", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm161.7 207.7l4.9 2.2v70c-7.2 3.6-63.4 27.5-67.3 28.8-6.5-1.8-113.7-46.8-137.3-56.2l-64.2 26.6-63.3-27.5v-63.8l59.3-24.8c-.7-.7-.4 5-.4-70.4l67.3-29.7L361 178.5v61.6l49.1 20.3zm-70.4 81.5v-43.8h-.4v-1.8l-113.8-46.5V295l113.8 46.9v-.4l.4.4zm7.5-57.6l39.9-16.4-36.8-15.5-39 16.4 35.9 15.5zm52.3 38.1v-43L355.2 298v43.4l44.3-19z" ], + "creative-commons-sa": [ 496, 512, [], "f4ef", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM137.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97h62.5c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6-33.1 0-51.7 14.6-55.8 43.8h18.2l-49.2 49.2-49-49.2h19.4z" ], + "creative-commons-sampling": [ 496, 512, [], "f4f0", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm3.6 53.2c2.8-.3 11.5 1 11.5 11.5l6.6 107.2 4.9-59.3c0-6 4.7-10.6 10.6-10.6 5.9 0 10.6 4.7 10.6 10.6 0 2.5-.5-5.7 5.7 81.5l5.8-64.2c.3-2.9 2.9-9.3 10.2-9.3 3.8 0 9.9 2.3 10.6 8.9l11.5 96.5 5.3-12.8c1.8-4.4 5.2-6.6 10.2-6.6h58v21.3h-50.9l-18.2 44.3c-3.9 9.9-19.5 9.1-20.8-3.1l-4-31.9-7.5 92.6c-.3 3-3 9.3-10.2 9.3-3 0-9.8-2.1-10.6-9.3 0-1.9.6 5.8-6.2-77.9l-5.3 72.2c-1.1 4.8-4.8 9.3-10.6 9.3-2.9 0-9.8-2-10.6-9.3 0-1.9.5 6.7-5.8-87.7l-5.8 94.8c0 6.3-3.6 12.4-10.6 12.4-5.2 0-10.6-4.1-10.6-12l-5.8-87.7c-5.8 92.5-5.3 84-5.3 85.9-1.1 4.8-4.8 9.3-10.6 9.3-3 0-9.8-2.1-10.6-9.3 0-.7-.4-1.1-.4-2.6l-6.2-88.6L182 348c-.7 6.5-6.7 9.3-10.6 9.3-5.8 0-9.6-4.1-10.6-8.9L149.7 272c-2 4-3.5 8.4-11.1 8.4H87.2v-21.3H132l13.7-27.9c4.4-9.9 18.2-7.2 19.9 2.7l3.1 20.4 8.4-97.9c0-6 4.8-10.6 10.6-10.6.5 0 10.6-.2 10.6 12.4l4.9 69.1 6.6-92.6c0-10.1 9.5-10.6 10.2-10.6.6 0 10.6.7 10.6 10.6l5.3 80.6 6.2-97.9c.1-1.1-.6-10.3 9.9-11.5z" ], + "creative-commons-sampling-plus": [ 496, 512, [], "f4f1", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm107 205.6c-4.7 0-9 2.8-10.7 7.2l-4 9.5-11-92.8c-1.7-13.9-22-13.4-23.1.4l-4.3 51.4-5.2-68.8c-1.1-14.3-22.1-14.2-23.2 0l-3.5 44.9-5.9-94.3c-.9-14.5-22.3-14.4-23.2 0l-5.1 83.7-4.3-66.3c-.9-14.4-22.2-14.4-23.2 0l-5.3 80.2-4.1-57c-1.1-14.3-22-14.3-23.2-.2l-7.7 89.8-1.8-12.2c-1.7-11.4-17.1-13.6-22-3.3l-13.2 27.7H87.5v23.2h51.3c4.4 0 8.4-2.5 10.4-6.4l10.7 73.1c2 13.5 21.9 13 23.1-.7l3.8-43.6 5.7 78.3c1.1 14.4 22.3 14.2 23.2-.1l4.6-70.4 4.8 73.3c.9 14.4 22.3 14.4 23.2-.1l4.9-80.5 4.5 71.8c.9 14.3 22.1 14.5 23.2.2l4.6-58.6 4.9 64.4c1.1 14.3 22 14.2 23.1.1l6.8-83 2.7 22.3c1.4 11.8 17.7 14.1 22.3 3.1l18-43.4h50.5V258l-58.4.3zm-78 5.2h-21.9v21.9c0 4.1-3.3 7.5-7.5 7.5-4.1 0-7.5-3.3-7.5-7.5v-21.9h-21.9c-4.1 0-7.5-3.3-7.5-7.5 0-4.1 3.4-7.5 7.5-7.5h21.9v-21.9c0-4.1 3.4-7.5 7.5-7.5s7.5 3.3 7.5 7.5v21.9h21.9c4.1 0 7.5 3.3 7.5 7.5 0 4.1-3.4 7.5-7.5 7.5z" ], + "creative-commons-share": [ 496, 512, [], "f4f2", "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm101 132.4c7.8 0 13.7 6.1 13.7 13.7v182.5c0 7.7-6.1 13.7-13.7 13.7H214.3c-7.7 0-13.7-6-13.7-13.7v-54h-54c-7.8 0-13.7-6-13.7-13.7V131.1c0-8.2 6.6-12.7 12.4-13.7h136.4c7.7 0 13.7 6 13.7 13.7v54h54zM159.9 300.3h40.7V198.9c0-7.4 5.8-12.6 12-13.7h55.8v-40.3H159.9v155.4zm176.2-88.1H227.6v155.4h108.5V212.2z" ], + css3: [ 512, 512, [], "f13c", "M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z" ], + "css3-alt": [ 384, 512, [], "f38b", "M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z" ], + cuttlefish: [ 440, 512, [], "f38c", "M344 305.5c-17.5 31.6-57.4 54.5-96 54.5-56.6 0-104-47.4-104-104s47.4-104 104-104c38.6 0 78.5 22.9 96 54.5 13.7-50.9 41.7-93.3 87-117.8C385.7 39.1 320.5 8 248 8 111 8 0 119 0 256s111 248 248 248c72.5 0 137.7-31.1 183-80.7-45.3-24.5-73.3-66.9-87-117.8z" ], + "d-and-d": [ 576, 512, [], "f38d", "M82.5 98.9c-.6-17.2 2-33.8 12.7-48.2.3 7.4 1.2 14.5 4.2 21.6 5.9-27.5 19.7-49.3 42.3-65.5-1.9 5.9-3.5 11.8-3 17.7 8.7-7.4 18.8-17.8 44.4-22.7 14.7-2.8 29.7-2 42.1 1 38.5 9.3 61 34.3 69.7 72.3 5.3 23.1.7 45-8.3 66.4-5.2 12.4-12 24.4-20.7 35.1-2-1.9-3.9-3.8-5.8-5.6-42.8-40.8-26.8-25.2-37.4-37.4-1.1-1.2-1-2.2-.1-3.6 8.3-13.5 11.8-28.2 10-44-1.1-9.8-4.3-18.9-11.3-26.2-14.5-15.3-39.2-15-53.5.6-11.4 12.5-14.1 27.4-10.9 43.6.2 1.3.4 2.7 0 3.9-3.4 13.7-4.6 27.6-2.5 41.6.1.5.1 1.1.1 1.6 0 .3-.1.5-.2 1.1-21.8-11-36-28.3-43.2-52.2-8.3 17.8-11.1 35.5-6.6 54.1-15.6-15.2-21.3-34.3-22-55.2zm469.6 123.2c-11.6-11.6-25-20.4-40.1-26.6-12.8-5.2-26-7.9-39.9-7.1-10 .6-19.6 3.1-29 6.4-2.5.9-5.1 1.6-7.7 2.2-4.9 1.2-7.3-3.1-4.7-6.8 3.2-4.6 3.4-4.2 15-12 .6-.4 1.2-.8 2.2-1.5h-2.5c-.6 0-1.2.2-1.9.3-19.3 3.3-30.7 15.5-48.9 29.6-10.4 8.1-13.8 3.8-12-.5 1.4-3.5 3.3-6.7 5.1-10 1-1.8 2.3-3.4 3.5-5.1-.2-.2-.5-.3-.7-.5-27 18.3-46.7 42.4-57.7 73.3.3.3.7.6 1 .9.3-.6.5-1.2.9-1.7 10.4-12.1 22.8-21.8 36.6-29.8 18.2-10.6 37.5-18.3 58.7-20.2 4.3-.4 8.7-.1 13.1-.1-1.8.7-3.5.9-5.3 1.1-18.5 2.4-35.5 9-51.5 18.5-30.2 17.9-54.5 42.2-75.1 70.4-.3.4-.4.9-.7 1.3 14.5 5.3 24 17.3 36.1 25.6.2-.1.3-.2.4-.4l1.2-2.7c12.2-26.9 27-52.3 46.7-74.5 16.7-18.8 38-25.3 62.5-20 5.9 1.3 11.4 4.4 17.2 6.8 2.3-1.4 5.1-3.2 8-4.7 8.4-4.3 17.4-7 26.7-9 14.7-3.1 29.5-4.9 44.5-1.3v-.5c-.5-.4-1.2-.8-1.7-1.4zM316.7 397.6c-39.4-33-22.8-19.5-42.7-35.6-.8.9 0-.2-1.9 3-11.2 19.1-25.5 35.3-44 47.6-10.3 6.8-21.5 11.8-34.1 11.8-21.6 0-38.2-9.5-49.4-27.8-12-19.5-13.3-40.7-8.2-62.6 7.8-33.8 30.1-55.2 38.6-64.3-18.7-6.2-33 1.7-46.4 13.9.8-13.9 4.3-26.2 11.8-37.3-24.3 10.6-45.9 25-64.8 43.9-.3-5.8 5.4-43.7 5.6-44.7.3-2.7-.6-5.3-3-7.4-24.2 24.7-44.5 51.8-56.1 84.6 7.4-5.9 14.9-11.4 23.6-16.2-8.3 22.3-19.6 52.8-7.8 101.1 4.6 19 11.9 36.8 24.1 52.3 2.9 3.7 6.3 6.9 9.5 10.3.2-.2.4-.3.6-.5-1.4-7-2.2-14.1-1.5-21.9 2.2 3.2 3.9 6 5.9 8.6 12.6 16 28.7 27.4 47.2 35.6 25 11.3 51.1 13.3 77.9 8.6 54.9-9.7 90.7-48.6 116-98.8 1-1.8.6-2.9-.9-4.2zm172-46.4c-9.5-3.1-22.2-4.2-28.7-2.9 9.9 4 14.1 6.6 18.8 12 12.6 14.4 10.4 34.7-5.4 45.6-11.7 8.1-24.9 10.5-38.9 9.1-1.2-.1-2.3-.4-3-.6 2.8-3.7 6-7 8.1-10.8 9.4-16.8 5.4-42.1-8.7-56.1-2.1-2.1-4.6-3.9-7-5.9-.3 1.3-.1 2.1.1 2.8 4.2 16.6-8.1 32.4-24.8 31.8-7.6-.3-13.9-3.8-19.6-8.5-19.5-16.1-39.1-32.1-58.5-48.3-5.9-4.9-12.5-8.1-20.1-8.7-4.6-.4-9.3-.6-13.9-.9-5.9-.4-8.8-2.8-10.4-8.4-.9-3.4-1.5-6.8-2.2-10.2-1.5-8.1-6.2-13-14.3-14.2-4.4-.7-8.9-1-13.3-1.5-13-1.4-19.8-7.4-22.6-20.3-5 11-1.6 22.4 7.3 29.9 4.5 3.8 9.3 7.3 13.8 11.2 4.6 3.8 7.4 8.7 7.9 14.8.4 4.7.8 9.5 1.8 14.1 2.2 10.6 8.9 18.4 17 25.1 16.5 13.7 33 27.3 49.5 41.1 17.9 15 13.9 32.8 13 56-.9 22.9 12.2 42.9 33.5 51.2 1 .4 2 .6 3.6 1.1-15.7-18.2-10.1-44.1.7-52.3.3 2.2.4 4.3.9 6.4 9.4 44.1 45.4 64.2 85 56.9 16-2.9 30.6-8.9 42.9-19.8 2-1.8 3.7-4.1 5.9-6.5-19.3 4.6-35.8.1-50.9-10.6.7-.3 1.3-.3 1.9-.3 21.3 1.8 40.6-3.4 57-17.4 19.5-16.6 26.6-42.9 17.4-66-8.3-20.1-23.6-32.3-43.8-38.9zM99.4 179.3c-5.3-9.2-13.2-15.6-22.1-21.3 13.7-.5 26.6.2 39.6 3.7-7-12.2-8.5-24.7-5-38.7 5.3 11.9 13.7 20.1 23.6 26.8 19.7 13.2 35.7 19.6 46.7 30.2 3.4 3.3 6.3 7.1 9.6 10.9-.8-2.1-1.4-4.1-2.2-6-5-10.6-13-18.6-22.6-25-1.8-1.2-2.8-2.5-3.4-4.5-3.3-12.5-3-25.1-.7-37.6 1-5.5 2.8-10.9 4.5-16.3.8-2.4 2.3-4.6 4-6.6.6 6.9 0 25.5 19.6 46 10.8 11.3 22.4 21.9 33.9 32.7 9 8.5 18.3 16.7 25.5 26.8 1.1 1.6 2.2 3.3 3.8 4.7-5-13-14.2-24.1-24.2-33.8-9.6-9.3-19.4-18.4-29.2-27.4-3.3-3-4.6-6.7-5.1-10.9-1.2-10.4 0-20.6 4.3-30.2.5-1 1.1-2 1.9-3.3.5 4.2.6 7.9 1.4 11.6 4.8 23.1 20.4 36.3 49.3 63.5 10 9.4 19.3 19.2 25.6 31.6 4.8 9.3 7.3 19 5.7 29.6-.1.6.5 1.7 1.1 2 6.2 2.6 10 6.9 9.7 14.3 7.7-2.6 12.5-8 16.4-14.5 4.2 20.2-9.1 50.3-27.2 58.7.4-4.5 5-23.4-16.5-27.7-6.8-1.3-12.8-1.3-22.9-2.1 4.7-9 10.4-20.6.5-22.4-24.9-4.6-52.8 1.9-57.8 4.6 8.2.4 16.3 1 23.5 3.3-2 6.5-4 12.7-5.8 18.9-1.9 6.5 2.1 14.6 9.3 9.6 1.2-.9 2.3-1.9 3.3-2.7-3.1 17.9-2.9 15.9-2.8 18.3.3 10.2 9.5 7.8 15.7 7.3-2.5 11.8-29.5 27.3-45.4 25.8 7-4.7 12.7-10.3 15.9-17.9-6.5.8-12.9 1.6-19.2 2.4l-.3-.9c4.7-3.4 8-7.8 10.2-13.1 8.7-21.1-3.6-38-25-39.9-9.1-.8-17.8.8-25.9 5.5 6.2-15.6 17.2-26.6 32.6-34.5-15.2-4.3-8.9-2.7-24.6-6.3 14.6-9.3 30.2-13.2 46.5-14.6-5.2-3.2-48.1-3.6-70.2 20.9 7.9 1.4 15.5 2.8 23.2 4.2-23.8 7-44 19.7-62.4 35.6 1.1-4.8 2.7-9.5 3.3-14.3.6-4.5.8-9.2.1-13.6-1.5-9.4-8.9-15.1-19.7-16.3-7.9-.9-15.6.1-23.3 1.3-.9.1-1.7.3-2.9 0 15.8-14.8 36-21.7 53.1-33.5 6-4.5 6.8-8.2 3-14.9zm128.4 26.8c3.3 16 12.6 25.5 23.8 24.3-4.6-11.3-12.1-19.5-23.8-24.3z" ], + dashcube: [ 448, 512, [], "f210", "M326.6 104H110.4c-51.1 0-91.2 43.3-91.2 93.5V427c0 50.5 40.1 85 91.2 85h227.2c51.1 0 91.2-34.5 91.2-85V0L326.6 104zM153.9 416.5c-17.7 0-32.4-15.1-32.4-32.8V240.8c0-17.7 14.7-32.5 32.4-32.5h140.7c17.7 0 32 14.8 32 32.5v123.5l51.1 52.3H153.9z" ], + delicious: [ 448, 512, [], "f1a5", "M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1.5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3 1 1.1 2.1 2.2 3.3 3.3 5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12zM416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192v176z" ], + deploydog: [ 512, 512, [], "f38e", "M382.2 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.6 0-33.2 16.4-33.2 32.6zM188.5 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.7 0-33.2 16.4-33.2 32.6zM448 96c17.5 0 32 14.4 32 32v256c0 17.5-14.4 32-32 32H64c-17.5 0-32-14.4-32-32V128c0-17.5 14.4-32 32-32h384m0-32H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h384c35.2 0 64-28.8 64-64V128c0-35.2-28.8-64-64-64z" ], + deskpro: [ 480, 512, [], "f38f", "M205.9 512l31.1-38.4c12.3-.2 25.6-1.4 36.5-6.6 38.9-18.6 38.4-61.9 38.3-63.8-.1-5-.8-4.4-28.9-37.4H362c-.2 50.1-7.3 68.5-10.2 75.7-9.4 23.7-43.9 62.8-95.2 69.4-8.7 1.1-32.8 1.2-50.7 1.1zm200.4-167.7c38.6 0 58.5-13.6 73.7-30.9l-175.5-.3-17.4 31.3 119.2-.1zm-43.6-223.9v168.3h-73.5l-32.7 55.5H250c-52.3 0-58.1-56.5-58.3-58.9-1.2-13.2-21.3-11.6-20.1 1.8 1.4 15.8 8.8 40 26.4 57.1h-91c-25.5 0-110.8-26.8-107-114V16.9C0 .9 9.7.3 15 .1h82c.2 0 .3.1.5.1 4.3-.4 50.1-2.1 50.1 43.7 0 13.3 20.2 13.4 20.2 0 0-18.2-5.5-32.8-15.8-43.7h84.2c108.7-.4 126.5 79.4 126.5 120.2zm-132.5 56l64 29.3c13.3-45.5-42.2-71.7-64-29.3z" ], + deviantart: [ 320, 512, [], "f1bd", "M320 93.2l-98.2 179.1 7.4 9.5H320v127.7H159.1l-13.5 9.2-43.7 84c-.3 0-8.6 8.6-9.2 9.2H0v-93.2l93.2-179.4-7.4-9.2H0V102.5h156l13.5-9.2 43.7-84c.3 0 8.6-8.6 9.2-9.2H320v93.1z" ], + digg: [ 512, 512, [], "f1a6", "M81.7 172.3H0v174.4h132.7V96h-51v76.3zm0 133.4H50.9v-92.3h30.8v92.3zm297.2-133.4v174.4h81.8v28.5h-81.8V416H512V172.3H378.9zm81.8 133.4h-30.8v-92.3h30.8v92.3zm-235.6 41h82.1v28.5h-82.1V416h133.3V172.3H225.1v174.4zm51.2-133.3h30.8v92.3h-30.8v-92.3zM153.3 96h51.3v51h-51.3V96zm0 76.3h51.3v174.4h-51.3V172.3z" ], + "digital-ocean": [ 512, 512, [], "f391", "M256 504v-96.1c101.8 0 180.8-100.9 141.7-208-14.3-39.6-46.1-71.4-85.8-85.7-107.1-38.8-208.1 39.9-208.1 141.7H8C8 93.7 164.9-32.8 335 20.3c74.2 23.3 133.6 82.4 156.6 156.6C544.8 347.2 418.6 504 256 504zm.3-191.4h-95.6v95.6h95.6v-95.6zm-95.6 95.6H87v73.6h73.7v-73.6zM87 346.6H25.4v61.6H87v-61.6z" ], + discord: [ 448, 512, [], "f392", "M297.216 243.2c0 15.616-11.52 28.416-26.112 28.416-14.336 0-26.112-12.8-26.112-28.416s11.52-28.416 26.112-28.416c14.592 0 26.112 12.8 26.112 28.416zm-119.552-28.416c-14.592 0-26.112 12.8-26.112 28.416s11.776 28.416 26.112 28.416c14.592 0 26.112-12.8 26.112-28.416.256-15.616-11.52-28.416-26.112-28.416zM448 52.736V512c-64.494-56.994-43.868-38.128-118.784-107.776l13.568 47.36H52.48C23.552 451.584 0 428.032 0 398.848V52.736C0 23.552 23.552 0 52.48 0h343.04C424.448 0 448 23.552 448 52.736zm-72.96 242.688c0-82.432-36.864-149.248-36.864-149.248-36.864-27.648-71.936-26.88-71.936-26.88l-3.584 4.096c43.52 13.312 63.744 32.512 63.744 32.512-60.811-33.329-132.244-33.335-191.232-7.424-9.472 4.352-15.104 7.424-15.104 7.424s21.248-20.224 67.328-33.536l-2.56-3.072s-35.072-.768-71.936 26.88c0 0-36.864 66.816-36.864 149.248 0 0 21.504 37.12 78.08 38.912 0 0 9.472-11.52 17.152-21.248-32.512-9.728-44.8-30.208-44.8-30.208 3.766 2.636 9.976 6.053 10.496 6.4 43.21 24.198 104.588 32.126 159.744 8.96 8.96-3.328 18.944-8.192 29.44-15.104 0 0-12.8 20.992-46.336 30.464 7.68 9.728 16.896 20.736 16.896 20.736 56.576-1.792 78.336-38.912 78.336-38.912z" ], + discourse: [ 448, 512, [], "f393", "M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z" ], + dochub: [ 416, 512, [], "f394", "M397.9 160H256V19.6L397.9 160zM304 192v130c0 66.8-36.5 100.1-113.3 100.1H96V84.8h94.7c12 0 23.1.8 33.1 2.5v-84C212.9 1.1 201.4 0 189.2 0H0v512h189.2C329.7 512 400 447.4 400 318.1V192h-96z" ], + docker: [ 640, 512, [], "f395", "M349.9 236.3h-66.1v-59.4h66.1v59.4zm0-204.3h-66.1v60.7h66.1V32zm78.2 144.8H362v59.4h66.1v-59.4zm-156.3-72.1h-66.1v60.1h66.1v-60.1zm78.1 0h-66.1v60.1h66.1v-60.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4.4 67.6.1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1l-13.3-8.9zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm-78.1-72.1h-66.1v60.1h66.1v-60.1z" ], + draft2digital: [ 480, 512, [], "f396", "M369.9 425.4V371l47.1 27.2-47.1 27.2zM82.4 380.6c25.5-27.3 97.7-104.7 150.9-170 35.1-43.1 40.3-82.4 28.4-112.7-7.4-18.8-17.5-30.2-24.3-35.7 45.3 2.1 68 23.4 82.2 38.3 0 0 42.4 48.2 5.8 113.3-37 65.9-110.9 147.5-128.5 166.7H82.4zm51.8-219.2c0 12.4-10 22.4-22.4 22.4-12.4 0-22.4-10-22.4-22.4 0-12.4 10-22.4 22.4-22.4 12.4 0 22.4 10.1 22.4 22.4M336 315.9v64.7h-91.3c30.8-35 81.8-95.9 111.8-149.3 35.2-62.6 16.1-123.4-12.8-153.3-4.4-4.6-62.2-62.9-166-41.2-59.1 12.4-89.4 43.4-104.3 67.3-13.1 20.9-17 39.8-18.2 47.7-5.5 33 19.4 67.1 56.7 67.1 31.7 0 57.3-25.7 57.3-57.4 0-27.1-19.7-52.1-48-56.8 1.8-7.3 17.7-21.1 26.3-24.7 41.1-17.3 78 5.2 83.3 33.5 8.3 44.3-37.1 90.4-69.7 127.6C84.5 328.1 18.3 396.8 0 415.9l336-.1V480l144-81.9-144-82.2z" ], + dribbble: [ 512, 512, [], "f17d", "M256 8C119.252 8 8 119.252 8 256s111.252 248 248 248 248-111.252 248-248S392.748 8 256 8zm163.97 114.366c29.503 36.046 47.369 81.957 47.835 131.955-6.984-1.477-77.018-15.682-147.502-6.818-5.752-14.041-11.181-26.393-18.617-41.614 78.321-31.977 113.818-77.482 118.284-83.523zM396.421 97.87c-3.81 5.427-35.697 48.286-111.021 76.519-34.712-63.776-73.185-116.168-79.04-124.008 67.176-16.193 137.966 1.27 190.061 47.489zm-230.48-33.25c5.585 7.659 43.438 60.116 78.537 122.509-99.087 26.313-186.36 25.934-195.834 25.809C62.38 147.205 106.678 92.573 165.941 64.62zM44.17 256.323c0-2.166.043-4.322.108-6.473 9.268.19 111.92 1.513 217.706-30.146 6.064 11.868 11.857 23.915 17.174 35.949-76.599 21.575-146.194 83.527-180.531 142.306C64.794 360.405 44.17 310.73 44.17 256.323zm81.807 167.113c22.127-45.233 82.178-103.622 167.579-132.756 29.74 77.283 42.039 142.053 45.189 160.638-68.112 29.013-150.015 21.053-212.768-27.882zm248.38 8.489c-2.171-12.886-13.446-74.897-41.152-151.033 66.38-10.626 124.7 6.768 131.947 9.055-9.442 58.941-43.273 109.844-90.795 141.978z" ], + "dribbble-square": [ 448, 512, [], "f397", "M90.2 228.2c8.9-42.4 37.4-77.7 75.7-95.7 3.6 4.9 28 38.8 50.7 79-64 17-120.3 16.8-126.4 16.7zM314.6 154c-33.6-29.8-79.3-41.1-122.6-30.6 3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4zM140.1 364c40.5 31.6 93.3 36.7 137.3 18-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6zm98.8-108.2c-3.4-7.8-7.2-15.5-11.1-23.2C159.6 253 93.4 252.2 87.4 252c0 1.4-.1 2.8-.1 4.2 0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8zm34.9 16.3c17.9 49.1 25.1 89.1 26.5 97.4 30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8zm-20.3-48.4c4.8 9.8 8.3 17.8 12 26.8 45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 176c0-88.2-71.8-160-160-160S64 167.8 64 256s71.8 160 160 160 160-71.8 160-160z" ], + dropbox: [ 528, 512, [], "f16b", "M264.4 116.3l-132 84.3 132 84.3-132 84.3L0 284.1l132.3-84.3L0 116.3 132.3 32l132.1 84.3zM131.6 395.7l132-84.3 132 84.3-132 84.3-132-84.3zm132.8-111.6l132-84.3-132-83.6L395.7 32 528 116.3l-132.3 84.3L528 284.8l-132.3 84.3-131.3-85z" ], + drupal: [ 448, 512, [], "f1a9", "M319.5 114.7c-22.2-14-43.5-19.5-64.7-33.5-13-8.8-31.3-30-46.5-48.3-2.7 29.3-11.5 41.2-22 49.5-21.3 17-34.8 22.2-53.5 32.3C117 123 32 181.5 32 290.5 32 399.7 123.8 480 225.8 480 327.5 480 416 406 416 294c0-112.3-83-171-96.5-179.3zm2.5 325.6c-20.1 20.1-90.1 28.7-116.7 4.2-4.8-4.8.3-12 6.5-12 0 0 17 13.3 51.5 13.3 27 0 46-7.7 54.5-14 6.1-4.6 8.4 4.3 4.2 8.5zm-54.5-52.6c8.7-3.6 29-3.8 36.8 1.3 4.1 2.8 16.1 18.8 6.2 23.7-8.4 4.2-1.2-15.7-26.5-15.7-14.7 0-19.5 5.2-26.7 11-7 6-9.8 8-12.2 4.7-6-8.2 15.9-22.3 22.4-25zM360 405c-15.2-1-45.5-48.8-65-49.5-30.9-.9-104.1 80.7-161.3 42-38.8-26.6-14.6-104.8 51.8-105.2 49.5-.5 83.8 49 108.5 48.5 21.3-.3 61.8-41.8 81.8-41.8 48.7 0 23.3 109.3-15.8 106z" ], + dyalog: [ 416, 512, [], "f399", "M0 32v119.2h64V96h107.2C284.6 96 352 176.2 352 255.9 352 332 293.4 416 171.2 416H0v64h171.2C331.9 480 416 367.3 416 255.9c0-58.7-22.1-113.4-62.3-154.3C308.9 56 245.7 32 171.2 32H0z" ], + earlybirds: [ 480, 512, [], "f39a", "M313.2 47.5c1.2-13 21.3-14 36.6-8.7.9.3 26.2 9.7 19 15.2-27.9-7.4-56.4 18.2-55.6-6.5zm-201 6.9c30.7-8.1 62 20 61.1-7.1-1.3-14.2-23.4-15.3-40.2-9.6-1 .3-28.7 10.5-20.9 16.7zM319.4 160c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-159.7 0c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm318.5 163.2c-9.9 24-40.7 11-63.9-1.2-13.5 69.1-58.1 111.4-126.3 124.2.3.9-2-.1 24 1 33.6 1.4 63.8-3.1 97.4-8-19.8-13.8-11.4-37.1-9.8-38.1 1.4-.9 14.7 1.7 21.6 11.5 8.6-12.5 28.4-14.8 30.2-13.6 1.6 1.1 6.6 20.9-6.9 34.6 4.7-.9 8.2-1.6 9.8-2.1 2.6-.8 17.7 11.3 3.1 13.3-14.3 2.3-22.6 5.1-47.1 10.8-45.9 10.7-85.9 11.8-117.7 12.8l1 11.6c3.8 18.1-23.4 24.3-27.6 6.2.8 17.9-27.1 21.8-28.4-1l-.5 5.3c-.7 18.4-28.4 17.9-28.3-.6-7.5 13.5-28.1 6.8-26.4-8.5l1.2-12.4c-36.7.9-59.7 3.1-61.8 3.1-20.9 0-20.9-31.6 0-31.6 2.4 0 27.7 1.3 63.2 2.8-61.1-15.5-103.7-55-114.9-118.2-25 12.8-57.5 26.8-68.2.8-10.5-25.4 21.5-42.6 66.8-73.4.7-6.6 1.6-13.3 2.7-19.8-14.4-19.6-11.6-36.3-16.1-60.4-16.8 2.4-23.2-9.1-23.6-23.1.3-7.3 2.1-14.9 2.4-15.4 1.1-1.8 10.1-2 12.7-2.6 6-31.7 50.6-33.2 90.9-34.5 19.7-21.8 45.2-41.5 80.9-48.3C203.3 29 215.2 8.5 216.2 8c1.7-.8 21.2 4.3 26.3 23.2 5.2-8.8 18.3-11.4 19.6-10.7 1.1.6 6.4 15-4.9 25.9 40.3 3.5 72.2 24.7 96 50.7 36.1 1.5 71.8 5.9 77.1 34 2.7.6 11.6.8 12.7 2.6.3.5 2.1 8.1 2.4 15.4-.5 13.9-6.8 25.4-23.6 23.1-3.2 17.3-2.7 32.9-8.7 47.7 2.4 11.7 4 23.8 4.8 36.4 37 25.4 70.3 42.5 60.3 66.9zM207.4 159.9c.9-44-37.9-42.2-78.6-40.3-21.7 1-38.9 1.9-45.5 13.9-11.4 20.9 5.9 92.9 23.2 101.2 9.8 4.7 73.4 7.9 86.3-7.1 8.2-9.4 15-49.4 14.6-67.7zm52 58.3c-4.3-12.4-6-30.1-15.3-32.7-2-.5-9-.5-11 0-10 2.8-10.8 22.1-17 37.2 15.4 0 19.3 9.7 23.7 9.7 4.3 0 6.3-11.3 19.6-14.2zm135.7-84.7c-6.6-12.1-24.8-12.9-46.5-13.9-40.2-1.9-78.2-3.8-77.3 40.3-.5 18.3 5 58.3 13.2 67.8 13 14.9 76.6 11.8 86.3 7.1 15.8-7.6 36.5-78.9 24.3-101.3z" ], + ebay: [ 640, 512, [], "f4f4", "M405.2 263.8c-29.1.9-47.2 6.2-47.2 25.3 0 12.4 9.9 25.8 35 25.8 33.7 0 51.6-18.4 51.6-48.4v-3.3c-11.8 0-26.3.1-39.4.6m71.5 39.7c0 9.3.3 18.6 1 26.8h-29.8c-.8-6.9-1.1-13.6-1.1-20.2-16.1 19.8-35.3 25.5-61.9 25.5-39.5 0-60.6-20.9-60.6-45 0-35 28.8-47.3 78.6-48.4 13.7-.3 29-.4 41.7-.4v-3.4c0-23.4-15-33-41-33-19.3 0-33.6 8-35 21.8h-33.7c3.6-34.4 39.7-43.1 71.5-43.1 38.1 0 70.3 13.5 70.3 53.8v65.6zm-349-56.8c-2.3-54.7-87.5-56.6-94.4 0h94.4zm-95 21.4c3.5 58.3 79.2 57.4 91.2 21.6H157c-6.4 34.4-43 46.1-74.4 46.1-57.2 0-82.5-31.5-82.5-74 0-46.8 26.2-77.6 83-77.6 45.3 0 78.4 23.7 78.4 75.4v8.5H32.7zm211 45.7c29.8 0 50.2-21.5 50.2-53.8 0-32.4-20.4-53.8-50.2-53.8-29.6 0-50.2 21.4-50.2 53.8 0 32.3 20.6 53.8 50.2 53.8m-82.2-186h32.1v80.6c15.7-18.7 37.4-24.2 58.7-24.2 35.7 0 75.4 24.1 75.4 76.2 0 43.6-31.5 75.4-76 75.4-23.3 0-45.1-8.3-58.7-24.9 0 6.6-.4 13.2-1.1 19.5h-31.5c.5-10.2 1.1-22.8 1.1-33.1V127.8zM640 189.5l-99.2 194.8h-35.9l28.5-54.1-74.6-140.7h37.5l54.9 109.9L606 189.5h34z" ], + edge: [ 512, 512, [], "f282", "M25.714 228.163c.111-.162.23-.323.342-.485-.021.162-.045.323-.065.485h-.277zm460.572 15.508c0-44.032-7.754-84.465-28.801-122.405C416.498 47.879 343.912 8.001 258.893 8.001 118.962 7.724 40.617 113.214 26.056 227.679c42.429-61.312 117.073-121.376 220.375-124.966 0 0 109.666 0 99.419 104.957H169.997c6.369-37.386 18.554-58.986 34.339-78.926-75.048 34.893-121.85 96.096-120.742 188.315.83 71.448 50.124 144.836 120.743 171.976 83.357 31.847 192.776 7.2 240.132-21.324V363.307c-80.864 56.494-270.871 60.925-272.255-67.572h314.073v-52.064z" ], + elementor: [ 448, 512, [], "f430", "M425.6 32H22.4C10 32 0 42 0 54.4v403.2C0 470 10 480 22.4 480h403.2c12.4 0 22.4-10 22.4-22.4V54.4C448 42 438 32 425.6 32M164.3 355.5h-39.8v-199h39.8v199zm159.3 0H204.1v-39.8h119.5v39.8zm0-79.6H204.1v-39.8h119.5v39.8zm0-79.7H204.1v-39.8h119.5v39.8z" ], + ember: [ 640, 512, [], "f423", "M639.9 254.6c-1.1-10.7-10.7-6.8-10.7-6.8s-15.6 12.1-29.3 10.7c-13.7-1.3-9.4-32-9.4-32s3-28.1-5.1-30.4c-8.1-2.4-18 7.3-18 7.3s-12.4 13.7-18.3 31.2l-1.6.5s1.9-30.6-.3-37.6c-1.6-3.5-16.4-3.2-18.8 3s-14.2 49.2-15 67.2c0 0-23.1 19.6-43.3 22.8s-25-9.4-25-9.4 54.8-15.3 52.9-59.1c-1.9-43.8-44.2-27.6-49-24-4.6 3.5-29.4 18.4-36.6 59.7-.2 1.4-.7 7.5-.7 7.5s-21.2 14.2-33 18c0 0 33-55.6-7.3-80.9-18.3-11-32.8 12.1-32.8 12.1s54.5-60.7 42.5-112c-5.8-24.4-18-27.1-29.2-23.1-17 6.7-23.5 16.7-23.5 16.7s-22 32-27.1 79.5-12.6 105.1-12.6 105.1-10.5 10.2-20.2 10.7-5.4-28.7-5.4-28.7 7.5-44.6 7-52.1-1.1-11.6-9.9-14.2c-8.9-2.7-18.5 8.6-18.5 8.6s-25.5 38.7-27.7 44.6l-1.3 2.4-1.3-1.6s18-52.7.8-53.5c-17.2-.8-28.5 18.8-28.5 18.8s-19.6 32.8-20.4 36.5l-1.3-1.6s8.1-38.2 6.4-47.6c-1.6-9.4-10.5-7.5-10.5-7.5s-11.3-1.3-14.2 5.9-13.7 55.3-15 70.7c0 0-28.2 20.2-46.8 20.4-18.5.3-16.7-11.8-16.7-11.8s68-23.3 49.4-69.2c-8.3-11.8-18-15.5-31.7-15.3-13.7.3-30.3 8.6-41.3 33.3-5.3 11.8-6.8 23-7.8 31.5 0 0-12.3 2.4-18.8-2.9s-10 0-10 0-11.2 14-.1 18.3 28.1 6.1 28.1 6.1c1.6 7.5 6.2 19.5 19.6 29.7 20.2 15.3 58.8-1.3 58.8-1.3l15.9-8.8s.5 14.6 12.1 16.7c11.6 2.1 16.4 1 36.5-47.9 11.8-25 12.6-23.6 12.6-23.6l1.3-.3s-9.1 46.8-5.6 59.7C187.7 319.4 203 318 203 318s8.3 2.4 15-21.2c6.7-23.6 19.6-49.9 19.6-49.9h1.6s-5.6 48.1 3 63.7c8.6 15.6 30.9 5.3 30.9 5.3s15.6-7.8 18-10.2c0 0 18.5 15.8 44.6 12.9 58.3-11.5 79.1-25.9 79.1-25.9s10 24.4 41.1 26.7c35.5 2.7 54.8-18.6 54.8-18.6s-.3 13.5 12.1 18.6c12.4 5.1 20.7-22.8 20.7-22.8l20.7-57.2h1.9s1.1 37.3 21.5 43.2 47-13.7 47-13.7 6.4-3.5 5.3-14.3zm-578 5.3c.8-32 21.8-45.9 29-39 7.3 7 4.6 22-9.1 31.4-13.7 9.5-19.9 7.6-19.9 7.6zm272.8-123.8s19.1-49.7 23.6-25.5-40 96.2-40 96.2c.5-16.2 16.4-70.7 16.4-70.7zm22.8 138.4c-12.6 33-43.3 19.6-43.3 19.6s-3.5-11.8 6.4-44.9 33.3-20.2 33.3-20.2 16.2 12.4 3.6 45.5zm84.6-14.6s-3-10.5 8.1-30.6c11-20.2 19.6-9.1 19.6-9.1s9.4 10.2-1.3 25.5-26.4 14.2-26.4 14.2z" ], + empire: [ 496, 512, [], "f1d1", "M287.6 54.2c-10.8-2.2-22.1-3.3-33.5-3.6V32.4c78.1 2.2 146.1 44 184.6 106.6l-15.8 9.1c-6.1-9.7-12.7-18.8-20.2-27.1l-18 15.5c-26-29.6-61.4-50.7-101.9-58.4l4.8-23.9zM53.4 322.4l23-7.7c-6.4-18.3-10-38.2-10-58.7s3.3-40.4 9.7-58.7l-22.7-7.7c3.6-10.8 8.3-21.3 13.6-31l-15.8-9.1C34 181 24.1 217.5 24.1 256s10 75 27.1 106.6l15.8-9.1c-5.3-10-9.7-20.3-13.6-31.1zM213.1 434c-40.4-8-75.8-29.1-101.9-58.7l-18 15.8c-7.5-8.6-14.4-17.7-20.2-27.4l-16 9.4c38.5 62.3 106.8 104.3 184.9 106.6v-18.3c-11.3-.3-22.7-1.7-33.5-3.6l4.7-23.8zM93.3 120.9l18 15.5c26-29.6 61.4-50.7 101.9-58.4l-4.7-23.8c10.8-2.2 22.1-3.3 33.5-3.6V32.4C163.9 34.6 95.9 76.4 57.4 139l15.8 9.1c6-9.7 12.6-18.9 20.1-27.2zm309.4 270.2l-18-15.8c-26 29.6-61.4 50.7-101.9 58.7l4.7 23.8c-10.8 1.9-22.1 3.3-33.5 3.6v18.3c78.1-2.2 146.4-44.3 184.9-106.6l-16.1-9.4c-5.7 9.7-12.6 18.8-20.1 27.4zM496 256c0 137-111 248-248 248S0 393 0 256 111 8 248 8s248 111 248 248zm-12.2 0c0-130.1-105.7-235.8-235.8-235.8S12.2 125.9 12.2 256 117.9 491.8 248 491.8 483.8 386.1 483.8 256zm-39-106.6l-15.8 9.1c5.3 9.7 10 20.2 13.6 31l-22.7 7.7c6.4 18.3 9.7 38.2 9.7 58.7s-3.6 40.4-10 58.7l23 7.7c-3.9 10.8-8.3 21-13.6 31l15.8 9.1C462 331 471.9 294.5 471.9 256s-9.9-75-27.1-106.6zm-183 177.7c16.3-3.3 30.4-11.6 40.7-23.5l51.2 44.8c11.9-13.6 21.3-29.3 27.1-46.8l-64.2-22.1c2.5-7.5 3.9-15.2 3.9-23.5s-1.4-16.1-3.9-23.5l64.5-22.1c-6.1-17.4-15.5-33.2-27.4-46.8l-51.2 44.8c-10.2-11.9-24.4-20.5-40.7-23.8l13.3-66.4c-8.6-1.9-17.7-2.8-27.1-2.8-9.4 0-18.5.8-27.1 2.8l13.3 66.4c-16.3 3.3-30.4 11.9-40.7 23.8l-51.2-44.8c-11.9 13.6-21.3 29.3-27.4 46.8l64.5 22.1c-2.5 7.5-3.9 15.2-3.9 23.5s1.4 16.1 3.9 23.5l-64.2 22.1c5.8 17.4 15.2 33.2 27.1 46.8l51.2-44.8c10.2 11.9 24.4 20.2 40.7 23.5l-13.3 66.7c8.6 1.7 17.7 2.8 27.1 2.8 9.4 0 18.5-1.1 27.1-2.8l-13.3-66.7z" ], + envira: [ 448, 512, [], "f299", "M0 32c477.6 0 366.6 317.3 367.1 366.3L448 480h-26l-70.4-71.2c-39 4.2-124.4 34.5-214.4-37C47 300.3 52 214.7 0 32zm79.7 46c-49.7-23.5-5.2 9.2-5.2 9.2 45.2 31.2 66 73.7 90.2 119.9 31.5 60.2 79 139.7 144.2 167.7 65 28 34.2 12.5 6-8.5-28.2-21.2-68.2-87-91-130.2-31.7-60-61-118.6-144.2-158.1z" ], + erlang: [ 640, 512, [], "f39d", "M21.7 246.4c-.1 86.8 29 159.5 78.7 212.1H0v-405h87.2c-41.5 50.2-65.6 116.2-65.5 192.9zM640 53.6h-83.6c31.4 42.7 48.7 97.5 46.2 162.7.5 6 .5 11.7 0 24.1H230.2c-.2 109.7 38.9 194.9 138.6 195.3 68.5-.3 118-51 151.9-106.1l96.4 48.2c-17.4 30.9-36.5 57.8-57.9 80.8H640v-405zm-80.8 405s0-.1 0 0h-.2.2zm-3.1-405h.3l-.1-.1-.2.1zm-230.7 9.6c-45.9.1-85.1 33.5-89.2 83.2h169.9c-1.1-49.7-34.5-83.1-80.7-83.2z" ], + ethereum: [ 320, 512, [], "f42e", "M311.9 260.8L160 353.6 8 260.8 160 0l151.9 260.8zM160 383.4L8 290.6 160 512l152-221.4-152 92.8z" ], + etsy: [ 384, 512, [], "f2d7", "M384 348c-1.75 10.75-13.75 110-15.5 132-117.879-4.299-219.895-4.743-368.5 0v-25.5c45.457-8.948 60.627-8.019 61-35.25 1.793-72.322 3.524-244.143 0-322-1.029-28.46-12.13-26.765-61-36v-25.5c73.886 2.358 255.933 8.551 362.999-3.75-3.5 38.25-7.75 126.5-7.75 126.5H332C320.947 115.665 313.241 68 277.25 68h-137c-10.25 0-10.75 3.5-10.75 9.75V241.5c58 .5 88.5-2.5 88.5-2.5 29.77-.951 27.56-8.502 40.75-65.251h25.75c-4.407 101.351-3.91 61.829-1.75 160.25H257c-9.155-40.086-9.065-61.045-39.501-61.5 0 0-21.5-2-88-2v139c0 26 14.25 38.25 44.25 38.25H263c63.636 0 66.564-24.996 98.751-99.75H384z" ], + expeditedssl: [ 496, 512, [], "f23e", "M248 43.4C130.6 43.4 35.4 138.6 35.4 256S130.6 468.6 248 468.6 460.6 373.4 460.6 256 365.4 43.4 248 43.4zm-97.4 132.9c0-53.7 43.7-97.4 97.4-97.4s97.4 43.7 97.4 97.4v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6c0-82.1-124-82.1-124 0v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6zM389.7 380c0 9.7-8 17.7-17.7 17.7H124c-9.7 0-17.7-8-17.7-17.7V238.3c0-9.7 8-17.7 17.7-17.7h248c9.7 0 17.7 8 17.7 17.7V380zm-248-137.3v132.9c0 2.5-1.9 4.4-4.4 4.4h-8.9c-2.5 0-4.4-1.9-4.4-4.4V242.7c0-2.5 1.9-4.4 4.4-4.4h8.9c2.5 0 4.4 1.9 4.4 4.4zm141.7 48.7c0 13-7.2 24.4-17.7 30.4v31.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-31.6c-10.5-6.1-17.7-17.4-17.7-30.4 0-19.7 15.8-35.4 35.4-35.4s35.5 15.8 35.5 35.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 478.3C121 486.3 17.7 383 17.7 256S121 25.7 248 25.7 478.3 129 478.3 256 375 486.3 248 486.3z" ], + facebook: [ 448, 512, [], "f09a", "M448 56.7v398.5c0 13.7-11.1 24.7-24.7 24.7H309.1V306.5h58.2l8.7-67.6h-67v-43.2c0-19.6 5.4-32.9 33.5-32.9h35.8v-60.5c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9h-58.4v67.6h58.4V480H24.7C11.1 480 0 468.9 0 455.3V56.7C0 43.1 11.1 32 24.7 32h398.5c13.7 0 24.8 11.1 24.8 24.7z" ], + "facebook-f": [ 264, 512, [], "f39e", "M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229" ], + "facebook-messenger": [ 448, 512, [], "f39f", "M224 32C15.9 32-77.5 278 84.6 400.6V480l75.7-42c142.2 39.8 285.4-59.9 285.4-198.7C445.8 124.8 346.5 32 224 32zm23.4 278.1L190 250.5 79.6 311.6l121.1-128.5 57.4 59.6 110.4-61.1-121.1 128.5z" ], + "facebook-square": [ 448, 512, [], "f082", "M448 80v352c0 26.5-21.5 48-48 48h-85.3V302.8h60.6l8.7-67.6h-69.3V192c0-19.6 5.4-32.9 33.5-32.9H384V98.7c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9H184v67.6h60.9V480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z" ], + firefox: [ 480, 512, [], "f269", "M478.1 235.3c-.7-4.5-1.4-7.1-1.4-7.1s-1.8 2-4.7 5.9c-.9-10.7-2.8-21.2-5.8-31.6-3.7-12.9-8.5-25.4-14.5-37.4-3.8-8-8.2-15.6-13.3-22.8-1.8-2.7-3.7-5.4-5.6-7.9-8.8-14.4-19-23.3-30.7-40-7.6-12.8-12.9-26.9-15.4-41.6-3.2 8.9-5.7 18-7.4 27.3-12.1-12.2-22.5-20.8-28.9-26.7C319.4 24.2 323 9.1 323 9.1S264.7 74.2 289.9 142c8.7 23 23.8 43.1 43.4 57.9 24.4 20.2 50.8 36 64.7 76.6-11.2-21.3-28.1-39.2-48.8-51.5 6.2 14.7 9.4 30.6 9.3 46.5 0 61-49.6 110.5-110.6 110.4-8.3 0-16.5-.9-24.5-2.8-9.5-1.8-18.7-4.9-27.4-9.3-12.9-7.8-24-18.1-32.8-30.3l-.2-.3 2 .7c4.6 1.6 9.2 2.8 14 3.7 18.7 4 38.3 1.7 55.6-6.6 17.5-9.7 28-16.9 36.6-14h.2c8.4 2.7 15-5.5 9-14-10.4-13.4-27.4-20-44.2-17-17.5 2.5-33.5 15-56.4 2.9-1.5-.8-2.9-1.6-4.3-2.5-1.6-.9 4.9 1.3 3.4.3-5-2.5-9.8-5.4-14.4-8.6-.3-.3 3.5 1.1 3.1.8-5.9-4-11-9.2-15-15.2-4.1-7.4-4.5-16.4-1-24.1 2.1-3.8 5.4-6.9 9.3-8.7 3 1.5 4.8 2.6 4.8 2.6s-1.3-2.5-2.1-3.8c.3-.1.5 0 .8-.2 2.6 1.1 8.3 4 11.4 5.8 2.1 1.1 3.8 2.7 5.2 4.7 0 0 1-.5.3-2.7-1.1-2.7-2.9-5-5.4-6.6h.2c2.3 1.2 4.5 2.6 6.6 4.1 1.9-4.4 2.8-9.2 2.6-14 .2-2.6-.2-5.3-1.1-7.8-.8-1.6.5-2.2 1.9-.5-.2-1.3-.7-2.5-1.2-3.7v-.1s.8-1.1 1.2-1.5c1-1 2.1-1.9 3.4-2.7 7.2-4.5 14.8-8.4 22.7-11.6 6.4-2.8 11.7-4.9 12.8-5.6 1.6-1 3.1-2.2 4.5-3.5 5.3-4.5 9-10.8 10.2-17.7.1-.9.2-1.8.3-2.8v-1.5c-.9-3.5-6.9-6.1-38.4-9.1-11.1-1.8-20-10.1-22.5-21.1v.1c-.4 1.1-.9 2.3-1.3 3.5.4-1.2.8-2.3 1.3-3.5v-.2c6-15.7 16.8-29.1 30.8-38.3.8-.7-3.2.2-2.4-.5 2.7-1.3 5.4-2.5 8.2-3.5 1.4-.6-6-3.4-12.6-2.7-4 .2-8 1.2-11.7 2.8 1.6-1.3 6.2-3.1 5.1-3.1-8.4 1.6-16.5 4.7-23.9 9 0-.8.1-1.5.5-2.2-5.9 2.5-11 6.5-15 11.5.1-.9.2-1.8.2-2.7-2.7 2-5.2 4.3-7.3 6.9l-.1.1c-17.4-6.7-36.3-8.3-54.6-4.7l-.2-.1h.2c-3.8-3.1-7.1-6.7-9.7-10.9l-.2.1-.4-.2c-1.2-1.8-2.4-3.8-3.7-6-.9-1.6-1.8-3.4-2.7-5.2 0-.1-.1-.2-.2-.2-.4 0-.6 1.7-.9 1.3v-.1c-3.2-8.3-4.7-17.2-4.4-26.2l-.2.1c-5.1 3.5-9 8.6-11.1 14.5-.9 2.1-1.6 3.3-2.2 4.5v-.5c.1-1.1.6-3.3.5-3.1-.1.2-.2.3-.3.4-1.5 1.7-2.9 3.7-3.9 5.8-.9 1.9-1.7 3.9-2.3 5.9-.1.3 0-.3 0-1s.1-2 0-1.7l-.3.7c-6.7 14.9-10.9 30.8-12.4 47.1-.4 2.8-.6 5.6-.5 8.3v.2c-4.8 5.2-9 11-12.7 17.1-12.1 20.4-21.1 42.5-26.8 65.6 4-8.8 8.8-17.2 14.3-25.1C5.5 228.5 0 257.4 0 286.6c1.8-8.6 4.2-17 7-25.3-1.7 34.5 4.9 68.9 19.4 100.3 19.4 43.5 51.6 80 92.3 104.7 16.6 11.2 34.7 19.9 53.8 25.8 2.5.9 5.1 1.8 7.7 2.7-.8-.3-1.6-.7-2.4-1 22.6 6.8 46.2 10.3 69.8 10.3 83.7 0 111.3-31.9 113.8-35 4.1-3.7 7.5-8.2 9.9-13.3 1.6-.7 3.2-1.4 4.9-2.1l1-.5 1.9-.9c12.6-5.9 24.5-13.4 35.3-22.1 16.3-11.7 27.9-28.7 32.9-48.1 3-7.1 3.1-15 .4-22.2.9-1.4 1.7-2.8 2.7-4.3 18-28.9 28.2-61.9 29.6-95.9v-2.8c0-7.3-.6-14.5-1.9-21.6z" ], + "first-order": [ 448, 512, [], "f2b0", "M12.9 229.2c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4h-.2zM224 96.6c-7.1 0-14.6.6-21.4 1.7l3.7 67.4-22-64c-14.3 3.7-27.7 9.4-40 16.6l29.4 61.4-45.1-50.9c-11.4 8.9-21.7 19.1-30.6 30.9l50.6 45.4-61.1-29.7c-7.1 12.3-12.9 25.7-16.6 40l64.3 22.6-68-4c-.9 7.1-1.4 14.6-1.4 22s.6 14.6 1.4 21.7l67.7-4-64 22.6c3.7 14.3 9.4 27.7 16.6 40.3l61.1-29.7L97.7 352c8.9 11.7 19.1 22.3 30.9 30.9l44.9-50.9-29.5 61.4c12.3 7.4 25.7 13.1 40 16.9l22.3-64.6-4 68c7.1 1.1 14.6 1.7 21.7 1.7 7.4 0 14.6-.6 21.7-1.7l-4-68.6 22.6 65.1c14.3-4 27.7-9.4 40-16.9L274.9 332l44.9 50.9c11.7-8.9 22-19.1 30.6-30.9l-50.6-45.1 61.1 29.4c7.1-12.3 12.9-25.7 16.6-40.3l-64-22.3 67.4 4c1.1-7.1 1.4-14.3 1.4-21.7s-.3-14.9-1.4-22l-67.7 4 64-22.3c-3.7-14.3-9.1-28-16.6-40.3l-60.9 29.7 50.6-45.4c-8.9-11.7-19.1-22-30.6-30.9l-45.1 50.9 29.4-61.1c-12.3-7.4-25.7-13.1-40-16.9L241.7 166l4-67.7c-7.1-1.2-14.3-1.7-21.7-1.7zM443.4 128v256L224 512 4.6 384V128L224 0l219.4 128zm-17.1 10.3L224 20.9 21.7 138.3v235.1L224 491.1l202.3-117.7V138.3zM224 37.1l187.7 109.4v218.9L224 474.9 36.3 365.4V146.6L224 37.1zm0 50.9c-92.3 0-166.9 75.1-166.9 168 0 92.6 74.6 167.7 166.9 167.7 92 0 166.9-75.1 166.9-167.7 0-92.9-74.9-168-166.9-168z" ], + "first-order-alt": [ 496, 512, [], "f50a", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 488.21C115.34 496.21 7.79 388.66 7.79 256S115.34 15.79 248 15.79 488.21 123.34 488.21 256 380.66 496.21 248 496.21zm0-459.92C126.66 36.29 28.29 134.66 28.29 256S126.66 475.71 248 475.71 467.71 377.34 467.71 256 369.34 36.29 248 36.29zm0 431.22c-116.81 0-211.51-94.69-211.51-211.51S131.19 44.49 248 44.49 459.51 139.19 459.51 256 364.81 467.51 248 467.51zm186.23-162.98a191.613 191.613 0 0 1-20.13 48.69l-74.13-35.88 61.48 54.82a193.515 193.515 0 0 1-37.2 37.29l-54.8-61.57 35.88 74.27a190.944 190.944 0 0 1-48.63 20.23l-27.29-78.47 4.79 82.93c-8.61 1.18-17.4 1.8-26.33 1.8s-17.72-.62-26.33-1.8l4.76-82.46-27.15 78.03a191.365 191.365 0 0 1-48.65-20.2l35.93-74.34-54.87 61.64a193.85 193.85 0 0 1-37.22-37.28l61.59-54.9-74.26 35.93a191.638 191.638 0 0 1-20.14-48.69l77.84-27.11-82.23 4.76c-1.16-8.57-1.78-17.32-1.78-26.21 0-9 .63-17.84 1.82-26.51l82.38 4.77-77.94-27.16a191.726 191.726 0 0 1 20.23-48.67l74.22 35.92-61.52-54.86a193.85 193.85 0 0 1 37.28-37.22l54.76 61.53-35.83-74.17a191.49 191.49 0 0 1 48.65-20.13l26.87 77.25-4.71-81.61c8.61-1.18 17.39-1.8 26.32-1.8s17.71.62 26.32 1.8l-4.74 82.16 27.05-77.76c17.27 4.5 33.6 11.35 48.63 20.17l-35.82 74.12 54.72-61.47a193.13 193.13 0 0 1 37.24 37.23l-61.45 54.77 74.12-35.86a191.515 191.515 0 0 1 20.2 48.65l-77.81 27.1 82.24-4.75c1.19 8.66 1.82 17.5 1.82 26.49 0 8.88-.61 17.63-1.78 26.19l-82.12-4.75 77.72 27.09z" ], + firstdraft: [ 384, 512, [], "f3a1", "M384 192h-64v128H192v128H0v-25.6h166.4v-128h128v-128H384V192zm-25.6 38.4v128h-128v128H64V512h192V384h128V230.4h-25.6zm25.6 192h-89.6V512H320v-64h64v-25.6zM0 0v384h128V256h128V128h128V0H0z" ], + flickr: [ 448, 512, [], "f16e", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5zm159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5z" ], + flipboard: [ 448, 512, [], "f44d", "M0 32v448h448V32H0zm358.4 179.2h-89.6v89.6h-89.6v89.6H89.6V121.6h268.8v89.6z" ], + fly: [ 384, 512, [], "f417", "M197.8 427.8c12.9 11.7 33.7 33.3 33.2 50.7 0 .8-.1 1.6-.1 2.5-1.8 19.8-18.8 31.1-39.1 31-25-.1-39.9-16.8-38.7-35.8 1-16.2 20.5-36.7 32.4-47.6 2.3-2.1 2.7-2.7 5.6-3.6 3.4 0 3.9.3 6.7 2.8zM331.9 67.3c-16.3-25.7-38.6-40.6-63.3-52.1C243.1 4.5 214-.2 192 0c-44.1 0-71.2 13.2-81.1 17.3C57.3 45.2 26.5 87.2 28 158.6c7.1 82.2 97 176 155.8 233.8 1.7 1.6 4.5 4.5 6.2 5.1l3.3.1c2.1-.7 1.8-.5 3.5-2.1 52.3-49.2 140.7-145.8 155.9-215.7 7-39.2 3.1-72.5-20.8-112.5zM186.8 351.9c-28-51.1-65.2-130.7-69.3-189-3.4-47.5 11.4-131.2 69.3-136.7v325.7zM328.7 180c-16.4 56.8-77.3 128-118.9 170.3C237.6 298.4 275 217 277 158.4c1.6-45.9-9.8-105.8-48-131.4 88.8 18.3 115.5 98.1 99.7 153z" ], + "font-awesome": [ 448, 512, [], "f2b4", "M397.8 32H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-45.4 284.3c0 4.2-3.6 6-7.8 7.8-16.7 7.2-34.6 13.7-53.8 13.7-26.9 0-39.4-16.7-71.7-16.7-23.3 0-47.8 8.4-67.5 17.3-1.2.6-2.4.6-3.6 1.2V385c0 1.8 0 3.6-.6 4.8v1.2c-2.4 8.4-10.2 14.3-19.1 14.3-11.3 0-20.3-9-20.3-20.3V166.4c-7.8-6-13.1-15.5-13.1-26.3 0-18.5 14.9-33.5 33.5-33.5 18.5 0 33.5 14.9 33.5 33.5 0 10.8-4.8 20.3-13.1 26.3v18.5c1.8-.6 3.6-1.2 5.4-2.4 18.5-7.8 40.6-14.3 61.5-14.3 22.7 0 40.6 6 60.9 13.7 4.2 1.8 8.4 2.4 13.1 2.4 22.7 0 47.8-16.1 53.8-16.1 4.8 0 9 3.6 9 7.8v140.3z" ], + "font-awesome-alt": [ 448, 512, [], "f35c", "M397.8 67.8c7.8 0 14.3 6.6 14.3 14.3v347.6c0 7.8-6.6 14.3-14.3 14.3H50.2c-7.8 0-14.3-6.6-14.3-14.3V82.2c0-7.8 6.6-14.3 14.3-14.3h347.6m0-35.9H50.2C22.7 32 0 54.7 0 82.2v347.6C0 457.3 22.7 480 50.2 480h347.6c27.5 0 50.2-22.7 50.2-50.2V82.2c0-27.5-22.7-50.2-50.2-50.2zm-58.5 139.2c-6 0-29.9 15.5-52.6 15.5-4.2 0-8.4-.6-12.5-2.4-19.7-7.8-37-13.7-59.1-13.7-20.3 0-41.8 6.6-59.7 13.7-1.8.6-3.6 1.2-4.8 1.8v-17.9c7.8-6 12.5-14.9 12.5-25.7 0-17.9-14.3-32.3-32.3-32.3s-32.3 14.3-32.3 32.3c0 10.2 4.8 19.7 12.5 25.7v212.1c0 10.8 9 19.7 19.7 19.7 9 0 16.1-6 18.5-13.7V385c.6-1.8.6-3 .6-4.8V336c1.2 0 2.4-.6 3-1.2 19.7-8.4 43-16.7 65.7-16.7 31.1 0 43 16.1 69.3 16.1 18.5 0 36.4-6.6 52-13.7 4.2-1.8 7.2-3.6 7.2-7.8V178.3c1.8-4.1-2.3-7.1-7.7-7.1z" ], + "font-awesome-flag": [ 448, 512, [], "f425", "M444.373 359.424c0 7.168-6.144 10.24-13.312 13.312-28.672 12.288-59.392 23.552-92.16 23.552-46.08 0-67.584-28.672-122.88-28.672-39.936 0-81.92 14.336-115.712 29.696-2.048 1.024-4.096 1.024-6.144 2.048v77.824c0 21.405-16.122 34.816-33.792 34.816-19.456 0-34.816-15.36-34.816-34.816V102.4C12.245 92.16 3.029 75.776 3.029 57.344 3.029 25.6 28.629 0 60.373 0s57.344 25.6 57.344 57.344c0 18.432-8.192 34.816-22.528 45.056v31.744c4.124-1.374 58.768-28.672 114.688-28.672 65.27 0 97.676 27.648 126.976 27.648 38.912 0 81.92-27.648 92.16-27.648 8.192 0 15.36 6.144 15.36 13.312v240.64z" ], + "font-awesome-logo-full": [ 3992, 512, [ "Font Awesome" ], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z" ], + fonticons: [ 448, 512, [], "f280", "M0 32v448h448V32H0zm167.4 196h67.4l-11.1 37.3H168v112.9c0 5.8-2 6.7 3.2 7.3l43.5 4.1v25.1H84V389l21.3-2c5.2-.6 6.7-2.3 6.7-7.9V267.7c0-2.3-2.9-2.3-5.8-2.3H84V228h28v-21c0-49.6 26.5-70 77.3-70 34.1 0 64.7 8.2 64.7 52.8l-50.7 6.1c.3-18.7-4.4-23-16.3-23-18.4 0-19 9.9-19 27.4v23.3c0 2.4-3.5 4.4-.6 4.4zM364 414.7H261.3v-25.1l20.4-2.6c5.2-.6 7.6-1.7 7.6-7.3V271.8c0-4.1-2.9-6.7-6.7-7.9l-24.2-6.4 6.7-29.5h80.2v151.7c0 5.8-2.6 6.4 2.9 7.3l15.7 2.6v25.1zm-21.9-255.5l9 33.2-7.3 7.3-31.2-16.6-31.2 16.6-7.3-7.3 9-33.2-21.8-24.2 3.5-9.6h27.7l15.5-28h9.3l15.5 28h27.7l3.5 9.6-21.9 24.2z" ], + "fonticons-fi": [ 384, 512, [], "f3a2", "M114.4 224h92.4l-15.2 51.2h-76.4V433c0 8-2.8 9.2 4.4 10l59.6 5.6V483H0v-35.2l29.2-2.8c7.2-.8 9.2-3.2 9.2-10.8V278.4c0-3.2-4-3.2-8-3.2H0V224h38.4v-28.8c0-68 36.4-96 106-96 46.8 0 88.8 11.2 88.8 72.4l-69.6 8.4c.4-25.6-6-31.6-22.4-31.6-25.2 0-26 13.6-26 37.6v32c0 3.2-4.8 6-.8 6zM384 483H243.2v-34.4l28-3.6c7.2-.8 10.4-2.4 10.4-10V287c0-5.6-4-9.2-9.2-10.8l-33.2-8.8 9.2-40.4h110v208c0 8-3.6 8.8 4 10l21.6 3.6V483zm-30-347.2l12.4 45.6-10 10-42.8-22.8-42.8 22.8-10-10 12.4-45.6-30-36.4 4.8-10h38L307.2 51H320l21.2 38.4h38l4.8 13.2-30 33.2z" ], + "fort-awesome": [ 512, 512, [], "f286", "M489.2 287.9h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6V146.2c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-6-8-4.6-11.7-4.6v-38c8.3-2 17.1-3.4 25.7-3.4 10.9 0 20.9 4.3 31.4 4.3 4.6 0 27.7-1.1 27.7-8v-60c0-2.6-2-4.6-4.6-4.6-5.1 0-15.1 4.3-24 4.3-9.7 0-20.9-4.3-32.6-4.3-8 0-16 1.1-23.7 2.9v-4.9c5.4-2.6 9.1-8.3 9.1-14.3 0-20.7-31.4-20.8-31.4 0 0 6 3.7 11.7 9.1 14.3v111.7c-3.7 0-11.7-1.4-11.7 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32H128v-32c0-2.6-2-4.6-4.6-4.6H96c-2.6 0-4.6 2-4.6 4.6v178.3H54.8v-32c0-2.6-2-4.6-4.6-4.6H22.8c-2.6 0-4.6 2-4.6 4.6V512h182.9v-96c0-72.6 109.7-72.6 109.7 0v96h182.9V292.5c.1-2.6-1.9-4.6-4.5-4.6zm-288.1-4.5c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64zm146.4 0c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64z" ], + "fort-awesome-alt": [ 512, 512, [], "f3a3", "M211.7 241.1v51.7c0 2.1-1.6 3.7-3.7 3.7h-22.2c-2.1 0-3.7-1.6-3.7-3.7v-51.7c0-2.1 1.6-3.7 3.7-3.7H208c2.1 0 3.7 1.6 3.7 3.7zm114.5-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7h22.2c2.1 0 3.7-1.6 3.7-3.7v-51.7c-.1-2.1-1.7-3.7-3.7-3.7zm-29.1 263.2c-.9.1-1.7.3-2.6.4-1 .2-2.1.3-3.1.5-.9.1-1.8.3-2.8.4-1 .1-2 .3-3 .4-1 .1-2 .2-2.9.3-1 .1-1.9.2-2.9.3-1 .1-2.1.2-3.1.3-.9.1-1.8.2-2.7.2-1.1.1-2.3.1-3.4.2-.8 0-1.7.1-2.5.1-1.3.1-2.6.1-3.9.1-.7 0-1.4.1-2.1.1-2 0-4 .1-6 .1s-4 0-6-.1c-.7 0-1.4 0-2.1-.1-1.3 0-2.6-.1-3.9-.1-.8 0-1.7-.1-2.5-.1-1.1-.1-2.3-.1-3.4-.2-.9-.1-1.8-.1-2.7-.2-1-.1-2.1-.2-3.1-.3-1-.1-1.9-.2-2.9-.3-1-.1-2-.2-2.9-.3-1-.1-2-.2-3-.4-.9-.1-1.8-.3-2.8-.4-1-.1-2.1-.3-3.1-.5-.9-.1-1.7-.3-2.6-.4-65.6-10.9-122.5-47.7-160-99.4-.2-.2-.3-.5-.5-.7-.8-1.1-1.6-2.2-2.3-3.3-.3-.4-.6-.8-.8-1.2-.7-1.1-1.4-2.1-2.1-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.4-2.1-2-3.2-.3-.5-.6-.9-.9-1.4-.7-1.1-1.3-2.2-2-3.3-.2-.4-.5-.8-.7-1.2-2.4-4-4.6-8.1-6.8-12.2-.1-.2-.2-.3-.3-.5-.6-1.1-1.1-2.2-1.7-3.3-.3-.6-.6-1.1-.8-1.7-.5-1-1-2.1-1.5-3.1-.3-.7-.6-1.3-.9-2-.5-1-.9-2-1.4-3l-.9-2.1c-.4-1-.9-2-1.3-3-.3-.7-.6-1.5-.9-2.2l-1.2-3c-.3-.8-.6-1.5-.9-2.3-.4-1-.8-2-1.1-3-.3-.9-.6-1.8-1-2.8-.6-1.6-1.1-3.3-1.7-4.9-.3-.9-.6-1.8-.9-2.8-.3-.9-.5-1.8-.8-2.7-.3-.9-.6-1.9-.8-2.8-.3-.9-.5-1.8-.8-2.7-.3-1-.5-1.9-.8-2.9-.2-.9-.5-1.8-.7-2.7-.3-1-.5-2-.7-3-.2-.9-.4-1.7-.6-2.6-.2-1.1-.5-2.2-.7-3.2-.2-.8-.3-1.6-.5-2.4-.3-1.3-.5-2.7-.8-4-.1-.6-.2-1.1-.3-1.7l-.9-5.7c-.1-.6-.2-1.3-.3-1.9-.2-1.3-.4-2.6-.5-3.9-.1-.8-.2-1.5-.3-2.3-.1-1.2-.3-2.4-.4-3.6-.1-.8-.2-1.6-.2-2.4-.1-1.2-.2-2.4-.3-3.5-.1-.8-.1-1.6-.2-2.4-.1-1.2-.2-2.4-.2-3.7 0-.8-.1-1.5-.1-2.3-.1-1.3-.1-2.7-.2-4 0-.7 0-1.3-.1-2 0-2-.1-4-.1-6 0-53.5 16.9-103 45.8-143.6 2.3-3.2 4.7-6.4 7.1-9.5 4.9-6.2 10.1-12.3 15.6-18 2.7-2.9 5.5-5.7 8.4-8.4 2.9-2.7 5.8-5.4 8.8-8 4.5-3.9 9.1-7.6 13.9-11.2 1.6-1.2 3.2-2.4 4.8-3.5C140 34.2 171.7 20.1 206 13c16.1-3.3 32.9-5 50-5s33.8 1.7 50 5c34.3 7 66 21.1 93.6 40.7 1.6 1.2 3.2 2.3 4.8 3.5 4.8 3.6 9.4 7.3 13.9 11.2 12 10.4 23 21.9 32.8 34.4 2.5 3.1 4.8 6.3 7.1 9.5C487.1 153 504 202.5 504 256c0 2 0 4-.1 6 0 .7 0 1.3-.1 2 0 1.3-.1 2.7-.2 4 0 .8-.1 1.5-.1 2.3-.1 1.2-.1 2.4-.2.7-.1.8-.1 1.6-.2 2.4-.1 1.2-.2 2.4-.3 3.5-.1.8-.2 1.6-.2 2.4-.1 1.2-.3 2.4-.4 3.6-.1.8-.2 1.5-.3 2.3-.2 1.3-.4 2.6-.5 3.9-.1.6-.2 1.3-.3 1.9l-.9 5.7c-.1.6-.2 1.1-.3 1.7-.2 1.3-.5 2.7-.8 4-.2.8-.3 1.6-.5 2.4-.2 1.1-.5 2.2-.7 3.2-.2.9-.4 1.7-.6 2.6-.2 1-.5 2-.7 3-.2.9-.5 1.8-.7 2.7-.3 1-.5 1.9-.8 2.9-.2.9-.5 1.8-.8 2.7-.3.9-.6 1.9-.8 2.8-.3.9-.5 1.8-.8 2.7-.3.9-.6 1.8-.9 2.8-.5 1.6-1.1 3.3-1.7 4.9-.3.9-.6 1.8-1 2.8-.4 1-.7 2-1.1 3-.3.8-.6 1.5-.9 2.3l-1.2 3c-.3.7-.6 1.5-.9 2.2-.4 1-.8 2-1.3 3l-.9 2.1c-.4 1-.9 2-1.4 3-.3.7-.6 1.3-.9 2-.5 1-1 2.1-1.5 3.1-.3.6-.6 1.1-.8 1.7-.6 1.1-1.1 2.2-1.7 3.3-.1.2-.2.3-.3.5-2.2 4.1-4.4 8.2-6.8 12.2-.2.4-.5.8-.7 1.2-.7 1.1-1.3 2.2-2 3.3-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2 3.2-.3.5-.6.9-.9 1.4-.7 1.1-1.4 2.1-2.1 3.2-.3.4-.6.8-.8 1.2-.8 1.1-1.5 2.2-2.3 3.3-.2.2-.3.5-.5.7-37.6 54.7-94.5 91.4-160.1 102.4zm117.3-86.2c13-13 24.2-27.4 33.6-42.9v-71.3c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7V326h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7H304c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-4.8-6.5-3.7-9.5-3.7v-30.7c6.7-1.6 13.8-2.8 20.8-2.8 8.8 0 16.8 3.5 25.4 3.5 3.7 0 22.4-.9 22.4-6.5V93.4c0-2.1-1.6-3.7-3.7-3.7-4.2 0-12.2 3.5-19.4 3.5-7.9 0-16.9-3.5-26.3-3.5-6.5 0-12.9.9-19.2 2.3v-3.9c4.4-2.1 7.4-6.7 7.4-11.5 0-16.8-25.4-16.8-25.4 0 0 4.8 3 9.5 7.4 11.5v90.2c-3 0-9.5-1.1-9.5 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.2c-2.1 0-3.7 1.6-3.7 3.7v25.9h-29.5V182c0-2.1-1.6-3.7-3.7-3.7h-22.1c-2.1 0-3.7 1.6-3.7 3.7v144H93.5v-25.8c0-2.1-1.6-3.7-3.7-3.7H67.7c-2.1 0-3.7 1.6-3.7 3.7v71.3c9.4 15.5 20.6 29.9 33.6 42.9 20.6 20.6 44.5 36.7 71.2 48 13.9 5.9 28.2 10.3 42.9 13.2v-75.8c0-58.6 88.6-58.6 88.6 0v75.8c14.7-2.9 29-7.4 42.9-13.2 26.7-11.3 50.6-27.4 71.2-48" ], + forumbee: [ 448, 512, [], "f211", "M5.8 309.7C2 292.7 0 275.5 0 258.3 0 135 99.8 35 223.1 35c16.6 0 33.3 2 49.3 5.5C149 87.5 51.9 186 5.8 309.7zm392.9-189.2C385 103 369 87.8 350.9 75.2c-149.6 44.3-266.3 162.1-309.7 312 12.5 18.1 28 35.6 45.2 49 43.1-151.3 161.2-271.7 312.3-315.7zm15.8 252.7c15.2-25.1 25.4-53.7 29.5-82.8-79.4 42.9-145 110.6-187.6 190.3 30-4.4 58.9-15.3 84.6-31.3 35 13.1 70.9 24.3 107 33.6-9.3-36.5-20.4-74.5-33.5-109.8zm29.7-145.5c-2.6-19.5-7.9-38.7-15.8-56.8C290.5 216.7 182 327.5 137.1 466c18.1 7.6 37 12.5 56.6 15.2C240 367.1 330.5 274.4 444.2 227.7z" ], + foursquare: [ 368, 512, [], "f180", "M323.1 3H49.9C12.4 3 0 31.3 0 49.1v433.8c0 20.3 12.1 27.7 18.2 30.1 6.2 2.5 22.8 4.6 32.9-7.1C180 356.5 182.2 354 182.2 354c3.1-3.4 3.4-3.1 6.8-3.1h83.4c35.1 0 40.6-25.2 44.3-39.7l48.6-243C373.8 25.8 363.1 3 323.1 3zm-16.3 73.8l-11.4 59.7c-1.2 6.5-9.5 13.2-16.9 13.2H172.1c-12 0-20.6 8.3-20.6 20.3v13c0 12 8.6 20.6 20.6 20.6h90.4c8.3 0 16.6 9.2 14.8 18.2-1.8 8.9-10.5 53.8-11.4 58.8-.9 4.9-6.8 13.5-16.9 13.5h-73.5c-13.5 0-17.2 1.8-26.5 12.6 0 0-8.9 11.4-89.5 108.3-.9.9-1.8.6-1.8-.3V75.9c0-7.7 6.8-16.6 16.6-16.6h219c8.2 0 15.6 7.7 13.5 17.5z" ], + "free-code-camp": [ 576, 512, [], "f2c5", "M69.3 144.5c-41 68.5-36.4 163 1 227C92.5 409.7 120 423.9 120 438c0 6.8-6 13-12.8 13C87.7 451 8 375.5 8 253.2c0-111.5 78-186 97.1-186 6 0 14.9 4.8 14.9 11.1 0 12.7-28.3 28.6-50.7 66.2zm195.8 213.8c4.5 1.8 12.3 5.2 12.3-1.2 0-2.7-2.2-2.9-4.3-3.6-8.5-3.4-14-7.7-19.1-15.2-8.2-12.1-10.1-24.2-10.1-38.6 0-32.1 44.2-37.9 44.2-70 0-12.3-7.7-15.9-7.7-19.3 0-2.2.7-2.2 2.9-2.2 8 0 19.1 13.3 22.5 19.8 2.2 4.6 2.4 6 2.4 11.1 0 7-.7 14.2-.7 21.3 0 27 31.9 19.8 31.9 6.8 0-6-3.6-11.6-3.6-17.4 0-.7 0-1.2.7-1.2 3.4 0 9.4 7.7 11.1 10.1 5.8 8.9 8.5 20.8 8.5 31.4 0 32.4-29.5 49-29.5 56 0 1 2.9 7.7 12.1 1.9 29.7-15.1 53.1-47.6 53.1-89.8 0-33.6-8.7-57.7-32.1-82.6-3.9-4.1-16.4-16.9-22.5-16.9-8.2 0 7.2 18.6 7.2 31.2 0 7.2-4.8 12.3-12.3 12.3-11.6 0-14.5-25.4-15.9-33.3-5.8-33.8-12.8-58.2-46.4-74.1-10.4-5-36.5-11.8-36.5-2.2 0 2.4 2.7 4.1 4.6 5.1 9.2 5.6 19.6 21.4 19.6 38.2 0 46.1-57.7 88.2-57.7 136.2-.2 40.3 28.1 72.6 65.3 86.2zM470.4 67c-6 0-14.4 6.5-14.4 12.6 0 8.7 12.1 19.6 17.6 25.4 81.6 85.1 78.6 214.3 17.6 291-7 8.9-35.3 35.3-35.3 43.5 0 5.1 8.2 11.4 13.2 11.4 25.4 0 98.8-80.8 98.8-185.7C568 145.9 491.8 67 470.4 67zm-42.3 323.1H167c-9.4 0-15.5 7.5-15.5 16.4 0 8.5 7 15.5 15.5 15.5h261.1c9.4 0 11.9-7.5 11.9-16.4 0-8.5-3.5-15.5-11.9-15.5z" ], + freebsd: [ 448, 512, [], "f3a4", "M303.7 96.2c11.1-11.1 115.5-77 139.2-53.2 23.7 23.7-42.1 128.1-53.2 139.2-11.1 11.1-39.4.9-63.1-22.9-23.8-23.7-34.1-52-22.9-63.1zM109.9 68.1C73.6 47.5 22 24.6 5.6 41.1c-16.6 16.6 7.1 69.4 27.9 105.7 18.5-32.2 44.8-59.3 76.4-78.7zM406.7 174c3.3 11.3 2.7 20.7-2.7 26.1-20.3 20.3-87.5-27-109.3-70.1-18-32.3-11.1-53.4 14.9-48.7 5.7-3.6 12.3-7.6 19.6-11.6-29.8-15.5-63.6-24.3-99.5-24.3-119.1 0-215.6 96.5-215.6 215.6 0 119 96.5 215.6 215.6 215.6S445.3 380.1 445.3 261c0-38.4-10.1-74.5-27.7-105.8-3.9 7-7.6 13.3-10.9 18.8z" ], + fulcrum: [ 269, 512, [], "f50b", "M70.75 164.14l-35.38 43.55L0 164.14l35.38-43.55 35.37 43.55zM119.23 0L98.69 198.18 47.72 256l50.98 57.82L119.23 512V300.89L78.15 256l41.08-44.89V0zm79.67 164.14l35.38 43.55 35.38-43.55-35.38-43.55-35.38 43.55zm-48.48 46.97L191.5 256l-41.08 44.89V512l20.54-198.18L221.94 256l-50.98-57.82L150.42 0v211.11z" ], + "galactic-republic": [ 496, 512, [], "f50c", "M248 504C111.25 504 0 392.75 0 256S111.25 8 248 8s248 111.25 248 248-111.25 248-248 248zm0-479.47C120.37 24.53 16.53 128.37 16.53 256S120.37 487.47 248 487.47 479.47 383.63 479.47 256 375.63 24.53 248 24.53zm27.62 21.81v24.62a185.933 185.933 0 0 1 83.57 34.54l17.39-17.36c-28.75-22.06-63.3-36.89-100.96-41.8zm-55.37.07c-37.64 4.94-72.16 19.8-100.88 41.85l17.28 17.36h.08c24.07-17.84 52.55-30.06 83.52-34.67V46.41zm12.25 50.17v82.87c-10.04 2.03-19.42 5.94-27.67 11.42l-58.62-58.59-21.93 21.93 58.67 58.67c-5.47 8.23-9.45 17.59-11.47 27.62h-82.9v31h82.9c2.02 10.02 6.01 19.31 11.47 27.54l-58.67 58.69 21.93 21.93 58.62-58.62a77.873 77.873 0 0 0 27.67 11.47v82.9h31v-82.9c10.05-2.03 19.37-6.06 27.62-11.55l58.67 58.69 21.93-21.93-58.67-58.69c5.46-8.23 9.47-17.52 11.5-27.54h82.87v-31h-82.87c-2.02-10.02-6.03-19.38-11.5-27.62l58.67-58.67-21.93-21.93-58.67 58.67c-8.25-5.49-17.57-9.47-27.62-11.5V96.58h-31zm183.24 30.72l-17.36 17.36a186.337 186.337 0 0 1 34.67 83.67h24.62c-4.95-37.69-19.83-72.29-41.93-101.03zm-335.55.13c-22.06 28.72-36.91 63.26-41.85 100.91h24.65c4.6-30.96 16.76-59.45 34.59-83.52l-17.39-17.39zM38.34 283.67c4.92 37.64 19.75 72.18 41.8 100.9l17.36-17.39c-17.81-24.07-29.92-52.57-34.51-83.52H38.34zm394.7 0c-4.61 30.99-16.8 59.5-34.67 83.6l17.36 17.36c22.08-28.74 36.98-63.29 41.93-100.96h-24.62zM136.66 406.38l-17.36 17.36c28.73 22.09 63.3 36.98 100.96 41.93v-24.64c-30.99-4.63-59.53-16.79-83.6-34.65zm222.53.05c-24.09 17.84-52.58 30.08-83.57 34.67v24.57c37.67-4.92 72.21-19.79 100.96-41.85l-17.31-17.39h-.08z" ], + "galactic-senate": [ 512, 512, [], "f50d", "M249.86 33.48v26.07C236.28 80.17 226 168.14 225.39 274.9c11.74-15.62 19.13-33.33 19.13-48.24v-16.88c-.03-5.32.75-10.53 2.19-15.65.65-2.14 1.39-4.08 2.62-5.82 1.23-1.75 3.43-3.79 6.68-3.79 3.24 0 5.45 2.05 6.68 3.79 1.23 1.75 1.97 3.68 2.62 5.82 1.44 5.12 2.22 10.33 2.19 15.65v16.88c0 14.91 7.39 32.62 19.13 48.24-.63-106.76-10.91-194.73-24.49-215.35V33.48h-12.28zm-26.34 147.77c-9.52 2.15-18.7 5.19-27.46 9.08 8.9 16.12 9.76 32.64 1.71 37.29-8 4.62-21.85-4.23-31.36-19.82-11.58 8.79-21.88 19.32-30.56 31.09 14.73 9.62 22.89 22.92 18.32 30.66-4.54 7.7-20.03 7.14-35.47-.96-5.78 13.25-9.75 27.51-11.65 42.42 9.68.18 18.67 2.38 26.18 6.04 17.78-.3 32.77-1.96 40.49-4.22 5.55-26.35 23.02-48.23 46.32-59.51.73-25.55 1.88-49.67 3.48-72.07zm64.96 0c1.59 22.4 2.75 46.52 3.47 72.07 23.29 11.28 40.77 33.16 46.32 59.51 7.72 2.26 22.71 3.92 40.49 4.22 7.51-3.66 16.5-5.85 26.18-6.04-1.9-14.91-5.86-29.17-11.65-42.42-15.44 8.1-30.93 8.66-35.47.96-4.57-7.74 3.6-21.05 18.32-30.66-8.68-11.77-18.98-22.3-30.56-31.09-9.51 15.59-23.36 24.44-31.36 19.82-8.05-4.65-7.19-21.16 1.71-37.29a147.49 147.49 0 0 0-27.45-9.08zm-32.48 8.6c-3.23 0-5.86 8.81-6.09 19.93h-.05v16.88c0 41.42-49.01 95.04-93.49 95.04-52 0-122.75-1.45-156.37 29.17v2.51c9.42 17.12 20.58 33.17 33.18 47.97C45.7 380.26 84.77 360.4 141.2 360c45.68 1.02 79.03 20.33 90.76 40.87.01.01-.01.04 0 .05 7.67 2.14 15.85 3.23 24.04 3.21 8.19.02 16.37-1.07 24.04-3.21.01-.01-.01-.04 0-.05 11.74-20.54 45.08-39.85 90.76-40.87 56.43.39 95.49 20.26 108.02 41.35 12.6-14.8 23.76-30.86 33.18-47.97v-2.51c-33.61-30.62-104.37-29.17-156.37-29.17-44.48 0-93.49-53.62-93.49-95.04v-16.88h-.05c-.23-11.12-2.86-19.93-6.09-19.93zm0 96.59c22.42 0 40.6 18.18 40.6 40.6s-18.18 40.65-40.6 40.65-40.6-18.23-40.6-40.65c0-22.42 18.18-40.6 40.6-40.6zm0 7.64c-18.19 0-32.96 14.77-32.96 32.96S237.81 360 256 360s32.96-14.77 32.96-32.96-14.77-32.96-32.96-32.96zm0 6.14c14.81 0 26.82 12.01 26.82 26.82s-12.01 26.82-26.82 26.82-26.82-12.01-26.82-26.82 12.01-26.82 26.82-26.82zm-114.8 66.67c-10.19.07-21.6.36-30.5 1.66.43 4.42 1.51 18.63 7.11 29.76 9.11-2.56 18.36-3.9 27.62-3.9 41.28.94 71.48 34.35 78.26 74.47l.11 4.7c10.4 1.91 21.19 2.94 32.21 2.94 11.03 0 21.81-1.02 32.21-2.94l.11-4.7c6.78-40.12 36.98-73.53 78.26-74.47 9.26 0 18.51 1.34 27.62 3.9 5.6-11.13 6.68-25.34 7.11-29.76-8.9-1.3-20.32-1.58-30.5-1.66-18.76.42-35.19 4.17-48.61 9.67-12.54 16.03-29.16 30.03-49.58 33.07-.09.02-.17.04-.27.05-.05.01-.11.04-.16.05-5.24 1.07-10.63 1.6-16.19 1.6-5.55 0-10.95-.53-16.19-1.6-.05-.01-.11-.04-.16-.05-.1-.02-.17-.04-.27-.05-20.42-3.03-37.03-17.04-49.58-33.07-13.42-5.49-29.86-9.25-48.61-9.67z" ], + "get-pocket": [ 448, 512, [], "f265", "M407.6 64h-367C18.5 64 0 82.5 0 104.6v135.2C0 364.5 99.7 464 224.2 464c124 0 223.8-99.5 223.8-224.2V104.6c0-22.4-17.7-40.6-40.4-40.6zm-162 268.5c-12.4 11.8-31.4 11.1-42.4 0C89.5 223.6 88.3 227.4 88.3 209.3c0-16.9 13.8-30.7 30.7-30.7 17 0 16.1 3.8 105.2 89.3 90.6-86.9 88.6-89.3 105.5-89.3 16.9 0 30.7 13.8 30.7 30.7 0 17.8-2.9 15.7-114.8 123.2z" ], + gg: [ 512, 512, [], "f260", "M179.2 230.4l102.4 102.4-102.4 102.4L0 256 179.2 76.8l44.8 44.8-25.6 25.6-19.2-19.2-128 128 128 128 51.5-51.5-77.1-76.5 25.6-25.6zM332.8 76.8L230.4 179.2l102.4 102.4 25.6-25.6-77.1-76.5 51.5-51.5 128 128-128 128-19.2-19.2-25.6 25.6 44.8 44.8L512 256 332.8 76.8z" ], + "gg-circle": [ 512, 512, [], "f261", "M257 8C120 8 9 119 9 256s111 248 248 248 248-111 248-248S394 8 257 8zm-49.5 374.8L81.8 257.1l125.7-125.7 35.2 35.4-24.2 24.2-11.1-11.1-77.2 77.2 77.2 77.2 26.6-26.6-53.1-52.9 24.4-24.4 77.2 77.2-75 75.2zm99-2.2l-35.2-35.2 24.1-24.4 11.1 11.1 77.2-77.2-77.2-77.2-26.5 26.5 53.1 52.9-24.4 24.4-77.2-77.2 75-75L432.2 255 306.5 380.6z" ], + git: [ 448, 512, [], "f1d3", "M18.8 221.7c0 25.3 16.2 60 41.5 68.5v1c-18.8 8.3-24 50.6 1 65.8v1C34 367 16 384.3 16 414.2c0 51.5 48.8 65.8 91.5 65.8 52 0 90.7-18.7 90.7-76 0-70.5-101-44.5-101-82.8 0-13.5 7.2-18.7 19.7-21.3 41.5-7.7 67.5-40 67.5-82.2 0-7.3-1.5-14.2-4-21 6.7-1.5 13.2-3.3 19.7-5.5v-50.5c-17.2 6.8-35.7 11.8-54.5 11.8-53.8-31-126.8 1.3-126.8 69.2zm87.7 163.8c17 0 41.2 3 41.2 25 0 21.8-19.5 26.3-37.7 26.3-17.3 0-43.3-2.7-43.3-25.2.1-22.3 22.1-26.1 39.8-26.1zM103.3 256c-22 0-31.3-13-31.3-33.8 0-49.3 61-48.8 61-.5 0 20.3-8 34.3-29.7 34.3zM432 305.5v49c-13.3 7.3-30.5 9.8-45.5 9.8-53.5 0-59.8-42.2-59.8-85.7v-87.7h.5v-1c-7 0-7.3-1.6-24 1v-47.5h24c0-22.3.3-31-1.5-41.2h56.7c-2 13.8-1.5 27.5-1.5 41.2h51v47.5s-19.3-1-51-1V281c0 14.8 3.3 32.8 21.8 32.8 9.8 0 21.3-2.8 29.3-8.3zM286 68.7c0 18.7-14.5 36.2-33.8 36.2-19.8 0-34.5-17.2-34.5-36.2 0-19.3 14.5-36.7 34.5-36.7C272 32 286 50 286 68.7zm-6.2 74.5c-1.8 14.6-1.6 199.8 0 217.8h-55.5c1.6-18.1 1.8-203 0-217.8h55.5z" ], + "git-square": [ 448, 512, [], "f1d2", "M140.1 348.5c12.1 0 29.5 2.1 29.5 17.9 0 15.5-13.9 18.8-27 18.8-12.3 0-30.9-2-30.9-18s15.7-18.7 28.4-18.7zm-24.7-116.6c0 14.8 6.6 24.1 22.3 24.1 15.5 0 21.2-10 21.2-24.5.1-34.4-43.5-34.8-43.5.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-241 93.7c-12.3 4.8-25.5 8.4-38.9 8.4-38.5-22.1-90.7.9-90.7 49.5 0 18 11.6 42.9 29.6 48.9v.7c-13.4 5.9-17.1 36.1.7 47v.7c-19.5 6.4-32.3 18.8-32.3 40.2 0 36.8 34.8 47 65.4 47 37.1 0 64.8-13.4 64.8-54.3 0-50.4-72.1-31.8-72.1-59.1 0-9.6 5.2-13.4 14.1-15.2 29.6-5.5 48.2-28.6 48.2-58.7 0-5.2-1.1-10.2-2.9-15 4.8-1.1 9.5-2.3 14.1-3.9v-36.2zm56.8 1.8h-39.6c1.3 10.6 1.1 142.6 0 155.5h39.6c-1.1-12.8-1.2-145.1 0-155.5zm4.5-53.3c0-13.4-10-26.2-24.1-26.2-14.3 0-24.6 12.5-24.6 26.2 0 13.6 10.5 25.9 24.6 25.9 13.7 0 24.1-12.5 24.1-25.9zm104.3 53.3h-36.4c0-9.8-.4-19.6 1.1-29.5h-40.5c1.3 7.3 1.1 13.6 1.1 29.5h-17.1v33.9c11.9-1.9 12.1-.7 17.1-.7v.7h-.4v62.7c0 31.1 4.5 61.2 42.7 61.2 10.7 0 23-1.8 32.5-7v-35c-5.7 3.9-13.9 5.9-20.9 5.9-13.2 0-15.5-12.9-15.5-23.4v-65.2c22.7 0 36.4.7 36.4.7v-33.8z" ], + github: [ 496, 512, [], "f09b", "M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z" ], + "github-alt": [ 480, 512, [], "f113", "M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1zM480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2zm-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3zm-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1z" ], + "github-square": [ 448, 512, [], "f092", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z" ], + gitkraken: [ 592, 512, [], "f3a6", "M565.7 118.1c-2.3-6.1-9.3-9.2-15.3-6.6-5.7 2.4-8.5 8.9-6.3 14.6 10.9 29 16.9 60.5 16.9 93.3 0 134.6-100.3 245.7-230.2 262.7V358.4c7.9-1.5 15.5-3.6 23-6.2v104c106.7-25.9 185.9-122.1 185.9-236.8 0-91.8-50.8-171.8-125.8-213.3-5.7-3.2-13-.9-15.9 5-2.7 5.5-.6 12.2 4.7 15.1 67.9 37.6 113.9 110 113.9 193.2 0 93.3-57.9 173.1-139.8 205.4v-92.2c14.2-4.5 24.9-17.7 24.9-33.5 0-13.1-6.8-24.4-17.3-30.5 8.3-79.5 44.5-58.6 44.5-83.9V170c0-38-87.9-161.8-129-164.7-2.5-.2-5-.2-7.6 0C251.1 8.3 163.2 132 163.2 170v14.8c0 25.3 36.3 4.3 44.5 83.9-10.6 6.1-17.3 17.4-17.3 30.5 0 15.8 10.6 29 24.8 33.5v92.2c-81.9-32.2-139.8-112-139.8-205.4 0-83.1 46-155.5 113.9-193.2 5.4-3 7.4-9.6 4.7-15.1-2.9-5.9-10.1-8.2-15.9-5-75 41.5-125.8 121.5-125.8 213.3 0 114.7 79.2 210.8 185.9 236.8v-104c7.6 2.5 15.1 4.6 23 6.2v123.7C131.4 465.2 31 354.1 31 219.5c0-32.8 6-64.3 16.9-93.3 2.2-5.8-.6-12.2-6.3-14.6-6-2.6-13 .4-15.3 6.6C14.5 149.7 8 183.8 8 219.5c0 155.1 122.6 281.6 276.3 287.8V361.4c6.8.4 15 .5 23.4 0v145.8C461.4 501.1 584 374.6 584 219.5c0-35.7-6.5-69.8-18.3-101.4zM365.9 275.5c13 0 23.7 10.5 23.7 23.7 0 13.1-10.6 23.7-23.7 23.7-13 0-23.7-10.5-23.7-23.7 0-13.1 10.6-23.7 23.7-23.7zm-139.8 47.3c-13.2 0-23.7-10.7-23.7-23.7s10.5-23.7 23.7-23.7c13.1 0 23.7 10.6 23.7 23.7 0 13-10.5 23.7-23.7 23.7z" ], + gitlab: [ 512, 512, [], "f296", "M29.782 199.732L256 493.714 8.074 309.699c-6.856-5.142-9.712-13.996-7.141-21.993l28.849-87.974zm75.405-174.806c-3.142-8.854-15.709-8.854-18.851 0L29.782 199.732h131.961L105.187 24.926zm56.556 174.806L256 493.714l94.257-293.982H161.743zm349.324 87.974l-28.849-87.974L256 493.714l247.926-184.015c6.855-5.142 9.711-13.996 7.141-21.993zm-85.404-262.78c-3.142-8.854-15.709-8.854-18.851 0l-56.555 174.806h131.961L425.663 24.926z" ], + gitter: [ 384, 512, [], "f426", "M66.4 322.5H16V0h50.4v322.5zM166.9 76.1h-50.4V512h50.4V76.1zm100.6 0h-50.4V512h50.4V76.1zM368 76h-50.4v247H368V76z" ], + glide: [ 448, 512, [], "f2a5", "M252.8 148.6c0 8.8-1.6 17.7-3.4 26.4-5.8 27.8-11.6 55.8-17.3 83.6-1.4 6.3-8.3 4.9-13.7 4.9-23.8 0-30.5-26-30.5-45.5 0-29.3 11.2-68.1 38.5-83.1 4.3-2.5 9.2-4.2 14.1-4.2 11.4 0 12.3 8.3 12.3 17.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 187c0-5.1-20.8-37.7-25.5-39.5-2.2-.9-7.2-2.3-9.6-2.3-23.1 0-38.7 10.5-58.2 21.5l-.5-.5c4.3-29.4 14.6-57.2 14.6-87.4 0-44.6-23.8-62.7-67.5-62.7-71.7 0-108 70.8-108 123.5 0 54.7 32 85 86.3 85 7.5 0 6.9-.6 6.9 2.3-10.5 80.3-56.5 82.9-56.5 58.9 0-24.4 28-36.5 28.3-38-.2-7.6-29.3-17.2-36.7-17.2-21.1 0-32.7 33-32.7 50.6 0 32.3 20.4 54.7 53.3 54.7 48.2 0 83.4-49.7 94.3-91.7 9.4-37.7 7-39.4 12.3-42.1 20-10.1 35.8-16.8 58.4-16.8 11.1 0 19 2.3 36.7 5.2 1.8.1 4.1-1.7 4.1-3.5z" ], + "glide-g": [ 448, 512, [], "f2a6", "M407.1 211.2c-3.5-1.4-11.6-3.8-15.4-3.8-37.1 0-62.2 16.8-93.5 34.5l-.9-.9c7-47.3 23.5-91.9 23.5-140.4C320.8 29.1 282.6 0 212.4 0 97.3 0 39 113.7 39 198.4 39 286.3 90.3 335 177.6 335c12 0 11-1 11 3.8-16.9 128.9-90.8 133.1-90.8 94.6 0-39.2 45-58.6 45.5-61-.3-12.2-47-27.6-58.9-27.6-33.9.1-52.4 51.2-52.4 79.3C32 476 64.8 512 117.5 512c77.4 0 134-77.8 151.4-145.4 15.1-60.5 11.2-63.3 19.7-67.6 32.2-16.2 57.5-27 93.8-27 17.8 0 30.5 3.7 58.9 8.4 2.9 0 6.7-2.9 6.7-5.8 0-8-33.4-60.5-40.9-63.4zm-175.3-84.4c-9.3 44.7-18.6 89.6-27.8 134.3-2.3 10.2-13.3 7.8-22 7.8-38.3 0-49-41.8-49-73.1 0-47 18-109.3 61.8-133.4 7-4.1 14.8-6.7 22.6-6.7 18.6 0 20 13.3 20 28.7-.1 14.3-2.7 28.5-5.6 42.4z" ], + gofore: [ 400, 512, [], "f3a7", "M324 319.8h-13.2v34.7c-24.5 23.1-56.3 35.8-89.9 35.8-73.2 0-132.4-60.2-132.4-134.4 0-74.1 59.2-134.4 132.4-134.4 35.3 0 68.6 14 93.6 39.4l62.3-63.3C335 55.3 279.7 32 220.7 32 98 32 0 132.6 0 256c0 122.5 97 224 220.7 224 63.2 0 124.5-26.2 171-82.5-2-27.6-13.4-77.7-67.7-77.7zm-12.1-112.5H205.6v89H324c33.5 0 60.5 15.1 76 41.8v-30.6c0-65.2-40.4-100.2-88.1-100.2z" ], + goodreads: [ 448, 512, [], "f3a8", "M299.9 191.2c5.1 37.3-4.7 79-35.9 100.7-22.3 15.5-52.8 14.1-70.8 5.7-37.1-17.3-49.5-58.6-46.8-97.2 4.3-60.9 40.9-87.9 75.3-87.5 46.9-.2 71.8 31.8 78.2 78.3zM448 88v336c0 30.9-25.1 56-56 56H56c-30.9 0-56-25.1-56-56V88c0-30.9 25.1-56 56-56h336c30.9 0 56 25.1 56 56zM330 313.2s-.1-34-.1-217.3h-29v40.3c-.8.3-1.2-.5-1.6-1.2-9.6-20.7-35.9-46.3-76-46-51.9.4-87.2 31.2-100.6 77.8-4.3 14.9-5.8 30.1-5.5 45.6 1.7 77.9 45.1 117.8 112.4 115.2 28.9-1.1 54.5-17 69-45.2.5-1 1.1-1.9 1.7-2.9.2.1.4.1.6.2.3 3.8.2 30.7.1 34.5-.2 14.8-2 29.5-7.2 43.5-7.8 21-22.3 34.7-44.5 39.5-17.8 3.9-35.6 3.8-53.2-1.2-21.5-6.1-36.5-19-41.1-41.8-.3-1.6-1.3-1.3-2.3-1.3h-26.8c.8 10.6 3.2 20.3 8.5 29.2 24.2 40.5 82.7 48.5 128.2 37.4 49.9-12.3 67.3-54.9 67.4-106.3z" ], + "goodreads-g": [ 384, 512, [], "f3a9", "M42.6 403.3h2.8c12.7 0 25.5 0 38.2.1 1.6 0 3.1-.4 3.6 2.1 7.1 34.9 30 54.6 62.9 63.9 26.9 7.6 54.1 7.8 81.3 1.8 33.8-7.4 56-28.3 68-60.4 8-21.5 10.7-43.8 11-66.5.1-5.8.3-47-.2-52.8l-.9-.3c-.8 1.5-1.7 2.9-2.5 4.4-22.1 43.1-61.3 67.4-105.4 69.1-103 4-169.4-57-172-176.2-.5-23.7 1.8-46.9 8.3-69.7C58.3 47.7 112.3.6 191.6 0c61.3-.4 101.5 38.7 116.2 70.3.5 1.1 1.3 2.3 2.4 1.9V10.6h44.3c0 280.3.1 332.2.1 332.2-.1 78.5-26.7 143.7-103 162.2-69.5 16.9-159 4.8-196-57.2-8-13.5-11.8-28.3-13-44.5zM188.9 36.5c-52.5-.5-108.5 40.7-115 133.8-4.1 59 14.8 122.2 71.5 148.6 27.6 12.9 74.3 15 108.3-8.7 47.6-33.2 62.7-97 54.8-154-9.7-71.1-47.8-120-119.6-119.7z" ], + google: [ 488, 512, [], "f1a0", "M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z" ], + "google-drive": [ 512, 512, [], "f3aa", "M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z" ], + "google-play": [ 512, 512, [], "f3ab", "M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z" ], + "google-plus": [ 496, 512, [], "f2b3", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm-70.7 372c-68.8 0-124-55.5-124-124s55.2-124 124-124c31.3 0 60.1 11 83 32.3l-33.6 32.6c-13.2-12.9-31.3-19.1-49.4-19.1-42.9 0-77.2 35.5-77.2 78.1s34.2 78.1 77.2 78.1c32.6 0 64.9-19.1 70.1-53.3h-70.1v-42.6h116.9c1.3 6.8 1.9 13.6 1.9 20.7 0 70.8-47.5 121.2-118.8 121.2zm230.2-106.2v35.5H372v-35.5h-35.5v-35.5H372v-35.5h35.5v35.5h35.2v35.5h-35.2z" ], + "google-plus-g": [ 640, 512, [], "f0d5", "M386.061 228.496c1.834 9.692 3.143 19.384 3.143 31.956C389.204 370.205 315.599 448 204.8 448c-106.084 0-192-85.915-192-192s85.916-192 192-192c51.864 0 95.083 18.859 128.611 50.292l-52.126 50.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484 0-118.92 54.221-118.92 121.277 0 67.056 53.436 121.277 118.92 121.277 75.961 0 104.513-54.745 108.965-82.773H204.8v-66.009h181.261zm185.406 6.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001h-55.733z" ], + "google-plus-square": [ 448, 512, [], "f0d4", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM164 356c-55.3 0-100-44.7-100-100s44.7-100 100-100c27 0 49.5 9.8 67 26.2l-27.1 26.1c-7.4-7.1-20.3-15.4-39.8-15.4-34.1 0-61.9 28.2-61.9 63.2 0 34.9 27.8 63.2 61.9 63.2 39.6 0 54.4-28.5 56.8-43.1H164v-34.4h94.4c1 5 1.6 10.1 1.6 16.6 0 57.1-38.3 97.6-96 97.6zm220-81.8h-29v29h-29.2v-29h-29V245h29v-29H355v29h29v29.2z" ], + "google-wallet": [ 448, 512, [], "f1ee", "M156.8 126.8c37.6 60.6 64.2 113.1 84.3 162.5-8.3 33.8-18.8 66.5-31.3 98.3-13.2-52.3-26.5-101.3-56-148.5 6.5-36.4 2.3-73.6 3-112.3zM109.3 200H16.1c-6.5 0-10.5 7.5-6.5 12.7C51.8 267 81.3 330.5 101.3 400h103.5c-16.2-69.7-38.7-133.7-82.5-193.5-3-4-8-6.5-13-6.5zm47.8-88c68.5 108 130 234.5 138.2 368H409c-12-138-68.4-265-143.2-368H157.1zm251.8-68.5c-1.8-6.8-8.2-11.5-15.2-11.5h-88.3c-5.3 0-9 5-7.8 10.3 13.2 46.5 22.3 95.5 26.5 146 48.2 86.2 79.7 178.3 90.6 270.8 15.8-60.5 25.3-133.5 25.3-203 0-73.6-12.1-145.1-31.1-212.6z" ], + gratipay: [ 496, 512, [], "f184", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm114.6 226.4l-113 152.7-112.7-152.7c-8.7-11.9-19.1-50.4 13.6-72 28.1-18.1 54.6-4.2 68.5 11.9 15.9 17.9 46.6 16.9 61.7 0 13.9-16.1 40.4-30 68.1-11.9 32.9 21.6 22.6 60 13.8 72z" ], + grav: [ 512, 512, [], "f2d6", "M301.1 212c4.4 4.4 4.4 11.9 0 16.3l-9.7 9.7c-4.4 4.7-11.9 4.7-16.6 0l-10.5-10.5c-4.4-4.7-4.4-11.9 0-16.6l9.7-9.7c4.4-4.4 11.9-4.4 16.6 0l10.5 10.8zm-30.2-19.7c3-3 3-7.8 0-10.5-2.8-3-7.5-3-10.5 0-2.8 2.8-2.8 7.5 0 10.5 3.1 2.8 7.8 2.8 10.5 0zm-26 5.3c-3 2.8-3 7.5 0 10.2 2.8 3 7.5 3 10.5 0 2.8-2.8 2.8-7.5 0-10.2-3-3-7.7-3-10.5 0zm72.5-13.3c-19.9-14.4-33.8-43.2-11.9-68.1 21.6-24.9 40.7-17.2 59.8.8 11.9 11.3 29.3 24.9 17.2 48.2-12.5 23.5-45.1 33.2-65.1 19.1zm47.7-44.5c-8.9-10-23.3 6.9-15.5 16.1 7.4 9 32.1 2.4 15.5-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-66.2 42.6c2.5-16.1-20.2-16.6-25.2-25.7-13.6-24.1-27.7-36.8-54.5-30.4 11.6-8 23.5-6.1 23.5-6.1.3-6.4 0-13-9.4-24.9 3.9-12.5.3-22.4.3-22.4 15.5-8.6 26.8-24.4 29.1-43.2 3.6-31-18.8-59.2-49.8-62.8-22.1-2.5-43.7 7.7-54.3 25.7-23.2 40.1 1.4 70.9 22.4 81.4-14.4-1.4-34.3-11.9-40.1-34.3-6.6-25.7 2.8-49.8 8.9-61.4 0 0-4.4-5.8-8-8.9 0 0-13.8 0-24.6 5.3 11.9-15.2 25.2-14.4 25.2-14.4 0-6.4-.6-14.9-3.6-21.6-5.4-11-23.8-12.9-31.7 2.8.1-.2.3-.4.4-.5-5 11.9-1.1 55.9 16.9 87.2-2.5 1.4-9.1 6.1-13 10-21.6 9.7-56.2 60.3-56.2 60.3-28.2 10.8-77.2 50.9-70.6 79.7.3 3 1.4 5.5 3 7.5-2.8 2.2-5.5 5-8.3 8.3-11.9 13.8-5.3 35.2 17.7 24.4 15.8-7.2 29.6-20.2 36.3-30.4 0 0-5.5-5-16.3-4.4 27.7-6.6 34.3-9.4 46.2-9.1 8 3.9 8-34.3 8-34.3 0-14.7-2.2-31-11.1-41.5 12.5 12.2 29.1 32.7 28 60.6-.8 18.3-15.2 23-15.2 23-9.1 16.6-43.2 65.9-30.4 106 0 0-9.7-14.9-10.2-22.1-17.4 19.4-46.5 52.3-24.6 64.5 26.6 14.7 108.8-88.6 126.2-142.3 34.6-20.8 55.4-47.3 63.9-65 22 43.5 95.3 94.5 101.1 59z" ], + gripfire: [ 384, 512, [], "f3ac", "M171.8 503.8c0-5.3 4.8-12.2 4.8-22.3 0-15.2-13-39.9-78.1-86.6C64.2 365.8 32 336.4 32 286.6 32 171.9 179.1 110.1 179.1 18c0-3.3-.2-6.7-.6-10 5.1 2.4 39.1 43.3 39.1 90.4 0 80.5-105.1 129.2-105.1 203 0 26.9 16.6 47.2 32.6 69.5 22.5 30.2 44.2 56.9 44.2 86.5-.1 14.5-4.4 29.7-17.5 46.4zm146-241.4c1.5 8.4 2.2 16.6 2.2 24.6 0 51.8-29.4 97.5-67.3 136.8-1 1-2.2 2.4-3.2 2.4-3.6 0-35.5-41.6-35.5-53.2 0 0 41.8-55.7 41.8-96.9 0-10.8-2.7-21.7-9.1-33.4-1.5 32.3-55.7 87.7-58.1 87.7-2.7 0-17.9-22-17.9-42.1 0-5.3 1-10.7 3.2-15.8 2.4-5.5 56.6-72 56.6-116.7 0-6.2-1-12-3.4-17.1l-4-7.2c16.7 6.5 82.6 64.1 94.7 130.9" ], + grunt: [ 384, 512, [], "f3ad", "M61.3 189.3c-1.1 10 5.2 19.1 5.2 19.1.7-7.5 2.2-12.8 4-16.6.4 10.3 3.2 23.5 12.8 34.1 6.9 7.6 35.6 23.3 54.9 6.1 1 2.4 2.1 5.3 3 8.5 2.9 10.3-2.7 25.3-2.7 25.3s15.1-17.1 13.9-32.5c10.8-.5 21.4-8.4 21.1-19.5 0 0-18.9 10.4-35.5-8.8-9.7-11.2-40.9-42-83.1-31.8 4.3 1 8.9 2.4 13.5 4.1h-.1c-4.2 2-6.5 7.1-7 12zm28.3-1.8c19.5 11 37.4 25.7 44.9 37-5.7 3.3-21.7 10.4-38-1.7-10.3-7.6-9.8-26.2-6.9-35.3zm79.2 233.7c2.2 2.3 1.5 5.3.9 6.8-1.1 2.7-5.5 11.6-13 19.8-2.7 2.9-6.6 4.6-11 4.6-4.3 0-8.7-1.6-11.8-4.3-2.3-2.1-10.2-9.5-13.7-18.6-1.3-3.4-1-6.1.9-8.1 1.3-1.3 4-2.9 9.5-2.9H160c4.1 0 7 .9 8.8 2.7zm62.9-187.9c-1.2 15.5 13.9 32.5 13.9 32.5s-5.6-15-2.7-25.3c.9-3.2 2-6 3-8.5 19.3 17.3 48 1.5 54.8-6.1 9.6-10.6 12.3-23.8 12.8-34.1 1.8 3.8 3.4 9.1 4 16.6 0 0 6.4-9.1 5.2-19.1-.6-5-2.9-10-7-11.8h-.1c4.6-1.8 9.2-3.2 13.5-4.1-42.3-10.2-73.4 20.6-83.1 31.8-16.7 19.2-35.5 8.8-35.5 8.8-.2 10.9 10.4 18.9 21.2 19.3zm17.8-8.8c7.5-11.4 25.4-26 44.9-37 3 9.1 3.4 27.7-7 35.4-16.3 12.1-32.2 5-37.9 1.6-.1.1 0 0 0 0zM263 421.4c1.9 1.9 2.2 4.6.9 7.9-3.5 8.9-11.4 16.1-13.7 18.1-3.1 2.6-7.4 4.2-11.8 4.2s-8.3-1.6-11-4.5c-7.5-8-12-16.7-13-19.3-.6-1.5-1.3-4.4.9-6.7 1.7-1.8 4.7-2.7 8.9-2.7h29.4c5.4.1 8.1 1.7 9.4 3zm-98.3-251.5c9.9 6 18.8 8.1 27.3 8.3 8.5-.2 17.4-2.3 27.3-8.3 0 0-14.5 17.7-27.2 17.8h-.2c-12.7-.2-27.2-17.8-27.2-17.8zm184.5 147.4c-2.4 17.9-13 33.8-24.6 43.7-3.1-22.7-3.7-55.5-3.7-62.4 0-14.7 9.5-24.5 12.2-26.1 2.5-1.5 5.4-3 8.3-4.6 18-9.6 40.4-21.6 40.4-43.7 0-16.2-9.3-23.2-15.4-27.8-.8-.6-1.5-1.1-2.2-1.7-2.1-1.7-3.7-3-4.3-4.4-4.4-9.8-3.6-34.2-1.7-37.6.6-.6 16.7-20.9 11.8-39.2-2-7.4-6.9-13.3-14.1-17-5.3-2.7-11.9-4.2-19.5-4.5-.1-2-.5-3.9-.9-5.9-.6-2.6-1.1-5.3-.9-8.1.4-4.7.8-9 2.2-11.3 8.4-13.3 28.8-17.6 29-17.6l12.3-2.4-8.1-9.5c-.1-.2-17.3-17.5-46.3-17.5-7.9 0-16 1.3-24.1 3.9-24.2 7.8-42.9 30.5-49.4 39.3-3.1-1-6.3-1.9-9.6-2.7-4.2-15.8 9-38.5 9-38.5s-13.6-3-33.7 15.2c-2.6-6.5-8.1-20.5-1.8-37.2C184.6 10.1 177.2 26 175 40.4c-7.6-5.4-6.7-23.1-7.2-27.6-7.5.9-29.2 21.9-28.2 48.3-2 .5-3.9 1.1-5.9 1.7-6.5-8.8-25.1-31.5-49.4-39.3-7.9-2.2-16-3.5-23.9-3.5-29 0-46.1 17.3-46.3 17.5L6 46.9l12.3 2.4c.2 0 20.6 4.3 29 17.6 1.4 2.2 1.8 6.6 2.2 11.3.2 2.8-.4 5.5-.9 8.1-.4 1.9-.8 3.9-.9 5.9-7.7.3-14.2 1.8-19.5 4.5-7.2 3.7-12.1 9.6-14.1 17-5 18.2 11.2 38.5 11.8 39.2 1.9 3.4 2.7 27.8-1.7 37.6-.6 1.4-2.2 2.7-4.3 4.4-.7.5-1.4 1.1-2.2 1.7-6.1 4.6-15.4 11.7-15.4 27.8 0 22.1 22.4 34.1 40.4 43.7 3 1.6 5.8 3.1 8.3 4.6 2.7 1.6 12.2 11.4 12.2 26.1 0 6.9-.6 39.7-3.7 62.4-11.6-9.9-22.2-25.9-24.6-43.8 0 0-29.2 22.6-20.6 70.8 5.2 29.5 23.2 46.1 47 54.7 8.8 19.1 29.4 45.7 67.3 49.6C143 504.3 163 512 192.2 512h.2c29.1 0 49.1-7.7 63.6-19.5 37.9-3.9 58.5-30.5 67.3-49.6 23.8-8.7 41.7-25.2 47-54.7 8.2-48.4-21.1-70.9-21.1-70.9zM305.7 37.7c5.6-1.8 11.6-2.7 17.7-2.7 11 0 19.9 3 24.7 5-3.1 1.4-6.4 3.2-9.7 5.3-2.4-.4-5.6-.8-9.2-.8-10.5 0-20.5 3.1-28.7 8.9-12.3 8.7-18 16.9-20.7 22.4-2.2-1.3-4.5-2.5-7.1-3.7-1.6-.8-3.1-1.5-4.7-2.2 6.1-9.1 19.9-26.5 37.7-32.2zm21 18.2c-.8 1-1.6 2.1-2.3 3.2-3.3 5.2-3.9 11.6-4.4 17.8-.5 6.4-1.1 12.5-4.4 17-4.2.8-8.1 1.7-11.5 2.7-2.3-3.1-5.6-7-10.5-11.2 1.4-4.8 5.5-16.1 13.5-22.5 5.6-4.3 12.2-6.7 19.6-7zM45.6 45.3c-3.3-2.2-6.6-4-9.7-5.3 4.8-2 13.7-5 24.7-5 6.1 0 12 .9 17.7 2.7 17.8 5.8 31.6 23.2 37.7 32.1-1.6.7-3.2 1.4-4.8 2.2-2.5 1.2-4.9 2.5-7.1 3.7-2.6-5.4-8.3-13.7-20.7-22.4-8.3-5.8-18.2-8.9-28.8-8.9-3.4.1-6.6.5-9 .9zm44.7 40.1c-4.9 4.2-8.3 8-10.5 11.2-3.4-.9-7.3-1.9-11.5-2.7C65 89.5 64.5 83.4 64 77c-.5-6.2-1.1-12.6-4.4-17.8-.7-1.1-1.5-2.2-2.3-3.2 7.4.3 14 2.6 19.5 7 8 6.3 12.1 17.6 13.5 22.4zM58.1 259.9c-2.7-1.6-5.6-3.1-8.4-4.6-14.9-8-30.2-16.3-30.2-30.5 0-11.1 4.3-14.6 8.9-18.2l.5-.4c.7-.6 1.4-1.2 2.2-1.8-.9 7.2-1.9 13.3-2.7 14.9 0 0 12.1-15 15.7-44.3 1.4-11.5-1.1-34.3-5.1-43 .2 4.9 0 9.8-.3 14.4-.4-.8-.8-1.6-1.3-2.2-3.2-4-11.8-17.5-9.4-26.6.9-3.5 3.1-6 6.7-7.8 3.8-1.9 8.8-2.9 15.1-2.9 12.3 0 25.9 3.7 32.9 6 25.1 8 55.4 30.9 64.1 37.7.2.2.4.3.4.3l5.6 3.9-3.5-5.8c-.2-.3-19.1-31.4-53.2-46.5 2-2.9 7.4-8.1 21.6-15.1 21.4-10.5 46.5-15.8 74.3-15.8 27.9 0 52.9 5.3 74.3 15.8 14.2 6.9 19.6 12.2 21.6 15.1-34 15.1-52.9 46.2-53.1 46.5l-3.5 5.8 5.6-3.9s.2-.1.4-.3c8.7-6.8 39-29.8 64.1-37.7 7-2.2 20.6-6 32.9-6 6.3 0 11.3 1 15.1 2.9 3.5 1.8 5.7 4.4 6.7 7.8 2.5 9.1-6.1 22.6-9.4 26.6-.5.6-.9 1.3-1.3 2.2-.3-4.6-.5-9.5-.3-14.4-4 8.8-6.5 31.5-5.1 43 3.6 29.3 15.7 44.3 15.7 44.3-.8-1.6-1.8-7.7-2.7-14.9.7.6 1.5 1.2 2.2 1.8l.5.4c4.6 3.7 8.9 7.1 8.9 18.2 0 14.2-15.4 22.5-30.2 30.5-2.9 1.5-5.7 3.1-8.4 4.6-8.7 5-18 16.7-19.1 34.2-.9 14.6.9 49.9 3.4 75.9-12.4 4.8-26.7 6.4-39.7 6.8-2-4.1-3.9-8.5-5.5-13.1-.7-2-19.6-51.1-26.4-62.2 5.5 39 17.5 73.7 23.5 89.6-3.5-.5-7.3-.7-11.7-.7h-117c-4.4 0-8.3.3-11.7.7 6-15.9 18.1-50.6 23.5-89.6-6.8 11.2-25.7 60.3-26.4 62.2-1.6 4.6-3.5 9-5.5 13.1-13-.4-27.2-2-39.7-6.8 2.5-26 4.3-61.2 3.4-75.9-.9-17.4-10.3-29.2-19-34.2zM34.8 404.6c-12.1-20-8.7-54.1-3.7-59.1 10.9 34.4 47.2 44.3 74.4 45.4-2.7 4.2-5.2 7.6-7 10l-1.4 1.4c-7.2 7.8-8.6 18.5-4.1 31.8-22.7-.1-46.3-9.8-58.2-29.5zm45.7 43.5c6 1.1 12.2 1.9 18.6 2.4 3.5 8 7.4 15.9 12.3 23.1-14.4-5.9-24.4-16-30.9-25.5zM192 498.2c-60.6-.1-78.3-45.8-84.9-64.7-3.7-10.5-3.4-18.2.9-23.1 2.9-3.3 9.5-7.2 24.6-7.2h118.8c15.1 0 21.8 3.9 24.6 7.2 4.2 4.8 4.5 12.6.9 23.1-6.6 18.8-24.3 64.6-84.9 64.7zm80.6-24.6c4.9-7.2 8.8-15.1 12.3-23.1 6.4-.5 12.6-1.3 18.6-2.4-6.5 9.5-16.5 19.6-30.9 25.5zm76.6-69c-12 19.7-35.6 29.3-58.1 29.7 4.5-13.3 3.1-24.1-4.1-31.8-.4-.5-.9-1-1.4-1.5-1.8-2.4-4.3-5.8-7-10 27.2-1.2 63.5-11 74.4-45.4 5 5 8.4 39.1-3.8 59z" ], + gulp: [ 256, 512, [], "f3ae", "M209.8 391.1l-14.1 24.6-4.6 80.2c0 8.9-28.3 16.1-63.1 16.1s-63.1-7.2-63.1-16.1l-5.8-79.4-14.9-25.4c41.2 17.3 126 16.7 165.6 0zm-196-253.3l13.6 125.5c5.9-20 20.8-47 40-55.2 6.3-2.7 12.7-2.7 18.7.9 5.2 3 9.6 9.3 10.1 11.8 1.2 6.5-2 9.1-4.5 9.1-3 0-5.3-4.6-6.8-7.3-4.1-7.3-10.3-7.6-16.9-2.8-6.9 5-12.9 13.4-17.1 20.7-5.1 8.8-9.4 18.5-12 28.2-1.5 5.6-2.9 14.6-.6 19.9 1 2.2 2.5 3.6 4.9 3.6 5 0 12.3-6.6 15.8-10.1 4.5-4.5 10.3-11.5 12.5-16l5.2-15.5c2.6-6.8 9.9-5.6 9.9 0 0 10.2-3.7 13.6-10 34.7-5.8 19.5-7.6 25.8-7.6 25.8-.7 2.8-3.4 7.5-6.3 7.5-1.2 0-2.1-.4-2.6-1.2-1-1.4-.9-5.3-.8-6.3.2-3.2 6.3-22.2 7.3-25.2-2 2.2-4.1 4.4-6.4 6.6-5.4 5.1-14.1 11.8-21.5 11.8-3.4 0-5.6-.9-7.7-2.4l7.6 79.6c2 5 39.2 17.1 88.2 17.1 49.1 0 86.3-12.2 88.2-17.1l10.9-94.6c-5.7 5.2-12.3 11.6-19.6 14.8-5.4 2.3-17.4 3.8-17.4-5.7 0-5.2 9.1-14.8 14.4-21.5 1.4-1.7 4.7-5.9 4.7-8.1 0-2.9-6-2.2-11.7 2.5-3.2 2.7-6.2 6.3-8.7 9.7-4.3 6-6.6 11.2-8.5 15.5-6.2 14.2-4.1 8.6-9.1 22-5 13.3-4.2 11.8-5.2 14-.9 1.9-2.2 3.5-4 4.5-1.9 1-4.5.9-6.1-.3-.9-.6-1.3-1.9-1.3-3.7 0-.9.1-1.8.3-2.7 1.5-6.1 7.8-18.1 15-34.3 1.6-3.7 1-2.6.8-2.3-6.2 6-10.9 8.9-14.4 10.5-5.8 2.6-13 2.6-14.5-4.1-.1-.4-.1-.8-.2-1.2-11.8 9.2-24.3 11.7-20-8.1-4.6 8.2-12.6 14.9-22.4 14.9-4.1 0-7.1-1.4-8.6-5.1-2.3-5.5 1.3-14.9 4.6-23.8 1.7-4.5 4-9.9 7.1-16.2 1.6-3.4 4.2-5.4 7.6-4.5.6.2 1.1.4 1.6.7 2.6 1.8 1.6 4.5.3 7.2-3.8 7.5-7.1 13-9.3 20.8-.9 3.3-2 9 1.5 9 2.4 0 4.7-.8 6.9-2.4 4.6-3.4 8.3-8.5 11.1-13.5 2-3.6 4.4-8.3 5.6-12.3.5-1.7 1.1-3.3 1.8-4.8 1.1-2.5 2.6-5.1 5.2-5.1 1.3 0 2.4.5 3.2 1.5 1.7 2.2 1.3 4.5.4 6.9-2 5.6-4.7 10.6-6.9 16.7-1.3 3.5-2.7 8-2.7 11.7 0 3.4 3.7 2.6 6.8 1.2 2.4-1.1 4.8-2.8 6.8-4.5 1.2-4.9.9-3.8 26.4-68.2 1.3-3.3 3.7-4.7 6.1-4.7 1.2 0 2.2.4 3.2 1.1 1.7 1.3 1.7 4.1 1 6.2-.7 1.9-.6 1.3-4.5 10.5-5.2 12.1-8.6 20.8-13.2 31.9-1.9 4.6-7.7 18.9-8.7 22.3-.6 2.2-1.3 5.8 1 5.8 5.4 0 19.3-13.1 23.1-17 .2-.3.5-.4.9-.6.6-1.9 1.2-3.7 1.7-5.5 1.4-3.8 2.7-8.2 5.3-11.3.8-1 1.7-1.6 2.7-1.6 2.8 0 4.2 1.2 4.2 4 0 1.1-.7 5.1-1.1 6.2 1.4-1.5 2.9-3 4.5-4.5 15-13.9 25.7-6.8 25.7.2 0 7.4-8.9 17.7-13.8 23.4-1.6 1.9-4.9 5.4-5 6.4 0 1.3.9 1.8 2.2 1.8 2 0 6.4-3.5 8-4.7 5-3.9 11.8-9.9 16.6-14.1l14.8-136.8c-30.5 17.1-197.6 17.2-228.3.2zm229.7-8.5c0 21-231.2 21-231.2 0 0-8.8 51.8-15.9 115.6-15.9 9 0 17.8.1 26.3.4l12.6-48.7L228.1.6c1.4-1.4 5.8-.2 9.9 3.5s6.6 7.9 5.3 9.3l-.1.1L185.9 74l-10 40.7c39.9 2.6 67.6 8.1 67.6 14.6zm-69.4 4.6c0-.8-.9-1.5-2.5-2.1l-.2.8c0 1.3-5 2.4-11.1 2.4s-11.1-1.1-11.1-2.4c0-.1 0-.2.1-.3l.2-.7c-1.8.6-3 1.4-3 2.3 0 2.1 6.2 3.7 13.7 3.7 7.7.1 13.9-1.6 13.9-3.7z" ], + "hacker-news": [ 448, 512, [], "f1d4", "M0 32v448h448V32H0zm21.2 197.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z" ], + "hacker-news-square": [ 448, 512, [], "f3af", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM21.2 229.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z" ], + hips: [ 640, 512, [], "f452", "M0 80.2c0-1.8.9-2.7 2.7-2.7h40.9c1.9 0 2.8.9 2.8 2.7v81.2c15.2-7.7 31.7-11.5 49.8-11.4 24 .1 44.2 6.2 60.3 18 18.7 13.5 28 31.9 28 55.3v136.1c0 1.9-.9 2.8-2.7 2.8h-27.3c-9.1 0-16.4-7.3-16.4-16.3V223.3c0-.9 2.7-27-45.8-27-48.6 0-45.8 26.2-45.8 27v136.1c0 1.9-.9 2.8-2.8 2.8h-41c-1.8 0-2.7-.9-2.7-2.8V80.2zm497.7 221.5c13.7 10.2 34.1 19.1 58.4 19.1 23.3 0 32.8-4.5 36.5-13.6 3-7.9-.6-16.1-12.2-21.2l-53.6-23.5c-21.4-9.4-33.8-24-37.2-43.6-5.7-33.7 22.2-53.3 22.7-53.7 13.2-9.6 32-15.4 58.5-15.4 19 0 37.4 3.3 55.1 9.9 1.3.5 1.9 1.3 1.9 2.6V207c0 2.1-2.3 3.4-4 2.4-39.7-20.7-76.6-12.3-84-6.8-6.6 4.9-6 12.5 2.6 16.1L600 244c16.5 7.1 28.1 18.4 34.9 34.1 5.5 12.6 6.6 25.6 3.1 39.1-9.6 36.9-44.9 45.5-45.6 45.8-10.5 3.1-23.6 4.3-36.3 4.3-16.6 0-32.6-2.7-48.2-8.2-9.7-3.4-14.6-10.3-14.6-20.7V304c0-2.1 2.3-3.7 4.4-2.3zM376.2 149.8c-31.7 0-104.2 20.1-104.2 103.5v183.5c0 .8.6 2.7 2.7 2.7h40.9c1.9 0 2.8-.9 2.8-2.7V348c16.5 12.7 35.8 19.1 57.7 19.1 60.5 0 108.7-48.5 108.7-108.7.1-60.3-48.2-108.6-108.6-108.6zm0 170.9c-17.2 0-31.9-6.1-44-18.2-12.2-12.2-18.2-26.8-18.2-44 0-34.5 27.6-62.2 62.2-62.2 34.5 0 62.2 27.6 62.2 62.2.1 34.3-27.3 62.2-62.2 62.2zm-124.6 38.7c0 1.9-.9 2.8-2.8 2.8h-40.9c-1.6 0-2.7-1.4-2.7-2.8V157.6c0-1.4 1.1-2.8 2.7-2.8h40.9c1.9 0 2.8.9 2.8 2.8v201.8M228.3 72.5c15.9 0 28.9 12.7 28.9 28.9 0 15.8-12.7 28.9-28.9 28.9s-28.9-13.3-28.9-28.9c.1-16 13-28.9 28.9-28.9" ], + "hire-a-helper": [ 512, 512, [], "f3b0", "M443.1 0H71.9C67.9 37.3 37.4 67.8 0 71.7v371.5c37.4 4.9 66 32.4 71.9 68.8h372.2c3-36.4 32.5-65.8 67.9-69.8V71.7c-36.4-5.9-65-35.3-68.9-71.7zm-37 404.9c-36.3 0-18.8-2-55.1-2-35.8 0-21 2-56.1 2-5.9 0-4.9-8.2 0-9.8 22.8-7.6 22.9-10.2 24.6-12.8 10.4-15.6 5.9-83 5.9-113 0-5.3-6.4-12.8-13.8-12.8H200.4c-7.4 0-13.8 7.5-13.8 12.8 0 30-4.5 97.4 5.9 113 1.7 2.5 1.8 5.2 24.6 12.8 4.9 1.6 6 9.8 0 9.8-35.1 0-20.3-2-56.1-2-36.3 0-18.8 2-55.1 2-7.9 0-5.8-10.8 0-10.8 10.2-3.4 13.5-3.5 21.7-13.8 7.7-12.9 7.9-44.4 7.9-127.8V151.3c0-22.2-12.2-28.3-28.6-32.4-8.8-2.2-4-11.8 1-11.8 36.5 0 20.6 2 57.1 2 32.7 0 16.5-2 49.2-2 3.3 0 8.5 8.3 1 10.8-4.9 1.6-27.6 3.7-27.6 39.3 0 45.6-.2 55.8 1 68.8 0 1.3 2.3 12.8 12.8 12.8h109.2c10.5 0 12.8-11.5 12.8-12.8 1.2-13 1-23.2 1-68.8 0-35.6-22.7-37.7-27.6-39.3-7.5-2.5-2.3-10.8 1-10.8 32.7 0 16.5 2 49.2 2 36.5 0 20.6-2 57.1-2 4.9 0 9.9 9.6 1 11.8-16.4 4.1-28.6 10.3-28.6 32.4v101.2c0 83.4.1 114.9 7.9 127.8 8.2 10.2 11.4 10.4 21.7 13.8 5.8 0 7.8 10.8 0 10.8z" ], + hooli: [ 640, 512, [], "f427", "M508.4 352h57.9V156.7L508.4 184v168zm73.7-110.5V352H640V241.5h-57.9zm-250.7-8.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.2-1.1-50.4 17.1c-1.9 1.9-3.7 3.9-5.3 6-38.2-29.6-72.5-46.5-102.1-61.1v-20.7l-22.5 10.6c-54.4-22.1-89-18.2-97.3.1 0 0-24.9 32.8 61.9 110.9v-31c-48.8-54.6-39-76.1-35.3-79.2 13.5-11.4 37.5-8 64.4 2.1L65.2 184v63.3c13.1 14.7 30.5 31.5 53.5 50.4l4.5 3.6v-29.8c0-6.9 1.7-18.2 10.8-18.2s10.6 6.9 10.6 15V317c18 12.2 37.3 22.1 57.7 29.6v-93.9c0-18.7-13.4-37.4-40.6-37.4-15.8-.1-30.5 8.2-38.5 21.9v-54.3c41.9 20.9 83.9 46.5 99.9 58.3-10.2 14.6-9.3 28.1-9.3 43.7 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.7-33.8 16.7-52.5 0-18.5 1.5-34.2-16.7-52.3zm-39.7 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm185.7-71.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.3-1.1-50.4 17.1c-18.2 18.2-16.8 33.9-16.8 52.6 0 18.7-1.4 34.3 16.8 52.5 18.2 18.2 50.4 17.1 50.4 17.1s32.3 1.1 50.4-17.1c18.2-18.2 16.8-33.8 16.8-52.5-.1-18.8 1.3-34.5-16.8-52.6zm-39.8 71.9c0 3.6-1.8 12.5-10.7 12.5-8.9 0-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9 3.4 0 10.7 2.1 10.7 10.9v40.4zm173.5-73c15.9 0 28.9-12.9 28.9-28.9s-12.9-24.5-28.9-24.5c-15.9 0-28.9 8.6-28.9 24.5s12.9 28.9 28.9 28.9zM144.5 352l38.3.8c-13.2-4.6-26-10.2-38.3-16.8v16zm-21.4 0v-28.6c-6.5-4.2-13-8.7-19.4-13.6-14.8-11.2-27.5-21.7-38.5-31.5V352h57.9zm59.7.8c36.5 12.5 69.9 14.2 94.7 7.2-19.9.2-45.8-2.6-75.3-13.3v5.3l-19.4.8z" ], + hornbill: [ 509, 512, [], "f592", "M75.37 370.3c2.14 15.83-5.77 31.98-20.94 39.29-18.85 9.1-41.55 1.17-50.68-17.68-9.08-18.83-1.13-41.58 17.7-50.65 7.05-3.4 14.63-4.42 21.85-3.38-78.28-111.35 52-190.53 52-190.53-5.86 43.04-8.24 91.16-8.24 91.16-67.31 41.45.92 64.06 39.81 72.87 19.77 53.62 71.18 91.94 131.66 91.94 1.92 0 3.77-.21 5.67-.28l.11 18.86c-99.22 1.39-158.7-29.14-188.94-51.6zM183.38 42.6c.89-7-.1-14.33-3.39-21.15-9.1-18.84-31.82-26.78-50.66-17.69-18.86 9.1-26.8 31.83-17.69 50.68 6.98 14.47 22.02 22.42 37.18 21.23-22.55 29.91-53.83 89.57-52.42 190.03l21.84-.15c-.02-.9-.14-1.77-.14-2.68 0-58.95 36.37-109.33 87.85-130.16 8.01-37.75 30.74-114.3 73.84-44.29 0 0 48.14 2.38 91.18 8.24 0-.01-77.84-128.03-187.59-54.06zm304.18 134.17c18.84-9.09 26.81-31.81 17.7-50.65-9.1-18.85-31.83-26.77-50.67-17.69-15.27 7.37-23.19 23.69-20.87 39.64-31.71-21.94-89.84-49.05-183.45-47.74l.14 22.5c2.7-.15 5.39-.41 8.14-.41 59.3 0 109.9 36.8 130.49 88.76 39.1 9.02 105.06 31.58 38.46 72.54 0 0-2.34 48.13-8.21 91.16 0 0 133.45-81.16 48.96-194.61 6.43.5 13.07-.49 19.31-3.5zM373.05 436.24c21.43-32.46 46.42-89.69 45.14-179.66l-19.52.14c.08 2.06.3 4.07.3 6.15 0 60.27-38.05 111.55-91.39 131.45-8.85 38.95-31.44 106.66-72.77 39.49 0 0-48.12-2.34-91.19-8.22 0 0 79.92 131.34 191.9 50.97.31 4.72 1.45 9.45 3.64 13.97 9.06 18.89 31.8 26.78 50.64 17.71 18.86-9.1 26.79-31.83 17.7-50.65-6.56-13.62-20.26-21.43-34.45-21.35z" ], + hotjar: [ 448, 512, [], "f3b1", "M414.9 161.5C340.2 29 121.1 0 121.1 0S222.2 110.4 93 197.7C11.3 252.8-21 324.4 14 402.6c26.8 59.9 83.5 84.3 144.6 93.4-29.2-55.1-6.6-122.4-4.1-129.6 57.1 86.4 165 0 110.8-93.9 71 15.4 81.6 138.6 27.1 215.5 80.5-25.3 134.1-88.9 148.8-145.6 15.5-59.3 3.7-127.9-26.3-180.9z" ], + houzz: [ 414, 512, [], "f27c", "M258.9 330.7H154.3V480H0V32h109.5v104.5l305.1 85.6V480H258.9V330.7z" ], + html5: [ 384, 512, [], "f13b", "M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z" ], + hubspot: [ 512, 512, [], "f3b2", "M267.4 211.6c-25.1 23.7-40.8 57.3-40.8 94.6 0 29.3 9.7 56.3 26 78L203.1 434c-4.4-1.6-9.1-2.5-14-2.5-10.8 0-20.9 4.2-28.5 11.8-7.6 7.6-11.8 17.8-11.8 28.6s4.2 20.9 11.8 28.5c7.6 7.6 17.8 11.6 28.5 11.6 10.8 0 20.9-3.9 28.6-11.6 7.6-7.6 11.8-17.8 11.8-28.5 0-4.2-.6-8.2-1.9-12.1l50-50.2c22 16.9 49.4 26.9 79.3 26.9 71.9 0 130-58.3 130-130.2 0-65.2-47.7-119.2-110.2-128.7V116c17.5-7.4 28.2-23.8 28.2-42.9 0-26.1-20.9-47.9-47-47.9S311.2 47 311.2 73.1c0 19.1 10.7 35.5 28.2 42.9v61.2c-15.2 2.1-29.6 6.7-42.7 13.6-27.6-20.9-117.5-85.7-168.9-124.8 1.2-4.4 2-9 2-13.8C129.8 23.4 106.3 0 77.4 0 48.6 0 25.2 23.4 25.2 52.2c0 28.9 23.4 52.3 52.2 52.3 9.8 0 18.9-2.9 26.8-7.6l163.2 114.7zm89.5 163.6c-38.1 0-69-30.9-69-69s30.9-69 69-69 69 30.9 69 69-30.9 69-69 69z" ], + imdb: [ 448, 512, [], "f2d8", "M350.5 288.7c0 5.4 1.6 14.4-6.2 14.4-1.6 0-3-.8-3.8-2.4-2.2-5.1-1.1-44.1-1.1-44.7 0-3.8-1.1-12.7 4.9-12.7 7.3 0 6.2 7.3 6.2 12.7v32.7zM265 229.9c0-9.7 1.6-16-10.3-16v83.7c12.2.3 10.3-8.7 10.3-18.4v-49.3zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM21.3 228.8c-.1.1-.2.3-.3.4h.3v-.4zM97 192H64v127.8h33V192zm113.3 0h-43.1l-7.6 59.9c-2.7-20-5.4-40.1-8.7-59.9h-42.8v127.8h29v-84.5l12.2 84.5h20.6l11.6-86.4v86.4h28.7V192zm86.3 45.3c0-8.1.3-16.8-1.4-24.4-4.3-22.5-31.4-20.9-49-20.9h-24.6v127.8c86.1.1 75 6 75-82.5zm85.9 17.3c0-17.3-.8-30.1-22.2-30.1-8.9 0-14.9 2.7-20.9 9.2V192h-31.7v127.8h29.8l1.9-8.1c5.7 6.8 11.9 9.8 20.9 9.8 19.8 0 22.2-15.2 22.2-30.9v-36z" ], + instagram: [ 448, 512, [], "f16d", "M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z" ], + "internet-explorer": [ 512, 512, [], "f26b", "M483.049 159.706c10.855-24.575 21.424-60.438 21.424-87.871 0-72.722-79.641-98.371-209.673-38.577-107.632-7.181-211.221 73.67-237.098 186.457 30.852-34.862 78.271-82.298 121.977-101.158C125.404 166.85 79.128 228.002 43.992 291.725 23.246 329.651 0 390.94 0 436.747c0 98.575 92.854 86.5 180.251 42.006 31.423 15.43 66.559 15.573 101.695 15.573 97.124 0 184.249-54.294 216.814-146.022H377.927c-52.509 88.593-196.819 52.996-196.819-47.436H509.9c6.407-43.581-1.655-95.715-26.851-141.162zM64.559 346.877c17.711 51.15 53.703 95.871 100.266 123.304-88.741 48.94-173.267 29.096-100.266-123.304zm115.977-108.873c2-55.151 50.276-94.871 103.98-94.871 53.418 0 101.981 39.72 103.981 94.871H180.536zm184.536-187.6c21.425-10.287 48.563-22.003 72.558-22.003 31.422 0 54.274 21.717 54.274 53.722 0 20.003-7.427 49.007-14.569 67.867-26.28-42.292-65.986-81.584-112.263-99.586z" ], + ioxhost: [ 640, 512, [], "f208", "M616 160h-67.3C511.2 70.7 422.9 8 320 8 183 8 72 119 72 256c0 16.4 1.6 32.5 4.7 48H24c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h67.3c37.5 89.3 125.8 152 228.7 152 137 0 248-111 248-248 0-16.4-1.6-32.5-4.7-48H616c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24zm-96 96c0 110.5-89.5 200-200 200-75.7 0-141.6-42-175.5-104H424c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24H125.8c-3.8-15.4-5.8-31.4-5.8-48 0-110.5 89.5-200 200-200 75.7 0 141.6 42 175.5 104H216c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h298.2c3.8 15.4 5.8 31.4 5.8 48zm-304-24h208c13.3 0 24 10.7 24 24 0 13.2-10.7 24-24 24H216c-13.3 0-24-10.7-24-24 0-13.2 10.7-24 24-24z" ], + itunes: [ 448, 512, [], "f3b4", "M223.6 80.3C129 80.3 52.5 157 52.5 251.5S129 422.8 223.6 422.8s171.2-76.7 171.2-171.2c0-94.6-76.7-171.3-171.2-171.3zm79.4 240c-3.2 13.6-13.5 21.2-27.3 23.8-12.1 2.2-22.2 2.8-31.9-5-11.8-10-12-26.4-1.4-36.8 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 3.2-3.6 2.2-2 2.2-80.8 0-5.6-2.7-7.1-8.4-6.1-4 .7-91.9 17.1-91.9 17.1-5 1.1-6.7 2.6-6.7 8.3 0 116.1.5 110.8-1.2 118.5-2.1 9-7.6 15.8-14.9 19.6-8.3 4.6-23.4 6.6-31.4 5.2-21.4-4-28.9-28.7-14.4-42.9 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 5-5.7.9-127 2.6-133.7.4-2.6 1.5-4.8 3.5-6.4 2.1-1.7 5.8-2.7 6.7-2.7 101-19 113.3-21.4 115.1-21.4 5.7-.4 9 3 9 8.7-.1 170.6.4 161.4-1 167.6zM345.2 32H102.8C45.9 32 0 77.9 0 134.8v242.4C0 434.1 45.9 480 102.8 480h242.4c57 0 102.8-45.9 102.8-102.8V134.8C448 77.9 402.1 32 345.2 32zM223.6 444c-106.3 0-192.5-86.2-192.5-192.5S117.3 59 223.6 59s192.5 86.2 192.5 192.5S329.9 444 223.6 444z" ], + "itunes-note": [ 384, 512, [], "f3b5", "M381.9 388.2c-6.4 27.4-27.2 42.8-55.1 48-24.5 4.5-44.9 5.6-64.5-10.2-23.9-20.1-24.2-53.4-2.7-74.4 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 6.4-7.2 4.4-4.1 4.4-163.2 0-11.2-5.5-14.3-17-12.3-8.2 1.4-185.7 34.6-185.7 34.6-10.2 2.2-13.4 5.2-13.4 16.7 0 234.7 1.1 223.9-2.5 239.5-4.2 18.2-15.4 31.9-30.2 39.5-16.8 9.3-47.2 13.4-63.4 10.4-43.2-8.1-58.4-58-29.1-86.6 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 10.1-11.5 1.8-256.6 5.2-270.2.8-5.2 3-9.6 7.1-12.9 4.2-3.5 11.8-5.5 13.4-5.5 204-38.2 228.9-43.1 232.4-43.1 11.5-.8 18.1 6 18.1 17.6.2 344.5 1.1 326-1.8 338.5z" ], + java: [ 377, 512, [], "f4e4", "M121.6 396s-19.6 11.4 13.9 15.2c40.6 4.6 61.3 4 106-4.5 0 0 11.8 7.4 28.2 13.8C169.5 463.4 42.9 418 121.6 396m-12.2-56.1s-21.9 16.2 11.6 19.7c43.3 4.5 77.6 4.8 136.8-6.6 0 0 8.2 8.3 21.1 12.8-121.3 35.5-256.3 2.9-169.5-25.9m103.2-95.1c24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3.1 0-175.2 43.8-91.5 140.2m132.6 192.6s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6.7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2 204.2 33.2 372.4-14.9 319.4-38.8M131 281.8s-93.1 22.1-33 30.1c25.4 3.4 76 2.6 123.1-1.3 38.5-3.2 77.2-10.2 77.2-10.2s-13.6 5.8-23.4 12.5c-94.5 24.9-277 13.3-224.5-12.1 44.5-21.4 80.6-19 80.6-19m167 93.3c96.1-49.9 51.6-97.9 20.6-91.4-7.6 1.6-11 3-11 3s2.8-4.4 8.2-6.3c61.3-21.6 108.5 63.6-19.8 97.3 0-.1 1.5-1.4 2-2.6M240 0s53.2 53.2-50.5 135c-83.1 65.6-19 103.1 0 145.8-48.5-43.8-84.1-82.3-60.2-118.2C164.4 110.1 261.5 84.5 240 0m-99.5 510.4c92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6" ], + "jedi-order": [ 448, 512, [], "f50e", "M231.89 335.72l31.44-45.89-20.18 55.5 62.56 9.09-62.56 9.08 24.22 47.43s-30.22-31.77-34.49-36.25c1.76 68.78 2.19 85.7 2.19 85.7s154.4-71.65 68.62-230.09c0 0 106.97-118.07 10.09-190.73 0 0 165.5 99.91 60.55 271.46 0 0 86.78-84.77 41.37-170.54 0 0 78.71 111.01-17.16 233.11 0 0 26.24-16.15 49.45-77.71 0 0-16.93 183.26-221.96 185.66v.02h-4.08v-.02C16.93 479.14 0 295.88 0 295.88c23.21 61.56 49.44 77.71 49.44 77.71-95.87-122.11-17.15-233.11-17.15-233.11-45.41 85.78 41.38 170.54 41.38 170.54-104.95-171.56 60.54-271.46 60.54-271.46-96.88 72.66 10.09 190.73 10.09 190.73-85.78 158.44 68.62 230.09 68.62 230.09s.43-16.93 2.19-85.7l-34.48 36.25 24.22-47.43-62.56-9.08 62.56-9.09-20.18-55.5 31.44 45.89c2.25-87.85 7.82-305.82 7.85-306.85l.01-2.43.02 1 .03-1 .01 2.43c.05 1.72 5.61 219.2 7.86 306.85z" ], + jenkins: [ 512, 512, [], "f3b6", "M487.1 425c-1.4-11.2-19-23.1-28.2-31.9-5.1-5-29-23.1-30.4-29.9-1.4-6.6 9.7-21.5 13.3-28.9 5.1-10.7 8.8-23.7 11.3-32.6 18.8-66.1 20.7-156.9-6.2-211.2-10.2-20.6-38.6-49-56.4-62.5-42-31.7-119.6-35.3-170.1-16.6-14.1 5.2-27.8 9.8-40.1 17.1-33.1 19.4-68.3 32.5-78.1 71.6-24.2 10.8-31.5 41.8-30.3 77.8.2 7 4.1 15.8 2.7 22.4-.7 3.3-5.2 7.6-6.1 9.8-11.6 27.7-2.3 64 11.1 83.7 8.1 11.9 21.5 22.4 39.2 25.2.7 10.6 3.3 19.7 8.2 30.4 3.1 6.8 14.7 19 10.4 27.7-2.2 4.4-21 13.8-27.3 17.6C89 407.2 73.7 415 54.2 429c-12.6 9-32.3 10.2-29.2 31.1 2.1 14.1 10.1 31.6 14.7 45.8.7 2 1.4 4.1 2.1 6h422c4.9-15.3 9.7-30.9 14.6-47.2 3.4-11.4 10.2-27.8 8.7-39.7zM205.9 33.7c1.8-.5 3.4.7 4.9 2.4-.2 5.2-5.4 5.1-8.9 6.8-5.4 6.7-13.4 9.8-20 17.2-6.8 7.5-14.4 27.7-23.4 30-4.5 1.1-9.7-.8-13.6-.5-10.4.7-17.7 6-28.3 7.5 13.6-29.9 56.1-54 89.3-63.4zm-104.8 93.6c13.5-14.9 32.1-24.1 54.8-25.9 11.7 29.7-8.4 65-.9 97.6 2.3 9.9 10.2 25.4-2.4 25.7.3-28.3-34.8-46.3-61.3-29.6-1.8-21.5-4.9-51.7 9.8-67.8zm36.7 200.2c-1-4.1-2.7-12.9-2.3-15.1 1.6-8.7 17.1-12.5 11-24.7-11.3-.1-13.8 10.2-24.1 11.3-26.7 2.6-45.6-35.4-44.4-58.4 1-19.5 17.6-38.2 40.1-35.8 16 1.8 21.4 19.2 24.5 34.7 9.2.5 22.5-.4 26.9-7.6-.6-17.5-8.8-31.6-8.2-47.7 1-30.3 17.5-57.6 4.8-87.4 13.6-30.9 53.5-55.3 83.1-70 36.6-18.3 94.9-3.7 129.3 15.8 19.7 11.1 34.4 32.7 48.3 50.7-19.5-5.8-36.1 4.2-33.1 20.3 16.3-14.9 44.2-.2 52.5 16.4 7.9 15.8 7.8 39.3 9 62.8 2.9 57-10.4 115.9-39.1 157.1-7.7 11-14.1 23-24.9 30.6-26 18.2-65.4 34.7-99.2 23.4-44.7-15-65-44.8-89.5-78.8.7 18.7 13.8 34.1 26.8 48.4 11.3 12.5 25 26.6 39.7 32.4-12.3-2.9-31.1-3.8-36.2 7.2-28.6-1.9-55.1-4.8-68.7-24.2-10.6-15.4-21.4-41.4-26.3-61.4zm222 124.1c4.1-3 11.1-2.9 17.4-3.6-5.4-2.7-13-3.7-19.3-2.2-.1-4.2-2-6.8-3.2-10.2 10.6-3.8 35.5-28.5 49.6-20.3 6.7 3.9 9.5 26.2 10.1 37 .4 9-.8 18-4.5 22.8-18.8-.6-35.8-2.8-50.7-7 .9-6.1-1-12.1.6-16.5zm-17.2-20c-16.8.8-26-1.2-38.3-10.8.2-.8 1.4-.5 1.5-1.4 18 8 40.8-3.3 59-4.9-7.9 5.1-14.6 11.6-22.2 17.1zm-12.1 33.2c-1.6-9.4-3.5-12-2.8-20.2 25-16.6 29.7 28.6 2.8 20.2zM226 438.6c-11.6-.7-48.1-14-38.5-23.7 9.4 6.5 27.5 4.9 41.3 7.3.8 4.4-2.8 10.2-2.8 16.4zM57.7 497.1c-4.3-12.7-9.2-25.1-14.8-36.9 30.8-23.8 65.3-48.9 102.2-63.5 2.8-1.1 23.2 25.4 26.2 27.6 16.5 11.7 37 21 56.2 30.2 1.2 8.8 3.9 20.2 8.7 35.5.7 2.3 1.4 4.7 2.2 7.2H57.7zm240.6 5.7h-.8c.3-.2.5-.4.8-.5v.5zm7.5-5.7c2.1-1.4 4.3-2.8 6.4-4.3 1.1 1.4 2.2 2.8 3.2 4.3h-9.6zm15.1-24.7c-10.8 7.3-20.6 18.3-33.3 25.2-6 3.3-27 11.7-33.4 10.2-3.6-.8-3.9-5.3-5.4-9.5-3.1-9-10.1-23.4-10.8-37-.8-17.2-2.5-46 16-42.4 14.9 2.9 32.3 9.7 43.9 16.1 7.1 3.9 11.1 8.6 21.9 9.5-.1 1.4-.1 2.8-.2 4.3-5.9 3.9-15.3 3.8-21.8 7.1 9.5.4 17 2.7 23.5 5.9-.1 3.4-.3 7-.4 10.6zm53.4 24.7h-14c-.1-3.2-2.8-5.8-6.1-5.8s-5.9 2.6-6.1 5.8h-17.4c-2.8-4.4-5.7-8.6-8.9-12.5 2.1-2.2 4-4.7 6-6.9 9 3.7 14.8-4.9 21.7-4.2 7.9.8 14.2 11.7 25.4 11l-.6 12.6zm8.7 0c.2-4 .4-7.8.6-11.5 15.6-7.3 29 1.3 35.7 11.5H383zm83.4-37c-2.3 11.2-5.8 24-9.9 37.1-.2-.1-.4-.1-.6-.1H428c.6-1.1 1.2-2.2 1.9-3.3-2.6-6.1-9-8.7-10.9-15.5 12.1-22.7 6.5-93.4-24.2-78.5 4.3-6.3 15.6-11.5 20.8-19.3 13 10.4 20.8 20.3 33.2 31.4 6.8 6 20 13.3 21.4 23.1.8 5.5-2.6 18.9-3.8 25.1zM222.2 130.5c5.4-14.9 27.2-34.7 45-32 7.7 1.2 18 8.2 12.2 17.7-30.2-7-45.2 12.6-54.4 33.1-8.1-2-4.9-13.1-2.8-18.8zm184.1 63.1c8.2-3.6 22.4-.7 29.6-5.3-4.2-11.5-10.3-21.4-9.3-37.7.5 0 1 0 1.4.1 6.8 14.2 12.7 29.2 21.4 41.7-5.7 13.5-43.6 25.4-43.1 1.2zm20.4-43zm-117.2 45.7c-6.8-10.9-19-32.5-14.5-45.3 6.5 11.9 8.6 24.4 17.8 33.3 4.1 4 12.2 9 8.2 20.2-.9 2.7-7.8 8.6-11.7 9.7-14.4 4.3-47.9.9-36.6-17.1 11.9.7 27.9 7.8 36.8-.8zm27.3 70c3.8 6.6 1.4 18.7 12.1 20.6 20.2 3.4 43.6-12.3 58.1-17.8 9-15.2-.8-20.7-8.9-30.5-16.6-20-38.8-44.8-38-74.7 6.7-4.9 7.3 7.4 8.2 9.7 8.7 20.3 30.4 46.2 46.3 63.5 3.9 4.3 10.3 8.4 11 11.2 2.1 8.2-5.4 18-4.5 23.5-21.7 13.9-45.8 29.1-81.4 25.6-7.4-6.7-10.3-21.4-2.9-31.1zm-201.3-9.2c-6.8-3.9-8.4-21-16.4-21.4-11.4-.7-9.3 22.2-9.3 35.5-7.8-7.1-9.2-29.1-3.5-40.3-6.6-3.2-9.5 3.6-13.1 5.9 4.7-34.1 49.8-15.8 42.3 20.3zm299.6 28.8c-10.1 19.2-24.4 40.4-54 41-.6-6.2-1.1-15.6 0-19.4 22.7-2.2 36.6-13.7 54-21.6zm-141.9 12.4c18.9 9.9 53.6 11 79.3 10.2 1.4 5.6 1.3 12.6 1.4 19.4-33 1.8-72-6.4-80.7-29.6zm92.2 46.7c-1.7 4.3-5.3 9.3-9.8 11.1-12.1 4.9-45.6 8.7-62.4-.3-10.7-5.7-17.5-18.5-23.4-26-2.8-3.6-16.9-12.9-.2-12.9 13.1 32.7 58 29 95.8 28.1z" ], + joget: [ 496, 512, [], "f3b7", "M227.5 468.7c-9-13.6-19.9-33.3-23.7-42.4-5.7-13.7-27.2-45.6 31.2-67.1 51.7-19.1 176.7-16.5 208.8-17.6-4 9-8.6 17.9-13.9 26.6-40.4 65.5-110.4 101.5-182 101.5-6.8 0-13.6-.4-20.4-1M66.1 143.9C128 43.4 259.6 12.2 360.1 74.1c74.8 46.1 111.2 130.9 99.3 212.7-24.9-.5-179.3-3.6-230.3-4.9-55.5-1.4-81.7-20.8-58.5-48.2 23.2-27.4 51.1-40.7 68.9-51.2 17.9-10.5 27.3-33.7-23.6-29.7C87.3 161.5 48.6 252.1 37.6 293c-8.8-49.7-.1-102.7 28.5-149.1m-29.2-18c-71.9 116.6-35.6 269.3 81 341.2 116.6 71.9 269.3 35.6 341.2-80.9 71.9-116.6 35.6-269.4-81-341.2-40.5-25.1-85.5-37-129.9-37C165 8 83.8 49.9 36.9 125.9m244.4 110.4c-31.5 20.5-65.3 31.3-65.3 31.3l169.5-1.6 46.5-23.4s3.6-9.5-19.1-15.5c-22.7-6-57 11.3-86.7 27.2-29.7 15.8-31.1 8.2-31.1 8.2s40.2-28.1 50.7-34.5c10.5-6.4 31.9-14 13.4-24.6-3.2-1.8-6.7-2.7-10.4-2.7-17.8 0-41.5 18.7-67.5 35.6" ], + joomla: [ 448, 512, [], "f1aa", "M.6 92.1C.6 58.8 27.4 32 60.4 32c30 0 54.5 21.9 59.2 50.2 32.6-7.6 67.1.6 96.5 30l-44.3 44.3c-20.5-20.5-42.6-16.3-55.4-3.5-14.3 14.3-14.3 37.9 0 52.2l99.5 99.5-44 44.3c-87.7-87.2-49.7-49.7-99.8-99.7-26.8-26.5-35-64.8-24.8-98.9C20.4 144.6.6 120.7.6 92.1zm129.5 116.4l44.3 44.3c10-10 89.7-89.7 99.7-99.8 14.3-14.3 37.6-14.3 51.9 0 12.8 12.8 17 35-3.5 55.4l44 44.3c31.2-31.2 38.5-67.6 28.9-101.2 29.2-4.1 51.9-29.2 51.9-59.5 0-33.2-26.8-60.1-59.8-60.1-30.3 0-55.4 22.5-59.5 51.6-33.8-9.9-71.7-1.5-98.3 25.1-18.3 19.1-71.1 71.5-99.6 99.9zm266.3 152.2c8.2-32.7-.9-68.5-26.3-93.9-11.8-12.2 5 4.7-99.5-99.7l-44.3 44.3 99.7 99.7c14.3 14.3 14.3 37.6 0 51.9-12.8 12.8-35 17-55.4-3.5l-44 44.3c27.6 30.2 68 38.8 102.7 28 5.5 27.4 29.7 48.1 58.9 48.1 33 0 59.8-26.8 59.8-60.1 0-30.2-22.5-55-51.6-59.1zm-84.3-53.1l-44-44.3c-87 86.4-50.4 50.4-99.7 99.8-14.3 14.3-37.6 14.3-51.9 0-13.1-13.4-16.9-35.3 3.2-55.4l-44-44.3c-30.2 30.2-38 65.2-29.5 98.3-26.7 6-46.2 29.9-46.2 58.2C0 453.2 26.8 480 59.8 480c28.6 0 52.5-19.8 58.6-46.7 32.7 8.2 68.5-.6 94.2-26 32.1-32 12.2-12.4 99.5-99.7z" ], + js: [ 448, 512, [], "f3b8", "M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z" ], + "js-square": [ 448, 512, [], "f3b9", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM243.8 381.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z" ], + jsfiddle: [ 576, 512, [], "f1cc", "M510.634 237.462c-4.727-2.621-5.664-5.748-6.381-10.776-2.352-16.488-3.539-33.619-9.097-49.095-35.895-99.957-153.99-143.386-246.849-91.646-27.37 15.25-48.971 36.369-65.493 63.903-3.184-1.508-5.458-2.71-7.824-3.686-30.102-12.421-59.049-10.121-85.331 9.167-25.531 18.737-36.422 44.548-32.676 76.408.355 3.025-1.967 7.621-4.514 9.545-39.712 29.992-56.031 78.065-41.902 124.615 13.831 45.569 57.514 79.796 105.608 81.433 30.291 1.031 60.637.546 90.959.539 84.041-.021 168.09.531 252.12-.48 52.664-.634 96.108-36.873 108.212-87.293 11.54-48.074-11.144-97.3-56.832-122.634zm21.107 156.88c-18.23 22.432-42.343 35.253-71.28 35.65-56.874.781-113.767.23-170.652.23 0 .7-163.028.159-163.728.154-43.861-.332-76.739-19.766-95.175-59.995-18.902-41.245-4.004-90.848 34.186-116.106 9.182-6.073 12.505-11.566 10.096-23.136-5.49-26.361 4.453-47.956 26.42-62.981 22.987-15.723 47.422-16.146 72.034-3.083 10.269 5.45 14.607 11.564 22.198-2.527 14.222-26.399 34.557-46.727 60.671-61.294 97.46-54.366 228.37 7.568 230.24 132.697.122 8.15 2.412 12.428 9.848 15.894 57.56 26.829 74.456 96.122 35.142 144.497zm-87.789-80.499c-5.848 31.157-34.622 55.096-66.666 55.095-16.953-.001-32.058-6.545-44.079-17.705-27.697-25.713-71.141-74.98-95.937-93.387-20.056-14.888-41.99-12.333-60.272 3.782-49.996 44.071 15.859 121.775 67.063 77.188 4.548-3.96 7.84-9.543 12.744-12.844 8.184-5.509 20.766-.884 13.168 10.622-17.358 26.284-49.33 38.197-78.863 29.301-28.897-8.704-48.84-35.968-48.626-70.179 1.225-22.485 12.364-43.06 35.414-55.965 22.575-12.638 46.369-13.146 66.991 2.474C295.68 280.7 320.467 323.97 352.185 343.47c24.558 15.099 54.254 7.363 68.823-17.506 28.83-49.209-34.592-105.016-78.868-63.46-3.989 3.744-6.917 8.932-11.41 11.72-10.975 6.811-17.333-4.113-12.809-10.353 20.703-28.554 50.464-40.44 83.271-28.214 31.429 11.714 49.108 44.366 42.76 78.186z" ], + keybase: [ 412, 512, [], "f4f5", "M177.2 430.9c0 9.8-8 17.8-17.8 17.8s-17.8-8-17.8-17.8 8-17.8 17.8-17.8c9.8-.1 17.8 7.9 17.8 17.8zM270 413c-9.8 0-17.8 8-17.8 17.8s8 17.8 17.8 17.8 17.8-8 17.8-17.8-8-17.8-17.8-17.8zm142.3-36c0 38.9-7.6 73.9-22.2 103h-27.3c23.5-38.7 30.5-94.8 22.4-134.3-16.1 29.5-52.1 38.6-85.9 28.8-127.8-37.5-192.5 19.7-234.6 50.3l18.9-59.3-39.9 42.3c4.8 26.7 15.7 51.3 31.2 72.3H46.1c-9.7-15.8-17.2-33-22.2-51.3L.1 454c0-74.9-5.5-147.6 61.5-215.2 20.2-20.4 43.7-36.2 69.1-46.7-6.8-13.5-9.5-29.2-7.8-46l-19.9-1.2c-17.9-1.1-31.6-16.5-30.6-34.4v-.1L74 84.2c1.1-17.1 15.4-30.6 32.5-30.6 1.3 0-.3-.1 28.2 1.7 13.9.8 21.5 9.8 22.8 11.4 7.1-10.4 14.5-20.5 24.6-34.5l20.6 12.1c-13.6 29-9.1 36.2-9 36.3 3.9 0 13.9-.5 32.4 5.7C246 92.9 262 107 271 126c.4.9 15.5 29 1.2 62.6 19 6.1 51.3 19.9 82.4 51.8 36.6 37.6 57.7 87.4 57.7 136.6zM128 122.3c3.2-10 7.7-19.7 13.1-29.4.1-2 2.2-13.1-7.8-13.8-28.5-1.8-26.3-1.6-26.7-1.6-4.6 0-8.3 3.5-8.6 8.1l-1.6 26.2c-.3 4.7 3.4 8.8 8.1 9.1l23.5 1.4zm25.8 61.8c5.6 9.4 14.1 16.1 22.3 20 0-21.2 28.5-41.9 52.8-17.5l8.4 10.3c20.8-18.8 19.4-45.3 12.1-60.9-13.8-29.1-46.9-32-54.3-31.7-10.3.4-19.7-5.4-23.7-15.3-13.7 21.2-37.2 62.5-17.6 95.1zm82.9 68.4L217 268.6c-1.9 1.6-2.2 4.4-.6 6.3l8.9 10.9c1 1.2 3.8 2.7 6.3.6l19.6-16 5.5 6.8c4.9 6 13.8-1.4 9-7.3-63.6-78.3-41.5-51.1-55.3-68.1-4.7-6-13.9 1.4-9 7.3 1.9 2.3 18.4 22.6 19.8 24.3l-9.6 7.9c-4.6 3.8 2.6 13.3 7.4 9.4l9.7-8 8 9.8zm118.4 25.7c-16.9-23.7-42.6-46.7-73.4-60.4-7.9-3.5-15-6.1-22.9-8.6-2 2.2-4.1 4.3-6.4 6.2l31.9 39.2c10.4 12.7 8.5 31.5-4.2 41.9-1.3 1.1-13.1 10.7-29 4.9-2.9 2.3-10.1 9.9-22.2 9.9-8.6 0-16.6-3.8-22.1-10.5l-8.9-10.9c-6.3-7.8-7.9-17.9-5-26.8-8.2-9.9-8.3-21.3-4.6-30-7.2-1.3-26.7-6.2-42.7-21.4-55.8 20.7-88 64.4-101.3 91.2-14.9 30.2-18.8 60.9-19.9 90.2 8.2-8.7-3.9 4.1 114-120.9l-29.9 93.6c57.8-31.1 124-36 197.4-14.4 23.6 6.9 45.1 1.6 56-13.9 11.1-15.6 8.5-37.7-6.8-59.3zM110.6 107.3l15.6 1 1-15.6-15.6-1-1 15.6z" ], + keycdn: [ 512, 512, [], "f3ba", "M63.8 409.3l60.5-59c32.1 42.8 71.1 66 126.6 67.4 30.5.7 60.3-7 86.4-22.4 5.1 5.3 18.5 19.5 20.9 22-32.2 20.7-69.6 31.1-108.1 30.2-43.3-1.1-84.6-16.7-117.7-44.4.3-.6-38.2 37.5-38.6 37.9 9.5 29.8-13.1 62.4-46.3 62.4C20.7 503.3 0 481.7 0 454.9c0-34.3 33.1-56.6 63.8-45.6zm354.9-252.4c19.1 31.3 29.6 67.4 28.7 104-1.1 44.8-19 87.5-48.6 121 .3.3 23.8 25.2 24.1 25.5 9.6-1.3 19.2 2 25.9 9.1 11.3 12 10.9 30.9-1.1 42.4-12 11.3-30.9 10.9-42.4-1.1-6.7-7-9.4-16.8-7.6-26.3-24.9-26.6-44.4-47.2-44.4-47.2 42.7-34.1 63.3-79.6 64.4-124.2.7-28.9-7.2-57.2-21.1-82.2l22.1-21zM104 53.1c6.7 7 9.4 16.8 7.6 26.3l45.9 48.1c-4.7 3.8-13.3 10.4-22.8 21.3-25.4 28.5-39.6 64.8-40.7 102.9-.7 28.9 6.1 57.2 20 82.4l-22 21.5C72.7 324 63.1 287.9 64.2 250.9c1-44.6 18.3-87.6 47.5-121.1l-25.3-26.4c-9.6 1.3-19.2-2-25.9-9.1-11.3-12-10.9-30.9 1.1-42.4C73.5 40.7 92.2 41 104 53.1zM464.9 8c26 0 47.1 22.4 47.1 48.3S490.9 104 464.9 104c-6.3.1-14-1.1-15.9-1.8l-62.9 59.7c-32.7-43.6-76.7-65.9-126.9-67.2-30.5-.7-60.3 6.8-86.2 22.4l-21.1-22C184.1 74.3 221.5 64 260 64.9c43.3 1.1 84.6 16.7 117.7 44.6l41.1-38.6c-1.5-4.7-2.2-9.6-2.2-14.5C416.5 29.7 438.9 8 464.9 8zM256.7 113.4c5.5 0 10.9.4 16.4 1.1 78.1 9.8 133.4 81.1 123.8 159.1-9.8 78.1-81.1 133.4-159.1 123.8-78.1-9.8-133.4-81.1-123.8-159.2 9.3-72.4 70.1-124.6 142.7-124.8zm-59 119.4c.6 22.7 12.2 41.8 32.4 52.2l-11 51.7h73.7l-11-51.7c20.1-10.9 32.1-29 32.4-52.2-.4-32.8-25.8-57.5-58.3-58.3-32.1.8-57.3 24.8-58.2 58.3zM256 160" ], + kickstarter: [ 448, 512, [], "f3bb", "M400 480H48c-26.4 0-48-21.6-48-48V80c0-26.4 21.6-48 48-48h352c26.4 0 48 21.6 48 48v352c0 26.4-21.6 48-48 48zM199.6 178.5c0-30.7-17.6-45.1-39.7-45.1-25.8 0-40 19.8-40 44.5v154.8c0 25.8 13.7 45.6 40.5 45.6 21.5 0 39.2-14 39.2-45.6v-41.8l60.6 75.7c12.3 14.9 39 16.8 55.8 0 14.6-15.1 14.8-36.8 4-50.4l-49.1-62.8 40.5-58.7c9.4-13.5 9.5-34.5-5.6-49.1-16.4-15.9-44.6-17.3-61.4 7l-44.8 64.7v-38.8z" ], + "kickstarter-k": [ 384, 512, [], "f3bc", "M147.3 114.4c0-56.2-32.5-82.4-73.4-82.4C26.2 32 0 68.2 0 113.4v283c0 47.3 25.3 83.4 74.9 83.4 39.8 0 72.4-25.6 72.4-83.4v-76.5l112.1 138.3c22.7 27.2 72.1 30.7 103.2 0 27-27.6 27.3-67.4 7.4-92.2l-90.8-114.8 74.9-107.4c17.4-24.7 17.5-63.1-10.4-89.8-30.3-29-82.4-31.6-113.6 12.8L147.3 185v-70.6z" ], + korvue: [ 446, 512, [], "f42f", "M386.5 34h-327C26.8 34 0 60.8 0 93.5v327.1C0 453.2 26.8 480 59.5 480h327.1c33 0 59.5-26.8 59.5-59.5v-327C446 60.8 419.2 34 386.5 34zM87.1 120.8h96v116l61.8-116h110.9l-81.2 132H87.1v-132zm161.8 272.1l-65.7-113.6v113.6h-96V262.1h191.5l88.6 130.8H248.9z" ], + laravel: [ 640, 512, [], "f3bd", "M637.5 241.6c-4.2-4.8-62.8-78.1-73.1-90.5-10.3-12.4-15.4-10.2-21.7-9.3-6.4.9-80.5 13.4-89.1 14.8-8.6 1.5-14 4.9-8.7 12.3 4.7 6.6 53.4 75.7 64.2 90.9l-193.7 46.4L161.2 48.7c-6.1-9.1-7.4-12.3-21.4-11.6-14 .6-120.9 9.5-128.5 10.2-7.6.6-16 4-8.4 22s129 279.6 132.4 287.2c3.4 7.6 12.2 20 32.8 15 21.1-5.1 94.3-24.2 134.3-34.7 21.1 38.3 64.2 115.9 72.2 127 10.6 14.9 18 12.4 34.3 7.4 12.8-3.9 199.6-71.1 208-74.5 8.4-3.5 13.6-5.9 7.9-14.4-4.2-6.2-53.5-72.2-79.3-106.8 17.7-4.7 80.6-21.4 87.3-23.3 7.9-2 9-5.8 4.7-10.6zm-352.2 72c-2.3.5-110.8 26.5-116.6 27.8-5.8 1.3-5.8.7-6.5-1.3-.7-2-129-266.7-130.8-270-1.8-3.3-1.7-5.9 0-5.9s102.5-9 106-9.2c3.6-.2 3.2.6 4.5 2.8 0 0 142.2 245.4 144.6 249.7 2.6 4.3 1.1 5.6-1.2 6.1zm306 57.4c1.7 2.7 3.5 4.5-2 6.4-5.4 2-183.7 62.1-187.1 63.6-3.5 1.5-6.2 2-10.6-4.5s-62.4-106.8-62.4-106.8L518 280.6c4.7-1.5 6.2-2.5 9.2 2.2 2.9 4.8 62.4 85.5 64.1 88.2zm12.1-134.1c-4.2.9-73.6 18.1-73.6 18.1l-56.7-77.8c-1.6-2.3-2.9-4.5 1.1-5s68.4-12.2 71.3-12.8c2.9-.7 5.4-1.5 9 3.4 3.6 4.9 52.6 67 54.5 69.4 1.8 2.3-1.4 3.7-5.6 4.7z" ], + lastfm: [ 512, 512, [], "f202", "M225.8 367.1l-18.8-51s-30.5 34-76.2 34c-40.5 0-69.2-35.2-69.2-91.5 0-72.1 36.4-97.9 72.1-97.9 66.5 0 74.8 53.3 100.9 134.9 18.8 56.9 54 102.6 155.4 102.6 72.7 0 122-22.3 122-80.9 0-72.9-62.7-80.6-115-92.1-25.8-5.9-33.4-16.4-33.4-34 0-19.9 15.8-31.7 41.6-31.7 28.2 0 43.4 10.6 45.7 35.8l58.6-7c-4.7-52.8-41.1-74.5-100.9-74.5-52.8 0-104.4 19.9-104.4 83.9 0 39.9 19.4 65.1 68 76.8 44.9 10.6 79.8 13.8 79.8 45.7 0 21.7-21.1 30.5-61 30.5-59.2 0-83.9-31.1-97.9-73.9-32-96.8-43.6-163-161.3-163C45.7 113.8 0 168.3 0 261c0 89.1 45.7 137.2 127.9 137.2 66.2 0 97.9-31.1 97.9-31.1z" ], + "lastfm-square": [ 448, 512, [], "f203", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-92.2 312.9c-63.4 0-85.4-28.6-97.1-64.1-16.3-51-21.5-84.3-63-84.3-22.4 0-45.1 16.1-45.1 61.2 0 35.2 18 57.2 43.3 57.2 28.6 0 47.6-21.3 47.6-21.3l11.7 31.9s-19.8 19.4-61.2 19.4c-51.3 0-79.9-30.1-79.9-85.8 0-57.9 28.6-92 82.5-92 73.5 0 80.8 41.4 100.8 101.9 8.8 26.8 24.2 46.2 61.2 46.2 24.9 0 38.1-5.5 38.1-19.1 0-19.9-21.8-22-49.9-28.6-30.4-7.3-42.5-23.1-42.5-48 0-40 32.3-52.4 65.2-52.4 37.4 0 60.1 13.6 63 46.6l-36.7 4.4c-1.5-15.8-11-22.4-28.6-22.4-16.1 0-26 7.3-26 19.8 0 11 4.8 17.6 20.9 21.3 32.7 7.1 71.8 12 71.8 57.5.1 36.7-30.7 50.6-76.1 50.6z" ], + leanpub: [ 576, 512, [], "f212", "M386.539 111.485l15.096 248.955-10.979-.275c-36.232-.824-71.64 8.783-102.657 27.997-31.016-19.214-66.424-27.997-102.657-27.997-45.564 0-82.07 10.705-123.516 27.723L93.117 129.6c28.546-11.803 61.484-18.115 92.226-18.115 41.173 0 73.836 13.175 102.657 42.544 27.723-28.271 59.013-41.721 98.539-42.544zM569.07 448c-25.526 0-47.485-5.215-70.542-15.645-34.31-15.645-69.993-24.978-107.871-24.978-38.977 0-74.934 12.901-102.657 40.623-27.723-27.723-63.68-40.623-102.657-40.623-37.878 0-73.561 9.333-107.871 24.978C55.239 442.236 32.731 448 8.303 448H6.93L49.475 98.859C88.726 76.626 136.486 64 181.775 64 218.83 64 256.984 71.685 288 93.095 319.016 71.685 357.17 64 394.225 64c45.289 0 93.049 12.626 132.3 34.859L569.07 448zm-43.368-44.741l-34.036-280.246c-30.742-13.999-67.248-21.41-101.009-21.41-38.428 0-74.385 12.077-102.657 38.702-28.272-26.625-64.228-38.702-102.657-38.702-33.761 0-70.267 7.411-101.009 21.41L50.298 403.259c47.211-19.487 82.894-33.486 135.045-33.486 37.604 0 70.817 9.606 102.657 29.644 31.84-20.038 65.052-29.644 102.657-29.644 52.151 0 87.834 13.999 135.045 33.486z" ], + less: [ 640, 512, [], "f41d", "M612.7 219c0-20.5 3.2-32.6 3.2-54.6 0-34.2-12.6-45.2-40.5-45.2h-20.5v24.2h6.3c14.2 0 17.3 4.7 17.3 22.1 0 16.3-1.6 32.6-1.6 51.5 0 24.2 7.9 33.6 23.6 37.3v1.6c-15.8 3.7-23.6 13.1-23.6 37.3 0 18.9 1.6 34.2 1.6 51.5 0 17.9-3.7 22.6-17.3 22.6v.5h-6.3V393h20.5c27.8 0 40.5-11 40.5-45.2 0-22.6-3.2-34.2-3.2-54.6 0-11 6.8-22.6 27.3-23.6v-27.3c-20.5-.7-27.3-12.3-27.3-23.3zm-105.6 32c-15.8-6.3-30.5-10-30.5-20.5 0-7.9 6.3-12.6 17.9-12.6s22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-21 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51s-22.5-41-43-47.8zm-358.9 59.4c-3.7 0-8.4-3.2-8.4-13.1V119.1H65.2c-28.4 0-41 11-41 45.2 0 22.6 3.2 35.2 3.2 54.6 0 11-6.8 22.6-27.3 23.6v27.3c20.5.5 27.3 12.1 27.3 23.1 0 19.4-3.2 31-3.2 53.6 0 34.2 12.6 45.2 40.5 45.2h20.5v-24.2h-6.3c-13.1 0-17.3-5.3-17.3-22.6s1.6-32.1 1.6-51.5c0-24.2-7.9-33.6-23.6-37.3v-1.6c15.8-3.7 23.6-13.1 23.6-37.3 0-18.9-1.6-34.2-1.6-51.5s3.7-22.1 17.3-22.1H93v150.8c0 32.1 11 53.1 43.1 53.1 10 0 17.9-1.6 23.6-3.7l-5.3-34.2c-3.1.8-4.6.8-6.2.8zM379.9 251c-16.3-6.3-31-10-31-20.5 0-7.9 6.3-12.6 17.9-12.6 11.6 0 22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-20.5 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51 .1-28.9-22.5-41-43-47.8zm-155-68.8c-38.4 0-75.1 32.1-74.1 82.5 0 52 34.2 82.5 79.3 82.5 18.9 0 39.9-6.8 56.2-17.9l-15.8-27.8c-11.6 6.8-22.6 10-34.2 10-21 0-37.3-10-41.5-34.2H290c.5-3.7 1.6-11 1.6-19.4.6-42.6-22.6-75.7-66.7-75.7zm-30 66.2c3.2-21 15.8-31 30.5-31 18.9 0 26.3 13.1 26.3 31h-56.8z" ], + line: [ 448, 512, [], "f3c0", "M272.1 204.2v71.1c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.1 0-2.1-.6-2.6-1.3l-32.6-44v42.2c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.8 0-3.2-1.4-3.2-3.2v-71.1c0-1.8 1.4-3.2 3.2-3.2H219c1 0 2.1.5 2.6 1.4l32.6 44v-42.2c0-1.8 1.4-3.2 3.2-3.2h11.4c1.8-.1 3.3 1.4 3.3 3.1zm-82-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 1.8 1.4 3.2 3.2 3.2h11.4c1.8 0 3.2-1.4 3.2-3.2v-71.1c0-1.7-1.4-3.2-3.2-3.2zm-27.5 59.6h-31.1v-56.4c0-1.8-1.4-3.2-3.2-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 .9.3 1.6.9 2.2.6.5 1.3.9 2.2.9h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.7-1.4-3.2-3.1-3.2zM332.1 201h-45.7c-1.7 0-3.2 1.4-3.2 3.2v71.1c0 1.7 1.4 3.2 3.2 3.2h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2V234c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2v-11.4c-.1-1.7-1.5-3.2-3.2-3.2zM448 113.7V399c-.1 44.8-36.8 81.1-81.7 81H81c-44.8-.1-81.1-36.9-81-81.7V113c.1-44.8 36.9-81.1 81.7-81H367c44.8.1 81.1 36.8 81 81.7zm-61.6 122.6c0-73-73.2-132.4-163.1-132.4-89.9 0-163.1 59.4-163.1 132.4 0 65.4 58 120.2 136.4 130.6 19.1 4.1 16.9 11.1 12.6 36.8-.7 4.1-3.3 16.1 14.1 8.8 17.4-7.3 93.9-55.3 128.2-94.7 23.6-26 34.9-52.3 34.9-81.5z" ], + linkedin: [ 448, 512, [], "f08c", "M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z" ], + "linkedin-in": [ 448, 512, [], "f0e1", "M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z" ], + linode: [ 448, 512, [], "f2b8", "M437.4 226.3c-.3-.9-.9-1.4-1.4-2l-70-38.6c-.9-.6-2-.6-3.1 0l-58.9 36c-.9.6-1.4 1.7-1.4 2.6l-.9 31.4-24-16c-.9-.6-2.3-.6-3.1 0L240 260.9l-1.4-35.1c0-.9-.6-2-1.4-2.3l-36-24.3 33.7-17.4c1.1-.6 1.7-1.7 1.7-2.9l-5.7-132.3c0-.9-.9-2-1.7-2.6L138.6.3c-.9-.3-1.7-.3-2.3-.3L12.6 38.6c-1.4.6-2.3 2-2 3.7L38 175.4c.9 3.4 34 27.4 38.6 30.9l-26.9 12.9c-1.4.9-2 2.3-1.7 3.4l20.6 100.3c.6 2.9 23.7 23.1 27.1 26.3l-17.4 10.6c-.9.6-1.7 2-1.4 3.1 1.4 7.1 15.4 77.7 16.9 79.1l65.1 69.1c.6.6 1.4.6 2.3.9.6 0 1.1-.3 1.7-.6l83.7-66.9c.9-.6 1.1-1.4 1.1-2.3l-2-46 28 23.7c1.1.9 2.9.9 4 0l66.9-53.4c.9-.6 1.1-1.4 1.1-2.3l2.3-33.4 20.3 14c1.1.9 2.6.9 3.7 0l54.6-43.7c.6-.3 1.1-1.1 1.1-2 .9-6.5 10.3-70.8 9.7-72.8zm-204.8 4.8l4 92.6-90.6 61.2-14-96.6 100.6-57.2zm-7.7-180l5.4 126-106.6 55.4L104 97.7l120.9-46.6zM44 173.1L18 48l79.7 49.4 19.4 132.9L44 173.1zm30.6 147.8L55.7 230l70 58.3 13.7 93.4-64.8-60.8zm24.3 117.7l-13.7-67.1 61.7 60.9 9.7 67.4-57.7-61.2zm64.5 64.5l-10.6-70.9 85.7-61.4 3.1 70-78.2 62.3zm82-115.1c0-3.4.9-22.9-2-25.1l-24.3-20 22.3-14.9c2.3-1.7 1.1-5.7 1.1-8l29.4 22.6.6 68.3-27.1-22.9zm94.3-25.4l-60.9 48.6-.6-68.6 65.7-46.9-4.2 66.9zm27.7-25.7l-19.1-13.4 2-34c.3-.9-.3-2-1.1-2.6L308 259.7l.6-30 64.6 40.6-5.8 66.6zm54.6-39.8l-48.3 38.3 5.7-65.1 51.1-36.6-8.5 63.4z" ], + linux: [ 448, 512, [], "f17c", "M196.1 123.6c-.2-1.4 1.9-2.3 3.2-2.9 1.7-.7 3.9-1 5.5-.1.4.2.8.7.6 1.1-.4 1.2-2.4 1-3.5 1.6-1 .5-1.8 1.7-3 1.7-1 .1-2.7-.4-2.8-1.4zm24.7-.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm214.7 310.2c-.5 8.2-6.5 13.8-13.9 18.3-14.9 9-37.3 15.8-50.9 32.2l-2.6-2.2 2.6 2.2c-14.2 16.9-31.7 26.6-48.3 27.9-16.5 1.3-32-6.3-40.3-23v-.1c-1.1-2.1-1.9-4.4-2.5-6.7-21.5 1.2-40.2-5.3-55.1-4.1-22 1.2-35.8 6.5-48.3 6.6-4.8 10.6-14.3 17.6-25.9 20.2-16 3.7-36.1 0-55.9-10.4l1.6-3-1.6 3c-18.5-9.8-42-8.9-59.3-12.5-8.7-1.8-16.3-5-20.1-12.3-3.7-7.3-3-17.3 2.2-31.7 1.7-5.1.4-12.7-.8-20.8-.6-3.9-1.2-7.9-1.2-11.8 0-4.3.7-8.5 2.8-12.4 4.5-8.5 11.8-12.1 18.5-14.5 6.7-2.4 12.8-4 17-8.3 5.2-5.5 10.1-14.4 16.6-20.2-2.6-17.2.2-35.4 6.2-53.3 12.6-37.9 39.2-74.2 58.1-96.7 16.1-22.9 20.8-41.3 22.5-64.7C158 103.4 132.4-.2 234.8 0c80.9.1 76.3 85.4 75.8 131.3-.3 30.1 16.3 50.5 33.4 72 15.2 18 35.1 44.3 46.5 74.4 9.3 24.6 12.9 51.8 3.7 79.1 1.4.5 2.8 1.2 4.1 2 1.4.8 2.7 1.8 4 2.9 6.6 5.6 8.7 14.3 10.5 22.4 1.9 8.1 3.6 15.7 7.2 19.7 11.1 12.4 15.9 21.5 15.5 29.7zM220.8 109.1c3.6.9 8.9 2.4 13 4.4-2.1-12.2 4.5-23.5 11.8-23 8.9.3 13.9 15.5 9.1 27.3-.8 1.9-2.8 3.4-3.9 4.6 6.7 2.3 11 4.1 12.6 4.9 7.9-9.5 10.8-26.2 4.3-40.4-9.8-21.4-34.2-21.8-44 .4-3.2 7.2-3.9 14.9-2.9 21.8zm-46.2 18.8c7.8-5.7 6.9-4.7 5.9-5.5-8-6.9-6.6-27.4 1.8-28.1 6.3-.5 10.8 10.7 9.6 19.6 3.1-2.1 6.7-3.6 10.2-4.6 1.7-19.3-9-33.5-19.1-33.5-18.9 0-24 37.5-8.4 52.1zm-9.4 20.9c1.5 4.9 6.1 10.5 14.7 15.3 7.8 4.6 12 11.5 20 15 2.6 1.1 5.7 1.9 9.6 2.1 18.4 1.1 27.1-11.3 38.2-14.9 11.7-3.7 20.1-11 22.7-18.1 3.2-8.5-2.1-14.7-10.5-18.2-11.3-4.9-16.3-5.2-22.6-9.3-10.3-6.6-18.8-8.9-25.9-8.9-14.4 0-23.2 9.8-27.9 14.2-.5.5-7.9 5.9-14.1 10.5-4.2 3.3-5.6 7.4-4.2 12.3zm-33.5 252.8L112.1 366c-6.8-9.2-13.8-14.8-21.9-16-7.7-1.2-12.6 1.4-17.7 6.9-4.8 5.1-8.8 12.3-14.3 18-7.8 6.5-9.3 6.2-19.6 9.9-6.3 2.2-11.3 4.6-14.8 11.3-2.7 5-2.1 12.2-.9 20 1.2 7.9 3 16.3.6 23.9v.2c-5 13.7-5 21.7-2.6 26.4 7.9 15.4 46.6 6.1 76.5 21.9 31.4 16.4 72.6 17.1 75.3-18 2.1-20.5-31.5-49-41-68.9zm153.9 35.8c3.2-11 6.3-21.3 6.8-29 .8-15.2 1.6-28.7 4.4-39.9 3.1-12.6 9.3-23.1 21.4-27.3 2.3-21.1 18.7-21.1 38.3-12.5 18.9 8.5 26 16 22.8 26.1 1 0 2-.1 4.2 0 5.2-16.9-14.3-28-30.7-34.8 2.9-12 2.4-24.1-.4-35.7-6-25.3-22.6-47.8-35.2-59-2.3-.1-2.1 1.9 2.6 6.5 11.6 10.7 37.1 49.2 23.3 84.9-3.9-1-7.6-1.5-10.9-1.4-5.3-29.1-17.5-53.2-23.6-64.6-11.5-21.4-29.5-65.3-37.2-95.7-4.5 6.4-12.4 11.9-22.3 15-4.7 1.5-9.7 5.5-15.9 9-13.9 8-30 8.8-42.4-1.2-4.5-3.6-8-7.6-12.6-10.3-1.6-.9-5.1-3.3-6.2-4.1-2 37.8-27.3 85.3-39.3 112.7-8.3 19.7-13.2 40.8-13.8 61.5-21.8-29.1-5.9-66.3 2.6-82.4 9.5-17.6 11-22.5 8.7-20.8-8.6 14-22 36.3-27.2 59.2-2.7 11.9-3.2 24 .3 35.2 3.5 11.2 11.1 21.5 24.6 29.9 0 0 24.8 14.3 38.3 32.5 7.4 10 9.7 18.7 7.4 24.9-2.5 6.7-9.6 8.9-16.7 8.9 4.8 6 10.3 13 14.4 19.6 37.6 25.7 82.2 15.7 114.3-7.2zM415 408.5c-10-11.3-7.2-33.1-17.1-41.6-6.9-6-13.6-5.4-22.6-5.1-7.7 8.8-25.8 19.6-38.4 16.3-11.5-2.9-18-16.3-18.8-29.5-.3.2-.7.3-1 .5-7.1 3.9-11.1 10.8-13.7 21.1-2.5 10.2-3.4 23.5-4.2 38.7-.7 11.8-6.2 26.4-9.9 40.6-3.5 13.2-5.8 25.2-1.1 36.3 7.2 14.5 19.5 20.4 33.7 19.3 14.2-1.1 30.4-9.8 43.6-25.5 22-26.6 62.3-29.7 63.2-46.5.3-5.1-3.1-13-13.7-24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4 3.9-3.4 5.9-6.3 3.1-6.6-2.8-.3-2.6 2.6-6 5.1-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2-10.4 0-18.7-4.8-24.9-9.7-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z" ], + lyft: [ 512, 512, [], "f3c3", "M0 81.1h77.8v208.7c0 33.1 15 52.8 27.2 61-12.7 11.1-51.2 20.9-80.2-2.8C7.8 334 0 310.7 0 289V81.1zm485.9 173.5v-22h23.8v-76.8h-26.1c-10.1-46.3-51.2-80.7-100.3-80.7-56.6 0-102.7 46-102.7 102.7V357c16 2.3 35.4-.3 51.7-14 17.1-14 24.8-37.2 24.8-59v-6.7h38.8v-76.8h-38.8v-23.3c0-34.6 52.2-34.6 52.2 0v77.1c0 56.6 46 102.7 102.7 102.7v-76.5c-14.5 0-26.1-11.7-26.1-25.9zm-294.3-99v113c0 15.4-23.8 15.4-23.8 0v-113H91v132.7c0 23.8 8 54 45 63.9 37 9.8 58.2-10.6 58.2-10.6-2.1 13.4-14.5 23.3-34.9 25.3-15.5 1.6-35.2-3.6-45-7.8v70.3c25.1 7.5 51.5 9.8 77.6 4.7 47.1-9.1 76.8-48.4 76.8-100.8V155.1h-77.1v.5z" ], + magento: [ 448, 512, [], "f3c4", "M445.7 127.9V384l-63.4 36.5V164.7L223.8 73.1 65.2 164.7l.4 255.9L2.3 384V128.1L224.2 0l221.5 127.9zM255.6 420.5L224 438.9l-31.8-18.2v-256l-63.3 36.6.1 255.9 94.9 54.9 95.1-54.9v-256l-63.4-36.6v255.9z" ], + mailchimp: [ 428, 512, [], "f59e", "M426.56 323.72c-3.09-6.59-8.97-11.13-16.35-12.88-2.47-11.27-5.88-16.8-6.19-17.63 1.3-1.48 2.56-2.97 2.84-3.32 10.42-12.93 3.62-31.86-14.19-36.33-10.02-9.64-19.09-14.17-26.54-17.9-7.14-3.57-4.29-2.17-10.99-5.19-1.78-8.71-2.37-28.97-5.2-43.19-2.54-12.79-7.66-22.06-15.56-28.15-3.16-6.84-7.59-13.74-12.93-18.81 24.84-38.08 31.38-75.69 13.19-95.39-8.1-8.77-20.13-12.93-34.52-12.93-20.26 0-45.18 8.26-70.34 23.54 0 0-16.38-13.18-16.73-13.46-70.08-55.19-268.28 188.7-198.32 242l18.06 13.8c-11.34 31.54 4.43 69.14 37.29 81.21 7.26 2.67 15.14 3.97 23.31 3.51 0 0 53.09 97.36 165.1 97.39 129.58.04 162.55-126.72 162.9-127.86 0 .01 10.5-15.51 5.17-28.41zM20.12 267.95c-14.2-23.96 10.51-73.19 28.09-101.17C91.66 97.63 163.98 43.06 196.82 50.85l9.03-3.46c.03.03 24.67 20.85 24.7 20.87 16.97-10.19 38.58-20.57 58.8-22.64-12.3 2.77-27.29 9.15-45.05 20.01-.43.25-42.02 28.32-67.43 53.52-13.85 13.73-69.45 80.41-69.4 80.35 10.16-19.23 16.86-28.67 32.94-48.9 9.1-11.44 18.81-22.57 28.74-32.84 4.61-4.77 9.28-9.36 13.95-13.71 3.21-2.99 6.44-5.87 9.65-8.62 1.48-1.27 2.96-2.5 4.43-3.71l.01-.01L164.6 64.8l1.72 12.06 23.69 20.87s-20.96 14.11-31.39 23.01c-41.79 35.66-82.8 90.4-98.06 143.69l.73-.03c-7.6 4.19-15.14 10.91-21.73 20.05-.16-.04-17.04-12.43-19.44-16.5zm69.11 100.09c-25.03 0-45.33-21.37-45.33-47.72 0-26.36 20.29-47.72 45.33-47.72 6.49 0 12.66 1.44 18.24 4.02 0 0 9.63 4.86 12.34 27.81 2.82-7.17 4.24-13.06 4.24-13.06 3.23 9.88 4.88 20.26 4.23 30.76 2.68-3.56 5.55-10.27 5.55-10.27 5 29.33-16.4 56.18-44.6 56.18zm55.8-168.53s19.49-37.06 62.33-61.57c-3.19-.51-10.99.48-12.36.64 7.78-6.69 22.24-11.16 32.23-13.19-2.92-1.86-9.89-2.33-13.34-2.42-1.02-.03-1.01-.02-2.22.03 9.4-5.25 26.82-8.34 42.65-5.55-1.99-2.64-6.5-4.57-9.67-5.51-.28-.08-1.52-.39-1.52-.39l1.19-.28c9.54-1.84 20.69.15 29.5 3.69-1-2.32-3.45-5.03-5.29-6.74-.19-.18-1.29-.97-1.29-.97 9.22 1.91 18.06 5.94 24.71 10.5-.9-1.75-3.14-4.69-4.69-6.29 8.81 2.52 18.71 8.81 22.95 17.82.1.2.37.94.4 1.03-16.7-12.84-65.44-9.2-114.24 22.42-22.33 14.48-38.71 30.32-51.34 46.78zm263.32 146.34c-.59 1.15-6.73 34.4-41.86 62.01-44.37 34.86-102.66 31.33-124.67 11.8-11.76-11-16.85-26.73-16.85-26.73s-1.33 8.87-1.56 12.35c-8.87-15.09-8.12-33.52-8.12-33.52s-4.73 8.83-6.9 13.77c-6.53-16.62-3.16-33.78-3.16-33.78l-5.16 7.7s-2.42-18.81 3.52-34.47c6.36-16.74 18.68-28.9 21.11-30.42-9.35-2.97-20.12-11.49-20.14-11.51 0 0 4.28.28 7.26-.4 0 0-18.9-13.54-22.22-34.26 2.74 3.38 8.49 7.21 8.49 7.21-1.86-5.42-2.99-17.49-1.25-29.36l.01-.01c3.58-22.68 22.27-37.45 43.44-37.27 22.54.2 37.65 4.93 56.55-12.5 4-3.69 7.19-6.87 12.81-8.11.59-.13 2.06-.75 5.07-.75 3.05 0 5.98.69 8.67 2.29 10.25 6.1 12.46 22.01 13.56 33.68 4.07 43.28 2.43 35.57 19.94 44.49 8.36 4.25 17.74 8.29 28.43 19.72.03.03.08.09.08.09h.13c9.01.22 13.65 7.31 9.5 12.47-30.23 36.1-72.46 53.39-119.51 54.84-1.94.05-6.32.15-6.34.15-19.01.58-25.19 25.16-13.27 39.95 7.54 9.35 22.03 12.42 33.97 12.46l.17-.06c51.45 1.04 103.14-35.37 112.07-55.44.06-.15.61-1.42.61-1.42-2.07 2.43-52.18 49.61-113.08 47.9 0 0-6.66-.14-12.93-1.6-8.27-1.92-14.55-5.56-16.95-13.8 5.05 1.01 11.45 1.66 18.87 1.66 43.96 0 75.63-19.98 72.33-20.25-.13 0-.26.03-.48.08-5.13 1.19-57.97 21.66-91.37 11.16.08-1.02.24-2.01.48-2.9 2.97-9.95 8.25-8.56 16.79-8.93 30.48-1.01 55.07-8.68 73.5-17.43 19.65-9.33 34.63-21.35 40.03-27.42 7 11.79 6.96 26.92 6.96 26.92s2.74-.96 6.38-.96c11.38.01 13.73 10.23 5.09 20.6zm-149.29 13.7c0-.05-.01-.1-.01-.15.01.05.01.1.01.15zm-.01-.21c-.01-.13-.01-.26-.02-.39-.02-.65-.03-1.33 0-2.02-.02.74-.02 1.42 0 2.02.01.13.01.27.02.39zm.12 1.46c0 .02 0 .04.01.06 0-.02 0-.04-.01-.06zm.02.12c.2 1.58.51 2.31.55 2.4-.23-.49-.42-1.34-.55-2.4zM193.96 59.68l2.87-8.83 4.88 17.72-6.03-1.95-1.72-6.94zm22.38 17.72l-3.62-12.59 9.97 8.36c-2.24 1.44-4.36 2.86-6.35 4.23zm42.71 281.94c-.01-.13-.01-.26-.02-.39.01.13.01.27.02.39zm-.01-.39c-.02-.65-.03-1.33 0-2.02-.03.75-.03 1.42 0 2.02zm.02.6c0-.05-.01-.1-.01-.15m.13 1.46c0-.02 0-.04-.01-.06m.02.12c.2 1.58.51 2.31.55 2.4-.23-.49-.42-1.34-.55-2.4zm52.1-138.61c-.07-3.36.47-8.92 3.63-9.95h.01c5.41-1.88 12.58 11.98 12.91 24.28-4.28-2.14-9.3-3.05-14.47-2.6-1.3-3.97-1.92-7.7-2.08-11.73zM205.38 85.27l-13.59-11.38 20.57 6.28c-2.65 1.88-5 3.6-6.98 5.1zm27.7 166.94c-3.41 1.3-5.83 2.31-7 2.14-1.89-.28-.06-3.75 4.08-7.11 8.33-6.64 19.76-8.7 29.53-5.07 4.28 1.57 9.08 4.72 11.6 8.39.95 1.39 1.21 2.44.82 2.88-.77.9-3.51-.31-7.55-1.89-10.35-3.86-17.98-4.45-31.48.66zm14.55 14.53c-2.31.94-3.81 1.66-4.42 1.17-.62-.48-.01-2.42 2.15-4.51 1.88-1.81 3.83-2.83 6.07-3.77.35-.15.72-.28 1.1-.38 1.04-.28 2.09-.63 3.23-.8 9.12-1.55 15.8 3.51 14.93 4.98-.39.69-2.08.53-4.6.36-5.23-.36-10.71-.27-18.46 2.95zM60.86 323.12zm24.3-25.78c-1.85.39-.81.17-2.64.68a7 7 0 0 0-.77.25c-.58.27-1.11.45-1.62.73-.43.24-4.07 1.86-7.03 5.48-3.99 4.95-5.44 11.43-5.19 17.67.24 6.06 2.02 9.41 2.35 10.23 1.38 2.96-1.85 3.57-4.79.39l-.01-.01c-2.35-2.49-3.86-6.29-4.6-9.66-2.98-13.95 3.24-27.97 17.61-33.57.8-.32 1.74-.51 2.5-.73h-.01c1.47-.44 6.72-1.5 12.07-.67 5.87.91 11.04 3.85 14.33 7.67l.01.01c2.53 2.87 4.43 6.92 4.09 10.53v.01c-.13 1.5-.79 3.65-2.14 4.21-.5.21-1.01.1-1.36-.25-.98-.96-.22-2.93-2.6-6.3-3.17-4.47-10.31-8.76-20.2-6.67zm30.28 31.17c1.88 10.82-6 20.5-15.52 20.7-6.67.15-10.31-4.02-9.66-4.93.3-.43 1.32-.24 2.88-.01 8.5 1.32 13.66-3.86 14.9-9.29.02-.09.35-1.54.34-2.54.07-.88-.03-1.76-.16-2.56-1-5.62-7.45-6.68-11.6-11.15-3.72-4.04-2.99-9.22-.65-11.71 2.81-2.77 6.83-1.76 6.78-.78 0 .52-.97.91-2.17 1.74-1.56 1.1-1.77 2.16-1.37 3.98.26 1 .71 1.65 1.68 2.42 3.48 2.76 12.85 4.7 14.55 14.13zm212.87-81.47c2.58.4 4.22 3.59 3.67 7.13-.55 3.54-3.09 6.08-5.67 5.67-2.58-.4-4.22-3.59-3.67-7.13.56-3.53 3.09-6.07 5.67-5.67zm-28.33 10.31c1.42-2.59 5.44-3.11 8.99-1.16 3.55 1.94 5.27 5.62 3.86 8.2-1.42 2.59-5.44 3.11-8.99 1.16-3.55-1.94-5.28-5.61-3.86-8.2z" ], + mandalorian: [ 390, 512, [], "f50f", "M203.28 511.89c-.98-3.26-1.69-15.83-1.39-24.58.55-15.89.98-24.72 1.4-28.76.64-6.2 2.87-20.72 3.28-21.38.6-.96.4-27.87-.24-33.13-.31-2.58-.63-11.9-.69-20.73-.13-16.47-.53-20.12-2.73-24.76-1.1-2.32-1.23-3.84-.99-11.43.16-4.81 0-10.53-.34-12.71-2.05-12.97-3.46-27.7-3.25-33.9.21-6.12.43-7.15 2.06-9.67 3.05-4.71 6.51-14.04 8.62-23.27 2.26-9.86 3.88-17.18 4.59-20.74.89-4.42 2.43-9.72 4.36-15.05 2.27-6.25 2.49-15.39.37-15.39-.3 0-1.38 1.22-2.41 2.71-1.03 1.49-4.76 4.8-8.29 7.36-8.37 6.08-11.7 9.39-12.66 12.58-.93 3.11-1.02 7.23-.16 7.76.34.21 1.29 2.4 2.11 4.88 1.62 4.88 1.87 10.12.72 15.36-.39 1.77-1.05 5.47-1.46 8.23-.41 2.76-.98 6.46-1.25 8.22-.28 1.76-.97 3.68-1.55 4.26-.96.96-1.14.91-2.05-.53-.55-.87-1.2-3.01-1.44-4.75-.25-1.74-1.63-7.11-3.08-11.93-3.28-10.9-3.52-16.15-.96-20.96.92-1.73 1.67-3.81 1.67-4.61 0-2.39-2.2-5.32-7.41-9.89-7.05-6.18-8.63-7.92-10.23-11.3-1.71-3.6-3.06-4.06-4.54-1.54-1.78 3.01-2.6 9.11-2.97 22.02l-.35 12.13 1.95 2.25c3.21 3.7 12.07 16.45 13.78 19.83 3.41 6.74 4.34 11.69 4.41 23.56.07 11.84.95 22.75 2 24.71.36.66.51 1.35.34 1.52-.17.17.41 2.09 1.29 4.27.88 2.18 1.81 6.22 2.06 8.98.25 2.76 1.02 7.43 1.71 10.37 2.23 9.56 2.77 14.08 2.39 20.14-.2 3.27-.53 11.07-.73 17.32-1.31 41.76-1.85 57.98-2.04 61.21-.12 2.02-.39 11.51-.6 21.07-.36 16.3-1.3 27.37-2.42 28.65-.64.73-8.07-4.91-12.52-9.49-3.75-3.87-4.02-4.79-2.83-9.95.7-3.01 2.26-18.29 3.33-32.62.36-4.78.81-10.5 1.01-12.71.83-9.37 1.66-20.35 2.61-34.78.56-8.46 1.33-16.44 1.72-17.73.38-1.29.89-9.89 1.13-19.11l.43-16.77-2.26-4.3c-1.72-3.28-4.87-6.94-13.22-15.34-6.03-6.07-11.84-12.3-12.91-13.85l-1.95-2.81.75-10.9c1.09-15.71 1.1-48.57.02-59.06l-.89-8.7-3.28-4.52c-5.86-8.08-5.8-7.75-6.22-33.27-.1-6.07-.38-11.5-.63-12.06-.83-1.87-3.05-2.66-8.54-3.05-8.86-.62-10.96-1.9-23.85-14.55-6.15-6.04-12.34-11.97-13.75-13.19-2.81-2.42-2.79-1.99-.56-9.63l1.35-4.65-1.69-3.04c-.93-1.67-2.09-3.51-2.59-4.07-1.33-1.51-5.5-10.89-5.99-13.49-.31-1.66-.09-2.67.87-3.9 2.23-2.86 3.4-5.68 4.45-10.73 2.33-11.19 7.74-26.09 10.6-29.22 3.18-3.47 7.7-1.05 9.41 5.03 1.34 4.79 1.37 9.79.1 18.55-.53 3.68-.98 8.68-.99 11.11-.02 4.01.19 4.69 2.25 7.39 3.33 4.37 7.73 7.41 15.2 10.52 1.7.71 3.82 1.99 4.72 2.85 11.17 10.72 18.62 16.18 22.95 16.85 5.18.8 7.98 4.54 10.04 13.39 1.31 5.65 4 11.14 5.46 11.14.59 0 2.09-.63 3.33-1.39 1.98-1.22 2.25-1.73 2.25-4.18-.01-3.71-1.17-14.08-2-17.84-.37-1.66-.78-4.06-.93-5.35-.14-1.29-.61-3.85-1.03-5.69-2.55-11.16-3.65-15.46-4.1-16.05-1.55-2.02-4.08-10.2-4.93-15.92-1.64-11.11-3.96-14.23-12.91-17.39-4.64-1.64-8.89-4.12-13.32-7.78-1.15-.95-4.01-3.22-6.35-5.06-2.35-1.83-4.41-3.53-4.6-3.76-.18-.23-1.39-1.14-2.69-2.02-6.24-4.22-8.84-6.98-11.26-11.96l-2.44-5.02-.22-12.98-.22-12.98 6.91-6.55c3.95-3.75 8.48-7.35 10.59-8.43 3.31-1.69 4.45-1.89 11.37-2.05 8.53-.19 10.12.02 11.66 1.56 1.53 1.53 1.36 6.4-.29 8.5-.74.94-1.34 1.98-1.34 2.32 0 .58-2.61 4.91-5.42 8.99-.68.99-2.13 5.35-2.37 6.82 20.44 13.39 21.55 3.77 14.07 28.98l11.4 2.54c3.11-8.66 6.47-17.26 8.61-26.22.29-7.63-11.98-4.19-15.4-8.68-2.33-5.93 3.13-14.18 6.06-19.2 1.6-2.34 6.62-4.7 8.82-4.15.88.22 4.16-.35 7.37-1.28 3.18-.92 6.58-1.68 7.55-1.68.97 0 3.66-.58 5.98-1.29 3.65-1.11 4.5-1.17 6.35-.4 1.17.48 3.79 1.09 5.82 1.36 2.02.26 4.72 1.12 6 1.91 1.28.79 3.53 1.77 5.02 2.17 2.51.68 3 .57 7.05-1.67l4.35-2.4 10.7-.41c10.44-.4 10.81-.47 15.26-2.68l4.58-2.3 2.46 1.43c1.76 1.02 3.14 2.73 4.85 5.98 2.36 4.51 2.38 4.58 1.37 7.37-.88 2.44-.89 3.3-.1 6.39.5 1.96 1.45 4.62 2.1 5.91.65 1.29 1.24 3.09 1.31 4.01.31 4.33-.03 5.3-2.41 6.92-2.17 1.47-6.98 7.91-6.98 9.34 0 .32-.48 1.69-1.07 3.03-5.04 11.51-6.76 13.56-14.26 16.98-9.2 4.2-12.3 5.19-16.21 5.19-3.1 0-4 .25-4.54 1.26-.37.69-2.21 2.37-4.09 3.71-2.04 1.47-3.8 3.38-4.38 4.78-.54 1.28-1.66 2.59-2.49 2.91-.83.32-1.94 1.08-2.45 1.71-.52.62-3.66 3.04-7 5.38-3.33 2.34-6.87 5.02-7.87 5.96-1 .94-2.07 1.71-2.39 1.71s-1.28.74-2.13 1.65c-1.31 1.39-1.49 2.11-1.14 4.6.22 1.63.86 4.27 1.42 5.88 1.32 3.8 1.31 7.86-.05 10.57-1.43 2.86-.89 6.65 1.35 9.59 2.01 2.63 2.16 4.56.71 8.84-.61 1.8-1.05 5.45-1.06 8.91-.02 4.88.22 6.28 1.46 8.38 1.2 2.04 1.82 2.48 3.24 2.32 1.98-.23 2.3-1.05 4.71-12.12 2.18-10.03 3.71-11.92 13.76-17.08 2.94-1.51 7.46-3.96 10.03-5.44 2.58-1.48 6.79-3.69 9.37-4.91 6.67-3.16 11.05-6.52 15.22-11.67 7.11-8.79 9.98-16.22 12.85-33.3.55-3.28 1.43-5.65 2.86-7.73 1.29-1.87 2.37-4.62 2.89-7.31 1.02-5.3 2.85-9.08 5.58-11.51 4.7-4.18 6-1.09 4.59 10.87-.46 3.86-1.1 10.33-1.44 14.38l-.61 7.36 4.45 4.09 4.45 4.09.11 8.42c.06 4.63.47 9.53.92 10.89l.82 2.47-6.43 6.28c-8.54 8.33-12.88 13.93-16.76 21.61-1.77 3.49-3.74 7.11-4.38 8.03-2.18 3.11-6.46 13.01-8.76 20.26l-2.29 7.22-6.97 6.49c-3.83 3.57-7.96 7.25-9.17 8.17-3.05 2.32-4.26 5.15-4.26 9.99 0 2.98.43 4.96 1.59 7.26.87 1.74 1.81 3.91 2.09 4.83.28.92.98 2.22 1.57 2.89 1.4 1.59 1.92 16.12.83 23.22-.68 4.48-3.63 12.02-4.7 12.02-1.79 0-4.06 9.27-5.07 20.74-.18 2.02-.62 5.94-.98 8.7-.36 2.76-.96 9.98-1.35 16.05-.77 12.22-.19 18.77 2.05 23.15 3.41 6.69.52 12.69-11.03 22.84l-3.97 3.49.07 5.19c.04 2.86.55 6.85 1.14 8.87 4.61 15.98 4.73 16.92 4.38 37.13-.46 26.4-.26 40.27.63 44.15.42 1.84.91 5 1.08 7.02.17 2.02.66 5.33 1.08 7.36.47 2.26.78 11.02.79 22.74l.02 19.06-1.81 2.63c-2.71 3.91-15.11 13.54-15.49 12.29zm29.53-45.11c-.18-.3-.33-6.87-.33-14.59 0-14.06-.89-27.54-2.26-34.45-.4-2.02-.81-9.7-.9-17.06-.15-11.93-1.4-24.37-2.64-26.38-.66-1.07-3.02-17.66-3.03-21.3-.01-4.23 1.02-6 5.28-9.13 4.14-3.04 4.86-3.14 5.48-.72.28 1.1 1.45 5.62 2.6 10.03 3.93 15.12 4.14 16.27 4.05 21.74-.1 5.78-.13 6.13-1.74 17.73-.98 7.07-1.17 12.39-1.04 28.43.17 19.4-.64 35.73-2.04 41.27-.71 2.78-2.8 5.48-3.43 4.43zm-70.99-37.58c-.24-.38-1.01-5.24-1.73-10.79-.72-5.56-1.49-10.41-1.73-10.79-.23-.38-.68-3.3-.99-6.49-.31-3.19-.91-7.46-1.33-9.48-.99-4.79-3.35-19.35-3.42-21.07-.03-.74-.34-4.05-.7-7.36-.67-6.21-.84-27.67-.22-28.29.96-.96 6.63 2.76 11.33 7.43l5.28 5.25-.45 6.47c-.25 3.56-.6 10.23-.78 14.83-.18 4.6-.49 9.87-.67 11.71-.18 1.84-.61 9.36-.94 16.72-.79 17.41-1.94 31.29-2.65 32-.32.3-.76.24-1-.14zM74.63 162.61c21.07 12.79 17.84 14.15 28.49 17.66 13.01 4.29 18.87 7.13 23.15 16.87-43.66 36.14-69.01 57.9-76.71 70.82-31.02 52.01-5.99 101.59 62.75 87.21-14.18 29.23-77.97 28.63-98.68-4.9-24.68-39.95-22.09-118.3 61-187.66zm210.79 179.02c56.66 6.88 82.32-37.74 46.54-89.23 0 0-26.87-29.34-64.28-67.96 2.98-15.45 9.49-32.12 30.57-53.82 89.2 63.51 92 141.61 92.46 149.36 4.27 70.58-78.66 91.12-105.29 61.65z" ], + mastodon: [ 417, 512, [], "f4f6", "M417.8 179.1c0-97.2-63.7-125.7-63.7-125.7-62.5-28.7-228.5-28.4-290.4 0 0 0-63.7 28.5-63.7 125.7 0 115.7-6.6 259.4 105.6 289.1 40.5 10.7 75.3 13 103.3 11.4 50.8-2.8 79.3-18.1 79.3-18.1l-1.7-36.9s-36.3 11.4-77.1 10.1c-40.4-1.4-83-4.4-89.6-54-.6-4.4-.9-9-.9-13.9 85.6 20.9 158.6 9.1 178.7 6.7 56.1-6.7 105-41.3 111.2-72.9 9.8-49.8 9-121.5 9-121.5zm-75.1 125.2h-46.6V190.1c0-49.7-64-51.6-64 6.9v62.5h-46.3V197c0-58.5-64-56.6-64-6.9v114.2H75.1c0-122.1-5.2-147.9 18.4-175 25.9-28.9 79.8-30.8 103.8 6.1l11.6 19.5 11.6-19.5c24.1-37.1 78.1-34.8 103.8-6.1 23.7 27.3 18.4 53 18.4 175z" ], + maxcdn: [ 512, 512, [], "f136", "M461.1 442.7h-97.4L415.6 200c2.3-10.2.9-19.5-4.4-25.7-5-6.1-13.7-9.6-24.2-9.6h-49.3l-59.5 278h-97.4l59.5-278h-83.4l-59.5 278H0l59.5-278-44.6-95.4H387c39.4 0 75.3 16.3 98.3 44.9 23.3 28.6 31.8 67.4 23.6 105.9l-47.8 222.6z" ], + medapps: [ 320, 512, [], "f3c6", "M118.3 238.4c3.5-12.5 6.9-33.6 13.2-33.6 8.3 1.8 9.6 23.4 18.6 36.6 4.6-23.5 5.3-85.1 14.1-86.7 9-.7 19.7 66.5 22 77.5 9.9 4.1 48.9 6.6 48.9 6.6 1.9 7.3-24 7.6-40 7.8-4.6 14.8-5.4 27.7-11.4 28-4.7.2-8.2-28.8-17.5-49.6l-9.4 65.5c-4.4 13-15.5-22.5-21.9-39.3-3.3-.1-62.4-1.6-47.6-7.8l31-5zM228 448c21.2 0 21.2-32 0-32H92c-21.2 0-21.2 32 0 32h136zm-24 64c21.2 0 21.2-32 0-32h-88c-21.2 0-21.2 32 0 32h88zm34.2-141.5c3.2-18.9 5.2-36.4 11.9-48.8 7.9-14.7 16.1-28.1 24-41 24.6-40.4 45.9-75.2 45.9-125.5C320 69.6 248.2 0 160 0S0 69.6 0 155.2c0 50.2 21.3 85.1 45.9 125.5 7.9 12.9 16 26.3 24 41 6.7 12.5 8.7 29.8 11.9 48.9 3.5 21 36.1 15.7 32.6-5.1-3.6-21.7-5.6-40.7-15.3-58.6C66.5 246.5 33 211.3 33 155.2 33 87.3 90 32 160 32s127 55.3 127 123.2c0 56.1-33.5 91.3-66.1 151.6-9.7 18-11.7 37.4-15.3 58.6-3.4 20.6 29 26.4 32.6 5.1z" ], + medium: [ 448, 512, [], "f23a", "M0 32v448h448V32H0zm372.2 106.1l-24 23c-2.1 1.6-3.1 4.2-2.7 6.7v169.3c-.4 2.6.6 5.2 2.7 6.7l23.5 23v5.1h-118V367l24.3-23.6c2.4-2.4 2.4-3.1 2.4-6.7V199.8l-67.6 171.6h-9.1L125 199.8v115c-.7 4.8 1 9.7 4.4 13.2l31.6 38.3v5.1H71.2v-5.1l31.6-38.3c3.4-3.5 4.9-8.4 4.1-13.2v-133c.4-3.7-1-7.3-3.8-9.8L75 138.1V133h87.3l67.4 148L289 133.1h83.2v5z" ], + "medium-m": [ 512, 512, [], "f3c7", "M71.5 142.3c.6-5.9-1.7-11.8-6.1-15.8L20.3 72.1V64h140.2l108.4 237.7L364.2 64h133.7v8.1l-38.6 37c-3.3 2.5-5 6.7-4.3 10.8v272c-.7 4.1 1 8.3 4.3 10.8l37.7 37v8.1H307.3v-8.1l39.1-37.9c3.8-3.8 3.8-5 3.8-10.8V171.2L241.5 447.1h-14.7L100.4 171.2v184.9c-1.1 7.8 1.5 15.6 7 21.2l50.8 61.6v8.1h-144v-8L65 377.3c5.4-5.6 7.9-13.5 6.5-21.2V142.3z" ], + medrt: [ 544, 512, [], "f3c8", "M113.7 256c0 121.8 83.9 222.8 193.5 241.1-18.7 4.5-38.2 6.9-58.2 6.9C111.4 504 0 393 0 256S111.4 8 248.9 8c20.1 0 39.6 2.4 58.2 6.9C197.5 33.2 113.7 134.2 113.7 256m297.4 100.3c-77.7 55.4-179.6 47.5-240.4-14.6 5.5 14.1 12.7 27.7 21.7 40.5 61.6 88.2 182.4 109.3 269.7 47 87.3-62.3 108.1-184.3 46.5-272.6-9-12.9-19.3-24.3-30.5-34.2 37.4 78.8 10.7 178.5-67 233.9m-218.8-244c-1.4 1-2.7 2.1-4 3.1 64.3-17.8 135.9 4 178.9 60.5 35.7 47 42.9 106.6 24.4 158 56.7-56.2 67.6-142.1 22.3-201.8-50-65.5-149.1-74.4-221.6-19.8M296 224c-4.4 0-8-3.6-8-8v-40c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v40c0 4.4-3.6 8-8 8h-40c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h40c4.4 0 8 3.6 8 8v40c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-40c0-4.4 3.6-8 8-8h40c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-40z" ], + meetup: [ 512, 512, [], "f2e0", "M99 414.3c1.1 5.7-2.3 11.1-8 12.3-5.4 1.1-10.9-2.3-12-8-1.1-5.4 2.3-11.1 7.7-12.3 5.4-1.2 11.1 2.3 12.3 8zm143.1 71.4c-6.3 4.6-8 13.4-3.7 20 4.6 6.6 13.4 8.3 20 3.7 6.3-4.6 8-13.4 3.4-20-4.2-6.5-13.1-8.3-19.7-3.7zm-86-462.3c6.3-1.4 10.3-7.7 8.9-14-1.1-6.6-7.4-10.6-13.7-9.1-6.3 1.4-10.3 7.7-9.1 14 1.4 6.6 7.6 10.6 13.9 9.1zM34.4 226.3c-10-6.9-23.7-4.3-30.6 6-6.9 10-4.3 24 5.7 30.9 10 7.1 23.7 4.6 30.6-5.7 6.9-10.4 4.3-24.1-5.7-31.2zm272-170.9c10.6-6.3 13.7-20 7.7-30.3-6.3-10.6-19.7-14-30-7.7s-13.7 20-7.4 30.6c6 10.3 19.4 13.7 29.7 7.4zm-191.1 58c7.7-5.4 9.4-16 4.3-23.7s-15.7-9.4-23.1-4.3c-7.7 5.4-9.4 16-4.3 23.7 5.1 7.8 15.6 9.5 23.1 4.3zm372.3 156c-7.4 1.7-12.3 9.1-10.6 16.9 1.4 7.4 8.9 12.3 16.3 10.6 7.4-1.4 12.3-8.9 10.6-16.6-1.5-7.4-8.9-12.3-16.3-10.9zm39.7-56.8c-1.1-5.7-6.6-9.1-12-8-5.7 1.1-9.1 6.9-8 12.6 1.1 5.4 6.6 9.1 12.3 8 5.4-1.5 9.1-6.9 7.7-12.6zM447 138.9c-8.6 6-10.6 17.7-4.9 26.3 5.7 8.6 17.4 10.6 26 4.9 8.3-6 10.3-17.7 4.6-26.3-5.7-8.7-17.4-10.9-25.7-4.9zm-6.3 139.4c26.3 43.1 15.1 100-26.3 129.1-17.4 12.3-37.1 17.7-56.9 17.1-12 47.1-69.4 64.6-105.1 32.6-1.1.9-2.6 1.7-3.7 2.9-39.1 27.1-92.3 17.4-119.4-22.3-9.7-14.3-14.6-30.6-15.1-46.9-65.4-10.9-90-94-41.1-139.7-28.3-46.9.6-107.4 53.4-114.9C151.6 70 234.1 38.6 290.1 82c67.4-22.3 136.3 29.4 130.9 101.1 41.1 12.6 52.8 66.9 19.7 95.2zm-70 74.3c-3.1-20.6-40.9-4.6-43.1-27.1-3.1-32 43.7-101.1 40-128-3.4-24-19.4-29.1-33.4-29.4-13.4-.3-16.9 2-21.4 4.6-2.9 1.7-6.6 4.9-11.7-.3-6.3-6-11.1-11.7-19.4-12.9-12.3-2-17.7 2-26.6 9.7-3.4 2.9-12 12.9-20 9.1-3.4-1.7-15.4-7.7-24-11.4-16.3-7.1-40 4.6-48.6 20-12.9 22.9-38 113.1-41.7 125.1-8.6 26.6 10.9 48.6 36.9 47.1 11.1-.6 18.3-4.6 25.4-17.4 4-7.4 41.7-107.7 44.6-112.6 2-3.4 8.9-8 14.6-5.1 5.7 3.1 6.9 9.4 6 15.1-1.1 9.7-28 70.9-28.9 77.7-3.4 22.9 26.9 26.6 38.6 4 3.7-7.1 45.7-92.6 49.4-98.3 4.3-6.3 7.4-8.3 11.7-8 3.1 0 8.3.9 7.1 10.9-1.4 9.4-35.1 72.3-38.9 87.7-4.6 20.6 6.6 41.4 24.9 50.6 11.4 5.7 62.5 15.7 58.5-11.1zm5.7 92.3c-10.3 7.4-12.9 22-5.7 32.6 7.1 10.6 21.4 13.1 32 6 10.6-7.4 13.1-22 6-32.6-7.4-10.6-21.7-13.5-32.3-6z" ], + megaport: [ 496, 512, [], "f5a3", "M248 8C111.04 8 0 119.04 0 256c0 136.97 111.04 248 248 248 136.96 0 248-111.03 248-248C496 119.04 384.96 8 248 8zm85.46 267.67l59.66 59.67v87.05l-26.07 19.23L341 422.39v-65.46l-33.44-33.44-33.44 33.44v65.46L248 441.62l-26.12-19.23v-65.46l-33.44-33.44L155 356.92v65.46l-26.07 19.23-26.06-19.23v-87.05l59.47-59.47V188l59.5-59.5V52.88l26.06-19.23 26.06 19.23v75.64l59.5 59.5m-85.56-11.86l33.44 33.44V276L248 309.33l-33.54-33.54v-66.2l33.44-33.43z" ], + microsoft: [ 448, 512, [], "f3ca", "M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z" ], + mix: [ 448, 512, [], "f3cb", "M0 64v348.9c0 56.2 88 58.1 88 0V174.3c7.9-52.9 88-50.4 88 6.5v175.3c0 57.9 96 58 96 0V240c5.3-54.7 88-52.5 88 4.3v23.8c0 59.9 88 56.6 88 0V64H0z" ], + mixcloud: [ 640, 512, [], "f289", "M424.43 219.729C416.124 134.727 344.135 68 256.919 68c-72.266 0-136.224 46.516-159.205 114.074-54.545 8.029-96.63 54.822-96.63 111.582 0 62.298 50.668 112.966 113.243 112.966h289.614c52.329 0 94.969-42.362 94.969-94.693 0-45.131-32.118-83.063-74.48-92.2zm-20.489 144.53H114.327c-39.04 0-70.881-31.564-70.881-70.604s31.841-70.604 70.881-70.604c18.827 0 36.548 7.475 49.838 20.766 19.963 19.963 50.133-10.227 30.18-30.18-14.675-14.398-32.672-24.365-52.053-29.349 19.935-44.3 64.79-73.926 114.628-73.926 69.496 0 125.979 56.483 125.979 125.702 0 13.568-2.215 26.857-6.369 39.594-8.943 27.517 32.133 38.939 40.147 13.29 2.769-8.306 4.984-16.889 6.369-25.472 19.381 7.476 33.502 26.303 33.502 48.453 0 28.795-23.535 52.33-52.607 52.33zm235.069-52.33c0 44.024-12.737 86.386-37.102 122.657-4.153 6.092-10.798 9.414-17.72 9.414-16.317 0-27.127-18.826-17.443-32.949 19.381-29.349 29.903-63.682 29.903-99.122s-10.521-69.773-29.903-98.845c-15.655-22.831 19.361-47.24 35.163-23.534 24.366 35.993 37.102 78.356 37.102 122.379zm-70.88 0c0 31.565-9.137 62.021-26.857 88.325-4.153 6.091-10.798 9.136-17.72 9.136-17.201 0-27.022-18.979-17.443-32.948 13.013-19.104 19.658-41.255 19.658-64.513 0-22.981-6.645-45.408-19.658-64.512-15.761-22.986 19.008-47.095 35.163-23.535 17.719 26.026 26.857 56.483 26.857 88.047z" ], + mizuni: [ 496, 512, [], "f3cc", "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm-80 351.9c-31.4 10.6-58.8 27.3-80 48.2V136c0-22.1 17.9-40 40-40s40 17.9 40 40v223.9zm120-9.9c-12.9-2-26.2-3.1-39.8-3.1-13.8 0-27.2 1.1-40.2 3.1V136c0-22.1 17.9-40 40-40s40 17.9 40 40v214zm120 57.7c-21.2-20.8-48.6-37.4-80-48V136c0-22.1 17.9-40 40-40s40 17.9 40 40v271.7z" ], + modx: [ 448, 512, [], "f285", "M356 241.8l36.7 23.7V480l-133-83.8L356 241.8zM440 75H226.3l-23 37.8 153.5 96.5L440 75zm-89 142.8L55.2 32v214.5l46 29L351 217.8zM97 294.2L8 437h213.7l125-200.5L97 294.2z" ], + monero: [ 496, 512, [], "f3d0", "M352 384h108.4C417 455.9 338.1 504 248 504S79 455.9 35.6 384H144V256.2L248 361l104-105v128zM88 336V128l159.4 159.4L408 128v208h74.8c8.5-25.1 13.2-52 13.2-80C496 119 385 8 248 8S0 119 0 256c0 28 4.6 54.9 13.2 80H88z" ], + napster: [ 496, 512, [], "f3d2", "M298.3 373.6c-14.2 13.6-31.3 24.1-50.4 30.5-19-6.4-36.2-16.9-50.3-30.5h100.7zm44-199.6c20-16.9 43.6-29.2 69.6-36.2V299c0 219.4-328 217.6-328 .3V137.7c25.9 6.9 49.6 19.6 69.5 36.4 56.8-40 132.5-39.9 188.9-.1zm-208.8-58.5c64.4-60 164.3-60.1 228.9-.2-7.1 3.5-13.9 7.3-20.6 11.5-58.7-30.5-129.2-30.4-187.9.1-6.3-4-13.9-8.2-20.4-11.4zM43.8 93.2v69.3c-58.4 36.5-58.4 121.1.1 158.3 26.4 245.1 381.7 240.3 407.6 1.5l.3-1.7c58.7-36.3 58.9-121.7.2-158.2V93.2c-17.3.5-34 3-50.1 7.4-82-91.5-225.5-91.5-307.5.1-16.3-4.4-33.1-7-50.6-7.5zM259.2 352s36-.3 61.3-1.5c10.2-.5 21.1-4 25.5-6.5 26.3-15.1 25.4-39.2 26.2-47.4-79.5-.6-99.9-3.9-113 55.4zm-135.5-55.3c.8 8.2-.1 32.3 26.2 47.4 4.4 2.5 15.2 6 25.5 6.5 25.3 1.1 61.3 1.5 61.3 1.5-13.2-59.4-33.7-56.1-113-55.4zm169.1 123.4c-3.2-5.3-6.9-7.3-6.9-7.3-24.8 7.3-52.2 6.9-75.9 0 0 0-2.9 1.5-6.4 6.6-2.8 4.1-3.7 9.6-3.7 9.6 29.1 17.6 67.1 17.6 96.2 0-.1-.1-.3-4-3.3-8.9z" ], + nimblr: [ 355, 512, [], "f5a8", "M232.6 299.29c15.57 0 27.15 11.46 27.15 26.96 0 15.55-11.62 26.96-27.15 26.96-15.7 0-27.15-11.57-27.15-26.96 0-15.51 11.58-26.96 27.15-26.96zM99.01 326.25c0-15.61 11.68-26.96 27.15-26.96 15.57 0 27.15 11.46 27.15 26.96 0 15.41-11.47 26.96-27.15 26.96-15.44 0-27.15-11.31-27.15-26.96m78.75-167.3C143 158.95 75.45 178.77 45.25 227L0 0v335.48C0 433.13 79.61 512 177.76 512c98.24 0 177.76-78.95 177.76-176.52 0-97.46-79.39-176.53-177.76-176.53zm0 308.12c-73.27 0-132.51-58.9-132.51-131.59 0-72.68 59.24-131.59 132.51-131.59 73.27 0 132.51 58.91 132.51 131.59s-59.25 131.59-132.51 131.59z" ], + "nintendo-switch": [ 448, 512, [], "f418", "M95.9 33.5c-44.6 8-80.5 41-91.8 84.4C0 133.6-.3 142.8.2 264.4.4 376 .5 378.6 2.4 387.3c10.3 46.5 43.3 79.6 90.3 90.5 6.1 1.4 13.9 1.7 64.1 1.9 51.9.4 57.3.3 58.7-1.1 1.4-1.4 1.5-19.3 1.5-222.2 0-150.5-.3-221.3-.9-222.6-.9-1.7-2.5-1.8-56.9-1.7-44.2.1-57.5.4-63.3 1.4zm83.9 222.6V444l-37.8-.5c-34.8-.4-38.5-.6-45.5-2.3-29.9-7.7-52-30.7-58.3-60.7-2-9.4-2-240.1-.1-249.3 5.6-26.1 23.7-47.7 48-57.4 12.2-4.9 17.9-5.5 57.6-5.6l35.9-.1v188zm-75.9-131.2c-5.8 1.1-14.7 5.6-19.5 9.7-9.7 8.4-14.6 20.4-13.8 34.5.4 7.3.8 9.3 3.8 15.2 4.4 9 10.9 15.6 19.9 20 6.2 3.1 7.8 3.4 15.9 3.7 7.3.3 9.9 0 14.8-1.7 20.1-6.8 32.3-26.3 28.8-46.4-3.9-23.7-26.6-39.7-49.9-35zm158.2-92.3c-.4.3-.6 100.8-.6 223.5 0 202.3.1 222.8 1.5 223.4 2.5.9 74.5.6 83.4-.4 37.7-4.3 71-27.2 89-61.2 2.3-4.4 5.4-11.7 7-16.2 5.8-17.4 5.7-12.8 5.7-146.1 0-106.4-.2-122.3-1.5-129-9.2-48.3-46.1-84.8-94.5-93.1-6.5-1.1-16.5-1.4-48.8-1.4-22.4-.1-40.9.2-41.2.5zm99.1 202.1c14.5 3.8 26.3 14.8 31.2 28.9 3.1 8.7 3 21.5-.1 29.5-5.7 14.7-16.8 25-31.1 28.8-23.2 6-47.9-8-54.6-31-2-7-1.9-18.9.4-26.2 6.9-22.7 31-36.1 54.2-30z" ], + node: [ 640, 512, [], "f419", "M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4.1l14.8 8.8c.5.3 1.3.3 1.8 0L375 408c.5-.3.9-.9.9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6.3-.9 1-.9 1.6v66.7c0 .6.4 1.2.9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9.7-1.7 1.7-1.7h7.3c.9 0 1.7.7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7zm46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6.2.8.8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5.3-.4.5-.8.4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7.7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8zm54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1zm-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3 0 5.2 4.2 9.4 9.3 9.4 5.2-.1 9.4-4.3 9.4-9.4zm-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7.1 1.8 1.2 2.1 2.8.1 1 .3 2.7.6 3.3zm-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8zM137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3.4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3.7 2.5 1.8 3.2 1.1.7 2.5.7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1 1.3 0 2.6.3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1.7 2.6.7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2l.2-95zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4zm-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6.3-.9.9-.9 1.6v24.3c0 .7.4 1.3.9 1.6l21 12.1c.6.3 1.3.3 1.8 0l21-12.1c.6-.3.9-.9.9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3.7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1.7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2l36.7-21.3zM559 219c-.4.3-.7.7-.7 1.2v13.6c0 .5.3 1 .7 1.2l11.8 6.8c.4.3 1 .3 1.4 0L584 235c.4-.3.7-.7.7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0L559 219zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7.1-.5.2-1.1.2-1.7zm-74.3-124.9l-.8.5h1.1l-.3-.5zm76.2 130.2l-.4-.7v.9l.4-.2z" ], + "node-js": [ 448, 512, [], "f3d3", "M224 508c-6.7 0-13.5-1.8-19.4-5.2l-61.7-36.5c-9.2-5.2-4.7-7-1.7-8 12.3-4.3 14.8-5.2 27.9-12.7 1.4-.8 3.2-.5 4.6.4l47.4 28.1c1.7 1 4.1 1 5.7 0l184.7-106.6c1.7-1 2.8-3 2.8-5V149.3c0-2.1-1.1-4-2.9-5.1L226.8 37.7c-1.7-1-4-1-5.7 0L36.6 144.3c-1.8 1-2.9 3-2.9 5.1v213.1c0 2 1.1 4 2.9 4.9l50.6 29.2c27.5 13.7 44.3-2.4 44.3-18.7V167.5c0-3 2.4-5.3 5.4-5.3h23.4c2.9 0 5.4 2.3 5.4 5.3V378c0 36.6-20 57.6-54.7 57.6-10.7 0-19.1 0-42.5-11.6l-48.4-27.9C8.1 389.2.7 376.3.7 362.4V149.3c0-13.8 7.4-26.8 19.4-33.7L204.6 9c11.7-6.6 27.2-6.6 38.8 0l184.7 106.7c12 6.9 19.4 19.8 19.4 33.7v213.1c0 13.8-7.4 26.7-19.4 33.7L243.4 502.8c-5.9 3.4-12.6 5.2-19.4 5.2zm149.1-210.1c0-39.9-27-50.5-83.7-58-57.4-7.6-63.2-11.5-63.2-24.9 0-11.1 4.9-25.9 47.4-25.9 37.9 0 51.9 8.2 57.7 33.8.5 2.4 2.7 4.2 5.2 4.2h24c1.5 0 2.9-.6 3.9-1.7s1.5-2.6 1.4-4.1c-3.7-44.1-33-64.6-92.2-64.6-52.7 0-84.1 22.2-84.1 59.5 0 40.4 31.3 51.6 81.8 56.6 60.5 5.9 65.2 14.8 65.2 26.7 0 20.6-16.6 29.4-55.5 29.4-48.9 0-59.6-12.3-63.2-36.6-.4-2.6-2.6-4.5-5.3-4.5h-23.9c-3 0-5.3 2.4-5.3 5.3 0 31.1 16.9 68.2 97.8 68.2 58.4-.1 92-23.2 92-63.4z" ], + npm: [ 576, 512, [], "f3d4", "M288 288h-32v-64h32v64zm288-128v192H288v32H160v-32H0V160h576zm-416 32H32v128h64v-96h32v96h32V192zm160 0H192v160h64v-32h64V192zm224 0H352v128h64v-96h32v96h32v-96h32v96h32V192z" ], + ns8: [ 640, 512, [], "f3d5", "M187.1 159.9l-34.2 113.7-54.5-113.7H49L0 320h44.9L76 213.5 126.6 320h56.9L232 159.9h-44.9zm452.5-.9c-2.9-18-23.9-28.1-42.1-31.3-44.6-7.8-101.9 16.3-88.5 58.8v.1c-43.8 8.7-74.3 26.8-94.2 48.2-3-9.8-13.6-16.6-34-16.6h-87.6c-9.3 0-12.9-2.3-11.5-7.4 1.6-5.5 1.9-6.8 3.7-12.2 2.1-6.4 7.8-7.1 13.3-7.1h133.5l9.7-31.5c-139.7 0-144.5-.5-160.1 1.2-12.3 1.3-23.5 4.8-30.6 15-6.8 9.9-14.4 35.6-17.6 47.1-5.4 19.4-.6 28.6 32.8 28.6h87.3c7.8 0 8.8 2.7 7.7 6.6-1.1 4.4-2.8 10-4.5 14.6-1.6 4.2-4.7 7.4-13.8 7.4H216.3L204.7 320c139.9 0 145.3-.6 160.9-2.3 6.6-.7 13-2.1 18.5-4.9.2 3.7.5 7.3 1.2 10.8 5.4 30.5 27.4 52.3 56.8 59.5 48.6 11.9 108.7-16.8 135.1-68 18.7-36.2 14.1-76.2-3.4-105.5h.1c29.6-5.9 70.3-22 65.7-50.6zM530.7 263.7c-5.9 29.5-36.6 47.8-61.6 43.9-30.9-4.8-38.5-39.5-14.1-64.8 16.2-16.8 45.2-24 68.5-26.9 6.7 14.1 10.3 32 7.2 47.8zm21.8-83.1c-4.2-6-9.8-18.5-2.5-26.3 6.7-7.2 20.9-10.1 31.8-7.7 15.3 3.4 19.7 15.9 4.9 24.4-10.7 6.1-23.6 8.1-34.2 9.6z" ], + nutritionix: [ 400, 512, [], "f3d6", "M88 8.1S221.4-.1 209 112.5c0 0 19.1-74.9 103-40.6 0 0-17.7 74-88 56 0 0 14.6-54.6 66.1-56.6 0 0-39.9-10.3-82.1 48.8 0 0-19.8-94.5-93.6-99.7 0 0 75.2 19.4 77.6 107.5 0 .1-106.4 7-104-119.8zm312 315.6c0 48.5-9.7 95.3-32 132.3-42.2 30.9-105 48-168 48-62.9 0-125.8-17.1-168-48C9.7 419 0 372.2 0 323.7 0 275.3 17.7 229 40 192c42.2-30.9 97.1-48.6 160-48.6 63 0 117.8 17.6 160 48.6 22.3 37 40 83.3 40 131.7zM120 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM192 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM264 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM336 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm24-39.6c-4.8-22.3-7.4-36.9-16-56-38.8-19.9-90.5-32-144-32S94.8 180.1 56 200c-8.8 19.5-11.2 33.9-16 56 42.2-7.9 98.7-14.8 160-14.8s117.8 6.9 160 14.8z" ], + odnoklassniki: [ 320, 512, [], "f263", "M275.1 334c-27.4 17.4-65.1 24.3-90 26.9l20.9 20.6 76.3 76.3c27.9 28.6-17.5 73.3-45.7 45.7-19.1-19.4-47.1-47.4-76.3-76.6L84 503.4c-28.2 27.5-73.6-17.6-45.4-45.7 19.4-19.4 47.1-47.4 76.3-76.3l20.6-20.6c-24.6-2.6-62.9-9.1-90.6-26.9-32.6-21-46.9-33.3-34.3-59 7.4-14.6 27.7-26.9 54.6-5.7 0 0 36.3 28.9 94.9 28.9s94.9-28.9 94.9-28.9c26.9-21.1 47.1-8.9 54.6 5.7 12.4 25.7-1.9 38-34.5 59.1zM30.3 129.7C30.3 58 88.6 0 160 0s129.7 58 129.7 129.7c0 71.4-58.3 129.4-129.7 129.4s-129.7-58-129.7-129.4zm66 0c0 35.1 28.6 63.7 63.7 63.7s63.7-28.6 63.7-63.7c0-35.4-28.6-64-63.7-64s-63.7 28.6-63.7 64z" ], + "odnoklassniki-square": [ 448, 512, [], "f264", "M184.2 177.1c0-22.1 17.9-40 39.8-40s39.8 17.9 39.8 40c0 22-17.9 39.8-39.8 39.8s-39.8-17.9-39.8-39.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-305.1 97.1c0 44.6 36.4 80.9 81.1 80.9s81.1-36.2 81.1-80.9c0-44.8-36.4-81.1-81.1-81.1s-81.1 36.2-81.1 81.1zm174.5 90.7c-4.6-9.1-17.3-16.8-34.1-3.6 0 0-22.7 18-59.3 18s-59.3-18-59.3-18c-16.8-13.2-29.5-5.5-34.1 3.6-7.9 16.1 1.1 23.7 21.4 37 17.3 11.1 41.2 15.2 56.6 16.8l-12.9 12.9c-18.2 18-35.5 35.5-47.7 47.7-17.6 17.6 10.7 45.8 28.4 28.6l47.7-47.9c18.2 18.2 35.7 35.7 47.7 47.9 17.6 17.2 46-10.7 28.6-28.6l-47.7-47.7-13-12.9c15.5-1.6 39.1-5.9 56.2-16.8 20.4-13.3 29.3-21 21.5-37z" ], + "old-republic": [ 496, 512, [], "f510", "M235.76 10.23c7.5-.31 15-.28 22.5-.09 3.61.14 7.2.4 10.79.73 4.92.27 9.79 1.03 14.67 1.62 2.93.43 5.83.98 8.75 1.46 7.9 1.33 15.67 3.28 23.39 5.4 12.24 3.47 24.19 7.92 35.76 13.21 26.56 12.24 50.94 29.21 71.63 49.88 20.03 20.09 36.72 43.55 48.89 69.19 1.13 2.59 2.44 5.1 3.47 7.74 2.81 6.43 5.39 12.97 7.58 19.63 4.14 12.33 7.34 24.99 9.42 37.83.57 3.14 1.04 6.3 1.4 9.47.55 3.83.94 7.69 1.18 11.56.83 8.34.84 16.73.77 25.1-.07 4.97-.26 9.94-.75 14.89-.24 3.38-.51 6.76-.98 10.12-.39 2.72-.63 5.46-1.11 8.17-.9 5.15-1.7 10.31-2.87 15.41-4.1 18.5-10.3 36.55-18.51 53.63-15.77 32.83-38.83 62.17-67.12 85.12a246.503 246.503 0 0 1-56.91 34.86c-6.21 2.68-12.46 5.25-18.87 7.41-3.51 1.16-7.01 2.38-10.57 3.39-6.62 1.88-13.29 3.64-20.04 5-4.66.91-9.34 1.73-14.03 2.48-5.25.66-10.5 1.44-15.79 1.74-6.69.66-13.41.84-20.12.81-6.82.03-13.65-.12-20.45-.79-3.29-.23-6.57-.5-9.83-.95-2.72-.39-5.46-.63-8.17-1.11-4.12-.72-8.25-1.37-12.35-2.22-4.25-.94-8.49-1.89-12.69-3.02-8.63-2.17-17.08-5.01-25.41-8.13-10.49-4.12-20.79-8.75-30.64-14.25-2.14-1.15-4.28-2.29-6.35-3.57-11.22-6.58-21.86-14.1-31.92-22.34-34.68-28.41-61.41-66.43-76.35-108.7-3.09-8.74-5.71-17.65-7.8-26.68-1.48-6.16-2.52-12.42-3.58-18.66-.4-2.35-.61-4.73-.95-7.09-.6-3.96-.75-7.96-1.17-11.94-.8-9.47-.71-18.99-.51-28.49.14-3.51.34-7.01.7-10.51.31-3.17.46-6.37.92-9.52.41-2.81.65-5.65 1.16-8.44.7-3.94 1.3-7.9 2.12-11.82 3.43-16.52 8.47-32.73 15.26-48.18 1.15-2.92 2.59-5.72 3.86-8.59 8.05-16.71 17.9-32.56 29.49-47.06 20-25.38 45.1-46.68 73.27-62.47 7.5-4.15 15.16-8.05 23.07-11.37 15.82-6.88 32.41-11.95 49.31-15.38 3.51-.67 7.04-1.24 10.56-1.85 2.62-.47 5.28-.7 7.91-1.08 3.53-.53 7.1-.68 10.65-1.04 2.46-.24 4.91-.36 7.36-.51m8.64 24.41c-9.23.1-18.43.99-27.57 2.23-7.3 1.08-14.53 2.6-21.71 4.3-13.91 3.5-27.48 8.34-40.46 14.42-10.46 4.99-20.59 10.7-30.18 17.22-4.18 2.92-8.4 5.8-12.34 9.03-5.08 3.97-9.98 8.17-14.68 12.59-2.51 2.24-4.81 4.7-7.22 7.06-28.22 28.79-48.44 65.39-57.5 104.69-2.04 8.44-3.54 17.02-4.44 25.65-1.1 8.89-1.44 17.85-1.41 26.8.11 7.14.38 14.28 1.22 21.37.62 7.12 1.87 14.16 3.2 21.18 1.07 4.65 2.03 9.32 3.33 13.91 6.29 23.38 16.5 45.7 30.07 65.75 8.64 12.98 18.78 24.93 29.98 35.77 16.28 15.82 35.05 29.04 55.34 39.22 7.28 3.52 14.66 6.87 22.27 9.63 5.04 1.76 10.06 3.57 15.22 4.98 11.26 3.23 22.77 5.6 34.39 7.06 2.91.29 5.81.61 8.72.9 13.82 1.08 27.74 1 41.54-.43 4.45-.6 8.92-.99 13.35-1.78 3.63-.67 7.28-1.25 10.87-2.1 4.13-.98 8.28-1.91 12.36-3.07 26.5-7.34 51.58-19.71 73.58-36.2 15.78-11.82 29.96-25.76 42.12-41.28 3.26-4.02 6.17-8.31 9.13-12.55 3.39-5.06 6.58-10.25 9.6-15.54 2.4-4.44 4.74-8.91 6.95-13.45 5.69-12.05 10.28-24.62 13.75-37.49 2.59-10.01 4.75-20.16 5.9-30.45 1.77-13.47 1.94-27.1 1.29-40.65-.29-3.89-.67-7.77-1-11.66-2.23-19.08-6.79-37.91-13.82-55.8-5.95-15.13-13.53-29.63-22.61-43.13-12.69-18.8-28.24-35.68-45.97-49.83-25.05-20-54.47-34.55-85.65-42.08-7.78-1.93-15.69-3.34-23.63-4.45-3.91-.59-7.85-.82-11.77-1.24-7.39-.57-14.81-.72-22.22-.58zM139.26 83.53c13.3-8.89 28.08-15.38 43.3-20.18-3.17 1.77-6.44 3.38-9.53 5.29-11.21 6.68-21.52 14.9-30.38 24.49-6.8 7.43-12.76 15.73-17.01 24.89-3.29 6.86-5.64 14.19-6.86 21.71-.93 4.85-1.3 9.81-1.17 14.75.13 13.66 4.44 27.08 11.29 38.82 5.92 10.22 13.63 19.33 22.36 27.26 4.85 4.36 10.24 8.09 14.95 12.6 2.26 2.19 4.49 4.42 6.43 6.91 2.62 3.31 4.89 6.99 5.99 11.1.9 3.02.66 6.2.69 9.31.02 4.1-.04 8.2.03 12.3.14 3.54-.02 7.09.11 10.63.08 2.38.02 4.76.05 7.14.16 5.77.06 11.53.15 17.3.11 2.91.02 5.82.13 8.74.03 1.63.13 3.28-.03 4.91-.91.12-1.82.18-2.73.16-10.99 0-21.88-2.63-31.95-6.93-6-2.7-11.81-5.89-17.09-9.83-5.75-4.19-11.09-8.96-15.79-14.31-6.53-7.24-11.98-15.39-16.62-23.95-1.07-2.03-2.24-4.02-3.18-6.12-1.16-2.64-2.62-5.14-3.67-7.82-4.05-9.68-6.57-19.94-8.08-30.31-.49-4.44-1.09-8.88-1.2-13.35-.7-15.73.84-31.55 4.67-46.82 2.12-8.15 4.77-16.18 8.31-23.83 6.32-14.2 15.34-27.18 26.3-38.19 6.28-6.2 13.13-11.84 20.53-16.67zm175.37-20.12c2.74.74 5.41 1.74 8.09 2.68 6.36 2.33 12.68 4.84 18.71 7.96 13.11 6.44 25.31 14.81 35.82 24.97 10.2 9.95 18.74 21.6 25.14 34.34 1.28 2.75 2.64 5.46 3.81 8.26 6.31 15.1 10 31.26 11.23 47.57.41 4.54.44 9.09.45 13.64.07 11.64-1.49 23.25-4.3 34.53-1.97 7.27-4.35 14.49-7.86 21.18-3.18 6.64-6.68 13.16-10.84 19.24-6.94 10.47-15.6 19.87-25.82 27.22-10.48 7.64-22.64 13.02-35.4 15.38-3.51.69-7.08 1.08-10.66 1.21-1.85.06-3.72.16-5.56-.1-.28-2.15 0-4.31-.01-6.46-.03-3.73.14-7.45.1-11.17.19-7.02.02-14.05.21-21.07.03-2.38-.03-4.76.03-7.14.17-5.07-.04-10.14.14-15.21.1-2.99-.24-6.04.51-8.96.66-2.5 1.78-4.86 3.09-7.08 4.46-7.31 11.06-12.96 17.68-18.26 5.38-4.18 10.47-8.77 15.02-13.84 7.68-8.37 14.17-17.88 18.78-28.27 2.5-5.93 4.52-12.1 5.55-18.46.86-4.37 1.06-8.83 1.01-13.27-.02-7.85-1.4-15.65-3.64-23.17-1.75-5.73-4.27-11.18-7.09-16.45-3.87-6.93-8.65-13.31-13.96-19.2-9.94-10.85-21.75-19.94-34.6-27.1-1.85-1.02-3.84-1.82-5.63-2.97zm-100.8 58.45c.98-1.18 1.99-2.33 3.12-3.38-.61.93-1.27 1.81-1.95 2.68-3.1 3.88-5.54 8.31-7.03 13.06-.87 3.27-1.68 6.6-1.73 10-.07 2.52-.08 5.07.32 7.57 1.13 7.63 4.33 14.85 8.77 21.12 2 2.7 4.25 5.27 6.92 7.33 1.62 1.27 3.53 2.09 5.34 3.05 3.11 1.68 6.32 3.23 9.07 5.48 2.67 2.09 4.55 5.33 4.4 8.79-.01 73.67 0 147.34-.01 221.02 0 1.35-.08 2.7.04 4.04.13 1.48.82 2.83 1.47 4.15.86 1.66 1.78 3.34 3.18 4.62.85.77 1.97 1.4 3.15 1.24 1.5-.2 2.66-1.35 3.45-2.57.96-1.51 1.68-3.16 2.28-4.85.76-2.13.44-4.42.54-6.63.14-4.03-.02-8.06.14-12.09.03-5.89.03-11.77.06-17.66.14-3.62.03-7.24.11-10.86.15-4.03-.02-8.06.14-12.09.03-5.99.03-11.98.07-17.97.14-3.62.02-7.24.11-10.86.14-3.93-.02-7.86.14-11.78.03-5.99.03-11.98.06-17.97.16-3.94-.01-7.88.19-11.82.29 1.44.13 2.92.22 4.38.19 3.61.42 7.23.76 10.84.32 3.44.44 6.89.86 10.32.37 3.1.51 6.22.95 9.31.57 4.09.87 8.21 1.54 12.29 1.46 9.04 2.83 18.11 5.09 26.99 1.13 4.82 2.4 9.61 4 14.3 2.54 7.9 5.72 15.67 10.31 22.62 1.73 2.64 3.87 4.98 6.1 7.21.27.25.55.51.88.71.6.25 1.31-.07 1.7-.57.71-.88 1.17-1.94 1.7-2.93 4.05-7.8 8.18-15.56 12.34-23.31.7-1.31 1.44-2.62 2.56-3.61 1.75-1.57 3.84-2.69 5.98-3.63 2.88-1.22 5.9-2.19 9.03-2.42 6.58-.62 13.11.75 19.56 1.85 3.69.58 7.4 1.17 11.13 1.41 3.74.1 7.48.05 11.21-.28 8.55-.92 16.99-2.96 24.94-6.25 5.3-2.24 10.46-4.83 15.31-7.93 11.46-7.21 21.46-16.57 30.04-27.01 1.17-1.42 2.25-2.9 3.46-4.28-1.2 3.24-2.67 6.37-4.16 9.48-1.25 2.9-2.84 5.61-4.27 8.42-5.16 9.63-11.02 18.91-17.75 27.52-4.03 5.21-8.53 10.05-13.33 14.57-6.64 6.05-14.07 11.37-22.43 14.76-8.21 3.37-17.31 4.63-26.09 3.29-3.56-.58-7.01-1.69-10.41-2.88-2.79-.97-5.39-2.38-8.03-3.69-3.43-1.71-6.64-3.81-9.71-6.08 2.71 3.06 5.69 5.86 8.7 8.61 4.27 3.76 8.74 7.31 13.63 10.23 3.98 2.45 8.29 4.4 12.84 5.51 1.46.37 2.96.46 4.45.6-1.25 1.1-2.63 2.04-3.99 2.98-9.61 6.54-20.01 11.86-30.69 16.43-20.86 8.7-43.17 13.97-65.74 15.34-4.66.24-9.32.36-13.98.36-4.98-.11-9.97-.13-14.92-.65-11.2-.76-22.29-2.73-33.17-5.43-10.35-2.71-20.55-6.12-30.3-10.55-8.71-3.86-17.12-8.42-24.99-13.79-1.83-1.31-3.74-2.53-5.37-4.08 6.6-1.19 13.03-3.39 18.99-6.48 5.74-2.86 10.99-6.66 15.63-11.07 2.24-2.19 4.29-4.59 6.19-7.09-3.43 2.13-6.93 4.15-10.62 5.78-4.41 2.16-9.07 3.77-13.81 5.02-5.73 1.52-11.74 1.73-17.61 1.14-8.13-.95-15.86-4.27-22.51-8.98-4.32-2.94-8.22-6.43-11.96-10.06-9.93-10.16-18.2-21.81-25.66-33.86-3.94-6.27-7.53-12.75-11.12-19.22-1.05-2.04-2.15-4.05-3.18-6.1 2.85 2.92 5.57 5.97 8.43 8.88 8.99 8.97 18.56 17.44 29.16 24.48 7.55 4.9 15.67 9.23 24.56 11.03 3.11.73 6.32.47 9.47.81 2.77.28 5.56.2 8.34.3 5.05.06 10.11.04 15.16-.16 3.65-.16 7.27-.66 10.89-1.09 2.07-.25 4.11-.71 6.14-1.2 3.88-.95 8.11-.96 11.83.61 4.76 1.85 8.44 5.64 11.38 9.71 2.16 3.02 4.06 6.22 5.66 9.58 1.16 2.43 2.46 4.79 3.55 7.26 1 2.24 2.15 4.42 3.42 6.52.67 1.02 1.4 2.15 2.62 2.55 1.06-.75 1.71-1.91 2.28-3.03 2.1-4.16 3.42-8.65 4.89-13.05 2.02-6.59 3.78-13.27 5.19-20.02 2.21-9.25 3.25-18.72 4.54-28.13.56-3.98.83-7.99 1.31-11.97.87-10.64 1.9-21.27 2.24-31.94.08-1.86.24-3.71.25-5.57.01-4.35.25-8.69.22-13.03-.01-2.38-.01-4.76 0-7.13.05-5.07-.2-10.14-.22-15.21-.2-6.61-.71-13.2-1.29-19.78-.73-5.88-1.55-11.78-3.12-17.51-2.05-7.75-5.59-15.03-9.8-21.82-3.16-5.07-6.79-9.88-11.09-14.03-3.88-3.86-8.58-7.08-13.94-8.45-1.5-.41-3.06-.45-4.59-.64.07-2.99.7-5.93 1.26-8.85 1.59-7.71 3.8-15.3 6.76-22.6 1.52-4.03 3.41-7.9 5.39-11.72 3.45-6.56 7.62-12.79 12.46-18.46zm31.27 1.7c.35-.06.71-.12 1.07-.19.19 1.79.09 3.58.1 5.37v38.13c-.01 1.74.13 3.49-.15 5.22-.36-.03-.71-.05-1.06-.05-.95-3.75-1.72-7.55-2.62-11.31-.38-1.53-.58-3.09-1.07-4.59-1.7-.24-3.43-.17-5.15-.2-5.06-.01-10.13 0-15.19-.01-1.66-.01-3.32.09-4.98-.03-.03-.39-.26-.91.16-1.18 1.28-.65 2.72-.88 4.06-1.35 3.43-1.14 6.88-2.16 10.31-3.31 1.39-.48 2.9-.72 4.16-1.54.04-.56.02-1.13-.05-1.68-1.23-.55-2.53-.87-3.81-1.28-3.13-1.03-6.29-1.96-9.41-3.02-1.79-.62-3.67-1-5.41-1.79-.03-.37-.07-.73-.11-1.09 5.09-.19 10.2.06 15.3-.12 3.36-.13 6.73.08 10.09-.07.12-.39.26-.77.37-1.16 1.08-4.94 2.33-9.83 3.39-14.75zm5.97-.2c.36.05.72.12 1.08.2.98 3.85 1.73 7.76 2.71 11.61.36 1.42.56 2.88 1.03 4.27 2.53.18 5.07-.01 7.61.05 5.16.12 10.33.12 15.49.07.76-.01 1.52.03 2.28.08-.04.36-.07.72-.1 1.08-1.82.83-3.78 1.25-5.67 1.89-3.73 1.23-7.48 2.39-11.22 3.57-.57.17-1.12.42-1.67.64-.15.55-.18 1.12-.12 1.69.87.48 1.82.81 2.77 1.09 4.88 1.52 9.73 3.14 14.63 4.6.38.13.78.27 1.13.49.4.27.23.79.15 1.18-1.66.13-3.31.03-4.97.04-5.17.01-10.33-.01-15.5.01-1.61.03-3.22-.02-4.82.21-.52 1.67-.72 3.42-1.17 5.11-.94 3.57-1.52 7.24-2.54 10.78-.36.01-.71.02-1.06.06-.29-1.73-.15-3.48-.15-5.22v-38.13c.02-1.78-.08-3.58.11-5.37zM65.05 168.33c1.12-2.15 2.08-4.4 3.37-6.46-1.82 7.56-2.91 15.27-3.62 23-.8 7.71-.85 15.49-.54 23.23 1.05 19.94 5.54 39.83 14.23 57.88 2.99 5.99 6.35 11.83 10.5 17.11 6.12 7.47 12.53 14.76 19.84 21.09 4.8 4.1 9.99 7.78 15.54 10.8 3.27 1.65 6.51 3.39 9.94 4.68 5.01 2.03 10.19 3.61 15.42 4.94 3.83.96 7.78 1.41 11.52 2.71 5 1.57 9.47 4.61 13.03 8.43 4.93 5.23 8.09 11.87 10.2 18.67.99 2.9 1.59 5.91 2.17 8.92.15.75.22 1.52.16 2.29-6.5 2.78-13.26 5.06-20.26 6.18-4.11.78-8.29.99-12.46 1.08-10.25.24-20.47-1.76-30.12-5.12-3.74-1.42-7.49-2.85-11.03-4.72-8.06-3.84-15.64-8.7-22.46-14.46-2.92-2.55-5.83-5.13-8.4-8.03-9.16-9.83-16.3-21.41-21.79-33.65-2.39-5.55-4.61-11.18-6.37-16.96-1.17-3.94-2.36-7.89-3.26-11.91-.75-2.94-1.22-5.95-1.87-8.92-.46-2.14-.69-4.32-1.03-6.48-.85-5.43-1.28-10.93-1.33-16.43.11-6.18.25-12.37 1.07-18.5.4-2.86.67-5.74 1.15-8.6.98-5.7 2.14-11.37 3.71-16.93 3.09-11.65 7.48-22.95 12.69-33.84zm363.73-6.44c1.1 1.66 1.91 3.48 2.78 5.26 2.1 4.45 4.24 8.9 6.02 13.49 7.61 18.76 12.3 38.79 13.04 59.05.02 1.76.07 3.52.11 5.29.13 9.57-1.27 19.09-3.18 28.45-.73 3.59-1.54 7.17-2.58 10.69-4.04 14.72-10 29-18.41 41.78-8.21 12.57-19.01 23.55-31.84 31.41-5.73 3.59-11.79 6.64-18.05 9.19-5.78 2.19-11.71 4.03-17.8 5.11-6.4 1.05-12.91 1.52-19.4 1.23-7.92-.48-15.78-2.07-23.21-4.85-1.94-.8-3.94-1.46-5.84-2.33-.21-1.51.25-2.99.53-4.46 1.16-5.74 3.03-11.36 5.7-16.58 2.37-4.51 5.52-8.65 9.46-11.9 2.43-2.05 5.24-3.61 8.16-4.83 3.58-1.5 7.47-1.97 11.24-2.83 7.23-1.71 14.37-3.93 21.15-7 10.35-4.65 19.71-11.38 27.65-19.46 1.59-1.61 3.23-3.18 4.74-4.87 3.37-3.76 6.71-7.57 9.85-11.53 7.48-10.07 12.82-21.59 16.71-33.48 1.58-5.3 3.21-10.6 4.21-16.05.63-2.87 1.04-5.78 1.52-8.68.87-6.09 1.59-12.22 1.68-18.38.12-6.65.14-13.32-.53-19.94-.73-7.99-1.87-15.96-3.71-23.78z" ], + opencart: [ 640, 512, [], "f23d", "M423.3 440.7c0 25.3-20.3 45.6-45.6 45.6s-45.8-20.3-45.8-45.6 20.6-45.8 45.8-45.8c25.4 0 45.6 20.5 45.6 45.8zm-253.9-45.8c-25.3 0-45.6 20.6-45.6 45.8s20.3 45.6 45.6 45.6 45.8-20.3 45.8-45.6-20.5-45.8-45.8-45.8zm291.7-270C158.9 124.9 81.9 112.1 0 25.7c34.4 51.7 53.3 148.9 373.1 144.2 333.3-5 130 86.1 70.8 188.9 186.7-166.7 319.4-233.9 17.2-233.9z" ], + openid: [ 448, 512, [], "f19b", "M271.5 432l-68 32C88.5 453.7 0 392.5 0 318.2c0-71.5 82.5-131 191.7-144.3v43c-71.5 12.5-124 53-124 101.3 0 51 58.5 93.3 135.7 103v-340l68-33.2v384zM448 291l-131.3-28.5 36.8-20.7c-19.5-11.5-43.5-20-70-24.8v-43c46.2 5.5 87.7 19.5 120.3 39.3l35-19.8L448 291z" ], + opera: [ 496, 512, [], "f26a", "M313.9 32.7c-170.2 0-252.6 223.8-147.5 355.1 36.5 45.4 88.6 75.6 147.5 75.6 36.3 0 70.3-11.1 99.4-30.4-43.8 39.2-101.9 63-165.3 63-3.9 0-8 0-11.9-.3C104.6 489.6 0 381.1 0 248 0 111 111 0 248 0h.8c63.1.3 120.7 24.1 164.4 63.1-29-19.4-63.1-30.4-99.3-30.4zm101.8 397.7c-40.9 24.7-90.7 23.6-132-5.8 56.2-20.5 97.7-91.6 97.7-176.6 0-84.7-41.2-155.8-97.4-176.6 41.8-29.2 91.2-30.3 132.9-5 105.9 98.7 105.5 265.7-1.2 364z" ], + "optin-monster": [ 576, 512, [], "f23c", "M550.671 450.303c0 11.62-15.673 19.457-32.158 14.863-12.16-3.243-31.346-17.565-36.211-27.294-5.674-11.62 4.054-32.698 18.916-30.806 15.674 1.621 49.453 25.401 49.453 43.237zM372.86 75.223c-3.783-72.151-100.796-79.718-125.928-23.51 44.588-24.321 90.257-15.673 125.928 23.51zM74.795 407.066c-15.673 1.621-49.452 25.401-49.452 43.237 0 11.62 15.673 19.457 32.157 14.863 12.16-3.243 31.076-17.565 35.94-27.294 5.946-11.62-3.782-32.698-18.645-30.806zm497.765 14.322c1.081 3.513 1.892 7.026 1.892 10.809.81 31.616-44.317 64.045-73.503 65.125-17.295.81-34.59-8.377-42.696-23.51-113.497 4.053-226.994 4.864-340.22 0-8.377 15.133-25.672 24.05-42.967 23.51-28.915-1.081-74.043-33.509-73.503-65.125.27-3.783.811-7.296 1.892-10.809-5.566-9.463-4.845-15.282 5.405-11.62 3.243-5.134 7.026-9.458 11.08-13.782-2.57-10.917 1.27-14.094 11.079-9.188 4.594-3.243 9.998-6.485 15.944-9.188 0-15.757 11.839-11.131 17.295-5.675 12.467-1.78 20.129.709 26.753 5.675v-19.726c-12.987 0-40.641-11.375-45.94-36.212-4.974-20.725 2.607-38.075 25.132-47.56.81-5.945 8.107-14.052 14.862-15.944 7.567-1.892 12.431 4.594 14.052 10.269 7.425 0 17.757 1.465 21.078 8.107 5.405-.541 11.079-1.352 16.484-1.892-2.432-1.892-5.134-3.513-8.107-4.594-5.134-8.917-13.782-11.079-24.591-11.62 0-.81 0-1.621.27-2.702-19.727-.541-44.048-5.675-54.857-17.835-21.321-23.638-15.935-83.577 12.16-103.498 8.377-5.675 21.618-.811 22.699 9.728 2.425 20.598.399 26.833 26.212 25.942 8.107-7.836 16.755-14.592 26.483-19.997-14.862-1.352-28.914 1.621-43.778 3.783 12.752-12.48 23.953-25.442 56.748-42.427 23.511-11.89 49.993-20.808 76.205-23.239-18.646-7.837-39.993-11.891-59.721-16.484 76.475-16.214 174.569-22.159 244.289 37.562 18.105 15.403 32.427 36.211 42.696 59.992 39.799 4.853 36.47-5.581 38.643-25.132 1.081-10.269 14.322-15.403 22.699-9.458 14.862 10.539 22.159 30.806 24.59 48.101 2.162 17.835.27 41.345-12.43 55.127-10.809 12.16-34.32 17.565-53.776 18.105v2.703c-11.08.27-20.268 2.432-25.673 11.62-2.972 1.081-5.674 2.703-8.377 4.594 5.675.54 11.35 1.351 16.755 1.891 1.869-5.619 12.535-8.377 21.077-8.377 1.621-5.405 6.756-11.89 14.052-10.269s14.052 9.998 14.863 15.944c10.809 4.324 22.159 12.16 25.131 25.672 1.892 8.107 1.621 15.133.27 21.888-5.726 25.262-33.361 36.212-45.939 36.212 0 6.756 0 13.241-.27 19.726 8.01-6.006 16.367-7.158 26.752-5.675 5.919-5.919 17.565-9.41 17.565 5.675 5.675 2.703 11.349 5.945 15.944 9.188 10.1-5.051 13.669-.539 10.809 9.188 4.053 4.323 8.107 8.917 11.079 13.782 10.136-3.62 11.021 2.078 5.409 11.62zm-73.773-254.016c17.295 6.756 26.212 22.159 30.265 35.67 1.081-10.539-2.702-39.453-13.782-51.073-7.296-7.296-14.052-5.134-14.052.81.001 6.216-1.35 11.62-2.431 14.593zm-18.646 12.43c12.971 15.673 17.024 41.615 12.7 62.963 10.809-2.162 20.537-6.215 26.212-12.16 1.892-2.162 3.783-4.864 4.864-7.566-1.081-21.348-10.269-42.697-29.725-48.912-3.242 3.243-9.187 4.864-14.051 5.675zm-21.889.811c7.567 20.537 12.431 42.696 14.322 64.585 3.513 0 7.567-.27 11.62-.811 5.945-24.321-.27-51.614-14.052-63.504-3.783 0-8.107 0-11.89-.27zM77.768 167.372c-1.081-2.973-2.432-8.377-2.432-14.593 0-5.945-7.026-8.107-14.052-.81-11.35 11.62-14.863 40.534-13.782 51.073 4.053-13.512 12.971-28.915 30.266-35.67zm5.675 75.394c-4.324-21.348-.27-47.291 12.701-62.963-4.865-.811-10.809-2.432-14.052-5.675-19.457 6.215-28.375 27.563-29.726 48.912 1.351 2.702 2.972 5.404 4.864 7.566 5.675 6.215 15.403 9.998 26.213 12.16zm41.345-61.073c-5.134 1.081-9.998 2.973-14.862 4.865l-12.16 5.134v-.27c-7.296 14.052-9.999 34.319-5.405 52.965 4.594.541 8.647.811 12.7.811 2.432-22.159 9.188-43.778 19.727-63.505zm88.095-23.239c0 42.155 34.319 76.205 76.205 76.205s76.205-34.05 76.205-76.205c0-41.886-34.319-75.935-76.205-75.935s-76.205 34.049-76.205 75.935zm152.41 97.283c9.969 50.608 3.299 64.692 16.484 58.099 15.944-8.107 22.699-39.183 22.97-57.019-12.971-.81-26.213-.81-39.454-1.08zm-71.611-.541v-.27c-.27 5.134.27 38.103 4.324 41.075 11.079 5.405 39.453 4.594 51.073 1.081 5.405-1.621 2.432-37.022 1.621-41.886-18.916-.27-38.102-.27-57.018 0zm-14.053 0v-.27c-19.456.27-38.642.27-57.829.811-1.892 9.187-4.594 48.911 1.892 51.614 12.971 5.675 41.616 5.134 54.586 1.621 4.595-2.432 2.433-45.399 1.351-53.776zm-85.662 57.56c5.405 2.432 8.647 2.432 9.728-4.324 1.892-8.647 2.432-36.752 4.865-52.155-12.16.27-24.591.811-36.752 1.621-5.405 19.727.27 45.129 22.159 54.858zm-65.666-11.08c43.778 47.02 92.689 85.663 155.923 106.47 67.558-19.186 115.659-59.991 163.219-107.011-11.095-4.315-7.715-10.363-7.296-11.62-8.918-.81-17.835-1.892-26.483-2.702-9.458 32.968-35.94 52.965-46.75 31.616-2.702-5.134-3.513-11.62-4.594-16.754-3.783 8.377-13.242 8.107-24.591 8.918-13.241 1.081-31.617 1.351-44.048-2.972-2.972 12.971-11.079 12.971-26.752 14.322-14.052 1.352-48.642 4.054-54.857-10.809-1.081 28.644-35.13 9.998-45.129-7.026-3.243-5.675-5.405-11.35-7.026-17.565-7.837.81-15.673 1.621-23.511 2.702 2.443 3.663 1.549 9.052-8.105 12.431zM115.6 453.545c-5.674-23.239-18.646-49.722-33.508-54.046-22.429-6.756-68.909 23.51-66.207 54.586 12.701 19.457 39.994 35.67 59.181 36.481 17.835.81 35.94-11.08 39.724-28.914.539-2.432.81-5.134.81-8.107zm7.296-5.944c33.509-19.457 69.179-35.671 105.931-47.02-38.643-20.537-68.098-47.831-97.283-77.016-2.162 1.352-5.134 2.432-7.836 3.513-1.637 4.91 8.718 5.33 5.405 12.431-2.162 4.054-8.648 7.567-15.133 9.188-2.161 2.702-5.134 4.864-7.836 6.485h-.27c-.27 13.511-.27 27.024.27 40.535 8.939 15.964 15.426 33.314 16.752 51.884zm320.764 12.7c-36.752-21.348-74.044-41.345-115.659-52.965-13.782 6.215-27.833 11.349-42.155 15.403-2.162.811-2.162.811-4.324 0-11.89-3.783-23.239-8.107-34.859-13.241-40.265 11.62-77.286 29.185-112.416 50.803h-.27v.27c.27 0 .27 0 .27-.27 103.227 4.054 206.455 3.513 309.413 0zm27.023-64.045l-.27.27c.541-13.782.811-27.563.811-41.345-2.973-1.621-5.675-4.054-8.107-6.756-6.485-1.351-12.971-5.134-15.133-8.918-1.892-4.053 1.351-7.566 5.945-10.269-.27-.541-.541-1.621-.541-2.432-2.972-.811-5.405-1.892-7.567-3.243-31.616 29.455-65.396 56.749-103.498 76.746 38.914 11.62 75.935 28.104 111.875 47.561 1.05-14.692 7.231-35.749 16.485-51.614zm23.24 3.244c-14.593 4.323-27.834 30.806-33.509 54.046 0 23.826 21.278 37.897 40.534 37.022 19.186-.811 46.48-17.024 59.181-36.481 2.973-31.077-43.507-61.344-66.206-54.587zM290.709 134.133c.045 0 .089.003.134.003.046 0 .09-.003.136-.003h-.27zm0 96.743c28.645 0 51.884-21.618 51.884-48.371 0-36.092-40.507-58.079-72.151-44.318 9.458 2.972 16.484 11.62 16.484 21.618 0 23.257-33.291 31.955-46.48 11.35-7.297 34.067 19.368 59.721 50.263 59.721zM68.039 474.083c.54 6.486 12.16 12.701 21.618 9.458 6.756-2.703 14.593-10.539 17.295-16.214 2.973-7.026-1.081-19.997-9.728-18.375-8.917 1.621-29.725 16.754-29.185 25.131zm410.75-25.131c-8.377-1.621-12.431 11.349-9.458 18.375 2.432 5.675 10.269 13.511 17.295 16.214 9.187 3.243 21.078-2.972 21.348-9.458.811-8.377-20.267-23.51-29.185-25.131z" ], + osi: [ 495, 512, [], "f41a", "M0 259.2C2.3 123.4 97.4 26.8 213.8 11.1c138.8-18.6 255.6 75.8 278 201.1 21.3 118.8-44 230-151.6 274-9.3 3.8-14.4 1.7-18-7.7-17.8-46.3-35.6-92.7-53.4-139-3.1-8.1-1-13.2 7-16.8 24.2-11 39.3-29.4 43.3-55.8 6.4-42.4-24.5-78.7-64.5-82.2-39-3.4-71.8 23.7-77.5 59.7-5.2 33 11.1 63.7 41.9 77.7 9.6 4.4 11.5 8.6 7.8 18.4-17.9 46.6-35.8 93.2-53.7 139.9-2.6 6.9-8.3 9.3-15.5 6.5-52.6-20.3-101.4-61-130.8-119C1.9 318.7 1.6 280.2 0 259.2zm20.9-1.9c.4 6.6.6 14.3 1.3 22.1 6.3 71.9 49.6 143.5 131 183.1 3.2 1.5 4.4.8 5.6-2.3 14.9-39.1 29.9-78.2 45-117.3 1.3-3.3.6-4.8-2.4-6.7-31.6-19.9-47.3-48.5-45.6-86 1-21.6 9.3-40.5 23.8-56.3 30-32.7 77-39.8 115.5-17.6 31.9 18.4 49.5 53.8 45.2 90.4-3.6 30.6-19.3 53.9-45.7 69.8-2.7 1.6-3.5 2.9-2.3 6 15.2 39.2 30.2 78.4 45.2 117.7 1.2 3.1 2.4 3.8 5.6 2.3 35.5-16.6 65.2-40.3 88.1-72 34.8-48.2 49.1-101.9 42.3-161C459.8 112 354.1 14.7 218 31.5 111.9 44.5 22.7 134 20.9 257.3z" ], + page4: [ 496, 512, [], "f3d7", "M248 504C111 504 0 393 0 256S111 8 248 8c20.9 0 41.3 2.6 60.7 7.5L42.3 392H248v112zm0-143.6V146.8L98.6 360.4H248zm96 31.6v92.7c45.7-19.2 84.5-51.7 111.4-92.7H344zm57.4-138.2l-21.2 8.4 21.2 8.3v-16.7zm-20.3 54.5c-6.7 0-8 6.3-8 12.9v7.7h16.2v-10c0-5.9-2.3-10.6-8.2-10.6zM496 256c0 37.3-8.2 72.7-23 104.4H344V27.3C433.3 64.8 496 153.1 496 256zM360.4 143.6h68.2V96h-13.9v32.6h-13.9V99h-13.9v29.6h-12.7V96h-13.9v47.6zm68.1 185.3H402v-11c0-15.4-5.6-25.2-20.9-25.2-15.4 0-20.7 10.6-20.7 25.9v25.3h68.2v-15zm0-103l-68.2 29.7V268l68.2 29.5v-16.6l-14.4-5.7v-26.5l14.4-5.9v-16.9zm-4.8-68.5h-35.6V184H402v-12.2h11c8.6 15.8 1.3 35.3-18.6 35.3-22.5 0-28.3-25.3-15.5-37.7l-11.6-10.6c-16.2 17.5-12.2 63.9 27.1 63.9 34 0 44.7-35.9 29.3-65.3z" ], + pagelines: [ 384, 512, [], "f18c", "M384 312.7c-55.1 136.7-187.1 54-187.1 54-40.5 81.8-107.4 134.4-184.6 134.7-16.1 0-16.6-24.4 0-24.4 64.4-.3 120.5-42.7 157.2-110.1-41.1 15.9-118.6 27.9-161.6-82.2 109-44.9 159.1 11.2 178.3 45.5 9.9-24.4 17-50.9 21.6-79.7 0 0-139.7 21.9-149.5-98.1 119.1-47.9 152.6 76.7 152.6 76.7 1.6-16.7 3.3-52.6 3.3-53.4 0 0-106.3-73.7-38.1-165.2 124.6 43 61.4 162.4 61.4 162.4.5 1.6.5 23.8 0 33.4 0 0 45.2-89 136.4-57.5-4.2 134-141.9 106.4-141.9 106.4-4.4 27.4-11.2 53.4-20 77.5 0 0 83-91.8 172-20z" ], + palfed: [ 576, 512, [], "f3d8", "M384.9 193.9c0-47.4-55.2-44.2-95.4-29.8-1.3 39.4-2.5 80.7-3 119.8.7 2.8 2.6 6.2 15.1 6.2 36.8 0 83.4-42.8 83.3-96.2zm-194.5 72.2c.2 0 6.5-2.7 11.2-2.7 26.6 0 20.7 44.1-14.4 44.1-21.5 0-37.1-18.1-37.1-43 0-42 42.9-95.6 100.7-126.5 1-12.4 3-22 10.5-28.2 11.2-9 26.6-3.5 29.5 11.1 72.2-22.2 135.2 1 135.2 72 0 77.9-79.3 152.6-140.1 138.2-.1 39.4.9 74.4 2.7 100v.2c.2 3.4.6 12.5-5.3 19.1-9.6 10.6-33.4 10-36.4-22.3-4.1-44.4.2-206.1 1.4-242.5-21.5 15-58.5 50.3-58.5 75.9.2 2.5.4 4 .6 4.6zM8 181.1s-.1 37.4 38.4 37.4h30l22.4 217.2s0 44.3 44.7 44.3h288.9s44.7-.4 44.7-44.3l22.4-217.2h30s38.4 1.2 38.4-37.4c0 0 .1-37.4-38.4-37.4h-30.1c-7.3-25.6-30.2-74.3-119.4-74.3h-28V50.3s-2.7-18.4-21.1-18.4h-85.8s-21.1 0-21.1 18.4v19.1h-28.1s-105 4.2-120.5 74.3h-29S8 142.5 8 181.1z" ], + patreon: [ 512, 512, [], "f3d9", "M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z" ], + paypal: [ 384, 512, [], "f1ed", "M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z" ], + periscope: [ 448, 512, [], "f3da", "M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z" ], + phabricator: [ 496, 512, [], "f3db", "M323 262.1l-.1-13s21.7-19.8 21.1-21.2l-9.5-20c-.6-1.4-29.5-.5-29.5-.5l-9.4-9.3s.2-28.5-1.2-29.1l-20.1-9.2c-1.4-.6-20.7 21-20.7 21l-13.1-.2s-20.5-21.4-21.9-20.8l-20 8.3c-1.4.5.2 28.9.2 28.9l-9.1 9.1s-29.2-.9-29.7.4l-8.1 19.8c-.6 1.4 21 21 21 21l.1 12.9s-21.7 19.8-21.1 21.2l9.5 20c.6 1.4 29.5.5 29.5.5l9.4 9.3s-.2 31.8 1.2 32.3l20.1 8.3c1.4.6 20.7-23.5 20.7-23.5l13.1.2s20.5 23.8 21.8 23.3l20-7.5c1.4-.6-.2-32.1-.2-32.1l9.1-9.1s29.2.9 29.7-.5l8.1-19.8c.7-1.1-20.9-20.7-20.9-20.7zm-44.9-8.7c.7 17.1-12.8 31.6-30.1 32.4-17.3.8-32.1-12.5-32.8-29.6-.7-17.1 12.8-31.6 30.1-32.3 17.3-.8 32.1 12.5 32.8 29.5zm201.2-37.9l-97-97-.1.1c-75.1-73.3-195.4-72.8-269.8 1.6-50.9 51-27.8 27.9-95.7 95.3-22.3 22.3-22.3 58.7 0 81 69.9 69.4 46.4 46 97.4 97l.1-.1c75.1 73.3 195.4 72.9 269.8-1.6 51-50.9 27.9-27.9 95.3-95.3 22.3-22.3 22.3-58.7 0-81zM140.4 363.8c-59.6-59.5-59.6-156 0-215.5 59.5-59.6 156-59.5 215.6 0 59.5 59.5 59.6 156 0 215.6-59.6 59.5-156 59.4-215.6-.1z" ], + "phoenix-framework": [ 640, 512, [], "f3dc", "M212.9 344.3c3.8-.1 22.8-1.4 25.6-2.2-2.4-2.6-43.6-1-68-49.6-4.3-8.6-7.5-17.6-6.4-27.6 2.9-25.5 32.9-30 52-18.5 36 21.6 63.3 91.3 113.7 97.5 37 4.5 84.6-17 108.2-45.4-.6-.1-.8-.2-1-.1-.4.1-.8.2-1.1.3-33.3 12.1-94.3 9.7-134.7-14.8-37.6-22.8-53.1-58.7-51.8-74.6 1.8-21.3 22.9-23.2 35.9-19.6 14.4 3.9 24.4 17.6 38.9 27.4 15.6 10.4 32.9 13.7 51.3 10.3 14.9-2.7 34.4-12.3 36.5-14.5-1.1-.1-1.8-.1-2.5-.2-6.2-.6-12.4-.8-18.5-1.7C279.8 194.5 262.1 47.4 138.5 37.9 94.2 34.5 39.1 46 2.2 72.9c-.8.6-1.5 1.2-2.2 1.8.1.2.1.3.2.5.8 0 1.6-.1 2.4-.2 6.3-1 12.5-.8 18.7.3 23.8 4.3 47.7 23.1 55.9 76.5 5.3 34.3-.7 50.8 8 86.1 19 77.1 91 107.6 127.7 106.4zM75.3 64.9c-.9-1-.9-1.2-1.3-2 12.1-2.6 24.2-4.1 36.6-4.8-1.1 14.7-22.2 21.3-35.3 6.8zm196.9 350.5c-42.8 1.2-92-26.7-123.5-61.4-4.6-5-16.8-20.2-18.6-23.4l.4-.4c6.6 4.1 25.7 18.6 54.8 27 24.2 7 48.1 6.3 71.6-3.3 22.7-9.3 41-.5 43.1 2.9-18.5 3.8-20.1 4.4-24 7.9-5.1 4.4-4.6 11.7 7 17.2 26.2 12.4 63-2.8 97.2 25.4 2.4 2 8.1 7.8 10.1 10.7-.1.2-.3.3-.4.5-4.8-1.5-16.4-7.5-40.2-9.3-24.7-2-46.3 5.3-77.5 6.2zm174.8-252c16.4-5.2 41.3-13.4 66.5-3.3 16.1 6.5 26.2 18.7 32.1 34.6 3.5 9.4 5.1 19.7 5.1 28.7-.2 0-.4 0-.6.1-.2-.4-.4-.9-.5-1.3-5-22-29.9-43.8-67.6-29.9-50.2 18.6-130.4 9.7-176.9-48-.7-.9-2.4-1.7-1.3-3.2.1-.2 2.1.6 3 1.3 18.1 13.4 38.3 21.9 60.3 26.2 30.5 6.1 54.6 2.9 79.9-5.2zm102.7 117.5c-32.4.2-33.8 50.1-103.6 64.4-18.2 3.7-38.7 4.6-44.9 4.2v-.4c2.8-1.5 14.7-2.6 29.7-16.6 7.9-7.3 15.3-15.1 22.8-22.9 19.5-20.2 41.4-42.2 81.9-39 23.1 1.8 29.3 8.2 36.1 12.7.3.2.4.5.7.9-.5 0-.7.1-.9 0-7-2.7-14.3-3.3-21.8-3.3zm-12.3-24.1c-.1.2-.1.4-.2.6-28.9-4.4-48-7.9-68.5 4-17 9.9-31.4 20.5-62 24.4-27.1 3.4-45.1 2.4-66.1-8-.3-.2-.6-.4-1-.6 0-.2.1-.3.1-.5 24.9 3.8 36.4 5.1 55.5-5.8 22.3-12.9 40.1-26.6 71.3-31 29.6-4.1 51.3 2.5 70.9 16.9zM268.6 97.3c-.6-.6-1.1-1.2-2.1-2.3 7.6 0 29.7-1.2 53.4 8.4 19.7 8 32.2 21 50.2 32.9 11.1 7.3 23.4 9.3 36.4 8.1 4.3-.4 8.5-1.2 12.8-1.7.4-.1.9 0 1.5.3-.6.4-1.2.9-1.8 1.2-8.1 4-16.7 6.3-25.6 7.1-26.1 2.6-50.3-3.7-73.4-15.4-19.3-9.9-36.4-22.9-51.4-38.6zM640 335.7c-3.5 3.1-22.7 11.6-42.7 5.3-12.3-3.9-19.5-14.9-31.6-24.1-10-7.6-20.9-7.9-28.1-8.4.6-.8.9-1.2 1.2-1.4 14.8-9.2 30.5-12.2 47.3-6.5 12.5 4.2 19.2 13.5 30.4 24.2 10.8 10.4 21 9.9 23.1 10.5.1-.1.2 0 .4.4zm-212.5 137c2.2 1.2 1.6 1.5 1.5 2-18.5-1.4-33.9-7.6-46.8-22.2-21.8-24.7-41.7-27.9-48.6-29.7.5-.2.8-.4 1.1-.4 13.1.1 26.1.7 38.9 3.9 25.3 6.4 35 25.4 41.6 35.3 3.2 4.8 7.3 8.3 12.3 11.1z" ], + "phoenix-squadron": [ 513, 512, [], "f511", "M96.24 62.81C142.91 26.57 202.15 6.57 261.28 8.08c29.67-.38 59.29 5.38 87.17 15.37-24.2-4.64-49.18-6.35-73.6-2.45-43 5.35-83.26 27.23-112.16 59.35 5.69-.99 10.81-3.68 16.07-5.88 18.19-7.89 37.6-13.29 57.4-14.87 19.8-2.14 39.75-.43 59.45 1.93-14.46 2.79-29.2 4.58-43.11 9.61-34.53 11.11-65.46 33.26-86.55 62.82-13.84 19.77-23.7 42.99-24.74 67.33-.35 16.54 5.23 34.91 19.89 44.17 11.13 6.66 24.85 9.39 37.63 6.76 15.49-2.47 30.16-8.67 43.73-16.38 11.55-6.84 22.73-14.59 32.05-24.32 3.8-3.23 2.54-8.48 2.63-12.83-2.13-.34-4.4-1.11-6.32.3a203.975 203.975 0 0 1-35.93 15.42c-20.07 6.19-42.28 8.48-62.28.78 12.83 1.73 26.14.31 37.85-5.46 20.29-9.75 36.92-25.27 54.6-38.88 27.84-21.29 57.64-40.11 89.17-55.47 25.78-12.01 53.09-22.85 81.81-24.2-15.68 13.76-32.25 26.6-46.92 41.51-14.55 14.04-27.54 29.58-40.23 45.31-3.53 4.61-8.98 6.96-13.62 10.19-22.24 15.03-40.6 35.96-52.04 60.28-9.36 19.74-14.55 41.97-11.81 63.84 1.95 13.73 8.74 27.67 20.96 35.01 12.94 7.99 29.14 8.09 43.61 5.11 32.9-7.47 61.61-28.97 81.28-56 20.5-27.6 30.61-62.38 29.25-96.64-.52-7.52-1.58-15-1.67-22.55 8.02 19.54 14.87 39.83 16.7 61.01 2.01 14.32.75 28.84-1.62 43.02-1.92 11.02-5.69 21.58-7.81 32.53 20.36-22.73 34.17-51.24 39.46-81.31 5.72-35.37.58-72.36-14.25-104.95 20.84 32.12 32.43 69.79 35.81 107.8.5 12.77.5 25.58 0 38.34-2.91 34.26-12.97 67.95-29.76 98-26.2 47.48-68.2 85.89-117.54 108.32-78.52 36.34-175.2 31.41-248.72-14.72-38.84-23.78-71.06-58.32-91.68-98.96C10.72 337.43 2.04 305.5 0 273.13V241.7c3.94-69.97 40.99-136.32 96.24-178.89m222.65 80.57c5.51-.8 10.82-2.57 16.02-4.5 4.99-1.77 9.27-5.95 10.35-11.25-8.91 5-17.95 9.95-26.37 15.75z" ], + php: [ 640, 512, [], "f457", "M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z" ], + "pied-piper": [ 448, 512, [], "f2ae", "M32 419L0 479.2l.8-328C.8 85.3 54 32 120 32h327.2c-93 28.9-189.9 94.2-253.9 168.6C122.7 282 82.6 338 32 419M448 32S305.2 98.8 261.6 199.1c-23.2 53.6-28.9 118.1-71 158.6-28.9 27.8-69.8 38.2-105.3 56.3-23.2 12-66.4 40.5-84.9 66h328.4c66 0 119.3-53.3 119.3-119.2-.1 0-.1-328.8-.1-328.8z" ], + "pied-piper-alt": [ 576, 512, [], "f1a8", "M242 187c6.3-11.8 13.2-17 25.9-21.8 27.3-10.3 40.2-30.5 58.9-51.1 11.9 8.4 12 24.6 31.6 23v21.8l6.3.3c37.4-14.4 74.7-30.2 106.6-54.6 48.3-36.8 52.9-50 81.3-100l2-2.6c-.6 14.1-6.3 27.3-12.4 39.9-30.5 63.8-78.7 100.3-146.8 116.7-12.4 2.9-26.4 3.2-37.6 8.9 1.4 9.8 13.2 18.1 13.2 23 0 3.4-5.5 7.2-7.5 8.6-11.2-12.9-16.1-19.3-22.7-22.1-7.6-3.5-63.9-6.4-98.8 10zm137.9 256.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9L244 246zm-12.6 31.8l24.1 61.2 21-13.8-31.3-50.9-13.8 3.5zM555.5 0l-.6 1.1-.3.9.6-.6.3-1.4zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46v27.3l11.8-3.4-2.9-23.8h-8.9zm76.1 2.9c0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3l2 12.4c9-1.5 58.4-6.6 58.4-14.1z" ], + "pied-piper-hat": [ 640, 512, [], "f4e5", "M640 24.9c-80.8 53.6-89.4 92.5-96.4 104.4-6.7 12.2-11.7 60.3-23.3 83.6-11.7 23.6-54.2 42.2-66.1 50-11.7 7.8-28.3 38.1-41.9 64.2-108.1-4.4-167.4 38.8-259.2 93.6 29.4-9.7 43.3-16.7 43.3-16.7 94.2-36 139.3-68.3 281.1-49.2 1.1 0 1.9.6 2.8.8 3.9 2.2 5.3 6.9 3.1 10.8l-53.9 95.8c-2.5 4.7-7.8 7.2-13.1 6.1-126.8-23.8-226.9 17.3-318.9 18.6C24.1 488 0 453.4 0 451.8c0-1.1.6-1.7 1.7-1.7 0 0 38.3 0 103.1-15.3C178.4 294.5 244 245.4 315.4 245.4c0 0 71.7 0 90.6 61.9 22.8-39.7 28.3-49.2 28.3-49.2 5.3-9.4 35-77.2 86.4-141.4 51.5-64 90.4-79.9 119.3-91.8z" ], + "pied-piper-pp": [ 448, 512, [], "f1a7", "M205.3 174.6c0 21.1-14.2 38.1-31.7 38.1-7.1 0-12.8-1.2-17.2-3.7v-68c4.4-2.7 10.1-4.2 17.2-4.2 17.5 0 31.7 16.9 31.7 37.8zm52.6 67c-7.1 0-12.8 1.5-17.2 4.2v68c4.4 2.5 10.1 3.7 17.2 3.7 17.4 0 31.7-16.9 31.7-37.8 0-21.1-14.3-38.1-31.7-38.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM185 255.1c41 0 74.2-35.6 74.2-79.6 0-44-33.2-79.6-74.2-79.6-12 0-24.1 3.2-34.6 8.8h-45.7V311l51.8-10.1v-50.6c8.6 3.1 18.1 4.8 28.5 4.8zm158.4 25.3c0-44-33.2-79.6-73.9-79.6-3.2 0-6.4.2-9.6.7-3.7 12.5-10.1 23.8-19.2 33.4-13.8 15-32.2 23.8-51.8 24.8V416l51.8-10.1v-50.6c8.6 3.2 18.2 4.7 28.7 4.7 40.8 0 74-35.6 74-79.6z" ], + pinterest: [ 496, 512, [], "f0d2", "M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3.8-3.4 5-20.3 6.9-28.1.6-2.5.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z" ], + "pinterest-p": [ 384, 512, [], "f231", "M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z" ], + "pinterest-square": [ 448, 512, [], "f0d3", "M448 80v352c0 26.5-21.5 48-48 48H154.4c9.8-16.4 22.4-40 27.4-59.3 3-11.5 15.3-58.4 15.3-58.4 8 15.3 31.4 28.2 56.3 28.2 74.1 0 127.4-68.1 127.4-152.7 0-81.1-66.2-141.8-151.4-141.8-106 0-162.2 71.1-162.2 148.6 0 36 19.2 80.8 49.8 95.1 4.7 2.2 7.1 1.2 8.2-3.3.8-3.4 5-20.1 6.8-27.8.6-2.5.3-4.6-1.7-7-10.1-12.3-18.3-34.9-18.3-56 0-54.2 41-106.6 110.9-106.6 60.3 0 102.6 41.1 102.6 99.9 0 66.4-33.5 112.4-77.2 112.4-24.1 0-42.1-19.9-36.4-44.4 6.9-29.2 20.3-60.7 20.3-81.8 0-53-75.5-45.7-75.5 25 0 21.7 7.3 36.5 7.3 36.5-31.4 132.8-36.1 134.5-29.6 192.6l2.2.8H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z" ], + playstation: [ 576, 512, [], "f3df", "M570.9 372.3c-11.3 14.2-38.8 24.3-38.8 24.3L327 470.2v-54.3l150.9-53.8c17.1-6.1 19.8-14.8 5.8-19.4-13.9-4.6-39.1-3.3-56.2 2.9L327 381.1v-56.4c23.2-7.8 47.1-13.6 75.7-16.8 40.9-4.5 90.9.6 130.2 15.5 44.2 14 49.2 34.7 38 48.9zm-224.4-92.5v-139c0-16.3-3-31.3-18.3-35.6-11.7-3.8-19 7.1-19 23.4v347.9l-93.8-29.8V32c39.9 7.4 98 24.9 129.2 35.4C424.1 94.7 451 128.7 451 205.2c0 74.5-46 102.8-104.5 74.6zM43.2 410.2c-45.4-12.8-53-39.5-32.3-54.8 19.1-14.2 51.7-24.9 51.7-24.9l134.5-47.8v54.5l-96.8 34.6c-17.1 6.1-19.7 14.8-5.8 19.4 13.9 4.6 39.1 3.3 56.2-2.9l46.4-16.9v48.8c-51.6 9.3-101.4 7.3-153.9-10z" ], + "product-hunt": [ 512, 512, [], "f288", "M326.3 218.8c0 20.5-16.7 37.2-37.2 37.2h-70.3v-74.4h70.3c20.5 0 37.2 16.7 37.2 37.2zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-128.1-37.2c0-47.9-38.9-86.8-86.8-86.8H169.2v248h49.6v-74.4h70.3c47.9 0 86.8-38.9 86.8-86.8z" ], + pushed: [ 432, 512, [], "f3e1", "M407 111.9l-98.5-9 14-33.4c10.4-23.5-10.8-40.4-28.7-37L22.5 76.9c-15.1 2.7-26 18.3-21.4 36.6l105.1 348.3c6.5 21.3 36.7 24.2 47.7 7l35.3-80.8 235.2-231.3c16.4-16.8 4.3-42.9-17.4-44.8zM297.6 53.6c5.1-.7 7.5 2.5 5.2 7.4L286 100.9 108.6 84.6l189-31zM22.7 107.9c-3.1-5.1 1-10 6.1-9.1l248.7 22.7-96.9 230.7L22.7 107.9zM136 456.4c-2.6 4-7.9 3.1-9.4-1.2L43.5 179.7l127.7 197.6c-7 15-35.2 79.1-35.2 79.1zm272.8-314.5L210.1 337.3l89.7-213.7 106.4 9.7c4 1.1 5.7 5.3 2.6 8.6z" ], + python: [ 448, 512, [], "f3e2", "M167.8 36.4c-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1zm-6.7 28.4c11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4zm185.2 81.4v47.5c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6-7.7-30.9-22.3-54.2-53.4-54.2h-40.1zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3z" ], + qq: [ 448, 512, [], "f1d6", "M433.754 420.445c-11.526 1.393-44.86-52.741-44.86-52.741 0 31.345-16.136 72.247-51.051 101.786 16.842 5.192 54.843 19.167 45.803 34.421-7.316 12.343-125.51 7.881-159.632 4.037-34.122 3.844-152.316 8.306-159.632-4.037-9.045-15.25 28.918-29.214 45.783-34.415-34.92-29.539-51.059-70.445-51.059-101.792 0 0-33.334 54.134-44.859 52.741-5.37-.65-12.424-29.644 9.347-99.704 10.261-33.024 21.995-60.478 40.144-105.779C60.683 98.063 108.982.006 224 0c113.737.006 163.156 96.133 160.264 214.963 18.118 45.223 29.912 72.85 40.144 105.778 21.768 70.06 14.716 99.053 9.346 99.704z" ], + quinscape: [ 489, 512, [], "f459", "M301.9 474.6h-1.3c-87.3 0-158.1-70.8-158.1-158.1s70.8-158.1 158.1-158.1c94.9 0 168.2 83.1 157 176.6 4 5.1 8.2 9.6 11.2 15.3 13.4-30.3 20.3-62.4 20.3-97.7C489.1 117.5 379.6 8 244.5 8 109.5 8 0 117.5 0 252.6s109.5 244.6 244.5 244.6c24.8 0 47.8-3.2 70.4-10.1-5.2-3.5-9-8.2-13.4-12.6l.4.1zm-21.2-69.8c0-54.8 44.4-99.2 99.2-99.2 54.8 0 99.2 44.4 99.2 99.2 0 54.8-44.4 99.2-99.2 99.2-54.8 0-99.2-44.4-99.2-99.2" ], + quora: [ 448, 512, [], "f2c4", "M440.5 386.7h-29.3c-1.5 13.5-10.5 30.8-33 30.8-20.5 0-35.3-14.2-49.5-35.8 44.2-34.2 74.7-87.5 74.7-153C403.5 111.2 306.8 32 205 32 105.3 32 7.3 111.7 7.3 228.7c0 134.1 131.3 221.6 249 189C276 451.3 302 480 351.5 480c81.8 0 90.8-75.3 89-93.3zM297 329.2C277.5 300 253.3 277 205.5 277c-30.5 0-54.3 10-69 22.8l12.2 24.3c6.2-3 13-4 19.8-4 35.5 0 53.7 30.8 69.2 61.3-10 3-20.7 4.2-32.7 4.2-75 0-107.5-53-107.5-156.7C97.5 124.5 130 71 205 71c76.2 0 108.7 53.5 108.7 157.7.1 41.8-5.4 75.6-16.7 100.5z" ], + "r-project": [ 581, 512, [], "f4f7", "M581 226.6C581 119.1 450.9 32 290.5 32S0 119.1 0 226.6C0 322.4 103.3 402 239.4 418.1V480h99.1v-61.5c24.3-2.7 47.6-7.4 69.4-13.9L448 480h112l-67.4-113.7c54.5-35.4 88.4-84.9 88.4-139.7zm-466.8 14.5c0-73.5 98.9-133 220.8-133s211.9 40.7 211.9 133c0 50.1-26.5 85-70.3 106.4-2.4-1.6-4.7-2.9-6.4-3.7-10.2-5.2-27.8-10.5-27.8-10.5s86.6-6.4 86.6-92.7-90.6-87.9-90.6-87.9h-199V361c-74.1-21.5-125.2-67.1-125.2-119.9zm225.1 38.3v-55.6c57.8 0 87.8-6.8 87.8 27.3 0 36.5-38.2 28.3-87.8 28.3zm-.9 72.5H365c10.8 0 18.9 11.7 24 19.2-16.1 1.9-33 2.8-50.6 2.9v-22.1z" ], + ravelry: [ 512, 512, [], "f2d9", "M407.4 61.5C331.6 22.1 257.8 31 182.9 66c-11.3 5.2-15.5 10.6-19.9 19-10.3 19.2-16.2 37.4-19.9 52.7-21.2 25.6-36.4 56.1-43.3 89.9-10.6 18-20.9 41.4-23.1 71.4 0 0-.7 7.6-.5 7.9-35.3-4.6-76.2-27-76.2-27 9.1 14.5 61.3 32.3 76.3 37.9 0 0 1.7 98 64.5 131.2-11.3-17.2-13.3-20.2-13.3-20.2S94.8 369 100.4 324.7c.7 0 1.5.2 2.2.2 23.9 87.4 103.2 151.4 196.9 151.4 6.2 0 12.1-.2 18-.7 14 1.5 27.6.5 40.1-3.9 6.9-2.2 13.8-6.4 20.2-10.8 70.2-39.1 100.9-82 123.1-147.7 5.4-16 8.1-35.5 9.8-52.2 8.7-82.3-30.6-161.6-103.3-199.5zM138.8 163.2s-1.2 12.3-.7 19.7c-3.4 2.5-10.1 8.1-18.2 16.7 5.2-12.8 11.3-25.1 18.9-36.4zm-31.2 121.9c4.4-17.2 13.3-39.1 29.8-55.1 0 0 1.7 48 15.8 90.1l-41.4-6.9c-2.2-9.2-3.5-18.5-4.2-28.1zm7.9 42.8c14.8 3.2 34 7.6 43.1 9.1 27.3 76.8 108.3 124.3 108.3 124.3 1 .5 1.7.7 2.7 1-73.1-11.6-132.7-64.7-154.1-134.4zM386 444.1c-14.5 4.7-36.2 8.4-64.7 3.7 0 0-91.1-23.1-127.5-107.8 38.2.7 52.4-.2 78-3.9 39.4-5.7 79-16.2 115-33 11.8-5.4 11.1-19.4 9.6-29.8-2-12.8-11.1-12.1-21.4-4.7 0 0-82 58.6-189.8 53.7-18.7-32-26.8-110.8-26.8-110.8 41.4-35.2 83.2-59.6 168.4-52.4.2-6.4 3-27.1-20.4-28.1 0 0-93.5-11.1-146 33.5 2.5-16.5 5.9-29.3 11.1-39.4 34.2-30.8 79-49.5 128.3-49.5 106.4 0 193 87.1 193 194.5-.2 76-43.8 142-106.8 174z" ], + react: [ 512, 512, [], "f41b", "M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zm-130 189.1c4.6 8.8 9.3 17.5 14.3 26.1 5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5zm0-50.6c-6.3-14.9-11.6-29.5-16-43.6 14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26zm11.4 25.3c6.6-13.8 13.8-27.3 21.4-40.6 7.6-13.3 15.8-26.2 24.4-38.9 15-1.1 30.3-1.7 45.9-1.7 15.6 0 31 .6 45.9 1.7 8.5 12.6 16.6 25.5 24.3 38.7 7.7 13.2 14.9 26.7 21.7 40.4-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6-15.7 0-30.9-.5-45.6-1.4-8.7-12.7-16.9-25.7-24.6-39-7.7-13.3-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zM256 210.2c25.3 0 45.8 20.5 45.8 45.8 0 25.3-20.5 45.8-45.8 45.8-25.3 0-45.8-20.5-45.8-45.8 0-25.3 20.5-45.8 45.8-45.8" ], + readme: [ 576, 512, [], "f4d5", "M528.3 46.5H388.5c-48.1 0-89.9 33.3-100.4 80.3-10.6-47-52.3-80.3-100.4-80.3H48c-26.5 0-48 21.5-48 48v245.8c0 26.5 21.5 48 48 48h89.7c102.2 0 132.7 24.4 147.3 75 .7 2.8 5.2 2.8 6 0 14.7-50.6 45.2-75 147.3-75H528c26.5 0 48-21.5 48-48V94.6c0-26.4-21.3-47.9-47.7-48.1zM242 311.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5V289c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V251zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm259.3 121.7c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5V228c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.8c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V190z" ], + rebel: [ 512, 512, [], "f1d0", "M256.5 504C117.2 504 9 387.8 13.2 249.9 16 170.7 56.4 97.7 129.7 49.5c.3 0 1.9-.6 1.1.8-5.8 5.5-111.3 129.8-14.1 226.4 49.8 49.5 90 2.5 90 2.5 38.5-50.1-.6-125.9-.6-125.9-10-24.9-45.7-40.1-45.7-40.1l28.8-31.8c24.4 10.5 43.2 38.7 43.2 38.7.8-29.6-21.9-61.4-21.9-61.4L255.1 8l44.3 50.1c-20.5 28.8-21.9 62.6-21.9 62.6 13.8-23 43.5-39.3 43.5-39.3l28.5 31.8c-27.4 8.9-45.4 39.9-45.4 39.9-15.8 28.5-27.1 89.4.6 127.3 32.4 44.6 87.7-2.8 87.7-2.8 102.7-91.9-10.5-225-10.5-225-6.1-5.5.8-2.8.8-2.8 50.1 36.5 114.6 84.4 116.2 204.8C500.9 400.2 399 504 256.5 504z" ], + "red-river": [ 448, 512, [], "f3e3", "M353.2 32H94.8C42.4 32 0 74.4 0 126.8v258.4C0 437.6 42.4 480 94.8 480h258.4c52.4 0 94.8-42.4 94.8-94.8V126.8c0-52.4-42.4-94.8-94.8-94.8zM144.9 200.9v56.3c0 27-21.9 48.9-48.9 48.9V151.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9h-56.3c-12.3-.6-24.6 11.6-24 24zm176.3 72h-56.3c-12.3-.6-24.6 11.6-24 24v56.3c0 27-21.9 48.9-48.9 48.9V247.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9z" ], + reddit: [ 512, 512, [], "f1a1", "M201.5 305.5c-13.8 0-24.9-11.1-24.9-24.6 0-13.8 11.1-24.9 24.9-24.9 13.6 0 24.6 11.1 24.6 24.9 0 13.6-11.1 24.6-24.6 24.6zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-132.3-41.2c-9.4 0-17.7 3.9-23.8 10-22.4-15.5-52.6-25.5-86.1-26.6l17.4-78.3 55.4 12.5c0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.3 24.9-24.9s-11.1-24.9-24.9-24.9c-9.7 0-18 5.8-22.1 13.8l-61.2-13.6c-3-.8-6.1 1.4-6.9 4.4l-19.1 86.4c-33.2 1.4-63.1 11.3-85.5 26.8-6.1-6.4-14.7-10.2-24.1-10.2-34.9 0-46.3 46.9-14.4 62.8-1.1 5-1.7 10.2-1.7 15.5 0 52.6 59.2 95.2 132 95.2 73.1 0 132.3-42.6 132.3-95.2 0-5.3-.6-10.8-1.9-15.8 31.3-16 19.8-62.5-14.9-62.5zM302.8 331c-18.2 18.2-76.1 17.9-93.6 0-2.2-2.2-6.1-2.2-8.3 0-2.5 2.5-2.5 6.4 0 8.6 22.8 22.8 87.3 22.8 110.2 0 2.5-2.2 2.5-6.1 0-8.6-2.2-2.2-6.1-2.2-8.3 0zm7.7-75c-13.6 0-24.6 11.1-24.6 24.9 0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.1 24.9-24.6 0-13.8-11-24.9-24.9-24.9z" ], + "reddit-alien": [ 512, 512, [], "f281", "M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2.1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z" ], + "reddit-square": [ 448, 512, [], "f1a2", "M283.2 345.5c2.7 2.7 2.7 6.8 0 9.2-24.5 24.5-93.8 24.6-118.4 0-2.7-2.4-2.7-6.5 0-9.2 2.4-2.4 6.5-2.4 8.9 0 18.7 19.2 81 19.6 100.5 0 2.4-2.3 6.6-2.3 9 0zm-91.3-53.8c0-14.9-11.9-26.8-26.5-26.8-14.9 0-26.8 11.9-26.8 26.8 0 14.6 11.9 26.5 26.8 26.5 14.6 0 26.5-11.9 26.5-26.5zm90.7-26.8c-14.6 0-26.5 11.9-26.5 26.8 0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-11.9 26.8-26.5 0-14.9-11.9-26.8-26.8-26.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-99.7 140.6c-10.1 0-19 4.2-25.6 10.7-24.1-16.7-56.5-27.4-92.5-28.6l18.7-84.2 59.5 13.4c0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-12.2 26.8-26.8 0-14.6-11.9-26.8-26.8-26.8-10.4 0-19.3 6.2-23.8 14.9l-65.7-14.6c-3.3-.9-6.5 1.5-7.4 4.8l-20.5 92.8c-35.7 1.5-67.8 12.2-91.9 28.9-6.5-6.8-15.8-11-25.9-11-37.5 0-49.8 50.4-15.5 67.5-1.2 5.4-1.8 11-1.8 16.7 0 56.5 63.7 102.3 141.9 102.3 78.5 0 142.2-45.8 142.2-102.3 0-5.7-.6-11.6-2.1-17 33.6-17.2 21.2-67.2-16.1-67.2z" ], + rendact: [ 496, 512, [], "f3e4", "M248 8C111 8 0 119 0 256s111 248 248 248c18.6 0 36.7-2.1 54.1-5.9-5.6-7.4-10.8-14.4-15.9-21.3-12.4 2.1-25.2 3.3-38.3 3.3C124.3 480 24 379.7 24 256S124.3 32 248 32s224 100.3 224 224c0 71-33 134.2-84.5 175.3-25.9 18.8-39.1 21.4-83.5-44.2-78.7-112.9-48-71.1-73.7-108.3 72.8 8.9 228.5-72 168.6-168.6C314-26.8 15 93.8 59.7 226.4c3.2 9.8 14.4 38.6 45.6 38.6 2 0 2.6-.6 2-1.7-4.4-8.7-20.1-9.8-20.1-37.4 0-40.5 40.5-89.6 100.3-120 66.1-32.3 131.9-30.2 158.2 5.4 27.2 38.3-20.9 119.2-120.4 136.9 7.5-9.4 57-75.2 62.8-84 22.7-34.6 23.6-49 14-59.2-15.5-16.9-29.5-10.3-50.7-11.7-10.8-.9-113.7 181.2-136.4 216.9-5.9 9-21.2 34.1-21.2 50.9 0 21.3 2.8 51.4 20.6 51.4 10.6 0 8-18.7 8-26.6 0-12.9 27.4-49.4 74.8-104.6 20.4 36.1 57.7 114.3 130.2 209.7 98-33.1 168.5-125.8 168.5-235C496 119 385 8 248 8z" ], + renren: [ 512, 512, [], "f18b", "M214 169.1c0 110.4-61 205.4-147.6 247.4C30 373.2 8 317.7 8 256.6 8 133.9 97.1 32.2 214 12.5v156.6zM255 504c-42.9 0-83.3-11-118.5-30.4C193.7 437.5 239.9 382.9 255 319c15.5 63.9 61.7 118.5 118.8 154.7C338.7 493 298.3 504 255 504zm190.6-87.5C359 374.5 298 279.6 298 169.1V12.5c116.9 19.7 206 121.4 206 244.1 0 61.1-22 116.6-58.4 159.9z" ], + replyd: [ 448, 512, [], "f3e6", "M320 480H128C57.6 480 0 422.4 0 352V160C0 89.6 57.6 32 128 32h192c70.4 0 128 57.6 128 128v192c0 70.4-57.6 128-128 128zM193.4 273.2c-6.1-2-11.6-3.1-16.4-3.1-7.2 0-13.5 1.9-18.9 5.6-5.4 3.7-9.6 9-12.8 15.8h-1.1l-4.2-18.3h-28v138.9h36.1v-89.7c1.5-5.4 4.4-9.8 8.7-13.2 4.3-3.4 9.8-5.1 16.2-5.1 4.6 0 9.8 1 15.6 3.1l4.8-34zm115.2 103.4c-3.2 2.4-7.7 4.8-13.7 7.1-6 2.3-12.8 3.5-20.4 3.5-12.2 0-21.1-3-26.5-8.9-5.5-5.9-8.5-14.7-9-26.4h83.3c.9-4.8 1.6-9.4 2.1-13.9.5-4.4.7-8.6.7-12.5 0-10.7-1.6-19.7-4.7-26.9-3.2-7.2-7.3-13-12.5-17.2-5.2-4.3-11.1-7.3-17.8-9.2-6.7-1.8-13.5-2.8-20.6-2.8-21.1 0-37.5 6.1-49.2 18.3s-17.5 30.5-17.5 55c0 22.8 5.2 40.7 15.6 53.7 10.4 13.1 26.8 19.6 49.2 19.6 10.7 0 20.9-1.5 30.4-4.6 9.5-3.1 17.1-6.8 22.6-11.2l-12-23.6zm-21.8-70.3c3.8 5.4 5.3 13.1 4.6 23.1h-51.7c.9-9.4 3.7-17 8.2-22.6 4.5-5.6 11.5-8.5 21-8.5 8.2-.1 14.1 2.6 17.9 8zm79.9 2.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4s2 11.7 6.1 15.6zm0 100.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4 0 6.6 2 11.7 6.1 15.6z" ], + researchgate: [ 448, 512, [], "f4f8", "M0 32v448h448V32H0zm262.2 334.4c-6.6 3-33.2 6-50-14.2-9.2-10.6-25.3-33.3-42.2-63.6-8.9 0-14.7 0-21.4-.6v46.4c0 23.5 6 21.2 25.8 23.9v8.1c-6.9-.3-23.1-.8-35.6-.8-13.1 0-26.1.6-33.6.8v-8.1c15.5-2.9 22-1.3 22-23.9V225c0-22.6-6.4-21-22-23.9V193c25.8 1 53.1-.6 70.9-.6 31.7 0 55.9 14.4 55.9 45.6 0 21.1-16.7 42.2-39.2 47.5 13.6 24.2 30 45.6 42.2 58.9 7.2 7.8 17.2 14.7 27.2 14.7v7.3zm22.9-135c-23.3 0-32.2-15.7-32.2-32.2V167c0-12.2 8.8-30.4 34-30.4s30.4 17.9 30.4 17.9l-10.7 7.2s-5.5-12.5-19.7-12.5c-7.9 0-19.7 7.3-19.7 19.7v26.8c0 13.4 6.6 23.3 17.9 23.3 14.1 0 21.5-10.9 21.5-26.8h-17.9v-10.7h30.4c0 20.5 4.7 49.9-34 49.9zm-116.5 44.7c-9.4 0-13.6-.3-20-.8v-69.7c6.4-.6 15-.6 22.5-.6 23.3 0 37.2 12.2 37.2 34.5 0 21.9-15 36.6-39.7 36.6z" ], + resolving: [ 496, 512, [], "f3e7", "M281.2 278.2c46-13.3 49.6-23.5 44-43.4L314 195.5c-6.1-20.9-18.4-28.1-71.1-12.8L54.7 236.8l28.6 98.6 197.9-57.2zM248.5 8C131.4 8 33.2 88.7 7.2 197.5l221.9-63.9c34.8-10.2 54.2-11.7 79.3-8.2 36.3 6.1 52.7 25 61.4 55.2l10.7 37.8c8.2 28.1 1 50.6-23.5 73.6-19.4 17.4-31.2 24.5-61.4 33.2L203 351.8l220.4 27.1 9.7 34.2-48.1 13.3-286.8-37.3 23 80.2c36.8 22 80.3 34.7 126.3 34.7 137 0 248.5-111.4 248.5-248.3C497 119.4 385.5 8 248.5 8zM38.3 388.6L0 256.8c0 48.5 14.3 93.4 38.3 131.8z" ], + rev: [ 410, 512, [], "f5b2", "M270.67 274.89c0 36.16-29.41 65.57-65.56 65.57s-65.57-29.41-65.57-65.57 29.41-65.56 65.57-65.56 65.56 29.4 65.56 65.56zm139.55-5.05h-.13c-1.49-61.55-30.1-116.35-74.32-152.98l-45.38 26.2c43.17 28.03 71.81 76.63 71.81 131.82 0 86.62-70.47 157.09-157.09 157.09S48.02 361.5 48.02 274.88c0-81.86 62.96-149.27 142.99-156.43v39.12l108.76-62.79L191.01 32v38.32C84.31 77.57 0 166.36 0 274.89c0 111.59 89.12 202.29 200.06 204.98v.13h210.16V269.84z" ], + rocketchat: [ 448, 512, [], "f3e8", "M448 256.2c0-87.2-99.6-153.3-219.8-153.3-18.8 0-37.3 1.6-55.3 4.8-11.1-10.5-24.2-20-38-27.4C61.2 44.2 0 79.4 0 79.4s56.9 47.1 47.6 88.3c-52.3 52.3-52.5 124.1 0 176.6C56.9 385.6 0 432.6 0 432.6s61.2 35.2 134.9-.8c13.8-7.5 26.9-16.9 38-27.4 18 3.2 36.5 4.8 55.3 4.8 120.3-.1 219.8-65.8 219.8-153zm-219.7 124c-23.7 0-46.3-2.8-67.3-7.8-21.3 25.8-68.1 61.7-113.6 50.1 14.8-16 36.7-43.1 32-87.6-27.3-21.4-43.6-48.7-43.6-78.5 0-68.4 86.2-123.9 192.5-123.9S420.8 188 420.8 256.4c0 68.3-86.2 123.8-192.5 123.8zm25.6-123.9c0 14.2-11.5 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.5-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm88.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.1 0 25.6 11.6 25.6 25.8zm-177.9 0c0 14.2-11.4 25.8-25.6 25.8-14.1 0-25.6-11.5-25.6-25.8 0-14.2 11.4-25.8 25.6-25.8 14.2 0 25.6 11.6 25.6 25.8z" ], + rockrms: [ 496, 512, [], "f3e9", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm157.4 419.5h-90l-112-131.3c-17.9-20.4-3.9-56.1 26.6-56.1h75.3l-84.6-99.3-84.3 98.9h-90L193.5 67.2c14.4-18.4 41.3-17.3 54.5 0l157.7 185.1c19 22.8 2 57.2-27.6 56.1-.6 0-74.2.2-74.2.2l101.5 118.9z" ], + safari: [ 512, 512, [], "f267", "M236.9 256.8c0-9.1 6.6-17.7 16.3-17.7 8.9 0 17.4 6.4 17.4 16.1 0 9.1-6.4 17.7-16.1 17.7-9 0-17.6-6.7-17.6-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-26.6 0c0-122.3-99.1-221.4-221.4-221.4S34.6 133.7 34.6 256 133.7 477.4 256 477.4 477.4 378.3 477.4 256zm-72.5 96.6c0 3.6 13 10.2 16.3 12.2-27.4 41.5-69.8 71.4-117.9 83.3l-4.4-18.5c-.3-2.5-1.9-2.8-4.2-2.8-1.9 0-3 2.8-2.8 4.2l4.4 18.8c-13.3 2.8-26.8 4.2-40.4 4.2-36.3 0-72-10.2-103-29.1 1.7-2.8 12.2-18 12.2-20.2 0-1.9-1.7-3.6-3.6-3.6-3.9 0-12.2 16.6-14.7 19.9-41.8-27.7-72-70.6-83.6-119.6l19.1-4.2c2.2-.6 2.8-2.2 2.8-4.2 0-1.9-2.8-3-4.4-2.8L62 294.5c-2.5-12.7-3.9-25.5-3.9-38.5 0-37.1 10.5-73.6 30.2-104.9 2.8 1.7 16.1 10.8 18.3 10.8 1.9 0 3.6-1.4 3.6-3.3 0-3.9-14.7-11.3-18-13.6 28.2-41.2 71.1-70.9 119.8-81.9l4.2 18.5c.6 2.2 2.2 2.8 4.2 2.8s3-2.8 2.8-4.4L219 61.7c12.2-2.2 24.6-3.6 37.1-3.6 37.1 0 73.3 10.5 104.9 30.2-1.9 2.8-10.8 15.8-10.8 18 0 1.9 1.4 3.6 3.3 3.6 3.9 0 11.3-14.4 13.3-17.7 41 27.7 70.3 70 81.7 118.2l-15.5 3.3c-2.5.6-2.8 2.2-2.8 4.4 0 1.9 2.8 3 4.2 2.8l15.8-3.6c2.5 12.7 3.9 25.7 3.9 38.7 0 36.3-10 72-28.8 102.7-2.8-1.4-14.4-9.7-16.6-9.7-2.1 0-3.8 1.7-3.8 3.6zm-33.2-242.2c-13 12.2-134.2 123.7-137.6 129.5l-96.6 160.5c12.7-11.9 134.2-124 137.3-129.3l96.9-160.7z" ], + sass: [ 640, 512, [], "f41e", "M551.1 291.9c-22.4.1-41.8 5.5-58 13.5-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-3.8 11.1-5.3 19.1-2.3 11.7-25.8 53.5-39.1 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2c-.1-1.1-1.4-6.6-14.3-6.7-12.9-.1-24 2.5-25.3 5.9-1.3 3.4-2.7 11.4-5.3 19.1-2.6 7.7-33.9 77.3-42.1 95.4-4.2 9.2-7.8 16.6-10.4 21.6s-.2.3-.4.9c-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4.3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2-.8 0-1.4 2-1.4 2s10.1-42.4-19.4-42.4c-18.4 0-44 20.2-56.6 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.8-38.2-101.9-65.2-99.1-116.5 1-18.7 7.5-67.8 127.1-127.4 98-48.8 176.4-35.4 189.9-5.6 19.4 42.5-41.9 121.6-143.7 133-38.8 4.3-59.2-10.7-64.3-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.8 28.9 18.7 6.1 64.2 9.5 119.2-11.8C367 196.5 415.1 130.2 401 74.7 386.6 18.3 293.1-.2 204.6 31.2 151.9 49.9 94.9 79.3 53.9 117.6 5.2 163.2-2.6 202.9.6 219.5c11.4 58.9 92.6 97.3 125.1 125.7-1.6.9-3.1 1.7-4.5 2.5-16.3 8.1-78.2 40.5-93.7 74.7-17.5 38.8 2.9 66.6 16.3 70.4 41.8 11.6 84.6-9.3 107.6-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.3-4.9 16.4-9.4 23.5-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.5 5 15.4 5 13.8 0 20-11.4 26.9-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.4 0 18.8-12.1 23-18.3v.1s.2-.4.7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.6-46 16.2-31.8 31.7-71.5 31.7-71.5s1.4 9.7 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2s0 .1.1.2c-3 4-6.4 8.3-9.9 12.5-12.8 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.7 2.5 11.5-.8 19.6-3.6 23.5-5.4 6.2-2.2 13.4-5.7 20.2-10.6 12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5 19.8-28.9 35.1-60.6 35.1-60.6s1.4 9.7 6.2 25.8c2.4 8.1 7.1 17 11.4 25.7-18.6 15.1-30.1 32.6-34.1 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5 6.5-2.2 14.3-5.7 21.6-11.1 12.5-9.2 24.6-22.1 23.8-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.1-10.2 62.1-7.2 55.7 6.5 66.6 41.3 64.5 55.8-2.1 14.6-13.8 22.6-17.7 25-3.9 2.4-5.1 3.3-4.8 5.1.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.2-11.8 30.3-38.7 1.6-34-31.1-71.4-89-71.1zM121.8 436.6c-18.4 20.1-44.2 27.7-55.3 21.3C54.6 451 59.3 421.4 82 400c13.8-13 31.6-25 43.4-32.4 2.7-1.6 6.6-4 11.4-6.9.8-.5 1.2-.7 1.2-.7.9-.6 1.9-1.1 2.9-1.7 8.3 30.4.3 57.2-19.1 78.3zm134.4-91.4c-6.4 15.7-19.9 55.7-28.1 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.1-11.3 21.2-14.9 23.8-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.9-13.9 0 .5.1 1 .1 1.6-.1 17.9-17.3 30-25.1 34.8zm85.6-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.6-15.3 19-24.5 1.2 3.8 1.9 7.4 1.9 10.8-.1 22.5-16.2 30.9-25.9 34.4z" ], + schlix: [ 448, 512, [], "f3ea", "M350.5 157.7l-54.2-46.1 73.4-39 78.3 44.2-97.5 40.9zM192 122.1l45.7-28.2 34.7 34.6-55.4 29-25-35.4zm-65.1 6.6l31.9-22.1L176 135l-36.7 22.5-12.4-28.8zm-23.3 88.2l-8.8-34.8 29.6-18.3 13.1 35.3-33.9 17.8zm-21.2-83.7l23.9-18.1 8.9 24-26.7 18.3-6.1-24.2zM59 206.5l-3.6-28.4 22.3-15.5 6.1 28.7L59 206.5zm-30.6 16.6l20.8-12.8 3.3 33.4-22.9 12-1.2-32.6zM1.4 268l19.2-10.2.4 38.2-21 8.8L1.4 268zm59.1 59.3l-28.3 8.3-1.6-46.8 25.1-10.7 4.8 49.2zM99 263.2l-31.1 13-5.2-40.8L90.1 221l8.9 42.2zM123.2 377l-41.6 5.9-8.1-63.5 35.2-10.8 14.5 68.4zm28.5-139.9l21.2 57.1-46.2 13.6-13.7-54.1 38.7-16.6zm85.7 230.5l-70.9-3.3-24.3-95.8 55.2-8.6 40 107.7zm-84.9-279.7l42.2-22.4 28 45.9-50.8 21.3-19.4-44.8zm41 94.9l61.3-18.7 52.8 86.6-79.8 11.3-34.3-79.2zm51.4-85.6l67.3-28.8 65.5 65.4-88.6 26.2-44.2-62.8z" ], + scribd: [ 384, 512, [], "f28a", "M42.3 252.7c-16.1-19-24.7-45.9-24.8-79.9 0-100.4 75.2-153.1 167.2-153.1 98.6-1.6 156.8 49 184.3 70.6l-50.5 72.1-37.3-24.6 26.9-38.6c-36.5-24-79.4-36.5-123-35.8-50.7-.8-111.7 27.2-111.7 76.2 0 18.7 11.2 20.7 28.6 15.6 23.3-5.3 41.9.6 55.8 14 26.4 24.3 23.2 67.6-.7 91.9-29.2 29.5-85.2 27.3-114.8-8.4zm317.7 5.9c-15.5-18.8-38.9-29.4-63.2-28.6-38.1-2-71.1 28-70.5 67.2-.7 16.8 6 33 18.4 44.3 14.1 13.9 33 19.7 56.3 14.4 17.4-5.1 28.6-3.1 28.6 15.6 0 4.3-.5 8.5-1.4 12.7-16.7 40.9-59.5 64.4-121.4 64.4-51.9.2-102.4-16.4-144.1-47.3l33.7-39.4-35.6-27.4L0 406.3l15.4 13.8c52.5 46.8 120.4 72.5 190.7 72.2 51.4 0 94.4-10.5 133.6-44.1 57.1-51.4 54.2-149.2 20.3-189.6z" ], + searchengin: [ 460, 512, [], "f3eb", "M220.6 130.3l-67.2 28.2V43.2L98.7 233.5l54.7-24.2v130.3l67.2-209.3zm-83.2-96.7l-1.3 4.7-15.2 52.9C80.6 106.7 52 145.8 52 191.5c0 52.3 34.3 95.9 83.4 105.5v53.6C57.5 340.1 0 272.4 0 191.6c0-80.5 59.8-147.2 137.4-158zm311.4 447.2c-11.2 11.2-23.1 12.3-28.6 10.5-5.4-1.8-27.1-19.9-60.4-44.4-33.3-24.6-33.6-35.7-43-56.7-9.4-20.9-30.4-42.6-57.5-52.4l-9.7-14.7c-24.7 16.9-53 26.9-81.3 28.7l2.1-6.6 15.9-49.5c46.5-11.9 80.9-54 80.9-104.2 0-54.5-38.4-102.1-96-107.1V32.3C254.4 37.4 320 106.8 320 191.6c0 33.6-11.2 64.7-29 90.4l14.6 9.6c9.8 27.1 31.5 48 52.4 57.4s32.2 9.7 56.8 43c24.6 33.2 42.7 54.9 44.5 60.3s.7 17.3-10.5 28.5zm-9.9-17.9c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8z" ], + sellcast: [ 448, 512, [], "f2da", "M353.4 32H94.7C42.6 32 0 74.6 0 126.6v258.7C0 437.4 42.6 480 94.7 480h258.7c52.1 0 94.7-42.6 94.7-94.6V126.6c0-52-42.6-94.6-94.7-94.6zm-50 316.4c-27.9 48.2-89.9 64.9-138.2 37.2-22.9 39.8-54.9 8.6-42.3-13.2l15.7-27.2c5.9-10.3 19.2-13.9 29.5-7.9 18.6 10.8-.1-.1 18.5 10.7 27.6 15.9 63.4 6.3 79.4-21.3 15.9-27.6 6.3-63.4-21.3-79.4-17.8-10.2-.6-.4-18.6-10.6-24.6-14.2-3.4-51.9 21.6-37.5 18.6 10.8-.1-.1 18.5 10.7 48.4 28 65.1 90.3 37.2 138.5zm21.8-208.8c-17 29.5-16.3 28.8-19 31.5-6.5 6.5-16.3 8.7-26.5 3.6-18.6-10.8.1.1-18.5-10.7-27.6-15.9-63.4-6.3-79.4 21.3s-6.3 63.4 21.3 79.4c0 0 18.5 10.6 18.6 10.6 24.6 14.2 3.4 51.9-21.6 37.5-18.6-10.8.1.1-18.5-10.7-48.2-27.8-64.9-90.1-37.1-138.4 27.9-48.2 89.9-64.9 138.2-37.2l4.8-8.4c14.3-24.9 52-3.3 37.7 21.5z" ], + sellsy: [ 640, 512, [], "f213", "M539.71 237.308c3.064-12.257 4.29-24.821 4.29-37.384C544 107.382 468.618 32 376.076 32c-77.22 0-144.634 53.012-163.02 127.781-15.322-13.176-34.934-20.53-55.157-20.53-46.271 0-83.962 37.69-83.962 83.961 0 7.354.92 15.015 3.065 22.369-42.9 20.225-70.785 63.738-70.785 111.234C6.216 424.843 61.68 480 129.401 480h381.198c67.72 0 123.184-55.157 123.184-123.184.001-56.384-38.916-106.025-94.073-119.508zM199.88 401.554c0 8.274-7.048 15.321-15.321 15.321H153.61c-8.274 0-15.321-7.048-15.321-15.321V290.626c0-8.273 7.048-15.321 15.321-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v110.928zm89.477 0c0 8.274-7.048 15.321-15.322 15.321h-30.949c-8.274 0-15.321-7.048-15.321-15.321V270.096c0-8.274 7.048-15.321 15.321-15.321h30.949c8.274 0 15.322 7.048 15.322 15.321v131.458zm89.477 0c0 8.274-7.047 15.321-15.321 15.321h-30.949c-8.274 0-15.322-7.048-15.322-15.321V238.84c0-8.274 7.048-15.321 15.322-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v162.714zm87.027 0c0 8.274-7.048 15.321-15.322 15.321h-28.497c-8.274 0-15.321-7.048-15.321-15.321V176.941c0-8.579 7.047-15.628 15.321-15.628h28.497c8.274 0 15.322 7.048 15.322 15.628v224.613z" ], + servicestack: [ 496, 512, [], "f3ec", "M88 216c81.7 10.2 273.7 102.3 304 232H0c99.5-8.1 184.5-137 88-232zm32-152c32.3 35.6 47.7 83.9 46.4 133.6C249.3 231.3 373.7 321.3 400 448h96C455.3 231.9 222.8 79.5 120 64z" ], + shirtsinbulk: [ 448, 512, [], "f214", "M395.208 221.583H406v33.542h-10.792v-33.542zm0-9.625H406v-33.542h-10.792v33.542zm0 86.333H406V264.75h-10.792v33.541zM358.75 135.25h-33.542v10.5h33.542v-10.5zm36.458 206.208H406v-33.542h-10.792v33.542zM311.5 135.25h-33.542v10.5H311.5v-10.5zm-47.25 0H231v10.5h33.25v-10.5zm-47.25 0h-33.25v10.5H217v-10.5zm178.208 33.542H406V135.25h-33.542v10.5h22.75v23.042zm-255.792 259l30.625 13.417 4.375-9.917-30.625-13.417-4.375 9.917zM179.083 445l30.334 13.708 4.374-9.916-30.333-13.417-4.375 9.625zm216.125-60.375H406v-33.542h-10.792v33.542zm-334.833 8.167L91 406.208l4.375-9.624-30.625-13.709-4.375 9.917zm39.666 17.499l30.625 13.417 4.375-9.917-30.625-13.416-4.375 9.916zm132.417 38.501l4.375 9.916L267.459 445l-4.375-9.625-30.626 13.417zm118.417-52.208l4.375 9.624 30.624-13.416-4.374-9.917-30.625 13.709zM311.5 413.791l4.375 9.917 30.625-13.417-4.374-9.916-30.626 13.416zm-39.667 17.501l4.375 9.917 30.625-13.417-4.375-9.917-30.625 13.417zM311.5 46.583h-33.542v10.5H311.5v-10.5zm94.209 0h-33.251v10.5h33.251v-10.5zm-188.709 0h-33.25v10.5H217v-10.5zm141.75 0h-33.542v10.5h33.542v-10.5zm-94.5 0H231v10.5h33.25v-10.5zM448 3.708v406l-226.334 98.584L0 409.708v-406h448zm-29.166 116.958H29.166V390.75l192.792 85.75 196.875-85.75V120.666zm0-87.791H29.166V91.5h389.667V32.875zM75.542 46.583H42.291v10.5h33.251v-10.5zm94.5 0H136.5v10.5h33.542v-10.5zm-47.251 0H89.25v10.5h33.542v-10.5zm7.584 236.542c0-50.167 41.125-91.292 91.292-91.292 50.458 0 91.292 41.125 91.292 91.292 0 50.458-40.833 91.292-91.292 91.292-50.167-.001-91.292-40.834-91.292-91.292zm120.75 18.084c0 13.125-23.917 14.291-32.666 14.291-12.25 0-29.75-2.625-35.875-14.875h-.875L172.666 319c14.876 9.333 29.167 12.25 47.25 12.25 19.542 0 51.042-5.833 51.042-31.209 0-48.125-78.458-16.333-78.458-37.916 0-13.125 20.708-14.875 29.75-14.875 10.791 0 29.166 3.208 35.583 13.124h.875l8.751-16.916c-15.167-6.125-27.417-11.959-44.334-11.959-20.125 0-49.583 6.417-49.583 31.792 0 44.334 77.583 11.959 77.583 37.918zM122.791 135.25H89.25v10.5h33.542v-10.5zm-69.999 10.5h22.75v-10.5H42v33.542h10.792V145.75zm0 32.666H42v33.542h10.792v-33.542zm117.25-43.166H136.5v10.5h33.542v-10.5zm-117.25 86.333H42v33.542h10.792v-33.542zm0 86.334H42v33.542h10.792v-33.542zm0-43.167H42v33.542h10.792V264.75zm0 86.333H42v33.542h10.792v-33.542z" ], + shopware: [ 495, 512, [], "f5b5", "M395.5 455.27c-42.95 31.79-93.95 48.59-147.48 48.59-137.21 0-248.02-111-248.02-248 0-137.19 111.04-248 248.02-248 61.3 0 120.14 22.55 165.68 63.5 2.62 2.36.58 6.64-2.86 6.18-17.67-2.43-36.75-3.66-56.71-3.66-129.36 0-222.4 53.47-222.4 155.35 0 109.04 92.13 145.88 176.83 178.73 33.64 13.04 65.4 25.36 86.96 41.59 1.9 1.44 1.89 4.31-.02 5.72zm99.46-222.32c-.08-.94-.55-1.83-1.27-2.44-51.76-42.96-93.62-60.48-144.48-60.48-84.13 0-80.25 52.17-80.25 53.63 0 42.6 52.06 62.01 112.34 84.49 31.07 11.59 63.19 23.57 92.68 39.93 1.88 1.05 4.26.19 5.05-1.82 18.89-48.39 17.94-90.23 15.93-113.31z" ], + simplybuilt: [ 512, 512, [], "f215", "M481.2 64h-106c-14.5 0-26.6 11.8-26.6 26.3v39.6H163.3V90.3c0-14.5-12-26.3-26.6-26.3h-106C16.1 64 4.3 75.8 4.3 90.3v331.4c0 14.5 11.8 26.3 26.6 26.3h450.4c14.8 0 26.6-11.8 26.6-26.3V90.3c-.2-14.5-12-26.3-26.7-26.3zM149.8 355.8c-36.6 0-66.4-29.7-66.4-66.4 0-36.9 29.7-66.6 66.4-66.6 36.9 0 66.6 29.7 66.6 66.6 0 36.7-29.7 66.4-66.6 66.4zm212.4 0c-36.9 0-66.6-29.7-66.6-66.6 0-36.6 29.7-66.4 66.6-66.4 36.6 0 66.4 29.7 66.4 66.4 0 36.9-29.8 66.6-66.4 66.6z" ], + sistrix: [ 448, 512, [], "f3ee", "M448 449L301.2 300.2c20-27.9 31.9-62.2 31.9-99.2 0-93.1-74.7-168.9-166.5-168.9C74.7 32 0 107.8 0 200.9s74.7 168.9 166.5 168.9c39.8 0 76.3-14.2 105-37.9l146 148.1 30.5-31zM166.5 330.8c-70.6 0-128.1-58.3-128.1-129.9S95.9 71 166.5 71s128.1 58.3 128.1 129.9-57.4 129.9-128.1 129.9z" ], + sith: [ 448, 512, [], "f512", "M0 32l69.71 118.75-58.86-11.52 69.84 91.03a146.741 146.741 0 0 0 0 51.45l-69.84 91.03 58.86-11.52L0 480l118.75-69.71-11.52 58.86 91.03-69.84c17.02 3.04 34.47 3.04 51.48 0l91.03 69.84-11.52-58.86L448 480l-69.71-118.78 58.86 11.52-69.84-91.03c3.03-17.01 3.04-34.44 0-51.45l69.84-91.03-58.86 11.52L448 32l-118.75 69.71 11.52-58.9-91.06 69.87c-8.5-1.52-17.1-2.29-25.71-2.29s-17.21.78-25.71 2.29l-91.06-69.87 11.52 58.9L0 32zm224 99.78c31.8 0 63.6 12.12 87.85 36.37 48.5 48.5 48.49 127.21 0 175.7s-127.2 48.46-175.7-.03c-48.5-48.5-48.49-127.21 0-175.7 24.24-24.25 56.05-36.34 87.85-36.34zm0 36.66c-22.42 0-44.83 8.52-61.92 25.61-34.18 34.18-34.19 89.68 0 123.87s89.65 34.18 123.84 0c34.18-34.18 34.19-89.68 0-123.87-17.09-17.09-39.5-25.61-61.92-25.61z" ], + skyatlas: [ 640, 512, [], "f216", "M640 329.3c0 65.9-52.5 114.4-117.5 114.4-165.9 0-196.6-249.7-359.7-249.7-146.9 0-147.1 212.2 5.6 212.2 42.5 0 90.9-17.8 125.3-42.5 5.6-4.1 16.9-16.3 22.8-16.3s10.9 5 10.9 10.9c0 7.8-13.1 19.1-18.7 24.1-40.9 35.6-100.3 61.2-154.7 61.2-83.4.1-154-59-154-144.9s67.5-149.1 152.8-149.1c185.3 0 222.5 245.9 361.9 245.9 99.9 0 94.8-139.7 3.4-139.7-17.5 0-35 11.6-46.9 11.6-8.4 0-15.9-7.2-15.9-15.6 0-11.6 5.3-23.7 5.3-36.3 0-66.6-50.9-114.7-116.9-114.7-53.1 0-80 36.9-88.8 36.9-6.2 0-11.2-5-11.2-11.2 0-5.6 4.1-10.3 7.8-14.4 25.3-28.8 64.7-43.7 102.8-43.7 79.4 0 139.1 58.4 139.1 137.8 0 6.9-.3 13.7-1.2 20.6 11.9-3.1 24.1-4.7 35.9-4.7 60.7 0 111.9 45.3 111.9 107.2z" ], + skype: [ 448, 512, [], "f17e", "M424.7 299.8c2.9-14 4.7-28.9 4.7-43.8 0-113.5-91.9-205.3-205.3-205.3-14.9 0-29.7 1.7-43.8 4.7C161.3 40.7 137.7 32 112 32 50.2 32 0 82.2 0 144c0 25.7 8.7 49.3 23.3 68.2-2.9 14-4.7 28.9-4.7 43.8 0 113.5 91.9 205.3 205.3 205.3 14.9 0 29.7-1.7 43.8-4.7 19 14.6 42.6 23.3 68.2 23.3 61.8 0 112-50.2 112-112 .1-25.6-8.6-49.2-23.2-68.1zm-194.6 91.5c-65.6 0-120.5-29.2-120.5-65 0-16 9-30.6 29.5-30.6 31.2 0 34.1 44.9 88.1 44.9 25.7 0 42.3-11.4 42.3-26.3 0-18.7-16-21.6-42-28-62.5-15.4-117.8-22-117.8-87.2 0-59.2 58.6-81.1 109.1-81.1 55.1 0 110.8 21.9 110.8 55.4 0 16.9-11.4 31.8-30.3 31.8-28.3 0-29.2-33.5-75-33.5-25.7 0-42 7-42 22.5 0 19.8 20.8 21.8 69.1 33 41.4 9.3 90.7 26.8 90.7 77.6 0 59.1-57.1 86.5-112 86.5z" ], + slack: [ 448, 512, [], "f198", "M244.2 217.5l19.3 57.7-59.8 20-19.3-57.7 59.8-20zm41.4 243.7C131.6 507.4 65 471.6 18.8 317.6S8.4 97 162.4 50.8C316.4 4.6 383 40.4 429.2 194.4c46.2 154 10.4 220.6-143.6 266.8zM366.2 265c-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-19.3-57.7 29-9.7c12.2-3.9 18.6-17.2 14.7-29.4-3.9-12.2-17.2-18.6-29.4-14.7l-29 9.7-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-59.8 20.1-10-30.1c-3.9-12.2-17.2-18.6-29.4-14.7-12.2 3.9-18.6 17.2-14.7 29.4l10 30.1-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l19.3 57.7-29 9.7c-12.2 3.9-18.6 17.2-14.7 29.4 3.2 9.3 12.2 15.4 21.5 15.8 4.3.6 7.7-1 36.9-10.7l10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 59.8-20.1 10 30.1c3.7 10.8 15.8 18.6 29.4 14.7 12.2-3.9 18.6-17.2 14.7-29.4l-10-30.1 29-9.7c12.2-4.2 18.6-17.5 14.7-29.6z" ], + "slack-hash": [ 448, 512, [], "f3ef", "M446.2 270.4c-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-30.3-90 45.4-15.1c19.1-6.2 29.1-26.8 23-45.9-6.2-19-26.9-29.1-46-22.9l-45.4 15.1-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-93.4 31.2-15.7-47c-6.2-19-26.9-29.1-46-22.9-19.1 6.2-29.1 26.8-23 45.9l15.7 47-45.3 15c-19.1 6.2-29.1 26.8-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l30.3 90L78 354.8c-19 6.2-29.1 26.9-23 45.9 5 14.5 19.1 24 33.6 24.6 6.8 1 12-1.6 57.7-16.8l15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 93.6-31.3 15.7 47c5.9 16.9 24.7 29 46 22.9 19.1-6.2 29.1-26.8 23-45.9l-15.7-47 45.4-15.1c19-6 29.1-26.7 22.9-45.7zm-254.1 47.2l-30.3-90.2 93.5-31.3 30.3 90.2-93.5 31.3z" ], + slideshare: [ 512, 512, [], "f1e7", "M249.429 211.436c0 31.716-27.715 57.717-61.717 57.717-34.001 0-61.716-26.001-61.716-57.717 0-32.001 27.715-57.716 61.716-57.716 34.001 0 61.717 25.715 61.717 57.716zm254.294 50.002c-18.286 22.573-53.144 50.288-106.289 72.003C453.722 525.163 260 555.735 263.143 457.446c0 1.714-.286-52.859-.286-93.432-4.285-.858-8.571-2-13.714-3.143 0 40.858-.286 98.289-.286 96.575C252 555.735 58.278 525.163 114.566 333.441c-53.145-21.715-88.003-49.43-106.29-72.003-9.143-13.714.858-28.287 16.001-17.715 2 1.428 4.285 2.857 6.285 4.285V49.716C30.563 22.287 51.135 0 76.565 0h359.157c25.429 0 46.002 22.287 46.002 49.716v198.293l6-4.285c15.143-10.573 25.143 4 15.999 17.714zm-46.572-189.15c0-32.858-10.572-45.716-40.859-45.716H98.566c-31.716 0-40.573 10.858-40.573 45.716v192.293c67.717 35.43 125.72 29.144 157.435 28.001 13.429-.286 22.001 2.286 27.144 7.715 1.689 1.687 10.023 9.446 20.287 17.143 1.143-15.715 10.001-25.715 33.716-24.858 32.287 1.428 91.718 7.715 160.577-29.716V72.288zM331.146 153.72c-34.002 0-61.716 25.715-61.716 57.716 0 31.716 27.715 57.717 61.716 57.717 34.287 0 61.716-26.001 61.716-57.717 0-32.001-27.429-57.716-61.716-57.716z" ], + snapchat: [ 496, 512, [], "f2ab", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm169.5 338.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C183.1 100 230.7 96 244.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z" ], + "snapchat-ghost": [ 512, 512, [], "f2ac", "M510.846 392.673c-5.211 12.157-27.239 21.089-67.36 27.318-2.064 2.786-3.775 14.686-6.507 23.956-1.625 5.566-5.623 8.869-12.128 8.869l-.297-.005c-9.395 0-19.203-4.323-38.852-4.323-26.521 0-35.662 6.043-56.254 20.588-21.832 15.438-42.771 28.764-74.027 27.399-31.646 2.334-58.025-16.908-72.871-27.404-20.714-14.643-29.828-20.582-56.241-20.582-18.864 0-30.736 4.72-38.852 4.72-8.073 0-11.213-4.922-12.422-9.04-2.703-9.189-4.404-21.263-6.523-24.13-20.679-3.209-67.31-11.344-68.498-32.15a10.627 10.627 0 0 1 8.877-11.069c69.583-11.455 100.924-82.901 102.227-85.934.074-.176.155-.344.237-.515 3.713-7.537 4.544-13.849 2.463-18.753-5.05-11.896-26.872-16.164-36.053-19.796-23.715-9.366-27.015-20.128-25.612-27.504 2.437-12.836 21.725-20.735 33.002-15.453 8.919 4.181 16.843 6.297 23.547 6.297 5.022 0 8.212-1.204 9.96-2.171-2.043-35.936-7.101-87.29 5.687-115.969C158.122 21.304 229.705 15.42 250.826 15.42c.944 0 9.141-.089 10.11-.089 52.148 0 102.254 26.78 126.723 81.643 12.777 28.65 7.749 79.792 5.695 116.009 1.582.872 4.357 1.942 8.599 2.139 6.397-.286 13.815-2.389 22.069-6.257 6.085-2.846 14.406-2.461 20.48.058l.029.01c9.476 3.385 15.439 10.215 15.589 17.87.184 9.747-8.522 18.165-25.878 25.018-2.118.835-4.694 1.655-7.434 2.525-9.797 3.106-24.6 7.805-28.616 17.271-2.079 4.904-1.256 11.211 2.46 18.748.087.168.166.342.239.515 1.301 3.03 32.615 74.46 102.23 85.934 6.427 1.058 11.163 7.877 7.725 15.859z" ], + "snapchat-square": [ 448, 512, [], "f2ad", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6.5 314.9c-3.5 8.1-18.1 14-44.8 18.2-1.4 1.9-2.5 9.8-4.3 15.9-1.1 3.7-3.7 5.9-8.1 5.9h-.2c-6.2 0-12.8-2.9-25.8-2.9-17.6 0-23.7 4-37.4 13.7-14.5 10.3-28.4 19.1-49.2 18.2-21 1.6-38.6-11.2-48.5-18.2-13.8-9.7-19.8-13.7-37.4-13.7-12.5 0-20.4 3.1-25.8 3.1-5.4 0-7.5-3.3-8.3-6-1.8-6.1-2.9-14.1-4.3-16-13.8-2.1-44.8-7.5-45.5-21.4-.2-3.6 2.3-6.8 5.9-7.4 46.3-7.6 67.1-55.1 68-57.1 0-.1.1-.2.2-.3 2.5-5 3-9.2 1.6-12.5-3.4-7.9-17.9-10.7-24-13.2-15.8-6.2-18-13.4-17-18.3 1.6-8.5 14.4-13.8 21.9-10.3 5.9 2.8 11.2 4.2 15.7 4.2 3.3 0 5.5-.8 6.6-1.4-1.4-23.9-4.7-58 3.8-77.1C159.1 100 206.7 96 220.7 96c.6 0 6.1-.1 6.7-.1 34.7 0 68 17.8 84.3 54.3 8.5 19.1 5.2 53.1 3.8 77.1 1.1.6 2.9 1.3 5.7 1.4 4.3-.2 9.2-1.6 14.7-4.2 4-1.9 9.6-1.6 13.6 0 6.3 2.3 10.3 6.8 10.4 11.9.1 6.5-5.7 12.1-17.2 16.6-1.4.6-3.1 1.1-4.9 1.7-6.5 2.1-16.4 5.2-19 11.5-1.4 3.3-.8 7.5 1.6 12.5.1.1.1.2.2.3.9 2 21.7 49.5 68 57.1 4 1 7.1 5.5 4.9 10.8z" ], + soundcloud: [ 640, 512, [], "f1be", "M111.4 256.3l5.8 65-5.8 68.3c-.3 2.5-2.2 4.4-4.4 4.4s-4.2-1.9-4.2-4.4l-5.6-68.3 5.6-65c0-2.2 1.9-4.2 4.2-4.2 2.2 0 4.1 2 4.4 4.2zm21.4-45.6c-2.8 0-4.7 2.2-5 5l-5 105.6 5 68.3c.3 2.8 2.2 5 5 5 2.5 0 4.7-2.2 4.7-5l5.8-68.3-5.8-105.6c0-2.8-2.2-5-4.7-5zm25.5-24.1c-3.1 0-5.3 2.2-5.6 5.3l-4.4 130 4.4 67.8c.3 3.1 2.5 5.3 5.6 5.3 2.8 0 5.3-2.2 5.3-5.3l5.3-67.8-5.3-130c0-3.1-2.5-5.3-5.3-5.3zM7.2 283.2c-1.4 0-2.2 1.1-2.5 2.5L0 321.3l4.7 35c.3 1.4 1.1 2.5 2.5 2.5s2.2-1.1 2.5-2.5l5.6-35-5.6-35.6c-.3-1.4-1.1-2.5-2.5-2.5zm23.6-21.9c-1.4 0-2.5 1.1-2.5 2.5l-6.4 57.5 6.4 56.1c0 1.7 1.1 2.8 2.5 2.8s2.5-1.1 2.8-2.5l7.2-56.4-7.2-57.5c-.3-1.4-1.4-2.5-2.8-2.5zm25.3-11.4c-1.7 0-3.1 1.4-3.3 3.3L47 321.3l5.8 65.8c.3 1.7 1.7 3.1 3.3 3.1 1.7 0 3.1-1.4 3.1-3.1l6.9-65.8-6.9-68.1c0-1.9-1.4-3.3-3.1-3.3zm25.3-2.2c-1.9 0-3.6 1.4-3.6 3.6l-5.8 70 5.8 67.8c0 2.2 1.7 3.6 3.6 3.6s3.6-1.4 3.9-3.6l6.4-67.8-6.4-70c-.3-2.2-2-3.6-3.9-3.6zm241.4-110.9c-1.1-.8-2.8-1.4-4.2-1.4-2.2 0-4.2.8-5.6 1.9-1.9 1.7-3.1 4.2-3.3 6.7v.8l-3.3 176.7 1.7 32.5 1.7 31.7c.3 4.7 4.2 8.6 8.9 8.6s8.6-3.9 8.6-8.6l3.9-64.2-3.9-177.5c-.4-3-2-5.8-4.5-7.2zm-26.7 15.3c-1.4-.8-2.8-1.4-4.4-1.4s-3.1.6-4.4 1.4c-2.2 1.4-3.6 3.9-3.6 6.7l-.3 1.7-2.8 160.8s0 .3 3.1 65.6v.3c0 1.7.6 3.3 1.7 4.7 1.7 1.9 3.9 3.1 6.4 3.1 2.2 0 4.2-1.1 5.6-2.5 1.7-1.4 2.5-3.3 2.5-5.6l.3-6.7 3.1-58.6-3.3-162.8c-.3-2.8-1.7-5.3-3.9-6.7zm-111.4 22.5c-3.1 0-5.8 2.8-5.8 6.1l-4.4 140.6 4.4 67.2c.3 3.3 2.8 5.8 5.8 5.8 3.3 0 5.8-2.5 6.1-5.8l5-67.2-5-140.6c-.2-3.3-2.7-6.1-6.1-6.1zm376.7 62.8c-10.8 0-21.1 2.2-30.6 6.1-6.4-70.8-65.8-126.4-138.3-126.4-17.8 0-35 3.3-50.3 9.4-6.1 2.2-7.8 4.4-7.8 9.2v249.7c0 5 3.9 8.6 8.6 9.2h218.3c43.3 0 78.6-35 78.6-78.3.1-43.6-35.2-78.9-78.5-78.9zm-296.7-60.3c-4.2 0-7.5 3.3-7.8 7.8l-3.3 136.7 3.3 65.6c.3 4.2 3.6 7.5 7.8 7.5 4.2 0 7.5-3.3 7.5-7.5l3.9-65.6-3.9-136.7c-.3-4.5-3.3-7.8-7.5-7.8zm-53.6-7.8c-3.3 0-6.4 3.1-6.4 6.7l-3.9 145.3 3.9 66.9c.3 3.6 3.1 6.4 6.4 6.4 3.6 0 6.4-2.8 6.7-6.4l4.4-66.9-4.4-145.3c-.3-3.6-3.1-6.7-6.7-6.7zm26.7 3.4c-3.9 0-6.9 3.1-6.9 6.9L227 321.3l3.9 66.4c.3 3.9 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9l4.2-66.4-4.2-141.7c0-3.9-3-6.9-6.9-6.9z" ], + speakap: [ 448, 512, [], "f3f3", "M352 32H96C43.2 32 0 75.2 0 128v256c0 52.8 43.2 96 96 96h256c52.8 0 96-43.2 96-96V128c0-52.8-43.2-96-96-96zM221 382.9c-39.6 0-81.9-17.8-81.9-53.7V302H179v17.8c0 15.1 19.5 24.5 41.9 24.5 24.2 0 41.3-10.4 41.3-29.5 0-23.8-27.2-31.9-54.7-42.6-31.9-12.4-63.1-26.2-63.1-69.1 0-48 38.6-66.4 79.9-66.4 37.6 0 75.5 14.1 75.5 41.9v31.2h-39.9v-16.1c0-12.1-17.8-18.5-35.6-18.5-19.5 0-35.6 8.1-35.6 26.2 0 22.1 22.5 29.2 47 38.9 35.9 12.4 71.1 27.2 71.1 71.5.1 48.6-40.8 71.1-85.8 71.1z" ], + spotify: [ 496, 512, [], "f1bc", "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm100.7 364.9c-4.2 0-6.8-1.3-10.7-3.6-62.4-37.6-135-39.2-206.7-24.5-3.9 1-9 2.6-11.9 2.6-9.7 0-15.8-7.7-15.8-15.8 0-10.3 6.1-15.2 13.6-16.8 81.9-18.1 165.6-16.5 237 26.2 6.1 3.9 9.7 7.4 9.7 16.5s-7.1 15.4-15.2 15.4zm26.9-65.6c-5.2 0-8.7-2.3-12.3-4.2-62.5-37-155.7-51.9-238.6-29.4-4.8 1.3-7.4 2.6-11.9 2.6-10.7 0-19.4-8.7-19.4-19.4s5.2-17.8 15.5-20.7c27.8-7.8 56.2-13.6 97.8-13.6 64.9 0 127.6 16.1 177 45.5 8.1 4.8 11.3 11 11.3 19.7-.1 10.8-8.5 19.5-19.4 19.5zm31-76.2c-5.2 0-8.4-1.3-12.9-3.9-71.2-42.5-198.5-52.7-280.9-29.7-3.6 1-8.1 2.6-12.9 2.6-13.2 0-23.3-10.3-23.3-23.6 0-13.6 8.4-21.3 17.4-23.9 35.2-10.3 74.6-15.2 117.5-15.2 73 0 149.5 15.2 205.4 47.8 7.8 4.5 12.9 10.7 12.9 22.6 0 13.6-11 23.3-23.2 23.3z" ], + squarespace: [ 512, 512, [], "f5be", "M186.12 343.34c-9.65 9.65-9.65 25.29 0 34.94 9.65 9.65 25.29 9.65 34.94 0L378.24 221.1c19.29-19.29 50.57-19.29 69.86 0s19.29 50.57 0 69.86L293.95 445.1c19.27 19.29 50.53 19.31 69.82.04l.04-.04 119.25-119.24c38.59-38.59 38.59-101.14 0-139.72-38.59-38.59-101.15-38.59-139.72 0l-157.22 157.2zm244.53-104.8c-9.65-9.65-25.29-9.65-34.93 0l-157.2 157.18c-19.27 19.29-50.53 19.31-69.82.05l-.05-.05c-9.64-9.64-25.27-9.65-34.92-.01l-.01.01c-9.65 9.64-9.66 25.28-.02 34.93l.02.02c38.58 38.57 101.14 38.57 139.72 0l157.2-157.2c9.65-9.65 9.65-25.29.01-34.93zm-261.99 87.33l157.18-157.18c9.64-9.65 9.64-25.29 0-34.94-9.64-9.64-25.27-9.64-34.91 0L133.72 290.93c-19.28 19.29-50.56 19.3-69.85.01l-.01-.01c-19.29-19.28-19.31-50.54-.03-69.84l.03-.03L218.03 66.89c-19.28-19.29-50.55-19.3-69.85-.02l-.02.02L28.93 186.14c-38.58 38.59-38.58 101.14 0 139.72 38.6 38.59 101.13 38.59 139.73.01zm-87.33-52.4c9.64 9.64 25.27 9.64 34.91 0l157.21-157.19c19.28-19.29 50.55-19.3 69.84-.02l.02.02c9.65 9.65 25.29 9.65 34.93 0 9.65-9.65 9.65-25.29 0-34.93-38.59-38.59-101.13-38.59-139.72 0L81.33 238.54c-9.65 9.64-9.65 25.28-.01 34.93h.01z" ], + "stack-exchange": [ 448, 512, [], "f18d", "M17.7 332.3h412.7v22c0 37.7-29.3 68-65.3 68h-19L259.3 512v-89.7H83c-36 0-65.3-30.3-65.3-68v-22zm0-23.6h412.7v-85H17.7v85zm0-109.4h412.7v-85H17.7v85zM365 0H83C47 0 17.7 30.3 17.7 67.7V90h412.7V67.7C430.3 30.3 401 0 365 0z" ], + "stack-overflow": [ 384, 512, [], "f16c", "M293.7 300l-181.2-84.5 16.7-36.5 181.3 84.7-16.8 36.3zm48-76L188.2 95.7l-25.5 30.8 153.5 128.3 25.5-30.8zm39.6-31.7L262 32l-32 24 119.3 160.3 32-24zM290.7 311L95 269.7 86.8 309l195.7 41 8.2-39zm31.6 129H42.7V320h-40v160h359.5V320h-40v120zm-39.8-80h-200v39.7h200V360z" ], + staylinked: [ 440, 512, [], "f3f5", "M201.6 127.4c4.1-3.2 10.3-3 13.8.5l170 167.3-2.7-2.7 44.3 41.3c3.7 3.5 3.3 9-.7 12.2l-198 163.9c-9.9 7.6-17.3.8-17.3.8L2.3 314.6c-3.5-3.5-3-9 1.2-12.2l45.8-34.9c4.2-3.2 10.4-3 13.9.5l151.9 147.5c3.7 3.5 10 3.7 14.2.4l93.2-74c4.1-3.2 4.5-8.7.9-12.2l-84-81.3c-3.6-3.5-9.9-3.7-14-.5l-.1.1c-4.1 3.2-10.4 3-14-.5l-68.1-64.3c-3.5-3.5-3.1-9 1.1-12.2l57.3-43.6m14.8 257.3c3.7 3.5 10.1 3.7 14.3.4l50.2-38.8-.3-.3 7.7-6c4.2-3.2 4.6-8.7.9-12.2l-57.1-54.4c-3.6-3.5-10-3.7-14.2-.5l-.1.1c-4.2 3.2-10.5 3.1-14.2-.4L109 180.8c-3.6-3.5-3.1-8.9 1.1-12.2l92.2-71.5c4.1-3.2 10.3-3 13.9.5l160.4 159c3.7 3.5 10 3.7 14.1.5l45.8-35.8c4.1-3.2 4.4-8.7.7-12.2L226.7 2.5c-1.5-1.2-8-5.5-16.3 1.1L3.6 165.7c-4.2 3.2-4.8 8.7-1.2 12.2l42.3 41.7" ], + steam: [ 496, 512, [], "f1b6", "M496 256c0 137-111.2 248-248.4 248-113.8 0-209.6-76.3-239-180.4l95.2 39.3c6.4 32.1 34.9 56.4 68.9 56.4 39.2 0 71.9-32.4 70.2-73.5l84.5-60.2c52.1 1.3 95.8-40.9 95.8-93.5 0-51.6-42-93.5-93.7-93.5s-93.7 42-93.7 93.5v1.2L176.6 279c-15.5-.9-30.7 3.4-43.5 12.1L0 236.1C10.2 108.4 117.1 8 247.6 8 384.8 8 496 119 496 256zM155.7 384.3l-30.5-12.6a52.79 52.79 0 0 0 27.2 25.8c26.9 11.2 57.8-1.6 69-28.4 5.4-13 5.5-27.3.1-40.3-5.4-13-15.5-23.2-28.5-28.6-12.9-5.4-26.7-5.2-38.9-.6l31.5 13c19.8 8.2 29.2 30.9 20.9 50.7-8.3 19.9-31 29.2-50.8 21zm173.8-129.9c-34.4 0-62.4-28-62.4-62.3s28-62.3 62.4-62.3 62.4 28 62.4 62.3-27.9 62.3-62.4 62.3zm.1-15.6c25.9 0 46.9-21 46.9-46.8 0-25.9-21-46.8-46.9-46.8s-46.9 21-46.9 46.8c.1 25.8 21.1 46.8 46.9 46.8z" ], + "steam-square": [ 448, 512, [], "f1b7", "M185.2 356.5c7.7-18.5-1-39.7-19.6-47.4l-29.5-12.2c11.4-4.3 24.3-4.5 36.4.5 12.2 5.1 21.6 14.6 26.7 26.7 5 12.2 5 25.6-.1 37.7-10.5 25.1-39.4 37-64.6 26.5-11.6-4.8-20.4-13.6-25.4-24.2l28.5 11.8c18.6 7.8 39.9-.9 47.6-19.4zM400 32H48C21.5 32 0 53.5 0 80v160.7l116.6 48.1c12-8.2 26.2-12.1 40.7-11.3l55.4-80.2v-1.1c0-48.2 39.3-87.5 87.6-87.5s87.6 39.3 87.6 87.5c0 49.2-40.9 88.7-89.6 87.5l-79 56.3c1.6 38.5-29.1 68.8-65.7 68.8-31.8 0-58.5-22.7-64.5-52.7L0 319.2V432c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-99.7 222.5c-32.2 0-58.4-26.1-58.4-58.3s26.2-58.3 58.4-58.3 58.4 26.2 58.4 58.3-26.2 58.3-58.4 58.3zm.1-14.6c24.2 0 43.9-19.6 43.9-43.8 0-24.2-19.6-43.8-43.9-43.8-24.2 0-43.9 19.6-43.9 43.8 0 24.2 19.7 43.8 43.9 43.8z" ], + "steam-symbol": [ 448, 512, [], "f3f6", "M395.5 177.5c0 33.8-27.5 61-61 61-33.8 0-61-27.3-61-61s27.3-61 61-61c33.5 0 61 27.2 61 61zm52.5.2c0 63-51 113.8-113.7 113.8L225 371.3c-4 43-40.5 76.8-84.5 76.8-40.5 0-74.7-28.8-83-67L0 358V250.7L97.2 290c15.1-9.2 32.2-13.3 52-11.5l71-101.7c.5-62.3 51.5-112.8 114-112.8C397 64 448 115 448 177.7zM203 363c0-34.7-27.8-62.5-62.5-62.5-4.5 0-9 .5-13.5 1.5l26 10.5c25.5 10.2 38 39 27.7 64.5-10.2 25.5-39.2 38-64.7 27.5-10.2-4-20.5-8.3-30.7-12.2 10.5 19.7 31.2 33.2 55.2 33.2 34.7 0 62.5-27.8 62.5-62.5zm207.5-185.3c0-42-34.3-76.2-76.2-76.2-42.3 0-76.5 34.2-76.5 76.2 0 42.2 34.3 76.2 76.5 76.2 41.9.1 76.2-33.9 76.2-76.2z" ], + "sticker-mule": [ 576, 512, [], "f3f7", "M353.1 509.8c-5.9 2.9-32.1 3.2-36.5-.5-4.1-3-2.2-11.9-1.5-15 2.2-15-2.5-7.9-9.8-11.5-3.1-1.5-4.1-5.5-4.6-10-.5-1.5-1-2.5-1.5-3.5-1.7-10.7 6.8-33.6 8.2-43.4 4.9-23.7-.7-37.2 1.5-46.9 3.7-16.2 4.1-3.5 4.1-29.9-1.4-25.9 3.3-36.9.5-38.9-14.8 0-64.3 10.7-112.2 2-46.1-8.9-59.4-29-65.4-30.9-10.3-4.5-23.2.5-27.3 7-.1.1-35 70.6-39.6 87.8-6.2 20.5-.5 47.4 4.1 66.8 0 .1 4.5 14.6 10.3 19.5 2.1 1.5 5.1 2.5 7.2 4.5 2.8 2.7 9.4 15.2 9.8 16 2.6 4.5 3.6 8-1.5 10.5-3.6 2-9.3 2.5-14.4 2.5-2.6.5-1.5 3.5-3.1 5-2.9 2.8-20.7 6.1-29.9 2.5-2.6-1-5.7-3-6.2-5-1.5-4 2.1-9-1-12.5-4.5-2.9-13.1-2-17-12-2.2-5.4-2.6-7.6-2.6-49.4 0-9.7-5.9-38.7-8.2-46.9-1.5-5.5-1.5-11.5 0-16 .3-.9 4.1-4.6 4.1-13-1-1.5-4.6-.5-5.1-1.5-10.4-80.6-5.9-79-7.7-98.3-1.5-16-10.9-43.9-6.7-64.3.5-2.4 3.4-21 24.2-38.9 31-26.7 48.4-38.3 159-11.5 1.1.4 66.3 21.1 110.7-9 15.5-11.3 28.8-11.3 35.5-16 .1-.1 61.7-52.1 87-65.3 47.2-29.4 69.9-16.7 75.1-18 4.7-1 13.4-25.8 17-25.8 5.5 0 1.6 20.2 3.6 25.9.5 2 3.6 5 6.2 5 2.3 0 1.7-.8 10.3-5 8.4-5.4 14.9-17.6 20.6-17 11.7 1.6-19 41.6-19 46.9 0 2 .2.8 4.6 9.5 2.6 5.5 4.6 13.5 6.2 20 8.3 29.7 5.7 14.6 13.4 36.9 20.2 50.1 20.6 45.2 20.6 52.9 0 7.5-4.1 11-7.2 16.5-1.5 3-4.6 7.5-7.2 8-2.7.7 7-1.5-13.4 2.5-7.2 1-13.4-4.5-14.9-9.5-1.6-4.7 2.8-10.1-11.8-22.9-10.3-10-21.1-11.3-31.9-17-9.8-5.7-11.9 1-18 8-18 22.9-34 46.9-52 69.8-11.8 15-24.2 30.4-33.5 47.4-3.9 6.8-9.5 28.1-10.3 29.9-6.2 17.7-5.5 25.8-16.5 68.3-3.1 10-5.7 21.4-8.7 32.4-2.2 6.8-7.4 49.3-.5 59.4 2.1 3.5 8.7 4.5 11.3 8 .1.1 9.6 18.2 9.3 20 0 6.1-9.4 5.6-11.3 6.5-4.8 2.9-3.8 5.9-6.4 7.4" ], + strava: [ 369, 512, [], "f428", "M301.6 292l-43.9 88.2-44.6-88.2h-67.6l112.2 220 111.5-220h-67.6zM151.4 0L0 292h89.2l62.2-116.1L213.1 292h88.5L151.4 0z" ], + stripe: [ 640, 512, [], "f429", "M640 261.6c0-45.5-22-81.4-64.2-81.4s-67.9 35.9-67.9 81.1c0 53.5 30.3 78.2 73.5 78.2 21.2 0 37.1-4.8 49.2-11.5v-33.4c-12.1 6.1-26 9.8-43.6 9.8-17.3 0-32.5-6.1-34.5-26.9h86.9c.2-2.3.6-11.6.6-15.9m-87.9-16.8c0-20 12.3-28.4 23.4-28.4 10.9 0 22.5 8.4 22.5 28.4h-45.9zm-112.9-64.6c-17.4 0-28.6 8.2-34.8 13.9l-2.3-11H363v204.8l44.4-9.4.1-50.2c6.4 4.7 15.9 11.2 31.4 11.2 31.8 0 60.8-23.2 60.8-79.6.1-51.6-29.3-79.7-60.5-79.7m-10.6 122.5c-10.4 0-16.6-3.8-20.9-8.4l-.3-66c4.6-5.1 11-8.8 21.2-8.8 16.2 0 27.4 18.2 27.4 41.4.1 23.9-10.9 41.8-27.4 41.8M346.4 124v36.2l-44.6 9.5v-36.2l44.6-9.5m-44.5 59.2h44.6v153.2h-44.6V183.2zm-47.8 13.1c10.4-19.1 31.1-15.2 37.1-13.1V224c-5.7-1.8-23.4-4.5-33.9 9.3v103.1H213V183.2h38.4l2.7 13.1m-89-13.1h33.7V221h-33.7v63.2c0 26.2 28 18 33.7 15.7v33.8c-5.9 3.2-16.6 5.9-31.2 5.9-26.3 0-46.1-17-46.1-43.3l.2-142.4 43.3-9.2.1 38.5zM44.9 228.3c0 20 67.9 10.5 67.9 63.4 0 32-25.4 47.8-62.3 47.8-15.3 0-32-3-48.5-10.1v-40c14.9 8.1 33.9 14.2 48.6 14.2 9.9 0 17-2.7 17-10.9 0-21.2-67.5-13.2-67.5-62.4 0-31.4 24-50.2 60-50.2 14.7 0 29.4 2.3 44.1 8.1V230c-13.5-7.3-30.7-11.4-44.2-11.4-9.3.1-15.1 2.8-15.1 9.7" ], + "stripe-s": [ 362, 512, [], "f42a", "M144.3 154.6c0-22.3 18.6-30.9 48.4-30.9 43.4 0 98.5 13.3 141.9 36.7V26.1C287.3 7.2 240.1 0 192.8 0 77.1 0 0 60.4 0 161.4c0 157.9 216.8 132.3 216.8 200.4 0 26.4-22.9 34.9-54.7 34.9-47.2 0-108.2-19.5-156.1-45.5v128.5c53 22.8 106.8 32.4 156 32.4 118.6 0 200.3-51 200.3-153.6 0-170.2-218-139.7-218-203.9" ], + studiovinari: [ 512, 512, [], "f3f8", "M480.3 187.7l4.2 28v28l-25.1 44.1-39.8 78.4-56.1 67.5-79.1 37.8-17.7 24.5-7.7 12-9.6 4s17.3-63.6 19.4-63.6c2.1 0 20.3.7 20.3.7l66.7-38.6-92.5 26.1-55.9 36.8-22.8 28-6.6 1.4 20.8-73.6 6.9-5.5 20.7 12.9 88.3-45.2 56.8-51.5 14.8-68.4-125.4 23.3 15.2-18.2-173.4-53.3 81.9-10.5-166-122.9L133.5 108 32.2 0l252.9 126.6-31.5-38L378 163 234.7 64l18.7 38.4-49.6-18.1L158.3 0l194.6 122L310 66.2l108 96.4 12-8.9-21-16.4 4.2-37.8L451 89.1l29.2 24.7 11.5 4.2-7 6.2 8.5 12-13.1 7.4-10.3 20.2 10.5 23.9z" ], + stumbleupon: [ 512, 512, [], "f1a4", "M502.9 266v69.7c0 62.1-50.3 112.4-112.4 112.4-61.8 0-112.4-49.8-112.4-111.3v-70.2l34.3 16 51.1-15.2V338c0 14.7 12 26.5 26.7 26.5S417 352.7 417 338v-72h85.9zm-224.7-58.2l34.3 16 51.1-15.2V173c0-60.5-51.1-109-112.1-109-60.8 0-112.1 48.2-112.1 108.2v162.4c0 14.9-12 26.7-26.7 26.7S86 349.5 86 334.6V266H0v69.7C0 397.7 50.3 448 112.4 448c61.6 0 112.4-49.5 112.4-110.8V176.9c0-14.7 12-26.7 26.7-26.7s26.7 12 26.7 26.7v30.9z" ], + "stumbleupon-circle": [ 496, 512, [], "f1a3", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 177.5c-9.8 0-17.8 8-17.8 17.8v106.9c0 40.9-33.9 73.9-74.9 73.9-41.4 0-74.9-33.5-74.9-74.9v-46.5h57.3v45.8c0 10 8 17.8 17.8 17.8s17.8-7.9 17.8-17.8V200.1c0-40 34.2-72.1 74.7-72.1 40.7 0 74.7 32.3 74.7 72.6v23.7l-34.1 10.1-22.9-10.7v-20.6c.1-9.6-7.9-17.6-17.7-17.6zm167.6 123.6c0 41.4-33.5 74.9-74.9 74.9-41.2 0-74.9-33.2-74.9-74.2V263l22.9 10.7 34.1-10.1v47.1c0 9.8 8 17.6 17.8 17.6s17.8-7.9 17.8-17.6v-48h57.3c-.1 45.9-.1 46.4-.1 46.4z" ], + superpowers: [ 448, 512, [], "f2dd", "M448 32c-83.3 11-166.8 22-250 33-92 12.5-163.3 86.7-169 180-3.3 55.5 18 109.5 57.8 148.2L0 480c83.3-11 166.5-22 249.8-33 91.8-12.5 163.3-86.8 168.7-179.8 3.5-55.5-18-109.5-57.7-148.2L448 32zm-79.7 232.3c-4.2 79.5-74 139.2-152.8 134.5-79.5-4.7-140.7-71-136.3-151 4.5-79.2 74.3-139.3 153-134.5 79.3 4.7 140.5 71 136.1 151z" ], + supple: [ 640, 512, [], "f3f9", "M640 262.5c0 64.1-109 116.1-243.5 116.1-24.8 0-48.6-1.8-71.1-5 7.7.4 15.5.6 23.4.6 134.5 0 243.5-56.9 243.5-127.1 0-29.4-19.1-56.4-51.2-78 60 21.1 98.9 55.1 98.9 93.4zM47.7 227.9c-.1-70.2 108.8-127.3 243.3-127.6 7.9 0 15.6.2 23.3.5-22.5-3.2-46.3-4.9-71-4.9C108.8 96.3-.1 148.5 0 212.6c.1 38.3 39.1 72.3 99.3 93.3-32.3-21.5-51.5-48.6-51.6-78zm60.2 39.9s10.5 13.2 29.3 13.2c17.9 0 28.4-11.5 28.4-25.1 0-28-40.2-25.1-40.2-39.7 0-5.4 5.3-9.1 12.5-9.1 5.7 0 11.3 2.6 11.3 6.6v3.9h14.2v-7.9c0-12.1-15.4-16.8-25.4-16.8-16.5 0-28.5 10.2-28.5 24.1 0 26.6 40.2 25.4 40.2 39.9 0 6.6-5.8 10.1-12.3 10.1-11.9 0-20.7-10.1-20.7-10.1l-8.8 10.9zm120.8-73.6v54.4c0 11.3-7.1 17.8-17.8 17.8-10.7 0-17.8-6.5-17.8-17.7v-54.5h-15.8v55c0 18.9 13.4 31.9 33.7 31.9 20.1 0 33.4-13 33.4-31.9v-55h-15.7zm34.4 85.4h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.8-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5.1 14.7-14 14.7h-12.6zm57 43h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.7-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5 14.7-14 14.7h-12.6zm57.1 34.8c0 5.8 2.4 8.2 8.2 8.2h37.6c5.8 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-18.6c-1.7 0-2.6-1-2.6-2.6v-61.2c0-5.7-2.4-8.2-8.2-8.2H401v13.4h5.2c1.7 0 2.6 1 2.6 2.6v61.2zm63.4 0c0 5.8 2.4 8.2 8.2 8.2H519c5.7 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-19.7c-1.7 0-2.6-1-2.6-2.6v-20.3h27.7v-13.4H488v-22.4h19.2c1.7 0 2.6 1 2.6 2.6v5.2H524v-13c0-5.7-2.5-8.2-8.2-8.2h-51.6v13.4h7.8v63.9zm58.9-76v5.9h1.6v-5.9h2.7v-1.2h-7v1.2h2.7zm5.7-1.2v7.1h1.5v-5.7l2.3 5.7h1.3l2.3-5.7v5.7h1.5v-7.1h-2.3l-2.1 5.1-2.1-5.1h-2.4z" ], + teamspeak: [ 511, 512, [], "f4f9", "M.82 237.82c2.36-15.52 10.69-27.04 24.88-34.03 3.5-1.85 5.65-3.5 6.37-7.81 6.17-33.41 19.53-63.94 39.37-91.59 2.36-3.19 4.01-5.35 1.03-9.35-3.7-5.35-1.03-10.18 2.98-14.49 28.06-31.87 61.88-55.1 101.98-67.44 95.81-29.4 180.1-9.35 252.37 60.45 6.68 6.37 15.52 12.85 6.99 24.36-1.34 1.85 1.03 3.5 2.16 5.04 20.66 28.06 34.23 59.42 40.4 93.65.82 3.7 2.98 5.04 5.86 6.37 17.37 8.84 25.7 23.34 26.01 42.25 0 17.17 1.85 34.54-1.03 51.71-4.01 24.67-29.19 41.74-53.25 36.7-7.2-1.64-9.35-7.2-9.35-14.19 0-28.06.82-56.44 0-84.6-1.85-75.76-36.18-132.81-102.28-169.41C234.28 4.98 92.11 72.42 67.54 196.91c-6.06 30.42-1.74 48.27-3.7 125.82-.31 7.2-4.32 11.2-12.03 11.51C20.97 335.58 0 316.05 0 285.21v-20.87m221.74 106.81c11.82-4.32 20.05-11.82 22.51-24.36 2.36-12.34-12.03-30.02-32.38-48.73-20.87-19.22-48.22-39.06-63.43-46.57-21.69-12.03-41.74-1.85-46.26 22.72-5.04 26.21 0 51.4 14.49 73.91 10.18 15.52 25.39 22.72 43.38 24.05 11.62.62 52.54 2.16 61.69-1.02m129.83 5.55c36.5 2.81 59.33-28.55 58.39-60.45-2.14-45.17-66.17-16.48-87.79-8.02-73.16 28.14-45.05 54.92-22.2 60.75m149.26-1.33c-2.98-2.36-7.2-1.03-8.33 2.36-8.02 25.39-44.72 112.46-172.08 121.51-149.67 10.49 80.29 43.59 145.36-6.37 22.72-17.37 47.6-35.05 46.57-85.43-.32-10.07-4.84-26.72-11.52-32.07" ], + telegram: [ 496, 512, [], "f2c6", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm121.8 169.9l-40.7 191.8c-3 13.6-11.1 16.9-22.4 10.5l-62-45.7-29.9 28.8c-3.3 3.3-6.1 6.1-12.5 6.1l4.4-63.1 114.9-103.8c5-4.4-1.1-6.9-7.7-2.5l-142 89.4-61.2-19.1c-13.3-4.2-13.6-13.3 2.8-19.7l239.1-92.2c11.1-4 20.8 2.7 17.2 19.5z" ], + "telegram-plane": [ 448, 512, [], "f3fe", "M446.7 98.6l-67.6 318.8c-5.1 22.5-18.4 28.1-37.3 17.5l-103-75.9-49.7 47.8c-5.5 5.5-10.1 10.1-20.7 10.1l7.4-104.9 190.9-172.5c8.3-7.4-1.8-11.5-12.9-4.1L117.8 284 16.2 252.2c-22.1-6.9-22.5-22.1 4.6-32.7L418.2 66.4c18.4-6.9 34.5 4.1 28.5 32.2z" ], + "tencent-weibo": [ 384, 512, [], "f1d5", "M72.3 495.8c1.4 19.9-27.6 22.2-29.7 2.9C31 368.8 73.7 259.2 144 185.5c-15.6-34 9.2-77.1 50.6-77.1 30.3 0 55.1 24.6 55.1 55.1 0 44-49.5 70.8-86.9 45.1-65.7 71.3-101.4 169.8-90.5 287.2zM192 .1C66.1.1-12.3 134.3 43.7 242.4 52.4 259.8 79 246.9 70 229 23.7 136.4 91 29.8 192 29.8c75.4 0 136.9 61.4 136.9 136.9 0 90.8-86.9 153.9-167.7 133.1-19.1-4.1-25.6 24.4-6.6 29.1 110.7 23.2 204-60 204-162.3C358.6 74.7 284 .1 192 .1z" ], + themeco: [ 441, 512, [], "f5c6", "M199.74 12.29c9.74-5.64 25.59-5.73 35.39-.21l188.13 105.95c9.81 5.52 17.76 19.14 17.76 30.38v213.87c0 11.26-7.93 24.89-17.71 30.46L235.09 499.88c-9.78 5.57-25.58 5.48-35.29-.21L17.58 392.95C7.87 387.26 0 373.52 0 362.27V148.41c0-11.26 7.9-24.96 17.63-30.59L199.74 12.29zM123.54 209c-15.69 0-31.39.14-47.08.14v99.87h18.83v-29.39h28.25c48.94 0 48.79-70.62 0-70.62zm137.96 98.73l-30.25-34.1c36.4-7.39 34.26-64.21-10.7-64.49-15.84 0-31.67-.14-47.51-.14v100.01h18.83v-33.38H210l29.1 33.38h22.4v-1.28zm-40.94-81.04c22.98 0 22.9 31.96 0 31.96h-28.68v-31.96h28.68zm-94.07-1.57c20.85 0 20.78 38.24 0 38.24H94.68v-38.23l31.81-.01zm189.65-17.97c-67.4 0-69.86 104.15 0 104.15 68.39-.01 68.33-104.15 0-104.15zm0 17.12c43.43 0 44.1 69.76 0 69.76-44.12 0-43.74-69.76 0-69.76z" ], + themeisle: [ 512, 512, [], "f2b2", "M208 88.286c0-10 6.286-21.714 17.715-21.714 11.142 0 17.714 11.714 17.714 21.714 0 10.285-6.572 21.714-17.714 21.714C214.286 110 208 98.571 208 88.286zm304 160c0 36.001-11.429 102.286-36.286 129.714-22.858 24.858-87.428 61.143-120.857 70.572l-1.143.286v32.571c0 16.286-12.572 30.571-29.143 30.571-10 0-19.429-5.714-24.572-14.286-5.427 8.572-14.856 14.286-24.856 14.286-10 0-19.429-5.714-24.858-14.286-5.142 8.572-14.571 14.286-24.57 14.286-10.286 0-19.429-5.714-24.858-14.286-5.143 8.572-14.571 14.286-24.571 14.286-18.857 0-29.429-15.714-29.429-32.857-16.286 12.285-35.715 19.428-56.571 19.428-22 0-43.429-8.285-60.286-22.857 10.285-.286 20.571-2.286 30.285-5.714-20.857-5.714-39.428-18.857-52-36.286 21.37 4.645 46.209 1.673 67.143-11.143-22-22-56.571-58.857-68.572-87.428C1.143 321.714 0 303.714 0 289.429c0-49.714 20.286-160 86.286-160 10.571 0 18.857 4.858 23.143 14.857a158.792 158.792 0 0 1 12-15.428c2-2.572 5.714-5.429 7.143-8.286 7.999-12.571 11.714-21.142 21.714-34C182.571 45.428 232 17.143 285.143 17.143c6 0 12 .285 17.714 1.143C313.714 6.571 328.857 0 344.572 0c14.571 0 29.714 6 40 16.286.857.858 1.428 2.286 1.428 3.428 0 3.714-10.285 13.429-12.857 16.286 4.286 1.429 15.714 6.858 15.714 12 0 2.857-2.857 5.143-4.571 7.143 31.429 27.714 49.429 67.143 56.286 108 4.286-5.143 10.285-8.572 17.143-8.572 10.571 0 20.857 7.144 28.571 14.001C507.143 187.143 512 221.714 512 248.286zM188 89.428c0 18.286 12.571 37.143 32.286 37.143 19.714 0 32.285-18.857 32.285-37.143 0-18-12.571-36.857-32.285-36.857-19.715 0-32.286 18.858-32.286 36.857zM237.714 194c0-19.714 3.714-39.143 8.571-58.286-52.039 79.534-13.531 184.571 68.858 184.571 21.428 0 42.571-7.714 60-20 2-7.429 3.714-14.857 3.714-22.572 0-14.286-6.286-21.428-20.572-21.428-4.571 0-9.143.857-13.429 1.714-63.343 12.668-107.142 3.669-107.142-63.999zm-41.142 254.858c0-11.143-8.858-20.857-20.286-20.857-11.429 0-20 9.715-20 20.857v32.571c0 11.143 8.571 21.142 20 21.142 11.428 0 20.286-9.715 20.286-21.142v-32.571zm49.143 0c0-11.143-8.572-20.857-20-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20-10 20-21.142v-32.571zm49.713 0c0-11.143-8.857-20.857-20.285-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20.285-9.715 20.285-21.142v-32.571zm49.715 0c0-11.143-8.857-20.857-20.286-20.857-11.428 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.858 21.142 20.286 21.142 11.429 0 20.286-10 20.286-21.142v-32.571zM421.714 286c-30.857 59.142-90.285 102.572-158.571 102.572-96.571 0-160.571-84.572-160.571-176.572 0-16.857 2-33.429 6-49.714-20 33.715-29.714 72.572-29.714 111.429 0 60.286 24.857 121.715 71.429 160.857 5.143-9.714 14.857-16.286 26-16.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.571-14.286 24.858-14.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.857-14.286 24.858-14.286 10 0 19.428 5.714 24.857 14.286 5.143-8.571 14.571-14.286 24.572-14.286 10.857 0 20.857 6.572 25.714 16 43.427-36.286 68.569-92 71.426-148.286zm10.572-99.714c0-53.714-34.571-105.714-92.572-105.714-30.285 0-58.571 15.143-78.857 36.857C240.862 183.812 233.41 254 302.286 254c28.805 0 97.357-28.538 84.286 36.857 28.857-26 45.714-65.714 45.714-104.571z" ], + "trade-federation": [ 496, 512, [], "f513", "M202.45 108.42v81.61H38.94l48.22 61.91h114.73v196.75h64.61V252.96h83.27v-62.69h-83.18V171.1h145.62v-62.68H202.45zm4.86 6h197.77v50.68H259.44v30.93h83.18v50.93h-83.26v195.73h-52.73V245.94H89.86l-39.95-49.91h157.4v-81.61zM247.99 8.8C111.03 8.8 0 119.83 0 256.8s111.03 248 247.99 248S496 393.76 496 256.8 384.96 8.8 247.99 8.8zm.02 13.24c129.66 0 234.76 105.12 234.76 234.78s-105.1 234.76-234.76 234.76S13.23 386.47 13.23 256.81 118.35 22.04 248.01 22.04zm0 7.89c-125.3 0-226.89 101.57-226.89 226.87s101.59 226.89 226.89 226.89S474.88 382.1 474.88 256.8 373.31 29.93 248.01 29.93zm-.02 13.3c117.95 0 213.56 95.62 213.56 213.56s-95.62 213.56-213.56 213.56S34.43 374.75 34.43 256.8 130.04 43.23 247.99 43.23zm-73.32 104.8l15.66 18.05-22.16-9.45-12.33 20.47 2.15-23.99-23.28-5.4 23.48-5.37-2.06-23.81 12.37 20.67 22.01-9.32-15.84 18.15zm-47.14-46.54l8.01 12.4 12.69-5.86-9.32 11.45 9.5 10.25-13.77-5.32-6.82 12.2.81-14.74-13.71-2.71 14.27-3.78-1.66-13.89zm250.77 75.59l11.99 19.56 20.88-9.11-14.9 17.45 15.11 17.04-21.2-8.78-11.54 19.64 1.8-22.87-22.24-4.9 22.31-5.36-2.21-22.67zm-107.05 98.45l13.86-3.22-1.28-14.17 7.35 12.18 13.08-5.59-9.31 10.75 9.36 10.71-13.1-5.54-7.29 12.21 1.22-14.17-13.89-3.16zm-125.43 6.5l23.73-3.87-1.73-24.53 11.01 21.38 22.79-9.22-16.93 17.08 15.81 18.83-21.47-10.82-13.02 20.86 3.66-23.77-23.85-5.94zm63.44-165.66v81.61H54.16l36.72 46.01h117.7v196.75h48.82V245.01h83.27v-47.03H257.4v-34.83h145.73v-46.78H209.26zm10.86 11.2h171.8v24.36H246.88v56.23h82.93v23.94h-82.93v197.42h-26.76V232.1H96.31l-20.09-23.94h143.9v-80.59z" ], + trello: [ 448, 512, [], "f181", "M392 32H56C25.1 32 0 57.1 0 88v336c0 30.9 25.1 56 56 56h336c30.9 0 56-25.1 56-56V88c0-30.9-25.1-56-56-56zM194.9 371.4c0 14.8-12 26.9-26.9 26.9H85.1c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9H168c14.8 0 26.9 12 26.9 26.9v254.3zm194.9-112c0 14.8-12 26.9-26.9 26.9H280c-14.8 0-26.9-12-26.9-26.9V117.1c0-14.8 12-26.9 26.9-26.9h82.9c14.8 0 26.9 12 26.9 26.9v142.3z" ], + tripadvisor: [ 576, 512, [], "f262", "M166.4 280.521c0 13.236-10.73 23.966-23.966 23.966s-23.966-10.73-23.966-23.966 10.73-23.966 23.966-23.966 23.966 10.729 23.966 23.966zm264.962-23.956c-13.23 0-23.956 10.725-23.956 23.956 0 13.23 10.725 23.956 23.956 23.956 13.23 0 23.956-10.725 23.956-23.956-.001-13.231-10.726-23.956-23.956-23.956zm89.388 139.49c-62.667 49.104-153.276 38.109-202.379-24.559l-30.979 46.325-30.683-45.939c-48.277 60.39-135.622 71.891-197.885 26.055-64.058-47.158-77.759-137.316-30.601-201.374A186.762 186.762 0 0 0 0 139.416l90.286-.05a358.48 358.48 0 0 1 197.065-54.03 350.382 350.382 0 0 1 192.181 53.349l96.218.074a185.713 185.713 0 0 0-28.352 57.649c46.793 62.747 34.964 151.37-26.648 199.647zM259.366 281.761c-.007-63.557-51.535-115.075-115.092-115.068C80.717 166.7 29.2 218.228 29.206 281.785c.007 63.557 51.535 115.075 115.092 115.068 63.513-.075 114.984-51.539 115.068-115.052v-.04zm28.591-10.455c5.433-73.44 65.51-130.884 139.12-133.022a339.146 339.146 0 0 0-139.727-27.812 356.31 356.31 0 0 0-140.164 27.253c74.344 1.582 135.299 59.424 140.771 133.581zm251.706-28.767c-21.992-59.634-88.162-90.148-147.795-68.157-59.634 21.992-90.148 88.162-68.157 147.795v.032c22.038 59.607 88.198 90.091 147.827 68.113 59.615-22.004 90.113-88.162 68.125-147.783zm-326.039 37.975v.115c-.057 39.328-31.986 71.163-71.314 71.106-39.328-.057-71.163-31.986-71.106-71.314.057-39.328 31.986-71.163 71.314-71.106 39.259.116 71.042 31.94 71.106 71.199zm-24.512 0v-.084c-.051-25.784-20.994-46.645-46.778-46.594-25.784.051-46.645 20.994-46.594 46.777.051 25.784 20.994 46.645 46.777 46.594 25.726-.113 46.537-20.968 46.595-46.693zm313.423 0v.048c-.02 39.328-31.918 71.194-71.247 71.173s-71.194-31.918-71.173-71.247c.02-39.328 31.918-71.194 71.247-71.173 39.29.066 71.121 31.909 71.173 71.199zm-24.504-.008c-.009-25.784-20.918-46.679-46.702-46.67-25.784.009-46.679 20.918-46.67 46.702.009 25.784 20.918 46.678 46.702 46.67 25.765-.046 46.636-20.928 46.67-46.693v-.009z" ], + tumblr: [ 320, 512, [], "f173", "M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z" ], + "tumblr-square": [ 448, 512, [], "f174", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-82.3 364.2c-8.5 9.1-31.2 19.8-60.9 19.8-75.5 0-91.9-55.5-91.9-87.9v-90h-29.7c-3.4 0-6.2-2.8-6.2-6.2v-42.5c0-4.5 2.8-8.5 7.1-10 38.8-13.7 50.9-47.5 52.7-73.2.5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2h-52.1V321c0 21.4 14.8 33.5 42.5 22.4 3-1.2 5.6-2 8-1.4 2.2.5 3.6 2.1 4.6 4.9l13.8 40.2c1 3.2 2 6.7-.3 9.1z" ], + twitch: [ 448, 512, [], "f1e8", "M40.1 32L10 108.9v314.3h107V480h60.2l56.8-56.8h87l117-117V32H40.1zm357.8 254.1L331 353H224l-56.8 56.8V353H76.9V72.1h321v214zM331 149v116.9h-40.1V149H331zm-107 0v116.9h-40.1V149H224z" ], + twitter: [ 512, 512, [], "f099", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z" ], + "twitter-square": [ 448, 512, [], "f081", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z" ], + typo3: [ 433, 512, [], "f42b", "M330.8 341c-7 2.3-11.6 2.3-18.5 2.3-57.2 0-140.6-198.5-140.6-264.9 0-24.7 5.4-32.4 13.9-39.4-69.5 8.5-149.3 34-176.3 66.4-5.4 7.7-9.3 20.8-9.3 37.1C0 246 106.8 480 184.1 480c36.3 0 97.3-59.5 146.7-139M294.5 32c71.8 0 138.8 11.6 138.8 52.5 0 82.6-52.5 182.3-78.8 182.3-47.9 0-101.7-132.1-101.7-198.5 0-30.9 11.6-36.3 41.7-36.3" ], + uber: [ 448, 512, [], "f402", "M414.1 32H33.9C15.2 32 0 47.2 0 65.9V446c0 18.8 15.2 34 33.9 34H414c18.7 0 33.9-15.2 33.9-33.9V65.9C448 47.2 432.8 32 414.1 32zM237.6 391.1C163 398.6 96.4 344.2 88.9 269.6h94.4V290c0 3.7 3 6.8 6.8 6.8H258c3.7 0 6.8-3 6.8-6.8v-67.9c0-3.7-3-6.8-6.8-6.8h-67.9c-3.7 0-6.8 3-6.8 6.8v20.4H88.9c7-69.4 65.4-122.2 135.1-122.2 69.7 0 128.1 52.8 135.1 122.2 7.5 74.5-46.9 141.1-121.5 148.6z" ], + uikit: [ 448, 512, [], "f403", "M443.9 128v256L218 512 0 384V169.7l87.6 45.1v117l133.5 75.5 135.8-75.5v-151l-101.1-57.6 87.6-53.1L443.9 128zM308.6 49.1L223.8 0l-88.6 54.8 86 47.3 87.4-53z" ], + uniregistry: [ 384, 512, [], "f404", "M281.1 220.1H384v-14.8H281.1v14.8zm0-37.1H384v-12.4H281.1V183zm0 74.2H384v-17.3H281.1v17.3zm-157.7 86.7H8.5c2.6 8.5 5.8 16.8 9.6 24.8h138.3c-12.9-5.7-24.1-14.2-33-24.8m145.7-12.4h109.7c1.8-7.3 3.1-14.7 3.9-22.3H278.3c-2.1 7.9-5.2 15.4-9.2 22.3m-41.5 37.1H367c3.7-8 5.8-16.2 8.5-24.8h-115c-8.8 10.7-20.1 19.2-32.9 24.8M384 32H281.1v2.5H384V32zM192 480c39.5 0 76.2-11.8 106.8-32.2H85.3C115.8 468.2 152.5 480 192 480m89.1-334.2H384V136H281.1v9.8zm0-37.1H384v-7.4H281.1v7.4zm0-37.1H384v-4.9H281.1v4.9zm-178.2 99H0V183h102.9v-12.4zM38.8 405.7h305.3c6.7-8.5 12.6-17.6 17.8-27.2H23c5.2 9.6 9.2 18.7 15.8 27.2m64.1-118.8v-12.4H0v12.4c0 2.5 0 5 .1 7.4h103.1c-.2-2.4-.3-4.9-.3-7.4m178.2 0c0 2.5-.1 5-.4 7.4h103.1c.1-2.5.2-4.9.2-7.4v-12.4H281.1v12.4zm-203 156h227.7c11.8-8.7 22.7-18.6 32.2-29.7H44.9c9.6 11 21.4 21 33.2 29.7m24.8-376.2H0v4.9h102.9v-4.9zm0-34.7H0v2.5h102.9V32zm0 173.3H0v14.8h102.9v-14.8zm0 34.6H0v17.3h102.9v-17.3zm0-103.9H0v9.9h102.9V136zm0-34.7H0v7.4h102.9v-7.4zm2.8 207.9H1.3c.9 7.6 2.2 15 3.9 22.3h109.7c-4-6.9-7.2-14.4-9.2-22.3" ], + untappd: [ 640, 512, [], "f405", "M401.3 49.9c-79.8 160.1-84.6 152.5-87.9 173.2l-5.2 32.8c-1.9 12-6.6 23.5-13.7 33.4L145.6 497.1c-7.6 10.6-20.4 16.2-33.4 14.6-40.3-5-77.8-32.2-95.3-68.5-5.7-11.8-4.5-25.8 3.1-36.4l148.9-207.9c7.1-9.9 16.4-18 27.2-23.7l29.3-15.5c18.5-9.8 9.7-11.9 135.6-138.9 1-4.8 1-7.3 3.6-8 3-.7 6.6-1 6.3-4.6l-.4-4.6c-.2-1.9 1.3-3.6 3.2-3.6 4.5-.1 13.2 1.2 25.6 10 12.3 8.9 16.4 16.8 17.7 21.1.6 1.8-.6 3.7-2.4 4.2l-4.5 1.1c-3.4.9-2.5 4.4-2.3 7.4.1 2.8-2.3 3.6-6.5 6.1zM230.1 36.4c3.4.9 2.5 4.4 2.3 7.4-.2 2.7 2.1 3.5 6.4 6 7.9 15.9 15.3 30.5 22.2 44 .7 1.3 2.3 1.5 3.3.5 11.2-12 24.6-26.2 40.5-42.6 1.3-1.4 1.4-3.5.1-4.9-8-8.2-16.5-16.9-25.6-26.1-1-4.7-1-7.3-3.6-8-3-.8-6.6-1-6.3-4.6.3-3.3 1.4-8.1-2.8-8.2-4.5-.1-13.2 1.1-25.6 10-12.3 8.9-16.4 16.8-17.7 21.1-1.4 4.2 3.6 4.6 6.8 5.4zM620 406.7L471.2 198.8c-13.2-18.5-26.6-23.4-56.4-39.1-11.2-5.9-14.2-10.9-30.5-28.9-1-1.1-2.9-.9-3.6.5-46.3 88.8-47.1 82.8-49 94.8-1.7 10.7-1.3 20 .3 29.8 1.9 12 6.6 23.5 13.7 33.4l148.9 207.9c7.6 10.6 20.2 16.2 33.1 14.7 40.3-4.9 78-32 95.7-68.6 5.4-11.9 4.3-25.9-3.4-36.6z" ], + usb: [ 640, 512, [], "f287", "M641.5 256c0 3.1-1.7 6.1-4.5 7.5L547.9 317c-1.4.8-2.8 1.4-4.5 1.4-1.4 0-3.1-.3-4.5-1.1-2.8-1.7-4.5-4.5-4.5-7.8v-35.6H295.7c25.3 39.6 40.5 106.9 69.6 106.9H392V354c0-5 3.9-8.9 8.9-8.9H490c5 0 8.9 3.9 8.9 8.9v89.1c0 5-3.9 8.9-8.9 8.9h-89.1c-5 0-8.9-3.9-8.9-8.9v-26.7h-26.7c-75.4 0-81.1-142.5-124.7-142.5H140.3c-8.1 30.6-35.9 53.5-69 53.5C32 327.3 0 295.3 0 256s32-71.3 71.3-71.3c33.1 0 61 22.8 69 53.5 39.1 0 43.9 9.5 74.6-60.4C255 88.7 273 95.7 323.8 95.7c7.5-20.9 27-35.6 50.4-35.6 29.5 0 53.5 23.9 53.5 53.5s-23.9 53.5-53.5 53.5c-23.4 0-42.9-14.8-50.4-35.6H294c-29.1 0-44.3 67.4-69.6 106.9h310.1v-35.6c0-3.3 1.7-6.1 4.5-7.8 2.8-1.7 6.4-1.4 8.9.3l89.1 53.5c2.8 1.1 4.5 4.1 4.5 7.2z" ], + ussunnah: [ 512, 512, [], "f407", "M156.8 285.1l5.7 14.4h-8.2c-1.3-3.2-3.1-7.7-3.8-9.5-2.5-6.3-1.1-8.4 0-10 1.9-2.7 3.2-4.4 3.6-5.2 0 2.2.8 5.7 2.7 10.3zm297.3 18.8c-2.1 13.8-5.7 27.1-10.5 39.7l43 23.4-44.8-18.8c-5.3 13.2-12 25.6-19.9 37.2l34.2 30.2-36.8-26.4c-8.4 11.8-18 22.6-28.7 32.3l24.9 34.7-28.1-31.8c-11 9.6-23.1 18-36.1 25.1l15.7 37.2-19.3-35.3c-13.1 6.8-27 12.1-41.6 15.9l6.7 38.4-10.5-37.4c-14.3 3.4-29.2 5.3-44.5 5.4L256 512l-1.9-38.4c-15.3-.1-30.2-2-44.5-5.3L199 505.6l6.7-38.2c-14.6-3.7-28.6-9.1-41.7-15.8l-19.2 35.1 15.6-37c-13-7-25.2-15.4-36.2-25.1l-27.9 31.6 24.7-34.4c-10.7-9.7-20.4-20.5-28.8-32.3l-36.5 26.2 33.9-29.9c-7.9-11.6-14.6-24.1-20-37.3l-44.4 18.7L67.8 344c-4.8-12.7-8.4-26.1-10.5-39.9l-51 9 50.3-14.2c-1.1-8.5-1.7-17.1-1.7-25.9 0-4.7.2-9.4.5-14.1L0 256l56-2.8c1.3-13.1 3.8-25.8 7.5-38.1L6.4 199l58.9 10.4c4-12 9.1-23.5 15.2-34.4l-55.1-30 58.3 24.6C90 159 97.2 149.2 105.3 140L55.8 96.4l53.9 38.7c8.1-8.6 17-16.5 26.6-23.6l-40-55.6 45.6 51.6c9.5-6.6 19.7-12.3 30.3-17.2l-27.3-64.9 33.8 62.1c10.5-4.4 21.4-7.9 32.7-10.4L199 6.4l19.5 69.2c11-2.1 22.3-3.2 33.8-3.4L256 0l3.6 72.2c11.5.2 22.8 1.4 33.8 3.5L313 6.4l-12.4 70.7c11.3 2.6 22.2 6.1 32.6 10.5l33.9-62.2-27.4 65.1c10.6 4.9 20.7 10.7 30.2 17.2l45.8-51.8-40.1 55.9c9.5 7.1 18.4 15 26.5 23.6l54.2-38.9-49.7 43.9c8 9.1 15.2 18.9 21.5 29.4l58.7-24.7-55.5 30.2c6.1 10.9 11.1 22.3 15.1 34.3l59.3-10.4-57.5 16.2c3.7 12.2 6.2 24.9 7.5 37.9L512 256l-56 2.8c.3 4.6.5 9.3.5 14.1 0 8.7-.6 17.3-1.6 25.8l50.7 14.3-51.5-9.1zm-21.8-31c0-97.5-79-176.5-176.5-176.5s-176.5 79-176.5 176.5 79 176.5 176.5 176.5 176.5-79 176.5-176.5zm-24 0c0 84.3-68.3 152.6-152.6 152.6s-152.6-68.3-152.6-152.6 68.3-152.6 152.6-152.6 152.6 68.3 152.6 152.6zM195 241c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-40.7-19c0 2.1 1.3 3.8 3.6 5.1 3.5 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-19 0c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.4 6.8-9.6 10.9-9.6 12.6zm204.9 87.9c-8.4-3-8.7-6.8-8.7-15.6V182c-8.2 12.5-14.2 18.6-18 18.6 6.3 14.4 9.5 23.9 9.5 28.3v64.3c0 2.2-2.2 6.5-4.7 6.5h-18c-2.8-7.5-10.2-26.9-15.3-40.3-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3 2.6 6.7 6.4 16.5 7.9 20.2h-9.2c-3.9-10.4-9.6-25.4-11.8-31.1-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3.8 2 2.8 7.3 4.3 10.9H256c-1.5-4.1-5.6-14.6-8.4-22-2 2.5-7.2 9.2-10.7 13.7 2.5 1.6 4.3 3.6 5.2 6.3.2.6.5 1.4.6 1.7H225c-4.6-13.9-11.4-27.7-11.4-34.1 0-2.2.3-5.1 1.1-8.2-8.8 10.8-14 15.9-14 25 0 7.5 10.4 28.3 10.4 33.3 0 1.7-.5 3.3-1.4 4.9-9.6-12.7-15.5-20.7-18.8-20.7h-12l-11.2-28c-3.8-9.6-5.7-16-5.7-18.8 0-3.8.5-7.7 1.7-12.2-1 1.3-3.7 4.7-5.5 7.1-.8-2.1-3.1-7.7-4.6-11.5-2.1 2.5-7.5 9.1-11.2 13.6.9 2.3 3.3 8.1 4.9 12.2-2.5 3.3-9.1 11.8-13.6 17.7-4 5.3-5.8 13.3-2.7 21.8 2.5 6.7 2 7.9-1.7 14.1H191c5.5 0 14.3 14 15.5 22 13.2-16 15.4-19.6 16.8-21.6h107c3.9 0 7.2-1.9 9.9-5.8zm20.1-26.6V181.7c-9 12.5-15.9 18.6-20.7 18.6 7.1 14.4 10.7 23.9 10.7 28.3v66.3c0 17.5 8.6 20.4 24 20.4 8.1 0 12.5-.8 13.7-2.7-4.3-1.6-7.6-2.5-9.9-3.3-8.1-3.2-17.8-7.4-17.8-26z" ], + vaadin: [ 448, 512, [], "f408", "M224.5 140.7c1.5-17.6 4.9-52.7 49.8-52.7h98.6c20.7 0 32.1-7.8 32.1-21.6V54.1c0-12.2 9.3-22.1 21.5-22.1S448 41.9 448 54.1v36.5c0 42.9-21.5 62-66.8 62H280.7c-30.1 0-33 14.7-33 27.1 0 1.3-.1 2.5-.2 3.7-.7 12.3-10.9 22.2-23.4 22.2s-22.7-9.8-23.4-22.2c-.1-1.2-.2-2.4-.2-3.7 0-12.3-3-27.1-33-27.1H66.8c-45.3 0-66.8-19.1-66.8-62V54.1C0 41.9 9.4 32 21.6 32s21.5 9.9 21.5 22.1v12.3C43.1 80.2 54.5 88 75.2 88h98.6c44.8 0 48.3 35.1 49.8 52.7h.9zM224 456c11.5 0 21.4-7 25.7-16.3 1.1-1.8 97.1-169.6 98.2-171.4 11.9-19.6-3.2-44.3-27.2-44.3-13.9 0-23.3 6.4-29.8 20.3L224 362l-66.9-117.7c-6.4-13.9-15.9-20.3-29.8-20.3-24 0-39.1 24.6-27.2 44.3 1.1 1.9 97.1 169.6 98.2 171.4 4.3 9.3 14.2 16.3 25.7 16.3z" ], + viacoin: [ 384, 512, [], "f237", "M384 32h-64l-80.7 192h-94.5L64 32H0l48 112H0v48h68.5l13.8 32H0v48h102.8L192 480l89.2-208H384v-48h-82.3l13.8-32H384v-48h-48l48-112zM192 336l-27-64h54l-27 64z" ], + viadeo: [ 448, 512, [], "f2a9", "M276.2 150.5v.7C258.3 98.6 233.6 47.8 205.4 0c43.3 29.2 67 100 70.8 150.5zm32.7 121.7c7.6 18.2 11 37.5 11 57 0 77.7-57.8 141-137.8 139.4l3.8-.3c74.2-46.7 109.3-118.6 109.3-205.1 0-38.1-6.5-75.9-18.9-112 1 11.7 1 23.7 1 35.4 0 91.8-18.1 241.6-116.6 280C95 455.2 49.4 398 49.4 329.2c0-75.6 57.4-142.3 135.4-142.3 16.8 0 33.7 3.1 49.1 9.6 1.7-15.1 6.5-29.9 13.4-43.3-19.9-7.2-41.2-10.7-62.5-10.7-161.5 0-238.7 195.9-129.9 313.7 67.9 74.6 192 73.9 259.8 0 56.6-61.3 60.9-142.4 36.4-201-12.7 8-27.1 13.9-42.2 17zM418.1 11.7c-31 66.5-81.3 47.2-115.8 80.1-12.4 12-20.6 34-20.6 50.5 0 14.1 4.5 27.1 12 38.8 47.4-11 98.3-46 118.2-90.7-.7 5.5-4.8 14.4-7.2 19.2-20.3 35.7-64.6 65.6-99.7 84.9 14.8 14.4 33.7 25.8 55 25.8 79 0 110.1-134.6 58.1-208.6z" ], + "viadeo-square": [ 448, 512, [], "f2aa", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM280.7 381.2c-42.4 46.2-120 46.6-162.4 0-68-73.6-19.8-196.1 81.2-196.1 13.3 0 26.6 2.1 39.1 6.7-4.3 8.4-7.3 17.6-8.4 27.1-9.7-4.1-20.2-6-30.7-6-48.8 0-84.6 41.7-84.6 88.9 0 43 28.5 78.7 69.5 85.9 61.5-24 72.9-117.6 72.9-175 0-7.3 0-14.8-.6-22.1-11.2-32.9-26.6-64.6-44.2-94.5 27.1 18.3 41.9 62.5 44.2 94.1v.4c7.7 22.5 11.8 46.2 11.8 70 0 54.1-21.9 99-68.3 128.2l-2.4.2c50 1 86.2-38.6 86.2-87.2 0-12.2-2.1-24.3-6.9-35.7 9.5-1.9 18.5-5.6 26.4-10.5 15.3 36.6 12.6 87.3-22.8 125.6zM309 233.7c-13.3 0-25.1-7.1-34.4-16.1 21.9-12 49.6-30.7 62.3-53 1.5-3 4.1-8.6 4.5-12-12.5 27.9-44.2 49.8-73.9 56.7-4.7-7.3-7.5-15.5-7.5-24.3 0-10.3 5.2-24.1 12.9-31.6 21.6-20.5 53-8.5 72.4-50 32.5 46.2 13.1 130.3-36.3 130.3z" ], + viber: [ 512, 512, [], "f409", "M444 49.9C431.3 38.2 379.9.9 265.3.4c0 0-135.1-8.1-200.9 52.3C27.8 89.3 14.9 143 13.5 209.5c-1.4 66.5-3.1 191.1 117 224.9h.1l-.1 51.6s-.8 20.9 13 25.1c16.6 5.2 26.4-10.7 42.3-27.8 8.7-9.4 20.7-23.2 29.8-33.7 82.2 6.9 145.3-8.9 152.5-11.2 16.6-5.4 110.5-17.4 125.7-142 15.8-128.6-7.6-209.8-49.8-246.5zM457.9 287c-12.9 104-89 110.6-103 115.1-6 1.9-61.5 15.7-131.2 11.2 0 0-52 62.7-68.2 79-5.3 5.3-11.1 4.8-11-5.7 0-6.9.4-85.7.4-85.7-.1 0-.1 0 0 0-101.8-28.2-95.8-134.3-94.7-189.8 1.1-55.5 11.6-101 42.6-131.6 55.7-50.5 170.4-43 170.4-43 96.9.4 143.3 29.6 154.1 39.4 35.7 30.6 53.9 103.8 40.6 211.1zm-139-80.8c.4 8.6-12.5 9.2-12.9.6-1.1-22-11.4-32.7-32.6-33.9-8.6-.5-7.8-13.4.7-12.9 27.9 1.5 43.4 17.5 44.8 46.2zm20.3 11.3c1-42.4-25.5-75.6-75.8-79.3-8.5-.6-7.6-13.5.9-12.9 58 4.2 88.9 44.1 87.8 92.5-.1 8.6-13.1 8.2-12.9-.3zm47 13.4c.1 8.6-12.9 8.7-12.9.1-.6-81.5-54.9-125.9-120.8-126.4-8.5-.1-8.5-12.9 0-12.9 73.7.5 133 51.4 133.7 139.2zM374.9 329v.2c-10.8 19-31 40-51.8 33.3l-.2-.3c-21.1-5.9-70.8-31.5-102.2-56.5-16.2-12.8-31-27.9-42.4-42.4-10.3-12.9-20.7-28.2-30.8-46.6-21.3-38.5-26-55.7-26-55.7-6.7-20.8 14.2-41 33.3-51.8h.2c9.2-4.8 18-3.2 23.9 3.9 0 0 12.4 14.8 17.7 22.1 5 6.8 11.7 17.7 15.2 23.8 6.1 10.9 2.3 22-3.7 26.6l-12 9.6c-6.1 4.9-5.3 14-5.3 14s17.8 67.3 84.3 84.3c0 0 9.1.8 14-5.3l9.6-12c4.6-6 15.7-9.8 26.6-3.7 14.7 8.3 33.4 21.2 45.8 32.9 7 5.7 8.6 14.4 3.8 23.6z" ], + vimeo: [ 448, 512, [], "f40a", "M403.2 32H44.8C20.1 32 0 52.1 0 76.8v358.4C0 459.9 20.1 480 44.8 480h358.4c24.7 0 44.8-20.1 44.8-44.8V76.8c0-24.7-20.1-44.8-44.8-44.8zM377 180.8c-1.4 31.5-23.4 74.7-66 129.4-44 57.2-81.3 85.8-111.7 85.8-18.9 0-34.8-17.4-47.9-52.3-25.5-93.3-36.4-148-57.4-148-2.4 0-10.9 5.1-25.4 15.2l-15.2-19.6c37.3-32.8 72.9-69.2 95.2-71.2 25.2-2.4 40.7 14.8 46.5 51.7 20.7 131.2 29.9 151 67.6 91.6 13.5-21.4 20.8-37.7 21.8-48.9 3.5-33.2-25.9-30.9-45.8-22.4 15.9-52.1 46.3-77.4 91.2-76 33.3.9 49 22.5 47.1 64.7z" ], + "vimeo-square": [ 448, 512, [], "f194", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16.2 149.6c-1.4 31.1-23.2 73.8-65.3 127.9-43.5 56.5-80.3 84.8-110.4 84.8-18.7 0-34.4-17.2-47.3-51.6-25.2-92.3-35.9-146.4-56.7-146.4-2.4 0-10.8 5-25.1 15.1L64 192c36.9-32.4 72.1-68.4 94.1-70.4 24.9-2.4 40.2 14.6 46 51.1 20.5 129.6 29.6 149.2 66.8 90.5 13.4-21.2 20.6-37.2 21.5-48.3 3.4-32.8-25.6-30.6-45.2-22.2 15.7-51.5 45.8-76.5 90.1-75.1 32.9 1 48.4 22.4 46.5 64z" ], + "vimeo-v": [ 448, 512, [], "f27d", "M447.8 153.6c-2 43.6-32.4 103.3-91.4 179.1-60.9 79.2-112.4 118.8-154.6 118.8-26.1 0-48.2-24.1-66.3-72.3C100.3 250 85.3 174.3 56.2 174.3c-3.4 0-15.1 7.1-35.2 21.1L0 168.2c51.6-45.3 100.9-95.7 131.8-98.5 34.9-3.4 56.3 20.5 64.4 71.5 28.7 181.5 41.4 208.9 93.6 126.7 18.7-29.6 28.8-52.1 30.2-67.6 4.8-45.9-35.8-42.8-63.3-31 22-72.1 64.1-107.1 126.2-105.1 45.8 1.2 67.5 31.1 64.9 89.4z" ], + vine: [ 384, 512, [], "f1ca", "M384 254.7v52.1c-18.4 4.2-36.9 6.1-52.1 6.1-36.9 77.4-103 143.8-125.1 156.2-14 7.9-27.1 8.4-42.7-.8C137 452 34.2 367.7 0 102.7h74.5C93.2 261.8 139 343.4 189.3 404.5c27.9-27.9 54.8-65.1 75.6-106.9-49.8-25.3-80.1-80.9-80.1-145.6 0-65.6 37.7-115.1 102.2-115.1 114.9 0 106.2 127.9 81.6 181.5 0 0-46.4 9.2-63.5-20.5 3.4-11.3 8.2-30.8 8.2-48.5 0-31.3-11.3-46.6-28.4-46.6-18.2 0-30.8 17.1-30.8 50 .1 79.2 59.4 118.7 129.9 101.9z" ], + vk: [ 576, 512, [], "f189", "M545 117.7c3.7-12.5 0-21.7-17.8-21.7h-58.9c-15 0-21.9 7.9-25.6 16.7 0 0-30 73.1-72.4 120.5-13.7 13.7-20 18.1-27.5 18.1-3.7 0-9.4-4.4-9.4-16.9V117.7c0-15-4.2-21.7-16.6-21.7h-92.6c-9.4 0-15 7-15 13.5 0 14.2 21.2 17.5 23.4 57.5v86.8c0 19-3.4 22.5-10.9 22.5-20 0-68.6-73.4-97.4-157.4-5.8-16.3-11.5-22.9-26.6-22.9H38.8c-16.8 0-20.2 7.9-20.2 16.7 0 15.6 20 93.1 93.1 195.5C160.4 378.1 229 416 291.4 416c37.5 0 42.1-8.4 42.1-22.9 0-66.8-3.4-73.1 15.4-73.1 8.7 0 23.7 4.4 58.7 38.1 40 40 46.6 57.9 69 57.9h58.9c16.8 0 25.3-8.4 20.4-25-11.2-34.9-86.9-106.7-90.3-111.5-8.7-11.2-6.2-16.2 0-26.2.1-.1 72-101.3 79.4-135.6z" ], + vnv: [ 640, 512, [], "f40b", "M104.9 352c-34.1 0-46.4-30.4-46.4-30.4L2.6 210.1S-7.8 192 13 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.7-74.5c5.6-9.5 8.4-18.1 18.8-18.1h32.8c20.8 0 10.4 18.1 10.4 18.1l-55.8 111.5S174.2 352 140 352h-35.1zm395 0c-34.1 0-46.4-30.4-46.4-30.4l-55.9-111.5S387.2 192 408 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.8-74.5c5.6-9.5 8.4-18.1 18.8-18.1H627c20.8 0 10.4 18.1 10.4 18.1l-55.9 111.5S569.3 352 535.1 352h-35.2zM337.6 192c34.1 0 46.4 30.4 46.4 30.4l55.9 111.5s10.4 18.1-10.4 18.1h-32.8c-10.4 0-13.2-8.7-18.8-18.1l-36.7-74.5s-5.2-13.1-21.1-13.1c-15.9 0-21.1 13.1-21.1 13.1l-36.7 74.5c-5.6 9.4-8.4 18.1-18.8 18.1h-32.9c-20.8 0-10.4-18.1-10.4-18.1l55.9-111.5s12.2-30.4 46.4-30.4h35.1z" ], + vuejs: [ 448, 512, [], "f41f", "M356.9 64.3H280l-56 88.6-48-88.6H0L224 448 448 64.3h-91.1zm-301.2 32h53.8L224 294.5 338.4 96.3h53.8L224 384.5 55.7 96.3z" ], + weebly: [ 512, 512, [], "f5cc", "M425.09 65.83c-39.88 0-73.28 25.73-83.66 64.33-18.16-58.06-65.5-64.33-84.95-64.33-19.78 0-66.8 6.28-85.28 64.33-10.38-38.6-43.45-64.33-83.66-64.33C38.59 65.83 0 99.72 0 143.03c0 28.96 4.18 33.27 77.17 233.48 22.37 60.57 67.77 69.35 92.74 69.35 39.23 0 70.04-19.46 85.93-53.98 15.89 34.83 46.69 54.29 85.93 54.29 24.97 0 70.36-9.1 92.74-69.67 76.55-208.65 77.5-205.58 77.5-227.2.63-48.32-36.01-83.47-86.92-83.47zm26.34 114.81l-65.57 176.44c-7.92 21.49-21.22 37.22-46.24 37.22-23.44 0-37.38-12.41-44.03-33.9l-39.28-117.42h-.95L216.08 360.4c-6.96 21.5-20.9 33.6-44.02 33.6-25.02 0-38.33-15.74-46.24-37.22L60.88 181.55c-5.38-14.83-7.92-23.91-7.92-34.5 0-16.34 15.84-29.36 38.33-29.36 18.69 0 31.99 11.8 36.11 29.05l44.03 139.82h.95l44.66-136.79c6.02-19.67 16.47-32.08 38.96-32.08s32.94 12.11 38.96 32.08l44.66 136.79h.95l44.03-139.82c4.12-17.25 17.42-29.05 36.11-29.05 22.17 0 38.33 13.32 38.33 35.71-.32 7.87-4.12 16.04-7.61 27.24z" ], + weibo: [ 512, 512, [], "f18a", "M407 177.6c7.6-24-13.4-46.8-37.4-41.7-22 4.8-28.8-28.1-7.1-32.8 50.1-10.9 92.3 37.1 76.5 84.8-6.8 21.2-38.8 10.8-32-10.3zM214.8 446.7C108.5 446.7 0 395.3 0 310.4c0-44.3 28-95.4 76.3-143.7C176 67 279.5 65.8 249.9 161c-4 13.1 12.3 5.7 12.3 6 79.5-33.6 140.5-16.8 114 51.4-3.7 9.4 1.1 10.9 8.3 13.1 135.7 42.3 34.8 215.2-169.7 215.2zm143.7-146.3c-5.4-55.7-78.5-94-163.4-85.7-84.8 8.6-148.8 60.3-143.4 116s78.5 94 163.4 85.7c84.8-8.6 148.8-60.3 143.4-116zM347.9 35.1c-25.9 5.6-16.8 43.7 8.3 38.3 72.3-15.2 134.8 52.8 111.7 124-7.4 24.2 29.1 37 37.4 12 31.9-99.8-55.1-195.9-157.4-174.3zm-78.5 311c-17.1 38.8-66.8 60-109.1 46.3-40.8-13.1-58-53.4-40.3-89.7 17.7-35.4 63.1-55.4 103.4-45.1 42 10.8 63.1 50.2 46 88.5zm-86.3-30c-12.9-5.4-30 .3-38 12.9-8.3 12.9-4.3 28 8.6 34 13.1 6 30.8.3 39.1-12.9 8-13.1 3.7-28.3-9.7-34zm32.6-13.4c-5.1-1.7-11.4.6-14.3 5.4-2.9 5.1-1.4 10.6 3.7 12.9 5.1 2 11.7-.3 14.6-5.4 2.8-5.2 1.1-10.9-4-12.9z" ], + weixin: [ 576, 512, [], "f1d7", "M385.2 167.6c6.4 0 12.6.3 18.8 1.1C387.4 90.3 303.3 32 207.7 32 100.5 32 13 104.8 13 197.4c0 53.4 29.3 97.5 77.9 131.6l-19.3 58.6 68-34.1c24.4 4.8 43.8 9.7 68.2 9.7 6.2 0 12.1-.3 18.3-.8-4-12.9-6.2-26.6-6.2-40.8-.1-84.9 72.9-154 165.3-154zm-104.5-52.9c14.5 0 24.2 9.7 24.2 24.4 0 14.5-9.7 24.2-24.2 24.2-14.8 0-29.3-9.7-29.3-24.2.1-14.7 14.6-24.4 29.3-24.4zm-136.4 48.6c-14.5 0-29.3-9.7-29.3-24.2 0-14.8 14.8-24.4 29.3-24.4 14.8 0 24.4 9.7 24.4 24.4 0 14.6-9.6 24.2-24.4 24.2zM563 319.4c0-77.9-77.9-141.3-165.4-141.3-92.7 0-165.4 63.4-165.4 141.3S305 460.7 397.6 460.7c19.3 0 38.9-5.1 58.6-9.9l53.4 29.3-14.8-48.6C534 402.1 563 363.2 563 319.4zm-219.1-24.5c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.8 0 24.4 9.7 24.4 19.3 0 10-9.7 19.6-24.4 19.6zm107.1 0c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.5 0 24.4 9.7 24.4 19.3.1 10-9.9 19.6-24.4 19.6z" ], + whatsapp: [ 448, 512, [], "f232", "M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z" ], + "whatsapp-square": [ 448, 512, [], "f40c", "M224 122.8c-72.7 0-131.8 59.1-131.9 131.8 0 24.9 7 49.2 20.2 70.1l3.1 5-13.3 48.6 49.9-13.1 4.8 2.9c20.2 12 43.4 18.4 67.1 18.4h.1c72.6 0 133.3-59.1 133.3-131.8 0-35.2-15.2-68.3-40.1-93.2-25-25-58-38.7-93.2-38.7zm77.5 188.4c-3.3 9.3-19.1 17.7-26.7 18.8-12.6 1.9-22.4.9-47.5-9.9-39.7-17.2-65.7-57.2-67.7-59.8-2-2.6-16.2-21.5-16.2-41s10.2-29.1 13.9-33.1c3.6-4 7.9-5 10.6-5 2.6 0 5.3 0 7.6.1 2.4.1 5.7-.9 8.9 6.8 3.3 7.9 11.2 27.4 12.2 29.4s1.7 4.3.3 6.9c-7.6 15.2-15.7 14.6-11.6 21.6 15.3 26.3 30.6 35.4 53.9 47.1 4 2 6.3 1.7 8.6-1 2.3-2.6 9.9-11.6 12.5-15.5 2.6-4 5.3-3.3 8.9-2 3.6 1.3 23.1 10.9 27.1 12.9s6.6 3 7.6 4.6c.9 1.9.9 9.9-2.4 19.1zM400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM223.9 413.2c-26.6 0-52.7-6.7-75.8-19.3L64 416l22.5-82.2c-13.9-24-21.2-51.3-21.2-79.3C65.4 167.1 136.5 96 223.9 96c42.4 0 82.2 16.5 112.2 46.5 29.9 30 47.9 69.8 47.9 112.2 0 87.4-72.7 158.5-160.1 158.5z" ], + whmcs: [ 448, 512, [], "f40d", "M448 161v-21.3l-28.5-8.8-2.2-10.4 20.1-20.7L427 80.4l-29 7.5-7.2-7.5 7.5-28.2-19.1-11.6-21.3 21-10.7-3.2-7-26.4h-22.6l-6.2 26.4-12.1 3.2-19.7-21-19.4 11 8.1 27.7-8.1 8.4-28.5-7.5-11 19.1 20.7 21-2.9 10.4-28.5 7.8-.3 21.7 28.8 7.5 2.4 12.1-20.1 19.9 10.4 18.5 29.6-7.5 7.2 8.6-8.1 26.9 19.9 11.6 19.4-20.4 11.6 2.9 6.7 28.5 22.6.3 6.7-28.8 11.6-3.5 20.7 21.6 20.4-12.1-8.8-28 7.8-8.1 28.8 8.8 10.3-20.1-20.9-18.8 2.2-12.1 29.1-7zm-119.2 45.2c-31.3 0-56.8-25.4-56.8-56.8s25.4-56.8 56.8-56.8 56.8 25.4 56.8 56.8c0 31.5-25.4 56.8-56.8 56.8zm72.3 16.4l46.9 14.5V277l-55.1 13.4-4.1 22.7 38.9 35.3-19.2 37.9-54-16.7-14.6 15.2 16.7 52.5-38.3 22.7-38.9-40.5-21.7 6.6-12.6 54-42.4-.5-12.6-53.6-21.7-5.6-36.4 38.4-37.4-21.7 15.2-50.5-13.7-16.1-55.5 14.1-19.7-34.8 37.9-37.4-4.8-22.8-54-14.1.5-40.9L54 219.9l5.7-19.7-38.9-39.4L41.5 125l53.6 14.1 15.2-15.7-15.2-52 36.4-20.7 36.8 39.4L191 84l11.6-52H245l11.6 45.9L234 72l-6.3-1.7-3.3 5.7-11 19.1-3.3 5.6 4.6 4.6 17.2 17.4-.3 1-23.8 6.5-6.2 1.7-.1 6.4-.2 12.9C153.8 161.6 118 204 118 254.7c0 58.3 47.3 105.7 105.7 105.7 50.5 0 92.7-35.4 103.2-82.8l13.2.2 6.9.1 1.6-6.7 5.6-24 1.9-.6 17.1 17.8 4.7 4.9 5.8-3.4 20.4-12.1 5.8-3.5-2-6.5-6.8-21.2z" ], + "wikipedia-w": [ 640, 512, [], "f266", "M640 51.2l-.3 12.2c-28.1.8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3.3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4.2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5.3v13.1c-19.4.6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4.3-3.6 0-10.3.3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5.8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1.2.5z" ], + windows: [ 448, 512, [], "f17a", "M0 93.7l183.6-25.3v177.4H0V93.7zm0 324.6l183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z" ], + wix: [ 640, 512, [], "f5cf", "M393.38 131.69c0 13.03 2.08 32.69-28.68 43.83-9.52 3.45-15.95 9.66-15.95 9.66 0-31 4.72-42.22 17.4-48.86 9.75-5.11 27.23-4.63 27.23-4.63zm-115.8 35.54l-34.24 132.66-28.48-108.57c-7.69-31.99-20.81-48.53-48.43-48.53-27.37 0-40.66 16.18-48.43 48.53L89.52 299.89 55.28 167.23C49.73 140.51 23.86 128.96 0 131.96l65.57 247.93s21.63 1.56 32.46-3.96c14.22-7.25 20.98-12.84 29.59-46.57 7.67-30.07 29.11-118.41 31.12-124.7 4.76-14.94 11.09-13.81 15.4 0 1.97 6.3 23.45 94.63 31.12 124.7 8.6 33.73 15.37 39.32 29.59 46.57 10.82 5.52 32.46 3.96 32.46 3.96l65.57-247.93c-24.42-3.07-49.82 8.93-55.3 35.27zm115.78 5.21s-4.1 6.34-13.46 11.57c-6.01 3.36-11.78 5.64-17.97 8.61-15.14 7.26-13.18 13.95-13.18 35.2v152.07s16.55 2.09 27.37-3.43c13.93-7.1 17.13-13.95 17.26-44.78V181.41l-.02.01v-8.98zm163.44 84.08L640 132.78s-35.11-5.98-52.5 9.85c-13.3 12.1-24.41 29.55-54.18 72.47-.47.73-6.25 10.54-13.07 0-29.29-42.23-40.8-60.29-54.18-72.47-17.39-15.83-52.5-9.85-52.5-9.85l83.2 123.74-82.97 123.36s36.57 4.62 53.95-11.21c11.49-10.46 17.58-20.37 52.51-70.72 6.81-10.52 12.57-.77 13.07 0 29.4 42.38 39.23 58.06 53.14 70.72 17.39 15.83 53.32 11.21 53.32 11.21L556.8 256.52z" ], + "wolf-pack-battalion": [ 456, 512, [], "f514", "M239.73 471.53l10.56 15.84 5.28-12.32 5.28 7.04V512c21.06-7.92 21.11-66.86 25.51-97.21 4.62-31.89-.88-92.81 81.37-149.11-8.88-23.61-12-49.43-2.64-80.05 27.87 3.34 53.94 10.58 63.34 54.1l-30.35 8.36c11.15 23.04 17.01 46.76 13.2 72.14L384 313.18l-6.16 33.43-18.47-7.04-8.8 33.43-19.35-7.04 26.39 21.11 8.8-28.15 24.63 5.28 7.04-35.63 26.39 14.52c.25-20.02 6.97-58.06-8.8-84.45l26.39 5.28c3.99-22.07-2.38-39.21-7.92-56.74l22.43 9.68c-.44-25.07-29.94-56.79-61.58-58.5-20.22-1.09-56.74-25.17-54.1-51.9 1.96-19.87 17.45-42.62 43.11-49.7-43.99 36.51-9.68 67.3 5.28 73.46 4.4-11.44 17.54-69.08 0-130.2-40.47 22.87-89.73 65.1-93.25 147.79l-58.06 38.71-3.52 93.25 107.33-59.82 7.04 7.04-17.59 3.52-43.99 38.71-15.84-5.28-28.15 49.26-3.52 119.64 21.11 15.84-32.55 15.84-32.55-15.84 21.11-15.84-3.52-119.64-28.15-49.26-15.84 5.28-43.99-38.71-17.59-3.52 7.04-7.04 107.33 59.82-3.52-93.25-58.06-38.71C157.03 65.1 107.77 22.87 67.3 0c-17.54 61.12-4.4 118.76 0 130.2 14.96-6.16 49.26-36.95 5.28-73.46 25.66 7.08 41.15 29.83 43.11 49.7 2.63 26.74-33.88 50.81-54.1 51.9C29.94 160.06.44 191.78 0 216.85l22.43-9.68c-5.54 17.53-11.91 34.67-7.92 56.74l26.39-5.28c-15.76 26.39-9.05 64.43-8.8 84.45l26.39-14.52 7.04 35.63 24.63-5.28 8.8 28.15 26.39-21.11-19.34 7.05-8.8-33.43-18.47 7.04-6.16-33.43-27.27 7.04c-3.82-25.38 2.05-49.1 13.2-72.14l-30.35-8.36c9.4-43.52 35.47-50.77 63.34-54.1 9.36 30.62 6.24 56.45-2.64 80.05 82.25 56.3 76.75 117.23 81.37 149.11 4.4 30.35 4.45 89.29 25.51 97.21v-29.91l5.28-7.04 5.28 12.32 10.56-15.84 11.44 21.11 11.43-21.1zm79.17-95.01l-15.84-10.56c7.47-4.36 13.76-8.42 19.35-12.32-.6 7.26-.27 13.88-3.51 22.88zm28.15-49.26c-.4 10.94-.9 21.66-1.76 31.67-7.85-1.86-15.57-3.8-21.11-7.04 8.24-7.9 15.55-16.27 22.87-24.63zm24.63 5.28c-.02-13.43-2.05-24.21-5.28-33.43-5.38 9.09-11.23 18.18-18.47 27.27l23.75 6.16zm3.52-80.94c19.44 12.81 27.8 33.66 29.91 56.3-12.32-4.53-24.63-9.31-36.95-10.56 5.06-11.99 6.65-28.14 7.04-45.74zm-1.76-45.74c.81 14.3 1.84 28.82 1.76 42.23 19.22-8.11 29.78-9.72 43.99-14.08-10.6-18.95-27.22-25.52-45.75-28.15zM137.68 376.52l15.84-10.56c-7.47-4.36-13.76-8.42-19.35-12.32.6 7.26.27 13.88 3.51 22.88zm-28.15-49.26c.4 10.94.9 21.66 1.76 31.67 7.85-1.86 15.57-3.8 21.11-7.04-8.24-7.9-15.55-16.27-22.87-24.63zm-24.64 5.28c.02-13.43 2.05-24.21 5.28-33.43 5.38 9.09 11.23 18.18 18.47 27.27l-23.75 6.16zm-3.52-80.94c-19.44 12.81-27.8 33.66-29.91 56.3 12.32-4.53 24.63-9.31 36.95-10.56-5.05-11.99-6.65-28.14-7.04-45.74zm1.76-45.74c-.81 14.3-1.84 28.82-1.76 42.23-19.22-8.11-29.78-9.72-43.99-14.08 10.61-18.95 27.22-25.52 45.75-28.15z" ], + wordpress: [ 512, 512, [], "f19a", "M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z" ], + "wordpress-simple": [ 512, 512, [], "f411", "M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8zM33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256zm223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6zm30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3-80.7-239.6zm81.4 297.2l68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7z" ], + wpbeginner: [ 512, 512, [], "f297", "M462.799 322.374C519.01 386.682 466.961 480 370.944 480c-39.602 0-78.824-17.687-100.142-50.04-6.887.356-22.702.356-29.59 0C219.848 462.381 180.588 480 141.069 480c-95.49 0-148.348-92.996-91.855-157.626C-29.925 190.523 80.479 32 256.006 32c175.632 0 285.87 158.626 206.793 290.374zm-339.647-82.972h41.529v-58.075h-41.529v58.075zm217.18 86.072v-23.839c-60.506 20.915-132.355 9.198-187.589-33.971l.246 24.897c51.101 46.367 131.746 57.875 187.343 32.913zm-150.753-86.072h166.058v-58.075H189.579v58.075z" ], + wpexplorer: [ 512, 512, [], "f2de", "M512 256c0 141.2-114.7 256-256 256C114.8 512 0 397.3 0 256S114.7 0 256 0s256 114.7 256 256zm-32 0c0-123.2-100.3-224-224-224C132.5 32 32 132.5 32 256s100.5 224 224 224 224-100.5 224-224zM160.9 124.6l86.9 37.1-37.1 86.9-86.9-37.1 37.1-86.9zm110 169.1l46.6 94h-14.6l-50-100-48.9 100h-14l51.1-106.9-22.3-9.4 6-14 68.6 29.1-6 14.3-16.5-7.1zm-11.8-116.3l68.6 29.4-29.4 68.3L230 246l29.1-68.6zm80.3 42.9l54.6 23.1-23.4 54.3-54.3-23.1 23.1-54.3z" ], + wpforms: [ 448, 512, [], "f298", "M448 75.2v361.7c0 24.3-19 43.2-43.2 43.2H43.2C19.3 480 0 461.4 0 436.8V75.2C0 51.1 18.8 32 43.2 32h361.7c24 0 43.1 18.8 43.1 43.2zm-37.3 361.6V75.2c0-3-2.6-5.8-5.8-5.8h-9.3L285.3 144 224 94.1 162.8 144 52.5 69.3h-9.3c-3.2 0-5.8 2.8-5.8 5.8v361.7c0 3 2.6 5.8 5.8 5.8h361.7c3.2.1 5.8-2.7 5.8-5.8zM150.2 186v37H76.7v-37h73.5zm0 74.4v37.3H76.7v-37.3h73.5zm11.1-147.3l54-43.7H96.8l64.5 43.7zm210 72.9v37h-196v-37h196zm0 74.4v37.3h-196v-37.3h196zm-84.6-147.3l64.5-43.7H232.8l53.9 43.7zM371.3 335v37.3h-99.4V335h99.4z" ], + xbox: [ 512, 512, [], "f412", "M369.9 318.2c44.3 54.3 64.7 98.8 54.4 118.7-7.9 15.1-56.7 44.6-92.6 55.9-29.6 9.3-68.4 13.3-100.4 10.2-38.2-3.7-76.9-17.4-110.1-39C93.3 445.8 87 438.3 87 423.4c0-29.9 32.9-82.3 89.2-142.1 32-33.9 76.5-73.7 81.4-72.6 9.4 2.1 84.3 75.1 112.3 109.5zM188.6 143.8c-29.7-26.9-58.1-53.9-86.4-63.4-15.2-5.1-16.3-4.8-28.7 8.1-29.2 30.4-53.5 79.7-60.3 122.4-5.4 34.2-6.1 43.8-4.2 60.5 5.6 50.5 17.3 85.4 40.5 120.9 9.5 14.6 12.1 17.3 9.3 9.9-4.2-11-.3-37.5 9.5-64 14.3-39 53.9-112.9 120.3-194.4zm311.6 63.5C483.3 127.3 432.7 77 425.6 77c-7.3 0-24.2 6.5-36 13.9-23.3 14.5-41 31.4-64.3 52.8C367.7 197 427.5 283.1 448.2 346c6.8 20.7 9.7 41.1 7.4 52.3-1.7 8.5-1.7 8.5 1.4 4.6 6.1-7.7 19.9-31.3 25.4-43.5 7.4-16.2 15-40.2 18.6-58.7 4.3-22.5 3.9-70.8-.8-93.4zM141.3 43C189 40.5 251 77.5 255.6 78.4c.7.1 10.4-4.2 21.6-9.7 63.9-31.1 94-25.8 107.4-25.2-63.9-39.3-152.7-50-233.9-11.7-23.4 11.1-24 11.9-9.4 11.2z" ], + xing: [ 384, 512, [], "f168", "M162.7 210c-1.8 3.3-25.2 44.4-70.1 123.5-4.9 8.3-10.8 12.5-17.7 12.5H9.8c-7.7 0-12.1-7.5-8.5-14.4l69-121.3c.2 0 .2-.1 0-.3l-43.9-75.6c-4.3-7.8.3-14.1 8.5-14.1H100c7.3 0 13.3 4.1 18 12.2l44.7 77.5zM382.6 46.1l-144 253v.3L330.2 466c3.9 7.1.2 14.1-8.5 14.1h-65.2c-7.6 0-13.6-4-18-12.2l-92.4-168.5c3.3-5.8 51.5-90.8 144.8-255.2 4.6-8.1 10.4-12.2 17.5-12.2h65.7c8 0 12.3 6.7 8.5 14.1z" ], + "xing-square": [ 448, 512, [], "f169", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM140.4 320.2H93.8c-5.5 0-8.7-5.3-6-10.3l49.3-86.7c.1 0 .1-.1 0-.2l-31.4-54c-3-5.6.2-10.1 6-10.1h46.6c5.2 0 9.5 2.9 12.9 8.7l31.9 55.3c-1.3 2.3-18 31.7-50.1 88.2-3.5 6.2-7.7 9.1-12.6 9.1zm219.7-214.1L257.3 286.8v.2l65.5 119c2.8 5.1.1 10.1-6 10.1h-46.6c-5.5 0-9.7-2.9-12.9-8.7l-66-120.3c2.3-4.1 36.8-64.9 103.4-182.3 3.3-5.8 7.4-8.7 12.5-8.7h46.9c5.7-.1 8.8 4.7 6 10z" ], + "y-combinator": [ 448, 512, [], "f23b", "M448 32v448H0V32h448zM236 287.5L313.5 142h-32.7L235 233c-4.7 9.3-9 18.3-12.8 26.8L210 233l-45.2-91h-35l76.7 143.8v94.5H236v-92.8z" ], + yahoo: [ 448, 512, [], "f19e", "M252 292l4 220c-12.7-2.2-23.5-3.9-32.3-3.9-8.4 0-19.2 1.7-32.3 3.9l4-220C140.4 197.2 85 95.2 21.4 0c11.9 3.1 23 3.9 33.2 3.9 9 0 20.4-.8 34.1-3.9 40.9 72.2 82.1 138.7 135 225.5C261 163.9 314.8 81.4 358.6 0c11.1 2.9 22 3.9 32.9 3.9 11.5 0 23.2-1 35-3.9C392.1 47.9 294.9 216.9 252 292z" ], + yandex: [ 256, 512, [], "f413", "M153.1 315.8L65.7 512H2l96-209.8c-45.1-22.9-75.2-64.4-75.2-141.1C22.7 53.7 90.8 0 171.7 0H254v512h-55.1V315.8h-45.8zm45.8-269.3h-29.4c-44.4 0-87.4 29.4-87.4 114.6 0 82.3 39.4 108.8 87.4 108.8h29.4V46.5z" ], + "yandex-international": [ 320, 512, [], "f414", "M129.5 512V345.9L18.5 48h55.8l81.8 229.7L250.2 0h51.3L180.8 347.8V512h-51.3z" ], + yelp: [ 384, 512, [], "f1e9", "M136.9 328c-1 .3-109.2 35.7-115.8 35.7-15.2-.9-18.5-16.2-19.9-31.2-1.5-14.2-1.4-29.8.3-46.8 1.9-18.8 5.5-45.1 24.2-44 4.8 0 67.1 25.9 112.7 44.4 17.1 6.8 18.6 35.8-1.5 41.9zm57.9-113.9c1.8 38.2-25.5 48.5-47.2 14.3L41.3 60.4c-1.5-6.6.3-12.4 5.3-17.4C62.2 26.5 146 3.2 168.1 8.9c7.5 1.9 12.1 6.1 13.8 12.6 1.3 8.3 11.5 167.4 12.9 192.6zm-1.4 164.8c0 4.6.2 116.4-1.7 121.5-2.3 6-7 9.7-14.3 11.2-10.1 1.7-27.1-1.9-51-10.7-22-8.1-56.7-21.5-49.3-42.5 2.8-6.9 51.4-62.8 77.3-93.6 12-15.2 39.8-5.5 39 14.1zm180.2-117.8c-5.6 3.7-110.8 28.2-118.1 30.6l.3-.6c-18.1 4.7-35.4-18.5-23.3-34.6 3.7-3.7 65.9-92.4 72.8-97 5.2-3.6 11.3-3.8 18.3-.6 18.4 8.8 55.1 63.1 57.4 84.6-.1 2.9 1.2 11.7-7.4 17.6zm10.1 130.7c-2.7 20.6-44.5 73.4-63.8 81-6.9 2.6-12.9 2-17.7-2-5-3.5-61.8-97.1-64.9-102.3-10.9-16.2 6.8-39.8 25.6-33.2 0 0 110.5 35.7 114.7 39.4 5.2 4.1 7.2 9.8 6.1 17.1z" ], + yoast: [ 448, 512, [], "f2b1", "M91.3 76h186l-7 18.9h-179c-39.7 0-71.9 31.6-71.9 70.3v205.4c0 35.4 24.9 70.3 84 70.3V460H91.3C41.2 460 0 419.8 0 370.5V165.2C0 115.9 40.7 76 91.3 76zm229.1-56h66.5C243.1 398.1 241.2 418.9 202.2 459.3c-20.8 21.6-49.3 31.7-78.3 32.7v-51.1c49.2-7.7 64.6-49.9 64.6-75.3 0-20.1.6-12.6-82.1-223.2h61.4L218.2 299 320.4 20zM448 161.5V460H234c6.6-9.6 10.7-16.3 12.1-19.4h182.5V161.5c0-32.5-17.1-51.9-48.2-62.9l6.7-17.6c41.7 13.6 60.9 43.1 60.9 80.5z" ], + youtube: [ 576, 512, [], "f167", "M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z" ], + "youtube-square": [ 448, 512, [], "f431", "M186.8 202.1l95.2 54.1-95.2 54.1V202.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-42 176.3s0-59.6-7.6-88.2c-4.2-15.8-16.5-28.2-32.2-32.4C337.9 128 224 128 224 128s-113.9 0-142.2 7.7c-15.7 4.2-28 16.6-32.2 32.4-7.6 28.5-7.6 88.2-7.6 88.2s0 59.6 7.6 88.2c4.2 15.8 16.5 27.7 32.2 31.9C110.1 384 224 384 224 384s113.9 0 142.2-7.7c15.7-4.2 28-16.1 32.2-31.9 7.6-28.5 7.6-88.1 7.6-88.1z" ] + }; + !function(c) { + try { + c(); + } catch (c) { + if (!m) throw c; + } + }(function() { + !function c(l, z) { + var h = Object.keys(z).reduce(function(c, l) { + var h = z[l]; + return h.icon ? c[h.iconName] = h.icon : c[l] = h, c; + }, {}); + "function" == typeof t.hooks.addPack ? t.hooks.addPack(l, h) : t.styles[l] = M({}, t.styles[l] || {}, h), + "fas" === l && c("fa", z); + }("fab", f); + }); +}(), function() { + "use strict"; + var c = {}; + try { + "undefined" != typeof window && (c = window); + } catch (c) {} + var l = (c.navigator || {}).userAgent, h = void 0 === l ? "" : l, z = c, v = (~h.indexOf("MSIE") || h.indexOf("Trident/"), + "___FONT_AWESOME___"), m = function() { + try { + return !1; + } catch (c) { + return !1; + } + }(), s = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ], e = s.concat([ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ]); + [ "xs", "sm", "lg", "fw", "ul", "li", "border", "pull-left", "pull-right", "spin", "pulse", "rotate-90", "rotate-180", "rotate-270", "flip-horizontal", "flip-vertical", "stack", "stack-1x", "stack-2x", "inverse", "layers", "layers-text", "layers-counter" ].concat(s.map(function(c) { + return c + "x"; + })).concat(e.map(function(c) { + return "w-" + c; + })); + var a = z || {}; + a[v] || (a[v] = {}), a[v].styles || (a[v].styles = {}), a[v].hooks || (a[v].hooks = {}), + a[v].shims || (a[v].shims = []); + var t = a[v], M = Object.assign || function(c) { + for (var l = 1; l < arguments.length; l++) { + var h = arguments[l]; + for (var z in h) Object.prototype.hasOwnProperty.call(h, z) && (c[z] = h[z]); + } + return c; + }; + var f = { + "address-book": [ 448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-68 304H48V48h320v416zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z" ], + "address-card": [ 576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H48V80h480v352zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2zM360 320h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8z" ], + angry: [ 496, 512, [], "f556", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-144c-33.6 0-65.2 14.8-86.8 40.6-8.5 10.2-7.1 25.3 3.1 33.8s25.3 7.2 33.8-3c24.8-29.7 75-29.7 99.8 0 8.1 9.7 23.2 11.9 33.8 3 10.2-8.5 11.5-23.6 3.1-33.8-21.6-25.8-53.2-40.6-86.8-40.6zm-48-72c10.3 0 19.9-6.7 23-17.1 3.8-12.7-3.4-26.1-16.1-29.9l-80-24c-12.8-3.9-26.1 3.4-29.9 16.1-3.8 12.7 3.4 26.1 16.1 29.9l28.2 8.5c-3.1 4.9-5.3 10.4-5.3 16.6 0 17.7 14.3 32 32 32s32-14.4 32-32.1zm199-54.9c-3.8-12.7-17.1-19.9-29.9-16.1l-80 24c-12.7 3.8-19.9 17.2-16.1 29.9 3.1 10.4 12.7 17.1 23 17.1 0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.2-2.2-11.7-5.3-16.6l28.2-8.5c12.7-3.7 19.9-17.1 16.1-29.8z" ], + "arrow-alt-circle-down": [ 512, 512, [], "f358", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm-32-316v116h-67c-10.7 0-16 12.9-8.5 20.5l99 99c4.7 4.7 12.3 4.7 17 0l99-99c7.6-7.6 2.2-20.5-8.5-20.5h-67V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12z" ], + "arrow-alt-circle-left": [ 512, 512, [], "f359", "M8 256c0 137 111 248 248 248s248-111 248-248S393 8 256 8 8 119 8 256zm448 0c0 110.5-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56s200 89.5 200 200zm-72-20v40c0 6.6-5.4 12-12 12H256v67c0 10.7-12.9 16-20.5 8.5l-99-99c-4.7-4.7-4.7-12.3 0-17l99-99c7.6-7.6 20.5-2.2 20.5 8.5v67h116c6.6 0 12 5.4 12 12z" ], + "arrow-alt-circle-right": [ 512, 512, [], "f35a", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z" ], + "arrow-alt-circle-up": [ 512, 512, [], "f35b", "M256 504c137 0 248-111 248-248S393 8 256 8 8 119 8 256s111 248 248 248zm0-448c110.5 0 200 89.5 200 200s-89.5 200-200 200S56 366.5 56 256 145.5 56 256 56zm20 328h-40c-6.6 0-12-5.4-12-12V256h-67c-10.7 0-16-12.9-8.5-20.5l99-99c4.7-4.7 12.3-4.7 17 0l99 99c7.6 7.6 2.2 20.5-8.5 20.5h-67v116c0 6.6-5.4 12-12 12z" ], + bell: [ 448, 512, [], "f0f3", "M425.403 330.939c-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.843 31.843 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095C118.101 62.783 57.143 131.831 57.143 214.857c0 81.933-17.551 99.292-34.543 116.078C-25.496 378.441 9.726 448 66.919 448H160c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h93.08c57.19 0 92.415-69.583 44.323-117.061zM224 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm157.092-72H66.9c-16.762 0-25.135-20.39-13.334-32.191 28.585-28.585 51.577-55.724 51.577-152.952C105.143 149.319 158.462 96 224 96s118.857 53.319 118.857 118.857c0 97.65 23.221 124.574 51.568 152.952C406.278 379.661 397.783 400 381.092 400z" ], + "bell-slash": [ 576, 512, [], "f1f6", "M130.9 400c-16.762 0-25.135-20.39-13.334-32.191 25.226-25.226 46.094-49.338 50.649-121.48l-46.777-41.274a168.48 168.48 0 0 0-.296 9.802c0 81.933-17.551 99.292-34.543 116.078C38.504 378.441 73.726 448 130.919 448H224c0 35.346 28.654 64 64 64s64-28.654 64-64h44.777l-54.4-48H130.9zM288 472c-13.234 0-24-10.766-24-24h48c0 13.234-10.766 24-24 24zm283.867.553l-67.931-59.571c13.104-24.118 11.524-56.318-14.532-82.042-16.989-16.785-34.546-34.143-34.546-116.083 0-83.026-60.958-152.074-140.467-164.762A31.848 31.848 0 0 0 320 32c0-17.673-14.327-32-32-32s-32 14.327-32 32a31.848 31.848 0 0 0 5.609 18.095c-41.471 6.618-77.891 28.571-103.249 59.841L36.459 3.037c-5.058-4.436-12.777-3.956-17.24 1.071L3.056 22.313C-1.407 27.34-.925 35.012 4.134 39.447l535.408 469.516c5.058 4.436 12.777 3.956 17.24-1.071l16.163-18.205c4.462-5.027 3.98-12.699-1.078-17.134zM288 96c65.538 0 118.857 53.319 118.857 118.857 0 97.65 23.221 124.574 51.568 152.952 2.908 2.908 4.573 6.328 5.209 9.832L194.482 141.612C216.258 113.867 250.075 96 288 96z" ], + bookmark: [ 384, 512, [], "f02e", "M336 0H48C21.49 0 0 21.49 0 48v464l192-112 192 112V48c0-26.51-21.49-48-48-48zm0 428.43l-144-84-144 84V54a6 6 0 0 1 6-6h276c3.314 0 6 2.683 6 5.996V428.43z" ], + building: [ 448, 512, [], "f1ad", "M128 148v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12zm140 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-128 96h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm128 0h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-76 84v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm76 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm180 124v36H0v-36c0-6.6 5.4-12 12-12h19.5V24c0-13.3 10.7-24 24-24h337c13.3 0 24 10.7 24 24v440H436c6.6 0 12 5.4 12 12zM79.5 463H192v-67c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v67h112.5V49L80 48l-.5 415z" ], + calendar: [ 448, 512, [], "f133", "M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z" ], + "calendar-alt": [ 448, 512, [], "f073", "M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "calendar-check": [ 448, 512, [], "f274", "M400 64h-48V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H160V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V160h352v298a6 6 0 0 1-6 6zm-52.849-200.65L198.842 404.519c-4.705 4.667-12.303 4.637-16.971-.068l-75.091-75.699c-4.667-4.705-4.637-12.303.068-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l44.104 44.461 111.072-110.181c4.705-4.667 12.303-4.637 16.971.068l22.536 22.718c4.667 4.705 4.636 12.303-.069 16.97z" ], + "calendar-minus": [ 448, 512, [], "f272", "M124 328c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H124zm324-216v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "calendar-plus": [ 448, 512, [], "f271", "M336 292v24c0 6.6-5.4 12-12 12h-76v76c0 6.6-5.4 12-12 12h-24c-6.6 0-12-5.4-12-12v-76h-76c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h76v-76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v76h76c6.6 0 12 5.4 12 12zm112-180v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "calendar-times": [ 448, 512, [], "f273", "M311.7 374.7l-17 17c-4.7 4.7-12.3 4.7-17 0L224 337.9l-53.7 53.7c-4.7 4.7-12.3 4.7-17 0l-17-17c-4.7-4.7-4.7-12.3 0-17l53.7-53.7-53.7-53.7c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0l53.7 53.7 53.7-53.7c4.7-4.7 12.3-4.7 17 0l17 17c4.7 4.7 4.7 12.3 0 17L257.9 304l53.7 53.7c4.8 4.7 4.8 12.3.1 17zM448 112v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "caret-square-down": [ 448, 512, [], "f150", "M125.1 208h197.8c10.7 0 16.1 13 8.5 20.5l-98.9 98.3c-4.7 4.7-12.2 4.7-16.9 0l-98.9-98.3c-7.7-7.5-2.3-20.5 8.4-20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "caret-square-left": [ 448, 512, [], "f191", "M272 157.1v197.8c0 10.7-13 16.1-20.5 8.5l-98.3-98.9c-4.7-4.7-4.7-12.2 0-16.9l98.3-98.9c7.5-7.7 20.5-2.3 20.5 8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "caret-square-right": [ 448, 512, [], "f152", "M176 354.9V157.1c0-10.7 13-16.1 20.5-8.5l98.3 98.9c4.7 4.7 4.7 12.2 0 16.9l-98.3 98.9c-7.5 7.7-20.5 2.3-20.5-8.4zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "caret-square-up": [ 448, 512, [], "f151", "M322.9 304H125.1c-10.7 0-16.1-13-8.5-20.5l98.9-98.3c4.7-4.7 12.2-4.7 16.9 0l98.9 98.3c7.7 7.5 2.3 20.5-8.4 20.5zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "chart-bar": [ 512, 512, [], "f080", "M500 400c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v324h452zm-356-60v-72c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V140c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V204c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm96 0V108c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12z" ], + "check-circle": [ 512, 512, [], "f058", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z" ], + "check-square": [ 448, 512, [], "f14a", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm0 400H48V80h352v352zm-35.864-241.724L191.547 361.48c-4.705 4.667-12.303 4.637-16.97-.068l-90.781-91.516c-4.667-4.705-4.637-12.303.069-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l59.792 60.277 141.352-140.216c4.705-4.667 12.303-4.637 16.97.068l22.536 22.718c4.667 4.706 4.637 12.304-.068 16.971z" ], + circle: [ 512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z" ], + clipboard: [ 384, 512, [], "f328", "M336 64h-80c0-35.29-28.71-64-64-64s-64 28.71-64 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h42v36c0 6.627 5.373 12 12 12h168c6.627 0 12-5.373 12-12v-36h42a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zM192 40c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24" ], + clock: [ 512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z" ], + clone: [ 512, 512, [], "f24d", "M464 0H144c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h320c26.51 0 48-21.49 48-48v-48h48c26.51 0 48-21.49 48-48V48c0-26.51-21.49-48-48-48zM362 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h42v224c0 26.51 21.49 48 48 48h224v42a6 6 0 0 1-6 6zm96-96H150a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h308a6 6 0 0 1 6 6v308a6 6 0 0 1-6 6z" ], + "closed-captioning": [ 512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 336H54c-3.3 0-6-2.7-6-6V118c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v276c0 3.3-2.7 6-6 6zm-211.1-85.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7zm190.4 0c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.9-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 220.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6 2.8-2.5 7.1-2.1 9.2.9l19.6 27.7z" ], + comment: [ 512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z" ], + "comment-alt": [ 512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 7.1 5.8 12 12 12 2.4 0 4.9-.7 7.1-2.4L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm16 352c0 8.8-7.2 16-16 16H288l-12.8 9.6L208 428v-60H64c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h384c8.8 0 16 7.2 16 16v288z" ], + "comment-dots": [ 512, 512, [], "f4ad", "M144 208c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm112 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z" ], + comments: [ 576, 512, [], "f086", "M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z" ], + compass: [ 512, 512, [], "f14e", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm91.326-312.131l-33.359 137.779a24.005 24.005 0 0 1-6.772 11.729l-102.64 97.779c-17.104 16.293-45.56.434-39.88-23.024l33.359-137.779a23.997 23.997 0 0 1 6.772-11.729l102.642-97.779c17.285-16.47 45.494-.175 39.878 23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z" ], + copy: [ 448, 512, [], "f0c5", "M433.941 65.941l-51.882-51.882A48 48 0 0 0 348.118 0H176c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48v-48h80c26.51 0 48-21.49 48-48V99.882a48 48 0 0 0-14.059-33.941zM266 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h74v224c0 26.51 21.49 48 48 48h96v42a6 6 0 0 1-6 6zm128-96H182a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h106v88c0 13.255 10.745 24 24 24h88v202a6 6 0 0 1-6 6zm6-256h-64V48h9.632c1.591 0 3.117.632 4.243 1.757l48.368 48.368a6 6 0 0 1 1.757 4.243V112z" ], + copyright: [ 512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm107.351-101.064c-9.614 9.712-45.53 41.396-104.065 41.396-82.43 0-140.484-61.425-140.484-141.567 0-79.152 60.275-139.401 139.762-139.401 55.531 0 88.738 26.62 97.593 34.779a11.965 11.965 0 0 1 1.936 15.322l-18.155 28.113c-3.841 5.95-11.966 7.282-17.499 2.921-8.595-6.776-31.814-22.538-61.708-22.538-48.303 0-77.916 35.33-77.916 80.082 0 41.589 26.888 83.692 78.277 83.692 32.657 0 56.843-19.039 65.726-27.225 5.27-4.857 13.596-4.039 17.82 1.738l19.865 27.17a11.947 11.947 0 0 1-1.152 15.518z" ], + "credit-card": [ 576, 512, [], "f09d", "M527.9 32H48.1C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48.1 48h479.8c26.6 0 48.1-21.5 48.1-48V80c0-26.5-21.5-48-48.1-48zM54.1 80h467.8c3.3 0 6 2.7 6 6v42H48.1V86c0-3.3 2.7-6 6-6zm467.8 352H54.1c-3.3 0-6-2.7-6-6V256h479.8v170c0 3.3-2.7 6-6 6zM192 332v40c0 6.6-5.4 12-12 12h-72c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12zm192 0v40c0 6.6-5.4 12-12 12H236c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12z" ], + dizzy: [ 496, 512, [], "f567", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-33.8-217.9c7.8-7.8 7.8-20.5 0-28.3L196.3 192l17.9-17.9c7.8-7.8 7.8-20.5 0-28.3-7.8-7.8-20.5-7.8-28.3 0L168 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.9 7.7 20.5 7.7 28.4-.2zm160-92.2c-7.8-7.8-20.5-7.8-28.3 0L328 163.7l-17.8-17.8c-7.8-7.8-20.5-7.8-28.3 0-7.8 7.8-7.8 20.5 0 28.3l17.9 17.9-17.9 17.9c-7.8 7.8-7.8 20.5 0 28.3 7.8 7.8 20.5 7.8 28.3 0l17.8-17.8 17.8 17.8c7.8 7.8 20.5 7.8 28.3 0 7.8-7.8 7.8-20.5 0-28.3l-17.8-18 17.9-17.9c7.7-7.8 7.7-20.4 0-28.2zM248 272c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64z" ], + "dot-circle": [ 512, 512, [], "f192", "M256 56c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m0-48C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 168c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80z" ], + edit: [ 576, 512, [], "f044", "M402.3 344.9l32-32c5-5 13.7-1.5 13.7 5.7V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h273.5c7.1 0 10.7 8.6 5.7 13.7l-32 32c-1.5 1.5-3.5 2.3-5.7 2.3H48v352h352V350.5c0-2.1.8-4.1 2.3-5.6zm156.6-201.8L296.3 405.7l-90.4 10c-26.2 2.9-48.5-19.2-45.6-45.6l10-90.4L432.9 17.1c22.9-22.9 59.9-22.9 82.7 0l43.2 43.2c22.9 22.9 22.9 60 .1 82.8zM460.1 174L402 115.9 216.2 301.8l-7.3 65.3 65.3-7.3L460.1 174zm64.8-79.7l-43.2-43.2c-4.1-4.1-10.8-4.1-14.8 0L436 82l58.1 58.1 30.9-30.9c4-4.2 4-10.8-.1-14.9z" ], + envelope: [ 512, 512, [], "f0e0", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z" ], + "envelope-open": [ 512, 512, [], "f2b6", "M494.586 164.516c-4.697-3.883-111.723-89.95-135.251-108.657C337.231 38.191 299.437 0 256 0c-43.205 0-80.636 37.717-103.335 55.859-24.463 19.45-131.07 105.195-135.15 108.549A48.004 48.004 0 0 0 0 201.485V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V201.509a48 48 0 0 0-17.414-36.993zM464 458a6 6 0 0 1-6 6H54a6 6 0 0 1-6-6V204.347c0-1.813.816-3.526 2.226-4.665 15.87-12.814 108.793-87.554 132.364-106.293C200.755 78.88 232.398 48 256 48c23.693 0 55.857 31.369 73.41 45.389 23.573 18.741 116.503 93.493 132.366 106.316a5.99 5.99 0 0 1 2.224 4.663V458zm-31.991-187.704c4.249 5.159 3.465 12.795-1.745 16.981-28.975 23.283-59.274 47.597-70.929 56.863C336.636 362.283 299.205 400 256 400c-43.452 0-81.287-38.237-103.335-55.86-11.279-8.967-41.744-33.413-70.927-56.865-5.21-4.187-5.993-11.822-1.745-16.981l15.258-18.528c4.178-5.073 11.657-5.843 16.779-1.726 28.618 23.001 58.566 47.035 70.56 56.571C200.143 320.631 232.307 352 256 352c23.602 0 55.246-30.88 73.41-45.389 11.994-9.535 41.944-33.57 70.563-56.568 5.122-4.116 12.601-3.346 16.778 1.727l15.258 18.526z" ], + eye: [ 576, 512, [], "f06e", "M569.354 231.631C512.97 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-102.556 0-192.091-54.701-240-136 44.157-74.933 123.677-127.27 216.162-135.007C273.958 131.078 280 144.83 280 160c0 30.928-25.072 56-56 56s-56-25.072-56-56l.001-.042C157.794 179.043 152 200.844 152 224c0 75.111 60.889 136 136 136s136-60.889 136-136c0-31.031-10.4-59.629-27.895-82.515C451.704 164.638 498.009 205.106 528 256c-47.908 81.299-137.444 136-240 136z" ], + "eye-slash": [ 576, 512, [], "f070", "M272.702 359.139c-80.483-9.011-136.212-86.886-116.93-167.042l116.93 167.042zM288 392c-102.556 0-192.092-54.701-240-136 21.755-36.917 52.1-68.342 88.344-91.658l-27.541-39.343C67.001 152.234 31.921 188.741 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.004 376.006 168.14 440 288 440a332.89 332.89 0 0 0 39.648-2.367l-32.021-45.744A284.16 284.16 0 0 1 288 392zm281.354-111.631c-33.232 56.394-83.421 101.742-143.554 129.492l48.116 68.74c3.801 5.429 2.48 12.912-2.949 16.712L450.23 509.83c-5.429 3.801-12.912 2.48-16.712-2.949L102.084 33.399c-3.801-5.429-2.48-12.912 2.949-16.712L125.77 2.17c5.429-3.801 12.912-2.48 16.712 2.949l55.526 79.325C226.612 76.343 256.808 72 288 72c119.86 0 224.996 63.994 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM528 256c-44.157-74.933-123.677-127.27-216.162-135.007C302.042 131.078 296 144.83 296 160c0 30.928 25.072 56 56 56s56-25.072 56-56l-.001-.042c30.632 57.277 16.739 130.26-36.928 171.719l26.695 38.135C452.626 346.551 498.308 306.386 528 256z" ], + file: [ 384, 512, [], "f15b", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48z" ], + "file-alt": [ 384, 512, [], "f15c", "M288 248v28c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-28c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm-12 72H108c-6.6 0-12 5.4-12 12v28c0 6.6 5.4 12 12 12h168c6.6 0 12-5.4 12-12v-28c0-6.6-5.4-12-12-12zm108-188.1V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48C0 21.5 21.5 0 48 0h204.1C264.8 0 277 5.1 286 14.1L369.9 98c9 8.9 14.1 21.2 14.1 33.9zm-128-80V128h76.1L256 51.9zM336 464V176H232c-13.3 0-24-10.7-24-24V48H48v416h288z" ], + "file-archive": [ 384, 512, [], "f1c6", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM256 51.882L332.118 128H256V51.882zM336 464H48V48h79.714v16h32V48H208v104c0 13.255 10.745 24 24 24h104v288zM192.27 96h-32V64h32v32zm-32 0v32h-32V96h32zm0 64v32h-32v-32h32zm32 0h-32v-32h32v32zm1.909 105.678A12 12 0 0 0 182.406 256H160.27v-32h-32v32l-19.69 97.106C101.989 385.611 126.834 416 160 416c33.052 0 57.871-30.192 51.476-62.62l-17.297-87.702zM160.27 390.073c-17.918 0-32.444-12.105-32.444-27.036 0-14.932 14.525-27.036 32.444-27.036s32.444 12.105 32.444 27.036c0 14.931-14.526 27.036-32.444 27.036zm32-166.073h-32v-32h32v32z" ], + "file-audio": [ 384, 512, [], "f1c7", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm144-76.024c0 10.691-12.926 16.045-20.485 8.485L136 360.486h-28c-6.627 0-12-5.373-12-12v-56c0-6.627 5.373-12 12-12h28l35.515-36.947c7.56-7.56 20.485-2.206 20.485 8.485v135.952zm41.201-47.13c9.051-9.297 9.06-24.133.001-33.439-22.149-22.752 12.235-56.246 34.395-33.481 27.198 27.94 27.212 72.444.001 100.401-21.793 22.386-56.947-10.315-34.397-33.481z" ], + "file-code": [ 384, 512, [], "f1c9", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm101.677-115.115L116.854 320l32.822-28.885a8.793 8.793 0 0 0 .605-12.624l-17.403-18.564c-3.384-3.613-8.964-3.662-12.438-.401L62.78 313.58c-3.703 3.474-3.704 9.367.001 12.84l57.659 54.055a8.738 8.738 0 0 0 6.012 2.381 8.746 8.746 0 0 0 6.427-2.782l17.403-18.563a8.795 8.795 0 0 0-.605-12.626zm84.284-127.85l-24.401-7.084a8.796 8.796 0 0 0-10.905 5.998L144.04 408.061c-1.353 4.66 1.338 9.552 5.998 10.905l24.403 7.084c4.68 1.355 9.557-1.354 10.905-5.998l54.612-188.112c1.354-4.66-1.337-9.552-5.997-10.905zm87.258 92.545l-57.658-54.055c-3.526-3.307-9.099-3.165-12.439.401l-17.403 18.563a8.795 8.795 0 0 0 .605 12.625L267.146 320l-32.822 28.885a8.793 8.793 0 0 0-.605 12.624l17.403 18.564a8.797 8.797 0 0 0 12.439.401h-.001l57.66-54.055c3.703-3.473 3.703-9.366-.001-12.839z" ], + "file-excel": [ 384, 512, [], "f1c3", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm212-240h-28.8c-4.4 0-8.4 2.4-10.5 6.3-18 33.1-22.2 42.4-28.6 57.7-13.9-29.1-6.9-17.3-28.6-57.7-2.1-3.9-6.2-6.3-10.6-6.3H124c-9.3 0-15 10-10.4 18l46.3 78-46.3 78c-4.7 8 1.1 18 10.4 18h28.9c4.4 0 8.4-2.4 10.5-6.3 21.7-40 23-45 28.6-57.7 14.9 30.2 5.9 15.9 28.6 57.7 2.1 3.9 6.2 6.3 10.6 6.3H260c9.3 0 15-10 10.4-18L224 320c.7-1.1 30.3-50.5 46.3-78 4.7-8-1.1-18-10.3-18z" ], + "file-image": [ 384, 512, [], "f1c5", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm32-48h224V288l-23.5-23.5c-4.7-4.7-12.3-4.7-17 0L176 352l-39.5-39.5c-4.7-4.7-12.3-4.7-17 0L80 352v64zm48-240c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z" ], + "file-pdf": [ 384, 512, [], "f1c1", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm250.2-143.7c-12.2-12-47-8.7-64.4-6.5-17.2-10.5-28.7-25-36.8-46.3 3.9-16.1 10.1-40.6 5.4-56-4.2-26.2-37.8-23.6-42.6-5.9-4.4 16.1-.4 38.5 7 67.1-10 23.9-24.9 56-35.4 74.4-20 10.3-47 26.2-51 46.2-3.3 15.8 26 55.2 76.1-31.2 22.4-7.4 46.8-16.5 68.4-20.1 18.9 10.2 41 17 55.8 17 25.5 0 28-28.2 17.5-38.7zm-198.1 77.8c5.1-13.7 24.5-29.5 30.4-35-19 30.3-30.4 35.7-30.4 35zm81.6-190.6c7.4 0 6.7 32.1 1.8 40.8-4.4-13.9-4.3-40.8-1.8-40.8zm-24.4 136.6c9.7-16.9 18-37 24.7-54.7 8.3 15.1 18.9 27.2 30.1 35.5-20.8 4.3-38.9 13.1-54.8 19.2zm131.6-5s-5 6-37.3-7.8c35.1-2.6 40.9 5.4 37.3 7.8z" ], + "file-powerpoint": [ 384, 512, [], "f1c4", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm72-60V236c0-6.6 5.4-12 12-12h69.2c36.7 0 62.8 27 62.8 66.3 0 74.3-68.7 66.5-95.5 66.5V404c0 6.6-5.4 12-12 12H132c-6.6 0-12-5.4-12-12zm48.5-87.4h23c7.9 0 13.9-2.4 18.1-7.2 8.5-9.8 8.4-28.5.1-37.8-4.1-4.6-9.9-7-17.4-7h-23.9v52z" ], + "file-video": [ 384, 512, [], "f1c8", "M369.941 97.941l-83.882-83.882A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v416c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48V131.882a48 48 0 0 0-14.059-33.941zM332.118 128H256V51.882L332.118 128zM48 464V48h160v104c0 13.255 10.745 24 24 24h104v288H48zm228.687-211.303L224 305.374V268c0-11.046-8.954-20-20-20H100c-11.046 0-20 8.954-20 20v104c0 11.046 8.954 20 20 20h104c11.046 0 20-8.954 20-20v-37.374l52.687 52.674C286.704 397.318 304 390.28 304 375.986V264.011c0-14.311-17.309-21.319-27.313-11.314z" ], + "file-word": [ 384, 512, [], "f1c2", "M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm220.1-208c-5.7 0-10.6 4-11.7 9.5-20.6 97.7-20.4 95.4-21 103.5-.2-1.2-.4-2.6-.7-4.3-.8-5.1.3.2-23.6-99.5-1.3-5.4-6.1-9.2-11.7-9.2h-13.3c-5.5 0-10.3 3.8-11.7 9.1-24.4 99-24 96.2-24.8 103.7-.1-1.1-.2-2.5-.5-4.2-.7-5.2-14.1-73.3-19.1-99-1.1-5.6-6-9.7-11.8-9.7h-16.8c-7.8 0-13.5 7.3-11.7 14.8 8 32.6 26.7 109.5 33.2 136 1.3 5.4 6.1 9.1 11.7 9.1h25.2c5.5 0 10.3-3.7 11.6-9.1l17.9-71.4c1.5-6.2 2.5-12 3-17.3l2.9 17.3c.1.4 12.6 50.5 17.9 71.4 1.3 5.3 6.1 9.1 11.6 9.1h24.7c5.5 0 10.3-3.7 11.6-9.1 20.8-81.9 30.2-119 34.5-136 1.9-7.6-3.8-14.9-11.6-14.9h-15.8z" ], + flag: [ 512, 512, [], "f024", "M336.174 80c-49.132 0-93.305-32-161.913-32-31.301 0-58.303 6.482-80.721 15.168a48.04 48.04 0 0 0 2.142-20.727C93.067 19.575 74.167 1.594 51.201.104 23.242-1.71 0 20.431 0 48c0 17.764 9.657 33.262 24 41.562V496c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-83.443C109.869 395.28 143.259 384 199.826 384c49.132 0 93.305 32 161.913 32 58.479 0 101.972-22.617 128.548-39.981C503.846 367.161 512 352.051 512 335.855V95.937c0-34.459-35.264-57.768-66.904-44.117C409.193 67.309 371.641 80 336.174 80zM464 336c-21.783 15.412-60.824 32-102.261 32-59.945 0-102.002-32-161.913-32-43.361 0-96.379 9.403-127.826 24V128c21.784-15.412 60.824-32 102.261-32 59.945 0 102.002 32 161.913 32 43.271 0 96.32-17.366 127.826-32v240z" ], + flushed: [ 496, 512, [], "f579", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm96-312c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-112 24c0-44.2-35.8-80-80-80s-80 35.8-80 80 35.8 80 80 80 80-35.8 80-80zm-80 48c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm160 144H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z" ], + folder: [ 512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48zm-6 272H54c-3.314 0-6-2.678-6-5.992V117.992A5.993 5.993 0 0 1 54 112h134.118l64 64H458a6 6 0 0 1 6 6v212a6 6 0 0 1-6 6z" ], + "folder-open": [ 576, 512, [], "f07c", "M527.943 224H480v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h400a48.001 48.001 0 0 0 40.704-22.56l79.942-128c19.948-31.917-3.038-73.44-40.703-73.44zM54 112h134.118l64 64H426a6 6 0 0 1 6 6v42H152a48 48 0 0 0-41.098 23.202L48 351.449V117.993A5.993 5.993 0 0 1 54 112zm394 288H72l77.234-128H528l-80 128z" ], + "font-awesome-logo-full": [ 3992, 512, [ "Font Awesome" ], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z" ], + frown: [ 496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 128c-40.2 0-78 17.7-103.8 48.6-8.5 10.2-7.1 25.3 3.1 33.8 10.2 8.4 25.3 7.1 33.8-3.1 16.6-19.9 41-31.4 66.9-31.4s50.3 11.4 66.9 31.4c8.1 9.7 23.1 11.9 33.8 3.1 10.2-8.5 11.5-23.6 3.1-33.8C326 321.7 288.2 304 248 304z" ], + "frown-open": [ 496, 512, [], "f57a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-48-248c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 112c-35.6 0-88.8 21.3-95.8 61.2-2 11.8 9 21.5 20.5 18.1 31.2-9.6 59.4-15.3 75.3-15.3s44.1 5.7 75.3 15.3c11.4 3.5 22.5-6.3 20.5-18.1-7-39.9-60.2-61.2-95.8-61.2z" ], + futbol: [ 496, 512, [], "f1e3", "M483.8 179.4C449.8 74.6 352.6 8 248.1 8c-25.4 0-51.2 3.9-76.7 12.2C41.2 62.5-30.1 202.4 12.2 332.6 46.2 437.4 143.4 504 247.9 504c25.4 0 51.2-3.9 76.7-12.2 130.2-42.3 201.5-182.2 159.2-312.4zm-74.5 193.7l-52.2 6.4-43.7-60.9 24.4-75.2 71.1-22.1 38.9 36.4c-.2 30.7-7.4 61.1-21.7 89.2-4.7 9.3-10.7 17.8-16.8 26.2zm0-235.4l-10.4 53.1-70.7 22-64.2-46.5V92.5l47.4-26.2c39.2 13 73.4 38 97.9 71.4zM184.9 66.4L232 92.5v73.8l-64.2 46.5-70.6-22-10.1-52.5c24.3-33.4 57.9-58.6 97.8-71.9zM139 379.5L85.9 373c-14.4-20.1-37.3-59.6-37.8-115.3l39-36.4 71.1 22.2 24.3 74.3-43.5 61.7zm48.2 67l-22.4-48.1 43.6-61.7H287l44.3 61.7-22.4 48.1c-6.2 1.8-57.6 20.4-121.7 0z" ], + gem: [ 576, 512, [], "f3a5", "M464 0H112c-4 0-7.8 2-10 5.4L2 152.6c-2.9 4.4-2.6 10.2.7 14.2l276 340.8c4.8 5.9 13.8 5.9 18.6 0l276-340.8c3.3-4.1 3.6-9.8.7-14.2L474.1 5.4C471.8 2 468.1 0 464 0zm-19.3 48l63.3 96h-68.4l-51.7-96h56.8zm-202.1 0h90.7l51.7 96H191l51.6-96zm-111.3 0h56.8l-51.7 96H68l63.3-96zm-43 144h51.4L208 352 88.3 192zm102.9 0h193.6L288 435.3 191.2 192zM368 352l68.2-160h51.4L368 352z" ], + grimace: [ 496, 512, [], "f57f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm16 16H152c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h192c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48zm-168 96h-24c-8.8 0-16-7.2-16-16v-8h40v24zm0-40h-40v-8c0-8.8 7.2-16 16-16h24v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm64 40h-48v-24h48v24zm0-40h-48v-24h48v24zm56 24c0 8.8-7.2 16-16 16h-24v-24h40v8zm0-24h-40v-24h24c8.8 0 16 7.2 16 16v8z" ], + grin: [ 496, 512, [], "f580", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z" ], + "grin-alt": [ 496, 512, [], "f581", "M200.3 248c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zm128 0c12.4-18.7 15.1-37.3 15.7-56-.5-18.7-3.3-37.3-15.7-56-8-12-25.1-11.4-32.7 0-12.4 18.7-15.1 37.3-15.7 56 .5 18.7 3.3 37.3 15.7 56 8.1 12 25.2 11.4 32.7 0zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3z" ], + "grin-beam": [ 496, 512, [], "f582", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-235.9-72.9c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3zm160 0c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3z" ], + "grin-beam-sweat": [ 496, 512, [], "f583", "M440 160c29.5 0 53.3-26.3 53.3-58.7 0-25-31.7-75.5-46.2-97.3-3.6-5.3-10.7-5.3-14.2 0-14.5 21.8-46.2 72.3-46.2 97.3 0 32.4 23.8 58.7 53.3 58.7zM248 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zm105.3-52.9c-24.6 15.7-46 12.9-46.4 12.9 6.9 20.2 10.8 41.8 10.8 64.3 0 110.3-89.7 200-200 200S48 366.3 48 256 137.7 56 248 56c39.8 0 76.8 11.8 108 31.9 1.7-9.5 6.3-24.1 17.2-45.7C336.4 20.6 293.7 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-27-4.4-52.9-12.4-77.2zM168 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z" ], + "grin-hearts": [ 496, 512, [], "f584", "M353.6 304.6c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-152.8-48.9c4.5 1.2 9.2-1.5 10.5-6l19.4-69.9c5.6-20.3-7.4-41.1-28.8-44.5-18.6-3-36.4 9.8-41.5 27.9l-2 7.1-7.1-1.9c-18.2-4.7-38.2 4.3-44.9 22-7.7 20.2 3.8 41.9 24.2 47.2l70.2 18.1zm188.8-65.3c-6.7-17.6-26.7-26.7-44.9-22l-7.1 1.9-2-7.1c-5-18.1-22.8-30.9-41.5-27.9-21.4 3.4-34.4 24.2-28.8 44.5l19.4 69.9c1.2 4.5 5.9 7.2 10.5 6l70.2-18.2c20.4-5.3 31.9-26.9 24.2-47.1zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200z" ], + "grin-squint": [ 496, 512, [], "f585", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.4-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-234.7-40.8c3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3l-80-48c-5.1-3-11.4-1.9-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11.1.1 15.5zm242.9 2.5c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11-.1-15.5-3.8-4.4-10.2-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48z" ], + "grin-squint-tears": [ 512, 512, [], "f586", "M117.1 384.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 479 124.3 420.8 128 395c.8-6.4-4.6-11.8-10.9-10.9zm-41.2-41.7C40.3 268 53 176.1 114.6 114.6 152.4 76.8 202.6 56 256 56c36.2 0 70.8 9.8 101.2 27.7 3.8-20.3 8-36.1 12-48.3C333.8 17.2 294.9 8 256 8 192.5 8 129.1 32.2 80.6 80.6c-74.1 74.1-91.3 183.4-52 274 12.2-4.1 27.7-8.3 47.3-12.2zm352.3-187.6c45 76.6 34.9 176.9-30.8 242.6-37.8 37.8-88 58.6-141.4 58.6-30.5 0-59.8-7-86.4-19.8-3.9 19.5-8 35-12.2 47.2 31.4 13.6 65 20.6 98.7 20.6 63.5 0 126.9-24.2 175.4-72.6 78.1-78.1 93.1-195.4 45.2-288.6-12.3 4-28.2 8.1-48.5 12zm-33.3-26.9c25.8-3.7 84-13.7 100.9-30.6 21.9-21.9 21.5-57.9-.9-80.3s-58.3-22.8-80.3-.9C397.7 33 387.7 91.2 384 117c-.8 6.4 4.6 11.8 10.9 10.9zm-187 108.3c-3-3-7.2-4.2-11.4-3.2L106 255.7c-5.7 1.4-9.5 6.7-9.1 12.6.5 5.8 5.1 10.5 10.9 11l52.3 4.8 4.8 52.3c.5 5.8 5.2 10.4 11 10.9h.9c5.5 0 10.3-3.7 11.7-9.1l22.6-90.5c1-4.2-.2-8.5-3.2-11.5zm39.7-25.1l90.5-22.6c5.7-1.4 9.5-6.7 9.1-12.6-.5-5.8-5.1-10.5-10.9-11l-52.3-4.8-4.8-52.3c-.5-5.8-5.2-10.4-11-10.9-5.6-.1-11.2 3.4-12.6 9.1L233 196.5c-1 4.1.2 8.4 3.2 11.4 5 5 11.3 3.2 11.4 3.2zm52 88.5c-29.1 29.1-59.7 52.9-83.9 65.4-9.2 4.8-10 17.5-1.7 23.4 38.9 27.7 107 6.2 143.7-30.6S416 253 388.3 214.1c-5.8-8.2-18.5-7.6-23.4 1.7-12.3 24.2-36.2 54.7-65.3 83.8z" ], + "grin-stars": [ 496, 512, [], "f587", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.2 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-227.9-57.5c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.5 1.9-12.2-4.3-13.2l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6.1 34.9zm259.7-72.7l-34.9-5-15.5-31.6c-2.9-5.8-11-5.8-13.9 0l-15.5 31.6-34.9 5c-6.2.9-8.9 8.6-4.3 13.2l25.4 24.6-6 34.9c-1 6.2 5.4 11 11 7.9l31.3-16.3 31.3 16.3c5.6 3.1 12-1.7 11-7.9l-6-34.9 25.4-24.6c4.5-4.6 1.8-12.2-4.4-13.2z" ], + "grin-tears": [ 640, 512, [], "f588", "M117.1 256.1c-25.8 3.7-84 13.7-100.9 30.6-21.9 21.9-21.5 57.9.9 80.3s58.3 22.8 80.3.9C114.3 351 124.3 292.8 128 267c.8-6.4-4.6-11.8-10.9-10.9zm506.7 30.6c-16.9-16.9-75.1-26.9-100.9-30.6-6.3-.9-11.7 4.5-10.8 10.8 3.7 25.8 13.7 84 30.6 100.9 21.9 21.9 57.9 21.5 80.3-.9 22.3-22.3 22.7-58.3.8-80.2zm-126.6 61.7C463.8 412.3 396.9 456 320 456c-76.9 0-143.8-43.7-177.2-107.6-12.5 37.4-25.2 43.9-28.3 46.5C159.1 460.7 234.5 504 320 504s160.9-43.3 205.5-109.1c-3.2-2.7-15.9-9.2-28.3-46.5zM122.7 224.5C137.9 129.2 220.5 56 320 56c99.5 0 182.1 73.2 197.3 168.5 2.1-.2 5.2-2.4 49.5 7C554.4 106 448.7 8 320 8S85.6 106 73.2 231.4c44.5-9.4 47.1-7.2 49.5-6.9zM320 400c51.9 0 115.3-32.9 123.3-80 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 8 47.1 71.4 80 123.3 80zm130.3-168.3c3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.6 6.2 4.6 9.3 3.7zM240 189.4c12.3 0 23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.8 19.2-21.6 31.5-21.6z" ], + "grin-tongue": [ 496, 512, [], "f589", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zM168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" ], + "grin-tongue-squint": [ 496, 512, [], "f58a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3zm36.9-281.1c-3.8-4.4-10.3-5.5-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.7 1.7 15.3-2.5 3.8-4.5 3.8-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zm-162.9 45.5l-80-48c-5-3-11.4-2-15.3 2.5-3.8 4.5-3.8 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.6 4.2 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3s-2.2-8.1-5.8-10.3z" ], + "grin-tongue-wink": [ 496, 512, [], "f58b", "M152 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm176-52c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80zm0 128c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-72c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm64 400c0 35.6-29.1 64.5-64.9 64-35.1-.5-63.1-29.8-63.1-65v-42.8l17.7-8.8c15-7.5 31.5 1.7 34.9 16.5l2.8 12.1c2.1 9.2 15.2 9.2 17.3 0l2.8-12.1c3.4-14.8 19.8-24.1 34.9-16.5l17.7 8.8V408zm28.2 25.3c2.2-8.1 3.8-16.5 3.8-25.3v-43.5c14.2-12.4 24.4-27.5 27.3-44.5 1.7-9.9-7.7-18.5-17.7-15.3-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.9-3.1-19.4 5.3-17.7 15.3 2.9 17 13.1 32.1 27.3 44.5V408c0 8.8 1.6 17.2 3.8 25.3C91.8 399.9 48 333 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 77-43.8 143.9-107.8 177.3z" ], + "grin-wink": [ 496, 512, [], "f58c", "M328 180c-25.69 0-55.88 16.92-59.86 42.12-1.75 11.22 11.5 18.24 19.83 10.84l9.55-8.48c14.81-13.19 46.16-13.19 60.97 0l9.55 8.48c8.48 7.43 21.56.25 19.83-10.84C383.88 196.92 353.69 180 328 180zm-160 60c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm185.55 64.64c-25.93 8.3-64.4 13.06-105.55 13.06s-79.62-4.75-105.55-13.06c-9.94-3.13-19.4 5.37-17.71 15.34C132.67 367.13 196.06 400 248 400s115.33-32.87 123.26-80.02c1.68-9.89-7.67-18.48-17.71-15.34zM248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 448c-110.28 0-200-89.72-200-200S137.72 56 248 56s200 89.72 200 200-89.72 200-200 200z" ], + "hand-lizard": [ 576, 512, [], "f258", "M556.686 290.542L410.328 64.829C397.001 44.272 374.417 32 349.917 32H56C25.121 32 0 57.122 0 88v8c0 44.112 35.888 80 80 80h196.042l-18.333 48H144c-48.523 0-88 39.477-88 88 0 30.879 25.121 56 56 56h131.552c2.987 0 5.914.549 8.697 1.631L352 408.418V480h224V355.829c0-23.225-6.679-45.801-19.314-65.287zM528 432H400v-23.582c0-19.948-12.014-37.508-30.604-44.736l-99.751-38.788A71.733 71.733 0 0 0 243.552 320H112c-4.411 0-8-3.589-8-8 0-22.056 17.944-40 40-40h113.709c19.767 0 37.786-12.407 44.84-30.873l24.552-64.281c8.996-23.553-8.428-48.846-33.63-48.846H80c-17.645 0-32-14.355-32-32v-8c0-4.411 3.589-8 8-8h293.917c8.166 0 15.693 4.09 20.137 10.942l146.358 225.715A71.84 71.84 0 0 1 528 355.829V432z" ], + "hand-paper": [ 448, 512, [], "f256", "M372.57 112.641v-10.825c0-43.612-40.52-76.691-83.039-65.546-25.629-49.5-94.09-47.45-117.982.747C130.269 26.456 89.144 57.945 89.144 102v126.13c-19.953-7.427-43.308-5.068-62.083 8.871-29.355 21.796-35.794 63.333-14.55 93.153L132.48 498.569a32 32 0 0 0 26.062 13.432h222.897c14.904 0 27.835-10.289 31.182-24.813l30.184-130.958A203.637 203.637 0 0 0 448 310.564V179c0-40.62-35.523-71.992-75.43-66.359zm27.427 197.922c0 11.731-1.334 23.469-3.965 34.886L368.707 464h-201.92L51.591 302.303c-14.439-20.27 15.023-42.776 29.394-22.605l27.128 38.079c8.995 12.626 29.031 6.287 29.031-9.283V102c0-25.645 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V67c0-25.663 36.571-24.81 36.571.691V256c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16V101.125c0-25.672 36.57-24.81 36.57.691V256c0 8.837 7.163 16 16 16h6.857c8.837 0 16-7.163 16-16v-76.309c0-26.242 36.57-25.64 36.57-.691v131.563z" ], + "hand-peace": [ 448, 512, [], "f25b", "M362.146 191.976c-13.71-21.649-38.761-34.016-65.006-30.341V74c0-40.804-32.811-74-73.141-74-40.33 0-73.14 33.196-73.14 74L160 168l-18.679-78.85C126.578 50.843 83.85 32.11 46.209 47.208 8.735 62.238-9.571 104.963 5.008 142.85l55.757 144.927c-30.557 24.956-43.994 57.809-24.733 92.218l54.853 97.999C102.625 498.97 124.73 512 148.575 512h205.702c30.744 0 57.558-21.44 64.555-51.797l27.427-118.999a67.801 67.801 0 0 0 1.729-15.203L448 256c0-44.956-43.263-77.343-85.854-64.024zM399.987 326c0 1.488-.169 2.977-.502 4.423l-27.427 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H148.575c-6.486 0-12.542-3.621-15.805-9.449l-54.854-98c-4.557-8.141-2.619-18.668 4.508-24.488l26.647-21.764a16 16 0 0 0 4.812-18.139l-64.09-166.549C37.226 92.956 84.37 74.837 96.51 106.389l59.784 155.357A16 16 0 0 0 171.227 272h11.632c8.837 0 16-7.163 16-16V74c0-34.375 50.281-34.43 50.281 0v182c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16v-28c0-25.122 36.567-25.159 36.567 0v28c0 8.837 7.163 16 16 16h6.856c8.837 0 16-7.163 16-16 0-25.12 36.567-25.16 36.567 0v70z" ], + "hand-point-down": [ 448, 512, [], "f0a7", "M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z" ], + "hand-point-left": [ 512, 512, [], "f0a5", "M0 220.8C0 266.416 37.765 304 83.2 304h35.647a93.148 93.148 0 0 0 7.929 22.064c-2.507 22.006 3.503 44.978 15.985 62.791C143.9 441.342 180.159 480 242.701 480H264c60.063 0 98.512-40 127.2-40h2.679c5.747 4.952 13.536 8 22.12 8h64c17.673 0 32-12.894 32-28.8V188.8c0-15.906-14.327-28.8-32-28.8h-64c-8.584 0-16.373 3.048-22.12 8H391.2c-6.964 0-14.862-6.193-30.183-23.668l-.129-.148-.131-.146c-8.856-9.937-18.116-20.841-25.851-33.253C316.202 80.537 304.514 32 259.2 32c-56.928 0-92 35.286-92 83.2 0 8.026.814 15.489 2.176 22.4H83.2C38.101 137.6 0 175.701 0 220.8zm48 0c0-18.7 16.775-35.2 35.2-35.2h158.4c0-17.325-26.4-35.2-26.4-70.4 0-26.4 20.625-35.2 44-35.2 8.794 0 20.445 32.712 34.926 56.1 9.074 14.575 19.524 27.225 30.799 39.875 16.109 18.374 33.836 36.633 59.075 39.596v176.752C341.21 396.087 309.491 432 264 432h-21.299c-40.524 0-57.124-22.197-50.601-61.325-14.612-8.001-24.151-33.979-12.925-53.625-19.365-18.225-17.787-46.381-4.95-61.05H83.2C64.225 256 48 239.775 48 220.8zM448 360c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z" ], + "hand-point-right": [ 512, 512, [], "f0a4", "M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z" ], + "hand-point-up": [ 448, 512, [], "f0a6", "M105.6 83.2v86.177a115.52 115.52 0 0 0-22.4-2.176c-47.914 0-83.2 35.072-83.2 92 0 45.314 48.537 57.002 78.784 75.707 12.413 7.735 23.317 16.994 33.253 25.851l.146.131.148.129C129.807 376.338 136 384.236 136 391.2v2.679c-4.952 5.747-8 13.536-8 22.12v64c0 17.673 12.894 32 28.8 32h230.4c15.906 0 28.8-14.327 28.8-32v-64c0-8.584-3.048-16.373-8-22.12V391.2c0-28.688 40-67.137 40-127.2v-21.299c0-62.542-38.658-98.8-91.145-99.94-17.813-12.482-40.785-18.491-62.791-15.985A93.148 93.148 0 0 0 272 118.847V83.2C272 37.765 234.416 0 188.8 0c-45.099 0-83.2 38.101-83.2 83.2zm118.4 0v91.026c14.669-12.837 42.825-14.415 61.05 4.95 19.646-11.227 45.624-1.687 53.625 12.925 39.128-6.524 61.325 10.076 61.325 50.6V264c0 45.491-35.913 77.21-39.676 120H183.571c-2.964-25.239-21.222-42.966-39.596-59.075-12.65-11.275-25.3-21.725-39.875-30.799C80.712 279.645 48 267.994 48 259.2c0-23.375 8.8-44 35.2-44 35.2 0 53.075 26.4 70.4 26.4V83.2c0-18.425 16.5-35.2 35.2-35.2 18.975 0 35.2 16.225 35.2 35.2zM352 424c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24z" ], + "hand-pointer": [ 448, 512, [], "f25a", "M358.182 179.361c-19.493-24.768-52.679-31.945-79.872-19.098-15.127-15.687-36.182-22.487-56.595-19.629V67c0-36.944-29.736-67-66.286-67S89.143 30.056 89.143 67v161.129c-19.909-7.41-43.272-5.094-62.083 8.872-29.355 21.795-35.793 63.333-14.55 93.152l109.699 154.001C134.632 501.59 154.741 512 176 512h178.286c30.802 0 57.574-21.5 64.557-51.797l27.429-118.999A67.873 67.873 0 0 0 448 326v-84c0-46.844-46.625-79.273-89.818-62.639zM80.985 279.697l27.126 38.079c8.995 12.626 29.031 6.287 29.031-9.283V67c0-25.12 36.571-25.16 36.571 0v175c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16v-35c0-25.12 36.571-25.16 36.571 0v35c0 8.836 7.163 16 16 16H272c8.837 0 16-7.164 16-16v-21c0-25.12 36.571-25.16 36.571 0v21c0 8.836 7.163 16 16 16h6.857c8.837 0 16-7.164 16-16 0-25.121 36.571-25.16 36.571 0v84c0 1.488-.169 2.977-.502 4.423l-27.43 119.001c-1.978 8.582-9.29 14.576-17.782 14.576H176c-5.769 0-11.263-2.878-14.697-7.697l-109.712-154c-14.406-20.223 14.994-42.818 29.394-22.606zM176.143 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.733 0-14-7.163-14-16zm75.428 0v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16zM327 400v-96c0-8.837 6.268-16 14-16h6c7.732 0 14 7.163 14 16v96c0 8.837-6.268 16-14 16h-6c-7.732 0-14-7.163-14-16z" ], + "hand-rock": [ 512, 512, [], "f255", "M408.864 79.052c-22.401-33.898-66.108-42.273-98.813-23.588-29.474-31.469-79.145-31.093-108.334-.022-47.16-27.02-108.71 5.055-110.671 60.806C44.846 105.407 0 140.001 0 187.429v56.953c0 32.741 14.28 63.954 39.18 85.634l97.71 85.081c4.252 3.702 3.11 5.573 3.11 32.903 0 17.673 14.327 32 32 32h252c17.673 0 32-14.327 32-32 0-23.513-1.015-30.745 3.982-42.37l42.835-99.656c6.094-14.177 9.183-29.172 9.183-44.568V146.963c0-52.839-54.314-88.662-103.136-67.911zM464 261.406a64.505 64.505 0 0 1-5.282 25.613l-42.835 99.655c-5.23 12.171-7.883 25.04-7.883 38.25V432H188v-10.286c0-16.37-7.14-31.977-19.59-42.817l-97.71-85.08C56.274 281.255 48 263.236 48 244.381v-56.953c0-33.208 52-33.537 52 .677v41.228a16 16 0 0 0 5.493 12.067l7 6.095A16 16 0 0 0 139 235.429V118.857c0-33.097 52-33.725 52 .677v26.751c0 8.836 7.164 16 16 16h7c8.836 0 16-7.164 16-16v-41.143c0-33.134 52-33.675 52 .677v40.466c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16v-27.429c0-33.03 52-33.78 52 .677v26.751c0 8.836 7.163 16 16 16h7c8.837 0 16-7.164 16-16 0-33.146 52-33.613 52 .677v114.445z" ], + "hand-scissors": [ 512, 512, [], "f257", "M256 480l70-.013c5.114 0 10.231-.583 15.203-1.729l118.999-27.427C490.56 443.835 512 417.02 512 386.277V180.575c0-23.845-13.03-45.951-34.005-57.69l-97.999-54.853c-34.409-19.261-67.263-5.824-92.218 24.733L142.85 37.008c-37.887-14.579-80.612 3.727-95.642 41.201-15.098 37.642 3.635 80.37 41.942 95.112L168 192l-94-9.141c-40.804 0-74 32.811-74 73.14 0 40.33 33.196 73.141 74 73.141h87.635c-3.675 26.245 8.692 51.297 30.341 65.006C178.657 436.737 211.044 480 256 480zm0-48.013c-25.16 0-25.12-36.567 0-36.567 8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16h-28c-25.159 0-25.122-36.567 0-36.567h28c8.837 0 16-7.163 16-16v-6.856c0-8.837-7.163-16-16-16H74c-34.43 0-34.375-50.281 0-50.281h182c8.837 0 16-7.163 16-16v-11.632a16 16 0 0 0-10.254-14.933L106.389 128.51c-31.552-12.14-13.432-59.283 19.222-46.717l166.549 64.091a16.001 16.001 0 0 0 18.139-4.812l21.764-26.647c5.82-7.127 16.348-9.064 24.488-4.508l98 54.854c5.828 3.263 9.449 9.318 9.449 15.805v205.701c0 8.491-5.994 15.804-14.576 17.782l-119.001 27.427a19.743 19.743 0 0 1-4.423.502h-70z" ], + "hand-spock": [ 512, 512, [], "f259", "M21.096 381.79l129.092 121.513a32 32 0 0 0 21.932 8.698h237.6c14.17 0 26.653-9.319 30.68-22.904l31.815-107.313A115.955 115.955 0 0 0 477 348.811v-36.839c0-4.051.476-8.104 1.414-12.045l31.73-133.41c10.099-42.412-22.316-82.738-65.544-82.525-4.144-24.856-22.543-47.165-49.85-53.992-35.803-8.952-72.227 12.655-81.25 48.75L296.599 184 274.924 52.01c-8.286-36.07-44.303-58.572-80.304-50.296-29.616 6.804-50.138 32.389-51.882 61.295-42.637.831-73.455 40.563-64.071 81.844l31.04 136.508c-27.194-22.515-67.284-19.992-91.482 5.722-25.376 26.961-24.098 69.325 2.871 94.707zm32.068-61.811l.002-.001c7.219-7.672 19.241-7.98 26.856-.813l53.012 49.894C143.225 378.649 160 371.4 160 357.406v-69.479c0-1.193-.134-2.383-.397-3.546l-34.13-150.172c-5.596-24.617 31.502-32.86 37.054-8.421l30.399 133.757a16 16 0 0 0 15.603 12.454h8.604c10.276 0 17.894-9.567 15.594-19.583l-41.62-181.153c-5.623-24.469 31.39-33.076 37.035-8.508l45.22 196.828A16 16 0 0 0 288.956 272h13.217a16 16 0 0 0 15.522-12.119l42.372-169.49c6.104-24.422 42.962-15.159 36.865 9.217L358.805 252.12c-2.521 10.088 5.115 19.88 15.522 19.88h9.694a16 16 0 0 0 15.565-12.295L426.509 146.6c5.821-24.448 42.797-15.687 36.966 8.802L431.72 288.81a100.094 100.094 0 0 0-2.72 23.162v36.839c0 6.548-.943 13.051-2.805 19.328L397.775 464h-219.31L53.978 346.836c-7.629-7.18-7.994-19.229-.814-26.857z" ], + handshake: [ 640, 512, [], "f2b5", "M519.2 127.9l-47.6-47.6A56.252 56.252 0 0 0 432 64H205.2c-14.8 0-29.1 5.9-39.6 16.3L118 127.9H0v255.7h64c17.6 0 31.8-14.2 31.9-31.7h9.1l84.6 76.4c30.9 25.1 73.8 25.7 105.6 3.8 12.5 10.8 26 15.9 41.1 15.9 18.2 0 35.3-7.4 48.8-24 22.1 8.7 48.2 2.6 64-16.8l26.2-32.3c5.6-6.9 9.1-14.8 10.9-23h57.9c.1 17.5 14.4 31.7 31.9 31.7h64V127.9H519.2zM48 351.6c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16zm390-6.9l-26.1 32.2c-2.8 3.4-7.8 4-11.3 1.2l-23.9-19.4-30 36.5c-6 7.3-15 4.8-18 2.4l-36.8-31.5-15.6 19.2c-13.9 17.1-39.2 19.7-55.3 6.6l-97.3-88H96V175.8h41.9l61.7-61.6c2-.8 3.7-1.5 5.7-2.3H262l-38.7 35.5c-29.4 26.9-31.1 72.3-4.4 101.3 14.8 16.2 61.2 41.2 101.5 4.4l8.2-7.5 108.2 87.8c3.4 2.8 3.9 7.9 1.2 11.3zm106-40.8h-69.2c-2.3-2.8-4.9-5.4-7.7-7.7l-102.7-83.4 12.5-11.4c6.5-6 7-16.1 1-22.6L367 167.1c-6-6.5-16.1-6.9-22.6-1l-55.2 50.6c-9.5 8.7-25.7 9.4-34.6 0-9.3-9.9-8.5-25.1 1.2-33.9l65.6-60.1c7.4-6.8 17-10.5 27-10.5l83.7-.2c2.1 0 4.1.8 5.5 2.3l61.7 61.6H544v128zm48 47.7c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16z" ], + hdd: [ 576, 512, [], "f0a0", "M567.403 235.642L462.323 84.589A48 48 0 0 0 422.919 64H153.081a48 48 0 0 0-39.404 20.589L8.597 235.642A48.001 48.001 0 0 0 0 263.054V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V263.054c0-9.801-3-19.366-8.597-27.412zM153.081 112h269.838l77.913 112H75.168l77.913-112zM528 400H48V272h480v128zm-32-64c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32zm-96 0c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32z" ], + heart: [ 512, 512, [], "f004", "M458.4 64.3C400.6 15.7 311.3 23 256 79.3 200.7 23 111.4 15.6 53.6 64.3-21.6 127.6-10.6 230.8 43 285.5l175.4 178.7c10 10.2 23.4 15.9 37.6 15.9 14.3 0 27.6-5.6 37.6-15.8L469 285.6c53.5-54.7 64.7-157.9-10.6-221.3zm-23.6 187.5L259.4 430.5c-2.4 2.4-4.4 2.4-6.8 0L77.2 251.8c-36.5-37.2-43.9-107.6 7.3-150.7 38.9-32.7 98.9-27.8 136.5 10.5l35 35.7 35-35.7c37.8-38.5 97.8-43.2 136.5-10.6 51.1 43.1 43.5 113.9 7.3 150.8z" ], + hospital: [ 448, 512, [], "f0f8", "M128 244v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12zm140 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm-76 84v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm76 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm180 124v36H0v-36c0-6.627 5.373-12 12-12h19.5V85.035C31.5 73.418 42.245 64 55.5 64H144V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v40h88.5c13.255 0 24 9.418 24 21.035V464H436c6.627 0 12 5.373 12 12zM79.5 463H192v-67c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v67h112.5V112H304v24c0 13.255-10.745 24-24 24H168c-13.255 0-24-10.745-24-24v-24H79.5v351zM266 64h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6z" ], + hourglass: [ 384, 512, [], "f254", "M368 48h4c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12H12C5.373 0 0 5.373 0 12v24c0 6.627 5.373 12 12 12h4c0 80.564 32.188 165.807 97.18 208C47.899 298.381 16 383.9 16 464h-4c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12h-4c0-80.564-32.188-165.807-97.18-208C336.102 213.619 368 128.1 368 48zM64 48h256c0 101.62-57.307 184-128 184S64 149.621 64 48zm256 416H64c0-101.62 57.308-184 128-184s128 82.38 128 184z" ], + "id-badge": [ 384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm0 464H48V48h288v416zM144 112h96c8.8 0 16-7.2 16-16s-7.2-16-16-16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16zm48 176c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z" ], + "id-card": [ 576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 400H303.2c.9-4.5.8 3.6.8-22.4 0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6 0 26-.2 17.9.8 22.4H48V144h480v288zm-168-80h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm0-64h112c4.4 0 8-3.6 8-8v-16c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm-168 96c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z" ], + image: [ 512, 512, [], "f03e", "M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 336H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v276a6 6 0 0 1-6 6zM128 152c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zM96 352h320v-80l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L192 304l-39.515-39.515c-4.686-4.686-12.284-4.686-16.971 0L96 304v48z" ], + images: [ 576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v48H54a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6v-10h48zm42-336H150a6 6 0 0 0-6 6v244a6 6 0 0 0 6 6h372a6 6 0 0 0 6-6V86a6 6 0 0 0-6-6zm6-48c26.51 0 48 21.49 48 48v256c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h384zM264 144c0 22.091-17.909 40-40 40s-40-17.909-40-40 17.909-40 40-40 40 17.909 40 40zm-72 96l39.515-39.515c4.686-4.686 12.284-4.686 16.971 0L288 240l103.515-103.515c4.686-4.686 12.284-4.686 16.971 0L480 208v80H192v-48z" ], + keyboard: [ 576, 512, [], "f11c", "M528 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm8 336c0 4.411-3.589 8-8 8H48c-4.411 0-8-3.589-8-8V112c0-4.411 3.589-8 8-8h480c4.411 0 8 3.589 8 8v288zM170 270v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-336 82v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm384 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zM122 188v-28c0-6.627-5.373-12-12-12H82c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm96 0v-28c0-6.627-5.373-12-12-12h-28c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h28c6.627 0 12-5.373 12-12zm-98 158v-16c0-6.627-5.373-12-12-12H180c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h216c6.627 0 12-5.373 12-12z" ], + kiss: [ 496, 512, [], "f596", "M168 176c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm136 132c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" ], + "kiss-beam": [ 496, 512, [], "f597", "M168 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm56-148c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36C290.6 335.3 304 321 304 308zm24-156c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2 7.2 5.6 8.3 3.5 1 7.5-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 5.9-4.5 5.6-8.3-3.1-42.1-32-71.4-55.8-71.4z" ], + "kiss-wink-heart": [ 504, 512, [], "f598", "M304 308.5c0-19.2-28.8-41.5-71.5-44-3.8-.4-7.4 2.4-8.2 6.2-.9 3.8 1.1 7.7 4.7 9.2l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-5.7 2.4-6 12.2 0 14.8l16.9 7.2c13 5.5 20.8 13.5 20.8 21.5s-7.8 16-20.7 21.5l-17 7.2c-3.6 1.5-5.6 5.4-4.7 9.2.8 3.6 4.1 6.2 7.8 6.2h.5c42.8-2.5 71.5-24.8 71.5-44 0-13-13.4-27.3-35.2-36 21.7-9.1 35.1-23.4 35.1-36.4zm70.5-83.5l9.5 8.5c3.8 3.3 9.3 4 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 5.8 3.1 11.2.7 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0zM136 208.5c0 17.7 14.3 32 32 32s32-14.3 32-32-14.3-32-32-32-32 14.3-32 32zm365.1 194c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zM334 436.3c-26.1 12.5-55.2 19.7-86 19.7-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200c0 22.1-3.7 43.3-10.4 63.2 9 6.4 17 14.2 22.6 23.9 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-2.5-7.3 4.3 17.2-13.4-46.8z" ], + laugh: [ 496, 512, [], "f599", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 224c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm-160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z" ], + "laugh-beam": [ 496, 512, [], "f59a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM328 152c-23.8 0-52.7 29.3-56 71.4-.7 8.6 10.8 11.9 14.9 4.5l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.1-42.1-32-71.4-55.8-71.4zm-201 75.9l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c4.1 7.4 15.6 4 14.9-4.5-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.6 8.5 10.9 11.9 15.1 4.5zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z" ], + "laugh-squint": [ 496, 512, [], "f59b", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6S48 309.4 48 256s20.8-103.6 58.6-141.4S194.6 56 248 56s103.6 20.8 141.4 58.6S448 202.6 448 256s-20.8 103.6-58.6 141.4zM343.6 196l33.6-40.3c8.6-10.3-3.8-24.8-15.4-18l-80 48c-7.8 4.7-7.8 15.9 0 20.6l80 48c11.5 6.8 24-7.6 15.4-18L343.6 196zm-209.4 58.3l80-48c7.8-4.7 7.8-15.9 0-20.6l-80-48c-11.6-6.9-24 7.7-15.4 18l33.6 40.3-33.6 40.3c-8.7 10.4 3.8 24.8 15.4 18zM362.4 288H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z" ], + "laugh-wink": [ 496, 512, [], "f59c", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm141.4 389.4c-37.8 37.8-88 58.6-141.4 58.6s-103.6-20.8-141.4-58.6C68.8 359.6 48 309.4 48 256s20.8-103.6 58.6-141.4C144.4 76.8 194.6 56 248 56s103.6 20.8 141.4 58.6c37.8 37.8 58.6 88 58.6 141.4s-20.8 103.6-58.6 141.4zM328 164c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1zm-160 60c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm194.4 64H133.6c-8.2 0-14.5 7-13.5 15 7.5 59.2 58.9 105 121.1 105h13.6c62.2 0 113.6-45.8 121.1-105 1-8-5.3-15-13.5-15z" ], + lemon: [ 512, 512, [], "f094", "M484.112 27.889C455.989-.233 416.108-8.057 387.059 8.865 347.604 31.848 223.504-41.111 91.196 91.197-41.277 223.672 31.923 347.472 8.866 387.058c-16.922 29.051-9.1 68.932 19.022 97.054 28.135 28.135 68.011 35.938 97.057 19.021 39.423-22.97 163.557 49.969 295.858-82.329 132.474-132.477 59.273-256.277 82.331-295.861 16.922-29.05 9.1-68.931-19.022-97.054zm-22.405 72.894c-38.8 66.609 45.6 165.635-74.845 286.08-120.44 120.443-219.475 36.048-286.076 74.843-22.679 13.207-64.035-27.241-50.493-50.488 38.8-66.609-45.6-165.635 74.845-286.08C245.573 4.702 344.616 89.086 411.219 50.292c22.73-13.24 64.005 27.288 50.488 50.491zm-169.861 8.736c1.37 10.96-6.404 20.957-17.365 22.327-54.846 6.855-135.779 87.787-142.635 142.635-1.373 10.989-11.399 18.734-22.326 17.365-10.961-1.37-18.735-11.366-17.365-22.326 9.162-73.286 104.167-168.215 177.365-177.365 10.953-1.368 20.956 6.403 22.326 17.364z" ], + "life-ring": [ 512, 512, [], "f1cd", "M256 504c136.967 0 248-111.033 248-248S392.967 8 256 8 8 119.033 8 256s111.033 248 248 248zm-103.398-76.72l53.411-53.411c31.806 13.506 68.128 13.522 99.974 0l53.411 53.411c-63.217 38.319-143.579 38.319-206.796 0zM336 256c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zm91.28 103.398l-53.411-53.411c13.505-31.806 13.522-68.128 0-99.974l53.411-53.411c38.319 63.217 38.319 143.579 0 206.796zM359.397 84.72l-53.411 53.411c-31.806-13.505-68.128-13.522-99.973 0L152.602 84.72c63.217-38.319 143.579-38.319 206.795 0zM84.72 152.602l53.411 53.411c-13.506 31.806-13.522 68.128 0 99.974L84.72 359.398c-38.319-63.217-38.319-143.579 0-206.796z" ], + lightbulb: [ 384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zM128 176c0-35.29 28.71-64 64-64 8.837 0 16-7.164 16-16s-7.163-16-16-16c-52.935 0-96 43.065-96 96 0 8.836 7.164 16 16 16s16-7.164 16-16zm64-128c70.734 0 128 57.254 128 128 0 77.602-37.383 60.477-80.98 160h-94.04C101.318 236.33 64 253.869 64 176c0-70.735 57.254-128 128-128m0-48C94.805 0 16 78.803 16 176c0 101.731 51.697 91.541 90.516 192.674 3.55 9.249 12.47 15.326 22.376 15.326h126.215c9.906 0 18.826-6.078 22.376-15.326C316.303 267.541 368 277.731 368 176 368 78.803 289.195 0 192 0z" ], + "list-alt": [ 512, 512, [], "f022", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zm-42-92v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm-252 12c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36z" ], + map: [ 576, 512, [], "f279", "M560.02 32c-1.96 0-3.98.37-5.96 1.16L384.01 96H384L212 35.28A64.252 64.252 0 0 0 191.76 32c-6.69 0-13.37 1.05-19.81 3.14L20.12 87.95A32.006 32.006 0 0 0 0 117.66v346.32C0 473.17 7.53 480 15.99 480c1.96 0 3.97-.37 5.96-1.16L192 416l172 60.71a63.98 63.98 0 0 0 40.05.15l151.83-52.81A31.996 31.996 0 0 0 576 394.34V48.02c0-9.19-7.53-16.02-15.98-16.02zM224 90.42l128 45.19v285.97l-128-45.19V90.42zM48 418.05V129.07l128-44.53v286.2l-.64.23L48 418.05zm480-35.13l-128 44.53V141.26l.64-.24L528 93.95v288.97z" ], + meh: [ 496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm8 144H160c-13.2 0-24 10.8-24 24s10.8 24 24 24h176c13.2 0 24-10.8 24-24s-10.8-24-24-24z" ], + "meh-blank": [ 496, 512, [], "f5a4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-280c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" ], + "meh-rolling-eyes": [ 496, 512, [], "f5a5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm88-304c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm0 112c-22.1 0-40-17.9-40-40 0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40zm-104-40c0-39.8-32.2-72-72-72s-72 32.2-72 72 32.2 72 72 72 72-32.2 72-72zm-112 0c0-13.6 7.3-25.1 17.7-32.3-1 2.6-1.7 5.3-1.7 8.3 0 13.3 10.7 24 24 24s24-10.7 24-24c0-2.9-.7-5.7-1.7-8.3 10.4 7.2 17.7 18.7 17.7 32.3 0 22.1-17.9 40-40 40s-40-17.9-40-40zm192 128H184c-13.2 0-24 10.8-24 24s10.8 24 24 24h128c13.2 0 24-10.8 24-24s-10.8-24-24-24z" ], + "minus-square": [ 448, 512, [], "f146", "M108 284c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h232c6.6 0 12 5.4 12 12v32c0 6.6-5.4 12-12 12H108zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "money-bill-alt": [ 640, 512, [], "f3d1", "M320 144c-53.02 0-96 50.14-96 112 0 61.85 42.98 112 96 112 53 0 96-50.13 96-112 0-61.86-42.98-112-96-112zm40 168c0 4.42-3.58 8-8 8h-64c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h16v-55.44l-.47.31a7.992 7.992 0 0 1-11.09-2.22l-8.88-13.31a7.992 7.992 0 0 1 2.22-11.09l15.33-10.22a23.99 23.99 0 0 1 13.31-4.03H328c4.42 0 8 3.58 8 8v88h16c4.42 0 8 3.58 8 8v16zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zm-16 272c-35.35 0-64 28.65-64 64H112c0-35.35-28.65-64-64-64V176c35.35 0 64-28.65 64-64h416c0 35.35 28.65 64 64 64v160z" ], + moon: [ 512, 512, [], "f186", "M279.135 512c78.756 0 150.982-35.804 198.844-94.775 28.27-34.831-2.558-85.722-46.249-77.401-82.348 15.683-158.272-47.268-158.272-130.792 0-48.424 26.06-92.292 67.434-115.836 38.745-22.05 28.999-80.788-15.022-88.919A257.936 257.936 0 0 0 279.135 0c-141.36 0-256 114.575-256 256 0 141.36 114.576 256 256 256zm0-464c12.985 0 25.689 1.201 38.016 3.478-54.76 31.163-91.693 90.042-91.693 157.554 0 113.848 103.641 199.2 215.252 177.944C402.574 433.964 344.366 464 279.135 464c-114.875 0-208-93.125-208-208s93.125-208 208-208z" ], + newspaper: [ 576, 512, [], "f1ea", "M552 64H112c-20.858 0-38.643 13.377-45.248 32H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h496c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24zM48 392V144h16v248c0 4.411-3.589 8-8 8s-8-3.589-8-8zm480 8H111.422c.374-2.614.578-5.283.578-8V112h416v288zM172 280h136c6.627 0 12-5.373 12-12v-96c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v96c0 6.627 5.373 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H172c-6.627 0-12-5.373-12-12zm192 0v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0-144v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0 72v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12z" ], + "object-group": [ 512, 512, [], "f247", "M500 128c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v256H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V128h12zm-52-64h32v32h-32V64zM32 64h32v32H32V64zm32 384H32v-32h32v32zm416 0h-32v-32h32v32zm-40-64h-12c-6.627 0-12 5.373-12 12v12H96v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h320v12c0 6.627 5.373 12 12 12h12v256zm-36-192h-84v-52c0-6.628-5.373-12-12-12H108c-6.627 0-12 5.372-12 12v168c0 6.628 5.373 12 12 12h84v52c0 6.628 5.373 12 12 12h200c6.627 0 12-5.372 12-12V204c0-6.628-5.373-12-12-12zm-268-24h144v112H136V168zm240 176H232v-24h76c6.627 0 12-5.372 12-12v-76h56v112z" ], + "object-ungroup": [ 576, 512, [], "f248", "M564 224c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12h-88v-24h12c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v12H96V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v72c0 6.627 5.373 12 12 12h12v160H12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h88v24h-12c-6.627 0-12 5.373-12 12v72c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12V224h12zM352 64h32v32h-32V64zm0 256h32v32h-32v-32zM64 352H32v-32h32v32zm0-256H32V64h32v32zm32 216v-12c0-6.627-5.373-12-12-12H72V128h12c6.627 0 12-5.373 12-12v-12h224v12c0 6.627 5.373 12 12 12h12v160h-12c-6.627 0-12 5.373-12 12v12H96zm128 136h-32v-32h32v32zm280-64h-12c-6.627 0-12 5.373-12 12v12H256v-12c0-6.627-5.373-12-12-12h-12v-24h88v12c0 6.627 5.373 12 12 12h72c6.627 0 12-5.373 12-12v-72c0-6.627-5.373-12-12-12h-12v-88h88v12c0 6.627 5.373 12 12 12h12v160zm40 64h-32v-32h32v32zm0-256h-32v-32h32v32z" ], + "paper-plane": [ 512, 512, [], "f1d8", "M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z" ], + "pause-circle": [ 512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm96-280v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16zm-112 0v160c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16z" ], + "play-circle": [ 512, 512, [], "f144", "M371.7 238l-176-107c-15.8-8.8-35.7 2.5-35.7 21v208c0 18.4 19.8 29.8 35.7 21l176-101c16.4-9.1 16.4-32.8 0-42zM504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256z" ], + "plus-square": [ 448, 512, [], "f0fe", "M352 240v32c0 6.6-5.4 12-12 12h-88v88c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-88h-88c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h88v-88c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v88h88c6.6 0 12 5.4 12 12zm96-160v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-48 346V86c0-3.3-2.7-6-6-6H54c-3.3 0-6 2.7-6 6v340c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" ], + "question-circle": [ 512, 512, [], "f059", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 448c-110.532 0-200-89.431-200-200 0-110.495 89.472-200 200-200 110.491 0 200 89.471 200 200 0 110.53-89.431 200-200 200zm107.244-255.2c0 67.052-72.421 68.084-72.421 92.863V300c0 6.627-5.373 12-12 12h-45.647c-6.627 0-12-5.373-12-12v-8.659c0-35.745 27.1-50.034 47.579-61.516 17.561-9.845 28.324-16.541 28.324-29.579 0-17.246-21.999-28.693-39.784-28.693-23.189 0-33.894 10.977-48.942 29.969-4.057 5.12-11.46 6.071-16.666 2.124l-27.824-21.098c-5.107-3.872-6.251-11.066-2.644-16.363C184.846 131.491 214.94 112 261.794 112c49.071 0 101.45 38.304 101.45 88.8zM298 368c0 23.159-18.841 42-42 42s-42-18.841-42-42 18.841-42 42-42 42 18.841 42 42z" ], + registered: [ 512, 512, [], "f25d", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm110.442-81.791c-53.046-96.284-50.25-91.468-53.271-96.085 24.267-13.879 39.482-41.563 39.482-73.176 0-52.503-30.247-85.252-101.498-85.252h-78.667c-6.617 0-12 5.383-12 12V380c0 6.617 5.383 12 12 12h38.568c6.617 0 12-5.383 12-12v-83.663h31.958l47.515 89.303a11.98 11.98 0 0 0 10.593 6.36h42.81c9.14 0 14.914-9.799 10.51-17.791zM256.933 239.906h-33.875v-64.14h27.377c32.417 0 38.929 12.133 38.929 31.709-.001 20.913-11.518 32.431-32.431 32.431z" ], + "sad-cry": [ 496, 512, [], "f5b3", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm144 386.4V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v151.4C315.5 447 282.8 456 248 456s-67.5-9-96-24.6V280c0-13.2-10.8-24-24-24s-24 10.8-24 24v114.4c-34.6-36-56-84.7-56-138.4 0-110.3 89.7-200 200-200s200 89.7 200 200c0 53.7-21.4 102.5-56 138.4zM205.8 234.5c4.4-2.4 6.9-7.4 6.1-12.4-4-25.2-34.2-42.1-59.8-42.1s-55.9 16.9-59.8 42.1c-.8 5 1.7 10 6.1 12.4 4.4 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.3 7.9 4.8 13.7 1.6zM344 180c-25.7 0-55.9 16.9-59.8 42.1-.8 5 1.7 10 6.1 12.4 4.5 2.4 9.9 1.8 13.7-1.6l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c2.5 2.2 8 4.7 13.7 1.6 4.4-2.4 6.9-7.4 6.1-12.4-3.9-25.2-34.1-42.1-59.8-42.1zm-96 92c-30.9 0-56 28.7-56 64s25.1 64 56 64 56-28.7 56-64-25.1-64-56-64z" ], + "sad-tear": [ 496, 512, [], "f5b4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm8-152c-13.2 0-24 10.8-24 24s10.8 24 24 24c23.8 0 46.3 10.5 61.6 28.8 8.1 9.8 23.2 11.9 33.8 3.1 10.2-8.5 11.6-23.6 3.1-33.8C330 320.8 294.1 304 256 304zm-88-64c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-165.6 98.8C151 290.1 126 325.4 126 342.9c0 22.7 18.8 41.1 42 41.1s42-18.4 42-41.1c0-17.5-25-52.8-36.4-68.1-2.8-3.7-8.4-3.7-11.2 0z" ], + save: [ 448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM272 80v80H144V80h128zm122 352H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h42v104c0 13.255 10.745 24 24 24h176c13.255 0 24-10.745 24-24V83.882l78.243 78.243a6 6 0 0 1 1.757 4.243V426a6 6 0 0 1-6 6zM224 232c-48.523 0-88 39.477-88 88s39.477 88 88 88 88-39.477 88-88-39.477-88-88-88zm0 128c-22.056 0-40-17.944-40-40s17.944-40 40-40 40 17.944 40 40-17.944 40-40 40z" ], + "share-square": [ 576, 512, [], "f14d", "M561.938 158.06L417.94 14.092C387.926-15.922 336 5.097 336 48.032v57.198c-42.45 1.88-84.03 6.55-120.76 17.99-35.17 10.95-63.07 27.58-82.91 49.42C108.22 199.2 96 232.6 96 271.94c0 61.697 33.178 112.455 84.87 144.76 37.546 23.508 85.248-12.651 71.02-55.74-15.515-47.119-17.156-70.923 84.11-78.76V336c0 42.993 51.968 63.913 81.94 33.94l143.998-144c18.75-18.74 18.75-49.14 0-67.88zM384 336V232.16C255.309 234.082 166.492 255.35 206.31 376 176.79 357.55 144 324.08 144 271.94c0-109.334 129.14-118.947 240-119.85V48l144 144-144 144zm24.74 84.493a82.658 82.658 0 0 0 20.974-9.303c7.976-4.952 18.286.826 18.286 10.214V464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h132c6.627 0 12 5.373 12 12v4.486c0 4.917-2.987 9.369-7.569 11.152-13.702 5.331-26.396 11.537-38.05 18.585a12.138 12.138 0 0 1-6.28 1.777H54a6 6 0 0 0-6 6v340a6 6 0 0 0 6 6h340a6 6 0 0 0 6-6v-25.966c0-5.37 3.579-10.059 8.74-11.541z" ], + smile: [ 496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm4 72.6c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.1-8.4-25.3-7.1-33.8 3.1z" ], + "smile-beam": [ 496, 512, [], "f5b8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm84-143.4c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.6-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.2-8.4-25.3-7.1-33.8 3.1zM136.5 211c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3 3.4 1.1 7.4-.5 9.3-3.7l9.5-17zM328 152c-23.8 0-52.7 29.3-56 71.4-.3 3.7 2.1 7.2 5.7 8.3 3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4z" ], + "smile-wink": [ 496, 512, [], "f4da", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm117.8-146.4c-10.2-8.5-25.3-7.1-33.8 3.1-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8zM168 240c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-60c-25.7 0-55.9 16.9-59.9 42.1-1.7 11.2 11.5 18.2 19.8 10.8l9.5-8.5c14.8-13.2 46.2-13.2 61 0l9.5 8.5c8.5 7.4 21.6.3 19.8-10.8-3.8-25.2-34-42.1-59.7-42.1z" ], + snowflake: [ 448, 512, [], "f2dc", "M438.237 355.927l-66.574-38.54 59.448-10.327c5.846-1.375 10.609-5.183 13.458-10.13 2.48-4.307 3.506-9.478 2.524-14.651-2.11-11.115-12.686-18.039-23.621-15.467l-85.423 31.115L255.914 256l82.136-41.926 85.423 31.115c10.936 2.572 21.512-4.352 23.621-15.467 2.111-11.115-5.046-22.209-15.981-24.781l-59.448-10.327 66.573-38.54c9.54-5.523 12.615-18.092 6.867-28.074-5.748-9.982-18.14-13.596-27.68-8.074l-66.574 38.54 20.805-56.787c3.246-10.782-2.758-22.542-13.413-26.268-10.654-3.725-21.922 1.997-25.168 12.779l-15.838 89.735-72.423 41.926V136l69.585-58.621c7.689-8.21 6.997-20.856-1.548-28.245-8.545-7.391-21.705-6.723-29.394 1.486l-38.644 46.46V20c0-11.046-9.318-20-20.813-20s-20.813 8.954-20.813 20v77.08l-38.644-46.46c-7.689-8.21-20.849-8.876-29.394-1.486-8.544 7.389-9.236 20.035-1.547 28.245L203.187 136v83.853l-72.423-41.926-15.838-89.736c-3.247-10.782-14.515-16.504-25.169-12.779-10.656 3.725-16.659 15.486-13.413 26.268l20.805 56.787-66.573-38.54c-9.54-5.523-21.933-1.908-27.68 8.074s-2.673 22.551 6.867 28.074l66.574 38.54-59.449 10.328C5.953 207.515-1.202 218.609.907 229.724c2.11 11.114 12.686 18.038 23.622 15.466l85.422-31.115L192.086 256l-82.136 41.926-85.423-31.115c-10.936-2.572-21.511 4.352-23.622 15.466-2.109 11.113 5.046 22.209 15.981 24.781l59.449 10.328-66.574 38.54C.223 361.449-2.852 374.018 2.896 384s18.14 13.597 27.68 8.074l66.574-38.54-20.805 56.786c-1.735 5.764-.828 11.805 2.02 16.751 2.48 4.307 6.433 7.784 11.392 9.517 10.655 3.725 21.923-1.997 25.169-12.779l15.838-89.736 72.423-41.926V376l-69.585 58.621c-7.69 8.21-6.997 20.855 1.547 28.245 8.544 7.388 21.705 6.723 29.394-1.487l38.644-46.46V492c0 11.046 9.318 20 20.813 20s20.813-8.954 20.813-20v-77.081l38.644 46.46c4.111 4.389 9.782 6.621 15.478 6.621 4.96 0 9.939-1.694 13.916-5.134 8.545-7.39 9.237-20.035 1.548-28.245L244.813 376v-83.853l72.423 41.926 15.838 89.736c3.246 10.782 14.514 16.504 25.168 12.779 10.653-3.726 16.659-15.487 13.412-26.268l-20.805-56.787 66.574 38.54c9.54 5.523 21.933 1.908 27.68-8.074 5.749-9.981 2.675-22.55-6.866-28.072z" ], + square: [ 448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h340c3.3 0 6 2.7 6 6v340c0 3.3-2.7 6-6 6z" ], + star: [ 576, 512, [], "f005", "M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z" ], + "star-half": [ 576, 512, [], "f089", "M288 385.3l-124.3 65.4 23.7-138.4-100.6-98 139-20.2 62.2-126V0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6v-54.3z" ], + "sticky-note": [ 448, 512, [], "f249", "M448 348.106V80c0-26.51-21.49-48-48-48H48C21.49 32 0 53.49 0 80v351.988c0 26.51 21.49 48 48 48h268.118a48 48 0 0 0 33.941-14.059l83.882-83.882A48 48 0 0 0 448 348.106zm-128 80v-76.118h76.118L320 428.106zM400 80v223.988H296c-13.255 0-24 10.745-24 24v104H48V80h352z" ], + "stop-circle": [ 512, 512, [], "f28d", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm296-80v160c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16z" ], + sun: [ 512, 512, [], "f185", "M220.116 487.936l-20.213-49.425a3.992 3.992 0 0 0-5.808-1.886l-45.404 28.104c-29.466 18.24-66.295-8.519-58.054-42.179l12.699-51.865a3.993 3.993 0 0 0-3.59-4.941l-53.251-3.951c-34.554-2.562-48.632-45.855-22.174-68.247L65.08 259.05a3.992 3.992 0 0 0 0-6.106l-40.76-34.497c-26.45-22.384-12.39-65.682 22.174-68.246l53.251-3.951a3.993 3.993 0 0 0 3.59-4.941L90.637 89.443c-8.239-33.656 28.581-60.42 58.054-42.179l45.403 28.104a3.993 3.993 0 0 0 5.808-1.887l20.213-49.425c13.116-32.071 58.638-32.081 71.758 0l20.212 49.424a3.994 3.994 0 0 0 5.809 1.887l45.403-28.104c29.464-18.236 66.297 8.513 58.054 42.179l-12.699 51.865a3.995 3.995 0 0 0 3.59 4.941l53.251 3.951c34.553 2.563 48.633 45.854 22.175 68.246l-40.76 34.497a3.993 3.993 0 0 0 0 6.107l40.76 34.496c26.511 22.441 12.322 65.689-22.175 68.247l-53.251 3.951a3.993 3.993 0 0 0-3.589 4.942l12.698 51.864c8.241 33.658-28.583 60.421-58.054 42.18l-45.403-28.104a3.994 3.994 0 0 0-5.809 1.887l-20.212 49.424c-13.159 32.178-58.675 31.993-71.757 0zm16.814-64.568l19.064 46.616 19.064-46.615c10.308-25.2 40.778-35.066 63.892-20.759l42.822 26.507-11.976-48.919c-6.475-26.444 12.38-52.339 39.487-54.349l50.226-3.726-38.444-32.536c-20.782-17.591-20.747-49.621.001-67.18l38.442-32.536-50.225-3.727c-27.151-2.015-45.95-27.948-39.488-54.349l11.978-48.919-42.823 26.507c-23.151 14.327-53.603 4.4-63.892-20.76l-19.064-46.615-19.064 46.617c-10.305 25.198-40.778 35.066-63.891 20.76l-42.823-26.508 11.977 48.918c6.474 26.446-12.381 52.338-39.488 54.35l-50.224 3.726 38.443 32.537c20.782 17.588 20.747 49.619 0 67.178L52.48 322.123l50.226 3.726c27.151 2.014 45.95 27.947 39.487 54.349l-11.977 48.919 42.823-26.507c23.188-14.355 53.622-4.352 63.891 20.758zM256 384c-70.58 0-128-57.421-128-128 0-70.58 57.42-128 128-128 70.579 0 128 57.42 128 128 0 70.579-57.421 128-128 128zm0-208c-44.112 0-80 35.888-80 80s35.888 80 80 80 80-35.888 80-80-35.888-80-80-80z" ], + surprise: [ 496, 512, [], "f5c2", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm0-176c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm-48-72c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm128-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" ], + "thumbs-down": [ 512, 512, [], "f165", "M466.27 225.31c4.674-22.647.864-44.538-8.99-62.99 2.958-23.868-4.021-48.565-17.34-66.99C438.986 39.423 404.117 0 327 0c-7 0-15 .01-22.22.01C201.195.01 168.997 40 128 40h-10.845c-5.64-4.975-13.042-8-21.155-8H32C14.327 32 0 46.327 0 64v240c0 17.673 14.327 32 32 32h64c11.842 0 22.175-6.438 27.708-16h7.052c19.146 16.953 46.013 60.653 68.76 83.4 13.667 13.667 10.153 108.6 71.76 108.6 57.58 0 95.27-31.936 95.27-104.73 0-18.41-3.93-33.73-8.85-46.54h36.48c48.602 0 85.82-41.565 85.82-85.58 0-19.15-4.96-34.99-13.73-49.84zM64 296c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm330.18 16.73H290.19c0 37.82 28.36 55.37 28.36 94.54 0 23.75 0 56.73-47.27 56.73-18.91-18.91-9.46-66.18-37.82-94.54C206.9 342.89 167.28 272 138.92 272H128V85.83c53.611 0 100.001-37.82 171.64-37.82h37.82c35.512 0 60.82 17.12 53.12 65.9 15.2 8.16 26.5 36.44 13.94 57.57 21.581 20.384 18.699 51.065 5.21 65.62 9.45 0 22.36 18.91 22.27 37.81-.09 18.91-16.71 37.82-37.82 37.82z" ], + "thumbs-up": [ 512, 512, [], "f164", "M466.27 286.69C475.04 271.84 480 256 480 236.85c0-44.015-37.218-85.58-85.82-85.58H357.7c4.92-12.81 8.85-28.13 8.85-46.54C366.55 31.936 328.86 0 271.28 0c-61.607 0-58.093 94.933-71.76 108.6-22.747 22.747-49.615 66.447-68.76 83.4H32c-17.673 0-32 14.327-32 32v240c0 17.673 14.327 32 32 32h64c14.893 0 27.408-10.174 30.978-23.95 44.509 1.001 75.06 39.94 177.802 39.94 7.22 0 15.22.01 22.22.01 77.117 0 111.986-39.423 112.94-95.33 13.319-18.425 20.299-43.122 17.34-66.99 9.854-18.452 13.664-40.343 8.99-62.99zm-61.75 53.83c12.56 21.13 1.26 49.41-13.94 57.57 7.7 48.78-17.608 65.9-53.12 65.9h-37.82c-71.639 0-118.029-37.82-171.64-37.82V240h10.92c28.36 0 67.98-70.89 94.54-97.46 28.36-28.36 18.91-75.63 37.82-94.54 47.27 0 47.27 32.98 47.27 56.73 0 39.17-28.36 56.72-28.36 94.54h103.99c21.11 0 37.73 18.91 37.82 37.82.09 18.9-12.82 37.81-22.27 37.81 13.489 14.555 16.371 45.236-5.21 65.62zM88 432c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z" ], + "times-circle": [ 512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm101.8-262.2L295.6 256l62.2 62.2c4.7 4.7 4.7 12.3 0 17l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L256 295.6l-62.2 62.2c-4.7 4.7-12.3 4.7-17 0l-22.6-22.6c-4.7-4.7-4.7-12.3 0-17l62.2-62.2-62.2-62.2c-4.7-4.7-4.7-12.3 0-17l22.6-22.6c4.7-4.7 12.3-4.7 17 0l62.2 62.2 62.2-62.2c4.7-4.7 12.3-4.7 17 0l22.6 22.6c4.7 4.7 4.7 12.3 0 17z" ], + tired: [ 496, 512, [], "f5c8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm129.1-303.8c-3.8-4.4-10.3-5.4-15.3-2.5l-80 48c-3.6 2.2-5.8 6.1-5.8 10.3s2.2 8.1 5.8 10.3l80 48c5.4 3.2 11.8 1.6 15.3-2.5 3.8-4.5 3.9-11 .1-15.5L343.6 208l33.6-40.3c3.8-4.5 3.7-11.1-.1-15.5zM220 208c0-4.2-2.2-8.1-5.8-10.3l-80-48c-5-3-11.5-1.9-15.3 2.5-3.8 4.5-3.9 11-.1 15.5l33.6 40.3-33.6 40.3c-3.8 4.5-3.7 11 .1 15.5 3.5 4.1 9.9 5.7 15.3 2.5l80-48c3.6-2.2 5.8-6.1 5.8-10.3zm28 64c-45.4 0-100.9 38.3-107.8 93.3-1.5 11.8 6.9 21.6 15.5 17.9C178.4 373.5 212 368 248 368s69.6 5.5 92.3 15.2c8.5 3.7 17-6 15.5-17.9-6.9-55-62.4-93.3-107.8-93.3z" ], + "trash-alt": [ 448, 512, [], "f2ed", "M192 188v216c0 6.627-5.373 12-12 12h-24c-6.627 0-12-5.373-12-12V188c0-6.627 5.373-12 12-12h24c6.627 0 12 5.373 12 12zm100-12h-24c-6.627 0-12 5.373-12 12v216c0 6.627 5.373 12 12 12h24c6.627 0 12-5.373 12-12V188c0-6.627-5.373-12-12-12zm132-96c13.255 0 24 10.745 24 24v12c0 6.627-5.373 12-12 12h-20v336c0 26.51-21.49 48-48 48H80c-26.51 0-48-21.49-48-48V128H12c-6.627 0-12-5.373-12-12v-12c0-13.255 10.745-24 24-24h74.411l34.018-56.696A48 48 0 0 1 173.589 0h100.823a48 48 0 0 1 41.16 23.304L349.589 80H424zm-269.611 0h139.223L276.16 50.913A6 6 0 0 0 271.015 48h-94.028a6 6 0 0 0-5.145 2.913L154.389 80zM368 128H80v330a6 6 0 0 0 6 6h276a6 6 0 0 0 6-6V128z" ], + user: [ 448, 512, [], "f007", "M313.6 304c-28.7 0-42.5 16-89.6 16-47.1 0-60.8-16-89.6-16C60.2 304 0 364.2 0 438.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-25.6c0-74.2-60.2-134.4-134.4-134.4zM400 464H48v-25.6c0-47.6 38.8-86.4 86.4-86.4 14.6 0 38.3 16 89.6 16 51.7 0 74.9-16 89.6-16 47.6 0 86.4 38.8 86.4 86.4V464zM224 288c79.5 0 144-64.5 144-144S303.5 0 224 0 80 64.5 80 144s64.5 144 144 144zm0-240c52.9 0 96 43.1 96 96s-43.1 96-96 96-96-43.1-96-96 43.1-96 96-96z" ], + "user-circle": [ 496, 512, [], "f2bd", "M248 104c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96zm0 144c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm0-240C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-49.7 0-95.1-18.3-130.1-48.4 14.9-23 40.4-38.6 69.6-39.5 20.8 6.4 40.6 9.6 60.5 9.6s39.7-3.1 60.5-9.6c29.2 1 54.7 16.5 69.6 39.5-35 30.1-80.4 48.4-130.1 48.4zm162.7-84.1c-24.4-31.4-62.1-51.9-105.1-51.9-10.2 0-26 9.6-57.6 9.6-31.5 0-47.4-9.6-57.6-9.6-42.9 0-80.6 20.5-105.1 51.9C61.9 339.2 48 299.2 48 256c0-110.3 89.7-200 200-200s200 89.7 200 200c0 43.2-13.9 83.2-37.3 115.9z" ], + "window-close": [ 512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h404c3.3 0 6 2.7 6 6v340zM356.5 194.6L295.1 256l61.4 61.4c4.6 4.6 4.6 12.1 0 16.8l-22.3 22.3c-4.6 4.6-12.1 4.6-16.8 0L256 295.1l-61.4 61.4c-4.6 4.6-12.1 4.6-16.8 0l-22.3-22.3c-4.6-4.6-4.6-12.1 0-16.8l61.4-61.4-61.4-61.4c-4.6-4.6-4.6-12.1 0-16.8l22.3-22.3c4.6-4.6 12.1-4.6 16.8 0l61.4 61.4 61.4-61.4c4.6-4.6 12.1-4.6 16.8 0l22.3 22.3c4.7 4.6 4.7 12.1 0 16.8z" ], + "window-maximize": [ 512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V192h416v234z" ], + "window-minimize": [ 512, 512, [], "f2d1", "M480 480H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h448c17.7 0 32 14.3 32 32s-14.3 32-32 32z" ], + "window-restore": [ 512, 512, [], "f2d2", "M464 0H144c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-96 464H48V256h320v208zm96-96h-48V144c0-26.5-21.5-48-48-48H144V48h320v320z" ] + }; + !function(c) { + try { + c(); + } catch (c) { + if (!m) throw c; + } + }(function() { + !function c(l, z) { + var h = Object.keys(z).reduce(function(c, l) { + var h = z[l]; + return h.icon ? c[h.iconName] = h.icon : c[l] = h, c; + }, {}); + "function" == typeof t.hooks.addPack ? t.hooks.addPack(l, h) : t.styles[l] = M({}, t.styles[l] || {}, h), + "fas" === l && c("fa", z); + }("far", f); + }); +}(), function() { + "use strict"; + var c = {}; + try { + "undefined" != typeof window && (c = window); + } catch (c) {} + var l = (c.navigator || {}).userAgent, h = void 0 === l ? "" : l, z = c, v = (~h.indexOf("MSIE") || h.indexOf("Trident/"), + "___FONT_AWESOME___"), m = function() { + try { + return !1; + } catch (c) { + return !1; + } + }(), s = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ], e = s.concat([ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ]); + [ "xs", "sm", "lg", "fw", "ul", "li", "border", "pull-left", "pull-right", "spin", "pulse", "rotate-90", "rotate-180", "rotate-270", "flip-horizontal", "flip-vertical", "stack", "stack-1x", "stack-2x", "inverse", "layers", "layers-text", "layers-counter" ].concat(s.map(function(c) { + return c + "x"; + })).concat(e.map(function(c) { + return "w-" + c; + })); + var a = z || {}; + a[v] || (a[v] = {}), a[v].styles || (a[v].styles = {}), a[v].hooks || (a[v].hooks = {}), + a[v].shims || (a[v].shims = []); + var t = a[v], M = Object.assign || function(c) { + for (var l = 1; l < arguments.length; l++) { + var h = arguments[l]; + for (var z in h) Object.prototype.hasOwnProperty.call(h, z) && (c[z] = h[z]); + } + return c; + }; + var f = { + "address-book": [ 448, 512, [], "f2b9", "M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z" ], + "address-card": [ 576, 512, [], "f2bb", "M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-352 96c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H86.4C74 384 64 375.4 64 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2zM512 312c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z" ], + adjust: [ 512, 512, [], "f042", "M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z" ], + "align-center": [ 448, 512, [], "f037", "M352 44v40c0 8.837-7.163 16-16 16H112c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h224c8.837 0 16 7.163 16 16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm320-200H112c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z" ], + "align-justify": [ 448, 512, [], "f039", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm16 144h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0-128h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" ], + "align-left": [ 448, 512, [], "f036", "M288 44v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16zM0 172v40c0 8.837 7.163 16 16 16h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16zm16 312h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm256-200H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16z" ], + "align-right": [ 448, 512, [], "f038", "M160 84V44c0-8.837 7.163-16 16-16h256c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H176c-8.837 0-16-7.163-16-16zM16 228h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 256h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" ], + allergies: [ 448, 512, [], "f461", "M416 112c-17.6 0-32 14.4-32 32v72c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v152c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V32c0-17.6-14.4-32-32-32s-32 14.4-32 32v184c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32S96 46.4 96 64v241l-23.6-32.5c-13-17.9-38-21.8-55.9-8.8s-21.8 38-8.8 55.9l125.6 172.7c9 12.4 23.5 19.8 38.8 19.8h197.6c22.3 0 41.6-15.3 46.7-37l26.5-112.7c3.2-13.7 4.9-28.3 5.1-42.3V144c0-17.6-14.4-32-32-32zM176 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 32c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32-128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z" ], + ambulance: [ 640, 512, [], "f0f9", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm144-248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm176 248c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z" ], + "american-sign-language-interpreting": [ 640, 512, [], "f2a3", "M290.547 189.039c-20.295-10.149-44.147-11.199-64.739-3.89 42.606 0 71.208 20.475 85.578 50.576 8.576 17.899-5.148 38.071-23.617 38.071 18.429 0 32.211 20.136 23.617 38.071-14.725 30.846-46.123 50.854-80.298 50.854-.557 0-94.471-8.615-94.471-8.615l-66.406 33.347c-9.384 4.693-19.815.379-23.895-7.781L1.86 290.747c-4.167-8.615-1.111-18.897 6.946-23.621l58.072-33.069L108 159.861c6.39-57.245 34.731-109.767 79.743-146.726 11.391-9.448 28.341-7.781 37.51 3.613 9.446 11.394 7.78 28.067-3.612 37.516-12.503 10.559-23.618 22.509-32.509 35.57 21.672-14.729 46.679-24.732 74.186-28.067 14.725-1.945 28.063 8.336 29.73 23.065 1.945 14.728-8.336 28.067-23.062 29.734-16.116 1.945-31.12 7.503-44.178 15.284 26.114-5.713 58.712-3.138 88.079 11.115 13.336 6.669 18.893 22.509 12.224 35.848-6.389 13.06-22.504 18.617-35.564 12.226zm-27.229 69.472c-6.112-12.505-18.338-20.286-32.231-20.286a35.46 35.46 0 0 0-35.565 35.57c0 21.428 17.808 35.57 35.565 35.57 13.893 0 26.119-7.781 32.231-20.286 4.446-9.449 13.614-15.006 23.339-15.284-9.725-.277-18.893-5.835-23.339-15.284zm374.821-37.237c4.168 8.615 1.111 18.897-6.946 23.621l-58.071 33.069L532 352.16c-6.39 57.245-34.731 109.767-79.743 146.726-10.932 9.112-27.799 8.144-37.51-3.613-9.446-11.394-7.78-28.067 3.613-37.516 12.503-10.559 23.617-22.509 32.508-35.57-21.672 14.729-46.679 24.732-74.186 28.067-10.021 2.506-27.552-5.643-29.73-23.065-1.945-14.728 8.336-28.067 23.062-29.734 16.116-1.946 31.12-7.503 44.178-15.284-26.114 5.713-58.712 3.138-88.079-11.115-13.336-6.669-18.893-22.509-12.224-35.848 6.389-13.061 22.505-18.619 35.565-12.227 20.295 10.149 44.147 11.199 64.739 3.89-42.606 0-71.208-20.475-85.578-50.576-8.576-17.899 5.148-38.071 23.617-38.071-18.429 0-32.211-20.136-23.617-38.071 14.033-29.396 44.039-50.887 81.966-50.854l92.803 8.615 66.406-33.347c9.408-4.704 19.828-.354 23.894 7.781l44.455 88.926zm-229.227-18.618c-13.893 0-26.119 7.781-32.231 20.286-4.446 9.449-13.614 15.006-23.339 15.284 9.725.278 18.893 5.836 23.339 15.284 6.112 12.505 18.338 20.286 32.231 20.286a35.46 35.46 0 0 0 35.565-35.57c0-21.429-17.808-35.57-35.565-35.57z" ], + anchor: [ 576, 512, [], "f13d", "M12.971 352h32.394C67.172 454.735 181.944 512 288 512c106.229 0 220.853-57.38 242.635-160h32.394c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0l-67.029 67.029c-7.56 7.56-2.206 20.485 8.485 20.485h35.146c-20.29 54.317-84.963 86.588-144.117 94.015V256h52c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-52v-5.47c37.281-13.178 63.995-48.725 64-90.518C384.005 43.772 341.605.738 289.37.01 235.723-.739 192 42.525 192 96c0 41.798 26.716 77.35 64 90.53V192h-52c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v190.015c-58.936-7.399-123.82-39.679-144.117-94.015h35.146c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0L4.485 331.515C-3.074 339.074 2.28 352 12.971 352zM288 64c17.645 0 32 14.355 32 32s-14.355 32-32 32-32-14.355-32-32 14.355-32 32-32z" ], + "angle-double-down": [ 320, 512, [], "f103", "M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z" ], + "angle-double-left": [ 448, 512, [], "f100", "M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" ], + "angle-double-right": [ 448, 512, [], "f101", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" ], + "angle-double-up": [ 320, 512, [], "f102", "M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z" ], + "angle-down": [ 320, 512, [], "f107", "M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z" ], + "angle-left": [ 256, 512, [], "f104", "M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" ], + "angle-right": [ 256, 512, [], "f105", "M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" ], + "angle-up": [ 320, 512, [], "f106", "M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z" ], + angry: [ 496, 512, [], "f556", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 240c0-9.3 4.1-17.5 10.5-23.4l-31-9.3c-8.5-2.5-13.3-11.5-10.7-19.9 2.5-8.5 11.4-13.2 19.9-10.7l80 24c8.5 2.5 13.3 11.5 10.7 19.9-2.1 6.9-8.4 11.4-15.3 11.4-.5 0-1.1-.2-1.7-.2.7 2.7 1.7 5.3 1.7 8.2 0 17.7-14.3 32-32 32S136 257.7 136 240zm168 154.2c-27.8-33.4-84.2-33.4-112.1 0-13.5 16.3-38.2-4.2-24.6-20.5 20-24 49.4-37.8 80.6-37.8s60.6 13.8 80.6 37.8c13.8 16.5-11.1 36.6-24.5 20.5zm76.6-186.9l-31 9.3c6.3 5.8 10.5 14.1 10.5 23.4 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-2.9.9-5.6 1.7-8.2-.6.1-1.1.2-1.7.2-6.9 0-13.2-4.5-15.3-11.4-2.5-8.5 2.3-17.4 10.7-19.9l80-24c8.4-2.5 17.4 2.3 19.9 10.7 2.5 8.5-2.3 17.4-10.8 19.9z" ], + archive: [ 512, 512, [], "f187", "M32 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160H32v288zm160-212c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v8c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-8zM480 32H32C14.3 32 0 46.3 0 64v48c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16V64c0-17.7-14.3-32-32-32z" ], + archway: [ 576, 512, [], "f557", "M560 448h-16V96H32v352H16.02c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16H176c8.84 0 16-7.16 16-16V320c0-53.02 42.98-96 96-96s96 42.98 96 96l.02 160v16c0 8.84 7.16 16 16 16H560c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm0-448H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h544c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16z" ], + "arrow-alt-circle-down": [ 512, 512, [], "f358", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM212 140v116h-70.9c-10.7 0-16.1 13-8.5 20.5l114.9 114.3c4.7 4.7 12.2 4.7 16.9 0l114.9-114.3c7.6-7.6 2.2-20.5-8.5-20.5H300V140c0-6.6-5.4-12-12-12h-64c-6.6 0-12 5.4-12 12z" ], + "arrow-alt-circle-left": [ 512, 512, [], "f359", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z" ], + "arrow-alt-circle-right": [ 512, 512, [], "f35a", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z" ], + "arrow-alt-circle-up": [ 512, 512, [], "f35b", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm292 116V256h70.9c10.7 0 16.1-13 8.5-20.5L264.5 121.2c-4.7-4.7-12.2-4.7-16.9 0l-115 114.3c-7.6 7.6-2.2 20.5 8.5 20.5H212v116c0 6.6 5.4 12 12 12h64c6.6 0 12-5.4 12-12z" ], + "arrow-circle-down": [ 512, 512, [], "f0ab", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-143.6-28.9L288 302.6V120c0-13.3-10.7-24-24-24h-16c-13.3 0-24 10.7-24 24v182.6l-72.4-75.5c-9.3-9.7-24.8-9.9-34.3-.4l-10.9 11c-9.4 9.4-9.4 24.6 0 33.9L239 404.3c9.4 9.4 24.6 9.4 33.9 0l132.7-132.7c9.4-9.4 9.4-24.6 0-33.9l-10.9-11c-9.5-9.5-25-9.3-34.3.4z" ], + "arrow-circle-left": [ 512, 512, [], "f0a8", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm28.9-143.6L209.4 288H392c13.3 0 24-10.7 24-24v-16c0-13.3-10.7-24-24-24H209.4l75.5-72.4c9.7-9.3 9.9-24.8.4-34.3l-11-10.9c-9.4-9.4-24.6-9.4-33.9 0L107.7 239c-9.4 9.4-9.4 24.6 0 33.9l132.7 132.7c9.4 9.4 24.6 9.4 33.9 0l11-10.9c9.5-9.5 9.3-25-.4-34.3z" ], + "arrow-circle-right": [ 512, 512, [], "f0a9", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28.9 143.6l75.5 72.4H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h182.6l-75.5 72.4c-9.7 9.3-9.9 24.8-.4 34.3l11 10.9c9.4 9.4 24.6 9.4 33.9 0L404.3 273c9.4-9.4 9.4-24.6 0-33.9L271.6 106.3c-9.4-9.4-24.6-9.4-33.9 0l-11 10.9c-9.5 9.6-9.3 25.1.4 34.4z" ], + "arrow-circle-up": [ 512, 512, [], "f0aa", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z" ], + "arrow-down": [ 448, 512, [], "f063", "M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z" ], + "arrow-left": [ 448, 512, [], "f060", "M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z" ], + "arrow-right": [ 448, 512, [], "f061", "M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z" ], + "arrow-up": [ 448, 512, [], "f062", "M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z" ], + "arrows-alt": [ 512, 512, [], "f0b2", "M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z" ], + "arrows-alt-h": [ 512, 512, [], "f337", "M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z" ], + "arrows-alt-v": [ 256, 512, [], "f338", "M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z" ], + "assistive-listening-systems": [ 512, 512, [], "f2a2", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z" ], + asterisk: [ 512, 512, [], "f069", "M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z" ], + at: [ 512, 512, [], "f1fa", "M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z" ], + atlas: [ 448, 512, [], "f558", "M318.38 208h-39.09c-1.49 27.03-6.54 51.35-14.21 70.41 27.71-13.24 48.02-39.19 53.3-70.41zm0-32c-5.29-31.22-25.59-57.17-53.3-70.41 7.68 19.06 12.72 43.38 14.21 70.41h39.09zM224 97.31c-7.69 7.45-20.77 34.42-23.43 78.69h46.87c-2.67-44.26-15.75-71.24-23.44-78.69zm-41.08 8.28c-27.71 13.24-48.02 39.19-53.3 70.41h39.09c1.49-27.03 6.53-51.35 14.21-70.41zm0 172.82c-7.68-19.06-12.72-43.38-14.21-70.41h-39.09c5.28 31.22 25.59 57.17 53.3 70.41zM247.43 208h-46.87c2.66 44.26 15.74 71.24 23.43 78.69 7.7-7.45 20.78-34.43 23.44-78.69zM448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM224 64c70.69 0 128 57.31 128 128s-57.31 128-128 128S96 262.69 96 192 153.31 64 224 64zm160 384H96c-19.2 0-32-12.8-32-32s16-32 32-32h288v64z" ], + "audio-description": [ 512, 512, [], "f29e", "M162.925 238.709l8.822 30.655h-25.606l9.041-30.652c1.277-4.421 2.651-9.994 3.872-15.245 1.22 5.251 2.594 10.823 3.871 15.242zm166.474-32.099h-14.523v98.781h14.523c29.776 0 46.175-17.678 46.175-49.776 0-32.239-17.49-49.005-46.175-49.005zM512 112v288c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48zM245.459 336.139l-57.097-168A12.001 12.001 0 0 0 177 160h-35.894a12.001 12.001 0 0 0-11.362 8.139l-57.097 168C70.003 343.922 75.789 352 84.009 352h29.133a12 12 0 0 0 11.535-8.693l8.574-29.906h51.367l8.793 29.977A12 12 0 0 0 204.926 352h29.172c8.22 0 14.006-8.078 11.361-15.861zm184.701-80.525c0-58.977-37.919-95.614-98.96-95.614h-57.366c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12H331.2c61.041 0 98.96-36.933 98.96-96.386z" ], + award: [ 384, 512, [], "f559", "M97.12 362.63l-5.3-5.3a9.004 9.004 0 0 0-4.02-2.32L72 350.77c-9.51-2.55-17.87-7.45-25.43-13.32L1.2 448.7c-4.39 10.77 3.81 22.47 15.43 22.03l52.69-2.01L105.56 507c8 8.44 22.04 5.81 26.43-4.96l52.05-127.62c-10.84 6.04-22.87 9.58-35.31 9.58-19.5 0-37.82-7.59-51.61-21.37zM382.8 448.7l-45.37-111.24c-7.56 5.88-15.92 10.77-25.43 13.32l-15.8 4.23a9.004 9.004 0 0 0-4.02 2.32l-5.3 5.3C273.09 376.41 254.76 384 235.26 384c-12.44 0-24.47-3.55-35.31-9.58L252 502.04c4.39 10.77 18.44 13.4 26.43 4.96l36.25-38.28 52.69 2.01c11.62.44 19.82-11.27 15.43-22.03zM263 340l5.21-5.3c5-5.09 11.22-8.75 18.05-10.61l15.53-4.23c13.89-3.79 24.75-14.84 28.47-28.98l4.16-15.81a41.145 41.145 0 0 1 10.42-18.37l11.37-11.57c10.17-10.35 14.14-25.44 10.42-39.58l-4.16-15.81a41.657 41.657 0 0 1 0-21.21l4.16-15.81c3.72-14.14-.25-29.23-10.42-39.58l-11.37-11.57c-5-5.09-8.59-11.42-10.42-18.37l-4.16-15.8c-3.72-14.14-14.58-25.19-28.47-28.98l-15.53-4.24c-6.83-1.86-13.05-5.52-18.05-10.61L256.84 12c-10.17-10.35-25-14.4-38.89-10.61l-15.53 4.24a39.614 39.614 0 0 1-20.84 0L166.05 1.4c-13.89-3.79-28.72.25-38.89 10.61l-11.37 11.57c-5 5.09-11.22 8.74-18.05 10.61l-15.53 4.24c-13.89 3.79-24.75 14.84-28.47 28.98l-4.16 15.8a41.145 41.145 0 0 1-10.42 18.37l-11.37 11.57c-10.17 10.35-14.15 25.44-10.42 39.58l4.16 15.8a41.657 41.657 0 0 1 0 21.21l-4.16 15.8c-3.72 14.14.25 29.23 10.42 39.59l11.37 11.57c5 5.09 8.59 11.42 10.42 18.37l4.16 15.8c3.72 14.14 14.58 25.19 28.47 28.98l15.53 4.23c6.83 1.86 13.05 5.52 18.05 10.61L121 340c13.23 13.47 33.84 15.88 49.74 5.82a39.676 39.676 0 0 1 42.53 0c15.89 10.06 36.5 7.65 49.73-5.82zM97.66 175.96c0-53.03 42.24-96.02 94.34-96.02s94.34 42.99 94.34 96.02-42.24 96.02-94.34 96.02-94.34-42.99-94.34-96.02z" ], + backspace: [ 640, 512, [], "f55a", "M576 64H205.26A63.97 63.97 0 0 0 160 82.75L9.37 233.37c-12.5 12.5-12.5 32.76 0 45.25L160 429.25c12 12 28.28 18.75 45.25 18.75H576c35.35 0 64-28.65 64-64V128c0-35.35-28.65-64-64-64zm-84.69 254.06c6.25 6.25 6.25 16.38 0 22.63l-22.62 22.62c-6.25 6.25-16.38 6.25-22.63 0L384 301.25l-62.06 62.06c-6.25 6.25-16.38 6.25-22.63 0l-22.62-22.62c-6.25-6.25-6.25-16.38 0-22.63L338.75 256l-62.06-62.06c-6.25-6.25-6.25-16.38 0-22.63l22.62-22.62c6.25-6.25 16.38-6.25 22.63 0L384 210.75l62.06-62.06c6.25-6.25 16.38-6.25 22.63 0l22.62 22.62c6.25 6.25 6.25 16.38 0 22.63L429.25 256l62.06 62.06z" ], + backward: [ 512, 512, [], "f04a", "M11.5 280.6l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2zm256 0l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2z" ], + "balance-scale": [ 640, 512, [], "f24e", "M256 336h-.02c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0C-2.06 328.75.02 320.33.02 336H0c0 44.18 57.31 80 128 80s128-35.82 128-80zM128 176l72 144H56l72-144zm511.98 160c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 320l72-144 72 144H440zm88 128H352V153.25c23.51-10.29 41.16-31.48 46.39-57.25H528c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H383.64C369.04 12.68 346.09 0 320 0s-49.04 12.68-63.64 32H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h129.61c5.23 25.76 22.87 46.96 46.39 57.25V448H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" ], + ban: [ 512, 512, [], "f05e", "M256 8C119.034 8 8 119.033 8 256s111.034 248 248 248 248-111.034 248-248S392.967 8 256 8zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676zM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676z" ], + "band-aid": [ 640, 512, [], "f462", "M0 160v192c0 35.3 28.7 64 64 64h96V96H64c-35.3 0-64 28.7-64 64zm576-64h-96v320h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64zM192 416h256V96H192v320zm176-232c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24z" ], + barcode: [ 512, 512, [], "f02a", "M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z" ], + bars: [ 448, 512, [], "f0c9", "M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" ], + "baseball-ball": [ 496, 512, [], "f433", "M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z" ], + "basketball-ball": [ 496, 512, [], "f434", "M212.3 10.3c-43.8 6.3-86.2 24.1-122.2 53.8l77.4 77.4c27.8-35.8 43.3-81.2 44.8-131.2zM248 222L405.9 64.1c-42.4-35-93.6-53.5-145.5-56.1-1.2 63.9-21.5 122.3-58.7 167.7L248 222zM56.1 98.1c-29.7 36-47.5 78.4-53.8 122.2 50-1.5 95.5-17 131.2-44.8L56.1 98.1zm272.2 204.2c45.3-37.1 103.7-57.4 167.7-58.7-2.6-51.9-21.1-103.1-56.1-145.5L282 256l46.3 46.3zM248 290L90.1 447.9c42.4 34.9 93.6 53.5 145.5 56.1 1.3-64 21.6-122.4 58.7-167.7L248 290zm191.9 123.9c29.7-36 47.5-78.4 53.8-122.2-50.1 1.6-95.5 17.1-131.2 44.8l77.4 77.4zM167.7 209.7C122.3 246.9 63.9 267.3 0 268.4c2.6 51.9 21.1 103.1 56.1 145.5L214 256l-46.3-46.3zm116 292c43.8-6.3 86.2-24.1 122.2-53.8l-77.4-77.4c-27.7 35.7-43.2 81.2-44.8 131.2z" ], + bath: [ 512, 512, [], "f2cd", "M488 256H80V112c0-17.645 14.355-32 32-32 11.351 0 21.332 5.945 27.015 14.88-16.492 25.207-14.687 59.576 6.838 83.035-4.176 4.713-4.021 11.916.491 16.428l11.314 11.314c4.686 4.686 12.284 4.686 16.971 0l95.03-95.029c4.686-4.686 4.686-12.284 0-16.971l-11.314-11.314c-4.512-4.512-11.715-4.666-16.428-.491-17.949-16.469-42.294-21.429-64.178-15.365C163.281 45.667 139.212 32 112 32c-44.112 0-80 35.888-80 80v144h-8c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h8v32c0 28.43 12.362 53.969 32 71.547V456c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-8h256v8c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-32.453c19.638-17.578 32-43.117 32-71.547v-32h8c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z" ], + "battery-empty": [ 640, 512, [], "f244", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48z" ], + "battery-full": [ 640, 512, [], "f240", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-48 96H96v128h416V192z" ], + "battery-half": [ 640, 512, [], "f242", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-240 96H96v128h224V192z" ], + "battery-quarter": [ 640, 512, [], "f243", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-336 96H96v128h128V192z" ], + "battery-three-quarters": [ 640, 512, [], "f241", "M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-144 96H96v128h320V192z" ], + bed: [ 640, 512, [], "f236", "M176 256c44.11 0 80-35.89 80-80s-35.89-80-80-80-80 35.89-80 80 35.89 80 80 80zm352-128H304c-8.84 0-16 7.16-16 16v144H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v352c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h512v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V240c0-61.86-50.14-112-112-112z" ], + beer: [ 448, 512, [], "f0fc", "M368 96h-48V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24v-42.11l80.606-35.977C429.396 365.063 448 336.388 448 304.86V176c0-44.112-35.888-80-80-80zm16 208.86a16.018 16.018 0 0 1-9.479 14.611L320 343.805V160h48c8.822 0 16 7.178 16 16v128.86zM208 384c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16zm-96 0c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16z" ], + bell: [ 448, 512, [], "f0f3", "M433.884 366.059C411.634 343.809 384 316.118 384 208c0-79.394-57.831-145.269-133.663-157.83A31.845 31.845 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 6.75 2.095 13.008 5.663 18.17C121.831 62.731 64 128.606 64 208c0 108.118-27.643 135.809-49.893 158.059C-16.042 396.208 5.325 448 48.048 448H160c0 35.346 28.654 64 64 64s64-28.654 64-64h111.943c42.638 0 64.151-51.731 33.941-81.941zM224 472a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16c0 13.234 10.766 24 24 24z" ], + "bell-slash": [ 576, 512, [], "f1f6", "M78.107 366.059C47.958 396.208 69.325 448 112.048 448H224c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64h32.685L127.848 221.379c-2.198 97.078-28.439 123.378-49.741 144.68zM264 448c0 13.234 10.766 24 24 24a8 8 0 0 1 0 16c-22.056 0-40-17.944-40-40h16zm305.896 43.733l-10.762 12.086c-8.915 10.012-24.333 10.967-34.437 2.133L8.256 54.393C-1.848 45.558-2.811 30.28 6.104 20.267L16.865 8.181C25.781-1.831 41.199-2.786 51.303 6.049l113.81 99.512c24.017-28.778 57.946-48.996 96.55-55.39A31.85 31.85 0 0 1 256 32c0-17.673 14.327-32 32-32s32 14.327 32 32c0 6.75-2.095 13.008-5.663 18.17C390.169 62.731 448 128.606 448 208c0 108.118 27.634 135.809 49.884 158.059 12.149 12.149 15.923 27.776 13.33 42.121l56.53 49.427c10.104 8.835 11.067 24.113 2.152 34.126z" ], + "bezier-curve": [ 640, 512, [], "f55b", "M368 32h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM208 88h-84.75C113.75 64.56 90.84 48 64 48 28.66 48 0 76.65 0 112s28.66 64 64 64c26.84 0 49.75-16.56 59.25-40h79.73c-55.37 32.52-95.86 87.32-109.54 152h49.4c11.3-41.61 36.77-77.21 71.04-101.56-3.7-8.08-5.88-16.99-5.88-26.44V88zm-48 232H64c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zM576 48c-26.84 0-49.75 16.56-59.25 40H432v72c0 9.45-2.19 18.36-5.88 26.44 34.27 24.35 59.74 59.95 71.04 101.56h49.4c-13.68-64.68-54.17-119.48-109.54-152h79.73c9.5 23.44 32.41 40 59.25 40 35.34 0 64-28.65 64-64s-28.66-64-64-64zm0 272h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z" ], + bicycle: [ 640, 512, [], "f206", "M512.509 192.001c-16.373-.064-32.03 2.955-46.436 8.495l-77.68-125.153A24 24 0 0 0 368.001 64h-64c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h50.649l14.896 24H256.002v-16c0-8.837-7.163-16-16-16h-87.459c-13.441 0-24.777 10.999-24.536 24.437.232 13.044 10.876 23.563 23.995 23.563h48.726l-29.417 47.52c-13.433-4.83-27.904-7.483-42.992-7.52C58.094 191.83.412 249.012.002 319.236-.413 390.279 57.055 448 128.002 448c59.642 0 109.758-40.793 123.967-96h52.033a24 24 0 0 0 20.406-11.367L410.37 201.77l14.938 24.067c-25.455 23.448-41.385 57.081-41.307 94.437.145 68.833 57.899 127.051 126.729 127.719 70.606.685 128.181-55.803 129.255-125.996 1.086-70.941-56.526-129.72-127.476-129.996zM186.75 265.772c9.727 10.529 16.673 23.661 19.642 38.228h-43.306l23.664-38.228zM128.002 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c5.869 0 11.586.653 17.099 1.859l-45.505 73.509C89.715 331.327 101.213 352 120.002 352h81.3c-12.37 28.225-40.562 48-73.3 48zm162.63-96h-35.624c-3.96-31.756-19.556-59.894-42.383-80.026L237.371 184h127.547l-74.286 120zm217.057 95.886c-41.036-2.165-74.049-35.692-75.627-76.755-.812-21.121 6.633-40.518 19.335-55.263l44.433 71.586c4.66 7.508 14.524 9.816 22.032 5.156l13.594-8.437c7.508-4.66 9.817-14.524 5.156-22.032l-44.468-71.643a79.901 79.901 0 0 1 19.858-2.497c44.112 0 80 35.888 80 80-.001 45.54-38.252 82.316-84.313 79.885z" ], + binoculars: [ 512, 512, [], "f1e5", "M192 104H96V56c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24v48zm224-48c0-13.255-10.745-24-24-24h-48c-13.255 0-24 10.745-24 24v48h96V56zM0 456c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H0v16zm88-328c-13.255 0-24 10.745-24 24C64 256 0 272 0 416h168V312c0-13.255 10.745-24 24-24V128H88zm256 328c0 13.255 10.745 24 24 24h120c13.255 0 24-10.745 24-24v-16H344v16zM216 128v160h80V128h-80zm128 288h168c0-144-64-160-64-264 0-13.255-10.745-24-24-24H320v160c13.255 0 24 10.745 24 24v104z" ], + "birthday-cake": [ 448, 512, [], "f1fd", "M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z" ], + blender: [ 512, 512, [], "f517", "M416 384H160c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-128 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm40-416h166.54L512 0H48C21.49 0 0 21.49 0 48v160c0 26.51 21.49 48 48 48h103.27l8.73 96h256l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H328c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM64 192V64h69.82l11.64 128H64z" ], + blind: [ 384, 512, [], "f29d", "M380.15 510.837a8 8 0 0 1-10.989-2.687l-125.33-206.427a31.923 31.923 0 0 0 12.958-9.485l126.048 207.608a8 8 0 0 1-2.687 10.991zM142.803 314.338l-32.54 89.485 36.12 88.285c6.693 16.36 25.377 24.192 41.733 17.501 16.357-6.692 24.193-25.376 17.501-41.734l-62.814-153.537zM96 88c24.301 0 44-19.699 44-44S120.301 0 96 0 52 19.699 52 44s19.699 44 44 44zm154.837 169.128l-120-152c-4.733-5.995-11.75-9.108-18.837-9.112V96H80v.026c-7.146.003-14.217 3.161-18.944 9.24L0 183.766v95.694c0 13.455 11.011 24.791 24.464 24.536C37.505 303.748 48 293.1 48 280v-79.766l16-20.571v140.698L9.927 469.055c-6.04 16.609 2.528 34.969 19.138 41.009 16.602 6.039 34.968-2.524 41.009-19.138L136 309.638V202.441l-31.406-39.816a4 4 0 1 1 6.269-4.971l102.3 129.217c9.145 11.584 24.368 11.339 33.708 3.965 10.41-8.216 12.159-23.334 3.966-33.708z" ], + bold: [ 384, 512, [], "f032", "M304.793 243.891c33.639-18.537 53.657-54.16 53.657-95.693 0-48.236-26.25-87.626-68.626-104.179C265.138 34.01 240.849 32 209.661 32H24c-8.837 0-16 7.163-16 16v33.049c0 8.837 7.163 16 16 16h33.113v318.53H24c-8.837 0-16 7.163-16 16V464c0 8.837 7.163 16 16 16h195.69c24.203 0 44.834-1.289 66.866-7.584C337.52 457.193 376 410.647 376 350.014c0-52.168-26.573-91.684-71.207-106.123zM142.217 100.809h67.444c16.294 0 27.536 2.019 37.525 6.717 15.828 8.479 24.906 26.502 24.906 49.446 0 35.029-20.32 56.79-53.029 56.79h-76.846V100.809zm112.642 305.475c-10.14 4.056-22.677 4.907-31.409 4.907h-81.233V281.943h84.367c39.645 0 63.057 25.38 63.057 63.057.001 28.425-13.66 52.483-34.782 61.284z" ], + bolt: [ 320, 512, [], "f0e7", "M295.973 160H180.572L215.19 30.184C219.25 14.956 207.756 0 192 0H56C43.971 0 33.8 8.905 32.211 20.828l-31.996 240C-1.704 275.217 9.504 288 24.004 288h118.701L96.646 482.466C93.05 497.649 104.659 512 119.992 512c8.35 0 16.376-4.374 20.778-11.978l175.973-303.997c9.244-15.967-2.288-36.025-20.77-36.025z" ], + bomb: [ 512, 512, [], "f1e2", "M440.5 88.5l-52 52L415 167c9.4 9.4 9.4 24.6 0 33.9l-17.4 17.4c11.8 26.1 18.4 55.1 18.4 85.6 0 114.9-93.1 208-208 208S0 418.9 0 304 93.1 96 208 96c30.5 0 59.5 6.6 85.6 18.4L311 97c9.4-9.4 24.6-9.4 33.9 0l26.5 26.5 52-52 17.1 17zM500 60h-24c-6.6 0-12 5.4-12 12s5.4 12 12 12h24c6.6 0 12-5.4 12-12s-5.4-12-12-12zM440 0c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12s12-5.4 12-12V12c0-6.6-5.4-12-12-12zm33.9 55l17-17c4.7-4.7 4.7-12.3 0-17-4.7-4.7-12.3-4.7-17 0l-17 17c-4.7 4.7-4.7 12.3 0 17 4.8 4.7 12.4 4.7 17 0zm-67.8 0c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17zm67.8 34c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17zM112 272c0-35.3 28.7-64 64-64 8.8 0 16-7.2 16-16s-7.2-16-16-16c-52.9 0-96 43.1-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16z" ], + bong: [ 448, 512, [], "f55c", "M302.5 512c23.18 0 44.43-12.58 56-32.66C374.69 451.26 384 418.75 384 384c0-36.12-10.08-69.81-27.44-98.62L400 241.94l9.38 9.38c6.25 6.25 16.38 6.25 22.63 0l11.3-11.32c6.25-6.25 6.25-16.38 0-22.63l-52.69-52.69c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63l9.38 9.38-39.41 39.41c-11.56-11.37-24.53-21.33-38.65-29.51V63.74l15.97-.02c8.82-.01 15.97-7.16 15.98-15.98l.04-31.72C320 7.17 312.82-.01 303.97 0L80.03.26c-8.82.01-15.97 7.16-15.98 15.98l-.04 31.73c-.01 8.85 7.17 16.02 16.02 16.01L96 63.96v153.93C38.67 251.1 0 312.97 0 384c0 34.75 9.31 67.27 25.5 95.34C37.08 499.42 58.33 512 81.5 512h221zM120.06 259.43L144 245.56V63.91l96-.11v181.76l23.94 13.87c24.81 14.37 44.12 35.73 56.56 60.57h-257c12.45-24.84 31.75-46.2 56.56-60.57z" ], + book: [ 448, 512, [], "f02d", "M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z" ], + "book-open": [ 576, 512, [], "f518", "M542.22 32.05c-54.8 3.11-163.72 14.43-230.96 55.59-4.64 2.84-7.27 7.89-7.27 13.17v363.87c0 11.55 12.63 18.85 23.28 13.49 69.18-34.82 169.23-44.32 218.7-46.92 16.89-.89 30.02-14.43 30.02-30.66V62.75c.01-17.71-15.35-31.74-33.77-30.7zM264.73 87.64C197.5 46.48 88.58 35.17 33.78 32.05 15.36 31.01 0 45.04 0 62.75V400.6c0 16.24 13.13 29.78 30.02 30.66 49.49 2.6 149.59 12.11 218.77 46.95 10.62 5.35 23.21-1.94 23.21-13.46V100.63c0-5.29-2.62-10.14-7.27-12.99z" ], + bookmark: [ 384, 512, [], "f02e", "M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z" ], + "bowling-ball": [ 496, 512, [], "f436", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM120 192c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64-96c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm48 144c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + box: [ 512, 512, [], "f466", "M509.5 184.6L458.9 32.8C452.4 13.2 434.1 0 413.4 0H272v192h238.7c-.4-2.5-.4-5-1.2-7.4zM240 0H98.6c-20.7 0-39 13.2-45.5 32.8L2.5 184.6c-.8 2.4-.8 4.9-1.2 7.4H240V0zM0 224v240c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V224H0z" ], + "box-open": [ 640, 512, [], "f49e", "M53.2 41L1.7 143.8c-4.6 9.2.3 20.2 10.1 23l197.9 56.5c7.1 2 14.7-1 18.5-7.3L320 64 69.8 32.1c-6.9-.8-13.5 2.7-16.6 8.9zm585.1 102.8L586.8 41c-3.1-6.2-9.8-9.8-16.7-8.9L320 64l91.7 152.1c3.8 6.3 11.4 9.3 18.5 7.3l197.9-56.5c9.9-2.9 14.7-13.9 10.2-23.1zM425.7 256c-16.9 0-32.8-9-41.4-23.4L320 126l-64.2 106.6c-8.7 14.5-24.6 23.5-41.5 23.5-4.5 0-9-.6-13.3-1.9L64 215v178c0 14.7 10 27.5 24.2 31l216.2 54.1c10.2 2.5 20.9 2.5 31 0L551.8 424c14.2-3.6 24.2-16.4 24.2-31V215l-137 39.1c-4.3 1.3-8.8 1.9-13.3 1.9z" ], + boxes: [ 576, 512, [], "f468", "M560 288h-80v96l-32-21.3-32 21.3v-96h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16zm-384-64h224c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16h-80v96l-32-21.3L256 96V0h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16zm64 64h-80v96l-32-21.3L96 384v-96H16c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16z" ], + braille: [ 640, 512, [], "f2a1", "M128 256c0 35.346-28.654 64-64 64S0 291.346 0 256s28.654-64 64-64 64 28.654 64 64zM64 384c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352C28.654 32 0 60.654 0 96s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm224 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-320c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z" ], + briefcase: [ 512, 512, [], "f0b1", "M320 288h192v144c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V288h192v20c0 6.627 5.373 12 12 12h104c6.627 0 12-5.373 12-12v-20zm192-112v80H0v-80c0-26.51 21.49-48 48-48h80V80c0-26.51 21.49-48 48-48h160c26.51 0 48 21.49 48 48v48h80c26.51 0 48 21.49 48 48zM320 96H192v32h128V96z" ], + "briefcase-medical": [ 512, 512, [], "f469", "M464 128h-80V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48zM192 96h128v32H192V96zm160 248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48z" ], + "broadcast-tower": [ 640, 512, [], "f519", "M150.94 192h33.73c11.01 0 18.61-10.83 14.86-21.18-4.93-13.58-7.55-27.98-7.55-42.82s2.62-29.24 7.55-42.82C203.29 74.83 195.68 64 184.67 64h-33.73c-7.01 0-13.46 4.49-15.41 11.23C130.64 92.21 128 109.88 128 128c0 18.12 2.64 35.79 7.54 52.76 1.94 6.74 8.39 11.24 15.4 11.24zM89.92 23.34C95.56 12.72 87.97 0 75.96 0H40.63c-6.27 0-12.14 3.59-14.74 9.31C9.4 45.54 0 85.65 0 128c0 24.75 3.12 68.33 26.69 118.86 2.62 5.63 8.42 9.14 14.61 9.14h34.84c12.02 0 19.61-12.74 13.95-23.37-49.78-93.32-16.71-178.15-.17-209.29zM614.06 9.29C611.46 3.58 605.6 0 599.33 0h-35.42c-11.98 0-19.66 12.66-14.02 23.25 18.27 34.29 48.42 119.42.28 209.23-5.72 10.68 1.8 23.52 13.91 23.52h35.23c6.27 0 12.13-3.58 14.73-9.29C630.57 210.48 640 170.36 640 128s-9.42-82.48-25.94-118.71zM489.06 64h-33.73c-11.01 0-18.61 10.83-14.86 21.18 4.93 13.58 7.55 27.98 7.55 42.82s-2.62 29.24-7.55 42.82c-3.76 10.35 3.85 21.18 14.86 21.18h33.73c7.02 0 13.46-4.49 15.41-11.24 4.9-16.97 7.53-34.64 7.53-52.76 0-18.12-2.64-35.79-7.54-52.76-1.94-6.75-8.39-11.24-15.4-11.24zm-116.3 100.12c7.05-10.29 11.2-22.71 11.2-36.12 0-35.35-28.63-64-63.96-64-35.32 0-63.96 28.65-63.96 64 0 13.41 4.15 25.83 11.2 36.12l-130.5 313.41c-3.4 8.15.46 17.52 8.61 20.92l29.51 12.31c8.15 3.4 17.52-.46 20.91-8.61L244.96 384h150.07l49.2 118.15c3.4 8.16 12.76 12.01 20.91 8.61l29.51-12.31c8.15-3.4 12-12.77 8.61-20.92l-130.5-313.41zM271.62 320L320 203.81 368.38 320h-96.76z" ], + broom: [ 512, 512, [], "f51a", "M10.8 247.2C-.7 251.8-3.7 266.7 5 275.4l54.8 54.8 73.2-24.4-24.4 73.2 128 128c8.8 8.8 23.6 5.7 28.2-5.8l98.1-243.7-108.4-108.4-243.7 98.1zM507.3 27.3L484.7 4.7c-6.2-6.3-16.4-6.3-22.6 0L359.8 106.9l-40.4-40.4c-4.2-4.3-11.4-3-13.9 2.5l-27.2 58.6 106.1 106.1 58.6-27.2c5.4-2.5 6.7-9.7 2.5-13.9l-40.4-40.4L507.3 49.9c6.3-6.2 6.3-16.3 0-22.6z" ], + brush: [ 384, 512, [], "f55d", "M352 0H32C14.33 0 0 14.33 0 32v224h384V32c0-17.67-14.33-32-32-32zM0 320c0 35.35 28.66 64 64 64h64v64c0 35.35 28.66 64 64 64s64-28.65 64-64v-64h64c35.34 0 64-28.65 64-64v-32H0v32zm192 104c13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24s-24-10.75-24-24c0-13.26 10.75-24 24-24z" ], + bug: [ 512, 512, [], "f188", "M511.988 288.9c-.478 17.43-15.217 31.1-32.653 31.1H424v16c0 21.864-4.882 42.584-13.6 61.145l60.228 60.228c12.496 12.497 12.496 32.758 0 45.255-12.498 12.497-32.759 12.496-45.256 0l-54.736-54.736C345.886 467.965 314.351 480 280 480V236c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v244c-34.351 0-65.886-12.035-90.636-32.108l-54.736 54.736c-12.498 12.497-32.759 12.496-45.256 0-12.496-12.497-12.496-32.758 0-45.255l60.228-60.228C92.882 378.584 88 357.864 88 336v-16H32.666C15.23 320 .491 306.33.013 288.9-.484 270.816 14.028 256 32 256h56v-58.745l-46.628-46.628c-12.496-12.497-12.496-32.758 0-45.255 12.498-12.497 32.758-12.497 45.256 0L141.255 160h229.489l54.627-54.627c12.498-12.497 32.758-12.497 45.256 0 12.496 12.497 12.496 32.758 0 45.255L424 197.255V256h56c17.972 0 32.484 14.816 31.988 32.9zM257 0c-61.856 0-112 50.144-112 112h224C369 50.144 318.856 0 257 0z" ], + building: [ 448, 512, [], "f1ad", "M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z" ], + bullhorn: [ 576, 512, [], "f0a1", "M576 224c0-20.896-13.36-38.666-32-45.258V64c0-35.346-28.654-64-64-64-64.985 56-142.031 128-272 128H48c-26.51 0-48 21.49-48 48v96c0 26.51 21.49 48 48 48h43.263c-18.742 64.65 2.479 116.379 18.814 167.44 1.702 5.32 5.203 9.893 9.922 12.88 20.78 13.155 68.355 15.657 93.773 5.151 16.046-6.633 19.96-27.423 7.522-39.537-18.508-18.026-30.136-36.91-19.795-60.858a12.278 12.278 0 0 0-1.045-11.673c-16.309-24.679-3.581-62.107 28.517-72.752C346.403 327.887 418.591 395.081 480 448c35.346 0 64-28.654 64-64V269.258c18.64-6.592 32-24.362 32-45.258zm-96 139.855c-54.609-44.979-125.033-92.94-224-104.982v-69.747c98.967-12.042 169.391-60.002 224-104.982v279.711z" ], + bullseye: [ 512, 512, [], "f140", "M256 72c101.689 0 184 82.295 184 184 0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-101.689 82.295-184 184-184m0-64C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 184c35.29 0 64 28.71 64 64s-28.71 64-64 64-64-28.71-64-64 28.71-64 64-64m0-64c-70.692 0-128 57.308-128 128s57.308 128 128 128 128-57.308 128-128-57.308-128-128-128z" ], + burn: [ 384, 512, [], "f46a", "M192 0C79.7 101.3 0 220.9 0 300.5 0 425 79 512 192 512s192-87 192-211.5c0-79.9-80.2-199.6-192-300.5zm0 448c-56.5 0-96-39-96-94.8 0-13.5 4.6-61.5 96-161.2 91.4 99.7 96 147.7 96 161.2 0 55.8-39.5 94.8-96 94.8z" ], + bus: [ 512, 512, [], "f207", "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM112 400c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm16-112c-17.67 0-32-14.33-32-32V128c0-17.67 14.33-32 32-32h256c17.67 0 32 14.33 32 32v128c0 17.67-14.33 32-32 32H128zm272 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "bus-alt": [ 512, 512, [], "f55e", "M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM160 72c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H168c-4.42 0-8-3.58-8-8V72zm-48 328c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm128-112H128c-17.67 0-32-14.33-32-32v-96c0-17.67 14.33-32 32-32h112v160zm32 0V128h112c17.67 0 32 14.33 32 32v96c0 17.67-14.33 32-32 32H272zm128 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + calculator: [ 448, 512, [], "f1ec", "M0 464V48C0 21.49 21.49 0 48 0h352c26.51 0 48 21.49 48 48v416c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm384-284V76c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v104c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12zM128 308v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm256 128V268c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-256 0v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm128-128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm0 128v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z" ], + calendar: [ 448, 512, [], "f133", "M12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm436-44v-36c0-26.5-21.5-48-48-48h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v36c0 6.6 5.4 12 12 12h424c6.6 0 12-5.4 12-12z" ], + "calendar-alt": [ 448, 512, [], "f073", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm116 204c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm128 128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40zm0-128c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-40z" ], + "calendar-check": [ 448, 512, [], "f274", "M436 160H12c-6.627 0-12-5.373-12-12v-36c0-26.51 21.49-48 48-48h48V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h128V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h48c26.51 0 48 21.49 48 48v36c0 6.627-5.373 12-12 12zM12 192h424c6.627 0 12 5.373 12 12v260c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V204c0-6.627 5.373-12 12-12zm333.296 95.947l-28.169-28.398c-4.667-4.705-12.265-4.736-16.97-.068L194.12 364.665l-45.98-46.352c-4.667-4.705-12.266-4.736-16.971-.068l-28.397 28.17c-4.705 4.667-4.736 12.265-.068 16.97l82.601 83.269c4.667 4.705 12.265 4.736 16.97.068l142.953-141.805c4.705-4.667 4.736-12.265.068-16.97z" ], + "calendar-minus": [ 448, 512, [], "f272", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm304 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H132c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h184z" ], + "calendar-plus": [ 448, 512, [], "f271", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm316 140c0-6.6-5.4-12-12-12h-60v-60c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v60h-60c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h60v60c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-60h60c6.6 0 12-5.4 12-12v-40z" ], + "calendar-times": [ 448, 512, [], "f273", "M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm257.3 160l48.1-48.1c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0L224 306.7l-48.1-48.1c-4.7-4.7-12.3-4.7-17 0l-28.3 28.3c-4.7 4.7-4.7 12.3 0 17l48.1 48.1-48.1 48.1c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l48.1-48.1 48.1 48.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L269.3 352z" ], + camera: [ 512, 512, [], "f030", "M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z" ], + "camera-retro": [ 512, 512, [], "f083", "M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm0 32h106c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H38c-3.3 0-6-2.7-6-6V80c0-8.8 7.2-16 16-16zm426 96H38c-3.3 0-6-2.7-6-6v-36c0-3.3 2.7-6 6-6h138l30.2-45.3c1.1-1.7 3-2.7 5-2.7H464c8.8 0 16 7.2 16 16v74c0 3.3-2.7 6-6 6zM256 424c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88zm-48 104c-8.8 0-16-7.2-16-16 0-35.3 28.7-64 64-64 8.8 0 16 7.2 16 16s-7.2 16-16 16c-17.6 0-32 14.4-32 32 0 8.8-7.2 16-16 16z" ], + cannabis: [ 512, 512, [], "f55f", "M503.47 360.25c-1.56-.82-32.39-16.89-76.78-25.81 64.25-75.12 84.05-161.67 84.93-165.64 1.18-5.33-.44-10.9-4.3-14.77-3.03-3.04-7.12-4.7-11.32-4.7-1.14 0-2.29.12-3.44.38-3.88.85-86.54 19.59-160.58 79.76.01-1.46.01-2.93.01-4.4 0-118.79-59.98-213.72-62.53-217.7A15.973 15.973 0 0 0 256 0c-5.45 0-10.53 2.78-13.47 7.37-2.55 3.98-62.53 98.91-62.53 217.7 0 1.47.01 2.94.01 4.4-74.03-60.16-156.69-78.9-160.58-79.76-1.14-.25-2.29-.38-3.44-.38-4.2 0-8.29 1.66-11.32 4.7A15.986 15.986 0 0 0 .38 168.8c.88 3.97 20.68 90.52 84.93 165.64-44.39 8.92-75.21 24.99-76.78 25.81a16.003 16.003 0 0 0-.02 28.29c2.45 1.29 60.76 31.72 133.49 31.72 6.14 0 11.96-.1 17.5-.31-11.37 22.23-16.52 38.31-16.81 39.22-1.8 5.68-.29 11.89 3.91 16.11a16.019 16.019 0 0 0 16.1 3.99c1.83-.57 37.72-11.99 77.3-39.29V504c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8v-64.01c39.58 27.3 75.47 38.71 77.3 39.29a16.019 16.019 0 0 0 16.1-3.99c4.2-4.22 5.71-10.43 3.91-16.11-.29-.91-5.45-16.99-16.81-39.22 5.54.21 11.37.31 17.5.31 72.72 0 131.04-30.43 133.49-31.72 5.24-2.78 8.52-8.22 8.51-14.15-.01-5.94-3.29-11.39-8.53-14.15z" ], + capsules: [ 576, 512, [], "f46b", "M555.3 300.1L424.2 112.8C401.9 81 366.4 64 330.4 64c-22.6 0-45.5 6.7-65.5 20.7-19.7 13.8-33.7 32.8-41.5 53.8C220.5 79.2 172 32 112 32 50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V218.9c3.3 8.6 7.3 17.1 12.8 25L368 431.2c22.2 31.8 57.7 48.8 93.8 48.8 22.7 0 45.5-6.7 65.5-20.7 51.7-36.2 64.2-107.5 28-159.2zM160 256H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm194.8 44.9l-65.6-93.7c-7.7-11-10.7-24.4-8.3-37.6 2.3-13.2 9.7-24.8 20.7-32.5 8.5-6 18.5-9.1 28.8-9.1 16.5 0 31.9 8 41.3 21.5l65.6 93.7-82.5 57.7z" ], + car: [ 512, 512, [], "f1b9", "M499.991 168h-54.815l-7.854-20.944c-9.192-24.513-25.425-45.351-46.942-60.263S343.651 64 317.472 64H194.528c-26.18 0-51.391 7.882-72.908 22.793-21.518 14.912-37.75 35.75-46.942 60.263L66.824 168H12.009c-8.191 0-13.974 8.024-11.384 15.795l8 24A12 12 0 0 0 20.009 216h28.815l-.052.14C29.222 227.093 16 247.997 16 272v48c0 16.225 6.049 31.029 16 42.309V424c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-40h256v40c0 13.255 10.745 24 24 24h48c13.255 0 24-10.745 24-24v-61.691c9.951-11.281 16-26.085 16-42.309v-48c0-24.003-13.222-44.907-32.772-55.86l-.052-.14h28.815a12 12 0 0 0 11.384-8.205l8-24c2.59-7.771-3.193-15.795-11.384-15.795zm-365.388 1.528C143.918 144.689 168 128 194.528 128h122.944c26.528 0 50.61 16.689 59.925 41.528L391.824 208H120.176l14.427-38.472zM88 328c-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32s48 30.327 48 48-30.327 16-48 16zm336 0c-17.673 0-48 1.673-48-16 0-17.673 30.327-48 48-48s32 14.327 32 32c0 17.673-14.327 32-32 32z" ], + "caret-down": [ 320, 512, [], "f0d7", "M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" ], + "caret-left": [ 192, 512, [], "f0d9", "M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z" ], + "caret-right": [ 192, 512, [], "f0da", "M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z" ], + "caret-square-down": [ 448, 512, [], "f150", "M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM92.5 220.5l123 123c4.7 4.7 12.3 4.7 17 0l123-123c7.6-7.6 2.2-20.5-8.5-20.5H101c-10.7 0-16.1 12.9-8.5 20.5z" ], + "caret-square-left": [ 448, 512, [], "f191", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM259.515 124.485l-123.03 123.03c-4.686 4.686-4.686 12.284 0 16.971l123.029 123.029c7.56 7.56 20.485 2.206 20.485-8.485V132.971c.001-10.691-12.925-16.045-20.484-8.486z" ], + "caret-square-right": [ 448, 512, [], "f152", "M48 32h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48zm140.485 355.515l123.029-123.029c4.686-4.686 4.686-12.284 0-16.971l-123.029-123.03c-7.56-7.56-20.485-2.206-20.485 8.485v246.059c0 10.691 12.926 16.045 20.485 8.486z" ], + "caret-square-up": [ 448, 512, [], "f151", "M0 432V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm355.515-140.485l-123.03-123.03c-4.686-4.686-12.284-4.686-16.971 0L92.485 291.515c-7.56 7.56-2.206 20.485 8.485 20.485h246.059c10.691 0 16.045-12.926 8.486-20.485z" ], + "caret-up": [ 320, 512, [], "f0d8", "M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z" ], + "cart-arrow-down": [ 576, 512, [], "f218", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z" ], + "cart-plus": [ 576, 512, [], "f217", "M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM408 168h-48v-40c0-8.837-7.163-16-16-16h-16c-8.837 0-16 7.163-16 16v40h-48c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h48v40c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-40h48c8.837 0 16-7.163 16-16v-16c0-8.837-7.163-16-16-16z" ], + certificate: [ 512, 512, [], "f0a3", "M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z" ], + chalkboard: [ 640, 512, [], "f51b", "M96 64h448v352h64V40c0-22.06-17.94-40-40-40H72C49.94 0 32 17.94 32 40v376h64V64zm528 384H480v-64H288v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" ], + "chalkboard-teacher": [ 640, 512, [], "f51c", "M208 352c-2.39 0-4.78.35-7.06 1.09C187.98 357.3 174.35 360 160 360c-14.35 0-27.98-2.7-40.95-6.91-2.28-.74-4.66-1.09-7.05-1.09C49.94 352-.33 402.48 0 464.62.14 490.88 21.73 512 48 512h224c26.27 0 47.86-21.12 48-47.38.33-62.14-49.94-112.62-112-112.62zm-48-32c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM592 0H208c-26.47 0-48 22.25-48 49.59V96c23.42 0 45.1 6.78 64 17.8V64h352v288h-64v-64H384v64h-76.24c19.1 16.69 33.12 38.73 39.69 64H592c26.47 0 48-22.25 48-49.59V49.59C640 22.25 618.47 0 592 0z" ], + "chart-area": [ 512, 512, [], "f1fe", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z" ], + "chart-bar": [ 512, 512, [], "f080", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zm-308-44v-72c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v72c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V204c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v136c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0V140c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v200c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0V108c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v232c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z" ], + "chart-line": [ 512, 512, [], "f201", "M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM456 96H344c-21.4 0-32.1 25.9-17 41l32.9 32.9-72 72.9-55.6-55.6c-4.7-4.7-12.2-4.7-16.9 0L96.4 305c-4.7 4.6-4.8 12.2-.2 16.9l28.5 29.4c4.7 4.8 12.4 4.9 17.1.1l82.1-82.1 55.5 55.5c4.7 4.7 12.3 4.7 17 0l109.2-109.2L439 249c15.1 15.1 41 4.4 41-17V120c0-13.3-10.7-24-24-24z" ], + "chart-pie": [ 576, 512, [], "f200", "M288 12.3V240h227.7c6.9 0 12.3-5.8 12-12.7-6.4-122.4-104.5-220.6-227-227-6.9-.3-12.7 5.1-12.7 12zM552.7 288c6.9 0 12.3 5.8 12 12.7-2.8 53.2-23.2 105.6-61.2 147.8-4.6 5.1-12.6 5.4-17.5.5L325 288h227.7zM401 433c4.8 4.8 4.7 12.8-.4 17.3-42.6 38.4-99 61.7-160.8 61.7C107.6 511.9-.2 403.8 0 271.5.2 143.4 100.8 38.9 227.3 32.3c6.9-.4 12.7 5.1 12.7 12V272l161 161z" ], + check: [ 512, 512, [], "f00c", "M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" ], + "check-circle": [ 512, 512, [], "f058", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z" ], + "check-double": [ 512, 512, [], "f560", "M504.5 171.95l-36.2-36.41c-10-10.05-26.21-10.05-36.2 0L192 377.02 79.9 264.28c-10-10.06-26.21-10.06-36.2 0L7.5 300.69c-10 10.05-10 26.36 0 36.41l166.4 167.36c10 10.06 26.21 10.06 36.2 0l294.4-296.09c10-10.06 10-26.36 0-36.42zM166.57 282.71c6.84 7.02 18.18 7.02 25.21.18L403.85 72.62c7.02-6.84 7.02-18.18.18-25.21L362.08 5.29c-6.84-7.02-18.18-7.02-25.21-.18L179.71 161.19l-68.23-68.77c-6.84-7.02-18.18-7.02-25.2-.18l-42.13 41.77c-7.02 6.84-7.02 18.18-.18 25.2l122.6 123.5z" ], + "check-square": [ 448, 512, [], "f14a", "M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z" ], + chess: [ 512, 512, [], "f439", "M199.821 217.633a6 6 0 0 1 6 6l-.001 20.766a6 6 0 0 1-6 6h-25.805c0 31.715-2.153 96.201 17.398 153.229H64.597C84.54 345.452 82.02 279.245 82.02 250.399H56.183a6 6 0 0 1-6-6l.002-20.766a6 6 0 0 1 6-6h143.636zM41.554 115.088l34.58 95.071h103.734l34.572-95.072c2.846-7.826-2.95-16.101-11.278-16.101H152v-30.22h21.57a6 6 0 0 0 6-6V40.383a6 6 0 0 0-6-6h-28.367V6a6 6 0 0 0-6-6H116.82a6 6 0 0 0-6 6v28.383H82.421a6 6 0 0 0-6 6v22.383a6 6 0 0 0 6 6H104v30.219H52.831c-8.328.001-14.124 8.276-11.277 16.103zM222.678 445.17v-28.067a6 6 0 0 0-6-6H39.322a6 6 0 0 0-6 6v28.067l-22.148 14.164a6 6 0 0 0-2.767 5.055V506a6 6 0 0 0 6 6h227.187a6 6 0 0 0 6-6v-41.612a6 6 0 0 0-2.767-5.055l-22.149-14.163zm90.578-144.225l24.88 16.963c.09 18.124-.167 63.904-11.905 114.522h147.526c-11.713-50.475-11.969-96.324-11.882-114.537l24.859-16.949a3.856 3.856 0 0 0 1.684-3.187v-69.901a3.857 3.857 0 0 0-3.857-3.857h-27.655a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.858-3.857h-52.918a3.857 3.857 0 0 0-3.857 3.857v31.514h-22.737v-31.514a3.857 3.857 0 0 0-3.857-3.857H315.43a3.857 3.857 0 0 0-3.857 3.857v69.901a3.855 3.855 0 0 0 1.683 3.188zm71.585 51.906c0-8.372 6.787-15.158 15.159-15.158s15.158 6.787 15.158 15.158v30.318h-30.317v-30.318zM504.62 470.059l-13.664-10.639v-15.552a3.857 3.857 0 0 0-3.857-3.857H312.915a3.857 3.857 0 0 0-3.857 3.857v15.552l-13.677 10.639a3.857 3.857 0 0 0-1.488 3.044v35.039a3.857 3.857 0 0 0 3.857 3.857h204.5a3.857 3.857 0 0 0 3.857-3.857v-35.04a3.859 3.859 0 0 0-1.487-3.043z" ], + "chess-bishop": [ 320, 512, [], "f43a", "M123.158 77.881C107.369 72.53 96 57.597 96 40c0-22.091 17.909-40 40-40h47.796c22.091 0 40 17.909 40 40 0 17.541-11.295 32.434-27.005 37.829 23.993 16.657 48.577 46.839 68.703 82.05L144.929 280.443a6 6 0 0 0 0 8.485l14.142 14.142a6 6 0 0 0 8.485 0L280.9 189.726c17.758 38.297 29.371 79.443 29.371 114.273 0 53.786-22.897 75.788-58.446 86.033V448H68.174v-57.97C32.631 379.784 9.739 357.781 9.739 304c0-78.029 58.281-187.766 113.419-226.119zM320 500v-24c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12z" ], + "chess-board": [ 512, 512, [], "f43c", "M256 256v64h-64v-64h64zm0-256h-64v64h64V0zm0 256h64v-64h-64v64zM384 0h-64v64h64V0zm0 512h64v-64h-64v64zm128-64v-64h-64v64h64zm-384 64h64v-64h-64v64zm0-512H64v64h64V0zm384 192v-64h-64v64h64zm0 128v-64h-64v64h64zM0 512h64v-64H0v64zM0 64v64h64V64H0zm0 128v64h64v-64H0zm0 128v64h64v-64H0zm256 192h64v-64h-64v64zm-64-128v64h64v-64h-64zm64-192v-64h-64v64h64zM64 384v64h64v-64H64zm64-128H64v64h64v-64zm256 128h64v-64h-64v64zM512 0h-64v64h64V0zM384 256h64v-64h-64v64zm0-192v64h64V64h-64zm-64 320v64h64v-64h-64zm-192-64v64h64v-64h-64zm128 0v64h64v-64h-64zm-64-128h-64v64h64v-64zm-64-64H64v64h64v-64zm192 192h64v-64h-64v64zM192 128V64h-64v64h64zm128 0V64h-64v64h64zm0 64h64v-64h-64v64z" ], + "chess-king": [ 448, 512, [], "f43f", "M416 476v24c0 6.627-5.373 12-12 12H44c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12zm-8.033-324H248v-48h50a6 6 0 0 0 6-6V62a6 6 0 0 0-6-6h-50V6a6 6 0 0 0-6-6h-36a6 6 0 0 0-6 6v50h-50a6 6 0 0 0-6 6v36a6 6 0 0 0 6 6h50v48H40.033c-27.574 0-46.879 27.244-37.738 53.259L87.582 448h272.836l85.287-242.741C454.846 179.244 435.541 152 407.967 152z" ], + "chess-knight": [ 384, 512, [], "f441", "M352 224v224H32v-46.557c0-30.302 17.12-58.003 44.223-71.554l57.243-28.622A48 48 0 0 0 160 258.334V208l-22.127 11.063a23.996 23.996 0 0 0-12.55 15.645l-11.835 47.338a12 12 0 0 1-7.185 8.231l-29.601 11.84a11.998 11.998 0 0 1-9.33-.176L7.126 275.167A12 12 0 0 1 0 264.201v-158.26c0-6.365 2.529-12.47 7.03-16.971L16 80 1.789 51.578A16.937 16.937 0 0 1 0 44c0-6.627 5.373-12 12-12h148c106.039 0 192 85.961 192 192zm20 240H12c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h360c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12zM52 128c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z" ], + "chess-pawn": [ 320, 512, [], "f443", "M264 448H56s60-42.743 60-176H84c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h40.209C95.721 210.56 76 181.588 76 148c0-46.392 37.608-84 84-84s84 37.608 84 84c0 33.588-19.721 62.56-48.209 76H236c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12h-32c0 133.257 60 176 60 176zm28 16H28c-6.627 0-12 5.373-12 12v24c0 6.627 5.373 12 12 12h264c6.627 0 12-5.373 12-12v-24c0-6.627-5.373-12-12-12z" ], + "chess-queen": [ 512, 512, [], "f445", "M436 512H76c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12zM255.579 0c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zm204.568 154.634c-5.768-3.045-12.916-.932-16.082 4.77-8.616 15.516-22.747 37.801-44.065 37.801-28.714 0-30.625-19.804-31.686-57.542-.183-6.492-5.501-11.664-11.995-11.664h-41.006c-5.175 0-9.754 3.328-11.388 8.238-8.89 26.709-26.073 40.992-47.925 40.992s-39.034-14.283-47.925-40.992c-1.634-4.91-6.213-8.238-11.388-8.238h-41.005c-6.495 0-11.813 5.174-11.995 11.667-1.052 37.642-2.934 57.539-31.688 57.539-20.691 0-33.817-20.224-44.425-38.025-3.266-5.48-10.258-7.431-15.899-4.453l-39.179 20.679a12 12 0 0 0-5.51 15.145L112 448h288l105.014-257.448a12 12 0 0 0-5.51-15.145l-39.357-20.773z" ], + "chess-rook": [ 384, 512, [], "f447", "M81.241 215.027C80.957 258.92 77.411 348.076 48 448h287.982c-29.4-99.604-32.936-188.912-33.221-232.975l45.418-42.312a11.998 11.998 0 0 0 3.82-8.78V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v44h-48V44c0-6.627-5.373-12-12-12h-72c-6.627 0-12 5.373-12 12v44H96V44c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v119.932c0 3.33 1.384 6.51 3.82 8.78l45.421 42.315zM160 256c0-17.673 14.327-32 32-32 17.673 0 32 14.327 32 32v64.004h-64V256zm224 220v24c0 6.627-5.373 12-12 12H12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12z" ], + "chevron-circle-down": [ 512, 512, [], "f13a", "M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM273 369.9l135.5-135.5c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L256 285.1 154.4 183.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L239 369.9c9.4 9.4 24.6 9.4 34 0z" ], + "chevron-circle-left": [ 512, 512, [], "f137", "M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z" ], + "chevron-circle-right": [ 512, 512, [], "f138", "M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z" ], + "chevron-circle-up": [ 512, 512, [], "f139", "M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm231-113.9L103.5 277.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L256 226.9l101.6 101.6c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L273 142.1c-9.4-9.4-24.6-9.4-34 0z" ], + "chevron-down": [ 448, 512, [], "f078", "M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z" ], + "chevron-left": [ 320, 512, [], "f053", "M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z" ], + "chevron-right": [ 320, 512, [], "f054", "M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z" ], + "chevron-up": [ 448, 512, [], "f077", "M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z" ], + child: [ 384, 512, [], "f1ae", "M120 72c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.764-32.235 72-72 72s-72-32.236-72-72zm254.627 1.373c-12.496-12.497-32.758-12.497-45.254 0L242.745 160H141.254L54.627 73.373c-12.496-12.497-32.758-12.497-45.254 0-12.497 12.497-12.497 32.758 0 45.255L104 213.254V480c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V368h16v112c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V213.254l94.627-94.627c12.497-12.497 12.497-32.757 0-45.254z" ], + church: [ 640, 512, [], "f51d", "M464.46 246.68L352 179.2V128h48c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-48V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v48h-48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v51.2l-112.46 67.48A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.65-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.54A32.024 32.024 0 0 0 0 395.96zm620.61-29.42L512 320v192h112c8.84 0 16-7.16 16-16V395.96c0-12.8-7.63-24.37-19.39-29.42z" ], + circle: [ 512, 512, [], "f111", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z" ], + "circle-notch": [ 512, 512, [], "f1ce", "M288 39.056v16.659c0 10.804 7.281 20.159 17.686 23.066C383.204 100.434 440 171.518 440 256c0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-84.47 56.786-155.564 134.312-177.219C216.719 75.874 224 66.517 224 55.712V39.064c0-15.709-14.834-27.153-30.046-23.234C86.603 43.482 7.394 141.206 8.003 257.332c.72 137.052 111.477 246.956 248.531 246.667C393.255 503.711 504 392.788 504 256c0-115.633-79.14-212.779-186.211-240.236C302.678 11.889 288 23.456 288 39.056z" ], + clipboard: [ 384, 512, [], "f328", "M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z" ], + "clipboard-check": [ 384, 512, [], "f46c", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm121.2 231.8l-143 141.8c-4.7 4.7-12.3 4.6-17-.1l-82.6-83.3c-4.7-4.7-4.6-12.3.1-17L99.1 285c4.7-4.7 12.3-4.6 17 .1l46 46.4 106-105.2c4.7-4.7 12.3-4.6 17 .1l28.2 28.4c4.7 4.8 4.6 12.3-.1 17z" ], + "clipboard-list": [ 384, 512, [], "f46d", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM96 424c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm96-192c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm128 368c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z" ], + clock: [ 512, 512, [], "f017", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm57.1 350.1L224.9 294c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v137.7l63.5 46.2c5.4 3.9 6.5 11.4 2.6 16.8l-28.2 38.8c-3.9 5.3-11.4 6.5-16.8 2.6z" ], + clone: [ 512, 512, [], "f24d", "M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z" ], + "closed-captioning": [ 512, 512, [], "f20a", "M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM218.1 287.7c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2.1 48 51.1 70.5 92.3 32.6zm190.4 0c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.5 56.9-172.7 32.1-172.7-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 222.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6z" ], + cloud: [ 640, 512, [], "f0c2", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z" ], + "cloud-download-alt": [ 640, 512, [], "f381", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z" ], + "cloud-upload-alt": [ 640, 512, [], "f382", "M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z" ], + cocktail: [ 576, 512, [], "f561", "M296 464h-56V338.78l168.74-168.73c15.52-15.52 4.53-42.05-17.42-42.05H24.68c-21.95 0-32.94 26.53-17.42 42.05L176 338.78V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM432 0c-62.61 0-115.35 40.2-135.18 96h52.54c16.65-28.55 47.27-48 82.64-48 52.93 0 96 43.06 96 96s-43.07 96-96 96c-14.04 0-27.29-3.2-39.32-8.64l-35.26 35.26C379.23 279.92 404.59 288 432 288c79.53 0 144-64.47 144-144S511.53 0 432 0z" ], + code: [ 640, 512, [], "f121", "M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z" ], + "code-branch": [ 384, 512, [], "f126", "M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z" ], + coffee: [ 640, 512, [], "f0f4", "M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z" ], + cog: [ 512, 512, [], "f013", "M444.788 291.1l42.616 24.599c4.867 2.809 7.126 8.618 5.459 13.985-11.07 35.642-29.97 67.842-54.689 94.586a12.016 12.016 0 0 1-14.832 2.254l-42.584-24.595a191.577 191.577 0 0 1-60.759 35.13v49.182a12.01 12.01 0 0 1-9.377 11.718c-34.956 7.85-72.499 8.256-109.219.007-5.49-1.233-9.403-6.096-9.403-11.723v-49.184a191.555 191.555 0 0 1-60.759-35.13l-42.584 24.595a12.016 12.016 0 0 1-14.832-2.254c-24.718-26.744-43.619-58.944-54.689-94.586-1.667-5.366.592-11.175 5.459-13.985L67.212 291.1a193.48 193.48 0 0 1 0-70.199l-42.616-24.599c-4.867-2.809-7.126-8.618-5.459-13.985 11.07-35.642 29.97-67.842 54.689-94.586a12.016 12.016 0 0 1 14.832-2.254l42.584 24.595a191.577 191.577 0 0 1 60.759-35.13V25.759a12.01 12.01 0 0 1 9.377-11.718c34.956-7.85 72.499-8.256 109.219-.007 5.49 1.233 9.403 6.096 9.403 11.723v49.184a191.555 191.555 0 0 1 60.759 35.13l42.584-24.595a12.016 12.016 0 0 1 14.832 2.254c24.718 26.744 43.619 58.944 54.689 94.586 1.667 5.366-.592 11.175-5.459 13.985L444.788 220.9a193.485 193.485 0 0 1 0 70.2zM336 256c0-44.112-35.888-80-80-80s-80 35.888-80 80 35.888 80 80 80 80-35.888 80-80z" ], + cogs: [ 640, 512, [], "f085", "M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z" ], + coins: [ 512, 512, [], "f51e", "M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z" ], + columns: [ 512, 512, [], "f0db", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z" ], + comment: [ 512, 512, [], "f075", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32z" ], + "comment-alt": [ 512, 512, [], "f27a", "M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 9.8 11.2 15.5 19.1 9.7L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z" ], + "comment-dots": [ 512, 512, [], "f4ad", "M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + "comment-slash": [ 640, 512, [], "f4b3", "M64 240c0 49.6 21.4 95 57 130.7-12.6 50.3-54.3 95.2-54.8 95.8-2.2 2.3-2.8 5.7-1.5 8.7 1.3 2.9 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 27.4 0 53.7-3.6 78.4-10L72.9 186.4c-5.6 17.1-8.9 35-8.9 53.6zm569.8 218.1l-114.4-88.4C554.6 334.1 576 289.2 576 240c0-114.9-114.6-208-256-208-65.1 0-124.2 20.1-169.4 52.7L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z" ], + comments: [ 576, 512, [], "f086", "M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z" ], + "compact-disc": [ 496, 512, [], "f51f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 256H56c0-105.9 86.1-192 192-192v32c-88.2 0-160 71.8-160 160zm160 96c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z" ], + compass: [ 512, 512, [], "f14e", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM307.446 120.844l-102.642 97.779a23.997 23.997 0 0 0-6.772 11.729l-33.359 137.779c-5.68 23.459 22.777 39.318 39.88 23.024l102.64-97.779a23.99 23.99 0 0 0 6.772-11.729l33.359-137.779c5.618-23.198-22.591-39.493-39.878-23.024zM256 224c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z" ], + compress: [ 448, 512, [], "f066", "M436 192H312c-13.3 0-24-10.7-24-24V44c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-276-24V44c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v84H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 300V344c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-84h84c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H312c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z" ], + "concierge-bell": [ 512, 512, [], "f562", "M288 130.54V112h16c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h16v18.54C115.49 146.11 32 239.18 32 352h448c0-112.82-83.49-205.89-192-221.46zM496 384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" ], + cookie: [ 512, 512, [], "f563", "M510.37 254.79l-12.08-76.26a132.493 132.493 0 0 0-37.16-72.95l-54.76-54.75c-19.73-19.72-45.18-32.7-72.71-37.05l-76.7-12.15c-27.51-4.36-55.69.11-80.52 12.76L107.32 49.6a132.25 132.25 0 0 0-57.79 57.8l-35.1 68.88a132.602 132.602 0 0 0-12.82 80.94l12.08 76.27a132.493 132.493 0 0 0 37.16 72.95l54.76 54.75a132.087 132.087 0 0 0 72.71 37.05l76.7 12.14c27.51 4.36 55.69-.11 80.52-12.75l69.12-35.21a132.302 132.302 0 0 0 57.79-57.8l35.1-68.87c12.71-24.96 17.2-53.3 12.82-80.96zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "cookie-bite": [ 512, 512, [], "f564", "M510.52 255.82c-69.97-.85-126.47-57.69-126.47-127.86-70.17 0-127-56.49-127.86-126.45-27.26-4.14-55.13.3-79.72 12.82l-69.13 35.22a132.221 132.221 0 0 0-57.79 57.81l-35.1 68.88a132.645 132.645 0 0 0-12.82 80.95l12.08 76.27a132.521 132.521 0 0 0 37.16 72.96l54.77 54.76a132.036 132.036 0 0 0 72.71 37.06l76.71 12.15c27.51 4.36 55.7-.11 80.53-12.76l69.13-35.21a132.273 132.273 0 0 0 57.79-57.81l35.1-68.88c12.56-24.64 17.01-52.58 12.91-79.91zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + copy: [ 448, 512, [], "f0c5", "M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z" ], + copyright: [ 512, 512, [], "f1f9", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm117.134 346.753c-1.592 1.867-39.776 45.731-109.851 45.731-84.692 0-144.484-63.26-144.484-145.567 0-81.303 62.004-143.401 143.762-143.401 66.957 0 101.965 37.315 103.422 38.904a12 12 0 0 1 1.238 14.623l-22.38 34.655c-4.049 6.267-12.774 7.351-18.234 2.295-.233-.214-26.529-23.88-61.88-23.88-46.116 0-73.916 33.575-73.916 76.082 0 39.602 25.514 79.692 74.277 79.692 38.697 0 65.28-28.338 65.544-28.625 5.132-5.565 14.059-5.033 18.508 1.053l24.547 33.572a12.001 12.001 0 0 1-.553 14.866z" ], + couch: [ 640, 512, [], "f4b8", "M160 224v64h320v-64c0-35.3 28.7-64 64-64h32c0-53-43-96-96-96H160c-53 0-96 43-96 96h32c35.3 0 64 28.7 64 64zm416-32h-32c-17.7 0-32 14.3-32 32v96H128v-96c0-17.7-14.3-32-32-32H64c-35.3 0-64 28.7-64 64 0 23.6 13 44 32 55.1V432c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-16h384v16c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V311.1c19-11.1 32-31.5 32-55.1 0-35.3-28.7-64-64-64z" ], + "credit-card": [ 576, 512, [], "f09d", "M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V256H0v176zm192-68c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-40zm-128 0c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM576 80v48H0V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48z" ], + crop: [ 512, 512, [], "f125", "M488 352h-40V109.25l59.31-59.31c6.25-6.25 6.25-16.38 0-22.63L484.69 4.69c-6.25-6.25-16.38-6.25-22.63 0L402.75 64H192v96h114.75L160 306.75V24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v264c0 13.25 10.75 24 24 24h232v-96H205.25L352 205.25V488c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z" ], + "crop-alt": [ 512, 512, [], "f565", "M488 352h-40V96c0-17.67-14.33-32-32-32H192v96h160v328c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24zM160 24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v256c0 17.67 14.33 32 32 32h224v-96H160V24z" ], + crosshairs: [ 512, 512, [], "f05b", "M500 224h-30.364C455.724 130.325 381.675 56.276 288 42.364V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v30.364C130.325 56.276 56.276 130.325 42.364 224H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h30.364C56.276 381.675 130.325 455.724 224 469.636V500c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-30.364C381.675 455.724 455.724 381.675 469.636 288H500c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zM288 404.634V364c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40.634C165.826 392.232 119.783 346.243 107.366 288H148c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40.634C119.768 165.826 165.757 119.783 224 107.366V148c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40.634C346.174 119.768 392.217 165.757 404.634 224H364c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40.634C392.232 346.174 346.243 392.217 288 404.634zM288 256c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z" ], + crow: [ 640, 512, [], "f520", "M544 32h-16.36C513.04 12.68 490.09 0 464 0c-44.18 0-80 35.82-80 80v20.98L12.09 393.57A30.216 30.216 0 0 0 0 417.74c0 22.46 23.64 37.07 43.73 27.03L165.27 384h96.49l44.41 120.1c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38L312.94 384H352c1.91 0 3.76-.23 5.66-.29l44.51 120.38c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38l-41.24-111.53C485.74 352.8 544 279.26 544 192v-80l96-16c0-35.35-42.98-64-96-64zm-80 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z" ], + crown: [ 640, 512, [], "f521", "M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.4 7.7-.8L128 416h384l72.3-192.8c2.5.4 5.1.8 7.7.8 26.5 0 48-21.5 48-48s-21.5-48-48-48z" ], + cube: [ 512, 512, [], "f1b2", "M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z" ], + cubes: [ 512, 512, [], "f1b3", "M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z" ], + cut: [ 448, 512, [], "f0c4", "M278.06 256L444.48 89.57c4.69-4.69 4.69-12.29 0-16.97-32.8-32.8-85.99-32.8-118.79 0L210.18 188.12l-24.86-24.86c4.31-10.92 6.68-22.81 6.68-35.26 0-53.02-42.98-96-96-96S0 74.98 0 128s42.98 96 96 96c4.54 0 8.99-.32 13.36-.93L142.29 256l-32.93 32.93c-4.37-.61-8.83-.93-13.36-.93-53.02 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96c0-12.45-2.37-24.34-6.68-35.26l24.86-24.86L325.69 439.4c32.8 32.8 85.99 32.8 118.79 0 4.69-4.68 4.69-12.28 0-16.97L278.06 256zM96 160c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32zm0 256c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z" ], + database: [ 448, 512, [], "f1c0", "M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z" ], + deaf: [ 512, 512, [], "f2a4", "M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm268.485-52.201L480.2 3.515c-4.687-4.686-12.284-4.686-16.971 0L376.2 90.544c-4.686 4.686-4.686 12.284 0 16.971l28.285 28.285c4.686 4.686 12.284 4.686 16.97 0l87.03-87.029c4.687-4.688 4.687-12.286 0-16.972zM168.97 314.745c-4.686-4.686-12.284-4.686-16.97 0L3.515 463.23c-4.686 4.686-4.686 12.284 0 16.971L31.8 508.485c4.687 4.686 12.284 4.686 16.971 0L197.256 360c4.686-4.686 4.686-12.284 0-16.971l-28.286-28.284z" ], + desktop: [ 576, 512, [], "f108", "M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z" ], + diagnoses: [ 640, 512, [], "f470", "M496 256c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm-176-80c48.5 0 88-39.5 88-88S368.5 0 320 0s-88 39.5-88 88 39.5 88 88 88zM59.8 364c10.2 15.3 29.3 17.8 42.9 9.8 16.2-9.6 56.2-31.7 105.3-48.6V416h224v-90.7c49.1 16.8 89.1 39 105.3 48.6 13.6 8 32.7 5.3 42.9-9.8l17.8-26.7c8.8-13.2 7.6-34.6-10-45.1-11.9-7.1-29.7-17-51.1-27.4-28.1 46.1-99.4 17.8-87.7-35.1C409.3 217.2 365.1 208 320 208c-57 0-112.9 14.5-160 32.2-.2 40.2-47.6 63.3-79.2 36-11.2 6-21.3 11.6-28.7 16-17.6 10.5-18.8 31.8-10 45.1L59.8 364zM368 344c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-160 8c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm512 192H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z" ], + dice: [ 640, 512, [], "f522", "M592 192H473.26c12.69 29.59 7.12 65.2-17 89.32L320 417.58V464c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48V240c0-26.51-21.49-48-48-48zM480 376c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm-46.37-186.7L258.7 14.37c-19.16-19.16-50.23-19.16-69.39 0L14.37 189.3c-19.16 19.16-19.16 50.23 0 69.39L189.3 433.63c19.16 19.16 50.23 19.16 69.39 0L433.63 258.7c19.16-19.17 19.16-50.24 0-69.4zM96 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z" ], + "dice-five": [ 448, 512, [], "f523", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "dice-four": [ 448, 512, [], "f524", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "dice-one": [ 448, 512, [], "f525", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM224 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "dice-six": [ 448, 512, [], "f526", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "dice-three": [ 448, 512, [], "f527", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "dice-two": [ 448, 512, [], "f528", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + "digital-tachograph": [ 640, 512, [], "f566", "M608 96H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128c0-17.67-14.33-32-32-32zM304 352c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8zM72 288v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H80c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm40-64c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-48c0-8.84 7.16-16 16-16h208c8.84 0 16 7.16 16 16v48zm272 128c0 4.42-3.58 8-8 8H344c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8z" ], + divide: [ 448, 512, [], "f529", "M224 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm0-192c35.35 0 64-28.65 64-64s-28.65-64-64-64-64 28.65-64 64 28.65 64 64 64zm192 48H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" ], + dizzy: [ 496, 512, [], "f567", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-96 206.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L174.6 192l28.7 28.7c15.2 15.2-7.9 37.4-22.6 22.6L152 214.6zM248 416c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm147.3-195.3c15.2 15.2-7.9 37.4-22.6 22.6L344 214.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L366.6 192l28.7 28.7z" ], + dna: [ 448, 512, [], "f471", "M.1 494.1c-1.1 9.5 6.3 17.8 15.9 17.8l32.3.1c8.1 0 14.9-5.9 16-13.9.7-4.9 1.8-11.1 3.4-18.1H380c1.6 6.9 2.9 13.2 3.5 18.1 1.1 8 7.9 14 16 13.9l32.3-.1c9.6 0 17.1-8.3 15.9-17.8-4.6-37.9-25.6-129-118.9-207.7-17.6 12.4-37.1 24.2-58.5 35.4 6.2 4.6 11.4 9.4 17 14.2H159.7c21.3-18.1 47-35.6 78.7-51.4C410.5 199.1 442.1 65.8 447.9 17.9 449 8.4 441.6.1 432 .1L399.6 0c-8.1 0-14.9 5.9-16 13.9-.7 4.9-1.8 11.1-3.4 18.1H67.8c-1.6-7-2.7-13.1-3.4-18.1-1.1-8-7.9-14-16-13.9L16.1.1C6.5.1-1 8.4.1 17.9 5.3 60.8 31.4 171.8 160 256 31.5 340.2 5.3 451.2.1 494.1zM224 219.6c-25.1-13.7-46.4-28.4-64.3-43.6h128.5c-17.8 15.2-39.1 30-64.2 43.6zM355.1 96c-5.8 10.4-12.8 21.1-21 32H114c-8.3-10.9-15.3-21.6-21-32h262.1zM92.9 416c5.8-10.4 12.8-21.1 21-32h219.4c8.3 10.9 15.4 21.6 21.2 32H92.9z" ], + "dollar-sign": [ 288, 512, [], "f155", "M209.2 233.4l-108-31.6C88.7 198.2 80 186.5 80 173.5c0-16.3 13.2-29.5 29.5-29.5h66.3c12.2 0 24.2 3.7 34.2 10.5 6.1 4.1 14.3 3.1 19.5-2l34.8-34c7.1-6.9 6.1-18.4-1.8-24.5C238 74.8 207.4 64.1 176 64V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C45.8 64-5.4 118.7.5 183.6c4.2 46.1 39.4 83.6 83.8 96.6l102.5 30c12.5 3.7 21.2 15.3 21.2 28.3 0 16.3-13.2 29.5-29.5 29.5h-66.3C100 368 88 364.3 78 357.5c-6.1-4.1-14.3-3.1-19.5 2l-34.8 34c-7.1 6.9-6.1 18.4 1.8 24.5 24.5 19.2 55.1 29.9 86.5 30v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48.2c46.6-.9 90.3-28.6 105.7-72.7 21.5-61.6-14.6-124.8-72.5-141.7z" ], + dolly: [ 576, 512, [], "f472", "M294.2 277.7c18 5 34.7 13.4 49.5 24.7l161.5-53.8c8.4-2.8 12.9-11.9 10.1-20.2L454.9 47.2c-2.8-8.4-11.9-12.9-20.2-10.1l-61.1 20.4 33.1 99.4L346 177l-33.1-99.4-61.6 20.5c-8.4 2.8-12.9 11.9-10.1 20.2l53 159.4zm281 48.7L565 296c-2.8-8.4-11.9-12.9-20.2-10.1l-213.5 71.2c-17.2-22-43.6-36.4-73.5-37L158.4 21.9C154 8.8 141.8 0 128 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h88.9l92.2 276.7c-26.1 20.4-41.7 53.6-36 90.5 6.1 39.4 37.9 72.3 77.3 79.2 60.2 10.7 112.3-34.8 113.4-92.6l213.3-71.2c8.3-2.8 12.9-11.8 10.1-20.2zM256 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z" ], + "dolly-flatbed": [ 640, 512, [], "f474", "M208 320h384c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H448v128l-48-32-48 32V32H208c-8.8 0-16 7.2-16 16v256c0 8.8 7.2 16 16 16zm416 64H128V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h82.9c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H451c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H624c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z" ], + donate: [ 512, 512, [], "f4b9", "M256 416c114.9 0 208-93.1 208-208S370.9 0 256 0 48 93.1 48 208s93.1 208 208 208zM233.8 97.4V80.6c0-9.2 7.4-16.6 16.6-16.6h11.1c9.2 0 16.6 7.4 16.6 16.6v17c15.5.8 30.5 6.1 43 15.4 5.6 4.1 6.2 12.3 1.2 17.1L306 145.6c-3.8 3.7-9.5 3.8-14 1-5.4-3.4-11.4-5.1-17.8-5.1h-38.9c-9 0-16.3 8.2-16.3 18.3 0 8.2 5 15.5 12.1 17.6l62.3 18.7c25.7 7.7 43.7 32.4 43.7 60.1 0 34-26.4 61.5-59.1 62.4v16.8c0 9.2-7.4 16.6-16.6 16.6h-11.1c-9.2 0-16.6-7.4-16.6-16.6v-17c-15.5-.8-30.5-6.1-43-15.4-5.6-4.1-6.2-12.3-1.2-17.1l16.3-15.5c3.8-3.7 9.5-3.8 14-1 5.4 3.4 11.4 5.1 17.8 5.1h38.9c9 0 16.3-8.2 16.3-18.3 0-8.2-5-15.5-12.1-17.6l-62.3-18.7c-25.7-7.7-43.7-32.4-43.7-60.1.1-34 26.4-61.5 59.1-62.4zM480 352h-32.5c-19.6 26-44.6 47.7-73 64h63.8c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8h63.8c-28.4-16.3-53.3-38-73-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32z" ], + "door-closed": [ 640, 512, [], "f52a", "M624 448H512V50.8C512 22.78 490.47 0 464 0H175.99c-26.47 0-48 22.78-48 50.8V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM415.99 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32c.01 17.67-14.32 32-32 32z" ], + "door-open": [ 640, 512, [], "f52b", "M624 448h-80V113.45C544 86.19 522.47 64 496 64H384v64h96v384h144c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM312.24 1.01l-192 49.74C105.99 54.44 96 67.7 96 82.92V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h336V33.18c0-21.58-19.56-37.41-39.76-32.17zM264 288c-13.25 0-24-14.33-24-32s10.75-32 24-32 24 14.33 24 32-10.75 32-24 32z" ], + "dot-circle": [ 512, 512, [], "f192", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z" ], + dove: [ 512, 512, [], "f4ba", "M288 167.2v-28.1c-28.2-36.3-47.1-79.3-54.1-125.2-2.1-13.5-19-18.8-27.8-8.3-21.1 24.9-37.7 54.1-48.9 86.5 34.2 38.3 80 64.6 130.8 75.1zM400 64c-44.2 0-80 35.9-80 80.1v59.4C215.6 197.3 127 133 87 41.8c-5.5-12.5-23.2-13.2-29-.9C41.4 76 32 115.2 32 156.6c0 70.8 34.1 136.9 85.1 185.9 13.2 12.7 26.1 23.2 38.9 32.8l-143.9 36C1.4 414-3.4 426.4 2.6 435.7 20 462.6 63 508.2 155.8 512c8 .3 16-2.6 22.1-7.9l65.2-56.1H320c88.4 0 160-71.5 160-159.9V128l32-64H400zm0 96.1c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z" ], + download: [ 512, 512, [], "f019", "M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z" ], + "drafting-compass": [ 512, 512, [], "f568", "M457.01 344.42c-25.05 20.33-52.63 37.18-82.54 49.05l54.38 94.19 53.95 23.04c9.81 4.19 20.89-2.21 22.17-12.8l7.02-58.25-54.98-95.23zm42.49-94.56c4.86-7.67 1.89-17.99-6.05-22.39l-28.07-15.57c-7.48-4.15-16.61-1.46-21.26 5.72C403.01 281.15 332.25 320 256 320c-23.93 0-47.23-4.25-69.41-11.53l67.36-116.68c.7.02 1.34.21 2.04.21s1.35-.19 2.04-.21l51.09 88.5c31.23-8.96 59.56-25.75 82.61-48.92l-51.79-89.71C347.39 128.03 352 112.63 352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96c0 16.63 4.61 32.03 12.05 45.66l-68.3 118.31c-12.55-11.61-23.96-24.59-33.68-39-4.79-7.1-13.97-9.62-21.38-5.33l-27.75 16.07c-7.85 4.54-10.63 14.9-5.64 22.47 15.57 23.64 34.69 44.21 55.98 62.02L0 439.66l7.02 58.25c1.28 10.59 12.36 16.99 22.17 12.8l53.95-23.04 70.8-122.63C186.13 377.28 220.62 384 256 384c99.05 0 190.88-51.01 243.5-134.14zM256 64c17.67 0 32 14.33 32 32s-14.33 32-32 32-32-14.33-32-32 14.33-32 32-32z" ], + drum: [ 576, 512, [], "f569", "M458.08 120.88l102.39-61.43c15.16-9.09 20.06-28.75 10.97-43.91C562.34.39 542.7-4.53 527.53 4.57l-160.69 96.41A629.32 629.32 0 0 0 288 96C128.94 96 0 153.31 0 224v160.83c0 30.46 24.03 58.4 64 80.37v-96.37c0-17.6 14.4-32 32-32s32 14.4 32 32v122.41c37.4 11.13 81 18.44 128 20.75V400.84c0-17.6 14.4-32 32-32s32 14.4 32 32V512c47-2.31 90.6-9.62 128-20.75V368.84c0-17.6 14.4-32 32-32s32 14.4 32 32v96.37c39.97-21.97 64-49.91 64-80.37V224.01c-.01-42.38-46.54-79.84-117.92-103.13zM288 304c-132.55 0-240-35.82-240-80s107.45-80 240-80c2.34 0 4.62.1 6.94.12l-87.41 52.44c-15.16 9.09-20.06 28.75-10.97 43.91 9.56 15.93 29.51 19.61 43.91 10.97l162.71-97.62C477.55 167.41 528 193.74 528 224.01 528 268.19 420.54 304 288 304z" ], + "drum-steelpan": [ 576, 512, [], "f56a", "M288 32C128.94 32 0 89.31 0 160v192c0 70.69 128.94 128 288 128s288-57.31 288-128V160c0-70.69-128.94-128-288-128zm-82.99 158.36c-4.45 16.61-14.54 30.57-28.31 40.48C100.23 217.46 48 190.78 48 160c0-30.16 50.11-56.39 124.04-70.03l25.6 44.34c9.86 17.09 12.48 36.99 7.37 56.05zM288 240c-21.08 0-41.41-1-60.89-2.7 8.06-26.13 32.15-45.3 60.89-45.3s52.83 19.17 60.89 45.3C329.41 239 309.08 240 288 240zm64-144c0 35.29-28.71 64-64 64s-64-28.71-64-64V82.96c20.4-1.88 41.8-2.96 64-2.96s43.6 1.08 64 2.96V96zm46.93 134.9c-13.81-9.91-23.94-23.9-28.4-40.54-5.11-19.06-2.49-38.96 7.38-56.04l25.65-44.42C477.72 103.5 528 129.79 528 160c0 30.83-52.4 57.54-129.07 70.9z" ], + dumbbell: [ 640, 512, [], "f44b", "M104 96H56c-13.3 0-24 10.7-24 24v104H8c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h24v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm528 128h-24V120c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v272c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h24c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM456 32h-48c-13.3 0-24 10.7-24 24v168H256V56c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v400c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h128v168c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24z" ], + edit: [ 576, 512, [], "f044", "M402.6 83.2l90.2 90.2c3.8 3.8 3.8 10 0 13.8L274.4 405.6l-92.8 10.3c-12.4 1.4-22.9-9.1-21.5-21.5l10.3-92.8L388.8 83.2c3.8-3.8 10-3.8 13.8 0zm162-22.9l-48.8-48.8c-15.2-15.2-39.9-15.2-55.2 0l-35.4 35.4c-3.8 3.8-3.8 10 0 13.8l90.2 90.2c3.8 3.8 10 3.8 13.8 0l35.4-35.4c15.2-15.3 15.2-40 0-55.2zM384 346.2V448H64V128h229.8c3.2 0 6.2-1.3 8.5-3.5l40-40c7.6-7.6 2.2-20.5-8.5-20.5H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V306.2c0-10.7-12.9-16-20.5-8.5l-40 40c-2.2 2.3-3.5 5.3-3.5 8.5z" ], + eject: [ 448, 512, [], "f052", "M448 384v64c0 17.673-14.327 32-32 32H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h384c17.673 0 32 14.327 32 32zM48.053 320h351.886c41.651 0 63.581-49.674 35.383-80.435L259.383 47.558c-19.014-20.743-51.751-20.744-70.767 0L12.67 239.565C-15.475 270.268 6.324 320 48.053 320z" ], + "ellipsis-h": [ 512, 512, [], "f141", "M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z" ], + "ellipsis-v": [ 192, 512, [], "f142", "M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" ], + envelope: [ 512, 512, [], "f0e0", "M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z" ], + "envelope-open": [ 512, 512, [], "f2b6", "M512 464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V200.724a48 48 0 0 1 18.387-37.776c24.913-19.529 45.501-35.365 164.2-121.511C199.412 29.17 232.797-.347 256 .003c23.198-.354 56.596 29.172 73.413 41.433 118.687 86.137 139.303 101.995 164.2 121.512A48 48 0 0 1 512 200.724V464zm-65.666-196.605c-2.563-3.728-7.7-4.595-11.339-1.907-22.845 16.873-55.462 40.705-105.582 77.079-16.825 12.266-50.21 41.781-73.413 41.43-23.211.344-56.559-29.143-73.413-41.43-50.114-36.37-82.734-60.204-105.582-77.079-3.639-2.688-8.776-1.821-11.339 1.907l-9.072 13.196a7.998 7.998 0 0 0 1.839 10.967c22.887 16.899 55.454 40.69 105.303 76.868 20.274 14.781 56.524 47.813 92.264 47.573 35.724.242 71.961-32.771 92.263-47.573 49.85-36.179 82.418-59.97 105.303-76.868a7.998 7.998 0 0 0 1.839-10.967l-9.071-13.196z" ], + "envelope-square": [ 448, 512, [], "f199", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM178.117 262.104C87.429 196.287 88.353 196.121 64 177.167V152c0-13.255 10.745-24 24-24h272c13.255 0 24 10.745 24 24v25.167c-24.371 18.969-23.434 19.124-114.117 84.938-10.5 7.655-31.392 26.12-45.883 25.894-14.503.218-35.367-18.227-45.883-25.895zM384 217.775V360c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V217.775c13.958 10.794 33.329 25.236 95.303 70.214 14.162 10.341 37.975 32.145 64.694 32.01 26.887.134 51.037-22.041 64.72-32.025 61.958-44.965 81.325-59.406 95.283-70.199z" ], + equals: [ 448, 512, [], "f52c", "M416 304H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32zm0-192H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" ], + eraser: [ 512, 512, [], "f12d", "M497.941 273.941c18.745-18.745 18.745-49.137 0-67.882l-160-160c-18.745-18.745-49.136-18.746-67.883 0l-256 256c-18.745 18.745-18.745 49.137 0 67.882l96 96A48.004 48.004 0 0 0 144 480h356c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H355.883l142.058-142.059zm-302.627-62.627l137.373 137.373L265.373 416H150.628l-80-80 124.686-124.686z" ], + "euro-sign": [ 320, 512, [], "f153", "M310.706 413.765c-1.314-6.63-7.835-10.872-14.424-9.369-10.692 2.439-27.422 5.413-45.426 5.413-56.763 0-101.929-34.79-121.461-85.449h113.689a12 12 0 0 0 11.708-9.369l6.373-28.36c1.686-7.502-4.019-14.631-11.708-14.631H115.22c-1.21-14.328-1.414-28.287.137-42.245H261.95a12 12 0 0 0 11.723-9.434l6.512-29.755c1.638-7.484-4.061-14.566-11.723-14.566H130.184c20.633-44.991 62.69-75.03 117.619-75.03 14.486 0 28.564 2.25 37.851 4.145 6.216 1.268 12.347-2.498 14.002-8.623l11.991-44.368c1.822-6.741-2.465-13.616-9.326-14.917C290.217 34.912 270.71 32 249.635 32 152.451 32 74.03 92.252 45.075 176H12c-6.627 0-12 5.373-12 12v29.755c0 6.627 5.373 12 12 12h21.569c-1.009 13.607-1.181 29.287-.181 42.245H12c-6.627 0-12 5.373-12 12v28.36c0 6.627 5.373 12 12 12h30.114C67.139 414.692 145.264 480 249.635 480c26.301 0 48.562-4.544 61.101-7.788 6.167-1.595 10.027-7.708 8.788-13.957l-8.818-44.49z" ], + "exchange-alt": [ 512, 512, [], "f362", "M0 168v-16c0-13.255 10.745-24 24-24h360V80c0-21.367 25.899-32.042 40.971-16.971l80 80c9.372 9.373 9.372 24.569 0 33.941l-80 80C409.956 271.982 384 261.456 384 240v-48H24c-13.255 0-24-10.745-24-24zm488 152H128v-48c0-21.314-25.862-32.08-40.971-16.971l-80 80c-9.372 9.373-9.372 24.569 0 33.941l80 80C102.057 463.997 128 453.437 128 432v-48h360c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z" ], + exclamation: [ 192, 512, [], "f12a", "M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z" ], + "exclamation-circle": [ 512, 512, [], "f06a", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z" ], + "exclamation-triangle": [ 576, 512, [], "f071", "M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z" ], + expand: [ 448, 512, [], "f065", "M0 180V56c0-13.3 10.7-24 24-24h124c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H64v84c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12zM288 44v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V56c0-13.3-10.7-24-24-24H300c-6.6 0-12 5.4-12 12zm148 276h-40c-6.6 0-12 5.4-12 12v84h-84c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24V332c0-6.6-5.4-12-12-12zM160 468v-40c0-6.6-5.4-12-12-12H64v-84c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v124c0 13.3 10.7 24 24 24h124c6.6 0 12-5.4 12-12z" ], + "expand-arrows-alt": [ 448, 512, [], "f31e", "M448.1 344v112c0 13.3-10.7 24-24 24h-112c-21.4 0-32.1-25.9-17-41l36.2-36.2L224 295.6 116.8 402.9 153 439c15.1 15.1 4.4 41-17 41H24c-13.3 0-24-10.7-24-24V344c0-21.4 25.9-32.1 41-17l36.2 36.2L184.5 256 77.2 148.7 41 185c-15.1 15.1-41 4.4-41-17V56c0-13.3 10.7-24 24-24h112c21.4 0 32.1 25.9 17 41l-36.2 36.2L224 216.4l107.3-107.3L295.1 73c-15.1-15.1-4.4-41 17-41h112c13.3 0 24 10.7 24 24v112c0 21.4-25.9 32.1-41 17l-36.2-36.2L263.6 256l107.3 107.3 36.2-36.2c15.1-15.2 41-4.5 41 16.9z" ], + "external-link-alt": [ 576, 512, [], "f35d", "M576 24v127.984c0 21.461-25.96 31.98-40.971 16.971l-35.707-35.709-243.523 243.523c-9.373 9.373-24.568 9.373-33.941 0l-22.627-22.627c-9.373-9.373-9.373-24.569 0-33.941L442.756 76.676l-35.703-35.705C391.982 25.9 402.656 0 424.024 0H552c13.255 0 24 10.745 24 24zM407.029 270.794l-16 16A23.999 23.999 0 0 0 384 303.765V448H64V128h264a24.003 24.003 0 0 0 16.97-7.029l16-16C376.089 89.851 365.381 64 344 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V287.764c0-21.382-25.852-32.09-40.971-16.97z" ], + "external-link-square-alt": [ 448, 512, [], "f360", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-88 16H248.029c-21.313 0-32.08 25.861-16.971 40.971l31.984 31.987L67.515 364.485c-4.686 4.686-4.686 12.284 0 16.971l31.029 31.029c4.687 4.686 12.285 4.686 16.971 0l195.526-195.526 31.988 31.991C358.058 263.977 384 253.425 384 231.979V120c0-13.255-10.745-24-24-24z" ], + eye: [ 576, 512, [], "f06e", "M569.354 231.631C512.969 135.949 407.81 72 288 72 168.14 72 63.004 135.994 6.646 231.631a47.999 47.999 0 0 0 0 48.739C63.031 376.051 168.19 440 288 440c119.86 0 224.996-63.994 281.354-159.631a47.997 47.997 0 0 0 0-48.738zM288 392c-75.162 0-136-60.827-136-136 0-75.162 60.826-136 136-136 75.162 0 136 60.826 136 136 0 75.162-60.826 136-136 136zm104-136c0 57.438-46.562 104-104 104s-104-46.562-104-104c0-17.708 4.431-34.379 12.236-48.973l-.001.032c0 23.651 19.173 42.823 42.824 42.823s42.824-19.173 42.824-42.823c0-23.651-19.173-42.824-42.824-42.824l-.032.001C253.621 156.431 270.292 152 288 152c57.438 0 104 46.562 104 104z" ], + "eye-dropper": [ 512, 512, [], "f1fb", "M50.75 333.25c-12 12-18.75 28.28-18.75 45.26V424L0 480l32 32 56-32h45.49c16.97 0 33.25-6.74 45.25-18.74l126.64-126.62-128-128L50.75 333.25zM483.88 28.12c-37.47-37.5-98.28-37.5-135.75 0l-77.09 77.09-13.1-13.1c-9.44-9.44-24.65-9.31-33.94 0l-40.97 40.97c-9.37 9.37-9.37 24.57 0 33.94l161.94 161.94c9.44 9.44 24.65 9.31 33.94 0L419.88 288c9.37-9.37 9.37-24.57 0-33.94l-13.1-13.1 77.09-77.09c37.51-37.48 37.51-98.26.01-135.75z" ], + "eye-slash": [ 576, 512, [], "f070", "M286.693 391.984l32.579 46.542A333.958 333.958 0 0 1 288 440C168.19 440 63.031 376.051 6.646 280.369a47.999 47.999 0 0 1 0-48.739c24.023-40.766 56.913-75.775 96.024-102.537l57.077 81.539C154.736 224.82 152 240.087 152 256c0 74.736 60.135 135.282 134.693 135.984zm282.661-111.615c-31.667 53.737-78.747 97.46-135.175 125.475l.011.015 41.47 59.2c7.6 10.86 4.96 25.82-5.9 33.42l-13.11 9.18c-10.86 7.6-25.82 4.96-33.42-5.9L100.34 46.94c-7.6-10.86-4.96-25.82 5.9-33.42l13.11-9.18c10.86-7.6 25.82-4.96 33.42 5.9l51.038 72.617C230.68 75.776 258.905 72 288 72c119.81 0 224.969 63.949 281.354 159.631a48.002 48.002 0 0 1 0 48.738zM424 256c0-75.174-60.838-136-136-136-17.939 0-35.056 3.473-50.729 9.772l19.299 27.058c25.869-8.171 55.044-6.163 80.4 7.41h-.03c-23.65 0-42.82 19.17-42.82 42.82 0 23.626 19.147 42.82 42.82 42.82 23.65 0 42.82-19.17 42.82-42.82v-.03c18.462 34.49 16.312 77.914-8.25 110.95v.01l19.314 27.061C411.496 321.2 424 290.074 424 256zM262.014 356.727l-77.53-110.757c-5.014 52.387 29.314 98.354 77.53 110.757z" ], + "fast-backward": [ 512, 512, [], "f049", "M0 436V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v151.9L235.5 71.4C256.1 54.3 288 68.6 288 96v131.9L459.5 71.4C480.1 54.3 512 68.6 512 96v320c0 27.4-31.9 41.7-52.5 24.6L288 285.3V416c0 27.4-31.9 41.7-52.5 24.6L64 285.3V436c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12z" ], + "fast-forward": [ 512, 512, [], "f050", "M512 76v360c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V284.1L276.5 440.6c-20.6 17.2-52.5 2.8-52.5-24.6V284.1L52.5 440.6C31.9 457.8 0 443.4 0 416V96c0-27.4 31.9-41.7 52.5-24.6L224 226.8V96c0-27.4 31.9-41.7 52.5-24.6L448 226.8V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12z" ], + fax: [ 512, 512, [], "f1ac", "M128 144v320c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V144c0-26.51 21.49-48 48-48h32c26.51 0 48 21.49 48 48zm384 64v256c0 26.51-21.49 48-48 48H192c-26.51 0-48-21.49-48-48V40c0-22.091 17.909-40 40-40h207.432a39.996 39.996 0 0 1 28.284 11.716l48.569 48.569A39.999 39.999 0 0 1 480 88.568v74.174c18.641 6.591 32 24.36 32 45.258zm-320-16h240V96h-24c-13.203 0-24-10.797-24-24V48H192v144zm96 204c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm128 128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zm0-128c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40z" ], + feather: [ 512, 512, [], "f52d", "M467.14 44.84c-62.55-62.48-161.67-64.78-252.28 25.73-78.61 78.52-60.98 60.92-85.75 85.66-60.46 60.39-70.39 150.83-63.64 211.17l178.44-178.25c6.26-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.6 9.37 33.98 0l66.1-66.03C159.42 454.65 279 457.11 353.95 384h-98.19l147.57-49.14c49.99-49.93 36.38-36.18 46.31-46.86h-97.78l131.54-43.8c45.44-74.46 34.31-148.84-16.26-199.36z" ], + "feather-alt": [ 512, 512, [], "f56b", "M512 0C460.22 3.56 96.44 38.2 71.01 287.61c-3.09 26.66-4.84 53.44-5.99 80.24l178.87-178.69c6.25-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.59 9.37 33.98 0l57.13-57.07c42.09-.14 84.15-2.53 125.96-7.36 53.48-5.44 97.02-26.47 132.58-56.54H255.74l146.79-48.88c11.25-14.89 21.37-30.71 30.45-47.12h-81.14l106.54-53.21C500.29 132.86 510.19 26.26 512 0z" ], + female: [ 256, 512, [], "f182", "M128 0c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64S92.654 0 128 0m119.283 354.179l-48-192A24 24 0 0 0 176 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H80a24 24 0 0 0-23.283 18.179l-48 192C4.935 369.305 16.383 384 32 384h56v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V384h56c15.591 0 27.071-14.671 23.283-29.821z" ], + "fighter-jet": [ 640, 512, [], "f0fb", "M544 224l-128-16-48-16h-24L227.158 44h39.509C278.333 44 288 41.375 288 38s-9.667-6-21.333-6H152v12h16v164h-48l-66.667-80H18.667L8 138.667V208h8v16h48v2.666l-64 8v42.667l64 8V288H16v16H8v69.333L18.667 384h34.667L120 304h48v164h-16v12h114.667c11.667 0 21.333-2.625 21.333-6s-9.667-6-21.333-6h-39.509L344 320h24l48-16 128-16c96-21.333 96-26.583 96-32 0-5.417 0-10.667-96-32z" ], + file: [ 384, 512, [], "f15b", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + "file-alt": [ 384, 512, [], "f15c", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + "file-archive": [ 384, 512, [], "f1c6", "M224 136V0h-63.6v32h-32V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM95.9 32h32v32h-32V32zm32.3 384c-33.2 0-58-30.4-51.4-62.9L96.4 256v-32h32v-32h-32v-32h32v-32h-32V96h32V64h32v32h-32v32h32v32h-32v32h32v32h-32v32h22.1c5.7 0 10.7 4.1 11.8 9.7l17.3 87.7c6.4 32.4-18.4 62.6-51.4 62.6zm32.7-53c0 14.9-14.5 27-32.4 27S96 378 96 363c0-14.9 14.5-27 32.4-27s32.5 12.1 32.5 27zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + "file-audio": [ 384, 512, [], "f1c7", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + "file-code": [ 384, 512, [], "f1c9", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zM123.206 400.505a5.4 5.4 0 0 1-7.633.246l-64.866-60.812a5.4 5.4 0 0 1 0-7.879l64.866-60.812a5.4 5.4 0 0 1 7.633.246l19.579 20.885a5.4 5.4 0 0 1-.372 7.747L101.65 336l40.763 35.874a5.4 5.4 0 0 1 .372 7.747l-19.579 20.884zm51.295 50.479l-27.453-7.97a5.402 5.402 0 0 1-3.681-6.692l61.44-211.626a5.402 5.402 0 0 1 6.692-3.681l27.452 7.97a5.4 5.4 0 0 1 3.68 6.692l-61.44 211.626a5.397 5.397 0 0 1-6.69 3.681zm160.792-111.045l-64.866 60.812a5.4 5.4 0 0 1-7.633-.246l-19.58-20.885a5.4 5.4 0 0 1 .372-7.747L284.35 336l-40.763-35.874a5.4 5.4 0 0 1-.372-7.747l19.58-20.885a5.4 5.4 0 0 1 7.633-.246l64.866 60.812a5.4 5.4 0 0 1-.001 7.879z" ], + "file-contract": [ 384, 512, [], "f56c", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm192.81 248H304c8.84 0 16 7.16 16 16s-7.16 16-16 16h-47.19c-16.45 0-31.27-9.14-38.64-23.86-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34a15.986 15.986 0 0 1-14.31 8.84c-.38 0-.75-.02-1.14-.05-6.45-.45-12-4.75-14.03-10.89L144 354.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.77-16.19 54.05-9.7 66 14.16 2.02 4.06 5.96 6.5 10.16 6.5zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" ], + "file-download": [ 384, 512, [], "f56d", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm76.45 211.36l-96.42 95.7c-6.65 6.61-17.39 6.61-24.04 0l-96.42-95.7C73.42 337.29 80.54 320 94.82 320H160v-80c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v80h65.18c14.28 0 21.4 17.29 11.27 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" ], + "file-excel": [ 384, 512, [], "f1c3", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm60.1 106.5L224 336l60.1 93.5c5.1 8-.6 18.5-10.1 18.5h-34.9c-4.4 0-8.5-2.4-10.6-6.3C208.9 405.5 192 373 192 373c-6.4 14.8-10 20-36.6 68.8-2.1 3.9-6.1 6.3-10.5 6.3H110c-9.5 0-15.2-10.5-10.1-18.5l60.3-93.5-60.3-93.5c-5.2-8 .6-18.5 10.1-18.5h34.8c4.4 0 8.5 2.4 10.6 6.3 26.1 48.8 20 33.6 36.6 68.5 0 0 6.1-11.7 36.6-68.5 2.1-3.9 6.2-6.3 10.6-6.3H274c9.5-.1 15.2 10.4 10.1 18.4zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + "file-export": [ 576, 512, [], "f56e", "M384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zM192 336v-32c0-8.84 7.16-16 16-16h176V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V352H208c-8.84 0-16-7.16-16-16zm379.05-28.02l-95.7-96.43c-10.06-10.14-27.36-3.01-27.36 11.27V288H384v64h63.99v65.18c0 14.28 17.29 21.41 27.36 11.27l95.7-96.42c6.6-6.66 6.6-17.4 0-24.05z" ], + "file-image": [ 384, 512, [], "f1c5", "M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z" ], + "file-import": [ 512, 512, [], "f56f", "M16 288c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h112v-64H16zm336-152V0H152c-13.3 0-24 10.7-24 24v264h127.99v-65.18c0-14.28 17.29-21.41 27.36-11.27l95.7 96.43c6.6 6.65 6.6 17.39 0 24.04l-95.7 96.42c-10.06 10.14-27.36 3.01-27.36-11.27V352H128v136c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H376c-13.2 0-24-10.8-24-24zm153-31L407.1 7c-4.5-4.5-10.6-7-17-7H384v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" ], + "file-invoice": [ 384, 512, [], "f570", "M288 256H96v64h192v-64zm89-151L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm256 304c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-200v96c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-96c0-8.84 7.16-16 16-16h224c8.84 0 16 7.16 16 16z" ], + "file-invoice-dollar": [ 384, 512, [], "f571", "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 80v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8zm144 263.88V440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-24.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V232c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v24.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07z" ], + "file-medical": [ 384, 512, [], "f477", "M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 160v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8z" ], + "file-medical-alt": [ 448, 512, [], "f478", "M288 136V0H88C74.7 0 64 10.7 64 24v232H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h140.9c3 0 5.8 1.7 7.2 4.4l19.9 39.8 56.8-113.7c2.9-5.9 11.4-5.9 14.3 0l34.7 69.5H352c8.8 0 16 7.2 16 16s-7.2 16-16 16h-89.9L240 275.8l-56.8 113.7c-2.9 5.9-11.4 5.9-14.3 0L134.1 320H64v168c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H312c-13.2 0-24-10.8-24-24zm153-31L343.1 7c-4.5-4.5-10.6-7-17-7H320v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" ], + "file-pdf": [ 384, 512, [], "f1c1", "M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z" ], + "file-powerpoint": [ 384, 512, [], "f1c4", "M193.7 271.2c8.8 0 15.5 2.7 20.3 8.1 9.6 10.9 9.8 32.7-.2 44.1-4.9 5.6-11.9 8.5-21.1 8.5h-26.9v-60.7h27.9zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm53 165.2c0 90.3-88.8 77.6-111.1 77.6V436c0 6.6-5.4 12-12 12h-30.8c-6.6 0-12-5.4-12-12V236.2c0-6.6 5.4-12 12-12h81c44.5 0 72.9 32.8 72.9 77z" ], + "file-prescription": [ 384, 512, [], "f572", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm68.53 179.48l11.31 11.31c6.25 6.25 6.25 16.38 0 22.63l-29.9 29.9L304 409.38c6.25 6.25 6.25 16.38 0 22.63l-11.31 11.31c-6.25 6.25-16.38 6.25-22.63 0L240 413.25l-30.06 30.06c-6.25 6.25-16.38 6.25-22.63 0L176 432c-6.25-6.25-6.25-16.38 0-22.63l30.06-30.06L146.74 320H128v48c0 8.84-7.16 16-16 16H96c-8.84 0-16-7.16-16-16V208c0-8.84 7.16-16 16-16h80c35.35 0 64 28.65 64 64 0 24.22-13.62 45.05-33.46 55.92L240 345.38l29.9-29.9c6.25-6.25 16.38-6.25 22.63 0zM176 272h-48v-32h48c8.82 0 16 7.18 16 16s-7.18 16-16 16zm208-150.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + "file-signature": [ 576, 512, [], "f573", "M218.17 424.14c-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34c-6.37 12.78-25.03 11.37-29.48-2.09L144 386.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.75-16.19 54.06-9.7 66 14.16 1.89 3.78 5.49 5.95 9.36 6.26v-82.12l128-127.09V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24v-40l-128-.11c-16.12-.31-30.58-9.28-37.83-23.75zM384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zm-96 225.06V416h68.99l161.68-162.78-67.88-67.88L288 346.96zm280.54-179.63l-31.87-31.87c-9.94-9.94-26.07-9.94-36.01 0l-27.25 27.25 67.88 67.88 27.25-27.25c9.95-9.94 9.95-26.07 0-36.01z" ], + "file-upload": [ 384, 512, [], "f574", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm65.18 216.01H224v80c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-80H94.82c-14.28 0-21.41-17.29-11.27-27.36l96.42-95.7c6.65-6.61 17.39-6.61 24.04 0l96.42 95.7c10.15 10.07 3.03 27.36-11.25 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z" ], + "file-video": [ 384, 512, [], "f1c8", "M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z" ], + "file-word": [ 384, 512, [], "f1c2", "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm57.1 120H305c7.7 0 13.4 7.1 11.7 14.7l-38 168c-1.2 5.5-6.1 9.3-11.7 9.3h-38c-5.5 0-10.3-3.8-11.6-9.1-25.8-103.5-20.8-81.2-25.6-110.5h-.5c-1.1 14.3-2.4 17.4-25.6 110.5-1.3 5.3-6.1 9.1-11.6 9.1H117c-5.6 0-10.5-3.9-11.7-9.4l-37.8-168c-1.7-7.5 4-14.6 11.7-14.6h24.5c5.7 0 10.7 4 11.8 9.7 15.6 78 20.1 109.5 21 122.2 1.6-10.2 7.3-32.7 29.4-122.7 1.3-5.4 6.1-9.1 11.7-9.1h29.1c5.6 0 10.4 3.8 11.7 9.2 24 100.4 28.8 124 29.6 129.4-.2-11.2-2.6-17.8 21.6-129.2 1-5.6 5.9-9.5 11.5-9.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" ], + fill: [ 512, 512, [], "f575", "M502.63 217.06L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.77c-6.24-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.63l86.19 86.18-94.76 94.76c-37.49 37.49-37.49 98.26 0 135.75l117.19 117.19c18.75 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.88-28.12l221.57-221.57c12.49-12.5 12.49-32.76 0-45.26zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.61 58.6c12.49 12.49 32.75 12.49 45.24 0 12.49-12.49 12.49-32.75 0-45.24l-58.61-58.6 58.95-58.95 162.45 162.44-48.35 48.34z" ], + "fill-drip": [ 576, 512, [], "f576", "M512 320s-64 92.65-64 128c0 35.35 28.66 64 64 64s64-28.65 64-64-64-128-64-128zm-9.37-102.94L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.76c-6.25-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.62l86.19 86.18-94.76 94.76c-37.49 37.48-37.49 98.26 0 135.75l117.19 117.19c18.74 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.87-28.12l221.57-221.57c12.5-12.5 12.5-32.75.01-45.25zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.6 58.6c12.49 12.49 32.75 12.49 45.24 0s12.49-32.75 0-45.24l-58.6-58.6 58.95-58.95 162.44 162.44-48.34 48.34z" ], + film: [ 512, 512, [], "f008", "M488 64h-8v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V64H96v20c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12V64h-8C10.7 64 0 74.7 0 88v336c0 13.3 10.7 24 24 24h8v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h320v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h8c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM96 372c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm272 208c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm0-168c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm112 152c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z" ], + filter: [ 512, 512, [], "f0b0", "M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z" ], + fingerprint: [ 512, 512, [], "f577", "M256.12 245.96c-13.25 0-24 10.74-24 24 1.14 72.25-8.14 141.9-27.7 211.55-2.73 9.72 2.15 30.49 23.12 30.49 10.48 0 20.11-6.92 23.09-17.52 13.53-47.91 31.04-125.41 29.48-224.52.01-13.25-10.73-24-23.99-24zm-.86-81.73C194 164.16 151.25 211.3 152.1 265.32c.75 47.94-3.75 95.91-13.37 142.55-2.69 12.98 5.67 25.69 18.64 28.36 13.05 2.67 25.67-5.66 28.36-18.64 10.34-50.09 15.17-101.58 14.37-153.02-.41-25.95 19.92-52.49 54.45-52.34 31.31.47 57.15 25.34 57.62 55.47.77 48.05-2.81 96.33-10.61 143.55-2.17 13.06 6.69 25.42 19.76 27.58 19.97 3.33 26.81-15.1 27.58-19.77 8.28-50.03 12.06-101.21 11.27-152.11-.88-55.8-47.94-101.88-104.91-102.72zm-110.69-19.78c-10.3-8.34-25.37-6.8-33.76 3.48-25.62 31.5-39.39 71.28-38.75 112 .59 37.58-2.47 75.27-9.11 112.05-2.34 13.05 6.31 25.53 19.36 27.89 20.11 3.5 27.07-14.81 27.89-19.36 7.19-39.84 10.5-80.66 9.86-121.33-.47-29.88 9.2-57.88 28-80.97 8.35-10.28 6.79-25.39-3.49-33.76zm109.47-62.33c-15.41-.41-30.87 1.44-45.78 4.97-12.89 3.06-20.87 15.98-17.83 28.89 3.06 12.89 16 20.83 28.89 17.83 11.05-2.61 22.47-3.77 34-3.69 75.43 1.13 137.73 61.5 138.88 134.58.59 37.88-1.28 76.11-5.58 113.63-1.5 13.17 7.95 25.08 21.11 26.58 16.72 1.95 25.51-11.88 26.58-21.11a929.06 929.06 0 0 0 5.89-119.85c-1.56-98.75-85.07-180.33-186.16-181.83zm252.07 121.45c-2.86-12.92-15.51-21.2-28.61-18.27-12.94 2.86-21.12 15.66-18.26 28.61 4.71 21.41 4.91 37.41 4.7 61.6-.11 13.27 10.55 24.09 23.8 24.2h.2c13.17 0 23.89-10.61 24-23.8.18-22.18.4-44.11-5.83-72.34zm-40.12-90.72C417.29 43.46 337.6 1.29 252.81.02 183.02-.82 118.47 24.91 70.46 72.94 24.09 119.37-.9 181.04.14 246.65l-.12 21.47c-.39 13.25 10.03 24.31 23.28 24.69.23.02.48.02.72.02 12.92 0 23.59-10.3 23.97-23.3l.16-23.64c-.83-52.5 19.16-101.86 56.28-139 38.76-38.8 91.34-59.67 147.68-58.86 69.45 1.03 134.73 35.56 174.62 92.39 7.61 10.86 22.56 13.45 33.42 5.86 10.84-7.62 13.46-22.59 5.84-33.43z" ], + fire: [ 384, 512, [], "f06d", "M216 23.858c0-23.802-30.653-32.765-44.149-13.038C48 191.851 224 200 224 288c0 35.629-29.114 64.458-64.85 63.994C123.98 351.538 96 322.22 96 287.046v-85.51c0-21.703-26.471-32.225-41.432-16.504C27.801 213.158 0 261.332 0 320c0 105.869 86.131 192 192 192s192-86.131 192-192c0-170.29-168-193.003-168-296.142z" ], + "fire-extinguisher": [ 448, 512, [], "f134", "M434.027 26.329l-168 28C254.693 56.218 256 67.8 256 72h-58.332C208.353 36.108 181.446 0 144 0c-39.435 0-66.368 39.676-52.228 76.203-52.039 13.051-75.381 54.213-90.049 90.884-4.923 12.307 1.063 26.274 13.37 31.197 12.317 4.926 26.279-1.075 31.196-13.37C75.058 112.99 106.964 120 168 120v27.076c-41.543 10.862-72 49.235-72 94.129V488c0 13.255 10.745 24 24 24h144c13.255 0 24-10.745 24-24V240c0-44.731-30.596-82.312-72-92.97V120h40c0 2.974-1.703 15.716 10.027 17.671l168 28C441.342 166.89 448 161.25 448 153.834V38.166c0-7.416-6.658-13.056-13.973-11.837zM144 72c-8.822 0-16-7.178-16-16s7.178-16 16-16 16 7.178 16 16-7.178 16-16 16z" ], + "first-aid": [ 576, 512, [], "f479", "M0 80v352c0 26.5 21.5 48 48 48h48V32H48C21.5 32 0 53.5 0 80zm128 400h320V32H128v448zm64-248c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48zM528 32h-48v448h48c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z" ], + fish: [ 576, 512, [], "f578", "M327.1 96c-89.97 0-168.54 54.77-212.27 101.63L27.5 131.58c-12.13-9.18-30.24.6-27.14 14.66L24.54 256 .35 365.77c-3.1 14.06 15.01 23.83 27.14 14.66l87.33-66.05C158.55 361.23 237.13 416 327.1 416 464.56 416 576 288 576 256S464.56 96 327.1 96zm87.43 184c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24 13.26 0 24 10.74 24 24 0 13.25-10.75 24-24 24z" ], + flag: [ 512, 512, [], "f024", "M349.565 98.783C295.978 98.783 251.721 64 184.348 64c-24.955 0-47.309 4.384-68.045 12.013a55.947 55.947 0 0 0 3.586-23.562C118.117 24.015 94.806 1.206 66.338.048 34.345-1.254 8 24.296 8 56c0 19.026 9.497 35.825 24 45.945V488c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-94.4c28.311-12.064 63.582-22.122 114.435-22.122 53.588 0 97.844 34.783 165.217 34.783 48.169 0 86.667-16.294 122.505-40.858C506.84 359.452 512 349.571 512 339.045v-243.1c0-23.393-24.269-38.87-45.485-29.016-34.338 15.948-76.454 31.854-116.95 31.854z" ], + "flag-checkered": [ 512, 512, [], "f11e", "M466.515 66.928C487.731 57.074 512 72.551 512 95.944v243.1c0 10.526-5.161 20.407-13.843 26.358-35.837 24.564-74.335 40.858-122.505 40.858-67.373 0-111.63-34.783-165.217-34.783-50.853 0-86.124 10.058-114.435 22.122V488c0 13.255-10.745 24-24 24H56c-13.255 0-24-10.745-24-24V101.945C17.497 91.825 8 75.026 8 56 8 24.296 34.345-1.254 66.338.048c28.468 1.158 51.779 23.968 53.551 52.404.52 8.342-.81 16.31-3.586 23.562C137.039 68.384 159.393 64 184.348 64c67.373 0 111.63 34.783 165.217 34.783 40.496 0 82.612-15.906 116.95-31.855zM96 134.63v70.49c29-10.67 51.18-17.83 73.6-20.91v-71.57c-23.5 2.17-40.44 9.79-73.6 21.99zm220.8 9.19c-26.417-4.672-49.886-13.979-73.6-21.34v67.42c24.175 6.706 47.566 16.444 73.6 22.31v-68.39zm-147.2 40.39v70.04c32.796-2.978 53.91-.635 73.6 3.8V189.9c-25.247-7.035-46.581-9.423-73.6-5.69zm73.6 142.23c26.338 4.652 49.732 13.927 73.6 21.34v-67.41c-24.277-6.746-47.54-16.45-73.6-22.32v68.39zM96 342.1c23.62-8.39 47.79-13.84 73.6-16.56v-71.29c-26.11 2.35-47.36 8.04-73.6 17.36v70.49zm368-221.6c-21.3 8.85-46.59 17.64-73.6 22.47v71.91c27.31-4.36 50.03-14.1 73.6-23.89V120.5zm0 209.96v-70.49c-22.19 14.2-48.78 22.61-73.6 26.02v71.58c25.07-2.38 48.49-11.04 73.6-27.11zM316.8 212.21v68.16c25.664 7.134 46.616 9.342 73.6 5.62v-71.11c-25.999 4.187-49.943 2.676-73.6-2.67z" ], + flask: [ 448, 512, [], "f0c3", "M437.2 403.5L320 215V64h8c13.3 0 24-10.7 24-24V24c0-13.3-10.7-24-24-24H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h8v151L10.8 403.5C-18.5 450.6 15.3 512 70.9 512h306.2c55.7 0 89.4-61.5 60.1-108.5zM137.9 320l48.2-77.6c3.7-5.2 5.8-11.6 5.8-18.4V64h64v160c0 6.9 2.2 13.2 5.8 18.4l48.2 77.6h-172z" ], + flushed: [ 496, 512, [], "f579", "M344 200c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-192 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM80 224c0-39.8 32.2-72 72-72s72 32.2 72 72-32.2 72-72 72-72-32.2-72-72zm232 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-104c-39.8 0-72-32.2-72-72s32.2-72 72-72 72 32.2 72 72-32.2 72-72 72z" ], + folder: [ 512, 512, [], "f07b", "M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z" ], + "folder-open": [ 576, 512, [], "f07c", "M572.694 292.093L500.27 416.248A63.997 63.997 0 0 1 444.989 448H45.025c-18.523 0-30.064-20.093-20.731-36.093l72.424-124.155A64 64 0 0 1 152 256h399.964c18.523 0 30.064 20.093 20.73 36.093zM152 224h328v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v278.046l69.077-118.418C86.214 242.25 117.989 224 152 224z" ], + font: [ 448, 512, [], "f031", "M152 416h-24.013l26.586-80.782H292.8L319.386 416H296c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-26.739L275.495 42.746A16 16 0 0 0 260.382 32h-72.766a16 16 0 0 0-15.113 10.746L42.739 416H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h136c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm64.353-271.778c4.348-15.216 6.61-28.156 7.586-34.644.839 6.521 2.939 19.476 7.727 34.706l41.335 124.006h-98.619l41.971-124.068z" ], + "font-awesome-logo-full": [ 3992, 512, [ "Font Awesome" ], "f4e6", "M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z" ], + "football-ball": [ 496, 512, [], "f44e", "M481.5 60.3c-4.8-18.2-19.1-32.5-37.3-37.4C420.3 16.5 383 8.9 339.4 8L496 164.8c-.8-43.5-8.2-80.6-14.5-104.5zm-467 391.4c4.8 18.2 19.1 32.5 37.3 37.4 23.9 6.4 61.2 14 104.8 14.9L0 347.2c.8 43.5 8.2 80.6 14.5 104.5zM4.2 283.4L220.4 500c132.5-19.4 248.8-118.7 271.5-271.4L275.6 12C143.1 31.4 26.8 130.7 4.2 283.4zm317.3-123.6c3.1-3.1 8.2-3.1 11.3 0l11.3 11.3c3.1 3.1 3.1 8.2 0 11.3l-28.3 28.3 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-22.6 22.7 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L248 278.6l-22.6 22.6 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-28.3 28.3c-3.1 3.1-8.2 3.1-11.3 0l-11.3-11.3c-3.1-3.1-3.1-8.2 0-11.3l28.3-28.3-28.3-28.2c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 28.3-28.5z" ], + forward: [ 512, 512, [], "f04e", "M500.5 231.4l-192-160C287.9 54.3 256 68.6 256 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2zm-256 0l-192-160C31.9 54.3 0 68.6 0 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2z" ], + frog: [ 576, 512, [], "f52e", "M446.53 97.43C439.67 60.23 407.19 32 368 32c-39.23 0-71.72 28.29-78.54 65.54C126.75 112.96-.5 250.12 0 416.98.11 451.9 29.08 480 64 480h304c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-79.49l35.8-48.33c24.14-36.23 10.35-88.28-33.71-106.6-23.89-9.93-51.55-4.65-72.24 10.88l-32.76 24.59c-7.06 5.31-17.09 3.91-22.41-3.19-5.3-7.08-3.88-17.11 3.19-22.41l34.78-26.09c36.84-27.66 88.28-27.62 125.13 0 10.87 8.15 45.87 39.06 40.8 93.21L469.62 480H560c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-53.63l-98.52-104.68 154.44-86.65A58.16 58.16 0 0 0 576 189.94c0-21.4-11.72-40.95-30.48-51.23-40.56-22.22-98.99-41.28-98.99-41.28zM368 136c-13.26 0-24-10.75-24-24 0-13.26 10.74-24 24-24 13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24z" ], + frown: [ 496, 512, [], "f119", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm170.2 218.2C315.8 367.4 282.9 352 248 352s-67.8 15.4-90.2 42.2c-13.5 16.3-38.1-4.2-24.6-20.5C161.7 339.6 203.6 320 248 320s86.3 19.6 114.7 53.8c13.6 16.2-11 36.7-24.5 20.4z" ], + "frown-open": [ 496, 512, [], "f57a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm187.3 183.3c-31.2-9.6-59.4-15.3-75.3-15.3s-44.1 5.7-75.3 15.3c-11.5 3.5-22.5-6.3-20.5-18.1 7-40 60.1-61.2 95.8-61.2s88.8 21.3 95.8 61.2c2 11.9-9.1 21.6-20.5 18.1zM328 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + futbol: [ 512, 512, [], "f1e3", "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-48 0l-.003-.282-26.064 22.741-62.679-58.5 16.454-84.355 34.303 3.072c-24.889-34.216-60.004-60.089-100.709-73.141l13.651 31.939L256 139l-74.953-41.525 13.651-31.939c-40.631 13.028-75.78 38.87-100.709 73.141l34.565-3.073 16.192 84.355-62.678 58.5-26.064-22.741-.003.282c0 43.015 13.497 83.952 38.472 117.991l7.704-33.897 85.138 10.447 36.301 77.826-29.902 17.786c40.202 13.122 84.29 13.148 124.572 0l-29.902-17.786 36.301-77.826 85.138-10.447 7.704 33.897C442.503 339.952 456 299.015 456 256zm-248.102 69.571l-29.894-91.312L256 177.732l77.996 56.527-29.622 91.312h-96.476z" ], + gamepad: [ 640, 512, [], "f11b", "M480 96H160C71.6 96 0 167.6 0 256s71.6 160 160 160c44.8 0 85.2-18.4 114.2-48h91.5c29 29.6 69.5 48 114.2 48 88.4 0 160-71.6 160-160S568.4 96 480 96zM256 276c0 6.6-5.4 12-12 12h-52v52c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-52H76c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h52v-52c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h52c6.6 0 12 5.4 12 12v40zm184 68c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-80c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z" ], + "gas-pump": [ 512, 512, [], "f52f", "M336 448H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm157.2-340.7l-81-81c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-6.2 6.2-6.2 16.4 0 22.6L416 97.9V160c0 28.1 20.9 51.3 48 55.2V376c0 13.2-10.8 24-24 24s-24-10.8-24-24v-32c0-48.6-39.4-88-88-88h-8V64c0-35.3-28.7-64-64-64H96C60.7 0 32 28.7 32 64v352h288V304h8c22.1 0 40 17.9 40 40v27.8c0 37.7 27 72 64.5 75.9 43 4.3 79.5-29.5 79.5-71.7V152.6c0-17-6.8-33.3-18.8-45.3zM256 192H96V64h160v128z" ], + gavel: [ 512, 512, [], "f0e3", "M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z" ], + gem: [ 576, 512, [], "f3a5", "M485.5 0L576 160H474.9L405.7 0h79.8zm-128 0l69.2 160H149.3L218.5 0h139zm-267 0h79.8l-69.2 160H0L90.5 0zM0 192h100.7l123 251.7c1.5 3.1-2.7 5.9-5 3.3L0 192zm148.2 0h279.6l-137 318.2c-1 2.4-4.5 2.4-5.5 0L148.2 192zm204.1 251.7l123-251.7H576L357.3 446.9c-2.3 2.7-6.5-.1-5-3.2z" ], + genderless: [ 288, 512, [], "f22d", "M144 176c44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80 35.9-80 80-80m0-64C64.5 112 0 176.5 0 256s64.5 144 144 144 144-64.5 144-144-64.5-144-144-144z" ], + gift: [ 512, 512, [], "f06b", "M32 448c0 17.7 14.3 32 32 32h160V320H32v128zm448-288h-42.1c6.2-12.1 10.1-25.5 10.1-40 0-48.5-39.5-88-88-88-41.6 0-68.5 21.3-103 68.3-34.5-47-61.4-68.3-103-68.3-48.5 0-88 39.5-88 88 0 14.5 3.8 27.9 10.1 40H32c-17.7 0-32 14.3-32 32v80c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-80c0-17.7-14.3-32-32-32zm-326.1 0c-22.1 0-40-17.9-40-40s17.9-40 40-40c19.9 0 34.6 3.3 86.1 80h-86.1zm206.1 0h-86.1c51.4-76.5 65.7-80 86.1-80 22.1 0 40 17.9 40 40s-17.9 40-40 40zm-72 320h160c17.7 0 32-14.3 32-32V320H288v160z" ], + "glass-martini": [ 512, 512, [], "f000", "M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6z" ], + "glass-martini-alt": [ 512, 512, [], "f57b", "M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6zM443.77 48l-48 48H116.24l-48-48h375.53z" ], + glasses: [ 576, 512, [], "f530", "M574.1 280.37L528.75 98.66c-5.91-23.7-21.59-44.05-43-55.81-21.44-11.73-46.97-14.11-70.19-6.33l-15.25 5.08c-8.39 2.79-12.92 11.86-10.12 20.24l5.06 15.18c2.79 8.38 11.85 12.91 20.23 10.12l13.18-4.39c10.87-3.62 23-3.57 33.16 1.73 10.29 5.37 17.57 14.56 20.37 25.82l38.46 153.82c-22.19-6.81-49.79-12.46-81.2-12.46-34.77 0-73.98 7.02-114.85 26.74h-73.18c-40.87-19.74-80.08-26.75-114.86-26.75-31.42 0-59.02 5.65-81.21 12.46l38.46-153.83c2.79-11.25 10.09-20.45 20.38-25.81 10.16-5.3 22.28-5.35 33.15-1.73l13.17 4.39c8.38 2.79 17.44-1.74 20.23-10.12l5.06-15.18c2.8-8.38-1.73-17.45-10.12-20.24l-15.25-5.08c-23.22-7.78-48.75-5.41-70.19 6.33-21.41 11.77-37.09 32.11-43 55.8L1.9 280.37A64.218 64.218 0 0 0 0 295.86v70.25C0 429.01 51.58 480 115.2 480h37.12c60.28 0 110.37-45.94 114.88-105.37l2.93-38.63h35.75l2.93 38.63C313.31 434.06 363.4 480 423.68 480h37.12c63.62 0 115.2-50.99 115.2-113.88v-70.25c0-5.23-.64-10.43-1.9-15.5zm-370.72 89.42c-1.97 25.91-24.4 46.21-51.06 46.21H115.2C86.97 416 64 393.62 64 366.11v-37.54c18.12-6.49 43.42-12.92 72.58-12.92 23.86 0 47.26 4.33 69.93 12.92l-3.13 41.22zM512 366.12c0 27.51-22.97 49.88-51.2 49.88h-37.12c-26.67 0-49.1-20.3-51.06-46.21l-3.13-41.22c22.67-8.59 46.08-12.92 69.95-12.92 29.12 0 54.43 6.44 72.55 12.93v37.54z" ], + globe: [ 496, 512, [], "f0ac", "M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z" ], + "globe-africa": [ 496, 512, [], "f57c", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm160 215.5v6.93c0 5.87-3.32 11.24-8.57 13.86l-15.39 7.7a15.485 15.485 0 0 1-15.53-.97l-18.21-12.14a15.52 15.52 0 0 0-13.5-1.81l-2.65.88c-9.7 3.23-13.66 14.79-7.99 23.3l13.24 19.86c2.87 4.31 7.71 6.9 12.89 6.9h8.21c8.56 0 15.5 6.94 15.5 15.5v11.34c0 3.35-1.09 6.62-3.1 9.3l-18.74 24.98c-1.42 1.9-2.39 4.1-2.83 6.43l-4.3 22.83c-.62 3.29-2.29 6.29-4.76 8.56a159.608 159.608 0 0 0-25 29.16l-13.03 19.55a27.756 27.756 0 0 1-23.09 12.36c-10.51 0-20.12-5.94-24.82-15.34a78.902 78.902 0 0 1-8.33-35.29V367.5c0-8.56-6.94-15.5-15.5-15.5h-25.88c-14.49 0-28.38-5.76-38.63-16a54.659 54.659 0 0 1-16-38.63v-14.06c0-17.19 8.1-33.38 21.85-43.7l27.58-20.69a54.663 54.663 0 0 1 32.78-10.93h.89c8.48 0 16.85 1.97 24.43 5.77l14.72 7.36c3.68 1.84 7.93 2.14 11.83.84l47.31-15.77c6.33-2.11 10.6-8.03 10.6-14.7 0-8.56-6.94-15.5-15.5-15.5h-10.09c-4.11 0-8.05-1.63-10.96-4.54l-6.92-6.92a15.493 15.493 0 0 0-10.96-4.54H199.5c-8.56 0-15.5-6.94-15.5-15.5v-4.4c0-7.11 4.84-13.31 11.74-15.04l14.45-3.61c3.74-.94 7-3.23 9.14-6.44l8.08-12.11c2.87-4.31 7.71-6.9 12.89-6.9h24.21c8.56 0 15.5-6.94 15.5-15.5v-21.7C359.23 71.63 422.86 131.02 441.93 208H423.5c-8.56 0-15.5 6.94-15.5 15.5z" ], + "globe-americas": [ 496, 512, [], "f57d", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm82.29 357.6c-3.9 3.88-7.99 7.95-11.31 11.28-2.99 3-5.1 6.7-6.17 10.71-1.51 5.66-2.73 11.38-4.77 16.87l-17.39 46.85c-13.76 3-28 4.69-42.65 4.69v-27.38c1.69-12.62-7.64-36.26-22.63-51.25-6-6-9.37-14.14-9.37-22.63v-32.01c0-11.64-6.27-22.34-16.46-27.97-14.37-7.95-34.81-19.06-48.81-26.11-11.48-5.78-22.1-13.14-31.65-21.75l-.8-.72a114.792 114.792 0 0 1-18.06-20.74c-9.38-13.77-24.66-36.42-34.59-51.14 20.47-45.5 57.36-82.04 103.2-101.89l24.01 12.01C203.48 89.74 216 82.01 216 70.11v-11.3c7.99-1.29 16.12-2.11 24.39-2.42l28.3 28.3c6.25 6.25 6.25 16.38 0 22.63L264 112l-10.34 10.34c-3.12 3.12-3.12 8.19 0 11.31l4.69 4.69c3.12 3.12 3.12 8.19 0 11.31l-8 8a8.008 8.008 0 0 1-5.66 2.34h-8.99c-2.08 0-4.08.81-5.58 2.27l-9.92 9.65a8.008 8.008 0 0 0-1.58 9.31l15.59 31.19c2.66 5.32-1.21 11.58-7.15 11.58h-5.64c-1.93 0-3.79-.7-5.24-1.96l-9.28-8.06a16.017 16.017 0 0 0-15.55-3.1l-31.17 10.39a11.95 11.95 0 0 0-8.17 11.34c0 4.53 2.56 8.66 6.61 10.69l11.08 5.54c9.41 4.71 19.79 7.16 30.31 7.16s22.59 27.29 32 32h66.75c8.49 0 16.62 3.37 22.63 9.37l13.69 13.69a30.503 30.503 0 0 1 8.93 21.57 46.536 46.536 0 0 1-13.72 32.98zM417 274.25c-5.79-1.45-10.84-5-14.15-9.97l-17.98-26.97a23.97 23.97 0 0 1 0-26.62l19.59-29.38c2.32-3.47 5.5-6.29 9.24-8.15l12.98-6.49C440.2 193.59 448 223.87 448 256c0 8.67-.74 17.16-1.82 25.54L417 274.25z" ], + "globe-asia": [ 496, 512, [], "f57e", "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm-11.34 240.23c-2.89 4.82-8.1 7.77-13.72 7.77h-.31c-4.24 0-8.31 1.69-11.31 4.69l-5.66 5.66c-3.12 3.12-3.12 8.19 0 11.31l5.66 5.66c3 3 4.69 7.07 4.69 11.31V304c0 8.84-7.16 16-16 16h-6.11c-6.06 0-11.6-3.42-14.31-8.85l-22.62-45.23c-2.44-4.88-8.95-5.94-12.81-2.08l-19.47 19.46c-3 3-7.07 4.69-11.31 4.69H50.81C49.12 277.55 48 266.92 48 256c0-110.28 89.72-200 200-200 21.51 0 42.2 3.51 61.63 9.82l-50.16 38.53c-5.11 3.41-4.63 11.06.86 13.81l10.83 5.41c5.42 2.71 8.84 8.25 8.84 14.31V216c0 4.42-3.58 8-8 8h-3.06c-3.03 0-5.8-1.71-7.15-4.42-1.56-3.12-5.96-3.29-7.76-.3l-17.37 28.95zM408 358.43c0 4.24-1.69 8.31-4.69 11.31l-9.57 9.57c-3 3-7.07 4.69-11.31 4.69h-15.16c-4.24 0-8.31-1.69-11.31-4.69l-13.01-13.01a26.767 26.767 0 0 0-25.42-7.04l-21.27 5.32c-1.27.32-2.57.48-3.88.48h-10.34c-4.24 0-8.31-1.69-11.31-4.69l-11.91-11.91a8.008 8.008 0 0 1-2.34-5.66v-10.2c0-3.27 1.99-6.21 5.03-7.43l39.34-15.74c1.98-.79 3.86-1.82 5.59-3.05l23.71-16.89a7.978 7.978 0 0 1 4.64-1.48h12.09c3.23 0 6.15 1.94 7.39 4.93l5.35 12.85a4 4 0 0 0 3.69 2.46h3.8c1.78 0 3.35-1.18 3.84-2.88l4.2-14.47c.5-1.71 2.06-2.88 3.84-2.88h6.06c2.21 0 4 1.79 4 4v12.93c0 2.12.84 4.16 2.34 5.66l11.91 11.91c3 3 4.69 7.07 4.69 11.31v24.6z" ], + "golf-ball": [ 416, 512, [], "f450", "M96 416h224c0 17.7-14.3 32-32 32h-16c-17.7 0-32 14.3-32 32v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-20c0-17.7-14.3-32-32-32h-16c-17.7 0-32-14.3-32-32zm320-208c0 74.2-39 139.2-97.5 176h-221C39 347.2 0 282.2 0 208 0 93.1 93.1 0 208 0s208 93.1 208 208zm-180.1 43.9c18.3 0 33.1-14.8 33.1-33.1 0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1zm49.1 46.9c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1zm64-64c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1z" ], + "graduation-cap": [ 640, 512, [], "f19d", "M622.884 199.005l-275.817 85.1a96 96 0 0 1-54.134 0L92.398 222.232c-8.564 11.438-11.018 23.05-11.918 38.335C89.778 266.165 96 276.355 96 288c0 11.952-6.557 22.366-16.265 27.861l16.197 123.096c.63 4.786-3.1 9.043-7.932 9.043H40c-4.828 0-8.562-4.253-7.932-9.044L48.265 315.86C38.557 310.366 32 299.952 32 288c0-12.034 6.646-22.511 16.465-27.976.947-17.951 3.974-33.231 12.152-47.597l-43.502-13.422c-22.876-6.801-22.766-39.241 0-46.01l275.817-85.1a96 96 0 0 1 54.134 0l275.817 85.1c22.877 6.801 22.767 39.241.001 46.01zM356.503 314.682l-.207.064-.207.061a127.998 127.998 0 0 1-72.177 0l-.207-.061-.207-.064-150.914-46.57L120 352c0 35.346 89.543 64 200 64s200-28.654 200-64l-12.583-83.888-150.914 46.57z" ], + "greater-than": [ 384, 512, [], "f531", "M365.52 209.85L59.22 67.01c-16.06-7.49-35.15-.54-42.64 15.52L3.01 111.61c-7.49 16.06-.54 35.15 15.52 42.64L236.96 256.1 18.49 357.99C2.47 365.46-4.46 384.5 3.01 400.52l13.52 29C24 445.54 43.04 452.47 59.06 445l306.47-142.91a32.003 32.003 0 0 0 18.48-29v-34.23c-.01-12.45-7.21-23.76-18.49-29.01z" ], + "greater-than-equal": [ 448, 512, [], "f532", "M55.22 107.69l175.56 68.09-175.44 68.05c-18.39 6.03-27.88 24.39-21.2 41l12.09 30.08c6.68 16.61 26.99 25.19 45.38 19.15L393.02 214.2c13.77-4.52 22.98-16.61 22.98-30.17v-15.96c0-13.56-9.21-25.65-22.98-30.17L91.3 17.92c-18.29-6-38.51 2.53-45.15 19.06L34.12 66.9c-6.64 16.53 2.81 34.79 21.1 40.79zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z" ], + grimace: [ 496, 512, [], "f57f", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM144 400h-8c-17.7 0-32-14.3-32-32v-8h40v40zm0-56h-40v-8c0-17.7 14.3-32 32-32h8v40zm-8-136c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm72 192h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm-8-104c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64 128c0 17.7-14.3 32-32 32h-8v-40h40v8zm0-24h-40v-40h8c17.7 0 32 14.3 32 32v8z" ], + grin: [ 496, 512, [], "f580", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm80 256c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" ], + "grin-alt": [ 496, 512, [], "f581", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm63.7 128.7c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zm-160 0c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" ], + "grin-beam": [ 496, 512, [], "f582", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 144c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" ], + "grin-beam-sweat": [ 504, 512, [], "f583", "M456 128c26.5 0 48-21 48-47 0-20-28.5-60.4-41.6-77.8-3.2-4.3-9.6-4.3-12.8 0C436.5 20.6 408 61 408 81c0 26 21.5 47 48 47zm0 32c-44.1 0-80-35.4-80-79 0-4.4.3-14.2 8.1-32.2C345 23.1 298.3 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-35.1-7.4-68.4-20.5-98.6-6.3 1.5-12.7 2.6-19.5 2.6zm-128-8c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" ], + "grin-hearts": [ 496, 512, [], "f584", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM90.4 183.6c6.7-17.6 26.7-26.7 44.9-21.9l7.1 1.9 2-7.1c5-18.1 22.8-30.9 41.5-27.9 21.4 3.4 34.4 24.2 28.8 44.5L195.3 243c-1.2 4.5-5.9 7.2-10.5 6l-70.2-18.2c-20.4-5.4-31.9-27-24.2-47.2zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm133.4-201.3l-70.2 18.2c-4.5 1.2-9.2-1.5-10.5-6L281.3 173c-5.6-20.3 7.4-41.1 28.8-44.5 18.6-3 36.4 9.8 41.5 27.9l2 7.1 7.1-1.9c18.2-4.7 38.2 4.3 44.9 21.9 7.7 20.3-3.8 41.9-24.2 47.2z" ], + "grin-squint": [ 496, 512, [], "f585", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" ], + "grin-squint-tears": [ 512, 512, [], "f586", "M409.6 111.9c22.6-3.2 73.5-12 88.3-26.8 19.2-19.2 18.9-50.6-.7-70.2S446-5 426.9 14.2c-14.8 14.8-23.5 65.7-26.8 88.3-.8 5.5 3.9 10.2 9.5 9.4zM102.4 400.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm311.7-256.5c-33 3.9-48.6-25.1-45.7-45.7 3.4-24 7.4-42.1 11.5-56.5C285.1-13.4 161.8-.5 80.6 80.6-.5 161.7-13.4 285 41.4 379.9c14.4-4.1 32.4-8 56.5-11.5 33.2-3.9 48.6 25.2 45.7 45.7-3.4 24-7.4 42.1-11.5 56.5 94.8 54.8 218.1 41.9 299.3-39.2s94-204.4 39.2-299.3c-14.4 4.1-32.5 8-56.5 11.5zM255.7 106c3.3-13.2 22.4-11.5 23.6 1.8l4.8 52.3 52.3 4.8c13.4 1.2 14.9 20.3 1.8 23.6l-90.5 22.6c-8.9 2.2-16.7-5.9-14.5-14.5l22.5-90.6zm-90.9 230.3L160 284l-52.3-4.8c-13.4-1.2-14.9-20.3-1.8-23.6l90.5-22.6c8.8-2.2 16.7 5.8 14.5 14.5L188.3 338c-3.1 13.2-22.2 11.7-23.5-1.7zm215.7 44.2c-29.3 29.3-75.7 50.4-116.7 50.4-18.9 0-36.6-4.5-51-14.7-9.8-6.9-8.7-21.8 2-27.2 28.3-14.6 63.9-42.4 97.8-76.3s61.7-69.6 76.3-97.8c5.4-10.5 20.2-11.9 27.3-2 32.3 45.3 7.1 124.7-35.7 167.6z" ], + "grin-stars": [ 496, 512, [], "f587", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM94.6 168.9l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.2 1 8.9 8.6 4.3 13.2l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L152 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.6-4.7-1.9-12.3 4.3-13.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm157.7-249.9l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L344 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.5-4.6-1.9-12.2 4.3-13.2l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.3.9 9 8.5 4.4 13.1z" ], + "grin-tears": [ 640, 512, [], "f588", "M102.4 256.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm523.4 26.8c-14.8-14.8-65.7-23.5-88.3-26.8-5.5-.8-10.3 3.9-9.5 9.5 3.2 22.6 12 73.5 26.8 88.3 19.2 19.2 50.6 18.9 70.2-.7s20-51.2.8-70.3zm-129.4-12.8c-3.8-26.6 19.1-49.5 45.7-45.7 8.9 1.3 16.8 2.7 24.3 4.1C552.7 104.5 447.7 8 320 8S87.3 104.5 73.6 228.5c7.5-1.4 15.4-2.8 24.3-4.1 33.2-3.9 48.6 25.3 45.7 45.7-11.8 82.3-29.9 100.4-35.8 106.4-.9.9-2 1.6-3 2.5 42.7 74.6 123 125 215.2 125s172.5-50.4 215.2-125.1c-1-.9-2.1-1.5-3-2.5-5.9-5.9-24-24-35.8-106.3zM400 152c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.7 9.2-21.6 20.7-17.9C227.1 330.5 272 336 320 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z" ], + "grin-tongue": [ 496, 512, [], "f589", "M248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-34.9 134.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z" ], + "grin-tongue-squint": [ 496, 512, [], "f58a", "M293.1 374.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-33.8 210.3l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.7 4.7 7.7 15.9 0 20.6zm163 30c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.8-4.7-7.8-15.9 0-20.6l80-48c11.7-6.9 23.9 7.7 15.4 18L343.6 208l33.6 40.3z" ], + "grin-tongue-wink": [ 496, 512, [], "f58b", "M344 184c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-56 225l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L112 233c-8.5 7.4-21.6.3-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c1.6 11.1-11.6 18.2-20 10.8zm152 39c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm-50.9 102.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z" ], + "grin-wink": [ 496, 512, [], "f58c", "M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm168 25l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.6 11-11.5 18.2-20 10.8zm-243.1 87.8C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6 20.7 17.9-9.2 55-83.2 93.3-143.8 93.3s-134.5-38.3-143.8-93.3c-2-11.9 9.3-21.6 20.7-17.9z" ], + "grip-horizontal": [ 448, 512, [], "f58d", "M96 288H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM96 96H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z" ], + "grip-vertical": [ 320, 512, [], "f58e", "M96 32H32C14.33 32 0 46.33 0 64v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM288 32h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z" ], + "h-square": [ 448, 512, [], "f0fd", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-112 48h-32c-8.837 0-16 7.163-16 16v80H160v-80c0-8.837-7.163-16-16-16h-32c-8.837 0-16 7.163-16 16v224c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16v-80h128v80c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144c0-8.837-7.163-16-16-16z" ], + "hand-holding": [ 576, 512, [], "f4bd", "M565.3 328.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z" ], + "hand-holding-heart": [ 576, 512, [], "f4be", "M275.3 250.5c7 7.4 18.4 7.4 25.5 0l108.9-114.2c31.6-33.2 29.8-88.2-5.6-118.8-30.8-26.7-76.7-21.9-104.9 7.7L288 36.9l-11.1-11.6C248.7-4.4 202.8-9.2 172 17.5c-35.3 30.6-37.2 85.6-5.6 118.8l108.9 114.2zm290 77.6c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z" ], + "hand-holding-usd": [ 544, 512, [], "f4c0", "M257.6 144.3l50 14.3c3.6 1 6.1 4.4 6.1 8.1 0 4.6-3.8 8.4-8.4 8.4h-32.8c-3.6 0-7.1-.8-10.3-2.2-4.8-2.2-10.4-1.7-14.1 2l-17.5 17.5c-5.3 5.3-4.7 14.3 1.5 18.4 9.5 6.3 20.3 10.1 31.8 11.5V240c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16v-17.6c30.3-3.6 53.3-31 49.3-63-2.9-23-20.7-41.3-42.9-47.7l-50-14.3c-3.6-1-6.1-4.4-6.1-8.1 0-4.6 3.8-8.4 8.4-8.4h32.8c3.6 0 7.1.8 10.3 2.2 4.8 2.2 10.4 1.7 14.1-2l17.5-17.5c5.3-5.3 4.7-14.3-1.5-18.4-9.5-6.3-20.3-10.1-31.8-11.5V16c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16v17.6c-30.3 3.6-53.3 31-49.3 63 2.9 23 20.7 41.3 42.9 47.7zm276.3 183.8c-11.2-10.7-28.5-10-40.3 0L406.4 402c-10.7 9.1-24 14-37.8 14H256.9c-8.3 0-15.1-7.2-15.1-16s6.8-16 15.1-16h73.9c15.1 0 29-10.9 31.4-26.6 3.1-20-11.5-37.4-29.8-37.4H181.3c-25.5 0-50.2 9.3-69.9 26.3L67.5 384H15.1C6.8 384 0 391.2 0 400v96c0 8.8 6.8 16 15.1 16H352c13.7 0 27-4.9 37.8-14l142.8-121c14.4-12.1 15.5-35.3 1.3-48.9z" ], + "hand-lizard": [ 576, 512, [], "f258", "M384 480h192V363.778a95.998 95.998 0 0 0-14.833-51.263L398.127 54.368A48 48 0 0 0 357.544 32H24C10.745 32 0 42.745 0 56v16c0 30.928 25.072 56 56 56h229.981c12.844 0 21.556 13.067 16.615 24.923l-21.41 51.385A32 32 0 0 1 251.648 224H128c-35.346 0-64 28.654-64 64v8c0 13.255 10.745 24 24 24h147.406a47.995 47.995 0 0 1 25.692 7.455l111.748 70.811A24.001 24.001 0 0 1 384 418.539V480z" ], + "hand-paper": [ 448, 512, [], "f256", "M408.781 128.007C386.356 127.578 368 146.36 368 168.79V256h-8V79.79c0-22.43-18.356-41.212-40.781-40.783C297.488 39.423 280 57.169 280 79v177h-8V40.79C272 18.36 253.644-.422 231.219.007 209.488.423 192 18.169 192 40v216h-8V80.79c0-22.43-18.356-41.212-40.781-40.783C121.488 40.423 104 58.169 104 80v235.992l-31.648-43.519c-12.993-17.866-38.009-21.817-55.877-8.823-17.865 12.994-21.815 38.01-8.822 55.877l125.601 172.705A48 48 0 0 0 172.073 512h197.59c22.274 0 41.622-15.324 46.724-37.006l26.508-112.66a192.011 192.011 0 0 0 5.104-43.975V168c.001-21.831-17.487-39.577-39.218-39.993z" ], + "hand-peace": [ 448, 512, [], "f25b", "M408 216c-22.092 0-40 17.909-40 40h-8v-32c0-22.091-17.908-40-40-40s-40 17.909-40 40v32h-8V48c0-26.51-21.49-48-48-48s-48 21.49-48 48v208h-13.572L92.688 78.449C82.994 53.774 55.134 41.63 30.461 51.324 5.787 61.017-6.356 88.877 3.337 113.551l74.765 190.342-31.09 24.872c-15.381 12.306-19.515 33.978-9.741 51.081l64 112A39.998 39.998 0 0 0 136 512h240c18.562 0 34.686-12.77 38.937-30.838l32-136A39.97 39.97 0 0 0 448 336v-80c0-22.091-17.908-40-40-40z" ], + "hand-point-down": [ 384, 512, [], "f0a7", "M91.826 467.2V317.966c-8.248 5.841-16.558 10.57-24.918 14.153C35.098 345.752-.014 322.222 0 288c.008-18.616 10.897-32.203 29.092-40 28.286-12.122 64.329-78.648 77.323-107.534 7.956-17.857 25.479-28.453 43.845-28.464l.001-.002h171.526c11.812 0 21.897 8.596 23.703 20.269 7.25 46.837 38.483 61.76 38.315 123.731-.007 2.724.195 13.254.195 16 0 50.654-22.122 81.574-71.263 72.6-9.297 18.597-39.486 30.738-62.315 16.45-21.177 24.645-53.896 22.639-70.944 6.299V467.2c0 24.15-20.201 44.8-43.826 44.8-23.283 0-43.826-21.35-43.826-44.8zM112 72V24c0-13.255 10.745-24 24-24h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24zm212-24c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z" ], + "hand-point-left": [ 512, 512, [], "f0a5", "M44.8 155.826h149.234c-5.841-8.248-10.57-16.558-14.153-24.918C166.248 99.098 189.778 63.986 224 64c18.616.008 32.203 10.897 40 29.092 12.122 28.286 78.648 64.329 107.534 77.323 17.857 7.956 28.453 25.479 28.464 43.845l.002.001v171.526c0 11.812-8.596 21.897-20.269 23.703-46.837 7.25-61.76 38.483-123.731 38.315-2.724-.007-13.254.195-16 .195-50.654 0-81.574-22.122-72.6-71.263-18.597-9.297-30.738-39.486-16.45-62.315-24.645-21.177-22.639-53.896-6.299-70.944H44.8c-24.15 0-44.8-20.201-44.8-43.826 0-23.283 21.35-43.826 44.8-43.826zM440 176h48c13.255 0 24 10.745 24 24v192c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24zm24 212c11.046 0 20-8.954 20-20s-8.954-20-20-20-20 8.954-20 20 8.954 20 20 20z" ], + "hand-point-right": [ 512, 512, [], "f0a4", "M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z" ], + "hand-point-up": [ 384, 512, [], "f0a6", "M135.652 0c23.625 0 43.826 20.65 43.826 44.8v99.851c17.048-16.34 49.766-18.346 70.944 6.299 22.829-14.288 53.017-2.147 62.315 16.45C361.878 158.426 384 189.346 384 240c0 2.746-.203 13.276-.195 16 .168 61.971-31.065 76.894-38.315 123.731C343.683 391.404 333.599 400 321.786 400H150.261l-.001-.002c-18.366-.011-35.889-10.607-43.845-28.464C93.421 342.648 57.377 276.122 29.092 264 10.897 256.203.008 242.616 0 224c-.014-34.222 35.098-57.752 66.908-44.119 8.359 3.583 16.67 8.312 24.918 14.153V44.8c0-23.45 20.543-44.8 43.826-44.8zM136 416h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24v-48c0-13.255 10.745-24 24-24zm168 28c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z" ], + "hand-pointer": [ 448, 512, [], "f25a", "M448 240v96c0 3.084-.356 6.159-1.063 9.162l-32 136C410.686 499.23 394.562 512 376 512H168a40.004 40.004 0 0 1-32.35-16.473l-127.997-176c-12.993-17.866-9.043-42.883 8.822-55.876 17.867-12.994 42.884-9.043 55.877 8.823L104 315.992V40c0-22.091 17.908-40 40-40s40 17.909 40 40v200h8v-40c0-22.091 17.908-40 40-40s40 17.909 40 40v40h8v-24c0-22.091 17.908-40 40-40s40 17.909 40 40v24h8c0-22.091 17.908-40 40-40s40 17.909 40 40zm-256 80h-8v96h8v-96zm88 0h-8v96h8v-96zm88 0h-8v96h8v-96z" ], + "hand-rock": [ 512, 512, [], "f255", "M512 128.79c0-26.322-20.861-48.344-47.18-48.783C437.935 79.558 416 101.217 416 128h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C333.935 47.558 312 69.217 312 96v32h-8V80.79c0-26.322-20.861-48.344-47.18-48.783C229.935 31.558 208 53.217 208 80v48h-8V96.79c0-26.322-20.861-48.344-47.18-48.783C125.935 47.558 104 69.217 104 96v136l-8-7.111V176.79c0-26.322-20.861-48.344-47.18-48.783C21.935 127.558 0 149.217 0 176v66.445a95.998 95.998 0 0 0 32.221 71.751l111.668 99.261A47.999 47.999 0 0 1 160 449.333V456c0 13.255 10.745 24 24 24h240c13.255 0 24-10.745 24-24v-2.921a96.01 96.01 0 0 1 7.523-37.254l48.954-116.265A96.002 96.002 0 0 0 512 262.306V128.79z" ], + "hand-scissors": [ 512, 512, [], "f257", "M216 440c0-22.092 17.909-40 40-40v-8h-32c-22.091 0-40-17.908-40-40s17.909-40 40-40h32v-8H48c-26.51 0-48-21.49-48-48s21.49-48 48-48h208v-13.572l-177.551-69.74c-24.674-9.694-36.818-37.555-27.125-62.228 9.693-24.674 37.554-36.817 62.228-27.124l190.342 74.765 24.872-31.09c12.306-15.381 33.978-19.515 51.081-9.741l112 64A40.002 40.002 0 0 1 512 168v240c0 18.562-12.77 34.686-30.838 38.937l-136 32A39.982 39.982 0 0 1 336 480h-80c-22.091 0-40-17.908-40-40z" ], + "hand-spock": [ 512, 512, [], "f259", "M10.872 316.585c15.139-16.086 40.454-16.854 56.543-1.713L128 371.893v-79.405L88.995 120.865c-4.896-21.542 8.598-42.974 30.14-47.87 21.549-4.894 42.975 8.599 47.87 30.141L201.747 256h9.833L164.016 48.966c-4.946-21.531 8.498-42.994 30.028-47.94 21.532-4.95 42.994 8.498 47.94 30.028L293.664 256h15.105l48.425-193.702c5.357-21.432 27.075-34.462 48.507-29.104 21.432 5.358 34.463 27.075 29.104 48.507L391.231 256h11.08l30.768-129.265c5.117-21.491 26.685-34.768 48.177-29.647 21.491 5.117 34.765 26.686 29.647 48.177l-36.292 152.467A96.024 96.024 0 0 0 472 319.967v42.102a96.002 96.002 0 0 1-3.96 27.287l-26.174 88.287C435.825 498.022 417.101 512 395.846 512H179.172a48.002 48.002 0 0 1-32.898-13.046L12.585 373.128c-16.087-15.141-16.853-40.456-1.713-56.543z" ], + hands: [ 640, 512, [], "f4c2", "M204.8 230.4c-10.6-14.1-30.7-17-44.8-6.4-14.1 10.6-17 30.7-6.4 44.8l38.1 50.8c4.8 6.4 4.1 15.3-1.5 20.9l-12.8 12.8c-6.7 6.7-17.6 6.2-23.6-1.1L64 244.4V96c0-17.7-14.3-32-32-32S0 78.3 0 96v218.4c0 10.9 3.7 21.5 10.5 30l104.1 134.3c5 6.5 8.4 13.9 10.4 21.7 1.8 6.9 8.1 11.6 15.3 11.6H272c8.8 0 16-7.2 16-16V384c0-27.7-9-54.6-25.6-76.8l-57.6-76.8zM608 64c-17.7 0-32 14.3-32 32v148.4l-89.8 107.8c-6 7.2-17 7.7-23.6 1.1l-12.8-12.8c-5.6-5.6-6.3-14.5-1.5-20.9l38.1-50.8c10.6-14.1 7.7-34.2-6.4-44.8-14.1-10.6-34.2-7.7-44.8 6.4l-57.6 76.8C361 329.4 352 356.3 352 384v112c0 8.8 7.2 16 16 16h131.7c7.1 0 13.5-4.7 15.3-11.6 2-7.8 5.4-15.2 10.4-21.7l104.1-134.3c6.8-8.5 10.5-19.1 10.5-30V96c0-17.7-14.3-32-32-32z" ], + "hands-helping": [ 640, 512, [], "f4c4", "M488 192H336v56c0 39.7-32.3 72-72 72s-72-32.3-72-72V126.4l-64.9 39C107.8 176.9 96 197.8 96 220.2v47.3l-80 46.2C.7 322.5-4.6 342.1 4.3 357.4l80 138.6c8.8 15.3 28.4 20.5 43.7 11.7L231.4 448H368c35.3 0 64-28.7 64-64h16c17.7 0 32-14.3 32-32v-64h8c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zm147.7-37.4L555.7 16C546.9.7 527.3-4.5 512 4.3L408.6 64H306.4c-12 0-23.7 3.4-33.9 9.7L239 94.6c-9.4 5.8-15 16.1-15 27.1V248c0 22.1 17.9 40 40 40s40-17.9 40-40v-88h184c30.9 0 56 25.1 56 56v28.5l80-46.2c15.3-8.9 20.5-28.4 11.7-43.7z" ], + handshake: [ 640, 512, [], "f2b5", "M434.7 64h-85.9c-8 0-15.7 3-21.6 8.4l-98.3 90c-.1.1-.2.3-.3.4-16.6 15.6-16.3 40.5-2.1 56 12.7 13.9 39.4 17.6 56.1 2.7.1-.1.3-.1.4-.2l79.9-73.2c6.5-5.9 16.7-5.5 22.6 1 6 6.5 5.5 16.6-1 22.6l-26.1 23.9L504 313.8c2.9 2.4 5.5 5 7.9 7.7V128l-54.6-54.6c-5.9-6-14.1-9.4-22.6-9.4zM544 128.2v223.9c0 17.7 14.3 32 32 32h64V128.2h-96zm48 223.9c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM0 384h64c17.7 0 32-14.3 32-32V128.2H0V384zm48-63.9c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16c0-8.9 7.2-16 16-16zm435.9 18.6L334.6 217.5l-30 27.5c-29.7 27.1-75.2 24.5-101.7-4.4-26.9-29.4-24.8-74.9 4.4-101.7L289.1 64h-83.8c-8.5 0-16.6 3.4-22.6 9.4L128 128v223.9h18.3l90.5 81.9c27.4 22.3 67.7 18.1 90-9.3l.2-.2 17.9 15.5c15.9 13 39.4 10.5 52.3-5.4l31.4-38.6 5.4 4.4c13.7 11.1 33.9 9.1 45-4.7l9.5-11.7c11.2-13.8 9.1-33.9-4.6-45.1z" ], + hashtag: [ 448, 512, [], "f292", "M440.667 182.109l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l14.623-81.891C377.123 38.754 371.468 32 363.997 32h-40.632a12 12 0 0 0-11.813 9.891L296.175 128H197.54l14.623-81.891C213.477 38.754 207.822 32 200.35 32h-40.632a12 12 0 0 0-11.813 9.891L132.528 128H53.432a12 12 0 0 0-11.813 9.891l-7.143 40C33.163 185.246 38.818 192 46.289 192h74.81L98.242 320H19.146a12 12 0 0 0-11.813 9.891l-7.143 40C-1.123 377.246 4.532 384 12.003 384h74.81L72.19 465.891C70.877 473.246 76.532 480 84.003 480h40.632a12 12 0 0 0 11.813-9.891L151.826 384h98.634l-14.623 81.891C234.523 473.246 240.178 480 247.65 480h40.632a12 12 0 0 0 11.813-9.891L315.472 384h79.096a12 12 0 0 0 11.813-9.891l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l22.857-128h79.096a12 12 0 0 0 11.813-9.891zM261.889 320h-98.634l22.857-128h98.634l-22.857 128z" ], + hdd: [ 576, 512, [], "f0a0", "M576 304v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48zm-48-80a79.557 79.557 0 0 1 30.777 6.165L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L17.223 230.165A79.557 79.557 0 0 1 48 224h480zm-48 96c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm-96 0c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z" ], + heading: [ 512, 512, [], "f1dc", "M496 80V48c0-8.837-7.163-16-16-16H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.621v128H154.379V96H192c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h37.275v320H32c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.621V288H357.62v128H320c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h160c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-37.275V96H480c8.837 0 16-7.163 16-16z" ], + headphones: [ 512, 512, [], "f025", "M256 32C114.52 32 0 146.496 0 288v48a32 32 0 0 0 17.689 28.622l14.383 7.191C34.083 431.903 83.421 480 144 480h24c13.255 0 24-10.745 24-24V280c0-13.255-10.745-24-24-24h-24c-31.342 0-59.671 12.879-80 33.627V288c0-105.869 86.131-192 192-192s192 86.131 192 192v1.627C427.671 268.879 399.342 256 368 256h-24c-13.255 0-24 10.745-24 24v176c0 13.255 10.745 24 24 24h24c60.579 0 109.917-48.098 111.928-108.187l14.382-7.191A32 32 0 0 0 512 336v-48c0-141.479-114.496-256-256-256z" ], + "headphones-alt": [ 512, 512, [], "f58f", "M160 288h-16c-35.35 0-64 28.7-64 64.12v63.76c0 35.41 28.65 64.12 64 64.12h16c17.67 0 32-14.36 32-32.06V320.06c0-17.71-14.33-32.06-32-32.06zm208 0h-16c-17.67 0-32 14.35-32 32.06v127.88c0 17.7 14.33 32.06 32 32.06h16c35.35 0 64-28.71 64-64.12v-63.76c0-35.41-28.65-64.12-64-64.12zM256 32C112.91 32 4.57 151.13 0 288v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288c0-114.67 93.33-207.8 208-207.82 114.67.02 208 93.15 208 207.82v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288C507.43 151.13 399.09 32 256 32z" ], + headset: [ 512, 512, [], "f590", "M192 208c0-17.67-14.33-32-32-32h-16c-35.35 0-64 28.65-64 64v48c0 35.35 28.65 64 64 64h16c17.67 0 32-14.33 32-32V208zm176 144c35.35 0 64-28.65 64-64v-48c0-35.35-28.65-64-64-64h-16c-17.67 0-32 14.33-32 32v112c0 17.67 14.33 32 32 32h16zM256 0C113.18 0 4.58 118.83 0 256v16c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-16c0-114.69 93.31-208 208-208s208 93.31 208 208h-.12c.08 2.43.12 165.72.12 165.72 0 23.35-18.93 42.28-42.28 42.28H320c0-26.51-21.49-48-48-48h-32c-26.51 0-48 21.49-48 48s21.49 48 48 48h181.72c49.86 0 90.28-40.42 90.28-90.28V256C507.42 118.83 398.82 0 256 0z" ], + heart: [ 512, 512, [], "f004", "M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z" ], + heartbeat: [ 512, 512, [], "f21e", "M320.2 243.8l-49.7 99.4c-6 12.1-23.4 11.7-28.9-.6l-56.9-126.3-30 71.7H60.6l182.5 186.5c7.1 7.3 18.6 7.3 25.7 0L451.4 288H342.3l-22.1-44.2zM473.7 73.9l-2.4-2.5c-51.5-52.6-135.8-52.6-187.4 0L256 100l-27.9-28.5c-51.5-52.7-135.9-52.7-187.4 0l-2.4 2.4C-10.4 123.7-12.5 203 31 256h102.4l35.9-86.2c5.4-12.9 23.6-13.2 29.4-.4l58.2 129.3 49-97.9c5.9-11.8 22.7-11.8 28.6 0l27.6 55.2H481c43.5-53 41.4-132.3-7.3-182.1z" ], + helicopter: [ 640, 512, [], "f533", "M304 384h272c17.67 0 32-14.33 32-32 0-123.71-100.29-224-224-224V64h176c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H144c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h176v64H112L68.8 70.4C65.78 66.37 61.03 64 56 64H16.01C5.6 64-2.04 73.78.49 83.88L32 192l160 64 86.4 115.2A31.992 31.992 0 0 0 304 384zm112-188.49C478.55 208.3 528.03 257.44 540.79 320H416V195.51zm219.37 263.3l-22.15-22.2c-6.25-6.26-16.24-6.1-22.64.01-7.09 6.77-13.84 11.25-24.64 11.25H240c-8.84 0-16 7.18-16 16.03v32.06c0 8.85 7.16 16.03 16 16.03h325.94c14.88 0 35.3-.47 68.45-29.52 7.02-6.14 7.57-17.05.98-23.66z" ], + highlighter: [ 544, 512, [], "f591", "M0 479.98L99.92 512l35.45-35.45-67.04-67.04L0 479.98zm124.61-240.01a36.592 36.592 0 0 0-10.79 38.1l13.05 42.83-50.93 50.94 96.23 96.23 50.86-50.86 42.74 13.08c13.73 4.2 28.65-.01 38.15-10.78l35.55-41.64-173.34-173.34-41.52 35.44zm403.31-160.7l-63.2-63.2c-20.49-20.49-53.38-21.52-75.12-2.35L190.55 183.68l169.77 169.78L530.27 154.4c19.18-21.74 18.15-54.63-2.35-75.13z" ], + history: [ 512, 512, [], "f1da", "M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z" ], + "hockey-puck": [ 512, 512, [], "f453", "M0 160c0-53 114.6-96 256-96s256 43 256 96-114.6 96-256 96S0 213 0 160zm0 82.2V352c0 53 114.6 96 256 96s256-43 256-96V242.2c-113.4 82.3-398.5 82.4-512 0z" ], + home: [ 576, 512, [], "f015", "M488 312.7V456c0 13.3-10.7 24-24 24H348c-6.6 0-12-5.4-12-12V356c0-6.6-5.4-12-12-12h-72c-6.6 0-12 5.4-12 12v112c0 6.6-5.4 12-12 12H112c-13.3 0-24-10.7-24-24V312.7c0-3.6 1.6-7 4.4-9.3l188-154.8c4.4-3.6 10.8-3.6 15.3 0l188 154.8c2.7 2.3 4.3 5.7 4.3 9.3zm83.6-60.9L488 182.9V44.4c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12V117l-89.5-73.7c-17.7-14.6-43.3-14.6-61 0L4.4 251.8c-5.1 4.2-5.8 11.8-1.6 16.9l25.5 31c4.2 5.1 11.8 5.8 16.9 1.6l235.2-193.7c4.4-3.6 10.8-3.6 15.3 0l235.2 193.7c5.1 4.2 12.7 3.5 16.9-1.6l25.5-31c4.2-5.2 3.4-12.7-1.7-16.9z" ], + hospital: [ 448, 512, [], "f0f8", "M448 492v20H0v-20c0-6.627 5.373-12 12-12h20V120c0-13.255 10.745-24 24-24h88V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v72h88c13.255 0 24 10.745 24 24v360h20c6.627 0 12 5.373 12 12zM308 192h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-168 64h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm104 128h-40c-6.627 0-12 5.373-12 12v84h64v-84c0-6.627-5.373-12-12-12zm64-96h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-116 12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zM182 96h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6z" ], + "hospital-alt": [ 576, 512, [], "f47d", "M544 96H416V32c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32v368c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16V128c0-17.7-14.3-32-32-32zM160 436c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm160 128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm16-170c0 3.3-2.7 6-6 6h-26v26c0 3.3-2.7 6-6 6h-20c-3.3 0-6-2.7-6-6v-26h-26c-3.3 0-6-2.7-6-6v-20c0-3.3 2.7-6 6-6h26V86c0-3.3 2.7-6 6-6h20c3.3 0 6 2.7 6 6v26h26c3.3 0 6 2.7 6 6v20zm144 298c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z" ], + "hospital-symbol": [ 512, 512, [], "f47e", "M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm112 376c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-88h-96v88c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V136c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v88h96v-88c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v240z" ], + "hot-tub": [ 512, 512, [], "f593", "M414.21 177.65c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C378.96 6.14 372.22 0 364.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zm-108 0c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C270.96 6.14 264.22 0 256.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zM480 256H256l-110.93-83.2a63.99 63.99 0 0 0-38.4-12.8H64c-35.35 0-64 28.65-64 64v224c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64V288c0-17.67-14.33-32-32-32zM128 440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zM64 128c35.35 0 64-28.65 64-64S99.35 0 64 0 0 28.65 0 64s28.65 64 64 64z" ], + hotel: [ 576, 512, [], "f594", "M560 64c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h15.98v384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h240v-80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v80h240c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-16V64h16zm-304 44.8c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm0 96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm-128-96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zM179.2 256h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8zM192 384c0-53.02 42.98-96 96-96s96 42.98 96 96H192zm256-140.8c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-96c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4z" ], + hourglass: [ 384, 512, [], "f254", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64z" ], + "hourglass-end": [ 384, 512, [], "f253", "M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64zM192 208c-57.787 0-104-66.518-104-144h208c0 77.945-46.51 144-104 144z" ], + "hourglass-half": [ 384, 512, [], "f252", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-75.078 384H99.08c17.059-46.797 52.096-80 92.92-80 40.821 0 75.862 33.196 92.922 80zm.019-256H99.078C91.988 108.548 88 86.748 88 64h208c0 22.805-3.987 44.587-11.059 64z" ], + "hourglass-start": [ 384, 512, [], "f251", "M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-64 448H88c0-77.458 46.204-144 104-144 57.786 0 104 66.517 104 144z" ], + "i-cursor": [ 256, 512, [], "f246", "M256 52.048V12.065C256 5.496 250.726.148 244.158.066 211.621-.344 166.469.011 128 37.959 90.266.736 46.979-.114 11.913.114 5.318.157 0 5.519 0 12.114v39.645c0 6.687 5.458 12.078 12.145 11.998C38.111 63.447 96 67.243 96 112.182V224H60c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h36v112c0 44.932-56.075 48.031-83.95 47.959C5.404 447.942 0 453.306 0 459.952v39.983c0 6.569 5.274 11.917 11.842 11.999 32.537.409 77.689.054 116.158-37.894 37.734 37.223 81.021 38.073 116.087 37.845 6.595-.043 11.913-5.405 11.913-12V460.24c0-6.687-5.458-12.078-12.145-11.998C217.889 448.553 160 444.939 160 400V288h36c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-36V112.182c0-44.932 56.075-48.213 83.95-48.142 6.646.018 12.05-5.346 12.05-11.992z" ], + "id-badge": [ 384, 512, [], "f2c1", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM144 32h96c8.8 0 16 7.2 16 16s-7.2 16-16 16h-96c-8.8 0-16-7.2-16-16s7.2-16 16-16zm48 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 416 80 407.4 80 396.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z" ], + "id-card": [ 576, 512, [], "f2c2", "M528 32H48C21.5 32 0 53.5 0 80v16h576V80c0-26.5-21.5-48-48-48zM0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V128H0v304zm352-232c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zM176 192c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zM67.1 396.2C75.5 370.5 99.6 352 128 352h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.9-5.2 19.8-15.6 19.8H82.7c-10.4 0-18.8-10-15.6-19.8z" ], + "id-card-alt": [ 576, 512, [], "f47f", "M528 64H384v96H192V64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM288 224c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm93.3 224H194.7c-10.4 0-18.8-10-15.6-19.8 8.3-25.6 32.4-44.2 60.9-44.2h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.8-5.2 19.8-15.6 19.8zM352 32c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v96h128V32z" ], + image: [ 512, 512, [], "f03e", "M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z" ], + images: [ 576, 512, [], "f302", "M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v208c0 44.112 35.888 80 80 80h336zm96-80V80c0-26.51-21.49-48-48-48H144c-26.51 0-48 21.49-48 48v256c0 26.51 21.49 48 48 48h384c26.51 0 48-21.49 48-48zM256 128c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-96 144l55.515-55.515c4.686-4.686 12.284-4.686 16.971 0L272 256l135.515-135.515c4.686-4.686 12.284-4.686 16.971 0L512 208v112H160v-48z" ], + inbox: [ 576, 512, [], "f01c", "M567.938 243.908L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L8.062 243.908A47.994 47.994 0 0 0 0 270.533V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V270.533a47.994 47.994 0 0 0-8.062-26.625zM162.252 128h251.497l85.333 128H376l-32 64H232l-32-64H76.918l85.334-128z" ], + indent: [ 448, 512, [], "f03c", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm176 144h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm160-128h256c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H176c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm-52.687-111.313l-96-95.984C17.266 138.652 0 145.776 0 160.016v191.975c0 14.329 17.325 21.304 27.313 11.313l96-95.992c6.249-6.247 6.249-16.377 0-22.625z" ], + industry: [ 512, 512, [], "f275", "M475.115 163.781L336 252.309v-68.28c0-18.916-20.931-30.399-36.885-20.248L160 252.309V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h464c13.255 0 24-10.745 24-24V184.029c0-18.917-20.931-30.399-36.885-20.248z" ], + infinity: [ 640, 512, [], "f534", "M471.1 96C405 96 353.3 137.3 320 174.6 286.7 137.3 235 96 168.9 96 75.8 96 0 167.8 0 256s75.8 160 168.9 160c66.1 0 117.8-41.3 151.1-78.6 33.3 37.3 85 78.6 151.1 78.6 93.1 0 168.9-71.8 168.9-160S564.2 96 471.1 96zM168.9 320c-40.2 0-72.9-28.7-72.9-64s32.7-64 72.9-64c38.2 0 73.4 36.1 94 64-20.4 27.6-55.9 64-94 64zm302.2 0c-38.2 0-73.4-36.1-94-64 20.4-27.6 55.9-64 94-64 40.2 0 72.9 28.7 72.9 64s-32.7 64-72.9 64z" ], + info: [ 192, 512, [], "f129", "M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z" ], + "info-circle": [ 512, 512, [], "f05a", "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z" ], + italic: [ 320, 512, [], "f033", "M204.758 416h-33.849l62.092-320h40.725a16 16 0 0 0 15.704-12.937l6.242-32C297.599 41.184 290.034 32 279.968 32H120.235a16 16 0 0 0-15.704 12.937l-6.242 32C96.362 86.816 103.927 96 113.993 96h33.846l-62.09 320H46.278a16 16 0 0 0-15.704 12.935l-6.245 32C22.402 470.815 29.967 480 40.034 480h158.479a16 16 0 0 0 15.704-12.935l6.245-32c1.927-9.88-5.638-19.065-15.704-19.065z" ], + joint: [ 640, 512, [], "f595", "M444.34 181.1c22.38 15.68 35.66 41.16 35.66 68.59V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-43.24-21.01-83.41-56.34-108.06C463.85 125.02 448 99.34 448 70.31V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v66.4c0 43.69 24.56 81.63 60.34 106.7zM194.97 358.98C126.03 370.07 59.69 394.69 0 432c83.65 52.28 180.3 80 278.94 80h88.57L254.79 380.49c-14.74-17.2-37.45-25.11-59.82-21.51zM553.28 87.09c-5.67-3.8-9.28-9.96-9.28-16.78V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v62.31c0 22.02 10.17 43.41 28.64 55.39C550.79 153.04 576 199.54 576 249.69V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-65.44-32.41-126.19-86.72-162.6zM360.89 352.05c-34.4.06-86.81.15-88.21.17l117.8 137.43A63.987 63.987 0 0 0 439.07 512h88.45L409.57 374.4a63.955 63.955 0 0 0-48.68-22.35zM616 352H432l117.99 137.65A63.987 63.987 0 0 0 598.58 512H616c13.25 0 24-10.75 24-24V376c0-13.26-10.75-24-24-24z" ], + key: [ 512, 512, [], "f084", "M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z" ], + keyboard: [ 576, 512, [], "f11c", "M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z" ], + kiss: [ 496, 512, [], "f596", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm136 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm24-156c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + "kiss-beam": [ 496, 512, [], "f597", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-39 219.9l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5zM304 396c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm65-168.1l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5z" ], + "kiss-wink-heart": [ 504, 512, [], "f598", "M501.1 402.5c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zm-177.6-4c-5.6-20.3-2.3-42 9-59.7 29.7-46.3 98.7-45.5 127.8 4.3 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-.3-.7-23.9-84.6-23.9-84.6zM168 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm120 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-5.7-12.3 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.8-3.7-4.6-16.6 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C274.6 368.7 288 383 288 396zm16-179c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S400 181 404 206.2c1.7 11.1-11.3 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 217z" ], + "kiwi-bird": [ 576, 512, [], "f535", "M575.81 217.98C572.64 157.41 518.28 112 457.63 112h-9.37c-52.82 0-104.25-16.25-147.74-46.24-41.99-28.96-96.04-41.62-153.21-28.7C129.3 41.12-.08 78.24 0 224c.04 70.95 38.68 132.8 95.99 166.01V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-54.26c15.36 3.96 31.4 6.26 48 6.26 5.44 0 10.68-.73 16-1.18V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-59.43c14.24-5.06 27.88-11.39 40.34-19.51C342.07 355.25 393.86 336 448.46 336c25.48 0 16.01-.31 23.05-.78l74.41 136.44c2.86 5.23 8.3 8.34 14.05 8.34 1.31 0 2.64-.16 3.95-.5 7.09-1.8 12.05-8.19 12.05-15.5 0 0 .14-240.24-.16-246.02zM463.97 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm80 153.25l-39.86-73.08c15.12-5.83 28.73-14.6 39.86-25.98v99.06z" ], + language: [ 640, 512, [], "f1ab", "M304 416H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h280v320zm-120.676-72.622A12 12 0 0 0 194.839 352h22.863c8.22 0 14.007-8.078 11.362-15.861L171.61 167.085a12 12 0 0 0-11.362-8.139h-32.489a12.001 12.001 0 0 0-11.362 8.139L58.942 336.139C56.297 343.922 62.084 352 70.304 352h22.805a12 12 0 0 0 11.535-8.693l9.118-31.807h60.211l9.351 31.878zm-39.051-140.42s4.32 21.061 7.83 33.21l10.8 37.531h-38.07l11.07-37.531c3.51-12.15 7.83-33.21 7.83-33.21h.54zM616 416H336V96h280c13.255 0 24 10.745 24 24v272c0 13.255-10.745 24-24 24zm-36-228h-64v-16c0-6.627-5.373-12-12-12h-16c-6.627 0-12 5.373-12 12v16h-64c-6.627 0-12 5.373-12 12v16c0 6.627 5.373 12 12 12h114.106c-6.263 14.299-16.518 28.972-30.023 43.206-6.56-6.898-12.397-13.91-17.365-20.933-3.639-5.144-10.585-6.675-15.995-3.446l-7.28 4.346-6.498 3.879c-5.956 3.556-7.693 11.421-3.735 17.117 6.065 8.729 13.098 17.336 20.984 25.726-8.122 6.226-16.841 12.244-26.103 17.964-5.521 3.41-7.381 10.556-4.162 16.19l7.941 13.896c3.362 5.883 10.935 7.826 16.706 4.276 12.732-7.831 24.571-16.175 35.443-24.891 10.917 8.761 22.766 17.102 35.396 24.881 5.774 3.556 13.353 1.618 16.717-4.27l7.944-13.903c3.213-5.623 1.37-12.76-4.135-16.171a312.737 312.737 0 0 1-26.06-18.019c21.024-22.425 35.768-46.289 42.713-69.85H580c6.627 0 12-5.373 12-12v-16c0-6.625-5.373-11.998-12-11.998z" ], + laptop: [ 640, 512, [], "f109", "M512 64v256H128V64h384m16-64H112C85.5 0 64 21.5 64 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm100 416H389.5c-3 0-5.5 2.1-5.9 5.1C381.2 436.3 368 448 352 448h-64c-16 0-29.2-11.7-31.6-26.9-.5-2.9-3-5.1-5.9-5.1H12c-6.6 0-12 5.4-12 12v36c0 26.5 21.5 48 48 48h544c26.5 0 48-21.5 48-48v-36c0-6.6-5.4-12-12-12z" ], + laugh: [ 496, 512, [], "f599", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 152c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm88 272h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18-8.9 71-69.5 126-142.9 126z" ], + "laugh-beam": [ 496, 512, [], "f59a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm24 199.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.8 4.1-15.1-4.5zm-160 0c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z" ], + "laugh-squint": [ 496, 512, [], "f59b", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 161.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 180l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z" ], + "laugh-wink": [ 496, 512, [], "f59c", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm20.1 198.1c4-25.2 34.2-42.1 59.9-42.1s55.9 16.9 59.9 42.1c1.7 11.1-11.4 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 217c-8.4 7.4-21.6.3-19.9-10.9zM168 160c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm230.9 146C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z" ], + leaf: [ 576, 512, [], "f06c", "M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z" ], + lemon: [ 512, 512, [], "f094", "M489.038 22.963C465.944-.13 434.648-5.93 413.947 6.129c-58.906 34.312-181.25-53.077-321.073 86.746S40.441 355.041 6.129 413.945c-12.059 20.702-6.26 51.999 16.833 75.093 23.095 23.095 54.392 28.891 75.095 16.832 58.901-34.31 181.246 53.079 321.068-86.743S471.56 156.96 505.871 98.056c12.059-20.702 6.261-51.999-16.833-75.093zM243.881 95.522c-58.189 14.547-133.808 90.155-148.358 148.358-1.817 7.27-8.342 12.124-15.511 12.124-1.284 0-2.59-.156-3.893-.481-8.572-2.144-13.784-10.83-11.642-19.403C81.901 166.427 166.316 81.93 236.119 64.478c8.575-2.143 17.261 3.069 19.403 11.642s-3.069 17.259-11.641 19.402z" ], + "less-than": [ 384, 512, [], "f536", "M365.46 357.74L147.04 255.89l218.47-101.88c16.02-7.47 22.95-26.51 15.48-42.53l-13.52-29C360 66.46 340.96 59.53 324.94 67L18.48 209.91a32.014 32.014 0 0 0-18.48 29v34.24c0 12.44 7.21 23.75 18.48 29l306.31 142.83c16.06 7.49 35.15.54 42.64-15.52l13.56-29.08c7.49-16.06.54-35.15-15.53-42.64z" ], + "less-than-equal": [ 448, 512, [], "f537", "M54.98 214.2l301.41 119.87c18.39 6.03 38.71-2.54 45.38-19.15l12.09-30.08c6.68-16.61-2.82-34.97-21.21-41l-175.44-68.05 175.56-68.09c18.29-6 27.74-24.27 21.1-40.79l-12.03-29.92c-6.64-16.53-26.86-25.06-45.15-19.06L54.98 137.89C41.21 142.41 32 154.5 32 168.07v15.96c0 13.56 9.21 25.65 22.98 30.17zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z" ], + "level-down-alt": [ 320, 512, [], "f3be", "M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z" ], + "level-up-alt": [ 320, 512, [], "f3bf", "M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z" ], + "life-ring": [ 512, 512, [], "f1cd", "M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm173.696 119.559l-63.399 63.399c-10.987-18.559-26.67-34.252-45.255-45.255l63.399-63.399a218.396 218.396 0 0 1 45.255 45.255zM256 352c-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96-42.981 96-96 96zM127.559 82.304l63.399 63.399c-18.559 10.987-34.252 26.67-45.255 45.255l-63.399-63.399a218.372 218.372 0 0 1 45.255-45.255zM82.304 384.441l63.399-63.399c10.987 18.559 26.67 34.252 45.255 45.255l-63.399 63.399a218.396 218.396 0 0 1-45.255-45.255zm302.137 45.255l-63.399-63.399c18.559-10.987 34.252-26.67 45.255-45.255l63.399 63.399a218.403 218.403 0 0 1-45.255 45.255z" ], + lightbulb: [ 384, 512, [], "f0eb", "M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zm-143.107-44c-9.907 0-18.826-6.078-22.376-15.327C67.697 267.541 16 277.731 16 176 16 78.803 94.805 0 192 0s176 78.803 176 176c0 101.731-51.697 91.541-90.516 192.673-3.55 9.249-12.47 15.327-22.376 15.327H128.893zM112 176c0-44.112 35.888-80 80-80 8.837 0 16-7.164 16-16s-7.163-16-16-16c-61.757 0-112 50.243-112 112 0 8.836 7.164 16 16 16s16-7.164 16-16z" ], + link: [ 512, 512, [], "f0c1", "M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z" ], + "lira-sign": [ 384, 512, [], "f195", "M371.994 256h-48.019C317.64 256 312 260.912 312 267.246 312 368 230.179 416 144 416V256.781l134.603-29.912A12 12 0 0 0 288 215.155v-40.976c0-7.677-7.109-13.38-14.603-11.714L144 191.219V160.78l134.603-29.912A12 12 0 0 0 288 119.154V78.179c0-7.677-7.109-13.38-14.603-11.714L144 95.219V44c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v68.997L9.397 125.131A12 12 0 0 0 0 136.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 178.558v30.439L9.397 221.131A12 12 0 0 0 0 232.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 274.558V468c0 6.627 5.373 12 12 12h79.583c134.091 0 223.255-77.834 228.408-211.592.261-6.782-5.211-12.408-11.997-12.408z" ], + list: [ 512, 512, [], "f03a", "M128 116V76c0-8.837 7.163-16 16-16h352c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H144c-8.837 0-16-7.163-16-16zm16 176h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 144h64c8.837 0 16-7.163 16-16V64c0-8.837-7.163-16-16-16H16C7.163 48 0 55.163 0 64v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16zm0 160h64c8.837 0 16-7.163 16-16v-64c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v64c0 8.837 7.163 16 16 16z" ], + "list-alt": [ 512, 512, [], "f022", "M464 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM128 120c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288-136v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12z" ], + "list-ol": [ 512, 512, [], "f0cb", "M3.263 139.527c0-7.477 3.917-11.572 11.573-11.572h15.131V88.078c0-5.163.534-10.503.534-10.503h-.356s-1.779 2.67-2.848 3.738c-4.451 4.273-10.504 4.451-15.666-1.068l-5.518-6.231c-5.342-5.341-4.984-11.216.534-16.379l21.72-19.938C32.815 33.602 36.732 32 42.785 32H54.89c7.656 0 11.749 3.916 11.749 11.572v84.384h15.488c7.655 0 11.572 4.094 11.572 11.572v8.901c0 7.477-3.917 11.572-11.572 11.572H14.836c-7.656 0-11.573-4.095-11.573-11.572v-8.902zM2.211 304.591c0-47.278 50.955-56.383 50.955-69.165 0-7.18-5.954-8.755-9.28-8.755-3.153 0-6.479 1.051-9.455 3.852-5.079 4.903-10.507 7.004-16.111 2.451l-8.579-6.829c-5.779-4.553-7.18-9.805-2.803-15.409C13.592 201.981 26.025 192 47.387 192c19.437 0 44.476 10.506 44.476 39.573 0 38.347-46.753 46.402-48.679 56.909h39.049c7.529 0 11.557 4.027 11.557 11.382v8.755c0 7.354-4.028 11.382-11.557 11.382h-67.94c-7.005 0-12.083-4.028-12.083-11.382v-4.028zM5.654 454.61l5.603-9.28c3.853-6.654 9.105-7.004 15.584-3.152 4.903 2.101 9.63 3.152 14.359 3.152 10.155 0 14.358-3.502 14.358-8.23 0-6.654-5.604-9.106-15.934-9.106h-4.728c-5.954 0-9.28-2.101-12.258-7.88l-1.05-1.926c-2.451-4.728-1.226-9.806 2.801-14.884l5.604-7.004c6.829-8.405 12.257-13.483 12.257-13.483v-.35s-4.203 1.051-12.608 1.051H16.685c-7.53 0-11.383-4.028-11.383-11.382v-8.755c0-7.53 3.853-11.382 11.383-11.382h58.484c7.529 0 11.382 4.027 11.382 11.382v3.327c0 5.778-1.401 9.806-5.079 14.183l-17.509 20.137c19.611 5.078 28.716 20.487 28.716 34.845 0 21.363-14.358 44.126-48.503 44.126-16.636 0-28.192-4.728-35.896-9.455-5.779-4.202-6.304-9.805-2.626-15.934zM144 132h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" ], + "list-ul": [ 512, 512, [], "f0ca", "M96 96c0 26.51-21.49 48-48 48S0 122.51 0 96s21.49-48 48-48 48 21.49 48 48zM48 208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm0 160c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm96-236h352c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h352c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H144c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" ], + "location-arrow": [ 512, 512, [], "f124", "M443.683 4.529L27.818 196.418C-18.702 217.889-3.39 288 47.933 288H224v175.993c0 51.727 70.161 66.526 91.582 20.115L507.38 68.225c18.905-40.961-23.752-82.133-63.697-63.696z" ], + lock: [ 448, 512, [], "f023", "M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z" ], + "lock-open": [ 576, 512, [], "f3c1", "M423.5 0C339.5.3 272 69.5 272 153.5V224H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48h-48v-71.1c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v80c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-80C576 68 507.5-.3 423.5 0z" ], + "long-arrow-alt-down": [ 256, 512, [], "f309", "M168 345.941V44c0-6.627-5.373-12-12-12h-56c-6.627 0-12 5.373-12 12v301.941H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.569 9.373 33.941 0l86.059-86.059c15.119-15.119 4.411-40.971-16.971-40.971H168z" ], + "long-arrow-alt-left": [ 448, 512, [], "f30a", "M134.059 296H436c6.627 0 12-5.373 12-12v-56c0-6.627-5.373-12-12-12H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.569 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296z" ], + "long-arrow-alt-right": [ 448, 512, [], "f30b", "M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z" ], + "long-arrow-alt-up": [ 256, 512, [], "f30c", "M88 166.059V468c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12V166.059h46.059c21.382 0 32.09-25.851 16.971-40.971l-86.059-86.059c-9.373-9.373-24.569-9.373-33.941 0l-86.059 86.059c-15.119 15.119-4.411 40.971 16.971 40.971H88z" ], + "low-vision": [ 576, 512, [], "f2a8", "M569.344 231.631C512.96 135.949 407.81 72 288 72c-28.468 0-56.102 3.619-82.451 10.409L152.778 10.24c-7.601-10.858-22.564-13.5-33.423-5.9l-13.114 9.178c-10.86 7.601-13.502 22.566-5.9 33.426l43.131 58.395C89.449 131.73 40.228 174.683 6.682 231.581c-.01.017-.023.033-.034.05-8.765 14.875-8.964 33.528 0 48.739 38.5 65.332 99.742 115.862 172.859 141.349L55.316 244.302A272.194 272.194 0 0 1 83.61 208.39l119.4 170.58h.01l40.63 58.04a330.055 330.055 0 0 0 78.94 1.17l-189.98-271.4a277.628 277.628 0 0 1 38.777-21.563l251.836 356.544c7.601 10.858 22.564 13.499 33.423 5.9l13.114-9.178c10.86-7.601 13.502-22.567 5.9-33.426l-43.12-58.377-.007-.009c57.161-27.978 104.835-72.04 136.81-126.301a47.938 47.938 0 0 0 .001-48.739zM390.026 345.94l-19.066-27.23c24.682-32.567 27.711-76.353 8.8-111.68v.03c0 23.65-19.17 42.82-42.82 42.82-23.828 0-42.82-19.349-42.82-42.82 0-23.65 19.17-42.82 42.82-42.82h.03c-24.75-13.249-53.522-15.643-79.51-7.68l-19.068-27.237C253.758 123.306 270.488 120 288 120c75.162 0 136 60.826 136 136 0 34.504-12.833 65.975-33.974 89.94z" ], + "luggage-cart": [ 640, 512, [], "f59d", "M224 320h32V96h-32c-17.67 0-32 14.33-32 32v160c0 17.67 14.33 32 32 32zm352-32V128c0-17.67-14.33-32-32-32h-32v224h32c17.67 0 32-14.33 32-32zm48 96H128V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h48v368c0 8.84 7.16 16 16 16h82.94c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16h197.88c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM480 96V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v272h192V96zm-48 0h-96V48h96v48z" ], + magic: [ 512, 512, [], "f0d0", "M224 96l16-32 32-16-32-16-16-32-16 32-32 16 32 16 16 32zM80 160l26.66-53.33L160 80l-53.34-26.67L80 0 53.34 53.33 0 80l53.34 26.67L80 160zm352 128l-26.66 53.33L352 368l53.34 26.67L432 448l26.66-53.33L512 368l-53.34-26.67L432 288zm70.62-193.77L417.77 9.38C411.53 3.12 403.34 0 395.15 0c-8.19 0-16.38 3.12-22.63 9.38L9.38 372.52c-12.5 12.5-12.5 32.76 0 45.25l84.85 84.85c6.25 6.25 14.44 9.37 22.62 9.37 8.19 0 16.38-3.12 22.63-9.37l363.14-363.15c12.5-12.48 12.5-32.75 0-45.24zM359.45 203.46l-50.91-50.91 86.6-86.6 50.91 50.91-86.6 86.6z" ], + magnet: [ 512, 512, [], "f076", "M164.1 160H12c-6.6 0-12-5.4-12-12V68c0-19.9 16.1-36 36-36h104c19.9 0 36 16.1 36 36v80c.1 6.6-5.3 12-11.9 12zm348-12V67.9c0-19.9-16.1-36-36-36h-104c-19.9 0-36 16.1-36 36v80c0 6.6 5.4 12 12 12h152c6.6.1 12-5.3 12-11.9zm-164 44c-6.6 0-12 5.4-12 12v52c0 128.1-160 127.9-160 0v-52c0-6.6-5.4-12-12-12h-152c-6.7 0-12 5.4-12 12.1.1 21.4.6 40.3 0 53.3C.1 408 136.3 504 256.9 504 377.5 504 512 408 512 257.3c-.6-12.8-.2-33 0-53.2 0-6.7-5.3-12.1-12-12.1H348.1z" ], + male: [ 192, 512, [], "f183", "M96 0c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64S60.654 0 96 0m48 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H48c-26.51 0-48 21.49-48 48v136c0 13.255 10.745 24 24 24h16v136c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V352h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48z" ], + map: [ 576, 512, [], "f279", "M0 117.66v346.32c0 11.32 11.43 19.06 21.94 14.86L160 416V32L20.12 87.95A32.006 32.006 0 0 0 0 117.66zM192 416l192 64V96L192 32v384zM554.06 33.16L416 96v384l139.88-55.95A31.996 31.996 0 0 0 576 394.34V48.02c0-11.32-11.43-19.06-21.94-14.86z" ], + "map-marked": [ 576, 512, [], "f59f", "M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z" ], + "map-marked-alt": [ 576, 512, [], "f5a0", "M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zm0 168c-23.2 0-42-18.8-42-42s18.8-42 42-42 42 18.8 42 42-18.8 42-42 42zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z" ], + "map-marker": [ 384, 512, [], "f041", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0z" ], + "map-marker-alt": [ 384, 512, [], "f3c5", "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z" ], + "map-pin": [ 320, 512, [], "f276", "M192 300.813v172.82l-22.015 33.023c-4.75 7.125-15.219 7.125-19.969 0L128 473.633v-172.82a162.221 162.221 0 0 0 64 0zM160 0c79.529 0 144 64.471 144 144s-64.471 144-144 144S16 223.529 16 144 80.471 0 160 0M80 136c0-39.701 32.299-72 72-72a8 8 0 0 0 0-16c-48.523 0-88 39.477-88 88a8 8 0 0 0 16 0z" ], + "map-signs": [ 512, 512, [], "f277", "M487.515 104.485L439.03 152.97a23.998 23.998 0 0 1-16.97 7.029H56c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h160v-8c0-13.255 10.745-24 24-24h32c13.255 0 24 10.745 24 24v8h126.059a24 24 0 0 1 16.97 7.029l48.485 48.485c4.687 4.687 4.687 12.285.001 16.971zM216 368v120c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V368h-80zm240-144H296v-48h-80v48H89.941a24 24 0 0 0-16.97 7.029l-48.485 48.485c-4.686 4.686-4.686 12.284 0 16.971l48.485 48.485a23.998 23.998 0 0 0 16.97 7.029H456c13.255 0 24-10.745 24-24v-80C480 234.745 469.255 224 456 224z" ], + marker: [ 512, 512, [], "f5a1", "M93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l75.4-75.4-128.02-128.02-75.4 75.4zM485.49 26.51c-35.35-35.35-92.67-35.35-128.02 0l-21.76 21.76-36.56-36.55c-15.62-15.62-40.95-15.62-56.56 0L138.47 115.84c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0l87.15-87.15 19.59 19.59L191.98 192 320 320.02l165.49-165.49c35.35-35.35 35.35-92.66 0-128.02z" ], + mars: [ 384, 512, [], "f222", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c0-6.6-5.4-12-12-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" ], + "mars-double": [ 512, 512, [], "f227", "M340 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C198.5 72.1 172.2 64 144 64 64.5 64 0 128.5 0 208s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.5 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 288c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80zm356-128.1h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7c-18.2-11.4-39-18.9-61.5-21.3-2.1 21.8-8.2 43.3-18.4 63.3 1.1 0 2.2-.1 3.2-.1 44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80c0-1.1 0-2.2.1-3.2-20 10.2-41.5 16.4-63.3 18.4C168.4 455.6 229.6 512 304 512c79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12v-79c0-6.7-5.4-12.1-12-12.1z" ], + "mars-stroke": [ 384, 512, [], "f229", "M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-17.5 17.5-14.1-14.1c-4.7-4.7-12.3-4.7-17 0L224.5 133c-4.7 4.7-4.7 12.3 0 17l14.1 14.1-18 18c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l18-18 14.1 14.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L329.2 164l17.5-17.5 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c-.1-6.6-5.5-12-12.1-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" ], + "mars-stroke-h": [ 480, 512, [], "f22b", "M476.2 247.5l-55.9-55.9c-7.6-7.6-20.5-2.2-20.5 8.5V224H376v-20c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v20h-27.6c-5.8-25.6-18.7-49.9-38.6-69.8C189.6 98 98.4 98 42.2 154.2c-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 19.9-19.9 32.8-44.2 38.6-69.8H312v20c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-20h23.9v23.9c0 10.7 12.9 16 20.5 8.5l55.9-55.9c4.6-4.7 4.6-12.3-.1-17zm-275.6 65.1c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z" ], + "mars-stroke-v": [ 288, 512, [], "f22a", "M245.8 234.2c-19.9-19.9-44.2-32.8-69.8-38.6v-25.4h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V81.4h23.9c10.7 0 16-12.9 8.5-20.5L152.5 5.1c-4.7-4.7-12.3-4.7-17 0L79.6 61c-7.6 7.6-2.2 20.5 8.5 20.5H112v24.7H92c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h20v25.4c-25.6 5.8-49.9 18.7-69.8 38.6-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 56.3-56.2 56.3-147.4 0-203.6zm-45.2 158.4c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z" ], + medal: [ 512, 512, [], "f5a2", "M223.75 130.75L154.62 15.54A31.997 31.997 0 0 0 127.18 0H16.03C3.08 0-4.5 14.57 2.92 25.18l111.27 158.96c29.72-27.77 67.52-46.83 109.56-53.39zM495.97 0H384.82c-11.24 0-21.66 5.9-27.44 15.54l-69.13 115.21c42.04 6.56 79.84 25.62 109.56 53.38L509.08 25.18C516.5 14.57 508.92 0 495.97 0zM256 160c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm92.52 157.26l-37.93 36.96 8.97 52.22c1.6 9.36-8.26 16.51-16.65 12.09L256 393.88l-46.9 24.65c-8.4 4.45-18.25-2.74-16.65-12.09l8.97-52.22-37.93-36.96c-6.82-6.64-3.05-18.23 6.35-19.59l52.43-7.64 23.43-47.52c2.11-4.28 6.19-6.39 10.28-6.39 4.11 0 8.22 2.14 10.33 6.39l23.43 47.52 52.43 7.64c9.4 1.36 13.17 12.95 6.35 19.59z" ], + medkit: [ 512, 512, [], "f0fa", "M96 480h320V128h-32V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v48H96v352zm96-384h128v32H192V96zm320 80v256c0 26.51-21.49 48-48 48h-16V128h16c26.51 0 48 21.49 48 48zM64 480H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v352zm288-208v32c0 8.837-7.163 16-16 16h-48v48c0 8.837-7.163 16-16 16h-32c-8.837 0-16-7.163-16-16v-48h-48c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h48v-48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v48h48c8.837 0 16 7.163 16 16z" ], + meh: [ 496, 512, [], "f11a", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm176 192H152c-21.2 0-21.2-32 0-32h192c21.2 0 21.2 32 0 32zm-16-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + "meh-blank": [ 496, 512, [], "f5a4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + "meh-rolling-eyes": [ 496, 512, [], "f5a5", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 224c0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64s-64-28.7-64-64zm224 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-112c-35.3 0-64-28.7-64-64 0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64z" ], + memory: [ 640, 512, [], "f538", "M640 130.94V96c0-17.67-14.33-32-32-32H32C14.33 64 0 78.33 0 96v34.94c18.6 6.61 32 24.19 32 45.06s-13.4 38.45-32 45.06V320h640v-98.94c-18.6-6.61-32-24.19-32-45.06s13.4-38.45 32-45.06zM224 256h-64V128h64v128zm128 0h-64V128h64v128zm128 0h-64V128h64v128zM0 448h64v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h64v-96H0v96z" ], + mercury: [ 288, 512, [], "f223", "M288 208c0-44.2-19.9-83.7-51.2-110.1 2.5-1.8 4.9-3.8 7.2-5.8 24.7-21.2 39.8-48.8 43.2-78.8.9-7.1-4.7-13.3-11.9-13.3h-40.5C229 0 224.1 4.1 223 9.8c-2.4 12.5-9.6 24.3-20.7 33.8C187 56.8 166.3 64 144 64s-43-7.2-58.4-20.4C74.5 34.1 67.4 22.3 64.9 9.8 63.8 4.1 58.9 0 53.2 0H12.7C5.5 0-.1 6.2.8 13.3 4.2 43.4 19.2 71 44 92.2c2.3 2 4.7 3.9 7.2 5.8C19.9 124.3 0 163.8 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z" ], + microchip: [ 512, 512, [], "f2db", "M416 48v416c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h224c26.51 0 48 21.49 48 48zm96 58v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42V88h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zM30 376h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6z" ], + microphone: [ 352, 512, [], "f130", "M176 352c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96zm160-160h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16z" ], + "microphone-alt": [ 352, 512, [], "f3c9", "M336 192h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16zM176 352c53.02 0 96-42.98 96-96h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96z" ], + "microphone-alt-slash": [ 640, 512, [], "f539", "M633.82 458.1L476.26 336.33C488.74 312.21 496 284.98 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67h-43.67l-41.4-32H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.78c11.71-1.62 23.1-4.28 33.96-8.08l-50.4-38.96c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z" ], + "microphone-slash": [ 640, 512, [], "f131", "M633.82 458.1l-157.8-121.96C488.61 312.13 496 285.01 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67V96c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.77c11.66-1.6 22.85-4.54 33.67-8.31l-50.11-38.73c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z" ], + minus: [ 448, 512, [], "f068", "M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" ], + "minus-circle": [ 512, 512, [], "f056", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM124 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H124z" ], + "minus-square": [ 448, 512, [], "f146", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H92z" ], + mobile: [ 320, 512, [], "f10b", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + "mobile-alt": [ 320, 512, [], "f3cd", "M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm112-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v312z" ], + "money-bill": [ 640, 512, [], "f0d6", "M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 176c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 48h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z" ], + "money-bill-alt": [ 640, 512, [], "f3d1", "M352 288h-16v-88c0-4.42-3.58-8-8-8h-13.58c-4.74 0-9.37 1.4-13.31 4.03l-15.33 10.22a7.994 7.994 0 0 0-2.22 11.09l8.88 13.31a7.994 7.994 0 0 0 11.09 2.22l.47-.31V288h-16c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8h64c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 192c-53.02 0-96-50.15-96-112 0-61.86 42.98-112 96-112s96 50.14 96 112c0 61.87-43 112-96 112zm272 32h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z" ], + "money-bill-wave": [ 640, 512, [], "f53a", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM48 132.22c20.12 5.04 41.12 7.57 62.72 8.93C104.84 170.54 79 192.69 48 192.69v-60.47zm0 285v-47.78c34.37 0 62.18 27.27 63.71 61.4-22.53-1.81-43.59-6.31-63.71-13.62zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 27.78c-17.52-4.39-35.71-6.85-54.32-8.44 5.87-26.08 27.5-45.88 54.32-49.28v57.72zm0-236.11c-30.89-3.91-54.86-29.7-55.81-61.55 19.54 2.17 38.09 6.23 55.81 12.66v48.89z" ], + "money-bill-wave-alt": [ 640, 512, [], "f53b", "M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96z" ], + "money-check": [ 640, 512, [], "f53c", "M0 448c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128H0v320zm448-208c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-32zm0 120c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H456c-4.42 0-8-3.58-8-8v-16zM64 264c0-4.42 3.58-8 8-8h304c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm0 96c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zM624 32H16C7.16 32 0 39.16 0 48v48h640V48c0-8.84-7.16-16-16-16z" ], + "money-check-alt": [ 640, 512, [], "f53d", "M608 32H32C14.33 32 0 46.33 0 64v384c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM176 327.88V344c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V152c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07zM416 312c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm160 0c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h272c4.42 0 8 3.58 8 8v16z" ], + monument: [ 384, 512, [], "f5a6", "M368 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h352c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-78.86-347.26a31.97 31.97 0 0 0-9.21-19.44L203.31 4.69c-6.25-6.25-16.38-6.25-22.63 0l-76.6 76.61a31.97 31.97 0 0 0-9.21 19.44L64 416h256l-30.86-315.26zM240 307.2c0 6.4-6.4 12.8-12.8 12.8h-70.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h70.4c6.4 0 12.8 6.4 12.8 12.8v38.4z" ], + moon: [ 512, 512, [], "f186", "M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z" ], + "mortar-pestle": [ 512, 512, [], "f5a7", "M501.54 60.91c17.22-17.22 12.51-46.25-9.27-57.14a35.696 35.696 0 0 0-37.37 3.37L251.09 160h151.37l99.08-99.09zM496 192H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c0 80.98 50.2 150.11 121.13 178.32-12.76 16.87-21.72 36.8-24.95 58.69-1.46 9.92 6.04 18.98 16.07 18.98h223.5c10.03 0 17.53-9.06 16.07-18.98-3.22-21.89-12.18-41.82-24.95-58.69C429.8 406.11 480 336.98 480 256h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z" ], + motorcycle: [ 640, 512, [], "f21c", "M512.949 192.003c-14.862-.108-29.14 2.322-42.434 6.874L437.589 144H520c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24h-45.311a24 24 0 0 0-17.839 7.945l-37.496 41.663-22.774-37.956A24 24 0 0 0 376 64h-80c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h66.411l19.2 32H227.904c-17.727-23.073-44.924-40-99.904-40H72.54c-13.455 0-24.791 11.011-24.536 24.464C48.252 141.505 58.9 152 72 152h56c24.504 0 38.686 10.919 47.787 24.769l-11.291 20.529c-13.006-3.865-26.871-5.736-41.251-5.21C55.857 194.549 1.565 249.605.034 317.021-1.603 389.076 56.317 448 128 448c59.642 0 109.744-40.794 123.953-96h84.236c13.673 0 24.589-11.421 23.976-25.077-2.118-47.12 17.522-93.665 56.185-125.026l12.485 20.808c-27.646 23.654-45.097 58.88-44.831 98.179.47 69.556 57.203 126.452 126.758 127.11 71.629.678 129.839-57.487 129.234-129.099-.588-69.591-57.455-126.386-127.047-126.892zM128 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c4.242 0 8.405.341 12.469.982L98.97 316.434C90.187 332.407 101.762 352 120 352h81.297c-12.37 28.225-40.56 48-73.297 48zm388.351-.116C470.272 402.337 432 365.554 432 320c0-21.363 8.434-40.781 22.125-55.144l49.412 82.352c4.546 7.577 14.375 10.034 21.952 5.488l13.72-8.232c7.577-4.546 10.034-14.375 5.488-21.952l-48.556-80.927A80.005 80.005 0 0 1 512 240c45.554 0 82.338 38.273 79.884 84.352-2.16 40.558-34.974 73.372-75.533 75.532z" ], + "mouse-pointer": [ 320, 512, [], "f245", "M302.189 329.126H196.105l55.831 135.993c3.889 9.428-.555 19.999-9.444 23.999l-49.165 21.427c-9.165 4-19.443-.571-23.332-9.714l-53.053-129.136-86.664 89.138C18.729 472.71 0 463.554 0 447.977V18.299C0 1.899 19.921-6.096 30.277 5.443l284.412 292.542c11.472 11.179 3.007 31.141-12.5 31.141z" ], + music: [ 512, 512, [], "f001", "M470.4 1.5l-304 96C153.1 101.7 144 114 144 128v264.6c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V220.5l272-85.9v194c-14.1-5.4-30.5-8.6-48-8.6-53 0-96 28.7-96 64s43 64 96 64 96-28.7 96-64V32c0-21.7-21.1-37-41.6-30.5z" ], + neuter: [ 288, 512, [], "f22c", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V468c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V316.4c64.1-14.5 112-71.9 112-140.4zm-144 80c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" ], + newspaper: [ 576, 512, [], "f1ea", "M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z" ], + "not-equal": [ 448, 512, [], "f53e", "M416 208c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32h-23.88l51.87-66.81c5.37-7.02 4.04-17.06-2.97-22.43L415.61 3.3c-7.02-5.38-17.06-4.04-22.44 2.97L311.09 112H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h204.56l-74.53 96H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h55.49l-51.87 66.81c-5.37 7.01-4.04 17.05 2.97 22.43L64 508.7c7.02 5.38 17.06 4.04 22.43-2.97L168.52 400H416c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32H243.05l74.53-96H416z" ], + "notes-medical": [ 384, 512, [], "f481", "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm96 304c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm0-192c0 4.4-3.6 8-8 8H104c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16z" ], + "object-group": [ 512, 512, [], "f247", "M480 128V96h20c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v20H64V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v40c0 6.627 5.373 12 12 12h20v320H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-20h384v20c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-20V128zM96 276V140c0-6.627 5.373-12 12-12h168c6.627 0 12 5.373 12 12v136c0 6.627-5.373 12-12 12H108c-6.627 0-12-5.373-12-12zm320 96c0 6.627-5.373 12-12 12H236c-6.627 0-12-5.373-12-12v-52h72c13.255 0 24-10.745 24-24v-72h84c6.627 0 12 5.373 12 12v136z" ], + "object-ungroup": [ 576, 512, [], "f248", "M64 320v26a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6v-52a6 6 0 0 1 6-6h26V96H6a6 6 0 0 1-6-6V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v26h288V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-26v192h26a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-52a6 6 0 0 1-6-6v-26H64zm480-64v-32h26a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-52a6 6 0 0 0-6 6v26H408v72h8c13.255 0 24 10.745 24 24v64c0 13.255-10.745 24-24 24h-64c-13.255 0-24-10.745-24-24v-8H192v72h-26a6 6 0 0 0-6 6v52a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-26h288v26a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-26V256z" ], + outdent: [ 448, 512, [], "f03b", "M0 84V44c0-8.837 7.163-16 16-16h416c8.837 0 16 7.163 16 16v40c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16zm208 144h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM16 484h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm192-128h224c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H208c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zM4.687 267.313l96 95.984C110.734 373.348 128 366.224 128 351.984V160.008c0-14.329-17.325-21.304-27.313-11.313l-96 95.992c-6.249 6.248-6.249 16.378 0 22.626z" ], + "paint-brush": [ 512, 512, [], "f1fc", "M167.02 309.34c-40.12 2.58-76.53 17.86-97.19 72.3-2.35 6.21-8 9.98-14.59 9.98-11.11 0-45.46-27.67-55.25-34.35C0 439.62 37.93 512 128 512c75.86 0 128-43.77 128-120.19 0-3.11-.65-6.08-.97-9.13l-88.01-73.34zM457.89 0c-15.16 0-29.37 6.71-40.21 16.45C213.27 199.05 192 203.34 192 257.09c0 13.7 3.25 26.76 8.73 38.7l63.82 53.18c7.21 1.8 14.64 3.03 22.39 3.03 62.11 0 98.11-45.47 211.16-256.46 7.38-14.35 13.9-29.85 13.9-45.99C512 20.64 486 0 457.89 0z" ], + "paint-roller": [ 512, 512, [], "f5aa", "M416 128V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32h352c17.67 0 32-14.33 32-32zm32-64v128c0 17.67-14.33 32-32 32H256c-35.35 0-64 28.65-64 64v32c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32v-32h160c53.02 0 96-42.98 96-96v-64c0-35.35-28.65-64-64-64z" ], + palette: [ 512, 512, [], "f53f", "M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + pallet: [ 640, 512, [], "f482", "M144 256h352c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H384v128l-64-32-64 32V0H144c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16zm480 128c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v64H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-64h48zm-336 64H128v-64h160v64zm224 0H352v-64h160v64z" ], + "paper-plane": [ 512, 512, [], "f1d8", "M476 3.2L12.5 270.6c-18.1 10.4-15.8 35.6 2.2 43.2L121 358.4l287.3-253.2c5.5-4.9 13.3 2.6 8.6 8.3L176 407v80.5c0 23.6 28.5 32.9 42.5 15.8L282 426l124.6 52.2c14.2 6 30.4-2.9 33-18.2l72-432C515 7.8 493.3-6.8 476 3.2z" ], + paperclip: [ 448, 512, [], "f0c6", "M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z" ], + "parachute-box": [ 512, 512, [], "f4cd", "M511.9 175c-9.1-75.6-78.4-132.4-158.3-158.7C390 55.7 416 116.9 416 192h28.1L327.5 321.5c-2.5-.6-4.8-1.5-7.5-1.5h-48V192h112C384 76.8 315.1 0 256 0S128 76.8 128 192h112v128h-48c-2.7 0-5 .9-7.5 1.5L67.9 192H96c0-75.1 26-136.3 62.4-175.7C78.5 42.7 9.2 99.5.1 175c-1.1 9.1 6.8 17 16 17h8.7l136.7 151.9c-.7 2.6-1.6 5.2-1.6 8.1v128c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32V352c0-2.9-.9-5.4-1.6-8.1L487.1 192h8.7c9.3 0 17.2-7.8 16.1-17z" ], + paragraph: [ 448, 512, [], "f1dd", "M408 32H177.531C88.948 32 16.045 103.335 16 191.918 15.956 280.321 87.607 352 176 352v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h32v344c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V112h40c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24z" ], + parking: [ 448, 512, [], "f540", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM240 320h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h96c52.9 0 96 43.1 96 96s-43.1 96-96 96zm0-128h-48v64h48c17.6 0 32-14.4 32-32s-14.4-32-32-32z" ], + passport: [ 448, 512, [], "f5ab", "M129.62 176h39.09c1.49-27.03 6.54-51.35 14.21-70.41-27.71 13.24-48.02 39.19-53.3 70.41zm0 32c5.29 31.22 25.59 57.17 53.3 70.41-7.68-19.06-12.72-43.38-14.21-70.41h-39.09zM224 286.69c7.69-7.45 20.77-34.42 23.43-78.69h-46.87c2.67 44.26 15.75 71.24 23.44 78.69zM200.57 176h46.87c-2.66-44.26-15.74-71.24-23.43-78.69-7.7 7.45-20.78 34.43-23.44 78.69zm64.51 102.41c27.71-13.24 48.02-39.19 53.3-70.41h-39.09c-1.49 27.03-6.53 51.35-14.21 70.41zM416 0H64C28.65 0 0 28.65 0 64v384c0 35.35 28.65 64 64 64h352c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32zm-80 416H112c-8.8 0-16-7.2-16-16s7.2-16 16-16h224c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-112-96c-70.69 0-128-57.31-128-128S153.31 64 224 64s128 57.31 128 128-57.31 128-128 128zm41.08-214.41c7.68 19.06 12.72 43.38 14.21 70.41h39.09c-5.28-31.22-25.59-57.17-53.3-70.41z" ], + paste: [ 448, 512, [], "f0ea", "M128 184c0-30.879 25.122-56 56-56h136V56c0-13.255-10.745-24-24-24h-80.61C204.306 12.89 183.637 0 160 0s-44.306 12.89-55.39 32H24C10.745 32 0 42.745 0 56v336c0 13.255 10.745 24 24 24h104V184zm32-144c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24zm184 248h104v200c0 13.255-10.745 24-24 24H184c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.059V256h-96v-96h6.059a24 24 0 0 1 16.97 7.029l65.941 65.941a24.002 24.002 0 0 1 7.03 16.971z" ], + pause: [ 448, 512, [], "f04c", "M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z" ], + "pause-circle": [ 512, 512, [], "f28b", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-16 328c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160zm112 0c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160z" ], + paw: [ 512, 512, [], "f1b0", "M85.231 330.958C36 330.958 0 273.792 0 231.5c0-28.292 16-58.042 49.538-58.042 49.231 0 85.231 57.458 85.231 99.75 0 28.292-15.692 57.75-49.538 57.75zm348 106.167c0 37.042-32 42.875-63.385 42.875-41.231 0-74.462-26.25-113.846-26.25-41.231 0-76.308 25.958-120.923 25.958-29.847 0-56.308-9.625-56.308-42.583C78.769 368 180.616 265.333 256 265.333s177.231 102.959 177.231 171.792zM182.462 203.792c-49.847 0-80-59.5-80-100.333C102.462 70.792 120.308 32 160 32c50.154 0 80 59.5 80 100.333 0 32.667-17.846 71.459-57.538 71.459zM272 132.333C272 91.5 301.846 32 352 32c39.692 0 57.539 38.792 57.539 71.458 0 40.833-30.154 100.333-80.001 100.333C289.846 203.792 272 165 272 132.333zM512 231.5c0 42.292-36 99.458-85.231 99.458-33.847 0-49.538-29.458-49.538-57.75 0-42.291 35.999-99.75 85.231-99.75C496 173.458 512 203.208 512 231.5z" ], + pen: [ 512, 512, [], "f304", "M290.74 93.24l128.02 128.02-277.99 277.99-114.14 12.6C11.35 513.54-1.56 500.62.14 485.34l12.7-114.22 277.9-277.88zm207.2-19.06l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.76 18.75-49.16 0-67.91z" ], + "pen-alt": [ 512, 512, [], "f305", "M497.94 74.17l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91zm-246.8-20.53c-15.62-15.62-40.94-15.62-56.56 0L75.8 172.43c-6.25 6.25-6.25 16.38 0 22.62l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l101.82-101.82 22.63 22.62L93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l196.79-196.79-82.77-82.77-84.85-84.85z" ], + "pen-fancy": [ 512, 512, [], "f5ac", "M79.18 282.94a32.005 32.005 0 0 0-20.24 20.24L0 480l4.69 4.69 92.89-92.89c-.66-2.56-1.57-5.03-1.57-7.8 0-17.67 14.33-32 32-32s32 14.33 32 32-14.33 32-32 32c-2.77 0-5.24-.91-7.8-1.57l-92.89 92.89L32 512l176.82-58.94a31.983 31.983 0 0 0 20.24-20.24l33.07-84.07-98.88-98.88-84.07 33.07zM369.25 28.32L186.14 227.81l97.85 97.85 199.49-183.11C568.4 67.48 443.73-55.94 369.25 28.32z" ], + "pen-nib": [ 512, 512, [], "f5ad", "M136.6 138.79a64.003 64.003 0 0 0-43.31 41.35L0 460l14.69 14.69L164.8 324.58c-2.99-6.26-4.8-13.18-4.8-20.58 0-26.51 21.49-48 48-48s48 21.49 48 48-21.49 48-48 48c-7.4 0-14.32-1.81-20.58-4.8L37.31 497.31 52 512l279.86-93.29a64.003 64.003 0 0 0 41.35-43.31L416 224 288 96l-151.4 42.79zm361.34-64.62l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91z" ], + "pen-square": [ 448, 512, [], "f14b", "M400 480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zM238.1 177.9L102.4 313.6l-6.3 57.1c-.8 7.6 5.6 14.1 13.3 13.3l57.1-6.3L302.2 242c2.3-2.3 2.3-6.1 0-8.5L246.7 178c-2.5-2.4-6.3-2.4-8.6-.1zM345 165.1L314.9 135c-9.4-9.4-24.6-9.4-33.9 0l-23.1 23.1c-2.3 2.3-2.3 6.1 0 8.5l55.5 55.5c2.3 2.3 6.1 2.3 8.5 0L345 199c9.3-9.3 9.3-24.5 0-33.9z" ], + "pencil-alt": [ 512, 512, [], "f303", "M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z" ], + "pencil-ruler": [ 512, 512, [], "f5ae", "M109.46 244.04l134.58-134.56-44.12-44.12-61.68 61.68a7.919 7.919 0 0 1-11.21 0l-11.21-11.21c-3.1-3.1-3.1-8.12 0-11.21l61.68-61.68-33.64-33.65C131.47-3.1 111.39-3.1 99 9.29L9.29 99c-12.38 12.39-12.39 32.47 0 44.86l100.17 100.18zm388.47-116.8c18.76-18.76 18.75-49.17 0-67.93l-45.25-45.25c-18.76-18.76-49.18-18.76-67.95 0l-46.02 46.01 113.2 113.2 46.02-46.03zM316.08 82.71l-297 296.96L.32 487.11c-2.53 14.49 10.09 27.11 24.59 24.56l107.45-18.84L429.28 195.9 316.08 82.71zm186.63 285.43l-33.64-33.64-61.68 61.68c-3.1 3.1-8.12 3.1-11.21 0l-11.21-11.21c-3.09-3.1-3.09-8.12 0-11.21l61.68-61.68-44.14-44.14L267.93 402.5l100.21 100.2c12.39 12.39 32.47 12.39 44.86 0l89.71-89.7c12.39-12.39 12.39-32.47 0-44.86z" ], + "people-carry": [ 640, 512, [], "f4ce", "M128 96c26.5 0 48-21.5 48-48S154.5 0 128 0 80 21.5 80 48s21.5 48 48 48zm384 0c26.5 0 48-21.5 48-48S538.5 0 512 0s-48 21.5-48 48 21.5 48 48 48zm125.7 372.1l-44-110-41.1 46.4-2 18.2 27.7 69.2c5 12.5 17 20.1 29.7 20.1 4 0 8-.7 11.9-2.3 16.4-6.6 24.4-25.2 17.8-41.6zm-34.2-209.8L585 178.1c-4.6-20-18.6-36.8-37.5-44.9-18.5-8-39-6.7-56.1 3.3-22.7 13.4-39.7 34.5-48.1 59.4L432 229.8 416 240v-96c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16v96l-16.1-10.2-11.3-33.9c-8.3-25-25.4-46-48.1-59.4-17.2-10-37.6-11.3-56.1-3.3-18.9 8.1-32.9 24.9-37.5 44.9l-18.4 80.2c-4.6 20 .7 41.2 14.4 56.7l67.2 75.9 10.1 92.6C130 499.8 143.8 512 160 512c1.2 0 2.3-.1 3.5-.2 17.6-1.9 30.2-17.7 28.3-35.3l-10.1-92.8c-1.5-13-6.9-25.1-15.6-35l-43.3-49 17.6-70.3 6.8 20.4c4.1 12.5 11.9 23.4 24.5 32.6l51.1 32.5c4.6 2.9 12.1 4.6 17.2 5h160c5.1-.4 12.6-2.1 17.2-5l51.1-32.5c12.6-9.2 20.4-20 24.5-32.6l6.8-20.4 17.6 70.3-43.3 49c-8.7 9.9-14.1 22-15.6 35l-10.1 92.8c-1.9 17.6 10.8 33.4 28.3 35.3 1.2.1 2.3.2 3.5.2 16.1 0 30-12.1 31.8-28.5l10.1-92.6 67.2-75.9c13.6-15.5 19-36.7 14.4-56.7zM46.3 358.1l-44 110c-6.6 16.4 1.4 35 17.8 41.6 16.8 6.6 35.1-1.7 41.6-17.8l27.7-69.2-2-18.2-41.1-46.4z" ], + percent: [ 448, 512, [], "f295", "M112 224c61.9 0 112-50.1 112-112S173.9 0 112 0 0 50.1 0 112s50.1 112 112 112zm0-160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm224 224c-61.9 0-112 50.1-112 112s50.1 112 112 112 112-50.1 112-112-50.1-112-112-112zm0 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zM392.3.2l31.6-.1c19.4-.1 30.9 21.8 19.7 37.8L77.4 501.6a23.95 23.95 0 0 1-19.6 10.2l-33.4.1c-19.5 0-30.9-21.9-19.7-37.8l368-463.7C377.2 4 384.5.2 392.3.2z" ], + percentage: [ 384, 512, [], "f541", "M109.25 173.25c24.99-24.99 24.99-65.52 0-90.51-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 25 25 65.52 25 90.51 0zm256 165.49c-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 24.99 24.99 65.52 24.99 90.51 0 25-24.99 25-65.51 0-90.51zm-1.94-231.43l-22.62-22.62c-12.5-12.5-32.76-12.5-45.25 0L20.69 359.44c-12.5 12.5-12.5 32.76 0 45.25l22.62 22.62c12.5 12.5 32.76 12.5 45.25 0l274.75-274.75c12.5-12.49 12.5-32.75 0-45.25z" ], + phone: [ 512, 512, [], "f095", "M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z" ], + "phone-slash": [ 640, 512, [], "f3dd", "M268.2 381.4l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48c-10.7 4.6-16.5 16.1-13.9 27.5l24 104c2.5 10.8 12.1 18.6 23.4 18.6 100.7 0 193.7-32.4 269.7-86.9l-80-61.8c-10.9 6.5-22.1 12.7-33.6 18.1zm365.6 76.7L475.1 335.5C537.9 256.4 576 156.9 576 48c0-11.2-7.7-20.9-18.6-23.4l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-12.2 26.1-27.9 50.3-46 72.8L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z" ], + "phone-square": [ 448, 512, [], "f098", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM94 416c-7.033 0-13.057-4.873-14.616-11.627l-14.998-65a15 15 0 0 1 8.707-17.16l69.998-29.999a15 15 0 0 1 17.518 4.289l30.997 37.885c48.944-22.963 88.297-62.858 110.781-110.78l-37.886-30.997a15.001 15.001 0 0 1-4.289-17.518l30-69.998a15 15 0 0 1 17.16-8.707l65 14.998A14.997 14.997 0 0 1 384 126c0 160.292-129.945 290-290 290z" ], + "phone-volume": [ 384, 512, [], "f2a0", "M97.333 506.966c-129.874-129.874-129.681-340.252 0-469.933 5.698-5.698 14.527-6.632 21.263-2.422l64.817 40.513a17.187 17.187 0 0 1 6.849 20.958l-32.408 81.021a17.188 17.188 0 0 1-17.669 10.719l-55.81-5.58c-21.051 58.261-20.612 122.471 0 179.515l55.811-5.581a17.188 17.188 0 0 1 17.669 10.719l32.408 81.022a17.188 17.188 0 0 1-6.849 20.958l-64.817 40.513a17.19 17.19 0 0 1-21.264-2.422zM247.126 95.473c11.832 20.047 11.832 45.008 0 65.055-3.95 6.693-13.108 7.959-18.718 2.581l-5.975-5.726c-3.911-3.748-4.793-9.622-2.261-14.41a32.063 32.063 0 0 0 0-29.945c-2.533-4.788-1.65-10.662 2.261-14.41l5.975-5.726c5.61-5.378 14.768-4.112 18.718 2.581zm91.787-91.187c60.14 71.604 60.092 175.882 0 247.428-4.474 5.327-12.53 5.746-17.552.933l-5.798-5.557c-4.56-4.371-4.977-11.529-.93-16.379 49.687-59.538 49.646-145.933 0-205.422-4.047-4.85-3.631-12.008.93-16.379l5.798-5.557c5.022-4.813 13.078-4.394 17.552.933zm-45.972 44.941c36.05 46.322 36.108 111.149 0 157.546-4.39 5.641-12.697 6.251-17.856 1.304l-5.818-5.579c-4.4-4.219-4.998-11.095-1.285-15.931 26.536-34.564 26.534-82.572 0-117.134-3.713-4.836-3.115-11.711 1.285-15.931l5.818-5.579c5.159-4.947 13.466-4.337 17.856 1.304z" ], + "piggy-bank": [ 576, 512, [], "f4d3", "M560 224h-29.5c-8.8-20-21.6-37.7-37.4-52.5L512 96h-32c-29.4 0-55.4 13.5-73 34.3-7.6-1.1-15.1-2.3-23-2.3H256c-77.4 0-141.9 55-156.8 128H56c-14.8 0-26.5-13.5-23.5-28.8C34.7 215.8 45.4 208 57 208h1c3.3 0 6-2.7 6-6v-20c0-3.3-2.7-6-6-6-28.5 0-53.9 20.4-57.5 48.6C-3.9 258.8 22.7 288 56 288h40c0 52.2 25.4 98.1 64 127.3V496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-48h128v48c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80.7c11.8-8.9 22.3-19.4 31.3-31.3H560c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16zm-128 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM256 96h128c5.4 0 10.7.4 15.9.8 0-.3.1-.5.1-.8 0-53-43-96-96-96s-96 43-96 96c0 2.1.5 4.1.6 6.2 15.2-3.9 31-6.2 47.4-6.2z" ], + pills: [ 576, 512, [], "f484", "M112 32C50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V144c0-61.9-50.1-112-112-112zm48 224H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm139.7-29.7c-3.5-3.5-9.4-3.1-12.3.8-45.3 62.5-40.4 150.1 15.9 206.4 56.3 56.3 143.9 61.2 206.4 15.9 4-2.9 4.3-8.8.8-12.3L299.7 226.3zm229.8-19c-56.3-56.3-143.9-61.2-206.4-15.9-4 2.9-4.3 8.8-.8 12.3l210.8 210.8c3.5 3.5 9.4 3.1 12.3-.8 45.3-62.6 40.5-150.1-15.9-206.4z" ], + plane: [ 576, 512, [], "f072", "M480 192H365.71L260.61 8.06A16.014 16.014 0 0 0 246.71 0h-65.5c-10.63 0-18.3 10.17-15.38 20.39L214.86 192H112l-43.2-57.6c-3.02-4.03-7.77-6.4-12.8-6.4H16.01C5.6 128-2.04 137.78.49 147.88L32 256 .49 364.12C-2.04 374.22 5.6 384 16.01 384H56c5.04 0 9.78-2.37 12.8-6.4L112 320h102.86l-49.03 171.6c-2.92 10.22 4.75 20.4 15.38 20.4h65.5c5.74 0 11.04-3.08 13.89-8.06L365.71 320H480c35.35 0 96-28.65 96-64s-60.65-64-96-64z" ], + "plane-arrival": [ 640, 512, [], "f5af", "M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM44.81 205.66l88.74 80a62.607 62.607 0 0 0 25.47 13.93l287.6 78.35c26.48 7.21 54.56 8.72 81 1.36 29.67-8.27 43.44-21.21 47.25-35.71 3.83-14.5-1.73-32.71-23.37-54.96-19.28-19.82-44.35-32.79-70.83-40l-97.51-26.56L282.8 30.22c-1.51-5.81-5.95-10.35-11.66-11.91L206.05.58c-10.56-2.88-20.9 5.32-20.71 16.44l47.92 164.21-102.2-27.84-27.59-67.88c-1.93-4.89-6.01-8.57-11.02-9.93L52.72 64.75c-10.34-2.82-20.53 5-20.72 15.88l.23 101.78c.19 8.91 6.03 17.34 12.58 23.25z" ], + "plane-departure": [ 640, 512, [], "f5b0", "M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM80.55 341.27c6.28 6.84 15.1 10.72 24.33 10.71l130.54-.18a65.62 65.62 0 0 0 29.64-7.12l290.96-147.65c26.74-13.57 50.71-32.94 67.02-58.31 18.31-28.48 20.3-49.09 13.07-63.65-7.21-14.57-24.74-25.27-58.25-27.45-29.85-1.94-59.54 5.92-86.28 19.48l-98.51 49.99-218.7-82.06a17.799 17.799 0 0 0-18-1.11L90.62 67.29c-10.67 5.41-13.25 19.65-5.17 28.53l156.22 98.1-103.21 52.38-72.35-36.47a17.804 17.804 0 0 0-16.07.02L9.91 230.22c-10.44 5.3-13.19 19.12-5.57 28.08l76.21 82.97z" ], + play: [ 448, 512, [], "f04b", "M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z" ], + "play-circle": [ 512, 512, [], "f144", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z" ], + plug: [ 384, 512, [], "f1e6", "M256 144V32c0-17.673 14.327-32 32-32s32 14.327 32 32v112h-64zm112 16H16c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h16v32c0 77.406 54.969 141.971 128 156.796V512h64v-99.204c73.031-14.825 128-79.39 128-156.796v-32h16c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16zm-240-16V32c0-17.673-14.327-32-32-32S64 14.327 64 32v112h64z" ], + plus: [ 448, 512, [], "f067", "M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" ], + "plus-circle": [ 512, 512, [], "f055", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z" ], + "plus-square": [ 448, 512, [], "f0fe", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-32 252c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92H92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z" ], + podcast: [ 448, 512, [], "f2ce", "M267.429 488.563C262.286 507.573 242.858 512 224 512c-18.857 0-38.286-4.427-43.428-23.437C172.927 460.134 160 388.898 160 355.75c0-35.156 31.142-43.75 64-43.75s64 8.594 64 43.75c0 32.949-12.871 104.179-20.571 132.813zM156.867 288.554c-18.693-18.308-29.958-44.173-28.784-72.599 2.054-49.724 42.395-89.956 92.124-91.881C274.862 121.958 320 165.807 320 220c0 26.827-11.064 51.116-28.866 68.552-2.675 2.62-2.401 6.986.628 9.187 9.312 6.765 16.46 15.343 21.234 25.363 1.741 3.654 6.497 4.66 9.449 1.891 28.826-27.043 46.553-65.783 45.511-108.565-1.855-76.206-63.595-138.208-139.793-140.369C146.869 73.753 80 139.215 80 220c0 41.361 17.532 78.7 45.55 104.989 2.953 2.771 7.711 1.77 9.453-1.887 4.774-10.021 11.923-18.598 21.235-25.363 3.029-2.2 3.304-6.566.629-9.185zM224 0C100.204 0 0 100.185 0 224c0 89.992 52.602 165.647 125.739 201.408 4.333 2.118 9.267-1.544 8.535-6.31-2.382-15.512-4.342-30.946-5.406-44.339-.146-1.836-1.149-3.486-2.678-4.512-47.4-31.806-78.564-86.016-78.187-147.347.592-96.237 79.29-174.648 175.529-174.899C320.793 47.747 400 126.797 400 224c0 61.932-32.158 116.49-80.65 147.867-.999 14.037-3.069 30.588-5.624 47.23-.732 4.767 4.203 8.429 8.535 6.31C395.227 389.727 448 314.187 448 224 448 100.205 347.815 0 224 0zm0 160c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z" ], + poo: [ 512, 512, [], "f2fe", "M451.4 369.1C468.7 356 480 335.4 480 312c0-39.8-32.2-72-72-72h-14.1c13.4-11.7 22.1-28.8 22.1-48 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C250.3 14.6 256 30.6 256 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 19.2 8.7 36.3 22.1 48H104c-39.8 0-72 32.2-72 72 0 23.4 11.3 44 28.6 57.1C26.3 374.6 0 404.1 0 440c0 39.8 32.2 72 72 72h368c39.8 0 72-32.2 72-72 0-35.9-26.3-65.4-60.6-70.9zM192 256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm159.5 139C341 422.9 293 448 256 448s-85-25.1-95.5-53c-2-5.3 2-11 7.8-11h175.4c5.8 0 9.8 5.7 7.8 11zM320 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + portrait: [ 384, 512, [], "f3e0", "M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM192 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 384 80 375.4 80 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z" ], + "pound-sign": [ 320, 512, [], "f154", "M308 352h-45.495c-6.627 0-12 5.373-12 12v50.848H128V288h84c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-84v-63.556c0-32.266 24.562-57.086 61.792-57.086 23.658 0 45.878 11.505 57.652 18.849 5.151 3.213 11.888 2.051 15.688-2.685l28.493-35.513c4.233-5.276 3.279-13.005-2.119-17.081C273.124 54.56 236.576 32 187.931 32 106.026 32 48 84.742 48 157.961V224H20c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h28v128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12V364c0-6.627-5.373-12-12-12z" ], + "power-off": [ 512, 512, [], "f011", "M400 54.1c63 45 104 118.6 104 201.9 0 136.8-110.8 247.7-247.5 248C120 504.3 8.2 393 8 256.4 7.9 173.1 48.9 99.3 111.8 54.2c11.7-8.3 28-4.8 35 7.7L162.6 90c5.9 10.5 3.1 23.8-6.6 31-41.5 30.8-68 79.6-68 134.9-.1 92.3 74.5 168.1 168 168.1 91.6 0 168.6-74.2 168-169.1-.3-51.8-24.7-101.8-68.1-134-9.7-7.2-12.4-20.5-6.5-30.9l15.8-28.1c7-12.4 23.2-16.1 34.8-7.8zM296 264V24c0-13.3-10.7-24-24-24h-32c-13.3 0-24 10.7-24 24v240c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24z" ], + prescription: [ 384, 512, [], "f5b1", "M301.26 352l78.06-78.06c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0L256 306.74l-83.96-83.96C219.31 216.8 256 176.89 256 128c0-53.02-42.98-96-96-96H16C7.16 32 0 39.16 0 48v256c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-80h18.75l128 128-78.06 78.06c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0L256 397.25l78.06 78.06c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63L301.26 352zM64 96h96c17.64 0 32 14.36 32 32s-14.36 32-32 32H64V96z" ], + "prescription-bottle": [ 384, 512, [], "f485", "M32 192h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v64zM360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24z" ], + "prescription-bottle-alt": [ 384, 512, [], "f486", "M360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24zM32 480c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v352zm64-184c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48z" ], + print: [ 512, 512, [], "f02f", "M464 192h-16V81.941a24 24 0 0 0-7.029-16.97L383.029 7.029A24 24 0 0 0 366.059 0H88C74.745 0 64 10.745 64 24v168H48c-26.51 0-48 21.49-48 48v132c0 6.627 5.373 12 12 12h52v104c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V384h52c6.627 0 12-5.373 12-12V240c0-26.51-21.49-48-48-48zm-80 256H128v-96h256v96zM128 224V64h192v40c0 13.2 10.8 24 24 24h40v96H128zm304 72c-13.254 0-24-10.746-24-24s10.746-24 24-24 24 10.746 24 24-10.746 24-24 24z" ], + procedures: [ 640, 512, [], "f487", "M528 224H272c-8.8 0-16 7.2-16 16v144H64V144c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v352c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h512v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-61.9-50.1-112-112-112zM136 96h126.1l27.6 55.2c5.9 11.8 22.7 11.8 28.6 0L368 51.8 390.1 96H512c8.8 0 16-7.2 16-16s-7.2-16-16-16H409.9L382.3 8.8C376.4-3 359.6-3 353.7 8.8L304 108.2l-19.9-39.8c-1.4-2.7-4.1-4.4-7.2-4.4H136c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm24 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z" ], + "project-diagram": [ 640, 512, [], "f542", "M384 320H256c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM192 32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v128c0 17.67 14.33 32 32 32h95.72l73.16 128.04C211.98 300.98 232.4 288 256 288h.28L192 175.51V128h224V64H192V32zM608 0H480c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32z" ], + "puzzle-piece": [ 576, 512, [], "f12e", "M519.442 288.651c-41.519 0-59.5 31.593-82.058 31.593C377.409 320.244 432 144 432 144s-196.288 80-196.288-3.297c0-35.827 36.288-46.25 36.288-85.985C272 19.216 243.885 0 210.539 0c-34.654 0-66.366 18.891-66.366 56.346 0 41.364 31.711 59.277 31.711 81.75C175.885 207.719 0 166.758 0 166.758v333.237s178.635 41.047 178.635-28.662c0-22.473-40-40.107-40-81.471 0-37.456 29.25-56.346 63.577-56.346 33.673 0 61.788 19.216 61.788 54.717 0 39.735-36.288 50.158-36.288 85.985 0 60.803 129.675 25.73 181.23 25.73 0 0-34.725-120.101 25.827-120.101 35.962 0 46.423 36.152 86.308 36.152C556.712 416 576 387.99 576 354.443c0-34.199-18.962-65.792-56.558-65.792z" ], + qrcode: [ 448, 512, [], "f029", "M0 224h192V32H0v192zM64 96h64v64H64V96zm192-64v192h192V32H256zm128 128h-64V96h64v64zM0 480h192V288H0v192zm64-128h64v64H64v-64zm352-64h32v128h-96v-32h-32v96h-64V288h96v32h64v-32zm0 160h32v32h-32v-32zm-64 0h32v32h-32v-32z" ], + question: [ 384, 512, [], "f128", "M202.021 0C122.202 0 70.503 32.703 29.914 91.026c-7.363 10.58-5.093 25.086 5.178 32.874l43.138 32.709c10.373 7.865 25.132 6.026 33.253-4.148 25.049-31.381 43.63-49.449 82.757-49.449 30.764 0 68.816 19.799 68.816 49.631 0 22.552-18.617 34.134-48.993 51.164-35.423 19.86-82.299 44.576-82.299 106.405V320c0 13.255 10.745 24 24 24h72.471c13.255 0 24-10.745 24-24v-5.773c0-42.86 125.268-44.645 125.268-160.627C377.504 66.256 286.902 0 202.021 0zM192 373.459c-38.196 0-69.271 31.075-69.271 69.271 0 38.195 31.075 69.27 69.271 69.27s69.271-31.075 69.271-69.271-31.075-69.27-69.271-69.27z" ], + "question-circle": [ 512, 512, [], "f059", "M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z" ], + quidditch: [ 640, 512, [], "f458", "M256.5 216.8L343.2 326s-16.6 102.4-76.6 150.1C206.7 523.8 0 510.2 0 510.2s3.8-23.1 11-55.4l94.6-112.2c4-4.7-.9-11.6-6.6-9.5l-60.4 22.1c14.4-41.7 32.7-80 54.6-97.5 59.9-47.8 163.3-40.9 163.3-40.9zm238 135c-44 0-79.8 35.8-79.8 79.9 0 44.1 35.7 79.9 79.8 79.9 44.1 0 79.8-35.8 79.8-79.9 0-44.2-35.8-79.9-79.8-79.9zM636.5 31L616.7 6c-5.5-6.9-15.5-8-22.4-2.6L361.8 181.3l-34.1-43c-5.1-6.4-15.1-5.2-18.6 2.2l-25.3 54.6 86.7 109.2 58.8-12.4c8-1.7 11.4-11.2 6.3-17.6l-34.1-42.9L634 53.5c6.9-5.5 8-15.6 2.5-22.5z" ], + "quote-left": [ 512, 512, [], "f10d", "M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z" ], + "quote-right": [ 512, 512, [], "f10e", "M464 32H336c-26.5 0-48 21.5-48 48v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48zm-288 0H48C21.5 32 0 53.5 0 80v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48z" ], + random: [ 512, 512, [], "f074", "M504.971 359.029c9.373 9.373 9.373 24.569 0 33.941l-80 79.984c-15.01 15.01-40.971 4.49-40.971-16.971V416h-58.785a12.004 12.004 0 0 1-8.773-3.812l-70.556-75.596 53.333-57.143L352 336h32v-39.981c0-21.438 25.943-31.998 40.971-16.971l80 79.981zM12 176h84l52.781 56.551 53.333-57.143-70.556-75.596A11.999 11.999 0 0 0 122.785 96H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12zm372 0v39.984c0 21.46 25.961 31.98 40.971 16.971l80-79.984c9.373-9.373 9.373-24.569 0-33.941l-80-79.981C409.943 24.021 384 34.582 384 56.019V96h-58.785a12.004 12.004 0 0 0-8.773 3.812L96 336H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h110.785c3.326 0 6.503-1.381 8.773-3.812L352 176h32z" ], + receipt: [ 384, 512, [], "f543", "M358.4 3.2L320 48 265.6 3.2a15.9 15.9 0 0 0-19.2 0L192 48 137.6 3.2a15.9 15.9 0 0 0-19.2 0L64 48 25.6 3.2C15-4.7 0 2.8 0 16v480c0 13.2 15 20.7 25.6 12.8L64 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L192 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L320 464l38.4 44.8c10.5 7.9 25.6.4 25.6-12.8V16c0-13.2-15-20.7-25.6-12.8zM320 360c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16z" ], + recycle: [ 512, 512, [], "f1b8", "M184.561 261.903c3.232 13.997-12.123 24.635-24.068 17.168l-40.736-25.455-50.867 81.402C55.606 356.273 70.96 384 96.012 384H148c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12H96.115c-75.334 0-121.302-83.048-81.408-146.88l50.822-81.388-40.725-25.448c-12.081-7.547-8.966-25.961 4.879-29.158l110.237-25.45c8.611-1.988 17.201 3.381 19.189 11.99l25.452 110.237zm98.561-182.915l41.289 66.076-40.74 25.457c-12.051 7.528-9 25.953 4.879 29.158l110.237 25.45c8.672 1.999 17.215-3.438 19.189-11.99l25.45-110.237c3.197-13.844-11.99-24.719-24.068-17.168l-40.687 25.424-41.263-66.082c-37.521-60.033-125.209-60.171-162.816 0l-17.963 28.766c-3.51 5.62-1.8 13.021 3.82 16.533l33.919 21.195c5.62 3.512 13.024 1.803 16.536-3.817l17.961-28.743c12.712-20.341 41.973-19.676 54.257-.022zM497.288 301.12l-27.515-44.065c-3.511-5.623-10.916-7.334-16.538-3.821l-33.861 21.159c-5.62 3.512-7.33 10.915-3.818 16.536l27.564 44.112c13.257 21.211-2.057 48.96-27.136 48.96H320V336.02c0-14.213-17.242-21.383-27.313-11.313l-80 79.981c-6.249 6.248-6.249 16.379 0 22.627l80 79.989C302.689 517.308 320 510.3 320 495.989V448h95.88c75.274 0 121.335-82.997 81.408-146.88z" ], + redo: [ 512, 512, [], "f01e", "M500.333 0h-47.411c-6.853 0-12.314 5.729-11.986 12.574l3.966 82.759C399.416 41.899 331.672 8 256.001 8 119.34 8 7.899 119.526 8 256.187 8.101 393.068 119.096 504 256 504c63.926 0 122.202-24.187 166.178-63.908 5.113-4.618 5.354-12.561.482-17.433l-33.971-33.971c-4.466-4.466-11.64-4.717-16.38-.543C341.308 415.448 300.606 432 256 432c-97.267 0-176-78.716-176-176 0-97.267 78.716-176 176-176 60.892 0 114.506 30.858 146.099 77.8l-101.525-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12z" ], + "redo-alt": [ 512, 512, [], "f2f9", "M256.455 8c66.269.119 126.437 26.233 170.859 68.685l35.715-35.715C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.75c-30.864-28.899-70.801-44.907-113.23-45.273-92.398-.798-170.283 73.977-169.484 169.442C88.764 348.009 162.184 424 256 424c41.127 0 79.997-14.678 110.629-41.556 4.743-4.161 11.906-3.908 16.368.553l39.662 39.662c4.872 4.872 4.631 12.815-.482 17.433C378.202 479.813 319.926 504 256 504 119.034 504 8.001 392.967 8 256.002 7.999 119.193 119.646 7.755 256.455 8z" ], + registered: [ 512, 512, [], "f25d", "M285.363 207.475c0 18.6-9.831 28.431-28.431 28.431h-29.876v-56.14h23.378c28.668 0 34.929 8.773 34.929 27.709zM504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM363.411 360.414c-46.729-84.825-43.299-78.636-44.702-80.98 23.432-15.172 37.945-42.979 37.945-74.486 0-54.244-31.5-89.252-105.498-89.252h-70.667c-13.255 0-24 10.745-24 24V372c0 13.255 10.745 24 24 24h22.567c13.255 0 24-10.745 24-24v-71.663h25.556l44.129 82.937a24.001 24.001 0 0 0 21.188 12.727h24.464c18.261-.001 29.829-19.591 21.018-35.587z" ], + reply: [ 512, 512, [], "f3e5", "M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z" ], + "reply-all": [ 576, 512, [], "f122", "M136.309 189.836L312.313 37.851C327.72 24.546 352 35.348 352 56.015v82.763c129.182 10.231 224 52.212 224 183.548 0 61.441-39.582 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 38.512-123.162-3.922-169.482-112.59-182.015v84.175c0 20.701-24.3 31.453-39.687 18.164L136.309 226.164c-11.071-9.561-11.086-26.753 0-36.328zm-128 36.328L184.313 378.15C199.7 391.439 224 380.687 224 359.986v-15.818l-108.606-93.785A55.96 55.96 0 0 1 96 207.998a55.953 55.953 0 0 1 19.393-42.38L224 71.832V56.015c0-20.667-24.28-31.469-39.687-18.164L8.309 189.836c-11.086 9.575-11.071 26.767 0 36.328z" ], + retweet: [ 640, 512, [], "f079", "M629.657 343.598L528.971 444.284c-9.373 9.372-24.568 9.372-33.941 0L394.343 343.598c-9.373-9.373-9.373-24.569 0-33.941l10.823-10.823c9.562-9.562 25.133-9.34 34.419.492L480 342.118V160H292.451a24.005 24.005 0 0 1-16.971-7.029l-16-16C244.361 121.851 255.069 96 276.451 96H520c13.255 0 24 10.745 24 24v222.118l40.416-42.792c9.285-9.831 24.856-10.054 34.419-.492l10.823 10.823c9.372 9.372 9.372 24.569-.001 33.941zm-265.138 15.431A23.999 23.999 0 0 0 347.548 352H160V169.881l40.416 42.792c9.286 9.831 24.856 10.054 34.419.491l10.822-10.822c9.373-9.373 9.373-24.569 0-33.941L144.971 67.716c-9.373-9.373-24.569-9.373-33.941 0L10.343 168.402c-9.373 9.373-9.373 24.569 0 33.941l10.822 10.822c9.562 9.562 25.133 9.34 34.419-.491L96 169.881V392c0 13.255 10.745 24 24 24h243.549c21.382 0 32.09-25.851 16.971-40.971l-16.001-16z" ], + ribbon: [ 448, 512, [], "f4d6", "M6.1 444.3c-9.6 10.8-7.5 27.6 4.5 35.7l68.8 27.9c9.9 6.7 23.3 5 31.3-3.8l91.8-101.9-79.2-87.9-117.2 130zm435.8 0s-292-324.6-295.4-330.1c15.4-8.4 40.2-17.9 77.5-17.9s62.1 9.5 77.5 17.9c-3.3 5.6-56 64.6-56 64.6l79.1 87.7 34.2-38c28.7-31.9 33.3-78.6 11.4-115.5l-43.7-73.5c-4.3-7.2-9.9-13.3-16.8-18-40.7-27.6-127.4-29.7-171.4 0-6.9 4.7-12.5 10.8-16.8 18l-43.6 73.2c-1.5 2.5-37.1 62.2 11.5 116L337.5 504c8 8.9 21.4 10.5 31.3 3.8l68.8-27.9c11.9-8 14-24.8 4.3-35.6z" ], + road: [ 576, 512, [], "f018", "M567.3 383.6L429.9 78.2C426 69.5 417.4 64 408 64h-96.1l1.9 18.8c.7 7.1-4.8 13.2-11.9 13.2H274c-7.1 0-12.7-6.2-11.9-13.2L264 64h-96c-9.4 0-18 5.5-21.9 14.2L8.7 383.6C3.2 395.8 0 409.6 0 424c0 13.3 10.7 24 24 24h213.6c-7.1 0-12.7-6.2-11.9-13.2l10.8-104c.6-6.1 5.8-10.8 11.9-10.8h79.2c6.1 0 11.3 4.6 11.9 10.8l10.8 104c.7 7.1-4.8 13.2-11.9 13.2H552c13.2 0 24-10.7 24-24 0-13.9-3-27.7-8.7-40.4zM254.7 154.8l3.3-32c.6-6.1 5.8-10.8 11.9-10.8h36.2c6.1 0 11.3 4.6 11.9 10.8l3.3 32c.7 7.1-4.8 13.2-11.9 13.2h-42.8c-7.1 0-12.7-6.2-11.9-13.2zM321.8 288h-67.6c-7.1 0-12.7-6.2-11.9-13.2l7.4-72c.6-6.1 5.8-10.8 11.9-10.8h52.7c6.1 0 11.3 4.6 11.9 10.8l7.4 72c.9 7-4.7 13.2-11.8 13.2z" ], + robot: [ 640, 512, [], "f544", "M0 256v128c0 17.7 14.3 32 32 32h32V224H32c-17.7 0-32 14.3-32 32zM464 96H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H176c-44.2 0-80 35.8-80 80v272c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V176c0-44.2-35.8-80-80-80zM256 416h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm128 120h-64v-32h64v32zm96 0h-64v-32h64v32zm-32-120c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40zm192-72h-32v192h32c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32z" ], + rocket: [ 512, 512, [], "f135", "M505.1 19.1C503.8 13 499 8.2 492.9 6.9 460.7 0 435.5 0 410.4 0 307.2 0 245.3 55.2 199.1 128H94.9c-18.2 0-34.8 10.3-42.9 26.5L2.6 253.3c-8 16 3.6 34.7 21.5 34.7h95.1c-5.9 12.8-11.9 25.5-18 37.7-3.1 6.2-1.9 13.6 3 18.5l63.6 63.6c4.9 4.9 12.3 6.1 18.5 3 12.2-6.1 24.9-12 37.7-17.9V488c0 17.8 18.8 29.4 34.7 21.5l98.7-49.4c16.3-8.1 26.5-24.8 26.5-42.9V312.8c72.6-46.3 128-108.4 128-211.1.1-25.2.1-50.4-6.8-82.6zM400 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z" ], + rss: [ 448, 512, [], "f09e", "M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z" ], + "rss-square": [ 448, 512, [], "f143", "M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM112 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm157.533 0h-34.335c-6.011 0-11.051-4.636-11.442-10.634-5.214-80.05-69.243-143.92-149.123-149.123-5.997-.39-10.633-5.431-10.633-11.441v-34.335c0-6.535 5.468-11.777 11.994-11.425 110.546 5.974 198.997 94.536 204.964 204.964.352 6.526-4.89 11.994-11.425 11.994zm103.027 0h-34.334c-6.161 0-11.175-4.882-11.427-11.038-5.598-136.535-115.204-246.161-251.76-251.76C68.882 152.949 64 147.935 64 141.774V107.44c0-6.454 5.338-11.664 11.787-11.432 167.83 6.025 302.21 141.191 308.205 308.205.232 6.449-4.978 11.787-11.432 11.787z" ], + "ruble-sign": [ 384, 512, [], "f158", "M239.36 320C324.48 320 384 260.542 384 175.071S324.48 32 239.36 32H76c-6.627 0-12 5.373-12 12v206.632H12c-6.627 0-12 5.373-12 12V308c0 6.627 5.373 12 12 12h52v32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v52c0 6.627 5.373 12 12 12h58.56c6.627 0 12-5.373 12-12v-52H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H146.56v-32h92.8zm-92.8-219.252h78.72c46.72 0 74.88 29.11 74.88 74.323 0 45.832-28.16 75.561-76.16 75.561h-77.44V100.748z" ], + ruler: [ 640, 512, [], "f545", "M635.7 167.2L556.1 31.7c-8.8-15-28.3-20.1-43.5-11.5l-69 39.1L503.3 161c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L416 75l-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L333.2 122 278 153.3 337.8 255c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-59.7-101.7-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-27.9-47.5-55.2 31.3 59.7 101.7c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L84.9 262.9l-69 39.1C.7 310.7-4.6 329.8 4.2 344.8l79.6 135.6c8.8 15 28.3 20.1 43.5 11.5L624.1 210c15.2-8.6 20.4-27.8 11.6-42.8z" ], + "ruler-combined": [ 512, 512, [], "f546", "M160 288h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56v-64h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56V96h-56c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8h56V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 2.77.91 5.24 1.57 7.8L160 329.38V288zm320 64h-32v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-41.37L24.2 510.43c2.56.66 5.04 1.57 7.8 1.57h448c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z" ], + "ruler-horizontal": [ 576, 512, [], "f547", "M544 128h-48v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8H88c-4.42 0-8-3.58-8-8v-88H32c-17.67 0-32 14.33-32 32v192c0 17.67 14.33 32 32 32h512c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32z" ], + "ruler-vertical": [ 256, 512, [], "f548", "M168 416c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 17.67 14.33 32 32 32h192c17.67 0 32-14.33 32-32v-64h-88z" ], + "rupee-sign": [ 320, 512, [], "f156", "M308 96c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v44.748c0 6.627 5.373 12 12 12h85.28c27.308 0 48.261 9.958 60.97 27.252H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h158.757c-6.217 36.086-32.961 58.632-74.757 58.632H12c-6.627 0-12 5.373-12 12v53.012c0 3.349 1.4 6.546 3.861 8.818l165.052 152.356a12.001 12.001 0 0 0 8.139 3.182h82.562c10.924 0 16.166-13.408 8.139-20.818L116.871 319.906c76.499-2.34 131.144-53.395 138.318-127.906H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-58.69c-3.486-11.541-8.28-22.246-14.252-32H308z" ], + "sad-cry": [ 496, 512, [], "f5b3", "M248 8C111 8 0 119 0 256c0 90.1 48.2 168.7 120 212.1V288c0-8.8 7.2-16 16-16s16 7.2 16 16v196.7c29.5 12.4 62 19.3 96 19.3s66.5-6.9 96-19.3V288c0-8.8 7.2-16 16-16s16 7.2 16 16v180.1C447.8 424.7 496 346 496 256 496 119 385 8 248 8zm-65.5 216.5c-14.8-13.2-46.2-13.2-61 0L112 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c.8 5-1.7 10-6.1 12.4-5.8 3.1-11.2.7-13.7-1.6l-9.7-8.5zM248 416c-26.5 0-48-28.7-48-64s21.5-64 48-64 48 28.7 48 64-21.5 64-48 64zm149.8-181.5c-5.8 3.1-11.2.7-13.7-1.6l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S400 197 404 222.2c.6 4.9-1.8 9.9-6.2 12.3z" ], + "sad-tear": [ 496, 512, [], "f5b4", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM152 416c-26.5 0-48-21-48-47 0-20 28.5-60.4 41.6-77.8 3.2-4.3 9.6-4.3 12.8 0C171.5 308.6 200 349 200 369c0 26-21.5 47-48 47zm16-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm170.2 154.2C315.8 367.4 282.9 352 248 352c-21.2 0-21.2-32 0-32 44.4 0 86.3 19.6 114.7 53.8 13.8 16.4-11.2 36.5-24.5 20.4z" ], + save: [ 448, 512, [], "f0c7", "M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z" ], + school: [ 640, 512, [], "f549", "M0 224v272c0 8.84 7.16 16 16 16h80V192H32c-17.67 0-32 14.33-32 32zm360-48h-24v-40c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v64c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zm137.75-63.96l-160-106.67a32.02 32.02 0 0 0-35.5 0l-160 106.67A32.002 32.002 0 0 0 128 138.66V512h128V368c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v144h128V138.67c0-10.7-5.35-20.7-14.25-26.63zM320 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm288-64h-64v320h80c8.84 0 16-7.16 16-16V224c0-17.67-14.33-32-32-32z" ], + screwdriver: [ 512, 512, [], "f54a", "M448 0L320 96v62.06l-83.03 83.03c6.79 4.25 13.27 9.06 19.07 14.87 5.8 5.8 10.62 12.28 14.87 19.07L353.94 192H416l96-128-64-64zM128 278.59L10.92 395.67c-14.55 14.55-14.55 38.15 0 52.71l52.7 52.7c14.56 14.56 38.15 14.56 52.71 0L233.41 384c29.11-29.11 29.11-76.3 0-105.41s-76.3-29.11-105.41 0z" ], + search: [ 512, 512, [], "f002", "M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z" ], + "search-minus": [ 512, 512, [], "f010", "M304 192v32c0 6.6-5.4 12-12 12H124c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z" ], + "search-plus": [ 512, 512, [], "f00e", "M304 192v32c0 6.6-5.4 12-12 12h-56v56c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-56h-56c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h56v-56c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v56h56c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z" ], + seedling: [ 512, 512, [], "f4d8", "M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z" ], + server: [ 512, 512, [], "f233", "M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z" ], + share: [ 512, 512, [], "f064", "M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z" ], + "share-alt": [ 448, 512, [], "f1e0", "M352 320c-22.608 0-43.387 7.819-59.79 20.895l-102.486-64.054a96.551 96.551 0 0 0 0-41.683l102.486-64.054C308.613 184.181 329.392 192 352 192c53.019 0 96-42.981 96-96S405.019 0 352 0s-96 42.981-96 96c0 7.158.79 14.13 2.276 20.841L155.79 180.895C139.387 167.819 118.608 160 96 160c-53.019 0-96 42.981-96 96s42.981 96 96 96c22.608 0 43.387-7.819 59.79-20.895l102.486 64.054A96.301 96.301 0 0 0 256 416c0 53.019 42.981 96 96 96s96-42.981 96-96-42.981-96-96-96z" ], + "share-alt-square": [ 448, 512, [], "f1e1", "M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zM304 296c-14.562 0-27.823 5.561-37.783 14.671l-67.958-40.775a56.339 56.339 0 0 0 0-27.793l67.958-40.775C276.177 210.439 289.438 216 304 216c30.928 0 56-25.072 56-56s-25.072-56-56-56-56 25.072-56 56c0 4.797.605 9.453 1.74 13.897l-67.958 40.775C171.823 205.561 158.562 200 144 200c-30.928 0-56 25.072-56 56s25.072 56 56 56c14.562 0 27.823-5.561 37.783-14.671l67.958 40.775a56.088 56.088 0 0 0-1.74 13.897c0 30.928 25.072 56 56 56s56-25.072 56-56C360 321.072 334.928 296 304 296z" ], + "share-square": [ 576, 512, [], "f14d", "M568.482 177.448L424.479 313.433C409.3 327.768 384 317.14 384 295.985v-71.963c-144.575.97-205.566 35.113-164.775 171.353 4.483 14.973-12.846 26.567-25.006 17.33C155.252 383.105 120 326.488 120 269.339c0-143.937 117.599-172.5 264-173.312V24.012c0-21.174 25.317-31.768 40.479-17.448l144.003 135.988c10.02 9.463 10.028 25.425 0 34.896zM384 379.128V448H64V128h50.916a11.99 11.99 0 0 0 8.648-3.693c14.953-15.568 32.237-27.89 51.014-37.676C185.708 80.83 181.584 64 169.033 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48v-88.806c0-8.288-8.197-14.066-16.011-11.302a71.83 71.83 0 0 1-34.189 3.377c-7.27-1.046-13.8 4.514-13.8 11.859z" ], + "shekel-sign": [ 448, 512, [], "f20b", "M248 168v168c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V168c0-75.11-60.89-136-136-136H24C10.75 32 0 42.74 0 56v408c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112h112c30.93 0 56 25.07 56 56zM432 32h-48c-8.84 0-16 7.16-16 16v296c0 30.93-25.07 56-56 56H200V176c0-8.84-7.16-16-16-16h-48c-8.84 0-16 7.16-16 16v280c0 13.25 10.75 24 24 24h168c75.11 0 136-60.89 136-136V48c0-8.84-7.16-16-16-16z" ], + "shield-alt": [ 512, 512, [], "f3ed", "M496 128c0 221.282-135.934 344.645-221.539 380.308a48 48 0 0 1-36.923 0C130.495 463.713 16 326.487 16 128a48 48 0 0 1 29.539-44.308l192-80a48 48 0 0 1 36.923 0l192 80A48 48 0 0 1 496 128zM256 446.313l.066.034c93.735-46.689 172.497-156.308 175.817-307.729L256 65.333v380.98z" ], + ship: [ 640, 512, [], "f21a", "M496.616 372.639l70.012-70.012c16.899-16.9 9.942-45.771-12.836-53.092L512 236.102V96c0-17.673-14.327-32-32-32h-64V24c0-13.255-10.745-24-24-24H248c-13.255 0-24 10.745-24 24v40h-64c-17.673 0-32 14.327-32 32v140.102l-41.792 13.433c-22.753 7.313-29.754 36.173-12.836 53.092l70.012 70.012C125.828 416.287 85.587 448 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24 61.023 0 107.499-20.61 143.258-59.396C181.677 487.432 216.021 512 256 512h128c39.979 0 74.323-24.568 88.742-59.396C508.495 491.384 554.968 512 616 512c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24-60.817 0-101.542-31.001-119.384-75.361zM192 128h256v87.531l-118.208-37.995a31.995 31.995 0 0 0-19.584 0L192 215.531V128z" ], + "shipping-fast": [ 640, 512, [], "f48b", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H112C85.5 0 64 21.5 64 48v48H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h272c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H40c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H64v128c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z" ], + "shoe-prints": [ 640, 512, [], "f54b", "M192 160h32V32h-32c-35.35 0-64 28.65-64 64s28.65 64 64 64zM0 416c0 35.35 28.65 64 64 64h32V352H64c-35.35 0-64 28.65-64 64zm337.46-128c-34.91 0-76.16 13.12-104.73 32-24.79 16.38-44.52 32-104.73 32v128l57.53 15.97c26.21 7.28 53.01 13.12 80.31 15.05 32.69 2.31 65.6.67 97.58-6.2C472.9 481.3 512 429.22 512 384c0-64-84.18-96-174.54-96zM491.42 7.19C459.44.32 426.53-1.33 393.84.99c-27.3 1.93-54.1 7.77-80.31 15.04L256 32v128c60.2 0 79.94 15.62 104.73 32 28.57 18.88 69.82 32 104.73 32C555.82 224 640 192 640 128c0-45.22-39.1-97.3-148.58-120.81z" ], + "shopping-bag": [ 448, 512, [], "f290", "M352 160v-32C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128v32H0v272c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V160h-96zm-192-32c0-35.29 28.71-64 64-64s64 28.71 64 64v32H160v-32zm160 120c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm-192 0c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24z" ], + "shopping-basket": [ 576, 512, [], "f291", "M576 216v16c0 13.255-10.745 24-24 24h-8l-26.113 182.788C514.509 462.435 494.257 480 470.37 480H105.63c-23.887 0-44.139-17.565-47.518-41.212L32 256h-8c-13.255 0-24-10.745-24-24v-16c0-13.255 10.745-24 24-24h67.341l106.78-146.821c10.395-14.292 30.407-17.453 44.701-7.058 14.293 10.395 17.453 30.408 7.058 44.701L170.477 192h235.046L326.12 82.821c-10.395-14.292-7.234-34.306 7.059-44.701 14.291-10.395 34.306-7.235 44.701 7.058L484.659 192H552c13.255 0 24 10.745 24 24zM312 392V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm112 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm-224 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24z" ], + "shopping-cart": [ 576, 512, [], "f07a", "M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z" ], + shower: [ 512, 512, [], "f2cc", "M389.66 135.6L231.6 293.66c-9.37 9.37-24.57 9.37-33.94 0l-11.32-11.32c-9.37-9.37-9.37-24.57 0-33.94l.11-.11c-34.03-40.21-35.16-98.94-3.39-140.38-11.97-7.55-26.14-11.91-41.3-11.91C98.88 96 64 130.88 64 173.76V480H0V173.76C0 95.59 63.59 32 141.76 32c36.93 0 70.61 14.2 95.86 37.42 35.9-11.51 76.5-4.5 106.67 21.03l.11-.11c9.37-9.37 24.57-9.37 33.94 0l11.32 11.32c9.37 9.37 9.37 24.57 0 33.94zM384 208c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm48-16c8.837 0 16 7.163 16 16s-7.163 16-16 16-16-7.163-16-16 7.163-16 16-16zm80 16c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-160 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm32 0c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-128 32c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm96 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-96 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm64 0c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16zm-32 32c0 8.837-7.163 16-16 16s-16-7.163-16-16 7.163-16 16-16 16 7.163 16 16z" ], + "shuttle-van": [ 640, 512, [], "f5b6", "M628.88 210.65L494.39 49.27A48.01 48.01 0 0 0 457.52 32H32C14.33 32 0 46.33 0 64v288c0 17.67 14.33 32 32 32h32c0 53.02 42.98 96 96 96s96-42.98 96-96h128c0 53.02 42.98 96 96 96s96-42.98 96-96h32c17.67 0 32-14.33 32-32V241.38c0-11.23-3.94-22.1-11.12-30.73zM64 192V96h96v96H64zm96 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm160-240h-96V96h96v96zm160 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm-96-240V96h66.02l80 96H384z" ], + sign: [ 512, 512, [], "f4d9", "M496 64H128V16c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16v48H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V128h368c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM160 384h320V160H160v224z" ], + "sign-in-alt": [ 512, 512, [], "f2f6", "M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z" ], + "sign-language": [ 448, 512, [], "f2a7", "M91.434 483.987c-.307-16.018 13.109-29.129 29.13-29.129h62.293v-5.714H56.993c-16.021 0-29.437-13.111-29.13-29.129C28.16 404.491 40.835 392 56.428 392h126.429v-5.714H29.136c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h154.286v-5.714H57.707c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h168.566l-31.085-22.606c-12.762-9.281-15.583-27.149-6.302-39.912 9.281-12.761 27.15-15.582 39.912-6.302l123.361 89.715a34.287 34.287 0 0 1 14.12 27.728v141.136c0 15.91-10.946 29.73-26.433 33.374l-80.471 18.934a137.16 137.16 0 0 1-31.411 3.646H120c-15.593-.001-28.269-12.492-28.566-28.014zm73.249-225.701h36.423l-11.187-8.136c-18.579-13.511-20.313-40.887-3.17-56.536l-13.004-16.7c-9.843-12.641-28.43-15.171-40.88-5.088-12.065 9.771-14.133 27.447-4.553 39.75l36.371 46.71zm283.298-2.103l-5.003-152.452c-.518-15.771-13.722-28.136-29.493-27.619-15.773.518-28.137 13.722-27.619 29.493l1.262 38.415L283.565 11.019c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l76.889 98.745-4.509 3.511-94.79-121.734c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l94.443 121.288-4.509 3.511-77.675-99.754c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l52.053 66.849c12.497-8.257 29.055-8.285 41.69.904l123.36 89.714c10.904 7.93 17.415 20.715 17.415 34.198v16.999l61.064-47.549a34.285 34.285 0 0 0 13.202-28.177z" ], + "sign-out-alt": [ 512, 512, [], "f2f5", "M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z" ], + signal: [ 640, 512, [], "f012", "M36 384h56c6.6 0 12 5.4 12 12v104c0 6.6-5.4 12-12 12H36c-6.6 0-12-5.4-12-12V396c0-6.6 5.4-12 12-12zm116-36v152c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V348c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-80v232c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V268c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zm128-112v344c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V156c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12zM536 12v488c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V12c0-6.6-5.4-12-12-12h-56c-6.6 0-12 5.4-12 12z" ], + signature: [ 512, 512, [], "f5b7", "M496 320h-91.86c-9.27 0-19.72-11.31-25.78-28.52-15.23-43.36-48.11-70.3-85.8-70.3-30.84 0-58.47 18.05-76.11 49.23L194.8 106.5C188.84 81.08 169.34 64 146.28 64c-23.05 0-42.55 17.08-48.5 42.5L56.16 284.2C50.7 307.45 37.75 320 28.33 320H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h12.33c41.97 0 78.19-34.23 90.14-85.2l23.84-101.78 29.25 222.11c1.98 15.05 13.82 27.45 28.94 28.75.99.09 1.96.13 2.93.13 14.08 0 26.64-9.27 30.69-22.95l33.03-112.34c5.88-16.72 15.84-27.52 25.41-27.52 9.58 0 19.55 10.8 25.78 28.52 15.23 43.36 48.11 70.3 85.8 70.3H496c8.84 0 16-7.16 16-16v-32c0-8.86-7.16-16.02-16-16.02z" ], + sitemap: [ 640, 512, [], "f0e8", "M128 352H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm-24-80h192v48h48v-48h192v48h48v-57.59c0-21.17-17.23-38.41-38.41-38.41H344v-64h40c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H256c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h40v64H94.41C73.23 224 56 241.23 56 262.41V320h48v-48zm264 80h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm240 0h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z" ], + skull: [ 512, 512, [], "f54c", "M256 0C114.6 0 0 100.3 0 224c0 70.1 36.9 132.6 94.5 173.7 9.6 6.9 15.2 18.1 13.5 29.9l-9.4 66.2c-1.4 9.6 6 18.2 15.7 18.2H192v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h64v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h77.7c9.7 0 17.1-8.6 15.7-18.2l-9.4-66.2c-1.7-11.7 3.8-23 13.5-29.9C475.1 356.6 512 294.1 512 224 512 100.3 397.4 0 256 0zm-96 320c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm192 0c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64z" ], + "sliders-h": [ 512, 512, [], "f1de", "M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z" ], + smile: [ 496, 512, [], "f118", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.6-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.4-16.2 38.1 4.2 24.6 20.5z" ], + "smile-beam": [ 496, 512, [], "f5b8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM112 223.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zm250.8 122.8C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.3 24.6 20.5zm6.2-118.3l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.6 8.6-11 11.9-15.1 4.5z" ], + "smile-wink": [ 496, 512, [], "f4da", "M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm158.5 16.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.7 11.1-11.4 18.3-19.8 10.8l-9.7-8.5zM157.8 325.8C180.2 352.7 213 368 248 368s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.2 24.6 20.5C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11.2-36.7 24.6-20.4z" ], + smoking: [ 640, 512, [], "f48d", "M632 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8zM553.3 87.1c-5.7-3.8-9.3-10-9.3-16.8V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v62.3c0 22 10.2 43.4 28.6 55.4 42.2 27.3 67.4 73.8 67.4 124V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-65.5-32.4-126.2-86.7-162.6zM432 352H48c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h384c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zm-32 112H224v-64h176v64zm87.7-322.4C463.8 125 448 99.3 448 70.3V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v66.4c0 43.7 24.6 81.6 60.3 106.7 22.4 15.7 35.7 41.2 35.7 68.6V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-43.3-21-83.4-56.3-108.1zM536 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8z" ], + "smoking-ban": [ 512, 512, [], "f54d", "M96 304c0 8.8 7.2 16 16 16h117.5l-96-96H112c-8.8 0-16 7.2-16 16v64zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 448c-105.9 0-192-86.1-192-192 0-41.4 13.3-79.7 35.7-111.1l267.4 267.4C335.7 434.7 297.4 448 256 448zm45.2-192H384v32h-50.8l-32-32zm111.1 111.1L365.2 320H400c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16H269.2L144.9 99.7C176.3 77.3 214.6 64 256 64c105.9 0 192 86.1 192 192 0 41.4-13.3 79.7-35.7 111.1zM320.6 128c-15.6 0-28.6-11.2-31.4-25.9-.7-3.6-4-6.1-7.7-6.1h-16.2c-5 0-8.7 4.5-8 9.4 4.6 30.9 31.2 54.6 63.3 54.6 15.6 0 28.6 11.2 31.4 25.9.7 3.6 4 6.1 7.7 6.1h16.2c5 0 8.7-4.5 8-9.4-4.6-30.9-31.2-54.6-63.3-54.6z" ], + snowflake: [ 448, 512, [], "f2dc", "M444.816 301.639a24.12 24.12 0 0 0 2.661-16.978c-2.725-12.966-15.339-21.245-28.174-18.492l-87.407 25.046L264 256l67.896-35.215 87.407 25.046c12.835 2.753 25.449-5.526 28.174-18.492 2.725-12.966-5.471-25.708-18.305-28.461l-47.477-7.137 53.077-30.956c11.363-6.627 15.257-21.306 8.696-32.785-6.561-11.479-21.091-15.412-32.454-8.785l-53.077 30.956 17.621-45.104c4.057-12.606-2.768-26.146-15.247-30.245-12.478-4.099-25.883 2.797-29.94 15.402l-22.232 88.99-60.38 35.215V144l65.175-63.945c8.778-9.852 7.987-25.027-1.766-33.894-9.753-8.867-24.775-8.068-33.552 1.784l-29.857 37.967V24c0-13.255-10.637-24-23.758-24s-23.758 10.745-23.758 24v61.912l-29.857-37.967c-8.779-9.852-23.799-10.652-33.552-1.784-9.753 8.867-10.543 24.042-1.766 33.894L200.242 144v70.431l-60.38-35.215-22.232-88.99c-4.057-12.605-17.462-19.501-29.94-15.402-12.478 4.099-19.304 17.64-15.247 30.245l17.62 45.104-53.077-30.956c-11.363-6.627-25.893-2.694-32.454 8.785s-2.667 26.157 8.696 32.785l53.077 30.956-47.477 7.137C5.993 201.634-2.203 214.375.523 227.341c2.725 12.965 15.339 21.245 28.174 18.492l87.407-25.046L184 256l-67.896 35.215-87.406-25.045c-12.835-2.753-25.449 5.526-28.174 18.492-2.725 12.967 5.47 25.708 18.305 28.461l47.477 7.137-53.077 30.956C1.866 357.843-2.027 372.521 4.533 384s21.091 15.412 32.454 8.785l53.077-30.956-17.62 45.104a24.157 24.157 0 0 0 2.022 19.428c2.831 4.953 7.416 8.909 13.224 10.816 12.478 4.099 25.883-2.797 29.94-15.402l22.232-88.99 60.38-35.215V368l-65.175 63.945c-8.778 9.852-7.987 25.027 1.766 33.894 9.754 8.868 24.774 8.068 33.552-1.784l29.857-37.967V488c0 13.255 10.637 24 23.758 24s23.758-10.745 23.758-24v-61.912l29.857 37.967A23.59 23.59 0 0 0 295.282 472a23.534 23.534 0 0 0 15.885-6.161c9.753-8.867 10.544-24.042 1.766-33.894L247.758 368v-70.431l60.38 35.215 22.232 88.99c4.057 12.605 17.462 19.501 29.94 15.402 12.479-4.099 19.304-17.64 15.247-30.245l-17.621-45.104 53.077 30.956c11.363 6.627 25.893 2.694 32.454-8.785s2.667-26.157-8.696-32.785l-53.077-30.956 47.477-7.137c6.86-1.469 12.394-5.793 15.645-11.481z" ], + "solar-panel": [ 640, 512, [], "f5ba", "M431.98 448.01l-47.97.05V416h-128v32.21l-47.98.05c-8.82.01-15.97 7.16-15.98 15.99l-.05 31.73c-.01 8.85 7.17 16.03 16.02 16.02l223.96-.26c8.82-.01 15.97-7.16 15.98-15.98l.04-31.73c.01-8.85-7.17-16.03-16.02-16.02zM585.2 26.74C582.58 11.31 568.99 0 553.06 0H86.93C71 0 57.41 11.31 54.79 26.74-3.32 369.16.04 348.08.03 352c-.03 17.32 14.29 32 32.6 32h574.74c18.23 0 32.51-14.56 32.59-31.79.02-4.08 3.35 16.95-54.76-325.47zM259.83 64h120.33l9.77 96H250.06l9.77-96zm-75.17 256H71.09L90.1 208h105.97l-11.41 112zm16.29-160H98.24l16.29-96h96.19l-9.77 96zm32.82 160l11.4-112h149.65l11.4 112H233.77zm195.5-256h96.19l16.29 96H439.04l-9.77-96zm26.06 256l-11.4-112H549.9l19.01 112H455.33z" ], + sort: [ 320, 512, [], "f0dc", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z" ], + "sort-alpha-down": [ 448, 512, [], "f15d", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zm119.075-180.007A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z" ], + "sort-alpha-up": [ 448, 512, [], "f15e", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zm301.671 98.621A12 12 0 0 1 294.838 224h-35.717c-8.22 0-14.007-8.078-11.362-15.861l57.096-168A12 12 0 0 1 316.217 32h39.566c5.139 0 9.708 3.273 11.362 8.139l57.096 168C426.886 215.922 421.1 224 412.879 224h-35.735a12 12 0 0 1-11.515-8.622l-8.301-28.299h-42.863l-8.092 28.228zm22.857-78.697h13.367l-6.6-22.937-6.767 22.937zm12.575 287.323l67.451-95.698a12 12 0 0 0 2.192-6.913V300c0-6.627-5.373-12-12-12H274.522c-6.627 0-12 5.373-12 12v28.93c0 6.627 5.373 12 12 12h56.469c-.739.991-1.497 2.036-2.27 3.133l-67.203 95.205a12.001 12.001 0 0 0-2.196 6.92V468c0 6.627 5.373 12 12 12h129.355c6.627 0 12-5.373 12-12v-28.93c0-6.627-5.373-12-12-12h-61.146c.74-.993 1.5-2.039 2.274-3.137z" ], + "sort-amount-down": [ 512, 512, [], "f160", "M187.298 395.314l-79.984 80.002c-6.248 6.247-16.383 6.245-22.627 0L4.705 395.314C-5.365 385.244 1.807 368 16.019 368H64V48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v320h47.984c14.241 0 21.363 17.264 11.314 27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z" ], + "sort-amount-up": [ 512, 512, [], "f161", "M4.702 116.686l79.984-80.002c6.248-6.247 16.383-6.245 22.627 0l79.981 80.002c10.07 10.07 2.899 27.314-11.314 27.314H128v320c0 8.837-7.163 16-16 16H80c-8.837 0-16-7.163-16-16V144H16.016c-14.241 0-21.363-17.264-11.314-27.314zM240 96h256c8.837 0 16-7.163 16-16V48c0-8.837-7.163-16-16-16H240c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16zm-16 112v-32c0-8.837 7.163-16 16-16h192c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16zm0 256v-32c0-8.837 7.163-16 16-16h64c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-64c-8.837 0-16-7.163-16-16zm0-128v-32c0-8.837 7.163-16 16-16h128c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H240c-8.837 0-16-7.163-16-16z" ], + "sort-down": [ 320, 512, [], "f0dd", "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z" ], + "sort-numeric-down": [ 448, 512, [], "f162", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM175.984 368H128V48c0-8.837-7.163-16-16-16H80c-8.837 0-16 7.163-16 16v320H16.019c-14.212 0-21.384 17.244-11.314 27.314l79.981 80.002c6.245 6.245 16.38 6.247 22.627 0l79.984-80.002c10.05-10.05 2.928-27.314-11.313-27.314z" ], + "sort-numeric-up": [ 448, 512, [], "f163", "M308.811 113.787l-19.448-20.795c-4.522-4.836-4.274-12.421.556-16.95l43.443-40.741a11.999 11.999 0 0 1 8.209-3.247h31.591c6.627 0 12 5.373 12 12v127.07h25.66c6.627 0 12 5.373 12 12v28.93c0 6.627-5.373 12-12 12H301.649c-6.627 0-12-5.373-12-12v-28.93c0-6.627 5.373-12 12-12h25.414v-57.938c-7.254 6.58-14.211 4.921-18.252.601zm-30.57 238.569c0-32.653 23.865-67.356 68.094-67.356 38.253 0 79.424 28.861 79.424 92.228 0 51.276-32.237 105.772-91.983 105.772-17.836 0-30.546-3.557-38.548-6.781-5.79-2.333-8.789-8.746-6.922-14.703l9.237-29.48c2.035-6.496 9.049-9.983 15.467-7.716 13.029 4.602 27.878 5.275 38.103-4.138-38.742 5.072-72.872-25.36-72.872-67.826zm92.273 19.338c0-22.285-15.302-36.505-25.835-36.505-8.642 0-13.164 7.965-13.164 15.832 0 5.669 1.815 24.168 25.168 24.168 9.973 0 13.377-2.154 13.744-2.731.021-.046.087-.291.087-.764zM16.016 144H64v320c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144h47.981c14.212 0 21.384-17.244 11.314-27.314l-79.981-80.002c-6.245-6.245-16.38-6.247-22.627 0L4.702 116.686C-5.347 126.736 1.775 144 16.016 144z" ], + "sort-up": [ 320, 512, [], "f0de", "M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z" ], + spa: [ 576, 512, [], "f5bb", "M568.25 192c-29.04.13-135.01 6.16-213.84 83-33.12 29.63-53.36 63.3-66.41 94.86-13.05-31.56-33.29-65.23-66.41-94.86-78.83-76.84-184.8-82.87-213.84-83-4.41-.02-7.79 3.4-7.75 7.82.23 27.92 7.14 126.14 88.77 199.3C172.79 480.94 256 480 288 480s115.19.95 199.23-80.88c81.64-73.17 88.54-171.38 88.77-199.3.04-4.42-3.34-7.84-7.75-7.82zM287.98 302.6c12.82-18.85 27.6-35.78 44.09-50.52 19.09-18.61 39.58-33.3 60.26-45.18-16.44-70.5-51.72-133.05-96.73-172.22-4.11-3.58-11.02-3.58-15.14 0-44.99 39.14-80.27 101.63-96.74 172.07 20.37 11.7 40.5 26.14 59.22 44.39a282.768 282.768 0 0 1 45.04 51.46z" ], + "space-shuttle": [ 640, 512, [], "f197", "M592.604 208.244C559.735 192.836 515.777 184 472 184H186.327c-4.952-6.555-10.585-11.978-16.72-16H376C229.157 137.747 219.403 32 96.003 32H96v128H80V32c-26.51 0-48 28.654-48 64v64c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v16c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v64c0 35.346 21.49 64 48 64V352h16v128h.003c123.4 0 133.154-105.747 279.997-136H169.606c6.135-4.022 11.768-9.445 16.72-16H472c43.777 0 87.735-8.836 120.604-24.244C622.282 289.845 640 271.992 640 256s-17.718-33.845-47.396-47.756zM488 296a8 8 0 0 1-8-8v-64a8 8 0 0 1 8-8c31.909 0 31.942 80 0 80z" ], + spinner: [ 512, 512, [], "f110", "M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z" ], + splotch: [ 512, 512, [], "f5bc", "M472.29 195.89l-67.06-22.95c-19.28-6.6-33.54-20.92-38.14-38.3L351.1 74.19c-11.58-43.77-76.57-57.13-109.98-22.62l-46.14 47.67c-13.26 13.71-33.54 20.93-54.2 19.31l-71.88-5.62c-52.05-4.07-86.93 44.88-59.03 82.83l38.54 52.42c11.08 15.07 12.82 33.86 4.64 50.24L24.62 355.4c-20.59 41.25 22.84 84.87 73.49 73.81l69.96-15.28c20.11-4.39 41.45 0 57.07 11.73l54.32 40.83c39.32 29.56 101.04 7.57 104.45-37.22l4.7-61.86c1.35-17.79 12.8-33.86 30.63-42.99l62-31.74c44.88-22.96 39.59-80.17-8.95-96.79z" ], + "spray-can": [ 512, 512, [], "f5bd", "M224 32c0-17.67-14.33-32-32-32h-64c-17.67 0-32 14.33-32 32v96h128V32zm256 96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-256 32H96c-53.02 0-96 42.98-96 96v224c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V256c0-53.02-42.98-96-96-96zm-64 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zM480 96c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm-96 32c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-96-96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 0c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 192c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z" ], + square: [ 448, 512, [], "f0c8", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z" ], + "square-full": [ 512, 512, [], "f45c", "M512 512H0V0h512v512z" ], + stamp: [ 512, 512, [], "f5bf", "M32 512h448v-64H32v64zm384-256h-66.56c-16.26 0-29.44-13.18-29.44-29.44v-9.46c0-27.37 8.88-53.41 21.46-77.72 9.11-17.61 12.9-38.39 9.05-60.42-6.77-38.78-38.47-70.7-77.26-77.45C212.62-9.04 160 37.33 160 96c0 14.16 3.12 27.54 8.69 39.58C182.02 164.43 192 194.7 192 226.49v.07c0 16.26-13.18 29.44-29.44 29.44H96c-53.02 0-96 42.98-96 96v32c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-32c0-53.02-42.98-96-96-96z" ], + star: [ 576, 512, [], "f005", "M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z" ], + "star-half": [ 576, 512, [], "f089", "M288 0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6V0z" ], + "star-half-alt": [ 536, 512, [], "f5c0", "M508.55 171.51L362.18 150.2 296.77 17.81C290.89 5.98 279.42 0 267.95 0c-11.4 0-22.79 5.9-28.69 17.81l-65.43 132.38-146.38 21.29c-26.25 3.8-36.77 36.09-17.74 54.59l105.89 103-25.06 145.48C86.98 495.33 103.57 512 122.15 512c4.93 0 10-1.17 14.87-3.75l130.95-68.68 130.94 68.7c4.86 2.55 9.92 3.71 14.83 3.71 18.6 0 35.22-16.61 31.66-37.4l-25.03-145.49 105.91-102.98c19.04-18.5 8.52-50.8-17.73-54.6zm-121.74 123.2l-18.12 17.62 4.28 24.88 19.52 113.45-102.13-53.59-22.38-11.74.03-317.19 51.03 103.29 11.18 22.63 25.01 3.64 114.23 16.63-82.65 80.38z" ], + "step-backward": [ 448, 512, [], "f048", "M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z" ], + "step-forward": [ 448, 512, [], "f051", "M384 44v424c0 6.6-5.4 12-12 12h-48c-6.6 0-12-5.4-12-12V291.6l-195.5 181C95.9 489.7 64 475.4 64 448V64c0-27.4 31.9-41.7 52.5-24.6L312 219.3V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12z" ], + stethoscope: [ 512, 512, [], "f0f1", "M447.1 112c-34.2.5-62.3 28.4-63 62.6-.5 24.3 12.5 45.6 32 56.8V344c0 57.3-50.2 104-112 104-60 0-109.2-44.1-111.9-99.2C265 333.8 320 269.2 320 192V36.6c0-11.4-8.1-21.3-19.3-23.5L237.8.5c-13-2.6-25.6 5.8-28.2 18.8L206.4 35c-2.6 13 5.8 25.6 18.8 28.2l30.7 6.1v121.4c0 52.9-42.2 96.7-95.1 97.2-53.4.5-96.9-42.7-96.9-96V69.4l30.7-6.1c13-2.6 21.4-15.2 18.8-28.2l-3.1-15.7C107.7 6.4 95.1-2 82.1.6L19.3 13C8.1 15.3 0 25.1 0 36.6V192c0 77.3 55.1 142 128.1 156.8C130.7 439.2 208.6 512 304 512c97 0 176-75.4 176-168V231.4c19.1-11.1 32-31.7 32-55.4 0-35.7-29.2-64.5-64.9-64zm.9 80c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z" ], + "sticky-note": [ 448, 512, [], "f249", "M312 320h136V56c0-13.3-10.7-24-24-24H24C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h264V344c0-13.2 10.8-24 24-24zm129 55l-98 98c-4.5 4.5-10.6 7-17 7h-6V352h128v6.1c0 6.3-2.5 12.4-7 16.9z" ], + stop: [ 448, 512, [], "f04d", "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z" ], + "stop-circle": [ 512, 512, [], "f28d", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z" ], + stopwatch: [ 448, 512, [], "f2f2", "M432 304c0 114.9-93.1 208-208 208S16 418.9 16 304c0-104 76.3-190.2 176-205.5V64h-28c-6.6 0-12-5.4-12-12V12c0-6.6 5.4-12 12-12h120c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-28v34.5c37.5 5.8 71.7 21.6 99.7 44.6l27.5-27.5c4.7-4.7 12.3-4.7 17 0l28.3 28.3c4.7 4.7 4.7 12.3 0 17l-29.4 29.4-.6.6C419.7 223.3 432 262.2 432 304zm-176 36V188.5c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12V340c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z" ], + store: [ 616, 512, [], "f54e", "M602 118.6L537.1 15C531.3 5.7 521 0 510 0H106C95 0 84.7 5.7 78.9 15L14 118.6c-33.5 53.5-3.8 127.9 58.8 136.4 4.5.6 9.1.9 13.7.9 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18.1 20.1 44.3 33.1 73.8 33.1 4.7 0 9.2-.3 13.7-.9 62.8-8.4 92.6-82.8 59-136.4zM529.5 288c-10 0-19.9-1.5-29.5-3.8V384H116v-99.8c-9.6 2.2-19.5 3.8-29.5 3.8-6 0-12.1-.4-18-1.2-5.6-.8-11.1-2.1-16.4-3.6V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V283.2c-5.4 1.6-10.8 2.9-16.4 3.6-6.1.8-12.1 1.2-18.2 1.2z" ], + "store-alt": [ 640, 512, [], "f54f", "M320 384H128V224H64v256c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V224h-64v160zm314.6-241.8l-85.3-128c-6-8.9-16-14.2-26.7-14.2H117.4c-10.7 0-20.7 5.3-26.6 14.2l-85.3 128c-14.2 21.3 1 49.8 26.6 49.8H608c25.5 0 40.7-28.5 26.6-49.8zM512 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h-64v272z" ], + stream: [ 512, 512, [], "f550", "M16 128h416c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H16C7.16 32 0 39.16 0 48v64c0 8.84 7.16 16 16 16zm480 80H80c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm-64 176H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16z" ], + "street-view": [ 512, 512, [], "f21d", "M192 64c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zm112 80h-11.36c-22.711 10.443-49.59 10.894-73.28 0H208c-26.51 0-48 21.49-48 48v104c0 13.255 10.745 24 24 24h16v104c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V320h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48zm85.642 189.152a72.503 72.503 0 0 1-29.01 27.009C391.133 365.251 480 385.854 480 416c0 46.304-167.656 64-224 64-70.303 0-224-20.859-224-64 0-30.123 88.361-50.665 119.367-55.839a72.516 72.516 0 0 1-29.01-27.009C74.959 343.395 0 367.599 0 416c0 77.111 178.658 96 256 96 77.249 0 256-18.865 256-96 0-48.403-74.967-72.606-122.358-82.848z" ], + strikethrough: [ 512, 512, [], "f0cc", "M496 288H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h480c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16zm-214.666 16c27.258 12.937 46.524 28.683 46.524 56.243 0 33.108-28.977 53.676-75.621 53.676-32.325 0-76.874-12.08-76.874-44.271V368c0-8.837-7.164-16-16-16H113.75c-8.836 0-16 7.163-16 16v19.204c0 66.845 77.717 101.82 154.487 101.82 88.578 0 162.013-45.438 162.013-134.424 0-19.815-3.618-36.417-10.143-50.6H281.334zm-30.952-96c-32.422-13.505-56.836-28.946-56.836-59.683 0-33.92 30.901-47.406 64.962-47.406 42.647 0 64.962 16.593 64.962 32.985V136c0 8.837 7.164 16 16 16h45.613c8.836 0 16-7.163 16-16v-30.318c0-52.438-71.725-79.875-142.575-79.875-85.203 0-150.726 40.972-150.726 125.646 0 22.71 4.665 41.176 12.777 56.547h129.823z" ], + stroopwafel: [ 512, 512, [], "f551", "M188.12 210.74L142.86 256l45.25 45.25L233.37 256l-45.25-45.26zm113.13-22.62L256 142.86l-45.25 45.25L256 233.37l45.25-45.25zm-90.5 135.76L256 369.14l45.26-45.26L256 278.63l-45.25 45.25zM256 0C114.62 0 0 114.62 0 256s114.62 256 256 256 256-114.62 256-256S397.38 0 256 0zm186.68 295.6l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-28.29-28.29-45.25 45.25 33.94 33.94 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-33.94-33.94-45.26 45.26 28.29 28.29c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0L256 414.39l-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l28.29-28.29-45.25-45.26-33.94 33.94 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 33.94-33.94-45.25-45.25-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0L69.32 295.6c-3.12-3.12-3.12-8.19 0-11.31L97.61 256l-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l28.29 28.29 45.25-45.26-33.94-33.94-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 33.94 33.94 45.26-45.25-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0L256 97.61l28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-28.29 28.29 45.26 45.25 33.94-33.94-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-33.94 33.94 45.25 45.26 28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31L414.39 256l28.29 28.28a8.015 8.015 0 0 1 0 11.32zM278.63 256l45.26 45.25L369.14 256l-45.25-45.26L278.63 256z" ], + subscript: [ 512, 512, [], "f12c", "M395.198 416c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 256c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 96H16C7.163 96 0 88.837 0 80V48c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035A15.999 15.999 0 0 1 204.226 32H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 256H272z" ], + subway: [ 448, 512, [], "f239", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zM200 232V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm200 0V120c0-13.255-10.745-24-24-24H272c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm-48 56c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm-256 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z" ], + suitcase: [ 512, 512, [], "f0f2", "M128 480h256V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v400zm64-384h128v32H192V96zm320 80v256c0 26.5-21.5 48-48 48h-48V128h48c26.5 0 48 21.5 48 48zM96 480H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h48v352z" ], + "suitcase-rolling": [ 384, 512, [], "f5c1", "M336 160H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h16v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h128v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h16c26.51 0 48-21.49 48-48V208c0-26.51-21.49-48-48-48zm-16 216c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zM144 48h96v80h48V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v80h48V48z" ], + sun: [ 512, 512, [], "f185", "M274.835 12.646l25.516 62.393c4.213 10.301 16.671 14.349 26.134 8.492l57.316-35.479c15.49-9.588 34.808 4.447 30.475 22.142l-16.03 65.475c-2.647 10.81 5.053 21.408 16.152 22.231l67.224 4.987c18.167 1.348 25.546 24.057 11.641 35.826L441.81 242.26c-8.495 7.19-8.495 20.289 0 27.479l51.454 43.548c13.906 11.769 6.527 34.478-11.641 35.826l-67.224 4.987c-11.099.823-18.799 11.421-16.152 22.231l16.03 65.475c4.332 17.695-14.986 31.73-30.475 22.142l-57.316-35.479c-9.463-5.858-21.922-1.81-26.134 8.492l-25.516 62.393c-6.896 16.862-30.774 16.862-37.67 0l-25.516-62.393c-4.213-10.301-16.671-14.349-26.134-8.492l-57.317 35.479c-15.49 9.588-34.808-4.447-30.475-22.142l16.03-65.475c2.647-10.81-5.053-21.408-16.152-22.231l-67.224-4.987c-18.167-1.348-25.546-24.057-11.641-35.826L70.19 269.74c8.495-7.19 8.495-20.289 0-27.479l-51.454-43.548c-13.906-11.769-6.527-34.478 11.641-35.826l67.224-4.987c11.099-.823 18.799-11.421 16.152-22.231l-16.03-65.475c-4.332-17.695 14.986-31.73 30.475-22.142l57.317 35.479c9.463 5.858 21.921 1.81 26.134-8.492l25.516-62.393c6.896-16.861 30.774-16.861 37.67 0zM392 256c0-74.991-61.01-136-136-136-74.991 0-136 61.009-136 136s61.009 136 136 136c74.99 0 136-61.009 136-136zm-32 0c0 57.346-46.654 104-104 104s-104-46.654-104-104 46.654-104 104-104 104 46.654 104 104z" ], + superscript: [ 512, 512, [], "f12b", "M395.198 256c3.461-10.526 18.796-21.28 36.265-32.425 16.625-10.605 35.467-22.626 50.341-38.862 17.458-19.054 25.944-40.175 25.944-64.567 0-60.562-50.702-88.146-97.81-88.146-42.491 0-76.378 22.016-94.432 50.447-4.654 7.329-2.592 17.036 4.623 21.865l30.328 20.296c7.032 4.706 16.46 3.084 21.63-3.614 8.022-10.394 18.818-18.225 31.667-18.225 19.387 0 26.266 12.901 26.266 23.948 0 36.159-119.437 57.023-119.437 160.024 0 6.654.561 13.014 1.415 19.331 1.076 7.964 7.834 13.928 15.87 13.928H496c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16H395.198zM272 416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-62.399a16 16 0 0 1-13.541-7.478l-45.701-72.615c-2.297-3.352-4.422-6.969-6.195-10.209-1.65 3.244-3.647 6.937-5.874 10.582l-44.712 72.147a15.999 15.999 0 0 1-13.6 7.572H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h26.325l56.552-82.709L46.111 256H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h68.806a16 16 0 0 1 13.645 7.644l39.882 65.126c2.072 3.523 4.053 7.171 5.727 10.37 1.777-3.244 3.92-6.954 6.237-10.537l40.332-65.035a16 16 0 0 1 13.598-7.567H272c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-27.979l-52.69 75.671L249.974 416H272z" ], + surprise: [ 496, 512, [], "f5c2", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm112 208c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm80-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + swatchbook: [ 511, 512, [], "f5c3", "M479.06 320H372.29L186.15 506.51c-2.06 2.07-4.49 3.58-6.67 5.49h299.58c17.64 0 31.94-14.33 31.94-32V352c0-17.67-14.3-32-31.94-32zm-44.5-152.9l-90.33-90.51c-12.47-12.5-32.69-12.5-45.17 0l-75.5 75.65V416c0 2.96-.67 5.73-.87 8.64l211.87-212.28c12.47-12.5 12.47-32.77 0-45.26zM191.62 32c0-17.67-14.3-32-31.94-32H31.94C14.3 0 0 14.33 0 32v384c0 53.02 42.9 96 95.81 96s95.81-42.98 95.81-96V32zM95.81 440c-13.23 0-23.95-10.75-23.95-24 0-13.26 10.73-24 23.95-24s23.95 10.74 23.95 24c.01 13.25-10.72 24-23.95 24zm31.94-184H63.88v-64h63.88v64zm0-128H63.88V64h63.88v64z" ], + swimmer: [ 640, 512, [], "f5c4", "M189.61 310.58c3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c16.02-14.77 34.5-22.58 53.46-22.58h16.3c18.96 0 37.45 7.81 53.46 22.58 3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c14.86-13.71 31.88-21.12 49.39-22.16l-112.84-80.6 18-12.86c3.64-2.58 8.28-3.52 12.62-2.61l100.35 21.53c25.91 5.53 51.44-10.97 57-36.88 5.55-25.92-10.95-51.44-36.88-57L437.68 98.47c-30.73-6.58-63.02.12-88.56 18.38l-80.02 57.17c-10.38 7.39-19.36 16.44-26.72 26.94L173.75 299c5.47 3.23 10.82 6.93 15.86 11.58zM624 352h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 343.58 442.04 352 416 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 343.58 250.04 352 224 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 343.58 58.04 352 32 352H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-512-96c44.18 0 80-35.82 80-80s-35.82-80-80-80-80 35.82-80 80 35.82 80 80 80z" ], + "swimming-pool": [ 640, 512, [], "f5c5", "M624 416h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 407.58 442.04 416 416 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 407.58 250.04 416 224 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 407.58 58.04 416 32 416H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-400-32v-96h192v96c19.12 0 30.86-6.16 34.39-9.42 9.17-8.46 19.2-14.34 29.61-18.07V128c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v96H224v-96c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v228.5c10.41 3.73 20.44 9.62 29.61 18.07 3.53 3.27 15.27 9.43 34.39 9.43z" ], + sync: [ 512, 512, [], "f021", "M440.935 12.574l3.966 82.766C399.416 41.904 331.674 8 256 8 134.813 8 33.933 94.924 12.296 209.824 10.908 217.193 16.604 224 24.103 224h49.084c5.57 0 10.377-3.842 11.676-9.259C103.407 137.408 172.931 80 256 80c60.893 0 114.512 30.856 146.104 77.801l-101.53-4.865c-6.845-.328-12.574 5.133-12.574 11.986v47.411c0 6.627 5.373 12 12 12h200.333c6.627 0 12-5.373 12-12V12c0-6.627-5.373-12-12-12h-47.411c-6.853 0-12.315 5.729-11.987 12.574zM256 432c-60.895 0-114.517-30.858-146.109-77.805l101.868 4.871c6.845.327 12.573-5.134 12.573-11.986v-47.412c0-6.627-5.373-12-12-12H12c-6.627 0-12 5.373-12 12V500c0 6.627 5.373 12 12 12h47.385c6.863 0 12.328-5.745 11.985-12.599l-4.129-82.575C112.725 470.166 180.405 504 256 504c121.187 0 222.067-86.924 243.704-201.824 1.388-7.369-4.308-14.176-11.807-14.176h-49.084c-5.57 0-10.377 3.842-11.676 9.259C408.593 374.592 339.069 432 256 432z" ], + "sync-alt": [ 512, 512, [], "f2f1", "M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z" ], + syringe: [ 512, 512, [], "f48e", "M201.5 174.8l55.7 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-55.7-55.8-45.3 45.3 55.8 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L111 265.2l-26.4 26.4c-17.3 17.3-25.6 41.1-23 65.4l7.1 63.6L2.3 487c-3.1 3.1-3.1 8.2 0 11.3l11.3 11.3c3.1 3.1 8.2 3.1 11.3 0l66.3-66.3 63.6 7.1c23.9 2.6 47.9-5.4 65.4-23l181.9-181.9-135.7-135.7-64.9 65zm308.2-93.3L430.5 2.3c-3.1-3.1-8.2-3.1-11.3 0l-11.3 11.3c-3.1 3.1-3.1 8.2 0 11.3l28.3 28.3-45.3 45.3-56.6-56.6-17-17c-3.1-3.1-8.2-3.1-11.3 0l-33.9 33.9c-3.1 3.1-3.1 8.2 0 11.3l17 17L424.8 223l17 17c3.1 3.1 8.2 3.1 11.3 0l33.9-34c3.1-3.1 3.1-8.2 0-11.3l-73.5-73.5 45.3-45.3 28.3 28.3c3.1 3.1 8.2 3.1 11.3 0l11.3-11.3c3.1-3.2 3.1-8.2 0-11.4z" ], + table: [ 512, 512, [], "f0ce", "M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64v-96h160v96zm0-160H64v-96h160v96zm224 160H288v-96h160v96zm0-160H288v-96h160v96z" ], + "table-tennis": [ 512, 512, [], "f45d", "M496.2 296.5C527.7 218.7 512 126.2 449 63.1 365.1-21 229-21 145.1 63.1l-56 56.1 211.5 211.5c46.1-62.1 131.5-77.4 195.6-34.2zm-217.9 79.7L57.9 155.9c-27.3 45.3-21.7 105 17.3 144.1l34.5 34.6L6.7 424c-8.6 7.5-9.1 20.7-1 28.8l53.4 53.5c8 8.1 21.2 7.6 28.7-1L177.1 402l35.7 35.7c19.7 19.7 44.6 30.5 70.3 33.3-7.1-17-11-35.6-11-55.1-.1-13.8 2.5-27 6.2-39.7zM416 320c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96z" ], + tablet: [ 448, 512, [], "f10a", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z" ], + "tablet-alt": [ 448, 512, [], "f3fa", "M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm176-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h328c6.6 0 12 5.4 12 12v312z" ], + tablets: [ 640, 512, [], "f490", "M160 192C78.9 192 12.5 250.5.1 326.7c-.8 4.8 3.3 9.3 8.3 9.3h303.3c5 0 9.1-4.5 8.3-9.3C307.5 250.5 241.1 192 160 192zm151.6 176H8.4c-5 0-9.1 4.5-8.3 9.3C12.5 453.5 78.9 512 160 512s147.5-58.5 159.9-134.7c.8-4.8-3.3-9.3-8.3-9.3zM593.4 46.6c-56.5-56.5-144.2-61.4-206.9-16-4 2.9-4.3 8.9-.8 12.3L597 254.3c3.5 3.5 9.5 3.2 12.3-.8 45.5-62.7 40.6-150.4-15.9-206.9zM363 65.7c-3.5-3.5-9.5-3.2-12.3.8-45.4 62.7-40.5 150.4 15.9 206.9 56.5 56.5 144.2 61.4 206.9 15.9 4-2.9 4.3-8.9.8-12.3L363 65.7z" ], + "tachometer-alt": [ 576, 512, [], "f3fd", "M75.694 480a48.02 48.02 0 0 1-42.448-25.571C12.023 414.3 0 368.556 0 320 0 160.942 128.942 32 288 32s288 128.942 288 288c0 48.556-12.023 94.3-33.246 134.429A48.018 48.018 0 0 1 500.306 480H75.694zM512 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zM288 128c17.673 0 32-14.327 32-32 0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32zM64 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm65.608-158.392c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm316.784 0c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32zm-87.078 31.534c-12.627-4.04-26.133 2.92-30.173 15.544l-45.923 143.511C250.108 322.645 224 350.264 224 384c0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64 0-19.773-8.971-37.447-23.061-49.187l45.919-143.498c4.039-12.625-2.92-26.133-15.544-30.173z" ], + tag: [ 512, 512, [], "f02b", "M0 252.118V48C0 21.49 21.49 0 48 0h204.118a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882L293.823 497.941c-18.745 18.745-49.137 18.745-67.882 0L14.059 286.059A48 48 0 0 1 0 252.118zM112 64c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z" ], + tags: [ 640, 512, [], "f02c", "M497.941 225.941L286.059 14.059A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v204.118a48 48 0 0 0 14.059 33.941l211.882 211.882c18.744 18.745 49.136 18.746 67.882 0l204.118-204.118c18.745-18.745 18.745-49.137 0-67.882zM112 160c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm513.941 133.823L421.823 497.941c-18.745 18.745-49.137 18.745-67.882 0l-.36-.36L527.64 323.522c16.999-16.999 26.36-39.6 26.36-63.64s-9.362-46.641-26.36-63.64L331.397 0h48.721a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882z" ], + tape: [ 640, 512, [], "f4db", "M224 192c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm400 224H380.6c41.5-40.7 67.4-97.3 67.4-160 0-123.7-100.3-224-224-224S0 132.3 0 256s100.3 224 224 224h400c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400-64c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96z" ], + tasks: [ 512, 512, [], "f0ae", "M208 132h288c8.8 0 16-7.2 16-16V76c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zm0 160h288c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16zM64 368c-26.5 0-48.6 21.5-48.6 48s22.1 48 48.6 48 48-21.5 48-48-21.5-48-48-48zm92.5-299l-72.2 72.2-15.6 15.6c-4.7 4.7-12.9 4.7-17.6 0L3.5 109.4c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.3c4.7-4.7 12.3-4.7 17 0l17 16.5c4.6 4.7 4.6 12.3-.1 17zm0 159.6l-72.2 72.2-15.7 15.7c-4.7 4.7-12.9 4.7-17.6 0L3.5 269c-4.7-4.7-4.7-12.3 0-17l15.7-15.7c4.7-4.7 12.3-4.7 17 0l22.7 22.1 63.7-63.7c4.7-4.7 12.3-4.7 17 0l17 17c4.6 4.6 4.6 12.2-.1 16.9z" ], + taxi: [ 512, 512, [], "f1ba", "M462 241.64l-22-84.84c-9.6-35.2-41.6-60.8-76.8-60.8H352V64c0-17.67-14.33-32-32-32H192c-17.67 0-32 14.33-32 32v32h-11.2c-35.2 0-67.2 25.6-76.8 60.8l-22 84.84C21.41 248.04 0 273.47 0 304v48c0 23.63 12.95 44.04 32 55.12V448c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-40.88c19.05-11.09 32-31.5 32-55.12v-48c0-30.53-21.41-55.96-50-62.36zM96 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm20.55-112l17.2-66.36c2.23-8.16 9.59-13.64 15.06-13.64h214.4c5.47 0 12.83 5.48 14.85 12.86L395.45 240h-278.9zM416 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + terminal: [ 640, 512, [], "f120", "M257.981 272.971L63.638 467.314c-9.373 9.373-24.569 9.373-33.941 0L7.029 444.647c-9.357-9.357-9.375-24.522-.04-33.901L161.011 256 6.99 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L257.981 239.03c9.373 9.372 9.373 24.568 0 33.941zM640 456v-32c0-13.255-10.745-24-24-24H312c-13.255 0-24 10.745-24 24v32c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z" ], + "text-height": [ 576, 512, [], "f034", "M16 32h288c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96h-54.761v320H232c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H88c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm475.308 4.685l79.995 80.001C581.309 126.693 574.297 144 559.99 144H512v224h48c15.639 0 20.635 17.991 11.313 27.314l-79.995 80.001c-6.247 6.247-16.381 6.245-22.626 0l-79.995-80.001C378.691 385.307 385.703 368 400.01 368H448V144h-48c-15.639 0-20.635-17.991-11.313-27.314l79.995-80.001c6.247-6.248 16.381-6.245 22.626 0z" ], + "text-width": [ 448, 512, [], "f035", "M16 32h416c8.837 0 16 7.163 16 16v96c0 8.837-7.163 16-16 16h-35.496c-8.837 0-16-7.163-16-16V96H261.743v128H296c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H152c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h34.257V96H67.496v48c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16V48c0-8.837 7.163-16 16-16zm427.315 340.682l-80.001-79.995C353.991 283.365 336 288.362 336 304v48H112v-47.99c0-14.307-17.307-21.319-27.314-11.313L4.685 372.692c-6.245 6.245-6.247 16.379 0 22.626l80.001 79.995C94.009 484.635 112 479.638 112 464v-48h224v47.99c0 14.307 17.307 21.319 27.314 11.313l80.001-79.995c6.245-6.245 6.248-16.379 0-22.626z" ], + th: [ 512, 512, [], "f00a", "M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z" ], + "th-large": [ 512, 512, [], "f009", "M296 32h192c13.255 0 24 10.745 24 24v160c0 13.255-10.745 24-24 24H296c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24zm-80 0H24C10.745 32 0 42.745 0 56v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zM0 296v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm296 184h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H296c-13.255 0-24 10.745-24 24v160c0 13.255 10.745 24 24 24z" ], + "th-list": [ 512, 512, [], "f00b", "M149.333 216v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zM125.333 32H24C10.745 32 0 42.745 0 56v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zm80 448H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm-24-424v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24zm24 264H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24z" ], + thermometer: [ 512, 512, [], "f491", "M476.8 20.4c-37.5-30.7-95.5-26.3-131.9 10.2l-45.7 46 50.5 50.5c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.4-50.5-45.1 45.4 50.3 50.4c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L209 167.4l-45.1 45.4L214 263c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.1-50.2L96 281.1V382L7 471c-9.4 9.4-9.4 24.6 0 33.9 9.4 9.4 24.6 9.4 33.9 0l89-89h99.9L484 162.6c34.9-34.9 42.2-101.5-7.2-142.2z" ], + "thermometer-empty": [ 256, 512, [], "f2cb", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z" ], + "thermometer-full": [ 256, 512, [], "f2c7", "M224 96c0-53.019-42.981-96-96-96S32 42.981 32 96v203.347C12.225 321.756.166 351.136.002 383.333c-.359 70.303 56.787 128.176 127.089 128.664.299.002.61.003.909.003 70.698 0 128-57.304 128-128 0-32.459-12.088-62.09-32-84.653V96zm-96 368l-.576-.002c-43.86-.304-79.647-36.544-79.423-80.42.173-33.98 19.266-51.652 31.999-66.08V96c0-26.467 21.533-48 48-48s48 21.533 48 48v221.498c12.63 14.312 32 32.164 32 66.502 0 44.112-35.888 80-80 80zm64-80c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V96c0-17.673 14.327-32 32-32s32 14.327 32 32v232.583c19.124 11.068 32 31.732 32 55.417z" ], + "thermometer-half": [ 256, 512, [], "f2c9", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V224c0-17.673 14.327-32 32-32s32 14.327 32 32v104.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z" ], + "thermometer-quarter": [ 256, 512, [], "f2ca", "M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V288c0-17.673 14.327-32 32-32s32 14.327 32 32v40.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z" ], + "thermometer-three-quarters": [ 256, 512, [], "f2c8", "M192 384c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-23.685 12.876-44.349 32-55.417V160c0-17.673 14.327-32 32-32s32 14.327 32 32v168.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z" ], + "thumbs-down": [ 512, 512, [], "f165", "M0 56v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56zm40 200c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24zm272 256c-20.183 0-29.485-39.293-33.931-57.795-5.206-21.666-10.589-44.07-25.393-58.902-32.469-32.524-49.503-73.967-89.117-113.111a11.98 11.98 0 0 1-3.558-8.521V59.901c0-6.541 5.243-11.878 11.783-11.998 15.831-.29 36.694-9.079 52.651-16.178C256.189 17.598 295.709.017 343.995 0h2.844c42.777 0 93.363.413 113.774 29.737 8.392 12.057 10.446 27.034 6.148 44.632 16.312 17.053 25.063 48.863 16.382 74.757 17.544 23.432 19.143 56.132 9.308 79.469l.11.11c11.893 11.949 19.523 31.259 19.439 49.197-.156 30.352-26.157 58.098-59.553 58.098H350.723C358.03 364.34 384 388.132 384 430.548 384 504 336 512 312 512z" ], + "thumbs-up": [ 512, 512, [], "f164", "M104 224H24c-13.255 0-24 10.745-24 24v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V248c0-13.255-10.745-24-24-24zM64 472c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zM384 81.452c0 42.416-25.97 66.208-33.277 94.548h101.723c33.397 0 59.397 27.746 59.553 58.098.084 17.938-7.546 37.249-19.439 49.197l-.11.11c9.836 23.337 8.237 56.037-9.308 79.469 8.681 25.895-.069 57.704-16.382 74.757 4.298 17.598 2.244 32.575-6.148 44.632C440.202 511.587 389.616 512 346.839 512l-2.845-.001c-48.287-.017-87.806-17.598-119.56-31.725-15.957-7.099-36.821-15.887-52.651-16.178-6.54-.12-11.783-5.457-11.783-11.998v-213.77c0-3.2 1.282-6.271 3.558-8.521 39.614-39.144 56.648-80.587 89.117-113.111 14.804-14.832 20.188-37.236 25.393-58.902C282.515 39.293 291.817 0 312 0c24 0 72 8 72 81.452z" ], + thumbtack: [ 384, 512, [], "f08d", "M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z" ], + "ticket-alt": [ 576, 512, [], "f3ff", "M128 160h320v192H128V160zm400 96c0 26.51 21.49 48 48 48v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c26.51 0 48-21.49 48-48s-21.49-48-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v96c-26.51 0-48 21.49-48 48zm-48-104c0-13.255-10.745-24-24-24H120c-13.255 0-24 10.745-24 24v208c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V152z" ], + times: [ 352, 512, [], "f00d", "M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" ], + "times-circle": [ 512, 512, [], "f057", "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z" ], + tint: [ 352, 512, [], "f043", "M205.22 22.09c-7.94-28.78-49.44-30.12-58.44 0C100.01 179.85 0 222.72 0 333.91 0 432.35 78.72 512 176 512s176-79.65 176-178.09c0-111.75-99.79-153.34-146.78-311.82zM176 448c-61.75 0-112-50.25-112-112 0-8.84 7.16-16 16-16s16 7.16 16 16c0 44.11 35.89 80 80 80 8.84 0 16 7.16 16 16s-7.16 16-16 16z" ], + "tint-slash": [ 640, 512, [], "f5c7", "M633.82 458.1L494.97 350.78c.52-5.57 1.03-11.16 1.03-16.87 0-111.76-99.79-153.34-146.78-311.82-7.94-28.78-49.44-30.12-58.44 0-15.52 52.34-36.87 91.96-58.49 125.68L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM144 333.91C144 432.35 222.72 512 320 512c44.71 0 85.37-16.96 116.4-44.7L162.72 255.78c-11.41 23.5-18.72 48.35-18.72 78.13z" ], + tired: [ 496, 512, [], "f5c8", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 288c51.9 0 115.3 43.8 123.2 106.7 1.7 13.6-8 24.6-17.7 20.4-25.9-11.1-64.4-17.4-105.5-17.4s-79.6 6.3-105.5 17.4c-9.8 4.2-19.4-7-17.7-20.4C132.7 331.8 196.1 288 248 288z" ], + "toggle-off": [ 576, 512, [], "f204", "M384 64H192C85.961 64 0 149.961 0 256s85.961 192 192 192h192c106.039 0 192-85.961 192-192S490.039 64 384 64zM64 256c0-70.741 57.249-128 128-128 70.741 0 128 57.249 128 128 0 70.741-57.249 128-128 128-70.741 0-128-57.249-128-128zm320 128h-48.905c65.217-72.858 65.236-183.12 0-256H384c70.741 0 128 57.249 128 128 0 70.74-57.249 128-128 128z" ], + "toggle-on": [ 576, 512, [], "f205", "M576 256c0 106.039-85.961 192-192 192H192C85.961 448 0 362.039 0 256S85.961 64 192 64h192c106.039 0 192 85.961 192 192zM384 128c-70.741 0-128 57.249-128 128 0 70.741 57.249 128 128 128 70.741 0 128-57.249 128-128 0-70.741-57.249-128-128-128" ], + toolbox: [ 512, 512, [], "f552", "M502.63 214.63l-45.25-45.25c-6-6-14.14-9.37-22.63-9.37H384V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v80H77.25c-8.49 0-16.62 3.37-22.63 9.37L9.37 214.63c-6 6-9.37 14.14-9.37 22.63V320h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-82.75c0-8.48-3.37-16.62-9.37-22.62zM320 160H192V96h128v64zm64 208c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H192v16c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H0v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96H384v16z" ], + tooth: [ 448, 512, [], "f5c9", "M443.98 96.25c-11.01-45.22-47.11-82.06-92.01-93.72-32.19-8.36-63 5.1-89.14 24.33-3.25 2.39-6.96 3.73-10.5 5.48l28.32 18.21c7.42 4.77 9.58 14.67 4.8 22.11-4.46 6.95-14.27 9.86-22.11 4.8L162.83 12.84c-20.7-10.85-43.38-16.4-66.81-10.31-44.9 11.67-81 48.5-92.01 93.72-10.13 41.62-.42 80.81 21.5 110.43 23.36 31.57 32.68 68.66 36.29 107.35 4.4 47.16 10.33 94.16 20.94 140.32l7.8 33.95c3.19 13.87 15.49 23.7 29.67 23.7 13.97 0 26.15-9.55 29.54-23.16l34.47-138.42c4.56-18.32 20.96-31.16 39.76-31.16s35.2 12.85 39.76 31.16l34.47 138.42c3.39 13.61 15.57 23.16 29.54 23.16 14.18 0 26.48-9.83 29.67-23.7l7.8-33.95c10.61-46.15 16.53-93.16 20.94-140.32 3.61-38.7 12.93-75.78 36.29-107.35 21.95-29.61 31.66-68.8 21.53-110.43z" ], + trademark: [ 640, 512, [], "f25c", "M97.119 163.133H12c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h248.559c6.627 0 12 5.373 12 12v43.133c0 6.627-5.373 12-12 12H175.44V404c0 6.627-5.373 12-12 12h-54.322c-6.627 0-12-5.373-12-12V163.133zM329.825 96h65.425a12 12 0 0 1 11.346 8.093l43.759 127.068c7.161 20.588 16.111 52.812 16.111 52.812h.896s8.95-32.224 16.111-52.812l43.758-127.068A12 12 0 0 1 538.577 96h65.41a12 12 0 0 1 11.961 11.03l24.012 296c.567 6.987-4.951 12.97-11.961 12.97h-54.101a12 12 0 0 1-11.972-11.182l-9.082-132.93c-1.79-24.168 0-53.706 0-53.706h-.896s-10.741 33.566-17.902 53.706l-30.7 84.731a12 12 0 0 1-11.282 7.912h-50.302a12 12 0 0 1-11.282-7.912l-30.7-84.731c-7.161-20.14-17.903-53.706-17.903-53.706h-.895s1.79 29.538 0 53.706l-9.082 132.93c-.428 6.295-5.66 11.182-11.97 11.182H305.4c-7.017 0-12.536-5.994-11.959-12.987l24.425-296A11.999 11.999 0 0 1 329.825 96z" ], + train: [ 448, 512, [], "f238", "M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zm-48 136V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24zm-176 64c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56z" ], + transgender: [ 384, 512, [], "f224", "M372 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C198.5 104.1 172.2 96 144 96 64.5 96 0 160.5 0 240c0 68.5 47.9 125.9 112 140.4V408H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM144 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" ], + "transgender-alt": [ 480, 512, [], "f225", "M468 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C294.5 104.1 268.2 96 240 96c-28.2 0-54.5 8.1-76.7 22.1l-16.5-16.5 19.8-19.8c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0l-19.8 19.8-19-19 16.9-16.9C107.1 12.9 101.7 0 91 0H12C5.4 0 0 5.4 0 12v79c0 10.7 12.9 16 20.5 8.5l16.9-16.9 19 19-19.8 19.8c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l19.8-19.8 16.5 16.5C104.1 185.5 96 211.8 96 240c0 68.5 47.9 125.9 112 140.4V408h-36c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM240 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" ], + trash: [ 448, 512, [], "f1f8", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm415.2 56.7L394.8 467c-1.6 25.3-22.6 45-47.9 45H101.1c-25.3 0-46.3-19.7-47.9-45L32.8 140.7c-.4-6.9 5.1-12.7 12-12.7h358.5c6.8 0 12.3 5.8 11.9 12.7z" ], + "trash-alt": [ 448, 512, [], "f2ed", "M0 84V56c0-13.3 10.7-24 24-24h112l9.4-18.7c4-8.2 12.3-13.3 21.4-13.3h114.3c9.1 0 17.4 5.1 21.5 13.3L312 32h112c13.3 0 24 10.7 24 24v28c0 6.6-5.4 12-12 12H12C5.4 96 0 90.6 0 84zm416 56v324c0 26.5-21.5 48-48 48H80c-26.5 0-48-21.5-48-48V140c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12zm-272 68c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208zm96 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208z" ], + tree: [ 384, 512, [], "f1bb", "M377.33 375.429L293.906 288H328c21.017 0 31.872-25.207 17.448-40.479L262.79 160H296c20.878 0 31.851-24.969 17.587-40.331l-104-112.003c-9.485-10.214-25.676-10.229-35.174 0l-104 112.003C56.206 134.969 67.037 160 88 160h33.21l-82.659 87.521C24.121 262.801 34.993 288 56 288h34.094L6.665 375.429C-7.869 390.655 2.925 416 24.025 416H144c0 32.781-11.188 49.26-33.995 67.506C98.225 492.93 104.914 512 120 512h144c15.086 0 21.776-19.069 9.995-28.494-19.768-15.814-33.992-31.665-33.995-67.496V416h119.97c21.05 0 31.929-25.309 17.36-40.571z" ], + trophy: [ 576, 512, [], "f091", "M552 64H448V24c0-13.3-10.7-24-24-24H152c-13.3 0-24 10.7-24 24v40H24C10.7 64 0 74.7 0 88v56c0 35.7 22.5 72.4 61.9 100.7 31.5 22.7 69.8 37.1 110 41.7C203.3 338.5 240 360 240 360v72h-48c-35.3 0-64 20.7-64 56v12c0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12v-12c0-35.3-28.7-56-64-56h-48v-72s36.7-21.5 68.1-73.6c40.3-4.6 78.6-19 110-41.7 39.3-28.3 61.9-65 61.9-100.7V88c0-13.3-10.7-24-24-24zM99.3 192.8C74.9 175.2 64 155.6 64 144v-16h64.2c1 32.6 5.8 61.2 12.8 86.2-15.1-5.2-29.2-12.4-41.7-21.4zM512 144c0 16.1-17.7 36.1-35.3 48.8-12.5 9-26.7 16.2-41.8 21.4 7-25 11.8-53.6 12.8-86.2H512v16z" ], + truck: [ 640, 512, [], "f0d1", "M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z" ], + "truck-loading": [ 640, 512, [], "f4de", "M50.2 375.6c2.3 8.5 11.1 13.6 19.6 11.3l216.4-58c8.5-2.3 13.6-11.1 11.3-19.6l-49.7-185.5c-2.3-8.5-11.1-13.6-19.6-11.3L151 133.3l24.8 92.7-61.8 16.5-24.8-92.7-77.3 20.7C3.4 172.8-1.7 181.6.6 190.1l49.6 185.5zM384 0c-17.7 0-32 14.3-32 32v323.6L5.9 450c-4.3 1.2-6.8 5.6-5.6 9.8l12.6 46.3c1.2 4.3 5.6 6.8 9.8 5.6l393.7-107.4C418.8 464.1 467.6 512 528 512c61.9 0 112-50.1 112-112V0H384zm144 448c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z" ], + "truck-moving": [ 640, 512, [], "f4df", "M621.3 237.3l-58.5-58.5c-12-12-28.3-18.7-45.3-18.7H480V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v336c0 44.2 35.8 80 80 80 26.3 0 49.4-12.9 64-32.4 14.6 19.6 37.7 32.4 64 32.4 44.2 0 80-35.8 80-80 0-5.5-.6-10.8-1.6-16h163.2c-1.1 5.2-1.6 10.5-1.6 16 0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H624c8.8 0 16-7.2 16-16v-85.5c0-17-6.7-33.2-18.7-45.2zM80 432c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm128 0c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm272-224h37.5c4.3 0 8.3 1.7 11.3 4.7l43.3 43.3H480v-48zm48 224c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32z" ], + tshirt: [ 640, 512, [], "f553", "M631.2 96.5L436.5 0C416.4 27.8 371.9 47.2 320 47.2S223.6 27.8 203.5 0L8.8 96.5c-7.9 4-11.1 13.6-7.2 21.5l57.2 114.5c4 7.9 13.6 11.1 21.5 7.2l56.6-27.7c10.6-5.2 23 2.5 23 14.4V480c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V226.3c0-11.8 12.4-19.6 23-14.4l56.6 27.7c7.9 4 17.5.8 21.5-7.2L638.3 118c4-7.9.8-17.6-7.1-21.5z" ], + tty: [ 512, 512, [], "f1e4", "M5.37 103.822c138.532-138.532 362.936-138.326 501.262 0 6.078 6.078 7.074 15.496 2.583 22.681l-43.214 69.138a18.332 18.332 0 0 1-22.356 7.305l-86.422-34.569a18.335 18.335 0 0 1-11.434-18.846L351.741 90c-62.145-22.454-130.636-21.986-191.483 0l5.953 59.532a18.331 18.331 0 0 1-11.434 18.846l-86.423 34.568a18.334 18.334 0 0 1-22.356-7.305L2.787 126.502a18.333 18.333 0 0 1 2.583-22.68zM96 308v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H92c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zM96 500v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H140c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z" ], + tv: [ 640, 512, [], "f26c", "M592 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h245.1v32h-160c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32-14.3 32-32s-14.3-32-32-32h-160v-32H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h512v288z" ], + umbrella: [ 576, 512, [], "f0e9", "M557.011 267.631c-51.432-45.217-107.572-43.698-158.567 30.731-5.298 7.861-14.906 7.165-19.736 0-2.483-3.624-32.218-60.808-90.708-60.808-45.766 0-70.542 31.378-90.709 60.808-4.829 7.165-14.436 7.861-19.734 0-50.904-74.285-106.613-76.406-158.567-30.731-10.21 8.264-20.912-1.109-18.696-9.481C32.146 134.573 158.516 64.612 288.001 64.612c128.793 0 256.546 69.961 287.706 193.538 2.206 8.322-8.426 17.793-18.696 9.481zM256 261.001V416c0 17.645-14.355 32-32 32s-32-14.355-32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 52.935 43.065 96 96 96s96-43.065 96-96V261.288c-21.836-10.806-45.425-9.737-64-.287zm64-211.007V32c0-17.673-14.327-32-32-32s-32 14.327-32 32v17.987a372.105 372.105 0 0 1 64 .007z" ], + "umbrella-beach": [ 640, 512, [], "f5ca", "M115.38 136.9l102.11 37.18c35.19-81.54 86.21-144.29 139-173.7-95.88-4.89-188.78 36.96-248.53 111.8-6.69 8.4-2.66 21.05 7.42 24.72zm132.25 48.16l238.48 86.83c35.76-121.38 18.7-231.66-42.63-253.98-7.4-2.7-15.13-4-23.09-4-58.02.01-128.27 69.17-172.76 171.15zM521.48 60.5c6.22 16.3 10.83 34.6 13.2 55.19 5.74 49.89-1.42 108.23-18.95 166.98l102.62 37.36c10.09 3.67 21.31-3.43 21.57-14.17 2.32-95.69-41.91-187.44-118.44-245.36zM560 447.98H321.06L386 269.5l-60.14-21.9-72.9 200.37H16c-8.84 0-16 7.16-16 16.01v32.01C0 504.83 7.16 512 16 512h544c8.84 0 16-7.17 16-16.01v-32.01c0-8.84-7.16-16-16-16z" ], + underline: [ 448, 512, [], "f0cd", "M224.264 388.24c-91.669 0-156.603-51.165-156.603-151.392V64H39.37c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h137.39c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.813v172.848c0 53.699 28.314 79.444 76.317 79.444 46.966 0 75.796-25.434 75.796-79.965V64h-28.291c-8.837 0-16-7.163-16-16V16c0-8.837 7.163-16 16-16h136.868c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16h-28.291v172.848c0 99.405-64.881 151.392-156.082 151.392zM16 448h416c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16z" ], + undo: [ 512, 512, [], "f0e2", "M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z" ], + "undo-alt": [ 512, 512, [], "f2ea", "M255.545 8c-66.269.119-126.438 26.233-170.86 68.685L48.971 40.971C33.851 25.851 8 36.559 8 57.941V192c0 13.255 10.745 24 24 24h134.059c21.382 0 32.09-25.851 16.971-40.971l-41.75-41.75c30.864-28.899 70.801-44.907 113.23-45.273 92.398-.798 170.283 73.977 169.484 169.442C423.236 348.009 349.816 424 256 424c-41.127 0-79.997-14.678-110.63-41.556-4.743-4.161-11.906-3.908-16.368.553L89.34 422.659c-4.872 4.872-4.631 12.815.482 17.433C133.798 479.813 192.074 504 256 504c136.966 0 247.999-111.033 248-247.998C504.001 119.193 392.354 7.755 255.545 8z" ], + "universal-access": [ 512, 512, [], "f29a", "M256 48c114.953 0 208 93.029 208 208 0 114.953-93.029 208-208 208-114.953 0-208-93.029-208-208 0-114.953 93.029-208 208-208m0-40C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 56C149.961 64 64 149.961 64 256s85.961 192 192 192 192-85.961 192-192S362.039 64 256 64zm0 44c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36zm117.741 98.023c-28.712 6.779-55.511 12.748-82.14 15.807.851 101.023 12.306 123.052 25.037 155.621 3.617 9.26-.957 19.698-10.217 23.315-9.261 3.617-19.699-.957-23.316-10.217-8.705-22.308-17.086-40.636-22.261-78.549h-9.686c-5.167 37.851-13.534 56.208-22.262 78.549-3.615 9.255-14.05 13.836-23.315 10.217-9.26-3.617-13.834-14.056-10.217-23.315 12.713-32.541 24.185-54.541 25.037-155.621-26.629-3.058-53.428-9.027-82.141-15.807-8.6-2.031-13.926-10.648-11.895-19.249s10.647-13.926 19.249-11.895c96.686 22.829 124.283 22.783 220.775 0 8.599-2.03 17.218 3.294 19.249 11.895 2.029 8.601-3.297 17.219-11.897 19.249z" ], + university: [ 512, 512, [], "f19c", "M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z" ], + unlink: [ 512, 512, [], "f127", "M304.083 405.907c4.686 4.686 4.686 12.284 0 16.971l-44.674 44.674c-59.263 59.262-155.693 59.266-214.961 0-59.264-59.265-59.264-155.696 0-214.96l44.675-44.675c4.686-4.686 12.284-4.686 16.971 0l39.598 39.598c4.686 4.686 4.686 12.284 0 16.971l-44.675 44.674c-28.072 28.073-28.072 73.75 0 101.823 28.072 28.072 73.75 28.073 101.824 0l44.674-44.674c4.686-4.686 12.284-4.686 16.971 0l39.597 39.598zm-56.568-260.216c4.686 4.686 12.284 4.686 16.971 0l44.674-44.674c28.072-28.075 73.75-28.073 101.824 0 28.072 28.073 28.072 73.75 0 101.823l-44.675 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.598 39.598c4.686 4.686 12.284 4.686 16.971 0l44.675-44.675c59.265-59.265 59.265-155.695 0-214.96-59.266-59.264-155.695-59.264-214.961 0l-44.674 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.597 39.598zm234.828 359.28l22.627-22.627c9.373-9.373 9.373-24.569 0-33.941L63.598 7.029c-9.373-9.373-24.569-9.373-33.941 0L7.029 29.657c-9.373 9.373-9.373 24.569 0 33.941l441.373 441.373c9.373 9.372 24.569 9.372 33.941 0z" ], + unlock: [ 448, 512, [], "f09c", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z" ], + "unlock-alt": [ 448, 512, [], "f13e", "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zM264 408c0 22.1-17.9 40-40 40s-40-17.9-40-40v-48c0-22.1 17.9-40 40-40s40 17.9 40 40v48z" ], + upload: [ 512, 512, [], "f093", "M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z" ], + user: [ 448, 512, [], "f007", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" ], + "user-alt": [ 512, 512, [], "f406", "M256 288c79.5 0 144-64.5 144-144S335.5 0 256 0 112 64.5 112 144s64.5 144 144 144zm128 32h-55.1c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16H128C57.3 320 0 377.3 0 448v16c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-16c0-70.7-57.3-128-128-128z" ], + "user-alt-slash": [ 640, 512, [], "f4fa", "M633.8 458.1L389.6 269.3C433.8 244.7 464 198.1 464 144 464 64.5 399.5 0 320 0c-67.1 0-123 46.1-139 108.2L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM198.4 320C124.2 320 64 380.2 64 454.4v9.6c0 26.5 21.5 48 48 48h382.2L245.8 320h-47.4z" ], + "user-astronaut": [ 448, 512, [], "f4fb", "M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z" ], + "user-check": [ 640, 512, [], "f4fc", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4zm323-128.4l-27.8-28.1c-4.6-4.7-12.1-4.7-16.8-.1l-104.8 104-45.5-45.8c-4.6-4.7-12.1-4.7-16.8-.1l-28.1 27.9c-4.7 4.6-4.7 12.1-.1 16.8l81.7 82.3c4.6 4.7 12.1 4.7 16.8.1l141.3-140.2c4.6-4.7 4.7-12.2.1-16.8z" ], + "user-circle": [ 496, 512, [], "f2bd", "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 96c48.6 0 88 39.4 88 88s-39.4 88-88 88-88-39.4-88-88 39.4-88 88-88zm0 344c-58.7 0-111.3-26.6-146.5-68.2 18.8-35.4 55.6-59.8 98.5-59.8 2.4 0 4.8.4 7.1 1.1 13 4.2 26.6 6.9 40.9 6.9 14.3 0 28-2.7 40.9-6.9 2.3-.7 4.7-1.1 7.1-1.1 42.9 0 79.7 24.4 98.5 59.8C359.3 421.4 306.7 448 248 448z" ], + "user-clock": [ 640, 512, [], "f4fd", "M496 224c-79.6 0-144 64.4-144 144s64.4 144 144 144 144-64.4 144-144-64.4-144-144-144zm64 150.3c0 5.3-4.4 9.7-9.7 9.7h-60.6c-5.3 0-9.7-4.4-9.7-9.7v-76.6c0-5.3 4.4-9.7 9.7-9.7h12.6c5.3 0 9.7 4.4 9.7 9.7V352h38.3c5.3 0 9.7 4.4 9.7 9.7v12.6zM320 368c0-27.8 6.7-54.1 18.2-77.5-8-1.5-16.2-2.5-24.6-2.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h347.1c-45.3-31.9-75.1-84.5-75.1-144zm-96-112c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128z" ], + "user-cog": [ 640, 512, [], "f4fe", "M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z" ], + "user-edit": [ 640, 512, [], "f4ff", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h274.9c-2.4-6.8-3.4-14-2.6-21.3l6.8-60.9 1.2-11.1 7.9-7.9 77.3-77.3c-24.5-27.7-60-45.5-99.9-45.5zm45.3 145.3l-6.8 61c-1.1 10.2 7.5 18.8 17.6 17.6l60.9-6.8 137.9-137.9-71.7-71.7-137.9 137.8zM633 268.9L595.1 231c-9.3-9.3-24.5-9.3-33.8 0l-37.8 37.8-4.1 4.1 71.8 71.7 41.8-41.8c9.3-9.4 9.3-24.5 0-33.9z" ], + "user-friends": [ 640, 512, [], "f500", "M192 256c61.9 0 112-50.1 112-112S253.9 32 192 32 80 82.1 80 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C51.6 288 0 339.6 0 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zM480 256c53 0 96-43 96-96s-43-96-96-96-96 43-96 96 43 96 96 96zm48 32h-3.8c-13.9 4.8-28.6 8-44.2 8s-30.3-3.2-44.2-8H432c-20.4 0-39.2 5.9-55.7 15.4 24.4 26.3 39.7 61.2 39.7 99.8v38.4c0 2.2-.5 4.3-.6 6.4H592c26.5 0 48-21.5 48-48 0-61.9-50.1-112-112-112z" ], + "user-graduate": [ 448, 512, [], "f501", "M319.4 320.6L224 416l-95.4-95.4C57.1 323.7 0 382.2 0 454.4v9.6c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-9.6c0-72.2-57.1-130.7-128.6-133.8zM13.6 79.8l6.4 1.5v58.4c-7 4.2-12 11.5-12 20.3 0 8.4 4.6 15.4 11.1 19.7L3.5 242c-1.7 6.9 2.1 14 7.6 14h41.8c5.5 0 9.3-7.1 7.6-14l-15.6-62.3C51.4 175.4 56 168.4 56 160c0-8.8-5-16.1-12-20.3V87.1l66 15.9c-8.6 17.2-14 36.4-14 57 0 70.7 57.3 128 128 128s128-57.3 128-128c0-20.6-5.3-39.8-14-57l96.3-23.2c18.2-4.4 18.2-27.1 0-31.5l-190.4-46c-13-3.1-26.7-3.1-39.7 0L13.6 48.2c-18.1 4.4-18.1 27.2 0 31.6z" ], + "user-lock": [ 640, 512, [], "f502", "M320 320c0-11.1 3.1-21.4 8.1-30.5-4.8-.5-9.5-1.5-14.5-1.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h280.9c-5.5-9.5-8.9-20.3-8.9-32V320zm-96-64c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm384 32h-32v-48c0-44.2-35.8-80-80-80s-80 35.8-80 80v48h-32c-17.7 0-32 14.3-32 32v160c0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32V320c0-17.7-14.3-32-32-32zm-80 0h-64v-48c0-17.6 14.4-32 32-32s32 14.4 32 32v48z" ], + "user-md": [ 448, 512, [], "f0f0", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zM104 424c0 13.3 10.7 24 24 24s24-10.7 24-24-10.7-24-24-24-24 10.7-24 24zm216-135.4v49c36.5 7.4 64 39.8 64 78.4v41.7c0 7.6-5.4 14.2-12.9 15.7l-32.2 6.4c-4.3.9-8.5-1.9-9.4-6.3l-3.1-15.7c-.9-4.3 1.9-8.6 6.3-9.4l19.3-3.9V416c0-62.8-96-65.1-96 1.9v26.7l19.3 3.9c4.3.9 7.1 5.1 6.3 9.4l-3.1 15.7c-.9 4.3-5.1 7.1-9.4 6.3l-31.2-4.2c-7.9-1.1-13.8-7.8-13.8-15.9V416c0-38.6 27.5-70.9 64-78.4v-45.2c-2.2.7-4.4 1.1-6.6 1.9-18 6.3-37.3 9.8-57.4 9.8s-39.4-3.5-57.4-9.8c-7.4-2.6-14.9-4.2-22.6-5.2v81.6c23.1 6.9 40 28.1 40 53.4 0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.3 16.9-46.5 40-53.4v-80.4C48.5 301 0 355.8 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-72-56.8-130.3-128-133.8z" ], + "user-minus": [ 640, 512, [], "f503", "M624 208H432c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" ], + "user-ninja": [ 448, 512, [], "f504", "M325.4 289.2L224 390.6 122.6 289.2C54 295.3 0 352.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-70.2-54-127.1-122.6-133.2zM32 192c27.3 0 51.8-11.5 69.2-29.7 15.1 53.9 64 93.7 122.8 93.7 70.7 0 128-57.3 128-128S294.7 0 224 0c-50.4 0-93.6 29.4-114.5 71.8C92.1 47.8 64 32 32 32c0 33.4 17.1 62.8 43.1 80-26 17.2-43.1 46.6-43.1 80zm144-96h96c17.7 0 32 14.3 32 32H144c0-17.7 14.3-32 32-32z" ], + "user-plus": [ 640, 512, [], "f234", "M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" ], + "user-secret": [ 448, 512, [], "f21b", "M383.9 308.3l23.9-62.6c4-10.5-3.7-21.7-15-21.7h-58.5c11-18.9 17.8-40.6 17.8-64v-.3c39.2-7.8 64-19.1 64-31.7 0-13.3-27.3-25.1-70.1-33-9.2-32.8-27-65.8-40.6-82.8-9.5-11.9-25.9-15.6-39.5-8.8l-27.6 13.8c-9 4.5-19.6 4.5-28.6 0L182.1 3.4c-13.6-6.8-30-3.1-39.5 8.8-13.5 17-31.4 50-40.6 82.8-42.7 7.9-70 19.7-70 33 0 12.6 24.8 23.9 64 31.7v.3c0 23.4 6.8 45.1 17.8 64H56.3c-11.5 0-19.2 11.7-14.7 22.3l25.8 60.2C27.3 329.8 0 372.7 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-48.4-25.8-90.4-64.1-114.1zM176 480l-41.6-192 49.6 32 24 40-32 120zm96 0l-32-120 24-40 49.6-32L272 480zm41.7-298.5c-3.9 11.9-7 24.6-16.5 33.4-10.1 9.3-48 22.4-64-25-2.8-8.4-15.4-8.4-18.3 0-17 50.2-56 32.4-64 25-9.5-8.8-12.7-21.5-16.5-33.4-.8-2.5-6.3-5.7-6.3-5.8v-10.8c28.3 3.6 61 5.8 96 5.8s67.7-2.1 96-5.8v10.8c-.1.1-5.6 3.2-6.4 5.8z" ], + "user-shield": [ 640, 512, [], "f505", "M622.3 271.1l-115.2-45c-4.1-1.6-12.6-3.7-22.2 0l-115.2 45c-10.7 4.2-17.7 14-17.7 24.9 0 111.6 68.7 188.8 132.9 213.9 9.6 3.7 18 1.6 22.2 0C558.4 489.9 640 420.5 640 296c0-10.9-7-20.7-17.7-24.9zM496 462.4V273.3l95.5 37.3c-5.6 87.1-60.9 135.4-95.5 151.8zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm96 40c0-2.5.8-4.8 1.1-7.2-2.5-.1-4.9-.8-7.5-.8h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c6.8 0 13.3-1.5 19.2-4-54-42.9-99.2-116.7-99.2-212z" ], + "user-slash": [ 640, 512, [], "f506", "M633.8 458.1L362.3 248.3C412.1 230.7 448 183.8 448 128 448 57.3 390.7 0 320 0c-67.1 0-121.5 51.8-126.9 117.4L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM96 422.4V464c0 26.5 21.5 48 48 48h350.2L207.4 290.3C144.2 301.3 96 356 96 422.4z" ], + "user-tag": [ 640, 512, [], "f507", "M630.6 364.9l-90.3-90.2c-12-12-28.3-18.7-45.3-18.7h-79.3c-17.7 0-32 14.3-32 32v79.2c0 17 6.7 33.2 18.7 45.2l90.3 90.2c12.5 12.5 32.8 12.5 45.3 0l92.5-92.5c12.6-12.5 12.6-32.7.1-45.2zm-182.8-21c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24c0 13.2-10.7 24-24 24zm-223.8-88c70.7 0 128-57.3 128-128C352 57.3 294.7 0 224 0S96 57.3 96 128c0 70.6 57.3 127.9 128 127.9zm127.8 111.2V294c-12.2-3.6-24.9-6.2-38.2-6.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 287.9 0 348.1 0 422.3v41.6c0 26.5 21.5 48 48 48h352c15.5 0 29.1-7.5 37.9-18.9l-58-58c-18.1-18.1-28.1-42.2-28.1-67.9z" ], + "user-tie": [ 448, 512, [], "f508", "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm95.8 32.6L272 480l-32-136 32-56h-96l32 56-32 136-47.8-191.4C56.9 292 0 350.3 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-72.1-56.9-130.4-128.2-133.8z" ], + "user-times": [ 640, 512, [], "f235", "M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" ], + users: [ 640, 512, [], "f0c0", "M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z" ], + "users-cog": [ 640, 512, [], "f509", "M610.5 341.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 368.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm224 32c1.9 0 3.7-.5 5.6-.6 8.3-21.7 20.5-42.1 36.3-59.2 7.4-8 17.9-12.6 28.9-12.6 6.9 0 13.7 1.8 19.6 5.3l7.9 4.6c.8-.5 1.6-.9 2.4-1.4 7-14.6 11.2-30.8 11.2-48 0-61.9-50.1-112-112-112S208 82.1 208 144c0 61.9 50.1 112 112 112zm105.2 194.5c-2.3-1.2-4.6-2.6-6.8-3.9-8.2 4.8-15.3 9.8-27.5 9.8-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-10.7-34.5 24.9-49.7 25.8-50.3-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-3.8-2.2-7-5-9.8-8.1-3.3.2-6.5.6-9.8.6-24.6 0-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h255.4c-3.7-6-6.2-12.8-6.2-20.3v-9.2zM173.1 274.6C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z" ], + "utensil-spoon": [ 512, 512, [], "f2e5", "M480.1 31.9c-55-55.1-164.9-34.5-227.8 28.5-49.3 49.3-55.1 110-28.8 160.4L9 413.2c-11.6 10.5-12.1 28.5-1 39.5L59.3 504c11 11 29.1 10.5 39.5-1.1l192.4-214.4c50.4 26.3 111.1 20.5 160.4-28.8 63-62.9 83.6-172.8 28.5-227.8z" ], + utensils: [ 416, 512, [], "f2e7", "M207.9 15.2c.8 4.7 16.1 94.5 16.1 128.8 0 52.3-27.8 89.6-68.9 104.6L168 486.7c.7 13.7-10.2 25.3-24 25.3H80c-13.7 0-24.7-11.5-24-25.3l12.9-238.1C27.7 233.6 0 196.2 0 144 0 109.6 15.3 19.9 16.1 15.2 19.3-5.1 61.4-5.4 64 16.3v141.2c1.3 3.4 15.1 3.2 16 0 1.4-25.3 7.9-139.2 8-141.8 3.3-20.8 44.7-20.8 47.9 0 .2 2.7 6.6 116.5 8 141.8.9 3.2 14.8 3.4 16 0V16.3c2.6-21.6 44.8-21.4 48-1.1zm119.2 285.7l-15 185.1c-1.2 14 9.9 26 23.9 26h56c13.3 0 24-10.7 24-24V24c0-13.2-10.7-24-24-24-82.5 0-221.4 178.5-64.9 300.9z" ], + "vector-square": [ 512, 512, [], "f5cb", "M512 128V32c0-17.67-14.33-32-32-32h-96c-17.67 0-32 14.33-32 32H160c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32v192c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32h192c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32V160c17.67 0 32-14.33 32-32zm-96-64h32v32h-32V64zM64 64h32v32H64V64zm32 384H64v-32h32v32zm352 0h-32v-32h32v32zm-32-96h-32c-17.67 0-32 14.33-32 32v32H160v-32c0-17.67-14.33-32-32-32H96V160h32c17.67 0 32-14.33 32-32V96h192v32c0 17.67 14.33 32 32 32h32v192z" ], + venus: [ 288, 512, [], "f221", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z" ], + "venus-double": [ 512, 512, [], "f226", "M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80zm336 140.4V368h36c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-36v36c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-36h-36c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h36v-51.6c-21.2-4.8-40.6-14.3-57.2-27.3 14-16.7 25-36 32.1-57.1 14.5 14.8 34.7 24 57.1 24 44.1 0 80-35.9 80-80s-35.9-80-80-80c-22.3 0-42.6 9.2-57.1 24-7.1-21.1-18-40.4-32.1-57.1C303.4 43.6 334.3 32 368 32c79.5 0 144 64.5 144 144 0 68.5-47.9 125.9-112 140.4z" ], + "venus-mars": [ 576, 512, [], "f228", "M564 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C422.5 72.1 396.2 64 368 64c-33.7 0-64.6 11.6-89.2 30.9 14 16.7 25 36 32.1 57.1 14.5-14.8 34.7-24 57.1-24 44.1 0 80 35.9 80 80s-35.9 80-80 80c-22.3 0-42.6-9.2-57.1-24-7.1 21.1-18 40.4-32.1 57.1 24.5 19.4 55.5 30.9 89.2 30.9 79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 64C64.5 64 0 128.5 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.6 112-71.9 112-140.4 0-79.5-64.5-144-144-144zm0 224c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" ], + vial: [ 480, 512, [], "f492", "M477.7 186.1L309.5 18.3c-3.1-3.1-8.2-3.1-11.3 0l-34 33.9c-3.1 3.1-3.1 8.2 0 11.3l11.2 11.1L33 316.5c-38.8 38.7-45.1 102-9.4 143.5 20.6 24 49.5 36 78.4 35.9 26.4 0 52.8-10 72.9-30.1l246.3-245.7 11.2 11.1c3.1 3.1 8.2 3.1 11.3 0l34-33.9c3.1-3 3.1-8.1 0-11.2zM318 256H161l148-147.7 78.5 78.3L318 256z" ], + vials: [ 640, 512, [], "f493", "M72 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H72c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64zm480 384H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM360 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64z" ], + video: [ 576, 512, [], "f03d", "M336.2 64H47.8C21.4 64 0 85.4 0 111.8v288.4C0 426.6 21.4 448 47.8 448h288.4c26.4 0 47.8-21.4 47.8-47.8V111.8c0-26.4-21.4-47.8-47.8-47.8zm189.4 37.7L416 177.3v157.4l109.6 75.5c21.2 14.6 50.4-.3 50.4-25.8V127.5c0-25.4-29.1-40.4-50.4-25.8z" ], + "video-slash": [ 640, 512, [], "f4e2", "M633.8 458.1l-55-42.5c15.4-1.4 29.2-13.7 29.2-31.1v-257c0-25.5-29.1-40.4-50.4-25.8L448 177.3v137.2l-32-24.7v-178c0-26.4-21.4-47.8-47.8-47.8H123.9L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4L42.7 82 416 370.6l178.5 138c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.5-6.9 4.2-17-2.8-22.4zM32 400.2c0 26.4 21.4 47.8 47.8 47.8h288.4c11.2 0 21.4-4 29.6-10.5L32 154.7v245.5z" ], + "volleyball-ball": [ 495, 512, [], "f45f", "M223.3 243.4c-.9-37-8.6-72.8-22.7-105.7-90.8 42.4-157.5 122.4-180.3 216.8 13.4 30.8 32.9 58.3 56.9 81.1 22.7-79.2 74.2-147.8 146.1-192.2zM186.4 109c-15-26.4-34.5-50.1-57.4-70.7C38 88.1-15.8 191.2 4 300.5c33.4-83.1 98.4-152 182.4-191.5zM374 274.1c8.6-99.8-27.3-197.5-97.5-264.4-14.7-1.7-51.6-5.5-98.9 8.5 57.3 59.3 91 138.2 93.5 222.7 32.5 17.7 67.3 29 102.9 33.2zm-124.7 9.5c-31.6 19.3-58.7 43.9-80.2 72.6 82 57.3 184.5 75.1 277.5 47.8 19.7-26.4 34.2-56.8 42.2-89.9-26.6 6.6-53.7 10.4-80.9 10.4-54.6-.1-108.9-14.1-158.6-40.9zM151 383.3c-15.2 26-25.7 54.4-32.1 84.2 37.6 23 81.7 36.5 129.1 36.5 61 0 116.7-22.1 159.9-58.6C295 461.5 204.6 420.6 151 383.3zM331.3 22.7c55.3 70.4 82.5 161.2 74.6 253.6 30.3.2 60.5-4.8 89.7-14.2 0-2 .3-4 .3-6 0-107.8-68.7-199.1-164.6-233.4z" ], + "volume-down": [ 384, 512, [], "f027", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zM384 256c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z" ], + "volume-off": [ 256, 512, [], "f026", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971z" ], + "volume-up": [ 576, 512, [], "f028", "M256 88.017v335.964c0 21.438-25.943 31.998-40.971 16.971L126.059 352H24c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h102.059l88.971-88.954c15.01-15.01 40.97-4.49 40.97 16.971zm182.056-77.876C422.982.92 403.283 5.668 394.061 20.745c-9.221 15.077-4.473 34.774 10.604 43.995C468.967 104.063 512 174.983 512 256c0 73.431-36.077 142.292-96.507 184.206-14.522 10.072-18.129 30.01-8.057 44.532 10.076 14.528 30.016 18.126 44.531 8.057C529.633 438.927 576 350.406 576 256c0-103.244-54.579-194.877-137.944-245.859zM480 256c0-68.547-36.15-129.777-91.957-163.901-15.076-9.22-34.774-4.471-43.994 10.607-9.22 15.078-4.471 34.774 10.607 43.994C393.067 170.188 416 211.048 416 256c0 41.964-20.62 81.319-55.158 105.276-14.521 10.073-18.128 30.01-8.056 44.532 6.216 8.96 16.185 13.765 26.322 13.765a31.862 31.862 0 0 0 18.21-5.709C449.091 377.953 480 318.938 480 256zm-96 0c0-33.717-17.186-64.35-45.972-81.944-15.079-9.214-34.775-4.463-43.992 10.616s-4.464 34.775 10.615 43.992C314.263 234.538 320 244.757 320 256a32.056 32.056 0 0 1-13.802 26.332c-14.524 10.069-18.136 30.006-8.067 44.53 10.07 14.525 30.008 18.136 44.53 8.067C368.546 316.983 384 287.478 384 256z" ], + walking: [ 320, 512, [], "f554", "M208 96c26.5 0 48-21.5 48-48S234.5 0 208 0s-48 21.5-48 48 21.5 48 48 48zm94.5 149.1l-23.3-11.8-9.7-29.4c-14.7-44.6-55.7-75.8-102.2-75.9-36-.1-55.9 10.1-93.3 25.2-21.6 8.7-39.3 25.2-49.7 46.2L17.6 213c-7.8 15.8-1.5 35 14.2 42.9 15.6 7.9 34.6 1.5 42.5-14.3L81 228c3.5-7 9.3-12.5 16.5-15.4l26.8-10.8-15.2 60.7c-5.2 20.8.4 42.9 14.9 58.8l59.9 65.4c7.2 7.9 12.3 17.4 14.9 27.7l18.3 73.3c4.3 17.1 21.7 27.6 38.8 23.3 17.1-4.3 27.6-21.7 23.3-38.8l-22.2-89c-2.6-10.3-7.7-19.9-14.9-27.7l-45.5-49.7 17.2-68.7 5.5 16.5c5.3 16.1 16.7 29.4 31.7 37l23.3 11.8c15.6 7.9 34.6 1.5 42.5-14.3 7.7-15.7 1.4-35.1-14.3-43zM73.6 385.8c-3.2 8.1-8 15.4-14.2 21.5l-50 50.1c-12.5 12.5-12.5 32.8 0 45.3s32.7 12.5 45.2 0l59.4-59.4c6.1-6.1 10.9-13.4 14.2-21.5l13.5-33.8c-55.3-60.3-38.7-41.8-47.4-53.7l-20.7 51.5z" ], + wallet: [ 512, 512, [], "f555", "M461.2 128H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h384c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h397.2c28.02 0 50.8-21.53 50.8-48V176c0-26.47-22.78-48-50.8-48zM416 336c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z" ], + warehouse: [ 640, 512, [], "f494", "M504 352H136.4c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0 96H136.1c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0-192H136.6c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm106.5-139L338.4 3.7a48.15 48.15 0 0 0-36.9 0L29.5 117C11.7 124.5 0 141.9 0 161.3V504c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V256c0-17.6 14.6-32 32.6-32h382.8c18 0 32.6 14.4 32.6 32v248c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V161.3c0-19.4-11.7-36.8-29.5-44.3z" ], + weight: [ 512, 512, [], "f496", "M448 64h-25.98C438.44 92.28 448 125.01 448 160c0 105.87-86.13 192-192 192S64 265.87 64 160c0-34.99 9.56-67.72 25.98-96H64C28.71 64 0 92.71 0 128v320c0 35.29 28.71 64 64 64h384c35.29 0 64-28.71 64-64V128c0-35.29-28.71-64-64-64zM256 320c88.37 0 160-71.63 160-160S344.37 0 256 0 96 71.63 96 160s71.63 160 160 160zm-.3-151.94l33.58-78.36c3.5-8.17 12.94-11.92 21.03-8.41 8.12 3.48 11.88 12.89 8.41 21l-33.67 78.55C291.73 188 296 197.45 296 208c0 22.09-17.91 40-40 40s-40-17.91-40-40c0-21.98 17.76-39.77 39.7-39.94z" ], + "weight-hanging": [ 512, 512, [], "f5cd", "M510.28 445.86l-73.03-292.13c-3.8-15.19-16.44-25.72-30.87-25.72h-60.25c3.57-10.05 5.88-20.72 5.88-32 0-53.02-42.98-96-96-96s-96 42.98-96 96c0 11.28 2.3 21.95 5.88 32h-60.25c-14.43 0-27.08 10.54-30.87 25.72L1.72 445.86C-6.61 479.17 16.38 512 48.03 512h415.95c31.64 0 54.63-32.83 46.3-66.14zM256 128c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z" ], + wheelchair: [ 512, 512, [], "f193", "M496.101 385.669l14.227 28.663c3.929 7.915.697 17.516-7.218 21.445l-65.465 32.886c-16.049 7.967-35.556 1.194-43.189-15.055L331.679 320H192c-15.925 0-29.426-11.71-31.679-27.475C126.433 55.308 128.38 70.044 128 64c0-36.358 30.318-65.635 67.052-63.929 33.271 1.545 60.048 28.905 60.925 62.201.868 32.933-23.152 60.423-54.608 65.039l4.67 32.69H336c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H215.182l4.572 32H352a32 32 0 0 1 28.962 18.392L438.477 396.8l36.178-18.349c7.915-3.929 17.517-.697 21.446 7.218zM311.358 352h-24.506c-7.788 54.204-54.528 96-110.852 96-61.757 0-112-50.243-112-112 0-41.505 22.694-77.809 56.324-97.156-3.712-25.965-6.844-47.86-9.488-66.333C45.956 198.464 0 261.963 0 336c0 97.047 78.953 176 176 176 71.87 0 133.806-43.308 161.11-105.192L311.358 352z" ], + wifi: [ 640, 512, [], "f1eb", "M384 416c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm136.659-124.443c6.465-6.465 6.245-17.065-.564-23.167-113.793-101.985-286.526-101.869-400.19 0-6.809 6.102-7.029 16.702-.564 23.167l34.006 34.006c5.927 5.927 15.464 6.32 21.769.796 82.88-72.609 207.074-72.447 289.768 0 6.305 5.524 15.842 5.132 21.769-.796l34.006-34.006zm112.11-113.718c6.385-6.385 6.254-16.816-.35-22.973-175.768-163.86-449.134-163.8-624.837 0-6.604 6.157-6.735 16.589-.35 22.973l33.966 33.966c6.095 6.095 15.891 6.231 22.224.383 144.763-133.668 368.356-133.702 513.156 0 6.333 5.848 16.129 5.712 22.224-.383l33.967-33.966z" ], + "window-close": [ 512, 512, [], "f410", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-83.6 290.5c4.8 4.8 4.8 12.6 0 17.4l-40.5 40.5c-4.8 4.8-12.6 4.8-17.4 0L256 313.3l-66.5 67.1c-4.8 4.8-12.6 4.8-17.4 0l-40.5-40.5c-4.8-4.8-4.8-12.6 0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6 0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1 66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8 4.8 12.6 0 17.4L313.3 256l67.1 66.5z" ], + "window-maximize": [ 512, 512, [], "f2d0", "M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16 160H64v-84c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12v84z" ], + "window-minimize": [ 512, 512, [], "f2d1", "M464 352H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48z" ], + "window-restore": [ 512, 512, [], "f2d2", "M512 48v288c0 26.5-21.5 48-48 48h-48V176c0-44.1-35.9-80-80-80H128V48c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zM384 176v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zm-68 28c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v52h252v-52z" ], + "wine-glass": [ 288, 512, [], "f4e3", "M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40z" ], + "wine-glass-alt": [ 288, 512, [], "f5ce", "M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM61.75 48h164.5l7.17 80H54.58l7.17-80z" ], + "won-sign": [ 576, 512, [], "f159", "M564 192c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-48.028l18.572-80.61c1.732-7.518-3.978-14.694-11.693-14.694h-46.107a11.998 11.998 0 0 0-11.736 9.5L450.73 128H340.839l-19.725-85.987a12 12 0 0 0-11.696-9.317H265.43a12 12 0 0 0-11.687 9.277L233.696 128H124.975L107.5 42.299a12 12 0 0 0-11.758-9.602H53.628c-7.686 0-13.39 7.124-11.709 14.624L60 128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h62.342l7.171 32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h83.856l40.927 182.624A12 12 0 0 0 148.492 480h56.767c5.583 0 10.428-3.85 11.689-9.288L259.335 288h55.086l42.386 182.712A12 12 0 0 0 368.496 480h56.826a12 12 0 0 0 11.694-9.306L479.108 288H564c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-70.146l7.373-32H564zm-425.976 0h80.757l-7.457 32h-66.776l-6.524-32zm45.796 150.029c-6.194 25.831-6.758 47.25-7.321 47.25h-1.126s-1.689-22.05-6.758-47.25L157.599 288h38.812l-12.591 54.029zM274.182 224l1.996-8.602c1.856-7.962 3.457-15.968 4.803-23.398h11.794c1.347 7.43 2.947 15.436 4.803 23.398l1.996 8.602h-25.392zm130.959 118.029c-5.068 25.2-6.758 47.25-6.758 47.25h-1.126c-.563 0-1.126-21.42-7.321-47.25L377.542 288h39.107l-11.508 54.029zM430.281 224h-67.42l-7.34-32h81.577l-6.817 32z" ], + wrench: [ 512, 512, [], "f0ad", "M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z" ], + "x-ray": [ 640, 512, [], "f497", "M240 384c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm160 32c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zM624 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zm0 448h-48V96H64v352H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM480 248c0 4.4-3.6 8-8 8H336v32h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48v-16h-64v16c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48h64v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-32H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h136v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-24c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v24h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h136c4.4 0 8 3.6 8 8v16z" ], + "yen-sign": [ 384, 512, [], "f157", "M351.208 32h-65.277a12 12 0 0 0-10.778 6.724l-55.39 113.163c-14.513 34.704-27.133 71.932-27.133 71.932h-1.262s-12.62-37.228-27.133-71.932l-55.39-113.163A11.997 11.997 0 0 0 98.068 32H32.792c-9.057 0-14.85 9.65-10.59 17.643L102.322 200H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h88.162L152 293.228V320H44c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h108v92c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-92h108c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12H232v-26.772L251.838 256H340c6.627 0 12-5.373 12-12v-32c0-6.627-5.373-12-12-12h-58.322l80.12-150.357C366.058 41.65 360.266 32 351.208 32z" ] + }; + !function(c) { + try { + c(); + } catch (c) { + if (!m) throw c; + } + }(function() { + !function c(l, z) { + var h = Object.keys(z).reduce(function(c, l) { + var h = z[l]; + return h.icon ? c[h.iconName] = h.icon : c[l] = h, c; + }, {}); + "function" == typeof t.hooks.addPack ? t.hooks.addPack(l, h) : t.styles[l] = M({}, t.styles[l] || {}, h), + "fas" === l && c("fa", z); + }("fas", f); + }); +}(), function() { + "use strict"; + var c = function() {}, l = {}, h = {}, z = null, v = { + mark: c, + measure: c + }; + try { + "undefined" != typeof window && (l = window), "undefined" != typeof document && (h = document), + "undefined" != typeof MutationObserver && (z = MutationObserver), "undefined" != typeof performance && (v = performance); + } catch (c) {} + var m = (l.navigator || {}).userAgent, s = void 0 === m ? "" : m, n = l, r = h, e = z, a = v, t = !!n.document, M = !!r.documentElement && !!r.head && "function" == typeof r.addEventListener && "function" == typeof r.createElement, p = ~s.indexOf("MSIE") || ~s.indexOf("Trident/"), f = "___FONT_AWESOME___", g = 16, i = "svg-inline--fa", b = "data-fa-i2svg", H = "data-fa-pseudo-element", V = "data-prefix", o = "data-icon", C = "fontawesome-i2svg", L = [ "HTML", "HEAD", "STYLE", "SCRIPT" ], u = function() { + try { + return !1; + } catch (c) { + return !1; + } + }(), d = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ], S = d.concat([ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ]), w = [ "class", "data-prefix", "data-icon", "data-fa-transform", "data-fa-mask" ], y = [ "xs", "sm", "lg", "fw", "ul", "li", "border", "pull-left", "pull-right", "spin", "pulse", "rotate-90", "rotate-180", "rotate-270", "flip-horizontal", "flip-vertical", "stack", "stack-1x", "stack-2x", "inverse", "layers", "layers-text", "layers-counter" ].concat(d.map(function(c) { + return c + "x"; + })).concat(S.map(function(c) { + return "w-" + c; + })), k = function(c, l) { + if (!(c instanceof l)) throw new TypeError("Cannot call a class as a function"); + }, x = function() { + function z(c, l) { + for (var h = 0; h < l.length; h++) { + var z = l[h]; + z.enumerable = z.enumerable || !1, z.configurable = !0, "value" in z && (z.writable = !0), + Object.defineProperty(c, z.key, z); + } + } + return function(c, l, h) { + return l && z(c.prototype, l), h && z(c, h), c; + }; + }(), A = Object.assign || function(c) { + for (var l = 1; l < arguments.length; l++) { + var h = arguments[l]; + for (var z in h) Object.prototype.hasOwnProperty.call(h, z) && (c[z] = h[z]); + } + return c; + }, q = function(c, l) { + if (Array.isArray(c)) return c; + if (Symbol.iterator in Object(c)) return function(c, l) { + var h = [], z = !0, v = !1, m = void 0; + try { + for (var s, e = c[Symbol.iterator](); !(z = (s = e.next()).done) && (h.push(s.value), + !l || h.length !== l); z = !0) ; + } catch (c) { + v = !0, m = c; + } finally { + try { + !z && e.return && e.return(); + } finally { + if (v) throw m; + } + } + return h; + }(c, l); + throw new TypeError("Invalid attempt to destructure non-iterable instance"); + }, j = function(c) { + if (Array.isArray(c)) { + for (var l = 0, h = Array(c.length); l < c.length; l++) h[l] = c[l]; + return h; + } + return Array.from(c); + }, O = n.FontAwesomeConfig || {}; + if (r && "function" == typeof r.querySelector) { + [ [ "data-family-prefix", "familyPrefix" ], [ "data-replacement-class", "replacementClass" ], [ "data-auto-replace-svg", "autoReplaceSvg" ], [ "data-auto-add-css", "autoAddCss" ], [ "data-auto-a11y", "autoA11y" ], [ "data-search-pseudo-elements", "searchPseudoElements" ], [ "data-observe-mutations", "observeMutations" ], [ "data-keep-original-source", "keepOriginalSource" ], [ "data-measure-performance", "measurePerformance" ], [ "data-show-missing-icons", "showMissingIcons" ] ].forEach(function(c) { + var l, h = q(c, 2), z = h[0], v = h[1], m = "" === (l = function(c) { + var l = r.querySelector("script[" + c + "]"); + if (l) return l.getAttribute(c); + }(z)) || "false" !== l && ("true" === l || l); + null != m && (O[v] = m); + }); + } + var N = A({ + familyPrefix: "fa", + replacementClass: i, + autoReplaceSvg: !0, + autoAddCss: !0, + autoA11y: !0, + searchPseudoElements: !1, + observeMutations: !0, + keepOriginalSource: !0, + measurePerformance: !1, + showMissingIcons: !0 + }, O); + N.autoReplaceSvg || (N.observeMutations = !1); + var E = A({}, N); + n.FontAwesomeConfig = E; + var P = n || {}; + P[f] || (P[f] = {}), P[f].styles || (P[f].styles = {}), P[f].hooks || (P[f].hooks = {}), + P[f].shims || (P[f].shims = []); + var T = P[f], _ = [], I = !1; + M && ((I = (r.documentElement.doScroll ? /^loaded|^c/ : /^loaded|^i|^c/).test(r.readyState)) || r.addEventListener("DOMContentLoaded", function c() { + r.removeEventListener("DOMContentLoaded", c), I = 1, _.map(function(c) { + return c(); + }); + })); + var R = function(c) { + M && (I ? setTimeout(c, 0) : _.push(c)); + }, F = g, B = { + size: 16, + x: 0, + y: 0, + rotate: 0, + flipX: !1, + flipY: !1 + }; + function D(c) { + if (c && M) { + var l = r.createElement("style"); + l.setAttribute("type", "text/css"), l.innerHTML = c; + for (var h = r.head.childNodes, z = null, v = h.length - 1; -1 < v; v--) { + var m = h[v], s = (m.tagName || "").toUpperCase(); + -1 < [ "STYLE", "LINK" ].indexOf(s) && (z = m); + } + return r.head.insertBefore(l, z), c; + } + } + var X = 0; + function W() { + return ++X; + } + function Y(c) { + for (var l = [], h = (c || []).length >>> 0; h--; ) l[h] = c[h]; + return l; + } + function U(c) { + return c.classList ? Y(c.classList) : (c.getAttribute("class") || "").split(" ").filter(function(c) { + return c; + }); + } + function K(c, l) { + var h, z = l.split("-"), v = z[0], m = z.slice(1).join("-"); + return v !== c || "" === m || (h = m, ~y.indexOf(h)) ? null : m; + } + function G(c) { + return ("" + c).replace(/&/g, "&").replace(/"/g, """).replace(/'/g, "'").replace(//g, ">"); + } + function J(h) { + return Object.keys(h || {}).reduce(function(c, l) { + return c + (l + ": ") + h[l] + ";"; + }, ""); + } + function Q(c) { + return c.size !== B.size || c.x !== B.x || c.y !== B.y || c.rotate !== B.rotate || c.flipX || c.flipY; + } + function Z(c) { + var l = c.transform, h = c.containerWidth, z = c.iconWidth; + return { + outer: { + transform: "translate(" + h / 2 + " 256)" + }, + inner: { + transform: "translate(" + 32 * l.x + ", " + 32 * l.y + ") " + " " + ("scale(" + l.size / 16 * (l.flipX ? -1 : 1) + ", " + l.size / 16 * (l.flipY ? -1 : 1) + ") ") + " " + ("rotate(" + l.rotate + " 0 0)") + }, + path: { + transform: "translate(" + z / 2 * -1 + " -256)" + } + }; + } + var $ = { + x: 0, + y: 0, + width: "100%", + height: "100%" + }, cc = function(c) { + var l = c.children, h = c.attributes, z = c.main, v = c.mask, m = c.transform, s = z.width, e = z.icon, a = v.width, t = v.icon, M = Z({ + transform: m, + containerWidth: a, + iconWidth: s + }), f = { + tag: "rect", + attributes: A({}, $, { + fill: "white" + }) + }, n = { + tag: "g", + attributes: A({}, M.inner), + children: [ { + tag: "path", + attributes: A({}, e.attributes, M.path, { + fill: "black" + }) + } ] + }, r = { + tag: "g", + attributes: A({}, M.outer), + children: [ n ] + }, i = "mask-" + W(), H = "clip-" + W(), V = { + tag: "defs", + children: [ { + tag: "clipPath", + attributes: { + id: H + }, + children: [ t ] + }, { + tag: "mask", + attributes: A({}, $, { + id: i, + maskUnits: "userSpaceOnUse", + maskContentUnits: "userSpaceOnUse" + }), + children: [ f, r ] + } ] + }; + return l.push(V, { + tag: "rect", + attributes: A({ + fill: "currentColor", + "clip-path": "url(#" + H + ")", + mask: "url(#" + i + ")" + }, $) + }), { + children: l, + attributes: h + }; + }, lc = function(c) { + var l = c.children, h = c.attributes, z = c.main, v = c.transform, m = J(c.styles); + if (0 < m.length && (h.style = m), Q(v)) { + var s = Z({ + transform: v, + containerWidth: z.width, + iconWidth: z.width + }); + l.push({ + tag: "g", + attributes: A({}, s.outer), + children: [ { + tag: "g", + attributes: A({}, s.inner), + children: [ { + tag: z.icon.tag, + children: z.icon.children, + attributes: A({}, z.icon.attributes, s.path) + } ] + } ] + }); + } else l.push(z.icon); + return { + children: l, + attributes: h + }; + }, hc = function(c) { + var l = c.children, h = c.main, z = c.mask, v = c.attributes, m = c.styles, s = c.transform; + if (Q(s) && h.found && !z.found) { + var e = h.width / h.height / 2, a = .5; + v.style = J(A({}, m, { + "transform-origin": e + s.x / 16 + "em " + (a + s.y / 16) + "em" + })); + } + return [ { + tag: "svg", + attributes: v, + children: l + } ]; + }, zc = function(c) { + var l = c.prefix, h = c.iconName, z = c.children, v = c.attributes, m = c.symbol, s = !0 === m ? l + "-" + E.familyPrefix + "-" + h : m; + return [ { + tag: "svg", + attributes: { + style: "display: none;" + }, + children: [ { + tag: "symbol", + attributes: A({}, v, { + id: s + }), + children: z + } ] + } ]; + }; + function vc(c) { + var l = c.icons, h = l.main, z = l.mask, v = c.prefix, m = c.iconName, s = c.transform, e = c.symbol, a = c.title, t = c.extra, M = c.watchable, f = void 0 !== M && M, n = z.found ? z : h, r = n.width, i = n.height, H = "fa-w-" + Math.ceil(r / i * 16), V = [ E.replacementClass, m ? E.familyPrefix + "-" + m : "", H ].filter(function(c) { + return -1 === t.classes.indexOf(c); + }).concat(t.classes).join(" "), o = { + children: [], + attributes: A({}, t.attributes, { + "data-prefix": v, + "data-icon": m, + class: V, + role: "img", + xmlns: "http://www.w3.org/2000/svg", + viewBox: "0 0 " + r + " " + i + }) + }; + f && (o.attributes[b] = ""), a && o.children.push({ + tag: "title", + attributes: { + id: o.attributes["aria-labelledby"] || "title-" + W() + }, + children: [ a ] + }); + var C = A({}, o, { + prefix: v, + iconName: m, + main: h, + mask: z, + transform: s, + symbol: e, + styles: t.styles + }), L = z.found && h.found ? cc(C) : lc(C), u = L.children, d = L.attributes; + return C.children = u, C.attributes = d, e ? zc(C) : hc(C); + } + function mc(c) { + var l = c.content, h = c.width, z = c.height, v = c.transform, m = c.title, s = c.extra, e = c.watchable, a = void 0 !== e && e, t = A({}, s.attributes, m ? { + title: m + } : {}, { + class: s.classes.join(" ") + }); + a && (t[b] = ""); + var M, f, n, r, i, H, V, o, C, L = A({}, s.styles); + Q(v) && (L.transform = (f = (M = { + transform: v, + startCentered: !0, + width: h, + height: z + }).transform, n = M.width, r = void 0 === n ? g : n, i = M.height, H = void 0 === i ? g : i, + V = M.startCentered, C = "", C += (o = void 0 !== V && V) && p ? "translate(" + (f.x / F - r / 2) + "em, " + (f.y / F - H / 2) + "em) " : o ? "translate(calc(-50% + " + f.x / F + "em), calc(-50% + " + f.y / F + "em)) " : "translate(" + f.x / F + "em, " + f.y / F + "em) ", + C += "scale(" + f.size / F * (f.flipX ? -1 : 1) + ", " + f.size / F * (f.flipY ? -1 : 1) + ") ", + C += "rotate(" + f.rotate + "deg) "), L["-webkit-transform"] = L.transform); + var u = J(L); + 0 < u.length && (t.style = u); + var d = []; + return d.push({ + tag: "span", + attributes: t, + children: [ l ] + }), m && d.push({ + tag: "span", + attributes: { + class: "sr-only" + }, + children: [ m ] + }), d; + } + var sc = function() {}, ec = E.measurePerformance && a && a.mark && a.measure ? a : { + mark: sc, + measure: sc + }, ac = 'FA "5.1.1"', tc = function(c) { + ec.mark(ac + " " + c + " ends"), ec.measure(ac + " " + c, ac + " " + c + " begins", ac + " " + c + " ends"); + }, Mc = { + begin: function(c) { + return ec.mark(ac + " " + c + " begins"), function() { + return tc(c); + }; + }, + end: tc + }, fc = function(c, l, h, z) { + var v, m, s, e, a, t = Object.keys(c), M = t.length, f = void 0 !== z ? (e = l, + a = z, function(c, l, h, z) { + return e.call(a, c, l, h, z); + }) : l; + for (void 0 === h ? (v = 1, s = c[t[0]]) : (v = 0, s = h); v < M; v++) s = f(s, c[m = t[v]], m, c); + return s; + }, nc = T.styles, rc = T.shims, ic = {}, Hc = {}, Vc = {}, oc = function() { + var c = function(z) { + return fc(nc, function(c, l, h) { + return c[h] = fc(l, z, {}), c; + }, {}); + }; + ic = c(function(c, l, h) { + return c[l[3]] = h, c; + }), Hc = c(function(l, c, h) { + var z = c[2]; + return l[h] = h, z.forEach(function(c) { + l[c] = h; + }), l; + }); + var m = "far" in nc; + Vc = fc(rc, function(c, l) { + var h = l[0], z = l[1], v = l[2]; + return "far" !== z || m || (z = "fas"), c[h] = { + prefix: z, + iconName: v + }, c; + }, {}); + }; + function Cc(c, l) { + return ic[c][l]; + } + oc(); + var Lc = T.styles, uc = function() { + return { + prefix: null, + iconName: null, + rest: [] + }; + }; + function dc(c) { + return c.reduce(function(c, l) { + var h = K(E.familyPrefix, l); + if (Lc[l]) c.prefix = l; else if (h) { + var z = "fa" === c.prefix ? Vc[h] || { + prefix: null, + iconName: null + } : {}; + c.iconName = z.iconName || h, c.prefix = z.prefix || c.prefix; + } else l !== E.replacementClass && 0 !== l.indexOf("fa-w-") && c.rest.push(l); + return c; + }, uc()); + } + function pc(c, l, h) { + if (c && c[l] && c[l][h]) return { + prefix: l, + iconName: h, + icon: c[l][h] + }; + } + function gc(c) { + var h, l = c.tag, z = c.attributes, v = void 0 === z ? {} : z, m = c.children, s = void 0 === m ? [] : m; + return "string" == typeof c ? G(c) : "<" + l + " " + (h = v, Object.keys(h || {}).reduce(function(c, l) { + return c + (l + '="') + G(h[l]) + '" '; + }, "").trim()) + ">" + s.map(gc).join("") + ""; + } + var bc = function() {}; + function Sc(c) { + return "string" == typeof (c.getAttribute ? c.getAttribute(b) : null); + } + var wc = { + replace: function(c) { + var l = c[0], h = c[1].map(function(c) { + return gc(c); + }).join("\n"); + if (l.parentNode && l.outerHTML) l.outerHTML = h + (E.keepOriginalSource && "svg" !== l.tagName.toLowerCase() ? "\x3c!-- " + l.outerHTML + " --\x3e" : ""); else if (l.parentNode) { + var z = document.createElement("span"); + l.parentNode.replaceChild(z, l), z.outerHTML = h; + } + }, + nest: function(c) { + var l = c[0], h = c[1]; + if (~U(l).indexOf(E.replacementClass)) return wc.replace(c); + var z = new RegExp(E.familyPrefix + "-.*"); + delete h[0].attributes.style; + var v = h[0].attributes.class.split(" ").reduce(function(c, l) { + return l === E.replacementClass || l.match(z) ? c.toSvg.push(l) : c.toNode.push(l), + c; + }, { + toNode: [], + toSvg: [] + }); + h[0].attributes.class = v.toSvg.join(" "); + var m = h.map(function(c) { + return gc(c); + }).join("\n"); + l.setAttribute("class", v.toNode.join(" ")), l.setAttribute(b, ""), l.innerHTML = m; + } + }; + function yc(h, c) { + var z = "function" == typeof c ? c : bc; + 0 === h.length ? z() : (n.requestAnimationFrame || function(c) { + return c(); + })(function() { + var c = !0 === E.autoReplaceSvg ? wc.replace : wc[E.autoReplaceSvg] || wc.replace, l = Mc.begin("mutate"); + h.map(c), l(), z(); + }); + } + var kc = !1; + var xc = null; + function Ac(c) { + if (e && E.observeMutations) { + var v = c.treeCallback, m = c.nodeCallback, s = c.pseudoElementsCallback, l = c.observeMutationsRoot, h = void 0 === l ? r.body : l; + xc = new e(function(c) { + kc || Y(c).forEach(function(c) { + if ("childList" === c.type && 0 < c.addedNodes.length && !Sc(c.addedNodes[0]) && (E.searchPseudoElements && s(c.target), + v(c.target)), "attributes" === c.type && c.target.parentNode && E.searchPseudoElements && s(c.target.parentNode), + "attributes" === c.type && Sc(c.target) && ~w.indexOf(c.attributeName)) if ("class" === c.attributeName) { + var l = dc(U(c.target)), h = l.prefix, z = l.iconName; + h && c.target.setAttribute("data-prefix", h), z && c.target.setAttribute("data-icon", z); + } else m(c.target); + }); + }), M && xc.observe(h, { + childList: !0, + attributes: !0, + characterData: !0, + subtree: !0 + }); + } + } + var qc = function(c) { + var l = c.getAttribute("style"), h = []; + return l && (h = l.split(";").reduce(function(c, l) { + var h = l.split(":"), z = h[0], v = h.slice(1); + return z && 0 < v.length && (c[z] = v.join(":").trim()), c; + }, {})), h; + }; + function jc(c) { + for (var l = "", h = 0; h < c.length; h++) { + l += ("000" + c.charCodeAt(h).toString(16)).slice(-4); + } + return l; + } + var Oc = function(c) { + var l, h, z = c.getAttribute("data-prefix"), v = c.getAttribute("data-icon"), m = void 0 !== c.innerText ? c.innerText.trim() : "", s = dc(U(c)); + return z && v && (s.prefix = z, s.iconName = v), s.prefix && 1 < m.length ? s.iconName = (l = s.prefix, + h = c.innerText, Hc[l][h]) : s.prefix && 1 === m.length && (s.iconName = Cc(s.prefix, jc(c.innerText))), + s; + }, Nc = function(c) { + var l = { + size: 16, + x: 0, + y: 0, + flipX: !1, + flipY: !1, + rotate: 0 + }; + return c ? c.toLowerCase().split(" ").reduce(function(c, l) { + var h = l.toLowerCase().split("-"), z = h[0], v = h.slice(1).join("-"); + if (z && "h" === v) return c.flipX = !0, c; + if (z && "v" === v) return c.flipY = !0, c; + if (v = parseFloat(v), isNaN(v)) return c; + switch (z) { + case "grow": + c.size = c.size + v; + break; + + case "shrink": + c.size = c.size - v; + break; + + case "left": + c.x = c.x - v; + break; + + case "right": + c.x = c.x + v; + break; + + case "up": + c.y = c.y - v; + break; + + case "down": + c.y = c.y + v; + break; + + case "rotate": + c.rotate = c.rotate + v; + } + return c; + }, l) : l; + }, Ec = function(c) { + return Nc(c.getAttribute("data-fa-transform")); + }, Pc = function(c) { + var l = c.getAttribute("data-fa-symbol"); + return null !== l && ("" === l || l); + }, Tc = function(c) { + var l = Y(c.attributes).reduce(function(c, l) { + return "class" !== c.name && "style" !== c.name && (c[l.name] = l.value), c; + }, {}), h = c.getAttribute("title"); + return E.autoA11y && (h ? l["aria-labelledby"] = E.replacementClass + "-title-" + W() : l["aria-hidden"] = "true"), + l; + }, _c = function(c) { + var l = c.getAttribute("data-fa-mask"); + return l ? dc(l.split(" ").map(function(c) { + return c.trim(); + })) : uc(); + }, Ic = { + iconName: null, + title: null, + prefix: null, + transform: B, + symbol: !1, + mask: null, + extra: { + classes: [], + styles: {}, + attributes: {} + } + }; + function Rc(c) { + this.name = "MissingIcon", this.message = c || "Icon unavailable", this.stack = new Error().stack; + } + (Rc.prototype = Object.create(Error.prototype)).constructor = Rc; + var Fc = { + fill: "currentColor" + }, Bc = { + attributeType: "XML", + repeatCount: "indefinite", + dur: "2s" + }, Dc = { + tag: "path", + attributes: A({}, Fc, { + d: "M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z" + }) + }, Xc = A({}, Bc, { + attributeName: "opacity" + }), Wc = { + tag: "g", + children: [ Dc, { + tag: "circle", + attributes: A({}, Fc, { + cx: "256", + cy: "364", + r: "28" + }), + children: [ { + tag: "animate", + attributes: A({}, Bc, { + attributeName: "r", + values: "28;14;28;28;14;28;" + }) + }, { + tag: "animate", + attributes: A({}, Xc, { + values: "1;0;1;1;0;1;" + }) + } ] + }, { + tag: "path", + attributes: A({}, Fc, { + opacity: "1", + d: "M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z" + }), + children: [ { + tag: "animate", + attributes: A({}, Xc, { + values: "1;0;0;0;0;1;" + }) + } ] + }, { + tag: "path", + attributes: A({}, Fc, { + opacity: "0", + d: "M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z" + }), + children: [ { + tag: "animate", + attributes: A({}, Xc, { + values: "0;0;1;1;0;0;" + }) + } ] + } ] + }, Yc = T.styles, Uc = "fa-layers-text", Kc = /Font Awesome 5 (Solid|Regular|Light|Brands|Free|Pro)/, Gc = { + Solid: "fas", + Regular: "far", + Light: "fal", + Brands: "fab" + }, Jc = { + 900: "fas", + 400: "far", + 300: "fal" + }; + function Qc(c, l) { + var h = { + found: !1, + width: 512, + height: 512, + icon: Wc + }; + if (c && l && Yc[l] && Yc[l][c]) { + var z = Yc[l][c]; + h = { + found: !0, + width: z[0], + height: z[1], + icon: { + tag: "path", + attributes: { + fill: "currentColor", + d: z.slice(4)[0] + } + } + }; + } else if (c && l && !E.showMissingIcons) throw new Rc("Icon is missing for prefix " + l + " with icon name " + c); + return h; + } + function Zc(c) { + var l, h, z, v, m, s, e, a, t, M, f, n, r, i, H, V, o, C, L, u = (h = Oc(l = c), + z = h.iconName, v = h.prefix, m = h.rest, s = qc(l), e = Ec(l), a = Pc(l), t = Tc(l), + M = _c(l), { + iconName: z, + title: l.getAttribute("title"), + prefix: v, + transform: e, + symbol: a, + mask: M, + extra: { + classes: m, + styles: s, + attributes: t + } + }); + return ~u.extra.classes.indexOf(Uc) ? function(c, l) { + var h = l.title, z = l.transform, v = l.extra, m = null, s = null; + if (p) { + var e = parseInt(getComputedStyle(c).fontSize, 10), a = c.getBoundingClientRect(); + m = a.width / e, s = a.height / e; + } + return E.autoA11y && !h && (v.attributes["aria-hidden"] = "true"), [ c, mc({ + content: c.innerHTML, + width: m, + height: s, + transform: z, + title: h, + extra: v, + watchable: !0 + }) ]; + }(c, u) : (f = c, r = (n = u).iconName, i = n.title, H = n.prefix, V = n.transform, + o = n.symbol, C = n.mask, L = n.extra, [ f, vc({ + icons: { + main: Qc(r, H), + mask: Qc(C.iconName, C.prefix) + }, + prefix: H, + iconName: r, + transform: V, + symbol: o, + mask: C, + title: i, + extra: L, + watchable: !0 + }) ]); + } + function $c(c) { + if (M) { + var l = Mc.begin("searchPseudoElements"); + kc = !0, function() { + Y(c.querySelectorAll("*")).filter(function(c) { + return !(c.parentNode === document.head || ~L.indexOf(c.tagName.toUpperCase()) || c.getAttribute(H) || c.parentNode && "svg" === c.parentNode.tagName); + }).forEach(function(f) { + [ ":before", ":after" ].forEach(function(l) { + var c = Y(f.children).filter(function(c) { + return c.getAttribute(H) === l; + })[0], h = n.getComputedStyle(f, l), z = h.getPropertyValue("font-family").match(Kc), v = h.getPropertyValue("font-weight"); + if (c && !z) f.removeChild(c); else if (z) { + var m = h.getPropertyValue("content"), s = ~[ "Light", "Regular", "Solid", "Brands" ].indexOf(z[1]) ? Gc[z[1]] : Jc[v], e = Cc(s, jc(3 === m.length ? m.substr(1, 1) : m)); + if (!c || c.getAttribute(V) !== s || c.getAttribute(o) !== e) { + c && f.removeChild(c); + var a = Ic.extra; + a.attributes[H] = l; + var t = vc(A({}, Ic, { + icons: { + main: Qc(e, s), + mask: uc() + }, + prefix: s, + iconName: e, + extra: a, + watchable: !0 + })), M = r.createElement("svg"); + ":before" === l ? f.insertBefore(M, f.firstChild) : f.appendChild(M), M.outerHTML = t.map(function(c) { + return gc(c); + }).join("\n"); + } + } + }); + }); + }(), kc = !1, l(); + } + } + function cl(c) { + var l = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : null; + if (M) { + var h = r.documentElement.classList, z = function(c) { + return h.add(C + "-" + c); + }, v = function(c) { + return h.remove(C + "-" + c); + }, m = Object.keys(Yc), s = [ "." + Uc + ":not([" + b + "])" ].concat(m.map(function(c) { + return "." + c + ":not([" + b + "])"; + })).join(", "); + if (0 !== s.length) { + var e = Y(c.querySelectorAll(s)); + if (0 < e.length) { + z("pending"), v("complete"); + var a = Mc.begin("onTree"), t = e.reduce(function(c, l) { + try { + var h = Zc(l); + h && c.push(h); + } catch (c) { + u || c instanceof Rc && console.error(c); + } + return c; + }, []); + a(), yc(t, function() { + z("active"), z("complete"), v("pending"), "function" == typeof l && l(); + }); + } + } + } + } + function ll(c) { + var l = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : null, h = Zc(c); + h && yc([ h ], l); + } + var hl = function() { + var c = i, l = E.familyPrefix, h = E.replacementClass, z = 'svg:not(:root).svg-inline--fa {\n overflow: visible; }\n\n.svg-inline--fa {\n display: inline-block;\n font-size: inherit;\n height: 1em;\n overflow: visible;\n vertical-align: -.125em; }\n .svg-inline--fa.fa-lg {\n vertical-align: -.225em; }\n .svg-inline--fa.fa-w-1 {\n width: 0.0625em; }\n .svg-inline--fa.fa-w-2 {\n width: 0.125em; }\n .svg-inline--fa.fa-w-3 {\n width: 0.1875em; }\n .svg-inline--fa.fa-w-4 {\n width: 0.25em; }\n .svg-inline--fa.fa-w-5 {\n width: 0.3125em; }\n .svg-inline--fa.fa-w-6 {\n width: 0.375em; }\n .svg-inline--fa.fa-w-7 {\n width: 0.4375em; }\n .svg-inline--fa.fa-w-8 {\n width: 0.5em; }\n .svg-inline--fa.fa-w-9 {\n width: 0.5625em; }\n .svg-inline--fa.fa-w-10 {\n width: 0.625em; }\n .svg-inline--fa.fa-w-11 {\n width: 0.6875em; }\n .svg-inline--fa.fa-w-12 {\n width: 0.75em; }\n .svg-inline--fa.fa-w-13 {\n width: 0.8125em; }\n .svg-inline--fa.fa-w-14 {\n width: 0.875em; }\n .svg-inline--fa.fa-w-15 {\n width: 0.9375em; }\n .svg-inline--fa.fa-w-16 {\n width: 1em; }\n .svg-inline--fa.fa-w-17 {\n width: 1.0625em; }\n .svg-inline--fa.fa-w-18 {\n width: 1.125em; }\n .svg-inline--fa.fa-w-19 {\n width: 1.1875em; }\n .svg-inline--fa.fa-w-20 {\n width: 1.25em; }\n .svg-inline--fa.fa-pull-left {\n margin-right: .3em;\n width: auto; }\n .svg-inline--fa.fa-pull-right {\n margin-left: .3em;\n width: auto; }\n .svg-inline--fa.fa-border {\n height: 1.5em; }\n .svg-inline--fa.fa-li {\n width: 2em; }\n .svg-inline--fa.fa-fw {\n width: 1.25em; }\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0; }\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -.125em;\n width: 1em; }\n .fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center; }\n\n.fa-layers-text, .fa-layers-counter {\n display: inline-block;\n position: absolute;\n text-align: center; }\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center; }\n\n.fa-layers-counter {\n background-color: #ff253a;\n border-radius: 1em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #fff;\n height: 1.5em;\n line-height: 1;\n max-width: 5em;\n min-width: 1.5em;\n overflow: hidden;\n padding: .25em;\n right: 0;\n text-overflow: ellipsis;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right; }\n\n.fa-layers-bottom-right {\n bottom: 0;\n right: 0;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right; }\n\n.fa-layers-bottom-left {\n bottom: 0;\n left: 0;\n right: auto;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left; }\n\n.fa-layers-top-right {\n right: 0;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right; }\n\n.fa-layers-top-left {\n left: 0;\n right: auto;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top left;\n transform-origin: top left; }\n\n.fa-lg {\n font-size: 1.33333em;\n line-height: 0.75em;\n vertical-align: -.0667em; }\n\n.fa-xs {\n font-size: .75em; }\n\n.fa-sm {\n font-size: .875em; }\n\n.fa-1x {\n font-size: 1em; }\n\n.fa-2x {\n font-size: 2em; }\n\n.fa-3x {\n font-size: 3em; }\n\n.fa-4x {\n font-size: 4em; }\n\n.fa-5x {\n font-size: 5em; }\n\n.fa-6x {\n font-size: 6em; }\n\n.fa-7x {\n font-size: 7em; }\n\n.fa-8x {\n font-size: 8em; }\n\n.fa-9x {\n font-size: 9em; }\n\n.fa-10x {\n font-size: 10em; }\n\n.fa-fw {\n text-align: center;\n width: 1.25em; }\n\n.fa-ul {\n list-style-type: none;\n margin-left: 2.5em;\n padding-left: 0; }\n .fa-ul > li {\n position: relative; }\n\n.fa-li {\n left: -2em;\n position: absolute;\n text-align: center;\n width: 2em;\n line-height: inherit; }\n\n.fa-border {\n border: solid 0.08em #eee;\n border-radius: .1em;\n padding: .2em .25em .15em; }\n\n.fa-pull-left {\n float: left; }\n\n.fa-pull-right {\n float: right; }\n\n.fa.fa-pull-left,\n.fas.fa-pull-left,\n.far.fa-pull-left,\n.fal.fa-pull-left,\n.fab.fa-pull-left {\n margin-right: .3em; }\n\n.fa.fa-pull-right,\n.fas.fa-pull-right,\n.far.fa-pull-right,\n.fal.fa-pull-right,\n.fab.fa-pull-right {\n margin-left: .3em; }\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear; }\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8); }\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n.fa-rotate-90 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg); }\n\n.fa-rotate-180 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg); }\n\n.fa-rotate-270 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg); }\n\n.fa-flip-horizontal {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1); }\n\n.fa-flip-vertical {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1); }\n\n.fa-flip-horizontal.fa-flip-vertical {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1); }\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n -webkit-filter: none;\n filter: none; }\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n position: relative;\n width: 2em; }\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0; }\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1em; }\n\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2em; }\n\n.fa-inverse {\n color: #fff; }\n\n.sr-only {\n border: 0;\n clip: rect(0, 0, 0, 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px; }\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n clip: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n position: static;\n width: auto; }\n'; + if ("fa" !== l || h !== c) { + var v = new RegExp("\\.fa\\-", "g"), m = new RegExp("\\." + c, "g"); + z = z.replace(v, "." + l + "-").replace(m, "." + h); + } + return z; + }; + function zl(c) { + return { + found: !0, + width: c[0], + height: c[1], + icon: { + tag: "path", + attributes: { + fill: "currentColor", + d: c.slice(4)[0] + } + } + }; + } + function vl() { + E.autoAddCss && !tl && (D(hl()), tl = !0); + } + function ml(l, c) { + return Object.defineProperty(l, "abstract", { + get: c + }), Object.defineProperty(l, "html", { + get: function() { + return l.abstract.map(function(c) { + return gc(c); + }); + } + }), Object.defineProperty(l, "node", { + get: function() { + if (M) { + var c = r.createElement("div"); + return c.innerHTML = l.html, c.children; + } + } + }), l; + } + function sl(c) { + var l = c.prefix, h = void 0 === l ? "fa" : l, z = c.iconName; + if (z) return pc(al.definitions, h, z) || pc(T.styles, h, z); + } + var el, al = new (function() { + function c() { + k(this, c), this.definitions = {}; + } + return x(c, [ { + key: "add", + value: function() { + for (var l = this, c = arguments.length, h = Array(c), z = 0; z < c; z++) h[z] = arguments[z]; + var v = h.reduce(this._pullDefinitions, {}); + Object.keys(v).forEach(function(c) { + l.definitions[c] = A({}, l.definitions[c] || {}, v[c]), function c(l, z) { + var h = Object.keys(z).reduce(function(c, l) { + var h = z[l]; + return h.icon ? c[h.iconName] = h.icon : c[l] = h, c; + }, {}); + "function" == typeof T.hooks.addPack ? T.hooks.addPack(l, h) : T.styles[l] = A({}, T.styles[l] || {}, h), + "fas" === l && c("fa", z); + }(c, v[c]), oc(); + }); + } + }, { + key: "reset", + value: function() { + this.definitions = {}; + } + }, { + key: "_pullDefinitions", + value: function(m, c) { + var s = c.prefix && c.iconName && c.icon ? { + 0: c + } : c; + return Object.keys(s).map(function(c) { + var l = s[c], h = l.prefix, z = l.iconName, v = l.icon; + m[h] || (m[h] = {}), m[h][z] = v; + }), m; + } + } ]), c; + }())(), tl = !1, Ml = { + i2svg: function() { + var c = 0 < arguments.length && void 0 !== arguments[0] ? arguments[0] : {}; + if (M) { + vl(); + var l = c.node, h = void 0 === l ? r : l, z = c.callback, v = void 0 === z ? function() {} : z; + E.searchPseudoElements && $c(h), cl(h, v); + } + }, + css: hl, + insertCss: function() { + tl || (D(hl()), tl = !0); + }, + watch: function() { + var c = 0 < arguments.length && void 0 !== arguments[0] ? arguments[0] : {}, l = c.autoReplaceSvgRoot, h = c.observeMutationsRoot; + !1 === E.autoReplaceSvg && (E.autoReplaceSvg = !0), E.observeMutations = !0, R(function() { + rl({ + autoReplaceSvgRoot: l + }), Ac({ + treeCallback: cl, + nodeCallback: ll, + pseudoElementsCallback: $c, + observeMutationsRoot: h + }); + }); + } + }, fl = (el = function(c) { + var l = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : {}, h = l.transform, z = void 0 === h ? B : h, v = l.symbol, m = void 0 !== v && v, s = l.mask, e = void 0 === s ? null : s, a = l.title, t = void 0 === a ? null : a, M = l.classes, f = void 0 === M ? [] : M, n = l.attributes, r = void 0 === n ? {} : n, i = l.styles, H = void 0 === i ? {} : i; + if (c) { + var V = c.prefix, o = c.iconName, C = c.icon; + return ml(A({ + type: "icon" + }, c), function() { + return vl(), E.autoA11y && (t ? r["aria-labelledby"] = E.replacementClass + "-title-" + W() : r["aria-hidden"] = "true"), + vc({ + icons: { + main: zl(C), + mask: e ? zl(e.icon) : { + found: !1, + width: null, + height: null, + icon: {} + } + }, + prefix: V, + iconName: o, + transform: A({}, B, z), + symbol: m, + title: t, + extra: { + attributes: r, + styles: H, + classes: f + } + }); + }); + } + }, function(c) { + var l = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : {}, h = (c || {}).icon ? c : sl(c || {}), z = l.mask; + return z && (z = (z || {}).icon ? z : sl(z || {})), el(h, A({}, l, { + mask: z + })); + }), nl = { + noAuto: function() { + E.autoReplaceSvg = !1, E.observeMutations = !1, xc && xc.disconnect(); + }, + config: E, + dom: Ml, + library: al, + parse: { + transform: function(c) { + return Nc(c); + } + }, + findIconDefinition: sl, + icon: fl, + text: function(c) { + var l = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : {}, h = l.transform, z = void 0 === h ? B : h, v = l.title, m = void 0 === v ? null : v, s = l.classes, e = void 0 === s ? [] : s, a = l.attributes, t = void 0 === a ? {} : a, M = l.styles, f = void 0 === M ? {} : M; + return ml({ + type: "text", + content: c + }, function() { + return vl(), mc({ + content: c, + transform: A({}, B, z), + title: m, + extra: { + attributes: t, + styles: f, + classes: [ E.familyPrefix + "-layers-text" ].concat(j(e)) + } + }); + }); + }, + counter: function(c) { + var l = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : {}, h = l.title, z = void 0 === h ? null : h, v = l.classes, m = void 0 === v ? [] : v, s = l.attributes, e = void 0 === s ? {} : s, a = l.styles, t = void 0 === a ? {} : a; + return ml({ + type: "counter", + content: c + }, function() { + return vl(), function(c) { + var l = c.content, h = c.title, z = c.extra, v = A({}, z.attributes, h ? { + title: h + } : {}, { + class: z.classes.join(" ") + }), m = J(z.styles); + 0 < m.length && (v.style = m); + var s = []; + return s.push({ + tag: "span", + attributes: v, + children: [ l ] + }), h && s.push({ + tag: "span", + attributes: { + class: "sr-only" + }, + children: [ h ] + }), s; + }({ + content: c.toString(), + title: z, + extra: { + attributes: e, + styles: t, + classes: [ E.familyPrefix + "-layers-counter" ].concat(j(m)) + } + }); + }); + }, + layer: function(c) { + return ml({ + type: "layer" + }, function() { + vl(); + var l = []; + return c(function(c) { + Array.isArray(c) ? c.map(function(c) { + l = l.concat(c.abstract); + }) : l = l.concat(c.abstract); + }), [ { + tag: "span", + attributes: { + class: E.familyPrefix + "-layers" + }, + children: l + } ]; + }); + }, + toHtml: gc + }, rl = function() { + var c = (0 < arguments.length && void 0 !== arguments[0] ? arguments[0] : {}).autoReplaceSvgRoot, l = void 0 === c ? r : c; + 0 < Object.keys(T.styles).length && M && E.autoReplaceSvg && nl.dom.i2svg({ + node: l + }); + }; + !function(c) { + try { + c(); + } catch (c) { + if (!u) throw c; + } + }(function() { + t && (n.FontAwesome || (n.FontAwesome = nl), R(function() { + rl(), Ac({ + treeCallback: cl, + nodeCallback: ll, + pseudoElementsCallback: $c + }); + })), T.hooks = A({}, T.hooks, { + addPack: function(c, l) { + T.styles[c] = A({}, T.styles[c] || {}, l), oc(), rl(); + }, + addShims: function(c) { + var l; + (l = T.shims).push.apply(l, j(c)), oc(), rl(); + } + }); + }); +}(); \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fontawesome.js b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fontawesome.js new file mode 100644 index 0000000000..568cf6eef9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fontawesome.js @@ -0,0 +1,1978 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +(function () { +'use strict'; + +var noop = function noop() {}; + +var _WINDOW = {}; +var _DOCUMENT = {}; +var _MUTATION_OBSERVER$1 = null; +var _PERFORMANCE = { mark: noop, measure: noop }; + +try { + if (typeof window !== 'undefined') _WINDOW = window; + if (typeof document !== 'undefined') _DOCUMENT = document; + if (typeof MutationObserver !== 'undefined') _MUTATION_OBSERVER$1 = MutationObserver; + if (typeof performance !== 'undefined') _PERFORMANCE = performance; +} catch (e) {} + +var _ref = _WINDOW.navigator || {}; +var _ref$userAgent = _ref.userAgent; +var userAgent = _ref$userAgent === undefined ? '' : _ref$userAgent; + +var WINDOW = _WINDOW; +var DOCUMENT = _DOCUMENT; +var MUTATION_OBSERVER = _MUTATION_OBSERVER$1; +var PERFORMANCE = _PERFORMANCE; +var IS_BROWSER = !!WINDOW.document; +var IS_DOM = !!DOCUMENT.documentElement && !!DOCUMENT.head && typeof DOCUMENT.addEventListener === 'function' && typeof DOCUMENT.createElement === 'function'; +var IS_IE = ~userAgent.indexOf('MSIE') || ~userAgent.indexOf('Trident/'); + +var NAMESPACE_IDENTIFIER = '___FONT_AWESOME___'; +var UNITS_IN_GRID = 16; +var DEFAULT_FAMILY_PREFIX = 'fa'; +var DEFAULT_REPLACEMENT_CLASS = 'svg-inline--fa'; +var DATA_FA_I2SVG = 'data-fa-i2svg'; +var DATA_FA_PSEUDO_ELEMENT = 'data-fa-pseudo-element'; +var DATA_PREFIX = 'data-prefix'; +var DATA_ICON = 'data-icon'; +var HTML_CLASS_I2SVG_BASE_CLASS = 'fontawesome-i2svg'; +var TAGNAMES_TO_SKIP_FOR_PSEUDOELEMENTS = ['HTML', 'HEAD', 'STYLE', 'SCRIPT']; +var PRODUCTION = function () { + try { + return undefined === 'production'; + } catch (e) { + return false; + } +}(); + +var oneToTen = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var oneToTwenty = oneToTen.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]); + +var ATTRIBUTES_WATCHED_FOR_MUTATION = ['class', 'data-prefix', 'data-icon', 'data-fa-transform', 'data-fa-mask']; + +var RESERVED_CLASSES = ['xs', 'sm', 'lg', 'fw', 'ul', 'li', 'border', 'pull-left', 'pull-right', 'spin', 'pulse', 'rotate-90', 'rotate-180', 'rotate-270', 'flip-horizontal', 'flip-vertical', 'stack', 'stack-1x', 'stack-2x', 'inverse', 'layers', 'layers-text', 'layers-counter'].concat(oneToTen.map(function (n) { + return n + 'x'; +})).concat(oneToTwenty.map(function (n) { + return 'w-' + n; +})); + +var classCallCheck = function (instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function"); + } +}; + +var createClass = function () { + function defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } + } + + return function (Constructor, protoProps, staticProps) { + if (protoProps) defineProperties(Constructor.prototype, protoProps); + if (staticProps) defineProperties(Constructor, staticProps); + return Constructor; + }; +}(); + + + +var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + + + +var slicedToArray = function () { + function sliceIterator(arr, i) { + var _arr = []; + var _n = true; + var _d = false; + var _e = undefined; + + try { + for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { + _arr.push(_s.value); + + if (i && _arr.length === i) break; + } + } catch (err) { + _d = true; + _e = err; + } finally { + try { + if (!_n && _i["return"]) _i["return"](); + } finally { + if (_d) throw _e; + } + } + + return _arr; + } + + return function (arr, i) { + if (Array.isArray(arr)) { + return arr; + } else if (Symbol.iterator in Object(arr)) { + return sliceIterator(arr, i); + } else { + throw new TypeError("Invalid attempt to destructure non-iterable instance"); + } + }; +}(); + +var toConsumableArray = function (arr) { + if (Array.isArray(arr)) { + for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) arr2[i] = arr[i]; + + return arr2; + } else { + return Array.from(arr); + } +}; + +var initial = WINDOW.FontAwesomeConfig || {}; + +function getAttrConfig(attr) { + var element = DOCUMENT.querySelector('script[' + attr + ']'); + + if (element) { + return element.getAttribute(attr); + } +} + +function coerce(val) { + // Getting an empty string will occur if the attribute is set on the HTML tag but without a value + // We'll assume that this is an indication that it should be toggled to true + // For example + if (val === '') return true; + if (val === 'false') return false; + if (val === 'true') return true; + return val; +} + +if (DOCUMENT && typeof DOCUMENT.querySelector === 'function') { + var attrs = [['data-family-prefix', 'familyPrefix'], ['data-replacement-class', 'replacementClass'], ['data-auto-replace-svg', 'autoReplaceSvg'], ['data-auto-add-css', 'autoAddCss'], ['data-auto-a11y', 'autoA11y'], ['data-search-pseudo-elements', 'searchPseudoElements'], ['data-observe-mutations', 'observeMutations'], ['data-keep-original-source', 'keepOriginalSource'], ['data-measure-performance', 'measurePerformance'], ['data-show-missing-icons', 'showMissingIcons']]; + + attrs.forEach(function (_ref) { + var _ref2 = slicedToArray(_ref, 2), + attr = _ref2[0], + key = _ref2[1]; + + var val = coerce(getAttrConfig(attr)); + + if (val !== undefined && val !== null) { + initial[key] = val; + } + }); +} + +var _default = _extends({ + familyPrefix: DEFAULT_FAMILY_PREFIX, + replacementClass: DEFAULT_REPLACEMENT_CLASS, + autoReplaceSvg: true, + autoAddCss: true, + autoA11y: true, + searchPseudoElements: false, + observeMutations: true, + keepOriginalSource: true, + measurePerformance: false, + showMissingIcons: true +}, initial); + +if (!_default.autoReplaceSvg) _default.observeMutations = false; + +var config = _extends({}, _default); + +WINDOW.FontAwesomeConfig = config; + +var w = WINDOW || {}; + +if (!w[NAMESPACE_IDENTIFIER]) w[NAMESPACE_IDENTIFIER] = {}; +if (!w[NAMESPACE_IDENTIFIER].styles) w[NAMESPACE_IDENTIFIER].styles = {}; +if (!w[NAMESPACE_IDENTIFIER].hooks) w[NAMESPACE_IDENTIFIER].hooks = {}; +if (!w[NAMESPACE_IDENTIFIER].shims) w[NAMESPACE_IDENTIFIER].shims = []; + +var namespace = w[NAMESPACE_IDENTIFIER]; + +var functions = []; +var listener = function listener() { + DOCUMENT.removeEventListener('DOMContentLoaded', listener); + loaded = 1; + functions.map(function (fn) { + return fn(); + }); +}; + +var loaded = false; + +if (IS_DOM) { + loaded = (DOCUMENT.documentElement.doScroll ? /^loaded|^c/ : /^loaded|^i|^c/).test(DOCUMENT.readyState); + + if (!loaded) DOCUMENT.addEventListener('DOMContentLoaded', listener); +} + +var domready = function (fn) { + if (!IS_DOM) return; + loaded ? setTimeout(fn, 0) : functions.push(fn); +}; + +var d = UNITS_IN_GRID; + +var meaninglessTransform = { + size: 16, + x: 0, + y: 0, + rotate: 0, + flipX: false, + flipY: false +}; + +function isReserved(name) { + return ~RESERVED_CLASSES.indexOf(name); +} + +function bunker(fn) { + try { + fn(); + } catch (e) { + if (!PRODUCTION) { + throw e; + } + } +} + +function insertCss(css) { + if (!css || !IS_DOM) { + return; + } + + var style = DOCUMENT.createElement('style'); + style.setAttribute('type', 'text/css'); + style.innerHTML = css; + + var headChildren = DOCUMENT.head.childNodes; + var beforeChild = null; + + for (var i = headChildren.length - 1; i > -1; i--) { + var child = headChildren[i]; + var tagName = (child.tagName || '').toUpperCase(); + if (['STYLE', 'LINK'].indexOf(tagName) > -1) { + beforeChild = child; + } + } + + DOCUMENT.head.insertBefore(style, beforeChild); + + return css; +} + +var _uniqueId = 0; + +function nextUniqueId() { + _uniqueId++; + + return _uniqueId; +} + +function toArray(obj) { + var array = []; + + for (var i = (obj || []).length >>> 0; i--;) { + array[i] = obj[i]; + } + + return array; +} + +function classArray(node) { + if (node.classList) { + return toArray(node.classList); + } else { + return (node.getAttribute('class') || '').split(' ').filter(function (i) { + return i; + }); + } +} + +function getIconName(familyPrefix, cls) { + var parts = cls.split('-'); + var prefix = parts[0]; + var iconName = parts.slice(1).join('-'); + + if (prefix === familyPrefix && iconName !== '' && !isReserved(iconName)) { + return iconName; + } else { + return null; + } +} + +function htmlEscape(str) { + return ('' + str).replace(/&/g, '&').replace(/"/g, '"').replace(/'/g, ''').replace(//g, '>'); +} + +function joinAttributes(attributes) { + return Object.keys(attributes || {}).reduce(function (acc, attributeName) { + return acc + (attributeName + '="' + htmlEscape(attributes[attributeName]) + '" '); + }, '').trim(); +} + +function joinStyles(styles) { + return Object.keys(styles || {}).reduce(function (acc, styleName) { + return acc + (styleName + ': ' + styles[styleName] + ';'); + }, ''); +} + +function transformIsMeaningful(transform) { + return transform.size !== meaninglessTransform.size || transform.x !== meaninglessTransform.x || transform.y !== meaninglessTransform.y || transform.rotate !== meaninglessTransform.rotate || transform.flipX || transform.flipY; +} + +function transformForSvg(_ref) { + var transform = _ref.transform, + containerWidth = _ref.containerWidth, + iconWidth = _ref.iconWidth; + + var outer = { + transform: 'translate(' + containerWidth / 2 + ' 256)' + }; + var innerTranslate = 'translate(' + transform.x * 32 + ', ' + transform.y * 32 + ') '; + var innerScale = 'scale(' + transform.size / 16 * (transform.flipX ? -1 : 1) + ', ' + transform.size / 16 * (transform.flipY ? -1 : 1) + ') '; + var innerRotate = 'rotate(' + transform.rotate + ' 0 0)'; + var inner = { + transform: innerTranslate + ' ' + innerScale + ' ' + innerRotate + }; + var path = { + transform: 'translate(' + iconWidth / 2 * -1 + ' -256)' + }; + return { + outer: outer, + inner: inner, + path: path + }; +} + +function transformForCss(_ref2) { + var transform = _ref2.transform, + _ref2$width = _ref2.width, + width = _ref2$width === undefined ? UNITS_IN_GRID : _ref2$width, + _ref2$height = _ref2.height, + height = _ref2$height === undefined ? UNITS_IN_GRID : _ref2$height, + _ref2$startCentered = _ref2.startCentered, + startCentered = _ref2$startCentered === undefined ? false : _ref2$startCentered; + + var val = ''; + + if (startCentered && IS_IE) { + val += 'translate(' + (transform.x / d - width / 2) + 'em, ' + (transform.y / d - height / 2) + 'em) '; + } else if (startCentered) { + val += 'translate(calc(-50% + ' + transform.x / d + 'em), calc(-50% + ' + transform.y / d + 'em)) '; + } else { + val += 'translate(' + transform.x / d + 'em, ' + transform.y / d + 'em) '; + } + + val += 'scale(' + transform.size / d * (transform.flipX ? -1 : 1) + ', ' + transform.size / d * (transform.flipY ? -1 : 1) + ') '; + val += 'rotate(' + transform.rotate + 'deg) '; + + return val; +} + +var ALL_SPACE = { + x: 0, + y: 0, + width: '100%', + height: '100%' +}; + +var makeIconMasking = function (_ref) { + var children = _ref.children, + attributes = _ref.attributes, + main = _ref.main, + mask = _ref.mask, + transform = _ref.transform; + var mainWidth = main.width, + mainPath = main.icon; + var maskWidth = mask.width, + maskPath = mask.icon; + + + var trans = transformForSvg({ transform: transform, containerWidth: maskWidth, iconWidth: mainWidth }); + + var maskRect = { + tag: 'rect', + attributes: _extends({}, ALL_SPACE, { + fill: 'white' + }) + }; + var maskInnerGroup = { + tag: 'g', + attributes: _extends({}, trans.inner), + children: [{ tag: 'path', attributes: _extends({}, mainPath.attributes, trans.path, { fill: 'black' }) }] + }; + var maskOuterGroup = { + tag: 'g', + attributes: _extends({}, trans.outer), + children: [maskInnerGroup] + }; + var maskId = 'mask-' + nextUniqueId(); + var clipId = 'clip-' + nextUniqueId(); + var maskTag = { + tag: 'mask', + attributes: _extends({}, ALL_SPACE, { + id: maskId, + maskUnits: 'userSpaceOnUse', + maskContentUnits: 'userSpaceOnUse' + }), + children: [maskRect, maskOuterGroup] + }; + var defs = { + tag: 'defs', + children: [{ tag: 'clipPath', attributes: { id: clipId }, children: [maskPath] }, maskTag] + }; + + children.push(defs, { tag: 'rect', attributes: _extends({ fill: 'currentColor', 'clip-path': 'url(#' + clipId + ')', mask: 'url(#' + maskId + ')' }, ALL_SPACE) }); + + return { + children: children, + attributes: attributes + }; +}; + +var makeIconStandard = function (_ref) { + var children = _ref.children, + attributes = _ref.attributes, + main = _ref.main, + transform = _ref.transform, + styles = _ref.styles; + + var styleString = joinStyles(styles); + + if (styleString.length > 0) { + attributes['style'] = styleString; + } + + if (transformIsMeaningful(transform)) { + var trans = transformForSvg({ transform: transform, containerWidth: main.width, iconWidth: main.width }); + children.push({ + tag: 'g', + attributes: _extends({}, trans.outer), + children: [{ + tag: 'g', + attributes: _extends({}, trans.inner), + children: [{ + tag: main.icon.tag, + children: main.icon.children, + attributes: _extends({}, main.icon.attributes, trans.path) + }] + }] + }); + } else { + children.push(main.icon); + } + + return { + children: children, + attributes: attributes + }; +}; + +var asIcon = function (_ref) { + var children = _ref.children, + main = _ref.main, + mask = _ref.mask, + attributes = _ref.attributes, + styles = _ref.styles, + transform = _ref.transform; + + if (transformIsMeaningful(transform) && main.found && !mask.found) { + var width = main.width, + height = main.height; + + var offset = { + x: width / height / 2, + y: 0.5 + }; + attributes['style'] = joinStyles(_extends({}, styles, { + 'transform-origin': offset.x + transform.x / 16 + 'em ' + (offset.y + transform.y / 16) + 'em' + })); + } + + return [{ + tag: 'svg', + attributes: attributes, + children: children + }]; +}; + +var asSymbol = function (_ref) { + var prefix = _ref.prefix, + iconName = _ref.iconName, + children = _ref.children, + attributes = _ref.attributes, + symbol = _ref.symbol; + + var id = symbol === true ? prefix + '-' + config.familyPrefix + '-' + iconName : symbol; + + return [{ + tag: 'svg', + attributes: { + style: 'display: none;' + }, + children: [{ + tag: 'symbol', + attributes: _extends({}, attributes, { id: id }), + children: children + }] + }]; +}; + +function makeInlineSvgAbstract(params) { + var _params$icons = params.icons, + main = _params$icons.main, + mask = _params$icons.mask, + prefix = params.prefix, + iconName = params.iconName, + transform = params.transform, + symbol = params.symbol, + title = params.title, + extra = params.extra, + _params$watchable = params.watchable, + watchable = _params$watchable === undefined ? false : _params$watchable; + + var _ref = mask.found ? mask : main, + width = _ref.width, + height = _ref.height; + + var widthClass = 'fa-w-' + Math.ceil(width / height * 16); + var attrClass = [config.replacementClass, iconName ? config.familyPrefix + '-' + iconName : '', widthClass].filter(function (c) { + return extra.classes.indexOf(c) === -1; + }).concat(extra.classes).join(' '); + + var content = { + children: [], + attributes: _extends({}, extra.attributes, { + 'data-prefix': prefix, + 'data-icon': iconName, + 'class': attrClass, + 'role': 'img', + 'xmlns': 'http://www.w3.org/2000/svg', + 'viewBox': '0 0 ' + width + ' ' + height + }) + }; + + if (watchable) { + content.attributes[DATA_FA_I2SVG] = ''; + } + + if (title) content.children.push({ tag: 'title', attributes: { id: content.attributes['aria-labelledby'] || 'title-' + nextUniqueId() }, children: [title] }); + + var args = _extends({}, content, { + prefix: prefix, + iconName: iconName, + main: main, + mask: mask, + transform: transform, + symbol: symbol, + styles: extra.styles + }); + + var _ref2 = mask.found && main.found ? makeIconMasking(args) : makeIconStandard(args), + children = _ref2.children, + attributes = _ref2.attributes; + + args.children = children; + args.attributes = attributes; + + if (symbol) { + return asSymbol(args); + } else { + return asIcon(args); + } +} + +function makeLayersTextAbstract(params) { + var content = params.content, + width = params.width, + height = params.height, + transform = params.transform, + title = params.title, + extra = params.extra, + _params$watchable2 = params.watchable, + watchable = _params$watchable2 === undefined ? false : _params$watchable2; + + + var attributes = _extends({}, extra.attributes, title ? { 'title': title } : {}, { + 'class': extra.classes.join(' ') + }); + + if (watchable) { + attributes[DATA_FA_I2SVG] = ''; + } + + var styles = _extends({}, extra.styles); + + if (transformIsMeaningful(transform)) { + styles['transform'] = transformForCss({ transform: transform, startCentered: true, width: width, height: height }); + styles['-webkit-transform'] = styles['transform']; + } + + var styleString = joinStyles(styles); + + if (styleString.length > 0) { + attributes['style'] = styleString; + } + + var val = []; + + val.push({ + tag: 'span', + attributes: attributes, + children: [content] + }); + + if (title) { + val.push({ tag: 'span', attributes: { class: 'sr-only' }, children: [title] }); + } + + return val; +} + +function makeLayersCounterAbstract(params) { + var content = params.content, + title = params.title, + extra = params.extra; + + + var attributes = _extends({}, extra.attributes, title ? { 'title': title } : {}, { + 'class': extra.classes.join(' ') + }); + + var styleString = joinStyles(extra.styles); + + if (styleString.length > 0) { + attributes['style'] = styleString; + } + + var val = []; + + val.push({ + tag: 'span', + attributes: attributes, + children: [content] + }); + + if (title) { + val.push({ tag: 'span', attributes: { class: 'sr-only' }, children: [title] }); + } + + return val; +} + +var noop$2 = function noop() {}; +var p = config.measurePerformance && PERFORMANCE && PERFORMANCE.mark && PERFORMANCE.measure ? PERFORMANCE : { mark: noop$2, measure: noop$2 }; +var preamble = 'FA "5.1.1"'; + +var begin = function begin(name) { + p.mark(preamble + ' ' + name + ' begins'); + return function () { + return end(name); + }; +}; + +var end = function end(name) { + p.mark(preamble + ' ' + name + ' ends'); + p.measure(preamble + ' ' + name, preamble + ' ' + name + ' begins', preamble + ' ' + name + ' ends'); +}; + +var perf = { begin: begin, end: end }; + +'use strict'; + +/** + * Internal helper to bind a function known to have 4 arguments + * to a given context. + */ +var bindInternal4 = function bindInternal4 (func, thisContext) { + return function (a, b, c, d) { + return func.call(thisContext, a, b, c, d); + }; +}; + +'use strict'; + + + +/** + * # Reduce + * + * A fast object `.reduce()` implementation. + * + * @param {Object} subject The object to reduce over. + * @param {Function} fn The reducer function. + * @param {mixed} initialValue The initial value for the reducer, defaults to subject[0]. + * @param {Object} thisContext The context for the reducer. + * @return {mixed} The final result. + */ +var reduce = function fastReduceObject (subject, fn, initialValue, thisContext) { + var keys = Object.keys(subject), + length = keys.length, + iterator = thisContext !== undefined ? bindInternal4(fn, thisContext) : fn, + i, key, result; + + if (initialValue === undefined) { + i = 1; + result = subject[keys[0]]; + } + else { + i = 0; + result = initialValue; + } + + for (; i < length; i++) { + key = keys[i]; + result = iterator(result, subject[key], key, subject); + } + + return result; +}; + +var styles$2 = namespace.styles; +var shims = namespace.shims; + + +var _byUnicode = {}; +var _byLigature = {}; +var _byOldName = {}; + +var build = function build() { + var lookup = function lookup(reducer) { + return reduce(styles$2, function (o, style, prefix) { + o[prefix] = reduce(style, reducer, {}); + return o; + }, {}); + }; + + _byUnicode = lookup(function (acc, icon, iconName) { + acc[icon[3]] = iconName; + + return acc; + }); + + _byLigature = lookup(function (acc, icon, iconName) { + var ligatures = icon[2]; + + acc[iconName] = iconName; + + ligatures.forEach(function (ligature) { + acc[ligature] = iconName; + }); + + return acc; + }); + + var hasRegular = 'far' in styles$2; + + _byOldName = reduce(shims, function (acc, shim) { + var oldName = shim[0]; + var prefix = shim[1]; + var iconName = shim[2]; + + if (prefix === 'far' && !hasRegular) { + prefix = 'fas'; + } + + acc[oldName] = { prefix: prefix, iconName: iconName }; + + return acc; + }, {}); +}; + +build(); + +function byUnicode(prefix, unicode) { + return _byUnicode[prefix][unicode]; +} + +function byLigature(prefix, ligature) { + return _byLigature[prefix][ligature]; +} + +function byOldName(name) { + return _byOldName[name] || { prefix: null, iconName: null }; +} + +var styles$1 = namespace.styles; + + +var emptyCanonicalIcon = function emptyCanonicalIcon() { + return { prefix: null, iconName: null, rest: [] }; +}; + +function getCanonicalIcon(values) { + return values.reduce(function (acc, cls) { + var iconName = getIconName(config.familyPrefix, cls); + + if (styles$1[cls]) { + acc.prefix = cls; + } else if (iconName) { + var shim = acc.prefix === 'fa' ? byOldName(iconName) : {}; + + acc.iconName = shim.iconName || iconName; + acc.prefix = shim.prefix || acc.prefix; + } else if (cls !== config.replacementClass && cls.indexOf('fa-w-') !== 0) { + acc.rest.push(cls); + } + + return acc; + }, emptyCanonicalIcon()); +} + +function iconFromMapping(mapping, prefix, iconName) { + if (mapping && mapping[prefix] && mapping[prefix][iconName]) { + return { + prefix: prefix, + iconName: iconName, + icon: mapping[prefix][iconName] + }; + } +} + +function toHtml(abstractNodes) { + var tag = abstractNodes.tag, + _abstractNodes$attrib = abstractNodes.attributes, + attributes = _abstractNodes$attrib === undefined ? {} : _abstractNodes$attrib, + _abstractNodes$childr = abstractNodes.children, + children = _abstractNodes$childr === undefined ? [] : _abstractNodes$childr; + + + if (typeof abstractNodes === 'string') { + return htmlEscape(abstractNodes); + } else { + return '<' + tag + ' ' + joinAttributes(attributes) + '>' + children.map(toHtml).join('') + ''; + } +} + +var noop$1 = function noop() {}; + +function isWatched(node) { + var i2svg = node.getAttribute ? node.getAttribute(DATA_FA_I2SVG) : null; + + return typeof i2svg === 'string'; +} + +function getMutator() { + if (config.autoReplaceSvg === true) { + return mutators.replace; + } + + var mutator = mutators[config.autoReplaceSvg]; + + return mutator || mutators.replace; +} + +var mutators = { + replace: function replace(mutation) { + var node = mutation[0]; + var abstract = mutation[1]; + var newOuterHTML = abstract.map(function (a) { + return toHtml(a); + }).join('\n'); + + if (node.parentNode && node.outerHTML) { + node.outerHTML = newOuterHTML + (config.keepOriginalSource && node.tagName.toLowerCase() !== 'svg' ? '' : ''); + } else if (node.parentNode) { + var newNode = document.createElement('span'); + node.parentNode.replaceChild(newNode, node); + newNode.outerHTML = newOuterHTML; + } + }, + nest: function nest(mutation) { + var node = mutation[0]; + var abstract = mutation[1]; + + // If we already have a replaced node we do not want to continue nesting within it. + // Short-circuit to the standard replacement + if (~classArray(node).indexOf(config.replacementClass)) { + return mutators.replace(mutation); + } + + var forSvg = new RegExp(config.familyPrefix + '-.*'); + + delete abstract[0].attributes.style; + + var splitClasses = abstract[0].attributes.class.split(' ').reduce(function (acc, cls) { + if (cls === config.replacementClass || cls.match(forSvg)) { + acc.toSvg.push(cls); + } else { + acc.toNode.push(cls); + } + + return acc; + }, { toNode: [], toSvg: [] }); + + abstract[0].attributes.class = splitClasses.toSvg.join(' '); + + var newInnerHTML = abstract.map(function (a) { + return toHtml(a); + }).join('\n'); + node.setAttribute('class', splitClasses.toNode.join(' ')); + node.setAttribute(DATA_FA_I2SVG, ''); + node.innerHTML = newInnerHTML; + } +}; + +function perform(mutations, callback) { + var callbackFunction = typeof callback === 'function' ? callback : noop$1; + + if (mutations.length === 0) { + callbackFunction(); + } else { + var frame = WINDOW.requestAnimationFrame || function (op) { + return op(); + }; + + frame(function () { + var mutator = getMutator(); + var mark = perf.begin('mutate'); + + mutations.map(mutator); + + mark(); + + callbackFunction(); + }); + } +} + +var disabled = false; + +function disableObservation(operation) { + disabled = true; + operation(); + disabled = false; +} + +var mo = null; + +function observe(options) { + if (!MUTATION_OBSERVER) { + return; + } + + if (!config.observeMutations) { + return; + } + + var treeCallback = options.treeCallback, + nodeCallback = options.nodeCallback, + pseudoElementsCallback = options.pseudoElementsCallback, + _options$observeMutat = options.observeMutationsRoot, + observeMutationsRoot = _options$observeMutat === undefined ? DOCUMENT.body : _options$observeMutat; + + + mo = new MUTATION_OBSERVER(function (objects) { + if (disabled) return; + + toArray(objects).forEach(function (mutationRecord) { + if (mutationRecord.type === 'childList' && mutationRecord.addedNodes.length > 0 && !isWatched(mutationRecord.addedNodes[0])) { + if (config.searchPseudoElements) { + pseudoElementsCallback(mutationRecord.target); + } + + treeCallback(mutationRecord.target); + } + + if (mutationRecord.type === 'attributes' && mutationRecord.target.parentNode && config.searchPseudoElements) { + pseudoElementsCallback(mutationRecord.target.parentNode); + } + + if (mutationRecord.type === 'attributes' && isWatched(mutationRecord.target) && ~ATTRIBUTES_WATCHED_FOR_MUTATION.indexOf(mutationRecord.attributeName)) { + if (mutationRecord.attributeName === 'class') { + var _getCanonicalIcon = getCanonicalIcon(classArray(mutationRecord.target)), + prefix = _getCanonicalIcon.prefix, + iconName = _getCanonicalIcon.iconName; + + if (prefix) mutationRecord.target.setAttribute('data-prefix', prefix); + if (iconName) mutationRecord.target.setAttribute('data-icon', iconName); + } else { + nodeCallback(mutationRecord.target); + } + } + }); + }); + + if (!IS_DOM) return; + + mo.observe(observeMutationsRoot, { + childList: true, attributes: true, characterData: true, subtree: true + }); +} + +function disconnect() { + if (!mo) return; + + mo.disconnect(); +} + +var styleParser = function (node) { + var style = node.getAttribute('style'); + + var val = []; + + if (style) { + val = style.split(';').reduce(function (acc, style) { + var styles = style.split(':'); + var prop = styles[0]; + var value = styles.slice(1); + + if (prop && value.length > 0) { + acc[prop] = value.join(':').trim(); + } + + return acc; + }, {}); + } + + return val; +}; + +function toHex(unicode) { + var result = ''; + + for (var i = 0; i < unicode.length; i++) { + var hex = unicode.charCodeAt(i).toString(16); + result += ('000' + hex).slice(-4); + } + + return result; +} + +var classParser = function (node) { + var existingPrefix = node.getAttribute('data-prefix'); + var existingIconName = node.getAttribute('data-icon'); + var innerText = node.innerText !== undefined ? node.innerText.trim() : ''; + + var val = getCanonicalIcon(classArray(node)); + + if (existingPrefix && existingIconName) { + val.prefix = existingPrefix; + val.iconName = existingIconName; + } + + if (val.prefix && innerText.length > 1) { + val.iconName = byLigature(val.prefix, node.innerText); + } else if (val.prefix && innerText.length === 1) { + val.iconName = byUnicode(val.prefix, toHex(node.innerText)); + } + + return val; +}; + +var parseTransformString = function parseTransformString(transformString) { + var transform = { + size: 16, + x: 0, + y: 0, + flipX: false, + flipY: false, + rotate: 0 + }; + + if (!transformString) { + return transform; + } else { + return transformString.toLowerCase().split(' ').reduce(function (acc, n) { + var parts = n.toLowerCase().split('-'); + var first = parts[0]; + var rest = parts.slice(1).join('-'); + + if (first && rest === 'h') { + acc.flipX = true; + return acc; + } + + if (first && rest === 'v') { + acc.flipY = true; + return acc; + } + + rest = parseFloat(rest); + + if (isNaN(rest)) { + return acc; + } + + switch (first) { + case 'grow': + acc.size = acc.size + rest; + break; + case 'shrink': + acc.size = acc.size - rest; + break; + case 'left': + acc.x = acc.x - rest; + break; + case 'right': + acc.x = acc.x + rest; + break; + case 'up': + acc.y = acc.y - rest; + break; + case 'down': + acc.y = acc.y + rest; + break; + case 'rotate': + acc.rotate = acc.rotate + rest; + break; + } + + return acc; + }, transform); + } +}; + +var transformParser = function (node) { + return parseTransformString(node.getAttribute('data-fa-transform')); +}; + +var symbolParser = function (node) { + var symbol = node.getAttribute('data-fa-symbol'); + + return symbol === null ? false : symbol === '' ? true : symbol; +}; + +var attributesParser = function (node) { + var extraAttributes = toArray(node.attributes).reduce(function (acc, attr) { + if (acc.name !== 'class' && acc.name !== 'style') { + acc[attr.name] = attr.value; + } + return acc; + }, {}); + + var title = node.getAttribute('title'); + + if (config.autoA11y) { + if (title) { + extraAttributes['aria-labelledby'] = config.replacementClass + '-title-' + nextUniqueId(); + } else { + extraAttributes['aria-hidden'] = 'true'; + } + } + + return extraAttributes; +}; + +var maskParser = function (node) { + var mask = node.getAttribute('data-fa-mask'); + + if (!mask) { + return emptyCanonicalIcon(); + } else { + return getCanonicalIcon(mask.split(' ').map(function (i) { + return i.trim(); + })); + } +}; + +var blankMeta = { + iconName: null, + title: null, + prefix: null, + transform: meaninglessTransform, + symbol: false, + mask: null, + extra: { classes: [], styles: {}, attributes: {} } +}; + +function parseMeta(node) { + var _classParser = classParser(node), + iconName = _classParser.iconName, + prefix = _classParser.prefix, + extraClasses = _classParser.rest; + + var extraStyles = styleParser(node); + var transform = transformParser(node); + var symbol = symbolParser(node); + var extraAttributes = attributesParser(node); + var mask = maskParser(node); + + return { + iconName: iconName, + title: node.getAttribute('title'), + prefix: prefix, + transform: transform, + symbol: symbol, + mask: mask, + extra: { + classes: extraClasses, + styles: extraStyles, + attributes: extraAttributes + } + }; +} + +function MissingIcon(error) { + this.name = 'MissingIcon'; + this.message = error || 'Icon unavailable'; + this.stack = new Error().stack; +} + +MissingIcon.prototype = Object.create(Error.prototype); +MissingIcon.prototype.constructor = MissingIcon; + +var FILL = { fill: 'currentColor' }; +var ANIMATION_BASE = { + attributeType: 'XML', + repeatCount: 'indefinite', + dur: '2s' +}; +var RING = { + tag: 'path', + attributes: _extends({}, FILL, { + d: 'M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z' + }) +}; +var OPACITY_ANIMATE = _extends({}, ANIMATION_BASE, { + attributeName: 'opacity' +}); +var DOT = { + tag: 'circle', + attributes: _extends({}, FILL, { + cx: '256', + cy: '364', + r: '28' + }), + children: [{ tag: 'animate', attributes: _extends({}, ANIMATION_BASE, { attributeName: 'r', values: '28;14;28;28;14;28;' }) }, { tag: 'animate', attributes: _extends({}, OPACITY_ANIMATE, { values: '1;0;1;1;0;1;' }) }] +}; +var QUESTION = { + tag: 'path', + attributes: _extends({}, FILL, { + opacity: '1', + d: 'M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z' + }), + children: [{ tag: 'animate', attributes: _extends({}, OPACITY_ANIMATE, { values: '1;0;0;0;0;1;' }) }] +}; +var EXCLAMATION = { + tag: 'path', + attributes: _extends({}, FILL, { + opacity: '0', + d: 'M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z' + }), + children: [{ tag: 'animate', attributes: _extends({}, OPACITY_ANIMATE, { values: '0;0;1;1;0;0;' }) }] +}; + +var missing = { tag: 'g', children: [RING, DOT, QUESTION, EXCLAMATION] }; + +var styles = namespace.styles; + +var LAYERS_TEXT_CLASSNAME = 'fa-layers-text'; +var FONT_FAMILY_PATTERN = /Font Awesome 5 (Solid|Regular|Light|Brands|Free|Pro)/; +var STYLE_TO_PREFIX = { + 'Solid': 'fas', + 'Regular': 'far', + 'Light': 'fal', + 'Brands': 'fab' +}; +var FONT_WEIGHT_TO_PREFIX = { + '900': 'fas', + '400': 'far', + '300': 'fal' +}; + +function findIcon(iconName, prefix) { + var val = { + found: false, + width: 512, + height: 512, + icon: missing + }; + + if (iconName && prefix && styles[prefix] && styles[prefix][iconName]) { + var icon = styles[prefix][iconName]; + var width = icon[0]; + var height = icon[1]; + var vectorData = icon.slice(4); + + val = { + found: true, + width: width, + height: height, + icon: { tag: 'path', attributes: { fill: 'currentColor', d: vectorData[0] } } + }; + } else if (iconName && prefix && !config.showMissingIcons) { + throw new MissingIcon('Icon is missing for prefix ' + prefix + ' with icon name ' + iconName); + } + + return val; +} + +function generateSvgReplacementMutation(node, nodeMeta) { + var iconName = nodeMeta.iconName, + title = nodeMeta.title, + prefix = nodeMeta.prefix, + transform = nodeMeta.transform, + symbol = nodeMeta.symbol, + mask = nodeMeta.mask, + extra = nodeMeta.extra; + + + return [node, makeInlineSvgAbstract({ + icons: { + main: findIcon(iconName, prefix), + mask: findIcon(mask.iconName, mask.prefix) + }, + prefix: prefix, + iconName: iconName, + transform: transform, + symbol: symbol, + mask: mask, + title: title, + extra: extra, + watchable: true + })]; +} + +function generateLayersText(node, nodeMeta) { + var title = nodeMeta.title, + transform = nodeMeta.transform, + extra = nodeMeta.extra; + + + var width = null; + var height = null; + + if (IS_IE) { + var computedFontSize = parseInt(getComputedStyle(node).fontSize, 10); + var boundingClientRect = node.getBoundingClientRect(); + width = boundingClientRect.width / computedFontSize; + height = boundingClientRect.height / computedFontSize; + } + + if (config.autoA11y && !title) { + extra.attributes['aria-hidden'] = 'true'; + } + + return [node, makeLayersTextAbstract({ + content: node.innerHTML, + width: width, + height: height, + transform: transform, + title: title, + extra: extra, + watchable: true + })]; +} + +function generateMutation(node) { + var nodeMeta = parseMeta(node); + + if (~nodeMeta.extra.classes.indexOf(LAYERS_TEXT_CLASSNAME)) { + return generateLayersText(node, nodeMeta); + } else { + return generateSvgReplacementMutation(node, nodeMeta); + } +} + +function searchPseudoElements(root) { + if (!IS_DOM) return; + + var end = perf.begin('searchPseudoElements'); + + disableObservation(function () { + toArray(root.querySelectorAll('*')).filter(function (n) { + return n.parentNode !== document.head && !~TAGNAMES_TO_SKIP_FOR_PSEUDOELEMENTS.indexOf(n.tagName.toUpperCase()) && !n.getAttribute(DATA_FA_PSEUDO_ELEMENT) && (!n.parentNode || n.parentNode.tagName !== 'svg'); + }).forEach(function (node) { + [':before', ':after'].forEach(function (pos) { + var children = toArray(node.children); + var alreadyProcessedPseudoElement = children.filter(function (c) { + return c.getAttribute(DATA_FA_PSEUDO_ELEMENT) === pos; + })[0]; + + var styles = WINDOW.getComputedStyle(node, pos); + var fontFamily = styles.getPropertyValue('font-family').match(FONT_FAMILY_PATTERN); + var fontWeight = styles.getPropertyValue('font-weight'); + + if (alreadyProcessedPseudoElement && !fontFamily) { + // If we've already processed it but the current computed style does not result in a font-family, + // that probably means that a class name that was previously present to make the icon has been + // removed. So we now should delete the icon. + node.removeChild(alreadyProcessedPseudoElement); + } else if (fontFamily) { + var content = styles.getPropertyValue('content'); + var prefix = ~['Light', 'Regular', 'Solid', 'Brands'].indexOf(fontFamily[1]) ? STYLE_TO_PREFIX[fontFamily[1]] : FONT_WEIGHT_TO_PREFIX[fontWeight]; + var iconName = byUnicode(prefix, toHex(content.length === 3 ? content.substr(1, 1) : content)); + // Only convert the pseudo element in this :before/:after position into an icon if we haven't + // already done so with the same prefix and iconName + if (!alreadyProcessedPseudoElement || alreadyProcessedPseudoElement.getAttribute(DATA_PREFIX) !== prefix || alreadyProcessedPseudoElement.getAttribute(DATA_ICON) !== iconName) { + if (alreadyProcessedPseudoElement) { + // Delete the old one, since we're replacing it with a new one + node.removeChild(alreadyProcessedPseudoElement); + } + + var extra = blankMeta.extra; + + extra.attributes[DATA_FA_PSEUDO_ELEMENT] = pos; + var abstract = makeInlineSvgAbstract(_extends({}, blankMeta, { + icons: { + main: findIcon(iconName, prefix), + mask: emptyCanonicalIcon() + }, + prefix: prefix, + iconName: iconName, + extra: extra, + watchable: true + })); + + var element = DOCUMENT.createElement('svg'); + + if (pos === ':before') { + node.insertBefore(element, node.firstChild); + } else { + node.appendChild(element); + } + + element.outerHTML = abstract.map(function (a) { + return toHtml(a); + }).join('\n'); + } + } + }); + }); + }); + + end(); +} + +function onTree(root) { + var callback = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + + if (!IS_DOM) return; + + var htmlClassList = DOCUMENT.documentElement.classList; + var hclAdd = function hclAdd(suffix) { + return htmlClassList.add(HTML_CLASS_I2SVG_BASE_CLASS + '-' + suffix); + }; + var hclRemove = function hclRemove(suffix) { + return htmlClassList.remove(HTML_CLASS_I2SVG_BASE_CLASS + '-' + suffix); + }; + var prefixes = Object.keys(styles); + var prefixesDomQuery = ['.' + LAYERS_TEXT_CLASSNAME + ':not([' + DATA_FA_I2SVG + '])'].concat(prefixes.map(function (p) { + return '.' + p + ':not([' + DATA_FA_I2SVG + '])'; + })).join(', '); + + if (prefixesDomQuery.length === 0) { + return; + } + + var candidates = toArray(root.querySelectorAll(prefixesDomQuery)); + + if (candidates.length > 0) { + hclAdd('pending'); + hclRemove('complete'); + } else { + return; + } + + var mark = perf.begin('onTree'); + + var mutations = candidates.reduce(function (acc, node) { + try { + var mutation = generateMutation(node); + + if (mutation) { + acc.push(mutation); + } + } catch (e) { + if (!PRODUCTION) { + if (e instanceof MissingIcon) { + console.error(e); + } + } + } + + return acc; + }, []); + + mark(); + + perform(mutations, function () { + hclAdd('active'); + hclAdd('complete'); + hclRemove('pending'); + + if (typeof callback === 'function') callback(); + }); +} + +function onNode(node) { + var callback = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + + var mutation = generateMutation(node); + + if (mutation) { + perform([mutation], callback); + } +} + +var baseStyles = "svg:not(:root).svg-inline--fa {\n overflow: visible; }\n\n.svg-inline--fa {\n display: inline-block;\n font-size: inherit;\n height: 1em;\n overflow: visible;\n vertical-align: -.125em; }\n .svg-inline--fa.fa-lg {\n vertical-align: -.225em; }\n .svg-inline--fa.fa-w-1 {\n width: 0.0625em; }\n .svg-inline--fa.fa-w-2 {\n width: 0.125em; }\n .svg-inline--fa.fa-w-3 {\n width: 0.1875em; }\n .svg-inline--fa.fa-w-4 {\n width: 0.25em; }\n .svg-inline--fa.fa-w-5 {\n width: 0.3125em; }\n .svg-inline--fa.fa-w-6 {\n width: 0.375em; }\n .svg-inline--fa.fa-w-7 {\n width: 0.4375em; }\n .svg-inline--fa.fa-w-8 {\n width: 0.5em; }\n .svg-inline--fa.fa-w-9 {\n width: 0.5625em; }\n .svg-inline--fa.fa-w-10 {\n width: 0.625em; }\n .svg-inline--fa.fa-w-11 {\n width: 0.6875em; }\n .svg-inline--fa.fa-w-12 {\n width: 0.75em; }\n .svg-inline--fa.fa-w-13 {\n width: 0.8125em; }\n .svg-inline--fa.fa-w-14 {\n width: 0.875em; }\n .svg-inline--fa.fa-w-15 {\n width: 0.9375em; }\n .svg-inline--fa.fa-w-16 {\n width: 1em; }\n .svg-inline--fa.fa-w-17 {\n width: 1.0625em; }\n .svg-inline--fa.fa-w-18 {\n width: 1.125em; }\n .svg-inline--fa.fa-w-19 {\n width: 1.1875em; }\n .svg-inline--fa.fa-w-20 {\n width: 1.25em; }\n .svg-inline--fa.fa-pull-left {\n margin-right: .3em;\n width: auto; }\n .svg-inline--fa.fa-pull-right {\n margin-left: .3em;\n width: auto; }\n .svg-inline--fa.fa-border {\n height: 1.5em; }\n .svg-inline--fa.fa-li {\n width: 2em; }\n .svg-inline--fa.fa-fw {\n width: 1.25em; }\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0; }\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -.125em;\n width: 1em; }\n .fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center; }\n\n.fa-layers-text, .fa-layers-counter {\n display: inline-block;\n position: absolute;\n text-align: center; }\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center; }\n\n.fa-layers-counter {\n background-color: #ff253a;\n border-radius: 1em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #fff;\n height: 1.5em;\n line-height: 1;\n max-width: 5em;\n min-width: 1.5em;\n overflow: hidden;\n padding: .25em;\n right: 0;\n text-overflow: ellipsis;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right; }\n\n.fa-layers-bottom-right {\n bottom: 0;\n right: 0;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right; }\n\n.fa-layers-bottom-left {\n bottom: 0;\n left: 0;\n right: auto;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left; }\n\n.fa-layers-top-right {\n right: 0;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right; }\n\n.fa-layers-top-left {\n left: 0;\n right: auto;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top left;\n transform-origin: top left; }\n\n.fa-lg {\n font-size: 1.33333em;\n line-height: 0.75em;\n vertical-align: -.0667em; }\n\n.fa-xs {\n font-size: .75em; }\n\n.fa-sm {\n font-size: .875em; }\n\n.fa-1x {\n font-size: 1em; }\n\n.fa-2x {\n font-size: 2em; }\n\n.fa-3x {\n font-size: 3em; }\n\n.fa-4x {\n font-size: 4em; }\n\n.fa-5x {\n font-size: 5em; }\n\n.fa-6x {\n font-size: 6em; }\n\n.fa-7x {\n font-size: 7em; }\n\n.fa-8x {\n font-size: 8em; }\n\n.fa-9x {\n font-size: 9em; }\n\n.fa-10x {\n font-size: 10em; }\n\n.fa-fw {\n text-align: center;\n width: 1.25em; }\n\n.fa-ul {\n list-style-type: none;\n margin-left: 2.5em;\n padding-left: 0; }\n .fa-ul > li {\n position: relative; }\n\n.fa-li {\n left: -2em;\n position: absolute;\n text-align: center;\n width: 2em;\n line-height: inherit; }\n\n.fa-border {\n border: solid 0.08em #eee;\n border-radius: .1em;\n padding: .2em .25em .15em; }\n\n.fa-pull-left {\n float: left; }\n\n.fa-pull-right {\n float: right; }\n\n.fa.fa-pull-left,\n.fas.fa-pull-left,\n.far.fa-pull-left,\n.fal.fa-pull-left,\n.fab.fa-pull-left {\n margin-right: .3em; }\n\n.fa.fa-pull-right,\n.fas.fa-pull-right,\n.far.fa-pull-right,\n.fal.fa-pull-right,\n.fab.fa-pull-right {\n margin-left: .3em; }\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear; }\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8); }\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n.fa-rotate-90 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg); }\n\n.fa-rotate-180 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg); }\n\n.fa-rotate-270 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg); }\n\n.fa-flip-horizontal {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1); }\n\n.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1); }\n\n.fa-flip-horizontal.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1); }\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n -webkit-filter: none;\n filter: none; }\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n position: relative;\n width: 2em; }\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0; }\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1em; }\n\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2em; }\n\n.fa-inverse {\n color: #fff; }\n\n.sr-only {\n border: 0;\n clip: rect(0, 0, 0, 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px; }\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n clip: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n position: static;\n width: auto; }\n"; + +var css = function () { + var dfp = DEFAULT_FAMILY_PREFIX; + var drc = DEFAULT_REPLACEMENT_CLASS; + var fp = config.familyPrefix; + var rc = config.replacementClass; + var s = baseStyles; + + if (fp !== dfp || rc !== drc) { + var dPatt = new RegExp('\\.' + dfp + '\\-', 'g'); + var rPatt = new RegExp('\\.' + drc, 'g'); + + s = s.replace(dPatt, '.' + fp + '-').replace(rPatt, '.' + rc); + } + + return s; +}; + +function define(prefix, icons) { + var normalized = Object.keys(icons).reduce(function (acc, iconName) { + var icon = icons[iconName]; + var expanded = !!icon.icon; + + if (expanded) { + acc[icon.iconName] = icon.icon; + } else { + acc[iconName] = icon; + } + return acc; + }, {}); + + if (typeof namespace.hooks.addPack === 'function') { + namespace.hooks.addPack(prefix, normalized); + } else { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, normalized); + } + + /** + * Font Awesome 4 used the prefix of `fa` for all icons. With the introduction + * of new styles we needed to differentiate between them. Prefix `fa` is now an alias + * for `fas` so we'll easy the upgrade process for our users by automatically defining + * this as well. + */ + if (prefix === 'fas') { + define('fa', icons); + } +} + +var Library = function () { + function Library() { + classCallCheck(this, Library); + + this.definitions = {}; + } + + createClass(Library, [{ + key: 'add', + value: function add() { + var _this = this; + + for (var _len = arguments.length, definitions = Array(_len), _key = 0; _key < _len; _key++) { + definitions[_key] = arguments[_key]; + } + + var additions = definitions.reduce(this._pullDefinitions, {}); + + Object.keys(additions).forEach(function (key) { + _this.definitions[key] = _extends({}, _this.definitions[key] || {}, additions[key]); + define(key, additions[key]); + build(); + }); + } + }, { + key: 'reset', + value: function reset() { + this.definitions = {}; + } + }, { + key: '_pullDefinitions', + value: function _pullDefinitions(additions, definition) { + var normalized = definition.prefix && definition.iconName && definition.icon ? { 0: definition } : definition; + + Object.keys(normalized).map(function (key) { + var _normalized$key = normalized[key], + prefix = _normalized$key.prefix, + iconName = _normalized$key.iconName, + icon = _normalized$key.icon; + + + if (!additions[prefix]) additions[prefix] = {}; + + additions[prefix][iconName] = icon; + }); + + return additions; + } + }]); + return Library; +}(); + +function prepIcon(icon) { + var width = icon[0]; + var height = icon[1]; + var vectorData = icon.slice(4); + + return { + found: true, + width: width, + height: height, + icon: { tag: 'path', attributes: { fill: 'currentColor', d: vectorData[0] } } + }; +} + +function ensureCss() { + if (config.autoAddCss && !_cssInserted) { + insertCss(css()); + _cssInserted = true; + } +} + +function apiObject(val, abstractCreator) { + Object.defineProperty(val, 'abstract', { + get: abstractCreator + }); + + Object.defineProperty(val, 'html', { + get: function get() { + return val.abstract.map(function (a) { + return toHtml(a); + }); + } + }); + + Object.defineProperty(val, 'node', { + get: function get() { + if (!IS_DOM) return; + + var container = DOCUMENT.createElement('div'); + container.innerHTML = val.html; + return container.children; + } + }); + + return val; +} + +function findIconDefinition(params) { + var _params$prefix = params.prefix, + prefix = _params$prefix === undefined ? 'fa' : _params$prefix, + iconName = params.iconName; + + + if (!iconName) return; + + return iconFromMapping(library.definitions, prefix, iconName) || iconFromMapping(namespace.styles, prefix, iconName); +} + +function resolveIcons(next) { + return function (maybeIconDefinition) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + + var iconDefinition = (maybeIconDefinition || {}).icon ? maybeIconDefinition : findIconDefinition(maybeIconDefinition || {}); + + var mask = params.mask; + + + if (mask) { + mask = (mask || {}).icon ? mask : findIconDefinition(mask || {}); + } + + return next(iconDefinition, _extends({}, params, { mask: mask })); + }; +} + +var library = new Library(); + +var noAuto = function noAuto() { + config.autoReplaceSvg = false; + config.observeMutations = false; + + disconnect(); +}; + +var _cssInserted = false; + +var dom = { + i2svg: function i2svg() { + var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + + if (IS_DOM) { + ensureCss(); + + var _params$node = params.node, + node = _params$node === undefined ? DOCUMENT : _params$node, + _params$callback = params.callback, + callback = _params$callback === undefined ? function () {} : _params$callback; + + + if (config.searchPseudoElements) { + searchPseudoElements(node); + } + + onTree(node, callback); + } + }, + + css: css, + + insertCss: function insertCss$$1() { + if (!_cssInserted) { + insertCss(css()); + _cssInserted = true; + } + }, + + watch: function watch() { + var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var autoReplaceSvgRoot = params.autoReplaceSvgRoot, + observeMutationsRoot = params.observeMutationsRoot; + + + if (config.autoReplaceSvg === false) { + config.autoReplaceSvg = true; + } + + config.observeMutations = true; + + domready(function () { + autoReplace({ + autoReplaceSvgRoot: autoReplaceSvgRoot + }); + + observe({ + treeCallback: onTree, + nodeCallback: onNode, + pseudoElementsCallback: searchPseudoElements, + observeMutationsRoot: observeMutationsRoot + }); + }); + } +}; + +var parse = { + transform: function transform(transformString) { + return parseTransformString(transformString); + } +}; + +var icon = resolveIcons(function (iconDefinition) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _params$transform = params.transform, + transform = _params$transform === undefined ? meaninglessTransform : _params$transform, + _params$symbol = params.symbol, + symbol = _params$symbol === undefined ? false : _params$symbol, + _params$mask = params.mask, + mask = _params$mask === undefined ? null : _params$mask, + _params$title = params.title, + title = _params$title === undefined ? null : _params$title, + _params$classes = params.classes, + classes = _params$classes === undefined ? [] : _params$classes, + _params$attributes = params.attributes, + attributes = _params$attributes === undefined ? {} : _params$attributes, + _params$styles = params.styles, + styles = _params$styles === undefined ? {} : _params$styles; + + + if (!iconDefinition) return; + + var prefix = iconDefinition.prefix, + iconName = iconDefinition.iconName, + icon = iconDefinition.icon; + + + return apiObject(_extends({ type: 'icon' }, iconDefinition), function () { + ensureCss(); + + if (config.autoA11y) { + if (title) { + attributes['aria-labelledby'] = config.replacementClass + '-title-' + nextUniqueId(); + } else { + attributes['aria-hidden'] = 'true'; + } + } + + return makeInlineSvgAbstract({ + icons: { + main: prepIcon(icon), + mask: mask ? prepIcon(mask.icon) : { found: false, width: null, height: null, icon: {} } + }, + prefix: prefix, + iconName: iconName, + transform: _extends({}, meaninglessTransform, transform), + symbol: symbol, + title: title, + extra: { + attributes: attributes, + styles: styles, + classes: classes + } + }); + }); +}); + +var text = function text(content) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _params$transform2 = params.transform, + transform = _params$transform2 === undefined ? meaninglessTransform : _params$transform2, + _params$title2 = params.title, + title = _params$title2 === undefined ? null : _params$title2, + _params$classes2 = params.classes, + classes = _params$classes2 === undefined ? [] : _params$classes2, + _params$attributes2 = params.attributes, + attributes = _params$attributes2 === undefined ? {} : _params$attributes2, + _params$styles2 = params.styles, + styles = _params$styles2 === undefined ? {} : _params$styles2; + + + return apiObject({ type: 'text', content: content }, function () { + ensureCss(); + + return makeLayersTextAbstract({ + content: content, + transform: _extends({}, meaninglessTransform, transform), + title: title, + extra: { + attributes: attributes, + styles: styles, + classes: [config.familyPrefix + '-layers-text'].concat(toConsumableArray(classes)) + } + }); + }); +}; + +var counter = function counter(content) { + var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _params$title3 = params.title, + title = _params$title3 === undefined ? null : _params$title3, + _params$classes3 = params.classes, + classes = _params$classes3 === undefined ? [] : _params$classes3, + _params$attributes3 = params.attributes, + attributes = _params$attributes3 === undefined ? {} : _params$attributes3, + _params$styles3 = params.styles, + styles = _params$styles3 === undefined ? {} : _params$styles3; + + + return apiObject({ type: 'counter', content: content }, function () { + ensureCss(); + + return makeLayersCounterAbstract({ + content: content.toString(), + title: title, + extra: { + attributes: attributes, + styles: styles, + classes: [config.familyPrefix + '-layers-counter'].concat(toConsumableArray(classes)) + } + }); + }); +}; + +var layer = function layer(assembler) { + return apiObject({ type: 'layer' }, function () { + ensureCss(); + + var children = []; + + assembler(function (args) { + Array.isArray(args) ? args.map(function (a) { + children = children.concat(a.abstract); + }) : children = children.concat(args.abstract); + }); + + return [{ + tag: 'span', + attributes: { class: config.familyPrefix + '-layers' }, + children: children + }]; + }); +}; + +var api = { + noAuto: noAuto, + config: config, + dom: dom, + library: library, + parse: parse, + findIconDefinition: findIconDefinition, + icon: icon, + text: text, + counter: counter, + layer: layer, + toHtml: toHtml +}; + +var autoReplace = function autoReplace() { + var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var _params$autoReplaceSv = params.autoReplaceSvgRoot, + autoReplaceSvgRoot = _params$autoReplaceSv === undefined ? DOCUMENT : _params$autoReplaceSv; + + + if (Object.keys(namespace.styles).length > 0 && IS_DOM && config.autoReplaceSvg) api.dom.i2svg({ node: autoReplaceSvgRoot }); +}; + +function bootstrap() { + if (IS_BROWSER) { + if (!WINDOW.FontAwesome) { + WINDOW.FontAwesome = api; + } + + domready(function () { + autoReplace(); + + observe({ + treeCallback: onTree, + nodeCallback: onNode, + pseudoElementsCallback: searchPseudoElements + }); + }); + } + + namespace.hooks = _extends({}, namespace.hooks, { + + addPack: function addPack(prefix, icons) { + namespace.styles[prefix] = _extends({}, namespace.styles[prefix] || {}, icons); + + build(); + autoReplace(); + }, + + addShims: function addShims(shims) { + var _namespace$shims; + + (_namespace$shims = namespace.shims).push.apply(_namespace$shims, toConsumableArray(shims)); + + build(); + autoReplace(); + } + }); +} + +bunker(bootstrap); + +}()); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fontawesome.min.js b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fontawesome.min.js new file mode 100644 index 0000000000..1ee1e39a42 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/svg-with-js/js/fontawesome.min.js @@ -0,0 +1,1054 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +!function() { + "use strict"; + var t = function() {}, e = {}, n = {}, r = null, a = { + mark: t, + measure: t + }; + try { + "undefined" != typeof window && (e = window), "undefined" != typeof document && (n = document), + "undefined" != typeof MutationObserver && (r = MutationObserver), "undefined" != typeof performance && (a = performance); + } catch (t) {} + var i = (e.navigator || {}).userAgent, o = void 0 === i ? "" : i, m = e, d = n, s = r, l = a, f = !!m.document, c = !!d.documentElement && !!d.head && "function" == typeof d.addEventListener && "function" == typeof d.createElement, k = ~o.indexOf("MSIE") || ~o.indexOf("Trident/"), u = "___FONT_AWESOME___", C = 16, g = "svg-inline--fa", M = "data-fa-i2svg", h = "data-fa-pseudo-element", p = "data-prefix", v = "data-icon", b = "fontawesome-i2svg", y = [ "HTML", "HEAD", "STYLE", "SCRIPT" ], w = function() { + try { + return !1; + } catch (t) { + return !1; + } + }(), x = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ], A = x.concat([ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ]), N = [ "class", "data-prefix", "data-icon", "data-fa-transform", "data-fa-mask" ], z = [ "xs", "sm", "lg", "fw", "ul", "li", "border", "pull-left", "pull-right", "spin", "pulse", "rotate-90", "rotate-180", "rotate-270", "flip-horizontal", "flip-vertical", "stack", "stack-1x", "stack-2x", "inverse", "layers", "layers-text", "layers-counter" ].concat(x.map(function(t) { + return t + "x"; + })).concat(A.map(function(t) { + return "w-" + t; + })), S = function(t, e) { + if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function"); + }, L = function() { + function r(t, e) { + for (var n = 0; n < e.length; n++) { + var r = e[n]; + r.enumerable = r.enumerable || !1, r.configurable = !0, "value" in r && (r.writable = !0), + Object.defineProperty(t, r.key, r); + } + } + return function(t, e, n) { + return e && r(t.prototype, e), n && r(t, n), t; + }; + }(), E = Object.assign || function(t) { + for (var e = 1; e < arguments.length; e++) { + var n = arguments[e]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (t[r] = n[r]); + } + return t; + }, O = function(t, e) { + if (Array.isArray(t)) return t; + if (Symbol.iterator in Object(t)) return function(t, e) { + var n = [], r = !0, a = !1, i = void 0; + try { + for (var o, s = t[Symbol.iterator](); !(r = (o = s.next()).done) && (n.push(o.value), + !e || n.length !== e); r = !0) ; + } catch (t) { + a = !0, i = t; + } finally { + try { + !r && s.return && s.return(); + } finally { + if (a) throw i; + } + } + return n; + }(t, e); + throw new TypeError("Invalid attempt to destructure non-iterable instance"); + }, P = function(t) { + if (Array.isArray(t)) { + for (var e = 0, n = Array(t.length); e < t.length; e++) n[e] = t[e]; + return n; + } + return Array.from(t); + }, T = m.FontAwesomeConfig || {}; + if (d && "function" == typeof d.querySelector) { + [ [ "data-family-prefix", "familyPrefix" ], [ "data-replacement-class", "replacementClass" ], [ "data-auto-replace-svg", "autoReplaceSvg" ], [ "data-auto-add-css", "autoAddCss" ], [ "data-auto-a11y", "autoA11y" ], [ "data-search-pseudo-elements", "searchPseudoElements" ], [ "data-observe-mutations", "observeMutations" ], [ "data-keep-original-source", "keepOriginalSource" ], [ "data-measure-performance", "measurePerformance" ], [ "data-show-missing-icons", "showMissingIcons" ] ].forEach(function(t) { + var e, n = O(t, 2), r = n[0], a = n[1], i = "" === (e = function(t) { + var e = d.querySelector("script[" + t + "]"); + if (e) return e.getAttribute(t); + }(r)) || "false" !== e && ("true" === e || e); + null != i && (T[a] = i); + }); + } + var j = E({ + familyPrefix: "fa", + replacementClass: g, + autoReplaceSvg: !0, + autoAddCss: !0, + autoA11y: !0, + searchPseudoElements: !1, + observeMutations: !0, + keepOriginalSource: !0, + measurePerformance: !1, + showMissingIcons: !0 + }, T); + j.autoReplaceSvg || (j.observeMutations = !1); + var R = E({}, j); + m.FontAwesomeConfig = R; + var I = m || {}; + I[u] || (I[u] = {}), I[u].styles || (I[u].styles = {}), I[u].hooks || (I[u].hooks = {}), + I[u].shims || (I[u].shims = []); + var H = I[u], B = [], D = !1; + c && ((D = (d.documentElement.doScroll ? /^loaded|^c/ : /^loaded|^i|^c/).test(d.readyState)) || d.addEventListener("DOMContentLoaded", function t() { + d.removeEventListener("DOMContentLoaded", t), D = 1, B.map(function(t) { + return t(); + }); + })); + var X = function(t) { + c && (D ? setTimeout(t, 0) : B.push(t)); + }, F = C, _ = { + size: 16, + x: 0, + y: 0, + rotate: 0, + flipX: !1, + flipY: !1 + }; + function Y(t) { + if (t && c) { + var e = d.createElement("style"); + e.setAttribute("type", "text/css"), e.innerHTML = t; + for (var n = d.head.childNodes, r = null, a = n.length - 1; -1 < a; a--) { + var i = n[a], o = (i.tagName || "").toUpperCase(); + -1 < [ "STYLE", "LINK" ].indexOf(o) && (r = i); + } + return d.head.insertBefore(e, r), t; + } + } + var W = 0; + function q() { + return ++W; + } + function U(t) { + for (var e = [], n = (t || []).length >>> 0; n--; ) e[n] = t[n]; + return e; + } + function V(t) { + return t.classList ? U(t.classList) : (t.getAttribute("class") || "").split(" ").filter(function(t) { + return t; + }); + } + function K(t, e) { + var n, r = e.split("-"), a = r[0], i = r.slice(1).join("-"); + return a !== t || "" === i || (n = i, ~z.indexOf(n)) ? null : i; + } + function G(t) { + return ("" + t).replace(/&/g, "&").replace(/"/g, """).replace(/'/g, "'").replace(//g, ">"); + } + function J(n) { + return Object.keys(n || {}).reduce(function(t, e) { + return t + (e + ": ") + n[e] + ";"; + }, ""); + } + function Q(t) { + return t.size !== _.size || t.x !== _.x || t.y !== _.y || t.rotate !== _.rotate || t.flipX || t.flipY; + } + function Z(t) { + var e = t.transform, n = t.containerWidth, r = t.iconWidth; + return { + outer: { + transform: "translate(" + n / 2 + " 256)" + }, + inner: { + transform: "translate(" + 32 * e.x + ", " + 32 * e.y + ") " + " " + ("scale(" + e.size / 16 * (e.flipX ? -1 : 1) + ", " + e.size / 16 * (e.flipY ? -1 : 1) + ") ") + " " + ("rotate(" + e.rotate + " 0 0)") + }, + path: { + transform: "translate(" + r / 2 * -1 + " -256)" + } + }; + } + var $ = { + x: 0, + y: 0, + width: "100%", + height: "100%" + }, tt = function(t) { + var e = t.children, n = t.attributes, r = t.main, a = t.mask, i = t.transform, o = r.width, s = r.icon, l = a.width, f = a.icon, c = Z({ + transform: i, + containerWidth: l, + iconWidth: o + }), u = { + tag: "rect", + attributes: E({}, $, { + fill: "white" + }) + }, m = { + tag: "g", + attributes: E({}, c.inner), + children: [ { + tag: "path", + attributes: E({}, s.attributes, c.path, { + fill: "black" + }) + } ] + }, d = { + tag: "g", + attributes: E({}, c.outer), + children: [ m ] + }, g = "mask-" + q(), h = "clip-" + q(), p = { + tag: "defs", + children: [ { + tag: "clipPath", + attributes: { + id: h + }, + children: [ f ] + }, { + tag: "mask", + attributes: E({}, $, { + id: g, + maskUnits: "userSpaceOnUse", + maskContentUnits: "userSpaceOnUse" + }), + children: [ u, d ] + } ] + }; + return e.push(p, { + tag: "rect", + attributes: E({ + fill: "currentColor", + "clip-path": "url(#" + h + ")", + mask: "url(#" + g + ")" + }, $) + }), { + children: e, + attributes: n + }; + }, et = function(t) { + var e = t.children, n = t.attributes, r = t.main, a = t.transform, i = J(t.styles); + if (0 < i.length && (n.style = i), Q(a)) { + var o = Z({ + transform: a, + containerWidth: r.width, + iconWidth: r.width + }); + e.push({ + tag: "g", + attributes: E({}, o.outer), + children: [ { + tag: "g", + attributes: E({}, o.inner), + children: [ { + tag: r.icon.tag, + children: r.icon.children, + attributes: E({}, r.icon.attributes, o.path) + } ] + } ] + }); + } else e.push(r.icon); + return { + children: e, + attributes: n + }; + }, nt = function(t) { + var e = t.children, n = t.main, r = t.mask, a = t.attributes, i = t.styles, o = t.transform; + if (Q(o) && n.found && !r.found) { + var s = n.width / n.height / 2, l = .5; + a.style = J(E({}, i, { + "transform-origin": s + o.x / 16 + "em " + (l + o.y / 16) + "em" + })); + } + return [ { + tag: "svg", + attributes: a, + children: e + } ]; + }, rt = function(t) { + var e = t.prefix, n = t.iconName, r = t.children, a = t.attributes, i = t.symbol, o = !0 === i ? e + "-" + R.familyPrefix + "-" + n : i; + return [ { + tag: "svg", + attributes: { + style: "display: none;" + }, + children: [ { + tag: "symbol", + attributes: E({}, a, { + id: o + }), + children: r + } ] + } ]; + }; + function at(t) { + var e = t.icons, n = e.main, r = e.mask, a = t.prefix, i = t.iconName, o = t.transform, s = t.symbol, l = t.title, f = t.extra, c = t.watchable, u = void 0 !== c && c, m = r.found ? r : n, d = m.width, g = m.height, h = "fa-w-" + Math.ceil(d / g * 16), p = [ R.replacementClass, i ? R.familyPrefix + "-" + i : "", h ].filter(function(t) { + return -1 === f.classes.indexOf(t); + }).concat(f.classes).join(" "), v = { + children: [], + attributes: E({}, f.attributes, { + "data-prefix": a, + "data-icon": i, + class: p, + role: "img", + xmlns: "http://www.w3.org/2000/svg", + viewBox: "0 0 " + d + " " + g + }) + }; + u && (v.attributes[M] = ""), l && v.children.push({ + tag: "title", + attributes: { + id: v.attributes["aria-labelledby"] || "title-" + q() + }, + children: [ l ] + }); + var b = E({}, v, { + prefix: a, + iconName: i, + main: n, + mask: r, + transform: o, + symbol: s, + styles: f.styles + }), y = r.found && n.found ? tt(b) : et(b), w = y.children, x = y.attributes; + return b.children = w, b.attributes = x, s ? rt(b) : nt(b); + } + function it(t) { + var e = t.content, n = t.width, r = t.height, a = t.transform, i = t.title, o = t.extra, s = t.watchable, l = void 0 !== s && s, f = E({}, o.attributes, i ? { + title: i + } : {}, { + class: o.classes.join(" ") + }); + l && (f[M] = ""); + var c, u, m, d, g, h, p, v, b, y = E({}, o.styles); + Q(a) && (y.transform = (u = (c = { + transform: a, + startCentered: !0, + width: n, + height: r + }).transform, m = c.width, d = void 0 === m ? C : m, g = c.height, h = void 0 === g ? C : g, + p = c.startCentered, b = "", b += (v = void 0 !== p && p) && k ? "translate(" + (u.x / F - d / 2) + "em, " + (u.y / F - h / 2) + "em) " : v ? "translate(calc(-50% + " + u.x / F + "em), calc(-50% + " + u.y / F + "em)) " : "translate(" + u.x / F + "em, " + u.y / F + "em) ", + b += "scale(" + u.size / F * (u.flipX ? -1 : 1) + ", " + u.size / F * (u.flipY ? -1 : 1) + ") ", + b += "rotate(" + u.rotate + "deg) "), y["-webkit-transform"] = y.transform); + var w = J(y); + 0 < w.length && (f.style = w); + var x = []; + return x.push({ + tag: "span", + attributes: f, + children: [ e ] + }), i && x.push({ + tag: "span", + attributes: { + class: "sr-only" + }, + children: [ i ] + }), x; + } + var ot = function() {}, st = R.measurePerformance && l && l.mark && l.measure ? l : { + mark: ot, + measure: ot + }, lt = 'FA "5.1.1"', ft = function(t) { + st.mark(lt + " " + t + " ends"), st.measure(lt + " " + t, lt + " " + t + " begins", lt + " " + t + " ends"); + }, ct = { + begin: function(t) { + return st.mark(lt + " " + t + " begins"), function() { + return ft(t); + }; + }, + end: ft + }, ut = function(t, e, n, r) { + var a, i, o, s, l, f = Object.keys(t), c = f.length, u = void 0 !== r ? (s = e, + l = r, function(t, e, n, r) { + return s.call(l, t, e, n, r); + }) : e; + for (void 0 === n ? (a = 1, o = t[f[0]]) : (a = 0, o = n); a < c; a++) o = u(o, t[i = f[a]], i, t); + return o; + }, mt = H.styles, dt = H.shims, gt = {}, ht = {}, pt = {}, vt = function() { + var t = function(r) { + return ut(mt, function(t, e, n) { + return t[n] = ut(e, r, {}), t; + }, {}); + }; + gt = t(function(t, e, n) { + return t[e[3]] = n, t; + }), ht = t(function(e, t, n) { + var r = t[2]; + return e[n] = n, r.forEach(function(t) { + e[t] = n; + }), e; + }); + var i = "far" in mt; + pt = ut(dt, function(t, e) { + var n = e[0], r = e[1], a = e[2]; + return "far" !== r || i || (r = "fas"), t[n] = { + prefix: r, + iconName: a + }, t; + }, {}); + }; + function bt(t, e) { + return gt[t][e]; + } + vt(); + var yt = H.styles, wt = function() { + return { + prefix: null, + iconName: null, + rest: [] + }; + }; + function xt(t) { + return t.reduce(function(t, e) { + var n = K(R.familyPrefix, e); + if (yt[e]) t.prefix = e; else if (n) { + var r = "fa" === t.prefix ? pt[n] || { + prefix: null, + iconName: null + } : {}; + t.iconName = r.iconName || n, t.prefix = r.prefix || t.prefix; + } else e !== R.replacementClass && 0 !== e.indexOf("fa-w-") && t.rest.push(e); + return t; + }, wt()); + } + function kt(t, e, n) { + if (t && t[e] && t[e][n]) return { + prefix: e, + iconName: n, + icon: t[e][n] + }; + } + function Ct(t) { + var n, e = t.tag, r = t.attributes, a = void 0 === r ? {} : r, i = t.children, o = void 0 === i ? [] : i; + return "string" == typeof t ? G(t) : "<" + e + " " + (n = a, Object.keys(n || {}).reduce(function(t, e) { + return t + (e + '="') + G(n[e]) + '" '; + }, "").trim()) + ">" + o.map(Ct).join("") + ""; + } + var Mt = function() {}; + function At(t) { + return "string" == typeof (t.getAttribute ? t.getAttribute(M) : null); + } + var Nt = { + replace: function(t) { + var e = t[0], n = t[1].map(function(t) { + return Ct(t); + }).join("\n"); + if (e.parentNode && e.outerHTML) e.outerHTML = n + (R.keepOriginalSource && "svg" !== e.tagName.toLowerCase() ? "\x3c!-- " + e.outerHTML + " --\x3e" : ""); else if (e.parentNode) { + var r = document.createElement("span"); + e.parentNode.replaceChild(r, e), r.outerHTML = n; + } + }, + nest: function(t) { + var e = t[0], n = t[1]; + if (~V(e).indexOf(R.replacementClass)) return Nt.replace(t); + var r = new RegExp(R.familyPrefix + "-.*"); + delete n[0].attributes.style; + var a = n[0].attributes.class.split(" ").reduce(function(t, e) { + return e === R.replacementClass || e.match(r) ? t.toSvg.push(e) : t.toNode.push(e), + t; + }, { + toNode: [], + toSvg: [] + }); + n[0].attributes.class = a.toSvg.join(" "); + var i = n.map(function(t) { + return Ct(t); + }).join("\n"); + e.setAttribute("class", a.toNode.join(" ")), e.setAttribute(M, ""), e.innerHTML = i; + } + }; + function zt(n, t) { + var r = "function" == typeof t ? t : Mt; + 0 === n.length ? r() : (m.requestAnimationFrame || function(t) { + return t(); + })(function() { + var t = !0 === R.autoReplaceSvg ? Nt.replace : Nt[R.autoReplaceSvg] || Nt.replace, e = ct.begin("mutate"); + n.map(t), e(), r(); + }); + } + var St = !1; + var Lt = null; + function Et(t) { + if (s && R.observeMutations) { + var a = t.treeCallback, i = t.nodeCallback, o = t.pseudoElementsCallback, e = t.observeMutationsRoot, n = void 0 === e ? d.body : e; + Lt = new s(function(t) { + St || U(t).forEach(function(t) { + if ("childList" === t.type && 0 < t.addedNodes.length && !At(t.addedNodes[0]) && (R.searchPseudoElements && o(t.target), + a(t.target)), "attributes" === t.type && t.target.parentNode && R.searchPseudoElements && o(t.target.parentNode), + "attributes" === t.type && At(t.target) && ~N.indexOf(t.attributeName)) if ("class" === t.attributeName) { + var e = xt(V(t.target)), n = e.prefix, r = e.iconName; + n && t.target.setAttribute("data-prefix", n), r && t.target.setAttribute("data-icon", r); + } else i(t.target); + }); + }), c && Lt.observe(n, { + childList: !0, + attributes: !0, + characterData: !0, + subtree: !0 + }); + } + } + var Ot = function(t) { + var e = t.getAttribute("style"), n = []; + return e && (n = e.split(";").reduce(function(t, e) { + var n = e.split(":"), r = n[0], a = n.slice(1); + return r && 0 < a.length && (t[r] = a.join(":").trim()), t; + }, {})), n; + }; + function Pt(t) { + for (var e = "", n = 0; n < t.length; n++) { + e += ("000" + t.charCodeAt(n).toString(16)).slice(-4); + } + return e; + } + var Tt = function(t) { + var e, n, r = t.getAttribute("data-prefix"), a = t.getAttribute("data-icon"), i = void 0 !== t.innerText ? t.innerText.trim() : "", o = xt(V(t)); + return r && a && (o.prefix = r, o.iconName = a), o.prefix && 1 < i.length ? o.iconName = (e = o.prefix, + n = t.innerText, ht[e][n]) : o.prefix && 1 === i.length && (o.iconName = bt(o.prefix, Pt(t.innerText))), + o; + }, jt = function(t) { + var e = { + size: 16, + x: 0, + y: 0, + flipX: !1, + flipY: !1, + rotate: 0 + }; + return t ? t.toLowerCase().split(" ").reduce(function(t, e) { + var n = e.toLowerCase().split("-"), r = n[0], a = n.slice(1).join("-"); + if (r && "h" === a) return t.flipX = !0, t; + if (r && "v" === a) return t.flipY = !0, t; + if (a = parseFloat(a), isNaN(a)) return t; + switch (r) { + case "grow": + t.size = t.size + a; + break; + + case "shrink": + t.size = t.size - a; + break; + + case "left": + t.x = t.x - a; + break; + + case "right": + t.x = t.x + a; + break; + + case "up": + t.y = t.y - a; + break; + + case "down": + t.y = t.y + a; + break; + + case "rotate": + t.rotate = t.rotate + a; + } + return t; + }, e) : e; + }, Rt = function(t) { + return jt(t.getAttribute("data-fa-transform")); + }, It = function(t) { + var e = t.getAttribute("data-fa-symbol"); + return null !== e && ("" === e || e); + }, Ht = function(t) { + var e = U(t.attributes).reduce(function(t, e) { + return "class" !== t.name && "style" !== t.name && (t[e.name] = e.value), t; + }, {}), n = t.getAttribute("title"); + return R.autoA11y && (n ? e["aria-labelledby"] = R.replacementClass + "-title-" + q() : e["aria-hidden"] = "true"), + e; + }, Bt = function(t) { + var e = t.getAttribute("data-fa-mask"); + return e ? xt(e.split(" ").map(function(t) { + return t.trim(); + })) : wt(); + }, Dt = { + iconName: null, + title: null, + prefix: null, + transform: _, + symbol: !1, + mask: null, + extra: { + classes: [], + styles: {}, + attributes: {} + } + }; + function Xt(t) { + this.name = "MissingIcon", this.message = t || "Icon unavailable", this.stack = new Error().stack; + } + (Xt.prototype = Object.create(Error.prototype)).constructor = Xt; + var Ft = { + fill: "currentColor" + }, _t = { + attributeType: "XML", + repeatCount: "indefinite", + dur: "2s" + }, Yt = { + tag: "path", + attributes: E({}, Ft, { + d: "M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z" + }) + }, Wt = E({}, _t, { + attributeName: "opacity" + }), qt = { + tag: "g", + children: [ Yt, { + tag: "circle", + attributes: E({}, Ft, { + cx: "256", + cy: "364", + r: "28" + }), + children: [ { + tag: "animate", + attributes: E({}, _t, { + attributeName: "r", + values: "28;14;28;28;14;28;" + }) + }, { + tag: "animate", + attributes: E({}, Wt, { + values: "1;0;1;1;0;1;" + }) + } ] + }, { + tag: "path", + attributes: E({}, Ft, { + opacity: "1", + d: "M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z" + }), + children: [ { + tag: "animate", + attributes: E({}, Wt, { + values: "1;0;0;0;0;1;" + }) + } ] + }, { + tag: "path", + attributes: E({}, Ft, { + opacity: "0", + d: "M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z" + }), + children: [ { + tag: "animate", + attributes: E({}, Wt, { + values: "0;0;1;1;0;0;" + }) + } ] + } ] + }, Ut = H.styles, Vt = "fa-layers-text", Kt = /Font Awesome 5 (Solid|Regular|Light|Brands|Free|Pro)/, Gt = { + Solid: "fas", + Regular: "far", + Light: "fal", + Brands: "fab" + }, Jt = { + 900: "fas", + 400: "far", + 300: "fal" + }; + function Qt(t, e) { + var n = { + found: !1, + width: 512, + height: 512, + icon: qt + }; + if (t && e && Ut[e] && Ut[e][t]) { + var r = Ut[e][t]; + n = { + found: !0, + width: r[0], + height: r[1], + icon: { + tag: "path", + attributes: { + fill: "currentColor", + d: r.slice(4)[0] + } + } + }; + } else if (t && e && !R.showMissingIcons) throw new Xt("Icon is missing for prefix " + e + " with icon name " + t); + return n; + } + function Zt(t) { + var e, n, r, a, i, o, s, l, f, c, u, m, d, g, h, p, v, b, y, w = (n = Tt(e = t), + r = n.iconName, a = n.prefix, i = n.rest, o = Ot(e), s = Rt(e), l = It(e), f = Ht(e), + c = Bt(e), { + iconName: r, + title: e.getAttribute("title"), + prefix: a, + transform: s, + symbol: l, + mask: c, + extra: { + classes: i, + styles: o, + attributes: f + } + }); + return ~w.extra.classes.indexOf(Vt) ? function(t, e) { + var n = e.title, r = e.transform, a = e.extra, i = null, o = null; + if (k) { + var s = parseInt(getComputedStyle(t).fontSize, 10), l = t.getBoundingClientRect(); + i = l.width / s, o = l.height / s; + } + return R.autoA11y && !n && (a.attributes["aria-hidden"] = "true"), [ t, it({ + content: t.innerHTML, + width: i, + height: o, + transform: r, + title: n, + extra: a, + watchable: !0 + }) ]; + }(t, w) : (u = t, d = (m = w).iconName, g = m.title, h = m.prefix, p = m.transform, + v = m.symbol, b = m.mask, y = m.extra, [ u, at({ + icons: { + main: Qt(d, h), + mask: Qt(b.iconName, b.prefix) + }, + prefix: h, + iconName: d, + transform: p, + symbol: v, + mask: b, + title: g, + extra: y, + watchable: !0 + }) ]); + } + function $t(t) { + if (c) { + var e = ct.begin("searchPseudoElements"); + St = !0, function() { + U(t.querySelectorAll("*")).filter(function(t) { + return !(t.parentNode === document.head || ~y.indexOf(t.tagName.toUpperCase()) || t.getAttribute(h) || t.parentNode && "svg" === t.parentNode.tagName); + }).forEach(function(u) { + [ ":before", ":after" ].forEach(function(e) { + var t = U(u.children).filter(function(t) { + return t.getAttribute(h) === e; + })[0], n = m.getComputedStyle(u, e), r = n.getPropertyValue("font-family").match(Kt), a = n.getPropertyValue("font-weight"); + if (t && !r) u.removeChild(t); else if (r) { + var i = n.getPropertyValue("content"), o = ~[ "Light", "Regular", "Solid", "Brands" ].indexOf(r[1]) ? Gt[r[1]] : Jt[a], s = bt(o, Pt(3 === i.length ? i.substr(1, 1) : i)); + if (!t || t.getAttribute(p) !== o || t.getAttribute(v) !== s) { + t && u.removeChild(t); + var l = Dt.extra; + l.attributes[h] = e; + var f = at(E({}, Dt, { + icons: { + main: Qt(s, o), + mask: wt() + }, + prefix: o, + iconName: s, + extra: l, + watchable: !0 + })), c = d.createElement("svg"); + ":before" === e ? u.insertBefore(c, u.firstChild) : u.appendChild(c), c.outerHTML = f.map(function(t) { + return Ct(t); + }).join("\n"); + } + } + }); + }); + }(), St = !1, e(); + } + } + function te(t) { + var e = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : null; + if (c) { + var n = d.documentElement.classList, r = function(t) { + return n.add(b + "-" + t); + }, a = function(t) { + return n.remove(b + "-" + t); + }, i = Object.keys(Ut), o = [ "." + Vt + ":not([" + M + "])" ].concat(i.map(function(t) { + return "." + t + ":not([" + M + "])"; + })).join(", "); + if (0 !== o.length) { + var s = U(t.querySelectorAll(o)); + if (0 < s.length) { + r("pending"), a("complete"); + var l = ct.begin("onTree"), f = s.reduce(function(t, e) { + try { + var n = Zt(e); + n && t.push(n); + } catch (t) { + w || t instanceof Xt && console.error(t); + } + return t; + }, []); + l(), zt(f, function() { + r("active"), r("complete"), a("pending"), "function" == typeof e && e(); + }); + } + } + } + } + function ee(t) { + var e = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : null, n = Zt(t); + n && zt([ n ], e); + } + var ne = function() { + var t = g, e = R.familyPrefix, n = R.replacementClass, r = 'svg:not(:root).svg-inline--fa {\n overflow: visible; }\n\n.svg-inline--fa {\n display: inline-block;\n font-size: inherit;\n height: 1em;\n overflow: visible;\n vertical-align: -.125em; }\n .svg-inline--fa.fa-lg {\n vertical-align: -.225em; }\n .svg-inline--fa.fa-w-1 {\n width: 0.0625em; }\n .svg-inline--fa.fa-w-2 {\n width: 0.125em; }\n .svg-inline--fa.fa-w-3 {\n width: 0.1875em; }\n .svg-inline--fa.fa-w-4 {\n width: 0.25em; }\n .svg-inline--fa.fa-w-5 {\n width: 0.3125em; }\n .svg-inline--fa.fa-w-6 {\n width: 0.375em; }\n .svg-inline--fa.fa-w-7 {\n width: 0.4375em; }\n .svg-inline--fa.fa-w-8 {\n width: 0.5em; }\n .svg-inline--fa.fa-w-9 {\n width: 0.5625em; }\n .svg-inline--fa.fa-w-10 {\n width: 0.625em; }\n .svg-inline--fa.fa-w-11 {\n width: 0.6875em; }\n .svg-inline--fa.fa-w-12 {\n width: 0.75em; }\n .svg-inline--fa.fa-w-13 {\n width: 0.8125em; }\n .svg-inline--fa.fa-w-14 {\n width: 0.875em; }\n .svg-inline--fa.fa-w-15 {\n width: 0.9375em; }\n .svg-inline--fa.fa-w-16 {\n width: 1em; }\n .svg-inline--fa.fa-w-17 {\n width: 1.0625em; }\n .svg-inline--fa.fa-w-18 {\n width: 1.125em; }\n .svg-inline--fa.fa-w-19 {\n width: 1.1875em; }\n .svg-inline--fa.fa-w-20 {\n width: 1.25em; }\n .svg-inline--fa.fa-pull-left {\n margin-right: .3em;\n width: auto; }\n .svg-inline--fa.fa-pull-right {\n margin-left: .3em;\n width: auto; }\n .svg-inline--fa.fa-border {\n height: 1.5em; }\n .svg-inline--fa.fa-li {\n width: 2em; }\n .svg-inline--fa.fa-fw {\n width: 1.25em; }\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0; }\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -.125em;\n width: 1em; }\n .fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center; }\n\n.fa-layers-text, .fa-layers-counter {\n display: inline-block;\n position: absolute;\n text-align: center; }\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center; }\n\n.fa-layers-counter {\n background-color: #ff253a;\n border-radius: 1em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #fff;\n height: 1.5em;\n line-height: 1;\n max-width: 5em;\n min-width: 1.5em;\n overflow: hidden;\n padding: .25em;\n right: 0;\n text-overflow: ellipsis;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right; }\n\n.fa-layers-bottom-right {\n bottom: 0;\n right: 0;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right; }\n\n.fa-layers-bottom-left {\n bottom: 0;\n left: 0;\n right: auto;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left; }\n\n.fa-layers-top-right {\n right: 0;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right; }\n\n.fa-layers-top-left {\n left: 0;\n right: auto;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top left;\n transform-origin: top left; }\n\n.fa-lg {\n font-size: 1.33333em;\n line-height: 0.75em;\n vertical-align: -.0667em; }\n\n.fa-xs {\n font-size: .75em; }\n\n.fa-sm {\n font-size: .875em; }\n\n.fa-1x {\n font-size: 1em; }\n\n.fa-2x {\n font-size: 2em; }\n\n.fa-3x {\n font-size: 3em; }\n\n.fa-4x {\n font-size: 4em; }\n\n.fa-5x {\n font-size: 5em; }\n\n.fa-6x {\n font-size: 6em; }\n\n.fa-7x {\n font-size: 7em; }\n\n.fa-8x {\n font-size: 8em; }\n\n.fa-9x {\n font-size: 9em; }\n\n.fa-10x {\n font-size: 10em; }\n\n.fa-fw {\n text-align: center;\n width: 1.25em; }\n\n.fa-ul {\n list-style-type: none;\n margin-left: 2.5em;\n padding-left: 0; }\n .fa-ul > li {\n position: relative; }\n\n.fa-li {\n left: -2em;\n position: absolute;\n text-align: center;\n width: 2em;\n line-height: inherit; }\n\n.fa-border {\n border: solid 0.08em #eee;\n border-radius: .1em;\n padding: .2em .25em .15em; }\n\n.fa-pull-left {\n float: left; }\n\n.fa-pull-right {\n float: right; }\n\n.fa.fa-pull-left,\n.fas.fa-pull-left,\n.far.fa-pull-left,\n.fal.fa-pull-left,\n.fab.fa-pull-left {\n margin-right: .3em; }\n\n.fa.fa-pull-right,\n.fas.fa-pull-right,\n.far.fa-pull-right,\n.fal.fa-pull-right,\n.fab.fa-pull-right {\n margin-left: .3em; }\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear; }\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8); }\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n.fa-rotate-90 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg); }\n\n.fa-rotate-180 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg); }\n\n.fa-rotate-270 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg); }\n\n.fa-flip-horizontal {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1); }\n\n.fa-flip-vertical {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1); }\n\n.fa-flip-horizontal.fa-flip-vertical {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1); }\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n -webkit-filter: none;\n filter: none; }\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n position: relative;\n width: 2em; }\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0; }\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1em; }\n\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2em; }\n\n.fa-inverse {\n color: #fff; }\n\n.sr-only {\n border: 0;\n clip: rect(0, 0, 0, 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px; }\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n clip: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n position: static;\n width: auto; }\n'; + if ("fa" !== e || n !== t) { + var a = new RegExp("\\.fa\\-", "g"), i = new RegExp("\\." + t, "g"); + r = r.replace(a, "." + e + "-").replace(i, "." + n); + } + return r; + }; + function re(t) { + return { + found: !0, + width: t[0], + height: t[1], + icon: { + tag: "path", + attributes: { + fill: "currentColor", + d: t.slice(4)[0] + } + } + }; + } + function ae() { + R.autoAddCss && !fe && (Y(ne()), fe = !0); + } + function ie(e, t) { + return Object.defineProperty(e, "abstract", { + get: t + }), Object.defineProperty(e, "html", { + get: function() { + return e.abstract.map(function(t) { + return Ct(t); + }); + } + }), Object.defineProperty(e, "node", { + get: function() { + if (c) { + var t = d.createElement("div"); + return t.innerHTML = e.html, t.children; + } + } + }), e; + } + function oe(t) { + var e = t.prefix, n = void 0 === e ? "fa" : e, r = t.iconName; + if (r) return kt(le.definitions, n, r) || kt(H.styles, n, r); + } + var se, le = new (function() { + function t() { + S(this, t), this.definitions = {}; + } + return L(t, [ { + key: "add", + value: function() { + for (var e = this, t = arguments.length, n = Array(t), r = 0; r < t; r++) n[r] = arguments[r]; + var a = n.reduce(this._pullDefinitions, {}); + Object.keys(a).forEach(function(t) { + e.definitions[t] = E({}, e.definitions[t] || {}, a[t]), function t(e, r) { + var n = Object.keys(r).reduce(function(t, e) { + var n = r[e]; + return n.icon ? t[n.iconName] = n.icon : t[e] = n, t; + }, {}); + "function" == typeof H.hooks.addPack ? H.hooks.addPack(e, n) : H.styles[e] = E({}, H.styles[e] || {}, n), + "fas" === e && t("fa", r); + }(t, a[t]), vt(); + }); + } + }, { + key: "reset", + value: function() { + this.definitions = {}; + } + }, { + key: "_pullDefinitions", + value: function(i, t) { + var o = t.prefix && t.iconName && t.icon ? { + 0: t + } : t; + return Object.keys(o).map(function(t) { + var e = o[t], n = e.prefix, r = e.iconName, a = e.icon; + i[n] || (i[n] = {}), i[n][r] = a; + }), i; + } + } ]), t; + }())(), fe = !1, ce = { + i2svg: function() { + var t = 0 < arguments.length && void 0 !== arguments[0] ? arguments[0] : {}; + if (c) { + ae(); + var e = t.node, n = void 0 === e ? d : e, r = t.callback, a = void 0 === r ? function() {} : r; + R.searchPseudoElements && $t(n), te(n, a); + } + }, + css: ne, + insertCss: function() { + fe || (Y(ne()), fe = !0); + }, + watch: function() { + var t = 0 < arguments.length && void 0 !== arguments[0] ? arguments[0] : {}, e = t.autoReplaceSvgRoot, n = t.observeMutationsRoot; + !1 === R.autoReplaceSvg && (R.autoReplaceSvg = !0), R.observeMutations = !0, X(function() { + de({ + autoReplaceSvgRoot: e + }), Et({ + treeCallback: te, + nodeCallback: ee, + pseudoElementsCallback: $t, + observeMutationsRoot: n + }); + }); + } + }, ue = (se = function(t) { + var e = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : {}, n = e.transform, r = void 0 === n ? _ : n, a = e.symbol, i = void 0 !== a && a, o = e.mask, s = void 0 === o ? null : o, l = e.title, f = void 0 === l ? null : l, c = e.classes, u = void 0 === c ? [] : c, m = e.attributes, d = void 0 === m ? {} : m, g = e.styles, h = void 0 === g ? {} : g; + if (t) { + var p = t.prefix, v = t.iconName, b = t.icon; + return ie(E({ + type: "icon" + }, t), function() { + return ae(), R.autoA11y && (f ? d["aria-labelledby"] = R.replacementClass + "-title-" + q() : d["aria-hidden"] = "true"), + at({ + icons: { + main: re(b), + mask: s ? re(s.icon) : { + found: !1, + width: null, + height: null, + icon: {} + } + }, + prefix: p, + iconName: v, + transform: E({}, _, r), + symbol: i, + title: f, + extra: { + attributes: d, + styles: h, + classes: u + } + }); + }); + } + }, function(t) { + var e = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : {}, n = (t || {}).icon ? t : oe(t || {}), r = e.mask; + return r && (r = (r || {}).icon ? r : oe(r || {})), se(n, E({}, e, { + mask: r + })); + }), me = { + noAuto: function() { + R.autoReplaceSvg = !1, R.observeMutations = !1, Lt && Lt.disconnect(); + }, + config: R, + dom: ce, + library: le, + parse: { + transform: function(t) { + return jt(t); + } + }, + findIconDefinition: oe, + icon: ue, + text: function(t) { + var e = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : {}, n = e.transform, r = void 0 === n ? _ : n, a = e.title, i = void 0 === a ? null : a, o = e.classes, s = void 0 === o ? [] : o, l = e.attributes, f = void 0 === l ? {} : l, c = e.styles, u = void 0 === c ? {} : c; + return ie({ + type: "text", + content: t + }, function() { + return ae(), it({ + content: t, + transform: E({}, _, r), + title: i, + extra: { + attributes: f, + styles: u, + classes: [ R.familyPrefix + "-layers-text" ].concat(P(s)) + } + }); + }); + }, + counter: function(t) { + var e = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : {}, n = e.title, r = void 0 === n ? null : n, a = e.classes, i = void 0 === a ? [] : a, o = e.attributes, s = void 0 === o ? {} : o, l = e.styles, f = void 0 === l ? {} : l; + return ie({ + type: "counter", + content: t + }, function() { + return ae(), function(t) { + var e = t.content, n = t.title, r = t.extra, a = E({}, r.attributes, n ? { + title: n + } : {}, { + class: r.classes.join(" ") + }), i = J(r.styles); + 0 < i.length && (a.style = i); + var o = []; + return o.push({ + tag: "span", + attributes: a, + children: [ e ] + }), n && o.push({ + tag: "span", + attributes: { + class: "sr-only" + }, + children: [ n ] + }), o; + }({ + content: t.toString(), + title: r, + extra: { + attributes: s, + styles: f, + classes: [ R.familyPrefix + "-layers-counter" ].concat(P(i)) + } + }); + }); + }, + layer: function(t) { + return ie({ + type: "layer" + }, function() { + ae(); + var e = []; + return t(function(t) { + Array.isArray(t) ? t.map(function(t) { + e = e.concat(t.abstract); + }) : e = e.concat(t.abstract); + }), [ { + tag: "span", + attributes: { + class: R.familyPrefix + "-layers" + }, + children: e + } ]; + }); + }, + toHtml: Ct + }, de = function() { + var t = (0 < arguments.length && void 0 !== arguments[0] ? arguments[0] : {}).autoReplaceSvgRoot, e = void 0 === t ? d : t; + 0 < Object.keys(H.styles).length && c && R.autoReplaceSvg && me.dom.i2svg({ + node: e + }); + }; + !function(t) { + try { + t(); + } catch (t) { + if (!w) throw t; + } + }(function() { + f && (m.FontAwesome || (m.FontAwesome = me), X(function() { + de(), Et({ + treeCallback: te, + nodeCallback: ee, + pseudoElementsCallback: $t + }); + })), H.hooks = E({}, H.hooks, { + addPack: function(t, e) { + H.styles[t] = E({}, H.styles[t] || {}, e), vt(), de(); + }, + addShims: function(t) { + var e; + (e = H.shims).push.apply(e, P(t)), vt(), de(); + } + }); + }); +}(); \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/use-on-desktop/Font Awesome 5 Brands-Regular-400.otf b/site/themes/docsy/assets/vendor/Font-Awesome/use-on-desktop/Font Awesome 5 Brands-Regular-400.otf new file mode 100644 index 0000000000000000000000000000000000000000..491529afb04fbaadad3de350a664978b567d4719 GIT binary patch literal 419608 zcmdqK2Y6J~);GS-nRe2K5{4!v6a_{iDn)EpuX@FfZBP`;BpH$+WnyNM5Q@|Y=lTnN!+ z*k%8?T-h&X3CF?f@wxY~>xbV|G&eFwIPaqOS;KDfUGm$eJ__DPgt%ws@S6sleZv!Z zR|%n9jQ4lv7W+%T?YjO3A)H%N4@aJ`%dY}^TcH+Mw1$fZrqBbhpx5MY&1;vrE z-KV5IDV%qAL7&~l{;{RXR+?HFio#jqFAmJ!(Y^;hKOuypeQ78h5gOizv{5Lsgn|

    qqYMJF*`U`U58+3Uo=*N^^3p14?K9sQ8!Iz!nl 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%0DBT+Zj(Xymm|$7; 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

    <NK$1JZ2D>KgOCD( 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�vf?fVYHLeF#xz5RgiZB5V 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 li { + position: relative; } + +.fa-li { + left: -2em; + position: absolute; + text-align: center; + width: 2em; + line-height: inherit; } + +.fa-border { + border: solid 0.08em #eee; + border-radius: .1em; + padding: .2em .25em .15em; } + +.fa-pull-left { + float: left; } + +.fa-pull-right { + float: right; } + +.fa.fa-pull-left, +.fas.fa-pull-left, +.far.fa-pull-left, +.fal.fa-pull-left, +.fab.fa-pull-left { + margin-right: .3em; } + +.fa.fa-pull-right, +.fas.fa-pull-right, +.far.fa-pull-right, +.fal.fa-pull-right, +.fab.fa-pull-right { + margin-left: .3em; } + +.fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; } + +.fa-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); } + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +.fa-rotate-90 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); } + +.fa-rotate-180 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + transform: rotate(180deg); } + +.fa-rotate-270 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + transform: rotate(270deg); } + +.fa-flip-horizontal { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + -webkit-transform: scale(-1, 1); + transform: scale(-1, 1); } + +.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(1, -1); + transform: scale(1, -1); } + +.fa-flip-horizontal.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(-1, -1); + transform: scale(-1, -1); } + +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270, +:root .fa-flip-horizontal, +:root .fa-flip-vertical { + -webkit-filter: none; + filter: none; } + +.fa-stack { + display: inline-block; + height: 2em; + line-height: 2em; + position: relative; + vertical-align: middle; + width: 2em; } + +.fa-stack-1x, +.fa-stack-2x { + left: 0; + position: absolute; + text-align: center; + width: 100%; } + +.fa-stack-1x { + line-height: inherit; } + +.fa-stack-2x { + font-size: 2em; } + +.fa-inverse { + color: #fff; } + +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen +readers do not read off random characters that represent icons */ +.fa-500px:before { + content: "\f26e"; } + +.fa-accessible-icon:before { + content: "\f368"; } + +.fa-accusoft:before { + content: "\f369"; } + +.fa-address-book:before { + content: "\f2b9"; } + +.fa-address-card:before { + content: "\f2bb"; } + +.fa-adjust:before { + content: "\f042"; } + +.fa-adn:before { + content: "\f170"; } + +.fa-adversal:before { + content: "\f36a"; } + +.fa-affiliatetheme:before { + content: "\f36b"; } + +.fa-algolia:before { + content: "\f36c"; } + +.fa-align-center:before { + content: "\f037"; } + +.fa-align-justify:before { + content: "\f039"; } + +.fa-align-left:before { + content: "\f036"; } + +.fa-align-right:before { + content: "\f038"; } + +.fa-allergies:before { + content: "\f461"; } + +.fa-amazon:before { + content: "\f270"; } + +.fa-amazon-pay:before { + content: "\f42c"; } + +.fa-ambulance:before { + content: "\f0f9"; } + +.fa-american-sign-language-interpreting:before { + content: "\f2a3"; } + +.fa-amilia:before { + content: "\f36d"; } + +.fa-anchor:before { + content: "\f13d"; } + +.fa-android:before { + content: "\f17b"; } + +.fa-angellist:before { + content: "\f209"; } + +.fa-angle-double-down:before { + content: "\f103"; } + +.fa-angle-double-left:before { + content: "\f100"; } + +.fa-angle-double-right:before { + content: "\f101"; } + +.fa-angle-double-up:before { + content: "\f102"; } + +.fa-angle-down:before { + content: "\f107"; } + +.fa-angle-left:before { + content: "\f104"; } + +.fa-angle-right:before { + content: "\f105"; } + +.fa-angle-up:before { + content: "\f106"; } + +.fa-angry:before { + content: "\f556"; } + +.fa-angrycreative:before { + content: "\f36e"; } + +.fa-angular:before { + content: "\f420"; } + +.fa-app-store:before { + content: "\f36f"; } + +.fa-app-store-ios:before { + content: "\f370"; } + +.fa-apper:before { + content: "\f371"; } + +.fa-apple:before { + content: "\f179"; } + +.fa-apple-pay:before { + content: "\f415"; } + +.fa-archive:before { + content: "\f187"; } + +.fa-archway:before { + content: "\f557"; } + +.fa-arrow-alt-circle-down:before { + content: "\f358"; } + +.fa-arrow-alt-circle-left:before { + content: "\f359"; } + +.fa-arrow-alt-circle-right:before { + content: "\f35a"; } + +.fa-arrow-alt-circle-up:before { + content: "\f35b"; } + +.fa-arrow-circle-down:before { + content: "\f0ab"; } + +.fa-arrow-circle-left:before { + content: "\f0a8"; } + +.fa-arrow-circle-right:before { + content: "\f0a9"; } + +.fa-arrow-circle-up:before { + content: "\f0aa"; } + +.fa-arrow-down:before { + content: "\f063"; } + +.fa-arrow-left:before { + content: "\f060"; } + +.fa-arrow-right:before { + content: "\f061"; } + +.fa-arrow-up:before { + content: "\f062"; } + +.fa-arrows-alt:before { + content: "\f0b2"; } + +.fa-arrows-alt-h:before { + content: "\f337"; } + +.fa-arrows-alt-v:before { + content: "\f338"; } + +.fa-assistive-listening-systems:before { + content: "\f2a2"; } + +.fa-asterisk:before { + content: "\f069"; } + +.fa-asymmetrik:before { + content: "\f372"; } + +.fa-at:before { + content: "\f1fa"; } + +.fa-atlas:before { + content: "\f558"; } + +.fa-audible:before { + content: "\f373"; } + +.fa-audio-description:before { + content: "\f29e"; } + +.fa-autoprefixer:before { + content: "\f41c"; } + +.fa-avianex:before { + content: "\f374"; } + +.fa-aviato:before { + content: "\f421"; } + +.fa-award:before { + content: "\f559"; } + +.fa-aws:before { + content: "\f375"; } + +.fa-backspace:before { + content: "\f55a"; } + +.fa-backward:before { + content: "\f04a"; } + +.fa-balance-scale:before { + content: "\f24e"; } + +.fa-ban:before { + content: "\f05e"; } + +.fa-band-aid:before { + content: "\f462"; } + +.fa-bandcamp:before { + content: "\f2d5"; } + +.fa-barcode:before { + content: "\f02a"; } + +.fa-bars:before { + content: "\f0c9"; } + +.fa-baseball-ball:before { + content: "\f433"; } + +.fa-basketball-ball:before { + content: "\f434"; } + +.fa-bath:before { + content: "\f2cd"; } + +.fa-battery-empty:before { + content: "\f244"; } + +.fa-battery-full:before { + content: "\f240"; } + +.fa-battery-half:before { + content: "\f242"; } + +.fa-battery-quarter:before { + content: "\f243"; } + +.fa-battery-three-quarters:before { + content: "\f241"; } + +.fa-bed:before { + content: "\f236"; } + +.fa-beer:before { + content: "\f0fc"; } + +.fa-behance:before { + content: "\f1b4"; } + +.fa-behance-square:before { + content: "\f1b5"; } + +.fa-bell:before { + content: "\f0f3"; } + +.fa-bell-slash:before { + content: "\f1f6"; } + +.fa-bezier-curve:before { + content: "\f55b"; } + +.fa-bicycle:before { + content: "\f206"; } + +.fa-bimobject:before { + content: "\f378"; } + +.fa-binoculars:before { + content: "\f1e5"; } + +.fa-birthday-cake:before { + content: "\f1fd"; } + +.fa-bitbucket:before { + content: "\f171"; } + +.fa-bitcoin:before { + content: "\f379"; } + +.fa-bity:before { + content: "\f37a"; } + +.fa-black-tie:before { + content: "\f27e"; } + +.fa-blackberry:before { + content: "\f37b"; } + +.fa-blender:before { + content: "\f517"; } + +.fa-blind:before { + content: "\f29d"; } + +.fa-blogger:before { + content: "\f37c"; } + +.fa-blogger-b:before { + content: "\f37d"; } + +.fa-bluetooth:before { + content: "\f293"; } + +.fa-bluetooth-b:before { + content: "\f294"; } + +.fa-bold:before { + content: "\f032"; } + +.fa-bolt:before { + content: "\f0e7"; } + +.fa-bomb:before { + content: "\f1e2"; } + +.fa-bong:before { + content: "\f55c"; } + +.fa-book:before { + content: "\f02d"; } + +.fa-book-open:before { + content: "\f518"; } + +.fa-bookmark:before { + content: "\f02e"; } + +.fa-bowling-ball:before { + content: "\f436"; } + +.fa-box:before { + content: "\f466"; } + +.fa-box-open:before { + content: "\f49e"; } + +.fa-boxes:before { + content: "\f468"; } + +.fa-braille:before { + content: "\f2a1"; } + +.fa-briefcase:before { + content: "\f0b1"; } + +.fa-briefcase-medical:before { + content: "\f469"; } + +.fa-broadcast-tower:before { + content: "\f519"; } + +.fa-broom:before { + content: "\f51a"; } + +.fa-brush:before { + content: "\f55d"; } + +.fa-btc:before { + content: "\f15a"; } + +.fa-bug:before { + content: "\f188"; } + +.fa-building:before { + content: "\f1ad"; } + +.fa-bullhorn:before { + content: "\f0a1"; } + +.fa-bullseye:before { + content: "\f140"; } + +.fa-burn:before { + content: "\f46a"; } + +.fa-buromobelexperte:before { + content: "\f37f"; } + +.fa-bus:before { + content: "\f207"; } + +.fa-bus-alt:before { + content: "\f55e"; } + +.fa-buysellads:before { + content: "\f20d"; } + +.fa-calculator:before { + content: "\f1ec"; } + +.fa-calendar:before { + content: "\f133"; } + +.fa-calendar-alt:before { + content: "\f073"; } + +.fa-calendar-check:before { + content: "\f274"; } + +.fa-calendar-minus:before { + content: "\f272"; } + +.fa-calendar-plus:before { + content: "\f271"; } + +.fa-calendar-times:before { + content: "\f273"; } + +.fa-camera:before { + content: "\f030"; } + +.fa-camera-retro:before { + content: "\f083"; } + +.fa-cannabis:before { + content: "\f55f"; } + +.fa-capsules:before { + content: "\f46b"; } + +.fa-car:before { + content: "\f1b9"; } + +.fa-caret-down:before { + content: "\f0d7"; } + +.fa-caret-left:before { + content: "\f0d9"; } + +.fa-caret-right:before { + content: "\f0da"; } + +.fa-caret-square-down:before { + content: "\f150"; } + +.fa-caret-square-left:before { + content: "\f191"; } + +.fa-caret-square-right:before { + content: "\f152"; } + +.fa-caret-square-up:before { + content: "\f151"; } + +.fa-caret-up:before { + content: "\f0d8"; } + +.fa-cart-arrow-down:before { + content: "\f218"; } + +.fa-cart-plus:before { + content: "\f217"; } + +.fa-cc-amazon-pay:before { + content: "\f42d"; } + +.fa-cc-amex:before { + content: "\f1f3"; } + +.fa-cc-apple-pay:before { + content: "\f416"; } + +.fa-cc-diners-club:before { + content: "\f24c"; } + +.fa-cc-discover:before { + content: "\f1f2"; } + +.fa-cc-jcb:before { + content: "\f24b"; } + +.fa-cc-mastercard:before { + content: "\f1f1"; } + +.fa-cc-paypal:before { + content: "\f1f4"; } + +.fa-cc-stripe:before { + content: "\f1f5"; } + +.fa-cc-visa:before { + content: "\f1f0"; } + +.fa-centercode:before { + content: "\f380"; } + +.fa-certificate:before { + content: "\f0a3"; } + +.fa-chalkboard:before { + content: "\f51b"; } + +.fa-chalkboard-teacher:before { + content: "\f51c"; } + +.fa-chart-area:before { + content: "\f1fe"; } + +.fa-chart-bar:before { + content: "\f080"; } + +.fa-chart-line:before { + content: "\f201"; } + +.fa-chart-pie:before { + content: "\f200"; } + +.fa-check:before { + content: "\f00c"; } + +.fa-check-circle:before { + content: "\f058"; } + +.fa-check-double:before { + content: "\f560"; } + +.fa-check-square:before { + content: "\f14a"; } + +.fa-chess:before { + content: "\f439"; } + +.fa-chess-bishop:before { + content: "\f43a"; } + +.fa-chess-board:before { + content: "\f43c"; } + +.fa-chess-king:before { + content: "\f43f"; } + +.fa-chess-knight:before { + content: "\f441"; } + +.fa-chess-pawn:before { + content: "\f443"; } + +.fa-chess-queen:before { + content: "\f445"; } + +.fa-chess-rook:before { + content: "\f447"; } + +.fa-chevron-circle-down:before { + content: "\f13a"; } + +.fa-chevron-circle-left:before { + content: "\f137"; } + +.fa-chevron-circle-right:before { + content: "\f138"; } + +.fa-chevron-circle-up:before { + content: "\f139"; } + +.fa-chevron-down:before { + content: "\f078"; } + +.fa-chevron-left:before { + content: "\f053"; } + +.fa-chevron-right:before { + content: "\f054"; } + +.fa-chevron-up:before { + content: "\f077"; } + +.fa-child:before { + content: "\f1ae"; } + +.fa-chrome:before { + content: "\f268"; } + +.fa-church:before { + content: "\f51d"; } + +.fa-circle:before { + content: "\f111"; } + +.fa-circle-notch:before { + content: "\f1ce"; } + +.fa-clipboard:before { + content: "\f328"; } + +.fa-clipboard-check:before { + content: "\f46c"; } + +.fa-clipboard-list:before { + content: "\f46d"; } + +.fa-clock:before { + content: "\f017"; } + +.fa-clone:before { + content: "\f24d"; } + +.fa-closed-captioning:before { + content: "\f20a"; } + +.fa-cloud:before { + content: "\f0c2"; } + +.fa-cloud-download-alt:before { + content: "\f381"; } + +.fa-cloud-upload-alt:before { + content: "\f382"; } + +.fa-cloudscale:before { + content: "\f383"; } + +.fa-cloudsmith:before { + content: "\f384"; } + +.fa-cloudversify:before { + content: "\f385"; } + +.fa-cocktail:before { + content: "\f561"; } + +.fa-code:before { + content: "\f121"; } + +.fa-code-branch:before { + content: "\f126"; } + +.fa-codepen:before { + content: "\f1cb"; } + +.fa-codiepie:before { + content: "\f284"; } + +.fa-coffee:before { + content: "\f0f4"; } + +.fa-cog:before { + content: "\f013"; } + +.fa-cogs:before { + content: "\f085"; } + +.fa-coins:before { + content: "\f51e"; } + +.fa-columns:before { + content: "\f0db"; } + +.fa-comment:before { + content: "\f075"; } + +.fa-comment-alt:before { + content: "\f27a"; } + +.fa-comment-dots:before { + content: "\f4ad"; } + +.fa-comment-slash:before { + content: "\f4b3"; } + +.fa-comments:before { + content: "\f086"; } + +.fa-compact-disc:before { + content: "\f51f"; } + +.fa-compass:before { + content: "\f14e"; } + +.fa-compress:before { + content: "\f066"; } + +.fa-concierge-bell:before { + content: "\f562"; } + +.fa-connectdevelop:before { + content: "\f20e"; } + +.fa-contao:before { + content: "\f26d"; } + +.fa-cookie:before { + content: "\f563"; } + +.fa-cookie-bite:before { + content: "\f564"; } + +.fa-copy:before { + content: "\f0c5"; } + +.fa-copyright:before { + content: "\f1f9"; } + +.fa-couch:before { + content: "\f4b8"; } + +.fa-cpanel:before { + content: "\f388"; } + +.fa-creative-commons:before { + content: "\f25e"; } + +.fa-creative-commons-by:before { + content: "\f4e7"; } + +.fa-creative-commons-nc:before { + content: "\f4e8"; } + +.fa-creative-commons-nc-eu:before { + content: "\f4e9"; } + +.fa-creative-commons-nc-jp:before { + content: "\f4ea"; } + +.fa-creative-commons-nd:before { + content: "\f4eb"; } + +.fa-creative-commons-pd:before { + content: "\f4ec"; } + +.fa-creative-commons-pd-alt:before { + content: "\f4ed"; } + +.fa-creative-commons-remix:before { + content: "\f4ee"; } + +.fa-creative-commons-sa:before { + content: "\f4ef"; } + +.fa-creative-commons-sampling:before { + content: "\f4f0"; } + +.fa-creative-commons-sampling-plus:before { + content: "\f4f1"; } + +.fa-creative-commons-share:before { + content: "\f4f2"; } + +.fa-credit-card:before { + content: "\f09d"; } + +.fa-crop:before { + content: "\f125"; } + +.fa-crop-alt:before { + content: "\f565"; } + +.fa-crosshairs:before { + content: "\f05b"; } + +.fa-crow:before { + content: "\f520"; } + +.fa-crown:before { + content: "\f521"; } + +.fa-css3:before { + content: "\f13c"; } + +.fa-css3-alt:before { + content: "\f38b"; } + +.fa-cube:before { + content: "\f1b2"; } + +.fa-cubes:before { + content: "\f1b3"; } + +.fa-cut:before { + content: "\f0c4"; } + +.fa-cuttlefish:before { + content: "\f38c"; } + +.fa-d-and-d:before { + content: "\f38d"; } + +.fa-dashcube:before { + content: "\f210"; } + +.fa-database:before { + content: "\f1c0"; } + +.fa-deaf:before { + content: "\f2a4"; } + +.fa-delicious:before { + content: "\f1a5"; } + +.fa-deploydog:before { + content: "\f38e"; } + +.fa-deskpro:before { + content: "\f38f"; } + +.fa-desktop:before { + content: "\f108"; } + +.fa-deviantart:before { + content: "\f1bd"; } + +.fa-diagnoses:before { + content: "\f470"; } + +.fa-dice:before { + content: "\f522"; } + +.fa-dice-five:before { + content: "\f523"; } + +.fa-dice-four:before { + content: "\f524"; } + +.fa-dice-one:before { + content: "\f525"; } + +.fa-dice-six:before { + content: "\f526"; } + +.fa-dice-three:before { + content: "\f527"; } + +.fa-dice-two:before { + content: "\f528"; } + +.fa-digg:before { + content: "\f1a6"; } + +.fa-digital-ocean:before { + content: "\f391"; } + +.fa-digital-tachograph:before { + content: "\f566"; } + +.fa-discord:before { + content: "\f392"; } + +.fa-discourse:before { + content: "\f393"; } + +.fa-divide:before { + content: "\f529"; } + +.fa-dizzy:before { + content: "\f567"; } + +.fa-dna:before { + content: "\f471"; } + +.fa-dochub:before { + content: "\f394"; } + +.fa-docker:before { + content: "\f395"; } + +.fa-dollar-sign:before { + content: "\f155"; } + +.fa-dolly:before { + content: "\f472"; } + +.fa-dolly-flatbed:before { + content: "\f474"; } + +.fa-donate:before { + content: "\f4b9"; } + +.fa-door-closed:before { + content: "\f52a"; } + +.fa-door-open:before { + content: "\f52b"; } + +.fa-dot-circle:before { + content: "\f192"; } + +.fa-dove:before { + content: "\f4ba"; } + +.fa-download:before { + content: "\f019"; } + +.fa-draft2digital:before { + content: "\f396"; } + +.fa-drafting-compass:before { + content: "\f568"; } + +.fa-dribbble:before { + content: "\f17d"; } + +.fa-dribbble-square:before { + content: "\f397"; } + +.fa-dropbox:before { + content: "\f16b"; } + +.fa-drum:before { + content: "\f569"; } + +.fa-drum-steelpan:before { + content: "\f56a"; } + +.fa-drupal:before { + content: "\f1a9"; } + +.fa-dumbbell:before { + content: "\f44b"; } + +.fa-dyalog:before { + content: "\f399"; } + +.fa-earlybirds:before { + content: "\f39a"; } + +.fa-ebay:before { + content: "\f4f4"; } + +.fa-edge:before { + content: "\f282"; } + +.fa-edit:before { + content: "\f044"; } + +.fa-eject:before { + content: "\f052"; } + +.fa-elementor:before { + content: "\f430"; } + +.fa-ellipsis-h:before { + content: "\f141"; } + +.fa-ellipsis-v:before { + content: "\f142"; } + +.fa-ember:before { + content: "\f423"; } + +.fa-empire:before { + content: "\f1d1"; } + +.fa-envelope:before { + content: "\f0e0"; } + +.fa-envelope-open:before { + content: "\f2b6"; } + +.fa-envelope-square:before { + content: "\f199"; } + +.fa-envira:before { + content: "\f299"; } + +.fa-equals:before { + content: "\f52c"; } + +.fa-eraser:before { + content: "\f12d"; } + +.fa-erlang:before { + content: "\f39d"; } + +.fa-ethereum:before { + content: "\f42e"; } + +.fa-etsy:before { + content: "\f2d7"; } + +.fa-euro-sign:before { + content: "\f153"; } + +.fa-exchange-alt:before { + content: "\f362"; } + +.fa-exclamation:before { + content: "\f12a"; } + +.fa-exclamation-circle:before { + content: "\f06a"; } + +.fa-exclamation-triangle:before { + content: "\f071"; } + +.fa-expand:before { + content: "\f065"; } + +.fa-expand-arrows-alt:before { + content: "\f31e"; } + +.fa-expeditedssl:before { + content: "\f23e"; } + +.fa-external-link-alt:before { + content: "\f35d"; } + +.fa-external-link-square-alt:before { + content: "\f360"; } + +.fa-eye:before { + content: "\f06e"; } + +.fa-eye-dropper:before { + content: "\f1fb"; } + +.fa-eye-slash:before { + content: "\f070"; } + +.fa-facebook:before { + content: "\f09a"; } + +.fa-facebook-f:before { + content: "\f39e"; } + +.fa-facebook-messenger:before { + content: "\f39f"; } + +.fa-facebook-square:before { + content: "\f082"; } + +.fa-fast-backward:before { + content: "\f049"; } + +.fa-fast-forward:before { + content: "\f050"; } + +.fa-fax:before { + content: "\f1ac"; } + +.fa-feather:before { + content: "\f52d"; } + +.fa-feather-alt:before { + content: "\f56b"; } + +.fa-female:before { + content: "\f182"; } + +.fa-fighter-jet:before { + content: "\f0fb"; } + +.fa-file:before { + content: "\f15b"; } + +.fa-file-alt:before { + content: "\f15c"; } + +.fa-file-archive:before { + content: "\f1c6"; } + +.fa-file-audio:before { + content: "\f1c7"; } + +.fa-file-code:before { + content: "\f1c9"; } + +.fa-file-contract:before { + content: "\f56c"; } + +.fa-file-download:before { + content: "\f56d"; } + +.fa-file-excel:before { + content: "\f1c3"; } + +.fa-file-export:before { + content: "\f56e"; } + +.fa-file-image:before { + content: "\f1c5"; } + +.fa-file-import:before { + content: "\f56f"; } + +.fa-file-invoice:before { + content: "\f570"; } + +.fa-file-invoice-dollar:before { + content: "\f571"; } + +.fa-file-medical:before { + content: "\f477"; } + +.fa-file-medical-alt:before { + content: "\f478"; } + +.fa-file-pdf:before { + content: "\f1c1"; } + +.fa-file-powerpoint:before { + content: "\f1c4"; } + +.fa-file-prescription:before { + content: "\f572"; } + +.fa-file-signature:before { + content: "\f573"; } + +.fa-file-upload:before { + content: "\f574"; } + +.fa-file-video:before { + content: "\f1c8"; } + +.fa-file-word:before { + content: "\f1c2"; } + +.fa-fill:before { + content: "\f575"; } + +.fa-fill-drip:before { + content: "\f576"; } + +.fa-film:before { + content: "\f008"; } + +.fa-filter:before { + content: "\f0b0"; } + +.fa-fingerprint:before { + content: "\f577"; } + +.fa-fire:before { + content: "\f06d"; } + +.fa-fire-extinguisher:before { + content: "\f134"; } + +.fa-firefox:before { + content: "\f269"; } + +.fa-first-aid:before { + content: "\f479"; } + +.fa-first-order:before { + content: "\f2b0"; } + +.fa-first-order-alt:before { + content: "\f50a"; } + +.fa-firstdraft:before { + content: "\f3a1"; } + +.fa-fish:before { + content: "\f578"; } + +.fa-flag:before { + content: "\f024"; } + +.fa-flag-checkered:before { + content: "\f11e"; } + +.fa-flask:before { + content: "\f0c3"; } + +.fa-flickr:before { + content: "\f16e"; } + +.fa-flipboard:before { + content: "\f44d"; } + +.fa-flushed:before { + content: "\f579"; } + +.fa-fly:before { + content: "\f417"; } + +.fa-folder:before { + content: "\f07b"; } + +.fa-folder-open:before { + content: "\f07c"; } + +.fa-font:before { + content: "\f031"; } + +.fa-font-awesome:before { + content: "\f2b4"; } + +.fa-font-awesome-alt:before { + content: "\f35c"; } + +.fa-font-awesome-flag:before { + content: "\f425"; } + +.fa-font-awesome-logo-full:before { + content: "\f4e6"; } + +.fa-fonticons:before { + content: "\f280"; } + +.fa-fonticons-fi:before { + content: "\f3a2"; } + +.fa-football-ball:before { + content: "\f44e"; } + +.fa-fort-awesome:before { + content: "\f286"; } + +.fa-fort-awesome-alt:before { + content: "\f3a3"; } + +.fa-forumbee:before { + content: "\f211"; } + +.fa-forward:before { + content: "\f04e"; } + +.fa-foursquare:before { + content: "\f180"; } + +.fa-free-code-camp:before { + content: "\f2c5"; } + +.fa-freebsd:before { + content: "\f3a4"; } + +.fa-frog:before { + content: "\f52e"; } + +.fa-frown:before { + content: "\f119"; } + +.fa-frown-open:before { + content: "\f57a"; } + +.fa-fulcrum:before { + content: "\f50b"; } + +.fa-futbol:before { + content: "\f1e3"; } + +.fa-galactic-republic:before { + content: "\f50c"; } + +.fa-galactic-senate:before { + content: "\f50d"; } + +.fa-gamepad:before { + content: "\f11b"; } + +.fa-gas-pump:before { + content: "\f52f"; } + +.fa-gavel:before { + content: "\f0e3"; } + +.fa-gem:before { + content: "\f3a5"; } + +.fa-genderless:before { + content: "\f22d"; } + +.fa-get-pocket:before { + content: "\f265"; } + +.fa-gg:before { + content: "\f260"; } + +.fa-gg-circle:before { + content: "\f261"; } + +.fa-gift:before { + content: "\f06b"; } + +.fa-git:before { + content: "\f1d3"; } + +.fa-git-square:before { + content: "\f1d2"; } + +.fa-github:before { + content: "\f09b"; } + +.fa-github-alt:before { + content: "\f113"; } + +.fa-github-square:before { + content: "\f092"; } + +.fa-gitkraken:before { + content: "\f3a6"; } + +.fa-gitlab:before { + content: "\f296"; } + +.fa-gitter:before { + content: "\f426"; } + +.fa-glass-martini:before { + content: "\f000"; } + +.fa-glass-martini-alt:before { + content: "\f57b"; } + +.fa-glasses:before { + content: "\f530"; } + +.fa-glide:before { + content: "\f2a5"; } + +.fa-glide-g:before { + content: "\f2a6"; } + +.fa-globe:before { + content: "\f0ac"; } + +.fa-globe-africa:before { + content: "\f57c"; } + +.fa-globe-americas:before { + content: "\f57d"; } + +.fa-globe-asia:before { + content: "\f57e"; } + +.fa-gofore:before { + content: "\f3a7"; } + +.fa-golf-ball:before { + content: "\f450"; } + +.fa-goodreads:before { + content: "\f3a8"; } + +.fa-goodreads-g:before { + content: "\f3a9"; } + +.fa-google:before { + content: "\f1a0"; } + +.fa-google-drive:before { + content: "\f3aa"; } + +.fa-google-play:before { + content: "\f3ab"; } + +.fa-google-plus:before { + content: "\f2b3"; } + +.fa-google-plus-g:before { + content: "\f0d5"; } + +.fa-google-plus-square:before { + content: "\f0d4"; } + +.fa-google-wallet:before { + content: "\f1ee"; } + +.fa-graduation-cap:before { + content: "\f19d"; } + +.fa-gratipay:before { + content: "\f184"; } + +.fa-grav:before { + content: "\f2d6"; } + +.fa-greater-than:before { + content: "\f531"; } + +.fa-greater-than-equal:before { + content: "\f532"; } + +.fa-grimace:before { + content: "\f57f"; } + +.fa-grin:before { + content: "\f580"; } + +.fa-grin-alt:before { + content: "\f581"; } + +.fa-grin-beam:before { + content: "\f582"; } + +.fa-grin-beam-sweat:before { + content: "\f583"; } + +.fa-grin-hearts:before { + content: "\f584"; } + +.fa-grin-squint:before { + content: "\f585"; } + +.fa-grin-squint-tears:before { + content: "\f586"; } + +.fa-grin-stars:before { + content: "\f587"; } + +.fa-grin-tears:before { + content: "\f588"; } + +.fa-grin-tongue:before { + content: "\f589"; } + +.fa-grin-tongue-squint:before { + content: "\f58a"; } + +.fa-grin-tongue-wink:before { + content: "\f58b"; } + +.fa-grin-wink:before { + content: "\f58c"; } + +.fa-grip-horizontal:before { + content: "\f58d"; } + +.fa-grip-vertical:before { + content: "\f58e"; } + +.fa-gripfire:before { + content: "\f3ac"; } + +.fa-grunt:before { + content: "\f3ad"; } + +.fa-gulp:before { + content: "\f3ae"; } + +.fa-h-square:before { + content: "\f0fd"; } + +.fa-hacker-news:before { + content: "\f1d4"; } + +.fa-hacker-news-square:before { + content: "\f3af"; } + +.fa-hand-holding:before { + content: "\f4bd"; } + +.fa-hand-holding-heart:before { + content: "\f4be"; } + +.fa-hand-holding-usd:before { + content: "\f4c0"; } + +.fa-hand-lizard:before { + content: "\f258"; } + +.fa-hand-paper:before { + content: "\f256"; } + +.fa-hand-peace:before { + content: "\f25b"; } + +.fa-hand-point-down:before { + content: "\f0a7"; } + +.fa-hand-point-left:before { + content: "\f0a5"; } + +.fa-hand-point-right:before { + content: "\f0a4"; } + +.fa-hand-point-up:before { + content: "\f0a6"; } + +.fa-hand-pointer:before { + content: "\f25a"; } + +.fa-hand-rock:before { + content: "\f255"; } + +.fa-hand-scissors:before { + content: "\f257"; } + +.fa-hand-spock:before { + content: "\f259"; } + +.fa-hands:before { + content: "\f4c2"; } + +.fa-hands-helping:before { + content: "\f4c4"; } + +.fa-handshake:before { + content: "\f2b5"; } + +.fa-hashtag:before { + content: "\f292"; } + +.fa-hdd:before { + content: "\f0a0"; } + +.fa-heading:before { + content: "\f1dc"; } + +.fa-headphones:before { + content: "\f025"; } + +.fa-headphones-alt:before { + content: "\f58f"; } + +.fa-headset:before { + content: "\f590"; } + +.fa-heart:before { + content: "\f004"; } + +.fa-heartbeat:before { + content: "\f21e"; } + +.fa-helicopter:before { + content: "\f533"; } + +.fa-highlighter:before { + content: "\f591"; } + +.fa-hips:before { + content: "\f452"; } + +.fa-hire-a-helper:before { + content: "\f3b0"; } + +.fa-history:before { + content: "\f1da"; } + +.fa-hockey-puck:before { + content: "\f453"; } + +.fa-home:before { + content: "\f015"; } + +.fa-hooli:before { + content: "\f427"; } + +.fa-hornbill:before { + content: "\f592"; } + +.fa-hospital:before { + content: "\f0f8"; } + +.fa-hospital-alt:before { + content: "\f47d"; } + +.fa-hospital-symbol:before { + content: "\f47e"; } + +.fa-hot-tub:before { + content: "\f593"; } + +.fa-hotel:before { + content: "\f594"; } + +.fa-hotjar:before { + content: "\f3b1"; } + +.fa-hourglass:before { + content: "\f254"; } + +.fa-hourglass-end:before { + content: "\f253"; } + +.fa-hourglass-half:before { + content: "\f252"; } + +.fa-hourglass-start:before { + content: "\f251"; } + +.fa-houzz:before { + content: "\f27c"; } + +.fa-html5:before { + content: "\f13b"; } + +.fa-hubspot:before { + content: "\f3b2"; } + +.fa-i-cursor:before { + content: "\f246"; } + +.fa-id-badge:before { + content: "\f2c1"; } + +.fa-id-card:before { + content: "\f2c2"; } + +.fa-id-card-alt:before { + content: "\f47f"; } + +.fa-image:before { + content: "\f03e"; } + +.fa-images:before { + content: "\f302"; } + +.fa-imdb:before { + content: "\f2d8"; } + +.fa-inbox:before { + content: "\f01c"; } + +.fa-indent:before { + content: "\f03c"; } + +.fa-industry:before { + content: "\f275"; } + +.fa-infinity:before { + content: "\f534"; } + +.fa-info:before { + content: "\f129"; } + +.fa-info-circle:before { + content: "\f05a"; } + +.fa-instagram:before { + content: "\f16d"; } + +.fa-internet-explorer:before { + content: "\f26b"; } + +.fa-ioxhost:before { + content: "\f208"; } + +.fa-italic:before { + content: "\f033"; } + +.fa-itunes:before { + content: "\f3b4"; } + +.fa-itunes-note:before { + content: "\f3b5"; } + +.fa-java:before { + content: "\f4e4"; } + +.fa-jedi-order:before { + content: "\f50e"; } + +.fa-jenkins:before { + content: "\f3b6"; } + +.fa-joget:before { + content: "\f3b7"; } + +.fa-joint:before { + content: "\f595"; } + +.fa-joomla:before { + content: "\f1aa"; } + +.fa-js:before { + content: "\f3b8"; } + +.fa-js-square:before { + content: "\f3b9"; } + +.fa-jsfiddle:before { + content: "\f1cc"; } + +.fa-key:before { + content: "\f084"; } + +.fa-keybase:before { + content: "\f4f5"; } + +.fa-keyboard:before { + content: "\f11c"; } + +.fa-keycdn:before { + content: "\f3ba"; } + +.fa-kickstarter:before { + content: "\f3bb"; } + +.fa-kickstarter-k:before { + content: "\f3bc"; } + +.fa-kiss:before { + content: "\f596"; } + +.fa-kiss-beam:before { + content: "\f597"; } + +.fa-kiss-wink-heart:before { + content: "\f598"; } + +.fa-kiwi-bird:before { + content: "\f535"; } + +.fa-korvue:before { + content: "\f42f"; } + +.fa-language:before { + content: "\f1ab"; } + +.fa-laptop:before { + content: "\f109"; } + +.fa-laravel:before { + content: "\f3bd"; } + +.fa-lastfm:before { + content: "\f202"; } + +.fa-lastfm-square:before { + content: "\f203"; } + +.fa-laugh:before { + content: "\f599"; } + +.fa-laugh-beam:before { + content: "\f59a"; } + +.fa-laugh-squint:before { + content: "\f59b"; } + +.fa-laugh-wink:before { + content: "\f59c"; } + +.fa-leaf:before { + content: "\f06c"; } + +.fa-leanpub:before { + content: "\f212"; } + +.fa-lemon:before { + content: "\f094"; } + +.fa-less:before { + content: "\f41d"; } + +.fa-less-than:before { + content: "\f536"; } + +.fa-less-than-equal:before { + content: "\f537"; } + +.fa-level-down-alt:before { + content: "\f3be"; } + +.fa-level-up-alt:before { + content: "\f3bf"; } + +.fa-life-ring:before { + content: "\f1cd"; } + +.fa-lightbulb:before { + content: "\f0eb"; } + +.fa-line:before { + content: "\f3c0"; } + +.fa-link:before { + content: "\f0c1"; } + +.fa-linkedin:before { + content: "\f08c"; } + +.fa-linkedin-in:before { + content: "\f0e1"; } + +.fa-linode:before { + content: "\f2b8"; } + +.fa-linux:before { + content: "\f17c"; } + +.fa-lira-sign:before { + content: "\f195"; } + +.fa-list:before { + content: "\f03a"; } + +.fa-list-alt:before { + content: "\f022"; } + +.fa-list-ol:before { + content: "\f0cb"; } + +.fa-list-ul:before { + content: "\f0ca"; } + +.fa-location-arrow:before { + content: "\f124"; } + +.fa-lock:before { + content: "\f023"; } + +.fa-lock-open:before { + content: "\f3c1"; } + +.fa-long-arrow-alt-down:before { + content: "\f309"; } + +.fa-long-arrow-alt-left:before { + content: "\f30a"; } + +.fa-long-arrow-alt-right:before { + content: "\f30b"; } + +.fa-long-arrow-alt-up:before { + content: "\f30c"; } + +.fa-low-vision:before { + content: "\f2a8"; } + +.fa-luggage-cart:before { + content: "\f59d"; } + +.fa-lyft:before { + content: "\f3c3"; } + +.fa-magento:before { + content: "\f3c4"; } + +.fa-magic:before { + content: "\f0d0"; } + +.fa-magnet:before { + content: "\f076"; } + +.fa-mailchimp:before { + content: "\f59e"; } + +.fa-male:before { + content: "\f183"; } + +.fa-mandalorian:before { + content: "\f50f"; } + +.fa-map:before { + content: "\f279"; } + +.fa-map-marked:before { + content: "\f59f"; } + +.fa-map-marked-alt:before { + content: "\f5a0"; } + +.fa-map-marker:before { + content: "\f041"; } + +.fa-map-marker-alt:before { + content: "\f3c5"; } + +.fa-map-pin:before { + content: "\f276"; } + +.fa-map-signs:before { + content: "\f277"; } + +.fa-marker:before { + content: "\f5a1"; } + +.fa-mars:before { + content: "\f222"; } + +.fa-mars-double:before { + content: "\f227"; } + +.fa-mars-stroke:before { + content: "\f229"; } + +.fa-mars-stroke-h:before { + content: "\f22b"; } + +.fa-mars-stroke-v:before { + content: "\f22a"; } + +.fa-mastodon:before { + content: "\f4f6"; } + +.fa-maxcdn:before { + content: "\f136"; } + +.fa-medal:before { + content: "\f5a2"; } + +.fa-medapps:before { + content: "\f3c6"; } + +.fa-medium:before { + content: "\f23a"; } + +.fa-medium-m:before { + content: "\f3c7"; } + +.fa-medkit:before { + content: "\f0fa"; } + +.fa-medrt:before { + content: "\f3c8"; } + +.fa-meetup:before { + content: "\f2e0"; } + +.fa-megaport:before { + content: "\f5a3"; } + +.fa-meh:before { + content: "\f11a"; } + +.fa-meh-blank:before { + content: "\f5a4"; } + +.fa-meh-rolling-eyes:before { + content: "\f5a5"; } + +.fa-memory:before { + content: "\f538"; } + +.fa-mercury:before { + content: "\f223"; } + +.fa-microchip:before { + content: "\f2db"; } + +.fa-microphone:before { + content: "\f130"; } + +.fa-microphone-alt:before { + content: "\f3c9"; } + +.fa-microphone-alt-slash:before { + content: "\f539"; } + +.fa-microphone-slash:before { + content: "\f131"; } + +.fa-microsoft:before { + content: "\f3ca"; } + +.fa-minus:before { + content: "\f068"; } + +.fa-minus-circle:before { + content: "\f056"; } + +.fa-minus-square:before { + content: "\f146"; } + +.fa-mix:before { + content: "\f3cb"; } + +.fa-mixcloud:before { + content: "\f289"; } + +.fa-mizuni:before { + content: "\f3cc"; } + +.fa-mobile:before { + content: "\f10b"; } + +.fa-mobile-alt:before { + content: "\f3cd"; } + +.fa-modx:before { + content: "\f285"; } + +.fa-monero:before { + content: "\f3d0"; } + +.fa-money-bill:before { + content: "\f0d6"; } + +.fa-money-bill-alt:before { + content: "\f3d1"; } + +.fa-money-bill-wave:before { + content: "\f53a"; } + +.fa-money-bill-wave-alt:before { + content: "\f53b"; } + +.fa-money-check:before { + content: "\f53c"; } + +.fa-money-check-alt:before { + content: "\f53d"; } + +.fa-monument:before { + content: "\f5a6"; } + +.fa-moon:before { + content: "\f186"; } + +.fa-mortar-pestle:before { + content: "\f5a7"; } + +.fa-motorcycle:before { + content: "\f21c"; } + +.fa-mouse-pointer:before { + content: "\f245"; } + +.fa-music:before { + content: "\f001"; } + +.fa-napster:before { + content: "\f3d2"; } + +.fa-neuter:before { + content: "\f22c"; } + +.fa-newspaper:before { + content: "\f1ea"; } + +.fa-nimblr:before { + content: "\f5a8"; } + +.fa-nintendo-switch:before { + content: "\f418"; } + +.fa-node:before { + content: "\f419"; } + +.fa-node-js:before { + content: "\f3d3"; } + +.fa-not-equal:before { + content: "\f53e"; } + +.fa-notes-medical:before { + content: "\f481"; } + +.fa-npm:before { + content: "\f3d4"; } + +.fa-ns8:before { + content: "\f3d5"; } + +.fa-nutritionix:before { + content: "\f3d6"; } + +.fa-object-group:before { + content: "\f247"; } + +.fa-object-ungroup:before { + content: "\f248"; } + +.fa-odnoklassniki:before { + content: "\f263"; } + +.fa-odnoklassniki-square:before { + content: "\f264"; } + +.fa-old-republic:before { + content: "\f510"; } + +.fa-opencart:before { + content: "\f23d"; } + +.fa-openid:before { + content: "\f19b"; } + +.fa-opera:before { + content: "\f26a"; } + +.fa-optin-monster:before { + content: "\f23c"; } + +.fa-osi:before { + content: "\f41a"; } + +.fa-outdent:before { + content: "\f03b"; } + +.fa-page4:before { + content: "\f3d7"; } + +.fa-pagelines:before { + content: "\f18c"; } + +.fa-paint-brush:before { + content: "\f1fc"; } + +.fa-paint-roller:before { + content: "\f5aa"; } + +.fa-palette:before { + content: "\f53f"; } + +.fa-palfed:before { + content: "\f3d8"; } + +.fa-pallet:before { + content: "\f482"; } + +.fa-paper-plane:before { + content: "\f1d8"; } + +.fa-paperclip:before { + content: "\f0c6"; } + +.fa-parachute-box:before { + content: "\f4cd"; } + +.fa-paragraph:before { + content: "\f1dd"; } + +.fa-parking:before { + content: "\f540"; } + +.fa-passport:before { + content: "\f5ab"; } + +.fa-paste:before { + content: "\f0ea"; } + +.fa-patreon:before { + content: "\f3d9"; } + +.fa-pause:before { + content: "\f04c"; } + +.fa-pause-circle:before { + content: "\f28b"; } + +.fa-paw:before { + content: "\f1b0"; } + +.fa-paypal:before { + content: "\f1ed"; } + +.fa-pen:before { + content: "\f304"; } + +.fa-pen-alt:before { + content: "\f305"; } + +.fa-pen-fancy:before { + content: "\f5ac"; } + +.fa-pen-nib:before { + content: "\f5ad"; } + +.fa-pen-square:before { + content: "\f14b"; } + +.fa-pencil-alt:before { + content: "\f303"; } + +.fa-pencil-ruler:before { + content: "\f5ae"; } + +.fa-people-carry:before { + content: "\f4ce"; } + +.fa-percent:before { + content: "\f295"; } + +.fa-percentage:before { + content: "\f541"; } + +.fa-periscope:before { + content: "\f3da"; } + +.fa-phabricator:before { + content: "\f3db"; } + +.fa-phoenix-framework:before { + content: "\f3dc"; } + +.fa-phoenix-squadron:before { + content: "\f511"; } + +.fa-phone:before { + content: "\f095"; } + +.fa-phone-slash:before { + content: "\f3dd"; } + +.fa-phone-square:before { + content: "\f098"; } + +.fa-phone-volume:before { + content: "\f2a0"; } + +.fa-php:before { + content: "\f457"; } + +.fa-pied-piper:before { + content: "\f2ae"; } + +.fa-pied-piper-alt:before { + content: "\f1a8"; } + +.fa-pied-piper-hat:before { + content: "\f4e5"; } + +.fa-pied-piper-pp:before { + content: "\f1a7"; } + +.fa-piggy-bank:before { + content: "\f4d3"; } + +.fa-pills:before { + content: "\f484"; } + +.fa-pinterest:before { + content: "\f0d2"; } + +.fa-pinterest-p:before { + content: "\f231"; } + +.fa-pinterest-square:before { + content: "\f0d3"; } + +.fa-plane:before { + content: "\f072"; } + +.fa-plane-arrival:before { + content: "\f5af"; } + +.fa-plane-departure:before { + content: "\f5b0"; } + +.fa-play:before { + content: "\f04b"; } + +.fa-play-circle:before { + content: "\f144"; } + +.fa-playstation:before { + content: "\f3df"; } + +.fa-plug:before { + content: "\f1e6"; } + +.fa-plus:before { + content: "\f067"; } + +.fa-plus-circle:before { + content: "\f055"; } + +.fa-plus-square:before { + content: "\f0fe"; } + +.fa-podcast:before { + content: "\f2ce"; } + +.fa-poo:before { + content: "\f2fe"; } + +.fa-portrait:before { + content: "\f3e0"; } + +.fa-pound-sign:before { + content: "\f154"; } + +.fa-power-off:before { + content: "\f011"; } + +.fa-prescription:before { + content: "\f5b1"; } + +.fa-prescription-bottle:before { + content: "\f485"; } + +.fa-prescription-bottle-alt:before { + content: "\f486"; } + +.fa-print:before { + content: "\f02f"; } + +.fa-procedures:before { + content: "\f487"; } + +.fa-product-hunt:before { + content: "\f288"; } + +.fa-project-diagram:before { + content: "\f542"; } + +.fa-pushed:before { + content: "\f3e1"; } + +.fa-puzzle-piece:before { + content: "\f12e"; } + +.fa-python:before { + content: "\f3e2"; } + +.fa-qq:before { + content: "\f1d6"; } + +.fa-qrcode:before { + content: "\f029"; } + +.fa-question:before { + content: "\f128"; } + +.fa-question-circle:before { + content: "\f059"; } + +.fa-quidditch:before { + content: "\f458"; } + +.fa-quinscape:before { + content: "\f459"; } + +.fa-quora:before { + content: "\f2c4"; } + +.fa-quote-left:before { + content: "\f10d"; } + +.fa-quote-right:before { + content: "\f10e"; } + +.fa-r-project:before { + content: "\f4f7"; } + +.fa-random:before { + content: "\f074"; } + +.fa-ravelry:before { + content: "\f2d9"; } + +.fa-react:before { + content: "\f41b"; } + +.fa-readme:before { + content: "\f4d5"; } + +.fa-rebel:before { + content: "\f1d0"; } + +.fa-receipt:before { + content: "\f543"; } + +.fa-recycle:before { + content: "\f1b8"; } + +.fa-red-river:before { + content: "\f3e3"; } + +.fa-reddit:before { + content: "\f1a1"; } + +.fa-reddit-alien:before { + content: "\f281"; } + +.fa-reddit-square:before { + content: "\f1a2"; } + +.fa-redo:before { + content: "\f01e"; } + +.fa-redo-alt:before { + content: "\f2f9"; } + +.fa-registered:before { + content: "\f25d"; } + +.fa-rendact:before { + content: "\f3e4"; } + +.fa-renren:before { + content: "\f18b"; } + +.fa-reply:before { + content: "\f3e5"; } + +.fa-reply-all:before { + content: "\f122"; } + +.fa-replyd:before { + content: "\f3e6"; } + +.fa-researchgate:before { + content: "\f4f8"; } + +.fa-resolving:before { + content: "\f3e7"; } + +.fa-retweet:before { + content: "\f079"; } + +.fa-rev:before { + content: "\f5b2"; } + +.fa-ribbon:before { + content: "\f4d6"; } + +.fa-road:before { + content: "\f018"; } + +.fa-robot:before { + content: "\f544"; } + +.fa-rocket:before { + content: "\f135"; } + +.fa-rocketchat:before { + content: "\f3e8"; } + +.fa-rockrms:before { + content: "\f3e9"; } + +.fa-rss:before { + content: "\f09e"; } + +.fa-rss-square:before { + content: "\f143"; } + +.fa-ruble-sign:before { + content: "\f158"; } + +.fa-ruler:before { + content: "\f545"; } + +.fa-ruler-combined:before { + content: "\f546"; } + +.fa-ruler-horizontal:before { + content: "\f547"; } + +.fa-ruler-vertical:before { + content: "\f548"; } + +.fa-rupee-sign:before { + content: "\f156"; } + +.fa-sad-cry:before { + content: "\f5b3"; } + +.fa-sad-tear:before { + content: "\f5b4"; } + +.fa-safari:before { + content: "\f267"; } + +.fa-sass:before { + content: "\f41e"; } + +.fa-save:before { + content: "\f0c7"; } + +.fa-schlix:before { + content: "\f3ea"; } + +.fa-school:before { + content: "\f549"; } + +.fa-screwdriver:before { + content: "\f54a"; } + +.fa-scribd:before { + content: "\f28a"; } + +.fa-search:before { + content: "\f002"; } + +.fa-search-minus:before { + content: "\f010"; } + +.fa-search-plus:before { + content: "\f00e"; } + +.fa-searchengin:before { + content: "\f3eb"; } + +.fa-seedling:before { + content: "\f4d8"; } + +.fa-sellcast:before { + content: "\f2da"; } + +.fa-sellsy:before { + content: "\f213"; } + +.fa-server:before { + content: "\f233"; } + +.fa-servicestack:before { + content: "\f3ec"; } + +.fa-share:before { + content: "\f064"; } + +.fa-share-alt:before { + content: "\f1e0"; } + +.fa-share-alt-square:before { + content: "\f1e1"; } + +.fa-share-square:before { + content: "\f14d"; } + +.fa-shekel-sign:before { + content: "\f20b"; } + +.fa-shield-alt:before { + content: "\f3ed"; } + +.fa-ship:before { + content: "\f21a"; } + +.fa-shipping-fast:before { + content: "\f48b"; } + +.fa-shirtsinbulk:before { + content: "\f214"; } + +.fa-shoe-prints:before { + content: "\f54b"; } + +.fa-shopping-bag:before { + content: "\f290"; } + +.fa-shopping-basket:before { + content: "\f291"; } + +.fa-shopping-cart:before { + content: "\f07a"; } + +.fa-shopware:before { + content: "\f5b5"; } + +.fa-shower:before { + content: "\f2cc"; } + +.fa-shuttle-van:before { + content: "\f5b6"; } + +.fa-sign:before { + content: "\f4d9"; } + +.fa-sign-in-alt:before { + content: "\f2f6"; } + +.fa-sign-language:before { + content: "\f2a7"; } + +.fa-sign-out-alt:before { + content: "\f2f5"; } + +.fa-signal:before { + content: "\f012"; } + +.fa-signature:before { + content: "\f5b7"; } + +.fa-simplybuilt:before { + content: "\f215"; } + +.fa-sistrix:before { + content: "\f3ee"; } + +.fa-sitemap:before { + content: "\f0e8"; } + +.fa-sith:before { + content: "\f512"; } + +.fa-skull:before { + content: "\f54c"; } + +.fa-skyatlas:before { + content: "\f216"; } + +.fa-skype:before { + content: "\f17e"; } + +.fa-slack:before { + content: "\f198"; } + +.fa-slack-hash:before { + content: "\f3ef"; } + +.fa-sliders-h:before { + content: "\f1de"; } + +.fa-slideshare:before { + content: "\f1e7"; } + +.fa-smile:before { + content: "\f118"; } + +.fa-smile-beam:before { + content: "\f5b8"; } + +.fa-smile-wink:before { + content: "\f4da"; } + +.fa-smoking:before { + content: "\f48d"; } + +.fa-smoking-ban:before { + content: "\f54d"; } + +.fa-snapchat:before { + content: "\f2ab"; } + +.fa-snapchat-ghost:before { + content: "\f2ac"; } + +.fa-snapchat-square:before { + content: "\f2ad"; } + +.fa-snowflake:before { + content: "\f2dc"; } + +.fa-solar-panel:before { + content: "\f5ba"; } + +.fa-sort:before { + content: "\f0dc"; } + +.fa-sort-alpha-down:before { + content: "\f15d"; } + +.fa-sort-alpha-up:before { + content: "\f15e"; } + +.fa-sort-amount-down:before { + content: "\f160"; } + +.fa-sort-amount-up:before { + content: "\f161"; } + +.fa-sort-down:before { + content: "\f0dd"; } + +.fa-sort-numeric-down:before { + content: "\f162"; } + +.fa-sort-numeric-up:before { + content: "\f163"; } + +.fa-sort-up:before { + content: "\f0de"; } + +.fa-soundcloud:before { + content: "\f1be"; } + +.fa-spa:before { + content: "\f5bb"; } + +.fa-space-shuttle:before { + content: "\f197"; } + +.fa-speakap:before { + content: "\f3f3"; } + +.fa-spinner:before { + content: "\f110"; } + +.fa-splotch:before { + content: "\f5bc"; } + +.fa-spotify:before { + content: "\f1bc"; } + +.fa-spray-can:before { + content: "\f5bd"; } + +.fa-square:before { + content: "\f0c8"; } + +.fa-square-full:before { + content: "\f45c"; } + +.fa-squarespace:before { + content: "\f5be"; } + +.fa-stack-exchange:before { + content: "\f18d"; } + +.fa-stack-overflow:before { + content: "\f16c"; } + +.fa-stamp:before { + content: "\f5bf"; } + +.fa-star:before { + content: "\f005"; } + +.fa-star-half:before { + content: "\f089"; } + +.fa-star-half-alt:before { + content: "\f5c0"; } + +.fa-staylinked:before { + content: "\f3f5"; } + +.fa-steam:before { + content: "\f1b6"; } + +.fa-steam-square:before { + content: "\f1b7"; } + +.fa-steam-symbol:before { + content: "\f3f6"; } + +.fa-step-backward:before { + content: "\f048"; } + +.fa-step-forward:before { + content: "\f051"; } + +.fa-stethoscope:before { + content: "\f0f1"; } + +.fa-sticker-mule:before { + content: "\f3f7"; } + +.fa-sticky-note:before { + content: "\f249"; } + +.fa-stop:before { + content: "\f04d"; } + +.fa-stop-circle:before { + content: "\f28d"; } + +.fa-stopwatch:before { + content: "\f2f2"; } + +.fa-store:before { + content: "\f54e"; } + +.fa-store-alt:before { + content: "\f54f"; } + +.fa-strava:before { + content: "\f428"; } + +.fa-stream:before { + content: "\f550"; } + +.fa-street-view:before { + content: "\f21d"; } + +.fa-strikethrough:before { + content: "\f0cc"; } + +.fa-stripe:before { + content: "\f429"; } + +.fa-stripe-s:before { + content: "\f42a"; } + +.fa-stroopwafel:before { + content: "\f551"; } + +.fa-studiovinari:before { + content: "\f3f8"; } + +.fa-stumbleupon:before { + content: "\f1a4"; } + +.fa-stumbleupon-circle:before { + content: "\f1a3"; } + +.fa-subscript:before { + content: "\f12c"; } + +.fa-subway:before { + content: "\f239"; } + +.fa-suitcase:before { + content: "\f0f2"; } + +.fa-suitcase-rolling:before { + content: "\f5c1"; } + +.fa-sun:before { + content: "\f185"; } + +.fa-superpowers:before { + content: "\f2dd"; } + +.fa-superscript:before { + content: "\f12b"; } + +.fa-supple:before { + content: "\f3f9"; } + +.fa-surprise:before { + content: "\f5c2"; } + +.fa-swatchbook:before { + content: "\f5c3"; } + +.fa-swimmer:before { + content: "\f5c4"; } + +.fa-swimming-pool:before { + content: "\f5c5"; } + +.fa-sync:before { + content: "\f021"; } + +.fa-sync-alt:before { + content: "\f2f1"; } + +.fa-syringe:before { + content: "\f48e"; } + +.fa-table:before { + content: "\f0ce"; } + +.fa-table-tennis:before { + content: "\f45d"; } + +.fa-tablet:before { + content: "\f10a"; } + +.fa-tablet-alt:before { + content: "\f3fa"; } + +.fa-tablets:before { + content: "\f490"; } + +.fa-tachometer-alt:before { + content: "\f3fd"; } + +.fa-tag:before { + content: "\f02b"; } + +.fa-tags:before { + content: "\f02c"; } + +.fa-tape:before { + content: "\f4db"; } + +.fa-tasks:before { + content: "\f0ae"; } + +.fa-taxi:before { + content: "\f1ba"; } + +.fa-teamspeak:before { + content: "\f4f9"; } + +.fa-telegram:before { + content: "\f2c6"; } + +.fa-telegram-plane:before { + content: "\f3fe"; } + +.fa-tencent-weibo:before { + content: "\f1d5"; } + +.fa-terminal:before { + content: "\f120"; } + +.fa-text-height:before { + content: "\f034"; } + +.fa-text-width:before { + content: "\f035"; } + +.fa-th:before { + content: "\f00a"; } + +.fa-th-large:before { + content: "\f009"; } + +.fa-th-list:before { + content: "\f00b"; } + +.fa-themeco:before { + content: "\f5c6"; } + +.fa-themeisle:before { + content: "\f2b2"; } + +.fa-thermometer:before { + content: "\f491"; } + +.fa-thermometer-empty:before { + content: "\f2cb"; } + +.fa-thermometer-full:before { + content: "\f2c7"; } + +.fa-thermometer-half:before { + content: "\f2c9"; } + +.fa-thermometer-quarter:before { + content: "\f2ca"; } + +.fa-thermometer-three-quarters:before { + content: "\f2c8"; } + +.fa-thumbs-down:before { + content: "\f165"; } + +.fa-thumbs-up:before { + content: "\f164"; } + +.fa-thumbtack:before { + content: "\f08d"; } + +.fa-ticket-alt:before { + content: "\f3ff"; } + +.fa-times:before { + content: "\f00d"; } + +.fa-times-circle:before { + content: "\f057"; } + +.fa-tint:before { + content: "\f043"; } + +.fa-tint-slash:before { + content: "\f5c7"; } + +.fa-tired:before { + content: "\f5c8"; } + +.fa-toggle-off:before { + content: "\f204"; } + +.fa-toggle-on:before { + content: "\f205"; } + +.fa-toolbox:before { + content: "\f552"; } + +.fa-tooth:before { + content: "\f5c9"; } + +.fa-trade-federation:before { + content: "\f513"; } + +.fa-trademark:before { + content: "\f25c"; } + +.fa-train:before { + content: "\f238"; } + +.fa-transgender:before { + content: "\f224"; } + +.fa-transgender-alt:before { + content: "\f225"; } + +.fa-trash:before { + content: "\f1f8"; } + +.fa-trash-alt:before { + content: "\f2ed"; } + +.fa-tree:before { + content: "\f1bb"; } + +.fa-trello:before { + content: "\f181"; } + +.fa-tripadvisor:before { + content: "\f262"; } + +.fa-trophy:before { + content: "\f091"; } + +.fa-truck:before { + content: "\f0d1"; } + +.fa-truck-loading:before { + content: "\f4de"; } + +.fa-truck-moving:before { + content: "\f4df"; } + +.fa-tshirt:before { + content: "\f553"; } + +.fa-tty:before { + content: "\f1e4"; } + +.fa-tumblr:before { + content: "\f173"; } + +.fa-tumblr-square:before { + content: "\f174"; } + +.fa-tv:before { + content: "\f26c"; } + +.fa-twitch:before { + content: "\f1e8"; } + +.fa-twitter:before { + content: "\f099"; } + +.fa-twitter-square:before { + content: "\f081"; } + +.fa-typo3:before { + content: "\f42b"; } + +.fa-uber:before { + content: "\f402"; } + +.fa-uikit:before { + content: "\f403"; } + +.fa-umbrella:before { + content: "\f0e9"; } + +.fa-umbrella-beach:before { + content: "\f5ca"; } + +.fa-underline:before { + content: "\f0cd"; } + +.fa-undo:before { + content: "\f0e2"; } + +.fa-undo-alt:before { + content: "\f2ea"; } + +.fa-uniregistry:before { + content: "\f404"; } + +.fa-universal-access:before { + content: "\f29a"; } + +.fa-university:before { + content: "\f19c"; } + +.fa-unlink:before { + content: "\f127"; } + +.fa-unlock:before { + content: "\f09c"; } + +.fa-unlock-alt:before { + content: "\f13e"; } + +.fa-untappd:before { + content: "\f405"; } + +.fa-upload:before { + content: "\f093"; } + +.fa-usb:before { + content: "\f287"; } + +.fa-user:before { + content: "\f007"; } + +.fa-user-alt:before { + content: "\f406"; } + +.fa-user-alt-slash:before { + content: "\f4fa"; } + +.fa-user-astronaut:before { + content: "\f4fb"; } + +.fa-user-check:before { + content: "\f4fc"; } + +.fa-user-circle:before { + content: "\f2bd"; } + +.fa-user-clock:before { + content: "\f4fd"; } + +.fa-user-cog:before { + content: "\f4fe"; } + +.fa-user-edit:before { + content: "\f4ff"; } + +.fa-user-friends:before { + content: "\f500"; } + +.fa-user-graduate:before { + content: "\f501"; } + +.fa-user-lock:before { + content: "\f502"; } + +.fa-user-md:before { + content: "\f0f0"; } + +.fa-user-minus:before { + content: "\f503"; } + +.fa-user-ninja:before { + content: "\f504"; } + +.fa-user-plus:before { + content: "\f234"; } + +.fa-user-secret:before { + content: "\f21b"; } + +.fa-user-shield:before { + content: "\f505"; } + +.fa-user-slash:before { + content: "\f506"; } + +.fa-user-tag:before { + content: "\f507"; } + +.fa-user-tie:before { + content: "\f508"; } + +.fa-user-times:before { + content: "\f235"; } + +.fa-users:before { + content: "\f0c0"; } + +.fa-users-cog:before { + content: "\f509"; } + +.fa-ussunnah:before { + content: "\f407"; } + +.fa-utensil-spoon:before { + content: "\f2e5"; } + +.fa-utensils:before { + content: "\f2e7"; } + +.fa-vaadin:before { + content: "\f408"; } + +.fa-vector-square:before { + content: "\f5cb"; } + +.fa-venus:before { + content: "\f221"; } + +.fa-venus-double:before { + content: "\f226"; } + +.fa-venus-mars:before { + content: "\f228"; } + +.fa-viacoin:before { + content: "\f237"; } + +.fa-viadeo:before { + content: "\f2a9"; } + +.fa-viadeo-square:before { + content: "\f2aa"; } + +.fa-vial:before { + content: "\f492"; } + +.fa-vials:before { + content: "\f493"; } + +.fa-viber:before { + content: "\f409"; } + +.fa-video:before { + content: "\f03d"; } + +.fa-video-slash:before { + content: "\f4e2"; } + +.fa-vimeo:before { + content: "\f40a"; } + +.fa-vimeo-square:before { + content: "\f194"; } + +.fa-vimeo-v:before { + content: "\f27d"; } + +.fa-vine:before { + content: "\f1ca"; } + +.fa-vk:before { + content: "\f189"; } + +.fa-vnv:before { + content: "\f40b"; } + +.fa-volleyball-ball:before { + content: "\f45f"; } + +.fa-volume-down:before { + content: "\f027"; } + +.fa-volume-off:before { + content: "\f026"; } + +.fa-volume-up:before { + content: "\f028"; } + +.fa-vuejs:before { + content: "\f41f"; } + +.fa-walking:before { + content: "\f554"; } + +.fa-wallet:before { + content: "\f555"; } + +.fa-warehouse:before { + content: "\f494"; } + +.fa-weebly:before { + content: "\f5cc"; } + +.fa-weibo:before { + content: "\f18a"; } + +.fa-weight:before { + content: "\f496"; } + +.fa-weight-hanging:before { + content: "\f5cd"; } + +.fa-weixin:before { + content: "\f1d7"; } + +.fa-whatsapp:before { + content: "\f232"; } + +.fa-whatsapp-square:before { + content: "\f40c"; } + +.fa-wheelchair:before { + content: "\f193"; } + +.fa-whmcs:before { + content: "\f40d"; } + +.fa-wifi:before { + content: "\f1eb"; } + +.fa-wikipedia-w:before { + content: "\f266"; } + +.fa-window-close:before { + content: "\f410"; } + +.fa-window-maximize:before { + content: "\f2d0"; } + +.fa-window-minimize:before { + content: "\f2d1"; } + +.fa-window-restore:before { + content: "\f2d2"; } + +.fa-windows:before { + content: "\f17a"; } + +.fa-wine-glass:before { + content: "\f4e3"; } + +.fa-wine-glass-alt:before { + content: "\f5ce"; } + +.fa-wix:before { + content: "\f5cf"; } + +.fa-wolf-pack-battalion:before { + content: "\f514"; } + +.fa-won-sign:before { + content: "\f159"; } + +.fa-wordpress:before { + content: "\f19a"; } + +.fa-wordpress-simple:before { + content: "\f411"; } + +.fa-wpbeginner:before { + content: "\f297"; } + +.fa-wpexplorer:before { + content: "\f2de"; } + +.fa-wpforms:before { + content: "\f298"; } + +.fa-wrench:before { + content: "\f0ad"; } + +.fa-x-ray:before { + content: "\f497"; } + +.fa-xbox:before { + content: "\f412"; } + +.fa-xing:before { + content: "\f168"; } + +.fa-xing-square:before { + content: "\f169"; } + +.fa-y-combinator:before { + content: "\f23b"; } + +.fa-yahoo:before { + content: "\f19e"; } + +.fa-yandex:before { + content: "\f413"; } + +.fa-yandex-international:before { + content: "\f414"; } + +.fa-yelp:before { + content: "\f1e9"; } + +.fa-yen-sign:before { + content: "\f157"; } + +.fa-yoast:before { + content: "\f2b1"; } + +.fa-youtube:before { + content: "\f167"; } + +.fa-youtube-square:before { + content: "\f431"; } + +.sr-only { + border: 0; + clip: rect(0, 0, 0, 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; } + +.sr-only-focusable:active, .sr-only-focusable:focus { + clip: auto; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto; } +@font-face { + font-family: 'Font Awesome 5 Brands'; + font-style: normal; + font-weight: normal; + src: url("../webfonts/fa-brands-400.eot"); + src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg"); } + +.fab { + font-family: 'Font Awesome 5 Brands'; } +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 400; + src: url("../webfonts/fa-regular-400.eot"); + src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.woff") format("woff"), url("../webfonts/fa-regular-400.ttf") format("truetype"), url("../webfonts/fa-regular-400.svg#fontawesome") format("svg"); } + +.far { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 900; + src: url("../webfonts/fa-solid-900.eot"); + src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg"); } + +.fa, +.fas { + font-family: 'Font Awesome 5 Free'; + font-weight: 900; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/fontawesome-all.min.css b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/fontawesome-all.min.css new file mode 100644 index 0000000000..740543d89f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/fontawesome-all.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:a 2s infinite linear}.fa-pulse{animation:a 1s infinite steps(8)}@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-balance-scale:before{content:"\f24e"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blind:before{content:"\f29d"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-open:before{content:"\f518"}.fa-bookmark:before{content:"\f02e"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-certificate:before{content:"\f0a3"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-concierge-bell:before{content:"\f562"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-credit-card:before{content:"\f09d"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-deviantart:before{content:"\f1bd"}.fa-diagnoses:before{content:"\f470"}.fa-dice:before{content:"\f522"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-gift:before{content:"\f06b"}.fa-git:before{content:"\f1d3"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hashtag:before{content:"\f292"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-houzz:before{content:"\f27c"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-internet-explorer:before{content:"\f26b"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mercury:before{content:"\f223"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-motorcycle:before{content:"\f21c"}.fa-mouse-pointer:before{content:"\f245"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-old-republic:before{content:"\f510"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-people-carry:before{content:"\f4ce"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poo:before{content:"\f2fe"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-r-project:before{content:"\f4f7"}.fa-random:before{content:"\f074"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-rendact:before{content:"\f3e4"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-sass:before{content:"\f41e"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-search:before{content:"\f002"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skull:before{content:"\f54c"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowflake:before{content:"\f2dc"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toolbox:before{content:"\f552"}.fa-tooth:before{content:"\f5c9"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-train:before{content:"\f238"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-moving:before{content:"\f4df"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/fontawesome.css b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/fontawesome.css new file mode 100644 index 0000000000..a75f8cafa9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/fontawesome.css @@ -0,0 +1,3542 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa, +.fas, +.far, +.fal, +.fab { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + line-height: 1; } + +.fa-lg { + font-size: 1.33333em; + line-height: 0.75em; + vertical-align: -.0667em; } + +.fa-xs { + font-size: .75em; } + +.fa-sm { + font-size: .875em; } + +.fa-1x { + font-size: 1em; } + +.fa-2x { + font-size: 2em; } + +.fa-3x { + font-size: 3em; } + +.fa-4x { + font-size: 4em; } + +.fa-5x { + font-size: 5em; } + +.fa-6x { + font-size: 6em; } + +.fa-7x { + font-size: 7em; } + +.fa-8x { + font-size: 8em; } + +.fa-9x { + font-size: 9em; } + +.fa-10x { + font-size: 10em; } + +.fa-fw { + text-align: center; + width: 1.25em; } + +.fa-ul { + list-style-type: none; + margin-left: 2.5em; + padding-left: 0; } + .fa-ul > li { + position: relative; } + +.fa-li { + left: -2em; + position: absolute; + text-align: center; + width: 2em; + line-height: inherit; } + +.fa-border { + border: solid 0.08em #eee; + border-radius: .1em; + padding: .2em .25em .15em; } + +.fa-pull-left { + float: left; } + +.fa-pull-right { + float: right; } + +.fa.fa-pull-left, +.fas.fa-pull-left, +.far.fa-pull-left, +.fal.fa-pull-left, +.fab.fa-pull-left { + margin-right: .3em; } + +.fa.fa-pull-right, +.fas.fa-pull-right, +.far.fa-pull-right, +.fal.fa-pull-right, +.fab.fa-pull-right { + margin-left: .3em; } + +.fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; } + +.fa-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); } + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +.fa-rotate-90 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); } + +.fa-rotate-180 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + transform: rotate(180deg); } + +.fa-rotate-270 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + transform: rotate(270deg); } + +.fa-flip-horizontal { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + -webkit-transform: scale(-1, 1); + transform: scale(-1, 1); } + +.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(1, -1); + transform: scale(1, -1); } + +.fa-flip-horizontal.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(-1, -1); + transform: scale(-1, -1); } + +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270, +:root .fa-flip-horizontal, +:root .fa-flip-vertical { + -webkit-filter: none; + filter: none; } + +.fa-stack { + display: inline-block; + height: 2em; + line-height: 2em; + position: relative; + vertical-align: middle; + width: 2em; } + +.fa-stack-1x, +.fa-stack-2x { + left: 0; + position: absolute; + text-align: center; + width: 100%; } + +.fa-stack-1x { + line-height: inherit; } + +.fa-stack-2x { + font-size: 2em; } + +.fa-inverse { + color: #fff; } + +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen +readers do not read off random characters that represent icons */ +.fa-500px:before { + content: "\f26e"; } + +.fa-accessible-icon:before { + content: "\f368"; } + +.fa-accusoft:before { + content: "\f369"; } + +.fa-address-book:before { + content: "\f2b9"; } + +.fa-address-card:before { + content: "\f2bb"; } + +.fa-adjust:before { + content: "\f042"; } + +.fa-adn:before { + content: "\f170"; } + +.fa-adversal:before { + content: "\f36a"; } + +.fa-affiliatetheme:before { + content: "\f36b"; } + +.fa-algolia:before { + content: "\f36c"; } + +.fa-align-center:before { + content: "\f037"; } + +.fa-align-justify:before { + content: "\f039"; } + +.fa-align-left:before { + content: "\f036"; } + +.fa-align-right:before { + content: "\f038"; } + +.fa-allergies:before { + content: "\f461"; } + +.fa-amazon:before { + content: "\f270"; } + +.fa-amazon-pay:before { + content: "\f42c"; } + +.fa-ambulance:before { + content: "\f0f9"; } + +.fa-american-sign-language-interpreting:before { + content: "\f2a3"; } + +.fa-amilia:before { + content: "\f36d"; } + +.fa-anchor:before { + content: "\f13d"; } + +.fa-android:before { + content: "\f17b"; } + +.fa-angellist:before { + content: "\f209"; } + +.fa-angle-double-down:before { + content: "\f103"; } + +.fa-angle-double-left:before { + content: "\f100"; } + +.fa-angle-double-right:before { + content: "\f101"; } + +.fa-angle-double-up:before { + content: "\f102"; } + +.fa-angle-down:before { + content: "\f107"; } + +.fa-angle-left:before { + content: "\f104"; } + +.fa-angle-right:before { + content: "\f105"; } + +.fa-angle-up:before { + content: "\f106"; } + +.fa-angry:before { + content: "\f556"; } + +.fa-angrycreative:before { + content: "\f36e"; } + +.fa-angular:before { + content: "\f420"; } + +.fa-app-store:before { + content: "\f36f"; } + +.fa-app-store-ios:before { + content: "\f370"; } + +.fa-apper:before { + content: "\f371"; } + +.fa-apple:before { + content: "\f179"; } + +.fa-apple-pay:before { + content: "\f415"; } + +.fa-archive:before { + content: "\f187"; } + +.fa-archway:before { + content: "\f557"; } + +.fa-arrow-alt-circle-down:before { + content: "\f358"; } + +.fa-arrow-alt-circle-left:before { + content: "\f359"; } + +.fa-arrow-alt-circle-right:before { + content: "\f35a"; } + +.fa-arrow-alt-circle-up:before { + content: "\f35b"; } + +.fa-arrow-circle-down:before { + content: "\f0ab"; } + +.fa-arrow-circle-left:before { + content: "\f0a8"; } + +.fa-arrow-circle-right:before { + content: "\f0a9"; } + +.fa-arrow-circle-up:before { + content: "\f0aa"; } + +.fa-arrow-down:before { + content: "\f063"; } + +.fa-arrow-left:before { + content: "\f060"; } + +.fa-arrow-right:before { + content: "\f061"; } + +.fa-arrow-up:before { + content: "\f062"; } + +.fa-arrows-alt:before { + content: "\f0b2"; } + +.fa-arrows-alt-h:before { + content: "\f337"; } + +.fa-arrows-alt-v:before { + content: "\f338"; } + +.fa-assistive-listening-systems:before { + content: "\f2a2"; } + +.fa-asterisk:before { + content: "\f069"; } + +.fa-asymmetrik:before { + content: "\f372"; } + +.fa-at:before { + content: "\f1fa"; } + +.fa-atlas:before { + content: "\f558"; } + +.fa-audible:before { + content: "\f373"; } + +.fa-audio-description:before { + content: "\f29e"; } + +.fa-autoprefixer:before { + content: "\f41c"; } + +.fa-avianex:before { + content: "\f374"; } + +.fa-aviato:before { + content: "\f421"; } + +.fa-award:before { + content: "\f559"; } + +.fa-aws:before { + content: "\f375"; } + +.fa-backspace:before { + content: "\f55a"; } + +.fa-backward:before { + content: "\f04a"; } + +.fa-balance-scale:before { + content: "\f24e"; } + +.fa-ban:before { + content: "\f05e"; } + +.fa-band-aid:before { + content: "\f462"; } + +.fa-bandcamp:before { + content: "\f2d5"; } + +.fa-barcode:before { + content: "\f02a"; } + +.fa-bars:before { + content: "\f0c9"; } + +.fa-baseball-ball:before { + content: "\f433"; } + +.fa-basketball-ball:before { + content: "\f434"; } + +.fa-bath:before { + content: "\f2cd"; } + +.fa-battery-empty:before { + content: "\f244"; } + +.fa-battery-full:before { + content: "\f240"; } + +.fa-battery-half:before { + content: "\f242"; } + +.fa-battery-quarter:before { + content: "\f243"; } + +.fa-battery-three-quarters:before { + content: "\f241"; } + +.fa-bed:before { + content: "\f236"; } + +.fa-beer:before { + content: "\f0fc"; } + +.fa-behance:before { + content: "\f1b4"; } + +.fa-behance-square:before { + content: "\f1b5"; } + +.fa-bell:before { + content: "\f0f3"; } + +.fa-bell-slash:before { + content: "\f1f6"; } + +.fa-bezier-curve:before { + content: "\f55b"; } + +.fa-bicycle:before { + content: "\f206"; } + +.fa-bimobject:before { + content: "\f378"; } + +.fa-binoculars:before { + content: "\f1e5"; } + +.fa-birthday-cake:before { + content: "\f1fd"; } + +.fa-bitbucket:before { + content: "\f171"; } + +.fa-bitcoin:before { + content: "\f379"; } + +.fa-bity:before { + content: "\f37a"; } + +.fa-black-tie:before { + content: "\f27e"; } + +.fa-blackberry:before { + content: "\f37b"; } + +.fa-blender:before { + content: "\f517"; } + +.fa-blind:before { + content: "\f29d"; } + +.fa-blogger:before { + content: "\f37c"; } + +.fa-blogger-b:before { + content: "\f37d"; } + +.fa-bluetooth:before { + content: "\f293"; } + +.fa-bluetooth-b:before { + content: "\f294"; } + +.fa-bold:before { + content: "\f032"; } + +.fa-bolt:before { + content: "\f0e7"; } + +.fa-bomb:before { + content: "\f1e2"; } + +.fa-bong:before { + content: "\f55c"; } + +.fa-book:before { + content: "\f02d"; } + +.fa-book-open:before { + content: "\f518"; } + +.fa-bookmark:before { + content: "\f02e"; } + +.fa-bowling-ball:before { + content: "\f436"; } + +.fa-box:before { + content: "\f466"; } + +.fa-box-open:before { + content: "\f49e"; } + +.fa-boxes:before { + content: "\f468"; } + +.fa-braille:before { + content: "\f2a1"; } + +.fa-briefcase:before { + content: "\f0b1"; } + +.fa-briefcase-medical:before { + content: "\f469"; } + +.fa-broadcast-tower:before { + content: "\f519"; } + +.fa-broom:before { + content: "\f51a"; } + +.fa-brush:before { + content: "\f55d"; } + +.fa-btc:before { + content: "\f15a"; } + +.fa-bug:before { + content: "\f188"; } + +.fa-building:before { + content: "\f1ad"; } + +.fa-bullhorn:before { + content: "\f0a1"; } + +.fa-bullseye:before { + content: "\f140"; } + +.fa-burn:before { + content: "\f46a"; } + +.fa-buromobelexperte:before { + content: "\f37f"; } + +.fa-bus:before { + content: "\f207"; } + +.fa-bus-alt:before { + content: "\f55e"; } + +.fa-buysellads:before { + content: "\f20d"; } + +.fa-calculator:before { + content: "\f1ec"; } + +.fa-calendar:before { + content: "\f133"; } + +.fa-calendar-alt:before { + content: "\f073"; } + +.fa-calendar-check:before { + content: "\f274"; } + +.fa-calendar-minus:before { + content: "\f272"; } + +.fa-calendar-plus:before { + content: "\f271"; } + +.fa-calendar-times:before { + content: "\f273"; } + +.fa-camera:before { + content: "\f030"; } + +.fa-camera-retro:before { + content: "\f083"; } + +.fa-cannabis:before { + content: "\f55f"; } + +.fa-capsules:before { + content: "\f46b"; } + +.fa-car:before { + content: "\f1b9"; } + +.fa-caret-down:before { + content: "\f0d7"; } + +.fa-caret-left:before { + content: "\f0d9"; } + +.fa-caret-right:before { + content: "\f0da"; } + +.fa-caret-square-down:before { + content: "\f150"; } + +.fa-caret-square-left:before { + content: "\f191"; } + +.fa-caret-square-right:before { + content: "\f152"; } + +.fa-caret-square-up:before { + content: "\f151"; } + +.fa-caret-up:before { + content: "\f0d8"; } + +.fa-cart-arrow-down:before { + content: "\f218"; } + +.fa-cart-plus:before { + content: "\f217"; } + +.fa-cc-amazon-pay:before { + content: "\f42d"; } + +.fa-cc-amex:before { + content: "\f1f3"; } + +.fa-cc-apple-pay:before { + content: "\f416"; } + +.fa-cc-diners-club:before { + content: "\f24c"; } + +.fa-cc-discover:before { + content: "\f1f2"; } + +.fa-cc-jcb:before { + content: "\f24b"; } + +.fa-cc-mastercard:before { + content: "\f1f1"; } + +.fa-cc-paypal:before { + content: "\f1f4"; } + +.fa-cc-stripe:before { + content: "\f1f5"; } + +.fa-cc-visa:before { + content: "\f1f0"; } + +.fa-centercode:before { + content: "\f380"; } + +.fa-certificate:before { + content: "\f0a3"; } + +.fa-chalkboard:before { + content: "\f51b"; } + +.fa-chalkboard-teacher:before { + content: "\f51c"; } + +.fa-chart-area:before { + content: "\f1fe"; } + +.fa-chart-bar:before { + content: "\f080"; } + +.fa-chart-line:before { + content: "\f201"; } + +.fa-chart-pie:before { + content: "\f200"; } + +.fa-check:before { + content: "\f00c"; } + +.fa-check-circle:before { + content: "\f058"; } + +.fa-check-double:before { + content: "\f560"; } + +.fa-check-square:before { + content: "\f14a"; } + +.fa-chess:before { + content: "\f439"; } + +.fa-chess-bishop:before { + content: "\f43a"; } + +.fa-chess-board:before { + content: "\f43c"; } + +.fa-chess-king:before { + content: "\f43f"; } + +.fa-chess-knight:before { + content: "\f441"; } + +.fa-chess-pawn:before { + content: "\f443"; } + +.fa-chess-queen:before { + content: "\f445"; } + +.fa-chess-rook:before { + content: "\f447"; } + +.fa-chevron-circle-down:before { + content: "\f13a"; } + +.fa-chevron-circle-left:before { + content: "\f137"; } + +.fa-chevron-circle-right:before { + content: "\f138"; } + +.fa-chevron-circle-up:before { + content: "\f139"; } + +.fa-chevron-down:before { + content: "\f078"; } + +.fa-chevron-left:before { + content: "\f053"; } + +.fa-chevron-right:before { + content: "\f054"; } + +.fa-chevron-up:before { + content: "\f077"; } + +.fa-child:before { + content: "\f1ae"; } + +.fa-chrome:before { + content: "\f268"; } + +.fa-church:before { + content: "\f51d"; } + +.fa-circle:before { + content: "\f111"; } + +.fa-circle-notch:before { + content: "\f1ce"; } + +.fa-clipboard:before { + content: "\f328"; } + +.fa-clipboard-check:before { + content: "\f46c"; } + +.fa-clipboard-list:before { + content: "\f46d"; } + +.fa-clock:before { + content: "\f017"; } + +.fa-clone:before { + content: "\f24d"; } + +.fa-closed-captioning:before { + content: "\f20a"; } + +.fa-cloud:before { + content: "\f0c2"; } + +.fa-cloud-download-alt:before { + content: "\f381"; } + +.fa-cloud-upload-alt:before { + content: "\f382"; } + +.fa-cloudscale:before { + content: "\f383"; } + +.fa-cloudsmith:before { + content: "\f384"; } + +.fa-cloudversify:before { + content: "\f385"; } + +.fa-cocktail:before { + content: "\f561"; } + +.fa-code:before { + content: "\f121"; } + +.fa-code-branch:before { + content: "\f126"; } + +.fa-codepen:before { + content: "\f1cb"; } + +.fa-codiepie:before { + content: "\f284"; } + +.fa-coffee:before { + content: "\f0f4"; } + +.fa-cog:before { + content: "\f013"; } + +.fa-cogs:before { + content: "\f085"; } + +.fa-coins:before { + content: "\f51e"; } + +.fa-columns:before { + content: "\f0db"; } + +.fa-comment:before { + content: "\f075"; } + +.fa-comment-alt:before { + content: "\f27a"; } + +.fa-comment-dots:before { + content: "\f4ad"; } + +.fa-comment-slash:before { + content: "\f4b3"; } + +.fa-comments:before { + content: "\f086"; } + +.fa-compact-disc:before { + content: "\f51f"; } + +.fa-compass:before { + content: "\f14e"; } + +.fa-compress:before { + content: "\f066"; } + +.fa-concierge-bell:before { + content: "\f562"; } + +.fa-connectdevelop:before { + content: "\f20e"; } + +.fa-contao:before { + content: "\f26d"; } + +.fa-cookie:before { + content: "\f563"; } + +.fa-cookie-bite:before { + content: "\f564"; } + +.fa-copy:before { + content: "\f0c5"; } + +.fa-copyright:before { + content: "\f1f9"; } + +.fa-couch:before { + content: "\f4b8"; } + +.fa-cpanel:before { + content: "\f388"; } + +.fa-creative-commons:before { + content: "\f25e"; } + +.fa-creative-commons-by:before { + content: "\f4e7"; } + +.fa-creative-commons-nc:before { + content: "\f4e8"; } + +.fa-creative-commons-nc-eu:before { + content: "\f4e9"; } + +.fa-creative-commons-nc-jp:before { + content: "\f4ea"; } + +.fa-creative-commons-nd:before { + content: "\f4eb"; } + +.fa-creative-commons-pd:before { + content: "\f4ec"; } + +.fa-creative-commons-pd-alt:before { + content: "\f4ed"; } + +.fa-creative-commons-remix:before { + content: "\f4ee"; } + +.fa-creative-commons-sa:before { + content: "\f4ef"; } + +.fa-creative-commons-sampling:before { + content: "\f4f0"; } + +.fa-creative-commons-sampling-plus:before { + content: "\f4f1"; } + +.fa-creative-commons-share:before { + content: "\f4f2"; } + +.fa-credit-card:before { + content: "\f09d"; } + +.fa-crop:before { + content: "\f125"; } + +.fa-crop-alt:before { + content: "\f565"; } + +.fa-crosshairs:before { + content: "\f05b"; } + +.fa-crow:before { + content: "\f520"; } + +.fa-crown:before { + content: "\f521"; } + +.fa-css3:before { + content: "\f13c"; } + +.fa-css3-alt:before { + content: "\f38b"; } + +.fa-cube:before { + content: "\f1b2"; } + +.fa-cubes:before { + content: "\f1b3"; } + +.fa-cut:before { + content: "\f0c4"; } + +.fa-cuttlefish:before { + content: "\f38c"; } + +.fa-d-and-d:before { + content: "\f38d"; } + +.fa-dashcube:before { + content: "\f210"; } + +.fa-database:before { + content: "\f1c0"; } + +.fa-deaf:before { + content: "\f2a4"; } + +.fa-delicious:before { + content: "\f1a5"; } + +.fa-deploydog:before { + content: "\f38e"; } + +.fa-deskpro:before { + content: "\f38f"; } + +.fa-desktop:before { + content: "\f108"; } + +.fa-deviantart:before { + content: "\f1bd"; } + +.fa-diagnoses:before { + content: "\f470"; } + +.fa-dice:before { + content: "\f522"; } + +.fa-dice-five:before { + content: "\f523"; } + +.fa-dice-four:before { + content: "\f524"; } + +.fa-dice-one:before { + content: "\f525"; } + +.fa-dice-six:before { + content: "\f526"; } + +.fa-dice-three:before { + content: "\f527"; } + +.fa-dice-two:before { + content: "\f528"; } + +.fa-digg:before { + content: "\f1a6"; } + +.fa-digital-ocean:before { + content: "\f391"; } + +.fa-digital-tachograph:before { + content: "\f566"; } + +.fa-discord:before { + content: "\f392"; } + +.fa-discourse:before { + content: "\f393"; } + +.fa-divide:before { + content: "\f529"; } + +.fa-dizzy:before { + content: "\f567"; } + +.fa-dna:before { + content: "\f471"; } + +.fa-dochub:before { + content: "\f394"; } + +.fa-docker:before { + content: "\f395"; } + +.fa-dollar-sign:before { + content: "\f155"; } + +.fa-dolly:before { + content: "\f472"; } + +.fa-dolly-flatbed:before { + content: "\f474"; } + +.fa-donate:before { + content: "\f4b9"; } + +.fa-door-closed:before { + content: "\f52a"; } + +.fa-door-open:before { + content: "\f52b"; } + +.fa-dot-circle:before { + content: "\f192"; } + +.fa-dove:before { + content: "\f4ba"; } + +.fa-download:before { + content: "\f019"; } + +.fa-draft2digital:before { + content: "\f396"; } + +.fa-drafting-compass:before { + content: "\f568"; } + +.fa-dribbble:before { + content: "\f17d"; } + +.fa-dribbble-square:before { + content: "\f397"; } + +.fa-dropbox:before { + content: "\f16b"; } + +.fa-drum:before { + content: "\f569"; } + +.fa-drum-steelpan:before { + content: "\f56a"; } + +.fa-drupal:before { + content: "\f1a9"; } + +.fa-dumbbell:before { + content: "\f44b"; } + +.fa-dyalog:before { + content: "\f399"; } + +.fa-earlybirds:before { + content: "\f39a"; } + +.fa-ebay:before { + content: "\f4f4"; } + +.fa-edge:before { + content: "\f282"; } + +.fa-edit:before { + content: "\f044"; } + +.fa-eject:before { + content: "\f052"; } + +.fa-elementor:before { + content: "\f430"; } + +.fa-ellipsis-h:before { + content: "\f141"; } + +.fa-ellipsis-v:before { + content: "\f142"; } + +.fa-ember:before { + content: "\f423"; } + +.fa-empire:before { + content: "\f1d1"; } + +.fa-envelope:before { + content: "\f0e0"; } + +.fa-envelope-open:before { + content: "\f2b6"; } + +.fa-envelope-square:before { + content: "\f199"; } + +.fa-envira:before { + content: "\f299"; } + +.fa-equals:before { + content: "\f52c"; } + +.fa-eraser:before { + content: "\f12d"; } + +.fa-erlang:before { + content: "\f39d"; } + +.fa-ethereum:before { + content: "\f42e"; } + +.fa-etsy:before { + content: "\f2d7"; } + +.fa-euro-sign:before { + content: "\f153"; } + +.fa-exchange-alt:before { + content: "\f362"; } + +.fa-exclamation:before { + content: "\f12a"; } + +.fa-exclamation-circle:before { + content: "\f06a"; } + +.fa-exclamation-triangle:before { + content: "\f071"; } + +.fa-expand:before { + content: "\f065"; } + +.fa-expand-arrows-alt:before { + content: "\f31e"; } + +.fa-expeditedssl:before { + content: "\f23e"; } + +.fa-external-link-alt:before { + content: "\f35d"; } + +.fa-external-link-square-alt:before { + content: "\f360"; } + +.fa-eye:before { + content: "\f06e"; } + +.fa-eye-dropper:before { + content: "\f1fb"; } + +.fa-eye-slash:before { + content: "\f070"; } + +.fa-facebook:before { + content: "\f09a"; } + +.fa-facebook-f:before { + content: "\f39e"; } + +.fa-facebook-messenger:before { + content: "\f39f"; } + +.fa-facebook-square:before { + content: "\f082"; } + +.fa-fast-backward:before { + content: "\f049"; } + +.fa-fast-forward:before { + content: "\f050"; } + +.fa-fax:before { + content: "\f1ac"; } + +.fa-feather:before { + content: "\f52d"; } + +.fa-feather-alt:before { + content: "\f56b"; } + +.fa-female:before { + content: "\f182"; } + +.fa-fighter-jet:before { + content: "\f0fb"; } + +.fa-file:before { + content: "\f15b"; } + +.fa-file-alt:before { + content: "\f15c"; } + +.fa-file-archive:before { + content: "\f1c6"; } + +.fa-file-audio:before { + content: "\f1c7"; } + +.fa-file-code:before { + content: "\f1c9"; } + +.fa-file-contract:before { + content: "\f56c"; } + +.fa-file-download:before { + content: "\f56d"; } + +.fa-file-excel:before { + content: "\f1c3"; } + +.fa-file-export:before { + content: "\f56e"; } + +.fa-file-image:before { + content: "\f1c5"; } + +.fa-file-import:before { + content: "\f56f"; } + +.fa-file-invoice:before { + content: "\f570"; } + +.fa-file-invoice-dollar:before { + content: "\f571"; } + +.fa-file-medical:before { + content: "\f477"; } + +.fa-file-medical-alt:before { + content: "\f478"; } + +.fa-file-pdf:before { + content: "\f1c1"; } + +.fa-file-powerpoint:before { + content: "\f1c4"; } + +.fa-file-prescription:before { + content: "\f572"; } + +.fa-file-signature:before { + content: "\f573"; } + +.fa-file-upload:before { + content: "\f574"; } + +.fa-file-video:before { + content: "\f1c8"; } + +.fa-file-word:before { + content: "\f1c2"; } + +.fa-fill:before { + content: "\f575"; } + +.fa-fill-drip:before { + content: "\f576"; } + +.fa-film:before { + content: "\f008"; } + +.fa-filter:before { + content: "\f0b0"; } + +.fa-fingerprint:before { + content: "\f577"; } + +.fa-fire:before { + content: "\f06d"; } + +.fa-fire-extinguisher:before { + content: "\f134"; } + +.fa-firefox:before { + content: "\f269"; } + +.fa-first-aid:before { + content: "\f479"; } + +.fa-first-order:before { + content: "\f2b0"; } + +.fa-first-order-alt:before { + content: "\f50a"; } + +.fa-firstdraft:before { + content: "\f3a1"; } + +.fa-fish:before { + content: "\f578"; } + +.fa-flag:before { + content: "\f024"; } + +.fa-flag-checkered:before { + content: "\f11e"; } + +.fa-flask:before { + content: "\f0c3"; } + +.fa-flickr:before { + content: "\f16e"; } + +.fa-flipboard:before { + content: "\f44d"; } + +.fa-flushed:before { + content: "\f579"; } + +.fa-fly:before { + content: "\f417"; } + +.fa-folder:before { + content: "\f07b"; } + +.fa-folder-open:before { + content: "\f07c"; } + +.fa-font:before { + content: "\f031"; } + +.fa-font-awesome:before { + content: "\f2b4"; } + +.fa-font-awesome-alt:before { + content: "\f35c"; } + +.fa-font-awesome-flag:before { + content: "\f425"; } + +.fa-font-awesome-logo-full:before { + content: "\f4e6"; } + +.fa-fonticons:before { + content: "\f280"; } + +.fa-fonticons-fi:before { + content: "\f3a2"; } + +.fa-football-ball:before { + content: "\f44e"; } + +.fa-fort-awesome:before { + content: "\f286"; } + +.fa-fort-awesome-alt:before { + content: "\f3a3"; } + +.fa-forumbee:before { + content: "\f211"; } + +.fa-forward:before { + content: "\f04e"; } + +.fa-foursquare:before { + content: "\f180"; } + +.fa-free-code-camp:before { + content: "\f2c5"; } + +.fa-freebsd:before { + content: "\f3a4"; } + +.fa-frog:before { + content: "\f52e"; } + +.fa-frown:before { + content: "\f119"; } + +.fa-frown-open:before { + content: "\f57a"; } + +.fa-fulcrum:before { + content: "\f50b"; } + +.fa-futbol:before { + content: "\f1e3"; } + +.fa-galactic-republic:before { + content: "\f50c"; } + +.fa-galactic-senate:before { + content: "\f50d"; } + +.fa-gamepad:before { + content: "\f11b"; } + +.fa-gas-pump:before { + content: "\f52f"; } + +.fa-gavel:before { + content: "\f0e3"; } + +.fa-gem:before { + content: "\f3a5"; } + +.fa-genderless:before { + content: "\f22d"; } + +.fa-get-pocket:before { + content: "\f265"; } + +.fa-gg:before { + content: "\f260"; } + +.fa-gg-circle:before { + content: "\f261"; } + +.fa-gift:before { + content: "\f06b"; } + +.fa-git:before { + content: "\f1d3"; } + +.fa-git-square:before { + content: "\f1d2"; } + +.fa-github:before { + content: "\f09b"; } + +.fa-github-alt:before { + content: "\f113"; } + +.fa-github-square:before { + content: "\f092"; } + +.fa-gitkraken:before { + content: "\f3a6"; } + +.fa-gitlab:before { + content: "\f296"; } + +.fa-gitter:before { + content: "\f426"; } + +.fa-glass-martini:before { + content: "\f000"; } + +.fa-glass-martini-alt:before { + content: "\f57b"; } + +.fa-glasses:before { + content: "\f530"; } + +.fa-glide:before { + content: "\f2a5"; } + +.fa-glide-g:before { + content: "\f2a6"; } + +.fa-globe:before { + content: "\f0ac"; } + +.fa-globe-africa:before { + content: "\f57c"; } + +.fa-globe-americas:before { + content: "\f57d"; } + +.fa-globe-asia:before { + content: "\f57e"; } + +.fa-gofore:before { + content: "\f3a7"; } + +.fa-golf-ball:before { + content: "\f450"; } + +.fa-goodreads:before { + content: "\f3a8"; } + +.fa-goodreads-g:before { + content: "\f3a9"; } + +.fa-google:before { + content: "\f1a0"; } + +.fa-google-drive:before { + content: "\f3aa"; } + +.fa-google-play:before { + content: "\f3ab"; } + +.fa-google-plus:before { + content: "\f2b3"; } + +.fa-google-plus-g:before { + content: "\f0d5"; } + +.fa-google-plus-square:before { + content: "\f0d4"; } + +.fa-google-wallet:before { + content: "\f1ee"; } + +.fa-graduation-cap:before { + content: "\f19d"; } + +.fa-gratipay:before { + content: "\f184"; } + +.fa-grav:before { + content: "\f2d6"; } + +.fa-greater-than:before { + content: "\f531"; } + +.fa-greater-than-equal:before { + content: "\f532"; } + +.fa-grimace:before { + content: "\f57f"; } + +.fa-grin:before { + content: "\f580"; } + +.fa-grin-alt:before { + content: "\f581"; } + +.fa-grin-beam:before { + content: "\f582"; } + +.fa-grin-beam-sweat:before { + content: "\f583"; } + +.fa-grin-hearts:before { + content: "\f584"; } + +.fa-grin-squint:before { + content: "\f585"; } + +.fa-grin-squint-tears:before { + content: "\f586"; } + +.fa-grin-stars:before { + content: "\f587"; } + +.fa-grin-tears:before { + content: "\f588"; } + +.fa-grin-tongue:before { + content: "\f589"; } + +.fa-grin-tongue-squint:before { + content: "\f58a"; } + +.fa-grin-tongue-wink:before { + content: "\f58b"; } + +.fa-grin-wink:before { + content: "\f58c"; } + +.fa-grip-horizontal:before { + content: "\f58d"; } + +.fa-grip-vertical:before { + content: "\f58e"; } + +.fa-gripfire:before { + content: "\f3ac"; } + +.fa-grunt:before { + content: "\f3ad"; } + +.fa-gulp:before { + content: "\f3ae"; } + +.fa-h-square:before { + content: "\f0fd"; } + +.fa-hacker-news:before { + content: "\f1d4"; } + +.fa-hacker-news-square:before { + content: "\f3af"; } + +.fa-hand-holding:before { + content: "\f4bd"; } + +.fa-hand-holding-heart:before { + content: "\f4be"; } + +.fa-hand-holding-usd:before { + content: "\f4c0"; } + +.fa-hand-lizard:before { + content: "\f258"; } + +.fa-hand-paper:before { + content: "\f256"; } + +.fa-hand-peace:before { + content: "\f25b"; } + +.fa-hand-point-down:before { + content: "\f0a7"; } + +.fa-hand-point-left:before { + content: "\f0a5"; } + +.fa-hand-point-right:before { + content: "\f0a4"; } + +.fa-hand-point-up:before { + content: "\f0a6"; } + +.fa-hand-pointer:before { + content: "\f25a"; } + +.fa-hand-rock:before { + content: "\f255"; } + +.fa-hand-scissors:before { + content: "\f257"; } + +.fa-hand-spock:before { + content: "\f259"; } + +.fa-hands:before { + content: "\f4c2"; } + +.fa-hands-helping:before { + content: "\f4c4"; } + +.fa-handshake:before { + content: "\f2b5"; } + +.fa-hashtag:before { + content: "\f292"; } + +.fa-hdd:before { + content: "\f0a0"; } + +.fa-heading:before { + content: "\f1dc"; } + +.fa-headphones:before { + content: "\f025"; } + +.fa-headphones-alt:before { + content: "\f58f"; } + +.fa-headset:before { + content: "\f590"; } + +.fa-heart:before { + content: "\f004"; } + +.fa-heartbeat:before { + content: "\f21e"; } + +.fa-helicopter:before { + content: "\f533"; } + +.fa-highlighter:before { + content: "\f591"; } + +.fa-hips:before { + content: "\f452"; } + +.fa-hire-a-helper:before { + content: "\f3b0"; } + +.fa-history:before { + content: "\f1da"; } + +.fa-hockey-puck:before { + content: "\f453"; } + +.fa-home:before { + content: "\f015"; } + +.fa-hooli:before { + content: "\f427"; } + +.fa-hornbill:before { + content: "\f592"; } + +.fa-hospital:before { + content: "\f0f8"; } + +.fa-hospital-alt:before { + content: "\f47d"; } + +.fa-hospital-symbol:before { + content: "\f47e"; } + +.fa-hot-tub:before { + content: "\f593"; } + +.fa-hotel:before { + content: "\f594"; } + +.fa-hotjar:before { + content: "\f3b1"; } + +.fa-hourglass:before { + content: "\f254"; } + +.fa-hourglass-end:before { + content: "\f253"; } + +.fa-hourglass-half:before { + content: "\f252"; } + +.fa-hourglass-start:before { + content: "\f251"; } + +.fa-houzz:before { + content: "\f27c"; } + +.fa-html5:before { + content: "\f13b"; } + +.fa-hubspot:before { + content: "\f3b2"; } + +.fa-i-cursor:before { + content: "\f246"; } + +.fa-id-badge:before { + content: "\f2c1"; } + +.fa-id-card:before { + content: "\f2c2"; } + +.fa-id-card-alt:before { + content: "\f47f"; } + +.fa-image:before { + content: "\f03e"; } + +.fa-images:before { + content: "\f302"; } + +.fa-imdb:before { + content: "\f2d8"; } + +.fa-inbox:before { + content: "\f01c"; } + +.fa-indent:before { + content: "\f03c"; } + +.fa-industry:before { + content: "\f275"; } + +.fa-infinity:before { + content: "\f534"; } + +.fa-info:before { + content: "\f129"; } + +.fa-info-circle:before { + content: "\f05a"; } + +.fa-instagram:before { + content: "\f16d"; } + +.fa-internet-explorer:before { + content: "\f26b"; } + +.fa-ioxhost:before { + content: "\f208"; } + +.fa-italic:before { + content: "\f033"; } + +.fa-itunes:before { + content: "\f3b4"; } + +.fa-itunes-note:before { + content: "\f3b5"; } + +.fa-java:before { + content: "\f4e4"; } + +.fa-jedi-order:before { + content: "\f50e"; } + +.fa-jenkins:before { + content: "\f3b6"; } + +.fa-joget:before { + content: "\f3b7"; } + +.fa-joint:before { + content: "\f595"; } + +.fa-joomla:before { + content: "\f1aa"; } + +.fa-js:before { + content: "\f3b8"; } + +.fa-js-square:before { + content: "\f3b9"; } + +.fa-jsfiddle:before { + content: "\f1cc"; } + +.fa-key:before { + content: "\f084"; } + +.fa-keybase:before { + content: "\f4f5"; } + +.fa-keyboard:before { + content: "\f11c"; } + +.fa-keycdn:before { + content: "\f3ba"; } + +.fa-kickstarter:before { + content: "\f3bb"; } + +.fa-kickstarter-k:before { + content: "\f3bc"; } + +.fa-kiss:before { + content: "\f596"; } + +.fa-kiss-beam:before { + content: "\f597"; } + +.fa-kiss-wink-heart:before { + content: "\f598"; } + +.fa-kiwi-bird:before { + content: "\f535"; } + +.fa-korvue:before { + content: "\f42f"; } + +.fa-language:before { + content: "\f1ab"; } + +.fa-laptop:before { + content: "\f109"; } + +.fa-laravel:before { + content: "\f3bd"; } + +.fa-lastfm:before { + content: "\f202"; } + +.fa-lastfm-square:before { + content: "\f203"; } + +.fa-laugh:before { + content: "\f599"; } + +.fa-laugh-beam:before { + content: "\f59a"; } + +.fa-laugh-squint:before { + content: "\f59b"; } + +.fa-laugh-wink:before { + content: "\f59c"; } + +.fa-leaf:before { + content: "\f06c"; } + +.fa-leanpub:before { + content: "\f212"; } + +.fa-lemon:before { + content: "\f094"; } + +.fa-less:before { + content: "\f41d"; } + +.fa-less-than:before { + content: "\f536"; } + +.fa-less-than-equal:before { + content: "\f537"; } + +.fa-level-down-alt:before { + content: "\f3be"; } + +.fa-level-up-alt:before { + content: "\f3bf"; } + +.fa-life-ring:before { + content: "\f1cd"; } + +.fa-lightbulb:before { + content: "\f0eb"; } + +.fa-line:before { + content: "\f3c0"; } + +.fa-link:before { + content: "\f0c1"; } + +.fa-linkedin:before { + content: "\f08c"; } + +.fa-linkedin-in:before { + content: "\f0e1"; } + +.fa-linode:before { + content: "\f2b8"; } + +.fa-linux:before { + content: "\f17c"; } + +.fa-lira-sign:before { + content: "\f195"; } + +.fa-list:before { + content: "\f03a"; } + +.fa-list-alt:before { + content: "\f022"; } + +.fa-list-ol:before { + content: "\f0cb"; } + +.fa-list-ul:before { + content: "\f0ca"; } + +.fa-location-arrow:before { + content: "\f124"; } + +.fa-lock:before { + content: "\f023"; } + +.fa-lock-open:before { + content: "\f3c1"; } + +.fa-long-arrow-alt-down:before { + content: "\f309"; } + +.fa-long-arrow-alt-left:before { + content: "\f30a"; } + +.fa-long-arrow-alt-right:before { + content: "\f30b"; } + +.fa-long-arrow-alt-up:before { + content: "\f30c"; } + +.fa-low-vision:before { + content: "\f2a8"; } + +.fa-luggage-cart:before { + content: "\f59d"; } + +.fa-lyft:before { + content: "\f3c3"; } + +.fa-magento:before { + content: "\f3c4"; } + +.fa-magic:before { + content: "\f0d0"; } + +.fa-magnet:before { + content: "\f076"; } + +.fa-mailchimp:before { + content: "\f59e"; } + +.fa-male:before { + content: "\f183"; } + +.fa-mandalorian:before { + content: "\f50f"; } + +.fa-map:before { + content: "\f279"; } + +.fa-map-marked:before { + content: "\f59f"; } + +.fa-map-marked-alt:before { + content: "\f5a0"; } + +.fa-map-marker:before { + content: "\f041"; } + +.fa-map-marker-alt:before { + content: "\f3c5"; } + +.fa-map-pin:before { + content: "\f276"; } + +.fa-map-signs:before { + content: "\f277"; } + +.fa-marker:before { + content: "\f5a1"; } + +.fa-mars:before { + content: "\f222"; } + +.fa-mars-double:before { + content: "\f227"; } + +.fa-mars-stroke:before { + content: "\f229"; } + +.fa-mars-stroke-h:before { + content: "\f22b"; } + +.fa-mars-stroke-v:before { + content: "\f22a"; } + +.fa-mastodon:before { + content: "\f4f6"; } + +.fa-maxcdn:before { + content: "\f136"; } + +.fa-medal:before { + content: "\f5a2"; } + +.fa-medapps:before { + content: "\f3c6"; } + +.fa-medium:before { + content: "\f23a"; } + +.fa-medium-m:before { + content: "\f3c7"; } + +.fa-medkit:before { + content: "\f0fa"; } + +.fa-medrt:before { + content: "\f3c8"; } + +.fa-meetup:before { + content: "\f2e0"; } + +.fa-megaport:before { + content: "\f5a3"; } + +.fa-meh:before { + content: "\f11a"; } + +.fa-meh-blank:before { + content: "\f5a4"; } + +.fa-meh-rolling-eyes:before { + content: "\f5a5"; } + +.fa-memory:before { + content: "\f538"; } + +.fa-mercury:before { + content: "\f223"; } + +.fa-microchip:before { + content: "\f2db"; } + +.fa-microphone:before { + content: "\f130"; } + +.fa-microphone-alt:before { + content: "\f3c9"; } + +.fa-microphone-alt-slash:before { + content: "\f539"; } + +.fa-microphone-slash:before { + content: "\f131"; } + +.fa-microsoft:before { + content: "\f3ca"; } + +.fa-minus:before { + content: "\f068"; } + +.fa-minus-circle:before { + content: "\f056"; } + +.fa-minus-square:before { + content: "\f146"; } + +.fa-mix:before { + content: "\f3cb"; } + +.fa-mixcloud:before { + content: "\f289"; } + +.fa-mizuni:before { + content: "\f3cc"; } + +.fa-mobile:before { + content: "\f10b"; } + +.fa-mobile-alt:before { + content: "\f3cd"; } + +.fa-modx:before { + content: "\f285"; } + +.fa-monero:before { + content: "\f3d0"; } + +.fa-money-bill:before { + content: "\f0d6"; } + +.fa-money-bill-alt:before { + content: "\f3d1"; } + +.fa-money-bill-wave:before { + content: "\f53a"; } + +.fa-money-bill-wave-alt:before { + content: "\f53b"; } + +.fa-money-check:before { + content: "\f53c"; } + +.fa-money-check-alt:before { + content: "\f53d"; } + +.fa-monument:before { + content: "\f5a6"; } + +.fa-moon:before { + content: "\f186"; } + +.fa-mortar-pestle:before { + content: "\f5a7"; } + +.fa-motorcycle:before { + content: "\f21c"; } + +.fa-mouse-pointer:before { + content: "\f245"; } + +.fa-music:before { + content: "\f001"; } + +.fa-napster:before { + content: "\f3d2"; } + +.fa-neuter:before { + content: "\f22c"; } + +.fa-newspaper:before { + content: "\f1ea"; } + +.fa-nimblr:before { + content: "\f5a8"; } + +.fa-nintendo-switch:before { + content: "\f418"; } + +.fa-node:before { + content: "\f419"; } + +.fa-node-js:before { + content: "\f3d3"; } + +.fa-not-equal:before { + content: "\f53e"; } + +.fa-notes-medical:before { + content: "\f481"; } + +.fa-npm:before { + content: "\f3d4"; } + +.fa-ns8:before { + content: "\f3d5"; } + +.fa-nutritionix:before { + content: "\f3d6"; } + +.fa-object-group:before { + content: "\f247"; } + +.fa-object-ungroup:before { + content: "\f248"; } + +.fa-odnoklassniki:before { + content: "\f263"; } + +.fa-odnoklassniki-square:before { + content: "\f264"; } + +.fa-old-republic:before { + content: "\f510"; } + +.fa-opencart:before { + content: "\f23d"; } + +.fa-openid:before { + content: "\f19b"; } + +.fa-opera:before { + content: "\f26a"; } + +.fa-optin-monster:before { + content: "\f23c"; } + +.fa-osi:before { + content: "\f41a"; } + +.fa-outdent:before { + content: "\f03b"; } + +.fa-page4:before { + content: "\f3d7"; } + +.fa-pagelines:before { + content: "\f18c"; } + +.fa-paint-brush:before { + content: "\f1fc"; } + +.fa-paint-roller:before { + content: "\f5aa"; } + +.fa-palette:before { + content: "\f53f"; } + +.fa-palfed:before { + content: "\f3d8"; } + +.fa-pallet:before { + content: "\f482"; } + +.fa-paper-plane:before { + content: "\f1d8"; } + +.fa-paperclip:before { + content: "\f0c6"; } + +.fa-parachute-box:before { + content: "\f4cd"; } + +.fa-paragraph:before { + content: "\f1dd"; } + +.fa-parking:before { + content: "\f540"; } + +.fa-passport:before { + content: "\f5ab"; } + +.fa-paste:before { + content: "\f0ea"; } + +.fa-patreon:before { + content: "\f3d9"; } + +.fa-pause:before { + content: "\f04c"; } + +.fa-pause-circle:before { + content: "\f28b"; } + +.fa-paw:before { + content: "\f1b0"; } + +.fa-paypal:before { + content: "\f1ed"; } + +.fa-pen:before { + content: "\f304"; } + +.fa-pen-alt:before { + content: "\f305"; } + +.fa-pen-fancy:before { + content: "\f5ac"; } + +.fa-pen-nib:before { + content: "\f5ad"; } + +.fa-pen-square:before { + content: "\f14b"; } + +.fa-pencil-alt:before { + content: "\f303"; } + +.fa-pencil-ruler:before { + content: "\f5ae"; } + +.fa-people-carry:before { + content: "\f4ce"; } + +.fa-percent:before { + content: "\f295"; } + +.fa-percentage:before { + content: "\f541"; } + +.fa-periscope:before { + content: "\f3da"; } + +.fa-phabricator:before { + content: "\f3db"; } + +.fa-phoenix-framework:before { + content: "\f3dc"; } + +.fa-phoenix-squadron:before { + content: "\f511"; } + +.fa-phone:before { + content: "\f095"; } + +.fa-phone-slash:before { + content: "\f3dd"; } + +.fa-phone-square:before { + content: "\f098"; } + +.fa-phone-volume:before { + content: "\f2a0"; } + +.fa-php:before { + content: "\f457"; } + +.fa-pied-piper:before { + content: "\f2ae"; } + +.fa-pied-piper-alt:before { + content: "\f1a8"; } + +.fa-pied-piper-hat:before { + content: "\f4e5"; } + +.fa-pied-piper-pp:before { + content: "\f1a7"; } + +.fa-piggy-bank:before { + content: "\f4d3"; } + +.fa-pills:before { + content: "\f484"; } + +.fa-pinterest:before { + content: "\f0d2"; } + +.fa-pinterest-p:before { + content: "\f231"; } + +.fa-pinterest-square:before { + content: "\f0d3"; } + +.fa-plane:before { + content: "\f072"; } + +.fa-plane-arrival:before { + content: "\f5af"; } + +.fa-plane-departure:before { + content: "\f5b0"; } + +.fa-play:before { + content: "\f04b"; } + +.fa-play-circle:before { + content: "\f144"; } + +.fa-playstation:before { + content: "\f3df"; } + +.fa-plug:before { + content: "\f1e6"; } + +.fa-plus:before { + content: "\f067"; } + +.fa-plus-circle:before { + content: "\f055"; } + +.fa-plus-square:before { + content: "\f0fe"; } + +.fa-podcast:before { + content: "\f2ce"; } + +.fa-poo:before { + content: "\f2fe"; } + +.fa-portrait:before { + content: "\f3e0"; } + +.fa-pound-sign:before { + content: "\f154"; } + +.fa-power-off:before { + content: "\f011"; } + +.fa-prescription:before { + content: "\f5b1"; } + +.fa-prescription-bottle:before { + content: "\f485"; } + +.fa-prescription-bottle-alt:before { + content: "\f486"; } + +.fa-print:before { + content: "\f02f"; } + +.fa-procedures:before { + content: "\f487"; } + +.fa-product-hunt:before { + content: "\f288"; } + +.fa-project-diagram:before { + content: "\f542"; } + +.fa-pushed:before { + content: "\f3e1"; } + +.fa-puzzle-piece:before { + content: "\f12e"; } + +.fa-python:before { + content: "\f3e2"; } + +.fa-qq:before { + content: "\f1d6"; } + +.fa-qrcode:before { + content: "\f029"; } + +.fa-question:before { + content: "\f128"; } + +.fa-question-circle:before { + content: "\f059"; } + +.fa-quidditch:before { + content: "\f458"; } + +.fa-quinscape:before { + content: "\f459"; } + +.fa-quora:before { + content: "\f2c4"; } + +.fa-quote-left:before { + content: "\f10d"; } + +.fa-quote-right:before { + content: "\f10e"; } + +.fa-r-project:before { + content: "\f4f7"; } + +.fa-random:before { + content: "\f074"; } + +.fa-ravelry:before { + content: "\f2d9"; } + +.fa-react:before { + content: "\f41b"; } + +.fa-readme:before { + content: "\f4d5"; } + +.fa-rebel:before { + content: "\f1d0"; } + +.fa-receipt:before { + content: "\f543"; } + +.fa-recycle:before { + content: "\f1b8"; } + +.fa-red-river:before { + content: "\f3e3"; } + +.fa-reddit:before { + content: "\f1a1"; } + +.fa-reddit-alien:before { + content: "\f281"; } + +.fa-reddit-square:before { + content: "\f1a2"; } + +.fa-redo:before { + content: "\f01e"; } + +.fa-redo-alt:before { + content: "\f2f9"; } + +.fa-registered:before { + content: "\f25d"; } + +.fa-rendact:before { + content: "\f3e4"; } + +.fa-renren:before { + content: "\f18b"; } + +.fa-reply:before { + content: "\f3e5"; } + +.fa-reply-all:before { + content: "\f122"; } + +.fa-replyd:before { + content: "\f3e6"; } + +.fa-researchgate:before { + content: "\f4f8"; } + +.fa-resolving:before { + content: "\f3e7"; } + +.fa-retweet:before { + content: "\f079"; } + +.fa-rev:before { + content: "\f5b2"; } + +.fa-ribbon:before { + content: "\f4d6"; } + +.fa-road:before { + content: "\f018"; } + +.fa-robot:before { + content: "\f544"; } + +.fa-rocket:before { + content: "\f135"; } + +.fa-rocketchat:before { + content: "\f3e8"; } + +.fa-rockrms:before { + content: "\f3e9"; } + +.fa-rss:before { + content: "\f09e"; } + +.fa-rss-square:before { + content: "\f143"; } + +.fa-ruble-sign:before { + content: "\f158"; } + +.fa-ruler:before { + content: "\f545"; } + +.fa-ruler-combined:before { + content: "\f546"; } + +.fa-ruler-horizontal:before { + content: "\f547"; } + +.fa-ruler-vertical:before { + content: "\f548"; } + +.fa-rupee-sign:before { + content: "\f156"; } + +.fa-sad-cry:before { + content: "\f5b3"; } + +.fa-sad-tear:before { + content: "\f5b4"; } + +.fa-safari:before { + content: "\f267"; } + +.fa-sass:before { + content: "\f41e"; } + +.fa-save:before { + content: "\f0c7"; } + +.fa-schlix:before { + content: "\f3ea"; } + +.fa-school:before { + content: "\f549"; } + +.fa-screwdriver:before { + content: "\f54a"; } + +.fa-scribd:before { + content: "\f28a"; } + +.fa-search:before { + content: "\f002"; } + +.fa-search-minus:before { + content: "\f010"; } + +.fa-search-plus:before { + content: "\f00e"; } + +.fa-searchengin:before { + content: "\f3eb"; } + +.fa-seedling:before { + content: "\f4d8"; } + +.fa-sellcast:before { + content: "\f2da"; } + +.fa-sellsy:before { + content: "\f213"; } + +.fa-server:before { + content: "\f233"; } + +.fa-servicestack:before { + content: "\f3ec"; } + +.fa-share:before { + content: "\f064"; } + +.fa-share-alt:before { + content: "\f1e0"; } + +.fa-share-alt-square:before { + content: "\f1e1"; } + +.fa-share-square:before { + content: "\f14d"; } + +.fa-shekel-sign:before { + content: "\f20b"; } + +.fa-shield-alt:before { + content: "\f3ed"; } + +.fa-ship:before { + content: "\f21a"; } + +.fa-shipping-fast:before { + content: "\f48b"; } + +.fa-shirtsinbulk:before { + content: "\f214"; } + +.fa-shoe-prints:before { + content: "\f54b"; } + +.fa-shopping-bag:before { + content: "\f290"; } + +.fa-shopping-basket:before { + content: "\f291"; } + +.fa-shopping-cart:before { + content: "\f07a"; } + +.fa-shopware:before { + content: "\f5b5"; } + +.fa-shower:before { + content: "\f2cc"; } + +.fa-shuttle-van:before { + content: "\f5b6"; } + +.fa-sign:before { + content: "\f4d9"; } + +.fa-sign-in-alt:before { + content: "\f2f6"; } + +.fa-sign-language:before { + content: "\f2a7"; } + +.fa-sign-out-alt:before { + content: "\f2f5"; } + +.fa-signal:before { + content: "\f012"; } + +.fa-signature:before { + content: "\f5b7"; } + +.fa-simplybuilt:before { + content: "\f215"; } + +.fa-sistrix:before { + content: "\f3ee"; } + +.fa-sitemap:before { + content: "\f0e8"; } + +.fa-sith:before { + content: "\f512"; } + +.fa-skull:before { + content: "\f54c"; } + +.fa-skyatlas:before { + content: "\f216"; } + +.fa-skype:before { + content: "\f17e"; } + +.fa-slack:before { + content: "\f198"; } + +.fa-slack-hash:before { + content: "\f3ef"; } + +.fa-sliders-h:before { + content: "\f1de"; } + +.fa-slideshare:before { + content: "\f1e7"; } + +.fa-smile:before { + content: "\f118"; } + +.fa-smile-beam:before { + content: "\f5b8"; } + +.fa-smile-wink:before { + content: "\f4da"; } + +.fa-smoking:before { + content: "\f48d"; } + +.fa-smoking-ban:before { + content: "\f54d"; } + +.fa-snapchat:before { + content: "\f2ab"; } + +.fa-snapchat-ghost:before { + content: "\f2ac"; } + +.fa-snapchat-square:before { + content: "\f2ad"; } + +.fa-snowflake:before { + content: "\f2dc"; } + +.fa-solar-panel:before { + content: "\f5ba"; } + +.fa-sort:before { + content: "\f0dc"; } + +.fa-sort-alpha-down:before { + content: "\f15d"; } + +.fa-sort-alpha-up:before { + content: "\f15e"; } + +.fa-sort-amount-down:before { + content: "\f160"; } + +.fa-sort-amount-up:before { + content: "\f161"; } + +.fa-sort-down:before { + content: "\f0dd"; } + +.fa-sort-numeric-down:before { + content: "\f162"; } + +.fa-sort-numeric-up:before { + content: "\f163"; } + +.fa-sort-up:before { + content: "\f0de"; } + +.fa-soundcloud:before { + content: "\f1be"; } + +.fa-spa:before { + content: "\f5bb"; } + +.fa-space-shuttle:before { + content: "\f197"; } + +.fa-speakap:before { + content: "\f3f3"; } + +.fa-spinner:before { + content: "\f110"; } + +.fa-splotch:before { + content: "\f5bc"; } + +.fa-spotify:before { + content: "\f1bc"; } + +.fa-spray-can:before { + content: "\f5bd"; } + +.fa-square:before { + content: "\f0c8"; } + +.fa-square-full:before { + content: "\f45c"; } + +.fa-squarespace:before { + content: "\f5be"; } + +.fa-stack-exchange:before { + content: "\f18d"; } + +.fa-stack-overflow:before { + content: "\f16c"; } + +.fa-stamp:before { + content: "\f5bf"; } + +.fa-star:before { + content: "\f005"; } + +.fa-star-half:before { + content: "\f089"; } + +.fa-star-half-alt:before { + content: "\f5c0"; } + +.fa-staylinked:before { + content: "\f3f5"; } + +.fa-steam:before { + content: "\f1b6"; } + +.fa-steam-square:before { + content: "\f1b7"; } + +.fa-steam-symbol:before { + content: "\f3f6"; } + +.fa-step-backward:before { + content: "\f048"; } + +.fa-step-forward:before { + content: "\f051"; } + +.fa-stethoscope:before { + content: "\f0f1"; } + +.fa-sticker-mule:before { + content: "\f3f7"; } + +.fa-sticky-note:before { + content: "\f249"; } + +.fa-stop:before { + content: "\f04d"; } + +.fa-stop-circle:before { + content: "\f28d"; } + +.fa-stopwatch:before { + content: "\f2f2"; } + +.fa-store:before { + content: "\f54e"; } + +.fa-store-alt:before { + content: "\f54f"; } + +.fa-strava:before { + content: "\f428"; } + +.fa-stream:before { + content: "\f550"; } + +.fa-street-view:before { + content: "\f21d"; } + +.fa-strikethrough:before { + content: "\f0cc"; } + +.fa-stripe:before { + content: "\f429"; } + +.fa-stripe-s:before { + content: "\f42a"; } + +.fa-stroopwafel:before { + content: "\f551"; } + +.fa-studiovinari:before { + content: "\f3f8"; } + +.fa-stumbleupon:before { + content: "\f1a4"; } + +.fa-stumbleupon-circle:before { + content: "\f1a3"; } + +.fa-subscript:before { + content: "\f12c"; } + +.fa-subway:before { + content: "\f239"; } + +.fa-suitcase:before { + content: "\f0f2"; } + +.fa-suitcase-rolling:before { + content: "\f5c1"; } + +.fa-sun:before { + content: "\f185"; } + +.fa-superpowers:before { + content: "\f2dd"; } + +.fa-superscript:before { + content: "\f12b"; } + +.fa-supple:before { + content: "\f3f9"; } + +.fa-surprise:before { + content: "\f5c2"; } + +.fa-swatchbook:before { + content: "\f5c3"; } + +.fa-swimmer:before { + content: "\f5c4"; } + +.fa-swimming-pool:before { + content: "\f5c5"; } + +.fa-sync:before { + content: "\f021"; } + +.fa-sync-alt:before { + content: "\f2f1"; } + +.fa-syringe:before { + content: "\f48e"; } + +.fa-table:before { + content: "\f0ce"; } + +.fa-table-tennis:before { + content: "\f45d"; } + +.fa-tablet:before { + content: "\f10a"; } + +.fa-tablet-alt:before { + content: "\f3fa"; } + +.fa-tablets:before { + content: "\f490"; } + +.fa-tachometer-alt:before { + content: "\f3fd"; } + +.fa-tag:before { + content: "\f02b"; } + +.fa-tags:before { + content: "\f02c"; } + +.fa-tape:before { + content: "\f4db"; } + +.fa-tasks:before { + content: "\f0ae"; } + +.fa-taxi:before { + content: "\f1ba"; } + +.fa-teamspeak:before { + content: "\f4f9"; } + +.fa-telegram:before { + content: "\f2c6"; } + +.fa-telegram-plane:before { + content: "\f3fe"; } + +.fa-tencent-weibo:before { + content: "\f1d5"; } + +.fa-terminal:before { + content: "\f120"; } + +.fa-text-height:before { + content: "\f034"; } + +.fa-text-width:before { + content: "\f035"; } + +.fa-th:before { + content: "\f00a"; } + +.fa-th-large:before { + content: "\f009"; } + +.fa-th-list:before { + content: "\f00b"; } + +.fa-themeco:before { + content: "\f5c6"; } + +.fa-themeisle:before { + content: "\f2b2"; } + +.fa-thermometer:before { + content: "\f491"; } + +.fa-thermometer-empty:before { + content: "\f2cb"; } + +.fa-thermometer-full:before { + content: "\f2c7"; } + +.fa-thermometer-half:before { + content: "\f2c9"; } + +.fa-thermometer-quarter:before { + content: "\f2ca"; } + +.fa-thermometer-three-quarters:before { + content: "\f2c8"; } + +.fa-thumbs-down:before { + content: "\f165"; } + +.fa-thumbs-up:before { + content: "\f164"; } + +.fa-thumbtack:before { + content: "\f08d"; } + +.fa-ticket-alt:before { + content: "\f3ff"; } + +.fa-times:before { + content: "\f00d"; } + +.fa-times-circle:before { + content: "\f057"; } + +.fa-tint:before { + content: "\f043"; } + +.fa-tint-slash:before { + content: "\f5c7"; } + +.fa-tired:before { + content: "\f5c8"; } + +.fa-toggle-off:before { + content: "\f204"; } + +.fa-toggle-on:before { + content: "\f205"; } + +.fa-toolbox:before { + content: "\f552"; } + +.fa-tooth:before { + content: "\f5c9"; } + +.fa-trade-federation:before { + content: "\f513"; } + +.fa-trademark:before { + content: "\f25c"; } + +.fa-train:before { + content: "\f238"; } + +.fa-transgender:before { + content: "\f224"; } + +.fa-transgender-alt:before { + content: "\f225"; } + +.fa-trash:before { + content: "\f1f8"; } + +.fa-trash-alt:before { + content: "\f2ed"; } + +.fa-tree:before { + content: "\f1bb"; } + +.fa-trello:before { + content: "\f181"; } + +.fa-tripadvisor:before { + content: "\f262"; } + +.fa-trophy:before { + content: "\f091"; } + +.fa-truck:before { + content: "\f0d1"; } + +.fa-truck-loading:before { + content: "\f4de"; } + +.fa-truck-moving:before { + content: "\f4df"; } + +.fa-tshirt:before { + content: "\f553"; } + +.fa-tty:before { + content: "\f1e4"; } + +.fa-tumblr:before { + content: "\f173"; } + +.fa-tumblr-square:before { + content: "\f174"; } + +.fa-tv:before { + content: "\f26c"; } + +.fa-twitch:before { + content: "\f1e8"; } + +.fa-twitter:before { + content: "\f099"; } + +.fa-twitter-square:before { + content: "\f081"; } + +.fa-typo3:before { + content: "\f42b"; } + +.fa-uber:before { + content: "\f402"; } + +.fa-uikit:before { + content: "\f403"; } + +.fa-umbrella:before { + content: "\f0e9"; } + +.fa-umbrella-beach:before { + content: "\f5ca"; } + +.fa-underline:before { + content: "\f0cd"; } + +.fa-undo:before { + content: "\f0e2"; } + +.fa-undo-alt:before { + content: "\f2ea"; } + +.fa-uniregistry:before { + content: "\f404"; } + +.fa-universal-access:before { + content: "\f29a"; } + +.fa-university:before { + content: "\f19c"; } + +.fa-unlink:before { + content: "\f127"; } + +.fa-unlock:before { + content: "\f09c"; } + +.fa-unlock-alt:before { + content: "\f13e"; } + +.fa-untappd:before { + content: "\f405"; } + +.fa-upload:before { + content: "\f093"; } + +.fa-usb:before { + content: "\f287"; } + +.fa-user:before { + content: "\f007"; } + +.fa-user-alt:before { + content: "\f406"; } + +.fa-user-alt-slash:before { + content: "\f4fa"; } + +.fa-user-astronaut:before { + content: "\f4fb"; } + +.fa-user-check:before { + content: "\f4fc"; } + +.fa-user-circle:before { + content: "\f2bd"; } + +.fa-user-clock:before { + content: "\f4fd"; } + +.fa-user-cog:before { + content: "\f4fe"; } + +.fa-user-edit:before { + content: "\f4ff"; } + +.fa-user-friends:before { + content: "\f500"; } + +.fa-user-graduate:before { + content: "\f501"; } + +.fa-user-lock:before { + content: "\f502"; } + +.fa-user-md:before { + content: "\f0f0"; } + +.fa-user-minus:before { + content: "\f503"; } + +.fa-user-ninja:before { + content: "\f504"; } + +.fa-user-plus:before { + content: "\f234"; } + +.fa-user-secret:before { + content: "\f21b"; } + +.fa-user-shield:before { + content: "\f505"; } + +.fa-user-slash:before { + content: "\f506"; } + +.fa-user-tag:before { + content: "\f507"; } + +.fa-user-tie:before { + content: "\f508"; } + +.fa-user-times:before { + content: "\f235"; } + +.fa-users:before { + content: "\f0c0"; } + +.fa-users-cog:before { + content: "\f509"; } + +.fa-ussunnah:before { + content: "\f407"; } + +.fa-utensil-spoon:before { + content: "\f2e5"; } + +.fa-utensils:before { + content: "\f2e7"; } + +.fa-vaadin:before { + content: "\f408"; } + +.fa-vector-square:before { + content: "\f5cb"; } + +.fa-venus:before { + content: "\f221"; } + +.fa-venus-double:before { + content: "\f226"; } + +.fa-venus-mars:before { + content: "\f228"; } + +.fa-viacoin:before { + content: "\f237"; } + +.fa-viadeo:before { + content: "\f2a9"; } + +.fa-viadeo-square:before { + content: "\f2aa"; } + +.fa-vial:before { + content: "\f492"; } + +.fa-vials:before { + content: "\f493"; } + +.fa-viber:before { + content: "\f409"; } + +.fa-video:before { + content: "\f03d"; } + +.fa-video-slash:before { + content: "\f4e2"; } + +.fa-vimeo:before { + content: "\f40a"; } + +.fa-vimeo-square:before { + content: "\f194"; } + +.fa-vimeo-v:before { + content: "\f27d"; } + +.fa-vine:before { + content: "\f1ca"; } + +.fa-vk:before { + content: "\f189"; } + +.fa-vnv:before { + content: "\f40b"; } + +.fa-volleyball-ball:before { + content: "\f45f"; } + +.fa-volume-down:before { + content: "\f027"; } + +.fa-volume-off:before { + content: "\f026"; } + +.fa-volume-up:before { + content: "\f028"; } + +.fa-vuejs:before { + content: "\f41f"; } + +.fa-walking:before { + content: "\f554"; } + +.fa-wallet:before { + content: "\f555"; } + +.fa-warehouse:before { + content: "\f494"; } + +.fa-weebly:before { + content: "\f5cc"; } + +.fa-weibo:before { + content: "\f18a"; } + +.fa-weight:before { + content: "\f496"; } + +.fa-weight-hanging:before { + content: "\f5cd"; } + +.fa-weixin:before { + content: "\f1d7"; } + +.fa-whatsapp:before { + content: "\f232"; } + +.fa-whatsapp-square:before { + content: "\f40c"; } + +.fa-wheelchair:before { + content: "\f193"; } + +.fa-whmcs:before { + content: "\f40d"; } + +.fa-wifi:before { + content: "\f1eb"; } + +.fa-wikipedia-w:before { + content: "\f266"; } + +.fa-window-close:before { + content: "\f410"; } + +.fa-window-maximize:before { + content: "\f2d0"; } + +.fa-window-minimize:before { + content: "\f2d1"; } + +.fa-window-restore:before { + content: "\f2d2"; } + +.fa-windows:before { + content: "\f17a"; } + +.fa-wine-glass:before { + content: "\f4e3"; } + +.fa-wine-glass-alt:before { + content: "\f5ce"; } + +.fa-wix:before { + content: "\f5cf"; } + +.fa-wolf-pack-battalion:before { + content: "\f514"; } + +.fa-won-sign:before { + content: "\f159"; } + +.fa-wordpress:before { + content: "\f19a"; } + +.fa-wordpress-simple:before { + content: "\f411"; } + +.fa-wpbeginner:before { + content: "\f297"; } + +.fa-wpexplorer:before { + content: "\f2de"; } + +.fa-wpforms:before { + content: "\f298"; } + +.fa-wrench:before { + content: "\f0ad"; } + +.fa-x-ray:before { + content: "\f497"; } + +.fa-xbox:before { + content: "\f412"; } + +.fa-xing:before { + content: "\f168"; } + +.fa-xing-square:before { + content: "\f169"; } + +.fa-y-combinator:before { + content: "\f23b"; } + +.fa-yahoo:before { + content: "\f19e"; } + +.fa-yandex:before { + content: "\f413"; } + +.fa-yandex-international:before { + content: "\f414"; } + +.fa-yelp:before { + content: "\f1e9"; } + +.fa-yen-sign:before { + content: "\f157"; } + +.fa-yoast:before { + content: "\f2b1"; } + +.fa-youtube:before { + content: "\f167"; } + +.fa-youtube-square:before { + content: "\f431"; } + +.sr-only { + border: 0; + clip: rect(0, 0, 0, 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; } + +.sr-only-focusable:active, .sr-only-focusable:focus { + clip: auto; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/fontawesome.min.css b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/fontawesome.min.css new file mode 100644 index 0000000000..66c9583c25 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/fontawesome.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:a 2s infinite linear}.fa-pulse{animation:a 1s infinite steps(8)}@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-balance-scale:before{content:"\f24e"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blind:before{content:"\f29d"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-open:before{content:"\f518"}.fa-bookmark:before{content:"\f02e"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-certificate:before{content:"\f0a3"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-concierge-bell:before{content:"\f562"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-credit-card:before{content:"\f09d"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-deviantart:before{content:"\f1bd"}.fa-diagnoses:before{content:"\f470"}.fa-dice:before{content:"\f522"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-gift:before{content:"\f06b"}.fa-git:before{content:"\f1d3"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hashtag:before{content:"\f292"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-houzz:before{content:"\f27c"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-internet-explorer:before{content:"\f26b"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mercury:before{content:"\f223"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-motorcycle:before{content:"\f21c"}.fa-mouse-pointer:before{content:"\f245"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-old-republic:before{content:"\f510"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-people-carry:before{content:"\f4ce"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poo:before{content:"\f2fe"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-r-project:before{content:"\f4f7"}.fa-random:before{content:"\f074"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-rendact:before{content:"\f3e4"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-sass:before{content:"\f41e"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-search:before{content:"\f002"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skull:before{content:"\f54c"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowflake:before{content:"\f2dc"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toolbox:before{content:"\f552"}.fa-tooth:before{content:"\f5c9"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-train:before{content:"\f238"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-moving:before{content:"\f4df"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/regular.css b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/regular.css new file mode 100644 index 0000000000..1882cf76f5 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/regular.css @@ -0,0 +1,14 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 400; + src: url("../webfonts/fa-regular-400.eot"); + src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.woff") format("woff"), url("../webfonts/fa-regular-400.ttf") format("truetype"), url("../webfonts/fa-regular-400.svg#fontawesome") format("svg"); } + +.far { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/regular.min.css b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/regular.min.css new file mode 100644 index 0000000000..da8fc5a803 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/regular.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-family:"Font Awesome 5 Free";font-weight:400} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/solid.css b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/solid.css new file mode 100644 index 0000000000..f08f73bc84 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/solid.css @@ -0,0 +1,15 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 900; + src: url("../webfonts/fa-solid-900.eot"); + src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg"); } + +.fa, +.fas { + font-family: 'Font Awesome 5 Free'; + font-weight: 900; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/solid.min.css b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/solid.min.css new file mode 100644 index 0000000000..89ba2f45db --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/solid.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas{font-family:"Font Awesome 5 Free";font-weight:900} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/v4-shims.css b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/v4-shims.css new file mode 100644 index 0000000000..cd8822b6c3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/v4-shims.css @@ -0,0 +1,2170 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa.fa-glass:before { + content: "\f000"; } + +.fa.fa-meetup { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-star-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-star-o:before { + content: "\f005"; } + +.fa.fa-remove:before { + content: "\f00d"; } + +.fa.fa-close:before { + content: "\f00d"; } + +.fa.fa-gear:before { + content: "\f013"; } + +.fa.fa-trash-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-trash-o:before { + content: "\f2ed"; } + +.fa.fa-file-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-o:before { + content: "\f15b"; } + +.fa.fa-clock-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-clock-o:before { + content: "\f017"; } + +.fa.fa-arrow-circle-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-arrow-circle-o-down:before { + content: "\f358"; } + +.fa.fa-arrow-circle-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-arrow-circle-o-up:before { + content: "\f35b"; } + +.fa.fa-play-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-play-circle-o:before { + content: "\f144"; } + +.fa.fa-repeat:before { + content: "\f01e"; } + +.fa.fa-rotate-right:before { + content: "\f01e"; } + +.fa.fa-refresh:before { + content: "\f021"; } + +.fa.fa-list-alt { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-dedent:before { + content: "\f03b"; } + +.fa.fa-video-camera:before { + content: "\f03d"; } + +.fa.fa-picture-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-picture-o:before { + content: "\f03e"; } + +.fa.fa-photo { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-photo:before { + content: "\f03e"; } + +.fa.fa-image { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-image:before { + content: "\f03e"; } + +.fa.fa-pencil:before { + content: "\f303"; } + +.fa.fa-map-marker:before { + content: "\f3c5"; } + +.fa.fa-pencil-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-pencil-square-o:before { + content: "\f044"; } + +.fa.fa-share-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-share-square-o:before { + content: "\f14d"; } + +.fa.fa-check-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-check-square-o:before { + content: "\f14a"; } + +.fa.fa-arrows:before { + content: "\f0b2"; } + +.fa.fa-times-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-times-circle-o:before { + content: "\f057"; } + +.fa.fa-check-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-check-circle-o:before { + content: "\f058"; } + +.fa.fa-mail-forward:before { + content: "\f064"; } + +.fa.fa-eye { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-eye-slash { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-warning:before { + content: "\f071"; } + +.fa.fa-calendar:before { + content: "\f073"; } + +.fa.fa-arrows-v:before { + content: "\f338"; } + +.fa.fa-arrows-h:before { + content: "\f337"; } + +.fa.fa-bar-chart { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-bar-chart:before { + content: "\f080"; } + +.fa.fa-bar-chart-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-bar-chart-o:before { + content: "\f080"; } + +.fa.fa-twitter-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-facebook-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-gears:before { + content: "\f085"; } + +.fa.fa-thumbs-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-thumbs-o-up:before { + content: "\f164"; } + +.fa.fa-thumbs-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-thumbs-o-down:before { + content: "\f165"; } + +.fa.fa-heart-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-heart-o:before { + content: "\f004"; } + +.fa.fa-sign-out:before { + content: "\f2f5"; } + +.fa.fa-linkedin-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-linkedin-square:before { + content: "\f08c"; } + +.fa.fa-thumb-tack:before { + content: "\f08d"; } + +.fa.fa-external-link:before { + content: "\f35d"; } + +.fa.fa-sign-in:before { + content: "\f2f6"; } + +.fa.fa-github-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-lemon-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-lemon-o:before { + content: "\f094"; } + +.fa.fa-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-square-o:before { + content: "\f0c8"; } + +.fa.fa-bookmark-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-bookmark-o:before { + content: "\f02e"; } + +.fa.fa-twitter { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-facebook { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-facebook:before { + content: "\f39e"; } + +.fa.fa-facebook-f { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-facebook-f:before { + content: "\f39e"; } + +.fa.fa-github { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-credit-card { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-feed:before { + content: "\f09e"; } + +.fa.fa-hdd-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hdd-o:before { + content: "\f0a0"; } + +.fa.fa-hand-o-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-o-right:before { + content: "\f0a4"; } + +.fa.fa-hand-o-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-o-left:before { + content: "\f0a5"; } + +.fa.fa-hand-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-o-up:before { + content: "\f0a6"; } + +.fa.fa-hand-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-o-down:before { + content: "\f0a7"; } + +.fa.fa-arrows-alt:before { + content: "\f31e"; } + +.fa.fa-group:before { + content: "\f0c0"; } + +.fa.fa-chain:before { + content: "\f0c1"; } + +.fa.fa-scissors:before { + content: "\f0c4"; } + +.fa.fa-files-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-files-o:before { + content: "\f0c5"; } + +.fa.fa-floppy-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-floppy-o:before { + content: "\f0c7"; } + +.fa.fa-navicon:before { + content: "\f0c9"; } + +.fa.fa-reorder:before { + content: "\f0c9"; } + +.fa.fa-pinterest { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-pinterest-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-google-plus-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-google-plus { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-google-plus:before { + content: "\f0d5"; } + +.fa.fa-money { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-money:before { + content: "\f3d1"; } + +.fa.fa-unsorted:before { + content: "\f0dc"; } + +.fa.fa-sort-desc:before { + content: "\f0dd"; } + +.fa.fa-sort-asc:before { + content: "\f0de"; } + +.fa.fa-linkedin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-linkedin:before { + content: "\f0e1"; } + +.fa.fa-rotate-left:before { + content: "\f0e2"; } + +.fa.fa-legal:before { + content: "\f0e3"; } + +.fa.fa-tachometer:before { + content: "\f3fd"; } + +.fa.fa-dashboard:before { + content: "\f3fd"; } + +.fa.fa-comment-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-comment-o:before { + content: "\f075"; } + +.fa.fa-comments-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-comments-o:before { + content: "\f086"; } + +.fa.fa-flash:before { + content: "\f0e7"; } + +.fa.fa-clipboard { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-paste { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-paste:before { + content: "\f328"; } + +.fa.fa-lightbulb-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-lightbulb-o:before { + content: "\f0eb"; } + +.fa.fa-exchange:before { + content: "\f362"; } + +.fa.fa-cloud-download:before { + content: "\f381"; } + +.fa.fa-cloud-upload:before { + content: "\f382"; } + +.fa.fa-bell-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-bell-o:before { + content: "\f0f3"; } + +.fa.fa-cutlery:before { + content: "\f2e7"; } + +.fa.fa-file-text-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-text-o:before { + content: "\f15c"; } + +.fa.fa-building-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-building-o:before { + content: "\f1ad"; } + +.fa.fa-hospital-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hospital-o:before { + content: "\f0f8"; } + +.fa.fa-tablet:before { + content: "\f3fa"; } + +.fa.fa-mobile:before { + content: "\f3cd"; } + +.fa.fa-mobile-phone:before { + content: "\f3cd"; } + +.fa.fa-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-circle-o:before { + content: "\f111"; } + +.fa.fa-mail-reply:before { + content: "\f3e5"; } + +.fa.fa-github-alt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-folder-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-folder-o:before { + content: "\f07b"; } + +.fa.fa-folder-open-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-folder-open-o:before { + content: "\f07c"; } + +.fa.fa-smile-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-smile-o:before { + content: "\f118"; } + +.fa.fa-frown-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-frown-o:before { + content: "\f119"; } + +.fa.fa-meh-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-meh-o:before { + content: "\f11a"; } + +.fa.fa-keyboard-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-keyboard-o:before { + content: "\f11c"; } + +.fa.fa-flag-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-flag-o:before { + content: "\f024"; } + +.fa.fa-mail-reply-all:before { + content: "\f122"; } + +.fa.fa-star-half-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-star-half-o:before { + content: "\f089"; } + +.fa.fa-star-half-empty { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-star-half-empty:before { + content: "\f089"; } + +.fa.fa-star-half-full { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-star-half-full:before { + content: "\f089"; } + +.fa.fa-code-fork:before { + content: "\f126"; } + +.fa.fa-chain-broken:before { + content: "\f127"; } + +.fa.fa-shield:before { + content: "\f3ed"; } + +.fa.fa-calendar-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-calendar-o:before { + content: "\f133"; } + +.fa.fa-maxcdn { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-html5 { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-css3 { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-ticket:before { + content: "\f3ff"; } + +.fa.fa-minus-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-minus-square-o:before { + content: "\f146"; } + +.fa.fa-level-up:before { + content: "\f3bf"; } + +.fa.fa-level-down:before { + content: "\f3be"; } + +.fa.fa-pencil-square:before { + content: "\f14b"; } + +.fa.fa-external-link-square:before { + content: "\f360"; } + +.fa.fa-compass { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-caret-square-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-caret-square-o-down:before { + content: "\f150"; } + +.fa.fa-toggle-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-toggle-down:before { + content: "\f150"; } + +.fa.fa-caret-square-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-caret-square-o-up:before { + content: "\f151"; } + +.fa.fa-toggle-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-toggle-up:before { + content: "\f151"; } + +.fa.fa-caret-square-o-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-caret-square-o-right:before { + content: "\f152"; } + +.fa.fa-toggle-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-toggle-right:before { + content: "\f152"; } + +.fa.fa-eur:before { + content: "\f153"; } + +.fa.fa-euro:before { + content: "\f153"; } + +.fa.fa-gbp:before { + content: "\f154"; } + +.fa.fa-usd:before { + content: "\f155"; } + +.fa.fa-dollar:before { + content: "\f155"; } + +.fa.fa-inr:before { + content: "\f156"; } + +.fa.fa-rupee:before { + content: "\f156"; } + +.fa.fa-jpy:before { + content: "\f157"; } + +.fa.fa-cny:before { + content: "\f157"; } + +.fa.fa-rmb:before { + content: "\f157"; } + +.fa.fa-yen:before { + content: "\f157"; } + +.fa.fa-rub:before { + content: "\f158"; } + +.fa.fa-ruble:before { + content: "\f158"; } + +.fa.fa-rouble:before { + content: "\f158"; } + +.fa.fa-krw:before { + content: "\f159"; } + +.fa.fa-won:before { + content: "\f159"; } + +.fa.fa-btc { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-bitcoin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-bitcoin:before { + content: "\f15a"; } + +.fa.fa-file-text:before { + content: "\f15c"; } + +.fa.fa-sort-alpha-asc:before { + content: "\f15d"; } + +.fa.fa-sort-alpha-desc:before { + content: "\f15e"; } + +.fa.fa-sort-amount-asc:before { + content: "\f160"; } + +.fa.fa-sort-amount-desc:before { + content: "\f161"; } + +.fa.fa-sort-numeric-asc:before { + content: "\f162"; } + +.fa.fa-sort-numeric-desc:before { + content: "\f163"; } + +.fa.fa-youtube-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-youtube { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-xing { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-xing-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-youtube-play { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-youtube-play:before { + content: "\f167"; } + +.fa.fa-dropbox { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-stack-overflow { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-instagram { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-flickr { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-adn { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-bitbucket { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-bitbucket-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-bitbucket-square:before { + content: "\f171"; } + +.fa.fa-tumblr { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-tumblr-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-long-arrow-down:before { + content: "\f309"; } + +.fa.fa-long-arrow-up:before { + content: "\f30c"; } + +.fa.fa-long-arrow-left:before { + content: "\f30a"; } + +.fa.fa-long-arrow-right:before { + content: "\f30b"; } + +.fa.fa-apple { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-windows { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-android { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-linux { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-dribbble { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-skype { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-foursquare { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-trello { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-gratipay { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-gittip { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-gittip:before { + content: "\f184"; } + +.fa.fa-sun-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-sun-o:before { + content: "\f185"; } + +.fa.fa-moon-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-moon-o:before { + content: "\f186"; } + +.fa.fa-vk { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-weibo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-renren { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-pagelines { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-stack-exchange { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-arrow-circle-o-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-arrow-circle-o-right:before { + content: "\f35a"; } + +.fa.fa-arrow-circle-o-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-arrow-circle-o-left:before { + content: "\f359"; } + +.fa.fa-caret-square-o-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-caret-square-o-left:before { + content: "\f191"; } + +.fa.fa-toggle-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-toggle-left:before { + content: "\f191"; } + +.fa.fa-dot-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-dot-circle-o:before { + content: "\f192"; } + +.fa.fa-vimeo-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-try:before { + content: "\f195"; } + +.fa.fa-turkish-lira:before { + content: "\f195"; } + +.fa.fa-plus-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-plus-square-o:before { + content: "\f0fe"; } + +.fa.fa-slack { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wordpress { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-openid { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-institution:before { + content: "\f19c"; } + +.fa.fa-bank:before { + content: "\f19c"; } + +.fa.fa-mortar-board:before { + content: "\f19d"; } + +.fa.fa-yahoo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-google { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-reddit { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-reddit-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-stumbleupon-circle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-stumbleupon { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-delicious { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-digg { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-pied-piper-pp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-pied-piper-alt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-drupal { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-joomla { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-spoon:before { + content: "\f2e5"; } + +.fa.fa-behance { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-behance-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-steam { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-steam-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-automobile:before { + content: "\f1b9"; } + +.fa.fa-cab:before { + content: "\f1ba"; } + +.fa.fa-envelope-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-envelope-o:before { + content: "\f0e0"; } + +.fa.fa-deviantart { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-soundcloud { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-file-pdf-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-pdf-o:before { + content: "\f1c1"; } + +.fa.fa-file-word-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-word-o:before { + content: "\f1c2"; } + +.fa.fa-file-excel-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-excel-o:before { + content: "\f1c3"; } + +.fa.fa-file-powerpoint-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-powerpoint-o:before { + content: "\f1c4"; } + +.fa.fa-file-image-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-image-o:before { + content: "\f1c5"; } + +.fa.fa-file-photo-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-photo-o:before { + content: "\f1c5"; } + +.fa.fa-file-picture-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-picture-o:before { + content: "\f1c5"; } + +.fa.fa-file-archive-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-archive-o:before { + content: "\f1c6"; } + +.fa.fa-file-zip-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-zip-o:before { + content: "\f1c6"; } + +.fa.fa-file-audio-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-audio-o:before { + content: "\f1c7"; } + +.fa.fa-file-sound-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-sound-o:before { + content: "\f1c7"; } + +.fa.fa-file-video-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-video-o:before { + content: "\f1c8"; } + +.fa.fa-file-movie-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-movie-o:before { + content: "\f1c8"; } + +.fa.fa-file-code-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-code-o:before { + content: "\f1c9"; } + +.fa.fa-vine { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-codepen { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-jsfiddle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-life-ring { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-life-bouy { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-life-bouy:before { + content: "\f1cd"; } + +.fa.fa-life-buoy { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-life-buoy:before { + content: "\f1cd"; } + +.fa.fa-life-saver { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-life-saver:before { + content: "\f1cd"; } + +.fa.fa-support { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-support:before { + content: "\f1cd"; } + +.fa.fa-circle-o-notch:before { + content: "\f1ce"; } + +.fa.fa-rebel { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-ra { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-ra:before { + content: "\f1d0"; } + +.fa.fa-resistance { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-resistance:before { + content: "\f1d0"; } + +.fa.fa-empire { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-ge { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-ge:before { + content: "\f1d1"; } + +.fa.fa-git-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-git { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-hacker-news { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-y-combinator-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-y-combinator-square:before { + content: "\f1d4"; } + +.fa.fa-yc-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-yc-square:before { + content: "\f1d4"; } + +.fa.fa-tencent-weibo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-qq { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-weixin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wechat { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wechat:before { + content: "\f1d7"; } + +.fa.fa-send:before { + content: "\f1d8"; } + +.fa.fa-paper-plane-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-paper-plane-o:before { + content: "\f1d8"; } + +.fa.fa-send-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-send-o:before { + content: "\f1d8"; } + +.fa.fa-circle-thin { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-circle-thin:before { + content: "\f111"; } + +.fa.fa-header:before { + content: "\f1dc"; } + +.fa.fa-sliders:before { + content: "\f1de"; } + +.fa.fa-futbol-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-futbol-o:before { + content: "\f1e3"; } + +.fa.fa-soccer-ball-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-soccer-ball-o:before { + content: "\f1e3"; } + +.fa.fa-slideshare { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-twitch { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-yelp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-newspaper-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-newspaper-o:before { + content: "\f1ea"; } + +.fa.fa-paypal { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-google-wallet { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-cc-visa { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-cc-mastercard { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-cc-discover { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-cc-amex { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-cc-paypal { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-cc-stripe { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-bell-slash-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-bell-slash-o:before { + content: "\f1f6"; } + +.fa.fa-trash:before { + content: "\f2ed"; } + +.fa.fa-copyright { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-eyedropper:before { + content: "\f1fb"; } + +.fa.fa-area-chart:before { + content: "\f1fe"; } + +.fa.fa-pie-chart:before { + content: "\f200"; } + +.fa.fa-line-chart:before { + content: "\f201"; } + +.fa.fa-lastfm { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-lastfm-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-ioxhost { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-angellist { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-cc { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-cc:before { + content: "\f20a"; } + +.fa.fa-ils:before { + content: "\f20b"; } + +.fa.fa-shekel:before { + content: "\f20b"; } + +.fa.fa-sheqel:before { + content: "\f20b"; } + +.fa.fa-meanpath { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-meanpath:before { + content: "\f2b4"; } + +.fa.fa-buysellads { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-connectdevelop { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-dashcube { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-forumbee { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-leanpub { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-sellsy { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-shirtsinbulk { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-simplybuilt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-skyatlas { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-diamond { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-diamond:before { + content: "\f3a5"; } + +.fa.fa-intersex:before { + content: "\f224"; } + +.fa.fa-facebook-official { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-facebook-official:before { + content: "\f09a"; } + +.fa.fa-pinterest-p { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-whatsapp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-hotel:before { + content: "\f236"; } + +.fa.fa-viacoin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-medium { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-y-combinator { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-yc { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-yc:before { + content: "\f23b"; } + +.fa.fa-optin-monster { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-opencart { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-expeditedssl { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-battery-4:before { + content: "\f240"; } + +.fa.fa-battery:before { + content: "\f240"; } + +.fa.fa-battery-3:before { + content: "\f241"; } + +.fa.fa-battery-2:before { + content: "\f242"; } + +.fa.fa-battery-1:before { + content: "\f243"; } + +.fa.fa-battery-0:before { + content: "\f244"; } + +.fa.fa-object-group { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-object-ungroup { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-sticky-note-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-sticky-note-o:before { + content: "\f249"; } + +.fa.fa-cc-jcb { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-cc-diners-club { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-clone { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hourglass-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hourglass-o:before { + content: "\f254"; } + +.fa.fa-hourglass-1:before { + content: "\f251"; } + +.fa.fa-hourglass-2:before { + content: "\f252"; } + +.fa.fa-hourglass-3:before { + content: "\f253"; } + +.fa.fa-hand-rock-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-rock-o:before { + content: "\f255"; } + +.fa.fa-hand-grab-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-grab-o:before { + content: "\f255"; } + +.fa.fa-hand-paper-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-paper-o:before { + content: "\f256"; } + +.fa.fa-hand-stop-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-stop-o:before { + content: "\f256"; } + +.fa.fa-hand-scissors-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-scissors-o:before { + content: "\f257"; } + +.fa.fa-hand-lizard-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-lizard-o:before { + content: "\f258"; } + +.fa.fa-hand-spock-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-spock-o:before { + content: "\f259"; } + +.fa.fa-hand-pointer-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-pointer-o:before { + content: "\f25a"; } + +.fa.fa-hand-peace-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-peace-o:before { + content: "\f25b"; } + +.fa.fa-registered { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-creative-commons { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-gg { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-gg-circle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-tripadvisor { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-odnoklassniki { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-odnoklassniki-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-get-pocket { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wikipedia-w { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-safari { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-chrome { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-firefox { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-opera { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-internet-explorer { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-television:before { + content: "\f26c"; } + +.fa.fa-contao { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-500px { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-amazon { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-calendar-plus-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-calendar-plus-o:before { + content: "\f271"; } + +.fa.fa-calendar-minus-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-calendar-minus-o:before { + content: "\f272"; } + +.fa.fa-calendar-times-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-calendar-times-o:before { + content: "\f273"; } + +.fa.fa-calendar-check-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-calendar-check-o:before { + content: "\f274"; } + +.fa.fa-map-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-map-o:before { + content: "\f279"; } + +.fa.fa-commenting { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-commenting:before { + content: "\f4ad"; } + +.fa.fa-commenting-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-commenting-o:before { + content: "\f4ad"; } + +.fa.fa-houzz { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-vimeo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-vimeo:before { + content: "\f27d"; } + +.fa.fa-black-tie { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-fonticons { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-reddit-alien { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-edge { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-credit-card-alt:before { + content: "\f09d"; } + +.fa.fa-codiepie { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-modx { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-fort-awesome { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-usb { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-product-hunt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-mixcloud { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-scribd { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-pause-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-pause-circle-o:before { + content: "\f28b"; } + +.fa.fa-stop-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-stop-circle-o:before { + content: "\f28d"; } + +.fa.fa-bluetooth { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-bluetooth-b { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-gitlab { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wpbeginner { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wpforms { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-envira { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wheelchair-alt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wheelchair-alt:before { + content: "\f368"; } + +.fa.fa-question-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-question-circle-o:before { + content: "\f059"; } + +.fa.fa-volume-control-phone:before { + content: "\f2a0"; } + +.fa.fa-asl-interpreting:before { + content: "\f2a3"; } + +.fa.fa-deafness:before { + content: "\f2a4"; } + +.fa.fa-hard-of-hearing:before { + content: "\f2a4"; } + +.fa.fa-glide { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-glide-g { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-signing:before { + content: "\f2a7"; } + +.fa.fa-viadeo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-viadeo-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-snapchat { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-snapchat-ghost { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-snapchat-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-pied-piper { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-first-order { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-yoast { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-themeisle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-google-plus-official { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-google-plus-official:before { + content: "\f2b3"; } + +.fa.fa-google-plus-circle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-google-plus-circle:before { + content: "\f2b3"; } + +.fa.fa-font-awesome { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-fa { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-fa:before { + content: "\f2b4"; } + +.fa.fa-handshake-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-handshake-o:before { + content: "\f2b5"; } + +.fa.fa-envelope-open-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-envelope-open-o:before { + content: "\f2b6"; } + +.fa.fa-linode { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-address-book-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-address-book-o:before { + content: "\f2b9"; } + +.fa.fa-vcard:before { + content: "\f2bb"; } + +.fa.fa-address-card-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-address-card-o:before { + content: "\f2bb"; } + +.fa.fa-vcard-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-vcard-o:before { + content: "\f2bb"; } + +.fa.fa-user-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-user-circle-o:before { + content: "\f2bd"; } + +.fa.fa-user-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-user-o:before { + content: "\f007"; } + +.fa.fa-id-badge { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-drivers-license:before { + content: "\f2c2"; } + +.fa.fa-id-card-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-id-card-o:before { + content: "\f2c2"; } + +.fa.fa-drivers-license-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-drivers-license-o:before { + content: "\f2c2"; } + +.fa.fa-quora { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-free-code-camp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-telegram { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-thermometer-4:before { + content: "\f2c7"; } + +.fa.fa-thermometer:before { + content: "\f2c7"; } + +.fa.fa-thermometer-3:before { + content: "\f2c8"; } + +.fa.fa-thermometer-2:before { + content: "\f2c9"; } + +.fa.fa-thermometer-1:before { + content: "\f2ca"; } + +.fa.fa-thermometer-0:before { + content: "\f2cb"; } + +.fa.fa-bathtub:before { + content: "\f2cd"; } + +.fa.fa-s15:before { + content: "\f2cd"; } + +.fa.fa-window-maximize { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-window-restore { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-times-rectangle:before { + content: "\f410"; } + +.fa.fa-window-close-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-window-close-o:before { + content: "\f410"; } + +.fa.fa-times-rectangle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-times-rectangle-o:before { + content: "\f410"; } + +.fa.fa-bandcamp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-grav { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-etsy { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-imdb { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-ravelry { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-eercast { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-eercast:before { + content: "\f2da"; } + +.fa.fa-snowflake-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-snowflake-o:before { + content: "\f2dc"; } + +.fa.fa-superpowers { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wpexplorer { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-spotify { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/v4-shims.min.css b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/v4-shims.min.css new file mode 100644 index 0000000000..cd5df33b2b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/css/v4-shims.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa.fa-glass:before{content:"\f000"}.fa.fa-meetup{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-star-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-o:before{content:"\f005"}.fa.fa-close:before,.fa.fa-remove:before{content:"\f00d"}.fa.fa-gear:before{content:"\f013"}.fa.fa-trash-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-trash-o:before{content:"\f2ed"}.fa.fa-file-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-o:before{content:"\f15b"}.fa.fa-clock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-clock-o:before{content:"\f017"}.fa.fa-arrow-circle-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-down:before{content:"\f358"}.fa.fa-arrow-circle-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-up:before{content:"\f35b"}.fa.fa-play-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-play-circle-o:before{content:"\f144"}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:"\f01e"}.fa.fa-refresh:before{content:"\f021"}.fa.fa-list-alt{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-dedent:before{content:"\f03b"}.fa.fa-video-camera:before{content:"\f03d"}.fa.fa-picture-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-picture-o:before{content:"\f03e"}.fa.fa-photo{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-photo:before{content:"\f03e"}.fa.fa-image{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-image:before{content:"\f03e"}.fa.fa-pencil:before{content:"\f303"}.fa.fa-map-marker:before{content:"\f3c5"}.fa.fa-pencil-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-pencil-square-o:before{content:"\f044"}.fa.fa-share-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-share-square-o:before{content:"\f14d"}.fa.fa-check-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-check-square-o:before{content:"\f14a"}.fa.fa-arrows:before{content:"\f0b2"}.fa.fa-times-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-circle-o:before{content:"\f057"}.fa.fa-check-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-check-circle-o:before{content:"\f058"}.fa.fa-mail-forward:before{content:"\f064"}.fa.fa-eye,.fa.fa-eye-slash{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-warning:before{content:"\f071"}.fa.fa-calendar:before{content:"\f073"}.fa.fa-arrows-v:before{content:"\f338"}.fa.fa-arrows-h:before{content:"\f337"}.fa.fa-bar-chart{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bar-chart:before{content:"\f080"}.fa.fa-bar-chart-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bar-chart-o:before{content:"\f080"}.fa.fa-facebook-square,.fa.fa-twitter-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gears:before{content:"\f085"}.fa.fa-thumbs-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-thumbs-o-up:before{content:"\f164"}.fa.fa-thumbs-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-thumbs-o-down:before{content:"\f165"}.fa.fa-heart-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-heart-o:before{content:"\f004"}.fa.fa-sign-out:before{content:"\f2f5"}.fa.fa-linkedin-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin-square:before{content:"\f08c"}.fa.fa-thumb-tack:before{content:"\f08d"}.fa.fa-external-link:before{content:"\f35d"}.fa.fa-sign-in:before{content:"\f2f6"}.fa.fa-github-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-lemon-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-lemon-o:before{content:"\f094"}.fa.fa-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-square-o:before{content:"\f0c8"}.fa.fa-bookmark-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bookmark-o:before{content:"\f02e"}.fa.fa-facebook,.fa.fa-twitter{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook:before{content:"\f39e"}.fa.fa-facebook-f{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-f:before{content:"\f39e"}.fa.fa-github{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-feed:before{content:"\f09e"}.fa.fa-hdd-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hdd-o:before{content:"\f0a0"}.fa.fa-hand-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-right:before{content:"\f0a4"}.fa.fa-hand-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-left:before{content:"\f0a5"}.fa.fa-hand-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-up:before{content:"\f0a6"}.fa.fa-hand-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-down:before{content:"\f0a7"}.fa.fa-arrows-alt:before{content:"\f31e"}.fa.fa-group:before{content:"\f0c0"}.fa.fa-chain:before{content:"\f0c1"}.fa.fa-scissors:before{content:"\f0c4"}.fa.fa-files-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-files-o:before{content:"\f0c5"}.fa.fa-floppy-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-floppy-o:before{content:"\f0c7"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:"\f0c9"}.fa.fa-google-plus,.fa.fa-google-plus-square,.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus:before{content:"\f0d5"}.fa.fa-money{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-money:before{content:"\f3d1"}.fa.fa-unsorted:before{content:"\f0dc"}.fa.fa-sort-desc:before{content:"\f0dd"}.fa.fa-sort-asc:before{content:"\f0de"}.fa.fa-linkedin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin:before{content:"\f0e1"}.fa.fa-rotate-left:before{content:"\f0e2"}.fa.fa-legal:before{content:"\f0e3"}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:"\f3fd"}.fa.fa-comment-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-comment-o:before{content:"\f075"}.fa.fa-comments-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-comments-o:before{content:"\f086"}.fa.fa-flash:before{content:"\f0e7"}.fa.fa-clipboard,.fa.fa-paste{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-paste:before{content:"\f328"}.fa.fa-lightbulb-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-lightbulb-o:before{content:"\f0eb"}.fa.fa-exchange:before{content:"\f362"}.fa.fa-cloud-download:before{content:"\f381"}.fa.fa-cloud-upload:before{content:"\f382"}.fa.fa-bell-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bell-o:before{content:"\f0f3"}.fa.fa-cutlery:before{content:"\f2e7"}.fa.fa-file-text-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-text-o:before{content:"\f15c"}.fa.fa-building-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-building-o:before{content:"\f1ad"}.fa.fa-hospital-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hospital-o:before{content:"\f0f8"}.fa.fa-tablet:before{content:"\f3fa"}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:"\f3cd"}.fa.fa-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-circle-o:before{content:"\f111"}.fa.fa-mail-reply:before{content:"\f3e5"}.fa.fa-github-alt{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-folder-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-folder-o:before{content:"\f07b"}.fa.fa-folder-open-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-folder-open-o:before{content:"\f07c"}.fa.fa-smile-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-smile-o:before{content:"\f118"}.fa.fa-frown-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-frown-o:before{content:"\f119"}.fa.fa-meh-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-meh-o:before{content:"\f11a"}.fa.fa-keyboard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-keyboard-o:before{content:"\f11c"}.fa.fa-flag-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-flag-o:before{content:"\f024"}.fa.fa-mail-reply-all:before{content:"\f122"}.fa.fa-star-half-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-o:before{content:"\f089"}.fa.fa-star-half-empty{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-empty:before{content:"\f089"}.fa.fa-star-half-full{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-full:before{content:"\f089"}.fa.fa-code-fork:before{content:"\f126"}.fa.fa-chain-broken:before{content:"\f127"}.fa.fa-shield:before{content:"\f3ed"}.fa.fa-calendar-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-o:before{content:"\f133"}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ticket:before{content:"\f3ff"}.fa.fa-minus-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-minus-square-o:before{content:"\f146"}.fa.fa-level-up:before{content:"\f3bf"}.fa.fa-level-down:before{content:"\f3be"}.fa.fa-pencil-square:before{content:"\f14b"}.fa.fa-external-link-square:before{content:"\f360"}.fa.fa-compass{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-down:before{content:"\f150"}.fa.fa-toggle-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-down:before{content:"\f150"}.fa.fa-caret-square-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-up:before{content:"\f151"}.fa.fa-toggle-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-up:before{content:"\f151"}.fa.fa-caret-square-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-right:before{content:"\f152"}.fa.fa-toggle-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-right:before{content:"\f152"}.fa.fa-eur:before,.fa.fa-euro:before{content:"\f153"}.fa.fa-gbp:before{content:"\f154"}.fa.fa-dollar:before,.fa.fa-usd:before{content:"\f155"}.fa.fa-inr:before,.fa.fa-rupee:before{content:"\f156"}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:"\f157"}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:"\f158"}.fa.fa-krw:before,.fa.fa-won:before{content:"\f159"}.fa.fa-bitcoin,.fa.fa-btc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitcoin:before{content:"\f15a"}.fa.fa-file-text:before{content:"\f15c"}.fa.fa-sort-alpha-asc:before{content:"\f15d"}.fa.fa-sort-alpha-desc:before{content:"\f15e"}.fa.fa-sort-amount-asc:before{content:"\f160"}.fa.fa-sort-amount-desc:before{content:"\f161"}.fa.fa-sort-numeric-asc:before{content:"\f162"}.fa.fa-sort-numeric-desc:before{content:"\f163"}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube,.fa.fa-youtube-play,.fa.fa-youtube-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-youtube-play:before{content:"\f167"}.fa.fa-adn,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-dropbox,.fa.fa-flickr,.fa.fa-instagram,.fa.fa-stack-overflow{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitbucket-square:before{content:"\f171"}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-long-arrow-down:before{content:"\f309"}.fa.fa-long-arrow-up:before{content:"\f30c"}.fa.fa-long-arrow-left:before{content:"\f30a"}.fa.fa-long-arrow-right:before{content:"\f30b"}.fa.fa-android,.fa.fa-apple,.fa.fa-dribbble,.fa.fa-foursquare,.fa.fa-gittip,.fa.fa-gratipay,.fa.fa-linux,.fa.fa-skype,.fa.fa-trello,.fa.fa-windows{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gittip:before{content:"\f184"}.fa.fa-sun-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-sun-o:before{content:"\f185"}.fa.fa-moon-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-moon-o:before{content:"\f186"}.fa.fa-pagelines,.fa.fa-renren,.fa.fa-stack-exchange,.fa.fa-vk,.fa.fa-weibo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-arrow-circle-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-right:before{content:"\f35a"}.fa.fa-arrow-circle-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-left:before{content:"\f359"}.fa.fa-caret-square-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-left:before{content:"\f191"}.fa.fa-toggle-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-left:before{content:"\f191"}.fa.fa-dot-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-dot-circle-o:before{content:"\f192"}.fa.fa-vimeo-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:"\f195"}.fa.fa-plus-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-plus-square-o:before{content:"\f0fe"}.fa.fa-openid,.fa.fa-slack,.fa.fa-wordpress{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:"\f19c"}.fa.fa-mortar-board:before{content:"\f19d"}.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-google,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle,.fa.fa-yahoo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-spoon:before{content:"\f2e5"}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-steam,.fa.fa-steam-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-automobile:before{content:"\f1b9"}.fa.fa-cab:before{content:"\f1ba"}.fa.fa-envelope-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-envelope-o:before{content:"\f0e0"}.fa.fa-deviantart,.fa.fa-soundcloud{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-file-pdf-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-pdf-o:before{content:"\f1c1"}.fa.fa-file-word-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-word-o:before{content:"\f1c2"}.fa.fa-file-excel-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-excel-o:before{content:"\f1c3"}.fa.fa-file-powerpoint-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-powerpoint-o:before{content:"\f1c4"}.fa.fa-file-image-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-image-o:before{content:"\f1c5"}.fa.fa-file-photo-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-photo-o:before{content:"\f1c5"}.fa.fa-file-picture-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-picture-o:before{content:"\f1c5"}.fa.fa-file-archive-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-archive-o:before{content:"\f1c6"}.fa.fa-file-zip-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-zip-o:before{content:"\f1c6"}.fa.fa-file-audio-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-audio-o:before{content:"\f1c7"}.fa.fa-file-sound-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-sound-o:before{content:"\f1c7"}.fa.fa-file-video-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-video-o:before{content:"\f1c8"}.fa.fa-file-movie-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-movie-o:before{content:"\f1c8"}.fa.fa-file-code-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-code-o:before{content:"\f1c9"}.fa.fa-codepen,.fa.fa-jsfiddle,.fa.fa-vine{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-life-bouy,.fa.fa-life-ring{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-bouy:before{content:"\f1cd"}.fa.fa-life-buoy{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-buoy:before{content:"\f1cd"}.fa.fa-life-saver{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-saver:before{content:"\f1cd"}.fa.fa-support{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-support:before{content:"\f1cd"}.fa.fa-circle-o-notch:before{content:"\f1ce"}.fa.fa-ra,.fa.fa-rebel{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ra:before{content:"\f1d0"}.fa.fa-resistance{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-resistance:before{content:"\f1d0"}.fa.fa-empire,.fa.fa-ge{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ge:before{content:"\f1d1"}.fa.fa-git,.fa.fa-git-square,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-y-combinator-square:before{content:"\f1d4"}.fa.fa-yc-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc-square:before{content:"\f1d4"}.fa.fa-qq,.fa.fa-tencent-weibo,.fa.fa-wechat,.fa.fa-weixin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wechat:before{content:"\f1d7"}.fa.fa-send:before{content:"\f1d8"}.fa.fa-paper-plane-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-paper-plane-o:before{content:"\f1d8"}.fa.fa-send-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-send-o:before{content:"\f1d8"}.fa.fa-circle-thin{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-circle-thin:before{content:"\f111"}.fa.fa-header:before{content:"\f1dc"}.fa.fa-sliders:before{content:"\f1de"}.fa.fa-futbol-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-futbol-o:before{content:"\f1e3"}.fa.fa-soccer-ball-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-soccer-ball-o:before{content:"\f1e3"}.fa.fa-slideshare,.fa.fa-twitch,.fa.fa-yelp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-newspaper-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-newspaper-o:before{content:"\f1ea"}.fa.fa-cc-amex,.fa.fa-cc-discover,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-google-wallet,.fa.fa-paypal{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bell-slash-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bell-slash-o:before{content:"\f1f6"}.fa.fa-trash:before{content:"\f2ed"}.fa.fa-copyright{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-eyedropper:before{content:"\f1fb"}.fa.fa-area-chart:before{content:"\f1fe"}.fa.fa-pie-chart:before{content:"\f200"}.fa.fa-line-chart:before{content:"\f201"}.fa.fa-angellist,.fa.fa-ioxhost,.fa.fa-lastfm,.fa.fa-lastfm-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-cc{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-cc:before{content:"\f20a"}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:"\f20b"}.fa.fa-meanpath{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-meanpath:before{content:"\f2b4"}.fa.fa-buysellads,.fa.fa-connectdevelop,.fa.fa-dashcube,.fa.fa-forumbee,.fa.fa-leanpub,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-diamond{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-diamond:before{content:"\f3a5"}.fa.fa-intersex:before{content:"\f224"}.fa.fa-facebook-official{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-official:before{content:"\f09a"}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-hotel:before{content:"\f236"}.fa.fa-medium,.fa.fa-viacoin,.fa.fa-y-combinator,.fa.fa-yc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc:before{content:"\f23b"}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-battery-4:before,.fa.fa-battery:before{content:"\f240"}.fa.fa-battery-3:before{content:"\f241"}.fa.fa-battery-2:before{content:"\f242"}.fa.fa-battery-1:before{content:"\f243"}.fa.fa-battery-0:before{content:"\f244"}.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-sticky-note-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-sticky-note-o:before{content:"\f249"}.fa.fa-cc-diners-club,.fa.fa-cc-jcb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-clone,.fa.fa-hourglass-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hourglass-o:before{content:"\f254"}.fa.fa-hourglass-1:before{content:"\f251"}.fa.fa-hourglass-2:before{content:"\f252"}.fa.fa-hourglass-3:before{content:"\f253"}.fa.fa-hand-rock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-rock-o:before{content:"\f255"}.fa.fa-hand-grab-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-grab-o:before{content:"\f255"}.fa.fa-hand-paper-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-paper-o:before{content:"\f256"}.fa.fa-hand-stop-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-stop-o:before{content:"\f256"}.fa.fa-hand-scissors-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-scissors-o:before{content:"\f257"}.fa.fa-hand-lizard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-lizard-o:before{content:"\f258"}.fa.fa-hand-spock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-spock-o:before{content:"\f259"}.fa.fa-hand-pointer-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-pointer-o:before{content:"\f25a"}.fa.fa-hand-peace-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-peace-o:before{content:"\f25b"}.fa.fa-registered{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-chrome,.fa.fa-creative-commons,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-internet-explorer,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square,.fa.fa-opera,.fa.fa-safari,.fa.fa-tripadvisor,.fa.fa-wikipedia-w{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-television:before{content:"\f26c"}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-calendar-plus-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-plus-o:before{content:"\f271"}.fa.fa-calendar-minus-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-minus-o:before{content:"\f272"}.fa.fa-calendar-times-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-times-o:before{content:"\f273"}.fa.fa-calendar-check-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-check-o:before{content:"\f274"}.fa.fa-map-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-map-o:before{content:"\f279"}.fa.fa-commenting{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-commenting:before{content:"\f4ad"}.fa.fa-commenting-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-commenting-o:before{content:"\f4ad"}.fa.fa-houzz,.fa.fa-vimeo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-vimeo:before{content:"\f27d"}.fa.fa-black-tie,.fa.fa-edge,.fa.fa-fonticons,.fa.fa-reddit-alien{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card-alt:before{content:"\f09d"}.fa.fa-codiepie,.fa.fa-fort-awesome,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-product-hunt,.fa.fa-scribd,.fa.fa-usb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-pause-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-pause-circle-o:before{content:"\f28b"}.fa.fa-stop-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-stop-circle-o:before{content:"\f28d"}.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-envira,.fa.fa-gitlab,.fa.fa-wheelchair-alt,.fa.fa-wpbeginner,.fa.fa-wpforms{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wheelchair-alt:before{content:"\f368"}.fa.fa-question-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-question-circle-o:before{content:"\f059"}.fa.fa-volume-control-phone:before{content:"\f2a0"}.fa.fa-asl-interpreting:before{content:"\f2a3"}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:"\f2a4"}.fa.fa-glide,.fa.fa-glide-g{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-signing:before{content:"\f2a7"}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-snapchat,.fa.fa-snapchat-ghost,.fa.fa-snapchat-square,.fa.fa-themeisle,.fa.fa-viadeo,.fa.fa-viadeo-square,.fa.fa-yoast{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-official:before{content:"\f2b3"}.fa.fa-google-plus-circle{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-circle:before{content:"\f2b3"}.fa.fa-fa,.fa.fa-font-awesome{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-fa:before{content:"\f2b4"}.fa.fa-handshake-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-handshake-o:before{content:"\f2b5"}.fa.fa-envelope-open-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-envelope-open-o:before{content:"\f2b6"}.fa.fa-linode{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-address-book-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-address-book-o:before{content:"\f2b9"}.fa.fa-vcard:before{content:"\f2bb"}.fa.fa-address-card-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-address-card-o:before{content:"\f2bb"}.fa.fa-vcard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-vcard-o:before{content:"\f2bb"}.fa.fa-user-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-user-circle-o:before{content:"\f2bd"}.fa.fa-user-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-user-o:before{content:"\f007"}.fa.fa-id-badge{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-drivers-license:before{content:"\f2c2"}.fa.fa-id-card-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-id-card-o:before{content:"\f2c2"}.fa.fa-drivers-license-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-drivers-license-o:before{content:"\f2c2"}.fa.fa-free-code-camp,.fa.fa-quora,.fa.fa-telegram{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:"\f2c7"}.fa.fa-thermometer-3:before{content:"\f2c8"}.fa.fa-thermometer-2:before{content:"\f2c9"}.fa.fa-thermometer-1:before{content:"\f2ca"}.fa.fa-thermometer-0:before{content:"\f2cb"}.fa.fa-bathtub:before,.fa.fa-s15:before{content:"\f2cd"}.fa.fa-window-maximize,.fa.fa-window-restore{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-rectangle:before{content:"\f410"}.fa.fa-window-close-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-window-close-o:before{content:"\f410"}.fa.fa-times-rectangle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-rectangle-o:before{content:"\f410"}.fa.fa-bandcamp,.fa.fa-eercast,.fa.fa-etsy,.fa.fa-grav,.fa.fa-imdb,.fa.fa-ravelry{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-eercast:before{content:"\f2da"}.fa.fa-snowflake-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-snowflake-o:before{content:"\f2dc"}.fa.fa-spotify,.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:"Font Awesome 5 Brands";font-weight:400} \ No newline at end of file diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_animated.less b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_animated.less new file mode 100644 index 0000000000..704ec95103 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_animated.less @@ -0,0 +1,19 @@ +// Animated Icons +// -------------------------- + +.@{fa-css-prefix}-spin { + animation: fa-spin 2s infinite linear; +} + +.@{fa-css-prefix}-pulse { + animation: fa-spin 1s infinite steps(8); +} + +@keyframes fa-spin { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_bordered-pulled.less b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_bordered-pulled.less new file mode 100644 index 0000000000..29a356b423 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_bordered-pulled.less @@ -0,0 +1,16 @@ +// Bordered & Pulled +// ------------------------- + +.@{fa-css-prefix}-border { + border-radius: .1em; + border: solid .08em @fa-border-color; + padding: .2em .25em .15em; +} + +.@{fa-css-prefix}-pull-left { float: left; } +.@{fa-css-prefix}-pull-right { float: right; } + +.@{fa-css-prefix}, .fas, .far, .fal, .fab { + &.@{fa-css-prefix}-pull-left { margin-right: .3em; } + &.@{fa-css-prefix}-pull-right { margin-left: .3em; } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_core.less b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_core.less new file mode 100644 index 0000000000..82031d6523 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_core.less @@ -0,0 +1,12 @@ +// Base Class Definition +// ------------------------- + +.@{fa-css-prefix}, .fas, .far, .fal, .fab { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + line-height: 1; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_fixed-width.less b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_fixed-width.less new file mode 100644 index 0000000000..be817c6375 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_fixed-width.less @@ -0,0 +1,6 @@ +// Fixed Width Icons +// ------------------------- +.@{fa-css-prefix}-fw { + text-align: center; + width: (20em / 16); +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_icons.less b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_icons.less new file mode 100644 index 0000000000..064263140c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_icons.less @@ -0,0 +1,1115 @@ +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ + +.@{fa-css-prefix}-500px:before { content: @fa-var-500px; } +.@{fa-css-prefix}-accessible-icon:before { content: @fa-var-accessible-icon; } +.@{fa-css-prefix}-accusoft:before { content: @fa-var-accusoft; } +.@{fa-css-prefix}-address-book:before { content: @fa-var-address-book; } +.@{fa-css-prefix}-address-card:before { content: @fa-var-address-card; } +.@{fa-css-prefix}-adjust:before { content: @fa-var-adjust; } +.@{fa-css-prefix}-adn:before { content: @fa-var-adn; } +.@{fa-css-prefix}-adversal:before { content: @fa-var-adversal; } +.@{fa-css-prefix}-affiliatetheme:before { content: @fa-var-affiliatetheme; } +.@{fa-css-prefix}-algolia:before { content: @fa-var-algolia; } +.@{fa-css-prefix}-align-center:before { content: @fa-var-align-center; } +.@{fa-css-prefix}-align-justify:before { content: @fa-var-align-justify; } +.@{fa-css-prefix}-align-left:before { content: @fa-var-align-left; } +.@{fa-css-prefix}-align-right:before { content: @fa-var-align-right; } +.@{fa-css-prefix}-allergies:before { content: @fa-var-allergies; } +.@{fa-css-prefix}-amazon:before { content: @fa-var-amazon; } +.@{fa-css-prefix}-amazon-pay:before { content: @fa-var-amazon-pay; } +.@{fa-css-prefix}-ambulance:before { content: @fa-var-ambulance; } +.@{fa-css-prefix}-american-sign-language-interpreting:before { content: @fa-var-american-sign-language-interpreting; } +.@{fa-css-prefix}-amilia:before { content: @fa-var-amilia; } +.@{fa-css-prefix}-anchor:before { content: @fa-var-anchor; } +.@{fa-css-prefix}-android:before { content: @fa-var-android; } +.@{fa-css-prefix}-angellist:before { content: @fa-var-angellist; } +.@{fa-css-prefix}-angle-double-down:before { content: @fa-var-angle-double-down; } +.@{fa-css-prefix}-angle-double-left:before { content: @fa-var-angle-double-left; } +.@{fa-css-prefix}-angle-double-right:before { content: @fa-var-angle-double-right; } +.@{fa-css-prefix}-angle-double-up:before { content: @fa-var-angle-double-up; } +.@{fa-css-prefix}-angle-down:before { content: @fa-var-angle-down; } +.@{fa-css-prefix}-angle-left:before { content: @fa-var-angle-left; } +.@{fa-css-prefix}-angle-right:before { content: @fa-var-angle-right; } +.@{fa-css-prefix}-angle-up:before { content: @fa-var-angle-up; } +.@{fa-css-prefix}-angry:before { content: @fa-var-angry; } +.@{fa-css-prefix}-angrycreative:before { content: @fa-var-angrycreative; } +.@{fa-css-prefix}-angular:before { content: @fa-var-angular; } +.@{fa-css-prefix}-app-store:before { content: @fa-var-app-store; } +.@{fa-css-prefix}-app-store-ios:before { content: @fa-var-app-store-ios; } +.@{fa-css-prefix}-apper:before { content: @fa-var-apper; } +.@{fa-css-prefix}-apple:before { content: @fa-var-apple; } +.@{fa-css-prefix}-apple-pay:before { content: @fa-var-apple-pay; } +.@{fa-css-prefix}-archive:before { content: @fa-var-archive; } +.@{fa-css-prefix}-archway:before { content: @fa-var-archway; } +.@{fa-css-prefix}-arrow-alt-circle-down:before { content: @fa-var-arrow-alt-circle-down; } +.@{fa-css-prefix}-arrow-alt-circle-left:before { content: @fa-var-arrow-alt-circle-left; } +.@{fa-css-prefix}-arrow-alt-circle-right:before { content: @fa-var-arrow-alt-circle-right; } +.@{fa-css-prefix}-arrow-alt-circle-up:before { content: @fa-var-arrow-alt-circle-up; } +.@{fa-css-prefix}-arrow-circle-down:before { content: @fa-var-arrow-circle-down; } +.@{fa-css-prefix}-arrow-circle-left:before { content: @fa-var-arrow-circle-left; } +.@{fa-css-prefix}-arrow-circle-right:before { content: @fa-var-arrow-circle-right; } +.@{fa-css-prefix}-arrow-circle-up:before { content: @fa-var-arrow-circle-up; } +.@{fa-css-prefix}-arrow-down:before { content: @fa-var-arrow-down; } +.@{fa-css-prefix}-arrow-left:before { content: @fa-var-arrow-left; } +.@{fa-css-prefix}-arrow-right:before { content: @fa-var-arrow-right; } +.@{fa-css-prefix}-arrow-up:before { content: @fa-var-arrow-up; } +.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-arrows-alt; } +.@{fa-css-prefix}-arrows-alt-h:before { content: @fa-var-arrows-alt-h; } +.@{fa-css-prefix}-arrows-alt-v:before { content: @fa-var-arrows-alt-v; } +.@{fa-css-prefix}-assistive-listening-systems:before { content: @fa-var-assistive-listening-systems; } +.@{fa-css-prefix}-asterisk:before { content: @fa-var-asterisk; } +.@{fa-css-prefix}-asymmetrik:before { content: @fa-var-asymmetrik; } +.@{fa-css-prefix}-at:before { content: @fa-var-at; } +.@{fa-css-prefix}-atlas:before { content: @fa-var-atlas; } +.@{fa-css-prefix}-audible:before { content: @fa-var-audible; } +.@{fa-css-prefix}-audio-description:before { content: @fa-var-audio-description; } +.@{fa-css-prefix}-autoprefixer:before { content: @fa-var-autoprefixer; } +.@{fa-css-prefix}-avianex:before { content: @fa-var-avianex; } +.@{fa-css-prefix}-aviato:before { content: @fa-var-aviato; } +.@{fa-css-prefix}-award:before { content: @fa-var-award; } +.@{fa-css-prefix}-aws:before { content: @fa-var-aws; } +.@{fa-css-prefix}-backspace:before { content: @fa-var-backspace; } +.@{fa-css-prefix}-backward:before { content: @fa-var-backward; } +.@{fa-css-prefix}-balance-scale:before { content: @fa-var-balance-scale; } +.@{fa-css-prefix}-ban:before { content: @fa-var-ban; } +.@{fa-css-prefix}-band-aid:before { content: @fa-var-band-aid; } +.@{fa-css-prefix}-bandcamp:before { content: @fa-var-bandcamp; } +.@{fa-css-prefix}-barcode:before { content: @fa-var-barcode; } +.@{fa-css-prefix}-bars:before { content: @fa-var-bars; } +.@{fa-css-prefix}-baseball-ball:before { content: @fa-var-baseball-ball; } +.@{fa-css-prefix}-basketball-ball:before { content: @fa-var-basketball-ball; } +.@{fa-css-prefix}-bath:before { content: @fa-var-bath; } +.@{fa-css-prefix}-battery-empty:before { content: @fa-var-battery-empty; } +.@{fa-css-prefix}-battery-full:before { content: @fa-var-battery-full; } +.@{fa-css-prefix}-battery-half:before { content: @fa-var-battery-half; } +.@{fa-css-prefix}-battery-quarter:before { content: @fa-var-battery-quarter; } +.@{fa-css-prefix}-battery-three-quarters:before { content: @fa-var-battery-three-quarters; } +.@{fa-css-prefix}-bed:before { content: @fa-var-bed; } +.@{fa-css-prefix}-beer:before { content: @fa-var-beer; } +.@{fa-css-prefix}-behance:before { content: @fa-var-behance; } +.@{fa-css-prefix}-behance-square:before { content: @fa-var-behance-square; } +.@{fa-css-prefix}-bell:before { content: @fa-var-bell; } +.@{fa-css-prefix}-bell-slash:before { content: @fa-var-bell-slash; } +.@{fa-css-prefix}-bezier-curve:before { content: @fa-var-bezier-curve; } +.@{fa-css-prefix}-bicycle:before { content: @fa-var-bicycle; } +.@{fa-css-prefix}-bimobject:before { content: @fa-var-bimobject; } +.@{fa-css-prefix}-binoculars:before { content: @fa-var-binoculars; } +.@{fa-css-prefix}-birthday-cake:before { content: @fa-var-birthday-cake; } +.@{fa-css-prefix}-bitbucket:before { content: @fa-var-bitbucket; } +.@{fa-css-prefix}-bitcoin:before { content: @fa-var-bitcoin; } +.@{fa-css-prefix}-bity:before { content: @fa-var-bity; } +.@{fa-css-prefix}-black-tie:before { content: @fa-var-black-tie; } +.@{fa-css-prefix}-blackberry:before { content: @fa-var-blackberry; } +.@{fa-css-prefix}-blender:before { content: @fa-var-blender; } +.@{fa-css-prefix}-blind:before { content: @fa-var-blind; } +.@{fa-css-prefix}-blogger:before { content: @fa-var-blogger; } +.@{fa-css-prefix}-blogger-b:before { content: @fa-var-blogger-b; } +.@{fa-css-prefix}-bluetooth:before { content: @fa-var-bluetooth; } +.@{fa-css-prefix}-bluetooth-b:before { content: @fa-var-bluetooth-b; } +.@{fa-css-prefix}-bold:before { content: @fa-var-bold; } +.@{fa-css-prefix}-bolt:before { content: @fa-var-bolt; } +.@{fa-css-prefix}-bomb:before { content: @fa-var-bomb; } +.@{fa-css-prefix}-bong:before { content: @fa-var-bong; } +.@{fa-css-prefix}-book:before { content: @fa-var-book; } +.@{fa-css-prefix}-book-open:before { content: @fa-var-book-open; } +.@{fa-css-prefix}-bookmark:before { content: @fa-var-bookmark; } +.@{fa-css-prefix}-bowling-ball:before { content: @fa-var-bowling-ball; } +.@{fa-css-prefix}-box:before { content: @fa-var-box; } +.@{fa-css-prefix}-box-open:before { content: @fa-var-box-open; } +.@{fa-css-prefix}-boxes:before { content: @fa-var-boxes; } +.@{fa-css-prefix}-braille:before { content: @fa-var-braille; } +.@{fa-css-prefix}-briefcase:before { content: @fa-var-briefcase; } +.@{fa-css-prefix}-briefcase-medical:before { content: @fa-var-briefcase-medical; } +.@{fa-css-prefix}-broadcast-tower:before { content: @fa-var-broadcast-tower; } +.@{fa-css-prefix}-broom:before { content: @fa-var-broom; } +.@{fa-css-prefix}-brush:before { content: @fa-var-brush; } +.@{fa-css-prefix}-btc:before { content: @fa-var-btc; } +.@{fa-css-prefix}-bug:before { content: @fa-var-bug; } +.@{fa-css-prefix}-building:before { content: @fa-var-building; } +.@{fa-css-prefix}-bullhorn:before { content: @fa-var-bullhorn; } +.@{fa-css-prefix}-bullseye:before { content: @fa-var-bullseye; } +.@{fa-css-prefix}-burn:before { content: @fa-var-burn; } +.@{fa-css-prefix}-buromobelexperte:before { content: @fa-var-buromobelexperte; } +.@{fa-css-prefix}-bus:before { content: @fa-var-bus; } +.@{fa-css-prefix}-bus-alt:before { content: @fa-var-bus-alt; } +.@{fa-css-prefix}-buysellads:before { content: @fa-var-buysellads; } +.@{fa-css-prefix}-calculator:before { content: @fa-var-calculator; } +.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar; } +.@{fa-css-prefix}-calendar-alt:before { content: @fa-var-calendar-alt; } +.@{fa-css-prefix}-calendar-check:before { content: @fa-var-calendar-check; } +.@{fa-css-prefix}-calendar-minus:before { content: @fa-var-calendar-minus; } +.@{fa-css-prefix}-calendar-plus:before { content: @fa-var-calendar-plus; } +.@{fa-css-prefix}-calendar-times:before { content: @fa-var-calendar-times; } +.@{fa-css-prefix}-camera:before { content: @fa-var-camera; } +.@{fa-css-prefix}-camera-retro:before { content: @fa-var-camera-retro; } +.@{fa-css-prefix}-cannabis:before { content: @fa-var-cannabis; } +.@{fa-css-prefix}-capsules:before { content: @fa-var-capsules; } +.@{fa-css-prefix}-car:before { content: @fa-var-car; } +.@{fa-css-prefix}-caret-down:before { content: @fa-var-caret-down; } +.@{fa-css-prefix}-caret-left:before { content: @fa-var-caret-left; } +.@{fa-css-prefix}-caret-right:before { content: @fa-var-caret-right; } +.@{fa-css-prefix}-caret-square-down:before { content: @fa-var-caret-square-down; } +.@{fa-css-prefix}-caret-square-left:before { content: @fa-var-caret-square-left; } +.@{fa-css-prefix}-caret-square-right:before { content: @fa-var-caret-square-right; } +.@{fa-css-prefix}-caret-square-up:before { content: @fa-var-caret-square-up; } +.@{fa-css-prefix}-caret-up:before { content: @fa-var-caret-up; } +.@{fa-css-prefix}-cart-arrow-down:before { content: @fa-var-cart-arrow-down; } +.@{fa-css-prefix}-cart-plus:before { content: @fa-var-cart-plus; } +.@{fa-css-prefix}-cc-amazon-pay:before { content: @fa-var-cc-amazon-pay; } +.@{fa-css-prefix}-cc-amex:before { content: @fa-var-cc-amex; } +.@{fa-css-prefix}-cc-apple-pay:before { content: @fa-var-cc-apple-pay; } +.@{fa-css-prefix}-cc-diners-club:before { content: @fa-var-cc-diners-club; } +.@{fa-css-prefix}-cc-discover:before { content: @fa-var-cc-discover; } +.@{fa-css-prefix}-cc-jcb:before { content: @fa-var-cc-jcb; } +.@{fa-css-prefix}-cc-mastercard:before { content: @fa-var-cc-mastercard; } +.@{fa-css-prefix}-cc-paypal:before { content: @fa-var-cc-paypal; } +.@{fa-css-prefix}-cc-stripe:before { content: @fa-var-cc-stripe; } +.@{fa-css-prefix}-cc-visa:before { content: @fa-var-cc-visa; } +.@{fa-css-prefix}-centercode:before { content: @fa-var-centercode; } +.@{fa-css-prefix}-certificate:before { content: @fa-var-certificate; } +.@{fa-css-prefix}-chalkboard:before { content: @fa-var-chalkboard; } +.@{fa-css-prefix}-chalkboard-teacher:before { content: @fa-var-chalkboard-teacher; } +.@{fa-css-prefix}-chart-area:before { content: @fa-var-chart-area; } +.@{fa-css-prefix}-chart-bar:before { content: @fa-var-chart-bar; } +.@{fa-css-prefix}-chart-line:before { content: @fa-var-chart-line; } +.@{fa-css-prefix}-chart-pie:before { content: @fa-var-chart-pie; } +.@{fa-css-prefix}-check:before { content: @fa-var-check; } +.@{fa-css-prefix}-check-circle:before { content: @fa-var-check-circle; } +.@{fa-css-prefix}-check-double:before { content: @fa-var-check-double; } +.@{fa-css-prefix}-check-square:before { content: @fa-var-check-square; } +.@{fa-css-prefix}-chess:before { content: @fa-var-chess; } +.@{fa-css-prefix}-chess-bishop:before { content: @fa-var-chess-bishop; } +.@{fa-css-prefix}-chess-board:before { content: @fa-var-chess-board; } +.@{fa-css-prefix}-chess-king:before { content: @fa-var-chess-king; } +.@{fa-css-prefix}-chess-knight:before { content: @fa-var-chess-knight; } +.@{fa-css-prefix}-chess-pawn:before { content: @fa-var-chess-pawn; } +.@{fa-css-prefix}-chess-queen:before { content: @fa-var-chess-queen; } +.@{fa-css-prefix}-chess-rook:before { content: @fa-var-chess-rook; } +.@{fa-css-prefix}-chevron-circle-down:before { content: @fa-var-chevron-circle-down; } +.@{fa-css-prefix}-chevron-circle-left:before { content: @fa-var-chevron-circle-left; } +.@{fa-css-prefix}-chevron-circle-right:before { content: @fa-var-chevron-circle-right; } +.@{fa-css-prefix}-chevron-circle-up:before { content: @fa-var-chevron-circle-up; } +.@{fa-css-prefix}-chevron-down:before { content: @fa-var-chevron-down; } +.@{fa-css-prefix}-chevron-left:before { content: @fa-var-chevron-left; } +.@{fa-css-prefix}-chevron-right:before { content: @fa-var-chevron-right; } +.@{fa-css-prefix}-chevron-up:before { content: @fa-var-chevron-up; } +.@{fa-css-prefix}-child:before { content: @fa-var-child; } +.@{fa-css-prefix}-chrome:before { content: @fa-var-chrome; } +.@{fa-css-prefix}-church:before { content: @fa-var-church; } +.@{fa-css-prefix}-circle:before { content: @fa-var-circle; } +.@{fa-css-prefix}-circle-notch:before { content: @fa-var-circle-notch; } +.@{fa-css-prefix}-clipboard:before { content: @fa-var-clipboard; } +.@{fa-css-prefix}-clipboard-check:before { content: @fa-var-clipboard-check; } +.@{fa-css-prefix}-clipboard-list:before { content: @fa-var-clipboard-list; } +.@{fa-css-prefix}-clock:before { content: @fa-var-clock; } +.@{fa-css-prefix}-clone:before { content: @fa-var-clone; } +.@{fa-css-prefix}-closed-captioning:before { content: @fa-var-closed-captioning; } +.@{fa-css-prefix}-cloud:before { content: @fa-var-cloud; } +.@{fa-css-prefix}-cloud-download-alt:before { content: @fa-var-cloud-download-alt; } +.@{fa-css-prefix}-cloud-upload-alt:before { content: @fa-var-cloud-upload-alt; } +.@{fa-css-prefix}-cloudscale:before { content: @fa-var-cloudscale; } +.@{fa-css-prefix}-cloudsmith:before { content: @fa-var-cloudsmith; } +.@{fa-css-prefix}-cloudversify:before { content: @fa-var-cloudversify; } +.@{fa-css-prefix}-cocktail:before { content: @fa-var-cocktail; } +.@{fa-css-prefix}-code:before { content: @fa-var-code; } +.@{fa-css-prefix}-code-branch:before { content: @fa-var-code-branch; } +.@{fa-css-prefix}-codepen:before { content: @fa-var-codepen; } +.@{fa-css-prefix}-codiepie:before { content: @fa-var-codiepie; } +.@{fa-css-prefix}-coffee:before { content: @fa-var-coffee; } +.@{fa-css-prefix}-cog:before { content: @fa-var-cog; } +.@{fa-css-prefix}-cogs:before { content: @fa-var-cogs; } +.@{fa-css-prefix}-coins:before { content: @fa-var-coins; } +.@{fa-css-prefix}-columns:before { content: @fa-var-columns; } +.@{fa-css-prefix}-comment:before { content: @fa-var-comment; } +.@{fa-css-prefix}-comment-alt:before { content: @fa-var-comment-alt; } +.@{fa-css-prefix}-comment-dots:before { content: @fa-var-comment-dots; } +.@{fa-css-prefix}-comment-slash:before { content: @fa-var-comment-slash; } +.@{fa-css-prefix}-comments:before { content: @fa-var-comments; } +.@{fa-css-prefix}-compact-disc:before { content: @fa-var-compact-disc; } +.@{fa-css-prefix}-compass:before { content: @fa-var-compass; } +.@{fa-css-prefix}-compress:before { content: @fa-var-compress; } +.@{fa-css-prefix}-concierge-bell:before { content: @fa-var-concierge-bell; } +.@{fa-css-prefix}-connectdevelop:before { content: @fa-var-connectdevelop; } +.@{fa-css-prefix}-contao:before { content: @fa-var-contao; } +.@{fa-css-prefix}-cookie:before { content: @fa-var-cookie; } +.@{fa-css-prefix}-cookie-bite:before { content: @fa-var-cookie-bite; } +.@{fa-css-prefix}-copy:before { content: @fa-var-copy; } +.@{fa-css-prefix}-copyright:before { content: @fa-var-copyright; } +.@{fa-css-prefix}-couch:before { content: @fa-var-couch; } +.@{fa-css-prefix}-cpanel:before { content: @fa-var-cpanel; } +.@{fa-css-prefix}-creative-commons:before { content: @fa-var-creative-commons; } +.@{fa-css-prefix}-creative-commons-by:before { content: @fa-var-creative-commons-by; } +.@{fa-css-prefix}-creative-commons-nc:before { content: @fa-var-creative-commons-nc; } +.@{fa-css-prefix}-creative-commons-nc-eu:before { content: @fa-var-creative-commons-nc-eu; } +.@{fa-css-prefix}-creative-commons-nc-jp:before { content: @fa-var-creative-commons-nc-jp; } +.@{fa-css-prefix}-creative-commons-nd:before { content: @fa-var-creative-commons-nd; } +.@{fa-css-prefix}-creative-commons-pd:before { content: @fa-var-creative-commons-pd; } +.@{fa-css-prefix}-creative-commons-pd-alt:before { content: @fa-var-creative-commons-pd-alt; } +.@{fa-css-prefix}-creative-commons-remix:before { content: @fa-var-creative-commons-remix; } +.@{fa-css-prefix}-creative-commons-sa:before { content: @fa-var-creative-commons-sa; } +.@{fa-css-prefix}-creative-commons-sampling:before { content: @fa-var-creative-commons-sampling; } +.@{fa-css-prefix}-creative-commons-sampling-plus:before { content: @fa-var-creative-commons-sampling-plus; } +.@{fa-css-prefix}-creative-commons-share:before { content: @fa-var-creative-commons-share; } +.@{fa-css-prefix}-credit-card:before { content: @fa-var-credit-card; } +.@{fa-css-prefix}-crop:before { content: @fa-var-crop; } +.@{fa-css-prefix}-crop-alt:before { content: @fa-var-crop-alt; } +.@{fa-css-prefix}-crosshairs:before { content: @fa-var-crosshairs; } +.@{fa-css-prefix}-crow:before { content: @fa-var-crow; } +.@{fa-css-prefix}-crown:before { content: @fa-var-crown; } +.@{fa-css-prefix}-css3:before { content: @fa-var-css3; } +.@{fa-css-prefix}-css3-alt:before { content: @fa-var-css3-alt; } +.@{fa-css-prefix}-cube:before { content: @fa-var-cube; } +.@{fa-css-prefix}-cubes:before { content: @fa-var-cubes; } +.@{fa-css-prefix}-cut:before { content: @fa-var-cut; } +.@{fa-css-prefix}-cuttlefish:before { content: @fa-var-cuttlefish; } +.@{fa-css-prefix}-d-and-d:before { content: @fa-var-d-and-d; } +.@{fa-css-prefix}-dashcube:before { content: @fa-var-dashcube; } +.@{fa-css-prefix}-database:before { content: @fa-var-database; } +.@{fa-css-prefix}-deaf:before { content: @fa-var-deaf; } +.@{fa-css-prefix}-delicious:before { content: @fa-var-delicious; } +.@{fa-css-prefix}-deploydog:before { content: @fa-var-deploydog; } +.@{fa-css-prefix}-deskpro:before { content: @fa-var-deskpro; } +.@{fa-css-prefix}-desktop:before { content: @fa-var-desktop; } +.@{fa-css-prefix}-deviantart:before { content: @fa-var-deviantart; } +.@{fa-css-prefix}-diagnoses:before { content: @fa-var-diagnoses; } +.@{fa-css-prefix}-dice:before { content: @fa-var-dice; } +.@{fa-css-prefix}-dice-five:before { content: @fa-var-dice-five; } +.@{fa-css-prefix}-dice-four:before { content: @fa-var-dice-four; } +.@{fa-css-prefix}-dice-one:before { content: @fa-var-dice-one; } +.@{fa-css-prefix}-dice-six:before { content: @fa-var-dice-six; } +.@{fa-css-prefix}-dice-three:before { content: @fa-var-dice-three; } +.@{fa-css-prefix}-dice-two:before { content: @fa-var-dice-two; } +.@{fa-css-prefix}-digg:before { content: @fa-var-digg; } +.@{fa-css-prefix}-digital-ocean:before { content: @fa-var-digital-ocean; } +.@{fa-css-prefix}-digital-tachograph:before { content: @fa-var-digital-tachograph; } +.@{fa-css-prefix}-discord:before { content: @fa-var-discord; } +.@{fa-css-prefix}-discourse:before { content: @fa-var-discourse; } +.@{fa-css-prefix}-divide:before { content: @fa-var-divide; } +.@{fa-css-prefix}-dizzy:before { content: @fa-var-dizzy; } +.@{fa-css-prefix}-dna:before { content: @fa-var-dna; } +.@{fa-css-prefix}-dochub:before { content: @fa-var-dochub; } +.@{fa-css-prefix}-docker:before { content: @fa-var-docker; } +.@{fa-css-prefix}-dollar-sign:before { content: @fa-var-dollar-sign; } +.@{fa-css-prefix}-dolly:before { content: @fa-var-dolly; } +.@{fa-css-prefix}-dolly-flatbed:before { content: @fa-var-dolly-flatbed; } +.@{fa-css-prefix}-donate:before { content: @fa-var-donate; } +.@{fa-css-prefix}-door-closed:before { content: @fa-var-door-closed; } +.@{fa-css-prefix}-door-open:before { content: @fa-var-door-open; } +.@{fa-css-prefix}-dot-circle:before { content: @fa-var-dot-circle; } +.@{fa-css-prefix}-dove:before { content: @fa-var-dove; } +.@{fa-css-prefix}-download:before { content: @fa-var-download; } +.@{fa-css-prefix}-draft2digital:before { content: @fa-var-draft2digital; } +.@{fa-css-prefix}-drafting-compass:before { content: @fa-var-drafting-compass; } +.@{fa-css-prefix}-dribbble:before { content: @fa-var-dribbble; } +.@{fa-css-prefix}-dribbble-square:before { content: @fa-var-dribbble-square; } +.@{fa-css-prefix}-dropbox:before { content: @fa-var-dropbox; } +.@{fa-css-prefix}-drum:before { content: @fa-var-drum; } +.@{fa-css-prefix}-drum-steelpan:before { content: @fa-var-drum-steelpan; } +.@{fa-css-prefix}-drupal:before { content: @fa-var-drupal; } +.@{fa-css-prefix}-dumbbell:before { content: @fa-var-dumbbell; } +.@{fa-css-prefix}-dyalog:before { content: @fa-var-dyalog; } +.@{fa-css-prefix}-earlybirds:before { content: @fa-var-earlybirds; } +.@{fa-css-prefix}-ebay:before { content: @fa-var-ebay; } +.@{fa-css-prefix}-edge:before { content: @fa-var-edge; } +.@{fa-css-prefix}-edit:before { content: @fa-var-edit; } +.@{fa-css-prefix}-eject:before { content: @fa-var-eject; } +.@{fa-css-prefix}-elementor:before { content: @fa-var-elementor; } +.@{fa-css-prefix}-ellipsis-h:before { content: @fa-var-ellipsis-h; } +.@{fa-css-prefix}-ellipsis-v:before { content: @fa-var-ellipsis-v; } +.@{fa-css-prefix}-ember:before { content: @fa-var-ember; } +.@{fa-css-prefix}-empire:before { content: @fa-var-empire; } +.@{fa-css-prefix}-envelope:before { content: @fa-var-envelope; } +.@{fa-css-prefix}-envelope-open:before { content: @fa-var-envelope-open; } +.@{fa-css-prefix}-envelope-square:before { content: @fa-var-envelope-square; } +.@{fa-css-prefix}-envira:before { content: @fa-var-envira; } +.@{fa-css-prefix}-equals:before { content: @fa-var-equals; } +.@{fa-css-prefix}-eraser:before { content: @fa-var-eraser; } +.@{fa-css-prefix}-erlang:before { content: @fa-var-erlang; } +.@{fa-css-prefix}-ethereum:before { content: @fa-var-ethereum; } +.@{fa-css-prefix}-etsy:before { content: @fa-var-etsy; } +.@{fa-css-prefix}-euro-sign:before { content: @fa-var-euro-sign; } +.@{fa-css-prefix}-exchange-alt:before { content: @fa-var-exchange-alt; } +.@{fa-css-prefix}-exclamation:before { content: @fa-var-exclamation; } +.@{fa-css-prefix}-exclamation-circle:before { content: @fa-var-exclamation-circle; } +.@{fa-css-prefix}-exclamation-triangle:before { content: @fa-var-exclamation-triangle; } +.@{fa-css-prefix}-expand:before { content: @fa-var-expand; } +.@{fa-css-prefix}-expand-arrows-alt:before { content: @fa-var-expand-arrows-alt; } +.@{fa-css-prefix}-expeditedssl:before { content: @fa-var-expeditedssl; } +.@{fa-css-prefix}-external-link-alt:before { content: @fa-var-external-link-alt; } +.@{fa-css-prefix}-external-link-square-alt:before { content: @fa-var-external-link-square-alt; } +.@{fa-css-prefix}-eye:before { content: @fa-var-eye; } +.@{fa-css-prefix}-eye-dropper:before { content: @fa-var-eye-dropper; } +.@{fa-css-prefix}-eye-slash:before { content: @fa-var-eye-slash; } +.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook; } +.@{fa-css-prefix}-facebook-f:before { content: @fa-var-facebook-f; } +.@{fa-css-prefix}-facebook-messenger:before { content: @fa-var-facebook-messenger; } +.@{fa-css-prefix}-facebook-square:before { content: @fa-var-facebook-square; } +.@{fa-css-prefix}-fast-backward:before { content: @fa-var-fast-backward; } +.@{fa-css-prefix}-fast-forward:before { content: @fa-var-fast-forward; } +.@{fa-css-prefix}-fax:before { content: @fa-var-fax; } +.@{fa-css-prefix}-feather:before { content: @fa-var-feather; } +.@{fa-css-prefix}-feather-alt:before { content: @fa-var-feather-alt; } +.@{fa-css-prefix}-female:before { content: @fa-var-female; } +.@{fa-css-prefix}-fighter-jet:before { content: @fa-var-fighter-jet; } +.@{fa-css-prefix}-file:before { content: @fa-var-file; } +.@{fa-css-prefix}-file-alt:before { content: @fa-var-file-alt; } +.@{fa-css-prefix}-file-archive:before { content: @fa-var-file-archive; } +.@{fa-css-prefix}-file-audio:before { content: @fa-var-file-audio; } +.@{fa-css-prefix}-file-code:before { content: @fa-var-file-code; } +.@{fa-css-prefix}-file-contract:before { content: @fa-var-file-contract; } +.@{fa-css-prefix}-file-download:before { content: @fa-var-file-download; } +.@{fa-css-prefix}-file-excel:before { content: @fa-var-file-excel; } +.@{fa-css-prefix}-file-export:before { content: @fa-var-file-export; } +.@{fa-css-prefix}-file-image:before { content: @fa-var-file-image; } +.@{fa-css-prefix}-file-import:before { content: @fa-var-file-import; } +.@{fa-css-prefix}-file-invoice:before { content: @fa-var-file-invoice; } +.@{fa-css-prefix}-file-invoice-dollar:before { content: @fa-var-file-invoice-dollar; } +.@{fa-css-prefix}-file-medical:before { content: @fa-var-file-medical; } +.@{fa-css-prefix}-file-medical-alt:before { content: @fa-var-file-medical-alt; } +.@{fa-css-prefix}-file-pdf:before { content: @fa-var-file-pdf; } +.@{fa-css-prefix}-file-powerpoint:before { content: @fa-var-file-powerpoint; } +.@{fa-css-prefix}-file-prescription:before { content: @fa-var-file-prescription; } +.@{fa-css-prefix}-file-signature:before { content: @fa-var-file-signature; } +.@{fa-css-prefix}-file-upload:before { content: @fa-var-file-upload; } +.@{fa-css-prefix}-file-video:before { content: @fa-var-file-video; } +.@{fa-css-prefix}-file-word:before { content: @fa-var-file-word; } +.@{fa-css-prefix}-fill:before { content: @fa-var-fill; } +.@{fa-css-prefix}-fill-drip:before { content: @fa-var-fill-drip; } +.@{fa-css-prefix}-film:before { content: @fa-var-film; } +.@{fa-css-prefix}-filter:before { content: @fa-var-filter; } +.@{fa-css-prefix}-fingerprint:before { content: @fa-var-fingerprint; } +.@{fa-css-prefix}-fire:before { content: @fa-var-fire; } +.@{fa-css-prefix}-fire-extinguisher:before { content: @fa-var-fire-extinguisher; } +.@{fa-css-prefix}-firefox:before { content: @fa-var-firefox; } +.@{fa-css-prefix}-first-aid:before { content: @fa-var-first-aid; } +.@{fa-css-prefix}-first-order:before { content: @fa-var-first-order; } +.@{fa-css-prefix}-first-order-alt:before { content: @fa-var-first-order-alt; } +.@{fa-css-prefix}-firstdraft:before { content: @fa-var-firstdraft; } +.@{fa-css-prefix}-fish:before { content: @fa-var-fish; } +.@{fa-css-prefix}-flag:before { content: @fa-var-flag; } +.@{fa-css-prefix}-flag-checkered:before { content: @fa-var-flag-checkered; } +.@{fa-css-prefix}-flask:before { content: @fa-var-flask; } +.@{fa-css-prefix}-flickr:before { content: @fa-var-flickr; } +.@{fa-css-prefix}-flipboard:before { content: @fa-var-flipboard; } +.@{fa-css-prefix}-flushed:before { content: @fa-var-flushed; } +.@{fa-css-prefix}-fly:before { content: @fa-var-fly; } +.@{fa-css-prefix}-folder:before { content: @fa-var-folder; } +.@{fa-css-prefix}-folder-open:before { content: @fa-var-folder-open; } +.@{fa-css-prefix}-font:before { content: @fa-var-font; } +.@{fa-css-prefix}-font-awesome:before { content: @fa-var-font-awesome; } +.@{fa-css-prefix}-font-awesome-alt:before { content: @fa-var-font-awesome-alt; } +.@{fa-css-prefix}-font-awesome-flag:before { content: @fa-var-font-awesome-flag; } +.@{fa-css-prefix}-font-awesome-logo-full:before { content: @fa-var-font-awesome-logo-full; } +.@{fa-css-prefix}-fonticons:before { content: @fa-var-fonticons; } +.@{fa-css-prefix}-fonticons-fi:before { content: @fa-var-fonticons-fi; } +.@{fa-css-prefix}-football-ball:before { content: @fa-var-football-ball; } +.@{fa-css-prefix}-fort-awesome:before { content: @fa-var-fort-awesome; } +.@{fa-css-prefix}-fort-awesome-alt:before { content: @fa-var-fort-awesome-alt; } +.@{fa-css-prefix}-forumbee:before { content: @fa-var-forumbee; } +.@{fa-css-prefix}-forward:before { content: @fa-var-forward; } +.@{fa-css-prefix}-foursquare:before { content: @fa-var-foursquare; } +.@{fa-css-prefix}-free-code-camp:before { content: @fa-var-free-code-camp; } +.@{fa-css-prefix}-freebsd:before { content: @fa-var-freebsd; } +.@{fa-css-prefix}-frog:before { content: @fa-var-frog; } +.@{fa-css-prefix}-frown:before { content: @fa-var-frown; } +.@{fa-css-prefix}-frown-open:before { content: @fa-var-frown-open; } +.@{fa-css-prefix}-fulcrum:before { content: @fa-var-fulcrum; } +.@{fa-css-prefix}-futbol:before { content: @fa-var-futbol; } +.@{fa-css-prefix}-galactic-republic:before { content: @fa-var-galactic-republic; } +.@{fa-css-prefix}-galactic-senate:before { content: @fa-var-galactic-senate; } +.@{fa-css-prefix}-gamepad:before { content: @fa-var-gamepad; } +.@{fa-css-prefix}-gas-pump:before { content: @fa-var-gas-pump; } +.@{fa-css-prefix}-gavel:before { content: @fa-var-gavel; } +.@{fa-css-prefix}-gem:before { content: @fa-var-gem; } +.@{fa-css-prefix}-genderless:before { content: @fa-var-genderless; } +.@{fa-css-prefix}-get-pocket:before { content: @fa-var-get-pocket; } +.@{fa-css-prefix}-gg:before { content: @fa-var-gg; } +.@{fa-css-prefix}-gg-circle:before { content: @fa-var-gg-circle; } +.@{fa-css-prefix}-gift:before { content: @fa-var-gift; } +.@{fa-css-prefix}-git:before { content: @fa-var-git; } +.@{fa-css-prefix}-git-square:before { content: @fa-var-git-square; } +.@{fa-css-prefix}-github:before { content: @fa-var-github; } +.@{fa-css-prefix}-github-alt:before { content: @fa-var-github-alt; } +.@{fa-css-prefix}-github-square:before { content: @fa-var-github-square; } +.@{fa-css-prefix}-gitkraken:before { content: @fa-var-gitkraken; } +.@{fa-css-prefix}-gitlab:before { content: @fa-var-gitlab; } +.@{fa-css-prefix}-gitter:before { content: @fa-var-gitter; } +.@{fa-css-prefix}-glass-martini:before { content: @fa-var-glass-martini; } +.@{fa-css-prefix}-glass-martini-alt:before { content: @fa-var-glass-martini-alt; } +.@{fa-css-prefix}-glasses:before { content: @fa-var-glasses; } +.@{fa-css-prefix}-glide:before { content: @fa-var-glide; } +.@{fa-css-prefix}-glide-g:before { content: @fa-var-glide-g; } +.@{fa-css-prefix}-globe:before { content: @fa-var-globe; } +.@{fa-css-prefix}-globe-africa:before { content: @fa-var-globe-africa; } +.@{fa-css-prefix}-globe-americas:before { content: @fa-var-globe-americas; } +.@{fa-css-prefix}-globe-asia:before { content: @fa-var-globe-asia; } +.@{fa-css-prefix}-gofore:before { content: @fa-var-gofore; } +.@{fa-css-prefix}-golf-ball:before { content: @fa-var-golf-ball; } +.@{fa-css-prefix}-goodreads:before { content: @fa-var-goodreads; } +.@{fa-css-prefix}-goodreads-g:before { content: @fa-var-goodreads-g; } +.@{fa-css-prefix}-google:before { content: @fa-var-google; } +.@{fa-css-prefix}-google-drive:before { content: @fa-var-google-drive; } +.@{fa-css-prefix}-google-play:before { content: @fa-var-google-play; } +.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus; } +.@{fa-css-prefix}-google-plus-g:before { content: @fa-var-google-plus-g; } +.@{fa-css-prefix}-google-plus-square:before { content: @fa-var-google-plus-square; } +.@{fa-css-prefix}-google-wallet:before { content: @fa-var-google-wallet; } +.@{fa-css-prefix}-graduation-cap:before { content: @fa-var-graduation-cap; } +.@{fa-css-prefix}-gratipay:before { content: @fa-var-gratipay; } +.@{fa-css-prefix}-grav:before { content: @fa-var-grav; } +.@{fa-css-prefix}-greater-than:before { content: @fa-var-greater-than; } +.@{fa-css-prefix}-greater-than-equal:before { content: @fa-var-greater-than-equal; } +.@{fa-css-prefix}-grimace:before { content: @fa-var-grimace; } +.@{fa-css-prefix}-grin:before { content: @fa-var-grin; } +.@{fa-css-prefix}-grin-alt:before { content: @fa-var-grin-alt; } +.@{fa-css-prefix}-grin-beam:before { content: @fa-var-grin-beam; } +.@{fa-css-prefix}-grin-beam-sweat:before { content: @fa-var-grin-beam-sweat; } +.@{fa-css-prefix}-grin-hearts:before { content: @fa-var-grin-hearts; } +.@{fa-css-prefix}-grin-squint:before { content: @fa-var-grin-squint; } +.@{fa-css-prefix}-grin-squint-tears:before { content: @fa-var-grin-squint-tears; } +.@{fa-css-prefix}-grin-stars:before { content: @fa-var-grin-stars; } +.@{fa-css-prefix}-grin-tears:before { content: @fa-var-grin-tears; } +.@{fa-css-prefix}-grin-tongue:before { content: @fa-var-grin-tongue; } +.@{fa-css-prefix}-grin-tongue-squint:before { content: @fa-var-grin-tongue-squint; } +.@{fa-css-prefix}-grin-tongue-wink:before { content: @fa-var-grin-tongue-wink; } +.@{fa-css-prefix}-grin-wink:before { content: @fa-var-grin-wink; } +.@{fa-css-prefix}-grip-horizontal:before { content: @fa-var-grip-horizontal; } +.@{fa-css-prefix}-grip-vertical:before { content: @fa-var-grip-vertical; } +.@{fa-css-prefix}-gripfire:before { content: @fa-var-gripfire; } +.@{fa-css-prefix}-grunt:before { content: @fa-var-grunt; } +.@{fa-css-prefix}-gulp:before { content: @fa-var-gulp; } +.@{fa-css-prefix}-h-square:before { content: @fa-var-h-square; } +.@{fa-css-prefix}-hacker-news:before { content: @fa-var-hacker-news; } +.@{fa-css-prefix}-hacker-news-square:before { content: @fa-var-hacker-news-square; } +.@{fa-css-prefix}-hand-holding:before { content: @fa-var-hand-holding; } +.@{fa-css-prefix}-hand-holding-heart:before { content: @fa-var-hand-holding-heart; } +.@{fa-css-prefix}-hand-holding-usd:before { content: @fa-var-hand-holding-usd; } +.@{fa-css-prefix}-hand-lizard:before { content: @fa-var-hand-lizard; } +.@{fa-css-prefix}-hand-paper:before { content: @fa-var-hand-paper; } +.@{fa-css-prefix}-hand-peace:before { content: @fa-var-hand-peace; } +.@{fa-css-prefix}-hand-point-down:before { content: @fa-var-hand-point-down; } +.@{fa-css-prefix}-hand-point-left:before { content: @fa-var-hand-point-left; } +.@{fa-css-prefix}-hand-point-right:before { content: @fa-var-hand-point-right; } +.@{fa-css-prefix}-hand-point-up:before { content: @fa-var-hand-point-up; } +.@{fa-css-prefix}-hand-pointer:before { content: @fa-var-hand-pointer; } +.@{fa-css-prefix}-hand-rock:before { content: @fa-var-hand-rock; } +.@{fa-css-prefix}-hand-scissors:before { content: @fa-var-hand-scissors; } +.@{fa-css-prefix}-hand-spock:before { content: @fa-var-hand-spock; } +.@{fa-css-prefix}-hands:before { content: @fa-var-hands; } +.@{fa-css-prefix}-hands-helping:before { content: @fa-var-hands-helping; } +.@{fa-css-prefix}-handshake:before { content: @fa-var-handshake; } +.@{fa-css-prefix}-hashtag:before { content: @fa-var-hashtag; } +.@{fa-css-prefix}-hdd:before { content: @fa-var-hdd; } +.@{fa-css-prefix}-heading:before { content: @fa-var-heading; } +.@{fa-css-prefix}-headphones:before { content: @fa-var-headphones; } +.@{fa-css-prefix}-headphones-alt:before { content: @fa-var-headphones-alt; } +.@{fa-css-prefix}-headset:before { content: @fa-var-headset; } +.@{fa-css-prefix}-heart:before { content: @fa-var-heart; } +.@{fa-css-prefix}-heartbeat:before { content: @fa-var-heartbeat; } +.@{fa-css-prefix}-helicopter:before { content: @fa-var-helicopter; } +.@{fa-css-prefix}-highlighter:before { content: @fa-var-highlighter; } +.@{fa-css-prefix}-hips:before { content: @fa-var-hips; } +.@{fa-css-prefix}-hire-a-helper:before { content: @fa-var-hire-a-helper; } +.@{fa-css-prefix}-history:before { content: @fa-var-history; } +.@{fa-css-prefix}-hockey-puck:before { content: @fa-var-hockey-puck; } +.@{fa-css-prefix}-home:before { content: @fa-var-home; } +.@{fa-css-prefix}-hooli:before { content: @fa-var-hooli; } +.@{fa-css-prefix}-hornbill:before { content: @fa-var-hornbill; } +.@{fa-css-prefix}-hospital:before { content: @fa-var-hospital; } +.@{fa-css-prefix}-hospital-alt:before { content: @fa-var-hospital-alt; } +.@{fa-css-prefix}-hospital-symbol:before { content: @fa-var-hospital-symbol; } +.@{fa-css-prefix}-hot-tub:before { content: @fa-var-hot-tub; } +.@{fa-css-prefix}-hotel:before { content: @fa-var-hotel; } +.@{fa-css-prefix}-hotjar:before { content: @fa-var-hotjar; } +.@{fa-css-prefix}-hourglass:before { content: @fa-var-hourglass; } +.@{fa-css-prefix}-hourglass-end:before { content: @fa-var-hourglass-end; } +.@{fa-css-prefix}-hourglass-half:before { content: @fa-var-hourglass-half; } +.@{fa-css-prefix}-hourglass-start:before { content: @fa-var-hourglass-start; } +.@{fa-css-prefix}-houzz:before { content: @fa-var-houzz; } +.@{fa-css-prefix}-html5:before { content: @fa-var-html5; } +.@{fa-css-prefix}-hubspot:before { content: @fa-var-hubspot; } +.@{fa-css-prefix}-i-cursor:before { content: @fa-var-i-cursor; } +.@{fa-css-prefix}-id-badge:before { content: @fa-var-id-badge; } +.@{fa-css-prefix}-id-card:before { content: @fa-var-id-card; } +.@{fa-css-prefix}-id-card-alt:before { content: @fa-var-id-card-alt; } +.@{fa-css-prefix}-image:before { content: @fa-var-image; } +.@{fa-css-prefix}-images:before { content: @fa-var-images; } +.@{fa-css-prefix}-imdb:before { content: @fa-var-imdb; } +.@{fa-css-prefix}-inbox:before { content: @fa-var-inbox; } +.@{fa-css-prefix}-indent:before { content: @fa-var-indent; } +.@{fa-css-prefix}-industry:before { content: @fa-var-industry; } +.@{fa-css-prefix}-infinity:before { content: @fa-var-infinity; } +.@{fa-css-prefix}-info:before { content: @fa-var-info; } +.@{fa-css-prefix}-info-circle:before { content: @fa-var-info-circle; } +.@{fa-css-prefix}-instagram:before { content: @fa-var-instagram; } +.@{fa-css-prefix}-internet-explorer:before { content: @fa-var-internet-explorer; } +.@{fa-css-prefix}-ioxhost:before { content: @fa-var-ioxhost; } +.@{fa-css-prefix}-italic:before { content: @fa-var-italic; } +.@{fa-css-prefix}-itunes:before { content: @fa-var-itunes; } +.@{fa-css-prefix}-itunes-note:before { content: @fa-var-itunes-note; } +.@{fa-css-prefix}-java:before { content: @fa-var-java; } +.@{fa-css-prefix}-jedi-order:before { content: @fa-var-jedi-order; } +.@{fa-css-prefix}-jenkins:before { content: @fa-var-jenkins; } +.@{fa-css-prefix}-joget:before { content: @fa-var-joget; } +.@{fa-css-prefix}-joint:before { content: @fa-var-joint; } +.@{fa-css-prefix}-joomla:before { content: @fa-var-joomla; } +.@{fa-css-prefix}-js:before { content: @fa-var-js; } +.@{fa-css-prefix}-js-square:before { content: @fa-var-js-square; } +.@{fa-css-prefix}-jsfiddle:before { content: @fa-var-jsfiddle; } +.@{fa-css-prefix}-key:before { content: @fa-var-key; } +.@{fa-css-prefix}-keybase:before { content: @fa-var-keybase; } +.@{fa-css-prefix}-keyboard:before { content: @fa-var-keyboard; } +.@{fa-css-prefix}-keycdn:before { content: @fa-var-keycdn; } +.@{fa-css-prefix}-kickstarter:before { content: @fa-var-kickstarter; } +.@{fa-css-prefix}-kickstarter-k:before { content: @fa-var-kickstarter-k; } +.@{fa-css-prefix}-kiss:before { content: @fa-var-kiss; } +.@{fa-css-prefix}-kiss-beam:before { content: @fa-var-kiss-beam; } +.@{fa-css-prefix}-kiss-wink-heart:before { content: @fa-var-kiss-wink-heart; } +.@{fa-css-prefix}-kiwi-bird:before { content: @fa-var-kiwi-bird; } +.@{fa-css-prefix}-korvue:before { content: @fa-var-korvue; } +.@{fa-css-prefix}-language:before { content: @fa-var-language; } +.@{fa-css-prefix}-laptop:before { content: @fa-var-laptop; } +.@{fa-css-prefix}-laravel:before { content: @fa-var-laravel; } +.@{fa-css-prefix}-lastfm:before { content: @fa-var-lastfm; } +.@{fa-css-prefix}-lastfm-square:before { content: @fa-var-lastfm-square; } +.@{fa-css-prefix}-laugh:before { content: @fa-var-laugh; } +.@{fa-css-prefix}-laugh-beam:before { content: @fa-var-laugh-beam; } +.@{fa-css-prefix}-laugh-squint:before { content: @fa-var-laugh-squint; } +.@{fa-css-prefix}-laugh-wink:before { content: @fa-var-laugh-wink; } +.@{fa-css-prefix}-leaf:before { content: @fa-var-leaf; } +.@{fa-css-prefix}-leanpub:before { content: @fa-var-leanpub; } +.@{fa-css-prefix}-lemon:before { content: @fa-var-lemon; } +.@{fa-css-prefix}-less:before { content: @fa-var-less; } +.@{fa-css-prefix}-less-than:before { content: @fa-var-less-than; } +.@{fa-css-prefix}-less-than-equal:before { content: @fa-var-less-than-equal; } +.@{fa-css-prefix}-level-down-alt:before { content: @fa-var-level-down-alt; } +.@{fa-css-prefix}-level-up-alt:before { content: @fa-var-level-up-alt; } +.@{fa-css-prefix}-life-ring:before { content: @fa-var-life-ring; } +.@{fa-css-prefix}-lightbulb:before { content: @fa-var-lightbulb; } +.@{fa-css-prefix}-line:before { content: @fa-var-line; } +.@{fa-css-prefix}-link:before { content: @fa-var-link; } +.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin; } +.@{fa-css-prefix}-linkedin-in:before { content: @fa-var-linkedin-in; } +.@{fa-css-prefix}-linode:before { content: @fa-var-linode; } +.@{fa-css-prefix}-linux:before { content: @fa-var-linux; } +.@{fa-css-prefix}-lira-sign:before { content: @fa-var-lira-sign; } +.@{fa-css-prefix}-list:before { content: @fa-var-list; } +.@{fa-css-prefix}-list-alt:before { content: @fa-var-list-alt; } +.@{fa-css-prefix}-list-ol:before { content: @fa-var-list-ol; } +.@{fa-css-prefix}-list-ul:before { content: @fa-var-list-ul; } +.@{fa-css-prefix}-location-arrow:before { content: @fa-var-location-arrow; } +.@{fa-css-prefix}-lock:before { content: @fa-var-lock; } +.@{fa-css-prefix}-lock-open:before { content: @fa-var-lock-open; } +.@{fa-css-prefix}-long-arrow-alt-down:before { content: @fa-var-long-arrow-alt-down; } +.@{fa-css-prefix}-long-arrow-alt-left:before { content: @fa-var-long-arrow-alt-left; } +.@{fa-css-prefix}-long-arrow-alt-right:before { content: @fa-var-long-arrow-alt-right; } +.@{fa-css-prefix}-long-arrow-alt-up:before { content: @fa-var-long-arrow-alt-up; } +.@{fa-css-prefix}-low-vision:before { content: @fa-var-low-vision; } +.@{fa-css-prefix}-luggage-cart:before { content: @fa-var-luggage-cart; } +.@{fa-css-prefix}-lyft:before { content: @fa-var-lyft; } +.@{fa-css-prefix}-magento:before { content: @fa-var-magento; } +.@{fa-css-prefix}-magic:before { content: @fa-var-magic; } +.@{fa-css-prefix}-magnet:before { content: @fa-var-magnet; } +.@{fa-css-prefix}-mailchimp:before { content: @fa-var-mailchimp; } +.@{fa-css-prefix}-male:before { content: @fa-var-male; } +.@{fa-css-prefix}-mandalorian:before { content: @fa-var-mandalorian; } +.@{fa-css-prefix}-map:before { content: @fa-var-map; } +.@{fa-css-prefix}-map-marked:before { content: @fa-var-map-marked; } +.@{fa-css-prefix}-map-marked-alt:before { content: @fa-var-map-marked-alt; } +.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker; } +.@{fa-css-prefix}-map-marker-alt:before { content: @fa-var-map-marker-alt; } +.@{fa-css-prefix}-map-pin:before { content: @fa-var-map-pin; } +.@{fa-css-prefix}-map-signs:before { content: @fa-var-map-signs; } +.@{fa-css-prefix}-marker:before { content: @fa-var-marker; } +.@{fa-css-prefix}-mars:before { content: @fa-var-mars; } +.@{fa-css-prefix}-mars-double:before { content: @fa-var-mars-double; } +.@{fa-css-prefix}-mars-stroke:before { content: @fa-var-mars-stroke; } +.@{fa-css-prefix}-mars-stroke-h:before { content: @fa-var-mars-stroke-h; } +.@{fa-css-prefix}-mars-stroke-v:before { content: @fa-var-mars-stroke-v; } +.@{fa-css-prefix}-mastodon:before { content: @fa-var-mastodon; } +.@{fa-css-prefix}-maxcdn:before { content: @fa-var-maxcdn; } +.@{fa-css-prefix}-medal:before { content: @fa-var-medal; } +.@{fa-css-prefix}-medapps:before { content: @fa-var-medapps; } +.@{fa-css-prefix}-medium:before { content: @fa-var-medium; } +.@{fa-css-prefix}-medium-m:before { content: @fa-var-medium-m; } +.@{fa-css-prefix}-medkit:before { content: @fa-var-medkit; } +.@{fa-css-prefix}-medrt:before { content: @fa-var-medrt; } +.@{fa-css-prefix}-meetup:before { content: @fa-var-meetup; } +.@{fa-css-prefix}-megaport:before { content: @fa-var-megaport; } +.@{fa-css-prefix}-meh:before { content: @fa-var-meh; } +.@{fa-css-prefix}-meh-blank:before { content: @fa-var-meh-blank; } +.@{fa-css-prefix}-meh-rolling-eyes:before { content: @fa-var-meh-rolling-eyes; } +.@{fa-css-prefix}-memory:before { content: @fa-var-memory; } +.@{fa-css-prefix}-mercury:before { content: @fa-var-mercury; } +.@{fa-css-prefix}-microchip:before { content: @fa-var-microchip; } +.@{fa-css-prefix}-microphone:before { content: @fa-var-microphone; } +.@{fa-css-prefix}-microphone-alt:before { content: @fa-var-microphone-alt; } +.@{fa-css-prefix}-microphone-alt-slash:before { content: @fa-var-microphone-alt-slash; } +.@{fa-css-prefix}-microphone-slash:before { content: @fa-var-microphone-slash; } +.@{fa-css-prefix}-microsoft:before { content: @fa-var-microsoft; } +.@{fa-css-prefix}-minus:before { content: @fa-var-minus; } +.@{fa-css-prefix}-minus-circle:before { content: @fa-var-minus-circle; } +.@{fa-css-prefix}-minus-square:before { content: @fa-var-minus-square; } +.@{fa-css-prefix}-mix:before { content: @fa-var-mix; } +.@{fa-css-prefix}-mixcloud:before { content: @fa-var-mixcloud; } +.@{fa-css-prefix}-mizuni:before { content: @fa-var-mizuni; } +.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile; } +.@{fa-css-prefix}-mobile-alt:before { content: @fa-var-mobile-alt; } +.@{fa-css-prefix}-modx:before { content: @fa-var-modx; } +.@{fa-css-prefix}-monero:before { content: @fa-var-monero; } +.@{fa-css-prefix}-money-bill:before { content: @fa-var-money-bill; } +.@{fa-css-prefix}-money-bill-alt:before { content: @fa-var-money-bill-alt; } +.@{fa-css-prefix}-money-bill-wave:before { content: @fa-var-money-bill-wave; } +.@{fa-css-prefix}-money-bill-wave-alt:before { content: @fa-var-money-bill-wave-alt; } +.@{fa-css-prefix}-money-check:before { content: @fa-var-money-check; } +.@{fa-css-prefix}-money-check-alt:before { content: @fa-var-money-check-alt; } +.@{fa-css-prefix}-monument:before { content: @fa-var-monument; } +.@{fa-css-prefix}-moon:before { content: @fa-var-moon; } +.@{fa-css-prefix}-mortar-pestle:before { content: @fa-var-mortar-pestle; } +.@{fa-css-prefix}-motorcycle:before { content: @fa-var-motorcycle; } +.@{fa-css-prefix}-mouse-pointer:before { content: @fa-var-mouse-pointer; } +.@{fa-css-prefix}-music:before { content: @fa-var-music; } +.@{fa-css-prefix}-napster:before { content: @fa-var-napster; } +.@{fa-css-prefix}-neuter:before { content: @fa-var-neuter; } +.@{fa-css-prefix}-newspaper:before { content: @fa-var-newspaper; } +.@{fa-css-prefix}-nimblr:before { content: @fa-var-nimblr; } +.@{fa-css-prefix}-nintendo-switch:before { content: @fa-var-nintendo-switch; } +.@{fa-css-prefix}-node:before { content: @fa-var-node; } +.@{fa-css-prefix}-node-js:before { content: @fa-var-node-js; } +.@{fa-css-prefix}-not-equal:before { content: @fa-var-not-equal; } +.@{fa-css-prefix}-notes-medical:before { content: @fa-var-notes-medical; } +.@{fa-css-prefix}-npm:before { content: @fa-var-npm; } +.@{fa-css-prefix}-ns8:before { content: @fa-var-ns8; } +.@{fa-css-prefix}-nutritionix:before { content: @fa-var-nutritionix; } +.@{fa-css-prefix}-object-group:before { content: @fa-var-object-group; } +.@{fa-css-prefix}-object-ungroup:before { content: @fa-var-object-ungroup; } +.@{fa-css-prefix}-odnoklassniki:before { content: @fa-var-odnoklassniki; } +.@{fa-css-prefix}-odnoklassniki-square:before { content: @fa-var-odnoklassniki-square; } +.@{fa-css-prefix}-old-republic:before { content: @fa-var-old-republic; } +.@{fa-css-prefix}-opencart:before { content: @fa-var-opencart; } +.@{fa-css-prefix}-openid:before { content: @fa-var-openid; } +.@{fa-css-prefix}-opera:before { content: @fa-var-opera; } +.@{fa-css-prefix}-optin-monster:before { content: @fa-var-optin-monster; } +.@{fa-css-prefix}-osi:before { content: @fa-var-osi; } +.@{fa-css-prefix}-outdent:before { content: @fa-var-outdent; } +.@{fa-css-prefix}-page4:before { content: @fa-var-page4; } +.@{fa-css-prefix}-pagelines:before { content: @fa-var-pagelines; } +.@{fa-css-prefix}-paint-brush:before { content: @fa-var-paint-brush; } +.@{fa-css-prefix}-paint-roller:before { content: @fa-var-paint-roller; } +.@{fa-css-prefix}-palette:before { content: @fa-var-palette; } +.@{fa-css-prefix}-palfed:before { content: @fa-var-palfed; } +.@{fa-css-prefix}-pallet:before { content: @fa-var-pallet; } +.@{fa-css-prefix}-paper-plane:before { content: @fa-var-paper-plane; } +.@{fa-css-prefix}-paperclip:before { content: @fa-var-paperclip; } +.@{fa-css-prefix}-parachute-box:before { content: @fa-var-parachute-box; } +.@{fa-css-prefix}-paragraph:before { content: @fa-var-paragraph; } +.@{fa-css-prefix}-parking:before { content: @fa-var-parking; } +.@{fa-css-prefix}-passport:before { content: @fa-var-passport; } +.@{fa-css-prefix}-paste:before { content: @fa-var-paste; } +.@{fa-css-prefix}-patreon:before { content: @fa-var-patreon; } +.@{fa-css-prefix}-pause:before { content: @fa-var-pause; } +.@{fa-css-prefix}-pause-circle:before { content: @fa-var-pause-circle; } +.@{fa-css-prefix}-paw:before { content: @fa-var-paw; } +.@{fa-css-prefix}-paypal:before { content: @fa-var-paypal; } +.@{fa-css-prefix}-pen:before { content: @fa-var-pen; } +.@{fa-css-prefix}-pen-alt:before { content: @fa-var-pen-alt; } +.@{fa-css-prefix}-pen-fancy:before { content: @fa-var-pen-fancy; } +.@{fa-css-prefix}-pen-nib:before { content: @fa-var-pen-nib; } +.@{fa-css-prefix}-pen-square:before { content: @fa-var-pen-square; } +.@{fa-css-prefix}-pencil-alt:before { content: @fa-var-pencil-alt; } +.@{fa-css-prefix}-pencil-ruler:before { content: @fa-var-pencil-ruler; } +.@{fa-css-prefix}-people-carry:before { content: @fa-var-people-carry; } +.@{fa-css-prefix}-percent:before { content: @fa-var-percent; } +.@{fa-css-prefix}-percentage:before { content: @fa-var-percentage; } +.@{fa-css-prefix}-periscope:before { content: @fa-var-periscope; } +.@{fa-css-prefix}-phabricator:before { content: @fa-var-phabricator; } +.@{fa-css-prefix}-phoenix-framework:before { content: @fa-var-phoenix-framework; } +.@{fa-css-prefix}-phoenix-squadron:before { content: @fa-var-phoenix-squadron; } +.@{fa-css-prefix}-phone:before { content: @fa-var-phone; } +.@{fa-css-prefix}-phone-slash:before { content: @fa-var-phone-slash; } +.@{fa-css-prefix}-phone-square:before { content: @fa-var-phone-square; } +.@{fa-css-prefix}-phone-volume:before { content: @fa-var-phone-volume; } +.@{fa-css-prefix}-php:before { content: @fa-var-php; } +.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; } +.@{fa-css-prefix}-pied-piper-alt:before { content: @fa-var-pied-piper-alt; } +.@{fa-css-prefix}-pied-piper-hat:before { content: @fa-var-pied-piper-hat; } +.@{fa-css-prefix}-pied-piper-pp:before { content: @fa-var-pied-piper-pp; } +.@{fa-css-prefix}-piggy-bank:before { content: @fa-var-piggy-bank; } +.@{fa-css-prefix}-pills:before { content: @fa-var-pills; } +.@{fa-css-prefix}-pinterest:before { content: @fa-var-pinterest; } +.@{fa-css-prefix}-pinterest-p:before { content: @fa-var-pinterest-p; } +.@{fa-css-prefix}-pinterest-square:before { content: @fa-var-pinterest-square; } +.@{fa-css-prefix}-plane:before { content: @fa-var-plane; } +.@{fa-css-prefix}-plane-arrival:before { content: @fa-var-plane-arrival; } +.@{fa-css-prefix}-plane-departure:before { content: @fa-var-plane-departure; } +.@{fa-css-prefix}-play:before { content: @fa-var-play; } +.@{fa-css-prefix}-play-circle:before { content: @fa-var-play-circle; } +.@{fa-css-prefix}-playstation:before { content: @fa-var-playstation; } +.@{fa-css-prefix}-plug:before { content: @fa-var-plug; } +.@{fa-css-prefix}-plus:before { content: @fa-var-plus; } +.@{fa-css-prefix}-plus-circle:before { content: @fa-var-plus-circle; } +.@{fa-css-prefix}-plus-square:before { content: @fa-var-plus-square; } +.@{fa-css-prefix}-podcast:before { content: @fa-var-podcast; } +.@{fa-css-prefix}-poo:before { content: @fa-var-poo; } +.@{fa-css-prefix}-portrait:before { content: @fa-var-portrait; } +.@{fa-css-prefix}-pound-sign:before { content: @fa-var-pound-sign; } +.@{fa-css-prefix}-power-off:before { content: @fa-var-power-off; } +.@{fa-css-prefix}-prescription:before { content: @fa-var-prescription; } +.@{fa-css-prefix}-prescription-bottle:before { content: @fa-var-prescription-bottle; } +.@{fa-css-prefix}-prescription-bottle-alt:before { content: @fa-var-prescription-bottle-alt; } +.@{fa-css-prefix}-print:before { content: @fa-var-print; } +.@{fa-css-prefix}-procedures:before { content: @fa-var-procedures; } +.@{fa-css-prefix}-product-hunt:before { content: @fa-var-product-hunt; } +.@{fa-css-prefix}-project-diagram:before { content: @fa-var-project-diagram; } +.@{fa-css-prefix}-pushed:before { content: @fa-var-pushed; } +.@{fa-css-prefix}-puzzle-piece:before { content: @fa-var-puzzle-piece; } +.@{fa-css-prefix}-python:before { content: @fa-var-python; } +.@{fa-css-prefix}-qq:before { content: @fa-var-qq; } +.@{fa-css-prefix}-qrcode:before { content: @fa-var-qrcode; } +.@{fa-css-prefix}-question:before { content: @fa-var-question; } +.@{fa-css-prefix}-question-circle:before { content: @fa-var-question-circle; } +.@{fa-css-prefix}-quidditch:before { content: @fa-var-quidditch; } +.@{fa-css-prefix}-quinscape:before { content: @fa-var-quinscape; } +.@{fa-css-prefix}-quora:before { content: @fa-var-quora; } +.@{fa-css-prefix}-quote-left:before { content: @fa-var-quote-left; } +.@{fa-css-prefix}-quote-right:before { content: @fa-var-quote-right; } +.@{fa-css-prefix}-r-project:before { content: @fa-var-r-project; } +.@{fa-css-prefix}-random:before { content: @fa-var-random; } +.@{fa-css-prefix}-ravelry:before { content: @fa-var-ravelry; } +.@{fa-css-prefix}-react:before { content: @fa-var-react; } +.@{fa-css-prefix}-readme:before { content: @fa-var-readme; } +.@{fa-css-prefix}-rebel:before { content: @fa-var-rebel; } +.@{fa-css-prefix}-receipt:before { content: @fa-var-receipt; } +.@{fa-css-prefix}-recycle:before { content: @fa-var-recycle; } +.@{fa-css-prefix}-red-river:before { content: @fa-var-red-river; } +.@{fa-css-prefix}-reddit:before { content: @fa-var-reddit; } +.@{fa-css-prefix}-reddit-alien:before { content: @fa-var-reddit-alien; } +.@{fa-css-prefix}-reddit-square:before { content: @fa-var-reddit-square; } +.@{fa-css-prefix}-redo:before { content: @fa-var-redo; } +.@{fa-css-prefix}-redo-alt:before { content: @fa-var-redo-alt; } +.@{fa-css-prefix}-registered:before { content: @fa-var-registered; } +.@{fa-css-prefix}-rendact:before { content: @fa-var-rendact; } +.@{fa-css-prefix}-renren:before { content: @fa-var-renren; } +.@{fa-css-prefix}-reply:before { content: @fa-var-reply; } +.@{fa-css-prefix}-reply-all:before { content: @fa-var-reply-all; } +.@{fa-css-prefix}-replyd:before { content: @fa-var-replyd; } +.@{fa-css-prefix}-researchgate:before { content: @fa-var-researchgate; } +.@{fa-css-prefix}-resolving:before { content: @fa-var-resolving; } +.@{fa-css-prefix}-retweet:before { content: @fa-var-retweet; } +.@{fa-css-prefix}-rev:before { content: @fa-var-rev; } +.@{fa-css-prefix}-ribbon:before { content: @fa-var-ribbon; } +.@{fa-css-prefix}-road:before { content: @fa-var-road; } +.@{fa-css-prefix}-robot:before { content: @fa-var-robot; } +.@{fa-css-prefix}-rocket:before { content: @fa-var-rocket; } +.@{fa-css-prefix}-rocketchat:before { content: @fa-var-rocketchat; } +.@{fa-css-prefix}-rockrms:before { content: @fa-var-rockrms; } +.@{fa-css-prefix}-rss:before { content: @fa-var-rss; } +.@{fa-css-prefix}-rss-square:before { content: @fa-var-rss-square; } +.@{fa-css-prefix}-ruble-sign:before { content: @fa-var-ruble-sign; } +.@{fa-css-prefix}-ruler:before { content: @fa-var-ruler; } +.@{fa-css-prefix}-ruler-combined:before { content: @fa-var-ruler-combined; } +.@{fa-css-prefix}-ruler-horizontal:before { content: @fa-var-ruler-horizontal; } +.@{fa-css-prefix}-ruler-vertical:before { content: @fa-var-ruler-vertical; } +.@{fa-css-prefix}-rupee-sign:before { content: @fa-var-rupee-sign; } +.@{fa-css-prefix}-sad-cry:before { content: @fa-var-sad-cry; } +.@{fa-css-prefix}-sad-tear:before { content: @fa-var-sad-tear; } +.@{fa-css-prefix}-safari:before { content: @fa-var-safari; } +.@{fa-css-prefix}-sass:before { content: @fa-var-sass; } +.@{fa-css-prefix}-save:before { content: @fa-var-save; } +.@{fa-css-prefix}-schlix:before { content: @fa-var-schlix; } +.@{fa-css-prefix}-school:before { content: @fa-var-school; } +.@{fa-css-prefix}-screwdriver:before { content: @fa-var-screwdriver; } +.@{fa-css-prefix}-scribd:before { content: @fa-var-scribd; } +.@{fa-css-prefix}-search:before { content: @fa-var-search; } +.@{fa-css-prefix}-search-minus:before { content: @fa-var-search-minus; } +.@{fa-css-prefix}-search-plus:before { content: @fa-var-search-plus; } +.@{fa-css-prefix}-searchengin:before { content: @fa-var-searchengin; } +.@{fa-css-prefix}-seedling:before { content: @fa-var-seedling; } +.@{fa-css-prefix}-sellcast:before { content: @fa-var-sellcast; } +.@{fa-css-prefix}-sellsy:before { content: @fa-var-sellsy; } +.@{fa-css-prefix}-server:before { content: @fa-var-server; } +.@{fa-css-prefix}-servicestack:before { content: @fa-var-servicestack; } +.@{fa-css-prefix}-share:before { content: @fa-var-share; } +.@{fa-css-prefix}-share-alt:before { content: @fa-var-share-alt; } +.@{fa-css-prefix}-share-alt-square:before { content: @fa-var-share-alt-square; } +.@{fa-css-prefix}-share-square:before { content: @fa-var-share-square; } +.@{fa-css-prefix}-shekel-sign:before { content: @fa-var-shekel-sign; } +.@{fa-css-prefix}-shield-alt:before { content: @fa-var-shield-alt; } +.@{fa-css-prefix}-ship:before { content: @fa-var-ship; } +.@{fa-css-prefix}-shipping-fast:before { content: @fa-var-shipping-fast; } +.@{fa-css-prefix}-shirtsinbulk:before { content: @fa-var-shirtsinbulk; } +.@{fa-css-prefix}-shoe-prints:before { content: @fa-var-shoe-prints; } +.@{fa-css-prefix}-shopping-bag:before { content: @fa-var-shopping-bag; } +.@{fa-css-prefix}-shopping-basket:before { content: @fa-var-shopping-basket; } +.@{fa-css-prefix}-shopping-cart:before { content: @fa-var-shopping-cart; } +.@{fa-css-prefix}-shopware:before { content: @fa-var-shopware; } +.@{fa-css-prefix}-shower:before { content: @fa-var-shower; } +.@{fa-css-prefix}-shuttle-van:before { content: @fa-var-shuttle-van; } +.@{fa-css-prefix}-sign:before { content: @fa-var-sign; } +.@{fa-css-prefix}-sign-in-alt:before { content: @fa-var-sign-in-alt; } +.@{fa-css-prefix}-sign-language:before { content: @fa-var-sign-language; } +.@{fa-css-prefix}-sign-out-alt:before { content: @fa-var-sign-out-alt; } +.@{fa-css-prefix}-signal:before { content: @fa-var-signal; } +.@{fa-css-prefix}-signature:before { content: @fa-var-signature; } +.@{fa-css-prefix}-simplybuilt:before { content: @fa-var-simplybuilt; } +.@{fa-css-prefix}-sistrix:before { content: @fa-var-sistrix; } +.@{fa-css-prefix}-sitemap:before { content: @fa-var-sitemap; } +.@{fa-css-prefix}-sith:before { content: @fa-var-sith; } +.@{fa-css-prefix}-skull:before { content: @fa-var-skull; } +.@{fa-css-prefix}-skyatlas:before { content: @fa-var-skyatlas; } +.@{fa-css-prefix}-skype:before { content: @fa-var-skype; } +.@{fa-css-prefix}-slack:before { content: @fa-var-slack; } +.@{fa-css-prefix}-slack-hash:before { content: @fa-var-slack-hash; } +.@{fa-css-prefix}-sliders-h:before { content: @fa-var-sliders-h; } +.@{fa-css-prefix}-slideshare:before { content: @fa-var-slideshare; } +.@{fa-css-prefix}-smile:before { content: @fa-var-smile; } +.@{fa-css-prefix}-smile-beam:before { content: @fa-var-smile-beam; } +.@{fa-css-prefix}-smile-wink:before { content: @fa-var-smile-wink; } +.@{fa-css-prefix}-smoking:before { content: @fa-var-smoking; } +.@{fa-css-prefix}-smoking-ban:before { content: @fa-var-smoking-ban; } +.@{fa-css-prefix}-snapchat:before { content: @fa-var-snapchat; } +.@{fa-css-prefix}-snapchat-ghost:before { content: @fa-var-snapchat-ghost; } +.@{fa-css-prefix}-snapchat-square:before { content: @fa-var-snapchat-square; } +.@{fa-css-prefix}-snowflake:before { content: @fa-var-snowflake; } +.@{fa-css-prefix}-solar-panel:before { content: @fa-var-solar-panel; } +.@{fa-css-prefix}-sort:before { content: @fa-var-sort; } +.@{fa-css-prefix}-sort-alpha-down:before { content: @fa-var-sort-alpha-down; } +.@{fa-css-prefix}-sort-alpha-up:before { content: @fa-var-sort-alpha-up; } +.@{fa-css-prefix}-sort-amount-down:before { content: @fa-var-sort-amount-down; } +.@{fa-css-prefix}-sort-amount-up:before { content: @fa-var-sort-amount-up; } +.@{fa-css-prefix}-sort-down:before { content: @fa-var-sort-down; } +.@{fa-css-prefix}-sort-numeric-down:before { content: @fa-var-sort-numeric-down; } +.@{fa-css-prefix}-sort-numeric-up:before { content: @fa-var-sort-numeric-up; } +.@{fa-css-prefix}-sort-up:before { content: @fa-var-sort-up; } +.@{fa-css-prefix}-soundcloud:before { content: @fa-var-soundcloud; } +.@{fa-css-prefix}-spa:before { content: @fa-var-spa; } +.@{fa-css-prefix}-space-shuttle:before { content: @fa-var-space-shuttle; } +.@{fa-css-prefix}-speakap:before { content: @fa-var-speakap; } +.@{fa-css-prefix}-spinner:before { content: @fa-var-spinner; } +.@{fa-css-prefix}-splotch:before { content: @fa-var-splotch; } +.@{fa-css-prefix}-spotify:before { content: @fa-var-spotify; } +.@{fa-css-prefix}-spray-can:before { content: @fa-var-spray-can; } +.@{fa-css-prefix}-square:before { content: @fa-var-square; } +.@{fa-css-prefix}-square-full:before { content: @fa-var-square-full; } +.@{fa-css-prefix}-squarespace:before { content: @fa-var-squarespace; } +.@{fa-css-prefix}-stack-exchange:before { content: @fa-var-stack-exchange; } +.@{fa-css-prefix}-stack-overflow:before { content: @fa-var-stack-overflow; } +.@{fa-css-prefix}-stamp:before { content: @fa-var-stamp; } +.@{fa-css-prefix}-star:before { content: @fa-var-star; } +.@{fa-css-prefix}-star-half:before { content: @fa-var-star-half; } +.@{fa-css-prefix}-star-half-alt:before { content: @fa-var-star-half-alt; } +.@{fa-css-prefix}-staylinked:before { content: @fa-var-staylinked; } +.@{fa-css-prefix}-steam:before { content: @fa-var-steam; } +.@{fa-css-prefix}-steam-square:before { content: @fa-var-steam-square; } +.@{fa-css-prefix}-steam-symbol:before { content: @fa-var-steam-symbol; } +.@{fa-css-prefix}-step-backward:before { content: @fa-var-step-backward; } +.@{fa-css-prefix}-step-forward:before { content: @fa-var-step-forward; } +.@{fa-css-prefix}-stethoscope:before { content: @fa-var-stethoscope; } +.@{fa-css-prefix}-sticker-mule:before { content: @fa-var-sticker-mule; } +.@{fa-css-prefix}-sticky-note:before { content: @fa-var-sticky-note; } +.@{fa-css-prefix}-stop:before { content: @fa-var-stop; } +.@{fa-css-prefix}-stop-circle:before { content: @fa-var-stop-circle; } +.@{fa-css-prefix}-stopwatch:before { content: @fa-var-stopwatch; } +.@{fa-css-prefix}-store:before { content: @fa-var-store; } +.@{fa-css-prefix}-store-alt:before { content: @fa-var-store-alt; } +.@{fa-css-prefix}-strava:before { content: @fa-var-strava; } +.@{fa-css-prefix}-stream:before { content: @fa-var-stream; } +.@{fa-css-prefix}-street-view:before { content: @fa-var-street-view; } +.@{fa-css-prefix}-strikethrough:before { content: @fa-var-strikethrough; } +.@{fa-css-prefix}-stripe:before { content: @fa-var-stripe; } +.@{fa-css-prefix}-stripe-s:before { content: @fa-var-stripe-s; } +.@{fa-css-prefix}-stroopwafel:before { content: @fa-var-stroopwafel; } +.@{fa-css-prefix}-studiovinari:before { content: @fa-var-studiovinari; } +.@{fa-css-prefix}-stumbleupon:before { content: @fa-var-stumbleupon; } +.@{fa-css-prefix}-stumbleupon-circle:before { content: @fa-var-stumbleupon-circle; } +.@{fa-css-prefix}-subscript:before { content: @fa-var-subscript; } +.@{fa-css-prefix}-subway:before { content: @fa-var-subway; } +.@{fa-css-prefix}-suitcase:before { content: @fa-var-suitcase; } +.@{fa-css-prefix}-suitcase-rolling:before { content: @fa-var-suitcase-rolling; } +.@{fa-css-prefix}-sun:before { content: @fa-var-sun; } +.@{fa-css-prefix}-superpowers:before { content: @fa-var-superpowers; } +.@{fa-css-prefix}-superscript:before { content: @fa-var-superscript; } +.@{fa-css-prefix}-supple:before { content: @fa-var-supple; } +.@{fa-css-prefix}-surprise:before { content: @fa-var-surprise; } +.@{fa-css-prefix}-swatchbook:before { content: @fa-var-swatchbook; } +.@{fa-css-prefix}-swimmer:before { content: @fa-var-swimmer; } +.@{fa-css-prefix}-swimming-pool:before { content: @fa-var-swimming-pool; } +.@{fa-css-prefix}-sync:before { content: @fa-var-sync; } +.@{fa-css-prefix}-sync-alt:before { content: @fa-var-sync-alt; } +.@{fa-css-prefix}-syringe:before { content: @fa-var-syringe; } +.@{fa-css-prefix}-table:before { content: @fa-var-table; } +.@{fa-css-prefix}-table-tennis:before { content: @fa-var-table-tennis; } +.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet; } +.@{fa-css-prefix}-tablet-alt:before { content: @fa-var-tablet-alt; } +.@{fa-css-prefix}-tablets:before { content: @fa-var-tablets; } +.@{fa-css-prefix}-tachometer-alt:before { content: @fa-var-tachometer-alt; } +.@{fa-css-prefix}-tag:before { content: @fa-var-tag; } +.@{fa-css-prefix}-tags:before { content: @fa-var-tags; } +.@{fa-css-prefix}-tape:before { content: @fa-var-tape; } +.@{fa-css-prefix}-tasks:before { content: @fa-var-tasks; } +.@{fa-css-prefix}-taxi:before { content: @fa-var-taxi; } +.@{fa-css-prefix}-teamspeak:before { content: @fa-var-teamspeak; } +.@{fa-css-prefix}-telegram:before { content: @fa-var-telegram; } +.@{fa-css-prefix}-telegram-plane:before { content: @fa-var-telegram-plane; } +.@{fa-css-prefix}-tencent-weibo:before { content: @fa-var-tencent-weibo; } +.@{fa-css-prefix}-terminal:before { content: @fa-var-terminal; } +.@{fa-css-prefix}-text-height:before { content: @fa-var-text-height; } +.@{fa-css-prefix}-text-width:before { content: @fa-var-text-width; } +.@{fa-css-prefix}-th:before { content: @fa-var-th; } +.@{fa-css-prefix}-th-large:before { content: @fa-var-th-large; } +.@{fa-css-prefix}-th-list:before { content: @fa-var-th-list; } +.@{fa-css-prefix}-themeco:before { content: @fa-var-themeco; } +.@{fa-css-prefix}-themeisle:before { content: @fa-var-themeisle; } +.@{fa-css-prefix}-thermometer:before { content: @fa-var-thermometer; } +.@{fa-css-prefix}-thermometer-empty:before { content: @fa-var-thermometer-empty; } +.@{fa-css-prefix}-thermometer-full:before { content: @fa-var-thermometer-full; } +.@{fa-css-prefix}-thermometer-half:before { content: @fa-var-thermometer-half; } +.@{fa-css-prefix}-thermometer-quarter:before { content: @fa-var-thermometer-quarter; } +.@{fa-css-prefix}-thermometer-three-quarters:before { content: @fa-var-thermometer-three-quarters; } +.@{fa-css-prefix}-thumbs-down:before { content: @fa-var-thumbs-down; } +.@{fa-css-prefix}-thumbs-up:before { content: @fa-var-thumbs-up; } +.@{fa-css-prefix}-thumbtack:before { content: @fa-var-thumbtack; } +.@{fa-css-prefix}-ticket-alt:before { content: @fa-var-ticket-alt; } +.@{fa-css-prefix}-times:before { content: @fa-var-times; } +.@{fa-css-prefix}-times-circle:before { content: @fa-var-times-circle; } +.@{fa-css-prefix}-tint:before { content: @fa-var-tint; } +.@{fa-css-prefix}-tint-slash:before { content: @fa-var-tint-slash; } +.@{fa-css-prefix}-tired:before { content: @fa-var-tired; } +.@{fa-css-prefix}-toggle-off:before { content: @fa-var-toggle-off; } +.@{fa-css-prefix}-toggle-on:before { content: @fa-var-toggle-on; } +.@{fa-css-prefix}-toolbox:before { content: @fa-var-toolbox; } +.@{fa-css-prefix}-tooth:before { content: @fa-var-tooth; } +.@{fa-css-prefix}-trade-federation:before { content: @fa-var-trade-federation; } +.@{fa-css-prefix}-trademark:before { content: @fa-var-trademark; } +.@{fa-css-prefix}-train:before { content: @fa-var-train; } +.@{fa-css-prefix}-transgender:before { content: @fa-var-transgender; } +.@{fa-css-prefix}-transgender-alt:before { content: @fa-var-transgender-alt; } +.@{fa-css-prefix}-trash:before { content: @fa-var-trash; } +.@{fa-css-prefix}-trash-alt:before { content: @fa-var-trash-alt; } +.@{fa-css-prefix}-tree:before { content: @fa-var-tree; } +.@{fa-css-prefix}-trello:before { content: @fa-var-trello; } +.@{fa-css-prefix}-tripadvisor:before { content: @fa-var-tripadvisor; } +.@{fa-css-prefix}-trophy:before { content: @fa-var-trophy; } +.@{fa-css-prefix}-truck:before { content: @fa-var-truck; } +.@{fa-css-prefix}-truck-loading:before { content: @fa-var-truck-loading; } +.@{fa-css-prefix}-truck-moving:before { content: @fa-var-truck-moving; } +.@{fa-css-prefix}-tshirt:before { content: @fa-var-tshirt; } +.@{fa-css-prefix}-tty:before { content: @fa-var-tty; } +.@{fa-css-prefix}-tumblr:before { content: @fa-var-tumblr; } +.@{fa-css-prefix}-tumblr-square:before { content: @fa-var-tumblr-square; } +.@{fa-css-prefix}-tv:before { content: @fa-var-tv; } +.@{fa-css-prefix}-twitch:before { content: @fa-var-twitch; } +.@{fa-css-prefix}-twitter:before { content: @fa-var-twitter; } +.@{fa-css-prefix}-twitter-square:before { content: @fa-var-twitter-square; } +.@{fa-css-prefix}-typo3:before { content: @fa-var-typo3; } +.@{fa-css-prefix}-uber:before { content: @fa-var-uber; } +.@{fa-css-prefix}-uikit:before { content: @fa-var-uikit; } +.@{fa-css-prefix}-umbrella:before { content: @fa-var-umbrella; } +.@{fa-css-prefix}-umbrella-beach:before { content: @fa-var-umbrella-beach; } +.@{fa-css-prefix}-underline:before { content: @fa-var-underline; } +.@{fa-css-prefix}-undo:before { content: @fa-var-undo; } +.@{fa-css-prefix}-undo-alt:before { content: @fa-var-undo-alt; } +.@{fa-css-prefix}-uniregistry:before { content: @fa-var-uniregistry; } +.@{fa-css-prefix}-universal-access:before { content: @fa-var-universal-access; } +.@{fa-css-prefix}-university:before { content: @fa-var-university; } +.@{fa-css-prefix}-unlink:before { content: @fa-var-unlink; } +.@{fa-css-prefix}-unlock:before { content: @fa-var-unlock; } +.@{fa-css-prefix}-unlock-alt:before { content: @fa-var-unlock-alt; } +.@{fa-css-prefix}-untappd:before { content: @fa-var-untappd; } +.@{fa-css-prefix}-upload:before { content: @fa-var-upload; } +.@{fa-css-prefix}-usb:before { content: @fa-var-usb; } +.@{fa-css-prefix}-user:before { content: @fa-var-user; } +.@{fa-css-prefix}-user-alt:before { content: @fa-var-user-alt; } +.@{fa-css-prefix}-user-alt-slash:before { content: @fa-var-user-alt-slash; } +.@{fa-css-prefix}-user-astronaut:before { content: @fa-var-user-astronaut; } +.@{fa-css-prefix}-user-check:before { content: @fa-var-user-check; } +.@{fa-css-prefix}-user-circle:before { content: @fa-var-user-circle; } +.@{fa-css-prefix}-user-clock:before { content: @fa-var-user-clock; } +.@{fa-css-prefix}-user-cog:before { content: @fa-var-user-cog; } +.@{fa-css-prefix}-user-edit:before { content: @fa-var-user-edit; } +.@{fa-css-prefix}-user-friends:before { content: @fa-var-user-friends; } +.@{fa-css-prefix}-user-graduate:before { content: @fa-var-user-graduate; } +.@{fa-css-prefix}-user-lock:before { content: @fa-var-user-lock; } +.@{fa-css-prefix}-user-md:before { content: @fa-var-user-md; } +.@{fa-css-prefix}-user-minus:before { content: @fa-var-user-minus; } +.@{fa-css-prefix}-user-ninja:before { content: @fa-var-user-ninja; } +.@{fa-css-prefix}-user-plus:before { content: @fa-var-user-plus; } +.@{fa-css-prefix}-user-secret:before { content: @fa-var-user-secret; } +.@{fa-css-prefix}-user-shield:before { content: @fa-var-user-shield; } +.@{fa-css-prefix}-user-slash:before { content: @fa-var-user-slash; } +.@{fa-css-prefix}-user-tag:before { content: @fa-var-user-tag; } +.@{fa-css-prefix}-user-tie:before { content: @fa-var-user-tie; } +.@{fa-css-prefix}-user-times:before { content: @fa-var-user-times; } +.@{fa-css-prefix}-users:before { content: @fa-var-users; } +.@{fa-css-prefix}-users-cog:before { content: @fa-var-users-cog; } +.@{fa-css-prefix}-ussunnah:before { content: @fa-var-ussunnah; } +.@{fa-css-prefix}-utensil-spoon:before { content: @fa-var-utensil-spoon; } +.@{fa-css-prefix}-utensils:before { content: @fa-var-utensils; } +.@{fa-css-prefix}-vaadin:before { content: @fa-var-vaadin; } +.@{fa-css-prefix}-vector-square:before { content: @fa-var-vector-square; } +.@{fa-css-prefix}-venus:before { content: @fa-var-venus; } +.@{fa-css-prefix}-venus-double:before { content: @fa-var-venus-double; } +.@{fa-css-prefix}-venus-mars:before { content: @fa-var-venus-mars; } +.@{fa-css-prefix}-viacoin:before { content: @fa-var-viacoin; } +.@{fa-css-prefix}-viadeo:before { content: @fa-var-viadeo; } +.@{fa-css-prefix}-viadeo-square:before { content: @fa-var-viadeo-square; } +.@{fa-css-prefix}-vial:before { content: @fa-var-vial; } +.@{fa-css-prefix}-vials:before { content: @fa-var-vials; } +.@{fa-css-prefix}-viber:before { content: @fa-var-viber; } +.@{fa-css-prefix}-video:before { content: @fa-var-video; } +.@{fa-css-prefix}-video-slash:before { content: @fa-var-video-slash; } +.@{fa-css-prefix}-vimeo:before { content: @fa-var-vimeo; } +.@{fa-css-prefix}-vimeo-square:before { content: @fa-var-vimeo-square; } +.@{fa-css-prefix}-vimeo-v:before { content: @fa-var-vimeo-v; } +.@{fa-css-prefix}-vine:before { content: @fa-var-vine; } +.@{fa-css-prefix}-vk:before { content: @fa-var-vk; } +.@{fa-css-prefix}-vnv:before { content: @fa-var-vnv; } +.@{fa-css-prefix}-volleyball-ball:before { content: @fa-var-volleyball-ball; } +.@{fa-css-prefix}-volume-down:before { content: @fa-var-volume-down; } +.@{fa-css-prefix}-volume-off:before { content: @fa-var-volume-off; } +.@{fa-css-prefix}-volume-up:before { content: @fa-var-volume-up; } +.@{fa-css-prefix}-vuejs:before { content: @fa-var-vuejs; } +.@{fa-css-prefix}-walking:before { content: @fa-var-walking; } +.@{fa-css-prefix}-wallet:before { content: @fa-var-wallet; } +.@{fa-css-prefix}-warehouse:before { content: @fa-var-warehouse; } +.@{fa-css-prefix}-weebly:before { content: @fa-var-weebly; } +.@{fa-css-prefix}-weibo:before { content: @fa-var-weibo; } +.@{fa-css-prefix}-weight:before { content: @fa-var-weight; } +.@{fa-css-prefix}-weight-hanging:before { content: @fa-var-weight-hanging; } +.@{fa-css-prefix}-weixin:before { content: @fa-var-weixin; } +.@{fa-css-prefix}-whatsapp:before { content: @fa-var-whatsapp; } +.@{fa-css-prefix}-whatsapp-square:before { content: @fa-var-whatsapp-square; } +.@{fa-css-prefix}-wheelchair:before { content: @fa-var-wheelchair; } +.@{fa-css-prefix}-whmcs:before { content: @fa-var-whmcs; } +.@{fa-css-prefix}-wifi:before { content: @fa-var-wifi; } +.@{fa-css-prefix}-wikipedia-w:before { content: @fa-var-wikipedia-w; } +.@{fa-css-prefix}-window-close:before { content: @fa-var-window-close; } +.@{fa-css-prefix}-window-maximize:before { content: @fa-var-window-maximize; } +.@{fa-css-prefix}-window-minimize:before { content: @fa-var-window-minimize; } +.@{fa-css-prefix}-window-restore:before { content: @fa-var-window-restore; } +.@{fa-css-prefix}-windows:before { content: @fa-var-windows; } +.@{fa-css-prefix}-wine-glass:before { content: @fa-var-wine-glass; } +.@{fa-css-prefix}-wine-glass-alt:before { content: @fa-var-wine-glass-alt; } +.@{fa-css-prefix}-wix:before { content: @fa-var-wix; } +.@{fa-css-prefix}-wolf-pack-battalion:before { content: @fa-var-wolf-pack-battalion; } +.@{fa-css-prefix}-won-sign:before { content: @fa-var-won-sign; } +.@{fa-css-prefix}-wordpress:before { content: @fa-var-wordpress; } +.@{fa-css-prefix}-wordpress-simple:before { content: @fa-var-wordpress-simple; } +.@{fa-css-prefix}-wpbeginner:before { content: @fa-var-wpbeginner; } +.@{fa-css-prefix}-wpexplorer:before { content: @fa-var-wpexplorer; } +.@{fa-css-prefix}-wpforms:before { content: @fa-var-wpforms; } +.@{fa-css-prefix}-wrench:before { content: @fa-var-wrench; } +.@{fa-css-prefix}-x-ray:before { content: @fa-var-x-ray; } +.@{fa-css-prefix}-xbox:before { content: @fa-var-xbox; } +.@{fa-css-prefix}-xing:before { content: @fa-var-xing; } +.@{fa-css-prefix}-xing-square:before { content: @fa-var-xing-square; } +.@{fa-css-prefix}-y-combinator:before { content: @fa-var-y-combinator; } +.@{fa-css-prefix}-yahoo:before { content: @fa-var-yahoo; } +.@{fa-css-prefix}-yandex:before { content: @fa-var-yandex; } +.@{fa-css-prefix}-yandex-international:before { content: @fa-var-yandex-international; } +.@{fa-css-prefix}-yelp:before { content: @fa-var-yelp; } +.@{fa-css-prefix}-yen-sign:before { content: @fa-var-yen-sign; } +.@{fa-css-prefix}-yoast:before { content: @fa-var-yoast; } +.@{fa-css-prefix}-youtube:before { content: @fa-var-youtube; } +.@{fa-css-prefix}-youtube-square:before { content: @fa-var-youtube-square; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_larger.less b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_larger.less new file mode 100644 index 0000000000..6cbb1ec6ec --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_larger.less @@ -0,0 +1,27 @@ +// Icon Sizes +// ------------------------- + +.larger(@factor) when (@factor > 0) { + .larger((@factor - 1)); + + .@{fa-css-prefix}-@{factor}x { + font-size: (@factor * 1em); + } +} + +/* makes the font 33% larger relative to the icon container */ +.@{fa-css-prefix}-lg { + font-size: (4em / 3); + line-height: (3em / 4); + vertical-align: -.0667em; +} + +.@{fa-css-prefix}-xs { + font-size: .75em; +} + +.@{fa-css-prefix}-sm { + font-size: .875em; +} + +.larger(10); diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_list.less b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_list.less new file mode 100644 index 0000000000..1ff7ca7f59 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_list.less @@ -0,0 +1,18 @@ +// List Icons +// ------------------------- + +.@{fa-css-prefix}-ul { + list-style-type: none; + margin-left: @fa-li-width * 5/4; + padding-left: 0; + + > li { position: relative; } +} + +.@{fa-css-prefix}-li { + left: -@fa-li-width; + position: absolute; + text-align: center; + width: @fa-li-width; + line-height: inherit; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_mixins.less b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_mixins.less new file mode 100644 index 0000000000..a4e93f90a3 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_mixins.less @@ -0,0 +1,57 @@ +// Mixins +// -------------------------- + +.fa-icon() { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: inline-block; + font-style: normal; + font-variant: normal; + font-weight: normal; + line-height: 1; + vertical-align: -.125em; +} + +.fa-icon-rotate(@degrees, @rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})"; + transform: rotate(@degrees); +} + +.fa-icon-flip(@horiz, @vert, @rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)"; + transform: scale(@horiz, @vert); +} + + +// Only display content to screen readers. A la Bootstrap 4. +// +// See: http://a11yproject.com/posts/how-to-hide-content/ + +.sr-only() { + border: 0; + clip: rect(0,0,0,0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; +} + +// Use in conjunction with .sr-only to only display content when it's focused. +// +// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 +// +// Credit: HTML5 Boilerplate + +.sr-only-focusable() { + &:active, + &:focus { + clip: auto; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto; + } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_rotated-flipped.less b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_rotated-flipped.less new file mode 100644 index 0000000000..1ee31db19f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_rotated-flipped.less @@ -0,0 +1,23 @@ +// Rotated & Flipped Icons +// ------------------------- + +.@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } +.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } +.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } + +.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } +.@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } +.@{fa-css-prefix}-flip-horizontal.@{fa-css-prefix}-flip-vertical { .fa-icon-flip(-1, -1, 2); } + +// Hook for IE8-9 +// ------------------------- + +:root { + .@{fa-css-prefix}-rotate-90, + .@{fa-css-prefix}-rotate-180, + .@{fa-css-prefix}-rotate-270, + .@{fa-css-prefix}-flip-horizontal, + .@{fa-css-prefix}-flip-vertical { + filter: none; + } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_screen-reader.less b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_screen-reader.less new file mode 100644 index 0000000000..11c188196d --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_screen-reader.less @@ -0,0 +1,5 @@ +// Screen Readers +// ------------------------- + +.sr-only { .sr-only(); } +.sr-only-focusable { .sr-only-focusable(); } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_shims.less b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_shims.less new file mode 100644 index 0000000000..248f52f347 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_shims.less @@ -0,0 +1,2066 @@ +.@{fa-css-prefix}.@{fa-css-prefix}-glass:before { content: @fa-var-glass-martini; } + +.@{fa-css-prefix}.@{fa-css-prefix}-meetup { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-star-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-star-o:before { content: @fa-var-star; } + +.@{fa-css-prefix}.@{fa-css-prefix}-remove:before { content: @fa-var-times; } + +.@{fa-css-prefix}.@{fa-css-prefix}-close:before { content: @fa-var-times; } + +.@{fa-css-prefix}.@{fa-css-prefix}-gear:before { content: @fa-var-cog; } + +.@{fa-css-prefix}.@{fa-css-prefix}-trash-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-trash-o:before { content: @fa-var-trash-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-o:before { content: @fa-var-file; } + +.@{fa-css-prefix}.@{fa-css-prefix}-clock-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-clock-o:before { content: @fa-var-clock; } + +.@{fa-css-prefix}.@{fa-css-prefix}-arrow-circle-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-arrow-circle-o-down:before { content: @fa-var-arrow-alt-circle-down; } + +.@{fa-css-prefix}.@{fa-css-prefix}-arrow-circle-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-arrow-circle-o-up:before { content: @fa-var-arrow-alt-circle-up; } + +.@{fa-css-prefix}.@{fa-css-prefix}-play-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-play-circle-o:before { content: @fa-var-play-circle; } + +.@{fa-css-prefix}.@{fa-css-prefix}-repeat:before { content: @fa-var-redo; } + +.@{fa-css-prefix}.@{fa-css-prefix}-rotate-right:before { content: @fa-var-redo; } + +.@{fa-css-prefix}.@{fa-css-prefix}-refresh:before { content: @fa-var-sync; } + +.@{fa-css-prefix}.@{fa-css-prefix}-list-alt { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-dedent:before { content: @fa-var-outdent; } + +.@{fa-css-prefix}.@{fa-css-prefix}-video-camera:before { content: @fa-var-video; } + +.@{fa-css-prefix}.@{fa-css-prefix}-picture-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-picture-o:before { content: @fa-var-image; } + +.@{fa-css-prefix}.@{fa-css-prefix}-photo { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-photo:before { content: @fa-var-image; } + +.@{fa-css-prefix}.@{fa-css-prefix}-image { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-image:before { content: @fa-var-image; } + +.@{fa-css-prefix}.@{fa-css-prefix}-pencil:before { content: @fa-var-pencil-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-pencil-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-pencil-square-o:before { content: @fa-var-edit; } + +.@{fa-css-prefix}.@{fa-css-prefix}-share-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-share-square-o:before { content: @fa-var-share-square; } + +.@{fa-css-prefix}.@{fa-css-prefix}-check-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-check-square-o:before { content: @fa-var-check-square; } + +.@{fa-css-prefix}.@{fa-css-prefix}-arrows:before { content: @fa-var-arrows-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-times-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-times-circle-o:before { content: @fa-var-times-circle; } + +.@{fa-css-prefix}.@{fa-css-prefix}-check-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-check-circle-o:before { content: @fa-var-check-circle; } + +.@{fa-css-prefix}.@{fa-css-prefix}-mail-forward:before { content: @fa-var-share; } + +.@{fa-css-prefix}.@{fa-css-prefix}-eye { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-eye-slash { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-warning:before { content: @fa-var-exclamation-triangle; } + +.@{fa-css-prefix}.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-arrows-v:before { content: @fa-var-arrows-alt-v; } + +.@{fa-css-prefix}.@{fa-css-prefix}-arrows-h:before { content: @fa-var-arrows-alt-h; } + +.@{fa-css-prefix}.@{fa-css-prefix}-bar-chart { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-bar-chart:before { content: @fa-var-chart-bar; } + +.@{fa-css-prefix}.@{fa-css-prefix}-bar-chart-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-bar-chart-o:before { content: @fa-var-chart-bar; } + +.@{fa-css-prefix}.@{fa-css-prefix}-twitter-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-facebook-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-gears:before { content: @fa-var-cogs; } + +.@{fa-css-prefix}.@{fa-css-prefix}-thumbs-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-thumbs-o-up:before { content: @fa-var-thumbs-up; } + +.@{fa-css-prefix}.@{fa-css-prefix}-thumbs-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-thumbs-o-down:before { content: @fa-var-thumbs-down; } + +.@{fa-css-prefix}.@{fa-css-prefix}-heart-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-heart-o:before { content: @fa-var-heart; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sign-out:before { content: @fa-var-sign-out-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-linkedin-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-linkedin-square:before { content: @fa-var-linkedin; } + +.@{fa-css-prefix}.@{fa-css-prefix}-thumb-tack:before { content: @fa-var-thumbtack; } + +.@{fa-css-prefix}.@{fa-css-prefix}-external-link:before { content: @fa-var-external-link-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sign-in:before { content: @fa-var-sign-in-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-github-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-lemon-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-lemon-o:before { content: @fa-var-lemon; } + +.@{fa-css-prefix}.@{fa-css-prefix}-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-square-o:before { content: @fa-var-square; } + +.@{fa-css-prefix}.@{fa-css-prefix}-bookmark-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-bookmark-o:before { content: @fa-var-bookmark; } + +.@{fa-css-prefix}.@{fa-css-prefix}-twitter { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-facebook { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook-f; } + +.@{fa-css-prefix}.@{fa-css-prefix}-facebook-f { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-facebook-f:before { content: @fa-var-facebook-f; } + +.@{fa-css-prefix}.@{fa-css-prefix}-github { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-credit-card { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-feed:before { content: @fa-var-rss; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hdd-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hdd-o:before { content: @fa-var-hdd; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-o-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-o-right:before { content: @fa-var-hand-point-right; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-o-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-o-left:before { content: @fa-var-hand-point-left; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-o-up:before { content: @fa-var-hand-point-up; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-o-down:before { content: @fa-var-hand-point-down; } + +.@{fa-css-prefix}.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-expand-arrows-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-group:before { content: @fa-var-users; } + +.@{fa-css-prefix}.@{fa-css-prefix}-chain:before { content: @fa-var-link; } + +.@{fa-css-prefix}.@{fa-css-prefix}-scissors:before { content: @fa-var-cut; } + +.@{fa-css-prefix}.@{fa-css-prefix}-files-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-files-o:before { content: @fa-var-copy; } + +.@{fa-css-prefix}.@{fa-css-prefix}-floppy-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-floppy-o:before { content: @fa-var-save; } + +.@{fa-css-prefix}.@{fa-css-prefix}-navicon:before { content: @fa-var-bars; } + +.@{fa-css-prefix}.@{fa-css-prefix}-reorder:before { content: @fa-var-bars; } + +.@{fa-css-prefix}.@{fa-css-prefix}-pinterest { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-pinterest-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-google-plus-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-google-plus { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus-g; } + +.@{fa-css-prefix}.@{fa-css-prefix}-money { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-money:before { content: @fa-var-money-bill-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-unsorted:before { content: @fa-var-sort; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sort-desc:before { content: @fa-var-sort-down; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sort-asc:before { content: @fa-var-sort-up; } + +.@{fa-css-prefix}.@{fa-css-prefix}-linkedin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin-in; } + +.@{fa-css-prefix}.@{fa-css-prefix}-rotate-left:before { content: @fa-var-undo; } + +.@{fa-css-prefix}.@{fa-css-prefix}-legal:before { content: @fa-var-gavel; } + +.@{fa-css-prefix}.@{fa-css-prefix}-tachometer:before { content: @fa-var-tachometer-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-dashboard:before { content: @fa-var-tachometer-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-comment-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-comment-o:before { content: @fa-var-comment; } + +.@{fa-css-prefix}.@{fa-css-prefix}-comments-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-comments-o:before { content: @fa-var-comments; } + +.@{fa-css-prefix}.@{fa-css-prefix}-flash:before { content: @fa-var-bolt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-clipboard { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-paste { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-paste:before { content: @fa-var-clipboard; } + +.@{fa-css-prefix}.@{fa-css-prefix}-lightbulb-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-lightbulb-o:before { content: @fa-var-lightbulb; } + +.@{fa-css-prefix}.@{fa-css-prefix}-exchange:before { content: @fa-var-exchange-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-cloud-download:before { content: @fa-var-cloud-download-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-cloud-upload:before { content: @fa-var-cloud-upload-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-bell-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-bell-o:before { content: @fa-var-bell; } + +.@{fa-css-prefix}.@{fa-css-prefix}-cutlery:before { content: @fa-var-utensils; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-text-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-text-o:before { content: @fa-var-file-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-building-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-building-o:before { content: @fa-var-building; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hospital-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hospital-o:before { content: @fa-var-hospital; } + +.@{fa-css-prefix}.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-mobile-phone:before { content: @fa-var-mobile-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-circle-o:before { content: @fa-var-circle; } + +.@{fa-css-prefix}.@{fa-css-prefix}-mail-reply:before { content: @fa-var-reply; } + +.@{fa-css-prefix}.@{fa-css-prefix}-github-alt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-folder-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-folder-o:before { content: @fa-var-folder; } + +.@{fa-css-prefix}.@{fa-css-prefix}-folder-open-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-folder-open-o:before { content: @fa-var-folder-open; } + +.@{fa-css-prefix}.@{fa-css-prefix}-smile-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-smile-o:before { content: @fa-var-smile; } + +.@{fa-css-prefix}.@{fa-css-prefix}-frown-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-frown-o:before { content: @fa-var-frown; } + +.@{fa-css-prefix}.@{fa-css-prefix}-meh-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-meh-o:before { content: @fa-var-meh; } + +.@{fa-css-prefix}.@{fa-css-prefix}-keyboard-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-keyboard-o:before { content: @fa-var-keyboard; } + +.@{fa-css-prefix}.@{fa-css-prefix}-flag-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-flag-o:before { content: @fa-var-flag; } + +.@{fa-css-prefix}.@{fa-css-prefix}-mail-reply-all:before { content: @fa-var-reply-all; } + +.@{fa-css-prefix}.@{fa-css-prefix}-star-half-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-star-half-o:before { content: @fa-var-star-half; } + +.@{fa-css-prefix}.@{fa-css-prefix}-star-half-empty { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-star-half-empty:before { content: @fa-var-star-half; } + +.@{fa-css-prefix}.@{fa-css-prefix}-star-half-full { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-star-half-full:before { content: @fa-var-star-half; } + +.@{fa-css-prefix}.@{fa-css-prefix}-code-fork:before { content: @fa-var-code-branch; } + +.@{fa-css-prefix}.@{fa-css-prefix}-chain-broken:before { content: @fa-var-unlink; } + +.@{fa-css-prefix}.@{fa-css-prefix}-shield:before { content: @fa-var-shield-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-calendar-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-calendar-o:before { content: @fa-var-calendar; } + +.@{fa-css-prefix}.@{fa-css-prefix}-maxcdn { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-html5 { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-css3 { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-ticket:before { content: @fa-var-ticket-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-minus-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-minus-square-o:before { content: @fa-var-minus-square; } + +.@{fa-css-prefix}.@{fa-css-prefix}-level-up:before { content: @fa-var-level-up-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-level-down:before { content: @fa-var-level-down-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-pencil-square:before { content: @fa-var-pen-square; } + +.@{fa-css-prefix}.@{fa-css-prefix}-external-link-square:before { content: @fa-var-external-link-square-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-compass { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-caret-square-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-caret-square-o-down:before { content: @fa-var-caret-square-down; } + +.@{fa-css-prefix}.@{fa-css-prefix}-toggle-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-toggle-down:before { content: @fa-var-caret-square-down; } + +.@{fa-css-prefix}.@{fa-css-prefix}-caret-square-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-caret-square-o-up:before { content: @fa-var-caret-square-up; } + +.@{fa-css-prefix}.@{fa-css-prefix}-toggle-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-toggle-up:before { content: @fa-var-caret-square-up; } + +.@{fa-css-prefix}.@{fa-css-prefix}-caret-square-o-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-caret-square-o-right:before { content: @fa-var-caret-square-right; } + +.@{fa-css-prefix}.@{fa-css-prefix}-toggle-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-toggle-right:before { content: @fa-var-caret-square-right; } + +.@{fa-css-prefix}.@{fa-css-prefix}-eur:before { content: @fa-var-euro-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-euro:before { content: @fa-var-euro-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-gbp:before { content: @fa-var-pound-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-usd:before { content: @fa-var-dollar-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-dollar:before { content: @fa-var-dollar-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-inr:before { content: @fa-var-rupee-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-rupee:before { content: @fa-var-rupee-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-jpy:before { content: @fa-var-yen-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-cny:before { content: @fa-var-yen-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-rmb:before { content: @fa-var-yen-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-yen:before { content: @fa-var-yen-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-rub:before { content: @fa-var-ruble-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-ruble:before { content: @fa-var-ruble-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-rouble:before { content: @fa-var-ruble-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-krw:before { content: @fa-var-won-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-won:before { content: @fa-var-won-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-btc { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-bitcoin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-bitcoin:before { content: @fa-var-btc; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-text:before { content: @fa-var-file-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sort-alpha-asc:before { content: @fa-var-sort-alpha-down; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sort-alpha-desc:before { content: @fa-var-sort-alpha-up; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sort-amount-asc:before { content: @fa-var-sort-amount-down; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sort-amount-desc:before { content: @fa-var-sort-amount-up; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sort-numeric-asc:before { content: @fa-var-sort-numeric-down; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sort-numeric-desc:before { content: @fa-var-sort-numeric-up; } + +.@{fa-css-prefix}.@{fa-css-prefix}-youtube-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-youtube { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-xing { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-xing-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-youtube-play { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-youtube-play:before { content: @fa-var-youtube; } + +.@{fa-css-prefix}.@{fa-css-prefix}-dropbox { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-stack-overflow { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-instagram { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-flickr { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-adn { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-bitbucket { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-bitbucket-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-bitbucket-square:before { content: @fa-var-bitbucket; } + +.@{fa-css-prefix}.@{fa-css-prefix}-tumblr { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-tumblr-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-long-arrow-down:before { content: @fa-var-long-arrow-alt-down; } + +.@{fa-css-prefix}.@{fa-css-prefix}-long-arrow-up:before { content: @fa-var-long-arrow-alt-up; } + +.@{fa-css-prefix}.@{fa-css-prefix}-long-arrow-left:before { content: @fa-var-long-arrow-alt-left; } + +.@{fa-css-prefix}.@{fa-css-prefix}-long-arrow-right:before { content: @fa-var-long-arrow-alt-right; } + +.@{fa-css-prefix}.@{fa-css-prefix}-apple { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-windows { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-android { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-linux { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-dribbble { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-skype { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-foursquare { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-trello { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-gratipay { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-gittip { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-gittip:before { content: @fa-var-gratipay; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sun-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-sun-o:before { content: @fa-var-sun; } + +.@{fa-css-prefix}.@{fa-css-prefix}-moon-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-moon-o:before { content: @fa-var-moon; } + +.@{fa-css-prefix}.@{fa-css-prefix}-vk { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-weibo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-renren { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-pagelines { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-stack-exchange { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-arrow-circle-o-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-arrow-circle-o-right:before { content: @fa-var-arrow-alt-circle-right; } + +.@{fa-css-prefix}.@{fa-css-prefix}-arrow-circle-o-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-arrow-circle-o-left:before { content: @fa-var-arrow-alt-circle-left; } + +.@{fa-css-prefix}.@{fa-css-prefix}-caret-square-o-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-caret-square-o-left:before { content: @fa-var-caret-square-left; } + +.@{fa-css-prefix}.@{fa-css-prefix}-toggle-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-toggle-left:before { content: @fa-var-caret-square-left; } + +.@{fa-css-prefix}.@{fa-css-prefix}-dot-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-dot-circle-o:before { content: @fa-var-dot-circle; } + +.@{fa-css-prefix}.@{fa-css-prefix}-vimeo-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-try:before { content: @fa-var-lira-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-turkish-lira:before { content: @fa-var-lira-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-plus-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-plus-square-o:before { content: @fa-var-plus-square; } + +.@{fa-css-prefix}.@{fa-css-prefix}-slack { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-wordpress { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-openid { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-institution:before { content: @fa-var-university; } + +.@{fa-css-prefix}.@{fa-css-prefix}-bank:before { content: @fa-var-university; } + +.@{fa-css-prefix}.@{fa-css-prefix}-mortar-board:before { content: @fa-var-graduation-cap; } + +.@{fa-css-prefix}.@{fa-css-prefix}-yahoo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-google { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-reddit { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-reddit-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-stumbleupon-circle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-stumbleupon { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-delicious { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-digg { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-pied-piper-pp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-pied-piper-alt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-drupal { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-joomla { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-spoon:before { content: @fa-var-utensil-spoon; } + +.@{fa-css-prefix}.@{fa-css-prefix}-behance { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-behance-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-steam { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-steam-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-automobile:before { content: @fa-var-car; } + +.@{fa-css-prefix}.@{fa-css-prefix}-cab:before { content: @fa-var-taxi; } + +.@{fa-css-prefix}.@{fa-css-prefix}-envelope-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-envelope-o:before { content: @fa-var-envelope; } + +.@{fa-css-prefix}.@{fa-css-prefix}-deviantart { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-soundcloud { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-file-pdf-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-pdf-o:before { content: @fa-var-file-pdf; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-word-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-word-o:before { content: @fa-var-file-word; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-excel-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-excel-o:before { content: @fa-var-file-excel; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-powerpoint-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-powerpoint-o:before { content: @fa-var-file-powerpoint; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-image-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-image-o:before { content: @fa-var-file-image; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-photo-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-photo-o:before { content: @fa-var-file-image; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-picture-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-picture-o:before { content: @fa-var-file-image; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-archive-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-archive-o:before { content: @fa-var-file-archive; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-zip-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-zip-o:before { content: @fa-var-file-archive; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-audio-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-audio-o:before { content: @fa-var-file-audio; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-sound-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-sound-o:before { content: @fa-var-file-audio; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-video-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-video-o:before { content: @fa-var-file-video; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-movie-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-movie-o:before { content: @fa-var-file-video; } + +.@{fa-css-prefix}.@{fa-css-prefix}-file-code-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-file-code-o:before { content: @fa-var-file-code; } + +.@{fa-css-prefix}.@{fa-css-prefix}-vine { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-codepen { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-jsfiddle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-life-ring { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-life-bouy { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-life-bouy:before { content: @fa-var-life-ring; } + +.@{fa-css-prefix}.@{fa-css-prefix}-life-buoy { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-life-buoy:before { content: @fa-var-life-ring; } + +.@{fa-css-prefix}.@{fa-css-prefix}-life-saver { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-life-saver:before { content: @fa-var-life-ring; } + +.@{fa-css-prefix}.@{fa-css-prefix}-support { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-support:before { content: @fa-var-life-ring; } + +.@{fa-css-prefix}.@{fa-css-prefix}-circle-o-notch:before { content: @fa-var-circle-notch; } + +.@{fa-css-prefix}.@{fa-css-prefix}-rebel { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-ra { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-ra:before { content: @fa-var-rebel; } + +.@{fa-css-prefix}.@{fa-css-prefix}-resistance { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-resistance:before { content: @fa-var-rebel; } + +.@{fa-css-prefix}.@{fa-css-prefix}-empire { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-ge { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-ge:before { content: @fa-var-empire; } + +.@{fa-css-prefix}.@{fa-css-prefix}-git-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-git { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-hacker-news { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-y-combinator-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-y-combinator-square:before { content: @fa-var-hacker-news; } + +.@{fa-css-prefix}.@{fa-css-prefix}-yc-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-yc-square:before { content: @fa-var-hacker-news; } + +.@{fa-css-prefix}.@{fa-css-prefix}-tencent-weibo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-qq { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-weixin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-wechat { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-wechat:before { content: @fa-var-weixin; } + +.@{fa-css-prefix}.@{fa-css-prefix}-send:before { content: @fa-var-paper-plane; } + +.@{fa-css-prefix}.@{fa-css-prefix}-paper-plane-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-paper-plane-o:before { content: @fa-var-paper-plane; } + +.@{fa-css-prefix}.@{fa-css-prefix}-send-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-send-o:before { content: @fa-var-paper-plane; } + +.@{fa-css-prefix}.@{fa-css-prefix}-circle-thin { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-circle-thin:before { content: @fa-var-circle; } + +.@{fa-css-prefix}.@{fa-css-prefix}-header:before { content: @fa-var-heading; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sliders:before { content: @fa-var-sliders-h; } + +.@{fa-css-prefix}.@{fa-css-prefix}-futbol-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-futbol-o:before { content: @fa-var-futbol; } + +.@{fa-css-prefix}.@{fa-css-prefix}-soccer-ball-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-soccer-ball-o:before { content: @fa-var-futbol; } + +.@{fa-css-prefix}.@{fa-css-prefix}-slideshare { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-twitch { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-yelp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-newspaper-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-newspaper-o:before { content: @fa-var-newspaper; } + +.@{fa-css-prefix}.@{fa-css-prefix}-paypal { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-google-wallet { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-cc-visa { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-cc-mastercard { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-cc-discover { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-cc-amex { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-cc-paypal { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-cc-stripe { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-bell-slash-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-bell-slash-o:before { content: @fa-var-bell-slash; } + +.@{fa-css-prefix}.@{fa-css-prefix}-trash:before { content: @fa-var-trash-alt; } + +.@{fa-css-prefix}.@{fa-css-prefix}-copyright { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-eyedropper:before { content: @fa-var-eye-dropper; } + +.@{fa-css-prefix}.@{fa-css-prefix}-area-chart:before { content: @fa-var-chart-area; } + +.@{fa-css-prefix}.@{fa-css-prefix}-pie-chart:before { content: @fa-var-chart-pie; } + +.@{fa-css-prefix}.@{fa-css-prefix}-line-chart:before { content: @fa-var-chart-line; } + +.@{fa-css-prefix}.@{fa-css-prefix}-lastfm { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-lastfm-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-ioxhost { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-angellist { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-cc { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-cc:before { content: @fa-var-closed-captioning; } + +.@{fa-css-prefix}.@{fa-css-prefix}-ils:before { content: @fa-var-shekel-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-shekel:before { content: @fa-var-shekel-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-sheqel:before { content: @fa-var-shekel-sign; } + +.@{fa-css-prefix}.@{fa-css-prefix}-meanpath { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-meanpath:before { content: @fa-var-font-awesome; } + +.@{fa-css-prefix}.@{fa-css-prefix}-buysellads { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-connectdevelop { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-dashcube { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-forumbee { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-leanpub { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-sellsy { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-shirtsinbulk { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-simplybuilt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-skyatlas { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-diamond { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-diamond:before { content: @fa-var-gem; } + +.@{fa-css-prefix}.@{fa-css-prefix}-intersex:before { content: @fa-var-transgender; } + +.@{fa-css-prefix}.@{fa-css-prefix}-facebook-official { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-facebook-official:before { content: @fa-var-facebook; } + +.@{fa-css-prefix}.@{fa-css-prefix}-pinterest-p { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-whatsapp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-hotel:before { content: @fa-var-bed; } + +.@{fa-css-prefix}.@{fa-css-prefix}-viacoin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-medium { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-y-combinator { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-yc { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-yc:before { content: @fa-var-y-combinator; } + +.@{fa-css-prefix}.@{fa-css-prefix}-optin-monster { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-opencart { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-expeditedssl { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-battery-4:before { content: @fa-var-battery-full; } + +.@{fa-css-prefix}.@{fa-css-prefix}-battery:before { content: @fa-var-battery-full; } + +.@{fa-css-prefix}.@{fa-css-prefix}-battery-3:before { content: @fa-var-battery-three-quarters; } + +.@{fa-css-prefix}.@{fa-css-prefix}-battery-2:before { content: @fa-var-battery-half; } + +.@{fa-css-prefix}.@{fa-css-prefix}-battery-1:before { content: @fa-var-battery-quarter; } + +.@{fa-css-prefix}.@{fa-css-prefix}-battery-0:before { content: @fa-var-battery-empty; } + +.@{fa-css-prefix}.@{fa-css-prefix}-object-group { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-object-ungroup { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-sticky-note-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-sticky-note-o:before { content: @fa-var-sticky-note; } + +.@{fa-css-prefix}.@{fa-css-prefix}-cc-jcb { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-cc-diners-club { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-clone { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-hourglass-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hourglass-o:before { content: @fa-var-hourglass; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hourglass-1:before { content: @fa-var-hourglass-start; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hourglass-2:before { content: @fa-var-hourglass-half; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hourglass-3:before { content: @fa-var-hourglass-end; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-rock-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-rock-o:before { content: @fa-var-hand-rock; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-grab-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-grab-o:before { content: @fa-var-hand-rock; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-paper-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-paper-o:before { content: @fa-var-hand-paper; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-stop-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-stop-o:before { content: @fa-var-hand-paper; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-scissors-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-scissors-o:before { content: @fa-var-hand-scissors; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-lizard-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-lizard-o:before { content: @fa-var-hand-lizard; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-spock-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-spock-o:before { content: @fa-var-hand-spock; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-pointer-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-pointer-o:before { content: @fa-var-hand-pointer; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hand-peace-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-hand-peace-o:before { content: @fa-var-hand-peace; } + +.@{fa-css-prefix}.@{fa-css-prefix}-registered { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-creative-commons { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-gg { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-gg-circle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-tripadvisor { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-odnoklassniki { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-odnoklassniki-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-get-pocket { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-wikipedia-w { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-safari { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-chrome { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-firefox { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-opera { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-internet-explorer { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-television:before { content: @fa-var-tv; } + +.@{fa-css-prefix}.@{fa-css-prefix}-contao { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-500px { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-amazon { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-calendar-plus-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-calendar-plus-o:before { content: @fa-var-calendar-plus; } + +.@{fa-css-prefix}.@{fa-css-prefix}-calendar-minus-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-calendar-minus-o:before { content: @fa-var-calendar-minus; } + +.@{fa-css-prefix}.@{fa-css-prefix}-calendar-times-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-calendar-times-o:before { content: @fa-var-calendar-times; } + +.@{fa-css-prefix}.@{fa-css-prefix}-calendar-check-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-calendar-check-o:before { content: @fa-var-calendar-check; } + +.@{fa-css-prefix}.@{fa-css-prefix}-map-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-map-o:before { content: @fa-var-map; } + +.@{fa-css-prefix}.@{fa-css-prefix}-commenting { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-commenting:before { content: @fa-var-comment-dots; } + +.@{fa-css-prefix}.@{fa-css-prefix}-commenting-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-commenting-o:before { content: @fa-var-comment-dots; } + +.@{fa-css-prefix}.@{fa-css-prefix}-houzz { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-vimeo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-vimeo:before { content: @fa-var-vimeo-v; } + +.@{fa-css-prefix}.@{fa-css-prefix}-black-tie { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-fonticons { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-reddit-alien { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-edge { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-credit-card-alt:before { content: @fa-var-credit-card; } + +.@{fa-css-prefix}.@{fa-css-prefix}-codiepie { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-modx { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-fort-awesome { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-usb { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-product-hunt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-mixcloud { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-scribd { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-pause-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-pause-circle-o:before { content: @fa-var-pause-circle; } + +.@{fa-css-prefix}.@{fa-css-prefix}-stop-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-stop-circle-o:before { content: @fa-var-stop-circle; } + +.@{fa-css-prefix}.@{fa-css-prefix}-bluetooth { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-bluetooth-b { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-gitlab { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-wpbeginner { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-wpforms { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-envira { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-wheelchair-alt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-wheelchair-alt:before { content: @fa-var-accessible-icon; } + +.@{fa-css-prefix}.@{fa-css-prefix}-question-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-question-circle-o:before { content: @fa-var-question-circle; } + +.@{fa-css-prefix}.@{fa-css-prefix}-volume-control-phone:before { content: @fa-var-phone-volume; } + +.@{fa-css-prefix}.@{fa-css-prefix}-asl-interpreting:before { content: @fa-var-american-sign-language-interpreting; } + +.@{fa-css-prefix}.@{fa-css-prefix}-deafness:before { content: @fa-var-deaf; } + +.@{fa-css-prefix}.@{fa-css-prefix}-hard-of-hearing:before { content: @fa-var-deaf; } + +.@{fa-css-prefix}.@{fa-css-prefix}-glide { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-glide-g { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-signing:before { content: @fa-var-sign-language; } + +.@{fa-css-prefix}.@{fa-css-prefix}-viadeo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-viadeo-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-snapchat { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-snapchat-ghost { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-snapchat-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-pied-piper { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-first-order { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-yoast { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-themeisle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-google-plus-official { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-google-plus-official:before { content: @fa-var-google-plus; } + +.@{fa-css-prefix}.@{fa-css-prefix}-google-plus-circle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-google-plus-circle:before { content: @fa-var-google-plus; } + +.@{fa-css-prefix}.@{fa-css-prefix}-font-awesome { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-fa { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-fa:before { content: @fa-var-font-awesome; } + +.@{fa-css-prefix}.@{fa-css-prefix}-handshake-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-handshake-o:before { content: @fa-var-handshake; } + +.@{fa-css-prefix}.@{fa-css-prefix}-envelope-open-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-envelope-open-o:before { content: @fa-var-envelope-open; } + +.@{fa-css-prefix}.@{fa-css-prefix}-linode { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-address-book-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-address-book-o:before { content: @fa-var-address-book; } + +.@{fa-css-prefix}.@{fa-css-prefix}-vcard:before { content: @fa-var-address-card; } + +.@{fa-css-prefix}.@{fa-css-prefix}-address-card-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-address-card-o:before { content: @fa-var-address-card; } + +.@{fa-css-prefix}.@{fa-css-prefix}-vcard-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-vcard-o:before { content: @fa-var-address-card; } + +.@{fa-css-prefix}.@{fa-css-prefix}-user-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-user-circle-o:before { content: @fa-var-user-circle; } + +.@{fa-css-prefix}.@{fa-css-prefix}-user-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-user-o:before { content: @fa-var-user; } + +.@{fa-css-prefix}.@{fa-css-prefix}-id-badge { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-drivers-license:before { content: @fa-var-id-card; } + +.@{fa-css-prefix}.@{fa-css-prefix}-id-card-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-id-card-o:before { content: @fa-var-id-card; } + +.@{fa-css-prefix}.@{fa-css-prefix}-drivers-license-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-drivers-license-o:before { content: @fa-var-id-card; } + +.@{fa-css-prefix}.@{fa-css-prefix}-quora { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-free-code-camp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-telegram { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-thermometer-4:before { content: @fa-var-thermometer-full; } + +.@{fa-css-prefix}.@{fa-css-prefix}-thermometer:before { content: @fa-var-thermometer-full; } + +.@{fa-css-prefix}.@{fa-css-prefix}-thermometer-3:before { content: @fa-var-thermometer-three-quarters; } + +.@{fa-css-prefix}.@{fa-css-prefix}-thermometer-2:before { content: @fa-var-thermometer-half; } + +.@{fa-css-prefix}.@{fa-css-prefix}-thermometer-1:before { content: @fa-var-thermometer-quarter; } + +.@{fa-css-prefix}.@{fa-css-prefix}-thermometer-0:before { content: @fa-var-thermometer-empty; } + +.@{fa-css-prefix}.@{fa-css-prefix}-bathtub:before { content: @fa-var-bath; } + +.@{fa-css-prefix}.@{fa-css-prefix}-s15:before { content: @fa-var-bath; } + +.@{fa-css-prefix}.@{fa-css-prefix}-window-maximize { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-window-restore { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-times-rectangle:before { content: @fa-var-window-close; } + +.@{fa-css-prefix}.@{fa-css-prefix}-window-close-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-window-close-o:before { content: @fa-var-window-close; } + +.@{fa-css-prefix}.@{fa-css-prefix}-times-rectangle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-times-rectangle-o:before { content: @fa-var-window-close; } + +.@{fa-css-prefix}.@{fa-css-prefix}-bandcamp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-grav { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-etsy { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-imdb { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-ravelry { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-eercast { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-eercast:before { content: @fa-var-sellcast; } + +.@{fa-css-prefix}.@{fa-css-prefix}-snowflake-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.@{fa-css-prefix}.@{fa-css-prefix}-snowflake-o:before { content: @fa-var-snowflake; } + +.@{fa-css-prefix}.@{fa-css-prefix}-superpowers { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-wpexplorer { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.@{fa-css-prefix}.@{fa-css-prefix}-spotify { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_stacked.less b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_stacked.less new file mode 100644 index 0000000000..263b5c44fc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_stacked.less @@ -0,0 +1,22 @@ +// Stacked Icons +// ------------------------- + +.@{fa-css-prefix}-stack { + display: inline-block; + height: 2em; + line-height: 2em; + position: relative; + vertical-align: middle; + width: 2em; +} + +.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { + left: 0; + position: absolute; + text-align: center; + width: 100%; +} + +.@{fa-css-prefix}-stack-1x { line-height: inherit; } +.@{fa-css-prefix}-stack-2x { font-size: 2em; } +.@{fa-css-prefix}-inverse { color: @fa-inverse; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_variables.less b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_variables.less new file mode 100644 index 0000000000..185fc735cc --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/_variables.less @@ -0,0 +1,1124 @@ +// Variables +// -------------------------- + +@fa-font-path: "../webfonts"; +@fa-font-size-base: 16px; +@fa-line-height-base: 1; +@fa-css-prefix: fa; +@fa-version: "5.1.1"; +@fa-border-color: #eee; +@fa-inverse: #fff; +@fa-li-width: 2em; + +@fa-var-500px: "\f26e"; +@fa-var-accessible-icon: "\f368"; +@fa-var-accusoft: "\f369"; +@fa-var-address-book: "\f2b9"; +@fa-var-address-card: "\f2bb"; +@fa-var-adjust: "\f042"; +@fa-var-adn: "\f170"; +@fa-var-adversal: "\f36a"; +@fa-var-affiliatetheme: "\f36b"; +@fa-var-algolia: "\f36c"; +@fa-var-align-center: "\f037"; +@fa-var-align-justify: "\f039"; +@fa-var-align-left: "\f036"; +@fa-var-align-right: "\f038"; +@fa-var-allergies: "\f461"; +@fa-var-amazon: "\f270"; +@fa-var-amazon-pay: "\f42c"; +@fa-var-ambulance: "\f0f9"; +@fa-var-american-sign-language-interpreting: "\f2a3"; +@fa-var-amilia: "\f36d"; +@fa-var-anchor: "\f13d"; +@fa-var-android: "\f17b"; +@fa-var-angellist: "\f209"; +@fa-var-angle-double-down: "\f103"; +@fa-var-angle-double-left: "\f100"; +@fa-var-angle-double-right: "\f101"; +@fa-var-angle-double-up: "\f102"; +@fa-var-angle-down: "\f107"; +@fa-var-angle-left: "\f104"; +@fa-var-angle-right: "\f105"; +@fa-var-angle-up: "\f106"; +@fa-var-angry: "\f556"; +@fa-var-angrycreative: "\f36e"; +@fa-var-angular: "\f420"; +@fa-var-app-store: "\f36f"; +@fa-var-app-store-ios: "\f370"; +@fa-var-apper: "\f371"; +@fa-var-apple: "\f179"; +@fa-var-apple-pay: "\f415"; +@fa-var-archive: "\f187"; +@fa-var-archway: "\f557"; +@fa-var-arrow-alt-circle-down: "\f358"; +@fa-var-arrow-alt-circle-left: "\f359"; +@fa-var-arrow-alt-circle-right: "\f35a"; +@fa-var-arrow-alt-circle-up: "\f35b"; +@fa-var-arrow-circle-down: "\f0ab"; +@fa-var-arrow-circle-left: "\f0a8"; +@fa-var-arrow-circle-right: "\f0a9"; +@fa-var-arrow-circle-up: "\f0aa"; +@fa-var-arrow-down: "\f063"; +@fa-var-arrow-left: "\f060"; +@fa-var-arrow-right: "\f061"; +@fa-var-arrow-up: "\f062"; +@fa-var-arrows-alt: "\f0b2"; +@fa-var-arrows-alt-h: "\f337"; +@fa-var-arrows-alt-v: "\f338"; +@fa-var-assistive-listening-systems: "\f2a2"; +@fa-var-asterisk: "\f069"; +@fa-var-asymmetrik: "\f372"; +@fa-var-at: "\f1fa"; +@fa-var-atlas: "\f558"; +@fa-var-audible: "\f373"; +@fa-var-audio-description: "\f29e"; +@fa-var-autoprefixer: "\f41c"; +@fa-var-avianex: "\f374"; +@fa-var-aviato: "\f421"; +@fa-var-award: "\f559"; +@fa-var-aws: "\f375"; +@fa-var-backspace: "\f55a"; +@fa-var-backward: "\f04a"; +@fa-var-balance-scale: "\f24e"; +@fa-var-ban: "\f05e"; +@fa-var-band-aid: "\f462"; +@fa-var-bandcamp: "\f2d5"; +@fa-var-barcode: "\f02a"; +@fa-var-bars: "\f0c9"; +@fa-var-baseball-ball: "\f433"; +@fa-var-basketball-ball: "\f434"; +@fa-var-bath: "\f2cd"; +@fa-var-battery-empty: "\f244"; +@fa-var-battery-full: "\f240"; +@fa-var-battery-half: "\f242"; +@fa-var-battery-quarter: "\f243"; +@fa-var-battery-three-quarters: "\f241"; +@fa-var-bed: "\f236"; +@fa-var-beer: "\f0fc"; +@fa-var-behance: "\f1b4"; +@fa-var-behance-square: "\f1b5"; +@fa-var-bell: "\f0f3"; +@fa-var-bell-slash: "\f1f6"; +@fa-var-bezier-curve: "\f55b"; +@fa-var-bicycle: "\f206"; +@fa-var-bimobject: "\f378"; +@fa-var-binoculars: "\f1e5"; +@fa-var-birthday-cake: "\f1fd"; +@fa-var-bitbucket: "\f171"; +@fa-var-bitcoin: "\f379"; +@fa-var-bity: "\f37a"; +@fa-var-black-tie: "\f27e"; +@fa-var-blackberry: "\f37b"; +@fa-var-blender: "\f517"; +@fa-var-blind: "\f29d"; +@fa-var-blogger: "\f37c"; +@fa-var-blogger-b: "\f37d"; +@fa-var-bluetooth: "\f293"; +@fa-var-bluetooth-b: "\f294"; +@fa-var-bold: "\f032"; +@fa-var-bolt: "\f0e7"; +@fa-var-bomb: "\f1e2"; +@fa-var-bong: "\f55c"; +@fa-var-book: "\f02d"; +@fa-var-book-open: "\f518"; +@fa-var-bookmark: "\f02e"; +@fa-var-bowling-ball: "\f436"; +@fa-var-box: "\f466"; +@fa-var-box-open: "\f49e"; +@fa-var-boxes: "\f468"; +@fa-var-braille: "\f2a1"; +@fa-var-briefcase: "\f0b1"; +@fa-var-briefcase-medical: "\f469"; +@fa-var-broadcast-tower: "\f519"; +@fa-var-broom: "\f51a"; +@fa-var-brush: "\f55d"; +@fa-var-btc: "\f15a"; +@fa-var-bug: "\f188"; +@fa-var-building: "\f1ad"; +@fa-var-bullhorn: "\f0a1"; +@fa-var-bullseye: "\f140"; +@fa-var-burn: "\f46a"; +@fa-var-buromobelexperte: "\f37f"; +@fa-var-bus: "\f207"; +@fa-var-bus-alt: "\f55e"; +@fa-var-buysellads: "\f20d"; +@fa-var-calculator: "\f1ec"; +@fa-var-calendar: "\f133"; +@fa-var-calendar-alt: "\f073"; +@fa-var-calendar-check: "\f274"; +@fa-var-calendar-minus: "\f272"; +@fa-var-calendar-plus: "\f271"; +@fa-var-calendar-times: "\f273"; +@fa-var-camera: "\f030"; +@fa-var-camera-retro: "\f083"; +@fa-var-cannabis: "\f55f"; +@fa-var-capsules: "\f46b"; +@fa-var-car: "\f1b9"; +@fa-var-caret-down: "\f0d7"; +@fa-var-caret-left: "\f0d9"; +@fa-var-caret-right: "\f0da"; +@fa-var-caret-square-down: "\f150"; +@fa-var-caret-square-left: "\f191"; +@fa-var-caret-square-right: "\f152"; +@fa-var-caret-square-up: "\f151"; +@fa-var-caret-up: "\f0d8"; +@fa-var-cart-arrow-down: "\f218"; +@fa-var-cart-plus: "\f217"; +@fa-var-cc-amazon-pay: "\f42d"; +@fa-var-cc-amex: "\f1f3"; +@fa-var-cc-apple-pay: "\f416"; +@fa-var-cc-diners-club: "\f24c"; +@fa-var-cc-discover: "\f1f2"; +@fa-var-cc-jcb: "\f24b"; +@fa-var-cc-mastercard: "\f1f1"; +@fa-var-cc-paypal: "\f1f4"; +@fa-var-cc-stripe: "\f1f5"; +@fa-var-cc-visa: "\f1f0"; +@fa-var-centercode: "\f380"; +@fa-var-certificate: "\f0a3"; +@fa-var-chalkboard: "\f51b"; +@fa-var-chalkboard-teacher: "\f51c"; +@fa-var-chart-area: "\f1fe"; +@fa-var-chart-bar: "\f080"; +@fa-var-chart-line: "\f201"; +@fa-var-chart-pie: "\f200"; +@fa-var-check: "\f00c"; +@fa-var-check-circle: "\f058"; +@fa-var-check-double: "\f560"; +@fa-var-check-square: "\f14a"; +@fa-var-chess: "\f439"; +@fa-var-chess-bishop: "\f43a"; +@fa-var-chess-board: "\f43c"; +@fa-var-chess-king: "\f43f"; +@fa-var-chess-knight: "\f441"; +@fa-var-chess-pawn: "\f443"; +@fa-var-chess-queen: "\f445"; +@fa-var-chess-rook: "\f447"; +@fa-var-chevron-circle-down: "\f13a"; +@fa-var-chevron-circle-left: "\f137"; +@fa-var-chevron-circle-right: "\f138"; +@fa-var-chevron-circle-up: "\f139"; +@fa-var-chevron-down: "\f078"; +@fa-var-chevron-left: "\f053"; +@fa-var-chevron-right: "\f054"; +@fa-var-chevron-up: "\f077"; +@fa-var-child: "\f1ae"; +@fa-var-chrome: "\f268"; +@fa-var-church: "\f51d"; +@fa-var-circle: "\f111"; +@fa-var-circle-notch: "\f1ce"; +@fa-var-clipboard: "\f328"; +@fa-var-clipboard-check: "\f46c"; +@fa-var-clipboard-list: "\f46d"; +@fa-var-clock: "\f017"; +@fa-var-clone: "\f24d"; +@fa-var-closed-captioning: "\f20a"; +@fa-var-cloud: "\f0c2"; +@fa-var-cloud-download-alt: "\f381"; +@fa-var-cloud-upload-alt: "\f382"; +@fa-var-cloudscale: "\f383"; +@fa-var-cloudsmith: "\f384"; +@fa-var-cloudversify: "\f385"; +@fa-var-cocktail: "\f561"; +@fa-var-code: "\f121"; +@fa-var-code-branch: "\f126"; +@fa-var-codepen: "\f1cb"; +@fa-var-codiepie: "\f284"; +@fa-var-coffee: "\f0f4"; +@fa-var-cog: "\f013"; +@fa-var-cogs: "\f085"; +@fa-var-coins: "\f51e"; +@fa-var-columns: "\f0db"; +@fa-var-comment: "\f075"; +@fa-var-comment-alt: "\f27a"; +@fa-var-comment-dots: "\f4ad"; +@fa-var-comment-slash: "\f4b3"; +@fa-var-comments: "\f086"; +@fa-var-compact-disc: "\f51f"; +@fa-var-compass: "\f14e"; +@fa-var-compress: "\f066"; +@fa-var-concierge-bell: "\f562"; +@fa-var-connectdevelop: "\f20e"; +@fa-var-contao: "\f26d"; +@fa-var-cookie: "\f563"; +@fa-var-cookie-bite: "\f564"; +@fa-var-copy: "\f0c5"; +@fa-var-copyright: "\f1f9"; +@fa-var-couch: "\f4b8"; +@fa-var-cpanel: "\f388"; +@fa-var-creative-commons: "\f25e"; +@fa-var-creative-commons-by: "\f4e7"; +@fa-var-creative-commons-nc: "\f4e8"; +@fa-var-creative-commons-nc-eu: "\f4e9"; +@fa-var-creative-commons-nc-jp: "\f4ea"; +@fa-var-creative-commons-nd: "\f4eb"; +@fa-var-creative-commons-pd: "\f4ec"; +@fa-var-creative-commons-pd-alt: "\f4ed"; +@fa-var-creative-commons-remix: "\f4ee"; +@fa-var-creative-commons-sa: "\f4ef"; +@fa-var-creative-commons-sampling: "\f4f0"; +@fa-var-creative-commons-sampling-plus: "\f4f1"; +@fa-var-creative-commons-share: "\f4f2"; +@fa-var-credit-card: "\f09d"; +@fa-var-crop: "\f125"; +@fa-var-crop-alt: "\f565"; +@fa-var-crosshairs: "\f05b"; +@fa-var-crow: "\f520"; +@fa-var-crown: "\f521"; +@fa-var-css3: "\f13c"; +@fa-var-css3-alt: "\f38b"; +@fa-var-cube: "\f1b2"; +@fa-var-cubes: "\f1b3"; +@fa-var-cut: "\f0c4"; +@fa-var-cuttlefish: "\f38c"; +@fa-var-d-and-d: "\f38d"; +@fa-var-dashcube: "\f210"; +@fa-var-database: "\f1c0"; +@fa-var-deaf: "\f2a4"; +@fa-var-delicious: "\f1a5"; +@fa-var-deploydog: "\f38e"; +@fa-var-deskpro: "\f38f"; +@fa-var-desktop: "\f108"; +@fa-var-deviantart: "\f1bd"; +@fa-var-diagnoses: "\f470"; +@fa-var-dice: "\f522"; +@fa-var-dice-five: "\f523"; +@fa-var-dice-four: "\f524"; +@fa-var-dice-one: "\f525"; +@fa-var-dice-six: "\f526"; +@fa-var-dice-three: "\f527"; +@fa-var-dice-two: "\f528"; +@fa-var-digg: "\f1a6"; +@fa-var-digital-ocean: "\f391"; +@fa-var-digital-tachograph: "\f566"; +@fa-var-discord: "\f392"; +@fa-var-discourse: "\f393"; +@fa-var-divide: "\f529"; +@fa-var-dizzy: "\f567"; +@fa-var-dna: "\f471"; +@fa-var-dochub: "\f394"; +@fa-var-docker: "\f395"; +@fa-var-dollar-sign: "\f155"; +@fa-var-dolly: "\f472"; +@fa-var-dolly-flatbed: "\f474"; +@fa-var-donate: "\f4b9"; +@fa-var-door-closed: "\f52a"; +@fa-var-door-open: "\f52b"; +@fa-var-dot-circle: "\f192"; +@fa-var-dove: "\f4ba"; +@fa-var-download: "\f019"; +@fa-var-draft2digital: "\f396"; +@fa-var-drafting-compass: "\f568"; +@fa-var-dribbble: "\f17d"; +@fa-var-dribbble-square: "\f397"; +@fa-var-dropbox: "\f16b"; +@fa-var-drum: "\f569"; +@fa-var-drum-steelpan: "\f56a"; +@fa-var-drupal: "\f1a9"; +@fa-var-dumbbell: "\f44b"; +@fa-var-dyalog: "\f399"; +@fa-var-earlybirds: "\f39a"; +@fa-var-ebay: "\f4f4"; +@fa-var-edge: "\f282"; +@fa-var-edit: "\f044"; +@fa-var-eject: "\f052"; +@fa-var-elementor: "\f430"; +@fa-var-ellipsis-h: "\f141"; +@fa-var-ellipsis-v: "\f142"; +@fa-var-ember: "\f423"; +@fa-var-empire: "\f1d1"; +@fa-var-envelope: "\f0e0"; +@fa-var-envelope-open: "\f2b6"; +@fa-var-envelope-square: "\f199"; +@fa-var-envira: "\f299"; +@fa-var-equals: "\f52c"; +@fa-var-eraser: "\f12d"; +@fa-var-erlang: "\f39d"; +@fa-var-ethereum: "\f42e"; +@fa-var-etsy: "\f2d7"; +@fa-var-euro-sign: "\f153"; +@fa-var-exchange-alt: "\f362"; +@fa-var-exclamation: "\f12a"; +@fa-var-exclamation-circle: "\f06a"; +@fa-var-exclamation-triangle: "\f071"; +@fa-var-expand: "\f065"; +@fa-var-expand-arrows-alt: "\f31e"; +@fa-var-expeditedssl: "\f23e"; +@fa-var-external-link-alt: "\f35d"; +@fa-var-external-link-square-alt: "\f360"; +@fa-var-eye: "\f06e"; +@fa-var-eye-dropper: "\f1fb"; +@fa-var-eye-slash: "\f070"; +@fa-var-facebook: "\f09a"; +@fa-var-facebook-f: "\f39e"; +@fa-var-facebook-messenger: "\f39f"; +@fa-var-facebook-square: "\f082"; +@fa-var-fast-backward: "\f049"; +@fa-var-fast-forward: "\f050"; +@fa-var-fax: "\f1ac"; +@fa-var-feather: "\f52d"; +@fa-var-feather-alt: "\f56b"; +@fa-var-female: "\f182"; +@fa-var-fighter-jet: "\f0fb"; +@fa-var-file: "\f15b"; +@fa-var-file-alt: "\f15c"; +@fa-var-file-archive: "\f1c6"; +@fa-var-file-audio: "\f1c7"; +@fa-var-file-code: "\f1c9"; +@fa-var-file-contract: "\f56c"; +@fa-var-file-download: "\f56d"; +@fa-var-file-excel: "\f1c3"; +@fa-var-file-export: "\f56e"; +@fa-var-file-image: "\f1c5"; +@fa-var-file-import: "\f56f"; +@fa-var-file-invoice: "\f570"; +@fa-var-file-invoice-dollar: "\f571"; +@fa-var-file-medical: "\f477"; +@fa-var-file-medical-alt: "\f478"; +@fa-var-file-pdf: "\f1c1"; +@fa-var-file-powerpoint: "\f1c4"; +@fa-var-file-prescription: "\f572"; +@fa-var-file-signature: "\f573"; +@fa-var-file-upload: "\f574"; +@fa-var-file-video: "\f1c8"; +@fa-var-file-word: "\f1c2"; +@fa-var-fill: "\f575"; +@fa-var-fill-drip: "\f576"; +@fa-var-film: "\f008"; +@fa-var-filter: "\f0b0"; +@fa-var-fingerprint: "\f577"; +@fa-var-fire: "\f06d"; +@fa-var-fire-extinguisher: "\f134"; +@fa-var-firefox: "\f269"; +@fa-var-first-aid: "\f479"; +@fa-var-first-order: "\f2b0"; +@fa-var-first-order-alt: "\f50a"; +@fa-var-firstdraft: "\f3a1"; +@fa-var-fish: "\f578"; +@fa-var-flag: "\f024"; +@fa-var-flag-checkered: "\f11e"; +@fa-var-flask: "\f0c3"; +@fa-var-flickr: "\f16e"; +@fa-var-flipboard: "\f44d"; +@fa-var-flushed: "\f579"; +@fa-var-fly: "\f417"; +@fa-var-folder: "\f07b"; +@fa-var-folder-open: "\f07c"; +@fa-var-font: "\f031"; +@fa-var-font-awesome: "\f2b4"; +@fa-var-font-awesome-alt: "\f35c"; +@fa-var-font-awesome-flag: "\f425"; +@fa-var-font-awesome-logo-full: "\f4e6"; +@fa-var-fonticons: "\f280"; +@fa-var-fonticons-fi: "\f3a2"; +@fa-var-football-ball: "\f44e"; +@fa-var-fort-awesome: "\f286"; +@fa-var-fort-awesome-alt: "\f3a3"; +@fa-var-forumbee: "\f211"; +@fa-var-forward: "\f04e"; +@fa-var-foursquare: "\f180"; +@fa-var-free-code-camp: "\f2c5"; +@fa-var-freebsd: "\f3a4"; +@fa-var-frog: "\f52e"; +@fa-var-frown: "\f119"; +@fa-var-frown-open: "\f57a"; +@fa-var-fulcrum: "\f50b"; +@fa-var-futbol: "\f1e3"; +@fa-var-galactic-republic: "\f50c"; +@fa-var-galactic-senate: "\f50d"; +@fa-var-gamepad: "\f11b"; +@fa-var-gas-pump: "\f52f"; +@fa-var-gavel: "\f0e3"; +@fa-var-gem: "\f3a5"; +@fa-var-genderless: "\f22d"; +@fa-var-get-pocket: "\f265"; +@fa-var-gg: "\f260"; +@fa-var-gg-circle: "\f261"; +@fa-var-gift: "\f06b"; +@fa-var-git: "\f1d3"; +@fa-var-git-square: "\f1d2"; +@fa-var-github: "\f09b"; +@fa-var-github-alt: "\f113"; +@fa-var-github-square: "\f092"; +@fa-var-gitkraken: "\f3a6"; +@fa-var-gitlab: "\f296"; +@fa-var-gitter: "\f426"; +@fa-var-glass-martini: "\f000"; +@fa-var-glass-martini-alt: "\f57b"; +@fa-var-glasses: "\f530"; +@fa-var-glide: "\f2a5"; +@fa-var-glide-g: "\f2a6"; +@fa-var-globe: "\f0ac"; +@fa-var-globe-africa: "\f57c"; +@fa-var-globe-americas: "\f57d"; +@fa-var-globe-asia: "\f57e"; +@fa-var-gofore: "\f3a7"; +@fa-var-golf-ball: "\f450"; +@fa-var-goodreads: "\f3a8"; +@fa-var-goodreads-g: "\f3a9"; +@fa-var-google: "\f1a0"; +@fa-var-google-drive: "\f3aa"; +@fa-var-google-play: "\f3ab"; +@fa-var-google-plus: "\f2b3"; +@fa-var-google-plus-g: "\f0d5"; +@fa-var-google-plus-square: "\f0d4"; +@fa-var-google-wallet: "\f1ee"; +@fa-var-graduation-cap: "\f19d"; +@fa-var-gratipay: "\f184"; +@fa-var-grav: "\f2d6"; +@fa-var-greater-than: "\f531"; +@fa-var-greater-than-equal: "\f532"; +@fa-var-grimace: "\f57f"; +@fa-var-grin: "\f580"; +@fa-var-grin-alt: "\f581"; +@fa-var-grin-beam: "\f582"; +@fa-var-grin-beam-sweat: "\f583"; +@fa-var-grin-hearts: "\f584"; +@fa-var-grin-squint: "\f585"; +@fa-var-grin-squint-tears: "\f586"; +@fa-var-grin-stars: "\f587"; +@fa-var-grin-tears: "\f588"; +@fa-var-grin-tongue: "\f589"; +@fa-var-grin-tongue-squint: "\f58a"; +@fa-var-grin-tongue-wink: "\f58b"; +@fa-var-grin-wink: "\f58c"; +@fa-var-grip-horizontal: "\f58d"; +@fa-var-grip-vertical: "\f58e"; +@fa-var-gripfire: "\f3ac"; +@fa-var-grunt: "\f3ad"; +@fa-var-gulp: "\f3ae"; +@fa-var-h-square: "\f0fd"; +@fa-var-hacker-news: "\f1d4"; +@fa-var-hacker-news-square: "\f3af"; +@fa-var-hand-holding: "\f4bd"; +@fa-var-hand-holding-heart: "\f4be"; +@fa-var-hand-holding-usd: "\f4c0"; +@fa-var-hand-lizard: "\f258"; +@fa-var-hand-paper: "\f256"; +@fa-var-hand-peace: "\f25b"; +@fa-var-hand-point-down: "\f0a7"; +@fa-var-hand-point-left: "\f0a5"; +@fa-var-hand-point-right: "\f0a4"; +@fa-var-hand-point-up: "\f0a6"; +@fa-var-hand-pointer: "\f25a"; +@fa-var-hand-rock: "\f255"; +@fa-var-hand-scissors: "\f257"; +@fa-var-hand-spock: "\f259"; +@fa-var-hands: "\f4c2"; +@fa-var-hands-helping: "\f4c4"; +@fa-var-handshake: "\f2b5"; +@fa-var-hashtag: "\f292"; +@fa-var-hdd: "\f0a0"; +@fa-var-heading: "\f1dc"; +@fa-var-headphones: "\f025"; +@fa-var-headphones-alt: "\f58f"; +@fa-var-headset: "\f590"; +@fa-var-heart: "\f004"; +@fa-var-heartbeat: "\f21e"; +@fa-var-helicopter: "\f533"; +@fa-var-highlighter: "\f591"; +@fa-var-hips: "\f452"; +@fa-var-hire-a-helper: "\f3b0"; +@fa-var-history: "\f1da"; +@fa-var-hockey-puck: "\f453"; +@fa-var-home: "\f015"; +@fa-var-hooli: "\f427"; +@fa-var-hornbill: "\f592"; +@fa-var-hospital: "\f0f8"; +@fa-var-hospital-alt: "\f47d"; +@fa-var-hospital-symbol: "\f47e"; +@fa-var-hot-tub: "\f593"; +@fa-var-hotel: "\f594"; +@fa-var-hotjar: "\f3b1"; +@fa-var-hourglass: "\f254"; +@fa-var-hourglass-end: "\f253"; +@fa-var-hourglass-half: "\f252"; +@fa-var-hourglass-start: "\f251"; +@fa-var-houzz: "\f27c"; +@fa-var-html5: "\f13b"; +@fa-var-hubspot: "\f3b2"; +@fa-var-i-cursor: "\f246"; +@fa-var-id-badge: "\f2c1"; +@fa-var-id-card: "\f2c2"; +@fa-var-id-card-alt: "\f47f"; +@fa-var-image: "\f03e"; +@fa-var-images: "\f302"; +@fa-var-imdb: "\f2d8"; +@fa-var-inbox: "\f01c"; +@fa-var-indent: "\f03c"; +@fa-var-industry: "\f275"; +@fa-var-infinity: "\f534"; +@fa-var-info: "\f129"; +@fa-var-info-circle: "\f05a"; +@fa-var-instagram: "\f16d"; +@fa-var-internet-explorer: "\f26b"; +@fa-var-ioxhost: "\f208"; +@fa-var-italic: "\f033"; +@fa-var-itunes: "\f3b4"; +@fa-var-itunes-note: "\f3b5"; +@fa-var-java: "\f4e4"; +@fa-var-jedi-order: "\f50e"; +@fa-var-jenkins: "\f3b6"; +@fa-var-joget: "\f3b7"; +@fa-var-joint: "\f595"; +@fa-var-joomla: "\f1aa"; +@fa-var-js: "\f3b8"; +@fa-var-js-square: "\f3b9"; +@fa-var-jsfiddle: "\f1cc"; +@fa-var-key: "\f084"; +@fa-var-keybase: "\f4f5"; +@fa-var-keyboard: "\f11c"; +@fa-var-keycdn: "\f3ba"; +@fa-var-kickstarter: "\f3bb"; +@fa-var-kickstarter-k: "\f3bc"; +@fa-var-kiss: "\f596"; +@fa-var-kiss-beam: "\f597"; +@fa-var-kiss-wink-heart: "\f598"; +@fa-var-kiwi-bird: "\f535"; +@fa-var-korvue: "\f42f"; +@fa-var-language: "\f1ab"; +@fa-var-laptop: "\f109"; +@fa-var-laravel: "\f3bd"; +@fa-var-lastfm: "\f202"; +@fa-var-lastfm-square: "\f203"; +@fa-var-laugh: "\f599"; +@fa-var-laugh-beam: "\f59a"; +@fa-var-laugh-squint: "\f59b"; +@fa-var-laugh-wink: "\f59c"; +@fa-var-leaf: "\f06c"; +@fa-var-leanpub: "\f212"; +@fa-var-lemon: "\f094"; +@fa-var-less: "\f41d"; +@fa-var-less-than: "\f536"; +@fa-var-less-than-equal: "\f537"; +@fa-var-level-down-alt: "\f3be"; +@fa-var-level-up-alt: "\f3bf"; +@fa-var-life-ring: "\f1cd"; +@fa-var-lightbulb: "\f0eb"; +@fa-var-line: "\f3c0"; +@fa-var-link: "\f0c1"; +@fa-var-linkedin: "\f08c"; +@fa-var-linkedin-in: "\f0e1"; +@fa-var-linode: "\f2b8"; +@fa-var-linux: "\f17c"; +@fa-var-lira-sign: "\f195"; +@fa-var-list: "\f03a"; +@fa-var-list-alt: "\f022"; +@fa-var-list-ol: "\f0cb"; +@fa-var-list-ul: "\f0ca"; +@fa-var-location-arrow: "\f124"; +@fa-var-lock: "\f023"; +@fa-var-lock-open: "\f3c1"; +@fa-var-long-arrow-alt-down: "\f309"; +@fa-var-long-arrow-alt-left: "\f30a"; +@fa-var-long-arrow-alt-right: "\f30b"; +@fa-var-long-arrow-alt-up: "\f30c"; +@fa-var-low-vision: "\f2a8"; +@fa-var-luggage-cart: "\f59d"; +@fa-var-lyft: "\f3c3"; +@fa-var-magento: "\f3c4"; +@fa-var-magic: "\f0d0"; +@fa-var-magnet: "\f076"; +@fa-var-mailchimp: "\f59e"; +@fa-var-male: "\f183"; +@fa-var-mandalorian: "\f50f"; +@fa-var-map: "\f279"; +@fa-var-map-marked: "\f59f"; +@fa-var-map-marked-alt: "\f5a0"; +@fa-var-map-marker: "\f041"; +@fa-var-map-marker-alt: "\f3c5"; +@fa-var-map-pin: "\f276"; +@fa-var-map-signs: "\f277"; +@fa-var-marker: "\f5a1"; +@fa-var-mars: "\f222"; +@fa-var-mars-double: "\f227"; +@fa-var-mars-stroke: "\f229"; +@fa-var-mars-stroke-h: "\f22b"; +@fa-var-mars-stroke-v: "\f22a"; +@fa-var-mastodon: "\f4f6"; +@fa-var-maxcdn: "\f136"; +@fa-var-medal: "\f5a2"; +@fa-var-medapps: "\f3c6"; +@fa-var-medium: "\f23a"; +@fa-var-medium-m: "\f3c7"; +@fa-var-medkit: "\f0fa"; +@fa-var-medrt: "\f3c8"; +@fa-var-meetup: "\f2e0"; +@fa-var-megaport: "\f5a3"; +@fa-var-meh: "\f11a"; +@fa-var-meh-blank: "\f5a4"; +@fa-var-meh-rolling-eyes: "\f5a5"; +@fa-var-memory: "\f538"; +@fa-var-mercury: "\f223"; +@fa-var-microchip: "\f2db"; +@fa-var-microphone: "\f130"; +@fa-var-microphone-alt: "\f3c9"; +@fa-var-microphone-alt-slash: "\f539"; +@fa-var-microphone-slash: "\f131"; +@fa-var-microsoft: "\f3ca"; +@fa-var-minus: "\f068"; +@fa-var-minus-circle: "\f056"; +@fa-var-minus-square: "\f146"; +@fa-var-mix: "\f3cb"; +@fa-var-mixcloud: "\f289"; +@fa-var-mizuni: "\f3cc"; +@fa-var-mobile: "\f10b"; +@fa-var-mobile-alt: "\f3cd"; +@fa-var-modx: "\f285"; +@fa-var-monero: "\f3d0"; +@fa-var-money-bill: "\f0d6"; +@fa-var-money-bill-alt: "\f3d1"; +@fa-var-money-bill-wave: "\f53a"; +@fa-var-money-bill-wave-alt: "\f53b"; +@fa-var-money-check: "\f53c"; +@fa-var-money-check-alt: "\f53d"; +@fa-var-monument: "\f5a6"; +@fa-var-moon: "\f186"; +@fa-var-mortar-pestle: "\f5a7"; +@fa-var-motorcycle: "\f21c"; +@fa-var-mouse-pointer: "\f245"; +@fa-var-music: "\f001"; +@fa-var-napster: "\f3d2"; +@fa-var-neuter: "\f22c"; +@fa-var-newspaper: "\f1ea"; +@fa-var-nimblr: "\f5a8"; +@fa-var-nintendo-switch: "\f418"; +@fa-var-node: "\f419"; +@fa-var-node-js: "\f3d3"; +@fa-var-not-equal: "\f53e"; +@fa-var-notes-medical: "\f481"; +@fa-var-npm: "\f3d4"; +@fa-var-ns8: "\f3d5"; +@fa-var-nutritionix: "\f3d6"; +@fa-var-object-group: "\f247"; +@fa-var-object-ungroup: "\f248"; +@fa-var-odnoklassniki: "\f263"; +@fa-var-odnoklassniki-square: "\f264"; +@fa-var-old-republic: "\f510"; +@fa-var-opencart: "\f23d"; +@fa-var-openid: "\f19b"; +@fa-var-opera: "\f26a"; +@fa-var-optin-monster: "\f23c"; +@fa-var-osi: "\f41a"; +@fa-var-outdent: "\f03b"; +@fa-var-page4: "\f3d7"; +@fa-var-pagelines: "\f18c"; +@fa-var-paint-brush: "\f1fc"; +@fa-var-paint-roller: "\f5aa"; +@fa-var-palette: "\f53f"; +@fa-var-palfed: "\f3d8"; +@fa-var-pallet: "\f482"; +@fa-var-paper-plane: "\f1d8"; +@fa-var-paperclip: "\f0c6"; +@fa-var-parachute-box: "\f4cd"; +@fa-var-paragraph: "\f1dd"; +@fa-var-parking: "\f540"; +@fa-var-passport: "\f5ab"; +@fa-var-paste: "\f0ea"; +@fa-var-patreon: "\f3d9"; +@fa-var-pause: "\f04c"; +@fa-var-pause-circle: "\f28b"; +@fa-var-paw: "\f1b0"; +@fa-var-paypal: "\f1ed"; +@fa-var-pen: "\f304"; +@fa-var-pen-alt: "\f305"; +@fa-var-pen-fancy: "\f5ac"; +@fa-var-pen-nib: "\f5ad"; +@fa-var-pen-square: "\f14b"; +@fa-var-pencil-alt: "\f303"; +@fa-var-pencil-ruler: "\f5ae"; +@fa-var-people-carry: "\f4ce"; +@fa-var-percent: "\f295"; +@fa-var-percentage: "\f541"; +@fa-var-periscope: "\f3da"; +@fa-var-phabricator: "\f3db"; +@fa-var-phoenix-framework: "\f3dc"; +@fa-var-phoenix-squadron: "\f511"; +@fa-var-phone: "\f095"; +@fa-var-phone-slash: "\f3dd"; +@fa-var-phone-square: "\f098"; +@fa-var-phone-volume: "\f2a0"; +@fa-var-php: "\f457"; +@fa-var-pied-piper: "\f2ae"; +@fa-var-pied-piper-alt: "\f1a8"; +@fa-var-pied-piper-hat: "\f4e5"; +@fa-var-pied-piper-pp: "\f1a7"; +@fa-var-piggy-bank: "\f4d3"; +@fa-var-pills: "\f484"; +@fa-var-pinterest: "\f0d2"; +@fa-var-pinterest-p: "\f231"; +@fa-var-pinterest-square: "\f0d3"; +@fa-var-plane: "\f072"; +@fa-var-plane-arrival: "\f5af"; +@fa-var-plane-departure: "\f5b0"; +@fa-var-play: "\f04b"; +@fa-var-play-circle: "\f144"; +@fa-var-playstation: "\f3df"; +@fa-var-plug: "\f1e6"; +@fa-var-plus: "\f067"; +@fa-var-plus-circle: "\f055"; +@fa-var-plus-square: "\f0fe"; +@fa-var-podcast: "\f2ce"; +@fa-var-poo: "\f2fe"; +@fa-var-portrait: "\f3e0"; +@fa-var-pound-sign: "\f154"; +@fa-var-power-off: "\f011"; +@fa-var-prescription: "\f5b1"; +@fa-var-prescription-bottle: "\f485"; +@fa-var-prescription-bottle-alt: "\f486"; +@fa-var-print: "\f02f"; +@fa-var-procedures: "\f487"; +@fa-var-product-hunt: "\f288"; +@fa-var-project-diagram: "\f542"; +@fa-var-pushed: "\f3e1"; +@fa-var-puzzle-piece: "\f12e"; +@fa-var-python: "\f3e2"; +@fa-var-qq: "\f1d6"; +@fa-var-qrcode: "\f029"; +@fa-var-question: "\f128"; +@fa-var-question-circle: "\f059"; +@fa-var-quidditch: "\f458"; +@fa-var-quinscape: "\f459"; +@fa-var-quora: "\f2c4"; +@fa-var-quote-left: "\f10d"; +@fa-var-quote-right: "\f10e"; +@fa-var-r-project: "\f4f7"; +@fa-var-random: "\f074"; +@fa-var-ravelry: "\f2d9"; +@fa-var-react: "\f41b"; +@fa-var-readme: "\f4d5"; +@fa-var-rebel: "\f1d0"; +@fa-var-receipt: "\f543"; +@fa-var-recycle: "\f1b8"; +@fa-var-red-river: "\f3e3"; +@fa-var-reddit: "\f1a1"; +@fa-var-reddit-alien: "\f281"; +@fa-var-reddit-square: "\f1a2"; +@fa-var-redo: "\f01e"; +@fa-var-redo-alt: "\f2f9"; +@fa-var-registered: "\f25d"; +@fa-var-rendact: "\f3e4"; +@fa-var-renren: "\f18b"; +@fa-var-reply: "\f3e5"; +@fa-var-reply-all: "\f122"; +@fa-var-replyd: "\f3e6"; +@fa-var-researchgate: "\f4f8"; +@fa-var-resolving: "\f3e7"; +@fa-var-retweet: "\f079"; +@fa-var-rev: "\f5b2"; +@fa-var-ribbon: "\f4d6"; +@fa-var-road: "\f018"; +@fa-var-robot: "\f544"; +@fa-var-rocket: "\f135"; +@fa-var-rocketchat: "\f3e8"; +@fa-var-rockrms: "\f3e9"; +@fa-var-rss: "\f09e"; +@fa-var-rss-square: "\f143"; +@fa-var-ruble-sign: "\f158"; +@fa-var-ruler: "\f545"; +@fa-var-ruler-combined: "\f546"; +@fa-var-ruler-horizontal: "\f547"; +@fa-var-ruler-vertical: "\f548"; +@fa-var-rupee-sign: "\f156"; +@fa-var-sad-cry: "\f5b3"; +@fa-var-sad-tear: "\f5b4"; +@fa-var-safari: "\f267"; +@fa-var-sass: "\f41e"; +@fa-var-save: "\f0c7"; +@fa-var-schlix: "\f3ea"; +@fa-var-school: "\f549"; +@fa-var-screwdriver: "\f54a"; +@fa-var-scribd: "\f28a"; +@fa-var-search: "\f002"; +@fa-var-search-minus: "\f010"; +@fa-var-search-plus: "\f00e"; +@fa-var-searchengin: "\f3eb"; +@fa-var-seedling: "\f4d8"; +@fa-var-sellcast: "\f2da"; +@fa-var-sellsy: "\f213"; +@fa-var-server: "\f233"; +@fa-var-servicestack: "\f3ec"; +@fa-var-share: "\f064"; +@fa-var-share-alt: "\f1e0"; +@fa-var-share-alt-square: "\f1e1"; +@fa-var-share-square: "\f14d"; +@fa-var-shekel-sign: "\f20b"; +@fa-var-shield-alt: "\f3ed"; +@fa-var-ship: "\f21a"; +@fa-var-shipping-fast: "\f48b"; +@fa-var-shirtsinbulk: "\f214"; +@fa-var-shoe-prints: "\f54b"; +@fa-var-shopping-bag: "\f290"; +@fa-var-shopping-basket: "\f291"; +@fa-var-shopping-cart: "\f07a"; +@fa-var-shopware: "\f5b5"; +@fa-var-shower: "\f2cc"; +@fa-var-shuttle-van: "\f5b6"; +@fa-var-sign: "\f4d9"; +@fa-var-sign-in-alt: "\f2f6"; +@fa-var-sign-language: "\f2a7"; +@fa-var-sign-out-alt: "\f2f5"; +@fa-var-signal: "\f012"; +@fa-var-signature: "\f5b7"; +@fa-var-simplybuilt: "\f215"; +@fa-var-sistrix: "\f3ee"; +@fa-var-sitemap: "\f0e8"; +@fa-var-sith: "\f512"; +@fa-var-skull: "\f54c"; +@fa-var-skyatlas: "\f216"; +@fa-var-skype: "\f17e"; +@fa-var-slack: "\f198"; +@fa-var-slack-hash: "\f3ef"; +@fa-var-sliders-h: "\f1de"; +@fa-var-slideshare: "\f1e7"; +@fa-var-smile: "\f118"; +@fa-var-smile-beam: "\f5b8"; +@fa-var-smile-wink: "\f4da"; +@fa-var-smoking: "\f48d"; +@fa-var-smoking-ban: "\f54d"; +@fa-var-snapchat: "\f2ab"; +@fa-var-snapchat-ghost: "\f2ac"; +@fa-var-snapchat-square: "\f2ad"; +@fa-var-snowflake: "\f2dc"; +@fa-var-solar-panel: "\f5ba"; +@fa-var-sort: "\f0dc"; +@fa-var-sort-alpha-down: "\f15d"; +@fa-var-sort-alpha-up: "\f15e"; +@fa-var-sort-amount-down: "\f160"; +@fa-var-sort-amount-up: "\f161"; +@fa-var-sort-down: "\f0dd"; +@fa-var-sort-numeric-down: "\f162"; +@fa-var-sort-numeric-up: "\f163"; +@fa-var-sort-up: "\f0de"; +@fa-var-soundcloud: "\f1be"; +@fa-var-spa: "\f5bb"; +@fa-var-space-shuttle: "\f197"; +@fa-var-speakap: "\f3f3"; +@fa-var-spinner: "\f110"; +@fa-var-splotch: "\f5bc"; +@fa-var-spotify: "\f1bc"; +@fa-var-spray-can: "\f5bd"; +@fa-var-square: "\f0c8"; +@fa-var-square-full: "\f45c"; +@fa-var-squarespace: "\f5be"; +@fa-var-stack-exchange: "\f18d"; +@fa-var-stack-overflow: "\f16c"; +@fa-var-stamp: "\f5bf"; +@fa-var-star: "\f005"; +@fa-var-star-half: "\f089"; +@fa-var-star-half-alt: "\f5c0"; +@fa-var-staylinked: "\f3f5"; +@fa-var-steam: "\f1b6"; +@fa-var-steam-square: "\f1b7"; +@fa-var-steam-symbol: "\f3f6"; +@fa-var-step-backward: "\f048"; +@fa-var-step-forward: "\f051"; +@fa-var-stethoscope: "\f0f1"; +@fa-var-sticker-mule: "\f3f7"; +@fa-var-sticky-note: "\f249"; +@fa-var-stop: "\f04d"; +@fa-var-stop-circle: "\f28d"; +@fa-var-stopwatch: "\f2f2"; +@fa-var-store: "\f54e"; +@fa-var-store-alt: "\f54f"; +@fa-var-strava: "\f428"; +@fa-var-stream: "\f550"; +@fa-var-street-view: "\f21d"; +@fa-var-strikethrough: "\f0cc"; +@fa-var-stripe: "\f429"; +@fa-var-stripe-s: "\f42a"; +@fa-var-stroopwafel: "\f551"; +@fa-var-studiovinari: "\f3f8"; +@fa-var-stumbleupon: "\f1a4"; +@fa-var-stumbleupon-circle: "\f1a3"; +@fa-var-subscript: "\f12c"; +@fa-var-subway: "\f239"; +@fa-var-suitcase: "\f0f2"; +@fa-var-suitcase-rolling: "\f5c1"; +@fa-var-sun: "\f185"; +@fa-var-superpowers: "\f2dd"; +@fa-var-superscript: "\f12b"; +@fa-var-supple: "\f3f9"; +@fa-var-surprise: "\f5c2"; +@fa-var-swatchbook: "\f5c3"; +@fa-var-swimmer: "\f5c4"; +@fa-var-swimming-pool: "\f5c5"; +@fa-var-sync: "\f021"; +@fa-var-sync-alt: "\f2f1"; +@fa-var-syringe: "\f48e"; +@fa-var-table: "\f0ce"; +@fa-var-table-tennis: "\f45d"; +@fa-var-tablet: "\f10a"; +@fa-var-tablet-alt: "\f3fa"; +@fa-var-tablets: "\f490"; +@fa-var-tachometer-alt: "\f3fd"; +@fa-var-tag: "\f02b"; +@fa-var-tags: "\f02c"; +@fa-var-tape: "\f4db"; +@fa-var-tasks: "\f0ae"; +@fa-var-taxi: "\f1ba"; +@fa-var-teamspeak: "\f4f9"; +@fa-var-telegram: "\f2c6"; +@fa-var-telegram-plane: "\f3fe"; +@fa-var-tencent-weibo: "\f1d5"; +@fa-var-terminal: "\f120"; +@fa-var-text-height: "\f034"; +@fa-var-text-width: "\f035"; +@fa-var-th: "\f00a"; +@fa-var-th-large: "\f009"; +@fa-var-th-list: "\f00b"; +@fa-var-themeco: "\f5c6"; +@fa-var-themeisle: "\f2b2"; +@fa-var-thermometer: "\f491"; +@fa-var-thermometer-empty: "\f2cb"; +@fa-var-thermometer-full: "\f2c7"; +@fa-var-thermometer-half: "\f2c9"; +@fa-var-thermometer-quarter: "\f2ca"; +@fa-var-thermometer-three-quarters: "\f2c8"; +@fa-var-thumbs-down: "\f165"; +@fa-var-thumbs-up: "\f164"; +@fa-var-thumbtack: "\f08d"; +@fa-var-ticket-alt: "\f3ff"; +@fa-var-times: "\f00d"; +@fa-var-times-circle: "\f057"; +@fa-var-tint: "\f043"; +@fa-var-tint-slash: "\f5c7"; +@fa-var-tired: "\f5c8"; +@fa-var-toggle-off: "\f204"; +@fa-var-toggle-on: "\f205"; +@fa-var-toolbox: "\f552"; +@fa-var-tooth: "\f5c9"; +@fa-var-trade-federation: "\f513"; +@fa-var-trademark: "\f25c"; +@fa-var-train: "\f238"; +@fa-var-transgender: "\f224"; +@fa-var-transgender-alt: "\f225"; +@fa-var-trash: "\f1f8"; +@fa-var-trash-alt: "\f2ed"; +@fa-var-tree: "\f1bb"; +@fa-var-trello: "\f181"; +@fa-var-tripadvisor: "\f262"; +@fa-var-trophy: "\f091"; +@fa-var-truck: "\f0d1"; +@fa-var-truck-loading: "\f4de"; +@fa-var-truck-moving: "\f4df"; +@fa-var-tshirt: "\f553"; +@fa-var-tty: "\f1e4"; +@fa-var-tumblr: "\f173"; +@fa-var-tumblr-square: "\f174"; +@fa-var-tv: "\f26c"; +@fa-var-twitch: "\f1e8"; +@fa-var-twitter: "\f099"; +@fa-var-twitter-square: "\f081"; +@fa-var-typo3: "\f42b"; +@fa-var-uber: "\f402"; +@fa-var-uikit: "\f403"; +@fa-var-umbrella: "\f0e9"; +@fa-var-umbrella-beach: "\f5ca"; +@fa-var-underline: "\f0cd"; +@fa-var-undo: "\f0e2"; +@fa-var-undo-alt: "\f2ea"; +@fa-var-uniregistry: "\f404"; +@fa-var-universal-access: "\f29a"; +@fa-var-university: "\f19c"; +@fa-var-unlink: "\f127"; +@fa-var-unlock: "\f09c"; +@fa-var-unlock-alt: "\f13e"; +@fa-var-untappd: "\f405"; +@fa-var-upload: "\f093"; +@fa-var-usb: "\f287"; +@fa-var-user: "\f007"; +@fa-var-user-alt: "\f406"; +@fa-var-user-alt-slash: "\f4fa"; +@fa-var-user-astronaut: "\f4fb"; +@fa-var-user-check: "\f4fc"; +@fa-var-user-circle: "\f2bd"; +@fa-var-user-clock: "\f4fd"; +@fa-var-user-cog: "\f4fe"; +@fa-var-user-edit: "\f4ff"; +@fa-var-user-friends: "\f500"; +@fa-var-user-graduate: "\f501"; +@fa-var-user-lock: "\f502"; +@fa-var-user-md: "\f0f0"; +@fa-var-user-minus: "\f503"; +@fa-var-user-ninja: "\f504"; +@fa-var-user-plus: "\f234"; +@fa-var-user-secret: "\f21b"; +@fa-var-user-shield: "\f505"; +@fa-var-user-slash: "\f506"; +@fa-var-user-tag: "\f507"; +@fa-var-user-tie: "\f508"; +@fa-var-user-times: "\f235"; +@fa-var-users: "\f0c0"; +@fa-var-users-cog: "\f509"; +@fa-var-ussunnah: "\f407"; +@fa-var-utensil-spoon: "\f2e5"; +@fa-var-utensils: "\f2e7"; +@fa-var-vaadin: "\f408"; +@fa-var-vector-square: "\f5cb"; +@fa-var-venus: "\f221"; +@fa-var-venus-double: "\f226"; +@fa-var-venus-mars: "\f228"; +@fa-var-viacoin: "\f237"; +@fa-var-viadeo: "\f2a9"; +@fa-var-viadeo-square: "\f2aa"; +@fa-var-vial: "\f492"; +@fa-var-vials: "\f493"; +@fa-var-viber: "\f409"; +@fa-var-video: "\f03d"; +@fa-var-video-slash: "\f4e2"; +@fa-var-vimeo: "\f40a"; +@fa-var-vimeo-square: "\f194"; +@fa-var-vimeo-v: "\f27d"; +@fa-var-vine: "\f1ca"; +@fa-var-vk: "\f189"; +@fa-var-vnv: "\f40b"; +@fa-var-volleyball-ball: "\f45f"; +@fa-var-volume-down: "\f027"; +@fa-var-volume-off: "\f026"; +@fa-var-volume-up: "\f028"; +@fa-var-vuejs: "\f41f"; +@fa-var-walking: "\f554"; +@fa-var-wallet: "\f555"; +@fa-var-warehouse: "\f494"; +@fa-var-weebly: "\f5cc"; +@fa-var-weibo: "\f18a"; +@fa-var-weight: "\f496"; +@fa-var-weight-hanging: "\f5cd"; +@fa-var-weixin: "\f1d7"; +@fa-var-whatsapp: "\f232"; +@fa-var-whatsapp-square: "\f40c"; +@fa-var-wheelchair: "\f193"; +@fa-var-whmcs: "\f40d"; +@fa-var-wifi: "\f1eb"; +@fa-var-wikipedia-w: "\f266"; +@fa-var-window-close: "\f410"; +@fa-var-window-maximize: "\f2d0"; +@fa-var-window-minimize: "\f2d1"; +@fa-var-window-restore: "\f2d2"; +@fa-var-windows: "\f17a"; +@fa-var-wine-glass: "\f4e3"; +@fa-var-wine-glass-alt: "\f5ce"; +@fa-var-wix: "\f5cf"; +@fa-var-wolf-pack-battalion: "\f514"; +@fa-var-won-sign: "\f159"; +@fa-var-wordpress: "\f19a"; +@fa-var-wordpress-simple: "\f411"; +@fa-var-wpbeginner: "\f297"; +@fa-var-wpexplorer: "\f2de"; +@fa-var-wpforms: "\f298"; +@fa-var-wrench: "\f0ad"; +@fa-var-x-ray: "\f497"; +@fa-var-xbox: "\f412"; +@fa-var-xing: "\f168"; +@fa-var-xing-square: "\f169"; +@fa-var-y-combinator: "\f23b"; +@fa-var-yahoo: "\f19e"; +@fa-var-yandex: "\f413"; +@fa-var-yandex-international: "\f414"; +@fa-var-yelp: "\f1e9"; +@fa-var-yen-sign: "\f157"; +@fa-var-yoast: "\f2b1"; +@fa-var-youtube: "\f167"; +@fa-var-youtube-square: "\f431"; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/brands.less b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/brands.less new file mode 100644 index 0000000000..ae970c967e --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/brands.less @@ -0,0 +1,21 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import "_variables.less"; + +@font-face { + font-family: 'Font Awesome 5 Brands'; + font-style: normal; + font-weight: normal; + src: url('@{fa-font-path}/fa-brands-400.eot'); + src: url('@{fa-font-path}/fa-brands-400.eot?#iefix') format('embedded-opentype'), + url('@{fa-font-path}/fa-brands-400.woff2') format('woff2'), + url('@{fa-font-path}/fa-brands-400.woff') format('woff'), + url('@{fa-font-path}/fa-brands-400.ttf') format('truetype'), + url('@{fa-font-path}/fa-brands-400.svg#fontawesome') format('svg'); +} + +.fab { + font-family: 'Font Awesome 5 Brands'; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/fa-brands.less b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/fa-brands.less new file mode 100644 index 0000000000..ac788c8e0b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/fa-brands.less @@ -0,0 +1,21 @@ +/*! + * Font Awesome Free 5.1.0 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import "_variables.less"; + +@font-face { + font-family: 'Font Awesome 5 Brands'; + font-style: normal; + font-weight: normal; + src: url('@{fa-font-path}/fa-brands-400.eot'); + src: url('@{fa-font-path}/fa-brands-400.eot?#iefix') format('embedded-opentype'), + url('@{fa-font-path}/fa-brands-400.woff2') format('woff2'), + url('@{fa-font-path}/fa-brands-400.woff') format('woff'), + url('@{fa-font-path}/fa-brands-400.ttf') format('truetype'), + url('@{fa-font-path}/fa-brands-400.svg#fontawesome') format('svg'); +} + +.fab { + font-family: 'Font Awesome 5 Brands'; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/fa-regular.less b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/fa-regular.less new file mode 100644 index 0000000000..8d813851b0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/fa-regular.less @@ -0,0 +1,22 @@ +/*! + * Font Awesome Free 5.1.0 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import "_variables.less"; + +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 400; + src: url('@{fa-font-path}/fa-regular-400.eot'); + src: url('@{fa-font-path}/fa-regular-400.eot?#iefix') format('embedded-opentype'), + url('@{fa-font-path}/fa-regular-400.woff2') format('woff2'), + url('@{fa-font-path}/fa-regular-400.woff') format('woff'), + url('@{fa-font-path}/fa-regular-400.ttf') format('truetype'), + url('@{fa-font-path}/fa-regular-400.svg#fontawesome') format('svg'); +} + +.far { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/fa-solid.less b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/fa-solid.less new file mode 100644 index 0000000000..9275478f67 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/fa-solid.less @@ -0,0 +1,23 @@ +/*! + * Font Awesome Free 5.1.0 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import "_variables.less"; + +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 900; + src: url('@{fa-font-path}/fa-solid-900.eot'); + src: url('@{fa-font-path}/fa-solid-900.eot?#iefix') format('embedded-opentype'), + url('@{fa-font-path}/fa-solid-900.woff2') format('woff2'), + url('@{fa-font-path}/fa-solid-900.woff') format('woff'), + url('@{fa-font-path}/fa-solid-900.ttf') format('truetype'), + url('@{fa-font-path}/fa-solid-900.svg#fontawesome') format('svg'); +} + +.fa, +.fas { + font-family: 'Font Awesome 5 Free'; + font-weight: 900; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/fontawesome.less b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/fontawesome.less new file mode 100644 index 0000000000..19ae74f9bf --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/fontawesome.less @@ -0,0 +1,16 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import "_variables.less"; +@import "_mixins.less"; +@import "_core.less"; +@import "_larger.less"; +@import "_fixed-width.less"; +@import "_list.less"; +@import "_bordered-pulled.less"; +@import "_animated.less"; +@import "_rotated-flipped.less"; +@import "_stacked.less"; +@import "_icons.less"; +@import "_screen-reader.less"; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/regular.less b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/regular.less new file mode 100644 index 0000000000..1016c43bad --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/regular.less @@ -0,0 +1,22 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import "_variables.less"; + +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 400; + src: url('@{fa-font-path}/fa-regular-400.eot'); + src: url('@{fa-font-path}/fa-regular-400.eot?#iefix') format('embedded-opentype'), + url('@{fa-font-path}/fa-regular-400.woff2') format('woff2'), + url('@{fa-font-path}/fa-regular-400.woff') format('woff'), + url('@{fa-font-path}/fa-regular-400.ttf') format('truetype'), + url('@{fa-font-path}/fa-regular-400.svg#fontawesome') format('svg'); +} + +.far { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/solid.less b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/solid.less new file mode 100644 index 0000000000..5642289387 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/solid.less @@ -0,0 +1,23 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import "_variables.less"; + +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 900; + src: url('@{fa-font-path}/fa-solid-900.eot'); + src: url('@{fa-font-path}/fa-solid-900.eot?#iefix') format('embedded-opentype'), + url('@{fa-font-path}/fa-solid-900.woff2') format('woff2'), + url('@{fa-font-path}/fa-solid-900.woff') format('woff'), + url('@{fa-font-path}/fa-solid-900.ttf') format('truetype'), + url('@{fa-font-path}/fa-solid-900.svg#fontawesome') format('svg'); +} + +.fa, +.fas { + font-family: 'Font Awesome 5 Free'; + font-weight: 900; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/v4-shims.less b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/v4-shims.less new file mode 100644 index 0000000000..18c66883b1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/less/v4-shims.less @@ -0,0 +1,6 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import '_variables.less'; +@import '_shims.less'; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_animated.scss b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_animated.scss new file mode 100644 index 0000000000..7c7c0e173c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_animated.scss @@ -0,0 +1,20 @@ +// Animated Icons +// -------------------------- + +.#{$fa-css-prefix}-spin { + animation: fa-spin 2s infinite linear; +} + +.#{$fa-css-prefix}-pulse { + animation: fa-spin 1s infinite steps(8); +} + +@keyframes fa-spin { + 0% { + transform: rotate(0deg); + } + + 100% { + transform: rotate(360deg); + } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_bordered-pulled.scss b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_bordered-pulled.scss new file mode 100644 index 0000000000..c8c4274c40 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_bordered-pulled.scss @@ -0,0 +1,20 @@ +// Bordered & Pulled +// ------------------------- + +.#{$fa-css-prefix}-border { + border: solid .08em $fa-border-color; + border-radius: .1em; + padding: .2em .25em .15em; +} + +.#{$fa-css-prefix}-pull-left { float: left; } +.#{$fa-css-prefix}-pull-right { float: right; } + +.#{$fa-css-prefix}, +.fas, +.far, +.fal, +.fab { + &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } + &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_core.scss b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_core.scss new file mode 100644 index 0000000000..7fd37f855c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_core.scss @@ -0,0 +1,16 @@ +// Base Class Definition +// ------------------------- + +.#{$fa-css-prefix}, +.fas, +.far, +.fal, +.fab { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + line-height: 1; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_fixed-width.scss b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_fixed-width.scss new file mode 100644 index 0000000000..5b33eb49aa --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_fixed-width.scss @@ -0,0 +1,6 @@ +// Fixed Width Icons +// ------------------------- +.#{$fa-css-prefix}-fw { + text-align: center; + width: (20em / 16); +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_icons.scss b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_icons.scss new file mode 100644 index 0000000000..96c261aab4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_icons.scss @@ -0,0 +1,1115 @@ +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen +readers do not read off random characters that represent icons */ + +.#{$fa-css-prefix}-500px:before { content: fa-content($fa-var-500px); } +.#{$fa-css-prefix}-accessible-icon:before { content: fa-content($fa-var-accessible-icon); } +.#{$fa-css-prefix}-accusoft:before { content: fa-content($fa-var-accusoft); } +.#{$fa-css-prefix}-address-book:before { content: fa-content($fa-var-address-book); } +.#{$fa-css-prefix}-address-card:before { content: fa-content($fa-var-address-card); } +.#{$fa-css-prefix}-adjust:before { content: fa-content($fa-var-adjust); } +.#{$fa-css-prefix}-adn:before { content: fa-content($fa-var-adn); } +.#{$fa-css-prefix}-adversal:before { content: fa-content($fa-var-adversal); } +.#{$fa-css-prefix}-affiliatetheme:before { content: fa-content($fa-var-affiliatetheme); } +.#{$fa-css-prefix}-algolia:before { content: fa-content($fa-var-algolia); } +.#{$fa-css-prefix}-align-center:before { content: fa-content($fa-var-align-center); } +.#{$fa-css-prefix}-align-justify:before { content: fa-content($fa-var-align-justify); } +.#{$fa-css-prefix}-align-left:before { content: fa-content($fa-var-align-left); } +.#{$fa-css-prefix}-align-right:before { content: fa-content($fa-var-align-right); } +.#{$fa-css-prefix}-allergies:before { content: fa-content($fa-var-allergies); } +.#{$fa-css-prefix}-amazon:before { content: fa-content($fa-var-amazon); } +.#{$fa-css-prefix}-amazon-pay:before { content: fa-content($fa-var-amazon-pay); } +.#{$fa-css-prefix}-ambulance:before { content: fa-content($fa-var-ambulance); } +.#{$fa-css-prefix}-american-sign-language-interpreting:before { content: fa-content($fa-var-american-sign-language-interpreting); } +.#{$fa-css-prefix}-amilia:before { content: fa-content($fa-var-amilia); } +.#{$fa-css-prefix}-anchor:before { content: fa-content($fa-var-anchor); } +.#{$fa-css-prefix}-android:before { content: fa-content($fa-var-android); } +.#{$fa-css-prefix}-angellist:before { content: fa-content($fa-var-angellist); } +.#{$fa-css-prefix}-angle-double-down:before { content: fa-content($fa-var-angle-double-down); } +.#{$fa-css-prefix}-angle-double-left:before { content: fa-content($fa-var-angle-double-left); } +.#{$fa-css-prefix}-angle-double-right:before { content: fa-content($fa-var-angle-double-right); } +.#{$fa-css-prefix}-angle-double-up:before { content: fa-content($fa-var-angle-double-up); } +.#{$fa-css-prefix}-angle-down:before { content: fa-content($fa-var-angle-down); } +.#{$fa-css-prefix}-angle-left:before { content: fa-content($fa-var-angle-left); } +.#{$fa-css-prefix}-angle-right:before { content: fa-content($fa-var-angle-right); } +.#{$fa-css-prefix}-angle-up:before { content: fa-content($fa-var-angle-up); } +.#{$fa-css-prefix}-angry:before { content: fa-content($fa-var-angry); } +.#{$fa-css-prefix}-angrycreative:before { content: fa-content($fa-var-angrycreative); } +.#{$fa-css-prefix}-angular:before { content: fa-content($fa-var-angular); } +.#{$fa-css-prefix}-app-store:before { content: fa-content($fa-var-app-store); } +.#{$fa-css-prefix}-app-store-ios:before { content: fa-content($fa-var-app-store-ios); } +.#{$fa-css-prefix}-apper:before { content: fa-content($fa-var-apper); } +.#{$fa-css-prefix}-apple:before { content: fa-content($fa-var-apple); } +.#{$fa-css-prefix}-apple-pay:before { content: fa-content($fa-var-apple-pay); } +.#{$fa-css-prefix}-archive:before { content: fa-content($fa-var-archive); } +.#{$fa-css-prefix}-archway:before { content: fa-content($fa-var-archway); } +.#{$fa-css-prefix}-arrow-alt-circle-down:before { content: fa-content($fa-var-arrow-alt-circle-down); } +.#{$fa-css-prefix}-arrow-alt-circle-left:before { content: fa-content($fa-var-arrow-alt-circle-left); } +.#{$fa-css-prefix}-arrow-alt-circle-right:before { content: fa-content($fa-var-arrow-alt-circle-right); } +.#{$fa-css-prefix}-arrow-alt-circle-up:before { content: fa-content($fa-var-arrow-alt-circle-up); } +.#{$fa-css-prefix}-arrow-circle-down:before { content: fa-content($fa-var-arrow-circle-down); } +.#{$fa-css-prefix}-arrow-circle-left:before { content: fa-content($fa-var-arrow-circle-left); } +.#{$fa-css-prefix}-arrow-circle-right:before { content: fa-content($fa-var-arrow-circle-right); } +.#{$fa-css-prefix}-arrow-circle-up:before { content: fa-content($fa-var-arrow-circle-up); } +.#{$fa-css-prefix}-arrow-down:before { content: fa-content($fa-var-arrow-down); } +.#{$fa-css-prefix}-arrow-left:before { content: fa-content($fa-var-arrow-left); } +.#{$fa-css-prefix}-arrow-right:before { content: fa-content($fa-var-arrow-right); } +.#{$fa-css-prefix}-arrow-up:before { content: fa-content($fa-var-arrow-up); } +.#{$fa-css-prefix}-arrows-alt:before { content: fa-content($fa-var-arrows-alt); } +.#{$fa-css-prefix}-arrows-alt-h:before { content: fa-content($fa-var-arrows-alt-h); } +.#{$fa-css-prefix}-arrows-alt-v:before { content: fa-content($fa-var-arrows-alt-v); } +.#{$fa-css-prefix}-assistive-listening-systems:before { content: fa-content($fa-var-assistive-listening-systems); } +.#{$fa-css-prefix}-asterisk:before { content: fa-content($fa-var-asterisk); } +.#{$fa-css-prefix}-asymmetrik:before { content: fa-content($fa-var-asymmetrik); } +.#{$fa-css-prefix}-at:before { content: fa-content($fa-var-at); } +.#{$fa-css-prefix}-atlas:before { content: fa-content($fa-var-atlas); } +.#{$fa-css-prefix}-audible:before { content: fa-content($fa-var-audible); } +.#{$fa-css-prefix}-audio-description:before { content: fa-content($fa-var-audio-description); } +.#{$fa-css-prefix}-autoprefixer:before { content: fa-content($fa-var-autoprefixer); } +.#{$fa-css-prefix}-avianex:before { content: fa-content($fa-var-avianex); } +.#{$fa-css-prefix}-aviato:before { content: fa-content($fa-var-aviato); } +.#{$fa-css-prefix}-award:before { content: fa-content($fa-var-award); } +.#{$fa-css-prefix}-aws:before { content: fa-content($fa-var-aws); } +.#{$fa-css-prefix}-backspace:before { content: fa-content($fa-var-backspace); } +.#{$fa-css-prefix}-backward:before { content: fa-content($fa-var-backward); } +.#{$fa-css-prefix}-balance-scale:before { content: fa-content($fa-var-balance-scale); } +.#{$fa-css-prefix}-ban:before { content: fa-content($fa-var-ban); } +.#{$fa-css-prefix}-band-aid:before { content: fa-content($fa-var-band-aid); } +.#{$fa-css-prefix}-bandcamp:before { content: fa-content($fa-var-bandcamp); } +.#{$fa-css-prefix}-barcode:before { content: fa-content($fa-var-barcode); } +.#{$fa-css-prefix}-bars:before { content: fa-content($fa-var-bars); } +.#{$fa-css-prefix}-baseball-ball:before { content: fa-content($fa-var-baseball-ball); } +.#{$fa-css-prefix}-basketball-ball:before { content: fa-content($fa-var-basketball-ball); } +.#{$fa-css-prefix}-bath:before { content: fa-content($fa-var-bath); } +.#{$fa-css-prefix}-battery-empty:before { content: fa-content($fa-var-battery-empty); } +.#{$fa-css-prefix}-battery-full:before { content: fa-content($fa-var-battery-full); } +.#{$fa-css-prefix}-battery-half:before { content: fa-content($fa-var-battery-half); } +.#{$fa-css-prefix}-battery-quarter:before { content: fa-content($fa-var-battery-quarter); } +.#{$fa-css-prefix}-battery-three-quarters:before { content: fa-content($fa-var-battery-three-quarters); } +.#{$fa-css-prefix}-bed:before { content: fa-content($fa-var-bed); } +.#{$fa-css-prefix}-beer:before { content: fa-content($fa-var-beer); } +.#{$fa-css-prefix}-behance:before { content: fa-content($fa-var-behance); } +.#{$fa-css-prefix}-behance-square:before { content: fa-content($fa-var-behance-square); } +.#{$fa-css-prefix}-bell:before { content: fa-content($fa-var-bell); } +.#{$fa-css-prefix}-bell-slash:before { content: fa-content($fa-var-bell-slash); } +.#{$fa-css-prefix}-bezier-curve:before { content: fa-content($fa-var-bezier-curve); } +.#{$fa-css-prefix}-bicycle:before { content: fa-content($fa-var-bicycle); } +.#{$fa-css-prefix}-bimobject:before { content: fa-content($fa-var-bimobject); } +.#{$fa-css-prefix}-binoculars:before { content: fa-content($fa-var-binoculars); } +.#{$fa-css-prefix}-birthday-cake:before { content: fa-content($fa-var-birthday-cake); } +.#{$fa-css-prefix}-bitbucket:before { content: fa-content($fa-var-bitbucket); } +.#{$fa-css-prefix}-bitcoin:before { content: fa-content($fa-var-bitcoin); } +.#{$fa-css-prefix}-bity:before { content: fa-content($fa-var-bity); } +.#{$fa-css-prefix}-black-tie:before { content: fa-content($fa-var-black-tie); } +.#{$fa-css-prefix}-blackberry:before { content: fa-content($fa-var-blackberry); } +.#{$fa-css-prefix}-blender:before { content: fa-content($fa-var-blender); } +.#{$fa-css-prefix}-blind:before { content: fa-content($fa-var-blind); } +.#{$fa-css-prefix}-blogger:before { content: fa-content($fa-var-blogger); } +.#{$fa-css-prefix}-blogger-b:before { content: fa-content($fa-var-blogger-b); } +.#{$fa-css-prefix}-bluetooth:before { content: fa-content($fa-var-bluetooth); } +.#{$fa-css-prefix}-bluetooth-b:before { content: fa-content($fa-var-bluetooth-b); } +.#{$fa-css-prefix}-bold:before { content: fa-content($fa-var-bold); } +.#{$fa-css-prefix}-bolt:before { content: fa-content($fa-var-bolt); } +.#{$fa-css-prefix}-bomb:before { content: fa-content($fa-var-bomb); } +.#{$fa-css-prefix}-bong:before { content: fa-content($fa-var-bong); } +.#{$fa-css-prefix}-book:before { content: fa-content($fa-var-book); } +.#{$fa-css-prefix}-book-open:before { content: fa-content($fa-var-book-open); } +.#{$fa-css-prefix}-bookmark:before { content: fa-content($fa-var-bookmark); } +.#{$fa-css-prefix}-bowling-ball:before { content: fa-content($fa-var-bowling-ball); } +.#{$fa-css-prefix}-box:before { content: fa-content($fa-var-box); } +.#{$fa-css-prefix}-box-open:before { content: fa-content($fa-var-box-open); } +.#{$fa-css-prefix}-boxes:before { content: fa-content($fa-var-boxes); } +.#{$fa-css-prefix}-braille:before { content: fa-content($fa-var-braille); } +.#{$fa-css-prefix}-briefcase:before { content: fa-content($fa-var-briefcase); } +.#{$fa-css-prefix}-briefcase-medical:before { content: fa-content($fa-var-briefcase-medical); } +.#{$fa-css-prefix}-broadcast-tower:before { content: fa-content($fa-var-broadcast-tower); } +.#{$fa-css-prefix}-broom:before { content: fa-content($fa-var-broom); } +.#{$fa-css-prefix}-brush:before { content: fa-content($fa-var-brush); } +.#{$fa-css-prefix}-btc:before { content: fa-content($fa-var-btc); } +.#{$fa-css-prefix}-bug:before { content: fa-content($fa-var-bug); } +.#{$fa-css-prefix}-building:before { content: fa-content($fa-var-building); } +.#{$fa-css-prefix}-bullhorn:before { content: fa-content($fa-var-bullhorn); } +.#{$fa-css-prefix}-bullseye:before { content: fa-content($fa-var-bullseye); } +.#{$fa-css-prefix}-burn:before { content: fa-content($fa-var-burn); } +.#{$fa-css-prefix}-buromobelexperte:before { content: fa-content($fa-var-buromobelexperte); } +.#{$fa-css-prefix}-bus:before { content: fa-content($fa-var-bus); } +.#{$fa-css-prefix}-bus-alt:before { content: fa-content($fa-var-bus-alt); } +.#{$fa-css-prefix}-buysellads:before { content: fa-content($fa-var-buysellads); } +.#{$fa-css-prefix}-calculator:before { content: fa-content($fa-var-calculator); } +.#{$fa-css-prefix}-calendar:before { content: fa-content($fa-var-calendar); } +.#{$fa-css-prefix}-calendar-alt:before { content: fa-content($fa-var-calendar-alt); } +.#{$fa-css-prefix}-calendar-check:before { content: fa-content($fa-var-calendar-check); } +.#{$fa-css-prefix}-calendar-minus:before { content: fa-content($fa-var-calendar-minus); } +.#{$fa-css-prefix}-calendar-plus:before { content: fa-content($fa-var-calendar-plus); } +.#{$fa-css-prefix}-calendar-times:before { content: fa-content($fa-var-calendar-times); } +.#{$fa-css-prefix}-camera:before { content: fa-content($fa-var-camera); } +.#{$fa-css-prefix}-camera-retro:before { content: fa-content($fa-var-camera-retro); } +.#{$fa-css-prefix}-cannabis:before { content: fa-content($fa-var-cannabis); } +.#{$fa-css-prefix}-capsules:before { content: fa-content($fa-var-capsules); } +.#{$fa-css-prefix}-car:before { content: fa-content($fa-var-car); } +.#{$fa-css-prefix}-caret-down:before { content: fa-content($fa-var-caret-down); } +.#{$fa-css-prefix}-caret-left:before { content: fa-content($fa-var-caret-left); } +.#{$fa-css-prefix}-caret-right:before { content: fa-content($fa-var-caret-right); } +.#{$fa-css-prefix}-caret-square-down:before { content: fa-content($fa-var-caret-square-down); } +.#{$fa-css-prefix}-caret-square-left:before { content: fa-content($fa-var-caret-square-left); } +.#{$fa-css-prefix}-caret-square-right:before { content: fa-content($fa-var-caret-square-right); } +.#{$fa-css-prefix}-caret-square-up:before { content: fa-content($fa-var-caret-square-up); } +.#{$fa-css-prefix}-caret-up:before { content: fa-content($fa-var-caret-up); } +.#{$fa-css-prefix}-cart-arrow-down:before { content: fa-content($fa-var-cart-arrow-down); } +.#{$fa-css-prefix}-cart-plus:before { content: fa-content($fa-var-cart-plus); } +.#{$fa-css-prefix}-cc-amazon-pay:before { content: fa-content($fa-var-cc-amazon-pay); } +.#{$fa-css-prefix}-cc-amex:before { content: fa-content($fa-var-cc-amex); } +.#{$fa-css-prefix}-cc-apple-pay:before { content: fa-content($fa-var-cc-apple-pay); } +.#{$fa-css-prefix}-cc-diners-club:before { content: fa-content($fa-var-cc-diners-club); } +.#{$fa-css-prefix}-cc-discover:before { content: fa-content($fa-var-cc-discover); } +.#{$fa-css-prefix}-cc-jcb:before { content: fa-content($fa-var-cc-jcb); } +.#{$fa-css-prefix}-cc-mastercard:before { content: fa-content($fa-var-cc-mastercard); } +.#{$fa-css-prefix}-cc-paypal:before { content: fa-content($fa-var-cc-paypal); } +.#{$fa-css-prefix}-cc-stripe:before { content: fa-content($fa-var-cc-stripe); } +.#{$fa-css-prefix}-cc-visa:before { content: fa-content($fa-var-cc-visa); } +.#{$fa-css-prefix}-centercode:before { content: fa-content($fa-var-centercode); } +.#{$fa-css-prefix}-certificate:before { content: fa-content($fa-var-certificate); } +.#{$fa-css-prefix}-chalkboard:before { content: fa-content($fa-var-chalkboard); } +.#{$fa-css-prefix}-chalkboard-teacher:before { content: fa-content($fa-var-chalkboard-teacher); } +.#{$fa-css-prefix}-chart-area:before { content: fa-content($fa-var-chart-area); } +.#{$fa-css-prefix}-chart-bar:before { content: fa-content($fa-var-chart-bar); } +.#{$fa-css-prefix}-chart-line:before { content: fa-content($fa-var-chart-line); } +.#{$fa-css-prefix}-chart-pie:before { content: fa-content($fa-var-chart-pie); } +.#{$fa-css-prefix}-check:before { content: fa-content($fa-var-check); } +.#{$fa-css-prefix}-check-circle:before { content: fa-content($fa-var-check-circle); } +.#{$fa-css-prefix}-check-double:before { content: fa-content($fa-var-check-double); } +.#{$fa-css-prefix}-check-square:before { content: fa-content($fa-var-check-square); } +.#{$fa-css-prefix}-chess:before { content: fa-content($fa-var-chess); } +.#{$fa-css-prefix}-chess-bishop:before { content: fa-content($fa-var-chess-bishop); } +.#{$fa-css-prefix}-chess-board:before { content: fa-content($fa-var-chess-board); } +.#{$fa-css-prefix}-chess-king:before { content: fa-content($fa-var-chess-king); } +.#{$fa-css-prefix}-chess-knight:before { content: fa-content($fa-var-chess-knight); } +.#{$fa-css-prefix}-chess-pawn:before { content: fa-content($fa-var-chess-pawn); } +.#{$fa-css-prefix}-chess-queen:before { content: fa-content($fa-var-chess-queen); } +.#{$fa-css-prefix}-chess-rook:before { content: fa-content($fa-var-chess-rook); } +.#{$fa-css-prefix}-chevron-circle-down:before { content: fa-content($fa-var-chevron-circle-down); } +.#{$fa-css-prefix}-chevron-circle-left:before { content: fa-content($fa-var-chevron-circle-left); } +.#{$fa-css-prefix}-chevron-circle-right:before { content: fa-content($fa-var-chevron-circle-right); } +.#{$fa-css-prefix}-chevron-circle-up:before { content: fa-content($fa-var-chevron-circle-up); } +.#{$fa-css-prefix}-chevron-down:before { content: fa-content($fa-var-chevron-down); } +.#{$fa-css-prefix}-chevron-left:before { content: fa-content($fa-var-chevron-left); } +.#{$fa-css-prefix}-chevron-right:before { content: fa-content($fa-var-chevron-right); } +.#{$fa-css-prefix}-chevron-up:before { content: fa-content($fa-var-chevron-up); } +.#{$fa-css-prefix}-child:before { content: fa-content($fa-var-child); } +.#{$fa-css-prefix}-chrome:before { content: fa-content($fa-var-chrome); } +.#{$fa-css-prefix}-church:before { content: fa-content($fa-var-church); } +.#{$fa-css-prefix}-circle:before { content: fa-content($fa-var-circle); } +.#{$fa-css-prefix}-circle-notch:before { content: fa-content($fa-var-circle-notch); } +.#{$fa-css-prefix}-clipboard:before { content: fa-content($fa-var-clipboard); } +.#{$fa-css-prefix}-clipboard-check:before { content: fa-content($fa-var-clipboard-check); } +.#{$fa-css-prefix}-clipboard-list:before { content: fa-content($fa-var-clipboard-list); } +.#{$fa-css-prefix}-clock:before { content: fa-content($fa-var-clock); } +.#{$fa-css-prefix}-clone:before { content: fa-content($fa-var-clone); } +.#{$fa-css-prefix}-closed-captioning:before { content: fa-content($fa-var-closed-captioning); } +.#{$fa-css-prefix}-cloud:before { content: fa-content($fa-var-cloud); } +.#{$fa-css-prefix}-cloud-download-alt:before { content: fa-content($fa-var-cloud-download-alt); } +.#{$fa-css-prefix}-cloud-upload-alt:before { content: fa-content($fa-var-cloud-upload-alt); } +.#{$fa-css-prefix}-cloudscale:before { content: fa-content($fa-var-cloudscale); } +.#{$fa-css-prefix}-cloudsmith:before { content: fa-content($fa-var-cloudsmith); } +.#{$fa-css-prefix}-cloudversify:before { content: fa-content($fa-var-cloudversify); } +.#{$fa-css-prefix}-cocktail:before { content: fa-content($fa-var-cocktail); } +.#{$fa-css-prefix}-code:before { content: fa-content($fa-var-code); } +.#{$fa-css-prefix}-code-branch:before { content: fa-content($fa-var-code-branch); } +.#{$fa-css-prefix}-codepen:before { content: fa-content($fa-var-codepen); } +.#{$fa-css-prefix}-codiepie:before { content: fa-content($fa-var-codiepie); } +.#{$fa-css-prefix}-coffee:before { content: fa-content($fa-var-coffee); } +.#{$fa-css-prefix}-cog:before { content: fa-content($fa-var-cog); } +.#{$fa-css-prefix}-cogs:before { content: fa-content($fa-var-cogs); } +.#{$fa-css-prefix}-coins:before { content: fa-content($fa-var-coins); } +.#{$fa-css-prefix}-columns:before { content: fa-content($fa-var-columns); } +.#{$fa-css-prefix}-comment:before { content: fa-content($fa-var-comment); } +.#{$fa-css-prefix}-comment-alt:before { content: fa-content($fa-var-comment-alt); } +.#{$fa-css-prefix}-comment-dots:before { content: fa-content($fa-var-comment-dots); } +.#{$fa-css-prefix}-comment-slash:before { content: fa-content($fa-var-comment-slash); } +.#{$fa-css-prefix}-comments:before { content: fa-content($fa-var-comments); } +.#{$fa-css-prefix}-compact-disc:before { content: fa-content($fa-var-compact-disc); } +.#{$fa-css-prefix}-compass:before { content: fa-content($fa-var-compass); } +.#{$fa-css-prefix}-compress:before { content: fa-content($fa-var-compress); } +.#{$fa-css-prefix}-concierge-bell:before { content: fa-content($fa-var-concierge-bell); } +.#{$fa-css-prefix}-connectdevelop:before { content: fa-content($fa-var-connectdevelop); } +.#{$fa-css-prefix}-contao:before { content: fa-content($fa-var-contao); } +.#{$fa-css-prefix}-cookie:before { content: fa-content($fa-var-cookie); } +.#{$fa-css-prefix}-cookie-bite:before { content: fa-content($fa-var-cookie-bite); } +.#{$fa-css-prefix}-copy:before { content: fa-content($fa-var-copy); } +.#{$fa-css-prefix}-copyright:before { content: fa-content($fa-var-copyright); } +.#{$fa-css-prefix}-couch:before { content: fa-content($fa-var-couch); } +.#{$fa-css-prefix}-cpanel:before { content: fa-content($fa-var-cpanel); } +.#{$fa-css-prefix}-creative-commons:before { content: fa-content($fa-var-creative-commons); } +.#{$fa-css-prefix}-creative-commons-by:before { content: fa-content($fa-var-creative-commons-by); } +.#{$fa-css-prefix}-creative-commons-nc:before { content: fa-content($fa-var-creative-commons-nc); } +.#{$fa-css-prefix}-creative-commons-nc-eu:before { content: fa-content($fa-var-creative-commons-nc-eu); } +.#{$fa-css-prefix}-creative-commons-nc-jp:before { content: fa-content($fa-var-creative-commons-nc-jp); } +.#{$fa-css-prefix}-creative-commons-nd:before { content: fa-content($fa-var-creative-commons-nd); } +.#{$fa-css-prefix}-creative-commons-pd:before { content: fa-content($fa-var-creative-commons-pd); } +.#{$fa-css-prefix}-creative-commons-pd-alt:before { content: fa-content($fa-var-creative-commons-pd-alt); } +.#{$fa-css-prefix}-creative-commons-remix:before { content: fa-content($fa-var-creative-commons-remix); } +.#{$fa-css-prefix}-creative-commons-sa:before { content: fa-content($fa-var-creative-commons-sa); } +.#{$fa-css-prefix}-creative-commons-sampling:before { content: fa-content($fa-var-creative-commons-sampling); } +.#{$fa-css-prefix}-creative-commons-sampling-plus:before { content: fa-content($fa-var-creative-commons-sampling-plus); } +.#{$fa-css-prefix}-creative-commons-share:before { content: fa-content($fa-var-creative-commons-share); } +.#{$fa-css-prefix}-credit-card:before { content: fa-content($fa-var-credit-card); } +.#{$fa-css-prefix}-crop:before { content: fa-content($fa-var-crop); } +.#{$fa-css-prefix}-crop-alt:before { content: fa-content($fa-var-crop-alt); } +.#{$fa-css-prefix}-crosshairs:before { content: fa-content($fa-var-crosshairs); } +.#{$fa-css-prefix}-crow:before { content: fa-content($fa-var-crow); } +.#{$fa-css-prefix}-crown:before { content: fa-content($fa-var-crown); } +.#{$fa-css-prefix}-css3:before { content: fa-content($fa-var-css3); } +.#{$fa-css-prefix}-css3-alt:before { content: fa-content($fa-var-css3-alt); } +.#{$fa-css-prefix}-cube:before { content: fa-content($fa-var-cube); } +.#{$fa-css-prefix}-cubes:before { content: fa-content($fa-var-cubes); } +.#{$fa-css-prefix}-cut:before { content: fa-content($fa-var-cut); } +.#{$fa-css-prefix}-cuttlefish:before { content: fa-content($fa-var-cuttlefish); } +.#{$fa-css-prefix}-d-and-d:before { content: fa-content($fa-var-d-and-d); } +.#{$fa-css-prefix}-dashcube:before { content: fa-content($fa-var-dashcube); } +.#{$fa-css-prefix}-database:before { content: fa-content($fa-var-database); } +.#{$fa-css-prefix}-deaf:before { content: fa-content($fa-var-deaf); } +.#{$fa-css-prefix}-delicious:before { content: fa-content($fa-var-delicious); } +.#{$fa-css-prefix}-deploydog:before { content: fa-content($fa-var-deploydog); } +.#{$fa-css-prefix}-deskpro:before { content: fa-content($fa-var-deskpro); } +.#{$fa-css-prefix}-desktop:before { content: fa-content($fa-var-desktop); } +.#{$fa-css-prefix}-deviantart:before { content: fa-content($fa-var-deviantart); } +.#{$fa-css-prefix}-diagnoses:before { content: fa-content($fa-var-diagnoses); } +.#{$fa-css-prefix}-dice:before { content: fa-content($fa-var-dice); } +.#{$fa-css-prefix}-dice-five:before { content: fa-content($fa-var-dice-five); } +.#{$fa-css-prefix}-dice-four:before { content: fa-content($fa-var-dice-four); } +.#{$fa-css-prefix}-dice-one:before { content: fa-content($fa-var-dice-one); } +.#{$fa-css-prefix}-dice-six:before { content: fa-content($fa-var-dice-six); } +.#{$fa-css-prefix}-dice-three:before { content: fa-content($fa-var-dice-three); } +.#{$fa-css-prefix}-dice-two:before { content: fa-content($fa-var-dice-two); } +.#{$fa-css-prefix}-digg:before { content: fa-content($fa-var-digg); } +.#{$fa-css-prefix}-digital-ocean:before { content: fa-content($fa-var-digital-ocean); } +.#{$fa-css-prefix}-digital-tachograph:before { content: fa-content($fa-var-digital-tachograph); } +.#{$fa-css-prefix}-discord:before { content: fa-content($fa-var-discord); } +.#{$fa-css-prefix}-discourse:before { content: fa-content($fa-var-discourse); } +.#{$fa-css-prefix}-divide:before { content: fa-content($fa-var-divide); } +.#{$fa-css-prefix}-dizzy:before { content: fa-content($fa-var-dizzy); } +.#{$fa-css-prefix}-dna:before { content: fa-content($fa-var-dna); } +.#{$fa-css-prefix}-dochub:before { content: fa-content($fa-var-dochub); } +.#{$fa-css-prefix}-docker:before { content: fa-content($fa-var-docker); } +.#{$fa-css-prefix}-dollar-sign:before { content: fa-content($fa-var-dollar-sign); } +.#{$fa-css-prefix}-dolly:before { content: fa-content($fa-var-dolly); } +.#{$fa-css-prefix}-dolly-flatbed:before { content: fa-content($fa-var-dolly-flatbed); } +.#{$fa-css-prefix}-donate:before { content: fa-content($fa-var-donate); } +.#{$fa-css-prefix}-door-closed:before { content: fa-content($fa-var-door-closed); } +.#{$fa-css-prefix}-door-open:before { content: fa-content($fa-var-door-open); } +.#{$fa-css-prefix}-dot-circle:before { content: fa-content($fa-var-dot-circle); } +.#{$fa-css-prefix}-dove:before { content: fa-content($fa-var-dove); } +.#{$fa-css-prefix}-download:before { content: fa-content($fa-var-download); } +.#{$fa-css-prefix}-draft2digital:before { content: fa-content($fa-var-draft2digital); } +.#{$fa-css-prefix}-drafting-compass:before { content: fa-content($fa-var-drafting-compass); } +.#{$fa-css-prefix}-dribbble:before { content: fa-content($fa-var-dribbble); } +.#{$fa-css-prefix}-dribbble-square:before { content: fa-content($fa-var-dribbble-square); } +.#{$fa-css-prefix}-dropbox:before { content: fa-content($fa-var-dropbox); } +.#{$fa-css-prefix}-drum:before { content: fa-content($fa-var-drum); } +.#{$fa-css-prefix}-drum-steelpan:before { content: fa-content($fa-var-drum-steelpan); } +.#{$fa-css-prefix}-drupal:before { content: fa-content($fa-var-drupal); } +.#{$fa-css-prefix}-dumbbell:before { content: fa-content($fa-var-dumbbell); } +.#{$fa-css-prefix}-dyalog:before { content: fa-content($fa-var-dyalog); } +.#{$fa-css-prefix}-earlybirds:before { content: fa-content($fa-var-earlybirds); } +.#{$fa-css-prefix}-ebay:before { content: fa-content($fa-var-ebay); } +.#{$fa-css-prefix}-edge:before { content: fa-content($fa-var-edge); } +.#{$fa-css-prefix}-edit:before { content: fa-content($fa-var-edit); } +.#{$fa-css-prefix}-eject:before { content: fa-content($fa-var-eject); } +.#{$fa-css-prefix}-elementor:before { content: fa-content($fa-var-elementor); } +.#{$fa-css-prefix}-ellipsis-h:before { content: fa-content($fa-var-ellipsis-h); } +.#{$fa-css-prefix}-ellipsis-v:before { content: fa-content($fa-var-ellipsis-v); } +.#{$fa-css-prefix}-ember:before { content: fa-content($fa-var-ember); } +.#{$fa-css-prefix}-empire:before { content: fa-content($fa-var-empire); } +.#{$fa-css-prefix}-envelope:before { content: fa-content($fa-var-envelope); } +.#{$fa-css-prefix}-envelope-open:before { content: fa-content($fa-var-envelope-open); } +.#{$fa-css-prefix}-envelope-square:before { content: fa-content($fa-var-envelope-square); } +.#{$fa-css-prefix}-envira:before { content: fa-content($fa-var-envira); } +.#{$fa-css-prefix}-equals:before { content: fa-content($fa-var-equals); } +.#{$fa-css-prefix}-eraser:before { content: fa-content($fa-var-eraser); } +.#{$fa-css-prefix}-erlang:before { content: fa-content($fa-var-erlang); } +.#{$fa-css-prefix}-ethereum:before { content: fa-content($fa-var-ethereum); } +.#{$fa-css-prefix}-etsy:before { content: fa-content($fa-var-etsy); } +.#{$fa-css-prefix}-euro-sign:before { content: fa-content($fa-var-euro-sign); } +.#{$fa-css-prefix}-exchange-alt:before { content: fa-content($fa-var-exchange-alt); } +.#{$fa-css-prefix}-exclamation:before { content: fa-content($fa-var-exclamation); } +.#{$fa-css-prefix}-exclamation-circle:before { content: fa-content($fa-var-exclamation-circle); } +.#{$fa-css-prefix}-exclamation-triangle:before { content: fa-content($fa-var-exclamation-triangle); } +.#{$fa-css-prefix}-expand:before { content: fa-content($fa-var-expand); } +.#{$fa-css-prefix}-expand-arrows-alt:before { content: fa-content($fa-var-expand-arrows-alt); } +.#{$fa-css-prefix}-expeditedssl:before { content: fa-content($fa-var-expeditedssl); } +.#{$fa-css-prefix}-external-link-alt:before { content: fa-content($fa-var-external-link-alt); } +.#{$fa-css-prefix}-external-link-square-alt:before { content: fa-content($fa-var-external-link-square-alt); } +.#{$fa-css-prefix}-eye:before { content: fa-content($fa-var-eye); } +.#{$fa-css-prefix}-eye-dropper:before { content: fa-content($fa-var-eye-dropper); } +.#{$fa-css-prefix}-eye-slash:before { content: fa-content($fa-var-eye-slash); } +.#{$fa-css-prefix}-facebook:before { content: fa-content($fa-var-facebook); } +.#{$fa-css-prefix}-facebook-f:before { content: fa-content($fa-var-facebook-f); } +.#{$fa-css-prefix}-facebook-messenger:before { content: fa-content($fa-var-facebook-messenger); } +.#{$fa-css-prefix}-facebook-square:before { content: fa-content($fa-var-facebook-square); } +.#{$fa-css-prefix}-fast-backward:before { content: fa-content($fa-var-fast-backward); } +.#{$fa-css-prefix}-fast-forward:before { content: fa-content($fa-var-fast-forward); } +.#{$fa-css-prefix}-fax:before { content: fa-content($fa-var-fax); } +.#{$fa-css-prefix}-feather:before { content: fa-content($fa-var-feather); } +.#{$fa-css-prefix}-feather-alt:before { content: fa-content($fa-var-feather-alt); } +.#{$fa-css-prefix}-female:before { content: fa-content($fa-var-female); } +.#{$fa-css-prefix}-fighter-jet:before { content: fa-content($fa-var-fighter-jet); } +.#{$fa-css-prefix}-file:before { content: fa-content($fa-var-file); } +.#{$fa-css-prefix}-file-alt:before { content: fa-content($fa-var-file-alt); } +.#{$fa-css-prefix}-file-archive:before { content: fa-content($fa-var-file-archive); } +.#{$fa-css-prefix}-file-audio:before { content: fa-content($fa-var-file-audio); } +.#{$fa-css-prefix}-file-code:before { content: fa-content($fa-var-file-code); } +.#{$fa-css-prefix}-file-contract:before { content: fa-content($fa-var-file-contract); } +.#{$fa-css-prefix}-file-download:before { content: fa-content($fa-var-file-download); } +.#{$fa-css-prefix}-file-excel:before { content: fa-content($fa-var-file-excel); } +.#{$fa-css-prefix}-file-export:before { content: fa-content($fa-var-file-export); } +.#{$fa-css-prefix}-file-image:before { content: fa-content($fa-var-file-image); } +.#{$fa-css-prefix}-file-import:before { content: fa-content($fa-var-file-import); } +.#{$fa-css-prefix}-file-invoice:before { content: fa-content($fa-var-file-invoice); } +.#{$fa-css-prefix}-file-invoice-dollar:before { content: fa-content($fa-var-file-invoice-dollar); } +.#{$fa-css-prefix}-file-medical:before { content: fa-content($fa-var-file-medical); } +.#{$fa-css-prefix}-file-medical-alt:before { content: fa-content($fa-var-file-medical-alt); } +.#{$fa-css-prefix}-file-pdf:before { content: fa-content($fa-var-file-pdf); } +.#{$fa-css-prefix}-file-powerpoint:before { content: fa-content($fa-var-file-powerpoint); } +.#{$fa-css-prefix}-file-prescription:before { content: fa-content($fa-var-file-prescription); } +.#{$fa-css-prefix}-file-signature:before { content: fa-content($fa-var-file-signature); } +.#{$fa-css-prefix}-file-upload:before { content: fa-content($fa-var-file-upload); } +.#{$fa-css-prefix}-file-video:before { content: fa-content($fa-var-file-video); } +.#{$fa-css-prefix}-file-word:before { content: fa-content($fa-var-file-word); } +.#{$fa-css-prefix}-fill:before { content: fa-content($fa-var-fill); } +.#{$fa-css-prefix}-fill-drip:before { content: fa-content($fa-var-fill-drip); } +.#{$fa-css-prefix}-film:before { content: fa-content($fa-var-film); } +.#{$fa-css-prefix}-filter:before { content: fa-content($fa-var-filter); } +.#{$fa-css-prefix}-fingerprint:before { content: fa-content($fa-var-fingerprint); } +.#{$fa-css-prefix}-fire:before { content: fa-content($fa-var-fire); } +.#{$fa-css-prefix}-fire-extinguisher:before { content: fa-content($fa-var-fire-extinguisher); } +.#{$fa-css-prefix}-firefox:before { content: fa-content($fa-var-firefox); } +.#{$fa-css-prefix}-first-aid:before { content: fa-content($fa-var-first-aid); } +.#{$fa-css-prefix}-first-order:before { content: fa-content($fa-var-first-order); } +.#{$fa-css-prefix}-first-order-alt:before { content: fa-content($fa-var-first-order-alt); } +.#{$fa-css-prefix}-firstdraft:before { content: fa-content($fa-var-firstdraft); } +.#{$fa-css-prefix}-fish:before { content: fa-content($fa-var-fish); } +.#{$fa-css-prefix}-flag:before { content: fa-content($fa-var-flag); } +.#{$fa-css-prefix}-flag-checkered:before { content: fa-content($fa-var-flag-checkered); } +.#{$fa-css-prefix}-flask:before { content: fa-content($fa-var-flask); } +.#{$fa-css-prefix}-flickr:before { content: fa-content($fa-var-flickr); } +.#{$fa-css-prefix}-flipboard:before { content: fa-content($fa-var-flipboard); } +.#{$fa-css-prefix}-flushed:before { content: fa-content($fa-var-flushed); } +.#{$fa-css-prefix}-fly:before { content: fa-content($fa-var-fly); } +.#{$fa-css-prefix}-folder:before { content: fa-content($fa-var-folder); } +.#{$fa-css-prefix}-folder-open:before { content: fa-content($fa-var-folder-open); } +.#{$fa-css-prefix}-font:before { content: fa-content($fa-var-font); } +.#{$fa-css-prefix}-font-awesome:before { content: fa-content($fa-var-font-awesome); } +.#{$fa-css-prefix}-font-awesome-alt:before { content: fa-content($fa-var-font-awesome-alt); } +.#{$fa-css-prefix}-font-awesome-flag:before { content: fa-content($fa-var-font-awesome-flag); } +.#{$fa-css-prefix}-font-awesome-logo-full:before { content: fa-content($fa-var-font-awesome-logo-full); } +.#{$fa-css-prefix}-fonticons:before { content: fa-content($fa-var-fonticons); } +.#{$fa-css-prefix}-fonticons-fi:before { content: fa-content($fa-var-fonticons-fi); } +.#{$fa-css-prefix}-football-ball:before { content: fa-content($fa-var-football-ball); } +.#{$fa-css-prefix}-fort-awesome:before { content: fa-content($fa-var-fort-awesome); } +.#{$fa-css-prefix}-fort-awesome-alt:before { content: fa-content($fa-var-fort-awesome-alt); } +.#{$fa-css-prefix}-forumbee:before { content: fa-content($fa-var-forumbee); } +.#{$fa-css-prefix}-forward:before { content: fa-content($fa-var-forward); } +.#{$fa-css-prefix}-foursquare:before { content: fa-content($fa-var-foursquare); } +.#{$fa-css-prefix}-free-code-camp:before { content: fa-content($fa-var-free-code-camp); } +.#{$fa-css-prefix}-freebsd:before { content: fa-content($fa-var-freebsd); } +.#{$fa-css-prefix}-frog:before { content: fa-content($fa-var-frog); } +.#{$fa-css-prefix}-frown:before { content: fa-content($fa-var-frown); } +.#{$fa-css-prefix}-frown-open:before { content: fa-content($fa-var-frown-open); } +.#{$fa-css-prefix}-fulcrum:before { content: fa-content($fa-var-fulcrum); } +.#{$fa-css-prefix}-futbol:before { content: fa-content($fa-var-futbol); } +.#{$fa-css-prefix}-galactic-republic:before { content: fa-content($fa-var-galactic-republic); } +.#{$fa-css-prefix}-galactic-senate:before { content: fa-content($fa-var-galactic-senate); } +.#{$fa-css-prefix}-gamepad:before { content: fa-content($fa-var-gamepad); } +.#{$fa-css-prefix}-gas-pump:before { content: fa-content($fa-var-gas-pump); } +.#{$fa-css-prefix}-gavel:before { content: fa-content($fa-var-gavel); } +.#{$fa-css-prefix}-gem:before { content: fa-content($fa-var-gem); } +.#{$fa-css-prefix}-genderless:before { content: fa-content($fa-var-genderless); } +.#{$fa-css-prefix}-get-pocket:before { content: fa-content($fa-var-get-pocket); } +.#{$fa-css-prefix}-gg:before { content: fa-content($fa-var-gg); } +.#{$fa-css-prefix}-gg-circle:before { content: fa-content($fa-var-gg-circle); } +.#{$fa-css-prefix}-gift:before { content: fa-content($fa-var-gift); } +.#{$fa-css-prefix}-git:before { content: fa-content($fa-var-git); } +.#{$fa-css-prefix}-git-square:before { content: fa-content($fa-var-git-square); } +.#{$fa-css-prefix}-github:before { content: fa-content($fa-var-github); } +.#{$fa-css-prefix}-github-alt:before { content: fa-content($fa-var-github-alt); } +.#{$fa-css-prefix}-github-square:before { content: fa-content($fa-var-github-square); } +.#{$fa-css-prefix}-gitkraken:before { content: fa-content($fa-var-gitkraken); } +.#{$fa-css-prefix}-gitlab:before { content: fa-content($fa-var-gitlab); } +.#{$fa-css-prefix}-gitter:before { content: fa-content($fa-var-gitter); } +.#{$fa-css-prefix}-glass-martini:before { content: fa-content($fa-var-glass-martini); } +.#{$fa-css-prefix}-glass-martini-alt:before { content: fa-content($fa-var-glass-martini-alt); } +.#{$fa-css-prefix}-glasses:before { content: fa-content($fa-var-glasses); } +.#{$fa-css-prefix}-glide:before { content: fa-content($fa-var-glide); } +.#{$fa-css-prefix}-glide-g:before { content: fa-content($fa-var-glide-g); } +.#{$fa-css-prefix}-globe:before { content: fa-content($fa-var-globe); } +.#{$fa-css-prefix}-globe-africa:before { content: fa-content($fa-var-globe-africa); } +.#{$fa-css-prefix}-globe-americas:before { content: fa-content($fa-var-globe-americas); } +.#{$fa-css-prefix}-globe-asia:before { content: fa-content($fa-var-globe-asia); } +.#{$fa-css-prefix}-gofore:before { content: fa-content($fa-var-gofore); } +.#{$fa-css-prefix}-golf-ball:before { content: fa-content($fa-var-golf-ball); } +.#{$fa-css-prefix}-goodreads:before { content: fa-content($fa-var-goodreads); } +.#{$fa-css-prefix}-goodreads-g:before { content: fa-content($fa-var-goodreads-g); } +.#{$fa-css-prefix}-google:before { content: fa-content($fa-var-google); } +.#{$fa-css-prefix}-google-drive:before { content: fa-content($fa-var-google-drive); } +.#{$fa-css-prefix}-google-play:before { content: fa-content($fa-var-google-play); } +.#{$fa-css-prefix}-google-plus:before { content: fa-content($fa-var-google-plus); } +.#{$fa-css-prefix}-google-plus-g:before { content: fa-content($fa-var-google-plus-g); } +.#{$fa-css-prefix}-google-plus-square:before { content: fa-content($fa-var-google-plus-square); } +.#{$fa-css-prefix}-google-wallet:before { content: fa-content($fa-var-google-wallet); } +.#{$fa-css-prefix}-graduation-cap:before { content: fa-content($fa-var-graduation-cap); } +.#{$fa-css-prefix}-gratipay:before { content: fa-content($fa-var-gratipay); } +.#{$fa-css-prefix}-grav:before { content: fa-content($fa-var-grav); } +.#{$fa-css-prefix}-greater-than:before { content: fa-content($fa-var-greater-than); } +.#{$fa-css-prefix}-greater-than-equal:before { content: fa-content($fa-var-greater-than-equal); } +.#{$fa-css-prefix}-grimace:before { content: fa-content($fa-var-grimace); } +.#{$fa-css-prefix}-grin:before { content: fa-content($fa-var-grin); } +.#{$fa-css-prefix}-grin-alt:before { content: fa-content($fa-var-grin-alt); } +.#{$fa-css-prefix}-grin-beam:before { content: fa-content($fa-var-grin-beam); } +.#{$fa-css-prefix}-grin-beam-sweat:before { content: fa-content($fa-var-grin-beam-sweat); } +.#{$fa-css-prefix}-grin-hearts:before { content: fa-content($fa-var-grin-hearts); } +.#{$fa-css-prefix}-grin-squint:before { content: fa-content($fa-var-grin-squint); } +.#{$fa-css-prefix}-grin-squint-tears:before { content: fa-content($fa-var-grin-squint-tears); } +.#{$fa-css-prefix}-grin-stars:before { content: fa-content($fa-var-grin-stars); } +.#{$fa-css-prefix}-grin-tears:before { content: fa-content($fa-var-grin-tears); } +.#{$fa-css-prefix}-grin-tongue:before { content: fa-content($fa-var-grin-tongue); } +.#{$fa-css-prefix}-grin-tongue-squint:before { content: fa-content($fa-var-grin-tongue-squint); } +.#{$fa-css-prefix}-grin-tongue-wink:before { content: fa-content($fa-var-grin-tongue-wink); } +.#{$fa-css-prefix}-grin-wink:before { content: fa-content($fa-var-grin-wink); } +.#{$fa-css-prefix}-grip-horizontal:before { content: fa-content($fa-var-grip-horizontal); } +.#{$fa-css-prefix}-grip-vertical:before { content: fa-content($fa-var-grip-vertical); } +.#{$fa-css-prefix}-gripfire:before { content: fa-content($fa-var-gripfire); } +.#{$fa-css-prefix}-grunt:before { content: fa-content($fa-var-grunt); } +.#{$fa-css-prefix}-gulp:before { content: fa-content($fa-var-gulp); } +.#{$fa-css-prefix}-h-square:before { content: fa-content($fa-var-h-square); } +.#{$fa-css-prefix}-hacker-news:before { content: fa-content($fa-var-hacker-news); } +.#{$fa-css-prefix}-hacker-news-square:before { content: fa-content($fa-var-hacker-news-square); } +.#{$fa-css-prefix}-hand-holding:before { content: fa-content($fa-var-hand-holding); } +.#{$fa-css-prefix}-hand-holding-heart:before { content: fa-content($fa-var-hand-holding-heart); } +.#{$fa-css-prefix}-hand-holding-usd:before { content: fa-content($fa-var-hand-holding-usd); } +.#{$fa-css-prefix}-hand-lizard:before { content: fa-content($fa-var-hand-lizard); } +.#{$fa-css-prefix}-hand-paper:before { content: fa-content($fa-var-hand-paper); } +.#{$fa-css-prefix}-hand-peace:before { content: fa-content($fa-var-hand-peace); } +.#{$fa-css-prefix}-hand-point-down:before { content: fa-content($fa-var-hand-point-down); } +.#{$fa-css-prefix}-hand-point-left:before { content: fa-content($fa-var-hand-point-left); } +.#{$fa-css-prefix}-hand-point-right:before { content: fa-content($fa-var-hand-point-right); } +.#{$fa-css-prefix}-hand-point-up:before { content: fa-content($fa-var-hand-point-up); } +.#{$fa-css-prefix}-hand-pointer:before { content: fa-content($fa-var-hand-pointer); } +.#{$fa-css-prefix}-hand-rock:before { content: fa-content($fa-var-hand-rock); } +.#{$fa-css-prefix}-hand-scissors:before { content: fa-content($fa-var-hand-scissors); } +.#{$fa-css-prefix}-hand-spock:before { content: fa-content($fa-var-hand-spock); } +.#{$fa-css-prefix}-hands:before { content: fa-content($fa-var-hands); } +.#{$fa-css-prefix}-hands-helping:before { content: fa-content($fa-var-hands-helping); } +.#{$fa-css-prefix}-handshake:before { content: fa-content($fa-var-handshake); } +.#{$fa-css-prefix}-hashtag:before { content: fa-content($fa-var-hashtag); } +.#{$fa-css-prefix}-hdd:before { content: fa-content($fa-var-hdd); } +.#{$fa-css-prefix}-heading:before { content: fa-content($fa-var-heading); } +.#{$fa-css-prefix}-headphones:before { content: fa-content($fa-var-headphones); } +.#{$fa-css-prefix}-headphones-alt:before { content: fa-content($fa-var-headphones-alt); } +.#{$fa-css-prefix}-headset:before { content: fa-content($fa-var-headset); } +.#{$fa-css-prefix}-heart:before { content: fa-content($fa-var-heart); } +.#{$fa-css-prefix}-heartbeat:before { content: fa-content($fa-var-heartbeat); } +.#{$fa-css-prefix}-helicopter:before { content: fa-content($fa-var-helicopter); } +.#{$fa-css-prefix}-highlighter:before { content: fa-content($fa-var-highlighter); } +.#{$fa-css-prefix}-hips:before { content: fa-content($fa-var-hips); } +.#{$fa-css-prefix}-hire-a-helper:before { content: fa-content($fa-var-hire-a-helper); } +.#{$fa-css-prefix}-history:before { content: fa-content($fa-var-history); } +.#{$fa-css-prefix}-hockey-puck:before { content: fa-content($fa-var-hockey-puck); } +.#{$fa-css-prefix}-home:before { content: fa-content($fa-var-home); } +.#{$fa-css-prefix}-hooli:before { content: fa-content($fa-var-hooli); } +.#{$fa-css-prefix}-hornbill:before { content: fa-content($fa-var-hornbill); } +.#{$fa-css-prefix}-hospital:before { content: fa-content($fa-var-hospital); } +.#{$fa-css-prefix}-hospital-alt:before { content: fa-content($fa-var-hospital-alt); } +.#{$fa-css-prefix}-hospital-symbol:before { content: fa-content($fa-var-hospital-symbol); } +.#{$fa-css-prefix}-hot-tub:before { content: fa-content($fa-var-hot-tub); } +.#{$fa-css-prefix}-hotel:before { content: fa-content($fa-var-hotel); } +.#{$fa-css-prefix}-hotjar:before { content: fa-content($fa-var-hotjar); } +.#{$fa-css-prefix}-hourglass:before { content: fa-content($fa-var-hourglass); } +.#{$fa-css-prefix}-hourglass-end:before { content: fa-content($fa-var-hourglass-end); } +.#{$fa-css-prefix}-hourglass-half:before { content: fa-content($fa-var-hourglass-half); } +.#{$fa-css-prefix}-hourglass-start:before { content: fa-content($fa-var-hourglass-start); } +.#{$fa-css-prefix}-houzz:before { content: fa-content($fa-var-houzz); } +.#{$fa-css-prefix}-html5:before { content: fa-content($fa-var-html5); } +.#{$fa-css-prefix}-hubspot:before { content: fa-content($fa-var-hubspot); } +.#{$fa-css-prefix}-i-cursor:before { content: fa-content($fa-var-i-cursor); } +.#{$fa-css-prefix}-id-badge:before { content: fa-content($fa-var-id-badge); } +.#{$fa-css-prefix}-id-card:before { content: fa-content($fa-var-id-card); } +.#{$fa-css-prefix}-id-card-alt:before { content: fa-content($fa-var-id-card-alt); } +.#{$fa-css-prefix}-image:before { content: fa-content($fa-var-image); } +.#{$fa-css-prefix}-images:before { content: fa-content($fa-var-images); } +.#{$fa-css-prefix}-imdb:before { content: fa-content($fa-var-imdb); } +.#{$fa-css-prefix}-inbox:before { content: fa-content($fa-var-inbox); } +.#{$fa-css-prefix}-indent:before { content: fa-content($fa-var-indent); } +.#{$fa-css-prefix}-industry:before { content: fa-content($fa-var-industry); } +.#{$fa-css-prefix}-infinity:before { content: fa-content($fa-var-infinity); } +.#{$fa-css-prefix}-info:before { content: fa-content($fa-var-info); } +.#{$fa-css-prefix}-info-circle:before { content: fa-content($fa-var-info-circle); } +.#{$fa-css-prefix}-instagram:before { content: fa-content($fa-var-instagram); } +.#{$fa-css-prefix}-internet-explorer:before { content: fa-content($fa-var-internet-explorer); } +.#{$fa-css-prefix}-ioxhost:before { content: fa-content($fa-var-ioxhost); } +.#{$fa-css-prefix}-italic:before { content: fa-content($fa-var-italic); } +.#{$fa-css-prefix}-itunes:before { content: fa-content($fa-var-itunes); } +.#{$fa-css-prefix}-itunes-note:before { content: fa-content($fa-var-itunes-note); } +.#{$fa-css-prefix}-java:before { content: fa-content($fa-var-java); } +.#{$fa-css-prefix}-jedi-order:before { content: fa-content($fa-var-jedi-order); } +.#{$fa-css-prefix}-jenkins:before { content: fa-content($fa-var-jenkins); } +.#{$fa-css-prefix}-joget:before { content: fa-content($fa-var-joget); } +.#{$fa-css-prefix}-joint:before { content: fa-content($fa-var-joint); } +.#{$fa-css-prefix}-joomla:before { content: fa-content($fa-var-joomla); } +.#{$fa-css-prefix}-js:before { content: fa-content($fa-var-js); } +.#{$fa-css-prefix}-js-square:before { content: fa-content($fa-var-js-square); } +.#{$fa-css-prefix}-jsfiddle:before { content: fa-content($fa-var-jsfiddle); } +.#{$fa-css-prefix}-key:before { content: fa-content($fa-var-key); } +.#{$fa-css-prefix}-keybase:before { content: fa-content($fa-var-keybase); } +.#{$fa-css-prefix}-keyboard:before { content: fa-content($fa-var-keyboard); } +.#{$fa-css-prefix}-keycdn:before { content: fa-content($fa-var-keycdn); } +.#{$fa-css-prefix}-kickstarter:before { content: fa-content($fa-var-kickstarter); } +.#{$fa-css-prefix}-kickstarter-k:before { content: fa-content($fa-var-kickstarter-k); } +.#{$fa-css-prefix}-kiss:before { content: fa-content($fa-var-kiss); } +.#{$fa-css-prefix}-kiss-beam:before { content: fa-content($fa-var-kiss-beam); } +.#{$fa-css-prefix}-kiss-wink-heart:before { content: fa-content($fa-var-kiss-wink-heart); } +.#{$fa-css-prefix}-kiwi-bird:before { content: fa-content($fa-var-kiwi-bird); } +.#{$fa-css-prefix}-korvue:before { content: fa-content($fa-var-korvue); } +.#{$fa-css-prefix}-language:before { content: fa-content($fa-var-language); } +.#{$fa-css-prefix}-laptop:before { content: fa-content($fa-var-laptop); } +.#{$fa-css-prefix}-laravel:before { content: fa-content($fa-var-laravel); } +.#{$fa-css-prefix}-lastfm:before { content: fa-content($fa-var-lastfm); } +.#{$fa-css-prefix}-lastfm-square:before { content: fa-content($fa-var-lastfm-square); } +.#{$fa-css-prefix}-laugh:before { content: fa-content($fa-var-laugh); } +.#{$fa-css-prefix}-laugh-beam:before { content: fa-content($fa-var-laugh-beam); } +.#{$fa-css-prefix}-laugh-squint:before { content: fa-content($fa-var-laugh-squint); } +.#{$fa-css-prefix}-laugh-wink:before { content: fa-content($fa-var-laugh-wink); } +.#{$fa-css-prefix}-leaf:before { content: fa-content($fa-var-leaf); } +.#{$fa-css-prefix}-leanpub:before { content: fa-content($fa-var-leanpub); } +.#{$fa-css-prefix}-lemon:before { content: fa-content($fa-var-lemon); } +.#{$fa-css-prefix}-less:before { content: fa-content($fa-var-less); } +.#{$fa-css-prefix}-less-than:before { content: fa-content($fa-var-less-than); } +.#{$fa-css-prefix}-less-than-equal:before { content: fa-content($fa-var-less-than-equal); } +.#{$fa-css-prefix}-level-down-alt:before { content: fa-content($fa-var-level-down-alt); } +.#{$fa-css-prefix}-level-up-alt:before { content: fa-content($fa-var-level-up-alt); } +.#{$fa-css-prefix}-life-ring:before { content: fa-content($fa-var-life-ring); } +.#{$fa-css-prefix}-lightbulb:before { content: fa-content($fa-var-lightbulb); } +.#{$fa-css-prefix}-line:before { content: fa-content($fa-var-line); } +.#{$fa-css-prefix}-link:before { content: fa-content($fa-var-link); } +.#{$fa-css-prefix}-linkedin:before { content: fa-content($fa-var-linkedin); } +.#{$fa-css-prefix}-linkedin-in:before { content: fa-content($fa-var-linkedin-in); } +.#{$fa-css-prefix}-linode:before { content: fa-content($fa-var-linode); } +.#{$fa-css-prefix}-linux:before { content: fa-content($fa-var-linux); } +.#{$fa-css-prefix}-lira-sign:before { content: fa-content($fa-var-lira-sign); } +.#{$fa-css-prefix}-list:before { content: fa-content($fa-var-list); } +.#{$fa-css-prefix}-list-alt:before { content: fa-content($fa-var-list-alt); } +.#{$fa-css-prefix}-list-ol:before { content: fa-content($fa-var-list-ol); } +.#{$fa-css-prefix}-list-ul:before { content: fa-content($fa-var-list-ul); } +.#{$fa-css-prefix}-location-arrow:before { content: fa-content($fa-var-location-arrow); } +.#{$fa-css-prefix}-lock:before { content: fa-content($fa-var-lock); } +.#{$fa-css-prefix}-lock-open:before { content: fa-content($fa-var-lock-open); } +.#{$fa-css-prefix}-long-arrow-alt-down:before { content: fa-content($fa-var-long-arrow-alt-down); } +.#{$fa-css-prefix}-long-arrow-alt-left:before { content: fa-content($fa-var-long-arrow-alt-left); } +.#{$fa-css-prefix}-long-arrow-alt-right:before { content: fa-content($fa-var-long-arrow-alt-right); } +.#{$fa-css-prefix}-long-arrow-alt-up:before { content: fa-content($fa-var-long-arrow-alt-up); } +.#{$fa-css-prefix}-low-vision:before { content: fa-content($fa-var-low-vision); } +.#{$fa-css-prefix}-luggage-cart:before { content: fa-content($fa-var-luggage-cart); } +.#{$fa-css-prefix}-lyft:before { content: fa-content($fa-var-lyft); } +.#{$fa-css-prefix}-magento:before { content: fa-content($fa-var-magento); } +.#{$fa-css-prefix}-magic:before { content: fa-content($fa-var-magic); } +.#{$fa-css-prefix}-magnet:before { content: fa-content($fa-var-magnet); } +.#{$fa-css-prefix}-mailchimp:before { content: fa-content($fa-var-mailchimp); } +.#{$fa-css-prefix}-male:before { content: fa-content($fa-var-male); } +.#{$fa-css-prefix}-mandalorian:before { content: fa-content($fa-var-mandalorian); } +.#{$fa-css-prefix}-map:before { content: fa-content($fa-var-map); } +.#{$fa-css-prefix}-map-marked:before { content: fa-content($fa-var-map-marked); } +.#{$fa-css-prefix}-map-marked-alt:before { content: fa-content($fa-var-map-marked-alt); } +.#{$fa-css-prefix}-map-marker:before { content: fa-content($fa-var-map-marker); } +.#{$fa-css-prefix}-map-marker-alt:before { content: fa-content($fa-var-map-marker-alt); } +.#{$fa-css-prefix}-map-pin:before { content: fa-content($fa-var-map-pin); } +.#{$fa-css-prefix}-map-signs:before { content: fa-content($fa-var-map-signs); } +.#{$fa-css-prefix}-marker:before { content: fa-content($fa-var-marker); } +.#{$fa-css-prefix}-mars:before { content: fa-content($fa-var-mars); } +.#{$fa-css-prefix}-mars-double:before { content: fa-content($fa-var-mars-double); } +.#{$fa-css-prefix}-mars-stroke:before { content: fa-content($fa-var-mars-stroke); } +.#{$fa-css-prefix}-mars-stroke-h:before { content: fa-content($fa-var-mars-stroke-h); } +.#{$fa-css-prefix}-mars-stroke-v:before { content: fa-content($fa-var-mars-stroke-v); } +.#{$fa-css-prefix}-mastodon:before { content: fa-content($fa-var-mastodon); } +.#{$fa-css-prefix}-maxcdn:before { content: fa-content($fa-var-maxcdn); } +.#{$fa-css-prefix}-medal:before { content: fa-content($fa-var-medal); } +.#{$fa-css-prefix}-medapps:before { content: fa-content($fa-var-medapps); } +.#{$fa-css-prefix}-medium:before { content: fa-content($fa-var-medium); } +.#{$fa-css-prefix}-medium-m:before { content: fa-content($fa-var-medium-m); } +.#{$fa-css-prefix}-medkit:before { content: fa-content($fa-var-medkit); } +.#{$fa-css-prefix}-medrt:before { content: fa-content($fa-var-medrt); } +.#{$fa-css-prefix}-meetup:before { content: fa-content($fa-var-meetup); } +.#{$fa-css-prefix}-megaport:before { content: fa-content($fa-var-megaport); } +.#{$fa-css-prefix}-meh:before { content: fa-content($fa-var-meh); } +.#{$fa-css-prefix}-meh-blank:before { content: fa-content($fa-var-meh-blank); } +.#{$fa-css-prefix}-meh-rolling-eyes:before { content: fa-content($fa-var-meh-rolling-eyes); } +.#{$fa-css-prefix}-memory:before { content: fa-content($fa-var-memory); } +.#{$fa-css-prefix}-mercury:before { content: fa-content($fa-var-mercury); } +.#{$fa-css-prefix}-microchip:before { content: fa-content($fa-var-microchip); } +.#{$fa-css-prefix}-microphone:before { content: fa-content($fa-var-microphone); } +.#{$fa-css-prefix}-microphone-alt:before { content: fa-content($fa-var-microphone-alt); } +.#{$fa-css-prefix}-microphone-alt-slash:before { content: fa-content($fa-var-microphone-alt-slash); } +.#{$fa-css-prefix}-microphone-slash:before { content: fa-content($fa-var-microphone-slash); } +.#{$fa-css-prefix}-microsoft:before { content: fa-content($fa-var-microsoft); } +.#{$fa-css-prefix}-minus:before { content: fa-content($fa-var-minus); } +.#{$fa-css-prefix}-minus-circle:before { content: fa-content($fa-var-minus-circle); } +.#{$fa-css-prefix}-minus-square:before { content: fa-content($fa-var-minus-square); } +.#{$fa-css-prefix}-mix:before { content: fa-content($fa-var-mix); } +.#{$fa-css-prefix}-mixcloud:before { content: fa-content($fa-var-mixcloud); } +.#{$fa-css-prefix}-mizuni:before { content: fa-content($fa-var-mizuni); } +.#{$fa-css-prefix}-mobile:before { content: fa-content($fa-var-mobile); } +.#{$fa-css-prefix}-mobile-alt:before { content: fa-content($fa-var-mobile-alt); } +.#{$fa-css-prefix}-modx:before { content: fa-content($fa-var-modx); } +.#{$fa-css-prefix}-monero:before { content: fa-content($fa-var-monero); } +.#{$fa-css-prefix}-money-bill:before { content: fa-content($fa-var-money-bill); } +.#{$fa-css-prefix}-money-bill-alt:before { content: fa-content($fa-var-money-bill-alt); } +.#{$fa-css-prefix}-money-bill-wave:before { content: fa-content($fa-var-money-bill-wave); } +.#{$fa-css-prefix}-money-bill-wave-alt:before { content: fa-content($fa-var-money-bill-wave-alt); } +.#{$fa-css-prefix}-money-check:before { content: fa-content($fa-var-money-check); } +.#{$fa-css-prefix}-money-check-alt:before { content: fa-content($fa-var-money-check-alt); } +.#{$fa-css-prefix}-monument:before { content: fa-content($fa-var-monument); } +.#{$fa-css-prefix}-moon:before { content: fa-content($fa-var-moon); } +.#{$fa-css-prefix}-mortar-pestle:before { content: fa-content($fa-var-mortar-pestle); } +.#{$fa-css-prefix}-motorcycle:before { content: fa-content($fa-var-motorcycle); } +.#{$fa-css-prefix}-mouse-pointer:before { content: fa-content($fa-var-mouse-pointer); } +.#{$fa-css-prefix}-music:before { content: fa-content($fa-var-music); } +.#{$fa-css-prefix}-napster:before { content: fa-content($fa-var-napster); } +.#{$fa-css-prefix}-neuter:before { content: fa-content($fa-var-neuter); } +.#{$fa-css-prefix}-newspaper:before { content: fa-content($fa-var-newspaper); } +.#{$fa-css-prefix}-nimblr:before { content: fa-content($fa-var-nimblr); } +.#{$fa-css-prefix}-nintendo-switch:before { content: fa-content($fa-var-nintendo-switch); } +.#{$fa-css-prefix}-node:before { content: fa-content($fa-var-node); } +.#{$fa-css-prefix}-node-js:before { content: fa-content($fa-var-node-js); } +.#{$fa-css-prefix}-not-equal:before { content: fa-content($fa-var-not-equal); } +.#{$fa-css-prefix}-notes-medical:before { content: fa-content($fa-var-notes-medical); } +.#{$fa-css-prefix}-npm:before { content: fa-content($fa-var-npm); } +.#{$fa-css-prefix}-ns8:before { content: fa-content($fa-var-ns8); } +.#{$fa-css-prefix}-nutritionix:before { content: fa-content($fa-var-nutritionix); } +.#{$fa-css-prefix}-object-group:before { content: fa-content($fa-var-object-group); } +.#{$fa-css-prefix}-object-ungroup:before { content: fa-content($fa-var-object-ungroup); } +.#{$fa-css-prefix}-odnoklassniki:before { content: fa-content($fa-var-odnoklassniki); } +.#{$fa-css-prefix}-odnoklassniki-square:before { content: fa-content($fa-var-odnoklassniki-square); } +.#{$fa-css-prefix}-old-republic:before { content: fa-content($fa-var-old-republic); } +.#{$fa-css-prefix}-opencart:before { content: fa-content($fa-var-opencart); } +.#{$fa-css-prefix}-openid:before { content: fa-content($fa-var-openid); } +.#{$fa-css-prefix}-opera:before { content: fa-content($fa-var-opera); } +.#{$fa-css-prefix}-optin-monster:before { content: fa-content($fa-var-optin-monster); } +.#{$fa-css-prefix}-osi:before { content: fa-content($fa-var-osi); } +.#{$fa-css-prefix}-outdent:before { content: fa-content($fa-var-outdent); } +.#{$fa-css-prefix}-page4:before { content: fa-content($fa-var-page4); } +.#{$fa-css-prefix}-pagelines:before { content: fa-content($fa-var-pagelines); } +.#{$fa-css-prefix}-paint-brush:before { content: fa-content($fa-var-paint-brush); } +.#{$fa-css-prefix}-paint-roller:before { content: fa-content($fa-var-paint-roller); } +.#{$fa-css-prefix}-palette:before { content: fa-content($fa-var-palette); } +.#{$fa-css-prefix}-palfed:before { content: fa-content($fa-var-palfed); } +.#{$fa-css-prefix}-pallet:before { content: fa-content($fa-var-pallet); } +.#{$fa-css-prefix}-paper-plane:before { content: fa-content($fa-var-paper-plane); } +.#{$fa-css-prefix}-paperclip:before { content: fa-content($fa-var-paperclip); } +.#{$fa-css-prefix}-parachute-box:before { content: fa-content($fa-var-parachute-box); } +.#{$fa-css-prefix}-paragraph:before { content: fa-content($fa-var-paragraph); } +.#{$fa-css-prefix}-parking:before { content: fa-content($fa-var-parking); } +.#{$fa-css-prefix}-passport:before { content: fa-content($fa-var-passport); } +.#{$fa-css-prefix}-paste:before { content: fa-content($fa-var-paste); } +.#{$fa-css-prefix}-patreon:before { content: fa-content($fa-var-patreon); } +.#{$fa-css-prefix}-pause:before { content: fa-content($fa-var-pause); } +.#{$fa-css-prefix}-pause-circle:before { content: fa-content($fa-var-pause-circle); } +.#{$fa-css-prefix}-paw:before { content: fa-content($fa-var-paw); } +.#{$fa-css-prefix}-paypal:before { content: fa-content($fa-var-paypal); } +.#{$fa-css-prefix}-pen:before { content: fa-content($fa-var-pen); } +.#{$fa-css-prefix}-pen-alt:before { content: fa-content($fa-var-pen-alt); } +.#{$fa-css-prefix}-pen-fancy:before { content: fa-content($fa-var-pen-fancy); } +.#{$fa-css-prefix}-pen-nib:before { content: fa-content($fa-var-pen-nib); } +.#{$fa-css-prefix}-pen-square:before { content: fa-content($fa-var-pen-square); } +.#{$fa-css-prefix}-pencil-alt:before { content: fa-content($fa-var-pencil-alt); } +.#{$fa-css-prefix}-pencil-ruler:before { content: fa-content($fa-var-pencil-ruler); } +.#{$fa-css-prefix}-people-carry:before { content: fa-content($fa-var-people-carry); } +.#{$fa-css-prefix}-percent:before { content: fa-content($fa-var-percent); } +.#{$fa-css-prefix}-percentage:before { content: fa-content($fa-var-percentage); } +.#{$fa-css-prefix}-periscope:before { content: fa-content($fa-var-periscope); } +.#{$fa-css-prefix}-phabricator:before { content: fa-content($fa-var-phabricator); } +.#{$fa-css-prefix}-phoenix-framework:before { content: fa-content($fa-var-phoenix-framework); } +.#{$fa-css-prefix}-phoenix-squadron:before { content: fa-content($fa-var-phoenix-squadron); } +.#{$fa-css-prefix}-phone:before { content: fa-content($fa-var-phone); } +.#{$fa-css-prefix}-phone-slash:before { content: fa-content($fa-var-phone-slash); } +.#{$fa-css-prefix}-phone-square:before { content: fa-content($fa-var-phone-square); } +.#{$fa-css-prefix}-phone-volume:before { content: fa-content($fa-var-phone-volume); } +.#{$fa-css-prefix}-php:before { content: fa-content($fa-var-php); } +.#{$fa-css-prefix}-pied-piper:before { content: fa-content($fa-var-pied-piper); } +.#{$fa-css-prefix}-pied-piper-alt:before { content: fa-content($fa-var-pied-piper-alt); } +.#{$fa-css-prefix}-pied-piper-hat:before { content: fa-content($fa-var-pied-piper-hat); } +.#{$fa-css-prefix}-pied-piper-pp:before { content: fa-content($fa-var-pied-piper-pp); } +.#{$fa-css-prefix}-piggy-bank:before { content: fa-content($fa-var-piggy-bank); } +.#{$fa-css-prefix}-pills:before { content: fa-content($fa-var-pills); } +.#{$fa-css-prefix}-pinterest:before { content: fa-content($fa-var-pinterest); } +.#{$fa-css-prefix}-pinterest-p:before { content: fa-content($fa-var-pinterest-p); } +.#{$fa-css-prefix}-pinterest-square:before { content: fa-content($fa-var-pinterest-square); } +.#{$fa-css-prefix}-plane:before { content: fa-content($fa-var-plane); } +.#{$fa-css-prefix}-plane-arrival:before { content: fa-content($fa-var-plane-arrival); } +.#{$fa-css-prefix}-plane-departure:before { content: fa-content($fa-var-plane-departure); } +.#{$fa-css-prefix}-play:before { content: fa-content($fa-var-play); } +.#{$fa-css-prefix}-play-circle:before { content: fa-content($fa-var-play-circle); } +.#{$fa-css-prefix}-playstation:before { content: fa-content($fa-var-playstation); } +.#{$fa-css-prefix}-plug:before { content: fa-content($fa-var-plug); } +.#{$fa-css-prefix}-plus:before { content: fa-content($fa-var-plus); } +.#{$fa-css-prefix}-plus-circle:before { content: fa-content($fa-var-plus-circle); } +.#{$fa-css-prefix}-plus-square:before { content: fa-content($fa-var-plus-square); } +.#{$fa-css-prefix}-podcast:before { content: fa-content($fa-var-podcast); } +.#{$fa-css-prefix}-poo:before { content: fa-content($fa-var-poo); } +.#{$fa-css-prefix}-portrait:before { content: fa-content($fa-var-portrait); } +.#{$fa-css-prefix}-pound-sign:before { content: fa-content($fa-var-pound-sign); } +.#{$fa-css-prefix}-power-off:before { content: fa-content($fa-var-power-off); } +.#{$fa-css-prefix}-prescription:before { content: fa-content($fa-var-prescription); } +.#{$fa-css-prefix}-prescription-bottle:before { content: fa-content($fa-var-prescription-bottle); } +.#{$fa-css-prefix}-prescription-bottle-alt:before { content: fa-content($fa-var-prescription-bottle-alt); } +.#{$fa-css-prefix}-print:before { content: fa-content($fa-var-print); } +.#{$fa-css-prefix}-procedures:before { content: fa-content($fa-var-procedures); } +.#{$fa-css-prefix}-product-hunt:before { content: fa-content($fa-var-product-hunt); } +.#{$fa-css-prefix}-project-diagram:before { content: fa-content($fa-var-project-diagram); } +.#{$fa-css-prefix}-pushed:before { content: fa-content($fa-var-pushed); } +.#{$fa-css-prefix}-puzzle-piece:before { content: fa-content($fa-var-puzzle-piece); } +.#{$fa-css-prefix}-python:before { content: fa-content($fa-var-python); } +.#{$fa-css-prefix}-qq:before { content: fa-content($fa-var-qq); } +.#{$fa-css-prefix}-qrcode:before { content: fa-content($fa-var-qrcode); } +.#{$fa-css-prefix}-question:before { content: fa-content($fa-var-question); } +.#{$fa-css-prefix}-question-circle:before { content: fa-content($fa-var-question-circle); } +.#{$fa-css-prefix}-quidditch:before { content: fa-content($fa-var-quidditch); } +.#{$fa-css-prefix}-quinscape:before { content: fa-content($fa-var-quinscape); } +.#{$fa-css-prefix}-quora:before { content: fa-content($fa-var-quora); } +.#{$fa-css-prefix}-quote-left:before { content: fa-content($fa-var-quote-left); } +.#{$fa-css-prefix}-quote-right:before { content: fa-content($fa-var-quote-right); } +.#{$fa-css-prefix}-r-project:before { content: fa-content($fa-var-r-project); } +.#{$fa-css-prefix}-random:before { content: fa-content($fa-var-random); } +.#{$fa-css-prefix}-ravelry:before { content: fa-content($fa-var-ravelry); } +.#{$fa-css-prefix}-react:before { content: fa-content($fa-var-react); } +.#{$fa-css-prefix}-readme:before { content: fa-content($fa-var-readme); } +.#{$fa-css-prefix}-rebel:before { content: fa-content($fa-var-rebel); } +.#{$fa-css-prefix}-receipt:before { content: fa-content($fa-var-receipt); } +.#{$fa-css-prefix}-recycle:before { content: fa-content($fa-var-recycle); } +.#{$fa-css-prefix}-red-river:before { content: fa-content($fa-var-red-river); } +.#{$fa-css-prefix}-reddit:before { content: fa-content($fa-var-reddit); } +.#{$fa-css-prefix}-reddit-alien:before { content: fa-content($fa-var-reddit-alien); } +.#{$fa-css-prefix}-reddit-square:before { content: fa-content($fa-var-reddit-square); } +.#{$fa-css-prefix}-redo:before { content: fa-content($fa-var-redo); } +.#{$fa-css-prefix}-redo-alt:before { content: fa-content($fa-var-redo-alt); } +.#{$fa-css-prefix}-registered:before { content: fa-content($fa-var-registered); } +.#{$fa-css-prefix}-rendact:before { content: fa-content($fa-var-rendact); } +.#{$fa-css-prefix}-renren:before { content: fa-content($fa-var-renren); } +.#{$fa-css-prefix}-reply:before { content: fa-content($fa-var-reply); } +.#{$fa-css-prefix}-reply-all:before { content: fa-content($fa-var-reply-all); } +.#{$fa-css-prefix}-replyd:before { content: fa-content($fa-var-replyd); } +.#{$fa-css-prefix}-researchgate:before { content: fa-content($fa-var-researchgate); } +.#{$fa-css-prefix}-resolving:before { content: fa-content($fa-var-resolving); } +.#{$fa-css-prefix}-retweet:before { content: fa-content($fa-var-retweet); } +.#{$fa-css-prefix}-rev:before { content: fa-content($fa-var-rev); } +.#{$fa-css-prefix}-ribbon:before { content: fa-content($fa-var-ribbon); } +.#{$fa-css-prefix}-road:before { content: fa-content($fa-var-road); } +.#{$fa-css-prefix}-robot:before { content: fa-content($fa-var-robot); } +.#{$fa-css-prefix}-rocket:before { content: fa-content($fa-var-rocket); } +.#{$fa-css-prefix}-rocketchat:before { content: fa-content($fa-var-rocketchat); } +.#{$fa-css-prefix}-rockrms:before { content: fa-content($fa-var-rockrms); } +.#{$fa-css-prefix}-rss:before { content: fa-content($fa-var-rss); } +.#{$fa-css-prefix}-rss-square:before { content: fa-content($fa-var-rss-square); } +.#{$fa-css-prefix}-ruble-sign:before { content: fa-content($fa-var-ruble-sign); } +.#{$fa-css-prefix}-ruler:before { content: fa-content($fa-var-ruler); } +.#{$fa-css-prefix}-ruler-combined:before { content: fa-content($fa-var-ruler-combined); } +.#{$fa-css-prefix}-ruler-horizontal:before { content: fa-content($fa-var-ruler-horizontal); } +.#{$fa-css-prefix}-ruler-vertical:before { content: fa-content($fa-var-ruler-vertical); } +.#{$fa-css-prefix}-rupee-sign:before { content: fa-content($fa-var-rupee-sign); } +.#{$fa-css-prefix}-sad-cry:before { content: fa-content($fa-var-sad-cry); } +.#{$fa-css-prefix}-sad-tear:before { content: fa-content($fa-var-sad-tear); } +.#{$fa-css-prefix}-safari:before { content: fa-content($fa-var-safari); } +.#{$fa-css-prefix}-sass:before { content: fa-content($fa-var-sass); } +.#{$fa-css-prefix}-save:before { content: fa-content($fa-var-save); } +.#{$fa-css-prefix}-schlix:before { content: fa-content($fa-var-schlix); } +.#{$fa-css-prefix}-school:before { content: fa-content($fa-var-school); } +.#{$fa-css-prefix}-screwdriver:before { content: fa-content($fa-var-screwdriver); } +.#{$fa-css-prefix}-scribd:before { content: fa-content($fa-var-scribd); } +.#{$fa-css-prefix}-search:before { content: fa-content($fa-var-search); } +.#{$fa-css-prefix}-search-minus:before { content: fa-content($fa-var-search-minus); } +.#{$fa-css-prefix}-search-plus:before { content: fa-content($fa-var-search-plus); } +.#{$fa-css-prefix}-searchengin:before { content: fa-content($fa-var-searchengin); } +.#{$fa-css-prefix}-seedling:before { content: fa-content($fa-var-seedling); } +.#{$fa-css-prefix}-sellcast:before { content: fa-content($fa-var-sellcast); } +.#{$fa-css-prefix}-sellsy:before { content: fa-content($fa-var-sellsy); } +.#{$fa-css-prefix}-server:before { content: fa-content($fa-var-server); } +.#{$fa-css-prefix}-servicestack:before { content: fa-content($fa-var-servicestack); } +.#{$fa-css-prefix}-share:before { content: fa-content($fa-var-share); } +.#{$fa-css-prefix}-share-alt:before { content: fa-content($fa-var-share-alt); } +.#{$fa-css-prefix}-share-alt-square:before { content: fa-content($fa-var-share-alt-square); } +.#{$fa-css-prefix}-share-square:before { content: fa-content($fa-var-share-square); } +.#{$fa-css-prefix}-shekel-sign:before { content: fa-content($fa-var-shekel-sign); } +.#{$fa-css-prefix}-shield-alt:before { content: fa-content($fa-var-shield-alt); } +.#{$fa-css-prefix}-ship:before { content: fa-content($fa-var-ship); } +.#{$fa-css-prefix}-shipping-fast:before { content: fa-content($fa-var-shipping-fast); } +.#{$fa-css-prefix}-shirtsinbulk:before { content: fa-content($fa-var-shirtsinbulk); } +.#{$fa-css-prefix}-shoe-prints:before { content: fa-content($fa-var-shoe-prints); } +.#{$fa-css-prefix}-shopping-bag:before { content: fa-content($fa-var-shopping-bag); } +.#{$fa-css-prefix}-shopping-basket:before { content: fa-content($fa-var-shopping-basket); } +.#{$fa-css-prefix}-shopping-cart:before { content: fa-content($fa-var-shopping-cart); } +.#{$fa-css-prefix}-shopware:before { content: fa-content($fa-var-shopware); } +.#{$fa-css-prefix}-shower:before { content: fa-content($fa-var-shower); } +.#{$fa-css-prefix}-shuttle-van:before { content: fa-content($fa-var-shuttle-van); } +.#{$fa-css-prefix}-sign:before { content: fa-content($fa-var-sign); } +.#{$fa-css-prefix}-sign-in-alt:before { content: fa-content($fa-var-sign-in-alt); } +.#{$fa-css-prefix}-sign-language:before { content: fa-content($fa-var-sign-language); } +.#{$fa-css-prefix}-sign-out-alt:before { content: fa-content($fa-var-sign-out-alt); } +.#{$fa-css-prefix}-signal:before { content: fa-content($fa-var-signal); } +.#{$fa-css-prefix}-signature:before { content: fa-content($fa-var-signature); } +.#{$fa-css-prefix}-simplybuilt:before { content: fa-content($fa-var-simplybuilt); } +.#{$fa-css-prefix}-sistrix:before { content: fa-content($fa-var-sistrix); } +.#{$fa-css-prefix}-sitemap:before { content: fa-content($fa-var-sitemap); } +.#{$fa-css-prefix}-sith:before { content: fa-content($fa-var-sith); } +.#{$fa-css-prefix}-skull:before { content: fa-content($fa-var-skull); } +.#{$fa-css-prefix}-skyatlas:before { content: fa-content($fa-var-skyatlas); } +.#{$fa-css-prefix}-skype:before { content: fa-content($fa-var-skype); } +.#{$fa-css-prefix}-slack:before { content: fa-content($fa-var-slack); } +.#{$fa-css-prefix}-slack-hash:before { content: fa-content($fa-var-slack-hash); } +.#{$fa-css-prefix}-sliders-h:before { content: fa-content($fa-var-sliders-h); } +.#{$fa-css-prefix}-slideshare:before { content: fa-content($fa-var-slideshare); } +.#{$fa-css-prefix}-smile:before { content: fa-content($fa-var-smile); } +.#{$fa-css-prefix}-smile-beam:before { content: fa-content($fa-var-smile-beam); } +.#{$fa-css-prefix}-smile-wink:before { content: fa-content($fa-var-smile-wink); } +.#{$fa-css-prefix}-smoking:before { content: fa-content($fa-var-smoking); } +.#{$fa-css-prefix}-smoking-ban:before { content: fa-content($fa-var-smoking-ban); } +.#{$fa-css-prefix}-snapchat:before { content: fa-content($fa-var-snapchat); } +.#{$fa-css-prefix}-snapchat-ghost:before { content: fa-content($fa-var-snapchat-ghost); } +.#{$fa-css-prefix}-snapchat-square:before { content: fa-content($fa-var-snapchat-square); } +.#{$fa-css-prefix}-snowflake:before { content: fa-content($fa-var-snowflake); } +.#{$fa-css-prefix}-solar-panel:before { content: fa-content($fa-var-solar-panel); } +.#{$fa-css-prefix}-sort:before { content: fa-content($fa-var-sort); } +.#{$fa-css-prefix}-sort-alpha-down:before { content: fa-content($fa-var-sort-alpha-down); } +.#{$fa-css-prefix}-sort-alpha-up:before { content: fa-content($fa-var-sort-alpha-up); } +.#{$fa-css-prefix}-sort-amount-down:before { content: fa-content($fa-var-sort-amount-down); } +.#{$fa-css-prefix}-sort-amount-up:before { content: fa-content($fa-var-sort-amount-up); } +.#{$fa-css-prefix}-sort-down:before { content: fa-content($fa-var-sort-down); } +.#{$fa-css-prefix}-sort-numeric-down:before { content: fa-content($fa-var-sort-numeric-down); } +.#{$fa-css-prefix}-sort-numeric-up:before { content: fa-content($fa-var-sort-numeric-up); } +.#{$fa-css-prefix}-sort-up:before { content: fa-content($fa-var-sort-up); } +.#{$fa-css-prefix}-soundcloud:before { content: fa-content($fa-var-soundcloud); } +.#{$fa-css-prefix}-spa:before { content: fa-content($fa-var-spa); } +.#{$fa-css-prefix}-space-shuttle:before { content: fa-content($fa-var-space-shuttle); } +.#{$fa-css-prefix}-speakap:before { content: fa-content($fa-var-speakap); } +.#{$fa-css-prefix}-spinner:before { content: fa-content($fa-var-spinner); } +.#{$fa-css-prefix}-splotch:before { content: fa-content($fa-var-splotch); } +.#{$fa-css-prefix}-spotify:before { content: fa-content($fa-var-spotify); } +.#{$fa-css-prefix}-spray-can:before { content: fa-content($fa-var-spray-can); } +.#{$fa-css-prefix}-square:before { content: fa-content($fa-var-square); } +.#{$fa-css-prefix}-square-full:before { content: fa-content($fa-var-square-full); } +.#{$fa-css-prefix}-squarespace:before { content: fa-content($fa-var-squarespace); } +.#{$fa-css-prefix}-stack-exchange:before { content: fa-content($fa-var-stack-exchange); } +.#{$fa-css-prefix}-stack-overflow:before { content: fa-content($fa-var-stack-overflow); } +.#{$fa-css-prefix}-stamp:before { content: fa-content($fa-var-stamp); } +.#{$fa-css-prefix}-star:before { content: fa-content($fa-var-star); } +.#{$fa-css-prefix}-star-half:before { content: fa-content($fa-var-star-half); } +.#{$fa-css-prefix}-star-half-alt:before { content: fa-content($fa-var-star-half-alt); } +.#{$fa-css-prefix}-staylinked:before { content: fa-content($fa-var-staylinked); } +.#{$fa-css-prefix}-steam:before { content: fa-content($fa-var-steam); } +.#{$fa-css-prefix}-steam-square:before { content: fa-content($fa-var-steam-square); } +.#{$fa-css-prefix}-steam-symbol:before { content: fa-content($fa-var-steam-symbol); } +.#{$fa-css-prefix}-step-backward:before { content: fa-content($fa-var-step-backward); } +.#{$fa-css-prefix}-step-forward:before { content: fa-content($fa-var-step-forward); } +.#{$fa-css-prefix}-stethoscope:before { content: fa-content($fa-var-stethoscope); } +.#{$fa-css-prefix}-sticker-mule:before { content: fa-content($fa-var-sticker-mule); } +.#{$fa-css-prefix}-sticky-note:before { content: fa-content($fa-var-sticky-note); } +.#{$fa-css-prefix}-stop:before { content: fa-content($fa-var-stop); } +.#{$fa-css-prefix}-stop-circle:before { content: fa-content($fa-var-stop-circle); } +.#{$fa-css-prefix}-stopwatch:before { content: fa-content($fa-var-stopwatch); } +.#{$fa-css-prefix}-store:before { content: fa-content($fa-var-store); } +.#{$fa-css-prefix}-store-alt:before { content: fa-content($fa-var-store-alt); } +.#{$fa-css-prefix}-strava:before { content: fa-content($fa-var-strava); } +.#{$fa-css-prefix}-stream:before { content: fa-content($fa-var-stream); } +.#{$fa-css-prefix}-street-view:before { content: fa-content($fa-var-street-view); } +.#{$fa-css-prefix}-strikethrough:before { content: fa-content($fa-var-strikethrough); } +.#{$fa-css-prefix}-stripe:before { content: fa-content($fa-var-stripe); } +.#{$fa-css-prefix}-stripe-s:before { content: fa-content($fa-var-stripe-s); } +.#{$fa-css-prefix}-stroopwafel:before { content: fa-content($fa-var-stroopwafel); } +.#{$fa-css-prefix}-studiovinari:before { content: fa-content($fa-var-studiovinari); } +.#{$fa-css-prefix}-stumbleupon:before { content: fa-content($fa-var-stumbleupon); } +.#{$fa-css-prefix}-stumbleupon-circle:before { content: fa-content($fa-var-stumbleupon-circle); } +.#{$fa-css-prefix}-subscript:before { content: fa-content($fa-var-subscript); } +.#{$fa-css-prefix}-subway:before { content: fa-content($fa-var-subway); } +.#{$fa-css-prefix}-suitcase:before { content: fa-content($fa-var-suitcase); } +.#{$fa-css-prefix}-suitcase-rolling:before { content: fa-content($fa-var-suitcase-rolling); } +.#{$fa-css-prefix}-sun:before { content: fa-content($fa-var-sun); } +.#{$fa-css-prefix}-superpowers:before { content: fa-content($fa-var-superpowers); } +.#{$fa-css-prefix}-superscript:before { content: fa-content($fa-var-superscript); } +.#{$fa-css-prefix}-supple:before { content: fa-content($fa-var-supple); } +.#{$fa-css-prefix}-surprise:before { content: fa-content($fa-var-surprise); } +.#{$fa-css-prefix}-swatchbook:before { content: fa-content($fa-var-swatchbook); } +.#{$fa-css-prefix}-swimmer:before { content: fa-content($fa-var-swimmer); } +.#{$fa-css-prefix}-swimming-pool:before { content: fa-content($fa-var-swimming-pool); } +.#{$fa-css-prefix}-sync:before { content: fa-content($fa-var-sync); } +.#{$fa-css-prefix}-sync-alt:before { content: fa-content($fa-var-sync-alt); } +.#{$fa-css-prefix}-syringe:before { content: fa-content($fa-var-syringe); } +.#{$fa-css-prefix}-table:before { content: fa-content($fa-var-table); } +.#{$fa-css-prefix}-table-tennis:before { content: fa-content($fa-var-table-tennis); } +.#{$fa-css-prefix}-tablet:before { content: fa-content($fa-var-tablet); } +.#{$fa-css-prefix}-tablet-alt:before { content: fa-content($fa-var-tablet-alt); } +.#{$fa-css-prefix}-tablets:before { content: fa-content($fa-var-tablets); } +.#{$fa-css-prefix}-tachometer-alt:before { content: fa-content($fa-var-tachometer-alt); } +.#{$fa-css-prefix}-tag:before { content: fa-content($fa-var-tag); } +.#{$fa-css-prefix}-tags:before { content: fa-content($fa-var-tags); } +.#{$fa-css-prefix}-tape:before { content: fa-content($fa-var-tape); } +.#{$fa-css-prefix}-tasks:before { content: fa-content($fa-var-tasks); } +.#{$fa-css-prefix}-taxi:before { content: fa-content($fa-var-taxi); } +.#{$fa-css-prefix}-teamspeak:before { content: fa-content($fa-var-teamspeak); } +.#{$fa-css-prefix}-telegram:before { content: fa-content($fa-var-telegram); } +.#{$fa-css-prefix}-telegram-plane:before { content: fa-content($fa-var-telegram-plane); } +.#{$fa-css-prefix}-tencent-weibo:before { content: fa-content($fa-var-tencent-weibo); } +.#{$fa-css-prefix}-terminal:before { content: fa-content($fa-var-terminal); } +.#{$fa-css-prefix}-text-height:before { content: fa-content($fa-var-text-height); } +.#{$fa-css-prefix}-text-width:before { content: fa-content($fa-var-text-width); } +.#{$fa-css-prefix}-th:before { content: fa-content($fa-var-th); } +.#{$fa-css-prefix}-th-large:before { content: fa-content($fa-var-th-large); } +.#{$fa-css-prefix}-th-list:before { content: fa-content($fa-var-th-list); } +.#{$fa-css-prefix}-themeco:before { content: fa-content($fa-var-themeco); } +.#{$fa-css-prefix}-themeisle:before { content: fa-content($fa-var-themeisle); } +.#{$fa-css-prefix}-thermometer:before { content: fa-content($fa-var-thermometer); } +.#{$fa-css-prefix}-thermometer-empty:before { content: fa-content($fa-var-thermometer-empty); } +.#{$fa-css-prefix}-thermometer-full:before { content: fa-content($fa-var-thermometer-full); } +.#{$fa-css-prefix}-thermometer-half:before { content: fa-content($fa-var-thermometer-half); } +.#{$fa-css-prefix}-thermometer-quarter:before { content: fa-content($fa-var-thermometer-quarter); } +.#{$fa-css-prefix}-thermometer-three-quarters:before { content: fa-content($fa-var-thermometer-three-quarters); } +.#{$fa-css-prefix}-thumbs-down:before { content: fa-content($fa-var-thumbs-down); } +.#{$fa-css-prefix}-thumbs-up:before { content: fa-content($fa-var-thumbs-up); } +.#{$fa-css-prefix}-thumbtack:before { content: fa-content($fa-var-thumbtack); } +.#{$fa-css-prefix}-ticket-alt:before { content: fa-content($fa-var-ticket-alt); } +.#{$fa-css-prefix}-times:before { content: fa-content($fa-var-times); } +.#{$fa-css-prefix}-times-circle:before { content: fa-content($fa-var-times-circle); } +.#{$fa-css-prefix}-tint:before { content: fa-content($fa-var-tint); } +.#{$fa-css-prefix}-tint-slash:before { content: fa-content($fa-var-tint-slash); } +.#{$fa-css-prefix}-tired:before { content: fa-content($fa-var-tired); } +.#{$fa-css-prefix}-toggle-off:before { content: fa-content($fa-var-toggle-off); } +.#{$fa-css-prefix}-toggle-on:before { content: fa-content($fa-var-toggle-on); } +.#{$fa-css-prefix}-toolbox:before { content: fa-content($fa-var-toolbox); } +.#{$fa-css-prefix}-tooth:before { content: fa-content($fa-var-tooth); } +.#{$fa-css-prefix}-trade-federation:before { content: fa-content($fa-var-trade-federation); } +.#{$fa-css-prefix}-trademark:before { content: fa-content($fa-var-trademark); } +.#{$fa-css-prefix}-train:before { content: fa-content($fa-var-train); } +.#{$fa-css-prefix}-transgender:before { content: fa-content($fa-var-transgender); } +.#{$fa-css-prefix}-transgender-alt:before { content: fa-content($fa-var-transgender-alt); } +.#{$fa-css-prefix}-trash:before { content: fa-content($fa-var-trash); } +.#{$fa-css-prefix}-trash-alt:before { content: fa-content($fa-var-trash-alt); } +.#{$fa-css-prefix}-tree:before { content: fa-content($fa-var-tree); } +.#{$fa-css-prefix}-trello:before { content: fa-content($fa-var-trello); } +.#{$fa-css-prefix}-tripadvisor:before { content: fa-content($fa-var-tripadvisor); } +.#{$fa-css-prefix}-trophy:before { content: fa-content($fa-var-trophy); } +.#{$fa-css-prefix}-truck:before { content: fa-content($fa-var-truck); } +.#{$fa-css-prefix}-truck-loading:before { content: fa-content($fa-var-truck-loading); } +.#{$fa-css-prefix}-truck-moving:before { content: fa-content($fa-var-truck-moving); } +.#{$fa-css-prefix}-tshirt:before { content: fa-content($fa-var-tshirt); } +.#{$fa-css-prefix}-tty:before { content: fa-content($fa-var-tty); } +.#{$fa-css-prefix}-tumblr:before { content: fa-content($fa-var-tumblr); } +.#{$fa-css-prefix}-tumblr-square:before { content: fa-content($fa-var-tumblr-square); } +.#{$fa-css-prefix}-tv:before { content: fa-content($fa-var-tv); } +.#{$fa-css-prefix}-twitch:before { content: fa-content($fa-var-twitch); } +.#{$fa-css-prefix}-twitter:before { content: fa-content($fa-var-twitter); } +.#{$fa-css-prefix}-twitter-square:before { content: fa-content($fa-var-twitter-square); } +.#{$fa-css-prefix}-typo3:before { content: fa-content($fa-var-typo3); } +.#{$fa-css-prefix}-uber:before { content: fa-content($fa-var-uber); } +.#{$fa-css-prefix}-uikit:before { content: fa-content($fa-var-uikit); } +.#{$fa-css-prefix}-umbrella:before { content: fa-content($fa-var-umbrella); } +.#{$fa-css-prefix}-umbrella-beach:before { content: fa-content($fa-var-umbrella-beach); } +.#{$fa-css-prefix}-underline:before { content: fa-content($fa-var-underline); } +.#{$fa-css-prefix}-undo:before { content: fa-content($fa-var-undo); } +.#{$fa-css-prefix}-undo-alt:before { content: fa-content($fa-var-undo-alt); } +.#{$fa-css-prefix}-uniregistry:before { content: fa-content($fa-var-uniregistry); } +.#{$fa-css-prefix}-universal-access:before { content: fa-content($fa-var-universal-access); } +.#{$fa-css-prefix}-university:before { content: fa-content($fa-var-university); } +.#{$fa-css-prefix}-unlink:before { content: fa-content($fa-var-unlink); } +.#{$fa-css-prefix}-unlock:before { content: fa-content($fa-var-unlock); } +.#{$fa-css-prefix}-unlock-alt:before { content: fa-content($fa-var-unlock-alt); } +.#{$fa-css-prefix}-untappd:before { content: fa-content($fa-var-untappd); } +.#{$fa-css-prefix}-upload:before { content: fa-content($fa-var-upload); } +.#{$fa-css-prefix}-usb:before { content: fa-content($fa-var-usb); } +.#{$fa-css-prefix}-user:before { content: fa-content($fa-var-user); } +.#{$fa-css-prefix}-user-alt:before { content: fa-content($fa-var-user-alt); } +.#{$fa-css-prefix}-user-alt-slash:before { content: fa-content($fa-var-user-alt-slash); } +.#{$fa-css-prefix}-user-astronaut:before { content: fa-content($fa-var-user-astronaut); } +.#{$fa-css-prefix}-user-check:before { content: fa-content($fa-var-user-check); } +.#{$fa-css-prefix}-user-circle:before { content: fa-content($fa-var-user-circle); } +.#{$fa-css-prefix}-user-clock:before { content: fa-content($fa-var-user-clock); } +.#{$fa-css-prefix}-user-cog:before { content: fa-content($fa-var-user-cog); } +.#{$fa-css-prefix}-user-edit:before { content: fa-content($fa-var-user-edit); } +.#{$fa-css-prefix}-user-friends:before { content: fa-content($fa-var-user-friends); } +.#{$fa-css-prefix}-user-graduate:before { content: fa-content($fa-var-user-graduate); } +.#{$fa-css-prefix}-user-lock:before { content: fa-content($fa-var-user-lock); } +.#{$fa-css-prefix}-user-md:before { content: fa-content($fa-var-user-md); } +.#{$fa-css-prefix}-user-minus:before { content: fa-content($fa-var-user-minus); } +.#{$fa-css-prefix}-user-ninja:before { content: fa-content($fa-var-user-ninja); } +.#{$fa-css-prefix}-user-plus:before { content: fa-content($fa-var-user-plus); } +.#{$fa-css-prefix}-user-secret:before { content: fa-content($fa-var-user-secret); } +.#{$fa-css-prefix}-user-shield:before { content: fa-content($fa-var-user-shield); } +.#{$fa-css-prefix}-user-slash:before { content: fa-content($fa-var-user-slash); } +.#{$fa-css-prefix}-user-tag:before { content: fa-content($fa-var-user-tag); } +.#{$fa-css-prefix}-user-tie:before { content: fa-content($fa-var-user-tie); } +.#{$fa-css-prefix}-user-times:before { content: fa-content($fa-var-user-times); } +.#{$fa-css-prefix}-users:before { content: fa-content($fa-var-users); } +.#{$fa-css-prefix}-users-cog:before { content: fa-content($fa-var-users-cog); } +.#{$fa-css-prefix}-ussunnah:before { content: fa-content($fa-var-ussunnah); } +.#{$fa-css-prefix}-utensil-spoon:before { content: fa-content($fa-var-utensil-spoon); } +.#{$fa-css-prefix}-utensils:before { content: fa-content($fa-var-utensils); } +.#{$fa-css-prefix}-vaadin:before { content: fa-content($fa-var-vaadin); } +.#{$fa-css-prefix}-vector-square:before { content: fa-content($fa-var-vector-square); } +.#{$fa-css-prefix}-venus:before { content: fa-content($fa-var-venus); } +.#{$fa-css-prefix}-venus-double:before { content: fa-content($fa-var-venus-double); } +.#{$fa-css-prefix}-venus-mars:before { content: fa-content($fa-var-venus-mars); } +.#{$fa-css-prefix}-viacoin:before { content: fa-content($fa-var-viacoin); } +.#{$fa-css-prefix}-viadeo:before { content: fa-content($fa-var-viadeo); } +.#{$fa-css-prefix}-viadeo-square:before { content: fa-content($fa-var-viadeo-square); } +.#{$fa-css-prefix}-vial:before { content: fa-content($fa-var-vial); } +.#{$fa-css-prefix}-vials:before { content: fa-content($fa-var-vials); } +.#{$fa-css-prefix}-viber:before { content: fa-content($fa-var-viber); } +.#{$fa-css-prefix}-video:before { content: fa-content($fa-var-video); } +.#{$fa-css-prefix}-video-slash:before { content: fa-content($fa-var-video-slash); } +.#{$fa-css-prefix}-vimeo:before { content: fa-content($fa-var-vimeo); } +.#{$fa-css-prefix}-vimeo-square:before { content: fa-content($fa-var-vimeo-square); } +.#{$fa-css-prefix}-vimeo-v:before { content: fa-content($fa-var-vimeo-v); } +.#{$fa-css-prefix}-vine:before { content: fa-content($fa-var-vine); } +.#{$fa-css-prefix}-vk:before { content: fa-content($fa-var-vk); } +.#{$fa-css-prefix}-vnv:before { content: fa-content($fa-var-vnv); } +.#{$fa-css-prefix}-volleyball-ball:before { content: fa-content($fa-var-volleyball-ball); } +.#{$fa-css-prefix}-volume-down:before { content: fa-content($fa-var-volume-down); } +.#{$fa-css-prefix}-volume-off:before { content: fa-content($fa-var-volume-off); } +.#{$fa-css-prefix}-volume-up:before { content: fa-content($fa-var-volume-up); } +.#{$fa-css-prefix}-vuejs:before { content: fa-content($fa-var-vuejs); } +.#{$fa-css-prefix}-walking:before { content: fa-content($fa-var-walking); } +.#{$fa-css-prefix}-wallet:before { content: fa-content($fa-var-wallet); } +.#{$fa-css-prefix}-warehouse:before { content: fa-content($fa-var-warehouse); } +.#{$fa-css-prefix}-weebly:before { content: fa-content($fa-var-weebly); } +.#{$fa-css-prefix}-weibo:before { content: fa-content($fa-var-weibo); } +.#{$fa-css-prefix}-weight:before { content: fa-content($fa-var-weight); } +.#{$fa-css-prefix}-weight-hanging:before { content: fa-content($fa-var-weight-hanging); } +.#{$fa-css-prefix}-weixin:before { content: fa-content($fa-var-weixin); } +.#{$fa-css-prefix}-whatsapp:before { content: fa-content($fa-var-whatsapp); } +.#{$fa-css-prefix}-whatsapp-square:before { content: fa-content($fa-var-whatsapp-square); } +.#{$fa-css-prefix}-wheelchair:before { content: fa-content($fa-var-wheelchair); } +.#{$fa-css-prefix}-whmcs:before { content: fa-content($fa-var-whmcs); } +.#{$fa-css-prefix}-wifi:before { content: fa-content($fa-var-wifi); } +.#{$fa-css-prefix}-wikipedia-w:before { content: fa-content($fa-var-wikipedia-w); } +.#{$fa-css-prefix}-window-close:before { content: fa-content($fa-var-window-close); } +.#{$fa-css-prefix}-window-maximize:before { content: fa-content($fa-var-window-maximize); } +.#{$fa-css-prefix}-window-minimize:before { content: fa-content($fa-var-window-minimize); } +.#{$fa-css-prefix}-window-restore:before { content: fa-content($fa-var-window-restore); } +.#{$fa-css-prefix}-windows:before { content: fa-content($fa-var-windows); } +.#{$fa-css-prefix}-wine-glass:before { content: fa-content($fa-var-wine-glass); } +.#{$fa-css-prefix}-wine-glass-alt:before { content: fa-content($fa-var-wine-glass-alt); } +.#{$fa-css-prefix}-wix:before { content: fa-content($fa-var-wix); } +.#{$fa-css-prefix}-wolf-pack-battalion:before { content: fa-content($fa-var-wolf-pack-battalion); } +.#{$fa-css-prefix}-won-sign:before { content: fa-content($fa-var-won-sign); } +.#{$fa-css-prefix}-wordpress:before { content: fa-content($fa-var-wordpress); } +.#{$fa-css-prefix}-wordpress-simple:before { content: fa-content($fa-var-wordpress-simple); } +.#{$fa-css-prefix}-wpbeginner:before { content: fa-content($fa-var-wpbeginner); } +.#{$fa-css-prefix}-wpexplorer:before { content: fa-content($fa-var-wpexplorer); } +.#{$fa-css-prefix}-wpforms:before { content: fa-content($fa-var-wpforms); } +.#{$fa-css-prefix}-wrench:before { content: fa-content($fa-var-wrench); } +.#{$fa-css-prefix}-x-ray:before { content: fa-content($fa-var-x-ray); } +.#{$fa-css-prefix}-xbox:before { content: fa-content($fa-var-xbox); } +.#{$fa-css-prefix}-xing:before { content: fa-content($fa-var-xing); } +.#{$fa-css-prefix}-xing-square:before { content: fa-content($fa-var-xing-square); } +.#{$fa-css-prefix}-y-combinator:before { content: fa-content($fa-var-y-combinator); } +.#{$fa-css-prefix}-yahoo:before { content: fa-content($fa-var-yahoo); } +.#{$fa-css-prefix}-yandex:before { content: fa-content($fa-var-yandex); } +.#{$fa-css-prefix}-yandex-international:before { content: fa-content($fa-var-yandex-international); } +.#{$fa-css-prefix}-yelp:before { content: fa-content($fa-var-yelp); } +.#{$fa-css-prefix}-yen-sign:before { content: fa-content($fa-var-yen-sign); } +.#{$fa-css-prefix}-yoast:before { content: fa-content($fa-var-yoast); } +.#{$fa-css-prefix}-youtube:before { content: fa-content($fa-var-youtube); } +.#{$fa-css-prefix}-youtube-square:before { content: fa-content($fa-var-youtube-square); } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_larger.scss b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_larger.scss new file mode 100644 index 0000000000..27c2ad5fc4 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_larger.scss @@ -0,0 +1,23 @@ +// Icon Sizes +// ------------------------- + +// makes the font 33% larger relative to the icon container +.#{$fa-css-prefix}-lg { + font-size: (4em / 3); + line-height: (3em / 4); + vertical-align: -.0667em; +} + +.#{$fa-css-prefix}-xs { + font-size: .75em; +} + +.#{$fa-css-prefix}-sm { + font-size: .875em; +} + +@for $i from 1 through 10 { + .#{$fa-css-prefix}-#{$i}x { + font-size: $i * 1em; + } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_list.scss b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_list.scss new file mode 100644 index 0000000000..8ebf33333c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_list.scss @@ -0,0 +1,18 @@ +// List Icons +// ------------------------- + +.#{$fa-css-prefix}-ul { + list-style-type: none; + margin-left: $fa-li-width * 5/4; + padding-left: 0; + + > li { position: relative; } +} + +.#{$fa-css-prefix}-li { + left: -$fa-li-width; + position: absolute; + text-align: center; + width: $fa-li-width; + line-height: inherit; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_mixins.scss b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_mixins.scss new file mode 100644 index 0000000000..50a2e9f18c --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_mixins.scss @@ -0,0 +1,57 @@ +// Mixins +// -------------------------- + +@mixin fa-icon { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + display: inline-block; + font-style: normal; + font-variant: normal; + font-weight: normal; + line-height: 1; + vertical-align: -.125em; +} + +@mixin fa-icon-rotate($degrees, $rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})"; + transform: rotate($degrees); +} + +@mixin fa-icon-flip($horiz, $vert, $rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)"; + transform: scale($horiz, $vert); +} + + +// Only display content to screen readers. A la Bootstrap 4. +// +// See: http://a11yproject.com/posts/how-to-hide-content/ + +@mixin sr-only { + border: 0; + clip: rect(0, 0, 0, 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; +} + +// Use in conjunction with .sr-only to only display content when it's focused. +// +// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 +// +// Credit: HTML5 Boilerplate + +@mixin sr-only-focusable { + &:active, + &:focus { + clip: auto; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto; + } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_rotated-flipped.scss b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_rotated-flipped.scss new file mode 100644 index 0000000000..995bc4cc70 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_rotated-flipped.scss @@ -0,0 +1,23 @@ +// Rotated & Flipped Icons +// ------------------------- + +.#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } +.#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } +.#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } + +.#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } +.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } +.#{$fa-css-prefix}-flip-horizontal.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(-1, -1, 2); } + +// Hook for IE8-9 +// ------------------------- + +:root { + .#{$fa-css-prefix}-rotate-90, + .#{$fa-css-prefix}-rotate-180, + .#{$fa-css-prefix}-rotate-270, + .#{$fa-css-prefix}-flip-horizontal, + .#{$fa-css-prefix}-flip-vertical { + filter: none; + } +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_screen-reader.scss b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_screen-reader.scss new file mode 100644 index 0000000000..5d0ab262f1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_screen-reader.scss @@ -0,0 +1,5 @@ +// Screen Readers +// ------------------------- + +.sr-only { @include sr-only; } +.sr-only-focusable { @include sr-only-focusable; } diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_shims.scss b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_shims.scss new file mode 100644 index 0000000000..08261c93df --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_shims.scss @@ -0,0 +1,2066 @@ +.#{$fa-css-prefix}.#{$fa-css-prefix}-glass:before { content: fa-content($fa-var-glass-martini); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-meetup { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-star-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-star-o:before { content: fa-content($fa-var-star); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-remove:before { content: fa-content($fa-var-times); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-close:before { content: fa-content($fa-var-times); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-gear:before { content: fa-content($fa-var-cog); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o:before { content: fa-content($fa-var-trash-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-o:before { content: fa-content($fa-var-file); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o:before { content: fa-content($fa-var-clock); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down:before { content: fa-content($fa-var-arrow-alt-circle-down); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up:before { content: fa-content($fa-var-arrow-alt-circle-up); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o:before { content: fa-content($fa-var-play-circle); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-repeat:before { content: fa-content($fa-var-redo); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-right:before { content: fa-content($fa-var-redo); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-refresh:before { content: fa-content($fa-var-sync); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-list-alt { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-dedent:before { content: fa-content($fa-var-outdent); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-video-camera:before { content: fa-content($fa-var-video); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o:before { content: fa-content($fa-var-image); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-photo { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-photo:before { content: fa-content($fa-var-image); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-image { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-image:before { content: fa-content($fa-var-image); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil:before { content: fa-content($fa-var-pencil-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-map-marker:before { content: fa-content($fa-var-map-marker-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o:before { content: fa-content($fa-var-edit); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-share-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-share-square-o:before { content: fa-content($fa-var-share-square); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o:before { content: fa-content($fa-var-check-square); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows:before { content: fa-content($fa-var-arrows-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o:before { content: fa-content($fa-var-times-circle); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o:before { content: fa-content($fa-var-check-circle); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-forward:before { content: fa-content($fa-var-share); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-eye { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-eye-slash { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-warning:before { content: fa-content($fa-var-exclamation-triangle); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar:before { content: fa-content($fa-var-calendar-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-v:before { content: fa-content($fa-var-arrows-alt-v); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-h:before { content: fa-content($fa-var-arrows-alt-h); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart:before { content: fa-content($fa-var-chart-bar); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart-o:before { content: fa-content($fa-var-chart-bar); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-twitter-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-gears:before { content: fa-content($fa-var-cogs); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up:before { content: fa-content($fa-var-thumbs-up); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down:before { content: fa-content($fa-var-thumbs-down); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o:before { content: fa-content($fa-var-heart); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sign-out:before { content: fa-content($fa-var-sign-out-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square:before { content: fa-content($fa-var-linkedin); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-thumb-tack:before { content: fa-content($fa-var-thumbtack); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-external-link:before { content: fa-content($fa-var-external-link-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sign-in:before { content: fa-content($fa-var-sign-in-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-github-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o:before { content: fa-content($fa-var-lemon); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-square-o:before { content: fa-content($fa-var-square); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o:before { content: fa-content($fa-var-bookmark); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-twitter { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook:before { content: fa-content($fa-var-facebook-f); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f:before { content: fa-content($fa-var-facebook-f); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-github { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-feed:before { content: fa-content($fa-var-rss); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o:before { content: fa-content($fa-var-hdd); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right:before { content: fa-content($fa-var-hand-point-right); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left:before { content: fa-content($fa-var-hand-point-left); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up:before { content: fa-content($fa-var-hand-point-up); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down:before { content: fa-content($fa-var-hand-point-down); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-alt:before { content: fa-content($fa-var-expand-arrows-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-group:before { content: fa-content($fa-var-users); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-chain:before { content: fa-content($fa-var-link); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-scissors:before { content: fa-content($fa-var-cut); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-files-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-files-o:before { content: fa-content($fa-var-copy); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o:before { content: fa-content($fa-var-save); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-navicon:before { content: fa-content($fa-var-bars); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-reorder:before { content: fa-content($fa-var-bars); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus:before { content: fa-content($fa-var-google-plus-g); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-money { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-money:before { content: fa-content($fa-var-money-bill-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-unsorted:before { content: fa-content($fa-var-sort); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-desc:before { content: fa-content($fa-var-sort-down); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-asc:before { content: fa-content($fa-var-sort-up); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin:before { content: fa-content($fa-var-linkedin-in); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-left:before { content: fa-content($fa-var-undo); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-legal:before { content: fa-content($fa-var-gavel); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-tachometer:before { content: fa-content($fa-var-tachometer-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-dashboard:before { content: fa-content($fa-var-tachometer-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o:before { content: fa-content($fa-var-comment); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o:before { content: fa-content($fa-var-comments); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-flash:before { content: fa-content($fa-var-bolt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-clipboard { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-paste { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-paste:before { content: fa-content($fa-var-clipboard); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o:before { content: fa-content($fa-var-lightbulb); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-exchange:before { content: fa-content($fa-var-exchange-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-download:before { content: fa-content($fa-var-cloud-download-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-upload:before { content: fa-content($fa-var-cloud-upload-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o:before { content: fa-content($fa-var-bell); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cutlery:before { content: fa-content($fa-var-utensils); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o:before { content: fa-content($fa-var-file-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-building-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-building-o:before { content: fa-content($fa-var-building); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o:before { content: fa-content($fa-var-hospital); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-tablet:before { content: fa-content($fa-var-tablet-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-mobile:before { content: fa-content($fa-var-mobile-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-mobile-phone:before { content: fa-content($fa-var-mobile-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o:before { content: fa-content($fa-var-circle); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply:before { content: fa-content($fa-var-reply); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-github-alt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o:before { content: fa-content($fa-var-folder); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o:before { content: fa-content($fa-var-folder-open); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o:before { content: fa-content($fa-var-smile); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o:before { content: fa-content($fa-var-frown); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o:before { content: fa-content($fa-var-meh); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o:before { content: fa-content($fa-var-keyboard); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o:before { content: fa-content($fa-var-flag); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply-all:before { content: fa-content($fa-var-reply-all); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o:before { content: fa-content($fa-var-star-half); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty:before { content: fa-content($fa-var-star-half); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full:before { content: fa-content($fa-var-star-half); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-code-fork:before { content: fa-content($fa-var-code-branch); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-chain-broken:before { content: fa-content($fa-var-unlink); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-shield:before { content: fa-content($fa-var-shield-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o:before { content: fa-content($fa-var-calendar); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-maxcdn { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-html5 { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-css3 { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-ticket:before { content: fa-content($fa-var-ticket-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o:before { content: fa-content($fa-var-minus-square); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-level-up:before { content: fa-content($fa-var-level-up-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-level-down:before { content: fa-content($fa-var-level-down-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square:before { content: fa-content($fa-var-pen-square); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-external-link-square:before { content: fa-content($fa-var-external-link-square-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-compass { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down:before { content: fa-content($fa-var-caret-square-down); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down:before { content: fa-content($fa-var-caret-square-down); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up:before { content: fa-content($fa-var-caret-square-up); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up:before { content: fa-content($fa-var-caret-square-up); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right:before { content: fa-content($fa-var-caret-square-right); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right:before { content: fa-content($fa-var-caret-square-right); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-eur:before { content: fa-content($fa-var-euro-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-euro:before { content: fa-content($fa-var-euro-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-gbp:before { content: fa-content($fa-var-pound-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-usd:before { content: fa-content($fa-var-dollar-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-dollar:before { content: fa-content($fa-var-dollar-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-inr:before { content: fa-content($fa-var-rupee-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-rupee:before { content: fa-content($fa-var-rupee-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-jpy:before { content: fa-content($fa-var-yen-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cny:before { content: fa-content($fa-var-yen-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-rmb:before { content: fa-content($fa-var-yen-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-yen:before { content: fa-content($fa-var-yen-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-rub:before { content: fa-content($fa-var-ruble-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-ruble:before { content: fa-content($fa-var-ruble-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-rouble:before { content: fa-content($fa-var-ruble-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-krw:before { content: fa-content($fa-var-won-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-won:before { content: fa-content($fa-var-won-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-btc { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin:before { content: fa-content($fa-var-btc); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-text:before { content: fa-content($fa-var-file-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-asc:before { content: fa-content($fa-var-sort-alpha-down); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-desc:before { content: fa-content($fa-var-sort-alpha-up); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-asc:before { content: fa-content($fa-var-sort-amount-down); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-desc:before { content: fa-content($fa-var-sort-amount-up); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-asc:before { content: fa-content($fa-var-sort-numeric-down); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-desc:before { content: fa-content($fa-var-sort-numeric-up); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-xing { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-xing-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play:before { content: fa-content($fa-var-youtube); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-dropbox { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-stack-overflow { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-instagram { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-flickr { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-adn { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square:before { content: fa-content($fa-var-bitbucket); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-down:before { content: fa-content($fa-var-long-arrow-alt-down); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-up:before { content: fa-content($fa-var-long-arrow-alt-up); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-left:before { content: fa-content($fa-var-long-arrow-alt-left); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-right:before { content: fa-content($fa-var-long-arrow-alt-right); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-apple { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-windows { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-android { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-linux { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-dribbble { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-skype { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-foursquare { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-trello { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-gratipay { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-gittip { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-gittip:before { content: fa-content($fa-var-gratipay); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o:before { content: fa-content($fa-var-sun); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o:before { content: fa-content($fa-var-moon); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-vk { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-weibo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-renren { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-pagelines { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-stack-exchange { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right:before { content: fa-content($fa-var-arrow-alt-circle-right); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left:before { content: fa-content($fa-var-arrow-alt-circle-left); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left:before { content: fa-content($fa-var-caret-square-left); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left:before { content: fa-content($fa-var-caret-square-left); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o:before { content: fa-content($fa-var-dot-circle); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-try:before { content: fa-content($fa-var-lira-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-turkish-lira:before { content: fa-content($fa-var-lira-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o:before { content: fa-content($fa-var-plus-square); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-slack { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-wordpress { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-openid { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-institution:before { content: fa-content($fa-var-university); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bank:before { content: fa-content($fa-var-university); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-mortar-board:before { content: fa-content($fa-var-graduation-cap); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-yahoo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-google { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-reddit { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-stumbleupon-circle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-stumbleupon { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-delicious { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-digg { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper-pp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper-alt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-drupal { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-joomla { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-spoon:before { content: fa-content($fa-var-utensil-spoon); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-behance { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-behance-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-steam { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-steam-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-automobile:before { content: fa-content($fa-var-car); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cab:before { content: fa-content($fa-var-taxi); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o:before { content: fa-content($fa-var-envelope); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-deviantart { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-soundcloud { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o:before { content: fa-content($fa-var-file-pdf); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o:before { content: fa-content($fa-var-file-word); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o:before { content: fa-content($fa-var-file-excel); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o:before { content: fa-content($fa-var-file-powerpoint); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o:before { content: fa-content($fa-var-file-image); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o:before { content: fa-content($fa-var-file-image); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o:before { content: fa-content($fa-var-file-image); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o:before { content: fa-content($fa-var-file-archive); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o:before { content: fa-content($fa-var-file-archive); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o:before { content: fa-content($fa-var-file-audio); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o:before { content: fa-content($fa-var-file-audio); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o:before { content: fa-content($fa-var-file-video); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o:before { content: fa-content($fa-var-file-video); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o:before { content: fa-content($fa-var-file-code); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-vine { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-codepen { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-jsfiddle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-life-ring { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-life-bouy { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-life-bouy:before { content: fa-content($fa-var-life-ring); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-life-buoy { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-life-buoy:before { content: fa-content($fa-var-life-ring); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-life-saver { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-life-saver:before { content: fa-content($fa-var-life-ring); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-support { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-support:before { content: fa-content($fa-var-life-ring); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o-notch:before { content: fa-content($fa-var-circle-notch); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-rebel { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-ra { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-ra:before { content: fa-content($fa-var-rebel); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-resistance { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-resistance:before { content: fa-content($fa-var-rebel); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-empire { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-ge { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-ge:before { content: fa-content($fa-var-empire); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-git-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-git { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hacker-news { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square:before { content: fa-content($fa-var-hacker-news); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square:before { content: fa-content($fa-var-hacker-news); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-tencent-weibo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-qq { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-weixin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-wechat { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-wechat:before { content: fa-content($fa-var-weixin); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-send:before { content: fa-content($fa-var-paper-plane); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o:before { content: fa-content($fa-var-paper-plane); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-send-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-send-o:before { content: fa-content($fa-var-paper-plane); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin:before { content: fa-content($fa-var-circle); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-header:before { content: fa-content($fa-var-heading); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sliders:before { content: fa-content($fa-var-sliders-h); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o:before { content: fa-content($fa-var-futbol); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o:before { content: fa-content($fa-var-futbol); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-slideshare { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-twitch { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-yelp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o:before { content: fa-content($fa-var-newspaper); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-paypal { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-google-wallet { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-visa { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-mastercard { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-discover { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-amex { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-paypal { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-stripe { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o:before { content: fa-content($fa-var-bell-slash); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-trash:before { content: fa-content($fa-var-trash-alt); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-copyright { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-eyedropper:before { content: fa-content($fa-var-eye-dropper); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-area-chart:before { content: fa-content($fa-var-chart-area); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-pie-chart:before { content: fa-content($fa-var-chart-pie); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-line-chart:before { content: fa-content($fa-var-chart-line); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-ioxhost { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-angellist { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cc { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-cc:before { content: fa-content($fa-var-closed-captioning); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-ils:before { content: fa-content($fa-var-shekel-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-shekel:before { content: fa-content($fa-var-shekel-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sheqel:before { content: fa-content($fa-var-shekel-sign); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-meanpath { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-meanpath:before { content: fa-content($fa-var-font-awesome); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-buysellads { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-connectdevelop { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-dashcube { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-forumbee { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-leanpub { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sellsy { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-shirtsinbulk { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-simplybuilt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-skyatlas { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-diamond { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-diamond:before { content: fa-content($fa-var-gem); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-intersex:before { content: fa-content($fa-var-transgender); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official:before { content: fa-content($fa-var-facebook); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-p { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-whatsapp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hotel:before { content: fa-content($fa-var-bed); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-viacoin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-medium { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-yc { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-yc:before { content: fa-content($fa-var-y-combinator); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-optin-monster { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-opencart { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-expeditedssl { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-4:before { content: fa-content($fa-var-battery-full); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-battery:before { content: fa-content($fa-var-battery-full); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-3:before { content: fa-content($fa-var-battery-three-quarters); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-2:before { content: fa-content($fa-var-battery-half); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-1:before { content: fa-content($fa-var-battery-quarter); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-0:before { content: fa-content($fa-var-battery-empty); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-object-group { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-object-ungroup { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o:before { content: fa-content($fa-var-sticky-note); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-jcb { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-diners-club { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-clone { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-o:before { content: fa-content($fa-var-hourglass); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-1:before { content: fa-content($fa-var-hourglass-start); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-2:before { content: fa-content($fa-var-hourglass-half); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-3:before { content: fa-content($fa-var-hourglass-end); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o:before { content: fa-content($fa-var-hand-rock); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o:before { content: fa-content($fa-var-hand-rock); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o:before { content: fa-content($fa-var-hand-paper); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o:before { content: fa-content($fa-var-hand-paper); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o:before { content: fa-content($fa-var-hand-scissors); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o:before { content: fa-content($fa-var-hand-lizard); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o:before { content: fa-content($fa-var-hand-spock); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o:before { content: fa-content($fa-var-hand-pointer); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o:before { content: fa-content($fa-var-hand-peace); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-registered { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-creative-commons { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-gg { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-gg-circle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-tripadvisor { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-get-pocket { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-wikipedia-w { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-safari { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-chrome { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-firefox { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-opera { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-internet-explorer { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-television:before { content: fa-content($fa-var-tv); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-contao { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-500px { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-amazon { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o:before { content: fa-content($fa-var-calendar-plus); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o:before { content: fa-content($fa-var-calendar-minus); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o:before { content: fa-content($fa-var-calendar-times); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o:before { content: fa-content($fa-var-calendar-check); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-map-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-map-o:before { content: fa-content($fa-var-map); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting:before { content: fa-content($fa-var-comment-dots); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o:before { content: fa-content($fa-var-comment-dots); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-houzz { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo:before { content: fa-content($fa-var-vimeo-v); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-black-tie { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-fonticons { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-alien { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-edge { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card-alt:before { content: fa-content($fa-var-credit-card); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-codiepie { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-modx { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-fort-awesome { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-usb { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-product-hunt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-mixcloud { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-scribd { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o:before { content: fa-content($fa-var-pause-circle); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o:before { content: fa-content($fa-var-stop-circle); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bluetooth { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bluetooth-b { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-gitlab { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-wpbeginner { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-wpforms { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-envira { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt:before { content: fa-content($fa-var-accessible-icon); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o:before { content: fa-content($fa-var-question-circle); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-volume-control-phone:before { content: fa-content($fa-var-phone-volume); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-asl-interpreting:before { content: fa-content($fa-var-american-sign-language-interpreting); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-deafness:before { content: fa-content($fa-var-deaf); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-hard-of-hearing:before { content: fa-content($fa-var-deaf); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-glide { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-glide-g { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-signing:before { content: fa-content($fa-var-sign-language); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-ghost { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-first-order { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-yoast { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-themeisle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official:before { content: fa-content($fa-var-google-plus); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle:before { content: fa-content($fa-var-google-plus); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-font-awesome { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-fa { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-fa:before { content: fa-content($fa-var-font-awesome); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o:before { content: fa-content($fa-var-handshake); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o:before { content: fa-content($fa-var-envelope-open); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-linode { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o:before { content: fa-content($fa-var-address-book); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-vcard:before { content: fa-content($fa-var-address-card); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o:before { content: fa-content($fa-var-address-card); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o:before { content: fa-content($fa-var-address-card); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o:before { content: fa-content($fa-var-user-circle); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-user-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-user-o:before { content: fa-content($fa-var-user); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-id-badge { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license:before { content: fa-content($fa-var-id-card); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o:before { content: fa-content($fa-var-id-card); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o:before { content: fa-content($fa-var-id-card); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-quora { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-free-code-camp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-telegram { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-4:before { content: fa-content($fa-var-thermometer-full); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer:before { content: fa-content($fa-var-thermometer-full); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-3:before { content: fa-content($fa-var-thermometer-three-quarters); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-2:before { content: fa-content($fa-var-thermometer-half); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-1:before { content: fa-content($fa-var-thermometer-quarter); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-0:before { content: fa-content($fa-var-thermometer-empty); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bathtub:before { content: fa-content($fa-var-bath); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-s15:before { content: fa-content($fa-var-bath); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-window-maximize { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-window-restore { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle:before { content: fa-content($fa-var-window-close); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o:before { content: fa-content($fa-var-window-close); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o:before { content: fa-content($fa-var-window-close); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-bandcamp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-grav { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-etsy { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-imdb { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-ravelry { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-eercast { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-eercast:before { content: fa-content($fa-var-sellcast); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} +.#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o:before { content: fa-content($fa-var-snowflake); } + +.#{$fa-css-prefix}.#{$fa-css-prefix}-superpowers { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-wpexplorer { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + +.#{$fa-css-prefix}.#{$fa-css-prefix}-spotify { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; +} + diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_stacked.scss b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_stacked.scss new file mode 100644 index 0000000000..6c09d84cd1 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_stacked.scss @@ -0,0 +1,31 @@ +// Stacked Icons +// ------------------------- + +.#{$fa-css-prefix}-stack { + display: inline-block; + height: 2em; + line-height: 2em; + position: relative; + vertical-align: middle; + width: 2em; +} + +.#{$fa-css-prefix}-stack-1x, +.#{$fa-css-prefix}-stack-2x { + left: 0; + position: absolute; + text-align: center; + width: 100%; +} + +.#{$fa-css-prefix}-stack-1x { + line-height: inherit; +} + +.#{$fa-css-prefix}-stack-2x { + font-size: 2em; +} + +.#{$fa-css-prefix}-inverse { + color: $fa-inverse; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_variables.scss b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_variables.scss new file mode 100644 index 0000000000..6100eebcff --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/_variables.scss @@ -0,0 +1,1128 @@ +// Variables +// -------------------------- + +$fa-font-path: "../webfonts" !default; +$fa-font-size-base: 16px !default; +$fa-css-prefix: fa !default; +$fa-version: "5.1.1" !default; +$fa-border-color: #eee !default; +$fa-inverse: #fff !default; +$fa-li-width: 2em !default; + +// Convenience function used to set content property +@function fa-content($fa-var) { + @return unquote("\"#{ $fa-var }\""); +} + +$fa-var-500px: \f26e; +$fa-var-accessible-icon: \f368; +$fa-var-accusoft: \f369; +$fa-var-address-book: \f2b9; +$fa-var-address-card: \f2bb; +$fa-var-adjust: \f042; +$fa-var-adn: \f170; +$fa-var-adversal: \f36a; +$fa-var-affiliatetheme: \f36b; +$fa-var-algolia: \f36c; +$fa-var-align-center: \f037; +$fa-var-align-justify: \f039; +$fa-var-align-left: \f036; +$fa-var-align-right: \f038; +$fa-var-allergies: \f461; +$fa-var-amazon: \f270; +$fa-var-amazon-pay: \f42c; +$fa-var-ambulance: \f0f9; +$fa-var-american-sign-language-interpreting: \f2a3; +$fa-var-amilia: \f36d; +$fa-var-anchor: \f13d; +$fa-var-android: \f17b; +$fa-var-angellist: \f209; +$fa-var-angle-double-down: \f103; +$fa-var-angle-double-left: \f100; +$fa-var-angle-double-right: \f101; +$fa-var-angle-double-up: \f102; +$fa-var-angle-down: \f107; +$fa-var-angle-left: \f104; +$fa-var-angle-right: \f105; +$fa-var-angle-up: \f106; +$fa-var-angry: \f556; +$fa-var-angrycreative: \f36e; +$fa-var-angular: \f420; +$fa-var-app-store: \f36f; +$fa-var-app-store-ios: \f370; +$fa-var-apper: \f371; +$fa-var-apple: \f179; +$fa-var-apple-pay: \f415; +$fa-var-archive: \f187; +$fa-var-archway: \f557; +$fa-var-arrow-alt-circle-down: \f358; +$fa-var-arrow-alt-circle-left: \f359; +$fa-var-arrow-alt-circle-right: \f35a; +$fa-var-arrow-alt-circle-up: \f35b; +$fa-var-arrow-circle-down: \f0ab; +$fa-var-arrow-circle-left: \f0a8; +$fa-var-arrow-circle-right: \f0a9; +$fa-var-arrow-circle-up: \f0aa; +$fa-var-arrow-down: \f063; +$fa-var-arrow-left: \f060; +$fa-var-arrow-right: \f061; +$fa-var-arrow-up: \f062; +$fa-var-arrows-alt: \f0b2; +$fa-var-arrows-alt-h: \f337; +$fa-var-arrows-alt-v: \f338; +$fa-var-assistive-listening-systems: \f2a2; +$fa-var-asterisk: \f069; +$fa-var-asymmetrik: \f372; +$fa-var-at: \f1fa; +$fa-var-atlas: \f558; +$fa-var-audible: \f373; +$fa-var-audio-description: \f29e; +$fa-var-autoprefixer: \f41c; +$fa-var-avianex: \f374; +$fa-var-aviato: \f421; +$fa-var-award: \f559; +$fa-var-aws: \f375; +$fa-var-backspace: \f55a; +$fa-var-backward: \f04a; +$fa-var-balance-scale: \f24e; +$fa-var-ban: \f05e; +$fa-var-band-aid: \f462; +$fa-var-bandcamp: \f2d5; +$fa-var-barcode: \f02a; +$fa-var-bars: \f0c9; +$fa-var-baseball-ball: \f433; +$fa-var-basketball-ball: \f434; +$fa-var-bath: \f2cd; +$fa-var-battery-empty: \f244; +$fa-var-battery-full: \f240; +$fa-var-battery-half: \f242; +$fa-var-battery-quarter: \f243; +$fa-var-battery-three-quarters: \f241; +$fa-var-bed: \f236; +$fa-var-beer: \f0fc; +$fa-var-behance: \f1b4; +$fa-var-behance-square: \f1b5; +$fa-var-bell: \f0f3; +$fa-var-bell-slash: \f1f6; +$fa-var-bezier-curve: \f55b; +$fa-var-bicycle: \f206; +$fa-var-bimobject: \f378; +$fa-var-binoculars: \f1e5; +$fa-var-birthday-cake: \f1fd; +$fa-var-bitbucket: \f171; +$fa-var-bitcoin: \f379; +$fa-var-bity: \f37a; +$fa-var-black-tie: \f27e; +$fa-var-blackberry: \f37b; +$fa-var-blender: \f517; +$fa-var-blind: \f29d; +$fa-var-blogger: \f37c; +$fa-var-blogger-b: \f37d; +$fa-var-bluetooth: \f293; +$fa-var-bluetooth-b: \f294; +$fa-var-bold: \f032; +$fa-var-bolt: \f0e7; +$fa-var-bomb: \f1e2; +$fa-var-bong: \f55c; +$fa-var-book: \f02d; +$fa-var-book-open: \f518; +$fa-var-bookmark: \f02e; +$fa-var-bowling-ball: \f436; +$fa-var-box: \f466; +$fa-var-box-open: \f49e; +$fa-var-boxes: \f468; +$fa-var-braille: \f2a1; +$fa-var-briefcase: \f0b1; +$fa-var-briefcase-medical: \f469; +$fa-var-broadcast-tower: \f519; +$fa-var-broom: \f51a; +$fa-var-brush: \f55d; +$fa-var-btc: \f15a; +$fa-var-bug: \f188; +$fa-var-building: \f1ad; +$fa-var-bullhorn: \f0a1; +$fa-var-bullseye: \f140; +$fa-var-burn: \f46a; +$fa-var-buromobelexperte: \f37f; +$fa-var-bus: \f207; +$fa-var-bus-alt: \f55e; +$fa-var-buysellads: \f20d; +$fa-var-calculator: \f1ec; +$fa-var-calendar: \f133; +$fa-var-calendar-alt: \f073; +$fa-var-calendar-check: \f274; +$fa-var-calendar-minus: \f272; +$fa-var-calendar-plus: \f271; +$fa-var-calendar-times: \f273; +$fa-var-camera: \f030; +$fa-var-camera-retro: \f083; +$fa-var-cannabis: \f55f; +$fa-var-capsules: \f46b; +$fa-var-car: \f1b9; +$fa-var-caret-down: \f0d7; +$fa-var-caret-left: \f0d9; +$fa-var-caret-right: \f0da; +$fa-var-caret-square-down: \f150; +$fa-var-caret-square-left: \f191; +$fa-var-caret-square-right: \f152; +$fa-var-caret-square-up: \f151; +$fa-var-caret-up: \f0d8; +$fa-var-cart-arrow-down: \f218; +$fa-var-cart-plus: \f217; +$fa-var-cc-amazon-pay: \f42d; +$fa-var-cc-amex: \f1f3; +$fa-var-cc-apple-pay: \f416; +$fa-var-cc-diners-club: \f24c; +$fa-var-cc-discover: \f1f2; +$fa-var-cc-jcb: \f24b; +$fa-var-cc-mastercard: \f1f1; +$fa-var-cc-paypal: \f1f4; +$fa-var-cc-stripe: \f1f5; +$fa-var-cc-visa: \f1f0; +$fa-var-centercode: \f380; +$fa-var-certificate: \f0a3; +$fa-var-chalkboard: \f51b; +$fa-var-chalkboard-teacher: \f51c; +$fa-var-chart-area: \f1fe; +$fa-var-chart-bar: \f080; +$fa-var-chart-line: \f201; +$fa-var-chart-pie: \f200; +$fa-var-check: \f00c; +$fa-var-check-circle: \f058; +$fa-var-check-double: \f560; +$fa-var-check-square: \f14a; +$fa-var-chess: \f439; +$fa-var-chess-bishop: \f43a; +$fa-var-chess-board: \f43c; +$fa-var-chess-king: \f43f; +$fa-var-chess-knight: \f441; +$fa-var-chess-pawn: \f443; +$fa-var-chess-queen: \f445; +$fa-var-chess-rook: \f447; +$fa-var-chevron-circle-down: \f13a; +$fa-var-chevron-circle-left: \f137; +$fa-var-chevron-circle-right: \f138; +$fa-var-chevron-circle-up: \f139; +$fa-var-chevron-down: \f078; +$fa-var-chevron-left: \f053; +$fa-var-chevron-right: \f054; +$fa-var-chevron-up: \f077; +$fa-var-child: \f1ae; +$fa-var-chrome: \f268; +$fa-var-church: \f51d; +$fa-var-circle: \f111; +$fa-var-circle-notch: \f1ce; +$fa-var-clipboard: \f328; +$fa-var-clipboard-check: \f46c; +$fa-var-clipboard-list: \f46d; +$fa-var-clock: \f017; +$fa-var-clone: \f24d; +$fa-var-closed-captioning: \f20a; +$fa-var-cloud: \f0c2; +$fa-var-cloud-download-alt: \f381; +$fa-var-cloud-upload-alt: \f382; +$fa-var-cloudscale: \f383; +$fa-var-cloudsmith: \f384; +$fa-var-cloudversify: \f385; +$fa-var-cocktail: \f561; +$fa-var-code: \f121; +$fa-var-code-branch: \f126; +$fa-var-codepen: \f1cb; +$fa-var-codiepie: \f284; +$fa-var-coffee: \f0f4; +$fa-var-cog: \f013; +$fa-var-cogs: \f085; +$fa-var-coins: \f51e; +$fa-var-columns: \f0db; +$fa-var-comment: \f075; +$fa-var-comment-alt: \f27a; +$fa-var-comment-dots: \f4ad; +$fa-var-comment-slash: \f4b3; +$fa-var-comments: \f086; +$fa-var-compact-disc: \f51f; +$fa-var-compass: \f14e; +$fa-var-compress: \f066; +$fa-var-concierge-bell: \f562; +$fa-var-connectdevelop: \f20e; +$fa-var-contao: \f26d; +$fa-var-cookie: \f563; +$fa-var-cookie-bite: \f564; +$fa-var-copy: \f0c5; +$fa-var-copyright: \f1f9; +$fa-var-couch: \f4b8; +$fa-var-cpanel: \f388; +$fa-var-creative-commons: \f25e; +$fa-var-creative-commons-by: \f4e7; +$fa-var-creative-commons-nc: \f4e8; +$fa-var-creative-commons-nc-eu: \f4e9; +$fa-var-creative-commons-nc-jp: \f4ea; +$fa-var-creative-commons-nd: \f4eb; +$fa-var-creative-commons-pd: \f4ec; +$fa-var-creative-commons-pd-alt: \f4ed; +$fa-var-creative-commons-remix: \f4ee; +$fa-var-creative-commons-sa: \f4ef; +$fa-var-creative-commons-sampling: \f4f0; +$fa-var-creative-commons-sampling-plus: \f4f1; +$fa-var-creative-commons-share: \f4f2; +$fa-var-credit-card: \f09d; +$fa-var-crop: \f125; +$fa-var-crop-alt: \f565; +$fa-var-crosshairs: \f05b; +$fa-var-crow: \f520; +$fa-var-crown: \f521; +$fa-var-css3: \f13c; +$fa-var-css3-alt: \f38b; +$fa-var-cube: \f1b2; +$fa-var-cubes: \f1b3; +$fa-var-cut: \f0c4; +$fa-var-cuttlefish: \f38c; +$fa-var-d-and-d: \f38d; +$fa-var-dashcube: \f210; +$fa-var-database: \f1c0; +$fa-var-deaf: \f2a4; +$fa-var-delicious: \f1a5; +$fa-var-deploydog: \f38e; +$fa-var-deskpro: \f38f; +$fa-var-desktop: \f108; +$fa-var-deviantart: \f1bd; +$fa-var-diagnoses: \f470; +$fa-var-dice: \f522; +$fa-var-dice-five: \f523; +$fa-var-dice-four: \f524; +$fa-var-dice-one: \f525; +$fa-var-dice-six: \f526; +$fa-var-dice-three: \f527; +$fa-var-dice-two: \f528; +$fa-var-digg: \f1a6; +$fa-var-digital-ocean: \f391; +$fa-var-digital-tachograph: \f566; +$fa-var-discord: \f392; +$fa-var-discourse: \f393; +$fa-var-divide: \f529; +$fa-var-dizzy: \f567; +$fa-var-dna: \f471; +$fa-var-dochub: \f394; +$fa-var-docker: \f395; +$fa-var-dollar-sign: \f155; +$fa-var-dolly: \f472; +$fa-var-dolly-flatbed: \f474; +$fa-var-donate: \f4b9; +$fa-var-door-closed: \f52a; +$fa-var-door-open: \f52b; +$fa-var-dot-circle: \f192; +$fa-var-dove: \f4ba; +$fa-var-download: \f019; +$fa-var-draft2digital: \f396; +$fa-var-drafting-compass: \f568; +$fa-var-dribbble: \f17d; +$fa-var-dribbble-square: \f397; +$fa-var-dropbox: \f16b; +$fa-var-drum: \f569; +$fa-var-drum-steelpan: \f56a; +$fa-var-drupal: \f1a9; +$fa-var-dumbbell: \f44b; +$fa-var-dyalog: \f399; +$fa-var-earlybirds: \f39a; +$fa-var-ebay: \f4f4; +$fa-var-edge: \f282; +$fa-var-edit: \f044; +$fa-var-eject: \f052; +$fa-var-elementor: \f430; +$fa-var-ellipsis-h: \f141; +$fa-var-ellipsis-v: \f142; +$fa-var-ember: \f423; +$fa-var-empire: \f1d1; +$fa-var-envelope: \f0e0; +$fa-var-envelope-open: \f2b6; +$fa-var-envelope-square: \f199; +$fa-var-envira: \f299; +$fa-var-equals: \f52c; +$fa-var-eraser: \f12d; +$fa-var-erlang: \f39d; +$fa-var-ethereum: \f42e; +$fa-var-etsy: \f2d7; +$fa-var-euro-sign: \f153; +$fa-var-exchange-alt: \f362; +$fa-var-exclamation: \f12a; +$fa-var-exclamation-circle: \f06a; +$fa-var-exclamation-triangle: \f071; +$fa-var-expand: \f065; +$fa-var-expand-arrows-alt: \f31e; +$fa-var-expeditedssl: \f23e; +$fa-var-external-link-alt: \f35d; +$fa-var-external-link-square-alt: \f360; +$fa-var-eye: \f06e; +$fa-var-eye-dropper: \f1fb; +$fa-var-eye-slash: \f070; +$fa-var-facebook: \f09a; +$fa-var-facebook-f: \f39e; +$fa-var-facebook-messenger: \f39f; +$fa-var-facebook-square: \f082; +$fa-var-fast-backward: \f049; +$fa-var-fast-forward: \f050; +$fa-var-fax: \f1ac; +$fa-var-feather: \f52d; +$fa-var-feather-alt: \f56b; +$fa-var-female: \f182; +$fa-var-fighter-jet: \f0fb; +$fa-var-file: \f15b; +$fa-var-file-alt: \f15c; +$fa-var-file-archive: \f1c6; +$fa-var-file-audio: \f1c7; +$fa-var-file-code: \f1c9; +$fa-var-file-contract: \f56c; +$fa-var-file-download: \f56d; +$fa-var-file-excel: \f1c3; +$fa-var-file-export: \f56e; +$fa-var-file-image: \f1c5; +$fa-var-file-import: \f56f; +$fa-var-file-invoice: \f570; +$fa-var-file-invoice-dollar: \f571; +$fa-var-file-medical: \f477; +$fa-var-file-medical-alt: \f478; +$fa-var-file-pdf: \f1c1; +$fa-var-file-powerpoint: \f1c4; +$fa-var-file-prescription: \f572; +$fa-var-file-signature: \f573; +$fa-var-file-upload: \f574; +$fa-var-file-video: \f1c8; +$fa-var-file-word: \f1c2; +$fa-var-fill: \f575; +$fa-var-fill-drip: \f576; +$fa-var-film: \f008; +$fa-var-filter: \f0b0; +$fa-var-fingerprint: \f577; +$fa-var-fire: \f06d; +$fa-var-fire-extinguisher: \f134; +$fa-var-firefox: \f269; +$fa-var-first-aid: \f479; +$fa-var-first-order: \f2b0; +$fa-var-first-order-alt: \f50a; +$fa-var-firstdraft: \f3a1; +$fa-var-fish: \f578; +$fa-var-flag: \f024; +$fa-var-flag-checkered: \f11e; +$fa-var-flask: \f0c3; +$fa-var-flickr: \f16e; +$fa-var-flipboard: \f44d; +$fa-var-flushed: \f579; +$fa-var-fly: \f417; +$fa-var-folder: \f07b; +$fa-var-folder-open: \f07c; +$fa-var-font: \f031; +$fa-var-font-awesome: \f2b4; +$fa-var-font-awesome-alt: \f35c; +$fa-var-font-awesome-flag: \f425; +$fa-var-font-awesome-logo-full: \f4e6; +$fa-var-fonticons: \f280; +$fa-var-fonticons-fi: \f3a2; +$fa-var-football-ball: \f44e; +$fa-var-fort-awesome: \f286; +$fa-var-fort-awesome-alt: \f3a3; +$fa-var-forumbee: \f211; +$fa-var-forward: \f04e; +$fa-var-foursquare: \f180; +$fa-var-free-code-camp: \f2c5; +$fa-var-freebsd: \f3a4; +$fa-var-frog: \f52e; +$fa-var-frown: \f119; +$fa-var-frown-open: \f57a; +$fa-var-fulcrum: \f50b; +$fa-var-futbol: \f1e3; +$fa-var-galactic-republic: \f50c; +$fa-var-galactic-senate: \f50d; +$fa-var-gamepad: \f11b; +$fa-var-gas-pump: \f52f; +$fa-var-gavel: \f0e3; +$fa-var-gem: \f3a5; +$fa-var-genderless: \f22d; +$fa-var-get-pocket: \f265; +$fa-var-gg: \f260; +$fa-var-gg-circle: \f261; +$fa-var-gift: \f06b; +$fa-var-git: \f1d3; +$fa-var-git-square: \f1d2; +$fa-var-github: \f09b; +$fa-var-github-alt: \f113; +$fa-var-github-square: \f092; +$fa-var-gitkraken: \f3a6; +$fa-var-gitlab: \f296; +$fa-var-gitter: \f426; +$fa-var-glass-martini: \f000; +$fa-var-glass-martini-alt: \f57b; +$fa-var-glasses: \f530; +$fa-var-glide: \f2a5; +$fa-var-glide-g: \f2a6; +$fa-var-globe: \f0ac; +$fa-var-globe-africa: \f57c; +$fa-var-globe-americas: \f57d; +$fa-var-globe-asia: \f57e; +$fa-var-gofore: \f3a7; +$fa-var-golf-ball: \f450; +$fa-var-goodreads: \f3a8; +$fa-var-goodreads-g: \f3a9; +$fa-var-google: \f1a0; +$fa-var-google-drive: \f3aa; +$fa-var-google-play: \f3ab; +$fa-var-google-plus: \f2b3; +$fa-var-google-plus-g: \f0d5; +$fa-var-google-plus-square: \f0d4; +$fa-var-google-wallet: \f1ee; +$fa-var-graduation-cap: \f19d; +$fa-var-gratipay: \f184; +$fa-var-grav: \f2d6; +$fa-var-greater-than: \f531; +$fa-var-greater-than-equal: \f532; +$fa-var-grimace: \f57f; +$fa-var-grin: \f580; +$fa-var-grin-alt: \f581; +$fa-var-grin-beam: \f582; +$fa-var-grin-beam-sweat: \f583; +$fa-var-grin-hearts: \f584; +$fa-var-grin-squint: \f585; +$fa-var-grin-squint-tears: \f586; +$fa-var-grin-stars: \f587; +$fa-var-grin-tears: \f588; +$fa-var-grin-tongue: \f589; +$fa-var-grin-tongue-squint: \f58a; +$fa-var-grin-tongue-wink: \f58b; +$fa-var-grin-wink: \f58c; +$fa-var-grip-horizontal: \f58d; +$fa-var-grip-vertical: \f58e; +$fa-var-gripfire: \f3ac; +$fa-var-grunt: \f3ad; +$fa-var-gulp: \f3ae; +$fa-var-h-square: \f0fd; +$fa-var-hacker-news: \f1d4; +$fa-var-hacker-news-square: \f3af; +$fa-var-hand-holding: \f4bd; +$fa-var-hand-holding-heart: \f4be; +$fa-var-hand-holding-usd: \f4c0; +$fa-var-hand-lizard: \f258; +$fa-var-hand-paper: \f256; +$fa-var-hand-peace: \f25b; +$fa-var-hand-point-down: \f0a7; +$fa-var-hand-point-left: \f0a5; +$fa-var-hand-point-right: \f0a4; +$fa-var-hand-point-up: \f0a6; +$fa-var-hand-pointer: \f25a; +$fa-var-hand-rock: \f255; +$fa-var-hand-scissors: \f257; +$fa-var-hand-spock: \f259; +$fa-var-hands: \f4c2; +$fa-var-hands-helping: \f4c4; +$fa-var-handshake: \f2b5; +$fa-var-hashtag: \f292; +$fa-var-hdd: \f0a0; +$fa-var-heading: \f1dc; +$fa-var-headphones: \f025; +$fa-var-headphones-alt: \f58f; +$fa-var-headset: \f590; +$fa-var-heart: \f004; +$fa-var-heartbeat: \f21e; +$fa-var-helicopter: \f533; +$fa-var-highlighter: \f591; +$fa-var-hips: \f452; +$fa-var-hire-a-helper: \f3b0; +$fa-var-history: \f1da; +$fa-var-hockey-puck: \f453; +$fa-var-home: \f015; +$fa-var-hooli: \f427; +$fa-var-hornbill: \f592; +$fa-var-hospital: \f0f8; +$fa-var-hospital-alt: \f47d; +$fa-var-hospital-symbol: \f47e; +$fa-var-hot-tub: \f593; +$fa-var-hotel: \f594; +$fa-var-hotjar: \f3b1; +$fa-var-hourglass: \f254; +$fa-var-hourglass-end: \f253; +$fa-var-hourglass-half: \f252; +$fa-var-hourglass-start: \f251; +$fa-var-houzz: \f27c; +$fa-var-html5: \f13b; +$fa-var-hubspot: \f3b2; +$fa-var-i-cursor: \f246; +$fa-var-id-badge: \f2c1; +$fa-var-id-card: \f2c2; +$fa-var-id-card-alt: \f47f; +$fa-var-image: \f03e; +$fa-var-images: \f302; +$fa-var-imdb: \f2d8; +$fa-var-inbox: \f01c; +$fa-var-indent: \f03c; +$fa-var-industry: \f275; +$fa-var-infinity: \f534; +$fa-var-info: \f129; +$fa-var-info-circle: \f05a; +$fa-var-instagram: \f16d; +$fa-var-internet-explorer: \f26b; +$fa-var-ioxhost: \f208; +$fa-var-italic: \f033; +$fa-var-itunes: \f3b4; +$fa-var-itunes-note: \f3b5; +$fa-var-java: \f4e4; +$fa-var-jedi-order: \f50e; +$fa-var-jenkins: \f3b6; +$fa-var-joget: \f3b7; +$fa-var-joint: \f595; +$fa-var-joomla: \f1aa; +$fa-var-js: \f3b8; +$fa-var-js-square: \f3b9; +$fa-var-jsfiddle: \f1cc; +$fa-var-key: \f084; +$fa-var-keybase: \f4f5; +$fa-var-keyboard: \f11c; +$fa-var-keycdn: \f3ba; +$fa-var-kickstarter: \f3bb; +$fa-var-kickstarter-k: \f3bc; +$fa-var-kiss: \f596; +$fa-var-kiss-beam: \f597; +$fa-var-kiss-wink-heart: \f598; +$fa-var-kiwi-bird: \f535; +$fa-var-korvue: \f42f; +$fa-var-language: \f1ab; +$fa-var-laptop: \f109; +$fa-var-laravel: \f3bd; +$fa-var-lastfm: \f202; +$fa-var-lastfm-square: \f203; +$fa-var-laugh: \f599; +$fa-var-laugh-beam: \f59a; +$fa-var-laugh-squint: \f59b; +$fa-var-laugh-wink: \f59c; +$fa-var-leaf: \f06c; +$fa-var-leanpub: \f212; +$fa-var-lemon: \f094; +$fa-var-less: \f41d; +$fa-var-less-than: \f536; +$fa-var-less-than-equal: \f537; +$fa-var-level-down-alt: \f3be; +$fa-var-level-up-alt: \f3bf; +$fa-var-life-ring: \f1cd; +$fa-var-lightbulb: \f0eb; +$fa-var-line: \f3c0; +$fa-var-link: \f0c1; +$fa-var-linkedin: \f08c; +$fa-var-linkedin-in: \f0e1; +$fa-var-linode: \f2b8; +$fa-var-linux: \f17c; +$fa-var-lira-sign: \f195; +$fa-var-list: \f03a; +$fa-var-list-alt: \f022; +$fa-var-list-ol: \f0cb; +$fa-var-list-ul: \f0ca; +$fa-var-location-arrow: \f124; +$fa-var-lock: \f023; +$fa-var-lock-open: \f3c1; +$fa-var-long-arrow-alt-down: \f309; +$fa-var-long-arrow-alt-left: \f30a; +$fa-var-long-arrow-alt-right: \f30b; +$fa-var-long-arrow-alt-up: \f30c; +$fa-var-low-vision: \f2a8; +$fa-var-luggage-cart: \f59d; +$fa-var-lyft: \f3c3; +$fa-var-magento: \f3c4; +$fa-var-magic: \f0d0; +$fa-var-magnet: \f076; +$fa-var-mailchimp: \f59e; +$fa-var-male: \f183; +$fa-var-mandalorian: \f50f; +$fa-var-map: \f279; +$fa-var-map-marked: \f59f; +$fa-var-map-marked-alt: \f5a0; +$fa-var-map-marker: \f041; +$fa-var-map-marker-alt: \f3c5; +$fa-var-map-pin: \f276; +$fa-var-map-signs: \f277; +$fa-var-marker: \f5a1; +$fa-var-mars: \f222; +$fa-var-mars-double: \f227; +$fa-var-mars-stroke: \f229; +$fa-var-mars-stroke-h: \f22b; +$fa-var-mars-stroke-v: \f22a; +$fa-var-mastodon: \f4f6; +$fa-var-maxcdn: \f136; +$fa-var-medal: \f5a2; +$fa-var-medapps: \f3c6; +$fa-var-medium: \f23a; +$fa-var-medium-m: \f3c7; +$fa-var-medkit: \f0fa; +$fa-var-medrt: \f3c8; +$fa-var-meetup: \f2e0; +$fa-var-megaport: \f5a3; +$fa-var-meh: \f11a; +$fa-var-meh-blank: \f5a4; +$fa-var-meh-rolling-eyes: \f5a5; +$fa-var-memory: \f538; +$fa-var-mercury: \f223; +$fa-var-microchip: \f2db; +$fa-var-microphone: \f130; +$fa-var-microphone-alt: \f3c9; +$fa-var-microphone-alt-slash: \f539; +$fa-var-microphone-slash: \f131; +$fa-var-microsoft: \f3ca; +$fa-var-minus: \f068; +$fa-var-minus-circle: \f056; +$fa-var-minus-square: \f146; +$fa-var-mix: \f3cb; +$fa-var-mixcloud: \f289; +$fa-var-mizuni: \f3cc; +$fa-var-mobile: \f10b; +$fa-var-mobile-alt: \f3cd; +$fa-var-modx: \f285; +$fa-var-monero: \f3d0; +$fa-var-money-bill: \f0d6; +$fa-var-money-bill-alt: \f3d1; +$fa-var-money-bill-wave: \f53a; +$fa-var-money-bill-wave-alt: \f53b; +$fa-var-money-check: \f53c; +$fa-var-money-check-alt: \f53d; +$fa-var-monument: \f5a6; +$fa-var-moon: \f186; +$fa-var-mortar-pestle: \f5a7; +$fa-var-motorcycle: \f21c; +$fa-var-mouse-pointer: \f245; +$fa-var-music: \f001; +$fa-var-napster: \f3d2; +$fa-var-neuter: \f22c; +$fa-var-newspaper: \f1ea; +$fa-var-nimblr: \f5a8; +$fa-var-nintendo-switch: \f418; +$fa-var-node: \f419; +$fa-var-node-js: \f3d3; +$fa-var-not-equal: \f53e; +$fa-var-notes-medical: \f481; +$fa-var-npm: \f3d4; +$fa-var-ns8: \f3d5; +$fa-var-nutritionix: \f3d6; +$fa-var-object-group: \f247; +$fa-var-object-ungroup: \f248; +$fa-var-odnoklassniki: \f263; +$fa-var-odnoklassniki-square: \f264; +$fa-var-old-republic: \f510; +$fa-var-opencart: \f23d; +$fa-var-openid: \f19b; +$fa-var-opera: \f26a; +$fa-var-optin-monster: \f23c; +$fa-var-osi: \f41a; +$fa-var-outdent: \f03b; +$fa-var-page4: \f3d7; +$fa-var-pagelines: \f18c; +$fa-var-paint-brush: \f1fc; +$fa-var-paint-roller: \f5aa; +$fa-var-palette: \f53f; +$fa-var-palfed: \f3d8; +$fa-var-pallet: \f482; +$fa-var-paper-plane: \f1d8; +$fa-var-paperclip: \f0c6; +$fa-var-parachute-box: \f4cd; +$fa-var-paragraph: \f1dd; +$fa-var-parking: \f540; +$fa-var-passport: \f5ab; +$fa-var-paste: \f0ea; +$fa-var-patreon: \f3d9; +$fa-var-pause: \f04c; +$fa-var-pause-circle: \f28b; +$fa-var-paw: \f1b0; +$fa-var-paypal: \f1ed; +$fa-var-pen: \f304; +$fa-var-pen-alt: \f305; +$fa-var-pen-fancy: \f5ac; +$fa-var-pen-nib: \f5ad; +$fa-var-pen-square: \f14b; +$fa-var-pencil-alt: \f303; +$fa-var-pencil-ruler: \f5ae; +$fa-var-people-carry: \f4ce; +$fa-var-percent: \f295; +$fa-var-percentage: \f541; +$fa-var-periscope: \f3da; +$fa-var-phabricator: \f3db; +$fa-var-phoenix-framework: \f3dc; +$fa-var-phoenix-squadron: \f511; +$fa-var-phone: \f095; +$fa-var-phone-slash: \f3dd; +$fa-var-phone-square: \f098; +$fa-var-phone-volume: \f2a0; +$fa-var-php: \f457; +$fa-var-pied-piper: \f2ae; +$fa-var-pied-piper-alt: \f1a8; +$fa-var-pied-piper-hat: \f4e5; +$fa-var-pied-piper-pp: \f1a7; +$fa-var-piggy-bank: \f4d3; +$fa-var-pills: \f484; +$fa-var-pinterest: \f0d2; +$fa-var-pinterest-p: \f231; +$fa-var-pinterest-square: \f0d3; +$fa-var-plane: \f072; +$fa-var-plane-arrival: \f5af; +$fa-var-plane-departure: \f5b0; +$fa-var-play: \f04b; +$fa-var-play-circle: \f144; +$fa-var-playstation: \f3df; +$fa-var-plug: \f1e6; +$fa-var-plus: \f067; +$fa-var-plus-circle: \f055; +$fa-var-plus-square: \f0fe; +$fa-var-podcast: \f2ce; +$fa-var-poo: \f2fe; +$fa-var-portrait: \f3e0; +$fa-var-pound-sign: \f154; +$fa-var-power-off: \f011; +$fa-var-prescription: \f5b1; +$fa-var-prescription-bottle: \f485; +$fa-var-prescription-bottle-alt: \f486; +$fa-var-print: \f02f; +$fa-var-procedures: \f487; +$fa-var-product-hunt: \f288; +$fa-var-project-diagram: \f542; +$fa-var-pushed: \f3e1; +$fa-var-puzzle-piece: \f12e; +$fa-var-python: \f3e2; +$fa-var-qq: \f1d6; +$fa-var-qrcode: \f029; +$fa-var-question: \f128; +$fa-var-question-circle: \f059; +$fa-var-quidditch: \f458; +$fa-var-quinscape: \f459; +$fa-var-quora: \f2c4; +$fa-var-quote-left: \f10d; +$fa-var-quote-right: \f10e; +$fa-var-r-project: \f4f7; +$fa-var-random: \f074; +$fa-var-ravelry: \f2d9; +$fa-var-react: \f41b; +$fa-var-readme: \f4d5; +$fa-var-rebel: \f1d0; +$fa-var-receipt: \f543; +$fa-var-recycle: \f1b8; +$fa-var-red-river: \f3e3; +$fa-var-reddit: \f1a1; +$fa-var-reddit-alien: \f281; +$fa-var-reddit-square: \f1a2; +$fa-var-redo: \f01e; +$fa-var-redo-alt: \f2f9; +$fa-var-registered: \f25d; +$fa-var-rendact: \f3e4; +$fa-var-renren: \f18b; +$fa-var-reply: \f3e5; +$fa-var-reply-all: \f122; +$fa-var-replyd: \f3e6; +$fa-var-researchgate: \f4f8; +$fa-var-resolving: \f3e7; +$fa-var-retweet: \f079; +$fa-var-rev: \f5b2; +$fa-var-ribbon: \f4d6; +$fa-var-road: \f018; +$fa-var-robot: \f544; +$fa-var-rocket: \f135; +$fa-var-rocketchat: \f3e8; +$fa-var-rockrms: \f3e9; +$fa-var-rss: \f09e; +$fa-var-rss-square: \f143; +$fa-var-ruble-sign: \f158; +$fa-var-ruler: \f545; +$fa-var-ruler-combined: \f546; +$fa-var-ruler-horizontal: \f547; +$fa-var-ruler-vertical: \f548; +$fa-var-rupee-sign: \f156; +$fa-var-sad-cry: \f5b3; +$fa-var-sad-tear: \f5b4; +$fa-var-safari: \f267; +$fa-var-sass: \f41e; +$fa-var-save: \f0c7; +$fa-var-schlix: \f3ea; +$fa-var-school: \f549; +$fa-var-screwdriver: \f54a; +$fa-var-scribd: \f28a; +$fa-var-search: \f002; +$fa-var-search-minus: \f010; +$fa-var-search-plus: \f00e; +$fa-var-searchengin: \f3eb; +$fa-var-seedling: \f4d8; +$fa-var-sellcast: \f2da; +$fa-var-sellsy: \f213; +$fa-var-server: \f233; +$fa-var-servicestack: \f3ec; +$fa-var-share: \f064; +$fa-var-share-alt: \f1e0; +$fa-var-share-alt-square: \f1e1; +$fa-var-share-square: \f14d; +$fa-var-shekel-sign: \f20b; +$fa-var-shield-alt: \f3ed; +$fa-var-ship: \f21a; +$fa-var-shipping-fast: \f48b; +$fa-var-shirtsinbulk: \f214; +$fa-var-shoe-prints: \f54b; +$fa-var-shopping-bag: \f290; +$fa-var-shopping-basket: \f291; +$fa-var-shopping-cart: \f07a; +$fa-var-shopware: \f5b5; +$fa-var-shower: \f2cc; +$fa-var-shuttle-van: \f5b6; +$fa-var-sign: \f4d9; +$fa-var-sign-in-alt: \f2f6; +$fa-var-sign-language: \f2a7; +$fa-var-sign-out-alt: \f2f5; +$fa-var-signal: \f012; +$fa-var-signature: \f5b7; +$fa-var-simplybuilt: \f215; +$fa-var-sistrix: \f3ee; +$fa-var-sitemap: \f0e8; +$fa-var-sith: \f512; +$fa-var-skull: \f54c; +$fa-var-skyatlas: \f216; +$fa-var-skype: \f17e; +$fa-var-slack: \f198; +$fa-var-slack-hash: \f3ef; +$fa-var-sliders-h: \f1de; +$fa-var-slideshare: \f1e7; +$fa-var-smile: \f118; +$fa-var-smile-beam: \f5b8; +$fa-var-smile-wink: \f4da; +$fa-var-smoking: \f48d; +$fa-var-smoking-ban: \f54d; +$fa-var-snapchat: \f2ab; +$fa-var-snapchat-ghost: \f2ac; +$fa-var-snapchat-square: \f2ad; +$fa-var-snowflake: \f2dc; +$fa-var-solar-panel: \f5ba; +$fa-var-sort: \f0dc; +$fa-var-sort-alpha-down: \f15d; +$fa-var-sort-alpha-up: \f15e; +$fa-var-sort-amount-down: \f160; +$fa-var-sort-amount-up: \f161; +$fa-var-sort-down: \f0dd; +$fa-var-sort-numeric-down: \f162; +$fa-var-sort-numeric-up: \f163; +$fa-var-sort-up: \f0de; +$fa-var-soundcloud: \f1be; +$fa-var-spa: \f5bb; +$fa-var-space-shuttle: \f197; +$fa-var-speakap: \f3f3; +$fa-var-spinner: \f110; +$fa-var-splotch: \f5bc; +$fa-var-spotify: \f1bc; +$fa-var-spray-can: \f5bd; +$fa-var-square: \f0c8; +$fa-var-square-full: \f45c; +$fa-var-squarespace: \f5be; +$fa-var-stack-exchange: \f18d; +$fa-var-stack-overflow: \f16c; +$fa-var-stamp: \f5bf; +$fa-var-star: \f005; +$fa-var-star-half: \f089; +$fa-var-star-half-alt: \f5c0; +$fa-var-staylinked: \f3f5; +$fa-var-steam: \f1b6; +$fa-var-steam-square: \f1b7; +$fa-var-steam-symbol: \f3f6; +$fa-var-step-backward: \f048; +$fa-var-step-forward: \f051; +$fa-var-stethoscope: \f0f1; +$fa-var-sticker-mule: \f3f7; +$fa-var-sticky-note: \f249; +$fa-var-stop: \f04d; +$fa-var-stop-circle: \f28d; +$fa-var-stopwatch: \f2f2; +$fa-var-store: \f54e; +$fa-var-store-alt: \f54f; +$fa-var-strava: \f428; +$fa-var-stream: \f550; +$fa-var-street-view: \f21d; +$fa-var-strikethrough: \f0cc; +$fa-var-stripe: \f429; +$fa-var-stripe-s: \f42a; +$fa-var-stroopwafel: \f551; +$fa-var-studiovinari: \f3f8; +$fa-var-stumbleupon: \f1a4; +$fa-var-stumbleupon-circle: \f1a3; +$fa-var-subscript: \f12c; +$fa-var-subway: \f239; +$fa-var-suitcase: \f0f2; +$fa-var-suitcase-rolling: \f5c1; +$fa-var-sun: \f185; +$fa-var-superpowers: \f2dd; +$fa-var-superscript: \f12b; +$fa-var-supple: \f3f9; +$fa-var-surprise: \f5c2; +$fa-var-swatchbook: \f5c3; +$fa-var-swimmer: \f5c4; +$fa-var-swimming-pool: \f5c5; +$fa-var-sync: \f021; +$fa-var-sync-alt: \f2f1; +$fa-var-syringe: \f48e; +$fa-var-table: \f0ce; +$fa-var-table-tennis: \f45d; +$fa-var-tablet: \f10a; +$fa-var-tablet-alt: \f3fa; +$fa-var-tablets: \f490; +$fa-var-tachometer-alt: \f3fd; +$fa-var-tag: \f02b; +$fa-var-tags: \f02c; +$fa-var-tape: \f4db; +$fa-var-tasks: \f0ae; +$fa-var-taxi: \f1ba; +$fa-var-teamspeak: \f4f9; +$fa-var-telegram: \f2c6; +$fa-var-telegram-plane: \f3fe; +$fa-var-tencent-weibo: \f1d5; +$fa-var-terminal: \f120; +$fa-var-text-height: \f034; +$fa-var-text-width: \f035; +$fa-var-th: \f00a; +$fa-var-th-large: \f009; +$fa-var-th-list: \f00b; +$fa-var-themeco: \f5c6; +$fa-var-themeisle: \f2b2; +$fa-var-thermometer: \f491; +$fa-var-thermometer-empty: \f2cb; +$fa-var-thermometer-full: \f2c7; +$fa-var-thermometer-half: \f2c9; +$fa-var-thermometer-quarter: \f2ca; +$fa-var-thermometer-three-quarters: \f2c8; +$fa-var-thumbs-down: \f165; +$fa-var-thumbs-up: \f164; +$fa-var-thumbtack: \f08d; +$fa-var-ticket-alt: \f3ff; +$fa-var-times: \f00d; +$fa-var-times-circle: \f057; +$fa-var-tint: \f043; +$fa-var-tint-slash: \f5c7; +$fa-var-tired: \f5c8; +$fa-var-toggle-off: \f204; +$fa-var-toggle-on: \f205; +$fa-var-toolbox: \f552; +$fa-var-tooth: \f5c9; +$fa-var-trade-federation: \f513; +$fa-var-trademark: \f25c; +$fa-var-train: \f238; +$fa-var-transgender: \f224; +$fa-var-transgender-alt: \f225; +$fa-var-trash: \f1f8; +$fa-var-trash-alt: \f2ed; +$fa-var-tree: \f1bb; +$fa-var-trello: \f181; +$fa-var-tripadvisor: \f262; +$fa-var-trophy: \f091; +$fa-var-truck: \f0d1; +$fa-var-truck-loading: \f4de; +$fa-var-truck-moving: \f4df; +$fa-var-tshirt: \f553; +$fa-var-tty: \f1e4; +$fa-var-tumblr: \f173; +$fa-var-tumblr-square: \f174; +$fa-var-tv: \f26c; +$fa-var-twitch: \f1e8; +$fa-var-twitter: \f099; +$fa-var-twitter-square: \f081; +$fa-var-typo3: \f42b; +$fa-var-uber: \f402; +$fa-var-uikit: \f403; +$fa-var-umbrella: \f0e9; +$fa-var-umbrella-beach: \f5ca; +$fa-var-underline: \f0cd; +$fa-var-undo: \f0e2; +$fa-var-undo-alt: \f2ea; +$fa-var-uniregistry: \f404; +$fa-var-universal-access: \f29a; +$fa-var-university: \f19c; +$fa-var-unlink: \f127; +$fa-var-unlock: \f09c; +$fa-var-unlock-alt: \f13e; +$fa-var-untappd: \f405; +$fa-var-upload: \f093; +$fa-var-usb: \f287; +$fa-var-user: \f007; +$fa-var-user-alt: \f406; +$fa-var-user-alt-slash: \f4fa; +$fa-var-user-astronaut: \f4fb; +$fa-var-user-check: \f4fc; +$fa-var-user-circle: \f2bd; +$fa-var-user-clock: \f4fd; +$fa-var-user-cog: \f4fe; +$fa-var-user-edit: \f4ff; +$fa-var-user-friends: \f500; +$fa-var-user-graduate: \f501; +$fa-var-user-lock: \f502; +$fa-var-user-md: \f0f0; +$fa-var-user-minus: \f503; +$fa-var-user-ninja: \f504; +$fa-var-user-plus: \f234; +$fa-var-user-secret: \f21b; +$fa-var-user-shield: \f505; +$fa-var-user-slash: \f506; +$fa-var-user-tag: \f507; +$fa-var-user-tie: \f508; +$fa-var-user-times: \f235; +$fa-var-users: \f0c0; +$fa-var-users-cog: \f509; +$fa-var-ussunnah: \f407; +$fa-var-utensil-spoon: \f2e5; +$fa-var-utensils: \f2e7; +$fa-var-vaadin: \f408; +$fa-var-vector-square: \f5cb; +$fa-var-venus: \f221; +$fa-var-venus-double: \f226; +$fa-var-venus-mars: \f228; +$fa-var-viacoin: \f237; +$fa-var-viadeo: \f2a9; +$fa-var-viadeo-square: \f2aa; +$fa-var-vial: \f492; +$fa-var-vials: \f493; +$fa-var-viber: \f409; +$fa-var-video: \f03d; +$fa-var-video-slash: \f4e2; +$fa-var-vimeo: \f40a; +$fa-var-vimeo-square: \f194; +$fa-var-vimeo-v: \f27d; +$fa-var-vine: \f1ca; +$fa-var-vk: \f189; +$fa-var-vnv: \f40b; +$fa-var-volleyball-ball: \f45f; +$fa-var-volume-down: \f027; +$fa-var-volume-off: \f026; +$fa-var-volume-up: \f028; +$fa-var-vuejs: \f41f; +$fa-var-walking: \f554; +$fa-var-wallet: \f555; +$fa-var-warehouse: \f494; +$fa-var-weebly: \f5cc; +$fa-var-weibo: \f18a; +$fa-var-weight: \f496; +$fa-var-weight-hanging: \f5cd; +$fa-var-weixin: \f1d7; +$fa-var-whatsapp: \f232; +$fa-var-whatsapp-square: \f40c; +$fa-var-wheelchair: \f193; +$fa-var-whmcs: \f40d; +$fa-var-wifi: \f1eb; +$fa-var-wikipedia-w: \f266; +$fa-var-window-close: \f410; +$fa-var-window-maximize: \f2d0; +$fa-var-window-minimize: \f2d1; +$fa-var-window-restore: \f2d2; +$fa-var-windows: \f17a; +$fa-var-wine-glass: \f4e3; +$fa-var-wine-glass-alt: \f5ce; +$fa-var-wix: \f5cf; +$fa-var-wolf-pack-battalion: \f514; +$fa-var-won-sign: \f159; +$fa-var-wordpress: \f19a; +$fa-var-wordpress-simple: \f411; +$fa-var-wpbeginner: \f297; +$fa-var-wpexplorer: \f2de; +$fa-var-wpforms: \f298; +$fa-var-wrench: \f0ad; +$fa-var-x-ray: \f497; +$fa-var-xbox: \f412; +$fa-var-xing: \f168; +$fa-var-xing-square: \f169; +$fa-var-y-combinator: \f23b; +$fa-var-yahoo: \f19e; +$fa-var-yandex: \f413; +$fa-var-yandex-international: \f414; +$fa-var-yelp: \f1e9; +$fa-var-yen-sign: \f157; +$fa-var-yoast: \f2b1; +$fa-var-youtube: \f167; +$fa-var-youtube-square: \f431; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/brands.scss b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/brands.scss new file mode 100644 index 0000000000..4aba5c760f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/brands.scss @@ -0,0 +1,21 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import 'variables'; + +@font-face { + font-family: 'Font Awesome 5 Brands'; + font-style: normal; + font-weight: normal; + src: url('#{$fa-font-path}/fa-brands-400.eot'); + src: url('#{$fa-font-path}/fa-brands-400.eot?#iefix') format('embedded-opentype'), + url('#{$fa-font-path}/fa-brands-400.woff2') format('woff2'), + url('#{$fa-font-path}/fa-brands-400.woff') format('woff'), + url('#{$fa-font-path}/fa-brands-400.ttf') format('truetype'), + url('#{$fa-font-path}/fa-brands-400.svg#fontawesome') format('svg'); +} + +.fab { + font-family: 'Font Awesome 5 Brands'; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/fa-brands.scss b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/fa-brands.scss new file mode 100644 index 0000000000..36d655f485 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/fa-brands.scss @@ -0,0 +1,21 @@ +/*! + * Font Awesome Free 5.1.0 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import 'variables'; + +@font-face { + font-family: 'Font Awesome 5 Brands'; + font-style: normal; + font-weight: normal; + src: url('#{$fa-font-path}/fa-brands-400.eot'); + src: url('#{$fa-font-path}/fa-brands-400.eot?#iefix') format('embedded-opentype'), + url('#{$fa-font-path}/fa-brands-400.woff2') format('woff2'), + url('#{$fa-font-path}/fa-brands-400.woff') format('woff'), + url('#{$fa-font-path}/fa-brands-400.ttf') format('truetype'), + url('#{$fa-font-path}/fa-brands-400.svg#fontawesome') format('svg'); +} + +.fab { + font-family: 'Font Awesome 5 Brands'; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/fa-regular.scss b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/fa-regular.scss new file mode 100644 index 0000000000..426af2e94b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/fa-regular.scss @@ -0,0 +1,22 @@ +/*! + * Font Awesome Free 5.1.0 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import 'variables'; + +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 400; + src: url('#{$fa-font-path}/fa-regular-400.eot'); + src: url('#{$fa-font-path}/fa-regular-400.eot?#iefix') format('embedded-opentype'), + url('#{$fa-font-path}/fa-regular-400.woff2') format('woff2'), + url('#{$fa-font-path}/fa-regular-400.woff') format('woff'), + url('#{$fa-font-path}/fa-regular-400.ttf') format('truetype'), + url('#{$fa-font-path}/fa-regular-400.svg#fontawesome') format('svg'); +} + +.far { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/fa-solid.scss b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/fa-solid.scss new file mode 100644 index 0000000000..030c36729b --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/fa-solid.scss @@ -0,0 +1,23 @@ +/*! + * Font Awesome Free 5.1.0 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import 'variables'; + +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 900; + src: url('#{$fa-font-path}/fa-solid-900.eot'); + src: url('#{$fa-font-path}/fa-solid-900.eot?#iefix') format('embedded-opentype'), + url('#{$fa-font-path}/fa-solid-900.woff2') format('woff2'), + url('#{$fa-font-path}/fa-solid-900.woff') format('woff'), + url('#{$fa-font-path}/fa-solid-900.ttf') format('truetype'), + url('#{$fa-font-path}/fa-solid-900.svg#fontawesome') format('svg'); +} + +.fa, +.fas { + font-family: 'Font Awesome 5 Free'; + font-weight: 900; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/fontawesome.scss b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/fontawesome.scss new file mode 100644 index 0000000000..7b0b5dd872 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/fontawesome.scss @@ -0,0 +1,16 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import 'variables'; +@import 'mixins'; +@import 'core'; +@import 'larger'; +@import 'fixed-width'; +@import 'list'; +@import 'bordered-pulled'; +@import 'animated'; +@import 'rotated-flipped'; +@import 'stacked'; +@import 'icons'; +@import 'screen-reader'; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/regular.scss b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/regular.scss new file mode 100644 index 0000000000..83d6598bc9 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/regular.scss @@ -0,0 +1,22 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import 'variables'; + +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 400; + src: url('#{$fa-font-path}/fa-regular-400.eot'); + src: url('#{$fa-font-path}/fa-regular-400.eot?#iefix') format('embedded-opentype'), + url('#{$fa-font-path}/fa-regular-400.woff2') format('woff2'), + url('#{$fa-font-path}/fa-regular-400.woff') format('woff'), + url('#{$fa-font-path}/fa-regular-400.ttf') format('truetype'), + url('#{$fa-font-path}/fa-regular-400.svg#fontawesome') format('svg'); +} + +.far { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/solid.scss b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/solid.scss new file mode 100644 index 0000000000..afe8e3a167 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/solid.scss @@ -0,0 +1,23 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import 'variables'; + +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 900; + src: url('#{$fa-font-path}/fa-solid-900.eot'); + src: url('#{$fa-font-path}/fa-solid-900.eot?#iefix') format('embedded-opentype'), + url('#{$fa-font-path}/fa-solid-900.woff2') format('woff2'), + url('#{$fa-font-path}/fa-solid-900.woff') format('woff'), + url('#{$fa-font-path}/fa-solid-900.ttf') format('truetype'), + url('#{$fa-font-path}/fa-solid-900.svg#fontawesome') format('svg'); +} + +.fa, +.fas { + font-family: 'Font Awesome 5 Free'; + font-weight: 900; +} diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/v4-shims.scss b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/v4-shims.scss new file mode 100644 index 0000000000..79a387a1d8 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/scss/v4-shims.scss @@ -0,0 +1,6 @@ +/*! + * Font Awesome Free 5.1.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@import 'variables'; +@import 'shims'; diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-brands-400.eot b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-brands-400.eot new file mode 100644 index 0000000000000000000000000000000000000000..e48acd6bd4dce13475bdc4f922094c7b54740b41 GIT binary patch literal 115208 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

    p{F~0&T-Y+czhx#`PEx8x2(D4;aelO?!5K0 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

    HgQ{Xg2>DsN9O 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%0AJbTpwfqGm(FZu^-ovAH)|J!*u`W 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 E4b8hV>Hq)$ literal 0 HcmV?d00001 diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-brands-400.svg b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-brands-400.svg new file mode 100644 index 0000000000..f90e19c28f --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-brands-400.svg @@ -0,0 +1,1134 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-brands-400.ttf b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-brands-400.ttf new file mode 100644 index 0000000000000000000000000000000000000000..c0633ae46a372c28617ed2e5723666a4676f0e6f GIT binary patch literal 114972 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%0AJbTpwfqGm(FZu^-ovAH)|J!*u`G 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

    uzs|ph3%)FYmHCk#^k$z|>F8-*bL)Q78fUX= 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≠4rHa&-)OV6X{(+lW@ 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 U(`Wg)*SQb&GB-6d0fznm03=j_u>b%7 literal 0 HcmV?d00001 diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-regular-400.svg b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-regular-400.svg new file mode 100644 index 0000000000..30f0cbb115 --- /dev/null +++ b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-regular-400.svg @@ -0,0 +1,471 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-regular-400.ttf b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-regular-400.ttf new file mode 100644 index 0000000000000000000000000000000000000000..d8e1efb292e041342f656346b61063f83ed7f3b0 GIT binary patch literal 40564 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 literal 0 HcmV?d00001 diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-regular-400.woff2 b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-regular-400.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..0b80b62c4850d7ac52b5c34ceca2d0239a3a9545 GIT binary patch literal 14948 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 literal 0 HcmV?d00001 diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-solid-900.eot b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-solid-900.eot new file mode 100644 index 0000000000000000000000000000000000000000..e994c7974793305344902d4efe288320f7262a09 GIT binary patch literal 160768 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

    Pbv!k3rxZws~#C!#IRBEw(9NGOI&(7PNl+ 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 B>HPoz literal 0 HcmV?d00001 diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-solid-900.woff b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-solid-900.woff new file mode 100644 index 0000000000000000000000000000000000000000..c9b2b6ea55c6141ebc60012316ad04e6fed76d6f GIT binary patch literal 76632 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

  • _WV`Dqavo7Qe`u5{VwVA!E1D; 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 AB>(^b literal 0 HcmV?d00001 diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-solid-900.woff2 b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-solid-900.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..0e3d1947c23fcaca7dbc91aa8d2c96121026519b GIT binary patch literal 59612 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 literal 0 HcmV?d00001 diff --git a/site/themes/docsy/assets/vendor/bootstrap/.gitattributes b/site/themes/docsy/assets/vendor/bootstrap/.gitattributes new file mode 100644 index 0000000000..39813c7589 --- /dev/null +++ b/site/themes/docsy/assets/vendor/bootstrap/.gitattributes @@ -0,0 +1,18 @@ +# Enforce Unix newlines +*.css text eol=lf +*.html text eol=lf +*.js text eol=lf +*.json text eol=lf +*.md text eol=lf +*.rb text eol=lf +*.scss text eol=lf +*.svg text eol=lf +*.txt text eol=lf +*.xml text eol=lf +*.yml text eol=lf + +# Don't diff or textually merge source maps +*.map binary + +bootstrap.css linguist-vendored=false +bootstrap.js linguist-vendored=false diff --git a/site/themes/docsy/assets/vendor/bootstrap/.gitignore b/site/themes/docsy/assets/vendor/bootstrap/.gitignore new file mode 100644 index 0000000000..39a9279d0e --- /dev/null +++ b/site/themes/docsy/assets/vendor/bootstrap/.gitignore @@ -0,0 +1,48 @@ +# Ignore docs files +_gh_pages +_site +site/docs/4.1/dist/ + +# Ignore ruby files +.ruby-version +.bundle +vendor/cache +vendor/bundle + +# Numerous always-ignore extensions +*.diff +*.err +*.log +*.orig +*.rej +*.swo +*.swp +*.vi +*.zip +*~ + +# OS or Editor folders +._* +.cache +.DS_Store +.idea +.project +.settings +.tmproj +*.esproj +*.sublime-project +*.sublime-workspace +nbproject +Thumbs.db + +# Komodo +.komodotools +*.komodoproject + +# Jekyll metadata and extra config file for `github` script +docs/.jekyll-metadata +twbsconfig.yml + +# Folders to ignore +node_modules +js/coverage diff --git a/site/themes/docsy/assets/vendor/bootstrap/CNAME b/site/themes/docsy/assets/vendor/bootstrap/CNAME new file mode 100644 index 0000000000..52c853392c --- /dev/null +++ b/site/themes/docsy/assets/vendor/bootstrap/CNAME @@ -0,0 +1 @@ +getbootstrap.com diff --git a/site/themes/docsy/assets/vendor/bootstrap/CODE_OF_CONDUCT.md b/site/themes/docsy/assets/vendor/bootstrap/CODE_OF_CONDUCT.md new file mode 100644 index 0000000000..9d9922f25f --- /dev/null +++ b/site/themes/docsy/assets/vendor/bootstrap/CODE_OF_CONDUCT.md @@ -0,0 +1,46 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at mdo@getbootstrap.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [https://www.contributor-covenant.org/version/1/4/code-of-conduct.html][version] + +[homepage]: https://www.contributor-covenant.org/ +[version]: https://www.contributor-covenant.org/version/1/4/code-of-conduct.html diff --git a/site/themes/docsy/assets/vendor/bootstrap/Gemfile b/site/themes/docsy/assets/vendor/bootstrap/Gemfile new file mode 100644 index 0000000000..3587e0761b --- /dev/null +++ b/site/themes/docsy/assets/vendor/bootstrap/Gemfile @@ -0,0 +1,8 @@ +source 'https://rubygems.org' + +group :development, :test do + gem 'jekyll', '~> 3.8.3' + gem 'jekyll-redirect-from', '~> 0.14.0' + gem 'jekyll-sitemap', '~> 1.2.0' + gem 'jekyll-toc', '~> 0.6.0' +end diff --git a/site/themes/docsy/assets/vendor/bootstrap/Gemfile.lock b/site/themes/docsy/assets/vendor/bootstrap/Gemfile.lock new file mode 100644 index 0000000000..744f9b355c --- /dev/null +++ b/site/themes/docsy/assets/vendor/bootstrap/Gemfile.lock @@ -0,0 +1,80 @@ +GEM + remote: https://rubygems.org/ + specs: + addressable (2.5.2) + public_suffix (>= 2.0.2, < 4.0) + colorator (1.1.0) + concurrent-ruby (1.0.5) + em-websocket (0.5.1) + eventmachine (>= 0.12.9) + http_parser.rb (~> 0.6.0) + eventmachine (1.2.7) + eventmachine (1.2.7-x64-mingw32) + ffi (1.9.25) + ffi (1.9.25-x64-mingw32) + forwardable-extended (2.6.0) + http_parser.rb (0.6.0) + i18n (0.9.5) + concurrent-ruby (~> 1.0) + jekyll (3.8.3) + addressable (~> 2.4) + colorator (~> 1.0) + em-websocket (~> 0.5) + i18n (~> 0.7) + jekyll-sass-converter (~> 1.0) + jekyll-watch (~> 2.0) + kramdown (~> 1.14) + liquid (~> 4.0) + mercenary (~> 0.3.3) + pathutil (~> 0.9) + rouge (>= 1.7, < 4) + safe_yaml (~> 1.0) + jekyll-redirect-from (0.14.0) + jekyll (~> 3.3) + jekyll-sass-converter (1.5.2) + sass (~> 3.4) + jekyll-sitemap (1.2.0) + jekyll (~> 3.3) + jekyll-toc (0.6.0) + nokogiri (~> 1.7) + jekyll-watch (2.0.0) + listen (~> 3.0) + kramdown (1.17.0) + liquid (4.0.0) + listen (3.1.5) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + ruby_dep (~> 1.2) + mercenary (0.3.6) + mini_portile2 (2.3.0) + nokogiri (1.8.4) + mini_portile2 (~> 2.3.0) + nokogiri (1.8.4-x64-mingw32) + mini_portile2 (~> 2.3.0) + pathutil (0.16.1) + forwardable-extended (~> 2.6) + public_suffix (3.0.3) + rb-fsevent (0.10.3) + rb-inotify (0.9.10) + ffi (>= 0.5.0, < 2) + rouge (3.2.1) + ruby_dep (1.5.0) + safe_yaml (1.0.4) + sass (3.5.7) + sass-listen (~> 4.0.0) + sass-listen (4.0.0) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + +PLATFORMS + ruby + x64-mingw32 + +DEPENDENCIES + jekyll (~> 3.8.3) + jekyll-redirect-from (~> 0.14.0) + jekyll-sitemap (~> 1.2.0) + jekyll-toc (~> 0.6.0) + +BUNDLED WITH + 1.16.3 diff --git a/site/themes/docsy/assets/vendor/bootstrap/LICENSE b/site/themes/docsy/assets/vendor/bootstrap/LICENSE new file mode 100644 index 0000000000..86f4b8ca04 --- /dev/null +++ b/site/themes/docsy/assets/vendor/bootstrap/LICENSE @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2011-2018 Twitter, Inc. +Copyright (c) 2011-2018 The Bootstrap Authors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/site/themes/docsy/assets/vendor/bootstrap/README.md b/site/themes/docsy/assets/vendor/bootstrap/README.md new file mode 100644 index 0000000000..9f91a93366 --- /dev/null +++ b/site/themes/docsy/assets/vendor/bootstrap/README.md @@ -0,0 +1,183 @@ +

    Bootstrap

    + +

    + Sleek, intuitive, and powerful front-end framework for faster and easier web development. +
    + Explore Bootstrap docs » +
    +
    + Report bug + · + Request feature + · + Themes + · + Jobs + · + Blog +

    +

    + +
    + +## Table of contents + +- [Quick start](#quick-start) +- [Status](#status) +- [What's included](#whats-included) +- [Bugs and feature requests](#bugs-and-feature-requests) +- [Documentation](#documentation) +- [Contributing](#contributing) +- [Community](#community) +- [Versioning](#versioning) +- [Creators](#creators) +- [Thanks](#thanks) +- [Copyright and license](#copyright-and-license) + +## Quick start + +Several quick start options are available: + +- [Download the latest release.](https://github.com/twbs/bootstrap/archive/v4.1.3.zip) +- Clone the repo: `git clone https://github.com/twbs/bootstrap.git` +- Install with [npm](https://www.npmjs.com/): `npm install bootstrap` +- Install with [yarn](https://yarnpkg.com/): `yarn add bootstrap@4.1.3` +- Install with [Composer](https://getcomposer.org/): `composer require twbs/bootstrap:4.1.3` +- Install with [NuGet](https://www.nuget.org/): CSS: `Install-Package bootstrap` Sass: `Install-Package bootstrap.sass` + +Read the [Getting started page](https://getbootstrap.com/docs/4.1/getting-started/introduction/) for information on the framework contents, templates and examples, and more. + +## Status + +[![Slack](https://bootstrap-slack.herokuapp.com/badge.svg)](https://bootstrap-slack.herokuapp.com/) +[![Build Status](https://img.shields.io/travis/twbs/bootstrap/v4-dev.svg)](https://travis-ci.org/twbs/bootstrap) +[![npm version](https://img.shields.io/npm/v/bootstrap.svg)](https://www.npmjs.com/package/bootstrap) +[![Gem version](https://img.shields.io/gem/v/bootstrap.svg)](https://rubygems.org/gems/bootstrap) +[![Meteor Atmosphere](https://img.shields.io/badge/meteor-twbs%3Abootstrap-blue.svg)](https://atmospherejs.com/twbs/bootstrap) +[![Packagist Prerelease](https://img.shields.io/packagist/vpre/twbs/bootstrap.svg)](https://packagist.org/packages/twbs/bootstrap) +[![NuGet](https://img.shields.io/nuget/vpre/bootstrap.svg)](https://www.nuget.org/packages/bootstrap/absoluteLatest) +[![peerDependencies Status](https://img.shields.io/david/peer/twbs/bootstrap.svg)](https://david-dm.org/twbs/bootstrap?type=peer) +[![devDependency Status](https://img.shields.io/david/dev/twbs/bootstrap.svg)](https://david-dm.org/twbs/bootstrap?type=dev) +[![Coverage Status](https://img.shields.io/coveralls/github/twbs/bootstrap/v4-dev.svg)](https://coveralls.io/github/twbs/bootstrap?branch=v4-dev) +[![CSS gzip size](http://img.badgesize.io/twbs/bootstrap/v4-dev/dist/css/bootstrap.min.css?compression=gzip&label=CSS+gzip+size)](https://github.com/twbs/bootstrap/tree/v4-dev/dist/css/bootstrap.min.css) +[![JS gzip size](http://img.badgesize.io/twbs/bootstrap/v4-dev/dist/js/bootstrap.min.js?compression=gzip&label=JS+gzip+size)](https://github.com/twbs/bootstrap/tree/v4-dev/dist/js/bootstrap.min.js) +[![BrowserStack Status](https://www.browserstack.com/automate/badge.svg?badge_key=SkxZcStBeExEdVJqQ2hWYnlWckpkNmNEY213SFp6WHFETWk2bGFuY3pCbz0tLXhqbHJsVlZhQnRBdEpod3NLSDMzaHc9PQ==--3d0b75245708616eb93113221beece33e680b229)](https://www.browserstack.com/automate/public-build/SkxZcStBeExEdVJqQ2hWYnlWckpkNmNEY213SFp6WHFETWk2bGFuY3pCbz0tLXhqbHJsVlZhQnRBdEpod3NLSDMzaHc9PQ==--3d0b75245708616eb93113221beece33e680b229) + +## What's included + +Within the download you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations. You'll see something like this: + +``` +bootstrap/ +└── dist/ + ├── css/ + │ ├── bootstrap-grid.css + │ ├── bootstrap-grid.css.map + │ ├── bootstrap-grid.min.css + │ ├── bootstrap-grid.min.css.map + │ ├── bootstrap-reboot.css + │ ├── bootstrap-reboot.css.map + │ ├── bootstrap-reboot.min.css + │ ├── bootstrap-reboot.min.css.map + │ ├── bootstrap.css + │ ├── bootstrap.css.map + │ ├── bootstrap.min.css + │ └── bootstrap.min.css.map + └── js/ + ├── bootstrap.bundle.js + ├── bootstrap.bundle.js.map + ├── bootstrap.bundle.min.js + ├── bootstrap.bundle.min.js.map + ├── bootstrap.js + ├── bootstrap.js.map + ├── bootstrap.min.js + └── bootstrap.min.js.map +``` + +We provide compiled CSS and JS (`bootstrap.*`), as well as compiled and minified CSS and JS (`bootstrap.min.*`). [source maps](https://developers.google.com/web/tools/chrome-devtools/debug/readability/source-maps) (`bootstrap.*.map`) are available for use with certain browsers' developer tools. Bundled JS files (`bootstrap.bundle.js` and minified `bootstrap.bundle.min.js`) include [Popper](https://popper.js.org/), but not [jQuery](https://jquery.com/). + + +## Bugs and feature requests + +Have a bug or a feature request? Please first read the [issue guidelines](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md#using-the-issue-tracker) and search for existing and closed issues. If your problem or idea is not addressed yet, [please open a new issue](https://github.com/twbs/bootstrap/issues/new). + + +## Documentation + +Bootstrap's documentation, included in this repo in the root directory, is built with [Jekyll](https://jekyllrb.com/) and publicly hosted on GitHub Pages at . The docs may also be run locally. + +Documentation search is powered by [Algolia's DocSearch](https://community.algolia.com/docsearch/). Working on our search? Be sure to set `debug: true` in `site/docs/4.1/assets/js/src/search.js` file. + +### Running documentation locally + +1. Run through the [tooling setup](https://getbootstrap.com/docs/4.1/getting-started/build-tools/#tooling-setup) to install Jekyll (the site builder) and other Ruby dependencies with `bundle install`. +2. Run `npm install` to install Node.js dependencies. +3. Run `npm start` to compile CSS and JavaScript files, generate our docs, and watch for changes. +4. Open `http://localhost:9001` in your browser, and voilà. + +Learn more about using Jekyll by reading its [documentation](https://jekyllrb.com/docs/home/). + +### Documentation for previous releases + +- For v2.3.2: +- For v3.3.x: +- For v4.0.x: + +[Previous releases](https://github.com/twbs/bootstrap/releases) and their documentation are also available for download. + + +## Contributing + +Please read through our [contributing guidelines](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md). Included are directions for opening issues, coding standards, and notes on development. + +Moreover, if your pull request contains JavaScript patches or features, you must include [relevant unit tests](https://github.com/twbs/bootstrap/tree/master/js/tests). All HTML and CSS should conform to the [Code Guide](https://github.com/mdo/code-guide), maintained by [Mark Otto](https://github.com/mdo). + +Editor preferences are available in the [editor config](https://github.com/twbs/bootstrap/blob/master/.editorconfig) for easy use in common text editors. Read more and download plugins at . + + +## Community + +Get updates on Bootstrap's development and chat with the project maintainers and community members. + +- Follow [@getbootstrap on Twitter](https://twitter.com/getbootstrap). +- Read and subscribe to [The Official Bootstrap Blog](https://blog.getbootstrap.com/). +- Join [the official Slack room](https://bootstrap-slack.herokuapp.com/). +- Chat with fellow Bootstrappers in IRC. On the `irc.freenode.net` server, in the `##bootstrap` channel. +- Implementation help may be found at Stack Overflow (tagged [`bootstrap-4`](https://stackoverflow.com/questions/tagged/bootstrap-4)). +- Developers should use the keyword `bootstrap` on packages which modify or add to the functionality of Bootstrap when distributing through [npm](https://www.npmjs.com/browse/keyword/bootstrap) or similar delivery mechanisms for maximum discoverability. + + +## Versioning + +For transparency into our release cycle and in striving to maintain backward compatibility, Bootstrap is maintained under [the Semantic Versioning guidelines](https://semver.org/). Sometimes we screw up, but we'll adhere to those rules whenever possible. + +See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap. Release announcement posts on [the official Bootstrap blog](https://blog.getbootstrap.com/) contain summaries of the most noteworthy changes made in each release. + + +## Creators + +**Mark Otto** + +- +- + +**Jacob Thornton** + +- +- + + +## Thanks + +BrowserStack Logo + +Thanks to [BrowserStack](https://www.browserstack.com/) for providing the infrastructure that allows us to test in real browsers! + +## Copyright and license + +Code and documentation copyright 2011-2018 the [Bootstrap Authors](https://github.com/twbs/bootstrap/graphs/contributors) and [Twitter, Inc.](https://twitter.com) Code released under the [MIT License](https://github.com/twbs/bootstrap/blob/master/LICENSE). Docs released under [Creative Commons](https://github.com/twbs/bootstrap/blob/master/docs/LICENSE). diff --git a/site/themes/docsy/assets/vendor/bootstrap/_config.yml b/site/themes/docsy/assets/vendor/bootstrap/_config.yml new file mode 100644 index 0000000000..6bb6c1a257 --- /dev/null +++ b/site/themes/docsy/assets/vendor/bootstrap/_config.yml @@ -0,0 +1,63 @@ +# Dependencies +markdown: kramdown +highlighter: rouge + +kramdown: + auto_ids: true + +# Permalinks +permalink: pretty + +# Server +source: "site" +destination: ./_gh_pages +host: 0.0.0.0 +port: 9001 +baseurl: "" +url: "https://getbootstrap.com" +encoding: UTF-8 +exclude: + - docs/4.1/assets/scss/ + +plugins: + - jekyll-redirect-from + - jekyll-sitemap + - jekyll-toc + +# Social +title: Bootstrap +description: "The most popular HTML, CSS, and JS library in the world." +twitter: getbootstrap +authors: "Mark Otto, Jacob Thornton, and Bootstrap contributors" +social_image_path: /docs/4.1/assets/brand/bootstrap-social.png +social_logo_path: /docs/4.1/assets/brand/bootstrap-social-logo.png + +# Custom variables +current_version: 4.1.3 +current_ruby_version: 4.1.3 +docs_version: 4.1 +repo: "https://github.com/twbs/bootstrap" +slack: "https://bootstrap-slack.herokuapp.com" +blog: "https://blog.getbootstrap.com" +expo: "https://expo.getbootstrap.com" +jobs: "https://jobs.getbootstrap.com" +themes: "https://themes.getbootstrap.com" + +download: + source: "https://github.com/twbs/bootstrap/archive/v4.1.3.zip" + dist: "https://github.com/twbs/bootstrap/releases/download/v4.1.3/bootstrap-4.1.3-dist.zip" + +cdn: + # See https://www.srihash.org for info on how to generate the hashes + css: "https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" + css_hash: "sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" + js: "https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" + js_hash: "sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" + jquery: "https://code.jquery.com/jquery-3.3.1.slim.min.js" + jquery_hash: "sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" + popper: "https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" + popper_hash: "sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" + +toc: + min_level: 2 + max_level: 4 diff --git a/site/themes/docsy/assets/vendor/bootstrap/build/build-plugins.js b/site/themes/docsy/assets/vendor/bootstrap/build/build-plugins.js new file mode 100644 index 0000000000..f767967000 --- /dev/null +++ b/site/themes/docsy/assets/vendor/bootstrap/build/build-plugins.js @@ -0,0 +1,79 @@ +/*! + * Script to build our plugins to use them separately. + * Copyright 2018 The Bootstrap Authors + * Copyright 2018 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ + +const rollup = require('rollup') +const path = require('path') +const babel = require('rollup-plugin-babel') +const TEST = process.env.NODE_ENV === 'test' + +const plugins = [ + babel({ + exclude: 'node_modules/**', // Only transpile our source code + externalHelpersWhitelist: [ // Include only required helpers + 'defineProperties', + 'createClass', + 'inheritsLoose', + 'defineProperty', + 'objectSpread' + ] + }) +] + +const format = 'umd' +const rootPath = !TEST ? '../js/dist/' : '../js/coverage/dist/' +const bsPlugins = { + Alert: path.resolve(__dirname, '../js/src/alert.js'), + Button: path.resolve(__dirname, '../js/src/button.js'), + Carousel: path.resolve(__dirname, '../js/src/carousel.js'), + Collapse: path.resolve(__dirname, '../js/src/collapse.js'), + Dropdown: path.resolve(__dirname, '../js/src/dropdown.js'), + Modal: path.resolve(__dirname, '../js/src/modal.js'), + Popover: path.resolve(__dirname, '../js/src/popover.js'), + ScrollSpy: path.resolve(__dirname, '../js/src/scrollspy.js'), + Tab: path.resolve(__dirname, '../js/src/tab.js'), + Tooltip: path.resolve(__dirname, '../js/src/tooltip.js'), + Util: path.resolve(__dirname, '../js/src/util.js') +} + +Object.keys(bsPlugins) + .forEach((pluginKey) => { + console.log(`Building ${pluginKey} plugin...`) + + const external = ['jquery', 'popper.js'] + const globals = { + jquery: 'jQuery', // Ensure we use jQuery which is always available even in noConflict mode + 'popper.js': 'Popper' + } + + // Do not bundle Util in plugins + if (pluginKey !== 'Util') { + external.push(bsPlugins.Util) + globals[bsPlugins.Util] = 'Util' + } + + // Do not bundle Tooltip in Popover + if (pluginKey === 'Popover') { + external.push(bsPlugins.Tooltip) + globals[bsPlugins.Tooltip] = 'Tooltip' + } + + rollup.rollup({ + input: bsPlugins[pluginKey], + plugins, + external + }).then((bundle) => { + bundle.write({ + format, + name: pluginKey, + sourcemap: true, + globals, + file: path.resolve(__dirname, `${rootPath}${pluginKey.toLowerCase()}.js`) + }) + .then(() => console.log(`Building ${pluginKey} plugin... Done!`)) + .catch((err) => console.error(`${pluginKey}: ${err}`)) + }) + }) diff --git a/site/themes/docsy/assets/vendor/bootstrap/build/change-version.js b/site/themes/docsy/assets/vendor/bootstrap/build/change-version.js new file mode 100755 index 0000000000..192c627101 --- /dev/null +++ b/site/themes/docsy/assets/vendor/bootstrap/build/change-version.js @@ -0,0 +1,102 @@ +#!/usr/bin/env node + +/*! + * Script to update version number references in the project. + * Copyright 2017-2018 The Bootstrap Authors + * Copyright 2017-2018 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ + +const fs = require('fs') +const path = require('path') +const sh = require('shelljs') + +sh.config.fatal = true + +// Blame TC39... https://github.com/benjamingr/RegExp.escape/issues/37 +function regExpQuote(string) { + return string.replace(/[-\\^$*+?.()|[\]{}]/g, '\\$&') +} + +function regExpQuoteReplacement(string) { + return string.replace(/[$]/g, '$$') +} + +const DRY_RUN = false + +function walkAsync(directory, excludedDirectories, fileCallback, errback) { + if (excludedDirectories.has(path.parse(directory).base)) { + return + } + fs.readdir(directory, (err, names) => { + if (err) { + errback(err) + return + } + names.forEach((name) => { + const filepath = path.join(directory, name) + fs.lstat(filepath, (err, stats) => { + if (err) { + process.nextTick(errback, err) + return + } + if (stats.isDirectory()) { + process.nextTick(walkAsync, filepath, excludedDirectories, fileCallback, errback) + } else if (stats.isFile()) { + process.nextTick(fileCallback, filepath) + } + }) + }) + }) +} + +function replaceRecursively(directory, excludedDirectories, allowedExtensions, original, replacement) { + original = new RegExp(regExpQuote(original), 'g') + replacement = regExpQuoteReplacement(replacement) + const updateFile = DRY_RUN ? (filepath) => { + if (allowedExtensions.has(path.parse(filepath).ext)) { + console.log(`FILE: ${filepath}`) + } else { + console.log(`EXCLUDED:${filepath}`) + } + } : (filepath) => { + if (allowedExtensions.has(path.parse(filepath).ext)) { + sh.sed('-i', original, replacement, filepath) + } + } + walkAsync(directory, excludedDirectories, updateFile, (err) => { + console.error('ERROR while traversing directory!:') + console.error(err) + process.exit(1) + }) +} + +function main(args) { + if (args.length !== 2) { + console.error('USAGE: change-version old_version new_version') + console.error('Got arguments:', args) + process.exit(1) + } + const oldVersion = args[0] + const newVersion = args[1] + const EXCLUDED_DIRS = new Set([ + '.git', + 'node_modules', + 'vendor' + ]) + const INCLUDED_EXTENSIONS = new Set([ + // This extension whitelist is how we avoid modifying binary files + '', + '.css', + '.html', + '.js', + '.json', + '.md', + '.scss', + '.txt', + '.yml' + ]) + replaceRecursively('.', EXCLUDED_DIRS, INCLUDED_EXTENSIONS, oldVersion, newVersion) +} + +main(process.argv.slice(2)) diff --git a/site/themes/docsy/assets/vendor/bootstrap/build/gcp-key.json.enc b/site/themes/docsy/assets/vendor/bootstrap/build/gcp-key.json.enc new file mode 100644 index 0000000000000000000000000000000000000000..6e1856a2f1c95b55f73101734af73272433bdee8 GIT binary patch literal 2304 zcmV+b3IFzxZA?8W-J-Q?pGQrAO<8@v!_)4Uwd^2~Vd9$Vm|b?( z?ch-s^2r{NFt&oUa@q~`;8Bc{7WZ0?YsskKYrAU}r6}nO(3U-3phxs|19xldW?s)K zuAS@-y>6d!ruNVy)3vN0-|bPTN1P2OF!(h z;jMm^W%LD(l=?sBEVFoffZ9{9H^j)OBg9{>S&?{eNq^09$q*}G{Ef~sP9@ItrG(l{weLDQK_yWmrSX3b? z5QShSj74!18t^~lM_rH0dN6N1f+^Ack~Tc@GmEm6@Ymle+hMp@RU^ZkDBm{jvP{XY zqOFkL4y{yIfQvvRHdtN<%B?L4yc+A@JjVjycTwam z>Klh29R=c`7(x{$1z=1a3r2?#-y~g|)SJ*hcVER|EsVqXs|+A{l9wlFA|)qYgOG9> zh=x7e^*;;^^;{Zl-WoGxIh|fbpODaNMh$=lY3f8w;B3q}tAYi)=R$GY$8&r8aBkif zpL*Tgp9fN;lxt+7DSEp;6np@{#q#bIwpN)SZY_{gI${vG)2f4PXK`uC8y=hQP-^PN z+Mi}H*Dq1wKXi+69Xzf*zZqti2aoDT$mBq7@gBmeAFb*oi7c1*j%wtuRy?Eg*?XnN zgl%;JivUHp>f6BKFt(utO6;$@x))jYf# zh)s|eE3FIr?xBCc>DAq}6OU#EL@OZNDzh{Icq74+H{^??x`^}0sMv~NpBt)XbYlaI3NPM-TW|5fGgOGst~qLZ*)cFyCqvBmY0x0C zCX_%4{83Y^-K%T?udNV19j--SkX(Im-2q^g^0p-_h82)OdFUI?`$GRsp7u>8se)L= z{cYj!#PUIJ@!t_9%&bgcl@4giQ7tdeqBnyF2~u#0AMO$o^@VNXS)Bgz2`u94G;a^g z3Q_guBkSpSbbzB>in!bf`WOk1r5}FA8a;H_ z_I-?*ja54)`HoIf(D>L*h#J<(!GgIryZ@2<7&Ps@%-#_H@AeppXDY1WkEd>`d7=Xb zn!$*K=fJtqPRtQ``eZ1x)3>oxG!ui1dPasrCtXD35#~=J$p5tn>}z!-BAlv>vq(-I zE@};L6}~!J+D~dc<^sv7*7bSljldgO>vtZL?3=EjB11Kpj2%O&tg21M*-s-4bC=?t zPUP8bZi#&35%eLJY@#=w>hu4qXK$gtb*x!};cgreoU~wcZm1`-9?AnMZ$2>sE_MFs ztWCdI{mZq|=Bb<>u#Nt{cI=@QV-cjA54hyTVlvP)MfA~;!2_Mb0DX-#XW4onySRC9K4*S8TUv zXMu~#?FG+2F*){5wtx)A$Og22GW$3VOpqzT!j}7m$D}hYeY>SnS~FUk83PJ^Ya4Ki zeEZ!5osn2x2WBE3gNzP@=f+1#c7mqle~vB=^)MK-MCFKLq#LIS4Va*B9W^kwABQ zHvWBD2E-Zr!3In5maYcH?;#YAlRDtLh^b%ajHH3=0~8{f0|k&+1r-LXZqQUp{gfE` zHIA_gx1|WMaWd09)czghGn)?B3cbNVu=1mL6*cZw=q5uaYrdH)z|~8MwB}XXF1J-n z>fSK^?eY`d&sUWI#V#sKtT-J`!TtfA8jnI9Dx^Ubwl;&mBtyhg26otwtr2J{^`!e6L)VRK(oYE+a?4JQ$bJWxlMJSueQls&x$!&+{;MYc~Hg@P?wx_d769g|DV;Rs0I|zZ4ME!&( z$?OP}2-A7R(QWyeZ0=cYfJ0@^lZ)A58ulT+Qyo-^1l~bI#>4Jji5C=}fXR5da#ucX z@mm>iiwwWX5D@j|VtkSu?9HPzJG965Qzt7?^8CoY)VbP>Z@WC}y?JFucRpFa7&Kwe afGW&K=C^8EUGw4=)np=s6ArQnJEPS0HHaDj literal 0 HcmV?d00001 diff --git a/site/themes/docsy/assets/vendor/bootstrap/build/generate-sri.js b/site/themes/docsy/assets/vendor/bootstrap/build/generate-sri.js new file mode 100644 index 0000000000..4d5c25c44e --- /dev/null +++ b/site/themes/docsy/assets/vendor/bootstrap/build/generate-sri.js @@ -0,0 +1,58 @@ +#!/usr/bin/env node + +/*! + * Script to generate SRI hashes for use in our docs. + * Remember to use the same vendor files as the CDN ones, + * otherwise the hashes won't match! + * + * Copyright 2017-2018 The Bootstrap Authors + * Copyright 2017-2018 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ + +const fs = require('fs') +const path = require('path') +const sriToolbox = require('sri-toolbox') +const sh = require('shelljs') + +sh.config.fatal = true + +const configFile = path.join(__dirname, '../_config.yml') + +// Array of objects which holds the files to generate SRI hashes for. +// `file` is the path from the root folder +// `configPropertyName` is the _config.yml variable's name of the file +const files = [ + { + file: 'dist/css/bootstrap.min.css', + configPropertyName: 'css_hash' + }, + { + file: 'dist/js/bootstrap.min.js', + configPropertyName: 'js_hash' + }, + { + file: 'site/docs/4.1/assets/js/vendor/jquery-slim.min.js', + configPropertyName: 'jquery_hash' + }, + { + file: 'site/docs/4.1/assets/js/vendor/popper.min.js', + configPropertyName: 'popper_hash' + } +] + +files.forEach((file) => { + fs.readFile(file.file, 'utf8', (err, data) => { + if (err) { + throw err + } + + const integrity = sriToolbox.generate({ + algorithms: ['sha384'] + }, data) + + console.log(`${file.configPropertyName}: ${integrity}`) + + sh.sed('-i', new RegExp(`(\\s${file.configPropertyName}:\\s+"|')(\\S+)("|')`), `$1${integrity}$3`, configFile) + }) +}) diff --git a/site/themes/docsy/assets/vendor/bootstrap/build/lint-vars.js b/site/themes/docsy/assets/vendor/bootstrap/build/lint-vars.js new file mode 100644 index 0000000000..8873d3670a --- /dev/null +++ b/site/themes/docsy/assets/vendor/bootstrap/build/lint-vars.js @@ -0,0 +1,80 @@ +#!/usr/bin/env node + +/*! + * Script to find unused Sass variables. + * Copyright 2017-2018 The Bootstrap Authors + * Copyright 2017-2018 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ + +const fs = require('fs') +const path = require('path') +const glob = require('glob') + +// Blame TC39... https://github.com/benjamingr/RegExp.escape/issues/37 +function regExpQuote(str) { + return str.replace(/[-\\^$*+?.()|[\]{}]/g, '\\$&') +} + +let globalSuccess = true + +function findUnusedVars(dir) { + if (!(fs.existsSync(dir) && fs.statSync(dir).isDirectory())) { + console.log(`"${dir}": Not a valid directory!`) + process.exit(1) + } + + console.log(`Finding unused variables in "${dir}"...`) + + // A variable to handle success/failure message in this function + let unusedVarsFound = false + + // Array of all Sass files' content + const sassFiles = glob.sync(path.join(dir, '**/*.scss')) + // String of all Sass files' content + let sassFilesString = '' + + sassFiles.forEach((file) => { + sassFilesString += fs.readFileSync(file, 'utf8') + }) + + // Array of all Sass variables + const variables = sassFilesString.match(/(^\$[a-zA-Z0-9_-]+[^:])/gm) + + console.log(`Found ${variables.length} total variables.`) + + // Loop through each variable + variables.forEach((variable) => { + const re = new RegExp(regExpQuote(variable), 'g') + const count = (sassFilesString.match(re) || []).length + + if (count === 1) { + console.log(`Variable "${variable}" is not being used.`) + unusedVarsFound = true + globalSuccess = false + } + }) + + if (unusedVarsFound === false) { + console.log(`No unused variables found in "${dir}".`) + } +} + +function main(args) { + if (args.length < 1) { + console.log('Wrong arguments!') + console.log('Usage: lint-vars.js folder [, folder2...]') + process.exit(1) + } + + args.forEach((arg) => { + findUnusedVars(arg) + }) + + if (globalSuccess === false) { + process.exit(1) + } +} + +// The first and second args are: path/to/node script.js +main(process.argv.slice(2)) diff --git a/site/themes/docsy/assets/vendor/bootstrap/build/postcss.config.js b/site/themes/docsy/assets/vendor/bootstrap/build/postcss.config.js new file mode 100644 index 0000000000..7394ba382e --- /dev/null +++ b/site/themes/docsy/assets/vendor/bootstrap/build/postcss.config.js @@ -0,0 +1,12 @@ +module.exports = (ctx) => ({ + map: ctx.file.dirname.includes('examples') ? false : { + inline: false, + annotation: true, + sourcesContent: true + }, + plugins: { + autoprefixer: { + cascade: false + } + } +}) diff --git a/site/themes/docsy/assets/vendor/bootstrap/build/rollup.config.js b/site/themes/docsy/assets/vendor/bootstrap/build/rollup.config.js new file mode 100644 index 0000000000..df88fb304d --- /dev/null +++ b/site/themes/docsy/assets/vendor/bootstrap/build/rollup.config.js @@ -0,0 +1,51 @@ +const path = require('path') +const babel = require('rollup-plugin-babel') +const resolve = require('rollup-plugin-node-resolve') + +const pkg = require(path.resolve(__dirname, '../package.json')) +const BUNDLE = process.env.BUNDLE === 'true' +const year = new Date().getFullYear() + +let fileDest = 'bootstrap.js' +const external = ['jquery', 'popper.js'] +const plugins = [ + babel({ + exclude: 'node_modules/**', // Only transpile our source code + externalHelpersWhitelist: [ // Include only required helpers + 'defineProperties', + 'createClass', + 'inheritsLoose', + 'defineProperty', + 'objectSpread' + ] + }) +] +const globals = { + jquery: 'jQuery', // Ensure we use jQuery which is always available even in noConflict mode + 'popper.js': 'Popper' +} + +if (BUNDLE) { + fileDest = 'bootstrap.bundle.js' + // Remove last entry in external array to bundle Popper + external.pop() + delete globals['popper.js'] + plugins.push(resolve()) +} + +module.exports = { + input: path.resolve(__dirname, '../js/src/index.js'), + output: { + banner: `/*! + * Bootstrap v${pkg.version} (${pkg.homepage}) + * Copyright 2011-${year} ${pkg.author} + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */`, + file: path.resolve(__dirname, `../dist/js/${fileDest}`), + format: 'umd', + globals, + name: 'bootstrap' + }, + external, + plugins +} diff --git a/site/themes/docsy/assets/vendor/bootstrap/build/ship.sh b/site/themes/docsy/assets/vendor/bootstrap/build/ship.sh new file mode 100755 index 0000000000..e3b256e914 --- /dev/null +++ b/site/themes/docsy/assets/vendor/bootstrap/build/ship.sh @@ -0,0 +1,70 @@ +#!/usr/bin/env bash +# +# Usage +# --------------- +# 1. Clone second version of Bootstrap in sibling directory named `bs-docs`. +# 2. Within `bs-docs` copy, switch to `gh-pages` branch. +# 3. Pull latest, re-bundle, re-npm. +# 4. Run script. + +red=$'\e[1;31m' +green=$'\e[1;32m' +#blue=$'\e[1;34m' +magenta=$'\e[1;35m' +#cyan=$'\e[1;36m' +end=$'\e[0m' + +# Get current version from package.json +current_version=$(node -p "require('./package.json').version") + +if [[ $# -lt 1 ]]; then + printf "\n%s⚠️ Shipping aborted. You must specify a version.\n%s" $red $end + exit 1 +fi + +# Pulling latest changes, just to be sure +printf "\n%s=======================================================%s" $magenta $end +printf "\n%sPulling latest changes...%s" $magenta $end +printf "\n%s=======================================================\n\n%s" $magenta $end +git pull origin v4-dev + +# Update version number +printf "\n%s=======================================================%s" $magenta $end +printf "\n%sUpdating version number...%s" $magenta $end +printf "\n%s=======================================================\n%s" $magenta $end +npm run release-version "$current_version" "$1" + +# Compile latest CSS and JS +printf "\n%s=======================================================%s" $magenta $end +printf "\n%sCompile latest CSS and JS...%s" $magenta $end +printf "\n%s=======================================================\n%s" $magenta $end +npm run dist + +# Generate the SRI hashes +printf "\n%s=======================================================%s" $magenta $end +printf "\n%sGenerate the SRI hashes...%s" $magenta $end +printf "\n%s=======================================================\n%s" $magenta $end +npm run release-sri + +# Compress the dist files +printf "\n%s=======================================================%s" $magenta $end +printf "\n%sCompressing the dist files...%s" $magenta $end +printf "\n%s=======================================================\n%s" $magenta $end +npm run release-zip + +# Compile the docs +printf "\n%s=======================================================%s" $magenta $end +printf "\n%sCompile hosted documentation...%s" $magenta $end +printf "\n%s=======================================================\n%s" $magenta $end +npm run docs-github + +# Copy the contents of the built docs site over to `bs-docs` repo +printf "\n%s=======================================================%s" $magenta $end +printf "\n%sCopy it over...%s" $magenta $end +printf "\n%s=======================================================\n%s" $magenta $end +cp -rf _gh_pages/. ../bs-docs/ +printf "\nDone!\n" + +printf "\n%s=======================================================%s" $green $end +printf "\n%sSuccess, $1 is ready to review and publish.%s" $green $end +printf "\n%s=======================================================\n\n%s" $green $end diff --git a/site/themes/docsy/assets/vendor/bootstrap/build/svgo.yml b/site/themes/docsy/assets/vendor/bootstrap/build/svgo.yml new file mode 100644 index 0000000000..3d6a039d55 --- /dev/null +++ b/site/themes/docsy/assets/vendor/bootstrap/build/svgo.yml @@ -0,0 +1,52 @@ +# Usage: +# install svgo globally: `npm i -g svgo` +# svgo --config=build/svgo.yml --input=foo.svg + +# https://github.com/svg/svgo/blob/master/docs/how-it-works/en.md +# replace default config + +multipass: true +full: true + +# https://github.com/svg/svgo/blob/master/lib/svgo/js2svg.js#L6 for more config options + +js2svg: + pretty: true + indent: 2 + +plugins: + - cleanupAttrs: true + - cleanupEnableBackground: true + - cleanupIDs: true + - cleanupListOfValues: true + - cleanupNumericValues: true + - collapseGroups: true + - convertColors: true + - convertPathData: true + - convertShapeToPath: true + - convertStyleToAttrs: true + - convertTransform: true + - inlineStyles: true + - mergePaths: true + - minifyStyles: true + - moveElemsAttrsToGroup: true + - moveGroupAttrsToElems: true + - removeComments: true + - removeDesc: true + - removeDoctype: true + - removeEditorsNSData: true + - removeEmptyAttrs: true + - removeEmptyContainers: true + - removeEmptyText: true + - removeHiddenElems: true + - removeMetadata: true + - removeNonInheritableGroupAttrs: true + - removeTitle: true + - removeUnknownsAndDefaults: true + - removeUnusedNS: true + - removeUselessDefs: true + - removeUselessStrokeAndFill: true + - removeViewBox: false + - removeXMLNS: false + - removeXMLProcInst: false + - sortAttrs: true diff --git a/site/themes/docsy/assets/vendor/bootstrap/build/vnu-jar.js b/site/themes/docsy/assets/vendor/bootstrap/build/vnu-jar.js new file mode 100644 index 0000000000..5fd214a9d0 --- /dev/null +++ b/site/themes/docsy/assets/vendor/bootstrap/build/vnu-jar.js @@ -0,0 +1,66 @@ +#!/usr/bin/env node + +/*! + * Script to run vnu-jar if Java is available. + * Copyright 2017-2018 The Bootstrap Authors + * Copyright 2017-2018 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ + +const childProcess = require('child_process') +const vnu = require('vnu-jar') + +childProcess.exec('java -version', (error, stdout, stderr) => { + if (error) { + console.error('Skipping vnu-jar test; Java is missing.') + return + } + + const is32bitJava = !stderr.match(/64-Bit/) + + // vnu-jar accepts multiple ignores joined with a `|`. + // Also note that the ignores are regular expressions. + const ignores = [ + // "autocomplete" is included in ') + assert.ok(!$btn.hasClass('active'), 'btn does not have active class') + $btn.bootstrapButton('toggle') + assert.ok($btn.hasClass('active'), 'btn has class active') + }) + + QUnit.test('should toggle active when btn children are clicked', function (assert) { + assert.expect(2) + var $btn = $('') + var $inner = $('') + $btn + .append($inner) + .appendTo('#qunit-fixture') + assert.ok(!$btn.hasClass('active'), 'btn does not have active class') + $inner.trigger('click') + assert.ok($btn.hasClass('active'), 'btn has class active') + }) + + QUnit.test('should toggle aria-pressed', function (assert) { + assert.expect(2) + var $btn = $('') + assert.strictEqual($btn.attr('aria-pressed'), 'false', 'btn aria-pressed state is false') + $btn.bootstrapButton('toggle') + assert.strictEqual($btn.attr('aria-pressed'), 'true', 'btn aria-pressed state is true') + }) + + QUnit.test('should toggle aria-pressed on buttons with container', function (assert) { + assert.expect(1) + var groupHTML = '
    ' + + '' + + '' + + '
    ' + $('#qunit-fixture').append(groupHTML) + $('#btn1').bootstrapButton('toggle') + assert.strictEqual($('#btn1').attr('aria-pressed'), 'true') + }) + + QUnit.test('should toggle aria-pressed when btn children are clicked', function (assert) { + assert.expect(2) + var $btn = $('') + var $inner = $('') + $btn + .append($inner) + .appendTo('#qunit-fixture') + assert.strictEqual($btn.attr('aria-pressed'), 'false', 'btn aria-pressed state is false') + $inner.trigger('click') + assert.strictEqual($btn.attr('aria-pressed'), 'true', 'btn aria-pressed state is true') + }) + + QUnit.test('should trigger input change event when toggled button has input field', function (assert) { + assert.expect(1) + var done = assert.async() + + var groupHTML = '
    ' + + '' + + '
    ' + var $group = $(groupHTML).appendTo('#qunit-fixture') + + $group.find('input').on('change', function (e) { + e.preventDefault() + assert.ok(true, 'change event fired') + done() + }) + + $group.find('label').trigger('click') + }) + + QUnit.test('should check for closest matching toggle', function (assert) { + assert.expect(12) + var groupHTML = '
    ' + + '' + + '' + + '' + + '
    ' + var $group = $(groupHTML).appendTo('#qunit-fixture') + + var $btn1 = $group.children().eq(0) + var $btn2 = $group.children().eq(1) + + assert.ok($btn1.hasClass('active'), 'btn1 has active class') + assert.ok($btn1.find('input').prop('checked'), 'btn1 is checked') + assert.ok(!$btn2.hasClass('active'), 'btn2 does not have active class') + assert.ok(!$btn2.find('input').prop('checked'), 'btn2 is not checked') + $btn2.find('input').trigger('click') + assert.ok(!$btn1.hasClass('active'), 'btn1 does not have active class') + assert.ok(!$btn1.find('input').prop('checked'), 'btn1 is not checked') + assert.ok($btn2.hasClass('active'), 'btn2 has active class') + assert.ok($btn2.find('input').prop('checked'), 'btn2 is checked') + + $btn2.find('input').trigger('click') // Clicking an already checked radio should not un-check it + assert.ok(!$btn1.hasClass('active'), 'btn1 does not have active class') + assert.ok(!$btn1.find('input').prop('checked'), 'btn1 is not checked') + assert.ok($btn2.hasClass('active'), 'btn2 has active class') + assert.ok($btn2.find('input').prop('checked'), 'btn2 is checked') + }) + + QUnit.test('should not add aria-pressed on labels for radio/checkbox inputs in a data-toggle="buttons" group', function (assert) { + assert.expect(2) + var groupHTML = '
    ' + + '' + + '' + + '
    ' + var $group = $(groupHTML).appendTo('#qunit-fixture') + + var $btn1 = $group.children().eq(0) + var $btn2 = $group.children().eq(1) + + $btn1.find('input').trigger('click') + assert.ok($btn1.is(':not([aria-pressed])'), 'label for nested checkbox input has not been given an aria-pressed attribute') + + $btn2.find('input').trigger('click') + assert.ok($btn2.is(':not([aria-pressed])'), 'label for nested radio input has not been given an aria-pressed attribute') + }) + + QUnit.test('should handle disabled attribute on non-button elements', function (assert) { + assert.expect(2) + var groupHTML = '
    ' + + '' + + '
    ' + var $group = $(groupHTML).appendTo('#qunit-fixture') + + var $btn = $group.children().eq(0) + var $input = $btn.children().eq(0) + + $btn.trigger('click') + assert.ok($btn.is(':not(.active)'), 'button did not become active') + assert.ok(!$input.is(':checked'), 'checkbox did not get checked') + }) + + QUnit.test('dispose should remove data and the element', function (assert) { + assert.expect(2) + + var $el = $('
    ') + var $button = $el.bootstrapButton() + + assert.ok(typeof $button.data('bs.button') !== 'undefined') + + $button.data('bs.button').dispose() + + assert.ok(typeof $button.data('bs.button') === 'undefined') + }) + + QUnit.test('should return button version', function (assert) { + assert.expect(1) + + if (typeof Button !== 'undefined') { + assert.ok(typeof Button.VERSION === 'string') + } else { + assert.notOk() + } + }) +}) diff --git a/site/themes/docsy/assets/vendor/bootstrap/js/tests/unit/carousel.js b/site/themes/docsy/assets/vendor/bootstrap/js/tests/unit/carousel.js new file mode 100644 index 0000000000..baabcf426f --- /dev/null +++ b/site/themes/docsy/assets/vendor/bootstrap/js/tests/unit/carousel.js @@ -0,0 +1,944 @@ +$(function () { + 'use strict' + + QUnit.module('carousel plugin') + + QUnit.test('should be defined on jQuery object', function (assert) { + assert.expect(1) + assert.ok($(document.body).carousel, 'carousel method is defined') + }) + + QUnit.module('carousel', { + beforeEach: function () { + // Run all tests in noConflict mode -- it's the only way to ensure that the plugin works in noConflict mode + $.fn.bootstrapCarousel = $.fn.carousel.noConflict() + }, + afterEach: function () { + $.fn.carousel = $.fn.bootstrapCarousel + delete $.fn.bootstrapCarousel + $('#qunit-fixture').html('') + } + }) + + QUnit.test('should provide no conflict', function (assert) { + assert.expect(1) + assert.strictEqual(typeof $.fn.carousel, 'undefined', 'carousel was set back to undefined (orig value)') + }) + + QUnit.test('should throw explicit error on undefined method', function (assert) { + assert.expect(1) + var $el = $('
    ') + $el.bootstrapCarousel() + try { + $el.bootstrapCarousel('noMethod') + } catch (err) { + assert.strictEqual(err.message, 'No method named "noMethod"') + } + }) + + QUnit.test('should return jquery collection containing the element', function (assert) { + assert.expect(2) + var $el = $('
    ') + var $carousel = $el.bootstrapCarousel() + assert.ok($carousel instanceof $, 'returns jquery collection') + assert.strictEqual($carousel[0], $el[0], 'collection contains element') + }) + + QUnit.test('should type check config options', function (assert) { + assert.expect(2) + + var message + var expectedMessage = 'CAROUSEL: Option "interval" provided type "string" but expected type "(number|boolean)".' + var config = { + interval: 'fat sux' + } + + try { + $('
    ').bootstrapCarousel(config) + } catch (err) { + message = err.message + } + + assert.ok(message === expectedMessage, 'correct error message') + + config = { + keyboard: document.createElement('div') + } + expectedMessage = 'CAROUSEL: Option "keyboard" provided type "element" but expected type "boolean".' + + try { + $('
    ').bootstrapCarousel(config) + } catch (err) { + message = err.message + } + + assert.ok(message === expectedMessage, 'correct error message') + }) + + QUnit.test('should not fire slid when slide is prevented', function (assert) { + assert.expect(1) + var done = assert.async() + $('

    + + Bootstrap logo + + +

  • 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 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-solid-900.ttf b/site/themes/docsy/assets/vendor/Font-Awesome/web-fonts-with-css/webfonts/fa-solid-900.ttf new file mode 100644 index 0000000000000000000000000000000000000000..54a26e54ad8f708d5856dfc5ebe9a0d87c8f6539 GIT binary patch literal 160548 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≠ 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 literal 0 HcmV?d00001 diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/use-on-desktop/Font Awesome 5 Free-Regular-400.otf b/site/themes/docsy/assets/vendor/Font-Awesome/use-on-desktop/Font Awesome 5 Free-Regular-400.otf new file mode 100644 index 0000000000000000000000000000000000000000..d48bdef3f170f2d3086b8215dde55dcf6e930711 GIT binary patch literal 140160 zcmdSC34B%6x%a>mlk-J>{<~W``!+(d3=0=}md*^81 zkL$ss$2Xlf;gE{Nl?>|XT0IBycyCT@Xl!yJ zPh92I6oXtq$$vdZ{&dR^s*m36dX(s)d!n&DPXBh~U(7#TeRc3K*P-)|txxc9o_p0- z=U-H5BdJT_-=CZVj;FaS4SpG1?lR78_fl{+*C(cbH@h9(EXR2#s7pL{!uBPPYX}yoDD0w-p_jNm!?v>WF zuBP;ywBFxUlrDgag0k&^ZU_GJ^}rqG_D<_1uF6eI>!sXZoYu>zzmnE7?ttK^v|dhq zW?HXw-w7T|>pk27CI6Y$d%L|#u1)KGTvf?m(|TWbSjpRIJ?r)={Zd-*@2W~KbSJn5 zH^DW5;V-%=uHH3rJ)XbrgoX)CgT6SWzOiAvuKq={LGDnxp5P|YrJmYfP)9^GrW1sxRIY9bnu~v9DKykBMv(BFdh_O+nNA}c4D;~ zoCtZy1rH(}(UriO-bW5+bn zdNiGyn5q$E9LWF9wrQGRh_3u~fK5N1=1ol#8$W;GfoHR;1vQd%ad<=)P&tmIYx-s@UiIgB+30v+kT>!z;DtgBeJ{kq-P z4PJM^x?|TJzwY#P6V^>!*SM~E-Sl-W>n>S0Z{3yau3vYNc7PhS6@>%X_Ye*GouuULP_`bXFQe*Kf{Us(V8`ghmA zx1n;wS2vur;fxJuZfM#tbwjja{)T%u{CLCt8y?*7^9_IA@XUs{HkNGMXX6#mU zwiVnffcw{5!M#HlxKCPt>iRR*k6b@{{UYH0SvR;(1n$#-``iuZ8{BJCxPP|c@lLqE z^AWhu-+a;LrJGl5zNY|p{`q`+{xA7I@sIIBnRP}n*<5dq<{iN#7s#~gVs9I9BxN2tAiB-o}9b0uwRjz8Us{U2k zUT^n$v)3EFUhnlvucvzbsn^eX-O+1quhV<=?)g&BTYL8C@sA#V=~3UKw#V^3j_YxF zkAr&b(PL1L?R)f1tr95z|J%QyJaqy-0dR>#=f9FtSC%QS2)C>3(X*GoTUFh=Pv4q; z+5X$_u;YN8cHU*zfrED2eUHI=?zQ(mzQMk^{q`Snz<~!H{JBGh9(vf}M;!V2qmDl2 z*e@LS#V>UZ`~SF7@S5g#ztuM%MV*zN6%Ak8x%%pk+RQG_Rs5rx(z)K0+g;g5^`X1CV8zjW-L)FD z+*RVo)Zk|g#N6zUJRj}8;=YYGl4+Ujrn@=ra(A`6(cR+ia%1djxd2mc*B5xg2~ z2;MI#Dd|y?Eg4*LK*{GzjxRa6R;^NZq)mv&Yqq8s5+_c6{BWv17*9jjFF7Ii{&; z%=r4oAtT1nw0^|s`VnK(`nk>ZjZI@3CZw13=hyT9A&uke8b^<)8&^MJWZfi)a80y{n=eFnmkmBQ4{MX)=wG&b|%!H z-P|<1VcdlJDUEhhxK0^lTtj31NT@qe97Lyv;pfzkXc{tVQbY5^wB9_yuHdl|W6vKl zp`ocBUY$@sx}kZ}D3}b~!V{C=UQck%YPH4@V;UP9Ci&;%#!M9lscGZH&bDHtwDrXL zx)JpSk^*%z6iS)bsM>jDV$gYIfUHVOlX*b zERU^knuIh8IHP6bh;d^k8V}b^f~j>soy$1!BR9oGAGv8f`H{QL6GzpLM{MiQA2NIl zRA%TDLWtH_UqBN)*=RyFgr{TWZVyTQ?IGhDMl}pMyLlXZGiuWLBgaggdj8o^V|4vU z6F|e-s7b72L_L3KGiHKjvA@IX>&AChhBQv8uk-i4rn4sqAw=&|9nypvZ1gu+rLPt5 zH8o5a)oe2j@m0xeVTAOK)?fpuG8V4We?tU}RdjcVfiSMFdDLht?5VH$@qArPQ87b? zvwEvcY8W?;MGirwHa6D50h3T-BR$MgN;Xbo^Q4KB#t{9CL0SHb&`uV)5JGpYcZ-BS z;gPIwfQ_woeOzBGZ9kVK6S6&7g&oO%?B;fNd$_@FPq!ELcOQbxoZAmOJcO9wK& z?sEj9LoEP3oKW;gBC@00m)w`hulxt`)rnZ^uez_fue)!!libPf6jC|gBrN}yJI&R) zVOa9-xYM!bX9RPCxxu{P(jW>h3+4w4u+5hTi-IeH#le-ql3;0YRd981O>k|nEVwSX z9=p9fxFNVPxGA_fSP`rYZV7G;ei+;qv<7X#?ZF+vs$eyi{jT8d;2!Mz+Th;cN5Or; zkAt5C_haoJ41O9s6g(XKEckiw3vx=21iuP?9sDMEH27`sSn#{x_rV{6Ke|?Yfs91@8HScZ^2W+)4?-tW${PO|dm5(=*R%{D$~pX| zArC%9VWRN)K^m-*n}@T>1Vkyuwx1yIvDquWMaZ=7-o0J#!(H#wU7zz^ zpBr7DdtKjJ*LSAtd!6h1N7pxY{pwu57hV4w-1g_X9glH4e%I~zC%5A|H(-z(@SkqL zbT{B8x6{pT=SSQwe|H0WyFnQ@XtLXVU$^@LxBFdgk0ab3W85AWy21CjJx_3ZMQ-os z+`e$n{Vw;q+i$$v?+v#<$*{xS{%5)UA9DM@><-+{9dw>Mzjh~I>%Mic`}Vc&JLBE=?{Rf?Zur@5 z)Ic}(DK~Mkn>@&!-{LMf++Dc4yJ&Ye>nJz(1b5kiZhqnxgl@rJZs9}j^1I#Qsc!K+ zxA;AGK>Wte*J;_?V0Ye$KCI*b&o&q+K+TkeBV9wfP1dO zy*%B$a;JOk0{7+yw_&Jzcalq-`{2=_X(Ave+~M)74&^7=(k^x zeKE*>81%nA7%(^3b!IT=Pr+`PVDR8z&-;SCt`7FzG1z-!u+P_n0~>=wrUi%pIQaaj z!BM9M$L<<@VY}c9n}XvW4~|cQ69)t*9ua)ymf*~5gSu;j5w`^+FAM6w6O7t57U+VM9|Yre4JPa#G<*;=Zw}5oJeW2wn08xmL1S>?h@jNiKA2My%-tAV zIybnqHMsN_!TkBbqB+6hZv;z*2TNLltNU)*ttvUaDmfuOepPU1yk}|rwRluE*>iNf zXL(i9`iqBy+aE4{{ukMYhYhQ!I{2Yg@y}NWEANeuU0b>`zBrro&bwS|+evv>TU(oV zr?s|mt=h3Frnk238s**5+|6&!@#uhDYd-(F9u3sJV(qyWmv`0ewfX#CTic>ApKsOk zc3S3trrONf+JW(y%d+|WwYq#k#qag>*PVs#xzDMnudRJ2?{==OeK7Bi&T$#3b>kfk^AFAR z4_!W8TN@_*lHH=Q@kJ~k`AU?j+WVo^@lLDb{;T`O6W5MeTk~psQ+!}{P-V?JgBg6& z)77Zhg_(ZDTsv!2TSWg>C}p7c*1clwrS@SgLUS@PF#W-n@c;h7Ch-`aJ|sI}!aum0lJeEu~}`rn%6&#Jwo;x%191|!&VqtVwG z9&Zh&o|9=Czh?S_OtGg;v$)acg>^tkB&zTU^u_X0mO^MxljlW)(h1wJzw{w$* zG=IiQV7q3_t>HA`^q%SWGm~(78<5k|^{2bbswmcaFs|D`O; zG7tb+fE!d>djVx@TSK_)_RQGZ>aYDl^aB?5EYoS6eEtZMIw z55f2sQEPj3f=*p)yXon=*0vu-cQEJ9IdIWKg~U_^tX8O|Pj+e_M$6rJRM(%G3<$&f zoAeV!kQ`sWB|3?y`Bwo)G=!FUSJC38UpxKUl-@P%5~dvlFRF$~c`Pv=cCAUYFS%ho zTib3%o2nhH`?kYtpTIL=)xl3rj-N&2o!61gCdVev-WSDRh@X$zlG#x-Dr4&Z7pwZ- zgf@u}U3<=&nqS6u#zV5vjrsh0E$+WATz28IeEzK#x3qClSo5lBO6X(gK>Gqg&Y(6e zv#GVs!!NnM-lUuIpRH|Ij$+;DGs=I~4!hW%oFCRa?koAcIvRdV6VmE08cFE8pU4`!i?f?X~1G_peX)sd+j|eU~gN- zKs7Z5qgJVcDO5cJxgC(gyxSFtNcykOdTDf}f=$xsDg+=@zbdSG(pS7Nx@toaS~*%y zs~p2uGry#qfi+vPRs%gvAXcW=OA0G|jS$!etjNo)%3Bs}6i<)uvVPVXK1`UV+>mN7=}X_(gfQUwdt1Yh&ve z(9+^0-QJYGD9PE>E|?g#dtnb=Xs?aNM0Bhaf?lkxy}>k*F99h>KkSl8YEfqTiPRYt zeOlX=7RsK?uxddr}~va2g8bE3K^;n3<;;#-0+}X=-*XYWA+_ zGQHl|?=C#`0Tc`T*Jq6x@rcRDQoz(s&8#Q`~mZF%>zXIJ_oV16u2m)aICcvO9 zyg<>VCQamO%#rc@LwSYWL3C;BOPE}JD+GX)2|C5MuA#e(4B82^;!CfR@EOp1;-0YT z+2-5spYrgn@zFp0TU)U5_P@5p18#cjc09<_p=|!At!>MP-ILEhQCsWFho}6W-JsUC zXCug7Tf5Ta=%MiY<+h};a)er^8Pn1GSGLGMYZ)N!97CEf@se@?Jw$3RFUXIi@U_ot zHGM?Z1BIPEblI)g--xbZ4>jpJOl<(_Uev!HVRoRVDf~heo}f|wDN!ijUYIQZH`UNM zD75xr7eb=iT3>=Q-Ic?Ye}_q$qZV@!BD4F^BAXA9p}z}MAUxsC@t`r$>`|FHdDpYG zZ6+OZtq2AR#h2K?()QYE(O6)3shycOsCc85In0eJ);8z=tb)EQM@0<`W9 z&e0Z>%FXzk0DQBZyZdXHzqPjARVaUtZ6OX26;yf><{wjs*KrT(!n(TDeR`C88Ze)K z5W>W_+$#3Mrof`=_cGFD0Gi{`S;G&K;EPph4jWT$G~KG6@AAmW$>~x{a?B%5y&TA; z%)AlaA=h^84cFd~8ejB`8Q(qh9PKe>#K5Y_PfmVqRosHVIUHZ}>?j$!CHPTv&uj6w zqI-ti8)f#5F}#OHPsgWZs>Tq0?65knS=INxweeTioU^uOQ~YP|!FSwcviV;&c_hOG zCCvHss@A)m=5Wiclpv^nbjfl#j*maCn&P z7*EUQ-QgM#XLK@1Hy%fo8X@xe-?X+3+&8W%2heXOQ?uSQOV#pR16BkBF zbv3U3z^W1W)eqkpwB1|U7S9yr5N%Vl*c?gRt{UU-6kTfjLJ5iaL(xNkxvw4?dkPzQd`@6iF!cY3&;D= zdo|((GQ5kKqW!N1rhvl+MBfJRzqWIML?akHla1UVvu{!?o>HsQF z{84Fq)GxAmhkjy0xiT{UEQNU4m&>>T z&u0Gy+P^PQ4-{a3RPkS}ZTsf)kGHmcH=n-|5*$-rb!>s_fTuLR_2q1GYP>^y!fFx( zHSwvdlBsac)N%z*@lmVez5=`SpK)V0{^IK7i*euh>#LLIEy3FIsmYuZ;q0i?~bC5 zV04u1lKe4KHNCUTn0rc}q{~>k#6K>N&rN>ZriLS;DEUdI>QZ#g&x|$a{Rnk)ajI@` zV4(JG#s|Jc>_M$@h-?&e^`-8*-tD!7#=Et)`I6Xch+z{)gNEjA$igGYFqyf>yJ@gu z?Fq39Jdw};jfwe#A`0gMrWip>?zUcbq#37zEB&V zx&gQ%^pYBsLV|E8Lf_s@yCCV91Z2w!k72E6S;dvtE0 ztZZ#NJ31q*s)Nsmu8MbBB|iTuO#F*%Jahx84J8(oH$y%wmSS9srEGw-#vo~~CIZgQ zEpEl+>nAHtY;jlCqucg0-S+qFJLNySrD#e_2Tn9SQaf<(@~w#-|808Kbi&QersY$Y z#jH5gxr&?ZfK-GA=}w`sn!&oKw0G*We`YfOYbwJ4;*F0ZGX#U!pN2onA%p);dG z4v}2A5m-FwD4f>Ra=i-s>>Kw7AOE{7@rfMqS$H*+#}ps3D&E=H=j)iHyW$gp_g$@N z00mxLD_D75*QHt*R>EsS?|BY1N^vu?+>kMmSgLihIc2^?7~1I?QWz$TvDU_iyj*@g z-FoS^DcJ2a;rp7PSR?&1!y{U*V|ZWE>qk*0nH&E-`*wNPRHibV1NXtedd<_iHvY=m z(iLxIQ?Q;F>@xUrOCMoYc^f>Fg4j;a%#Sv&yIAX)Yg<7h91_aCYin7}fZAc0IP^d6 zy!z!|Q9S1z!ZLwx6IIm8(GR7THrR52yjUe#(Tv0ak=BnW5a^<%mR+?B@gScAdwJ)c zIcYFh1dRNTcHnw92QUC<@le;AnVFYOy*(!!h$5D7 zXGI_-)y1sPNO4mNES7%e9fT^Dx9P~y!&>0?qn`>@5V28@kcjisKtcX-z9Xl2@*NE> zucJ%twHyNTzSzrBfBrmSzG(vygLg&*xayaHRf0p-l4T^MWO7;Y;G{?zdwv8)g_ZF z^7;D&l;ts>5h(X}7P{vH*Aq#(#FOhPsz!JV_+xC}_oMibEy10X9l=>qG9dX~rYb(p zKaYRjaYXi<%XUj185}=yRuuQ!60C|g#XsGc{B#vpI3Lj-$*(e1-$2W!l3yCyMLihcZ>WKeTGba@r_yYLhhJwo#hS4?2yxu)!f+PCQq6?$;)~EAE0qWgyK`YX?*AU z376u#F14Mc7R7hz&Pxtj|L{6<^zI02zW2Q~@zUWHNx!n)Dr;^>Of(iQP?~Isb@{S! zsxRNm*wd`|S$u9ywmikb&f*Mpls^b1k|#l*YY^g9V2xbub;;SDgS(q>Xe(LLc=%40v*D)*4ADRI@? zO1-NDB`hT$YwA}tR*D#plGZk&Cn8K=3N?k`GE&Y-Xu0kh(C*Qp`F3QCVy;Q!$26LH z%~T}$m3EB}7-3biJ;BCzR|PBXEnN|xloi2y2m~n_%RhU9qq$Pj?}CZ<1eX_bSA-|j zqqg>DGn3&3w-GWzN?Qz^qzpj1nwM-%Z=mlKFI%#}R@AlDp`^PRSV{DH9Cs=T*v+R>DBv9?)&fZ0^AG(EH3FzJR#~m?nI3AW|C0IGn1#VaIjab}sRj~$R7|%%$ zJ;TD0xPL(y5La-wz`0Qq1f~>jG&)n_wvf)l+==~}A1DTi>w2gQ9Aar$&#A~687yc< zT#a#$!f#Hv{r3aoQ_GW6ZpnH+bp+6O?r;9V!0==H5wGRHWZr04RlO3$fG zb^PD<$I^~f_Wu%(W* z$Kk9onRH)V8lPAXOJUr!m#5818ku@pa5=E%nfOY~MO7Ju#%sX6Xs>PZ4wBC_$W`(+ z()J9eOQ=Zm)PUf0_&s)Ws_?v0_sVLFb`#WqGQLE=KBmp*P;F{9-ns`F?kK^t*3Cumg zs1q-*S6;hW9LQI&)w$bPdUlTbX6) zlxKg^clCp3uBln~d`HjhPfq_{Ma`@Cos=D(EL}tDWA%Toj$im_laX6?%aWeZ`V6DW zNx+~bz&^Ty(*|3#JXB{s|DoWignUxdeW8F5NHEJT8QYe=f@08ve(=`HFkU-6xwB%7 z5n-yuj=NTU4nUVoi3bTCQWU?>emhF4lFBH)csN;(UTbi4ddE8^y?+)ZyT=1ERml(W zi+Wk}XFC2PD;$+qJ!nY9vjL~Q*T&UrYM$vhPn)Bn#vr;786bz$vb=2} z9$nK?D9h-Te;d!EF*GLGy9?3=uBmylD<`(w%Go$h-4VkS3OTH~Z_ZCXP-^Y8RDfvvoz|yIjTDI=G5<6;A-dC_R3UBDK99ihWs8C7K@Q_H`+t?} z5x%DdY?ddrY|`z&*Pbpm*BebaZ{Cnfjdra`ub8n&wT;&~a_Xcx37+6dU&@Osn%-l^ zOnz5xoEHb&+&6J^@#Z?+TwMDVlUEenTP+;d6|nyzMEcChTkP}Ob{70P=fVGh;1A$T zlZY~{%1Hm(3C?M21piuFBNlyoXBg#BbcWL{KD<)%ZO{|M36x&N3s|q*Qxz|i!Q}t5 zLyRi_s84K~6>4x!0Hopo8N2&ZNJUsue`c>DQgHx3w-%&MiLaLf2;-${psz-eD-Nn?J-~4dTuv-UV31MwK$A8M&#y6XvSNgR#Vwi!1QzbKX> zF0qlj#xLXT=t6rf_`=EYC5L@DJp?A{K#AHmb=YK?R&y@HAI-pkiE->?n^f|Jv_$Ho za}hP$SbtJWNRP9T<6dH{u^eS+HQW8XPk_GbhI;x;naQ{?di`!8qPqgt2#3$h(l9i^B2KQ#%Pd2gbX# zS5#ppNM$UY()X^l@qjfo_r>SLM~l&4sjVfJ=D-9|^m>b>DOr}r>rf$tpu+#AyFTdP zuF{1A<3s9_p%o{#j(HS6eQ%oG3KP-Hi`^ix(|O;&NBN7Yq>uS5!Gky}KZxRzWXau8 zTpBMK9vza5&Q#sc)1~Z8UjlB@MrFL*p^b8zhTo zG-YN&aw16(39bzne^c~weja<>4|prC1XiK%$a453tCc7*ibKt5Ihh`@a5lXuf5!)$CuDq^Kxp3FaUyv z@$pcRq0yrABd~$x39I50J66QEWmBdwRf{s1!w~P)YB)+-3T&vwL^^wumRs6uXU(1+ z?lyQuvKI_X;K8F0HD`y4#4=^Rd{6KtEpFz#nP8;@%VFa!43q8um~4L{m|*ld_TPvbwtgR?SjxVf{9$BEY9bV}(j<=`O~0_#hb z_8L03F+5j??J%(x>&eWal1=e;E9^m{k!Z|T;U-Rxsph-5GL4`v-k=t1>O!2TQ!l+h z%*u-BW~?(nA{c<@OAn)0w4FD3M6*Q&gPlg3ADFXiqi!c?3Rs)Rir}&(^OjzERTN$o zExl~Xd?tbzhE&*6&4qp(6hUjjtEZ;?f$;fcXcp)!6NKs%LlCY`y>2S06SH8(^{>)& z4vQB1ngijH1r&`i>8o(KM{J>dwZ)MY!XPb1DKL4;_yS8tPF6@m`YAN)RQ~ztH7gHz z43XmF~*>StHoI1qi-iR%*`g{T6E?D4Dv} zROwy65;f>0+_l%Lqn@jImzt>>;{=#ye)yI9qj>iW@LIDE+nJ=K9gM=~)YP?04S&f6 zIq+nxGZqn4g(h;O)Ylq!FZ=^bJ<&W&j;M&RR+eDoI-MC{!m5su9YeE&D?1L@GMLrF zq`(!3Oit}gmbw+`1Bo|J!uVB5klJ{psk8U9?Vg!|w8m1@Sx=*I%Ra0{HI=MI7`J}i zi}ZogXfzKK&1Y>2g9$^0&Rf+0#OTOV`1iwCvU^s>JiR4t5!>Pm!ZAHDg+rXvjoJCYhz6dhLy#$P9Nh70X5%09AuKKz)7fFzWC;T5%ms zy?&Ms_k4y`oF8Hu;KLR}*bD~p0{W_kha0?i=V8G`m~$S0y-pMo!ak|7Fq^z3*EW}b zu%ZCATL2t|)1as-{(%cx+}s6okqP7f(sr>H2n;)NY{&vm3gY{@RzSumqqPM?vGzfG z?PB^!S6_qGC3C;T$l^SG z^p%W?+F_oZj0cD#qwDYsNzEWSP@j5LYb$jW3FfxiVAa5wI+IF+e;&pbR4z3ZT>{(n zORmhuvnuec2x+FwYEEhWvSv3BUeiEZcn02}aYRDH1XTfyCmkIju?T1{yH;;$@B`pN}px4;6Bqn z468yq(U&*DPPw)lp;0ez1}Q8ttVE^FBJ_i`o`9$YVpU;tU(zF|R$3$K*l_E66-LpB zkP6S3;dwd7NfN2=i%K4^&DX*wRaMcaO!q7^EaJ>IQi^&hSO)W-SD&xWb zAWj=eoVGXmJb5v@Pi1?|8=rD}SjcwrfF-fs_r!DVT0=ZxAgBVdElH`iTrr$18I z1C6N0z6+)9IvcLr6z1|80DuBOfF-Lf$+h+dp?8$kv`bB(`zBgSI5zoSHoE_wdouIA z?Y+!+gQ3u}lxVn1=g$l889|8K^OM`Wa7c6%Cpu2-*lR=9BsML)&0(~8VN#xKiZ{iV zRLo~+3Fg+8F>K>_w08i^HE^x1(s*j;&3k9<1957>1mjNM0-+_HsRu3&^-h&JP{qO? z6gf26BxOuT&vNFz8&`JcY*S0d_ns?p-%U)tM0kEJ@^G=1ddda&J>Ih-!myZRn-60S zgelWP4NH*kG$HaT;y&@Qp6^ofW(01pc8y7B;!CuFD9>HbY{m~~-Ae!`)-$%qZ^(f& zbyhILvVEz$*4Z;D&BJ6_vTVk|^cCiX9Y8kQr*(Y{W>DiM*sLRbX-OtNBA%X2PEJn# z+N>*n$1$9fGja8e+4=K`EkA%)=SFicwc5OS;ka?%e5AG2vsH_`Y(cbu<&?BIvD{Yf zbAdG3iCF@gZQ=t;WlTJG6QC7tB`E$2wVfQWt zmZql6ym^95I4urw*<3$t_$WhUFmF7+bnaFy{IK)Fo0>B7QN9wHE+9q=5Gn4>4 z(UUxX&s(rn3wwUq{Q2QcH-QV^e5+M1@WY0zp@5b%%J!{{2PK@AG=ULVW|p@CEhV9z zsR06bT=E5v2D<^X8I6kwv)eXMI^{txr|tbTG~bE<*3^UG7imlI3)%_^DW$?+ogD8T z@Ak2pq#)}i8GySr3%naI&Vm#y6$H8bp$BxV-#zlGDF(`!agOUfiI zZra7u$m=S7n%^K*jD^OVFeDh3^7vV3B@GHvcq>UGm@36Y5h!DZ`!8C3#tMuh|1x4Vu-{seKsg>ne1kP48 zGmK^fnbu^kuPHeSVrkZZ-${MO>~P+tnG0slAT?xOZd%YmDQleE@M7sgIsmjrR#5bj z2ue>azEV(RVi^7yRhZfeEkb?$N)&x{srd({wrCzMl1aC<(+*r%l?QaONmOKXS=!o4 z8ps~YO%y7Zazo*OM(umPcN+w=xk_d-LeiC>DP1%Drp z%X)lxzaR8zy9Y1Rm&OSsQ;ZADDSkoF{IRxnq*C@^;SXRzdFIp8{ntnJ+*16%G{xyl z-PMl9>FExKdMOV)QadXkN2BU^GY+w)GFpfU3sFYO^nh0&pRqe5Shu_VFggol!#EIVk_Vr{n; zcYAtsUk!&0_`^*89o7C4canTK%$mGdd%2yls@rQD2%7rp(JLB!I}O3Hr>JmpM|bn@ z(H0E^(l@H*8$ejBVuCe?6+G$sz*<{B8-cMH*O$8M%5#1+zdXN@poRK3etK(I4dD-! z7Hb+znV`tlP1#?KOl-3BR%Et3jHCw)8G6%LLDABdr7hTa&1uIWBw`lMQ0lH;NnXl7 ztJtm1$22vqM8Zv(cArZBvn7@PO5(h}F{~#m_IzvGIMdYio*+7G#X*u5caA5RN3lrf zYa*;);OF32iAB8f#cZ-&d=$nCm3S^DUO}PhUEf6-*w?Dm`3+&Qp9XwKU=?fI>*>3C zIzT;VmP9 z=V|h$sSrP}GxU0McAGF5-w`WgV_LRC(@AV0B3SdKX%&+AMNu!ve?cD<^g}^k6mU_% z4FE>tF-iXjybS?;>6N+?ENLX{@kaYhCnGS07P`f}OQa!!2j+hHJff$9M}cZ_OFKVB?MW zvizx^bjIVE+enS?#Ktug;3!g|w0HK6guS(1^j|pq=4`5PEpx#xv-AtAmy+@6gktTL z91qrM0WY#05l*}dxWt-%AFj7x(|a`DAP&+4GmWZ|{^7x{6keV+cc*llC`-Cq_-A77 zrCUuS>p;n46KWK|(p2~n_^2TKl5VLFPN`LDW-EqRl4oCbQ}1dF?;_>CYi;c~Q#JJ= z8!h|9QqZNQLgY$(YLDR_c?|S}euC=Lrg=vY8g8*AeWo<;h;8$R;(e~l<|^M9L9t)5 zvr1Lt(^S3@Pt5LDdB&pb{+06Lhh~RVZYe7}ppra8{1wOEsc zDi{-Opk~q}FikC~i-l<)8~7@I^Dcq(Rk&s7RspjKe)q`ECN)3+3BUl4xBEl{i}p-c z2v~!zdtnc(iB=WHL!-yOo{3LRRP4=X^AGB2{i}*KcFTgMH6iU&z@1S$@u+XQD$vUQQTTphhr0lb=F6sDnHigr4v)@p& zfV6v&Lk&rNn@SG1MoYRztrqu#)pphj3g1H){&xY))ON^WgnBVZew%WZtGa*N@%qMwkw#^KEXU&H;>>kdWGY@NnL!GjSHkssE zbJ`%6~ak_$$FZ_Wf(tMOA<^`C1L}8m@$|M==(rNP+&LfXaevdFm zSz`G-zQkgba^8S{+|+Zz*+nERghv^;#kjZTQ}@KW|J>1u;dLF4(l#A z4~F~+!)R_cGJUBN)c&w5;MurfyijG2y)dnkKfvxw-OazR^{b^0a(1oRp=>*&%@iCC z@+A%w2m%-}<*V8aXM4UCxX2WTD;lSbop}N7jU}SYjfGHG5Z}QQVMovJWtZD->Jkub z+ix%~NTFnQ;e%6*8jls!=w6{Vk+lidf2a-U2rrw#wx~`HfR7vvbq>@Ad!kd9+Ux2j zdMXN>UMM+G49(kV`FBl&JbRFRxYt(?Hu8Sf#W%r1JLoDA{)ip{)>9M8&R@1LT)yzS zmJGYarYl$~uQqDw60mUQwbNU*uNSZRZ8kcs+p$0-DyPE%m|tJ|oLA=&!BjKZIRw*D zc7CA(xJ|&7VBommp8qSy1`<>*MR}_5g0b*OI~UKZc)>bvUHlWZ;hQ{1V2uv6zVL#LWur2-a#>z= zGb?jzE)R=Ag-QiVU^S=>dPO0&AL&=d8j&|7Bwe_nfFujbrxQJ(3WQy7%?0pFoa0=u zOaX^)t@L>kxXQ;nUVutQTp`H{jNSQBl4SjyF(nzwYe4a)HI$Wekh1PxkF0ftl| z8Y2om4=FH1ej2g}mXa>Ymd8SU%$qJnKo$`LdPECJ(1{DoRiYt@?B`eYH;aOJ$^c8Thz;mvSL|8(v&0cXU95!3BGdv~Z0W7xYY-3xnQ zO?s$@b+ZBb2{L0NhM&)YASOe+fMfZ*l_9nlU{bII;MPF12$o{5O1eB28YahHoV6|- z2veHW=XgvJi&g#6Fkj2j*)l3dF(!pzXo3PCwA1>f+S>C9rD-%BjMoV{RFUninkup^ z)5{v2?w;zNxBT#lCMryh<5H-4x64DRnBL>RP~#Mt<%;myd>8p|Y0dUn%|3&$MNp?t zZS9rjUxAdYy|h4ypTQb@(Rq^wxG6NI%lr_tVT@p7*{A}p%S<+>hoil~ArQ>xddTG+ zSh?s7@Qt2`R2G<8=^^hM7i;1!HL-?mVO>YlS_KW;klor;X5FlFfh#nOjn$>Fr2)L3 zC5(^V(v%#_oCcXK+(7mq2+*x+h2=6bX_Z~y$uf+Qt`L^PVCtg~ylc(aD#!X^hA8~< zwxvL}F%SFSTgCcmo6_iWqhlAZsp%Zr&#Gyv?+ltWj%_*gtT zyJ+Tui=!D~vWu8Np`tv!&yYTD+Qx(<^DS9$<)X#mrg%T4@#F${4=tnDbL3?B5|wU# zTRYoOVSH1$HluVW|6xuqoM23S>3ie+>%cCyB1|5gm^~&b>o_(#CN9ftB8f*1uPNzQ z(Q(>i*@G(g>wggW_Akc2&DxFxqbgR($L(;1ycYY|QkPmN{w0C{O?c$K^v(UNwB{gn zEBsrajA&iLQQ!)hVoToQW^cM>*1V9J5w{~>WPPnoOQB3q_4&;jNX>m--;@X1SbjfG zUss>EEw1t9E4r)KFZ|axCNnv{Uo;Iy0oQ)FQ-;R7`XF{E03lCg*du_BhjHgya#Mq@d zT5*RWg`#WCctE4sMr8OHOpm#QXbL5TPHY?SgbO;Qp_JvjKs~&X5D>*$xy_c-ffB}H zFD$j%1on1kDQ3W20pUspvoq5y*TO#{lwP4A|0u&Vie>mOpb?)T8DQVw$o^4k08t(IX_ywJvZkE&uccWl?kA2&Pd8k z5vk=>WIJeq$3^cbyrEp*R3;$qiY}h`0sVewiGA`q zZBnC|j_a!IXslI&6W~ET8e2!|3lEyZCq#&^!seFDG-fg}u<n`V;O5Kcr7xf4DatB73_)#z*AHbsU+)fYD#J=e3_*I zs^Oi_M2X$uCtpewyoRxLm;wMbe%Snn%qN4mpk)D!BoULMg^Nrh7&70aF*M-^fV|Ah zymqNclw~rOOSX-bfgO&Ve^tR7F@7>(ENg8g>@ydI7BHO`R;&6}W+0?+yhmxz@wIuS zx58^MAsR@f5%NF+q%Z{HU|dggR&U}U#pg3_Qiis{u9oOu(<`QTS>u&(T2GC|3YMgD z0(@vI47qe2tvN*tH6uc4cnx}3Hk3P{+YrgrXi`++#nDAPh7IRmjKp%AxLhsdgh4c$ z)8J$V;51hOOGO`A$*@>wF2x11LbLd16}#of4m$=X1GAs2torHZjvx!J(MO&kd=k8y z-m=TBm6vs)qwd;NUA!}6LU~`F#X9}8aFkSw1hCUnFhauaFnxjj1vVnlDIO*SCNw5K z#(*YL1L)($%mfb6>l8zTk;w%bV#<;c*>JL)YMd@31VU|SHz79;HNiI(0D)#s3tO5q z*3xTDuQpI1j3GSF#kfHV2rrfsQ}6(?gkRSzqK_#$|8BR9T2x$CGqr|-cP;>zd6oJR6b@~1u(%O`xsN3;Xg^6Z2pR%3cr^wPSJFQm*` zA$8nccrky$12Tz+gmfaKYOHaPT(PDknIXMYa|1z#pBByWi4=5z%>W6OSTEBQv+>;w zuZBySqfum%yoNDdQzbY||DcJ0(6-XnDE<)7ITII0K^F(eP>F z$z+N(ia&D9ja9%pfE?@u#8u%XPU|%M8z%Z3X~amC;K zdbSY#eI|4GJZvCjr=9>y7T3-6Kcyv5Ef!cORESNxL<+VL*qL}@8Q6o(@d^#ICV$}U zYW&Q;S^|q%;zdQO4g#3>32I>ro-JDHDQadzNVcE{9MZo$2PGt##*1CTBqLk^<{Yk9 zWDJbB8%^K}Q}IPqlbncg*$b9wtg}ISV3jy&|Jp zS9J%%JYJEF*(gX_P)oVfLRN8>nuJT6Gm8m*EetiSV+u?B;I)giviMLhilDK*>PCk% zXR6cLFhs}uGVjA}3%p-aBPkKjU9uCN=o#X8KprV)(L5BJ(aWCND%8a=TJ-v?v6M zdNt^Eq2bj`B7#ID!+x5nT8nPrG`Ofn03(EaN>M`T+0=$HhP9fskD{n(xuo0Lps(P@ zIp`zfC(~WtYt?wbc@6qqYQrb0HH=y=N=FvL zQjfEtOV#r#6ntAMU0rY^y@mMNxHD=hdS;t}Iti}B%t zk9D!*fgOV}Xa=kKrup~f`U7>@Ejl#b4Wy(LCx5 z@+8~PFWJ^i=wBoUDE3rgf7*kzPv5V6&S&ozABVw~yCk6k<3=Ia(3mMq!Y#wVD(0Q% zw#kw17yzDZewU)#R>Io-unR~J$kXPJ=P={X!r&>fY(l2?(1&r;7wL$w((yCxmL$Is zfz7oSDAw7)^Y_d{v8P&w*9}@0pVoL|+g2EVU+!FyS-m*fa*X$iwF3XMMC2iSVYh$t z3Ma%@W|xSq3<;(d4GAeaYQr<`C(uVy}FI^bZq=R`(T!~uDxH~N2`0AOKqv9HM84qAb^ef!lKz;uKYu5+oiAv zG@&V|)0GcKx(#WAYb3n^6WttI5>vAZ5}UevVGn?W_>Z4WD8w4Y4Xr_ zed#AUztr0H?eNN(8Lu@wHY*9D@qSHJTmH=0r&6Ae?FqmeP}rBc>ti9c)XhRlpHZlq z?FH@Om5Z5!+3XXL_vyRScvyl)E-`P|@Y@0%L*tXnlkh;)E|CU@ZZ_C=@#T`9Z=NY} z1wQ4pNb!fUxjbe6`9Wrzf#1l%#U=LanlPz&CByevRxHP}GoLW8=$1e!^`N|EGAm?$ z)(1IO66D&ve;RJ<7IlLZgb%R9$slpToCUbyu;^Sf`1Aa$<0vifGMZ2KDSXZFX~_54 z-OcbyQev1T{AWN|uwdZ=d}zI#ubW^76o$#*_;#@5b?qm8XUUq-(1eLWKJFt+j5$DL zmQmF4ur%_v@Vi*p18YKK{M!^76J#LZ<4s^oU}`Q8+NT2$zKA&SX~{g|5FcPzl;H~= z=y&UB7CsjD%i19=uI#g2iDlSF#yB7%IusOQ;ck=C0}AO zbccQT(cX5i)X?^laiNB+*-yb3HzRA|5+7^{g?wxYnX=?f_!2nCe1_5^)!|tNyBx-K4#Emc0b6T$pSQ3#O_w}V>X8lTBG!~4$ z#JGwdo6}fRa_=KcWx9A9to8ylh26Cq7Mto50+6beP!{hxBo?&CKnt%l%(?SS zuc(??hRw0K)RzT$NGHS^_C1naP|K@=O7y@0ol2d{!z&RgWb~O@PKk_!qoY7D#Xp* z3w!V$--wRRXH;Fea*bk~-xK({)My4Ixi-E;aR4aR9DYuHMe@R{FXVN2O|CE6+K-x< z8UbF;%7e|cFs4p98`DxQ`(oSLJI_kmisH#)LwfVpbu`N#LAF!NjV8n=G=@#XkLNoQ>ew7mV+FF zH=_?PO?0gp^BJULZzh4i4$4EW7ygb=grQ!tv+SUSTTw(ILeFEMwR zoSE#F9aqSVsH^&iI8ur{JE?6O-Efstl^ zx=`Q?CDDYJi}c|dGv)8)w8@Dh>`UNnr}35?t1-^vCG&pqS=mGRKGL_dhgBxw;kzoc+e@O^;g;$t6(Gb2C?_!gp%7#Pbu0V>BM!~O zQ5~mMY$c zH#ykLLb?)>T7uj);FG?WG;2vw_=1l8Z9~5{NTC53ngMN2o1}XoVAO<$G!I{Rp<WjZg20F^!CDHF_;y$^&1uH9Slg(l^4(|XP!8%lmXtt_V#RsWhWi<80Gu6Dt*uZ0svh+@r{yVKl(5Kjsr$Oxt8 z-A$xDFv~_`q8jZ3s^+_RDd{$iO=vR265(R+#R>(U)n&#lh0(pR2LjT%q_2Mvb&IbU z=cAh|-ckSf%_@COWg9k~wruOB(>8v+rDHlDz}2T;IHQvHyaW;KE2j2tc9)u-y7t<6 ze3YcAd>*U&kUQ4Nzh!8zP8JJ|rY8C}EaS5&OlRN83ul+1h4Vm9=`=qIJDSSvE3(|N zPM%=}PnViTQ>SQtxTPfSpFO(rjfSm?IE z{IM=o(czN150h~)V^Q&^YFtouQ{$$*iz;=QY_QBzs)S8V=+bzvOQ8p*j!p5$OxHz& zdy~*@CS&`8Ie|n#=Tpf2vd2`eC4+n{uSkUP*;$`5T{w$2#5=y6GYcObVM5CG%J}L` zj?hX>d^zU|04FvL7eiI0fHzoY9B7Qu+ zBx}}y+@|?a7zWPJzD zgb(3bW4h4Ms*v6fM`@EVmDwzf`SL;Ouh*pa)G1{_u_R$`VJRMFy@T|t_+A!jDI<%d zO&xdc;xnBky-e3@TiLXy3KF}?;0)O>^~!G|loc;t80j0Po7zDNuYKD?&RWox@G- z@)Cwwd0zr%N9{0@O=P%yiFsG_jVUILN~QoG;U$fyWKI5!9C+*3UORoo^cD0}!<~Tp zHb}oW2f%J8|1yAs%QteH=KhTS9_mfHQtxx@V_BhtNQ{TStl$Ik-g2>YLo_csf^Nzl zng%po%`b*=B?N%NC5EqXO!C)kJU9l)@!)6=_~cK*7YjcdtO>{$$+(P2jq>w46KMN% zJ{kG48oa5(($uVspYUrmLz&ONE=aMFzJ;q)GXnl=^dl;|YZz8P{d{e7o8>$#sY9ZO z1!~zk4XBS@SeT#YdBrk8n8{G9ff^G{Ngu6y%hKH0Q^Sn9n5G zSkO9mk@cd~7o8Ko#gLN_~PSzw%UxvDI*ShIN<>xxUSxD*;o zic4~$F_aD0zs1(0IS10htQQ`!SHO*fKt=e?M+k?os(s>F$O54O6tOdFB(UaPGVc~1Ht+Iz{0@jlv#&ka==w~3zoK!ApWx@T3|2^^ zlg?^6|MK~lvlevEoQ2^&Z++|s+YNR49Q!`|X6DSf6e#I;$$UZiw#ybS3|Yb_ep!9rw=#1S71A2)KqAegHTqG*c*T>Qvt8Ix z9&gBgvGT`BdG|^tSmSwlnKZa!yP~ zQ2LRX3?rrh+o2b*fjXwM8m)PfI+#YztqXBzmni?DA3#!#;QOU()M{lKy3A~x4K(68 z*sBvv>+$J5=dH0~V0NF$Jlg`UJ?_I>3)(JSn3mYZUoI}ObL}20Ka5Wm`OHR1qxo1) zs!pmWJp3OBcj3xwM6ceYA;aXXZPS%ohHj&-T(fPuGU?ZGQ1*#0d?Cs_4cjJbIH53f z59Nv!W_uDUn)WL*EJ)ePLy#&&pBbq!IZ?Q=ysG2u_)vI)Ce3pv=kwTbwu;T%k+4rq zENP3m7tOthF>>58Gq1V42WPhSpK5C+&kHm75Nz1Jpf6wPi^fsdT;33|J7XFD zS7qtEbume^JsPy-l*RZ|2CTVg_6&XCU$0co|0|aBXxMepi zyMZf>RAnRSzO0rlPX*q#y^p5l%SBwIp9{pnqO4RmEBe|1P}AE~F3ro_o<1H$=8u9{ zd@uUqmAU9KM*>}MmSQ>Q0dY%J|&D^;YAZ9!y8+ut^H zi-02kwD9EG?2;w$S&qi$w{ke0Z?9SDUvt)30MWvSlFV3!5xacx-RlN(8H4{vqWJVFV(kFGHhoZAdwHrksx^T>zi%Mg7okjR^hrTBR*J$q8M4NPtg0Qxr(K{GBrozN zZVWHinNfouJ)Na`z*{K$W|%h#DAaH%D%+WzMK1}HKOLkOrBO_cSsR>FE2b3SGS79C zaG){z6#qR0&x^)}#+7dfVldDc@ggj`2L2}IhS%vzo${HqMS7TnUg#?uz=~JxackRn znu2-C_0p*<)zd5e)iV~&4ln#M`{s1T$O@6Qe}kRI5@-k{T6y18DPT$dv>T?~AQQxW z`<@&Mbx}CWI}xVDV2mxfHmkx{&_UcKsMtVd)3V$58vbu9vd4Jchffp0!C(_G!lf_) zY74$nUR)Yk0<5Y@lSyA#I}BxJn$P4;JKoYm*P+V9gW`mn7p+`yYZTtdaC_QtJJ$~5 zQ+M#!`PV~uL%4|T!?J&B1Vu~UjH5b?91AX5faS2fqovr*SvTB5peYNmYv8Xr+_Km4 zS?eB&9aB%sD+hzGSeUax6B^1;rgNI%R7W#1o+(X0j6Kchnl}S2VHjT)6WeNO9lI17 z5uHI8q~hB{M|rb3Zm-5ZAR zgRW__FPfttk2L)!XgI_JiKOWyUpRIrFRd`XV~KWP)NqVCPkj)UZ4$cFD^|V4J>?p& za1rD-I7=*T!Y34^(u_V!tq}f6fodG3k_-rz`P8vXye5h)=nYSMfFeK<8Gc}XLR@4* zi5{5}8(e0_zJSeN;6=4iLakJFhgzDUoO>80gUqfmWgbzU%El?sdoEIIDGWFXMO5fo z7>?l=vjZ}5M0VkfD`qX3!~dcs3zsas;);b!!sQPTqZSeuUcL}AzDg*2?n_pe12#f* zTPHQx_`ZhBlG#g`qQxy)utbMs+F4!33RdF%C~psRX$L=x8nY5WFM0@1JH z5(E*JQ7bhVijd?yHVmflDsbgBudT|?A{jQl6lw*^iHD^XR<+~~E423>P zm(TGhPbNKyRGcy)RXize9XJG9FYyN#J1OVpTuf*5v9FhIXiwPFm zA-w9_DZd)({3L=_lTzxBa4EcowR3>dREijaAtgNp>X-{{)KLvk>=?f>gQ>1!&9Xgo zMw3F;aLwof1RB-Q7x@YOLJKI+l(YzkkJbi^7{U@%9t;Dh2pTn1hCyJK&my2=%`}1_ z_X<^`{*1L5yOJWZuO$Poh)F4E+Wq7PQFswJ^Ny*l%uY8ORwbW?Y4hBCO>!)XESbyy zj8aP$h40)C=gB}x_7FJ!f>Y~uo6#+r4^P@Q10-8@?y7SOUeMf$V2HTldp*a`YVf>Wbz76|D>k7~ z6f6#YB4={ltiRK2v4Sm`liC-YtGk?R#AvWQF3Ogy`QS&tNC}%@R+)Z{I{aME=P+zF z-Z96F1MW+5#)mrY7P8vqZMO5>%OTvg%R5rq<*jYE#n1AEQ`RfRmCmk=Dno9J zW%D@Jh{ngm*tU241=yV*x3b1Wb8Bw5#K0+UZud5K^)qN&ro1u!Y2hpqvT{4|Eo{gc zcvtn96j|=RKr!9EenkWRYOuS1&UJIHqb?D%HYiQ|N`#{!oiCnVaorWyal?6S0G@b7 zclQ+ySo4USTlsdHXsiCVqB9d4_eS{1Qfo=sRva3ffjNSS9*_xCBc~SBT76^HV_swF z4IKq{6e99LO_Ab@Yii;N0Uoxdo*LvQH`eNMHm`MIeW?E5c6WdNw9lW0XQ4um0({wd zO!b{qhbR5c$N+Fb5WJXYnhY3cQZTXo*q!R~I(a~^GPtDYpU@8L-5t<9Bw>wu!Z96^ z*`FxxXaAk>xJwP&;cTQnR!j^AiVYISPmJ(ck&{|x*)R=Q-0ph6aK=fk*MB8YrrhXV zwSn}6^n{Rrb$%5)|CKk+064X?ic%9uQ9(doS8p3VoU>#gEpBO^G)UoHRl_#wahci? zT;i5iJUD#fJ5??E?c)dsb@*;yiW~60TL0yYU;n^Y8t@OQb`N^qa0d5K6AtX`rgm_y zuf~$rAKw*o`PFO9A6Vc|__l0#Mdt{ztFmuZsl?W?{T&)-34(n2pv(cpW>2!uJ|llF z*38J~YgtpVNW)5>SQ}W%(udaLG%2VpYUdV}?CR#K0$+sMwYqQDO%wO*$`952(=O)k zm%Eq`-H#2-zn=DI+RuFY(7SP(t(9yI{7J;?=XXiRa1To!hGqJ}V zD=lF8JyOj;Yj*ro&r9pO`$gRh>dx!wn1>T<^M=q~$e@U$^EwQOFoQSr_v1-2ECG$W z2uLP)S!;QQ-djA8r@r8JlaEN#;AhK< z3v4i2uu|wHp&!!Bgu>O4zze4*Qv8&yw_@=M934;grYFQtBQq8otkY;IRneL@R zZzG?qy%m25jn2^Q_L=-8)iujI*lj6uDE2`ZHO8SAyN}MzUxWK;CF-%aevqxtF%2A3 zn^oCP%d0JYF5GUcYDYU925(7isDU7;E?l+{Gu&=Ng-6j*Qx7sIq;0Kc8S;$!B)meA zd#cv;$(f)rm8A{8-+~8_Jj*0IH9x+(c2XZiact6VDU1Sd1SF6E*J`SPN>B3fd{>4; zScNGdOb|#jm^e@}VDU76gKWor=aqCwH4cOV0d{#p`su zp9zURc$y{_CTG5RG$^QQqo9_P&mdEUOW-CHh|17tz=Doj3~T!2OkJgeuxF*8xu<(z z#7TrG1o>lIAL^&crO0?C{K^d@x1dPCV1}aiLJU-r^?RpjN7_g21nvn;ycDKf^F4H# zhm01A`h}H^6*Eq2szFSllO`9B3I!>CHK5^3uG|Y0{2MI1tzmnyy?9L9f0EVm;>L;2 zv+&!;a|L(dU2z;cB-}MrH{6EDK{x{lYCzAdJH%-$2zOlG5bM3|&Ez{(h0f zonzXEIwI`I=C;tta<4BuqXXe6^Id^YN8zm*uI$w?dOwnCdzLAGTRtSY?0zc>FzVe5 zSAiv%F>to7R5rMg{vfzg;}wz-U|)~sN&8QsK3$KLnSDE260 zpsKf(qU2wAL zDtSWFg&2`AxnQYZEJ?0A?$^I&SB-xm*hA0^%W=i*ly4{IZ_y?s842{L-1B8dGVhlu zYmfG*f~Je?96DeFpbhwiv!IG0ML-83TwPleZcN#Q3J8Ig4#(PrQGR0>5g%o3NeOjL zi0Dem$DcT%de|MEecmI#SEo%A(6A{i9yIzc*OKy>VsFzjaxHmc=G<9p4`DM%w)fD) z>cA{^7*CuvYhcnW!+`-m`r01VOQ$n5kht*stO2#Q7`MDyF!;QrQ;$nOnh|gk!6=}f zdOw-U5F-kxntUo$wXaPsdng?kNYh!DOAyDvGBHM{K~Ca~rO8I$IyEU&5@7)?T#fA1Iw!jcq&5hRT`XRmUUOoM-KIRy8@^M86lxU$(X=QtRO`nX!Qu;8*r9d>z3vdS zG0uQuh&45AoEk8hv@AuHa<>^?fCbg%zQ(tywer&av^X6Skg;L>uC@e4>WUL}l!d!X~nEwWKT}R9grJT1aNxoPMmZEJLsN@Xzo02~%s+N+kTS zx2LbC57mrRg1)NY3GFo^5lXy|e}2nP9%|E8B>Zp*h2_aY0Fb5j|VB{H~GL1*bA#lm+Bx7QX=3o zsT7_jKl(vvmzq}Y7)iYjNI-=U%cW;}+iKHr_hLav11%dAsT!t>9TI`$3 z$p^YIr8hYUXRY%-T=^tnHfbnBWVfUSwbMz%?}7R1mrwpO)S%gT$e`=PqF$>B-1J5% zdsV8pw>PHi>VRRdzm>vPs7SoPKlRf#`ine zI_PQUn5aZ%V>5txPfw-G*cc*}n@!8QswpwVp&EE@KS+a)9q5E(OX^|0?HuerEjX!>RM>|kW%0kxDTqp{};nTLt-5>=nXZuQ8L_KK+1C#dKfnQJ}y*#;J`>N@0&?smC zHK-ye11#ue$~~mopiweo2CPND={+=P7z6kd^vYg^>1E16!@0@X*{7?-gjHOv@vT6+H%5X? z$%VbBf$x0uy%e^|>PVf>EIl@v24cNkHaaP1$9{X>_A^WlGySSRG^p6JRJ((P`JM9jKm z7FGVHHn5)T-Q8crOwb<~`P|A^JaS)SgJrFs+Ws_1yDUzbgTC2-@X)ni{_2;%%B5|3 zwWH`pc5IfNy#s1zdjCZzzo!_mvIjdb2hK@2=2dy|pmsR#sIL$g@I~iVK4G$+l)N#Y zQ6*y1MY|C$^i~d!0t|S`)rE!h61|sV@Vq?!8*e%7GlzZay&X4a3z-MM6`g2SC)H-K z1focTU6c=fI(^fvANr5WJMxpW7gdk5_2lDhvx|is$djy|@gJw%`ki#Jt;}(=XWhdWmp&Nl~nzsE~&j>NJhLhHQek<^54i9VyZ@w`Y_Wgj34ogt-B%%nK?qN zEsab$3O_zb1G?J%qH`}Ip9XB3nh@ERUSwCv=m9ZUOo-S@(?l_HEx<3FMZHMAi818i zv7;wnJN6@D<{}{ivZj8)YIaQK|5;6?(80rIa(leg5!(rR%T(ly76|EAC_tGR5hp8C zs!3Tmnw%}0+c`8RzmPN5%)+mBE?v-ZOSW~j)m`vR41$}uCcRT~7b?UxXpp`n4~i7- zR7675DfhS?=!LV8nI+#{gBBE4jKofe%eA+uBK7iY$9@`FtB!D6kTGEm*(7QKdf_Z& zW;LmDXZ5%{ukXya&UddCH56SWWhO3T+s>FRfqC)fP^kGSTOb z`i`gUz&Go1t#2%?GPu&zwoVHRIK~OMbTN(piCHoC%!UT%7p|jB*J3z}L1mjBF3Eo4YF`)u3y8uI&29vexkgFsNHV%^cv7D4_%I;*uA;u{3wiCpbW9uji2%;!^ zk=j8VH%ZfSs-D5+c9Eg)$A42IyCOdqR;Uvjhr5gftWqFK)-?`8 zcf|FhOwp3OTTvC#LB0CshAuZ1dL%XNxQG|04?2BSkuPRQV*F%9)N|AP-CNz zj5RrC8}=}emG5)nQzt%$4@uV*1B}Y{$Xu5C+fItUPQ$9Z4D*Xu0WY&EzA}|>G_`2U zOU@pgVmyQdBcr{h8lNz#%9Lm41TR3Uo9pmdB_)`^-v4VWAD@*lS3rqw5o`%_pYE`> zsaUG)3OLNPevqx}r?FnnB2XIVp|HN5qL@YjVJ1+fU~KrS)<4e=llZfc(vJ2c2~~$y zl=TF5qGZ7EoK&>9)=(8!s;Z6@R-u~IWdINdgB6HH3X1&$EL_;acQhNsFTx%rjEUU~ zM>p?IekGymeY&#ld#fILSiBiT@RcoUh=+xkw5-HD1b%MGJdR7_T+1`N&h=)i81>u#oY>^0I}=Wyl44t9H(I&|9tI#I{7Iw$lh}*QO)~jBk!L zF#dc`1<@nk%|0;g49!x;LPNzVWuPe8fTlx(ETP^sWX!`DF1?E3YNmYi)c?ScK?e<) zreRD*(L_TULxpG5GE`}BCQw0&VyKjNvk#Sc$wQ^!b{GMv2B$GZQ-&62w^!%o7p@tf zCH>~{S<-JFW|xM=+G53uXtIhC-4LyG6V~Ln&)cjG-qx_YW0Ymh8?lXmUU<$T$kSv^ zcHzA7^>CaG4*zg?K{gSvji^FVt^iXIRhi7oZeKIL9*(oYak9(Nw^nBj40LkolK)Jd zsI|tSqo(Q4f?KOln*~fdM7QMUYzBTB|BM+w&1ZA(plt@tVA(V=JDz)(^FzlsY4Q(^ zkBM(ScznZ=3C}Q!JeNj0-7@f0v9Z$S=+6AzS61_h+#NKr^FcP#WD}1(Y<#3TZ1yAt zn{MHHk9qm@zYt+M=PyH;Uiq4Nje9}O@}A?CY#RY4e`Jv`NXDsU#wml>WYhmbg#Mhr z2%$f3_OI74?&FXLn^!sIAJ3*+JEeHM7Tw=REjfe7f%DcMan$ zJ|J<_qgCu4FYI|a!aK_pgHj+WIrv~4u*R=q5zyHvKt!7lj*VyQ*|lCgm6?uD%*SEr{!>TIWJEe*jTCU)Aa$`OR3r7?TiUztyyzGKgUScY@>}7Mt`@yqu zen4<&pYeV`Pz{;__P|Y_B6=Z%(_uJKiWCO7=%Z(F)Gct7Qt_reBBOFH+<2i8<{{-| zchtQ$Q>NaAnE|QMLQ8ILo`EC5lh-yY9TwSX z2dLI{Bq{a!J)dKn7^zr?(i;c-uWmq}ja4mic2_mGq{ZkmTld9f zBIQqPsi#_4_*4Tvt(;ILHI<0T9x&8VjSVxv3AKJ^Q|`?%KreEa>kRC+XUz!MQKMFt z2B`!FOY%vb>DF?o?Rlb=Y^U2AVa71c*k9v(D4O56}pl^$-ckR z7MCtP^OXf#4|bpb`SS?{dwcS>>aaq9y5H83_2p7Z#0xDE zjr66wPt(2s&cN)JV8||Ifxy z$pUHa|OcrO@!=l~+ML2|;g7^36vn zi5r9N^-2%3ot(@Z-CVy__UmdawJ3`wC)3gwazx8|R;B{4+CX}GlJ6uMK333zm1EJy ztG}PfcWhkLtEs@ModvfiN|}19Ms@Tf4u;tn>B9L1t9*)i2DYAi&$z$VV0*f{T^H7$@`WEuoy(4>T(8SGx&lVsa-?>GCs zAscjJ8U`ef+D=rQS8VGGXgaeEiM@2@3CU{HDK-+ib#|k&6{-PcpE?tW1y}K=NNuf% zkvmDJ=OPDPy~jga9_sblz{QI$UQ{5Q4QhQAdIjv$1@0^nCtu1>sAi1HD%PRd?zQlO zg)Gmq+{tUW8o3nE+UaS=&@(o1sPVal*g}SA6hbU}CGC4wfrI*|`DD&&O$|aUM8?9! z3nebuk(Mq<@>hwUo*R+#C-sm|XTzI|?R1kt0D2?Ymg=!oW|F3tj6@S|)cE_$ z#;G|ZICV;x2h>wUde5lEd3M0KDS@=akMQyLry*4cDy^Y3Q*>m4-axJu$*I>eMMSs| z3O*UZ+8VSs(jJ9oO3TS~ufNF-9w0cG>;TbiVUl&`2W1~lzm!cza(J@Y8ow3D4veP27$lR}~TF+#WXv1y& zX)@ZPXh}UoGg=O36_I+9*T9w!TDP))6}ibiM)I=L# zTWXPIYX3l*JaFEjmqFl%z^<!<|BSB-`6B0oo|jZ>G5AfSxr|T*B(v%tJ(qAp0{c z3B10I5=yd{9SNNgELgF|1-Z0#`C5d{cA!`PlW@0Dtx(FtN0Ar#0t=YXke6K$?6wHV zEO?R$FfYlEZOUhlx%VGvTS08KC{w-#M(2k@n8WXg-BSyel6{GOY?#7n^46QGKTZ3V zWs_M_*U-@y0gf8Sx^7JNU>XZBm_~|{tVt%6L>LLE?iuue9Lc^vY_P8tYmNe{m>*&3 zrDklPuYwmL>ekXi^0ZT>W&G1XoT1sO+y#`(EuJ!AXe)pHtuzL&$)3`iXRwkjqykb@ zZTK{mqX~|tlqvM7r&eedNBffA<3r(bu${0BcRodNw+FZu5N37ATDQ#T5jjT*L?uLN#^qH5;epd%GjY+!D?VvT$838%*4@u^O{v<{f zbp%p!jAI7Mm$XCK058Y~Tg7?N+VV5bgE<)APx#SdIg<*88o#^SsP2-kkQB@ee+_gsnZQFMV zJ+q*p^sWOiZpu#1-cn7Yp)a z*6vbEHoeSHI&UGaEW~=5;_?BAqOOw}Ha!nE)qI055v&VWB(>~aRaY!!;tDX77p1;T ziy=V;ZI^GAotj?#U`Ou?qB6`e`pG0uzJck<1H3hqGLt9i&vxNMQ!%5c3R9us*S4k* z>sAlwLNWyeZJ}rr0$X4~a%$cIEfjVV{iT5!a?8|W9bA~&SQU5GpBe1NW}Z*qr0;ZM zmd9vc!KH--VK$W~eQmaXM=$P!dK(e4F`y|r=e{dMHr28D8^(_2=fbxDZ=#7HZ%yGX zV2zaa6l&bme_Jmf&i=k*2`EcbS0;*78hSh0ttpo&IYBfEPEZO7!(B!icGh&>iL9_n zQrAU3Q*Lq3Vz_{zfZ)7HlLdh)RSH!MD$oq*`U*5HHDqLc0tPUeDgc^@6$Dv8P*y9p zSKO#(m>EQ4wgeSxWhwN&p4ZZz^lb`;@{>^&*&O9F$>}XOcLEZ-bkJ#pOC$hmdI`C z_d*6M{#y2d-3))-2*G|a|3aq52akx3D2t&bE#Kp~_;VK{+kA84W3>Uu^)TdlQ|Id5 z)rd7NmxW4f(l)d#g`Q#;YhQ-@5~3Lnu)q$AD|@4{=vvvj1|cm`(Q>#RUwL`ew6`>( z7U_fM>5)#zU&)7*G{BIb*|-9w%h=e`MZ;Kxh`m}o58Mf4o-aYN>XHkBOS`Nuy{BVz zK@tTfAd}}qnDftKA&)XT@`aX=fVdYksI;R8yVGF-k*Hz!qb;o|yf=D5wHo%DD07*ha zOB}H7OOq9F3qP3^GD{Uax`2O9@CfRgnc@&2tP%oIFCtoxsEfQ}{4`nER23mOVM$08 zFqETbm;}(z_5)J{+%xRNVI4(vJMvMlt4b`HMGZ)lM5a1V+hQoTW+rk^Grd))@2xM4 zuse3rJQ~2fhAW#91&oCTN~nS^CecxRLM^sRI4U6`vwuZr@vh`4a;&g05uq4W?9Tz2Sr51^0284J_5 zz`$s4$cw(vy}$k0N@u#g8u8s&=Pb@E(u)mYF+qoxV32|1FO(mqHSFJ*dJ z3@|yZkdpUhujc;zLUTK$gFY{;t}AeM*%K!L;ZkYqo)pr6=5-!FZo8Iy23Ohe1?o;5}*c; z9hVxUDr-e+PRAqhtr;zT4?hx@ZE;uC;uM2slehEfGj4Q%@uBP7&X>%*Z&sQfEMrl$ zshf1+E$F9xgccw-!db|iCdX45)S;|{G|ys=Q$iz$Ne<>vhU4JkI1P801hIMBdGt)A zEKW_}B-+T=vo!f7G~AN}hr)Of^2)*uX!MF>gPSBFL5eF75%aoDkqb?w)ti^;f zH+NE|u!+Jl`h&VMF%V6;n7|7?Iwz@JJLX1|eJ@55i%0G`7Bu zt=wz|PZcnDR9Fl=&9#qtgCodD_T;d`I>%M6x!)#GSDPDk%$>CtCNe{cG`Zt2dS})g zTe&OY6;+@i!>|==7CfcFle-uoUNl+rjyupH<0zL+2jcqvFPGF3BJjXdM+0V06S~~o%w{uUEX6dpEf{6nz^)t?$cmLoAy6lR0hh}nv z#1MMv1;q)#vo1y6GGCtUtKHq*-CU=I2TmTA{DX4^7bA>$#&uk06>AMk7YEA(B(thr zlKg-wM!wU0aa5aJdKOXu1efRv$l!v47w8x_Jkg2nO@B!?J0SaNNtU6#hssaRXV+)P zR9!ukvOsSmh2439&rh*zMbwq@I({@89kyOQOR>JJ_`x24^<{;i4I3}ppfci zibzZ!uNbW)+n+m`l%FA-)X&xvrK1KzObR{WR)jYmk-g!6E1ZY^7K8%{RQ%@s)il2@ zn|e%|UDuKSDF1pjoBAEn`P7eea6!t-YMR}cPyG;iI;IRA#nxl5TBJDgm^Vdulu&7F zih$zTbQgt{7 zNh!2w^n3P0DX7k~>3^fqh~}2)((vb@(u-sPcsmX$XD1x4!0&LtL)E10eClEE{7Ej4 z(O`|__0=fsL;bRBk_}T!8;3XI#MtsBmaMmMpvgs%qA+hRz>S0n2E~-(UmC-9+xxwf z?)+cbbndtGgUIl#zUi>53LZopyt9jQW7GLFWoQ}a@(%0baN--gvhUt0egE9u$)}I9 zJJU7#qv#IxjjkU(Lu)zln{AU{IL_}WzJC(DrA4Ng+`7dwW;oM6`Sh%g1@m!HHAMan zEdfJ3gaV5CwywjghCRf{m~)TfW$G)d*k-`TsnS-M*<7X3GX6xw|-7|ooMyM3l!(S)8kmvz|6)#*wQbGJ~fL#yoLoQRDdb=IeQRYjM z>%RVhbkUOcyyw`Ii;%BQA9@YndW&GIZ=Ay|xX7IfNXTTcn-wfXq+^%K+RMH%OZug7 z5I`F=Erp>K5?D}}NOwp8^ON3w<(ezcfY#EX1qnn9-;!X%&W=)<5~<)NfVHmZmF)yy zPyKM`5&wep(_^h8N^>L!PnypTH}NZRE?kA=@b{v2P)n#Ci9{t~5*RpOF-}j{zzr{X zQ3J|7kR{FcbwMW}#1`Q+up)k6@z-sWA8ij-n)rTieqNjEi%ZfjmNpJn)tPFAQzn~( zTIdkrGy9F_B&*M({=emC{Z_p_KxOY_Z@}rvDfzdnnYV3}JVPvc zN}S0Av|MbHm6n>8r1Td^H3cHQ7VJv+YouC4>~snvJu zzQ3WXaQj}>H8f|#-qq~M4Ri7*mE|qXEdO$A^*va?C7kj|wk&(7+PL6pT0^yjoPJm| z^UQF{q49E@zkrM8v(ztvT7Egpq@r>udN9;W*UPEgNWkMm0kQP22U6o zrFP&K9%M4hpPG0?S9U%hINNa4L|;NmH9M+56S)W3>qP`xdb?hE zxk*^#{WTmE*nevqA~uQnI||!*lj7S!OTBvrO$Esp-i$mFg@&ffM^1e!R}AshAC8 z%SBJx#*Ect$xPaDC6F6YOz~!%E2>p9QIVRCRkQPPgYGGFc)h|m5p@v$^#RxJtbmcSiX8FKSm%;9z>cd z;T%@q;nG_%Q#)-ipaK2bZH{;%Y$mt7Je!!i0Wo(2_t^HP>pN0L-y1wo&bWQp7Xjft z;U>dcaziM2KqvY>Kin=%q%K~DIn*U7=q*(|BX0vXoFC;>1uMj0ihxSlr%9t~HC2CF zP0M@=7-(rFHl3TK=ck`rx}@VrceV-R{Hy!XOPzC{UfsKEX!?fTs@dnbr1x`TBwL7< zJ1?}=IAv%K#}ta)nc909>;H}bwE=GoAPYpoehvr`MQd-`bfnBds4`Wa>y)*aY&Z&b z54+Jmeq#X<(W(I{fnSgXT10kWpf>6qv&}06=D_mV@%iof@ts4{AFO7#=eN(yxEx?S z+Mi1Wu;UK@EhLlRk%3C!IG6CB0EXg(mK0V!xE5VYA{vaudnl%2h7@KO8!QLUCqcoY6{2@>Z#mkp`q#xO-5Wh zB3lTtr)9Jm{2;g(1|UM|S<7ou-cApK8#Jx|X_yfb>F7X*Wpd-kO+^LY&iT z3>)0~tY38Ys-WC8XQAk*wlVZ=_@x4kbt__iC@-lqi~_fgc5%qkjonFTs$HUg<2iIGsCe(!Kpf<@MY6DVi7 z9edZYzv|Z~7DHI5ecqd*nns>Xn(gR0tpHO&K(#a2y?D`L#GeLFwm{7D#ls!FI28VEJ6%=&cD+<$Y z0Sc2BC}=_W;b}3Hxta&bNgsF<>v=^S-{0$S$Njzy_yt*@n%1qFHz793xlzYeqGc%D zi}m?$8WE|Gua1w86zM7BKz24We6toCF(jLV4sF2lhQbh;f=Tw9;US`+XgjGz`Nn9( z=p?>wOrdr20)&PuM3O+eOvR3IQB|uUNq)t&mK(^?Cd*jyeqfS66rx>rn$}B_b)W1Q zoLSB9Znzg%AygpuB4m+;T`S;4k%bAF^T}4_V<_yA6ut@6mdtPskx~&-ji7XPcc&s% za|Wt2=W7()z?fRzkc_kC#bSC(G$AXTil2Vg3M9)T3)EbF(_9+FlLuSJF3pq)-{7tHxkC5;>%y>{PBY<$H^~LxMm9 z0~l~jhc;aZO)vKH)aHk3K10rI`k*-a!KRW4jc`lWOOBY^M2Kt*$sDgzWKHh zca9<8uu}Mt<6e6mcm1YwI4Cz2MjuB|j(|9H(u@rCtrWK+m&$%bZSx37wX^^#nRw2<8bQ{US zhL8jmWJ;3#PJNM-Y{-?uXpLuC6(Ms%nx1mF;f5q}k%V$w$W&hqVbDJuCm|3OS9QuE_ zfptBSUp7js&C+Jd*`kr1AWJwXo8-w)h+g4&P*6^tzP{c1xjap8j{qRqXCJIBhZO)g z0oK4l=z`qBj-JQDak9@N#aToQhl#a;-sQcxQFa}*aoVjWKbbUT6&tE(et(V7WYDYZ zt7@k4`MU<(O-}*M2fQq@xd26@0-y@(WX-j#7WGp?(1lry7>s&PaJ@hkuK&y;@HQ9~ zn()V^{n%wsXh4-#70m~#Sfz^s6padidaBx+EeYXhUwtVt13w+I7uL~(gnRB^m}QsY zt1d};BBwm>?jK;O=-$RMPO+@RN=?gx56eD#ba$V3O?nL&lDg3ESoqpag}o3Y(0ssS zvXC*oCVBIEjVyc_Q#kDDu&nj0C577(6IGlfwv-@)FU^tWnnmy>(idulF-b=A=5V$& zR}R}dT+BuBtsLnk$s@3_a3Y=tS1yGsi2#@*;mv3@`AL>AFUkp3Oh(r+9JCqU!}bT> zb~@c3hZC74?~v%jI}XGY*;u}0In#;|%rYX1k36iX1-)t8s@>Qi@QO#6sUlF&UPP0) zUbJM9_CMIaHn-A3@(wO(b7opBokR^yyC2!+A|tr;E!?4_Chps{o=*>si(Xlq0MbBM zP=u~f$VnaPlQ01x?e`eAbKK9Q|Mz)?0=Z;eY9_G|Yl^gnu*s8#N-4C0*lr{-S^D7O z0q=~~EyCUz&G<(M$YB{;Odib(mMW|RN3%In6p>{-p8SDg<4H(O?lnjWhfHWn%KXdO z1Co`t<{V9C0WtjNCCW=jyGtLduLWZklwuC|4BRYbq`jL-Y=Vx9{pfP z{^4ow=Gn~;cDy2IO@Hfr`rEVV9p9VwP~P)U*3)rTKAnfz^rKV0n%R@xp8bg7V+TvR zmWVe?qHHY;I2kNi%ra0Y>Dm6Ph!HjCT;s< z)2QIwMa4Ge_%oNl9*nZp5xL zy0zM!TdjMas4`8i&kwD#cMa*{Sk;65!Ng;V z32SLicmr-u&YmyM;5WeS!jWD@h{xYzDxI}kaPg)L}vJI8cS%dHVJphqGYSkl3E5HAMf z78fN;A8Ha`oZ3fV&g-ZdP;A(Q#D+_gv2dWRVa|*=c0<~Pafx9l3YG#1zzMxHVq;pcv9R@~n`Q?$1pAt1H0*i%Z1Zn`LlbYQ z9?-R6;>1^WY0Fso{l}~;P0`fpl zy$9VfRSVTJg_*jTr5bmjOB?k$i+~h&SOj&$^*02gDBUpeH$~IiVdPOX-Te&3p2Y*_9T~{{!e^uYxHD%W+lZR${4^r!?1=U3m z2CqXsE>n)g$B`^;9pA90q$;T*#Z1@n{k9* zB6Q(Tc2sI)I`wl$_iP(O-!blLcQCTb$p95|!nZacqgGMlcIqB?Nc2OSoxqr-LL|xs z#fj5o=&hN)_AYu!%Zi0+)Frz(E(mU>>h(d8;1UcB)-G+E5M->>UuMfZoJhrinxRdN zZX5_PGyx%#XiX<`T?DUG%t-B(T)A-NLU2%|Lzkn0Pe7hruyVyp5cdi^KY2yl$se+v zAyt98kOTGLfF>Vwbj9@g*I>oUd8F)r3Pw}N@jygbeIovL>GXW7mScq$zo>^^N> z!r6I`n~GJYHY(+;J~gXSrReU?<|^gcS-||@l;`JEWrPvdvQt(zyUtP+Hq-7DPx8NG zXD#okXxk<`Nh}15K}(a-<4Bgl?)0*h%jPX#x2u7P#|h3W#F!Y9-oY%U$U{O==fr?| z8q|;!l5-KIV~(rF`lHl;Mv|Tp&D9^P(YjEG(`Z7=#f)muK&U4}Nq5yn=tYNmf#4}H zwwvZ&G-UUMWP&l0Y!At~mvWKa<)=j-AN!B+!1Zi{1pP-nPs)$V+ z0TG#MTMaBlf|yAV@DRf`32t2Pg1(+r>6#>)a1}G24yi&qsPK&K1_EGM4;pn3ihRD< zwqB-u^{u3tMO5;cZz$kps+iBW(r}y4Jt8eB?_^|{3(U%tm;lKydzqn3J~p>A>gJRY zI2S;gA%2GN^H76^ZiEMNz9}yT2_q%nUg4783wv2WnksbHiZP%L5$ZCX%b5?a&HlOi zK;DD3DE#GF`24YFaE6fCxAJ|-I$UO@U-lgfRPB2omcDc|nnaRU7{$>*-g_e{?@ z5sR9i^I#Eil(&9Tn7B$ns_UJ z#zf4tV-r$o}=W%dB1TJ8uQX5#ae9dw$NyU@kq5^EX%EVW5-F zv2`_%jpL6g2mEa<$drb13^w*Do5=IGUsBB`BiCdC$8G0N^>fRt`dJieq`1Ryq6j60 z6P9oz#T7i>V5XeGZjcHpd1$d6V16m6?5BJmaB1g2+G;1bOHY1S5pH-c>+>G zV}{Fz3kJ^yM1T`MyC}VgOkFiPX=<6IcD5NeybRy)XeA=+IrblxDP133e}=-siQOPn zC26Kb2e)LlYe~hvP3aNq9A!pPx=jaeblY#33$#v8tr+BVG^Yowc&`~!EGG$opN!S# z!8oTFD9+TA?e~lhe;6d}1io$pT|MfWBO(^lOKyjZ!3GZQ_Y~nEX(on4iZRK6D1*iF zM8TC`5Ro2;%BmwEg+vXm;zh7A3`zWES7cA0q!eEXr3`{dz3jXkdmTM_sqjMIVJAc7EKOnR;MCMA@AU9LXmkx*^-g2<}tTZ`Gg;kr(zNiM4jGl$8 zM0+hjnTSz0qcv~e9{)4^QXn#s*{dlVidv4W)urr>&_6ii9NdTW0U;e_Leo+cLL#7Q z@+5YDlYHAY&q5>FMWr#4t*OGp2)X7wmT&OD z_b@-~WI<}?86E>zF-^>7KxT+(IimT2$ki1pzf|K6KmBTuPO}~8Gd3*(QU@ZbX>v?c z7f?%IfOg35fK2rokL`)`uo&(#Rdt~e%#F1QbP7eA8)6s9uXc0e9he(ikILL&UZ@M0 z9Na)e;4NT09l_i%m5O1M$#G`V7Gd6-D1*XH902tWeRLVxLlA4{4{FNnhnQ)Y1{2f= zZHWzv+B`LFowCV_v$M$aIUv~~UR~>Qp;q9R))Xq~0#qWZI)Rz2%jK{kqG&|p8}>?T z3Pz8SZ#WI1aDCAQzOXKhKnfAgqHY7s&^AnsvkTPDgR-H6(0BpX4D z{(fv^sqvVGh<=VkcBww7hk+!BL2biH6i#N|rWs|~wgJM9b`{P=C}@X9@>;&W<#%gJ zHA=px4OuV4rwF$wI~Kx<Q#QB`Zo zpIg+3icU+CJ7;&u%CUX3p%yKRU(_TZQo5w3UM;wbftHlISf}}gOOj752$u}$Td=N#hw9r*gVAVAF?FBdRp%~%qx6Tk zskd)H0c+OE>(-sQj)POro}(}35Cxir zse-~BcuFX|u47X<`t$_{5N(bpsM8IeaCGTRQ0FM+CURuce_P#ThUcteQ-t}yn{-LO zeZGD5eQgVl4`%;beM?t9mFpdDoA`b%vzT2?Peb%DkNvqIYq56lu-=m8wDdFvLcc1V zFmGr)Tdmf8VZZ9__Ned6Q{vvrre6rlexA1hzaR^7v&&%${WK=d*Iv6@r0w*y(&%f_^3UAoFJ=i>DeuPy8|*#qN>&( zT1~SiRLo%aQi;`j@Vq~R8W}nbj~oT>_&NF`|6!pnc2sQIlMrTJ$EweOpUzow;a?z)R7s0R4&asHB%>uX$cFybwSS6*Mea(1UF0CrMA&w4T9g3c$7t6n*CcIQo$;ZHVk z*v}_sS63Z3`%27whz8!0q7vXE-qe5PM1LmB&2ZciJBdU_wvnLH7#Xn^G zRgdb*kNDTdSn~Qq*@vp#aOt$}u0z-^;EPuF>Qc@bZTwu6KKJ%&G3XNz<#>74$ihZD z64s+2WaDn99uSCN3Qyv+5H+Nf^E+Uu4)_UKBbP%9SA$au3DcPV%QD`dD zv|ia=V7LB(Z=-w_1&kf@kkvoQ%0odOh~x-32e&A3Ow^!g4UIp{K=9{L<)bM=XdXAm zHp-MxwC$&%WOehX{QTqk(CXiH{o(snJfh$Fobdf}Vzs0PyiIjJISBX}2x>$4 z2@QC!o&uT=c=>!bnq!Vp!?n>|xzij1>`%p&$u+>fpfmn0_mZp*4ZYlbQP(VJp>3l|iG}yH4Pb@q8Ye*U{n;(FI-4 zRe$;-Ns*aiGBHk}*Kyp}u1@lQpI`lZNw7a=dm+m51HM~*>pEt{AIKaLTHT!*)~rSS zRw7oJ@|6oZF=b~WvSHHVX})eGQ-+?{|HT9T|>(z_B<*=#PgByFmBH-jh% z$$&1yWU$^c;$1Q)37{}?SeC^U^W^npbIQ8tk5ajs9_mPP`djG{wm3>()yS%kWD|1v z02L#mlkEL`Ur(JOexc6Q|5z(JtY}GeJyLP0tlrYblH{#tXtSGJAr7EBM3}k(3$okW zAwzF+`cFZ~vzH!`QS{qNYTN#tf)Xt$SyIHhh<3|g3P>adna&)A3<1d^^oCT6$SPh= zde2|k3z;Ec?}bZEP6Rd8_u$&tY1L3Uj+gJ59p2DtBWlBWH&p2iHB%2e-%_Uo`bwbU z1Fy+fuRoa+ZJWsHkMknLB;{zmkaD7cxxs3(HN{v%Grz@|o!QZ+tJra(QjbMI2+xzA zC77B)SRQ!oP$h%Vs<$;I8f$=hldNY+^^lu7dV0YcdeEn^E`Z?3lRg|fU9oGd3V95b zwlN#7LI$FN4?iqKSC=w_zlWz^iLI z1@l)vE(1ik4g&V8(Y?L<2d;69?n;*L2C05~J>5;26i#bNy;L<#(%an`rR&pr92PBRyV5s4r`>@b2HNT(C-dnXXk4$0*7!dQ9l~z^2w7RD@(EIV;k3*2b z?vv2u{R1aA;KPzT{{=<7kx5|o>|(LxVLiQ9y-|R^CG{&|`jp<@Ltm1U(vw%tYR00~ zXT?u(pcK2ZDez)`$0EY6s)-ocSD@f7;&*Le!av!`H_!&Giq^8&qOe^QsIEm>X|)im z2f$!uQuBSrjb1BorsU)=Rf~~`*+MTJ@i32txglW(TtRAiY)$yRt_= zuN7JjVCiPCjmlZb<5Z?rLBMT9ou^gMCX%&rnX*hTKH(QOjagTcpP(zESxPDZRw|?y zxLY#YX3oD53QzL)<`sq;Jl)4-aGq5FT$r48Ai~1GJafS4oCZQvQD)ha-X+@c$x2{)K`M`+$ZxqG^o;;v z$VE}inxP>Lll!mG1v8dFEFM!;qg%=KS5;B*g|Uw$jMGMC2B(%b3M1K)EAB(0NkkN4 zO^mdKnsnn*Rjn!g1YOXkb97)SU0GsDB~sAEWckrIFQP^;QV#OhAxD!mW}pc*QBe&M zCpSG?QU#5lTh1jX5G1gf!^Qwe+-D1}@ zQg@>TwHR%SgM|-R1qp?vd(p(7UO@lise5Vm*jXhJWKg22>UQfN_)1%FBAnIyjQ^*) z;_IKjve40V(j!kS%Ss9x17)*DcUilJ9T? zy>r0h0hP@mKEcstd5kFxG0ez{Mbd#Rq$N^5G*K`_B5xz^jU z^h+&9jtESuRHRf>WfuX}E^{o|(3NdhZEO%V|6_@1jtKll?V(=L6Z@)Fsb?8)SA6Y? zud$t8b?l!*qVApjh|q0V|rs+ujrROC+Cems8pm>Q~kc$z!fJYSDaK>0l##x z;b(dyG=d?7n#GN<@)#ydH5_Pfe)^#0t{@cqi*{C)hlQF`zZ3FP>3sdys?TAqGIg)s zdc2`|8rB(hn?{KMSCk10Q)MEh8tb~}IIPb5)gQGNyVreE^w-J)c6AxFN%r^L51_Jf2#z@?2RRESUkM2mu#+uHy{u`7PQl=R8tm@D)nT9m!b{>)!U+_Wo|@0sD8!)NNm!$p z1*OfYMhYj%*Q%P0aUYWT=f!%VSQBNx=z>LT6sIL@4r+)|!ZPn=i35yQ8#|;DI0_CH z9ukYaZ@Ia3E$R>s$?e(I!lm^0KgZr*x;WU)4SLuE(O34#5sGg16I|(88gM?j=-0yG zeez~l#+Kazz((KTG4*Z5bM`Br{$2(8k2sv6!k~hCCyGC@16UYBWd|(G8ZHSn>ox{V zInfmhh_XJew!w8?gca+LL1G_Ds6Xt>&I3LoiR5jCn1OVwfIRii1m#_cC8uKnEHA@G!-_?K!z}@$J2A|3kBMOy)3LI>x)ElwNh|x=ZV#xZ zra|)vOtMGzPc6}*L$j+Su6E6LsvgsIWcK~Wt2_DTlqJ}q*>|fS?z%JEyYc3qvwg^V zC10BSaMzSSWT70=3)PDa(exy8<&M5~Mtrh^V^c-ClVM3ieu z#l8%SN?J*o6i?Nt-M2-t?}nIcKrNTlpB`knL;{JU6FuN%9|cPo@c}CYWc)Q1sh4oj zr7JrwS;3YP<_j}B4pRZysKb+URwQQ;+$@Yu;U*um5JX#A5CMaq!j>1;+K3%Ry;?uV zz>EbYMi>@{V<(7z?6d_CnOahV{8YwteSwVDoz!iFlVdXhC+R69O6Mp4ad#CtH3`JR zQnC%zG7&v93SDU-v!F%Dj4&YsQ>*ponvl;WFtPIJON_nb*oYDn7U2_p%W#Vw@bthj zIvPT;OFI~T?%hQwsHd?&7A&S=DpO{$A(-ntA9@t+e0BonU1(+o`hhuI^G)GF=5{0L z*T^?Xk zOV}P1;!G)KHrk|>IU637*owOrnz}lfb2nwF1idh!ANG<2GDpPzD)C079Jw}C5lt|o zGumC`3VWcEJaWvz0Xq0CM#DV^Zuq<~n18iU`iF(Tw5`+8Skoov^1=n8FUN}j-@`W zwp&4rVqHCmsF+1v&-2$~nP?$v>dy=^k|<@y zEFddAs1Kf6?nP*e>9rmbXljje4?&V2a~MlFn$a(8L*pT;I2hI(H&xXqs9J1H$WD91 z2m}6MzJkjtOJO9641^FM^#)Wt1Id7@7Dm;NtYwF#L~Gw?$z zBk6x>ahRr=vQtFs%X$=~me}(`Zb)yMO!A(6t2|QyOLQBN)&le()O{@dO7XihVw$CW z3j3;~ZmYlqw(~+=R3+9eBrW(X>sv+%p%Y9e6pL_QnX+gWMO+koo^xp~+vjy749XGN zIo0Ke?pQn7vXfHO~$fO+Z8T-Yrx%_E;dg=L>oO8)JE6>tZPUoL>4*$+NpJaO0 zN*-Tw{-x>qBwfGq(o6Vv=}NY1fi3l-d7mfQkueLcoaW&b zG5ZS2*%E1W$!*h`lWet0-bO&6O!W_rC;#rOSq3Km9Qp(R-mJ}O;4``!N z&6ASxr<^>Sr;{0|Q!2z;0LoaXs5_&+@pP~2tItNwVZ>}DKa`y|p2l9t(U4FX^KiV7 zqmg7s@$Isf4UpO18>Ur#jEcR6*x&@L2K9N#9lg#EB-+1oO=G?bV>t?iyeWMg${PLq zTN)AwRoteKz32+hiDB*^gd@G-<9Fh&GPRA~KFIA#XC~Ps?I5%+w#a}*gJVNa$zF|= zUpPzfZ$Lc_S!K(%e4t+N7U-ypmuoVVp5|jmdtm0)GPP;J=MXj#qV&$sG{kd2Xfn zUODXKH8}P>oQ>zikOb7SGDAd32X)9sXa}gLa?sATX%moc7kji@)%eRiN~nr89`3Fz1>leEz5wI#m+wp?f$CjR!H*d5~dTYHG}q zA$iTM-gkQ|dOv^tJ`f1i*4yjA?Er*^L*n8j%*87mxaUCT1C|jCBxnj{1r*9b}<7C5dp2@0MuXyGN-oJ+4-#TDELiFaIxFwtB_ZTi-bOiq*^eR{ehKZFa3p-=XrREh-Z#FRC0c;k8?Axy8L( zesAJ|9ou$1Jn0`hS8etFt$sB5)mtC4%^_2!Ou2X48@5}yUHwJB-2TQLR!#kM^)1sb z-f`AWZ`)wMWizx<+C ze0-l5@AJsMKdPY*yY+mypUU|?8$79RHCR$Wg`sH(vsd94`T#wECPy)MNVblm2S_G zr@$|YvDoG%Kyt2*dusGkIacy7vMNWqdc53ng9zhQU0WxkJ&HGOZc%&V;TCIWiuwyr zXaoP=2ox{Gn^<^B_GPt3DjW(Iwh@LqnZ_{M*i4=Rm<;iA|jFah!=2Allwa(6R?rJV4 zBlXQPsg!iXNiu3dcXU4W<_1+ZPlGc%TlGc+TSSfa!@Ldo0)s%9q|{Rp`!(6DU`kRt zWkOr&NE@PW5Xq%pjJVrK`o>W?3dg9~e$p(A&;nLvOiItpVSpEoIam_pzk@TC5^RwX z8%^tCGB+j9_t1-zZNbrg4Yn0IuJc~HfHXts@d}K(?(TqSRZ0H4Y6IyB=?U0z#jiQe z6Yvz5VlU>y-Q5A}^}$+$*gqA4Y$m3sggW+;X=w1<)%knHhd)*4iTc#*KXK0>F8yn` z?}SXSvjej3hpu7Wk1ZkrA&xW<*GCYnfW!e=5GVS6!3D_$`28L9Hg+Mf21`(Z!6Ndj zz^ZI_4$NtzX8k|)`(;9h&E_{kB#hnk+Mq#Y&p~LSt)T%SJQ3pSd;lb1&@`+I6_om; zGOF2A^%CL%PSFlZL5d6PAk4Sd`<(>Jl-Xw&uRH82ig@icj31uH21u8Qt(Pht_xw`h zEVmHQ3+_dL>6gOFw*W!gyVOs1EX=}V>K_OgRn#BSC^MSa^a5qdbLc+De11*OPBI}G zR-)veO4gq?|5F`BV3yewK`=Q43(nD!DK{3bR=C>@p`XBpCL|;WaD~eFIq{^#pSf!?m0n5!Sj*zwi zhrP(s%&rCQh<>}ewkF(cxxogcUO>j9-<1oQ<6rqYyxHLK1bf;&vhpbeD<967_MaY@D zr+Dlv1;dZST^nxL6-Hr$ouA!XYnqXp#bBE3p3%S3;2X&tY`Dd6BF5upHg%5^OOD-) zmzYAa6vD~MWh90y*;VX|B{+Wi~xAi@QAUGu~?Olp-_>g zml@`+Yp}W7aCfEMF>oc1OAQz*Z6vMP(5X}(dJGsEFf>}59`nyq)isMyywr=z)S{T( ztXGtqnpV3Uq-tZ`$vV1CGyA7sSVyZX$z;O79ikWjyVR?6CRCY{ty*WTh_yiM-+*!? zdFsRBcH=F+nyFZHL^l%Kwl2kzW`DuMBYgD+`|o!a&<_l5{MnmWnxu7O*l;e|u@ov= zawP_i4IZ#Cu}AUM8&q=_+hw$7g~_mq&)$sot2fedF^FRszVVFSc-Rp(5q4waM|*~2 zmvx^)XiFxJ7bPGqf@`Vh%SG zMorA4vof@@c^Xs%p%mp!A-|CdD5QTGe8`{7zb6&0fJal%N3nP&Mbb#MC<$aHrJm

    anfBVpArfvM=E-?}k7^BBc#cCP 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 Q+2>R5fAV?W_4&eo02-|cJ^%m! literal 0 HcmV?d00001 diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/use-on-desktop/Font Awesome 5 Free-Solid-900.otf b/site/themes/docsy/assets/vendor/Font-Awesome/use-on-desktop/Font Awesome 5 Free-Solid-900.otf new file mode 100644 index 0000000000000000000000000000000000000000..87c06633636b75f69dbdca5731ebb3553864cf47 GIT binary patch literal 537092 zcmeFZd3+RA)<1l!ZdIqVba%GS#uj9c1XREk6%}z86@w_CbdpZeWa-%5Ap~(m0TEji z1VKOr1Vj=RWm5zc#9hHPhzcsoA}Ep#E7D;9zUSU*5}cXmnej89d7nRCXL56@?so3k z*-+udGW@8f=XSZB6Xi(SSN~cSU~N!~4Tq9ZxG;@xsbvx0s`B4db2TY4nF3Pm7hr9NF-$jNQVhWn4MP zCo!F|=mSatp06=~A7|-o62p=@Z#A(McuT?6`D_5oJib%x)l2z^4MI2J%#@3jrNBRv zb;3hiW$5Ys<5-3XD_DQH31buXpb2xl-(M3%1pVZu(9#0Qvg3Jy97Qlx0nz&Q;+5?0uGteXj|EQVE> zFvt5TCaeLjHDR6gQaYKig=HzlCLF_tDJxAlmi1Emns7Yps*X3|1Qw&dYQl-^JoN(; zcCxNK&4g1}48I+e_Odb-0EMq$mCVijcrL|nHpp8R$h@M`?e~__(?1!O$@*dHAm+mq zH=rRHSHe6j|I7t4`(+ODx!svVyd@rVwHjr<`OmKZpIxmV>&4E+*}Ah_FwKMW<+F?N zd@j!32knKdFMiHp7ohFISifH9W_Hi5@Ra0VoOy1)KIdN8_rh~7xDXu?tj;8Kzthxf zMHM2xN&9|8IFm}Zvm!xdVpJ}K$qy__L2CWxu&n$)M$Sn7kSCqJXnVvjvS*G6|$aIzEX9m39l44H) zql+*pfUW!>LvQ@AKx`AhwyhBTN$cd>DGYMowZuS=?P z)}`0At!rO*S>3?8o9l+x-Cb8!H@!#JssC%mJ>AL6Y7S*k)TT{2Q?$f$& z>%Oo1vF_)(rn*1sW9#kp3H5F3+t;5}->d%I`hN8n*I!mYuzpbe4fQwI-&ucmy}N#5 z{Uh}=>z}HhQ$M%<+4@!WFV(ND-&Fs8{m%N`^HSMO|Lg?ZF;lmt)`t# zpEvDl`lji-rXQOQ9*;gga@D3x_EFSRdAzY-4%7$*4+YbjH)XKHzu0gm(juE%=*st=hXM9zo7oo`T^j^_4PN^-%>xkepLNK^^@yonA~`#z6RV_ zQ~zrH*7_ZS8++=%uRj8AG&isYts$l%wIQRSV?&>Y3mXPB+|+O@xN&bomEgv7!Hs7d z7B(zvSZ{J;Tf@5zpEP`Pnj7^E#|1ak#%RHf3mS)++;|Y&c>RCmMjvqFqJP4T5#WXk z+$d@)2RAC4?r(aqX%e_Gt!aAGY?B+WHf=Gvu|sfUchk2`KQtX|I&nPp_{`%AjxRZ0 zeSGcl4aZ+Q{>JflkM9VF!~4Ru;V;5F!|%mk6@O*?74ZY&FOR=0zJL5B@fXEk5Z^bx zPyD&@=fwAp?-`#J-#xxd{8{lG<2%H+jc*g55ueUjd`!G0UXRz}6~`&Z3CHh_W{2UZ zchotKIev8TwMljD$MzvD;84~~6~?;USBwmUXCUUO`8yz1ECSnhbyvCOg9 zvB2?+W2WOt#|+1G$27+z$3(|NjtP#xIs6Wvquf#K812Y+xE%L5Zgt$`xY5zyaf#z1 z#|4f)j&mL7IC?qGa%4I>INCefI8q%c4!gtR&>h^N*#EGfw4bp5W^c6D*}t>zvcG3v zZhz7Kf_8Xj^Mr zYFlV~#x~D3*Y>n+j_nCs&^Fcfi0xt9B-=wauPxW+vW>FcV;gB3VH<9{%XX)2nC%WT z&VhRTwf_{v!T|^!``;>jgK1clf1!Blu>`S(reFe{A!O#D)*%|#R zXPRz_vPQ?m#@XaVyCXg!F)7)ZlA4yD(WY&?_8l@ip4F*ym#*Eq%K<&I&hDArtM@tQ zp4X>uzw3`{Emk+q&%Kv5O|5A4(^FVg;kN#7brZGiPQvPw=rKq6b;1iAP zM3ZvjxO(C@e!|eE$MImC);@-%4@nFMgQtPGDDU-c9Zxss=FjCt z3|q*m**f+Hdkb-spQ>M~`_!Xq6IXZ?PvmWQH=f0N@$>oR{91l9zn$O7 z@8+XzTdU(2`hkNNk!K~uCuEmdo$ouzfx&ebl_251Ad>$ID-TeTeR zZY@_U&`Py{_MrBt_JlS|o2xC>R%+|DH?$A5PqkX@TkU{$RIAs1(@yA$9yuNxM{5@$)Wq+8ls zI$63}vMv2AS6Obb47Loj6j(-EDlGR|9djajEaxy z7}YoG;;4a9H%1MO8WlA_LSvQD!;ZGF!AymhH{x%DOMTI*ZZoz~sfeb!&Cr=p{xozd;0Go!ml zXGfnC-8cH8=mF7JMPCzrL-dg7;nDfgWzqLXPl=ux{cQBI=$E25M!y~XN%WV|-$oyb zu8UzYT1-rgEhaUlO-$#Q?lI@Z^pCkB=Ej&iV)A3kVk%=Ej0wifikTntT+Hg2*J8HE zd=|4SW?#(DF~7xxW3^aotRprfwnuEg*a5NE$L7T5#(HBbVjqZ|9Q%0e)3Nho7skF2 zyC(L%*e_y#jIE136{p7~#C3?vit8QMKkkOOJL3xCym4dW9*TP+ZeHAyxR>Hyi`yLc ze%zOF2jUvzLN?VFYqQ(ZZCz~V*!tUUu-yj#QfM0sUlX*w01vgp_BFiNQQHZ-#hz$y zXYXR~Y42|zYA>)?*&nq}x6iWAw^!RY+TXQ*V*kp1(Ecm@W!MqrhSevjp z;oXE!623_|l<-?ZI58?QCee|YnbFlK5Nqv(pO}Z-S+N4{OMkINX%8~*}W0NK&%}#nD zsV3>wq_>kkP5LHjU((^Eqe(_mDA}5voZKO~NAl&#Hzf~Gb|-t2E0ZTAKbAZ<`T67( z$s3ZlC4ZRwdGa^O`;&i8ZgO&`)tTt*?96iZc3$GV+&R#Bt@BprUCvzRXlKAV-Z{lN z-8tL&taFibx$`CGX6H`lZs+&T!_I~jB_%4QO-feEr772@+>tUWr7)!|Wo*inl*dzM zraYbULdu4ew^BYxsZIGlbZ%JGyxQnge^YD#L`)J~~AQhTNLOT9St^3-cnZ%-YT zIx;mswIp?H>V(wCQ)i_vNL`k?G4=J-ovELtewTVA)kxFQ9BCP8UDGZ~yFP7LT3%XV zT6x-iX%D15oHjjeQQFG1O=)kZeU$b|+U~S{X?1C#bW3__ddKv$)6Y-8HhoySE4@7Z z{`6q_lj+Z`(mziBD*ZtEvGh=eo{^N1p3y#|TgC+$muK9VF)U+L zh9{#uV|>QcjHfe}WYlD=&3HZI-HcB&_GEmQaWLapMpGN5O+uUWHl5mJwYi|p6>SE! zxuMOSZ3@~1+C0=|ZkwfTUT^bdn>~dkF26s!)a46!$~>hNeovm??egVO;m#NE2VA}i zzuQ;fDJcyUWh0X=bO(wE^7sRJMee-ffTz^$mou`z}V%S!OuQvQLO{Z(aov~aeoBtU}-N?e6hP%JO< zmbv|7yd@Q-Zd%TSXub(nl;7*i^X9vAfjNE!T!r|*KiBImrXL)xxZLL{3*@1?=yOr_ zp6e~i_XJ!ep1gp2Y#_VH?I}cZPhh1dKTw2@!m{iVcL5Cnl;V}b0XKH`2i)b^xvsq8N|!Icz=bnM z9wNWXOI%guE)d^;Z-vX}F7WzJ4>e)2h6%ezyYq-4V|-qTcLWyL5@WLSJifdVw_uD3 z3*MQqV5SM*Tj9pJu#lYMDJ$?sM)|ycf04`M^XIzCTt1(-QW8l(k}v|SD3_hYB8*4f zXKXntFQ}E2`$$~I=9RcgU9I*g^b`b2+^&KG55`u}|FiuN%%avK13r(dtgyrl%9OeD zTqW+Ze3y@8#fPQ6rC7Wav~ru;&%$LC`$`+Bx3`Qs(F9R+N+!d3|MhZfIbEC(jjd7vVhFP-SYy6u#Ub-egi+=rEm2tF&2?A$h!6pnzt|7mhwSJ2Jnn)# z7il`U?kBR7VeprD%8H@U75PwBe{o(#AkSM4xh;1?*gWNa*BH`CjDm#Yp!CaI;s+;- zVMl!4io&7_Xp9f5KxuP9I9DN5(pQmJ3=+DlvU5EpC7_i%kWHvb2s{;Uh!zqO=gK4d zQ0Di0VYcuiCJ3McOdaDc0dKLFw-6|mK>Y)LPk_`D{PVd>N?heoLN^q=C;*P+(%G_0 z^YJQBcJsS)F*pxK$n8c)IoS|bDQ399z*2WU%8CWF24;_T2XftRUy;dv zp@UKqgcJk63LIE6iNrecLNclK8!)N$qu{f6AqWB_!tKIAvvEoG=vrQVc5quggl^MTIb&<*s~aL9Uk!77TN?uo!NLGY$)@ zLiQb;gmzXzI7%SvQon_~AJ3AM;ng^bf*pOXmrQd$=$>-1WdCCL+id+f6Y=RNx z730Q%KII-aXzZc2$RV^q(o{q&0-2C(SaK+Mg$EV{@|p)}i`W5E(uMGt_R@SMrRdCe zE%u|8hR_kbKB>>72&BS(vRV-Ea=*t9cM^fdK*>)FfUC+hqtXaVVUUJb!Vpw*urQh? zOjZ*KW5pM4r2 z0WW}Vk~t`W;+2(py|8R~MIKm_io!DpL43^j!k`MFttK^AHEEPtMo!$2!N!!OJo;?MZ&y`M-e9o$ULHiEAl;F z0f}HjK%_w>o&q<#0uT}h&MxypvW2}x_yxaMM6rmkiozxgg5iZuLLj9)5f{lD6FW^3 z|LidyH^c;!bKS1M7&qcn z1ZaK;XI_P`ied?WAtDQS;}($UB}SSynkJZ_d@WX>m)HZbg6NlE_L$ZWMP=>^m`k|< zL>r-y4-zQQB?ln@5tik`uKGYvn8Hd|Rjv!csjn)#0G1{K!+%15DL6zI;xRdbf|3Yq z_C+4urR9Mt=%gQ}l!6PWV>ZqV-Sy^D_?TS?hg@#L6=mWHabR9?6-gPz?PYN0!qa8L z8kN8SR`_K4K=BY9W#o~NXn6uPPd|uog$%NcTS&SDk)cdq;1m(& zxMAa=ys$_jyKR#p2nNAw^)Q5@>_qMOqh6KH}i~LN|U>PXNxe6d4>OM@VAp=QE|T zb&m{_TV|S4*?NeOOi&Yc5yDzj?#)M}6{rN=a0Xlv@sxVTxg(F1rnWrd2+(gC48TU0 z`^&tQ2v3Sh&&vEBn2K^Z5Ay-8B;QNS6_$$tN;$=EaJbS1Qz}S^WKO&!a(c=Lr1X@2 zV=-Z`{gfzRb$aD4Bfkv@3R0LY4H2G%r~A_@@>YL(B|Pjhhfx_RtB_zOU1a^?evSK>mnJ>&xL%fGQFDn#& zMI-~}*16MTuiMQUItG7>9t=U*vI@2wY?gOkQ8j{OnVw+g;2Qu5@yBmd+=K@ruMW#s z0&O7sOUmBz=&b~K3Pl&p3*t0tkhqX_Fky{#e6DG=KgQD9q@U5;$&-U?4X@=D0Bs1``|q=YIPYEb5(;z

  • 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 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-solid-900.ttf b/site/themes/docsy/assets/vendor/Font-Awesome/advanced-options/use-with-node-js/fontawesome-free/webfonts/fa-solid-900.ttf new file mode 100644 index 0000000000000000000000000000000000000000..54a26e54ad8f708d5856dfc5ebe9a0d87c8f6539 GIT binary patch literal 160548 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≠ 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

    -T>mcbv zwYA;Gw}{c-BbrpWlY%CL3`d3;r=@^A1jE)Et< z0uRm=fdUY|wfkbnA5}B+mcfp>N%+Ank z&oBHlqtd!@>?`w{maKC&Q_4)|7?mc7U_3k-XQW_+v zbFE^vQX5+9MkO4V5YAX@4P!*v`NDa{KRNm2^>>ww0BIh~+X8@%CO3L=gz1v=xrMB% zV9?eqZfbFBaQ;~19f4GZZn(;Umw=>Gg1<9YAB1qqA^{*TMjRKkV>MM{&A6p2Q&2{O zr<`$Faan@2eBvLx(oPZamumEQ7|6({V!g2O#z26WDD4jMX-7xBqxZ>rw4Q&1TyA-W z%T$)2-PGeWQoo6peds?xOOggA&XnWyCAca32yq)2po=99a~-lOc@jW>ykRyD)04Fv y1REVQ+@^qd2XaCtLVn~Ys literal 0 HcmV?d00001 diff --git a/site/content/en/search.md b/site/content/en/search.md new file mode 100644 index 0000000000..e3690fd5a8 --- /dev/null +++ b/site/content/en/search.md @@ -0,0 +1,6 @@ +--- +title: Search Results +layout: search + +--- + diff --git a/site/credits b/site/credits new file mode 100644 index 0000000000..c3345daeb4 --- /dev/null +++ b/site/credits @@ -0,0 +1,2 @@ +Go Vanity URLs, original code: https://github.com/GoogleCloudPlatform/govanityurls +Background image: https://www.google.com.au/about/datacenters/gallery/index.html#/all/68 diff --git a/site/handler.go b/site/handler.go new file mode 100644 index 0000000000..163fd01b4d --- /dev/null +++ b/site/handler.go @@ -0,0 +1,189 @@ +// Copyright 2017 Google Inc. All Rights Reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// govanityurls serves Go vanity URLs. +package main + +import ( + "errors" + "fmt" + "html/template" + "net/http" + "sort" + "strings" + + "gopkg.in/yaml.v2" +) + +type handler struct { + host string + cacheControl string + paths pathConfigSet +} + +type pathConfig struct { + path string + repo string + display string + vcs string +} + +func newHandler(config []byte) (*handler, error) { + var parsed struct { + Host string `yaml:"host,omitempty"` + CacheAge *int64 `yaml:"cache_max_age,omitempty"` + Paths map[string]struct { + Repo string `yaml:"repo,omitempty"` + Display string `yaml:"display,omitempty"` + VCS string `yaml:"vcs,omitempty"` + } `yaml:"paths,omitempty"` + } + if err := yaml.Unmarshal(config, &parsed); err != nil { + return nil, err + } + h := &handler{host: parsed.Host} + cacheAge := int64(86400) // 24 hours (in seconds) + if parsed.CacheAge != nil { + cacheAge = *parsed.CacheAge + if cacheAge < 0 { + return nil, errors.New("cache_max_age is negative") + } + } + h.cacheControl = fmt.Sprintf("public, max-age=%d", cacheAge) + for path, e := range parsed.Paths { + pc := pathConfig{ + path: strings.TrimSuffix(path, "/"), + repo: e.Repo, + display: e.Display, + vcs: e.VCS, + } + switch { + case e.Display != "": + // Already filled in. + case strings.HasPrefix(e.Repo, "https://github.com/"): + pc.display = fmt.Sprintf("%v %v/tree/master{/dir} %v/blob/master{/dir}/{file}#L{line}", e.Repo, e.Repo, e.Repo) + case strings.HasPrefix(e.Repo, "https://bitbucket.org"): + pc.display = fmt.Sprintf("%v %v/src/default{/dir} %v/src/default{/dir}/{file}#{file}-{line}", e.Repo, e.Repo, e.Repo) + } + switch { + case e.VCS != "": + // Already filled in. + if e.VCS != "bzr" && e.VCS != "git" && e.VCS != "hg" && e.VCS != "svn" { + return nil, fmt.Errorf("configuration for %v: unknown VCS %s", path, e.VCS) + } + case strings.HasPrefix(e.Repo, "https://github.com/"): + pc.vcs = "git" + default: + return nil, fmt.Errorf("configuration for %v: cannot infer VCS from %s", path, e.Repo) + } + h.paths = append(h.paths, pc) + } + sort.Sort(h.paths) + return h, nil +} + +func (h *handler) ServeHTTP(w http.ResponseWriter, r *http.Request) { + current := r.URL.Path + pc, subpath := h.paths.find(current) + if pc == nil && current == "/" { + h.serveIndex(w, r) + return + } + if pc == nil && strings.Contains(current, "/chart/stable") { + path := strings.Replace(current, "/chart/stable", "", 1) + h.serveChart(w, r, path) + return + } + if pc == nil { + http.NotFound(w, r) + return + } + + w.Header().Set("Cache-Control", h.cacheControl) + if err := vanityTmpl.Execute(w, struct { + Import string + Subpath string + Repo string + Display string + VCS string + }{ + Import: h.Host(r) + pc.path, + Subpath: subpath, + Repo: pc.repo, + Display: pc.display, + VCS: pc.vcs, + }); err != nil { + http.Error(w, "cannot render the page", http.StatusInternalServerError) + } +} + +func (h *handler) serveIndex(w http.ResponseWriter, r *http.Request) { + // Just redirect to the first one + // just commenting out, in case we want to soft launch + //http.Redirect(w, r, h.paths[0].repo, http.StatusTemporaryRedirect) + http.Redirect(w, r, "/site/", http.StatusTemporaryRedirect) +} + +func (h *handler) serveChart(w http.ResponseWriter, r *http.Request, path string) { + root := "https://storage.googleapis.com/agones-chart" + http.Redirect(w, r, root+path, http.StatusTemporaryRedirect) +} + +func (h *handler) Host(r *http.Request) string { + host := h.host + if host == "" { + host = defaultHost(r) + } + return host +} + +var vanityTmpl = template.Must(template.New("vanity").Parse(` + + + + + + + + +Nothing to see here; see the package on godoc. + +`)) + +type pathConfigSet []pathConfig + +func (pset pathConfigSet) Len() int { + return len(pset) +} + +func (pset pathConfigSet) Less(i, j int) bool { + return pset[i].path < pset[j].path +} + +func (pset pathConfigSet) Swap(i, j int) { + pset[i], pset[j] = pset[j], pset[i] +} + +func (pset pathConfigSet) find(path string) (pc *pathConfig, subpath string) { + i := sort.Search(len(pset), func(i int) bool { + return pset[i].path >= path + }) + if i < len(pset) && pset[i].path == path { + return &pset[i], "" + } + if i > 0 && strings.HasPrefix(path, pset[i-1].path+"/") { + return &pset[i-1], path[len(pset[i-1].path)+1:] + } + return nil, "" +} diff --git a/site/handler_test.go b/site/handler_test.go new file mode 100644 index 0000000000..22ba2cf08a --- /dev/null +++ b/site/handler_test.go @@ -0,0 +1,288 @@ +// Copyright 2017 Google Inc. All Rights Reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package main + +import ( + "bytes" + "io/ioutil" + "net/http" + "net/http/httptest" + "sort" + "testing" +) + +func TestHandler(t *testing.T) { + tests := []struct { + name string + config string + path string + + goImport string + goSource string + }{ + { + name: "explicit display", + config: "host: example.com\n" + + "paths:\n" + + " /portmidi:\n" + + " repo: https://github.com/rakyll/portmidi\n" + + " display: https://github.com/rakyll/portmidi _ _\n", + path: "/portmidi", + goImport: "example.com/portmidi git https://github.com/rakyll/portmidi", + goSource: "example.com/portmidi https://github.com/rakyll/portmidi _ _", + }, + { + name: "display GitHub inference", + config: "host: example.com\n" + + "paths:\n" + + " /portmidi:\n" + + " repo: https://github.com/rakyll/portmidi\n", + path: "/portmidi", + goImport: "example.com/portmidi git https://github.com/rakyll/portmidi", + goSource: "example.com/portmidi https://github.com/rakyll/portmidi https://github.com/rakyll/portmidi/tree/master{/dir} https://github.com/rakyll/portmidi/blob/master{/dir}/{file}#L{line}", + }, + { + name: "Bitbucket Mercurial", + config: "host: example.com\n" + + "paths:\n" + + " /gopdf:\n" + + " repo: https://bitbucket.org/zombiezen/gopdf\n" + + " vcs: hg\n", + path: "/gopdf", + goImport: "example.com/gopdf hg https://bitbucket.org/zombiezen/gopdf", + goSource: "example.com/gopdf https://bitbucket.org/zombiezen/gopdf https://bitbucket.org/zombiezen/gopdf/src/default{/dir} https://bitbucket.org/zombiezen/gopdf/src/default{/dir}/{file}#{file}-{line}", + }, + { + name: "Bitbucket Git", + config: "host: example.com\n" + + "paths:\n" + + " /mygit:\n" + + " repo: https://bitbucket.org/zombiezen/mygit\n" + + " vcs: git\n", + path: "/mygit", + goImport: "example.com/mygit git https://bitbucket.org/zombiezen/mygit", + goSource: "example.com/mygit https://bitbucket.org/zombiezen/mygit https://bitbucket.org/zombiezen/mygit/src/default{/dir} https://bitbucket.org/zombiezen/mygit/src/default{/dir}/{file}#{file}-{line}", + }, + { + name: "subpath", + config: "host: example.com\n" + + "paths:\n" + + " /portmidi:\n" + + " repo: https://github.com/rakyll/portmidi\n" + + " display: https://github.com/rakyll/portmidi _ _\n", + path: "/portmidi/foo", + goImport: "example.com/portmidi git https://github.com/rakyll/portmidi", + goSource: "example.com/portmidi https://github.com/rakyll/portmidi _ _", + }, + { + name: "subpath with trailing config slash", + config: "host: example.com\n" + + "paths:\n" + + " /portmidi/:\n" + + " repo: https://github.com/rakyll/portmidi\n" + + " display: https://github.com/rakyll/portmidi _ _\n", + path: "/portmidi/foo", + goImport: "example.com/portmidi git https://github.com/rakyll/portmidi", + goSource: "example.com/portmidi https://github.com/rakyll/portmidi _ _", + }, + } + for _, test := range tests { + h, err := newHandler([]byte(test.config)) + if err != nil { + t.Errorf("%s: newHandler: %v", test.name, err) + continue + } + s := httptest.NewServer(h) + resp, err := http.Get(s.URL + test.path) + if err != nil { + s.Close() + t.Errorf("%s: http.Get: %v", test.name, err) + continue + } + data, err := ioutil.ReadAll(resp.Body) + if err != nil { + t.Errorf("Could not read all: %s", err) + continue + } + err = resp.Body.Close() + if err != nil { + t.Errorf("Could not close body: %s", err) + continue + } + s.Close() + if resp.StatusCode != http.StatusOK { + t.Errorf("%s: status code = %s; want 200 OK", test.name, resp.Status) + } + if err != nil { + t.Errorf("%s: ioutil.ReadAll: %v", test.name, err) + continue + } + if got := findMeta(data, "go-import"); got != test.goImport { + t.Errorf("%s: meta go-import = %q; want %q", test.name, got, test.goImport) + } + if got := findMeta(data, "go-source"); got != test.goSource { + t.Errorf("%s: meta go-source = %q; want %q", test.name, got, test.goSource) + } + } +} + +func TestBadConfigs(t *testing.T) { + badConfigs := []string{ + "paths:\n" + + " /missingvcs:\n" + + " repo: https://bitbucket.org/zombiezen/gopdf\n", + "paths:\n" + + " /unknownvcs:\n" + + " repo: https://bitbucket.org/zombiezen/gopdf\n" + + " vcs: xyzzy\n", + "cache_max_age: -1\n" + + "paths:\n" + + " /portmidi:\n" + + " repo: https://github.com/rakyll/portmidi\n", + } + for _, config := range badConfigs { + _, err := newHandler([]byte(config)) + if err == nil { + t.Errorf("expected config to produce an error, but did not:\n%s", config) + } + } +} + +func findMeta(data []byte, name string) string { + var sep []byte + sep = append(sep, `" + } + return s + } + for _, test := range tests { + pset := make(pathConfigSet, len(test.paths)) + for i := range test.paths { + pset[i].path = test.paths[i] + } + sort.Sort(pset) + pc, subpath := pset.find(test.query) + var got string + if pc != nil { + got = pc.path + } + if got != test.want || subpath != test.subpath { + t.Errorf("pathConfigSet(%v).find(%q) = %v, %v; want %v, %v", + test.paths, test.query, emptyToNil(got), subpath, emptyToNil(test.want), test.subpath) + } + } +} + +func TestCacheHeader(t *testing.T) { + tests := []struct { + name string + config string + cacheControl string + }{ + { + name: "default", + cacheControl: "public, max-age=86400", + }, + { + name: "specify time", + config: "cache_max_age: 60\n", + cacheControl: "public, max-age=60", + }, + { + name: "zero", + config: "cache_max_age: 0\n", + cacheControl: "public, max-age=0", + }, + } + for _, test := range tests { + h, err := newHandler([]byte("paths:\n /portmidi:\n repo: https://github.com/rakyll/portmidi\n" + + test.config)) + if err != nil { + t.Errorf("%s: newHandler: %v", test.name, err) + continue + } + s := httptest.NewServer(h) + resp, err := http.Get(s.URL + "/portmidi") + if err != nil { + t.Errorf("%s: http.Get: %v", test.name, err) + continue + } + err = resp.Body.Close() + if err != nil { + t.Errorf("could not close the body: %s", err) + continue + } + + got := resp.Header.Get("Cache-Control") + if got != test.cacheControl { + t.Errorf("%s: Cache-Control header = %q; want %q", test.name, got, test.cacheControl) + } + } +} diff --git a/site/layouts/partials/community_links.html b/site/layouts/partials/community_links.html new file mode 100644 index 0000000000..acfbb7a513 --- /dev/null +++ b/site/layouts/partials/community_links.html @@ -0,0 +1,29 @@ +{{ $links := .Site.Params.links }} + +